diff --git a/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26.pdf b/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26.pdf new file mode 100644 index 00000000..8484eb53 Binary files /dev/null and b/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26.pdf differ diff --git a/CRC-2nd-ed/proofs/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26_CE.pdf b/CRC-2nd-ed/proofs/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26_CE.pdf new file mode 100644 index 00000000..5a3b8994 Binary files /dev/null and b/CRC-2nd-ed/proofs/Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26_CE.pdf differ diff --git a/R.as.calculator.Rnw b/R.as.calculator.Rnw index 75851357..0c7aee18 100644 --- a/R.as.calculator.Rnw +++ b/R.as.calculator.Rnw @@ -18,7 +18,7 @@ The desire to economise time and mental effort in arithmetical computations, and \section{Aims of This Chapter} -In my experience, for those not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \Rpgrm \emph{console}. This teaches not only the syntax and grammar rules, but also gives a glimpse at the advantages and flexibility of this approach to data analysis. In this chapter, I focus on the different simple values or items that can be stored and manipulated in \Rpgrm, as well as the role of computer program statements, the equivalent of ``sentences'' in natural languages. +In my experience, for those who are not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \Rpgrm \emph{console}. This teaches not only the syntax and grammar rules, but also gives a glimpse at the advantages and flexibility of this approach to data analysis. In this chapter, I focus on the different simple values or items that can be stored and manipulated in \Rpgrm, as well as the role of computer program statements, the equivalent of ``sentences'' in natural languages. In the first part of the chapter, you will use \Rlang to do everyday calculations that should be so easy and familiar that you will not need to think about the operations themselves. This easy start will give you a chance to focus on learning how to issue textual commands at the command prompt. @@ -28,7 +28,7 @@ Throughout the chapter, I will occasionally show the equivalent of the \Rlang co \section{Natural and Computer Languages} \index{languages!natural and computer} -Computer languages have strict rules and interpreters and compilers that translate these languages into machine code are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. +Computer languages have strict rules, and the interpreters and compilers that translate these languages into machine code are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. One can think of constant values and variables (values stored under a name) as nouns and of operators and functions as verbs. A complete command, or statement, is the equivalent of a natural language sentence: ``a comprehensible utterance''. The simple statement \code{a + 1} has three components: \code{a}, a variable, \code{+}, an operator and \code{1} a constant. The statement \code{sqrt(4)} has two components, a function \code{sqrt()} and a numerical constant \code{4}. We say that ``to compute $\sqrt{4}$ we \emph{call} \code{sqrt()} with \code{4} as its \emph{argument}''. @@ -55,7 +55,7 @@ is, in \Rlang, written as follows: Where constant \Rconst{pi} ($\pi = 3.1415\ldots$) and function \Rfunction{cos()} (cosine) are defined in base \Rlang. Many trigonometric and mathematical functions are available in addition to operators like \verb|+|, \verb|-|, \verb|*|, \verb|/|, and \verb|^|. \begin{warningbox} - In \Rlang angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an angle of $45^\circ$ can be computed as follows. + In \Rlang, angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an angle of $45^\circ$ can be computed as follows. <>= sin(45/180 * pi) @@ -75,7 +75,7 @@ If you are in doubt about how precedence rules work, you can add parentheses to The number of opening (left side) and closing (right side) parentheses must be balanced, and they must be located so that each enclosed term is a valid mathematical expression, i.e., code that can be evaluated to return a value, a value that can be inserted in place of the expression enclosed in parenthesis before evaluating the remaining of the expression. For example, \code{(1 + 2) * 3} after evaluating \code{(1 + 2)} becomes \code{3 * 3} yielding \code{9}. In contrast, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and does not yield a number. \begin{playground} -In \emph{playgrounds} the output from running the code in \Rpgrm is not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, to create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} +In \emph{playgrounds} the output from running the code in \Rpgrm is not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general, you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, to create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} <>= 1 + 1 @@ -97,7 +97,7 @@ exp(1) \end{playground} -Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasise their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. +Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang, although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter, where the stored values have no connection to the real world, simple names emphasise their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. In the book, I use variable names that help recognise the kind of object stored, as this is most relevant when learning \Rlang. Here I use \code{vct1} because in \Rlang, as we will see on page \pageref{par:numeric:vectors:start}, numeric objects are always vectors, even when of length one. @@ -119,7 +119,7 @@ vct1 + 1 print(vct1 + 1) @ \begin{playground} -There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages, and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> vct1}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{vct1}, \code{vct2} and \code{vct3} are being assigned the same value. +There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> vct1}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{vct1}, \code{vct2} and \code{vct3} are being assigned the same value. <>= VCT1 <- VCT2 <- VCT3 <- 0 @@ -405,7 +405,7 @@ A vectorised sum, also called a parallel sum of vectors, to differentiate it fr c(3, 1, 2) + c(1, 2, 31) @ -Vectorised\index{recycling of arguments}\index{recycling of operands} functions and operators that operate on more than one vector simultaneously, in many cases accept vectors of mismatched length as arguments or operands. When two or more vectors are of different length, these functions and operators recycle the shorter vector(s) to match the length of the longest one. The two statements below are equivalent, in the first statement, the short vector \code{1} is first recycled into \code{c(1, 1, 1)}. The operation, addition in this example, is applied to the numbers stored at the same position in the two vectors, returning a new vector. +Vectorised\index{recycling of arguments}\index{recycling of operands} functions and operators that operate on more than one vector simultaneously, in many cases accept vectors of mismatched length as arguments or operands. When two or more vectors are of different length, these functions and operators recycle the shorter vector(s) to match the length of the longest one. The two statements below are equivalent; in the first statement, the short vector \code{1} is first recycled into \code{c(1, 1, 1)}. The operation, addition in this example, is applied to the numbers stored at the same position in the two vectors, returning a new vector. <>= c(3, 1, 2) + 1 @@ -677,9 +677,9 @@ vct14 @ \begin{explainbox} -Functions are described in detail in section \ref{sec:script:functions} on page \pageref{sec:script:functions}. Here I describe them briefly in relation to their use. Functions are objects containing \Rlang code that can be used to perform an operation on values passed as arguments to its parameters. They return the result of the operation as a single \Rlang object, or less frequently, as a side effect. Functions have a name like any other \Rlang object. If the name of a function is followed by parentheses \code{()} and included in a code statement, it becomes a function \emph{call} or a ``request'' for the code stored in the function object to be run. Many functions, accept \Rlang objects and/or constant values as \emph{arguments} to their \emph{formal parameters}. Formal parameters are placeholder names in the code stored in the function object, or the \emph{definition} of the function. In a function call the code in its definition is evaluated (or run) with formal-parameter names taking the values passed as arguments to them. +Functions are described in detail in section \ref{sec:script:functions} on page \pageref{sec:script:functions}. Here I describe them briefly in relation to their use. Functions are objects containing \Rlang code that can be used to perform an operation on values passed as arguments to its parameters. They return the result of the operation as a single \Rlang object, or less frequently, as a side effect. Functions have a name like any other \Rlang object. If the name of a function is followed by parentheses \code{()} and included in a code statement, it becomes a function \emph{call} or a ``request'' for the code stored in the function object to be run. Many functions, accept \Rlang objects and/or constant values as \emph{arguments} to their \emph{formal parameters}. Formal parameters are placeholder names in the code stored in the function object, or the \emph{definition} of the function. In a function call, the code in its definition is evaluated (or run) with formal parameter names taking the values passed as arguments to them. -In a function definition, formal parameters can be assigned default values, which are used if no explicit argument is passed in the call. Arguments can be passed to formal parameters by name or by position. In most cases, passing arguments by name makes the code easier to understand and more robust against coding mistakes. In the examples in the book I most frequently pass arguments by name, except for the first parameter. +In a function definition, formal parameters can be assigned default values, which are used if no explicit argument is passed in the call. Arguments can be passed to formal parameters by name or by position. In most cases, passing arguments by name makes the code easier to understand and more robust against coding mistakes. In the examples presented in the book, I most frequently pass arguments by name, except for the first parameter. Being \code{digits}, the second parameter, its argument can also be passed by position. @@ -708,7 +708,7 @@ What does value truncation mean? Function \Rfunction{trunc()} truncates a numeri \end{playground} \begin{explainbox} - \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts I give only one example of their use. Complex numbers as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. + \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts, I give only one example of their use. Complex numbers, as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. <>= cmp1 <- complex(real = c(-1, 1), imaginary = c(0, 0)) @@ -752,7 +752,7 @@ remove(an.object) objects(pattern = "*.object") @ -In \pgrmname{RStudio} all objects are listed in the \textbf{Environment} tab and the search box of this tab can be used to find a given object. +In \pgrmname{RStudio}, all objects are listed in the \textbf{Environment} tab and the search box of this tab can be used to find a given object. \begin{explainbox} Function \Rfunction{remove()} accepts both bare names of objects as in the chunk above and \code{character} strings corresponding to object names like in \code{remove("any.object")}. However, While \Rfunction{objects()} accept patterns to be matched to object names, \Rfunction{remove()} does not. Because of this, these two functions have to be used together for removing all objects with names that match a pattern. The pattern can be given as a regular expression (see section \ref{sec:calc:regex} on page \pageref{sec:calc:regex}). @@ -925,11 +925,11 @@ strrep(x = c("ABC", "X"), times = 2) strrep(x = c("ABC", "X"), times = c(2, 5)) @ -\begin{faqbox}{How to trim leading and/or trailing white space in character strings?} +\begin{faqbox}{How to trim leading and/or trailing whitespace in character strings?} Use function \Rfunction{trimws()} (see below for examples). \end{faqbox} -Trimming\index{character strings!whitespace trimming} leading and trailing white space is a frequent operation. \Rlang function \Rfunction{trimws()} implements this operation as shown below. +Trimming\index{character strings!whitespace trimming} leading and trailing whitespace is a frequent operation. \Rlang function \Rfunction{trimws()} implements this operation as shown below. <>= trimws(x = " two words ") @@ -937,12 +937,12 @@ trimws(x = c(" eight words and a newline at the end\n", " two words ")) @ \begin{playground} -Function \Rfunction{trimws()} has additional parameters that make it possible to select which end of the string is trimmed and which characters are considered whitespace. Use \code{help(trimws)} to access the help and study this documentation. Modify the example above so that only trailing white space is removed, and so that the newline character \verb!\n! is not considered whitespace, and thus not trimmed away. +Function \Rfunction{trimws()} has additional parameters that make it possible to select which end of the string is trimmed and which characters are considered whitespace. Use \code{help(trimws)} to access the help and study this documentation. Modify the example above so that only trailing whitespace is removed, and so that the newline character \verb!\n! is not considered whitespace, and thus not trimmed away. \end{playground} Within\index{character strings!position-based operations} \Rclass{character} strings, substrings can be extracted and replaced \emph{by position} using \Rfunction{substring()} or \Rfunction{substr()}. -For extraction we can pass to \code{x} a constant as shown below or a variable. +For extraction, we can pass to \code{x} a constant as shown below or a variable. <>= substr(x = "abracadabra", start = 5, stop = 9) @@ -1019,7 +1019,7 @@ grepl(pattern = "C", x = c("R", "C++", "C", "Perl", "Pascal"), ignore.case = TRU @ \index{regular expressions|(}% -In\label{sec:calc:regex} the examples above the arguments for \code{pattern} strings matched exactly their targets. In \Rlang and other languages \emph{regular expressions} are used to concisely describe more elaborate and conditional patterns. Regular expressions themselves are encoded as character strings, where some characters and character sequences have special meaning. This means that when a pattern should be interpreted literally rather than specially, \code{fixed = TRUE} should be passed in the call. This in addition, ensures faster computation. In the examples above, the patterns used contained no characters with special meaning, thus, the returned value is not affect by passing \code{fixed = TRUE} as done here. +In\label{sec:calc:regex} the examples above, the arguments for \code{pattern} strings matched exactly their targets. In \Rlang and other languages, \emph{regular expressions} are used to concisely describe more elaborate and conditional patterns. Regular expressions themselves are encoded as character strings, where some characters and character sequences have special meaning. This means that when a pattern should be interpreted literally rather than specially, \code{fixed = TRUE} should be passed in the call. This, in addition, ensures faster computation. In the examples above, the patterns used contained no characters with special meaning, thus, the returned value is not affect by passing \code{fixed = TRUE} as done here. <>= sub(pattern = "ab", replacement = "AB", x = "about", fixed = TRUE) @@ -1029,15 +1029,15 @@ sub(pattern = "ab", replacement = "AB", x = "about", fixed = TRUE) Regular expressions are used in Unix and Linux shell scripts and programs, and are part of \perllang, \Cpplang and other languages in addition to \Rlang. This means that variations exist on the same idea, with \Rlang supporting two variations of the syntax. A description of \Rlang regular expressions can be accessed with \code{help(regex)}. We here describe \Rlang's default syntax. \end{warningbox} -Regular expressions are concise, terse and extremely powerful. They are a language in themselves. However, the effort needed to learn their use more than pays back. I will show examples of the use, rather than systematically describe them. I will use \Rfunction{gsub()} for these examples, but several other \Rlang functions including \Rfunction{grep()} and \Rfunction{grepl()} accept regular expressions as patterns. +Regular expressions are concise, terse, and extremely powerful. They are a language in themselves. However, the effort needed to learn their use more than pays back. I will show examples of the use, rather than systematically describe them. I will use \Rfunction{gsub()} for these examples, but several other \Rlang functions including \Rfunction{grep()} and \Rfunction{grepl()} accept regular expressions as patterns. -In a regular expression \code{|} separates alternative matching patterns. +In a regular expression, \code{|} separates alternative matching patterns. <>= gsub(pattern = "ab|t", replacement = "123", x = "about") @ -Within a regular expression we can group characters within \code{[ ]} as alternative, e.g, \code{[0123456789]}, or \code{[0-9]} matches any digit. +Within a regular expression, we can group characters within \code{[ ]} as alternative, e.g., \code{[0123456789]}, or \code{[0-9]} matches any digit. <>= gsub(pattern = "a[0123456789]", @@ -1061,7 +1061,7 @@ gsub(pattern = "out$", x = c("about", "a9out", "a3outx")) @ -A dot (\code{.}) matches any character. In this example we replace the last character with \code{""}. +A dot (\code{.}) matches any character. In this example, we replace the last character with \code{""}. <>= gsub(pattern = ".$", @@ -1147,7 +1147,7 @@ strsplit(x = c("2023-07-29 10:30", "2023-07-29 19:17"), split = " ") \begin{warningbox}\label{box:calc:locale} The ASCII character set is the oldest and simplest in use. In contains only 128 characters including non-printable characters. These characters support the English language. Several different extended versions with 256 characters provided support for other languages, mostly by adding accented letters and some symbols. The 128 ASCII characters were for a long time the only consistently available across computers set up for different languages and countries (or \emph{locales}). Recently the use of much larger character sets like UTF8 has become common. Since \Rlang version 4.2.0 support for UTF8 is available under Windows 10. This makes it possible the processing of text data for many more languages than in the past. Even though now it is possible to use non-ASCII characters as part of object names, it is anyway safer to use only ASCII characters as this support is recent. - The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (--), minus sign ($-$) and regular dash (-) which are all different characters, with only the last one recognised by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and'') which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. + The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (--), minus sign ($-$) and regular dash (-), which are all different characters, with only the last one recognised by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and''), which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. A locale definition determines not only the language, and character set, but also date, time, and currency formats. \end{warningbox} @@ -1175,7 +1175,7 @@ xor(TRUE, FALSE) # exclusive OR @ %%%% index operators using verb!! -The availability of two kinds of logical operators can be troublesome for those new to \Rlang. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorised operators have single-character names, \Roperator{\&} and \Roperator{\textbar} (similarly to vectorised arithmetic operators like \code{+}), while the non-vectorised ones have double-character names, \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorised. In recent versions of \Rlang, an error is triggered when a non-vectorised operator is used with a vector with length $> 1$, which helps prevent mistakes. In some situations, vectorised \code{logical} operators can replace non-vectorised ones, but it is important to use the ones that match the intention of the code, as this enables relevant checks for mistakes. Once the distinction is learnt, using the most appropriate operators also contributes to make code easier to read. +The availability of two kinds of logical operators can be troublesome for those new to \Rlang. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorised operators have single-character names, \Roperator{\&} and \Roperator{\textbar} (like the vectorised arithmetic operators, such as \code{+}), while the non-vectorised ones have double-character names, \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorised. In recent versions of \Rlang, an error is triggered when a non-vectorised operator is used with a vector with length $> 1$, which helps prevent mistakes. In some situations, vectorised \code{logical} operators can replace non-vectorised ones, but it is important to use the ones that match the intention of the code, as this enables relevant checks for mistakes. Once the distinction is learnt, using the most appropriate operators also contributes to make code easier to read. <>= c(TRUE, FALSE) & c(TRUE,TRUE) # vectorised AND @@ -1301,7 +1301,7 @@ all(vct4) Individual comparisons can be useful, but their full role in data analysis and programming is realised when we combine multiple tests using the operations of the Boolean algebra described in section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. -For example to test if members of a numeric vector are within a range, in our example, $-1$ to $+1$, we can combine the results from two comparisons using the vectorised logical \emph{AND} operator \Roperator{\&}, and use parentheses to override the default order of precedence of the operations. +For example, to test if members of a numeric vector are within a range, in our example, $-1$ to $+1$, we can combine the results from two comparisons using the vectorised logical \emph{AND} operator \Roperator{\&}, and use parentheses to override the default order of precedence of the operations. <>= vct5 <- -2:3 @@ -1314,13 +1314,13 @@ If we want to find those values outside this same range, we can negate the test. !(vct5 >= -1 & vct5 <= 1) @ -Or we can combine another two comparisons using the vectorised logical \emph{OR} operator \Roperator{\textbar}. +Or, we can combine another two comparisons using the vectorised logical \emph{OR} operator \Roperator{\textbar}. <>= vct5 < -1 | vct5 > 1 @ -In some cases an additional advantage is that \Rclass{logical} values require less space in memory for their storage than \code{numeric} values. +In some cases, an additional advantage is that \Rclass{logical} values require less space in memory for their storage than \code{numeric} values. \begin{playground} Use the statement below as a starting point in exploring how precedence works when logical and arithmetic operators are part of the same statement. \emph{Play} with the example by adding parentheses at different positions and based on the returned values, work out the default order of operator precedence used for the evaluation of the example given below. @@ -1332,7 +1332,7 @@ vct6 > 3 | vct6 + 2 < 3 \end{playground} It is important to be aware of the consequences of ``short-cut evaluation'' (described on page \pageref{par:calc:shortcut:eval}). -The behaviour of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. \code{TRUE} passed as an argument to parameter \code{na.rm}, results in \code{NA} values being \emph{removed} from the input \textbf{before} the function is applied. +The behaviour of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. If \code{TRUE} is passed as an argument to parameter \code{na.rm}, \code{NA} values are \emph{removed} from the input \textbf{before} the function is applied. <>= vct7 <- c(1:10, NA) @@ -1366,7 +1366,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Sets and Set Operations} \index{sets|(}\index{algebra of sets}\index{operators!set|(} -The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. In Bioinformatics it is usual, for example, to make use of character vectors of gene tags. Algebra sets is implemented with functions \code{union()}, \code{intersect()}, \code{setdiff()}, \code{setequal()}, \code{is.element()} and operator \code{\%in\%} (Figure \ref{fig:set:opers}). The first three operations return a vector of the same mode as their inputs, and the last three a \code{logical} vector. The action of the first three operations is most easily illustrated with Venn diagrams, where the returned value (or result of the operation) is depicted in darker grey.\vspace{1ex} +The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. In Bioinformatics, it is usual, for example, to make use of character vectors of gene tags. Algebra sets is implemented with functions \code{union()}, \code{intersect()}, \code{setdiff()}, \code{setequal()}, \code{is.element()} and operator \code{\%in\%} (Figure \ref{fig:set:opers}). The first three operations return a vector of the same mode as their inputs, and the last three a \code{logical} vector. The action of the first three operations is most easily illustrated with Venn diagrams, where the returned value (or result of the operation) is depicted in darker grey.\vspace{1ex} \begin{figure} \begin{footnotesize} @@ -1574,7 +1574,7 @@ c("a", "a", "z") %in% unique(vct1) \end{playground} \begin{explainbox} -Function \Rfunction{duplicated()} is the counterpart of \Rfunction{unique()}, returning a logical vector indicating which values in a vector are duplicates of values already present at positions with a lower index. +Function \Rfunction{duplicated()} is the counterpart of \Rfunction{unique()}, returning a logical vector, indicating which values in a vector are duplicates of values already present at positions with a lower index. <>= duplicated(vct1) @@ -1640,7 +1640,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \index{objects!mode} Classes are abstractions, they determine the ``meaning'' and behaviour of objects belonging to them. New classes can be defined in user code as well as new methods, i.e., functions or operators tailored to fit them. The \emph{class} is like a ``tag'' that tells how the value in an object should be interpreted and operated upon. -Variables (names given to objects) have a \emph{class} that depends on the object stored in them. In contrast to some other languages in \Rlang assignment to a variable already in use to store an object belonging to a different class is allowed. There is a restriction that all elements in a vector, array or matrix, must be of the same mode (these are called atomic, as they contain homogeneous members). Lists and data frames can be heterogenous (to be described in chapter \ref{chap:R:collective}). In practice this means that we can assign an object, such as a vector, with a different \code{class} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. +Variables (names given to objects) have a \emph{class} that depends on the object stored in them. In contrast to some other languages in \Rlang assignment to a variable already in use to store an object belonging to a different class is allowed. There is a restriction that all elements in a vector, array or matrix, must be of the same mode (these are called atomic, as they contain homogeneous members). Lists and data frames can be heterogenous (to be described in chapter \ref{chap:R:collective}). In practice, this means that we can assign an object, such as a vector, with a different \code{class} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. Function \Rfunction{class()} is used to query the class of an object, and function \Rfunction{inherits()} is used to test if an object belongs to a specific class or not (including ``parent'' classes, to be later described). @@ -1706,7 +1706,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Type Conversions}\label{sec:calc:type:conversion} \index{type conversion|(} -By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can for example convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can, for example, convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} <>= as.character(102) @@ -1747,7 +1747,7 @@ as.logical("NA") \end{playground} \begin{playground} -Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them is handled creates additional possibilities. All these approaches as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. +Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them is handled creates additional possibilities. All these approaches, as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} and \emph{type} of the returned objects. \end{playground} @@ -1797,14 +1797,14 @@ sprintf("The numbers are: %.4g and %.2g", x[1], x[2]) sprintf("The numbers are: %4.2e and %.0e", x[1], x[2]) @ -In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}, so in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. +In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}; so, in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. \begin{playground} Function \Rfunction{format()} may be easier to use, in some cases, but \Rfunction{sprintf()} is more flexible and powerful. Those with experience in the use of the \Clang language will already know about \Rfunction{sprintf()} and its use of templates for formatting output. Even if you are familiar with \Clang, look up the help pages for both functions, and practice, by trying to create the same formatted output by means of the two functions. Do also play with these functions with other types of data like \code{integer} and \code{character}. \end{playground} \begin{explainbox} -I have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavours. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. +I have described above \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA} values come in various flavours: \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. <>= vct3 <- c(1, NA) @@ -1845,9 +1845,9 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \index{vectors!indexing|(}\index{vectors!member extraction} If you have read earlier sections of this chapter, you already know how to create a vector. If not, see pages \pageref{par:numeric:vectors:start}--\pageref{par:numeric:vectors:end} before continuing. -In this section we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector $a_{i = 1\ldots n}$. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. What in maths notation would be $a_i$, in \Rpgrm is represented as \code{a[i]} and the whole vector, by excluding the brackets and indexing vector, as \code{a}. +In this section, we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector $a_{i = 1\ldots n}$. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. While in maths notation $a_1$ represents the first, or leftmost, member of vector $a_{i = 1\ldots n}$, in \Rpgrm the equivalent notation is \code{a[1]} for the member and \code{a} for the vector. -We extract the first 10 elements of the vector \code{letters}. +We extract the first 10 elements of the vector \code{letters}, by passing an \code{integer} vector as argument to operator \Roperator{[ ]}. <>= vct1 <- letters[1:10] @@ -1913,7 +1913,7 @@ vct1[10:1] @ \begin{playground} -The length of the indexing vector is \emph{not} restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA}s. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. +The length of the indexing vector is \emph{not} restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA} values. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. <>= length(vct1) @@ -1936,7 +1936,7 @@ vct1[-3:-2] @ \begin{advplayground} -Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using ``subscripts'' which are special values instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. +Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using special values as ``subscripts'' instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. <>= vct1[ ] @@ -1993,7 +1993,7 @@ Above, \code{integer} or \code{logical} vectors were used as indices for extract treat <- c("H", "C", "H", "W", "C", "H", "H", "W", "W") @ -We can create a named vector to \emph{map} the single letter codes onto full words. Above we used function \Rfunction{c()} to concatenate several \code{character} strings, without assigning any names to them, thus they have to be extracted from the vector using \code{numeric} values, indexing by position. Below, we assign a name to each string. Using operator \Roperator{=} we assign the name on the left-hand side (\emph{lhs}) to the member of the vector on the right-hand-side (\emph{rhs}). +We can create a named vector to \emph{map} the single letter codes onto full words. Above, we used function \Rfunction{c()} to concatenate several \code{character} strings, without assigning any names to them, thus they have to be extracted from the vector using \code{numeric} values, indexing by position. Below, we assign a name to each string. Using operator \Roperator{=} we assign the name on the left-hand side (\emph{lhs}) to the member of the vector on the right-hand-side (\emph{rhs}). <>= treat.map <- c(H = "hot", C = "cold", W = "warm") @@ -2052,7 +2052,7 @@ treat.new It is more common to use named members with lists than with vectors, but in \Rlang, in both cases it is possible to use both numeric positional indices and names. \end{explainbox} -Indexing can be used on either side of an assignment expression. In the code chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left-hand side and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to compare, identical vectors are used in each of the examples below. +Indexing can be used on either side of an assignment expression. In the code chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left- and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to compare, identical vectors are used in each of the examples below. <>= vct2 <- 1:10 @@ -2086,7 +2086,7 @@ vct3 @ \begin{playground} -Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{a}, so, when studying variations of this example you will need to recreate \code{a} by executing the first statement, each time you run a variation of the second statement. +Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{VCT1}, so, when studying variations of this example, you will need to recreate \code{VCT1} by executing the first statement each time you run a variation of the second statement. <>= VCT1 <- letters[1:10] @@ -2240,7 +2240,7 @@ In mathematical notation the same generic matrix is represented as \end{equation*} where $A$ represents the whole matrix, $m \times n$ its dimensions, and $a_{i,j}$ its elements, with $i$ indexing rows and $j$ indexing columns. The lengths of the two dimensions of the matrix are given by $m$ and $n$, for rows and columns. -Vectors have a single dimension, and, as described on page \pageref{par:calc:vectors:diag} above, we can query this dimension, their length, with function \Rfunction{length()}. Matrices have two dimensions, which can be queried individually with \Rfunction{ncol()} and \Rfunction{nrow()}, and jointly with \Rfunction{dim()}. As expected \Rfunction{is.matrix()} can be used to query the class. +Vectors have a single dimension, and, as described on page \pageref{par:calc:vectors:diag}, we can query this dimension, their length, with function \Rfunction{length()}. Matrices have two dimensions, which can be queried individually with \Rfunction{ncol()} and \Rfunction{nrow()}, and jointly with \Rfunction{dim()}. As expected, \Rfunction{is.matrix()} can be used to query the class. We can create a matrix using the \Rfunction{matrix()} or \Rfunction{as.matrix()} constructors. The first argument of \Rfunction{matrix()} must be a vector. Function \Rfunction{as.matrix()} is a conversion constructor, with specialisations accepting as argument objects belonging to a few other classes. The shape of the \code{matrix} is controlled by passing an argument to either \code{ncol} or \code{nrow}. @@ -2274,7 +2274,7 @@ While you are looking at the help page, also consider the default number of colu matrix(1:15) @ -And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyse it and predict what the returned value will be. Afterwards, compare your prediction, to the value actually returned. +And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyse it and predict what the returned value will be. Afterwards, compare your prediction with the value actually returned. <>= matrix(1:15, ncol = 2) @@ -2360,7 +2360,7 @@ mat2[5, 2] \end{warningbox} \begin{explainbox} -In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element or no elements. However, in all cases, a \code{matrix} will have as \emph{dimensions} attribute an \code{integer} vector of length two. +In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element, or no elements. However, in all cases, a \code{matrix} will have as \emph{dimensions} attribute an \code{integer} vector of length two. <>= vct1 <- 1:6 @@ -2483,7 +2483,7 @@ ary1 ary1[2, 2, 2] @ -In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3 = 3^3$. Arrays are printed in slices, with slices across 3rd and higher dimensions printed separately, with their corresponding indexes above each slice and the first two dimensions on the margins of the individual slices, similarly to how matrices are displayed. +In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3 = 3^3$. Arrays are printed in slices, where slices across 3rd and higher dimensions are shown separately, with their corresponding indexes above each slice and the first two dimensions on the margins of the individual slices, similarly to how matrices are displayed. \begin{playground} How do you use indexes to extract the second element of the original vector, in each of the following matrices and arrays? @@ -2505,7 +2505,7 @@ ARY3 <- array(VCT2, dim = c(2, 5)) Be aware that vectors and one-dimensional arrays are not the same thing, while two-dimensional arrays are matrices. \begin{enumerate} \item Use the different constructors and query functions to explore this, and its consequences. - \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first. + \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first? \end{enumerate} \end{playground} \index{arrays|)} @@ -2574,7 +2574,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) In data analysis and Statistics, the distinction between values measured on continuous vs.\ discrete \emph{scales} is crucial. In a continuous scale, any values are in theory possible. In a discrete scale, the observations are values from a few categories. -In contrast to other statistical software in which a variable is set as continuous or discrete when defining a model to be fitted or when setting up a test, in \Rlang this distinction is based on whether the explanatory variable is \code{numeric} (continuous) or a \code{factor} (discrete). This approach makes sense because in most cases considering an explanatory variable as categorical or not, depends on the quantity stored and/or the design of the experiment or survey. In other words, being categorical is a property of the data. The order of the levels in an unordered \code{factor} does not affect simple calculations or the values plotted, but as we will see in chapters \ref{chap:R:statistics} and \ref{chap:R:plotting}, it can affect the contrasts used by some tests of significant, and the arrangement or positions of the levels along axes and keys in plots. +In contrast to other statistical software in which a variable is set as continuous or discrete when defining a model to be fitted or when setting up a test, in \Rlang this distinction is based on whether the explanatory variable is \code{numeric} (continuous) or a \code{factor} (discrete). This approach makes sense because in most cases considering an explanatory variable as categorical or not, depends on the quantity stored and/or the design of the experiment or survey. In other words, being categorical is a property of the data. The order of the levels in an unordered \code{factor} does not affect simple calculations or the values plotted, but as we will see in chapters \ref{chap:R:statistics} and \ref{chap:R:plotting}, it can affect the contrasts used by some tests of significance, and the arrangement or positions of the levels along axes and keys in plots. In an \Rlang \code{factor}, values indicate discrete unordered categories, most frequently the treatments in an experiment, or categories in a survey. Factor can be created either from numerical or character vectors. The different possible values are called \emph{levels}. Factors created with \Rfunction{factor()} are always unordered or categorical. \Rlang also supports \code{ordered} factors, created with function \Rfunction{ordered()} with identical user interface. The distinction, however, only affects how they are interpreted in statistical tests as discussed in chapter \ref{chap:R:statistics}.\index{factors!ordered} @@ -2587,7 +2587,7 @@ factor(x = c(1, 2, 2, 1, 2, 1, 1), ordered = TRUE) @ \begin{explainbox} -When the pattern of levels is regular, it is possible to use function \Rfunction{gl()}, \emph{generate levels}, to construct a factor. Nowadays, it is usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within \Rlang, \Rfunction{gl()} can save some typing. In this case instead of passing a vector as argument, we pass a \emph{recipe} to create it: \code{n} is the number of levels, and \code{k} the number of contiguous repeats (called ``replicates'' in \Rlang documentation) and \code{length} the length of the factor to be created. +When the pattern of levels is regular, it is possible to use function \Rfunction{gl()}, \emph{generate levels}, to construct a factor. Nowadays, it is usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within \Rlang, \Rfunction{gl()} can save some typing. In this case, instead of passing a vector as argument, we pass a \emph{recipe} to create it: \code{n} is the number of levels, \code{k} the number of contiguous repeats (called ``replicates'' in \Rlang documentation), and \code{length} the length of the factor to be created. <>= gl(n = 2, k = 5, labels = c("A", "B")) @@ -2598,14 +2598,14 @@ gl(n = 2, k = 1, length = 10, labels = c("A", "B")) @ \end{explainbox} -It is always preferable to use meaningful labels for levels, even if \Rlang does not require it. Here the vector is stored in a variable named \code{my.vector}. In a real data analysis situation in most cases the vector would have been read from a file on disk and would be longer. +It is always preferable to use meaningful labels for levels, even if \Rlang does not require it. Here the vector is stored in a variable named \code{my.vector}. In a real data analysis situation, in most cases, the vector would have been read from a file on disk and would be longer. <>= vct1 <- c("treated", "treated", "control", "control", "control", "treated") factor(vct1) @ -The ordering of levels is established at the time a factor is created, and by default is alphabetical. This default ordering of levels is frequently not the one needed. We can pass an argument to parameter \code{levels} of function \Rfunction{factor()} to set a different ordering of the levels. +The ordering of levels is established at the time a factor is created and by default it is alphabetical. This default ordering of levels is frequently not the one needed. We can pass an argument to parameter \code{levels} of function \Rfunction{factor()} to set a different ordering of the levels. <>= factor(x = vct1, levels = c("treated", "control")) @@ -2623,7 +2623,7 @@ The argument passed to \code{labels} can be a named vector that \emph{maps} new factor(x = c("a", "a", "b", "b", "b", "a"), labels = c(a = "treated", b = "control")) @ -In the examples above we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument to parameter \code{x}. This makes it possible to modify the ordering of levels or replace the labels in a factor. +In the examples above, we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument to parameter \code{x}. This makes it possible to modify the ordering of levels or replace the labels in a factor. <>= fct1 <- factor(x = vct1) @@ -2699,7 +2699,7 @@ Create a factor with levels labelled with words. Create another factor with the \end{playground} \begin{explainbox} -\textbf{Safely reordering and renaming factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter as shown on page \pageref{par:calc:factor:rename:levels}. In these more advanced examples we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself to protect from possible bugs due to typing mistakes, or for changes in the naming conventions used. +\textbf{Safely reordering and renaming factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter as shown on page \pageref{par:calc:factor:rename:levels}. In these more advanced examples, we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself to protect from possible bugs due to typing mistakes, or for changes in the naming conventions used. Reverse previous order using \Rfunction{rev()}. diff --git a/R.data.containers.Rnw b/R.data.containers.Rnw index 7cbce8a4..69be408a 100644 --- a/R.data.containers.Rnw +++ b/R.data.containers.Rnw @@ -16,19 +16,19 @@ The information that is available to the computer consists of a selected set of \section{Aims of This Chapter} -Data-set organisation and storage is one of the keys to efficient data analysis. How to keep together all the information that belongs together, say all measurements from an experiment and corresponding metadata such as treatments applied and/or dates. The title ``collective nouns'' is based on the idea that a data set is a collection of data objects. +Data set organisation and storage is one of the keys to efficient data analysis. How to keep together all the information that belongs together, say all measurements from an experiment and corresponding metadata such as treatments applied and/or dates. The title ``collective nouns'' is based on the idea that a data set is a collection of data objects. In this chapter, you will familiarise with how data sets are usually managed in \Rlang. I use both abstract examples to emphasise the general properties of data sets and the \Rlang classes available for their storage and a few more specific examples to exemplify their use in a more concrete way. While in chapter \ref{chap:R:as:calc} the focus was on atomic data types and objects, like vectors, useful for the storage of collections of values of a given type, like numbers, in the present chapter the focus is on the storage within a single object of heterogeneous data, such as a combination of factors, and character and numeric vectors. Broadly speaking, heterogeneous \emph{data containers}. -As in the previous chapter, I use diagrams to describe the structure of objects. +To describe the structure of \Rlang objects I use diagrams similar to those in the previous chapter. \index{data sets!their storage|(} \section{Data from Surveys and Experiments} \index{data sets!origin}\index{data sets!characteristics} -The data we plot, summarise and analyse in \Rlang, in most cases originate from measurements done as part of experiments or surveys. Data collected mechanically from user interactions with websites or by crawling through internet content originate from a statistical perspective from surveys. The value of any data comes from knowing their origin, say treatments applied to plants, or the country from where website users connect, sometimes several properties are of interest to describe the origin of the data and in other cases observations consist in the measurement of multiple properties on each subject under study. Consequently, all software designed for data analysis implements ways of dealing with data sets as a whole both during storage and when passing them as arguments to functions. A data set is a usually heterogeneous collection of data with related information. +The data we plot, summarise, and analyse in \Rlang, in most cases, originate from measurements done as part of experiments or surveys. Data collected mechanically from user interactions with websites or by crawling through internet content originate from a statistical perspective from surveys. The value of any data comes from knowing their origin, say treatments applied to plants, or the country from where website users connect; sometimes several properties are of interest to describe the origin of the data and in other cases observations consist in the measurement of multiple properties on each subject under study. Consequently, all software designed for data analysis implements ways of dealing with data sets as a whole both during storage and when passing them as arguments to functions. A data set is a usually heterogeneous collection of data with related information. -In \Rlang, lists are the most flexible type of objects useful for storing whole data sets. In most cases we do not need this much flexibility, so rectangular collections of observations are most frequently stored in a variation upon lists called data frames. These objects can have as their members the vectors and factors described in chapter \ref{chap:R:as:calc}. +In \Rlang, lists are the most flexible type of objects useful for storing whole data sets. In most cases, we do not need this much flexibility, so rectangular collections of observations are most frequently stored in a variation upon lists called data frames. These objects can have as their members the vectors and factors described in chapter \ref{chap:R:as:calc}. Any \Rlang object can have attributes, allowing objects to carry along additional bits of information. Some like comments are part of \Rlang and aimed at storage of ancillary information or metadata by users. Other attributes are used internally by \Rlang and finally users can store arbitrary ancillary data using attributes created \emph{ad hoc}. @@ -39,11 +39,11 @@ In \Rlang, \Rclass{list} objects are in several respects similar the vectors des In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as the members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. \Rlang lists are created, or constructed, with function \Rfunction{list()} similarly as vectors are constructed with function \Rfunction{c()}. \begin{explainbox} - In \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user-defined classes. + \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user-defined classes. \end{explainbox} \begin{explainbox} -List and list-like objects are widely used in \Rlang because they make it possible to keep, for example, the data, instructions for operations and results from operations together in a single \Rlang object that can saved, copied, etc. as a unit. This avoids the proliferation of multiple disconnected objects with their interrelations being encoded only by their names, or even worse in separate notes or even in a person's memory, all approaches that are error-prone. Model fit functions described in chapter \ref{chap:R:statistics} are good examples of this approach. Objects used to store the instructions to build plots with multiple layers as described in chapter \ref{chap:R:plotting} are also good examples. +List and list-like objects are widely used in \Rlang because they make it possible to keep, for example, the data, instructions for operations, and results from operations together in a single \Rlang object that can be saved, copied, etc. as a unit. This avoids the proliferation of multiple disconnected objects with their interrelations being encoded only by their names, or even worse in separate notes or even in a person's memory---all approaches that are error-prone. Model fit functions described in chapter \ref{chap:R:statistics} are good examples of this approach. Objects used to store the instructions to build plots with multiple layers as described in chapter \ref{chap:R:plotting} are also good examples. \end{explainbox} Our first list has as its members three different vectors, each one belonging to a different class: \code{numeric}, \code{character} and \code{logical}. The three vectors also differ in their length: 6, 1, and 2, respectively.\qRfunction{list()}\qRfunction{names()} @@ -124,7 +124,7 @@ list() \subsection{Member extraction, deletion and insertion} -In\index{lists!member extraction|(}\index{lists!member indexing|see{lists, member extraction}}\index{lists!deletion and addition of members|(} section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} we saw that the extraction operator \Roperator{[ ]} applied to a vector, returns a vector, longer or shorter, possibly of length one, or even length zero. Similarly, applying operator \Roperator{[ ]} to a list returns a list, possibly of different length: \code{lst1["x"]} or \code{lst[1]} return a list containing only one member, the numeric vector stored at the first position of \code{lst1}. In the last statement in the chunk below, \code{lst1[c(1, 3)]} returns a list of length two as expected. +In\index{lists!member extraction|(}\index{lists!member indexing|see{lists, member extraction}}\index{lists!deletion and addition of members|(} section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}, we saw that the extraction operator \Roperator{[ ]} applied to a vector, returns a vector, longer or shorter, possibly of length one, or even length zero. Similarly, applying operator \Roperator{[ ]} to a list returns a list, possibly of different length: \code{lst1["x"]} or \code{lst[1]} return a list containing only one member, the numeric vector stored at the first position of \code{lst1}. In the last statement in the chunk below, \code{lst1[c(1, 3)]} returns a list of length two as expected. <>= lst1["x"] @@ -148,7 +148,7 @@ lst1[[1]] @ \begin{explainbox}\label{box:extraction:opers} -We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[ ]]}, or with \Roperator{\$}. Operators \Roperator{[ ]} and \Roperator{[[ ]]} work like normal \Rlang functions, accepting as arguments passed to them both constant values and variables for indexing. In contrast, \Roperator{\$} mainly intended for use when typing at the console, accepts only bare member names on its \emph{rhs}. With \Roperator{[[ ]]} the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. A number as a positional index is also accepted. +We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[ ]]}, or with \Roperator{\$}. Operators \Roperator{[ ]} and \Roperator{[[ ]]} work like normal \Rlang functions, accepting as arguments passed to them both constant values and variables for indexing. In contrast, \Roperator{\$} mainly intended for use when typing at the console, accepts only bare member names on its \emph{rhs}. With \Roperator{[[ ]]}, the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. A number as a positional index is also accepted. <>= lst1a <- list(abcd = 123, xyzw = 789) @@ -184,7 +184,7 @@ The two extraction operators can be used together as shown below, with \code{lst lst1[[1]][3] @ -Extraction\label{par:calc:list:member:assign} operators can be used on the \emph{lhs} as well as on the \emph{rhs} of an assignment, and lists can be empty, i.e, be of length zero. The example below makes use of this to build a list step by step. +Extraction\label{par:calc:list:member:assign} operators can be used on the \emph{lhs} as well as on the \emph{rhs} of an assignment, and lists can be empty, i.e., be of length zero. The example below makes use of this to build a list step by step. <>= lst2 <- list() @@ -202,21 +202,21 @@ lst2[["y"]] <- lst2[["x"]] \end{playground} \begin{explainbox} -\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. \Rlang does not implement pointers to ``addresses'', or locations, in memory. In \Rlang, \code{list} members can be accessed through positional indexes or member names, similarly to vector members. Of course, as with vectors, insertions and deletions in the middle of a list, shift the position of members and change which member is pointed at by indexes for positions past the modified location. The names, in contrast, remain valid. +\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. \Rlang does not implement pointers to ``addresses'', or locations, in memory. In \Rlang, \code{list} members can be accessed through positional indexes or member names, similarly to vector members. Of course, as with vectors, insertions and deletions in the middle of a list, shift the position of members, and change which member is pointed at by indexes for positions past the modified location. The names, in contrast, remain valid. <>>= list(a = 1, b = 2, c = 3)[-2] @ \end{explainbox} -Three frequent operations on lists are concatenation, insertions and deletions.\index{lists!insert into}\index{lists!append to} The same functions as with vectors are used: functions \Rfunction{c()}, for concatenation, and \Rfunction{append()}, to append and insert. Lists can be combined only with other lists, otherwise, these operations work as with vectors (see pages \pageref{par:calc:concatenate}--\pageref{par:calc:append:end}). +Three frequent operations on lists are concatenation, insertions, and deletions.\index{lists!insert into}\index{lists!append to} The same functions as with vectors are used: \Rfunction{c()}, to concatenate, and \Rfunction{append()}, to append and insert. Lists can be combined only with other lists, otherwise, these operations work as with vectors (see pages \pageref{par:calc:concatenate}--\pageref{par:calc:append:end}). <>= lst3 <- append(lst1, list(yy = 1:10, zz = letters[5:1]), after = 2) lst3 @ -To\label{par:calc:lists:rm} delete a member from a list we assign \code{NULL} to it. +To\label{par:calc:lists:rm} delete a member from a list, we assign \code{NULL} to it. <>= lst1$y <- NULL @@ -234,7 +234,7 @@ str(lst1) \subsection{Nested lists}\label{sec:calc:lists:nested} -Lists\index{lists!nested} can be nested, i.e., lists of lists can be constructed to an arbitrary depth. In the example below \code{lst4} and \code{lst5} are members of \code{lst6}, i.e., \code{lst4} and \code{lst5} are nested within \code{lst6}. +Lists\index{lists!nested} can be nested, i.e., lists of lists can be constructed to an arbitrary depth. In the example below, \code{lst4} and \code{lst5} are members of \code{lst6}, i.e., \code{lst4} and \code{lst5} are nested within \code{lst6}. <>= lst4 <- list("a", "aa", 10) @@ -437,7 +437,7 @@ str(LST1) \end{playground} \begin{faqbox}{How to create an empty data frame?} -In the same way as \code{numeric()} by default creates a \code{numeric} vector of length zero, \Rfunction{data.frame()} by default creates a \code{data.frame} with zero rows and no columns. +In the same way as \code{numeric()} creates a \code{numeric} vector of length zero, \Rfunction{data.frame()} by default creates a \code{data.frame} with zero rows and no columns. <>= data.frame() @@ -469,7 +469,7 @@ cbind(C = 11:15, DF2) @ \end{faqbox} -Being two-dimensional and rectangular in shape, data frames, in relation to indexing and dimensions behave similarly to a matrix. They have two margins, rows and columns, and, thus, two indices are used to indicate the location of a member ``cell''. We provide some examples here, but please consult section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} and section \ref{sec:matrix:array} on page \pageref{sec:matrix:array} for additional details. +Being two-dimensional and rectangular in shape, data frames, in relation to indexing and dimensions, behave similarly to a matrix. They have two margins, rows, and columns, and, thus, two indices are used to indicate the location of a member ``cell''. We provide some examples here, but please consult section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} and section \ref{sec:matrix:array} on page \pageref{sec:matrix:array} for additional details. Matrix-like notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is in most cases a ``smaller'' data frame as in this example. @@ -492,7 +492,7 @@ df1[df1$treatment == "hot" , ] df1[df1$height > 8, "height"] @ -As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right-hand side and left-hand side of an assignment, allowing the replacement of both individual values and rectangular regions. +As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right- and left-hand sides of an assignment, allowing the replacement of both individual values and rectangular regions. The next few examples do assignments to ``cells'' of \code{df1}, either to one whole column, or individual values. The last statement in the chunk below copies a number from one location to another by using indexing of the same data frame both on the right side and left side of the assignment.\qRoperator{[[ ]]}\qRoperator{[ ]} @@ -582,7 +582,7 @@ df6<- data.frame(fct1, lst1) df6 @ -If the list is protected with \Rfunction{I()}, the list is added in whole as a variable or column in the data frame. In this case the length of the list must match the number of rows in the data frame, while the length and class of the individual members of the list can vary. The names of the list members are used to set the \code{rownames} of the data frame. +If the list is protected with \Rfunction{I()}, the list is added in whole as a variable or column in the data frame. In this case, the length of the list must match the number of rows in the data frame, while the length and class of the individual members of the list can vary. The names of the list members are used to set the \code{rownames} of the data frame. This is similar to the default behaviour of tibbles, while \Rlang data frames require explicit use of \Rfunction{I()} for lists not to be split (see chapter \ref{chap:R:data} on page \pageref{chap:R:data} for details about package \pkgname{tibble}). <>= @@ -626,7 +626,7 @@ When do extraction operators applied to data frames return a vector or factor, a \end{advplayground} \begin{explainbox} -In the case of \Rfunction{subset()} we can select columns directly as shown below, while for most other functions, extraction using operators \Roperator{[ ]}, \Roperator{[[ ]]} or \Roperator{\$} is needed. +In the case of \Rfunction{subset()}, we can select columns directly as shown below, while for most other functions, extraction using operators \Roperator{[ ]}, \Roperator{[[ ]]}, or \Roperator{\$} is needed. <>= subset(df8, x > 3, select = 2) @@ -658,7 +658,7 @@ columns <- c("x", "z") subset(df8, select = columns) @ -The use of \Rfunction{subset()} is convenient, but more prone to bugs compared to directly using the extraction operator \code{[ ]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. +The use of \Rfunction{subset()} is convenient, but more prone to bugs compared to directly using the extraction operator \code{[ ]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted, and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. \end{warningbox} A frequently used way of deleting a column by name from a data frame is to assign \code{NULL} to it---i.e., in the same way as members are usually deleted from \code{list}s. This approach modifies \code{df9} in place, rather than returning a modified copy of \code{df9}. @@ -730,7 +730,7 @@ Function \Rfunction{unsplit()} can be used to reverse splitting done by \Rfuncti Related to splitting a data frame is the calculation of summaries based on a subset of cases, or more commonly summaries for all observations but after grouping them based on the values in a column or the levels of a factor. \begin{faqbox}{How to summarise one variable from a data frame by group?} -To summarise a single variable by group we can use \Rfunction{aggregate()}. +To summarise a single variable by group, we can use \Rfunction{aggregate()}. <>= aggregate(x = iris$Petal.Length, @@ -740,7 +740,7 @@ aggregate(x = iris$Petal.Length, \end{faqbox} \begin{faqbox}{How to summarise numeric variables from a data frame by group?} -To summarise variables we can use \Rfunction{aggregate()} (see section \ref{sec:dplyr:group:wise} on page \pageref{sec:dplyr:group:wise} for an alternative approach using package \pkgnameNI{dplyr}). +To summarise variables, we can use \Rfunction{aggregate()} (see section \ref{sec:dplyr:group:wise} on page \pageref{sec:dplyr:group:wise} for an alternative approach using package \pkgnameNI{dplyr}). <>= aggregate(x = iris[ , sapply(iris, is.numeric)], @@ -785,7 +785,7 @@ head(df11, 2) @ \begin{warningbox} -When using the extraction operator \Roperator{[ ]} on both the left-hand-side and right-hand-side, with a \code{numeric} vector as an argument to swap two columns, the vectors or factors are swapped, while the names of the columns are not! +When using the extraction operator \Roperator{[ ]} on both the left- and right-hand-sides, with a \code{numeric} vector as an argument to swap two columns, the vectors or factors are swapped, while the names of the columns are not! To retain the correspondence between column naming and column contents after swapping or rearranging the columns \emph{using numeric indices}, we need to separately move the names of the columns. This may seem counter-intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names.\qRfunction{colnames()}\qRfunction{colnames()<-} <>= @@ -824,7 +824,7 @@ Create a new data frame containing three numeric columns with three different ha \subsection{Re-encoding or adding variables} -It is common that some variables need to be added to an existing data frame based on existing variables, either as a computed value or based on mapping for example treatments to sample codes already in a data frame. In the second case, named\index{named vectors!mapping with} vectors can be used to replace values in a variable or to add a variable to a data frame. +It is common that some variables need to be added to an existing data frame based on existing variables, either as a computed value or based on mapping, for example, treatments to sample codes already in a data frame. In the second case, named\index{named vectors!mapping with} vectors can be used to replace values in a variable or to add a variable to a data frame. Mapping is possible because the length of the value returned by the extraction operator \Roperator{[ ]} is given by the length of the indexing vector (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). Although we show toy-like examples, this approach is most useful with data frames containing many rows. @@ -860,9 +860,9 @@ DF1 <- data.frame(individual = rep(c(2, 4, 1), 2), \subsection{Operating within data frames}\label{sec:calc:df:with} -In the case of computing new values from existing variables named vectors are of limited use. Instead, variables in a data frame can be added or modified with \Rlang functions \Rscoping{transform()}, \Rscoping{with()} and \Rscoping{within()}. These functions can be thought as convenience functions as the same computations can be done using the extraction operators to access individual variables, in the lhs, rhs or both lhs and rhs (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). +In the case of computing new values from existing variables, named vectors are of limited use. Instead, variables in a data frame can be added or modified with \Rlang functions \Rscoping{transform()}, \Rscoping{with()} and \Rscoping{within()}. These functions can be thought as convenience functions as the same computations can be done using the extraction operators to access individual variables, in the lhs, rhs, or both lhs and rhs (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. +In the case of \Rscoping{with()}, only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In this example, column \code{A} of \code{df14} takes precedence, and the returned value is the expected one. @@ -872,7 +872,7 @@ df14$C <- with(df14, (A + B) / A) # add column head(df14, 3) @ -In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (In this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. +In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (in this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. <>= df14$C <- NULL @@ -892,7 +892,7 @@ head(df16, 3) @ \begin{explainbox} -Repeatedly pre-pending the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed can make \Rlang code verbose and difficult to understand. Functions \Rscoping{attach()} and its matching \Rscoping{detach()} allow us to change where \Rlang first looks for the names of objects mentioned in a code statement. When using a long name for a data frame, entering a simple calculation can easily result in a difficult-to-read statement. Here even with a very short name for the data frame, the verbosity compared to the last chunk above is clear. +Repeatedly pre-pending the name of a \emph{container}, such as a list or data frame, to the name of each member variable being accessed can make \Rlang code verbose and difficult to understand. Functions \Rscoping{attach()} and its matching \Rscoping{detach()} allow us to change where \Rlang first looks for the names of objects mentioned in a code statement. When using a long name for a data frame, entering a simple calculation can easily result in a difficult-to-read statement. Here even with a very short name for the data frame, the verbosity compared to the last chunk above is clear. <>= df14$C <- (df14$A + df14$B) / df14$A @@ -929,7 +929,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \index{data frames!long vs.\ wide shape} -As mentioned above, in most cases in \Rlang data rows represent measurement events or observations possibly on multiple response variables and factors describing groupings, i.e., a ``long'' shape. However, when measurements are repeated in time, columns rather frequently represent observations of the same response variable at different times, i.e., a ``wide'' shape. Other cases exist where reshaping is needed. Function \Rfunction{reshape()} can convert wide data frames into long data frames and vice versa. See section \ref{sec:data:reshape} on page \pageref{sec:data:reshape} on package \pkgnameNI{tidyr} for an alternative approach to reshaping data with a friendlier user interface. +As mentioned above, in most cases, in \Rlang data rows represent measurement events or observations possibly on multiple response variables and factors describing groupings, i.e., a ``long'' shape. However, when measurements are repeated in time, columns rather frequently represent observations of the same response variable at different times, i.e., a ``wide'' shape. Other cases exist where reshaping is needed. Function \Rfunction{reshape()} can convert wide data frames into long data frames and vice versa. See section \ref{sec:data:reshape} on page \pageref{sec:data:reshape} on package \pkgnameNI{tidyr} for an alternative approach to reshaping data with a friendlier user interface. We start by creating a data frame of hypothetical data measured on two occasions. With these data, for example, if we wish to compute the growth of each subject by computing the difference in \code{weight} and \code{height} between the two time points, one approach is to reshape the data frame into a wider shape and subsequently subtract the columns. @@ -1008,7 +1008,7 @@ comment(df1) Functions like \Rfunction{names()}, \Rfunction{dim()} or \Rfunction{levels()} return values retrieved from attributes stored in \Rlang objects, whereas \Rfunction{names()<-}, \Rfunction{dim()<-} or \Rfunction{levels()<-} set (or unset with \code{NULL}) the value of the respective attributes. Dedicated query and set functions do not exist for all attributes. Functions \Rfunction{attr()}, \Rfunction{attr()<-} and \Rfunction{attributes()} can be used with any attribute. With \Rfunction{attr()} we query, and with \Rfunction{attr()<-} we set individual attributes by name. With \Rfunction{attributes()} we retrieve all attributes of an object as a named \code{list}. In addition, method \Rfunction{str()} displays the structure of an \Rlang object with all its components, including their attributes. -Continuing with the previous example, we can retrieve and set the value stored in the \code{"comment"} attribute using these functions. In the second statement we delete the value stored in the attribute by assigning \code{NULL} to it. +Continuing with the previous example, we can retrieve and set the value stored in the \code{"comment"} attribute using these functions. In the second statement, we delete the value stored in the attribute by assigning \code{NULL} to it. <>= attr(df1, "comment") @@ -1017,7 +1017,7 @@ attr(df1, "comment") comment(df1) # same as previous line @ -The \code{"names"} attribute of \code{df1} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case and save them back to the same attribute. \qRfunction{colnames()}\qRfunction{colnames()<-} +The \code{"names"} attribute of \code{df1} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case, and save them back to the same attribute. \qRfunction{colnames()}\qRfunction{colnames()<-} <>= names(df1) @@ -1028,7 +1028,7 @@ attr(df1, "names") # same as previous line @ \begin{advplayground} - In general, \Rlang objects do not have by default names assigned to members. As seen on page \pageref{par:calc:vector:map} we can give names to vector members during construction with a call to \Rfunction{c()} or we can assign names (set attribute \code{names}) with function \Rfunction{names()<-} to existing vectors. Lists behave almost the same as vectors, although members of nested objects can also be named. Data frames have attributes \code{names} and \code{row.names}, that can be accessed with functions \Rfunction{names()} or \Rfunction{colnames()}, and function \Rfunction{rownames()}, respectively. The attributes can be set with functions \Rfunction{names()<-} or \Rfunction{colnames()<-}, and \Rfunction{rownames()<-}. The \Rfunction{data.frame()} constructor sets (column) names and row names by default. The \Rfunction{matrix()} constructor by default does not set \code{dimnames} or \code{names} attributes. When names are assigned to a \code{matrix} with \Rfunction{names()<-}, the matrix behaves like a vector, and the names are assigned to individual members. Functions \Rfunction{dimnames()<-}, \Rfunction{colnames()<-} and \Rfunction{rownames()<-} are used to assign names to columns and rows. The matching functions \Rfunction{dimnames()}, \Rfunction{colnames()} and \Rfunction{rownames()} are used to access these values. + In general, \Rlang objects do not have by default names assigned to members. As seen on page \pageref{par:calc:vector:map}, we can give names to vector members during construction with a call to \Rfunction{c()} or we can assign names (set attribute \code{names}) with function \Rfunction{names()<-} to existing vectors. Lists behave almost the same as vectors, although members of nested objects can also be named. Data frames have attributes \code{names} and \code{row.names}, that can be accessed with functions \Rfunction{names()} or \Rfunction{colnames()}, and function \Rfunction{rownames()}, respectively. The attributes can be set with functions \Rfunction{names()<-} or \Rfunction{colnames()<-}, and \Rfunction{rownames()<-}. The \Rfunction{data.frame()} constructor sets (column) names and row names by default. The \Rfunction{matrix()} constructor by default does not set \code{dimnames} or \code{names} attributes. When names are assigned to a \code{matrix} with \Rfunction{names()<-}, the matrix behaves like a vector, and the names are assigned to individual members. Functions \Rfunction{dimnames()<-}, \Rfunction{colnames()<-}, and \Rfunction{rownames()<-} are used to assign names to columns and rows. The matching functions \Rfunction{dimnames()}, \Rfunction{colnames()} and \Rfunction{rownames()} are used to access these values. When no names have been set, \Rfunction{names()}, \Rfunction{colnames()}, \Rfunction{rownames()}, and \Rfunction{dimnames()} return \code{NULL}. In contrast, \Rfunction{labels()}, intended to be used for printing, returns made-up names based on positions. @@ -1062,7 +1062,7 @@ attributes(df1) @ \begin{explainbox} -The attributes used internally by \Rlang can be directly modified by user code. In most cases, this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below we read the attributes from a matrix. +The attributes used internally by \Rlang can be directly modified by user code. In most cases, this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below, we read the attributes from a matrix. <>= mat1 <- matrix(1:10, ncol = 2) @@ -1098,7 +1098,7 @@ is.vector(mat1 ) \end{explainbox} \begin{warningbox} -There is no restriction to the creation, setting, resetting and reading of attributes, but not all functions and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. The values returned by model fitting functions like \Rfunction{lm()} are good examples of the extensive use of class-specific attributes (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). +There is no restriction to the creation, setting, resetting, and reading of attributes, but not all functions and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. The values returned by model fitting functions like \Rfunction{lm()} are good examples of the extensive use of class-specific attributes (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). \end{warningbox} <>= @@ -1111,7 +1111,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \subsection{Data sets in \Rlang and packages} \index{data!loading data sets|(}\index{data!saving data sets|(} -To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages (whether a call to \Rfunction{data()} is needed or not depends on how the package where the data objects are defined was configured). It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import ``foreign'' data is discussed in the \Rlang documentation, in the manual \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} on page \pageref{sec:files:remote}). +To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages (whether a call to \Rfunction{data()} is needed or not depends on how the package where the data objects are defined was configured). It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import `foreign' data is discussed in the \Rlang documentation, in the manual \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} on page \pageref{sec:files:remote}). In the next example, we load data available in \Rlang package \pkgname{datasets} as \Rlang objects by calling function \Rfunction{data()}. The loaded \Rlang object \code{cars} is a data frame. (Package \pkgname{datasets} is part of the \Rpgrm distribution and is always available). @@ -1124,7 +1124,7 @@ data(cars) \subsection{.rda files}\label{sec:data:rda} -By\index{file formats!RDA ``R data, multiple objects''} default, at the end of a session, the current workspace containing the results of one's work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of \Rpgrm, although the newer, default format may be not readable with earlier \Rpgrm versions. Whether compression is used, and whether the ``binary'' data is encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. +By\index{file formats!RDA ``R data, multiple objects''} default, at the end of a session, the current workspace containing the results of one's work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of \Rpgrm, although the newer, default format may be not readable with earlier \Rpgrm versions. Whether compression is used, and whether the ``binary'' data are encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. We create a data frame object and then save it to a file. The file name used can be any valid one in the operating system, however to ensure compatibility with multiple operating systems, it is good to use only ASCII characters. Although not enforced, using the name tag \code{.rda} or \code{.Rda} is recommended. @@ -1226,7 +1226,7 @@ rm(list = setdiff(ls(pattern="*"), to.keep)) \section{Plotting} \index{plots!base R graphics} -In most cases the most effective way of obtaining an overview of a data set is by plotting it using multiple approaches. The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specialisations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section, I very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. I describe in detail the use of the \emph{layered grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} on page \pageref{chap:R:plotting}. +In most cases, the most effective way of obtaining an overview of a data set is by plotting it using multiple approaches. The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specialisations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section, I very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. I describe in detail the use of the \emph{layered grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} on page \pageref{chap:R:plotting}. \subsection{Plotting data} It is possible to pass two vectors (here columns from a data frame) directly as arguments to the \code{x} and \code{y} parameters of function \Rfunction{plot()}. (The plot is shown farther down, as the three approaches create identical plots.) @@ -1245,13 +1245,13 @@ It is also possible to use \Rfunction{with()} or \Rfunction{attach()} as describ with(cars, plot(x = speed, y = dist)) @ -However, it is better to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing as an argument to parameter \code{data} a data frame containing these variables as columns. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. The names used in the formula, are those of columns in the \code{data.frame}. As described in section \ref{sec:stat:mf} on page \pageref{sec:stat:mf} the same syntax is used to describe models to be fitted to observations. +However, it is better to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing as an argument to parameter \code{data} a data frame containing these variables as columns. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. The names used in the formula, are those of columns in the \code{data.frame}. As described in section \ref{sec:stat:mf} on page \pageref{sec:stat:mf}, the same syntax is used to describe models to be fitted to observations. <>= plot(dist ~ speed, data = cars) @ -Within \Rlang there exist different specialisations, or ``flavours'', of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . +Within \Rlang there exist different specialisations, or ``flavours'', of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast, passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . <>= plot(weight ~ feed, data = chickwts) @@ -1261,11 +1261,11 @@ plot(weight ~ feed, data = chickwts) Graphical\index{file formats!PDF}\index{file formats!PNG} output, such as produced by \Rfunction{plot()}, is rendered by \emph{graphical output devices}. When \Rlang is used interactively, a software device is opened automatically to output the graphical output to a physical device, usually the computer screen. The name of the \Rlang software device used may depend on the operating system (e.g., \osname{MS-Windows} or \osname{Linux}), or on the IDE (e.g., \RStudio). -In \Rlang, software graphical devices not necessarily generate output on a physical device like a printer, as several of these devices translate the plotting commands into a file format and save it to disk. Graphical devices in \Rlang differ in the kind of output they produce: raster or bitmap files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF), or output to a physical device like the screen of a computer. Additional devices are available through contributed \Rlang packages. +In \Rlang, software graphical devices not necessarily generate output on a physical device like a printer, as several of these devices translate the plotting commands into a file format and save it to disk. Graphical devices in \Rlang differ in the kind of output they produce: raster or bitmap files (e.g., TIFF, PNG, and JPEG formats), vector graphics files (e.g., SVG, EPS, and PDF), or output to a physical device like the screen of a computer. Additional devices are available through contributed \Rlang packages. \RStudio makes it possible to export plots into graphic files through a menu-based interface in the \emph{Plots} viewer tab. This interface uses some of the some graphic devices that are available at the console and through scripts. For reproducibility, it is preferable to include the \Rlang commands used to export plots in the scripts used for data analysis. -Devices follow the paradigm of ON and OFF switches, opening and closing a destination for \code{print()}, \code{plot()} and related functions. Some devices producing a file as output, save their output one plot at a time to single-page graphic files while others write the file only when the device is closed, possibly as a multi-page file. +Devices follow the paradigm of ON and OFF switches, opening and closing a destination for \code{print()}, \code{plot()} and related functions. Some devices producing a file as output, save their output one plot at a time to single-page graphic files, while others write the file only when the device is closed, possibly as a multi-page file. When opening a device the user supplies additional information. For the PDF and SVG devices that produce output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. @@ -1300,7 +1300,7 @@ This is not the only approach available in \Rpgrm for building complex plots. As \index{data sets!their storage|)} \section{Further Reading} -For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, I suggest the book \citetitle{Matloff2011} \autocite{Matloff2011}, with emphasis on the \Rlang language and programming. The new, open-source, book \citetitle{Gagolewski2023} \autocite{Gagolewski2023}, provides a free alternative. This book also covers base \Rlang plotting giving more advanced examples than \textit{Learn R: As a Language}. An in-depth description of plotting and graphic devices in \Rlang is available in the book \citetitle{Murrell2019} \autocite{Murrell2019}. +For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, I suggest the book \citetitle{Matloff2011} \autocite{Matloff2011}, with emphasis on the \Rlang language and programming. The new, open-source, book \citetitle{Gagolewski2023} \autocite{Gagolewski2023} provides a free alternative. This book also covers base \Rlang plotting giving more advanced examples than \textit{Learn R: As a Language}. An in-depth description of plotting and graphic devices in \Rlang is available in the book \citetitle{Murrell2019} \autocite{Murrell2019}. <>= rm(list = setdiff(ls(pattern="*"), to.keep)) diff --git a/R.data.io.Rnw b/R.data.io.Rnw index 8faf6d8c..4d7966da 100644 --- a/R.data.io.Rnw +++ b/R.data.io.Rnw @@ -209,7 +209,7 @@ When \Rpgrm is used in batch mode, the ``files'' \code{stdin}, \code{stdout} and \index{importing data!text files|(}\index{file formats!plain text} In general, text files are the most portable approach to data storage but usually also the least efficient with respect to the size of the file. Text files are composed of encoded characters. This makes them easy to edit with text editors and easy to read from programs written in most programming languages. On the other hand, how the data encoded as characters is arranged can be based on two different approaches: positional or using a specific character as a separator. -The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes white space is used as a separator, most commonly when all values are to be converted to \code{numeric}. +The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes whitespace is used as a separator, most commonly when all values are to be converted to \code{numeric}. \begin{explainbox} \textbf{Not all text files are born equal.}\index{importing data!R names} When reading text files, and \emph{foreign} binary files which may contain embedded text strings, there is potential for their misinterpretation during the import operation. One common source of problems, is that column headers are to be read as \Rlang names. As earlier discussed, there are strict rules, such as avoiding spaces or special characters if the names are to be used with the normal \Rlang syntax. On import, some functions will attempt to sanitise the names, but others not. Most such names are still accessible in \Rlang statements, but a special syntax is needed to protect them from triggering syntax errors through their interpretation as something different than variable or function names---in \Rlang jargon we say that they need to be quoted. @@ -220,7 +220,7 @@ Some of the things we need to be on the watch for are: 3) Wrongly guessed column classes---a typing mistake affecting a single value in a column, e.g., the wrong kind of decimal marker, can prevent the column from being recognised as numeric. 4) Mismatched decimal marker in \code{CSV} files---the marker depends on the locale (language and country settings). -If you encounter problems after import, such as failure of extraction of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes or white space. +If you encounter problems after import, such as failure of extraction of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes or whitespace. To demonstrate some of these problems, I create a data frame with name sanitation disabled, and in the second statement with sanitation enabled. The first statement is equivalent to the default behaviour of functions in package \pkgname{readr} and the second is equivalent to the behaviour of base \Rlang functions. \pkgname{readr} prioritises the integrity of the original data while \Rlang prioritises compatibility with \Rlang's naming rules. @@ -245,7 +245,7 @@ The hardest part of all these problems is to diagnose their origin, as function Text files containing data in columns can be divided into two broad groups. Those with fixed-width fields and those with delimited fields. Fixed-width fields were especially common in the early days of \langname{FORTRAN} and \langname{COBOL} when data storage capacity was very limited. These formats are frequently capable of encoding information using fewer characters than when delimited fields are used. The best way of understanding the differences is with examples. Although in this section we exemplify the use of functions by passing a file name as an argument, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). \begin{warningbox} -Wether columns containing character strings that cannot be converted into numbers are converted into factors or remain as character strings in the returned data frame depends on the value passed to parameter \code{stringsAsFactors}. The default changed in \Rlang version 4.0.0 from \code{TRUE} into \code{FALSE}. If code is to work consistently in old and new versions of \Rlang \code{stringsAsFactors = FALSE} has to be passed explicitly in calls to \Rfunction{read.csv} (the approach used in the book). +Wether columns containing character strings that cannot be converted into numbers are converted into factors or remain as character strings in the returned data frame depends on the value passed to parameter \code{stringsAsFactors}. The default changed in \Rlang version 4.0.0 from \code{TRUE} into \code{FALSE}. If code is to work consistently in old and new versions of \Rlang \code{stringsAsFactors = FALSE} has to be passed explicitly in calls to \Rfunction{read.csv()} (the approach used in the book). \end{warningbox} In\index{text files!CSV files}\index{text files!TSV files} the first example a file with fields solely delimited by ``,'' is read. This is what is called comma-separated-values (CSV) format that can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. @@ -273,7 +273,7 @@ sapply(from_csv_a.df, class) Read the file \code{not-aligned-ASCII-UK.csv} with function \Rfunction{read.csv2()} instead of \Rfunction{read.csv()}. Although this may look like a waste of time, the point of the exercise is for you to get familiar with \Rlang behaviour in case of such a mistake. This will help you recognise similar errors when they happen accidentally, which is quite common when files are shared. \end{playground} -Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added white space to align the columns, to make it easier to read by humans. +Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added whitespace to align the columns, to make it easier to read by humans. The contents of file \code{aligned-ASCII-UK.csv} are shown below. @@ -295,7 +295,7 @@ from_csv_b.df[["col4"]] sapply(from_csv_b.df, class) @ -By default, column names are sanitised but white space in character strings kept. Passing an additional argument changes this default so that leading and trailing white space are discarded. Most likely the default has been chosen so that by default data integrity is maintained. +By default, column names are sanitised but whitespace in character strings kept. Passing an additional argument changes this default so that leading and trailing whitespace are discarded. Most likely the default has been chosen so that by default data integrity is maintained. <>= from_csv_c.df <- @@ -310,7 +310,7 @@ sapply(from_csv_c.df, class) @ \begin{explainbox} -When\index{importing data!character to factor conversion} character strings are converted into factors, leading and trailing white space is retained in the labels of factor levels. Leading and trailing white space are difficult to see when data frames are printed, as shown below. This example shows what problems were frequently encountered in earlier versions of \Rlang, and can still occur when factors are created. The recommended approach is to use the default \code{stringsAsFactors = FALSE} and do the conversion into factors in a separate step. +When\index{importing data!character to factor conversion} character strings are converted into factors, leading and trailing whitespace is retained in the labels of factor levels. Leading and trailing whitespace are difficult to see when data frames are printed, as shown below. This example shows what problems were frequently encountered in earlier versions of \Rlang, and can still occur when factors are created. The recommended approach is to use the default \code{stringsAsFactors = FALSE} and do the conversion into factors in a separate step. <>= from_csv_b.df <- @@ -330,7 +330,7 @@ Decimal\index{importing data!decimal marker} points and exponential notation are This handled by using functions \Rfunction{read.csv2()} and \Rfunction{write.csv2()}. Furthermore, parameters \code{dec} and \code{sep} allow setting the decimal marker and field separator to arbitrary character strings. -Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by white space (one or more spaces, tabs, new lines, or carriage return). +Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by whitespace (one or more spaces, tabs, new lines, or carriage return). The contents of file \code{aligned-ASCII.txt} are shown below. @@ -339,7 +339,7 @@ cat(readLines("extdata/aligned-ASCII.txt"), sep = "\n") @ The file is read and the returned value stored in a variable named \code{from\_txt\_b.df}, and printed. -Leading and trailing white space are removed because they are recognised as part of the separators. For character strings containing embedded spaces to be decoded as a single value they need to be quoted in the file as in \code{aligned-ASCII.txt} above. +Leading and trailing whitespace are removed because they are recognised as part of the separators. For character strings containing embedded spaces to be decoded as a single value they need to be quoted in the file as in \code{aligned-ASCII.txt} above. <>= from_txt_b.df <- @@ -443,7 +443,7 @@ Package \pkgname{readr} is part of the \pkgname{tidyverse} suite. It defines fun Although in this section we exemplify the use of these functions by passing a file name as an argument, as is the case with \Rlang native functions, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). Furthermore,\index{file formats!compressed} if the file name ends in a tag recognisable as indicating a compressed file format, e.g., \code{.gz} or \code{.zip}, the file will be uncompressed on the fly. \begin{warningbox} -Functions ``equivalent'' to native \Rlang functions described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behaviour than \Rfunction{read.table()}, although they both read fields separated by white space. Row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). +Functions ``equivalent'' to native \Rlang functions described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behaviour than \Rfunction{read.table()}, although they both read fields separated by whitespace. Row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). \end{warningbox} \begin{warningbox} @@ -460,7 +460,7 @@ read_csv(file = "extdata/aligned-ASCII-UK.csv", show_col_types = FALSE) read_csv(file = "extdata/not-aligned-ASCII-UK.csv", show_col_types = FALSE) @ -Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}, quoted strings containing white space are no longer recognised. See above example using \Rfunction{read.table()}. Examples below are not run, but kept as they may work again in the future. +Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}, quoted strings containing whitespace are no longer recognised. See above example using \Rfunction{read.table()}. Examples below are not run, but kept as they may work again in the future. <>= read_table(file = "extdata/aligned-ASCII.txt") diff --git a/R.functions.Rnw b/R.functions.Rnw index c37d2fa2..168a8aa6 100644 --- a/R.functions.Rnw +++ b/R.functions.Rnw @@ -17,12 +17,12 @@ Computer Science is a science of abstraction---creating the right model for a pr \section{Aims of This Chapter} -In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. I start by discussing how to define and use new functions, operators and classes. What are their semantics and how they contribute to conciseness and reliability of computer scripts and programs. Later I focus on using existing packages to share extensions to \Rlang and touch briefly on how they work. I do not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. Instead I discuss how packages are installed and used. +In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. I start by discussing how to define and use new functions, operators, and classes. What are their semantics and how they contribute to conciseness and reliability of computer scripts and programs. Later I focus on using existing packages to share extensions to \Rlang and touch briefly on how they work. I do not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. Instead I discuss how packages are installed and used. \section{Defining Functions and Operators}\label{sec:script:functions} \index{functions!defining new}\index{operators!defining new} -\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector we have created the abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. +\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector, we formulate an abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. The main role of functions is that of providing an abstraction allowing us to avoid repeating blocks of code (groups of statements) applying the same operations on different data. The reasons to avoid repetition of similar blocks of code statements are that 1) if the algorithm or implementation needs to be revised---e.g., to fix a bug or error---it is best to make edits in a single place; 2) sooner or later pieces of repeated code can become different leading to inconsistencies and hard-to-track bugs; 3) abstraction and division of a problem into smaller chunks, greatly helps with keeping the code understandable to humans; 4) textual repetition makes the script file longer, and this makes debugging, commenting, etc., more tedious, and error prone; 5) with well-defined input and output, functions facilitate testing. @@ -38,7 +38,7 @@ Function \code{fun1()} has two formal parameters, \code{x} and \code{y}. fun1 <- function(x, y){x * y} @ -When we call \code{fun1()} with \code{4} and \code{3} as arguments, the computation that takes place is \code{4 * 3} and the value returned is \code{12}. In this example the returned value or result is printed, but it could have been assigned to a variable or used in further computations within the calling statement. +When we call \code{fun1()} with \code{4} and \code{3} as arguments, the computation that takes place is \code{4 * 3} and the value returned is \code{12}. In this example, the returned value or result is printed, but it could have been assigned to a variable or used in further computations within the calling statement. <>= fun1(x = 4, y = 3) @@ -159,7 +159,7 @@ Scoping in \Rlang is implemented using \emph{environments} and \emph{name spaces Parameters and local variables are not read-only, they behave like normal variables within the body of the function. However, assignments made using the operator \Roperator{<-}, only affect a local copy that is destroyed when the function returns. \end{warningbox} -The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with the namespace where it is defined. +The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation, one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with the namespace where it is defined. As the \Rlang language has few reserved words for which no redefinition is allowed, we should take care not to accidentally reuse names that are part of the language. For example, \code{pi} is a constant defined in \Rlang with the value of the mathematical constant $\pi$. If we use the same name for one of our variables, the original definition is hidden and can no longer be normally accessed. @@ -172,7 +172,7 @@ pi exists("pi") @ -In the example above, the two variables are not defined in the same scope. In the example below we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} +In the example above, the two variables are not defined in the same scope. In the example below, we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} <>= my.pie <- "raspberry pie" @@ -271,7 +271,7 @@ Operators are functions that use a different syntax for being called. If their n `/`(e1 = 1 , e2 = 2) @ -\Kern{1}{An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}).} +\Kern{1}{An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions, we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}).} The name by itself and enclosed in back ticks allows us to access the definition of an operator. @@ -441,20 +441,19 @@ print(as.numeric(b)) \subsection{Sharing of \Rlang-language extensions} \index{extensions to R} -The most elegant way of adding new features or capabilities to \Rlang is through packages. A package can contain any, seevral or all of \Rlang function and operator definitions, data objects, classes and their methods, plus the corresponding documentation. Some packages available through \CRAN contain only one of two \Rlang objects while others contain hundreds of them. After loading and attaching a package the objects that the package exports can be used as if they were part \Rlang itself. +The most elegant way of adding new features or capabilities to \Rlang is through packages. A package can contain any, several or all of \Rlang function and operator definitions, data objects, classes, and their methods, plus the corresponding documentation. Some packages available through \CRAN contain only one or two \Rlang objects while others contain hundreds of them. After loading and attaching a package, the objects that the package exports can be used as if they were part \Rlang itself. Packages are, without doubt, the best mechanism for sharing extensions to \Rlang. However, in most situations, packages are also very useful for managing code that will be reused by a single person over time. \Rlang packages have strict rules about their contents, file structure, and documentation, which makes it possible among other things for the package documentation to be merged into \Rpgrm's help system when a package is loaded. With a few exceptions, packages can be written so that they will work on any computer where \Rpgrm runs. \begin{explainbox} -In a source file the package code is in text files, simply archived and compressed together into a single file. A binary file has been processed into a form suitable for faster installation under a given operating system and possibly CPU family. Binary files are also specific to each major version of \Rlang. In addition to being slower, installation from source files in many cases requires additional software like compilers to be available at the time of installation. A compiler is a program that translates the text representation of a computer program written in \Clang, \Cpplang, \langname{FORTRAN}, etc., into machine code, i.e., instructions for the computer hardware. \Rlang code is translated into instructions for a virtual machine, part of \Rpgrm, that does the final translation into machine code at runtime. +In a ``source package'', the code written in \Rlang, and possibly in other programming languages, is contained in text files that are compressed together into a single archive file. In a ``binary package'' the source code is already processed into a form suitable for faster installation. Binary package files are specific to each major version of \Rlang, operating system, and computer architecture. In addition to being slower, package installation from sources can requires additional software, such as compilers. A compiler translates the text representation of a computer program written in \Clang, \Cpplang, \langname{FORTRAN}, etc., into machine code, i.e., instructions for the computer hardware. \Rlang code is compiled into instructions for a virtual machine, part of \Rlang, that does the final translation into machine code at runtime. \end{explainbox} -For distribution a single compressed archive file is used for aech package. Packages can be shared as source- or binary-code files, sent for example through e-mail. However, the largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the packages and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing (\Sexpr{lubridate::today()}) was \Sexpr{signif(nrow(available.packages(repos = "https://cran.rstudio.com/")), 3)}. +For distribution, a single compressed archive file is used for aech package. Packages can be shared as source- or binary-code files, sent for example through e-mail. However, the largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the packages and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing (\Sexpr{lubridate::today()}) was \Sexpr{signif(nrow(available.packages(repos = "https://cran.rstudio.com/")), 3)}. -A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor} (\url{https://www.bioconductor.org/}), containing packages that pass strict quality tests, adding an additional 3\,400 packages. rOpenScience\index{rOpenScience} has established guidelines and a system for code peer review for \Rlang packages. These peer-reviewed packages are available through \CRAN or other repositories and listed at the rOpenScience website (\url{https://ropensci.org/}). -Occasionally one may have or want to install packages directly from Git repositories such as versions still under development and not yet submitted to \CRAN. +A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor} (\url{https://www.bioconductor.org/}), containing packages that pass strict quality tests, adding an additional 3\,400 packages. rOpenScience\index{rOpenScience} has established guidelines and a system for code peer review for \Rlang packages. These peer-reviewed packages are available through \CRAN or other repositories and listed at the rOpenScience website (\url{https://ropensci.org/}). Occasionally, one may have, or want, to install packages or updates that are not yet in \CRAN, either from the R Universe (\url{https://r-universe.dev/}) repositories, or from Git repositories (e.g., from GitHub). -A good way of learning how the extensions provided by a package work, is experimenting with them. When using a function we are not yet familiar with, looking at its help to check all its features expands our ``toolbox''. While documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based its documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. +A good way of learning how the extensions provided by a package work, is to experiment with them. When using a function we are not yet familiar with, looking at its help to check all its features expands our ``toolbox''. While documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based its documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. \subsection{Download, installation and use}\label{sec:packages:install} @@ -466,7 +465,7 @@ The instructions below assume that the user has access to repositories on the in \end{warningbox} \begin{faqbox}{How to install or update a package from CRAN?} -\CRAN is the default repository for \Rlang packages. If you use \RStudio or another IDE as a front end on any operating system or \pgrmname{RGUI} under \pgrmname{MS-Windows}, installation and updates can be done through a menu or GUI `button'. These menus use calls to \Rfunction{install.packages()} and \Rfunction{update.packages()} behind the scenes. +\CRAN is the default repository for \Rlang packages. If you use \RStudio or another IDE as a front end on any operating system or \pgrmname{RGUI} under \pgrmname{MS-Windows}, installation and updates can be done through a menu or GUI button. These menus use calls to \Rfunction{install.packages()} and \Rfunction{update.packages()} behind the scenes. Alternatively, at the \Rpgrm command line, or in a script, \Rfunction{install.packages()} can be called with the name of the package as an argument. For example, to install package \pkgname{learnrbook} one can use @@ -499,9 +498,9 @@ pak::pkg_install("aphalo/learnrbook-pkg") # from GitHub @ \end{explainbox} -\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. This is because some \Rlang packages contain source code in other languages such as \Clang, \Cpplang or \langname{FORTRAN} that needs to be compiled into machine code during installation. Under \pgrmname{MS-Windows}, the needed shell, commands and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in an installer under the name \pgrmname{RTools} (available from \CRAN). \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}) is usually needed to build the PDF of the package's manual. +\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. This is because some \Rlang packages contain source code in other languages such as \Clang, \Cpplang or \langname{FORTRAN} that needs to be compiled into machine code during installation. Under \pgrmname{MS-Windows}, the needed shell, commands, and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in an installer under the name \pgrmname{RTools} (available from \CRAN). \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}) is usually needed to build the PDF of the package's manual. -Under \pgrmname{MS-Windows} it is easier to install packages from binary \texttt{.zip} files than from \texttt{.tar.gz} source files. For \pgrmname{OS X} (Apple Mac) the situation is similar, with binaries available both for Intel and ARM (M1, M2 series) processors. Most, but not all, Linux distributions include in the default setup the tools needed for installation of \Rlang packages. Under Linux it is rather common to install packages from sources, although package binaries have recently become more easily available. +Under \pgrmname{MS-Windows}, it is easier to install packages from binary \texttt{.zip} files than from \texttt{.tar.gz} source files. For \pgrmname{OS X} (Apple Mac) the situation is similar, with binaries available both for Intel and ARM (M1, M2 series) processors. Most, but not all, Linux distributions include in the default setup the tools needed for installation of \Rlang packages. Under Linux it is rather common to install packages from sources, although package binaries have recently become more easily available. If the tools are available, packages can be easily installed from sources from within \RStudio. However, binaries are for most packages also readily available. In \CRAN, the binary for a new version of a package becomes available with a delay of one or two days compared to the source. For packages that need compilation, the installation from sources takes more time than installation from binaries. @@ -550,9 +549,9 @@ Conflicts among packages can easily arise, for example, when they use the same n \subsection{Finding suitable packages} -Due to the large number of contributed \Rlang packages it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. To analyse data using almost any of the more common statistical methods does not require the use of special packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang. When one considers the use of novel or specialised types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. +Due to the large number of contributed \Rlang packages, it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. Analysing data using almost any of the more common statistical methods does not require the use of contributed packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang. When one considers the use of novel or specialised types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. -The \CRAN repository has a very broad scope and includes a section called ``views''. \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering or specific applications. These views are maintained by different expert editors. The \Rlang views can be found at \url{https://cran.r-project.org/web/views/}. +The \CRAN repository has a very broad scope and includes a section called ``views''. \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering, or specific applications. These views are maintained by different expert editors. The \Rlang views can be found at \url{https://cran.r-project.org/web/views/}. The Bioconductor repository specialises in bioinformatics with \Rlang. It also has a section with ``views'' and within it, descriptions of different data analysis workflows. The workflows are especially good as they reveal which sets of packages work well together. These views can be found at \url{https://www.bioconductor.org/packages/release/BiocViews.html}. @@ -562,7 +561,7 @@ The \CRAN repository keeps an archive of earlier versions of packages, on an ind \subsection{How packages work}\label{sec:packages:work} -\Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. Loading and attaching a package with \Rfunction{library()} makes visible only the exported objects. Attaching a package adds these objects to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases because they may change or be removed in future versions. +\Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. Loading and attaching a package with \Rfunction{library()} makes visible only the exported objects. Attaching a package adds these objects to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases, to avoid making a commitment about their availability in future versions, which could constrain further development. \begin{explainbox} Package namespaces can be detached and also unloaded with function \Rscoping{detach()} using a slightly different notation for the argument from that which we described for data frames in section \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}. This is very seldom needed, but one case I have come across is a package that redefines a generic function of a method of a package it imports, thus preventing the normal use of a third package that depends on the original definition of the generic. diff --git a/R.intro.Rnw b/R.intro.Rnw index 08ec363e..f91b2671 100644 --- a/R.intro.Rnw +++ b/R.intro.Rnw @@ -26,19 +26,19 @@ I describe the steps taken in a typical scientific or technical study, including \subsection{\Rlang as a language} \index{R as a language@{\Rlang as a language}} -\Rlang is a computer language designed for data analysis and data visualisation, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity and generality. \Rlang excels at generality thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily followed by user code written in \Rlang. +\Rlang is a computer language designed for data analysis and data visualisation, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity, and generality. \Rlang excels at generality, thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily followed by user code written in \Rlang. -In the case of languages like \Cpplang, \Clang, \pascallang and \langname{FORTRAN} multiple software implementations exist (different compilers and interpreters, i.e., pieces of software that translate programs encoded in these languages into \emph{machine code} instructions for computer processors to run). So in addition to different flavours of each language stemming from different definitions, e.g., versions of international standards, different implementations of the same standard may have, usually small, unintentional and intentional differences. +In the case of languages like \Cpplang, \Clang, \pascallang, and \langname{FORTRAN}, multiple software implementations exist (different compilers and interpreters, i.e., pieces of software that translate programs encoded in these languages into \emph{machine code} instructions for computer processors to run). So in addition to different flavours of each language stemming from different definitions, e.g., versions of international standards, different implementations of the same standard may have, usually small, unintentional and intentional differences. -Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} of \Rpgrm as a computer program, similar to \pgrmname{SAS} or \pgrmname{SPPS}. \Rpgrm is indeed a computer program---a piece of software---but it is also a computer language, implemented in the \Rpgrm program. At the moment, differently to most other computer languages, this difference is not important as the \Rpgrm program is the only widely used implementation of the \Rlang language. +Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rpgrm as a program}} of \Rpgrm as a computer program, similar to \pgrmname{SAS} or \pgrmname{SPSS}. \Rpgrm is indeed a computer program---a piece of software---but it is also a computer language, implemented in the \Rpgrm program. At the moment, this difference is not as important as for other languages because the \Rpgrm program is the only widely used implementation of the \Rlang language. -\Rlang started as a partial implementation of the then relatively new \Slang language \autocite{Becker1984,Becker1988}. When designed, \Slang, developed at Bell Labs in the U.S.A., provided a novel way of carrying out data analyses. \Slang evolved into \Splang \autocite{Becker1988}. \Splang was available as a commercial program, most recently from TIBCO, U.S.A. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching, developed by Robert Gentleman and Ross Ihaka at the University of Auckland, in New Zealand \autocite{Ihaka1996}. Initially, \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained. These remaining differences are intentional---thought of as significant improvements. In more recent times \Rlang overtook \Splang in popularity. The \Rlang language is not standardised, and no formal definition of its grammar exists. Consequently, the \Rlang language is defined by the behaviour of its implementation in the \Rpgrm program. +\Rlang started as a partial implementation of the then relatively new \Slang language \autocite{Becker1984,Becker1988}. When designed, \Slang, developed at Bell Labs in the U.S.A., provided a novel way of carrying out data analyses. \Slang evolved into \Splang \autocite{Becker1988}. \Splang was available as a commercial program, most recently from TIBCO, U.S. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching, developed by Robert Gentleman and Ross Ihaka at the University of Auckland, in New Zealand \autocite{Ihaka1996}. Initially, \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained. These remaining differences are intentional---thought of as significant improvements. In more recent times, \Rlang overtook \Splang in popularity. The \Rlang language is not standardised, and no formal definition of its grammar exists. Consequently, the \Rlang language is defined by the behaviour of its implementation in the \Rpgrm program. -What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality, it makes a huge difference because \Rlang is easily extensible, both using the \Rlang language for implementation and by calling from \Rlang functions and routines written in other computer programming languages such as \Clang, \Cpplang, \langname{FORTRAN}, \pythonlang or \javalang. This flexibility means that new functionality can be easily added, and easily shared with a consistent \Rlang-based user interface. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find a package that will make new tools seamlessly available within \Rlang. +What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality, it makes a huge difference because \Rlang is easily extensible, both using the \Rlang language for implementation and by calling from \Rlang functions and routines written in other computer programming languages such as \Clang, \Cpplang, \langname{FORTRAN}, \pythonlang, or \javalang. This flexibility means that new functionality can be easily added, and easily shared with a consistent \Rlang-based user interface. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find a package that will make new tools seamlessly available within \Rlang. The name\index{base R@{base \Rlang}} ``base \Rlang{}'' is used to distinguish \Rlang itself, as in the \Rpgrm executable included in the \Rpgrm distribution and its default packages, from \Rlang in a broader sense, which includes contributed packages. A few packages are included in the \Rpgrm distribution, but most \Rlang packages are independently developed extensions and separately distributed. The number of freely available open-source \Rlang packages available is huge, in the order of 20\,000. -The most important advantage of using a language like \Rlang is that instructions to the computer are given as text. This makes it easy to repeat or \emph{reproduce} a data analysis. Textual instructions serve to communicate to other people what has been done in a way that is unambiguous. Sharing the instructions themselves avoids a translation from a set of instructions to the computer into text readable to humans---say the materials and methods section of a paper. +The most important advantage of using a language like \Rlang is that instructions to the computer are given as text. This makes it easy to repeat or \emph{reproduce} a data analysis. Textual instructions serve to communicate to other people what has been done in a way that is unambiguous. Sharing the instructions themselves avoids a translation from a set of instructions to the computer into text readable to humans---for example, the materials and methods section of a paper. \begin{explainbox} Readers with programming experience will notice that some features of \Rlang differ from those in other programming languages. \Rlang does not have the strict type checks of \langname{Pascal} or \Cpplang. It has operators that can take vectors and matrices as operands. Reliable and fast \Rlang code tends to rely on different \emph{idioms} than well-written \langname{Pascal} or \Cpplang code. @@ -47,7 +47,7 @@ Readers with programming experience will notice that some features of \Rlang dif \subsection{\Rlang as a computer program} \index{R as a program@{\Rpgrm as a program}} \index{Windows@{\textsf{Windows}}|see{\textsf{MS-Windows}}} -The \Rpgrm program itself is open-source, i.e., its source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm extremely reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team aim to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The idea is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems, like \osname{Linux}, \osname{Unix} (including \osname{OS X}) and \osname{MS-Windows}, or computer hardware, like that based on \textsf{ARM} and \textsf{x86} processors. +The \Rpgrm program itself is open-source, i.e., its source code is available for anybody to inspect, modify, and use. A very small fraction of users will directly contribute improvements to the \Rpgrm program itself. However, those contributions and bug reports are important in making \Rpgrm extremely reliable. The executable \Rpgrm program we actually use can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team aim to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The idea is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems, like \osname{Linux}, \osname{Unix} (including \osname{OS X}) and \osname{MS-Windows}, or computer hardware, like that based on \textsf{ARM} and \textsf{x86} processors. \begin{figure} \centering @@ -72,7 +72,7 @@ Nowadays, it is very common to use an IDE as a front-end or middleman between th Readers with programming experience may be already familiar with Microsoft's free \pgrmname{Visual Studio Code} or the open-source \pgrmname{Eclipse} IDEs for which plugins supporting \Rpgrm are available. \end{explainbox} -The main window of IDEs is in most cases divided into windows or panes, possibly with tabs. In \RStudio one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). By comparing these three figures it is clear that \RStudio is really only a software layer between the user and an unmodified \Rpgrm executable. In \RStudio the script was sourced by pressing the ``Source'' button at the top of the editor panel. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console (\ref{fig:intro:rstudio}, lower left screen panel, text in purple), the same console where we can directly type this same \Rpgrm command if we wish. +The main window of IDEs is in most cases divided into windows or panes, possibly with tabs. In \RStudio one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). By comparing these three figures, it is clear that \RStudio is really only a software layer between the user and an unmodified \Rpgrm executable. In \RStudio, the script was sourced by pressing the ``Source'' button at the top of the editor panel. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console (\ref{fig:intro:rstudio}, lower left screen panel, text in purple), the same console where we can directly type this same \Rpgrm command if we wish. \begin{figure} \centering @@ -88,21 +88,21 @@ The ``desktop'' version of \RStudio that one installs and uses locally, runs on \RStudio and other IDEs support saving of their state and some settings per working folder under the name of \emph{project}, so that work on a data analysis can be interrupted and later continued, even on a different computer. As mentioned in section \ref{sec:R:workspace} on page \pageref{sec:R:workspace}, when working with \Rlang we keep related files in a folder. -In this book I provide only a minimum of guidance on the use of \RStudio, and no guidance for other IDEs. To learn more about \RStudio, please, read the documentation available through \RStudio's help menu and keep at hand a printed copy of the \RStudio cheat sheet while learning how to use it. This and other useful \Rlang-related cheatsheets can be downloaded at \url{https://posit.co/resources/cheatsheets/}. Additional instructions on the use of \RStudio, including a video, are available through the Resources menu entry of the book's website at \url{https://www.learnr-book.info/}. +In this book, I provide only a minimum of guidance on the use of \RStudio, and no guidance for other IDEs. To learn more about \RStudio, please, read the documentation available through \RStudio's help menu and keep at hand a printed copy of the \RStudio cheat sheet while learning how to use it. This and other useful \Rlang-related cheatsheets can be downloaded at \url{https://posit.co/resources/cheatsheets/}. Additional instructions on the use of \RStudio, including a video, are available through the Resources menu entry of the book's website at \url{https://www.learnr-book.info/}. \subsection{\Rlang sessions and workspaces}\label{sec:R:workspace} -We use \emph{session} to describe the interactive execution from start to finish of one running instance of the \Rpgrm program. We use \emph{workspace} to name the imaginary space were all objects currently available in an \Rpgrm session are stored. In \Rpgrm the whole workspace can be stored in a single file on disk at the end or during a session and restored later into another session, possibly on a different computer. Usually, when working with \Rpgrm we dedicate a folder in disk storage to store all files from a given data analysis project. We normally keep in this folder files with data to read in, scripts, a file storing the whole contents of the workspace, named by default \code{.Rdata} and a text file with the history of commands entered interactively, named by default \code{.Rhistory}. The user's files within this folder can be located in nested folders. There are no strict rules on how the files should be organised or on their number. The recommended practice is to avoid crowded folders and folders containing unrelated files. It is a good idea to keep in a given folder and workspace the work in progress for a single data-analysis project or experiment, so that the workspace can be saved and restored easily between sessions and work continued from where one left it independently of work done in other workspaces. The folder where files are currently read and saved is in \Rpgrm documentation called the \emph{current working directory}. When opening an \code{.Rdata} file the current working directory is automatically set to the location where the \code{.Rdata} file was read from. +We use \emph{session} to describe the interactive execution from start to finish of one running instance of the \Rpgrm program. We use \emph{workspace} to name the imaginary space were all objects currently available in an \Rpgrm session are stored. In \Rpgrm, the whole workspace can be stored in a single file on disk at the end or during a session and restored later into another session, possibly on a different computer. Usually, when working with \Rpgrm, we dedicate a folder in disk storage to store all files from a given data analysis project. We normally keep in this folder files with data to read in, scripts, a file storing the whole contents of the workspace, named by default \code{.Rdata} and a text file with the history of commands entered interactively, named by default \code{.Rhistory}. The user's files within this folder can be located in nested folders. There are no strict rules on how the files should be organised or on their number. The recommended practice is to avoid crowded folders and folders containing unrelated files. It is a good idea to keep in a given folder and workspace the work in progress for a single data analysis project or experiment, so that the workspace can be saved and restored easily between sessions and work continued from where one left it independently of work done in other workspaces. The folder where files are currently read and saved is in \Rpgrm documentation called the \emph{current working directory}. When opening an \code{.Rdata} file the current working directory is automatically set to the location where the \code{.Rdata} file was read from. \begin{warningbox} -\RStudio projects are implemented as a folder with a name ending in \code{.Rprj}, located under the same folder where scripts, data, \code{.Rdata} and \code{.Rhistory} are stored. This folder is managed by \RStudio and should be not modified or deleted by the user. Only in the very rare case of its corruption, it should be deleted, and the \RStudio project created again from scratch. Files \code{.Rdata} and \code{.Rhistory} should not be deleted by the user, except to reset the \Rlang workspace. However, this is unnecessary as it can be also easily achieved from within \Rpgrm. +\RStudio projects are implemented as a folder with a name ending in \code{.Rprj}, located under the same folder where scripts, data, \code{.Rdata}, and \code{.Rhistory} are stored. This folder is managed by \RStudio and should be not modified or deleted by the user. Only in the very rare case of its corruption, it should be deleted, and the \RStudio project created again from scratch. Files \code{.Rdata} and \code{.Rhistory} should not be deleted by the user, except to reset the \Rlang workspace. However, this is unnecessary as it can be also easily achieved from within \Rpgrm. \end{warningbox} \subsection{Using \Rlang interactively} -Decades ago users communicated with computers through a physical terminal (keyboard plus text-only screen) that was frequently called a \emph{console}\index{console}. A text-only interface to a computer program, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. +Decades ago, users communicated with computers through a physical terminal (keyboard plus text-only screen) that was frequently called a \emph{console}\index{console}. A text-only interface to a computer program, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. -Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyse the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console} we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). +Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyse the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console}, we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). \begin{figure} \centering @@ -122,7 +122,7 @@ The examples in this book require only the console window for user input. Menu-d \begin{explainbox} In the console one types commands at the \code{>} prompt. When one ends a line by pressing the return or enter key, if the line can be interpreted as an \Rlang command, the result will be printed at the console, followed by a new \code{>} prompt. -If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. +If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example, if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. \end{explainbox} For example, one can search for a help page at the \Rpgrm console. Below are the first code example and the first playground in the book. This first example is for illustration only, and you can return to them later as only on page \pageref{sec:R:install} I discuss how to install or get access to the \Rpgrm program. @@ -144,11 +144,11 @@ help(help) When trying to access help related to \Rlang extension packages through \Rlang's built in help, make sure the package is loaded into the current \Rlang session, as described on page \pageref{sec:packages:install}, before calling \Rfunction{help()}. \end{warningbox} -When using \RStudio there are easier ways of navigating to a help page than calling function \Rfunction{help()} by typing its name, for example, with the cursor on the name of a function in the editor or console, pressing the \textsf{F1} key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. The \Rlang manuals can also be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. +When using \RStudio, there are easier ways of navigating to a help page than calling function \Rfunction{help()} by typing its name, for example, with the cursor on the name of a function in the editor or console, pressing the \textsf{F1} key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. The \Rlang manuals can also be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. \subsection{Using \Rlang in a ``batch job''} -To run a script\index{scripts}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console'', while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor''. +To run a script,\index{scripts}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console'', while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor''. \begin{figure} \centering @@ -172,19 +172,19 @@ Within \RStudio desktop it is possible to access the operating system shell thro \section{Reproducible Data Analysis with \Rlang} \index{reproducible data analysis|(} -Statistical concepts and procedures are not only important after data are collected but also crucial at the design stage of any data-based study. Rather frequently, we deal with pre-existing data already at the planning stage of an experiment or survey. Statistics provides the foundation for the design of experiments and surveys, data analysis and data visualisation. This is similar to the role played by grammar and vocabulary in communication in a natural language like English. Statistics makes possible decision-making based on partial evidence (or samples), but it is also a means of communication. Data visualisation also plays a key role in the written and oral communication of study conclusions. \Rlang is useful throughout all stages of the research process, from the design of studies to the communication of the results. +Statistical concepts and procedures are not only important after data are collected but also crucial at the design stage of any data-based study. Rather frequently, we deal with pre-existing data already at the planning stage of an experiment or survey. Statistics provides the foundation for the design of experiments and surveys, data analysis, and data visualisation. This is similar to the role played by grammar and vocabulary in communication in a natural language like English. Statistics makes possible decision-making based on partial evidence (or samples), but it is also a means of communication. Data visualisation also plays a key role in the written and oral communication of study conclusions. \Rlang is useful throughout all stages of the research process, from the design of studies to the communication of the results. -During recent years the lack of reproducibility in scientific research, frequently described as a \emph{reproducibility crisis}, has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce scientific and technical studies is reproducing the data analysis. More generally, under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety, and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Thus, an unambiguous description of the steps taken for an analysis is a requirement. Currently, most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands that were used. +During recent years, the lack of reproducibility in scientific research, frequently described as a \emph{reproducibility crisis}, has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce scientific and technical studies is reproducing the data analysis. More generally, under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety, and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Thus, an unambiguous description of the steps taken for an analysis is a requirement. Currently, most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands that were used. A reliable record of what commands have been run on which data is especially difficult to keep when issuing commands through menus and dialogue boxes in a graphical user interface or by interactively typing commands as text at a console. Even working interactively at the \Rpgrm console using copy and paste to include commands and results in a report typed in a word processor is error prone, and laborious. The use and archiving of \Rlang scripts alleviate this difficulty. -However, a further requirement to achieve reproducibility is the consistency between the saved and reported output and the \Rlang commands reported as having been used to produce them, saved separately when using scripts. This creates an error-prone step between data analysis and reporting. To solve this problem an approach to data analysis derived from what is called \emph{literate programming} \autocite{Knuth1984a} was developed: running an especially formatted script that produces a document that includes the \Rlang code used for the analysis, the results of running this code and any explanatory text needed to describe the methodology used and interpret the results of the analysis. +However, a further requirement to achieve reproducibility is the consistency between the saved and reported output and the \Rlang commands reported as having been used to produce them, saved separately when using scripts. This creates an error-prone step between data analysis and reporting. To solve this problem an approach to data analysis derived from what is called \emph{literate programming} \autocite{Knuth1984a} was developed: running an especially formatted script that produces a document that includes the \Rlang code used for the analysis; the results of running this code and any explanatory text needed to describe the methodology used and interpret the results of the analysis. Although a system capable of producing such reports with \Rlang, called \pkgname{Sweave} \autocite{Leisch2002}, has been available for a couple of decades, it was rather limited and not supported by an IDE, making its use rather tedious. Package \pkgname{knitr} \autocite{Xie2013} further developed the approach and together with its integration into \RStudio made the use of this type of report much easier. Less sophisticated reports, called \Rlang \emph{notebooks}, formatted as HTML files can be created directly from ordinary \Rlang scripts containing no special formatting. Notebooks are HTML files that show as text the code used interspersed with the results, and can contain embedded the actual source script used to generate them. -Package \pkgname{knitr} supports the writing of reports with the textual explanations encoded using either \Markdown or \Latex\ as markup for text-formatting instructions. While \Markdown (\url{https://daringfireball.net/projects/markdown/}) is an easy-to-learn and use text markup approach, \Latex\ \autocite{Lamport1994} is based on \TeX\ \autocite{Knuth1987}, the most powerful typesetting engine freely available. There are different flavours of \Markdown, including \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}) with special support for \Rlang code. \Quarto (see \url{https://quarto.org/}) was recently released as an enhancement of \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}), improving typesetting and styling and providing a single system capable of generating a broad selection of outputs. When used together with \Rlang, \Quarto relies on package \pkgname{knitr} for the key step in the conversion, so in a strict sense \Quarto does not replace it. +Package \pkgname{knitr} supports the writing of reports with the textual explanations encoded using either \Markdown or \Latex\ as markup for text-formatting instructions. While \Markdown (\url{https://daringfireball.net/projects/markdown/}) is an easy-to-learn and use text markup approach, \Latex\ \autocite{Lamport1994} is based on \TeX\ \autocite{Knuth1987}, the most powerful typesetting engine freely available. There are different flavours of \Markdown, including \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}) with special support for \Rlang code. \Quarto (see \url{https://quarto.org/}) was recently released as an enhancement of \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}), improving typesetting and styling, and providing a single system capable of generating a broad selection of outputs. When used together with \Rlang, \Quarto relies on package \pkgname{knitr} for the key step in the conversion, so in a strict sense \Quarto does not replace it. -Because of the availability of these approaches to the generation of reports, the \Rlang language is extremely useful when reproducibility is important. Both \pkgname{knitr} and \Quarto are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX. All pages in the book were typeset directly, with plots and other \Rlang output generated on-the-fly by \Rpgrm and inserted automatically. All diagrams were generated by \LaTeX\ during the typesetting step. The only exceptions are the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First, because I want to make sure that every bit of code as you will see printed, runs without error. In addition, I want to make sure that the output displayed below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as an author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, after any changes needed to keep it up to date and free of errors. By using these tools and markup in plain text files, the indices, cross-references, citations and list of references are all generated automatically. +Because of the availability of these approaches to the generation of reports, the \Rlang language is extremely useful when reproducibility is important. Both \pkgname{knitr} and \Quarto are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX. All pages in the book were typeset directly, with plots and other \Rlang output generated on-the-fly by \Rpgrm and inserted automatically. All diagrams were generated by \LaTeX\ during the typesetting step. The only exceptions are the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First, because I want to make sure that every bit of code, as you will see printed, runs without error. In addition, I want to make sure that the output displayed below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as an author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, after any changes needed to keep it up to date and free of errors. By using these tools and markup in plain text files, the indices, cross-references, citations, and list of references are all generated automatically. Although the use of these tools is very important, they are outside the scope of this book and well described in other books dedicated to them \autocite{Gandrud2015,Xie2013}. When using \Rlang in this way, a good command of \Rlang as a language for communication with both humans and computers is very useful. \index{reproducible data analysis|)} @@ -193,7 +193,7 @@ Although the use of these tools is very important, they are outside the scope of As the book is designed with the expectation that readers will run code examples as they read the text, you have to ensure access to the \Rpgrm before reading the next chapter. It is likely that your school, employer or teacher has already enabled access to \Rpgrm. If not, or if you are reading the book on your own, you should install \Rpgrm or secure access to an online service. Using \RStudio or another IDE can facilitate the use of \Rpgrm, but all the code in the remaining chapters makes only use of \Rpgrm and packages available through \CRAN. -I have written an \Rlang package, named \pkgname{learnrbook}, containing original data and computer-readable listings for all code examples and exercises in the book. It also contains code and data that makes it easier to install the packages used in later chapters. Its name is \pkgname{learnrbook} and is available through \CRAN. \textbf{It is not necessary for you to install this or any other packages until section \ref{sec:packages:install} on page \pageref{sec:packages:install}, where I explain how to install and use \Rlang \Rlang packages.} +I have written an \Rlang package, named \pkgname{learnrbook}, containing original data and computer-readable listings for all code examples and exercises in the book. It also contains code and data that makes it easier to install the packages used in later chapters. Its name is \pkgname{learnrbook} and is available through \CRAN. \textbf{It is not necessary for you to install this or any other packages until section \ref{sec:packages:install} on page \pageref{sec:packages:install}, where I explain how to install and use \Rlang packages.} \begin{faqbox}{Are there any resources to support the \emph{Learn R: As a Language} book?} Please, visit \url{https://www.learnr-book.info/} to find additional material related to this book, including additional free chapters. Up-to-date instructions for software installation are provided online at this and other sites, as these instructions are likely to change after the publication of the book. @@ -206,7 +206,7 @@ Installers for Linux, Windows and MacOS are available through \CRAN (\url{https: \end{faqbox} \begin{faqbox}{How to install the \textsf{RStudio} IDE in my computer?} -\RStudio installers are available at Posit's web site (\url{https://posit.co/products/open-source/rstudio/}) of which the free version is suitable for running the code examples and exercises in the book. In many cases the IT staff at your employer or school will install them, or they may be already included in the default computer setup. +\RStudio installers are available at Posit's web site (\url{https://posit.co/products/open-source/rstudio/}) of which the free version is suitable for running the code examples and exercises in the book. In many cases, the IT staff at your employer or school will install them, or they may be already included in the default computer setup. \end{faqbox} \begin{faqbox}{How to get access to \textsf{RStudio} as a cloud service?} @@ -214,7 +214,7 @@ An alternative, that is very well suited for courses or learning as part of a gr \end{faqbox} \section{Further Reading} -Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. The history of \Rlang, and its relation or \Slang, is best told by those who were involved at the early stages of its development, \citeauthor{Chambers2016} (\citeyear[][, Chapter 2]{Chambers2016}), and \citeauthor{Ihaka1998} (\citeyear{Ihaka1998}). +Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. The history of \Rlang, and its relation or \Slang, is best told by those who were involved at the early stages of its development, \citeauthor{Chambers2016} (\citeyear[][, chapter 2]{Chambers2016}), and \citeauthor{Ihaka1998} (\citeyear{Ihaka1998}). <>= knitter_diag() diff --git a/R.learning.Rnw b/R.learning.Rnw index ca9e0d36..decff30c 100644 --- a/R.learning.Rnw +++ b/R.learning.Rnw @@ -10,29 +10,29 @@ The important part of becoming a programmer is learning to think like a programm \section{Aims of This Chapter} -In this chapter I describe how I imagine the book can be used most effectively to learn the \Rlang language. Learning \Rlang and remembering what one has previously learnt and forgotten makes it also necessary to use this book and other sources as references. Learning to use \Rlang effectively also involves learning how to search for information and how to ask questions from other users, for example through online forums. Thus, I also give advice on how to find answers to \Rlang-related questions and how to use the available documentation. +In this chapter, I describe how I imagine the book can be used most effectively to learn the \Rlang language. Learning \Rlang and remembering what one has previously learnt and forgotten makes it also necessary to use this book and other sources as references. Learning to use \Rlang effectively also involves learning how to search for information and how to ask questions from other users, for example through online forums. Thus, I also give advice on how to find answers to \Rlang-related questions and how to use the available documentation. \section{Approach and Structure} -Depending on previous experience, reading \emph{Learn R: As a Language} will be about exploring a new world or revisiting a familiar one. In both cases \emph{Learn R: As a Language} aims to be a travel guide, neither a traveller's account nor a cookbook of \Rlang recipes. It can be used as a course book, supplementary reading or for self-instruction, and also as a reference. My hope is that as a guide to the use of \Rlang, this book will remain useful to readers as they gain experience and develop skills.\vspace{1ex} +Depending on previous experience, reading \emph{Learn R: As a Language} will be about exploring a new world or revisiting a familiar one. In both cases this book aims to be a travel guide, neither a traveller's account nor a cookbook of \Rlang recipes. It can be used as a course book, supplementary reading or for self-instruction, and also as a reference. My hope is that as a guide to the use of \Rlang, this book will remain useful to readers as they gain experience and develop skills.\vspace{1ex} \noindent \emph{I encourage readers to approach \Rlang like a child approaches his or her mother tongue when learning to speak: do not struggle, just play, and fool around with \Rlang! If the going gets difficult and frustrating, take a break! If you get a new insight, take a break to enjoy the victory!\vspace{1ex} } -In \Rlang, like in most ``rich'' languages, there are multiple ways of coding the same operations. I have included code examples that aim to strike a balance between execution speed and readability. One could write equivalent \Rlang books using substantially different code examples. Keep this in mind when reading the book and using \Rlang. Keep also in mind that it is impossible to remember everything about \Rlang and as a user you will frequently need to consult the documentation, even while doing the exercises in this book. The \Rlang language, in a broad sense, is vast because it can be expanded with independently developed packages. Learning to use \Rlang mainly consists of learning the basics plus developing the skill of finding your way in \Rlang, its documentation and on-line question-and-answer forums. +In \Rlang, like in most ``rich'' languages, there are multiple ways of coding the same operations. I have included code examples that aim to strike a balance between execution speed and readability. One could write equivalent \Rlang books using substantially different code examples. Keep this in mind when reading the book and using \Rlang. Keep also in mind that it is impossible to remember everything about \Rlang, and as a user you will frequently need to consult the documentation, even while doing the exercises in this book. The \Rlang language, in a broad sense, is vast because it can be expanded with independently developed packages. Learning to use \Rlang mainly consists of learning the basics plus developing the skill of finding your way in \Rlang, its documentation and on-line question-and-answer forums. Readers should not aim to remember all the details presented in the book. This is impossible for most of us. Later use of this and other books, and documentation effectively as references, depends on a good grasp of a broad picture of how \Rlang works and on learning how to navigate the documentation; i.e., it is more important to remember abstractions and in what situations they are used, and function names, than the details of how to use them. Developing a sense of when one needs to be careful not to fall into a ``language trap'' is also important. -The book can be used both as a textbook for learning \Rlang and as a reference. It starts with simple concepts and language elements progressing towards more complex language structures and uses. Along the way readers will find, in each chapter, descriptions and examples of the common (usual) cases and the exceptions. Some books hide the exceptions and counterintuitive features from learners to make the learning easier; I instead have included these but marked them using icons and marginal bars. There are two reasons for choosing this approach. First, the boundary between boringly easy and frustratingly challenging is different for each of us, and varies depending on the subject dealt with. So, I hope the marks will help readers predict what to expect, how much effort to put into each section and even what to read and what to skip. Second, if I had hidden the tricky bits of the \Rlang language, I would have made later use of \Rlang by the readers more difficult. It would have also made the book less useful as a reference. +The book can be used both as a textbook for learning \Rlang and as a reference. It starts with simple concepts and language elements progressing towards more complex language structures and uses. Along the way readers will find, in each chapter, descriptions and examples of the common (usual) cases and the exceptions. Some books hide the exceptions and counterintuitive features from learners to make the learning easier; I instead have included these but marked them using icons and marginal bars. There are two reasons for choosing this approach. First, the boundary between boringly easy and frustratingly challenging is different for each of us, and varies depending on the subject dealt with. So, I hope the marks will help readers predict what to expect, how much effort to put into each section, and even what to read and what to skip. Second, if I had hidden the tricky bits of the \Rlang language, I would have made later use of \Rlang by the readers more difficult. It would have also made the book less useful as a reference. The book contains many code examples as well as exercises. I expect readers will run code examples and try as many variations of them as needed to develop an understanding of the ``rules'' of the \Rpgrm language, e.g., how the function or feature exemplified works. This is what long-time users of \Rlang do when facing an unfamiliar feature or a gap in their understanding. -Readers new to \Rlang should read at least chapters \ref{chap:R:introduction} to \ref{chap:R:functions} sequentially. Possibly, skipping parts of the text and exercises marked as advanced. However, I expect to be most useful to these readers not to completely skip the description of unusual features and special cases but rather to skim enough from them so as to get an idea of what special situations they may face as \Rlang users. Exercises should not be skipped, as they are a key component of the didactic approach used. +Readers who are new to \Rlang should read at least chapters \ref{chap:R:introduction} to \ref{chap:R:functions} sequentially. Possibly, skipping parts of the text and exercises marked as advanced. However, I expect to be most useful to these readers not to completely skip the description of unusual features and special cases but rather to skim enough from them so as to get an idea of what special situations they may face as \Rlang users. Exercises should not be skipped, as they are a key component of the didactic approach used. Readers already familiar with \Rlang will be able to read the chapters in the book in any order, as the need arises. Marginal bars and icons, and the back and forward cross-references among sections, make possible for readers to \emph{find a good path} within the book both when learning \Rlang and when using the book as a reference. -I expect \emph{Learn R: As a Language} to remain useful as a reference to those readers who use it to learn \Rlang. It will also be useful as a reference to readers already familiar with \Rlang. To support the use of the book as a reference, I have been thorough with indexing, including many carefully chosen terms, their synonyms and the names of all \Rlang objects and constructs discussed, collecting them in three alphabetical indexes: \emph{General index}, \emph{Index of R names by category}, and \emph{Alphabetic index of R names} starting at pages \pageref{idx:general}, \pageref{idx:rcats} and \pageref{idx:rindex}, respectively. I have also included back and forward cross-references linking related sections throughout the whole book. +I expect \emph{Learn R: As a Language} to remain useful as a reference to those readers who use it to learn \Rlang. It will also be useful as a reference to readers already familiar with \Rlang. To support the use of the book as a reference, I have been thorough with indexing, including many carefully chosen terms, their synonyms, and the names of all \Rlang objects and constructs discussed, collecting them in three alphabetical indexes: \emph{General index}, \emph{Index of R names by category}, and \emph{Alphabetic index of R names} starting at pages \pageref{idx:general}, \pageref{idx:rcats} and \pageref{idx:rindex}, respectively. I have also included back and forward cross-references linking related sections throughout the whole book. \section{Typographic and Naming Conventions} @@ -66,7 +66,7 @@ Signals an \emph{advanced playground} that requires more time to play with befor \subsection{Code conventions and syntax highlighting} -Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. The command line prompts (\verb|>| and \verb|+|) are not displayed in the chunks. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below, \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and paste into the \Rlang console the whole contents of the code chunks as they appear in the book. +Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. The command line prompts (\verb|>| and \verb|+|) are not displayed in the chunks. \Rlang code elements embedded in the text are similarly typeset but always black. For example, in the code chunk below, \code{mean()} and \code{print()} are functions; 1, 5, and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book, \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and paste into the \Rlang console the whole contents of the code chunks as they appear in the book. <>= z <- mean(1, 5, 3) @@ -79,7 +79,7 @@ Code in playgrounds either works in isolation, or when it depends on objects cre \subsection{Diagrams} -To describe data objects I use diagrams similar to Joseph N. Hall's PEGS (Perl Graphical Structures) \autocite{Hall1997}. I use colour fill to highlight the type of the stored objects. I use the ``signal'' sign for the names of whole objects and of their component members, the former with a thicker border. Below is an example from chapter \ref{chap:R:as:calc}. +To describe data objects, I use diagrams similar to Joseph N. Hall's PEGS (Perl Graphical Structures) \autocite{Hall1997}. I use colour fill to highlight the type of the stored objects. I use the ``signal'' sign for the names of whole objects and of their component members, the former with a thicker border. Below is an example from chapter \ref{chap:R:as:calc}. \begin{center} \begin{footnotesize} @@ -108,7 +108,7 @@ row 1 column 1/.style={nodes={draw}}}] \end{footnotesize} \end{center} -To describe code structure I use diagrams based on boxes and arrows, while to describe the flow of code execution I use traditional flow charts. +To describe code structure, I use diagrams based on boxes and arrows, while to describe the flow of code execution I use traditional flow charts. In the different diagrams, I use the notation \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, etc., as generic placeholders indicating \emph{any valid value}, \emph{any valid \Rlang statement}, \emph{any valid \Rlang name}, etc. @@ -116,19 +116,19 @@ In the different diagrams, I use the notation \textcolor{blue}{\code{}}, \subsection{What are the options?} -First of all do not panic! Every programmer, even those with decades of experience, gets stuck with problems from time to time and can run out of ideas for a while. This is normal and happens to all of us. +First of all, do not panic! Every programmer, even those with decades of experience, gets stuck with problems from time to time and can run out of ideas for a while. This is normal and happens to all of us. -It is important to learn how to find answers as part of the routine of using \Rlang. First of all one can read the documentation of the function or object that one is trying to use, which in many cases also includes use examples. \Rlang's help pages tell how to use individual functions or objects. In contrast, \Rlang's manual \emph{An Introduction to R} and books describe what functions or overall approaches to use for different tasks. +It is important to learn how to find answers as part of the routine of using \Rlang. We should start by reading the documentation of the function or object that we are trying to use, which in many cases also includes examples. \Rlang's help pages tell how to use individual functions or objects. In contrast, \Rlang's manual \emph{An Introduction to R}, and other books describe what functions or overall approaches to use for different tasks. Reading the documentation and books not always helps. Sometimes one can become blind to the obvious, by being too familiar with a piece of code, as it also happens when writing in a natural language like English. A second useful step is, thus, looking at the code with ``different eyes'', those of a friend or workmate, or your own eyes a day or a week later. One can also seek help in specialised online forums or from peers or ``local experts''. If searching in forums for existing questions and answers fails to yield a useful answer, one can write a new question in a forum. -When searching for answers, asking for advice or reading books, one can be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases it will not matter which approach you use as many computations can be done in \Rpgrm, as in any computer language, in several different ways, still obtaining the same result. Use the alternative that you find easier to understand. +When searching for answers, asking for an advice, or reading books, one can be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases, it will not matter which approach you use as many computations can be done in \Rpgrm, as in any computer language, in several different ways, still obtaining the same result. Use the alternative that you find easier to understand. \subsection{\Rlang's built-in help} -Every object available in base \Rlang or exported by an \Rlang extension package (functions, methods, classes, data) is documented in \Rlang's help system. Sometimes a single help page documents several \Rlang objects. Not only help pages are always available, but they are structured consistently with a title, short description, and frequently also a detailed description. In the case of functions, parameter names, their purpose and expected arguments are always described, as well as the returned value. Usually at the bottom of help pages, several examples of the use of the objects or functions are given. How to access \Rpgrm help is described in section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}. +Every object available in base \Rlang or exported by an \Rlang extension package (functions, methods, classes, and data) is documented in \Rlang's help system. Sometimes a single help page documents several \Rlang objects. Not only help pages are always available, but they are structured consistently with a title, short description, and frequently also a detailed description. In the case of functions, parameter names, their purpose, and expected arguments are always described, as well as the returned value. Usually at the bottom of help pages, several examples of the use of the objects or functions are given. How to access \Rpgrm help is described in section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}. In addition to help pages, \Rpgrm's distribution includes useful manuals as PDF or HTML files. These manuals are also available at \url{https://rstudio.github.io/r-manuals/} restyled for easier reading in web browsers. In addition to help pages, many packages, contain \emph{vignettes} such as user guides or articles describing the algorithms used and/or containing use case examples. In the case of some packages, a web site with documentation in HTML format is also available. Package documentation can be also found in repositories like the \emph{Comprehensive R Archive Network}, better known as \CRAN. From \CRAN it is possible to download \Rpgrm and many extensions to it. The DESCRIPTION file of each \Rlang package provides contact information for the maintainer, links to web sites, and instructions on how to report bugs. Similar information plus a short description are frequently also available in a README file. @@ -139,7 +139,7 @@ Error messages tend to be terse in \Rpgrm, and may require some lateral thinking \subsubsection*{Netiquette} When posting requests for help, one needs to abide by what is usually described as ``netiquette'', which in many respects also applies to asking in person or by e-mail for help from a peer or local expert. Preference among sources of information depends on what one finds easier to use. Consideration towards others' time is necessary but has to be balanced against wasting too much of one's own time. -In\index{netiquette}\index{network etiquette} most internet forums, a certain behaviour is expected from those asking and answering questions. Some types of misbehaviour like the use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehaviour usually results in the original question not being answered and, instead, the problem highlighted in a comment. In general, following the steps listed below will greatly increase your chances of getting a detailed and useful answer. +In\index{netiquette}\index{network etiquette} most internet forums, a certain behaviour is expected from those asking and answering questions. Some types of misbehaviour, such as the use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehaviour usually results in the original question not being answered and, instead, the problem highlighted in a comment. In general, following the steps listed below will greatly increase your chances of getting a detailed and useful answer. \begin{itemize} \item Do your homework: first search for existing answers to your question, both online and in the documentation. (Do mention that you attempted this without success when you post your question.) @@ -177,4 +177,4 @@ Issues are raised by filling-in an online form, on a web page that also contains \section{Further Reading} -At the end of each chapter a section like this one gives suggestions for further reading on related subjects. To understand what programming as an activity is you can read \citetitle{Burns2012} \autocite{Burns2012}. It will make easier the learning of programming in \Rlang, both practically and emotionally. In \citeauthor{Burns2012}'s words ``This is a book about what goes on in the minds of programmers''. +To understand what programming as an activity is, you can read \citetitle{Burns2012} \autocite{Burns2012}. It will make easier the learning of programming in \Rlang, both practically and emotionally. In \citeauthor{Burns2012}'s words ``This is a book about what goes on in the minds of programmers''. diff --git a/R.plotting.Rnw b/R.plotting.Rnw index bcba48cd..37d87d67 100644 --- a/R.plotting.Rnw +++ b/R.plotting.Rnw @@ -426,7 +426,7 @@ How many layers are present in this case? \subsection{Scales and mappings}\label{sec:plot:mappings} \index{grammar of graphics!mapping of data|(} -\index{grammar of graphics!aesthetics(} +\index{grammar of graphics!aesthetics|(} In \ggplot a \emph{mapping} describes which variable in \code{data} is mapped to which \code{aesthetic}, or graphic feature of a plot, such as $x$, $y$, colour, fill, shape, linewidth, etc. In \ggplot a \emph{scale} describes the correspondence between \emph{values} in the mapped variable and values of the graphic feature. Below, the numeric variable \code{cyl} is mapped to the \code{colour} aesthetic. As the variable is \code{numeric} a continuous colour scale is used. Out of the multiple continuous colour scales available, \ggscale{scale\_colour\_continuous()} is the default. <>= @@ -606,7 +606,7 @@ When fitting models to observations with \Rfunction{lm()}, the un-weighted resid \end{explainbox} \index{grammar of graphics!mapping of data|)} -\index{grammar of graphics!aesthetics)} +\index{grammar of graphics!aesthetics|)} \section{Geometries}\label{sec:plot:geometries} \index{grammar of graphics!geometries|(} @@ -3125,7 +3125,7 @@ In general it is possible to create \emph{expressions} explicitly with function When plotting expressions using \gggeom{geom\_text()}, the parsing of character strings is signalled by passing \code{parse = TRUE} in the call to the layer function. In the case of facets' strip labels, parsing or not depends on the \emph{labeller} function used. An additional twist is the possibility of combining static character strings with values taken from \code{data} (see section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}). -The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector. A \code{*} is usually needed when dealing with numbers next to symbols. Using white space is allowed in some situations, but not in others. To include within an expression text that should not be parsed it must be enclosed in quotation marks, which may need themselves to be quoted. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. +The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector. A \code{*} is usually needed when dealing with numbers next to symbols. Using whitespace is allowed in some situations, but not in others. To include within an expression text that should not be parsed it must be enclosed in quotation marks, which may need themselves to be quoted. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. Expressions are frequently used for axis labels, e.g., when the units or symbols require the use of superscripts or Greek letters. In this case they are usually entered as expressions. @@ -3209,7 +3209,7 @@ ggplot(cars, aes(speed, dist)) + xlab(expression(x[1], " test")) @ -Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert white space, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. +Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert whitespace, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. <>= ggplot(cars, aes(speed, dist)) + @@ -3223,7 +3223,7 @@ ggplot(cars, aes(speed, dist)) + xlab(parse(text = "x[1]~~~~plain(test)")) @ -However, unquoted white space is discarded. +However, unquoted whitespace is discarded. <>= ggplot(cars, aes(speed, dist)) + diff --git a/R.scripts.Rnw b/R.scripts.Rnw index 05a10d79..61d4f4e9 100644 --- a/R.scripts.Rnw +++ b/R.scripts.Rnw @@ -66,13 +66,13 @@ A script file has the following characteristics. \caption[Code statements in a script.]{Diagram of script showing sequentially evaluated code statements; \textcolor{blue}{$\cdots$} represent additional statements in the script.}\label{fig:script} \end{figure} -The statements in the text file, are read, interpreted and evaluated sequentially, from the start to the end of the file, as represented in the diagram (Figure \ref{fig:script}). +The statements in the text file, are read, interpreted, and evaluated sequentially, from the start to the end of the file, as represented in the diagram (Figure \ref{fig:script}). As we will see later in the chapter, code statements can be combined into larger statements and evaluated conditionally and/or repeatedly, which allows us to control the realised sequence of evaluated statements. In addition to being valid, it is important that scripts are also understandable to humans. Consequently, a clear writing style and consistent adherence to it are important. -It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include code to load the packages used, load or import data from files, perform the data analysis and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data by reading data from a different file and/or to reproduce the same analysis at a later time using the same data. Such scripts document all steps used for the analysis. +It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include code to load the packages used, load or import data from files, perform the data analysis, and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data by reading data from a different file and/or to reproduce the same analysis at a later time using the same data. Such scripts document all steps used for the analysis. <>= show.results <- FALSE @@ -96,9 +96,9 @@ it can be sourced by typing at \Rpgrm console source("my.first.script.r") @ -Execution of the statements in the file makes \Rlang display \code{[1] 7} at the console as, below the command we typed in. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results of computations are not printed unless one includes explicit \Rfunction{print()} commands in the script. +Execution of the statements in the file makes \Rlang display \code{[1] 7} at the console, below the command we typed in. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results of computations are not printed unless one includes explicit \Rfunction{print()} commands in the script. -Scripts can be run both by sourcing them into an open \Rlang session, or at the operating system command prompt (see section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}). In \RStudio, the script in the currently active editor tab can be sourced using the ``source'' button. The drop-down menu of this button has three entries: ``Source'' , quietly to the \Rlang console, ``Source with echo'' showing the code as it is run, and ``Source as local job'', using a new instance of \Rlang in the background. In the last case, the \Rlang console remains free for other uses while the script is running. +Scripts can be run both by sourcing them into an open \Rlang session, or at the operating system command prompt (see section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}). In \RStudio, the script in the currently active editor tab can be sourced using the ``source'' button. The drop-down menu of this button has three entries: ``Source'' , quietly to the \Rlang console; ``Source with echo'' showing the code as it is run; and ``Source as local job'', using a new instance of \Rlang in the background. In the last case, the \Rlang console remains free for other uses while the script is running. When a script is \emph{sourced}, the output can be saved to a text file instead of being shown in the console. It is also easy to call \Rpgrm with the \Rlang script file as an argument directly at the operating system shell or command-interpreter prompt---and obviously also from shell scripts. The next two chunks show commands entered at the OS shell command prompt rather than at the \Rlang command prompt. @@ -152,9 +152,9 @@ By now you should be familiar enough with \Rlang to be able to write your own sc \subsection{The need to be understandable to people}\label{sec:script:readability} \index{scripts!readability} -It is not enough for program code to be understood by a computer and that it returns the correct answer. Both large programs and small scripts have to be readable to humans, and the intention of the code understandable. In most cases, \Rlang code will be maintained, reused and modified over time. In many cases, this code also serves to document a given computation and to make it possible to reproduce it. +It is not enough for program code to be understood by a computer and that it returns the correct answer. Both large programs and small scripts have to be readable to humans, and the intention of the code understandable. In most cases, \Rlang code will be maintained, reused, and modified over time. In many cases, this code also serves to document a given computation and to make it possible to reproduce it. -When one writes a script, it is either because one wants to document what has been done or because one plans to use it again in the future. In the first case other persons will read it and in the second case one rarely remembers all the details. Thus, spending time and effort on the writing style, paying special attention to the following recommendations, is important. +When one writes a script, it is either because one wants to document what has been done or because one plans to use it again in the future. In the first case, other persons will read it, and in the second case, one rarely remembers all the details. Thus, spending time and effort on the writing style, paying special attention to the following recommendations, is important. \begin{itemize} \setlength{\itemsep}{1pt} \setlength{\parskip}{0pt} @@ -184,7 +184,7 @@ C -> variable The points discussed above already help a lot. However, one can go further in achieving the goal of human readability by interspersing explanations and code ``chunks'' and using all the facilities of typesetting, even of formatted maths formulas and equations, within the listing of the script. Furthermore, by including the results of the calculations and the code itself in a typeset report built automatically one ensures that they match each other. This greatly contributes to data analysis reproducibility, which is becoming a widespread requirement both in academia and in industry. -This approach is called literate programming\index{literate programming} and was first proposed by \citeauthor{Knuth1984a} (\citeyear{Knuth1984a}) through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was in \pkgname{Sweave}, which has been superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \Markdown or \Latex\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and applies syntax highlighting to code. \langname{Rmarkdown} is an extension to \Markdown that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}) and slides for presentations \autocite{Xie2016,Xie2018}. \Quarto, which provides an enhanced version of \Rmarkdown, is implemented in \Rlang package \pkgname{quarto} together with the \Quarto program as a separate executable. The use of \pkgname{knitr} and \pkgname{quarto} is very well integrated into the \RStudio IDE. +This approach is called literate programming\index{literate programming} and was first proposed by \citeauthor{Knuth1984a} (\citeyear{Knuth1984a}) through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was in \pkgname{Sweave}, which has been superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \Markdown or \Latex\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and applies syntax highlighting to code. \Rmarkdown is an extension to \Markdown that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}), and slides for presentations \autocite{Xie2016,Xie2018}. \Quarto, which provides an enhanced version of \Rmarkdown, is implemented in \Rlang package \pkgname{quarto} together with the \Quarto program as a separate executable. The use of \pkgname{knitr} and \pkgname{quarto} is very well integrated into the \RStudio IDE. The generation of typeset reports is outside the scope of the book, but it is an important skill to learn. It is well described in the books and web sites cited. \subsection{Debugging scripts}\label{sec:script:debug} @@ -194,18 +194,18 @@ The use of the word \emph{bug} to describe a problem in computer hardware and so A suitable quotation from a letter written by Thomas Alva Edison in 1878 \autocite[as given by][]{Hughes2004}: \begin{quotation} - It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''--as such little faults and difficulties are called--show themselves and months of intense watching, study and labour are requisite before commercial success or failure is certainly reached. + It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''---as such little faults and difficulties are called---show themselves and months of intense watching, study and labour are requisite before commercial success or failure is certainly reached. \end{quotation} The quoted paragraph above makes clear that only very exceptionally does any new design fully succeed. The same applies to \Rlang scripts as well as any other non-trivial piece of computer code. From this it logically follows that testing and de-bugging are fundamental steps in the development of \Rlang scripts and packages. Debugging, as an activity, is outside the scope of this book. However, clear programming style and good documentation are indispensable for efficient testing and reuse. -Even for scripts used for analysing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert reports and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organisation, we will still want to avoid costly mistakes. +Even for scripts used for analysing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert reports, and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organisation, we will still want to avoid costly mistakes. The first step in producing reliable computer code is to accept that any code that we write needs to be tested and, if possible, validated. Another important step is to make sure that input is validated within the script and a suitable error produced for bad input (including valid input values falling outside the range that can be reliably handled by the script). -If during testing, or during normal use, a wrong value is returned by a calculation, or no value (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm, as well as in the algorithm itself. However, many apparent \emph{bugs} are caused by bad or missing handling of special cases like invalid input values, rounding errors, division by zero, etc., in which a program crashes instead of elegantly issuing a helpful error message. +If during testing, or during normal use, a wrong value or no value is returned by a calculation (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm or in the algorithm itself. However, many apparent \emph{bugs} are caused by bad, or missing, code for handling of special cases, such as invalid input values, rounding errors, and division by zero, making a function or script crash instead of elegantly issuing a helpful message. -Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: e.g., for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. +Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom, we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases, it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. \begin{warningbox} \textbf{Error messages} When debugging, keep in mind that in some cases a single bug can lead to a whole cascade of error messages. Do also keep in mind that typing mistakes, originating when code is entered through the keyboard, can wreak havock in a script: usually there is little correspondence between the number of error messages and the seriousness of the bug triggering them. When several errors are triggered, start by reading the error message printed first, as later errors can be an indirect consequence of earlier ones. @@ -215,12 +215,12 @@ There are special tools, called debuggers, available, and they help enormously. When writing your first scripts, you will manage perfectly well, and learn more by running the script one line at a time, and when needed temporarily inserting \code{print()} statements to ``look'' at how the value of variables changes at each step. A debugger allows a lot more control, as one can ``step in'' and ``step out'' of function definitions, and set and unset break points where execution will stop. However, using a debugger is not as simple as using \code{print()}. -If you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and later on to the least likely ones (such as a bug in a package installed from \CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just a misunderstanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, searching with Google for the text of an error message is usually well rewarded. Most important to remember is that bugs do pop up frequently in newly written code, and occasionally in old code. Nobody is immune to them: not the code you write, packages you use or \Rlang itself. +If you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and later on to the least likely ones (such as a bug in a package installed from \CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just a misunderstanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, searching with Google for the text of an error message is usually well rewarded. Most important to remember is that bugs do pop up frequently in newly written code, and occasionally in old code. No coding is immune to them, thus, the code you write, packages you use or \Rlang itself can contain bugs. \section{Compound Statements}\label{sec:script:compound:statement} \index{compound code statements}\index{simple code statements} -Individual statements can be grouped into \emph{compound statements} by enclosing them in curly braces (Figure \ref{fig:compound:statement}). Conceptually is like putting these statements into a box that allows us to operate with them as an anonymous whole. +Individual statements can be grouped into \emph{compound statements} by enclosing them in curly braces (Figure \ref{fig:compound:statement}). Conceptually, is like putting these statements into a box that allows us to operate with them as an anonymous whole. \begin{figure} \centering @@ -251,7 +251,7 @@ print("...") print("...") @ -The grouping of the two middle statements above is of no consequence, as it does not alter sequential evaluation. In the example above only side effects are of interest. In the example below, the value returned by a compound statement is that returned by the last statement evaluated within it. Individual statements can be separated by an end-of-line as above, or by a semicolon (;) as shown below, for two statements, each of them implementing an arithmetic operation. +The grouping of the two middle statements above is of no consequence, as it does not alter sequential evaluation. In the example above, only side effects are of interest. In the example below, the value returned by a compound statement is that returned by the last statement evaluated within it. Individual statements can be separated by an end-of-line as above, or by a semicolon (;) as below: two statements, each of them implementing an arithmetic operation. <>= {1 + 2; 3 + 4} @@ -267,13 +267,13 @@ Nesting is also possible. Before running the compound statement below try to pre @ \end{playground} -Grouping is of little use by itself. It becomes useful together with control-of-execution constructs, when defining functions, and similar cases where we need to treat a group of code statements as if they were a single statement. We will see several examples of the use of compound statements in the current chapter and in chapter \ref{chap:R:functions} on page \pageref{chap:R:functions}. +Grouping is of little use by itself. It becomes useful together with control-of-execution constructs, when defining functions, and in similar cases where we need to treat a group of code statements as if they were a single statement. We will see several examples of the use of compound statements in the current chapter and in chapter \ref{chap:R:functions} on page \pageref{chap:R:functions}. \section{Function Calls} \index{functions!call} -We will describe functions in detail and how to create new ones in chapter \ref{chap:R:functions}. We have already been using functions since chapter \ref{chap:R:as:calc}. Functions are structurally \Rlang statements, in most cases, compound statements, using formal parameters as placeholders. When one calls a function one passes arguments for the different parameters (or placeholder names) and the (compound) statement conforming the \emph{body} of the function is evaluated after ``replacing'' the placeholders by the values passed as arguments. +We will describe functions in detail and how to create new ones in chapter \ref{chap:R:functions}. We have already been using functions since chapter \ref{chap:R:as:calc}. Functions are structurally \Rlang statements, in most cases, compound statements, using formal parameters as placeholders. When one calls a function, one passes arguments for the different parameters (or placeholder names) and the (compound) statement conforming the \emph{body} of the function is evaluated after ``replacing'' the placeholders by the values passed as arguments. -In the first example we use two statements. In the first statement, $log(100)$ is computed by calling function \code{log10()} with \code{100} as argument and the returned value is assigned to variable \code{a}. In the second statement, the value 2 is displayed as a side effect of calling \code{print()} with variable \code{a} as argument. +In the first example, we use two statements. In the first statement, $log(100)$ is computed by calling function \code{log10()} with \code{100} as argument and the returned value is assigned to variable \code{a}. In the second statement, the value 2 is displayed as a side effect of calling \code{print()} with variable \code{a} as argument. <>= a <- log10(100) @@ -294,13 +294,13 @@ Statements with more levels of nesting than shown above become very difficult to \index{pipes!base R|(} \index{pipe operator} \index{chaining statements with \emph{pipes}} -Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981} as well as in \osname{Linux} distributions. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{gsub}, \code{grep}, \code{more}, etc.). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformations take place. In \osname{Unix} and \osname{Linux} shells like \pgrmname{sh} or \pgrmname{bash}, sinks and sources are files, but in \osname{Unix} and \osname{Linux} files are an abstraction that includes all devices and connections for input or output, including physical ones such as terminals and printers. +Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981} as well as in \osname{Linux} distributions. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{sub}, \code{gsub}, \code{grep}, and \code{more}). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformations take place. In \osname{Unix} and \osname{Linux} shells like \pgrmname{sh} or \pgrmname{bash}, sinks and sources are files, but in \osname{Unix} and \osname{Linux} files are an abstraction that includes all devices and connections for input or output, including physical ones such as terminals and printers. <>= stdin | grep("abc") | more @ -How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually there is little difference between \osname{Unix} shell pipes and pipes in \Rlang scripts, but the implementations are different. +How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually, there is little difference between \osname{Unix} shell pipes and pipes in \Rlang scripts, but the implementations are different. What do pipes achieve in \Rlang scripts? They relieve us from the responsibility of creating and deleting the temporary objects. By chaining the statements they enforce their sequential execution. Pipes usually improve the readability of scripts by allowing more concise code. @@ -356,7 +356,7 @@ The placeholder can be also used with extraction operators. @ \begin{explainbox} -Base \Rlang functions like \Rfunction{subset()} have formal parameters in an order that is suitable for implicitly passing the piped value as an argument to their first parameter, while others like \Rfunction{assign()} do not. For example, when calling function \code{assign()} to save a value using a name available as a character string we would like to pass the piped value as an argument to parameter \code{value} which is not the first. In such cases we can use \code{\_} as a placeholder and pass it by name. +Base \Rlang functions like \Rfunction{subset()} have formal parameters in an order that is suitable for implicitly passing the piped value as an argument to their first parameter, while others like \Rfunction{assign()} do not. For example, when calling function \code{assign()} to save a value using a name available as a character string, we would like to pass the piped value as an argument to parameter \code{value} which is not the first. In such cases, we can use \code{\_} as a placeholder and pass it by name. <>= obj.name <- "data.out" @@ -390,7 +390,7 @@ data.frame(x = 1:10, y = rnorm(10)) |> @ \begin{playground} -Without using the \code{\_} placeholder and a more compact layout, the code above becomes. Compare the code below to that above to work out how I simplified the code. +Without using the \code{\_} placeholder, but using a more compact layout, the code above becomes that shown below. Compare it to that above to work out how I simplified the code. <>= data.frame(x = 1:10, y = rnorm(10)) |> @@ -447,7 +447,7 @@ Additional functions designed to be used in pipes are available through packages \section{Conditional Evaluation}\label{sec:script:flow:control} \index{control of execution flow} -By default \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. +By default, \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. These \emph{control of execution constructs} can be also used at the \Rlang console, but it is usually awkward to do so as they can extend over several lines of text. In simple scripts, the \emph{flow of execution} can be fixed and linear from the first to the last statement in the script. However, \emph{control of execution constructs} are a crucial part of most useful scripts. As we will see next, a compound statement can include multiple simple or nested compound statements. \Rpgrm has two types of \emph{if}\index{conditional statements} statements, non-vectorised and vectorised. @@ -493,7 +493,7 @@ Play with the code above by changing the value assigned to variable \code{flag}, In the example above we use variable \code{flag} as the \emph{condition}. -Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (FALSE)} in the syntactically-correct statement below is of no practical use. +Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (FALSE)} in the syntactically correct statement below is of no practical use. <>= if (FALSE) print("Hello!") @@ -664,7 +664,7 @@ Hint: if you need to refresh your understanding of the type conversion rules, se A \Rcontrol{switch()} statement returns a value, just like \code{if} does. The value passed as argument to \Rcontrol{switch()} functions as an index selecting one of the statements. The value returned by the \Rcontrol{switch()} statement is the value returned by the selected \textit{case} statement. -In the first example below we use a \code{character} variable as the condition, named cases, and a final unlabelled case as default in case of no match. In real use, a computed value or user input would be used in place of \code{my.object}. As with the \code{logical} argument to \code{if}, the \code{character} string value passed as argument must be a vector of length one. +In the first example below, we use a \code{character} variable as the condition, named cases, and a final unlabelled case as default in case of no match. In real use, a computed value or user input would be used in place of \code{my.object}. As with the \code{logical} argument to \code{if}, the \code{character} string value passed as argument must be a vector of length one. <<>>= my.object <- "two" @@ -708,7 +708,7 @@ b @ \begin{playground} - Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA} or \code{my.object <- numeric()}. Then remove the \code{, 0} as default value, and repeat. + Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA}, or \code{my.object <- numeric()}. Afterwards, remove the \code{, 0} as default value, and repeat. \end{playground} \begin{explainbox} @@ -727,7 +727,7 @@ b \end{explainbox} \begin{explainbox} - The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases a \Rcontrol{switch()} statement is easier to read and understand. + The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases, a \Rcontrol{switch()} statement is easier to read and understand. <>= my.object <- "two" @@ -746,7 +746,7 @@ b \end{explainbox} \begin{advplayground} - Consider another alternative approach, the use of a named vector to map values. In most of the examples above the code for the cases is a constant value or an operation among constant values. Implement one of this examples using a named vector instead of a \Rcontrol{switch()} statement. + Consider another alternative approach, the use of a named vector to map values. In most of the examples above, the code for the cases is a constant value or an operation among constant values. Implement one of these examples using a named vector instead of a \Rcontrol{switch()} statement. \end{advplayground} \subsection[Vectorised \texttt{ifelse()}]{Vectorised \code{ifelse()}} @@ -754,7 +754,7 @@ b Vectorised \emph{ifelse} is a peculiarity of the \Rlang language, but very useful for writing concise code that may execute faster than logically equivalent but not vectorised code. Vectorised conditional execution is coded by means of \emph{function} \Rcontrol{ifelse()} (written as a single word). This function takes three arguments: a \code{logical} vector usually the result of a test (parameter \code{test}), an expression to use for \code{TRUE} cases (parameter \code{yes}), and an expression to use for \code{FALSE} cases (parameter \code{no}). At each index position along the vectors, the value included in the returned vector is taken from \code{yes} if the corresponding member of the \code{test} logical vector is \code{TRUE} and from \code{no} if the corresponding member of \code{test} is \code{FALSE}. All three arguments can be any \Rlang statement returning the required vectors. -The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. +The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.,\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. It is customary to pass arguments to \code{ifelse} by position. We give a first example with named arguments to clarify the use of the function. @@ -783,7 +783,7 @@ ifelse(c(FALSE, TRUE), 1:5, 0) \end{warningbox} \begin{playground} -Some additional examples to play with, with a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse()} statements work. +Some additional examples to play with, containing a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse()} statements work. <>= a <- 1:10 @@ -797,7 +797,7 @@ Hint: if you need to refresh your understanding of \code{logical} values and Boo \end{playground} \begin{advplayground} -Write, using \Rcontrol{ifelse()}, a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. +Using \Rcontrol{ifelse()}, write a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. <>= a <- -10:-1 @@ -817,9 +817,9 @@ Continuing from the playground above, test the behaviour of \Rcontrol{ifelse()} \index{loops|seealso{iteration}} We give the name \emph{iteration} to the process of repetitive execution of a program statement---e.g., \emph{computed by iteration}. We use the same word, \emph{iteration}, to name each one of these repetitions of the execution of a statement---e.g., \emph{the second iteration}. -Iteration constructs make it possible to ``decide'' at run time the number of iterations, i.e., when execution breaks out of the loop and continues at the next statement in the script. Iteration can be used to apply the same computations to the different members of a vector or list (this section), but also to apply different functions to members of a vector, matrix, list or data frame (section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}). +Iteration constructs make it possible to ``decide'' at run time the number of iterations, i.e., when execution breaks out of the loop and continues at the next statement in the script. Iteration can be used to apply the same computations to the different members of a vector or list (this section), but also to apply different functions to members of a vector, matrix, list, or data frame (section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}). -In \Rlang three types of iteration loops are available: \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in the origin of the values they iterate over, and in the type of test used to terminate iteration. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in easier to understand code. +In \Rlang, three types of iteration loops are available: \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in the origin of the values they iterate over, and in the type of test used to terminate iteration. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in easier to understand code. In \Rlang, explicit loops as described in this section can in some cases be replaced by calls to \emph{apply} functions (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}) or with vectorised functions and operators (see page \pageref{par:calc:vectorised:opers}). The choice among these approaches affects readability and performance (see section \ref{sec:loops:slow} on page \pageref{sec:loops:slow}). @@ -846,9 +846,9 @@ In \Rlang, explicit loops as described in this section can in some cases be repl \caption{Flowchart for a \code{for} iteration loop.}\label{fig:for:loop:diagram} \end{figure} -The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang by ``walking through'' a list or vector of values to act upon (Figure \ref{fig:for:loop:diagram}). Within a \qRloop{for} loop these values are available, sequentially, one at a time through a variable that functions as a placeholder. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has the shape of a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same section of code to be evaluated multiple times, each time with a new value assigned to the placeholder variable. +The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang by ``walking through'' a list or vector of values to act upon (Figure \ref{fig:for:loop:diagram}). Within a \qRloop{for} loop, member values are available, sequentially, one at a time, through a variable that functions as a placeholder. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has the shape of a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same section of code to be evaluated multiple times, each time with a new value assigned to the placeholder variable. -In the diagram above the argument to \code{for()} is shown as \code{} but it can also be a \code{vector} of any mode. Objects of most classes derived from \code{list} or from an atomic vector can also fulfil the same role. The extraction operation with a numeric index must be supported by objects of the class passed as argument. +In the diagram above, the argument to \code{for()} is shown as \code{} but it can also be a \code{vector} of any mode. Objects of most classes derived from \code{list} or from an atomic vector can also fulfil the same role. The extraction operation with a numeric index must be supported by objects of the class passed as argument. Similarly to \code{if} constructs, only one statement is controlled by \Rloop{for}, however this statement can be a compound statement enclosed in braces \verb|{ }| (see pages \pageref{sec:script:compound:statement} and \pageref{sec:script:if}). @@ -1005,7 +1005,7 @@ a[i] Hint: if you find the code in the example above difficult to understand, insert \code{print()} statements and run it again inspecting how the values of \code{a}, \code{b}, \code{idxs} and \code{i} behave within the loop. -In \Rloop{for} loops the use of \Rcontrol{break()} and \Rcontrol{next()} should be reserved for exceptional conditions. When the \Rloop{for} construct is not flexible enough for the computations being implemented, using a \Rloop{while} or a \Rloop{repeat} loop is preferable. +In \Rloop{for} loops, the use of \Rcontrol{break()} and \Rcontrol{next()} should be reserved for exceptional conditions. When the \Rloop{for} construct is not flexible enough for the computations being implemented, using a \Rloop{while} or a \Rloop{repeat} loop is preferable. \end{explainbox} @@ -1072,7 +1072,7 @@ a Explain why a second \code{print(a)} has been added before \code{while()}. Hint: experiment if necessary. \end{advplayground} -As with \code{for} loops we can use an index variable in a \Rfunction{while} loop to walk through vectors and lists. The difference is that we have to update the index values explicitly in our own code. The code example based on a \code{for} loop given on page \pageref{chunk:for:example} can be rewritten as a \Rfunction{while} loop. +As with \code{for} loops, we can use an index variable in a \Rfunction{while} loop to walk through vectors and lists. The difference is that we have to update the index values explicitly in our own code. The code example based on a \code{for} loop given on page \pageref{chunk:for:example} can be rewritten as a \Rfunction{while} loop. <>= a <- c(1, 4, 3, 6, 8) @@ -1157,7 +1157,7 @@ print(row.sum) @ \begin{warningbox} -The nested loops above work correctly with any two-dimensional matrix with at least one column and one row, but \emph{crash} with an empty matrix (\code{matrix()} or \code{matrix(numeric())}). Thus it is good practice to enclose the \Rloop{for} loop in an \Rcontrol{if} statement as protection. For the example above a suitable \code{logical} condition is \code{!is.null(dim(A)) \&\& !any(dim(A) == 0}. +The nested loops above work correctly with any two-dimensional matrix with at least one column and one row, but \emph{crash} with an empty matrix (\code{matrix()} or \code{matrix(numeric())}). Thus it is good practice to enclose the \Rloop{for} loop in an \Rcontrol{if} statement as protection. For the example above, a suitable \code{logical} condition is \code{!is.null(dim(A)) \&\& !any(dim(A) == 0}. \end{warningbox} \begin{advplayground} @@ -1168,7 +1168,7 @@ Does the code you wrote work as expected when the number of rows in \code{A} is \section[Apply Functions]{\emph{Apply} Functions}\label{sec:data:apply} -\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions' role is similar to that of the iteration loops discussed above. One could say that apply functions ``walk along'' a vector, list or a dimension of a matrix or an array, calling a function with each member of the collection as argument. Notation is more concise than in \code{for} constructs. However, apply functions can be used only when the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration---}. +\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions' role is similar to that of the iteration loops discussed above. One could say that apply functions ``walk along'' a vector, list or a dimension of a matrix or an array, calling a function with each member of the collection as argument. Notation is more concise than in \code{for} constructs. However, apply functions can be used only when the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration}. \begin{warningbox} Conceptually, \code{for}, \code{while} and \code{repeat} loops are interpreted as controlling a sequential evaluation of program statements. In contrast, \Rlang's \emph{apply} functions are, conceptually, thought as evaluating a function in parallel for each of the different members of their input. So, while in loops the results of earlier iterations through a loop can be stored in variables and used in subsequent iterations, this is not possible in the case of \emph{apply} functions. @@ -1265,13 +1265,12 @@ values Obtain the summary of dataset \code{airquality} with function \Rfunction{summary()}, but in addition, write code with an \emph{apply} function to count the number of non-missing values in each column. Hint: using \code{sum()} on a \code{logical} vector returns the count of \code{TRUE} values as \code{TRUE}, and \code{FALSE} are transparently converted into \code{numeric} 1 and 0, respectively, when \code{logical} values are used in arithmetic expressions. \end{advplayground} -In the examples above the \emph{apply} functions were used to ``reduce´´ the data by applying summary functions. In the next code chunk \code{lapply()} is used to construct the \code{list} of five vectors \code{ls1} using a vector of five numbers as argument passed to parameter \code{X}. As above, additional \emph{named} arguments are relayed to each call of \code{rnorm()}. +In the examples above, the \emph{apply} functions were used to ``reduce'' the data by applying summary functions. In the next code chunk, \code{lapply()} is used to construct the \code{list} of five vectors \code{ls1} using a vector of five numbers as argument passed to parameter \code{X}. As above, additional \emph{named} arguments are relayed to each call of \code{rnorm()}. <>= set.seed(123456) ls1 <- lapply(X = c(v1 = 2, v2 = 5, v3 = 3, v4 = 1, v5 = 4), FUN = rnorm, mean = 10, sd = 1) -#names(ls1) <- paste("vect", 1:length(ls1)) str(ls1) @ @@ -1279,7 +1278,7 @@ In addition to functions returning pseudo-random draws from different probabilit \subsection{Applying functions to matrices and arrays} -Matrices and arrays have two or more dimensions, and contrary to data frames, they are not a special kind of one-dimensional lists. In \Rlang the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins} (see section \ref{sec:matrix:array}, and Figure \ref{fig:matrix:margins} on page \pageref{fig:matrix:margins}). The argument passed to parameter \code{MARGIN} determines \emph{over} which margin the function will be applied. Arrays can have many dimensions (see Figure \ref{fig:array:margins} on page \pageref{fig:array:margins}), and consequently more margins. In the case of arrays with more than two dimensions, it is possible and can be useful to apply functions over multiple margins at once. +Matrices and arrays have two or more dimensions, and contrary to data frames, they are not a special kind of one-dimensional lists. In \Rlang, the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins} (see section \ref{sec:matrix:array}, and Figure \ref{fig:matrix:margins} on page \pageref{fig:matrix:margins}). The argument passed to parameter \code{MARGIN} determines \emph{over} which margin the function will be applied. Arrays can have many dimensions (see Figure \ref{fig:array:margins} on page \pageref{fig:array:margins}), and consequently more margins. In the case of arrays with more than two dimensions, it is possible and can be useful to apply functions over multiple margins at once. \begin{warningbox} The individual \emph{slices} of the matrix or array passed as argument to parameter \code{X} of \textit{apply} functions are passed as a positional argument to the first formal parameter of the applied function, i.e., only some \Rlang functions can be passed as argument to \code{FUN}. @@ -1386,7 +1385,7 @@ str(z) \section{The Multiple Faces of Loops}\label{sec:R:faces:of:loops} -\ilAdvanced\ In this advanced section I describe some uses of \Rlang loops that help with writing concise scrips. As these make heavy use of functions, if you are reading the book sequentially, you should skip this section and return to it after reading chapters \ref{chap:R:functions} and \ref{chap:R:statistics}. +\ilAdvanced\ In this advanced section, I describe some uses of \Rlang loops that help with writing concise scrips. As these make heavy use of functions, if you are reading the book sequentially, you should skip this section and return to it after reading chapters \ref{chap:R:functions} and \ref{chap:R:statistics}. In the same way as we can assign names to \code{numeric}, \code{character} and other types of objects, we can assign names to functions and expressions. We can also create lists of functions and/or expressions. The \Rlang language has a very consistent grammar, with all lists and vectors behaving in the same way. The implication of this is that we can assign different functions or expressions to a given name and, consequently, it is possible to write loops over lists of functions or expressions. @@ -1424,7 +1423,7 @@ for (f in names(funs)) { results @ -Next is an example using model formulas. In the this example, a loop is used to fit three models, obtaining a list of fitted models. It is not possible to pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. It is possible to get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments so the names present in \code{results} have to be removed with a call to \Rfunction{unname()}. +Next is an example using model formulas. In the this example, a loop is used to fit three models, obtaining a list of fitted models. It is not possible to pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. It is possible to get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments, so the names present in \code{results} have to be removed with a call to \Rfunction{unname()}. <>= my.data <- data.frame(x = 1:10, y = 1:10 + rnorm(10, 1, 0.1)) @@ -1453,7 +1452,7 @@ do.call(anova, results) \index{vectorisation}\index{recycling of arguments}\index{iteration}\index{loops!faster alternatives|(} When working with large data sets, or many smaller data sets, one frequently needs to take performance into account. In \Rlang, explicit \Rloop{for}, \Rloop{while} and \Rloop{repeat} are frequently considered to be slow. Vectorised operations are in general comparatively faster. As vectorisation (see page \pageref{par:calc:vectorised:opers}) usually also makes code simpler, it is good to use vectorisation whenever possible. Depending on the case, loops can be replaced using vectorised arithmetic operators, \emph{apply} functions (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}) and functions implementing frequently used operations (see section \ref{sec:vectorised:functions} on page \pageref{sec:vectorised:functions}). Improved performance needs to be balanced against the effort invested in writing faster code, as in most cases our own time is more valuable than computer running time. However, using vectorised operators and optimised functions becomes nearly effortless once one is familiar with them.\qRloop{for} -To demonstrate the magnitude of the differences in performance that can be expected, I used as a first case the computation of the differences between successive numbers in a vector, applied to vectors of lengths ranging from 10 to 100 million numbers (Figure \ref{fig:diff:benchmarks}). In relative terms the difference in computation time was huge between loops and vectorisation for vectors of up to 1\,000 numbers (near $\times 500$), but the total times were very short ($5 \times 10^{-3}$\,s vs.\ $10 \times 10^{-6}$\,s). For these vectors, pre-allocation of a vector to collect the results made almost no difference and vectorisation with the extraction operator \Roperator{[ ]} together with the minus arithmetic operator \Roperator{-} was the fastest. There seems to be a significant overhead for explicit loops, as the running time was nearly independent of the length of these short vectors. +To demonstrate the magnitude of the differences in performance that can be expected, I used as a first case the computation of the differences between successive numbers in a vector, applied to vectors of lengths ranging from 10 to 100 million numbers (Figure \ref{fig:diff:benchmarks}). In relative terms, the difference in computation time was huge between loops and vectorisation for vectors of up to 1\,000 numbers (near $\times 500$), but the total times were very short ($5 \times 10^{-3}$\,s vs.\ $10 \times 10^{-6}$\,s). For these vectors, pre-allocation of a vector to collect the results made almost no difference and vectorisation with the extraction operator \Roperator{[ ]} together with the minus arithmetic operator \Roperator{-} was the fastest. There seems to be a significant overhead for explicit loops, as the running time was nearly independent of the length of these short vectors. For vectors of 10\,000 or more numbers there was only a very small advantage in using function \Rfunction{diff()} over using vectorised arithmetic and extraction operators. For \Rloop{while} and \Rloop{for} loops pre-allocation of the vector to collect results made an important difference ($\times 2$ to $\times 3$), larger in the case of \Rloop{for}. However, vectorised operators and function \Rfunction{diff()} remained nearly $\times 10$ faster than the fastest explicit loop. For the longer vectors the time increased almost linearly with their length, with similar slopes for the different approaches. Because of the computation used for this example, \emph{apply()} functions could not be used. @@ -1558,7 +1557,7 @@ b <- diff(a) @ \end{explainbox} -In nested iteration loops it is most important to vectorial or otherwise enhance the performance of the innermost loop as it is the one executed most frequently. The code for nested loops (used as an example in section \ref{sec:nested:loops} on page \pageref{sec:nested:loops}) can be edited to remove the explicit use of \Rloop{for} loops. I assessed the performance of different approaches by collecting timings for square \code{matrix} objects with dimensions (rows $\times$ columns) ranging from $10 \times 10$, size = $10^2$, to $10\,000 \times 10\,000$, size = $10^8$ (Figure \ref{fig:rowsums:benchmarks}). +In nested iteration loops, it is most important to vectorise, or otherwise enhance the performance of the innermost loop, as it is the one executed most frequently. The code for nested loops (used as an example in section \ref{sec:nested:loops} on page \pageref{sec:nested:loops}) can be edited to remove the explicit use of \Rloop{for} loops. I assessed the performance of different approaches by collecting timings for square \code{matrix} objects with dimensions (rows $\times$ columns) ranging from $10 \times 10$, size = $10^2$, to $10\,000 \times 10\,000$, size = $10^8$ (Figure \ref{fig:rowsums:benchmarks}). In this second case, pre-allocation of memory to \code{b} did not enhance performance in good agreement with the benchmarks for the first example as when largest its length was 10\,000. The two nested loops always took the longest to run irrespective of the size of matrix \code{A}. A single loop over rows using a call to \Rfunction{sum()} for each row, improved performance compared to nested loops, most clearly for large matrices. This approach was out-performed by \Rfunction{apply()} only for small matrices, from which we can infer that \Rfunction{apply()} has a much smaller overhead than an explicit \Rloop{for} loop. \Rfunction{rowSums()} was between $\times 5$ and $\times 20$ faster than the second fastest approach depending on the size of the matrix. @@ -1613,7 +1612,7 @@ print(fig.seconds / fig.rel + plot_layout(guides = "collect")) opts_chunk$set(opts_fig_narrow) @ -\caption[Benchmark results for row sums.]{Benchmark results for different approaches to computing row sums of square numeric (double) matrices of different sizes. The data in this figure were obtained in a computer with a 12-years old Xenon E3-1235 CPU with four cores, 32\,GB of RAM, Windows 10 and \Rpgrm 4.3.1.}\label{fig:rowsums:benchmarks} +\caption[Benchmark results for row sums.]{Benchmark results for different approaches to computing row sums of square numeric (double) matrices of different sizes. The data in this figure were obtained in a computer with a 12-years-old Xenon E3-1235 CPU with four cores, 32\,GB of RAM, Windows 10, and \Rpgrm 4.3.1.}\label{fig:rowsums:benchmarks} \end{figure} \begin{explainbox} @@ -1654,7 +1653,7 @@ As in these examples the computations in the body of the loop are very simple, t \end{warningbox} \begin{explainbox} - You may be wondering: how do the faster approaches manage to avoid the overhead of iteration? Of course they do not really avoid iteration, but the loops in functions written in \Clang, \Cpplang, or \langname{FORTRAN} are compiled into machine code as part of \Rpgrm itself or when packages binaries are created. In simpler words, the time required to convert and optimise the code written in these languages into machine code is spent during compilation, usually before we download and install \Rlang or packages. Instead, a loop coded in \Rlang is interpreted into machine code each time we source our script, and in some cases for each iteration in a loop. The \Rlang interpreter does some compilation into virtual machine code, as a preliminary stage which helps improve performance. + You may be wondering: how do the faster approaches manage to avoid the overhead of iteration? Of course, they do not really avoid iteration, but the loops in functions written in \Clang, \Cpplang, or \langname{FORTRAN} are compiled into machine code as part of \Rpgrm itself or when packages binaries are created. In simpler words, the time required to convert and optimise the code written in these languages into machine code is spent during compilation, usually before we download and install \Rlang or packages. Instead, a loop coded in \Rlang is interpreted into machine code each time we source our script, and in some cases for each iteration in a loop. The \Rlang interpreter does some compilation into virtual machine code, as a preliminary stage which helps improve performance. \end{explainbox} The examples in this section use numbers and arithmetic operations, but vectorisation and \emph{apply} functions can be also used with vectors of other modes, such as vectors of \code{character} strings or \code{logical} values. @@ -1719,7 +1718,7 @@ on.exit(file.remove("temp.file")) # code that makes use of the file goes here @ -Function \Rfunction{library()} attaches the namespace of the loaded packages and in some special cases one may want to detach them at the end of a script. We can use \Rfunction{detach()} similarly as with attached \code{data.frame} objects (see page \pageref{par:calc:attach}). As an example we detach the packages used in section \ref{sec:loops:slow}. It is important to remember that the order in which they can be detached is determined by their interdependencies. +Function \Rfunction{library()} attaches the namespace of the loaded packages and in some special cases one may want to detach them at the end of a script. We can use \Rfunction{detach()} similarly as with attached \code{data.frame} objects (see page \pageref{par:calc:attach}). As an example, we detach the packages used in section \ref{sec:loops:slow}. It is important to remember that the order in which they can be detached is determined by their interdependencies. <>= detach(package:patchwork) diff --git a/R.stats.rnw b/R.stats.rnw index 6426c67b..a7771996 100644 --- a/R.stats.rnw +++ b/R.stats.rnw @@ -16,12 +16,12 @@ The purpose of computing is insight, not numbers. \section{Aims of This Chapter} -This chapter aims to give the reader an introduction to the approach used in base \Rlang for the computation of statistical summaries, the fitting of models to observations and tests of hypothesis. This chapter does \emph{not} explain data analysis methods, statistical principles or experimental designs. There are many good books on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}) but most of them tend to focus on specific statistical methods rather than on the commonalities among them. Although base \R's model fitting functions target specific statistical procedures, they use a common approach to model specification and for returning the computed estimates and test outcomes. This approach, also followed by many contributed extension packages, can be considered as part of the philosophy behind the \Rlang language. In this chapter you will become familiar with the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalised linear models, non-linear models and some simple multivariate methods as examples. The focus is on how to specify statistical models, contrasts and observations, how to access different components of the objects returned by the corresponding fit and summary functions, and how to use these extracted components in further computations or for customised printing and formatting. +This chapter aims to give the reader an introduction to the approach used in base \Rlang for the computation of statistical summaries, the fitting of models to observations and tests of hypothesis. This chapter does \emph{not} explain data analysis methods, statistical principles or experimental designs. There are many good books on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}) but most of them tend to focus on specific statistical methods rather than on the commonalities among them. Although base \R's model fitting functions target specific statistical procedures, they use a common approach to model specification and for returning the computed estimates and test outcomes. This approach, also followed by many contributed extension packages, can be considered as part of the philosophy behind the \Rlang language. In this chapter, you will become familiar with the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models, and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalised linear models, non-linear models, and some simple multivariate methods as examples. The focus is on how to specify statistical models, contrasts and observations, how to access different components of the objects returned by the corresponding fit and summary functions, and how to use these extracted components in further computations or for customised printing and formatting. %\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} \section{Statistical Summaries} \index{summaries!statistical|(} -Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions both for simple and complex calculations, going from means and variances to fitting very complex models. Table \ref{tab:stat:summaries} lists some frequently used functions. All these methods accept numeric vectors and/or matrices as arguments. In addition function \Rfunction{quantile()} can be used to simultaneously compute multiple arbitrary quantiles for a vector of observations, and method \Rfunction{summary()} produces a summary that depends on the class of the argument passed to it. Please, see section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own functions.) +Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions both for simple and complex calculations, going from means and variances to fitting very complex models. Table \ref{tab:stat:summaries} lists some frequently used functions. All these methods accept numeric vectors and/or matrices as arguments. In addition, function \Rfunction{quantile()} can be used to simultaneously compute multiple arbitrary quantiles for a vector of observations, and method \Rfunction{summary()} produces a summary that depends on the class of the argument passed to it. (See section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own functions.) \begin{table} \centering @@ -65,14 +65,14 @@ mean(x, trim = 0.05) Other more advanced functions are also available in \Rlang, such as \Rfunction{boxplot.stats()} that computes the values needed to draw boxplots (see section \ref{sec:boxplot} on page \pageref{sec:boxplot}). -In many cases you will want to compute statistical summaries by group or treatment in addition or instead of for a whole data set or vector. See section \ref{sec:calc:df:aggregate} on page \pageref{sec:calc:df:aggregate} for details on how to compute summaries of data stored in data frames using base \Rlang functions, and section \ref{sec:dplyr:manip} on page \pageref{sec:dplyr:manip} for alternative functions from contributed packages. +In many cases, you will want to compute statistical summaries by group or treatment in addition or instead of for a whole data set or vector. See section \ref{sec:calc:df:aggregate} on page \pageref{sec:calc:df:aggregate} for details on how to compute summaries of data stored in data frames using base \Rlang functions, and section \ref{sec:dplyr:manip} on page \pageref{sec:dplyr:manip} for alternative functions from contributed packages. \index{summaries!statistical|)} \section{Standard Probability Distributions}\label{sec:prob:dist} \index{probability distributions!standard|(}% \index{probability distributions!theoretical|see{--- standard}}% \index{Normal distribution}% -Density, distribution functions, quantile functions and generation of pseudo-random values for several different standard (theoretical) probability distributions are part of the \Rlang language. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. For each distribution, the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``\code{d}'' for density, ``\code{q}'' for quantile, ``\code{r}'' (pseudo-)random draws, and ``\code{p}'' for probability (Table \ref{tab:prob:funs}). +Density functions, probability distribution functions, quantile functions, and functions for pseudo-random draws are available in \Rlang for several different standard (theoretical) probability distributions. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. For each distribution, the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``\code{d}'' for density, ``\code{q}'' for quantile, ``\code{r}'' (pseudo-)random draws, and ``\code{p}'' for probability (Table \ref{tab:prob:funs}). \begin{table} \centering @@ -97,7 +97,7 @@ Density, distribution functions, quantile functions and generation of pseudo-ran Theoretical distributions are defined by mathematical functions that accept parameters that control the exact shape and location. In the case of the Normal distribution, these parameters are the \emph{mean} (\code{mean}) controlling the location center and \emph(standard deviation) (\code{sd}) controlling the spread away from the center of the distribution. The four different functions differ in which values are calculated (the unknowns) and which values are supplied as arguments (the known inputs). -In what follows I use the Normal distribution as an example, but with differences in their parameters, the functions for other theoretical distributions follow a similar naming pattern. +In what follows, I use the Normal distribution as an example, but with differences in their parameters, the functions for other theoretical distributions follow a similar naming pattern. \subsection{Density from parameters}\label{sec:prob:dens} \index{probability distributions!density from parameters} @@ -171,7 +171,7 @@ pnorm(q = 4, mean = 0, sd = 1) * 2 True random sequences can only be generated by physical processes. All ``pseudo-random'' sequences of numbers generated by computation are really deterministic although they share many properties with true random sequences (e.g., in relation to autocorrelation). -It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. In each case, the probability with which different values are ``drawn'' approximates the probabilities set by the corresponding theoretical distribution. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram} for example plots).\qRfunction{rnorm()}\qRfunction{runif()}% +It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$, and other distributions. In each case, the probability with which different values are ``drawn'' approximates the probabilities set by the corresponding theoretical distribution. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram} for example plots).\qRfunction{rnorm()}\qRfunction{runif()}% <>= set.seed(12234) @@ -180,7 +180,7 @@ rnorm(n = 10, mean = 10, sd = 2) @ \begin{playground} -Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob} and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. +Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob}, and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. \end{playground} \begin{explainbox} @@ -226,7 +226,7 @@ d$n @ \end{explainbox} -As a \Rmethod{plot()} method is available for class \Rclass{density} we can easily produce a plot of the estimated empirical density distribution. In this case a bimodal curve, with two maxima, and thus, far from Normal. +As a \Rmethod{plot()} method is available for class \Rclass{density} we can easily produce a plot of the estimated empirical density distribution. In this case, the fitted bimodal curve, with two maxima, is very different to the Normal. <>= plot(d) @@ -250,7 +250,7 @@ sample(x = LETTERS, size = 12, replace = TRUE) In practice, pseudo-random sampling is useful when we need to select subsets of observations. One such case is assigning treatments to experimental units in an experiment or selecting persons to interview in a survey. Another use is in bootstrapping to estimate variation in parameter estimates using empirical distributions. \begin{faqbox}{How to sample random rows from a data frame?} -As described in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, data frames are commonly used to store one observation per row. To sample a subset of rows we need to generate a random set of indices to use with the extraction operator (\Roperator{[ ]}). Here we sample four rows from data frame \code{cars} included in \Rlang. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). +As described in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, data frames are commonly used to store one observation per row. To sample a subset of rows, we need to generate a random set of indices to use with the extraction operator (\Roperator{[ ]}). Here we sample four rows from data frame \code{cars} included in \Rlang. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). <>= cars[sample(x = 1:nrow(cars), size = 4), ] @@ -362,7 +362,7 @@ The formula \code{some.size\,\char"007E\,1} is read as ``the mean of variable \c t.test(some.size ~ 1, mu = 2, data = df1) @ -The same test can be calculated step by step. In this case this approach is not needed, but it is useful when we have a parameter estimate (not just mean) and its standard error available, as in model fits (see the advanced playground on page \pageref{box:stats:slope:ttest} for an example). +The same test can be calculated step by step. In this case, this approach is not needed, but it is useful when we have a parameter estimate (not just mean) and its standard error available, as in model fits (see the advanced playground on page \pageref{box:stats:slope:ttest} for an example). <>= sem = sqrt(var(df1$some.size) / nrow(df1)) @@ -411,7 +411,7 @@ The $t$-test serves as an example of how statistical tests are usually carried o \section{Model Fitting in \Rlang}\label{sec:stat:mf} \index{models!fitting|(} -The general approach to model fitting in \Rlang is to separate the actual fitting of a model from the inspection of the fitted model. A model fitting function minimally requires a description of the model to fit, as a model \code{formula} and a data frame or vectors with the data or observations to which to fit the model. These functions in \Rlang return a model-fit object. This object contains the data, the model formula, the call and the result of fitting the model. Several methods are available for querying it. The diagram in Figure \ref{fig:model:fit:diagram} summarises the approach used in \Rlang for data analysis based on fitted models. +The general approach to model fitting in \Rlang is to separate the actual fitting of a model from the inspection of the fitted model. A model fitting function minimally requires a description of the model to fit, as a model \code{formula} and a data frame or vectors with the data or observations to which to fit the model. These functions in \Rlang return a model-fit object. This object contains the data, the model formula, the call, and the result of fitting the model. Several methods are available for querying it. The diagram in Figure \ref{fig:model:fit:diagram} summarises the approach used in \Rlang for data analysis based on fitted models. \begin{figure} \centering @@ -433,7 +433,7 @@ The general approach to model fitting in \Rlang is to separate the actual fittin Models are described using model formulas such as \code{y\,\char"007E\,x} which we read as $y$ is explained by $x$. We use \emph{lhs} (left-hand-side) and \emph{rhs} (right-hand-side) to signify all terms to the left and right of the tilde (\code{\,\char"007E\,}), respectively (\code{\,\char"007E\,}). Model formulas are used in different contexts: fitting of models, plotting, and tests like $t$-test. The syntax of model formulas is consistent throughout base \Rlang and numerous independently developed packages. However, their use is not universal, and several packages extend the basic syntax to allow the description of specific types of models. As most things in \Rlang, model formulas are objects and can be stored in variables. See section \ref{sec:stat:formulas} on page \pageref{sec:stat:formulas} for a detailed discussion of model formulas. -Although there is some variation, especially for fitted model classes defined in extension packages, in most cases, the \textsl{query functions} bulked together in the rightmost box in the diagram include methods \Rfunction{summary()}, \Rfunction{anova()} and \Rfunction{plot()}, with several other methods such as \Rfunction{coef()}, \Rfunction{residuals()}, \Rfunction{fitted()}, \Rfunction{predict()}, \Rfunction{AIC()}, \Rfunction{BIC()} usually also available. Additional methods may be available. However, as model fit objects are derived from class \code{list}, these and other components can be extract or computed programmatically when needed. Consequently, the examples in this chapter can be adapted to the fitting of types of models not described here. +Although there is some variation, especially for fitted model classes defined in extension packages, in most cases, the \textsl{query functions} bulked together in the rightmost box in the diagram in Figure \ref{fig:model:fit:diagram} include \Rfunction{summary()}, \Rfunction{anova()} and \Rfunction{plot()}, with other methods such as \Rfunction{coef()}, \Rfunction{residuals()}, \Rfunction{fitted()}, \Rfunction{predict()}, \Rfunction{AIC()}, and \Rfunction{BIC()} usually also available. Additional methods may be available. However, as model fit objects are \code{list}-like, these and other values can be extracted and/or computed programmatically when needed. The examples in this chapter can be adapted to the fitting of types of models not described in this book. \begin{explainbox} Fitted model objects in \Rlang are self contained and include a copy of the data to which the model was fit, as well as residuals and possibly even intermediate results of computations. Although this can make the size of these objects large, it allows querying and even updating them in the absence of the data in the current \Rlang workspace. @@ -507,11 +507,11 @@ In the case of a regression, calling \Rfunction{summary()} with the fitted model summary(fm1) @ -The summary\index{linear models!summary table} is organised in sections. ``Call:'' shows \code{dist\ \char"007E\ 1 + speed} or the specification of the model fitted, plus the data used. ``Residuals:'' displays the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. ``Coefficients:'' contains estimates of the model parameters and their variation plus corresponding $t$-tests. In the last three lines there is information on overall standard error and its degrees of freedom and overall coefficient of determination ($R^2$) and $F$-statistic. +The summary\index{linear models!summary table} is organised in sections. ``Call:'' shows \code{dist\ \char"007E\ 1 + speed} or the specification of the model fitted, plus the data used. ``Residuals:'' displays the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. ``Coefficients:'' contains estimates of the model parameters and their variation plus corresponding $t$-tests. In the last three lines, there is information on overall standard error and its degrees of freedom and overall coefficient of determination ($R^2$) and $F$-statistic. Replacing $\alpha$ and $\beta$ in $y = \alpha \cdot 1 + \beta \cdot x$ by the estimates for the intercept, $a = -17.6$, and slope, $b = 3.93$, we obtain an estimate for the regression line $y = -17.6 + 3.93 x$. However, given the nature of the problem, we \emph{know based on first principles} that the stopping distance must be zero when speed is zero. This suggests that we should not estimate the value of $\alpha$ but instead set $\alpha = 0$, or in other words, fit the model $y = \beta \cdot x$. -In \Rlang models, the intercept is included by default, so the model fitted above can be formulated as \code{dist\ \char"007E\ speed}---i.e., the missing \code{+ 1} does not change the model. To exclude the intercept we need to specify it as \code{dist\ \char"007E\ speed - 1} (or its equivalent \code{dist\ \char"007E\ speed + 0}), for a straight line passing through the origin ($x = 0$, $y = 0$). In the summary for this model there is an estimate for the slope but not for the intercept. +In \Rlang models, the intercept is included by default, so the model fitted above can be formulated as \code{dist\ \char"007E\ speed}---i.e., the missing \code{+ 1} does not change the model. To exclude the intercept, we need to specify the model as \code{dist\ \char"007E\ speed - 1} (or its equivalent \code{dist\ \char"007E\ speed + 0}), for a straight line passing through the origin ($x = 0$, $y = 0$). In the summary for this model there is an estimate for the slope but not for the intercept. <>= fm2 <- lm(dist ~ speed - 1, data = cars) @@ -566,7 +566,7 @@ Once you have run the code in the chunks above, you will be able see that these \end{playground} -Additional query methods give easy access to different aspects of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations) (Figure \ref{fig:lm:fit:query:more}). Less frequently used accessors are \Rfunction{getCall()}, \Rfunction{effects()}, \Rfunction{terms()}, \Rfunction{model.frame()} and \Rfunction{model.matrix()}. +Additional query methods give easy access to different aspects of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations) (Figure \ref{fig:lm:fit:query:more}). Less frequently used accessors are \Rfunction{getCall()}, \Rfunction{effects()}, \Rfunction{terms()}, \Rfunction{model.frame()}, and \Rfunction{model.matrix()}. \begin{figure} \centering @@ -652,7 +652,7 @@ str(anova(fm1)) \begin{explainbox}\label{box:stats:slope:ttest} As\index{linear models!ad-hoc tests for parameters}\index{t-test@$t$-test|(}\index{calibration curves} an example of the use of values extracted from the \code{summary.lm} object, I show how to test if the slope from a linear regression fit deviates significantly from a constant value different from the usual zero, which tests for the presence of an ``effect'' of the explanatory variable. When testing for deviations from a calibration by comparing two instruments or an instrument and a reference, a null hypothesis of one for the slope tests for deviations from the true readings. In some cases, when comparing the effectiveness of interventions we may be interested to test if a new approach surpasses that in current use by at least a specific margin. There exist practical situations where testing if a response exceeds a threshold is of interest. -A \emph{t}-value can be computed for the slope as for the mean. When using \Rfunction{anova()} and \Rfunction{summary()} the null hypothesis is no effect or no response, i.e., slope = 0. The equivalent test with a null hypothesis of slope = 1 is easy to implement if we consider how we calculate a $t$-value (see section \ref{sec:stats:ttest} on page \pageref{sec:stats:ttest}). To compute the \emph{t}-value we need an estimate for the slope and an estimate of its standard error. To look up the $P$-value we need the degrees of freedom. All these values are available as members of the summary object of a fitted model. +A \emph{t}-value can be computed for the slope as for the mean. When using \Rfunction{anova()} and \Rfunction{summary()} the null hypothesis is no effect or no response, i.e., slope = 0. The equivalent test with a null hypothesis of slope = 1 is easy to implement if we consider how we calculate a $t$-value (see section \ref{sec:stats:ttest} on page \pageref{sec:stats:ttest}). To compute the \emph{t}-value we need an estimate for the slope and an estimate of its standard error. To look up the $P$-value, we need the degrees of freedom. All these values are available as members of the summary object of a fitted model. <>= est.slope.value <- summary(fm1)$coefficients["speed", "Estimate"] @@ -691,7 +691,7 @@ Predict using both \code{fm1} and \code{fm2} the distance required to stop cars \index{linear models!linear regression|)}% \begin{explainbox}\label{box:LM:fit:object} -The\index{linear models!structure of model fit object} objects returned by model fitting functions contain the full information, including the data to which the model was fit to. Their structure resembles a nested list. In most cases the class of the objects returned by model fit functions agrees in name with the name of the function (\code{"lm"} in this example) but is not derived from \code{"list"}. The query functions, either extract parts of the object or do additional calculations and formatting based on them. Different specialisations of these methods are called depending on the class of the model fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) +The\index{linear models!structure of model fit object} objects returned by model fitting functions contain the full information, including the data to which the model was fit to. Their structure resembles a nested list. In most cases, the class of the objects returned by model fit functions agrees in name with the name of the function (\code{"lm"} in this example) but is not derived from \code{"list"}. The query functions, either extract parts of the object or do additional calculations and formatting based on them. Different specialisations of these methods are called depending on the class of the model fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) <>= class(fm1) @@ -716,7 +716,7 @@ str(fm1$call) \index{analysis of variance|see{linear models, analysis of variance}}% \index{ANOVA|see{linear models, analysis of variance}}% \index{linear models!analysis of variance|(}% -In ANOVA the explanatory variable is categorical, and in \Rlang, must be a \code{factor} or \code{ordered} factor (see section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}). As a linear model, the fitting approach is the same as for linear and polynomial regression (Figure \ref{fig:lm:fit:diagram}). +In ANOVA, the explanatory variable is categorical, and in \Rlang, must be a \code{factor} or \code{ordered} factor (see section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}). As a linear model, the fitting approach is the same as for linear and polynomial regression (Figure \ref{fig:lm:fit:diagram}). The \Rdata{InsectSprays} data set used in the next example gives insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% \label{xmpl:fun:lm:fm4} @@ -866,7 +866,7 @@ anova(fm4a) Print \code{fm4\$call} and \code{fm4a\$call}. These two calls differ in the argument to \code{formula}. What other members have been updated in \code{fm4a} compared to \code{fm4}? \end{playground} -In the chunk above we replaced the argument passed to \code{formula}. This is a frequent use, but for example to fit the same model to a subset of the data we can pass a suitable argument to parameter \code{subset}. +In the chunk above we replaced the argument passed to \code{formula}. This is a frequent use, but, for example, to fit the same model to a subset of the data, we can pass a suitable argument to parameter \code{subset}. <>= fm4b <- update(fm4, subset = !spray %in% c("A", "B")) @@ -915,9 +915,9 @@ Method \Rfunction{update()} used together with \Rfunction{AIC()} (or \Rfunction{ \caption[Stepwise model selection]{Diagram showing the steps used for stepwise model selection among nested models (in filled boxes) together with the previous steps in unfilled boxes. The range of models to select from can be set by the user. See Figure \ref{fig:lm:fit:diagram} for other details.}\label{fig:lm:step:diagram} \end{figure} -Stepwise model selection, either in the \emph{forward} direction from simpler to more complex models, in the backward direction from more complex to simpler models or in both directions is implemented in base \Rlang's \emph{method} \Rfunction{step()} using Akaike's information criterion (AIC)\index{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}} as the selection criterion. Use of method \Rfunction{step()} from \Rlang is possible, for example, with \code{lm()} and \code{glm} fits. AIC is described on page \pageref{par:stats:AIC}. +Stepwise model selection---either in the \emph{forward} direction from simpler to more complex models, in the backward direction from more complex to simpler models or in both directions---is implemented in base \Rlang's \emph{method} \Rfunction{step()} using Akaike's information criterion (AIC)\index{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}} as the selection criterion. Use of method \Rfunction{step()} from \Rlang is possible, for example, with \code{lm()} and \code{glm} fits. AIC is described on page \pageref{par:stats:AIC}. -For the next example we use \code{fm3} from page \pageref{chunk:stats:fm3}, a linear model for a polynomial regression. If as shown here, no models are passed through formal parameter \code{scope}, the previously fit model will be simplified, if possible. Method \Rfunction{step()} by default prints to the console a trace of the models tried and the corresponding AIC estimates. +For the next example, we use \code{fm3} from page \pageref{chunk:stats:fm3}, a linear model for a polynomial regression. If, as shown here, no models are passed through formal parameter \code{scope}, the previously fit model will be simplified, if possible. Method \Rfunction{step()} by default prints to the console a trace of the models tried and the corresponding AIC estimates. <>= fm3 <- lm(dist ~ speed + I(speed^2), data = cars) @@ -960,7 +960,7 @@ Functions \Rfunction{update()} and \Rfunction{step()} are \emph{convenience func \index{generalised linear models|(}\index{models!generalised linear|see{generalised linear models}} \index{GLM|see{generalised linear models}} -Linear models make the assumption of normally distributed residuals. Generalised linear models, fitted with function \Rfunction{glm()} are more flexible, and allow the assumed distribution to be selected as well as the link function (defaults are as in \code{lm()}). Figure \ref{fig:glm:fit:diagram} shows that the steps used to fit a model with \Rfunction{glm()} are the same as with \code{lm()} except that we can select the probability distribution assumed to describe the variation among observations. Frequently used probability distributions are binomial and Poisson (see \code{help(family)} for the variations and additional ones).\index{models!for binomial outcomes data}\index{models!for counts data} +Linear models make the assumption of normally distributed residuals. Generalised linear models, fitted with function \Rfunction{glm()}, are more flexible, and allow the assumed distribution to be selected as well as the link function (defaults are as in \code{lm()}). Figure \ref{fig:glm:fit:diagram} shows that the steps used to fit a model with \Rfunction{glm()} are the same as with \code{lm()} except that we can select the probability distribution assumed to describe the variation among observations. Frequently used probability distributions are binomial and Poisson (see \code{help(family)} for the variations and additional ones).\index{models!for binomial outcomes data}\index{models!for counts data} \begin{figure} \centering @@ -988,7 +988,7 @@ Linear models make the assumption of normally distributed residuals. Generalised \caption[Generalised linear model fitting in \Rlang]{Generalised linear model fitting in \Rlang is done in steps similar to those used for linear models. Generic diagram from Figure \ref{fig:model:fit:diagram} redrawn to show a generalised linear model fit. Non-filled boxes are shared with fitting of other types of models, and filled ones are specific to \Rfunction{glm()}. Only the three most frequently used query methods are shown, while both response and explanatory variables are under \textsl{observations}. Dashed boxes and arrows are optional as defaults are provided.}\label{fig:glm:fit:diagram} \end{figure} -For count data, GLMs are preferred over LMs. In the example below we fit the same model as above, but assuming a quasi-Poisson distribution instead of the Normal. An argument passed to \code{family} selects the assumed error distribution. The \Rdata{InsectSprays} data set used in the next example, gives insect counts in plots sprayed with different insecticides. In these data, spray is a factor with six levels. +For count data, GLMs are preferred over LMs. In the example below, we fit the same model as above, but assuming a quasi-Poisson distribution instead of the Normal. An argument passed to \code{family} selects the assumed error distribution. The \Rdata{InsectSprays} data set used in the next example, gives insect counts in plots sprayed with different insecticides. In these data, spray is a factor with six levels. <>= fm10 <- glm(count ~ spray, data = InsectSprays, family = quasipoisson) @@ -1000,7 +1000,7 @@ Method \Rfunction{plot()} as for linear-model fits, produces diagnosis plots. We plot(fm10, which = 2) @ -The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. In \Rlang versions previous to 4.4.0 no test statistics or $P$-values were computed unless requested by passing an argument to parameter \code{test}. In later versions of \Rlang, either a chi-squared test or an $F$-test are computed by default depending on whether the dispersion is fixed or free. We here use \code{"F"} as an argument to request an $F$-test. +The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. In \Rlang versions previous to 4.4.0, no test statistics or $P$-values were computed unless requested by passing an argument to parameter \code{test}. In later versions of \Rlang, either a chi-squared test or an $F$-test are computed by default depending on whether the dispersion is fixed or free. We here use \code{"F"} as an argument to request an $F$-test. <>= anova(fm10, test = "F") @@ -1035,9 +1035,9 @@ Methods \code{update()} and \code{step()}, described for \code{lm()} in section \index{models!non-linear|see{non-linear models}}% \index{NLS|see{non-linear models}} -By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to observations. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are models non-linear in their parameters. +By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to observations. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are models that are non-linear in their parameters. -While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained (except in pathological cases affected by the limitations of floating point numbers described on page \pageref{box:integer:float}). For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration, the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. +While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained (except in pathological cases affected by the limitations of floating point numbers described on page \pageref{box:integer:float}). For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration, the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life, we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. When convergence fails, the first thing to do is to try different starting values and if this also fails, switch to a different computational algorithm. These steps usually help, but not always. Good starting values are in many cases crucial and in some cases ``guesses'' can be obtained using either graphical or analytical approximations. @@ -1069,7 +1069,7 @@ Function \Rfunction{nls()} is \Rlang's workhorse for fitting non-linear models. \caption[Non-linear model fitting in \Rlang]{Non-linear model fitting in \Rlang is done in steps. Generic diagram from Figure \ref{fig:model:fit:diagram} redrawn to show a non-linear model fit. Non-filled boxes are shared with fitting of other types of models, and filled ones are specific to \Rfunction{nls()}. Only the three most frequently used query methods are shown, while both response and explanatory variables are under \textsl{observations}. Dashed boxes and arrows are optional as defaults are provided.}\label{fig:nls:fit:diagram} \end{figure} -In cases when algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the \Rlang function to be fitted together with the \Rlang function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. Please, check the respective help pages for details. +In cases when algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the \Rlang function to be fitted together with the \Rlang function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. The respective help pages give the details. \begin{warningbox} In calls to \Rfunction{nls()}, the rhs of the model \code{formula} is a function call. The names of its arguments if not present in \code{data} are assumed to be parameters to be fitted. Below, a named function @@ -1129,11 +1129,11 @@ Most of the model fits given above as examples produce estimates for parameters Splines take this a step farther and parameter estimates have no practical interest. The interest resides in the overall shape and position of the predicted curve. Splines consist of knots (or connection points) joined by straight or curved fitted lines, i.e., they are functions that are \emph{piecewise}. The simplest splines, are piece-wise linear, given by chained straight line segments connecting knots. -In more complex splines the segments are polynomials, frequently cubic polynomials, that fulfil certain constraints at the knots. For example, that the slope or first derivative is the same for the two connected curve ``pieces'' at the knot where they are connected. This constraint ensures that the curve is smooth. In some cases similar constraints are imposed on higher order derivatives, for example to the second derivative to ensure that the curve of the first derivative is also smooth at the knots. +In more complex splines, the segments are polynomials, frequently cubic polynomials, that fulfil certain constraints at the knots. For example, that the slope or first derivative is the same for the two connected curve ``pieces'' at the knot where they are connected. This constraint ensures that the curve is smooth. In some cases, similar constraints are imposed on higher order derivatives, for example, to the second derivative to ensure that the curve of the first derivative is also smooth at the knots. Splines are used in free-hand drawing with computers to draw arbitrary smooth curves. They are also be used for interpolation, in which case observations, assumed to be error-free, become the knots of a spline used to approximate intermediate values. Finally, splines can be used as models to be fit to observations subject to random variation. In this case splines fulfil the role of smoothers, as a curve that broadly describes a relationship among variables. -Splines are frequently used as smooth curves in plots as described in section \ref{sec:plot:smoothers} on page \pageref{sec:plot:smoothers}. Function \Rfunction{spline()} is used for interpolation and function \Rfunction{smooth.spline()} for smoothing by fitting a cubic spline (a spline where the knots are connected by third degree polynomials). Function \Rfunction{smooth.spline()} has a different user interface than that we used for model fit functions described above, as it only accepts \code{numeric} vectors as arguments to parameters \code{x} and \code{y} (Figure \ref{fig:spline:fit:diagram}). Additional parameters make it possible to override the defaults for number of knots and adjust the stiffness or tendency towards a straight line. The \code{plot()} method for splines, differently to the methods for other fit functions, produces a plot of the prediction. As no model formula is used only one curve at a time is fitted and no statistical tests involving groups are possible. The most commonly used query functions are thus not the same as for linear and non-linear models. +Splines are frequently used as smooth curves in plots as described in section \ref{sec:plot:smoothers} on page \pageref{sec:plot:smoothers}. Function \Rfunction{spline()} is used for interpolation and function \Rfunction{smooth.spline()} for smoothing by fitting a cubic spline (a spline where the knots are connected by third degree polynomials). Function \Rfunction{smooth.spline()} has a different user interface than that we used for model fit functions described above, as it only accepts \code{numeric} vectors as arguments to parameters \code{x} and \code{y} (Figure \ref{fig:spline:fit:diagram}). Additional parameters make it possible to override the defaults for number of knots and adjust the stiffness or tendency towards a straight line. The \code{plot()} method for splines, differently to the methods for other fit functions, produces a plot of the prediction. As no model formula is used, only one curve at a time is fitted and no statistical tests involving groups are possible. The most commonly used query functions are thus not the same as for linear and non-linear models. \begin{figure} \centering @@ -1211,7 +1211,7 @@ summary(floc) \index{model formulas|(}\index{models!specification|see{model formulas}}% Model formulas, such as \code{y\,\char"007E\,x} are widely used in \Rlang, both in model fitting as exemplified in previous sections of this chapter and in plotting when using base \Rlang \Rmethod{plot()} methods. -\Rlang is consistent and flexible in how it treats various objects, to an extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other classes. +\Rlang is consistent and flexible in how it treats various objects, to an extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other \Rlang classes. <>= class(y ~ x) @@ -1234,7 +1234,7 @@ is.empty.model(~ x + y) @ \begin{explainbox} -Some details of \Rlang formulas can be important in advanced scripts. Two kinds of ``emptiness'' are possible for formulas. As with other classes, empty objects or vectors of length zero are valid and can be created with the class constructor. In the case of formulas there is an additional kind of emptiness, a formula describing a model with no explanatory terms on its \emph{rhs}. +Some details of \Rlang formulas can be important in advanced scripts. Two kinds of ``emptiness'' are possible for formulas. As with other classes, empty objects or vectors of length zero are valid and can be created with the class constructor. In the case of formulas, there is an additional kind of emptiness, a formula describing a model with no explanatory terms on its \emph{rhs}. An ``empty'' object of class \Rclass{formula} can be created by a call to \code{formula()} with no arguments, similarly as a numeric vector of length zero is created by the call \code{numeric()}. The last, commented out, statement in the code below triggers an error as the argument passed to \Rfunction{is.empty.model()} is of length zero. (This behaviour is not consistent with \Rclass{numeric} vectors of length zero; see for example the value returned by \code{is.finite(numeric())}.) @@ -1276,9 +1276,9 @@ sapply(list(y ~ 0, y ~ 1, y ~ x), is.empty.model) \end{explainbox} -In the examples in previous sections we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid using of operator \code{*} by explicitly defining all individual main effects and interactions using operators \code{+} and \code{:}\,. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. +In the examples in previous sections, we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid using of operator \code{*} by explicitly defining all individual main effects and interactions using operators \code{+} and \code{:}\,. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. -The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. +The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below, we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. <>= y ~ I(x1 + x2) @@ -1363,7 +1363,7 @@ The syntax described above does not support complex statistical models as implem \begin{warningbox} \Rlang will accept any syntactically correct model formula, even when the results of the fit are not interpretable. It is \emph{the responsibility of the user to ensure that models are meaningful}\index{models!nesting of factors}. The most common, and dangerous, mistake is specifying for factorial experiments, models that are missing lower-order terms. - Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. + Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases, simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. <>= y ~ A + B + A:B + A:C + B:C @@ -1409,7 +1409,7 @@ This conversion makes it possible to edit a formula as a character string. format(y ~ x) |> gsub("x", "x + z", x = _) |> as.formula() @ -It\index{model formulas!updating} is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula in the replacement formula. We can also remove terms as can be seen below. In some cases the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. +It\index{model formulas!updating} is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula. We can also remove terms as can be seen below. In some cases, the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. <>= my.formula <- y ~ x1 + x2 @@ -1430,7 +1430,7 @@ A model matrix of dummy coefficients is used in the actual computations. This ma \index{time series|(} Longitudinal data consist of repeated measurements, usually done over time, on the same experimental units. Longitudinal data, when replicated on several experimental units at each time point, are called repeated measurements, while when not replicated, they are called time series. Base \Rlang provides special support for the analysis of time series data, while repeated measurements can be analysed with nested linear models, mixed-effects models, and additive models. -Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialised class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. When analysing time-series data it is frequently necessary to convert time data stored in one of the special \Rlang classes for temporal data and to operate with them (see section \ref{sec:data:datetime} on page \pageref{sec:data:datetime}). +Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases, time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialised class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. When analysing time-series data, it is frequently necessary to convert time data between one of the special \Rlang classes and \Rclass{character} strings, and to operate on dates and times (see section \ref{sec:data:datetime} on page \pageref{sec:data:datetime}). By now, you surely guessed that to create an object of class \Rclass{"ts"} one needs to use a constructor called \Rfunction{ts()} or a conversion constructor called \Rfunction{as.ts()} and that you can look up the arguments they accept by consulting help using \code{help(ts)}. @@ -1488,7 +1488,7 @@ attributes(nottem.celcius) Many time series of observations display cyclic variation at different frequencies. Outdoors, air temperature varies cyclically between day and night and throughout the year. Superimposed on these regular cycles there can be faster random variation and long-term trends. One approach to the analysis of time series data is to estimate the separate contribution of these components. -An efficient approach to time series decomposition, based on LOESS\index{time series!decomposition}\index{STL|see{time series decomposition}} (see section \ref{sec:stat:splines} on \pageref{sec:stat:splines}), is STL (Seasonal and Trend decomposition using Loess).\qRfunction{decompose()}\qRfunction{stl()} A seasonal window of 7 months, the minimum accepted, allows the extraction of the annual cycles and a long-term trend leaving as a remainder some unexplained variation. In the plot is important to be aware that the scale limits in the different panels are different, and re-set for each plot. +An efficient approach to time series decomposition, based on LOESS\index{time series!decomposition}\index{STL|see{time series decomposition}} (see section \ref{sec:stat:splines} on \pageref{sec:stat:splines}), is STL (Seasonal and Trend decomposition using Loess).\qRfunction{decompose()}\qRfunction{stl()} A seasonal window of 7 months, the minimum accepted, allows the extraction of the annual cycles and a long-term trend leaving as a remainder some unexplained variation. In the plot, is important to be aware that the scale limits in the different panels are different, and re-set for each plot. <>= opts_chunk$set(opts_fig_wide_square) @@ -1518,7 +1518,7 @@ Consult \code{help(stl)} and \code{help(plot.stl)} and create different plots an Method \code{print()} shows the different components. Extract the seasonal component and plot is on its own against time. \end{playground} -In the Nottingham temperature time series the period of the variation is clearly annual, but for many other time series an interesting feature to characterise is autocorrelation and its periodicity. Function \Rfunction{acf()} computes and plots the autocorrelation function (ACF) vs. the lag. The time series has monthly data, while the scale for lag in the plot below is in years. The autocorrelation is one at zero lag, and slightly less with a lag of one year, while its is negative between winter and summer temperatures. +In the Nottingham temperature time series, the period of the variation is clearly annual, but for many other time series an interesting feature to characterise is autocorrelation and its periodicity. Function \Rfunction{acf()} computes and plots the autocorrelation function (ACF) vs. the lag. The time series has monthly data, while the scale for lag in the plot below is in years. The autocorrelation is one at zero lag, and slightly less with a lag of one year, while its is negative between winter and summer temperatures. <>= opts_chunk$set(opts_fig_narrow) @@ -1567,7 +1567,7 @@ pc <- prcomp(iris[c("Sepal.Length", "Sepal.Width", scale = TRUE) @ -By printing the returned object we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. +By printing the returned object, we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. <>= class(pc) pc @@ -1658,7 +1658,7 @@ text(x, y, rownames(loc), cex = 0.6) \subsection{Cluster analysis}\label{sec:stat:cluster} \index{cluster analysis|(} -In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. +In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example, we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases, a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. <>= hc <- hclust(eurodist) @@ -1693,7 +1693,7 @@ str(hc) \section{Further Reading}\label{sec:stat:further:reading} -\Rlang\index{further reading!statistics with R} and its extension packages provide implementations of most known statistical methods. For some methods alternative implementations exist in different packages. The present chapter only attempts to show how some of the most frequently used implementations are used, as this knowledge is frequently taken for granted in specialised books, several of which I list here. Two recent text books on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. They differ in the subjects emphasised, with the second one focusing more on genetic and molecular biology. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2010} \autocite{Everitt2010} and \citetitle{Zuur2009} \autocite{Zuur2009}. The book \citetitle{Mehtatalo2020} \autocite{Mehtatalo2020} presents both the statistical theory and code examples. The comprehensive \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002} both present statistical theory in parallel with the \Rlang code examples. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Hyndman2021} \autocite{Hyndman2021}, \citebooktitle{James2013} \autocite{James2013}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. +\Rlang\index{further reading!statistics with R} and its extension packages provide implementations of most known statistical methods. For some methods, alternative implementations exist in different packages. The present chapter only attempts to show how some of the most frequently used implementations are used, as this knowledge is frequently taken for granted in specialised books, several of which I list here. Two recent text books on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. They differ in the subjects emphasised, with the second one focusing more on genetic and molecular biology. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2010} \autocite{Everitt2010} and \citetitle{Zuur2009} \autocite{Zuur2009}. The book \citetitle{Mehtatalo2020} \autocite{Mehtatalo2020} presents both the statistical theory and code examples. The comprehensive \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002} both present statistical theory in parallel with the \Rlang code examples. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Hyndman2021} \autocite{Hyndman2021}, \citebooktitle{James2013} \autocite{James2013}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. <>= knitter_diag() diff --git a/appendixes.prj b/appendixes.prj index 3963793f..fad20119 100644 --- a/appendixes.prj +++ b/appendixes.prj @@ -6,56 +6,59 @@ using-r-main-crc.Rnw 28 15 -3 +7 using-r-main-crc.Rnw TeX:RNW:UTF-8 -134217730 0 129 50 114 1 6074 -1 6522 208 1 1 146 667 1 906 254 255 -1 0 0 33 1 0 1 114 0 -1 0 +134217730 0 179 8 179 17 6074 -1 6522 208 1 1 354 5191 1 906 254 255 -1 0 0 33 1 0 17 179 0 -1 0 R.plotting.Rnw TeX:RNW:UNIX -17936379 0 -1 220150 -1 220150 380 380 1366 1438 1 1 146 3712 -1 -1 0 0 114751 -1 -1 114751 1 0 220150 -1 0 -1 0 +17936379 0 -1 231448 -1 231437 380 380 1366 1438 1 1 1303 667 -1 -1 0 0 114753 -1 -1 114753 1 0 231437 -1 0 -1 0 R.intro.Rnw TeX:RNW -17837307 2 -1 20391 -1 20395 228 228 1358 1175 1 1 1485 667 -1 -1 0 0 30 -1 -1 30 1 0 20395 -1 0 -1 0 +17837307 0 -1 38564 -1 38565 228 228 1358 1175 1 1 1173 1102 -1 -1 0 0 30 -1 -1 30 1 0 38565 -1 0 -1 0 rbooks.bib BibTeX:UNIX -269583346 0 976 1 970 35 38 38 1429 959 1 1 588 870 -1 -1 0 0 1 1 1 1 1 0 35 970 0 -1 0 +1147890 0 134 7 145 28 38 38 1429 959 1 1 497 986 -1 -1 0 0 1 1 1 1 1 0 28 145 0 -1 0 preface.Rnw TeX:RNW -17838075 0 -1 8646 -1 8652 266 266 1252 1324 1 1 484 957 -1 -1 0 0 18 -1 -1 18 1 0 8652 -1 0 -1 0 +17838075 0 -1 8608 -1 8608 266 266 1252 1324 1 1 1121 2987 -1 -1 0 0 18 -1 -1 18 1 0 8608 -1 0 -1 0 R.data.containers.Rnw TeX:RNW:UNIX -17936379 0 -1 54198 -1 54199 190 190 1324 1242 1 1 302 261 -1 -1 0 0 83308 -1 -1 83308 3 0 54199 -1 1 0 -1 2 0 -1 0 -1 0 +17936379 2 -1 82520 -1 82494 190 190 1324 1242 1 1 146 1334 -1 -1 0 0 83326 -1 -1 83326 3 0 82494 -1 1 0 -1 2 0 -1 0 -1 0 R.scripts.Rnw TeX:RNW:UNIX -17936379 0 -1 104157 -1 104157 152 152 1138 1210 1 1 276 551 -1 -1 0 0 111379 -1 -1 111379 3 0 104157 -1 1 0 -1 2 27709 -1 0 -1 0 +17936379 0 -1 103139 -1 110879 152 152 1138 1210 1 1 1277 928 -1 -1 0 0 111412 -1 -1 111412 3 0 110879 -1 1 0 -1 2 27734 -1 0 -1 0 R.stats.rnw TeX:RNW:UNIX -17936379 0 -1 123916 -1 123918 418 418 1404 1476 1 1 289 319 -1 -1 0 0 128343 -1 -1 128343 1 0 123918 -1 0 -1 0 +286371835 0 -1 113326 -1 113321 418 418 1404 1476 1 1 1030 1131 -1 -1 0 0 128428 -1 -1 128428 1 0 113321 -1 0 -1 0 R.data.io.Rnw TeX:RNW:UNIX -17936379 0 -1 66809 -1 66809 494 494 1480 1522 1 1 276 783 -1 -1 0 0 31 -1 -1 31 1 0 66809 -1 0 -1 0 +17936379 0 -1 14633 -1 14622 494 494 1480 1522 1 1 757 667 -1 -1 0 0 31 -1 -1 31 1 0 14622 -1 0 -1 0 usingr.sty TeX:STY:UNIX -1158386 1 151 13 151 20 190 190 1176 1248 1 0 372 203 -1 -1 0 0 1 1 1 1 1 0 20 151 0 0 0 +1158386 2 118 14 118 23 190 190 1176 1248 1 0 411 667 -1 -1 0 0 1 1 1 1 1 0 23 118 0 0 0 R.data.Rnw TeX:RNW:UNIX 17936379 0 -1 56245 -1 56250 342 342 1328 1400 1 1 952 580 -1 -1 0 0 31 -1 -1 31 1 0 56250 -1 0 -1 0 references.bib BibTeX:UNIX -1147890 0 477 48 477 44 76 76 1467 997 1 1 705 899 -1 -1 0 0 1 1 1 1 1 0 44 477 0 -1 0 +1147890 0 474 1 474 1 76 76 1467 997 1 1 146 812 -1 -1 0 0 1 1 1 1 1 0 1 474 0 -1 0 R.functions.Rnw TeX:RNW:UNIX -17936379 0 -1 34477 -1 37498 456 456 1442 1484 1 1 1017 754 -1 -1 0 0 31 -1 -1 31 1 0 37498 -1 0 -1 0 +17936379 0 -1 43565 -1 43566 456 456 1442 1484 1 1 640 870 -1 -1 0 0 31 -1 -1 31 1 0 43566 -1 0 -1 0 R.as.calculator.Rnw TeX:RNW:UNIX -17936379 1 -1 143810 -1 143821 190 190 1324 1242 1 1 146 667 -1 -1 0 0 31 -1 -1 31 4 0 143821 -1 1 147671 -1 2 20210 -1 3 55986 -1 0 -1 0 +17936379 0 -1 72277 -1 72285 190 190 1324 1242 1 1 1433 290 -1 -1 0 0 31 -1 -1 31 4 0 72285 -1 1 147834 -1 2 20226 -1 3 56017 -1 0 -1 0 R.learning.Rnw TeX:UK -17837307 0 -1 4879 -1 21503 190 190 1320 1137 1 1 1550 377 -1 -1 0 0 41 1 1 41 1 0 21503 -1 0 -1 0 +17837307 0 -1 23277 -1 23277 190 190 1320 1137 1 1 393 1189 -1 -1 0 0 41 1 1 41 1 0 23277 -1 0 -1 0 using-r-main-crc.tex TeX -269495547 8 -1 1278744 -1 1278718 152 152 1581 1098 1 1 1121 667 -1 -1 0 0 49 -1 -1 49 1 0 1278718 -1 0 -1 0 +269495547 0 -1 1451683 -1 1450587 152 152 1581 1098 1 1 146 2001 -1 -1 0 0 49 -1 -1 49 1 0 1450587 -1 0 -1 0 +using-r-main-crc.ind +TeX:AUX:UNIX +269594610 8 366 1 365 1 308 308 1684 1215 1 0 125 870 -1 -1 0 0 17 0 0 17 1 0 1 365 0 0 0 F:\aphalo\references\all_references_dedup.bib BibTeX 269484274 0 155348 1 155348 1 228 228 1256 1174 1 1 146 667 -1 -1 0 0 20 0 0 20 1 0 1 155348 0 -1 0 @@ -77,9 +80,6 @@ TeX:STY :\Program Files\MiKTeX\tex\latex\biblatex\biblatex.sty TeX:STY:UNIX 269593842 0 0 1 8 67 152 152 1603 1084 1 0 983 -4292 -1 -1 0 0 -1 -1 -1 -1 1 0 67 8 0 0 0 -using-r-main-crc.ind -TeX:AUX:UNIX -269594610 0 370 10 370 16 308 308 1684 1215 1 0 320 1015 -1 -1 0 0 17 0 0 17 1 0 16 370 0 0 0 usingr-2.sty TeX 269495547 2 -1 5012 -1 5016 152 152 1282 1099 1 0 853 406 -1 -1 0 0 24 -1 -1 24 1 0 5016 -1 0 0 0 diff --git a/appendixes.prj.bak b/appendixes.prj.bak index 34aab893..8241cb6a 100644 --- a/appendixes.prj.bak +++ b/appendixes.prj.bak @@ -6,56 +6,59 @@ using-r-main-crc.Rnw 28 15 -1 +7 using-r-main-crc.Rnw TeX:RNW:UTF-8 -134217730 0 129 50 114 1 6074 -1 6522 208 1 1 146 667 1 906 254 255 -1 0 0 33 1 0 1 114 0 -1 0 +134217730 0 179 8 179 17 6074 -1 6522 208 1 1 354 5191 1 906 254 255 -1 0 0 33 1 0 17 179 0 -1 0 R.plotting.Rnw TeX:RNW:UNIX -286371835 0 -1 220150 -1 220150 380 380 1366 1438 1 1 146 1189 -1 -1 0 0 114751 -1 -1 114751 1 0 220150 -1 0 -1 0 +17936379 0 -1 231448 -1 231437 380 380 1366 1438 1 1 1303 667 -1 -1 0 0 114753 -1 -1 114753 1 0 231437 -1 0 -1 0 R.intro.Rnw TeX:RNW -17837307 2 -1 20391 -1 20395 228 228 1358 1175 1 1 1485 667 -1 -1 0 0 30 -1 -1 30 1 0 20395 -1 0 -1 0 +17837307 0 -1 38564 -1 38565 228 228 1358 1175 1 1 1173 1102 -1 -1 0 0 30 -1 -1 30 1 0 38565 -1 0 -1 0 rbooks.bib BibTeX:UNIX -1147890 0 976 1 970 35 38 38 1429 959 1 1 588 870 -1 -1 0 0 1 1 1 1 1 0 35 970 0 -1 0 +1147890 0 134 7 145 28 38 38 1429 959 1 1 497 986 -1 -1 0 0 1 1 1 1 1 0 28 145 0 -1 0 preface.Rnw TeX:RNW -17838075 0 -1 8646 -1 8652 266 266 1252 1324 1 1 484 957 -1 -1 0 0 18 -1 -1 18 1 0 8652 -1 0 -1 0 +17838075 0 -1 8608 -1 8608 266 266 1252 1324 1 1 1121 2987 -1 -1 0 0 18 -1 -1 18 1 0 8608 -1 0 -1 0 R.data.containers.Rnw TeX:RNW:UNIX -17936379 0 -1 54198 -1 54199 190 190 1324 1242 1 1 302 261 -1 -1 0 0 83308 -1 -1 83308 3 0 54199 -1 1 0 -1 2 0 -1 0 -1 0 +17936379 2 -1 82520 -1 82494 190 190 1324 1242 1 1 146 1334 -1 -1 0 0 83326 -1 -1 83326 3 0 82494 -1 1 0 -1 2 0 -1 0 -1 0 R.scripts.Rnw TeX:RNW:UNIX -17936379 0 -1 104157 -1 104157 152 152 1138 1210 1 1 276 551 -1 -1 0 0 111379 -1 -1 111379 3 0 104157 -1 1 0 -1 2 27709 -1 0 -1 0 +17936379 0 -1 103139 -1 110879 152 152 1138 1210 1 1 1277 928 -1 -1 0 0 111412 -1 -1 111412 3 0 110879 -1 1 0 -1 2 27734 -1 0 -1 0 R.stats.rnw TeX:RNW:UNIX -17936379 0 -1 123916 -1 123918 418 418 1404 1476 1 1 289 319 -1 -1 0 0 128343 -1 -1 128343 1 0 123918 -1 0 -1 0 +286371835 0 -1 87110 -1 87128 418 418 1404 1476 1 1 146 870 -1 -1 0 0 128407 -1 -1 128407 1 0 87128 -1 0 -1 0 R.data.io.Rnw TeX:RNW:UNIX -17936379 0 -1 66809 -1 66809 494 494 1480 1522 1 1 276 783 -1 -1 0 0 31 -1 -1 31 1 0 66809 -1 0 -1 0 +17936379 0 -1 14633 -1 14622 494 494 1480 1522 1 1 757 667 -1 -1 0 0 31 -1 -1 31 1 0 14622 -1 0 -1 0 usingr.sty TeX:STY:UNIX -1158386 1 151 13 151 20 190 190 1176 1248 1 0 372 203 -1 -1 0 0 1 1 1 1 1 0 20 151 0 0 0 +1158386 2 118 14 118 23 190 190 1176 1248 1 0 411 667 -1 -1 0 0 1 1 1 1 1 0 23 118 0 0 0 R.data.Rnw TeX:RNW:UNIX 17936379 0 -1 56245 -1 56250 342 342 1328 1400 1 1 952 580 -1 -1 0 0 31 -1 -1 31 1 0 56250 -1 0 -1 0 references.bib BibTeX:UNIX -1147890 0 477 48 477 44 76 76 1467 997 1 1 705 899 -1 -1 0 0 1 1 1 1 1 0 44 477 0 -1 0 +1147890 0 474 1 474 1 76 76 1467 997 1 1 146 812 -1 -1 0 0 1 1 1 1 1 0 1 474 0 -1 0 R.functions.Rnw TeX:RNW:UNIX -17936379 0 -1 34477 -1 37498 456 456 1442 1484 1 1 1017 754 -1 -1 0 0 31 -1 -1 31 1 0 37498 -1 0 -1 0 +17936379 0 -1 43565 -1 43566 456 456 1442 1484 1 1 640 870 -1 -1 0 0 31 -1 -1 31 1 0 43566 -1 0 -1 0 R.as.calculator.Rnw TeX:RNW:UNIX -17936379 1 -1 143810 -1 143821 190 190 1324 1242 1 1 146 667 -1 -1 0 0 31 -1 -1 31 4 0 143821 -1 1 147671 -1 2 20210 -1 3 55986 -1 0 -1 0 +17936379 0 -1 72277 -1 72285 190 190 1324 1242 1 1 1433 290 -1 -1 0 0 31 -1 -1 31 4 0 72285 -1 1 147834 -1 2 20226 -1 3 56017 -1 0 -1 0 R.learning.Rnw TeX:UK -17837307 0 -1 4879 -1 21503 190 190 1320 1137 1 1 1550 377 -1 -1 0 0 41 1 1 41 1 0 21503 -1 0 -1 0 +17837307 0 -1 23277 -1 23277 190 190 1320 1137 1 1 393 1189 -1 -1 0 0 41 1 1 41 1 0 23277 -1 0 -1 0 using-r-main-crc.tex TeX -269495547 8 -1 1278744 -1 1278718 152 152 1581 1098 1 1 1121 667 -1 -1 0 0 49 -1 -1 49 1 0 1278718 -1 0 -1 0 +269495547 0 -1 1451683 -1 1450587 152 152 1581 1098 1 1 146 2001 -1 -1 0 0 49 -1 -1 49 1 0 1450587 -1 0 -1 0 +using-r-main-crc.ind +TeX:AUX:UNIX +269594610 8 366 1 365 1 308 308 1684 1215 1 0 125 870 -1 -1 0 0 17 0 0 17 1 0 1 365 0 0 0 F:\aphalo\references\all_references_dedup.bib BibTeX 269484274 0 155348 1 155348 1 228 228 1256 1174 1 1 146 667 -1 -1 0 0 20 0 0 20 1 0 1 155348 0 -1 0 @@ -77,9 +80,6 @@ TeX:STY :\Program Files\MiKTeX\tex\latex\biblatex\biblatex.sty TeX:STY:UNIX 269593842 0 0 1 8 67 152 152 1603 1084 1 0 983 -4292 -1 -1 0 0 -1 -1 -1 -1 1 0 67 8 0 0 0 -using-r-main-crc.ind -TeX:AUX:UNIX -269594610 0 370 10 370 16 308 308 1684 1215 1 0 320 1015 -1 -1 0 0 17 0 0 17 1 0 16 370 0 0 0 usingr-2.sty TeX 269495547 2 -1 5012 -1 5016 152 152 1282 1099 1 0 853 406 -1 -1 0 0 24 -1 -1 24 1 0 5016 -1 0 0 0 diff --git a/cloudindex.idx b/cloudindex.idx index fa5154f9..7b53b9c9 100644 --- a/cloudindex.idx +++ b/cloudindex.idx @@ -238,6 +238,7 @@ \indexentry{logical}{63} \indexentry{NA}{63} \indexentry{NA}{63} +\indexentry{[ ]}{64} \indexentry{letters}{64} \indexentry{LETTERS}{64} \indexentry{month.name}{64} @@ -973,6 +974,7 @@ \indexentry{update()}{231} \indexentry{model.matrix()}{231} \indexentry{"ts"}{232} +\indexentry{character}{232} \indexentry{"ts"}{232} \indexentry{ts()}{232} \indexentry{as.ts()}{232} @@ -1564,7 +1566,7 @@ \indexentry{readLines()}{388} \indexentry{showNonASCIIfile()}{390} \indexentry{showNonASCII()}{390} -\indexentry{read.csv}{390} +\indexentry{read.csv()}{390} \indexentry{read.csv()}{390} \indexentry{write.csv()}{390} \indexentry{read.csv2()}{391} diff --git a/faqindex.idx b/faqindex.idx index cd6563f4..8532e4d1 100644 --- a/faqindex.idx +++ b/faqindex.idx @@ -7,7 +7,7 @@ \indexentry{How to find the length of a character string?}{42} \indexentry{How to wrap long character strings?}{42} \indexentry{How to create a single character string from multiple shorter strings?}{43} -\indexentry{How to trim leading and/or trailing white space in character strings?}{44} +\indexentry{How to trim leading and/or trailing whitespace in character strings?}{44} \indexentry{How to test if a vector contains no values other than \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{51} \indexentry{How to test if a vector contains one or more \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?}{52} \indexentry{How to access the last value in a vector?}{65} diff --git a/faqindex.ilg b/faqindex.ilg index 67bccf8c..0bb38cef 100644 --- a/faqindex.ilg +++ b/faqindex.ilg @@ -1,4 +1,4 @@ -This is makeindex, version 2.16 [MiKTeX 23.12]. +This is makeindex, version 2.16 [MiKTeX 24.1]. Scanning input file faqindex.idx....done (28 entries accepted, 0 rejected). Sorting entries....done (154 comparisons). Generating output file faqindex.ind....done (42 lines written, 0 warnings). diff --git a/faqindex.ind b/faqindex.ind index 7c26cb6d..6ea1ed53 100644 --- a/faqindex.ind +++ b/faqindex.ind @@ -34,7 +34,7 @@ 51 \item How to test if a vector contains one or more \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NA\vphantom {tp}}}} (or \texttt {\addfontfeature {Scale = 0.89}{\setlength {\fboxsep }{0.05pt}\colorbox {codeshadecolor}{NaN\vphantom {tp}}}}) values?, 52 - \item How to trim leading and/or trailing white space in character strings?, + \item How to trim leading and/or trailing whitespace in character strings?, 44 \item How to use an installed package?, 182 \item How to wrap long character strings?, 42 diff --git a/output/my-file.pdf b/output/my-file.pdf index 8cf0cb78..4641ac5b 100644 Binary files a/output/my-file.pdf and b/output/my-file.pdf differ diff --git a/preface.Rnw b/preface.Rnw index 1a141ce2..7c2f462b 100644 --- a/preface.Rnw +++ b/preface.Rnw @@ -7,7 +7,7 @@ Suppose that you want to teach the `cat' concept to a very young child. Do you e \end{VF} \noindent -Why the title ``\emph{Learn R: As a Language}''? This book is based on exploration and practice that aims at teaching how to express various operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, exposes the reader to current usage and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help readers grow to use \Rlang in this same way, i.e., to become fluent in \Rlang. The book is structured around the elements of natural languages like English with chapter titles that highlight the parallels between them and the \Rlang language. +Why did I choose ``\emph{Learn R: As a Language}'' as the title? This book is based on exploration and practice that aims at teaching how to express various operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, exposes the reader to current usage, and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help readers learn to use \Rlang in this same way, i.e., to become fluent in \Rlang. The book is structured around the elements of natural languages like English with chapter titles that highlight the parallels between them and the \Rlang language. \emph{Learn R: As a Language} is different from other books about \Rlang in that it emphasises the learning of the language itself, rather than how to use it to address specific data analysis tasks. My aim has been to enable readers to use \Rlang to implement original solutions to the data analysis and data visualisation tasks they encounter. The use of quantitative methods and data analysis has become more frequent in fields with limited long-term tradition in their use, like humanities, or, the complexity of the methods used has dramatically increased, like in Biology. Such trends can be expected to continue in the future. @@ -26,7 +26,7 @@ An additional change is in my view about packages \pkgnameNI{dplyr} and \pkgname In numbers, the page count has increased by 27\%, the number of figures from eight to twenty six plus nine in-text diagrams, and tables from none to seven. As for the design, text boxes have been replaced by call-outs marked with marginal bars. In addition, starting from version 2.0.0, the \pkgname{learnrbook} package supports the first and second editions of the book. It contains data, scripts, and all the code examples from both editions. It also helps with the installation of all the packages used in the book. The website at \url{https://www.learnr-book.info/} provides updated open-access content. \section*{Acknowledgements} -I thank Jaakko Heinonen for introducing me in the late 1990s to the then new \Rlang. Along the way many experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my research group, students, collaborators, authors of books and people I have met online or at conferences. They have made it possible for me to write this book. I am specially indebted to Dan Yavorsky, Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, Mat\v{e}j Rzehulka, Zuzana Svarna, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Shashi Kumar, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd efficiently helped with different aspects of this project. +I thank Jaakko Heinonen for introducing me in the late 1990s to the then new \Rlang. Along the way many experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my research group, students, collaborators, authors of books, and people I have met online or at conferences. They have made it possible for me to write this book. I am specially indebted to Dan Yavorsky, Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, Mat\v{e}j Rzehulka, Zuzana Svarna, colleagues, students, and anonymous reviewers for many very helpful comments on the draft manuscript and/or the first edition. Rob Calver, editor of both editions, provided advice and encouragement with great patience, Paul Boyd, Shashi Kumar, Ashraf Reza, Vaishali Singh, Lara Spieker, and Sherry Thomas efficiently helped with different aspects of this project. The writing of this second edition was helped by a six-month sabbatical granted by the Faculty of Biological and Environmental Sciences of the University of Helsinki, Finland. I thank Prof.\ Kurt Fagerstedt for his support. diff --git a/rbooks.bib b/rbooks.bib index d8f344cf..8565cf04 100644 --- a/rbooks.bib +++ b/rbooks.bib @@ -143,7 +143,7 @@ @book{Everitt2010 year = {2010} } @book{Everitt2011, -author = {Everitt, Brian and Hothorn, Torsten}, +author = {Everitt, Brian S. and Hothorn, Torsten}, isbn = {1441996494}, pages = {288}, publisher = {Springer}, diff --git a/rcatsidx.idx b/rcatsidx.idx index 2fb83c89..37d3a7da 100644 --- a/rcatsidx.idx +++ b/rcatsidx.idx @@ -238,6 +238,7 @@ \indexentry{classes and modes!logical@\texttt {logical}}{63} \indexentry{constant and special values!NA@\texttt {NA}}{63} \indexentry{constant and special values!NA@\texttt {NA}}{63} +\indexentry{operators![ ]@\texttt {[ ]}}{64} \indexentry{constant and special values!letters@\texttt {letters}}{64} \indexentry{constant and special values!LETTERS@\texttt {LETTERS}}{64} \indexentry{constant and special values!month.name@\texttt {month.name}}{64} @@ -973,6 +974,7 @@ \indexentry{functions and methods!update()@\texttt {update()}}{231} \indexentry{functions and methods!model.matrix()@\texttt {model.matrix()}}{231} \indexentry{classes and modes!"ts"@\texttt {"ts"}}{232} +\indexentry{classes and modes!character@\texttt {character}}{232} \indexentry{classes and modes!"ts"@\texttt {"ts"}}{232} \indexentry{functions and methods!ts()@\texttt {ts()}}{232} \indexentry{functions and methods!as.ts()@\texttt {as.ts()}}{232} @@ -1564,7 +1566,7 @@ \indexentry{functions and methods!readLines()@\texttt {readLines()}}{388} \indexentry{functions and methods!showNonASCIIfile()@\texttt {showNonASCIIfile()}}{390} \indexentry{functions and methods!showNonASCII()@\texttt {showNonASCII()}}{390} -\indexentry{functions and methods!read.csv@\texttt {read.csv}}{390} +\indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{390} \indexentry{functions and methods!read.csv()@\texttt {read.csv()}}{390} \indexentry{functions and methods!write.csv()@\texttt {write.csv()}}{390} \indexentry{functions and methods!read.csv2()@\texttt {read.csv2()}}{391} diff --git a/rcatsidx.ilg b/rcatsidx.ilg index 55e1000d..af8d6b9f 100644 --- a/rcatsidx.ilg +++ b/rcatsidx.ilg @@ -1,4 +1,4 @@ -This is makeindex, version 2.16 [MiKTeX 23.12]. +This is makeindex, version 2.16 [MiKTeX 24.1]. Scanning input file rcatsidx.idx.... !! Input index error (file = rcatsidx.idx, line = 163): -- Extra `!' at position 23 of first argument. @@ -12,24 +12,25 @@ Scanning input file rcatsidx.idx.... !! Input index error (file = rcatsidx.idx, line = 187): -- Extra `@' at position 12 of first argument. -!! Input index error (file = rcatsidx.idx, line = 532): +!! Input index error (file = rcatsidx.idx, line = 533): -- Extra `@' at position 13 of first argument. -!! Input index error (file = rcatsidx.idx, line = 975): - -- Incomplete first argument (premature LFD). !! Input index error (file = rcatsidx.idx, line = 976): -- Incomplete first argument (premature LFD). + +!! Input index error (file = rcatsidx.idx, line = 978): + -- Incomplete first argument (premature LFD). . -!! Input index error (file = rcatsidx.idx, line = 1083): +!! Input index error (file = rcatsidx.idx, line = 1085): -- Incomplete first argument (premature LFD). -!! Input index error (file = rcatsidx.idx, line = 1514): +!! Input index error (file = rcatsidx.idx, line = 1516): -- Extra `@' at position 12 of first argument. -!! Input index error (file = rcatsidx.idx, line = 1517): +!! Input index error (file = rcatsidx.idx, line = 1519): -- Extra `@' at position 12 of first argument. -done (1650 entries accepted, 10 rejected). -Sorting entries.................done (19846 comparisons). -Generating output file rcatsidx.ind.....done (668 lines written, 0 warnings). +done (1652 entries accepted, 10 rejected). +Sorting entries.................done (19568 comparisons). +Generating output file rcatsidx.ind.....done (667 lines written, 0 warnings). Output written in rcatsidx.ind. Transcript written in rcatsidx.ilg. diff --git a/rcatsidx.ind b/rcatsidx.ind index 18920eda..6e9b1c06 100644 --- a/rcatsidx.ind +++ b/rcatsidx.ind @@ -3,7 +3,7 @@ \item classes and modes \subitem \texttt {array}, 70, 108 \subitem \texttt {call}, 226 - \subitem \texttt {character}, 41, 45, 58, 62, 72 + \subitem \texttt {character}, 41, 45, 58, 62, 72, 232 \subitem \texttt {complex}, 39 \subitem \texttt {data.frame}, 94, 248, 395 \subitem \texttt {Date}, 268, 269 @@ -397,7 +397,6 @@ \subitem \texttt {rbind()}, 250 \subitem \texttt {rbinom()}, 189 \subitem \texttt {rchisq()}, 189 - \subitem \texttt {read.csv}, 390 \subitem \texttt {read.csv()}, 390--392, 394, 395 \subitem \texttt {read.csv2()}, 391, 392, 394 \subitem \texttt {read.fortran()}, 393, 396 @@ -644,7 +643,7 @@ \subitem \texttt {>}, 52 \subitem \texttt {>=}, 52 \subitem \texttt {[ , ]}, 245, 264 - \subitem \texttt {[ ]}, 29, 87, 88, 92, 98, 100, 102, 103, 105, + \subitem \texttt {[ ]}, 29, 64, 87, 88, 92, 98, 100, 102, 103, 105, 107--109, 114, 148, 162, 195, 205 \subitem \texttt {[[ ]]}, 88, 89, 92, 95, 97, 98, 102, 103, 114, 205, 208, 245 diff --git a/references.bib b/references.bib index 4a603b2f..12d701b0 100644 --- a/references.bib +++ b/references.bib @@ -472,8 +472,7 @@ @Article{Ram2019 number = {2}, pages = {59--65}, volume = {21}, - creationdate = {2023-09-28T17:27:54}, - date = {2019-03}, + date = {2019}, doi = {10.1109/mcse.2018.2882753}, journaltitle = {Computing in Science \& Engineering}, modificationdate = {2023-09-28T17:27:54}, diff --git a/rindex.idx b/rindex.idx index 18cb2668..2891d73a 100644 --- a/rindex.idx +++ b/rindex.idx @@ -238,6 +238,7 @@ \indexentry{logical@\texttt {logical}}{63} \indexentry{NA@\texttt {NA}}{63} \indexentry{NA@\texttt {NA}}{63} +\indexentry{[ ]@\texttt {[ ]}}{64} \indexentry{letters@\texttt {letters}}{64} \indexentry{LETTERS@\texttt {LETTERS}}{64} \indexentry{month.name@\texttt {month.name}}{64} @@ -973,6 +974,7 @@ \indexentry{update()@\texttt {update()}}{231} \indexentry{model.matrix()@\texttt {model.matrix()}}{231} \indexentry{"ts"@\texttt {"ts"}}{232} +\indexentry{character@\texttt {character}}{232} \indexentry{"ts"@\texttt {"ts"}}{232} \indexentry{ts()@\texttt {ts()}}{232} \indexentry{as.ts()@\texttt {as.ts()}}{232} @@ -1564,7 +1566,7 @@ \indexentry{readLines()@\texttt {readLines()}}{388} \indexentry{showNonASCIIfile()@\texttt {showNonASCIIfile()}}{390} \indexentry{showNonASCII()@\texttt {showNonASCII()}}{390} -\indexentry{read.csv@\texttt {read.csv}}{390} +\indexentry{read.csv()@\texttt {read.csv()}}{390} \indexentry{read.csv()@\texttt {read.csv()}}{390} \indexentry{write.csv()@\texttt {write.csv()}}{390} \indexentry{read.csv2()@\texttt {read.csv2()}}{391} diff --git a/rindex.ilg b/rindex.ilg index 75bfab8d..e08061e5 100644 --- a/rindex.ilg +++ b/rindex.ilg @@ -1,4 +1,4 @@ -This is makeindex, version 2.16 [MiKTeX 23.12]. +This is makeindex, version 2.16 [MiKTeX 24.1]. Scanning input file rindex.idx.... !! Input index error (file = rindex.idx, line = 163): -- Illegal null field. @@ -12,24 +12,25 @@ Scanning input file rindex.idx.... !! Input index error (file = rindex.idx, line = 187): -- Extra `@' at position 2 of first argument. -!! Input index error (file = rindex.idx, line = 532): +!! Input index error (file = rindex.idx, line = 533): -- Extra `@' at position 3 of first argument. -!! Input index error (file = rindex.idx, line = 975): - -- Incomplete first argument (premature LFD). !! Input index error (file = rindex.idx, line = 976): -- Incomplete first argument (premature LFD). + +!! Input index error (file = rindex.idx, line = 978): + -- Incomplete first argument (premature LFD). . -!! Input index error (file = rindex.idx, line = 1083): +!! Input index error (file = rindex.idx, line = 1085): -- Incomplete first argument (premature LFD). -!! Input index error (file = rindex.idx, line = 1514): +!! Input index error (file = rindex.idx, line = 1516): -- Extra `@' at position 2 of first argument. -!! Input index error (file = rindex.idx, line = 1517): +!! Input index error (file = rindex.idx, line = 1519): -- Extra `@' at position 2 of first argument. -done (1650 entries accepted, 10 rejected). -Sorting entries.................done (19710 comparisons). -Generating output file rindex.ind.....done (711 lines written, 0 warnings). +done (1652 entries accepted, 10 rejected). +Sorting entries................done (19386 comparisons). +Generating output file rindex.ind.....done (710 lines written, 0 warnings). Output written in rindex.ind. Transcript written in rindex.ilg. diff --git a/rindex.ind b/rindex.ind index bfc7d0f2..c6e2d8b4 100644 --- a/rindex.ind +++ b/rindex.ind @@ -22,7 +22,7 @@ \item \texttt {>}, 52 \item \texttt {>=}, 52 \item \texttt {[ , ]}, 245, 264 - \item \texttt {[ ]}, 29, 87, 88, 92, 98, 100, 102, 103, 105, + \item \texttt {[ ]}, 29, 64, 87, 88, 92, 98, 100, 102, 103, 105, 107--109, 114, 148, 162, 195, 205 \item \texttt {[[ ]]}, 88, 89, 92, 95, 97, 98, 102, 103, 114, 205, 208, 245 @@ -103,7 +103,7 @@ \item \texttt {cat()}, 42, 43, 394 \item \texttt {cbind()}, 97, 250 \item \texttt {ceiling()}, 39 - \item \texttt {character}, 41, 45, 58, 62, 72 + \item \texttt {character}, 41, 45, 58, 62, 72, 232 \item \texttt {charmatch()}, 57 \item \texttt {citation()}, 182 \item \texttt {class()}, 59, 95, 197, 250, 406 @@ -458,7 +458,6 @@ \item \texttt {rbind()}, 250 \item \texttt {rbinom()}, 189 \item \texttt {rchisq()}, 189 - \item \texttt {read.csv}, 390 \item \texttt {read.csv()}, 390--392, 394, 395 \item \texttt {read.csv2()}, 391, 392, 394 \item \texttt {read.fortran()}, 393, 396 diff --git a/using-r-main-crc.Rnw b/using-r-main-crc.Rnw index 5431cd38..e9b71027 100644 --- a/using-r-main-crc.Rnw +++ b/using-r-main-crc.Rnw @@ -177,7 +177,7 @@ other_diag() \maketitle -\newpage +\cleardoublepage \setcounter{page}{5} %previous pages will be reserved for frontmatter to be added in later. \tableofcontents diff --git a/using-r-main-crc.idx b/using-r-main-crc.idx index 0984a2b9..57f8fa50 100644 --- a/using-r-main-crc.idx +++ b/using-r-main-crc.idx @@ -39,11 +39,11 @@ \indexentry{FORTRAN@\textsf {FORTRAN}}{10} \indexentry{languages!FORTRAN@\textsf {FORTRAN}}{10} \indexentry{R as a language@{\Rlang as a language}}{10} -\indexentry{R as a program@{\Rlang as a program}}{10} +\indexentry{R as a program@{\Rpgrm as a program}}{10} \indexentry{SAS@\textsf {SAS}}{10} \indexentry{programmes!SAS@\textsf {SAS}}{10} -\indexentry{SPPS@\textsf {SPPS}}{10} -\indexentry{programmes!SPPS@\textsf {SPPS}}{10} +\indexentry{SPSS@\textsf {SPSS}}{10} +\indexentry{programmes!SPSS@\textsf {SPSS}}{10} \indexentry{S@\textsf {S}}{10} \indexentry{languages!S@\textsf {S}}{10} \indexentry{S@\textsf {S}}{10} @@ -514,8 +514,8 @@ \indexentry{languages!Markdown@\textsf {Markdown}}{130} \indexentry{Latex@{\LaTeX }}{130} \indexentry{languages!Latex@{\LaTeX }}{130} -\indexentry{Rmarkdown@\textsf {Rmarkdown}}{130} -\indexentry{languages!Rmarkdown@\textsf {Rmarkdown}}{130} +\indexentry{R markdown@\textsf {R markdown}}{130} +\indexentry{languages!R markdown@\textsf {R markdown}}{130} \indexentry{Markdown@\textsf {Markdown}}{130} \indexentry{languages!Markdown@\textsf {Markdown}}{130} \indexentry{bookdown@\textsf {`bookdown'}}{130} @@ -1187,7 +1187,7 @@ \indexentry{grammar of graphics!structure of plot objects|)}{288} \indexentry{grammar of graphics!plots as R objects|)}{288} \indexentry{grammar of graphics!mapping of data|(}{288} -\indexentry{grammar of graphics!aesthetics(}{288} +\indexentry{grammar of graphics!aesthetics|(}{288} \indexentry{ggplot2@\textsf {`ggplot2'}}{288} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{288} \indexentry{ggplot2@\textsf {`ggplot2'}}{288} @@ -1204,7 +1204,7 @@ \indexentry{ggplot2@\textsf {`ggplot2'}}{292} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{292} \indexentry{grammar of graphics!mapping of data|)}{294} -\indexentry{grammar of graphics!aesthetics)}{294} +\indexentry{grammar of graphics!aesthetics|)}{294} \indexentry{grammar of graphics!geometries|(}{294} \indexentry{ggplot2@\textsf {`ggplot2'}}{294} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{294} @@ -1716,7 +1716,7 @@ \indexentry{languages!FORTRAN@\textsf {FORTRAN}}{393} \indexentry{importing data!text files|)}{394} \indexentry{exporting data!text files|(}{394} -\indexentry{exporting data!text files|)}{394} +\indexentry{exporting data!text files|)}{395} \indexentry{readr@\textsf {`readr'}}{395} \indexentry{packages!readr@\textsf {`readr'}}{395} \indexentry{importing data!text files|(}{395} @@ -1745,8 +1745,8 @@ \indexentry{packages!readr@\textsf {`readr'}}{396} \indexentry{readr@\textsf {`readr'}}{396} \indexentry{packages!readr@\textsf {`readr'}}{396} -\indexentry{utils@\textsf {`utils'}}{396} -\indexentry{packages!utils@\textsf {`utils'}}{396} +\indexentry{utils@\textsf {`utils'}}{397} +\indexentry{packages!utils@\textsf {`utils'}}{397} \indexentry{importing data!text files|)}{397} \indexentry{exporting data!text files|(}{397} \indexentry{readr@\textsf {`readr'}}{397} diff --git a/using-r-main-crc.ilg b/using-r-main-crc.ilg index deaa35bb..dc49d64b 100644 --- a/using-r-main-crc.ilg +++ b/using-r-main-crc.ilg @@ -1,18 +1,18 @@ -This is makeindex, version 2.16 [MiKTeX 23.12]. +This is makeindex, version 2.16 [MiKTeX 24.1]. Scanning input file using-r-main-crc.idx......done (2002 entries accepted, 0 rejected). -Sorting entries....................done (24994 comparisons). +Sorting entries....................done (24948 comparisons). Generating output file using-r-main-crc.ind.... ## Warning (input = using-r-main-crc.idx, line = 486; output = using-r-main-crc.ind, line = 91): -- Unmatched range closing operator ). -## Warning (input = using-r-main-crc.idx, line = 590; output = using-r-main-crc.ind, line = 408): +## Warning (input = using-r-main-crc.idx, line = 590; output = using-r-main-crc.ind, line = 406): -- Unmatched range closing operator ). -## Warning (input = using-r-main-crc.idx, line = 594; output = using-r-main-crc.ind, line = 408): +## Warning (input = using-r-main-crc.idx, line = 594; output = using-r-main-crc.ind, line = 406): -- Unmatched range opening operator (. -## Warning (input = using-r-main-crc.idx, line = 393; output = using-r-main-crc.ind, line = 428): +## Warning (input = using-r-main-crc.idx, line = 393; output = using-r-main-crc.ind, line = 426): -- Unmatched range opening operator (. -.done (899 lines written, 4 warnings). +.done (893 lines written, 4 warnings). Output written in using-r-main-crc.ind. Transcript written in using-r-main-crc.ilg. diff --git a/using-r-main-crc.ind b/using-r-main-crc.ind index 8c5ecfda..4858b611 100644 --- a/using-r-main-crc.ind +++ b/using-r-main-crc.ind @@ -133,7 +133,7 @@ \item EPS ($\epsilon$), \see{machine arithmetic precision}{35} \item \textsf {Excel}, 400 \item exporting data - \subitem text files, 394, 397--398 + \subitem text files, 394--395, 397--398 \item extensions to R, 179 \item \textsf {`extrafont'}, 308 @@ -231,8 +231,7 @@ \item GLM, \see{generalised linear models}{217} \item \textsf {`gpmisc'}, 314 \item grammar of graphics, 273, 377 - \subitem aesthetics(, 288 - \subitem aesthetics), 294 + \subitem aesthetics, 288--294 \subitem annotations, 359--361 \subitem binned scales, 357--358 \subitem cartesian coordinates, 274, 283 @@ -363,7 +362,6 @@ \subitem \textsf {Perl}, 46 \subitem \textsf {Python}, 10, 13, 406, 414 \subitem \textsf {R markdown}, 20, 130 - \subitem \textsf {Rmarkdown}, 130 \subitem \textsf {S}, 10, 22, 210, 257, 335 \subitem \textsf {S-Plus}, 10 \subitem \textsf {XHTML}, 398 @@ -716,7 +714,6 @@ \subitem \textsf {RTools}, 181 \subitem \textsf {SAS}, 10, 210, 404, 405 \subitem \textsf {sh}, 134 - \subitem \textsf {SPPS}, 10 \subitem \textsf {SPSS}, 10, 210, 404, 405 \subitem \textsf {SQLite}, 412 \subitem \textsf {Stata}, 404, 405 @@ -736,8 +733,7 @@ \indexspace \item {\Rlang as a language}, 10 - \item {\Rlang as a program}, 10 - \item {\Rpgrm as a program}, 11 + \item {\Rpgrm as a program}, 10, 11 \item \textsf {R markdown}, 20, 130 \item random draws, \see{probability distributions, pseudo-random draws}{192} @@ -762,7 +758,6 @@ \item reshaping tibbles, 256--259 \item \textsf {`reticulate'}, 414 \item \textsf {RGUI}, 17, 180 - \item \textsf {Rmarkdown}, 130 \item \textsf {`RNetCDF'}, 406, 411 \item rOpenScience, 180 \item row-wise operations on data, 259--262 @@ -799,7 +794,6 @@ \item special values \subitem NA, 33 \subitem NaN, 33 - \item \textsf {SPPS}, 10 \item \textsf {SPSS}, 10, 210, 404, 405 \item \textsf {SQLite}, 412 \item \textsf {StackOverflow}, xvii, 7 diff --git a/using-r-main-crc.log b/using-r-main-crc.log index 72383a6b..5afdbde7 100644 --- a/using-r-main-crc.log +++ b/using-r-main-crc.log @@ -1,11 +1,11 @@ -This is XeTeX, Version 3.141592653-2.6-0.999995 (MiKTeX 23.12) (preloaded format=xelatex 2024.1.2) 24 JAN 2024 20:59 +This is XeTeX, Version 3.141592653-2.6-0.999995 (MiKTeX 24.1) (preloaded format=xelatex 2024.2.14) 14 FEB 2024 20:19 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **./using-r-main-crc.tex (using-r-main-crc.tex -LaTeX2e <2023-11-01> -L3 programming layer <2023-12-11> +LaTeX2e <2023-11-01> patch level 1 +L3 programming layer <2024-01-22> (krantz.cls Document Class: krantz 2005/09/16 v1.4f Standard LaTeX document class (C:\Program Files\MiKTeX\tex/latex/base\bk10.clo @@ -243,7 +243,7 @@ Package: pdfbase 2022/08/04 v0.55 driver independent access to low-level PDF fe atures (C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-xetex.def -File: l3backend-xetex.def 2023-11-09 L3 backend support: XeTeX +File: l3backend-xetex.def 2024-01-04 L3 backend support: XeTeX \g__graphics_track_int=\count270 \l__pdf_internal_box=\box76 \g__pdf_backend_object_int=\count271 @@ -541,10 +541,10 @@ Package biblatex Info: XeTeX detected. (biblatex) Assuming input encoding 'utf8'. Package biblatex Info: Document encoding is UTF8 .... (C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty -Package: expl3 2023-12-11 L3 programming layer (loader) +Package: expl3 2024-01-22 L3 programming layer (loader) ) Package biblatex Info: ... and expl3 -(biblatex) 2023-12-11 L3 programming layer (loader) +(biblatex) 2024-01-22 L3 programming layer (loader) (biblatex) is new enough (at least 2020/04/06), (biblatex) setting 'casechanger=expl3'. @@ -555,7 +555,7 @@ Package: xparse 2023-10-10 L3 Experimental document command parser Package: blx-case-expl3 2023/03/05 v3.19 expl3 case changing code for biblatex )) (C:\Program Files\MiKTeX\tex/generic/babel\babel.sty -Package: babel 2023/12/10 v3.99 The Babel package +Package: babel 2024/01/07 v24.1 The Babel package \babel@savecnt=\count417 \U@D=\dimen173 \l@unhyphenated=\language80 @@ -1790,6 +1790,45 @@ Underfull \hbox (badness 10000) has occurred while \output is active +] +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \vbox (badness 10000) has occurred while \output is active [] + + +Overfull \hbox (395.75pt too wide) has occurred while \output is active +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[2 + ] Underfull \vbox (badness 10000) detected at line 132 [] @@ -3957,6 +3996,10 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [64] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [65] @@ -4760,7 +4803,11 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [107] +ec) +Underfull \vbox (badness 1910) detected at line 8157 + [] + +[107] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -5376,6 +5423,8 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [134] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -6633,44 +6682,44 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [168] -Underfull \vbox (badness 10000) detected at line 11675 +Underfull \vbox (badness 10000) detected at line 11674 [] -Overfull \hbox (395.75pt too wide) detected at line 11675 +Overfull \hbox (395.75pt too wide) detected at line 11674 [] [] -Underfull \vbox (badness 10000) detected at line 11675 +Underfull \vbox (badness 10000) detected at line 11674 [] -Overfull \hbox (395.75pt too wide) detected at line 11675 +Overfull \hbox (395.75pt too wide) detected at line 11674 [] [] -Underfull \vbox (badness 10000) detected at line 11675 +Underfull \vbox (badness 10000) detected at line 11674 [] -Overfull \hbox (395.75pt too wide) detected at line 11675 +Overfull \hbox (395.75pt too wide) detected at line 11674 [] [] -Underfull \vbox (badness 10000) detected at line 11675 +Underfull \vbox (badness 10000) detected at line 11674 [] -Overfull \hbox (395.75pt too wide) detected at line 11675 +Overfull \hbox (395.75pt too wide) detected at line 11674 [] [] Chapter 6. -Overfull \hbox (30.0pt too wide) in paragraph at lines 11681--11681 +Overfull \hbox (30.0pt too wide) in paragraph at lines 11680--11680 | [] @@ -6979,7 +7028,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) in paragraph at lines 12483--12484 +Underfull \hbox (badness 10000) in paragraph at lines 12481--12482 \TU/LucidaBrightOT(7)/m/n/10 Function [][][][][][][][][] returns the version as an object of class [] @@ -7003,7 +7052,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 1286) detected at line 12593 +Underfull \vbox (badness 1286) detected at line 12591 [] [184] @@ -7015,44 +7064,44 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [185] [186] -Underfull \vbox (badness 10000) detected at line 12676 +Underfull \vbox (badness 10000) detected at line 12674 [] -Overfull \hbox (395.75pt too wide) detected at line 12676 +Overfull \hbox (395.75pt too wide) detected at line 12674 [] [] -Underfull \vbox (badness 10000) detected at line 12676 +Underfull \vbox (badness 10000) detected at line 12674 [] -Overfull \hbox (395.75pt too wide) detected at line 12676 +Overfull \hbox (395.75pt too wide) detected at line 12674 [] [] -Underfull \vbox (badness 10000) detected at line 12676 +Underfull \vbox (badness 10000) detected at line 12674 [] -Overfull \hbox (395.75pt too wide) detected at line 12676 +Overfull \hbox (395.75pt too wide) detected at line 12674 [] [] -Underfull \vbox (badness 10000) detected at line 12676 +Underfull \vbox (badness 10000) detected at line 12674 [] -Overfull \hbox (395.75pt too wide) detected at line 12676 +Overfull \hbox (395.75pt too wide) detected at line 12674 [] [] Chapter 7. -Overfull \hbox (30.0pt too wide) in paragraph at lines 12682--12682 +Overfull \hbox (30.0pt too wide) in paragraph at lines 12680--12680 | [] @@ -7293,7 +7342,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -LaTeX Font Info: Calculating math sizes for size <11> on input line 13130. +LaTeX Font Info: Calculating math sizes for size <11> on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(1)/m/n/11'. (microtype) Ignoring protrusion settings for this character. @@ -7304,32 +7353,32 @@ Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(1)/m/n/5.5'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 11.00117pt on input line 13130. +(Font) scaled to size 11.00117pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(2)/m/n/11'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 7.70078pt on input line 13130. +(Font) scaled to size 7.70078pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(2)/m/n/7.69997'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 5.50058pt on input line 13130. +(Font) scaled to size 5.50058pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(2)/m/n/5.5'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 10.99883pt on input line 13130. +(Font) scaled to size 10.99883pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(3)/m/n/11'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 7.69914pt on input line 13130. +(Font) scaled to size 7.69914pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(3)/m/n/7.69997'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 5.4994pt on input line 13130. +(Font) scaled to size 5.4994pt on input line 13128. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(3)/m/n/5.5'. (microtype) Ignoring protrusion settings for this character. @@ -7392,12 +7441,12 @@ Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(1)/m/n/12'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be -(Font) scaled to size 12.00128pt on input line 13265. +(Font) scaled to size 12.00128pt on input line 13263. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(2)/m/n/12'. (microtype) Ignoring protrusion settings for this character. LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be -(Font) scaled to size 11.99872pt on input line 13265. +(Font) scaled to size 11.99872pt on input line 13263. Package microtype Info: Character `\AE ' is missing (microtype) in font `\TU/LucidaBrightMathOT(3)/m/n/12'. (microtype) Ignoring protrusion settings for this character. @@ -7436,7 +7485,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (66.62311pt too wide) in paragraph at lines 13340--13340 +Overfull \hbox (66.62311pt too wide) in paragraph at lines 13338--13338 []\TU/LucidaConsoleDK(0)/m/n/8 ## alternative hypothesis: true difference in me ans between group A and group B is not equal to 0[] [] @@ -7444,7 +7493,7 @@ ans between group A and group B is not equal to 0[] [198] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (66.62311pt too wide) in paragraph at lines 13364--13364 +Overfull \hbox (66.62311pt too wide) in paragraph at lines 13362--13362 []\TU/LucidaConsoleDK(0)/m/n/8 ## alternative hypothesis: true difference in me ans between group A and group B is not equal to 0[] [] @@ -7479,7 +7528,7 @@ ec) LaTeX Font Info: Font shape `TU/LucidaBrightOT(7)/m/sl' in size <10> not ava ilable (Font) Font shape `TU/LucidaBrightOT(7)/m/it' tried instead on inp -ut line 13417. +ut line 13415. (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -7636,7 +7685,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \vbox (1.23555pt too high) detected at line 13668 +Overfull \vbox (1.23555pt too high) detected at line 13666 [] [204] @@ -7682,7 +7731,7 @@ ec) ec) [205] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (6.19205pt too wide) in paragraph at lines 13806--13806 +Overfull \hbox (6.19205pt too wide) in paragraph at lines 13804--13804 []\TU/LucidaConsoleDK(0)/m/n/8 ## - attr(*, "heading")= chr [1:2] "Analysis of Variance Table\n" "Response: dist"[] [] @@ -7698,7 +7747,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 2478) detected at line 13847 +Underfull \vbox (badness 2478) detected at line 13845 [] [206] @@ -7726,7 +7775,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1478) in paragraph at lines 13860--13861 +Underfull \hbox (badness 1478) in paragraph at lines 13858--13859 \TU/LucidaBrightOT(7)/m/n/10 for linear models (using [][][][][][]). Explore th e difference between [] @@ -7821,7 +7870,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (60.22102pt too wide) in paragraph at lines 14102--14102 +Overfull \hbox (60.22102pt too wide) in paragraph at lines 14100--14100 []\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra ys, contrasts = list(spray = contr.treatment))[] [] @@ -7831,17 +7880,17 @@ ys, contrasts = list(spray = contr.treatment))[] ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (29.82973pt too wide) in paragraph at lines 14153--14153 +Overfull \hbox (29.82973pt too wide) in paragraph at lines 14151--14151 []\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra ys, contrasts = list(spray = contr.sum))[] [] [210] -Underfull \vbox (badness 10000) detected at line 14157 +Underfull \vbox (badness 10000) detected at line 14155 [] -Underfull \vbox (badness 10000) detected at line 14157 +Underfull \vbox (badness 10000) detected at line 14155 [] [211] @@ -8094,7 +8143,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1902) in paragraph at lines 14699--14700 +Underfull \hbox (badness 1902) in paragraph at lines 14697--14698 \TU/LucidaBrightOT(7)/m/n/10 provides a mechanism for packaging the \TU/LucidaS ansOT(0)/m/n/10 R \TU/LucidaBrightOT(7)/m/n/10 function to be fitted together [] @@ -8120,7 +8169,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 6032) detected at line 14829 +Underfull \vbox (badness 6032) detected at line 14827 [] [222] @@ -8249,7 +8298,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 1424) detected at line 15165 +Underfull \vbox (badness 1424) detected at line 15163 [] [227] @@ -8338,6 +8387,8 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [232] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -8464,44 +8515,44 @@ File: figure/pos-cluster-02-1.pdf Graphic file (type pdf) ec) [240] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [241] [242] -Underfull \vbox (badness 10000) detected at line 16000 +Underfull \vbox (badness 10000) detected at line 15998 [] -Overfull \hbox (395.75pt too wide) detected at line 16000 +Overfull \hbox (395.75pt too wide) detected at line 15998 [] [] -Underfull \vbox (badness 10000) detected at line 16000 +Underfull \vbox (badness 10000) detected at line 15998 [] -Overfull \hbox (395.75pt too wide) detected at line 16000 +Overfull \hbox (395.75pt too wide) detected at line 15998 [] [] -Underfull \vbox (badness 10000) detected at line 16000 +Underfull \vbox (badness 10000) detected at line 15998 [] -Overfull \hbox (395.75pt too wide) detected at line 16000 +Overfull \hbox (395.75pt too wide) detected at line 15998 [] [] -Underfull \vbox (badness 10000) detected at line 16000 +Underfull \vbox (badness 10000) detected at line 15998 [] -Overfull \hbox (395.75pt too wide) detected at line 16000 +Overfull \hbox (395.75pt too wide) detected at line 15998 [] [] Chapter 8. -Overfull \hbox (30.0pt too wide) in paragraph at lines 16006--16006 +Overfull \hbox (30.0pt too wide) in paragraph at lines 16004--16004 | [] @@ -8525,12 +8576,12 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [245] LaTeX Font Info: Font shape `TU/LucidaConsoleDK(0)/b/n' will be -(Font) scaled to size 12.60004pt on input line 16082. +(Font) scaled to size 12.60004pt on input line 16080. (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be -(Font) scaled to size 10.68pt on input line 16082. +(Font) scaled to size 10.68pt on input line 16080. [246] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -8555,7 +8606,7 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/it' will be -(Font) scaled to size 8.9pt on input line 16102. +(Font) scaled to size 8.9pt on input line 16100. (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -8627,11 +8678,11 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [250] -Underfull \vbox (badness 1215) detected at line 16449 +Underfull \vbox (badness 1215) detected at line 16447 [] -Underfull \vbox (badness 1215) detected at line 16449 +Underfull \vbox (badness 1215) detected at line 16447 [] [251] @@ -8761,17 +8812,17 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [256] -Underfull \hbox (badness 10000) in paragraph at lines 16791--16791 +Underfull \hbox (badness 10000) in paragraph at lines 16789--16789 []\TU/LucidaBrightOT(0)/m/n/8 Height [] -Underfull \hbox (badness 10000) in paragraph at lines 16791--16791 +Underfull \hbox (badness 10000) in paragraph at lines 16789--16789 []\TU/LucidaBrightOT(0)/m/n/8 Height [] -Underfull \hbox (badness 10000) in paragraph at lines 16791--16791 +Underfull \hbox (badness 10000) in paragraph at lines 16789--16789 []\TU/LucidaBrightOT(0)/m/n/8 Height [] @@ -8836,7 +8887,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 2772) detected at line 16959 +Underfull \vbox (badness 2772) detected at line 16957 [] [259] @@ -9064,50 +9115,50 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [270] -Underfull \vbox (badness 10000) detected at line 17848 +Underfull \vbox (badness 10000) detected at line 17846 [] -Overfull \hbox (395.75pt too wide) detected at line 17848 +Overfull \hbox (395.75pt too wide) detected at line 17846 [] [] -Underfull \vbox (badness 10000) detected at line 17848 +Underfull \vbox (badness 10000) detected at line 17846 [] -Overfull \hbox (395.75pt too wide) detected at line 17848 +Overfull \hbox (395.75pt too wide) detected at line 17846 [] [] -Underfull \vbox (badness 10000) detected at line 17848 +Underfull \vbox (badness 10000) detected at line 17846 [] -Overfull \hbox (395.75pt too wide) detected at line 17848 +Overfull \hbox (395.75pt too wide) detected at line 17846 [] [] -Underfull \vbox (badness 10000) detected at line 17848 +Underfull \vbox (badness 10000) detected at line 17846 [] -Overfull \hbox (395.75pt too wide) detected at line 17848 +Overfull \hbox (395.75pt too wide) detected at line 17846 [] [] Chapter 9. -Underfull \hbox (badness 2564) in paragraph at lines 17850--17852 +Underfull \hbox (badness 2564) in paragraph at lines 17848--17850 \TU/LucidaBrightOT(7)/m/n/10 The commonality between science and art is in try ing to see [] -Overfull \hbox (30.0pt too wide) in paragraph at lines 17854--17854 +Overfull \hbox (30.0pt too wide) in paragraph at lines 17852--17852 | [] @@ -9408,7 +9459,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 2486) detected at line 18463 +Underfull \vbox (badness 2486) detected at line 18461 [] [287] @@ -9689,7 +9740,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (0.90239pt too wide) in paragraph at lines 18777--18811 +Overfull \hbox (0.90239pt too wide) in paragraph at lines 18775--18809 [] [] @@ -9857,7 +9908,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1383) in paragraph at lines 19038--19039 +Underfull \hbox (badness 1383) in paragraph at lines 19036--19037 \TU/LucidaBrightOT(7)/b/n/10 Line plots \TU/LucidaBrightOT(7)/m/n/10 are normal ly created using [][][][][][][][][], and, occasionally using [] @@ -9895,7 +9946,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1337) in paragraph at lines 19085--19086 +Underfull \hbox (badness 1337) in paragraph at lines 19083--19084 [][][][][][] []\TU/LucidaBrightOT(7)/b/n/10 9.7[] \TU/LucidaBrightOT(7)/m/n/10 Using the following toy data, make three plots using [][][][][][], [] @@ -9950,7 +10001,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1354) in paragraph at lines 19124--19125 +Underfull \hbox (badness 1354) in paragraph at lines 19122--19123 [][][][][][][][][][] \TU/LucidaBrightOT(7)/m/n/10 and [][][][][][][][][] requir e a single parameter (or aesthetic), [] @@ -10039,7 +10090,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1009) in paragraph at lines 19220--19221 +Underfull \hbox (badness 1009) in paragraph at lines 19218--19219 []\TU/LucidaBrightOT(7)/m/n/10 Using [][][][][][][] to override the default [][ ][][][][] the [] @@ -10595,7 +10646,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1400) in paragraph at lines 19949--19950 +Underfull \hbox (badness 1400) in paragraph at lines 19947--19948 []\TU/LucidaBrightOT(7)/m/n/10 Below, is code for a similar plot, with means hi ghlighted in red, using [] @@ -10643,7 +10694,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1466) in paragraph at lines 20020--20021 +Underfull \hbox (badness 1466) in paragraph at lines 20018--20019 []\TU/LucidaBrightOT(7)/m/n/10 Passing [][][][][][] instead of [][][][][][] to [][][][][][] results in traditional [] @@ -10753,7 +10804,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 10000) detected at line 20166 +Underfull \vbox (badness 10000) detected at line 20164 [] [322] @@ -10924,14 +10975,14 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1648) in paragraph at lines 20489--20490 +Underfull \hbox (badness 1648) in paragraph at lines 20487--20488 []\TU/LucidaBrightOT(7)/m/n/10 As with other \TU/LucidaBrightOT(7)/m/it/10 stat istics\TU/LucidaBrightOT(7)/m/n/10 , their appearance obeys both \TU/LucidaBrig htOT(7)/m/it/10 aesthetics \TU/LucidaBrightOT(7)/m/n/10 such as [] -Underfull \hbox (badness 1264) in paragraph at lines 20489--20490 +Underfull \hbox (badness 1264) in paragraph at lines 20487--20488 [][][][][][]\TU/LucidaBrightOT(7)/m/n/10 , and parameters specific to box plots : [][][][][][], [][][][][][], [] @@ -10999,7 +11050,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) in paragraph at lines 20632--20633 +Underfull \hbox (badness 10000) in paragraph at lines 20630--20631 []\TU/LucidaBrightOT(7)/m/n/10 The next pair of examples demonstrates automatic flipping using [] @@ -11045,7 +11096,7 @@ ec) File: figure/pos-flipping-06a-ggplot-1.pdf Graphic file (type pdf) -Underfull \vbox (badness 10000) detected at line 20778 +Underfull \vbox (badness 10000) detected at line 20776 [] [333] @@ -11253,7 +11304,7 @@ ec) File: figure/pos-facets-12-1.pdf Graphic file (type pdf) -Underfull \vbox (badness 10000) detected at line 21017 +Underfull \vbox (badness 10000) detected at line 21015 [] [338] @@ -11385,26 +11436,26 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 2503) in paragraph at lines 21167--21168 +Underfull \hbox (badness 2503) in paragraph at lines 21165--21166 []\TU/LucidaBrightOT(9)/m/n/10 The most direct mapping to data is [][][][][][], with the values in the [] -Underfull \hbox (badness 1521) in paragraph at lines 21167--21168 +Underfull \hbox (badness 1521) in paragraph at lines 21165--21166 \TU/LucidaBrightOT(9)/m/n/10 mapped variable directly interpreted as aesthetic values. In a colour scale, [] -Underfull \hbox (badness 2990) in paragraph at lines 21167--21168 +Underfull \hbox (badness 2990) in paragraph at lines 21165--21166 \TU/LucidaBrightOT(9)/m/n/10 values such as [][][][][][], [][][][][][]—i.e., va lid \TU/LucidaSansOT(0)/m/n/10 R \TU/LucidaBrightOT(9)/m/n/10 colours. In a sim ple mapping [] -Underfull \hbox (badness 1484) in paragraph at lines 21167--21168 +Underfull \hbox (badness 1484) in paragraph at lines 21165--21166 \TU/LucidaBrightOT(9)/m/n/10 using [][][][][][][][][] levels of a factor, such as [][][][][][] and [] @@ -11701,7 +11752,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1253) in paragraph at lines 21535--21536 +Underfull \hbox (badness 1253) in paragraph at lines 21533--21534 [][][][][][] \TU/LucidaBrightOT(9)/m/n/10 Consistently with maths functions in \TU/LucidaSansOT(0)/m/n/10 R\TU/LucidaBrightOT(9)/m/n/10 , the names of the sc ales are @@ -11798,7 +11849,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 3942) in paragraph at lines 21728--21729 +Underfull \hbox (badness 3942) in paragraph at lines 21726--21727 []\TU/LucidaBrightOT(9)/m/n/10 In \TU/LucidaBrightOT(9)/m/it/10 date \TU/Lucida BrightOT(9)/m/n/10 scales tick labels are created with functions [][][][][][][] [][] or @@ -11858,32 +11909,32 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 2932) in paragraph at lines 21796--21797 +Underfull \hbox (badness 2932) in paragraph at lines 21794--21795 \TU/LucidaBrightOT(9)/m/n/10 For the [][][][][][] \TU/LucidaBrightOT(9)/m/it/10 aesthetic\TU/LucidaBrightOT(9)/m/n/10 , several scales are available, discrete , ordinal, con- [] -Underfull \hbox (badness 4291) in paragraph at lines 21796--21797 +Underfull \hbox (badness 4291) in paragraph at lines 21794--21795 \TU/LucidaBrightOT(9)/m/n/10 tinuous and binned. They are similar to those alre ady described above. [] -Underfull \hbox (badness 1521) in paragraph at lines 21796--21797 +Underfull \hbox (badness 1521) in paragraph at lines 21794--21795 \TU/LucidaBrightOT(9)/m/n/10 Geometries [][][][][][][][][], [][][][][][][][][] and [][][][][][][][][] obey the [][][][][][] aes- [] -Underfull \hbox (badness 1655) in paragraph at lines 21796--21797 +Underfull \hbox (badness 1655) in paragraph at lines 21794--21795 \TU/LucidaBrightOT(9)/m/n/10 thetic as expected. Size scales can be used with c ontinuous numeric vari- [] -Underfull \hbox (badness 1117) in paragraph at lines 21796--21797 +Underfull \hbox (badness 1117) in paragraph at lines 21794--21795 \TU/LucidaBrightOT(9)/m/n/10 ables, date and times, and with discrete variables . Examples of the use of [] @@ -12025,7 +12076,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) in paragraph at lines 21951--21953 +Underfull \hbox (badness 10000) in paragraph at lines 21949--21951 \TU/LucidaBrightOT(9)/m/n/10 Colour scales [][][][][][][][][], [][][][][][][][] [], [] @@ -12085,14 +12136,14 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 2961) in paragraph at lines 22033--22035 +Underfull \hbox (badness 2961) in paragraph at lines 22031--22033 \TU/LucidaBrightOT(9)/m/n/10 ‘\TU/LucidaSansOT(0)/m/n/10 ggplot2\TU/LucidaBrigh tOT(9)/m/n/10 ’[][] can be changed through \TU/LucidaSansOT(0)/m/n/10 R \TU/Luc idaBrightOT(9)/m/n/10 options [][][][][][], [] -Underfull \hbox (badness 10000) in paragraph at lines 22033--22035 +Underfull \hbox (badness 10000) in paragraph at lines 22031--22033 [][][][][][]\TU/LucidaBrightOT(9)/m/n/10 , [][][][][][], [] @@ -12138,7 +12189,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (24.41295pt too wide) in paragraph at lines 22084--22084 +Overfull \hbox (24.41295pt too wide) in paragraph at lines 22082--22082 [] []\TU/LucidaConsoleDK(0)/b/n/8 annotation_custom[][]\TU/LucidaConsoleDK(0)/ m/n/8 ([][]\TU/LucidaConsoleDK(0)/b/n/8 ggplotGrob[][]\TU/LucidaConsoleDK(0)/m/ n/8 (p[] []+[] []\TU/LucidaConsoleDK(0)/b/n/8 coord_cartesian[][]\TU/LucidaCons @@ -12157,24 +12208,24 @@ ec) [360] ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) in paragraph at lines 22100--22101 +Underfull \hbox (badness 10000) in paragraph at lines 22098--22099 []\TU/LucidaBrightOT(9)/m/n/10 In the next example, expressions are used as ann otations as [] -Underfull \hbox (badness 10000) in paragraph at lines 22100--22101 +Underfull \hbox (badness 10000) in paragraph at lines 22098--22099 \TU/LucidaBrightOT(9)/m/n/10 well as for tick labels. Do notice that we use rec ycling for set- [] -Underfull \hbox (badness 10000) in paragraph at lines 22100--22101 +Underfull \hbox (badness 10000) in paragraph at lines 22098--22099 \TU/LucidaBrightOT(9)/m/n/10 ting the breaks, as [][][][][][] is equivalent to [] -Underfull \hbox (badness 1910) in paragraph at lines 22100--22101 +Underfull \hbox (badness 1910) in paragraph at lines 22098--22099 [][][][][][]\TU/LucidaBrightOT(9)/m/n/10 . Annotations are plotted at their own [] @@ -12284,25 +12335,25 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 6808) in paragraph at lines 22289--22290 +Underfull \hbox (badness 6808) in paragraph at lines 22287--22288 [][][][][][] \TU/LucidaBrightOT(9)/m/n/10 Predefined “themes” like [][][][][][ ][][][] are, in reality, not themes [] -Underfull \hbox (badness 4132) in paragraph at lines 22289--22290 +Underfull \hbox (badness 4132) in paragraph at lines 22287--22288 \TU/LucidaBrightOT(9)/m/n/10 but instead are constructors of theme objects. The \TU/LucidaBrightOT(9)/m/it/10 themes \TU/LucidaBrightOT(9)/m/n/10 they return [] -Underfull \hbox (badness 6016) in paragraph at lines 22289--22290 +Underfull \hbox (badness 6016) in paragraph at lines 22287--22288 \TU/LucidaBrightOT(9)/m/n/10 when called depend on the arguments passed to thei r parameters. In [] -Underfull \hbox (badness 4391) in paragraph at lines 22289--22290 +Underfull \hbox (badness 4391) in paragraph at lines 22287--22288 \TU/LucidaBrightOT(9)/m/n/10 other words, [][][][][][], creates a different the me than [] @@ -12406,7 +12457,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 3471) in paragraph at lines 22578--22579 +Underfull \hbox (badness 3471) in paragraph at lines 22576--22577 []\TU/LucidaBrightOT(9)/m/n/10 In general it is possible to create \TU/LucidaBr ightOT(9)/m/it/10 expressions \TU/LucidaBrightOT(9)/m/n/10 explicitly with func tion @@ -12596,7 +12647,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 6910) in paragraph at lines 23018--23019 +Underfull \hbox (badness 6910) in paragraph at lines 23016--23017 \TU/LucidaBrightOT(9)/m/n/10 Package ‘\TU/LucidaSansOT(0)/m/n/10 gginnards\TU/L ucidaBrightOT(9)/m/n/10 ’[][] provides an enhanced [][][][][][] methods, [][][] [][][], @@ -12654,44 +12705,44 @@ Underfull \hbox (badness 10000) has occurred while \output is active [382 ] -Underfull \vbox (badness 10000) detected at line 23097 +Underfull \vbox (badness 10000) detected at line 23095 [] -Overfull \hbox (395.75pt too wide) detected at line 23097 +Overfull \hbox (395.75pt too wide) detected at line 23095 [] [] -Underfull \vbox (badness 10000) detected at line 23097 +Underfull \vbox (badness 10000) detected at line 23095 [] -Overfull \hbox (395.75pt too wide) detected at line 23097 +Overfull \hbox (395.75pt too wide) detected at line 23095 [] [] -Underfull \vbox (badness 10000) detected at line 23097 +Underfull \vbox (badness 10000) detected at line 23095 [] -Overfull \hbox (395.75pt too wide) detected at line 23097 +Overfull \hbox (395.75pt too wide) detected at line 23095 [] [] -Underfull \vbox (badness 10000) detected at line 23097 +Underfull \vbox (badness 10000) detected at line 23095 [] -Overfull \hbox (395.75pt too wide) detected at line 23097 +Overfull \hbox (395.75pt too wide) detected at line 23095 [] [] Chapter 10. -Overfull \hbox (30.0pt too wide) in paragraph at lines 23103--23103 +Overfull \hbox (30.0pt too wide) in paragraph at lines 23101--23101 | [] @@ -12717,7 +12768,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \vbox (badness 2781) detected at line 23206 +Underfull \vbox (badness 2781) detected at line 23204 [] [385] @@ -12741,7 +12792,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \vbox (0.98541pt too high) detected at line 23293 +Overfull \vbox (0.98541pt too high) detected at line 23291 [] [386] @@ -12926,14 +12977,12 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) +ec) [394] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [394] -(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -12954,6 +13003,8 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [395] +(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) @@ -12966,7 +13017,7 @@ ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp -ec) [395] +ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp @@ -13035,7 +13086,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 10000) in paragraph at lines 24099--24100 +Underfull \hbox (badness 10000) in paragraph at lines 24097--24098 []\TU/LucidaBrightOT(9)/m/n/10 Function [][][][][][][][][] extracts the text co ntent of a field. Function [] @@ -13153,7 +13204,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1014) in paragraph at lines 24527--24528 +Underfull \hbox (badness 1014) in paragraph at lines 24525--24526 []\TU/LucidaSansOT(0)/m/n/10 NetCDF[][] \TU/LucidaBrightOT(9)/m/n/10 is a set o f software libraries [from Unidata] and self-describing, [] @@ -13167,7 +13218,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Underfull \hbox (badness 1881) in paragraph at lines 24538--24539 +Underfull \hbox (badness 1881) in paragraph at lines 24536--24537 []\TU/LucidaBrightOT(9)/m/n/10 Below, first file [][][][][][], containing meteo rological data, is [] @@ -13191,7 +13242,7 @@ ec) ec) (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) -Overfull \hbox (34.54341pt too wide) in paragraph at lines 24670--24670 +Overfull \hbox (34.54341pt too wide) in paragraph at lines 24668--24668 []\TU/LucidaConsoleDK(0)/m/n/8 ## [1] D0,D1,D2 : pevpr, valid_yr_count **A CTIVE GRID** ( 216576 values per variable)[] [] @@ -13235,48 +13286,48 @@ ec) ec) [413] (C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp ec) [414] -Underfull \vbox (badness 10000) detected at line 25037 +Underfull \vbox (badness 10000) detected at line 25035 [] -Overfull \hbox (395.75pt too wide) detected at line 25037 +Overfull \hbox (395.75pt too wide) detected at line 25035 [] [] -Underfull \vbox (badness 10000) detected at line 25037 +Underfull \vbox (badness 10000) detected at line 25035 [] -Overfull \hbox (395.75pt too wide) detected at line 25037 +Overfull \hbox (395.75pt too wide) detected at line 25035 [] [] -Underfull \vbox (badness 10000) detected at line 25037 +Underfull \vbox (badness 10000) detected at line 25035 [] -Overfull \hbox (395.75pt too wide) detected at line 25037 +Overfull \hbox (395.75pt too wide) detected at line 25035 [] [] -Underfull \vbox (badness 10000) detected at line 25037 +Underfull \vbox (badness 10000) detected at line 25035 [] -Overfull \hbox (395.75pt too wide) detected at line 25037 +Overfull \hbox (395.75pt too wide) detected at line 25035 [] [] -Underfull \hbox (badness 10000) detected at line 25037 +Underfull \hbox (badness 10000) detected at line 25035 [] [] -Underfull \hbox (badness 3302) in paragraph at lines 25037--25037 +Underfull \hbox (badness 3302) in paragraph at lines 25035--25035 [][]\TU/LucidaBrightOT(0)/m/n/10 Dalgaard, P. (2008). \TU/LucidaBrightOT(0)/m/i t/10 Introductory Statistics with R\TU/LucidaBrightOT(0)/m/n/10 . Springer, p. 380. \TU/LucidaBrightOT(0)/m/sc/10 isbn\TU/LucidaBrightOT(0)/m/n/10 : @@ -13292,19 +13343,19 @@ Underfull \hbox (badness 10000) has occurred while \output is active ] [416] -Underfull \hbox (badness 1331) in paragraph at lines 25037--25037 +Underfull \hbox (badness 1331) in paragraph at lines 25035--25035 [][]\TU/LucidaBrightOT(0)/m/n/10 Mehtätalo, L. and J. Lappi (2020). \TU/LucidaB rightOT(0)/m/it/10 Biometry for Forestry and Environmental [] [417] -Underfull \hbox (badness 1648) in paragraph at lines 25037--25037 +Underfull \hbox (badness 1648) in paragraph at lines 25035--25035 [][]\TU/LucidaBrightOT(0)/m/n/10 Zachry, M. and C. Thralls (2004). ‘ An Interv iew with Edward R. Tufte’. In: [] -Underfull \hbox (badness 2134) in paragraph at lines 25037--25037 +Underfull \hbox (badness 2134) in paragraph at lines 25035--25035 \TU/LucidaBrightOT(0)/m/it/10 Technical Communication Quarterly \TU/LucidaBrigh tOT(0)/m/n/10 13.4, pp. 447–462. \TU/LucidaBrightOT(0)/m/sc/10 doi\TU/LucidaBri ghtOT(0)/m/n/10 : $[][] [] [][][][] [] @@ -13574,8 +13625,8 @@ Underfull \hbox (badness 10000) has occurred while \output is active ] (using-r-main-crc.aux) *********** -LaTeX2e <2023-11-01> -L3 programming layer <2023-12-11> +LaTeX2e <2023-11-01> patch level 1 +L3 programming layer <2024-01-22> *********** @@ -13586,12 +13637,12 @@ Package logreq Info: Writing requests to 'using-r-main-crc.run.xml'. ) Here is how much of TeX's memory you used: - 49296 strings out of 409626 - 1339886 string characters out of 5778457 - 1994109 words of memory out of 5000000 - 61666 multiletter control sequences out of 15000+600000 + 49296 strings out of 409673 + 1340038 string characters out of 5778967 + 1992630 words of memory out of 5000000 + 61611 multiletter control sequences out of 15000+600000 566987 words of font info for 245 fonts, out of 8000000 for 9000 1354 hyphenation exceptions out of 8191 105i,17n,132p,2060b,5679s stack positions out of 10000i,1000n,20000p,200000b,200000s -Output written on using-r-main-crc.pdf (462 pages). +Output written on using-r-main-crc.pdf (463 pages). diff --git a/using-r-main-crc.pdf b/using-r-main-crc.pdf index 94a09cb2..fb0898e1 100644 Binary files a/using-r-main-crc.pdf and b/using-r-main-crc.pdf differ diff --git a/using-r-main-crc.synctex b/using-r-main-crc.synctex index 53acefd9..e0d4f149 100644 --- a/using-r-main-crc.synctex +++ b/using-r-main-crc.synctex @@ -379,10 +379,157 @@ g1,127:-473656,-710413 ] !4140 }1 +!9 +{2 +[1,129:4262630,47279633:28320399,43253760,0 +(1,129:4262630,4025873:0,0,0 +[1,129:-473656,4025873:0,0,0 +(1,129:-473656,-710413:0,0,0 +(1,129:-473656,-644877:0,0,0 +k1,129:-473656,-644877:-65536 +) +(1,129:-473656,4736287:0,0,0 +k1,129:-473656,4736287:5209943 +) +g1,129:-473656,-710413 +) +] +) +[1,129:6630773,47279633:25952256,43253760,0 +[1,129:6630773,4812305:25952256,786432,0 +(1,129:6630773,4812305:25952256,0,0 +(1,129:6630773,4812305:25952256,0,0 +g1,129:3078558,4812305 +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,2439708:0,1703936,0 +k1,129:1358238,2439708:-1720320 +(1,129:1358238,2439708:1720320,1703936,0 +(1,129:1358238,2439708:1179648,16384,0 +r1,129:2537886,2439708:1179648,16384,0 +) +g1,129:3062174,2439708 +(1,129:3062174,2439708:16384,1703936,0 +[1,129:3062174,2439708:25952256,1703936,0 +(1,129:3062174,1915420:25952256,1179648,0 +(1,129:3062174,1915420:16384,1179648,0 +r1,129:3078558,1915420:16384,1179648,0 +) +k1,129:29014430,1915420:25935872 +g1,129:29014430,1915420 +) +] +) +) +) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,2439708:0,1703936,0 +g1,129:29030814,2439708 +g1,129:36135244,2439708 +(1,129:36135244,2439708:1720320,1703936,0 +(1,129:36135244,2439708:16384,1703936,0 +[1,129:36135244,2439708:25952256,1703936,0 +(1,129:36135244,1915420:25952256,1179648,0 +(1,129:36135244,1915420:16384,1179648,0 +r1,129:36151628,1915420:16384,1179648,0 +) +k1,129:62087500,1915420:25935872 +g1,129:62087500,1915420 +) +] +) +g1,129:36675916,2439708 +(1,129:36675916,2439708:1179648,16384,0 +r1,129:37855564,2439708:1179648,16384,0 +) +) +k1,129:3078556,2439708:-34777008 +) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,49800853:0,16384,2228224 +k1,129:1358238,49800853:-1720320 +(1,129:1358238,49800853:1720320,16384,2228224 +(1,129:1358238,49800853:1179648,16384,0 +r1,129:2537886,49800853:1179648,16384,0 +) +g1,129:3062174,49800853 +(1,129:3062174,52029077:16384,1703936,0 +[1,129:3062174,52029077:25952256,1703936,0 +(1,129:3062174,51504789:25952256,1179648,0 +(1,129:3062174,51504789:16384,1179648,0 +r1,129:3078558,51504789:16384,1179648,0 +) +k1,129:29014430,51504789:25935872 +g1,129:29014430,51504789 +) +] +) +) +) +] +[1,129:3078558,4812305:0,0,0 +(1,129:3078558,49800853:0,16384,2228224 +g1,129:29030814,49800853 +g1,129:36135244,49800853 +(1,129:36135244,49800853:1720320,16384,2228224 +(1,129:36135244,52029077:16384,1703936,0 +[1,129:36135244,52029077:25952256,1703936,0 +(1,129:36135244,51504789:25952256,1179648,0 +(1,129:36135244,51504789:16384,1179648,0 +r1,129:36151628,51504789:16384,1179648,0 +) +k1,129:62087500,51504789:25935872 +g1,129:62087500,51504789 +) +] +) +g1,129:36675916,49800853 +(1,129:36675916,49800853:1179648,16384,0 +r1,129:37855564,49800853:1179648,16384,0 +) +) +k1,129:3078556,49800853:-34777008 +) +] +g1,129:6630773,4812305 +) +) +] +[1,129:6630773,45706769:0,40108032,0 +(1,129:6630773,45706769:0,40108032,0 +(1,129:6630773,45706769:0,0,0 +g1,129:6630773,45706769 +) +[1,129:6630773,45706769:0,40108032,0 +h1,129:6630773,6254097:0,0,0 +] +(1,129:6630773,45706769:0,0,0 +g1,129:6630773,45706769 +) +) +] +(1,129:6630773,47279633:25952256,0,0 +h1,129:6630773,47279633:25952256,0,0 +) +] +(1,129:4262630,4025873:0,0,0 +[1,129:-473656,4025873:0,0,0 +(1,129:-473656,-710413:0,0,0 +(1,129:-473656,-710413:0,0,0 +g1,129:-473656,-710413 +) +g1,129:-473656,-710413 +) +] +) +] +!3214 +}2 Input:195:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.toc Input:196:C:\Program Files\MiKTeX\tex\latex\microtype\mt-eur.cfg !165 -{2 +{3 [195,38:4262630,47279633:28320399,43253760,3931 (195,38:4262630,4025873:0,0,0 [195,38:-473656,4025873:0,0,0 @@ -4116,12 +4263,12 @@ g195,38:-473656,-710413 ) ] !84016 -}2 +}3 Input:197:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:198:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:199:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !283 -{3 +{4 [195,83:4262630,47279633:28320399,43253760,0 (195,83:4262630,4025873:0,0,0 [195,83:-473656,4025873:0,0,0 @@ -9577,9 +9724,9 @@ g195,83:-473656,-710413 ) ] !122328 -}3 +}4 !11 -{4 +{5 [195,128:4262630,47279633:28320399,43253760,0 (195,128:4262630,4025873:0,0,0 [195,128:-473656,4025873:0,0,0 @@ -14867,9 +15014,9 @@ g195,128:-473656,-710413 ) ] !120516 -}4 +}5 !11 -{5 +{6 [195,182:4262630,47279633:28320399,43253760,0 (195,182:4262630,4025873:0,0,0 [195,182:-473656,4025873:0,0,0 @@ -20420,9 +20567,9 @@ g195,182:-473656,-710413 ) ] !127378 -}5 +}6 !11 -{6 +{7 [195,232:4262630,47279633:28320399,43253760,0 (195,232:4262630,4025873:0,0,0 [195,232:-473656,4025873:0,0,0 @@ -26259,9 +26406,9 @@ g195,232:-473656,-710413 ) ] !133665 -}6 +}7 !11 -{7 +{8 [1,133:4262630,47279633:28320399,43253760,0 (1,133:4262630,4025873:0,0,0 [1,133:-473656,4025873:0,0,0 @@ -30248,7 +30395,7 @@ g1,133:-473656,-710413 ) ] !91231 -}7 +}8 Input:200:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.lof Input:201:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:202:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -30257,7 +30404,7 @@ Input:204:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:205:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:206:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !647 -{8 +{9 [1,134:4262630,47279633:28320399,43253760,0 (1,134:4262630,4025873:0,0,0 [1,134:-473656,4025873:0,0,0 @@ -34355,9 +34502,9 @@ g1,134:-473656,-710413 ) ] !92008 -}8 +}9 !10 -{9 +{10 [1,134:4262630,47279633:28320399,43253760,0 (1,134:4262630,4025873:0,0,0 [1,134:-473656,4025873:0,0,0 @@ -34501,11 +34648,11 @@ g1,134:-473656,-710413 ] ) ] -!3215 -}9 +!3216 +}10 Input:207:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.lot -!100 -{10 +!101 +{11 [1,143:4262630,47279633:28320399,43253760,0 (1,143:4262630,4025873:0,0,0 [1,143:-473656,4025873:0,0,0 @@ -35658,9 +35805,9 @@ g1,143:-473656,-710413 ) ] !25643 -}10 +}11 !11 -{11 +{12 [1,143:4262630,47279633:28320399,43253760,0 (1,143:4262630,4025873:0,0,0 [1,143:-473656,4025873:0,0,0 @@ -35805,9 +35952,9 @@ g1,143:-473656,-710413 ) ] !3216 -}11 +}12 !10 -{12 +{13 [1,159:4262630,47279633:28320399,43253760,3931 (1,159:4262630,4025873:0,0,0 [1,159:-473656,4025873:0,0,0 @@ -36071,158 +36218,162 @@ g1,149:32583029,23280414 g1,149:34549109,23280414 ) (1,153:6630773,24931926:25952256,505283,134348 -k1,152:8242162,24931926:259382 -k1,152:9520629,24931926:259382 -k1,152:11047477,24931926:259382 -k1,152:13441367,24931926:259382 -k1,152:14323996,24931926:259382 -k1,152:15361290,24931926:259382 -k1,152:16019131,24931926:259382 -k1,152:20032416,24931926:259382 -k1,152:21672642,24931926:259382 -k1,152:23514063,24931926:259382 -k1,152:24304942,24931926:259382 -k1,152:26418993,24931926:259382 -k1,152:27487745,24931926:259382 -k1,152:31391584,24931926:259382 +k1,152:8252178,24931926:269398 +k1,152:9564254,24931926:269398 +k1,152:10046574,24931926:269328 +k1,152:12531089,24931926:269398 +k1,152:14934996,24931926:269399 +k1,152:15827641,24931926:269398 +k1,152:16874951,24931926:269398 +k1,152:17542808,24931926:269398 +k1,152:21239084,24931926:269398 +k1,152:22194645,24931926:269399 +k1,152:23483128,24931926:269398 +k1,152:25347017,24931926:269398 +k1,152:26997259,24931926:269398 +k1,152:28848697,24931926:269399 +k1,152:29649592,24931926:269398 +k1,152:31773659,24931926:269398 k1,152:32583029,24931926:0 ) (1,153:6630773,25797006:25952256,505283,134348 -k1,152:9436588,25797006:268261 -k1,152:10989354,25797006:268260 -k1,152:12764943,25797006:268261 -k1,152:13645965,25797006:268260 -k1,152:16612999,25797006:268261 -k1,152:18211640,25797006:268260 -k1,152:19131329,25797006:268261 -k1,152:21829009,25797006:268260 -k1,152:24439527,25797006:268261 -k1,152:28112382,25797006:268260 -k1,152:29190013,25797006:268261 -k1,152:30847636,25797006:268260 +k1,152:10485898,25797006:210668 +k1,152:11888011,25797006:210668 +k1,152:14636234,25797006:210669 +k1,152:16131408,25797006:210668 +k1,152:17849404,25797006:210668 +k1,152:18672834,25797006:210668 +k1,152:21582275,25797006:210668 +k1,152:23123324,25797006:210668 +k1,152:23985421,25797006:210669 +k1,152:26625509,25797006:210668 +k1,152:29178434,25797006:210668 k1,152:32583029,25797006:0 ) (1,153:6630773,26662086:25952256,513147,134348 -k1,152:7893187,26662086:243329 -k1,152:8551314,26662086:243284 -k1,152:11810610,26662086:243329 -k1,152:12523832,26662086:243329 -k1,152:15182818,26662086:243329 -k1,152:16235517,26662086:243329 -k1,152:17497931,26662086:243329 -k1,152:20757227,26662086:243329 -k1,152:22952218,26662086:243329 -k1,152:24637994,26662086:243329 -k1,152:25690692,26662086:243328 -k1,152:28331328,26662086:243329 -k1,152:30291045,26662086:243329 -k1,152:31193666,26662086:243329 +k1,152:7671394,26662086:231251 +k1,152:9292007,26662086:231250 +k1,152:11258651,26662086:231251 +k1,152:12508987,26662086:231251 +k1,152:13155048,26662086:231218 +k1,152:16402266,26662086:231251 +k1,152:17103409,26662086:231250 +k1,152:19750317,26662086:231251 +k1,152:20790938,26662086:231251 +k1,152:22041273,26662086:231250 +k1,152:25288491,26662086:231251 +k1,152:27471404,26662086:231251 +k1,152:29145101,26662086:231250 +k1,152:30185722,26662086:231251 k1,152:32583029,26662086:0 ) (1,153:6630773,27527166:25952256,513147,134348 -k1,152:9635952,27527166:276915 -k1,152:12448454,27527166:276914 -k1,152:13744454,27527166:276915 -k1,152:16069369,27527166:276915 -k1,152:16997711,27527166:276914 -k1,152:19618849,27527166:276915 -k1,152:21718320,27527166:276915 -k1,152:23186680,27527166:276915 -k1,152:24956504,27527166:276914 -k1,152:26299690,27527166:276915 -k1,152:28319207,27527166:276915 -k1,152:29615206,27527166:276914 -k1,152:31923737,27527166:276915 +k1,152:8606482,27527166:259321 +k1,152:9525095,27527166:259321 +k1,152:11173778,27527166:259320 +k1,152:14161363,27527166:259321 +k1,152:16956272,27527166:259321 +k1,152:18234678,27527166:259321 +k1,152:20541998,27527166:259320 +k1,152:21452747,27527166:259321 +k1,152:24056291,27527166:259321 +k1,152:26311839,27527166:259321 +k1,152:27762604,27527166:259320 +k1,152:29514835,27527166:259321 +k1,152:30840427,27527166:259321 k1,152:32583029,27527166:0 ) (1,153:6630773,28392246:25952256,513147,134348 -k1,152:7881434,28392246:231576 -k1,152:11128977,28392246:231576 -k1,152:13143788,28392246:231576 -k1,152:14243716,28392246:231576 -k1,152:15567777,28392246:231576 -k1,152:16897081,28392246:231576 -k1,152:19061969,28392246:231576 -k1,152:22135842,28392246:231577 -k1,152:22983456,28392246:231576 -k1,152:26054052,28392246:231576 -k1,152:27477728,28392246:231576 -k1,152:28577656,28392246:231576 -k1,152:29624500,28392246:231576 -k1,152:30922347,28392246:231576 +k1,152:7869450,28392246:219592 +k1,152:10120659,28392246:219593 +k1,152:10999543,28392246:219592 +k1,152:12238220,28392246:219592 +k1,152:15473780,28392246:219593 +k1,152:17476607,28392246:219592 +k1,152:18564552,28392246:219593 +k1,152:19876629,28392246:219592 +k1,152:21193949,28392246:219592 +k1,152:23346854,28392246:219593 +k1,152:26408742,28392246:219592 +k1,152:27244372,28392246:219592 +k1,152:30302985,28392246:219593 +k1,152:31714677,28392246:219592 k1,152:32583029,28392246:0 ) (1,153:6630773,29257326:25952256,513147,134348 -k1,152:8700876,29257326:247547 -k1,152:11851013,29257326:247547 -k1,152:13684532,29257326:247548 -k1,152:14614964,29257326:247547 -k1,152:17655000,29257326:247547 -k1,152:21007643,29257326:247547 -k1,152:23326128,29257326:247547 -k1,152:24521326,29257326:247547 -k1,152:25787959,29257326:247548 -k1,152:28344995,29257326:247547 -k1,152:29275427,29257326:247547 +k1,152:7637053,29257326:191012 +k1,152:8894336,29257326:191012 +k1,152:10765691,29257326:191012 +k1,152:12779259,29257326:191012 +k1,152:15872861,29257326:191012 +k1,152:17649844,29257326:191012 +k1,152:18523742,29257326:191013 +k1,152:21507243,29257326:191012 +k1,152:24803351,29257326:191012 +k1,152:27065301,29257326:191012 +k1,152:28203964,29257326:191012 +k1,152:29414061,29257326:191012 +k1,152:31914562,29257326:191012 k1,152:32583029,29257326:0 ) -(1,153:6630773,30122406:25952256,513147,134348 -k1,152:10155608,30122406:194295 -k1,152:11274616,30122406:194295 -k1,152:12645938,30122406:194295 -k1,152:13371730,30122406:194295 -k1,152:14513677,30122406:194296 -k1,152:15911213,30122406:194295 -k1,152:17687547,30122406:194295 -k1,152:18533270,30122406:194295 -k1,152:20115618,30122406:194295 -k1,152:22688215,30122406:194295 -k1,152:24460617,30122406:194295 -k1,152:25306340,30122406:194295 -k1,152:26593120,30122406:194295 -k1,152:27202254,30122406:194291 -k1,152:28012587,30122406:194295 -k1,152:29410123,30122406:194295 -k1,152:31257891,30122406:194295 +(1,153:6630773,30122406:25952256,513147,126483 +k1,152:10135680,30122406:182887 +k1,152:13649108,30122406:182888 +k1,152:14756708,30122406:182887 +k1,152:16116622,30122406:182887 +k1,152:16831006,30122406:182887 +k1,152:17961545,30122406:182888 +k1,152:19347673,30122406:182887 +k1,152:21112599,30122406:182887 +k1,152:21946914,30122406:182887 +k1,152:23517855,30122406:182888 +k1,152:26079044,30122406:182887 +k1,152:27873461,30122406:182887 +k1,152:28707776,30122406:182887 +k1,152:29983149,30122406:182888 +k1,152:30580863,30122406:182871 +k1,152:31379788,30122406:182887 k1,152:32583029,30122406:0 ) -(1,153:6630773,30987486:25952256,513147,102891 -k1,152:7909194,30987486:208873 -k1,152:8769494,30987486:208872 -k1,152:11421549,30987486:208873 -k1,152:13498852,30987486:208872 -k1,152:14323763,30987486:208873 -k1,152:15121148,30987486:208872 -k1,152:16526708,30987486:208873 -k1,152:18317620,30987486:208873 -k1,152:19057989,30987486:208872 -k1,152:22619029,30987486:208873 -k1,152:25117074,30987486:208872 -k1,152:26345032,30987486:208873 -k1,152:29423070,30987486:208872 -k1,152:30291235,30987486:208873 +(1,153:6630773,30987486:25952256,513147,126483 +k1,152:8484973,30987486:200727 +k1,152:10097347,30987486:200728 +k1,152:11367622,30987486:200727 +k1,152:12219777,30987486:200727 +k1,152:14863687,30987486:200728 +k1,152:16932845,30987486:200727 +k1,152:17749611,30987486:200728 +k1,152:18538851,30987486:200727 +k1,152:19936265,30987486:200727 +k1,152:21719032,30987486:200728 +k1,152:22451256,30987486:200727 +k1,152:26004150,30987486:200727 +k1,152:28494051,30987486:200728 +k1,152:29713863,30987486:200727 k1,152:32583029,30987486:0 ) -(1,153:6630773,31852566:25952256,505283,134348 -k1,152:9963696,31852566:160325 -k1,152:11270245,31852566:160324 -k1,152:13742025,31852566:160325 -k1,152:15296301,31852566:160325 -k1,152:17874248,31852566:160324 -k1,152:19632341,31852566:160325 -k1,152:21077171,31852566:160324 -k1,152:24094866,31852566:160325 -k1,152:25274276,31852566:160325 -k1,152:28148446,31852566:160324 -k1,152:30943974,31852566:160325 +(1,153:6630773,31852566:25952256,513147,134348 +k1,152:7570678,31852566:280613 +k1,152:10143085,31852566:280613 +k1,152:13596296,31852566:280613 +k1,152:15023134,31852566:280613 +k1,152:17615202,31852566:280613 +k1,152:19289766,31852566:280613 +k1,152:21988002,31852566:280613 +k1,152:23866383,31852566:280613 +k1,152:25431502,31852566:280613 +k1,152:28569485,31852566:280613 +k1,152:29869183,31852566:280613 k1,152:32583029,31852566:0 ) (1,153:6630773,32717646:25952256,505283,134348 -g1,152:8021447,32717646 -g1,152:9239761,32717646 -g1,152:9853833,32717646 -k1,153:32583030,32717646:19834472 -g1,153:32583030,32717646 +g1,152:9465205,32717646 +g1,152:11303489,32717646 +g1,152:12694163,32717646 +g1,152:13912477,32717646 +g1,152:14526549,32717646 +k1,153:32583029,32717646:15161755 +g1,153:32583029,32717646 ) (1,155:6630773,33582726:25952256,513147,134348 h1,154:6630773,33582726:983040,0,0 @@ -36479,10 +36630,10 @@ g1,159:-473656,-710413 ] ) ] -!19006 -}12 +!19122 +}13 !11 -{13 +{14 [1,165:4262630,47279633:28320399,43253760,0 (1,165:4262630,4025873:0,0,0 [1,165:-473656,4025873:0,0,0 @@ -37312,9 +37463,9 @@ g1,165:-473656,-710413 ) ] !23913 -}13 +}14 !11 -{14 +{15 [1,183:4262630,47279633:28320399,43253760,0 (1,183:4262630,4025873:0,0,0 [1,183:-473656,4025873:0,0,0 @@ -37788,127 +37939,131 @@ k1,171:30603187,29277005:246146 k1,171:32583029,29277005:0 ) (1,172:6630773,30142085:25952256,513147,126483 -k1,171:9725790,30142085:149174 -k1,171:14252113,30142085:149173 -k1,171:16856921,30142085:149174 -k1,171:17665387,30142085:149174 -k1,171:19726901,30142085:149173 -k1,171:21067520,30142085:149174 -k1,171:23352512,30142085:149174 -k1,171:23714628,30142085:149124 -k1,171:25339016,30142085:149173 -k1,171:26712403,30142085:149174 -k1,171:28839454,30142085:149174 -k1,171:29671512,30142085:149173 -k1,171:30433448,30142085:149174 +k1,171:9781694,30142085:205078 +k1,171:14363921,30142085:205077 +k1,171:17024633,30142085:205078 +k1,171:17889002,30142085:205077 +k1,171:20180091,30142085:205078 +k1,171:21576614,30142085:205078 +k1,171:23917509,30142085:205077 +k1,171:24335573,30142085:205072 +k1,171:26015866,30142085:205078 +k1,171:27445156,30142085:205077 +k1,171:29628111,30142085:205078 +k1,171:30516073,30142085:205077 +k1,171:31333913,30142085:205078 k1,172:32583029,30142085:0 ) (1,172:6630773,31007165:25952256,513147,126483 -k1,171:8727273,31007165:149425 -k1,171:10434490,31007165:149426 -k1,171:12059130,31007165:149425 -k1,171:13952468,31007165:149425 -k1,171:14559990,31007165:149425 -k1,171:17339376,31007165:149426 -k1,171:18436452,31007165:149425 -k1,171:19553188,31007165:149425 -k1,171:20354042,31007165:149426 -k1,171:22118274,31007165:149425 -k1,171:23470940,31007165:149425 -k1,171:25376076,31007165:149426 -k1,171:25738443,31007165:149375 -k1,171:26863700,31007165:149426 -k1,171:29773501,31007165:149425 -k1,171:32583029,31007165:0 +k1,171:9706860,31007165:228548 +k1,171:11493199,31007165:228548 +k1,171:13196961,31007165:228547 +k1,171:15169422,31007165:228548 +k1,171:15856067,31007165:228548 +k1,171:18714575,31007165:228548 +k1,171:19890774,31007165:228548 +k1,171:21086633,31007165:228548 +k1,171:21966608,31007165:228547 +k1,171:23809963,31007165:228548 +k1,171:25241752,31007165:228548 +k1,171:27226010,31007165:228548 +k1,171:27667520,31007165:228518 +k1,171:28871899,31007165:228548 +k1,171:31860823,31007165:228548 +k1,172:32583029,31007165:0 ) (1,172:6630773,31872245:25952256,505283,134348 -k1,171:7522521,31872245:240320 -k1,171:9036862,31872245:240321 -k1,171:12375069,31872245:240320 -k1,171:14276728,31872245:240321 -k1,171:16469366,31872245:240320 -k1,171:18215048,31872245:240320 -k1,171:21884868,31872245:240321 -k1,171:25412474,31872245:240320 -k1,171:29000374,31872245:240321 -k1,171:30744745,31872245:240320 +k1,171:9029063,31872245:204800 +k1,171:9885291,31872245:204800 +k1,171:11364110,31872245:204799 +k1,171:14666797,31872245:204800 +k1,171:16532935,31872245:204800 +k1,171:18690053,31872245:204800 +k1,171:20400215,31872245:204800 +k1,171:24034513,31872245:204799 +k1,171:27526599,31872245:204800 +k1,171:31078978,31872245:204800 k1,171:32583029,31872245:0 ) (1,172:6630773,32737325:25952256,505283,134348 -k1,171:8062974,32737325:239445 -k1,171:9691126,32737325:239444 -k1,171:11540791,32737325:239445 -k1,171:12955951,32737325:239444 -k1,171:15540930,32737325:239445 -k1,171:17930610,32737325:239444 -k1,171:19718671,32737325:239445 -k1,171:22432754,32737325:239444 -k1,171:24091053,32737325:239445 -k1,171:27540450,32737325:239444 -k1,171:29530362,32737325:239445 -k1,171:32583029,32737325:0 +k1,171:8732184,32737325:206766 +k1,171:10153988,32737325:206766 +k1,171:11749462,32737325:206766 +k1,171:13566448,32737325:206766 +k1,171:14948930,32737325:206766 +k1,171:17501230,32737325:206766 +k1,171:19858232,32737325:206766 +k1,171:21613614,32737325:206766 +k1,171:24295019,32737325:206766 +k1,171:25920639,32737325:206766 +k1,171:29337358,32737325:206766 +k1,171:31294591,32737325:206766 +k1,172:32583029,32737325:0 ) (1,172:6630773,33602405:25952256,513147,134348 -k1,171:9135231,33602405:158269 -k1,171:11594469,33602405:158269 -k1,171:15234667,33602405:158270 -k1,171:18165109,33602405:158269 -k1,171:19514823,33602405:158269 -k1,171:23373910,33602405:158269 -k1,171:26560598,33602405:158269 -k1,171:27666519,33602405:158270 -k1,171:29576565,33602405:158269 -k1,171:31088808,33602405:158269 -k1,172:32583029,33602405:0 +k1,171:8845307,33602405:257629 +k1,171:11449125,33602405:257629 +k1,171:14007723,33602405:257629 +k1,171:17747280,33602405:257629 +k1,171:20950753,33602405:257630 +k1,171:22399827,33602405:257629 +k1,171:26358274,33602405:257629 +k1,171:29644322,33602405:257629 +k1,171:30849602,33602405:257629 +k1,171:32583029,33602405:0 ) (1,172:6630773,34467485:25952256,513147,126483 -k1,171:7718452,34467485:202943 -k1,171:11238827,34467485:202943 -k1,171:12251140,34467485:202943 -k1,171:13473168,34467485:202943 -k1,171:15262738,34467485:202943 -k1,171:19102274,34467485:202943 -k1,171:21515091,34467485:202943 -k1,171:22737119,34467485:202943 -k1,171:24246195,34467485:202943 -k1,171:26859552,34467485:202943 -k1,171:28302436,34467485:202943 -k1,171:30688383,34467485:202943 +k1,171:8108063,34467485:141011 +k1,171:10521864,34467485:141012 +k1,171:13980307,34467485:141011 +k1,171:14930689,34467485:141012 +k1,171:16090785,34467485:141011 +k1,171:17818424,34467485:141012 +k1,171:21596028,34467485:141011 +k1,171:23946914,34467485:141012 +k1,171:25107010,34467485:141011 +k1,171:26554155,34467485:141012 +k1,171:29105580,34467485:141011 +k1,171:30486533,34467485:141012 k1,171:32583029,34467485:0 ) (1,172:6630773,35332565:25952256,513147,134348 -k1,171:7460327,35332565:170262 -k1,171:9097286,35332565:170263 -k1,171:12008264,35332565:170262 -k1,171:15029343,35332565:170263 -k1,171:20109562,35332565:170262 -k1,171:21673776,35332565:170263 -k1,171:23466709,35332565:170262 -k1,171:26488443,35332565:170263 -k1,171:28730953,35332565:170262 -k1,171:31217914,35332565:170263 +k1,171:8782517,35332565:242680 +k1,171:9684489,35332565:242680 +k1,171:11393864,35332565:242679 +k1,171:14377260,35332565:242680 +k1,171:17470756,35332565:242680 +k1,171:19729323,35332565:242680 +k1,171:21163448,35332565:242680 +k1,171:26316084,35332565:242679 +k1,171:27952715,35332565:242680 +k1,171:29818066,35332565:242680 k1,171:32583029,35332565:0 ) (1,172:6630773,36197645:25952256,513147,134348 -k1,171:9376314,36197645:219128 -k1,171:12117924,36197645:219129 -k1,171:14271019,36197645:219128 -k1,171:16545357,36197645:219129 -k1,171:19488161,36197645:219128 -k1,171:20898735,36197645:219129 -k1,171:22469215,36197645:219128 -k1,171:24263830,36197645:219129 -k1,171:27601816,36197645:219128 -k1,171:29977080,36197645:219129 -k1,171:31590159,36197645:219128 -k1,172:32583029,36197645:0 +k1,171:8257853,36197645:275728 +k1,171:10282736,36197645:275727 +k1,171:12630712,36197645:275728 +k1,171:15223138,36197645:275728 +k1,171:17640583,36197645:275728 +k1,171:19628110,36197645:275727 +k1,171:22426319,36197645:275728 +k1,171:24636014,36197645:275728 +k1,171:26276857,36197645:275728 +k1,171:29078997,36197645:275727 +k1,171:30546170,36197645:275728 +k1,171:32583029,36197645:0 ) (1,172:6630773,37062725:25952256,513147,134348 -g1,171:8749552,37062725 -g1,171:11323806,37062725 -g1,171:12182327,37062725 -g1,171:13584797,37062725 -k1,172:32583029,37062725:16677603 +g1,171:9358381,37062725 +g1,171:12676468,37062725 +g1,171:15031832,37062725 +g1,171:16625012,37062725 +g1,171:19586584,37062725 +g1,171:22160838,37062725 +g1,171:23019359,37062725 +g1,171:24421829,37062725 +k1,172:32583029,37062725:5840571 g1,172:32583029,37062725 ) (1,174:6630773,37927805:25952256,513147,134348 @@ -38019,10 +38174,10 @@ g1,178:32583028,43465626 g1,178:32583028,43465626 ) (1,180:6630773,44330706:25952256,505283,126483 -k1,180:23735669,44330706:17104896 -h1,179:23735669,44330706:0,0,0 -g1,179:26593694,44330706 -g1,179:28236026,44330706 +k1,180:23425029,44330706:16794256 +h1,179:23425029,44330706:0,0,0 +g1,179:26283054,44330706 +g1,179:27925386,44330706 g1,179:31008854,44330706 g1,180:32583029,44330706 g1,180:32583029,44330706 @@ -38048,10 +38203,10 @@ g1,183:-473656,-710413 ] ) ] -!20758 -}14 +!20858 +}15 !11 -{15 +{16 [1,183:4262630,47279633:28320399,43253760,0 (1,183:4262630,4025873:0,0,0 [1,183:-473656,4025873:0,0,0 @@ -38196,9 +38351,9 @@ g1,183:-473656,-710413 ) ] !3216 -}15 +}16 !10 -{16 +{17 [1,207:4262630,47279633:28320399,43253760,0 (1,207:4262630,4025873:0,0,0 [1,207:-473656,4025873:0,0,0 @@ -38461,20 +38616,20 @@ k1,196:32583029,26432446:15515516 g1,196:32583029,26432446 ) (1,199:6630773,27690742:25952256,513147,134348 -k1,198:7542251,27690742:283643 -k1,198:9029134,27690742:283642 -k1,198:11730400,27690742:283643 -k1,198:12226949,27690742:283557 -k1,198:15179873,27690742:283643 -k1,198:16793896,27690742:283642 -k1,198:17290446,27690742:283558 -k1,198:20088705,27690742:283643 -k1,198:21391432,27690742:283642 -k1,198:23257114,27690742:283643 -k1,198:24645038,27690742:283642 -k1,198:25676447,27690742:283643 -k1,198:27473316,27690742:283643 -k1,198:29358658,27690742:283642 +k1,198:7529844,27690742:271236 +k1,198:9004320,27690742:271235 +k1,198:11866850,27690742:271236 +k1,198:12351005,27690742:271163 +k1,198:15291522,27690742:271236 +k1,198:16893139,27690742:271236 +k1,198:17377294,27690742:271163 +k1,198:20163146,27690742:271236 +k1,198:21453467,27690742:271236 +k1,198:23306741,27690742:271235 +k1,198:24682259,27690742:271236 +k1,198:25701261,27690742:271236 +k1,198:27485722,27690742:271235 +k1,198:29358658,27690742:271236 k1,198:32583029,27690742:0 ) (1,199:6630773,28555822:25952256,505283,134348 @@ -38603,92 +38758,88 @@ k1,202:30760473,38602530:207585 k1,202:32583029,38602530:0 ) (1,203:6630773,39467610:25952256,513147,134348 -k1,202:9922952,39467610:280800 -k1,202:10559612,39467610:280800 -k1,202:12123607,39467610:280800 -k1,202:14234172,39467610:280800 -k1,202:15197857,39467610:280800 -k1,202:18451370,39467610:280800 -k1,202:19088030,39467610:280800 -k1,202:21861164,39467610:280800 -k1,202:23472345,39467610:280800 -k1,202:24380980,39467610:280800 -k1,202:26128476,39467610:280800 -k1,202:28106658,39467610:280800 -k1,202:30221811,39467610:280800 -k1,202:31125858,39467610:280800 -k1,202:32184570,39467610:280800 +k1,202:9835614,39467610:193462 +k1,202:10384937,39467610:193463 +k1,202:11861594,39467610:193462 +k1,202:13884821,39467610:193462 +k1,202:14761169,39467610:193463 +k1,202:17927344,39467610:193462 +k1,202:18476666,39467610:193462 +k1,202:21162463,39467610:193463 +k1,202:22686306,39467610:193462 +k1,202:23507603,39467610:193462 +k1,202:25167762,39467610:193463 +k1,202:27058606,39467610:193462 +k1,202:28455309,39467610:193462 +k1,202:30230811,39467610:193463 +k1,202:31931601,39467610:193462 k1,202:32583029,39467610:0 ) -(1,203:6630773,40332690:25952256,505283,134348 -k1,202:9988485,40332690:230989 -k1,202:11726802,40332690:230989 -k1,202:12609219,40332690:230989 -k1,202:13587975,40332690:230990 -k1,202:14174824,40332690:230989 -k1,202:16216573,40332690:230989 -k1,202:18379563,40332690:230989 -k1,202:20881375,40332690:230989 -k1,202:21468224,40332690:230989 -k1,202:24854773,40332690:230990 -k1,202:27589893,40332690:230989 -k1,202:28918610,40332690:230989 -k1,202:29505459,40332690:230989 +(1,203:6630773,40332690:25952256,513147,134348 +k1,202:7589872,40332690:211333 +k1,202:8157064,40332690:211332 +k1,202:10179157,40332690:211333 +k1,202:12322490,40332690:211332 +k1,202:14804646,40332690:211333 +k1,202:15371838,40332690:211332 +k1,202:18738730,40332690:211333 +k1,202:21454193,40332690:211332 +k1,202:22763254,40332690:211333 +k1,202:23330446,40332690:211332 +k1,202:26639010,40332690:211333 +k1,202:27517499,40332690:211333 +k1,202:28143662,40332690:211320 +k1,202:30797521,40332690:211332 +k1,202:31478747,40332690:211333 k1,202:32583029,40332690:0 ) (1,203:6630773,41197770:25952256,513147,134348 -k1,202:7538973,41197770:241044 -k1,202:8194818,41197770:241002 -k1,202:10878389,41197770:241044 -k1,202:11589327,41197770:241045 -k1,202:12934653,41197770:241044 -k1,202:13923463,41197770:241044 -k1,202:15677733,41197770:241044 -k1,202:16604939,41197770:241044 -k1,202:17201843,41197770:241044 -k1,202:19551836,41197770:241044 -k1,202:21548590,41197770:241044 -k1,202:26573108,41197770:241045 -k1,202:29216702,41197770:241044 -k1,202:30140631,41197770:241044 -k1,202:31329326,41197770:241044 -k1,203:32583029,41197770:0 +k1,202:7582629,41197770:204090 +k1,202:9299945,41197770:204090 +k1,202:10190197,41197770:204090 +k1,202:10750146,41197770:204089 +k1,202:13063185,41197770:204090 +k1,202:15022985,41197770:204090 +k1,202:20010548,41197770:204090 +k1,202:22617188,41197770:204090 +k1,202:23504163,41197770:204090 +k1,202:24655903,41197770:204089 +k1,202:29901678,41197770:204090 +k1,202:31297213,41197770:204090 +k1,202:32583029,41197770:0 ) (1,203:6630773,42062850:25952256,513147,134348 -k1,202:10492955,42062850:181025 -k1,202:11865425,42062850:181025 -k1,202:13332266,42062850:181025 -k1,202:14199453,42062850:181025 -k1,202:14736338,42062850:181025 -k1,202:18070300,42062850:181025 -k1,202:19176038,42062850:181025 -k1,202:20934515,42062850:181025 -k1,202:21647037,42062850:181025 -k1,202:23112568,42062850:181025 -k1,202:23979755,42062850:181025 -k1,202:24516640,42062850:181025 -k1,202:26455996,42062850:181025 -k1,202:27288449,42062850:181025 -k1,202:28488559,42062850:181025 -k1,202:29762069,42062850:181025 -k1,202:30610250,42062850:181025 -k1,202:31379788,42062850:181025 +k1,202:7565535,42062850:248600 +k1,202:8169995,42062850:248600 +k1,202:11571532,42062850:248600 +k1,202:12744845,42062850:248600 +k1,202:14570896,42062850:248599 +k1,202:15350993,42062850:248600 +k1,202:16884099,42062850:248600 +k1,202:17818861,42062850:248600 +k1,202:18423321,42062850:248600 +k1,202:20430252,42062850:248600 +k1,202:21330280,42062850:248600 +k1,202:22597965,42062850:248600 +k1,202:23939050,42062850:248600 +k1,202:24854805,42062850:248599 +k1,202:25691918,42062850:248600 +k1,202:27143759,42062850:248600 +k1,202:28974398,42062850:248600 +k1,202:30355460,42062850:248600 k1,202:32583029,42062850:0 ) (1,203:6630773,42927930:25952256,513147,134348 -g1,202:8412041,42927930 -g1,202:9743732,42927930 -g1,202:12170530,42927930 -g1,202:14346980,42927930 -g1,202:15197637,42927930 -g1,202:17775168,42927930 -g1,202:18660559,42927930 -g1,202:20239976,42927930 -g1,202:21785315,42927930 -g1,202:25397659,42927930 -g1,202:26788333,42927930 -g1,202:29480552,42927930 -k1,203:32583029,42927930:1385434 +g1,202:8807223,42927930 +g1,202:9657880,42927930 +g1,202:12235411,42927930 +g1,202:13120802,42927930 +g1,202:14700219,42927930 +g1,202:16245558,42927930 +g1,202:19857902,42927930 +g1,202:21248576,42927930 +g1,202:23940795,42927930 +k1,203:32583029,42927930:6925191 g1,203:32583029,42927930 ) (1,207:6630773,44140351:25952256,505283,134348 @@ -38753,10 +38904,10 @@ g1,207:-473656,-710413 ] ) ] -!15106 -}16 +!14996 +}17 !11 -{17 +{18 [1,220:4262630,47279633:28320399,43253760,0 (1,220:4262630,4025873:0,0,0 [1,220:-473656,4025873:0,0,0 @@ -38975,21 +39126,21 @@ k1,208:31391584,10926838:219709 k1,208:32583029,10926838:0 ) (1,209:6630773,11791918:25952256,505283,134348 -k1,208:8598585,11791918:232419 -k1,208:9419516,11791918:232418 -k1,208:11231353,11791918:232419 -k1,208:12749588,11791918:232419 -k1,208:13598045,11791918:232419 -k1,208:15487213,11791918:232418 -k1,208:17004138,11791918:232419 -k1,208:17694654,11791918:232419 -k1,208:18458569,11791918:232418 -k1,208:22142114,11791918:232419 -k1,208:23025961,11791918:232419 -k1,208:26517485,11791918:232419 -k1,208:30113211,11791918:232418 -k1,208:32168186,11791918:232419 -k1,209:32583029,11791918:0 +k1,208:8592359,11791918:226193 +k1,208:9407065,11791918:226193 +k1,208:11212676,11791918:226193 +k1,208:12724684,11791918:226192 +k1,208:13566915,11791918:226193 +k1,208:15449858,11791918:226193 +k1,208:16960557,11791918:226193 +k1,208:17644847,11791918:226193 +k1,208:18402537,11791918:226193 +k1,208:22079856,11791918:226193 +k1,208:22957476,11791918:226192 +k1,208:26442774,11791918:226193 +k1,208:30032275,11791918:226193 +k1,208:32081024,11791918:226193 +k1,208:32583029,11791918:0 ) (1,209:6630773,12656998:25952256,513147,126483 k1,208:8054770,12656998:232552 @@ -39320,20 +39471,20 @@ k1,212:30595977,29958598:231781 k1,212:32583029,29958598:0 ) (1,213:6630773,30823678:25952256,513147,126483 -k1,212:7932599,30823678:195578 -k1,212:9516230,30823678:195578 -k1,212:12090110,30823678:195578 -k1,212:14554544,30823678:195578 -k1,212:16298738,30823678:195578 -k1,212:17145744,30823678:195578 -k1,212:19585930,30823678:195578 -k1,212:21111889,30823678:195578 -k1,212:23090702,30823678:195578 -k1,212:25059029,30823678:195578 -k1,212:25906035,30823678:195578 -k1,212:27194098,30823678:195578 -k1,212:28657142,30823678:195578 -k1,212:30304342,30823678:195578 +k1,212:7926373,30823678:189352 +k1,212:9503778,30823678:189352 +k1,212:12071432,30823678:189352 +k1,212:14529641,30823678:189353 +k1,212:16267609,30823678:189352 +k1,212:17108389,30823678:189352 +k1,212:19542349,30823678:189352 +k1,212:21062082,30823678:189352 +k1,212:23034669,30823678:189352 +k1,212:24996770,30823678:189352 +k1,212:25837551,30823678:189353 +k1,212:27119388,30823678:189352 +k1,212:28576206,30823678:189352 +k1,212:30217180,30823678:189352 k1,212:32583029,30823678:0 ) (1,213:6630773,31688758:25952256,513147,126483 @@ -39467,103 +39618,105 @@ g1,215:32583029,37744318 ) (1,217:6630773,38609398:25952256,505283,126483 h1,216:6630773,38609398:983040,0,0 -k1,216:10416743,38609398:267997 -k1,216:11967935,38609398:267997 -k1,216:12887360,38609398:267997 -k1,216:13570131,38609398:267928 -k1,216:16018511,38609398:267997 -k1,216:17698809,38609398:267997 -k1,216:18579567,38609398:267996 -k1,216:20343096,38609398:267997 -k1,216:23359018,38609398:267997 -h1,216:23757477,38609398:0,0,0 -k1,216:24025474,38609398:267997 -k1,216:24944899,38609398:267997 -h1,216:25343358,38609398:0,0,0 -k1,216:25611355,38609398:267997 -k1,216:29897364,38609398:267997 +k1,216:10432242,38609398:283496 +k1,216:12046119,38609398:283496 +k1,216:13321174,38609398:283495 +k1,216:14887865,38609398:283496 +k1,216:15822789,38609398:283496 +k1,216:16521043,38609398:283411 +k1,216:18984922,38609398:283496 +k1,216:20680719,38609398:283496 +k1,216:21576977,38609398:283496 +k1,216:23356005,38609398:283496 +k1,216:26387426,38609398:283496 +h1,216:26785885,38609398:0,0,0 +k1,216:27069380,38609398:283495 +k1,216:28004304,38609398:283496 +h1,216:28402763,38609398:0,0,0 +k1,216:28686259,38609398:283496 k1,216:32583029,38609398:0 ) (1,217:6630773,39474478:25952256,513147,134348 -k1,216:9570921,39474478:184359 -k1,216:11407443,39474478:184359 -k1,216:12251093,39474478:184358 -k1,216:13454537,39474478:184359 -k1,216:14865075,39474478:184359 -k1,216:16240879,39474478:184359 -k1,216:19316030,39474478:184358 -k1,216:21925221,39474478:184359 -k1,216:22795742,39474478:184359 -k1,216:26159908,39474478:184359 -k1,216:29278968,39474478:184358 -k1,216:29676304,39474478:184344 -k1,216:31931601,39474478:184359 +k1,216:9598516,39474478:195570 +k1,216:12549875,39474478:195570 +k1,216:14397608,39474478:195570 +k1,216:15252471,39474478:195571 +k1,216:16467126,39474478:195570 +k1,216:17888875,39474478:195570 +k1,216:19275890,39474478:195570 +k1,216:22362253,39474478:195570 +k1,216:24982655,39474478:195570 +k1,216:25864388,39474478:195571 +k1,216:29239765,39474478:195570 +k1,216:32370037,39474478:195570 k1,216:32583029,39474478:0 ) (1,217:6630773,40339558:25952256,513147,126483 -k1,216:7571316,40339558:192777 -k1,216:9365792,40339558:192776 -k1,216:11535790,40339558:192777 -k1,216:12379994,40339558:192776 -k1,216:14269498,40339558:192777 -k1,216:16840576,40339558:192776 -k1,216:18099624,40339558:192777 -k1,216:18943828,40339558:192776 -k1,216:22628363,40339558:192777 -k1,216:24165938,40339558:192776 -k1,216:25377800,40339558:192777 -k1,216:29180299,40339558:192776 -k1,216:30032368,40339558:192777 +k1,216:8931994,40339558:230283 +k1,216:9813705,40339558:230283 +k1,216:10791755,40339558:230284 +k1,216:12623738,40339558:230283 +k1,216:14831242,40339558:230283 +k1,216:15712953,40339558:230283 +k1,216:17639964,40339558:230284 +k1,216:20248549,40339558:230283 +k1,216:21545103,40339558:230283 +k1,216:22426814,40339558:230283 +k1,216:26148856,40339558:230284 +k1,216:27723938,40339558:230283 +k1,216:28973306,40339558:230283 k1,216:32583029,40339558:0 ) (1,217:6630773,41204638:25952256,513147,134348 -k1,216:9480846,41204638:244362 -k1,216:10916653,41204638:244362 -k1,216:13355160,41204638:244362 -k1,216:15296904,41204638:244362 -k1,216:16613435,41204638:244362 -k1,216:18809459,41204638:244362 -k1,216:19705249,41204638:244362 -k1,216:21493638,41204638:244361 -k1,216:24098607,41204638:244362 -k1,216:25910590,41204638:244362 -k1,216:27794007,41204638:244362 -k1,216:28763197,41204638:244362 -k1,216:29693721,41204638:244362 -k1,216:30589511,41204638:244362 -k1,216:31812326,41204638:244362 +k1,216:7494069,41204638:204004 +k1,216:10248735,41204638:204005 +k1,216:13058450,41204638:204004 +k1,216:14453899,41204638:204004 +k1,216:16852048,41204638:204004 +k1,216:18753435,41204638:204005 +k1,216:20029608,41204638:204004 +k1,216:22185274,41204638:204004 +k1,216:23040707,41204638:204005 +k1,216:24788739,41204638:204004 +k1,216:27353350,41204638:204004 +k1,216:29124975,41204638:204004 +k1,216:30968035,41204638:204005 +k1,216:31896867,41204638:204004 k1,216:32583029,41204638:0 ) -(1,217:6630773,42069718:25952256,513147,126483 -k1,216:8181263,42069718:225352 -k1,216:9065907,42069718:225352 -k1,216:10839875,42069718:225352 -k1,216:13259372,42069718:225352 -k1,216:16641593,42069718:225352 -k1,216:18247134,42069718:225353 -k1,216:19809420,42069718:225352 -k1,216:21336317,42069718:225352 -k1,216:22247831,42069718:225352 -k1,216:22888000,42069718:225326 -k1,216:24998167,42069718:225352 -k1,216:28137905,42069718:225352 -k1,216:30543640,42069718:225352 -k1,216:31835263,42069718:225352 +(1,217:6630773,42069718:25952256,513147,134348 +k1,216:7453427,42069718:171226 +k1,216:8603105,42069718:171225 +k1,216:9545034,42069718:171226 +k1,216:11041397,42069718:171225 +k1,216:11871915,42069718:171226 +k1,216:13591757,42069718:171226 +k1,216:15957127,42069718:171225 +k1,216:19285222,42069718:171226 +k1,216:20836635,42069718:171225 +k1,216:22344795,42069718:171226 +k1,216:23817565,42069718:171225 +k1,216:24674953,42069718:171226 +k1,216:25260994,42069718:171198 +k1,216:27317034,42069718:171225 +k1,216:30402646,42069718:171226 k1,216:32583029,42069718:0 ) (1,217:6630773,42934798:25952256,513147,126483 -g1,216:9537294,42934798 -g1,216:10422685,42934798 -g1,216:12002102,42934798 -g1,216:13192891,42934798 -g1,216:13747980,42934798 -g1,216:15048214,42934798 -g1,216:18844714,42934798 -g1,216:19703235,42934798 -g1,216:20921549,42934798 -g1,216:23644569,42934798 -g1,216:26828308,42934798 -k1,217:32583029,42934798:4189066 +g1,216:7896273,42934798 +g1,216:8843268,42934798 +g1,216:11749789,42934798 +g1,216:12635180,42934798 +g1,216:14214597,42934798 +g1,216:15405386,42934798 +g1,216:15960475,42934798 +g1,216:17260709,42934798 +g1,216:21057209,42934798 +g1,216:21915730,42934798 +g1,216:23134044,42934798 +g1,216:25857064,42934798 +g1,216:29040803,42934798 +k1,217:32583029,42934798:1976571 g1,217:32583029,42934798 ) (1,219:6630773,43799878:25952256,513147,126483 @@ -39623,10 +39776,10 @@ g1,220:-473656,-710413 ] ) ] -!25001 -}17 +!25049 +}18 !11 -{18 +{19 [1,250:4262630,47279633:28320399,43253760,0 (1,250:4262630,4025873:0,0,0 [1,250:-473656,4025873:0,0,0 @@ -39845,16 +39998,16 @@ k1,220:31189078,9714417:220530 k1,220:32583029,9714417:0 ) (1,221:6630773,10579497:25952256,513147,134348 -k1,220:9770275,10579497:226427 -k1,220:12977279,10579497:226427 -k1,220:14955482,10579497:226426 -k1,220:17958014,10579497:226427 -k1,220:20419874,10579497:226427 -k1,220:22662844,10579497:226427 -k1,220:24397910,10579497:226427 -k1,220:27851329,10579497:226426 -k1,220:29269201,10579497:226427 -k1,220:30514713,10579497:226427 +k1,220:9752908,10579497:209060 +k1,220:12942545,10579497:209060 +k1,220:14903381,10579497:209059 +k1,220:17888546,10579497:209060 +k1,220:20333039,10579497:209060 +k1,220:22558642,10579497:209060 +k1,220:24276341,10579497:209060 +k1,220:27886063,10579497:209059 +k1,220:29286568,10579497:209060 +k1,220:30514713,10579497:209060 k1,220:32583029,10579497:0 ) (1,221:6630773,11444577:25952256,513147,134348 @@ -40428,7 +40581,7 @@ g1,250:-473656,-710413 ) ] !22446 -}18 +}19 Input:208:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:209:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -40443,7 +40596,7 @@ Input:218:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:219:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:220:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1194 -{19 +{20 [1,305:4262630,47279633:28320399,43253760,0 (1,305:4262630,4025873:0,0,0 [1,305:-473656,4025873:0,0,0 @@ -40697,63 +40850,63 @@ k1,254:31510860,14208890:286449 k1,254:32583029,14208890:0 ) (1,255:6630773,15073970:25952256,513147,126483 -k1,254:8976321,15073970:216283 -k1,254:11053827,15073970:216284 -k1,254:12312132,15073970:216283 -k1,254:15189833,15073970:216284 -k1,254:16022154,15073970:216283 -k1,254:17257523,15073970:216284 -k1,254:18969993,15073970:216283 -k1,254:21156945,15073970:216284 -k1,254:23415330,15073970:216283 -(1,254:23415330,15073970:0,452978,115847 -r1,305:25532155,15073970:2116825,568825,115847 -k1,254:23415330,15073970:-2116825 -) -(1,254:23415330,15073970:2116825,452978,115847 -k1,254:23415330,15073970:3277 -h1,254:25528878,15073970:0,411205,112570 -) -k1,254:25748439,15073970:216284 -k1,254:27156167,15073970:216283 -(1,254:27156167,15073970:0,452978,115847 -r1,305:29624704,15073970:2468537,568825,115847 -k1,254:27156167,15073970:-2468537 -) -(1,254:27156167,15073970:2468537,452978,115847 -k1,254:27156167,15073970:3277 -h1,254:29621427,15073970:0,411205,112570 -) -k1,254:29840988,15073970:216284 -k1,254:31048831,15073970:216283 +k1,254:8962962,15073970:202924 +k1,254:11027108,15073970:202924 +k1,254:12272055,15073970:202925 +k1,254:15310066,15073970:202924 +k1,254:16129028,15073970:202924 +k1,254:17351037,15073970:202924 +k1,254:19050149,15073970:202925 +k1,254:21223741,15073970:202924 +k1,254:23468767,15073970:202924 +(1,254:23468767,15073970:0,452978,115847 +r1,305:25585592,15073970:2116825,568825,115847 +k1,254:23468767,15073970:-2116825 +) +(1,254:23468767,15073970:2116825,452978,115847 +k1,254:23468767,15073970:3277 +h1,254:25582315,15073970:0,411205,112570 +) +k1,254:25788516,15073970:202924 +k1,254:27182886,15073970:202925 +(1,254:27182886,15073970:0,452978,115847 +r1,305:29651423,15073970:2468537,568825,115847 +k1,254:27182886,15073970:-2468537 +) +(1,254:27182886,15073970:2468537,452978,115847 +k1,254:27182886,15073970:3277 +h1,254:29648146,15073970:0,411205,112570 +) +k1,254:29854347,15073970:202924 +k1,254:31048831,15073970:202924 k1,255:32583029,15073970:0 ) (1,255:6630773,15939050:25952256,513147,115847 -k1,254:8565909,15939050:163698 -k1,254:9301737,15939050:163699 -k1,254:9863894,15939050:163698 -k1,254:11219038,15939050:163699 -k1,254:11781195,15939050:163698 -k1,254:12936453,15939050:163698 -k1,254:15857907,15939050:163699 -k1,254:18641734,15939050:163698 -k1,254:20989748,15939050:163699 -k1,254:22344891,15939050:163698 -(1,254:22344891,15939050:0,414482,115847 -r1,305:22703157,15939050:358266,530329,115847 -k1,254:22344891,15939050:-358266 -) -(1,254:22344891,15939050:358266,414482,115847 -k1,254:22344891,15939050:3277 -h1,254:22699880,15939050:0,411205,112570 -) -k1,254:22866855,15939050:163698 -k1,254:23562051,15939050:163699 -k1,254:24744834,15939050:163698 -k1,254:26646548,15939050:163699 -k1,254:27469538,15939050:163698 -k1,254:27989097,15939050:163699 -k1,254:30664135,15939050:163698 +k1,254:8555694,15939050:153483 +k1,254:9281305,15939050:153482 +k1,254:10006917,15939050:153483 +k1,254:11351844,15939050:153482 +k1,254:11903786,15939050:153483 +k1,254:13048828,15939050:153482 +k1,254:15960066,15939050:153483 +k1,254:18733677,15939050:153482 +k1,254:21071475,15939050:153483 +k1,254:22416402,15939050:153482 +(1,254:22416402,15939050:0,414482,115847 +r1,305:22774668,15939050:358266,530329,115847 +k1,254:22416402,15939050:-358266 +) +(1,254:22416402,15939050:358266,414482,115847 +k1,254:22416402,15939050:3277 +h1,254:22771391,15939050:0,411205,112570 +) +k1,254:22928151,15939050:153483 +k1,254:23613130,15939050:153482 +k1,254:24785698,15939050:153483 +k1,254:26677195,15939050:153482 +k1,254:27489970,15939050:153483 +k1,254:27999312,15939050:153482 +k1,254:30664135,15939050:153483 k1,254:32583029,15939050:0 ) (1,255:6630773,16804130:25952256,513147,126483 @@ -40808,33 +40961,33 @@ k1,254:6630773,18534290:-1765113 g1,254:8040897,18534290 h1,254:8392609,18534290:0,411205,112570 ) -k1,254:8770072,18534290:200516 -k1,254:9598424,18534290:200517 -k1,254:10818025,18534290:200516 -k1,254:12601236,18534290:200517 -(1,254:12601236,18534290:0,424981,115847 -r1,305:13311214,18534290:709978,540828,115847 -k1,254:12601236,18534290:-709978 -) -(1,254:12601236,18534290:709978,424981,115847 -k1,254:12601236,18534290:3277 -h1,254:13307937,18534290:0,411205,112570 -) -k1,254:13511730,18534290:200516 -k1,254:14243744,18534290:200517 -k1,254:15957486,18534290:200516 -k1,254:16844164,18534290:200516 -k1,254:17400541,18534290:200517 -k1,254:19893506,18534290:200516 -k1,254:20745451,18534290:200517 -k1,254:22827506,18534290:200516 -k1,254:25186778,18534290:200516 -k1,254:26954916,18534290:200517 -k1,254:27743945,18534290:200516 -k1,254:28402559,18534290:200517 -k1,254:29134572,18534290:200516 -k1,254:30401360,18534290:200517 -k1,254:31923737,18534290:200516 +k1,254:8760966,18534290:191410 +k1,254:9580212,18534290:191411 +k1,254:10790707,18534290:191410 +k1,254:12737827,18534290:191410 +(1,254:12737827,18534290:0,424981,115847 +r1,305:13447805,18534290:709978,540828,115847 +k1,254:12737827,18534290:-709978 +) +(1,254:12737827,18534290:709978,424981,115847 +k1,254:12737827,18534290:3277 +h1,254:13444528,18534290:0,411205,112570 +) +k1,254:13639216,18534290:191411 +k1,254:14362123,18534290:191410 +k1,254:16066759,18534290:191410 +k1,254:16944332,18534290:191411 +k1,254:17491602,18534290:191410 +k1,254:19975461,18534290:191410 +k1,254:20818299,18534290:191410 +k1,254:22891249,18534290:191411 +k1,254:25241415,18534290:191410 +k1,254:27000446,18534290:191410 +k1,254:27780370,18534290:191411 +k1,254:28429877,18534290:191410 +k1,254:29152784,18534290:191410 +k1,254:30410466,18534290:191411 +k1,254:31923737,18534290:191410 k1,254:32583029,18534290:0 ) (1,255:6630773,19399370:25952256,513147,134348 @@ -41140,78 +41293,77 @@ k1,272:32583029,34587046:20053884 g1,272:32583029,34587046 ) (1,275:6630773,35845342:25952256,505283,134348 -k1,274:7580678,35845342:142502 -k1,274:10392461,35845342:142502 -k1,274:11924326,35845342:142502 -k1,274:14356656,35845342:142502 -k1,274:14712094,35845342:142446 -k1,274:15947080,35845342:142501 -k1,274:19036081,35845342:142502 -k1,274:21380593,35845342:142502 -k1,274:22174523,35845342:142502 -k1,274:24501340,35845342:142502 -k1,274:25309688,35845342:142502 -k1,274:27227560,35845342:142502 -k1,274:28951390,35845342:142446 -k1,274:30517334,35845342:142502 -k1,275:32583029,35845342:0 +k1,274:7737187,35845342:299011 +k1,274:10705479,35845342:299011 +k1,274:12393852,35845342:299010 +k1,274:15156361,35845342:299011 +k1,274:15668264,35845342:298911 +k1,274:17059760,35845342:299011 +k1,274:20305269,35845342:299010 +k1,274:22806290,35845342:299011 +k1,274:23756729,35845342:299011 +k1,274:26240055,35845342:299011 +k1,274:27204912,35845342:299011 +k1,274:29279292,35845342:299010 +k1,274:31159587,35845342:298911 +k1,274:32583029,35845342:0 ) (1,275:6630773,36710422:25952256,513147,134348 -k1,274:7944529,36710422:217994 -k1,274:11656247,36710422:217994 -k1,274:13352733,36710422:217994 -k1,274:14762172,36710422:217994 -k1,274:17895863,36710422:217994 -k1,274:20088570,36710422:218107 -k1,274:20519537,36710422:217975 -k1,274:21830016,36710422:217994 -k1,274:24078971,36710422:217994 -k1,274:25137792,36710422:217994 -k1,274:26007214,36710422:217994 -k1,274:29082578,36710422:217994 -k1,274:30319657,36710422:217994 -k1,274:31923737,36710422:217994 +k1,274:9947524,36710422:261463 +k1,274:13702710,36710422:261462 +k1,274:15442665,36710422:261463 +k1,274:16895572,36710422:261462 +k1,274:20072732,36710422:261463 +k1,274:22309168,36710422:261836 +k1,274:22783560,36710422:261400 +k1,274:24137507,36710422:261462 +k1,274:26429931,36710422:261463 +k1,274:27532221,36710422:261463 +k1,274:28445111,36710422:261462 +k1,274:31563944,36710422:261463 k1,274:32583029,36710422:0 ) (1,275:6630773,37575502:25952256,513147,134348 -k1,274:7888980,37575502:239122 -k1,274:10166271,37575502:239121 -k1,274:12868891,37575502:239122 -k1,274:13320965,37575502:239082 -k1,274:14652571,37575502:239121 -k1,274:15910778,37575502:239122 -k1,274:18631748,37575502:239122 -k1,274:20191419,37575502:239121 -k1,274:21378192,37575502:239122 -k1,274:22636399,37575502:239122 -k1,274:24943836,37575502:239121 -k1,274:25842250,37575502:239122 -k1,274:27964221,37575502:239122 -k1,274:30493170,37575502:239121 -k1,274:31923737,37575502:239122 +k1,274:8243004,37575502:226145 +k1,274:9128440,37575502:226144 +k1,274:10373670,37575502:226145 +k1,274:12637985,37575502:226145 +k1,274:15327628,37575502:226145 +k1,274:15766737,37575502:226117 +k1,274:17085367,37575502:226145 +k1,274:18330597,37575502:226145 +k1,274:21038590,37575502:226145 +k1,274:22585284,37575502:226144 +k1,274:23759080,37575502:226145 +k1,274:25004310,37575502:226145 +k1,274:27298771,37575502:226145 +k1,274:28184207,37575502:226144 +k1,274:30293201,37575502:226145 k1,274:32583029,37575502:0 ) (1,275:6630773,38440582:25952256,513147,126483 -k1,274:8336730,38440582:197318 -k1,274:12131319,38440582:197318 -k1,274:15456015,38440582:197318 -k1,274:16672418,38440582:197318 -k1,274:19073056,38440582:197318 -k1,274:20664324,38440582:197317 -k1,274:21217502,38440582:197318 -k1,274:23649598,38440582:197318 -k1,274:26160337,38440582:197318 -k1,274:28224776,38440582:197318 -k1,274:28953591,38440582:197318 -k1,274:29921612,38440582:197318 +k1,274:8066718,38440582:244500 +k1,274:8970509,38440582:244499 +k1,274:10723648,38440582:244500 +k1,274:14565418,38440582:244499 +k1,274:17937296,38440582:244500 +k1,274:19200881,38440582:244500 +k1,274:21648700,38440582:244499 +k1,274:23287151,38440582:244500 +k1,274:23887511,38440582:244500 +k1,274:26366788,38440582:244499 +k1,274:28924709,38440582:244500 +k1,274:31036329,38440582:244499 +k1,274:31812326,38440582:244500 k1,274:32583029,38440582:0 ) (1,275:6630773,39305662:25952256,513147,126483 -g1,274:8397623,39305662 -g1,274:11014475,39305662 -h1,274:11412934,39305662:0,0,0 -k1,275:32583030,39305662:21117668 -g1,275:32583030,39305662 +g1,274:9491419,39305662 +g1,274:11258269,39305662 +g1,274:13875121,39305662 +h1,274:14273580,39305662:0,0,0 +k1,275:32583028,39305662:18257020 +g1,275:32583028,39305662 ) (1,301:6630773,44046718:25952256,3893677,0 k1,301:8431432,44046718:1800659 @@ -42052,13 +42204,13 @@ g1,305:-473656,-710413 ] ) ] -!41054 -}19 +!41014 +}20 Input:221:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:222:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:223:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{20 +{21 [1,326:4262630,47279633:28320399,43253760,0 (1,326:4262630,4025873:0,0,0 [1,326:-473656,4025873:0,0,0 @@ -42188,19 +42340,19 @@ g1,326:6630773,45706769 [1,326:6630773,45706769:25952256,40108032,0 (1,304:6630773,6254097:25952256,505283,134348 h1,303:6630773,6254097:983040,0,0 -k1,303:8627857,6254097:185014 -k1,303:11482152,6254097:185014 -k1,303:13163353,6254097:185014 -k1,303:16279793,6254097:185015 -k1,303:16677785,6254097:185000 -k1,303:17955284,6254097:185014 -k1,303:21086797,6254097:185014 -k1,303:23126480,6254097:185014 -k1,303:24120864,6254097:185014 -k1,303:26143509,6254097:185015 -k1,303:27519968,6254097:185014 -k1,303:30057069,6254097:185014 -k1,303:31931601,6254097:185014 +k1,303:8614499,6254097:171656 +k1,303:11455436,6254097:171656 +k1,303:13123279,6254097:171656 +k1,303:16400031,6254097:171656 +k1,303:16784651,6254097:171628 +k1,303:18048792,6254097:171656 +k1,303:21166947,6254097:171656 +k1,303:23193272,6254097:171656 +k1,303:24174297,6254097:171655 +k1,303:26183583,6254097:171656 +k1,303:27546684,6254097:171656 +k1,303:30070427,6254097:171656 +k1,303:31931601,6254097:171656 k1,303:32583029,6254097:0 ) (1,304:6630773,7119177:25952256,513147,7863 @@ -42311,19 +42463,19 @@ k1,309:32583029,15507815:15638395 g1,309:32583029,15507815 ) (1,312:6630773,16766111:25952256,513147,134348 -k1,311:8227684,16766111:161017 -k1,311:9047993,16766111:161017 -k1,311:9975125,16766111:161016 -k1,311:10951410,16766111:161017 -k1,311:12178698,16766111:161017 -k1,311:14239604,16766111:161017 -k1,311:16125528,16766111:161016 -k1,311:20457912,16766111:161017 -k1,311:22085625,16766111:161017 -k1,311:23990555,16766111:161017 -k1,311:25545522,16766111:161016 -k1,311:28262443,16766111:161017 -k1,311:29082752,16766111:161017 +k1,311:8214325,16766111:147658 +k1,311:9021274,16766111:147657 +k1,311:10108718,16766111:147658 +k1,311:11071643,16766111:147657 +k1,311:12285572,16766111:147658 +k1,311:14333118,16766111:147657 +k1,311:16205684,16766111:147658 +k1,311:20524708,16766111:147657 +k1,311:22139062,16766111:147658 +k1,311:24030632,16766111:147657 +k1,311:25572241,16766111:147658 +k1,311:28275802,16766111:147657 +k1,311:29082752,16766111:147658 k1,311:32583029,16766111:0 ) (1,312:6630773,17631191:25952256,513147,134348 @@ -42359,88 +42511,87 @@ g1,312:32583029,18496271 ) (1,314:6630773,19361351:25952256,513147,134348 h1,313:6630773,19361351:983040,0,0 -k1,313:8320783,19361351:237077 -k1,313:9089356,19361351:237076 -k1,313:12535731,19361351:237077 -k1,313:13424235,19361351:237076 -k1,313:15272842,19361351:237077 -k1,313:16840299,19361351:237076 -k1,313:17728804,19361351:237077 -k1,313:19232036,19361351:237076 -k1,313:22057130,19361351:237077 -k1,313:22980368,19361351:237076 -k1,313:24539306,19361351:237077 -k1,313:25435674,19361351:237076 -k1,313:26691836,19361351:237077 -k1,313:29246920,19361351:237076 -k1,313:30143289,19361351:237077 -k1,313:32115758,19361351:237076 +k1,313:8243614,19361351:159908 +k1,313:8935019,19361351:159908 +k1,313:12304224,19361351:159907 +k1,313:13115560,19361351:159908 +k1,313:14886998,19361351:159908 +k1,313:16377287,19361351:159908 +k1,313:17188623,19361351:159908 +k1,313:18614687,19361351:159908 +k1,313:21362611,19361351:159907 +k1,313:22208681,19361351:159908 +k1,313:23690450,19361351:159908 +k1,313:24509650,19361351:159908 +k1,313:25688643,19361351:159908 +k1,313:28166558,19361351:159907 +k1,313:28985758,19361351:159908 +k1,313:30881059,19361351:159908 +k1,313:31629480,19361351:159908 k1,313:32583029,19361351:0 ) (1,314:6630773,20226431:25952256,513147,134348 -k1,313:8305568,20226431:238901 -k1,313:9203760,20226431:238900 -k1,313:10208777,20226431:238901 -k1,313:11604387,20226431:238900 -k1,313:12947570,20226431:238901 -k1,313:14598771,20226431:238900 -k1,313:15856757,20226431:238901 -k1,313:20921728,20226431:238900 -k1,313:21819921,20226431:238901 -k1,313:23077906,20226431:238900 -k1,313:26012303,20226431:238901 -k1,313:26934088,20226431:238900 -k1,313:29132515,20226431:238901 -k1,313:30655921,20226431:238900 -k1,313:32051532,20226431:238901 +k1,313:9050665,20226431:239509 +k1,313:10778497,20226431:239509 +k1,313:11779533,20226431:239508 +k1,313:14421592,20226431:239509 +k1,313:15680186,20226431:239509 +k1,313:20745766,20226431:239509 +k1,313:21644566,20226431:239508 +k1,313:22903160,20226431:239509 +k1,313:25838165,20226431:239509 +k1,313:26760559,20226431:239509 +k1,313:28959593,20226431:239508 +k1,313:30483608,20226431:239509 +k1,313:31591469,20226431:239509 k1,313:32583029,20226431:0 ) (1,314:6630773,21091511:25952256,505283,134348 -k1,313:8729236,21091511:201851 -k1,313:9582515,21091511:201851 -k1,313:11050522,21091511:201851 -k1,313:13137843,21091511:201850 -k1,313:13955732,21091511:201851 -k1,313:15909360,21091511:201851 -k1,313:17808593,21091511:201851 -k1,313:19296260,21091511:201851 -k1,313:22166082,21091511:201851 -k1,313:23460418,21091511:201851 -k1,313:26827657,21091511:201850 -k1,313:27948323,21091511:201851 -k1,313:29538227,21091511:201851 -k1,313:31568532,21091511:201851 +k1,313:8714116,21091511:186731 +k1,313:9552274,21091511:186730 +k1,313:11005161,21091511:186731 +k1,313:13077363,21091511:186731 +k1,313:13880132,21091511:186731 +k1,313:15818639,21091511:186730 +k1,313:17702752,21091511:186731 +k1,313:19175299,21091511:186731 +k1,313:22030000,21091511:186730 +k1,313:25382120,21091511:186731 +k1,313:26487666,21091511:186731 +k1,313:28062450,21091511:186731 +k1,313:30077634,21091511:186730 +k1,313:31278862,21091511:186731 k1,313:32583029,21091511:0 ) (1,314:6630773,21956591:25952256,513147,134348 -k1,313:8129855,21956591:168701 -k1,313:8949983,21956591:168700 -k1,313:10211169,21956591:168701 -k1,313:13572783,21956591:168700 -k1,313:16767281,21956591:168701 -k1,313:17618866,21956591:168700 -k1,313:20251065,21956591:168701 -k1,313:21047601,21956591:168701 -k1,313:24021242,21956591:168700 -k1,313:25108758,21956591:168701 -k1,313:27643963,21956591:168700 -k1,313:28715750,21956591:168701 +k1,313:7452847,21956591:170646 +k1,313:8715978,21956591:170646 +k1,313:12079537,21956591:170645 +k1,313:15275980,21956591:170646 +k1,313:16129511,21956591:170646 +k1,313:18763655,21956591:170646 +k1,313:19562135,21956591:170645 +k1,313:22537722,21956591:170646 +k1,313:23627183,21956591:170646 +k1,313:26164334,21956591:170646 +k1,313:27238065,21956591:170645 +k1,313:31275990,21956591:170646 +k1,313:32046290,21956591:170646 k1,313:32583029,21956591:0 ) (1,314:6630773,22821671:25952256,513147,126483 -k1,313:7430665,22821671:200238 -k1,313:8080478,22821671:200236 -k1,313:9472161,22821671:200238 -k1,313:11584739,22821671:200237 -k1,313:14454258,22821671:200238 -k1,313:16203112,22821671:200238 -k1,313:19429146,22821671:200237 -k1,313:20312269,22821671:200238 -k1,313:22666020,22821671:200238 -k1,313:26528409,22821671:200237 -k1,313:27380075,22821671:200238 -k1,313:28672797,22821671:200237 -k1,313:29820686,22821671:200238 +k1,313:7984747,22821671:162529 +k1,313:9849246,22821671:162529 +k1,313:11924116,22821671:162529 +k1,313:14755926,22821671:162529 +k1,313:16467071,22821671:162529 +k1,313:19655398,22821671:162530 +k1,313:20500812,22821671:162529 +k1,313:22816854,22821671:162529 +k1,313:26641535,22821671:162529 +k1,313:27455492,22821671:162529 +k1,313:28710506,22821671:162529 +k1,313:29820686,22821671:162529 k1,313:32583029,22821671:0 ) (1,314:6630773,23686751:25952256,505283,7863 @@ -42574,51 +42725,52 @@ g1,318:32583029,30607391 ) (1,320:6630773,31472471:25952256,513147,134348 h1,319:6630773,31472471:983040,0,0 -k1,319:9663998,31472471:266950 -k1,319:12991479,31472471:266950 -k1,319:14206079,31472471:266949 -k1,319:17234716,31472471:266950 -k1,319:19570638,31472471:266950 -k1,319:20785239,31472471:266950 -k1,319:23068076,31472471:266950 -k1,319:24017911,31472471:266950 -k1,319:26687411,31472471:266950 -k1,319:29040371,31472471:266949 -k1,319:30464031,31472471:266950 -k1,319:31835263,31472471:266950 +k1,319:9570819,31472471:173771 +k1,319:12805121,31472471:173771 +k1,319:13926543,31472471:173771 +k1,319:16862001,31472471:173771 +k1,319:19104744,31472471:173771 +k1,319:20226166,31472471:173771 +k1,319:21170641,31472471:173772 +k1,319:23533970,31472471:173771 +k1,319:24390626,31472471:173771 +k1,319:26966947,31472471:173771 +k1,319:29226729,31472471:173771 +k1,319:30557210,31472471:173771 +k1,319:31835263,31472471:173771 k1,319:32583029,31472471:0 ) (1,320:6630773,32337551:25952256,513147,134348 -k1,319:10386368,32337551:225171 -k1,319:12005489,32337551:225170 -k1,319:14993003,32337551:225171 -k1,319:16786450,32337551:225170 -k1,319:17670913,32337551:225171 -k1,319:21870843,32337551:225171 -k1,319:23115098,32337551:225170 -k1,319:24993742,32337551:225171 -k1,319:27058508,32337551:225170 -k1,319:28181522,32337551:225171 -k1,319:29472963,32337551:225170 -k1,319:31379788,32337551:225171 +k1,319:10318937,32337551:157740 +k1,319:11870628,32337551:157740 +k1,319:14790711,32337551:157740 +k1,319:16516728,32337551:157740 +k1,319:17333760,32337551:157740 +k1,319:21466259,32337551:157740 +k1,319:22643083,32337551:157739 +k1,319:24454296,32337551:157740 +k1,319:26451632,32337551:157740 +k1,319:27507215,32337551:157740 +k1,319:28731226,32337551:157740 +k1,319:30570620,32337551:157740 +k1,319:31931601,32337551:157740 k1,319:32583029,32337551:0 ) (1,320:6630773,33202631:25952256,505283,126483 -k1,319:7429613,33202631:147412 -k1,319:11072716,33202631:147413 -k1,319:12564271,33202631:147412 -k1,319:13327721,33202631:147412 -k1,319:15076833,33202631:147412 -k1,319:16921628,33202631:147413 -k1,319:17527137,33202631:147412 -k1,319:18807011,33202631:147412 -k1,319:20020694,33202631:147412 -k1,319:22293440,33202631:147413 -k1,319:24326323,33202631:147412 -k1,319:27458245,33202631:147412 -k1,319:28776130,33202631:147412 -k1,319:30016028,33202631:147413 -k1,319:30849602,33202631:147412 +k1,319:10318530,33202631:192067 +k1,319:11854740,33202631:192067 +k1,319:12662846,33202631:192068 +k1,319:14456613,33202631:192067 +k1,319:16519733,33202631:192067 +k1,319:17169897,33202631:192067 +k1,319:18494426,33202631:192067 +k1,319:19752765,33202631:192068 +k1,319:22070165,33202631:192067 +k1,319:24147703,33202631:192067 +k1,319:27324280,33202631:192067 +k1,319:28686821,33202631:192068 +k1,319:29971373,33202631:192067 +k1,319:30849602,33202631:192067 k1,319:32583029,33202631:0 ) (1,320:6630773,34067711:25952256,513147,134348 @@ -42684,94 +42836,95 @@ k1,323:29262976,39172985:198121 k1,323:32583029,39172985:0 ) (1,324:6630773,40038065:25952256,505283,134348 -k1,323:9760445,40038065:171377 -k1,323:12338303,40038065:171376 -k1,323:14106137,40038065:171377 -k1,323:14809010,40038065:171376 -k1,323:18951213,40038065:171377 -k1,323:19738627,40038065:171376 -k1,323:20828819,40038065:171377 -k1,323:22388249,40038065:171377 -k1,323:24979214,40038065:171376 -k1,323:28623344,40038065:171377 -k1,323:29150580,40038065:171376 -k1,323:31194976,40038065:171377 +k1,323:9776829,40038065:187761 +k1,323:12371071,40038065:187760 +k1,323:13750277,40038065:187761 +k1,323:15534494,40038065:187760 +k1,323:16253752,40038065:187761 +k1,323:20412338,40038065:187760 +k1,323:21216137,40038065:187761 +k1,323:22322713,40038065:187761 +k1,323:23898526,40038065:187760 +k1,323:26505876,40038065:187761 +k1,323:30166389,40038065:187760 +k1,323:30710010,40038065:187761 k1,323:32583029,40038065:0 ) (1,324:6630773,40903145:25952256,505283,134348 -k1,323:8372669,40903145:243743 -k1,323:12149458,40903145:243743 -k1,323:14624702,40903145:243743 -k1,323:15283243,40903145:243698 -k1,323:17990484,40903145:243743 -k1,323:19377830,40903145:243743 -k1,323:20997174,40903145:243743 -k1,323:22628969,40903145:243742 -k1,323:24701166,40903145:243743 -k1,323:25936469,40903145:243743 -k1,323:28309477,40903145:243743 -k1,323:31510860,40903145:243743 +k1,323:8243453,40903145:224627 +k1,323:9966232,40903145:224626 +k1,323:13723905,40903145:224627 +k1,323:16180033,40903145:224627 +k1,323:16819477,40903145:224601 +k1,323:19507601,40903145:224626 +k1,323:20875831,40903145:224627 +k1,323:22476059,40903145:224627 +k1,323:24088738,40903145:224626 +k1,323:26141819,40903145:224627 +k1,323:27358005,40903145:224626 +k1,323:29711897,40903145:224627 k1,323:32583029,40903145:0 ) (1,324:6630773,41768225:25952256,513147,126483 -k1,323:8187312,41768225:176351 -k1,323:9355224,41768225:176352 -k1,323:12883742,41768225:176351 -k1,323:16907056,41768225:176351 -k1,323:18477358,41768225:176351 -k1,323:19009570,41768225:176352 -k1,323:20627058,41768225:176351 -k1,323:22488340,41768225:176351 -k1,323:26448084,41768225:176351 -k1,323:27815881,41768225:176352 -k1,323:31297213,41768225:176351 +k1,323:7900384,41768225:197442 +k1,323:9478014,41768225:197442 +k1,323:10667016,41768225:197442 +k1,323:14216625,41768225:197442 +k1,323:18261030,41768225:197442 +k1,323:19852422,41768225:197441 +k1,323:20405724,41768225:197442 +k1,323:22044303,41768225:197442 +k1,323:23926676,41768225:197442 +k1,323:27907511,41768225:197442 +k1,323:29296398,41768225:197442 k1,323:32583029,41768225:0 ) (1,324:6630773,42633305:25952256,513147,126483 -k1,323:7235431,42633305:248798 -k1,323:10039479,42633305:248799 -k1,323:14071670,42633305:248798 -k1,323:14948303,42633305:248798 -k1,323:16216187,42633305:248799 -k1,323:17832066,42633305:248798 -k1,323:18740157,42633305:248799 -k1,323:22188423,42633305:248798 -k1,323:25717953,42633305:248798 -k1,323:28208739,42633305:248799 -k1,323:29966176,42633305:248798 -k1,323:32583029,42633305:0 +k1,323:8153065,42633305:236476 +k1,323:8745401,42633305:236476 +k1,323:11537125,42633305:236475 +k1,323:15556994,42633305:236476 +k1,323:16421305,42633305:236476 +k1,323:17676866,42633305:236476 +k1,323:19280422,42633305:236475 +k1,323:20176190,42633305:236476 +k1,323:23612134,42633305:236476 +k1,323:27129342,42633305:236476 +k1,323:29607804,42633305:236475 +k1,323:31352919,42633305:236476 +k1,324:32583029,42633305:0 ) (1,324:6630773,43498385:25952256,505283,134348 -k1,323:8031332,43498385:209114 -k1,323:11079467,43498385:209115 -k1,323:14691210,43498385:209114 -k1,323:15891884,43498385:209114 -k1,323:18230263,43498385:209114 -k1,323:21703071,43498385:209115 -k1,323:22598347,43498385:209114 -k1,323:24086068,43498385:209114 -k1,323:24981344,43498385:209114 -k1,323:26209544,43498385:209115 -k1,323:29197385,43498385:209114 -k1,323:31260513,43498385:209114 -k1,324:32583029,43498385:0 +k1,323:8487900,43498385:190546 +k1,323:9869890,43498385:190545 +k1,323:12899456,43498385:190546 +k1,323:16492631,43498385:190546 +k1,323:17674736,43498385:190545 +k1,323:19994547,43498385:190546 +k1,323:23448786,43498385:190546 +k1,323:24325493,43498385:190545 +k1,323:25794646,43498385:190546 +k1,323:26671354,43498385:190546 +k1,323:27880984,43498385:190545 +k1,323:30850257,43498385:190546 +k1,323:32583029,43498385:0 ) (1,324:6630773,44363465:25952256,513147,134348 -k1,323:8037306,44363465:279314 -k1,323:8929383,44363465:279315 -k1,323:10227782,44363465:279314 -k1,323:12830347,44363465:279314 -k1,323:13768954,44363465:279315 -k1,323:15436321,44363465:279314 -k1,323:17717760,44363465:279314 -k1,323:20228576,44363465:279315 -k1,323:23499609,44363465:279314 -k1,323:24438215,44363465:279314 -k1,323:25736615,44363465:279315 -k1,323:27108414,44363465:279314 -k1,323:28047020,44363465:279314 -k1,323:29345420,44363465:279315 -k1,323:31914562,44363465:279314 +k1,323:9172564,44363465:198224 +k1,323:9983551,44363465:198225 +k1,323:11200860,44363465:198224 +k1,323:13722336,44363465:198225 +k1,323:14579852,44363465:198224 +k1,323:16166130,44363465:198225 +k1,323:18366479,44363465:198224 +k1,323:20796205,44363465:198225 +k1,323:23986148,44363465:198224 +k1,323:24843665,44363465:198225 +k1,323:26060974,44363465:198224 +k1,323:27351684,44363465:198225 +k1,323:28209200,44363465:198224 +k1,323:29426510,44363465:198225 +k1,323:31914562,44363465:198224 k1,323:32583029,44363465:0 ) (1,324:6630773,45228545:25952256,513147,134348 @@ -42816,10 +42969,10 @@ g1,326:-473656,-710413 ] ) ] -!21345 -}20 +!21378 +}21 !11 -{21 +{22 [1,345:4262630,47279633:28320399,43253760,0 (1,345:4262630,4025873:0,0,0 [1,345:-473656,4025873:0,0,0 @@ -43290,32 +43443,33 @@ g1,333:32583029,27324027 ) (1,335:6630773,28189107:25952256,513147,134348 h1,334:6630773,28189107:983040,0,0 -k1,334:8536739,28189107:295091 -k1,334:10433529,28189107:295090 -k1,334:13256344,28189107:295091 -k1,334:16037870,28189107:295090 -k1,334:16688821,28189107:295091 -k1,334:19181989,28189107:295090 -k1,334:22651644,28189107:295091 -k1,334:23478231,28189107:295090 -k1,334:26612342,28189107:295091 -k1,334:28475053,28189107:295090 -k1,334:30514057,28189107:295091 +k1,334:8412861,28189107:171213 +k1,334:10185773,28189107:171212 +k1,334:12884710,28189107:171213 +k1,334:15542358,28189107:171212 +k1,334:16069431,28189107:171213 +k1,334:18438721,28189107:171212 +k1,334:21784498,28189107:171213 +k1,334:22487208,28189107:171213 +k1,334:25497440,28189107:171212 +k1,334:27236274,28189107:171213 +k1,334:29151399,28189107:171212 +k1,334:31391584,28189107:171213 k1,334:32583029,28189107:0 ) (1,335:6630773,29054187:25952256,513147,134348 -k1,334:8019044,29054187:196826 -k1,334:11463835,29054187:196827 -k1,334:14928941,29054187:196826 -k1,334:16842811,29054187:196827 -k1,334:18756025,29054187:196826 -k1,334:19612143,29054187:196826 -k1,334:24135002,29054187:196827 -k1,334:25478053,29054187:196826 -k1,334:26693965,29054187:196827 -k1,334:27983276,29054187:196826 -k1,334:28839395,29054187:196827 -k1,334:31914562,29054187:196826 +k1,334:10074253,29054187:195516 +k1,334:13538048,29054187:195515 +k1,334:15450607,29054187:195516 +k1,334:17362511,29054187:195516 +k1,334:18217319,29054187:195516 +k1,334:22912536,29054187:195515 +k1,334:24601618,29054187:195516 +k1,334:25483296,29054187:195516 +k1,334:26697897,29054187:195516 +k1,334:27985897,29054187:195515 +k1,334:28840705,29054187:195516 +k1,334:31914562,29054187:195516 k1,334:32583029,29054187:0 ) (1,335:6630773,29919267:25952256,505283,134348 @@ -43586,10 +43740,10 @@ g1,345:-473656,-710413 ] ) ] -!21209 -}21 +!21242 +}22 !11 -{22 +{23 [1,361:4262630,47279633:28320399,43253760,0 (1,361:4262630,4025873:0,0,0 [1,361:-473656,4025873:0,0,0 @@ -44419,9 +44573,9 @@ g1,361:-473656,-710413 ) ] !23741 -}22 +}23 !11 -{23 +{24 [1,379:4262630,47279633:28320399,43253760,0 (1,379:4262630,4025873:0,0,0 [1,379:-473656,4025873:0,0,0 @@ -44886,81 +45040,61 @@ g1,370:11813360,28333277 k1,370:32583030,28333277:17570464 g1,370:32583030,28333277 ) -(1,373:6630773,29591573:25952256,513147,134348 -k1,372:7620507,29591573:269493 -k1,372:8909086,29591573:269494 -k1,372:10361504,29591573:269493 -k1,372:11290289,29591573:269493 -k1,372:13011405,29591573:269494 -k1,372:15698521,29591573:269493 -k1,372:16323875,29591573:269494 -k1,372:18872055,29591573:269493 -k1,372:20287773,29591573:269493 -k1,372:21760508,29591573:269494 -k1,372:23186711,29591573:269493 -k1,372:25066424,29591573:269493 -k1,372:29104893,29591573:269494 -k1,372:30322037,29591573:269493 -k1,372:32583029,29591573:0 -) -(1,373:6630773,30456653:25952256,505283,134348 -k1,372:9305833,30456653:272510 -k1,372:10387714,30456653:272511 -k1,372:12881895,30456653:272510 -k1,372:15968522,30456653:272511 -k1,372:17070062,30456653:272510 -k1,372:21007346,30456653:272511 -k1,372:22828472,30456653:272510 -k1,372:27453229,30456653:272511 -k1,372:28411901,30456653:272510 -k1,372:29455115,30456653:272511 -k1,372:32051532,30456653:272510 +(1,373:6630773,29591573:25952256,505283,134348 +k1,372:7634784,29591573:196608 +k1,372:11496165,29591573:196608 +k1,372:13241389,29591573:196608 +k1,372:17790243,29591573:196608 +k1,372:18673013,29591573:196608 +k1,372:19640324,29591573:196608 +k1,372:22160839,29591573:196608 +k1,372:23062614,29591573:196608 +k1,372:24429695,29591573:196608 +k1,372:25730585,29591573:196608 +k1,372:27339494,29591573:196608 +k1,372:28736066,29591573:196608 +k1,372:29706654,29591573:196608 +k1,373:32583029,29591573:0 +) +(1,373:6630773,30456653:25952256,513147,134348 +k1,372:8549372,30456653:292651 +k1,372:10896576,30456653:292650 +k1,372:13164387,30456653:293211 +k1,372:13926931,30456653:292651 +k1,372:15352043,30456653:292650 +k1,372:17360427,30456653:292651 +k1,372:19523476,30456653:292651 +k1,372:20835212,30456653:292651 +k1,372:23729641,30456653:292650 +k1,372:24681584,30456653:292651 +k1,372:29326481,30456653:292651 +k1,372:30235169,30456653:292650 +k1,372:31116333,30456653:292651 k1,372:32583029,30456653:0 ) (1,373:6630773,31321733:25952256,505283,134348 -k1,372:8036050,31321733:234804 -k1,372:9375136,31321733:234804 -k1,372:11022241,31321733:234804 -k1,372:12457009,31321733:234804 -k1,372:13465793,31321733:234804 -k1,372:18100684,31321733:234804 -k1,372:20390042,31321733:234804 -k1,372:22599659,31321733:235017 -k1,372:23304356,31321733:234804 -k1,372:24671622,31321733:234804 -k1,372:26622159,31321733:234804 -k1,372:28727361,31321733:234804 -k1,372:29981250,31321733:234804 +k1,372:10163718,31321733:215513 +k1,372:11570675,31321733:215512 +k1,372:15716382,31321733:215513 +k1,372:16559729,31321733:215512 +k1,372:19126674,31321733:215513 +k1,372:21297125,31321733:215512 +k1,372:23193636,31321733:215513 +k1,372:23940645,31321733:215512 +k1,372:24512018,31321733:215513 +k1,372:26309569,31321733:215512 +k1,372:28347638,31321733:215513 +k1,372:30111766,31321733:215512 +k1,372:31773659,31321733:215513 k1,372:32583029,31321733:0 ) (1,373:6630773,32186813:25952256,513147,134348 -k1,372:7513707,32186813:223642 -k1,372:12089594,32186813:223641 -k1,372:12929274,32186813:223642 -k1,372:13741428,32186813:223641 -k1,372:15431766,32186813:223642 -k1,372:18972840,32186813:223642 -k1,372:20387926,32186813:223641 -k1,372:24541762,32186813:223642 -k1,372:25393238,32186813:223641 -k1,372:27968312,32186813:223642 -k1,372:30146892,32186813:223641 -k1,372:32051532,32186813:223642 -k1,372:32583029,32186813:0 -) -(1,373:6630773,33051893:25952256,513147,134348 -g1,372:7185862,33051893 -g1,372:8967130,33051893 -g1,372:10988915,33051893 -g1,372:12736760,33051893 -g1,372:14382369,33051893 -g1,372:15390968,33051893 -g1,372:16206235,33051893 -g1,372:17424549,33051893 -g1,372:19610830,33051893 -g1,372:20469351,33051893 -k1,373:32583029,33051893:7433097 -g1,373:32583029,33051893 +g1,372:7446040,32186813 +g1,372:8664354,32186813 +g1,372:10850635,32186813 +g1,372:11709156,32186813 +k1,373:32583029,32186813:16193292 +g1,373:32583029,32186813 ) ] (1,379:32583029,45706769:0,0,0 @@ -44983,10 +45117,10 @@ g1,379:-473656,-710413 ] ) ] -!15336 -}23 +!14763 +}24 !11 -{24 +{25 [1,400:4262630,47279633:28320399,43253760,11795 (1,400:4262630,4025873:0,0,0 [1,400:-473656,4025873:0,0,0 @@ -45512,9 +45646,9 @@ g1,400:-473656,-710413 ) ] !14371 -}24 +}25 !11 -{25 +{26 [1,408:4262630,47279633:28320399,43253760,0 (1,408:4262630,4025873:0,0,0 [1,408:-473656,4025873:0,0,0 @@ -45752,35 +45886,35 @@ k1,399:29895398,13934951:157506 k1,399:32583029,13934951:0 ) (1,400:6630773,14800031:25952256,505283,134348 -k1,399:7232560,14800031:245927 -k1,399:8832462,14800031:245928 -k1,399:10662394,14800031:245927 -k1,399:13321358,14800031:245928 -k1,399:16202488,14800031:245927 -k1,399:19753397,14800031:245928 -k1,399:22001449,14800031:245927 -k1,399:23438822,14800031:245928 -k1,399:27010701,14800031:245927 -k1,399:27671425,14800031:245881 -k1,399:29846078,14800031:245928 -k1,399:30704767,14800031:245927 +k1,399:7218087,14800031:231454 +k1,399:8803515,14800031:231454 +k1,399:10618973,14800031:231453 +k1,399:13263463,14800031:231454 +k1,399:16130120,14800031:231454 +k1,399:19666555,14800031:231454 +k1,399:22073803,14800031:231453 +k1,399:23496702,14800031:231454 +k1,399:27054108,14800031:231454 +k1,399:27700372,14800031:231421 +k1,399:29860551,14800031:231454 +k1,399:30704767,14800031:231454 k1,400:32583029,14800031:0 ) (1,400:6630773,15665111:25952256,513147,126483 -k1,399:8266036,15665111:255075 -k1,399:10686422,15665111:255076 -k1,399:11592925,15665111:255075 -k1,399:12636399,15665111:255076 -k1,399:16780380,15665111:255075 -k1,399:17648218,15665111:255076 -k1,399:18922378,15665111:255075 -k1,399:20492761,15665111:255075 -k1,399:21407129,15665111:255076 -k1,399:23037805,15665111:255075 -k1,399:23648741,15665111:255076 -k1,399:26934856,15665111:255075 -k1,399:28450189,15665111:255076 -k1,399:29364556,15665111:255075 +k1,399:8427302,15665111:242670 +k1,399:10835283,15665111:242671 +k1,399:11729381,15665111:242670 +k1,399:12760449,15665111:242670 +k1,399:16892026,15665111:242671 +k1,399:17747458,15665111:242670 +k1,399:19009214,15665111:242671 +k1,399:20567192,15665111:242670 +k1,399:21469154,15665111:242670 +k1,399:23087426,15665111:242671 +k1,399:23685956,15665111:242670 +k1,399:26959666,15665111:242670 +k1,399:28462594,15665111:242671 +k1,399:29364556,15665111:242670 k1,399:32583029,15665111:0 ) (1,400:6630773,16530191:25952256,513147,126483 @@ -45826,19 +45960,19 @@ g1,400:32583029,18260351 ) (1,402:6630773,19125431:25952256,513147,134348 h1,401:6630773,19125431:983040,0,0 -k1,401:8423083,19125431:181435 -k1,401:9623603,19125431:181435 -k1,401:11172120,19125431:181436 -k1,401:12012847,19125431:181435 -k1,401:15366880,19125431:181435 -k1,401:16694540,19125431:181435 -k1,401:18332840,19125431:181435 -k1,401:19141455,19125431:181436 -k1,401:21267343,19125431:181435 -k1,401:22640223,19125431:181435 -k1,401:25862512,19125431:181418 -k1,401:28715194,19125431:181435 -k1,401:31655695,19125431:181435 +k1,401:8396363,19125431:154715 +k1,401:9570164,19125431:154716 +k1,401:11091960,19125431:154715 +k1,401:11905968,19125431:154716 +k1,401:15233281,19125431:154715 +k1,401:16534221,19125431:154715 +k1,401:18145802,19125431:154716 +k1,401:18927696,19125431:154715 +k1,401:21200534,19125431:154715 +k1,401:22546695,19125431:154716 +k1,401:25915951,19125431:154715 +k1,401:28741914,19125431:154716 +k1,401:31655695,19125431:154715 k1,402:32583029,19125431:0 ) (1,402:6630773,19990511:25952256,513147,126483 @@ -45917,21 +46051,21 @@ g1,402:32583029,24315911 ) (1,404:6630773,25180991:25952256,513147,134348 h1,403:6630773,25180991:983040,0,0 -k1,403:9442197,25180991:283045 -k1,403:11861060,25180991:283045 -k1,403:13824448,25180991:283045 -k1,403:14774649,25180991:283045 -k1,403:15472453,25180991:282961 -k1,403:16441660,25180991:283045 -k1,403:17080565,25180991:283045 -k1,403:20439870,25180991:283045 -k1,403:23638612,25180991:283045 -k1,403:26123666,25180991:283044 -k1,403:27058139,25180991:283045 -k1,403:28499777,25180991:282961 -k1,403:29465707,25180991:283045 -k1,403:31353728,25180991:283045 -k1,403:32051532,25180991:282961 +k1,403:9442809,25180991:283657 +k1,403:11862284,25180991:283657 +k1,403:13826283,25180991:283656 +k1,403:14777096,25180991:283657 +k1,403:15475511,25180991:283572 +k1,403:16445330,25180991:283657 +k1,403:17084847,25180991:283657 +k1,403:20444763,25180991:283656 +k1,403:23644117,25180991:283657 +k1,403:26129784,25180991:283657 +k1,403:27064869,25180991:283657 +k1,403:28507117,25180991:283571 +k1,403:29473659,25180991:283657 +k1,403:31353117,25180991:283657 +k1,403:32051532,25180991:283572 k1,403:32583029,25180991:0 ) (1,404:6630773,26046071:25952256,513147,134348 @@ -45950,44 +46084,43 @@ k1,403:31501030,26046071:252423 k1,404:32583029,26046071:0 ) (1,404:6630773,26911151:25952256,513147,134348 -k1,403:8911320,26911151:240411 -k1,403:13353244,26911151:240411 -k1,403:14209694,26911151:240412 -k1,403:15469190,26911151:240411 -k1,403:16124403,26911151:240370 -k1,403:19280511,26911151:240411 -k1,403:20265411,26911151:240411 -k1,403:21524907,26911151:240411 -k1,403:24592541,26911151:240411 -k1,403:28161527,26911151:240412 -k1,403:29053366,26911151:240411 -k1,403:30895477,26911151:240411 +k1,403:8938654,26911151:267745 +k1,403:13407912,26911151:267745 +k1,403:14291695,26911151:267745 +k1,403:15578525,26911151:267745 +k1,403:16261044,26911151:267676 +k1,403:19444486,26911151:267745 +k1,403:20456720,26911151:267745 +k1,403:21743550,26911151:267745 +k1,403:24838518,26911151:267745 +k1,403:26309504,26911151:267745 +k1,403:29763609,26911151:267745 +k1,403:30562851,26911151:267745 +k1,403:31896867,26911151:267745 k1,403:32583029,26911151:0 ) (1,404:6630773,27776231:25952256,513147,134348 -k1,403:9904196,27776231:197163 -k1,403:13447626,27776231:197162 -k1,403:14848030,27776231:197163 -k1,403:18231552,27776231:197162 -k1,403:18960212,27776231:197163 -k1,403:20223646,27776231:197163 -k1,403:23630106,27776231:197162 -k1,403:24513431,27776231:197163 -k1,403:25729679,27776231:197163 -k1,403:26341682,27776231:197160 -k1,403:29280871,27776231:197163 -k1,403:30009530,27776231:197162 -k1,403:31225778,27776231:197163 +k1,403:10073382,27776231:233311 +k1,403:10992854,27776231:233310 +k1,403:12173816,27776231:233311 +k1,403:14109097,27776231:233311 +k1,403:17515005,27776231:233310 +k1,403:20278006,27776231:233311 +k1,403:21530401,27776231:233310 +k1,403:22178521,27776231:233277 +k1,403:25153857,27776231:233310 +k1,403:25918665,27776231:233311 +k1,403:27171061,27776231:233311 +k1,403:28779972,27776231:233310 +k1,403:31069803,27776231:233311 k1,403:32583029,27776231:0 ) (1,404:6630773,28641311:25952256,513147,134348 -g1,403:8860308,28641311 -g1,403:10572763,28641311 -g1,403:15828750,28641311 -g1,403:16687271,28641311 -g1,403:17905585,28641311 -g1,403:18519657,28641311 -k1,404:32583029,28641311:11168647 +g1,403:11886760,28641311 +g1,403:12745281,28641311 +g1,403:13963595,28641311 +g1,403:14577667,28641311 +k1,404:32583029,28641311:15110637 g1,404:32583029,28641311 ) (1,406:6630773,29506391:25952256,513147,134348 @@ -46056,134 +46189,134 @@ k1,405:30981329,32101631:160741 k1,405:32583029,32101631:0 ) (1,406:6630773,32966711:25952256,513147,126483 -k1,405:9412064,32966711:226698 -k1,405:11206382,32966711:226697 -k1,405:13618050,32966711:226698 -k1,405:15679755,32966711:226697 -k1,405:16321268,32966711:226670 -k1,405:18804370,32966711:226697 -k1,405:19717230,32966711:226698 -k1,405:20299787,32966711:226697 -k1,405:22024638,32966711:226698 -k1,405:24145982,32966711:226698 -k1,405:28687569,32966711:226697 -k1,406:32583029,32966711:0 +k1,405:9366604,32966711:181238 +k1,405:11115464,32966711:181239 +k1,405:13481672,32966711:181238 +k1,405:14836661,32966711:181239 +k1,405:15432724,32966711:181220 +k1,405:17870368,32966711:181239 +k1,405:18737768,32966711:181238 +k1,405:19274867,32966711:181239 +k1,405:20954258,32966711:181238 +k1,405:23030143,32966711:181239 +k1,405:27526271,32966711:181238 +k1,405:32583029,32966711:0 ) (1,406:6630773,33831791:25952256,513147,134348 -k1,405:8135994,33831791:237755 -k1,405:9040905,33831791:237755 -k1,405:9805570,33831791:237756 -k1,405:10990976,33831791:237755 -k1,405:12321216,33831791:237755 -k1,405:13175009,33831791:237755 -k1,405:16285208,33831791:237756 -k1,405:19784034,33831791:237755 -k1,405:20783317,33831791:237755 -k1,405:23153614,33831791:237755 -k1,405:26833320,33831791:237755 -k1,405:28262521,33831791:237756 -k1,405:30000395,33831791:237755 -k1,405:31970267,33831791:237755 -k1,405:32583029,33831791:0 +k1,405:7456832,33831791:158903 +k1,405:8142644,33831791:158903 +k1,405:9249198,33831791:158903 +k1,405:10500586,33831791:158903 +k1,405:11275527,33831791:158903 +k1,405:14306873,33831791:158903 +k1,405:17726847,33831791:158903 +k1,405:18647277,33831791:158902 +k1,405:20938722,33831791:158903 +k1,405:24539576,33831791:158903 +k1,405:25889924,33831791:158903 +k1,405:27548946,33831791:158903 +k1,405:29439966,33831791:158903 +k1,405:30211631,33831791:158903 +k1,405:31389619,33831791:158903 +k1,406:32583029,33831791:0 ) (1,406:6630773,34696871:25952256,513147,126483 -k1,405:7859448,34696871:209590 -k1,405:11298653,34696871:209591 -k1,405:12167535,34696871:209590 -k1,405:15575937,34696871:209590 -k1,405:16401566,34696871:209591 -k1,405:17971683,34696871:209590 -k1,405:20695889,34696871:209590 -k1,405:22844691,34696871:209591 -k1,405:24245726,34696871:209590 -k1,405:27897268,34696871:209591 -k1,405:30081520,34696871:209652 -k1,406:32583029,34696871:0 +k1,405:8983392,34696871:227942 +k1,405:9870625,34696871:227941 +k1,405:13297379,34696871:227942 +k1,405:14141359,34696871:227942 +k1,405:15729827,34696871:227941 +k1,405:18472385,34696871:227942 +k1,405:20639538,34696871:227942 +k1,405:22058924,34696871:227941 +k1,405:25728817,34696871:227942 +k1,405:27931531,34696871:228114 +k1,405:30747489,34696871:227941 +k1,405:31563944,34696871:227942 +k1,405:32583029,34696871:0 ) (1,406:6630773,35561951:25952256,513147,134348 -k1,405:7447053,35561951:227767 -k1,405:8693905,35561951:227767 -k1,405:11837370,35561951:227768 -k1,405:16266650,35561951:227767 -k1,405:16850277,35561951:227767 -k1,405:19158157,35561951:227767 -k1,405:20045216,35561951:227767 -k1,405:21292068,35561951:227767 -k1,405:21873046,35561951:227739 -k1,405:25116780,35561951:227767 -k1,405:26541234,35561951:227767 -k1,405:27183816,35561951:227739 -k1,405:30153609,35561951:227767 +k1,405:9802780,35561951:256310 +k1,405:14260603,35561951:256310 +k1,405:14872773,35561951:256310 +k1,405:17209196,35561951:256310 +k1,405:18124797,35561951:256309 +k1,405:19400192,35561951:256310 +k1,405:20009684,35561951:256253 +k1,405:23281961,35561951:256310 +k1,405:24734958,35561951:256310 +k1,405:25406053,35561951:256252 +k1,405:28404389,35561951:256310 +k1,405:31090119,35561951:256310 k1,405:32583029,35561951:0 ) (1,406:6630773,36427031:25952256,513147,134348 -k1,405:8364803,36427031:241120 -k1,405:9981525,36427031:241121 -k1,405:13148172,36427031:241120 -k1,405:14522410,36427031:241120 -k1,405:18280192,36427031:241120 -k1,405:21156516,36427031:241121 -k1,405:21750833,36427031:241078 -k1,405:23183398,36427031:241120 -k1,405:23839319,36427031:241078 -k1,405:27249761,36427031:241121 -k1,405:29365211,36427031:241120 -k1,405:32583029,36427031:0 +k1,405:8292961,36427031:286587 +k1,405:11505075,36427031:286587 +k1,405:12924779,36427031:286586 +k1,405:16728028,36427031:286587 +k1,405:19649818,36427031:286587 +k1,405:20289556,36427031:286499 +k1,405:21767588,36427031:286587 +k1,405:22468930,36427031:286499 +k1,405:25924838,36427031:286587 +k1,405:28085754,36427031:286586 +k1,405:31590159,36427031:286587 +k1,406:32583029,36427031:0 ) (1,406:6630773,37292111:25952256,513147,134348 -k1,405:10408195,37292111:260760 -k1,405:11660516,37292111:260761 -k1,405:18567282,37292111:260760 -k1,405:19487334,37292111:260760 -k1,405:20434257,37292111:260761 -k1,405:24008517,37292111:260760 -k1,405:29041609,37292111:260760 -k1,405:29930205,37292111:260761 -k1,405:31841162,37292111:260760 -k1,406:32583029,37292111:0 +k1,405:9520547,37292111:215905 +k1,405:10728011,37292111:215904 +k1,405:17589922,37292111:215905 +k1,405:18465118,37292111:215904 +k1,405:19367185,37292111:215905 +k1,405:22896589,37292111:215904 +k1,405:27884826,37292111:215905 +k1,405:28728565,37292111:215904 +k1,405:30594667,37292111:215905 +k1,405:32583029,37292111:0 ) (1,406:6630773,38157191:25952256,505283,134348 -k1,405:8262906,38157191:279470 -k1,405:10298086,38157191:279470 -k1,405:10992318,38157191:279389 -k1,405:14098355,38157191:279470 -k1,405:16235771,38157191:279470 -k1,405:17131279,38157191:279470 -k1,405:20903817,38157191:279469 -k1,405:22379974,38157191:279470 -k1,405:23074207,38157191:279390 -k1,405:26195972,38157191:279469 -k1,405:27006939,38157191:279470 -k1,405:28352680,38157191:279470 +k1,405:8748243,38157191:188090 +k1,405:9351165,38157191:188079 +k1,405:12365822,38157191:188090 +k1,405:14411858,38157191:188090 +k1,405:15215986,38157191:188090 +k1,405:18897145,38157191:188090 +k1,405:20281921,38157191:188089 +k1,405:20884843,38157191:188079 +k1,405:23915229,38157191:188090 +k1,405:24634816,38157191:188090 +k1,405:25889177,38157191:188090 +k1,405:30394124,38157191:188090 +k1,405:31773659,38157191:188090 k1,405:32583029,38157191:0 ) (1,406:6630773,39022271:25952256,513147,134348 -k1,405:8076994,39022271:254776 -k1,405:9141139,39022271:254775 -k1,405:11524524,39022271:254776 -k1,405:14861458,39022271:254776 -k1,405:15775526,39022271:254776 -k1,405:16818699,39022271:254775 -k1,405:19976065,39022271:254776 -k1,405:22235587,39022271:254776 -k1,405:27011037,39022271:254776 -k1,405:28284897,39022271:254775 -k1,405:28954460,39022271:254720 -k1,405:32051532,39022271:254776 +k1,405:9002703,39022271:243321 +k1,405:12328183,39022271:243322 +k1,405:13230796,39022271:243321 +k1,405:14262515,39022271:243321 +k1,405:17408426,39022271:243321 +k1,405:19656494,39022271:243322 +k1,405:24420489,39022271:243321 +k1,405:25682895,39022271:243321 +k1,405:26341015,39022271:243277 +k1,405:29426633,39022271:243322 +k1,405:30201451,39022271:243321 k1,405:32583029,39022271:0 ) (1,406:6630773,39887351:25952256,513147,134348 -g1,405:9211580,39887351 -g1,405:10172337,39887351 -g1,405:11390651,39887351 -g1,405:14764444,39887351 -g1,405:15622965,39887351 -g1,405:16610592,39887351 -g1,405:21866579,39887351 -g1,405:22681846,39887351 -g1,405:23900160,39887351 -g1,405:24514232,39887351 -k1,406:32583029,39887351:5274342 +g1,405:7591530,39887351 +g1,405:8809844,39887351 +g1,405:12183637,39887351 +g1,405:13042158,39887351 +g1,405:14029785,39887351 +g1,405:19285772,39887351 +g1,405:20101039,39887351 +g1,405:21319353,39887351 +g1,405:21933425,39887351 +k1,406:32583029,39887351:7855149 g1,406:32583029,39887351 ) (1,408:6630773,40752431:25952256,513147,134348 @@ -46265,17 +46398,17 @@ k1,407:30296478,44212751:175281 k1,407:32583029,44212751:0 ) (1,408:6630773,45077831:25952256,505283,134348 -k1,407:7494239,45077831:247428 -k1,407:9443637,45077831:247428 -k1,407:12767326,45077831:247429 -k1,407:17367000,45077831:247428 -k1,407:20787026,45077831:247428 -k1,407:22528020,45077831:247428 -k1,407:23461610,45077831:247428 -k1,407:24336217,45077831:247428 -k1,407:26040511,45077831:247429 -k1,407:29502480,45077831:247428 -k1,407:31914562,45077831:247428 +k1,407:7478451,45077831:231640 +k1,407:9412061,45077831:231640 +k1,407:12719961,45077831:231640 +k1,407:17303847,45077831:231640 +k1,407:20708085,45077831:231640 +k1,407:22433291,45077831:231640 +k1,407:23351093,45077831:231640 +k1,407:24209912,45077831:231640 +k1,407:25898417,45077831:231640 +k1,407:29344598,45077831:231640 +k1,407:31914562,45077831:231640 k1,408:32583029,45077831:0 ) ] @@ -46299,14 +46432,14 @@ g1,408:-473656,-710413 ] ) ] -!22433 -}25 +!22423 +}26 Input:224:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:225:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{26 +{27 [1,431:4262630,47279633:28320399,43253760,0 (1,431:4262630,4025873:0,0,0 [1,431:-473656,4025873:0,0,0 @@ -46666,15 +46799,16 @@ k1,411:32583029,19230297:0 ) (1,412:6630773,20095377:25952256,513147,126483 g1,411:7481430,20095377 -g1,411:11933946,20095377 -g1,411:13152260,20095377 -g1,411:16312406,20095377 -g1,411:17703080,20095377 -g1,411:20686934,20095377 -g1,411:23164850,20095377 -g1,411:24023371,20095377 -g1,411:24578460,20095377 -k1,412:32583029,20095377:6119099 +g1,411:11834331,20095377 +g1,411:14868647,20095377 +g1,411:16086961,20095377 +g1,411:19247107,20095377 +g1,411:20637781,20095377 +g1,411:23621635,20095377 +g1,411:26099551,20095377 +g1,411:26958072,20095377 +g1,411:27513161,20095377 +k1,412:32583029,20095377:3184398 g1,412:32583029,20095377 ) v1,414:6630773,20960457:0,393216,0 @@ -46796,95 +46930,93 @@ k1,420:29892776,28115984:230286 k1,420:32583029,28115984:0 ) (1,421:6630773,28981064:25952256,513147,126483 -k1,420:7531040,28981064:248839 -k1,420:10258451,28981064:248839 -k1,420:12769593,28981064:248839 -k1,420:14209876,28981064:248838 -k1,420:15724871,28981064:248839 -k1,420:16461248,28981064:248789 -k1,420:18426475,28981064:248839 -k1,420:21185343,28981064:248839 -k1,420:22093474,28981064:248839 -k1,420:24053458,28981064:248839 -k1,420:25434758,28981064:248838 -k1,420:28097943,28981064:248839 -k1,420:31655695,28981064:248839 -k1,421:32583029,28981064:0 +k1,420:7484859,28981064:202658 +k1,420:10166088,28981064:202657 +k1,420:12804719,28981064:202658 +k1,420:14198821,28981064:202657 +k1,420:15667635,28981064:202658 +k1,420:16357877,28981064:202654 +k1,420:17914509,28981064:202658 +k1,420:19833554,28981064:202657 +k1,420:22546241,28981064:202658 +k1,420:23408190,28981064:202657 +k1,420:25321993,28981064:202658 +k1,420:26657112,28981064:202657 +k1,420:29274116,28981064:202658 +k1,420:32583029,28981064:0 ) (1,421:6630773,29846144:25952256,513147,134348 -k1,420:10598525,29846144:190257 -k1,420:11440209,29846144:190256 -k1,420:12649551,29846144:190257 -k1,420:13254642,29846144:190248 -k1,420:16186924,29846144:190256 -k1,420:18156483,29846144:190257 -k1,420:19418908,29846144:190256 -k1,420:20067262,29846144:190257 -k1,420:20789016,29846144:190257 -k1,420:23782902,29846144:190256 -k1,420:25164604,29846144:190257 -k1,420:27098773,29846144:190256 -k1,420:31591469,29846144:190257 -k1,420:32583029,29846144:0 +k1,420:11469717,29846144:240283 +k1,420:12361427,29846144:240282 +k1,420:13620795,29846144:240283 +k1,420:14275879,29846144:240241 +k1,420:17258188,29846144:240283 +k1,420:19277772,29846144:240282 +k1,420:22452757,29846144:240283 +k1,420:24436952,29846144:240282 +k1,420:28979674,29846144:240283 +k1,420:30411401,29846144:240282 +k1,420:31841162,29846144:240283 +k1,421:32583029,29846144:0 ) (1,421:6630773,30711224:25952256,505283,134348 -k1,420:10042960,30711224:202889 -k1,420:10861887,30711224:202889 -k1,420:13423417,30711224:202889 -k1,420:14041146,30711224:202886 -k1,420:17382554,30711224:202889 -k1,420:20109890,30711224:202889 -k1,420:21509466,30711224:202889 -k1,420:25259819,30711224:202889 -k1,420:26481793,30711224:202889 -k1,420:27099522,30711224:202886 -k1,420:30044437,30711224:202889 -k1,420:31115678,30711224:202889 -k1,421:32583029,30711224:0 +k1,420:8522634,30711224:201032 +k1,420:9715226,30711224:201032 +k1,420:13125556,30711224:201032 +k1,420:13942626,30711224:201032 +k1,420:16502299,30711224:201032 +k1,420:17118172,30711224:201030 +k1,420:20457723,30711224:201032 +k1,420:23183202,30711224:201032 +k1,420:24580921,30711224:201032 +k1,420:28155746,30711224:201032 +k1,420:28771619,30711224:201030 +k1,420:31714677,30711224:201032 +k1,420:32583029,30711224:0 ) (1,421:6630773,31576304:25952256,513147,134348 -k1,420:7946135,31576304:188143 -k1,420:9400433,31576304:188142 -k1,420:10692858,31576304:188143 -k1,420:11628767,31576304:188143 -k1,420:13295402,31576304:188143 -k1,420:14431195,31576304:188142 -k1,420:17381681,31576304:188143 -k1,420:20623802,31576304:188143 -k1,420:23388165,31576304:188143 -k1,420:24767752,31576304:188142 -k1,420:28032155,31576304:188143 -k1,420:31386342,31576304:188143 +k1,420:9336278,31576304:217103 +k1,420:10645865,31576304:217102 +k1,420:11967250,31576304:217103 +k1,420:12932119,31576304:217103 +k1,420:14627714,31576304:217103 +k1,420:15792467,31576304:217102 +k1,420:18771913,31576304:217103 +k1,420:22042994,31576304:217103 +k1,420:24836317,31576304:217103 +k1,420:26244864,31576304:217102 +k1,420:29538227,31576304:217103 k1,420:32583029,31576304:0 ) (1,421:6630773,32441384:25952256,513147,134348 -k1,420:9831001,32441384:246520 -k1,420:10736812,32441384:246519 -k1,420:12002417,32441384:246520 -k1,420:12663732,32441384:246472 -k1,420:16393491,32441384:246520 -k1,420:18220083,32441384:246519 -k1,420:19643630,32441384:246520 -k1,420:20541578,32441384:246520 -k1,420:22296080,32441384:246519 -k1,420:23561685,32441384:246520 -k1,420:25981379,32441384:246520 -k1,420:29019732,32441384:246519 -k1,420:30833873,32441384:246520 +k1,420:8004267,32441384:198434 +k1,420:11156408,32441384:198433 +k1,420:12014134,32441384:198434 +k1,420:13231653,32441384:198434 +k1,420:13844928,32441384:198432 +k1,420:17526601,32441384:198434 +k1,420:19305108,32441384:198434 +k1,420:20680568,32441384:198433 +k1,420:21530430,32441384:198434 +k1,420:23236846,32441384:198433 +k1,420:24454365,32441384:198434 +k1,420:26825973,32441384:198434 +k1,420:29816240,32441384:198433 +k1,420:31582295,32441384:198434 k1,421:32583029,32441384:0 ) (1,421:6630773,33306464:25952256,513147,126483 -k1,420:9015211,33306464:225682 -k1,420:10818345,33306464:225682 -k1,420:11853397,33306464:225682 -k1,420:12845195,33306464:225682 -k1,420:14089962,33306464:225682 -k1,420:17077986,33306464:225681 -k1,420:19276302,33306464:225682 -k1,420:20693429,33306464:225682 -k1,420:23995371,33306464:225682 -k1,420:28390453,33306464:225682 -k1,420:29302297,33306464:225682 +k1,420:9695594,33306464:157644 +k1,420:11430689,33306464:157643 +k1,420:12397703,33306464:157644 +k1,420:13321463,33306464:157644 +k1,420:14498191,33306464:157643 +k1,420:17418178,33306464:157644 +k1,420:19548455,33306464:157643 +k1,420:20897544,33306464:157644 +k1,420:24131448,33306464:157644 +k1,420:28458491,33306464:157643 +k1,420:29302297,33306464:157644 k1,420:32583029,33306464:0 ) (1,421:6630773,34171544:25952256,505283,126483 @@ -47121,10 +47253,10 @@ g1,431:-473656,-710413 ] ) ] -!23392 -}26 +!23352 +}27 !11 -{27 +{28 [1,440:4262630,47279633:28320399,43253760,0 (1,440:4262630,4025873:0,0,0 [1,440:-473656,4025873:0,0,0 @@ -47823,11 +47955,11 @@ g1,440:-473656,-710413 ) ] !19745 -}27 +}28 Input:228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !193 -{28 +{29 [1,454:4262630,47279633:28320399,43253760,0 (1,454:4262630,4025873:0,0,0 [1,454:-473656,4025873:0,0,0 @@ -48333,36 +48465,36 @@ h1,445:32323507,39647361:0,0,0 k1,445:32583029,39647361:0 ) (1,446:6630773,40512441:25952256,513147,134348 -k1,445:7622286,40512441:231295 -k1,445:11256866,40512441:231295 -k1,445:13184888,40512441:231295 -k1,445:15070967,40512441:231295 -k1,445:17487888,40512441:231295 -k1,445:18177280,40512441:231295 -k1,445:18940073,40512441:231296 -k1,445:20701634,40512441:231295 -k1,445:22217435,40512441:231295 -k1,445:24872907,40512441:231295 -k1,445:25635699,40512441:231295 -k1,445:27629912,40512441:231295 -k1,445:29236808,40512441:231295 -k1,445:29823963,40512441:231295 +k1,445:7609881,40512441:218890 +k1,445:11232056,40512441:218890 +k1,445:13147673,40512441:218890 +k1,445:15021347,40512441:218890 +k1,445:17599533,40512441:218890 +k1,445:18276520,40512441:218890 +k1,445:19026908,40512441:218891 +k1,445:20776064,40512441:218890 +k1,445:22279460,40512441:218890 +k1,445:24922527,40512441:218890 +k1,445:25672914,40512441:218890 +k1,445:27654722,40512441:218890 +k1,445:29249213,40512441:218890 +k1,445:29823963,40512441:218890 k1,445:32583029,40512441:0 ) (1,446:6630773,41377521:25952256,513147,126483 -k1,445:8393238,41377521:204674 -k1,445:11233115,41377521:204674 -k1,445:12456875,41377521:204675 -k1,445:14042393,41377521:204674 -k1,445:15438512,41377521:204674 -k1,445:16413889,41377521:204674 -k1,445:20283336,41377521:204674 -k1,445:20902848,41377521:204669 -k1,445:24654986,41377521:204674 -k1,445:25487495,41377521:204674 -k1,445:28116347,41377521:204675 -k1,445:29340106,41377521:204674 -k1,445:31375856,41377521:204674 +k1,445:8379879,41377521:191315 +k1,445:11206397,41377521:191315 +k1,445:12416797,41377521:191315 +k1,445:13988957,41377521:191316 +k1,445:15371717,41377521:191315 +k1,445:16333735,41377521:191315 +k1,445:20189823,41377521:191315 +k1,445:20795973,41377521:191307 +k1,445:24534752,41377521:191315 +k1,445:25353903,41377521:191316 +k1,445:28143065,41377521:191315 +k1,445:29353465,41377521:191315 +k1,445:31375856,41377521:191315 k1,445:32583029,41377521:0 ) (1,446:6630773,42242601:25952256,513147,134348 @@ -48452,13 +48584,13 @@ g1,454:-473656,-710413 ) ] !17587 -}28 +}29 Input:230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:232:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:233:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{29 +{30 [1,466:4262630,47279633:28320399,43253760,0 (1,466:4262630,4025873:0,0,0 [1,466:-473656,4025873:0,0,0 @@ -48944,21 +49076,21 @@ g1,460:32583029,24736938 ) (1,462:6630773,25602018:25952256,513147,134348 h1,461:6630773,25602018:983040,0,0 -k1,461:8454335,25602018:212687 -k1,461:9870263,25602018:212687 -k1,461:11664989,25602018:212687 -k1,461:12090654,25602018:212673 -k1,461:14733416,25602018:212687 -k1,461:16321704,25602018:212687 -k1,461:16890251,25602018:212687 -k1,461:20194927,25602018:212687 -k1,461:21066906,25602018:212687 -k1,461:24142206,25602018:212687 -k1,461:25164263,25602018:212687 -k1,461:26396035,25602018:212687 -k1,461:27701207,25602018:212687 -k1,461:28581050,25602018:212687 -k1,461:31391584,25602018:212687 +k1,461:8442756,25602018:201108 +k1,461:9847105,25602018:201108 +k1,461:11803923,25602018:201108 +k1,461:12218022,25602018:201107 +k1,461:14849205,25602018:201108 +k1,461:16425914,25602018:201108 +k1,461:16982882,25602018:201108 +k1,461:20275979,25602018:201108 +k1,461:21136379,25602018:201108 +k1,461:24200100,25602018:201108 +k1,461:25210578,25602018:201108 +k1,461:26430772,25602018:201109 +k1,461:27724365,25602018:201108 +k1,461:28592629,25602018:201108 +k1,461:31391584,25602018:201108 k1,461:32583029,25602018:0 ) (1,462:6630773,26467098:25952256,513147,134348 @@ -49118,208 +49250,202 @@ k1,465:30795207,35897772:242688 k1,465:32583029,35897772:0 ) (1,466:6630773,36762852:25952256,505283,134348 -k1,465:8290147,36762852:181537 -k1,465:9237800,36762852:181537 -k1,465:11709165,36762852:181537 -k1,465:14801156,36762852:181537 -k1,465:17766662,36762852:181537 -k1,465:18564237,36762852:181537 -k1,465:19516478,36762852:181538 -k1,465:20112840,36762852:181519 -k1,465:22643187,36762852:181537 -k1,465:23816284,36762852:181537 -k1,465:26209661,36762852:181537 -k1,465:27019033,36762852:181537 -k1,465:27615396,36762852:181520 -k1,465:28816018,36762852:181537 -k1,465:30880404,36762852:181537 -k1,466:32583029,36762852:0 +k1,465:8412330,36762852:303720 +k1,465:9482166,36762852:303720 +k1,465:12075714,36762852:303720 +k1,465:15289888,36762852:303720 +k1,465:18377577,36762852:303720 +k1,465:19297335,36762852:303720 +k1,465:20371758,36762852:303720 +k1,465:21090217,36762852:303616 +k1,465:23742747,36762852:303720 +k1,465:25038027,36762852:303720 +k1,465:27553587,36762852:303720 +k1,465:28485142,36762852:303720 +k1,465:29377375,36762852:303720 +k1,465:30700180,36762852:303720 +k1,465:32583029,36762852:0 ) (1,466:6630773,37627932:25952256,513147,134348 -k1,465:8643165,37627932:224570 -k1,465:9972017,37627932:224570 -k1,465:10944353,37627932:224570 -k1,465:13207093,37627932:224570 -k1,465:14047701,37627932:224570 -k1,465:14628131,37627932:224570 -k1,465:16725720,37627932:224570 -k1,465:17933330,37627932:224570 -k1,465:18967270,37627932:224570 -k1,465:20536639,37627932:224570 -k1,465:21373971,37627932:224570 -k1,465:22617626,37627932:224570 -k1,465:24025121,37627932:224570 -k1,465:24932576,37627932:224570 -k1,465:27271337,37627932:224570 -k1,465:27851767,37627932:224570 -k1,465:30425147,37627932:224570 -k1,465:31841162,37627932:224570 -k1,466:32583029,37627932:0 +k1,465:10264171,37627932:275333 +k1,465:11643786,37627932:275333 +k1,465:12666885,37627932:275333 +k1,465:14980388,37627932:275333 +k1,465:15871759,37627932:275333 +k1,465:16502952,37627932:275333 +k1,465:18651304,37627932:275333 +k1,465:19909678,37627932:275334 +k1,465:20994381,37627932:275333 +k1,465:22614513,37627932:275333 +k1,465:23502608,37627932:275333 +k1,465:24797026,37627932:275333 +k1,465:26255284,37627932:275333 +k1,465:27213502,37627932:275333 +k1,465:29603026,37627932:275333 +k1,465:30234219,37627932:275333 +k1,465:32583029,37627932:0 ) (1,466:6630773,38493012:25952256,513147,126483 -k1,465:8865432,38493012:196489 -k1,465:10515509,38493012:196488 -k1,465:11979464,38493012:196489 -k1,465:14648626,38493012:196489 -k1,465:17367596,38493012:196489 -k1,465:20207806,38493012:196488 -k1,465:21213665,38493012:196489 -k1,465:21766014,38493012:196489 -k1,465:24724846,38493012:196489 -k1,465:28171264,38493012:196488 -k1,465:30884991,38493012:196489 +k1,465:8014834,38493012:192616 +k1,465:10881319,38493012:192616 +k1,465:12527525,38493012:192617 +k1,465:13987607,38493012:192616 +k1,465:16652896,38493012:192616 +k1,465:19367993,38493012:192616 +k1,465:22204331,38493012:192616 +k1,465:23206317,38493012:192616 +k1,465:23754794,38493012:192617 +k1,465:26709753,38493012:192616 +k1,465:30152299,38493012:192616 k1,465:32583029,38493012:0 ) (1,466:6630773,39358092:25952256,513147,134348 -k1,465:9408723,39358092:217458 -k1,465:11020131,39358092:217457 -k1,465:11652414,39358092:217440 -k1,465:12738224,39358092:217458 -k1,465:15639380,39358092:217457 -k1,465:16212698,39358092:217458 -k1,465:18351016,39358092:217458 -k1,465:19184511,39358092:217457 -k1,465:20746768,39358092:217458 -k1,465:23311726,39358092:217458 -k1,465:24180611,39358092:217457 -k1,465:26015498,39358092:217458 -k1,465:26999072,39358092:217458 -k1,465:28529872,39358092:217458 -k1,465:30314950,39358092:217457 -k1,465:30888268,39358092:217458 +k1,465:8508994,39358092:206397 +k1,465:11302098,39358092:206398 +k1,465:12902446,39358092:206397 +k1,465:13697357,39358092:206398 +k1,465:14772106,39358092:206397 +k1,465:17662202,39358092:206397 +k1,465:18224460,39358092:206398 +k1,465:20351717,39358092:206397 +k1,465:21174152,39358092:206397 +k1,465:22725349,39358092:206398 +k1,465:25279246,39358092:206397 +k1,465:26137072,39358092:206398 +k1,465:27960898,39358092:206397 +k1,465:28933411,39358092:206397 +k1,465:30453151,39358092:206398 +k1,465:32227169,39358092:206397 k1,465:32583029,39358092:0 ) (1,466:6630773,40223172:25952256,513147,134348 -k1,465:8281297,40223172:261161 -k1,465:11097051,40223172:261161 -k1,465:13800083,40223172:261161 -k1,465:15014793,40223172:261161 -k1,465:18120872,40223172:261161 -k1,465:19890016,40223172:261161 -k1,465:20767215,40223172:261161 -k1,465:22231617,40223172:261161 -k1,465:24413638,40223172:261161 -k1,465:25988141,40223172:261161 -k1,465:27643253,40223172:261161 -k1,465:29293777,40223172:261161 -k1,465:30206366,40223172:261161 -k1,465:31879828,40223172:261161 +k1,465:8515869,40223172:190335 +k1,465:10095568,40223172:190336 +k1,465:12840496,40223172:190335 +k1,465:15472702,40223172:190335 +k1,465:16616586,40223172:190335 +k1,465:19651840,40223172:190336 +k1,465:21350158,40223172:190335 +k1,465:22156531,40223172:190335 +k1,465:23550108,40223172:190336 +k1,465:25661303,40223172:190335 +k1,465:27164980,40223172:190335 +k1,465:28749266,40223172:190335 +k1,465:30328965,40223172:190336 +k1,465:31170728,40223172:190335 k1,465:32583029,40223172:0 ) (1,466:6630773,41088252:25952256,513147,134348 -k1,465:9106420,41088252:140599 -k1,465:9602879,41088252:140599 -k1,465:10726518,41088252:140599 -k1,465:13127454,41088252:140599 -k1,465:14287138,41088252:140599 -k1,465:16310586,41088252:140599 -k1,465:19200419,41088252:140598 -k1,465:20000310,41088252:140599 -k1,465:21159994,41088252:140599 -k1,465:24858543,41088252:140599 -k1,465:27157898,41088252:140599 -k1,465:28060025,41088252:140599 -k1,465:30466204,41088252:140599 -(1,465:30466204,41088252:0,452978,115847 -r1,466:32583029,41088252:2116825,568825,115847 -k1,465:30466204,41088252:-2116825 -) -(1,465:30466204,41088252:2116825,452978,115847 -k1,465:30466204,41088252:3277 -h1,465:32579752,41088252:0,411205,112570 -) -k1,465:32583029,41088252:0 +k1,465:7663167,41088252:242685 +k1,465:10240900,41088252:242685 +k1,465:10839444,41088252:242684 +k1,465:12065169,41088252:242685 +k1,465:14568191,41088252:242685 +k1,465:15829961,41088252:242685 +k1,465:17955494,41088252:242684 +k1,465:20947414,41088252:242685 +k1,465:21849391,41088252:242685 +k1,465:23111161,41088252:242685 +k1,465:26911795,41088252:242684 +k1,465:29313236,41088252:242685 +k1,465:30317449,41088252:242685 +k1,466:32583029,41088252:0 ) (1,466:6630773,41953332:25952256,513147,126483 -k1,465:8058248,41953332:236030 -k1,465:8650139,41953332:236031 -k1,465:10112348,41953332:236030 -k1,465:11331418,41953332:236030 -k1,465:12961400,41953332:236031 -k1,465:14216515,41953332:236030 -k1,465:16699775,41953332:236030 -k1,465:17595097,41953332:236030 -k1,465:21320920,41953332:236031 -k1,465:23979816,41953332:236030 -k1,465:28316434,41953332:236030 -k1,465:30711221,41953332:236031 -k1,465:31708779,41953332:236030 -k1,466:32583029,41953332:0 -) -(1,466:6630773,42818412:25952256,513147,115847 -k1,465:8311115,42818412:182844 -(1,465:8311115,42818412:0,452978,115847 -r1,466:11483075,42818412:3171960,568825,115847 -k1,465:8311115,42818412:-3171960 -) -(1,465:8311115,42818412:3171960,452978,115847 -k1,465:8311115,42818412:3277 -h1,465:11479798,42818412:0,411205,112570 -) -k1,465:11839589,42818412:182844 -k1,465:13219120,42818412:182844 -k1,465:15286780,42818412:182845 -k1,465:16782966,42818412:182844 -k1,465:18975799,42818412:182844 -k1,465:20361884,42818412:182844 -k1,465:22465588,42818412:182844 -k1,465:23752714,42818412:182844 -k1,465:24683325,42818412:182845 -k1,465:27180245,42818412:182844 -k1,465:27979127,42818412:182844 -k1,465:30279439,42818412:182844 +(1,465:6630773,41953332:0,452978,115847 +r1,466:8747598,41953332:2116825,568825,115847 +k1,465:6630773,41953332:-2116825 +) +(1,465:6630773,41953332:2116825,452978,115847 +k1,465:6630773,41953332:3277 +h1,465:8744321,41953332:0,411205,112570 +) +k1,465:8963210,41953332:215612 +k1,465:10370268,41953332:215613 +k1,465:10941740,41953332:215612 +k1,465:12383531,41953332:215612 +k1,465:13582183,41953332:215612 +k1,465:15191747,41953332:215613 +k1,465:16426444,41953332:215612 +k1,465:18889286,41953332:215612 +k1,465:19764190,41953332:215612 +k1,465:23469595,41953332:215613 +k1,465:26108073,41953332:215612 +k1,465:30424273,41953332:215612 +k1,465:32583029,41953332:0 +) +(1,466:6630773,42818412:25952256,513147,126483 +k1,465:7634682,42818412:242381 +k1,465:10142643,42818412:242381 +(1,465:10142643,42818412:0,452978,115847 +r1,466:13314603,42818412:3171960,568825,115847 +k1,465:10142643,42818412:-3171960 +) +(1,465:10142643,42818412:3171960,452978,115847 +k1,465:10142643,42818412:3277 +h1,465:13311326,42818412:0,411205,112570 +) +k1,465:13730654,42818412:242381 +k1,465:15169722,42818412:242381 +k1,465:17296918,42818412:242381 +k1,465:18852641,42818412:242381 +k1,465:21105012,42818412:242382 +k1,465:22550634,42818412:242381 +k1,465:24713875,42818412:242381 +k1,465:26060538,42818412:242381 +k1,465:27050685,42818412:242381 +k1,465:29607142,42818412:242381 +k1,465:30465561,42818412:242381 k1,465:32583029,42818412:0 ) (1,466:6630773,43683492:25952256,513147,134348 -k1,465:8642903,43683492:201370 -k1,465:9835833,43683492:201370 -k1,465:10846573,43683492:201370 -k1,465:12715179,43683492:201370 -k1,465:14502520,43683492:201370 -k1,465:15513260,43683492:201370 -k1,465:17045011,43683492:201370 -k1,465:18265467,43683492:201371 -k1,465:19780179,43683492:201370 -k1,465:22161932,43683492:201370 -k1,465:23111068,43683492:201370 -k1,465:26439816,43683492:201370 -k1,465:27324071,43683492:201370 -k1,465:28334811,43683492:201370 -k1,465:30044820,43683492:201370 +k1,465:9264053,43683492:208448 +k1,465:11304888,43683492:208448 +k1,465:12504896,43683492:208448 +k1,465:13522714,43683492:208448 +k1,465:15398398,43683492:208448 +k1,465:17192817,43683492:208448 +k1,465:18210635,43683492:208448 +k1,465:19749463,43683492:208447 +k1,465:20976996,43683492:208448 +k1,465:22498786,43683492:208448 +k1,465:24887617,43683492:208448 +k1,465:25843831,43683492:208448 +k1,465:29179657,43683492:208448 +k1,465:30070990,43683492:208448 +k1,465:31088808,43683492:208448 k1,465:32583029,43683492:0 ) -(1,466:6630773,44548572:25952256,513147,134348 -k1,465:7992610,44548572:186777 -k1,465:12734140,44548572:186778 -k1,465:15458471,44548572:186777 -k1,465:16176746,44548572:186778 -k1,465:17014951,44548572:186777 -k1,465:18931224,44548572:186778 -k1,465:21844299,44548572:186777 -k1,465:24282239,44548572:186778 -k1,465:25660461,44548572:186777 -k1,465:28098401,44548572:186778 -k1,465:31647175,44548572:186777 +(1,466:6630773,44548572:25952256,513147,126483 +k1,465:9510425,44548572:220201 +k1,465:10927313,44548572:220201 +k1,465:15702265,44548572:220200 +k1,465:18460020,44548572:220201 +k1,465:19211718,44548572:220201 +k1,465:20083347,44548572:220201 +k1,465:22033043,44548572:220201 +k1,465:24979542,44548572:220201 +k1,465:27450904,44548572:220200 +k1,465:28862550,44548572:220201 +k1,465:31333913,44548572:220201 k1,466:32583029,44548572:0 ) (1,466:6630773,45413652:25952256,513147,134348 -k1,465:9053794,45413652:201350 -k1,465:10742156,45413652:201350 -k1,465:11413398,45413652:201349 -k1,465:12146245,45413652:201350 -k1,465:12703455,45413652:201350 -k1,465:14488810,45413652:201350 -k1,465:16015297,45413652:201349 -k1,465:16868075,45413652:201350 -k1,465:18577408,45413652:201350 -k1,465:19394796,45413652:201350 -k1,465:19952005,45413652:201349 -k1,465:21848116,45413652:201350 -k1,465:23970326,45413652:201350 -k1,465:25363121,45413652:201350 -k1,465:28948749,45413652:201349 -k1,465:30169184,45413652:201350 -k1,465:31966991,45413652:201350 +k1,465:9090208,45413652:240386 +k1,465:12381950,45413652:240386 +k1,465:14109348,45413652:240386 +k1,465:14819628,45413652:240387 +k1,465:15591511,45413652:240386 +k1,465:16187757,45413652:240386 +k1,465:18012148,45413652:240386 +k1,465:19577672,45413652:240386 +k1,465:20469486,45413652:240386 +k1,465:22217855,45413652:240386 +k1,465:23074279,45413652:240386 +k1,465:23670526,45413652:240387 +k1,465:25605673,45413652:240386 +k1,465:27766919,45413652:240386 +k1,465:29198750,45413652:240386 k1,465:32583029,45413652:0 ) ] @@ -49343,8 +49469,8 @@ g1,466:-473656,-710413 ] ) ] -!25431 -}29 +!25242 +}30 Input:234:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:235:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:236:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -49352,7 +49478,7 @@ Input:237:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:238:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !557 -{30 +{31 [1,492:4262630,47279633:28320399,43253760,0 (1,492:4262630,4025873:0,0,0 [1,492:-473656,4025873:0,0,0 @@ -49480,108 +49606,111 @@ g1,492:6630773,45706769 ) [1,492:6630773,45706769:25952256,40108032,0 (1,466:6630773,6254097:25952256,513147,134348 -k1,465:9650195,6254097:245283 -k1,465:10843130,6254097:245284 -k1,465:11444273,6254097:245283 -k1,465:13562575,6254097:245283 -k1,465:17964807,6254097:245283 -k1,465:20478292,6254097:245284 -k1,465:21406460,6254097:245283 -k1,465:25434481,6254097:245283 -k1,465:26404592,6254097:245283 -k1,465:27934382,6254097:245284 -k1,465:29198750,6254097:245283 +k1,465:7868701,6254097:218843 +k1,465:9684002,6254097:218844 +k1,465:10518883,6254097:218843 +k1,465:13511866,6254097:218844 +k1,465:14678360,6254097:218843 +k1,465:15253064,6254097:218844 +k1,465:17344926,6254097:218843 +k1,465:18953132,6254097:218843 +k1,465:21726569,6254097:218844 +k1,465:24213613,6254097:218843 +k1,465:25115342,6254097:218844 +k1,465:29116923,6254097:218843 +k1,465:30060595,6254097:218844 +k1,465:31563944,6254097:218843 k1,465:32583029,6254097:0 ) -(1,466:6630773,7119177:25952256,513147,126483 -k1,465:7887972,7119177:152917 -k1,465:8788655,7119177:152917 -k1,465:10752987,7119177:152917 -k1,465:12097350,7119177:152918 -k1,465:14924136,7119177:152917 -k1,465:16877982,7119177:152917 -k1,465:19666102,7119177:152917 -k1,465:22498131,7119177:152917 -k1,465:23842493,7119177:152917 -k1,465:25591868,7119177:152918 -k1,465:28943597,7119177:152917 -k1,465:30664135,7119177:152917 +(1,466:6630773,7119177:25952256,505283,126483 +k1,465:10167334,7119177:178496 +k1,465:11450112,7119177:178496 +k1,465:12376374,7119177:178496 +k1,465:14366285,7119177:178496 +k1,465:15736226,7119177:178496 +k1,465:18588591,7119177:178496 +k1,465:20568016,7119177:178496 +k1,465:23381715,7119177:178496 +k1,465:26239323,7119177:178496 +k1,465:27609264,7119177:178496 +k1,465:29384217,7119177:178496 k1,465:32583029,7119177:0 ) (1,466:6630773,7984257:25952256,513147,126483 -k1,465:7964481,7984257:176998 -k1,465:9215613,7984257:176997 -k1,465:9850708,7984257:176998 -k1,465:14600807,7984257:176997 -k1,465:15437097,7984257:176998 -k1,465:17210552,7984257:176998 -k1,465:18965001,7984257:176997 -k1,465:19758037,7984257:176998 -k1,465:21637005,7984257:176998 -k1,465:25702253,7984257:176997 -k1,465:27075938,7984257:176998 -k1,465:29173795,7984257:176997 -k1,465:31269687,7984257:176998 +k1,465:8356941,7984257:158547 +k1,465:10434382,7984257:158547 +k1,465:11749638,7984257:158546 +k1,465:12982320,7984257:158547 +k1,465:13598964,7984257:158547 +k1,465:18330613,7984257:158547 +k1,465:19148451,7984257:158546 +k1,465:20903455,7984257:158547 +k1,465:22639454,7984257:158547 +k1,465:23414039,7984257:158547 +k1,465:25274555,7984257:158546 +k1,465:29321353,7984257:158547 +k1,465:30676587,7984257:158547 k1,465:32583029,7984257:0 ) -(1,466:6630773,8849337:25952256,505283,134348 -k1,465:7811632,8849337:189299 -k1,465:10911385,8849337:189299 -k1,465:12512985,8849337:189299 -k1,465:13893729,8849337:189299 -k1,465:15894443,8849337:189299 -k1,465:16615238,8849337:189298 -k1,465:17420575,8849337:189299 -k1,465:18024707,8849337:189289 -k1,465:23040077,8849337:189299 -k1,465:25097152,8849337:189299 -k1,465:26305536,8849337:189299 -k1,465:28828572,8849337:189299 -k1,465:31584916,8849337:189299 -k1,466:32583029,8849337:0 +(1,466:6630773,8849337:25952256,513147,126483 +k1,465:8740378,8849337:216925 +k1,465:10270646,8849337:216926 +k1,465:11479131,8849337:216925 +k1,465:14606510,8849337:216925 +k1,465:16235737,8849337:216926 +k1,465:17644107,8849337:216925 +k1,465:19672448,8849337:216926 +k1,465:20420870,8849337:216925 +k1,465:21253833,8849337:216925 +k1,465:21885584,8849337:216908 +k1,465:26928580,8849337:216925 +k1,465:29013282,8849337:216926 +k1,465:30249292,8849337:216925 +k1,465:32583029,8849337:0 ) (1,466:6630773,9714417:25952256,513147,134348 -k1,465:8913986,9714417:177542 -k1,465:10874762,9714417:177541 -k1,465:13620005,9714417:177542 -k1,465:14568250,9714417:177542 -(1,465:14568250,9714417:0,452978,115847 -r1,492:16685075,9714417:2116825,568825,115847 -k1,465:14568250,9714417:-2116825 -) -(1,465:14568250,9714417:2116825,452978,115847 -k1,465:14568250,9714417:3277 -h1,465:16681798,9714417:0,411205,112570 -) -k1,465:16862617,9714417:177542 -k1,465:18023198,9714417:177541 -k1,465:19219825,9714417:177542 -k1,465:21741590,9714417:177542 -k1,465:24505838,9714417:177542 -k1,465:27575483,9714417:177541 -k1,465:28284522,9714417:177542 +k1,465:9427491,9714417:255887 +k1,465:12684927,9714417:255887 +k1,465:14724049,9714417:255887 +k1,465:17547637,9714417:255887 +k1,465:18574227,9714417:255887 +(1,465:18574227,9714417:0,452978,115847 +r1,492:20691052,9714417:2116825,568825,115847 +k1,465:18574227,9714417:-2116825 +) +(1,465:18574227,9714417:2116825,452978,115847 +k1,465:18574227,9714417:3277 +h1,465:20687775,9714417:0,411205,112570 +) +k1,465:20946939,9714417:255887 +k1,465:22185866,9714417:255887 +k1,465:23460838,9714417:255887 +k1,465:26060948,9714417:255887 +k1,465:28903541,9714417:255887 +k1,465:32051532,9714417:255887 k1,465:32583029,9714417:0 ) -(1,466:6630773,10579497:25952256,513147,115847 -g1,465:7764545,10579497 -g1,465:8615202,10579497 -g1,465:9833516,10579497 -g1,465:12589304,10579497 -g1,465:14707427,10579497 -g1,465:15925741,10579497 -(1,465:15925741,10579497:0,452978,115847 -r1,492:18042566,10579497:2116825,568825,115847 -k1,465:15925741,10579497:-2116825 -) -(1,465:15925741,10579497:2116825,452978,115847 -k1,465:15925741,10579497:3277 -h1,465:18039289,10579497:0,411205,112570 -) -g1,465:18241795,10579497 -g1,465:19424064,10579497 -g1,465:20830466,10579497 -g1,465:22441996,10579497 -k1,466:32583029,10579497:8520983 +(1,466:6630773,10579497:25952256,513147,126483 +g1,465:11146859,10579497 +g1,465:12280631,10579497 +g1,465:13131288,10579497 +g1,465:14349602,10579497 +g1,465:17105390,10579497 +g1,465:19223513,10579497 +g1,465:20441827,10579497 +(1,465:20441827,10579497:0,452978,115847 +r1,492:22558652,10579497:2116825,568825,115847 +k1,465:20441827,10579497:-2116825 +) +(1,465:20441827,10579497:2116825,452978,115847 +k1,465:20441827,10579497:3277 +h1,465:22555375,10579497:0,411205,112570 +) +g1,465:22757881,10579497 +g1,465:23940150,10579497 +g1,465:25346552,10579497 +g1,465:26958082,10579497 +k1,466:32583029,10579497:4004897 g1,466:32583029,10579497 ) v1,468:6630773,11444577:0,393216,0 @@ -49599,59 +49728,60 @@ k1,468:6764466,11805754:-1091726 ) (1,468:6764466,11805754:1091726,754393,260573 ) -k1,468:8093977,11805754:237785 -k1,468:8421657,11805754:327680 -k1,468:11083620,11805754:237786 -k1,468:13919908,11805754:237785 -k1,468:15149253,11805754:237785 -k1,468:19588552,11805754:237786 -k1,468:20512499,11805754:237785 -k1,468:21106144,11805754:237785 -k1,468:23264789,11805754:237785 -k1,468:24896526,11805754:237786 -k1,468:25490171,11805754:237785 -k1,468:27465971,11805754:237785 -k1,468:29876931,11805754:237786 -k1,468:30730754,11805754:237785 -(1,468:30730754,11805754:0,452978,122846 -r1,492:32495867,11805754:1765113,575824,122846 -k1,468:30730754,11805754:-1765113 -) -(1,468:30730754,11805754:1765113,452978,122846 -k1,468:30730754,11805754:3277 -h1,468:32492590,11805754:0,411205,112570 -) -k1,468:32583029,11805754:0 +k1,468:7996571,11805754:140379 +k1,468:8324251,11805754:327680 +k1,468:10888806,11805754:140378 +k1,468:13627688,11805754:140379 +k1,468:14759626,11805754:140378 +k1,468:19101518,11805754:140379 +k1,468:19928058,11805754:140378 +k1,468:20424297,11805754:140379 +k1,468:22485536,11805754:140379 +k1,468:24019865,11805754:140378 +k1,468:24516104,11805754:140379 +k1,468:26394497,11805754:140378 +k1,468:28708050,11805754:140379 +k1,468:29464466,11805754:140378 +(1,468:29464466,11805754:0,452978,122846 +r1,492:31229579,11805754:1765113,575824,122846 +k1,468:29464466,11805754:-1765113 +) +(1,468:29464466,11805754:1765113,452978,122846 +k1,468:29464466,11805754:3277 +h1,468:31226302,11805754:0,411205,112570 +) +k1,468:31543628,11805754:140379 +k1,469:32583029,11805754:0 ) (1,469:6764466,12670834:25818563,513147,126483 -k1,468:9215674,12670834:137132 -k1,468:11238931,12670834:137131 -k1,468:12395148,12670834:137132 -k1,468:14185752,12670834:137131 -k1,468:16243744,12670834:137132 -k1,468:18299769,12670834:137131 -k1,468:20771949,12670834:137132 -k1,468:22472115,12670834:137132 -(1,468:22472115,12670834:0,452978,115847 -r1,492:24588940,12670834:2116825,568825,115847 -k1,468:22472115,12670834:-2116825 -) -(1,468:22472115,12670834:2116825,452978,115847 -k1,468:22472115,12670834:3277 -h1,468:24585663,12670834:0,411205,112570 -) -k1,468:24726071,12670834:137131 -k1,468:26054648,12670834:137132 -(1,468:26054648,12670834:0,452978,115847 -r1,492:29226608,12670834:3171960,568825,115847 -k1,468:26054648,12670834:-3171960 -) -(1,468:26054648,12670834:3171960,452978,115847 -k1,468:26054648,12670834:3277 -h1,468:29223331,12670834:0,411205,112570 -) -k1,468:29363739,12670834:137131 -k1,468:30492431,12670834:137132 +k1,468:8345738,12670834:200428 +k1,468:10432293,12670834:200429 +k1,468:11651806,12670834:200428 +k1,468:13505708,12670834:200429 +k1,468:15626996,12670834:200428 +k1,468:17746319,12670834:200429 +k1,468:20281795,12670834:200428 +k1,468:22045257,12670834:200428 +(1,468:22045257,12670834:0,452978,115847 +r1,492:24162082,12670834:2116825,568825,115847 +k1,468:22045257,12670834:-2116825 +) +(1,468:22045257,12670834:2116825,452978,115847 +k1,468:22045257,12670834:3277 +h1,468:24158805,12670834:0,411205,112570 +) +k1,468:24536181,12670834:200429 +k1,468:25928054,12670834:200428 +(1,468:25928054,12670834:0,452978,115847 +r1,492:29100014,12670834:3171960,568825,115847 +k1,468:25928054,12670834:-3171960 +) +(1,468:25928054,12670834:3171960,452978,115847 +k1,468:25928054,12670834:3277 +h1,468:29096737,12670834:0,411205,112570 +) +k1,468:29300443,12670834:200429 +k1,468:30492431,12670834:200428 k1,468:32583029,12670834:0 ) (1,469:6764466,13535914:25818563,513147,134348 @@ -49765,15 +49895,15 @@ k1,471:32583029,19239535:15910173 g1,471:32583029,19239535 ) (1,474:6630773,20497831:25952256,505283,134348 -k1,473:9573412,20497831:304160 -k1,473:11002170,20497831:304160 -k1,473:13017474,20497831:304159 -k1,473:18034983,20497831:304160 -k1,473:19733094,20497831:304160 -k1,473:23443815,20497831:304160 -k1,473:26306500,20497831:304159 -k1,473:26966520,20497831:304160 -k1,473:29893431,20497831:304160 +k1,473:9554115,20497831:284863 +k1,473:11137246,20497831:284863 +k1,473:13133254,20497831:284863 +k1,473:18131466,20497831:284863 +k1,473:19810281,20497831:284864 +k1,473:23501705,20497831:284863 +k1,473:26345094,20497831:284863 +k1,473:26985817,20497831:284863 +k1,473:29893431,20497831:284863 k1,473:32583029,20497831:0 ) (1,474:6630773,21362911:25952256,513147,126483 @@ -49999,21 +50129,21 @@ k1,475:29013938,31743871:167257 k1,475:32583029,31743871:0 ) (1,476:6630773,32608951:25952256,513147,134348 -k1,475:7508393,32608951:218328 -k1,475:9462115,32608951:218329 -k1,475:10036303,32608951:218328 -k1,475:14606878,32608951:218329 -k1,475:17667502,32608951:218328 -k1,475:18833482,32608951:218329 -k1,475:20441173,32608951:218328 -k1,475:23387765,32608951:218328 -k1,475:24233929,32608951:218329 -k1,475:26437343,32608951:218328 -h1,475:27407931,32608951:0,0,0 -k1,475:27626260,32608951:218329 -k1,475:28712940,32608951:218328 -k1,475:30035551,32608951:218329 -k1,475:31278862,32608951:218328 +k1,475:7495988,32608951:205923 +k1,475:9437305,32608951:205924 +k1,475:9999088,32608951:205923 +k1,475:14557258,32608951:205924 +k1,475:17605477,32608951:205923 +k1,475:18759052,32608951:205924 +k1,475:20354338,32608951:205923 +k1,475:23288525,32608951:205923 +k1,475:24122284,32608951:205924 +k1,475:26313293,32608951:205923 +h1,475:27283881,32608951:0,0,0 +k1,475:27663475,32608951:205924 +k1,475:28737750,32608951:205923 +k1,475:30047956,32608951:205924 +k1,475:31278862,32608951:205923 k1,475:32583029,32608951:0 ) (1,476:6630773,33474031:25952256,513147,126483 @@ -50281,8 +50411,8 @@ g1,492:-473656,-710413 ] ) ] -!26787 -}30 +!26911 +}31 Input:240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:241:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:242:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -50294,7 +50424,7 @@ Input:247:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:248:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:249:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{31 +{32 [1,519:4262630,47279633:28320399,43253760,0 (1,519:4262630,4025873:0,0,0 [1,519:-473656,4025873:0,0,0 @@ -50709,20 +50839,20 @@ k1,495:31196943,34373125:178971 k1,495:32583029,34373125:0 ) (1,496:6764466,35238205:25818563,513147,126483 -k1,495:7594432,35238205:213928 -k1,495:8827445,35238205:213928 -k1,495:10264276,35238205:213929 -k1,495:11137496,35238205:213928 -k1,495:12370509,35238205:213928 -k1,495:15917598,35238205:213928 -k1,495:17173549,35238205:213929 -k1,495:20048894,35238205:213928 -k1,495:20728783,35238205:213928 -k1,495:21961796,35238205:213928 -k1,495:24058573,35238205:213928 -k1,495:27743944,35238205:213929 -k1,495:29242378,35238205:213928 -k1,495:30626779,35238205:213928 +k1,495:7582027,35238205:201523 +k1,495:8802635,35238205:201523 +k1,495:10227061,35238205:201524 +k1,495:11087876,35238205:201523 +k1,495:12308484,35238205:201523 +k1,495:15843168,35238205:201523 +k1,495:17086714,35238205:201524 +k1,495:20123324,35238205:201523 +k1,495:20790808,35238205:201523 +k1,495:22011416,35238205:201523 +k1,495:24095788,35238205:201523 +k1,495:27768754,35238205:201524 +k1,495:29254783,35238205:201523 +k1,495:30626779,35238205:201523 k1,495:32583029,35238205:0 ) (1,496:6764466,36103285:25818563,513147,134348 @@ -51012,12 +51142,12 @@ g1,519:-473656,-710413 ) ] !19897 -}31 +}32 Input:250:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:251:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:252:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{32 +{33 [1,538:4262630,47279633:28320399,43253760,0 (1,538:4262630,4025873:0,0,0 [1,538:-473656,4025873:0,0,0 @@ -51316,20 +51446,20 @@ g1,523:32583029,28458924 h1,523:6630773,28458924:0,0,0 (1,526:6630773,29324004:25952256,513147,134348 h1,525:6630773,29324004:983040,0,0 -k1,525:9570906,29324004:173858 -k1,525:11480156,29324004:173857 -k1,525:14078191,29324004:173858 -k1,525:15906832,29324004:173857 -k1,525:17072250,29324004:173858 -k1,525:19116505,29324004:173857 -k1,525:20858640,29324004:173858 -k1,525:21691790,29324004:173858 -k1,525:25171938,29324004:173857 -k1,525:25997224,29324004:173858 -k1,525:26526941,29324004:173857 -k1,525:28088852,29324004:173858 -k1,525:29760862,29324004:173857 -k1,525:31377167,29324004:173858 +k1,525:9558501,29324004:161453 +k1,525:11455346,29324004:161452 +k1,525:14214646,29324004:161453 +k1,525:16030882,29324004:161452 +k1,525:17183895,29324004:161453 +k1,525:19215745,29324004:161452 +k1,525:20945475,29324004:161453 +k1,525:21766220,29324004:161453 +k1,525:25233963,29324004:161452 +k1,525:26046844,29324004:161453 +k1,525:26564156,29324004:161452 +k1,525:28113662,29324004:161453 +k1,525:29773267,29324004:161452 +k1,525:31377167,29324004:161453 k1,526:32583029,29324004:0 ) (1,526:6630773,30189084:25952256,513147,134348 @@ -51496,24 +51626,24 @@ k1,527:32583029,38361462:14977332 g1,527:32583029,38361462 ) (1,530:6630773,39619758:25952256,513147,134348 -k1,529:7649973,39619758:211797 -k1,529:8979814,39619758:211797 -k1,529:9547471,39619758:211797 -k1,529:11590344,39619758:211797 -k1,529:12670493,39619758:211797 -k1,529:14412556,39619758:211797 -k1,529:15930486,39619758:211797 -k1,529:16793711,39619758:211797 -k1,529:19474248,39619758:211796 -k1,529:20041905,39619758:211797 -k1,529:22084778,39619758:211797 -k1,529:22912613,39619758:211797 -k1,529:23480270,39619758:211797 -k1,529:24918246,39619758:211797 -k1,529:27212777,39619758:211797 -k1,529:29409660,39619758:211797 -h1,529:30380248,39619758:0,0,0 -k1,529:30592045,39619758:211797 +k1,529:7639757,39619758:201581 +k1,529:8959382,39619758:201581 +k1,529:9516823,39619758:201581 +k1,529:11723150,39619758:201581 +k1,529:12793083,39619758:201581 +k1,529:14524930,39619758:201581 +k1,529:16032644,39619758:201581 +k1,529:16885653,39619758:201581 +k1,529:19555976,39619758:201582 +k1,529:20113417,39619758:201581 +k1,529:22146074,39619758:201581 +k1,529:22963693,39619758:201581 +k1,529:23521134,39619758:201581 +k1,529:24948894,39619758:201581 +k1,529:27233209,39619758:201581 +k1,529:29419876,39619758:201581 +h1,529:30390464,39619758:0,0,0 +k1,529:30592045,39619758:201581 k1,529:32583029,39619758:0 ) (1,530:6630773,40484838:25952256,513147,134348 @@ -51636,12 +51766,12 @@ g1,538:-473656,-710413 ) ] !17075 -}32 +}33 Input:253:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{33 +{34 [1,554:4262630,47279633:28320399,43253760,0 (1,554:4262630,4025873:0,0,0 [1,554:-473656,4025873:0,0,0 @@ -52206,9 +52336,9 @@ g1,554:-473656,-710413 ) ] !15668 -}33 +}34 !11 -{34 +{35 [1,564:4262630,47279633:28320399,43253760,0 (1,564:4262630,4025873:0,0,0 [1,564:-473656,4025873:0,0,0 @@ -52339,19 +52469,19 @@ g1,564:6630773,45706769 ) [1,564:6630773,45706769:25952256,40108032,0 (1,554:6630773,6254097:25952256,505283,134348 -k1,553:9388225,6254097:202859 -k1,553:10782529,6254097:202859 -k1,553:12374751,6254097:202859 -k1,553:16770603,6254097:202859 -k1,553:18354306,6254097:202859 -k1,553:19088662,6254097:202859 -k1,553:21493530,6254097:202858 -k1,553:22347817,6254097:202859 -k1,553:23569761,6254097:202859 -k1,553:25007974,6254097:202859 -k1,553:27321748,6254097:202859 -k1,553:28286135,6254097:202859 -k1,553:31391584,6254097:202859 +k1,553:9548537,6254097:189500 +k1,553:10929481,6254097:189499 +k1,553:12508344,6254097:189500 +k1,553:16890836,6254097:189499 +k1,553:18461180,6254097:189500 +k1,553:19182177,6254097:189500 +k1,553:21573686,6254097:189499 +k1,553:22414614,6254097:189500 +k1,553:23623199,6254097:189500 +k1,553:25048052,6254097:189499 +k1,553:27348467,6254097:189500 +k1,553:28299494,6254097:189499 +k1,553:31391584,6254097:189500 k1,553:32583029,6254097:0 ) (1,554:6630773,7119177:25952256,505283,134348 @@ -52433,16 +52563,16 @@ g1,554:32583029,11444577 ) (1,556:6630773,12309657:25952256,513147,134348 h1,555:6630773,12309657:983040,0,0 -k1,555:9987396,12309657:176816 -k1,555:12152574,12309657:176816 -k1,555:14012355,12309657:176816 -k1,555:15208256,12309657:176816 -k1,555:16672199,12309657:176816 -k1,555:17508307,12309657:176816 -k1,555:22420755,12309657:176816 -k1,555:23213609,12309657:176816 -k1,555:26239930,12309657:176816 -k1,555:29296398,12309657:176816 +k1,555:9970029,12309657:159449 +k1,555:12117840,12309657:159449 +k1,555:14133924,12309657:159449 +k1,555:15312458,12309657:159449 +k1,555:16759034,12309657:159449 +k1,555:17577775,12309657:159449 +k1,555:22472856,12309657:159449 +k1,555:23248343,12309657:159449 +k1,555:26257297,12309657:159449 +k1,555:29296398,12309657:159449 k1,555:32583029,12309657:0 ) (1,556:6630773,13174737:25952256,505283,126483 @@ -53016,9 +53146,9 @@ g1,564:-473656,-710413 ) ] !23127 -}34 +}35 !11 -{35 +{36 [1,577:4262630,47279633:28320399,43253760,0 (1,577:4262630,4025873:0,0,0 [1,577:-473656,4025873:0,0,0 @@ -53245,15 +53375,15 @@ k1,564:32583029,9714417:0 k1,563:9244909,10579497:0 k1,563:9618357,10579497:0 $1,563:11112149,10579497 -k1,563:11734665,10579497:241752 -k1,563:15248630,10579497:241752 -k1,563:19058162,10579497:241752 -k1,563:20491359,10579497:241752 -k1,563:22876795,10579497:241753 -k1,563:24309992,10579497:241752 -k1,563:27624727,10579497:241752 -k1,563:28222339,10579497:241752 -k1,563:30337110,10579497:241752 +k1,563:11715368,10579497:222455 +k1,563:15210037,10579497:222456 +k1,563:19000272,10579497:222455 +k1,563:20414173,10579497:222456 +k1,563:22953981,10579497:222455 +k1,563:24367882,10579497:222456 +k1,563:27663320,10579497:222455 +k1,563:28241636,10579497:222456 +k1,563:30337110,10579497:222455 k1,563:32583029,10579497:0 ) (1,564:6630773,11444577:25952256,513147,134348 @@ -53420,414 +53550,412 @@ k1,565:29668643,19230297:217075 k1,565:32583029,19230297:0 ) (1,566:6630773,20095377:25952256,513147,134348 -k1,565:9657062,20095377:187925 -k1,565:11412609,20095377:187926 -k1,565:12619619,20095377:187925 -k1,565:15883805,20095377:187926 -k1,565:18307163,20095377:187925 -k1,565:19877243,20095377:187926 -k1,565:21040999,20095377:187925 -k1,565:21441905,20095377:187914 -k1,565:23365224,20095377:187926 -k1,565:24756390,20095377:187925 -k1,565:28255850,20095377:187926 -k1,565:30053339,20095377:187925 +k1,565:9626225,20095377:157088 +k1,565:11350934,20095377:157088 +k1,565:12527107,20095377:157088 +k1,565:15760455,20095377:157088 +k1,565:18152976,20095377:157088 +k1,565:19692218,20095377:157088 +k1,565:20825137,20095377:157088 +k1,565:21195175,20095377:157046 +k1,565:23087656,20095377:157088 +k1,565:24447985,20095377:157088 +k1,565:27916607,20095377:157088 +k1,565:29683259,20095377:157088 +k1,565:32370037,20095377:157088 k1,565:32583029,20095377:0 ) (1,566:6630773,20960457:25952256,513147,126483 -k1,565:7093491,20960457:249726 -k1,565:8891884,20960457:249777 -k1,565:9793089,20960457:249777 -k1,565:11758599,20960457:249777 -k1,565:13389221,20960457:249778 -k1,565:14923504,20960457:249777 -k1,565:16874596,20960457:249777 -k1,565:17982895,20960457:249777 -k1,565:18891964,20960457:249777 -k1,565:20637928,20960457:249777 -k1,565:21573867,20960457:249777 -k1,565:22994117,20960457:249777 -k1,565:24376356,20960457:249777 -k1,565:25651116,20960457:249777 -k1,565:28424684,20960457:249777 -k1,565:30122807,20960457:249777 +k1,565:8303334,20960457:150159 +k1,565:9104921,20960457:150159 +k1,565:10970814,20960457:150160 +k1,565:12501817,20960457:150159 +k1,565:13936482,20960457:150159 +k1,565:15787956,20960457:150159 +k1,565:16796637,20960457:150159 +k1,565:17606088,20960457:150159 +k1,565:19426105,20960457:150160 +k1,565:20262426,20960457:150159 +k1,565:21583058,20960457:150159 +k1,565:22865679,20960457:150159 +k1,565:24040821,20960457:150159 +k1,565:26714772,20960457:150160 +k1,565:28313277,20960457:150159 +k1,565:30923658,20960457:150159 k1,565:32583029,20960457:0 ) (1,566:6630773,21825537:25952256,505283,126483 -k1,565:8620727,21825537:209341 -k1,565:9457903,21825537:209341 -k1,565:12506920,21825537:209342 -k1,565:12929243,21825537:209331 -k1,565:14687200,21825537:209341 -k1,565:15547969,21825537:209341 -k1,565:17473043,21825537:209341 -k1,565:19063229,21825537:209342 -k1,565:20557076,21825537:209341 -k1,565:21785502,21825537:209341 -k1,565:24153599,21825537:209341 -k1,565:27426094,21825537:209342 -k1,565:29503866,21825537:209341 -k1,565:31414522,21825537:209341 +k1,565:7397111,21825537:138503 +k1,565:10375289,21825537:138503 +k1,565:10726724,21825537:138443 +k1,565:12413844,21825537:138504 +k1,565:13203775,21825537:138503 +k1,565:15058011,21825537:138503 +k1,565:16577358,21825537:138503 +k1,565:18000367,21825537:138503 +k1,565:19157956,21825537:138504 +k1,565:21455215,21825537:138503 +k1,565:24656871,21825537:138503 +k1,565:26663805,21825537:138503 +k1,565:28503624,21825537:138504 +k1,565:29810634,21825537:138503 +k1,565:30632022,21825537:138503 k1,565:32583029,21825537:0 ) (1,566:6630773,22690617:25952256,513147,134348 -k1,565:7517563,22690617:203905 -k1,565:9692136,22690617:203905 -k1,565:10563197,22690617:203905 -k1,565:11181940,22690617:203900 -k1,565:14228141,22690617:203905 -k1,565:15928233,22690617:203905 -k1,565:16663635,22690617:203905 -k1,565:19092487,22690617:203905 -k1,565:20845008,22690617:203905 -k1,565:21463751,22690617:203900 -k1,565:24182272,22690617:203905 -k1,565:28579826,22690617:203905 -k1,565:29241828,22690617:203905 -k1,565:31166708,22690617:203905 -k1,565:31726473,22690617:203905 +k1,565:7529669,22690617:231740 +k1,565:8176219,22690617:231707 +k1,565:11250254,22690617:231739 +k1,565:12978181,22690617:231740 +k1,565:13741418,22690617:231740 +k1,565:16198104,22690617:231739 +k1,565:17978460,22690617:231740 +k1,565:18625010,22690617:231707 +k1,565:21371366,22690617:231740 +k1,565:25796755,22690617:231740 +k1,565:26486591,22690617:231739 +k1,565:28439306,22690617:231740 +k1,565:29026906,22690617:231740 +k1,565:30115201,22690617:231739 +k1,565:31006233,22690617:231740 k1,565:32583029,22690617:0 ) (1,566:6630773,23555697:25952256,513147,134348 -k1,565:7518425,23555697:228360 -k1,565:9343241,23555697:228359 -k1,565:10519252,23555697:228360 -k1,565:11714923,23555697:228360 -k1,565:12629444,23555697:228359 -k1,565:13628507,23555697:228360 -k1,565:16155870,23555697:228360 -k1,565:17070392,23555697:228360 -k1,565:17511714,23555697:228330 -k1,565:18844356,23555697:228360 -k1,565:20301515,23555697:228359 -k1,565:22746303,23555697:228360 -k1,565:23389477,23555697:228331 -k1,565:24809281,23555697:228359 -k1,565:25803757,23555697:228360 -k1,565:27051202,23555697:228360 -k1,565:30190015,23555697:228359 -k1,565:31931601,23555697:228360 +k1,565:7750932,23555697:172508 +k1,565:8890751,23555697:172508 +k1,565:9749421,23555697:172508 +k1,565:10692632,23555697:172508 +k1,565:13164144,23555697:172509 +k1,565:14022814,23555697:172508 +k1,565:14408287,23555697:172481 +k1,565:15685077,23555697:172508 +k1,565:17086385,23555697:172508 +k1,565:19475322,23555697:172509 +k1,565:20062646,23555697:172481 +k1,565:21426599,23555697:172508 +k1,565:22365223,23555697:172508 +k1,565:23556817,23555697:172509 +k1,565:26639779,23555697:172508 +k1,565:28325513,23555697:172508 +k1,565:29149449,23555697:172508 +k1,565:30830596,23555697:172508 k1,565:32583029,23555697:0 ) (1,566:6630773,24420777:25952256,513147,134348 -k1,565:8385525,24420777:246113 -k1,565:10384071,24420777:246113 -k1,565:13137591,24420777:246113 -k1,565:14575148,24420777:246112 -k1,565:16463593,24420777:246113 -k1,565:17728791,24420777:246113 -k1,565:19556943,24420777:246113 -k1,565:21678696,24420777:246113 -k1,565:23438035,24420777:246113 -k1,565:24815954,24420777:246112 -k1,565:27633044,24420777:246113 -k1,565:30177505,24420777:246113 -k1,565:31075046,24420777:246113 +k1,565:9330637,24420777:210152 +k1,565:10732234,24420777:210152 +k1,565:12584718,24420777:210152 +k1,565:13813955,24420777:210152 +k1,565:15606146,24420777:210152 +k1,565:17691938,24420777:210152 +k1,565:19415316,24420777:210152 +k1,565:20757276,24420777:210153 +k1,565:23538405,24420777:210152 +k1,565:26046905,24420777:210152 +k1,565:26908485,24420777:210152 +k1,565:28626620,24420777:210152 +k1,565:29294869,24420777:210152 +k1,565:30340605,24420777:210152 +k1,565:31202185,24420777:210152 k1,565:32583029,24420777:0 ) (1,566:6630773,25285857:25952256,513147,134348 -k1,565:7371330,25285857:282460 -k1,565:8489374,25285857:282460 -k1,565:9423262,25285857:282460 -k1,565:11086566,25285857:282460 -k1,565:12560471,25285857:282460 -k1,565:14090737,25285857:282460 -k1,565:15032489,25285857:282460 -k1,565:17425864,25285857:282460 -k1,565:18468541,25285857:282459 -k1,565:20486394,25285857:282460 -k1,565:22465581,25285857:282460 -k1,565:24329425,25285857:282460 -k1,565:25803330,25285857:282460 -k1,565:28578124,25285857:282460 -k1,565:29476622,25285857:282460 -k1,565:31356850,25285857:282460 +k1,565:8022408,25285857:200190 +k1,565:9470405,25285857:200191 +k1,565:10329887,25285857:200190 +k1,565:12640993,25285857:200191 +k1,565:13601401,25285857:200190 +k1,565:15536985,25285857:200191 +k1,565:17433902,25285857:200190 +k1,565:19215477,25285857:200191 +k1,565:20607112,25285857:200190 +k1,565:23299637,25285857:200191 +k1,565:24115865,25285857:200190 +k1,565:25913824,25285857:200191 +k1,565:27340193,25285857:200190 +k1,565:29027396,25285857:200191 +k1,565:30246671,25285857:200190 k1,565:32583029,25285857:0 ) (1,566:6630773,26150937:25952256,513147,134348 -k1,565:8285080,26150937:167295 -k1,565:9471461,26150937:167296 -k1,565:12061622,26150937:167295 -k1,565:17602214,26150937:167295 -k1,565:20514813,26150937:167296 -k1,565:21873553,26150937:167295 -k1,565:23034375,26150937:167296 -k1,565:23860962,26150937:167295 -k1,565:27337825,26150937:167295 -k1,565:28496681,26150937:167296 -k1,565:29430092,26150937:167295 -k1,565:32583029,26150937:0 -) -(1,566:6630773,27016017:25952256,505283,126483 -k1,566:32583030,27016017:21582972 -g1,566:32583030,27016017 -) -(1,569:6630773,27881097:25952256,513147,134348 -h1,567:6630773,27881097:983040,0,0 -k1,567:10815600,27881097:238904 -k1,567:12073589,27881097:238904 -k1,567:13404978,27881097:238904 -k1,567:14303173,27881097:238903 -k1,567:16238804,27881097:238904 -k1,567:18059092,27881097:238904 -k1,567:18829493,27881097:238904 -k1,567:20422371,27881097:238904 -k1,567:24044243,27881097:238904 -k1,567:25663334,27881097:238903 -k1,567:26893798,27881097:238904 -k1,567:29498552,27881097:238904 -k1,567:30756541,27881097:238904 +g1,565:12203299,26150937 +g1,565:15321502,26150937 +g1,565:16712176,26150937 +g1,565:17904931,26150937 +g1,565:18763452,26150937 +g1,565:22272249,26150937 +g1,565:23463038,26150937 +g1,565:24428383,26150937 +g1,565:27780549,26150937 +k1,566:32583029,26150937:433195 +g1,566:32583029,26150937 +) +(1,569:6630773,27016017:25952256,513147,134348 +h1,567:6630773,27016017:983040,0,0 +k1,567:10815600,27016017:238904 +k1,567:12073589,27016017:238904 +k1,567:13404978,27016017:238904 +k1,567:14303173,27016017:238903 +k1,567:16238804,27016017:238904 +k1,567:18059092,27016017:238904 +k1,567:18829493,27016017:238904 +k1,567:20422371,27016017:238904 +k1,567:24044243,27016017:238904 +k1,567:25663334,27016017:238903 +k1,567:26893798,27016017:238904 +k1,567:29498552,27016017:238904 +k1,567:30756541,27016017:238904 +k1,567:32583029,27016017:0 +) +(1,569:6630773,27881097:25952256,513147,102891 +k1,567:7490403,27881097:200338 +k1,567:8893983,27881097:200339 +k1,567:10676360,27881097:200338 +k1,567:12068144,27881097:200339 +k1,567:13547089,27881097:200338 +k1,567:16837450,27881097:200338 +k1,567:17653827,27881097:200339 +k1,567:19556135,27881097:200338 +k1,567:21668814,27881097:200338 +k1,567:24973593,27881097:200339 +k1,567:25825359,27881097:200338 +k1,567:27664753,27881097:200339 +k1,567:30867296,27881097:200338 k1,567:32583029,27881097:0 ) -(1,569:6630773,28746177:25952256,513147,102891 -k1,567:7490403,28746177:200338 -k1,567:8893983,28746177:200339 -k1,567:10676360,28746177:200338 -k1,567:12068144,28746177:200339 -k1,567:13547089,28746177:200338 -k1,567:16837450,28746177:200338 -k1,567:17653827,28746177:200339 -k1,567:19556135,28746177:200338 -k1,567:21668814,28746177:200338 -k1,567:24973593,28746177:200339 -k1,567:25825359,28746177:200338 -k1,567:27664753,28746177:200339 -k1,567:30867296,28746177:200338 -k1,567:32583029,28746177:0 -) -(1,569:6630773,29611257:25952256,513147,134348 -k1,567:7787561,29611257:199307 -k1,567:9961467,29611257:199306 -k1,567:11944009,29611257:199307 -k1,567:13878709,29611257:199307 -k1,567:14492858,29611257:199306 -k1,567:15308202,29611257:199306 -k1,567:16710750,29611257:199307 -k1,567:18321702,29611257:199306 -k1,567:18876869,29611257:199307 -k1,567:20660180,29611257:199306 -k1,567:24018978,29611257:199307 -k1,567:24885441,29611257:199307 -k1,567:25499590,29611257:199306 -k1,567:26385058,29611257:199306 -k1,567:26940225,29611257:199307 -k1,567:29981827,29611257:199306 -k1,567:31128785,29611257:199307 -k1,569:32583029,29611257:0 -) -(1,569:6630773,30476337:25952256,513147,126483 -g1,567:10437759,30476337 -g1,567:12030939,30476337 -g1,567:13696864,30476337 -g1,567:16446754,30476337 -g1,567:17837428,30476337 -g1,567:21443218,30476337 -g1,567:22173944,30476337 -g1,567:23727147,30476337 -g1,567:26077268,30476337 -k1,569:32583029,30476337:6505761 -g1,569:32583029,30476337 -) -(1,570:6630773,33307497:25952256,32768,229376 -(1,570:6630773,33307497:0,32768,229376 -(1,570:6630773,33307497:5505024,32768,229376 -r1,577:12135797,33307497:5505024,262144,229376 -) -k1,570:6630773,33307497:-5505024 -) -(1,570:6630773,33307497:25952256,32768,0 -r1,577:32583029,33307497:25952256,32768,0 -) -) -(1,570:6630773,34939349:25952256,606339,161218 -(1,570:6630773,34939349:1974731,582746,14155 -g1,570:6630773,34939349 -g1,570:8605504,34939349 -) -g1,570:11737863,34939349 -g1,570:14455772,34939349 -g1,570:15492290,34939349 -g1,570:17179187,34939349 -k1,570:32583029,34939349:14861204 -g1,570:32583029,34939349 -) -(1,573:6630773,36197645:25952256,505283,134348 -k1,572:7629088,36197645:204674 -k1,572:8852847,36197645:204674 -k1,572:10639560,36197645:204674 -k1,572:11375730,36197645:204673 -k1,572:14437118,36197645:204674 -k1,572:16035743,36197645:204674 -k1,572:17259502,36197645:204674 -k1,572:21158440,36197645:204674 -k1,572:22647620,36197645:204674 -k1,572:25230595,36197645:204673 -k1,572:26567731,36197645:204674 -k1,572:27890449,36197645:204674 -k1,572:29591310,36197645:204674 +(1,569:6630773,28746177:25952256,513147,134348 +k1,567:7787561,28746177:199307 +k1,567:9961467,28746177:199306 +k1,567:11944009,28746177:199307 +k1,567:13878709,28746177:199307 +k1,567:14492858,28746177:199306 +k1,567:15308202,28746177:199306 +k1,567:16710750,28746177:199307 +k1,567:18321702,28746177:199306 +k1,567:18876869,28746177:199307 +k1,567:20660180,28746177:199306 +k1,567:24018978,28746177:199307 +k1,567:24885441,28746177:199307 +k1,567:25499590,28746177:199306 +k1,567:26385058,28746177:199306 +k1,567:26940225,28746177:199307 +k1,567:29981827,28746177:199306 +k1,567:31128785,28746177:199307 +k1,569:32583029,28746177:0 +) +(1,569:6630773,29611257:25952256,513147,126483 +g1,567:10437759,29611257 +g1,567:12030939,29611257 +g1,567:13696864,29611257 +g1,567:16446754,29611257 +g1,567:17837428,29611257 +g1,567:21443218,29611257 +g1,567:22173944,29611257 +g1,567:23727147,29611257 +g1,567:26077268,29611257 +k1,569:32583029,29611257:6505761 +g1,569:32583029,29611257 +) +(1,570:6630773,32442417:25952256,32768,229376 +(1,570:6630773,32442417:0,32768,229376 +(1,570:6630773,32442417:5505024,32768,229376 +r1,577:12135797,32442417:5505024,262144,229376 +) +k1,570:6630773,32442417:-5505024 +) +(1,570:6630773,32442417:25952256,32768,0 +r1,577:32583029,32442417:25952256,32768,0 +) +) +(1,570:6630773,34074269:25952256,606339,161218 +(1,570:6630773,34074269:1974731,582746,14155 +g1,570:6630773,34074269 +g1,570:8605504,34074269 +) +g1,570:11737863,34074269 +g1,570:14455772,34074269 +g1,570:15492290,34074269 +g1,570:17179187,34074269 +k1,570:32583029,34074269:14861204 +g1,570:32583029,34074269 +) +(1,573:6630773,35332565:25952256,505283,134348 +k1,572:7629088,35332565:204674 +k1,572:8852847,35332565:204674 +k1,572:10639560,35332565:204674 +k1,572:11375730,35332565:204673 +k1,572:14437118,35332565:204674 +k1,572:16035743,35332565:204674 +k1,572:17259502,35332565:204674 +k1,572:21158440,35332565:204674 +k1,572:22647620,35332565:204674 +k1,572:25230595,35332565:204673 +k1,572:26567731,35332565:204674 +k1,572:27890449,35332565:204674 +k1,572:29591310,35332565:204674 +k1,572:32583029,35332565:0 +) +(1,573:6630773,36197645:25952256,513147,134348 +k1,572:7545043,36197645:228108 +k1,572:9153339,36197645:228108 +k1,572:10793748,36197645:228108 +k1,572:12040941,36197645:228108 +k1,572:13668898,36197645:228108 +k1,572:15067479,36197645:228108 +k1,572:16770802,36197645:228108 +k1,572:17650338,36197645:228108 +k1,572:20021473,36197645:228108 +k1,572:22280542,36197645:228108 +k1,572:23160078,36197645:228108 +k1,572:24407271,36197645:228108 +k1,572:25050193,36197645:228079 +k1,572:27321058,36197645:228108 +k1,572:29951716,36197645:228108 +k1,572:31198909,36197645:228108 k1,572:32583029,36197645:0 ) -(1,573:6630773,37062725:25952256,513147,134348 -k1,572:7545043,37062725:228108 -k1,572:9153339,37062725:228108 -k1,572:10793748,37062725:228108 -k1,572:12040941,37062725:228108 -k1,572:13668898,37062725:228108 -k1,572:15067479,37062725:228108 -k1,572:16770802,37062725:228108 -k1,572:17650338,37062725:228108 -k1,572:20021473,37062725:228108 -k1,572:22280542,37062725:228108 -k1,572:23160078,37062725:228108 -k1,572:24407271,37062725:228108 -k1,572:25050193,37062725:228079 -k1,572:27321058,37062725:228108 -k1,572:29951716,37062725:228108 -k1,572:31198909,37062725:228108 -k1,572:32583029,37062725:0 -) -(1,573:6630773,37927805:25952256,505283,126483 -k1,572:9446906,37927805:224839 -k1,572:10141638,37927805:224839 -k1,572:10897973,37927805:224838 -k1,572:12835268,37927805:224839 -k1,572:14344613,37927805:224839 -k1,572:16028283,37927805:224839 -k1,572:18499695,37927805:224838 -k1,572:21709044,37927805:224839 -k1,572:22616768,37927805:224839 -k1,572:25185830,37927805:224839 -k1,572:26511673,37927805:224838 -k1,572:29070904,37927805:224839 -k1,572:31787422,37927805:224839 +(1,573:6630773,37062725:25952256,505283,126483 +k1,572:9446906,37062725:224839 +k1,572:10141638,37062725:224839 +k1,572:10897973,37062725:224838 +k1,572:12835268,37062725:224839 +k1,572:14344613,37062725:224839 +k1,572:16028283,37062725:224839 +k1,572:18499695,37062725:224838 +k1,572:21709044,37062725:224839 +k1,572:22616768,37062725:224839 +k1,572:25185830,37062725:224839 +k1,572:26511673,37062725:224838 +k1,572:29070904,37062725:224839 +k1,572:31787422,37062725:224839 +k1,573:32583029,37062725:0 +) +(1,573:6630773,37927805:25952256,513147,134348 +k1,572:8185141,37927805:212846 +k1,572:9049416,37927805:212847 +k1,572:9850775,37927805:212846 +k1,572:10541378,37927805:212846 +k1,572:11994166,37927805:212847 +k1,572:12889897,37927805:212846 +k1,572:13568704,37927805:212846 +k1,572:14952024,37927805:212847 +k1,572:16156430,37927805:212846 +k1,572:18771826,37927805:212846 +k1,572:20003758,37927805:212847 +k1,572:21798643,37927805:212846 +k1,572:22820859,37927805:212846 +k1,572:24492537,37927805:212847 +k1,572:26209434,37927805:212846 +k1,572:27592753,37927805:212846 +k1,572:29985983,37927805:212847 +k1,572:32168186,37927805:212846 k1,573:32583029,37927805:0 ) (1,573:6630773,38792885:25952256,513147,134348 -k1,572:8185141,38792885:212846 -k1,572:9049416,38792885:212847 -k1,572:9850775,38792885:212846 -k1,572:10541378,38792885:212846 -k1,572:11994166,38792885:212847 -k1,572:12889897,38792885:212846 -k1,572:13568704,38792885:212846 -k1,572:14952024,38792885:212847 -k1,572:16156430,38792885:212846 -k1,572:18771826,38792885:212846 -k1,572:20003758,38792885:212847 -k1,572:21798643,38792885:212846 -k1,572:22820859,38792885:212846 -k1,572:24492537,38792885:212847 -k1,572:26209434,38792885:212846 -k1,572:27592753,38792885:212846 -k1,572:29985983,38792885:212847 -k1,572:32168186,38792885:212846 -k1,573:32583029,38792885:0 +k1,572:7548733,38792885:235075 +k1,572:9845571,38792885:235075 +k1,572:12111608,38792885:235076 +k1,572:12998111,38792885:235075 +k1,572:14003889,38792885:235075 +k1,572:16216841,38792885:235075 +k1,572:18830874,38792885:235076 +k1,572:20857703,38792885:235075 +k1,572:23516955,38792885:235075 +k1,572:24434915,38792885:235075 +k1,572:27142664,38792885:235076 +k1,572:28464945,38792885:235039 +k1,572:29804302,38792885:235075 +k1,572:32583029,38792885:0 ) (1,573:6630773,39657965:25952256,513147,134348 -k1,572:7548733,39657965:235075 -k1,572:9845571,39657965:235075 -k1,572:12111608,39657965:235076 -k1,572:12998111,39657965:235075 -k1,572:14003889,39657965:235075 -k1,572:16216841,39657965:235075 -k1,572:18830874,39657965:235076 -k1,572:20857703,39657965:235075 -k1,572:23516955,39657965:235075 -k1,572:24434915,39657965:235075 -k1,572:27142664,39657965:235076 -k1,572:28464945,39657965:235039 -k1,572:29804302,39657965:235075 +k1,572:7875920,39657965:226062 +k1,572:9194467,39657965:226062 +k1,572:10087686,39657965:226063 +k1,572:10902261,39657965:226062 +k1,572:12200492,39657965:226062 +k1,572:13192670,39657965:226062 +k1,572:14437817,39657965:226062 +k1,572:16160066,39657965:226062 +k1,572:17002167,39657965:226063 +k1,572:18247314,39657965:226062 +k1,572:21691194,39657965:226062 +k1,572:24665181,39657965:226062 +k1,572:26937277,39657965:226062 +k1,572:28538940,39657965:226062 +k1,572:29857488,39657965:226063 +k1,572:30750706,39657965:226062 +k1,572:31391584,39657965:226035 k1,572:32583029,39657965:0 ) -(1,573:6630773,40523045:25952256,513147,134348 -k1,572:7875920,40523045:226062 -k1,572:9194467,40523045:226062 -k1,572:10087686,40523045:226063 -k1,572:10902261,40523045:226062 -k1,572:12200492,40523045:226062 -k1,572:13192670,40523045:226062 -k1,572:14437817,40523045:226062 -k1,572:16160066,40523045:226062 -k1,572:17002167,40523045:226063 -k1,572:18247314,40523045:226062 -k1,572:21691194,40523045:226062 -k1,572:24665181,40523045:226062 -k1,572:26937277,40523045:226062 -k1,572:28538940,40523045:226062 -k1,572:29857488,40523045:226063 -k1,572:30750706,40523045:226062 -k1,572:31391584,40523045:226035 -k1,572:32583029,40523045:0 -) -(1,573:6630773,41388125:25952256,505283,134348 -g1,572:9740456,41388125 -g1,572:12723654,41388125 -g1,572:15481409,41388125 -k1,573:32583029,41388125:15244330 -g1,573:32583029,41388125 -) -(1,575:6630773,42253205:25952256,505283,134348 -h1,574:6630773,42253205:983040,0,0 -k1,574:8057525,42253205:230720 -k1,574:9763493,42253205:230753 -k1,574:12280796,42253205:230752 -k1,574:13282251,42253205:230752 -k1,574:13927814,42253205:230720 -k1,574:16912389,42253205:230752 -k1,574:19301898,42253205:230753 -k1,574:23512650,42253205:230752 -k1,574:27105399,42253205:230752 -k1,574:29771469,42253205:230752 -k1,574:31391584,42253205:230752 +(1,573:6630773,40523045:25952256,505283,134348 +g1,572:9740456,40523045 +g1,572:12723654,40523045 +g1,572:15481409,40523045 +k1,573:32583029,40523045:15244330 +g1,573:32583029,40523045 +) +(1,575:6630773,41388125:25952256,505283,134348 +h1,574:6630773,41388125:983040,0,0 +k1,574:8057525,41388125:230720 +k1,574:9763493,41388125:230753 +k1,574:12280796,41388125:230752 +k1,574:13282251,41388125:230752 +k1,574:13927814,41388125:230720 +k1,574:16912389,41388125:230752 +k1,574:19301898,41388125:230753 +k1,574:23512650,41388125:230752 +k1,574:27105399,41388125:230752 +k1,574:29771469,41388125:230752 +k1,574:31391584,41388125:230752 +k1,574:32583029,41388125:0 +) +(1,575:6630773,42253205:25952256,513147,134348 +k1,574:12824198,42253205:183118 +k1,574:15321393,42253205:183119 +k1,574:16452162,42253205:183118 +k1,574:17401396,42253205:183118 +k1,574:19080702,42253205:183119 +k1,574:22255539,42253205:183118 +k1,574:23630102,42253205:183118 +k1,574:26704014,42253205:183119 +k1,574:27503170,42253205:183118 +k1,574:28705373,42253205:183118 +k1,574:30644202,42253205:183119 +k1,574:31297213,42253205:183118 k1,574:32583029,42253205:0 ) -(1,575:6630773,43118285:25952256,513147,134348 -k1,574:12824198,43118285:183118 -k1,574:15321393,43118285:183119 -k1,574:16452162,43118285:183118 -k1,574:17401396,43118285:183118 -k1,574:19080702,43118285:183119 -k1,574:22255539,43118285:183118 -k1,574:23630102,43118285:183118 -k1,574:26704014,43118285:183119 -k1,574:27503170,43118285:183118 -k1,574:28705373,43118285:183118 -k1,574:30644202,43118285:183119 -k1,574:31297213,43118285:183118 +(1,575:6630773,43118285:25952256,505283,134348 +k1,574:9575352,43118285:242530 +k1,574:11314069,43118285:242530 +k1,574:12748044,43118285:242530 +k1,574:14379936,43118285:242529 +k1,574:15906972,43118285:242530 +k1,574:18195536,43118285:242530 +k1,574:18896163,43118285:242530 +k1,574:21009091,43118285:242530 +k1,574:21903049,43118285:242530 +k1,574:24114936,43118285:242530 +k1,574:25376550,43118285:242529 +k1,574:28529534,43118285:242530 +k1,574:30285290,43118285:242530 +k1,574:31143858,43118285:242530 k1,574:32583029,43118285:0 ) (1,575:6630773,43983365:25952256,505283,134348 -k1,574:9575352,43983365:242530 -k1,574:11314069,43983365:242530 -k1,574:12748044,43983365:242530 -k1,574:14379936,43983365:242529 -k1,574:15906972,43983365:242530 -k1,574:18195536,43983365:242530 -k1,574:18896163,43983365:242530 -k1,574:21009091,43983365:242530 -k1,574:21903049,43983365:242530 -k1,574:24114936,43983365:242530 -k1,574:25376550,43983365:242529 -k1,574:28529534,43983365:242530 -k1,574:30285290,43983365:242530 -k1,574:31143858,43983365:242530 -k1,574:32583029,43983365:0 -) -(1,575:6630773,44848445:25952256,505283,134348 -k1,574:9783616,44848445:231248 -k1,574:10815059,44848445:231248 -k1,574:12784323,44848445:231249 -k1,574:13547068,44848445:231248 -k1,574:17584646,44848445:231248 -k1,574:19007339,44848445:231248 -k1,574:19770084,44848445:231248 -k1,574:22785302,44848445:231249 -k1,574:25575076,44848445:231248 -k1,574:27784856,44848445:231248 -k1,574:28505846,44848445:237334 -k1,574:29299581,44848445:237334 -k1,574:30624813,44848445:237334 -k1,575:32583029,44848445:0 +k1,574:9783616,43983365:231248 +k1,574:10815059,43983365:231248 +k1,574:12784323,43983365:231249 +k1,574:13547068,43983365:231248 +k1,574:17584646,43983365:231248 +k1,574:19007339,43983365:231248 +k1,574:19770084,43983365:231248 +k1,574:22785302,43983365:231249 +k1,574:25575076,43983365:231248 +k1,574:27784856,43983365:231248 +k1,574:28505846,43983365:237334 +k1,574:29299581,43983365:237334 +k1,574:30624813,43983365:237334 +k1,575:32583029,43983365:0 ) ] (1,577:32583029,45706769:0,0,0 @@ -53850,10 +53978,10 @@ g1,577:-473656,-710413 ] ) ] -!23702 -}35 +!23597 +}36 !11 -{36 +{37 [1,604:4262630,47279633:28320399,43253760,0 (1,604:4262630,4025873:0,0,0 [1,604:-473656,4025873:0,0,0 @@ -54009,8 +54137,7 @@ g1,574:16614525,7119177 g1,574:18039277,7119177 g1,574:19384075,7119177 g1,574:20040745,7119177 -g1,574:20697415,7119177 -k1,575:32583029,7119177:8789694 +k1,575:32583029,7119177:9446364 g1,575:32583029,7119177 ) v1,577:6630773,7984257:0,393216,0 @@ -54378,21 +54505,21 @@ k1,587:31086842,25068019:175891 k1,587:32583029,25068019:0 ) (1,588:6764466,25933099:25818563,513147,126483 -k1,587:9919984,25933099:163799 -k1,587:11275227,25933099:163798 -k1,587:14329819,25933099:163799 -k1,587:15109655,25933099:163798 -k1,587:16292539,25933099:163799 -k1,587:18212047,25933099:163798 -k1,587:19003681,25933099:163799 -k1,587:20919256,25933099:163798 -k1,587:22780437,25933099:163799 -k1,587:23963320,25933099:163798 -k1,587:24774580,25933099:163764 -k1,587:26367063,25933099:163798 -k1,587:27143624,25933099:163799 -k1,587:28766253,25933099:163798 -k1,587:31914562,25933099:163799 +k1,587:9908406,25933099:152221 +k1,587:11252072,25933099:152221 +k1,587:14295087,25933099:152222 +k1,587:15063346,25933099:152221 +k1,587:16234652,25933099:152221 +k1,587:18142583,25933099:152221 +k1,587:18922640,25933099:152222 +k1,587:20826638,25933099:152221 +k1,587:22849912,25933099:152221 +k1,587:24021218,25933099:152221 +k1,587:24820889,25933099:152175 +k1,587:26401795,25933099:152221 +k1,587:27166778,25933099:152221 +k1,587:28777831,25933099:152222 +k1,587:31914562,25933099:152221 k1,587:32583029,25933099:0 ) (1,588:6764466,26798179:25818563,513147,126483 @@ -54697,10 +54824,10 @@ g1,604:-473656,-710413 ] ) ] -!23313 -}36 +!23289 +}37 !11 -{37 +{38 [1,604:4262630,47279633:28320399,43253760,0 (1,604:4262630,4025873:0,0,0 [1,604:-473656,4025873:0,0,0 @@ -54849,11 +54976,11 @@ k1,595:32583029,6254097:0 (1,596:6630773,7119177:25952256,505283,126483 g1,595:10042577,7119177 g1,595:12216406,7119177 -g1,595:14955155,7119177 -g1,595:15933607,7119177 -g1,595:17324281,7119177 -g1,595:19255627,7119177 -k1,596:32583029,7119177:11266950 +g1,595:14833258,7119177 +g1,595:15811710,7119177 +g1,595:17202384,7119177 +g1,595:19133730,7119177 +k1,596:32583029,7119177:11388847 g1,596:32583029,7119177 ) ] @@ -54878,9 +55005,9 @@ g1,604:-473656,-710413 ) ] !4168 -}37 +}38 !10 -{38 +{39 [1,627:4262630,47279633:28320399,43253760,11795 (1,627:4262630,4025873:0,0,0 [1,627:-473656,4025873:0,0,0 @@ -55127,112 +55254,115 @@ k1,614:32583029,26025331:15515516 g1,614:32583029,26025331 ) (1,617:6630773,27283627:25952256,513147,134348 -k1,616:7501026,27283627:242418 -k1,616:8724517,27283627:242417 -k1,616:12553720,27283627:242418 -k1,616:13743788,27283627:242417 -k1,616:15730119,27283627:242418 -k1,616:17038808,27283627:242418 -k1,616:19773559,27283627:242417 -k1,616:21409928,27283627:242418 -k1,616:24728605,27283627:242417 -k1,616:29323269,27283627:242418 -k1,616:32583029,27283627:0 +k1,616:7448608,27283627:190000 +k1,616:8619681,27283627:189999 +k1,616:12396466,27283627:190000 +k1,616:13534117,27283627:190000 +k1,616:15468029,27283627:189999 +k1,616:16988410,27283627:190000 +k1,616:18169970,27283627:190000 +k1,616:19426240,27283627:189999 +k1,616:22108574,27283627:190000 +k1,616:23692525,27283627:190000 +k1,616:26958784,27283627:189999 +k1,616:31501030,27283627:190000 +k1,617:32583029,27283627:0 ) (1,617:6630773,28148707:25952256,513147,134348 -k1,616:7915982,28148707:266124 -k1,616:9517075,28148707:266125 -k1,616:11089332,28148707:266124 -k1,616:12710741,28148707:266124 -k1,616:13592903,28148707:266124 -k1,616:16460807,28148707:266125 -k1,616:17746016,28148707:266124 -k1,616:18426916,28148707:266057 -k1,616:21535336,28148707:266124 -k1,616:22332958,28148707:266125 -k1,616:23250510,28148707:266124 -k1,616:24609119,28148707:266124 -k1,616:25333340,28148707:266124 -k1,616:29526382,28148707:266125 -k1,616:30554034,28148707:266124 +k1,616:9245793,28148707:244583 +k1,616:10509462,28148707:244584 +k1,616:12089013,28148707:244583 +k1,616:13639729,28148707:244583 +k1,616:15239598,28148707:244584 +k1,616:16100219,28148707:244583 +k1,616:18946582,28148707:244584 +k1,616:20210250,28148707:244583 +k1,616:20869631,28148707:244538 +k1,616:23956510,28148707:244583 +k1,616:24732591,28148707:244584 +k1,616:25628602,28148707:244583 +k1,616:26965670,28148707:244583 +k1,616:27668351,28148707:244584 +k1,616:31839851,28148707:244583 k1,616:32583029,28148707:0 ) (1,617:6630773,29013787:25952256,505283,134348 -k1,616:9014672,29013787:181889 -k1,616:12686352,29013787:181888 -k1,616:13481003,29013787:181889 -k1,616:14681977,29013787:181889 -k1,616:15278691,29013787:181871 -k1,616:17918180,29013787:181889 -k1,616:19480912,29013787:181888 -k1,616:22048967,29013787:181889 -k1,616:23297126,29013787:181888 -k1,616:24854616,29013787:181889 -k1,616:26055590,29013787:181889 -k1,616:28321523,29013787:181888 -k1,616:29694857,29013787:181889 +k1,616:8907750,29013787:247982 +k1,616:11357741,29013787:247981 +k1,616:15095515,29013787:247982 +k1,616:15956258,29013787:247981 +k1,616:17223325,29013787:247982 +k1,616:17886101,29013787:247933 +k1,616:20591682,29013787:247981 +k1,616:22220508,29013787:247982 +k1,616:24854656,29013787:247982 +k1,616:26168908,29013787:247981 +k1,616:27792491,29013787:247982 +k1,616:29059557,29013787:247981 +k1,616:31391584,29013787:247982 k1,616:32583029,29013787:0 ) (1,617:6630773,29878867:25952256,513147,134348 -k1,616:8633200,29878867:242785 -k1,616:9948155,29878867:242786 -k1,616:11476756,29878867:242785 -k1,616:13329762,29878867:242786 -k1,616:13928407,29878867:242785 -k1,616:16670081,29878867:242786 -k1,616:17525628,29878867:242785 -k1,616:18787499,29878867:242786 -k1,616:22599375,29878867:242785 -k1,616:24033606,29878867:242786 -k1,616:27250415,29878867:242785 -k1,616:28152493,29878867:242786 -k1,616:29598519,29878867:242785 +k1,616:9782450,29878867:249087 +k1,616:11791179,29878867:249087 +k1,616:13112435,29878867:249087 +k1,616:14647338,29878867:249087 +k1,616:16506645,29878867:249087 +k1,616:17111592,29878867:249087 +k1,616:19859567,29878867:249087 +k1,616:20721416,29878867:249087 +k1,616:21989588,29878867:249087 +k1,616:25807766,29878867:249087 +k1,616:27248298,29878867:249087 +k1,616:30471409,29878867:249087 +k1,616:31379788,29878867:249087 k1,616:32583029,29878867:0 ) (1,617:6630773,30743947:25952256,513147,126483 -k1,616:7542570,30743947:260369 -k1,616:9192303,30743947:260370 -k1,616:12180936,30743947:260369 -k1,616:13069140,30743947:260369 -k1,616:14532751,30743947:260370 -k1,616:17384414,30743947:260369 -k1,616:17857714,30743947:260308 -k1,616:19856098,30743947:260369 -k1,616:20925837,30743947:260369 -k1,616:22205292,30743947:260370 -k1,616:25228004,30743947:260369 -k1,616:27613050,30743947:260369 -k1,616:29884065,30743947:260370 -k1,616:30827319,30743947:260369 +k1,616:9853686,30743947:238403 +k1,616:10743516,30743947:238402 +k1,616:12371282,30743947:238403 +k1,616:15337948,30743947:238402 +k1,616:16204186,30743947:238403 +k1,616:17645829,30743947:238402 +k1,616:20475526,30743947:238403 +k1,616:20926881,30743947:238363 +k1,616:22903299,30743947:238403 +k1,616:23951071,30743947:238402 +k1,616:25208559,30743947:238403 +k1,616:28209304,30743947:238402 +k1,616:30572384,30743947:238403 k1,616:32583029,30743947:0 ) -(1,617:6630773,31609027:25952256,513147,134348 -k1,616:8114290,31609027:199011 -k1,616:9417583,31609027:199011 -k1,616:10364360,31609027:199011 -k1,616:12601540,31609027:199010 -k1,616:13991996,31609027:199011 -k1,616:18204432,31609027:199011 -k1,616:19019481,31609027:199011 -k1,616:19807005,31609027:199011 -k1,616:20692178,31609027:199011 -k1,616:22169796,31609027:199011 -k1,616:23054969,31609027:199011 -k1,616:24273064,31609027:199010 -k1,616:25707429,31609027:199011 -k1,616:26565732,31609027:199011 -k1,616:29841003,31609027:199011 +(1,617:6630773,31609027:25952256,513147,126483 +k1,616:7520096,31609027:206438 +k1,616:9482245,31609027:206439 +k1,616:10973189,31609027:206438 +k1,616:12283909,31609027:206438 +k1,616:13238113,31609027:206438 +k1,616:15482722,31609027:206439 +k1,616:16880605,31609027:206438 +k1,616:21100468,31609027:206438 +k1,616:21922944,31609027:206438 +k1,616:22717896,31609027:206439 +k1,616:23610496,31609027:206438 +k1,616:25095541,31609027:206438 +k1,616:25988141,31609027:206438 +k1,616:27213665,31609027:206439 +k1,616:28655457,31609027:206438 +k1,616:29521187,31609027:206438 k1,616:32583029,31609027:0 ) (1,617:6630773,32474107:25952256,513147,134348 -g1,616:10520334,32474107 -g1,616:11738648,32474107 -g1,616:15242858,32474107 -g1,616:16101379,32474107 -g1,616:20023708,32474107 -g1,616:20838975,32474107 -g1,616:23329998,32474107 -k1,617:32583029,32474107:6028005 +g1,616:9572028,32474107 +g1,616:13461589,32474107 +g1,616:14679903,32474107 +g1,616:18184113,32474107 +g1,616:19042634,32474107 +g1,616:22964963,32474107 +g1,616:23780230,32474107 +g1,616:26271253,32474107 +k1,617:32583029,32474107:3086750 g1,617:32583029,32474107 ) (1,619:6630773,33339187:25952256,513147,126483 @@ -55448,8 +55578,8 @@ g1,627:-473656,-710413 ] ) ] -!15623 -}38 +!15714 +}39 Input:256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -55467,7 +55597,7 @@ Input:269:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:270:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:271:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{39 +{40 [1,643:4262630,47279633:28320399,43253760,0 (1,643:4262630,4025873:0,0,0 [1,643:-473656,4025873:0,0,0 @@ -55617,93 +55747,94 @@ k1,624:32583029,7885949:10741874 g1,624:32583029,7885949 ) (1,627:6630773,9144245:25952256,505283,134348 -k1,626:9973437,9144245:144507 -k1,626:13290541,9144245:144506 -k1,626:14910263,9144245:144507 -k1,626:16722005,9144245:144506 -k1,626:18452483,9144245:144507 -k1,626:19788435,9144245:144507 -k1,626:23720922,9144245:144506 -k1,626:25056874,9144245:144507 -k1,626:28342521,9144245:144506 -k1,626:29771534,9144245:144507 +k1,626:10135310,9144245:306380 +k1,626:13614289,9144245:306381 +k1,626:15395885,9144245:306381 +k1,626:17369501,9144245:306380 +k1,626:19435524,9144245:306381 +k1,626:20933349,9144245:306380 +k1,626:22258814,9144245:306380 +k1,626:26353176,9144245:306381 +k1,626:27851001,9144245:306380 +k1,626:31298523,9144245:306381 k1,626:32583029,9144245:0 ) (1,627:6630773,10009325:25952256,513147,134348 -k1,626:8572247,10009325:244747 -k1,626:11989592,10009325:244747 -k1,626:13501805,10009325:244747 -k1,626:16434183,10009325:244747 -k1,626:18175117,10009325:244747 -k1,626:19411425,10009325:244748 -k1,626:23356335,10009325:244747 -k1,626:25423638,10009325:244747 -k1,626:27779300,10009325:244747 -k1,626:29581838,10009325:244747 -k1,626:30959047,10009325:244747 +k1,626:9707820,10009325:265552 +k1,626:11670098,10009325:265551 +k1,626:15108248,10009325:265552 +k1,626:16641266,10009325:265552 +k1,626:19594449,10009325:265552 +k1,626:21356187,10009325:265551 +k1,626:22613299,10009325:265552 +k1,626:26579014,10009325:265552 +k1,626:28667121,10009325:265551 +k1,626:31043588,10009325:265552 k1,626:32583029,10009325:0 ) (1,627:6630773,10874405:25952256,505283,134348 -k1,626:8433719,10874405:196003 -k1,626:11839020,10874405:196003 -k1,626:13107192,10874405:196003 -k1,626:13919233,10874405:196003 -k1,626:16746507,10874405:196003 -k1,626:17593938,10874405:196003 -k1,626:20010300,10874405:196002 -k1,626:22584605,10874405:196003 -k1,626:23463493,10874405:196003 -k1,626:26554877,10874405:196003 -k1,626:27883342,10874405:196003 -k1,626:29145616,10874405:196003 -k1,626:31138616,10874405:196003 +k1,626:7972345,10874405:235324 +k1,626:9831652,10874405:235325 +k1,626:11673919,10874405:235324 +k1,626:15118542,10874405:235325 +k1,626:16426035,10874405:235324 +k1,626:17277398,10874405:235325 +k1,626:20143993,10874405:235324 +k1,626:21030746,10874405:235325 +k1,626:23486430,10874405:235324 +k1,626:26100057,10874405:235325 +k1,626:27018266,10874405:235324 +k1,626:30148972,10874405:235325 +k1,626:31516758,10874405:235324 k1,626:32583029,10874405:0 ) (1,627:6630773,11739485:25952256,505283,134348 -k1,626:10112832,11739485:249168 -k1,626:11553445,11739485:249168 -k1,626:14754354,11739485:249167 -k1,626:17938224,11739485:249168 -k1,626:21263652,11739485:249168 -k1,626:24685418,11739485:249168 -k1,626:26409801,11739485:249168 -k1,626:27014828,11739485:249167 -k1,626:29047231,11739485:249168 -k1,626:31648486,11739485:249168 +k1,626:8680018,11739485:252248 +k1,626:10391097,11739485:252248 +k1,626:13876236,11739485:252248 +k1,626:15319929,11739485:252248 +k1,626:18523919,11739485:252248 +k1,626:21710869,11739485:252248 +k1,626:25039377,11739485:252248 +k1,626:28464223,11739485:252248 +k1,626:30191686,11739485:252248 +k1,626:30799794,11739485:252248 k1,626:32583029,11739485:0 ) (1,627:6630773,12604565:25952256,513147,134348 -k1,626:7485222,12604565:195157 -k1,626:9635318,12604565:195157 -k1,626:11272922,12604565:195157 -k1,626:13759872,12604565:195156 -k1,626:17301297,12604565:195157 -k1,626:18990020,12604565:195157 -k1,626:19871339,12604565:195157 -k1,626:22551621,12604565:195157 -k1,626:23224535,12604565:195157 -k1,626:24590165,12604565:195157 -k1,626:25776881,12604565:195156 -k1,626:27255233,12604565:195157 -k1,626:28101818,12604565:195157 -k1,626:31373235,12604565:195157 -k1,627:32583029,12604565:0 +k1,626:9249404,12604565:266544 +k1,626:10450492,12604565:266545 +k1,626:11376328,12604565:266544 +k1,626:13597811,12604565:266544 +k1,626:15306802,12604565:266544 +k1,626:17865141,12604565:266545 +k1,626:21477953,12604565:266544 +k1,626:23238063,12604565:266544 +k1,626:24190770,12604565:266545 +k1,626:26942439,12604565:266544 +k1,626:27686740,12604565:266544 +k1,626:29123757,12604565:266544 +k1,626:30381862,12604565:266545 +k1,626:31931601,12604565:266544 +k1,626:32583029,12604565:0 ) (1,627:6630773,13469645:25952256,505283,134348 -k1,626:10274902,13469645:221839 -k1,626:15151763,13469645:221839 -k1,626:16392687,13469645:221839 -k1,626:19328373,13469645:221840 -k1,626:22185415,13469645:221839 -k1,626:25483514,13469645:221839 -k1,626:26896798,13469645:221839 -k1,626:29410431,13469645:221839 -k1,626:32583029,13469645:0 -) -(1,627:6630773,14334725:25952256,513147,126483 -g1,626:8166936,14334725 -g1,626:9113931,14334725 -k1,627:32583029,14334725:21439448 +k1,626:9947714,13469645:240681 +k1,626:14714311,13469645:240681 +k1,626:19610013,13469645:240680 +k1,626:20869779,13469645:240681 +k1,626:23824306,13469645:240681 +k1,626:26700190,13469645:240681 +k1,626:30017130,13469645:240680 +k1,626:31449256,13469645:240681 +k1,627:32583029,13469645:0 +) +(1,627:6630773,14334725:25952256,513147,134348 +g1,626:8094192,14334725 +g1,626:11466019,14334725 +g1,626:13002182,14334725 +g1,626:13949177,14334725 +k1,627:32583029,14334725:16604202 g1,627:32583029,14334725 ) (1,629:6630773,15199805:25952256,513147,95026 @@ -56311,8 +56442,8 @@ g1,643:-473656,-710413 ] ) ] -!24020 -}39 +!24038 +}40 Input:272:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:273:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:274:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -56322,7 +56453,7 @@ Input:277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !739 -{40 +{41 [1,732:4262630,47279633:28320399,43253760,0 (1,732:4262630,4025873:0,0,0 [1,732:-473656,4025873:0,0,0 @@ -56630,31 +56761,31 @@ k1,660:6764466,15715850:-1091726 ) (1,660:6764466,15715850:1091726,754393,260573 ) -k1,660:8106634,15715850:250442 -k1,660:8434314,15715850:327680 -k1,660:9312592,15715850:250443 -k1,660:9977826,15715850:250391 -k1,660:12255952,15715850:250442 -k1,660:13497955,15715850:250443 -k1,660:16945899,15715850:250442 -k1,660:17812380,15715850:250443 -k1,660:20603653,15715850:250442 -k1,660:22270984,15715850:250443 -$1,660:22270984,15715850 -(1,660:22270984,15715850:1058406,355205,7864 -) -k1,660:24784698,15715850:275660 -k1,660:25628556,15715850:275661 -$1,660:26027015,15715850 -k1,660:26277457,15715850:250442 -k1,660:27719345,15715850:250443 -$1,660:27719345,15715850 -(1,660:27719345,15715850:946340,473825,7864 -) -k1,660:30120993,15715850:275660 -k1,660:30964851,15715850:275661 -$1,660:31363310,15715850 -k1,660:31787422,15715850:250442 +k1,660:8097638,15715850:241446 +k1,660:8425318,15715850:327680 +k1,660:9294600,15715850:241447 +k1,660:10124559,15715850:241446 +k1,660:12393689,15715850:241446 +k1,660:13626695,15715850:241446 +k1,660:17065644,15715850:241447 +k1,660:17923128,15715850:241446 +k1,660:20705405,15715850:241446 +k1,660:22363740,15715850:241447 +$1,660:22363740,15715850 +(1,660:22363740,15715850:1058406,355205,7864 +) +k1,660:24861012,15715850:259218 +k1,660:25688428,15715850:259219 +$1,660:26086887,15715850 +k1,660:26328333,15715850:241446 +k1,660:27761224,15715850:241446 +$1,660:27761224,15715850 +(1,660:27761224,15715850:946340,473825,7864 +) +k1,660:30146431,15715850:259219 +k1,660:30973847,15715850:259219 +$1,660:31372306,15715850 +k1,660:31787422,15715850:241446 k1,661:32583029,15715850:0 ) (1,661:6764466,16580930:25818563,505283,134348 @@ -57182,22 +57313,22 @@ k1,704:31896867,39682125:247399 k1,704:32583029,39682125:0 ) (1,705:6764466,40547205:25818563,513147,134348 -k1,704:8620775,40547205:159582 -k1,704:9771918,40547205:159583 -k1,704:12822293,40547205:159582 -k1,704:13929527,40547205:159583 -k1,704:15259582,40547205:159582 -k1,704:16070592,40547205:159582 -k1,704:17884959,40547205:159583 -k1,704:18657303,40547205:159582 -k1,704:19835971,40547205:159583 -k1,704:20410357,40547205:159543 -k1,704:22990184,40547205:159582 -k1,704:24341211,40547205:159582 -k1,704:25792509,40547205:159583 -k1,704:26579926,40547205:159582 -k1,704:29072591,40547205:159583 -k1,704:30402646,40547205:159582 +k1,704:8609922,40547205:148729 +k1,704:9750210,40547205:148728 +k1,704:12789732,40547205:148729 +k1,704:13886112,40547205:148729 +k1,704:15205313,40547205:148728 +k1,704:16005470,40547205:148729 +k1,704:17808983,40547205:148729 +k1,704:18570474,40547205:148729 +k1,704:19738287,40547205:148728 +k1,704:20301809,40547205:148679 +k1,704:22870782,40547205:148728 +k1,704:24210956,40547205:148729 +k1,704:25651400,40547205:148729 +k1,704:26427964,40547205:148729 +k1,704:29083444,40547205:148728 +k1,704:30402646,40547205:148729 k1,704:32583029,40547205:0 ) (1,705:6764466,41412285:25818563,505283,134348 @@ -57294,8 +57425,8 @@ g1,732:-473656,-710413 ] ) ] -!26254 -}40 +!26255 +}41 Input:280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:282:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -57314,7 +57445,7 @@ Input:294:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:295:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:296:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1558 -{41 +{42 [1,813:4262630,47279633:28320399,43253760,0 (1,813:4262630,4025873:0,0,0 [1,813:-473656,4025873:0,0,0 @@ -57691,24 +57822,24 @@ k1,734:31478747,18292676:253988 k1,734:32583029,18292676:0 ) (1,735:6630773,19157756:25952256,505283,134348 -k1,734:7668946,19157756:290407 -k1,734:9348062,19157756:290408 -k1,734:10254507,19157756:290407 -k1,734:10959666,19157756:290316 -k1,734:14081228,19157756:290407 -k1,734:14829733,19157756:290408 -k1,734:15651637,19157756:290407 -k1,734:17008316,19157756:290408 -k1,734:17654583,19157756:290407 -k1,734:19528995,19157756:290407 -k1,734:21144541,19157756:290408 -k1,734:22086376,19157756:290407 -k1,734:23469269,19157756:290408 -k1,734:25113650,19157756:290407 -k1,734:26792765,19157756:290407 -k1,734:29325160,19157756:290408 -k1,734:31103890,19157756:290407 -k1,734:31607198,19157756:290316 +k1,734:7659292,19157756:280753 +k1,734:9328754,19157756:280754 +k1,734:10225545,19157756:280753 +k1,734:11094812,19157756:280754 +k1,734:14206720,19157756:280753 +k1,734:14945571,19157756:280754 +k1,734:15757821,19157756:280753 +k1,734:17104845,19157756:280753 +k1,734:17741459,19157756:280754 +k1,734:19606217,19157756:280753 +k1,734:21212109,19157756:280754 +k1,734:22144290,19157756:280753 +k1,734:23517529,19157756:280754 +k1,734:25152256,19157756:280753 +k1,734:26821718,19157756:280754 +k1,734:29344458,19157756:280753 +k1,734:31113534,19157756:280753 +k1,734:31607198,19157756:280672 k1,734:32583029,19157756:0 ) (1,735:6630773,20022836:25952256,505283,134348 @@ -57728,19 +57859,19 @@ k1,734:29734835,20022836:227611 k1,734:32583029,20022836:0 ) (1,735:6630773,20887916:25952256,505283,126483 -k1,734:7528313,20887916:281502 -k1,734:8828900,20887916:281502 -k1,734:12102122,20887916:281503 -k1,734:12999662,20887916:281502 -k1,734:14484405,20887916:281502 -k1,734:17183530,20887916:281502 -k1,734:19383927,20887916:281503 -k1,734:20684514,20887916:281502 -k1,734:23004186,20887916:281502 -k1,734:25296333,20887916:281502 -k1,734:27053051,20887916:281503 -k1,734:28143923,20887916:281502 -k1,734:31931601,20887916:281502 +k1,734:7514954,20887916:268143 +k1,734:8802182,20887916:268143 +k1,734:12062044,20887916:268143 +k1,734:12946225,20887916:268143 +k1,734:14417609,20887916:268143 +k1,734:17277046,20887916:268143 +k1,734:19464082,20887916:268142 +k1,734:20751310,20887916:268143 +k1,734:23057623,20887916:268143 +k1,734:25336411,20887916:268143 +k1,734:27079769,20887916:268143 +k1,734:28157282,20887916:268143 +k1,734:31931601,20887916:268143 k1,734:32583029,20887916:0 ) (1,735:6630773,21752996:25952256,505283,126483 @@ -58252,7 +58383,7 @@ g1,813:-473656,-710413 ) ] !24798 -}41 +}42 Input:297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -58265,7 +58396,7 @@ Input:305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:306:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:307:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1012 -{42 +{43 [1,890:4262630,47279633:28320399,43253760,0 (1,890:4262630,4025873:0,0,0 [1,890:-473656,4025873:0,0,0 @@ -58439,18 +58570,18 @@ k1,795:31450567,7391654:277311 k1,795:32583029,7391654:0 ) (1,796:6764466,8256734:25818563,505283,134348 -k1,795:8089932,8256734:259195 -k1,795:10479702,8256734:259195 -k1,795:12345840,8256734:259195 -k1,795:15814333,8256734:259195 -k1,795:17264973,8256734:259195 -k1,795:18861102,8256734:259195 -k1,795:21741736,8256734:259194 -k1,795:23345074,8256734:259195 -k1,795:24800956,8256734:259195 -k1,795:26661851,8256734:259195 -k1,795:30130344,8256734:259195 -k1,795:32051532,8256734:259195 +k1,795:8104404,8256734:273667 +k1,795:10508647,8256734:273668 +k1,795:12389257,8256734:273667 +k1,795:15698553,8256734:273668 +k1,795:17163665,8256734:273667 +k1,795:18774267,8256734:273668 +k1,795:21669374,8256734:273667 +k1,795:23287184,8256734:273667 +k1,795:24757539,8256734:273668 +k1,795:26632906,8256734:273667 +k1,795:30115872,8256734:273668 +k1,795:32051532,8256734:273667 k1,795:32583029,8256734:0 ) (1,796:6764466,9121814:25818563,505283,134348 @@ -59295,7 +59426,7 @@ g1,890:-473656,-710413 ) ] !27774 -}42 +}43 Input:308:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:309:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:310:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -59309,7 +59440,7 @@ Input:317:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:318:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1103 -{43 +{44 [1,988:4262630,47279633:28320399,43253760,0 (1,988:4262630,4025873:0,0,0 [1,988:-473656,4025873:0,0,0 @@ -61289,7 +61420,7 @@ g1,988:-473656,-710413 ) ] !48549 -}43 +}44 Input:320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:322:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -61307,7 +61438,7 @@ Input:333:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:334:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:335:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{44 +{45 [1,1156:4262630,47279633:28320399,43253760,0 (1,1156:4262630,4025873:0,0,0 [1,1156:-473656,4025873:0,0,0 @@ -63511,7 +63642,7 @@ g1,1156:-473656,-710413 ) ] !54853 -}44 +}45 Input:336:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:337:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:338:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -63523,7 +63654,7 @@ Input:343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{45 +{46 [1,1263:4262630,47279633:28320399,43253760,0 (1,1263:4262630,4025873:0,0,0 [1,1263:-473656,4025873:0,0,0 @@ -64553,12 +64684,12 @@ g1,1263:-473656,-710413 ) ] !27713 -}45 +}46 Input:346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{46 +{47 [1,1349:4262630,47279633:28320399,43253760,0 (1,1349:4262630,4025873:0,0,0 [1,1349:-473656,4025873:0,0,0 @@ -65521,7 +65652,7 @@ g1,1349:-473656,-710413 ) ] !25993 -}46 +}47 Input:349:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:350:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:351:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -65529,7 +65660,7 @@ Input:352:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:353:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:354:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !557 -{47 +{48 [1,1472:4262630,47279633:28320399,43253760,0 (1,1472:4262630,4025873:0,0,0 [1,1472:-473656,4025873:0,0,0 @@ -66524,7 +66655,7 @@ g1,1472:-473656,-710413 ) ] !26767 -}47 +}48 Input:355:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:356:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -66543,7 +66674,7 @@ Input:369:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:370:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:371:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1558 -{48 +{49 [1,1559:4262630,47279633:28320399,43253760,0 (1,1559:4262630,4025873:0,0,0 [1,1559:-473656,4025873:0,0,0 @@ -67631,7 +67762,7 @@ g1,1559:-473656,-710413 ) ] !29290 -}48 +}49 Input:372:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:373:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:374:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -67649,7 +67780,7 @@ Input:385:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:386:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:387:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{49 +{50 [1,1651:4262630,47279633:28320399,43253760,0 (1,1651:4262630,4025873:0,0,0 [1,1651:-473656,4025873:0,0,0 @@ -68696,7 +68827,7 @@ g1,1651:-473656,-710413 ) ] !28764 -}49 +}50 Input:388:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:389:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:390:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -68739,7 +68870,7 @@ Input:426:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:427:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:428:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3742 -{50 +{51 [1,1900:4262630,47279633:28320399,43253760,0 (1,1900:4262630,4025873:0,0,0 [1,1900:-473656,4025873:0,0,0 @@ -69763,9 +69894,9 @@ g1,1900:-473656,-710413 ) ] !29040 -}50 +}51 !11 -{51 +{52 [1,1900:4262630,47279633:28320399,43253760,0 (1,1900:4262630,4025873:0,0,0 [1,1900:-473656,4025873:0,0,0 @@ -70735,13 +70866,13 @@ g1,1900:-473656,-710413 ) ] !26341 -}51 +}52 Input:429:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:430:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{52 +{53 [1,1903:4262630,47279633:28320399,43253760,0 (1,1903:4262630,4025873:0,0,0 [1,1903:-473656,4025873:0,0,0 @@ -71791,11 +71922,11 @@ g1,1903:-473656,-710413 ) ] !28470 -}52 +}53 Input:433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:434:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !193 -{53 +{54 [1,2001:4262630,47279633:28320399,43253760,0 (1,2001:4262630,4025873:0,0,0 [1,2001:-473656,4025873:0,0,0 @@ -72455,35 +72586,36 @@ k1,1965:31086842,31232679:261685 k1,1965:32583029,31232679:0 ) (1,1966:6764466,32097759:25818563,513147,134348 -k1,1965:9040391,32097759:237755 -k1,1965:9894184,32097759:237755 -k1,1965:11151025,32097759:237756 -k1,1965:14084276,32097759:237755 -k1,1965:16455228,32097759:237755 -k1,1965:17375868,32097759:237755 -k1,1965:18632709,32097759:237756 -k1,1965:21830070,32097759:237755 -k1,1965:22727117,32097759:237755 -k1,1965:23983957,32097759:237755 -k1,1965:27090878,32097759:237755 -k1,1965:27956469,32097759:237756 -k1,1965:28550084,32097759:237755 -k1,1965:31483335,32097759:237755 +k1,1965:9034165,32097759:231529 +k1,1965:9881733,32097759:231530 +k1,1965:11132347,32097759:231529 +k1,1965:14059372,32097759:231529 +k1,1965:16424098,32097759:231529 +k1,1965:17338513,32097759:231530 +k1,1965:18589127,32097759:231529 +k1,1965:21780262,32097759:231529 +k1,1965:22671084,32097759:231530 +k1,1965:23921698,32097759:231529 +k1,1965:27022393,32097759:231529 +k1,1965:27881757,32097759:231529 +k1,1965:28469147,32097759:231530 +k1,1965:31396172,32097759:231529 k1,1965:32583029,32097759:0 ) (1,1966:6764466,32962839:25818563,513147,134348 -k1,1965:7944278,32962839:160727 -k1,1965:9601192,32962839:160727 -k1,1965:10377957,32962839:160727 -k1,1965:11327082,32962839:160727 -k1,1965:14569967,32962839:160727 -k1,1965:15262191,32962839:160727 -k1,1965:18484105,32962839:160727 -k1,1965:19534811,32962839:160727 -k1,1965:21020676,32962839:160727 -k1,1965:22575354,32962839:160727 -k1,1965:28358415,32962839:160727 -k1,1965:30587458,32962839:160727 +k1,1965:7948298,32962839:164747 +k1,1965:9609233,32962839:164748 +k1,1965:10390018,32962839:164747 +k1,1965:11343164,32962839:164748 +k1,1965:14590069,32962839:164747 +k1,1965:15286314,32962839:164748 +k1,1965:18512248,32962839:164747 +k1,1965:19566975,32962839:164748 +k1,1965:21056860,32962839:164747 +k1,1965:22615559,32962839:164748 +k1,1965:24908915,32962839:164747 +k1,1965:28354395,32962839:164748 +k1,1965:30587458,32962839:164747 k1,1965:32583029,32962839:0 ) (1,1966:6764466,33827919:25818563,505283,134348 @@ -72559,28 +72691,29 @@ k1,1967:30293856,37288239:216378 k1,1967:32583029,37288239:0 ) (1,1968:6764466,38153319:25818563,513147,134348 -k1,1967:9141569,38153319:238008 -k1,1967:12387680,38153319:238008 -k1,1967:13253523,38153319:238008 -k1,1967:14510616,38153319:238008 -k1,1967:17740343,38153319:238008 -k1,1967:18594389,38153319:238008 -k1,1967:19851482,38153319:238008 -k1,1967:21671529,38153319:238008 -k1,1967:22122490,38153319:237969 -k1,1967:23962198,38153319:238008 -k1,1967:27505187,38153319:238008 -k1,1967:29180400,38153319:238008 +k1,1967:9146157,38153319:242596 +k1,1967:12396856,38153319:242596 +k1,1967:13267286,38153319:242595 +k1,1967:14528967,38153319:242596 +k1,1967:17763282,38153319:242596 +k1,1967:21179787,38153319:242596 +k1,1967:22038421,38153319:242596 +k1,1967:23300101,38153319:242595 +k1,1967:25298407,38153319:242596 +k1,1967:25753951,38153319:242552 +k1,1967:27598247,38153319:242596 +k1,1967:31145824,38153319:242596 k1,1967:32583029,38153319:0 ) -(1,1968:6764466,39018399:25818563,513147,126483 -g1,1967:7725223,39018399 -g1,1967:9836137,39018399 -g1,1967:12106304,39018399 -g1,1967:13253184,39018399 -g1,1967:14471498,39018399 -g1,1967:15976860,39018399 -k1,1968:32583029,39018399:13273008 +(1,1968:6764466,39018399:25818563,513147,134348 +g1,1967:10366324,39018399 +g1,1967:11327081,39018399 +g1,1967:13437995,39018399 +g1,1967:15708162,39018399 +g1,1967:16855042,39018399 +g1,1967:18073356,39018399 +g1,1967:19578718,39018399 +k1,1968:32583029,39018399:9671150 g1,1968:32583029,39018399 ) (1,1970:6764466,39883479:25818563,505283,134348 @@ -72717,8 +72850,8 @@ g1,2001:-473656,-710413 ] ) ] -!24904 -}53 +!24964 +}54 Input:435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:436:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:437:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -72741,7 +72874,7 @@ Input:453:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:454:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:455:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1922 -{54 +{55 [1,2055:4262630,47279633:28320399,43253760,0 (1,2055:4262630,4025873:0,0,0 [1,2055:-473656,4025873:0,0,0 @@ -73327,34 +73460,34 @@ h1,2015:32527324,22762449:0,411205,112570 k1,2015:32583029,22762449:0 ) (1,2016:6764466,23627529:25818563,505283,134348 -k1,2015:7736694,23627529:178587 -k1,2015:10601603,23627529:178588 -k1,2015:13596272,23627529:178587 -k1,2015:15621008,23627529:178587 -k1,2015:17988498,23627529:178587 -k1,2015:18783124,23627529:178588 -k1,2015:22842098,23627529:178587 -k1,2015:25182062,23627529:178587 -k1,2015:25573621,23627529:178567 -k1,2015:27032126,23627529:178587 -k1,2015:28586315,23627529:178588 -k1,2015:29921612,23627529:178587 +k1,2015:7722223,23627529:164116 +k1,2015:10572660,23627529:164116 +k1,2015:13552858,23627529:164116 +k1,2015:15563123,23627529:164116 +k1,2015:17916142,23627529:164116 +k1,2015:18696295,23627529:164115 +k1,2015:22740798,23627529:164116 +k1,2015:25239962,23627529:164116 +k1,2015:25617035,23627529:164081 +k1,2015:27061069,23627529:164116 +k1,2015:28600786,23627529:164116 +k1,2015:29921612,23627529:164116 k1,2015:32583029,23627529:0 ) (1,2016:6764466,24492609:25818563,513147,126483 -k1,2015:7637910,24492609:214152 -k1,2015:9360700,24492609:214151 -k1,2015:10841008,24492609:214152 -k1,2015:13863377,24492609:214151 -k1,2015:16893611,24492609:214152 -k1,2015:17793924,24492609:214151 -k1,2015:20389654,24492609:214152 -k1,2015:21219843,24492609:214151 -k1,2015:25700389,24492609:214152 -k1,2015:27389755,24492609:214151 -k1,2015:28776346,24492609:214152 -k1,2015:30816330,24492609:214151 -k1,2015:31386342,24492609:214152 +k1,2015:7624550,24492609:200792 +k1,2015:9333982,24492609:200793 +k1,2015:10800930,24492609:200792 +k1,2015:13809940,24492609:200792 +k1,2015:17000485,24492609:200793 +k1,2015:17887439,24492609:200792 +k1,2015:20469809,24492609:200792 +k1,2015:21286639,24492609:200792 +k1,2015:25753826,24492609:200793 +k1,2015:27429833,24492609:200792 +k1,2015:28803064,24492609:200792 +k1,2015:30829690,24492609:200793 +k1,2015:31386342,24492609:200792 k1,2015:32583029,24492609:0 ) (1,2016:6764466,25357689:25818563,513147,134348 @@ -73814,7 +73947,7 @@ g1,2055:-473656,-710413 ) ] !30104 -}54 +}55 Input:456:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:457:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:458:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -73849,7 +73982,7 @@ Input:486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3014 -{55 +{56 [1,2132:4262630,47279633:28320399,43253760,0 (1,2132:4262630,4025873:0,0,0 [1,2132:-473656,4025873:0,0,0 @@ -74368,20 +74501,20 @@ g1,2093:32583029,20966688 h1,2093:6630773,21163296:0,0,0 (1,2097:6630773,22028376:25952256,513147,134348 h1,2096:6630773,22028376:983040,0,0 -k1,2096:8461100,22028376:219452 -k1,2096:11104729,22028376:219452 -k1,2096:12090297,22028376:219452 -k1,2096:14599576,22028376:219451 -k1,2096:15810588,22028376:219452 -k1,2096:17791648,22028376:219452 -k1,2096:18627138,22028376:219452 -k1,2096:19865675,22028376:219452 -k1,2096:24372492,22028376:219452 -k1,2096:25605131,22028376:219452 -k1,2096:27016027,22028376:219451 -k1,2096:28254564,22028376:219452 -k1,2096:30544298,22028376:219452 -k1,2096:31923737,22028376:219452 +k1,2096:8448695,22028376:207047 +k1,2096:11253589,22028376:207047 +k1,2096:12226752,22028376:207047 +k1,2096:14723626,22028376:207046 +k1,2096:15922233,22028376:207047 +k1,2096:17890888,22028376:207047 +k1,2096:18713973,22028376:207047 +k1,2096:19940105,22028376:207047 +k1,2096:24434517,22028376:207047 +k1,2096:25654751,22028376:207047 +k1,2096:27053242,22028376:207046 +k1,2096:28279374,22028376:207047 +k1,2096:30556703,22028376:207047 +k1,2096:31923737,22028376:207047 k1,2096:32583029,22028376:0 ) (1,2097:6630773,22893456:25952256,513147,134348 @@ -74949,7 +75082,7 @@ g1,2132:-473656,-710413 ) ] !31130 -}55 +}56 Input:489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -74958,7 +75091,7 @@ Input:493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !648 -{56 +{57 [1,2206:4262630,47279633:28320399,43253760,0 (1,2206:4262630,4025873:0,0,0 [1,2206:-473656,4025873:0,0,0 @@ -75935,7 +76068,7 @@ g1,2206:-473656,-710413 ) ] !26788 -}56 +}57 Input:496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:498:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -75948,7 +76081,7 @@ Input:504:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:505:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:506:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1012 -{57 +{58 [1,2319:4262630,47279633:28320399,43253760,0 (1,2319:4262630,4025873:0,0,0 [1,2319:-473656,4025873:0,0,0 @@ -76988,7 +77121,7 @@ g1,2319:-473656,-710413 ) ] !27738 -}57 +}58 Input:507:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:508:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:509:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -77006,7 +77139,7 @@ Input:520:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:521:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:522:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{58 +{59 [1,2392:4262630,47279633:28320399,43253760,0 (1,2392:4262630,4025873:0,0,0 [1,2392:-473656,4025873:0,0,0 @@ -78121,7 +78254,7 @@ g1,2392:-473656,-710413 ) ] !31177 -}58 +}59 Input:523:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:524:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:525:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -78137,7 +78270,7 @@ Input:534:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:535:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:536:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1285 -{59 +{60 [1,2492:4262630,47279633:28320399,43253760,0 (1,2492:4262630,4025873:0,0,0 [1,2492:-473656,4025873:0,0,0 @@ -78915,11 +79048,10 @@ g1,2463:12616322,32060334 g1,2463:15227931,32060334 g1,2463:17705192,32060334 g1,2463:20291898,32060334 -g1,2463:22337932,32060334 -g1,2463:24400350,32060334 -g1,2463:25246419,32060334 -g1,2463:28546156,32060334 -k1,2463:32583029,32060334:1427229 +g1,2463:24195877,32060334 +g1,2463:25041946,32060334 +g1,2463:28341683,32060334 +k1,2463:32583029,32060334:1631702 g1,2464:32583029,32060334 ) (1,2464:6764466,32925414:25818563,513147,126483 @@ -78946,17 +79078,16 @@ g1,2464:32583029,33051897 h1,2464:6630773,33051897:0,0,0 (1,2467:6630773,33916977:25952256,513147,134348 h1,2466:6630773,33916977:983040,0,0 -k1,2466:10994699,33916977:226638 -k1,2466:13540656,33916977:226638 -k1,2466:14958738,33916977:226637 -k1,2466:17483068,33916977:226638 -k1,2466:19450998,33916977:226638 -k1,2466:21465458,33916977:226638 -k1,2466:22223592,33916977:226637 -k1,2466:22806090,33916977:226638 -k1,2466:25771478,33916977:226638 -k1,2466:29246080,33916977:226638 -k1,2466:29887533,33916977:226610 +k1,2466:11017365,33916977:249304 +k1,2466:13585988,33916977:249304 +k1,2466:15026736,33916977:249303 +k1,2466:17573732,33916977:249304 +k1,2466:21352150,33916977:249304 +k1,2466:22132951,33916977:249304 +k1,2466:22738115,33916977:249304 +k1,2466:25726169,33916977:249304 +k1,2466:29223436,33916977:249303 +k1,2466:29887533,33916977:249254 k1,2467:32583029,33916977:0 ) (1,2467:6630773,34782057:25952256,505283,126483 @@ -79165,19 +79296,18 @@ k1,2487:27704529,41971526:261945 k1,2487:32583029,41971526:0 ) (1,2488:6764466,42836606:25818563,513147,134348 -k1,2487:9237190,42836606:266782 -k1,2487:10523057,42836606:266782 -k1,2487:13451256,42836606:266782 -k1,2487:15573361,42836606:266781 -k1,2487:16564971,42836606:266782 -k1,2487:18116259,42836606:266782 -k1,2487:19758642,42836606:266782 -k1,2487:22323116,42836606:266782 -k1,2487:24331190,42836606:266782 -k1,2487:26385794,42836606:266782 -k1,2487:27184072,42836606:266781 -k1,2487:30399974,42836606:266782 -k1,2487:31858201,42836606:266782 +k1,2487:9259422,42836606:289014 +k1,2487:10567520,42836606:289013 +k1,2487:13517951,42836606:289014 +k1,2487:15662289,42836606:289014 +k1,2487:16676130,42836606:289013 +k1,2487:18249650,42836606:289014 +k1,2487:19914265,42836606:289014 +k1,2487:22500970,42836606:289013 +k1,2487:26319098,42836606:289014 +k1,2487:27139609,42836606:289014 +k1,2487:30377742,42836606:289013 +k1,2487:31858201,42836606:289014 k1,2487:32583029,42836606:0 ) (1,2488:6764466,43701686:25818563,530548,126483 @@ -79225,8 +79355,8 @@ g1,2492:-473656,-710413 ] ) ] -!29450 -}59 +!29358 +}60 Input:537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:538:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:539:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -79250,7 +79380,7 @@ Input:556:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:557:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:558:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2013 -{60 +{61 [1,2593:4262630,47279633:28320399,43253760,0 (1,2593:4262630,4025873:0,0,0 [1,2593:-473656,4025873:0,0,0 @@ -79424,28 +79554,28 @@ g1,2491:32583029,7119177 (1,2493:6630773,7984257:25952256,505283,126483 h1,2492:6630773,7984257:983040,0,0 g1,2492:8855064,7984257 -g1,2492:12268834,7984257 -g1,2492:13336415,7984257 -g1,2492:14639926,7984257 -g1,2492:16276360,7984257 -g1,2492:17127017,7984257 -(1,2492:17127017,7984257:0,414482,115847 -r1,2593:17485283,7984257:358266,530329,115847 -k1,2492:17127017,7984257:-358266 -) -(1,2492:17127017,7984257:358266,414482,115847 -k1,2492:17127017,7984257:3277 -h1,2492:17482006,7984257:0,411205,112570 -) -g1,2492:17684512,7984257 -g1,2492:18239601,7984257 -g1,2492:21196585,7984257 -g1,2492:22081976,7984257 -g1,2492:24356730,7984257 -g1,2492:26424390,7984257 -g1,2492:27306504,7984257 -g1,2492:27861593,7984257 -k1,2493:32583029,7984257:2157668 +g1,2492:12442504,7984257 +g1,2492:13510085,7984257 +g1,2492:14813596,7984257 +g1,2492:16450030,7984257 +g1,2492:17300687,7984257 +(1,2492:17300687,7984257:0,414482,115847 +r1,2593:17658953,7984257:358266,530329,115847 +k1,2492:17300687,7984257:-358266 +) +(1,2492:17300687,7984257:358266,414482,115847 +k1,2492:17300687,7984257:3277 +h1,2492:17655676,7984257:0,411205,112570 +) +g1,2492:17858182,7984257 +g1,2492:18413271,7984257 +g1,2492:21370255,7984257 +g1,2492:22255646,7984257 +g1,2492:24530400,7984257 +g1,2492:26598060,7984257 +g1,2492:27480174,7984257 +g1,2492:28035263,7984257 +k1,2493:32583029,7984257:1983998 g1,2493:32583029,7984257 ) v1,2495:6630773,8669112:0,393216,0 @@ -80418,7 +80548,7 @@ g1,2593:-473656,-710413 ) ] !32186 -}60 +}61 Input:559:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:560:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:561:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -80439,7 +80569,7 @@ Input:575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:577:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1740 -{61 +{62 [1,2686:4262630,47279633:28320399,43253760,0 (1,2686:4262630,4025873:0,0,0 [1,2686:-473656,4025873:0,0,0 @@ -81053,40 +81183,40 @@ g1,2647:32583029,22333095 h1,2647:6630773,22529703:0,0,0 (1,2652:6630773,23394783:25952256,513147,134348 h1,2651:6630773,23394783:983040,0,0 -k1,2651:8420997,23394783:179349 -k1,2651:9619431,23394783:179349 -k1,2651:12790498,23394783:179348 -k1,2651:14825171,23394783:179349 -k1,2651:16023605,23394783:179349 -k1,2651:19605583,23394783:179349 -k1,2651:20732583,23394783:179349 -(1,2651:20732583,23394783:0,414482,115847 -r1,2686:23201120,23394783:2468537,530329,115847 -k1,2651:20732583,23394783:-2468537 -) -(1,2651:20732583,23394783:2468537,414482,115847 -k1,2651:20732583,23394783:3277 -h1,2651:23197843,23394783:0,411205,112570 -) -k1,2651:23380469,23394783:179349 -k1,2651:25755928,23394783:179348 -k1,2651:28684512,23394783:179349 -k1,2651:31088808,23394783:179349 +k1,2651:8405209,23394783:163561 +k1,2651:9587854,23394783:163560 +k1,2651:12743134,23394783:163561 +k1,2651:14935689,23394783:163560 +k1,2651:16118335,23394783:163561 +k1,2651:19684524,23394783:163560 +k1,2651:20795736,23394783:163561 +(1,2651:20795736,23394783:0,414482,115847 +r1,2686:23264273,23394783:2468537,530329,115847 +k1,2651:20795736,23394783:-2468537 +) +(1,2651:20795736,23394783:2468537,414482,115847 +k1,2651:20795736,23394783:3277 +h1,2651:23260996,23394783:0,411205,112570 +) +k1,2651:23427833,23394783:163560 +k1,2651:25787505,23394783:163561 +k1,2651:28700300,23394783:163560 +k1,2651:31088808,23394783:163561 k1,2651:32583029,23394783:0 ) (1,2652:6630773,24259863:25952256,505283,134348 -k1,2651:9163033,24259863:148716 -k1,2651:9939584,24259863:148716 -k1,2651:10503093,24259863:148666 -k1,2651:11843255,24259863:148717 -k1,2651:13693941,24259863:148716 -k1,2651:17015255,24259863:148716 -k1,2651:19514747,24259863:148716 -k1,2651:23241074,24259863:148716 -k1,2651:24381350,24259863:148716 -k1,2651:26043293,24259863:148717 -k1,2651:26843437,24259863:148716 -k1,2651:29913748,24259863:148716 +k1,2651:9148562,24259863:134245 +k1,2651:9910642,24259863:134245 +k1,2651:10459665,24259863:134180 +k1,2651:11785355,24259863:134245 +k1,2651:13621570,24259863:134245 +k1,2651:17102083,24259863:134245 +k1,2651:19587104,24259863:134245 +k1,2651:23298959,24259863:134244 +k1,2651:24424764,24259863:134245 +k1,2651:26072235,24259863:134245 +k1,2651:26857908,24259863:134245 +k1,2651:29913748,24259863:134245 k1,2651:32583029,24259863:0 ) (1,2652:6630773,25124943:25952256,505283,134348 @@ -81129,27 +81259,27 @@ k1,2651:30175236,26855103:254697 k1,2651:32583029,26855103:0 ) (1,2652:6630773,27720183:25952256,505283,126483 -k1,2651:8799521,27720183:217086 -k1,2651:10459054,27720183:217086 -k1,2651:13610187,27720183:217086 -(1,2651:13610187,27720183:0,459977,115847 -r1,2686:17837283,27720183:4227096,575824,115847 -k1,2651:13610187,27720183:-4227096 -) -(1,2651:13610187,27720183:4227096,459977,115847 -g1,2651:15723735,27720183 -g1,2651:16427159,27720183 -h1,2651:17834006,27720183:0,411205,112570 -) -k1,2651:18054369,27720183:217086 -k1,2651:20451838,27720183:217086 -k1,2651:21416690,27720183:217086 -k1,2651:23839062,27720183:217085 -k1,2651:24672186,27720183:217086 -k1,2651:25908357,27720183:217086 -k1,2651:27398808,27720183:217086 -k1,2651:28996738,27720183:217086 -k1,2651:29829862,27720183:217086 +k1,2651:8785048,27720183:202613 +k1,2651:10430109,27720183:202614 +k1,2651:13566769,27720183:202613 +(1,2651:13566769,27720183:0,459977,115847 +r1,2686:17793865,27720183:4227096,575824,115847 +k1,2651:13566769,27720183:-4227096 +) +(1,2651:13566769,27720183:4227096,459977,115847 +g1,2651:15680317,27720183 +g1,2651:16383741,27720183 +h1,2651:17790588,27720183:0,411205,112570 +) +k1,2651:17996479,27720183:202614 +k1,2651:20379475,27720183:202613 +k1,2651:21329855,27720183:202614 +k1,2651:23737755,27720183:202613 +k1,2651:24556406,27720183:202613 +k1,2651:25778105,27720183:202614 +k1,2651:27254083,27720183:202613 +k1,2651:29011211,27720183:202614 +k1,2651:29829862,27720183:202613 k1,2651:32583029,27720183:0 ) (1,2652:6630773,28585263:25952256,513147,126483 @@ -81357,17 +81487,17 @@ g1,2666:32583029,37140132 h1,2666:6630773,37140132:0,0,0 (1,2669:6630773,38005212:25952256,513147,134348 h1,2668:6630773,38005212:983040,0,0 -k1,2668:10256343,38005212:211800 -k1,2668:14238430,38005212:211801 -k1,2668:15441790,38005212:211800 -k1,2668:18182624,38005212:211800 -k1,2668:19964668,38005212:211801 -k1,2668:21367913,38005212:211800 -k1,2668:24718233,38005212:211801 -k1,2668:27960418,38005212:211800 -k1,2668:29730009,38005212:211800 -k1,2668:30933370,38005212:211801 -k1,2668:31501030,38005212:211800 +k1,2668:10240555,38005212:196012 +k1,2668:14206853,38005212:196012 +k1,2668:15394426,38005212:196013 +k1,2668:18119472,38005212:196012 +k1,2668:20059397,38005212:196012 +k1,2668:21446854,38005212:196012 +k1,2668:24781385,38005212:196012 +k1,2668:28007782,38005212:196012 +k1,2668:29761586,38005212:196013 +k1,2668:30949158,38005212:196012 +k1,2668:31501030,38005212:196012 k1,2669:32583029,38005212:0 ) (1,2669:6630773,38870292:25952256,513147,134348 @@ -81456,20 +81586,20 @@ h1,2670:6630773,42330612:983040,0,0 g1,2670:8440877,42330612 g1,2670:8995966,42330612 g1,2670:11469294,42330612 -g1,2670:15108508,42330612 -(1,2670:15108508,42330612:0,452978,115847 -r1,2686:15466774,42330612:358266,568825,115847 -k1,2670:15108508,42330612:-358266 -) -(1,2670:15108508,42330612:358266,452978,115847 -k1,2670:15108508,42330612:3277 -h1,2670:15463497,42330612:0,411205,112570 -) -g1,2670:15666003,42330612 -g1,2670:18898238,42330612 -g1,2670:22484368,42330612 -g1,2670:25654999,42330612 -k1,2671:32583029,42330612:4204354 +g1,2670:15282178,42330612 +(1,2670:15282178,42330612:0,452978,115847 +r1,2686:15640444,42330612:358266,568825,115847 +k1,2670:15282178,42330612:-358266 +) +(1,2670:15282178,42330612:358266,452978,115847 +k1,2670:15282178,42330612:3277 +h1,2670:15637167,42330612:0,411205,112570 +) +g1,2670:15839673,42330612 +g1,2670:19071908,42330612 +g1,2670:22658038,42330612 +g1,2670:25828669,42330612 +k1,2671:32583029,42330612:4030684 g1,2671:32583029,42330612 ) v1,2673:6630773,43015467:0,393216,0 @@ -81551,7 +81681,7 @@ g1,2686:-473656,-710413 ) ] !30657 -}61 +}62 Input:578:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:579:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:580:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -81569,7 +81699,7 @@ Input:591:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{62 +{63 [1,2780:4262630,47279633:28320399,43253760,0 (1,2780:4262630,4025873:0,0,0 [1,2780:-473656,4025873:0,0,0 @@ -81697,51 +81827,51 @@ g1,2780:6630773,45706769 [1,2780:6630773,45706769:25952256,40108032,0 (1,2684:6630773,6254097:25952256,505283,134348 h1,2683:6630773,6254097:983040,0,0 -k1,2683:9927352,6254097:218353 -k1,2683:10501566,6254097:218354 -k1,2683:12994018,6254097:218353 -k1,2683:16652356,6254097:218353 -k1,2683:17739062,6254097:218354 -k1,2683:19061697,6254097:218353 -k1,2683:21172731,6254097:218354 -k1,2683:24696065,6254097:218353 -k1,2683:26924407,6254097:218353 -(1,2683:26924407,6254097:0,452978,115847 -r1,2780:27986097,6254097:1061690,568825,115847 -k1,2683:26924407,6254097:-1061690 -) -(1,2683:26924407,6254097:1061690,452978,115847 -g1,2683:27631108,6254097 -h1,2683:27982820,6254097:0,411205,112570 -) -k1,2683:28204451,6254097:218354 -k1,2683:29108966,6254097:218353 +k1,2683:9911564,6254097:202565 +k1,2683:10469989,6254097:202565 +k1,2683:12946654,6254097:202566 +k1,2683:16762874,6254097:202565 +k1,2683:17833791,6254097:202565 +k1,2683:19140638,6254097:202565 +k1,2683:21235883,6254097:202565 +k1,2683:24743429,6254097:202565 +k1,2683:26955984,6254097:202566 +(1,2683:26955984,6254097:0,452978,115847 +r1,2780:28017674,6254097:1061690,568825,115847 +k1,2683:26955984,6254097:-1061690 +) +(1,2683:26955984,6254097:1061690,452978,115847 +g1,2683:27662685,6254097 +h1,2683:28014397,6254097:0,411205,112570 +) +k1,2683:28220239,6254097:202565 +k1,2683:29108966,6254097:202565 k1,2683:32583029,6254097:0 ) (1,2684:6630773,7119177:25952256,505283,134348 -g1,2683:7898894,7119177 -(1,2683:7898894,7119177:0,452978,115847 -r1,2780:12125990,7119177:4227096,568825,115847 -k1,2683:7898894,7119177:-4227096 -) -(1,2683:7898894,7119177:4227096,452978,115847 -k1,2683:7898894,7119177:3277 -h1,2683:12122713,7119177:0,411205,112570 -) -g1,2683:12498889,7119177 -g1,2683:13381003,7119177 -(1,2683:13381003,7119177:0,452978,115847 -r1,2780:15146116,7119177:1765113,568825,115847 -k1,2683:13381003,7119177:-1765113 -) -(1,2683:13381003,7119177:1765113,452978,115847 -k1,2683:13381003,7119177:3277 -h1,2683:15142839,7119177:0,411205,112570 -) -g1,2683:15345345,7119177 -g1,2683:18203370,7119177 -g1,2683:19534406,7119177 -k1,2684:32583029,7119177:11541951 +g1,2683:8072565,7119177 +(1,2683:8072565,7119177:0,452978,115847 +r1,2780:12299661,7119177:4227096,568825,115847 +k1,2683:8072565,7119177:-4227096 +) +(1,2683:8072565,7119177:4227096,452978,115847 +k1,2683:8072565,7119177:3277 +h1,2683:12296384,7119177:0,411205,112570 +) +g1,2683:12672560,7119177 +g1,2683:13554674,7119177 +(1,2683:13554674,7119177:0,452978,115847 +r1,2780:15319787,7119177:1765113,568825,115847 +k1,2683:13554674,7119177:-1765113 +) +(1,2683:13554674,7119177:1765113,452978,115847 +k1,2683:13554674,7119177:3277 +h1,2683:15316510,7119177:0,411205,112570 +) +g1,2683:15519016,7119177 +g1,2683:18377041,7119177 +g1,2683:19708077,7119177 +k1,2684:32583029,7119177:11368280 g1,2684:32583029,7119177 ) v1,2686:6630773,7804032:0,393216,0 @@ -82064,27 +82194,27 @@ g1,2725:32583029,19648674 h1,2725:6630773,19845282:0,0,0 (1,2729:6630773,20710362:25952256,505283,126483 h1,2728:6630773,20710362:983040,0,0 -k1,2728:8325326,20710362:223925 -k1,2728:9621445,20710362:223950 -(1,2728:9828539,20710362:0,414482,115847 -r1,2780:10186805,20710362:358266,530329,115847 -k1,2728:9828539,20710362:-358266 -) -(1,2728:9828539,20710362:358266,414482,115847 -k1,2728:9828539,20710362:3277 -h1,2728:10183528,20710362:0,411205,112570 -) -k1,2728:10617848,20710362:223949 -k1,2728:13500594,20710362:223950 -k1,2728:14856351,20710362:223950 -k1,2728:18228651,20710362:223950 -k1,2728:19080435,20710362:223949 -k1,2728:20507626,20710362:223950 -k1,2728:23392993,20710362:223950 -k1,2728:24485295,20710362:223950 -k1,2728:27007593,20710362:223950 -k1,2728:28250627,20710362:223949 -k1,2728:29622768,20710362:223950 +k1,2728:8311979,20710362:210578 +k1,2728:9594738,20710362:210590 +(1,2728:9801832,20710362:0,414482,115847 +r1,2780:10160098,20710362:358266,530329,115847 +k1,2728:9801832,20710362:-358266 +) +(1,2728:9801832,20710362:358266,414482,115847 +k1,2728:9801832,20710362:3277 +h1,2728:10156821,20710362:0,411205,112570 +) +k1,2728:10577781,20710362:210589 +k1,2728:13447167,20710362:210590 +k1,2728:14789563,20710362:210589 +k1,2728:18148503,20710362:210590 +k1,2728:18986927,20710362:210589 +k1,2728:20400758,20710362:210590 +k1,2728:23446434,20710362:210589 +k1,2728:24525376,20710362:210590 +k1,2728:27034313,20710362:210589 +k1,2728:28263988,20710362:210590 +k1,2728:29622768,20710362:210589 k1,2728:32583029,20710362:0 ) (1,2729:6630773,21575442:25952256,505283,115847 @@ -82715,7 +82845,7 @@ g1,2780:-473656,-710413 ) ] !31280 -}62 +}63 Input:594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -82724,7 +82854,7 @@ Input:598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:599:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:600:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !648 -{63 +{64 [1,2884:4262630,47279633:28320399,43253760,0 (1,2884:4262630,4025873:0,0,0 [1,2884:-473656,4025873:0,0,0 @@ -83747,7 +83877,7 @@ g1,2884:-473656,-710413 ) ] !27684 -}63 +}64 Input:601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -83760,7 +83890,7 @@ Input:609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1012 -{64 +{65 [1,2895:4262630,47279633:28320399,43253760,0 (1,2895:4262630,4025873:0,0,0 [1,2895:-473656,4025873:0,0,0 @@ -84105,22 +84235,22 @@ k1,2881:31215948,16996234:287616 k1,2881:32583029,16996234:0 ) (1,2882:6764466,17861314:25818563,505283,134348 -k1,2881:8036567,17861314:280541 -k1,2881:11019157,17861314:280541 -k1,2881:12542915,17861314:280540 -k1,2881:15320378,17861314:280541 -k1,2881:16516457,17861314:280541 -k1,2881:18778151,17861314:280541 -k1,2881:20379242,17861314:280541 -$1,2881:20586336,17861314 -$1,2881:21154533,17861314 -k1,2881:21642167,17861314:280540 -k1,2881:23114153,17861314:280541 -k1,2881:25668793,17861314:280541 -k1,2881:27471080,17861314:280541 -k1,2881:28378800,17861314:280540 -k1,2881:30544812,17861314:280541 -k1,2881:31816913,17861314:280541 +k1,2881:8024162,17861314:268136 +k1,2881:10994347,17861314:268136 +k1,2881:12505700,17861314:268135 +k1,2881:15270758,17861314:268136 +k1,2881:16454432,17861314:268136 +k1,2881:18703721,17861314:268136 +k1,2881:20292407,17861314:268136 +$1,2881:20499501,17861314 +$1,2881:21067698,17861314 +k1,2881:21542927,17861314:268135 +k1,2881:23002508,17861314:268136 +k1,2881:25544743,17861314:268136 +k1,2881:27334625,17861314:268136 +k1,2881:28403610,17861314:268135 +k1,2881:30557217,17861314:268136 +k1,2881:31816913,17861314:268136 k1,2881:32583029,17861314:0 ) (1,2882:6764466,18726394:25818563,513147,134348 @@ -84187,17 +84317,17 @@ k1,2881:31189078,21321634:269549 k1,2881:32583029,21321634:0 ) (1,2882:6764466,22186714:25818563,505283,134348 -k1,2881:10222126,22186714:296203 -k1,2881:12005438,22186714:296300 -k1,2881:14507680,22186714:296300 -k1,2881:16689451,22186714:296300 -k1,2881:17400496,22186714:296202 -k1,2881:19189706,22186714:296300 -k1,2881:20552277,22186714:296300 -k1,2881:22896577,22186714:296300 -k1,2881:23879039,22186714:296300 -k1,2881:27150018,22186714:296300 -k1,2881:29312128,22186714:296300 +k1,2881:10206350,22186714:280427 +k1,2881:11973871,22186714:280509 +k1,2881:14633992,22186714:280509 +k1,2881:16799972,22186714:280509 +k1,2881:17495242,22186714:280427 +k1,2881:19268661,22186714:280509 +k1,2881:20615441,22186714:280509 +k1,2881:22943950,22186714:280509 +k1,2881:23910621,22186714:280509 +k1,2881:27165809,22186714:280509 +k1,2881:29312128,22186714:280509 k1,2881:32583029,22186714:0 ) (1,2882:6764466,23051794:25818563,513147,126483 @@ -84627,7 +84757,7 @@ g1,2895:-473656,-710413 ) ] !25546 -}64 +}65 Input:612:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:613:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:614:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -84644,7 +84774,7 @@ Input:624:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:625:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:626:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1376 -{65 +{66 [1,3003:4262630,47279633:28320399,43253760,0 (1,3003:4262630,4025873:0,0,0 [1,3003:-473656,4025873:0,0,0 @@ -85115,43 +85245,44 @@ k1,2939:27536757,22277229:277144 k1,2939:32583029,22277229:0 ) (1,2940:6630773,23142309:25952256,505283,126483 -k1,2939:9074358,23142309:201598 -(1,2939:9074358,23142309:0,435480,115847 -r1,3003:9432624,23142309:358266,551327,115847 -k1,2939:9074358,23142309:-358266 -) -(1,2939:9074358,23142309:358266,435480,115847 -k1,2939:9074358,23142309:3277 -h1,2939:9429347,23142309:0,411205,112570 -) -k1,2939:9634222,23142309:201598 -k1,2939:11027265,23142309:201598 -(1,2939:11027265,23142309:0,452978,115847 -r1,3003:11385531,23142309:358266,568825,115847 -k1,2939:11027265,23142309:-358266 -) -(1,2939:11027265,23142309:358266,452978,115847 -k1,2939:11027265,23142309:3277 -h1,2939:11382254,23142309:0,411205,112570 -) -k1,2939:11587129,23142309:201598 -k1,2939:14764062,23142309:201598 -k1,2939:15617088,23142309:201598 -k1,2939:19096142,23142309:201599 -k1,2939:22573885,23142309:201598 -k1,2939:25852398,23142309:201598 -k1,2939:27200221,23142309:201598 -(1,2939:27200221,23142309:0,414482,115847 -r1,3003:27558487,23142309:358266,530329,115847 -k1,2939:27200221,23142309:-358266 -) -(1,2939:27200221,23142309:358266,414482,115847 -k1,2939:27200221,23142309:3277 -h1,2939:27555210,23142309:0,411205,112570 -) -k1,2939:28140849,23142309:201598 -k1,2939:30031965,23142309:201598 -k1,2939:31252648,23142309:201598 +k1,2939:9063329,23142309:190569 +(1,2939:9063329,23142309:0,435480,115847 +r1,3003:9421595,23142309:358266,551327,115847 +k1,2939:9063329,23142309:-358266 +) +(1,2939:9063329,23142309:358266,435480,115847 +k1,2939:9063329,23142309:3277 +h1,2939:9418318,23142309:0,411205,112570 +) +k1,2939:9612163,23142309:190568 +k1,2939:10994177,23142309:190569 +(1,2939:10994177,23142309:0,452978,115847 +r1,3003:11352443,23142309:358266,568825,115847 +k1,2939:10994177,23142309:-358266 +) +(1,2939:10994177,23142309:358266,452978,115847 +k1,2939:10994177,23142309:3277 +h1,2939:11349166,23142309:0,411205,112570 +) +k1,2939:11543012,23142309:190569 +k1,2939:13086898,23142309:190568 +k1,2939:14296552,23142309:190569 +k1,2939:17764575,23142309:190568 +k1,2939:21231289,23142309:190569 +k1,2939:24672444,23142309:190569 +k1,2939:26356578,23142309:190568 +k1,2939:27233309,23142309:190569 +(1,2939:27233309,23142309:0,414482,115847 +r1,3003:27591575,23142309:358266,530329,115847 +k1,2939:27233309,23142309:-358266 +) +(1,2939:27233309,23142309:358266,414482,115847 +k1,2939:27233309,23142309:3277 +h1,2939:27588298,23142309:0,411205,112570 +) +k1,2939:28162908,23142309:190569 +k1,2939:30042994,23142309:190568 +k1,2939:31252648,23142309:190569 k1,2940:32583029,23142309:0 ) (1,2940:6630773,24007389:25952256,505283,126483 @@ -85766,8 +85897,8 @@ g1,3003:-473656,-710413 ] ) ] -!30087 -}65 +!30120 +}66 Input:627:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:628:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:629:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -85779,7 +85910,7 @@ Input:634:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:635:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:636:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{66 +{67 [1,3115:4262630,47279633:28320399,43253760,0 (1,3115:4262630,4025873:0,0,0 [1,3115:-473656,4025873:0,0,0 @@ -86814,7 +86945,7 @@ g1,3115:-473656,-710413 ) ] !28003 -}66 +}67 Input:637:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:638:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:639:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -86832,7 +86963,7 @@ Input:650:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:651:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:652:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{67 +{68 [1,3219:4262630,47279633:28320399,43253760,0 (1,3219:4262630,4025873:0,0,0 [1,3219:-473656,4025873:0,0,0 @@ -87833,13 +87964,13 @@ g1,3219:-473656,-710413 ) ] !26078 -}67 +}68 Input:653:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:654:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{68 +{69 [1,3330:4262630,47279633:28320399,43253760,0 (1,3330:4262630,4025873:0,0,0 [1,3330:-473656,4025873:0,0,0 @@ -88446,21 +88577,21 @@ g1,3276:32583029,27090872 ) (1,3278:6630773,27955952:25952256,513147,134348 h1,3277:6630773,27955952:983040,0,0 -k1,3277:8881104,27955952:225269 -k1,3277:11767790,27955952:225269 -k1,3277:12644487,27955952:225269 -k1,3277:14061201,27955952:225269 -k1,3277:14752431,27955952:225269 -k1,3277:17931408,27955952:225269 -k1,3277:18815969,27955952:225269 -k1,3277:19397099,27955952:225270 -k1,3277:22242497,27955952:225269 -k1,3277:24445643,27955952:225269 -k1,3277:25662472,27955952:225269 -k1,3277:27897730,27955952:225269 -k1,3277:28478859,27955952:225269 -k1,3277:30658412,27955952:225269 -k1,3277:31499719,27955952:225269 +k1,3277:8869526,27955952:213691 +k1,3277:11918304,27955952:213691 +k1,3277:12783423,27955952:213691 +k1,3277:14188559,27955952:213691 +k1,3277:14868211,27955952:213691 +k1,3277:18035610,27955952:213691 +k1,3277:18908593,27955952:213691 +k1,3277:19478145,27955952:213692 +k1,3277:22311965,27955952:213691 +k1,3277:24503533,27955952:213691 +k1,3277:25708784,27955952:213691 +k1,3277:27932464,27955952:213691 +k1,3277:28502015,27955952:213691 +k1,3277:30669990,27955952:213691 +k1,3277:31499719,27955952:213691 k1,3277:32583029,27955952:0 ) (1,3278:6630773,28821032:25952256,513147,134348 @@ -88669,17 +88800,17 @@ g1,3301:32583029,35898089 h1,3301:6630773,36094697:0,0,0 (1,3305:6630773,36959777:25952256,505283,134348 h1,3304:6630773,36959777:983040,0,0 -k1,3304:8656252,36959777:244866 -k1,3304:9769471,36959777:244867 -k1,3304:11118619,36959777:244866 -k1,3304:14075365,36959777:244866 -k1,3304:16792904,36959777:244866 -k1,3304:18210210,36959777:244867 -k1,3304:22539280,36959777:244866 -k1,3304:24519539,36959777:244866 -k1,3304:25783490,36959777:244866 -k1,3304:29305812,36959777:244867 -k1,3304:31620305,36959777:244866 +k1,3304:8814135,36959777:229078 +k1,3304:9911565,36959777:229078 +k1,3304:11244925,36959777:229078 +k1,3304:14185883,36959777:229078 +k1,3304:16887634,36959777:229078 +k1,3304:18289151,36959777:229078 +k1,3304:22602433,36959777:229078 +k1,3304:24566904,36959777:229078 +k1,3304:25815067,36959777:229078 +k1,3304:29321600,36959777:229078 +k1,3304:31620305,36959777:229078 k1,3305:32583029,36959777:0 ) (1,3305:6630773,37824857:25952256,452978,126483 @@ -88759,26 +88890,26 @@ g1,3314:32583029,39633292 h1,3314:6630773,39829900:0,0,0 (1,3318:6630773,40694980:25952256,505283,134348 h1,3317:6630773,40694980:983040,0,0 -k1,3317:8418940,40694980:177292 -k1,3317:10288372,40694980:177292 -k1,3317:12163045,40694980:177291 -k1,3317:13111040,40694980:177292 -k1,3317:16515325,40694980:177292 -k1,3317:19931406,40694980:177292 -k1,3317:20640195,40694980:177292 -k1,3317:22101993,40694980:177292 -(1,3317:22101993,40694980:0,452978,122846 -r1,3330:24570530,40694980:2468537,575824,122846 -k1,3317:22101993,40694980:-2468537 -) -(1,3317:22101993,40694980:2468537,452978,122846 -k1,3317:22101993,40694980:3277 -h1,3317:24567253,40694980:0,411205,112570 -) -k1,3317:24747821,40694980:177291 -k1,3317:26935758,40694980:177292 -k1,3317:29404844,40694980:177292 -k1,3317:30795207,40694980:177292 +k1,3317:8404467,40694980:162819 +k1,3317:10259426,40694980:162819 +k1,3317:12293299,40694980:162820 +k1,3317:13226821,40694980:162819 +k1,3317:16616633,40694980:162819 +k1,3317:20018241,40694980:162819 +k1,3317:20712558,40694980:162820 +k1,3317:22159883,40694980:162819 +(1,3317:22159883,40694980:0,452978,122846 +r1,3330:24628420,40694980:2468537,575824,122846 +k1,3317:22159883,40694980:-2468537 +) +(1,3317:22159883,40694980:2468537,452978,122846 +k1,3317:22159883,40694980:3277 +h1,3317:24625143,40694980:0,411205,112570 +) +k1,3317:24791239,40694980:162819 +k1,3317:26964703,40694980:162819 +k1,3317:29419317,40694980:162820 +k1,3317:30795207,40694980:162819 k1,3317:32583029,40694980:0 ) (1,3318:6630773,41560060:25952256,513147,134348 @@ -88885,7 +89016,7 @@ g1,3330:-473656,-710413 ) ] !27773 -}68 +}69 Input:657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:658:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:659:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -88901,7 +89032,7 @@ Input:668:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:669:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:670:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1285 -{69 +{70 [1,3420:4262630,47279633:28320399,43253760,0 (1,3420:4262630,4025873:0,0,0 [1,3420:-473656,4025873:0,0,0 @@ -89155,65 +89286,65 @@ k1,3333:31591469,10826723:260161 k1,3333:32583029,10826723:0 ) (1,3334:6630773,11691803:25952256,513147,134348 -k1,3333:9240483,11691803:203883 -k1,3333:10060405,11691803:203884 -k1,3333:11772927,11691803:203883 -k1,3333:13685335,11691803:203884 -k1,3333:17291847,11691803:203883 -k1,3333:18600012,11691803:203883 -k1,3333:19551662,11691803:203884 -k1,3333:22764303,11691803:203883 -(1,3333:22764303,11691803:0,414482,115847 -r1,3420:24177704,11691803:1413401,530329,115847 -k1,3333:22764303,11691803:-1413401 -) -(1,3333:22764303,11691803:1413401,414482,115847 -k1,3333:22764303,11691803:3277 -h1,3333:24174427,11691803:0,411205,112570 -) -k1,3333:24381587,11691803:203883 -k1,3333:26790758,11691803:203884 -k1,3333:27680803,11691803:203883 -k1,3333:28655390,11691803:203884 -k1,3333:31931601,11691803:203883 +k1,3333:9199800,11691803:163200 +k1,3333:9979037,11691803:163199 +k1,3333:11650876,11691803:163200 +k1,3333:13522599,11691803:163199 +k1,3333:17088428,11691803:163200 +k1,3333:18355909,11691803:163199 +k1,3333:19266875,11691803:163200 +k1,3333:22438833,11691803:163200 +k1,3333:23087653,11691803:163199 +(1,3333:23087653,11691803:0,414482,115847 +r1,3420:24501054,11691803:1413401,530329,115847 +k1,3333:23087653,11691803:-1413401 +) +(1,3333:23087653,11691803:1413401,414482,115847 +k1,3333:23087653,11691803:3277 +h1,3333:24497777,11691803:0,411205,112570 +) +k1,3333:24664254,11691803:163200 +k1,3333:25358950,11691803:163199 +k1,3333:27727437,11691803:163200 +k1,3333:28576798,11691803:163199 +k1,3333:29510701,11691803:163200 k1,3333:32583029,11691803:0 ) -(1,3334:6630773,12556883:25952256,513147,134348 -k1,3333:10183387,12556883:271882 -(1,3333:10183387,12556883:0,414482,115847 -r1,3420:11948500,12556883:1765113,530329,115847 -k1,3333:10183387,12556883:-1765113 -) -(1,3333:10183387,12556883:1765113,414482,115847 -k1,3333:10183387,12556883:3277 -h1,3333:11945223,12556883:0,411205,112570 -) -k1,3333:12394052,12556883:271882 -k1,3333:14839109,12556883:271883 -k1,3333:15727029,12556883:271882 -(1,3333:15727029,12556883:0,414482,115847 -r1,3420:16437007,12556883:709978,530329,115847 -k1,3333:15727029,12556883:-709978 -) -(1,3333:15727029,12556883:709978,414482,115847 -k1,3333:15727029,12556883:3277 -h1,3333:16433730,12556883:0,411205,112570 -) -k1,3333:16708889,12556883:271882 -k1,3333:18991416,12556883:271882 -k1,3333:21001313,12556883:271882 -k1,3333:24045367,12556883:271882 -k1,3333:25884871,12556883:271883 -k1,3333:27175838,12556883:271882 -k1,3333:29156244,12556883:271882 -k1,3333:31563944,12556883:271882 +(1,3334:6630773,12556883:25952256,513147,126483 +k1,3333:7506803,12556883:224602 +k1,3333:11012138,12556883:224603 +(1,3333:11012138,12556883:0,414482,115847 +r1,3420:12777251,12556883:1765113,530329,115847 +k1,3333:11012138,12556883:-1765113 +) +(1,3333:11012138,12556883:1765113,414482,115847 +k1,3333:11012138,12556883:3277 +h1,3333:12773974,12556883:0,411205,112570 +) +k1,3333:13175523,12556883:224602 +(1,3333:13175523,12556883:0,414482,115847 +r1,3420:13885501,12556883:709978,530329,115847 +k1,3333:13175523,12556883:-709978 +) +(1,3333:13175523,12556883:709978,414482,115847 +k1,3333:13175523,12556883:3277 +h1,3333:13882224,12556883:0,411205,112570 +) +k1,3333:14110104,12556883:224603 +k1,3333:16345351,12556883:224602 +k1,3333:17561514,12556883:224603 +k1,3333:20558288,12556883:224602 +k1,3333:22350512,12556883:224603 +k1,3333:23594199,12556883:224602 +k1,3333:25527326,12556883:224603 +k1,3333:27887746,12556883:224602 +k1,3333:29131434,12556883:224603 +k1,3333:32051532,12556883:224602 k1,3333:32583029,12556883:0 ) -(1,3334:6630773,13421963:25952256,513147,126483 -g1,3333:9525498,13421963 -g1,3333:10256224,13421963 -k1,3334:32583028,13421963:19902628 -g1,3334:32583028,13421963 +(1,3334:6630773,13421963:25952256,505283,126483 +k1,3334:32583029,13421963:23528080 +g1,3334:32583029,13421963 ) v1,3336:6630773,14106818:0,393216,0 (1,3362:6630773,20810815:25952256,7097213,196608 @@ -89849,8 +89980,8 @@ g1,3420:-473656,-710413 ] ) ] -!25427 -}69 +!25440 +}70 Input:671:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:672:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -89864,7 +89995,7 @@ Input:680:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:681:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:682:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1103 -{70 +{71 [1,3579:4262630,47279633:28320399,43253760,0 (1,3579:4262630,4025873:0,0,0 [1,3579:-473656,4025873:0,0,0 @@ -90575,21 +90706,21 @@ k1,3419:29298365,27823763:174063 k1,3420:32583029,27823763:0 ) (1,3420:6630773,28688843:25952256,513147,134348 -k1,3419:8262794,28688843:154184 -k1,3419:8875076,28688843:154185 -k1,3419:9560757,28688843:154184 -k1,3419:11609587,28688843:154184 -k1,3419:12711422,28688843:154184 -k1,3419:15700694,28688843:154185 -k1,3419:16506306,28688843:154184 -k1,3419:18376223,28688843:154184 -k1,3419:19622892,28688843:154184 -k1,3419:20436369,28688843:154185 -k1,3419:23565232,28688843:154184 -k1,3419:26027594,28688843:154184 -k1,3419:26841070,28688843:154184 -k1,3419:28478990,28688843:154185 -k1,3419:30124118,28688843:154184 +k1,3419:8424886,28688843:142606 +k1,3419:9025590,28688843:142607 +k1,3419:9699693,28688843:142606 +k1,3419:11736945,28688843:142606 +k1,3419:12827202,28688843:142606 +k1,3419:15804896,28688843:142607 +k1,3419:16598930,28688843:142606 +k1,3419:18457269,28688843:142606 +k1,3419:19692360,28688843:142606 +k1,3419:20494259,28688843:142607 +k1,3419:23611544,28688843:142606 +k1,3419:26062328,28688843:142606 +k1,3419:26864226,28688843:142606 +k1,3419:28490568,28688843:142607 +k1,3419:30124118,28688843:142606 k1,3419:32583029,28688843:0 ) (1,3420:6630773,29553923:25952256,513147,126483 @@ -90983,7 +91114,7 @@ g1,3579:-473656,-710413 ) ] !28301 -}70 +}71 Input:683:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:684:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:685:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -90997,7 +91128,7 @@ Input:692:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:693:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:694:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1103 -{71 +{72 [1,3696:4262630,47279633:28320399,43253760,0 (1,3696:4262630,4025873:0,0,0 [1,3696:-473656,4025873:0,0,0 @@ -92174,7 +92305,7 @@ g1,3696:-473656,-710413 ) ] !30853 -}71 +}72 Input:695:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:696:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:697:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -92193,7 +92324,7 @@ Input:709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:710:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:711:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1558 -{72 +{73 [1,3797:4262630,47279633:28320399,43253760,0 (1,3797:4262630,4025873:0,0,0 [1,3797:-473656,4025873:0,0,0 @@ -93101,19 +93232,19 @@ k1,3760:31438771,33619745:174756 k1,3761:32583029,33619745:0 ) (1,3761:6764466,34484825:25818563,513147,134348 -k1,3760:7900961,34484825:196709 -k1,3760:11272233,34484825:196708 -k1,3760:13354413,34484825:196709 -k1,3760:15561767,34484825:196709 -k1,3760:16374513,34484825:196708 -k1,3760:16927082,34484825:196709 -k1,3760:19101668,34484825:196709 -k1,3760:20289937,34484825:196709 -k1,3760:23773276,34484825:196708 -k1,3760:24629277,34484825:196709 -k1,3760:26836631,34484825:196709 -k1,3760:29367731,34484825:196708 -k1,3760:31970267,34484825:196709 +k1,3760:8061272,34484825:183349 +k1,3760:11419186,34484825:183350 +k1,3760:13488006,34484825:183349 +k1,3760:15682001,34484825:183350 +k1,3760:16481388,34484825:183349 +k1,3760:17020597,34484825:183349 +k1,3760:19181824,34484825:183350 +k1,3760:20356733,34484825:183349 +k1,3760:23826713,34484825:183349 +k1,3760:24669355,34484825:183350 +k1,3760:26863349,34484825:183349 +k1,3760:29381091,34484825:183350 +k1,3760:31970267,34484825:183349 k1,3760:32583029,34484825:0 ) (1,3761:6764466,35349905:25818563,505283,126483 @@ -93343,13 +93474,13 @@ g1,3797:-473656,-710413 ) ] !32157 -}72 +}73 Input:712:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:713:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:714:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:715:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{73 +{74 [1,3885:4262630,47279633:28320399,43253760,0 (1,3885:4262630,4025873:0,0,0 [1,3885:-473656,4025873:0,0,0 @@ -94285,7 +94416,7 @@ g1,3885:-473656,-710413 ) ] !25155 -}73 +}74 Input:716:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:717:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:718:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -94297,7 +94428,7 @@ Input:723:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:724:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:725:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{74 +{75 [1,3967:4262630,47279633:28320399,43253760,0 (1,3967:4262630,4025873:0,0,0 [1,3967:-473656,4025873:0,0,0 @@ -94601,20 +94732,20 @@ k1,3886:31193666,16064885:235453 k1,3886:32583029,16064885:0 ) (1,3887:6630773,16929965:25952256,513147,134348 -k1,3886:9039070,16929965:201700 -k1,3886:10345051,16929965:201699 -k1,3886:11294517,16929965:201700 -k1,3886:15821592,16929965:201699 -k1,3886:16881814,16929965:201700 -k1,3886:17831279,16929965:201699 -k1,3886:21123002,16929965:201700 -k1,3886:21940739,16929965:201699 -k1,3886:24560062,16929965:201700 -h1,3886:24958521,16929965:0,0,0 -k1,3886:25540984,16929965:201699 -k1,3886:26370519,16929965:201700 -k1,3886:29109772,16929965:201699 -k1,3886:30514713,16929965:201700 +k1,3886:9025710,16929965:188340 +k1,3886:10318333,16929965:188341 +k1,3886:11254439,16929965:188340 +k1,3886:15768155,16929965:188340 +k1,3886:16815018,16929965:188341 +k1,3886:17751124,16929965:188340 +k1,3886:21029487,16929965:188340 +k1,3886:21833865,16929965:188340 +k1,3886:24439829,16929965:188341 +h1,3886:24838288,16929965:0,0,0 +k1,3886:25407392,16929965:188340 +k1,3886:26223567,16929965:188340 +k1,3886:29123132,16929965:188341 +k1,3886:30514713,16929965:188340 k1,3886:32583029,16929965:0 ) (1,3887:6630773,17795045:25952256,513147,134348 @@ -95258,7 +95389,7 @@ g1,3967:-473656,-710413 ) ] !26154 -}74 +}75 Input:726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:727:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -95270,7 +95401,7 @@ Input:733:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:734:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:735:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{75 +{76 [1,4085:4262630,47279633:28320399,43253760,0 (1,4085:4262630,4025873:0,0,0 [1,4085:-473656,4025873:0,0,0 @@ -96125,41 +96256,41 @@ k1,4084:31208739,42658941:229469 k1,4084:32583029,42658941:0 ) (1,4085:6630773,43524021:25952256,513147,134348 -k1,4084:7734399,43524021:180224 -k1,4084:9018905,43524021:180224 -k1,4084:10146780,43524021:180224 -k1,4084:12988421,43524021:180224 -k1,4084:15561364,43524021:180224 -k1,4084:18716267,43524021:180224 -k1,4084:21092603,43524021:180225 -k1,4084:22540293,43524021:180224 -k1,4084:25340646,43524021:180224 -k1,4084:27705185,43524021:180224 -k1,4084:28957578,43524021:180224 -k1,4084:30341043,43524021:180224 +k1,4084:7788193,43524021:234018 +k1,4084:9300164,43524021:234019 +k1,4084:10481833,43524021:234018 +k1,4084:13550938,43524021:234018 +k1,4084:16177675,43524021:234018 +k1,4084:19386373,43524021:234019 +k1,4084:21816502,43524021:234018 +k1,4084:23317986,43524021:234018 +k1,4084:26172133,43524021:234018 +k1,4084:28590467,43524021:234019 +k1,4084:29896654,43524021:234018 +k1,4084:31333913,43524021:234018 k1,4085:32583029,43524021:0 ) (1,4085:6630773,44389101:25952256,513147,134348 -k1,4084:8232236,44389101:260596 -k1,4084:9024328,44389101:260595 -k1,4084:11914884,44389101:260596 -k1,4084:13551081,44389101:260596 -k1,4084:14759327,44389101:260595 -k1,4084:17994602,44389101:260596 -k1,4084:20451309,44389101:260596 -k1,4084:24190555,44389101:260595 -k1,4084:25212679,44389101:260596 -k1,4084:27431491,44389101:260596 -k1,4084:28838311,44389101:260595 -(1,4084:28838311,44389101:0,452978,115847 -r1,4085:30603424,44389101:1765113,568825,115847 -k1,4084:28838311,44389101:-1765113 -) -(1,4084:28838311,44389101:1765113,452978,115847 -k1,4084:28838311,44389101:3277 -h1,4084:30600147,44389101:0,411205,112570 -) -k1,4084:31037690,44389101:260596 +k1,4084:9126146,44389101:179331 +k1,4084:9836974,44389101:179331 +k1,4084:12646265,44389101:179331 +k1,4084:14201197,44389101:179331 +k1,4084:15328179,44389101:179331 +k1,4084:18482190,44389101:179332 +k1,4084:20857632,44389101:179331 +k1,4084:24515614,44389101:179331 +k1,4084:25456473,44389101:179331 +k1,4084:27594020,44389101:179331 +k1,4084:28919576,44389101:179331 +(1,4084:28919576,44389101:0,452978,115847 +r1,4085:30684689,44389101:1765113,568825,115847 +k1,4084:28919576,44389101:-1765113 +) +(1,4084:28919576,44389101:1765113,452978,115847 +k1,4084:28919576,44389101:3277 +h1,4084:30681412,44389101:0,411205,112570 +) +k1,4084:31037690,44389101:179331 k1,4084:32583029,44389101:0 ) (1,4085:6630773,45254181:25952256,513147,115847 @@ -96222,7 +96353,7 @@ g1,4085:-473656,-710413 ) ] !24565 -}75 +}76 Input:736:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:737:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:738:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -96239,7 +96370,7 @@ Input:748:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:749:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1376 -{76 +{77 [1,4191:4262630,47279633:28320399,43253760,0 (1,4191:4262630,4025873:0,0,0 [1,4191:-473656,4025873:0,0,0 @@ -97119,15 +97250,15 @@ k1,4188:30003532,43065883:210623 k1,4188:32583029,43065883:0 ) (1,4189:6764466,43930963:25818563,513147,126483 -k1,4188:9270490,43930963:246343 -k1,4188:12743825,43930963:246342 -k1,4188:16984587,43930963:246343 -k1,4188:18128773,43930963:246343 -k1,4188:20071842,43930963:246342 -k1,4188:23980337,43930963:246343 -k1,4188:24912842,43930963:246343 -k1,4188:27540762,43930963:246342 -k1,4188:28403143,43930963:246343 +k1,4188:9251193,43930963:227046 +k1,4188:12705232,43930963:227046 +k1,4188:16926697,43930963:227046 +k1,4188:18051586,43930963:227046 +k1,4188:19975359,43930963:227046 +k1,4188:24038227,43930963:227046 +k1,4188:24951435,43930963:227046 +k1,4188:27560059,43930963:227046 +k1,4188:28403143,43930963:227046 k1,4188:32583029,43930963:0 ) ] @@ -97203,7 +97334,7 @@ g1,4191:-473656,-710413 ) ] !25357 -}76 +}77 Input:751:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:752:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:753:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -97226,7 +97357,7 @@ Input:769:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:770:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:771:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1922 -{77 +{78 [1,4293:4262630,47279633:28320399,43253760,0 (1,4293:4262630,4025873:0,0,0 [1,4293:-473656,4025873:0,0,0 @@ -98365,7 +98496,7 @@ g1,4293:-473656,-710413 ) ] !31071 -}77 +}78 Input:772:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:773:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:774:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -98387,7 +98518,7 @@ Input:789:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:790:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:791:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1831 -{78 +{79 [1,4401:4262630,47279633:28320399,43253760,0 (1,4401:4262630,4025873:0,0,0 [1,4401:-473656,4025873:0,0,0 @@ -98860,45 +98991,45 @@ k1,4318:29378974,19128343:243223 k1,4319:32583029,19128343:0 ) (1,4319:6630773,19993423:25952256,513147,126483 -k1,4318:7776967,19993423:180193 -k1,4318:8904810,19993423:180192 -(1,4318:8904810,19993423:0,452978,115847 -r1,4401:11373347,19993423:2468537,568825,115847 -k1,4318:8904810,19993423:-2468537 -) -(1,4318:8904810,19993423:2468537,452978,115847 -k1,4318:8904810,19993423:3277 -h1,4318:11370070,19993423:0,411205,112570 -) -k1,4318:11553540,19993423:180193 -k1,4318:13918047,19993423:180192 -(1,4318:13918047,19993423:0,459977,115847 -r1,4401:15683160,19993423:1765113,575824,115847 -k1,4318:13918047,19993423:-1765113 -) -(1,4318:13918047,19993423:1765113,459977,115847 -k1,4318:13918047,19993423:3277 -h1,4318:15679883,19993423:0,411205,112570 -) -k1,4318:15863353,19993423:180193 -k1,4318:17234991,19993423:180193 -(1,4318:17234991,19993423:0,459977,115847 -r1,4401:18648392,19993423:1413401,575824,115847 -k1,4318:17234991,19993423:-1413401 -) -(1,4318:17234991,19993423:1413401,459977,115847 -k1,4318:17234991,19993423:3277 -h1,4318:18645115,19993423:0,411205,112570 -) -k1,4318:19002254,19993423:180192 -k1,4318:19907275,19993423:180193 -k1,4318:20703505,19993423:180192 -k1,4318:23549703,19993423:180193 -k1,4318:24381324,19993423:180193 -k1,4318:25580601,19993423:180192 -k1,4318:28744648,19993423:180193 -k1,4318:29793192,19993423:180192 -k1,4318:31410590,19993423:180193 +k1,4318:7765389,19993423:168615 +k1,4318:8881654,19993423:168614 +(1,4318:8881654,19993423:0,452978,115847 +r1,4401:11350191,19993423:2468537,568825,115847 +k1,4318:8881654,19993423:-2468537 +) +(1,4318:8881654,19993423:2468537,452978,115847 +k1,4318:8881654,19993423:3277 +h1,4318:11346914,19993423:0,411205,112570 +) +k1,4318:11518806,19993423:168615 +k1,4318:13871735,19993423:168614 +(1,4318:13871735,19993423:0,459977,115847 +r1,4401:15636848,19993423:1765113,575824,115847 +k1,4318:13871735,19993423:-1765113 +) +(1,4318:13871735,19993423:1765113,459977,115847 +k1,4318:13871735,19993423:3277 +h1,4318:15633571,19993423:0,411205,112570 +) +k1,4318:15805463,19993423:168615 +k1,4318:17165522,19993423:168614 +(1,4318:17165522,19993423:0,459977,115847 +r1,4401:18578923,19993423:1413401,575824,115847 +k1,4318:17165522,19993423:-1413401 +) +(1,4318:17165522,19993423:1413401,459977,115847 +k1,4318:17165522,19993423:3277 +h1,4318:18575646,19993423:0,411205,112570 +) +k1,4318:18921208,19993423:168615 +k1,4318:19988321,19993423:168614 +k1,4318:20772974,19993423:168615 +k1,4318:23607593,19993423:168614 +k1,4318:24427636,19993423:168615 +k1,4318:25615335,19993423:168614 +k1,4318:28767804,19993423:168615 +k1,4318:29804770,19993423:168614 +k1,4318:31410590,19993423:168615 k1,4318:32583029,19993423:0 ) (1,4319:6630773,20858503:25952256,513147,126483 @@ -99148,166 +99279,167 @@ k1,4325:6764466,30216561:-997056 ) (1,4325:6764466,30216561:997056,701514,196608 ) -k1,4325:7940311,30216561:178789 -k1,4325:8267991,30216561:327680 -k1,4325:8659752,30216561:178769 -k1,4325:10313756,30216561:178789 -k1,4325:12347869,30216561:178789 -k1,4325:15616681,30216561:178789 -(1,4325:15616681,30216561:0,414482,115847 -r1,4401:16326659,30216561:709978,530329,115847 -k1,4325:15616681,30216561:-709978 -) -(1,4325:15616681,30216561:709978,414482,115847 -k1,4325:15616681,30216561:3277 -h1,4325:16323382,30216561:0,411205,112570 -) -k1,4325:16505448,30216561:178789 -k1,4325:17370399,30216561:178789 -k1,4325:17905048,30216561:178789 -k1,4325:19956856,30216561:178789 -k1,4325:21815988,30216561:178789 -k1,4325:24658160,30216561:178789 -k1,4325:27123500,30216561:178789 -k1,4325:28374458,30216561:178789 -k1,4325:29169285,30216561:178789 -k1,4325:31363961,30216561:178789 -(1,4325:31363961,30216561:0,414482,115847 -r1,4401:32073939,30216561:709978,530329,115847 -k1,4325:31363961,30216561:-709978 -) -(1,4325:31363961,30216561:709978,414482,115847 -k1,4325:31363961,30216561:3277 -h1,4325:32070662,30216561:0,411205,112570 -) -k1,4325:32252728,30216561:178789 +k1,4325:7974250,30216561:212728 +k1,4325:8301930,30216561:327680 +k1,4325:8727636,30216561:212714 +k1,4325:10415579,30216561:212728 +k1,4325:13718330,30216561:212728 +k1,4325:15786382,30216561:212728 +(1,4325:15786382,30216561:0,414482,115847 +r1,4401:16496360,30216561:709978,530329,115847 +k1,4325:15786382,30216561:-709978 +) +(1,4325:15786382,30216561:709978,414482,115847 +k1,4325:15786382,30216561:3277 +h1,4325:16493083,30216561:0,411205,112570 +) +k1,4325:16709088,30216561:212728 +k1,4325:17607978,30216561:212728 +k1,4325:18176566,30216561:212728 +k1,4325:20262313,30216561:212728 +k1,4325:22155383,30216561:212727 +k1,4325:25031494,30216561:212728 +k1,4325:27530773,30216561:212728 +k1,4325:28815670,30216561:212728 +k1,4325:29644436,30216561:212728 +k1,4325:31873051,30216561:212728 +(1,4325:31873051,30216561:0,414482,115847 +r1,4401:32583029,30216561:709978,530329,115847 +k1,4325:31873051,30216561:-709978 +) +(1,4325:31873051,30216561:709978,414482,115847 +k1,4325:31873051,30216561:3277 +h1,4325:32579752,30216561:0,411205,112570 +) k1,4325:32583029,30216561:0 ) (1,4326:6764466,31081641:25818563,513147,115847 -k1,4325:8634422,31081641:174540 -k1,4325:9425001,31081641:174541 -k1,4325:11941798,31081641:174540 -k1,4325:14865573,31081641:174540 -(1,4325:14865573,31081641:0,452978,115847 -r1,4401:17685822,31081641:2820249,568825,115847 -k1,4325:14865573,31081641:-2820249 -) -(1,4325:14865573,31081641:2820249,452978,115847 -k1,4325:14865573,31081641:3277 -h1,4325:17682545,31081641:0,411205,112570 -) -k1,4325:18034033,31081641:174541 -(1,4325:18034033,31081641:0,452978,115847 -r1,4401:22612841,31081641:4578808,568825,115847 -k1,4325:18034033,31081641:-4578808 -) -(1,4325:18034033,31081641:4578808,452978,115847 -k1,4325:18034033,31081641:3277 -h1,4325:22609564,31081641:0,411205,112570 -) -k1,4325:22961051,31081641:174540 -k1,4325:24247082,31081641:174540 -k1,4325:25613067,31081641:174540 -(1,4325:25613067,31081641:0,414482,115847 -r1,4401:26323045,31081641:709978,530329,115847 -k1,4325:25613067,31081641:-709978 -) -(1,4325:25613067,31081641:709978,414482,115847 -k1,4325:25613067,31081641:3277 -h1,4325:26319768,31081641:0,411205,112570 -) -k1,4325:26497586,31081641:174541 -k1,4325:29268007,31081641:174540 -k1,4325:30093975,31081641:174540 -k1,4325:31039219,31081641:174541 -(1,4325:31039219,31081641:0,414482,115847 -r1,4401:31749197,31081641:709978,530329,115847 -k1,4325:31039219,31081641:-709978 -) -(1,4325:31039219,31081641:709978,414482,115847 -k1,4325:31039219,31081641:3277 -h1,4325:31745920,31081641:0,411205,112570 -) -k1,4325:31923737,31081641:174540 +k1,4325:8977057,31081641:219641 +k1,4325:10892113,31081641:219640 +k1,4325:11727792,31081641:219641 +k1,4325:14289690,31081641:219641 +k1,4325:17258565,31081641:219640 +(1,4325:17258565,31081641:0,452978,115847 +r1,4401:20078814,31081641:2820249,568825,115847 +k1,4325:17258565,31081641:-2820249 +) +(1,4325:17258565,31081641:2820249,452978,115847 +k1,4325:17258565,31081641:3277 +h1,4325:20075537,31081641:0,411205,112570 +) +k1,4325:20472125,31081641:219641 +(1,4325:20472125,31081641:0,452978,115847 +r1,4401:25050933,31081641:4578808,568825,115847 +k1,4325:20472125,31081641:-4578808 +) +(1,4325:20472125,31081641:4578808,452978,115847 +k1,4325:20472125,31081641:3277 +h1,4325:25047656,31081641:0,411205,112570 +) +k1,4325:25444243,31081641:219640 +k1,4325:26775375,31081641:219641 +k1,4325:28186461,31081641:219641 +(1,4325:28186461,31081641:0,414482,115847 +r1,4401:28896439,31081641:709978,530329,115847 +k1,4325:28186461,31081641:-709978 +) +(1,4325:28186461,31081641:709978,414482,115847 +k1,4325:28186461,31081641:3277 +h1,4325:28893162,31081641:0,411205,112570 +) +k1,4325:29116079,31081641:219640 +k1,4325:31931601,31081641:219641 k1,4325:32583029,31081641:0 ) (1,4326:6764466,31946721:25818563,513147,126483 -k1,4325:8490261,31946721:170626 -(1,4325:8490261,31946721:0,452978,122846 -r1,4401:10958798,31946721:2468537,575824,122846 -k1,4325:8490261,31946721:-2468537 -) -(1,4325:8490261,31946721:2468537,452978,122846 -k1,4325:8490261,31946721:3277 -h1,4325:10955521,31946721:0,411205,112570 -) -k1,4325:11303095,31946721:170627 -(1,4325:11303095,31946721:0,414482,115847 -r1,4401:12013073,31946721:709978,530329,115847 -k1,4325:11303095,31946721:-709978 -) -(1,4325:11303095,31946721:709978,414482,115847 -k1,4325:11303095,31946721:3277 -h1,4325:12009796,31946721:0,411205,112570 -) -k1,4325:12183699,31946721:170626 -k1,4325:12885822,31946721:170626 -k1,4325:15901366,31946721:170626 -k1,4325:19232794,31946721:170627 -k1,4325:20212790,31946721:170626 -k1,4325:21402501,31946721:170626 -k1,4325:22368735,31946721:170627 -k1,4325:23190789,31946721:170626 -k1,4325:25063385,31946721:170626 -k1,4325:27346892,31946721:170626 -k1,4325:29215557,31946721:170627 -k1,4325:31858201,31946721:170626 +k1,4325:7764878,31946721:229709 +(1,4325:7764878,31946721:0,414482,115847 +r1,4401:8474856,31946721:709978,530329,115847 +k1,4325:7764878,31946721:-709978 +) +(1,4325:7764878,31946721:709978,414482,115847 +k1,4325:7764878,31946721:3277 +h1,4325:8471579,31946721:0,411205,112570 +) +k1,4325:8704566,31946721:229710 +k1,4325:9593567,31946721:229709 +k1,4325:11378446,31946721:229710 +(1,4325:11378446,31946721:0,452978,122846 +r1,4401:13846983,31946721:2468537,575824,122846 +k1,4325:11378446,31946721:-2468537 +) +(1,4325:11378446,31946721:2468537,452978,122846 +k1,4325:11378446,31946721:3277 +h1,4325:13843706,31946721:0,411205,112570 +) +k1,4325:14250362,31946721:229709 +(1,4325:14250362,31946721:0,414482,115847 +r1,4401:14960340,31946721:709978,530329,115847 +k1,4325:14250362,31946721:-709978 +) +(1,4325:14250362,31946721:709978,414482,115847 +k1,4325:14250362,31946721:3277 +h1,4325:14957063,31946721:0,411205,112570 +) +k1,4325:15190049,31946721:229709 +k1,4325:15951256,31946721:229710 +k1,4325:19025883,31946721:229709 +k1,4325:22416394,31946721:229710 +k1,4325:23455473,31946721:229709 +k1,4325:24704267,31946721:229709 +k1,4325:25729584,31946721:229710 +k1,4325:26610721,31946721:229709 +k1,4325:28542401,31946721:229710 +k1,4325:30884991,31946721:229709 k1,4325:32583029,31946721:0 ) (1,4326:6764466,32811801:25818563,505283,134348 -k1,4325:7542538,32811801:162034 -k1,4325:10037653,32811801:162033 -(1,4325:10037653,32811801:0,414482,115847 -r1,4401:10747631,32811801:709978,530329,115847 -k1,4325:10037653,32811801:-709978 -) -(1,4325:10037653,32811801:709978,414482,115847 -k1,4325:10037653,32811801:3277 -h1,4325:10744354,32811801:0,411205,112570 -) -k1,4325:10909665,32811801:162034 -k1,4325:11603196,32811801:162034 -k1,4325:12531346,32811801:162034 -k1,4325:13561731,32811801:162033 -k1,4325:15254031,32811801:162034 -k1,4325:16067493,32811801:162034 -k1,4325:17495683,32811801:162034 -k1,4325:18854403,32811801:162033 -k1,4325:22008156,32811801:162034 -k1,4325:24038621,32811801:162034 -k1,4325:25293140,32811801:162034 -k1,4325:26474258,32811801:162033 -k1,4325:29850833,32811801:162034 -k1,4325:32583029,32811801:0 +k1,4325:9431931,32811801:195447 +k1,4325:10352206,32811801:195447 +k1,4325:11163691,32811801:195447 +k1,4325:13692220,32811801:195447 +(1,4325:13692220,32811801:0,414482,115847 +r1,4401:14402198,32811801:709978,530329,115847 +k1,4325:13692220,32811801:-709978 +) +(1,4325:13692220,32811801:709978,414482,115847 +k1,4325:13692220,32811801:3277 +h1,4325:14398921,32811801:0,411205,112570 +) +k1,4325:14597646,32811801:195448 +k1,4325:15324590,32811801:195447 +k1,4325:16286153,32811801:195447 +k1,4325:17349952,32811801:195447 +k1,4325:19075665,32811801:195447 +k1,4325:19922540,32811801:195447 +k1,4325:21384143,32811801:195447 +k1,4325:22776277,32811801:195447 +k1,4325:25963444,32811801:195448 +k1,4325:28027322,32811801:195447 +k1,4325:29315254,32811801:195447 +k1,4325:30529786,32811801:195447 +k1,4326:32583029,32811801:0 ) (1,4326:6764466,33676881:25818563,505283,134348 -k1,4325:7648110,33676881:232216 -k1,4325:11913411,33676881:232215 -k1,4325:15335264,33676881:232216 -k1,4325:19044165,33676881:232216 -k1,4325:20085750,33676881:232215 -k1,4325:24137404,33676881:232216 -k1,4325:25750464,33676881:232216 -k1,4325:28729293,33676881:232215 -k1,4325:29493006,33676881:232216 +k1,4325:8222132,33676881:190200 +k1,4325:11158946,33676881:190200 +k1,4325:12000574,33676881:190200 +k1,4325:16223860,33676881:190200 +k1,4325:19603696,33676881:190199 +k1,4325:23270581,33676881:190200 +k1,4325:24270151,33676881:190200 +k1,4325:28279789,33676881:190200 +k1,4325:29850833,33676881:190200 k1,4325:32583029,33676881:0 ) (1,4326:6764466,34541961:25818563,505283,11795 -g1,4325:7579733,34541961 -g1,4325:10057649,34541961 -h1,4325:11426696,34541961:0,0,0 -g1,4325:11625925,34541961 -k1,4326:32583029,34541961:19036244 +g1,4325:7495192,34541961 +g1,4325:10784444,34541961 +g1,4325:11599711,34541961 +g1,4325:14077627,34541961 +h1,4325:15446674,34541961:0,0,0 +g1,4325:15645903,34541961 +k1,4326:32583029,34541961:15016266 g1,4326:32583029,34541961 ) v1,4328:6764466,35226816:0,393216,0 @@ -99508,8 +99640,8 @@ g1,4401:-473656,-710413 ] ) ] -!31599 -}78 +!31615 +}79 Input:792:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:793:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:794:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -99522,40 +99654,42 @@ Input:800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:801:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:802:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:803:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1103 -{79 -[1,4489:4262630,47279633:28320399,43253760,0 -(1,4489:4262630,4025873:0,0,0 -[1,4489:-473656,4025873:0,0,0 -(1,4489:-473656,-710413:0,0,0 -(1,4489:-473656,-644877:0,0,0 -k1,4489:-473656,-644877:-65536 +Input:804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1285 +{80 +[1,4488:4262630,47279633:28320399,43253760,0 +(1,4488:4262630,4025873:0,0,0 +[1,4488:-473656,4025873:0,0,0 +(1,4488:-473656,-710413:0,0,0 +(1,4488:-473656,-644877:0,0,0 +k1,4488:-473656,-644877:-65536 ) -(1,4489:-473656,4736287:0,0,0 -k1,4489:-473656,4736287:5209943 +(1,4488:-473656,4736287:0,0,0 +k1,4488:-473656,4736287:5209943 ) -g1,4489:-473656,-710413 +g1,4488:-473656,-710413 ) ] ) -[1,4489:6630773,47279633:25952256,43253760,0 -[1,4489:6630773,4812305:25952256,786432,0 -(1,4489:6630773,4812305:25952256,505283,11795 -(1,4489:6630773,4812305:25952256,505283,11795 -g1,4489:3078558,4812305 -[1,4489:3078558,4812305:0,0,0 -(1,4489:3078558,2439708:0,1703936,0 -k1,4489:1358238,2439708:-1720320 +[1,4488:6630773,47279633:25952256,43253760,0 +[1,4488:6630773,4812305:25952256,786432,0 +(1,4488:6630773,4812305:25952256,505283,11795 +(1,4488:6630773,4812305:25952256,505283,11795 +g1,4488:3078558,4812305 +[1,4488:3078558,4812305:0,0,0 +(1,4488:3078558,2439708:0,1703936,0 +k1,4488:1358238,2439708:-1720320 (1,604:1358238,2439708:1720320,1703936,0 (1,604:1358238,2439708:1179648,16384,0 -r1,4489:2537886,2439708:1179648,16384,0 +r1,4488:2537886,2439708:1179648,16384,0 ) g1,604:3062174,2439708 (1,604:3062174,2439708:16384,1703936,0 [1,604:3062174,2439708:25952256,1703936,0 (1,604:3062174,1915420:25952256,1179648,0 (1,604:3062174,1915420:16384,1179648,0 -r1,4489:3078558,1915420:16384,1179648,0 +r1,4488:3078558,1915420:16384,1179648,0 ) k1,604:29014430,1915420:25935872 g1,604:29014430,1915420 @@ -99565,16 +99699,16 @@ g1,604:29014430,1915420 ) ) ] -[1,4489:3078558,4812305:0,0,0 -(1,4489:3078558,2439708:0,1703936,0 -g1,4489:29030814,2439708 -g1,4489:36135244,2439708 +[1,4488:3078558,4812305:0,0,0 +(1,4488:3078558,2439708:0,1703936,0 +g1,4488:29030814,2439708 +g1,4488:36135244,2439708 (1,604:36135244,2439708:1720320,1703936,0 (1,604:36135244,2439708:16384,1703936,0 [1,604:36135244,2439708:25952256,1703936,0 (1,604:36135244,1915420:25952256,1179648,0 (1,604:36135244,1915420:16384,1179648,0 -r1,4489:36151628,1915420:16384,1179648,0 +r1,4488:36151628,1915420:16384,1179648,0 ) k1,604:62087500,1915420:25935872 g1,604:62087500,1915420 @@ -99583,25 +99717,25 @@ g1,604:62087500,1915420 ) g1,604:36675916,2439708 (1,604:36675916,2439708:1179648,16384,0 -r1,4489:37855564,2439708:1179648,16384,0 +r1,4488:37855564,2439708:1179648,16384,0 ) ) -k1,4489:3078556,2439708:-34777008 +k1,4488:3078556,2439708:-34777008 ) ] -[1,4489:3078558,4812305:0,0,0 -(1,4489:3078558,49800853:0,16384,2228224 -k1,4489:1358238,49800853:-1720320 +[1,4488:3078558,4812305:0,0,0 +(1,4488:3078558,49800853:0,16384,2228224 +k1,4488:1358238,49800853:-1720320 (1,604:1358238,49800853:1720320,16384,2228224 (1,604:1358238,49800853:1179648,16384,0 -r1,4489:2537886,49800853:1179648,16384,0 +r1,4488:2537886,49800853:1179648,16384,0 ) g1,604:3062174,49800853 (1,604:3062174,52029077:16384,1703936,0 [1,604:3062174,52029077:25952256,1703936,0 (1,604:3062174,51504789:25952256,1179648,0 (1,604:3062174,51504789:16384,1179648,0 -r1,4489:3078558,51504789:16384,1179648,0 +r1,4488:3078558,51504789:16384,1179648,0 ) k1,604:29014430,51504789:25935872 g1,604:29014430,51504789 @@ -99611,16 +99745,16 @@ g1,604:29014430,51504789 ) ) ] -[1,4489:3078558,4812305:0,0,0 -(1,4489:3078558,49800853:0,16384,2228224 -g1,4489:29030814,49800853 -g1,4489:36135244,49800853 +[1,4488:3078558,4812305:0,0,0 +(1,4488:3078558,49800853:0,16384,2228224 +g1,4488:29030814,49800853 +g1,4488:36135244,49800853 (1,604:36135244,49800853:1720320,16384,2228224 (1,604:36135244,52029077:16384,1703936,0 [1,604:36135244,52029077:25952256,1703936,0 (1,604:36135244,51504789:25952256,1179648,0 (1,604:36135244,51504789:16384,1179648,0 -r1,4489:36151628,51504789:16384,1179648,0 +r1,4488:36151628,51504789:16384,1179648,0 ) k1,604:62087500,51504789:25935872 g1,604:62087500,51504789 @@ -99629,32 +99763,32 @@ g1,604:62087500,51504789 ) g1,604:36675916,49800853 (1,604:36675916,49800853:1179648,16384,0 -r1,4489:37855564,49800853:1179648,16384,0 +r1,4488:37855564,49800853:1179648,16384,0 ) ) -k1,4489:3078556,49800853:-34777008 +k1,4488:3078556,49800853:-34777008 ) ] -g1,4489:6630773,4812305 -k1,4489:22383663,4812305:14955972 -g1,4489:24006334,4812305 -g1,4489:24793421,4812305 -g1,4489:27528893,4812305 -g1,4489:28938572,4812305 +g1,4488:6630773,4812305 +k1,4488:22383663,4812305:14955972 +g1,4488:24006334,4812305 +g1,4488:24793421,4812305 +g1,4488:27528893,4812305 +g1,4488:28938572,4812305 ) ) ] -[1,4489:6630773,45706769:25952256,40108032,0 -(1,4489:6630773,45706769:25952256,40108032,0 -(1,4489:6630773,45706769:0,0,0 -g1,4489:6630773,45706769 +[1,4488:6630773,45706769:25952256,40108032,0 +(1,4488:6630773,45706769:25952256,40108032,0 +(1,4488:6630773,45706769:0,0,0 +g1,4488:6630773,45706769 ) -[1,4489:6630773,45706769:25952256,40108032,0 +[1,4488:6630773,45706769:25952256,40108032,0 v1,4401:6630773,6254097:0,393216,0 (1,4401:6630773,13956838:25952256,8095957,0 g1,4401:6630773,13956838 g1,4401:6237557,13956838 -r1,4489:6368629,13956838:131072,8095957,0 +r1,4488:6368629,13956838:131072,8095957,0 g1,4401:6567858,13956838 g1,4401:6764466,13956838 [1,4401:6764466,13956838:25818563,8095957,0 @@ -99664,7 +99798,7 @@ g1,4377:6764466,9042561 g1,4377:6764466,9042561 g1,4377:6567858,9042561 (1,4377:6567858,9042561:0,3181680,196608 -r1,4489:32779637,9042561:26211779,3378288,196608 +r1,4488:32779637,9042561:26211779,3378288,196608 k1,4377:6567857,9042561:-26211780 ) (1,4377:6567858,9042561:26211779,3181680,196608 @@ -99742,7 +99876,7 @@ g1,4389:6764466,11706034 g1,4389:6764466,11706034 g1,4389:6567858,11706034 (1,4389:6567858,11706034:0,2175226,196608 -r1,4489:32779637,11706034:26211779,2371834,196608 +r1,4488:32779637,11706034:26211779,2371834,196608 k1,4389:6567857,11706034:-26211780 ) (1,4389:6567858,11706034:26211779,2175226,196608 @@ -99814,7 +99948,7 @@ g1,4399:6764466,13760230 g1,4399:6764466,13760230 g1,4399:6567858,13760230 (1,4399:6567858,13760230:0,700869,196608 -r1,4489:32779637,13760230:26211779,897477,196608 +r1,4488:32779637,13760230:26211779,897477,196608 k1,4399:6567857,13760230:-26211780 ) (1,4399:6567858,13760230:26211779,700869,196608 @@ -99850,12 +99984,12 @@ h1,4401:6630773,13956838:0,0,0 (1,4407:6630773,16787998:25952256,32768,229376 (1,4407:6630773,16787998:0,32768,229376 (1,4407:6630773,16787998:5505024,32768,229376 -r1,4489:12135797,16787998:5505024,262144,229376 +r1,4488:12135797,16787998:5505024,262144,229376 ) k1,4407:6630773,16787998:-5505024 ) (1,4407:6630773,16787998:25952256,32768,0 -r1,4489:32583029,16787998:25952256,32768,0 +r1,4488:32583029,16787998:25952256,32768,0 ) ) (1,4407:6630773,18419850:25952256,606339,151780 @@ -99900,21 +100034,21 @@ g1,4410:32583029,20543226 ) (1,4412:6630773,21408306:25952256,505283,134348 h1,4411:6630773,21408306:983040,0,0 -k1,4411:8422003,21408306:180355 -k1,4411:9805599,21408306:180355 -k1,4411:12264641,21408306:180355 -k1,4411:13313348,21408306:180355 -k1,4411:14485263,21408306:180355 -k1,4411:16424604,21408306:180355 -k1,4411:17256387,21408306:180355 -k1,4411:18461724,21408306:180354 -k1,4411:19972460,21408306:180355 -k1,4411:20804243,21408306:180355 -k1,4411:23188574,21408306:180355 -k1,4411:24051814,21408306:180355 -k1,4411:26839847,21408306:180355 -k1,4411:29492220,21408306:180355 -k1,4411:30864020,21408306:180355 +k1,4411:8410425,21408306:168777 +k1,4411:9782443,21408306:168777 +k1,4411:12403577,21408306:168777 +k1,4411:13440706,21408306:168777 +k1,4411:14601043,21408306:168777 +k1,4411:16528806,21408306:168777 +k1,4411:17349011,21408306:168777 +k1,4411:18542770,21408306:168776 +k1,4411:20041928,21408306:168777 +k1,4411:20862133,21408306:168777 +k1,4411:23234886,21408306:168777 +k1,4411:24086548,21408306:168777 +k1,4411:26863003,21408306:168777 +k1,4411:29503798,21408306:168777 +k1,4411:30864020,21408306:168777 k1,4411:32583029,21408306:0 ) (1,4412:6630773,22273386:25952256,513147,134348 @@ -99942,1294 +100076,1328 @@ k1,4411:30852223,22273386:212982 k1,4411:32583029,22273386:0 ) (1,4412:6630773,23138466:25952256,505283,134348 -k1,4411:9633578,23138466:209005 -k1,4411:10458622,23138466:209006 -k1,4411:12540646,23138466:209005 -k1,4411:14890712,23138466:209005 -k1,4411:17978714,23138466:209005 -k1,4411:19384407,23138466:209006 -k1,4411:21342568,23138466:209005 -k1,4411:24413530,23138466:209005 -k1,4411:25641620,23138466:209005 -k1,4411:28464857,23138466:209006 -k1,4411:29289900,23138466:209005 -k1,4411:30517990,23138466:209005 -k1,4411:32583029,23138466:0 +k1,4411:9710310,23138466:285737 +k1,4411:10612085,23138466:285737 +k1,4411:12770841,23138466:285737 +k1,4411:15197639,23138466:285737 +k1,4411:18362373,23138466:285737 +k1,4411:19844797,23138466:285737 +k1,4411:21879690,23138466:285737 +k1,4411:25027384,23138466:285737 +k1,4411:26332206,23138466:285737 +k1,4411:29232174,23138466:285737 +k1,4411:30133949,23138466:285737 +k1,4411:31438771,23138466:285737 +k1,4412:32583029,23138466:0 ) (1,4412:6630773,24003546:25952256,513147,134348 -k1,4411:9274496,24003546:165151 -k1,4411:11007267,24003546:165150 -k1,4411:12502799,24003546:165151 -k1,4411:15643285,24003546:165151 -k1,4411:16827520,24003546:165150 -k1,4411:18713646,24003546:165151 -k1,4411:23202206,24003546:165150 -k1,4411:26331550,24003546:165151 -k1,4411:28130514,24003546:165151 -k1,4411:28911702,24003546:165150 -k1,4411:31054730,24003546:165151 -k1,4412:32583029,24003546:0 -) -(1,4412:6630773,24868626:25952256,505283,134348 -k1,4411:8135325,24868626:237086 -k1,4411:10328662,24868626:237087 -k1,4411:11313514,24868626:237086 -$1,4411:11313514,24868626 -(1,4411:11776198,24966940:233243,346358,5505 -) -$1,4411:12009441,24868626 -k1,4411:12420198,24868626:237087 -k1,4411:13273322,24868626:237086 -k1,4411:13925214,24868626:237049 -k1,4411:14693797,24868626:237086 -k1,4411:18740492,24868626:237087 -k1,4411:19663740,24868626:237086 -(1,4411:19663740,24868626:0,452978,115847 -r1,4489:21077141,24868626:1413401,568825,115847 -k1,4411:19663740,24868626:-1413401 -) -(1,4411:19663740,24868626:1413401,452978,115847 -k1,4411:19663740,24868626:3277 -h1,4411:21073864,24868626:0,411205,112570 -) -k1,4411:21314228,24868626:237087 -k1,4411:22742759,24868626:237086 -k1,4411:23998931,24868626:237087 -k1,4411:26118866,24868626:237086 -k1,4411:28507500,24868626:237087 -k1,4411:29506114,24868626:237086 +k1,4411:7934284,24003546:190054 +k1,4411:10602911,24003546:190055 +k1,4411:12360586,24003546:190054 +k1,4411:13881021,24003546:190054 +k1,4411:17046410,24003546:190054 +k1,4411:18255550,24003546:190055 +k1,4411:20166579,24003546:190054 +k1,4411:24680043,24003546:190054 +k1,4411:27834290,24003546:190054 +k1,4411:29799060,24003546:190055 +k1,4411:30605152,24003546:190054 +k1,4411:32583029,24003546:0 +) +(1,4412:6630773,24868626:25952256,513147,126483 +k1,4411:9582611,24868626:262240 +$1,4411:9582611,24868626 +(1,4411:10045295,24966940:311689,334430,0 +) +$1,4411:10356984,24868626 +k1,4411:10619223,24868626:262239 +k1,4411:14253290,24868626:262240 +k1,4411:15534615,24868626:262240 +k1,4411:17276657,24868626:262239 +k1,4411:18221782,24868626:262240 +k1,4411:21333526,24868626:262239 +k1,4411:24219172,24868626:262240 +k1,4411:25140704,24868626:262240 +k1,4411:27380820,24868626:262239 +$1,4411:27380820,24868626 +(1,4411:27843504,24966940:1729233,346358,5505 +) +$1,4411:29572737,24868626 +k1,4411:30008647,24868626:262240 +k1,4411:30886925,24868626:262240 +k1,4411:31563944,24868626:262176 k1,4411:32583029,24868626:0 ) -(1,4412:6630773,25733706:25952256,505283,134348 -g1,4411:7849087,25733706 -g1,4411:10753642,25733706 -g1,4411:12144316,25733706 -g1,4411:15082950,25733706 -g1,4411:17433726,25733706 -g1,4411:18319117,25733706 -(1,4411:18319117,25733706:0,414482,115847 -r1,4489:18677383,25733706:358266,530329,115847 -k1,4411:18319117,25733706:-358266 -) -(1,4411:18319117,25733706:358266,414482,115847 -k1,4411:18319117,25733706:3277 -h1,4411:18674106,25733706:0,411205,112570 -) -k1,4412:32583029,25733706:13853218 +(1,4412:6630773,25733706:25952256,513147,126483 +g1,4411:10134983,25733706 +g1,4411:13023810,25733706 +g1,4411:13754536,25733706 +(1,4411:13754536,25733706:0,452978,115847 +r1,4488:15167937,25733706:1413401,568825,115847 +k1,4411:13754536,25733706:-1413401 +) +(1,4411:13754536,25733706:1413401,452978,115847 +k1,4411:13754536,25733706:3277 +h1,4411:15164660,25733706:0,411205,112570 +) +g1,4411:15367166,25733706 +g1,4411:16514046,25733706 +g1,4411:17732360,25733706 +g1,4411:20554995,25733706 +g1,4411:21945669,25733706 +(1,4411:21945669,25733706:0,414482,115847 +r1,4488:22303935,25733706:358266,530329,115847 +k1,4411:21945669,25733706:-358266 +) +(1,4411:21945669,25733706:358266,414482,115847 +k1,4411:21945669,25733706:3277 +h1,4411:22300658,25733706:0,411205,112570 +) +g1,4411:22503164,25733706 +g1,4411:23650044,25733706 +g1,4411:24868358,25733706 +k1,4412:32583029,25733706:5684366 g1,4412:32583029,25733706 ) -(1,4414:6630773,26598786:25952256,513147,115847 +(1,4414:6630773,26598786:25952256,513147,134348 h1,4413:6630773,26598786:983040,0,0 -g1,4413:8766591,26598786 -g1,4413:11169796,26598786 -g1,4413:12388110,26598786 -g1,4413:13893472,26598786 -g1,4413:14889619,26598786 -g1,4413:17958014,26598786 -g1,4413:18816535,26598786 -g1,4413:20034849,26598786 -g1,4413:22211955,26598786 -(1,4413:22211955,26598786:0,452978,115847 -r1,4489:24680492,26598786:2468537,568825,115847 -k1,4413:22211955,26598786:-2468537 -) -(1,4413:22211955,26598786:2468537,452978,115847 -k1,4413:22211955,26598786:3277 -h1,4413:24677215,26598786:0,411205,112570 -) -k1,4414:32583029,26598786:7850109 -g1,4414:32583029,26598786 -) -v1,4416:6630773,27283641:0,393216,0 -(1,4424:6630773,29125106:25952256,2234681,196608 -g1,4424:6630773,29125106 -g1,4424:6630773,29125106 -g1,4424:6434165,29125106 -(1,4424:6434165,29125106:0,2234681,196608 -r1,4489:32779637,29125106:26345472,2431289,196608 -k1,4424:6434165,29125106:-26345472 -) -(1,4424:6434165,29125106:26345472,2234681,196608 -[1,4424:6630773,29125106:25952256,2038073,0 -(1,4418:6630773,27511472:25952256,424439,79822 -(1,4417:6630773,27511472:0,0,0 -g1,4417:6630773,27511472 -g1,4417:6630773,27511472 -g1,4417:6303093,27511472 -(1,4417:6303093,27511472:0,0,0 -) -g1,4417:6630773,27511472 -) -g1,4418:8290543,27511472 -g1,4418:9286405,27511472 -h1,4418:13601806,27511472:0,0,0 -k1,4418:32583030,27511472:18981224 -g1,4418:32583030,27511472 -) -(1,4419:6630773,28196327:25952256,407923,6605 -h1,4419:6630773,28196327:0,0,0 -h1,4419:7958589,28196327:0,0,0 -k1,4419:32583029,28196327:24624440 -g1,4419:32583029,28196327 -) -(1,4423:6630773,29012254:25952256,431045,112852 -(1,4421:6630773,29012254:0,0,0 -g1,4421:6630773,29012254 -g1,4421:6630773,29012254 -g1,4421:6303093,29012254 -(1,4421:6303093,29012254:0,0,0 -) -g1,4421:6630773,29012254 -) -g1,4423:7626635,29012254 -g1,4423:7958589,29012254 -g1,4423:9286405,29012254 -g1,4423:10614221,29012254 -g1,4423:11942037,29012254 -g1,4423:13269853,29012254 -g1,4423:14597669,29012254 -g1,4423:15925485,29012254 -g1,4423:17253301,29012254 -g1,4423:18581117,29012254 -g1,4423:19908933,29012254 -g1,4423:21236749,29012254 -h1,4423:22232611,29012254:0,0,0 -k1,4423:32583029,29012254:10350418 -g1,4423:32583029,29012254 -) -] -) -g1,4424:32583029,29125106 -g1,4424:6630773,29125106 -g1,4424:6630773,29125106 -g1,4424:32583029,29125106 -g1,4424:32583029,29125106 -) -h1,4424:6630773,29321714:0,0,0 -(1,4452:6630773,34294742:25952256,4252132,0 -k1,4452:7877917,34294742:1247144 -(1,4427:7877917,34294742:0,0,0 -g1,4427:7877917,34294742 -g1,4427:7877917,34294742 -g1,4427:7550237,34294742 -(1,4427:7550237,34294742:0,0,0 -) -g1,4427:7877917,34294742 -) -(1,4450:7877917,34294742:23457968,4252132,0 -g1,4450:17421117,34294742 -(1,4450:17421117,31408990:0,0,0 -(1,4441:17421117,31408990:0,0,0 -g1,4439:17421117,31408990 -g1,4440:17421117,31408990 -g1,4440:17421117,31408990 -g1,4440:17421117,31408990 -g1,4440:17421117,31408990 -g1,4441:17421117,31408990 -) -(1,4450:17421117,31408990:0,0,0 -g1,4432:17421117,31408990 -(1,4436:17421117,31408990:0,0,0 -(1,4436:17421117,31408990:0,0,0 -g1,4436:17421117,31408990 -g1,4436:17421117,31408990 -g1,4436:17421117,31408990 -g1,4436:17421117,31408990 -g1,4436:17421117,31408990 -(1,4436:17421117,31408990:0,0,0 -(1,4436:17421117,31408990:13078954,1854498,528775 -[1,4436:17421117,31408990:13078954,1854498,528775 -(1,4436:17421117,30228016:13078954,673524,285028 -g1,4435:17421117,30228016 -(1,4435:17421117,30228016:665744,673524,285028 -k1,4435:17620692,30228016:199575 -g1,4435:18086861,30228016 -(1,4435:18086861,30228016:0,660417,271921 -(1,4435:18086861,30228016:0,0,0 -(1,4435:18086861,30228016:0,0,0 -g1,4435:18086861,30228016 -g1,4435:18086861,30228016 -g1,4435:18086861,30228016 -g1,4435:18086861,30228016 -g1,4435:18086861,30228016 -(1,4435:18086861,30228016:0,0,0 -(1,4435:18086861,30228016:331874,388497,0 -(1,4435:18086861,30228016:331874,388497,0 -) -g1,4435:18418735,30228016 -) -) -g1,4435:18086861,30228016 -g1,4435:18086861,30228016 -) -) -g1,4435:18086861,30228016 -) -) -g1,4435:18086861,30228016 -(1,4435:18086861,30228016:665744,673524,285028 -g1,4435:18553030,30228016 -k1,4435:18752605,30228016:199575 -) -g1,4435:18752605,30228016 -(1,4435:18752605,30228016:639530,673524,285028 -k1,4435:18939073,30228016:186468 -g1,4435:19392135,30228016 -(1,4435:19392135,30228016:0,673524,285028 -(1,4435:19392135,30228016:0,0,0 -(1,4435:19392135,30228016:0,0,0 -g1,4435:19392135,30228016 -g1,4435:19392135,30228016 -g1,4435:19392135,30228016 -g1,4435:19392135,30228016 -g1,4435:19392135,30228016 -(1,4435:19392135,30228016:0,0,0 -(1,4435:19392135,30228016:331874,388497,0 -(1,4435:19392135,30228016:331874,388497,0 -) -g1,4435:19724009,30228016 -) -) -g1,4435:19392135,30228016 -g1,4435:19392135,30228016 -) -) -g1,4435:19392135,30228016 -) -) -g1,4435:19392135,30228016 -(1,4435:19392135,30228016:665744,673524,285028 -g1,4435:19871411,30228016 -k1,4435:20057879,30228016:186468 -) -g1,4435:20057879,30228016 -(1,4435:20057879,30228016:639530,673524,285028 -k1,4435:20257454,30228016:199575 -g1,4435:20697409,30228016 -(1,4435:20697409,30228016:0,655699,276639 -(1,4435:20697409,30228016:0,0,0 -(1,4435:20697409,30228016:0,0,0 -g1,4435:20697409,30228016 -g1,4435:20697409,30228016 -g1,4435:20697409,30228016 -g1,4435:20697409,30228016 -g1,4435:20697409,30228016 -(1,4435:20697409,30228016:0,0,0 -(1,4435:20697409,30228016:331874,388497,9436 -(1,4435:20697409,30228016:331874,388497,9436 -) -g1,4435:21029283,30228016 -) -) -g1,4435:20697409,30228016 -g1,4435:20697409,30228016 -) -) -g1,4435:20697409,30228016 -) -) -g1,4435:20697409,30228016 -(1,4435:20697409,30228016:665744,673524,285028 -g1,4435:21163578,30228016 -k1,4435:21363153,30228016:199575 -) -g1,4435:21363153,30228016 -(1,4435:21363153,30228016:639530,673524,285028 -k1,4435:21562728,30228016:199575 -g1,4435:22002683,30228016 -(1,4435:22002683,30228016:0,655699,276639 -(1,4435:22002683,30228016:0,0,0 -(1,4435:22002683,30228016:0,0,0 -g1,4435:22002683,30228016 -g1,4435:22002683,30228016 -g1,4435:22002683,30228016 -g1,4435:22002683,30228016 -g1,4435:22002683,30228016 -(1,4435:22002683,30228016:0,0,0 -(1,4435:22002683,30228016:331874,379060,0 -(1,4435:22002683,30228016:331874,379060,0 +k1,4413:8805339,26598786:237977 +k1,4413:11247293,26598786:237978 +k1,4413:12504355,26598786:237977 +k1,4413:14048466,26598786:237978 +k1,4413:15083361,26598786:237977 +k1,4413:18190504,26598786:237977 +k1,4413:19087774,26598786:237978 +k1,4413:20344836,26598786:237977 +k1,4413:22560690,26598786:237977 +(1,4413:22560690,26598786:0,452978,115847 +r1,4488:25029227,26598786:2468537,568825,115847 +k1,4413:22560690,26598786:-2468537 +) +(1,4413:22560690,26598786:2468537,452978,115847 +k1,4413:22560690,26598786:3277 +h1,4413:25025950,26598786:0,411205,112570 +) +k1,4413:25440875,26598786:237978 +k1,4413:26440380,26598786:237977 +k1,4413:29105812,26598786:237978 +k1,4413:30114492,26598786:237977 +(1,4413:30114492,26598786:0,452978,122846 +r1,4488:32583029,26598786:2468537,575824,122846 +k1,4413:30114492,26598786:-2468537 +) +(1,4413:30114492,26598786:2468537,452978,122846 +k1,4413:30114492,26598786:3277 +h1,4413:32579752,26598786:0,411205,112570 +) +k1,4413:32583029,26598786:0 +) +(1,4414:6630773,27463866:25952256,452978,134348 +g1,4413:8790184,27463866 +g1,4413:9675575,27463866 +g1,4413:12947132,27463866 +g1,4413:13797789,27463866 +g1,4413:16743632,27463866 +(1,4413:16743632,27463866:0,452978,115847 +r1,4488:17805322,27463866:1061690,568825,115847 +k1,4413:16743632,27463866:-1061690 +) +(1,4413:16743632,27463866:1061690,452978,115847 +g1,4413:17450333,27463866 +h1,4413:17802045,27463866:0,411205,112570 +) +k1,4414:32583029,27463866:14725279 +g1,4414:32583029,27463866 +) +v1,4416:6630773,28148721:0,393216,0 +(1,4424:6630773,29990186:25952256,2234681,196608 +g1,4424:6630773,29990186 +g1,4424:6630773,29990186 +g1,4424:6434165,29990186 +(1,4424:6434165,29990186:0,2234681,196608 +r1,4488:32779637,29990186:26345472,2431289,196608 +k1,4424:6434165,29990186:-26345472 +) +(1,4424:6434165,29990186:26345472,2234681,196608 +[1,4424:6630773,29990186:25952256,2038073,0 +(1,4418:6630773,28376552:25952256,424439,79822 +(1,4417:6630773,28376552:0,0,0 +g1,4417:6630773,28376552 +g1,4417:6630773,28376552 +g1,4417:6303093,28376552 +(1,4417:6303093,28376552:0,0,0 +) +g1,4417:6630773,28376552 +) +g1,4418:8290543,28376552 +g1,4418:9286405,28376552 +h1,4418:13601806,28376552:0,0,0 +k1,4418:32583030,28376552:18981224 +g1,4418:32583030,28376552 +) +(1,4419:6630773,29061407:25952256,407923,6605 +h1,4419:6630773,29061407:0,0,0 +h1,4419:7958589,29061407:0,0,0 +k1,4419:32583029,29061407:24624440 +g1,4419:32583029,29061407 +) +(1,4423:6630773,29877334:25952256,431045,112852 +(1,4421:6630773,29877334:0,0,0 +g1,4421:6630773,29877334 +g1,4421:6630773,29877334 +g1,4421:6303093,29877334 +(1,4421:6303093,29877334:0,0,0 +) +g1,4421:6630773,29877334 +) +g1,4423:7626635,29877334 +g1,4423:7958589,29877334 +g1,4423:9286405,29877334 +g1,4423:10614221,29877334 +g1,4423:11942037,29877334 +g1,4423:13269853,29877334 +g1,4423:14597669,29877334 +g1,4423:15925485,29877334 +g1,4423:17253301,29877334 +g1,4423:18581117,29877334 +g1,4423:19908933,29877334 +g1,4423:21236749,29877334 +h1,4423:22232611,29877334:0,0,0 +k1,4423:32583029,29877334:10350418 +g1,4423:32583029,29877334 +) +] +) +g1,4424:32583029,29990186 +g1,4424:6630773,29990186 +g1,4424:6630773,29990186 +g1,4424:32583029,29990186 +g1,4424:32583029,29990186 +) +h1,4424:6630773,30186794:0,0,0 +(1,4452:6630773,35159822:25952256,4252132,0 +k1,4452:7877917,35159822:1247144 +(1,4427:7877917,35159822:0,0,0 +g1,4427:7877917,35159822 +g1,4427:7877917,35159822 +g1,4427:7550237,35159822 +(1,4427:7550237,35159822:0,0,0 +) +g1,4427:7877917,35159822 +) +(1,4450:7877917,35159822:23457968,4252132,0 +g1,4450:17421117,35159822 +(1,4450:17421117,32274070:0,0,0 +(1,4441:17421117,32274070:0,0,0 +g1,4439:17421117,32274070 +g1,4440:17421117,32274070 +g1,4440:17421117,32274070 +g1,4440:17421117,32274070 +g1,4440:17421117,32274070 +g1,4441:17421117,32274070 +) +(1,4450:17421117,32274070:0,0,0 +g1,4432:17421117,32274070 +(1,4436:17421117,32274070:0,0,0 +(1,4436:17421117,32274070:0,0,0 +g1,4436:17421117,32274070 +g1,4436:17421117,32274070 +g1,4436:17421117,32274070 +g1,4436:17421117,32274070 +g1,4436:17421117,32274070 +(1,4436:17421117,32274070:0,0,0 +(1,4436:17421117,32274070:13078954,1854498,528775 +[1,4436:17421117,32274070:13078954,1854498,528775 +(1,4436:17421117,31093096:13078954,673524,285028 +g1,4435:17421117,31093096 +(1,4435:17421117,31093096:665744,673524,285028 +k1,4435:17620692,31093096:199575 +g1,4435:18086861,31093096 +(1,4435:18086861,31093096:0,660417,271921 +(1,4435:18086861,31093096:0,0,0 +(1,4435:18086861,31093096:0,0,0 +g1,4435:18086861,31093096 +g1,4435:18086861,31093096 +g1,4435:18086861,31093096 +g1,4435:18086861,31093096 +g1,4435:18086861,31093096 +(1,4435:18086861,31093096:0,0,0 +(1,4435:18086861,31093096:331874,388497,0 +(1,4435:18086861,31093096:331874,388497,0 +) +g1,4435:18418735,31093096 +) +) +g1,4435:18086861,31093096 +g1,4435:18086861,31093096 +) +) +g1,4435:18086861,31093096 +) +) +g1,4435:18086861,31093096 +(1,4435:18086861,31093096:665744,673524,285028 +g1,4435:18553030,31093096 +k1,4435:18752605,31093096:199575 +) +g1,4435:18752605,31093096 +(1,4435:18752605,31093096:639530,673524,285028 +k1,4435:18939073,31093096:186468 +g1,4435:19392135,31093096 +(1,4435:19392135,31093096:0,673524,285028 +(1,4435:19392135,31093096:0,0,0 +(1,4435:19392135,31093096:0,0,0 +g1,4435:19392135,31093096 +g1,4435:19392135,31093096 +g1,4435:19392135,31093096 +g1,4435:19392135,31093096 +g1,4435:19392135,31093096 +(1,4435:19392135,31093096:0,0,0 +(1,4435:19392135,31093096:331874,388497,0 +(1,4435:19392135,31093096:331874,388497,0 +) +g1,4435:19724009,31093096 +) +) +g1,4435:19392135,31093096 +g1,4435:19392135,31093096 +) +) +g1,4435:19392135,31093096 +) +) +g1,4435:19392135,31093096 +(1,4435:19392135,31093096:665744,673524,285028 +g1,4435:19871411,31093096 +k1,4435:20057879,31093096:186468 +) +g1,4435:20057879,31093096 +(1,4435:20057879,31093096:639530,673524,285028 +k1,4435:20257454,31093096:199575 +g1,4435:20697409,31093096 +(1,4435:20697409,31093096:0,655699,276639 +(1,4435:20697409,31093096:0,0,0 +(1,4435:20697409,31093096:0,0,0 +g1,4435:20697409,31093096 +g1,4435:20697409,31093096 +g1,4435:20697409,31093096 +g1,4435:20697409,31093096 +g1,4435:20697409,31093096 +(1,4435:20697409,31093096:0,0,0 +(1,4435:20697409,31093096:331874,388497,9436 +(1,4435:20697409,31093096:331874,388497,9436 +) +g1,4435:21029283,31093096 +) +) +g1,4435:20697409,31093096 +g1,4435:20697409,31093096 +) +) +g1,4435:20697409,31093096 +) +) +g1,4435:20697409,31093096 +(1,4435:20697409,31093096:665744,673524,285028 +g1,4435:21163578,31093096 +k1,4435:21363153,31093096:199575 +) +g1,4435:21363153,31093096 +(1,4435:21363153,31093096:639530,673524,285028 +k1,4435:21562728,31093096:199575 +g1,4435:22002683,31093096 +(1,4435:22002683,31093096:0,655699,276639 +(1,4435:22002683,31093096:0,0,0 +(1,4435:22002683,31093096:0,0,0 +g1,4435:22002683,31093096 +g1,4435:22002683,31093096 +g1,4435:22002683,31093096 +g1,4435:22002683,31093096 +g1,4435:22002683,31093096 +(1,4435:22002683,31093096:0,0,0 +(1,4435:22002683,31093096:331874,379060,0 +(1,4435:22002683,31093096:331874,379060,0 ) -g1,4435:22334557,30228016 +g1,4435:22334557,31093096 ) ) -g1,4435:22002683,30228016 -g1,4435:22002683,30228016 +g1,4435:22002683,31093096 +g1,4435:22002683,31093096 ) ) -g1,4435:22002683,30228016 +g1,4435:22002683,31093096 ) ) -g1,4435:22002683,30228016 -(1,4435:22002683,30228016:665744,673524,285028 -g1,4435:22468852,30228016 -k1,4435:22668427,30228016:199575 +g1,4435:22002683,31093096 +(1,4435:22002683,31093096:665744,673524,285028 +g1,4435:22468852,31093096 +k1,4435:22668427,31093096:199575 ) -g1,4435:22668427,30228016 -(1,4435:22668427,30228016:639530,673524,285028 -k1,4435:22868002,30228016:199575 -g1,4435:23307957,30228016 -(1,4435:23307957,30228016:0,650981,281357 -(1,4435:23307957,30228016:0,0,0 -(1,4435:23307957,30228016:0,0,0 -g1,4435:23307957,30228016 -g1,4435:23307957,30228016 -g1,4435:23307957,30228016 -g1,4435:23307957,30228016 -g1,4435:23307957,30228016 -(1,4435:23307957,30228016:0,0,0 -(1,4435:23307957,30228016:331874,379060,9436 -(1,4435:23307957,30228016:331874,379060,9436 +g1,4435:22668427,31093096 +(1,4435:22668427,31093096:639530,673524,285028 +k1,4435:22868002,31093096:199575 +g1,4435:23307957,31093096 +(1,4435:23307957,31093096:0,650981,281357 +(1,4435:23307957,31093096:0,0,0 +(1,4435:23307957,31093096:0,0,0 +g1,4435:23307957,31093096 +g1,4435:23307957,31093096 +g1,4435:23307957,31093096 +g1,4435:23307957,31093096 +g1,4435:23307957,31093096 +(1,4435:23307957,31093096:0,0,0 +(1,4435:23307957,31093096:331874,379060,9436 +(1,4435:23307957,31093096:331874,379060,9436 ) -g1,4435:23639831,30228016 +g1,4435:23639831,31093096 ) ) -g1,4435:23307957,30228016 -g1,4435:23307957,30228016 +g1,4435:23307957,31093096 +g1,4435:23307957,31093096 ) ) -g1,4435:23307957,30228016 +g1,4435:23307957,31093096 ) ) -g1,4435:23307957,30228016 -(1,4435:23307957,30228016:665744,673524,285028 -g1,4435:23774126,30228016 -k1,4435:23973701,30228016:199575 +g1,4435:23307957,31093096 +(1,4435:23307957,31093096:665744,673524,285028 +g1,4435:23774126,31093096 +k1,4435:23973701,31093096:199575 ) -g1,4435:23973701,30228016 -(1,4435:23973701,30228016:639530,673524,285028 -k1,4435:24173276,30228016:199575 -g1,4435:24613231,30228016 -(1,4435:24613231,30228016:0,655699,276639 -(1,4435:24613231,30228016:0,0,0 -(1,4435:24613231,30228016:0,0,0 -g1,4435:24613231,30228016 -g1,4435:24613231,30228016 -g1,4435:24613231,30228016 -g1,4435:24613231,30228016 -g1,4435:24613231,30228016 -(1,4435:24613231,30228016:0,0,0 -(1,4435:24613231,30228016:331874,388497,9436 -(1,4435:24613231,30228016:331874,388497,9436 +g1,4435:23973701,31093096 +(1,4435:23973701,31093096:639530,673524,285028 +k1,4435:24173276,31093096:199575 +g1,4435:24613231,31093096 +(1,4435:24613231,31093096:0,655699,276639 +(1,4435:24613231,31093096:0,0,0 +(1,4435:24613231,31093096:0,0,0 +g1,4435:24613231,31093096 +g1,4435:24613231,31093096 +g1,4435:24613231,31093096 +g1,4435:24613231,31093096 +g1,4435:24613231,31093096 +(1,4435:24613231,31093096:0,0,0 +(1,4435:24613231,31093096:331874,388497,9436 +(1,4435:24613231,31093096:331874,388497,9436 ) -g1,4435:24945105,30228016 +g1,4435:24945105,31093096 ) ) -g1,4435:24613231,30228016 -g1,4435:24613231,30228016 +g1,4435:24613231,31093096 +g1,4435:24613231,31093096 ) ) -g1,4435:24613231,30228016 +g1,4435:24613231,31093096 ) ) -g1,4435:24613231,30228016 -(1,4435:24613231,30228016:665744,673524,285028 -g1,4435:25079400,30228016 -k1,4435:25278975,30228016:199575 +g1,4435:24613231,31093096 +(1,4435:24613231,31093096:665744,673524,285028 +g1,4435:25079400,31093096 +k1,4435:25278975,31093096:199575 ) -g1,4435:25278975,30228016 -(1,4435:25278975,30228016:639530,673524,285028 -k1,4435:25478550,30228016:199575 -g1,4435:25918505,30228016 -(1,4435:25918505,30228016:0,655699,276639 -(1,4435:25918505,30228016:0,0,0 -(1,4435:25918505,30228016:0,0,0 -g1,4435:25918505,30228016 -g1,4435:25918505,30228016 -g1,4435:25918505,30228016 -g1,4435:25918505,30228016 -g1,4435:25918505,30228016 -(1,4435:25918505,30228016:0,0,0 -(1,4435:25918505,30228016:331874,379060,0 -(1,4435:25918505,30228016:331874,379060,0 +g1,4435:25278975,31093096 +(1,4435:25278975,31093096:639530,673524,285028 +k1,4435:25478550,31093096:199575 +g1,4435:25918505,31093096 +(1,4435:25918505,31093096:0,655699,276639 +(1,4435:25918505,31093096:0,0,0 +(1,4435:25918505,31093096:0,0,0 +g1,4435:25918505,31093096 +g1,4435:25918505,31093096 +g1,4435:25918505,31093096 +g1,4435:25918505,31093096 +g1,4435:25918505,31093096 +(1,4435:25918505,31093096:0,0,0 +(1,4435:25918505,31093096:331874,379060,0 +(1,4435:25918505,31093096:331874,379060,0 ) -g1,4435:26250379,30228016 +g1,4435:26250379,31093096 ) ) -g1,4435:25918505,30228016 -g1,4435:25918505,30228016 +g1,4435:25918505,31093096 +g1,4435:25918505,31093096 ) ) -g1,4435:25918505,30228016 +g1,4435:25918505,31093096 ) ) -g1,4435:25918505,30228016 -(1,4435:25918505,30228016:665744,673524,285028 -g1,4435:26384674,30228016 -k1,4435:26584249,30228016:199575 +g1,4435:25918505,31093096 +(1,4435:25918505,31093096:665744,673524,285028 +g1,4435:26384674,31093096 +k1,4435:26584249,31093096:199575 ) -g1,4435:26584249,30228016 -(1,4435:26584249,30228016:639530,673524,285028 -k1,4435:26783824,30228016:199575 -g1,4435:27223779,30228016 -(1,4435:27223779,30228016:0,655699,276639 -(1,4435:27223779,30228016:0,0,0 -(1,4435:27223779,30228016:0,0,0 -g1,4435:27223779,30228016 -g1,4435:27223779,30228016 -g1,4435:27223779,30228016 -g1,4435:27223779,30228016 -g1,4435:27223779,30228016 -(1,4435:27223779,30228016:0,0,0 -(1,4435:27223779,30228016:331874,388497,9436 -(1,4435:27223779,30228016:331874,388497,9436 +g1,4435:26584249,31093096 +(1,4435:26584249,31093096:639530,673524,285028 +k1,4435:26783824,31093096:199575 +g1,4435:27223779,31093096 +(1,4435:27223779,31093096:0,655699,276639 +(1,4435:27223779,31093096:0,0,0 +(1,4435:27223779,31093096:0,0,0 +g1,4435:27223779,31093096 +g1,4435:27223779,31093096 +g1,4435:27223779,31093096 +g1,4435:27223779,31093096 +g1,4435:27223779,31093096 +(1,4435:27223779,31093096:0,0,0 +(1,4435:27223779,31093096:331874,388497,9436 +(1,4435:27223779,31093096:331874,388497,9436 ) -g1,4435:27555653,30228016 +g1,4435:27555653,31093096 ) ) -g1,4435:27223779,30228016 -g1,4435:27223779,30228016 +g1,4435:27223779,31093096 +g1,4435:27223779,31093096 ) ) -g1,4435:27223779,30228016 +g1,4435:27223779,31093096 ) ) -g1,4435:27223779,30228016 -(1,4435:27223779,30228016:665744,673524,285028 -g1,4435:27689948,30228016 -k1,4435:27889523,30228016:199575 +g1,4435:27223779,31093096 +(1,4435:27223779,31093096:665744,673524,285028 +g1,4435:27689948,31093096 +k1,4435:27889523,31093096:199575 ) -g1,4435:27889523,30228016 -(1,4435:27889523,30228016:639530,673524,285028 -k1,4435:28089098,30228016:199575 -g1,4435:28529053,30228016 -(1,4435:28529053,30228016:0,655699,276639 -(1,4435:28529053,30228016:0,0,0 -(1,4435:28529053,30228016:0,0,0 -g1,4435:28529053,30228016 -g1,4435:28529053,30228016 -g1,4435:28529053,30228016 -g1,4435:28529053,30228016 -g1,4435:28529053,30228016 -(1,4435:28529053,30228016:0,0,0 -(1,4435:28529053,30228016:331874,388497,9436 -(1,4435:28529053,30228016:331874,388497,9436 +g1,4435:27889523,31093096 +(1,4435:27889523,31093096:639530,673524,285028 +k1,4435:28089098,31093096:199575 +g1,4435:28529053,31093096 +(1,4435:28529053,31093096:0,655699,276639 +(1,4435:28529053,31093096:0,0,0 +(1,4435:28529053,31093096:0,0,0 +g1,4435:28529053,31093096 +g1,4435:28529053,31093096 +g1,4435:28529053,31093096 +g1,4435:28529053,31093096 +g1,4435:28529053,31093096 +(1,4435:28529053,31093096:0,0,0 +(1,4435:28529053,31093096:331874,388497,9436 +(1,4435:28529053,31093096:331874,388497,9436 ) -g1,4435:28860927,30228016 +g1,4435:28860927,31093096 ) ) -g1,4435:28529053,30228016 -g1,4435:28529053,30228016 +g1,4435:28529053,31093096 +g1,4435:28529053,31093096 ) ) -g1,4435:28529053,30228016 +g1,4435:28529053,31093096 ) ) -g1,4435:28529053,30228016 -(1,4435:28529053,30228016:665744,673524,285028 -g1,4435:28995222,30228016 -k1,4435:29194797,30228016:199575 +g1,4435:28529053,31093096 +(1,4435:28529053,31093096:665744,673524,285028 +g1,4435:28995222,31093096 +k1,4435:29194797,31093096:199575 ) -g1,4435:29194797,30228016 -(1,4435:29194797,30228016:639530,673524,285028 -k1,4435:29353923,30228016:159126 -g1,4435:29834327,30228016 -(1,4435:29834327,30228016:0,655699,276639 -(1,4435:29834327,30228016:0,0,0 -(1,4435:29834327,30228016:0,0,0 -g1,4435:29834327,30228016 -g1,4435:29834327,30228016 -g1,4435:29834327,30228016 -g1,4435:29834327,30228016 -g1,4435:29834327,30228016 -(1,4435:29834327,30228016:0,0,0 -(1,4435:29834327,30228016:663749,388497,9436 -(1,4435:29834327,30228016:663749,388497,9436 +g1,4435:29194797,31093096 +(1,4435:29194797,31093096:639530,673524,285028 +k1,4435:29353923,31093096:159126 +g1,4435:29834327,31093096 +(1,4435:29834327,31093096:0,655699,276639 +(1,4435:29834327,31093096:0,0,0 +(1,4435:29834327,31093096:0,0,0 +g1,4435:29834327,31093096 +g1,4435:29834327,31093096 +g1,4435:29834327,31093096 +g1,4435:29834327,31093096 +g1,4435:29834327,31093096 +(1,4435:29834327,31093096:0,0,0 +(1,4435:29834327,31093096:663749,388497,9436 +(1,4435:29834327,31093096:663749,388497,9436 ) -g1,4435:30498076,30228016 +g1,4435:30498076,31093096 ) ) -g1,4435:29834327,30228016 -g1,4435:29834327,30228016 +g1,4435:29834327,31093096 +g1,4435:29834327,31093096 ) ) -g1,4435:29834327,30228016 +g1,4435:29834327,31093096 ) ) -g1,4435:29834327,30228016 -(1,4436:29834327,30228016:665744,673524,285028 -g1,4436:30340945,30228016 -k1,4436:30500071,30228016:159126 +g1,4435:29834327,31093096 +(1,4436:29834327,31093096:665744,673524,285028 +g1,4436:30340945,31093096 +k1,4436:30500071,31093096:159126 ) -g1,4436:30500071,30228016 +g1,4436:30500071,31093096 ) -(1,4436:17421117,31408990:13078954,802713,528775 -g1,4436:17421117,31408990 -(1,4436:17421117,31408990:665744,802713,528775 -g1,4436:17421117,31408990 -g1,4436:18086861,31408990 -(1,4436:18086861,31408990:0,802713,528775 -(1,4436:18086861,31408990:0,0,0 -(1,4436:18086861,31408990:0,0,0 -g1,4436:18086861,31408990 -g1,4436:18086861,31408990 -g1,4436:18086861,31408990 -g1,4436:18086861,31408990 -g1,4436:18086861,31408990 -(1,4436:18086861,31408990:0,0,0 -(1,4436:18086861,31408990:680526,479396,205458 -(1,4436:18086861,31408990:680526,479396,205458 -r1,4489:18767387,31408990:0,684854,205458 +(1,4436:17421117,32274070:13078954,802713,528775 +g1,4436:17421117,32274070 +(1,4436:17421117,32274070:665744,802713,528775 +g1,4436:17421117,32274070 +g1,4436:18086861,32274070 +(1,4436:18086861,32274070:0,802713,528775 +(1,4436:18086861,32274070:0,0,0 +(1,4436:18086861,32274070:0,0,0 +g1,4436:18086861,32274070 +g1,4436:18086861,32274070 +g1,4436:18086861,32274070 +g1,4436:18086861,32274070 +g1,4436:18086861,32274070 +(1,4436:18086861,32274070:0,0,0 +(1,4436:18086861,32274070:680526,479396,205458 +(1,4436:18086861,32274070:680526,479396,205458 +r1,4488:18767387,32274070:0,684854,205458 ) -g1,4436:18767387,31408990 +g1,4436:18767387,32274070 ) ) -g1,4436:18086861,31408990 -g1,4436:18086861,31408990 +g1,4436:18086861,32274070 +g1,4436:18086861,32274070 ) ) -g1,4436:18086861,31408990 +g1,4436:18086861,32274070 ) ) -g1,4436:18086861,31408990 -(1,4436:18086861,31408990:665744,802713,528775 -g1,4436:18752605,31408990 -g1,4436:18752605,31408990 +g1,4436:18086861,32274070 +(1,4436:18086861,32274070:665744,802713,528775 +g1,4436:18752605,32274070 +g1,4436:18752605,32274070 ) -g1,4436:18752605,31408990 -(1,4436:18752605,31408990:639530,802713,528775 -g1,4436:18752605,31408990 -g1,4436:19392135,31408990 -(1,4436:19392135,31408990:0,802713,528775 -(1,4436:19392135,31408990:0,0,0 -(1,4436:19392135,31408990:0,0,0 -g1,4436:19392135,31408990 -g1,4436:19392135,31408990 -g1,4436:19392135,31408990 -g1,4436:19392135,31408990 -g1,4436:19392135,31408990 -(1,4436:19392135,31408990:0,0,0 -(1,4436:19392135,31408990:721420,479396,205458 -(1,4436:19392135,31408990:721420,479396,205458 -r1,4489:20113555,31408990:0,684854,205458 +g1,4436:18752605,32274070 +(1,4436:18752605,32274070:639530,802713,528775 +g1,4436:18752605,32274070 +g1,4436:19392135,32274070 +(1,4436:19392135,32274070:0,802713,528775 +(1,4436:19392135,32274070:0,0,0 +(1,4436:19392135,32274070:0,0,0 +g1,4436:19392135,32274070 +g1,4436:19392135,32274070 +g1,4436:19392135,32274070 +g1,4436:19392135,32274070 +g1,4436:19392135,32274070 +(1,4436:19392135,32274070:0,0,0 +(1,4436:19392135,32274070:721420,479396,205458 +(1,4436:19392135,32274070:721420,479396,205458 +r1,4488:20113555,32274070:0,684854,205458 ) -g1,4436:20113555,31408990 +g1,4436:20113555,32274070 ) ) -g1,4436:19392135,31408990 -g1,4436:19392135,31408990 +g1,4436:19392135,32274070 +g1,4436:19392135,32274070 ) ) -g1,4436:19392135,31408990 +g1,4436:19392135,32274070 ) ) -g1,4436:19392135,31408990 -(1,4436:19392135,31408990:665744,802713,528775 -g1,4436:20057879,31408990 -g1,4436:20057879,31408990 +g1,4436:19392135,32274070 +(1,4436:19392135,32274070:665744,802713,528775 +g1,4436:20057879,32274070 +g1,4436:20057879,32274070 ) -g1,4436:20057879,31408990 -(1,4436:20057879,31408990:639530,802713,528775 -g1,4436:20057879,31408990 -g1,4436:20697409,31408990 -(1,4436:20697409,31408990:0,802713,528775 -(1,4436:20697409,31408990:0,0,0 -(1,4436:20697409,31408990:0,0,0 -g1,4436:20697409,31408990 -g1,4436:20697409,31408990 -g1,4436:20697409,31408990 -g1,4436:20697409,31408990 -g1,4436:20697409,31408990 -(1,4436:20697409,31408990:0,0,0 -(1,4436:20697409,31408990:659554,479396,205458 -(1,4436:20697409,31408990:659554,479396,205458 -r1,4489:21356963,31408990:0,684854,205458 +g1,4436:20057879,32274070 +(1,4436:20057879,32274070:639530,802713,528775 +g1,4436:20057879,32274070 +g1,4436:20697409,32274070 +(1,4436:20697409,32274070:0,802713,528775 +(1,4436:20697409,32274070:0,0,0 +(1,4436:20697409,32274070:0,0,0 +g1,4436:20697409,32274070 +g1,4436:20697409,32274070 +g1,4436:20697409,32274070 +g1,4436:20697409,32274070 +g1,4436:20697409,32274070 +(1,4436:20697409,32274070:0,0,0 +(1,4436:20697409,32274070:659554,479396,205458 +(1,4436:20697409,32274070:659554,479396,205458 +r1,4488:21356963,32274070:0,684854,205458 ) -g1,4436:21356963,31408990 +g1,4436:21356963,32274070 ) ) -g1,4436:20697409,31408990 -g1,4436:20697409,31408990 +g1,4436:20697409,32274070 +g1,4436:20697409,32274070 ) ) -g1,4436:20697409,31408990 +g1,4436:20697409,32274070 ) ) -g1,4436:20697409,31408990 -(1,4436:20697409,31408990:665744,802713,528775 -g1,4436:21363153,31408990 -g1,4436:21363153,31408990 +g1,4436:20697409,32274070 +(1,4436:20697409,32274070:665744,802713,528775 +g1,4436:21363153,32274070 +g1,4436:21363153,32274070 ) -g1,4436:21363153,31408990 -(1,4436:21363153,31408990:639530,802713,528775 -g1,4436:21363153,31408990 -g1,4436:22002683,31408990 -(1,4436:22002683,31408990:0,802713,528775 -(1,4436:22002683,31408990:0,0,0 -(1,4436:22002683,31408990:0,0,0 -g1,4436:22002683,31408990 -g1,4436:22002683,31408990 -g1,4436:22002683,31408990 -g1,4436:22002683,31408990 -g1,4436:22002683,31408990 -(1,4436:22002683,31408990:0,0,0 -(1,4436:22002683,31408990:721420,479396,205458 -(1,4436:22002683,31408990:721420,479396,205458 -r1,4489:22724103,31408990:0,684854,205458 +g1,4436:21363153,32274070 +(1,4436:21363153,32274070:639530,802713,528775 +g1,4436:21363153,32274070 +g1,4436:22002683,32274070 +(1,4436:22002683,32274070:0,802713,528775 +(1,4436:22002683,32274070:0,0,0 +(1,4436:22002683,32274070:0,0,0 +g1,4436:22002683,32274070 +g1,4436:22002683,32274070 +g1,4436:22002683,32274070 +g1,4436:22002683,32274070 +g1,4436:22002683,32274070 +(1,4436:22002683,32274070:0,0,0 +(1,4436:22002683,32274070:721420,479396,205458 +(1,4436:22002683,32274070:721420,479396,205458 +r1,4488:22724103,32274070:0,684854,205458 ) -g1,4436:22724103,31408990 +g1,4436:22724103,32274070 ) ) -g1,4436:22002683,31408990 -g1,4436:22002683,31408990 +g1,4436:22002683,32274070 +g1,4436:22002683,32274070 ) ) -g1,4436:22002683,31408990 +g1,4436:22002683,32274070 ) ) -g1,4436:22002683,31408990 -(1,4436:22002683,31408990:665744,802713,528775 -g1,4436:22668427,31408990 -g1,4436:22668427,31408990 -) -g1,4436:22668427,31408990 -(1,4436:22668427,31408990:639530,802713,528775 -g1,4436:22668427,31408990 -g1,4436:23307957,31408990 -(1,4436:23307957,31408990:0,802713,528775 -(1,4436:23307957,31408990:0,0,0 -(1,4436:23307957,31408990:0,0,0 -g1,4436:23307957,31408990 -g1,4436:23307957,31408990 -g1,4436:23307957,31408990 -g1,4436:23307957,31408990 -g1,4436:23307957,31408990 -(1,4436:23307957,31408990:0,0,0 -(1,4436:23307957,31408990:683147,479396,205458 -(1,4436:23307957,31408990:683147,479396,205458 -r1,4489:23991104,31408990:0,684854,205458 +g1,4436:22002683,32274070 +(1,4436:22002683,32274070:665744,802713,528775 +g1,4436:22668427,32274070 +g1,4436:22668427,32274070 +) +g1,4436:22668427,32274070 +(1,4436:22668427,32274070:639530,802713,528775 +g1,4436:22668427,32274070 +g1,4436:23307957,32274070 +(1,4436:23307957,32274070:0,802713,528775 +(1,4436:23307957,32274070:0,0,0 +(1,4436:23307957,32274070:0,0,0 +g1,4436:23307957,32274070 +g1,4436:23307957,32274070 +g1,4436:23307957,32274070 +g1,4436:23307957,32274070 +g1,4436:23307957,32274070 +(1,4436:23307957,32274070:0,0,0 +(1,4436:23307957,32274070:683147,479396,205458 +(1,4436:23307957,32274070:683147,479396,205458 +r1,4488:23991104,32274070:0,684854,205458 ) -g1,4436:23991104,31408990 +g1,4436:23991104,32274070 ) ) -g1,4436:23307957,31408990 -g1,4436:23307957,31408990 +g1,4436:23307957,32274070 +g1,4436:23307957,32274070 ) ) -g1,4436:23307957,31408990 +g1,4436:23307957,32274070 ) ) -g1,4436:23307957,31408990 -(1,4436:23307957,31408990:665744,802713,528775 -g1,4436:23973701,31408990 -g1,4436:23973701,31408990 -) -g1,4436:23973701,31408990 -(1,4436:23973701,31408990:639530,802713,528775 -g1,4436:23973701,31408990 -g1,4436:24613231,31408990 -(1,4436:24613231,31408990:0,802713,528775 -(1,4436:24613231,31408990:0,0,0 -(1,4436:24613231,31408990:0,0,0 -g1,4436:24613231,31408990 -g1,4436:24613231,31408990 -g1,4436:24613231,31408990 -g1,4436:24613231,31408990 -g1,4436:24613231,31408990 -(1,4436:24613231,31408990:0,0,0 -(1,4436:24613231,31408990:583533,479396,205458 -(1,4436:24613231,31408990:583533,479396,205458 -r1,4489:25196764,31408990:0,684854,205458 +g1,4436:23307957,32274070 +(1,4436:23307957,32274070:665744,802713,528775 +g1,4436:23973701,32274070 +g1,4436:23973701,32274070 +) +g1,4436:23973701,32274070 +(1,4436:23973701,32274070:639530,802713,528775 +g1,4436:23973701,32274070 +g1,4436:24613231,32274070 +(1,4436:24613231,32274070:0,802713,528775 +(1,4436:24613231,32274070:0,0,0 +(1,4436:24613231,32274070:0,0,0 +g1,4436:24613231,32274070 +g1,4436:24613231,32274070 +g1,4436:24613231,32274070 +g1,4436:24613231,32274070 +g1,4436:24613231,32274070 +(1,4436:24613231,32274070:0,0,0 +(1,4436:24613231,32274070:583533,479396,205458 +(1,4436:24613231,32274070:583533,479396,205458 +r1,4488:25196764,32274070:0,684854,205458 ) -g1,4436:25196764,31408990 +g1,4436:25196764,32274070 ) ) -g1,4436:24613231,31408990 -g1,4436:24613231,31408990 +g1,4436:24613231,32274070 +g1,4436:24613231,32274070 ) ) -g1,4436:24613231,31408990 +g1,4436:24613231,32274070 ) ) -g1,4436:24613231,31408990 -(1,4436:24613231,31408990:665744,802713,528775 -g1,4436:25278975,31408990 -g1,4436:25278975,31408990 -) -g1,4436:25278975,31408990 -(1,4436:25278975,31408990:639530,802713,528775 -g1,4436:25278975,31408990 -g1,4436:25918505,31408990 -(1,4436:25918505,31408990:0,802713,528775 -(1,4436:25918505,31408990:0,0,0 -(1,4436:25918505,31408990:0,0,0 -g1,4436:25918505,31408990 -g1,4436:25918505,31408990 -g1,4436:25918505,31408990 -g1,4436:25918505,31408990 -g1,4436:25918505,31408990 -(1,4436:25918505,31408990:0,0,0 -(1,4436:25918505,31408990:913310,479396,205458 -(1,4436:25918505,31408990:913310,479396,205458 -r1,4489:26831815,31408990:0,684854,205458 +g1,4436:24613231,32274070 +(1,4436:24613231,32274070:665744,802713,528775 +g1,4436:25278975,32274070 +g1,4436:25278975,32274070 +) +g1,4436:25278975,32274070 +(1,4436:25278975,32274070:639530,802713,528775 +g1,4436:25278975,32274070 +g1,4436:25918505,32274070 +(1,4436:25918505,32274070:0,802713,528775 +(1,4436:25918505,32274070:0,0,0 +(1,4436:25918505,32274070:0,0,0 +g1,4436:25918505,32274070 +g1,4436:25918505,32274070 +g1,4436:25918505,32274070 +g1,4436:25918505,32274070 +g1,4436:25918505,32274070 +(1,4436:25918505,32274070:0,0,0 +(1,4436:25918505,32274070:913310,479396,205458 +(1,4436:25918505,32274070:913310,479396,205458 +r1,4488:26831815,32274070:0,684854,205458 ) -g1,4436:26831815,31408990 +g1,4436:26831815,32274070 ) ) -g1,4436:25918505,31408990 -g1,4436:25918505,31408990 +g1,4436:25918505,32274070 +g1,4436:25918505,32274070 ) ) -g1,4436:25918505,31408990 +g1,4436:25918505,32274070 ) ) -g1,4436:25918505,31408990 -(1,4436:25918505,31408990:665744,802713,528775 -g1,4436:26584249,31408990 -g1,4436:26584249,31408990 +g1,4436:25918505,32274070 +(1,4436:25918505,32274070:665744,802713,528775 +g1,4436:26584249,32274070 +g1,4436:26584249,32274070 ) -g1,4436:26584249,31408990 -(1,4436:26584249,31408990:639530,802713,528775 -g1,4436:26584249,31408990 -g1,4436:27223779,31408990 -(1,4436:27223779,31408990:0,802713,528775 -(1,4436:27223779,31408990:0,0,0 -(1,4436:27223779,31408990:0,0,0 -g1,4436:27223779,31408990 -g1,4436:27223779,31408990 -g1,4436:27223779,31408990 -g1,4436:27223779,31408990 -g1,4436:27223779,31408990 -(1,4436:27223779,31408990:0,0,0 -(1,4436:27223779,31408990:716177,479396,205458 -(1,4436:27223779,31408990:716177,479396,205458 -r1,4489:27939956,31408990:0,684854,205458 +g1,4436:26584249,32274070 +(1,4436:26584249,32274070:639530,802713,528775 +g1,4436:26584249,32274070 +g1,4436:27223779,32274070 +(1,4436:27223779,32274070:0,802713,528775 +(1,4436:27223779,32274070:0,0,0 +(1,4436:27223779,32274070:0,0,0 +g1,4436:27223779,32274070 +g1,4436:27223779,32274070 +g1,4436:27223779,32274070 +g1,4436:27223779,32274070 +g1,4436:27223779,32274070 +(1,4436:27223779,32274070:0,0,0 +(1,4436:27223779,32274070:716177,479396,205458 +(1,4436:27223779,32274070:716177,479396,205458 +r1,4488:27939956,32274070:0,684854,205458 ) -g1,4436:27939956,31408990 +g1,4436:27939956,32274070 ) ) -g1,4436:27223779,31408990 -g1,4436:27223779,31408990 +g1,4436:27223779,32274070 +g1,4436:27223779,32274070 ) ) -g1,4436:27223779,31408990 +g1,4436:27223779,32274070 ) ) -g1,4436:27223779,31408990 -(1,4436:27223779,31408990:665744,802713,528775 -g1,4436:27889523,31408990 -g1,4436:27889523,31408990 +g1,4436:27223779,32274070 +(1,4436:27223779,32274070:665744,802713,528775 +g1,4436:27889523,32274070 +g1,4436:27889523,32274070 ) -g1,4436:27889523,31408990 -(1,4436:27889523,31408990:639530,802713,528775 -g1,4436:27889523,31408990 -g1,4436:28529053,31408990 -(1,4436:28529053,31408990:0,802713,528775 -(1,4436:28529053,31408990:0,0,0 -(1,4436:28529053,31408990:0,0,0 -g1,4436:28529053,31408990 -g1,4436:28529053,31408990 -g1,4436:28529053,31408990 -g1,4436:28529053,31408990 -g1,4436:28529053,31408990 -(1,4436:28529053,31408990:0,0,0 -(1,4436:28529053,31408990:542638,479396,205458 -(1,4436:28529053,31408990:542638,479396,205458 -r1,4489:29071691,31408990:0,684854,205458 +g1,4436:27889523,32274070 +(1,4436:27889523,32274070:639530,802713,528775 +g1,4436:27889523,32274070 +g1,4436:28529053,32274070 +(1,4436:28529053,32274070:0,802713,528775 +(1,4436:28529053,32274070:0,0,0 +(1,4436:28529053,32274070:0,0,0 +g1,4436:28529053,32274070 +g1,4436:28529053,32274070 +g1,4436:28529053,32274070 +g1,4436:28529053,32274070 +g1,4436:28529053,32274070 +(1,4436:28529053,32274070:0,0,0 +(1,4436:28529053,32274070:542638,479396,205458 +(1,4436:28529053,32274070:542638,479396,205458 +r1,4488:29071691,32274070:0,684854,205458 ) -g1,4436:29071691,31408990 +g1,4436:29071691,32274070 ) ) -g1,4436:28529053,31408990 -g1,4436:28529053,31408990 +g1,4436:28529053,32274070 +g1,4436:28529053,32274070 ) ) -g1,4436:28529053,31408990 +g1,4436:28529053,32274070 ) ) -g1,4436:28529053,31408990 -(1,4436:28529053,31408990:665744,802713,528775 -g1,4436:29194797,31408990 -g1,4436:29194797,31408990 +g1,4436:28529053,32274070 +(1,4436:28529053,32274070:665744,802713,528775 +g1,4436:29194797,32274070 +g1,4436:29194797,32274070 ) -g1,4436:29194797,31408990 -(1,4436:29194797,31408990:639530,802713,528775 -g1,4436:29194797,31408990 -g1,4436:29834327,31408990 -(1,4436:29834327,31408990:0,802713,528775 -(1,4436:29834327,31408990:0,0,0 -(1,4436:29834327,31408990:0,0,0 -g1,4436:29834327,31408990 -g1,4436:29834327,31408990 -g1,4436:29834327,31408990 -g1,4436:29834327,31408990 -g1,4436:29834327,31408990 -(1,4436:29834327,31408990:0,0,0 -(1,4436:29834327,31408990:550502,479396,205458 -(1,4436:29834327,31408990:550502,479396,205458 -r1,4489:30384829,31408990:0,684854,205458 +g1,4436:29194797,32274070 +(1,4436:29194797,32274070:639530,802713,528775 +g1,4436:29194797,32274070 +g1,4436:29834327,32274070 +(1,4436:29834327,32274070:0,802713,528775 +(1,4436:29834327,32274070:0,0,0 +(1,4436:29834327,32274070:0,0,0 +g1,4436:29834327,32274070 +g1,4436:29834327,32274070 +g1,4436:29834327,32274070 +g1,4436:29834327,32274070 +g1,4436:29834327,32274070 +(1,4436:29834327,32274070:0,0,0 +(1,4436:29834327,32274070:550502,479396,205458 +(1,4436:29834327,32274070:550502,479396,205458 +r1,4488:30384829,32274070:0,684854,205458 ) -g1,4436:30384829,31408990 +g1,4436:30384829,32274070 ) ) -g1,4436:29834327,31408990 -g1,4436:29834327,31408990 +g1,4436:29834327,32274070 +g1,4436:29834327,32274070 ) ) -g1,4436:29834327,31408990 +g1,4436:29834327,32274070 ) ) -g1,4436:29834327,31408990 -(1,4436:29834327,31408990:665744,802713,528775 -g1,4436:30500071,31408990 -g1,4436:30500071,31408990 -) -g1,4436:30500071,31408990 +g1,4436:29834327,32274070 +(1,4436:29834327,32274070:665744,802713,528775 +g1,4436:30500071,32274070 +g1,4436:30500071,32274070 +) +g1,4436:30500071,32274070 ) ] ) ) -g1,4436:17421117,31408990 -g1,4436:17421117,31408990 -) +g1,4436:17421117,32274070 +g1,4436:17421117,32274070 +) +) +g1,4436:17421117,32274070 +g1,4437:17421117,32274070 +(1,4437:17421117,32274070:0,0,0 +(1,4437:17421117,32274070:0,0,0 +g1,4437:17421117,32274070 +g1,4437:17421117,32274070 +g1,4437:17421117,32274070 +g1,4437:17421117,32274070 +g1,4437:17421117,32274070 +(1,4437:17421117,32274070:0,0,0 +(1,4437:17421117,32274070:0,0,0 +h1,4437:17421117,32274070:0,0,0 +g1,4437:17421117,32274070 ) -g1,4436:17421117,31408990 -g1,4437:17421117,31408990 -(1,4437:17421117,31408990:0,0,0 -(1,4437:17421117,31408990:0,0,0 -g1,4437:17421117,31408990 -g1,4437:17421117,31408990 -g1,4437:17421117,31408990 -g1,4437:17421117,31408990 -g1,4437:17421117,31408990 -(1,4437:17421117,31408990:0,0,0 -(1,4437:17421117,31408990:0,0,0 -h1,4437:17421117,31408990:0,0,0 -g1,4437:17421117,31408990 ) +g1,4437:17421117,32274070 +g1,4437:17421117,32274070 ) -g1,4437:17421117,31408990 -g1,4437:17421117,31408990 ) +g1,4437:17421117,32274070 +g1,4441:17421117,32274070 +g1,4441:17421117,32274070 +g1,4443:17421117,32274070 +(1,4443:17421117,32274070:0,0,0 +(1,4443:17421117,32274070:0,0,0 +g1,4443:17421117,32274070 +(1,4443:17421117,32274070:0,0,0 +(1,4443:17421117,32274070:1976140,482673,208735 +(1,4443:17421117,32274070:1976140,482673,208735 +(1,4443:17421117,32274070:0,482673,208735 +r1,4488:19397257,32274070:1976140,691408,208735 +k1,4443:17421117,32274070:-1976140 ) -g1,4437:17421117,31408990 -g1,4441:17421117,31408990 -g1,4441:17421117,31408990 -g1,4443:17421117,31408990 -(1,4443:17421117,31408990:0,0,0 -(1,4443:17421117,31408990:0,0,0 -g1,4443:17421117,31408990 -(1,4443:17421117,31408990:0,0,0 -(1,4443:17421117,31408990:1976140,482673,208735 -(1,4443:17421117,31408990:1976140,482673,208735 -(1,4443:17421117,31408990:0,482673,208735 -r1,4489:19397257,31408990:1976140,691408,208735 -k1,4443:17421117,31408990:-1976140 +(1,4443:17421117,32274070:1976140,482673,208735 +r1,4488:17424394,32274070:0,684854,205458 +g1,4443:17705763,32274070 +h1,4443:18831241,32274070:562739,252906,0 +h1,4443:19393980,32274070:0,328964,90056 ) -(1,4443:17421117,31408990:1976140,482673,208735 -r1,4489:17424394,31408990:0,684854,205458 -g1,4443:17705763,31408990 -h1,4443:18831241,31408990:562739,252906,0 -h1,4443:19393980,31408990:0,328964,90056 ) +g1,4443:19397257,32274070 ) -g1,4443:19397257,31408990 ) +g1,4443:17421117,32274070 +g1,4443:17421117,32274070 ) -g1,4443:17421117,31408990 -g1,4443:17421117,31408990 ) +g1,4443:17421117,32274070 +g1,4445:17421117,32274070 +(1,4445:17421117,32274070:0,0,0 +(1,4445:17421117,32274070:0,0,0 +g1,4445:17421117,32274070 +g1,4445:17421117,32274070 +g1,4445:17421117,32274070 +g1,4445:17421117,32274070 +g1,4445:17421117,32274070 +(1,4445:17421117,32274070:0,0,0 +(1,4445:17421117,32274070:6599312,404226,101187 +(1,4445:17421117,32274070:6599312,404226,101187 +(1,4445:17421117,32274070:0,363038,98932 +r1,4488:19397257,32274070:1976140,461970,98932 +k1,4445:17421117,32274070:-1976140 ) -g1,4443:17421117,31408990 -g1,4445:17421117,31408990 -(1,4445:17421117,31408990:0,0,0 -(1,4445:17421117,31408990:0,0,0 -g1,4445:17421117,31408990 -g1,4445:17421117,31408990 -g1,4445:17421117,31408990 -g1,4445:17421117,31408990 -g1,4445:17421117,31408990 -(1,4445:17421117,31408990:0,0,0 -(1,4445:17421117,31408990:6599312,404226,101187 -(1,4445:17421117,31408990:6599312,404226,101187 -(1,4445:17421117,31408990:0,363038,98932 -r1,4489:19397257,31408990:1976140,461970,98932 -k1,4445:17421117,31408990:-1976140 +(1,4445:17421117,32274070:1976140,363038,98932 +k1,4445:17421117,32274070:3277 +h1,4445:19393980,32274070:0,328964,90056 ) -(1,4445:17421117,31408990:1976140,363038,98932 -k1,4445:17421117,31408990:3277 -h1,4445:19393980,31408990:0,328964,90056 +g1,4445:19562932,32274070 +g1,4445:22234704,32274070 ) -g1,4445:19562932,31408990 -g1,4445:22234704,31408990 +g1,4445:24020429,32274070 ) -g1,4445:24020429,31408990 ) +g1,4445:17421117,32274070 +g1,4445:17421117,32274070 ) -g1,4445:17421117,31408990 -g1,4445:17421117,31408990 ) +g1,4445:17421117,32274070 +g1,4446:17421117,32274070 +(1,4446:17421117,32274070:0,0,0 +(1,4446:17421117,32274070:0,0,0 +g1,4446:17421117,32274070 +g1,4446:17421117,32274070 +g1,4446:17421117,32274070 +g1,4446:17421117,32274070 +g1,4446:17421117,32274070 +(1,4446:17421117,32274070:0,0,0 +(1,4446:17421117,32274070:4301011,404226,93333 +(1,4446:17421117,32274070:4301011,404226,93333 +(1,4446:17421117,32274070:0,363038,93333 +r1,4488:19959996,32274070:2538879,456371,93333 +k1,4446:17421117,32274070:-2538879 ) -g1,4445:17421117,31408990 -g1,4446:17421117,31408990 -(1,4446:17421117,31408990:0,0,0 -(1,4446:17421117,31408990:0,0,0 -g1,4446:17421117,31408990 -g1,4446:17421117,31408990 -g1,4446:17421117,31408990 -g1,4446:17421117,31408990 -g1,4446:17421117,31408990 -(1,4446:17421117,31408990:0,0,0 -(1,4446:17421117,31408990:4301011,404226,93333 -(1,4446:17421117,31408990:4301011,404226,93333 -(1,4446:17421117,31408990:0,363038,93333 -r1,4489:19959996,31408990:2538879,456371,93333 -k1,4446:17421117,31408990:-2538879 +(1,4446:17421117,32274070:2538879,363038,93333 +k1,4446:17421117,32274070:3277 +h1,4446:19956719,32274070:0,328964,90056 +) +g1,4446:20125671,32274070 +) +g1,4446:21722128,32274070 +) +) +g1,4446:17421117,32274070 +g1,4446:17421117,32274070 +) +) +(1,4447:17421117,32274070:0,0,0 +(1,4447:17421117,32274070:0,0,0 +g1,4447:17421117,32274070 +g1,4447:17421117,32274070 +g1,4447:17421117,32274070 +g1,4447:17421117,32274070 +g1,4447:17421117,32274070 +(1,4447:17421117,32274070:0,0,0 +(1,4447:17421117,32274070:1976140,363038,93333 +(1,4447:17421117,32274070:1976140,363038,93333 +(1,4447:17421117,32274070:1976140,363038,93333 +(1,4447:17421117,32274070:0,363038,93333 +r1,4488:19397257,32274070:1976140,456371,93333 +k1,4447:17421117,32274070:-1976140 +) +(1,4447:17421117,32274070:1976140,363038,93333 +k1,4447:17421117,32274070:3277 +h1,4447:19393980,32274070:0,328964,90056 +) +) +) +g1,4447:19397257,32274070 +) +) +g1,4447:17421117,32274070 +g1,4447:17421117,32274070 +) +) +g1,4447:17421117,32274070 +g1,4448:17421117,32274070 +g1,4448:17421117,32274070 +g1,4448:17421117,32274070 +g1,4448:17421117,32274070 +g1,4448:17421117,32274070 +g1,4448:17421117,32274070 +g1,4450:17421117,32274070 +g1,4450:17421117,32274070 +) +g1,4450:17421117,32274070 +) +) +g1,4452:31335885,35159822 +k1,4452:32583029,35159822:1247144 +) +v1,4455:6630773,36500037:0,393216,0 +(1,4462:6630773,37623617:25952256,1516796,196608 +g1,4462:6630773,37623617 +g1,4462:6630773,37623617 +g1,4462:6434165,37623617 +(1,4462:6434165,37623617:0,1516796,196608 +r1,4488:32779637,37623617:26345472,1713404,196608 +k1,4462:6434165,37623617:-26345472 +) +(1,4462:6434165,37623617:26345472,1516796,196608 +[1,4462:6630773,37623617:25952256,1320188,0 +(1,4457:6630773,36727868:25952256,424439,79822 +(1,4456:6630773,36727868:0,0,0 +g1,4456:6630773,36727868 +g1,4456:6630773,36727868 +g1,4456:6303093,36727868 +(1,4456:6303093,36727868:0,0,0 +) +g1,4456:6630773,36727868 +) +h1,4457:8954451,36727868:0,0,0 +k1,4457:32583029,36727868:23628578 +g1,4457:32583029,36727868 +) +(1,4461:6630773,37543795:25952256,424439,79822 +(1,4459:6630773,37543795:0,0,0 +g1,4459:6630773,37543795 +g1,4459:6630773,37543795 +g1,4459:6303093,37543795 +(1,4459:6303093,37543795:0,0,0 +) +g1,4459:6630773,37543795 +) +g1,4461:7626635,37543795 +g1,4461:8954451,37543795 +h1,4461:9950313,37543795:0,0,0 +k1,4461:32583029,37543795:22632716 +g1,4461:32583029,37543795 +) +] +) +g1,4462:32583029,37623617 +g1,4462:6630773,37623617 +g1,4462:6630773,37623617 +g1,4462:32583029,37623617 +g1,4462:32583029,37623617 +) +h1,4462:6630773,37820225:0,0,0 +v1,4466:6630773,38685305:0,393216,0 +(1,4485:6630773,45045515:25952256,6753426,0 +g1,4485:6630773,45045515 +g1,4485:6237557,45045515 +r1,4488:6368629,45045515:131072,6753426,0 +g1,4485:6567858,45045515 +g1,4485:6764466,45045515 +[1,4485:6764466,45045515:25818563,6753426,0 +(1,4467:6764466,38993603:25818563,701514,196608 +(1,4466:6764466,38993603:0,701514,196608 +r1,4488:7761522,38993603:997056,898122,196608 +k1,4466:6764466,38993603:-997056 +) +(1,4466:6764466,38993603:997056,701514,196608 +) +k1,4466:8011425,38993603:249903 +k1,4466:8339105,38993603:327680 +k1,4466:10045873,38993603:249903 +k1,4466:13053532,38993603:249904 +k1,4466:15611613,38993603:249903 +k1,4466:16853076,38993603:249903 +k1,4466:19886948,38993603:249903 +k1,4466:20752889,38993603:249903 +k1,4466:22436720,38993603:249903 +k1,4466:23275137,38993603:249904 +(1,4466:23275137,38993603:0,452978,115847 +r1,4488:25743674,38993603:2468537,568825,115847 +k1,4466:23275137,38993603:-2468537 +) +(1,4466:23275137,38993603:2468537,452978,115847 +k1,4466:23275137,38993603:3277 +h1,4466:25740397,38993603:0,411205,112570 +) +k1,4466:26167247,38993603:249903 +(1,4466:26167247,38993603:0,414482,115847 +r1,4488:28635784,38993603:2468537,530329,115847 +k1,4466:26167247,38993603:-2468537 +) +(1,4466:26167247,38993603:2468537,414482,115847 +k1,4466:26167247,38993603:3277 +h1,4466:28632507,38993603:0,411205,112570 +) +k1,4466:29059357,38993603:249903 +(1,4466:29059357,38993603:0,452978,115847 +r1,4488:32583029,38993603:3523672,568825,115847 +k1,4466:29059357,38993603:-3523672 +) +(1,4466:29059357,38993603:3523672,452978,115847 +k1,4466:29059357,38993603:3277 +h1,4466:32579752,38993603:0,411205,112570 ) -(1,4446:17421117,31408990:2538879,363038,93333 -k1,4446:17421117,31408990:3277 -h1,4446:19956719,31408990:0,328964,90056 -) -g1,4446:20125671,31408990 -) -g1,4446:21722128,31408990 -) -) -g1,4446:17421117,31408990 -g1,4446:17421117,31408990 -) -) -(1,4447:17421117,31408990:0,0,0 -(1,4447:17421117,31408990:0,0,0 -g1,4447:17421117,31408990 -g1,4447:17421117,31408990 -g1,4447:17421117,31408990 -g1,4447:17421117,31408990 -g1,4447:17421117,31408990 -(1,4447:17421117,31408990:0,0,0 -(1,4447:17421117,31408990:1976140,363038,93333 -(1,4447:17421117,31408990:1976140,363038,93333 -(1,4447:17421117,31408990:1976140,363038,93333 -(1,4447:17421117,31408990:0,363038,93333 -r1,4489:19397257,31408990:1976140,456371,93333 -k1,4447:17421117,31408990:-1976140 -) -(1,4447:17421117,31408990:1976140,363038,93333 -k1,4447:17421117,31408990:3277 -h1,4447:19393980,31408990:0,328964,90056 -) -) -) -g1,4447:19397257,31408990 -) -) -g1,4447:17421117,31408990 -g1,4447:17421117,31408990 -) -) -g1,4447:17421117,31408990 -g1,4448:17421117,31408990 -g1,4448:17421117,31408990 -g1,4448:17421117,31408990 -g1,4448:17421117,31408990 -g1,4448:17421117,31408990 -g1,4448:17421117,31408990 -g1,4450:17421117,31408990 -g1,4450:17421117,31408990 -) -g1,4450:17421117,31408990 -) -) -g1,4452:31335885,34294742 -k1,4452:32583029,34294742:1247144 -) -v1,4455:6630773,35634957:0,393216,0 -(1,4462:6630773,36758537:25952256,1516796,196608 -g1,4462:6630773,36758537 -g1,4462:6630773,36758537 -g1,4462:6434165,36758537 -(1,4462:6434165,36758537:0,1516796,196608 -r1,4489:32779637,36758537:26345472,1713404,196608 -k1,4462:6434165,36758537:-26345472 -) -(1,4462:6434165,36758537:26345472,1516796,196608 -[1,4462:6630773,36758537:25952256,1320188,0 -(1,4457:6630773,35862788:25952256,424439,79822 -(1,4456:6630773,35862788:0,0,0 -g1,4456:6630773,35862788 -g1,4456:6630773,35862788 -g1,4456:6303093,35862788 -(1,4456:6303093,35862788:0,0,0 -) -g1,4456:6630773,35862788 -) -h1,4457:8954451,35862788:0,0,0 -k1,4457:32583029,35862788:23628578 -g1,4457:32583029,35862788 -) -(1,4461:6630773,36678715:25952256,424439,79822 -(1,4459:6630773,36678715:0,0,0 -g1,4459:6630773,36678715 -g1,4459:6630773,36678715 -g1,4459:6303093,36678715 -(1,4459:6303093,36678715:0,0,0 -) -g1,4459:6630773,36678715 -) -g1,4461:7626635,36678715 -g1,4461:8954451,36678715 -h1,4461:9950313,36678715:0,0,0 -k1,4461:32583029,36678715:22632716 -g1,4461:32583029,36678715 -) -] -) -g1,4462:32583029,36758537 -g1,4462:6630773,36758537 -g1,4462:6630773,36758537 -g1,4462:32583029,36758537 -g1,4462:32583029,36758537 -) -h1,4462:6630773,36955145:0,0,0 -v1,4466:6630773,37820225:0,393216,0 -(1,4485:6630773,44180435:25952256,6753426,0 -g1,4485:6630773,44180435 -g1,4485:6237557,44180435 -r1,4489:6368629,44180435:131072,6753426,0 -g1,4485:6567858,44180435 -g1,4485:6764466,44180435 -[1,4485:6764466,44180435:25818563,6753426,0 -(1,4467:6764466,38128523:25818563,701514,196608 -(1,4466:6764466,38128523:0,701514,196608 -r1,4489:7761522,38128523:997056,898122,196608 -k1,4466:6764466,38128523:-997056 -) -(1,4466:6764466,38128523:997056,701514,196608 -) -k1,4466:8011425,38128523:249903 -k1,4466:8339105,38128523:327680 -k1,4466:10045873,38128523:249903 -k1,4466:13053532,38128523:249904 -k1,4466:15611613,38128523:249903 -k1,4466:16853076,38128523:249903 -k1,4466:19886948,38128523:249903 -k1,4466:20752889,38128523:249903 -k1,4466:22436720,38128523:249903 -k1,4466:23275137,38128523:249904 -(1,4466:23275137,38128523:0,452978,115847 -r1,4489:25743674,38128523:2468537,568825,115847 -k1,4466:23275137,38128523:-2468537 -) -(1,4466:23275137,38128523:2468537,452978,115847 -k1,4466:23275137,38128523:3277 -h1,4466:25740397,38128523:0,411205,112570 -) -k1,4466:26167247,38128523:249903 -(1,4466:26167247,38128523:0,414482,115847 -r1,4489:28635784,38128523:2468537,530329,115847 -k1,4466:26167247,38128523:-2468537 -) -(1,4466:26167247,38128523:2468537,414482,115847 -k1,4466:26167247,38128523:3277 -h1,4466:28632507,38128523:0,411205,112570 -) -k1,4466:29059357,38128523:249903 -(1,4466:29059357,38128523:0,452978,115847 -r1,4489:32583029,38128523:3523672,568825,115847 -k1,4466:29059357,38128523:-3523672 -) -(1,4466:29059357,38128523:3523672,452978,115847 -k1,4466:29059357,38128523:3277 -h1,4466:32579752,38128523:0,411205,112570 -) -k1,4466:32583029,38128523:0 -) -(1,4467:6764466,38993603:25818563,513147,126483 -k1,4466:8189942,38993603:234031 -(1,4466:8189942,38993603:0,452978,115847 -r1,4489:11361902,38993603:3171960,568825,115847 -k1,4466:8189942,38993603:-3171960 -) -(1,4466:8189942,38993603:3171960,452978,115847 -k1,4466:8189942,38993603:3277 -h1,4466:11358625,38993603:0,411205,112570 -) -k1,4466:11769603,38993603:234031 -k1,4466:12662926,38993603:234031 -k1,4466:14782428,38993603:234031 -k1,4466:15229416,38993603:233996 -k1,4466:16976673,38993603:234031 -(1,4466:16976673,38993603:0,452978,115847 -r1,4489:19445210,38993603:2468537,568825,115847 -k1,4466:16976673,38993603:-2468537 -) -(1,4466:16976673,38993603:2468537,452978,115847 -k1,4466:16976673,38993603:3277 -h1,4466:19441933,38993603:0,411205,112570 -) -k1,4466:19679240,38993603:234030 -k1,4466:20529309,38993603:234031 -k1,4466:21782425,38993603:234031 -k1,4466:24677873,38993603:234031 -k1,4466:26940899,38993603:234031 -k1,4466:29049260,38993603:234031 -k1,4466:31591469,38993603:234031 k1,4466:32583029,38993603:0 ) -(1,4467:6764466,39858683:25818563,513147,134348 -g1,4466:9092960,39858683 -g1,4466:10239840,39858683 -g1,4466:12924194,39858683 -g1,4466:16843246,39858683 -g1,4466:17701767,39858683 -g1,4466:18920081,39858683 -k1,4467:32583029,39858683:11768958 -g1,4467:32583029,39858683 -) -v1,4469:6764466,40543538:0,393216,0 -(1,4483:6764466,43983827:25818563,3833505,196608 -g1,4483:6764466,43983827 -g1,4483:6764466,43983827 -g1,4483:6567858,43983827 -(1,4483:6567858,43983827:0,3833505,196608 -r1,4489:32779637,43983827:26211779,4030113,196608 -k1,4483:6567857,43983827:-26211780 -) -(1,4483:6567858,43983827:26211779,3833505,196608 -[1,4483:6764466,43983827:25818563,3636897,0 -(1,4471:6764466,40771369:25818563,424439,6605 -(1,4470:6764466,40771369:0,0,0 -g1,4470:6764466,40771369 -g1,4470:6764466,40771369 -g1,4470:6436786,40771369 -(1,4470:6436786,40771369:0,0,0 -) -g1,4470:6764466,40771369 -) -h1,4471:10084005,40771369:0,0,0 -k1,4471:32583029,40771369:22499024 -g1,4471:32583029,40771369 -) -(1,4476:6764466,41587296:25818563,424439,106246 -(1,4473:6764466,41587296:0,0,0 -g1,4473:6764466,41587296 -g1,4473:6764466,41587296 -g1,4473:6436786,41587296 -(1,4473:6436786,41587296:0,0,0 -) -g1,4473:6764466,41587296 -) -g1,4476:7760328,41587296 -g1,4476:8092282,41587296 -g1,4476:9420098,41587296 -g1,4476:12739637,41587296 -g1,4476:13071591,41587296 -g1,4476:13403545,41587296 -g1,4476:17055038,41587296 -g1,4476:17386992,41587296 -g1,4476:20042624,41587296 -g1,4476:20374578,41587296 -g1,4476:20706532,41587296 -g1,4476:21038486,41587296 -g1,4476:21370440,41587296 -g1,4476:24026072,41587296 -g1,4476:24358026,41587296 -g1,4476:24689980,41587296 -g1,4476:25021934,41587296 -g1,4476:25353888,41587296 -g1,4476:27345612,41587296 -g1,4476:27677566,41587296 -g1,4476:28009520,41587296 -g1,4476:28341474,41587296 -g1,4476:28673428,41587296 -g1,4476:29005382,41587296 -g1,4476:29337336,41587296 -h1,4476:31329060,41587296:0,0,0 -k1,4476:32583029,41587296:1253969 -g1,4476:32583029,41587296 -) -(1,4476:6764466,42272151:25818563,424439,112852 -h1,4476:6764466,42272151:0,0,0 -k1,4476:7756441,42272151:328067 -k1,4476:8084509,42272151:328068 -k1,4476:9408438,42272151:328067 -k1,4476:11728230,42272151:328068 -k1,4476:12056297,42272151:328067 -k1,4476:12384365,42272151:328068 -k1,4476:12712432,42272151:328067 -k1,4476:13040500,42272151:328068 -k1,4476:13368567,42272151:328067 -k1,4476:16352266,42272151:328068 -k1,4476:16680333,42272151:328067 -k1,4476:17008401,42272151:328068 -k1,4476:17336468,42272151:328067 -k1,4476:21316029,42272151:328068 -k1,4476:24631681,42272151:328067 -k1,4476:24959749,42272151:328068 -k1,4476:25287816,42272151:328067 -k1,4476:28935423,42272151:328068 -k1,4476:29263490,42272151:328067 -h1,4476:32583029,42272151:0,0,0 -k1,4476:32583029,42272151:0 -k1,4476:32583029,42272151:0 -) -(1,4478:6764466,43088078:25818563,424439,79822 -(1,4477:6764466,43088078:0,0,0 -g1,4477:6764466,43088078 -g1,4477:6764466,43088078 -g1,4477:6436786,43088078 -(1,4477:6436786,43088078:0,0,0 -) -g1,4477:6764466,43088078 -) -h1,4478:11079867,43088078:0,0,0 -k1,4478:32583029,43088078:21503162 -g1,4478:32583029,43088078 -) -(1,4482:6764466,43904005:25818563,424439,79822 -(1,4480:6764466,43904005:0,0,0 -g1,4480:6764466,43904005 -g1,4480:6764466,43904005 -g1,4480:6436786,43904005 -(1,4480:6436786,43904005:0,0,0 -) -g1,4480:6764466,43904005 -) -g1,4482:7760328,43904005 -g1,4482:9088144,43904005 -h1,4482:11079868,43904005:0,0,0 -k1,4482:32583028,43904005:21503160 -g1,4482:32583028,43904005 -) -] -) -g1,4483:32583029,43983827 -g1,4483:6764466,43983827 -g1,4483:6764466,43983827 -g1,4483:32583029,43983827 -g1,4483:32583029,43983827 -) -h1,4483:6764466,44180435:0,0,0 -] -g1,4485:32583029,44180435 -) -h1,4485:6630773,44180435:0,0,0 -v1,4488:6630773,45045515:0,393216,0 -] -(1,4489:32583029,45706769:0,0,0 -g1,4489:32583029,45706769 -) -) -] -(1,4489:6630773,47279633:25952256,0,0 -h1,4489:6630773,47279633:25952256,0,0 -) -] -(1,4489:4262630,4025873:0,0,0 -[1,4489:-473656,4025873:0,0,0 -(1,4489:-473656,-710413:0,0,0 -(1,4489:-473656,-710413:0,0,0 -g1,4489:-473656,-710413 -) -g1,4489:-473656,-710413 -) -] -) -] -!43291 -}79 -Input:804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,4467:6764466,39858683:25818563,513147,126483 +k1,4466:8189942,39858683:234031 +(1,4466:8189942,39858683:0,452978,115847 +r1,4488:11361902,39858683:3171960,568825,115847 +k1,4466:8189942,39858683:-3171960 +) +(1,4466:8189942,39858683:3171960,452978,115847 +k1,4466:8189942,39858683:3277 +h1,4466:11358625,39858683:0,411205,112570 +) +k1,4466:11769603,39858683:234031 +k1,4466:12662926,39858683:234031 +k1,4466:14782428,39858683:234031 +k1,4466:15229416,39858683:233996 +k1,4466:16976673,39858683:234031 +(1,4466:16976673,39858683:0,452978,115847 +r1,4488:19445210,39858683:2468537,568825,115847 +k1,4466:16976673,39858683:-2468537 +) +(1,4466:16976673,39858683:2468537,452978,115847 +k1,4466:16976673,39858683:3277 +h1,4466:19441933,39858683:0,411205,112570 +) +k1,4466:19679240,39858683:234030 +k1,4466:20529309,39858683:234031 +k1,4466:21782425,39858683:234031 +k1,4466:24677873,39858683:234031 +k1,4466:26940899,39858683:234031 +k1,4466:29049260,39858683:234031 +k1,4466:31591469,39858683:234031 +k1,4466:32583029,39858683:0 +) +(1,4467:6764466,40723763:25818563,513147,134348 +g1,4466:9092960,40723763 +g1,4466:10239840,40723763 +g1,4466:12924194,40723763 +g1,4466:16843246,40723763 +g1,4466:17701767,40723763 +g1,4466:18920081,40723763 +k1,4467:32583029,40723763:11768958 +g1,4467:32583029,40723763 +) +v1,4469:6764466,41408618:0,393216,0 +(1,4483:6764466,44848907:25818563,3833505,196608 +g1,4483:6764466,44848907 +g1,4483:6764466,44848907 +g1,4483:6567858,44848907 +(1,4483:6567858,44848907:0,3833505,196608 +r1,4488:32779637,44848907:26211779,4030113,196608 +k1,4483:6567857,44848907:-26211780 +) +(1,4483:6567858,44848907:26211779,3833505,196608 +[1,4483:6764466,44848907:25818563,3636897,0 +(1,4471:6764466,41636449:25818563,424439,6605 +(1,4470:6764466,41636449:0,0,0 +g1,4470:6764466,41636449 +g1,4470:6764466,41636449 +g1,4470:6436786,41636449 +(1,4470:6436786,41636449:0,0,0 +) +g1,4470:6764466,41636449 +) +h1,4471:10084005,41636449:0,0,0 +k1,4471:32583029,41636449:22499024 +g1,4471:32583029,41636449 +) +(1,4476:6764466,42452376:25818563,424439,106246 +(1,4473:6764466,42452376:0,0,0 +g1,4473:6764466,42452376 +g1,4473:6764466,42452376 +g1,4473:6436786,42452376 +(1,4473:6436786,42452376:0,0,0 +) +g1,4473:6764466,42452376 +) +g1,4476:7760328,42452376 +g1,4476:8092282,42452376 +g1,4476:9420098,42452376 +g1,4476:12739637,42452376 +g1,4476:13071591,42452376 +g1,4476:13403545,42452376 +g1,4476:17055038,42452376 +g1,4476:17386992,42452376 +g1,4476:20042624,42452376 +g1,4476:20374578,42452376 +g1,4476:20706532,42452376 +g1,4476:21038486,42452376 +g1,4476:21370440,42452376 +g1,4476:24026072,42452376 +g1,4476:24358026,42452376 +g1,4476:24689980,42452376 +g1,4476:25021934,42452376 +g1,4476:25353888,42452376 +g1,4476:27345612,42452376 +g1,4476:27677566,42452376 +g1,4476:28009520,42452376 +g1,4476:28341474,42452376 +g1,4476:28673428,42452376 +g1,4476:29005382,42452376 +g1,4476:29337336,42452376 +h1,4476:31329060,42452376:0,0,0 +k1,4476:32583029,42452376:1253969 +g1,4476:32583029,42452376 +) +(1,4476:6764466,43137231:25818563,424439,112852 +h1,4476:6764466,43137231:0,0,0 +k1,4476:7756441,43137231:328067 +k1,4476:8084509,43137231:328068 +k1,4476:9408438,43137231:328067 +k1,4476:11728230,43137231:328068 +k1,4476:12056297,43137231:328067 +k1,4476:12384365,43137231:328068 +k1,4476:12712432,43137231:328067 +k1,4476:13040500,43137231:328068 +k1,4476:13368567,43137231:328067 +k1,4476:16352266,43137231:328068 +k1,4476:16680333,43137231:328067 +k1,4476:17008401,43137231:328068 +k1,4476:17336468,43137231:328067 +k1,4476:21316029,43137231:328068 +k1,4476:24631681,43137231:328067 +k1,4476:24959749,43137231:328068 +k1,4476:25287816,43137231:328067 +k1,4476:28935423,43137231:328068 +k1,4476:29263490,43137231:328067 +h1,4476:32583029,43137231:0,0,0 +k1,4476:32583029,43137231:0 +k1,4476:32583029,43137231:0 +) +(1,4478:6764466,43953158:25818563,424439,79822 +(1,4477:6764466,43953158:0,0,0 +g1,4477:6764466,43953158 +g1,4477:6764466,43953158 +g1,4477:6436786,43953158 +(1,4477:6436786,43953158:0,0,0 +) +g1,4477:6764466,43953158 +) +h1,4478:11079867,43953158:0,0,0 +k1,4478:32583029,43953158:21503162 +g1,4478:32583029,43953158 +) +(1,4482:6764466,44769085:25818563,424439,79822 +(1,4480:6764466,44769085:0,0,0 +g1,4480:6764466,44769085 +g1,4480:6764466,44769085 +g1,4480:6436786,44769085 +(1,4480:6436786,44769085:0,0,0 +) +g1,4480:6764466,44769085 +) +g1,4482:7760328,44769085 +g1,4482:9088144,44769085 +h1,4482:11079868,44769085:0,0,0 +k1,4482:32583028,44769085:21503160 +g1,4482:32583028,44769085 +) +] +) +g1,4483:32583029,44848907 +g1,4483:6764466,44848907 +g1,4483:6764466,44848907 +g1,4483:32583029,44848907 +g1,4483:32583029,44848907 +) +h1,4483:6764466,45045515:0,0,0 +] +g1,4485:32583029,45045515 +) +h1,4485:6630773,45045515:0,0,0 +] +(1,4488:32583029,45706769:0,0,0 +g1,4488:32583029,45706769 +) +) +] +(1,4488:6630773,47279633:25952256,0,0 +h1,4488:6630773,47279633:25952256,0,0 +) +] +(1,4488:4262630,4025873:0,0,0 +[1,4488:-473656,4025873:0,0,0 +(1,4488:-473656,-710413:0,0,0 +(1,4488:-473656,-710413:0,0,0 +g1,4488:-473656,-710413 +) +g1,4488:-473656,-710413 +) +] +) +] +!44312 +}80 +Input:806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !102 -{80 +{81 [1,4584:4262630,47279633:28320399,43253760,0 (1,4584:4262630,4025873:0,0,0 [1,4584:-473656,4025873:0,0,0 @@ -101355,7 +101523,7 @@ k1,4584:31786110,4812305:18590596 g1,4584:6630773,45706769 ) [1,4584:6630773,45706769:25952256,40108032,0 -v1,4489:6630773,6254097:0,393216,0 +v1,4488:6630773,6254097:0,393216,0 (1,4489:6630773,9344862:25952256,3483981,0 g1,4489:6630773,9344862 g1,4489:6237557,9344862 @@ -101724,54 +101892,55 @@ k1,4525:29904573,23312346:154064 k1,4525:32583029,23312346:0 ) (1,4526:6764466,24177426:25818563,505283,126483 -k1,4525:7597851,24177426:181957 -k1,4525:10724340,24177426:181956 -k1,4525:12190803,24177426:181957 -k1,4525:13364319,24177426:181956 -k1,4525:14612547,24177426:181957 -k1,4525:17200331,24177426:181957 -k1,4525:17998325,24177426:181956 -k1,4525:19199367,24177426:181957 -k1,4525:21898561,24177426:181956 -k1,4525:24232065,24177426:181957 -k1,4525:26256894,24177426:181957 -k1,4525:27054888,24177426:181956 -(1,4525:27054888,24177426:0,414482,115847 -r1,4584:27764866,24177426:709978,530329,115847 -k1,4525:27054888,24177426:-709978 -) -(1,4525:27054888,24177426:709978,414482,115847 -k1,4525:27054888,24177426:3277 -h1,4525:27761589,24177426:0,411205,112570 -) -k1,4525:28450795,24177426:181957 -k1,4525:30013595,24177426:181956 -k1,4525:30727049,24177426:181957 +k1,4525:7609560,24177426:193666 +k1,4525:10747758,24177426:193665 +k1,4525:12225930,24177426:193666 +k1,4525:13411156,24177426:193666 +k1,4525:14671093,24177426:193666 +k1,4525:17270585,24177426:193665 +k1,4525:18080289,24177426:193666 +k1,4525:19293040,24177426:193666 +k1,4525:22003944,24177426:193666 +k1,4525:24349156,24177426:193665 +k1,4525:26385694,24177426:193666 +k1,4525:27195398,24177426:193666 +(1,4525:27195398,24177426:0,414482,115847 +r1,4584:27905376,24177426:709978,530329,115847 +k1,4525:27195398,24177426:-709978 +) +(1,4525:27195398,24177426:709978,414482,115847 +k1,4525:27195398,24177426:3277 +h1,4525:27902099,24177426:0,411205,112570 +) +k1,4525:28099042,24177426:193666 +k1,4525:30477022,24177426:193665 +k1,4525:32051532,24177426:193666 k1,4525:32583029,24177426:0 ) (1,4526:6764466,25042506:25818563,513147,134348 -k1,4525:7572759,25042506:156865 -k1,4525:9341154,25042506:156865 -k1,4525:10259547,25042506:156865 -k1,4525:12775709,25042506:156866 -k1,4525:14326525,25042506:156865 -k1,4525:15071903,25042506:156865 -k1,4525:16671215,25042506:156865 -k1,4525:18395701,25042506:156865 -k1,4525:22788813,25042506:156865 -k1,4525:24243291,25042506:156865 -k1,4525:25794108,25042506:156866 -k1,4525:26539486,25042506:156865 -k1,4525:28431744,25042506:156865 -k1,4525:29607694,25042506:156865 +k1,4525:8870653,25042506:235789 +k1,4525:9757870,25042506:235789 +k1,4525:11605190,25042506:235790 +k1,4525:12602507,25042506:235789 +k1,4525:15197592,25042506:235789 +k1,4525:16827332,25042506:235789 +k1,4525:17651635,25042506:235790 +k1,4525:19329871,25042506:235789 +k1,4525:21133281,25042506:235789 +k1,4525:25605317,25042506:235789 +k1,4525:27138719,25042506:235789 +k1,4525:28768460,25042506:235790 +k1,4525:29592762,25042506:235789 +k1,4525:31563944,25042506:235789 k1,4525:32583029,25042506:0 ) -(1,4526:6764466,25907586:25818563,505283,134348 -g1,4525:9955414,25907586 -g1,4525:10840805,25907586 -g1,4525:11395894,25907586 -g1,4525:14073695,25907586 -k1,4526:32583029,25907586:16768698 +(1,4526:6764466,25907586:25818563,513147,134348 +g1,4525:9939030,25907586 +g1,4525:13129978,25907586 +g1,4525:14015369,25907586 +g1,4525:14570458,25907586 +g1,4525:17248259,25907586 +k1,4526:32583029,25907586:13594134 g1,4526:32583029,25907586 ) v1,4528:6764466,26592441:0,393216,0 @@ -102088,51 +102257,50 @@ k1,4569:29338342,41636109:226580 k1,4569:32583029,41636109:0 ) (1,4570:6764466,42501189:25818563,513147,134348 -k1,4569:8509527,42501189:222659 -k1,4569:9383613,42501189:222658 -k1,4569:11677210,42501189:222659 -k1,4569:13283988,42501189:222658 -k1,4569:14932055,42501189:222659 -k1,4569:16325186,42501189:222658 -k1,4569:17539405,42501189:222659 -k1,4569:21292487,42501189:222658 -k1,4569:22909097,42501189:222659 -k1,4569:25333765,42501189:222658 -k1,4569:29073086,42501189:222659 -k1,4569:31031137,42501189:222658 -k1,4570:32583029,42501189:0 +k1,4569:8456005,42501189:169137 +k1,4569:9276571,42501189:169138 +k1,4569:11516646,42501189:169137 +k1,4569:13069904,42501189:169138 +k1,4569:14664449,42501189:169137 +k1,4569:16004059,42501189:169137 +k1,4569:17164757,42501189:169138 +k1,4569:20864318,42501189:169137 +k1,4569:22427407,42501189:169138 +k1,4569:24798554,42501189:169137 +k1,4569:28484354,42501189:169138 +k1,4569:30388884,42501189:169137 +k1,4569:32583029,42501189:0 ) (1,4570:6764466,43366269:25818563,513147,134348 -k1,4569:9458651,43366269:232653 -k1,4569:11576775,43366269:232653 -k1,4569:12800988,43366269:232653 -k1,4569:15227785,43366269:232652 -k1,4569:17471083,43366269:232653 -k1,4569:20030919,43366269:232653 -k1,4569:20922864,43366269:232653 -k1,4569:23716009,43366269:232653 -k1,4569:25807918,43366269:232653 -k1,4569:26723455,43366269:232652 -k1,4569:28683637,43366269:232653 -k1,4569:29567718,43366269:232653 +k1,4569:9051017,43366269:293601 +k1,4569:10030781,43366269:293602 +k1,4569:14231638,43366269:293601 +k1,4569:16852422,43366269:293601 +k1,4569:17805316,43366269:293602 +k1,4569:20659409,43366269:293601 +k1,4569:22812266,43366269:293601 +k1,4569:23788753,43366269:293602 +k1,4569:25809883,43366269:293601 +k1,4569:26754912,43366269:293601 +k1,4569:30063825,43366269:293602 +k1,4569:30888923,43366269:293601 k1,4569:32583029,43366269:0 ) (1,4570:6764466,44231349:25818563,513147,126483 -k1,4569:7513936,44231349:217973 -k1,4569:9444364,44231349:217972 -k1,4569:10313765,44231349:217973 -k1,4569:12906107,44231349:217973 -k1,4569:15293976,44231349:217972 -k1,4569:16194834,44231349:217973 -k1,4569:17866396,44231349:217973 -k1,4569:18770530,44231349:217972 -k1,4569:20685230,44231349:217973 -k1,4569:23097348,44231349:217973 -k1,4569:25325965,44231349:217972 -k1,4569:26648220,44231349:217973 -k1,4569:27613959,44231349:217973 -k1,4569:30610658,44231349:217972 -k1,4569:31590159,44231349:217973 +k1,4569:7653696,44231349:237802 +k1,4569:10265867,44231349:237802 +k1,4569:12673566,44231349:237802 +k1,4569:13594253,44231349:237802 +k1,4569:15285644,44231349:237802 +k1,4569:16209608,44231349:237802 +k1,4569:18144137,44231349:237802 +k1,4569:20576083,44231349:237801 +k1,4569:22824530,44231349:237802 +k1,4569:24166614,44231349:237802 +k1,4569:25152182,44231349:237802 +k1,4569:28168711,44231349:237802 +k1,4569:29168041,44231349:237802 +k1,4569:32168186,44231349:237802 k1,4570:32583029,44231349:0 ) ] @@ -102159,10 +102327,8 @@ g1,4584:-473656,-710413 ] ) ] -!25449 -}80 -Input:805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!25443 +}81 Input:807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:808:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:809:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -102171,8 +102337,10 @@ Input:811:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:812:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !921 -{81 +{82 [1,4660:4262630,47279633:28320399,43253760,0 (1,4660:4262630,4025873:0,0,0 [1,4660:-473656,4025873:0,0,0 @@ -102308,28 +102476,26 @@ g1,4584:6567858,12543960 g1,4584:6764466,12543960 [1,4584:6764466,12543960:25818563,6683079,0 (1,4570:6764466,6374028:25818563,513147,134348 -k1,4569:8897009,6374028:212993 -k1,4569:9524832,6374028:212980 -k1,4569:13508111,6374028:212993 -k1,4569:17083101,6374028:212993 -k1,4569:18105464,6374028:212993 -k1,4569:19337542,6374028:212993 -k1,4569:21230878,6374028:212993 -k1,4569:22103164,6374028:212994 -k1,4569:25288870,6374028:212993 -k1,4569:26184748,6374028:212993 -k1,4569:29093237,6374028:212993 +k1,4569:10738331,6374028:203579 +k1,4569:14303906,6374028:203578 +k1,4569:15316855,6374028:203579 +k1,4569:16539518,6374028:203578 +k1,4569:18423440,6374028:203579 +k1,4569:19286310,6374028:203578 +k1,4569:22462602,6374028:203579 +k1,4569:23349065,6374028:203578 +k1,4569:26248140,6374028:203579 +k1,4569:30028018,6374028:203578 +k1,4569:31923737,6374028:203579 k1,4569:32583029,6374028:0 ) -(1,4570:6764466,7239108:25818563,513147,126483 -g1,4569:8655835,7239108 -g1,4569:9514356,7239108 -g1,4569:11352640,7239108 -g1,4569:14641892,7239108 -g1,4569:16874703,7239108 -g1,4569:17689970,7239108 -g1,4569:19092440,7239108 -k1,4570:32583029,7239108:11020537 +(1,4570:6764466,7239108:25818563,505283,126483 +g1,4569:8602750,7239108 +g1,4569:11892002,7239108 +g1,4569:14124813,7239108 +g1,4569:14940080,7239108 +g1,4569:16342550,7239108 +k1,4570:32583029,7239108:13770427 g1,4570:32583029,7239108 ) v1,4572:6764466,7923963:0,393216,0 @@ -103134,10 +103300,8 @@ g1,4660:-473656,-710413 ] ) ] -!26125 -}81 -Input:815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26078 +}82 Input:817:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:818:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:819:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -103151,8 +103315,10 @@ Input:826:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:827:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:828:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:829:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:830:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:831:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1376 -{82 +{83 [1,4767:4262630,47279633:28320399,43253760,0 (1,4767:4262630,4025873:0,0,0 [1,4767:-473656,4025873:0,0,0 @@ -103537,50 +103703,49 @@ k1,4674:30575662,16655332:234993 k1,4674:32583029,16655332:0 ) (1,4675:6764466,17520412:25818563,513147,134348 -k1,4674:8929834,17520412:202564 -k1,4674:10000749,17520412:202563 -k1,4674:11716539,17520412:202564 -k1,4674:14614598,17520412:202563 -(1,4674:14614598,17520412:0,452978,115847 -r1,4767:15676287,17520412:1061689,568825,115847 -k1,4674:14614598,17520412:-1061689 -) -(1,4674:14614598,17520412:1061689,452978,115847 -k1,4674:14614598,17520412:3277 -h1,4674:15673010,17520412:0,411205,112570 -) -k1,4674:15878851,17520412:202564 -k1,4674:16732842,17520412:202563 -k1,4674:20746980,17520412:202564 -k1,4674:23181044,17520412:202563 -(1,4674:23181044,17520412:0,452978,115847 -r1,4767:26353004,17520412:3171960,568825,115847 -k1,4674:23181044,17520412:-3171960 -) -(1,4674:23181044,17520412:3171960,452978,115847 -k1,4674:23181044,17520412:3277 -h1,4674:26349727,17520412:0,411205,112570 -) -k1,4674:26555568,17520412:202564 -k1,4674:29127913,17520412:202563 -k1,4674:31790699,17520412:202564 -k1,4675:32583029,17520412:0 +k1,4674:9185626,17520412:284686 +k1,4674:10338664,17520412:284686 +k1,4674:12136576,17520412:284686 +k1,4674:15116758,17520412:284686 +(1,4674:15116758,17520412:0,452978,115847 +r1,4767:16178447,17520412:1061689,568825,115847 +k1,4674:15116758,17520412:-1061689 +) +(1,4674:15116758,17520412:1061689,452978,115847 +k1,4674:15116758,17520412:3277 +h1,4674:16175170,17520412:0,411205,112570 +) +k1,4674:16463133,17520412:284686 +k1,4674:17399246,17520412:284685 +k1,4674:21495506,17520412:284686 +k1,4674:24011693,17520412:284686 +(1,4674:24011693,17520412:0,452978,115847 +r1,4767:27183653,17520412:3171960,568825,115847 +k1,4674:24011693,17520412:-3171960 +) +(1,4674:24011693,17520412:3171960,452978,115847 +k1,4674:24011693,17520412:3277 +h1,4674:27180376,17520412:0,411205,112570 +) +k1,4674:27468339,17520412:284686 +k1,4674:30122807,17520412:284686 +k1,4674:32583029,17520412:0 ) (1,4675:6764466,18385492:25818563,513147,134348 -k1,4674:9282406,18385492:207141 -k1,4674:10621353,18385492:207140 -k1,4674:12896810,18385492:207141 -k1,4674:13755378,18385492:207140 -k1,4674:15775245,18385492:207141 -k1,4674:17399273,18385492:207140 -k1,4674:18986602,18385492:207141 -k1,4674:20668958,18385492:207141 -k1,4674:21527526,18385492:207140 -k1,4674:22482433,18385492:207141 -k1,4674:25661631,18385492:207140 -k1,4674:27436393,18385492:207141 -k1,4674:28662618,18385492:207140 -k1,4674:30847636,18385492:207141 +k1,4674:9919556,18385492:158129 +k1,4674:11209492,18385492:158129 +k1,4674:13435937,18385492:158129 +k1,4674:14245494,18385492:158129 +k1,4674:16216349,18385492:158129 +k1,4674:17791366,18385492:158129 +k1,4674:19329683,18385492:158129 +k1,4674:20963027,18385492:158129 +k1,4674:21772584,18385492:158129 +k1,4674:22678479,18385492:158129 +k1,4674:25808666,18385492:158129 +k1,4674:27534416,18385492:158129 +k1,4674:28711630,18385492:158129 +k1,4674:30847636,18385492:158129 k1,4675:32583029,18385492:0 ) (1,4675:6764466,19250572:25818563,505283,134348 @@ -103592,46 +103757,45 @@ k1,4674:6764466,19250572:-2468537 k1,4674:6764466,19250572:3277 h1,4674:9229726,19250572:0,411205,112570 ) -k1,4674:9449691,19250572:216688 -k1,4674:11850694,19250572:216688 -k1,4674:14806787,19250572:216688 -k1,4674:15785003,19250572:216688 -k1,4674:18789593,19250572:216688 -k1,4674:21047072,19250572:216688 -k1,4674:22132111,19250572:216687 -k1,4674:24355511,19250572:216688 -k1,4674:24928059,19250572:216688 -k1,4674:26882762,19250572:216688 -k1,4674:27750878,19250572:216688 -k1,4674:29419188,19250572:216688 -k1,4674:31675356,19250572:216688 -k1,4675:32583029,19250572:0 +k1,4674:9381685,19250572:148682 +k1,4674:11714681,19250572:148681 +k1,4674:14602768,19250572:148682 +k1,4674:15512978,19250572:148682 +k1,4674:18449561,19250572:148681 +k1,4674:20639034,19250572:148682 +k1,4674:21656068,19250572:148682 +k1,4674:23811462,19250572:148682 +k1,4674:24316003,19250572:148681 +k1,4674:26202700,19250572:148682 +k1,4674:27002810,19250572:148682 +k1,4674:28603113,19250572:148681 +k1,4674:30791275,19250572:148682 +k1,4674:32583029,19250572:0 ) (1,4675:6764466,20115652:25818563,513147,134348 -k1,4674:7927784,20115652:173069 -k1,4674:10847468,20115652:173070 -(1,4674:10847468,20115652:0,414482,115847 -r1,4767:11205734,20115652:358266,530329,115847 -k1,4674:10847468,20115652:-358266 -) -(1,4674:10847468,20115652:358266,414482,115847 -k1,4674:10847468,20115652:3277 -h1,4674:11202457,20115652:0,411205,112570 -) -k1,4674:11378803,20115652:173069 -k1,4674:12420224,20115652:173069 -k1,4674:14600006,20115652:173070 -k1,4674:15792160,20115652:173069 -k1,4674:17703244,20115652:173069 -k1,4674:18685683,20115652:173069 -k1,4674:19877838,20115652:173070 -k1,4674:22944322,20115652:173069 -k1,4674:24416970,20115652:173069 -k1,4674:25918456,20115652:173070 -k1,4674:26742953,20115652:173069 -k1,4674:27935107,20115652:173069 -k1,4674:30731583,20115652:173070 -k1,4674:31563944,20115652:173069 +k1,4674:9761704,20115652:250624 +(1,4674:9761704,20115652:0,414482,115847 +r1,4767:10119970,20115652:358266,530329,115847 +k1,4674:9761704,20115652:-358266 +) +(1,4674:9761704,20115652:358266,414482,115847 +k1,4674:9761704,20115652:3277 +h1,4674:10116693,20115652:0,411205,112570 +) +k1,4674:10370594,20115652:250624 +k1,4674:11489570,20115652:250624 +k1,4674:13746905,20115652:250623 +k1,4674:15016614,20115652:250624 +k1,4674:17005253,20115652:250624 +k1,4674:18065247,20115652:250624 +k1,4674:19334956,20115652:250624 +k1,4674:22478995,20115652:250624 +k1,4674:24029198,20115652:250624 +k1,4674:25608238,20115652:250624 +k1,4674:26510289,20115652:250623 +k1,4674:27779998,20115652:250624 +k1,4674:30654028,20115652:250624 +k1,4674:31563944,20115652:250624 k1,4674:32583029,20115652:0 ) (1,4675:6764466,20980732:25818563,505283,134348 @@ -104573,13 +104737,13 @@ g1,4767:-473656,-710413 ] ) ] -!37492 -}82 -Input:830:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:831:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!37422 +}83 Input:832:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:833:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:834:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{83 +{84 [1,4852:4262630,47279633:28320399,43253760,0 (1,4852:4262630,4025873:0,0,0 [1,4852:-473656,4025873:0,0,0 @@ -104846,48 +105010,47 @@ k1,4769:29850833,11683127:229029 k1,4769:32583029,11683127:0 ) (1,4770:6630773,12548207:25952256,513147,134348 -k1,4769:9084714,12548207:280767 -k1,4769:9981519,12548207:280767 -k1,4769:11728982,12548207:280767 -k1,4769:13028834,12548207:280767 -k1,4769:16203016,12548207:280767 -k1,4769:17783362,12548207:280767 -k1,4769:19255573,12548207:280766 -k1,4769:20555425,12548207:280767 -k1,4769:24190980,12548207:280767 -k1,4769:25771326,12548207:280767 -k1,4769:27790108,12548207:280767 -k1,4769:29521842,12548207:280767 +k1,4769:9051118,12548207:247171 +k1,4769:9914328,12548207:247172 +k1,4769:11628195,12548207:247171 +k1,4769:12894452,12548207:247172 +k1,4769:14428750,12548207:247171 +k1,4769:15867366,12548207:247171 +k1,4769:17133623,12548207:247172 +k1,4769:20735582,12548207:247171 +k1,4769:22282332,12548207:247171 +k1,4769:24267519,12548207:247172 +k1,4769:25965657,12548207:247171 +k1,4769:29274016,12548207:247172 +k1,4769:31563944,12548207:247171 k1,4769:32583029,12548207:0 ) -(1,4770:6630773,13413287:25952256,513147,134348 -k1,4769:8911224,13413287:237694 -k1,4769:10168003,13413287:237694 -k1,4769:14051465,13413287:237694 -k1,4769:15972123,13413287:237693 -k1,4769:18046136,13413287:237694 -k1,4769:19112860,13413287:237694 -k1,4769:21066287,13413287:237694 -k1,4769:22323066,13413287:237694 -k1,4769:25131737,13413287:237694 -k1,4769:26020858,13413287:237693 -k1,4769:27277637,13413287:237694 -k1,4769:29823509,13413287:237694 -k1,4769:31931601,13413287:237694 +(1,4770:6630773,13413287:25952256,505283,134348 +k1,4769:10551901,13413287:275360 +k1,4769:12510227,13413287:275361 +k1,4769:14621906,13413287:275360 +k1,4769:15726296,13413287:275360 +k1,4769:17717389,13413287:275360 +k1,4769:19011835,13413287:275361 +k1,4769:21858172,13413287:275360 +k1,4769:22784960,13413287:275360 +k1,4769:24079405,13413287:275360 +k1,4769:26662944,13413287:275361 +k1,4769:28808702,13413287:275360 +k1,4769:29735490,13413287:275360 k1,4769:32583029,13413287:0 ) (1,4770:6630773,14278367:25952256,513147,126483 -g1,4769:9764049,14278367 -g1,4769:12700061,14278367 -g1,4769:15207468,14278367 -g1,4769:16398257,14278367 -g1,4769:18110712,14278367 -g1,4769:18925979,14278367 -g1,4769:20576830,14278367 -g1,4769:21435351,14278367 -g1,4769:22653665,14278367 -g1,4769:25844613,14278367 -k1,4770:32583029,14278367:4817556 +g1,4769:9566785,14278367 +g1,4769:12074192,14278367 +g1,4769:13264981,14278367 +g1,4769:14977436,14278367 +g1,4769:15792703,14278367 +g1,4769:17443554,14278367 +g1,4769:18302075,14278367 +g1,4769:19520389,14278367 +g1,4769:22711337,14278367 +k1,4770:32583029,14278367:7950832 g1,4770:32583029,14278367 ) v1,4772:6630773,14963222:0,393216,0 @@ -105433,68 +105596,68 @@ k1,4838:30817489,39280374:149372 k1,4838:32583029,39280374:0 ) (1,4839:6764466,40145454:25818563,513147,126483 -k1,4838:7435132,40145454:212569 -k1,4838:8506224,40145454:212570 -k1,4838:9480321,40145454:212569 -k1,4838:10725083,40145454:212570 -k1,4838:12489545,40145454:212569 -k1,4838:13721199,40145454:212569 -k1,4838:16175100,40145454:212570 -k1,4838:19574029,40145454:212569 -k1,4838:20402637,40145454:212570 -k1,4838:21634291,40145454:212569 -k1,4838:23817528,40145454:212569 -k1,4838:26072200,40145454:212570 -k1,4838:29029417,40145454:212569 -(1,4838:29029417,40145454:0,414482,115847 -r1,4852:29387683,40145454:358266,530329,115847 -k1,4838:29029417,40145454:-358266 -) -(1,4838:29029417,40145454:358266,414482,115847 -k1,4838:29029417,40145454:3277 -h1,4838:29384406,40145454:0,411205,112570 -) -k1,4838:29773923,40145454:212570 -k1,4838:30884991,40145454:212569 +k1,4838:7364790,40145454:142227 +k1,4838:8365539,40145454:142227 +k1,4838:9269294,40145454:142227 +k1,4838:10443713,40145454:142227 +k1,4838:12137833,40145454:142227 +k1,4838:13299145,40145454:142227 +k1,4838:15682703,40145454:142227 +k1,4838:19011291,40145454:142228 +k1,4838:19769556,40145454:142227 +k1,4838:20930868,40145454:142227 +k1,4838:23043763,40145454:142227 +k1,4838:25228092,40145454:142227 +k1,4838:28114967,40145454:142227 +(1,4838:28114967,40145454:0,435480,115847 +r1,4852:29528368,40145454:1413401,551327,115847 +k1,4838:28114967,40145454:-1413401 +) +(1,4838:28114967,40145454:1413401,435480,115847 +k1,4838:28114967,40145454:3277 +h1,4838:29525091,40145454:0,411205,112570 +) +k1,4838:29844265,40145454:142227 +k1,4838:30884991,40145454:142227 k1,4838:32583029,40145454:0 ) (1,4839:6764466,41010534:25818563,513147,134348 -k1,4838:9778635,41010534:240030 -k1,4838:13174878,41010534:240029 -k1,4838:14074200,41010534:240030 -k1,4838:15517470,41010534:240029 -k1,4838:18418917,41010534:240030 -k1,4838:19829420,41010534:240030 -k1,4838:21201911,41010534:240029 -k1,4838:22972207,41010534:240030 -k1,4838:23863665,41010534:240030 -k1,4838:26668773,41010534:240029 -(1,4838:26668773,41010534:0,414482,115847 -r1,4852:27027039,41010534:358266,530329,115847 -k1,4838:26668773,41010534:-358266 -) -(1,4838:26668773,41010534:358266,414482,115847 -k1,4838:26668773,41010534:3277 -h1,4838:27023762,41010534:0,411205,112570 -) -k1,4838:27267069,41010534:240030 -k1,4838:28268626,41010534:240029 -k1,4838:31563944,41010534:240030 +k1,4838:9781160,41010534:242555 +k1,4838:13179930,41010534:242556 +k1,4838:14081777,41010534:242555 +k1,4838:15527574,41010534:242556 +k1,4838:18605216,41010534:242555 +k1,4838:20018245,41010534:242556 +k1,4838:21393262,41010534:242555 +k1,4838:23166083,41010534:242555 +k1,4838:24060067,41010534:242556 +k1,4838:26867701,41010534:242555 +(1,4838:26867701,41010534:0,435480,115847 +r1,4852:28281102,41010534:1413401,551327,115847 +k1,4838:26867701,41010534:-1413401 +) +(1,4838:26867701,41010534:1413401,435480,115847 +k1,4838:26867701,41010534:3277 +h1,4838:28277825,41010534:0,411205,112570 +) +k1,4838:28523658,41010534:242556 +k1,4838:29527741,41010534:242555 k1,4838:32583029,41010534:0 ) (1,4839:6764466,41875614:25818563,513147,126483 -g1,4838:8269828,41875614 -g1,4838:11829088,41875614 -g1,4838:13479939,41875614 -g1,4838:15104576,41875614 -g1,4838:16474278,41875614 -g1,4838:17791551,41875614 -g1,4838:18346640,41875614 -g1,4838:21371781,41875614 -g1,4838:22230302,41875614 -g1,4838:23448616,41875614 -g1,4838:25889176,41875614 -k1,4839:32583029,41875614:3455064 +g1,4838:7982780,41875614 +g1,4838:9488142,41875614 +g1,4838:12873731,41875614 +g1,4838:14524582,41875614 +g1,4838:16149219,41875614 +g1,4838:17518921,41875614 +g1,4838:18836194,41875614 +g1,4838:19391283,41875614 +g1,4838:22416424,41875614 +g1,4838:23274945,41875614 +g1,4838:24493259,41875614 +g1,4838:26933819,41875614 +k1,4839:32583029,41875614:2410421 g1,4839:32583029,41875614 ) v1,4841:6764466,42560469:0,393216,0 @@ -105572,10 +105735,8 @@ g1,4852:-473656,-710413 ] ) ] -!26637 -}83 -Input:833:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:834:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26610 +}84 Input:835:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:836:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:837:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -105583,8 +105744,10 @@ Input:838:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:839:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:840:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:841:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:842:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:843:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !830 -{84 +{85 [1,4958:4262630,47279633:28320399,43253760,0 (1,4958:4262630,4025873:0,0,0 [1,4958:-473656,4025873:0,0,0 @@ -106572,14 +106735,14 @@ g1,4958:-473656,-710413 ) ] !26060 -}84 -Input:842:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:843:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}85 Input:844:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:845:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:846:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:847:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:848:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !466 -{85 +{86 [1,5093:4262630,47279633:28320399,43253760,0 (1,5093:4262630,4025873:0,0,0 [1,5093:-473656,4025873:0,0,0 @@ -107485,9 +107648,7 @@ g1,5093:-473656,-710413 ) ] !24780 -}85 -Input:847:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:848:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}86 Input:849:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:850:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:851:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -107499,8 +107660,10 @@ Input:856:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:857:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:858:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:859:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:860:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:861:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1194 -{86 +{87 [1,5128:4262630,47279633:28320399,43253760,0 (1,5128:4262630,4025873:0,0,0 [1,5128:-473656,4025873:0,0,0 @@ -109151,103 +109314,101 @@ g1,5095:32583029,28566655 ) (1,5097:6630773,29431735:25952256,505283,134348 h1,5096:6630773,29431735:983040,0,0 -k1,5096:10260610,29431735:237694 -k1,5096:11973519,29431735:237694 -k1,5096:12567073,29431735:237694 -k1,5096:14677786,29431735:237694 -k1,5096:18434108,29431735:237694 -k1,5096:20036917,29431735:237694 -k1,5096:20960772,29431735:237693 -k1,5096:24288489,29431735:237694 -k1,5096:25335553,29431735:237694 -k1,5096:27071400,29431735:237694 -h1,5096:27868318,29431735:0,0,0 -k1,5096:28106012,29431735:237694 -k1,5096:30372701,29431735:237694 -k1,5096:31478747,29431735:237694 +k1,5096:10265046,29431735:242130 +k1,5096:11982391,29431735:242130 +k1,5096:12580382,29431735:242131 +k1,5096:14695531,29431735:242130 +k1,5096:18456289,29431735:242130 +k1,5096:20063534,29431735:242130 +k1,5096:20991827,29431735:242131 +k1,5096:24323980,29431735:242130 +k1,5096:25375480,29431735:242130 +k1,5096:27115763,29431735:242130 +h1,5096:27912681,29431735:0,0,0 +k1,5096:28328482,29431735:242131 +k1,5096:29438964,29431735:242130 +k1,5096:30785376,29431735:242130 k1,5096:32583029,29431735:0 ) (1,5097:6630773,30296815:25952256,513147,134348 -k1,5096:8681552,30296815:234776 -k1,5096:10119569,30296815:234776 -k1,5096:13872974,30296815:234777 -k1,5096:15616389,30296815:234776 -k1,5096:18038101,30296815:234776 -k1,5096:19666828,30296815:234776 -k1,5096:22597100,30296815:234776 -(1,5096:22597100,30296815:0,452978,122846 -r1,5128:25417349,30296815:2820249,575824,122846 -k1,5096:22597100,30296815:-2820249 -) -(1,5096:22597100,30296815:2820249,452978,122846 -k1,5096:22597100,30296815:3277 -h1,5096:25414072,30296815:0,411205,112570 -) -k1,5096:25825795,30296815:234776 -k1,5096:28737718,30296815:234777 -k1,5096:30447709,30296815:234776 -k1,5096:31854924,30296815:234776 -k1,5097:32583029,30296815:0 +k1,5096:7970436,30296815:136422 +k1,5096:11625487,30296815:136423 +k1,5096:13270548,30296815:136422 +k1,5096:15593907,30296815:136423 +k1,5096:17124280,30296815:136422 +k1,5096:19956199,30296815:136423 +(1,5096:19956199,30296815:0,452978,122846 +r1,5128:22776448,30296815:2820249,575824,122846 +k1,5096:19956199,30296815:-2820249 +) +(1,5096:19956199,30296815:2820249,452978,122846 +k1,5096:19956199,30296815:3277 +h1,5096:22773171,30296815:0,411205,112570 +) +k1,5096:23086540,30296815:136422 +k1,5096:25900109,30296815:136423 +k1,5096:27511746,30296815:136422 +k1,5096:28820608,30296815:136423 +k1,5096:32583029,30296815:0 ) (1,5097:6630773,31161895:25952256,505283,134348 -k1,5096:10092144,31161895:234378 -k1,5096:12211993,31161895:234378 -k1,5096:13550653,31161895:234378 -k1,5096:14532797,31161895:234378 -k1,5096:17191352,31161895:234378 -k1,5096:21184876,31161895:234379 -k1,5096:22813205,31161895:234378 -(1,5096:22813205,31161895:0,452978,115847 -r1,5128:24930030,31161895:2116825,568825,115847 -k1,5096:22813205,31161895:-2116825 -) -(1,5096:22813205,31161895:2116825,452978,115847 -k1,5096:22813205,31161895:3277 -h1,5096:24926753,31161895:0,411205,112570 -) -k1,5096:25164408,31161895:234378 -k1,5096:26590231,31161895:234378 -(1,5096:26590231,31161895:0,452978,115847 -r1,5128:28707056,31161895:2116825,568825,115847 -k1,5096:26590231,31161895:-2116825 -) -(1,5096:26590231,31161895:2116825,452978,115847 -k1,5096:26590231,31161895:3277 -h1,5096:28703779,31161895:0,411205,112570 -) -k1,5096:29115104,31161895:234378 -k1,5096:30540927,31161895:234378 +k1,5096:8706824,31161895:216794 +k1,5096:10027899,31161895:216793 +k1,5096:10992459,31161895:216794 +k1,5096:13633430,31161895:216794 +k1,5096:17609368,31161895:216793 +k1,5096:19220113,31161895:216794 +(1,5096:19220113,31161895:0,452978,115847 +r1,5128:21336938,31161895:2116825,568825,115847 +k1,5096:19220113,31161895:-2116825 +) +(1,5096:19220113,31161895:2116825,452978,115847 +k1,5096:19220113,31161895:3277 +h1,5096:21333661,31161895:0,411205,112570 +) +k1,5096:21553732,31161895:216794 +k1,5096:22961970,31161895:216793 +(1,5096:22961970,31161895:0,452978,115847 +r1,5128:25078795,31161895:2116825,568825,115847 +k1,5096:22961970,31161895:-2116825 +) +(1,5096:22961970,31161895:2116825,452978,115847 +k1,5096:22961970,31161895:3277 +h1,5096:25075518,31161895:0,411205,112570 +) +k1,5096:25469259,31161895:216794 +k1,5096:26877498,31161895:216794 +k1,5096:29154743,31161895:216793 +k1,5096:30765488,31161895:216794 +(1,5096:30765488,31161895:0,452978,115847 +r1,5128:32530601,31161895:1765113,568825,115847 +k1,5096:30765488,31161895:-1765113 +) +(1,5096:30765488,31161895:1765113,452978,115847 +k1,5096:30765488,31161895:3277 +h1,5096:32527324,31161895:0,411205,112570 +) k1,5096:32583029,31161895:0 ) (1,5097:6630773,32026975:25952256,505283,126483 -g1,5096:8197739,32026975 -(1,5096:8197739,32026975:0,452978,115847 -r1,5128:9962852,32026975:1765113,568825,115847 -k1,5096:8197739,32026975:-1765113 -) -(1,5096:8197739,32026975:1765113,452978,115847 -k1,5096:8197739,32026975:3277 -h1,5096:9959575,32026975:0,411205,112570 -) -g1,5096:10335751,32026975 -g1,5096:11352869,32026975 -g1,5096:14391118,32026975 -(1,5096:14391118,32026975:0,452978,115847 -r1,5128:18266502,32026975:3875384,568825,115847 -k1,5096:14391118,32026975:-3875384 -) -(1,5096:14391118,32026975:3875384,452978,115847 -k1,5096:14391118,32026975:3277 -h1,5096:18263225,32026975:0,411205,112570 -) -g1,5096:18465731,32026975 -g1,5096:19769242,32026975 -g1,5096:20716237,32026975 -g1,5096:22428692,32026975 -g1,5096:23279349,32026975 -g1,5096:25294581,32026975 -g1,5096:26512895,32026975 -k1,5097:32583029,32026975:4462536 +g1,5096:7623643,32026975 +g1,5096:10835562,32026975 +(1,5096:10835562,32026975:0,452978,115847 +r1,5128:14710946,32026975:3875384,568825,115847 +k1,5096:10835562,32026975:-3875384 +) +(1,5096:10835562,32026975:3875384,452978,115847 +k1,5096:10835562,32026975:3277 +h1,5096:14707669,32026975:0,411205,112570 +) +g1,5096:14910175,32026975 +g1,5096:16213686,32026975 +g1,5096:17160681,32026975 +g1,5096:18873136,32026975 +g1,5096:19723793,32026975 +g1,5096:21739025,32026975 +g1,5096:22957339,32026975 +k1,5097:32583029,32026975:8018092 g1,5097:32583029,32026975 ) (1,5099:6630773,32892055:25952256,505283,134348 @@ -109657,14 +109818,14 @@ g1,5128:-473656,-710413 ] ) ] -!54945 -}86 -Input:860:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:861:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!54898 +}87 Input:862:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:863:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:864:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:865:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !375 -{87 +{88 [1,5212:4262630,47279633:28320399,43253760,0 (1,5212:4262630,4025873:0,0,0 [1,5212:-473656,4025873:0,0,0 @@ -110360,12 +110521,12 @@ g1,5168:7885131,31472422 g1,5168:11819257,31472422 g1,5168:14778862,31472422 g1,5168:16436922,31472422 -g1,5168:20089243,31472422 -g1,5168:20939900,31472422 -g1,5168:22158214,31472422 -g1,5168:24037786,31472422 -g1,5168:26725417,31472422 -k1,5169:32583029,31472422:3026457 +g1,5168:19915573,31472422 +g1,5168:21508753,31472422 +g1,5168:22727067,31472422 +g1,5168:24606639,31472422 +g1,5168:27294270,31472422 +k1,5169:32583029,31472422:2457604 g1,5169:32583029,31472422 ) v1,5171:6764466,32157277:0,393216,0 @@ -110729,10 +110890,10 @@ g1,5212:-473656,-710413 ) ] !29187 -}87 -Input:864:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}88 +Input:866:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !102 -{88 +{89 [1,5321:4262630,47279633:28320399,43253760,0 (1,5321:4262630,4025873:0,0,0 [1,5321:-473656,4025873:0,0,0 @@ -111771,10 +111932,10 @@ g1,5321:-473656,-710413 ) ] !26980 -}88 -Input:865:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}89 +Input:867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !102 -{89 +{90 [1,5456:4262630,47279633:28320399,43253760,0 (1,5456:4262630,4025873:0,0,0 [1,5456:-473656,4025873:0,0,0 @@ -112765,16 +112926,16 @@ g1,5456:-473656,-710413 ) ] !25263 -}89 -Input:866:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}90 Input:868:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:869:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:870:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:871:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:872:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:873:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:874:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !648 -{90 +{91 [1,5645:4262630,47279633:28320399,43253760,0 (1,5645:4262630,4025873:0,0,0 [1,5645:-473656,4025873:0,0,0 @@ -113191,31 +113352,31 @@ k1,5459:6764466,17752355:-997056 ) (1,5459:6764466,17752355:997056,701514,196608 ) -k1,5459:8036347,17752355:274825 -k1,5459:8364027,17752355:327680 -k1,5459:9266687,17752355:274825 -k1,5459:10130025,17752355:274825 -k1,5459:10760711,17752355:274826 -(1,5459:10760711,17752355:0,452978,115847 -r1,5645:12877536,17752355:2116825,568825,115847 -k1,5459:10760711,17752355:-2116825 -) -(1,5459:10760711,17752355:2116825,452978,115847 -k1,5459:10760711,17752355:3277 -h1,5459:12874259,17752355:0,411205,112570 -) -k1,5459:13152361,17752355:274825 -k1,5459:14531468,17752355:274825 -k1,5459:16281508,17752355:274825 -k1,5459:16912193,17752355:274825 -k1,5459:19060037,17752355:274825 -k1,5459:20712429,17752355:274825 -k1,5459:21343114,17752355:274825 -k1,5459:23490959,17752355:274826 -k1,5459:26322343,17752355:274825 -k1,5459:26953028,17752355:274825 -k1,5459:29100872,17752355:274825 -k1,5459:31914562,17752355:274825 +k1,5459:8025493,17752355:263971 +k1,5459:8353173,17752355:327680 +k1,5459:9244978,17752355:263970 +k1,5459:10097462,17752355:263971 +k1,5459:10717293,17752355:263971 +(1,5459:10717293,17752355:0,452978,115847 +r1,5645:12834118,17752355:2116825,568825,115847 +k1,5459:10717293,17752355:-2116825 +) +(1,5459:10717293,17752355:2116825,452978,115847 +k1,5459:10717293,17752355:3277 +h1,5459:12830841,17752355:0,411205,112570 +) +k1,5459:13098089,17752355:263971 +k1,5459:14466341,17752355:263970 +k1,5459:16205527,17752355:263971 +k1,5459:16825358,17752355:263971 +k1,5459:18962348,17752355:263971 +k1,5459:20603886,17752355:263971 +k1,5459:21223716,17752355:263970 +k1,5459:23360706,17752355:263971 +k1,5459:26181236,17752355:263971 +k1,5459:26801066,17752355:263970 +k1,5459:28938056,17752355:263971 +k1,5459:31914562,17752355:263971 k1,5459:32583029,17752355:0 ) (1,5460:6764466,18617435:25818563,505283,115847 @@ -113871,10 +114032,10 @@ g1,5645:-473656,-710413 ) ] !28842 -}90 -Input:873:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}91 +Input:875:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !102 -{91 +{92 [1,5680:4262630,47279633:28320399,43253760,0 (1,5680:4262630,4025873:0,0,0 [1,5680:-473656,4025873:0,0,0 @@ -118043,39 +118204,40 @@ k1,5648:31563944,35550923:293882 k1,5648:32583029,35550923:0 ) (1,5649:6630773,36416003:25952256,615216,126483 -k1,5648:10714544,36416003:234842 -$1,5648:10714544,36416003 -k1,5648:11758609,36416003:247147 -k1,5648:12573954,36416003:247148 -k1,5648:13144096,36416003:171683 -k1,5648:13883976,36416003:171683 -k1,5648:14454118,36416003:171683 -k1,5648:15193998,36416003:171683 -k1,5648:15839605,36416003:247148 -k1,5648:16654950,36416003:247148 -(1,5648:17053409,36140722:311689,339935,8258 -) -$1,5648:17365098,36416003 -k1,5648:17773609,36416003:234841 -k1,5648:20120021,36416003:234842 -k1,5648:21346423,36416003:234842 -k1,5648:23931385,36416003:234841 -k1,5648:24782265,36416003:234842 -k1,5648:26938623,36416003:234842 -k1,5648:28567415,36416003:234841 -k1,5648:30550102,36416003:234842 +k1,5648:10687252,36416003:207550 +$1,5648:10687252,36416003 +k1,5648:11681439,36416003:197269 +k1,5648:12446905,36416003:197269 +k1,5648:12997095,36416003:151731 +k1,5648:13717024,36416003:151732 +k1,5648:14267214,36416003:151731 +k1,5648:14987143,36416003:151732 +k1,5648:15582871,36416003:197269 +k1,5648:16348336,36416003:197268 +(1,5648:16746795,36140722:311689,339935,8258 +) +$1,5648:17058484,36416003 +k1,5648:17439705,36416003:207551 +k1,5648:19758825,36416003:207550 +k1,5648:20957936,36416003:207551 +k1,5648:23515607,36416003:207550 +k1,5648:24339196,36416003:207551 +k1,5648:26468262,36416003:207550 +k1,5648:28594707,36416003:207551 +k1,5648:30550102,36416003:207550 k1,5648:32583029,36416003:0 ) (1,5649:6630773,37281083:25952256,505283,134348 -k1,5648:7981834,37281083:243503 -k1,5648:9416781,37281083:243502 -k1,5648:11701075,37281083:243503 -k1,5648:15619836,37281083:243502 -k1,5648:18213460,37281083:243503 -k1,5648:21899568,37281083:243502 -k1,5648:23537022,37281083:243503 -k1,5648:25289163,37281083:243502 -k1,5648:30156231,37281083:243503 +k1,5648:7885787,37281083:147456 +k1,5648:9224688,37281083:147456 +k1,5648:11412935,37281083:147456 +k1,5648:15235650,37281083:147456 +k1,5648:16374665,37281083:147455 +k1,5648:18597646,37281083:147456 +k1,5648:22187708,37281083:147456 +k1,5648:23729115,37281083:147456 +k1,5648:25385210,37281083:147456 +k1,5648:30156231,37281083:147456 k1,5648:32583029,37281083:0 ) (1,5649:6630773,38146163:25952256,513147,134348 @@ -118256,16 +118418,16 @@ g1,5680:-473656,-710413 ] ) ] -!106503 -}91 -Input:874:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:875:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!106536 +}92 Input:876:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:877:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:878:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:879:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:880:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:881:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !558 -{92 +{93 [1,5764:4262630,47279633:28320399,43253760,0 (1,5764:4262630,4025873:0,0,0 [1,5764:-473656,4025873:0,0,0 @@ -118578,7 +118740,7 @@ k1,5678:31796597,14131404:0 (1,5679:8907493,14996484:22889104,513147,126483 g1,5678:9868250,14996484 g1,5678:11601677,14996484 -k1,5679:31796598,14996484:18836360 +k1,5679:31796598,14996484:18594532 g1,5679:31796598,14996484 ) ] @@ -119451,15 +119613,15 @@ g1,5764:-473656,-710413 ) ] !31516 -}92 -Input:880:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:881:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}93 Input:882:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:883:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:884:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:885:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:886:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:887:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !557 -{93 +{94 [1,5852:4262630,47279633:28320399,43253760,0 (1,5852:4262630,4025873:0,0,0 [1,5852:-473656,4025873:0,0,0 @@ -120652,9 +120814,7 @@ g1,5852:-473656,-710413 ) ] !31373 -}93 -Input:886:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:887:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}94 Input:888:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:889:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:890:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -120668,8 +120828,10 @@ Input:897:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:898:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:899:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:900:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1376 -{94 +{95 [1,5910:4262630,47279633:28320399,43253760,0 (1,5910:4262630,4025873:0,0,0 [1,5910:-473656,4025873:0,0,0 @@ -120957,82 +121119,83 @@ k1,5852:30544859,15199805:218672 k1,5852:32583029,15199805:0 ) (1,5853:6630773,16064885:25952256,513147,134348 -k1,5852:9069695,16064885:229048 -k1,5852:10317829,16064885:229049 -k1,5852:12635509,16064885:229048 -k1,5852:13523849,16064885:229048 -k1,5852:14771982,16064885:229048 -k1,5852:18610099,16064885:229049 -k1,5852:19522032,16064885:229048 -k1,5852:22023869,16064885:229048 -k1,5852:22880752,16064885:229048 -k1,5852:24811771,16064885:229049 -k1,5852:27169428,16064885:229048 -k1,5852:29136491,16064885:229048 +k1,5852:9011192,16064885:170545 +k1,5852:10200822,16064885:170545 +k1,5852:12459998,16064885:170544 +k1,5852:13289835,16064885:170545 +k1,5852:14479465,16064885:170545 +k1,5852:18259078,16064885:170545 +k1,5852:19112507,16064885:170544 +k1,5852:21555841,16064885:170545 +k1,5852:22354221,16064885:170545 +k1,5852:24226736,16064885:170545 +k1,5852:26525889,16064885:170544 +k1,5852:28434449,16064885:170545 +k1,5852:32051532,16064885:170545 k1,5852:32583029,16064885:0 ) (1,5853:6630773,16929965:25952256,513147,126483 -k1,5852:7364694,16929965:202424 -k1,5852:7922977,16929965:202423 -k1,5852:10903472,16929965:202424 -k1,5852:11765187,16929965:202423 -k1,5852:12986696,16929965:202424 -k1,5852:14752153,16929965:202423 -k1,5852:16151264,16929965:202424 -k1,5852:18093013,16929965:202423 -k1,5852:18954729,16929965:202424 -k1,5852:20176238,16929965:202424 -k1,5852:22171071,16929965:202423 -k1,5852:22989533,16929965:202424 -k1,5852:23962659,16929965:202423 -k1,5852:27502176,16929965:202424 -(1,5852:27502176,16929965:0,459977,115847 -r1,5910:29619001,16929965:2116825,575824,115847 -k1,5852:27502176,16929965:-2116825 -) -(1,5852:27502176,16929965:2116825,459977,115847 -k1,5852:27502176,16929965:3277 -h1,5852:29615724,16929965:0,411205,112570 -) -k1,5852:29821424,16929965:202423 -k1,5852:31516758,16929965:202424 -k1,5852:32583029,16929965:0 +k1,5852:7176850,16929965:190217 +k1,5852:10145139,16929965:190218 +k1,5852:10994649,16929965:190218 +k1,5852:12203951,16929965:190217 +k1,5852:13957203,16929965:190218 +k1,5852:15344107,16929965:190217 +k1,5852:17273651,16929965:190218 +k1,5852:18123160,16929965:190217 +k1,5852:19332462,16929965:190217 +k1,5852:21315090,16929965:190218 +k1,5852:22121346,16929965:190218 +k1,5852:23082266,16929965:190217 +k1,5852:26609577,16929965:190218 +(1,5852:26609577,16929965:0,459977,115847 +r1,5910:28726402,16929965:2116825,575824,115847 +k1,5852:26609577,16929965:-2116825 +) +(1,5852:26609577,16929965:2116825,459977,115847 +k1,5852:26609577,16929965:3277 +h1,5852:28723125,16929965:0,411205,112570 +) +k1,5852:28916619,16929965:190217 +k1,5852:30599746,16929965:190217 +k1,5852:31856235,16929965:190218 +k1,5853:32583029,16929965:0 ) (1,5853:6630773,17795045:25952256,513147,126483 -k1,5852:8564740,17795045:154665 -k1,5852:10844082,17795045:154665 -k1,5852:14800490,17795045:154665 -k1,5852:15638040,17795045:154665 -k1,5852:16811790,17795045:154665 -k1,5852:18977100,17795045:154665 -k1,5852:21607715,17795045:154665 -k1,5852:22834548,17795045:154664 -k1,5852:23675375,17795045:154665 -k1,5852:24698392,17795045:154665 -k1,5852:25985519,17795045:154665 -k1,5852:27165167,17795045:154665 -k1,5852:27935870,17795045:154665 -k1,5852:30838460,17795045:154665 -h1,5852:31236919,17795045:0,0,0 -k1,5852:31391584,17795045:154665 +k1,5852:7984051,17795045:150692 +k1,5852:10259420,17795045:150692 +k1,5852:14211854,17795045:150691 +k1,5852:15045431,17795045:150692 +k1,5852:16215208,17795045:150692 +k1,5852:18376545,17795045:150692 +k1,5852:21003187,17795045:150692 +k1,5852:22226047,17795045:150691 +k1,5852:23062901,17795045:150692 +k1,5852:24081945,17795045:150692 +k1,5852:25365099,17795045:150692 +k1,5852:26540774,17795045:150692 +k1,5852:27307504,17795045:150692 +k1,5852:30206120,17795045:150691 +h1,5852:30604579,17795045:0,0,0 +k1,5852:30755271,17795045:150692 +k1,5852:32097408,17795045:150692 +h1,5852:32495867,17795045:0,0,0 k1,5852:32583029,17795045:0 ) (1,5853:6630773,18660125:25952256,513147,134348 -h1,5852:7029232,18660125:0,0,0 -k1,5852:7356350,18660125:153448 -k1,5852:7967895,18660125:153448 -k1,5852:9225624,18660125:153447 -k1,5852:11158374,18660125:153448 -k1,5852:12330907,18660125:153448 -k1,5852:15445927,18660125:153448 -k1,5852:17112600,18660125:153447 -k1,5852:18027576,18660125:153448 -k1,5852:19873164,18660125:153448 -k1,5852:21548358,18660125:153448 -k1,5852:22361098,18660125:153448 -k1,5852:26001716,18660125:153447 -k1,5852:27346609,18660125:153448 -k1,5852:28519142,18660125:153448 +k1,5852:7265515,18660125:176645 +k1,5852:8546441,18660125:176644 +k1,5852:10502388,18660125:176645 +k1,5852:11698117,18660125:176644 +k1,5852:14836334,18660125:176645 +k1,5852:16526205,18660125:176645 +k1,5852:17464377,18660125:176644 +k1,5852:19333162,18660125:176645 +k1,5852:21031553,18660125:176645 +k1,5852:21867489,18660125:176644 +k1,5852:25955323,18660125:176645 +k1,5852:27323412,18660125:176644 +k1,5852:28519142,18660125:176645 k1,5852:32583029,18660125:0 ) (1,5853:6630773,19525205:25952256,513147,134348 @@ -121458,165 +121621,164 @@ k1,5885:6764466,37471168:-997056 ) (1,5885:6764466,37471168:997056,701514,196608 ) -k1,5885:7919941,37471168:158419 -k1,5885:8247621,37471168:327680 -k1,5885:10189276,37471168:158420 -k1,5885:11366780,37471168:158419 -k1,5885:13866146,37471168:158420 -k1,5885:14683857,37471168:158419 -k1,5885:16634686,37471168:158419 -k1,5885:17324603,37471168:158420 -k1,5885:19930792,37471168:158419 -k1,5885:20547309,37471168:158420 -k1,5885:21237225,37471168:158419 -k1,5885:24025604,37471168:158419 -k1,5885:24835452,37471168:158420 -k1,5885:26086356,37471168:158419 -k1,5885:28940272,37471168:158420 -(1,5885:28940272,37471168:0,452978,122846 -r1,5910:30353673,37471168:1413401,575824,122846 -k1,5885:28940272,37471168:-1413401 -) -(1,5885:28940272,37471168:1413401,452978,122846 -k1,5885:28940272,37471168:3277 -h1,5885:30350396,37471168:0,411205,112570 -) -k1,5885:30685762,37471168:158419 +k1,5885:7963108,37471168:201586 +k1,5885:8290788,37471168:327680 +k1,5885:10275609,37471168:201586 +k1,5885:11496279,37471168:201585 +k1,5885:14038811,37471168:201586 +k1,5885:14899689,37471168:201586 +k1,5885:16893685,37471168:201586 +k1,5885:17626768,37471168:201586 +k1,5885:20276123,37471168:201585 +k1,5885:20935806,37471168:201586 +k1,5885:21668889,37471168:201586 +k1,5885:24500435,37471168:201586 +k1,5885:25353449,37471168:201586 +k1,5885:26647519,37471168:201585 +k1,5885:29544601,37471168:201586 +(1,5885:29544601,37471168:0,452978,122846 +r1,5910:30958002,37471168:1413401,575824,122846 +k1,5885:29544601,37471168:-1413401 +) +(1,5885:29544601,37471168:1413401,452978,122846 +k1,5885:29544601,37471168:3277 +h1,5885:30954725,37471168:0,411205,112570 +) +k1,5885:31333258,37471168:201586 k1,5886:32583029,37471168:0 ) (1,5886:6764466,38336248:25818563,513147,126483 -k1,5885:7905777,38336248:170723 -k1,5885:9961970,38336248:170723 -k1,5885:10784121,38336248:170723 -k1,5885:13978675,38336248:170723 -k1,5885:14505258,38336248:170723 -k1,5885:16743642,38336248:170723 -k1,5885:20319617,38336248:170724 -k1,5885:20948437,38336248:170723 -k1,5885:21650657,38336248:170723 -k1,5885:23542355,38336248:170723 -k1,5885:24364506,38336248:170723 -k1,5885:25947530,38336248:170723 -k1,5885:27507616,38336248:170723 -k1,5885:28945805,38336248:170723 -k1,5885:29531343,38336248:170695 -k1,5885:31269687,38336248:170723 +k1,5885:8609044,38336248:226494 +k1,5885:10721009,38336248:226495 +k1,5885:11598931,38336248:226494 +k1,5885:14849256,38336248:226494 +k1,5885:15431610,38336248:226494 +k1,5885:17725766,38336248:226495 +k1,5885:21357511,38336248:226494 +k1,5885:22042102,38336248:226494 +k1,5885:22800094,38336248:226495 +k1,5885:24747563,38336248:226494 +k1,5885:25625485,38336248:226494 +k1,5885:27264281,38336248:226495 +k1,5885:28880138,38336248:226494 +k1,5885:30374098,38336248:226494 +k1,5885:31015408,38336248:226467 k1,5885:32583029,38336248:0 ) -(1,5886:6764466,39201328:25818563,505283,134348 -k1,5885:7551935,39201328:171431 -k1,5885:9608838,39201328:171432 -k1,5885:10799354,39201328:171431 -k1,5885:14115203,39201328:171432 -k1,5885:16113122,39201328:171431 -k1,5885:17276113,39201328:171431 -k1,5885:19781937,39201328:171432 -k1,5885:22737337,39201328:171431 -k1,5885:23594931,39201328:171432 -k1,5885:26741041,39201328:171431 -k1,5885:29108584,39201328:171432 -k1,5885:29962900,39201328:171431 +(1,5886:6764466,39201328:25818563,513147,134348 +k1,5885:8359340,39201328:281532 +k1,5885:9256910,39201328:281532 +k1,5885:11423913,39201328:281532 +k1,5885:12724529,39201328:281531 +k1,5885:16150478,39201328:281532 +k1,5885:18258498,39201328:281532 +k1,5885:19531590,39201328:281532 +k1,5885:22147514,39201328:281532 +k1,5885:25213015,39201328:281532 +k1,5885:26180708,39201328:281531 +k1,5885:29436919,39201328:281532 +k1,5885:31914562,39201328:281532 k1,5885:32583029,39201328:0 ) (1,5886:6764466,40066408:25818563,513147,122846 -k1,5885:9194041,40066408:262955 -k1,5885:12301259,40066408:262955 -k1,5885:14262251,40066408:262954 -k1,5885:15393558,40066408:262955 -k1,5885:17186779,40066408:262955 -k1,5885:18101162,40066408:262955 -k1,5885:20293496,40066408:262954 -k1,5885:20912311,40066408:262955 -k1,5885:23069256,40066408:262955 -k1,5885:25342200,40066408:262955 -k1,5885:26193668,40066408:262955 -(1,5885:26193668,40066408:0,452978,122846 -r1,5910:27607069,40066408:1413401,575824,122846 -k1,5885:26193668,40066408:-1413401 -) -(1,5885:26193668,40066408:1413401,452978,122846 -k1,5885:26193668,40066408:3277 -h1,5885:27603792,40066408:0,411205,112570 -) -k1,5885:27870023,40066408:262954 -k1,5885:29237260,40066408:262955 -k1,5885:30890889,40066408:262955 +k1,5885:9580001,40066408:195406 +k1,5885:11959722,40066408:195406 +k1,5885:14999391,40066408:195406 +k1,5885:16892835,40066408:195406 +k1,5885:17956593,40066408:195406 +k1,5885:19682265,40066408:195406 +k1,5885:20529098,40066408:195405 +k1,5885:22653884,40066408:195406 +k1,5885:23205150,40066408:195406 +k1,5885:25294546,40066408:195406 +k1,5885:27499941,40066408:195406 +k1,5885:28283860,40066408:195406 +(1,5885:28283860,40066408:0,452978,122846 +r1,5910:29697261,40066408:1413401,575824,122846 +k1,5885:28283860,40066408:-1413401 +) +(1,5885:28283860,40066408:1413401,452978,122846 +k1,5885:28283860,40066408:3277 +h1,5885:29693984,40066408:0,411205,112570 +) +k1,5885:29892667,40066408:195406 +k1,5885:31192355,40066408:195406 k1,5885:32583029,40066408:0 ) (1,5886:6764466,40931488:25818563,513147,134348 -k1,5885:9202536,40931488:235405 -k1,5885:10065777,40931488:235406 -k1,5885:11504423,40931488:235405 -k1,5885:13106909,40931488:235405 -k1,5885:15669498,40931488:235406 -k1,5885:16564195,40931488:235405 -k1,5885:19227054,40931488:235405 -k1,5885:19818320,40931488:235406 -k1,5885:22031602,40931488:235405 -k1,5885:22953169,40931488:235405 -k1,5885:26434573,40931488:235406 -k1,5885:27538330,40931488:235405 -k1,5885:29210940,40931488:235405 -k1,5885:29802206,40931488:235406 -k1,5885:31931601,40931488:235405 -k1,5885:32583029,40931488:0 +k1,5885:8611053,40931488:154447 +k1,5885:10968164,40931488:154446 +k1,5885:11750446,40931488:154447 +k1,5885:13108133,40931488:154446 +k1,5885:14803331,40931488:154447 +k1,5885:17284960,40931488:154446 +k1,5885:18098699,40931488:154447 +k1,5885:20680599,40931488:154446 +k1,5885:21190906,40931488:154447 +k1,5885:23323229,40931488:154446 +k1,5885:24163838,40931488:154447 +k1,5885:27564282,40931488:154446 +k1,5885:28587081,40931488:154447 +k1,5885:30178732,40931488:154446 +k1,5885:30689039,40931488:154447 +k1,5886:32583029,40931488:0 ) (1,5886:6764466,41796568:25818563,513147,134348 -k1,5885:8865317,41796568:171471 -k1,5885:9668555,41796568:171471 -(1,5885:9668555,41796568:0,414482,115847 -r1,5910:10026821,41796568:358266,530329,115847 -k1,5885:9668555,41796568:-358266 -) -(1,5885:9668555,41796568:358266,414482,115847 -k1,5885:9668555,41796568:3277 -h1,5885:10023544,41796568:0,411205,112570 -) -k1,5885:10198292,41796568:171471 -k1,5885:10901259,41796568:171470 -k1,5885:12091815,41796568:171471 -k1,5885:14749067,41796568:171471 -k1,5885:15579830,41796568:171471 -k1,5885:17717381,41796568:171471 -k1,5885:19080297,41796568:171471 -(1,5885:19080297,41796568:0,452978,115847 -r1,5910:19438563,41796568:358266,568825,115847 -k1,5885:19080297,41796568:-358266 -) -(1,5885:19080297,41796568:358266,452978,115847 -k1,5885:19080297,41796568:3277 -h1,5885:19435286,41796568:0,411205,112570 -) -k1,5885:19610034,41796568:171471 -k1,5885:20800590,41796568:171471 -k1,5885:23457841,41796568:171470 -k1,5885:24288604,41796568:171471 -k1,5885:27989844,41796568:171471 -k1,5885:30508159,41796568:171471 +k1,5885:7623366,41796568:207472 +k1,5885:9760218,41796568:207472 +k1,5885:10599457,41796568:207472 +(1,5885:10599457,41796568:0,414482,115847 +r1,5910:10957723,41796568:358266,530329,115847 +k1,5885:10599457,41796568:-358266 +) +(1,5885:10599457,41796568:358266,414482,115847 +k1,5885:10599457,41796568:3277 +h1,5885:10954446,41796568:0,411205,112570 +) +k1,5885:11165195,41796568:207472 +k1,5885:11904164,41796568:207472 +k1,5885:13130721,41796568:207472 +k1,5885:15823974,41796568:207472 +k1,5885:16690738,41796568:207472 +k1,5885:18864290,41796568:207472 +(1,5885:18864290,41796568:0,452978,115847 +r1,5910:19222556,41796568:358266,568825,115847 +k1,5885:18864290,41796568:-358266 +) +(1,5885:18864290,41796568:358266,452978,115847 +k1,5885:18864290,41796568:3277 +h1,5885:19219279,41796568:0,411205,112570 +) +k1,5885:19430028,41796568:207472 +k1,5885:20656585,41796568:207472 +k1,5885:23349838,41796568:207472 +k1,5885:24216602,41796568:207472 +k1,5885:27953843,41796568:207472 +k1,5885:30508159,41796568:207472 k1,5885:32583029,41796568:0 ) (1,5886:6764466,42661648:25818563,513147,134348 -k1,5885:10549624,42661648:187887 -k1,5885:11353548,42661648:187886 -k1,5885:11956267,42661648:187876 -k1,5885:17177318,42661648:187886 -k1,5885:18556650,42661648:187887 -(1,5885:18556650,42661648:0,452978,122846 -r1,5910:20673475,42661648:2116825,575824,122846 -k1,5885:18556650,42661648:-2116825 -) -(1,5885:18556650,42661648:2116825,452978,122846 -k1,5885:18556650,42661648:3277 -h1,5885:20670198,42661648:0,411205,112570 -) -k1,5885:20861362,42661648:187887 -k1,5885:22068333,42661648:187886 -k1,5885:24269486,42661648:187887 -k1,5885:25116664,42661648:187886 -k1,5885:26323636,42661648:187887 -k1,5885:28405513,42661648:187887 -k1,5885:29244827,42661648:187886 -k1,5885:30180480,42661648:187887 +k1,5885:10536265,42661648:174528 +k1,5885:11326832,42661648:174529 +k1,5885:11916179,42661648:174504 +k1,5885:17297542,42661648:174528 +k1,5885:18663516,42661648:174529 +(1,5885:18663516,42661648:0,452978,122846 +r1,5910:20780341,42661648:2116825,575824,122846 +k1,5885:18663516,42661648:-2116825 +) +(1,5885:18663516,42661648:2116825,452978,122846 +k1,5885:18663516,42661648:3277 +h1,5885:20777064,42661648:0,411205,112570 +) +k1,5885:20954869,42661648:174528 +k1,5885:22148482,42661648:174528 +k1,5885:24336277,42661648:174529 +k1,5885:25170097,42661648:174528 +k1,5885:26363711,42661648:174529 +k1,5885:28432229,42661648:174528 +k1,5885:29258186,42661648:174529 +k1,5885:30180480,42661648:174528 k1,5886:32583029,42661648:0 k1,5886:32583029,42661648:0 ) @@ -121721,10 +121883,8 @@ g1,5910:-473656,-710413 ] ) ] -!29902 -}94 -Input:901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!29910 +}95 Input:903:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:904:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:905:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -121737,8 +121897,10 @@ Input:911:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:912:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:913:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:914:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:915:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:916:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1285 -{95 +{96 [1,6004:4262630,47279633:28320399,43253760,0 (1,6004:4262630,4025873:0,0,0 [1,6004:-473656,4025873:0,0,0 @@ -122002,20 +122164,20 @@ k1,5912:31193666,9916083:227758 k1,5912:32583029,9916083:0 ) (1,5913:6630773,10781163:25952256,513147,126483 -k1,5912:9441752,10781163:256386 -k1,5912:12524706,10781163:256386 -k1,5912:13397130,10781163:256386 -k1,5912:15255217,10781163:256387 -k1,5912:17208985,10781163:256386 -k1,5912:18484456,10781163:256386 -k1,5912:20718719,10781163:256386 -k1,5912:22931355,10781163:256386 -k1,5912:24662956,10781163:256386 -k1,5912:26429292,10781163:256386 -k1,5912:28097980,10781163:256387 -k1,5912:29921987,10781163:256386 -k1,5912:30534233,10781163:256386 -k1,5912:31773659,10781163:256386 +k1,5912:9416942,10781163:231576 +k1,5912:12648756,10781163:231576 +k1,5912:13496370,10781163:231576 +k1,5912:15329646,10781163:231576 +k1,5912:17432275,10781163:231576 +k1,5912:18682936,10781163:231576 +k1,5912:20892389,10781163:231576 +k1,5912:23080216,10781163:231577 +k1,5912:24787007,10781163:231576 +k1,5912:26528533,10781163:231576 +k1,5912:28172410,10781163:231576 +k1,5912:29971607,10781163:231576 +k1,5912:30559043,10781163:231576 +k1,5912:31773659,10781163:231576 k1,5912:32583029,10781163:0 ) (1,5913:6630773,11646243:25952256,505283,134348 @@ -122104,35 +122266,37 @@ g1,5924:32583029,14751171 h1,5924:6630773,14947779:0,0,0 (1,5928:6630773,15812859:25952256,513147,134348 h1,5927:6630773,15812859:983040,0,0 -k1,5927:9107097,15812859:296597 -k1,5927:12133269,15812859:296597 -k1,5927:13089159,15812859:296598 -k1,5927:15178166,15812859:296597 -k1,5927:16006260,15812859:296597 -k1,5927:19913235,15812859:296597 -k1,5927:20822595,15812859:296598 -k1,5927:22138277,15812859:296597 -k1,5927:23860282,15812859:296597 -k1,5927:24512739,15812859:296597 -k1,5927:26703326,15812859:296597 -k1,5927:27531421,15812859:296598 -k1,5927:30351809,15812859:296597 -k1,5927:31839851,15812859:296597 -k1,5927:32583029,15812859:0 +k1,5927:9039395,15812859:228895 +k1,5927:11997866,15812859:228896 +k1,5927:12886053,15812859:228895 +k1,5927:14907359,15812859:228896 +k1,5927:15667751,15812859:228895 +k1,5927:19507024,15812859:228895 +k1,5927:20348682,15812859:228896 +k1,5927:21596662,15812859:228895 +k1,5927:23250966,15812859:228896 +k1,5927:23835721,15812859:228895 +k1,5927:25958606,15812859:228895 +k1,5927:26718999,15812859:228896 +k1,5927:29298015,15812859:228895 +k1,5927:30718356,15812859:228896 +k1,5927:31708779,15812859:228895 +k1,5928:32583029,15812859:0 ) (1,5928:6630773,16677939:25952256,513147,134348 -k1,5927:9164887,16677939:268534 -k1,5927:9964917,16677939:268533 -k1,5927:14259983,16677939:268534 -k1,5927:15909360,16677939:268533 -k1,5927:18443474,16677939:268534 -k1,5927:21441582,16677939:268533 -k1,5927:22369408,16677939:268534 -k1,5927:24430351,16677939:268533 -k1,5927:25230382,16677939:268534 -k1,5927:28803896,16677939:268533 -k1,5927:30138701,16677939:268534 -k1,5927:31426319,16677939:268533 +k1,5927:8399993,16677939:271722 +k1,5927:9129812,16677939:271722 +k1,5927:9933031,16677939:271722 +k1,5927:14231285,16677939:271722 +k1,5927:15883851,16677939:271722 +k1,5927:18421153,16677939:271722 +k1,5927:21422451,16677939:271723 +k1,5927:22353465,16677939:271722 +k1,5927:24417597,16677939:271722 +k1,5927:25220816,16677939:271722 +k1,5927:28797519,16677939:271722 +k1,5927:30135512,16677939:271722 +k1,5927:31426319,16677939:271722 k1,5927:32583029,16677939:0 ) (1,5928:6630773,17543019:25952256,513147,134348 @@ -122583,20 +122747,20 @@ g1,5966:32583029,34371702 h1,5966:6630773,34568310:0,0,0 (1,5970:6630773,35433390:25952256,505283,126483 h1,5969:6630773,35433390:983040,0,0 -k1,5969:8455904,35433390:214256 -k1,5969:9689245,35433390:214256 -k1,5969:12895220,35433390:214256 -k1,5969:14964799,35433390:214255 -k1,5969:16047407,35433390:214256 -k1,5969:18466950,35433390:214256 -k1,5969:19037066,35433390:214256 -k1,5969:21871451,35433390:214256 -k1,5969:24063584,35433390:214256 -k1,5969:24960725,35433390:214256 -k1,5969:25530840,35433390:214255 -k1,5969:28719775,35433390:214256 -k1,5969:30911908,35433390:214256 -k1,5969:31812326,35433390:214256 +k1,5969:8443499,35433390:201851 +k1,5969:9664435,35433390:201851 +k1,5969:12858004,35433390:201850 +k1,5969:15088850,35433390:201851 +k1,5969:16159053,35433390:201851 +k1,5969:18566191,35433390:201851 +k1,5969:19123902,35433390:201851 +k1,5969:21945881,35433390:201850 +k1,5969:24125609,35433390:201851 +k1,5969:25010345,35433390:201851 +k1,5969:25568056,35433390:201851 +k1,5969:28744585,35433390:201850 +k1,5969:30924313,35433390:201851 +k1,5969:31812326,35433390:201851 k1,5969:32583029,35433390:0 ) (1,5970:6630773,36298470:25952256,513147,134348 @@ -122870,18 +123034,18 @@ g1,6004:-473656,-710413 ] ) ] -!30948 -}95 -Input:915:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:916:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!31013 +}96 Input:917:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:918:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:919:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:920:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:921:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:922:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:923:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:924:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !739 -{96 +{97 [1,6131:4262630,47279633:28320399,43253760,0 (1,6131:4262630,4025873:0,0,0 [1,6131:-473656,4025873:0,0,0 @@ -123923,9 +124087,7 @@ g1,6131:-473656,-710413 ) ] !27459 -}96 -Input:923:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:924:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}97 Input:925:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:926:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:927:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -123940,8 +124102,10 @@ Input:935:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:936:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:937:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:938:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:939:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:940:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1467 -{97 +{98 [1,6251:4262630,47279633:28320399,43253760,0 (1,6251:4262630,4025873:0,0,0 [1,6251:-473656,4025873:0,0,0 @@ -124772,27 +124936,27 @@ k1,6166:31700259,33679511:259364 k1,6167:32583029,33679511:0 ) (1,6167:6764466,34544591:25818563,513147,126483 -k1,6166:9253505,34544591:277199 -k1,6166:12522423,34544591:277199 -k1,6166:13667974,34544591:277199 -k1,6166:15037659,34544591:277200 -(1,6166:15037659,34544591:0,452978,115847 -r1,6251:17857908,34544591:2820249,568825,115847 -k1,6166:15037659,34544591:-2820249 -) -(1,6166:15037659,34544591:2820249,452978,115847 -k1,6166:15037659,34544591:3277 -h1,6166:17854631,34544591:0,411205,112570 -) -k1,6166:18135107,34544591:277199 -k1,6166:19063734,34544591:277199 -k1,6166:21774940,34544591:277199 -k1,6166:23071224,34544591:277199 -k1,6166:25416739,34544591:277199 -k1,6166:26353231,34544591:277200 -k1,6166:27649515,34544591:277199 -k1,6166:29719124,34544591:277199 -k1,6166:31563944,34544591:277199 +k1,6166:9240146,34544591:263840 +k1,6166:12669375,34544591:263840 +k1,6166:13801567,34544591:263840 +k1,6166:15157892,34544591:263840 +(1,6166:15157892,34544591:0,452978,115847 +r1,6251:17978141,34544591:2820249,568825,115847 +k1,6166:15157892,34544591:-2820249 +) +(1,6166:15157892,34544591:2820249,452978,115847 +k1,6166:15157892,34544591:3277 +h1,6166:17974864,34544591:0,411205,112570 +) +k1,6166:18241981,34544591:263840 +k1,6166:19157249,34544591:263840 +k1,6166:21855095,34544591:263839 +k1,6166:23138020,34544591:263840 +k1,6166:25470176,34544591:263840 +k1,6166:26393308,34544591:263840 +k1,6166:27676233,34544591:263840 +k1,6166:29732483,34544591:263840 +k1,6166:31563944,34544591:263840 k1,6166:32583029,34544591:0 ) (1,6167:6764466,35409671:25818563,513147,134348 @@ -124969,12 +125133,12 @@ g1,6251:-473656,-710413 ) ] !27776 -}97 -Input:939:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:940:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}98 Input:941:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:942:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:943:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !284 -{98 +{99 [1,6292:4262630,47279633:28320399,43253760,0 (1,6292:4262630,4025873:0,0,0 [1,6292:-473656,4025873:0,0,0 @@ -125938,10 +126102,10 @@ g1,6292:-473656,-710413 ) ] !25995 -}98 -Input:942:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}99 +Input:944:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !102 -{99 +{100 [1,6317:4262630,47279633:28320399,43253760,0 (1,6317:4262630,4025873:0,0,0 [1,6317:-473656,4025873:0,0,0 @@ -126350,10 +126514,10 @@ g1,6317:-473656,-710413 ] ) ] -!11009 -}99 -!11 -{100 +!11010 +}100 +!12 +{101 [1,6338:4262630,47279633:28320399,43253760,11795 (1,6338:4262630,4025873:0,0,0 [1,6338:-473656,4025873:0,0,0 @@ -126632,18 +126796,19 @@ k1,6325:32583029,27741336:15515516 g1,6325:32583029,27741336 ) (1,6328:6630773,28999632:25952256,513147,134348 -k1,6327:9567987,28999632:317740 -k1,6327:13868351,28999632:317741 -k1,6327:15377536,28999632:317740 -k1,6327:18042776,28999632:317740 -k1,6327:18892014,28999632:317741 -k1,6327:20366464,28999632:317740 -k1,6327:21343496,28999632:317740 -k1,6327:22680322,28999632:317741 -k1,6327:24429368,28999632:317740 -k1,6327:25398536,28999632:317740 -k1,6327:28268904,28999632:317741 -k1,6327:29976007,28999632:317740 +k1,6327:8412395,28999632:309683 +k1,6327:9656621,28999632:309683 +k1,6327:13948926,28999632:309682 +k1,6327:15450054,28999632:309683 +k1,6327:18107237,28999632:309683 +k1,6327:18948417,28999632:309683 +k1,6327:20414809,28999632:309682 +k1,6327:21383784,28999632:309683 +k1,6327:22712552,28999632:309683 +k1,6327:24453541,28999632:309683 +k1,6327:25414651,28999632:309682 +k1,6327:28276961,28999632:309683 +k1,6327:29976007,28999632:309683 k1,6327:32583029,28999632:0 ) (1,6328:6630773,29864712:25952256,513147,134348 @@ -126837,21 +127002,26 @@ g1,6330:32583028,40245672 ) (1,6332:6630773,41110752:25952256,513147,134348 h1,6331:6630773,41110752:983040,0,0 -g1,6331:8630931,41110752 -g1,6331:9446198,41110752 -g1,6331:10664512,41110752 -g1,6331:13618219,41110752 -g1,6331:16408742,41110752 -g1,6331:16820963,41110752 -g1,6331:18112677,41110752 -g1,6331:21258405,41110752 -g1,6331:22109062,41110752 -g1,6331:24977572,41110752 -g1,6331:26195886,41110752 -g1,6331:29326540,41110752 -g1,6331:30185061,41110752 -k1,6332:32583029,41110752:55712 -g1,6332:32583029,41110752 +k1,6331:8704575,41110752:261732 +k1,6331:11635587,41110752:261731 +k1,6331:12916404,41110752:261732 +k1,6331:16109561,41110752:261732 +k1,6331:17038448,41110752:261731 +k1,6331:17714960,41110752:261669 +k1,6331:20266520,41110752:261732 +k1,6331:20741181,41110752:261669 +k1,6331:22095398,41110752:261732 +k1,6331:25303628,41110752:261731 +k1,6331:27767370,41110752:261732 +k1,6331:28680530,41110752:261732 +k1,6331:30686174,41110752:261731 +k1,6331:31563944,41110752:261732 +k1,6331:32583029,41110752:0 +) +(1,6332:6630773,41975832:25952256,505283,126483 +g1,6331:9584480,41975832 +k1,6332:32583028,41975832:20528496 +g1,6332:32583028,41975832 ) ] (1,6338:32583029,45706769:0,0,0 @@ -126880,13 +127050,13 @@ g1,6338:-473656,-710413 ] ) ] -!14855 -}100 -Input:943:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:944:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!15118 +}101 Input:945:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !285 -{101 +{102 [1,6355:4262630,47279633:28320399,43253760,0 (1,6355:4262630,4025873:0,0,0 [1,6355:-473656,4025873:0,0,0 @@ -127036,20 +127206,20 @@ k1,6335:32583029,7885949:9631431 g1,6335:32583029,7885949 ) (1,6338:6630773,9144245:25952256,513147,134348 -k1,6337:7999913,9144245:194080 -k1,6337:9583357,9144245:194081 -k1,6337:10645789,9144245:194080 -k1,6337:12290836,9144245:194080 -k1,6337:15993059,9144245:194081 -k1,6337:17378584,9144245:194080 -k1,6337:19943101,9144245:194080 -k1,6337:20753220,9144245:194081 -k1,6337:21535813,9144245:194080 -k1,6337:22345932,9144245:194081 -k1,6337:24141712,9144245:194080 -k1,6337:26033174,9144245:194080 -k1,6337:29061687,9144245:194081 -k1,6337:30823388,9144245:194080 +k1,6337:7975103,9144245:169270 +k1,6337:9533736,9144245:169270 +k1,6337:10571359,9144245:169271 +k1,6337:12191596,9144245:169270 +k1,6337:16042679,9144245:169270 +k1,6337:17403394,9144245:169270 +k1,6337:19943101,9144245:169270 +k1,6337:20728410,9144245:169271 +k1,6337:21486193,9144245:169270 +k1,6337:22271501,9144245:169270 +k1,6337:24042471,9144245:169270 +k1,6337:26082795,9144245:169271 +k1,6337:29086497,9144245:169270 +k1,6337:30823388,9144245:169270 k1,6338:32583029,9144245:0 ) (1,6338:6630773,10009325:25952256,513147,126483 @@ -127218,19 +127388,19 @@ k1,6339:31193666,18660125:265936 k1,6339:32583029,18660125:0 ) (1,6340:6630773,19525205:25952256,513147,134348 -k1,6339:8253545,19525205:184257 -k1,6339:9065637,19525205:184257 -k1,6339:10851594,19525205:184257 -k1,6339:12733233,19525205:184257 -k1,6339:13785842,19525205:184257 -k1,6339:14785367,19525205:184257 -k1,6339:16035894,19525205:184256 -k1,6339:17750417,19525205:184257 -k1,6339:19137915,19525205:184257 -k1,6339:21105407,19525205:184257 -k1,6339:24437358,19525205:184257 -k1,6339:25346443,19525205:184257 -k1,6339:29165982,19525205:184257 +k1,6339:8240186,19525205:170898 +k1,6339:9038918,19525205:170897 +k1,6339:10811516,19525205:170898 +k1,6339:12853466,19525205:170897 +k1,6339:13892716,19525205:170898 +k1,6339:14878882,19525205:170898 +k1,6339:16116050,19525205:170897 +k1,6339:17817214,19525205:170898 +k1,6339:19191353,19525205:170898 +k1,6339:21145485,19525205:170897 +k1,6339:24464077,19525205:170898 +k1,6339:25359802,19525205:170897 +k1,6339:29165982,19525205:170898 k1,6339:32583029,19525205:0 ) (1,6340:6630773,20390285:25952256,513147,126483 @@ -127560,21 +127730,20 @@ k1,6350:6764466,41126251:-997056 ) (1,6350:6764466,41126251:997056,701514,196608 ) -k1,6350:7950482,41126251:188960 -k1,6350:8278162,41126251:327680 -k1,6350:9094957,41126251:188960 -k1,6350:9698750,41126251:188950 -k1,6350:11211538,41126251:188961 -k1,6350:12504780,41126251:188960 -k1,6350:14168955,41126251:188960 -k1,6350:15044077,41126251:188960 -k1,6350:18186746,41126251:188961 -k1,6350:19441977,41126251:188960 -k1,6350:21006538,41126251:188960 -k1,6350:23485326,41126251:188960 -k1,6350:25934624,41126251:188961 -k1,6350:27512947,41126251:188960 -k1,6350:28511277,41126251:188960 +k1,6350:8013316,41126251:251794 +k1,6350:8340996,41126251:327680 +k1,6350:9007580,41126251:251741 +k1,6350:10583201,41126251:251794 +k1,6350:11939277,41126251:251794 +k1,6350:13666286,41126251:251794 +k1,6350:14604242,41126251:251794 +k1,6350:17809744,41126251:251794 +k1,6350:19127809,41126251:251794 +k1,6350:20755203,41126251:251793 +k1,6350:23296825,41126251:251794 +k1,6350:25808956,41126251:251794 +k1,6350:27450113,41126251:251794 +k1,6350:28511277,41126251:251794 k1,6350:32583029,41126251:0 ) (1,6351:6764466,41991331:25818563,513147,134348 @@ -127637,18 +127806,18 @@ k1,6354:29953069,44164137:228611 k1,6354:32583029,44164137:0 ) (1,6355:6764466,45029217:25818563,513147,126483 -k1,6354:7672304,45029217:256410 -k1,6354:9610367,45029217:256409 -k1,6354:10814428,45029217:256410 -k1,6354:13905924,45029217:256409 -k1,6354:15181419,45029217:256410 -k1,6354:17000862,45029217:256409 -k1,6354:21095060,45029217:256410 -k1,6354:22299120,45029217:256409 -k1,6354:25960125,45029217:256410 -k1,6354:27407979,45029217:256409 -k1,6354:29837563,45029217:256410 -k1,6354:31661593,45029217:256409 +k1,6354:7604856,45029217:188962 +k1,6354:9475472,45029217:188962 +k1,6354:10612085,45029217:188962 +k1,6354:13636134,45029217:188962 +k1,6354:14844181,45029217:188962 +k1,6354:16596177,45029217:188962 +k1,6354:20622927,45029217:188962 +k1,6354:21759540,45029217:188962 +k1,6354:25526768,45029217:188962 +k1,6354:26907175,45029217:188962 +k1,6354:29269311,45029217:188962 +k1,6354:31025894,45029217:188962 k1,6355:32583029,45029217:0 ) ] @@ -127675,10 +127844,8 @@ g1,6355:-473656,-710413 ] ) ] -!22940 -}101 -Input:946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!22908 +}102 Input:948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -127694,8 +127861,10 @@ Input:959:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:960:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1559 -{102 +{103 [1,6462:4262630,47279633:28320399,43253760,0 (1,6462:4262630,4025873:0,0,0 [1,6462:-473656,4025873:0,0,0 @@ -127829,21 +127998,22 @@ g1,6355:6567858,11690992 g1,6355:6764466,11690992 [1,6355:6764466,11690992:25818563,5830111,0 (1,6355:6764466,6366164:25818563,505283,134348 -k1,6354:9598333,6366164:244540 -k1,6354:12523295,6366164:244539 -k1,6354:13383873,6366164:244540 -k1,6354:13984273,6366164:244540 -k1,6354:16101831,6366164:244539 -k1,6354:16761168,6366164:244494 -k1,6354:18965234,6366164:244540 -k1,6354:20494280,6366164:244540 -k1,6354:21843101,6366164:244539 -k1,6354:24072727,6366164:244540 -k1,6354:26609060,6366164:244539 -k1,6354:27965091,6366164:244540 -k1,6354:28895793,6366164:244540 -k1,6354:29496192,6366164:244539 -k1,6354:31202185,6366164:244540 +k1,6354:8940344,6366164:222250 +k1,6354:11843018,6366164:222251 +k1,6354:12681306,6366164:222250 +k1,6354:13259416,6366164:222250 +k1,6354:15354686,6366164:222251 +k1,6354:15991756,6366164:222227 +k1,6354:18173532,6366164:222250 +k1,6354:19680288,6366164:222250 +k1,6354:21006821,6366164:222251 +k1,6354:21976837,6366164:222250 +k1,6354:24184173,6366164:222250 +k1,6354:26698218,6366164:222251 +k1,6354:28031959,6366164:222250 +k1,6354:28940371,6366164:222250 +k1,6354:29518482,6366164:222251 +k1,6354:31202185,6366164:222250 k1,6354:32583029,6366164:0 ) (1,6355:6764466,7231244:25818563,513147,134348 @@ -127876,17 +128046,16 @@ k1,6354:31966991,8096324:261020 k1,6354:32583029,8096324:0 ) (1,6355:6764466,8961404:25818563,513147,126483 -k1,6354:7381695,8961404:261369 -k1,6354:10343148,8961404:261370 -k1,6354:13409458,8961404:261369 -k1,6354:14436944,8961404:261370 -k1,6354:18360465,8961404:261369 -k1,6354:19906341,8961404:261370 -k1,6354:21159270,8961404:261369 -k1,6354:25280055,8961404:261370 -k1,6354:27472770,8961404:261369 -k1,6354:28421613,8961404:261370 -k1,6354:31708779,8961404:261369 +k1,6354:7359664,8961404:239338 +k1,6354:10299084,8961404:239337 +k1,6354:14591168,8961404:239338 +k1,6354:18492657,8961404:239337 +k1,6354:20016501,8961404:239338 +k1,6354:21247398,8961404:239337 +k1,6354:25346151,8961404:239338 +k1,6354:27516834,8961404:239337 +k1,6354:28443645,8961404:239338 +k1,6354:31708779,8961404:239337 k1,6355:32583029,8961404:0 ) (1,6355:6764466,9826484:25818563,513147,134348 @@ -128964,31 +129133,31 @@ k1,6459:32583029,43583393:8238397 g1,6459:32583029,43583393 ) (1,6462:6630773,44841689:25952256,505283,134348 -k1,6461:7511358,44841689:252750 -k1,6461:10042795,44841689:252750 -h1,6461:11411842,44841689:0,0,0 -k1,6461:11664592,44841689:252750 -k1,6461:12726712,44841689:252750 -k1,6461:14477615,44841689:252750 -h1,6461:15274533,44841689:0,0,0 -k1,6461:15527283,44841689:252750 -k1,6461:16648385,44841689:252750 -k1,6461:18108307,44841689:252749 -k1,6461:19645563,44841689:252750 -k1,6461:20917398,44841689:252750 -k1,6461:24384689,44841689:252750 -k1,6461:27384053,44841689:252750 -(1,6461:27384053,44841689:0,452978,115847 -r1,6462:28445743,44841689:1061690,568825,115847 -k1,6461:27384053,44841689:-1061690 -) -(1,6461:27384053,44841689:1061690,452978,115847 -g1,6461:28090754,44841689 -h1,6461:28442466,44841689:0,411205,112570 -) -k1,6461:28698493,44841689:252750 -k1,6461:31322991,44841689:252750 -k1,6461:32227169,44841689:252750 +k1,6461:7499780,44841689:241172 +k1,6461:10019639,44841689:241172 +h1,6461:11388686,44841689:0,0,0 +k1,6461:11629858,44841689:241172 +k1,6461:12680400,44841689:241172 +k1,6461:14419725,44841689:241172 +h1,6461:15216643,44841689:0,0,0 +k1,6461:15631485,44841689:241172 +k1,6461:16741009,44841689:241172 +k1,6461:18189353,44841689:241171 +k1,6461:19715031,44841689:241172 +k1,6461:20975288,44841689:241172 +k1,6461:24431001,44841689:241172 +k1,6461:27418787,44841689:241172 +(1,6461:27418787,44841689:0,452978,115847 +r1,6462:28480477,44841689:1061690,568825,115847 +k1,6461:27418787,44841689:-1061690 +) +(1,6461:27418787,44841689:1061690,452978,115847 +g1,6461:28125488,44841689 +h1,6461:28477200,44841689:0,411205,112570 +) +k1,6461:28721649,44841689:241172 +k1,6461:31334569,44841689:241172 +k1,6461:32227169,44841689:241172 k1,6461:32583029,44841689:0 ) (1,6462:6630773,45706769:25952256,513147,134348 @@ -129029,9 +129198,7 @@ g1,6462:-473656,-710413 ) ] !35156 -}102 -Input:963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}103 Input:965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:966:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:967:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -129054,8 +129221,10 @@ Input:983:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleD Input:984:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:985:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:986:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:987:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:988:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2196 -{103 +{104 [1,6597:4262630,47279633:28320399,43253760,0 (1,6597:4262630,4025873:0,0,0 [1,6597:-473656,4025873:0,0,0 @@ -129969,29 +130138,29 @@ k1,6542:31787422,41253005:171158 k1,6543:32583029,41253005:0 ) (1,6543:6764466,42118085:25818563,513147,126483 -k1,6542:8655296,42118085:201967 -k1,6542:10232863,42118085:201966 -k1,6542:11826815,42118085:201967 -k1,6542:14652187,42118085:201966 -k1,6542:16922470,42118085:201967 -k1,6542:17933806,42118085:201966 -k1,6542:18924171,42118085:201967 -k1,6542:20309717,42118085:201966 -k1,6542:21990832,42118085:201967 -(1,6542:21990832,42118085:0,452978,115847 -r1,6597:23755946,42118085:1765114,568825,115847 -k1,6542:21990832,42118085:-1765114 -) -(1,6542:21990832,42118085:1765114,452978,115847 -g1,6542:23049245,42118085 -h1,6542:23752669,42118085:0,411205,112570 -) -k1,6542:23957912,42118085:201966 -k1,6542:25178964,42118085:201967 -k1,6542:27118945,42118085:201966 -k1,6542:27980204,42118085:201967 -k1,6542:29201255,42118085:201966 -k1,6542:31914562,42118085:201967 +k1,6542:8643718,42118085:190389 +k1,6542:10209707,42118085:190388 +k1,6542:11792081,42118085:190389 +k1,6542:14605875,42118085:190388 +k1,6542:16864580,42118085:190389 +k1,6542:17864338,42118085:190388 +k1,6542:18843125,42118085:190389 +k1,6542:20217093,42118085:190388 +k1,6542:21886630,42118085:190389 +(1,6542:21886630,42118085:0,452978,115847 +r1,6597:23651744,42118085:1765114,568825,115847 +k1,6542:21886630,42118085:-1765114 +) +(1,6542:21886630,42118085:1765114,452978,115847 +g1,6542:22945043,42118085 +h1,6542:23648467,42118085:0,411205,112570 +) +k1,6542:24015802,42118085:190388 +k1,6542:25225276,42118085:190389 +k1,6542:27153679,42118085:190388 +k1,6542:28003360,42118085:190389 +k1,6542:29212833,42118085:190388 +k1,6542:31914562,42118085:190389 k1,6542:32583029,42118085:0 ) (1,6543:6764466,42983165:25818563,505283,134348 @@ -130059,12 +130228,12 @@ g1,6597:-473656,-710413 ) ] !27493 -}103 -Input:987:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:988:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}104 Input:989:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:990:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:991:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !285 -{104 +{105 [1,6644:4262630,47279633:28320399,43253760,0 (1,6644:4262630,4025873:0,0,0 [1,6644:-473656,4025873:0,0,0 @@ -131001,21 +131170,21 @@ k1,6641:30470149,42959576:218194 k1,6642:32583029,42959576:0 ) (1,6642:6630773,43824656:25952256,513147,134348 -k1,6641:8631325,43824656:187826 -k1,6641:10010596,43824656:187826 -k1,6641:11522249,43824656:187826 -k1,6641:12814358,43824656:187827 -k1,6641:13749950,43824656:187826 -k1,6641:16117503,43824656:187826 -k1,6641:17201206,43824656:187826 -k1,6641:18136798,43824656:187826 -k1,6641:18983916,43824656:187826 -k1,6641:21185008,43824656:187826 -k1,6641:22966670,43824656:187826 -k1,6641:24351184,43824656:187827 -k1,6641:27200427,43824656:187826 -k1,6641:29256684,43824656:187826 -k1,6641:31490544,43824656:187826 +k1,6641:8619747,43824656:176248 +k1,6641:9987440,43824656:176248 +k1,6641:11487515,43824656:176248 +k1,6641:12768045,43824656:176248 +k1,6641:13692059,43824656:176248 +k1,6641:16048034,43824656:176248 +k1,6641:17293830,43824656:176248 +k1,6641:18217845,43824656:176249 +k1,6641:19053385,43824656:176248 +k1,6641:21242899,43824656:176248 +k1,6641:23012983,43824656:176248 +k1,6641:24385918,43824656:176248 +k1,6641:27223583,43824656:176248 +k1,6641:29268262,43824656:176248 +k1,6641:31490544,43824656:176248 k1,6641:32583029,43824656:0 ) (1,6642:6630773,44689736:25952256,513147,126483 @@ -131051,17 +131220,17 @@ g1,6644:-473656,-710413 ] ) ] -!26730 -}104 -Input:990:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:991:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26729 +}105 Input:992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:996:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:997:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:998:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !649 -{105 +{106 [1,6727:4262630,47279633:28320399,43253760,0 (1,6727:4262630,4025873:0,0,0 [1,6727:-473656,4025873:0,0,0 @@ -131521,19 +131690,19 @@ k1,6667:31115023,20131724:243560 k1,6667:32583029,20131724:0 ) (1,6668:6764466,20996804:25818563,513147,134348 -k1,6667:8007331,20996804:223780 -k1,6667:10845342,20996804:223780 -k1,6667:11728414,20996804:223780 -k1,6667:14905903,20996804:223781 -k1,6667:16321128,20996804:223780 -k1,6667:18785584,20996804:223780 -k1,6667:20894835,20996804:223780 -k1,6667:23742021,20996804:223780 -k1,6667:24497298,20996804:223780 -k1,6667:27177368,20996804:223781 -k1,6667:28013910,20996804:223780 -k1,6667:28999218,20996804:223780 -k1,6667:31649796,20996804:223780 +k1,6667:7993972,20996804:210421 +k1,6667:10818624,20996804:210421 +k1,6667:11688337,20996804:210421 +k1,6667:15026136,20996804:210421 +k1,6667:16428002,20996804:210421 +k1,6667:18879099,20996804:210421 +k1,6667:20974990,20996804:210420 +k1,6667:23808817,20996804:210421 +k1,6667:24550735,20996804:210421 +k1,6667:27217445,20996804:210421 +k1,6667:28040628,20996804:210421 +k1,6667:29012577,20996804:210421 +k1,6667:31649796,20996804:210421 k1,6667:32583029,20996804:0 ) (1,6668:6764466,21861884:25818563,513147,126483 @@ -131642,76 +131811,75 @@ g1,6683:32583029,26606347 h1,6683:6630773,26606347:0,0,0 (1,6686:6630773,27471427:25952256,513147,126483 h1,6685:6630773,27471427:983040,0,0 -k1,6685:9641424,27471427:195224 -k1,6685:12575398,27471427:195224 -k1,6685:16175217,27471427:195224 -k1,6685:17179811,27471427:195224 -k1,6685:18698863,27471427:195225 -k1,6685:19885647,27471427:195224 -k1,6685:24729340,27471427:195224 -k1,6685:28104371,27471427:195224 -k1,6685:29491040,27471427:195224 +k1,6685:9622127,27471427:175927 +k1,6685:12536805,27471427:175928 +k1,6685:16117327,27471427:175927 +k1,6685:17102625,27471427:175928 +k1,6685:18602379,27471427:175927 +k1,6685:19769867,27471427:175928 +k1,6685:24594263,27471427:175927 +k1,6685:28123668,27471427:175928 +k1,6685:29491040,27471427:175927 k1,6685:32583029,27471427:0 ) (1,6686:6630773,28336507:25952256,513147,115847 -k1,6685:8102234,28336507:296401 -k1,6685:10052108,28336507:296401 -k1,6685:13374306,28336507:296401 -k1,6685:14356869,28336507:296401 -k1,6685:16047221,28336507:296401 -k1,6685:18651800,28336507:296401 -k1,6685:19939760,28336507:296400 -k1,6685:21923058,28336507:296401 -k1,6685:25245256,28336507:296401 -(1,6685:25245256,28336507:0,452978,115847 -r1,6727:26306945,28336507:1061689,568825,115847 -k1,6685:25245256,28336507:-1061689 -) -(1,6685:25245256,28336507:1061689,452978,115847 -k1,6685:25245256,28336507:3277 -h1,6685:26303668,28336507:0,411205,112570 -) -k1,6685:26777016,28336507:296401 -k1,6685:28021068,28336507:296401 +k1,6685:7984476,28336507:178643 +k1,6685:9816591,28336507:178642 +k1,6685:13021031,28336507:178643 +k1,6685:13885836,28336507:178643 +k1,6685:15458429,28336507:178642 +k1,6685:17945250,28336507:178643 +k1,6685:19115453,28336507:178643 +k1,6685:20980993,28336507:178643 +(1,6685:20980993,28336507:0,452978,115847 +r1,6727:22042682,28336507:1061689,568825,115847 +k1,6685:20980993,28336507:-1061689 +) +(1,6685:20980993,28336507:1061689,452978,115847 +k1,6685:20980993,28336507:3277 +h1,6685:22039405,28336507:0,411205,112570 +) +k1,6685:22394994,28336507:178642 +k1,6685:23225065,28336507:178643 +k1,6685:27388952,28336507:178643 +k1,6685:28759039,28336507:178642 +(1,6685:28759039,28336507:0,452978,115847 +r1,6727:31579288,28336507:2820249,568825,115847 +k1,6685:28759039,28336507:-2820249 +) +(1,6685:28759039,28336507:2820249,452978,115847 +k1,6685:28759039,28336507:3277 +h1,6685:31576011,28336507:0,411205,112570 +) +k1,6685:31931601,28336507:178643 k1,6685:32583029,28336507:0 ) (1,6686:6630773,29201587:25952256,505283,126483 -k1,6685:8066851,29201587:244633 -(1,6685:8066851,29201587:0,452978,115847 -r1,6727:10887100,29201587:2820249,568825,115847 -k1,6685:8066851,29201587:-2820249 -) -(1,6685:8066851,29201587:2820249,452978,115847 -k1,6685:8066851,29201587:3277 -h1,6685:10883823,29201587:0,411205,112570 -) -k1,6685:11305402,29201587:244632 -k1,6685:12201463,29201587:244633 -k1,6685:14826363,29201587:244632 -k1,6685:16262441,29201587:244633 -k1,6685:18519685,29201587:244633 -k1,6685:20248052,29201587:244632 -k1,6685:21596967,29201587:244633 -k1,6685:22589366,29201587:244633 -k1,6685:25966619,29201587:244632 -k1,6685:27586853,29201587:244633 -k1,6685:29225436,29201587:244632 -k1,6685:31172039,29201587:244633 +k1,6685:9257565,29201587:246524 +k1,6685:10695535,29201587:246525 +k1,6685:12954670,29201587:246524 +k1,6685:14684929,29201587:246524 +k1,6685:16035736,29201587:246525 +k1,6685:17030026,29201587:246524 +k1,6685:20409171,29201587:246524 +k1,6685:22031297,29201587:246525 +k1,6685:23671772,29201587:246524 +k1,6685:25620266,29201587:246524 +k1,6685:27364289,29201587:246525 +k1,6685:30886302,29201587:246524 k1,6685:32583029,29201587:0 ) (1,6686:6630773,30066667:25952256,505283,134348 -g1,6685:10105491,30066667 -g1,6685:12001447,30066667 -g1,6685:15605271,30066667 -g1,6685:17400957,30066667 -g1,6685:18286348,30066667 -g1,6685:19879528,30066667 -g1,6685:22386935,30066667 -g1,6685:23818241,30066667 -g1,6685:25845924,30066667 -h1,6685:26642842,30066667:0,0,0 -h1,6685:27767440,30066667:0,0,0 -k1,6686:32583029,30066667:4556067 +g1,6685:10234597,30066667 +g1,6685:12030283,30066667 +g1,6685:12915674,30066667 +g1,6685:14508854,30066667 +g1,6685:17016261,30066667 +g1,6685:18447567,30066667 +g1,6685:20475250,30066667 +h1,6685:21272168,30066667:0,0,0 +h1,6685:22396766,30066667:0,0,0 +k1,6686:32583029,30066667:9926741 g1,6686:32583029,30066667 ) v1,6688:6630773,30751522:0,393216,0 @@ -131905,20 +132073,20 @@ g1,6712:11321182,42531366 g1,6712:14143817,42531366 g1,6712:15910667,42531366 g1,6712:16465756,42531366 -g1,6712:17658511,42531366 -g1,6712:18726092,42531366 -g1,6712:20932033,42531366 -(1,6712:20932033,42531366:0,414482,115847 -r1,6727:22345434,42531366:1413401,530329,115847 -k1,6712:20932033,42531366:-1413401 -) -(1,6712:20932033,42531366:1413401,414482,115847 -k1,6712:20932033,42531366:3277 -h1,6712:22342157,42531366:0,411205,112570 -) -g1,6712:22544663,42531366 -g1,6712:23395320,42531366 -k1,6713:32583029,42531366:8677184 +g1,6712:17832181,42531366 +g1,6712:18899762,42531366 +g1,6712:21105703,42531366 +(1,6712:21105703,42531366:0,414482,115847 +r1,6727:22519104,42531366:1413401,530329,115847 +k1,6712:21105703,42531366:-1413401 +) +(1,6712:21105703,42531366:1413401,414482,115847 +k1,6712:21105703,42531366:3277 +h1,6712:22515827,42531366:0,411205,112570 +) +g1,6712:22718333,42531366 +g1,6712:23568990,42531366 +k1,6713:32583029,42531366:8503514 g1,6713:32583029,42531366 ) v1,6715:6630773,43216221:0,393216,0 @@ -132007,10 +132175,8 @@ g1,6727:-473656,-710413 ] ) ] -!25954 -}105 -Input:997:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:998:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!25938 +}106 Input:999:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1000:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1001:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -132019,8 +132185,10 @@ Input:1003:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1004:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1005:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1006:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!929 -{106 +Input:1007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!931 +{107 [1,6826:4262630,47279633:28320399,43253760,0 (1,6826:4262630,4025873:0,0,0 [1,6826:-473656,4025873:0,0,0 @@ -132412,60 +132580,60 @@ k1,6759:31563944,21851054:150323 k1,6759:32583029,21851054:0 ) (1,6760:6630773,22716134:25952256,513147,126483 -k1,6759:9507036,22716134:214846 -k1,6759:11590313,22716134:214846 -(1,6759:11590313,22716134:0,452978,115847 -r1,6826:13003714,22716134:1413401,568825,115847 -k1,6759:11590313,22716134:-1413401 -) -(1,6759:11590313,22716134:1413401,452978,115847 -k1,6759:11590313,22716134:3277 -h1,6759:13000437,22716134:0,411205,112570 -) -k1,6759:13218560,22716134:214846 -k1,6759:14624851,22716134:214846 -(1,6759:14624851,22716134:0,452978,115847 -r1,6826:16038252,22716134:1413401,568825,115847 -k1,6759:14624851,22716134:-1413401 -) -(1,6759:14624851,22716134:1413401,452978,115847 -k1,6759:14624851,22716134:3277 -h1,6759:16034975,22716134:0,411205,112570 -) -k1,6759:16253098,22716134:214846 -k1,6759:17459504,22716134:214846 -k1,6759:20628058,22716134:214846 -k1,6759:21510059,22716134:214845 -(1,6759:21510059,22716134:0,452978,115847 -r1,6826:22923460,22716134:1413401,568825,115847 -k1,6759:21510059,22716134:-1413401 -) -(1,6759:21510059,22716134:1413401,452978,115847 -k1,6759:21510059,22716134:3277 -h1,6759:22920183,22716134:0,411205,112570 -) -k1,6759:23311976,22716134:214846 -k1,6759:24596370,22716134:214846 -(1,6759:24596370,22716134:0,452978,115847 -r1,6826:26009771,22716134:1413401,568825,115847 -k1,6759:24596370,22716134:-1413401 -) -(1,6759:24596370,22716134:1413401,452978,115847 -k1,6759:24596370,22716134:3277 -h1,6759:26006494,22716134:0,411205,112570 -) -k1,6759:26224617,22716134:214846 -k1,6759:27630908,22716134:214846 -(1,6759:27630908,22716134:0,452978,115847 -r1,6826:29044309,22716134:1413401,568825,115847 -k1,6759:27630908,22716134:-1413401 -) -(1,6759:27630908,22716134:1413401,452978,115847 -k1,6759:27630908,22716134:3277 -h1,6759:29041032,22716134:0,411205,112570 -) -k1,6759:29259155,22716134:214846 -k1,6759:30465561,22716134:214846 +k1,6759:9494631,22716134:202441 +k1,6759:11739174,22716134:202441 +(1,6759:11739174,22716134:0,452978,115847 +r1,6826:13152575,22716134:1413401,568825,115847 +k1,6759:11739174,22716134:-1413401 +) +(1,6759:11739174,22716134:1413401,452978,115847 +k1,6759:11739174,22716134:3277 +h1,6759:13149298,22716134:0,411205,112570 +) +k1,6759:13355016,22716134:202441 +k1,6759:14748901,22716134:202440 +(1,6759:14748901,22716134:0,452978,115847 +r1,6826:16162302,22716134:1413401,568825,115847 +k1,6759:14748901,22716134:-1413401 +) +(1,6759:14748901,22716134:1413401,452978,115847 +k1,6759:14748901,22716134:3277 +h1,6759:16159025,22716134:0,411205,112570 +) +k1,6759:16364743,22716134:202441 +k1,6759:17558744,22716134:202441 +k1,6759:20714893,22716134:202441 +k1,6759:21584490,22716134:202441 +(1,6759:21584490,22716134:0,452978,115847 +r1,6826:22997891,22716134:1413401,568825,115847 +k1,6759:21584490,22716134:-1413401 +) +(1,6759:21584490,22716134:1413401,452978,115847 +k1,6759:21584490,22716134:3277 +h1,6759:22994614,22716134:0,411205,112570 +) +k1,6759:23374002,22716134:202441 +k1,6759:24645991,22716134:202441 +(1,6759:24645991,22716134:0,452978,115847 +r1,6826:26059392,22716134:1413401,568825,115847 +k1,6759:24645991,22716134:-1413401 +) +(1,6759:24645991,22716134:1413401,452978,115847 +k1,6759:24645991,22716134:3277 +h1,6759:26056115,22716134:0,411205,112570 +) +k1,6759:26261832,22716134:202440 +k1,6759:27655718,22716134:202441 +(1,6759:27655718,22716134:0,452978,115847 +r1,6826:29069119,22716134:1413401,568825,115847 +k1,6759:27655718,22716134:-1413401 +) +(1,6759:27655718,22716134:1413401,452978,115847 +k1,6759:27655718,22716134:3277 +h1,6759:29065842,22716134:0,411205,112570 +) +k1,6759:29271560,22716134:202441 +k1,6759:30465561,22716134:202441 k1,6759:32583029,22716134:0 ) (1,6760:6630773,23581214:25952256,505283,115847 @@ -132952,9 +133120,7 @@ g1,6826:-473656,-710413 ) ] !24969 -}106 -Input:1007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}107 Input:1009:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1010:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -132965,8 +133131,10 @@ Input:1015:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1016:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1017:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1018:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1019:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1020:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{107 +{108 [1,6881:4262630,47279633:28320399,43253760,0 (1,6881:4262630,4025873:0,0,0 [1,6881:-473656,4025873:0,0,0 @@ -133940,17 +134108,17 @@ g1,6881:-473656,-710413 ) ] !26976 -}107 -Input:1019:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1020:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}108 Input:1021:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1022:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1023:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1024:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{108 +{109 [1,6994:4262630,47279633:28320399,43253760,0 (1,6994:4262630,4025873:0,0,0 [1,6994:-473656,4025873:0,0,0 @@ -134929,9 +135097,7 @@ g1,6994:-473656,-710413 ) ] !25644 -}108 -Input:1027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}109 Input:1029:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1030:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1031:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -134944,8 +135110,10 @@ Input:1037:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1038:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1039:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{109 +{110 [1,7106:4262630,47279633:28320399,43253760,0 (1,7106:4262630,4025873:0,0,0 [1,7106:-473656,4025873:0,0,0 @@ -136167,9 +136335,7 @@ g1,7106:-473656,-710413 ) ] !31992 -}109 -Input:1041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}110 Input:1043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1044:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1045:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -136179,8 +136345,10 @@ Input:1048:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1049:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1050:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1051:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{110 +{111 [1,7158:4262630,47279633:28320399,43253760,0 (1,7158:4262630,4025873:0,0,0 [1,7158:-473656,4025873:0,0,0 @@ -137310,16 +137478,16 @@ g1,7158:-473656,-710413 ) ] !30137 -}110 -Input:1052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}111 Input:1054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1057:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1058:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1059:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1060:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{111 +{112 [1,7257:4262630,47279633:28320399,43253760,0 (1,7257:4262630,4025873:0,0,0 [1,7257:-473656,4025873:0,0,0 @@ -138158,67 +138326,65 @@ k1,7214:32583029,37297994:12154816 g1,7215:32583029,37297994 ) (1,7215:6764466,38163074:25818563,513147,134348 -k1,7214:7617524,38163074:225223 -k1,7214:8861832,38163074:225223 -k1,7214:10740528,38163074:225223 -k1,7214:12203727,38163074:225224 -k1,7214:13115112,38163074:225223 -(1,7214:13115112,38163074:0,452978,115847 -r1,7257:16287072,38163074:3171960,568825,115847 -k1,7214:13115112,38163074:-3171960 -) -(1,7214:13115112,38163074:3171960,452978,115847 -k1,7214:13115112,38163074:3277 -h1,7214:16283795,38163074:0,411205,112570 -) -k1,7214:16512295,38163074:225223 -k1,7214:17499046,38163074:225223 -k1,7214:19989849,38163074:225223 -k1,7214:22474753,38163074:225223 -k1,7214:23055836,38163074:225223 -(1,7214:23055836,38163074:0,452978,115847 -r1,7257:25524373,38163074:2468537,568825,115847 -k1,7214:23055836,38163074:-2468537 -) -(1,7214:23055836,38163074:2468537,452978,115847 -k1,7214:23055836,38163074:3277 -h1,7214:25521096,38163074:0,411205,112570 -) -k1,7214:25749597,38163074:225224 -k1,7214:27952697,38163074:225223 -k1,7214:28837212,38163074:225223 -k1,7214:31075701,38163074:225223 -k1,7215:32583029,38163074:0 +k1,7214:7535888,38163074:143587 +k1,7214:8698560,38163074:143587 +k1,7214:10495619,38163074:143586 +k1,7214:11877181,38163074:143587 +k1,7214:12706930,38163074:143587 +(1,7214:12706930,38163074:0,452978,115847 +r1,7257:15878890,38163074:3171960,568825,115847 +k1,7214:12706930,38163074:-3171960 +) +(1,7214:12706930,38163074:3171960,452978,115847 +k1,7214:12706930,38163074:3277 +h1,7214:15875613,38163074:0,411205,112570 +) +k1,7214:16022477,38163074:143587 +k1,7214:18425744,38163074:143586 +k1,7214:18925191,38163074:143587 +(1,7214:18925191,38163074:0,452978,115847 +r1,7257:21393728,38163074:2468537,568825,115847 +k1,7214:18925191,38163074:-2468537 +) +(1,7214:18925191,38163074:2468537,452978,115847 +k1,7214:18925191,38163074:3277 +h1,7214:21390451,38163074:0,411205,112570 +) +k1,7214:21537315,38163074:143587 +k1,7214:23658779,38163074:143587 +k1,7214:24461657,38163074:143586 +k1,7214:26618510,38163074:143587 +k1,7214:28355933,38163074:143587 +(1,7214:28355933,38163074:0,459977,115847 +r1,7257:32583029,38163074:4227096,575824,115847 +k1,7214:28355933,38163074:-4227096 +) +(1,7214:28355933,38163074:4227096,459977,115847 +k1,7214:28355933,38163074:3277 +h1,7214:32579752,38163074:0,411205,112570 +) +k1,7214:32583029,38163074:0 ) (1,7215:6764466,39028154:25818563,513147,126483 -(1,7214:6764466,39028154:0,459977,115847 -r1,7257:10991562,39028154:4227096,575824,115847 -k1,7214:6764466,39028154:-4227096 -) -(1,7214:6764466,39028154:4227096,459977,115847 -k1,7214:6764466,39028154:3277 -h1,7214:10988285,39028154:0,411205,112570 -) -g1,7214:11190791,39028154 -g1,7214:12151548,39028154 -g1,7214:14616357,39028154 -g1,7214:17075267,39028154 -g1,7214:17630356,39028154 -(1,7214:17630356,39028154:0,459977,115847 -r1,7257:21154028,39028154:3523672,575824,115847 -k1,7214:17630356,39028154:-3523672 -) -(1,7214:17630356,39028154:3523672,459977,115847 -k1,7214:17630356,39028154:3277 -h1,7214:21150751,39028154:0,411205,112570 -) -g1,7214:21353257,39028154 -g1,7214:22946437,39028154 -g1,7214:24565831,39028154 -g1,7214:26299258,39028154 -g1,7214:27689932,39028154 -g1,7214:28698531,39028154 -k1,7215:32583029,39028154:1118879 +g1,7214:7725223,39028154 +g1,7214:10190032,39028154 +g1,7214:12648942,39028154 +g1,7214:13204031,39028154 +(1,7214:13204031,39028154:0,459977,115847 +r1,7257:16727703,39028154:3523672,575824,115847 +k1,7214:13204031,39028154:-3523672 +) +(1,7214:13204031,39028154:3523672,459977,115847 +k1,7214:13204031,39028154:3277 +h1,7214:16724426,39028154:0,411205,112570 +) +g1,7214:16926932,39028154 +g1,7214:18520112,39028154 +g1,7214:20139506,39028154 +g1,7214:21872933,39028154 +g1,7214:23263607,39028154 +g1,7214:24272206,39028154 +k1,7215:32583029,39028154:5545204 g1,7215:32583029,39028154 ) v1,7217:6764466,39713009:0,393216,0 @@ -138374,12 +138540,12 @@ g1,7257:-473656,-710413 ] ) ] -!28360 -}111 -Input:1059:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1060:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!28304 +}112 +Input:1061:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1062:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{112 +{113 [1,7305:4262630,47279633:28320399,43253760,0 (1,7305:4262630,4025873:0,0,0 [1,7305:-473656,4025873:0,0,0 @@ -139287,34 +139453,34 @@ k1,7300:31931601,38590424:295436 k1,7300:32583029,38590424:0 ) (1,7301:6630773,39455504:25952256,505283,134348 -k1,7300:9661932,39455504:291754 -k1,7300:11145132,39455504:291755 -k1,7300:15112145,39455504:291754 -k1,7300:17626880,39455504:291754 -k1,7300:20686876,39455504:291755 -k1,7300:21630058,39455504:291754 -k1,7300:22277673,39455504:291755 -k1,7300:24830419,39455504:291754 -k1,7300:26679964,39455504:291754 -k1,7300:28446934,39455504:291755 -k1,7300:29911127,39455504:291754 +k1,7300:9646144,39455504:275966 +k1,7300:11113555,39455504:275966 +k1,7300:15238451,39455504:275967 +k1,7300:17737398,39455504:275966 +k1,7300:20781605,39455504:275966 +k1,7300:21708999,39455504:275966 +k1,7300:22340825,39455504:275966 +k1,7300:24877783,39455504:275966 +k1,7300:26711541,39455504:275967 +k1,7300:28462722,39455504:275966 +k1,7300:29911127,39455504:275966 k1,7300:32583029,39455504:0 ) (1,7301:6630773,40320584:25952256,513147,102891 -k1,7300:8428098,40320584:263127 -k1,7300:9882670,40320584:263127 -k1,7300:13032658,40320584:263127 -k1,7300:14660900,40320584:263127 -k1,7300:16514586,40320584:263127 -k1,7300:17950152,40320584:263127 -k1,7300:20462475,40320584:263127 -k1,7300:21717161,40320584:263126 -k1,7300:23493514,40320584:263127 -k1,7300:24408069,40320584:263127 -k1,7300:27202852,40320584:263127 -k1,7300:28485064,40320584:263127 -k1,7300:31304750,40320584:263127 -k1,7300:32227169,40320584:263127 +k1,7300:8589363,40320584:250722 +k1,7300:10031530,40320584:250722 +k1,7300:13169113,40320584:250722 +k1,7300:14784950,40320584:250722 +k1,7300:16626231,40320584:250722 +k1,7300:18049392,40320584:250722 +k1,7300:20549310,40320584:250722 +k1,7300:21791591,40320584:250721 +k1,7300:23555539,40320584:250722 +k1,7300:24457689,40320584:250722 +k1,7300:27240067,40320584:250722 +k1,7300:28509874,40320584:250722 +k1,7300:31317155,40320584:250722 +k1,7300:32227169,40320584:250722 k1,7300:32583029,40320584:0 ) (1,7301:6630773,41185664:25952256,505283,126483 @@ -139408,11 +139574,11 @@ g1,7305:-473656,-710413 ] ) ] -!27578 -}112 -Input:1061:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!27579 +}113 +Input:1063:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{113 +{114 [1,7443:4262630,47279633:28320399,43253760,0 (1,7443:4262630,4025873:0,0,0 [1,7443:-473656,4025873:0,0,0 @@ -140085,48 +140251,47 @@ g1,7369:32583029,28442968 h1,7369:6630773,28639576:0,0,0 (1,7373:6630773,29504656:25952256,513147,134348 h1,7372:6630773,29504656:983040,0,0 -k1,7372:8649181,29504656:217479 -k1,7372:11944885,29504656:217478 -k1,7372:14195946,29504656:217479 -k1,7372:15361075,29504656:217478 -k1,7372:17886732,29504656:217479 -k1,7372:19336287,29504656:217478 -k1,7372:21832453,29504656:217479 -h1,7372:23201500,29504656:0,0,0 -k1,7372:23418978,29504656:217478 -k1,7372:24445827,29504656:217479 -k1,7372:26161458,29504656:217478 -h1,7372:26958376,29504656:0,0,0 -k1,7372:27556619,29504656:217479 -k1,7372:30513502,29504656:217478 -k1,7372:31835263,29504656:217479 +k1,7372:8729618,29504656:297916 +k1,7372:12105759,29504656:297915 +k1,7372:14437257,29504656:297916 +k1,7372:15682823,29504656:297915 +k1,7372:18288917,29504656:297916 +k1,7372:19818910,29504656:297916 +k1,7372:22395512,29504656:297915 +h1,7372:23764559,29504656:0,0,0 +k1,7372:24062475,29504656:297916 +k1,7372:25169760,29504656:297915 +k1,7372:26965829,29504656:297916 +h1,7372:27762747,29504656:0,0,0 +k1,7372:28441426,29504656:297915 +k1,7372:31478747,29504656:297916 k1,7372:32583029,29504656:0 ) (1,7373:6630773,30369736:25952256,513147,134348 -k1,7372:9227528,30369736:190928 -k1,7372:10885152,30369736:190928 -k1,7372:11885450,30369736:190928 -k1,7372:13095463,30369736:190928 -k1,7372:16641179,30369736:190928 -k1,7372:18131686,30369736:190928 -k1,7372:19514059,30369736:190928 -k1,7372:22598402,30369736:190928 -k1,7372:24088909,30369736:190928 -k1,7372:24939129,30369736:190928 -k1,7372:25900760,30369736:190928 -k1,7372:29911126,30369736:190928 +k1,7372:7616989,30369736:238450 +k1,7372:10261266,30369736:238450 +k1,7372:11966412,30369736:238450 +k1,7372:13014232,30369736:238450 +k1,7372:14271767,30369736:238450 +k1,7372:16258718,30369736:238450 +k1,7372:17688613,30369736:238450 +k1,7372:20820478,30369736:238450 +k1,7372:22688808,30369736:238450 +k1,7372:23586550,30369736:238450 +k1,7372:24595703,30369736:238450 +k1,7372:28653591,30369736:238450 +k1,7372:31563944,30369736:238450 k1,7372:32583029,30369736:0 ) (1,7373:6630773,31234816:25952256,513147,134348 -g1,7372:7849087,31234816 -g1,7372:11985719,31234816 -g1,7372:12844240,31234816 -g1,7372:14510165,31234816 -g1,7372:17902308,31234816 -g1,7372:20112182,31234816 -g1,7372:21502856,31234816 -g1,7372:25337367,31234816 -k1,7373:32583029,31234816:4842457 +g1,7372:10767405,31234816 +g1,7372:11625926,31234816 +g1,7372:13291851,31234816 +g1,7372:16683994,31234816 +g1,7372:18893868,31234816 +g1,7372:20284542,31234816 +g1,7372:24119053,31234816 +k1,7373:32583029,31234816:6060771 g1,7373:32583029,31234816 ) (1,7375:6630773,32099896:25952256,513147,134348 @@ -140556,11 +140721,11 @@ g1,7443:-473656,-710413 ] ) ] -!29656 -}113 -Input:1062:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!29631 +}114 +Input:1064:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{114 +{115 [1,7502:4262630,47279633:28320399,43253760,0 (1,7502:4262630,4025873:0,0,0 [1,7502:-473656,4025873:0,0,0 @@ -141752,17 +141917,17 @@ g1,7502:-473656,-710413 ) ] !30405 -}114 -Input:1063:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1064:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}115 Input:1065:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1066:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1067:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1068:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1069:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1070:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1071:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1072:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{115 +{116 [1,7630:4262630,47279633:28320399,43253760,0 (1,7630:4262630,4025873:0,0,0 [1,7630:-473656,4025873:0,0,0 @@ -142747,12 +142912,12 @@ g1,7630:-473656,-710413 ) ] !26313 -}115 -Input:1071:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1072:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}116 Input:1073:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1074:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1075:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{116 +{117 [1,7691:4262630,47279633:28320399,43253760,0 (1,7691:4262630,4025873:0,0,0 [1,7691:-473656,4025873:0,0,0 @@ -143547,22 +143712,22 @@ k1,7652:30200140,30737204:146492 k1,7652:32583029,30737204:0 ) (1,7654:6764466,31602284:25818563,513147,134348 -k1,7652:7635152,31602284:254648 -k1,7652:8908886,31602284:254649 -k1,7652:10552897,31602284:254648 -k1,7652:12857511,31602284:254648 -k1,7652:13739995,31602284:254649 -k1,7652:15197884,31602284:254648 -k1,7652:16819613,31602284:254648 -k1,7652:18093346,31602284:254648 -k1,7652:20361261,31602284:254649 -k1,7652:21275201,31602284:254648 -k1,7652:22548934,31602284:254648 -k1,7652:23797109,31602284:254649 -k1,7652:25673773,31602284:254648 -k1,7652:27909574,31602284:254648 -k1,7652:29183308,31602284:254649 -k1,7652:31923737,31602284:254648 +k1,7652:7624298,31602284:243794 +k1,7652:8887177,31602284:243794 +k1,7652:10520334,31602284:243794 +k1,7652:12814094,31602284:243794 +k1,7652:13685723,31602284:243794 +k1,7652:15132758,31602284:243794 +k1,7652:16917303,31602284:243794 +k1,7652:18180182,31602284:243794 +k1,7652:20437241,31602284:243793 +k1,7652:21340327,31602284:243794 +k1,7652:22603206,31602284:243794 +k1,7652:23840526,31602284:243794 +k1,7652:25706336,31602284:243794 +k1,7652:27931283,31602284:243794 +k1,7652:29194162,31602284:243794 +k1,7652:31923737,31602284:243794 k1,7652:32583029,31602284:0 ) (1,7654:6764466,32467364:25818563,513147,134348 @@ -143827,9 +143992,7 @@ g1,7691:-473656,-710413 ) ] !28637 -}116 -Input:1074:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1075:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}117 Input:1076:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1077:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1078:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -143847,8 +144010,10 @@ Input:1089:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1090:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1091:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1092:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1093:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1094:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{117 +{118 [1,7749:4262630,47279633:28320399,43253760,0 (1,7749:4262630,4025873:0,0,0 [1,7749:-473656,4025873:0,0,0 @@ -144849,9 +145014,7 @@ g1,7749:-473656,-710413 ) ] !28145 -}117 -Input:1093:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1094:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}118 Input:1095:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1096:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1097:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -144869,8 +145032,10 @@ Input:1108:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1109:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1110:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1111:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1112:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1113:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{118 +{119 [1,7841:4262630,47279633:28320399,43253760,0 (1,7841:4262630,4025873:0,0,0 [1,7841:-473656,4025873:0,0,0 @@ -145198,29 +145363,29 @@ k1,7757:6764466,16263514:-997056 ) (1,7757:6764466,16263514:997056,701514,196608 ) -k1,7757:7945690,16263514:184168 -k1,7757:8273370,16263514:327680 -k1,7757:9085373,16263514:184168 -k1,7757:10288626,16263514:184168 -k1,7757:11839875,16263514:184168 -k1,7757:12691199,16263514:184168 -(1,7757:12691199,16263514:0,452978,115847 -r1,7841:15511448,16263514:2820249,568825,115847 -k1,7757:12691199,16263514:-2820249 -) -(1,7757:12691199,16263514:2820249,452978,115847 -k1,7757:12691199,16263514:3277 -h1,7757:15508171,16263514:0,411205,112570 -) -k1,7757:15695616,16263514:184168 -k1,7757:16748136,16263514:184168 -k1,7757:18036587,16263514:184169 -k1,7757:20041345,16263514:184168 -k1,7757:22938704,16263514:184168 -k1,7757:25537218,16263514:184168 -k1,7757:26407548,16263514:184168 -k1,7757:28667241,16263514:184168 -k1,7757:30893511,16263514:184168 +k1,7757:7933285,16263514:171763 +k1,7757:8260965,16263514:327680 +k1,7757:9060563,16263514:171763 +k1,7757:10251411,16263514:171763 +k1,7757:11790255,16263514:171763 +k1,7757:12629174,16263514:171763 +(1,7757:12629174,16263514:0,452978,115847 +r1,7841:15449423,16263514:2820249,568825,115847 +k1,7757:12629174,16263514:-2820249 +) +(1,7757:12629174,16263514:2820249,452978,115847 +k1,7757:12629174,16263514:3277 +h1,7757:15446146,16263514:0,411205,112570 +) +k1,7757:15794856,16263514:171763 +k1,7757:16834971,16263514:171763 +k1,7757:18111017,16263514:171764 +k1,7757:20103370,16263514:171763 +k1,7757:22988324,16263514:171763 +k1,7757:25574433,16263514:171763 +k1,7757:26432358,16263514:171763 +k1,7757:28679646,16263514:171763 +k1,7757:30893511,16263514:171763 k1,7757:32583029,16263514:0 ) (1,7758:6764466,17128594:25818563,513147,134348 @@ -145248,19 +145413,19 @@ k1,7757:25071296,17128594:-1765114 g1,7757:26129709,17128594 h1,7757:26833133,17128594:0,411205,112570 ) -g1,7757:27035639,17128594 -g1,7757:27917753,17128594 -(1,7757:27917753,17128594:0,459977,115847 -r1,7841:28276019,17128594:358266,575824,115847 -k1,7757:27917753,17128594:-358266 +g1,7757:27209309,17128594 +g1,7757:28091423,17128594 +(1,7757:28091423,17128594:0,459977,115847 +r1,7841:28449689,17128594:358266,575824,115847 +k1,7757:28091423,17128594:-358266 ) -(1,7757:27917753,17128594:358266,459977,115847 -k1,7757:27917753,17128594:3277 -h1,7757:28272742,17128594:0,411205,112570 +(1,7757:28091423,17128594:358266,459977,115847 +k1,7757:28091423,17128594:3277 +h1,7757:28446412,17128594:0,411205,112570 ) -g1,7757:28475248,17128594 -g1,7757:29205974,17128594 -k1,7758:32583029,17128594:1026279 +g1,7757:28648918,17128594 +g1,7757:29379644,17128594 +k1,7758:32583029,17128594:852609 g1,7758:32583029,17128594 ) v1,7760:6764466,17813449:0,393216,0 @@ -145909,15 +146074,15 @@ g1,7841:-473656,-710413 ] ) ] -!28539 -}118 -Input:1112:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1113:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!28538 +}119 Input:1114:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1115:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1116:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1117:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1118:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{119 +{120 [1,7895:4262630,47279633:28320399,43253760,0 (1,7895:4262630,4025873:0,0,0 [1,7895:-473656,4025873:0,0,0 @@ -146253,20 +146418,20 @@ k1,7840:31298523,14893596:191563 k1,7840:32583029,14893596:0 ) (1,7841:6764466,15758676:25818563,513147,126483 -k1,7840:7345676,15758676:225350 -k1,7840:9402102,15758676:225350 -k1,7840:10158949,15758676:225350 -k1,7840:13223319,15758676:225350 -k1,7840:14100097,15758676:225350 -k1,7840:15073213,15758676:225350 -k1,7840:16985461,15758676:225351 -k1,7840:19788997,15758676:225350 -k1,7840:21205792,15758676:225350 -k1,7840:23753738,15758676:225350 -k1,7840:24998173,15758676:225350 -k1,7840:26873720,15758676:225350 -k1,7840:29308944,15758676:225350 -k1,7840:30402646,15758676:225350 +k1,7840:7333271,15758676:212945 +k1,7840:9377292,15758676:212945 +k1,7840:10121734,15758676:212945 +k1,7840:13173699,15758676:212945 +k1,7840:14038072,15758676:212945 +k1,7840:14998783,15758676:212945 +k1,7840:16898625,15758676:212945 +k1,7840:19863427,15758676:212945 +k1,7840:21267817,15758676:212945 +k1,7840:23803358,15758676:212945 +k1,7840:25035388,15758676:212945 +k1,7840:26898530,15758676:212945 +k1,7840:29321349,15758676:212945 +k1,7840:30402646,15758676:212945 k1,7840:32583029,15758676:0 ) (1,7841:6764466,16623756:25818563,513147,134348 @@ -146834,9 +146999,7 @@ g1,7895:-473656,-710413 ) ] !25008 -}119 -Input:1117:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1118:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}120 Input:1119:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1120:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1121:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -146850,8 +147013,10 @@ Input:1128:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1129:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1130:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1131:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1132:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1133:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{120 +{121 [1,7966:4262630,47279633:28320399,43253760,0 (1,7966:4262630,4025873:0,0,0 [1,7966:-473656,4025873:0,0,0 @@ -147917,9 +148082,7 @@ g1,7966:-473656,-710413 ) ] !29708 -}120 -Input:1132:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1133:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}121 Input:1134:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1135:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1136:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -147930,8 +148093,10 @@ Input:1140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1142:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1143:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1144:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1145:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{121 +{122 [1,8088:4262630,47279633:28320399,43253760,0 (1,8088:4262630,4025873:0,0,0 [1,8088:-473656,4025873:0,0,0 @@ -148527,19 +148692,19 @@ g1,8004:12033558,28198144 g1,8004:14105806,28198144 g1,8004:16816375,28198144 g1,8004:17777132,28198144 -g1,8004:19869041,28198144 -g1,8004:20936622,28198144 -g1,8004:22240133,28198144 -g1,8004:23531847,28198144 -(1,8004:23531847,28198144:0,452978,122846 -r1,8088:27407231,28198144:3875384,575824,122846 -k1,8004:23531847,28198144:-3875384 -) -(1,8004:23531847,28198144:3875384,452978,122846 -k1,8004:23531847,28198144:3277 -h1,8004:27403954,28198144:0,411205,112570 -) -k1,8005:32583029,28198144:5123370 +g1,8004:20042711,28198144 +g1,8004:21110292,28198144 +g1,8004:22413803,28198144 +g1,8004:23705517,28198144 +(1,8004:23705517,28198144:0,452978,122846 +r1,8088:27580901,28198144:3875384,575824,122846 +k1,8004:23705517,28198144:-3875384 +) +(1,8004:23705517,28198144:3875384,452978,122846 +k1,8004:23705517,28198144:3277 +h1,8004:27577624,28198144:0,411205,112570 +) +k1,8005:32583029,28198144:4949700 g1,8005:32583029,28198144 ) v1,8007:6764466,28882999:0,393216,0 @@ -148690,39 +148855,39 @@ g1,8024:28202092,34261865 k1,8024:32583029,34261865:2094386 g1,8025:32583029,34261865 ) -(1,8025:6764466,35126945:25818563,513147,134348 -k1,8024:7743504,35126945:171635 -k1,8024:11423282,35126945:171636 -k1,8024:14436558,35126945:171635 -k1,8024:15476545,35126945:171635 -k1,8024:16752463,35126945:171636 -k1,8024:18016583,35126945:171635 -(1,8024:18016583,35126945:0,452978,122846 -r1,8088:21891967,35126945:3875384,575824,122846 -k1,8024:18016583,35126945:-3875384 -) -(1,8024:18016583,35126945:3875384,452978,122846 -k1,8024:18016583,35126945:3277 -h1,8024:21888690,35126945:0,411205,112570 -) -k1,8024:22063602,35126945:171635 -k1,8024:23467314,35126945:171635 -k1,8024:25917637,35126945:171636 -h1,8024:27460355,35126945:0,0,0 -k1,8024:27631990,35126945:171635 -k1,8024:28612995,35126945:171635 -k1,8024:30282784,35126945:171636 -h1,8024:31478161,35126945:0,0,0 -k1,8024:31649796,35126945:171635 +(1,8025:6764466,35126945:25818563,505283,134348 +k1,8024:7821104,35126945:249235 +k1,8024:11578481,35126945:249235 +k1,8024:14843028,35126945:249236 +k1,8024:15960615,35126945:249235 +k1,8024:17314132,35126945:249235 +k1,8024:18655852,35126945:249235 +(1,8024:18655852,35126945:0,452978,122846 +r1,8088:22531236,35126945:3875384,575824,122846 +k1,8024:18655852,35126945:-3875384 +) +(1,8024:18655852,35126945:3875384,452978,122846 +k1,8024:18655852,35126945:3277 +h1,8024:22527959,35126945:0,411205,112570 +) +k1,8024:22780471,35126945:249235 +k1,8024:24261783,35126945:249235 +k1,8024:26789706,35126945:249236 +h1,8024:28332424,35126945:0,0,0 +k1,8024:28581659,35126945:249235 +k1,8024:29640264,35126945:249235 +k1,8024:31387652,35126945:249235 +h1,8024:32583029,35126945:0,0,0 k1,8024:32583029,35126945:0 ) -(1,8025:6764466,35992025:25818563,505283,134348 -g1,8024:7734398,35992025 -g1,8024:11320528,35992025 -g1,8024:14504267,35992025 -g1,8024:16438889,35992025 -g1,8024:19218270,35992025 -k1,8025:32583029,35992025:11132603 +(1,8025:6764466,35992025:25818563,513147,134348 +g1,8024:7911346,35992025 +g1,8024:8881278,35992025 +g1,8024:12467408,35992025 +g1,8024:15651147,35992025 +g1,8024:17585769,35992025 +g1,8024:20365150,35992025 +k1,8025:32583029,35992025:9985723 g1,8025:32583029,35992025 ) v1,8027:6764466,36676880:0,393216,0 @@ -149068,14 +149233,14 @@ g1,8088:-473656,-710413 ] ) ] -!30798 -}121 -Input:1144:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1145:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!30789 +}122 Input:1146:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1147:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1148:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1149:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{122 +{123 [1,8157:4262630,47279633:28320399,43253760,0 (1,8157:4262630,4025873:0,0,0 [1,8157:-473656,4025873:0,0,0 @@ -149905,13 +150070,13 @@ g1,8118:32583029,39421585 ) h1,8118:6630773,39618193:0,0,0 v1,8122:6630773,40483273:0,393216,0 -(1,8157:6630773,45296333:25952256,5206276,0 -g1,8157:6630773,45296333 -g1,8157:6237557,45296333 -r1,8157:6368629,45296333:131072,5206276,0 -g1,8157:6567858,45296333 -g1,8157:6764466,45296333 -[1,8157:6764466,45296333:25818563,5206276,0 +(1,8157:6630773,44439118:25952256,4349061,0 +g1,8157:6630773,44439118 +g1,8157:6237557,44439118 +r1,8157:6368629,44439118:131072,4349061,0 +g1,8157:6567858,44439118 +g1,8157:6764466,44439118 +[1,8157:6764466,44439118:25818563,4349061,0 (1,8124:6764466,40844450:25818563,754393,260573 (1,8122:6764466,40844450:0,754393,260573 r1,8157:7856192,40844450:1091726,1014966,260573 @@ -149919,113 +150084,101 @@ k1,8122:6764466,40844450:-1091726 ) (1,8122:6764466,40844450:1091726,754393,260573 ) -k1,8122:8048220,40844450:192028 -k1,8122:8375900,40844450:327680 -k1,8122:10351164,40844450:192029 -k1,8122:12278585,40844450:192028 -k1,8122:13489698,40844450:192028 -k1,8122:16896268,40844450:192029 -k1,8122:19834910,40844450:192028 -(1,8122:19834910,40844450:0,452978,115847 -r1,8157:20896600,40844450:1061690,568825,115847 -k1,8122:19834910,40844450:-1061690 -) -(1,8122:19834910,40844450:1061690,452978,115847 -g1,8122:20541611,40844450 -h1,8122:20893323,40844450:0,411205,112570 -) -k1,8122:21088628,40844450:192028 -k1,8122:22090027,40844450:192029 -k1,8122:23748751,40844450:192028 -k1,8122:24959864,40844450:192028 -k1,8122:29557879,40844450:192029 -k1,8122:30941352,40844450:192028 -k1,8124:32583029,40844450:0 -) -(1,8124:6764466,41709530:25818563,505283,134348 -k1,8122:10221204,41709530:164209 -k1,8122:11779363,41709530:164208 -k1,8122:12299432,41709530:164209 -(1,8122:12299432,41709530:0,452978,115847 -r1,8157:14767969,41709530:2468537,568825,115847 -k1,8122:12299432,41709530:-2468537 -) -(1,8122:12299432,41709530:2468537,452978,115847 -k1,8122:12299432,41709530:3277 -h1,8122:14764692,41709530:0,411205,112570 -) -k1,8122:14932177,41709530:164208 -k1,8122:17074263,41709530:164209 -k1,8122:17924633,41709530:164208 -k1,8122:18859545,41709530:164209 -k1,8122:22096081,41709530:164208 -k1,8122:22911718,41709530:164209 -k1,8122:24703840,41709530:164208 -k1,8122:26040488,41709530:164209 -k1,8122:29091557,41709530:164208 -k1,8122:30274851,41709530:164209 +k1,8122:8004530,40844450:148338 +k1,8122:8332210,40844450:327680 +k1,8122:10263782,40844450:148337 +k1,8122:12147513,40844450:148338 +k1,8122:13314936,40844450:148338 +k1,8122:16677815,40844450:148338 +k1,8122:19572766,40844450:148337 +(1,8122:19572766,40844450:0,452978,115847 +r1,8157:20634456,40844450:1061690,568825,115847 +k1,8122:19572766,40844450:-1061690 +) +(1,8122:19572766,40844450:1061690,452978,115847 +g1,8122:20279467,40844450 +h1,8122:20631179,40844450:0,411205,112570 +) +k1,8122:20782794,40844450:148338 +k1,8122:21740502,40844450:148338 +k1,8122:23355536,40844450:148338 +k1,8122:24522958,40844450:148337 +k1,8122:25958423,40844450:148338 +k1,8122:27298206,40844450:148338 +k1,8122:32583029,40844450:0 +) +(1,8124:6764466,41709530:25818563,513147,134348 +k1,8122:8314080,41709530:181877 +k1,8122:8851817,41709530:181877 +(1,8122:8851817,41709530:0,452978,115847 +r1,8157:11320354,41709530:2468537,568825,115847 +k1,8122:8851817,41709530:-2468537 +) +(1,8122:8851817,41709530:2468537,452978,115847 +k1,8122:8851817,41709530:3277 +h1,8122:11317077,41709530:0,411205,112570 +) +k1,8122:11502231,41709530:181877 +k1,8122:13661985,41709530:181877 +k1,8122:14530024,41709530:181877 +k1,8122:15482604,41709530:181877 +k1,8122:18736808,41709530:181876 +k1,8122:19570113,41709530:181877 +k1,8122:21379904,41709530:181877 +k1,8122:22734220,41709530:181877 +k1,8122:25802958,41709530:181877 +k1,8122:27003920,41709530:181877 +k1,8122:29493975,41709530:181877 +k1,8122:30358737,41709530:181877 k1,8122:32583029,41709530:0 ) (1,8124:6764466,42574610:25818563,513147,126483 -k1,8122:7719981,42574610:272630 -k1,8122:10216902,42574610:272629 -k1,8122:11481092,42574610:272630 -k1,8122:14744130,42574610:272630 -k1,8122:16706278,42574610:272630 -k1,8122:17997992,42574610:272629 -k1,8122:20338938,42574610:272630 -k1,8122:21270860,42574610:272630 -k1,8122:22562574,42574610:272629 -k1,8122:25548395,42574610:272630 -k1,8122:26812585,42574610:272630 -k1,8122:28325156,42574610:272630 -k1,8123:29426815,42574610:272629 -k1,8123:31563944,42574610:272630 -k1,8123:32583029,42574610:0 +k1,8122:7985604,42574610:229578 +k1,8122:11205589,42574610:229577 +k1,8122:13124685,42574610:229578 +k1,8122:14373347,42574610:229577 +k1,8122:16671241,42574610:229578 +k1,8122:17560111,42574610:229578 +k1,8122:18808773,42574610:229577 +k1,8122:21751542,42574610:229578 +k1,8122:22972680,42574610:229578 +k1,8122:24442198,42574610:229577 +k1,8123:25500806,42574610:229578 +k1,8123:27594882,42574610:229577 +k1,8123:28843545,42574610:229578 +k1,8124:32583029,42574610:0 ) (1,8124:6764466,43439690:25818563,513147,134348 -k1,8123:12040770,43439690:199885 -k1,8123:14875858,43439690:199885 -k1,8123:17458631,43439690:199884 -k1,8123:20039439,43439690:199885 -k1,8123:21430769,43439690:199885 -k1,8123:24013543,43439690:199885 -k1,8123:26962662,43439690:199884 -k1,8123:28675773,43439690:199885 -k1,8123:31914562,43439690:199885 +k1,8123:8379011,43439690:171442 +k1,8123:11185656,43439690:171442 +k1,8123:13739988,43439690:171443 +k1,8123:16292353,43439690:171442 +k1,8123:17655240,43439690:171442 +k1,8123:20209571,43439690:171442 +k1,8123:23130248,43439690:171442 +k1,8123:24814917,43439690:171443 +k1,8123:28025263,43439690:171442 +k1,8123:28879590,43439690:171442 k1,8123:32583029,43439690:0 ) -(1,8124:6764466,44304770:25818563,505283,134348 -k1,8123:10714678,44304770:246773 -k1,8123:11980536,44304770:246773 -k1,8123:14940499,44304770:246772 -k1,8123:16885965,44304770:246773 -k1,8123:19733862,44304770:246773 -k1,8123:22292089,44304770:246773 -k1,8123:23407214,44304770:246773 -k1,8123:25184253,44304770:246773 -k1,8123:26082453,44304770:246772 -k1,8123:29598162,44304770:246773 -k1,8123:31563944,44304770:246773 +(1,8124:6764466,44304770:25818563,513147,134348 +k1,8123:7989032,44304770:205481 +k1,8123:10907703,44304770:205480 +k1,8123:12811877,44304770:205481 +k1,8123:15618481,44304770:205480 +k1,8123:18135416,44304770:205481 +k1,8123:19209248,44304770:205480 +k1,8123:20944995,44304770:205481 +k1,8123:21801903,44304770:205480 +k1,8123:25276320,44304770:205481 +k1,8123:27200809,44304770:205480 +k1,8123:28425375,44304770:205481 +k1,8123:30699171,44304770:205480 +k1,8123:31563944,44304770:205481 k1,8123:32583029,44304770:0 ) -(1,8124:6764466,45169850:25818563,513147,126483 -k1,8123:9023055,45169850:190273 -k1,8123:9872620,45169850:190273 -k1,8123:11081978,45169850:190273 -k1,8123:14159112,45169850:190273 -k1,8123:15730229,45169850:190273 -k1,8123:17257435,45169850:190272 -k1,8123:19092662,45169850:190273 -k1,8123:24771575,45169850:190273 -k1,8123:27004605,45169850:190273 -k1,8123:28063230,45169850:190273 -k1,8123:29933846,45169850:190273 -k1,8123:30740157,45169850:190273 -k1,8123:32583029,45169850:0 -) ] -g1,8157:32583029,45296333 +g1,8157:32583029,44439118 ) ] (1,8157:32583029,45706769:0,0,0 @@ -150048,10 +150201,8 @@ g1,8157:-473656,-710413 ] ) ] -!26643 -}122 -Input:1148:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1149:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26262 +}123 Input:1150:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1151:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -150063,8 +150214,10 @@ Input:1157:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1158:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1159:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1160:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1161:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1162:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{123 +{124 [1,8202:4262630,47279633:28320399,43253760,0 (1,8202:4262630,4025873:0,0,0 [1,8202:-473656,4025873:0,0,0 @@ -150198,28 +150351,38 @@ r1,8202:6368629,18608246:131072,12747365,0 g1,8157:6567858,18608246 g1,8157:6764466,18608246 [1,8157:6764466,18608246:25818563,12747365,0 -(1,8124:6764466,6374028:25818563,513147,134348 -k1,8123:7607813,6374028:184055 -k1,8123:10736401,6374028:184055 -k1,8123:12658472,6374028:184056 -k1,8123:15001283,6374028:184055 -k1,8123:17137000,6374028:184055 -k1,8123:18763502,6374028:184055 -k1,8123:19966643,6374028:184056 -k1,8123:22899933,6374028:184055 -k1,8123:23743280,6374028:184055 -k1,8123:24946420,6374028:184055 -k1,8123:27843667,6374028:184056 -k1,8123:29765737,6374028:184055 -k1,8123:31931601,6374028:184055 +(1,8124:6764466,6374028:25818563,513147,126483 +k1,8123:9871885,6374028:220558 +k1,8123:11473288,6374028:220559 +k1,8123:13030780,6374028:220558 +k1,8123:14896293,6374028:220559 +k1,8123:20605491,6374028:220558 +k1,8123:22868807,6374028:220559 +k1,8123:23957717,6374028:220558 +k1,8123:25858619,6374028:220559 +k1,8123:26695215,6374028:220558 +k1,8123:28758646,6374028:220559 +k1,8123:29638496,6374028:220558 k1,8123:32583029,6374028:0 ) -(1,8124:6764466,7239108:25818563,505283,7863 -g1,8123:7982780,7239108 -g1,8123:10423996,7239108 -g1,8123:10423996,7239108 -k1,8124:32583028,7239108:22159032 -g1,8124:32583028,7239108 +(1,8124:6764466,7239108:25818563,513147,134348 +k1,8123:8697872,7239108:195391 +k1,8123:11052019,7239108:195391 +k1,8123:13199071,7239108:195390 +k1,8123:14836909,7239108:195391 +k1,8123:16051385,7239108:195391 +k1,8123:18996011,7239108:195391 +k1,8123:19850693,7239108:195390 +k1,8123:21065169,7239108:195391 +k1,8123:23973751,7239108:195391 +k1,8123:25907157,7239108:195391 +k1,8123:28084357,7239108:195391 +k1,8123:28931175,7239108:195390 +k1,8123:30145651,7239108:195391 +k1,8123:32583029,7239108:195391 +k1,8123:32583029,7239108:0 +k1,8124:32583029,7239108:0 +k1,8124:32583029,7239108:0 ) v1,8126:6764466,7923963:0,393216,0 (1,8154:6764466,18411638:25818563,10880891,196608 @@ -151440,10 +151603,8 @@ g1,8202:-473656,-710413 ] ) ] -!37228 -}123 -Input:1161:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1162:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!37561 +}124 Input:1163:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1164:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1165:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -151455,8 +151616,10 @@ Input:1170:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1171:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1172:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1173:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1174:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1175:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{124 +{125 [1,8256:4262630,47279633:28320399,43253760,0 (1,8256:4262630,4025873:0,0,0 [1,8256:-473656,4025873:0,0,0 @@ -151878,19 +152041,19 @@ k1,8208:30728360,16992497:161786 k1,8208:32583029,16992497:0 ) (1,8209:6630773,17857577:25952256,513147,134348 -k1,8208:7600605,17857577:160462 -k1,8208:10252091,17857577:160463 -k1,8208:13427864,17857577:160462 -k1,8208:15444306,17857577:160462 -k1,8208:16290931,17857577:160463 -k1,8208:16807253,17857577:160462 -k1,8208:20176358,17857577:160462 -k1,8208:22017163,17857577:160462 -k1,8208:22860511,17857577:160463 -k1,8208:24875642,17857577:160462 -k1,8208:25845474,17857577:160462 -k1,8208:28813499,17857577:160463 -k1,8208:29921612,17857577:160462 +k1,8208:7580541,17857577:140398 +k1,8208:10211962,17857577:140398 +k1,8208:13367672,17857577:140399 +k1,8208:15364050,17857577:140398 +k1,8208:16190610,17857577:140398 +k1,8208:16686868,17857577:140398 +k1,8208:20035910,17857577:140399 +k1,8208:21856651,17857577:140398 +k1,8208:22679934,17857577:140398 +k1,8208:24675001,17857577:140398 +k1,8208:25624770,17857577:140399 +k1,8208:28746401,17857577:140398 +k1,8208:29834450,17857577:140398 k1,8208:32583029,17857577:0 ) (1,8209:6630773,18722657:25952256,513147,126483 @@ -152556,9 +152719,7 @@ g1,8256:-473656,-710413 ) ] !30636 -}124 -Input:1174:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1175:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}125 Input:1176:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1177:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1178:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -152574,8 +152735,10 @@ Input:1187:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1188:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1189:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1190:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1191:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1192:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{125 +{126 [1,8317:4262630,47279633:28320399,43253760,0 (1,8317:4262630,4025873:0,0,0 [1,8317:-473656,4025873:0,0,0 @@ -152945,18 +153108,18 @@ k1,8272:32583029,13579467:12824017 g1,8272:32583029,13579467 ) (1,8275:6630773,14837763:25952256,513147,134348 -k1,8274:7524903,14837763:266295 -k1,8274:8810282,14837763:266294 -k1,8274:10443658,14837763:266295 -k1,8274:11369244,14837763:266294 -k1,8274:15066349,14837763:266295 -k1,8274:16615838,14837763:266294 -k1,8274:18892778,14837763:266295 -k1,8274:20726693,14837763:266294 -k1,8274:23484011,14837763:266295 -k1,8274:26591946,14837763:266294 -k1,8274:29016997,14837763:266295 -k1,8274:31591469,14837763:266294 +k1,8274:7510430,14837763:251822 +k1,8274:8781337,14837763:251822 +k1,8274:10400240,14837763:251822 +k1,8274:11311354,14837763:251822 +k1,8274:14993986,14837763:251822 +k1,8274:16529003,14837763:251822 +k1,8274:18791470,14837763:251822 +k1,8274:20610913,14837763:251822 +k1,8274:23353758,14837763:251822 +k1,8274:26620891,14837763:251822 +k1,8274:29031469,14837763:251822 +k1,8274:31591469,14837763:251822 k1,8274:32583029,14837763:0 ) (1,8275:6630773,15702843:25952256,513147,102891 @@ -153029,20 +153192,20 @@ k1,8274:29368488,17433003:169857 k1,8274:32583029,17433003:0 ) (1,8275:6630773,18298083:25952256,505283,126483 -k1,8274:9967351,18298083:259663 -k1,8274:10878442,18298083:259663 -k1,8274:13169066,18298083:259663 -k1,8274:16621643,18298083:259663 -k1,8274:19896617,18298083:259663 -k1,8274:20772318,18298083:259663 -k1,8274:22051065,18298083:259662 -k1,8274:23434670,18298083:259663 -k1,8274:24727836,18298083:259663 -k1,8274:25670384,18298083:259663 -k1,8274:27396743,18298083:259663 -k1,8274:28606678,18298083:259663 -k1,8274:30057786,18298083:259663 -k1,8274:31350952,18298083:259663 +k1,8274:9954946,18298083:247258 +k1,8274:10853632,18298083:247258 +k1,8274:13131851,18298083:247258 +k1,8274:16572023,18298083:247258 +k1,8274:19834592,18298083:247258 +k1,8274:20697888,18298083:247258 +k1,8274:21964231,18298083:247258 +k1,8274:23335430,18298083:247257 +k1,8274:24789861,18298083:247258 +k1,8274:25720004,18298083:247258 +k1,8274:27433958,18298083:247258 +k1,8274:28631488,18298083:247258 +k1,8274:30070191,18298083:247258 +k1,8274:31350952,18298083:247258 k1,8274:32583029,18298083:0 ) (1,8275:6630773,19163163:25952256,505283,134348 @@ -153057,26 +153220,26 @@ g1,8275:32583030,19163163 ) (1,8277:6630773,20028243:25952256,513147,126483 h1,8276:6630773,20028243:983040,0,0 -k1,8276:8462176,20028243:220528 -k1,8276:9701788,20028243:220527 -k1,8276:11289397,20028243:220528 -k1,8276:12177081,20028243:220528 -(1,8276:12177081,20028243:0,452978,115847 -r1,8317:14293906,20028243:2116825,568825,115847 -k1,8276:12177081,20028243:-2116825 -) -(1,8276:12177081,20028243:2116825,452978,115847 -k1,8276:12177081,20028243:3277 -h1,8276:14290629,20028243:0,411205,112570 -) -k1,8276:14514433,20028243:220527 -k1,8276:16110562,20028243:220528 -k1,8276:17661471,20028243:220528 -k1,8276:20525720,20028243:220527 -k1,8276:24160018,20028243:220528 -k1,8276:25876733,20028243:220528 -k1,8276:29283620,20028243:220527 -k1,8276:30035645,20028243:220528 +k1,8276:8447703,20028243:206055 +k1,8276:9672843,20028243:206055 +k1,8276:11245980,20028243:206056 +k1,8276:12119191,20028243:206055 +(1,8276:12119191,20028243:0,452978,115847 +r1,8317:14236016,20028243:2116825,568825,115847 +k1,8276:12119191,20028243:-2116825 +) +(1,8276:12119191,20028243:2116825,452978,115847 +k1,8276:12119191,20028243:3277 +h1,8276:14232739,20028243:0,411205,112570 +) +k1,8276:14615741,20028243:206055 +k1,8276:16197397,20028243:206055 +k1,8276:17733833,20028243:206055 +k1,8276:20583610,20028243:206055 +k1,8276:24203436,20028243:206056 +k1,8276:25905678,20028243:206055 +k1,8276:29298093,20028243:206055 +k1,8276:30035645,20028243:206055 k1,8276:32583029,20028243:0 ) (1,8277:6630773,20893323:25952256,513147,134348 @@ -153346,21 +153509,21 @@ k1,8296:29316715,33179973:221929 k1,8296:32583029,33179973:0 ) (1,8297:6630773,34045053:25952256,513147,134348 -k1,8296:8640456,34045053:230381 -k1,8296:9889922,34045053:230381 -k1,8296:12079829,34045053:230381 -k1,8296:15262607,34045053:230381 -k1,8296:17378459,34045053:230381 -k1,8296:18140337,34045053:230381 -k1,8296:18726578,34045053:230381 -k1,8296:20466908,34045053:230380 -k1,8296:21356581,34045053:230381 -k1,8296:22606047,34045053:230381 -k1,8296:25843875,34045053:230381 -k1,8296:26909185,34045053:230381 -k1,8296:28342807,34045053:230381 -k1,8296:30113939,34045053:230381 -k1,8296:30700180,34045053:230381 +k1,8296:8641242,34045053:231167 +k1,8296:9891495,34045053:231168 +k1,8296:12082188,34045053:231167 +k1,8296:15265753,34045053:231168 +k1,8296:17382391,34045053:231167 +k1,8296:18145055,34045053:231167 +k1,8296:18732083,34045053:231168 +k1,8296:20473200,34045053:231167 +k1,8296:21363660,34045053:231168 +k1,8296:22613912,34045053:231167 +k1,8296:25852526,34045053:231167 +k1,8296:26906826,34045053:231168 +k1,8296:28341234,34045053:231167 +k1,8296:30113153,34045053:231168 +k1,8296:30700180,34045053:231167 k1,8296:32583029,34045053:0 ) (1,8297:6630773,34910133:25952256,513147,134348 @@ -153628,9 +153791,7 @@ g1,8317:-473656,-710413 ) ] !29619 -}125 -Input:1191:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1192:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}126 Input:1193:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1194:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1195:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -153648,8 +153809,10 @@ Input:1206:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1207:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1208:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1209:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{126 +{127 [1,8408:4262630,47279633:28320399,43253760,0 (1,8408:4262630,4025873:0,0,0 [1,8408:-473656,4025873:0,0,0 @@ -154000,21 +154163,21 @@ k1,8336:6764466,14163195:-997056 ) (1,8336:6764466,14163195:997056,701514,196608 ) -k1,8336:7964057,14163195:202535 -k1,8336:8291737,14163195:327680 -k1,8336:12001759,14163195:202535 -k1,8336:16067641,14163195:202535 -k1,8336:17289261,14163195:202535 -k1,8336:19229811,14163195:202535 -k1,8336:20091638,14163195:202535 -k1,8336:20650033,14163195:202535 -k1,8336:23890161,14163195:202534 -k1,8336:25586262,14163195:202535 -k1,8336:26474959,14163195:202535 -k1,8336:27033354,14163195:202535 -k1,8336:28229415,14163195:202535 -k1,8336:29114835,14163195:202535 -k1,8336:30706733,14163195:202535 +k1,8336:7949452,14163195:187930 +k1,8336:8277132,14163195:327680 +k1,8336:11972549,14163195:187930 +k1,8336:16023826,14163195:187930 +k1,8336:17230840,14163195:187929 +k1,8336:19156785,14163195:187930 +k1,8336:20004007,14163195:187930 +k1,8336:20547797,14163195:187930 +k1,8336:23890630,14163195:187930 +k1,8336:25572126,14163195:187930 +k1,8336:26446218,14163195:187930 +k1,8336:26990007,14163195:187929 +k1,8336:28171463,14163195:187930 +k1,8336:29042278,14163195:187930 +k1,8336:30619571,14163195:187930 k1,8336:32583029,14163195:0 ) (1,8337:6764466,15028275:25818563,513147,134348 @@ -154666,12 +154829,12 @@ g1,8408:-473656,-710413 ) ] !27663 -}126 -Input:1210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}127 Input:1212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{127 +{128 [1,8472:4262630,47279633:28320399,43253760,0 (1,8472:4262630,4025873:0,0,0 [1,8472:-473656,4025873:0,0,0 @@ -155132,18 +155295,18 @@ k1,8412:32583029,23818368:9938926 g1,8412:32583029,23818368 ) (1,8416:6630773,25076664:25952256,505283,126483 -k1,8415:7624736,25076664:200322 -k1,8415:11242761,25076664:200322 -k1,8415:13472077,25076664:200321 -k1,8415:14288437,25076664:200322 -k1,8415:16090459,25076664:200322 -k1,8415:17988163,25076664:200322 -k1,8415:18804522,25076664:200321 -k1,8415:19419686,25076664:200321 -k1,8415:21009371,25076664:200322 -k1,8415:22743890,25076664:200321 -k1,8415:25985738,25076664:200322 -k1,8415:30529131,25076664:200322 +k1,8415:7610264,25076664:185850 +k1,8415:11213817,25076664:185850 +k1,8415:13428663,25076664:185851 +k1,8415:14230551,25076664:185850 +k1,8415:16018101,25076664:185850 +k1,8415:18075004,25076664:185850 +k1,8415:18876892,25076664:185850 +k1,8415:19477572,25076664:185837 +k1,8415:21052785,25076664:185850 +k1,8415:22772834,25076664:185851 +k1,8415:26000210,25076664:185850 +k1,8415:30529131,25076664:185850 k1,8415:32583029,25076664:0 ) (1,8416:6630773,25941744:25952256,513147,134348 @@ -155513,6 +155676,7 @@ g1,8439:8622497,41301973 g1,8439:9286405,41301973 g1,8439:11610083,41301973 g1,8439:14597668,41301973 +g1,8439:14929622,41301973 h1,8439:17585253,41301973:0,0,0 k1,8439:32583029,41301973:14997776 g1,8439:32583029,41301973 @@ -155564,6 +155728,7 @@ g1,8439:8622497,44041393 g1,8439:9286405,44041393 g1,8439:11610083,44041393 g1,8439:14597668,44041393 +g1,8439:14929622,44041393 h1,8439:17585253,44041393:0,0,0 k1,8439:32583029,44041393:14997776 g1,8439:32583029,44041393 @@ -155623,16 +155788,16 @@ g1,8472:-473656,-710413 ] ) ] -!26371 -}127 -Input:1213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26423 +}128 Input:1215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1216:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1217:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1218:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1219:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1220:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{128 +{129 [1,8509:4262630,47279633:28320399,43253760,0 (1,8509:4262630,4025873:0,0,0 [1,8509:-473656,4025873:0,0,0 @@ -155861,6 +156026,7 @@ g1,8451:14265714,10174953 g1,8451:14597668,10174953 g1,8451:14929622,10174953 g1,8451:15261576,10174953 +g1,8451:15593530,10174953 g1,8451:18581115,10174953 g1,8451:18913069,10174953 g1,8451:19245023,10174953 @@ -155922,6 +156088,7 @@ g1,8451:14265714,11544663 g1,8451:14597668,11544663 g1,8451:14929622,11544663 g1,8451:15261576,11544663 +g1,8451:15593530,11544663 g1,8451:18581115,11544663 g1,8451:18913069,11544663 g1,8451:19245023,11544663 @@ -156090,6 +156257,7 @@ g1,8471:14265714,17970502 g1,8471:14597668,17970502 g1,8471:14929622,17970502 g1,8471:15261576,17970502 +g1,8471:15593530,17970502 g1,8471:18581115,17970502 g1,8471:18913069,17970502 g1,8471:19245023,17970502 @@ -156142,6 +156310,7 @@ g1,8471:27543871,18655357 g1,8471:27875825,18655357 g1,8471:28207779,18655357 g1,8471:28539733,18655357 +g1,8471:28871687,18655357 h1,8471:31527318,18655357:0,0,0 k1,8471:32583029,18655357:1055711 g1,8471:32583029,18655357 @@ -156162,6 +156331,7 @@ g1,8471:14265714,19340212 g1,8471:14597668,19340212 g1,8471:14929622,19340212 g1,8471:15261576,19340212 +g1,8471:15593530,19340212 g1,8471:18581115,19340212 g1,8471:18913069,19340212 g1,8471:19245023,19340212 @@ -156214,6 +156384,7 @@ g1,8471:27543871,20025067 g1,8471:27875825,20025067 g1,8471:28207779,20025067 g1,8471:28539733,20025067 +g1,8471:28871687,20025067 h1,8471:31527318,20025067:0,0,0 k1,8471:32583029,20025067:1055711 g1,8471:32583029,20025067 @@ -156235,6 +156406,7 @@ g1,8471:8622497,21394777 g1,8471:8954451,21394777 g1,8471:9286405,21394777 g1,8471:9618359,21394777 +g1,8471:9950313,21394777 h1,8471:12605944,21394777:0,0,0 k1,8471:32583028,21394777:19977084 g1,8471:32583028,21394777 @@ -156247,6 +156419,7 @@ g1,8471:8622497,22079632 g1,8471:8954451,22079632 g1,8471:9286405,22079632 g1,8471:9618359,22079632 +g1,8471:9950313,22079632 h1,8471:12605944,22079632:0,0,0 k1,8471:32583028,22079632:19977084 g1,8471:32583028,22079632 @@ -156259,6 +156432,7 @@ g1,8471:8622497,22764487 g1,8471:8954451,22764487 g1,8471:9286405,22764487 g1,8471:9618359,22764487 +g1,8471:9950313,22764487 h1,8471:12605944,22764487:0,0,0 k1,8471:32583028,22764487:19977084 g1,8471:32583028,22764487 @@ -156271,6 +156445,7 @@ g1,8471:8622497,23449342 g1,8471:8954451,23449342 g1,8471:9286405,23449342 g1,8471:9618359,23449342 +g1,8471:9950313,23449342 h1,8471:12605944,23449342:0,0,0 k1,8471:32583028,23449342:19977084 g1,8471:32583028,23449342 @@ -156788,6 +156963,7 @@ g1,8508:14929622,43954252 g1,8508:15261576,43954252 g1,8508:15593530,43954252 g1,8508:17917208,43954252 +g1,8508:18249162,43954252 h1,8508:20904793,43954252:0,0,0 k1,8508:32583029,43954252:11678236 g1,8508:32583029,43954252 @@ -156855,10 +157031,8 @@ g1,8509:-473656,-710413 ] ) ] -!32640 -}128 -Input:1219:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1220:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!32922 +}129 Input:1221:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1222:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1223:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -156868,8 +157042,10 @@ Input:1226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{129 +{130 [1,8577:4262630,47279633:28320399,43253760,0 (1,8577:4262630,4025873:0,0,0 [1,8577:-473656,4025873:0,0,0 @@ -157035,6 +157211,7 @@ g1,8508:14929622,7173389 g1,8508:15261576,7173389 g1,8508:15593530,7173389 g1,8508:17917208,7173389 +g1,8508:18249162,7173389 h1,8508:20904793,7173389:0,0,0 k1,8508:32583029,7173389:11678236 g1,8508:32583029,7173389 @@ -157815,10 +157992,8 @@ g1,8577:-473656,-710413 ] ) ] -!27134 -}129 -Input:1230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!27159 +}130 Input:1232:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1233:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1234:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -157838,8 +158013,10 @@ Input:1247:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1248:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1249:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1250:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1251:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1252:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1944 -{130 +{131 [1,8629:4262630,47279633:28320399,43253760,0 (1,8629:4262630,4025873:0,0,0 [1,8629:-473656,4025873:0,0,0 @@ -158650,26 +158827,26 @@ k1,8602:30544859,35695669:179459 k1,8602:32583029,35695669:0 ) (1,8603:6630773,36560749:25952256,513147,134348 -k1,8602:7402403,36560749:155592 -k1,8602:8577080,36560749:155592 -(1,8602:8577080,36560749:0,452978,115847 -r1,8629:11749040,36560749:3171960,568825,115847 -k1,8602:8577080,36560749:-3171960 -) -(1,8602:8577080,36560749:3171960,452978,115847 -k1,8602:8577080,36560749:3277 -h1,8602:11745763,36560749:0,411205,112570 -) -k1,8602:11904632,36560749:155592 -k1,8602:14838951,36560749:155592 -k1,8602:16729936,36560749:155592 -k1,8602:18582254,36560749:155591 -k1,8602:21937314,36560749:155592 -k1,8602:22720741,36560749:155592 -k1,8602:23895418,36560749:155592 -k1,8602:26292341,36560749:155592 -k1,8602:29634293,36560749:155592 -k1,8602:30658237,36560749:155592 +k1,8602:7387930,36560749:141119 +k1,8602:8548135,36560749:141120 +(1,8602:8548135,36560749:0,452978,115847 +r1,8629:11720095,36560749:3171960,568825,115847 +k1,8602:8548135,36560749:-3171960 +) +(1,8602:8548135,36560749:3171960,452978,115847 +k1,8602:8548135,36560749:3277 +h1,8602:11716818,36560749:0,411205,112570 +) +k1,8602:11861214,36560749:141119 +k1,8602:14781060,36560749:141119 +k1,8602:16657573,36560749:141120 +k1,8602:18495419,36560749:141119 +k1,8602:21836006,36560749:141119 +k1,8602:22604961,36560749:141120 +k1,8602:23765165,36560749:141119 +k1,8602:26147615,36560749:141119 +k1,8602:29648766,36560749:141120 +k1,8602:30658237,36560749:141119 k1,8602:32583029,36560749:0 ) (1,8603:6630773,37425829:25952256,505283,134348 @@ -158900,9 +159077,7 @@ g1,8629:-473656,-710413 ) ] !28987 -}130 -Input:1251:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1252:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}131 Input:1253:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -158934,8 +159109,10 @@ Input:1280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1282:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1283:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1284:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1285:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3048 -{131 +{132 [1,8698:4262630,47279633:28320399,43253760,0 (1,8698:4262630,4025873:0,0,0 [1,8698:-473656,4025873:0,0,0 @@ -159078,21 +159255,21 @@ k1,8628:31421731,6254097:208858 k1,8628:32583029,6254097:0 ) (1,8629:6630773,7119177:25952256,505283,126483 -k1,8628:7635921,7119177:163010 -k1,8628:10232938,7119177:163010 -k1,8628:11415033,7119177:163010 -k1,8628:13820029,7119177:163009 -k1,8628:16375758,7119177:163010 -k1,8628:18177823,7119177:163010 -k1,8628:18992261,7119177:163010 -k1,8628:21047295,7119177:163010 -k1,8628:22577386,7119177:163010 -k1,8628:23931841,7119177:163010 -k1,8628:25485525,7119177:163010 -k1,8628:27287589,7119177:163009 -k1,8628:28933023,7119177:163010 -k1,8628:29747461,7119177:163010 -k1,8628:30929556,7119177:163010 +k1,8628:7624343,7119177:151432 +k1,8628:10209782,7119177:151432 +k1,8628:11380299,7119177:151432 +k1,8628:13773717,7119177:151431 +k1,8628:16317868,7119177:151432 +k1,8628:18108355,7119177:151432 +k1,8628:18911215,7119177:151432 +k1,8628:20954671,7119177:151432 +k1,8628:22646854,7119177:151432 +k1,8628:23989731,7119177:151432 +k1,8628:25531837,7119177:151432 +k1,8628:27322323,7119177:151431 +k1,8628:28956179,7119177:151432 +k1,8628:29759039,7119177:151432 +k1,8628:30929556,7119177:151432 k1,8628:32583029,7119177:0 ) (1,8629:6630773,7984257:25952256,505283,7863 @@ -159301,21 +159478,21 @@ k1,8661:30889579,16749701:228751 k1,8662:32583029,16749701:0 ) (1,8662:6764466,17614781:25818563,505283,134348 -k1,8661:8520644,17614781:216082 -k1,8661:9554614,17614781:216081 -k1,8661:11210522,17614781:216082 -k1,8661:12235973,17614781:216081 -k1,8661:13950208,17614781:216082 -h1,8661:14747126,17614781:0,0,0 -k1,8661:14963207,17614781:216081 -k1,8661:16047641,17614781:216082 -k1,8661:17368004,17614781:216081 -k1,8661:18864004,17614781:216082 -k1,8661:21148401,17614781:216081 -k1,8661:22015911,17614781:216082 -k1,8661:24209869,17614781:216081 -k1,8661:27379659,17614781:216082 -k1,8661:29709931,17614781:216081 +k1,8661:8508239,17614781:203677 +k1,8661:9529804,17614781:203676 +k1,8661:11173307,17614781:203677 +k1,8661:12186353,17614781:203676 +k1,8661:13888183,17614781:203677 +h1,8661:14685101,17614781:0,0,0 +k1,8661:15062447,17614781:203676 +k1,8661:16134476,17614781:203677 +k1,8661:17442434,17614781:203676 +k1,8661:18926029,17614781:203677 +k1,8661:21198021,17614781:203676 +k1,8661:22053126,17614781:203677 +k1,8661:24234679,17614781:203676 +k1,8661:27392064,17614781:203677 +k1,8661:29709931,17614781:203676 k1,8662:32583029,17614781:0 ) (1,8662:6764466,18479861:25818563,513147,134348 @@ -159587,37 +159764,37 @@ k1,8661:31931601,25400501:238096 k1,8661:32583029,25400501:0 ) (1,8662:6764466,26265581:25818563,505283,115847 -k1,8661:10148828,26265581:191448 -k1,8661:13467655,26265581:191449 -k1,8661:16779272,26265581:191448 -(1,8661:16779272,26265581:0,452978,115847 -r1,8698:21006368,26265581:4227096,568825,115847 -k1,8661:16779272,26265581:-4227096 -) -(1,8661:16779272,26265581:4227096,452978,115847 -k1,8661:16779272,26265581:3277 -h1,8661:21003091,26265581:0,411205,112570 -) -k1,8661:21371487,26265581:191449 -(1,8661:21371487,26265581:0,452978,115847 -r1,8698:25598583,26265581:4227096,568825,115847 -k1,8661:21371487,26265581:-4227096 -) -(1,8661:21371487,26265581:4227096,452978,115847 -k1,8661:21371487,26265581:3277 -h1,8661:25595306,26265581:0,411205,112570 -) -k1,8661:25790031,26265581:191448 -k1,8661:27172925,26265581:191449 -(1,8661:27172925,26265581:0,452978,115847 -r1,8698:31400021,26265581:4227096,568825,115847 -k1,8661:27172925,26265581:-4227096 -) -(1,8661:27172925,26265581:4227096,452978,115847 -k1,8661:27172925,26265581:3277 -h1,8661:31396744,26265581:0,411205,112570 -) -k1,8661:31591469,26265581:191448 +k1,8661:10124018,26265581:166638 +k1,8661:13418035,26265581:166639 +k1,8661:16704842,26265581:166638 +(1,8661:16704842,26265581:0,452978,115847 +r1,8698:20931938,26265581:4227096,568825,115847 +k1,8661:16704842,26265581:-4227096 +) +(1,8661:16704842,26265581:4227096,452978,115847 +k1,8661:16704842,26265581:3277 +h1,8661:20928661,26265581:0,411205,112570 +) +k1,8661:21272247,26265581:166639 +(1,8661:21272247,26265581:0,452978,115847 +r1,8698:25499343,26265581:4227096,568825,115847 +k1,8661:21272247,26265581:-4227096 +) +(1,8661:21272247,26265581:4227096,452978,115847 +k1,8661:21272247,26265581:3277 +h1,8661:25496066,26265581:0,411205,112570 +) +k1,8661:25839651,26265581:166638 +k1,8661:27197735,26265581:166639 +(1,8661:27197735,26265581:0,452978,115847 +r1,8698:31424831,26265581:4227096,568825,115847 +k1,8661:27197735,26265581:-4227096 +) +(1,8661:27197735,26265581:4227096,452978,115847 +k1,8661:27197735,26265581:3277 +h1,8661:31421554,26265581:0,411205,112570 +) +k1,8661:31591469,26265581:166638 k1,8661:32583029,26265581:0 ) (1,8662:6764466,27130661:25818563,513147,134348 @@ -160033,13 +160210,13 @@ g1,8698:-473656,-710413 ) ] !31177 -}131 -Input:1284:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1285:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}132 Input:1286:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1287:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1288:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1289:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{132 +{133 [1,8825:4262630,47279633:28320399,43253760,0 (1,8825:4262630,4025873:0,0,0 [1,8825:-473656,4025873:0,0,0 @@ -160405,14 +160582,14 @@ k1,8720:32583029,18044258:0 ) (1,8721:6764466,18909338:25818563,513147,126483 g1,8720:9625112,18909338 -g1,8720:11692772,18909338 -g1,8720:12760353,18909338 -g1,8720:14371883,18909338 -g1,8720:15590197,18909338 -g1,8720:18898454,18909338 -g1,8720:20665304,18909338 -g1,8720:21220393,18909338 -k1,8721:32583029,18909338:9222886 +g1,8720:11866443,18909338 +g1,8720:12934024,18909338 +g1,8720:14545554,18909338 +g1,8720:15763868,18909338 +g1,8720:19072125,18909338 +g1,8720:20838975,18909338 +g1,8720:21394064,18909338 +k1,8721:32583029,18909338:9049215 g1,8721:32583029,18909338 ) v1,8723:6764466,19594193:0,393216,0 @@ -161015,9 +161192,7 @@ g1,8825:-473656,-710413 ) ] !25246 -}132 -Input:1288:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1289:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}133 Input:1290:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1291:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1292:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -161029,8 +161204,10 @@ Input:1297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1300:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1301:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{133 +{134 [1,8857:4262630,47279633:28320399,43253760,0 (1,8857:4262630,4025873:0,0,0 [1,8857:-473656,4025873:0,0,0 @@ -161262,20 +161439,20 @@ k1,8828:6764466,10282319:-1091726 ) (1,8828:6764466,10282319:1091726,754393,260573 ) -k1,8828:8024174,10282319:167982 -k1,8828:8351854,10282319:327680 -k1,8828:10352222,10282319:167981 -k1,8828:11051701,10282319:167982 -k1,8828:12029052,10282319:167981 -k1,8828:15510534,10282319:167982 -k1,8828:16329944,10282319:167982 -k1,8828:17517010,10282319:167981 -k1,8828:20451267,10282319:167982 -k1,8828:22974613,10282319:167982 -k1,8828:25959987,10282319:167981 -k1,8828:27319414,10282319:167982 -k1,8828:29889945,10282319:167981 -k1,8828:30717219,10282319:167982 +k1,8828:8010814,10282319:154622 +k1,8828:8338494,10282319:327680 +k1,8828:10325504,10282319:154623 +k1,8828:11011623,10282319:154622 +k1,8828:11975616,10282319:154623 +k1,8828:15443738,10282319:154622 +k1,8828:16249788,10282319:154622 +k1,8828:17423496,10282319:154623 +k1,8828:20344393,10282319:154622 +k1,8828:22854379,10282319:154622 +k1,8828:26000065,10282319:154623 +k1,8828:27346132,10282319:154622 +k1,8828:29903305,10282319:154623 +k1,8828:30717219,10282319:154622 k1,8829:32583029,10282319:0 ) (1,8829:6764466,11147399:25818563,513147,134348 @@ -161580,20 +161757,20 @@ k1,8839:30019916,29579481:165675 k1,8839:32583029,29579481:0 ) (1,8840:6630773,30444561:25952256,513147,134348 -k1,8839:8264634,30444561:213040 -k1,8839:9129101,30444561:213039 -k1,8839:10754442,30444561:213040 -k1,8839:11650367,30444561:213040 -k1,8839:14045101,30444561:213040 -k1,8839:17143690,30444561:213039 -k1,8839:18746093,30444561:213040 -k1,8839:19490630,30444561:213040 -k1,8839:22833013,30444561:213039 -k1,8839:23662091,30444561:213040 -k1,8839:24894216,30444561:213040 -k1,8839:25522085,30444561:213026 -k1,8839:30734866,30444561:213039 -k1,8839:31563944,30444561:213040 +k1,8839:8282704,30444561:231110 +k1,8839:9165242,30444561:231110 +k1,8839:10808654,30444561:231111 +k1,8839:11722649,30444561:231110 +k1,8839:14135453,30444561:231110 +k1,8839:16999144,30444561:231110 +k1,8839:18619618,30444561:231111 +k1,8839:19382225,30444561:231110 +k1,8839:22742679,30444561:231110 +k1,8839:23589827,30444561:231110 +k1,8839:24840022,30444561:231110 +k1,8839:25485944,30444561:231079 +k1,8839:30716796,30444561:231110 +k1,8839:31563944,30444561:231110 k1,8839:32583029,30444561:0 ) (1,8840:6630773,31309641:25952256,505283,134348 @@ -161939,9 +162116,7 @@ g1,8857:-473656,-710413 ) ] !26271 -}133 -Input:1301:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}134 Input:1303:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1304:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -161958,8 +162133,10 @@ Input:1315:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1316:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1317:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1318:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{134 +{135 [1,8926:4262630,47279633:28320399,43253760,0 (1,8926:4262630,4025873:0,0,0 [1,8926:-473656,4025873:0,0,0 @@ -162120,32 +162297,32 @@ k1,8856:31708779,7119177:234432 k1,8857:32583029,7119177:0 ) (1,8857:6630773,7984257:25952256,513147,126483 -k1,8856:8398345,7984257:270074 -k1,8856:10848802,7984257:270074 -k1,8856:12455811,7984257:270075 -k1,8856:13473651,7984257:270074 -k1,8856:14809996,7984257:270074 -k1,8856:17801125,7984257:270074 -k1,8856:19465150,7984257:270074 -k1,8856:21768807,7984257:270075 -k1,8856:22453653,7984257:270003 -k1,8856:25561436,7984257:270074 -k1,8856:28507345,7984257:270074 +k1,8856:8331542,7984257:203271 +k1,8856:10715196,7984257:203271 +k1,8856:12255401,7984257:203271 +k1,8856:13206438,7984257:203271 +k1,8856:14475980,7984257:203271 +k1,8856:17400306,7984257:203271 +k1,8856:18997528,7984257:203271 +k1,8856:21234381,7984257:203271 +k1,8856:21852491,7984257:203267 +k1,8856:24893471,7984257:203271 +k1,8856:27772577,7984257:203271 +k1,8856:32051532,7984257:203271 k1,8856:32583029,7984257:0 ) (1,8857:6630773,8849337:25952256,505283,134348 -k1,8856:7376301,8849337:214031 -k1,8856:9277229,8849337:214031 -k1,8856:10682704,8849337:214030 -k1,8856:13487373,8849337:214031 -k1,8856:14720489,8849337:214031 -k1,8856:17556615,8849337:214031 -k1,8856:19160009,8849337:214031 -k1,8856:19905537,8849337:214031 -k1,8856:22798679,8849337:214030 -k1,8856:24280176,8849337:214031 -k1,8856:26218444,8849337:214016 -k1,8856:29911126,8849337:214031 +k1,8856:8557655,8849337:239985 +k1,8856:9989084,8849337:239984 +k1,8856:12819707,8849337:239985 +k1,8856:14078776,8849337:239984 +k1,8856:16940856,8849337:239985 +k1,8856:18570203,8849337:239984 +k1,8856:19801748,8849337:239985 +k1,8856:22720844,8849337:239984 +k1,8856:24228295,8849337:239985 +k1,8856:26192490,8849337:239943 +k1,8856:29911126,8849337:239985 k1,8856:32583029,8849337:0 ) (1,8857:6630773,9714417:25952256,513147,134348 @@ -162954,17 +163131,17 @@ g1,8926:-473656,-710413 ) ] !27899 -}134 -Input:1319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}135 Input:1321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1322:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1323:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1324:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1325:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1326:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1327:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1328:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{135 +{136 [1,9010:4262630,47279633:28320399,43253760,0 (1,9010:4262630,4025873:0,0,0 [1,9010:-473656,4025873:0,0,0 @@ -163974,9 +164151,7 @@ g1,9010:-473656,-710413 ) ] !28139 -}135 -Input:1327:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1328:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}136 Input:1329:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1330:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1331:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -163993,8 +164168,10 @@ Input:1341:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{136 +{137 [1,9073:4262630,47279633:28320399,43253760,0 (1,9073:4262630,4025873:0,0,0 [1,9073:-473656,4025873:0,0,0 @@ -164474,22 +164651,22 @@ k1,9045:32583030,25351461:20901004 g1,9045:32583030,25351461 ) (1,9048:6630773,26609757:25952256,513147,134348 -k1,9047:7484748,26609757:226140 -k1,9047:9312589,26609757:226141 -k1,9047:11236111,26609757:226140 -k1,9047:12481336,26609757:226140 -k1,9047:14309176,26609757:226140 -k1,9047:17211807,26609757:226141 -k1,9047:18675922,26609757:226140 -k1,9047:19561354,26609757:226140 -k1,9047:22801495,26609757:226140 -k1,9047:23798339,26609757:226141 -k1,9047:26838595,26609757:226140 -k1,9047:27724027,26609757:226140 -k1,9047:28306027,26609757:226140 -k1,9047:29921531,26609757:226141 -k1,9047:31082214,26609757:226140 -k1,9047:31839851,26609757:226140 +k1,9047:7473894,26609757:215286 +k1,9047:9290880,26609757:215286 +k1,9047:11377218,26609757:215285 +k1,9047:12611589,26609757:215286 +k1,9047:14428575,26609757:215286 +k1,9047:17320351,26609757:215286 +k1,9047:18773612,26609757:215286 +k1,9047:19648190,26609757:215286 +k1,9047:22877476,26609757:215285 +k1,9047:23863465,26609757:215286 +k1,9047:26892867,26609757:215286 +k1,9047:27767445,26609757:215286 +k1,9047:28338591,26609757:215286 +k1,9047:29943239,26609757:215285 +k1,9047:31093068,26609757:215286 +k1,9047:31839851,26609757:215286 k1,9047:32583029,26609757:0 ) (1,9048:6630773,27474837:25952256,505283,134348 @@ -164957,13 +165134,13 @@ g1,9073:-473656,-710413 ) ] !27178 -}136 -Input:1345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}137 Input:1347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1349:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1350:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{137 +{138 [1,9107:4262630,47279633:28320399,43253760,0 (1,9107:4262630,4025873:0,0,0 [1,9107:-473656,4025873:0,0,0 @@ -165108,30 +165285,30 @@ k1,9072:30839116,6254097:207850 k1,9072:32583029,6254097:0 ) (1,9073:6630773,7119177:25952256,513147,134348 -k1,9072:7525681,7119177:235616 -k1,9072:10474488,7119177:235616 -k1,9072:11326142,7119177:235616 -k1,9072:12580843,7119177:235616 -(1,9072:12580843,7119177:0,459977,115847 -r1,9107:16104515,7119177:3523672,575824,115847 -k1,9072:12580843,7119177:-3523672 -) -(1,9072:12580843,7119177:3523672,459977,115847 -k1,9072:12580843,7119177:3277 -h1,9072:16101238,7119177:0,411205,112570 -) -k1,9072:16513801,7119177:235616 -k1,9072:17567306,7119177:235616 -k1,9072:20892946,7119177:235617 -k1,9072:21744600,7119177:235616 -k1,9072:24258903,7119177:235616 -h1,9072:25229491,7119177:0,0,0 -k1,9072:25465107,7119177:235616 -k1,9072:26510093,7119177:235616 -k1,9072:28243862,7119177:235616 -h1,9072:29439239,7119177:0,0,0 -k1,9072:29674855,7119177:235616 -k1,9072:30929556,7119177:235616 +k1,9072:7513276,7119177:223211 +k1,9072:10449678,7119177:223211 +k1,9072:11288927,7119177:223211 +k1,9072:12531223,7119177:223211 +(1,9072:12531223,7119177:0,459977,115847 +r1,9107:16054895,7119177:3523672,575824,115847 +k1,9072:12531223,7119177:-3523672 +) +(1,9072:12531223,7119177:3523672,459977,115847 +k1,9072:12531223,7119177:3277 +h1,9072:16051618,7119177:0,411205,112570 +) +k1,9072:16451776,7119177:223211 +k1,9072:17492876,7119177:223211 +k1,9072:20806111,7119177:223212 +k1,9072:21645360,7119177:223211 +k1,9072:24147258,7119177:223211 +h1,9072:25117846,7119177:0,0,0 +k1,9072:25341057,7119177:223211 +k1,9072:26373638,7119177:223211 +k1,9072:28095002,7119177:223211 +h1,9072:29290379,7119177:0,0,0 +k1,9072:29687260,7119177:223211 +k1,9072:30929556,7119177:223211 k1,9072:32583029,7119177:0 ) (1,9073:6630773,7984257:25952256,513147,126483 @@ -165261,27 +165438,27 @@ k1,9088:31333913,24706677:285081 k1,9089:32583029,24706677:0 ) (1,9089:6630773,25571757:25952256,513147,134348 -k1,9088:8343884,25571757:224788 -k1,9088:10996125,25571757:224787 -k1,9088:12377623,25571757:224788 -k1,9088:14496400,25571757:224787 -k1,9088:15912633,25571757:224788 -k1,9088:17294130,25571757:224787 -k1,9088:20139047,25571757:224788 -k1,9088:22875174,25571757:224787 -k1,9088:23751390,25571757:224788 -(1,9088:23751390,25571757:0,452978,115847 -r1,9107:25868215,25571757:2116825,568825,115847 -k1,9088:23751390,25571757:-2116825 -) -(1,9088:23751390,25571757:2116825,452978,115847 -k1,9088:23751390,25571757:3277 -h1,9088:25864938,25571757:0,411205,112570 -) -k1,9088:26093002,25571757:224787 -k1,9088:28490964,25571757:224788 -k1,9088:29331789,25571757:224787 -k1,9088:29912437,25571757:224788 +k1,9088:8504194,25571757:211428 +k1,9088:11143077,25571757:211429 +k1,9088:12511215,25571757:211428 +k1,9088:14616633,25571757:211428 +k1,9088:16019507,25571757:211429 +k1,9088:17387645,25571757:211428 +k1,9088:20219202,25571757:211428 +k1,9088:22941970,25571757:211428 +k1,9088:23804827,25571757:211429 +(1,9088:23804827,25571757:0,452978,115847 +r1,9107:25921652,25571757:2116825,568825,115847 +k1,9088:23804827,25571757:-2116825 +) +(1,9088:23804827,25571757:2116825,452978,115847 +k1,9088:23804827,25571757:3277 +h1,9088:25918375,25571757:0,411205,112570 +) +k1,9088:26133080,25571757:211428 +k1,9088:28517682,25571757:211428 +k1,9088:29345149,25571757:211429 +k1,9088:29912437,25571757:211428 k1,9089:32583029,25571757:0 ) (1,9089:6630773,26436837:25952256,505283,134348 @@ -165441,9 +165618,7 @@ g1,9107:-473656,-710413 ) ] !12876 -}137 -Input:1349:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1350:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}138 Input:1351:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1352:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1353:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -165453,8 +165628,10 @@ Input:1356:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1358:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1359:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{138 +{139 [1,9164:4262630,47279633:28320399,43253760,0 (1,9164:4262630,4025873:0,0,0 [1,9164:-473656,4025873:0,0,0 @@ -165654,55 +165831,55 @@ k1,9108:29093237,9714417:216269 k1,9108:32583029,9714417:0 ) (1,9109:6630773,10579497:25952256,513147,126483 -k1,9108:8193485,10579497:295246 -k1,9108:8844590,10579497:295245 -k1,9108:10122876,10579497:295246 -k1,9108:12598505,10579497:295246 -k1,9108:14085196,10579497:295246 -k1,9108:15771115,10579497:295245 -k1,9108:16524458,10579497:295246 -k1,9108:17471132,10579497:295246 -k1,9108:19284846,10579497:295245 -k1,9108:22635380,10579497:295246 -k1,9108:25268295,10579497:295246 -k1,9108:26179579,10579497:295246 -k1,9108:26889571,10579497:295149 -k1,9108:28928075,10579497:295246 -k1,9108:29839358,10579497:295245 -k1,9108:31153689,10579497:295246 +k1,9108:8137332,10579497:239093 +k1,9108:8732285,10579497:239093 +k1,9108:9954418,10579497:239093 +k1,9108:12373894,10579497:239093 +k1,9108:13804433,10579497:239094 +k1,9108:15434200,10579497:239093 +k1,9108:16131390,10579497:239093 +k1,9108:17021911,10579497:239093 +k1,9108:18779473,10579497:239093 +k1,9108:22073854,10579497:239093 +k1,9108:24650616,10579497:239093 +k1,9108:25505747,10579497:239093 +k1,9108:26159644,10579497:239054 +k1,9108:28141995,10579497:239093 +k1,9108:28997126,10579497:239093 +k1,9108:30255304,10579497:239093 +k1,9108:31923737,10579497:239093 k1,9108:32583029,10579497:0 ) (1,9109:6630773,11444577:25952256,513147,134348 -k1,9108:7521311,11444577:231246 -k1,9108:9911313,11444577:231246 -k1,9108:11522747,11444577:231246 -k1,9108:14547793,11444577:231246 -k1,9108:16646161,11444577:231247 -k1,9108:17560292,11444577:231246 -k1,9108:20046632,11444577:231246 -k1,9108:21591220,11444577:231246 -k1,9108:23272122,11444577:231246 -k1,9108:25042809,11444577:231246 -k1,9108:26621443,11444577:231214 -k1,9108:28044134,11444577:231246 -k1,9108:29778089,11444577:231214 +k1,9108:9080516,11444577:290987 +k1,9108:10751692,11444577:290988 +k1,9108:13836479,11444577:290987 +k1,9108:15994587,11444577:290987 +k1,9108:16968460,11444577:290988 +k1,9108:19514541,11444577:290987 +k1,9108:21118870,11444577:290987 +k1,9108:22859514,11444577:290988 +k1,9108:24689942,11444577:290987 +k1,9108:26502020,11444577:290987 +k1,9108:27984453,11444577:290988 +k1,9108:29778089,11444577:290895 k1,9108:32583029,11444577:0 ) (1,9109:6630773,12309657:25952256,513147,134348 -k1,9108:8841400,12309657:250445 -k1,9108:11810933,12309657:250444 -k1,9108:13374720,12309657:250445 -k1,9108:15074821,12309657:250445 -k1,9108:16791961,12309657:250444 -k1,9108:18144015,12309657:250394 -k1,9108:19585904,12309657:250444 -k1,9108:21455088,12309657:250445 -k1,9108:22388418,12309657:250445 -k1,9108:24797618,12309657:250444 -k1,9108:25699491,12309657:250445 -k1,9108:26305796,12309657:250445 -k1,9108:29178991,12309657:250444 -k1,9108:31436804,12309657:250445 +k1,9108:8828991,12309657:238036 +k1,9108:11786116,12309657:238036 +k1,9108:13337494,12309657:238036 +k1,9108:15025186,12309657:238036 +k1,9108:16729918,12309657:238036 +k1,9108:18243285,12309657:238036 +k1,9108:19672766,12309657:238036 +k1,9108:21529540,12309657:238035 +k1,9108:22450461,12309657:238036 +k1,9108:24847253,12309657:238036 +k1,9108:25736717,12309657:238036 +k1,9108:26330613,12309657:238036 +k1,9108:29191400,12309657:238036 +k1,9108:31436804,12309657:238036 k1,9108:32583029,12309657:0 ) (1,9109:6630773,13174737:25952256,513147,134348 @@ -165841,21 +166018,21 @@ k1,9112:32227169,20095377:236473 k1,9112:32583029,20095377:0 ) (1,9113:6630773,20960457:25952256,513147,134348 -k1,9112:7776299,20960457:162486 -k1,9112:8624946,20960457:162485 -k1,9112:11119858,20960457:162486 -k1,9112:12673017,20960457:162485 -k1,9112:14344142,20960457:162486 -k1,9112:16665383,20960457:162485 -k1,9112:17984579,20960457:162486 -k1,9112:19424361,20960457:162485 -k1,9112:20199609,20960457:162486 -k1,9112:20717954,20960457:162485 -k1,9112:22305848,20960457:162486 -k1,9112:23119761,20960457:162485 -k1,9112:26866411,20960457:162486 -k1,9112:29417683,20960457:162485 -k1,9112:30893511,20960457:162486 +k1,9112:7764721,20960457:150908 +k1,9112:8601790,20960457:150907 +k1,9112:11085124,20960457:150908 +k1,9112:12626705,20960457:150907 +k1,9112:14286252,20960457:150908 +k1,9112:16595915,20960457:150907 +k1,9112:17903533,20960457:150908 +k1,9112:19331737,20960457:150907 +k1,9112:20095407,20960457:150908 +k1,9112:20602174,20960457:150907 +k1,9112:22178490,20960457:150908 +k1,9112:22980825,20960457:150907 +k1,9112:26715897,20960457:150908 +k1,9112:29255591,20960457:150907 +k1,9112:30893511,20960457:150908 k1,9112:32583029,20960457:0 ) (1,9113:6630773,21825537:25952256,513147,134348 @@ -166430,10 +166607,10 @@ g1,9164:-473656,-710413 ) ] !27538 -}138 -Input:1360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}139 +Input:1362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{139 +{140 [1,9182:4262630,47279633:28320399,43253760,0 (1,9182:4262630,4025873:0,0,0 [1,9182:-473656,4025873:0,0,0 @@ -166672,94 +166849,96 @@ k1,9170:32583030,14177429:17570464 g1,9170:32583030,14177429 ) (1,9172:6630773,15435725:25952256,513147,134348 -k1,9171:7858919,15435725:186124 -k1,9171:10320453,15435725:186124 -k1,9171:12909127,15435725:186124 -k1,9171:13904621,15435725:186124 -k1,9171:15109830,15435725:186124 -k1,9171:17670979,15435725:186124 -k1,9171:18524259,15435725:186124 -k1,9171:19125213,15435725:186111 -k1,9171:22440681,15435725:186124 -k1,9171:23242843,15435725:186124 -k1,9171:24448052,15435725:186124 -k1,9171:26978399,15435725:186124 -k1,9171:29755817,15435725:186124 -k1,9171:30154920,15435725:186111 -k1,9171:32583029,15435725:0 +k1,9171:7944827,15435725:272032 +k1,9171:10492268,15435725:272031 +k1,9171:13166850,15435725:272032 +k1,9171:14248251,15435725:272031 +k1,9171:15539368,15435725:272032 +k1,9171:18186425,15435725:272032 +k1,9171:19125612,15435725:272031 +k1,9171:19812414,15435725:271959 +k1,9171:23213789,15435725:272031 +k1,9171:24101859,15435725:272032 +k1,9171:25392975,15435725:272031 +k1,9171:28009230,15435725:272032 +k1,9171:30872556,15435725:272032 +k1,9171:31357506,15435725:271958 +k1,9172:32583029,15435725:0 ) (1,9172:6630773,16300805:25952256,513147,134348 -k1,9171:7839354,16300805:189496 -k1,9171:9610889,16300805:189496 -k1,9171:10987898,16300805:189497 -k1,9171:12207620,16300805:189496 -k1,9171:13013154,16300805:189496 -k1,9171:13652227,16300805:189496 -k1,9171:18405699,16300805:189545 -k1,9171:19084749,16300805:189496 -k1,9171:20796646,16300805:189496 -k1,9171:21602180,16300805:189496 -k1,9171:24822062,16300805:189497 -k1,9171:27793561,16300805:189496 -k1,9171:30114288,16300805:189496 -k1,9171:32583029,16300805:0 -) -(1,9172:6630773,17165885:25952256,505283,134348 -k1,9171:8798127,17165885:192754 -k1,9171:10384812,17165885:192734 -k1,9171:13598100,17165885:192734 -k1,9171:14600204,17165885:192734 -k1,9171:15812023,17165885:192734 -k1,9171:16419594,17165885:192728 -k1,9171:19454624,17165885:192734 -k1,9171:20838803,17165885:192734 -k1,9171:25557454,17165885:192735 -k1,9171:26946875,17165885:192734 -k1,9171:28596474,17165885:192734 -k1,9171:32583029,17165885:0 +k1,9171:8218327,16300805:278800 +k1,9171:9516212,16300805:278800 +k1,9171:11377051,16300805:278800 +k1,9171:12843363,16300805:278800 +k1,9171:14152389,16300805:278800 +k1,9171:15047227,16300805:278800 +k1,9171:15775604,16300805:278800 +k1,9171:20618728,16300805:279197 +k1,9171:21387082,16300805:278800 +k1,9171:23188283,16300805:278800 +k1,9171:24083121,16300805:278800 +k1,9171:27392306,16300805:278800 +k1,9171:30453109,16300805:278800 +k1,9172:32583029,16300805:0 +) +(1,9172:6630773,17165885:25952256,513147,134348 +k1,9171:9243141,17165885:164599 +k1,9171:11382443,17165885:164702 +k1,9171:12940993,17165885:164599 +k1,9171:16126146,17165885:164599 +k1,9171:17100115,17165885:164599 +k1,9171:18283799,17165885:164599 +k1,9171:18863206,17165885:164564 +k1,9171:21870101,17165885:164599 +k1,9171:23226145,17165885:164599 +k1,9171:27916659,17165885:164598 +k1,9171:29277945,17165885:164599 +k1,9171:30899409,17165885:164599 +k1,9172:32583029,17165885:0 ) (1,9172:6630773,18030965:25952256,513147,134348 -k1,9171:8497737,18030965:284925 -k1,9171:10364701,18030965:284925 -k1,9171:11099202,18030965:284924 -k1,9171:15784214,18030965:284925 -k1,9171:19878092,18030965:284925 -k1,9171:22137873,18030965:285181 -k1,9171:25183174,18030965:284925 -k1,9171:25823959,18030965:284925 -k1,9171:27356689,18030965:284924 -k1,9171:31202185,18030965:284925 +k1,9171:9137656,18030965:224264 +k1,9171:10943959,18030965:224264 +k1,9171:12750263,18030965:224265 +k1,9171:13424104,18030965:224264 +k1,9171:18048455,18030965:224264 +k1,9171:22081672,18030965:224264 +k1,9171:24106865,18030965:224264 +k1,9171:27091506,18030965:224265 +k1,9171:27671630,18030965:224264 +k1,9171:29143700,18030965:224264 k1,9171:32583029,18030965:0 ) (1,9172:6630773,18896045:25952256,505283,134348 -k1,9171:8485776,18896045:272964 -k1,9171:10044555,18896045:272963 -k1,9171:12368796,18896045:272964 -k1,9171:14075687,18896045:272963 -k1,9171:14763420,18896045:272890 -k1,9171:17560830,18896045:272963 -k1,9171:19756620,18896045:272964 -k1,9171:21679781,18896045:272964 -k1,9171:24958880,18896045:272963 -k1,9171:28223563,18896045:272964 -k1,9171:29938973,18896045:272963 -k1,9171:32046290,18896045:272964 +k1,9171:8194408,18896045:204418 +k1,9171:9980865,18896045:204418 +k1,9171:11471099,18896045:204418 +k1,9171:13726794,18896045:204418 +k1,9171:15365140,18896045:204418 +k1,9171:15984396,18896045:204413 +k1,9171:18713261,18896045:204418 +k1,9171:20840505,18896045:204418 +k1,9171:22695120,18896045:204418 +k1,9171:25905674,18896045:204418 +k1,9171:29101811,18896045:204418 +k1,9171:30748676,18896045:204418 k1,9171:32583029,18896045:0 ) (1,9172:6630773,19761125:25952256,513147,134348 -k1,9171:7663979,19761125:279542 -k1,9171:8341981,19761125:279543 -k1,9171:11921916,19761125:279542 -k1,9171:13103889,19761125:279542 -k1,9171:16073030,19761125:279543 -k1,9171:19962295,19761125:279542 -k1,9171:20901130,19761125:279543 -k1,9171:23705119,19761125:279542 -k1,9171:25176106,19761125:279542 -k1,9171:27844436,19761125:279543 -k1,9171:30461647,19761125:279542 -k1,9171:31357227,19761125:279542 -k1,9171:32051532,19761125:279462 +k1,9171:7467341,19761125:213321 +k1,9171:8458573,19761125:213320 +k1,9171:9070353,19761125:213321 +k1,9171:12584067,19761125:213321 +k1,9171:13699818,19761125:213320 +k1,9171:16602737,19761125:213321 +k1,9171:20425781,19761125:213321 +k1,9171:21298393,19761125:213320 +k1,9171:24036161,19761125:213321 +k1,9171:25440927,19761125:213321 +k1,9171:28043034,19761125:213320 +k1,9171:30594024,19761125:213321 +k1,9171:31423383,19761125:213321 +k1,9171:32051532,19761125:213306 k1,9171:32583029,19761125:0 ) (1,9172:6630773,20626205:25952256,505283,126483 @@ -166794,10 +166973,10 @@ g1,9182:-473656,-710413 ] ) ] -!9924 -}139 +!9988 +}140 !11 -{140 +{141 [1,9207:4262630,47279633:28320399,43253760,11795 (1,9207:4262630,4025873:0,0,0 [1,9207:-473656,4025873:0,0,0 @@ -167304,13 +167483,13 @@ g1,9207:-473656,-710413 ) ] !14077 -}140 -Input:1361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}141 Input:1363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{141 +{142 [1,9256:4262630,47279633:28320399,43253760,0 (1,9256:4262630,4025873:0,0,0 [1,9256:-473656,4025873:0,0,0 @@ -167856,17 +168035,17 @@ g1,9222:32583029,30417331 ) (1,9243:6630773,31806699:25952256,513147,126483 h1,9242:6630773,31806699:983040,0,0 -k1,9242:8981966,31806699:171466 -k1,9242:12670094,31806699:171466 -k1,9242:13457598,31806699:171466 -k1,9242:14648149,31806699:171466 -k1,9242:16045794,31806699:171466 -k1,9242:17373970,31806699:171466 -k1,9242:18536996,31806699:171466 -k1,9242:20294433,31806699:171466 -k1,9242:24055961,31806699:171466 -k1,9242:25418872,31806699:171466 -k1,9242:28651525,31806699:171466 +k1,9242:8966178,31806699:155678 +k1,9242:12638517,31806699:155677 +k1,9242:13410233,31806699:155678 +k1,9242:14584996,31806699:155678 +k1,9242:15966853,31806699:155678 +k1,9242:17279240,31806699:155677 +k1,9242:18426478,31806699:155678 +k1,9242:20168127,31806699:155678 +k1,9242:24087538,31806699:155678 +k1,9242:25434660,31806699:155677 +k1,9242:28651525,31806699:155678 k1,9242:32583029,31806699:0 ) (1,9243:6630773,32671779:25952256,513147,134348 @@ -167999,19 +168178,19 @@ k1,9248:31914562,39592419:262144 k1,9248:32583029,39592419:0 ) (1,9249:6630773,40457499:25952256,513147,126483 -k1,9248:9009478,40457499:197011 -k1,9248:10595852,40457499:197011 -k1,9248:12360484,40457499:197011 -k1,9248:14044508,40457499:197012 -k1,9248:16865581,40457499:197011 -k1,9248:18081677,40457499:197011 -k1,9248:19668051,40457499:197011 -k1,9248:22419655,40457499:197011 -k1,9248:23808111,40457499:197011 -k1,9248:26300194,40457499:197012 -k1,9248:28707079,40457499:197011 -k1,9248:30294764,40457499:197011 -k1,9248:31510860,40457499:197011 +k1,9248:8996119,40457499:183652 +k1,9248:10569134,40457499:183652 +k1,9248:12320407,40457499:183652 +k1,9248:13991070,40457499:183651 +k1,9248:16798784,40457499:183652 +k1,9248:18001521,40457499:183652 +k1,9248:19574536,40457499:183652 +k1,9248:22486452,40457499:183652 +k1,9248:23861549,40457499:183652 +k1,9248:26340271,40457499:183651 +k1,9248:28733797,40457499:183652 +k1,9248:30308123,40457499:183652 +k1,9248:31510860,40457499:183652 k1,9249:32583029,40457499:0 ) (1,9249:6630773,41322579:25952256,513147,134348 @@ -168093,11 +168272,11 @@ g1,9256:-473656,-710413 ) ] !22124 -}141 -Input:1365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}142 +Input:1367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1368:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{142 +{143 [1,9283:4262630,47279633:28320399,43253760,0 (1,9283:4262630,4025873:0,0,0 [1,9283:-473656,4025873:0,0,0 @@ -168570,28 +168749,27 @@ g1,9274:32583029,31173735 h1,9274:6630773,31370343:0,0,0 (1,9278:6630773,32235423:25952256,513147,126483 h1,9277:6630773,32235423:983040,0,0 -k1,9277:10906607,32235423:193596 -k1,9277:11759495,32235423:193596 -k1,9277:12972176,32235423:193596 -k1,9277:16682434,32235423:193596 -k1,9277:17492068,32235423:193596 -k1,9277:18704749,32235423:193596 -k1,9277:19881385,32235423:193596 -k1,9277:22121015,32235423:193596 -k1,9277:22729449,32235423:193591 -k1,9277:25218116,32235423:193596 -(1,9277:25218116,32235423:0,452978,115847 -r1,9283:26983229,32235423:1765113,568825,115847 -k1,9277:25218116,32235423:-1765113 -) -(1,9277:25218116,32235423:1765113,452978,115847 -g1,9277:26628240,32235423 -h1,9277:26979952,32235423:0,411205,112570 -) -k1,9277:27176825,32235423:193596 -k1,9277:27983183,32235423:193596 -k1,9277:29195864,32235423:193596 -k1,9277:31809705,32235423:193596 +k1,9277:10974285,32235423:261274 +k1,9277:11894851,32235423:261274 +k1,9277:13175210,32235423:261274 +k1,9277:16953146,32235423:261274 +k1,9277:17830458,32235423:261274 +k1,9277:19110818,32235423:261275 +k1,9277:20355132,32235423:261274 +k1,9277:22662440,32235423:261274 +k1,9277:23338495,32235423:261212 +k1,9277:25894840,32235423:261274 +(1,9277:25894840,32235423:0,452978,115847 +r1,9283:27659953,32235423:1765113,568825,115847 +k1,9277:25894840,32235423:-1765113 +) +(1,9277:25894840,32235423:1765113,452978,115847 +g1,9277:27304964,32235423 +h1,9277:27656676,32235423:0,411205,112570 +) +k1,9277:27921227,32235423:261274 +k1,9277:28795263,32235423:261274 +k1,9277:30075622,32235423:261274 k1,9277:32583029,32235423:0 ) (1,9278:6630773,33100503:25952256,505283,126483 @@ -168872,10 +169050,10 @@ g1,9283:-473656,-710413 ] ) ] -!20989 -}142 +!20956 +}143 !12 -{143 +{144 [1,9328:4262630,47279633:28320399,43253760,0 (1,9328:4262630,4025873:0,0,0 [1,9328:-473656,4025873:0,0,0 @@ -169707,16 +169885,16 @@ g1,9328:-473656,-710413 ) ] !23567 -}143 -Input:1367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1368:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}144 Input:1369:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1370:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1371:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1372:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1373:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1374:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1375:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{144 +{145 [1,9365:4262630,47279633:28320399,43253760,0 (1,9365:4262630,4025873:0,0,0 [1,9365:-473656,4025873:0,0,0 @@ -169990,19 +170168,19 @@ k1,9333:32168186,13344465:255187 k1,9334:32583029,13344465:0 ) (1,9334:6630773,14209545:25952256,513147,126483 -k1,9333:8334759,14209545:207799 -k1,9333:9675021,14209545:207800 -k1,9333:10630586,14209545:207799 -k1,9333:14600808,14209545:207800 -k1,9333:16957533,14209545:207799 -k1,9333:18356778,14209545:207800 -k1,9333:21399664,14209545:207799 -k1,9333:22994861,14209545:207800 -k1,9333:24801738,14209545:207799 -k1,9333:25637373,14209545:207800 -k1,9333:27596949,14209545:207799 -k1,9333:29675802,14209545:207800 -k1,9333:31086842,14209545:207799 +k1,9333:8321400,14209545:194440 +k1,9333:9648302,14209545:194440 +k1,9333:10590509,14209545:194441 +k1,9333:14547371,14209545:194440 +k1,9333:17064407,14209545:194440 +k1,9333:18450292,14209545:194440 +k1,9333:21479820,14209545:194441 +k1,9333:23061657,14209545:194440 +k1,9333:24855175,14209545:194440 +k1,9333:25677450,14209545:194440 +k1,9333:27623668,14209545:194441 +k1,9333:29689161,14209545:194440 +k1,9333:31086842,14209545:194440 k1,9333:32583029,14209545:0 ) (1,9334:6630773,15074625:25952256,505283,134348 @@ -170044,40 +170222,40 @@ k1,9335:31482024,16804785:200634 k1,9335:32583029,16804785:0 ) (1,9336:6630773,17669865:25952256,513147,134348 -k1,9335:8320793,17669865:180070 -k1,9335:10078314,17669865:180069 -k1,9335:10941269,17669865:180070 -k1,9335:13651029,17669865:180070 -k1,9335:14987808,17669865:180069 -k1,9335:16894752,17669865:180070 -k1,9335:17726250,17669865:180070 -k1,9335:18998804,17669865:180069 -k1,9335:19636971,17669865:180070 -k1,9335:21519010,17669865:180069 -k1,9335:22315118,17669865:180070 -k1,9335:23514273,17669865:180070 -k1,9335:25855064,17669865:180069 -k1,9335:26662969,17669865:180070 -k1,9335:27862124,17669865:180070 -k1,9335:29348326,17669865:180069 -k1,9335:30895477,17669865:180070 +k1,9335:8310577,17669865:169854 +k1,9335:10057883,17669865:169854 +k1,9335:10910621,17669865:169853 +k1,9335:13610165,17669865:169854 +k1,9335:14936729,17669865:169854 +k1,9335:16833457,17669865:169854 +k1,9335:17654738,17669865:169853 +k1,9335:18917077,17669865:169854 +k1,9335:19545028,17669865:169854 +k1,9335:21416852,17669865:169854 +k1,9335:22202743,17669865:169853 +k1,9335:23391682,17669865:169854 +k1,9335:25722258,17669865:169854 +k1,9335:26519947,17669865:169854 +k1,9335:27708885,17669865:169853 +k1,9335:29184872,17669865:169854 +k1,9335:30895477,17669865:169854 k1,9335:32583029,17669865:0 ) (1,9336:6630773,18534945:25952256,505283,126483 -k1,9335:9402946,18534945:245760 -k1,9335:10781168,18534945:245760 -k1,9335:12439229,18534945:245760 -k1,9335:13143086,18534945:245760 -k1,9335:14580291,18534945:245760 -k1,9335:15442089,18534945:245760 -k1,9335:16706934,18534945:245760 -k1,9335:19194024,18534945:245759 -k1,9335:20806865,18534945:245760 -k1,9335:22209335,18534945:245760 -k1,9335:24301244,18534945:245760 -k1,9335:28136411,18534945:245760 -k1,9335:29148287,18534945:245760 -k1,9335:30413132,18534945:245760 +k1,9335:9378136,18534945:220950 +k1,9335:10731548,18534945:220950 +k1,9335:12364799,18534945:220950 +k1,9335:13217516,18534945:220950 +k1,9335:14629911,18534945:220950 +k1,9335:15466899,18534945:220950 +k1,9335:16706934,18534945:220950 +k1,9335:19169214,18534945:220949 +k1,9335:20930915,18534945:220950 +k1,9335:22308575,18534945:220950 +k1,9335:24375674,18534945:220950 +k1,9335:28186031,18534945:220950 +k1,9335:29173097,18534945:220950 +k1,9335:30413132,18534945:220950 k1,9335:32583029,18534945:0 ) (1,9336:6630773,19400025:25952256,513147,134348 @@ -170610,9 +170788,9 @@ g1,9365:-473656,-710413 ) ] !25675 -}144 +}145 !12 -{145 +{146 [1,9380:4262630,47279633:28320399,43253760,0 (1,9380:4262630,4025873:0,0,0 [1,9380:-473656,4025873:0,0,0 @@ -170985,225 +171163,227 @@ k1,9369:30617604,20022918:194940 k1,9369:32583029,20022918:0 ) (1,9371:6630773,20887998:25952256,513147,134348 -k1,9369:8804650,20887998:186826 -k1,9369:11550002,20887998:186826 -k1,9369:12683168,20887998:186826 -k1,9369:14162352,20887998:186814 -k1,9369:16768767,20887998:186826 -k1,9369:17583428,20887998:186826 -k1,9369:18789339,20887998:186826 -k1,9369:20343247,20887998:186827 -k1,9369:21197229,20887998:186826 -k1,9369:21798886,20887998:186814 -k1,9369:26511628,20887998:186826 -k1,9369:27717539,20887998:186826 -k1,9369:29210498,20887998:186826 -k1,9369:31923737,20887998:186826 +k1,9369:8869742,20887998:251918 +k1,9369:11680187,20887998:251919 +k1,9369:12878445,20887998:251918 +k1,9369:14422681,20887998:251866 +k1,9369:17094188,20887998:251918 +k1,9369:17973941,20887998:251918 +k1,9369:19244945,20887998:251919 +k1,9369:20863944,20887998:251918 +k1,9369:21783018,20887998:251918 +k1,9369:22449727,20887998:251866 +k1,9369:27227561,20887998:251918 +k1,9369:28498565,20887998:251919 +k1,9369:30056616,20887998:251918 k1,9369:32583029,20887998:0 ) -(1,9371:6630773,21753078:25952256,505283,134348 -k1,9369:9140385,21753078:250586 -k1,9369:13743217,21753078:250586 -k1,9369:15200976,21753078:250586 -k1,9369:16067600,21753078:250586 -k1,9369:19128369,21753078:250586 -k1,9369:21264425,21753078:250585 -k1,9369:22616016,21753078:250586 -k1,9369:24376552,21753078:250586 -k1,9369:28295188,21753078:250586 -k1,9369:29307302,21753078:250586 -k1,9369:31396827,21753078:250586 +(1,9371:6630773,21753078:25952256,513147,134348 +k1,9369:7588552,21753078:298487 +k1,9369:10146065,21753078:298487 +k1,9369:14796797,21753078:298486 +k1,9369:16302457,21753078:298487 +k1,9369:17216982,21753078:298487 +k1,9369:20325652,21753078:298487 +k1,9369:22509610,21753078:298487 +k1,9369:23909102,21753078:298487 +k1,9369:25717538,21753078:298486 +k1,9369:29684075,21753078:298487 +k1,9369:30744090,21753078:298487 k1,9369:32583029,21753078:0 ) (1,9371:6630773,22618158:25952256,513147,173670 -k1,9369:8802592,22618158:197219 -k1,9369:10380642,22618158:197206 -k1,9369:13158001,22618158:197207 -k1,9369:16211922,22618158:197207 -k1,9369:17428213,22618158:197206 -k1,9369:18717905,22618158:197207 -k1,9369:19582267,22618158:197206 -k1,9369:23082489,22618158:197207 -k1,9369:23962581,22618158:197207 -[1,9369:24091687,22618158:341312,473825,0 -(1,9369:24091687,22480139:341312,335806,0 -) -] -(1,9369:24659953,22791828:370934,473825,0 -) -k1,9369:25576745,22618158:197206 -k1,9369:28682440,22618158:197207 -k1,9369:30680575,22618158:197206 -k1,9369:31563944,22618158:197207 +k1,9369:7981963,22618158:185960 +k1,9369:10142601,22618158:186038 +k1,9369:11709405,22618158:185960 +k1,9369:14475516,22618158:185959 +k1,9369:17518190,22618158:185960 +k1,9369:18723234,22618158:185959 +k1,9369:20001679,22618158:185960 +k1,9369:20854794,22618158:185959 +k1,9369:24343769,22618158:185960 +k1,9369:25212613,22618158:185959 +[1,9369:25341719,22618158:341312,473825,0 +(1,9369:25341719,22480139:341312,335806,0 +) +] +(1,9369:25909985,22791828:370934,473825,0 +) +k1,9369:26815531,22618158:185960 +k1,9369:29909978,22618158:185959 +k1,9369:31896867,22618158:185960 k1,9369:32583029,22618158:0 ) (1,9371:6630773,23483238:25952256,513147,134348 -k1,9369:9260077,23483238:136970 -k1,9369:12239343,23483238:136970 -k1,9369:13323964,23483238:136970 -k1,9369:14480020,23483238:136971 -k1,9369:16819000,23483238:136970 -k1,9369:19705205,23483238:136970 -k1,9369:21033620,23483238:136970 -k1,9369:22456406,23483238:136970 -k1,9369:25104060,23483238:136970 -k1,9369:26432476,23483238:136971 -k1,9369:28850754,23483238:136970 -k1,9369:31071769,23483238:136970 +k1,9369:7900479,23483238:250621 +k1,9369:10643433,23483238:250620 +k1,9369:13736350,23483238:250621 +k1,9369:14934621,23483238:250620 +k1,9369:16204327,23483238:250621 +k1,9369:18656957,23483238:250620 +k1,9369:21656813,23483238:250621 +k1,9369:23098878,23483238:250620 +k1,9369:24635315,23483238:250621 +k1,9369:27396619,23483238:250620 +k1,9369:28838685,23483238:250621 +k1,9369:31370613,23483238:250620 k1,9371:32583029,23483238:0 ) (1,9371:6630773,24348318:25952256,505283,134348 -k1,9369:9287401,24348318:214101 -k1,9369:10152930,24348318:214101 -k1,9369:12036888,24348318:214101 -k1,9369:16016687,24348318:214100 -k1,9369:16762285,24348318:214101 -k1,9369:17747089,24348318:214101 -k1,9369:21033518,24348318:214101 -k1,9369:21899047,24348318:214101 -k1,9369:25416163,24348318:214101 -k1,9369:26914769,24348318:214100 -k1,9369:29174904,24348318:214101 -k1,9369:29847102,24348318:214101 -k1,9369:31931601,24348318:214101 +k1,9369:7832680,24348318:224110 +k1,9369:11904408,24348318:224109 +k1,9369:12779946,24348318:224110 +k1,9369:14673913,24348318:224110 +k1,9369:15321687,24348318:232931 +k1,9369:18896653,24348318:224110 +k1,9369:19652260,24348318:224110 +k1,9369:20647072,24348318:224109 +k1,9369:23943510,24348318:224110 +k1,9369:24819048,24348318:224110 +k1,9369:28346173,24348318:224110 +k1,9369:29854788,24348318:224109 +k1,9369:32124932,24348318:224110 k1,9369:32583029,24348318:0 ) (1,9371:6630773,25213398:25952256,505283,119528 -k1,9369:9115755,25213398:147313 -k1,9369:9677860,25213398:147262 -k1,9369:11321360,25213398:147313 -k1,9369:12084711,25213398:147313 -k1,9369:15765071,25213398:147314 -k1,9369:17144461,25213398:147313 -$1,9369:17144461,25213398 -k1,9369:18638253,25213398:0 -k1,9369:19011701,25213398:0 -k1,9369:19385149,25213398:0 -k1,9369:19758597,25213398:0 -k1,9369:23119629,25213398:0 -k1,9369:23493077,25213398:0 -k1,9369:26107213,25213398:0 -k1,9369:26480661,25213398:0 -$1,9369:27974453,25213398 -k1,9369:28502530,25213398:147313 -k1,9369:29119736,25213398:147313 -k1,9369:29798547,25213398:147314 -k1,9369:30964945,25213398:147313 +k1,9369:8736722,25213398:235551 +k1,9369:9623701,25213398:235551 +k1,9369:12196920,25213398:235550 +k1,9369:12847278,25213398:235515 +k1,9369:14579016,25213398:235551 +k1,9369:15430605,25213398:235551 +k1,9369:19199201,25213398:235550 +k1,9369:20666829,25213398:235551 +$1,9369:20666829,25213398 +k1,9369:22160621,25213398:0 +k1,9369:22534069,25213398:0 +k1,9369:22907517,25213398:0 +k1,9369:23280965,25213398:0 +k1,9369:26641997,25213398:0 +k1,9369:27015445,25213398:0 +k1,9369:29629581,25213398:0 +k1,9369:30003029,25213398:0 +$1,9369:31496821,25213398 +k1,9369:32113136,25213398:235551 k1,9369:32583029,25213398:0 ) (1,9371:6630773,26078478:25952256,513147,134348 -k1,9369:7440344,26078478:142415 -k1,9369:7997546,26078478:142359 -k1,9369:11050416,26078478:142416 -k1,9369:12477337,26078478:142415 -k1,9369:15146165,26078478:142415 -k1,9369:18856361,26078478:142416 -k1,9369:20569674,26078478:142415 -k1,9369:21903534,26078478:142415 -k1,9369:24732271,26078478:142416 -k1,9369:28407732,26078478:142415 +k1,9369:7364831,26078478:202561 +k1,9369:8586477,26078478:202561 +k1,9369:10407122,26078478:202561 +k1,9369:11276839,26078478:202561 +k1,9369:11894239,26078478:202557 +k1,9369:15007254,26078478:202561 +k1,9369:16494321,26078478:202561 +k1,9369:19223295,26078478:202561 +k1,9369:22993636,26078478:202561 +k1,9369:24767095,26078478:202561 +k1,9369:26161101,26078478:202561 +k1,9369:29049983,26078478:202561 k1,9369:32583029,26078478:0 ) (1,9371:6630773,26943558:25952256,513147,134348 -k1,9369:8059749,26943558:186413 -k1,9369:9712203,26943558:186414 -k1,9369:13972989,26943558:186413 -k1,9369:16739554,26943558:186413 -k1,9369:19812174,26943558:186414 -k1,9369:23690230,26943558:186413 -k1,9369:25068088,26943558:186413 -k1,9369:27089510,26943558:186414 -k1,9369:28223574,26943558:186413 +k1,9369:11050592,26943558:178986 +k1,9369:12498355,26943558:178986 +k1,9369:14143382,26943558:178987 +k1,9369:18396741,26943558:178986 +k1,9369:21155879,26943558:178986 +k1,9369:24221071,26943558:178986 +k1,9369:28265371,26943558:178987 +k1,9369:29635802,26943558:178986 +k1,9369:31649796,26943558:178986 k1,9369:32583029,26943558:0 ) -(1,9371:6630773,27808638:25952256,513147,126483 -k1,9369:7991729,27808638:195726 -k1,9369:9954974,27808638:195739 -k1,9369:11129808,27808638:195726 -k1,9369:11929776,27808638:195726 -k1,9369:12860167,27808638:195732 -k1,9369:15030514,27808638:195747 -k1,9369:17592744,27808638:195725 -k1,9369:19673941,27808638:195726 -k1,9369:22630043,27808638:195726 -k1,9369:23596471,27808638:195725 -k1,9369:26841587,27808638:195726 -k1,9369:29371050,27808638:195726 -k1,9369:30233931,27808638:195725 -k1,9369:30852223,27808638:203449 +(1,9371:6630773,27808638:25952256,505283,126483 +k1,9369:11191476,27808638:201248 +k1,9369:12578926,27808638:201248 +k1,9369:14547688,27808638:201256 +k1,9369:15728044,27808638:201248 +k1,9369:16533534,27808638:201248 +k1,9369:17469446,27808638:201253 +k1,9369:19645306,27808638:201260 +k1,9369:22213059,27808638:201248 +k1,9369:24299778,27808638:201248 +k1,9369:27261402,27808638:201248 +k1,9369:28233353,27808638:201248 +k1,9369:31483991,27808638:201248 k1,9371:32583029,27808638:0 ) -(1,9371:6630773,28673718:25952256,505283,134348 -k1,9369:8699444,28673718:168783 -k1,9369:9399724,28673718:168783 -k1,9369:13770019,28673718:168782 -k1,9369:14554840,28673718:168783 -k1,9369:15138436,28673718:168753 -k1,9369:17887370,28673718:168782 -k1,9369:20499990,28673718:168783 -k1,9369:23349196,28673718:168783 -k1,9369:24911930,28673718:168783 -k1,9369:26099798,28673718:168783 -k1,9369:28461415,28673718:168782 -k1,9369:31372224,28673718:168783 -k1,9369:32227169,28673718:168783 +(1,9371:6630773,28673718:25952256,513147,134348 +k1,9369:8119713,28673718:148073 +k1,9369:8934942,28673718:148073 +k1,9369:9503650,28673718:153865 +k1,9369:13176249,28673718:148073 +k1,9369:13855819,28673718:148073 +k1,9369:18205405,28673718:148073 +k1,9369:18969516,28673718:148073 +k1,9369:19532381,28673718:148022 +k1,9369:22260606,28673718:148073 +k1,9369:24852516,28673718:148073 +k1,9369:27681012,28673718:148073 +k1,9369:29223036,28673718:148073 +k1,9369:30390194,28673718:148073 k1,9369:32583029,28673718:0 ) (1,9371:6630773,29538798:25952256,513147,134348 -k1,9369:9530792,29538798:197314 -k1,9369:13275570,29538798:197314 -k1,9369:14669571,29538798:197314 -k1,9369:15959369,29538798:197313 -k1,9369:16815975,29538798:197314 -k1,9369:18852228,29538798:197314 -k1,9369:20240987,29538798:197314 -k1,9369:22882138,29538798:197314 -k1,9369:23610949,29538798:197314 -k1,9369:25162236,29538798:197313 -k1,9369:26638157,29538798:197314 -k1,9369:30099164,29538798:197314 -k1,9369:31563944,29538798:197314 +k1,9369:9560700,29538798:187901 +k1,9369:10434763,29538798:187901 +k1,9369:10978525,29538798:187902 +k1,9369:13869131,29538798:187901 +k1,9369:17604496,29538798:187901 +k1,9369:18989084,29538798:187901 +k1,9369:20269470,29538798:187901 +k1,9369:21116664,29538798:187902 +k1,9369:23143504,29538798:187901 +k1,9369:24522850,29538798:187901 +k1,9369:27154588,29538798:187901 +k1,9369:27873987,29538798:187902 +k1,9369:29415862,29538798:187901 +k1,9369:30882370,29538798:187901 k1,9371:32583029,29538798:0 ) (1,9371:6630773,30403878:25952256,513147,134348 -k1,9369:9307112,30403878:252162 -k1,9369:10820188,30403878:252163 -k1,9370:12269037,30403878:252162 -k1,9370:15916619,30403878:252162 -k1,9370:16828074,30403878:252163 -k1,9370:19400866,30403878:252162 -k1,9370:21979556,30403878:252162 -k1,9370:22763215,30403878:252162 -k1,9370:25381228,30403878:252163 -k1,9370:26652475,30403878:252162 -k1,9370:28731125,30403878:252162 -k1,9370:29642580,30403878:252163 -k1,9370:30913827,30403878:252162 +k1,9369:8505355,30403878:205380 +k1,9369:9978200,30403878:205379 +k1,9369:11202665,30403878:205380 +k1,9369:13832222,30403878:205380 +k1,9369:15298514,30403878:205379 +k1,9370:16700581,30403878:205380 +k1,9370:20301381,30403878:205380 +k1,9370:21166053,30403878:205380 +k1,9370:23692062,30403878:205379 +k1,9370:26223970,30403878:205380 +k1,9370:26960847,30403878:205380 +k1,9370:29532076,30403878:205379 +k1,9370:30756541,30403878:205380 k1,9370:32583029,30403878:0 ) -(1,9371:6630773,31268958:25952256,505283,126483 -k1,9370:7896813,31268958:193871 -k1,9370:8548781,31268958:193871 -k1,9370:9274148,31268958:193870 -k1,9370:10238722,31268958:193871 -k1,9370:13641891,31268958:193871 -k1,9370:15170075,31268958:193871 -k1,9370:16015374,31268958:193871 -k1,9370:17994446,31268958:193871 -k1,9370:18658209,31268958:193870 -k1,9370:19383577,31268958:193871 -k1,9370:20856055,31268958:193871 -k1,9370:24139949,31268958:193871 -k1,9370:24949858,31268958:193871 -k1,9370:26162814,31268958:193871 -k1,9370:28269025,31268958:193870 -k1,9370:29654341,31268958:193871 -k1,9370:31116989,31268958:193871 +(1,9371:6630773,31268958:25952256,513147,126483 +k1,9370:7512887,31268958:222822 +k1,9370:8754795,31268958:222823 +k1,9370:10733327,31268958:222822 +k1,9370:12028318,31268958:222822 +k1,9370:12709237,31268958:222822 +k1,9370:13463557,31268958:222823 +k1,9370:14457082,31268958:222822 +k1,9370:17889202,31268958:222822 +k1,9370:19446338,31268958:222823 +k1,9370:20320588,31268958:222822 +k1,9370:22328611,31268958:222822 +k1,9370:23021327,31268958:222823 +k1,9370:23775646,31268958:222822 +k1,9370:25277075,31268958:222822 +k1,9370:28589920,31268958:222822 +k1,9370:29428781,31268958:222823 +k1,9370:30670688,31268958:222822 k1,9370:32583029,31268958:0 ) (1,9371:6630773,32134038:25952256,505283,7863 -k1,9371:32583030,32134038:24340072 -g1,9371:32583030,32134038 +g1,9370:8021447,32134038 +g1,9370:9489453,32134038 +g1,9370:11154722,32134038 +k1,9371:32583029,32134038:19816122 +g1,9371:32583029,32134038 ) (1,9372:6630773,34250856:25952256,555811,147783 (1,9372:6630773,34250856:2450326,534184,12975 @@ -171337,52 +171517,51 @@ k1,9378:7858262,42954080:1310720 ) g1,9378:8185942,42954080 ) -k1,9379:8842039,42954080:186204 -k1,9379:10129248,42954080:186204 -k1,9379:11825402,42954080:186204 -k1,9379:13240406,42954080:186204 -k1,9379:14151439,42954080:186205 -k1,9379:14953681,42954080:186204 -k1,9379:15906001,42954080:186204 -k1,9379:16751497,42954080:186204 -k1,9379:17918775,42954080:186204 -k1,9379:21611810,42954080:186204 -k1,9379:22994701,42954080:186204 -k1,9379:24487038,42954080:186204 -k1,9379:26028528,42954080:186205 -k1,9379:26746229,42954080:186204 -k1,9379:27703136,42954080:186204 -k1,9379:30819455,42954080:186204 +k1,9379:8939650,42954080:283815 +k1,9379:10324469,42954080:283814 +k1,9379:12118234,42954080:283815 +k1,9379:13630848,42954080:283814 +k1,9379:14639491,42954080:283815 +k1,9379:15539344,42954080:283815 +k1,9379:16589274,42954080:283814 +k1,9379:17532381,42954080:283815 +k1,9379:18797269,42954080:283814 +k1,9379:22587915,42954080:283815 +k1,9379:24068417,42954080:283815 +k1,9379:25658364,42954080:283814 +k1,9379:27297464,42954080:283815 +k1,9379:28112775,42954080:283814 +k1,9379:29167293,42954080:283815 k1,9379:32010900,42954080:0 ) (1,9380:7202902,43819160:24807998,513147,134348 -k1,9379:9455526,43819160:226906 -k1,9379:11076382,43819160:226905 -k1,9379:11659148,43819160:226906 -k1,9379:13750553,43819160:226906 -k1,9379:15411386,43819160:226905 -k1,9379:19000944,43819160:226906 -k1,9379:22281828,43819160:226906 -k1,9379:24170727,43819160:226906 -k1,9379:26007852,43819160:226905 -k1,9379:27301029,43819160:226906 -k1,9379:28719380,43819160:226906 -k1,9379:29611475,43819160:226905 -k1,9379:30576972,43819160:226906 +k1,9379:8639905,43819160:245558 +k1,9379:10911181,43819160:245558 +k1,9379:12550691,43819160:245559 +k1,9379:13152109,43819160:245558 +k1,9379:15262166,43819160:245558 +k1,9379:16941652,43819160:245558 +k1,9379:20549863,43819160:245559 +k1,9379:23849399,43819160:245558 +k1,9379:25756950,43819160:245558 +k1,9379:27612728,43819160:245558 +k1,9379:28924558,43819160:245559 +k1,9379:30361561,43819160:245558 +k1,9379:31272309,43819160:245558 k1,9379:32010900,43819160:0 ) (1,9380:7202902,44684240:24807998,513147,134348 -k1,9379:8632111,44684240:144703 -k1,9379:11909436,44684240:144704 -k1,9379:13547705,44684240:144703 -k1,9379:15165002,44684240:144703 -k1,9379:17137504,44684240:144703 -k1,9379:18473653,44684240:144704 -k1,9379:21981008,44684240:144703 -k1,9379:23117271,44684240:144703 -k1,9379:27118113,44684240:144704 -k1,9379:30819455,44684240:144703 -k1,9379:32010900,44684240:0 +k1,9379:8872891,44684240:236061 +k1,9379:10393457,44684240:236060 +k1,9379:14089819,44684240:236061 +k1,9379:15819445,44684240:236060 +k1,9379:17528100,44684240:236061 +k1,9379:19591960,44684240:236061 +k1,9379:21019465,44684240:236060 +k1,9379:24618178,44684240:236061 +k1,9379:25845798,44684240:236060 +k1,9379:30265677,44684240:236061 +k1,9380:32010900,44684240:0 ) ] (1,9380:32583029,45706769:0,0,0 @@ -171405,12 +171584,12 @@ g1,9380:-473656,-710413 ] ) ] -!22880 -}145 -Input:1374:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1375:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!22893 +}146 +Input:1376:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1377:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{146 +{147 [1,9397:4262630,47279633:28320399,43253760,0 (1,9397:4262630,4025873:0,0,0 [1,9397:-473656,4025873:0,0,0 @@ -171537,25 +171716,27 @@ g1,9397:6630773,45706769 ) [1,9397:6630773,45706769:25952256,40108032,0 (1,9380:7202902,6254097:24807998,513147,134348 -k1,9379:9814119,6254097:179831 -k1,9379:10653241,6254097:179830 -k1,9379:13145838,6254097:179831 -k1,9379:16371782,6254097:179831 -k1,9379:18335502,6254097:179830 -k1,9379:19706778,6254097:179831 -k1,9379:21945750,6254097:179831 -k1,9379:23117141,6254097:179831 -k1,9379:26088805,6254097:179830 -k1,9379:28311393,6254097:179831 +k1,9379:9337647,6254097:217162 +k1,9379:10746255,6254097:217163 +k1,9379:13394803,6254097:217162 +k1,9379:14271257,6254097:217162 +k1,9379:16801186,6254097:217163 +k1,9379:20064461,6254097:217162 +k1,9379:22065514,6254097:217163 +k1,9379:23474121,6254097:217162 +k1,9379:25750424,6254097:217162 +k1,9379:26959147,6254097:217163 +k1,9379:29968143,6254097:217162 k1,9379:32010900,6254097:0 ) (1,9380:7202902,7119177:24807998,513147,126483 -g1,9379:9822376,7119177 -g1,9379:10704490,7119177 -g1,9379:12981210,7119177 -g1,9379:13711936,7119177 -g1,9379:16675474,7119177 -k1,9380:32010900,7119177:12774935 +g1,9379:11101638,7119177 +g1,9379:13721112,7119177 +g1,9379:14603226,7119177 +g1,9379:16879946,7119177 +g1,9379:17610672,7119177 +g1,9379:20574210,7119177 +k1,9380:32010900,7119177:8876199 g1,9380:32010900,7119177 ) (1,9383:6630773,8508545:25952256,505283,134348 @@ -171689,19 +171870,19 @@ k1,9384:30340387,15429185:195024 k1,9384:32583029,15429185:0 ) (1,9385:6630773,16294265:25952256,513147,126483 -k1,9384:9131626,16294265:154009 -k1,9384:10666480,16294265:154010 -k1,9384:11351986,16294265:154009 -k1,9384:12813439,16294265:154010 -k1,9384:14434144,16294265:154009 -k1,9384:15535805,16294265:154010 -k1,9384:18539319,16294265:154009 -k1,9384:21193528,16294265:154010 -k1,9384:23373255,16294265:154009 -k1,9384:25853793,16294265:154010 -k1,9384:27199247,16294265:154009 -k1,9384:28485064,16294265:154010 -k1,9384:30028436,16294265:154009 +k1,9384:9118267,16294265:140650 +k1,9384:10639761,16294265:140650 +k1,9384:11311908,16294265:140650 +k1,9384:12760002,16294265:140651 +k1,9384:14367348,16294265:140650 +k1,9384:15455649,16294265:140650 +k1,9384:18445804,16294265:140650 +k1,9384:21086653,16294265:140650 +k1,9384:23253021,16294265:140650 +k1,9384:25893870,16294265:140650 +k1,9384:27225966,16294265:140651 +k1,9384:28498423,16294265:140650 +k1,9384:30028436,16294265:140650 k1,9384:32583029,16294265:0 ) (1,9385:6630773,17159345:25952256,513147,134348 @@ -171828,112 +172009,113 @@ g1,9387:32583029,23214905 ) (1,9389:6630773,24079985:25952256,513147,134348 h1,9388:6630773,24079985:983040,0,0 -k1,9388:8339717,24079985:248147 -k1,9388:10702056,24079985:248148 -k1,9388:13305567,24079985:248147 -k1,9388:14236600,24079985:248148 -k1,9388:16598938,24079985:248147 -k1,9388:19125773,24079985:248148 -k1,9388:20640076,24079985:248147 -k1,9388:21244083,24079985:248147 -k1,9388:23485181,24079985:248148 -k1,9388:25413671,24079985:248147 -k1,9388:26193316,24079985:248148 -k1,9388:29220190,24079985:248147 -k1,9388:30229866,24079985:248148 -k1,9388:30833873,24079985:248147 -k1,9389:32583029,24079985:0 +k1,9388:8253225,24079985:161655 +k1,9388:10529072,24079985:161656 +k1,9388:13046091,24079985:161655 +k1,9388:13890632,24079985:161656 +k1,9388:16166478,24079985:161655 +k1,9388:18606821,24079985:161656 +k1,9388:20034632,24079985:161655 +k1,9388:20552148,24079985:161656 +k1,9388:22706753,24079985:161655 +k1,9388:24548752,24079985:161656 +k1,9388:25393292,24079985:161655 +k1,9388:26364318,24079985:161656 +k1,9388:28206316,24079985:161655 +k1,9388:28899469,24079985:161656 +k1,9388:31839851,24079985:161655 +k1,9388:32583029,24079985:0 ) (1,9389:6630773,24945065:25952256,513147,134348 -k1,9388:8927457,24945065:294559 -k1,9388:9904901,24945065:294559 -k1,9388:11008830,24945065:294559 -k1,9388:12983732,24945065:294559 -k1,9388:14727947,24945065:294559 -k1,9388:16041591,24945065:294559 -k1,9388:18167227,24945065:294560 -k1,9388:20862370,24945065:294559 -k1,9388:21839814,24945065:294559 -k1,9388:24595250,24945065:294559 -k1,9388:25245669,24945065:294559 -k1,9388:26978743,24945065:294559 -k1,9388:29261009,24945065:294559 +k1,9388:7202028,24945065:215395 +k1,9388:10888865,24945065:215395 +k1,9388:12553916,24945065:215395 +k1,9388:13788396,24945065:215395 +k1,9388:15834867,24945065:215395 +k1,9388:18450846,24945065:215395 +k1,9388:19349126,24945065:215395 +k1,9388:22025398,24945065:215395 +k1,9388:22596653,24945065:215395 +k1,9388:24250563,24945065:215395 +k1,9388:26453665,24945065:215395 +k1,9388:29991080,24945065:215395 k1,9388:32583029,24945065:0 ) (1,9389:6630773,25810145:25952256,513147,134348 -k1,9388:9480700,25810145:257978 -k1,9388:10354715,25810145:257977 -k1,9388:12869098,25810145:257978 -k1,9388:14146161,25810145:257978 -k1,9388:16186062,25810145:257977 -k1,9388:17103332,25810145:257978 -k1,9388:18380395,25810145:257978 -k1,9388:21488533,25810145:257977 -k1,9388:22943198,25810145:257978 -k1,9388:24983099,25810145:257977 -k1,9388:26345359,25810145:257978 -k1,9388:27351103,25810145:257978 -k1,9388:29465060,25810145:257977 -k1,9388:30078898,25810145:257978 -k1,9388:32583029,25810145:0 +k1,9388:7474385,25810145:227574 +k1,9388:9958363,25810145:227573 +k1,9388:11205022,25810145:227574 +k1,9388:13214520,25810145:227574 +k1,9388:14101385,25810145:227573 +k1,9388:15348044,25810145:227574 +k1,9388:18425779,25810145:227574 +k1,9388:19850040,25810145:227574 +k1,9388:21859537,25810145:227573 +k1,9388:23191393,25810145:227574 +k1,9388:24166733,25810145:227574 +k1,9388:26250286,25810145:227573 +k1,9388:26833720,25810145:227574 +k1,9388:29565425,25810145:227574 +k1,9388:30409036,25810145:227573 +k1,9388:31655695,25810145:227574 +k1,9389:32583029,25810145:0 ) (1,9389:6630773,26675225:25952256,513147,134348 -k1,9388:7440747,26675225:193936 -k1,9388:8653769,26675225:193937 -k1,9388:13904463,26675225:193936 -k1,9388:14757691,26675225:193936 -k1,9388:15722331,26675225:193937 -k1,9388:19200931,26675225:193936 -k1,9388:20081029,26675225:193936 -k1,9388:21553572,26675225:193936 -k1,9388:22433671,26675225:193937 -k1,9388:23243645,26675225:193936 -k1,9388:24456666,26675225:193936 -k1,9388:27761597,26675225:193937 -k1,9388:29734835,26675225:193936 +k1,9388:11086387,26675225:220022 +k1,9388:11965702,26675225:220023 +k1,9388:12956427,26675225:220022 +k1,9388:16287443,26675225:220022 +k1,9388:17190350,26675225:220022 +k1,9388:18026411,26675225:220023 +k1,9388:19265518,26675225:220022 +k1,9388:22596534,26675225:220022 +k1,9388:24595858,26675225:220022 +k1,9388:27750583,26675225:220023 +k1,9388:29722382,26675225:220022 k1,9388:32583029,26675225:0 ) (1,9389:6630773,27540305:25952256,513147,134348 -k1,9388:8616715,27540305:234165 -k1,9388:11711527,27540305:234165 -k1,9388:13454987,27540305:234165 -k1,9388:14680712,27540305:234165 -k1,9388:17117542,27540305:234165 -k1,9388:18113235,27540305:234165 -k1,9388:19524428,27540305:234166 -k1,9388:20441478,27540305:234165 -k1,9388:23147661,27540305:234165 -k1,9388:26183490,27540305:234165 -k1,9388:27076947,27540305:234165 -k1,9388:29505257,27540305:234165 -k1,9388:31436804,27540305:234165 +k1,9388:8401369,27540305:261301 +k1,9388:9654231,27540305:261302 +k1,9388:12118197,27540305:261301 +k1,9388:13141026,27540305:261301 +k1,9388:14753024,27540305:261301 +k1,9388:15697211,27540305:261302 +k1,9388:18604200,27540305:261301 +k1,9388:20361688,27540305:261301 +k1,9388:21570641,27540305:261302 +k1,9388:24633606,27540305:261301 +k1,9388:25554199,27540305:261301 +k1,9388:28009645,27540305:261301 +k1,9388:30142000,27540305:261302 +k1,9388:31896867,27540305:261301 k1,9388:32583029,27540305:0 ) -(1,9389:6630773,28405385:25952256,505283,134348 -k1,9388:9045884,28405385:258976 -k1,9388:11013385,28405385:258977 -k1,9388:13456676,28405385:258976 -k1,9388:16639213,28405385:258976 -k1,9388:19009105,28405385:258977 -k1,9388:21789251,28405385:258976 -k1,9388:22809755,28405385:258976 -k1,9388:24662568,28405385:258977 -k1,9388:26206705,28405385:258976 -k1,9388:27081719,28405385:258976 -k1,9388:29226167,28405385:258977 -k1,9388:29841003,28405385:258976 +(1,9389:6630773,28405385:25952256,513147,134348 +k1,9388:9013772,28405385:226864 +k1,9388:10949159,28405385:226863 +k1,9388:13360338,28405385:226864 +k1,9388:16510762,28405385:226863 +k1,9388:18848541,28405385:226864 +k1,9388:20266850,28405385:226864 +k1,9388:23014883,28405385:226863 +k1,9388:24003275,28405385:226864 +k1,9388:25823974,28405385:226863 +k1,9388:28409479,28405385:226864 +k1,9388:28992202,28405385:226863 +k1,9388:31914562,28405385:226864 k1,9388:32583029,28405385:0 ) (1,9389:6630773,29270465:25952256,513147,134348 -g1,9388:9230586,29270465 -g1,9388:11756998,29270465 -g1,9388:12615519,29270465 -g1,9388:15682603,29270465 -g1,9388:18148722,29270465 -g1,9388:18703811,29270465 -g1,9388:21175829,29270465 -g1,9388:22982001,29270465 -k1,9389:32583029,29270465:6843273 +g1,9388:8661078,29270465 +g1,9388:10583249,29270465 +g1,9388:13109661,29270465 +g1,9388:13968182,29270465 +g1,9388:17035266,29270465 +g1,9388:19501385,29270465 +g1,9388:20056474,29270465 +g1,9388:22528492,29270465 +k1,9389:32583029,29270465:7296782 g1,9389:32583029,29270465 ) (1,9391:6630773,30135545:25952256,513147,134348 @@ -171987,97 +172169,96 @@ k1,9390:30981329,31865705:215613 k1,9390:32583029,31865705:0 ) (1,9391:6630773,32730785:25952256,513147,134348 -k1,9390:8681445,32730785:179619 -k1,9390:9473826,32730785:179619 -k1,9390:10672530,32730785:179619 -k1,9390:12206123,32730785:179619 -k1,9390:14708993,32730785:179619 -k1,9390:15756964,32730785:179619 -k1,9390:17138512,32730785:179618 -k1,9390:18127501,32730785:179619 -k1,9390:19999260,32730785:179619 -k1,9390:21448967,32730785:179619 -k1,9390:22287878,32730785:179619 -k1,9390:28631158,32730785:179619 -k1,9390:31555425,32730785:179619 +k1,9390:8777678,32730785:275852 +k1,9390:9666292,32730785:275852 +k1,9390:10961228,32730785:275851 +k1,9390:12591054,32730785:275852 +k1,9390:15363828,32730785:275852 +k1,9390:16508031,32730785:275851 +k1,9390:17985813,32730785:275852 +k1,9390:19071035,32730785:275852 +k1,9390:21039027,32730785:275852 +k1,9390:22584967,32730785:275852 +k1,9390:23520110,32730785:275851 +k1,9390:29959623,32730785:275852 k1,9390:32583029,32730785:0 ) (1,9391:6630773,33595865:25952256,505283,126483 -k1,9390:9704888,33595865:239028 -k1,9390:10812267,33595865:239027 -k1,9390:12388229,33595865:239028 -k1,9390:14449158,33595865:239028 -k1,9390:15707271,33595865:239028 -k1,9390:17626641,33595865:239027 -k1,9390:20644396,33595865:239028 -k1,9390:21644952,33595865:239028 -k1,9390:25941969,33595865:239028 -k1,9390:29982739,33595865:239027 -k1,9390:31714677,33595865:239028 +k1,9390:7896035,33595865:223240 +k1,9390:10954361,33595865:223239 +k1,9390:12045953,33595865:223240 +k1,9390:13606126,33595865:223239 +k1,9390:15651267,33595865:223240 +k1,9390:16893591,33595865:223239 +k1,9390:18797174,33595865:223240 +k1,9390:21799140,33595865:223239 +k1,9390:22783908,33595865:223240 +k1,9390:27065136,33595865:223239 +k1,9390:31090119,33595865:223240 k1,9390:32583029,33595865:0 ) (1,9391:6630773,34460945:25952256,505283,134348 -k1,9390:8688663,34460945:164555 -k1,9390:9872303,34460945:164555 -k1,9390:12369283,34460945:164554 -k1,9390:14030025,34460945:164555 -k1,9390:17380940,34460945:164555 -k1,9390:20808533,34460945:164555 -k1,9390:21328948,34460945:164555 -k1,9390:23486453,34460945:164555 -k1,9390:25505021,34460945:164554 -k1,9390:28273977,34460945:164555 -k1,9390:31215948,34460945:164555 +k1,9390:7685188,34460945:212277 +k1,9390:9790800,34460945:212277 +k1,9390:11022162,34460945:212277 +k1,9390:13566865,34460945:212277 +k1,9390:15275329,34460945:212277 +k1,9390:18673965,34460945:212276 +k1,9390:22149280,34460945:212277 +k1,9390:22717417,34460945:212277 +k1,9390:24922644,34460945:212277 +k1,9390:26988935,34460945:212277 +k1,9390:29805613,34460945:212277 k1,9390:32583029,34460945:0 ) (1,9391:6630773,35326025:25952256,513147,134348 -k1,9390:7341879,35326025:179609 -k1,9390:9219527,35326025:179610 -k1,9390:11091276,35326025:179609 -k1,9390:12979410,35326025:179610 -k1,9390:15169664,35326025:179609 -k1,9390:17479849,35326025:179610 -k1,9390:18015318,35326025:179609 -k1,9390:19558076,35326025:179609 -k1,9390:20365521,35326025:179610 -k1,9390:22038696,35326025:179609 -k1,9390:23915688,35326025:179610 -k1,9390:24553394,35326025:179609 -k1,9390:25264501,35326025:179610 -k1,9390:28749091,35326025:179609 -k1,9390:30263669,35326025:179610 -k1,9390:31094706,35326025:179609 +k1,9390:8174187,35326025:176333 +k1,9390:8882016,35326025:176332 +k1,9390:10756387,35326025:176333 +k1,9390:12624859,35326025:176332 +k1,9390:14509716,35326025:176333 +k1,9390:16696694,35326025:176333 +k1,9390:19003601,35326025:176332 +k1,9390:19535794,35326025:176333 +k1,9390:21075276,35326025:176333 +k1,9390:21879443,35326025:176332 +k1,9390:23549342,35326025:176333 +k1,9390:25596727,35326025:176332 +k1,9390:26231157,35326025:176333 +k1,9390:26938987,35326025:176333 +k1,9390:30420300,35326025:176332 +k1,9390:31931601,35326025:176333 k1,9390:32583029,35326025:0 ) (1,9391:6630773,36191105:25952256,513147,134348 -k1,9390:7529271,36191105:136970 -k1,9390:9847935,36191105:136970 -k1,9390:10450866,36191105:136970 -k1,9390:13350180,36191105:136971 -k1,9390:15784842,36191105:136970 -k1,9390:16581104,36191105:136970 -k1,9390:18426598,36191105:136970 -k1,9390:19892638,36191105:136970 -k1,9390:20681036,36191105:136970 -k1,9390:25491379,36191105:136971 -k1,9390:26311234,36191105:136970 -k1,9390:27688145,36191105:136970 -k1,9390:30874505,36191105:136970 +k1,9390:8274416,36191105:155320 +k1,9390:9191264,36191105:155320 +k1,9390:11528279,36191105:155321 +k1,9390:12149560,36191105:155320 +k1,9390:15067223,36191105:155320 +k1,9390:17520235,36191105:155320 +k1,9390:18334848,36191105:155321 +k1,9390:20198692,36191105:155320 +k1,9390:21683082,36191105:155320 +k1,9390:22489830,36191105:155320 +k1,9390:27318523,36191105:155321 +k1,9390:28156728,36191105:155320 +k1,9390:29551989,36191105:155320 k1,9390:32583029,36191105:0 ) (1,9391:6630773,37056185:25952256,513147,134348 -k1,9390:8848020,37056185:224297 -k1,9390:10063877,37056185:224297 -k1,9390:12575380,37056185:224296 -k1,9390:13818762,37056185:224297 -k1,9390:16222786,37056185:224297 -k1,9390:18107765,37056185:224297 -k1,9390:19574624,37056185:224296 -k1,9390:20746572,37056185:224297 -k1,9390:23960621,37056185:224297 -k1,9390:25778754,37056185:224297 -k1,9390:28657913,37056185:224296 -k1,9390:30073655,37056185:224297 +k1,9390:8523289,37056185:183992 +k1,9390:10717926,37056185:183992 +k1,9390:11893478,37056185:183992 +k1,9390:14364677,37056185:183992 +k1,9390:15567754,37056185:183992 +k1,9390:17931473,37056185:183992 +k1,9390:19776148,37056185:183993 +k1,9390:20907791,37056185:183992 +k1,9390:24081535,37056185:183992 +k1,9390:25859363,37056185:183992 +k1,9390:28698218,37056185:183992 +k1,9390:30073655,37056185:183992 k1,9390:32583029,37056185:0 ) (1,9391:6630773,37921265:25952256,513147,134348 @@ -172263,14 +172444,14 @@ g1,9397:-473656,-710413 ] ) ] -!25353 -}146 -Input:1376:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1377:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!25411 +}147 Input:1378:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1379:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1380:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1381:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{147 +{148 [1,9457:4262630,47279633:28320399,43253760,0 (1,9457:4262630,4025873:0,0,0 [1,9457:-473656,4025873:0,0,0 @@ -172595,193 +172776,196 @@ g1,9399:32583029,15769977 ) (1,9401:6630773,16635057:25952256,513147,134348 h1,9400:6630773,16635057:983040,0,0 -k1,9400:8320168,16635057:228598 -k1,9400:9719239,16635057:228598 -k1,9400:10926289,16635057:228597 -k1,9400:12883071,16635057:228598 -k1,9400:15008281,16635057:228598 -k1,9400:15888307,16635057:228598 -k1,9400:17383060,16635057:228597 -k1,9400:18630743,16635057:228598 -k1,9400:20641265,16635057:228598 -k1,9400:21529155,16635057:228598 -k1,9400:22113612,16635057:228597 -k1,9400:23705359,16635057:228598 -k1,9400:24749225,16635057:228598 -k1,9400:27130025,16635057:228598 -k1,9400:28817453,16635057:228597 -k1,9400:31116333,16635057:228598 +k1,9400:8268402,16635057:176832 +k1,9400:9615706,16635057:176831 +k1,9400:10770991,16635057:176832 +k1,9400:12676006,16635057:176831 +k1,9400:14749450,16635057:176832 +k1,9400:15577709,16635057:176831 +k1,9400:17020697,16635057:176832 +k1,9400:18216613,16635057:176831 +k1,9400:20175369,16635057:176832 +k1,9400:21011492,16635057:176831 +k1,9400:21544184,16635057:176832 +k1,9400:23084164,16635057:176831 +k1,9400:24076264,16635057:176832 +k1,9400:26405297,16635057:176831 +k1,9400:28040960,16635057:176832 +k1,9400:30288073,16635057:176831 +k1,9400:31931601,16635057:176832 k1,9400:32583029,16635057:0 ) (1,9401:6630773,17500137:25952256,513147,126483 -k1,9400:7471723,17500137:189522 -k1,9400:8680329,17500137:189521 -k1,9400:10471551,17500137:189522 -k1,9400:12526883,17500137:189522 -k1,9400:13375696,17500137:189521 -k1,9400:16195178,17500137:189522 -k1,9400:18670596,17500137:189522 -k1,9400:20051562,17500137:189521 -k1,9400:21694673,17500137:189522 -k1,9400:22693565,17500137:189522 -k1,9400:23534515,17500137:189522 -k1,9400:24743121,17500137:189521 -k1,9400:26428175,17500137:189522 -k1,9400:28330153,17500137:189522 -k1,9400:30006686,17500137:189521 -k1,9400:31896867,17500137:189522 +k1,9400:7857853,17500137:207995 +k1,9400:9667547,17500137:207994 +k1,9400:11741352,17500137:207995 +k1,9400:12608639,17500137:207995 +k1,9400:15446593,17500137:207994 +k1,9400:17940484,17500137:207995 +k1,9400:19339924,17500137:207995 +k1,9400:21001508,17500137:207995 +k1,9400:22018872,17500137:207994 +k1,9400:22878295,17500137:207995 +k1,9400:24105375,17500137:207995 +k1,9400:25808901,17500137:207994 +k1,9400:27729352,17500137:207995 +k1,9400:29424359,17500137:207995 +k1,9400:31333012,17500137:207994 +k1,9400:32227169,17500137:207995 k1,9400:32583029,17500137:0 ) (1,9401:6630773,18365217:25952256,513147,134348 -k1,9400:7195039,18365217:208406 -k1,9400:8592923,18365217:208406 -k1,9400:9417366,18365217:208405 -k1,9400:9981632,18365217:208406 -k1,9400:12770190,18365217:208406 -k1,9400:15716035,18365217:208406 -k1,9400:17492062,18365217:208406 -k1,9400:19505320,18365217:208396 -k1,9400:20396611,18365217:208406 -k1,9400:21019851,18365217:208397 -k1,9400:23214653,18365217:208406 -k1,9400:24197039,18365217:208406 -k1,9400:26688063,18365217:208405 -k1,9400:28594507,18365217:208406 -k1,9400:32227169,18365217:208406 +k1,9400:7973087,18365217:152836 +k1,9400:8741961,18365217:152836 +k1,9400:9250658,18365217:152837 +k1,9400:11983646,18365217:152836 +k1,9400:14873921,18365217:152836 +k1,9400:16594378,18365217:152836 +k1,9400:18552030,18365217:152790 +k1,9400:19387752,18365217:152837 +k1,9400:19955385,18365217:152790 +k1,9400:22094617,18365217:152836 +k1,9400:23021433,18365217:152836 +k1,9400:25456888,18365217:152836 +k1,9400:27307763,18365217:152837 +k1,9400:30884855,18365217:152836 +k1,9400:31393551,18365217:152836 k1,9400:32583029,18365217:0 ) -(1,9401:6630773,19230297:25952256,513147,134348 -k1,9400:8034335,19230297:214084 -k1,9400:8864457,19230297:214084 -k1,9400:10574729,19230297:214085 -k1,9400:11959286,19230297:214084 -k1,9400:13648585,19230297:214084 -k1,9400:14928940,19230297:214084 -k1,9400:17603246,19230297:214084 -k1,9400:18275428,19230297:214085 -k1,9400:19021009,19230297:214084 -k1,9400:20634942,19230297:214084 -k1,9400:21500454,19230297:214084 -k1,9400:23068512,19230297:214084 -k1,9400:26058702,19230297:214085 -k1,9400:27685087,19230297:214084 -k1,9400:28918256,19230297:214084 -k1,9401:32583029,19230297:0 +(1,9401:6630773,19230297:25952256,513147,126483 +k1,9400:7405452,19230297:158641 +k1,9400:9060279,19230297:158640 +k1,9400:10389393,19230297:158641 +k1,9400:12023249,19230297:158641 +k1,9400:13248160,19230297:158640 +k1,9400:15867023,19230297:158641 +k1,9400:16483761,19230297:158641 +k1,9400:17173898,19230297:158640 +k1,9400:18732388,19230297:158641 +k1,9400:19542457,19230297:158641 +k1,9400:21055071,19230297:158640 +k1,9400:23989817,19230297:158641 +k1,9400:25560759,19230297:158641 +k1,9400:26738484,19230297:158640 +k1,9400:31896867,19230297:158641 +k1,9400:32583029,19230297:0 ) (1,9401:6630773,20095377:25952256,513147,134348 -k1,9400:8270091,20095377:198181 -k1,9400:9154434,20095377:198181 -k1,9400:10371699,20095377:198180 -k1,9400:12359668,20095377:198181 -k1,9400:13894783,20095377:198181 -k1,9400:14840730,20095377:198181 -k1,9400:16267711,20095377:198181 -k1,9400:16821751,20095377:198180 -k1,9400:22826422,20095377:198181 -k1,9400:23683895,20095377:198181 -k1,9400:25430692,20095377:198181 -k1,9400:25984733,20095377:198181 -k1,9400:28380991,20095377:198180 -k1,9400:30229369,20095377:198181 -k1,9400:31086842,20095377:198181 -k1,9400:32583029,20095377:0 -) -(1,9401:6630773,20960457:25952256,505283,134348 -k1,9400:7362502,20960457:200232 -k1,9400:10401753,20960457:200231 -k1,9400:11253413,20960457:200232 -k1,9400:12442583,20960457:200232 -k1,9400:14060359,20960457:200232 -k1,9400:15768573,20960457:200231 -k1,9400:16584843,20960457:200232 -k1,9400:18441825,20960457:200232 -k1,9400:19926562,20960457:200231 -k1,9400:20812956,20960457:200232 -k1,9400:24142532,20960457:200232 -k1,9400:25152133,20960457:200231 -k1,9400:26850518,20960457:200232 -h1,9400:27248977,20960457:0,0,0 -k1,9400:27622879,20960457:200232 -k1,9400:28993584,20960457:200232 -k1,9400:30326277,20960457:200231 -k1,9400:31274275,20960457:200232 +k1,9400:7826412,20095377:176554 +k1,9400:9792754,20095377:176554 +k1,9400:11306242,20095377:176554 +k1,9400:12230562,20095377:176554 +k1,9400:13635916,20095377:176554 +k1,9400:14168330,20095377:176554 +k1,9400:20151374,20095377:176554 +k1,9400:20987219,20095377:176553 +k1,9400:22712389,20095377:176554 +k1,9400:23244803,20095377:176554 +k1,9400:25619435,20095377:176554 +k1,9400:27446186,20095377:176554 +k1,9400:28282032,20095377:176554 +k1,9400:29954773,20095377:176554 +k1,9400:30662824,20095377:176554 +k1,9401:32583029,20095377:0 +) +(1,9401:6630773,20960457:25952256,513147,134348 +k1,9400:7868639,20960457:212883 +k1,9400:8732949,20960457:212882 +k1,9400:9934770,20960457:212883 +k1,9400:11565197,20960457:212883 +k1,9400:13286063,20960457:212883 +k1,9400:14114983,20960457:212882 +k1,9400:15984616,20960457:212883 +k1,9400:17482005,20960457:212883 +k1,9400:18381050,20960457:212883 +k1,9400:21723276,20960457:212882 +k1,9400:22745529,20960457:212883 +k1,9400:24456565,20960457:212883 +h1,9400:24855024,20960457:0,0,0 +k1,9400:25241576,20960457:212882 +k1,9400:26624932,20960457:212883 +k1,9400:27970277,20960457:212883 +k1,9400:28930926,20960457:212883 +k1,9400:30452562,20960457:212882 +k1,9400:31316873,20960457:212883 k1,9400:32583029,20960457:0 ) (1,9401:6630773,21825537:25952256,513147,126483 -k1,9400:7551018,21825537:268817 -k1,9400:9085990,21825537:268816 -k1,9400:11332684,21825537:268817 -k1,9400:17174682,21825537:268816 -k1,9400:20538109,21825537:268817 -k1,9400:21458353,21825537:268816 -k1,9400:23478947,21825537:268817 -k1,9400:24407055,21825537:268816 -k1,9400:26134703,21825537:268817 -k1,9400:28115975,21825537:268816 -k1,9400:31391584,21825537:268817 +k1,9400:8869090,21825537:260440 +k1,9400:14702712,21825537:260440 +k1,9400:18057762,21825537:260440 +k1,9400:18969630,21825537:260440 +k1,9400:20981847,21825537:260440 +k1,9400:21901578,21825537:260439 +k1,9400:23620849,21825537:260440 +k1,9400:25593745,21825537:260440 +k1,9400:28860977,21825537:260440 +k1,9400:30312862,21825537:260440 k1,9400:32583029,21825537:0 ) (1,9401:6630773,22690617:25952256,513147,134348 -k1,9400:9296576,22690617:274394 -k1,9400:10612992,22690617:274394 -k1,9400:13722473,22690617:274394 -k1,9400:17057399,22690617:274395 -k1,9400:18725744,22690617:274394 -k1,9400:21195594,22690617:274394 -k1,9400:22417639,22690617:274394 -k1,9400:23711118,22690617:274394 -k1,9400:25211691,22690617:274394 -k1,9400:26145378,22690617:274395 -k1,9400:27190475,22690617:274394 -k1,9400:29071812,22690617:274394 -k1,9400:32051532,22690617:274394 +k1,9400:7843703,22690617:170908 +k1,9400:10849699,22690617:170909 +k1,9400:14081138,22690617:170908 +k1,9400:15645998,22690617:170909 +k1,9400:18012362,22690617:170908 +k1,9400:19130922,22690617:170909 +k1,9400:20320915,22690617:170908 +k1,9400:21718003,22690617:170909 +k1,9400:22548203,22690617:170908 +k1,9400:23489815,22690617:170909 +k1,9400:25267666,22690617:170908 +k1,9400:28143901,22690617:170909 +k1,9400:28846306,22690617:170908 +k1,9400:31304422,22690617:170909 k1,9400:32583029,22690617:0 ) (1,9401:6630773,23555697:25952256,513147,134348 -k1,9400:9174024,23555697:256044 -k1,9400:10708675,23555697:256044 -k1,9400:14128142,23555697:256044 -k1,9400:15929525,23555697:256044 -k1,9400:19394867,23555697:256044 -k1,9400:20302339,23555697:256044 -k1,9400:23817488,23555697:256044 -k1,9400:24605029,23555697:256044 -k1,9400:26145579,23555697:256044 -k1,9400:27921403,23555697:256044 -k1,9400:28992715,23555697:256044 -k1,9400:30484768,23555697:256044 -k1,9400:31576396,23555697:256044 -k1,9401:32583029,23555697:0 -) -(1,9401:6630773,24420777:25952256,505283,126483 -k1,9400:9225898,24420777:190609 -k1,9400:10032545,24420777:190609 -k1,9400:12072580,24420777:190609 -k1,9400:14549740,24420777:190609 -k1,9400:16410206,24420777:190609 -k1,9400:17792260,24420777:190609 -k1,9400:21868498,24420777:190608 -k1,9400:22675145,24420777:190609 -k1,9400:23886150,24420777:190609 -k1,9400:25746616,24420777:190609 -k1,9400:28400723,24420777:190609 -k1,9400:29122829,24420777:190609 -k1,9400:31931601,24420777:190609 +k1,9400:9959498,23555697:165302 +k1,9400:11670139,23555697:165302 +k1,9400:15044739,23555697:165302 +k1,9400:15861468,23555697:165301 +k1,9400:19285875,23555697:165302 +k1,9400:19982674,23555697:165302 +k1,9400:21432482,23555697:165302 +k1,9400:23117564,23555697:165302 +k1,9400:24098134,23555697:165302 +k1,9400:25499444,23555697:165301 +k1,9400:26500330,23555697:165302 +k1,9400:29970613,23555697:165302 +k1,9400:30751953,23555697:165302 +k1,9400:32583029,23555697:0 +) +(1,9401:6630773,24420777:25952256,505283,134348 +k1,9400:9061784,24420777:170674 +k1,9400:10902316,24420777:170675 +k1,9400:12264435,24420777:170674 +k1,9400:16320739,24420777:170674 +k1,9400:17107452,24420777:170675 +k1,9400:18298522,24420777:170674 +k1,9400:20139053,24420777:170674 +k1,9400:21196430,24420777:170675 +k1,9400:23506199,24420777:170674 +k1,9400:24208371,24420777:170675 +k1,9400:26997208,24420777:170674 +k1,9400:27819310,24420777:170674 +k1,9400:29802711,24420777:170675 +k1,9400:31563944,24420777:170674 k1,9400:32583029,24420777:0 ) (1,9401:6630773,25285857:25952256,513147,134348 -g1,9400:8642728,25285857 -g1,9400:9908228,25285857 -g1,9400:11126542,25285857 -g1,9400:12821958,25285857 -g1,9400:14191660,25285857 -g1,9400:16179367,25285857 -g1,9400:19289050,25285857 -g1,9400:20658752,25285857 -g1,9400:21950466,25285857 -g1,9400:22832580,25285857 -g1,9400:23446652,25285857 -k1,9401:32583029,25285857:7478317 +g1,9400:8326189,25285857 +g1,9400:9695891,25285857 +g1,9400:11683598,25285857 +g1,9400:14793281,25285857 +g1,9400:16162983,25285857 +g1,9400:17454697,25285857 +g1,9400:18336811,25285857 +g1,9400:18950883,25285857 +g1,9400:20755744,25285857 +g1,9400:22059255,25285857 +g1,9400:24630232,25285857 +k1,9401:32583029,25285857:6380589 g1,9401:32583029,25285857 ) (1,9402:6630773,28117017:25952256,32768,229376 @@ -172818,34 +173002,34 @@ k1,9405:30943974,31007165:133169 k1,9405:32583029,31007165:0 ) (1,9406:6630773,31872245:25952256,505283,134348 -k1,9405:7398552,31872245:151741 -k1,9405:9153304,31872245:151741 -k1,9405:11360909,31872245:151741 -k1,9405:13704830,31872245:151742 -h1,9405:14675418,31872245:0,0,0 -k1,9405:15207923,31872245:151741 -k1,9405:19525132,31872245:151741 -k1,9405:20208370,31872245:151741 -k1,9405:21506336,31872245:151741 -k1,9405:23997712,31872245:151741 -k1,9405:25846181,31872245:151742 -k1,9405:29514584,31872245:151741 -k1,9405:30933791,31872245:151741 -k1,9405:31441392,31872245:151741 +k1,9405:7491861,31872245:245050 +k1,9405:9339922,31872245:245050 +k1,9405:11640836,31872245:245050 +k1,9405:14078065,31872245:245050 +h1,9405:15048653,31872245:0,0,0 +k1,9405:15674467,31872245:245050 +k1,9405:20258657,31872245:245051 +k1,9405:21035204,31872245:245050 +k1,9405:22426479,31872245:245050 +k1,9405:25011164,31872245:245050 +k1,9405:26952941,31872245:245050 +k1,9405:30714653,31872245:245050 +k1,9405:32227169,31872245:245050 k1,9405:32583029,31872245:0 ) (1,9406:6630773,32737325:25952256,505283,126483 -g1,9405:8114508,32737325 -g1,9405:10325692,32737325 -g1,9405:11270065,32737325 -g1,9405:12120722,32737325 -g1,9405:14731021,32737325 -g1,9405:16324201,32737325 -g1,9405:18162485,32737325 -g1,9405:19047876,32737325 -g1,9405:20017808,32737325 -g1,9405:23917855,32737325 -k1,9406:32583029,32737325:6729896 +g1,9405:7989989,32737325 +g1,9405:9473724,32737325 +g1,9405:11684908,32737325 +g1,9405:12629281,32737325 +g1,9405:13479938,32737325 +g1,9405:16090237,32737325 +g1,9405:17683417,32737325 +g1,9405:19521701,32737325 +g1,9405:20407092,32737325 +g1,9405:21377024,32737325 +g1,9405:25277071,32737325 +k1,9406:32583029,32737325:5370680 g1,9406:32583029,32737325 ) v1,9428:6630773,33422180:0,393216,0 @@ -173004,48 +173188,47 @@ k1,9454:32124932,41610576:234669 k1,9454:32583029,41610576:0 ) (1,9455:6630773,42475656:25952256,513147,126483 -k1,9454:8394729,42475656:271046 -k1,9454:9732046,42475656:271046 -k1,9454:11456681,42475656:271046 -k1,9454:15005837,42475656:271045 -k1,9454:18754223,42475656:271046 -k1,9454:19653104,42475656:271046 -k1,9454:20943235,42475656:271046 -k1,9454:23875698,42475656:271046 -k1,9454:26002068,42475656:271046 -k1,9454:27648714,42475656:271045 -k1,9454:29219339,42475656:271046 -k1,9454:31591469,42475656:271046 +k1,9454:8380256,42475656:256573 +k1,9454:9703101,42475656:256574 +k1,9454:11413263,42475656:256573 +k1,9454:14947947,42475656:256573 +k1,9454:18681860,42475656:256573 +k1,9454:19566269,42475656:256574 +k1,9454:20841927,42475656:256573 +k1,9454:23759917,42475656:256573 +k1,9454:26045485,42475656:256573 +k1,9454:27677660,42475656:256574 +k1,9454:29233812,42475656:256573 +k1,9454:31591469,42475656:256573 k1,9454:32583029,42475656:0 ) (1,9455:6630773,43340736:25952256,513147,126483 -k1,9454:7489950,43340736:199885 -k1,9454:10306688,43340736:199885 -k1,9454:11134407,43340736:199884 -k1,9454:12353377,43340736:199885 -k1,9454:15214679,43340736:199885 -k1,9454:17456666,43340736:199885 -k1,9454:18675635,43340736:199884 -k1,9454:20555863,43340736:199885 -k1,9454:23534475,43340736:199885 -k1,9454:24495888,43340736:199885 -k1,9454:25051632,43340736:199884 -k1,9454:28665287,43340736:199885 -k1,9454:32051532,43340736:199885 +k1,9454:7550898,43340736:260833 +k1,9454:10428585,43340736:260834 +k1,9454:11317253,43340736:260833 +k1,9454:12597171,43340736:260833 +k1,9454:15519421,43340736:260833 +k1,9454:17822357,43340736:260834 +k1,9454:19102275,43340736:260833 +k1,9454:21043451,43340736:260833 +k1,9454:24083011,43340736:260833 +k1,9454:25105373,43340736:260834 +k1,9454:25722066,43340736:260833 +k1,9454:29396669,43340736:260833 k1,9454:32583029,43340736:0 ) (1,9455:6630773,44205816:25952256,505283,126483 -k1,9454:8119394,44205816:204115 -k1,9454:11102235,44205816:204114 -k1,9454:12067878,44205816:204115 -k1,9454:13291078,44205816:204115 -k1,9454:14643383,44205816:204114 -k1,9454:18033858,44205816:204115 -k1,9454:21299159,44205816:204114 -k1,9454:23513263,44205816:204115 -k1,9454:24349145,44205816:204115 -k1,9454:27757970,44205816:204114 -k1,9454:31478747,44205816:204115 +k1,9454:7418456,44205816:256186 +k1,9454:8959148,44205816:256186 +k1,9454:11994061,44205816:256186 +k1,9454:13011775,44205816:256186 +k1,9454:14287046,44205816:256186 +k1,9454:15691423,44205816:256186 +k1,9454:19133969,44205816:256186 +k1,9454:22451342,44205816:256186 +k1,9454:24717517,44205816:256186 +k1,9454:25605470,44205816:256186 +k1,9454:29066367,44205816:256186 k1,9454:32583029,44205816:0 ) ] @@ -173069,11 +173252,11 @@ g1,9457:-473656,-710413 ] ) ] -!22755 -}147 -Input:1380:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!22812 +}148 +Input:1382:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{148 +{149 [1,9486:4262630,47279633:28320399,43253760,0 (1,9486:4262630,4025873:0,0,0 [1,9486:-473656,4025873:0,0,0 @@ -173412,33 +173595,32 @@ g1,9423:32583029,20742226 ] ] (1,9455:6630773,22842654:25952256,513147,126483 -k1,9454:7580565,22842654:202026 -k1,9454:10906036,22842654:202025 -k1,9454:11869590,22842654:202026 -k1,9454:12842318,22842654:202025 -k1,9454:16481052,22842654:202026 -k1,9454:17369240,22842654:202026 -k1,9454:19600260,22842654:202025 -k1,9454:20485171,22842654:202026 -k1,9454:21448724,22842654:202025 -k1,9454:22006610,22842654:202026 -k1,9454:25450047,22842654:202026 -k1,9454:26239930,22842654:202025 -k1,9454:27128118,22842654:202026 -k1,9454:29405668,22842654:202025 -k1,9454:31649796,22842654:202026 +k1,9454:7985883,22842654:250828 +k1,9454:8984477,22842654:250828 +k1,9454:12358751,22842654:250828 +k1,9454:13371107,22842654:250828 +k1,9454:14392638,22842654:250828 +k1,9454:18080174,22842654:250828 +k1,9454:19017164,22842654:250828 +k1,9454:21296988,22842654:250829 +k1,9454:22230701,22842654:250828 +k1,9454:23243057,22842654:250828 +k1,9454:23849745,22842654:250828 +k1,9454:27341984,22842654:250828 +k1,9454:28180670,22842654:250828 +k1,9454:29117660,22842654:250828 +k1,9454:31410590,22842654:250828 k1,9454:32583029,22842654:0 ) (1,9455:6630773,23707734:25952256,513147,134348 -g1,9454:8002441,23707734 -g1,9454:11892002,23707734 -g1,9454:13542853,23707734 -g1,9454:14401374,23707734 -g1,9454:16239658,23707734 -g1,9454:20862567,23707734 -g1,9454:21832499,23707734 -g1,9454:25307873,23707734 -k1,9455:32583029,23707734:4148434 +g1,9454:10520334,23707734 +g1,9454:12171185,23707734 +g1,9454:13029706,23707734 +g1,9454:14867990,23707734 +g1,9454:19490899,23707734 +g1,9454:20460831,23707734 +g1,9454:23936205,23707734 +k1,9455:32583029,23707734:5520102 g1,9455:32583029,23707734 ) v1,9457:6630773,24392589:0,393216,0 @@ -173682,16 +173864,17 @@ k1,9481:29316715,34101616:260232 k1,9482:32583029,34101616:0 ) (1,9482:6630773,34966696:25952256,513147,134348 -k1,9481:9950303,34966696:243925 -k1,9481:13722031,34966696:243925 -k1,9481:15663993,34966696:243924 -k1,9481:18511663,34966696:243925 -k1,9481:21955056,34966696:243925 -k1,9481:23390426,34966696:243925 -k1,9481:25836361,34966696:243925 -k1,9481:27777667,34966696:243924 -k1,9481:29940486,34966696:243925 -k1,9481:31052763,34966696:243925 +k1,9481:9872124,34966696:165746 +k1,9481:13565674,34966696:165747 +k1,9481:15429458,34966696:165746 +k1,9481:18198949,34966696:165746 +k1,9481:21564164,34966696:165747 +k1,9481:22921355,34966696:165746 +k1,9481:23703140,34966696:165747 +k1,9481:26070896,34966696:165746 +k1,9481:27934024,34966696:165746 +k1,9481:30018665,34966696:165747 +k1,9481:31052763,34966696:165746 k1,9481:32583029,34966696:0 ) (1,9482:6630773,35831776:25952256,513147,134348 @@ -173760,49 +173943,49 @@ k1,9483:32583029,42024948:18338020 g1,9483:32583029,42024948 ) (1,9486:6630773,43283244:25952256,513147,126483 -k1,9485:7778570,43283244:224395 -k1,9485:9135428,43283244:224396 -k1,9485:12029104,43283244:224395 -k1,9485:15279296,43283244:224395 -k1,9485:16119729,43283244:224395 -k1,9485:18131292,43283244:224396 -k1,9485:19547132,43283244:224395 -k1,9485:21101908,43283244:224395 -k1,9485:21977731,43283244:224395 -k1,9485:24131507,43283244:224396 -k1,9485:25639097,43283244:224395 -k1,9485:27350504,43283244:224395 -k1,9485:28190938,43283244:224396 -k1,9485:30832956,43283244:224395 -h1,9485:31231415,43283244:0,0,0 -k1,9485:31629480,43283244:224395 +k1,9485:7871369,43283244:317194 +k1,9485:9321026,43283244:317195 +k1,9485:12307501,43283244:317194 +k1,9485:15650492,43283244:317194 +k1,9485:16583724,43283244:317194 +k1,9485:18688086,43283244:317195 +k1,9485:20196725,43283244:317194 +k1,9485:21844300,43283244:317194 +k1,9485:22812923,43283244:317195 +k1,9485:25059497,43283244:317194 +k1,9485:26659886,43283244:317194 +k1,9485:28464093,43283244:317195 +k1,9485:29397325,43283244:317194 +k1,9485:32132142,43283244:317194 +h1,9485:32530601,43283244:0,0,0 k1,9485:32583029,43283244:0 ) (1,9486:6630773,44148324:25952256,513147,134348 -k1,9485:8380226,44148324:274238 -k1,9485:10988857,44148324:274239 -k1,9485:12773045,44148324:274238 -k1,9485:14782676,44148324:274238 -k1,9485:18082712,44148324:274239 -k1,9485:19984209,44148324:274238 -k1,9485:22676071,44148324:274239 -h1,9485:23074530,44148324:0,0,0 -k1,9485:23522438,44148324:274238 -k1,9485:26916845,44148324:274238 -k1,9485:28182644,44148324:274239 -k1,9485:32168186,44148324:274238 +k1,9485:7783849,44148324:229674 +k1,9485:9488738,44148324:229674 +k1,9485:12052804,44148324:229674 +k1,9485:13792428,44148324:229674 +k1,9485:15757495,44148324:229674 +k1,9485:19012965,44148324:229673 +k1,9485:20869898,44148324:229674 +k1,9485:23517195,44148324:229674 +h1,9485:23915654,44148324:0,0,0 +k1,9485:24318998,44148324:229674 +k1,9485:27668841,44148324:229674 +k1,9485:28890075,44148324:229674 k1,9486:32583029,44148324:0 ) (1,9486:6630773,45013404:25952256,513147,134348 -k1,9485:10644198,45013404:323093 -k1,9485:11583328,45013404:323092 -k1,9485:13508121,45013404:323093 -k1,9485:15702266,45013404:323092 -k1,9485:19439129,45013404:323093 -k1,9485:23452553,45013404:323092 -k1,9485:25511039,45013404:323093 -k1,9485:27962741,45013404:323093 -k1,9485:31896867,45013404:323092 +k1,9485:7294870,45013404:249254 +k1,9485:11234506,45013404:249304 +k1,9485:12099848,45013404:249304 +k1,9485:13950852,45013404:249304 +k1,9485:16071209,45013404:249304 +k1,9485:19734283,45013404:249304 +k1,9485:23673919,45013404:249304 +k1,9485:25658616,45013404:249304 +k1,9485:28036529,45013404:249304 +k1,9485:31896867,45013404:249304 k1,9485:32583029,45013404:0 ) ] @@ -173826,10 +174009,8 @@ g1,9486:-473656,-710413 ] ) ] -!20183 -}148 -Input:1381:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1382:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!20188 +}149 Input:1383:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1384:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1385:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -173840,8 +174021,11 @@ Input:1389:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1390:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1391:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1392:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 -{149 +Input:1393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 +{150 [1,9537:4262630,47279633:28320399,43253760,0 (1,9537:4262630,4025873:0,0,0 [1,9537:-473656,4025873:0,0,0 @@ -173969,17 +174153,17 @@ g1,9537:6630773,45706769 ) [1,9537:6630773,45706769:25952256,40108032,0 (1,9486:6630773,6254097:25952256,513147,134348 -k1,9485:11131071,6254097:262740 -k1,9485:13177045,6254097:262739 -k1,9485:14596495,6254097:262740 -k1,9485:16289231,6254097:262740 -k1,9485:16907830,6254097:262739 -k1,9485:19866066,6254097:262740 -k1,9485:21285515,6254097:262739 -k1,9485:23663102,6254097:262740 -k1,9485:27328471,6254097:262740 -k1,9485:28538861,6254097:262739 -k1,9485:29820686,6254097:262740 +k1,9485:11115282,6254097:246951 +k1,9485:13145469,6254097:246952 +k1,9485:14549130,6254097:246951 +k1,9485:16226078,6254097:246952 +k1,9485:16828889,6254097:246951 +k1,9485:19945007,6254097:246952 +k1,9485:21348668,6254097:246951 +k1,9485:23710467,6254097:246952 +k1,9485:27360047,6254097:246951 +k1,9485:28554650,6254097:246952 +k1,9485:29820686,6254097:246951 k1,9485:32583029,6254097:0 ) (1,9486:6630773,7119177:25952256,513147,134348 @@ -174017,107 +174201,107 @@ g1,9486:32583030,8849337 ) (1,9488:6630773,9714417:25952256,513147,138281 h1,9487:6630773,9714417:983040,0,0 -k1,9487:8454690,9714417:213042 -k1,9487:9686818,9714417:213043 -k1,9487:11205993,9714417:213042 -k1,9487:14080452,9714417:213042 -k1,9487:15161847,9714417:213043 -k1,9487:16467374,9714417:213042 -k1,9487:17852855,9714417:213042 -k1,9487:21756229,9714417:213042 -k1,9487:22597107,9714417:213043 -k1,9487:23829234,9714417:213042 -k1,9487:25348409,9714417:213042 -k1,9487:28921483,9714417:213043 -$1,9487:28921483,9714417 -$1,9487:31838490,9714417 -k1,9487:32051532,9714417:213042 -k1,9487:32583029,9714417:0 +k1,9487:8507287,9714417:265639 +k1,9487:9792011,9714417:265639 +k1,9487:11363784,9714417:265640 +k1,9487:14464510,9714417:265639 +k1,9487:15598501,9714417:265639 +k1,9487:16956625,9714417:265639 +k1,9487:18394703,9714417:265639 +k1,9487:22350674,9714417:265639 +k1,9487:23244149,9714417:265640 +k1,9487:24528873,9714417:265639 +k1,9487:26100645,9714417:265639 +k1,9487:29726315,9714417:265639 +$1,9487:29726315,9714417 +$1,9487:32583029,9714417 +k1,9488:32583029,9714417:0 ) (1,9488:6630773,10579497:25952256,513147,134348 -k1,9487:9993114,10579497:153698 -k1,9487:10908340,10579497:153698 -k1,9487:13151982,10579497:153699 -k1,9487:16001176,10579497:153698 -(1,9487:16001176,10579497:0,452978,122846 -r1,9537:18469713,10579497:2468537,575824,122846 -k1,9487:16001176,10579497:-2468537 -) -(1,9487:16001176,10579497:2468537,452978,122846 -k1,9487:16001176,10579497:3277 -h1,9487:18466436,10579497:0,411205,112570 -) -k1,9487:18623411,10579497:153698 -k1,9487:20171060,10579497:153698 -(1,9487:20171060,10579497:0,435480,115847 -r1,9537:21232749,10579497:1061689,551327,115847 -k1,9487:20171060,10579497:-1061689 -) -(1,9487:20171060,10579497:1061689,435480,115847 -k1,9487:20171060,10579497:3277 -h1,9487:21229472,10579497:0,411205,112570 -) -k1,9487:21386448,10579497:153699 -k1,9487:22226308,10579497:153698 -k1,9487:25452334,10579497:153698 -k1,9487:26797477,10579497:153698 -k1,9487:27970261,10579497:153699 -k1,9487:30902686,10579497:153698 +k1,9487:7411705,10579497:249435 +k1,9487:10869784,10579497:249436 +k1,9487:11880747,10579497:249435 +k1,9487:14220126,10579497:249436 +k1,9487:17165057,10579497:249435 +(1,9487:17165057,10579497:0,452978,122846 +r1,9537:19633594,10579497:2468537,575824,122846 +k1,9487:17165057,10579497:-2468537 +) +(1,9487:17165057,10579497:2468537,452978,122846 +k1,9487:17165057,10579497:3277 +h1,9487:19630317,10579497:0,411205,112570 +) +k1,9487:19883030,10579497:249436 +k1,9487:21526416,10579497:249435 +(1,9487:21526416,10579497:0,435480,115847 +r1,9537:22588105,10579497:1061689,551327,115847 +k1,9487:21526416,10579497:-1061689 +) +(1,9487:21526416,10579497:1061689,435480,115847 +k1,9487:21526416,10579497:3277 +h1,9487:22584828,10579497:0,411205,112570 +) +k1,9487:22837540,10579497:249435 +k1,9487:23773138,10579497:249436 +k1,9487:27094901,10579497:249435 +k1,9487:28535782,10579497:249436 +k1,9487:29804302,10579497:249435 k1,9487:32583029,10579497:0 ) (1,9488:6630773,11444577:25952256,505283,134348 -k1,9487:7329073,11444577:166803 -k1,9487:10270669,11444577:166802 -k1,9487:11088900,11444577:166803 -k1,9487:13767042,11444577:166802 -(1,9487:13767042,11444577:0,414482,115847 -r1,9537:14125308,11444577:358266,530329,115847 -k1,9487:13767042,11444577:-358266 -) -(1,9487:13767042,11444577:358266,414482,115847 -k1,9487:13767042,11444577:3277 -h1,9487:14122031,11444577:0,411205,112570 -) -k1,9487:14465781,11444577:166803 -k1,9487:15260418,11444577:166802 -k1,9487:16446306,11444577:166803 -k1,9487:18854439,11444577:166802 -k1,9487:22381273,11444577:166803 -k1,9487:23567161,11444577:166803 -k1,9487:25414306,11444577:166802 -k1,9487:25979568,11444577:166803 -k1,9487:26677867,11444577:166802 -k1,9487:29907823,11444577:166803 -k1,9487:30760787,11444577:166802 -k1,9487:31283450,11444577:166803 +k1,9487:8470863,11444577:177442 +k1,9487:9179802,11444577:177442 +k1,9487:12132038,11444577:177442 +k1,9487:12960909,11444577:177443 +k1,9487:15649691,11444577:177442 +(1,9487:15649691,11444577:0,414482,115847 +r1,9537:16007957,11444577:358266,530329,115847 +k1,9487:15649691,11444577:-358266 +) +(1,9487:15649691,11444577:358266,414482,115847 +k1,9487:15649691,11444577:3277 +h1,9487:16004680,11444577:0,411205,112570 +) +k1,9487:16359069,11444577:177442 +k1,9487:17164346,11444577:177442 +k1,9487:18360873,11444577:177442 +k1,9487:20779646,11444577:177442 +k1,9487:24317119,11444577:177442 +k1,9487:25513646,11444577:177442 +k1,9487:27371432,11444577:177443 +k1,9487:27947333,11444577:177442 +k1,9487:28656272,11444577:177442 +k1,9487:31896867,11444577:177442 k1,9487:32583029,11444577:0 ) (1,9488:6630773,12309657:25952256,513147,134348 -g1,9487:8600785,12309657 -g1,9487:9459306,12309657 -g1,9487:11748478,12309657 -(1,9487:11748478,12309657:0,452978,115847 -r1,9537:14217015,12309657:2468537,568825,115847 -k1,9487:11748478,12309657:-2468537 -) -(1,9487:11748478,12309657:2468537,452978,115847 -k1,9487:11748478,12309657:3277 -h1,9487:14213738,12309657:0,411205,112570 -) -g1,9487:14416244,12309657 -g1,9487:16009424,12309657 -g1,9487:18719993,12309657 -(1,9487:18719993,12309657:0,414482,115847 -r1,9537:19078259,12309657:358266,530329,115847 -k1,9487:18719993,12309657:-358266 -) -(1,9487:18719993,12309657:358266,414482,115847 -k1,9487:18719993,12309657:3277 -h1,9487:19074982,12309657:0,411205,112570 -) -g1,9487:19277488,12309657 -g1,9487:20162879,12309657 -k1,9488:32583029,12309657:9295394 +g1,9487:7185862,12309657 +g1,9487:8684670,12309657 +g1,9487:10654682,12309657 +g1,9487:11513203,12309657 +g1,9487:13802375,12309657 +(1,9487:13802375,12309657:0,452978,115847 +r1,9537:16270912,12309657:2468537,568825,115847 +k1,9487:13802375,12309657:-2468537 +) +(1,9487:13802375,12309657:2468537,452978,115847 +k1,9487:13802375,12309657:3277 +h1,9487:16267635,12309657:0,411205,112570 +) +g1,9487:16470141,12309657 +g1,9487:18063321,12309657 +g1,9487:20773890,12309657 +(1,9487:20773890,12309657:0,414482,115847 +r1,9537:21132156,12309657:358266,530329,115847 +k1,9487:20773890,12309657:-358266 +) +(1,9487:20773890,12309657:358266,414482,115847 +k1,9487:20773890,12309657:3277 +h1,9487:21128879,12309657:0,411205,112570 +) +g1,9487:21331385,12309657 +g1,9487:22216776,12309657 +k1,9488:32583029,12309657:7241497 g1,9488:32583029,12309657 ) v1,9490:6630773,12994512:0,393216,0 @@ -174396,69 +174580,78 @@ k1,9522:31267066,30511626:246264 k1,9522:32583029,30511626:0 ) (1,9523:6630773,31376706:25952256,513147,134348 -k1,9522:8321934,31376706:262477 -(1,9522:8321934,31376706:0,452978,115847 -r1,9537:9031912,31376706:709978,568825,115847 -k1,9522:8321934,31376706:-709978 -) -(1,9522:8321934,31376706:709978,452978,115847 -k1,9522:8321934,31376706:3277 -h1,9522:9028635,31376706:0,411205,112570 -) -k1,9522:9468059,31376706:262477 -(1,9522:9468059,31376706:0,452978,122846 -r1,9537:10881460,31376706:1413401,575824,122846 -k1,9522:9468059,31376706:-1413401 -) -(1,9522:9468059,31376706:1413401,452978,122846 -k1,9522:9468059,31376706:3277 -h1,9522:10878183,31376706:0,411205,112570 -) -k1,9522:11317607,31376706:262477 -(1,9522:11317607,31376706:0,414482,122846 -r1,9537:12731008,31376706:1413401,537328,122846 -k1,9522:11317607,31376706:-1413401 -) -(1,9522:11317607,31376706:1413401,414482,122846 -k1,9522:11317607,31376706:3277 -h1,9522:12727731,31376706:0,411205,112570 -) -k1,9522:13167155,31376706:262477 -(1,9522:13167155,31376706:0,414482,115847 -r1,9537:14580556,31376706:1413401,530329,115847 -k1,9522:13167155,31376706:-1413401 -) -(1,9522:13167155,31376706:1413401,414482,115847 -k1,9522:13167155,31376706:3277 -h1,9522:14577279,31376706:0,411205,112570 -) -k1,9522:15016703,31376706:262477 -k1,9522:16771435,31376706:262477 -k1,9522:18505851,31376706:262477 -k1,9522:20261895,31376706:262478 -k1,9522:21210534,31376706:262477 -k1,9522:22699190,31376706:262477 -k1,9522:23493164,31376706:262477 -k1,9522:26845664,31376706:262477 -k1,9522:27794303,31376706:262477 -k1,9522:30397071,31376706:262477 -k1,9522:32227169,31376706:262477 +k1,9522:8269549,31376706:210092 +(1,9522:8269549,31376706:0,452978,115847 +r1,9537:8979527,31376706:709978,568825,115847 +k1,9522:8269549,31376706:-709978 +) +(1,9522:8269549,31376706:709978,452978,115847 +k1,9522:8269549,31376706:3277 +h1,9522:8976250,31376706:0,411205,112570 +) +k1,9522:9363288,31376706:210091 +(1,9522:9363288,31376706:0,452978,115847 +r1,9537:10424977,31376706:1061689,568825,115847 +k1,9522:9363288,31376706:-1061689 +) +(1,9522:9363288,31376706:1061689,452978,115847 +k1,9522:9363288,31376706:3277 +h1,9522:10421700,31376706:0,411205,112570 +) +k1,9522:10808739,31376706:210092 +(1,9522:10808739,31376706:0,452978,122846 +r1,9537:12222140,31376706:1413401,575824,122846 +k1,9522:10808739,31376706:-1413401 +) +(1,9522:10808739,31376706:1413401,452978,122846 +k1,9522:10808739,31376706:3277 +h1,9522:12218863,31376706:0,411205,112570 +) +k1,9522:12605901,31376706:210091 +(1,9522:12605901,31376706:0,414482,122846 +r1,9537:14019302,31376706:1413401,537328,122846 +k1,9522:12605901,31376706:-1413401 +) +(1,9522:12605901,31376706:1413401,414482,122846 +k1,9522:12605901,31376706:3277 +h1,9522:14016025,31376706:0,411205,112570 +) +k1,9522:14403064,31376706:210092 +k1,9522:15804600,31376706:210091 +(1,9522:15804600,31376706:0,414482,115847 +r1,9537:17218001,31376706:1413401,530329,115847 +k1,9522:15804600,31376706:-1413401 +) +(1,9522:15804600,31376706:1413401,414482,115847 +k1,9522:15804600,31376706:3277 +h1,9522:17214724,31376706:0,411205,112570 +) +k1,9522:17808857,31376706:210092 +k1,9522:19490887,31376706:210091 +k1,9522:21194545,31376706:210092 +k1,9522:22090798,31376706:210091 +k1,9522:23527069,31376706:210092 +k1,9522:24268657,31376706:210091 +k1,9522:27568772,31376706:210092 +k1,9522:28465025,31376706:210091 +k1,9522:31015408,31376706:210092 k1,9522:32583029,31376706:0 ) (1,9523:6630773,32241786:25952256,513147,134348 -k1,9522:8998035,32241786:258313 -k1,9522:10523813,32241786:258312 -k1,9522:11137986,32241786:258313 -k1,9522:12735199,32241786:258312 -k1,9522:15552038,32241786:258313 -k1,9522:16166211,32241786:258313 -k1,9522:18269361,32241786:258312 -k1,9522:19186966,32241786:258313 -k1,9522:21130865,32241786:258313 -k1,9522:22001939,32241786:258312 -k1,9522:24145723,32241786:258313 -k1,9522:24759895,32241786:258312 -k1,9522:27415515,32241786:258313 +k1,9522:7201076,32241786:214443 +k1,9522:9524468,32241786:214443 +k1,9522:11006377,32241786:214443 +k1,9522:11576681,32241786:214444 +k1,9522:13130025,32241786:214443 +k1,9522:15902994,32241786:214443 +k1,9522:16473297,32241786:214443 +k1,9522:18532578,32241786:214443 +k1,9522:19406313,32241786:214443 +k1,9522:21306342,32241786:214443 +k1,9522:22133548,32241786:214444 +k1,9522:24233462,32241786:214443 +k1,9522:24803765,32241786:214443 +k1,9522:27415515,32241786:214443 k1,9522:32583029,32241786:0 ) (1,9523:6630773,33106866:25952256,513147,126483 @@ -174581,16 +174774,16 @@ k1,9532:29864596,37789332:168266 k1,9532:32583029,37789332:0 ) (1,9533:6630773,38654412:25952256,513147,126483 -k1,9532:8712852,38654412:222822 -k1,9532:9927234,38654412:222822 -k1,9532:12500178,38654412:222823 -k1,9532:13914445,38654412:222822 -k1,9532:17304622,38654412:222822 -k1,9532:22017971,38654412:222822 -k1,9532:26406261,38654412:222822 -k1,9532:28283868,38654412:222823 -k1,9532:29038187,38654412:222822 -k1,9532:30733603,38654412:222822 +k1,9532:8695485,38654412:205455 +k1,9532:9892500,38654412:205455 +k1,9532:12448076,38654412:205455 +k1,9532:13844976,38654412:205455 +k1,9532:17217787,38654412:205456 +k1,9532:21913769,38654412:205455 +k1,9532:26458363,38654412:205455 +k1,9532:28318602,38654412:205455 +k1,9532:29055554,38654412:205455 +k1,9532:30733603,38654412:205455 k1,9533:32583029,38654412:0 ) (1,9533:6630773,39519492:25952256,505283,126483 @@ -174733,11 +174926,8 @@ g1,9537:-473656,-710413 ] ) ] -!25552 -}149 -Input:1393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!25820 +}150 Input:1396:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1397:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1398:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -174746,8 +174936,11 @@ Input:1400:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1401:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1402:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1403:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1404:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1405:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1406:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{150 +{151 [1,9664:4262630,47279633:28320399,43253760,0 (1,9664:4262630,4025873:0,0,0 [1,9664:-473656,4025873:0,0,0 @@ -175767,13 +175960,13 @@ g1,9664:-473656,-710413 ) ] !27784 -}150 -Input:1404:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1405:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1406:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}151 Input:1407:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1408:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1409:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1410:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{151 +{152 [1,9727:4262630,47279633:28320399,43253760,0 (1,9727:4262630,4025873:0,0,0 [1,9727:-473656,4025873:0,0,0 @@ -175940,21 +176133,21 @@ k1,9639:31931601,6374028:189087 k1,9639:32583029,6374028:0 ) (1,9640:6764466,7239108:25818563,505283,134348 -k1,9639:8410905,7239108:255765 -k1,9639:9022530,7239108:255765 -k1,9639:10958639,7239108:255766 -k1,9639:12949797,7239108:255765 -k1,9639:13561422,7239108:255765 -k1,9639:15555202,7239108:255765 -k1,9639:18594936,7239108:255765 -k1,9639:19536864,7239108:255766 -k1,9639:20148489,7239108:255765 -k1,9639:23378933,7239108:255765 -k1,9639:25500508,7239108:255765 -k1,9639:26624625,7239108:255765 -k1,9639:28836641,7239108:255766 -k1,9639:30238631,7239108:255765 -k1,9639:31145824,7239108:255765 +k1,9639:8399327,7239108:244187 +k1,9639:8999374,7239108:244187 +k1,9639:10923905,7239108:244188 +k1,9639:12903485,7239108:244187 +k1,9639:13503532,7239108:244187 +k1,9639:15485734,7239108:244187 +k1,9639:18513890,7239108:244187 +k1,9639:19444240,7239108:244188 +k1,9639:20044287,7239108:244187 +k1,9639:23263153,7239108:244187 +k1,9639:25546820,7239108:244187 +k1,9639:26659359,7239108:244187 +k1,9639:28859797,7239108:244188 +k1,9639:30250209,7239108:244187 +k1,9639:31145824,7239108:244187 k1,9639:32583029,7239108:0 ) (1,9640:6764466,8104188:25818563,513147,134348 @@ -175984,27 +176177,27 @@ k1,9639:31089463,8104188:198559 k1,9639:32583029,8104188:0 ) (1,9640:6764466,8969268:25818563,505283,126483 -g1,9639:8661077,8969268 -g1,9639:9728658,8969268 -g1,9639:11032169,8969268 -g1,9639:12323883,8969268 -(1,9639:12323883,8969268:0,414482,115847 -r1,9727:12682149,8969268:358266,530329,115847 -k1,9639:12323883,8969268:-358266 -) -(1,9639:12323883,8969268:358266,414482,115847 -k1,9639:12323883,8969268:3277 -h1,9639:12678872,8969268:0,411205,112570 -) -g1,9639:12881378,8969268 -g1,9639:13766769,8969268 -g1,9639:14321858,8969268 -g1,9639:18254673,8969268 -g1,9639:19645347,8969268 -g1,9639:21281781,8969268 -g1,9639:21939107,8969268 -g1,9639:22899864,8969268 -k1,9640:32583029,8969268:7892722 +g1,9639:8834748,8969268 +g1,9639:9902329,8969268 +g1,9639:11205840,8969268 +g1,9639:12497554,8969268 +(1,9639:12497554,8969268:0,414482,115847 +r1,9727:12855820,8969268:358266,530329,115847 +k1,9639:12497554,8969268:-358266 +) +(1,9639:12497554,8969268:358266,414482,115847 +k1,9639:12497554,8969268:3277 +h1,9639:12852543,8969268:0,411205,112570 +) +g1,9639:13055049,8969268 +g1,9639:13940440,8969268 +g1,9639:14495529,8969268 +g1,9639:18428344,8969268 +g1,9639:19819018,8969268 +g1,9639:21455452,8969268 +g1,9639:22112778,8969268 +g1,9639:23073535,8969268 +k1,9640:32583029,8969268:7719051 g1,9640:32583029,8969268 ) v1,9642:6764466,9654123:0,393216,0 @@ -176476,13 +176669,16 @@ g1,9688:11610083,30204670 g1,9688:11942037,30204670 g1,9688:12273991,30204670 g1,9688:12605945,30204670 +g1,9688:12937899,30204670 g1,9688:13269853,30204670 -g1,9688:16257438,30204670 -g1,9688:16589392,30204670 -g1,9688:16921346,30204670 +g1,9688:13601807,30204670 +g1,9688:14265715,30204670 g1,9688:17253300,30204670 -h1,9688:17917208,30204670:0,0,0 -k1,9688:32583029,30204670:14665821 +g1,9688:17585254,30204670 +g1,9688:17917208,30204670 +g1,9688:18249162,30204670 +h1,9688:18913070,30204670:0,0,0 +k1,9688:32583029,30204670:13669959 g1,9688:32583029,30204670 ) (1,9688:6630773,30889525:25952256,407923,9908 @@ -176492,15 +176688,15 @@ g1,9688:8290543,30889525 g1,9688:8622497,30889525 g1,9688:8954451,30889525 g1,9688:9618359,30889525 -g1,9688:13269852,30889525 -g1,9688:13601806,30889525 -g1,9688:13933760,30889525 g1,9688:14265714,30889525 g1,9688:14597668,30889525 -g1,9688:16257438,30889525 -g1,9688:16589392,30889525 -h1,9688:17917208,30889525:0,0,0 -k1,9688:32583029,30889525:14665821 +g1,9688:14929622,30889525 +g1,9688:15261576,30889525 +g1,9688:15593530,30889525 +g1,9688:17253300,30889525 +g1,9688:17585254,30889525 +h1,9688:18913070,30889525:0,0,0 +k1,9688:32583029,30889525:13669959 g1,9688:32583029,30889525 ) (1,9688:6630773,31574380:25952256,407923,9908 @@ -176510,16 +176706,15 @@ g1,9688:8290543,31574380 g1,9688:8622497,31574380 g1,9688:8954451,31574380 g1,9688:9618359,31574380 -g1,9688:9950313,31574380 -g1,9688:13269852,31574380 -g1,9688:13601806,31574380 -g1,9688:13933760,31574380 g1,9688:14265714,31574380 g1,9688:14597668,31574380 -g1,9688:16257438,31574380 -g1,9688:16589392,31574380 -h1,9688:17917208,31574380:0,0,0 -k1,9688:32583029,31574380:14665821 +g1,9688:14929622,31574380 +g1,9688:15261576,31574380 +g1,9688:15593530,31574380 +g1,9688:17253300,31574380 +g1,9688:17585254,31574380 +h1,9688:18913070,31574380:0,0,0 +k1,9688:32583029,31574380:13669959 g1,9688:32583029,31574380 ) (1,9688:6630773,32259235:25952256,407923,9908 @@ -176529,15 +176724,15 @@ g1,9688:8290543,32259235 g1,9688:8622497,32259235 g1,9688:8954451,32259235 g1,9688:9618359,32259235 -g1,9688:13269852,32259235 -g1,9688:13601806,32259235 -g1,9688:13933760,32259235 g1,9688:14265714,32259235 g1,9688:14597668,32259235 -g1,9688:16257438,32259235 -g1,9688:16589392,32259235 -h1,9688:17917208,32259235:0,0,0 -k1,9688:32583029,32259235:14665821 +g1,9688:14929622,32259235 +g1,9688:15261576,32259235 +g1,9688:15593530,32259235 +g1,9688:17253300,32259235 +g1,9688:17585254,32259235 +h1,9688:18913070,32259235:0,0,0 +k1,9688:32583029,32259235:13669959 g1,9688:32583029,32259235 ) (1,9688:6630773,32944090:25952256,407923,9908 @@ -176547,15 +176742,16 @@ g1,9688:8290543,32944090 g1,9688:8622497,32944090 g1,9688:8954451,32944090 g1,9688:9618359,32944090 -g1,9688:13269852,32944090 -g1,9688:13601806,32944090 -g1,9688:13933760,32944090 +g1,9688:9950313,32944090 g1,9688:14265714,32944090 g1,9688:14597668,32944090 -g1,9688:16257438,32944090 -g1,9688:16589392,32944090 -h1,9688:17917208,32944090:0,0,0 -k1,9688:32583029,32944090:14665821 +g1,9688:14929622,32944090 +g1,9688:15261576,32944090 +g1,9688:15593530,32944090 +g1,9688:17253300,32944090 +g1,9688:17585254,32944090 +h1,9688:18913070,32944090:0,0,0 +k1,9688:32583029,32944090:13669959 g1,9688:32583029,32944090 ) (1,9688:6630773,33628945:25952256,407923,9908 @@ -176564,14 +176760,14 @@ g1,9688:7626635,33628945 g1,9688:8622497,33628945 g1,9688:9618359,33628945 g1,9688:9950313,33628945 -g1,9688:13269852,33628945 -g1,9688:13601806,33628945 -g1,9688:13933760,33628945 g1,9688:14265714,33628945 g1,9688:14597668,33628945 -g1,9688:16257438,33628945 -h1,9688:17917208,33628945:0,0,0 -k1,9688:32583029,33628945:14665821 +g1,9688:14929622,33628945 +g1,9688:15261576,33628945 +g1,9688:15593530,33628945 +g1,9688:17253300,33628945 +h1,9688:18913070,33628945:0,0,0 +k1,9688:32583029,33628945:13669959 g1,9688:32583029,33628945 ) ] @@ -176598,50 +176794,52 @@ k1,9693:6764466,34973018:-1103667 ) (1,9693:6764466,34973018:1103667,665693,196608 ) -k1,9693:8152738,34973018:284605 -k1,9693:9470667,34973018:327680 -k1,9693:12300689,34973018:284604 -k1,9693:14320687,34973018:284605 -k1,9693:15624376,34973018:284604 -(1,9693:15624376,34973018:0,414482,115847 -r1,9727:15982642,34973018:358266,530329,115847 -k1,9693:15624376,34973018:-358266 -) -(1,9693:15624376,34973018:358266,414482,115847 -k1,9693:15624376,34973018:3277 -h1,9693:15979365,34973018:0,411205,112570 -) -k1,9693:16267247,34973018:284605 -k1,9693:20285438,34973018:284605 -k1,9693:21761487,34973018:284604 -k1,9693:22401952,34973018:284605 -k1,9693:24336753,34973018:284604 -k1,9693:27336515,34973018:284605 -k1,9693:29783152,34973018:284604 -k1,9693:31086842,34973018:284605 +k1,9693:8128271,34973018:260138 +k1,9693:9446200,34973018:327680 +k1,9693:12251756,34973018:260138 +k1,9693:14247287,34973018:260138 +k1,9693:15526510,34973018:260138 +(1,9693:15526510,34973018:0,414482,115847 +r1,9727:15884776,34973018:358266,530329,115847 +k1,9693:15526510,34973018:-358266 +) +(1,9693:15526510,34973018:358266,414482,115847 +k1,9693:15526510,34973018:3277 +h1,9693:15881499,34973018:0,411205,112570 +) +k1,9693:16144914,34973018:260138 +k1,9693:20312308,34973018:260138 +k1,9693:21644614,34973018:260137 +k1,9693:23640145,34973018:260138 +k1,9693:24256143,34973018:260138 +k1,9693:26166478,34973018:260138 +k1,9693:29141773,34973018:260138 +k1,9693:31563944,34973018:260138 k1,9693:32583029,34973018:0 ) -(1,9694:6764466,35838098:25818563,513147,126483 -k1,9693:8757233,35838098:137443 -k1,9693:11841829,35838098:137442 -k1,9693:14861545,35838098:137443 -k1,9693:16018073,35838098:137443 -k1,9693:17651703,35838098:137443 -k1,9693:19657576,35838098:137442 -k1,9693:20446447,35838098:137443 -k1,9693:21868396,35838098:137443 -k1,9693:23861163,35838098:137443 -k1,9693:24650033,35838098:137442 -k1,9693:26383933,35838098:137443 -k1,9693:27587647,35838098:137443 -k1,9693:29055471,35838098:137443 -k1,9693:29405844,35838098:137381 +(1,9694:6764466,35838098:25818563,505283,126483 +k1,9693:8442188,35838098:181535 +k1,9693:10479046,35838098:181534 +k1,9693:13434065,35838098:181535 +k1,9693:14900105,35838098:181534 +k1,9693:17157165,35838098:181535 +k1,9693:19380801,35838098:181534 +k1,9693:22444609,35838098:181535 +k1,9693:23084241,35838098:181535 +k1,9693:23917203,35838098:181534 +k1,9693:25383244,35838098:181535 +k1,9693:27420102,35838098:181534 +k1,9693:28253065,35838098:181535 +k1,9693:30031056,35838098:181534 +k1,9693:31278862,35838098:181535 k1,9693:32583029,35838098:0 ) -(1,9694:6764466,36703178:25818563,505283,7863 -g1,9693:7982780,36703178 -k1,9694:32583029,36703178:23051634 -g1,9694:32583029,36703178 +(1,9694:6764466,36703178:25818563,513147,126483 +g1,9693:7176687,36703178 +g1,9693:10553101,36703178 +g1,9693:11771415,36703178 +k1,9694:32583030,36703178:19263000 +g1,9694:32583030,36703178 ) v1,9696:6764466,37388033:0,393216,0 (1,9702:6764466,39105032:25818563,2110215,196608 @@ -176879,17 +177077,17 @@ g1,9727:-473656,-710413 ] ) ] -!30208 -}151 -Input:1408:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1409:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1410:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!30340 +}152 Input:1411:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1412:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1416:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{152 +{153 [1,9800:4262630,47279633:28320399,43253760,0 (1,9800:4262630,4025873:0,0,0 [1,9800:-473656,4025873:0,0,0 @@ -177063,13 +177261,14 @@ g1,9726:10614221,7297855 g1,9726:10946175,7297855 g1,9726:11278129,7297855 g1,9726:11610083,7297855 -g1,9726:12273991,7297855 -g1,9726:15261576,7297855 +g1,9726:11942037,7297855 +g1,9726:12605945,7297855 g1,9726:15593530,7297855 g1,9726:15925484,7297855 g1,9726:16257438,7297855 -h1,9726:16921346,7297855:0,0,0 -k1,9726:32583029,7297855:15661683 +g1,9726:16589392,7297855 +h1,9726:17253300,7297855:0,0,0 +k1,9726:32583029,7297855:15329729 g1,9726:32583029,7297855 ) (1,9726:6630773,7982710:25952256,407923,9908 @@ -177077,16 +177276,15 @@ h1,9726:6630773,7982710:0,0,0 g1,9726:7626635,7982710 g1,9726:8290543,7982710 g1,9726:8622497,7982710 -g1,9726:8954451,7982710 -g1,9726:12273990,7982710 g1,9726:12605944,7982710 g1,9726:12937898,7982710 g1,9726:13269852,7982710 g1,9726:13601806,7982710 -g1,9726:15261576,7982710 +g1,9726:13933760,7982710 g1,9726:15593530,7982710 -h1,9726:16921346,7982710:0,0,0 -k1,9726:32583029,7982710:15661683 +g1,9726:15925484,7982710 +h1,9726:17253300,7982710:0,0,0 +k1,9726:32583029,7982710:15329729 g1,9726:32583029,7982710 ) (1,9726:6630773,8667565:25952256,407923,9908 @@ -177094,15 +177292,16 @@ h1,9726:6630773,8667565:0,0,0 g1,9726:7626635,8667565 g1,9726:8290543,8667565 g1,9726:8622497,8667565 -g1,9726:12273990,8667565 +g1,9726:8954451,8667565 g1,9726:12605944,8667565 g1,9726:12937898,8667565 g1,9726:13269852,8667565 g1,9726:13601806,8667565 -g1,9726:15261576,8667565 +g1,9726:13933760,8667565 g1,9726:15593530,8667565 -h1,9726:16921346,8667565:0,0,0 -k1,9726:32583029,8667565:15661683 +g1,9726:15925484,8667565 +h1,9726:17253300,8667565:0,0,0 +k1,9726:32583029,8667565:15329729 g1,9726:32583029,8667565 ) (1,9726:6630773,9352420:25952256,407923,9908 @@ -177110,15 +177309,15 @@ h1,9726:6630773,9352420:0,0,0 g1,9726:7626635,9352420 g1,9726:8290543,9352420 g1,9726:8622497,9352420 -g1,9726:12273990,9352420 g1,9726:12605944,9352420 g1,9726:12937898,9352420 g1,9726:13269852,9352420 g1,9726:13601806,9352420 -g1,9726:15261576,9352420 +g1,9726:13933760,9352420 g1,9726:15593530,9352420 -h1,9726:16921346,9352420:0,0,0 -k1,9726:32583029,9352420:15661683 +g1,9726:15925484,9352420 +h1,9726:17253300,9352420:0,0,0 +k1,9726:32583029,9352420:15329729 g1,9726:32583029,9352420 ) (1,9726:6630773,10037275:25952256,407923,9908 @@ -177126,15 +177325,15 @@ h1,9726:6630773,10037275:0,0,0 g1,9726:7626635,10037275 g1,9726:8290543,10037275 g1,9726:8622497,10037275 -g1,9726:12273990,10037275 g1,9726:12605944,10037275 g1,9726:12937898,10037275 g1,9726:13269852,10037275 g1,9726:13601806,10037275 -g1,9726:15261576,10037275 +g1,9726:13933760,10037275 g1,9726:15593530,10037275 -h1,9726:16921346,10037275:0,0,0 -k1,9726:32583029,10037275:15661683 +g1,9726:15925484,10037275 +h1,9726:17253300,10037275:0,0,0 +k1,9726:32583029,10037275:15329729 g1,9726:32583029,10037275 ) (1,9726:6630773,10722130:25952256,407923,9908 @@ -177142,14 +177341,14 @@ h1,9726:6630773,10722130:0,0,0 g1,9726:7626635,10722130 g1,9726:8622497,10722130 g1,9726:8954451,10722130 -g1,9726:12273990,10722130 g1,9726:12605944,10722130 g1,9726:12937898,10722130 g1,9726:13269852,10722130 g1,9726:13601806,10722130 -g1,9726:15261576,10722130 -h1,9726:16921346,10722130:0,0,0 -k1,9726:32583029,10722130:15661683 +g1,9726:13933760,10722130 +g1,9726:15593530,10722130 +h1,9726:17253300,10722130:0,0,0 +k1,9726:32583029,10722130:15329729 g1,9726:32583029,10722130 ) ] @@ -177312,12 +177511,13 @@ g1,9753:10614221,16772995 g1,9753:10946175,16772995 g1,9753:11278129,16772995 g1,9753:11610083,16772995 -g1,9753:12273991,16772995 +g1,9753:11942037,16772995 g1,9753:12605945,16772995 g1,9753:12937899,16772995 g1,9753:13269853,16772995 -h1,9753:13933761,16772995:0,0,0 -k1,9753:32583029,16772995:18649268 +g1,9753:13601807,16772995 +h1,9753:14265715,16772995:0,0,0 +k1,9753:32583029,16772995:18317314 g1,9753:32583029,16772995 ) (1,9753:6630773,17457850:25952256,407923,9908 @@ -177325,14 +177525,14 @@ h1,9753:6630773,17457850:0,0,0 g1,9753:7626635,17457850 g1,9753:8290543,17457850 g1,9753:8622497,17457850 -g1,9753:12273990,17457850 g1,9753:12605944,17457850 g1,9753:12937898,17457850 g1,9753:13269852,17457850 g1,9753:13601806,17457850 -h1,9753:13933760,17457850:0,0,0 -k1,9753:32583028,17457850:18649268 -g1,9753:32583028,17457850 +g1,9753:13933760,17457850 +h1,9753:14265714,17457850:0,0,0 +k1,9753:32583030,17457850:18317316 +g1,9753:32583030,17457850 ) (1,9753:6630773,18142705:25952256,407923,9908 h1,9753:6630773,18142705:0,0,0 @@ -177340,52 +177540,50 @@ g1,9753:7626635,18142705 g1,9753:8290543,18142705 g1,9753:8622497,18142705 g1,9753:8954451,18142705 -g1,9753:12273990,18142705 g1,9753:12605944,18142705 g1,9753:12937898,18142705 g1,9753:13269852,18142705 -h1,9753:13933760,18142705:0,0,0 -k1,9753:32583028,18142705:18649268 -g1,9753:32583028,18142705 +g1,9753:13601806,18142705 +h1,9753:14265714,18142705:0,0,0 +k1,9753:32583030,18142705:18317316 +g1,9753:32583030,18142705 ) (1,9753:6630773,18827560:25952256,407923,9908 h1,9753:6630773,18827560:0,0,0 g1,9753:7626635,18827560 g1,9753:8290543,18827560 g1,9753:8622497,18827560 -g1,9753:8954451,18827560 -g1,9753:12273990,18827560 g1,9753:12605944,18827560 g1,9753:12937898,18827560 g1,9753:13269852,18827560 -h1,9753:13933760,18827560:0,0,0 -k1,9753:32583028,18827560:18649268 -g1,9753:32583028,18827560 +g1,9753:13601806,18827560 +h1,9753:14265714,18827560:0,0,0 +k1,9753:32583030,18827560:18317316 +g1,9753:32583030,18827560 ) (1,9753:6630773,19512415:25952256,407923,9908 h1,9753:6630773,19512415:0,0,0 g1,9753:7626635,19512415 g1,9753:8290543,19512415 g1,9753:8622497,19512415 -g1,9753:12273990,19512415 g1,9753:12605944,19512415 g1,9753:12937898,19512415 -h1,9753:13933760,19512415:0,0,0 -k1,9753:32583028,19512415:18649268 -g1,9753:32583028,19512415 +g1,9753:13269852,19512415 +h1,9753:14265714,19512415:0,0,0 +k1,9753:32583030,19512415:18317316 +g1,9753:32583030,19512415 ) (1,9753:6630773,20197270:25952256,407923,9908 h1,9753:6630773,20197270:0,0,0 g1,9753:7626635,20197270 g1,9753:8290543,20197270 g1,9753:8622497,20197270 -g1,9753:8954451,20197270 -g1,9753:12273990,20197270 g1,9753:12605944,20197270 g1,9753:12937898,20197270 -h1,9753:13933760,20197270:0,0,0 -k1,9753:32583028,20197270:18649268 -g1,9753:32583028,20197270 +g1,9753:13269852,20197270 +h1,9753:14265714,20197270:0,0,0 +k1,9753:32583030,20197270:18317316 +g1,9753:32583030,20197270 ) (1,9753:6630773,20882125:25952256,407923,9908 h1,9753:6630773,20882125:0,0,0 @@ -177393,11 +177591,11 @@ g1,9753:7626635,20882125 g1,9753:8290543,20882125 g1,9753:8622497,20882125 g1,9753:8954451,20882125 -g1,9753:12273990,20882125 g1,9753:12605944,20882125 -h1,9753:13933760,20882125:0,0,0 -k1,9753:32583028,20882125:18649268 -g1,9753:32583028,20882125 +g1,9753:12937898,20882125 +h1,9753:14265714,20882125:0,0,0 +k1,9753:32583030,20882125:18317316 +g1,9753:32583030,20882125 ) (1,9753:6630773,21566980:25952256,407923,9908 h1,9753:6630773,21566980:0,0,0 @@ -177405,22 +177603,22 @@ g1,9753:7626635,21566980 g1,9753:8290543,21566980 g1,9753:8622497,21566980 g1,9753:8954451,21566980 -g1,9753:12273990,21566980 g1,9753:12605944,21566980 -h1,9753:13933760,21566980:0,0,0 -k1,9753:32583028,21566980:18649268 -g1,9753:32583028,21566980 +g1,9753:12937898,21566980 +h1,9753:14265714,21566980:0,0,0 +k1,9753:32583030,21566980:18317316 +g1,9753:32583030,21566980 ) (1,9753:6630773,22251835:25952256,407923,9908 h1,9753:6630773,22251835:0,0,0 g1,9753:7626635,22251835 g1,9753:8290543,22251835 g1,9753:8622497,22251835 -g1,9753:12273990,22251835 g1,9753:12605944,22251835 -h1,9753:13933760,22251835:0,0,0 -k1,9753:32583028,22251835:18649268 -g1,9753:32583028,22251835 +g1,9753:12937898,22251835 +h1,9753:14265714,22251835:0,0,0 +k1,9753:32583030,22251835:18317316 +g1,9753:32583030,22251835 ) (1,9753:6630773,22936690:25952256,407923,9908 h1,9753:6630773,22936690:0,0,0 @@ -177428,20 +177626,21 @@ g1,9753:7626635,22936690 g1,9753:8290543,22936690 g1,9753:8622497,22936690 g1,9753:8954451,22936690 -g1,9753:12273990,22936690 g1,9753:12605944,22936690 -h1,9753:13933760,22936690:0,0,0 -k1,9753:32583028,22936690:18649268 -g1,9753:32583028,22936690 +g1,9753:12937898,22936690 +h1,9753:14265714,22936690:0,0,0 +k1,9753:32583030,22936690:18317316 +g1,9753:32583030,22936690 ) (1,9753:6630773,23621545:25952256,407923,9908 h1,9753:6630773,23621545:0,0,0 g1,9753:7626635,23621545 g1,9753:8622497,23621545 -g1,9753:12273990,23621545 -h1,9753:13933760,23621545:0,0,0 -k1,9753:32583028,23621545:18649268 -g1,9753:32583028,23621545 +g1,9753:8954451,23621545 +g1,9753:12605944,23621545 +h1,9753:14265714,23621545:0,0,0 +k1,9753:32583030,23621545:18317316 +g1,9753:32583030,23621545 ) ] ) @@ -177557,10 +177756,8 @@ g1,9769:11942037,27617845 g1,9769:12273991,27617845 g1,9769:12605945,27617845 g1,9769:12937899,27617845 -g1,9769:13269853,27617845 -g1,9769:13601807,27617845 -h1,9769:13933761,27617845:0,0,0 -k1,9769:32583029,27617845:18649268 +h1,9769:13269853,27617845:0,0,0 +k1,9769:32583029,27617845:19313176 g1,9769:32583029,27617845 ) (1,9769:6630773,28302700:25952256,407923,9908 @@ -177571,9 +177768,8 @@ g1,9769:8622497,28302700 g1,9769:8954451,28302700 g1,9769:9286405,28302700 g1,9769:10282267,28302700 -k1,9769:10282267,28302700:0 -h1,9769:13933760,28302700:0,0,0 -k1,9769:32583028,28302700:18649268 +h1,9769:13269852,28302700:0,0,0 +k1,9769:32583028,28302700:19313176 g1,9769:32583028,28302700 ) (1,9769:6630773,28987555:25952256,407923,9908 @@ -177584,9 +177780,8 @@ g1,9769:8622497,28987555 g1,9769:8954451,28987555 g1,9769:9286405,28987555 g1,9769:10282267,28987555 -k1,9769:10282267,28987555:0 -h1,9769:13933760,28987555:0,0,0 -k1,9769:32583028,28987555:18649268 +h1,9769:13269852,28987555:0,0,0 +k1,9769:32583028,28987555:19313176 g1,9769:32583028,28987555 ) ] @@ -177817,10 +178012,9 @@ g1,9784:6630773,37994110 ) g1,9786:7626635,37994110 g1,9786:8954451,37994110 -g1,9786:12605944,37994110 -k1,9786:12605944,37994110:0 -h1,9786:15925483,37994110:0,0,0 -k1,9786:32583029,37994110:16657546 +g1,9786:12273990,37994110 +h1,9786:15261575,37994110:0,0,0 +k1,9786:32583029,37994110:17321454 g1,9786:32583029,37994110 ) ] @@ -177972,11 +178166,8 @@ g1,9800:-473656,-710413 ] ) ] -!29034 -}152 -Input:1415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1416:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!28924 +}153 Input:1418:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1419:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1420:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -177996,8 +178187,11 @@ Input:1433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1434:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1436:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1437:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1438:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1439:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2036 -{153 +{154 [1,9830:4262630,47279633:28320399,43253760,0 (1,9830:4262630,4025873:0,0,0 [1,9830:-473656,4025873:0,0,0 @@ -178379,20 +178573,20 @@ k1,9797:32583029,23471733:14956362 g1,9797:32583029,23471733 ) (1,9800:6630773,24730029:25952256,513147,126483 -k1,9799:7553289,24730029:162298 -k1,9799:9981167,24730029:162298 -k1,9799:10558271,24730029:162261 -k1,9799:14237230,24730029:162297 -k1,9799:15015566,24730029:162298 -k1,9799:15533724,24730029:162298 -k1,9799:17527098,24730029:162298 -k1,9799:18680955,24730029:162297 -k1,9799:21904440,24730029:162298 -k1,9799:22956717,24730029:162298 -k1,9799:26159230,24730029:162298 -k1,9799:26937565,24730029:162297 -k1,9799:28118948,24730029:162298 -k1,9799:31221191,24730029:162298 +k1,9799:7540885,24730029:149894 +k1,9799:10130028,24730029:149893 +k1,9799:10694716,24730029:149845 +k1,9799:14361272,24730029:149894 +k1,9799:15127203,24730029:149893 +k1,9799:15632957,24730029:149894 +k1,9799:17613926,24730029:149893 +k1,9799:18755380,24730029:149894 +k1,9799:21966461,24730029:149894 +k1,9799:23006333,24730029:149893 +k1,9799:26196442,24730029:149894 +k1,9799:26962374,24730029:149894 +k1,9799:28131352,24730029:149893 +k1,9799:31221191,24730029:149894 k1,9799:32583029,24730029:0 ) (1,9800:6630773,25595109:25952256,513147,134348 @@ -178847,11 +179041,8 @@ g1,9830:-473656,-710413 ] ) ] -!23490 -}153 -Input:1437:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1438:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1439:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!23491 +}154 Input:1440:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1441:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1442:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -178881,8 +179072,11 @@ Input:1465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1467:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1468:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1470:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1471:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2956 -{154 +{155 [1,9929:4262630,47279633:28320399,43253760,0 (1,9929:4262630,4025873:0,0,0 [1,9929:-473656,4025873:0,0,0 @@ -179350,24 +179544,25 @@ k1,9852:31333913,19173739:251407 k1,9853:32583029,19173739:0 ) (1,9853:6764466,20038819:25818563,513147,126483 -k1,9852:8809734,20038819:256790 -k1,9852:11400261,20038819:256790 -k1,9852:12954008,20038819:256789 -(1,9852:12954008,20038819:0,459977,115847 -r1,9929:16477681,20038819:3523673,575824,115847 -k1,9852:12954008,20038819:-3523673 -) -(1,9852:12954008,20038819:3523673,459977,115847 -g1,9852:14012421,20038819 -h1,9852:16474404,20038819:0,411205,112570 -) -k1,9852:16734471,20038819:256790 -k1,9852:17607299,20038819:256790 -k1,9852:18883174,20038819:256790 -k1,9852:25567080,20038819:256790 -k1,9852:29010229,20038819:256789 -k1,9852:31135450,20038819:256790 -k1,9852:31923737,20038819:256790 +k1,9852:8805752,20038819:252808 +k1,9852:11392297,20038819:252808 +k1,9852:12942064,20038819:252809 +(1,9852:12942064,20038819:0,459977,115847 +r1,9929:16465737,20038819:3523673,575824,115847 +k1,9852:12942064,20038819:-3523673 +) +(1,9852:12942064,20038819:3523673,459977,115847 +g1,9852:14000477,20038819 +h1,9852:16462460,20038819:0,411205,112570 +) +k1,9852:16718545,20038819:252808 +k1,9852:17587391,20038819:252808 +k1,9852:18859284,20038819:252808 +k1,9852:23083574,20038819:252808 +k1,9852:25579024,20038819:252808 +k1,9852:29018193,20038819:252809 +k1,9852:31139432,20038819:252808 +k1,9852:31923737,20038819:252808 k1,9852:32583029,20038819:0 ) (1,9853:6764466,20903899:25818563,505283,126483 @@ -179958,11 +180153,11 @@ g1,9929:-473656,-710413 ] ) ] -!30236 -}154 -Input:1469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!30269 +}155 +Input:1472:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{155 +{156 [1,9985:4262630,47279633:28320399,43253760,0 (1,9985:4262630,4025873:0,0,0 [1,9985:-473656,4025873:0,0,0 @@ -180844,25 +181039,22 @@ g1,9985:-473656,-710413 ) ] !22922 -}155 -Input:1470:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1471:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1472:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}156 Input:1473:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1474:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1475:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1476:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1477:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1478:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1479:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1480:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1481:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1477:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1478:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1479:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1480:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1481:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1482:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -180872,24 +181064,27 @@ Input:1493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1498:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1499:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1500:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1500:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1501:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1502:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1503:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1503:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1504:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1505:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1506:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1506:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1507:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1508:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1509:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1510:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1511:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1512:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1513:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1514:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1515:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3960 -{156 +{157 [1,10079:4262630,47279633:28320399,43253760,0 (1,10079:4262630,4025873:0,0,0 [1,10079:-473656,4025873:0,0,0 @@ -181859,27 +182054,27 @@ g1,10075:32583030,43002637 ) (1,10077:6630773,43867717:25952256,513147,126483 h1,10076:6630773,43867717:983040,0,0 -k1,10076:8427517,43867717:185869 -k1,10076:9632471,43867717:185869 -k1,10076:11124472,43867717:185868 -k1,10076:13971758,43867717:185869 -k1,10076:16026058,43867717:185869 -k1,10076:17080279,43867717:185869 -k1,10076:18358632,43867717:185868 -k1,10076:18900361,43867717:185869 -(1,10076:18900361,43867717:0,452978,115847 -r1,10079:22072321,43867717:3171960,568825,115847 -k1,10076:18900361,43867717:-3171960 -) -(1,10076:18900361,43867717:3171960,452978,115847 -k1,10076:18900361,43867717:3277 -h1,10076:22069044,43867717:0,411205,112570 -) -k1,10076:22258190,43867717:185869 -k1,10076:24955399,43867717:185869 -k1,10076:25827429,43867717:185868 -k1,10076:27032383,43867717:185869 -k1,10076:30424273,43867717:185869 +k1,10076:8414157,43867717:172509 +k1,10076:9605752,43867717:172510 +k1,10076:11084394,43867717:172509 +k1,10076:13918321,43867717:172510 +k1,10076:16132932,43867717:172509 +k1,10076:17173794,43867717:172510 +k1,10076:18438788,43867717:172509 +k1,10076:18967158,43867717:172510 +(1,10076:18967158,43867717:0,452978,115847 +r1,10079:22139118,43867717:3171960,568825,115847 +k1,10076:18967158,43867717:-3171960 +) +(1,10076:18967158,43867717:3171960,452978,115847 +k1,10076:18967158,43867717:3277 +h1,10076:22135841,43867717:0,411205,112570 +) +k1,10076:22311627,43867717:172509 +k1,10076:24995477,43867717:172510 +k1,10076:25854148,43867717:172509 +k1,10076:27045743,43867717:172510 +k1,10076:30424273,43867717:172509 k1,10076:32583029,43867717:0 ) (1,10077:6630773,44732797:25952256,513147,102891 @@ -181948,9 +182143,9 @@ g1,10079:-473656,-710413 ) ] !30987 -}156 +}157 !12 -{157 +{158 [1,10113:4262630,47279633:28320399,43253760,0 (1,10113:4262630,4025873:0,0,0 [1,10113:-473656,4025873:0,0,0 @@ -182842,10 +183037,7 @@ g1,10113:-473656,-710413 ) ] !23177 -}157 -Input:1513:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1514:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1515:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}158 Input:1516:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1517:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1518:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -182865,8 +183057,11 @@ Input:1531:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1532:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1533:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1534:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1535:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1536:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2036 -{158 +{159 [1,10195:4262630,47279633:28320399,43253760,0 (1,10195:4262630,4025873:0,0,0 [1,10195:-473656,4025873:0,0,0 @@ -183424,41 +183619,41 @@ k1,10141:30190965,23515325:476180 k1,10141:32583029,23515325:0 ) (1,10142:6764466,24380405:25818563,513147,126483 -k1,10141:8600583,24380405:313715 -k1,10141:11618970,24380405:313716 -k1,10141:12398646,24380405:313715 -k1,10141:13882834,24380405:313715 -k1,10141:15131092,24380405:313715 -(1,10141:15131092,24380405:0,452978,115847 -r1,10195:20413324,24380405:5282232,568825,115847 -k1,10141:15131092,24380405:-5282232 -) -(1,10141:15131092,24380405:5282232,452978,115847 -g1,10141:18651487,24380405 -g1,10141:19706623,24380405 -h1,10141:20410047,24380405:0,411205,112570 -) -k1,10141:20900710,24380405:313716 -(1,10141:20900710,24380405:0,452978,115847 -r1,10195:25831230,24380405:4930520,568825,115847 -k1,10141:20900710,24380405:-4930520 -) -(1,10141:20900710,24380405:4930520,452978,115847 -g1,10141:24421105,24380405 -g1,10141:25476241,24380405 -h1,10141:25827953,24380405:0,411205,112570 -) -k1,10141:26318615,24380405:313715 -(1,10141:26318615,24380405:0,452978,115847 -r1,10195:31600847,24380405:5282232,568825,115847 -k1,10141:26318615,24380405:-5282232 -) -(1,10141:26318615,24380405:5282232,452978,115847 -g1,10141:29839010,24380405 -g1,10141:30894146,24380405 -h1,10141:31597570,24380405:0,411205,112570 -) -k1,10141:31914562,24380405:313715 +k1,10141:8578875,24380405:292007 +k1,10141:11575552,24380405:292006 +k1,10141:12333520,24380405:292007 +k1,10141:13795999,24380405:292006 +k1,10141:15022549,24380405:292007 +(1,10141:15022549,24380405:0,452978,115847 +r1,10195:20304781,24380405:5282232,568825,115847 +k1,10141:15022549,24380405:-5282232 +) +(1,10141:15022549,24380405:5282232,452978,115847 +g1,10141:18542944,24380405 +g1,10141:19598080,24380405 +h1,10141:20301504,24380405:0,411205,112570 +) +k1,10141:20770457,24380405:292006 +(1,10141:20770457,24380405:0,452978,115847 +r1,10195:25700977,24380405:4930520,568825,115847 +k1,10141:20770457,24380405:-4930520 +) +(1,10141:20770457,24380405:4930520,452978,115847 +g1,10141:24290852,24380405 +g1,10141:25345988,24380405 +h1,10141:25697700,24380405:0,411205,112570 +) +k1,10141:26166654,24380405:292007 +(1,10141:26166654,24380405:0,452978,115847 +r1,10195:31448886,24380405:5282232,568825,115847 +k1,10141:26166654,24380405:-5282232 +) +(1,10141:26166654,24380405:5282232,452978,115847 +g1,10141:29687049,24380405 +g1,10141:30742185,24380405 +h1,10141:31445609,24380405:0,411205,112570 +) +k1,10141:31914562,24380405:292006 k1,10142:32583029,24380405:0 ) (1,10142:6764466,25245485:25818563,513147,126483 @@ -183471,25 +183666,25 @@ g1,10141:10284861,25245485 g1,10141:11339997,25245485 h1,10141:14505403,25245485:0,411205,112570 ) -g1,10141:14881579,25245485 -g1,10141:16692338,25245485 -g1,10141:19246276,25245485 -g1,10141:20464590,25245485 -(1,10141:20464590,25245485:0,435480,115847 -r1,10195:21526280,25245485:1061690,551327,115847 -k1,10141:20464590,25245485:-1061690 +k1,10141:14867253,25245485:184903 +k1,10141:18787053,25245485:184903 +k1,10141:21326665,25245485:184903 +k1,10141:22530653,25245485:184903 +(1,10141:22530653,25245485:0,435480,115847 +r1,10195:23592343,25245485:1061690,551327,115847 +k1,10141:22530653,25245485:-1061690 ) -(1,10141:20464590,25245485:1061690,435480,115847 -g1,10141:21171291,25245485 -h1,10141:21523003,25245485:0,411205,112570 +(1,10141:22530653,25245485:1061690,435480,115847 +g1,10141:23237354,25245485 +h1,10141:23589066,25245485:0,411205,112570 ) -g1,10141:21725509,25245485 -g1,10141:22610900,25245485 -g1,10141:25075709,25245485 -g1,10141:27128952,25245485 -g1,10141:28519626,25245485 -k1,10142:32583029,25245485:1994432 -g1,10142:32583029,25245485 +k1,10141:23777245,25245485:184902 +k1,10141:24648310,25245485:184903 +k1,10141:27098793,25245485:184903 +k1,10141:29137710,25245485:184903 +k1,10141:30514058,25245485:184903 +k1,10142:32583029,25245485:0 +k1,10142:32583029,25245485:0 ) ] g1,10142:32583029,25371968 @@ -183917,27 +184112,27 @@ k1,10172:31563944,41520311:215286 k1,10172:32583029,41520311:0 ) (1,10173:6764466,42385391:25818563,505283,115847 -k1,10172:8702196,42385391:235760 -k1,10172:10717914,42385391:235760 -k1,10172:12347626,42385391:235761 -k1,10172:15808413,42385391:235760 -k1,10172:17741555,42385391:235760 -k1,10172:18333175,42385391:235760 -(1,10172:18333175,42385391:0,452978,115847 -r1,10195:21153424,42385391:2820249,568825,115847 -k1,10172:18333175,42385391:-2820249 -) -(1,10172:18333175,42385391:2820249,452978,115847 -k1,10172:18333175,42385391:3277 -h1,10172:21150147,42385391:0,411205,112570 -) -k1,10172:21389185,42385391:235761 -k1,10172:24811305,42385391:235760 -k1,10172:25578562,42385391:235760 -k1,10172:27684720,42385391:235760 -k1,10172:28571909,42385391:235761 -k1,10172:30219970,42385391:235760 -k1,10172:31647175,42385391:235760 +k1,10172:8688837,42385391:222401 +k1,10172:10691196,42385391:222401 +k1,10172:12307548,42385391:222401 +k1,10172:15754976,42385391:222401 +k1,10172:17848430,42385391:222401 +k1,10172:18426691,42385391:222401 +(1,10172:18426691,42385391:0,452978,115847 +r1,10195:21246940,42385391:2820249,568825,115847 +k1,10172:18426691,42385391:-2820249 +) +(1,10172:18426691,42385391:2820249,452978,115847 +k1,10172:18426691,42385391:3277 +h1,10172:21243663,42385391:0,411205,112570 +) +k1,10172:21469340,42385391:222400 +k1,10172:24878101,42385391:222401 +k1,10172:25631999,42385391:222401 +k1,10172:27724798,42385391:222401 +k1,10172:28598627,42385391:222401 +k1,10172:30233329,42385391:222401 +k1,10172:31647175,42385391:222401 k1,10173:32583029,42385391:0 ) (1,10173:6764466,43250471:25818563,505283,7863 @@ -183968,11 +184163,8 @@ g1,10195:-473656,-710413 ] ) ] -!31559 -}158 -Input:1535:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1536:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!31618 +}159 Input:1538:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1539:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1540:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -184000,8 +184192,11 @@ Input:1561:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1562:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1563:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1564:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2772 -{159 +{160 [1,10273:4262630,47279633:28320399,43253760,0 (1,10273:4262630,4025873:0,0,0 [1,10273:-473656,4025873:0,0,0 @@ -184318,35 +184513,35 @@ k1,10198:31931601,15596213:236320 k1,10198:32583029,15596213:0 ) (1,10199:6764466,16461293:25818563,513147,126483 -k1,10198:8404919,16461293:243881 -k1,10198:10833116,16461293:243882 -k1,10198:11704832,16461293:243881 -k1,10198:13550413,16461293:243881 -k1,10198:14453586,16461293:243881 -k1,10198:15716553,16461293:243882 -k1,10198:18952153,16461293:243881 -k1,10198:21051358,16461293:243881 -k1,10198:22314324,16461293:243881 -k1,10198:24054393,16461293:243882 -k1,10198:25245925,16461293:243881 -k1,10198:26508891,16461293:243881 -k1,10198:28450154,16461293:243881 -k1,10198:29225533,16461293:243882 -k1,10198:29825274,16461293:243881 +k1,10198:8393341,16461293:232303 +k1,10198:10809959,16461293:232303 +k1,10198:11670098,16461293:232304 +k1,10198:13504101,16461293:232303 +k1,10198:14395696,16461293:232303 +k1,10198:15647084,16461293:232303 +k1,10198:18871106,16461293:232303 +k1,10198:21132405,16461293:232304 +k1,10198:22383793,16461293:232303 +k1,10198:24112283,16461293:232303 +k1,10198:25292237,16461293:232303 +k1,10198:26543625,16461293:232303 +k1,10198:28473311,16461293:232304 +k1,10198:29237111,16461293:232303 +k1,10198:29825274,16461293:232303 k1,10198:32583029,16461293:0 ) (1,10199:6764466,17326373:25818563,513147,134348 -k1,10198:8706238,17326373:279124 -k1,10198:9668247,17326373:279124 -k1,10198:10718073,17326373:279123 -k1,10198:14071491,17326373:279124 -k1,10198:16510026,17326373:279124 -k1,10198:19546905,17326373:279124 -k1,10198:22010344,17326373:279124 -k1,10198:25734696,17326373:279124 -k1,10198:27170529,17326373:279123 -k1,10198:28108945,17326373:279124 -k1,10198:29591310,17326373:279124 +k1,10198:8661375,17326373:234261 +k1,10198:9578522,17326373:234262 +k1,10198:10583486,17326373:234261 +k1,10198:13892042,17326373:234262 +k1,10198:16285714,17326373:234261 +k1,10198:19277731,17326373:234262 +k1,10198:21696307,17326373:234261 +k1,10198:25375797,17326373:234262 +k1,10198:26766768,17326373:234261 +k1,10198:27660322,17326373:234262 +k1,10198:29591310,17326373:234261 k1,10198:32583029,17326373:0 ) (1,10199:6764466,18191453:25818563,513147,134348 @@ -184683,18 +184878,18 @@ h1,10206:32583029,30351715:0,0,0 k1,10206:32583029,30351715:0 ) (1,10207:6630773,31216795:25952256,513147,134348 -k1,10206:7988788,31216795:285846 -k1,10206:10646382,31216795:285846 -k1,10206:11548267,31216795:285847 -k1,10206:14217657,31216795:285846 -k1,10206:15154931,31216795:285846 -k1,10206:16459862,31216795:285846 -k1,10206:19938622,31216795:285846 -k1,10206:23178176,31216795:285846 -k1,10206:24123315,31216795:285847 -k1,10206:26891009,31216795:285846 -k1,10206:28245747,31216795:285846 -k1,10206:29550678,31216795:285846 +k1,10206:7974316,31216795:271374 +k1,10206:10617437,31216795:271373 +k1,10206:11504849,31216795:271374 +k1,10206:14159766,31216795:271373 +k1,10206:15082568,31216795:271374 +k1,10206:16373026,31216795:271373 +k1,10206:19837314,31216795:271374 +k1,10206:23062396,31216795:271374 +k1,10206:23993061,31216795:271373 +k1,10206:26746283,31216795:271374 +k1,10206:28260219,31216795:271373 +k1,10206:29550678,31216795:271374 k1,10206:32583029,31216795:0 ) (1,10207:6630773,32081875:25952256,505283,126483 @@ -185084,10 +185279,7 @@ g1,10273:-473656,-710413 ) ] !31646 -}159 -Input:1565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}160 Input:1568:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1569:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1570:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -185103,8 +185295,11 @@ Input:1579:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1580:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1582:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1585:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{160 +{161 [1,10317:4262630,47279633:28320399,43253760,0 (1,10317:4262630,4025873:0,0,0 [1,10317:-473656,4025873:0,0,0 @@ -185605,49 +185800,49 @@ k1,10276:6764466,21241130:-1103667 ) (1,10276:6764466,21241130:1103667,665693,196608 ) -k1,10276:8089368,21241130:221235 -k1,10276:9815586,21241130:327680 -k1,10276:11753864,21241130:221235 -k1,10276:15202092,21241130:221235 -k1,10276:18415046,21241130:221235 -k1,10276:19287709,21241130:221235 -k1,10276:20851778,21241130:221236 -k1,10276:22640634,21241130:221235 -k1,10276:24255820,21241130:221235 -k1,10276:24832915,21241130:221235 -k1,10276:26187268,21241130:221235 -k1,10276:29533915,21241130:221235 -k1,10276:31563944,21241130:221235 +k1,10276:8024879,21241130:156746 +k1,10276:9751097,21241130:327680 +k1,10276:11624887,21241130:156747 +k1,10276:15008626,21241130:156746 +k1,10276:18157091,21241130:156746 +k1,10276:18965266,21241130:156747 +k1,10276:20464845,21241130:156746 +k1,10276:22189213,21241130:156747 +k1,10276:25707956,21241130:156746 +k1,10276:26220562,21241130:156746 +k1,10276:27510427,21241130:156747 +k1,10276:30792585,21241130:156746 k1,10276:32583029,21241130:0 ) (1,10277:6764466,22106210:25818563,505283,126483 -k1,10276:9992060,22106210:235875 -k1,10276:12096366,22106210:235875 -k1,10276:13825151,22106210:235875 -k1,10276:15231498,22106210:235874 -k1,10276:19132146,22106210:235875 -k1,10276:20664979,22106210:235875 -k1,10276:23679581,22106210:235875 -k1,10276:25926101,22106210:235875 -k1,10276:27153536,22106210:235875 -k1,10276:28938026,22106210:235874 -k1,10276:30554089,22106210:235875 -k1,10276:31955194,22106210:235875 +k1,10276:7996925,22106210:213374 +k1,10276:11202018,22106210:213374 +k1,10276:13283824,22106210:213375 +k1,10276:14990108,22106210:213374 +k1,10276:16373955,22106210:213374 +k1,10276:20252102,22106210:213374 +k1,10276:21762434,22106210:213374 +k1,10276:24754535,22106210:213374 +k1,10276:26978554,22106210:213374 +k1,10276:28183489,22106210:213375 +k1,10276:29945479,22106210:213374 +k1,10276:31539041,22106210:213374 k1,10276:32583029,22106210:0 ) (1,10277:6764466,22971290:25818563,505283,126483 -k1,10276:9841709,22971290:237568 -k1,10276:12008657,22971290:237568 -k1,10276:13705056,22971290:237568 -k1,10276:15273005,22971290:237568 -k1,10276:18502292,22971290:237568 -k1,10276:19391288,22971290:237568 -k1,10276:20820300,22971290:237567 -k1,10276:22759838,22971290:237568 -k1,10276:25627366,22971290:237568 -k1,10276:27735987,22971290:237568 -k1,10276:28601390,22971290:237568 -k1,10276:30540928,22971290:237568 +k1,10276:7563299,22971290:170998 +k1,10276:10573973,22971290:170999 +k1,10276:12674351,22971290:170998 +k1,10276:14304181,22971290:170999 +k1,10276:15805560,22971290:170998 +k1,10276:18968278,22971290:170999 +k1,10276:19790704,22971290:170998 +k1,10276:21153148,22971290:170999 +k1,10276:23026116,22971290:170998 +k1,10276:25827075,22971290:170999 +k1,10276:27869126,22971290:170998 +k1,10276:28667960,22971290:170999 +k1,10276:30540928,22971290:170998 k1,10276:32583029,22971290:0 ) (1,10277:6764466,23836370:25818563,513147,126483 @@ -185838,25 +186033,25 @@ k1,10294:6764466,31497555:-1707507 ) (1,10294:6764466,31497555:1707507,701514,196608 ) -k1,10294:8733933,31497555:261960 -k1,10294:10460151,31497555:327680 -k1,10294:12595785,31497555:261960 -k1,10294:14593139,31497555:261961 -(1,10294:14593139,31497555:0,459977,115847 -r1,10317:17413388,31497555:2820249,575824,115847 -k1,10294:14593139,31497555:-2820249 -) -(1,10294:14593139,31497555:2820249,459977,115847 -k1,10294:14593139,31497555:3277 -h1,10294:17410111,31497555:0,411205,112570 -) -k1,10294:17849018,31497555:261960 -k1,10294:18466838,31497555:261960 -k1,10294:20601817,31497555:261960 -k1,10294:24050137,31497555:261960 -k1,10294:24963526,31497555:261961 -k1,10294:27937366,31497555:261960 -k1,10294:31015408,31497555:261960 +k1,10294:8754184,31497555:282211 +k1,10294:10480402,31497555:327680 +k1,10294:12554367,31497555:282211 +(1,10294:12554367,31497555:0,459977,115847 +r1,10317:15374616,31497555:2820249,575824,115847 +k1,10294:12554367,31497555:-2820249 +) +(1,10294:12554367,31497555:2820249,459977,115847 +k1,10294:12554367,31497555:3277 +h1,10294:15371339,31497555:0,411205,112570 +) +k1,10294:15830496,31497555:282210 +k1,10294:17727514,31497555:282211 +k1,10294:18365585,31497555:282211 +k1,10294:20520815,31497555:282211 +k1,10294:23989386,31497555:282211 +k1,10294:24923024,31497555:282210 +k1,10294:27917115,31497555:282211 +k1,10294:31015408,31497555:282211 k1,10294:32583029,31497555:0 ) (1,10295:6764466,32362635:25818563,505283,134348 @@ -186231,10 +186426,7 @@ g1,10317:-473656,-710413 ) ] !32292 -}160 -Input:1583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1585:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}161 Input:1586:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1587:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1588:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -186242,8 +186434,11 @@ Input:1589:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1590:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1591:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{161 +{162 [1,10348:4262630,47279633:28320399,43253760,0 (1,10348:4262630,4025873:0,0,0 [1,10348:-473656,4025873:0,0,0 @@ -186749,21 +186944,21 @@ k1,10318:29820686,31542087:210183 k1,10318:32583029,31542087:0 ) (1,10319:6630773,32407167:25952256,513147,134348 -k1,10318:9855799,32407167:199229 -k1,10318:10706457,32407167:199230 -k1,10318:13859394,32407167:199229 -k1,10318:14717915,32407167:199229 -k1,10318:15273005,32407167:199230 -k1,10318:17623781,32407167:199229 -k1,10318:20084003,32407167:199230 -k1,10318:21276758,32407167:199229 -k1,10318:22158872,32407167:199229 -k1,10318:23747465,32407167:199230 -k1,10318:25822990,32407167:199229 -k1,10318:28508000,32407167:199229 -h1,10318:29877047,32407167:0,0,0 -k1,10318:30076277,32407167:199230 -k1,10318:31084876,32407167:199229 +k1,10318:9843394,32407167:186824 +k1,10318:10681647,32407167:186825 +k1,10318:13822179,32407167:186824 +k1,10318:14668295,32407167:186824 +k1,10318:15210980,32407167:186825 +k1,10318:17549351,32407167:186824 +k1,10318:19997167,32407167:186824 +k1,10318:21351188,32407167:186825 +k1,10318:22220897,32407167:186824 +k1,10318:23797085,32407167:186825 +k1,10318:25860205,32407167:186824 +k1,10318:28532810,32407167:186824 +h1,10318:29901857,32407167:0,0,0 +k1,10318:30088682,32407167:186825 +k1,10318:31084876,32407167:186824 k1,10318:32583029,32407167:0 ) (1,10319:6630773,33272247:25952256,505283,95026 @@ -186773,101 +186968,102 @@ g1,10319:32583029,33272247 ) (1,10321:6630773,34137327:25952256,513147,126483 h1,10320:6630773,34137327:983040,0,0 -k1,10320:8377747,34137327:136099 -k1,10320:8928626,34137327:136036 -k1,10320:10719509,34137327:136099 -k1,10320:12571996,34137327:136099 -k1,10320:13367387,34137327:136099 -k1,10320:16220609,34137327:136099 -k1,10320:18101932,34137327:136099 -k1,10320:19229591,34137327:136099 -k1,10320:22323330,34137327:136099 -(1,10320:22323330,34137327:0,459977,115847 -r1,10348:23385019,34137327:1061689,575824,115847 -k1,10320:22323330,34137327:-1061689 -) -(1,10320:22323330,34137327:1061689,459977,115847 -k1,10320:22323330,34137327:3277 -h1,10320:23381742,34137327:0,411205,112570 -) -k1,10320:23694788,34137327:136099 -(1,10320:23694788,34137327:0,452978,115847 -r1,10348:25459901,34137327:1765113,568825,115847 -k1,10320:23694788,34137327:-1765113 -) -(1,10320:23694788,34137327:1765113,452978,115847 -k1,10320:23694788,34137327:3277 -h1,10320:25456624,34137327:0,411205,112570 -) -k1,10320:25596000,34137327:136099 -k1,10320:26923544,34137327:136099 -(1,10320:26923544,34137327:0,414482,115847 -r1,10348:29040369,34137327:2116825,530329,115847 -k1,10320:26923544,34137327:-2116825 -) -(1,10320:26923544,34137327:2116825,414482,115847 -k1,10320:26923544,34137327:3277 -h1,10320:29037092,34137327:0,411205,112570 -) -k1,10320:29176468,34137327:136099 -k1,10320:32583029,34137327:0 +k1,10320:8530340,34137327:288692 +k1,10320:9407545,34137327:288692 +k1,10320:11351022,34137327:288693 +k1,10320:13356102,34137327:288692 +k1,10320:14304086,34137327:288692 +k1,10320:17309901,34137327:288692 +k1,10320:19343818,34137327:288693 +k1,10320:20624070,34137327:288692 +k1,10320:23870402,34137327:288692 +(1,10320:23870402,34137327:0,459977,115847 +r1,10348:24932091,34137327:1061689,575824,115847 +k1,10320:23870402,34137327:-1061689 +) +(1,10320:23870402,34137327:1061689,459977,115847 +k1,10320:23870402,34137327:3277 +h1,10320:24928814,34137327:0,411205,112570 +) +k1,10320:25394453,34137327:288692 +(1,10320:25394453,34137327:0,452978,115847 +r1,10348:27159566,34137327:1765113,568825,115847 +k1,10320:25394453,34137327:-1765113 +) +(1,10320:25394453,34137327:1765113,452978,115847 +k1,10320:25394453,34137327:3277 +h1,10320:27156289,34137327:0,411205,112570 +) +k1,10320:27448259,34137327:288693 +k1,10320:28928396,34137327:288692 +(1,10320:28928396,34137327:0,414482,115847 +r1,10348:31045221,34137327:2116825,530329,115847 +k1,10320:28928396,34137327:-2116825 +) +(1,10320:28928396,34137327:2116825,414482,115847 +k1,10320:28928396,34137327:3277 +h1,10320:31041944,34137327:0,411205,112570 +) +k1,10320:31333913,34137327:288692 +k1,10321:32583029,34137327:0 ) (1,10321:6630773,35002407:25952256,513147,134348 -k1,10320:8337677,35002407:170740 -k1,10320:10251676,35002407:170741 -k1,10320:11038454,35002407:170740 -k1,10320:12228280,35002407:170741 -k1,10320:14273350,35002407:170740 -k1,10320:15103383,35002407:170741 -k1,10320:16293208,35002407:170740 -k1,10320:18474594,35002407:170741 -k1,10320:20025522,35002407:170740 -k1,10320:22250161,35002407:170741 -k1,10320:23981969,35002407:170740 -k1,10320:25344155,35002407:170741 -k1,10320:26130933,35002407:170740 -k1,10320:27320759,35002407:170741 -k1,10320:28877585,35002407:170740 -k1,10320:29707618,35002407:170741 -k1,10320:31069803,35002407:170740 +k1,10320:9272966,35002407:257338 +k1,10320:11088095,35002407:257338 +k1,10320:13088691,35002407:257338 +k1,10320:13962067,35002407:257338 +k1,10320:15238490,35002407:257338 +k1,10320:17370158,35002407:257338 +k1,10320:18286788,35002407:257338 +k1,10320:19563210,35002407:257337 +k1,10320:21831193,35002407:257338 +k1,10320:23468719,35002407:257338 +k1,10320:25779955,35002407:257338 +k1,10320:27598361,35002407:257338 +k1,10320:29047144,35002407:257338 +k1,10320:29920520,35002407:257338 +k1,10320:31196943,35002407:257338 k1,10320:32583029,35002407:0 ) -(1,10321:6630773,35867487:25952256,505283,134348 -k1,10320:7523731,35867487:241530 -k1,10320:10853972,35867487:241529 -k1,10320:13986295,35867487:241530 -k1,10320:16011060,35867487:241530 -k1,10320:17271675,35867487:241530 -k1,10320:19166677,35867487:241529 -k1,10320:22519201,35867487:241530 -k1,10320:23865013,35867487:241530 -k1,10320:24854309,35867487:241530 -k1,10320:29297351,35867487:241529 -k1,10320:30932832,35867487:241530 +(1,10321:6630773,35867487:25952256,513147,134348 +k1,10320:7484816,35867487:194751 +k1,10320:8871012,35867487:194751 +k1,10320:10578989,35867487:194751 +k1,10320:11425168,35867487:194751 +k1,10320:14708631,35867487:194751 +k1,10320:17794175,35867487:194751 +k1,10320:19772161,35867487:194751 +k1,10320:20985997,35867487:194751 +k1,10320:22834221,35867487:194751 +k1,10320:26139966,35867487:194751 +k1,10320:27438999,35867487:194751 +k1,10320:28381516,35867487:194751 k1,10320:32583029,35867487:0 ) (1,10321:6630773,36732567:25952256,513147,134348 -k1,10320:8345799,36732567:272579 -k1,10320:9775089,36732567:272580 -k1,10320:10706960,36732567:272579 -k1,10320:12676267,36732567:272580 -k1,10320:16476649,36732567:272579 -k1,10320:18484621,36732567:272579 -k1,10320:19776286,36732567:272580 -k1,10320:21544397,36732567:272579 -k1,10320:24117945,36732567:272579 -k1,10320:25049817,36732567:272580 -k1,10320:26961451,36732567:272579 -k1,10320:29521238,36732567:272580 -k1,10320:31966991,36732567:272579 +k1,10320:8254907,36732567:256397 +k1,10320:10161501,36732567:256397 +k1,10320:11860345,36732567:256397 +k1,10320:13273452,36732567:256397 +k1,10320:14189141,36732567:256397 +k1,10320:16142265,36732567:256397 +k1,10320:19926464,36732567:256396 +k1,10320:21918254,36732567:256397 +k1,10320:23193736,36732567:256397 +k1,10320:24945665,36732567:256397 +k1,10320:27503031,36732567:256397 +k1,10320:28418720,36732567:256397 +k1,10320:30314172,36732567:256397 k1,10320:32583029,36732567:0 ) (1,10321:6630773,37597647:25952256,505283,7863 -g1,10320:8700400,37597647 -g1,10320:9551057,37597647 -g1,10320:13415059,37597647 -k1,10321:32583030,37597647:17619356 -g1,10321:32583030,37597647 +g1,10320:9003176,37597647 +g1,10320:9818443,37597647 +g1,10320:11888070,37597647 +g1,10320:12738727,37597647 +g1,10320:16602729,37597647 +k1,10321:32583029,37597647:14431685 +g1,10321:32583029,37597647 ) (1,10323:6630773,38462727:25952256,505283,126483 h1,10322:6630773,38462727:983040,0,0 @@ -186952,53 +187148,51 @@ k1,10324:32583029,43174785:20138156 g1,10324:32583029,43174785 ) (1,10348:6630773,44433081:25952256,513147,126483 -k1,10347:7951133,44433081:145300 -k1,10347:9698133,44433081:145300 -k1,10347:13148414,44433081:145300 -k1,10347:14806940,44433081:145300 -k1,10347:16338326,44433081:145300 -k1,10347:17142918,44433081:145300 -k1,10347:18703140,44433081:145300 -k1,10347:19379937,44433081:145300 -k1,10347:19881097,44433081:145300 -(1,10347:19881097,44433081:0,459977,115847 -r1,10348:20942786,44433081:1061689,575824,115847 -k1,10347:19881097,44433081:-1061689 -) -(1,10347:19881097,44433081:1061689,459977,115847 -k1,10347:19881097,44433081:3277 -h1,10347:20939509,44433081:0,411205,112570 -) -k1,10347:21088086,44433081:145300 -k1,10347:22821979,44433081:145300 -k1,10347:24841609,44433081:145300 -k1,10347:26732133,44433081:145300 -k1,10347:28473890,44433081:145300 -k1,10347:29235229,44433081:145301 -k1,10347:29795318,44433081:145246 -k1,10347:30702146,44433081:145300 -k1,10348:32583029,44433081:0 +k1,10347:8078918,44433081:273085 +k1,10347:9953702,44433081:273084 +k1,10347:13531768,44433081:273085 +k1,10347:15318079,44433081:273085 +k1,10347:16977249,44433081:273084 +k1,10347:17909626,44433081:273085 +k1,10347:19597632,44433081:273084 +k1,10347:20402214,44433081:273085 +k1,10347:21031159,44433081:273085 +(1,10347:21031159,44433081:0,459977,115847 +r1,10348:22092848,44433081:1061689,575824,115847 +k1,10347:21031159,44433081:-1061689 +) +(1,10347:21031159,44433081:1061689,459977,115847 +k1,10347:21031159,44433081:3277 +h1,10347:22089571,44433081:0,411205,112570 +) +k1,10347:22365932,44433081:273084 +k1,10347:24227610,44433081:273085 +k1,10347:26375025,44433081:273085 +k1,10347:28393333,44433081:273084 +k1,10347:30262875,44433081:273085 +k1,10347:31151998,44433081:273085 +k1,10347:31839851,44433081:273010 +k1,10347:32583029,44433081:0 ) (1,10348:6630773,45298161:25952256,513147,134348 -k1,10347:7801863,45298161:180841 -k1,10347:10841384,45298161:180841 -k1,10347:11378084,45298161:180840 -k1,10347:12552451,45298161:180841 -k1,10347:13416177,45298161:180841 -k1,10347:15574895,45298161:180841 -k1,10347:16415028,45298161:180841 -k1,10347:18606514,45298161:180841 -k1,10347:19438782,45298161:180840 -k1,10347:20565963,45298161:180841 -k1,10347:22391758,45298161:180841 -k1,10347:24764778,45298161:180841 -h1,10347:25735366,45298161:0,0,0 -k1,10347:26296971,45298161:180841 -k1,10347:28572998,45298161:180841 -k1,10347:29109698,45298161:180840 -k1,10347:29109698,45298161:0 -k1,10347:29290539,45298161:180841 -k1,10347:30886302,45298161:180841 +k1,10347:9493386,45298161:187433 +k1,10347:12539499,45298161:187433 +k1,10347:13082792,45298161:187433 +k1,10347:14263751,45298161:187433 +k1,10347:15134069,45298161:187433 +k1,10347:17299379,45298161:187433 +k1,10347:18146104,45298161:187433 +k1,10347:20344181,45298161:187432 +k1,10347:21183042,45298161:187433 +k1,10347:22316815,45298161:187433 +k1,10347:24149202,45298161:187433 +k1,10347:26528814,45298161:187433 +h1,10347:27499402,45298161:0,0,0 +k1,10347:28067599,45298161:187433 +k1,10347:30350218,45298161:187433 +k1,10347:30893511,45298161:187433 +k1,10347:30893511,45298161:0 +k1,10347:31080944,45298161:187433 k1,10347:32583029,45298161:0 ) ] @@ -187022,11 +187216,8 @@ g1,10348:-473656,-710413 ] ) ] -!21839 -}161 -Input:1593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!21791 +}162 Input:1596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -187037,8 +187228,11 @@ Input:1602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1604:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1605:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1606:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1607:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{162 +{163 [1,10406:4262630,47279633:28320399,43253760,0 (1,10406:4262630,4025873:0,0,0 [1,10406:-473656,4025873:0,0,0 @@ -187163,140 +187357,140 @@ k1,10406:31387651,4812305:21863464 g1,10406:6630773,45706769 ) [1,10406:6630773,45706769:25952256,40108032,0 -(1,10348:6630773,6254097:25952256,513147,134348 -k1,10347:8849167,6254097:225444 -k1,10347:10066170,6254097:225443 -k1,10347:13249254,6254097:225444 -k1,10347:17492710,6254097:225444 -k1,10347:18874864,6254097:225444 -k1,10347:19713070,6254097:225444 -k1,10347:20294373,6254097:225443 -k1,10347:21945225,6254097:225444 -k1,10347:24729195,6254097:225444 -k1,10347:25310499,6254097:225444 -k1,10347:28047282,6254097:225443 -k1,10347:29557232,6254097:225444 +(1,10348:6630773,6254097:25952256,505283,134348 +k1,10347:9497208,6254097:243029 +k1,10347:11750883,6254097:243030 +k1,10347:12985472,6254097:243029 +k1,10347:16186141,6254097:243029 +k1,10347:20447182,6254097:243029 +k1,10347:21846922,6254097:243030 +k1,10347:22702713,6254097:243029 +k1,10347:23301602,6254097:243029 +k1,10347:25143709,6254097:243029 +k1,10347:27945265,6254097:243030 +k1,10347:28544154,6254097:243029 +k1,10347:31298523,6254097:243029 k1,10347:32583029,6254097:0 ) (1,10348:6630773,7119177:25952256,513147,126483 -k1,10347:7550325,7119177:233390 -k1,10347:8139575,7119177:233390 -k1,10347:12280221,7119177:233390 -k1,10347:13710298,7119177:233390 -k1,10347:16383593,7119177:233390 -k1,10347:17808428,7119177:233390 -k1,10347:18989469,7119177:233390 -k1,10347:20241944,7119177:233390 -k1,10347:21658259,7119177:233390 -k1,10347:22550941,7119177:233390 -k1,10347:23803416,7119177:233390 -k1,10347:26014683,7119177:233390 -k1,10347:26930958,7119177:233390 -k1,10347:28157874,7119177:233390 -k1,10347:30074229,7119177:233390 -k1,10347:31970267,7119177:233390 +k1,10347:9855494,7119177:198924 +k1,10347:10740579,7119177:198923 +k1,10347:11295363,7119177:198924 +k1,10347:15401542,7119177:198923 +k1,10347:16797153,7119177:198924 +k1,10347:19435981,7119177:198923 +k1,10347:20826350,7119177:198924 +k1,10347:21972924,7119177:198923 +k1,10347:23190933,7119177:198924 +k1,10347:24572781,7119177:198923 +k1,10347:25430997,7119177:198924 +k1,10347:26649005,7119177:198923 +k1,10347:28825806,7119177:198924 +k1,10347:29707614,7119177:198923 +k1,10347:30900064,7119177:198924 k1,10347:32583029,7119177:0 ) (1,10348:6630773,7984257:25952256,513147,126483 -k1,10347:7823575,7984257:173717 -k1,10347:9069461,7984257:173717 -k1,10347:9902471,7984257:173718 -k1,10347:11095273,7984257:173717 -k1,10347:14292821,7984257:173717 -k1,10347:16509295,7984257:173717 -k1,10347:17702097,7984257:173717 -k1,10347:19290737,7984257:173718 -k1,10347:22650814,7984257:173717 -k1,10347:23356028,7984257:173717 -k1,10347:26764602,7984257:173717 -k1,10347:28135007,7984257:173718 -k1,10347:29658766,7984257:173717 -k1,10347:31482024,7984257:173717 +k1,10347:8502949,7984257:209528 +k1,10347:9325239,7984257:209528 +k1,10347:10553852,7984257:209528 +k1,10347:11835549,7984257:209528 +k1,10347:12704369,7984257:209528 +k1,10347:13932982,7984257:209528 +k1,10347:17166341,7984257:209528 +k1,10347:19418625,7984257:209527 +k1,10347:20647238,7984257:209528 +k1,10347:22271688,7984257:209528 +k1,10347:25667576,7984257:209528 +k1,10347:26408601,7984257:209528 +k1,10347:29852986,7984257:209528 +k1,10347:31259201,7984257:209528 k1,10347:32583029,7984257:0 ) (1,10348:6630773,8849337:25952256,513147,126483 -k1,10347:7824492,8849337:174634 -k1,10347:9868213,8849337:174634 -k1,10347:10702140,8849337:174635 -k1,10347:11232634,8849337:174634 -k1,10347:12749445,8849337:174634 -k1,10347:13610241,8849337:174634 -k1,10347:14803960,8849337:174634 -k1,10347:18054199,8849337:174634 -k1,10347:19333116,8849337:174635 -k1,10347:20255516,8849337:174634 -k1,10347:23046347,8849337:174634 -k1,10347:23872409,8849337:174634 -k1,10347:24817746,8849337:174634 -k1,10347:27025962,8849337:174634 -k1,10347:29814828,8849337:174635 -k1,10347:30605500,8849337:174634 -k1,10347:31799219,8849337:174634 -k1,10348:32583029,8849337:0 +k1,10347:8445137,8849337:164823 +k1,10347:9710965,8849337:164823 +k1,10347:10894873,8849337:164823 +k1,10347:12928783,8849337:164823 +k1,10347:13752898,8849337:164823 +k1,10347:14273581,8849337:164823 +k1,10347:15780581,8849337:164823 +k1,10347:16631566,8849337:164823 +k1,10347:17815474,8849337:164823 +k1,10347:21055902,8849337:164823 +k1,10347:22325007,8849337:164823 +k1,10347:23237596,8849337:164823 +k1,10347:26018616,8849337:164823 +k1,10347:26834867,8849337:164823 +k1,10347:27770393,8849337:164823 +k1,10347:29968798,8849337:164823 +k1,10347:32583029,8849337:0 ) (1,10348:6630773,9714417:25952256,513147,134348 -k1,10347:9095582,9714417:202506 -k1,10347:9957380,9714417:202506 -k1,10347:13850219,9714417:202507 -k1,10347:16724628,9714417:202506 -k1,10347:17946219,9714417:202506 -k1,10347:19802198,9714417:202506 -k1,10347:22283391,9714417:202506 -k1,10347:23145189,9714417:202506 -k1,10347:24843883,9714417:202507 -k1,10347:25697817,9714417:202506 -k1,10347:26648089,9714417:202506 -k1,10347:29911782,9714417:202506 +k1,10347:7461315,9714417:214504 +k1,10347:8694905,9714417:214505 +k1,10347:11849354,9714417:214504 +k1,10347:12723150,9714417:214504 +k1,10347:16627987,9714417:214505 +k1,10347:19514394,9714417:214504 +k1,10347:20747983,9714417:214504 +k1,10347:22615960,9714417:214504 +k1,10347:25109152,9714417:214505 +k1,10347:25982948,9714417:214504 +k1,10347:27693639,9714417:214504 +k1,10347:28559572,9714417:214505 +k1,10347:29521842,9714417:214504 k1,10347:32583029,9714417:0 ) (1,10348:6630773,10579497:25952256,505283,134348 -g1,10347:8759382,10579497 -g1,10347:10410233,10579497 -g1,10347:12034870,10579497 -g1,10347:13628050,10579497 -g1,10347:14183139,10579497 -g1,10347:15665563,10579497 -g1,10347:17545135,10579497 -g1,10347:20519158,10579497 -g1,10347:21369815,10579497 -g1,10347:22588129,10579497 -g1,10347:26520944,10579497 -k1,10348:32583029,10579497:3498317 +g1,10347:9501249,10579497 +g1,10347:11629858,10579497 +g1,10347:13280709,10579497 +g1,10347:14905346,10579497 +g1,10347:16498526,10579497 +g1,10347:17053615,10579497 +g1,10347:18536039,10579497 +g1,10347:20415611,10579497 +g1,10347:23389634,10579497 +g1,10347:24240291,10579497 +g1,10347:25458605,10579497 +g1,10347:29391420,10579497 +k1,10348:32583029,10579497:627841 g1,10348:32583029,10579497 ) (1,10350:6630773,11444577:25952256,505283,134348 h1,10349:6630773,11444577:983040,0,0 -k1,10349:8442478,11444577:200830 -k1,10349:9662393,11444577:200830 -k1,10349:12479420,11444577:200830 -k1,10349:14535573,11444577:200829 -k1,10349:15755488,11444577:200830 -k1,10349:19028646,11444577:200830 -k1,10349:19880904,11444577:200830 -(1,10349:19880904,11444577:0,459977,115847 -r1,10406:21646017,11444577:1765113,575824,115847 -k1,10349:19880904,11444577:-1765113 -) -(1,10349:19880904,11444577:1765113,459977,115847 -k1,10349:19880904,11444577:3277 -h1,10349:21642740,11444577:0,411205,112570 -) -k1,10349:21846847,11444577:200830 -k1,10349:22579174,11444577:200830 -k1,10349:24855529,11444577:200830 -k1,10349:25742521,11444577:200830 -(1,10349:25742521,11444577:0,452978,115847 -r1,10406:27859346,11444577:2116825,568825,115847 -k1,10349:25742521,11444577:-2116825 -) -(1,10349:25742521,11444577:2116825,452978,115847 -k1,10349:25742521,11444577:3277 -h1,10349:27856069,11444577:0,411205,112570 -) -k1,10349:28060175,11444577:200829 -k1,10349:29333174,11444577:200830 -k1,10349:29992101,11444577:200830 -k1,10349:31297213,11444577:200830 +k1,10349:8430900,11444577:189252 +k1,10349:9639237,11444577:189252 +k1,10349:12444685,11444577:189251 +k1,10349:14662932,11444577:189252 +k1,10349:15871269,11444577:189252 +k1,10349:19132849,11444577:189252 +k1,10349:19973529,11444577:189252 +(1,10349:19973529,11444577:0,459977,115847 +r1,10406:21738642,11444577:1765113,575824,115847 +k1,10349:19973529,11444577:-1765113 +) +(1,10349:19973529,11444577:1765113,459977,115847 +k1,10349:19973529,11444577:3277 +h1,10349:21735365,11444577:0,411205,112570 +) +k1,10349:21927893,11444577:189251 +k1,10349:22648642,11444577:189252 +k1,10349:24913419,11444577:189252 +k1,10349:25788833,11444577:189252 +(1,10349:25788833,11444577:0,452978,115847 +r1,10406:27905658,11444577:2116825,568825,115847 +k1,10349:25788833,11444577:-2116825 +) +(1,10349:25788833,11444577:2116825,452978,115847 +k1,10349:25788833,11444577:3277 +h1,10349:27902381,11444577:0,411205,112570 +) +k1,10349:28094910,11444577:189252 +k1,10349:29356330,11444577:189251 +k1,10349:30003679,11444577:189252 +k1,10349:31297213,11444577:189252 k1,10349:32583029,11444577:0 ) (1,10350:6630773,12309657:25952256,513147,134348 @@ -187993,11 +188187,8 @@ g1,10406:-473656,-710413 ] ) ] -!27711 -}162 -Input:1606:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1607:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!27706 +}163 Input:1609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -188014,8 +188205,11 @@ Input:1621:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1622:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1623:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1624:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1625:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1626:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1627:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{163 +{164 [1,10514:4262630,47279633:28320399,43253760,0 (1,10514:4262630,4025873:0,0,0 [1,10514:-473656,4025873:0,0,0 @@ -189074,10 +189268,7 @@ g1,10514:-473656,-710413 ) ] !29815 -}163 -Input:1625:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1626:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1627:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}164 Input:1628:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1629:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1630:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -189105,8 +189296,11 @@ Input:1651:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1652:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1653:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1654:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2772 -{164 +{165 [1,10598:4262630,47279633:28320399,43253760,0 (1,10598:4262630,4025873:0,0,0 [1,10598:-473656,4025873:0,0,0 @@ -190116,10 +190310,7 @@ g1,10598:-473656,-710413 ) ] !29445 -}164 -Input:1655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}165 Input:1658:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1659:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1660:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -190130,8 +190321,11 @@ Input:1664:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1665:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1666:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1667:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1668:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1669:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1670:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{165 +{166 [1,10626:4262630,47279633:28320399,43253760,0 (1,10626:4262630,4025873:0,0,0 [1,10626:-473656,4025873:0,0,0 @@ -190839,43 +191033,43 @@ g1,10595:32583029,36924221 ) (1,10597:6764466,37789301:25818563,513147,126483 h1,10596:6764466,37789301:983040,0,0 -k1,10596:8575341,37789301:200000 -(1,10596:8575341,37789301:0,459977,115847 -r1,10626:9637030,37789301:1061689,575824,115847 -k1,10596:8575341,37789301:-1061689 -) -(1,10596:8575341,37789301:1061689,459977,115847 -k1,10596:8575341,37789301:3277 -h1,10596:9633753,37789301:0,411205,112570 -) -k1,10596:9837030,37789301:200000 -k1,10596:11782254,37789301:200000 -k1,10596:13001338,37789301:199999 -k1,10596:14293823,37789301:200000 -k1,10596:15160979,37789301:200000 -(1,10596:15160979,37789301:0,452978,115847 -r1,10626:17629516,37789301:2468537,568825,115847 -k1,10596:15160979,37789301:-2468537 -) -(1,10596:15160979,37789301:2468537,452978,115847 -k1,10596:15160979,37789301:3277 -h1,10596:17626239,37789301:0,411205,112570 -) -k1,10596:17829516,37789301:200000 -k1,10596:19220961,37789301:200000 -(1,10596:19220961,37789301:0,452978,115847 -r1,10626:21337786,37789301:2116825,568825,115847 -k1,10596:19220961,37789301:-2116825 -) -(1,10596:19220961,37789301:2116825,452978,115847 -k1,10596:19220961,37789301:3277 -h1,10596:21334509,37789301:0,411205,112570 -) -k1,10596:21537786,37789301:200000 -k1,10596:23918168,37789301:199999 -k1,10596:24865934,37789301:200000 -k1,10596:27792887,37789301:200000 -k1,10596:28940538,37789301:200000 +k1,10596:8561982,37789301:186641 +(1,10596:8561982,37789301:0,459977,115847 +r1,10626:9623671,37789301:1061689,575824,115847 +k1,10596:8561982,37789301:-1061689 +) +(1,10596:8561982,37789301:1061689,459977,115847 +k1,10596:8561982,37789301:3277 +h1,10596:9620394,37789301:0,411205,112570 +) +k1,10596:9810311,37789301:186640 +k1,10596:11915846,37789301:186641 +k1,10596:13121571,37789301:186640 +k1,10596:14400697,37789301:186641 +k1,10596:15254494,37789301:186641 +(1,10596:15254494,37789301:0,452978,115847 +r1,10626:17723031,37789301:2468537,568825,115847 +k1,10596:15254494,37789301:-2468537 +) +(1,10596:15254494,37789301:2468537,452978,115847 +k1,10596:15254494,37789301:3277 +h1,10596:17719754,37789301:0,411205,112570 +) +k1,10596:17909671,37789301:186640 +k1,10596:19287757,37789301:186641 +(1,10596:19287757,37789301:0,452978,115847 +r1,10626:21404582,37789301:2116825,568825,115847 +k1,10596:19287757,37789301:-2116825 +) +(1,10596:19287757,37789301:2116825,452978,115847 +k1,10596:19287757,37789301:3277 +h1,10596:21401305,37789301:0,411205,112570 +) +k1,10596:21591223,37789301:186641 +k1,10596:23958246,37789301:186640 +k1,10596:24892653,37789301:186641 +k1,10596:27806246,37789301:186640 +k1,10596:28940538,37789301:186641 k1,10596:32583029,37789301:0 ) (1,10597:6764466,38654381:25818563,513147,134348 @@ -191074,10 +191268,7 @@ g1,10626:-473656,-710413 ) ] !25862 -}165 -Input:1668:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1669:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1670:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}166 Input:1671:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1672:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -191087,8 +191278,11 @@ Input:1676:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1677:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1678:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1679:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1680:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1681:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1682:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{166 +{167 [1,10716:4262630,47279633:28320399,43253760,0 (1,10716:4262630,4025873:0,0,0 [1,10716:-473656,4025873:0,0,0 @@ -191749,38 +191943,38 @@ g1,10683:32583029,29736738 h1,10683:6630773,29736738:0,0,0 (1,10686:6630773,30601818:25952256,505283,134348 h1,10685:6630773,30601818:983040,0,0 -k1,10685:8620308,30601818:188606 -k1,10685:10202865,30601818:188606 -(1,10685:10202865,30601818:0,459977,115847 -r1,10716:11264554,30601818:1061689,575824,115847 -k1,10685:10202865,30601818:-1061689 -) -(1,10685:10202865,30601818:1061689,459977,115847 -k1,10685:10202865,30601818:3277 -h1,10685:11261277,30601818:0,411205,112570 -) -k1,10685:11453160,30601818:188606 -k1,10685:13386990,30601818:188606 -k1,10685:14443949,30601818:188607 -k1,10685:15736837,30601818:188606 -k1,10685:17017928,30601818:188606 -k1,10685:17977237,30601818:188606 -k1,10685:19914999,30601818:188606 -k1,10685:22614945,30601818:188606 -k1,10685:23419589,30601818:188606 -k1,10685:23964055,30601818:188606 -(1,10685:23964055,30601818:0,452978,115847 -r1,10716:25729168,30601818:1765113,568825,115847 -k1,10685:23964055,30601818:-1765113 -) -(1,10685:23964055,30601818:1765113,452978,115847 -k1,10685:23964055,30601818:3277 -h1,10685:25725891,30601818:0,411205,112570 -) -k1,10685:25917775,30601818:188607 -k1,10685:27521303,30601818:188606 -k1,10685:28361337,30601818:188606 -k1,10685:30024503,30601818:188606 +k1,10685:8609454,30601818:177752 +k1,10685:10181156,30601818:177751 +(1,10685:10181156,30601818:0,459977,115847 +r1,10716:11242845,30601818:1061689,575824,115847 +k1,10685:10181156,30601818:-1061689 +) +(1,10685:10181156,30601818:1061689,459977,115847 +k1,10685:10181156,30601818:3277 +h1,10685:11239568,30601818:0,411205,112570 +) +k1,10685:11420597,30601818:177752 +k1,10685:13517243,30601818:177752 +k1,10685:14563347,30601818:177752 +k1,10685:15845380,30601818:177751 +k1,10685:17115617,30601818:177752 +k1,10685:18064072,30601818:177752 +k1,10685:19990980,30601818:177752 +k1,10685:22680071,30601818:177751 +k1,10685:23473861,30601818:177752 +k1,10685:24007473,30601818:177752 +(1,10685:24007473,30601818:0,452978,115847 +r1,10716:25772586,30601818:1765113,568825,115847 +k1,10685:24007473,30601818:-1765113 +) +(1,10685:24007473,30601818:1765113,452978,115847 +k1,10685:24007473,30601818:3277 +h1,10685:25769309,30601818:0,411205,112570 +) +k1,10685:25950338,30601818:177752 +k1,10685:27543011,30601818:177751 +k1,10685:28372191,30601818:177752 +k1,10685:30024503,30601818:177752 k1,10685:32583029,30601818:0 ) (1,10686:6630773,31466898:25952256,513147,126483 @@ -192071,10 +192265,7 @@ g1,10716:-473656,-710413 ) ] !27660 -}166 -Input:1680:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1681:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1682:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}167 Input:1683:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1684:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1685:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -192101,8 +192292,11 @@ Input:1705:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1706:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1707:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1708:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1710:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1711:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2680 -{167 +{168 [1,10779:4262630,47279633:28320399,43253760,0 (1,10779:4262630,4025873:0,0,0 [1,10779:-473656,4025873:0,0,0 @@ -193114,10 +193308,7 @@ g1,10779:-473656,-710413 ) ] !28048 -}167 -Input:1709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1710:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1711:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}168 Input:1712:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1713:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1714:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -193130,8 +193321,11 @@ Input:1720:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1721:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1722:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1723:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1724:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1725:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{168 +{169 [1,10832:4262630,47279633:28320399,43253760,0 (1,10832:4262630,4025873:0,0,0 [1,10832:-473656,4025873:0,0,0 @@ -193946,25 +194140,25 @@ h1,10820:32579752,31318517:0,411205,112570 k1,10820:32583029,31318517:0 ) (1,10821:6764466,32183597:25818563,505283,126483 -k1,10820:10222223,32183597:271397 -k1,10820:11179783,32183597:271398 -k1,10820:14933763,32183597:271397 -k1,10820:16247182,32183597:271397 -k1,10820:17537664,32183597:271397 -k1,10820:20470479,32183597:271398 -k1,10820:22597200,32183597:271397 -k1,10820:23224457,32183597:271397 -k1,10820:26007849,32183597:271397 -(1,10820:26007849,32183597:0,452978,122846 -r1,10832:28476386,32183597:2468537,575824,122846 -k1,10820:26007849,32183597:-2468537 -) -(1,10820:26007849,32183597:2468537,452978,122846 -k1,10820:26007849,32183597:3277 -h1,10820:28473109,32183597:0,411205,112570 -) -k1,10820:28747784,32183597:271398 -k1,10820:32051532,32183597:271397 +k1,10820:10206435,32183597:255609 +k1,10820:11148206,32183597:255609 +k1,10820:14886398,32183597:255609 +k1,10820:16184029,32183597:255609 +k1,10820:17458723,32183597:255609 +k1,10820:20375749,32183597:255609 +k1,10820:22660353,32183597:255609 +k1,10820:23271822,32183597:255609 +k1,10820:26039426,32183597:255609 +(1,10820:26039426,32183597:0,452978,122846 +r1,10832:28507963,32183597:2468537,575824,122846 +k1,10820:26039426,32183597:-2468537 +) +(1,10820:26039426,32183597:2468537,452978,122846 +k1,10820:26039426,32183597:3277 +h1,10820:28504686,32183597:0,411205,112570 +) +k1,10820:28763572,32183597:255609 +k1,10820:32051532,32183597:255609 k1,10821:32583029,32183597:0 ) (1,10821:6764466,33048677:25818563,452978,115847 @@ -194212,10 +194406,7 @@ g1,10832:-473656,-710413 ) ] !30971 -}168 -Input:1724:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1725:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}169 Input:1727:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1729:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -194239,8 +194430,11 @@ Input:1746:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1747:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1748:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1749:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1751:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1752:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2404 -{169 +{170 [1,10861:4262630,47279633:28320399,43253760,0 (1,10861:4262630,4025873:0,0,0 [1,10861:-473656,4025873:0,0,0 @@ -194483,7 +194677,7 @@ g1,10831:13277433,13469645 g1,10831:14915833,13469645 g1,10831:15717993,13469645 g1,10831:18389895,13469645 -k1,10832:32583029,13469645:10814754 +k1,10832:32583029,13469645:11470114 g1,10832:32583029,13469645 ) v1,10834:6630773,14334725:0,393216,0 @@ -195293,10 +195487,7 @@ g1,10861:-473656,-710413 ) ] !31748 -}169 -Input:1750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1751:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1752:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}170 Input:1753:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1754:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1755:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -195321,8 +195512,11 @@ Input:1773:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1774:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1775:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1776:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1777:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1778:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1779:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2496 -{170 +{171 [1,10950:4262630,47279633:28320399,43253760,0 (1,10950:4262630,4025873:0,0,0 [1,10950:-473656,4025873:0,0,0 @@ -196521,10 +196715,7 @@ g1,10950:-473656,-710413 ) ] !34478 -}170 -Input:1777:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1778:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1779:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}171 Input:1780:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1781:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1782:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -196543,40 +196734,43 @@ Input:1794:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1795:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1796:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1797:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1799:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1944 -{171 -[1,11023:4262630,47279633:28320399,43253760,0 -(1,11023:4262630,4025873:0,0,0 -[1,11023:-473656,4025873:0,0,0 -(1,11023:-473656,-710413:0,0,0 -(1,11023:-473656,-644877:0,0,0 -k1,11023:-473656,-644877:-65536 +{172 +[1,11022:4262630,47279633:28320399,43253760,0 +(1,11022:4262630,4025873:0,0,0 +[1,11022:-473656,4025873:0,0,0 +(1,11022:-473656,-710413:0,0,0 +(1,11022:-473656,-644877:0,0,0 +k1,11022:-473656,-644877:-65536 ) -(1,11023:-473656,4736287:0,0,0 -k1,11023:-473656,4736287:5209943 +(1,11022:-473656,4736287:0,0,0 +k1,11022:-473656,4736287:5209943 ) -g1,11023:-473656,-710413 +g1,11022:-473656,-710413 ) ] ) -[1,11023:6630773,47279633:25952256,43253760,0 -[1,11023:6630773,4812305:25952256,786432,0 -(1,11023:6630773,4812305:25952256,505283,134348 -(1,11023:6630773,4812305:25952256,505283,134348 -g1,11023:3078558,4812305 -[1,11023:3078558,4812305:0,0,0 -(1,11023:3078558,2439708:0,1703936,0 -k1,11023:1358238,2439708:-1720320 +[1,11022:6630773,47279633:25952256,43253760,0 +[1,11022:6630773,4812305:25952256,786432,0 +(1,11022:6630773,4812305:25952256,505283,134348 +(1,11022:6630773,4812305:25952256,505283,134348 +g1,11022:3078558,4812305 +[1,11022:3078558,4812305:0,0,0 +(1,11022:3078558,2439708:0,1703936,0 +k1,11022:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11023:2537886,2439708:1179648,16384,0 +r1,11022:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11023:3078558,1915420:16384,1179648,0 +r1,11022:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -196586,16 +196780,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11023:3078558,4812305:0,0,0 -(1,11023:3078558,2439708:0,1703936,0 -g1,11023:29030814,2439708 -g1,11023:36135244,2439708 +[1,11022:3078558,4812305:0,0,0 +(1,11022:3078558,2439708:0,1703936,0 +g1,11022:29030814,2439708 +g1,11022:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11023:36151628,1915420:16384,1179648,0 +r1,11022:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -196604,25 +196798,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11023:37855564,2439708:1179648,16384,0 +r1,11022:37855564,2439708:1179648,16384,0 ) ) -k1,11023:3078556,2439708:-34777008 +k1,11022:3078556,2439708:-34777008 ) ] -[1,11023:3078558,4812305:0,0,0 -(1,11023:3078558,49800853:0,16384,2228224 -k1,11023:1358238,49800853:-1720320 +[1,11022:3078558,4812305:0,0,0 +(1,11022:3078558,49800853:0,16384,2228224 +k1,11022:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11023:2537886,49800853:1179648,16384,0 +r1,11022:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11023:3078558,51504789:16384,1179648,0 +r1,11022:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -196632,16 +196826,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11023:3078558,4812305:0,0,0 -(1,11023:3078558,49800853:0,16384,2228224 -g1,11023:29030814,49800853 -g1,11023:36135244,49800853 +[1,11022:3078558,4812305:0,0,0 +(1,11022:3078558,49800853:0,16384,2228224 +g1,11022:29030814,49800853 +g1,11022:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11023:36151628,51504789:16384,1179648,0 +r1,11022:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -196650,38 +196844,38 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11023:37855564,49800853:1179648,16384,0 +r1,11022:37855564,49800853:1179648,16384,0 ) ) -k1,11023:3078556,49800853:-34777008 +k1,11022:3078556,49800853:-34777008 ) ] -g1,11023:6630773,4812305 -k1,11023:21678495,4812305:13852345 -g1,11023:23301166,4812305 -g1,11023:24088253,4812305 -g1,11023:28572226,4812305 -g1,11023:29981905,4812305 +g1,11022:6630773,4812305 +k1,11022:21678495,4812305:13852345 +g1,11022:23301166,4812305 +g1,11022:24088253,4812305 +g1,11022:28572226,4812305 +g1,11022:29981905,4812305 ) ) ] -[1,11023:6630773,45706769:25952256,40108032,0 -(1,11023:6630773,45706769:25952256,40108032,0 -(1,11023:6630773,45706769:0,0,0 -g1,11023:6630773,45706769 +[1,11022:6630773,45706769:25952256,40108032,0 +(1,11022:6630773,45706769:25952256,40108032,0 +(1,11022:6630773,45706769:0,0,0 +g1,11022:6630773,45706769 ) -[1,11023:6630773,45706769:25952256,40108032,0 +[1,11022:6630773,45706769:25952256,40108032,0 v1,10950:6630773,6254097:0,393216,0 (1,10989:6630773,25267909:25952256,19407028,0 g1,10989:6630773,25267909 g1,10989:6237557,25267909 -r1,11023:6368629,25267909:131072,19407028,0 +r1,11022:6368629,25267909:131072,19407028,0 g1,10989:6567858,25267909 g1,10989:6764466,25267909 [1,10989:6764466,25267909:25818563,19407028,0 (1,10951:6764466,6562395:25818563,701514,196608 (1,10950:6764466,6562395:0,701514,196608 -r1,11023:7761522,6562395:997056,898122,196608 +r1,11022:7761522,6562395:997056,898122,196608 k1,10950:6764466,6562395:-997056 ) (1,10950:6764466,6562395:997056,701514,196608 @@ -196709,7 +196903,7 @@ k1,10950:13982042,7427475:161469 k1,10950:16348798,7427475:161469 k1,10950:17161696,7427475:161470 (1,10950:17161696,7427475:0,414482,115847 -r1,11023:20333656,7427475:3171960,530329,115847 +r1,11022:20333656,7427475:3171960,530329,115847 k1,10950:17161696,7427475:-3171960 ) (1,10950:17161696,7427475:3171960,414482,115847 @@ -196754,7 +196948,7 @@ g1,10950:21619508,9157635 g1,10950:23887053,9157635 g1,10950:24702320,9157635 (1,10950:24702320,9157635:0,414482,115847 -r1,11023:27874280,9157635:3171960,530329,115847 +r1,11022:27874280,9157635:3171960,530329,115847 k1,10950:24702320,9157635:-3171960 ) (1,10950:24702320,9157635:3171960,414482,115847 @@ -196809,7 +197003,7 @@ g1,10962:6764466,14799948 g1,10962:6764466,14799948 g1,10962:6567858,14799948 (1,10962:6567858,14799948:0,2755434,196608 -r1,11023:32779637,14799948:26211779,2952042,196608 +r1,11022:32779637,14799948:26211779,2952042,196608 k1,10962:6567857,14799948:-26211780 ) (1,10962:6567858,14799948:26211779,2755434,196608 @@ -196884,7 +197078,7 @@ h1,10962:6764466,14996556:0,0,0 h1,10965:6764466,15861636:983040,0,0 k1,10965:9125993,15861636:187042 (1,10965:9125993,15861636:0,452978,115847 -r1,11023:11946242,15861636:2820249,568825,115847 +r1,11022:11946242,15861636:2820249,568825,115847 k1,10965:9125993,15861636:-2820249 ) (1,10965:9125993,15861636:2820249,452978,115847 @@ -196910,7 +197104,7 @@ k1,10965:32583029,15861636:0 k1,10965:9191263,16726716:221510 k1,10965:10064201,16726716:221510 (1,10965:10064201,16726716:0,414482,115847 -r1,11023:13236161,16726716:3171960,530329,115847 +r1,11022:13236161,16726716:3171960,530329,115847 k1,10965:10064201,16726716:-3171960 ) (1,10965:10064201,16726716:3171960,414482,115847 @@ -196932,7 +197126,7 @@ k1,10966:32583029,16726716:0 (1,10966:6764466,17591796:25818563,473825,115847 g1,10965:8231161,17591796 (1,10965:8231161,17591796:0,452978,115847 -r1,11023:12809969,17591796:4578808,568825,115847 +r1,11022:12809969,17591796:4578808,568825,115847 k1,10965:8231161,17591796:-4578808 ) (1,10965:8231161,17591796:4578808,452978,115847 @@ -196948,7 +197142,7 @@ g1,10987:6764466,25071301 g1,10987:6764466,25071301 g1,10987:6567858,25071301 (1,10987:6567858,25071301:0,7187866,196608 -r1,11023:32779637,25071301:26211779,7384474,196608 +r1,11022:32779637,25071301:26211779,7384474,196608 k1,10987:6567857,25071301:-26211780 ) (1,10987:6567858,25071301:26211779,7187866,196608 @@ -197155,13 +197349,13 @@ v1,10992:6630773,26132989:0,393216,0 (1,10993:6630773,28143489:25952256,2403716,0 g1,10993:6630773,28143489 g1,10993:6237557,28143489 -r1,11023:6368629,28143489:131072,2403716,0 +r1,11022:6368629,28143489:131072,2403716,0 g1,10993:6567858,28143489 g1,10993:6764466,28143489 [1,10993:6764466,28143489:25818563,2403716,0 (1,10993:6764466,26405466:25818563,665693,196608 (1,10992:6764466,26405466:0,665693,196608 -r1,11023:7868133,26405466:1103667,862301,196608 +r1,11022:7868133,26405466:1103667,862301,196608 k1,10992:6764466,26405466:-1103667 ) (1,10992:6764466,26405466:1103667,665693,196608 @@ -197171,7 +197365,7 @@ k1,10992:9745713,26405466:327680 k1,10992:11792375,26405466:151361 k1,10992:14639233,26405466:151362 (1,10992:14639233,26405466:0,452978,115847 -r1,11023:19218041,26405466:4578808,568825,115847 +r1,11022:19218041,26405466:4578808,568825,115847 k1,10992:14639233,26405466:-4578808 ) (1,10992:14639233,26405466:4578808,452978,115847 @@ -197186,7 +197380,7 @@ k1,10992:25882263,26405466:151361 k1,10992:27422988,26405466:151362 k1,10992:29450645,26405466:151361 (1,10992:29450645,26405466:0,414482,115847 -r1,11023:30864046,26405466:1413401,530329,115847 +r1,11022:30864046,26405466:1413401,530329,115847 k1,10992:29450645,26405466:-1413401 ) (1,10992:29450645,26405466:1413401,414482,115847 @@ -197224,13 +197418,13 @@ v1,10996:6630773,29008569:0,393216,0 (1,10997:6630773,32903670:25952256,4288317,0 g1,10997:6630773,32903670 g1,10997:6237557,32903670 -r1,11023:6368629,32903670:131072,4288317,0 +r1,11022:6368629,32903670:131072,4288317,0 g1,10997:6567858,32903670 g1,10997:6764466,32903670 [1,10997:6764466,32903670:25818563,4288317,0 (1,10997:6764466,29316867:25818563,701514,196608 (1,10996:6764466,29316867:0,701514,196608 -r1,11023:8471973,29316867:1707507,898122,196608 +r1,11022:8471973,29316867:1707507,898122,196608 k1,10996:6764466,29316867:-1707507 ) (1,10996:6764466,29316867:1707507,701514,196608 @@ -197243,7 +197437,7 @@ k1,10996:17404553,29316867:264607 k1,10996:18328452,29316867:264607 k1,10996:20916966,29316867:264607 (1,10996:20916966,29316867:0,452978,115847 -r1,11023:24440638,29316867:3523672,568825,115847 +r1,11022:24440638,29316867:3523672,568825,115847 k1,10996:20916966,29316867:-3523672 ) (1,10996:20916966,29316867:3523672,452978,115847 @@ -197254,7 +197448,7 @@ k1,10996:24705246,29316867:264608 k1,10996:26363804,29316867:264607 k1,10996:29323907,29316867:264607 (1,10996:29323907,29316867:0,452978,115847 -r1,11023:32495867,29316867:3171960,568825,115847 +r1,11022:32495867,29316867:3171960,568825,115847 k1,10996:29323907,29316867:-3171960 ) (1,10996:29323907,29316867:3171960,452978,115847 @@ -197289,7 +197483,7 @@ k1,10996:16905043,31047027:206739 k1,10996:18663675,31047027:206739 k1,10996:20605807,31047027:206739 (1,10996:20605807,31047027:0,452978,115847 -r1,11023:22370920,31047027:1765113,568825,115847 +r1,11022:22370920,31047027:1765113,568825,115847 k1,10996:20605807,31047027:-1765113 ) (1,10996:20605807,31047027:1765113,452978,115847 @@ -197300,7 +197494,7 @@ k1,10996:22577659,31047027:206739 k1,10996:23593768,31047027:206739 k1,10996:24156367,31047027:206739 (1,10996:24156367,31047027:0,452978,122846 -r1,11023:26624904,31047027:2468537,575824,122846 +r1,11022:26624904,31047027:2468537,575824,122846 k1,10996:24156367,31047027:-2468537 ) (1,10996:24156367,31047027:2468537,452978,122846 @@ -197316,7 +197510,7 @@ k1,10996:32583029,31047027:0 k1,10996:8787323,31912107:208165 k1,10996:9662643,31912107:208164 (1,10996:9662643,31912107:0,414482,115847 -r1,11023:11076044,31912107:1413401,530329,115847 +r1,11022:11076044,31912107:1413401,530329,115847 k1,10996:9662643,31912107:-1413401 ) (1,10996:9662643,31912107:1413401,414482,115847 @@ -197327,7 +197521,7 @@ k1,10996:11284209,31912107:208165 k1,10996:13503018,31912107:208164 k1,10996:14397345,31912107:208165 (1,10996:14397345,31912107:0,414482,115847 -r1,11023:15810746,31912107:1413401,530329,115847 +r1,11022:15810746,31912107:1413401,530329,115847 k1,10996:14397345,31912107:-1413401 ) (1,10996:14397345,31912107:1413401,414482,115847 @@ -197337,7 +197531,7 @@ h1,10996:15807469,31912107:0,411205,112570 k1,10996:16192580,31912107:208164 k1,10996:17592190,31912107:208165 (1,10996:17592190,31912107:0,414482,115847 -r1,11023:19357303,31912107:1765113,530329,115847 +r1,11022:19357303,31912107:1765113,530329,115847 k1,10996:17592190,31912107:-1765113 ) (1,10996:17592190,31912107:1765113,414482,115847 @@ -197350,7 +197544,7 @@ k1,10996:25269896,31912107:208164 k1,10996:28638862,31912107:208165 k1,10996:30114492,31912107:208164 (1,10996:30114492,31912107:0,452978,115847 -r1,11023:32583029,31912107:2468537,568825,115847 +r1,11022:32583029,31912107:2468537,568825,115847 k1,10996:30114492,31912107:-2468537 ) (1,10996:30114492,31912107:2468537,452978,115847 @@ -197366,7 +197560,7 @@ g1,10996:9504525,32777187 g1,10996:13673925,32777187 g1,10996:15571192,32777187 (1,10996:15571192,32777187:0,452978,122846 -r1,11023:18039729,32777187:2468537,575824,122846 +r1,11022:18039729,32777187:2468537,575824,122846 k1,10996:15571192,32777187:-2468537 ) (1,10996:15571192,32777187:2468537,452978,122846 @@ -197388,48 +197582,48 @@ g1,10997:32583029,32903670 h1,10997:6630773,32903670:0,0,0 (1,11000:6630773,33768750:25952256,513147,126483 h1,10999:6630773,33768750:983040,0,0 -k1,10999:8439819,33768750:198171 -k1,10999:9657074,33768750:198170 -k1,10999:12846964,33768750:198171 -k1,10999:14900459,33768750:198171 -k1,10999:16117714,33768750:198170 -k1,10999:18108295,33768750:198171 -k1,10999:21332263,33768750:198171 -k1,10999:23034485,33768750:198171 -k1,10999:24745881,33768750:198170 -k1,10999:25595480,33768750:198171 -k1,10999:29035062,33768750:198171 -k1,10999:30252317,33768750:198170 -k1,10999:31839851,33768750:198171 +k1,10999:8464067,33768750:222419 +k1,10999:9705571,33768750:222419 +k1,10999:12919709,33768750:222419 +k1,10999:15171123,33768750:222419 +k1,10999:16412627,33768750:222419 +k1,10999:18427456,33768750:222419 +k1,10999:21675672,33768750:222419 +k1,10999:23402142,33768750:222419 +k1,10999:25137787,33768750:222419 +k1,10999:26011634,33768750:222419 +k1,10999:28986565,33768750:222419 +k1,10999:30228069,33768750:222419 +k1,10999:31839851,33768750:222419 k1,10999:32583029,33768750:0 ) (1,11000:6630773,34633830:25952256,513147,134348 -k1,10999:9548744,34633830:164148 -k1,10999:12703300,34633830:164148 -k1,10999:16066916,34633830:164148 -k1,10999:16858899,34633830:164148 -k1,10999:18042132,34633830:164148 -k1,10999:19590400,34633830:164148 -k1,10999:21250735,34633830:164148 -k1,10999:23386206,34633830:164148 -(1,10999:23386206,34633830:0,452978,115847 -r1,11023:26206455,34633830:2820249,568825,115847 -k1,10999:23386206,34633830:-2820249 -) -(1,10999:23386206,34633830:2820249,452978,115847 -k1,10999:23386206,34633830:3277 -h1,10999:26203178,34633830:0,411205,112570 -) -k1,10999:26370603,34633830:164148 -k1,10999:27066248,34633830:164148 -k1,10999:28743622,34633830:164148 -k1,10999:29559198,34633830:164148 +k1,10999:9534326,34633830:149730 +k1,10999:12674464,34633830:149730 +k1,10999:16023662,34633830:149730 +k1,10999:16801227,34633830:149730 +k1,10999:17970042,34633830:149730 +k1,10999:19503892,34633830:149730 +k1,10999:21149810,34633830:149731 +k1,10999:23443878,34633830:149730 +(1,10999:23443878,34633830:0,452978,115847 +r1,11022:26264127,34633830:2820249,568825,115847 +k1,10999:23443878,34633830:-2820249 +) +(1,10999:23443878,34633830:2820249,452978,115847 +k1,10999:23443878,34633830:3277 +h1,10999:26260850,34633830:0,411205,112570 +) +k1,10999:26413857,34633830:149730 +k1,10999:27095084,34633830:149730 +k1,10999:28758040,34633830:149730 +k1,10999:29559198,34633830:149730 k1,10999:32583029,34633830:0 ) (1,11000:6630773,35498910:25952256,513147,134348 k1,10999:7853907,35498910:204049 (1,10999:7853907,35498910:0,452978,115847 -r1,11023:9267308,35498910:1413401,568825,115847 +r1,11022:9267308,35498910:1413401,568825,115847 k1,10999:7853907,35498910:-1413401 ) (1,10999:7853907,35498910:1413401,452978,115847 @@ -197441,7 +197635,7 @@ k1,10999:10334698,35498910:204049 k1,10999:11673831,35498910:204049 k1,10999:14186058,35498910:204049 (1,10999:14186058,35498910:0,452978,115847 -r1,11023:15247747,35498910:1061689,568825,115847 +r1,11022:15247747,35498910:1061689,568825,115847 k1,10999:14186058,35498910:-1061689 ) (1,10999:14186058,35498910:1061689,452978,115847 @@ -197463,7 +197657,7 @@ k1,10999:32583029,35498910:0 (1,11000:6630773,36363990:25952256,513147,134348 k1,10999:10184808,36363990:273303 (1,10999:10184808,36363990:0,414482,115847 -r1,11023:10543074,36363990:358266,530329,115847 +r1,11022:10543074,36363990:358266,530329,115847 k1,10999:10184808,36363990:-358266 ) (1,10999:10184808,36363990:358266,414482,115847 @@ -197485,7 +197679,7 @@ k1,11000:32583029,36363990:0 ) (1,11000:6630773,37229070:25952256,452978,115847 (1,10999:6630773,37229070:0,452978,115847 -r1,11023:9099310,37229070:2468537,568825,115847 +r1,11022:9099310,37229070:2468537,568825,115847 k1,10999:6630773,37229070:-2468537 ) (1,10999:6630773,37229070:2468537,452978,115847 @@ -197496,16 +197690,16 @@ k1,11000:32583030,37229070:23431292 g1,11000:32583030,37229070 ) v1,11002:6630773,37913925:0,393216,0 -(1,11018:6630773,45201200:25952256,7680491,196608 -g1,11018:6630773,45201200 -g1,11018:6630773,45201200 -g1,11018:6434165,45201200 -(1,11018:6434165,45201200:0,7680491,196608 -r1,11023:32779637,45201200:26345472,7877099,196608 -k1,11018:6434165,45201200:-26345472 -) -(1,11018:6434165,45201200:26345472,7680491,196608 -[1,11018:6630773,45201200:25952256,7483883,0 +(1,11017:6630773,44516345:25952256,6995636,196608 +g1,11017:6630773,44516345 +g1,11017:6630773,44516345 +g1,11017:6434165,44516345 +(1,11017:6434165,44516345:0,6995636,196608 +r1,11022:32779637,44516345:26345472,7192244,196608 +k1,11017:6434165,44516345:-26345472 +) +(1,11017:6434165,44516345:26345472,6995636,196608 +[1,11017:6630773,44516345:25952256,6799028,0 (1,11004:6630773,38141756:25952256,424439,79822 (1,11003:6630773,38141756:0,0,0 g1,11003:6630773,38141756 @@ -197573,182 +197767,172 @@ h1,11006:21568703,39511466:0,0,0 k1,11006:32583029,39511466:11014326 g1,11006:32583029,39511466 ) -(1,11007:6630773,40196321:25952256,424439,112852 +(1,11007:6630773,40196321:25952256,424439,79822 h1,11007:6630773,40196321:0,0,0 -g1,11007:10614220,40196321 -g1,11007:11610082,40196321 -g1,11007:16257437,40196321 -k1,11007:16257437,40196321:0 -h1,11007:20904792,40196321:0,0,0 -k1,11007:32583029,40196321:11678237 +k1,11007:6630773,40196321:0 +h1,11007:9286405,40196321:0,0,0 +k1,11007:32583029,40196321:23296624 g1,11007:32583029,40196321 ) -(1,11008:6630773,40881176:25952256,424439,79822 -h1,11008:6630773,40881176:0,0,0 -k1,11008:6630773,40881176:0 -h1,11008:9286405,40881176:0,0,0 -k1,11008:32583029,40881176:23296624 -g1,11008:32583029,40881176 -) -(1,11017:6630773,41697103:25952256,431045,9908 -(1,11010:6630773,41697103:0,0,0 -g1,11010:6630773,41697103 -g1,11010:6630773,41697103 -g1,11010:6303093,41697103 -(1,11010:6303093,41697103:0,0,0 -) -g1,11010:6630773,41697103 -) -g1,11017:7626635,41697103 -g1,11017:9286405,41697103 -g1,11017:10282267,41697103 -h1,11017:10614221,41697103:0,0,0 -k1,11017:32583029,41697103:21968808 -g1,11017:32583029,41697103 -) -(1,11017:6630773,42381958:25952256,431045,79822 -h1,11017:6630773,42381958:0,0,0 -g1,11017:7626635,42381958 -g1,11017:7958589,42381958 -g1,11017:8622497,42381958 -g1,11017:9950313,42381958 -g1,11017:11278129,42381958 -g1,11017:13269853,42381958 -g1,11017:15261577,42381958 -h1,11017:16589393,42381958:0,0,0 -k1,11017:32583029,42381958:15993636 -g1,11017:32583029,42381958 -) -(1,11017:6630773,43066813:25952256,431045,79822 -h1,11017:6630773,43066813:0,0,0 -g1,11017:7626635,43066813 -g1,11017:7958589,43066813 -g1,11017:8622497,43066813 -g1,11017:9950313,43066813 -g1,11017:11278129,43066813 -g1,11017:13269853,43066813 -g1,11017:14929623,43066813 -g1,11017:16921347,43066813 -g1,11017:18913071,43066813 -g1,11017:20904795,43066813 -h1,11017:22564565,43066813:0,0,0 -k1,11017:32583029,43066813:10018464 -g1,11017:32583029,43066813 -) -(1,11017:6630773,43751668:25952256,431045,79822 -h1,11017:6630773,43751668:0,0,0 -g1,11017:7626635,43751668 -g1,11017:7958589,43751668 -g1,11017:8622497,43751668 -g1,11017:9950313,43751668 -g1,11017:11278129,43751668 -g1,11017:13269853,43751668 -g1,11017:14929623,43751668 -g1,11017:16921347,43751668 -h1,11017:18249163,43751668:0,0,0 -k1,11017:32583029,43751668:14333866 -g1,11017:32583029,43751668 -) -(1,11017:6630773,44436523:25952256,431045,33029 -h1,11017:6630773,44436523:0,0,0 -g1,11017:7626635,44436523 -g1,11017:7958589,44436523 -g1,11017:8622497,44436523 -g1,11017:9950313,44436523 -g1,11017:11278129,44436523 -h1,11017:11610083,44436523:0,0,0 -k1,11017:32583029,44436523:20972946 -g1,11017:32583029,44436523 -) -(1,11017:6630773,45121378:25952256,431045,79822 -h1,11017:6630773,45121378:0,0,0 -g1,11017:7626635,45121378 -g1,11017:7958589,45121378 -g1,11017:8622497,45121378 -g1,11017:9950313,45121378 -g1,11017:11278129,45121378 -g1,11017:13269853,45121378 -g1,11017:14929623,45121378 -g1,11017:16589393,45121378 -g1,11017:18581117,45121378 -h1,11017:20240887,45121378:0,0,0 -k1,11017:32583029,45121378:12342142 -g1,11017:32583029,45121378 -) -] -) -g1,11018:32583029,45201200 -g1,11018:6630773,45201200 -g1,11018:6630773,45201200 -g1,11018:32583029,45201200 -g1,11018:32583029,45201200 -) -h1,11018:6630773,45397808:0,0,0 -] -(1,11023:32583029,45706769:0,0,0 -g1,11023:32583029,45706769 -) -) -] -(1,11023:6630773,47279633:25952256,0,0 -h1,11023:6630773,47279633:25952256,0,0 -) -] -(1,11023:4262630,4025873:0,0,0 -[1,11023:-473656,4025873:0,0,0 -(1,11023:-473656,-710413:0,0,0 -(1,11023:-473656,-710413:0,0,0 -g1,11023:-473656,-710413 -) -g1,11023:-473656,-710413 -) -] -) -] -!33282 -}171 -Input:1798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1799:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,11016:6630773,41012248:25952256,431045,9908 +(1,11009:6630773,41012248:0,0,0 +g1,11009:6630773,41012248 +g1,11009:6630773,41012248 +g1,11009:6303093,41012248 +(1,11009:6303093,41012248:0,0,0 +) +g1,11009:6630773,41012248 +) +g1,11016:7626635,41012248 +g1,11016:9286405,41012248 +g1,11016:10282267,41012248 +h1,11016:10614221,41012248:0,0,0 +k1,11016:32583029,41012248:21968808 +g1,11016:32583029,41012248 +) +(1,11016:6630773,41697103:25952256,431045,79822 +h1,11016:6630773,41697103:0,0,0 +g1,11016:7626635,41697103 +g1,11016:7958589,41697103 +g1,11016:8622497,41697103 +g1,11016:9950313,41697103 +g1,11016:11278129,41697103 +g1,11016:13269853,41697103 +g1,11016:15261577,41697103 +h1,11016:16589393,41697103:0,0,0 +k1,11016:32583029,41697103:15993636 +g1,11016:32583029,41697103 +) +(1,11016:6630773,42381958:25952256,431045,79822 +h1,11016:6630773,42381958:0,0,0 +g1,11016:7626635,42381958 +g1,11016:7958589,42381958 +g1,11016:8622497,42381958 +g1,11016:9950313,42381958 +g1,11016:11278129,42381958 +g1,11016:13269853,42381958 +g1,11016:14929623,42381958 +g1,11016:16921347,42381958 +g1,11016:18913071,42381958 +g1,11016:20904795,42381958 +h1,11016:22564565,42381958:0,0,0 +k1,11016:32583029,42381958:10018464 +g1,11016:32583029,42381958 +) +(1,11016:6630773,43066813:25952256,431045,79822 +h1,11016:6630773,43066813:0,0,0 +g1,11016:7626635,43066813 +g1,11016:7958589,43066813 +g1,11016:8622497,43066813 +g1,11016:9950313,43066813 +g1,11016:11278129,43066813 +g1,11016:13269853,43066813 +g1,11016:14929623,43066813 +g1,11016:16921347,43066813 +h1,11016:18249163,43066813:0,0,0 +k1,11016:32583029,43066813:14333866 +g1,11016:32583029,43066813 +) +(1,11016:6630773,43751668:25952256,431045,33029 +h1,11016:6630773,43751668:0,0,0 +g1,11016:7626635,43751668 +g1,11016:7958589,43751668 +g1,11016:8622497,43751668 +g1,11016:9950313,43751668 +g1,11016:11278129,43751668 +h1,11016:11610083,43751668:0,0,0 +k1,11016:32583029,43751668:20972946 +g1,11016:32583029,43751668 +) +(1,11016:6630773,44436523:25952256,431045,79822 +h1,11016:6630773,44436523:0,0,0 +g1,11016:7626635,44436523 +g1,11016:7958589,44436523 +g1,11016:8622497,44436523 +g1,11016:9950313,44436523 +g1,11016:11278129,44436523 +g1,11016:13269853,44436523 +g1,11016:14929623,44436523 +g1,11016:16589393,44436523 +g1,11016:18581117,44436523 +h1,11016:20240887,44436523:0,0,0 +k1,11016:32583029,44436523:12342142 +g1,11016:32583029,44436523 +) +] +) +g1,11017:32583029,44516345 +g1,11017:6630773,44516345 +g1,11017:6630773,44516345 +g1,11017:32583029,44516345 +g1,11017:32583029,44516345 +) +h1,11017:6630773,44712953:0,0,0 +] +(1,11022:32583029,45706769:0,0,0 +g1,11022:32583029,45706769 +) +) +] +(1,11022:6630773,47279633:25952256,0,0 +h1,11022:6630773,47279633:25952256,0,0 +) +] +(1,11022:4262630,4025873:0,0,0 +[1,11022:-473656,4025873:0,0,0 +(1,11022:-473656,-710413:0,0,0 +(1,11022:-473656,-710413:0,0,0 +g1,11022:-473656,-710413 +) +g1,11022:-473656,-710413 +) +] +) +] +!32993 +}172 Input:1801:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1802:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1803:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1808:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{172 -[1,11093:4262630,47279633:28320399,43253760,0 -(1,11093:4262630,4025873:0,0,0 -[1,11093:-473656,4025873:0,0,0 -(1,11093:-473656,-710413:0,0,0 -(1,11093:-473656,-644877:0,0,0 -k1,11093:-473656,-644877:-65536 +{173 +[1,11092:4262630,47279633:28320399,43253760,0 +(1,11092:4262630,4025873:0,0,0 +[1,11092:-473656,4025873:0,0,0 +(1,11092:-473656,-710413:0,0,0 +(1,11092:-473656,-644877:0,0,0 +k1,11092:-473656,-644877:-65536 ) -(1,11093:-473656,4736287:0,0,0 -k1,11093:-473656,4736287:5209943 +(1,11092:-473656,4736287:0,0,0 +k1,11092:-473656,4736287:5209943 ) -g1,11093:-473656,-710413 +g1,11092:-473656,-710413 ) ] ) -[1,11093:6630773,47279633:25952256,43253760,0 -[1,11093:6630773,4812305:25952256,786432,0 -(1,11093:6630773,4812305:25952256,505283,126483 -(1,11093:6630773,4812305:25952256,505283,126483 -g1,11093:3078558,4812305 -[1,11093:3078558,4812305:0,0,0 -(1,11093:3078558,2439708:0,1703936,0 -k1,11093:1358238,2439708:-1720320 +[1,11092:6630773,47279633:25952256,43253760,0 +[1,11092:6630773,4812305:25952256,786432,0 +(1,11092:6630773,4812305:25952256,505283,126483 +(1,11092:6630773,4812305:25952256,505283,126483 +g1,11092:3078558,4812305 +[1,11092:3078558,4812305:0,0,0 +(1,11092:3078558,2439708:0,1703936,0 +k1,11092:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11093:2537886,2439708:1179648,16384,0 +r1,11092:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11093:3078558,1915420:16384,1179648,0 +r1,11092:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -197758,16 +197942,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11093:3078558,4812305:0,0,0 -(1,11093:3078558,2439708:0,1703936,0 -g1,11093:29030814,2439708 -g1,11093:36135244,2439708 +[1,11092:3078558,4812305:0,0,0 +(1,11092:3078558,2439708:0,1703936,0 +g1,11092:29030814,2439708 +g1,11092:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11093:36151628,1915420:16384,1179648,0 +r1,11092:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -197776,25 +197960,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11093:37855564,2439708:1179648,16384,0 +r1,11092:37855564,2439708:1179648,16384,0 ) ) -k1,11093:3078556,2439708:-34777008 +k1,11092:3078556,2439708:-34777008 ) ] -[1,11093:3078558,4812305:0,0,0 -(1,11093:3078558,49800853:0,16384,2228224 -k1,11093:1358238,49800853:-1720320 +[1,11092:3078558,4812305:0,0,0 +(1,11092:3078558,49800853:0,16384,2228224 +k1,11092:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11093:2537886,49800853:1179648,16384,0 +r1,11092:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11093:3078558,51504789:16384,1179648,0 +r1,11092:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -197804,16 +197988,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11093:3078558,4812305:0,0,0 -(1,11093:3078558,49800853:0,16384,2228224 -g1,11093:29030814,49800853 -g1,11093:36135244,49800853 +[1,11092:3078558,4812305:0,0,0 +(1,11092:3078558,49800853:0,16384,2228224 +g1,11092:29030814,49800853 +g1,11092:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11093:36151628,51504789:16384,1179648,0 +r1,11092:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -197822,887 +198006,883 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11093:37855564,49800853:1179648,16384,0 -) -) -k1,11093:3078556,49800853:-34777008 -) -] -g1,11093:6630773,4812305 -g1,11093:6630773,4812305 -g1,11093:8671564,4812305 -g1,11093:11868410,4812305 -k1,11093:31387652,4812305:19519242 -) -) -] -[1,11093:6630773,45706769:25952256,40108032,0 -(1,11093:6630773,45706769:25952256,40108032,0 -(1,11093:6630773,45706769:0,0,0 -g1,11093:6630773,45706769 -) -[1,11093:6630773,45706769:25952256,40108032,0 -(1,11022:6630773,6254097:25952256,513147,134348 -h1,11021:6630773,6254097:983040,0,0 -k1,11021:8391507,6254097:149859 -k1,11021:11207371,6254097:149859 -k1,11021:12008657,6254097:149858 -k1,11021:15184313,6254097:149859 -k1,11021:18335066,6254097:149859 -k1,11021:23520711,6254097:149859 -k1,11021:25586842,6254097:149858 -k1,11021:27304322,6254097:149859 -k1,11021:30216524,6254097:149859 -k1,11022:32583029,6254097:0 -) -(1,11022:6630773,7119177:25952256,513147,134348 -k1,11021:8015072,7119177:158776 -k1,11021:12459246,7119177:158775 -k1,11021:16655040,7119177:158776 -k1,11021:17761467,7119177:158776 -k1,11021:20210071,7119177:158776 -k1,11021:21028138,7119177:158775 -k1,11021:23529171,7119177:158776 -k1,11021:25920759,7119177:158776 -k1,11021:27183817,7119177:158776 -k1,11021:28090358,7119177:158775 -k1,11021:29762360,7119177:158776 -k1,11022:32583029,7119177:0 -k1,11022:32583029,7119177:0 -) -(1,11023:6630773,9235995:25952256,564462,147783 -(1,11023:6630773,9235995:2450326,534184,12975 -g1,11023:6630773,9235995 -g1,11023:9081099,9235995 -) -g1,11023:12662511,9235995 -g1,11023:16328989,9235995 -g1,11023:17279130,9235995 -g1,11023:20622646,9235995 -g1,11023:22189874,9235995 -k1,11023:32583029,9235995:8076195 -g1,11023:32583029,9235995 -) -(1,11026:6630773,10494291:25952256,513147,126483 -k1,11025:9562472,10494291:254553 -k1,11025:11008469,10494291:254552 -k1,11025:13242865,10494291:254553 -k1,11025:14972632,10494291:254552 -k1,11025:16399624,10494291:254553 -k1,11025:17337061,10494291:254552 -k1,11025:19241811,10494291:254553 -k1,11025:23345293,10494291:254553 -k1,11025:24791290,10494291:254552 -k1,11025:27739373,10494291:254553 -k1,11025:28645353,10494291:254552 -k1,11025:30289269,10494291:254553 -k1,11025:32583029,10494291:0 -) -(1,11026:6630773,11359371:25952256,513147,126483 -k1,11025:8211720,11359371:200759 -k1,11025:9404039,11359371:200759 -k1,11025:10671068,11359371:200758 -k1,11025:11227687,11359371:200759 -k1,11025:13622591,11359371:200759 -k1,11025:15252690,11359371:200759 -k1,11025:16112740,11359371:200758 -k1,11025:21589147,11359371:200759 -k1,11025:23287404,11359371:200759 -k1,11025:24115998,11359371:200759 -k1,11025:24731598,11359371:200757 -k1,11025:25951442,11359371:200759 -k1,11025:29827459,11359371:200758 -k1,11025:30687510,11359371:200759 -k1,11025:31244129,11359371:200759 -k1,11026:32583029,11359371:0 -) -(1,11026:6630773,12224451:25952256,513147,134348 -k1,11025:7917396,12224451:258363 -k1,11025:9709957,12224451:258363 -k1,11025:11159765,12224451:258363 -k1,11025:14304989,12224451:258363 -k1,11025:15950749,12224451:258363 -k1,11025:18094583,12224451:258363 -k1,11025:18708805,12224451:258362 -k1,11025:21662664,12224451:258363 -k1,11025:22452524,12224451:258363 -k1,11025:25082635,12224451:258363 -k1,11025:26332558,12224451:258363 -k1,11025:28458697,12224451:258363 -k1,11025:31350952,12224451:258363 +r1,11092:37855564,49800853:1179648,16384,0 +) +) +k1,11092:3078556,49800853:-34777008 +) +] +g1,11092:6630773,4812305 +g1,11092:6630773,4812305 +g1,11092:8671564,4812305 +g1,11092:11868410,4812305 +k1,11092:31387652,4812305:19519242 +) +) +] +[1,11092:6630773,45706769:25952256,40108032,0 +(1,11092:6630773,45706769:25952256,40108032,0 +(1,11092:6630773,45706769:0,0,0 +g1,11092:6630773,45706769 +) +[1,11092:6630773,45706769:25952256,40108032,0 +(1,11021:6630773,6254097:25952256,513147,134348 +h1,11020:6630773,6254097:983040,0,0 +k1,11020:8391507,6254097:149859 +k1,11020:11207371,6254097:149859 +k1,11020:12008657,6254097:149858 +k1,11020:15184313,6254097:149859 +k1,11020:18335066,6254097:149859 +k1,11020:23520711,6254097:149859 +k1,11020:25586842,6254097:149858 +k1,11020:27304322,6254097:149859 +k1,11020:30216524,6254097:149859 +k1,11021:32583029,6254097:0 +) +(1,11021:6630773,7119177:25952256,513147,134348 +k1,11020:8015072,7119177:158776 +k1,11020:12459246,7119177:158775 +k1,11020:16655040,7119177:158776 +k1,11020:17761467,7119177:158776 +k1,11020:20210071,7119177:158776 +k1,11020:21028138,7119177:158775 +k1,11020:23529171,7119177:158776 +k1,11020:25920759,7119177:158776 +k1,11020:27183817,7119177:158776 +k1,11020:28090358,7119177:158775 +k1,11020:29762360,7119177:158776 +k1,11021:32583029,7119177:0 +k1,11021:32583029,7119177:0 +) +(1,11022:6630773,9235995:25952256,564462,147783 +(1,11022:6630773,9235995:2450326,534184,12975 +g1,11022:6630773,9235995 +g1,11022:9081099,9235995 +) +g1,11022:12662511,9235995 +g1,11022:16328989,9235995 +g1,11022:17279130,9235995 +g1,11022:20622646,9235995 +g1,11022:22189874,9235995 +k1,11022:32583029,9235995:8076195 +g1,11022:32583029,9235995 +) +(1,11025:6630773,10494291:25952256,513147,126483 +k1,11024:9562472,10494291:254553 +k1,11024:11008469,10494291:254552 +k1,11024:13242865,10494291:254553 +k1,11024:14972632,10494291:254552 +k1,11024:16399624,10494291:254553 +k1,11024:17337061,10494291:254552 +k1,11024:19241811,10494291:254553 +k1,11024:23345293,10494291:254553 +k1,11024:24791290,10494291:254552 +k1,11024:27739373,10494291:254553 +k1,11024:28645353,10494291:254552 +k1,11024:30289269,10494291:254553 +k1,11024:32583029,10494291:0 +) +(1,11025:6630773,11359371:25952256,513147,126483 +k1,11024:8309290,11359371:298329 +k1,11024:9599180,11359371:298330 +k1,11024:10963780,11359371:298329 +k1,11024:11617969,11359371:298329 +k1,11024:14110443,11359371:298329 +k1,11024:15838113,11359371:298330 +k1,11024:16795734,11359371:298329 +k1,11024:22369711,11359371:298329 +k1,11024:24165539,11359371:298330 +k1,11024:25091703,11359371:298329 +k1,11024:25978545,11359371:298329 +k1,11024:27295959,11359371:298329 +k1,11024:31269548,11359371:298330 +k1,11024:32227169,11359371:298329 +k1,11024:32583029,11359371:0 +) +(1,11025:6630773,12224451:25952256,513147,134348 +k1,11024:9173515,12224451:281750 +k1,11024:10989463,12224451:281750 +k1,11024:12462658,12224451:281750 +k1,11024:15631269,12224451:281750 +k1,11024:17300416,12224451:281750 +k1,11024:19467638,12224451:281751 +k1,11024:20105248,12224451:281750 +k1,11024:23082494,12224451:281750 +k1,11024:23895741,12224451:281750 +k1,11024:26549239,12224451:281750 +k1,11024:27822549,12224451:281750 +k1,11024:29972075,12224451:281750 k1,11025:32583029,12224451:0 ) -(1,11026:6630773,13089531:25952256,505283,134348 -k1,11025:9061402,13089531:151942 -h1,11025:10430449,13089531:0,0,0 -k1,11025:10756060,13089531:151941 -k1,11025:12099447,13089531:151942 -k1,11025:14236474,13089531:151941 -h1,11025:15207062,13089531:0,0,0 -k1,11025:15359004,13089531:151942 -k1,11025:16320316,13089531:151942 -k1,11025:17970410,13089531:151941 -h1,11025:18767328,13089531:0,0,0 -k1,11025:19300034,13089531:151942 -k1,11025:20648663,13089531:151942 -k1,11025:23872932,13089531:151941 -k1,11025:26230161,13089531:151942 -k1,11025:27033530,13089531:151941 -k1,11025:30466204,13089531:151942 -(1,11025:30466204,13089531:0,414482,115847 -r1,11093:32583029,13089531:2116825,530329,115847 -k1,11025:30466204,13089531:-2116825 -) -(1,11025:30466204,13089531:2116825,414482,115847 -k1,11025:30466204,13089531:3277 -h1,11025:32579752,13089531:0,411205,112570 -) +(1,11025:6630773,13089531:25952256,505283,134348 +k1,11024:8064599,13089531:222721 +k1,11024:10566008,13089531:222722 +h1,11024:11935055,13089531:0,0,0 +k1,11024:12331446,13089531:222721 +k1,11024:13745613,13089531:222722 +k1,11024:15953420,13089531:222721 +h1,11024:16924008,13089531:0,0,0 +k1,11024:17146730,13089531:222722 +k1,11024:18178821,13089531:222721 +k1,11024:19899696,13089531:222722 +h1,11024:20696614,13089531:0,0,0 +k1,11024:21300099,13089531:222721 +k1,11024:22719508,13089531:222722 +k1,11024:26014557,13089531:222721 +k1,11024:28442566,13089531:222722 +k1,11024:29316715,13089531:222721 k1,11025:32583029,13089531:0 ) -(1,11026:6630773,13954611:25952256,513147,134348 -k1,11025:10391502,13954611:186395 -k1,11025:12014446,13954611:186395 -k1,11025:14086312,13954611:186395 -k1,11025:16527147,13954611:186396 -k1,11025:17732627,13954611:186395 -k1,11025:20614518,13954611:186395 -k1,11025:21933375,13954611:186395 -k1,11025:22867536,13954611:186395 -k1,11025:25599349,13954611:186395 -k1,11025:27897315,13954611:186396 -k1,11025:29187992,13954611:186395 -k1,11025:30849602,13954611:186395 -k1,11025:32583029,13954611:0 -) -(1,11026:6630773,14819691:25952256,505283,134348 -k1,11025:10567029,14819691:260997 -k1,11025:12060103,14819691:260997 -k1,11025:14306186,14819691:260997 -h1,11025:15276774,14819691:0,0,0 -k1,11025:15537771,14819691:260997 -k1,11025:16608138,14819691:260997 -k1,11025:18367288,14819691:260997 -h1,11025:19164206,14819691:0,0,0 -k1,11025:19805966,14819691:260996 -k1,11025:21258408,14819691:260997 -k1,11025:25744511,14819691:260997 -k1,11025:27655705,14819691:260997 -k1,11025:30675112,14819691:260997 -k1,11025:31563944,14819691:260997 -k1,11025:32583029,14819691:0 -) -(1,11026:6630773,15684771:25952256,513147,126483 -k1,11025:8207613,15684771:209759 -k1,11025:9076663,15684771:209758 -k1,11025:11266265,15684771:209759 -k1,11025:12869975,15684771:209759 -k1,11025:14729931,15684771:209759 -k1,11025:16382136,15684771:209758 -k1,11025:17764334,15684771:209759 -k1,11025:21823022,15684771:209759 -k1,11025:22490878,15684771:209759 -k1,11025:23232133,15684771:209758 -k1,11025:26071852,15684771:209759 -k1,11025:27473056,15684771:209759 -k1,11025:28787097,15684771:209759 -k1,11025:29744621,15684771:209758 -k1,11025:31931601,15684771:209759 -k1,11025:32583029,15684771:0 -) -(1,11026:6630773,16549851:25952256,513147,134348 -g1,11025:8593576,16549851 -g1,11025:11818602,16549851 -g1,11025:13405228,16549851 -g1,11025:16275704,16549851 -g1,11025:19059673,16549851 -g1,11025:19871664,16549851 -k1,11026:32583029,16549851:11168648 -g1,11026:32583029,16549851 -) -v1,11028:6630773,17414931:0,393216,0 -(1,11029:6630773,20487195:25952256,3465480,0 -g1,11029:6630773,20487195 -g1,11029:6237557,20487195 -r1,11093:6368629,20487195:131072,3465480,0 -g1,11029:6567858,20487195 -g1,11029:6764466,20487195 -[1,11029:6764466,20487195:25818563,3465480,0 -(1,11029:6764466,17776108:25818563,754393,260573 -(1,11028:6764466,17776108:0,754393,260573 -r1,11093:7856192,17776108:1091726,1014966,260573 -k1,11028:6764466,17776108:-1091726 -) -(1,11028:6764466,17776108:1091726,754393,260573 -) -k1,11028:8040255,17776108:184063 -k1,11028:8367935,17776108:327680 -k1,11028:9748685,17776108:184063 -k1,11028:13125663,17776108:184064 -k1,11028:14946816,17776108:184063 -k1,11028:15790171,17776108:184063 -k1,11028:16993319,17776108:184063 -k1,11028:19264705,17776108:184064 -k1,11028:20131653,17776108:184063 -k1,11028:21965257,17776108:184063 -k1,11028:24354607,17776108:184063 -k1,11028:25224833,17776108:184064 -k1,11028:28481224,17776108:184063 -k1,11028:29316715,17776108:184063 -k1,11029:32583029,17776108:0 -) -(1,11029:6764466,18641188:25818563,513147,134348 -(1,11028:6764466,18641188:0,414482,115847 -r1,11093:7122732,18641188:358266,530329,115847 -k1,11028:6764466,18641188:-358266 -) -(1,11028:6764466,18641188:358266,414482,115847 -k1,11028:6764466,18641188:3277 -h1,11028:7119455,18641188:0,411205,112570 -) -k1,11028:7327313,18641188:204581 -k1,11028:8191187,18641188:204582 -k1,11028:10188178,18641188:204581 -k1,11028:13418556,18641188:204581 -k1,11028:14614697,18641188:204581 -k1,11028:17024566,18641188:204582 -k1,11028:17915309,18641188:204581 -k1,11028:18475750,18641188:204581 -k1,11028:21855551,18641188:204582 -k1,11028:25132460,18641188:204581 -k1,11028:25988469,18641188:204581 -k1,11028:27212135,18641188:204581 -k1,11028:28722850,18641188:204582 -k1,11028:31056040,18641188:204581 -k1,11029:32583029,18641188:0 -) -(1,11029:6764466,19506268:25818563,513147,134348 -k1,11028:8851415,19506268:227037 -k1,11028:9737745,19506268:227038 -k1,11028:10983867,19506268:227037 -k1,11028:13582652,19506268:227037 -k1,11028:16678855,19506268:227037 -k1,11028:17975441,19506268:227038 -k1,11028:19578079,19506268:227037 -k1,11028:21497256,19506268:227037 -k1,11028:22139109,19506268:227010 -k1,11028:25391943,19506268:227037 -k1,11028:26723262,19506268:227037 -k1,11028:27698065,19506268:227037 -k1,11028:30130390,19506268:227038 -k1,11028:31043589,19506268:227037 -k1,11029:32583029,19506268:0 -) -(1,11029:6764466,20371348:25818563,426639,115847 -g1,11028:8602750,20371348 -g1,11028:9453407,20371348 -(1,11028:9453407,20371348:0,414482,115847 -r1,11093:10515096,20371348:1061689,530329,115847 -k1,11028:9453407,20371348:-1061689 -) -(1,11028:9453407,20371348:1061689,414482,115847 -k1,11028:9453407,20371348:3277 -h1,11028:10511819,20371348:0,411205,112570 -) -k1,11029:32583028,20371348:22015504 -g1,11029:32583028,20371348 -) -] -g1,11029:32583029,20487195 -) -h1,11029:6630773,20487195:0,0,0 -(1,11032:6630773,21352275:25952256,505283,134348 -h1,11031:6630773,21352275:983040,0,0 -k1,11031:9783727,21352275:138298 -(1,11031:9783727,21352275:0,435480,115847 -r1,11093:11197128,21352275:1413401,551327,115847 -k1,11031:9783727,21352275:-1413401 -) -(1,11031:9783727,21352275:1413401,435480,115847 -k1,11031:9783727,21352275:3277 -h1,11031:11193851,21352275:0,411205,112570 -) -k1,11031:11335427,21352275:138299 -k1,11031:15265638,21352275:138298 -k1,11031:16801820,21352275:138299 -k1,11031:18072580,21352275:138298 -k1,11031:18958645,21352275:138299 -k1,11031:20610169,21352275:138298 -k1,11031:21364506,21352275:138299 -k1,11031:24668193,21352275:138298 -k1,11031:27125811,21352275:138299 -k1,11031:29332425,21352275:138298 -k1,11031:31189078,21352275:138299 -k1,11031:32583029,21352275:0 -) -(1,11032:6630773,22217355:25952256,505283,134348 -k1,11031:11477458,22217355:191663 -k1,11031:13135817,22217355:191663 -k1,11031:14725363,22217355:191663 -k1,11031:16108471,22217355:191663 -k1,11031:17998172,22217355:191663 -k1,11031:19925228,22217355:191663 -k1,11031:22850398,22217355:191663 -k1,11031:23658099,22217355:191663 -k1,11031:25046449,22217355:191663 -k1,11031:26627475,22217355:191663 -k1,11031:29373731,22217355:191663 -k1,11032:32583029,22217355:0 -k1,11032:32583029,22217355:0 -) -v1,11034:6630773,22902210:0,393216,0 -(1,11048:6630773,28749861:25952256,6240867,196608 -g1,11048:6630773,28749861 -g1,11048:6630773,28749861 -g1,11048:6434165,28749861 -(1,11048:6434165,28749861:0,6240867,196608 -r1,11093:32779637,28749861:26345472,6437475,196608 -k1,11048:6434165,28749861:-26345472 -) -(1,11048:6434165,28749861:26345472,6240867,196608 -[1,11048:6630773,28749861:25952256,6044259,0 -(1,11036:6630773,23130041:25952256,424439,86428 -(1,11035:6630773,23130041:0,0,0 -g1,11035:6630773,23130041 -g1,11035:6630773,23130041 -g1,11035:6303093,23130041 -(1,11035:6303093,23130041:0,0,0 -) -g1,11035:6630773,23130041 -) -g1,11036:8290543,23130041 -g1,11036:9286405,23130041 -g1,11036:14597669,23130041 -g1,11036:16257439,23130041 -g1,11036:16921347,23130041 -g1,11036:18249163,23130041 -g1,11036:19245025,23130041 -g1,11036:19908933,23130041 -g1,11036:21236749,23130041 -g1,11036:22896519,23130041 -g1,11036:23560427,23130041 -h1,11036:24224335,23130041:0,0,0 -k1,11036:32583029,23130041:8358694 -g1,11036:32583029,23130041 -) -(1,11037:6630773,23814896:25952256,424439,112852 -h1,11037:6630773,23814896:0,0,0 -g1,11037:8290543,23814896 -g1,11037:9286405,23814896 -g1,11037:13269853,23814896 -g1,11037:15593531,23814896 -g1,11037:16257439,23814896 -h1,11037:16921347,23814896:0,0,0 -k1,11037:32583029,23814896:15661682 -g1,11037:32583029,23814896 -) -(1,11038:6630773,24499751:25952256,424439,79822 -h1,11038:6630773,24499751:0,0,0 -g1,11038:11610082,24499751 -g1,11038:12605944,24499751 -g1,11038:13269852,24499751 -g1,11038:14597668,24499751 -g1,11038:15925484,24499751 -g1,11038:17253300,24499751 -g1,11038:19576978,24499751 -k1,11038:19576978,24499751:0 -h1,11038:21236748,24499751:0,0,0 -k1,11038:32583029,24499751:11346281 -g1,11038:32583029,24499751 -) -(1,11039:6630773,25184606:25952256,424439,106246 -h1,11039:6630773,25184606:0,0,0 -g1,11039:6962727,25184606 -g1,11039:7294681,25184606 -g1,11039:13269853,25184606 -g1,11039:18249163,25184606 -g1,11039:22564565,25184606 -k1,11039:22564565,25184606:0 -h1,11039:27211920,25184606:0,0,0 -k1,11039:32583029,25184606:5371109 -g1,11039:32583029,25184606 -) -(1,11040:6630773,25869461:25952256,407923,6605 -h1,11040:6630773,25869461:0,0,0 -h1,11040:7958589,25869461:0,0,0 -k1,11040:32583029,25869461:24624440 -g1,11040:32583029,25869461 -) -(1,11047:6630773,26685388:25952256,424439,6605 -(1,11042:6630773,26685388:0,0,0 -g1,11042:6630773,26685388 -g1,11042:6630773,26685388 -g1,11042:6303093,26685388 -(1,11042:6303093,26685388:0,0,0 -) -g1,11042:6630773,26685388 -) -g1,11047:7626635,26685388 -g1,11047:7958589,26685388 -g1,11047:8290543,26685388 -g1,11047:8622497,26685388 -g1,11047:8954451,26685388 -g1,11047:9286405,26685388 -g1,11047:9618359,26685388 -g1,11047:10946175,26685388 -g1,11047:11610083,26685388 -g1,11047:12937899,26685388 -h1,11047:13269853,26685388:0,0,0 -k1,11047:32583029,26685388:19313176 -g1,11047:32583029,26685388 -) -(1,11047:6630773,27370243:25952256,407923,9908 -h1,11047:6630773,27370243:0,0,0 -g1,11047:7626635,27370243 -g1,11047:8954451,27370243 -g1,11047:9618359,27370243 -g1,11047:9950313,27370243 -g1,11047:11610083,27370243 -g1,11047:11942037,27370243 -h1,11047:13269853,27370243:0,0,0 -k1,11047:32583029,27370243:19313176 -g1,11047:32583029,27370243 -) -(1,11047:6630773,28055098:25952256,407923,9908 -h1,11047:6630773,28055098:0,0,0 -g1,11047:7626635,28055098 -g1,11047:8954451,28055098 -g1,11047:9618359,28055098 -g1,11047:9950313,28055098 -g1,11047:10282267,28055098 -g1,11047:11610083,28055098 -g1,11047:11942037,28055098 -h1,11047:13269853,28055098:0,0,0 -k1,11047:32583029,28055098:19313176 -g1,11047:32583029,28055098 -) -(1,11047:6630773,28739953:25952256,407923,9908 -h1,11047:6630773,28739953:0,0,0 -g1,11047:7626635,28739953 -g1,11047:8954451,28739953 -g1,11047:9618359,28739953 -g1,11047:9950313,28739953 -g1,11047:11610083,28739953 -g1,11047:11942037,28739953 -g1,11047:12273991,28739953 -h1,11047:13269853,28739953:0,0,0 -k1,11047:32583029,28739953:19313176 -g1,11047:32583029,28739953 -) -] -) -g1,11048:32583029,28749861 -g1,11048:6630773,28749861 -g1,11048:6630773,28749861 -g1,11048:32583029,28749861 -g1,11048:32583029,28749861 -) -h1,11048:6630773,28946469:0,0,0 -(1,11052:6630773,29811549:25952256,513147,126483 -h1,11051:6630773,29811549:983040,0,0 -k1,11051:10308397,29811549:189798 -k1,11051:11388174,29811549:189798 -k1,11051:12988963,29811549:189799 -k1,11051:15247077,29811549:189798 -k1,11051:16096167,29811549:189798 -k1,11051:19019472,29811549:189798 -k1,11051:20313553,29811549:189799 -k1,11051:21251117,29811549:189798 -k1,11051:23241844,29811549:189798 -k1,11051:26640285,29811549:189798 -k1,11051:28224035,29811549:189799 -(1,11051:28224035,29811549:0,452978,115847 -r1,11093:30692572,29811549:2468537,568825,115847 -k1,11051:28224035,29811549:-2468537 -) -(1,11051:28224035,29811549:2468537,452978,115847 -k1,11051:28224035,29811549:3277 -h1,11051:30689295,29811549:0,411205,112570 -) -k1,11051:31056040,29811549:189798 -k1,11052:32583029,29811549:0 -) -(1,11052:6630773,30676629:25952256,513147,134348 -k1,11051:8298059,30676629:153404 -k1,11051:9067502,30676629:153405 -k1,11051:11852177,30676629:153404 -k1,11051:12657010,30676629:153405 -k1,11051:14508452,30676629:153404 -k1,11051:16397250,30676629:153405 -k1,11051:18252624,30676629:153404 -k1,11051:20198439,30676629:153405 -k1,11051:23551311,30676629:153404 -k1,11051:24475419,30676629:153405 -k1,11051:27701151,30676629:153404 -k1,11051:29476572,30676629:153405 -k1,11051:30377742,30676629:153404 -k1,11051:32583029,30676629:0 -) -(1,11052:6630773,31541709:25952256,426639,126483 -g1,11051:7481430,31541709 -g1,11051:10961391,31541709 -(1,11051:10961391,31541709:0,414482,115847 -r1,11093:13078216,31541709:2116825,530329,115847 -k1,11051:10961391,31541709:-2116825 -) -(1,11051:10961391,31541709:2116825,414482,115847 -k1,11051:10961391,31541709:3277 -h1,11051:13074939,31541709:0,411205,112570 -) -k1,11052:32583028,31541709:19452384 -g1,11052:32583028,31541709 -) -v1,11054:6630773,32226564:0,393216,0 -(1,11062:6630773,33965085:25952256,2131737,196608 -g1,11062:6630773,33965085 -g1,11062:6630773,33965085 -g1,11062:6434165,33965085 -(1,11062:6434165,33965085:0,2131737,196608 -r1,11093:32779637,33965085:26345472,2328345,196608 -k1,11062:6434165,33965085:-26345472 -) -(1,11062:6434165,33965085:26345472,2131737,196608 -[1,11062:6630773,33965085:25952256,1935129,0 -(1,11056:6630773,32454395:25952256,424439,106246 -(1,11055:6630773,32454395:0,0,0 -g1,11055:6630773,32454395 -g1,11055:6630773,32454395 -g1,11055:6303093,32454395 -(1,11055:6303093,32454395:0,0,0 -) -g1,11055:6630773,32454395 -) -k1,11056:6630773,32454395:0 -g1,11056:10614221,32454395 -g1,11056:12937899,32454395 -g1,11056:13601807,32454395 -g1,11056:14597669,32454395 -g1,11056:15925485,32454395 -g1,11056:16589393,32454395 -h1,11056:18249163,32454395:0,0,0 -k1,11056:32583029,32454395:14333866 -g1,11056:32583029,32454395 -) -(1,11061:6630773,33270322:25952256,424439,6605 -(1,11058:6630773,33270322:0,0,0 -g1,11058:6630773,33270322 -g1,11058:6630773,33270322 -g1,11058:6303093,33270322 -(1,11058:6303093,33270322:0,0,0 -) -g1,11058:6630773,33270322 -) -g1,11061:7626635,33270322 -g1,11061:8954451,33270322 -g1,11061:9618359,33270322 -g1,11061:10946175,33270322 -h1,11061:11278129,33270322:0,0,0 -k1,11061:32583029,33270322:21304900 -g1,11061:32583029,33270322 -) -(1,11061:6630773,33955177:25952256,407923,9908 -h1,11061:6630773,33955177:0,0,0 -g1,11061:7626635,33955177 -g1,11061:7958589,33955177 -g1,11061:9618359,33955177 -g1,11061:9950313,33955177 -h1,11061:11278129,33955177:0,0,0 -k1,11061:32583029,33955177:21304900 -g1,11061:32583029,33955177 -) -] -) -g1,11062:32583029,33965085 -g1,11062:6630773,33965085 -g1,11062:6630773,33965085 -g1,11062:32583029,33965085 -g1,11062:32583029,33965085 -) -h1,11062:6630773,34161693:0,0,0 -v1,11066:6630773,35026773:0,393216,0 -(1,11067:6630773,36172193:25952256,1538636,0 -g1,11067:6630773,36172193 -g1,11067:6237557,36172193 -r1,11093:6368629,36172193:131072,1538636,0 -g1,11067:6567858,36172193 -g1,11067:6764466,36172193 -[1,11067:6764466,36172193:25818563,1538636,0 -(1,11067:6764466,35299250:25818563,665693,196608 -(1,11066:6764466,35299250:0,665693,196608 -r1,11093:7868133,35299250:1103667,862301,196608 -k1,11066:6764466,35299250:-1103667 -) -(1,11066:6764466,35299250:1103667,665693,196608 -) -k1,11066:8020123,35299250:151990 -k1,11066:9746341,35299250:327680 -k1,11066:11148103,35299250:151990 -k1,11066:12319178,35299250:151990 -k1,11066:15132585,35299250:151990 -k1,11066:17139899,35299250:151990 -k1,11066:18016717,35299250:151990 -k1,11066:19453213,35299250:151990 -k1,11066:20063300,35299250:151990 -k1,11066:23333493,35299250:151990 -k1,11066:24689379,35299250:151990 -k1,11066:26909685,35299250:151990 -k1,11066:29388858,35299250:151990 -k1,11066:30200140,35299250:151990 -k1,11066:32583029,35299250:0 -) -(1,11067:6764466,36164330:25818563,355205,7863 -k1,11067:32583029,36164330:23697818 -g1,11067:32583029,36164330 -) -] -g1,11067:32583029,36172193 -) -h1,11067:6630773,36172193:0,0,0 -v1,11070:6630773,37037273:0,393216,0 -(1,11071:6630773,39210079:25952256,2566022,0 -g1,11071:6630773,39210079 -g1,11071:6237557,39210079 -r1,11093:6368629,39210079:131072,2566022,0 -g1,11071:6567858,39210079 -g1,11071:6764466,39210079 -[1,11071:6764466,39210079:25818563,2566022,0 -(1,11071:6764466,37345571:25818563,701514,196608 -(1,11070:6764466,37345571:0,701514,196608 -r1,11093:8471973,37345571:1707507,898122,196608 -k1,11070:6764466,37345571:-1707507 -) -(1,11070:6764466,37345571:1707507,701514,196608 -) -k1,11070:8729778,37345571:257805 -k1,11070:10455996,37345571:327680 -k1,11070:11531690,37345571:257805 -k1,11070:14879518,37345571:257805 -k1,11070:17166318,37345571:257805 -k1,11070:18292475,37345571:257805 -k1,11070:19654562,37345571:257805 -k1,11070:21349571,37345571:257804 -k1,11070:25010005,37345571:257805 -k1,11070:26029338,37345571:257805 -k1,11070:28025158,37345571:257805 -k1,11070:28934391,37345571:257805 -k1,11070:30211281,37345571:257805 -k1,11070:32583029,37345571:0 -) -(1,11071:6764466,38210651:25818563,513147,134348 -k1,11070:9931439,38210651:297807 -k1,11070:11455424,38210651:297806 -k1,11070:12923704,38210651:297807 -k1,11070:15018507,38210651:297806 -k1,11070:16613272,38210651:297807 -k1,11070:20191810,38210651:297806 -k1,11070:22557933,38210651:297807 -k1,11070:23515031,38210651:297806 -k1,11070:25605248,38210651:297807 -k1,11070:28928851,38210651:297806 -k1,11070:30218218,38210651:297807 -k1,11070:31966991,38210651:297806 -k1,11070:32583029,38210651:0 -) -(1,11071:6764466,39075731:25818563,513147,134348 -g1,11070:10396471,39075731 -g1,11070:13949833,39075731 -g1,11070:15503036,39075731 -g1,11070:18252926,39075731 -g1,11070:19399806,39075731 -g1,11070:20013878,39075731 -g1,11070:22352202,39075731 -k1,11071:32583029,39075731:8435796 -g1,11071:32583029,39075731 -) -] -g1,11071:32583029,39210079 -) -h1,11071:6630773,39210079:0,0,0 -(1,11074:6630773,40075159:25952256,513147,134348 -h1,11073:6630773,40075159:983040,0,0 -k1,11073:8283110,40075159:191540 -k1,11073:9493735,40075159:191540 -k1,11073:12380771,40075159:191540 -k1,11073:14944058,40075159:191539 -k1,11073:17476544,40075159:191540 -k1,11073:18023944,40075159:191540 -k1,11073:19895827,40075159:191540 -k1,11073:20746659,40075159:191540 -k1,11073:21957284,40075159:191540 -k1,11073:23802297,40075159:191540 -k1,11073:26007103,40075159:191540 -k1,11073:26884804,40075159:191539 -k1,11073:27864742,40075159:191540 -k1,11073:29938476,40075159:191540 -k1,11073:31563944,40075159:191540 -k1,11073:32583029,40075159:0 -) -(1,11074:6630773,40940239:25952256,513147,126483 -k1,11073:10563650,40940239:257618 -k1,11073:11480560,40940239:257618 -k1,11073:12757263,40940239:257618 -k1,11073:14695223,40940239:257617 -k1,11073:17731568,40940239:257618 -k1,11073:18750714,40940239:257618 -(1,11073:18750714,40940239:0,452978,115847 -r1,11093:21219251,40940239:2468537,568825,115847 -k1,11073:18750714,40940239:-2468537 -) -(1,11073:18750714,40940239:2468537,452978,115847 -k1,11073:18750714,40940239:3277 -h1,11073:21215974,40940239:0,411205,112570 -) -k1,11073:21476869,40940239:257618 -k1,11073:22726047,40940239:257618 -k1,11073:24002750,40940239:257618 -k1,11073:25913841,40940239:257618 -k1,11073:26857620,40940239:257617 -k1,11073:28859151,40940239:257618 -k1,11073:29776061,40940239:257618 -k1,11073:30822077,40940239:257618 -k1,11073:32583029,40940239:0 -) -(1,11074:6630773,41805319:25952256,513147,134348 -k1,11073:8688930,41805319:266403 -k1,11073:9974418,41805319:266403 -k1,11073:12701043,41805319:266403 -k1,11073:15662942,41805319:266403 -(1,11073:15662942,41805319:0,452978,115847 -r1,11093:16724631,41805319:1061689,568825,115847 -k1,11073:15662942,41805319:-1061689 -) -(1,11073:15662942,41805319:1061689,452978,115847 -k1,11073:15662942,41805319:3277 -h1,11073:16721354,41805319:0,411205,112570 -) -k1,11073:16991035,41805319:266404 -k1,11073:18541944,41805319:266403 -k1,11073:21149293,41805319:266403 -k1,11073:22204094,41805319:266403 -k1,11073:25542825,41805319:266403 -k1,11073:29474001,41805319:266403 -k1,11073:32583029,41805319:0 -) -(1,11074:6630773,42670399:25952256,513147,134348 -g1,11073:7849087,42670399 -g1,11073:11802218,42670399 -g1,11073:12660739,42670399 -g1,11073:15018724,42670399 -g1,11073:17507126,42670399 -k1,11074:32583029,42670399:13314951 -g1,11074:32583029,42670399 -) -v1,11076:6630773,43355254:0,393216,0 -(1,11093:6630773,45163689:25952256,2201651,196608 -g1,11093:6630773,45163689 -g1,11093:6630773,45163689 -g1,11093:6434165,45163689 -(1,11093:6434165,45163689:0,2201651,196608 -r1,11093:32779637,45163689:26345472,2398259,196608 -k1,11093:6434165,45163689:-26345472 -) -(1,11093:6434165,45163689:26345472,2201651,196608 -[1,11093:6630773,45163689:25952256,2005043,0 -(1,11078:6630773,43583085:25952256,424439,106246 -(1,11077:6630773,43583085:0,0,0 -g1,11077:6630773,43583085 -g1,11077:6630773,43583085 -g1,11077:6303093,43583085 -(1,11077:6303093,43583085:0,0,0 -) -g1,11077:6630773,43583085 -) -g1,11078:7294681,43583085 -g1,11078:8290543,43583085 -g1,11078:10946175,43583085 -g1,11078:11610083,43583085 -g1,11078:13601807,43583085 -g1,11078:15925485,43583085 -g1,11078:16589393,43583085 -g1,11078:17585255,43583085 -g1,11078:18913071,43583085 -g1,11078:19576979,43583085 -h1,11078:20240887,43583085:0,0,0 -k1,11078:32583029,43583085:12342142 -g1,11078:32583029,43583085 -) -(1,11079:6630773,44267940:25952256,424439,79822 -h1,11079:6630773,44267940:0,0,0 -k1,11079:6630773,44267940:0 -h1,11079:8622497,44267940:0,0,0 -k1,11079:32583029,44267940:23960532 -g1,11079:32583029,44267940 -) -(1,11083:6630773,45083867:25952256,424439,79822 -(1,11081:6630773,45083867:0,0,0 -g1,11081:6630773,45083867 -g1,11081:6630773,45083867 -g1,11081:6303093,45083867 -(1,11081:6303093,45083867:0,0,0 -) -g1,11081:6630773,45083867 -) -g1,11083:7626635,45083867 -g1,11083:8954451,45083867 -g1,11083:9618359,45083867 -h1,11083:9950313,45083867:0,0,0 -k1,11083:32583029,45083867:22632716 -g1,11083:32583029,45083867 -) -] -) -g1,11093:32583029,45163689 -g1,11093:6630773,45163689 -g1,11093:6630773,45163689 -g1,11093:32583029,45163689 -g1,11093:32583029,45163689 -) -] -(1,11093:32583029,45706769:0,0,0 -g1,11093:32583029,45706769 -) -) -] -(1,11093:6630773,47279633:25952256,0,0 -h1,11093:6630773,47279633:25952256,0,0 -) -] -(1,11093:4262630,4025873:0,0,0 -[1,11093:-473656,4025873:0,0,0 -(1,11093:-473656,-710413:0,0,0 -(1,11093:-473656,-710413:0,0,0 -g1,11093:-473656,-710413 -) -g1,11093:-473656,-710413 -) -] -) -] -!27797 -}172 -Input:1806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1808:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,11025:6630773,13954611:25952256,513147,134348 +(1,11024:6630773,13954611:0,414482,115847 +r1,11092:8747598,13954611:2116825,530329,115847 +k1,11024:6630773,13954611:-2116825 +) +(1,11024:6630773,13954611:2116825,414482,115847 +k1,11024:6630773,13954611:3277 +h1,11024:8744321,13954611:0,411205,112570 +) +k1,11024:8902043,13954611:154445 +k1,11024:12630823,13954611:154446 +k1,11024:14221817,13954611:154445 +k1,11024:16261733,13954611:154445 +k1,11024:18670618,13954611:154446 +k1,11024:19844148,13954611:154445 +k1,11024:22694089,13954611:154445 +k1,11024:23980997,13954611:154446 +k1,11024:24883208,13954611:154445 +k1,11024:27583071,13954611:154445 +k1,11024:29849087,13954611:154446 +k1,11024:31107814,13954611:154445 +k1,11024:32583029,13954611:0 +) +(1,11025:6630773,14819691:25952256,505283,134348 +k1,11024:8582489,14819691:199939 +k1,11024:12457688,14819691:199940 +k1,11024:13889704,14819691:199939 +k1,11024:16074729,14819691:199939 +h1,11024:17045317,14819691:0,0,0 +k1,11024:17245256,14819691:199939 +k1,11024:18254566,14819691:199940 +k1,11024:19952658,14819691:199939 +h1,11024:20749576,14819691:0,0,0 +k1,11024:21330279,14819691:199939 +k1,11024:22721663,14819691:199939 +k1,11024:27146709,14819691:199940 +k1,11024:28996845,14819691:199939 +k1,11024:31955194,14819691:199939 +k1,11024:32583029,14819691:0 +) +(1,11025:6630773,15684771:25952256,513147,126483 +k1,11024:7835106,15684771:185248 +k1,11024:9387436,15684771:185249 +k1,11024:10231976,15684771:185248 +k1,11024:12397067,15684771:185248 +k1,11024:13976266,15684771:185248 +k1,11024:15811712,15684771:185249 +k1,11024:17439407,15684771:185248 +k1,11024:18797094,15684771:185248 +k1,11024:22831271,15684771:185248 +k1,11024:23474617,15684771:185249 +k1,11024:24191362,15684771:185248 +k1,11024:27006570,15684771:185248 +k1,11024:28383263,15684771:185248 +k1,11024:29672794,15684771:185249 +k1,11024:30605808,15684771:185248 +k1,11024:32583029,15684771:0 +) +(1,11025:6630773,16549851:25952256,513147,134348 +g1,11024:7481430,16549851 +g1,11024:9444233,16549851 +g1,11024:12669259,16549851 +g1,11024:14255885,16549851 +g1,11024:17126361,16549851 +g1,11024:19910330,16549851 +g1,11024:20722321,16549851 +k1,11025:32583029,16549851:10317991 +g1,11025:32583029,16549851 +) +v1,11027:6630773,17414931:0,393216,0 +(1,11028:6630773,20487195:25952256,3465480,0 +g1,11028:6630773,20487195 +g1,11028:6237557,20487195 +r1,11092:6368629,20487195:131072,3465480,0 +g1,11028:6567858,20487195 +g1,11028:6764466,20487195 +[1,11028:6764466,20487195:25818563,3465480,0 +(1,11028:6764466,17776108:25818563,754393,260573 +(1,11027:6764466,17776108:0,754393,260573 +r1,11092:7856192,17776108:1091726,1014966,260573 +k1,11027:6764466,17776108:-1091726 +) +(1,11027:6764466,17776108:1091726,754393,260573 +) +k1,11027:8040255,17776108:184063 +k1,11027:8367935,17776108:327680 +k1,11027:9748685,17776108:184063 +k1,11027:13125663,17776108:184064 +k1,11027:14946816,17776108:184063 +k1,11027:15790171,17776108:184063 +k1,11027:16993319,17776108:184063 +k1,11027:19264705,17776108:184064 +k1,11027:20131653,17776108:184063 +k1,11027:21965257,17776108:184063 +k1,11027:24354607,17776108:184063 +k1,11027:25224833,17776108:184064 +k1,11027:28481224,17776108:184063 +k1,11027:29316715,17776108:184063 +k1,11028:32583029,17776108:0 +) +(1,11028:6764466,18641188:25818563,513147,134348 +(1,11027:6764466,18641188:0,414482,115847 +r1,11092:7122732,18641188:358266,530329,115847 +k1,11027:6764466,18641188:-358266 +) +(1,11027:6764466,18641188:358266,414482,115847 +k1,11027:6764466,18641188:3277 +h1,11027:7119455,18641188:0,411205,112570 +) +k1,11027:7327313,18641188:204581 +k1,11027:8191187,18641188:204582 +k1,11027:10188178,18641188:204581 +k1,11027:13418556,18641188:204581 +k1,11027:14614697,18641188:204581 +k1,11027:17024566,18641188:204582 +k1,11027:17915309,18641188:204581 +k1,11027:18475750,18641188:204581 +k1,11027:21855551,18641188:204582 +k1,11027:25132460,18641188:204581 +k1,11027:25988469,18641188:204581 +k1,11027:27212135,18641188:204581 +k1,11027:28722850,18641188:204582 +k1,11027:31056040,18641188:204581 +k1,11028:32583029,18641188:0 +) +(1,11028:6764466,19506268:25818563,513147,134348 +k1,11027:8851415,19506268:227037 +k1,11027:9737745,19506268:227038 +k1,11027:10983867,19506268:227037 +k1,11027:13582652,19506268:227037 +k1,11027:16678855,19506268:227037 +k1,11027:17975441,19506268:227038 +k1,11027:19578079,19506268:227037 +k1,11027:21497256,19506268:227037 +k1,11027:22139109,19506268:227010 +k1,11027:25391943,19506268:227037 +k1,11027:26723262,19506268:227037 +k1,11027:27698065,19506268:227037 +k1,11027:30130390,19506268:227038 +k1,11027:31043589,19506268:227037 +k1,11028:32583029,19506268:0 +) +(1,11028:6764466,20371348:25818563,426639,115847 +g1,11027:8602750,20371348 +g1,11027:9453407,20371348 +(1,11027:9453407,20371348:0,414482,115847 +r1,11092:10515096,20371348:1061689,530329,115847 +k1,11027:9453407,20371348:-1061689 +) +(1,11027:9453407,20371348:1061689,414482,115847 +k1,11027:9453407,20371348:3277 +h1,11027:10511819,20371348:0,411205,112570 +) +k1,11028:32583028,20371348:22015504 +g1,11028:32583028,20371348 +) +] +g1,11028:32583029,20487195 +) +h1,11028:6630773,20487195:0,0,0 +(1,11031:6630773,21352275:25952256,505283,134348 +h1,11030:6630773,21352275:983040,0,0 +k1,11030:9783727,21352275:138298 +(1,11030:9783727,21352275:0,435480,115847 +r1,11092:11197128,21352275:1413401,551327,115847 +k1,11030:9783727,21352275:-1413401 +) +(1,11030:9783727,21352275:1413401,435480,115847 +k1,11030:9783727,21352275:3277 +h1,11030:11193851,21352275:0,411205,112570 +) +k1,11030:11335427,21352275:138299 +k1,11030:15265638,21352275:138298 +k1,11030:16801820,21352275:138299 +k1,11030:18072580,21352275:138298 +k1,11030:18958645,21352275:138299 +k1,11030:20610169,21352275:138298 +k1,11030:21364506,21352275:138299 +k1,11030:24668193,21352275:138298 +k1,11030:27125811,21352275:138299 +k1,11030:29332425,21352275:138298 +k1,11030:31189078,21352275:138299 +k1,11030:32583029,21352275:0 +) +(1,11031:6630773,22217355:25952256,505283,134348 +k1,11030:11477458,22217355:191663 +k1,11030:13135817,22217355:191663 +k1,11030:14725363,22217355:191663 +k1,11030:16108471,22217355:191663 +k1,11030:17998172,22217355:191663 +k1,11030:19925228,22217355:191663 +k1,11030:22850398,22217355:191663 +k1,11030:23658099,22217355:191663 +k1,11030:25046449,22217355:191663 +k1,11030:26627475,22217355:191663 +k1,11030:29373731,22217355:191663 +k1,11031:32583029,22217355:0 +k1,11031:32583029,22217355:0 +) +v1,11033:6630773,22902210:0,393216,0 +(1,11047:6630773,28749861:25952256,6240867,196608 +g1,11047:6630773,28749861 +g1,11047:6630773,28749861 +g1,11047:6434165,28749861 +(1,11047:6434165,28749861:0,6240867,196608 +r1,11092:32779637,28749861:26345472,6437475,196608 +k1,11047:6434165,28749861:-26345472 +) +(1,11047:6434165,28749861:26345472,6240867,196608 +[1,11047:6630773,28749861:25952256,6044259,0 +(1,11035:6630773,23130041:25952256,424439,86428 +(1,11034:6630773,23130041:0,0,0 +g1,11034:6630773,23130041 +g1,11034:6630773,23130041 +g1,11034:6303093,23130041 +(1,11034:6303093,23130041:0,0,0 +) +g1,11034:6630773,23130041 +) +g1,11035:8290543,23130041 +g1,11035:9286405,23130041 +g1,11035:14597669,23130041 +g1,11035:16257439,23130041 +g1,11035:16921347,23130041 +g1,11035:18249163,23130041 +g1,11035:19245025,23130041 +g1,11035:19908933,23130041 +g1,11035:21236749,23130041 +g1,11035:22896519,23130041 +g1,11035:23560427,23130041 +h1,11035:24224335,23130041:0,0,0 +k1,11035:32583029,23130041:8358694 +g1,11035:32583029,23130041 +) +(1,11036:6630773,23814896:25952256,424439,112852 +h1,11036:6630773,23814896:0,0,0 +g1,11036:8290543,23814896 +g1,11036:9286405,23814896 +g1,11036:13269853,23814896 +g1,11036:15593531,23814896 +g1,11036:16257439,23814896 +h1,11036:16921347,23814896:0,0,0 +k1,11036:32583029,23814896:15661682 +g1,11036:32583029,23814896 +) +(1,11037:6630773,24499751:25952256,424439,79822 +h1,11037:6630773,24499751:0,0,0 +g1,11037:11610082,24499751 +g1,11037:12605944,24499751 +g1,11037:13269852,24499751 +g1,11037:14597668,24499751 +g1,11037:15925484,24499751 +g1,11037:17253300,24499751 +g1,11037:19576978,24499751 +k1,11037:19576978,24499751:0 +h1,11037:21236748,24499751:0,0,0 +k1,11037:32583029,24499751:11346281 +g1,11037:32583029,24499751 +) +(1,11038:6630773,25184606:25952256,424439,106246 +h1,11038:6630773,25184606:0,0,0 +g1,11038:6962727,25184606 +g1,11038:7294681,25184606 +g1,11038:13269853,25184606 +g1,11038:18249163,25184606 +g1,11038:22564565,25184606 +k1,11038:22564565,25184606:0 +h1,11038:27211920,25184606:0,0,0 +k1,11038:32583029,25184606:5371109 +g1,11038:32583029,25184606 +) +(1,11039:6630773,25869461:25952256,407923,6605 +h1,11039:6630773,25869461:0,0,0 +h1,11039:7958589,25869461:0,0,0 +k1,11039:32583029,25869461:24624440 +g1,11039:32583029,25869461 +) +(1,11046:6630773,26685388:25952256,424439,6605 +(1,11041:6630773,26685388:0,0,0 +g1,11041:6630773,26685388 +g1,11041:6630773,26685388 +g1,11041:6303093,26685388 +(1,11041:6303093,26685388:0,0,0 +) +g1,11041:6630773,26685388 +) +g1,11046:7626635,26685388 +g1,11046:7958589,26685388 +g1,11046:8290543,26685388 +g1,11046:8622497,26685388 +g1,11046:8954451,26685388 +g1,11046:9286405,26685388 +g1,11046:9618359,26685388 +g1,11046:10946175,26685388 +g1,11046:11610083,26685388 +g1,11046:12937899,26685388 +h1,11046:13269853,26685388:0,0,0 +k1,11046:32583029,26685388:19313176 +g1,11046:32583029,26685388 +) +(1,11046:6630773,27370243:25952256,407923,9908 +h1,11046:6630773,27370243:0,0,0 +g1,11046:7626635,27370243 +g1,11046:8954451,27370243 +g1,11046:9618359,27370243 +g1,11046:9950313,27370243 +g1,11046:11610083,27370243 +g1,11046:11942037,27370243 +h1,11046:13269853,27370243:0,0,0 +k1,11046:32583029,27370243:19313176 +g1,11046:32583029,27370243 +) +(1,11046:6630773,28055098:25952256,407923,9908 +h1,11046:6630773,28055098:0,0,0 +g1,11046:7626635,28055098 +g1,11046:8954451,28055098 +g1,11046:9618359,28055098 +g1,11046:9950313,28055098 +g1,11046:10282267,28055098 +g1,11046:11610083,28055098 +g1,11046:11942037,28055098 +h1,11046:13269853,28055098:0,0,0 +k1,11046:32583029,28055098:19313176 +g1,11046:32583029,28055098 +) +(1,11046:6630773,28739953:25952256,407923,9908 +h1,11046:6630773,28739953:0,0,0 +g1,11046:7626635,28739953 +g1,11046:8954451,28739953 +g1,11046:9618359,28739953 +g1,11046:9950313,28739953 +g1,11046:11610083,28739953 +g1,11046:11942037,28739953 +g1,11046:12273991,28739953 +h1,11046:13269853,28739953:0,0,0 +k1,11046:32583029,28739953:19313176 +g1,11046:32583029,28739953 +) +] +) +g1,11047:32583029,28749861 +g1,11047:6630773,28749861 +g1,11047:6630773,28749861 +g1,11047:32583029,28749861 +g1,11047:32583029,28749861 +) +h1,11047:6630773,28946469:0,0,0 +(1,11051:6630773,29811549:25952256,513147,126483 +h1,11050:6630773,29811549:983040,0,0 +k1,11050:10308397,29811549:189798 +k1,11050:11388174,29811549:189798 +k1,11050:12988963,29811549:189799 +k1,11050:15247077,29811549:189798 +k1,11050:16096167,29811549:189798 +k1,11050:19019472,29811549:189798 +k1,11050:20313553,29811549:189799 +k1,11050:21251117,29811549:189798 +k1,11050:23241844,29811549:189798 +k1,11050:26640285,29811549:189798 +k1,11050:28224035,29811549:189799 +(1,11050:28224035,29811549:0,452978,115847 +r1,11092:30692572,29811549:2468537,568825,115847 +k1,11050:28224035,29811549:-2468537 +) +(1,11050:28224035,29811549:2468537,452978,115847 +k1,11050:28224035,29811549:3277 +h1,11050:30689295,29811549:0,411205,112570 +) +k1,11050:31056040,29811549:189798 +k1,11051:32583029,29811549:0 +) +(1,11051:6630773,30676629:25952256,513147,134348 +k1,11050:8298059,30676629:153404 +k1,11050:9067502,30676629:153405 +k1,11050:11852177,30676629:153404 +k1,11050:12657010,30676629:153405 +k1,11050:14508452,30676629:153404 +k1,11050:16397250,30676629:153405 +k1,11050:18252624,30676629:153404 +k1,11050:20198439,30676629:153405 +k1,11050:23551311,30676629:153404 +k1,11050:24475419,30676629:153405 +k1,11050:27701151,30676629:153404 +k1,11050:29476572,30676629:153405 +k1,11050:30377742,30676629:153404 +k1,11050:32583029,30676629:0 +) +(1,11051:6630773,31541709:25952256,426639,126483 +g1,11050:7481430,31541709 +g1,11050:10961391,31541709 +(1,11050:10961391,31541709:0,414482,115847 +r1,11092:13078216,31541709:2116825,530329,115847 +k1,11050:10961391,31541709:-2116825 +) +(1,11050:10961391,31541709:2116825,414482,115847 +k1,11050:10961391,31541709:3277 +h1,11050:13074939,31541709:0,411205,112570 +) +k1,11051:32583028,31541709:19452384 +g1,11051:32583028,31541709 +) +v1,11053:6630773,32226564:0,393216,0 +(1,11061:6630773,33965085:25952256,2131737,196608 +g1,11061:6630773,33965085 +g1,11061:6630773,33965085 +g1,11061:6434165,33965085 +(1,11061:6434165,33965085:0,2131737,196608 +r1,11092:32779637,33965085:26345472,2328345,196608 +k1,11061:6434165,33965085:-26345472 +) +(1,11061:6434165,33965085:26345472,2131737,196608 +[1,11061:6630773,33965085:25952256,1935129,0 +(1,11055:6630773,32454395:25952256,424439,106246 +(1,11054:6630773,32454395:0,0,0 +g1,11054:6630773,32454395 +g1,11054:6630773,32454395 +g1,11054:6303093,32454395 +(1,11054:6303093,32454395:0,0,0 +) +g1,11054:6630773,32454395 +) +k1,11055:6630773,32454395:0 +g1,11055:10614221,32454395 +g1,11055:12937899,32454395 +g1,11055:13601807,32454395 +g1,11055:14597669,32454395 +g1,11055:15925485,32454395 +g1,11055:16589393,32454395 +h1,11055:18249163,32454395:0,0,0 +k1,11055:32583029,32454395:14333866 +g1,11055:32583029,32454395 +) +(1,11060:6630773,33270322:25952256,424439,6605 +(1,11057:6630773,33270322:0,0,0 +g1,11057:6630773,33270322 +g1,11057:6630773,33270322 +g1,11057:6303093,33270322 +(1,11057:6303093,33270322:0,0,0 +) +g1,11057:6630773,33270322 +) +g1,11060:7626635,33270322 +g1,11060:8954451,33270322 +g1,11060:9618359,33270322 +g1,11060:10946175,33270322 +h1,11060:11278129,33270322:0,0,0 +k1,11060:32583029,33270322:21304900 +g1,11060:32583029,33270322 +) +(1,11060:6630773,33955177:25952256,407923,9908 +h1,11060:6630773,33955177:0,0,0 +g1,11060:7626635,33955177 +g1,11060:7958589,33955177 +g1,11060:9618359,33955177 +g1,11060:9950313,33955177 +h1,11060:11278129,33955177:0,0,0 +k1,11060:32583029,33955177:21304900 +g1,11060:32583029,33955177 +) +] +) +g1,11061:32583029,33965085 +g1,11061:6630773,33965085 +g1,11061:6630773,33965085 +g1,11061:32583029,33965085 +g1,11061:32583029,33965085 +) +h1,11061:6630773,34161693:0,0,0 +v1,11065:6630773,35026773:0,393216,0 +(1,11066:6630773,36172193:25952256,1538636,0 +g1,11066:6630773,36172193 +g1,11066:6237557,36172193 +r1,11092:6368629,36172193:131072,1538636,0 +g1,11066:6567858,36172193 +g1,11066:6764466,36172193 +[1,11066:6764466,36172193:25818563,1538636,0 +(1,11066:6764466,35299250:25818563,665693,196608 +(1,11065:6764466,35299250:0,665693,196608 +r1,11092:7868133,35299250:1103667,862301,196608 +k1,11065:6764466,35299250:-1103667 +) +(1,11065:6764466,35299250:1103667,665693,196608 +) +k1,11065:8020123,35299250:151990 +k1,11065:9746341,35299250:327680 +k1,11065:11148103,35299250:151990 +k1,11065:12319178,35299250:151990 +k1,11065:15132585,35299250:151990 +k1,11065:17139899,35299250:151990 +k1,11065:18016717,35299250:151990 +k1,11065:19453213,35299250:151990 +k1,11065:20063300,35299250:151990 +k1,11065:23333493,35299250:151990 +k1,11065:24689379,35299250:151990 +k1,11065:26909685,35299250:151990 +k1,11065:29388858,35299250:151990 +k1,11065:30200140,35299250:151990 +k1,11065:32583029,35299250:0 +) +(1,11066:6764466,36164330:25818563,355205,7863 +k1,11066:32583029,36164330:23697818 +g1,11066:32583029,36164330 +) +] +g1,11066:32583029,36172193 +) +h1,11066:6630773,36172193:0,0,0 +v1,11069:6630773,37037273:0,393216,0 +(1,11070:6630773,39210079:25952256,2566022,0 +g1,11070:6630773,39210079 +g1,11070:6237557,39210079 +r1,11092:6368629,39210079:131072,2566022,0 +g1,11070:6567858,39210079 +g1,11070:6764466,39210079 +[1,11070:6764466,39210079:25818563,2566022,0 +(1,11070:6764466,37345571:25818563,701514,196608 +(1,11069:6764466,37345571:0,701514,196608 +r1,11092:8471973,37345571:1707507,898122,196608 +k1,11069:6764466,37345571:-1707507 +) +(1,11069:6764466,37345571:1707507,701514,196608 +) +k1,11069:8729778,37345571:257805 +k1,11069:10455996,37345571:327680 +k1,11069:11531690,37345571:257805 +k1,11069:14879518,37345571:257805 +k1,11069:17166318,37345571:257805 +k1,11069:18292475,37345571:257805 +k1,11069:19654562,37345571:257805 +k1,11069:21349571,37345571:257804 +k1,11069:25010005,37345571:257805 +k1,11069:26029338,37345571:257805 +k1,11069:28025158,37345571:257805 +k1,11069:28934391,37345571:257805 +k1,11069:30211281,37345571:257805 +k1,11069:32583029,37345571:0 +) +(1,11070:6764466,38210651:25818563,513147,134348 +k1,11069:9931439,38210651:297807 +k1,11069:11455424,38210651:297806 +k1,11069:12923704,38210651:297807 +k1,11069:15018507,38210651:297806 +k1,11069:16613272,38210651:297807 +k1,11069:20191810,38210651:297806 +k1,11069:22557933,38210651:297807 +k1,11069:23515031,38210651:297806 +k1,11069:25605248,38210651:297807 +k1,11069:28928851,38210651:297806 +k1,11069:30218218,38210651:297807 +k1,11069:31966991,38210651:297806 +k1,11069:32583029,38210651:0 +) +(1,11070:6764466,39075731:25818563,513147,134348 +g1,11069:10396471,39075731 +g1,11069:13949833,39075731 +g1,11069:15503036,39075731 +g1,11069:18252926,39075731 +g1,11069:19399806,39075731 +g1,11069:20013878,39075731 +g1,11069:22352202,39075731 +k1,11070:32583029,39075731:8435796 +g1,11070:32583029,39075731 +) +] +g1,11070:32583029,39210079 +) +h1,11070:6630773,39210079:0,0,0 +(1,11073:6630773,40075159:25952256,513147,134348 +h1,11072:6630773,40075159:983040,0,0 +k1,11072:8283110,40075159:191540 +k1,11072:9493735,40075159:191540 +k1,11072:12380771,40075159:191540 +k1,11072:14944058,40075159:191539 +k1,11072:17476544,40075159:191540 +k1,11072:18023944,40075159:191540 +k1,11072:19895827,40075159:191540 +k1,11072:20746659,40075159:191540 +k1,11072:21957284,40075159:191540 +k1,11072:23802297,40075159:191540 +k1,11072:26007103,40075159:191540 +k1,11072:26884804,40075159:191539 +k1,11072:27864742,40075159:191540 +k1,11072:29938476,40075159:191540 +k1,11072:31563944,40075159:191540 +k1,11072:32583029,40075159:0 +) +(1,11073:6630773,40940239:25952256,513147,126483 +k1,11072:10563650,40940239:257618 +k1,11072:11480560,40940239:257618 +k1,11072:12757263,40940239:257618 +k1,11072:14695223,40940239:257617 +k1,11072:17731568,40940239:257618 +k1,11072:18750714,40940239:257618 +(1,11072:18750714,40940239:0,452978,115847 +r1,11092:21219251,40940239:2468537,568825,115847 +k1,11072:18750714,40940239:-2468537 +) +(1,11072:18750714,40940239:2468537,452978,115847 +k1,11072:18750714,40940239:3277 +h1,11072:21215974,40940239:0,411205,112570 +) +k1,11072:21476869,40940239:257618 +k1,11072:22726047,40940239:257618 +k1,11072:24002750,40940239:257618 +k1,11072:25913841,40940239:257618 +k1,11072:26857620,40940239:257617 +k1,11072:28859151,40940239:257618 +k1,11072:29776061,40940239:257618 +k1,11072:30822077,40940239:257618 +k1,11072:32583029,40940239:0 +) +(1,11073:6630773,41805319:25952256,513147,134348 +k1,11072:8688930,41805319:266403 +k1,11072:9974418,41805319:266403 +k1,11072:12701043,41805319:266403 +k1,11072:15662942,41805319:266403 +(1,11072:15662942,41805319:0,452978,115847 +r1,11092:16724631,41805319:1061689,568825,115847 +k1,11072:15662942,41805319:-1061689 +) +(1,11072:15662942,41805319:1061689,452978,115847 +k1,11072:15662942,41805319:3277 +h1,11072:16721354,41805319:0,411205,112570 +) +k1,11072:16991035,41805319:266404 +k1,11072:18541944,41805319:266403 +k1,11072:21149293,41805319:266403 +k1,11072:22204094,41805319:266403 +k1,11072:25542825,41805319:266403 +k1,11072:29474001,41805319:266403 +k1,11072:32583029,41805319:0 +) +(1,11073:6630773,42670399:25952256,513147,134348 +g1,11072:7849087,42670399 +g1,11072:11802218,42670399 +g1,11072:12660739,42670399 +g1,11072:15018724,42670399 +g1,11072:17507126,42670399 +k1,11073:32583029,42670399:13314951 +g1,11073:32583029,42670399 +) +v1,11075:6630773,43355254:0,393216,0 +(1,11092:6630773,45163689:25952256,2201651,196608 +g1,11092:6630773,45163689 +g1,11092:6630773,45163689 +g1,11092:6434165,45163689 +(1,11092:6434165,45163689:0,2201651,196608 +r1,11092:32779637,45163689:26345472,2398259,196608 +k1,11092:6434165,45163689:-26345472 +) +(1,11092:6434165,45163689:26345472,2201651,196608 +[1,11092:6630773,45163689:25952256,2005043,0 +(1,11077:6630773,43583085:25952256,424439,106246 +(1,11076:6630773,43583085:0,0,0 +g1,11076:6630773,43583085 +g1,11076:6630773,43583085 +g1,11076:6303093,43583085 +(1,11076:6303093,43583085:0,0,0 +) +g1,11076:6630773,43583085 +) +g1,11077:7294681,43583085 +g1,11077:8290543,43583085 +g1,11077:10946175,43583085 +g1,11077:11610083,43583085 +g1,11077:13601807,43583085 +g1,11077:15925485,43583085 +g1,11077:16589393,43583085 +g1,11077:17585255,43583085 +g1,11077:18913071,43583085 +g1,11077:19576979,43583085 +h1,11077:20240887,43583085:0,0,0 +k1,11077:32583029,43583085:12342142 +g1,11077:32583029,43583085 +) +(1,11078:6630773,44267940:25952256,424439,79822 +h1,11078:6630773,44267940:0,0,0 +k1,11078:6630773,44267940:0 +h1,11078:8622497,44267940:0,0,0 +k1,11078:32583029,44267940:23960532 +g1,11078:32583029,44267940 +) +(1,11082:6630773,45083867:25952256,424439,79822 +(1,11080:6630773,45083867:0,0,0 +g1,11080:6630773,45083867 +g1,11080:6630773,45083867 +g1,11080:6303093,45083867 +(1,11080:6303093,45083867:0,0,0 +) +g1,11080:6630773,45083867 +) +g1,11082:7626635,45083867 +g1,11082:8954451,45083867 +g1,11082:9618359,45083867 +h1,11082:9950313,45083867:0,0,0 +k1,11082:32583029,45083867:22632716 +g1,11082:32583029,45083867 +) +] +) +g1,11092:32583029,45163689 +g1,11092:6630773,45163689 +g1,11092:6630773,45163689 +g1,11092:32583029,45163689 +g1,11092:32583029,45163689 +) +] +(1,11092:32583029,45706769:0,0,0 +g1,11092:32583029,45706769 +) +) +] +(1,11092:6630773,47279633:25952256,0,0 +h1,11092:6630773,47279633:25952256,0,0 +) +] +(1,11092:4262630,4025873:0,0,0 +[1,11092:-473656,4025873:0,0,0 +(1,11092:-473656,-710413:0,0,0 +(1,11092:-473656,-710413:0,0,0 +g1,11092:-473656,-710413 +) +g1,11092:-473656,-710413 +) +] +) +] +!27748 +}173 Input:1809:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1810:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1811:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1812:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1817:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1818:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1819:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1817:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1818:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1819:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1820:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1821:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1822:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1823:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1824:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1825:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1826:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:1827:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1828:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1829:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1824:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1825:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1826:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1827:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1828:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:1829:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:1830:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1831:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1832:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -198744,40 +198924,43 @@ Input:1867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1868:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1869:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1870:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1871:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1872:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1873:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !5986 -{173 -[1,11201:4262630,47279633:28320399,43253760,0 -(1,11201:4262630,4025873:0,0,0 -[1,11201:-473656,4025873:0,0,0 -(1,11201:-473656,-710413:0,0,0 -(1,11201:-473656,-644877:0,0,0 -k1,11201:-473656,-644877:-65536 +{174 +[1,11200:4262630,47279633:28320399,43253760,0 +(1,11200:4262630,4025873:0,0,0 +[1,11200:-473656,4025873:0,0,0 +(1,11200:-473656,-710413:0,0,0 +(1,11200:-473656,-644877:0,0,0 +k1,11200:-473656,-644877:-65536 ) -(1,11201:-473656,4736287:0,0,0 -k1,11201:-473656,4736287:5209943 +(1,11200:-473656,4736287:0,0,0 +k1,11200:-473656,4736287:5209943 ) -g1,11201:-473656,-710413 +g1,11200:-473656,-710413 ) ] ) -[1,11201:6630773,47279633:25952256,43253760,0 -[1,11201:6630773,4812305:25952256,786432,0 -(1,11201:6630773,4812305:25952256,505283,134348 -(1,11201:6630773,4812305:25952256,505283,134348 -g1,11201:3078558,4812305 -[1,11201:3078558,4812305:0,0,0 -(1,11201:3078558,2439708:0,1703936,0 -k1,11201:1358238,2439708:-1720320 +[1,11200:6630773,47279633:25952256,43253760,0 +[1,11200:6630773,4812305:25952256,786432,0 +(1,11200:6630773,4812305:25952256,505283,134348 +(1,11200:6630773,4812305:25952256,505283,134348 +g1,11200:3078558,4812305 +[1,11200:3078558,4812305:0,0,0 +(1,11200:3078558,2439708:0,1703936,0 +k1,11200:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11201:2537886,2439708:1179648,16384,0 +r1,11200:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11201:3078558,1915420:16384,1179648,0 +r1,11200:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -198787,16 +198970,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11201:3078558,4812305:0,0,0 -(1,11201:3078558,2439708:0,1703936,0 -g1,11201:29030814,2439708 -g1,11201:36135244,2439708 +[1,11200:3078558,4812305:0,0,0 +(1,11200:3078558,2439708:0,1703936,0 +g1,11200:29030814,2439708 +g1,11200:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11201:36151628,1915420:16384,1179648,0 +r1,11200:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -198805,25 +198988,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11201:37855564,2439708:1179648,16384,0 +r1,11200:37855564,2439708:1179648,16384,0 ) ) -k1,11201:3078556,2439708:-34777008 +k1,11200:3078556,2439708:-34777008 ) ] -[1,11201:3078558,4812305:0,0,0 -(1,11201:3078558,49800853:0,16384,2228224 -k1,11201:1358238,49800853:-1720320 +[1,11200:3078558,4812305:0,0,0 +(1,11200:3078558,49800853:0,16384,2228224 +k1,11200:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11201:2537886,49800853:1179648,16384,0 +r1,11200:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11201:3078558,51504789:16384,1179648,0 +r1,11200:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -198833,16 +199016,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11201:3078558,4812305:0,0,0 -(1,11201:3078558,49800853:0,16384,2228224 -g1,11201:29030814,49800853 -g1,11201:36135244,49800853 +[1,11200:3078558,4812305:0,0,0 +(1,11200:3078558,49800853:0,16384,2228224 +g1,11200:29030814,49800853 +g1,11200:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11201:36151628,51504789:16384,1179648,0 +r1,11200:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -198851,1073 +199034,1073 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11201:37855564,49800853:1179648,16384,0 -) -) -k1,11201:3078556,49800853:-34777008 -) -] -g1,11201:6630773,4812305 -k1,11201:21678495,4812305:13852345 -g1,11201:23301166,4812305 -g1,11201:24088253,4812305 -g1,11201:28572226,4812305 -g1,11201:29981905,4812305 -) -) -] -[1,11201:6630773,45706769:25952256,40108032,0 -(1,11201:6630773,45706769:25952256,40108032,0 -(1,11201:6630773,45706769:0,0,0 -g1,11201:6630773,45706769 -) -[1,11201:6630773,45706769:25952256,40108032,0 -v1,11093:6630773,6254097:0,393216,0 -(1,11093:6630773,9229656:25952256,3368775,196608 -g1,11093:6630773,9229656 -g1,11093:6630773,9229656 -g1,11093:6434165,9229656 -(1,11093:6434165,9229656:0,3368775,196608 -r1,11201:32779637,9229656:26345472,3565383,196608 -k1,11093:6434165,9229656:-26345472 -) -(1,11093:6434165,9229656:26345472,3368775,196608 -[1,11093:6630773,9229656:25952256,3172167,0 -(1,11085:6630773,6349256:25952256,291767,0 -(1,11084:6630773,6349256:0,0,0 -g1,11084:6630773,6349256 -g1,11084:6630773,6349256 -g1,11084:6303093,6349256 -(1,11084:6303093,6349256:0,0,0 -) -g1,11084:6630773,6349256 -) -h1,11085:6962727,6349256:0,0,0 -k1,11085:32583029,6349256:25620302 -g1,11085:32583029,6349256 -) -(1,11092:6630773,7165183:25952256,424439,6605 -(1,11087:6630773,7165183:0,0,0 -g1,11087:6630773,7165183 -g1,11087:6630773,7165183 -g1,11087:6303093,7165183 -(1,11087:6303093,7165183:0,0,0 -) -g1,11087:6630773,7165183 -) -g1,11092:7626635,7165183 -g1,11092:7958589,7165183 -g1,11092:8290543,7165183 -g1,11092:8622497,7165183 -g1,11092:8954451,7165183 -g1,11092:9286405,7165183 -g1,11092:9618359,7165183 -g1,11092:10946175,7165183 -g1,11092:11610083,7165183 -g1,11092:12937899,7165183 -h1,11092:13269853,7165183:0,0,0 -k1,11092:32583029,7165183:19313176 -g1,11092:32583029,7165183 -) -(1,11092:6630773,7850038:25952256,407923,9908 -h1,11092:6630773,7850038:0,0,0 -g1,11092:7626635,7850038 -g1,11092:8954451,7850038 -g1,11092:9618359,7850038 -g1,11092:9950313,7850038 -g1,11092:11610083,7850038 -g1,11092:11942037,7850038 -h1,11092:13269853,7850038:0,0,0 -k1,11092:32583029,7850038:19313176 -g1,11092:32583029,7850038 -) -(1,11092:6630773,8534893:25952256,407923,9908 -h1,11092:6630773,8534893:0,0,0 -g1,11092:7626635,8534893 -g1,11092:8954451,8534893 -g1,11092:9618359,8534893 -g1,11092:9950313,8534893 -g1,11092:10282267,8534893 -g1,11092:11610083,8534893 -g1,11092:11942037,8534893 -h1,11092:13269853,8534893:0,0,0 -k1,11092:32583029,8534893:19313176 -g1,11092:32583029,8534893 -) -(1,11092:6630773,9219748:25952256,407923,9908 -h1,11092:6630773,9219748:0,0,0 -g1,11092:7626635,9219748 -g1,11092:8954451,9219748 -g1,11092:9618359,9219748 -g1,11092:9950313,9219748 -g1,11092:11610083,9219748 -g1,11092:11942037,9219748 -g1,11092:12273991,9219748 -h1,11092:13269853,9219748:0,0,0 -k1,11092:32583029,9219748:19313176 -g1,11092:32583029,9219748 -) -] -) -g1,11093:32583029,9229656 -g1,11093:6630773,9229656 -g1,11093:6630773,9229656 -g1,11093:32583029,9229656 -g1,11093:32583029,9229656 -) -h1,11093:6630773,9426264:0,0,0 -(1,11097:6630773,10291344:25952256,513147,134348 -h1,11096:6630773,10291344:983040,0,0 -k1,11096:10163021,10291344:166974 -(1,11096:10163021,10291344:0,435480,115847 -r1,11201:13686694,10291344:3523673,551327,115847 -k1,11096:10163021,10291344:-3523673 -) -(1,11096:10163021,10291344:3523673,435480,115847 -g1,11096:12628281,10291344 -g1,11096:13331705,10291344 -h1,11096:13683417,10291344:0,411205,112570 -) -k1,11096:13853668,10291344:166974 -k1,11096:14706804,10291344:166974 -k1,11096:16742209,10291344:166974 -k1,11096:19236366,10291344:166974 -k1,11096:20070495,10291344:166973 -(1,11096:20070495,10291344:0,435480,115847 -r1,11201:23594168,10291344:3523673,551327,115847 -k1,11096:20070495,10291344:-3523673 -) -(1,11096:20070495,10291344:3523673,435480,115847 -g1,11096:22535755,10291344 -g1,11096:23239179,10291344 -h1,11096:23590891,10291344:0,411205,112570 -) -k1,11096:23761142,10291344:166974 -k1,11096:24614278,10291344:166974 -k1,11096:26810247,10291344:166974 -k1,11096:28511419,10291344:166974 -k1,11096:29869838,10291344:166974 -k1,11096:32583029,10291344:0 -) -(1,11097:6630773,11156424:25952256,505283,126483 -g1,11096:7821562,11156424 -g1,11096:11580707,11156424 -g1,11096:12395974,11156424 -g1,11096:13614288,11156424 -g1,11096:16592244,11156424 -k1,11097:32583029,11156424:14084343 -g1,11097:32583029,11156424 -) -v1,11099:6630773,11841279:0,393216,0 -(1,11115:6630773,16581364:25952256,5133301,196608 -g1,11115:6630773,16581364 -g1,11115:6630773,16581364 -g1,11115:6434165,16581364 -(1,11115:6434165,16581364:0,5133301,196608 -r1,11201:32779637,16581364:26345472,5329909,196608 -k1,11115:6434165,16581364:-26345472 -) -(1,11115:6434165,16581364:26345472,5133301,196608 -[1,11115:6630773,16581364:25952256,4936693,0 -(1,11101:6630773,12069110:25952256,424439,106246 -(1,11100:6630773,12069110:0,0,0 -g1,11100:6630773,12069110 -g1,11100:6630773,12069110 -g1,11100:6303093,12069110 -(1,11100:6303093,12069110:0,0,0 -) -g1,11100:6630773,12069110 -) -g1,11101:7294681,12069110 -g1,11101:8290543,12069110 -g1,11101:10946175,12069110 -g1,11101:11610083,12069110 -g1,11101:13601807,12069110 -g1,11101:15925485,12069110 -g1,11101:16589393,12069110 -g1,11101:17585255,12069110 -g1,11101:18913071,12069110 -g1,11101:19576979,12069110 -h1,11101:20240887,12069110:0,0,0 -k1,11101:32583029,12069110:12342142 -g1,11101:32583029,12069110 -) -(1,11102:6630773,12753965:25952256,424439,79822 -h1,11102:6630773,12753965:0,0,0 -k1,11102:6630773,12753965:0 -h1,11102:8622497,12753965:0,0,0 -k1,11102:32583029,12753965:23960532 -g1,11102:32583029,12753965 -) -(1,11106:6630773,13569892:25952256,424439,79822 -(1,11104:6630773,13569892:0,0,0 -g1,11104:6630773,13569892 -g1,11104:6630773,13569892 -g1,11104:6303093,13569892 -(1,11104:6303093,13569892:0,0,0 -) -g1,11104:6630773,13569892 -) -g1,11106:7626635,13569892 -g1,11106:8954451,13569892 -g1,11106:9618359,13569892 -h1,11106:9950313,13569892:0,0,0 -k1,11106:32583029,13569892:22632716 -g1,11106:32583029,13569892 -) -(1,11108:6630773,14385819:25952256,291767,0 -(1,11107:6630773,14385819:0,0,0 -g1,11107:6630773,14385819 -g1,11107:6630773,14385819 -g1,11107:6303093,14385819 -(1,11107:6303093,14385819:0,0,0 -) -g1,11107:6630773,14385819 -) -h1,11108:6962727,14385819:0,0,0 -k1,11108:32583029,14385819:25620302 -g1,11108:32583029,14385819 -) -(1,11114:6630773,15201746:25952256,407923,9908 -(1,11110:6630773,15201746:0,0,0 -g1,11110:6630773,15201746 -g1,11110:6630773,15201746 -g1,11110:6303093,15201746 -(1,11110:6303093,15201746:0,0,0 -) -g1,11110:6630773,15201746 -) -g1,11114:7626635,15201746 -g1,11114:7958589,15201746 -g1,11114:8290543,15201746 -g1,11114:8622497,15201746 -g1,11114:8954451,15201746 -g1,11114:9286405,15201746 -g1,11114:9618359,15201746 -g1,11114:10946175,15201746 -g1,11114:11610083,15201746 -g1,11114:12937899,15201746 -g1,11114:13601807,15201746 -g1,11114:14929623,15201746 -h1,11114:15261577,15201746:0,0,0 -k1,11114:32583029,15201746:17321452 -g1,11114:32583029,15201746 -) -(1,11114:6630773,15886601:25952256,424439,9908 -h1,11114:6630773,15886601:0,0,0 -g1,11114:7626635,15886601 -g1,11114:8954451,15886601 -g1,11114:9618359,15886601 -g1,11114:9950313,15886601 -g1,11114:11610083,15886601 -g1,11114:11942037,15886601 -g1,11114:12273991,15886601 -g1,11114:13601807,15886601 -g1,11114:13933761,15886601 -h1,11114:15261577,15886601:0,0,0 -k1,11114:32583029,15886601:17321452 -g1,11114:32583029,15886601 -) -(1,11114:6630773,16571456:25952256,424439,9908 -h1,11114:6630773,16571456:0,0,0 -g1,11114:7626635,16571456 -g1,11114:8954451,16571456 -g1,11114:9618359,16571456 -g1,11114:9950313,16571456 -g1,11114:11610083,16571456 -g1,11114:11942037,16571456 -g1,11114:13601807,16571456 -g1,11114:13933761,16571456 -g1,11114:14265715,16571456 -h1,11114:15261577,16571456:0,0,0 -k1,11114:32583029,16571456:17321452 -g1,11114:32583029,16571456 -) -] -) -g1,11115:32583029,16581364 -g1,11115:6630773,16581364 -g1,11115:6630773,16581364 -g1,11115:32583029,16581364 -g1,11115:32583029,16581364 -) -h1,11115:6630773,16777972:0,0,0 -(1,11119:6630773,17643052:25952256,513147,126483 -h1,11118:6630773,17643052:983040,0,0 -k1,11118:9118452,17643052:307952 -k1,11118:10984195,17643052:307952 -k1,11118:12942344,17643052:307952 -k1,11118:15770155,17643052:307952 -k1,11118:18913194,17643052:307952 -k1,11118:21502453,17643052:307951 -k1,11118:24505901,17643052:307952 -(1,11118:24505901,17643052:0,452978,115847 -r1,11201:27677861,17643052:3171960,568825,115847 -k1,11118:24505901,17643052:-3171960 -) -(1,11118:24505901,17643052:3171960,452978,115847 -k1,11118:24505901,17643052:3277 -h1,11118:27674584,17643052:0,411205,112570 -) -k1,11118:27985813,17643052:307952 -k1,11118:29578271,17643052:307952 -k1,11118:32227169,17643052:307952 -k1,11118:32583029,17643052:0 -) -(1,11119:6630773,18508132:25952256,513147,134348 -k1,11118:8557430,18508132:264009 -k1,11118:11108646,18508132:264009 -k1,11118:13693286,18508132:264010 -k1,11118:15399742,18508132:264009 -k1,11118:16452149,18508132:264009 -k1,11118:18598352,18508132:264009 -k1,11118:19934531,18508132:264010 -k1,11118:22222947,18508132:264009 -k1,11118:23929403,18508132:264009 -k1,11118:25523793,18508132:264009 -k1,11118:27253188,18508132:264010 -k1,11118:28464848,18508132:264009 -k1,11118:31111746,18508132:264009 -k1,11119:32583029,18508132:0 -) -(1,11119:6630773,19373212:25952256,505283,115847 -k1,11118:9019206,19373212:245406 -(1,11118:9226300,19373212:0,435480,115847 -r1,11201:12749973,19373212:3523673,551327,115847 -k1,11118:9226300,19373212:-3523673 -) -(1,11118:9226300,19373212:3523673,435480,115847 -g1,11118:11691560,19373212 -g1,11118:12394984,19373212 -h1,11118:12746696,19373212:0,411205,112570 -) -k1,11118:13202474,19373212:245407 -k1,11118:14639325,19373212:245406 -k1,11118:16088627,19373212:245406 -k1,11118:19842176,19373212:245407 -(1,11118:20049270,19373212:0,435480,115847 -r1,11201:23572943,19373212:3523673,551327,115847 -k1,11118:20049270,19373212:-3523673 -) -(1,11118:20049270,19373212:3523673,435480,115847 -g1,11118:22514530,19373212 -g1,11118:23217954,19373212 -h1,11118:23569666,19373212:0,411205,112570 -) -k1,11118:24199113,19373212:245406 -k1,11118:24800379,19373212:245406 -k1,11118:27133107,19373212:245406 -k1,11118:27910011,19373212:245407 -k1,11118:31107814,19373212:245406 -k1,11118:32583029,19373212:0 -) -(1,11119:6630773,20238292:25952256,505283,126483 -k1,11118:9668414,20238292:150780 -k1,11118:10175053,20238292:150779 -k1,11118:12945962,20238292:150780 -k1,11118:15074619,20238292:150780 -k1,11118:15841436,20238292:150779 -k1,11118:17195457,20238292:150780 -k1,11118:20181323,20238292:150779 -k1,11118:23034152,20238292:150780 -k1,11118:24204017,20238292:150780 -k1,11118:26332673,20238292:150779 -k1,11118:29262180,20238292:150780 -k1,11118:30174488,20238292:150780 -k1,11118:30681127,20238292:150779 -k1,11118:31931601,20238292:150780 -k1,11119:32583029,20238292:0 -) -(1,11119:6630773,21103372:25952256,513147,126483 -(1,11118:6630773,21103372:0,452978,115847 -r1,11201:9802733,21103372:3171960,568825,115847 -k1,11118:6630773,21103372:-3171960 -) -(1,11118:6630773,21103372:3171960,452978,115847 -k1,11118:6630773,21103372:3277 -h1,11118:9799456,21103372:0,411205,112570 -) -k1,11118:10176857,21103372:200454 -k1,11118:12882097,21103372:200454 -k1,11118:14273996,21103372:200454 -k1,11118:15678347,21103372:200455 -k1,11118:17947117,21103372:200454 -k1,11118:19715192,21103372:200454 -(1,11118:19715192,21103372:0,435480,115847 -r1,11201:21128593,21103372:1413401,551327,115847 -k1,11118:19715192,21103372:-1413401 -) -(1,11118:19715192,21103372:1413401,435480,115847 -k1,11118:19715192,21103372:3277 -h1,11118:21125316,21103372:0,411205,112570 -) -k1,11118:21329047,21103372:200454 -k1,11118:22521061,21103372:200454 -k1,11118:26042880,21103372:200454 -k1,11118:26929497,21103372:200455 -k1,11118:28408558,21103372:200454 -k1,11118:29295174,21103372:200454 -k1,11118:30514713,21103372:200454 -k1,11118:32583029,21103372:0 -) -(1,11119:6630773,21968452:25952256,505283,126483 -g1,11118:7446040,21968452 -g1,11118:8664354,21968452 -g1,11118:10543926,21968452 -g1,11118:13521882,21968452 -g1,11118:14482639,21968452 -(1,11118:14482639,21968452:0,452978,115847 -r1,11201:17654599,21968452:3171960,568825,115847 -k1,11118:14482639,21968452:-3171960 -) -(1,11118:14482639,21968452:3171960,452978,115847 -k1,11118:14482639,21968452:3277 -h1,11118:17651322,21968452:0,411205,112570 -) -k1,11119:32583029,21968452:14876002 -g1,11119:32583029,21968452 -) -v1,11121:6630773,22653307:0,393216,0 -(1,11135:6630773,28500958:25952256,6240867,196608 -g1,11135:6630773,28500958 -g1,11135:6630773,28500958 -g1,11135:6434165,28500958 -(1,11135:6434165,28500958:0,6240867,196608 -r1,11201:32779637,28500958:26345472,6437475,196608 -k1,11135:6434165,28500958:-26345472 -) -(1,11135:6434165,28500958:26345472,6240867,196608 -[1,11135:6630773,28500958:25952256,6044259,0 -(1,11123:6630773,22881138:25952256,424439,106246 -(1,11122:6630773,22881138:0,0,0 -g1,11122:6630773,22881138 -g1,11122:6630773,22881138 -g1,11122:6303093,22881138 -(1,11122:6303093,22881138:0,0,0 -) -g1,11122:6630773,22881138 -) -g1,11123:7294681,22881138 -g1,11123:8290543,22881138 -g1,11123:10946175,22881138 -g1,11123:11610083,22881138 -g1,11123:13601807,22881138 -g1,11123:15925485,22881138 -g1,11123:16589393,22881138 -g1,11123:17585255,22881138 -g1,11123:18913071,22881138 -g1,11123:19576979,22881138 -h1,11123:22232610,22881138:0,0,0 -k1,11123:32583029,22881138:10350419 -g1,11123:32583029,22881138 -) -(1,11124:6630773,23565993:25952256,291767,0 -h1,11124:6630773,23565993:0,0,0 -h1,11124:6962727,23565993:0,0,0 -k1,11124:32583029,23565993:25620302 -g1,11124:32583029,23565993 -) -(1,11134:6630773,24381920:25952256,424439,6605 -(1,11126:6630773,24381920:0,0,0 -g1,11126:6630773,24381920 -g1,11126:6630773,24381920 -g1,11126:6303093,24381920 -(1,11126:6303093,24381920:0,0,0 -) -g1,11126:6630773,24381920 -) -g1,11134:7626635,24381920 -g1,11134:7958589,24381920 -g1,11134:8290543,24381920 -g1,11134:8622497,24381920 -g1,11134:8954451,24381920 -g1,11134:9286405,24381920 -g1,11134:9618359,24381920 -g1,11134:9950313,24381920 -g1,11134:10282267,24381920 -g1,11134:11610083,24381920 -g1,11134:12273991,24381920 -g1,11134:13601807,24381920 -h1,11134:13933761,24381920:0,0,0 -k1,11134:32583029,24381920:18649268 -g1,11134:32583029,24381920 -) -(1,11134:6630773,25066775:25952256,424439,9908 -h1,11134:6630773,25066775:0,0,0 -g1,11134:7626635,25066775 -g1,11134:9286405,25066775 -g1,11134:9618359,25066775 -g1,11134:9950313,25066775 -g1,11134:10282267,25066775 -g1,11134:10614221,25066775 -g1,11134:10946175,25066775 -g1,11134:12273991,25066775 -g1,11134:12605945,25066775 -h1,11134:13933761,25066775:0,0,0 -k1,11134:32583029,25066775:18649268 -g1,11134:32583029,25066775 -) -(1,11134:6630773,25751630:25952256,407923,86428 -h1,11134:6630773,25751630:0,0,0 -g1,11134:7626635,25751630 -g1,11134:8954451,25751630 -g1,11134:10282267,25751630 -g1,11134:10614221,25751630 -g1,11134:10946175,25751630 -g1,11134:12273991,25751630 -g1,11134:12605945,25751630 -h1,11134:13933761,25751630:0,0,0 -k1,11134:32583029,25751630:18649268 -g1,11134:32583029,25751630 -) -(1,11134:6630773,26436485:25952256,424439,9908 -h1,11134:6630773,26436485:0,0,0 -g1,11134:7626635,26436485 -g1,11134:9950313,26436485 -g1,11134:10282267,26436485 -g1,11134:10614221,26436485 -g1,11134:12273991,26436485 -h1,11134:13933761,26436485:0,0,0 -k1,11134:32583029,26436485:18649268 -g1,11134:32583029,26436485 -) -(1,11134:6630773,27121340:25952256,407923,9908 -h1,11134:6630773,27121340:0,0,0 -g1,11134:7626635,27121340 -g1,11134:9286405,27121340 -g1,11134:9618359,27121340 -g1,11134:9950313,27121340 -g1,11134:10282267,27121340 -g1,11134:10614221,27121340 -g1,11134:12273991,27121340 -h1,11134:13933761,27121340:0,0,0 -k1,11134:32583029,27121340:18649268 -g1,11134:32583029,27121340 -) -(1,11134:6630773,27806195:25952256,424439,86428 -h1,11134:6630773,27806195:0,0,0 -g1,11134:7626635,27806195 -g1,11134:8954451,27806195 -g1,11134:10282267,27806195 -g1,11134:10614221,27806195 -g1,11134:12273991,27806195 -h1,11134:13933761,27806195:0,0,0 -k1,11134:32583029,27806195:18649268 -g1,11134:32583029,27806195 -) -(1,11134:6630773,28491050:25952256,407923,9908 -h1,11134:6630773,28491050:0,0,0 -g1,11134:7626635,28491050 -g1,11134:9286405,28491050 -g1,11134:9618359,28491050 -g1,11134:9950313,28491050 -g1,11134:10282267,28491050 -g1,11134:10614221,28491050 -g1,11134:12273991,28491050 -h1,11134:13933761,28491050:0,0,0 -k1,11134:32583029,28491050:18649268 -g1,11134:32583029,28491050 -) -] -) -g1,11135:32583029,28500958 -g1,11135:6630773,28500958 -g1,11135:6630773,28500958 -g1,11135:32583029,28500958 -g1,11135:32583029,28500958 -) -h1,11135:6630773,28697566:0,0,0 -v1,11139:6630773,29382421:0,393216,0 -(1,11153:6630773,35230072:25952256,6240867,196608 -g1,11153:6630773,35230072 -g1,11153:6630773,35230072 -g1,11153:6434165,35230072 -(1,11153:6434165,35230072:0,6240867,196608 -r1,11201:32779637,35230072:26345472,6437475,196608 -k1,11153:6434165,35230072:-26345472 -) -(1,11153:6434165,35230072:26345472,6240867,196608 -[1,11153:6630773,35230072:25952256,6044259,0 -(1,11141:6630773,29610252:25952256,424439,106246 -(1,11140:6630773,29610252:0,0,0 -g1,11140:6630773,29610252 -g1,11140:6630773,29610252 -g1,11140:6303093,29610252 -(1,11140:6303093,29610252:0,0,0 -) -g1,11140:6630773,29610252 -) -g1,11141:7294681,29610252 -g1,11141:8290543,29610252 -g1,11141:10946175,29610252 -g1,11141:11610083,29610252 -g1,11141:13601807,29610252 -g1,11141:15925485,29610252 -g1,11141:16589393,29610252 -g1,11141:17585255,29610252 -g1,11141:18913071,29610252 -g1,11141:19576979,29610252 -h1,11141:22232610,29610252:0,0,0 -k1,11141:32583029,29610252:10350419 -g1,11141:32583029,29610252 -) -(1,11142:6630773,30295107:25952256,291767,0 -h1,11142:6630773,30295107:0,0,0 -h1,11142:6962727,30295107:0,0,0 -k1,11142:32583029,30295107:25620302 -g1,11142:32583029,30295107 -) -(1,11152:6630773,31111034:25952256,407923,9908 -(1,11144:6630773,31111034:0,0,0 -g1,11144:6630773,31111034 -g1,11144:6630773,31111034 -g1,11144:6303093,31111034 -(1,11144:6303093,31111034:0,0,0 -) -g1,11144:6630773,31111034 -) -g1,11152:7626635,31111034 -g1,11152:7958589,31111034 -g1,11152:8290543,31111034 -g1,11152:8622497,31111034 -g1,11152:8954451,31111034 -g1,11152:9286405,31111034 -g1,11152:9618359,31111034 -g1,11152:9950313,31111034 -g1,11152:10282267,31111034 -g1,11152:11610083,31111034 -g1,11152:12273991,31111034 -g1,11152:12605945,31111034 -g1,11152:13933761,31111034 -g1,11152:14597669,31111034 -g1,11152:14929623,31111034 -g1,11152:16257439,31111034 -h1,11152:16589393,31111034:0,0,0 -k1,11152:32583029,31111034:15993636 -g1,11152:32583029,31111034 -) -(1,11152:6630773,31795889:25952256,424439,9908 -h1,11152:6630773,31795889:0,0,0 -g1,11152:7626635,31795889 -g1,11152:9286405,31795889 -g1,11152:9618359,31795889 -g1,11152:9950313,31795889 -g1,11152:10282267,31795889 -g1,11152:10614221,31795889 -g1,11152:12273991,31795889 -g1,11152:12605945,31795889 -g1,11152:14597669,31795889 -g1,11152:14929623,31795889 -h1,11152:16589393,31795889:0,0,0 -k1,11152:32583029,31795889:15993636 -g1,11152:32583029,31795889 -) -(1,11152:6630773,32480744:25952256,407923,86428 -h1,11152:6630773,32480744:0,0,0 -g1,11152:7626635,32480744 -g1,11152:8954451,32480744 -g1,11152:10282267,32480744 -g1,11152:10614221,32480744 -g1,11152:12273991,32480744 -g1,11152:12605945,32480744 -g1,11152:14597669,32480744 -g1,11152:14929623,32480744 -h1,11152:16589393,32480744:0,0,0 -k1,11152:32583029,32480744:15993636 -g1,11152:32583029,32480744 -) -(1,11152:6630773,33165599:25952256,424439,9908 -h1,11152:6630773,33165599:0,0,0 -g1,11152:7626635,33165599 -g1,11152:9950313,33165599 -g1,11152:10282267,33165599 -g1,11152:10614221,33165599 -g1,11152:12273991,33165599 -g1,11152:12605945,33165599 -g1,11152:14597669,33165599 -h1,11152:16589393,33165599:0,0,0 -k1,11152:32583029,33165599:15993636 -g1,11152:32583029,33165599 -) -(1,11152:6630773,33850454:25952256,407923,9908 -h1,11152:6630773,33850454:0,0,0 -g1,11152:7626635,33850454 -g1,11152:9286405,33850454 -g1,11152:9618359,33850454 -g1,11152:9950313,33850454 -g1,11152:10282267,33850454 -g1,11152:10614221,33850454 -g1,11152:12273991,33850454 -g1,11152:12605945,33850454 -g1,11152:14597669,33850454 -h1,11152:16589393,33850454:0,0,0 -k1,11152:32583029,33850454:15993636 -g1,11152:32583029,33850454 -) -(1,11152:6630773,34535309:25952256,424439,86428 -h1,11152:6630773,34535309:0,0,0 -g1,11152:7626635,34535309 -g1,11152:8954451,34535309 -g1,11152:10282267,34535309 -g1,11152:10614221,34535309 -g1,11152:12273991,34535309 -g1,11152:14597669,34535309 -h1,11152:16589393,34535309:0,0,0 -k1,11152:32583029,34535309:15993636 -g1,11152:32583029,34535309 -) -(1,11152:6630773,35220164:25952256,407923,9908 -h1,11152:6630773,35220164:0,0,0 -g1,11152:7626635,35220164 -g1,11152:9286405,35220164 -g1,11152:9618359,35220164 -g1,11152:9950313,35220164 -g1,11152:10282267,35220164 -g1,11152:10614221,35220164 -g1,11152:12273991,35220164 -g1,11152:14597669,35220164 -h1,11152:16589393,35220164:0,0,0 -k1,11152:32583029,35220164:15993636 -g1,11152:32583029,35220164 -) -] -) -g1,11153:32583029,35230072 -g1,11153:6630773,35230072 -g1,11153:6630773,35230072 -g1,11153:32583029,35230072 -g1,11153:32583029,35230072 -) -h1,11153:6630773,35426680:0,0,0 -(1,11157:6630773,36291760:25952256,513147,126483 -h1,11156:6630773,36291760:983040,0,0 -k1,11156:9861049,36291760:259526 -k1,11156:13145065,36291760:259525 -k1,11156:14007523,36291760:259526 -k1,11156:14681824,36291760:259458 -k1,11156:15919803,36291760:259525 -k1,11156:19152702,36291760:259526 -k1,11156:20786519,36291760:259525 -k1,11156:22205378,36291760:259526 -k1,11156:24560747,36291760:259525 -k1,11156:28372330,36291760:259526 -k1,11156:30491115,36291760:259526 -k1,11156:31841816,36291760:259525 -k1,11156:32583029,36291760:0 -) -(1,11157:6630773,37156840:25952256,513147,134348 -k1,11156:8673572,37156840:207788 -k1,11156:10590541,37156840:207788 -k1,11156:12190317,37156840:207789 -k1,11156:15041832,37156840:207788 -k1,11156:15859105,37156840:207788 -k1,11156:21450686,37156840:207788 -(1,11156:21450686,37156840:0,452978,115847 -r1,11201:23215800,37156840:1765114,568825,115847 -k1,11156:21450686,37156840:-1765114 -) -(1,11156:21450686,37156840:1765114,452978,115847 -g1,11156:22157387,37156840 -g1,11156:22860811,37156840 -h1,11156:23212523,37156840:0,411205,112570 -) -k1,11156:23597258,37156840:207788 -k1,11156:24558712,37156840:207789 -k1,11156:28850710,37156840:207788 -k1,11156:30540925,37156840:207788 -k1,11156:32583029,37156840:0 -) -(1,11157:6630773,38021920:25952256,513147,134348 -k1,11156:8128017,38021920:136715 -k1,11156:9355909,38021920:136716 -k1,11156:10233837,38021920:136715 -k1,11156:12205564,38021920:136716 -k1,11156:14051460,38021920:136715 -k1,11156:15194154,38021920:136715 -k1,11156:16964684,38021920:136716 -k1,11156:19152679,38021920:136715 -k1,11156:19969003,38021920:136715 -k1,11156:21040264,38021920:136716 -k1,11156:23856095,38021920:136715 -k1,11156:27133302,38021920:136716 -k1,11156:28448356,38021920:136715 -k1,11156:32583029,38021920:0 -) -(1,11157:6630773,38887000:25952256,513147,126483 -k1,11156:8118592,38887000:221662 -k1,11156:10512776,38887000:221662 -k1,11156:11379314,38887000:221663 -k1,11156:12600402,38887000:221662 -(1,11156:12600402,38887000:0,414482,115847 -r1,11201:13662091,38887000:1061689,530329,115847 -k1,11156:12600402,38887000:-1061689 -) -(1,11156:12600402,38887000:1061689,414482,115847 -k1,11156:12600402,38887000:3277 -h1,11156:13658814,38887000:0,411205,112570 -) -k1,11156:13883753,38887000:221662 -k1,11156:17333723,38887000:221662 -k1,11156:18208124,38887000:221662 -k1,11156:20167148,38887000:221662 -k1,11156:23529302,38887000:221663 -k1,11156:24238523,38887000:221633 -k1,11156:25459610,38887000:221662 -k1,11156:28470488,38887000:221662 -k1,11156:31938154,38887000:221662 -k1,11156:32583029,38887000:0 -) -(1,11157:6630773,39752080:25952256,513147,134348 -k1,11156:7836268,39752080:199516 -k1,11156:11254263,39752080:199517 -k1,11156:14469096,39752080:199516 -(1,11156:14469096,39752080:0,435480,115847 -r1,11201:17289345,39752080:2820249,551327,115847 -k1,11156:14469096,39752080:-2820249 -) -(1,11156:14469096,39752080:2820249,435480,115847 -g1,11156:16230932,39752080 -g1,11156:16934356,39752080 -h1,11156:17286068,39752080:0,411205,112570 -) -k1,11156:17488861,39752080:199516 -k1,11156:20131563,39752080:199516 -k1,11156:21084745,39752080:199517 -k1,11156:24247804,39752080:199516 -k1,11156:27141510,39752080:199516 -(1,11156:27141510,39752080:0,414482,115847 -r1,11201:27499776,39752080:358266,530329,115847 -k1,11156:27141510,39752080:-358266 -) -(1,11156:27141510,39752080:358266,414482,115847 -k1,11156:27141510,39752080:3277 -h1,11156:27496499,39752080:0,411205,112570 -) -k1,11156:27699292,39752080:199516 -k1,11156:28508294,39752080:199517 -k1,11156:30170575,39752080:199516 -k1,11156:31858416,39752080:199516 -(1,11156:32058957,39752080:0,459977,115847 -r1,11201:32417223,39752080:358266,575824,115847 -k1,11156:32058957,39752080:-358266 -) -(1,11156:32058957,39752080:358266,459977,115847 -k1,11156:32058957,39752080:3277 -h1,11156:32413946,39752080:0,411205,112570 -) -k1,11156:32583029,39752080:0 -) -(1,11157:6630773,40617160:25952256,513147,134348 -k1,11156:7987182,40617160:178070 -k1,11156:10553387,40617160:178069 -k1,11156:11486432,40617160:178070 -k1,11156:13382857,40617160:178069 -k1,11156:13916787,40617160:178070 -k1,11156:16806740,40617160:178069 -k1,11156:17629685,40617160:178070 -k1,11156:18583046,40617160:178069 -k1,11156:20969682,40617160:178070 -k1,11156:23243595,40617160:178069 -k1,11156:26649973,40617160:178070 -(1,11156:26850514,40617160:0,435480,115847 -r1,11201:28967340,40617160:2116826,551327,115847 -k1,11156:26850514,40617160:-2116826 -) -(1,11156:26850514,40617160:2116826,435480,115847 -g1,11156:27908927,40617160 -g1,11156:28612351,40617160 -h1,11156:28964063,40617160:0,411205,112570 -) -k1,11156:29352503,40617160:178069 -k1,11156:32224763,40617160:178070 -(1,11156:32224763,40617160:0,414482,115847 -r1,11201:32583029,40617160:358266,530329,115847 -k1,11156:32224763,40617160:-358266 -) -(1,11156:32224763,40617160:358266,414482,115847 -k1,11156:32224763,40617160:3277 -h1,11156:32579752,40617160:0,411205,112570 -) -k1,11156:32583029,40617160:0 -) -(1,11157:6630773,41482240:25952256,513147,134348 -g1,11156:9337414,41482240 -g1,11156:10656656,41482240 -g1,11156:11613482,41482240 -g1,11156:14485274,41482240 -g1,11156:17494692,41482240 -g1,11156:18724149,41482240 -g1,11156:21156194,41482240 -h1,11156:22672700,41482240:0,0,0 -g1,11156:22865376,41482240 -g1,11156:23860869,41482240 -g1,11156:25532039,41482240 -h1,11156:26714310,41482240:0,0,0 -h1,11156:27088521,41482240:0,0,0 -k1,11157:32583029,41482240:5615750 -g1,11157:32583029,41482240 -) -v1,11159:6630773,42167095:0,393216,0 -(1,11169:6630773,45345240:25952256,3571361,196608 -g1,11169:6630773,45345240 -g1,11169:6630773,45345240 -g1,11169:6434165,45345240 -(1,11169:6434165,45345240:0,3571361,196608 -r1,11201:32779637,45345240:26345472,3767969,196608 -k1,11169:6434165,45345240:-26345472 -) -(1,11169:6434165,45345240:26345472,3571361,196608 -[1,11169:6630773,45345240:25952256,3374753,0 -(1,11161:6630773,42394926:25952256,424439,112852 -(1,11160:6630773,42394926:0,0,0 -g1,11160:6630773,42394926 -g1,11160:6630773,42394926 -g1,11160:6303093,42394926 -(1,11160:6303093,42394926:0,0,0 -) -g1,11160:6630773,42394926 -) -k1,11161:6630773,42394926:0 -g1,11161:12273990,42394926 -g1,11161:12937898,42394926 -g1,11161:13933760,42394926 -g1,11161:15593530,42394926 -g1,11161:17253300,42394926 -g1,11161:18913070,42394926 -g1,11161:20240886,42394926 -k1,11161:20240886,42394926:1652 -h1,11161:22234262,42394926:0,0,0 -k1,11161:32583029,42394926:10348767 -g1,11161:32583029,42394926 -) -(1,11162:6630773,43079781:25952256,431045,79822 -h1,11162:6630773,43079781:0,0,0 -g1,11162:8290543,43079781 -g1,11162:9286405,43079781 -k1,11162:9286405,43079781:0 -h1,11162:12273991,43079781:0,0,0 -k1,11162:32583029,43079781:20309038 -g1,11162:32583029,43079781 -) -(1,11163:6630773,43764636:25952256,431045,106246 -h1,11163:6630773,43764636:0,0,0 -g1,11163:7294681,43764636 -g1,11163:8290543,43764636 -g1,11163:11278129,43764636 -g1,11163:11942037,43764636 -g1,11163:13933761,43764636 -g1,11163:15261577,43764636 -g1,11163:15925485,43764636 -g1,11163:17585255,43764636 -g1,11163:18581117,43764636 -g1,11163:19245025,43764636 -h1,11163:19908933,43764636:0,0,0 -k1,11163:32583029,43764636:12674096 -g1,11163:32583029,43764636 -) -(1,11164:6630773,44449491:25952256,424439,79822 -h1,11164:6630773,44449491:0,0,0 -k1,11164:6630773,44449491:0 -h1,11164:8622497,44449491:0,0,0 -k1,11164:32583029,44449491:23960532 -g1,11164:32583029,44449491 -) -(1,11168:6630773,45265418:25952256,424439,79822 -(1,11166:6630773,45265418:0,0,0 -g1,11166:6630773,45265418 -g1,11166:6630773,45265418 -g1,11166:6303093,45265418 -(1,11166:6303093,45265418:0,0,0 -) -g1,11166:6630773,45265418 -) -g1,11168:7626635,45265418 -g1,11168:7958589,45265418 -g1,11168:9286405,45265418 -g1,11168:11610083,45265418 -g1,11168:12937899,45265418 -g1,11168:14597669,45265418 -g1,11168:16257439,45265418 -g1,11168:17917209,45265418 -g1,11168:19576979,45265418 -h1,11168:20572841,45265418:0,0,0 -k1,11168:32583029,45265418:12010188 -g1,11168:32583029,45265418 -) -] -) -g1,11169:32583029,45345240 -g1,11169:6630773,45345240 -g1,11169:6630773,45345240 -g1,11169:32583029,45345240 -g1,11169:32583029,45345240 -) -h1,11169:6630773,45541848:0,0,0 -] -(1,11201:32583029,45706769:0,0,0 -g1,11201:32583029,45706769 -) -) -] -(1,11201:6630773,47279633:25952256,0,0 -h1,11201:6630773,47279633:25952256,0,0 -) -] -(1,11201:4262630,4025873:0,0,0 -[1,11201:-473656,4025873:0,0,0 -(1,11201:-473656,-710413:0,0,0 -(1,11201:-473656,-710413:0,0,0 -g1,11201:-473656,-710413 -) -g1,11201:-473656,-710413 +r1,11200:37855564,49800853:1179648,16384,0 +) +) +k1,11200:3078556,49800853:-34777008 +) +] +g1,11200:6630773,4812305 +k1,11200:21678495,4812305:13852345 +g1,11200:23301166,4812305 +g1,11200:24088253,4812305 +g1,11200:28572226,4812305 +g1,11200:29981905,4812305 +) +) +] +[1,11200:6630773,45706769:25952256,40108032,0 +(1,11200:6630773,45706769:25952256,40108032,0 +(1,11200:6630773,45706769:0,0,0 +g1,11200:6630773,45706769 +) +[1,11200:6630773,45706769:25952256,40108032,0 +v1,11092:6630773,6254097:0,393216,0 +(1,11092:6630773,9229656:25952256,3368775,196608 +g1,11092:6630773,9229656 +g1,11092:6630773,9229656 +g1,11092:6434165,9229656 +(1,11092:6434165,9229656:0,3368775,196608 +r1,11200:32779637,9229656:26345472,3565383,196608 +k1,11092:6434165,9229656:-26345472 +) +(1,11092:6434165,9229656:26345472,3368775,196608 +[1,11092:6630773,9229656:25952256,3172167,0 +(1,11084:6630773,6349256:25952256,291767,0 +(1,11083:6630773,6349256:0,0,0 +g1,11083:6630773,6349256 +g1,11083:6630773,6349256 +g1,11083:6303093,6349256 +(1,11083:6303093,6349256:0,0,0 +) +g1,11083:6630773,6349256 +) +h1,11084:6962727,6349256:0,0,0 +k1,11084:32583029,6349256:25620302 +g1,11084:32583029,6349256 +) +(1,11091:6630773,7165183:25952256,424439,6605 +(1,11086:6630773,7165183:0,0,0 +g1,11086:6630773,7165183 +g1,11086:6630773,7165183 +g1,11086:6303093,7165183 +(1,11086:6303093,7165183:0,0,0 +) +g1,11086:6630773,7165183 +) +g1,11091:7626635,7165183 +g1,11091:7958589,7165183 +g1,11091:8290543,7165183 +g1,11091:8622497,7165183 +g1,11091:8954451,7165183 +g1,11091:9286405,7165183 +g1,11091:9618359,7165183 +g1,11091:10946175,7165183 +g1,11091:11610083,7165183 +g1,11091:12937899,7165183 +h1,11091:13269853,7165183:0,0,0 +k1,11091:32583029,7165183:19313176 +g1,11091:32583029,7165183 +) +(1,11091:6630773,7850038:25952256,407923,9908 +h1,11091:6630773,7850038:0,0,0 +g1,11091:7626635,7850038 +g1,11091:8954451,7850038 +g1,11091:9618359,7850038 +g1,11091:9950313,7850038 +g1,11091:11610083,7850038 +g1,11091:11942037,7850038 +h1,11091:13269853,7850038:0,0,0 +k1,11091:32583029,7850038:19313176 +g1,11091:32583029,7850038 +) +(1,11091:6630773,8534893:25952256,407923,9908 +h1,11091:6630773,8534893:0,0,0 +g1,11091:7626635,8534893 +g1,11091:8954451,8534893 +g1,11091:9618359,8534893 +g1,11091:9950313,8534893 +g1,11091:10282267,8534893 +g1,11091:11610083,8534893 +g1,11091:11942037,8534893 +h1,11091:13269853,8534893:0,0,0 +k1,11091:32583029,8534893:19313176 +g1,11091:32583029,8534893 +) +(1,11091:6630773,9219748:25952256,407923,9908 +h1,11091:6630773,9219748:0,0,0 +g1,11091:7626635,9219748 +g1,11091:8954451,9219748 +g1,11091:9618359,9219748 +g1,11091:9950313,9219748 +g1,11091:11610083,9219748 +g1,11091:11942037,9219748 +g1,11091:12273991,9219748 +h1,11091:13269853,9219748:0,0,0 +k1,11091:32583029,9219748:19313176 +g1,11091:32583029,9219748 +) +] +) +g1,11092:32583029,9229656 +g1,11092:6630773,9229656 +g1,11092:6630773,9229656 +g1,11092:32583029,9229656 +g1,11092:32583029,9229656 +) +h1,11092:6630773,9426264:0,0,0 +(1,11096:6630773,10291344:25952256,513147,134348 +h1,11095:6630773,10291344:983040,0,0 +k1,11095:10163021,10291344:166974 +(1,11095:10163021,10291344:0,435480,115847 +r1,11200:13686694,10291344:3523673,551327,115847 +k1,11095:10163021,10291344:-3523673 +) +(1,11095:10163021,10291344:3523673,435480,115847 +g1,11095:12628281,10291344 +g1,11095:13331705,10291344 +h1,11095:13683417,10291344:0,411205,112570 +) +k1,11095:13853668,10291344:166974 +k1,11095:14706804,10291344:166974 +k1,11095:16742209,10291344:166974 +k1,11095:19236366,10291344:166974 +k1,11095:20070495,10291344:166973 +(1,11095:20070495,10291344:0,435480,115847 +r1,11200:23594168,10291344:3523673,551327,115847 +k1,11095:20070495,10291344:-3523673 +) +(1,11095:20070495,10291344:3523673,435480,115847 +g1,11095:22535755,10291344 +g1,11095:23239179,10291344 +h1,11095:23590891,10291344:0,411205,112570 +) +k1,11095:23761142,10291344:166974 +k1,11095:24614278,10291344:166974 +k1,11095:26810247,10291344:166974 +k1,11095:28511419,10291344:166974 +k1,11095:29869838,10291344:166974 +k1,11095:32583029,10291344:0 +) +(1,11096:6630773,11156424:25952256,505283,126483 +g1,11095:7821562,11156424 +g1,11095:11580707,11156424 +g1,11095:12395974,11156424 +g1,11095:13614288,11156424 +g1,11095:16592244,11156424 +k1,11096:32583029,11156424:14084343 +g1,11096:32583029,11156424 +) +v1,11098:6630773,11841279:0,393216,0 +(1,11114:6630773,16581364:25952256,5133301,196608 +g1,11114:6630773,16581364 +g1,11114:6630773,16581364 +g1,11114:6434165,16581364 +(1,11114:6434165,16581364:0,5133301,196608 +r1,11200:32779637,16581364:26345472,5329909,196608 +k1,11114:6434165,16581364:-26345472 +) +(1,11114:6434165,16581364:26345472,5133301,196608 +[1,11114:6630773,16581364:25952256,4936693,0 +(1,11100:6630773,12069110:25952256,424439,106246 +(1,11099:6630773,12069110:0,0,0 +g1,11099:6630773,12069110 +g1,11099:6630773,12069110 +g1,11099:6303093,12069110 +(1,11099:6303093,12069110:0,0,0 +) +g1,11099:6630773,12069110 +) +g1,11100:7294681,12069110 +g1,11100:8290543,12069110 +g1,11100:10946175,12069110 +g1,11100:11610083,12069110 +g1,11100:13601807,12069110 +g1,11100:15925485,12069110 +g1,11100:16589393,12069110 +g1,11100:17585255,12069110 +g1,11100:18913071,12069110 +g1,11100:19576979,12069110 +h1,11100:20240887,12069110:0,0,0 +k1,11100:32583029,12069110:12342142 +g1,11100:32583029,12069110 +) +(1,11101:6630773,12753965:25952256,424439,79822 +h1,11101:6630773,12753965:0,0,0 +k1,11101:6630773,12753965:0 +h1,11101:8622497,12753965:0,0,0 +k1,11101:32583029,12753965:23960532 +g1,11101:32583029,12753965 +) +(1,11105:6630773,13569892:25952256,424439,79822 +(1,11103:6630773,13569892:0,0,0 +g1,11103:6630773,13569892 +g1,11103:6630773,13569892 +g1,11103:6303093,13569892 +(1,11103:6303093,13569892:0,0,0 +) +g1,11103:6630773,13569892 +) +g1,11105:7626635,13569892 +g1,11105:8954451,13569892 +g1,11105:9618359,13569892 +h1,11105:9950313,13569892:0,0,0 +k1,11105:32583029,13569892:22632716 +g1,11105:32583029,13569892 +) +(1,11107:6630773,14385819:25952256,291767,0 +(1,11106:6630773,14385819:0,0,0 +g1,11106:6630773,14385819 +g1,11106:6630773,14385819 +g1,11106:6303093,14385819 +(1,11106:6303093,14385819:0,0,0 +) +g1,11106:6630773,14385819 +) +h1,11107:6962727,14385819:0,0,0 +k1,11107:32583029,14385819:25620302 +g1,11107:32583029,14385819 +) +(1,11113:6630773,15201746:25952256,407923,9908 +(1,11109:6630773,15201746:0,0,0 +g1,11109:6630773,15201746 +g1,11109:6630773,15201746 +g1,11109:6303093,15201746 +(1,11109:6303093,15201746:0,0,0 +) +g1,11109:6630773,15201746 +) +g1,11113:7626635,15201746 +g1,11113:7958589,15201746 +g1,11113:8290543,15201746 +g1,11113:8622497,15201746 +g1,11113:8954451,15201746 +g1,11113:9286405,15201746 +g1,11113:9618359,15201746 +g1,11113:10946175,15201746 +g1,11113:11610083,15201746 +g1,11113:12937899,15201746 +g1,11113:13601807,15201746 +g1,11113:14929623,15201746 +h1,11113:15261577,15201746:0,0,0 +k1,11113:32583029,15201746:17321452 +g1,11113:32583029,15201746 +) +(1,11113:6630773,15886601:25952256,424439,9908 +h1,11113:6630773,15886601:0,0,0 +g1,11113:7626635,15886601 +g1,11113:8954451,15886601 +g1,11113:9618359,15886601 +g1,11113:9950313,15886601 +g1,11113:11610083,15886601 +g1,11113:11942037,15886601 +g1,11113:12273991,15886601 +g1,11113:13601807,15886601 +g1,11113:13933761,15886601 +h1,11113:15261577,15886601:0,0,0 +k1,11113:32583029,15886601:17321452 +g1,11113:32583029,15886601 +) +(1,11113:6630773,16571456:25952256,424439,9908 +h1,11113:6630773,16571456:0,0,0 +g1,11113:7626635,16571456 +g1,11113:8954451,16571456 +g1,11113:9618359,16571456 +g1,11113:9950313,16571456 +g1,11113:11610083,16571456 +g1,11113:11942037,16571456 +g1,11113:13601807,16571456 +g1,11113:13933761,16571456 +g1,11113:14265715,16571456 +h1,11113:15261577,16571456:0,0,0 +k1,11113:32583029,16571456:17321452 +g1,11113:32583029,16571456 +) +] +) +g1,11114:32583029,16581364 +g1,11114:6630773,16581364 +g1,11114:6630773,16581364 +g1,11114:32583029,16581364 +g1,11114:32583029,16581364 +) +h1,11114:6630773,16777972:0,0,0 +(1,11118:6630773,17643052:25952256,513147,126483 +h1,11117:6630773,17643052:983040,0,0 +k1,11117:9118452,17643052:307952 +k1,11117:10984195,17643052:307952 +k1,11117:12942344,17643052:307952 +k1,11117:15770155,17643052:307952 +k1,11117:18913194,17643052:307952 +k1,11117:21502453,17643052:307951 +k1,11117:24505901,17643052:307952 +(1,11117:24505901,17643052:0,452978,115847 +r1,11200:27677861,17643052:3171960,568825,115847 +k1,11117:24505901,17643052:-3171960 +) +(1,11117:24505901,17643052:3171960,452978,115847 +k1,11117:24505901,17643052:3277 +h1,11117:27674584,17643052:0,411205,112570 +) +k1,11117:27985813,17643052:307952 +k1,11117:29578271,17643052:307952 +k1,11117:32227169,17643052:307952 +k1,11117:32583029,17643052:0 +) +(1,11118:6630773,18508132:25952256,513147,134348 +k1,11117:8557430,18508132:264009 +k1,11117:11108646,18508132:264009 +k1,11117:13693286,18508132:264010 +k1,11117:15399742,18508132:264009 +k1,11117:16452149,18508132:264009 +k1,11117:18598352,18508132:264009 +k1,11117:19934531,18508132:264010 +k1,11117:22222947,18508132:264009 +k1,11117:23929403,18508132:264009 +k1,11117:25523793,18508132:264009 +k1,11117:27253188,18508132:264010 +k1,11117:28464848,18508132:264009 +k1,11117:31111746,18508132:264009 +k1,11118:32583029,18508132:0 +) +(1,11118:6630773,19373212:25952256,505283,115847 +k1,11117:9019206,19373212:245406 +(1,11117:9226300,19373212:0,435480,115847 +r1,11200:12749973,19373212:3523673,551327,115847 +k1,11117:9226300,19373212:-3523673 +) +(1,11117:9226300,19373212:3523673,435480,115847 +g1,11117:11691560,19373212 +g1,11117:12394984,19373212 +h1,11117:12746696,19373212:0,411205,112570 +) +k1,11117:13202474,19373212:245407 +k1,11117:14639325,19373212:245406 +k1,11117:16088627,19373212:245406 +k1,11117:19842176,19373212:245407 +(1,11117:20049270,19373212:0,435480,115847 +r1,11200:23572943,19373212:3523673,551327,115847 +k1,11117:20049270,19373212:-3523673 +) +(1,11117:20049270,19373212:3523673,435480,115847 +g1,11117:22514530,19373212 +g1,11117:23217954,19373212 +h1,11117:23569666,19373212:0,411205,112570 +) +k1,11117:24199113,19373212:245406 +k1,11117:24800379,19373212:245406 +k1,11117:27133107,19373212:245406 +k1,11117:27910011,19373212:245407 +k1,11117:31107814,19373212:245406 +k1,11117:32583029,19373212:0 +) +(1,11118:6630773,20238292:25952256,505283,126483 +k1,11117:9668414,20238292:150780 +k1,11117:10175053,20238292:150779 +k1,11117:12945962,20238292:150780 +k1,11117:15074619,20238292:150780 +k1,11117:15841436,20238292:150779 +k1,11117:17195457,20238292:150780 +k1,11117:20181323,20238292:150779 +k1,11117:23034152,20238292:150780 +k1,11117:24204017,20238292:150780 +k1,11117:26332673,20238292:150779 +k1,11117:29262180,20238292:150780 +k1,11117:30174488,20238292:150780 +k1,11117:30681127,20238292:150779 +k1,11117:31931601,20238292:150780 +k1,11118:32583029,20238292:0 +) +(1,11118:6630773,21103372:25952256,513147,126483 +(1,11117:6630773,21103372:0,452978,115847 +r1,11200:9802733,21103372:3171960,568825,115847 +k1,11117:6630773,21103372:-3171960 +) +(1,11117:6630773,21103372:3171960,452978,115847 +k1,11117:6630773,21103372:3277 +h1,11117:9799456,21103372:0,411205,112570 +) +k1,11117:10176857,21103372:200454 +k1,11117:12882097,21103372:200454 +k1,11117:14273996,21103372:200454 +k1,11117:15678347,21103372:200455 +k1,11117:17947117,21103372:200454 +k1,11117:19715192,21103372:200454 +(1,11117:19715192,21103372:0,435480,115847 +r1,11200:21128593,21103372:1413401,551327,115847 +k1,11117:19715192,21103372:-1413401 +) +(1,11117:19715192,21103372:1413401,435480,115847 +k1,11117:19715192,21103372:3277 +h1,11117:21125316,21103372:0,411205,112570 +) +k1,11117:21329047,21103372:200454 +k1,11117:22521061,21103372:200454 +k1,11117:26042880,21103372:200454 +k1,11117:26929497,21103372:200455 +k1,11117:28408558,21103372:200454 +k1,11117:29295174,21103372:200454 +k1,11117:30514713,21103372:200454 +k1,11117:32583029,21103372:0 +) +(1,11118:6630773,21968452:25952256,505283,126483 +g1,11117:7446040,21968452 +g1,11117:8664354,21968452 +g1,11117:10543926,21968452 +g1,11117:13521882,21968452 +g1,11117:14482639,21968452 +(1,11117:14482639,21968452:0,452978,115847 +r1,11200:17654599,21968452:3171960,568825,115847 +k1,11117:14482639,21968452:-3171960 +) +(1,11117:14482639,21968452:3171960,452978,115847 +k1,11117:14482639,21968452:3277 +h1,11117:17651322,21968452:0,411205,112570 +) +k1,11118:32583029,21968452:14876002 +g1,11118:32583029,21968452 +) +v1,11120:6630773,22653307:0,393216,0 +(1,11134:6630773,28500958:25952256,6240867,196608 +g1,11134:6630773,28500958 +g1,11134:6630773,28500958 +g1,11134:6434165,28500958 +(1,11134:6434165,28500958:0,6240867,196608 +r1,11200:32779637,28500958:26345472,6437475,196608 +k1,11134:6434165,28500958:-26345472 +) +(1,11134:6434165,28500958:26345472,6240867,196608 +[1,11134:6630773,28500958:25952256,6044259,0 +(1,11122:6630773,22881138:25952256,424439,106246 +(1,11121:6630773,22881138:0,0,0 +g1,11121:6630773,22881138 +g1,11121:6630773,22881138 +g1,11121:6303093,22881138 +(1,11121:6303093,22881138:0,0,0 +) +g1,11121:6630773,22881138 +) +g1,11122:7294681,22881138 +g1,11122:8290543,22881138 +g1,11122:10946175,22881138 +g1,11122:11610083,22881138 +g1,11122:13601807,22881138 +g1,11122:15925485,22881138 +g1,11122:16589393,22881138 +g1,11122:17585255,22881138 +g1,11122:18913071,22881138 +g1,11122:19576979,22881138 +h1,11122:22232610,22881138:0,0,0 +k1,11122:32583029,22881138:10350419 +g1,11122:32583029,22881138 +) +(1,11123:6630773,23565993:25952256,291767,0 +h1,11123:6630773,23565993:0,0,0 +h1,11123:6962727,23565993:0,0,0 +k1,11123:32583029,23565993:25620302 +g1,11123:32583029,23565993 +) +(1,11133:6630773,24381920:25952256,424439,6605 +(1,11125:6630773,24381920:0,0,0 +g1,11125:6630773,24381920 +g1,11125:6630773,24381920 +g1,11125:6303093,24381920 +(1,11125:6303093,24381920:0,0,0 +) +g1,11125:6630773,24381920 +) +g1,11133:7626635,24381920 +g1,11133:7958589,24381920 +g1,11133:8290543,24381920 +g1,11133:8622497,24381920 +g1,11133:8954451,24381920 +g1,11133:9286405,24381920 +g1,11133:9618359,24381920 +g1,11133:9950313,24381920 +g1,11133:10282267,24381920 +g1,11133:11610083,24381920 +g1,11133:12273991,24381920 +g1,11133:13601807,24381920 +h1,11133:13933761,24381920:0,0,0 +k1,11133:32583029,24381920:18649268 +g1,11133:32583029,24381920 +) +(1,11133:6630773,25066775:25952256,424439,9908 +h1,11133:6630773,25066775:0,0,0 +g1,11133:7626635,25066775 +g1,11133:9286405,25066775 +g1,11133:9618359,25066775 +g1,11133:9950313,25066775 +g1,11133:10282267,25066775 +g1,11133:10614221,25066775 +g1,11133:10946175,25066775 +g1,11133:12273991,25066775 +g1,11133:12605945,25066775 +h1,11133:13933761,25066775:0,0,0 +k1,11133:32583029,25066775:18649268 +g1,11133:32583029,25066775 +) +(1,11133:6630773,25751630:25952256,407923,86428 +h1,11133:6630773,25751630:0,0,0 +g1,11133:7626635,25751630 +g1,11133:8954451,25751630 +g1,11133:10282267,25751630 +g1,11133:10614221,25751630 +g1,11133:10946175,25751630 +g1,11133:12273991,25751630 +g1,11133:12605945,25751630 +h1,11133:13933761,25751630:0,0,0 +k1,11133:32583029,25751630:18649268 +g1,11133:32583029,25751630 +) +(1,11133:6630773,26436485:25952256,424439,9908 +h1,11133:6630773,26436485:0,0,0 +g1,11133:7626635,26436485 +g1,11133:9950313,26436485 +g1,11133:10282267,26436485 +g1,11133:10614221,26436485 +g1,11133:12273991,26436485 +h1,11133:13933761,26436485:0,0,0 +k1,11133:32583029,26436485:18649268 +g1,11133:32583029,26436485 +) +(1,11133:6630773,27121340:25952256,407923,9908 +h1,11133:6630773,27121340:0,0,0 +g1,11133:7626635,27121340 +g1,11133:9286405,27121340 +g1,11133:9618359,27121340 +g1,11133:9950313,27121340 +g1,11133:10282267,27121340 +g1,11133:10614221,27121340 +g1,11133:12273991,27121340 +h1,11133:13933761,27121340:0,0,0 +k1,11133:32583029,27121340:18649268 +g1,11133:32583029,27121340 +) +(1,11133:6630773,27806195:25952256,424439,86428 +h1,11133:6630773,27806195:0,0,0 +g1,11133:7626635,27806195 +g1,11133:8954451,27806195 +g1,11133:10282267,27806195 +g1,11133:10614221,27806195 +g1,11133:12273991,27806195 +h1,11133:13933761,27806195:0,0,0 +k1,11133:32583029,27806195:18649268 +g1,11133:32583029,27806195 +) +(1,11133:6630773,28491050:25952256,407923,9908 +h1,11133:6630773,28491050:0,0,0 +g1,11133:7626635,28491050 +g1,11133:9286405,28491050 +g1,11133:9618359,28491050 +g1,11133:9950313,28491050 +g1,11133:10282267,28491050 +g1,11133:10614221,28491050 +g1,11133:12273991,28491050 +h1,11133:13933761,28491050:0,0,0 +k1,11133:32583029,28491050:18649268 +g1,11133:32583029,28491050 +) +] +) +g1,11134:32583029,28500958 +g1,11134:6630773,28500958 +g1,11134:6630773,28500958 +g1,11134:32583029,28500958 +g1,11134:32583029,28500958 +) +h1,11134:6630773,28697566:0,0,0 +v1,11138:6630773,29382421:0,393216,0 +(1,11152:6630773,35230072:25952256,6240867,196608 +g1,11152:6630773,35230072 +g1,11152:6630773,35230072 +g1,11152:6434165,35230072 +(1,11152:6434165,35230072:0,6240867,196608 +r1,11200:32779637,35230072:26345472,6437475,196608 +k1,11152:6434165,35230072:-26345472 +) +(1,11152:6434165,35230072:26345472,6240867,196608 +[1,11152:6630773,35230072:25952256,6044259,0 +(1,11140:6630773,29610252:25952256,424439,106246 +(1,11139:6630773,29610252:0,0,0 +g1,11139:6630773,29610252 +g1,11139:6630773,29610252 +g1,11139:6303093,29610252 +(1,11139:6303093,29610252:0,0,0 +) +g1,11139:6630773,29610252 +) +g1,11140:7294681,29610252 +g1,11140:8290543,29610252 +g1,11140:10946175,29610252 +g1,11140:11610083,29610252 +g1,11140:13601807,29610252 +g1,11140:15925485,29610252 +g1,11140:16589393,29610252 +g1,11140:17585255,29610252 +g1,11140:18913071,29610252 +g1,11140:19576979,29610252 +h1,11140:22232610,29610252:0,0,0 +k1,11140:32583029,29610252:10350419 +g1,11140:32583029,29610252 +) +(1,11141:6630773,30295107:25952256,291767,0 +h1,11141:6630773,30295107:0,0,0 +h1,11141:6962727,30295107:0,0,0 +k1,11141:32583029,30295107:25620302 +g1,11141:32583029,30295107 +) +(1,11151:6630773,31111034:25952256,407923,9908 +(1,11143:6630773,31111034:0,0,0 +g1,11143:6630773,31111034 +g1,11143:6630773,31111034 +g1,11143:6303093,31111034 +(1,11143:6303093,31111034:0,0,0 +) +g1,11143:6630773,31111034 +) +g1,11151:7626635,31111034 +g1,11151:7958589,31111034 +g1,11151:8290543,31111034 +g1,11151:8622497,31111034 +g1,11151:8954451,31111034 +g1,11151:9286405,31111034 +g1,11151:9618359,31111034 +g1,11151:9950313,31111034 +g1,11151:10282267,31111034 +g1,11151:11610083,31111034 +g1,11151:12273991,31111034 +g1,11151:12605945,31111034 +g1,11151:13933761,31111034 +g1,11151:14597669,31111034 +g1,11151:14929623,31111034 +g1,11151:16257439,31111034 +h1,11151:16589393,31111034:0,0,0 +k1,11151:32583029,31111034:15993636 +g1,11151:32583029,31111034 +) +(1,11151:6630773,31795889:25952256,424439,9908 +h1,11151:6630773,31795889:0,0,0 +g1,11151:7626635,31795889 +g1,11151:9286405,31795889 +g1,11151:9618359,31795889 +g1,11151:9950313,31795889 +g1,11151:10282267,31795889 +g1,11151:10614221,31795889 +g1,11151:12273991,31795889 +g1,11151:12605945,31795889 +g1,11151:14597669,31795889 +g1,11151:14929623,31795889 +h1,11151:16589393,31795889:0,0,0 +k1,11151:32583029,31795889:15993636 +g1,11151:32583029,31795889 +) +(1,11151:6630773,32480744:25952256,407923,86428 +h1,11151:6630773,32480744:0,0,0 +g1,11151:7626635,32480744 +g1,11151:8954451,32480744 +g1,11151:10282267,32480744 +g1,11151:10614221,32480744 +g1,11151:12273991,32480744 +g1,11151:12605945,32480744 +g1,11151:14597669,32480744 +g1,11151:14929623,32480744 +h1,11151:16589393,32480744:0,0,0 +k1,11151:32583029,32480744:15993636 +g1,11151:32583029,32480744 +) +(1,11151:6630773,33165599:25952256,424439,9908 +h1,11151:6630773,33165599:0,0,0 +g1,11151:7626635,33165599 +g1,11151:9950313,33165599 +g1,11151:10282267,33165599 +g1,11151:10614221,33165599 +g1,11151:12273991,33165599 +g1,11151:12605945,33165599 +g1,11151:14597669,33165599 +h1,11151:16589393,33165599:0,0,0 +k1,11151:32583029,33165599:15993636 +g1,11151:32583029,33165599 +) +(1,11151:6630773,33850454:25952256,407923,9908 +h1,11151:6630773,33850454:0,0,0 +g1,11151:7626635,33850454 +g1,11151:9286405,33850454 +g1,11151:9618359,33850454 +g1,11151:9950313,33850454 +g1,11151:10282267,33850454 +g1,11151:10614221,33850454 +g1,11151:12273991,33850454 +g1,11151:12605945,33850454 +g1,11151:14597669,33850454 +h1,11151:16589393,33850454:0,0,0 +k1,11151:32583029,33850454:15993636 +g1,11151:32583029,33850454 +) +(1,11151:6630773,34535309:25952256,424439,86428 +h1,11151:6630773,34535309:0,0,0 +g1,11151:7626635,34535309 +g1,11151:8954451,34535309 +g1,11151:10282267,34535309 +g1,11151:10614221,34535309 +g1,11151:12273991,34535309 +g1,11151:14597669,34535309 +h1,11151:16589393,34535309:0,0,0 +k1,11151:32583029,34535309:15993636 +g1,11151:32583029,34535309 +) +(1,11151:6630773,35220164:25952256,407923,9908 +h1,11151:6630773,35220164:0,0,0 +g1,11151:7626635,35220164 +g1,11151:9286405,35220164 +g1,11151:9618359,35220164 +g1,11151:9950313,35220164 +g1,11151:10282267,35220164 +g1,11151:10614221,35220164 +g1,11151:12273991,35220164 +g1,11151:14597669,35220164 +h1,11151:16589393,35220164:0,0,0 +k1,11151:32583029,35220164:15993636 +g1,11151:32583029,35220164 +) +] +) +g1,11152:32583029,35230072 +g1,11152:6630773,35230072 +g1,11152:6630773,35230072 +g1,11152:32583029,35230072 +g1,11152:32583029,35230072 +) +h1,11152:6630773,35426680:0,0,0 +(1,11156:6630773,36291760:25952256,513147,126483 +h1,11155:6630773,36291760:983040,0,0 +k1,11155:9861049,36291760:259526 +k1,11155:13145065,36291760:259525 +k1,11155:14007523,36291760:259526 +k1,11155:14681824,36291760:259458 +k1,11155:15919803,36291760:259525 +k1,11155:19152702,36291760:259526 +k1,11155:20786519,36291760:259525 +k1,11155:22205378,36291760:259526 +k1,11155:24560747,36291760:259525 +k1,11155:28372330,36291760:259526 +k1,11155:30491115,36291760:259526 +k1,11155:31841816,36291760:259525 +k1,11155:32583029,36291760:0 +) +(1,11156:6630773,37156840:25952256,513147,134348 +k1,11155:8673572,37156840:207788 +k1,11155:10590541,37156840:207788 +k1,11155:12190317,37156840:207789 +k1,11155:15041832,37156840:207788 +k1,11155:15859105,37156840:207788 +k1,11155:21450686,37156840:207788 +(1,11155:21450686,37156840:0,452978,115847 +r1,11200:23215800,37156840:1765114,568825,115847 +k1,11155:21450686,37156840:-1765114 +) +(1,11155:21450686,37156840:1765114,452978,115847 +g1,11155:22157387,37156840 +g1,11155:22860811,37156840 +h1,11155:23212523,37156840:0,411205,112570 +) +k1,11155:23597258,37156840:207788 +k1,11155:24558712,37156840:207789 +k1,11155:28850710,37156840:207788 +k1,11155:30540925,37156840:207788 +k1,11155:32583029,37156840:0 +) +(1,11156:6630773,38021920:25952256,513147,134348 +k1,11155:8128017,38021920:136715 +k1,11155:9355909,38021920:136716 +k1,11155:10233837,38021920:136715 +k1,11155:12205564,38021920:136716 +k1,11155:14051460,38021920:136715 +k1,11155:15194154,38021920:136715 +k1,11155:16964684,38021920:136716 +k1,11155:19152679,38021920:136715 +k1,11155:19969003,38021920:136715 +k1,11155:21040264,38021920:136716 +k1,11155:23856095,38021920:136715 +k1,11155:27133302,38021920:136716 +k1,11155:28448356,38021920:136715 +k1,11155:32583029,38021920:0 +) +(1,11156:6630773,38887000:25952256,513147,126483 +k1,11155:8118592,38887000:221662 +k1,11155:10512776,38887000:221662 +k1,11155:11379314,38887000:221663 +k1,11155:12600402,38887000:221662 +(1,11155:12600402,38887000:0,414482,115847 +r1,11200:13662091,38887000:1061689,530329,115847 +k1,11155:12600402,38887000:-1061689 +) +(1,11155:12600402,38887000:1061689,414482,115847 +k1,11155:12600402,38887000:3277 +h1,11155:13658814,38887000:0,411205,112570 +) +k1,11155:13883753,38887000:221662 +k1,11155:17333723,38887000:221662 +k1,11155:18208124,38887000:221662 +k1,11155:20167148,38887000:221662 +k1,11155:23529302,38887000:221663 +k1,11155:24238523,38887000:221633 +k1,11155:25459610,38887000:221662 +k1,11155:28470488,38887000:221662 +k1,11155:31938154,38887000:221662 +k1,11155:32583029,38887000:0 +) +(1,11156:6630773,39752080:25952256,513147,134348 +k1,11155:7836268,39752080:199516 +k1,11155:11254263,39752080:199517 +k1,11155:14469096,39752080:199516 +(1,11155:14469096,39752080:0,435480,115847 +r1,11200:17289345,39752080:2820249,551327,115847 +k1,11155:14469096,39752080:-2820249 +) +(1,11155:14469096,39752080:2820249,435480,115847 +g1,11155:16230932,39752080 +g1,11155:16934356,39752080 +h1,11155:17286068,39752080:0,411205,112570 +) +k1,11155:17488861,39752080:199516 +k1,11155:20131563,39752080:199516 +k1,11155:21084745,39752080:199517 +k1,11155:24247804,39752080:199516 +k1,11155:27141510,39752080:199516 +(1,11155:27141510,39752080:0,414482,115847 +r1,11200:27499776,39752080:358266,530329,115847 +k1,11155:27141510,39752080:-358266 +) +(1,11155:27141510,39752080:358266,414482,115847 +k1,11155:27141510,39752080:3277 +h1,11155:27496499,39752080:0,411205,112570 +) +k1,11155:27699292,39752080:199516 +k1,11155:28508294,39752080:199517 +k1,11155:30170575,39752080:199516 +k1,11155:31858416,39752080:199516 +(1,11155:32058957,39752080:0,459977,115847 +r1,11200:32417223,39752080:358266,575824,115847 +k1,11155:32058957,39752080:-358266 +) +(1,11155:32058957,39752080:358266,459977,115847 +k1,11155:32058957,39752080:3277 +h1,11155:32413946,39752080:0,411205,112570 +) +k1,11155:32583029,39752080:0 +) +(1,11156:6630773,40617160:25952256,513147,134348 +k1,11155:7987182,40617160:178070 +k1,11155:10553387,40617160:178069 +k1,11155:11486432,40617160:178070 +k1,11155:13382857,40617160:178069 +k1,11155:13916787,40617160:178070 +k1,11155:16806740,40617160:178069 +k1,11155:17629685,40617160:178070 +k1,11155:18583046,40617160:178069 +k1,11155:20969682,40617160:178070 +k1,11155:23243595,40617160:178069 +k1,11155:26649973,40617160:178070 +(1,11155:26850514,40617160:0,435480,115847 +r1,11200:28967340,40617160:2116826,551327,115847 +k1,11155:26850514,40617160:-2116826 +) +(1,11155:26850514,40617160:2116826,435480,115847 +g1,11155:27908927,40617160 +g1,11155:28612351,40617160 +h1,11155:28964063,40617160:0,411205,112570 +) +k1,11155:29352503,40617160:178069 +k1,11155:32224763,40617160:178070 +(1,11155:32224763,40617160:0,414482,115847 +r1,11200:32583029,40617160:358266,530329,115847 +k1,11155:32224763,40617160:-358266 +) +(1,11155:32224763,40617160:358266,414482,115847 +k1,11155:32224763,40617160:3277 +h1,11155:32579752,40617160:0,411205,112570 +) +k1,11155:32583029,40617160:0 +) +(1,11156:6630773,41482240:25952256,513147,134348 +g1,11155:9337414,41482240 +g1,11155:10656656,41482240 +g1,11155:11613482,41482240 +g1,11155:14485274,41482240 +g1,11155:17494692,41482240 +g1,11155:18724149,41482240 +g1,11155:21156194,41482240 +h1,11155:22672700,41482240:0,0,0 +g1,11155:22865376,41482240 +g1,11155:23860869,41482240 +g1,11155:25532039,41482240 +h1,11155:26714310,41482240:0,0,0 +h1,11155:27088521,41482240:0,0,0 +k1,11156:32583029,41482240:5615750 +g1,11156:32583029,41482240 +) +v1,11158:6630773,42167095:0,393216,0 +(1,11168:6630773,45345240:25952256,3571361,196608 +g1,11168:6630773,45345240 +g1,11168:6630773,45345240 +g1,11168:6434165,45345240 +(1,11168:6434165,45345240:0,3571361,196608 +r1,11200:32779637,45345240:26345472,3767969,196608 +k1,11168:6434165,45345240:-26345472 +) +(1,11168:6434165,45345240:26345472,3571361,196608 +[1,11168:6630773,45345240:25952256,3374753,0 +(1,11160:6630773,42394926:25952256,424439,112852 +(1,11159:6630773,42394926:0,0,0 +g1,11159:6630773,42394926 +g1,11159:6630773,42394926 +g1,11159:6303093,42394926 +(1,11159:6303093,42394926:0,0,0 +) +g1,11159:6630773,42394926 +) +k1,11160:6630773,42394926:0 +g1,11160:12273990,42394926 +g1,11160:12937898,42394926 +g1,11160:13933760,42394926 +g1,11160:15593530,42394926 +g1,11160:17253300,42394926 +g1,11160:18913070,42394926 +g1,11160:20240886,42394926 +k1,11160:20240886,42394926:1652 +h1,11160:22234262,42394926:0,0,0 +k1,11160:32583029,42394926:10348767 +g1,11160:32583029,42394926 +) +(1,11161:6630773,43079781:25952256,431045,79822 +h1,11161:6630773,43079781:0,0,0 +g1,11161:8290543,43079781 +g1,11161:9286405,43079781 +k1,11161:9286405,43079781:0 +h1,11161:12273991,43079781:0,0,0 +k1,11161:32583029,43079781:20309038 +g1,11161:32583029,43079781 +) +(1,11162:6630773,43764636:25952256,431045,106246 +h1,11162:6630773,43764636:0,0,0 +g1,11162:7294681,43764636 +g1,11162:8290543,43764636 +g1,11162:11278129,43764636 +g1,11162:11942037,43764636 +g1,11162:13933761,43764636 +g1,11162:15261577,43764636 +g1,11162:15925485,43764636 +g1,11162:17585255,43764636 +g1,11162:18581117,43764636 +g1,11162:19245025,43764636 +h1,11162:19908933,43764636:0,0,0 +k1,11162:32583029,43764636:12674096 +g1,11162:32583029,43764636 +) +(1,11163:6630773,44449491:25952256,424439,79822 +h1,11163:6630773,44449491:0,0,0 +k1,11163:6630773,44449491:0 +h1,11163:8622497,44449491:0,0,0 +k1,11163:32583029,44449491:23960532 +g1,11163:32583029,44449491 +) +(1,11167:6630773,45265418:25952256,424439,79822 +(1,11165:6630773,45265418:0,0,0 +g1,11165:6630773,45265418 +g1,11165:6630773,45265418 +g1,11165:6303093,45265418 +(1,11165:6303093,45265418:0,0,0 +) +g1,11165:6630773,45265418 +) +g1,11167:7626635,45265418 +g1,11167:7958589,45265418 +g1,11167:9286405,45265418 +g1,11167:11610083,45265418 +g1,11167:12937899,45265418 +g1,11167:14597669,45265418 +g1,11167:16257439,45265418 +g1,11167:17917209,45265418 +g1,11167:19576979,45265418 +h1,11167:20572841,45265418:0,0,0 +k1,11167:32583029,45265418:12010188 +g1,11167:32583029,45265418 +) +] +) +g1,11168:32583029,45345240 +g1,11168:6630773,45345240 +g1,11168:6630773,45345240 +g1,11168:32583029,45345240 +g1,11168:32583029,45345240 +) +h1,11168:6630773,45541848:0,0,0 +] +(1,11200:32583029,45706769:0,0,0 +g1,11200:32583029,45706769 +) +) +] +(1,11200:6630773,47279633:25952256,0,0 +h1,11200:6630773,47279633:25952256,0,0 +) +] +(1,11200:4262630,4025873:0,0,0 +[1,11200:-473656,4025873:0,0,0 +(1,11200:-473656,-710413:0,0,0 +(1,11200:-473656,-710413:0,0,0 +g1,11200:-473656,-710413 +) +g1,11200:-473656,-710413 ) ] ) ] !31474 -}173 -Input:1871:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1872:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1873:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}174 Input:1874:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1875:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1876:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1877:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1878:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1879:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1880:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1881:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{174 -[1,11213:4262630,47279633:28320399,43253760,0 -(1,11213:4262630,4025873:0,0,0 -[1,11213:-473656,4025873:0,0,0 -(1,11213:-473656,-710413:0,0,0 -(1,11213:-473656,-644877:0,0,0 -k1,11213:-473656,-644877:-65536 +{175 +[1,11212:4262630,47279633:28320399,43253760,0 +(1,11212:4262630,4025873:0,0,0 +[1,11212:-473656,4025873:0,0,0 +(1,11212:-473656,-710413:0,0,0 +(1,11212:-473656,-644877:0,0,0 +k1,11212:-473656,-644877:-65536 ) -(1,11213:-473656,4736287:0,0,0 -k1,11213:-473656,4736287:5209943 +(1,11212:-473656,4736287:0,0,0 +k1,11212:-473656,4736287:5209943 ) -g1,11213:-473656,-710413 +g1,11212:-473656,-710413 ) ] ) -[1,11213:6630773,47279633:25952256,43253760,0 -[1,11213:6630773,4812305:25952256,786432,0 -(1,11213:6630773,4812305:25952256,505283,126483 -(1,11213:6630773,4812305:25952256,505283,126483 -g1,11213:3078558,4812305 -[1,11213:3078558,4812305:0,0,0 -(1,11213:3078558,2439708:0,1703936,0 -k1,11213:1358238,2439708:-1720320 +[1,11212:6630773,47279633:25952256,43253760,0 +[1,11212:6630773,4812305:25952256,786432,0 +(1,11212:6630773,4812305:25952256,505283,126483 +(1,11212:6630773,4812305:25952256,505283,126483 +g1,11212:3078558,4812305 +[1,11212:3078558,4812305:0,0,0 +(1,11212:3078558,2439708:0,1703936,0 +k1,11212:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11213:2537886,2439708:1179648,16384,0 +r1,11212:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11213:3078558,1915420:16384,1179648,0 +r1,11212:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -199927,16 +200110,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11213:3078558,4812305:0,0,0 -(1,11213:3078558,2439708:0,1703936,0 -g1,11213:29030814,2439708 -g1,11213:36135244,2439708 +[1,11212:3078558,4812305:0,0,0 +(1,11212:3078558,2439708:0,1703936,0 +g1,11212:29030814,2439708 +g1,11212:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11213:36151628,1915420:16384,1179648,0 +r1,11212:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -199945,25 +200128,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11213:37855564,2439708:1179648,16384,0 +r1,11212:37855564,2439708:1179648,16384,0 ) ) -k1,11213:3078556,2439708:-34777008 +k1,11212:3078556,2439708:-34777008 ) ] -[1,11213:3078558,4812305:0,0,0 -(1,11213:3078558,49800853:0,16384,2228224 -k1,11213:1358238,49800853:-1720320 +[1,11212:3078558,4812305:0,0,0 +(1,11212:3078558,49800853:0,16384,2228224 +k1,11212:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11213:2537886,49800853:1179648,16384,0 +r1,11212:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11213:3078558,51504789:16384,1179648,0 +r1,11212:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -199973,16 +200156,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11213:3078558,4812305:0,0,0 -(1,11213:3078558,49800853:0,16384,2228224 -g1,11213:29030814,49800853 -g1,11213:36135244,49800853 +[1,11212:3078558,4812305:0,0,0 +(1,11212:3078558,49800853:0,16384,2228224 +g1,11212:29030814,49800853 +g1,11212:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11213:36151628,51504789:16384,1179648,0 +r1,11212:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -199991,1605 +200174,1605 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11213:37855564,49800853:1179648,16384,0 -) -) -k1,11213:3078556,49800853:-34777008 -) -] -g1,11213:6630773,4812305 -g1,11213:6630773,4812305 -g1,11213:9827619,4812305 -g1,11213:11304145,4812305 -g1,11213:13937381,4812305 -g1,11213:15932296,4812305 -k1,11213:31387652,4812305:15455356 -) -) -] -[1,11213:6630773,45706769:25952256,40108032,0 -(1,11213:6630773,45706769:25952256,40108032,0 -(1,11213:6630773,45706769:0,0,0 -g1,11213:6630773,45706769 -) -[1,11213:6630773,45706769:25952256,40108032,0 -[1,11201:6630773,28481320:25952256,22882583,0 -[1,11201:6630773,28481320:25952256,22882583,0 -(1,11175:6630773,6759380:25952256,505283,11795 -h1,11175:6607180,6759380:0,0,0 -g1,11175:8644694,6759380 -k1,11175:32583029,6759380:22968402 -g1,11175:32583029,6759380 -) -(1,11175:6630773,7624460:25952256,513147,134348 -h1,11175:6630773,7624460:0,0,0 -k1,11175:7311358,7624460:265742 -k1,11175:10602963,7624460:265808 -k1,11175:12153278,7624460:265809 -k1,11175:13523368,7624460:265808 -k1,11175:16999130,7624460:265809 -k1,11175:18212590,7624460:265809 -k1,11175:21195521,7624460:265808 -k1,11175:23380224,7624460:265809 -k1,11175:25203823,7624460:265808 -k1,11175:27517632,7624460:265809 -k1,11175:30091618,7624460:265808 -k1,11175:31043589,7624460:265809 -k1,11175:32583029,7624460:0 -) -(1,11175:6630773,8489540:25952256,513147,126483 -k1,11175:8816874,8489540:216744 -k1,11175:9981268,8489540:216743 -k1,11175:11706651,8489540:216744 -k1,11175:13229528,8489540:216744 -k1,11175:16900675,8489540:216744 -k1,11175:19188356,8489540:216743 -k1,11175:20352751,8489540:216744 -(1,11175:20352751,8489540:0,452978,115847 -r1,11213:23524711,8489540:3171960,568825,115847 -k1,11175:20352751,8489540:-3171960 -) -(1,11175:20352751,8489540:3171960,452978,115847 -k1,11175:20352751,8489540:3277 -h1,11175:23521434,8489540:0,411205,112570 -) -k1,11175:23915125,8489540:216744 -(1,11175:23915125,8489540:0,452978,115847 -r1,11213:27087085,8489540:3171960,568825,115847 -k1,11175:23915125,8489540:-3171960 -) -(1,11175:23915125,8489540:3171960,452978,115847 -k1,11175:23915125,8489540:3277 -h1,11175:27083808,8489540:0,411205,112570 -) -k1,11175:27477498,8489540:216743 -(1,11175:27477498,8489540:0,452978,115847 -r1,11213:31001170,8489540:3523672,568825,115847 -k1,11175:27477498,8489540:-3523672 -) -(1,11175:27477498,8489540:3523672,452978,115847 -k1,11175:27477498,8489540:3277 -h1,11175:30997893,8489540:0,411205,112570 -) -k1,11175:31391584,8489540:216744 -k1,11175:32583029,8489540:0 -) -(1,11175:6630773,9354620:25952256,513147,134348 -(1,11175:6630773,9354620:0,452978,115847 -r1,11213:10154445,9354620:3523672,568825,115847 -k1,11175:6630773,9354620:-3523672 -) -(1,11175:6630773,9354620:3523672,452978,115847 -k1,11175:6630773,9354620:3277 -h1,11175:10151168,9354620:0,411205,112570 -) -k1,11175:10397481,9354620:243036 -k1,11175:12525989,9354620:243037 -k1,11175:14817025,9354620:243036 -(1,11175:14817025,9354620:0,452978,115847 -r1,11213:16933850,9354620:2116825,568825,115847 -k1,11175:14817025,9354620:-2116825 -) -(1,11175:14817025,9354620:2116825,452978,115847 -k1,11175:14817025,9354620:3277 -h1,11175:16930573,9354620:0,411205,112570 -) -k1,11175:17176886,9354620:243036 -k1,11175:19883420,9354620:243036 -k1,11175:21616746,9354620:243037 -k1,11175:24885579,9354620:243036 -k1,11175:26413121,9354620:243036 -k1,11175:28666802,9354620:243036 -k1,11175:29265699,9354620:243037 -k1,11175:31189078,9354620:243036 -k1,11175:32583029,9354620:0 -) -(1,11175:6630773,10219700:25952256,505283,134348 -k1,11175:7846214,10219700:196356 -k1,11175:9696043,10219700:196356 -k1,11175:13567658,10219700:196356 -k1,11175:14450175,10219700:196355 -k1,11175:15665616,10219700:196356 -k1,11175:18934300,10219700:196356 -k1,11175:21335943,10219700:196356 -k1,11175:22218461,10219700:196356 -k1,11175:24123341,10219700:196356 -k1,11175:25311256,10219700:196355 -k1,11175:28785067,10219700:196356 -k1,11175:29597461,10219700:196356 -k1,11175:30812902,10219700:196356 -k1,11175:32583029,10219700:0 -) -(1,11175:6630773,11084780:25952256,505283,7863 -g1,11175:8343228,11084780 -g1,11175:9158495,11084780 -g1,11175:10560965,11084780 -k1,11175:32583029,11084780:20387596 -g1,11175:32583029,11084780 -) -(1,11200:6630773,28481320:25952256,16975800,0 -k1,11200:6992758,28481320:361985 -k1,11178:7354744,28481320:361986 -[1,11200:7354744,28481320:24866300,16975800,0 -(1,11200:7354744,11571056:24866300,65536,0 -g1,11200:7354744,11571056 -(1,11200:7354744,11571056:24866300,65536,0 -r1,11213:32221044,11571056:24866300,65536,0 -) -g1,11200:32221044,11571056 -) -(1,11200:7354744,20165802:24866300,8529210,8118910 -g1,11200:7354744,20165802 -(1,11200:7354744,20165802:24866300,8529210,8118910 -g1,11178:7553973,20165802 -$1,11200:7553973,20165802 -[1,11200:7553973,20165802:24667071,8529210,8118910 -(1,11181:7553973,12427712:24667071,555093,237900 -g1,11180:7553973,12427712 -(1,11180:7553973,12427712:5433398,555093,237900 -r1,11213:7553973,12427712:0,792993,237900 -g1,11180:7881653,12427712 -g1,11180:7881654,12427712 -k1,11180:12659691,12427712:1988169 -g1,11180:12987371,12427712 -) -g1,11180:12987371,12427712 -(1,11180:12987371,12427712:11273228,555093,237900 -g1,11180:13315051,12427712 -g1,11180:13315052,12427712 -k1,11180:23932919,12427712:6432083 -g1,11180:24260599,12427712 -) -g1,11180:24260599,12427712 -(1,11181:24260599,12427712:7960445,555093,237900 -g1,11180:24588279,12427712 -g1,11180:24588280,12427712 -g1,11180:27722867,12427712 -g1,11180:29650936,12427712 -k1,11181:31893364,12427712:229162 -g1,11181:32221044,12427712 -) -g1,11181:32221044,12427712 -) -(1,11183:7553973,13600514:24667071,605553,259526 -g1,11182:7553973,13600514 -(1,11182:7553973,13600514:5433398,605553,259526 -r1,11213:7553973,13600514:0,792993,237900 -g1,11182:7881653,13600514 -g1,11182:7881654,13600514 -(1,11182:7881654,13600514:0,452978,115847 -r1,11213:9646767,13600514:1765113,568825,115847 -k1,11182:7881654,13600514:-1765113 -) -(1,11182:7881654,13600514:1765113,452978,115847 -k1,11182:7881654,13600514:3277 -h1,11182:9643490,13600514:0,411205,112570 -) -g1,11182:9845996,13600514 -r1,11213:9845996,13600514:0,865079,259526 -k1,11182:12659691,13600514:2813695 -g1,11182:12987371,13600514 -) -g1,11182:12987371,13600514 -(1,11182:12987371,13600514:11273228,605553,259526 -g1,11182:13315051,13600514 -g1,11182:13315052,13600514 -$1,11182:13315052,13600514 -(1,11182:13315052,13639158:649462,567542,79954 -) -[1,11182:13964514,13742052:909902,735560,5505 -(1,11182:13964514,13255136:393347,248644,5505 -) -(1,11182:13964514,13742052:909902,346358,5505 -) -] -g1,11182:14983652,13600514 -(1,11182:15456823,13698828:233243,346358,5505 -) -$1,11182:15690066,13600514 -k1,11182:23932919,13600514:8242853 -g1,11182:24260599,13600514 -) -g1,11182:24260599,13600514 -(1,11183:24260599,13600514:7960445,605553,259526 -g1,11182:24588279,13600514 -g1,11182:24588280,13600514 -(1,11182:24588280,13600514:0,452978,115847 -r1,11213:27056817,13600514:2468537,568825,115847 -k1,11182:24588280,13600514:-2468537 -) -(1,11182:24588280,13600514:2468537,452978,115847 -k1,11182:24588280,13600514:3277 -h1,11182:27053540,13600514:0,411205,112570 -) -g1,11182:27429716,13600514 -$1,11182:27429716,13600514 -$1,11182:27828175,13600514 -k1,11183:31893364,13600514:4065189 -g1,11183:32221044,13600514 -) -g1,11183:32221044,13600514 -) -(1,11184:7553973,14559116:24667071,699076,259526 -g1,11183:7553973,14559116 -(1,11183:7553973,14559116:5433398,699076,259526 -r1,11213:7553973,14559116:0,792993,237900 -g1,11183:7881653,14559116 -g1,11183:7881654,14559116 -(1,11183:7881654,14559116:0,452978,115847 -r1,11213:11053614,14559116:3171960,568825,115847 -k1,11183:7881654,14559116:-3171960 -) -(1,11183:7881654,14559116:3171960,452978,115847 -k1,11183:7881654,14559116:3277 -h1,11183:11050337,14559116:0,411205,112570 -) -g1,11183:11252843,14559116 -r1,11213:11252843,14559116:0,865079,259526 -k1,11183:12659691,14559116:1406848 -g1,11183:12987371,14559116 -) -g1,11183:12987371,14559116 -(1,11183:12987371,14559116:11273228,699076,259526 -g1,11183:13315051,14559116 -g1,11183:13315052,14559116 -$1,11183:13315052,14559116 -(1,11183:13315052,14597760:649462,567542,79954 -) -[1,11183:13964514,14700654:963576,840614,96797 -(1,11183:13964514,14213738:213058,353698,5505 -) -(1,11183:13964514,14700654:963576,346358,96797 -) -] -g1,11183:15037326,14559116 -(1,11183:15510497,14657430:233243,346358,5505 -) -$1,11183:15743740,14559116 -k1,11183:23932919,14559116:8189179 -g1,11183:24260599,14559116 -) -g1,11183:24260599,14559116 -(1,11184:24260599,14559116:7960445,699076,259526 -g1,11183:24588279,14559116 -g1,11183:24588280,14559116 -(1,11183:24588280,14559116:0,452978,115847 -r1,11213:27056817,14559116:2468537,568825,115847 -k1,11183:24588280,14559116:-2468537 -) -(1,11183:24588280,14559116:2468537,452978,115847 -k1,11183:24588280,14559116:3277 -h1,11183:27053540,14559116:0,411205,112570 -) -g1,11183:27429716,14559116 -$1,11183:27429716,14559116 -$1,11183:27944829,14559116 -k1,11184:31893364,14559116:3948535 -g1,11184:32221044,14559116 -) -g1,11184:32221044,14559116 -) -(1,11185:7553973,15424195:24667071,605553,259526 -g1,11184:7553973,15424195 -(1,11184:7553973,15424195:5433398,605553,259526 -r1,11213:7553973,15424195:0,792993,237900 -g1,11184:7881653,15424195 -g1,11184:7881654,15424195 -(1,11184:7881654,15424195:0,452978,115847 -r1,11213:11053614,15424195:3171960,568825,115847 -k1,11184:7881654,15424195:-3171960 -) -(1,11184:7881654,15424195:3171960,452978,115847 -k1,11184:7881654,15424195:3277 -h1,11184:11050337,15424195:0,411205,112570 -) -g1,11184:11252843,15424195 -r1,11213:11252843,15424195:0,865079,259526 -k1,11184:12659691,15424195:1406848 -g1,11184:12987371,15424195 -) -g1,11184:12987371,15424195 -(1,11184:12987371,15424195:11273228,605553,259526 -g1,11184:13315051,15424195 -g1,11184:13315052,15424195 -$1,11184:13315052,15424195 -(1,11184:13315052,15462839:649462,567542,79954 -) -[1,11184:13964514,15565733:909902,735560,5505 -(1,11184:13964514,15078817:393347,248644,5505 -) -(1,11184:13964514,15565733:909902,346358,5505 -) -] -g1,11184:14983652,15424195 -(1,11184:15456823,15522509:286917,346358,96797 -) -$1,11184:15743740,15424195 -k1,11184:23932919,15424195:8189179 -g1,11184:24260599,15424195 -) -g1,11184:24260599,15424195 -(1,11185:24260599,15424195:7960445,605553,259526 -g1,11184:24588279,15424195 -g1,11184:24588280,15424195 -(1,11184:24588280,15424195:0,452978,115847 -r1,11213:27056817,15424195:2468537,568825,115847 -k1,11184:24588280,15424195:-2468537 -) -(1,11184:24588280,15424195:2468537,452978,115847 -k1,11184:24588280,15424195:3277 -h1,11184:27053540,15424195:0,411205,112570 -) -g1,11184:27429716,15424195 -$1,11184:27429716,15424195 -$1,11184:27687272,15424195 -k1,11185:31893364,15424195:4206092 -g1,11185:32221044,15424195 -) -g1,11185:32221044,15424195 -) -(1,11186:7553973,16289274:24667071,605553,259526 -g1,11185:7553973,16289274 -(1,11185:7553973,16289274:5433398,605553,259526 -r1,11213:7553973,16289274:0,792993,237900 -g1,11185:7881653,16289274 -g1,11185:7881654,16289274 -(1,11185:7881654,16289274:0,452978,115847 -r1,11213:9998479,16289274:2116825,568825,115847 -k1,11185:7881654,16289274:-2116825 -) -(1,11185:7881654,16289274:2116825,452978,115847 -k1,11185:7881654,16289274:3277 -h1,11185:9995202,16289274:0,411205,112570 -) -g1,11185:10197708,16289274 -r1,11213:10197708,16289274:0,865079,259526 -k1,11185:12659691,16289274:2461983 -g1,11185:12987371,16289274 -) -g1,11185:12987371,16289274 -(1,11185:12987371,16289274:11273228,605553,259526 -g1,11185:13315051,16289274 -g1,11185:13315052,16289274 -$1,11185:13315052,16289274 -(1,11185:13315052,16327918:649462,567542,79954 -) -[1,11185:13964514,16430812:909902,735560,5505 -(1,11185:13964514,15943896:393347,248644,5505 -) -(1,11185:13964514,16430812:909902,346358,5505 -) -] -g1,11185:14983652,16289274 -(1,11185:15456823,16387588:233243,346358,5505 -) -$1,11185:15690066,16289274 -k1,11185:23932919,16289274:8242853 -g1,11185:24260599,16289274 -) -g1,11185:24260599,16289274 -(1,11186:24260599,16289274:7960445,605553,259526 -g1,11185:24588279,16289274 -g1,11185:24588280,16289274 -(1,11185:24588280,16289274:0,452978,115847 -r1,11213:27056817,16289274:2468537,568825,115847 -k1,11185:24588280,16289274:-2468537 -) -(1,11185:24588280,16289274:2468537,452978,115847 -k1,11185:24588280,16289274:3277 -h1,11185:27053540,16289274:0,411205,112570 -) -g1,11185:27429716,16289274 -$1,11185:27429716,16289274 -$1,11185:27828175,16289274 -k1,11186:31893364,16289274:4065189 -g1,11186:32221044,16289274 -) -g1,11186:32221044,16289274 -) -(1,11187:7553973,17247876:24667071,699076,259526 -g1,11186:7553973,17247876 -(1,11186:7553973,17247876:5433398,699076,259526 -r1,11213:7553973,17247876:0,792993,237900 -g1,11186:7881653,17247876 -g1,11186:7881654,17247876 -(1,11186:7881654,17247876:0,452978,115847 -r1,11213:11405326,17247876:3523672,568825,115847 -k1,11186:7881654,17247876:-3523672 -) -(1,11186:7881654,17247876:3523672,452978,115847 -k1,11186:7881654,17247876:3277 -h1,11186:11402049,17247876:0,411205,112570 -) -g1,11186:11604555,17247876 -r1,11213:11604555,17247876:0,865079,259526 -k1,11186:12659691,17247876:1055136 -g1,11186:12987371,17247876 -) -g1,11186:12987371,17247876 -(1,11186:12987371,17247876:11273228,699076,259526 -g1,11186:13315051,17247876 -g1,11186:13315052,17247876 -$1,11186:13315052,17247876 -(1,11186:13315052,17286520:649462,567542,79954 -) -[1,11186:13964514,17389414:963576,840614,96797 -(1,11186:13964514,16902498:213058,353698,5505 -) -(1,11186:13964514,17389414:963576,346358,96797 -) -] -g1,11186:15037326,17247876 -(1,11186:15510497,17346190:233243,346358,5505 -) -$1,11186:16345360,17247876 -k1,11186:23932919,17247876:7587559 -g1,11186:24260599,17247876 -) -g1,11186:24260599,17247876 -(1,11187:24260599,17247876:7960445,699076,259526 -g1,11186:24588279,17247876 -g1,11186:24588280,17247876 -(1,11186:24588280,17247876:0,452978,115847 -r1,11213:27056817,17247876:2468537,568825,115847 -k1,11186:24588280,17247876:-2468537 -) -(1,11186:24588280,17247876:2468537,452978,115847 -k1,11186:24588280,17247876:3277 -h1,11186:27053540,17247876:0,411205,112570 -) -g1,11186:27429716,17247876 -$1,11186:27429716,17247876 -$1,11186:27944829,17247876 -k1,11187:31893364,17247876:3948535 -g1,11187:32221044,17247876 -) -g1,11187:32221044,17247876 -) -(1,11188:7553973,18112955:24667071,605553,259526 -g1,11187:7553973,18112955 -(1,11187:7553973,18112955:5433398,605553,259526 -r1,11213:7553973,18112955:0,792993,237900 -g1,11187:7881653,18112955 -g1,11187:7881654,18112955 -(1,11187:7881654,18112955:0,452978,115847 -r1,11213:11405326,18112955:3523672,568825,115847 -k1,11187:7881654,18112955:-3523672 -) -(1,11187:7881654,18112955:3523672,452978,115847 -k1,11187:7881654,18112955:3277 -h1,11187:11402049,18112955:0,411205,112570 -) -g1,11187:11604555,18112955 -r1,11213:11604555,18112955:0,865079,259526 -k1,11187:12659691,18112955:1055136 -g1,11187:12987371,18112955 -) -g1,11187:12987371,18112955 -(1,11187:12987371,18112955:11273228,605553,259526 -g1,11187:13315051,18112955 -g1,11187:13315052,18112955 -$1,11187:13315052,18112955 -(1,11187:13315052,18151599:649462,567542,79954 -) -[1,11187:13964514,18254493:909902,735560,5505 -(1,11187:13964514,17767577:393347,248644,5505 -) -(1,11187:13964514,18254493:909902,346358,5505 -) -] -g1,11187:14983652,18112955 -(1,11187:15456823,18211269:286917,346358,96797 -) -$1,11187:16602917,18112955 -k1,11187:23932919,18112955:7330002 -g1,11187:24260599,18112955 -) -g1,11187:24260599,18112955 -(1,11188:24260599,18112955:7960445,605553,259526 -g1,11187:24588279,18112955 -g1,11187:24588280,18112955 -(1,11187:24588280,18112955:0,452978,115847 -r1,11213:27056817,18112955:2468537,568825,115847 -k1,11187:24588280,18112955:-2468537 -) -(1,11187:24588280,18112955:2468537,452978,115847 -k1,11187:24588280,18112955:3277 -h1,11187:27053540,18112955:0,411205,112570 -) -g1,11187:27429716,18112955 -$1,11187:27429716,18112955 -$1,11187:27687272,18112955 -k1,11188:31893364,18112955:4206092 -g1,11188:32221044,18112955 -) -g1,11188:32221044,18112955 -) -(1,11189:7553973,18978034:24667071,605553,259526 -g1,11188:7553973,18978034 -(1,11188:7553973,18978034:5433398,605553,259526 -r1,11213:7553973,18978034:0,792993,237900 -g1,11188:7881653,18978034 -g1,11188:7881654,18978034 -(1,11188:7881654,18978034:0,452978,115847 -r1,11213:9998479,18978034:2116825,568825,115847 -k1,11188:7881654,18978034:-2116825 -) -(1,11188:7881654,18978034:2116825,452978,115847 -k1,11188:7881654,18978034:3277 -h1,11188:9995202,18978034:0,411205,112570 -) -g1,11188:10197708,18978034 -r1,11213:10197708,18978034:0,865079,259526 -k1,11188:12659691,18978034:2461983 -g1,11188:12987371,18978034 -) -g1,11188:12987371,18978034 -(1,11188:12987371,18978034:11273228,605553,259526 -g1,11188:13315051,18978034 -g1,11188:13315052,18978034 -$1,11188:13315052,18978034 -(1,11188:13315052,18997017:692060,528220,79954 -) -[1,11188:14007112,19109038:909902,705365,5505 -(1,11188:14007112,18652317:393347,248644,5505 -) -(1,11188:14007112,19109038:909902,346358,5505 -) -] -g1,11188:15026250,18978034 -(1,11188:15499421,19076348:233243,346358,5505 -) -$1,11188:15732664,18978034 -k1,11188:23932919,18978034:8200255 -g1,11188:24260599,18978034 -) -g1,11188:24260599,18978034 -(1,11189:24260599,18978034:7960445,605553,259526 -g1,11188:24588279,18978034 -g1,11188:24588280,18978034 -(1,11188:24588280,18978034:0,452978,115847 -r1,11213:27056817,18978034:2468537,568825,115847 -k1,11188:24588280,18978034:-2468537 -) -(1,11188:24588280,18978034:2468537,452978,115847 -k1,11188:24588280,18978034:3277 -h1,11188:27053540,18978034:0,411205,112570 +r1,11212:37855564,49800853:1179648,16384,0 +) +) +k1,11212:3078556,49800853:-34777008 +) +] +g1,11212:6630773,4812305 +g1,11212:6630773,4812305 +g1,11212:9827619,4812305 +g1,11212:11304145,4812305 +g1,11212:13937381,4812305 +g1,11212:15932296,4812305 +k1,11212:31387652,4812305:15455356 +) +) +] +[1,11212:6630773,45706769:25952256,40108032,0 +(1,11212:6630773,45706769:25952256,40108032,0 +(1,11212:6630773,45706769:0,0,0 +g1,11212:6630773,45706769 +) +[1,11212:6630773,45706769:25952256,40108032,0 +[1,11200:6630773,28481320:25952256,22882583,0 +[1,11200:6630773,28481320:25952256,22882583,0 +(1,11174:6630773,6759380:25952256,505283,11795 +h1,11174:6607180,6759380:0,0,0 +g1,11174:8644694,6759380 +k1,11174:32583029,6759380:22968402 +g1,11174:32583029,6759380 +) +(1,11174:6630773,7624460:25952256,513147,134348 +h1,11174:6630773,7624460:0,0,0 +k1,11174:7311358,7624460:265742 +k1,11174:10602963,7624460:265808 +k1,11174:12153278,7624460:265809 +k1,11174:13523368,7624460:265808 +k1,11174:16999130,7624460:265809 +k1,11174:18212590,7624460:265809 +k1,11174:21195521,7624460:265808 +k1,11174:23380224,7624460:265809 +k1,11174:25203823,7624460:265808 +k1,11174:27517632,7624460:265809 +k1,11174:30091618,7624460:265808 +k1,11174:31043589,7624460:265809 +k1,11174:32583029,7624460:0 +) +(1,11174:6630773,8489540:25952256,513147,126483 +k1,11174:8816874,8489540:216744 +k1,11174:9981268,8489540:216743 +k1,11174:11706651,8489540:216744 +k1,11174:13229528,8489540:216744 +k1,11174:16900675,8489540:216744 +k1,11174:19188356,8489540:216743 +k1,11174:20352751,8489540:216744 +(1,11174:20352751,8489540:0,452978,115847 +r1,11212:23524711,8489540:3171960,568825,115847 +k1,11174:20352751,8489540:-3171960 +) +(1,11174:20352751,8489540:3171960,452978,115847 +k1,11174:20352751,8489540:3277 +h1,11174:23521434,8489540:0,411205,112570 +) +k1,11174:23915125,8489540:216744 +(1,11174:23915125,8489540:0,452978,115847 +r1,11212:27087085,8489540:3171960,568825,115847 +k1,11174:23915125,8489540:-3171960 +) +(1,11174:23915125,8489540:3171960,452978,115847 +k1,11174:23915125,8489540:3277 +h1,11174:27083808,8489540:0,411205,112570 +) +k1,11174:27477498,8489540:216743 +(1,11174:27477498,8489540:0,452978,115847 +r1,11212:31001170,8489540:3523672,568825,115847 +k1,11174:27477498,8489540:-3523672 +) +(1,11174:27477498,8489540:3523672,452978,115847 +k1,11174:27477498,8489540:3277 +h1,11174:30997893,8489540:0,411205,112570 +) +k1,11174:31391584,8489540:216744 +k1,11174:32583029,8489540:0 +) +(1,11174:6630773,9354620:25952256,513147,134348 +(1,11174:6630773,9354620:0,452978,115847 +r1,11212:10154445,9354620:3523672,568825,115847 +k1,11174:6630773,9354620:-3523672 +) +(1,11174:6630773,9354620:3523672,452978,115847 +k1,11174:6630773,9354620:3277 +h1,11174:10151168,9354620:0,411205,112570 +) +k1,11174:10397481,9354620:243036 +k1,11174:12525989,9354620:243037 +k1,11174:14817025,9354620:243036 +(1,11174:14817025,9354620:0,452978,115847 +r1,11212:16933850,9354620:2116825,568825,115847 +k1,11174:14817025,9354620:-2116825 +) +(1,11174:14817025,9354620:2116825,452978,115847 +k1,11174:14817025,9354620:3277 +h1,11174:16930573,9354620:0,411205,112570 +) +k1,11174:17176886,9354620:243036 +k1,11174:19883420,9354620:243036 +k1,11174:21616746,9354620:243037 +k1,11174:24885579,9354620:243036 +k1,11174:26413121,9354620:243036 +k1,11174:28666802,9354620:243036 +k1,11174:29265699,9354620:243037 +k1,11174:31189078,9354620:243036 +k1,11174:32583029,9354620:0 +) +(1,11174:6630773,10219700:25952256,505283,134348 +k1,11174:7846214,10219700:196356 +k1,11174:9696043,10219700:196356 +k1,11174:13567658,10219700:196356 +k1,11174:14450175,10219700:196355 +k1,11174:15665616,10219700:196356 +k1,11174:18934300,10219700:196356 +k1,11174:21335943,10219700:196356 +k1,11174:22218461,10219700:196356 +k1,11174:24123341,10219700:196356 +k1,11174:25311256,10219700:196355 +k1,11174:28785067,10219700:196356 +k1,11174:29597461,10219700:196356 +k1,11174:30812902,10219700:196356 +k1,11174:32583029,10219700:0 +) +(1,11174:6630773,11084780:25952256,505283,7863 +g1,11174:8343228,11084780 +g1,11174:9158495,11084780 +g1,11174:10560965,11084780 +k1,11174:32583029,11084780:20387596 +g1,11174:32583029,11084780 +) +(1,11199:6630773,28481320:25952256,16975800,0 +k1,11199:6992758,28481320:361985 +k1,11177:7354744,28481320:361986 +[1,11199:7354744,28481320:24866300,16975800,0 +(1,11199:7354744,11571056:24866300,65536,0 +g1,11199:7354744,11571056 +(1,11199:7354744,11571056:24866300,65536,0 +r1,11212:32221044,11571056:24866300,65536,0 +) +g1,11199:32221044,11571056 +) +(1,11199:7354744,20165802:24866300,8529210,8118910 +g1,11199:7354744,20165802 +(1,11199:7354744,20165802:24866300,8529210,8118910 +g1,11177:7553973,20165802 +$1,11199:7553973,20165802 +[1,11199:7553973,20165802:24667071,8529210,8118910 +(1,11180:7553973,12427712:24667071,555093,237900 +g1,11179:7553973,12427712 +(1,11179:7553973,12427712:5433398,555093,237900 +r1,11212:7553973,12427712:0,792993,237900 +g1,11179:7881653,12427712 +g1,11179:7881654,12427712 +k1,11179:12659691,12427712:1988169 +g1,11179:12987371,12427712 +) +g1,11179:12987371,12427712 +(1,11179:12987371,12427712:11273228,555093,237900 +g1,11179:13315051,12427712 +g1,11179:13315052,12427712 +k1,11179:23932919,12427712:6432083 +g1,11179:24260599,12427712 +) +g1,11179:24260599,12427712 +(1,11180:24260599,12427712:7960445,555093,237900 +g1,11179:24588279,12427712 +g1,11179:24588280,12427712 +g1,11179:27722867,12427712 +g1,11179:29650936,12427712 +k1,11180:31893364,12427712:229162 +g1,11180:32221044,12427712 +) +g1,11180:32221044,12427712 +) +(1,11182:7553973,13600514:24667071,605553,259526 +g1,11181:7553973,13600514 +(1,11181:7553973,13600514:5433398,605553,259526 +r1,11212:7553973,13600514:0,792993,237900 +g1,11181:7881653,13600514 +g1,11181:7881654,13600514 +(1,11181:7881654,13600514:0,452978,115847 +r1,11212:9646767,13600514:1765113,568825,115847 +k1,11181:7881654,13600514:-1765113 +) +(1,11181:7881654,13600514:1765113,452978,115847 +k1,11181:7881654,13600514:3277 +h1,11181:9643490,13600514:0,411205,112570 +) +g1,11181:9845996,13600514 +r1,11212:9845996,13600514:0,865079,259526 +k1,11181:12659691,13600514:2813695 +g1,11181:12987371,13600514 +) +g1,11181:12987371,13600514 +(1,11181:12987371,13600514:11273228,605553,259526 +g1,11181:13315051,13600514 +g1,11181:13315052,13600514 +$1,11181:13315052,13600514 +(1,11181:13315052,13639158:649462,567542,79954 +) +[1,11181:13964514,13742052:909902,735560,5505 +(1,11181:13964514,13255136:393347,248644,5505 +) +(1,11181:13964514,13742052:909902,346358,5505 +) +] +g1,11181:14983652,13600514 +(1,11181:15456823,13698828:233243,346358,5505 +) +$1,11181:15690066,13600514 +k1,11181:23932919,13600514:8242853 +g1,11181:24260599,13600514 +) +g1,11181:24260599,13600514 +(1,11182:24260599,13600514:7960445,605553,259526 +g1,11181:24588279,13600514 +g1,11181:24588280,13600514 +(1,11181:24588280,13600514:0,452978,115847 +r1,11212:27056817,13600514:2468537,568825,115847 +k1,11181:24588280,13600514:-2468537 +) +(1,11181:24588280,13600514:2468537,452978,115847 +k1,11181:24588280,13600514:3277 +h1,11181:27053540,13600514:0,411205,112570 +) +g1,11181:27429716,13600514 +$1,11181:27429716,13600514 +$1,11181:27828175,13600514 +k1,11182:31893364,13600514:4065189 +g1,11182:32221044,13600514 +) +g1,11182:32221044,13600514 +) +(1,11183:7553973,14559116:24667071,699076,259526 +g1,11182:7553973,14559116 +(1,11182:7553973,14559116:5433398,699076,259526 +r1,11212:7553973,14559116:0,792993,237900 +g1,11182:7881653,14559116 +g1,11182:7881654,14559116 +(1,11182:7881654,14559116:0,452978,115847 +r1,11212:11053614,14559116:3171960,568825,115847 +k1,11182:7881654,14559116:-3171960 +) +(1,11182:7881654,14559116:3171960,452978,115847 +k1,11182:7881654,14559116:3277 +h1,11182:11050337,14559116:0,411205,112570 +) +g1,11182:11252843,14559116 +r1,11212:11252843,14559116:0,865079,259526 +k1,11182:12659691,14559116:1406848 +g1,11182:12987371,14559116 +) +g1,11182:12987371,14559116 +(1,11182:12987371,14559116:11273228,699076,259526 +g1,11182:13315051,14559116 +g1,11182:13315052,14559116 +$1,11182:13315052,14559116 +(1,11182:13315052,14597760:649462,567542,79954 +) +[1,11182:13964514,14700654:963576,840614,96797 +(1,11182:13964514,14213738:213058,353698,5505 +) +(1,11182:13964514,14700654:963576,346358,96797 +) +] +g1,11182:15037326,14559116 +(1,11182:15510497,14657430:233243,346358,5505 +) +$1,11182:15743740,14559116 +k1,11182:23932919,14559116:8189179 +g1,11182:24260599,14559116 +) +g1,11182:24260599,14559116 +(1,11183:24260599,14559116:7960445,699076,259526 +g1,11182:24588279,14559116 +g1,11182:24588280,14559116 +(1,11182:24588280,14559116:0,452978,115847 +r1,11212:27056817,14559116:2468537,568825,115847 +k1,11182:24588280,14559116:-2468537 +) +(1,11182:24588280,14559116:2468537,452978,115847 +k1,11182:24588280,14559116:3277 +h1,11182:27053540,14559116:0,411205,112570 +) +g1,11182:27429716,14559116 +$1,11182:27429716,14559116 +$1,11182:27944829,14559116 +k1,11183:31893364,14559116:3948535 +g1,11183:32221044,14559116 +) +g1,11183:32221044,14559116 +) +(1,11184:7553973,15424195:24667071,605553,259526 +g1,11183:7553973,15424195 +(1,11183:7553973,15424195:5433398,605553,259526 +r1,11212:7553973,15424195:0,792993,237900 +g1,11183:7881653,15424195 +g1,11183:7881654,15424195 +(1,11183:7881654,15424195:0,452978,115847 +r1,11212:11053614,15424195:3171960,568825,115847 +k1,11183:7881654,15424195:-3171960 +) +(1,11183:7881654,15424195:3171960,452978,115847 +k1,11183:7881654,15424195:3277 +h1,11183:11050337,15424195:0,411205,112570 +) +g1,11183:11252843,15424195 +r1,11212:11252843,15424195:0,865079,259526 +k1,11183:12659691,15424195:1406848 +g1,11183:12987371,15424195 +) +g1,11183:12987371,15424195 +(1,11183:12987371,15424195:11273228,605553,259526 +g1,11183:13315051,15424195 +g1,11183:13315052,15424195 +$1,11183:13315052,15424195 +(1,11183:13315052,15462839:649462,567542,79954 +) +[1,11183:13964514,15565733:909902,735560,5505 +(1,11183:13964514,15078817:393347,248644,5505 +) +(1,11183:13964514,15565733:909902,346358,5505 +) +] +g1,11183:14983652,15424195 +(1,11183:15456823,15522509:286917,346358,96797 +) +$1,11183:15743740,15424195 +k1,11183:23932919,15424195:8189179 +g1,11183:24260599,15424195 +) +g1,11183:24260599,15424195 +(1,11184:24260599,15424195:7960445,605553,259526 +g1,11183:24588279,15424195 +g1,11183:24588280,15424195 +(1,11183:24588280,15424195:0,452978,115847 +r1,11212:27056817,15424195:2468537,568825,115847 +k1,11183:24588280,15424195:-2468537 +) +(1,11183:24588280,15424195:2468537,452978,115847 +k1,11183:24588280,15424195:3277 +h1,11183:27053540,15424195:0,411205,112570 +) +g1,11183:27429716,15424195 +$1,11183:27429716,15424195 +$1,11183:27687272,15424195 +k1,11184:31893364,15424195:4206092 +g1,11184:32221044,15424195 +) +g1,11184:32221044,15424195 +) +(1,11185:7553973,16289274:24667071,605553,259526 +g1,11184:7553973,16289274 +(1,11184:7553973,16289274:5433398,605553,259526 +r1,11212:7553973,16289274:0,792993,237900 +g1,11184:7881653,16289274 +g1,11184:7881654,16289274 +(1,11184:7881654,16289274:0,452978,115847 +r1,11212:9998479,16289274:2116825,568825,115847 +k1,11184:7881654,16289274:-2116825 +) +(1,11184:7881654,16289274:2116825,452978,115847 +k1,11184:7881654,16289274:3277 +h1,11184:9995202,16289274:0,411205,112570 +) +g1,11184:10197708,16289274 +r1,11212:10197708,16289274:0,865079,259526 +k1,11184:12659691,16289274:2461983 +g1,11184:12987371,16289274 +) +g1,11184:12987371,16289274 +(1,11184:12987371,16289274:11273228,605553,259526 +g1,11184:13315051,16289274 +g1,11184:13315052,16289274 +$1,11184:13315052,16289274 +(1,11184:13315052,16327918:649462,567542,79954 +) +[1,11184:13964514,16430812:909902,735560,5505 +(1,11184:13964514,15943896:393347,248644,5505 +) +(1,11184:13964514,16430812:909902,346358,5505 +) +] +g1,11184:14983652,16289274 +(1,11184:15456823,16387588:233243,346358,5505 +) +$1,11184:15690066,16289274 +k1,11184:23932919,16289274:8242853 +g1,11184:24260599,16289274 +) +g1,11184:24260599,16289274 +(1,11185:24260599,16289274:7960445,605553,259526 +g1,11184:24588279,16289274 +g1,11184:24588280,16289274 +(1,11184:24588280,16289274:0,452978,115847 +r1,11212:27056817,16289274:2468537,568825,115847 +k1,11184:24588280,16289274:-2468537 +) +(1,11184:24588280,16289274:2468537,452978,115847 +k1,11184:24588280,16289274:3277 +h1,11184:27053540,16289274:0,411205,112570 +) +g1,11184:27429716,16289274 +$1,11184:27429716,16289274 +$1,11184:27828175,16289274 +k1,11185:31893364,16289274:4065189 +g1,11185:32221044,16289274 +) +g1,11185:32221044,16289274 +) +(1,11186:7553973,17247876:24667071,699076,259526 +g1,11185:7553973,17247876 +(1,11185:7553973,17247876:5433398,699076,259526 +r1,11212:7553973,17247876:0,792993,237900 +g1,11185:7881653,17247876 +g1,11185:7881654,17247876 +(1,11185:7881654,17247876:0,452978,115847 +r1,11212:11405326,17247876:3523672,568825,115847 +k1,11185:7881654,17247876:-3523672 +) +(1,11185:7881654,17247876:3523672,452978,115847 +k1,11185:7881654,17247876:3277 +h1,11185:11402049,17247876:0,411205,112570 +) +g1,11185:11604555,17247876 +r1,11212:11604555,17247876:0,865079,259526 +k1,11185:12659691,17247876:1055136 +g1,11185:12987371,17247876 +) +g1,11185:12987371,17247876 +(1,11185:12987371,17247876:11273228,699076,259526 +g1,11185:13315051,17247876 +g1,11185:13315052,17247876 +$1,11185:13315052,17247876 +(1,11185:13315052,17286520:649462,567542,79954 +) +[1,11185:13964514,17389414:963576,840614,96797 +(1,11185:13964514,16902498:213058,353698,5505 +) +(1,11185:13964514,17389414:963576,346358,96797 +) +] +g1,11185:15037326,17247876 +(1,11185:15510497,17346190:233243,346358,5505 +) +$1,11185:16345360,17247876 +k1,11185:23932919,17247876:7587559 +g1,11185:24260599,17247876 +) +g1,11185:24260599,17247876 +(1,11186:24260599,17247876:7960445,699076,259526 +g1,11185:24588279,17247876 +g1,11185:24588280,17247876 +(1,11185:24588280,17247876:0,452978,115847 +r1,11212:27056817,17247876:2468537,568825,115847 +k1,11185:24588280,17247876:-2468537 +) +(1,11185:24588280,17247876:2468537,452978,115847 +k1,11185:24588280,17247876:3277 +h1,11185:27053540,17247876:0,411205,112570 +) +g1,11185:27429716,17247876 +$1,11185:27429716,17247876 +$1,11185:27944829,17247876 +k1,11186:31893364,17247876:3948535 +g1,11186:32221044,17247876 +) +g1,11186:32221044,17247876 +) +(1,11187:7553973,18112955:24667071,605553,259526 +g1,11186:7553973,18112955 +(1,11186:7553973,18112955:5433398,605553,259526 +r1,11212:7553973,18112955:0,792993,237900 +g1,11186:7881653,18112955 +g1,11186:7881654,18112955 +(1,11186:7881654,18112955:0,452978,115847 +r1,11212:11405326,18112955:3523672,568825,115847 +k1,11186:7881654,18112955:-3523672 +) +(1,11186:7881654,18112955:3523672,452978,115847 +k1,11186:7881654,18112955:3277 +h1,11186:11402049,18112955:0,411205,112570 +) +g1,11186:11604555,18112955 +r1,11212:11604555,18112955:0,865079,259526 +k1,11186:12659691,18112955:1055136 +g1,11186:12987371,18112955 +) +g1,11186:12987371,18112955 +(1,11186:12987371,18112955:11273228,605553,259526 +g1,11186:13315051,18112955 +g1,11186:13315052,18112955 +$1,11186:13315052,18112955 +(1,11186:13315052,18151599:649462,567542,79954 +) +[1,11186:13964514,18254493:909902,735560,5505 +(1,11186:13964514,17767577:393347,248644,5505 +) +(1,11186:13964514,18254493:909902,346358,5505 +) +] +g1,11186:14983652,18112955 +(1,11186:15456823,18211269:286917,346358,96797 +) +$1,11186:16602917,18112955 +k1,11186:23932919,18112955:7330002 +g1,11186:24260599,18112955 +) +g1,11186:24260599,18112955 +(1,11187:24260599,18112955:7960445,605553,259526 +g1,11186:24588279,18112955 +g1,11186:24588280,18112955 +(1,11186:24588280,18112955:0,452978,115847 +r1,11212:27056817,18112955:2468537,568825,115847 +k1,11186:24588280,18112955:-2468537 +) +(1,11186:24588280,18112955:2468537,452978,115847 +k1,11186:24588280,18112955:3277 +h1,11186:27053540,18112955:0,411205,112570 +) +g1,11186:27429716,18112955 +$1,11186:27429716,18112955 +$1,11186:27687272,18112955 +k1,11187:31893364,18112955:4206092 +g1,11187:32221044,18112955 +) +g1,11187:32221044,18112955 +) +(1,11188:7553973,18978034:24667071,605553,259526 +g1,11187:7553973,18978034 +(1,11187:7553973,18978034:5433398,605553,259526 +r1,11212:7553973,18978034:0,792993,237900 +g1,11187:7881653,18978034 +g1,11187:7881654,18978034 +(1,11187:7881654,18978034:0,452978,115847 +r1,11212:9998479,18978034:2116825,568825,115847 +k1,11187:7881654,18978034:-2116825 +) +(1,11187:7881654,18978034:2116825,452978,115847 +k1,11187:7881654,18978034:3277 +h1,11187:9995202,18978034:0,411205,112570 +) +g1,11187:10197708,18978034 +r1,11212:10197708,18978034:0,865079,259526 +k1,11187:12659691,18978034:2461983 +g1,11187:12987371,18978034 +) +g1,11187:12987371,18978034 +(1,11187:12987371,18978034:11273228,605553,259526 +g1,11187:13315051,18978034 +g1,11187:13315052,18978034 +$1,11187:13315052,18978034 +(1,11187:13315052,18997017:692060,528220,79954 +) +[1,11187:14007112,19109038:909902,705365,5505 +(1,11187:14007112,18652317:393347,248644,5505 +) +(1,11187:14007112,19109038:909902,346358,5505 +) +] +g1,11187:15026250,18978034 +(1,11187:15499421,19076348:233243,346358,5505 +) +$1,11187:15732664,18978034 +k1,11187:23932919,18978034:8200255 +g1,11187:24260599,18978034 +) +g1,11187:24260599,18978034 +(1,11188:24260599,18978034:7960445,605553,259526 +g1,11187:24588279,18978034 +g1,11187:24588280,18978034 +(1,11187:24588280,18978034:0,452978,115847 +r1,11212:27056817,18978034:2468537,568825,115847 +k1,11187:24588280,18978034:-2468537 +) +(1,11187:24588280,18978034:2468537,452978,115847 +k1,11187:24588280,18978034:3277 +h1,11187:27053540,18978034:0,411205,112570 ) -g1,11188:27429716,18978034 -$1,11188:27429716,18978034 -$1,11188:27828175,18978034 -k1,11189:31893364,18978034:4065189 -g1,11189:32221044,18978034 -) -g1,11189:32221044,18978034 -) -(1,11190:7553973,19958588:24667071,721028,259526 -g1,11189:7553973,19958588 -(1,11189:7553973,19958588:5433398,721028,259526 -r1,11213:7553973,19958588:0,792993,237900 -g1,11189:7881653,19958588 -g1,11189:7881654,19958588 -(1,11189:7881654,19958588:0,452978,115847 -r1,11213:10701903,19958588:2820249,568825,115847 -k1,11189:7881654,19958588:-2820249 +g1,11187:27429716,18978034 +$1,11187:27429716,18978034 +$1,11187:27828175,18978034 +k1,11188:31893364,18978034:4065189 +g1,11188:32221044,18978034 +) +g1,11188:32221044,18978034 +) +(1,11189:7553973,19958588:24667071,721028,259526 +g1,11188:7553973,19958588 +(1,11188:7553973,19958588:5433398,721028,259526 +r1,11212:7553973,19958588:0,792993,237900 +g1,11188:7881653,19958588 +g1,11188:7881654,19958588 +(1,11188:7881654,19958588:0,452978,115847 +r1,11212:10701903,19958588:2820249,568825,115847 +k1,11188:7881654,19958588:-2820249 ) -(1,11189:7881654,19958588:2820249,452978,115847 -k1,11189:7881654,19958588:3277 -h1,11189:10698626,19958588:0,411205,112570 -) -g1,11189:10901132,19958588 -r1,11213:10901132,19958588:0,865079,259526 -k1,11189:12659691,19958588:1758559 -g1,11189:12987371,19958588 -) -g1,11189:12987371,19958588 -(1,11189:12987371,19958588:11273228,721028,259526 -g1,11189:13315051,19958588 -g1,11189:13315052,19958588 -$1,11189:13315052,19958588 -(1,11189:13315052,19997232:649462,567542,79954 +(1,11188:7881654,19958588:2820249,452978,115847 +k1,11188:7881654,19958588:3277 +h1,11188:10698626,19958588:0,411205,112570 +) +g1,11188:10901132,19958588 +r1,11212:10901132,19958588:0,865079,259526 +k1,11188:12659691,19958588:1758559 +g1,11188:12987371,19958588 +) +g1,11188:12987371,19958588 +(1,11188:12987371,19958588:11273228,721028,259526 +g1,11188:13315051,19958588 +g1,11188:13315052,19958588 +$1,11188:13315052,19958588 +(1,11188:13315052,19997232:649462,567542,79954 ) -[1,11189:13964514,20100126:909902,821346,5505 -(1,11189:13964514,19613210:311689,334430,0 +[1,11188:13964514,20100126:909902,821346,5505 +(1,11188:13964514,19613210:311689,334430,0 ) -(1,11189:13964514,20100126:909902,346358,5505 +(1,11188:13964514,20100126:909902,346358,5505 ) ] -g1,11189:14983652,19958588 -(1,11189:15456823,20056902:233243,346358,5505 +g1,11188:14983652,19958588 +(1,11188:15456823,20056902:233243,346358,5505 ) -g1,11189:15988701,19958588 -g1,11189:16675309,19958588 -(1,11189:16675309,19997232:649462,567542,79954 +g1,11188:15988701,19958588 +g1,11188:16675309,19958588 +(1,11188:16675309,19997232:649462,567542,79954 ) -[1,11189:17324771,20131931:909902,894371,5505 -(1,11189:17324771,19583918:286917,346358,96797 +[1,11188:17324771,20131931:909902,894371,5505 +(1,11188:17324771,19583918:286917,346358,96797 ) -(1,11189:17324771,20131931:909902,346358,5505 +(1,11188:17324771,20131931:909902,346358,5505 ) ] -g1,11189:18343909,19958588 -(1,11189:18817080,20056902:233243,346358,5505 +g1,11188:18343909,19958588 +(1,11188:18817080,20056902:233243,346358,5505 ) -g1,11189:19348958,19958588 -g1,11189:20035566,19958588 -(1,11189:20035566,19997232:649462,567542,79954 +g1,11188:19348958,19958588 +g1,11188:20035566,19958588 +(1,11188:20035566,19997232:649462,567542,79954 ) -[1,11189:20685028,20100126:909902,735560,5505 -(1,11189:20685028,19613210:393347,248644,5505 +[1,11188:20685028,20100126:909902,735560,5505 +(1,11188:20685028,19613210:393347,248644,5505 ) -(1,11189:20685028,20100126:909902,346358,5505 +(1,11188:20685028,20100126:909902,346358,5505 ) ] -g1,11189:21704166,19958588 -(1,11189:22177337,20056902:233243,346358,5505 +g1,11188:21704166,19958588 +(1,11188:22177337,20056902:233243,346358,5505 ) -$1,11189:22410580,19958588 -k1,11189:23932919,19958588:1522339 -g1,11189:24260599,19958588 +$1,11188:22410580,19958588 +k1,11188:23932919,19958588:1522339 +g1,11188:24260599,19958588 ) -g1,11189:24260599,19958588 -(1,11190:24260599,19958588:7960445,721028,259526 -g1,11189:24588279,19958588 -g1,11189:24588280,19958588 -(1,11189:24588280,19958588:0,452978,115847 -r1,11213:27056817,19958588:2468537,568825,115847 -k1,11189:24588280,19958588:-2468537 +g1,11188:24260599,19958588 +(1,11189:24260599,19958588:7960445,721028,259526 +g1,11188:24588279,19958588 +g1,11188:24588280,19958588 +(1,11188:24588280,19958588:0,452978,115847 +r1,11212:27056817,19958588:2468537,568825,115847 +k1,11188:24588280,19958588:-2468537 ) -(1,11189:24588280,19958588:2468537,452978,115847 -k1,11189:24588280,19958588:3277 -h1,11189:27053540,19958588:0,411205,112570 +(1,11188:24588280,19958588:2468537,452978,115847 +k1,11188:24588280,19958588:3277 +h1,11188:27053540,19958588:0,411205,112570 ) -g1,11189:27429716,19958588 -$1,11189:27429716,19958588 -(1,11189:27944829,20056902:779158,298648,5505 +g1,11188:27429716,19958588 +$1,11188:27429716,19958588 +(1,11188:27944829,20056902:779158,298648,5505 ) -g1,11189:28906047,19958588 -g1,11189:29656304,19958588 -(1,11189:30171417,20056902:463995,331678,0 +g1,11188:28906047,19958588 +g1,11188:29656304,19958588 +(1,11188:30171417,20056902:463995,331678,0 ) -$1,11189:30635412,19958588 -k1,11190:31893364,19958588:1257952 -g1,11190:32221044,19958588 +$1,11188:30635412,19958588 +k1,11189:31893364,19958588:1257952 +g1,11189:32221044,19958588 ) -g1,11190:32221044,19958588 +g1,11189:32221044,19958588 ) -(1,11191:7553973,20939142:24667071,721028,259526 -g1,11190:7553973,20939142 -(1,11190:7553973,20939142:5433398,721028,259526 -r1,11213:7553973,20939142:0,792993,237900 -g1,11190:7881653,20939142 -g1,11190:7881654,20939142 -(1,11190:7881654,20939142:0,452978,115847 -r1,11213:11053614,20939142:3171960,568825,115847 -k1,11190:7881654,20939142:-3171960 +(1,11190:7553973,20939142:24667071,721028,259526 +g1,11189:7553973,20939142 +(1,11189:7553973,20939142:5433398,721028,259526 +r1,11212:7553973,20939142:0,792993,237900 +g1,11189:7881653,20939142 +g1,11189:7881654,20939142 +(1,11189:7881654,20939142:0,452978,115847 +r1,11212:11053614,20939142:3171960,568825,115847 +k1,11189:7881654,20939142:-3171960 ) -(1,11190:7881654,20939142:3171960,452978,115847 -k1,11190:7881654,20939142:3277 -h1,11190:11050337,20939142:0,411205,112570 +(1,11189:7881654,20939142:3171960,452978,115847 +k1,11189:7881654,20939142:3277 +h1,11189:11050337,20939142:0,411205,112570 ) -g1,11190:11252843,20939142 -r1,11213:11252843,20939142:0,865079,259526 -k1,11190:12659691,20939142:1406848 -g1,11190:12987371,20939142 +g1,11189:11252843,20939142 +r1,11212:11252843,20939142:0,865079,259526 +k1,11189:12659691,20939142:1406848 +g1,11189:12987371,20939142 ) -g1,11190:12987371,20939142 -(1,11190:12987371,20939142:11273228,721028,259526 -g1,11190:13315051,20939142 -g1,11190:13315052,20939142 -$1,11190:13315052,20939142 -(1,11190:13315052,20958125:692060,528220,79954 +g1,11189:12987371,20939142 +(1,11189:12987371,20939142:11273228,721028,259526 +g1,11189:13315051,20939142 +g1,11189:13315052,20939142 +$1,11189:13315052,20939142 +(1,11189:13315052,20958125:692060,528220,79954 ) -[1,11190:14007112,21064641:909902,785646,5505 -(1,11190:14007112,20613425:311689,334430,0 +[1,11189:14007112,21064641:909902,785646,5505 +(1,11189:14007112,20613425:311689,334430,0 ) -(1,11190:14007112,21064641:909902,346358,5505 +(1,11189:14007112,21064641:909902,346358,5505 ) ] -g1,11190:15026250,20939142 -(1,11190:15499421,21037456:233243,346358,5505 +g1,11189:15026250,20939142 +(1,11189:15499421,21037456:233243,346358,5505 ) -g1,11190:16031299,20939142 -g1,11190:16717907,20939142 -(1,11190:16717907,20958125:692060,528220,79954 +g1,11189:16031299,20939142 +g1,11189:16717907,20939142 +(1,11189:16717907,20958125:692060,528220,79954 ) -[1,11190:17409967,21112485:909902,894371,5505 -(1,11190:17409967,20564472:286917,346358,96797 +[1,11189:17409967,21112485:909902,894371,5505 +(1,11189:17409967,20564472:286917,346358,96797 ) -(1,11190:17409967,21112485:909902,346358,5505 +(1,11189:17409967,21112485:909902,346358,5505 ) ] -g1,11190:18429105,20939142 -(1,11190:18902276,21037456:233243,346358,5505 +g1,11189:18429105,20939142 +(1,11189:18902276,21037456:233243,346358,5505 ) -g1,11190:19434154,20939142 -g1,11190:20120762,20939142 -(1,11190:20120762,20958125:692060,528220,79954 +g1,11189:19434154,20939142 +g1,11189:20120762,20939142 +(1,11189:20120762,20958125:692060,528220,79954 ) -[1,11190:20812822,21070146:909902,705365,5505 -(1,11190:20812822,20613425:393347,248644,5505 -) -(1,11190:20812822,21070146:909902,346358,5505 -) -] -g1,11190:21831960,20939142 -(1,11190:22305131,21037456:233243,346358,5505 -) -$1,11190:22538374,20939142 -k1,11190:23932919,20939142:1394545 -g1,11190:24260599,20939142 -) -g1,11190:24260599,20939142 -(1,11191:24260599,20939142:7960445,721028,259526 -g1,11190:24588279,20939142 -g1,11190:24588280,20939142 -(1,11190:24588280,20939142:0,452978,115847 -r1,11213:27056817,20939142:2468537,568825,115847 -k1,11190:24588280,20939142:-2468537 -) -(1,11190:24588280,20939142:2468537,452978,115847 -k1,11190:24588280,20939142:3277 -h1,11190:27053540,20939142:0,411205,112570 -) -g1,11190:27429716,20939142 -$1,11190:27429716,20939142 -(1,11190:27944829,21037456:779158,298648,5505 -) -g1,11190:28906047,20939142 -g1,11190:29656304,20939142 -(1,11190:30171417,21037456:463995,331678,0 -) -$1,11190:30635412,20939142 -k1,11191:31893364,20939142:1257952 -g1,11191:32221044,20939142 -) -g1,11191:32221044,20939142 -) -(1,11192:7553973,21804221:24667071,605553,259526 -g1,11191:7553973,21804221 -(1,11191:7553973,21804221:5433398,605553,259526 -r1,11213:7553973,21804221:0,792993,237900 -g1,11191:7881653,21804221 -g1,11191:7881654,21804221 -(1,11191:7881654,21804221:0,452978,115847 -r1,11213:10701903,21804221:2820249,568825,115847 -k1,11191:7881654,21804221:-2820249 -) -(1,11191:7881654,21804221:2820249,452978,115847 -k1,11191:7881654,21804221:3277 -h1,11191:10698626,21804221:0,411205,112570 -) -g1,11191:10901132,21804221 -r1,11213:10901132,21804221:0,865079,259526 -k1,11191:12659691,21804221:1758559 -g1,11191:12987371,21804221 -) -g1,11191:12987371,21804221 -(1,11191:12987371,21804221:11273228,605553,259526 -g1,11191:13315051,21804221 -g1,11191:13315052,21804221 -g1,11191:17021112,21804221 -k1,11191:23932919,21804221:3714961 -g1,11191:24260599,21804221 -) -g1,11191:24260599,21804221 -(1,11192:24260599,21804221:7960445,605553,259526 -g1,11191:24588279,21804221 -g1,11191:24588280,21804221 -(1,11191:24588280,21804221:0,452978,115847 -r1,11213:27056817,21804221:2468537,568825,115847 -k1,11191:24588280,21804221:-2468537 -) -(1,11191:24588280,21804221:2468537,452978,115847 -k1,11191:24588280,21804221:3277 -h1,11191:27053540,21804221:0,411205,112570 -) -g1,11191:27429716,21804221 -$1,11191:27429716,21804221 -(1,11191:27944829,21902535:779158,298648,5505 -) -g1,11191:28906047,21804221 -g1,11191:29656304,21804221 -(1,11191:30171417,21902535:463995,331678,0 -) -$1,11191:30635412,21804221 -k1,11192:31893364,21804221:1257952 -g1,11192:32221044,21804221 -) -g1,11192:32221044,21804221 -) -(1,11193:7553973,22669300:24667071,605553,259526 -g1,11192:7553973,22669300 -(1,11192:7553973,22669300:5433398,605553,259526 -r1,11213:7553973,22669300:0,792993,237900 -g1,11192:7881653,22669300 -g1,11192:7881654,22669300 -(1,11192:7881654,22669300:0,452978,115847 -r1,11213:10701903,22669300:2820249,568825,115847 -k1,11192:7881654,22669300:-2820249 -) -(1,11192:7881654,22669300:2820249,452978,115847 -k1,11192:7881654,22669300:3277 -h1,11192:10698626,22669300:0,411205,112570 -) -g1,11192:10901132,22669300 -r1,11213:10901132,22669300:0,865079,259526 -k1,11192:12659691,22669300:1758559 -g1,11192:12987371,22669300 -) -g1,11192:12987371,22669300 -(1,11192:12987371,22669300:11273228,605553,259526 -g1,11192:13315051,22669300 -g1,11192:13315052,22669300 -g1,11192:17021112,22669300 -k1,11192:23932919,22669300:3819818 -g1,11192:24260599,22669300 -) -g1,11192:24260599,22669300 -(1,11193:24260599,22669300:7960445,605553,259526 -g1,11192:24588279,22669300 -g1,11192:24588280,22669300 -(1,11192:24588280,22669300:0,452978,115847 -r1,11213:27056817,22669300:2468537,568825,115847 -k1,11192:24588280,22669300:-2468537 -) -(1,11192:24588280,22669300:2468537,452978,115847 -k1,11192:24588280,22669300:3277 -h1,11192:27053540,22669300:0,411205,112570 -) -g1,11192:27429716,22669300 -$1,11192:27429716,22669300 -(1,11192:27944829,22767614:779158,298648,5505 -) -g1,11192:28906047,22669300 -g1,11192:29656304,22669300 -(1,11192:30171417,22767614:463995,331678,0 -) -$1,11192:30635412,22669300 -k1,11193:31893364,22669300:1257952 -g1,11193:32221044,22669300 -) -g1,11193:32221044,22669300 -) -(1,11194:7553973,23534379:24667071,605553,259526 -g1,11193:7553973,23534379 -(1,11193:7553973,23534379:5433398,605553,259526 -r1,11213:7553973,23534379:0,792993,237900 -g1,11193:7881653,23534379 -g1,11193:7881654,23534379 -(1,11193:7881654,23534379:0,452978,115847 -r1,11213:10701903,23534379:2820249,568825,115847 -k1,11193:7881654,23534379:-2820249 -) -(1,11193:7881654,23534379:2820249,452978,115847 -k1,11193:7881654,23534379:3277 -h1,11193:10698626,23534379:0,411205,112570 -) -g1,11193:10901132,23534379 -r1,11213:10901132,23534379:0,865079,259526 -k1,11193:12659691,23534379:1758559 -g1,11193:12987371,23534379 -) -g1,11193:12987371,23534379 -(1,11193:12987371,23534379:11273228,605553,259526 -g1,11193:13315051,23534379 -g1,11193:13315052,23534379 -g1,11193:16037417,23534379 -k1,11193:23932919,23534379:5535551 -g1,11193:24260599,23534379 -) -g1,11193:24260599,23534379 -(1,11194:24260599,23534379:7960445,605553,259526 -g1,11193:24588279,23534379 -g1,11193:24588280,23534379 -(1,11193:24588280,23534379:0,452978,115847 -r1,11213:27056817,23534379:2468537,568825,115847 -k1,11193:24588280,23534379:-2468537 -) -(1,11193:24588280,23534379:2468537,452978,115847 -k1,11193:24588280,23534379:3277 -h1,11193:27053540,23534379:0,411205,112570 -) -g1,11193:27429716,23534379 -$1,11193:27429716,23534379 -(1,11193:27944829,23632693:779158,298648,5505 -) -g1,11193:28906047,23534379 -g1,11193:29656304,23534379 -(1,11193:30171417,23632693:463995,331678,0 -) -$1,11193:30635412,23534379 -k1,11194:31893364,23534379:1257952 -g1,11194:32221044,23534379 -) -g1,11194:32221044,23534379 -) -(1,11195:7553973,24399458:24667071,605553,259526 -g1,11194:7553973,24399458 -(1,11194:7553973,24399458:5433398,605553,259526 -r1,11213:7553973,24399458:0,792993,237900 -g1,11194:7881653,24399458 -g1,11194:7881654,24399458 -(1,11194:7881654,24399458:0,459977,115847 -r1,11213:9998479,24399458:2116825,575824,115847 -k1,11194:7881654,24399458:-2116825 -) -(1,11194:7881654,24399458:2116825,459977,115847 -k1,11194:7881654,24399458:3277 -h1,11194:9995202,24399458:0,411205,112570 -) -g1,11194:10197708,24399458 -r1,11213:10197708,24399458:0,865079,259526 -k1,11194:12659691,24399458:2461983 -g1,11194:12987371,24399458 -) -g1,11194:12987371,24399458 -(1,11194:12987371,24399458:11273228,605553,259526 -g1,11194:13315051,24399458 -g1,11194:13315052,24399458 -$1,11194:13315052,24399458 -(1,11194:13788223,24497772:311689,339935,0 -) -g1,11194:14245560,24399458 -g1,11194:14959405,24399458 -(1,11194:15432576,24497772:311689,334430,0 -) -g1,11194:16042900,24399458 -g1,11194:16729508,24399458 -(1,11194:17202679,24497772:233243,346358,5505 -) -g1,11194:17581570,24399458 -g1,11194:18295415,24399458 -(1,11194:18768586,24497772:909902,346358,5505 -) -g1,11194:19977123,24399458 -g1,11194:20663731,24399458 -(1,11194:21136902,24497772:393347,248644,5505 -) -g1,11194:21675897,24399458 -g1,11194:22389742,24399458 -(1,11194:22862913,24497772:1070006,334430,5505 -) -$1,11194:23932919,24399458 -g1,11194:23932919,24399458 -g1,11194:24260599,24399458 -) -g1,11194:24260599,24399458 -(1,11195:24260599,24399458:7960445,605553,259526 -g1,11194:24588279,24399458 -g1,11194:24588280,24399458 -(1,11194:24588280,24399458:0,452978,115847 -r1,11213:27056817,24399458:2468537,568825,115847 -k1,11194:24588280,24399458:-2468537 -) -(1,11194:24588280,24399458:2468537,452978,115847 -k1,11194:24588280,24399458:3277 -h1,11194:27053540,24399458:0,411205,112570 -) -g1,11194:27429716,24399458 -$1,11194:27429716,24399458 -(1,11194:27944829,24497772:779158,298648,5505 -) -g1,11194:28906047,24399458 -g1,11194:29656304,24399458 -(1,11194:30171417,24497772:463995,331678,0 -) -g1,11194:30781060,24399458 -g1,11194:31494905,24399458 -$1,11194:31893364,24399458 -g1,11195:31893364,24399458 -g1,11195:32221044,24399458 -) -g1,11195:32221044,24399458 -) -(1,11196:7553973,25264537:24667071,605553,259526 -g1,11195:7553973,25264537 -(1,11195:7553973,25264537:5433398,605553,259526 -r1,11213:7553973,25264537:0,792993,237900 -g1,11195:7881653,25264537 -g1,11195:7881654,25264537 -(1,11195:7881654,25264537:0,459977,115847 -r1,11213:11053614,25264537:3171960,575824,115847 -k1,11195:7881654,25264537:-3171960 -) -(1,11195:7881654,25264537:3171960,459977,115847 -k1,11195:7881654,25264537:3277 -h1,11195:11050337,25264537:0,411205,112570 -) -g1,11195:11252843,25264537 -r1,11213:11252843,25264537:0,865079,259526 -k1,11195:12659691,25264537:1406848 -g1,11195:12987371,25264537 -) -g1,11195:12987371,25264537 -(1,11195:12987371,25264537:11273228,605553,259526 -g1,11195:13315051,25264537 -g1,11195:13315052,25264537 -g1,11195:15800832,25264537 -g1,11195:16659353,25264537 -k1,11195:23932919,25264537:6166008 -g1,11195:24260599,25264537 -) -g1,11195:24260599,25264537 -(1,11196:24260599,25264537:7960445,605553,259526 -g1,11195:24588279,25264537 -g1,11195:24588280,25264537 -(1,11195:24588280,25264537:0,452978,115847 -r1,11213:27056817,25264537:2468537,568825,115847 -k1,11195:24588280,25264537:-2468537 -) -(1,11195:24588280,25264537:2468537,452978,115847 -k1,11195:24588280,25264537:3277 -h1,11195:27053540,25264537:0,411205,112570 -) -g1,11195:27429716,25264537 -$1,11195:27429716,25264537 -(1,11195:27944829,25362851:779158,298648,5505 -) -g1,11195:28906047,25264537 -g1,11195:29656304,25264537 -(1,11195:30171417,25362851:463995,331678,0 -) -g1,11195:30781060,25264537 -g1,11195:31494905,25264537 -$1,11195:31893364,25264537 -g1,11196:31893364,25264537 -g1,11196:32221044,25264537 -) -g1,11196:32221044,25264537 -) -(1,11197:7553973,26129616:24667071,605553,259526 -g1,11196:7553973,26129616 -(1,11196:7553973,26129616:5433398,605553,259526 -r1,11213:7553973,26129616:0,792993,237900 -g1,11196:7881653,26129616 -g1,11196:7881654,26129616 -(1,11196:7881654,26129616:0,459977,115847 -r1,11213:11757038,26129616:3875384,575824,115847 -k1,11196:7881654,26129616:-3875384 -) -(1,11196:7881654,26129616:3875384,459977,115847 -k1,11196:7881654,26129616:3277 -h1,11196:11753761,26129616:0,411205,112570 -) -g1,11196:11956267,26129616 -r1,11213:11956267,26129616:0,865079,259526 -k1,11196:12659691,26129616:703424 -g1,11196:12987371,26129616 -) -g1,11196:12987371,26129616 -(1,11196:12987371,26129616:11273228,605553,259526 -g1,11196:13315051,26129616 -g1,11196:13315052,26129616 -$1,11196:13315052,26129616 -$1,11196:13991383,26129616 -k1,11196:23932919,26129616:9941536 -g1,11196:24260599,26129616 -) -g1,11196:24260599,26129616 -(1,11197:24260599,26129616:7960445,605553,259526 -g1,11196:24588279,26129616 -g1,11196:24588280,26129616 -(1,11196:24588280,26129616:0,452978,115847 -r1,11213:27056817,26129616:2468537,568825,115847 -k1,11196:24588280,26129616:-2468537 -) -(1,11196:24588280,26129616:2468537,452978,115847 -k1,11196:24588280,26129616:3277 -h1,11196:27053540,26129616:0,411205,112570 -) -g1,11196:27429716,26129616 -$1,11196:27429716,26129616 -(1,11196:27944829,26227930:779158,298648,5505 -) -g1,11196:28906047,26129616 -g1,11196:29656304,26129616 -(1,11196:30171417,26227930:463995,331678,0 -) -$1,11196:30635412,26129616 -k1,11197:31893364,26129616:1257952 -g1,11197:32221044,26129616 -) -g1,11197:32221044,26129616 -) -(1,11198:7553973,26994695:24667071,605553,259526 -g1,11197:7553973,26994695 -(1,11197:7553973,26994695:5433398,605553,259526 -r1,11213:7553973,26994695:0,792993,237900 -g1,11197:7881653,26994695 -g1,11197:7881654,26994695 -(1,11197:7881654,26994695:0,452978,115847 -r1,11213:9646767,26994695:1765113,568825,115847 -k1,11197:7881654,26994695:-1765113 -) -(1,11197:7881654,26994695:1765113,452978,115847 -k1,11197:7881654,26994695:3277 -h1,11197:9643490,26994695:0,411205,112570 -) -g1,11197:9845996,26994695 -r1,11213:9845996,26994695:0,865079,259526 -k1,11197:12659691,26994695:2813695 -g1,11197:12987371,26994695 -) -g1,11197:12987371,26994695 -(1,11197:12987371,26994695:11273228,605553,259526 -g1,11197:13315051,26994695 -g1,11197:13315052,26994695 -g1,11197:16858583,26994695 -k1,11197:23932919,26994695:4173057 -g1,11197:24260599,26994695 -) -g1,11197:24260599,26994695 -(1,11198:24260599,26994695:7960445,605553,259526 -g1,11197:24588279,26994695 -g1,11197:24588280,26994695 -(1,11197:24588280,26994695:0,452978,115847 -r1,11213:25649969,26994695:1061689,568825,115847 -k1,11197:24588280,26994695:-1061689 -) -(1,11197:24588280,26994695:1061689,452978,115847 -k1,11197:24588280,26994695:3277 -h1,11197:25646692,26994695:0,411205,112570 -) -g1,11197:26022868,26994695 -$1,11197:26022868,26994695 -(1,11197:26537981,27093009:779158,298648,5505 -) -g1,11197:27499199,26994695 -g1,11197:28202270,26994695 -(1,11197:28717383,27093009:463995,331678,0 -) -$1,11197:29181378,26994695 -k1,11198:31893364,26994695:2711986 -g1,11198:32221044,26994695 -) -g1,11198:32221044,26994695 -) -(1,11199:7553973,27859774:24667071,605553,259526 -g1,11198:7553973,27859774 -(1,11198:7553973,27859774:5433398,605553,259526 -r1,11213:7553973,27859774:0,792993,237900 -g1,11198:7881653,27859774 -g1,11198:7881654,27859774 -(1,11198:7881654,27859774:0,452978,115847 -r1,11213:12460462,27859774:4578808,568825,115847 -k1,11198:7881654,27859774:-4578808 -) -(1,11198:7881654,27859774:4578808,452978,115847 -k1,11198:7881654,27859774:3277 -h1,11198:12457185,27859774:0,411205,112570 -) -g1,11198:12659691,27859774 -r1,11213:12659691,27859774:0,865079,259526 -g1,11198:12659691,27859774 -g1,11198:12987371,27859774 -) -g1,11198:12987371,27859774 -(1,11198:12987371,27859774:11273228,605553,259526 -g1,11198:13315051,27859774 -g1,11198:13315052,27859774 -g1,11198:16858583,27859774 -k1,11198:23932919,27859774:4167159 -g1,11198:24260599,27859774 -) -g1,11198:24260599,27859774 -(1,11199:24260599,27859774:7960445,605553,259526 -g1,11198:24588279,27859774 -g1,11198:24588280,27859774 -(1,11198:24588280,27859774:0,414482,115847 -r1,11213:26705105,27859774:2116825,530329,115847 -k1,11198:24588280,27859774:-2116825 -) -(1,11198:24588280,27859774:2116825,414482,115847 -k1,11198:24588280,27859774:3277 -h1,11198:26701828,27859774:0,411205,112570 -) -g1,11198:27078004,27859774 -$1,11198:27078004,27859774 -(1,11198:27593117,27958088:779158,298648,5505 -) -g1,11198:28554335,27859774 -g1,11198:29257406,27859774 -(1,11198:29772519,27958088:463995,331678,0 -) -$1,11198:30236514,27859774 -k1,11199:31893364,27859774:1656850 -g1,11199:32221044,27859774 -) -g1,11199:32221044,27859774 -) -] -$1,11200:32221044,20165802 -) -g1,11200:32221044,20165802 -) -(1,11200:7354744,28481320:24866300,65536,0 -g1,11200:7354744,28481320 -(1,11200:7354744,28481320:24866300,65536,0 -r1,11213:32221044,28481320:24866300,65536,0 -) -g1,11200:32221044,28481320 -) -] -g1,11200:32221044,28481320 -k1,11200:32583029,28481320:361985 -) -] -] -(1,11172:6630773,30447400:25952256,32768,229376 -(1,11172:6630773,30447400:0,32768,229376 -(1,11172:6630773,30447400:5505024,32768,229376 -r1,11213:12135797,30447400:5505024,262144,229376 -) -k1,11172:6630773,30447400:-5505024 -) -(1,11172:6630773,30447400:25952256,32768,0 -r1,11213:32583029,30447400:25952256,32768,0 -) -) -(1,11172:6630773,32079252:25952256,606339,151780 -(1,11172:6630773,32079252:1974731,582746,14155 -g1,11172:6630773,32079252 -g1,11172:8605504,32079252 -) -g1,11172:12737418,32079252 -g1,11172:14546212,32079252 -g1,11172:17872820,32079252 -k1,11172:32583029,32079252:12355631 -g1,11172:32583029,32079252 -) -(1,11204:6630773,33337548:25952256,513147,134348 -k1,11203:7363957,33337548:318341 -k1,11203:10442793,33337548:318460 -k1,11203:12992754,33337548:318460 -k1,11203:16337012,33337548:318461 -k1,11203:17939978,33337548:318460 -k1,11203:19362720,33337548:318460 -k1,11203:20428947,33337548:318461 -k1,11203:22260633,33337548:318460 -k1,11203:23230521,33337548:318460 -k1,11203:25278476,33337548:318460 -k1,11203:27854652,33337548:318461 -k1,11203:30785377,33337548:318460 -k1,11203:32583029,33337548:0 -) -(1,11204:6630773,34202628:25952256,513147,134348 -k1,11203:8106521,34202628:300688 -k1,11203:10008910,34202628:300689 -k1,11203:13614579,34202628:300688 -k1,11203:15428493,34202628:300688 -k1,11203:16720741,34202628:300688 -k1,11203:18788936,34202628:300689 -k1,11203:20037275,34202628:300688 -k1,11203:22969889,34202628:300688 -(1,11203:22969889,34202628:0,452978,115847 -r1,11213:25086714,34202628:2116825,568825,115847 -k1,11203:22969889,34202628:-2116825 -) -(1,11203:22969889,34202628:2116825,452978,115847 -k1,11203:22969889,34202628:3277 -h1,11203:25083437,34202628:0,411205,112570 -) -k1,11203:25561073,34202628:300689 -(1,11203:25561073,34202628:0,452978,115847 -r1,11213:27326186,34202628:1765113,568825,115847 -k1,11203:25561073,34202628:-1765113 -) -(1,11203:25561073,34202628:1765113,452978,115847 -k1,11203:25561073,34202628:3277 -h1,11203:27322909,34202628:0,411205,112570 -) -k1,11203:27626874,34202628:300688 -k1,11203:31169628,34202628:300688 -(1,11203:31169628,34202628:0,452978,115847 -r1,11213:32583029,34202628:1413401,568825,115847 -k1,11203:31169628,34202628:-1413401 -) -(1,11203:31169628,34202628:1413401,452978,115847 -k1,11203:31169628,34202628:3277 -h1,11203:32579752,34202628:0,411205,112570 -) -k1,11203:32583029,34202628:0 -) -(1,11204:6630773,35067708:25952256,505283,134348 -k1,11203:9806012,35067708:145510 -k1,11203:13282062,35067708:145510 -(1,11203:13282062,35067708:0,452978,115847 -r1,11213:15047175,35067708:1765113,568825,115847 -k1,11203:13282062,35067708:-1765113 -) -(1,11203:13282062,35067708:1765113,452978,115847 -k1,11203:13282062,35067708:3277 -h1,11203:15043898,35067708:0,411205,112570 -) -k1,11203:15366354,35067708:145509 -k1,11203:16703309,35067708:145510 -(1,11203:16703309,35067708:0,452978,115847 -r1,11213:18468422,35067708:1765113,568825,115847 -k1,11203:16703309,35067708:-1765113 -) -(1,11203:16703309,35067708:1765113,452978,115847 -k1,11203:16703309,35067708:3277 -h1,11203:18465145,35067708:0,411205,112570 -) -k1,11203:18787602,35067708:145510 -k1,11203:22030999,35067708:145510 -k1,11203:23672696,35067708:145510 -k1,11203:28241885,35067708:145509 -k1,11203:29158098,35067708:145510 -k1,11203:31915873,35067708:145510 -k1,11204:32583029,35067708:0 -) -(1,11204:6630773,35932788:25952256,513147,134348 -k1,11203:9348925,35932788:168146 -k1,11203:10278600,35932788:168147 -k1,11203:10802606,35932788:168146 -k1,11203:12843772,35932788:168147 -k1,11203:15707414,35932788:168146 -k1,11203:16975255,35932788:168147 -k1,11203:20230147,35932788:168146 -k1,11203:21417378,35932788:168146 -k1,11203:23920573,35932788:168147 -k1,11203:25584906,35932788:168146 -k1,11203:26944498,35932788:168147 -k1,11203:28216926,35932788:168146 -k1,11203:30100806,35932788:168147 -k1,11203:30727049,35932788:168146 -k1,11203:32583029,35932788:0 -) -(1,11204:6630773,36797868:25952256,513147,126483 -k1,11203:7547778,36797868:265577 -k1,11203:11651799,36797868:265577 -k1,11203:13791706,36797868:265577 -k1,11203:17083080,36797868:265577 -k1,11203:18340217,36797868:265577 -k1,11203:20892345,36797868:265577 -k1,11203:21773960,36797868:265577 -k1,11203:22492980,36797868:265511 -k1,11203:23950002,36797868:265577 -k1,11203:27332471,36797868:265577 -k1,11203:28322876,36797868:265577 -k1,11203:30055149,36797868:265577 -k1,11203:32018764,36797868:265577 -k1,11204:32583029,36797868:0 -) -(1,11204:6630773,37662948:25952256,513147,134348 -k1,11203:9061251,37662948:276310 -k1,11203:12778855,37662948:276309 -k1,11203:14046725,37662948:276310 -k1,11203:16009932,37662948:276310 -k1,11203:17666429,37662948:276309 -k1,11203:18934299,37662948:276310 -k1,11203:20418438,37662948:276310 -k1,11203:21926825,37662948:276310 -k1,11203:24481821,37662948:276309 -h1,11203:25850868,37662948:0,0,0 -k1,11203:26127178,37662948:276310 -k1,11203:27212858,37662948:276310 -k1,11203:28987320,37662948:276309 -h1,11203:30182697,37662948:0,0,0 -k1,11203:30839771,37662948:276310 -k1,11203:32583029,37662948:0 -) -(1,11204:6630773,38528028:25952256,513147,134348 -h1,11203:7601361,38528028:0,0,0 -k1,11203:7886927,38528028:285566 -k1,11203:9496320,38528028:285566 -k1,11203:12013387,38528028:285566 -k1,11203:15324750,38528028:285566 -k1,11203:17177937,38528028:285566 -k1,11203:18897431,38528028:285566 -k1,11203:19597754,38528028:285480 -k1,11203:21167826,38528028:285566 -k1,11203:24886823,38528028:285566 -k1,11203:27784654,38528028:285566 -k1,11203:31685186,38528028:285566 -k1,11203:32583029,38528028:0 -) -(1,11204:6630773,39393108:25952256,513147,134348 -k1,11203:8506212,39393108:178712 -k1,11203:11710720,39393108:178711 -k1,11203:13242095,39393108:178712 -k1,11203:13776666,39393108:178711 -k1,11203:15933255,39393108:178712 -k1,11203:16771258,39393108:178711 -k1,11203:19746391,39393108:178712 -k1,11203:21938368,39393108:178711 -k1,11203:22803242,39393108:178712 -k1,11203:24490592,39393108:178711 -k1,11203:25975437,39393108:178712 -k1,11203:29400146,39393108:178711 -k1,11203:31649796,39393108:178712 -k1,11204:32583029,39393108:0 -) -(1,11204:6630773,40258188:25952256,452978,115847 -(1,11203:6630773,40258188:0,452978,115847 -r1,11213:11209581,40258188:4578808,568825,115847 -k1,11203:6630773,40258188:-4578808 -) -(1,11203:6630773,40258188:4578808,452978,115847 -k1,11203:6630773,40258188:3277 -h1,11203:11206304,40258188:0,411205,112570 -) -k1,11204:32583029,40258188:21321020 -g1,11204:32583029,40258188 -) -v1,11206:6630773,41817950:0,393216,0 -(1,11207:6630773,44693530:25952256,3268796,0 -g1,11207:6630773,44693530 -g1,11207:6237557,44693530 -r1,11213:6368629,44693530:131072,3268796,0 -g1,11207:6567858,44693530 -g1,11207:6764466,44693530 -[1,11207:6764466,44693530:25818563,3268796,0 -(1,11207:6764466,42090427:25818563,665693,196608 -(1,11206:6764466,42090427:0,665693,196608 -r1,11213:7868133,42090427:1103667,862301,196608 -k1,11206:6764466,42090427:-1103667 -) -(1,11206:6764466,42090427:1103667,665693,196608 -) -k1,11206:8006533,42090427:138400 -k1,11206:9732751,42090427:327680 -k1,11206:11512173,42090427:138400 -k1,11206:12006433,42090427:138400 -(1,11206:12006433,42090427:0,452978,115847 -r1,11213:14474970,42090427:2468537,568825,115847 -k1,11206:12006433,42090427:-2468537 -) -(1,11206:12006433,42090427:2468537,452978,115847 -k1,11206:12006433,42090427:3277 -h1,11206:14471693,42090427:0,411205,112570 -) -k1,11206:14613370,42090427:138400 -k1,11206:16729647,42090427:138400 -k1,11206:18361613,42090427:138400 -k1,11206:19186175,42090427:138400 -(1,11206:19186175,42090427:0,452978,115847 -r1,11213:26578680,42090427:7392505,568825,115847 -k1,11206:19186175,42090427:-7392505 -) -(1,11206:19186175,42090427:7392505,452978,115847 -g1,11206:19892876,42090427 -g1,11206:20948012,42090427 -g1,11206:22706571,42090427 -g1,11206:23761707,42090427 -g1,11206:24816843,42090427 -g1,11206:25871979,42090427 -h1,11206:26575403,42090427:0,411205,112570 -) -k1,11206:26717080,42090427:138400 -k1,11206:28046925,42090427:138400 -k1,11206:29622530,42090427:138400 -k1,11206:30219027,42090427:138400 -k1,11206:31043589,42090427:138400 -k1,11207:32583029,42090427:0 -) -(1,11207:6764466,42955507:25818563,513147,134348 -k1,11206:8597210,42955507:193689 -k1,11206:9442326,42955507:193688 -k1,11206:10655100,42955507:193689 -k1,11206:13874586,42955507:193689 -k1,11206:14684313,42955507:193689 -k1,11206:16621259,42955507:193688 -h1,11206:17591847,42955507:0,0,0 -k1,11206:17959206,42955507:193689 -k1,11206:19050738,42955507:193689 -k1,11206:20263512,42955507:193689 -k1,11206:25080765,42955507:193688 -k1,11206:29668643,42955507:193689 -k1,11206:32583029,42955507:0 -) -(1,11207:6764466,43820587:25818563,513147,134348 -k1,11206:7930352,43820587:218235 -k1,11206:9167672,43820587:218235 -k1,11206:12411703,43820587:218234 -k1,11206:14088769,43820587:218235 -k1,11206:15573160,43820587:218235 -k1,11206:17393095,43820587:218235 -k1,11206:20357943,43820587:218234 -k1,11206:22472790,43820587:218235 -k1,11206:23342453,43820587:218235 -k1,11206:27225461,43820587:218235 -k1,11206:28992311,43820587:218234 -k1,11206:31221191,43820587:218235 -k1,11206:32583029,43820587:0 -) -(1,11207:6764466,44685667:25818563,505283,7863 -k1,11207:32583028,44685667:22957916 -g1,11207:32583028,44685667 -) -] -g1,11207:32583029,44693530 -) -h1,11207:6630773,44693530:0,0,0 -] -(1,11213:32583029,45706769:0,0,0 -g1,11213:32583029,45706769 -) -) -] -(1,11213:6630773,47279633:25952256,0,0 -h1,11213:6630773,47279633:25952256,0,0 -) -] -(1,11213:4262630,4025873:0,0,0 -[1,11213:-473656,4025873:0,0,0 -(1,11213:-473656,-710413:0,0,0 -(1,11213:-473656,-710413:0,0,0 -g1,11213:-473656,-710413 -) -g1,11213:-473656,-710413 +[1,11189:20812822,21070146:909902,705365,5505 +(1,11189:20812822,20613425:393347,248644,5505 +) +(1,11189:20812822,21070146:909902,346358,5505 +) +] +g1,11189:21831960,20939142 +(1,11189:22305131,21037456:233243,346358,5505 +) +$1,11189:22538374,20939142 +k1,11189:23932919,20939142:1394545 +g1,11189:24260599,20939142 +) +g1,11189:24260599,20939142 +(1,11190:24260599,20939142:7960445,721028,259526 +g1,11189:24588279,20939142 +g1,11189:24588280,20939142 +(1,11189:24588280,20939142:0,452978,115847 +r1,11212:27056817,20939142:2468537,568825,115847 +k1,11189:24588280,20939142:-2468537 +) +(1,11189:24588280,20939142:2468537,452978,115847 +k1,11189:24588280,20939142:3277 +h1,11189:27053540,20939142:0,411205,112570 +) +g1,11189:27429716,20939142 +$1,11189:27429716,20939142 +(1,11189:27944829,21037456:779158,298648,5505 +) +g1,11189:28906047,20939142 +g1,11189:29656304,20939142 +(1,11189:30171417,21037456:463995,331678,0 +) +$1,11189:30635412,20939142 +k1,11190:31893364,20939142:1257952 +g1,11190:32221044,20939142 +) +g1,11190:32221044,20939142 +) +(1,11191:7553973,21804221:24667071,605553,259526 +g1,11190:7553973,21804221 +(1,11190:7553973,21804221:5433398,605553,259526 +r1,11212:7553973,21804221:0,792993,237900 +g1,11190:7881653,21804221 +g1,11190:7881654,21804221 +(1,11190:7881654,21804221:0,452978,115847 +r1,11212:10701903,21804221:2820249,568825,115847 +k1,11190:7881654,21804221:-2820249 +) +(1,11190:7881654,21804221:2820249,452978,115847 +k1,11190:7881654,21804221:3277 +h1,11190:10698626,21804221:0,411205,112570 +) +g1,11190:10901132,21804221 +r1,11212:10901132,21804221:0,865079,259526 +k1,11190:12659691,21804221:1758559 +g1,11190:12987371,21804221 +) +g1,11190:12987371,21804221 +(1,11190:12987371,21804221:11273228,605553,259526 +g1,11190:13315051,21804221 +g1,11190:13315052,21804221 +g1,11190:17021112,21804221 +k1,11190:23932919,21804221:3714961 +g1,11190:24260599,21804221 +) +g1,11190:24260599,21804221 +(1,11191:24260599,21804221:7960445,605553,259526 +g1,11190:24588279,21804221 +g1,11190:24588280,21804221 +(1,11190:24588280,21804221:0,452978,115847 +r1,11212:27056817,21804221:2468537,568825,115847 +k1,11190:24588280,21804221:-2468537 +) +(1,11190:24588280,21804221:2468537,452978,115847 +k1,11190:24588280,21804221:3277 +h1,11190:27053540,21804221:0,411205,112570 +) +g1,11190:27429716,21804221 +$1,11190:27429716,21804221 +(1,11190:27944829,21902535:779158,298648,5505 +) +g1,11190:28906047,21804221 +g1,11190:29656304,21804221 +(1,11190:30171417,21902535:463995,331678,0 +) +$1,11190:30635412,21804221 +k1,11191:31893364,21804221:1257952 +g1,11191:32221044,21804221 +) +g1,11191:32221044,21804221 +) +(1,11192:7553973,22669300:24667071,605553,259526 +g1,11191:7553973,22669300 +(1,11191:7553973,22669300:5433398,605553,259526 +r1,11212:7553973,22669300:0,792993,237900 +g1,11191:7881653,22669300 +g1,11191:7881654,22669300 +(1,11191:7881654,22669300:0,452978,115847 +r1,11212:10701903,22669300:2820249,568825,115847 +k1,11191:7881654,22669300:-2820249 +) +(1,11191:7881654,22669300:2820249,452978,115847 +k1,11191:7881654,22669300:3277 +h1,11191:10698626,22669300:0,411205,112570 +) +g1,11191:10901132,22669300 +r1,11212:10901132,22669300:0,865079,259526 +k1,11191:12659691,22669300:1758559 +g1,11191:12987371,22669300 +) +g1,11191:12987371,22669300 +(1,11191:12987371,22669300:11273228,605553,259526 +g1,11191:13315051,22669300 +g1,11191:13315052,22669300 +g1,11191:17021112,22669300 +k1,11191:23932919,22669300:3819818 +g1,11191:24260599,22669300 +) +g1,11191:24260599,22669300 +(1,11192:24260599,22669300:7960445,605553,259526 +g1,11191:24588279,22669300 +g1,11191:24588280,22669300 +(1,11191:24588280,22669300:0,452978,115847 +r1,11212:27056817,22669300:2468537,568825,115847 +k1,11191:24588280,22669300:-2468537 +) +(1,11191:24588280,22669300:2468537,452978,115847 +k1,11191:24588280,22669300:3277 +h1,11191:27053540,22669300:0,411205,112570 +) +g1,11191:27429716,22669300 +$1,11191:27429716,22669300 +(1,11191:27944829,22767614:779158,298648,5505 +) +g1,11191:28906047,22669300 +g1,11191:29656304,22669300 +(1,11191:30171417,22767614:463995,331678,0 +) +$1,11191:30635412,22669300 +k1,11192:31893364,22669300:1257952 +g1,11192:32221044,22669300 +) +g1,11192:32221044,22669300 +) +(1,11193:7553973,23534379:24667071,605553,259526 +g1,11192:7553973,23534379 +(1,11192:7553973,23534379:5433398,605553,259526 +r1,11212:7553973,23534379:0,792993,237900 +g1,11192:7881653,23534379 +g1,11192:7881654,23534379 +(1,11192:7881654,23534379:0,452978,115847 +r1,11212:10701903,23534379:2820249,568825,115847 +k1,11192:7881654,23534379:-2820249 +) +(1,11192:7881654,23534379:2820249,452978,115847 +k1,11192:7881654,23534379:3277 +h1,11192:10698626,23534379:0,411205,112570 +) +g1,11192:10901132,23534379 +r1,11212:10901132,23534379:0,865079,259526 +k1,11192:12659691,23534379:1758559 +g1,11192:12987371,23534379 +) +g1,11192:12987371,23534379 +(1,11192:12987371,23534379:11273228,605553,259526 +g1,11192:13315051,23534379 +g1,11192:13315052,23534379 +g1,11192:16037417,23534379 +k1,11192:23932919,23534379:5535551 +g1,11192:24260599,23534379 +) +g1,11192:24260599,23534379 +(1,11193:24260599,23534379:7960445,605553,259526 +g1,11192:24588279,23534379 +g1,11192:24588280,23534379 +(1,11192:24588280,23534379:0,452978,115847 +r1,11212:27056817,23534379:2468537,568825,115847 +k1,11192:24588280,23534379:-2468537 +) +(1,11192:24588280,23534379:2468537,452978,115847 +k1,11192:24588280,23534379:3277 +h1,11192:27053540,23534379:0,411205,112570 +) +g1,11192:27429716,23534379 +$1,11192:27429716,23534379 +(1,11192:27944829,23632693:779158,298648,5505 +) +g1,11192:28906047,23534379 +g1,11192:29656304,23534379 +(1,11192:30171417,23632693:463995,331678,0 +) +$1,11192:30635412,23534379 +k1,11193:31893364,23534379:1257952 +g1,11193:32221044,23534379 +) +g1,11193:32221044,23534379 +) +(1,11194:7553973,24399458:24667071,605553,259526 +g1,11193:7553973,24399458 +(1,11193:7553973,24399458:5433398,605553,259526 +r1,11212:7553973,24399458:0,792993,237900 +g1,11193:7881653,24399458 +g1,11193:7881654,24399458 +(1,11193:7881654,24399458:0,459977,115847 +r1,11212:9998479,24399458:2116825,575824,115847 +k1,11193:7881654,24399458:-2116825 +) +(1,11193:7881654,24399458:2116825,459977,115847 +k1,11193:7881654,24399458:3277 +h1,11193:9995202,24399458:0,411205,112570 +) +g1,11193:10197708,24399458 +r1,11212:10197708,24399458:0,865079,259526 +k1,11193:12659691,24399458:2461983 +g1,11193:12987371,24399458 +) +g1,11193:12987371,24399458 +(1,11193:12987371,24399458:11273228,605553,259526 +g1,11193:13315051,24399458 +g1,11193:13315052,24399458 +$1,11193:13315052,24399458 +(1,11193:13788223,24497772:311689,339935,0 +) +g1,11193:14245560,24399458 +g1,11193:14959405,24399458 +(1,11193:15432576,24497772:311689,334430,0 +) +g1,11193:16042900,24399458 +g1,11193:16729508,24399458 +(1,11193:17202679,24497772:233243,346358,5505 +) +g1,11193:17581570,24399458 +g1,11193:18295415,24399458 +(1,11193:18768586,24497772:909902,346358,5505 +) +g1,11193:19977123,24399458 +g1,11193:20663731,24399458 +(1,11193:21136902,24497772:393347,248644,5505 +) +g1,11193:21675897,24399458 +g1,11193:22389742,24399458 +(1,11193:22862913,24497772:1070006,334430,5505 +) +$1,11193:23932919,24399458 +g1,11193:23932919,24399458 +g1,11193:24260599,24399458 +) +g1,11193:24260599,24399458 +(1,11194:24260599,24399458:7960445,605553,259526 +g1,11193:24588279,24399458 +g1,11193:24588280,24399458 +(1,11193:24588280,24399458:0,452978,115847 +r1,11212:27056817,24399458:2468537,568825,115847 +k1,11193:24588280,24399458:-2468537 +) +(1,11193:24588280,24399458:2468537,452978,115847 +k1,11193:24588280,24399458:3277 +h1,11193:27053540,24399458:0,411205,112570 +) +g1,11193:27429716,24399458 +$1,11193:27429716,24399458 +(1,11193:27944829,24497772:779158,298648,5505 +) +g1,11193:28906047,24399458 +g1,11193:29656304,24399458 +(1,11193:30171417,24497772:463995,331678,0 +) +g1,11193:30781060,24399458 +g1,11193:31494905,24399458 +$1,11193:31893364,24399458 +g1,11194:31893364,24399458 +g1,11194:32221044,24399458 +) +g1,11194:32221044,24399458 +) +(1,11195:7553973,25264537:24667071,605553,259526 +g1,11194:7553973,25264537 +(1,11194:7553973,25264537:5433398,605553,259526 +r1,11212:7553973,25264537:0,792993,237900 +g1,11194:7881653,25264537 +g1,11194:7881654,25264537 +(1,11194:7881654,25264537:0,459977,115847 +r1,11212:11053614,25264537:3171960,575824,115847 +k1,11194:7881654,25264537:-3171960 +) +(1,11194:7881654,25264537:3171960,459977,115847 +k1,11194:7881654,25264537:3277 +h1,11194:11050337,25264537:0,411205,112570 +) +g1,11194:11252843,25264537 +r1,11212:11252843,25264537:0,865079,259526 +k1,11194:12659691,25264537:1406848 +g1,11194:12987371,25264537 +) +g1,11194:12987371,25264537 +(1,11194:12987371,25264537:11273228,605553,259526 +g1,11194:13315051,25264537 +g1,11194:13315052,25264537 +g1,11194:15800832,25264537 +g1,11194:16659353,25264537 +k1,11194:23932919,25264537:6166008 +g1,11194:24260599,25264537 +) +g1,11194:24260599,25264537 +(1,11195:24260599,25264537:7960445,605553,259526 +g1,11194:24588279,25264537 +g1,11194:24588280,25264537 +(1,11194:24588280,25264537:0,452978,115847 +r1,11212:27056817,25264537:2468537,568825,115847 +k1,11194:24588280,25264537:-2468537 +) +(1,11194:24588280,25264537:2468537,452978,115847 +k1,11194:24588280,25264537:3277 +h1,11194:27053540,25264537:0,411205,112570 +) +g1,11194:27429716,25264537 +$1,11194:27429716,25264537 +(1,11194:27944829,25362851:779158,298648,5505 +) +g1,11194:28906047,25264537 +g1,11194:29656304,25264537 +(1,11194:30171417,25362851:463995,331678,0 +) +g1,11194:30781060,25264537 +g1,11194:31494905,25264537 +$1,11194:31893364,25264537 +g1,11195:31893364,25264537 +g1,11195:32221044,25264537 +) +g1,11195:32221044,25264537 +) +(1,11196:7553973,26129616:24667071,605553,259526 +g1,11195:7553973,26129616 +(1,11195:7553973,26129616:5433398,605553,259526 +r1,11212:7553973,26129616:0,792993,237900 +g1,11195:7881653,26129616 +g1,11195:7881654,26129616 +(1,11195:7881654,26129616:0,459977,115847 +r1,11212:11757038,26129616:3875384,575824,115847 +k1,11195:7881654,26129616:-3875384 +) +(1,11195:7881654,26129616:3875384,459977,115847 +k1,11195:7881654,26129616:3277 +h1,11195:11753761,26129616:0,411205,112570 +) +g1,11195:11956267,26129616 +r1,11212:11956267,26129616:0,865079,259526 +k1,11195:12659691,26129616:703424 +g1,11195:12987371,26129616 +) +g1,11195:12987371,26129616 +(1,11195:12987371,26129616:11273228,605553,259526 +g1,11195:13315051,26129616 +g1,11195:13315052,26129616 +$1,11195:13315052,26129616 +$1,11195:13991383,26129616 +k1,11195:23932919,26129616:9941536 +g1,11195:24260599,26129616 +) +g1,11195:24260599,26129616 +(1,11196:24260599,26129616:7960445,605553,259526 +g1,11195:24588279,26129616 +g1,11195:24588280,26129616 +(1,11195:24588280,26129616:0,452978,115847 +r1,11212:27056817,26129616:2468537,568825,115847 +k1,11195:24588280,26129616:-2468537 +) +(1,11195:24588280,26129616:2468537,452978,115847 +k1,11195:24588280,26129616:3277 +h1,11195:27053540,26129616:0,411205,112570 +) +g1,11195:27429716,26129616 +$1,11195:27429716,26129616 +(1,11195:27944829,26227930:779158,298648,5505 +) +g1,11195:28906047,26129616 +g1,11195:29656304,26129616 +(1,11195:30171417,26227930:463995,331678,0 +) +$1,11195:30635412,26129616 +k1,11196:31893364,26129616:1257952 +g1,11196:32221044,26129616 +) +g1,11196:32221044,26129616 +) +(1,11197:7553973,26994695:24667071,605553,259526 +g1,11196:7553973,26994695 +(1,11196:7553973,26994695:5433398,605553,259526 +r1,11212:7553973,26994695:0,792993,237900 +g1,11196:7881653,26994695 +g1,11196:7881654,26994695 +(1,11196:7881654,26994695:0,452978,115847 +r1,11212:9646767,26994695:1765113,568825,115847 +k1,11196:7881654,26994695:-1765113 +) +(1,11196:7881654,26994695:1765113,452978,115847 +k1,11196:7881654,26994695:3277 +h1,11196:9643490,26994695:0,411205,112570 +) +g1,11196:9845996,26994695 +r1,11212:9845996,26994695:0,865079,259526 +k1,11196:12659691,26994695:2813695 +g1,11196:12987371,26994695 +) +g1,11196:12987371,26994695 +(1,11196:12987371,26994695:11273228,605553,259526 +g1,11196:13315051,26994695 +g1,11196:13315052,26994695 +g1,11196:16858583,26994695 +k1,11196:23932919,26994695:4173057 +g1,11196:24260599,26994695 +) +g1,11196:24260599,26994695 +(1,11197:24260599,26994695:7960445,605553,259526 +g1,11196:24588279,26994695 +g1,11196:24588280,26994695 +(1,11196:24588280,26994695:0,452978,115847 +r1,11212:25649969,26994695:1061689,568825,115847 +k1,11196:24588280,26994695:-1061689 +) +(1,11196:24588280,26994695:1061689,452978,115847 +k1,11196:24588280,26994695:3277 +h1,11196:25646692,26994695:0,411205,112570 +) +g1,11196:26022868,26994695 +$1,11196:26022868,26994695 +(1,11196:26537981,27093009:779158,298648,5505 +) +g1,11196:27499199,26994695 +g1,11196:28202270,26994695 +(1,11196:28717383,27093009:463995,331678,0 +) +$1,11196:29181378,26994695 +k1,11197:31893364,26994695:2711986 +g1,11197:32221044,26994695 +) +g1,11197:32221044,26994695 +) +(1,11198:7553973,27859774:24667071,605553,259526 +g1,11197:7553973,27859774 +(1,11197:7553973,27859774:5433398,605553,259526 +r1,11212:7553973,27859774:0,792993,237900 +g1,11197:7881653,27859774 +g1,11197:7881654,27859774 +(1,11197:7881654,27859774:0,452978,115847 +r1,11212:12460462,27859774:4578808,568825,115847 +k1,11197:7881654,27859774:-4578808 +) +(1,11197:7881654,27859774:4578808,452978,115847 +k1,11197:7881654,27859774:3277 +h1,11197:12457185,27859774:0,411205,112570 +) +g1,11197:12659691,27859774 +r1,11212:12659691,27859774:0,865079,259526 +g1,11197:12659691,27859774 +g1,11197:12987371,27859774 +) +g1,11197:12987371,27859774 +(1,11197:12987371,27859774:11273228,605553,259526 +g1,11197:13315051,27859774 +g1,11197:13315052,27859774 +g1,11197:16858583,27859774 +k1,11197:23932919,27859774:4167159 +g1,11197:24260599,27859774 +) +g1,11197:24260599,27859774 +(1,11198:24260599,27859774:7960445,605553,259526 +g1,11197:24588279,27859774 +g1,11197:24588280,27859774 +(1,11197:24588280,27859774:0,414482,115847 +r1,11212:26705105,27859774:2116825,530329,115847 +k1,11197:24588280,27859774:-2116825 +) +(1,11197:24588280,27859774:2116825,414482,115847 +k1,11197:24588280,27859774:3277 +h1,11197:26701828,27859774:0,411205,112570 +) +g1,11197:27078004,27859774 +$1,11197:27078004,27859774 +(1,11197:27593117,27958088:779158,298648,5505 +) +g1,11197:28554335,27859774 +g1,11197:29257406,27859774 +(1,11197:29772519,27958088:463995,331678,0 +) +$1,11197:30236514,27859774 +k1,11198:31893364,27859774:1656850 +g1,11198:32221044,27859774 +) +g1,11198:32221044,27859774 +) +] +$1,11199:32221044,20165802 +) +g1,11199:32221044,20165802 +) +(1,11199:7354744,28481320:24866300,65536,0 +g1,11199:7354744,28481320 +(1,11199:7354744,28481320:24866300,65536,0 +r1,11212:32221044,28481320:24866300,65536,0 +) +g1,11199:32221044,28481320 +) +] +g1,11199:32221044,28481320 +k1,11199:32583029,28481320:361985 +) +] +] +(1,11171:6630773,30447400:25952256,32768,229376 +(1,11171:6630773,30447400:0,32768,229376 +(1,11171:6630773,30447400:5505024,32768,229376 +r1,11212:12135797,30447400:5505024,262144,229376 +) +k1,11171:6630773,30447400:-5505024 +) +(1,11171:6630773,30447400:25952256,32768,0 +r1,11212:32583029,30447400:25952256,32768,0 +) +) +(1,11171:6630773,32079252:25952256,606339,151780 +(1,11171:6630773,32079252:1974731,582746,14155 +g1,11171:6630773,32079252 +g1,11171:8605504,32079252 +) +g1,11171:12737418,32079252 +g1,11171:14546212,32079252 +g1,11171:17872820,32079252 +k1,11171:32583029,32079252:12355631 +g1,11171:32583029,32079252 +) +(1,11203:6630773,33337548:25952256,513147,134348 +k1,11202:7363957,33337548:318341 +k1,11202:10442793,33337548:318460 +k1,11202:12992754,33337548:318460 +k1,11202:16337012,33337548:318461 +k1,11202:17939978,33337548:318460 +k1,11202:19362720,33337548:318460 +k1,11202:20428947,33337548:318461 +k1,11202:22260633,33337548:318460 +k1,11202:23230521,33337548:318460 +k1,11202:25278476,33337548:318460 +k1,11202:27854652,33337548:318461 +k1,11202:30785377,33337548:318460 +k1,11202:32583029,33337548:0 +) +(1,11203:6630773,34202628:25952256,513147,134348 +k1,11202:8106521,34202628:300688 +k1,11202:10008910,34202628:300689 +k1,11202:13614579,34202628:300688 +k1,11202:15428493,34202628:300688 +k1,11202:16720741,34202628:300688 +k1,11202:18788936,34202628:300689 +k1,11202:20037275,34202628:300688 +k1,11202:22969889,34202628:300688 +(1,11202:22969889,34202628:0,452978,115847 +r1,11212:25086714,34202628:2116825,568825,115847 +k1,11202:22969889,34202628:-2116825 +) +(1,11202:22969889,34202628:2116825,452978,115847 +k1,11202:22969889,34202628:3277 +h1,11202:25083437,34202628:0,411205,112570 +) +k1,11202:25561073,34202628:300689 +(1,11202:25561073,34202628:0,452978,115847 +r1,11212:27326186,34202628:1765113,568825,115847 +k1,11202:25561073,34202628:-1765113 +) +(1,11202:25561073,34202628:1765113,452978,115847 +k1,11202:25561073,34202628:3277 +h1,11202:27322909,34202628:0,411205,112570 +) +k1,11202:27626874,34202628:300688 +k1,11202:31169628,34202628:300688 +(1,11202:31169628,34202628:0,452978,115847 +r1,11212:32583029,34202628:1413401,568825,115847 +k1,11202:31169628,34202628:-1413401 +) +(1,11202:31169628,34202628:1413401,452978,115847 +k1,11202:31169628,34202628:3277 +h1,11202:32579752,34202628:0,411205,112570 +) +k1,11202:32583029,34202628:0 +) +(1,11203:6630773,35067708:25952256,505283,134348 +k1,11202:9806012,35067708:145510 +k1,11202:13282062,35067708:145510 +(1,11202:13282062,35067708:0,452978,115847 +r1,11212:15047175,35067708:1765113,568825,115847 +k1,11202:13282062,35067708:-1765113 +) +(1,11202:13282062,35067708:1765113,452978,115847 +k1,11202:13282062,35067708:3277 +h1,11202:15043898,35067708:0,411205,112570 +) +k1,11202:15366354,35067708:145509 +k1,11202:16703309,35067708:145510 +(1,11202:16703309,35067708:0,452978,115847 +r1,11212:18468422,35067708:1765113,568825,115847 +k1,11202:16703309,35067708:-1765113 +) +(1,11202:16703309,35067708:1765113,452978,115847 +k1,11202:16703309,35067708:3277 +h1,11202:18465145,35067708:0,411205,112570 +) +k1,11202:18787602,35067708:145510 +k1,11202:22030999,35067708:145510 +k1,11202:23672696,35067708:145510 +k1,11202:28241885,35067708:145509 +k1,11202:29158098,35067708:145510 +k1,11202:31915873,35067708:145510 +k1,11203:32583029,35067708:0 +) +(1,11203:6630773,35932788:25952256,513147,134348 +k1,11202:9348925,35932788:168146 +k1,11202:10278600,35932788:168147 +k1,11202:10802606,35932788:168146 +k1,11202:12843772,35932788:168147 +k1,11202:15707414,35932788:168146 +k1,11202:16975255,35932788:168147 +k1,11202:20230147,35932788:168146 +k1,11202:21417378,35932788:168146 +k1,11202:23920573,35932788:168147 +k1,11202:25584906,35932788:168146 +k1,11202:26944498,35932788:168147 +k1,11202:28216926,35932788:168146 +k1,11202:30100806,35932788:168147 +k1,11202:30727049,35932788:168146 +k1,11202:32583029,35932788:0 +) +(1,11203:6630773,36797868:25952256,513147,126483 +k1,11202:7547778,36797868:265577 +k1,11202:11651799,36797868:265577 +k1,11202:13791706,36797868:265577 +k1,11202:17083080,36797868:265577 +k1,11202:18340217,36797868:265577 +k1,11202:20892345,36797868:265577 +k1,11202:21773960,36797868:265577 +k1,11202:22492980,36797868:265511 +k1,11202:23950002,36797868:265577 +k1,11202:27332471,36797868:265577 +k1,11202:28322876,36797868:265577 +k1,11202:30055149,36797868:265577 +k1,11202:32018764,36797868:265577 +k1,11203:32583029,36797868:0 +) +(1,11203:6630773,37662948:25952256,513147,134348 +k1,11202:9061251,37662948:276310 +k1,11202:12778855,37662948:276309 +k1,11202:14046725,37662948:276310 +k1,11202:16009932,37662948:276310 +k1,11202:17666429,37662948:276309 +k1,11202:18934299,37662948:276310 +k1,11202:20418438,37662948:276310 +k1,11202:21926825,37662948:276310 +k1,11202:24481821,37662948:276309 +h1,11202:25850868,37662948:0,0,0 +k1,11202:26127178,37662948:276310 +k1,11202:27212858,37662948:276310 +k1,11202:28987320,37662948:276309 +h1,11202:30182697,37662948:0,0,0 +k1,11202:30839771,37662948:276310 +k1,11202:32583029,37662948:0 +) +(1,11203:6630773,38528028:25952256,513147,134348 +h1,11202:7601361,38528028:0,0,0 +k1,11202:7886927,38528028:285566 +k1,11202:9496320,38528028:285566 +k1,11202:12013387,38528028:285566 +k1,11202:15324750,38528028:285566 +k1,11202:17177937,38528028:285566 +k1,11202:18897431,38528028:285566 +k1,11202:19597754,38528028:285480 +k1,11202:21167826,38528028:285566 +k1,11202:24886823,38528028:285566 +k1,11202:27784654,38528028:285566 +k1,11202:31685186,38528028:285566 +k1,11202:32583029,38528028:0 +) +(1,11203:6630773,39393108:25952256,513147,134348 +k1,11202:8506212,39393108:178712 +k1,11202:11710720,39393108:178711 +k1,11202:13242095,39393108:178712 +k1,11202:13776666,39393108:178711 +k1,11202:15933255,39393108:178712 +k1,11202:16771258,39393108:178711 +k1,11202:19746391,39393108:178712 +k1,11202:21938368,39393108:178711 +k1,11202:22803242,39393108:178712 +k1,11202:24490592,39393108:178711 +k1,11202:25975437,39393108:178712 +k1,11202:29400146,39393108:178711 +k1,11202:31649796,39393108:178712 +k1,11203:32583029,39393108:0 +) +(1,11203:6630773,40258188:25952256,452978,115847 +(1,11202:6630773,40258188:0,452978,115847 +r1,11212:11209581,40258188:4578808,568825,115847 +k1,11202:6630773,40258188:-4578808 +) +(1,11202:6630773,40258188:4578808,452978,115847 +k1,11202:6630773,40258188:3277 +h1,11202:11206304,40258188:0,411205,112570 +) +k1,11203:32583029,40258188:21321020 +g1,11203:32583029,40258188 +) +v1,11205:6630773,41817950:0,393216,0 +(1,11206:6630773,44693530:25952256,3268796,0 +g1,11206:6630773,44693530 +g1,11206:6237557,44693530 +r1,11212:6368629,44693530:131072,3268796,0 +g1,11206:6567858,44693530 +g1,11206:6764466,44693530 +[1,11206:6764466,44693530:25818563,3268796,0 +(1,11206:6764466,42090427:25818563,665693,196608 +(1,11205:6764466,42090427:0,665693,196608 +r1,11212:7868133,42090427:1103667,862301,196608 +k1,11205:6764466,42090427:-1103667 +) +(1,11205:6764466,42090427:1103667,665693,196608 +) +k1,11205:8006533,42090427:138400 +k1,11205:9732751,42090427:327680 +k1,11205:11512173,42090427:138400 +k1,11205:12006433,42090427:138400 +(1,11205:12006433,42090427:0,452978,115847 +r1,11212:14474970,42090427:2468537,568825,115847 +k1,11205:12006433,42090427:-2468537 +) +(1,11205:12006433,42090427:2468537,452978,115847 +k1,11205:12006433,42090427:3277 +h1,11205:14471693,42090427:0,411205,112570 +) +k1,11205:14613370,42090427:138400 +k1,11205:16729647,42090427:138400 +k1,11205:18361613,42090427:138400 +k1,11205:19186175,42090427:138400 +(1,11205:19186175,42090427:0,452978,115847 +r1,11212:26578680,42090427:7392505,568825,115847 +k1,11205:19186175,42090427:-7392505 +) +(1,11205:19186175,42090427:7392505,452978,115847 +g1,11205:19892876,42090427 +g1,11205:20948012,42090427 +g1,11205:22706571,42090427 +g1,11205:23761707,42090427 +g1,11205:24816843,42090427 +g1,11205:25871979,42090427 +h1,11205:26575403,42090427:0,411205,112570 +) +k1,11205:26717080,42090427:138400 +k1,11205:28046925,42090427:138400 +k1,11205:29622530,42090427:138400 +k1,11205:30219027,42090427:138400 +k1,11205:31043589,42090427:138400 +k1,11206:32583029,42090427:0 +) +(1,11206:6764466,42955507:25818563,513147,134348 +k1,11205:8597210,42955507:193689 +k1,11205:9442326,42955507:193688 +k1,11205:10655100,42955507:193689 +k1,11205:13874586,42955507:193689 +k1,11205:14684313,42955507:193689 +k1,11205:16621259,42955507:193688 +h1,11205:17591847,42955507:0,0,0 +k1,11205:17959206,42955507:193689 +k1,11205:19050738,42955507:193689 +k1,11205:20263512,42955507:193689 +k1,11205:25080765,42955507:193688 +k1,11205:29668643,42955507:193689 +k1,11205:32583029,42955507:0 +) +(1,11206:6764466,43820587:25818563,513147,134348 +k1,11205:7930352,43820587:218235 +k1,11205:9167672,43820587:218235 +k1,11205:12411703,43820587:218234 +k1,11205:14088769,43820587:218235 +k1,11205:15573160,43820587:218235 +k1,11205:17393095,43820587:218235 +k1,11205:20357943,43820587:218234 +k1,11205:22472790,43820587:218235 +k1,11205:23342453,43820587:218235 +k1,11205:27225461,43820587:218235 +k1,11205:28992311,43820587:218234 +k1,11205:31221191,43820587:218235 +k1,11205:32583029,43820587:0 +) +(1,11206:6764466,44685667:25818563,505283,7863 +k1,11206:32583028,44685667:22957916 +g1,11206:32583028,44685667 +) +] +g1,11206:32583029,44693530 +) +h1,11206:6630773,44693530:0,0,0 +] +(1,11212:32583029,45706769:0,0,0 +g1,11212:32583029,45706769 +) +) +] +(1,11212:6630773,47279633:25952256,0,0 +h1,11212:6630773,47279633:25952256,0,0 +) +] +(1,11212:4262630,4025873:0,0,0 +[1,11212:-473656,4025873:0,0,0 +(1,11212:-473656,-710413:0,0,0 +(1,11212:-473656,-710413:0,0,0 +g1,11212:-473656,-710413 +) +g1,11212:-473656,-710413 ) ] ) ] !47447 -}174 -Input:1879:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1880:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1881:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}175 Input:1882:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1883:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1884:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1885:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1886:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1887:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1888:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1889:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1890:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{175 -[1,11270:4262630,47279633:28320399,43253760,0 -(1,11270:4262630,4025873:0,0,0 -[1,11270:-473656,4025873:0,0,0 -(1,11270:-473656,-710413:0,0,0 -(1,11270:-473656,-644877:0,0,0 -k1,11270:-473656,-644877:-65536 +{176 +[1,11269:4262630,47279633:28320399,43253760,0 +(1,11269:4262630,4025873:0,0,0 +[1,11269:-473656,4025873:0,0,0 +(1,11269:-473656,-710413:0,0,0 +(1,11269:-473656,-644877:0,0,0 +k1,11269:-473656,-644877:-65536 ) -(1,11270:-473656,4736287:0,0,0 -k1,11270:-473656,4736287:5209943 +(1,11269:-473656,4736287:0,0,0 +k1,11269:-473656,4736287:5209943 ) -g1,11270:-473656,-710413 +g1,11269:-473656,-710413 ) ] ) -[1,11270:6630773,47279633:25952256,43253760,0 -[1,11270:6630773,4812305:25952256,786432,0 -(1,11270:6630773,4812305:25952256,505283,134348 -(1,11270:6630773,4812305:25952256,505283,134348 -g1,11270:3078558,4812305 -[1,11270:3078558,4812305:0,0,0 -(1,11270:3078558,2439708:0,1703936,0 -k1,11270:1358238,2439708:-1720320 +[1,11269:6630773,47279633:25952256,43253760,0 +[1,11269:6630773,4812305:25952256,786432,0 +(1,11269:6630773,4812305:25952256,505283,134348 +(1,11269:6630773,4812305:25952256,505283,134348 +g1,11269:3078558,4812305 +[1,11269:3078558,4812305:0,0,0 +(1,11269:3078558,2439708:0,1703936,0 +k1,11269:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11270:2537886,2439708:1179648,16384,0 +r1,11269:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11270:3078558,1915420:16384,1179648,0 +r1,11269:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -201599,16 +201782,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11270:3078558,4812305:0,0,0 -(1,11270:3078558,2439708:0,1703936,0 -g1,11270:29030814,2439708 -g1,11270:36135244,2439708 +[1,11269:3078558,4812305:0,0,0 +(1,11269:3078558,2439708:0,1703936,0 +g1,11269:29030814,2439708 +g1,11269:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11270:36151628,1915420:16384,1179648,0 +r1,11269:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -201617,25 +201800,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11270:37855564,2439708:1179648,16384,0 +r1,11269:37855564,2439708:1179648,16384,0 ) ) -k1,11270:3078556,2439708:-34777008 +k1,11269:3078556,2439708:-34777008 ) ] -[1,11270:3078558,4812305:0,0,0 -(1,11270:3078558,49800853:0,16384,2228224 -k1,11270:1358238,49800853:-1720320 +[1,11269:3078558,4812305:0,0,0 +(1,11269:3078558,49800853:0,16384,2228224 +k1,11269:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11270:2537886,49800853:1179648,16384,0 +r1,11269:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11270:3078558,51504789:16384,1179648,0 +r1,11269:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -201645,16 +201828,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11270:3078558,4812305:0,0,0 -(1,11270:3078558,49800853:0,16384,2228224 -g1,11270:29030814,49800853 -g1,11270:36135244,49800853 +[1,11269:3078558,4812305:0,0,0 +(1,11269:3078558,49800853:0,16384,2228224 +g1,11269:29030814,49800853 +g1,11269:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11270:36151628,51504789:16384,1179648,0 +r1,11269:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -201663,836 +201846,833 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11270:37855564,49800853:1179648,16384,0 -) -) -k1,11270:3078556,49800853:-34777008 -) -] -g1,11270:6630773,4812305 -k1,11270:21678495,4812305:13852345 -g1,11270:23301166,4812305 -g1,11270:24088253,4812305 -g1,11270:28572226,4812305 -g1,11270:29981905,4812305 -) -) -] -[1,11270:6630773,45706769:25952256,40108032,0 -(1,11270:6630773,45706769:25952256,40108032,0 -(1,11270:6630773,45706769:0,0,0 -g1,11270:6630773,45706769 -) -[1,11270:6630773,45706769:25952256,40108032,0 -(1,11210:6630773,6254097:25952256,32768,229376 -(1,11210:6630773,6254097:0,32768,229376 -(1,11210:6630773,6254097:5505024,32768,229376 -r1,11270:12135797,6254097:5505024,262144,229376 -) -k1,11210:6630773,6254097:-5505024 -) -(1,11210:6630773,6254097:25952256,32768,0 -r1,11270:32583029,6254097:25952256,32768,0 -) -) -(1,11210:6630773,7885949:25952256,615776,151780 -(1,11210:6630773,7885949:2464678,582746,14155 -g1,11210:6630773,7885949 -g1,11210:9095451,7885949 -) -g1,11210:10858632,7885949 -g1,11210:14356682,7885949 -g1,11210:16778106,7885949 -g1,11210:17835857,7885949 -k1,11210:32583029,7885949:12392594 -g1,11210:32583029,7885949 -) -(1,11213:6630773,9144245:25952256,701514,196608 -(1,11212:6630773,9144245:0,701514,196608 -r1,11270:7627829,9144245:997056,898122,196608 -k1,11212:6630773,9144245:-997056 -) -(1,11212:6630773,9144245:997056,701514,196608 -) -k1,11212:7807208,9144245:179379 -k1,11212:8614423,9144245:179380 -k1,11212:9997043,9144245:179379 -k1,11212:13182559,9144245:179380 -k1,11212:15640625,9144245:179379 -k1,11212:16032977,9144245:179360 -k1,11212:18881638,9144245:179380 -k1,11212:20753157,9144245:179379 -k1,11212:22355324,9144245:179380 -k1,11212:23201859,9144245:179379 -k1,11212:23796062,9144245:179360 -k1,11212:25720666,9144245:179380 -k1,11212:27184551,9144245:179379 -k1,11212:28751983,9144245:179379 -k1,11212:30325314,9144245:179380 -k1,11212:32583029,9144245:0 -) -(1,11213:6630773,10009325:25952256,513147,134348 -k1,11212:9192482,10009325:206345 -k1,11212:11476973,10009325:206344 -k1,11212:12501207,10009325:206345 -k1,11212:14404279,10009325:206345 -k1,11212:16326356,10009325:206344 -k1,11212:18369020,10009325:206345 -k1,11212:19667850,10009325:206345 -k1,11212:20533486,10009325:206344 -k1,11212:23939299,10009325:206345 -k1,11212:24611604,10009325:206344 -k1,11212:25988422,10009325:206345 -k1,11212:27186327,10009325:206345 -k1,11212:29795221,10009325:206344 -k1,11212:31020651,10009325:206345 -k1,11212:32583029,10009325:0 -) -(1,11213:6630773,10874405:25952256,513147,134348 -k1,11212:10832084,10874405:183299 -k1,11212:12185856,10874405:183299 -k1,11212:14549538,10874405:183299 -k1,11212:16077636,10874405:183299 -k1,11212:17464176,10874405:183299 -k1,11212:19926162,10874405:183299 -k1,11212:21300905,10874405:183298 -k1,11212:23494849,10874405:183299 -k1,11212:24329576,10874405:183299 -k1,11212:24970972,10874405:183299 -k1,11212:26667497,10874405:183299 -k1,11212:29253346,10874405:183299 -k1,11212:32184570,10874405:183299 -h1,11212:32583029,10874405:0,0,0 -k1,11212:32583029,10874405:0 -) -(1,11213:6630773,11739485:25952256,505283,7863 -g1,11212:8021447,11739485 -h1,11212:8419906,11739485:0,0,0 -k1,11213:32583030,11739485:24110696 -g1,11213:32583030,11739485 -) -(1,11215:6630773,12604565:25952256,505283,134348 -h1,11214:6630773,12604565:983040,0,0 -k1,11214:8428907,12604565:187259 -k1,11214:9635251,12604565:187259 -k1,11214:11475983,12604565:187259 -k1,11214:12901217,12604565:187259 -k1,11214:13774638,12604565:187259 -k1,11214:14830249,12604565:187259 -k1,11214:16121790,12604565:187259 -k1,11214:18315761,12604565:187259 -k1,11214:20571336,12604565:187259 -k1,11214:21410023,12604565:187259 -(1,11214:21410023,12604565:0,452978,115847 -r1,11270:23878560,12604565:2468537,568825,115847 -k1,11214:21410023,12604565:-2468537 -) -(1,11214:21410023,12604565:2468537,452978,115847 -k1,11214:21410023,12604565:3277 -h1,11214:23875283,12604565:0,411205,112570 -) -k1,11214:24239489,12604565:187259 -(1,11214:24239489,12604565:0,452978,115847 -r1,11270:27411449,12604565:3171960,568825,115847 -k1,11214:24239489,12604565:-3171960 -) -(1,11214:24239489,12604565:3171960,452978,115847 -k1,11214:24239489,12604565:3277 -h1,11214:27408172,12604565:0,411205,112570 -) -k1,11214:27598708,12604565:187259 -k1,11214:28977412,12604565:187259 -k1,11214:30866641,12604565:187259 -k1,11214:32583029,12604565:0 -) -(1,11215:6630773,13469645:25952256,513147,134348 -k1,11214:7563148,13469645:273083 -k1,11214:10299730,13469645:273084 -k1,11214:11441165,13469645:273083 -k1,11214:12818531,13469645:273084 -k1,11214:15098326,13469645:273083 -k1,11214:17439725,13469645:273083 -k1,11214:18364237,13469645:273084 -k1,11214:21663117,13469645:273083 -k1,11214:23127645,13469645:273083 -k1,11214:27344686,13469645:273084 -k1,11214:28571318,13469645:273083 -k1,11214:29948684,13469645:273084 -k1,11214:31507583,13469645:273083 -k1,11215:32583029,13469645:0 -) -(1,11215:6630773,14334725:25952256,513147,134348 -k1,11214:7864549,14334725:273674 -k1,11214:9462049,14334725:273673 -k1,11214:10395015,14334725:273674 -k1,11214:13694486,14334725:273674 -k1,11214:16178034,14334725:273674 -k1,11214:20395664,14334725:273673 -k1,11214:21866025,14334725:273674 -k1,11214:22554467,14334725:273599 -k1,11214:25670437,14334725:273674 -k1,11214:27045116,14334725:273674 -k1,11214:27674649,14334725:273673 -k1,11214:29302297,14334725:273674 -k1,11214:32583029,14334725:0 -) -(1,11215:6630773,15199805:25952256,513147,134348 -k1,11214:9927436,15199805:220403 -k1,11214:11541789,15199805:220402 -k1,11214:12528308,15199805:220403 -k1,11214:14072537,15199805:220402 -k1,11214:15484385,15199805:220403 -k1,11214:18012966,15199805:220403 -k1,11214:21099257,15199805:220402 -k1,11214:21935698,15199805:220403 -k1,11214:23175186,15199805:220403 -k1,11214:25049061,15199805:220402 -k1,11214:26681110,15199805:220403 -k1,11214:28098199,15199805:220402 -k1,11214:31923737,15199805:220403 -k1,11214:32583029,15199805:0 -) -(1,11215:6630773,16064885:25952256,513147,134348 -k1,11214:8047849,16064885:213835 -k1,11214:8793180,16064885:213834 -k1,11214:10291521,16064885:213835 -k1,11214:11373707,16064885:213834 -k1,11214:12691824,16064885:213835 -k1,11214:14912370,16064885:213834 -k1,11214:17888548,16064885:213835 -k1,11214:21128180,16064885:213835 -k1,11214:22024899,16064885:213834 -k1,11214:26009020,16064885:213835 -k1,11214:26874282,16064885:213834 -k1,11214:27443977,16064885:213835 -k1,11214:29352572,16064885:213834 -k1,11214:31304422,16064885:213835 -k1,11214:32583029,16064885:0 -) -(1,11215:6630773,16929965:25952256,513147,126483 -g1,11214:11228779,16929965 -g1,11214:11886105,16929965 -g1,11214:12616831,16929965 -g1,11214:15446020,16929965 -g1,11214:16296677,16929965 -g1,11214:18110713,16929965 -g1,11214:20055166,16929965 -g1,11214:21641792,16929965 -g1,11214:23164848,16929965 -g1,11214:24023369,16929965 -g1,11214:27248395,16929965 -g1,11214:28130509,16929965 -k1,11215:32583029,16929965:629805 -g1,11215:32583029,16929965 -) -(1,11217:6630773,17795045:25952256,513147,134348 -h1,11216:6630773,17795045:983040,0,0 -k1,11216:8969042,17795045:158542 -k1,11216:10511705,17795045:158543 -k1,11216:13505334,17795045:158542 -k1,11216:15086664,17795045:158543 -k1,11216:15601066,17795045:158542 -k1,11216:18796547,17795045:158543 -k1,11216:20887090,17795045:158542 -k1,11216:21661671,17795045:158543 -k1,11216:24417405,17795045:158542 -k1,11216:26657372,17795045:158543 -k1,11216:29496337,17795045:158542 -k1,11216:31048831,17795045:158543 -k1,11217:32583029,17795045:0 -) -(1,11217:6630773,18660125:25952256,513147,126483 -k1,11216:8102942,18660125:204703 -(1,11216:8102942,18660125:0,452978,115847 -r1,11270:11274902,18660125:3171960,568825,115847 -k1,11216:8102942,18660125:-3171960 -) -(1,11216:8102942,18660125:3171960,452978,115847 -k1,11216:8102942,18660125:3277 -h1,11216:11271625,18660125:0,411205,112570 -) -k1,11216:11479605,18660125:204703 -k1,11216:12300346,18660125:204703 -k1,11216:13524133,18660125:204702 -k1,11216:15305632,18660125:204703 -k1,11216:16169627,18660125:204703 -k1,11216:16730190,18660125:204703 -(1,11216:16730190,18660125:0,459977,115847 -r1,11270:17791879,18660125:1061689,575824,115847 -k1,11216:16730190,18660125:-1061689 -) -(1,11216:16730190,18660125:1061689,459977,115847 -k1,11216:16730190,18660125:3277 -h1,11216:17788602,18660125:0,411205,112570 -) -k1,11216:17996582,18660125:204703 -k1,11216:19789878,18660125:204703 -k1,11216:20646009,18660125:204703 -k1,11216:23874543,18660125:204703 -k1,11216:24435105,18660125:204702 -(1,11216:24435105,18660125:0,452978,115847 -r1,11270:26903642,18660125:2468537,568825,115847 -k1,11216:24435105,18660125:-2468537 -) -(1,11216:24435105,18660125:2468537,452978,115847 -k1,11216:24435105,18660125:3277 -h1,11216:26900365,18660125:0,411205,112570 -) -k1,11216:27108345,18660125:204703 -k1,11216:29290925,18660125:204703 -k1,11216:30889579,18660125:204703 -k1,11217:32583029,18660125:0 -) -(1,11217:6630773,19525205:25952256,513147,134348 -k1,11216:8373375,19525205:202506 -k1,11216:10734637,19525205:202506 -k1,11216:14054035,19525205:202506 -k1,11216:14907969,19525205:202506 -k1,11216:16129560,19525205:202506 -k1,11216:19027563,19525205:202507 -k1,11216:21472056,19525205:202506 -k1,11216:23934899,19525205:202506 -k1,11216:25156490,19525205:202506 -k1,11216:28567639,19525205:202506 -k1,11216:30954460,19525205:202506 -k1,11217:32583029,19525205:0 -) -(1,11217:6630773,20390285:25952256,513147,134348 -k1,11216:8092045,20390285:193806 -(1,11216:8092045,20390285:0,452978,115847 -r1,11270:11264005,20390285:3171960,568825,115847 -k1,11216:8092045,20390285:-3171960 -) -(1,11216:8092045,20390285:3171960,452978,115847 -k1,11216:8092045,20390285:3277 -h1,11216:11260728,20390285:0,411205,112570 -) -k1,11216:11457811,20390285:193806 -k1,11216:14029919,20390285:193806 -k1,11216:15690421,20390285:193806 -k1,11216:18858906,20390285:193806 -k1,11216:21248824,20390285:193807 -k1,11216:22634075,20390285:193806 -k1,11216:25523377,20390285:193806 -k1,11216:27785499,20390285:193806 -k1,11216:28665467,20390285:193806 -k1,11216:31931601,20390285:193806 -k1,11216:32583029,20390285:0 -) -(1,11217:6630773,21255365:25952256,513147,134348 -k1,11216:7607783,21255365:188612 -k1,11216:9102529,21255365:188613 -k1,11216:12745544,21255365:188612 -k1,11216:14125601,21255365:188612 -k1,11216:15744209,21255365:188612 -k1,11216:16951907,21255365:188613 -k1,11216:21764084,21255365:188612 -k1,11216:24648192,21255365:188612 -k1,11216:26230756,21255365:188613 -k1,11216:29821997,21255365:188612 -k1,11216:32583029,21255365:0 -) -(1,11217:6630773,22120445:25952256,452978,115847 -g1,11216:7516164,22120445 -g1,11216:8071253,22120445 -(1,11216:8071253,22120445:0,452978,115847 -r1,11270:9484654,22120445:1413401,568825,115847 -k1,11216:8071253,22120445:-1413401 -) -(1,11216:8071253,22120445:1413401,452978,115847 -k1,11216:8071253,22120445:3277 -h1,11216:9481377,22120445:0,411205,112570 -) -k1,11217:32583030,22120445:23045948 -g1,11217:32583030,22120445 -) -v1,11219:6630773,22805300:0,393216,0 -(1,11233:6630773,28652951:25952256,6240867,196608 -g1,11233:6630773,28652951 -g1,11233:6630773,28652951 -g1,11233:6434165,28652951 -(1,11233:6434165,28652951:0,6240867,196608 -r1,11270:32779637,28652951:26345472,6437475,196608 -k1,11233:6434165,28652951:-26345472 -) -(1,11233:6434165,28652951:26345472,6240867,196608 -[1,11233:6630773,28652951:25952256,6044259,0 -(1,11221:6630773,23033131:25952256,424439,79822 -(1,11220:6630773,23033131:0,0,0 -g1,11220:6630773,23033131 -g1,11220:6630773,23033131 -g1,11220:6303093,23033131 -(1,11220:6303093,23033131:0,0,0 -) -g1,11220:6630773,23033131 -) -g1,11221:8290543,23033131 -g1,11221:9286405,23033131 -k1,11221:9286405,23033131:0 -h1,11221:12273991,23033131:0,0,0 -k1,11221:32583029,23033131:20309038 -g1,11221:32583029,23033131 -) -(1,11222:6630773,23717986:25952256,424439,79822 -h1,11222:6630773,23717986:0,0,0 -g1,11222:9286405,23717986 -g1,11222:10282267,23717986 -k1,11222:10282267,23717986:0 -h1,11222:13269853,23717986:0,0,0 -k1,11222:32583029,23717986:19313176 -g1,11222:32583029,23717986 -) -(1,11223:6630773,24402841:25952256,431045,86428 -h1,11223:6630773,24402841:0,0,0 -g1,11223:9950312,24402841 -g1,11223:10946174,24402841 -g1,11223:14265714,24402841 -g1,11223:16589392,24402841 -h1,11223:18581116,24402841:0,0,0 -k1,11223:32583029,24402841:14001913 -g1,11223:32583029,24402841 -) -(1,11224:6630773,25087696:25952256,431045,79822 -h1,11224:6630773,25087696:0,0,0 -g1,11224:7958589,25087696 -g1,11224:10614221,25087696 -g1,11224:11610083,25087696 -g1,11224:15261576,25087696 -h1,11224:15593530,25087696:0,0,0 -k1,11224:32583030,25087696:16989500 -g1,11224:32583030,25087696 -) -(1,11225:6630773,25772551:25952256,431045,86428 -h1,11225:6630773,25772551:0,0,0 -g1,11225:6962727,25772551 -g1,11225:7294681,25772551 -g1,11225:13269852,25772551 -g1,11225:14265714,25772551 -g1,11225:19576978,25772551 -k1,11225:19576978,25772551:0 -h1,11225:23228472,25772551:0,0,0 -k1,11225:32583029,25772551:9354557 -g1,11225:32583029,25772551 -) -(1,11226:6630773,26457406:25952256,424439,79822 -h1,11226:6630773,26457406:0,0,0 -h1,11226:6962727,26457406:0,0,0 -k1,11226:32583029,26457406:25620302 -g1,11226:32583029,26457406 -) -(1,11227:6630773,27142261:25952256,424439,6605 -h1,11227:6630773,27142261:0,0,0 -h1,11227:8954451,27142261:0,0,0 -k1,11227:32583029,27142261:23628578 -g1,11227:32583029,27142261 -) -(1,11232:6630773,27958188:25952256,424439,6605 -(1,11229:6630773,27958188:0,0,0 -g1,11229:6630773,27958188 -g1,11229:6630773,27958188 -g1,11229:6303093,27958188 -(1,11229:6303093,27958188:0,0,0 -) -g1,11229:6630773,27958188 -) -g1,11232:7626635,27958188 -g1,11232:7958589,27958188 -g1,11232:8290543,27958188 -g1,11232:8622497,27958188 -g1,11232:8954451,27958188 -g1,11232:9286405,27958188 -g1,11232:9618359,27958188 -g1,11232:11278129,27958188 -g1,11232:11610083,27958188 -g1,11232:11942037,27958188 -g1,11232:12273991,27958188 -g1,11232:12605945,27958188 -g1,11232:12937899,27958188 -g1,11232:13269853,27958188 -g1,11232:13601807,27958188 -g1,11232:14929623,27958188 -g1,11232:15261577,27958188 -g1,11232:15593531,27958188 -g1,11232:15925485,27958188 -g1,11232:16257439,27958188 -g1,11232:16589393,27958188 -g1,11232:16921347,27958188 -g1,11232:17253301,27958188 -h1,11232:18249163,27958188:0,0,0 -k1,11232:32583029,27958188:14333866 -g1,11232:32583029,27958188 -) -(1,11232:6630773,28643043:25952256,407923,9908 -h1,11232:6630773,28643043:0,0,0 -g1,11232:7626635,28643043 -g1,11232:7958589,28643043 -g1,11232:11278128,28643043 -g1,11232:11610082,28643043 -g1,11232:14929621,28643043 -k1,11232:14929621,28643043:0 -h1,11232:18249160,28643043:0,0,0 -k1,11232:32583029,28643043:14333869 -g1,11232:32583029,28643043 -) -] -) -g1,11233:32583029,28652951 -g1,11233:6630773,28652951 -g1,11233:6630773,28652951 -g1,11233:32583029,28652951 -g1,11233:32583029,28652951 -) -h1,11233:6630773,28849559:0,0,0 -(1,11237:6630773,29714639:25952256,513147,134348 -h1,11236:6630773,29714639:983040,0,0 -k1,11236:9568752,29714639:171704 -k1,11236:12954998,29714639:171705 -k1,11236:13482562,29714639:171704 -k1,11236:14554075,29714639:171704 -k1,11236:15341818,29714639:171705 -k1,11236:18422010,29714639:171704 -k1,11236:19209752,29714639:171704 -k1,11236:19737317,29714639:171705 -k1,11236:21497614,29714639:171704 -k1,11236:22688404,29714639:171705 -k1,11236:25295426,29714639:171704 -k1,11236:27535446,29714639:171704 -k1,11236:28366443,29714639:171705 -k1,11236:29557232,29714639:171704 -k1,11236:32583029,29714639:0 -) -(1,11237:6630773,30579719:25952256,513147,7863 -k1,11236:7859005,30579719:236672 -k1,11236:9161948,30579719:236672 -k1,11236:12182590,30579719:236673 -k1,11236:13105424,30579719:236672 -k1,11236:14890712,30579719:236672 -k1,11236:15658881,30579719:236672 -k1,11236:17933723,30579719:236672 -k1,11236:18786434,30579719:236673 -k1,11236:20042191,30579719:236672 -k1,11236:21272389,30579719:236672 -k1,11236:22500621,30579719:236672 -k1,11236:23756378,30579719:236672 -k1,11236:27405511,30579719:236673 -k1,11236:28301475,30579719:236672 -k1,11236:29557232,30579719:236672 -k1,11236:32583029,30579719:0 -) -(1,11237:6630773,31444799:25952256,513147,134348 -k1,11236:8803342,31444799:220907 -k1,11236:10466695,31444799:220906 -k1,11236:12196241,31444799:220907 -k1,11236:14659134,31444799:220906 -k1,11236:15507876,31444799:220907 -k1,11236:16932024,31444799:220907 -k1,11236:18693681,31444799:220906 -k1,11236:19933673,31444799:220907 -k1,11236:22850076,31444799:220907 -k1,11236:26483442,31444799:220906 -k1,11236:27695909,31444799:220907 -k1,11236:30691609,31444799:220906 -k1,11236:31563944,31444799:220907 -k1,11236:32583029,31444799:0 -) -(1,11237:6630773,32309879:25952256,513147,126483 -k1,11236:10632091,32309879:267732 -k1,11236:13411164,32309879:267733 -(1,11236:13618258,32309879:0,459977,115847 -r1,11270:13976524,32309879:358266,575824,115847 -k1,11236:13618258,32309879:-358266 -) -(1,11236:13618258,32309879:358266,459977,115847 -k1,11236:13618258,32309879:3277 -h1,11236:13973247,32309879:0,411205,112570 -) -k1,11236:14244256,32309879:267732 -k1,11236:15128027,32309879:267733 -k1,11236:16414844,32309879:267732 -k1,11236:18653245,32309879:267733 -k1,11236:20996502,32309879:267732 -k1,11236:22455679,32309879:267732 -k1,11236:23742497,32309879:267733 -k1,11236:27036026,32309879:267732 -k1,11236:28051525,32309879:267733 -k1,11236:30187033,32309879:267732 -k1,11236:32583029,32309879:0 -) -(1,11237:6630773,33174959:25952256,505283,126483 -g1,11236:8197739,33174959 -(1,11236:8404833,33174959:0,459977,115847 -r1,11270:9466522,33174959:1061689,575824,115847 -k1,11236:8404833,33174959:-1061689 -) -(1,11236:8404833,33174959:1061689,459977,115847 -k1,11236:8404833,33174959:3277 -h1,11236:9463245,33174959:0,411205,112570 -) -g1,11236:10046515,33174959 -g1,11236:11442431,33174959 -g1,11236:13484532,33174959 -g1,11236:14215258,33174959 -g1,11236:14770347,33174959 -g1,11236:17589705,33174959 -g1,11236:19766811,33174959 -g1,11236:21359991,33174959 -g1,11236:25260038,33174959 -k1,11237:32583029,33174959:4316855 -g1,11237:32583029,33174959 -) -v1,11239:6630773,33859814:0,393216,0 -(1,11251:6630773,38407669:25952256,4941071,196608 -g1,11251:6630773,38407669 -g1,11251:6630773,38407669 -g1,11251:6434165,38407669 -(1,11251:6434165,38407669:0,4941071,196608 -r1,11270:32779637,38407669:26345472,5137679,196608 -k1,11251:6434165,38407669:-26345472 -) -(1,11251:6434165,38407669:26345472,4941071,196608 -[1,11251:6630773,38407669:25952256,4744463,0 -(1,11241:6630773,34087645:25952256,424439,79822 -(1,11240:6630773,34087645:0,0,0 -g1,11240:6630773,34087645 -g1,11240:6630773,34087645 -g1,11240:6303093,34087645 -(1,11240:6303093,34087645:0,0,0 -) -g1,11240:6630773,34087645 -) -g1,11241:9286405,34087645 -g1,11241:10282267,34087645 -k1,11241:10282267,34087645:0 -h1,11241:13269853,34087645:0,0,0 -k1,11241:32583029,34087645:19313176 -g1,11241:32583029,34087645 -) -(1,11242:6630773,34772500:25952256,431045,86428 -h1,11242:6630773,34772500:0,0,0 -g1,11242:8290543,34772500 -g1,11242:9286405,34772500 -g1,11242:12937899,34772500 -g1,11242:14597669,34772500 -h1,11242:15925485,34772500:0,0,0 -k1,11242:32583029,34772500:16657544 -g1,11242:32583029,34772500 -) -(1,11243:6630773,35457355:25952256,431045,79822 -h1,11243:6630773,35457355:0,0,0 -g1,11243:7958589,35457355 -g1,11243:8954451,35457355 -g1,11243:9950313,35457355 -g1,11243:11942037,35457355 -h1,11243:12273991,35457355:0,0,0 -k1,11243:32583029,35457355:20309038 -g1,11243:32583029,35457355 -) -(1,11244:6630773,36142210:25952256,431045,86428 -h1,11244:6630773,36142210:0,0,0 -g1,11244:6962727,36142210 -g1,11244:7294681,36142210 -g1,11244:9950313,36142210 -g1,11244:10946175,36142210 -g1,11244:14597668,36142210 -k1,11244:14597668,36142210:0 -h1,11244:16257438,36142210:0,0,0 -k1,11244:32583029,36142210:16325591 -g1,11244:32583029,36142210 -) -(1,11245:6630773,36827065:25952256,424439,79822 -h1,11245:6630773,36827065:0,0,0 -h1,11245:6962727,36827065:0,0,0 -k1,11245:32583029,36827065:25620302 -g1,11245:32583029,36827065 -) -(1,11246:6630773,37511920:25952256,424439,6605 -h1,11246:6630773,37511920:0,0,0 -h1,11246:8954451,37511920:0,0,0 -k1,11246:32583029,37511920:23628578 -g1,11246:32583029,37511920 -) -(1,11250:6630773,38327847:25952256,424439,79822 -(1,11248:6630773,38327847:0,0,0 -g1,11248:6630773,38327847 -g1,11248:6630773,38327847 -g1,11248:6303093,38327847 -(1,11248:6303093,38327847:0,0,0 -) -g1,11248:6630773,38327847 -) -g1,11250:7626635,38327847 -g1,11250:8954451,38327847 -g1,11250:9618359,38327847 -g1,11250:10282267,38327847 -h1,11250:10614221,38327847:0,0,0 -k1,11250:32583029,38327847:21968808 -g1,11250:32583029,38327847 -) -] -) -g1,11251:32583029,38407669 -g1,11251:6630773,38407669 -g1,11251:6630773,38407669 -g1,11251:32583029,38407669 -g1,11251:32583029,38407669 -) -h1,11251:6630773,38604277:0,0,0 -(1,11255:6630773,39469357:25952256,513147,134348 -h1,11254:6630773,39469357:983040,0,0 -k1,11254:8321068,39469357:219667 -k1,11254:10699511,39469357:219687 -k1,11254:11912724,39469357:219687 -k1,11254:12791704,39469357:219688 -k1,11254:16037188,39469357:219687 -k1,11254:18302909,39469357:219687 -k1,11254:18980694,39469357:219688 -k1,11254:21830341,39469357:219687 -k1,11254:22701456,39469357:219687 -k1,11254:24267254,39469357:219688 -k1,11254:25576805,39469357:219687 -k1,11254:28084354,39469357:219687 -k1,11254:28963334,39469357:219688 -k1,11254:30202106,39469357:219687 -k1,11254:32583029,39469357:0 -) -(1,11255:6630773,40334437:25952256,513147,126483 -k1,11254:7533153,40334437:243088 -k1,11254:8795326,40334437:243088 -k1,11254:11385258,40334437:243088 -k1,11254:12098239,40334437:243088 -k1,11254:12872824,40334437:243088 -k1,11254:15745872,40334437:243088 -k1,11254:16640389,40334437:243089 -k1,11254:19907308,40334437:243088 -k1,11254:20506256,40334437:243088 -k1,11254:23369473,40334437:243088 -k1,11254:25590438,40334437:243088 -k1,11254:27227477,40334437:243088 -k1,11254:29629321,40334437:243088 -k1,11254:32583029,40334437:0 -) -(1,11255:6630773,41199517:25952256,513147,134348 -k1,11254:8188615,41199517:190105 -k1,11254:10447035,41199517:190104 -k1,11254:13608542,41199517:190105 -k1,11254:14817731,41199517:190104 -k1,11254:17076152,41199517:190105 -k1,11254:18961018,41199517:190105 -k1,11254:19802550,41199517:190104 -k1,11254:21011740,41199517:190105 -k1,11254:22195371,41199517:190105 -k1,11254:25512853,41199517:190104 -k1,11254:27588429,41199517:190105 -k1,11254:28882815,41199517:190104 -k1,11254:29820686,41199517:190105 -k1,11254:32583029,41199517:0 -) -(1,11255:6630773,42064597:25952256,513147,7863 -g1,11254:7481430,42064597 -g1,11254:8699744,42064597 -g1,11254:10967289,42064597 -g1,11254:11825810,42064597 -g1,11254:13044124,42064597 -k1,11255:32583029,42064597:16460679 -g1,11255:32583029,42064597 -) -v1,11257:6630773,42749452:0,393216,0 -(1,11270:6630773,45111670:25952256,2755434,196608 -g1,11270:6630773,45111670 -g1,11270:6630773,45111670 -g1,11270:6434165,45111670 -(1,11270:6434165,45111670:0,2755434,196608 -r1,11270:32779637,45111670:26345472,2952042,196608 -k1,11270:6434165,45111670:-26345472 -) -(1,11270:6434165,45111670:26345472,2755434,196608 -[1,11270:6630773,45111670:25952256,2558826,0 -(1,11259:6630773,42977283:25952256,424439,79822 -(1,11258:6630773,42977283:0,0,0 -g1,11258:6630773,42977283 -g1,11258:6630773,42977283 -g1,11258:6303093,42977283 -(1,11258:6303093,42977283:0,0,0 -) -g1,11258:6630773,42977283 -) -g1,11259:9286405,42977283 -g1,11259:10282267,42977283 -k1,11259:10282267,42977283:0 -h1,11259:13269853,42977283:0,0,0 -k1,11259:32583029,42977283:19313176 -g1,11259:32583029,42977283 -) -(1,11260:6630773,43662138:25952256,431045,112852 -h1,11260:6630773,43662138:0,0,0 -g1,11260:8290543,43662138 -g1,11260:9286405,43662138 -g1,11260:13601807,43662138 -g1,11260:14265715,43662138 -g1,11260:16257439,43662138 -g1,11260:18913071,43662138 -g1,11260:19576979,43662138 -g1,11260:21236749,43662138 -g1,11260:23892381,43662138 -g1,11260:24556289,43662138 -h1,11260:25884105,43662138:0,0,0 -k1,11260:32583029,43662138:6698924 -g1,11260:32583029,43662138 -) -(1,11261:6630773,44346993:25952256,431045,79822 -h1,11261:6630773,44346993:0,0,0 -g1,11261:7958589,44346993 -g1,11261:8954451,44346993 -g1,11261:9950313,44346993 -g1,11261:14265715,44346993 -h1,11261:14597669,44346993:0,0,0 -k1,11261:32583029,44346993:17985360 -g1,11261:32583029,44346993 -) -(1,11262:6630773,45031848:25952256,431045,79822 -h1,11262:6630773,45031848:0,0,0 -g1,11262:6962727,45031848 -g1,11262:7294681,45031848 -g1,11262:11610082,45031848 -g1,11262:12605944,45031848 -h1,11262:16589391,45031848:0,0,0 -k1,11262:32583029,45031848:15993638 -g1,11262:32583029,45031848 -) -] -) -g1,11270:32583029,45111670 -g1,11270:6630773,45111670 -g1,11270:6630773,45111670 -g1,11270:32583029,45111670 -g1,11270:32583029,45111670 -) -] -(1,11270:32583029,45706769:0,0,0 -g1,11270:32583029,45706769 -) -) -] -(1,11270:6630773,47279633:25952256,0,0 -h1,11270:6630773,47279633:25952256,0,0 -) -] -(1,11270:4262630,4025873:0,0,0 -[1,11270:-473656,4025873:0,0,0 -(1,11270:-473656,-710413:0,0,0 -(1,11270:-473656,-710413:0,0,0 -g1,11270:-473656,-710413 -) -g1,11270:-473656,-710413 +r1,11269:37855564,49800853:1179648,16384,0 +) +) +k1,11269:3078556,49800853:-34777008 +) +] +g1,11269:6630773,4812305 +k1,11269:21678495,4812305:13852345 +g1,11269:23301166,4812305 +g1,11269:24088253,4812305 +g1,11269:28572226,4812305 +g1,11269:29981905,4812305 +) +) +] +[1,11269:6630773,45706769:25952256,40108032,0 +(1,11269:6630773,45706769:25952256,40108032,0 +(1,11269:6630773,45706769:0,0,0 +g1,11269:6630773,45706769 +) +[1,11269:6630773,45706769:25952256,40108032,0 +(1,11209:6630773,6254097:25952256,32768,229376 +(1,11209:6630773,6254097:0,32768,229376 +(1,11209:6630773,6254097:5505024,32768,229376 +r1,11269:12135797,6254097:5505024,262144,229376 +) +k1,11209:6630773,6254097:-5505024 +) +(1,11209:6630773,6254097:25952256,32768,0 +r1,11269:32583029,6254097:25952256,32768,0 +) +) +(1,11209:6630773,7885949:25952256,615776,151780 +(1,11209:6630773,7885949:2464678,582746,14155 +g1,11209:6630773,7885949 +g1,11209:9095451,7885949 +) +g1,11209:10858632,7885949 +g1,11209:14356682,7885949 +g1,11209:16778106,7885949 +g1,11209:17835857,7885949 +k1,11209:32583029,7885949:12392594 +g1,11209:32583029,7885949 +) +(1,11212:6630773,9144245:25952256,701514,196608 +(1,11211:6630773,9144245:0,701514,196608 +r1,11269:7627829,9144245:997056,898122,196608 +k1,11211:6630773,9144245:-997056 +) +(1,11211:6630773,9144245:997056,701514,196608 +) +k1,11211:7795632,9144245:167803 +k1,11211:8591270,9144245:167803 +k1,11211:9962314,9144245:167803 +k1,11211:13136253,9144245:167803 +k1,11211:15756413,9144245:167803 +k1,11211:16137177,9144245:167772 +k1,11211:18974261,9144245:167803 +k1,11211:20834204,9144245:167803 +k1,11211:22424794,9144245:167803 +k1,11211:23259753,9144245:167803 +k1,11211:23842368,9144245:167772 +k1,11211:25755395,9144245:167803 +k1,11211:27207704,9144245:167803 +k1,11211:28763560,9144245:167803 +k1,11211:30325314,9144245:167803 +k1,11211:32583029,9144245:0 +) +(1,11212:6630773,10009325:25952256,513147,134348 +k1,11211:9192482,10009325:206345 +k1,11211:11476973,10009325:206344 +k1,11211:12501207,10009325:206345 +k1,11211:14404279,10009325:206345 +k1,11211:16326356,10009325:206344 +k1,11211:18369020,10009325:206345 +k1,11211:19667850,10009325:206345 +k1,11211:20533486,10009325:206344 +k1,11211:23939299,10009325:206345 +k1,11211:24611604,10009325:206344 +k1,11211:25988422,10009325:206345 +k1,11211:27186327,10009325:206345 +k1,11211:29795221,10009325:206344 +k1,11211:31020651,10009325:206345 +k1,11211:32583029,10009325:0 +) +(1,11212:6630773,10874405:25952256,513147,134348 +k1,11211:10832084,10874405:183299 +k1,11211:12185856,10874405:183299 +k1,11211:14549538,10874405:183299 +k1,11211:16077636,10874405:183299 +k1,11211:17464176,10874405:183299 +k1,11211:19926162,10874405:183299 +k1,11211:21300905,10874405:183298 +k1,11211:23494849,10874405:183299 +k1,11211:24329576,10874405:183299 +k1,11211:24970972,10874405:183299 +k1,11211:26667497,10874405:183299 +k1,11211:29253346,10874405:183299 +k1,11211:32184570,10874405:183299 +h1,11211:32583029,10874405:0,0,0 +k1,11211:32583029,10874405:0 +) +(1,11212:6630773,11739485:25952256,505283,7863 +g1,11211:8021447,11739485 +h1,11211:8419906,11739485:0,0,0 +k1,11212:32583030,11739485:24110696 +g1,11212:32583030,11739485 +) +(1,11214:6630773,12604565:25952256,505283,134348 +h1,11213:6630773,12604565:983040,0,0 +k1,11213:8428907,12604565:187259 +k1,11213:9635251,12604565:187259 +k1,11213:11475983,12604565:187259 +k1,11213:12901217,12604565:187259 +k1,11213:13774638,12604565:187259 +k1,11213:14830249,12604565:187259 +k1,11213:16121790,12604565:187259 +k1,11213:18315761,12604565:187259 +k1,11213:20571336,12604565:187259 +k1,11213:21410023,12604565:187259 +(1,11213:21410023,12604565:0,452978,115847 +r1,11269:23878560,12604565:2468537,568825,115847 +k1,11213:21410023,12604565:-2468537 +) +(1,11213:21410023,12604565:2468537,452978,115847 +k1,11213:21410023,12604565:3277 +h1,11213:23875283,12604565:0,411205,112570 +) +k1,11213:24239489,12604565:187259 +(1,11213:24239489,12604565:0,452978,115847 +r1,11269:27411449,12604565:3171960,568825,115847 +k1,11213:24239489,12604565:-3171960 +) +(1,11213:24239489,12604565:3171960,452978,115847 +k1,11213:24239489,12604565:3277 +h1,11213:27408172,12604565:0,411205,112570 +) +k1,11213:27598708,12604565:187259 +k1,11213:28977412,12604565:187259 +k1,11213:30866641,12604565:187259 +k1,11213:32583029,12604565:0 +) +(1,11214:6630773,13469645:25952256,513147,134348 +k1,11213:7563148,13469645:273083 +k1,11213:10299730,13469645:273084 +k1,11213:11441165,13469645:273083 +k1,11213:12818531,13469645:273084 +k1,11213:15098326,13469645:273083 +k1,11213:17439725,13469645:273083 +k1,11213:18364237,13469645:273084 +k1,11213:21663117,13469645:273083 +k1,11213:23127645,13469645:273083 +k1,11213:27344686,13469645:273084 +k1,11213:28571318,13469645:273083 +k1,11213:29948684,13469645:273084 +k1,11213:31507583,13469645:273083 +k1,11214:32583029,13469645:0 +) +(1,11214:6630773,14334725:25952256,513147,134348 +k1,11213:7864549,14334725:273674 +k1,11213:9462049,14334725:273673 +k1,11213:10395015,14334725:273674 +k1,11213:13694486,14334725:273674 +k1,11213:16178034,14334725:273674 +k1,11213:20395664,14334725:273673 +k1,11213:21866025,14334725:273674 +k1,11213:22554467,14334725:273599 +k1,11213:25670437,14334725:273674 +k1,11213:27045116,14334725:273674 +k1,11213:27674649,14334725:273673 +k1,11213:29302297,14334725:273674 +k1,11213:32583029,14334725:0 +) +(1,11214:6630773,15199805:25952256,513147,134348 +k1,11213:9927436,15199805:220403 +k1,11213:11541789,15199805:220402 +k1,11213:12528308,15199805:220403 +k1,11213:14072537,15199805:220402 +k1,11213:15484385,15199805:220403 +k1,11213:18012966,15199805:220403 +k1,11213:21099257,15199805:220402 +k1,11213:21935698,15199805:220403 +k1,11213:23175186,15199805:220403 +k1,11213:25049061,15199805:220402 +k1,11213:26681110,15199805:220403 +k1,11213:28098199,15199805:220402 +k1,11213:31923737,15199805:220403 +k1,11213:32583029,15199805:0 +) +(1,11214:6630773,16064885:25952256,513147,134348 +k1,11213:8047849,16064885:213835 +k1,11213:8793180,16064885:213834 +k1,11213:10291521,16064885:213835 +k1,11213:11373707,16064885:213834 +k1,11213:12691824,16064885:213835 +k1,11213:14912370,16064885:213834 +k1,11213:17888548,16064885:213835 +k1,11213:21128180,16064885:213835 +k1,11213:22024899,16064885:213834 +k1,11213:26009020,16064885:213835 +k1,11213:26874282,16064885:213834 +k1,11213:27443977,16064885:213835 +k1,11213:29352572,16064885:213834 +k1,11213:31304422,16064885:213835 +k1,11213:32583029,16064885:0 +) +(1,11214:6630773,16929965:25952256,513147,126483 +g1,11213:11228779,16929965 +g1,11213:11886105,16929965 +g1,11213:12616831,16929965 +g1,11213:15446020,16929965 +g1,11213:16296677,16929965 +g1,11213:18110713,16929965 +g1,11213:20055166,16929965 +g1,11213:21641792,16929965 +g1,11213:23164848,16929965 +g1,11213:24023369,16929965 +g1,11213:27248395,16929965 +g1,11213:28130509,16929965 +k1,11214:32583029,16929965:629805 +g1,11214:32583029,16929965 +) +(1,11216:6630773,17795045:25952256,513147,134348 +h1,11215:6630773,17795045:983040,0,0 +k1,11215:8969042,17795045:158542 +k1,11215:10511705,17795045:158543 +k1,11215:13505334,17795045:158542 +k1,11215:15086664,17795045:158543 +k1,11215:15601066,17795045:158542 +k1,11215:18796547,17795045:158543 +k1,11215:20887090,17795045:158542 +k1,11215:21661671,17795045:158543 +k1,11215:24417405,17795045:158542 +k1,11215:26657372,17795045:158543 +k1,11215:29496337,17795045:158542 +k1,11215:31048831,17795045:158543 +k1,11216:32583029,17795045:0 +) +(1,11216:6630773,18660125:25952256,513147,126483 +k1,11215:8102942,18660125:204703 +(1,11215:8102942,18660125:0,452978,115847 +r1,11269:11274902,18660125:3171960,568825,115847 +k1,11215:8102942,18660125:-3171960 +) +(1,11215:8102942,18660125:3171960,452978,115847 +k1,11215:8102942,18660125:3277 +h1,11215:11271625,18660125:0,411205,112570 +) +k1,11215:11479605,18660125:204703 +k1,11215:12300346,18660125:204703 +k1,11215:13524133,18660125:204702 +k1,11215:15305632,18660125:204703 +k1,11215:16169627,18660125:204703 +k1,11215:16730190,18660125:204703 +(1,11215:16730190,18660125:0,459977,115847 +r1,11269:17791879,18660125:1061689,575824,115847 +k1,11215:16730190,18660125:-1061689 +) +(1,11215:16730190,18660125:1061689,459977,115847 +k1,11215:16730190,18660125:3277 +h1,11215:17788602,18660125:0,411205,112570 +) +k1,11215:17996582,18660125:204703 +k1,11215:19789878,18660125:204703 +k1,11215:20646009,18660125:204703 +k1,11215:23874543,18660125:204703 +k1,11215:24435105,18660125:204702 +(1,11215:24435105,18660125:0,452978,115847 +r1,11269:26903642,18660125:2468537,568825,115847 +k1,11215:24435105,18660125:-2468537 +) +(1,11215:24435105,18660125:2468537,452978,115847 +k1,11215:24435105,18660125:3277 +h1,11215:26900365,18660125:0,411205,112570 +) +k1,11215:27108345,18660125:204703 +k1,11215:29290925,18660125:204703 +k1,11215:30889579,18660125:204703 +k1,11216:32583029,18660125:0 +) +(1,11216:6630773,19525205:25952256,513147,134348 +k1,11215:8373375,19525205:202506 +k1,11215:10734637,19525205:202506 +k1,11215:14054035,19525205:202506 +k1,11215:14907969,19525205:202506 +k1,11215:16129560,19525205:202506 +k1,11215:19027563,19525205:202507 +k1,11215:21472056,19525205:202506 +k1,11215:23934899,19525205:202506 +k1,11215:25156490,19525205:202506 +k1,11215:28567639,19525205:202506 +k1,11215:30954460,19525205:202506 +k1,11216:32583029,19525205:0 +) +(1,11216:6630773,20390285:25952256,513147,134348 +k1,11215:8092045,20390285:193806 +(1,11215:8092045,20390285:0,452978,115847 +r1,11269:11264005,20390285:3171960,568825,115847 +k1,11215:8092045,20390285:-3171960 +) +(1,11215:8092045,20390285:3171960,452978,115847 +k1,11215:8092045,20390285:3277 +h1,11215:11260728,20390285:0,411205,112570 +) +k1,11215:11457811,20390285:193806 +k1,11215:14029919,20390285:193806 +k1,11215:15690421,20390285:193806 +k1,11215:18858906,20390285:193806 +k1,11215:21248824,20390285:193807 +k1,11215:22634075,20390285:193806 +k1,11215:25523377,20390285:193806 +k1,11215:27785499,20390285:193806 +k1,11215:28665467,20390285:193806 +k1,11215:31931601,20390285:193806 +k1,11215:32583029,20390285:0 +) +(1,11216:6630773,21255365:25952256,513147,134348 +k1,11215:7607783,21255365:188612 +k1,11215:9102529,21255365:188613 +k1,11215:12745544,21255365:188612 +k1,11215:14125601,21255365:188612 +k1,11215:15744209,21255365:188612 +k1,11215:16951907,21255365:188613 +k1,11215:21764084,21255365:188612 +k1,11215:24648192,21255365:188612 +k1,11215:26230756,21255365:188613 +k1,11215:29821997,21255365:188612 +k1,11215:32583029,21255365:0 +) +(1,11216:6630773,22120445:25952256,452978,115847 +g1,11215:7516164,22120445 +g1,11215:8071253,22120445 +(1,11215:8071253,22120445:0,452978,115847 +r1,11269:9484654,22120445:1413401,568825,115847 +k1,11215:8071253,22120445:-1413401 +) +(1,11215:8071253,22120445:1413401,452978,115847 +k1,11215:8071253,22120445:3277 +h1,11215:9481377,22120445:0,411205,112570 +) +k1,11216:32583030,22120445:23045948 +g1,11216:32583030,22120445 +) +v1,11218:6630773,22805300:0,393216,0 +(1,11232:6630773,28652951:25952256,6240867,196608 +g1,11232:6630773,28652951 +g1,11232:6630773,28652951 +g1,11232:6434165,28652951 +(1,11232:6434165,28652951:0,6240867,196608 +r1,11269:32779637,28652951:26345472,6437475,196608 +k1,11232:6434165,28652951:-26345472 +) +(1,11232:6434165,28652951:26345472,6240867,196608 +[1,11232:6630773,28652951:25952256,6044259,0 +(1,11220:6630773,23033131:25952256,424439,79822 +(1,11219:6630773,23033131:0,0,0 +g1,11219:6630773,23033131 +g1,11219:6630773,23033131 +g1,11219:6303093,23033131 +(1,11219:6303093,23033131:0,0,0 +) +g1,11219:6630773,23033131 +) +g1,11220:8290543,23033131 +g1,11220:9286405,23033131 +k1,11220:9286405,23033131:0 +h1,11220:12273991,23033131:0,0,0 +k1,11220:32583029,23033131:20309038 +g1,11220:32583029,23033131 +) +(1,11221:6630773,23717986:25952256,424439,79822 +h1,11221:6630773,23717986:0,0,0 +g1,11221:9286405,23717986 +g1,11221:10282267,23717986 +k1,11221:10282267,23717986:0 +h1,11221:13269853,23717986:0,0,0 +k1,11221:32583029,23717986:19313176 +g1,11221:32583029,23717986 +) +(1,11222:6630773,24402841:25952256,431045,86428 +h1,11222:6630773,24402841:0,0,0 +g1,11222:9950312,24402841 +g1,11222:10946174,24402841 +g1,11222:14265714,24402841 +g1,11222:16589392,24402841 +h1,11222:18581116,24402841:0,0,0 +k1,11222:32583029,24402841:14001913 +g1,11222:32583029,24402841 +) +(1,11223:6630773,25087696:25952256,431045,79822 +h1,11223:6630773,25087696:0,0,0 +g1,11223:7958589,25087696 +g1,11223:10614221,25087696 +g1,11223:11610083,25087696 +g1,11223:15261576,25087696 +h1,11223:15593530,25087696:0,0,0 +k1,11223:32583030,25087696:16989500 +g1,11223:32583030,25087696 +) +(1,11224:6630773,25772551:25952256,431045,86428 +h1,11224:6630773,25772551:0,0,0 +g1,11224:6962727,25772551 +g1,11224:7294681,25772551 +g1,11224:13269852,25772551 +g1,11224:14265714,25772551 +g1,11224:19576978,25772551 +k1,11224:19576978,25772551:0 +h1,11224:23228472,25772551:0,0,0 +k1,11224:32583029,25772551:9354557 +g1,11224:32583029,25772551 +) +(1,11225:6630773,26457406:25952256,424439,79822 +h1,11225:6630773,26457406:0,0,0 +h1,11225:6962727,26457406:0,0,0 +k1,11225:32583029,26457406:25620302 +g1,11225:32583029,26457406 +) +(1,11226:6630773,27142261:25952256,424439,6605 +h1,11226:6630773,27142261:0,0,0 +h1,11226:8954451,27142261:0,0,0 +k1,11226:32583029,27142261:23628578 +g1,11226:32583029,27142261 +) +(1,11231:6630773,27958188:25952256,424439,6605 +(1,11228:6630773,27958188:0,0,0 +g1,11228:6630773,27958188 +g1,11228:6630773,27958188 +g1,11228:6303093,27958188 +(1,11228:6303093,27958188:0,0,0 +) +g1,11228:6630773,27958188 +) +g1,11231:7626635,27958188 +g1,11231:7958589,27958188 +g1,11231:8290543,27958188 +g1,11231:8622497,27958188 +g1,11231:8954451,27958188 +g1,11231:9286405,27958188 +g1,11231:9618359,27958188 +g1,11231:11278129,27958188 +g1,11231:11610083,27958188 +g1,11231:11942037,27958188 +g1,11231:12273991,27958188 +g1,11231:12605945,27958188 +g1,11231:12937899,27958188 +g1,11231:13269853,27958188 +g1,11231:13601807,27958188 +g1,11231:14929623,27958188 +g1,11231:15261577,27958188 +g1,11231:15593531,27958188 +g1,11231:15925485,27958188 +g1,11231:16257439,27958188 +g1,11231:16589393,27958188 +g1,11231:16921347,27958188 +g1,11231:17253301,27958188 +h1,11231:18249163,27958188:0,0,0 +k1,11231:32583029,27958188:14333866 +g1,11231:32583029,27958188 +) +(1,11231:6630773,28643043:25952256,407923,9908 +h1,11231:6630773,28643043:0,0,0 +g1,11231:7626635,28643043 +g1,11231:7958589,28643043 +g1,11231:11278128,28643043 +g1,11231:11610082,28643043 +g1,11231:14929621,28643043 +k1,11231:14929621,28643043:0 +h1,11231:18249160,28643043:0,0,0 +k1,11231:32583029,28643043:14333869 +g1,11231:32583029,28643043 +) +] +) +g1,11232:32583029,28652951 +g1,11232:6630773,28652951 +g1,11232:6630773,28652951 +g1,11232:32583029,28652951 +g1,11232:32583029,28652951 +) +h1,11232:6630773,28849559:0,0,0 +(1,11236:6630773,29714639:25952256,513147,134348 +h1,11235:6630773,29714639:983040,0,0 +k1,11235:9568752,29714639:171704 +k1,11235:12954998,29714639:171705 +k1,11235:13482562,29714639:171704 +k1,11235:14554075,29714639:171704 +k1,11235:15341818,29714639:171705 +k1,11235:18422010,29714639:171704 +k1,11235:19209752,29714639:171704 +k1,11235:19737317,29714639:171705 +k1,11235:21497614,29714639:171704 +k1,11235:22688404,29714639:171705 +k1,11235:25295426,29714639:171704 +k1,11235:27535446,29714639:171704 +k1,11235:28366443,29714639:171705 +k1,11235:29557232,29714639:171704 +k1,11235:32583029,29714639:0 +) +(1,11236:6630773,30579719:25952256,513147,7863 +k1,11235:7859005,30579719:236672 +k1,11235:9161948,30579719:236672 +k1,11235:12182590,30579719:236673 +k1,11235:13105424,30579719:236672 +k1,11235:14890712,30579719:236672 +k1,11235:15658881,30579719:236672 +k1,11235:17933723,30579719:236672 +k1,11235:18786434,30579719:236673 +k1,11235:20042191,30579719:236672 +k1,11235:21272389,30579719:236672 +k1,11235:22500621,30579719:236672 +k1,11235:23756378,30579719:236672 +k1,11235:27405511,30579719:236673 +k1,11235:28301475,30579719:236672 +k1,11235:29557232,30579719:236672 +k1,11235:32583029,30579719:0 +) +(1,11236:6630773,31444799:25952256,513147,134348 +k1,11235:8803342,31444799:220907 +k1,11235:10466695,31444799:220906 +k1,11235:12196241,31444799:220907 +k1,11235:14659134,31444799:220906 +k1,11235:15507876,31444799:220907 +k1,11235:16932024,31444799:220907 +k1,11235:18693681,31444799:220906 +k1,11235:19933673,31444799:220907 +k1,11235:22850076,31444799:220907 +k1,11235:26483442,31444799:220906 +k1,11235:27695909,31444799:220907 +k1,11235:30691609,31444799:220906 +k1,11235:31563944,31444799:220907 +k1,11235:32583029,31444799:0 +) +(1,11236:6630773,32309879:25952256,513147,126483 +k1,11235:10632091,32309879:267732 +k1,11235:13411164,32309879:267733 +(1,11235:13618258,32309879:0,459977,115847 +r1,11269:13976524,32309879:358266,575824,115847 +k1,11235:13618258,32309879:-358266 +) +(1,11235:13618258,32309879:358266,459977,115847 +k1,11235:13618258,32309879:3277 +h1,11235:13973247,32309879:0,411205,112570 +) +k1,11235:14244256,32309879:267732 +k1,11235:15128027,32309879:267733 +k1,11235:16414844,32309879:267732 +k1,11235:18653245,32309879:267733 +k1,11235:20996502,32309879:267732 +k1,11235:22455679,32309879:267732 +k1,11235:23742497,32309879:267733 +k1,11235:27036026,32309879:267732 +k1,11235:28051525,32309879:267733 +k1,11235:30187033,32309879:267732 +k1,11235:32583029,32309879:0 +) +(1,11236:6630773,33174959:25952256,505283,126483 +g1,11235:8197739,33174959 +(1,11235:8404833,33174959:0,459977,115847 +r1,11269:9466522,33174959:1061689,575824,115847 +k1,11235:8404833,33174959:-1061689 +) +(1,11235:8404833,33174959:1061689,459977,115847 +k1,11235:8404833,33174959:3277 +h1,11235:9463245,33174959:0,411205,112570 +) +g1,11235:10046515,33174959 +g1,11235:11442431,33174959 +g1,11235:13484532,33174959 +g1,11235:14215258,33174959 +g1,11235:14770347,33174959 +g1,11235:17589705,33174959 +g1,11235:19766811,33174959 +g1,11235:21359991,33174959 +g1,11235:25260038,33174959 +k1,11236:32583029,33174959:4316855 +g1,11236:32583029,33174959 +) +v1,11238:6630773,33859814:0,393216,0 +(1,11250:6630773,38407669:25952256,4941071,196608 +g1,11250:6630773,38407669 +g1,11250:6630773,38407669 +g1,11250:6434165,38407669 +(1,11250:6434165,38407669:0,4941071,196608 +r1,11269:32779637,38407669:26345472,5137679,196608 +k1,11250:6434165,38407669:-26345472 +) +(1,11250:6434165,38407669:26345472,4941071,196608 +[1,11250:6630773,38407669:25952256,4744463,0 +(1,11240:6630773,34087645:25952256,424439,79822 +(1,11239:6630773,34087645:0,0,0 +g1,11239:6630773,34087645 +g1,11239:6630773,34087645 +g1,11239:6303093,34087645 +(1,11239:6303093,34087645:0,0,0 +) +g1,11239:6630773,34087645 +) +g1,11240:9286405,34087645 +g1,11240:10282267,34087645 +k1,11240:10282267,34087645:0 +h1,11240:13269853,34087645:0,0,0 +k1,11240:32583029,34087645:19313176 +g1,11240:32583029,34087645 +) +(1,11241:6630773,34772500:25952256,431045,86428 +h1,11241:6630773,34772500:0,0,0 +g1,11241:8290543,34772500 +g1,11241:9286405,34772500 +g1,11241:12937899,34772500 +g1,11241:14597669,34772500 +h1,11241:15925485,34772500:0,0,0 +k1,11241:32583029,34772500:16657544 +g1,11241:32583029,34772500 +) +(1,11242:6630773,35457355:25952256,431045,79822 +h1,11242:6630773,35457355:0,0,0 +g1,11242:7958589,35457355 +g1,11242:8954451,35457355 +g1,11242:9950313,35457355 +g1,11242:11942037,35457355 +h1,11242:12273991,35457355:0,0,0 +k1,11242:32583029,35457355:20309038 +g1,11242:32583029,35457355 +) +(1,11243:6630773,36142210:25952256,431045,86428 +h1,11243:6630773,36142210:0,0,0 +g1,11243:6962727,36142210 +g1,11243:7294681,36142210 +g1,11243:9950313,36142210 +g1,11243:10946175,36142210 +g1,11243:14597668,36142210 +k1,11243:14597668,36142210:0 +h1,11243:16257438,36142210:0,0,0 +k1,11243:32583029,36142210:16325591 +g1,11243:32583029,36142210 +) +(1,11244:6630773,36827065:25952256,424439,79822 +h1,11244:6630773,36827065:0,0,0 +h1,11244:6962727,36827065:0,0,0 +k1,11244:32583029,36827065:25620302 +g1,11244:32583029,36827065 +) +(1,11245:6630773,37511920:25952256,424439,6605 +h1,11245:6630773,37511920:0,0,0 +h1,11245:8954451,37511920:0,0,0 +k1,11245:32583029,37511920:23628578 +g1,11245:32583029,37511920 +) +(1,11249:6630773,38327847:25952256,424439,79822 +(1,11247:6630773,38327847:0,0,0 +g1,11247:6630773,38327847 +g1,11247:6630773,38327847 +g1,11247:6303093,38327847 +(1,11247:6303093,38327847:0,0,0 +) +g1,11247:6630773,38327847 +) +g1,11249:7626635,38327847 +g1,11249:8954451,38327847 +g1,11249:9618359,38327847 +g1,11249:10282267,38327847 +h1,11249:10614221,38327847:0,0,0 +k1,11249:32583029,38327847:21968808 +g1,11249:32583029,38327847 +) +] +) +g1,11250:32583029,38407669 +g1,11250:6630773,38407669 +g1,11250:6630773,38407669 +g1,11250:32583029,38407669 +g1,11250:32583029,38407669 +) +h1,11250:6630773,38604277:0,0,0 +(1,11254:6630773,39469357:25952256,513147,134348 +h1,11253:6630773,39469357:983040,0,0 +k1,11253:8321068,39469357:219667 +k1,11253:10699511,39469357:219687 +k1,11253:11912724,39469357:219687 +k1,11253:12791704,39469357:219688 +k1,11253:16037188,39469357:219687 +k1,11253:18302909,39469357:219687 +k1,11253:18980694,39469357:219688 +k1,11253:21830341,39469357:219687 +k1,11253:22701456,39469357:219687 +k1,11253:24267254,39469357:219688 +k1,11253:25576805,39469357:219687 +k1,11253:28084354,39469357:219687 +k1,11253:28963334,39469357:219688 +k1,11253:30202106,39469357:219687 +k1,11253:32583029,39469357:0 +) +(1,11254:6630773,40334437:25952256,513147,126483 +k1,11253:7533153,40334437:243088 +k1,11253:8795326,40334437:243088 +k1,11253:11385258,40334437:243088 +k1,11253:12098239,40334437:243088 +k1,11253:12872824,40334437:243088 +k1,11253:15745872,40334437:243088 +k1,11253:16640389,40334437:243089 +k1,11253:19907308,40334437:243088 +k1,11253:20506256,40334437:243088 +k1,11253:23369473,40334437:243088 +k1,11253:25590438,40334437:243088 +k1,11253:27227477,40334437:243088 +k1,11253:29629321,40334437:243088 +k1,11253:32583029,40334437:0 +) +(1,11254:6630773,41199517:25952256,513147,134348 +k1,11253:8188615,41199517:190105 +k1,11253:10447035,41199517:190104 +k1,11253:13608542,41199517:190105 +k1,11253:14817731,41199517:190104 +k1,11253:17076152,41199517:190105 +k1,11253:18961018,41199517:190105 +k1,11253:19802550,41199517:190104 +k1,11253:21011740,41199517:190105 +k1,11253:22195371,41199517:190105 +k1,11253:25512853,41199517:190104 +k1,11253:27588429,41199517:190105 +k1,11253:28882815,41199517:190104 +k1,11253:29820686,41199517:190105 +k1,11253:32583029,41199517:0 +) +(1,11254:6630773,42064597:25952256,513147,7863 +g1,11253:7481430,42064597 +g1,11253:8699744,42064597 +g1,11253:10967289,42064597 +g1,11253:11825810,42064597 +g1,11253:13044124,42064597 +k1,11254:32583029,42064597:16460679 +g1,11254:32583029,42064597 +) +v1,11256:6630773,42749452:0,393216,0 +(1,11269:6630773,45111670:25952256,2755434,196608 +g1,11269:6630773,45111670 +g1,11269:6630773,45111670 +g1,11269:6434165,45111670 +(1,11269:6434165,45111670:0,2755434,196608 +r1,11269:32779637,45111670:26345472,2952042,196608 +k1,11269:6434165,45111670:-26345472 +) +(1,11269:6434165,45111670:26345472,2755434,196608 +[1,11269:6630773,45111670:25952256,2558826,0 +(1,11258:6630773,42977283:25952256,424439,79822 +(1,11257:6630773,42977283:0,0,0 +g1,11257:6630773,42977283 +g1,11257:6630773,42977283 +g1,11257:6303093,42977283 +(1,11257:6303093,42977283:0,0,0 +) +g1,11257:6630773,42977283 +) +g1,11258:9286405,42977283 +g1,11258:10282267,42977283 +k1,11258:10282267,42977283:0 +h1,11258:13269853,42977283:0,0,0 +k1,11258:32583029,42977283:19313176 +g1,11258:32583029,42977283 +) +(1,11259:6630773,43662138:25952256,431045,112852 +h1,11259:6630773,43662138:0,0,0 +g1,11259:8290543,43662138 +g1,11259:9286405,43662138 +g1,11259:13601807,43662138 +g1,11259:14265715,43662138 +g1,11259:16257439,43662138 +g1,11259:18913071,43662138 +g1,11259:19576979,43662138 +g1,11259:21236749,43662138 +g1,11259:23892381,43662138 +g1,11259:24556289,43662138 +h1,11259:25884105,43662138:0,0,0 +k1,11259:32583029,43662138:6698924 +g1,11259:32583029,43662138 +) +(1,11260:6630773,44346993:25952256,431045,79822 +h1,11260:6630773,44346993:0,0,0 +g1,11260:7958589,44346993 +g1,11260:8954451,44346993 +g1,11260:9950313,44346993 +g1,11260:14265715,44346993 +h1,11260:14597669,44346993:0,0,0 +k1,11260:32583029,44346993:17985360 +g1,11260:32583029,44346993 +) +(1,11261:6630773,45031848:25952256,431045,79822 +h1,11261:6630773,45031848:0,0,0 +g1,11261:6962727,45031848 +g1,11261:7294681,45031848 +g1,11261:11610082,45031848 +g1,11261:12605944,45031848 +h1,11261:16589391,45031848:0,0,0 +k1,11261:32583029,45031848:15993638 +g1,11261:32583029,45031848 +) +] +) +g1,11269:32583029,45111670 +g1,11269:6630773,45111670 +g1,11269:6630773,45111670 +g1,11269:32583029,45111670 +g1,11269:32583029,45111670 +) +] +(1,11269:32583029,45706769:0,0,0 +g1,11269:32583029,45706769 +) +) +] +(1,11269:6630773,47279633:25952256,0,0 +h1,11269:6630773,47279633:25952256,0,0 +) +] +(1,11269:4262630,4025873:0,0,0 +[1,11269:-473656,4025873:0,0,0 +(1,11269:-473656,-710413:0,0,0 +(1,11269:-473656,-710413:0,0,0 +g1,11269:-473656,-710413 +) +g1,11269:-473656,-710413 ) ] ) ] !26938 -}175 -Input:1888:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1889:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1890:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}176 Input:1891:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1892:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1893:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -202501,40 +202681,43 @@ Input:1895:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1896:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1897:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1898:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1899:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1900:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{176 -[1,11351:4262630,47279633:28320399,43253760,0 -(1,11351:4262630,4025873:0,0,0 -[1,11351:-473656,4025873:0,0,0 -(1,11351:-473656,-710413:0,0,0 -(1,11351:-473656,-644877:0,0,0 -k1,11351:-473656,-644877:-65536 +{177 +[1,11350:4262630,47279633:28320399,43253760,0 +(1,11350:4262630,4025873:0,0,0 +[1,11350:-473656,4025873:0,0,0 +(1,11350:-473656,-710413:0,0,0 +(1,11350:-473656,-644877:0,0,0 +k1,11350:-473656,-644877:-65536 ) -(1,11351:-473656,4736287:0,0,0 -k1,11351:-473656,4736287:5209943 +(1,11350:-473656,4736287:0,0,0 +k1,11350:-473656,4736287:5209943 ) -g1,11351:-473656,-710413 +g1,11350:-473656,-710413 ) ] ) -[1,11351:6630773,47279633:25952256,43253760,0 -[1,11351:6630773,4812305:25952256,786432,0 -(1,11351:6630773,4812305:25952256,513147,126483 -(1,11351:6630773,4812305:25952256,513147,126483 -g1,11351:3078558,4812305 -[1,11351:3078558,4812305:0,0,0 -(1,11351:3078558,2439708:0,1703936,0 -k1,11351:1358238,2439708:-1720320 +[1,11350:6630773,47279633:25952256,43253760,0 +[1,11350:6630773,4812305:25952256,786432,0 +(1,11350:6630773,4812305:25952256,513147,126483 +(1,11350:6630773,4812305:25952256,513147,126483 +g1,11350:3078558,4812305 +[1,11350:3078558,4812305:0,0,0 +(1,11350:3078558,2439708:0,1703936,0 +k1,11350:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11351:2537886,2439708:1179648,16384,0 +r1,11350:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11351:3078558,1915420:16384,1179648,0 +r1,11350:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -202544,16 +202727,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11351:3078558,4812305:0,0,0 -(1,11351:3078558,2439708:0,1703936,0 -g1,11351:29030814,2439708 -g1,11351:36135244,2439708 +[1,11350:3078558,4812305:0,0,0 +(1,11350:3078558,2439708:0,1703936,0 +g1,11350:29030814,2439708 +g1,11350:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11351:36151628,1915420:16384,1179648,0 +r1,11350:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -202562,25 +202745,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11351:37855564,2439708:1179648,16384,0 +r1,11350:37855564,2439708:1179648,16384,0 ) ) -k1,11351:3078556,2439708:-34777008 +k1,11350:3078556,2439708:-34777008 ) ] -[1,11351:3078558,4812305:0,0,0 -(1,11351:3078558,49800853:0,16384,2228224 -k1,11351:1358238,49800853:-1720320 +[1,11350:3078558,4812305:0,0,0 +(1,11350:3078558,49800853:0,16384,2228224 +k1,11350:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11351:2537886,49800853:1179648,16384,0 +r1,11350:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11351:3078558,51504789:16384,1179648,0 +r1,11350:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -202590,16 +202773,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11351:3078558,4812305:0,0,0 -(1,11351:3078558,49800853:0,16384,2228224 -g1,11351:29030814,49800853 -g1,11351:36135244,49800853 +[1,11350:3078558,4812305:0,0,0 +(1,11350:3078558,49800853:0,16384,2228224 +g1,11350:29030814,49800853 +g1,11350:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11351:36151628,51504789:16384,1179648,0 +r1,11350:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -202608,964 +202791,961 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11351:37855564,49800853:1179648,16384,0 -) -) -k1,11351:3078556,49800853:-34777008 -) -] -g1,11351:6630773,4812305 -g1,11351:6630773,4812305 -g1,11351:8017514,4812305 -g1,11351:10735292,4812305 -g1,11351:12641079,4812305 -g1,11351:13456346,4812305 -g1,11351:15451261,4812305 -k1,11351:31387652,4812305:15936391 -) -) -] -[1,11351:6630773,45706769:25952256,40108032,0 -(1,11351:6630773,45706769:25952256,40108032,0 -(1,11351:6630773,45706769:0,0,0 -g1,11351:6630773,45706769 -) -[1,11351:6630773,45706769:25952256,40108032,0 -v1,11270:6630773,6254097:0,393216,0 -(1,11270:6630773,8677473:25952256,2816592,196608 -g1,11270:6630773,8677473 -g1,11270:6630773,8677473 -g1,11270:6434165,8677473 -(1,11270:6434165,8677473:0,2816592,196608 -r1,11351:32779637,8677473:26345472,3013200,196608 -k1,11270:6434165,8677473:-26345472 -) -(1,11270:6434165,8677473:26345472,2816592,196608 -[1,11270:6630773,8677473:25952256,2619984,0 -(1,11263:6630773,6481928:25952256,424439,79822 -h1,11263:6630773,6481928:0,0,0 -h1,11263:6962727,6481928:0,0,0 -k1,11263:32583029,6481928:25620302 -g1,11263:32583029,6481928 -) -(1,11264:6630773,7166783:25952256,424439,6605 -h1,11264:6630773,7166783:0,0,0 -h1,11264:8954451,7166783:0,0,0 -k1,11264:32583029,7166783:23628578 -g1,11264:32583029,7166783 -) -(1,11269:6630773,7982710:25952256,424439,112852 -(1,11266:6630773,7982710:0,0,0 -g1,11266:6630773,7982710 -g1,11266:6630773,7982710 -g1,11266:6303093,7982710 -(1,11266:6303093,7982710:0,0,0 -) -g1,11266:6630773,7982710 -) -g1,11269:7626635,7982710 -g1,11269:10282267,7982710 -g1,11269:12937899,7982710 -h1,11269:15261577,7982710:0,0,0 -k1,11269:32583029,7982710:17321452 -g1,11269:32583029,7982710 -) -(1,11269:6630773,8667565:25952256,407923,9908 -h1,11269:6630773,8667565:0,0,0 -g1,11269:7626635,8667565 -g1,11269:7958589,8667565 -g1,11269:8290543,8667565 -g1,11269:8622497,8667565 -g1,11269:8954451,8667565 -g1,11269:9286405,8667565 -g1,11269:9618359,8667565 -g1,11269:10282267,8667565 -g1,11269:10614221,8667565 -g1,11269:10946175,8667565 -g1,11269:11278129,8667565 -g1,11269:11610083,8667565 -g1,11269:11942037,8667565 -g1,11269:12273991,8667565 -g1,11269:12937899,8667565 -g1,11269:13269853,8667565 -g1,11269:13601807,8667565 -g1,11269:13933761,8667565 -g1,11269:14265715,8667565 -g1,11269:14597669,8667565 -g1,11269:14929623,8667565 -h1,11269:15261577,8667565:0,0,0 -k1,11269:32583029,8667565:17321452 -g1,11269:32583029,8667565 -) -] -) -g1,11270:32583029,8677473 -g1,11270:6630773,8677473 -g1,11270:6630773,8677473 -g1,11270:32583029,8677473 -g1,11270:32583029,8677473 -) -h1,11270:6630773,8874081:0,0,0 -(1,11274:6630773,9739161:25952256,513147,134348 -h1,11273:6630773,9739161:983040,0,0 -k1,11273:9309042,9739161:233776 -k1,11273:10074316,9739161:233777 -k1,11273:11078795,9739161:233776 -k1,11273:13973988,9739161:233776 -k1,11273:15943158,9739161:233777 -k1,11273:18164641,9739161:233776 -k1,11273:21445842,9739161:233777 -k1,11273:22307453,9739161:233776 -k1,11273:23560314,9739161:233776 -k1,11273:24997332,9739161:233777 -k1,11273:28066195,9739161:233776 -k1,11273:28655831,9739161:233776 -k1,11273:30304530,9739161:233777 -k1,11273:31069803,9739161:233776 -k1,11273:32583029,9739161:0 -) -(1,11274:6630773,10604241:25952256,513147,134348 -k1,11273:7519851,10604241:237650 -k1,11273:8444974,10604241:237650 -k1,11273:10337407,10604241:237649 -k1,11273:13066736,10604241:237650 -k1,11273:16318387,10604241:237650 -k1,11273:16911897,10604241:237650 -k1,11273:18143072,10604241:237649 -k1,11273:19040014,10604241:237650 -k1,11273:20990120,10604241:237650 -k1,11273:23719449,10604241:237650 -k1,11273:24426991,10604241:237649 -k1,11273:25196138,10604241:237650 -k1,11273:26500059,10604241:237650 -k1,11273:29367669,10604241:237650 -k1,11273:30256746,10604241:237649 -k1,11273:31931601,10604241:237650 -k1,11274:32583029,10604241:0 -) -(1,11274:6630773,11469321:25952256,513147,126483 -(1,11273:6630773,11469321:0,452978,115847 -r1,11351:9099310,11469321:2468537,568825,115847 -k1,11273:6630773,11469321:-2468537 -) -(1,11273:6630773,11469321:2468537,452978,115847 -k1,11273:6630773,11469321:3277 -h1,11273:9096033,11469321:0,411205,112570 -) -k1,11273:9383704,11469321:284394 -k1,11273:10871339,11469321:284394 -k1,11273:12149259,11469321:284394 -k1,11273:13092945,11469321:284394 -k1,11273:15089795,11469321:284394 -k1,11273:17865868,11469321:284394 -k1,11273:18836424,11469321:284394 -k1,11273:19578914,11469321:284393 -k1,11273:22264547,11469321:284394 -k1,11273:24000563,11469321:284394 -k1,11273:25997413,11469321:284394 -k1,11273:28269514,11469321:284394 -k1,11273:29240070,11469321:284394 -k1,11273:29880324,11469321:284394 -k1,11273:32583029,11469321:0 -) -(1,11274:6630773,12334401:25952256,505283,134348 -k1,11273:9831568,12334401:249709 -k1,11273:13153604,12334401:249708 -k1,11273:14054741,12334401:249709 -k1,11273:15092847,12334401:249708 -(1,11273:15092847,12334401:0,414482,115847 -r1,11351:15451113,12334401:358266,530329,115847 -k1,11273:15092847,12334401:-358266 -) -(1,11273:15092847,12334401:358266,414482,115847 -k1,11273:15092847,12334401:3277 -h1,11273:15447836,12334401:0,411205,112570 -) -k1,11273:15700822,12334401:249709 -k1,11273:19404934,12334401:249709 -k1,11273:20124535,12334401:249708 -k1,11273:20905741,12334401:249709 -k1,11273:23785410,12334401:249709 -k1,11273:24686546,12334401:249708 -k1,11273:25914708,12334401:249709 -k1,11273:28453589,12334401:249708 -k1,11273:29906539,12334401:249709 -k1,11273:32583029,12334401:0 -) -(1,11274:6630773,13199481:25952256,513147,134348 -k1,11273:8556827,13199481:190661 -k1,11273:11442984,13199481:190661 -(1,11273:11442984,13199481:0,452978,115847 -r1,11351:14614944,13199481:3171960,568825,115847 -k1,11273:11442984,13199481:-3171960 -) -(1,11273:11442984,13199481:3171960,452978,115847 -k1,11273:11442984,13199481:3277 -h1,11273:14611667,13199481:0,411205,112570 -) -k1,11273:14805605,13199481:190661 -k1,11273:15647694,13199481:190661 -k1,11273:16938049,13199481:190661 -(1,11273:16938049,13199481:0,452978,115847 -r1,11351:19406586,13199481:2468537,568825,115847 -k1,11273:16938049,13199481:-2468537 -) -(1,11273:16938049,13199481:2468537,452978,115847 -k1,11273:16938049,13199481:3277 -h1,11273:19403309,13199481:0,411205,112570 -) -k1,11273:19770917,13199481:190661 -k1,11273:22751446,13199481:190661 -(1,11273:22751446,13199481:0,452978,115847 -r1,11351:25923406,13199481:3171960,568825,115847 -k1,11273:22751446,13199481:-3171960 -) -(1,11273:22751446,13199481:3171960,452978,115847 -k1,11273:22751446,13199481:3277 -h1,11273:25920129,13199481:0,411205,112570 -) -k1,11273:26114067,13199481:190661 -k1,11273:28419575,13199481:190661 -k1,11273:29629321,13199481:190661 -k1,11273:32583029,13199481:0 -) -(1,11274:6630773,14064561:25952256,513147,134348 -k1,11273:7493075,14064561:203010 -k1,11273:8715170,14064561:203010 -k1,11273:9911707,14064561:203011 -k1,11273:12320004,14064561:203010 -k1,11273:13209176,14064561:203010 -k1,11273:14200584,14064561:203010 -k1,11273:16644926,14064561:203011 -k1,11273:19920264,14064561:203010 -k1,11273:20809436,14064561:203010 -k1,11273:24205360,14064561:203010 -k1,11273:27811000,14064561:203011 -k1,11273:28665438,14064561:203010 -k1,11273:29887533,14064561:203010 -k1,11273:32583029,14064561:0 -) -(1,11274:6630773,14929641:25952256,513147,134348 -k1,11273:8538485,14929641:169697 -k1,11273:10749629,14929641:169698 -k1,11273:12654719,14929641:169697 -k1,11273:14333055,14929641:169697 -k1,11273:16571068,14929641:169697 -k1,11273:17206727,14929641:169698 -k1,11273:19955921,14929641:169697 -(1,11273:19955921,14929641:0,452978,115847 -r1,11351:22424458,14929641:2468537,568825,115847 -k1,11273:19955921,14929641:-2468537 -) -(1,11273:19955921,14929641:2468537,452978,115847 -k1,11273:19955921,14929641:3277 -h1,11273:22421181,14929641:0,411205,112570 -) -k1,11273:22594155,14929641:169697 -k1,11273:25165091,14929641:169697 -k1,11273:28285875,14929641:169698 -k1,11273:31858201,14929641:169697 -k1,11273:32583029,14929641:0 -) -(1,11274:6630773,15794721:25952256,505283,126483 -g1,11273:7849087,15794721 -g1,11273:10116632,15794721 -g1,11273:12721688,15794721 -g1,11273:13536955,15794721 -(1,11273:13536955,15794721:0,452978,115847 -r1,11351:16005492,15794721:2468537,568825,115847 -k1,11273:13536955,15794721:-2468537 -) -(1,11273:13536955,15794721:2468537,452978,115847 -k1,11273:13536955,15794721:3277 -h1,11273:16002215,15794721:0,411205,112570 -) -g1,11273:16204721,15794721 -g1,11273:17879165,15794721 -g1,11273:18729822,15794721 -g1,11273:19676817,15794721 -g1,11273:22651496,15794721 -g1,11273:24244676,15794721 -g1,11273:24799765,15794721 -g1,11273:26098688,15794721 -g1,11273:26949345,15794721 -(1,11273:26949345,15794721:0,452978,115847 -r1,11351:29769594,15794721:2820249,568825,115847 -k1,11273:26949345,15794721:-2820249 -) -(1,11273:26949345,15794721:2820249,452978,115847 -k1,11273:26949345,15794721:3277 -h1,11273:29766317,15794721:0,411205,112570 -) -k1,11274:32583029,15794721:2761007 -g1,11274:32583029,15794721 -) -v1,11276:6630773,16479576:0,393216,0 -(1,11311:6630773,34341456:25952256,18255096,196608 -g1,11311:6630773,34341456 -g1,11311:6630773,34341456 -g1,11311:6434165,34341456 -(1,11311:6434165,34341456:0,18255096,196608 -r1,11351:32779637,34341456:26345472,18451704,196608 -k1,11311:6434165,34341456:-26345472 -) -(1,11311:6434165,34341456:26345472,18255096,196608 -[1,11311:6630773,34341456:25952256,18058488,0 -(1,11278:6630773,16714013:25952256,431045,106246 -(1,11277:6630773,16714013:0,0,0 -g1,11277:6630773,16714013 -g1,11277:6630773,16714013 -g1,11277:6303093,16714013 -(1,11277:6303093,16714013:0,0,0 -) -g1,11277:6630773,16714013 -) -g1,11278:9286405,16714013 -g1,11278:10282267,16714013 -g1,11278:14597668,16714013 -g1,11278:15261576,16714013 -g1,11278:17253300,16714013 -g1,11278:17917208,16714013 -g1,11278:18581116,16714013 -g1,11278:20240886,16714013 -g1,11278:20904794,16714013 -g1,11278:24224334,16714013 -g1,11278:25220196,16714013 -h1,11278:26879966,16714013:0,0,0 -k1,11278:32583029,16714013:5703063 -g1,11278:32583029,16714013 -) -(1,11279:6630773,17398868:25952256,424439,79822 -h1,11279:6630773,17398868:0,0,0 -g1,11279:9286405,17398868 -g1,11279:10282267,17398868 -k1,11279:10282267,17398868:0 -h1,11279:12273991,17398868:0,0,0 -k1,11279:32583029,17398868:20309038 -g1,11279:32583029,17398868 -) -(1,11280:6630773,18083723:25952256,424439,112852 -h1,11280:6630773,18083723:0,0,0 -k1,11280:8874455,18083723:251958 -k1,11280:9790321,18083723:251958 -k1,11280:13693772,18083723:251957 -k1,11280:14277684,18083723:251958 -k1,11280:14861596,18083723:251958 -k1,11280:15445508,18083723:251958 -k1,11280:16361374,18083723:251958 -k1,11280:20264824,18083723:251957 -k1,11280:20848736,18083723:251958 -k1,11280:21432648,18083723:251958 -k1,11280:22016560,18083723:251958 -k1,11280:22600472,18083723:251958 -k1,11280:23184383,18083723:251957 -k1,11280:24100249,18083723:251958 -k1,11280:27339792,18083723:251958 -k1,11280:27923704,18083723:251958 -k1,11280:28507616,18083723:251958 -k1,11280:29091527,18083723:251957 -k1,11280:29675439,18083723:251958 -k1,11280:30259351,18083723:251958 -k1,11280:30259351,18083723:0 -h1,11280:32583029,18083723:0,0,0 -k1,11280:32583029,18083723:0 -k1,11280:32583029,18083723:0 -) -(1,11281:6630773,18768578:25952256,431045,79822 -h1,11281:6630773,18768578:0,0,0 -g1,11281:7958589,18768578 -g1,11281:8954451,18768578 -g1,11281:9950313,18768578 -g1,11281:14929622,18768578 -h1,11281:15261576,18768578:0,0,0 -k1,11281:32583028,18768578:17321452 -g1,11281:32583028,18768578 -) -(1,11282:6630773,19453433:25952256,424439,106246 -h1,11282:6630773,19453433:0,0,0 -g1,11282:6962727,19453433 -g1,11282:7294681,19453433 -g1,11282:11610082,19453433 -g1,11282:12605944,19453433 -g1,11282:17917207,19453433 -g1,11282:19576977,19453433 -g1,11282:20240885,19453433 -h1,11282:22896516,19453433:0,0,0 -k1,11282:32583029,19453433:9686513 -g1,11282:32583029,19453433 -) -(1,11283:6630773,20138288:25952256,424439,79822 -h1,11283:6630773,20138288:0,0,0 -h1,11283:6962727,20138288:0,0,0 -k1,11283:32583029,20138288:25620302 -g1,11283:32583029,20138288 -) -(1,11284:6630773,20823143:25952256,424439,86428 -h1,11284:6630773,20823143:0,0,0 -g1,11284:10946174,20823143 -g1,11284:14265713,20823143 -g1,11284:14929621,20823143 -h1,11284:15593529,20823143:0,0,0 -k1,11284:32583029,20823143:16989500 -g1,11284:32583029,20823143 -) -(1,11294:6630773,21639070:25952256,431045,9908 -(1,11286:6630773,21639070:0,0,0 -g1,11286:6630773,21639070 -g1,11286:6630773,21639070 -g1,11286:6303093,21639070 -(1,11286:6303093,21639070:0,0,0 -) -g1,11286:6630773,21639070 -) -g1,11294:7626635,21639070 -g1,11294:9286405,21639070 -g1,11294:10282267,21639070 -h1,11294:10614221,21639070:0,0,0 -k1,11294:32583029,21639070:21968808 -g1,11294:32583029,21639070 -) -(1,11294:6630773,22323925:25952256,431045,33029 -h1,11294:6630773,22323925:0,0,0 -g1,11294:7626635,22323925 -g1,11294:7958589,22323925 -g1,11294:8622497,22323925 -g1,11294:10946175,22323925 -g1,11294:11278129,22323925 -g1,11294:11610083,22323925 -g1,11294:11942037,22323925 -g1,11294:12273991,22323925 -g1,11294:14265715,22323925 -g1,11294:15261577,22323925 -h1,11294:15925485,22323925:0,0,0 -k1,11294:32583029,22323925:16657544 -g1,11294:32583029,22323925 -) -(1,11294:6630773,23008780:25952256,424439,86428 -h1,11294:6630773,23008780:0,0,0 -g1,11294:7626635,23008780 -g1,11294:7958589,23008780 -g1,11294:8290543,23008780 -g1,11294:9618359,23008780 -g1,11294:12273991,23008780 -g1,11294:15593530,23008780 -g1,11294:16921346,23008780 -h1,11294:18249162,23008780:0,0,0 -k1,11294:32583029,23008780:14333867 -g1,11294:32583029,23008780 -) -(1,11294:6630773,23693635:25952256,431045,112852 -h1,11294:6630773,23693635:0,0,0 -g1,11294:7626635,23693635 -g1,11294:7958589,23693635 -g1,11294:8622497,23693635 -g1,11294:14265714,23693635 -g1,11294:15261576,23693635 -h1,11294:15925484,23693635:0,0,0 -k1,11294:32583029,23693635:16657545 -g1,11294:32583029,23693635 -) -(1,11294:6630773,24378490:25952256,424439,86428 -h1,11294:6630773,24378490:0,0,0 -g1,11294:7626635,24378490 -g1,11294:7958589,24378490 -g1,11294:8290543,24378490 -g1,11294:9618359,24378490 -g1,11294:12273991,24378490 -g1,11294:15593530,24378490 -g1,11294:16921346,24378490 -h1,11294:18249162,24378490:0,0,0 -k1,11294:32583029,24378490:14333867 -g1,11294:32583029,24378490 -) -(1,11294:6630773,25063345:25952256,431045,106246 -h1,11294:6630773,25063345:0,0,0 -g1,11294:7626635,25063345 -g1,11294:7958589,25063345 -g1,11294:8622497,25063345 -g1,11294:11942036,25063345 -g1,11294:12273990,25063345 -g1,11294:14265714,25063345 -g1,11294:15261576,25063345 -h1,11294:15925484,25063345:0,0,0 -k1,11294:32583029,25063345:16657545 -g1,11294:32583029,25063345 -) -(1,11294:6630773,25748200:25952256,424439,86428 -h1,11294:6630773,25748200:0,0,0 -g1,11294:7626635,25748200 -g1,11294:7958589,25748200 -g1,11294:8290543,25748200 -g1,11294:9618359,25748200 -g1,11294:12273991,25748200 -g1,11294:15593530,25748200 -g1,11294:16921346,25748200 -h1,11294:18249162,25748200:0,0,0 -k1,11294:32583029,25748200:14333867 -g1,11294:32583029,25748200 -) -(1,11296:6630773,26564127:25952256,424439,86428 -(1,11295:6630773,26564127:0,0,0 -g1,11295:6630773,26564127 -g1,11295:6630773,26564127 -g1,11295:6303093,26564127 -(1,11295:6303093,26564127:0,0,0 -) -g1,11295:6630773,26564127 -) -k1,11296:6630773,26564127:0 -g1,11296:11610083,26564127 -k1,11296:11610083,26564127:0 -h1,11296:16921346,26564127:0,0,0 -k1,11296:32583029,26564127:15661683 -g1,11296:32583029,26564127 -) -(1,11310:6630773,27380054:25952256,431045,106246 -(1,11298:6630773,27380054:0,0,0 -g1,11298:6630773,27380054 -g1,11298:6630773,27380054 -g1,11298:6303093,27380054 -(1,11298:6303093,27380054:0,0,0 -) -g1,11298:6630773,27380054 -) -g1,11310:7626635,27380054 -g1,11310:10614220,27380054 -g1,11310:11610082,27380054 -g1,11310:14597667,27380054 -h1,11310:16257437,27380054:0,0,0 -k1,11310:32583029,27380054:16325592 -g1,11310:32583029,27380054 -) -(1,11310:6630773,28064909:25952256,398014,0 -h1,11310:6630773,28064909:0,0,0 -h1,11310:7294681,28064909:0,0,0 -k1,11310:32583029,28064909:25288348 -g1,11310:32583029,28064909 -) -(1,11310:6630773,28749764:25952256,424439,106246 -h1,11310:6630773,28749764:0,0,0 -g1,11310:7626635,28749764 -g1,11310:9618359,28749764 -g1,11310:10614221,28749764 -g1,11310:11278129,28749764 -g1,11310:11942037,28749764 -h1,11310:12273991,28749764:0,0,0 -k1,11310:32583029,28749764:20309038 -g1,11310:32583029,28749764 -) -(1,11310:6630773,29434619:25952256,424439,106246 -h1,11310:6630773,29434619:0,0,0 -g1,11310:7626635,29434619 -g1,11310:9618359,29434619 -g1,11310:10614221,29434619 -g1,11310:11278129,29434619 -g1,11310:11942037,29434619 -g1,11310:12605945,29434619 -g1,11310:13269853,29434619 -h1,11310:13601807,29434619:0,0,0 -k1,11310:32583029,29434619:18981222 -g1,11310:32583029,29434619 -) -(1,11310:6630773,30119474:25952256,424439,106246 -h1,11310:6630773,30119474:0,0,0 -g1,11310:7626635,30119474 -g1,11310:9618359,30119474 -g1,11310:10614221,30119474 -g1,11310:11278129,30119474 -g1,11310:11942037,30119474 -g1,11310:12605945,30119474 -g1,11310:13269853,30119474 -h1,11310:15261577,30119474:0,0,0 -k1,11310:32583029,30119474:17321452 -g1,11310:32583029,30119474 -) -(1,11310:6630773,30804329:25952256,431045,106246 -h1,11310:6630773,30804329:0,0,0 -g1,11310:7626635,30804329 -g1,11310:7958589,30804329 -g1,11310:8290543,30804329 -g1,11310:10614221,30804329 -g1,11310:10946175,30804329 -g1,11310:11278129,30804329 -g1,11310:11610083,30804329 -g1,11310:11942037,30804329 -g1,11310:13269853,30804329 -g1,11310:14265715,30804329 -g1,11310:15593531,30804329 -g1,11310:16589393,30804329 -g1,11310:17585255,30804329 -g1,11310:17917209,30804329 -g1,11310:18249163,30804329 -g1,11310:18581117,30804329 -g1,11310:18913071,30804329 -g1,11310:19245025,30804329 -g1,11310:19908933,30804329 -g1,11310:20240887,30804329 -g1,11310:20572841,30804329 -g1,11310:20904795,30804329 -k1,11310:20904795,30804329:0 -h1,11310:22896519,30804329:0,0,0 -k1,11310:32583029,30804329:9686510 -g1,11310:32583029,30804329 -) -(1,11310:6630773,31489184:25952256,407923,9908 -h1,11310:6630773,31489184:0,0,0 -g1,11310:7626635,31489184 -g1,11310:8290543,31489184 -g1,11310:8622497,31489184 -g1,11310:8954451,31489184 -g1,11310:9286405,31489184 -g1,11310:9618359,31489184 -g1,11310:9950313,31489184 -g1,11310:10614221,31489184 -h1,11310:12937899,31489184:0,0,0 -k1,11310:32583029,31489184:19645130 -g1,11310:32583029,31489184 -) -(1,11310:6630773,32174039:25952256,407923,9908 -h1,11310:6630773,32174039:0,0,0 -g1,11310:7626635,32174039 -g1,11310:8290543,32174039 -g1,11310:8622497,32174039 -g1,11310:8954451,32174039 -g1,11310:9286405,32174039 -g1,11310:9618359,32174039 -g1,11310:9950313,32174039 -g1,11310:10614221,32174039 -g1,11310:13269853,32174039 -g1,11310:14265715,32174039 -g1,11310:14597669,32174039 -g1,11310:14929623,32174039 -g1,11310:17585255,32174039 -g1,11310:19908933,32174039 -g1,11310:23228473,32174039 -h1,11310:24224335,32174039:0,0,0 -k1,11310:32583029,32174039:8358694 -g1,11310:32583029,32174039 -) -(1,11310:6630773,32858894:25952256,407923,9908 -h1,11310:6630773,32858894:0,0,0 -g1,11310:7626635,32858894 -g1,11310:8290543,32858894 -g1,11310:8622497,32858894 -g1,11310:8954451,32858894 -g1,11310:9286405,32858894 -g1,11310:9618359,32858894 -g1,11310:9950313,32858894 -g1,11310:10614221,32858894 -g1,11310:13269853,32858894 -g1,11310:13601807,32858894 -g1,11310:14265715,32858894 -g1,11310:14597669,32858894 -g1,11310:14929623,32858894 -g1,11310:15261577,32858894 -g1,11310:17585255,32858894 -g1,11310:19908933,32858894 -g1,11310:23228473,32858894 -h1,11310:24224335,32858894:0,0,0 -k1,11310:32583029,32858894:8358694 -g1,11310:32583029,32858894 -) -(1,11310:6630773,33543749:25952256,398014,0 -h1,11310:6630773,33543749:0,0,0 -g1,11310:7626635,33543749 -k1,11310:7626635,33543749:0 -h1,11310:8622497,33543749:0,0,0 -k1,11310:32583029,33543749:23960532 -g1,11310:32583029,33543749 -) -(1,11310:6630773,34228604:25952256,431045,112852 -h1,11310:6630773,34228604:0,0,0 -g1,11310:7626635,34228604 -g1,11310:10282267,34228604 -g1,11310:12605945,34228604 -g1,11310:12937899,34228604 -g1,11310:13601807,34228604 -g1,11310:15593531,34228604 -g1,11310:17585255,34228604 -g1,11310:19245025,34228604 -g1,11310:20904795,34228604 -g1,11310:22232611,34228604 -g1,11310:23892381,34228604 -g1,11310:25220197,34228604 -g1,11310:26548013,34228604 -g1,11310:27211921,34228604 -g1,11310:27875829,34228604 -h1,11310:28207783,34228604:0,0,0 -k1,11310:32583029,34228604:4375246 -g1,11310:32583029,34228604 -) -] -) -g1,11311:32583029,34341456 -g1,11311:6630773,34341456 -g1,11311:6630773,34341456 -g1,11311:32583029,34341456 -g1,11311:32583029,34341456 -) -h1,11311:6630773,34538064:0,0,0 -(1,11315:6630773,35403144:25952256,513147,126483 -h1,11314:6630773,35403144:983040,0,0 -k1,11314:8309802,35403144:218232 -k1,11314:9547120,35403144:218233 -k1,11314:11140953,35403144:218232 -k1,11314:12536212,35403144:218232 -k1,11314:13285942,35403144:218233 -k1,11314:14155602,35403144:218232 -k1,11314:15811039,35403144:218232 -(1,11314:15811039,35403144:0,452978,115847 -r1,11351:18279576,35403144:2468537,568825,115847 -k1,11314:15811039,35403144:-2468537 -) -(1,11314:15811039,35403144:2468537,452978,115847 -k1,11314:15811039,35403144:3277 -h1,11314:18276299,35403144:0,411205,112570 -) -k1,11314:18497809,35403144:218233 -k1,11314:19367469,35403144:218232 -(1,11314:19367469,35403144:0,452978,115847 -r1,11351:21836006,35403144:2468537,568825,115847 -k1,11314:19367469,35403144:-2468537 -) -(1,11314:19367469,35403144:2468537,452978,115847 -k1,11314:19367469,35403144:3277 -h1,11314:21832729,35403144:0,411205,112570 -) -k1,11314:22054238,35403144:218232 -k1,11314:22628331,35403144:218233 -(1,11314:22628331,35403144:0,452978,115847 -r1,11351:24041732,35403144:1413401,568825,115847 -k1,11314:22628331,35403144:-1413401 -) -(1,11314:22628331,35403144:1413401,452978,115847 -k1,11314:22628331,35403144:3277 -h1,11314:24038455,35403144:0,411205,112570 -) -k1,11314:24259964,35403144:218232 -k1,11314:25137488,35403144:218232 -k1,11314:28306807,35403144:218233 -k1,11314:31478747,35403144:218232 -k1,11314:32583029,35403144:0 -) -(1,11315:6630773,36268224:25952256,505283,134348 -g1,11314:7577768,36268224 -g1,11314:11568910,36268224 -g1,11314:13503532,36268224 -g1,11314:16877980,36268224 -k1,11315:32583029,36268224:12913216 -g1,11315:32583029,36268224 -) -v1,11317:6630773,36953079:0,393216,0 -(1,11351:6630773,45510161:25952256,8950298,196608 -g1,11351:6630773,45510161 -g1,11351:6630773,45510161 -g1,11351:6434165,45510161 -(1,11351:6434165,45510161:0,8950298,196608 -r1,11351:32779637,45510161:26345472,9146906,196608 -k1,11351:6434165,45510161:-26345472 -) -(1,11351:6434165,45510161:26345472,8950298,196608 -[1,11351:6630773,45510161:25952256,8753690,0 -(1,11319:6630773,37180910:25952256,424439,79822 -(1,11318:6630773,37180910:0,0,0 -g1,11318:6630773,37180910 -g1,11318:6630773,37180910 -g1,11318:6303093,37180910 -(1,11318:6303093,37180910:0,0,0 -) -g1,11318:6630773,37180910 -) -g1,11319:9286405,37180910 -g1,11319:10282267,37180910 -k1,11319:10282267,37180910:0 -h1,11319:12273991,37180910:0,0,0 -k1,11319:32583029,37180910:20309038 -g1,11319:32583029,37180910 -) -(1,11320:6630773,37865765:25952256,424439,106246 -h1,11320:6630773,37865765:0,0,0 -g1,11320:8954451,37865765 -g1,11320:9950313,37865765 -g1,11320:12273991,37865765 -g1,11320:12937899,37865765 -g1,11320:13933761,37865765 -g1,11320:14597669,37865765 -g1,11320:15261577,37865765 -g1,11320:15925485,37865765 -g1,11320:16589393,37865765 -g1,11320:17585255,37865765 -g1,11320:18249163,37865765 -g1,11320:18913071,37865765 -g1,11320:19576979,37865765 -g1,11320:20240887,37865765 -k1,11320:20240887,37865765:0 -h1,11320:22564565,37865765:0,0,0 -k1,11320:32583029,37865765:10018464 -g1,11320:32583029,37865765 -) -(1,11321:6630773,38550620:25952256,431045,112852 -h1,11321:6630773,38550620:0,0,0 -g1,11321:7958589,38550620 -g1,11321:8954451,38550620 -g1,11321:9950313,38550620 -g1,11321:14929622,38550620 -g1,11321:15593530,38550620 -g1,11321:18581115,38550620 -h1,11321:18913069,38550620:0,0,0 -k1,11321:32583029,38550620:13669960 -g1,11321:32583029,38550620 -) -(1,11322:6630773,39235475:25952256,424439,106246 -h1,11322:6630773,39235475:0,0,0 -g1,11322:6962727,39235475 -g1,11322:7294681,39235475 -g1,11322:11610082,39235475 -g1,11322:12605944,39235475 -g1,11322:17917207,39235475 -g1,11322:19576977,39235475 -g1,11322:20240885,39235475 -h1,11322:22896516,39235475:0,0,0 -k1,11322:32583029,39235475:9686513 -g1,11322:32583029,39235475 -) -(1,11323:6630773,39920330:25952256,424439,79822 -h1,11323:6630773,39920330:0,0,0 -h1,11323:6962727,39920330:0,0,0 -k1,11323:32583029,39920330:25620302 -g1,11323:32583029,39920330 -) -(1,11324:6630773,40605185:25952256,424439,86428 -h1,11324:6630773,40605185:0,0,0 -g1,11324:10946174,40605185 -g1,11324:14265713,40605185 -g1,11324:14929621,40605185 -h1,11324:15593529,40605185:0,0,0 -k1,11324:32583029,40605185:16989500 -g1,11324:32583029,40605185 -) -(1,11334:6630773,41314603:25952256,431045,9908 -(1,11326:6630773,41314603:0,0,0 -g1,11326:6630773,41314603 -g1,11326:6630773,41314603 -g1,11326:6303093,41314603 -(1,11326:6303093,41314603:0,0,0 -) -g1,11326:6630773,41314603 -) -g1,11334:7626635,41314603 -g1,11334:9286405,41314603 -g1,11334:10282267,41314603 -h1,11334:10614221,41314603:0,0,0 -k1,11334:32583029,41314603:21968808 -g1,11334:32583029,41314603 -) -(1,11334:6630773,41999458:25952256,431045,33029 -h1,11334:6630773,41999458:0,0,0 -g1,11334:7626635,41999458 -g1,11334:7958589,41999458 -g1,11334:8622497,41999458 -g1,11334:10614221,41999458 -g1,11334:11610083,41999458 -h1,11334:12273991,41999458:0,0,0 -k1,11334:32583029,41999458:20309038 -g1,11334:32583029,41999458 -) -(1,11334:6630773,42684313:25952256,424439,86428 -h1,11334:6630773,42684313:0,0,0 -g1,11334:7626635,42684313 -g1,11334:7958589,42684313 -g1,11334:8290543,42684313 -g1,11334:9618359,42684313 -g1,11334:12273991,42684313 -g1,11334:15593530,42684313 -g1,11334:16921346,42684313 -h1,11334:18249162,42684313:0,0,0 -k1,11334:32583029,42684313:14333867 -g1,11334:32583029,42684313 -) -(1,11334:6630773,43369168:25952256,431045,33029 -h1,11334:6630773,43369168:0,0,0 -g1,11334:7626635,43369168 -g1,11334:7958589,43369168 -g1,11334:8622497,43369168 -g1,11334:10614221,43369168 -g1,11334:11610083,43369168 -h1,11334:12273991,43369168:0,0,0 -k1,11334:32583029,43369168:20309038 -g1,11334:32583029,43369168 -) -(1,11334:6630773,44054023:25952256,424439,86428 -h1,11334:6630773,44054023:0,0,0 -g1,11334:7626635,44054023 -g1,11334:7958589,44054023 -g1,11334:8290543,44054023 -g1,11334:9618359,44054023 -g1,11334:12273991,44054023 -g1,11334:15593530,44054023 -g1,11334:16921346,44054023 -h1,11334:18249162,44054023:0,0,0 -k1,11334:32583029,44054023:14333867 -g1,11334:32583029,44054023 -) -(1,11334:6630773,44738878:25952256,431045,33029 -h1,11334:6630773,44738878:0,0,0 -g1,11334:7626635,44738878 -g1,11334:7958589,44738878 -g1,11334:8622497,44738878 -g1,11334:10614221,44738878 -g1,11334:11610083,44738878 -h1,11334:12273991,44738878:0,0,0 -k1,11334:32583029,44738878:20309038 -g1,11334:32583029,44738878 -) -(1,11334:6630773,45423733:25952256,424439,86428 -h1,11334:6630773,45423733:0,0,0 -g1,11334:7626635,45423733 -g1,11334:7958589,45423733 -g1,11334:8290543,45423733 -g1,11334:9618359,45423733 -g1,11334:12273991,45423733 -g1,11334:15593530,45423733 -g1,11334:16921346,45423733 -h1,11334:18249162,45423733:0,0,0 -k1,11334:32583029,45423733:14333867 -g1,11334:32583029,45423733 -) -] -) -g1,11351:32583029,45510161 -g1,11351:6630773,45510161 -g1,11351:6630773,45510161 -g1,11351:32583029,45510161 -g1,11351:32583029,45510161 -) -] -(1,11351:32583029,45706769:0,0,0 -g1,11351:32583029,45706769 -) -) -] -(1,11351:6630773,47279633:25952256,0,0 -h1,11351:6630773,47279633:25952256,0,0 -) -] -(1,11351:4262630,4025873:0,0,0 -[1,11351:-473656,4025873:0,0,0 -(1,11351:-473656,-710413:0,0,0 -(1,11351:-473656,-710413:0,0,0 -g1,11351:-473656,-710413 -) -g1,11351:-473656,-710413 -) -] -) -] -!29655 -}176 -Input:1899:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1900:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +r1,11350:37855564,49800853:1179648,16384,0 +) +) +k1,11350:3078556,49800853:-34777008 +) +] +g1,11350:6630773,4812305 +g1,11350:6630773,4812305 +g1,11350:8017514,4812305 +g1,11350:10735292,4812305 +g1,11350:12641079,4812305 +g1,11350:13456346,4812305 +g1,11350:15451261,4812305 +k1,11350:31387652,4812305:15936391 +) +) +] +[1,11350:6630773,45706769:25952256,40108032,0 +(1,11350:6630773,45706769:25952256,40108032,0 +(1,11350:6630773,45706769:0,0,0 +g1,11350:6630773,45706769 +) +[1,11350:6630773,45706769:25952256,40108032,0 +v1,11269:6630773,6254097:0,393216,0 +(1,11269:6630773,8677473:25952256,2816592,196608 +g1,11269:6630773,8677473 +g1,11269:6630773,8677473 +g1,11269:6434165,8677473 +(1,11269:6434165,8677473:0,2816592,196608 +r1,11350:32779637,8677473:26345472,3013200,196608 +k1,11269:6434165,8677473:-26345472 +) +(1,11269:6434165,8677473:26345472,2816592,196608 +[1,11269:6630773,8677473:25952256,2619984,0 +(1,11262:6630773,6481928:25952256,424439,79822 +h1,11262:6630773,6481928:0,0,0 +h1,11262:6962727,6481928:0,0,0 +k1,11262:32583029,6481928:25620302 +g1,11262:32583029,6481928 +) +(1,11263:6630773,7166783:25952256,424439,6605 +h1,11263:6630773,7166783:0,0,0 +h1,11263:8954451,7166783:0,0,0 +k1,11263:32583029,7166783:23628578 +g1,11263:32583029,7166783 +) +(1,11268:6630773,7982710:25952256,424439,112852 +(1,11265:6630773,7982710:0,0,0 +g1,11265:6630773,7982710 +g1,11265:6630773,7982710 +g1,11265:6303093,7982710 +(1,11265:6303093,7982710:0,0,0 +) +g1,11265:6630773,7982710 +) +g1,11268:7626635,7982710 +g1,11268:10282267,7982710 +g1,11268:12937899,7982710 +h1,11268:15261577,7982710:0,0,0 +k1,11268:32583029,7982710:17321452 +g1,11268:32583029,7982710 +) +(1,11268:6630773,8667565:25952256,407923,9908 +h1,11268:6630773,8667565:0,0,0 +g1,11268:7626635,8667565 +g1,11268:7958589,8667565 +g1,11268:8290543,8667565 +g1,11268:8622497,8667565 +g1,11268:8954451,8667565 +g1,11268:9286405,8667565 +g1,11268:9618359,8667565 +g1,11268:10282267,8667565 +g1,11268:10614221,8667565 +g1,11268:10946175,8667565 +g1,11268:11278129,8667565 +g1,11268:11610083,8667565 +g1,11268:11942037,8667565 +g1,11268:12273991,8667565 +g1,11268:12937899,8667565 +g1,11268:13269853,8667565 +g1,11268:13601807,8667565 +g1,11268:13933761,8667565 +g1,11268:14265715,8667565 +g1,11268:14597669,8667565 +g1,11268:14929623,8667565 +h1,11268:15261577,8667565:0,0,0 +k1,11268:32583029,8667565:17321452 +g1,11268:32583029,8667565 +) +] +) +g1,11269:32583029,8677473 +g1,11269:6630773,8677473 +g1,11269:6630773,8677473 +g1,11269:32583029,8677473 +g1,11269:32583029,8677473 +) +h1,11269:6630773,8874081:0,0,0 +(1,11273:6630773,9739161:25952256,513147,134348 +h1,11272:6630773,9739161:983040,0,0 +k1,11272:9309042,9739161:233776 +k1,11272:10074316,9739161:233777 +k1,11272:11078795,9739161:233776 +k1,11272:13973988,9739161:233776 +k1,11272:15943158,9739161:233777 +k1,11272:18164641,9739161:233776 +k1,11272:21445842,9739161:233777 +k1,11272:22307453,9739161:233776 +k1,11272:23560314,9739161:233776 +k1,11272:24997332,9739161:233777 +k1,11272:28066195,9739161:233776 +k1,11272:28655831,9739161:233776 +k1,11272:30304530,9739161:233777 +k1,11272:31069803,9739161:233776 +k1,11272:32583029,9739161:0 +) +(1,11273:6630773,10604241:25952256,513147,134348 +k1,11272:7519851,10604241:237650 +k1,11272:8444974,10604241:237650 +k1,11272:10337407,10604241:237649 +k1,11272:13066736,10604241:237650 +k1,11272:16318387,10604241:237650 +k1,11272:16911897,10604241:237650 +k1,11272:18143072,10604241:237649 +k1,11272:19040014,10604241:237650 +k1,11272:20990120,10604241:237650 +k1,11272:23719449,10604241:237650 +k1,11272:24426991,10604241:237649 +k1,11272:25196138,10604241:237650 +k1,11272:26500059,10604241:237650 +k1,11272:29367669,10604241:237650 +k1,11272:30256746,10604241:237649 +k1,11272:31931601,10604241:237650 +k1,11273:32583029,10604241:0 +) +(1,11273:6630773,11469321:25952256,513147,126483 +(1,11272:6630773,11469321:0,452978,115847 +r1,11350:9099310,11469321:2468537,568825,115847 +k1,11272:6630773,11469321:-2468537 +) +(1,11272:6630773,11469321:2468537,452978,115847 +k1,11272:6630773,11469321:3277 +h1,11272:9096033,11469321:0,411205,112570 +) +k1,11272:9383704,11469321:284394 +k1,11272:10871339,11469321:284394 +k1,11272:12149259,11469321:284394 +k1,11272:13092945,11469321:284394 +k1,11272:15089795,11469321:284394 +k1,11272:17865868,11469321:284394 +k1,11272:18836424,11469321:284394 +k1,11272:19578914,11469321:284393 +k1,11272:22264547,11469321:284394 +k1,11272:24000563,11469321:284394 +k1,11272:25997413,11469321:284394 +k1,11272:28269514,11469321:284394 +k1,11272:29240070,11469321:284394 +k1,11272:29880324,11469321:284394 +k1,11272:32583029,11469321:0 +) +(1,11273:6630773,12334401:25952256,505283,134348 +k1,11272:9831568,12334401:249709 +k1,11272:13153604,12334401:249708 +k1,11272:14054741,12334401:249709 +k1,11272:15092847,12334401:249708 +(1,11272:15092847,12334401:0,414482,115847 +r1,11350:15451113,12334401:358266,530329,115847 +k1,11272:15092847,12334401:-358266 +) +(1,11272:15092847,12334401:358266,414482,115847 +k1,11272:15092847,12334401:3277 +h1,11272:15447836,12334401:0,411205,112570 +) +k1,11272:15700822,12334401:249709 +k1,11272:19404934,12334401:249709 +k1,11272:20124535,12334401:249708 +k1,11272:20905741,12334401:249709 +k1,11272:23785410,12334401:249709 +k1,11272:24686546,12334401:249708 +k1,11272:25914708,12334401:249709 +k1,11272:28453589,12334401:249708 +k1,11272:29906539,12334401:249709 +k1,11272:32583029,12334401:0 +) +(1,11273:6630773,13199481:25952256,513147,134348 +k1,11272:8556827,13199481:190661 +k1,11272:11442984,13199481:190661 +(1,11272:11442984,13199481:0,452978,115847 +r1,11350:14614944,13199481:3171960,568825,115847 +k1,11272:11442984,13199481:-3171960 +) +(1,11272:11442984,13199481:3171960,452978,115847 +k1,11272:11442984,13199481:3277 +h1,11272:14611667,13199481:0,411205,112570 +) +k1,11272:14805605,13199481:190661 +k1,11272:15647694,13199481:190661 +k1,11272:16938049,13199481:190661 +(1,11272:16938049,13199481:0,452978,115847 +r1,11350:19406586,13199481:2468537,568825,115847 +k1,11272:16938049,13199481:-2468537 +) +(1,11272:16938049,13199481:2468537,452978,115847 +k1,11272:16938049,13199481:3277 +h1,11272:19403309,13199481:0,411205,112570 +) +k1,11272:19770917,13199481:190661 +k1,11272:22751446,13199481:190661 +(1,11272:22751446,13199481:0,452978,115847 +r1,11350:25923406,13199481:3171960,568825,115847 +k1,11272:22751446,13199481:-3171960 +) +(1,11272:22751446,13199481:3171960,452978,115847 +k1,11272:22751446,13199481:3277 +h1,11272:25920129,13199481:0,411205,112570 +) +k1,11272:26114067,13199481:190661 +k1,11272:28419575,13199481:190661 +k1,11272:29629321,13199481:190661 +k1,11272:32583029,13199481:0 +) +(1,11273:6630773,14064561:25952256,513147,134348 +k1,11272:7493075,14064561:203010 +k1,11272:8715170,14064561:203010 +k1,11272:9911707,14064561:203011 +k1,11272:12320004,14064561:203010 +k1,11272:13209176,14064561:203010 +k1,11272:14200584,14064561:203010 +k1,11272:16644926,14064561:203011 +k1,11272:19920264,14064561:203010 +k1,11272:20809436,14064561:203010 +k1,11272:24205360,14064561:203010 +k1,11272:27811000,14064561:203011 +k1,11272:28665438,14064561:203010 +k1,11272:29887533,14064561:203010 +k1,11272:32583029,14064561:0 +) +(1,11273:6630773,14929641:25952256,513147,134348 +k1,11272:8619222,14929641:250434 +k1,11272:10911101,14929641:250433 +k1,11272:12896928,14929641:250434 +k1,11272:14656000,14929641:250433 +k1,11272:16974750,14929641:250434 +k1,11272:17691144,14929641:250433 +k1,11272:20521075,14929641:250434 +(1,11272:20521075,14929641:0,452978,115847 +r1,11350:22989612,14929641:2468537,568825,115847 +k1,11272:20521075,14929641:-2468537 +) +(1,11272:20521075,14929641:2468537,452978,115847 +k1,11272:20521075,14929641:3277 +h1,11272:22986335,14929641:0,411205,112570 +) +k1,11272:23240045,14929641:250433 +k1,11272:25891718,14929641:250434 +k1,11272:29093237,14929641:250433 +k1,11272:32583029,14929641:0 +) +(1,11273:6630773,15794721:25952256,505283,126483 +g1,11272:7554830,15794721 +g1,11272:8773144,15794721 +g1,11272:11040689,15794721 +g1,11272:13645745,15794721 +g1,11272:14461012,15794721 +(1,11272:14461012,15794721:0,452978,115847 +r1,11350:16929549,15794721:2468537,568825,115847 +k1,11272:14461012,15794721:-2468537 +) +(1,11272:14461012,15794721:2468537,452978,115847 +k1,11272:14461012,15794721:3277 +h1,11272:16926272,15794721:0,411205,112570 +) +g1,11272:17128778,15794721 +g1,11272:18803222,15794721 +g1,11272:19653879,15794721 +g1,11272:20600874,15794721 +g1,11272:23575553,15794721 +g1,11272:25168733,15794721 +g1,11272:25723822,15794721 +g1,11272:27022745,15794721 +g1,11272:27873402,15794721 +(1,11272:27873402,15794721:0,452978,115847 +r1,11350:30693651,15794721:2820249,568825,115847 +k1,11272:27873402,15794721:-2820249 +) +(1,11272:27873402,15794721:2820249,452978,115847 +k1,11272:27873402,15794721:3277 +h1,11272:30690374,15794721:0,411205,112570 +) +k1,11273:32583029,15794721:1836950 +g1,11273:32583029,15794721 +) +v1,11275:6630773,16479576:0,393216,0 +(1,11310:6630773,34341456:25952256,18255096,196608 +g1,11310:6630773,34341456 +g1,11310:6630773,34341456 +g1,11310:6434165,34341456 +(1,11310:6434165,34341456:0,18255096,196608 +r1,11350:32779637,34341456:26345472,18451704,196608 +k1,11310:6434165,34341456:-26345472 +) +(1,11310:6434165,34341456:26345472,18255096,196608 +[1,11310:6630773,34341456:25952256,18058488,0 +(1,11277:6630773,16714013:25952256,431045,106246 +(1,11276:6630773,16714013:0,0,0 +g1,11276:6630773,16714013 +g1,11276:6630773,16714013 +g1,11276:6303093,16714013 +(1,11276:6303093,16714013:0,0,0 +) +g1,11276:6630773,16714013 +) +g1,11277:9286405,16714013 +g1,11277:10282267,16714013 +g1,11277:14597668,16714013 +g1,11277:15261576,16714013 +g1,11277:17253300,16714013 +g1,11277:17917208,16714013 +g1,11277:18581116,16714013 +g1,11277:20240886,16714013 +g1,11277:20904794,16714013 +g1,11277:24224334,16714013 +g1,11277:25220196,16714013 +h1,11277:26879966,16714013:0,0,0 +k1,11277:32583029,16714013:5703063 +g1,11277:32583029,16714013 +) +(1,11278:6630773,17398868:25952256,424439,79822 +h1,11278:6630773,17398868:0,0,0 +g1,11278:9286405,17398868 +g1,11278:10282267,17398868 +k1,11278:10282267,17398868:0 +h1,11278:12273991,17398868:0,0,0 +k1,11278:32583029,17398868:20309038 +g1,11278:32583029,17398868 +) +(1,11279:6630773,18083723:25952256,424439,112852 +h1,11279:6630773,18083723:0,0,0 +k1,11279:8874455,18083723:251958 +k1,11279:9790321,18083723:251958 +k1,11279:13693772,18083723:251957 +k1,11279:14277684,18083723:251958 +k1,11279:14861596,18083723:251958 +k1,11279:15445508,18083723:251958 +k1,11279:16361374,18083723:251958 +k1,11279:20264824,18083723:251957 +k1,11279:20848736,18083723:251958 +k1,11279:21432648,18083723:251958 +k1,11279:22016560,18083723:251958 +k1,11279:22600472,18083723:251958 +k1,11279:23184383,18083723:251957 +k1,11279:24100249,18083723:251958 +k1,11279:27339792,18083723:251958 +k1,11279:27923704,18083723:251958 +k1,11279:28507616,18083723:251958 +k1,11279:29091527,18083723:251957 +k1,11279:29675439,18083723:251958 +k1,11279:30259351,18083723:251958 +k1,11279:30259351,18083723:0 +h1,11279:32583029,18083723:0,0,0 +k1,11279:32583029,18083723:0 +k1,11279:32583029,18083723:0 +) +(1,11280:6630773,18768578:25952256,431045,79822 +h1,11280:6630773,18768578:0,0,0 +g1,11280:7958589,18768578 +g1,11280:8954451,18768578 +g1,11280:9950313,18768578 +g1,11280:14929622,18768578 +h1,11280:15261576,18768578:0,0,0 +k1,11280:32583028,18768578:17321452 +g1,11280:32583028,18768578 +) +(1,11281:6630773,19453433:25952256,424439,106246 +h1,11281:6630773,19453433:0,0,0 +g1,11281:6962727,19453433 +g1,11281:7294681,19453433 +g1,11281:11610082,19453433 +g1,11281:12605944,19453433 +g1,11281:17917207,19453433 +g1,11281:19576977,19453433 +g1,11281:20240885,19453433 +h1,11281:22896516,19453433:0,0,0 +k1,11281:32583029,19453433:9686513 +g1,11281:32583029,19453433 +) +(1,11282:6630773,20138288:25952256,424439,79822 +h1,11282:6630773,20138288:0,0,0 +h1,11282:6962727,20138288:0,0,0 +k1,11282:32583029,20138288:25620302 +g1,11282:32583029,20138288 +) +(1,11283:6630773,20823143:25952256,424439,86428 +h1,11283:6630773,20823143:0,0,0 +g1,11283:10946174,20823143 +g1,11283:14265713,20823143 +g1,11283:14929621,20823143 +h1,11283:15593529,20823143:0,0,0 +k1,11283:32583029,20823143:16989500 +g1,11283:32583029,20823143 +) +(1,11293:6630773,21639070:25952256,431045,9908 +(1,11285:6630773,21639070:0,0,0 +g1,11285:6630773,21639070 +g1,11285:6630773,21639070 +g1,11285:6303093,21639070 +(1,11285:6303093,21639070:0,0,0 +) +g1,11285:6630773,21639070 +) +g1,11293:7626635,21639070 +g1,11293:9286405,21639070 +g1,11293:10282267,21639070 +h1,11293:10614221,21639070:0,0,0 +k1,11293:32583029,21639070:21968808 +g1,11293:32583029,21639070 +) +(1,11293:6630773,22323925:25952256,431045,33029 +h1,11293:6630773,22323925:0,0,0 +g1,11293:7626635,22323925 +g1,11293:7958589,22323925 +g1,11293:8622497,22323925 +g1,11293:10946175,22323925 +g1,11293:11278129,22323925 +g1,11293:11610083,22323925 +g1,11293:11942037,22323925 +g1,11293:12273991,22323925 +g1,11293:14265715,22323925 +g1,11293:15261577,22323925 +h1,11293:15925485,22323925:0,0,0 +k1,11293:32583029,22323925:16657544 +g1,11293:32583029,22323925 +) +(1,11293:6630773,23008780:25952256,424439,86428 +h1,11293:6630773,23008780:0,0,0 +g1,11293:7626635,23008780 +g1,11293:7958589,23008780 +g1,11293:8290543,23008780 +g1,11293:9618359,23008780 +g1,11293:12273991,23008780 +g1,11293:15593530,23008780 +g1,11293:16921346,23008780 +h1,11293:18249162,23008780:0,0,0 +k1,11293:32583029,23008780:14333867 +g1,11293:32583029,23008780 +) +(1,11293:6630773,23693635:25952256,431045,112852 +h1,11293:6630773,23693635:0,0,0 +g1,11293:7626635,23693635 +g1,11293:7958589,23693635 +g1,11293:8622497,23693635 +g1,11293:14265714,23693635 +g1,11293:15261576,23693635 +h1,11293:15925484,23693635:0,0,0 +k1,11293:32583029,23693635:16657545 +g1,11293:32583029,23693635 +) +(1,11293:6630773,24378490:25952256,424439,86428 +h1,11293:6630773,24378490:0,0,0 +g1,11293:7626635,24378490 +g1,11293:7958589,24378490 +g1,11293:8290543,24378490 +g1,11293:9618359,24378490 +g1,11293:12273991,24378490 +g1,11293:15593530,24378490 +g1,11293:16921346,24378490 +h1,11293:18249162,24378490:0,0,0 +k1,11293:32583029,24378490:14333867 +g1,11293:32583029,24378490 +) +(1,11293:6630773,25063345:25952256,431045,106246 +h1,11293:6630773,25063345:0,0,0 +g1,11293:7626635,25063345 +g1,11293:7958589,25063345 +g1,11293:8622497,25063345 +g1,11293:11942036,25063345 +g1,11293:12273990,25063345 +g1,11293:14265714,25063345 +g1,11293:15261576,25063345 +h1,11293:15925484,25063345:0,0,0 +k1,11293:32583029,25063345:16657545 +g1,11293:32583029,25063345 +) +(1,11293:6630773,25748200:25952256,424439,86428 +h1,11293:6630773,25748200:0,0,0 +g1,11293:7626635,25748200 +g1,11293:7958589,25748200 +g1,11293:8290543,25748200 +g1,11293:9618359,25748200 +g1,11293:12273991,25748200 +g1,11293:15593530,25748200 +g1,11293:16921346,25748200 +h1,11293:18249162,25748200:0,0,0 +k1,11293:32583029,25748200:14333867 +g1,11293:32583029,25748200 +) +(1,11295:6630773,26564127:25952256,424439,86428 +(1,11294:6630773,26564127:0,0,0 +g1,11294:6630773,26564127 +g1,11294:6630773,26564127 +g1,11294:6303093,26564127 +(1,11294:6303093,26564127:0,0,0 +) +g1,11294:6630773,26564127 +) +k1,11295:6630773,26564127:0 +g1,11295:11610083,26564127 +k1,11295:11610083,26564127:0 +h1,11295:16921346,26564127:0,0,0 +k1,11295:32583029,26564127:15661683 +g1,11295:32583029,26564127 +) +(1,11309:6630773,27380054:25952256,431045,106246 +(1,11297:6630773,27380054:0,0,0 +g1,11297:6630773,27380054 +g1,11297:6630773,27380054 +g1,11297:6303093,27380054 +(1,11297:6303093,27380054:0,0,0 +) +g1,11297:6630773,27380054 +) +g1,11309:7626635,27380054 +g1,11309:10614220,27380054 +g1,11309:11610082,27380054 +g1,11309:14597667,27380054 +h1,11309:16257437,27380054:0,0,0 +k1,11309:32583029,27380054:16325592 +g1,11309:32583029,27380054 +) +(1,11309:6630773,28064909:25952256,398014,0 +h1,11309:6630773,28064909:0,0,0 +h1,11309:7294681,28064909:0,0,0 +k1,11309:32583029,28064909:25288348 +g1,11309:32583029,28064909 +) +(1,11309:6630773,28749764:25952256,424439,106246 +h1,11309:6630773,28749764:0,0,0 +g1,11309:7626635,28749764 +g1,11309:9618359,28749764 +g1,11309:10614221,28749764 +g1,11309:11278129,28749764 +g1,11309:11942037,28749764 +h1,11309:12273991,28749764:0,0,0 +k1,11309:32583029,28749764:20309038 +g1,11309:32583029,28749764 +) +(1,11309:6630773,29434619:25952256,424439,106246 +h1,11309:6630773,29434619:0,0,0 +g1,11309:7626635,29434619 +g1,11309:9618359,29434619 +g1,11309:10614221,29434619 +g1,11309:11278129,29434619 +g1,11309:11942037,29434619 +g1,11309:12605945,29434619 +g1,11309:13269853,29434619 +h1,11309:13601807,29434619:0,0,0 +k1,11309:32583029,29434619:18981222 +g1,11309:32583029,29434619 +) +(1,11309:6630773,30119474:25952256,424439,106246 +h1,11309:6630773,30119474:0,0,0 +g1,11309:7626635,30119474 +g1,11309:9618359,30119474 +g1,11309:10614221,30119474 +g1,11309:11278129,30119474 +g1,11309:11942037,30119474 +g1,11309:12605945,30119474 +g1,11309:13269853,30119474 +h1,11309:15261577,30119474:0,0,0 +k1,11309:32583029,30119474:17321452 +g1,11309:32583029,30119474 +) +(1,11309:6630773,30804329:25952256,431045,106246 +h1,11309:6630773,30804329:0,0,0 +g1,11309:7626635,30804329 +g1,11309:7958589,30804329 +g1,11309:8290543,30804329 +g1,11309:10614221,30804329 +g1,11309:10946175,30804329 +g1,11309:11278129,30804329 +g1,11309:11610083,30804329 +g1,11309:11942037,30804329 +g1,11309:13269853,30804329 +g1,11309:14265715,30804329 +g1,11309:15593531,30804329 +g1,11309:16589393,30804329 +g1,11309:17585255,30804329 +g1,11309:17917209,30804329 +g1,11309:18249163,30804329 +g1,11309:18581117,30804329 +g1,11309:18913071,30804329 +g1,11309:19245025,30804329 +g1,11309:19908933,30804329 +g1,11309:20240887,30804329 +g1,11309:20572841,30804329 +g1,11309:20904795,30804329 +k1,11309:20904795,30804329:0 +h1,11309:22896519,30804329:0,0,0 +k1,11309:32583029,30804329:9686510 +g1,11309:32583029,30804329 +) +(1,11309:6630773,31489184:25952256,407923,9908 +h1,11309:6630773,31489184:0,0,0 +g1,11309:7626635,31489184 +g1,11309:8290543,31489184 +g1,11309:8622497,31489184 +g1,11309:8954451,31489184 +g1,11309:9286405,31489184 +g1,11309:9618359,31489184 +g1,11309:9950313,31489184 +g1,11309:10614221,31489184 +h1,11309:12937899,31489184:0,0,0 +k1,11309:32583029,31489184:19645130 +g1,11309:32583029,31489184 +) +(1,11309:6630773,32174039:25952256,407923,9908 +h1,11309:6630773,32174039:0,0,0 +g1,11309:7626635,32174039 +g1,11309:8290543,32174039 +g1,11309:8622497,32174039 +g1,11309:8954451,32174039 +g1,11309:9286405,32174039 +g1,11309:9618359,32174039 +g1,11309:9950313,32174039 +g1,11309:10614221,32174039 +g1,11309:13269853,32174039 +g1,11309:14265715,32174039 +g1,11309:14597669,32174039 +g1,11309:14929623,32174039 +g1,11309:17585255,32174039 +g1,11309:19908933,32174039 +g1,11309:23228473,32174039 +h1,11309:24224335,32174039:0,0,0 +k1,11309:32583029,32174039:8358694 +g1,11309:32583029,32174039 +) +(1,11309:6630773,32858894:25952256,407923,9908 +h1,11309:6630773,32858894:0,0,0 +g1,11309:7626635,32858894 +g1,11309:8290543,32858894 +g1,11309:8622497,32858894 +g1,11309:8954451,32858894 +g1,11309:9286405,32858894 +g1,11309:9618359,32858894 +g1,11309:9950313,32858894 +g1,11309:10614221,32858894 +g1,11309:13269853,32858894 +g1,11309:13601807,32858894 +g1,11309:14265715,32858894 +g1,11309:14597669,32858894 +g1,11309:14929623,32858894 +g1,11309:15261577,32858894 +g1,11309:17585255,32858894 +g1,11309:19908933,32858894 +g1,11309:23228473,32858894 +h1,11309:24224335,32858894:0,0,0 +k1,11309:32583029,32858894:8358694 +g1,11309:32583029,32858894 +) +(1,11309:6630773,33543749:25952256,398014,0 +h1,11309:6630773,33543749:0,0,0 +g1,11309:7626635,33543749 +k1,11309:7626635,33543749:0 +h1,11309:8622497,33543749:0,0,0 +k1,11309:32583029,33543749:23960532 +g1,11309:32583029,33543749 +) +(1,11309:6630773,34228604:25952256,431045,112852 +h1,11309:6630773,34228604:0,0,0 +g1,11309:7626635,34228604 +g1,11309:10282267,34228604 +g1,11309:12605945,34228604 +g1,11309:12937899,34228604 +g1,11309:13601807,34228604 +g1,11309:15593531,34228604 +g1,11309:17585255,34228604 +g1,11309:19245025,34228604 +g1,11309:20904795,34228604 +g1,11309:22232611,34228604 +g1,11309:23892381,34228604 +g1,11309:25220197,34228604 +g1,11309:26548013,34228604 +g1,11309:27211921,34228604 +g1,11309:27875829,34228604 +h1,11309:28207783,34228604:0,0,0 +k1,11309:32583029,34228604:4375246 +g1,11309:32583029,34228604 +) +] +) +g1,11310:32583029,34341456 +g1,11310:6630773,34341456 +g1,11310:6630773,34341456 +g1,11310:32583029,34341456 +g1,11310:32583029,34341456 +) +h1,11310:6630773,34538064:0,0,0 +(1,11314:6630773,35403144:25952256,513147,126483 +h1,11313:6630773,35403144:983040,0,0 +k1,11313:8309802,35403144:218232 +k1,11313:9547120,35403144:218233 +k1,11313:11140953,35403144:218232 +k1,11313:12536212,35403144:218232 +k1,11313:13285942,35403144:218233 +k1,11313:14155602,35403144:218232 +k1,11313:15811039,35403144:218232 +(1,11313:15811039,35403144:0,452978,115847 +r1,11350:18279576,35403144:2468537,568825,115847 +k1,11313:15811039,35403144:-2468537 +) +(1,11313:15811039,35403144:2468537,452978,115847 +k1,11313:15811039,35403144:3277 +h1,11313:18276299,35403144:0,411205,112570 +) +k1,11313:18497809,35403144:218233 +k1,11313:19367469,35403144:218232 +(1,11313:19367469,35403144:0,452978,115847 +r1,11350:21836006,35403144:2468537,568825,115847 +k1,11313:19367469,35403144:-2468537 +) +(1,11313:19367469,35403144:2468537,452978,115847 +k1,11313:19367469,35403144:3277 +h1,11313:21832729,35403144:0,411205,112570 +) +k1,11313:22054238,35403144:218232 +k1,11313:22628331,35403144:218233 +(1,11313:22628331,35403144:0,452978,115847 +r1,11350:24041732,35403144:1413401,568825,115847 +k1,11313:22628331,35403144:-1413401 +) +(1,11313:22628331,35403144:1413401,452978,115847 +k1,11313:22628331,35403144:3277 +h1,11313:24038455,35403144:0,411205,112570 +) +k1,11313:24259964,35403144:218232 +k1,11313:25137488,35403144:218232 +k1,11313:28306807,35403144:218233 +k1,11313:31478747,35403144:218232 +k1,11313:32583029,35403144:0 +) +(1,11314:6630773,36268224:25952256,505283,134348 +g1,11313:7577768,36268224 +g1,11313:11568910,36268224 +g1,11313:13503532,36268224 +g1,11313:16877980,36268224 +k1,11314:32583029,36268224:12913216 +g1,11314:32583029,36268224 +) +v1,11316:6630773,36953079:0,393216,0 +(1,11350:6630773,45510161:25952256,8950298,196608 +g1,11350:6630773,45510161 +g1,11350:6630773,45510161 +g1,11350:6434165,45510161 +(1,11350:6434165,45510161:0,8950298,196608 +r1,11350:32779637,45510161:26345472,9146906,196608 +k1,11350:6434165,45510161:-26345472 +) +(1,11350:6434165,45510161:26345472,8950298,196608 +[1,11350:6630773,45510161:25952256,8753690,0 +(1,11318:6630773,37180910:25952256,424439,79822 +(1,11317:6630773,37180910:0,0,0 +g1,11317:6630773,37180910 +g1,11317:6630773,37180910 +g1,11317:6303093,37180910 +(1,11317:6303093,37180910:0,0,0 +) +g1,11317:6630773,37180910 +) +g1,11318:9286405,37180910 +g1,11318:10282267,37180910 +k1,11318:10282267,37180910:0 +h1,11318:12273991,37180910:0,0,0 +k1,11318:32583029,37180910:20309038 +g1,11318:32583029,37180910 +) +(1,11319:6630773,37865765:25952256,424439,106246 +h1,11319:6630773,37865765:0,0,0 +g1,11319:8954451,37865765 +g1,11319:9950313,37865765 +g1,11319:12273991,37865765 +g1,11319:12937899,37865765 +g1,11319:13933761,37865765 +g1,11319:14597669,37865765 +g1,11319:15261577,37865765 +g1,11319:15925485,37865765 +g1,11319:16589393,37865765 +g1,11319:17585255,37865765 +g1,11319:18249163,37865765 +g1,11319:18913071,37865765 +g1,11319:19576979,37865765 +g1,11319:20240887,37865765 +k1,11319:20240887,37865765:0 +h1,11319:22564565,37865765:0,0,0 +k1,11319:32583029,37865765:10018464 +g1,11319:32583029,37865765 +) +(1,11320:6630773,38550620:25952256,431045,112852 +h1,11320:6630773,38550620:0,0,0 +g1,11320:7958589,38550620 +g1,11320:8954451,38550620 +g1,11320:9950313,38550620 +g1,11320:14929622,38550620 +g1,11320:15593530,38550620 +g1,11320:18581115,38550620 +h1,11320:18913069,38550620:0,0,0 +k1,11320:32583029,38550620:13669960 +g1,11320:32583029,38550620 +) +(1,11321:6630773,39235475:25952256,424439,106246 +h1,11321:6630773,39235475:0,0,0 +g1,11321:6962727,39235475 +g1,11321:7294681,39235475 +g1,11321:11610082,39235475 +g1,11321:12605944,39235475 +g1,11321:17917207,39235475 +g1,11321:19576977,39235475 +g1,11321:20240885,39235475 +h1,11321:22896516,39235475:0,0,0 +k1,11321:32583029,39235475:9686513 +g1,11321:32583029,39235475 +) +(1,11322:6630773,39920330:25952256,424439,79822 +h1,11322:6630773,39920330:0,0,0 +h1,11322:6962727,39920330:0,0,0 +k1,11322:32583029,39920330:25620302 +g1,11322:32583029,39920330 +) +(1,11323:6630773,40605185:25952256,424439,86428 +h1,11323:6630773,40605185:0,0,0 +g1,11323:10946174,40605185 +g1,11323:14265713,40605185 +g1,11323:14929621,40605185 +h1,11323:15593529,40605185:0,0,0 +k1,11323:32583029,40605185:16989500 +g1,11323:32583029,40605185 +) +(1,11333:6630773,41314603:25952256,431045,9908 +(1,11325:6630773,41314603:0,0,0 +g1,11325:6630773,41314603 +g1,11325:6630773,41314603 +g1,11325:6303093,41314603 +(1,11325:6303093,41314603:0,0,0 +) +g1,11325:6630773,41314603 +) +g1,11333:7626635,41314603 +g1,11333:9286405,41314603 +g1,11333:10282267,41314603 +h1,11333:10614221,41314603:0,0,0 +k1,11333:32583029,41314603:21968808 +g1,11333:32583029,41314603 +) +(1,11333:6630773,41999458:25952256,431045,33029 +h1,11333:6630773,41999458:0,0,0 +g1,11333:7626635,41999458 +g1,11333:7958589,41999458 +g1,11333:8622497,41999458 +g1,11333:10614221,41999458 +g1,11333:11610083,41999458 +h1,11333:12273991,41999458:0,0,0 +k1,11333:32583029,41999458:20309038 +g1,11333:32583029,41999458 +) +(1,11333:6630773,42684313:25952256,424439,86428 +h1,11333:6630773,42684313:0,0,0 +g1,11333:7626635,42684313 +g1,11333:7958589,42684313 +g1,11333:8290543,42684313 +g1,11333:9618359,42684313 +g1,11333:12273991,42684313 +g1,11333:15593530,42684313 +g1,11333:16921346,42684313 +h1,11333:18249162,42684313:0,0,0 +k1,11333:32583029,42684313:14333867 +g1,11333:32583029,42684313 +) +(1,11333:6630773,43369168:25952256,431045,33029 +h1,11333:6630773,43369168:0,0,0 +g1,11333:7626635,43369168 +g1,11333:7958589,43369168 +g1,11333:8622497,43369168 +g1,11333:10614221,43369168 +g1,11333:11610083,43369168 +h1,11333:12273991,43369168:0,0,0 +k1,11333:32583029,43369168:20309038 +g1,11333:32583029,43369168 +) +(1,11333:6630773,44054023:25952256,424439,86428 +h1,11333:6630773,44054023:0,0,0 +g1,11333:7626635,44054023 +g1,11333:7958589,44054023 +g1,11333:8290543,44054023 +g1,11333:9618359,44054023 +g1,11333:12273991,44054023 +g1,11333:15593530,44054023 +g1,11333:16921346,44054023 +h1,11333:18249162,44054023:0,0,0 +k1,11333:32583029,44054023:14333867 +g1,11333:32583029,44054023 +) +(1,11333:6630773,44738878:25952256,431045,33029 +h1,11333:6630773,44738878:0,0,0 +g1,11333:7626635,44738878 +g1,11333:7958589,44738878 +g1,11333:8622497,44738878 +g1,11333:10614221,44738878 +g1,11333:11610083,44738878 +h1,11333:12273991,44738878:0,0,0 +k1,11333:32583029,44738878:20309038 +g1,11333:32583029,44738878 +) +(1,11333:6630773,45423733:25952256,424439,86428 +h1,11333:6630773,45423733:0,0,0 +g1,11333:7626635,45423733 +g1,11333:7958589,45423733 +g1,11333:8290543,45423733 +g1,11333:9618359,45423733 +g1,11333:12273991,45423733 +g1,11333:15593530,45423733 +g1,11333:16921346,45423733 +h1,11333:18249162,45423733:0,0,0 +k1,11333:32583029,45423733:14333867 +g1,11333:32583029,45423733 +) +] +) +g1,11350:32583029,45510161 +g1,11350:6630773,45510161 +g1,11350:6630773,45510161 +g1,11350:32583029,45510161 +g1,11350:32583029,45510161 +) +] +(1,11350:32583029,45706769:0,0,0 +g1,11350:32583029,45706769 +) +) +] +(1,11350:6630773,47279633:25952256,0,0 +h1,11350:6630773,47279633:25952256,0,0 +) +] +(1,11350:4262630,4025873:0,0,0 +[1,11350:-473656,4025873:0,0,0 +(1,11350:-473656,-710413:0,0,0 +(1,11350:-473656,-710413:0,0,0 +g1,11350:-473656,-710413 +) +g1,11350:-473656,-710413 +) +] +) +] +!29647 +}177 Input:1902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1903:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1904:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -203573,40 +203753,43 @@ Input:1905:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1906:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1907:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1908:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1909:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1910:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1911:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{177 -[1,11383:4262630,47279633:28320399,43253760,0 -(1,11383:4262630,4025873:0,0,0 -[1,11383:-473656,4025873:0,0,0 -(1,11383:-473656,-710413:0,0,0 -(1,11383:-473656,-644877:0,0,0 -k1,11383:-473656,-644877:-65536 +{178 +[1,11382:4262630,47279633:28320399,43253760,0 +(1,11382:4262630,4025873:0,0,0 +[1,11382:-473656,4025873:0,0,0 +(1,11382:-473656,-710413:0,0,0 +(1,11382:-473656,-644877:0,0,0 +k1,11382:-473656,-644877:-65536 ) -(1,11383:-473656,4736287:0,0,0 -k1,11383:-473656,4736287:5209943 +(1,11382:-473656,4736287:0,0,0 +k1,11382:-473656,4736287:5209943 ) -g1,11383:-473656,-710413 +g1,11382:-473656,-710413 ) ] ) -[1,11383:6630773,47279633:25952256,43253760,0 -[1,11383:6630773,4812305:25952256,786432,0 -(1,11383:6630773,4812305:25952256,505283,134348 -(1,11383:6630773,4812305:25952256,505283,134348 -g1,11383:3078558,4812305 -[1,11383:3078558,4812305:0,0,0 -(1,11383:3078558,2439708:0,1703936,0 -k1,11383:1358238,2439708:-1720320 +[1,11382:6630773,47279633:25952256,43253760,0 +[1,11382:6630773,4812305:25952256,786432,0 +(1,11382:6630773,4812305:25952256,505283,134348 +(1,11382:6630773,4812305:25952256,505283,134348 +g1,11382:3078558,4812305 +[1,11382:3078558,4812305:0,0,0 +(1,11382:3078558,2439708:0,1703936,0 +k1,11382:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11383:2537886,2439708:1179648,16384,0 +r1,11382:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11383:3078558,1915420:16384,1179648,0 +r1,11382:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -203616,16 +203799,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11383:3078558,4812305:0,0,0 -(1,11383:3078558,2439708:0,1703936,0 -g1,11383:29030814,2439708 -g1,11383:36135244,2439708 +[1,11382:3078558,4812305:0,0,0 +(1,11382:3078558,2439708:0,1703936,0 +g1,11382:29030814,2439708 +g1,11382:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11383:36151628,1915420:16384,1179648,0 +r1,11382:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -203634,25 +203817,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11383:37855564,2439708:1179648,16384,0 +r1,11382:37855564,2439708:1179648,16384,0 ) ) -k1,11383:3078556,2439708:-34777008 +k1,11382:3078556,2439708:-34777008 ) ] -[1,11383:3078558,4812305:0,0,0 -(1,11383:3078558,49800853:0,16384,2228224 -k1,11383:1358238,49800853:-1720320 +[1,11382:3078558,4812305:0,0,0 +(1,11382:3078558,49800853:0,16384,2228224 +k1,11382:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11383:2537886,49800853:1179648,16384,0 +r1,11382:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11383:3078558,51504789:16384,1179648,0 +r1,11382:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -203662,16 +203845,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11383:3078558,4812305:0,0,0 -(1,11383:3078558,49800853:0,16384,2228224 -g1,11383:29030814,49800853 -g1,11383:36135244,49800853 +[1,11382:3078558,4812305:0,0,0 +(1,11382:3078558,49800853:0,16384,2228224 +g1,11382:29030814,49800853 +g1,11382:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11383:36151628,51504789:16384,1179648,0 +r1,11382:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -203680,858 +203863,858 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11383:37855564,49800853:1179648,16384,0 -) -) -k1,11383:3078556,49800853:-34777008 -) -] -g1,11383:6630773,4812305 -k1,11383:21678495,4812305:13852345 -g1,11383:23301166,4812305 -g1,11383:24088253,4812305 -g1,11383:28572226,4812305 -g1,11383:29981905,4812305 -) -) -] -[1,11383:6630773,45706769:25952256,40108032,0 -(1,11383:6630773,45706769:25952256,40108032,0 -(1,11383:6630773,45706769:0,0,0 -g1,11383:6630773,45706769 -) -[1,11383:6630773,45706769:25952256,40108032,0 -v1,11351:6630773,6254097:0,393216,0 -(1,11351:6630773,14259257:25952256,8398376,196608 -g1,11351:6630773,14259257 -g1,11351:6630773,14259257 -g1,11351:6434165,14259257 -(1,11351:6434165,14259257:0,8398376,196608 -r1,11383:32779637,14259257:26345472,8594984,196608 -k1,11351:6434165,14259257:-26345472 -) -(1,11351:6434165,14259257:26345472,8398376,196608 -[1,11351:6630773,14259257:25952256,8201768,0 -(1,11336:6630773,6481928:25952256,424439,86428 -(1,11335:6630773,6481928:0,0,0 -g1,11335:6630773,6481928 -g1,11335:6630773,6481928 -g1,11335:6303093,6481928 -(1,11335:6303093,6481928:0,0,0 -) -g1,11335:6630773,6481928 -) -k1,11336:6630773,6481928:0 -g1,11336:11610083,6481928 -h1,11336:14265714,6481928:0,0,0 -k1,11336:32583030,6481928:18317316 -g1,11336:32583030,6481928 -) -(1,11350:6630773,7297855:25952256,431045,106246 -(1,11338:6630773,7297855:0,0,0 -g1,11338:6630773,7297855 -g1,11338:6630773,7297855 -g1,11338:6303093,7297855 -(1,11338:6303093,7297855:0,0,0 -) -g1,11338:6630773,7297855 -) -g1,11350:7626635,7297855 -g1,11350:10614220,7297855 -g1,11350:11610082,7297855 -g1,11350:14597667,7297855 -h1,11350:16257437,7297855:0,0,0 -k1,11350:32583029,7297855:16325592 -g1,11350:32583029,7297855 -) -(1,11350:6630773,7982710:25952256,398014,0 -h1,11350:6630773,7982710:0,0,0 -h1,11350:7294681,7982710:0,0,0 -k1,11350:32583029,7982710:25288348 -g1,11350:32583029,7982710 -) -(1,11350:6630773,8667565:25952256,424439,106246 -h1,11350:6630773,8667565:0,0,0 -g1,11350:7626635,8667565 -g1,11350:9618359,8667565 -g1,11350:10614221,8667565 -g1,11350:11278129,8667565 -g1,11350:11942037,8667565 -h1,11350:12273991,8667565:0,0,0 -k1,11350:32583029,8667565:20309038 -g1,11350:32583029,8667565 -) -(1,11350:6630773,9352420:25952256,424439,106246 -h1,11350:6630773,9352420:0,0,0 -g1,11350:7626635,9352420 -g1,11350:9618359,9352420 -g1,11350:10614221,9352420 -g1,11350:11278129,9352420 -g1,11350:11942037,9352420 -g1,11350:12605945,9352420 -g1,11350:13269853,9352420 -h1,11350:13601807,9352420:0,0,0 -k1,11350:32583029,9352420:18981222 -g1,11350:32583029,9352420 -) -(1,11350:6630773,10037275:25952256,424439,106246 -h1,11350:6630773,10037275:0,0,0 -g1,11350:7626635,10037275 -g1,11350:9618359,10037275 -g1,11350:10614221,10037275 -g1,11350:11278129,10037275 -g1,11350:11942037,10037275 -g1,11350:12605945,10037275 -g1,11350:13269853,10037275 -h1,11350:15261577,10037275:0,0,0 -k1,11350:32583029,10037275:17321452 -g1,11350:32583029,10037275 -) -(1,11350:6630773,10722130:25952256,431045,106246 -h1,11350:6630773,10722130:0,0,0 -g1,11350:7626635,10722130 -g1,11350:7958589,10722130 -g1,11350:8290543,10722130 -g1,11350:10614221,10722130 -g1,11350:10946175,10722130 -g1,11350:11278129,10722130 -g1,11350:11610083,10722130 -g1,11350:11942037,10722130 -g1,11350:13269853,10722130 -g1,11350:14265715,10722130 -g1,11350:15593531,10722130 -g1,11350:16589393,10722130 -g1,11350:17585255,10722130 -g1,11350:17917209,10722130 -g1,11350:18249163,10722130 -g1,11350:18581117,10722130 -g1,11350:18913071,10722130 -g1,11350:19245025,10722130 -g1,11350:19908933,10722130 -g1,11350:20240887,10722130 -g1,11350:20572841,10722130 -g1,11350:20904795,10722130 -k1,11350:20904795,10722130:0 -h1,11350:22896519,10722130:0,0,0 -k1,11350:32583029,10722130:9686510 -g1,11350:32583029,10722130 -) -(1,11350:6630773,11406985:25952256,407923,9908 -h1,11350:6630773,11406985:0,0,0 -g1,11350:7626635,11406985 -g1,11350:8290543,11406985 -g1,11350:8622497,11406985 -g1,11350:8954451,11406985 -g1,11350:9286405,11406985 -g1,11350:9618359,11406985 -g1,11350:9950313,11406985 -g1,11350:10614221,11406985 -h1,11350:12937899,11406985:0,0,0 -k1,11350:32583029,11406985:19645130 -g1,11350:32583029,11406985 -) -(1,11350:6630773,12091840:25952256,407923,9908 -h1,11350:6630773,12091840:0,0,0 -g1,11350:7626635,12091840 -g1,11350:8290543,12091840 -g1,11350:8622497,12091840 -g1,11350:8954451,12091840 -g1,11350:9286405,12091840 -g1,11350:9618359,12091840 -g1,11350:9950313,12091840 -g1,11350:10614221,12091840 -g1,11350:13269853,12091840 -g1,11350:14265715,12091840 -g1,11350:14597669,12091840 -g1,11350:14929623,12091840 -g1,11350:17585255,12091840 -g1,11350:19908933,12091840 -g1,11350:23228473,12091840 -h1,11350:24224335,12091840:0,0,0 -k1,11350:32583029,12091840:8358694 -g1,11350:32583029,12091840 -) -(1,11350:6630773,12776695:25952256,407923,9908 -h1,11350:6630773,12776695:0,0,0 -g1,11350:7626635,12776695 -g1,11350:8290543,12776695 -g1,11350:8622497,12776695 -g1,11350:8954451,12776695 -g1,11350:9286405,12776695 -g1,11350:9618359,12776695 -g1,11350:9950313,12776695 -g1,11350:10614221,12776695 -g1,11350:13269853,12776695 -g1,11350:13601807,12776695 -g1,11350:14265715,12776695 -g1,11350:14597669,12776695 -g1,11350:14929623,12776695 -g1,11350:15261577,12776695 -g1,11350:17585255,12776695 -g1,11350:19908933,12776695 -g1,11350:23228473,12776695 -h1,11350:24224335,12776695:0,0,0 -k1,11350:32583029,12776695:8358694 -g1,11350:32583029,12776695 -) -(1,11350:6630773,13461550:25952256,398014,0 -h1,11350:6630773,13461550:0,0,0 -g1,11350:7626635,13461550 -k1,11350:7626635,13461550:0 -h1,11350:8622497,13461550:0,0,0 -k1,11350:32583029,13461550:23960532 -g1,11350:32583029,13461550 -) -(1,11350:6630773,14146405:25952256,431045,112852 -h1,11350:6630773,14146405:0,0,0 -g1,11350:7626635,14146405 -g1,11350:10282267,14146405 -g1,11350:12605945,14146405 -g1,11350:12937899,14146405 -g1,11350:13601807,14146405 -g1,11350:15593531,14146405 -g1,11350:17585255,14146405 -g1,11350:19245025,14146405 -g1,11350:20904795,14146405 -g1,11350:22232611,14146405 -g1,11350:23892381,14146405 -g1,11350:25220197,14146405 -g1,11350:26548013,14146405 -g1,11350:27211921,14146405 -g1,11350:27875829,14146405 -h1,11350:28207783,14146405:0,0,0 -k1,11350:32583029,14146405:4375246 -g1,11350:32583029,14146405 -) -] -) -g1,11351:32583029,14259257 -g1,11351:6630773,14259257 -g1,11351:6630773,14259257 -g1,11351:32583029,14259257 -g1,11351:32583029,14259257 -) -h1,11351:6630773,14455865:0,0,0 -(1,11354:6630773,17287025:25952256,32768,229376 -(1,11354:6630773,17287025:0,32768,229376 -(1,11354:6630773,17287025:5505024,32768,229376 -r1,11383:12135797,17287025:5505024,262144,229376 -) -k1,11354:6630773,17287025:-5505024 -) -(1,11354:6630773,17287025:25952256,32768,0 -r1,11383:32583029,17287025:25952256,32768,0 -) -) -(1,11354:6630773,18918877:25952256,615776,151780 -(1,11354:6630773,18918877:2464678,573309,14155 -g1,11354:6630773,18918877 -g1,11354:9095451,18918877 -) -g1,11354:12724835,18918877 -g1,11354:15191873,18918877 -g1,11354:20480629,18918877 -g1,11354:21412551,18918877 -k1,11354:32583029,18918877:7210793 -g1,11354:32583029,18918877 -) -(1,11357:6630773,20177173:25952256,513147,134348 -k1,11356:8528696,20177173:144835 -k1,11356:11260236,20177173:144834 -k1,11356:12799022,20177173:144835 -k1,11356:14514754,20177173:144834 -k1,11356:16048952,20177173:144835 -k1,11356:17632302,20177173:144835 -k1,11356:18460021,20177173:144834 -k1,11356:20356633,20177173:144835 -k1,11356:22853555,20177173:144835 -k1,11356:24387752,20177173:144834 -k1,11356:25971102,20177173:144835 -k1,11356:27272646,20177173:144834 -k1,11356:30722462,20177173:144835 -k1,11356:32583029,20177173:0 -) -(1,11357:6630773,21042253:25952256,513147,126483 -k1,11356:7420110,21042253:137909 -k1,11356:8910682,21042253:137909 -k1,11356:13124275,21042253:137909 -k1,11356:14529650,21042253:137909 -k1,11356:17345360,21042253:137909 -k1,11356:18111104,21042253:137909 -k1,11356:18837526,21042253:137909 -k1,11356:21306551,21042253:137909 -(1,11356:21306551,21042253:0,459977,115847 -r1,11383:22368240,21042253:1061689,575824,115847 -k1,11356:21306551,21042253:-1061689 -) -(1,11356:21306551,21042253:1061689,459977,115847 -k1,11356:21306551,21042253:3277 -h1,11356:22364963,21042253:0,411205,112570 -) -k1,11356:22679819,21042253:137909 -(1,11356:22679819,21042253:0,452978,115847 -r1,11383:24444932,21042253:1765113,568825,115847 -k1,11356:22679819,21042253:-1765113 -) -(1,11356:22679819,21042253:1765113,452978,115847 -k1,11356:22679819,21042253:3277 -h1,11356:24441655,21042253:0,411205,112570 -) -k1,11356:24582841,21042253:137909 -k1,11356:25912195,21042253:137909 -(1,11356:25912195,21042253:0,414482,115847 -r1,11383:28029020,21042253:2116825,530329,115847 -k1,11356:25912195,21042253:-2116825 -) -(1,11356:25912195,21042253:2116825,414482,115847 -k1,11356:25912195,21042253:3277 -h1,11356:28025743,21042253:0,411205,112570 -) -k1,11356:28166929,21042253:137909 -k1,11356:29296398,21042253:137909 -k1,11356:32583029,21042253:0 -) -(1,11357:6630773,21907333:25952256,513147,134348 -k1,11356:10360951,21907333:231211 -k1,11356:11243590,21907333:231211 -k1,11356:12222567,21907333:231211 -k1,11356:14078416,21907333:231211 -k1,11356:17688008,21907333:231211 -k1,11356:21323813,21907333:231210 -k1,11356:22546584,21907333:231211 -k1,11356:23393833,21907333:231211 -k1,11356:25958126,21907333:231211 -k1,11356:30687073,21907333:231211 -k1,11356:32583029,21907333:0 -) -(1,11357:6630773,22772413:25952256,505283,134348 -k1,11356:7566278,22772413:141864 -k1,11356:11840841,22772413:141863 -k1,11356:13214782,22772413:141864 -k1,11356:14854798,22772413:141863 -h1,11356:15651716,22772413:0,0,0 -k1,11356:16000674,22772413:141864 -k1,11356:18429744,22772413:141863 -k1,11356:19857424,22772413:141864 -k1,11356:22045321,22772413:141863 -k1,11356:23683372,22772413:141864 -k1,11356:26411941,22772413:141863 -k1,11356:27011902,22772413:141864 -k1,11356:27685262,22772413:141863 -k1,11356:29411131,22772413:141864 -k1,11356:30204422,22772413:141863 -k1,11356:31438771,22772413:141864 -k1,11357:32583029,22772413:0 -) -(1,11357:6630773,23637493:25952256,505283,134348 -k1,11356:9920859,23637493:195476 -k1,11356:13154584,23637493:195476 -k1,11356:16153690,23637493:195476 -k1,11356:19793738,23637493:195476 -k1,11356:20798584,23637493:195476 -k1,11356:22013144,23637493:195475 -k1,11356:23749371,23637493:195476 -k1,11356:25690071,23637493:195476 -k1,11356:26989829,23637493:195476 -k1,11356:27933071,23637493:195476 -k1,11356:30847636,23637493:195476 -k1,11356:32583029,23637493:0 -) -(1,11357:6630773,24502573:25952256,513147,134348 -k1,11356:10069148,24502573:178615 -k1,11356:13523908,24502573:178615 -k1,11356:16953110,24502573:178616 -k1,11356:18924135,24502573:178615 -k1,11356:22128547,24502573:178615 -k1,11356:23539239,24502573:178615 -k1,11356:25996541,24502573:178615 -h1,11356:26967129,24502573:0,0,0 -k1,11356:27145744,24502573:178615 -k1,11356:28133730,24502573:178616 -k1,11356:29810498,24502573:178615 -h1,11356:31005875,24502573:0,0,0 -k1,11356:31391584,24502573:178615 -k1,11356:32583029,24502573:0 -) -(1,11357:6630773,25367653:25952256,513147,134348 -k1,11356:9860190,25367653:203620 -k1,11356:14487491,25367653:203621 -k1,11356:17996092,25367653:203620 -k1,11356:19712938,25367653:203620 -k1,11356:23321154,25367653:203621 -k1,11356:24756851,25367653:203620 -k1,11356:27239158,25367653:203620 -h1,11356:28209746,25367653:0,0,0 -k1,11356:28413366,25367653:203620 -k1,11356:29426357,25367653:203621 -k1,11356:31128130,25367653:203620 -h1,11356:32323507,25367653:0,0,0 -k1,11356:32583029,25367653:0 -) -(1,11357:6630773,26232733:25952256,513147,134348 -k1,11356:9882669,26232733:190054 -k1,11356:14148408,26232733:190055 -k1,11356:16199029,26232733:190054 -k1,11356:17040511,26232733:190054 -k1,11356:17978331,26232733:190054 -k1,11356:21002163,26232733:190055 -k1,11356:23481390,26232733:190054 -k1,11356:24690529,26232733:190054 -k1,11356:26653332,26232733:190054 -k1,11356:29519222,26232733:190055 -k1,11356:30325314,26232733:190054 -k1,11356:32583029,26232733:0 -) -(1,11357:6630773,27097813:25952256,513147,126483 -k1,11356:8718423,27097813:244122 -k1,11356:10632401,27097813:244121 -k1,11356:11562685,27097813:244122 -k1,11356:12422845,27097813:244122 -k1,11356:14268666,27097813:244121 -k1,11356:16210170,27097813:244122 -k1,11356:17552020,27097813:244122 -k1,11356:19126522,27097813:244121 -k1,11356:20796052,27097813:244122 -k1,11356:21571670,27097813:244121 -k1,11356:23465989,27097813:244122 -k1,11356:26351867,27097813:244122 -k1,11356:28038435,27097813:244121 -k1,11356:31358817,27097813:244122 -k1,11357:32583029,27097813:0 -) -(1,11357:6630773,27962893:25952256,513147,134348 -k1,11356:8229196,27962893:193331 -k1,11356:10021605,27962893:193331 -k1,11356:13149639,27962893:193332 -k1,11356:15078363,27962893:193331 -k1,11356:18549149,27962893:193331 -k1,11356:21819395,27962893:193331 -k1,11356:23204172,27962893:193332 -k1,11356:26590417,27962893:193331 -k1,11356:29809545,27962893:193331 -k1,11356:32583029,27962893:0 -) -(1,11357:6630773,28827973:25952256,513147,126483 -g1,11356:8802636,28827973 -g1,11356:11987685,28827973 -g1,11356:13677203,28827973 -g1,11356:15033142,28827973 -g1,11356:15763868,28827973 -g1,11356:18455431,28827973 -g1,11356:20048611,28827973 -k1,11357:32583029,28827973:10721692 -g1,11357:32583029,28827973 -) -(1,11359:6630773,29693053:25952256,513147,134348 -h1,11358:6630773,29693053:983040,0,0 -k1,11358:8684552,29693053:241709 -k1,11358:12959346,29693053:241708 -k1,11358:14220140,29693053:241709 -k1,11358:17867754,29693053:241708 -k1,11358:18768755,29693053:241709 -k1,11358:20029548,29693053:241708 -k1,11358:23787919,29693053:241709 -k1,11358:24645665,29693053:241708 -k1,11358:28963058,29693053:241709 -k1,11358:30489272,29693053:241708 -k1,11358:31835263,29693053:241709 -k1,11358:32583029,29693053:0 -) -(1,11359:6630773,30558133:25952256,513147,126483 -k1,11358:9905007,30558133:261544 -k1,11358:10379480,30558133:261481 -k1,11358:12154250,30558133:261544 -k1,11358:13101956,30558133:261544 -k1,11358:13719360,30558133:261544 -k1,11358:15287036,30558133:261543 -k1,11358:16915661,30558133:261544 -k1,11358:18196290,30558133:261544 -k1,11358:22521721,30558133:261544 -k1,11358:23442557,30558133:261544 -k1,11358:24723185,30558133:261543 -k1,11358:28501391,30558133:261544 -k1,11358:31398138,30558133:261544 -k1,11359:32583029,30558133:0 -) -(1,11359:6630773,31423213:25952256,513147,134348 -k1,11358:9077747,31423213:199744 -k1,11358:12093574,31423213:199745 -k1,11358:12909356,31423213:199744 -k1,11358:13464960,31423213:199744 -k1,11358:15816252,31423213:199745 -k1,11358:18387744,31423213:199744 -k1,11358:19238917,31423213:199745 -k1,11358:21746839,31423213:199744 -k1,11358:22605875,31423213:199744 -k1,11358:25149187,31423213:199745 -k1,11358:27772452,31423213:199744 -k1,11358:29539817,31423213:199744 -k1,11358:30536480,31423213:199745 -k1,11358:31387652,31423213:199744 -k1,11358:32583029,31423213:0 -) -(1,11359:6630773,32288293:25952256,513147,134348 -k1,11358:9073658,32288293:200898 -k1,11358:12090637,32288293:200897 -k1,11358:14483714,32288293:200898 -h1,11358:15454302,32288293:0,0,0 -k1,11358:16035964,32288293:200898 -k1,11358:16864697,32288293:200898 -k1,11358:19424890,32288293:200897 -k1,11358:21468660,32288293:200898 -k1,11358:22688643,32288293:200898 -k1,11358:26075901,32288293:200898 -k1,11358:26892836,32288293:200897 -k1,11358:31157621,32288293:200898 -k1,11358:32583029,32288293:0 -) -(1,11359:6630773,33153373:25952256,513147,134348 -k1,11358:7965202,33153373:153470 -k1,11358:9669909,33153373:153470 -k1,11358:12458582,33153373:153470 -k1,11358:14357276,33153373:153470 -k1,11358:15702191,33153373:153470 -k1,11358:19988361,33153373:153470 -k1,11358:21089481,33153373:153469 -k1,11358:23551129,33153373:153470 -k1,11358:24363891,33153373:153470 -k1,11358:25352945,33153373:153470 -k1,11358:26157843,33153373:153470 -k1,11358:28014399,33153373:153470 -k1,11358:30983951,33153373:153470 -k1,11358:32583029,33153373:0 -) -(1,11359:6630773,34018453:25952256,615216,126483 -$1,11358:8394347,34018453 -k1,11358:8938540,34018453:163429 -k1,11358:10174139,34018453:163430 -k1,11358:11356653,34018453:163429 -k1,11358:12989399,34018453:163429 -k1,11358:14908538,34018453:163429 -k1,11358:16576019,34018453:163430 -k1,11358:18093422,34018453:163429 -k1,11358:19941782,34018453:163429 -$1,11358:20148876,34018453 -k1,11358:20614467,34018453:67132 -k1,11358:21249796,34018453:67132 -(1,11358:22046714,33743172:709427,339935,8258 -) -$1,11358:22756141,34018453 -k1,11358:23359122,34018453:163430 -k1,11358:24383694,34018453:163429 -$1,11358:24383694,34018453 -k1,11358:25247744,34018453:67132 -k1,11358:25883073,34018453:67132 -(1,11358:26679991,33743172:709427,339935,8258 -) -$1,11358:27389418,34018453 -k1,11358:28373163,34018453:163429 -k1,11358:29578615,34018453:163430 -k1,11358:31438771,34018453:163429 -k1,11359:32583029,34018453:0 -) -(1,11359:6630773,34883533:25952256,513147,126483 -k1,11358:8237211,34883533:162680 -k1,11358:12786872,34883533:162681 -k1,11358:13608844,34883533:162680 -k1,11358:14127385,34883533:162681 -k1,11358:16267942,34883533:162680 -k1,11358:17082050,34883533:162680 -k1,11358:19320912,34883533:162681 -k1,11358:20502677,34883533:162680 -k1,11358:22838531,34883533:162680 -k1,11358:24745125,34883533:162681 -k1,11358:27070493,34883533:162680 -k1,11358:28042544,34883533:162681 -k1,11358:31391584,34883533:162680 -k1,11358:32583029,34883533:0 -) -(1,11359:6630773,35748613:25952256,505283,134348 -k1,11358:10950839,35748613:205061 -k1,11358:12549852,35748613:205062 -k1,11358:13773998,35748613:205061 -k1,11358:17193600,35748613:205061 -k1,11358:20145276,35748613:205062 -(1,11358:20145276,35748613:0,452978,115847 -r1,11383:21206966,35748613:1061690,568825,115847 -k1,11358:20145276,35748613:-1061690 -) -(1,11358:20145276,35748613:1061690,452978,115847 -g1,11358:20851977,35748613 -h1,11358:21203689,35748613:0,411205,112570 -) -k1,11358:21412027,35748613:205061 -k1,11358:24297511,35748613:205061 -k1,11358:25896523,35748613:205061 -k1,11358:27120670,35748613:205062 -k1,11358:29306884,35748613:205061 -k1,11358:32583029,35748613:0 -) -(1,11359:6630773,36613693:25952256,513147,134348 -k1,11358:9625382,36613693:247995 -(1,11358:9625382,36613693:0,414482,115847 -r1,11383:9983648,36613693:358266,530329,115847 -k1,11358:9625382,36613693:-358266 -) -(1,11358:9625382,36613693:358266,414482,115847 -k1,11358:9625382,36613693:3277 -h1,11358:9980371,36613693:0,411205,112570 -) -k1,11358:10231642,36613693:247994 -k1,11358:11686810,36613693:247995 -k1,11358:12953889,36613693:247994 -k1,11358:15517926,36613693:247995 -k1,11358:17598308,36613693:247995 -k1,11358:19821557,36613693:247994 -k1,11358:20720980,36613693:247995 -k1,11358:21716741,36613693:247995 -k1,11358:22320595,36613693:247994 -k1,11358:25882090,36613693:247995 -k1,11358:29056267,36613693:247994 -k1,11358:30251913,36613693:247995 -k1,11358:32583029,36613693:0 -) -(1,11359:6630773,37478773:25952256,513147,134348 -k1,11358:8815844,37478773:266177 -k1,11358:9768183,37478773:266177 -k1,11358:11053445,37478773:266177 -k1,11358:13842758,37478773:266177 -k1,11358:15534343,37478773:266177 -k1,11358:17007693,37478773:266177 -k1,11358:19246503,37478773:266176 -k1,11358:23519551,37478773:266177 -k1,11358:24445020,37478773:266177 -k1,11358:25730282,37478773:266177 -k1,11358:28009725,37478773:266177 -k1,11358:28935194,37478773:266177 -k1,11358:30898098,37478773:266177 -k1,11358:32583029,37478773:0 -) -(1,11359:6630773,38343853:25952256,426639,7863 -k1,11359:32583028,38343853:23609344 -g1,11359:32583028,38343853 -) -(1,11361:6630773,39208933:25952256,513147,134348 -h1,11360:6630773,39208933:983040,0,0 -k1,11360:8812293,39208933:156458 -k1,11360:11276928,39208933:156457 -k1,11360:12092678,39208933:156458 -k1,11360:14350681,39208933:156458 -k1,11360:15190024,39208933:156458 -k1,11360:16996678,39208933:156457 -k1,11360:19969218,39208933:156458 -k1,11360:21780460,39208933:156458 -k1,11360:23144090,39208933:156457 -k1,11360:24676149,39208933:156458 -k1,11360:25188467,39208933:156458 -k1,11360:26698899,39208933:156458 -k1,11360:28571744,39208933:156457 -k1,11360:31966991,39208933:156458 -k1,11360:32583029,39208933:0 -) -(1,11361:6630773,40074013:25952256,513147,134348 -k1,11360:8609813,40074013:243647 -k1,11360:11548956,40074013:243647 -(1,11360:11548956,40074013:0,459977,115847 -r1,11383:13665781,40074013:2116825,575824,115847 -k1,11360:11548956,40074013:-2116825 -) -(1,11360:11548956,40074013:2116825,459977,115847 -k1,11360:11548956,40074013:3277 -h1,11360:13662504,40074013:0,411205,112570 -) -k1,11360:13909428,40074013:243647 -k1,11360:15540472,40074013:243647 -k1,11360:17519511,40074013:243646 -k1,11360:21040613,40074013:243647 -k1,11360:24560405,40074013:243647 -k1,11360:25995497,40074013:243647 -k1,11360:29453685,40074013:243647 -k1,11360:32583029,40074013:0 -) -(1,11361:6630773,40939093:25952256,513147,126483 -k1,11360:7956497,40939093:283702 -(1,11360:7956497,40939093:0,452978,115847 -r1,11383:9721610,40939093:1765113,568825,115847 -k1,11360:7956497,40939093:-1765113 -) -(1,11360:7956497,40939093:1765113,452978,115847 -k1,11360:7956497,40939093:3277 -h1,11360:9718333,40939093:0,411205,112570 -) -k1,11360:10005313,40939093:283703 -k1,11360:11480460,40939093:283702 -(1,11360:11480460,40939093:0,459977,115847 -r1,11383:12542149,40939093:1061689,575824,115847 -k1,11360:11480460,40939093:-1061689 -) -(1,11360:11480460,40939093:1061689,459977,115847 -k1,11360:11480460,40939093:3277 -h1,11360:12538872,40939093:0,411205,112570 -) -k1,11360:12825851,40939093:283702 -k1,11360:14854778,40939093:283703 -k1,11360:19525460,40939093:283702 -k1,11360:20468454,40939093:283702 -k1,11360:21771241,40939093:283702 -k1,11360:24032821,40939093:283703 -k1,11360:24967951,40939093:283702 -k1,11360:27327834,40939093:283702 -k1,11360:29784711,40939093:283703 -k1,11360:31812326,40939093:283702 -k1,11360:32583029,40939093:0 -) -(1,11361:6630773,41804173:25952256,513147,134348 -k1,11360:10124060,41804173:283989 -k1,11360:13594409,41804173:283989 -$1,11360:13801503,41804173 -$1,11360:14768159,41804173 -k1,11360:15052148,41804173:283989 -k1,11360:15987565,41804173:283989 -$1,11360:15987565,41804173 -$1,11360:16954221,41804173 -k1,11360:17618974,41804173:283989 -k1,11360:19762219,41804173:283989 -k1,11360:20662246,41804173:283989 -k1,11360:21965320,41804173:283989 -k1,11360:23616390,41804173:283989 -k1,11360:24567535,41804173:283989 -(1,11360:24567535,41804173:0,459977,115847 -r1,11383:25629224,41804173:1061689,575824,115847 -k1,11360:24567535,41804173:-1061689 -) -(1,11360:24567535,41804173:1061689,459977,115847 -k1,11360:24567535,41804173:3277 -h1,11360:25625947,41804173:0,411205,112570 -) -k1,11360:26086883,41804173:283989 -k1,11360:29305574,41804173:283989 -k1,11360:32583029,41804173:0 -) -(1,11361:6630773,42669253:25952256,513147,126483 -k1,11360:9867654,42669253:159966 -k1,11360:11219065,42669253:159966 -k1,11360:14074527,42669253:159966 -(1,11360:14074527,42669253:0,459977,115847 -r1,11383:16191352,42669253:2116825,575824,115847 -k1,11360:14074527,42669253:-2116825 -) -(1,11360:14074527,42669253:2116825,459977,115847 -k1,11360:14074527,42669253:3277 -h1,11360:16188075,42669253:0,411205,112570 -) -k1,11360:16351318,42669253:159966 -k1,11360:19506935,42669253:159966 -k1,11360:21639536,42669253:159967 -$1,11360:21639536,42669253 -$1,11360:23004651,42669253 -k1,11360:23164617,42669253:159966 -k1,11360:25168111,42669253:159966 -k1,11360:26770524,42669253:159966 -k1,11360:27949575,42669253:159966 -k1,11360:30251913,42669253:159966 -k1,11360:32583029,42669253:0 -) -(1,11361:6630773,43534333:25952256,505283,134348 -k1,11360:8464471,43534333:245105 -k1,11360:9751597,43534333:245104 -k1,11360:11015787,43534333:245105 -k1,11360:13285298,43534333:245104 -k1,11360:15838581,43534333:245105 -k1,11360:17102771,43534333:245105 -k1,11360:18773283,43534333:245104 -k1,11360:22057948,43534333:245105 -k1,11360:24465740,43534333:245104 -k1,11360:27089802,43534333:245105 -k1,11360:28728857,43534333:245104 -k1,11360:30482601,43534333:245105 -k1,11360:32583029,43534333:0 -) -(1,11361:6630773,44399413:25952256,513147,126483 -k1,11360:8180819,44399413:182309 -k1,11360:10565138,44399413:182309 -k1,11360:12775786,44399413:182309 -k1,11360:13905746,44399413:182309 -k1,11360:15107140,44399413:182309 -k1,11360:18051793,44399413:182310 -k1,11360:22069924,44399413:182309 -k1,11360:24780612,44399413:182309 -k1,11360:25622213,44399413:182309 -k1,11360:26823607,44399413:182309 -k1,11360:31069803,44399413:182309 -k1,11360:32583029,44399413:0 -) -(1,11361:6630773,45264493:25952256,513147,126483 -g1,11360:7777653,45264493 -g1,11360:9180123,45264493 -g1,11360:12214439,45264493 -g1,11360:14591430,45264493 -g1,11360:17816456,45264493 -g1,11360:19784502,45264493 -g1,11360:21050002,45264493 -g1,11360:21996997,45264493 -k1,11361:32583029,45264493:9020377 -g1,11361:32583029,45264493 -) -] -(1,11383:32583029,45706769:0,0,0 -g1,11383:32583029,45706769 -) -) -] -(1,11383:6630773,47279633:25952256,0,0 -h1,11383:6630773,47279633:25952256,0,0 -) -] -(1,11383:4262630,4025873:0,0,0 -[1,11383:-473656,4025873:0,0,0 -(1,11383:-473656,-710413:0,0,0 -(1,11383:-473656,-710413:0,0,0 -g1,11383:-473656,-710413 -) -g1,11383:-473656,-710413 +r1,11382:37855564,49800853:1179648,16384,0 +) +) +k1,11382:3078556,49800853:-34777008 +) +] +g1,11382:6630773,4812305 +k1,11382:21678495,4812305:13852345 +g1,11382:23301166,4812305 +g1,11382:24088253,4812305 +g1,11382:28572226,4812305 +g1,11382:29981905,4812305 +) +) +] +[1,11382:6630773,45706769:25952256,40108032,0 +(1,11382:6630773,45706769:25952256,40108032,0 +(1,11382:6630773,45706769:0,0,0 +g1,11382:6630773,45706769 +) +[1,11382:6630773,45706769:25952256,40108032,0 +v1,11350:6630773,6254097:0,393216,0 +(1,11350:6630773,14259257:25952256,8398376,196608 +g1,11350:6630773,14259257 +g1,11350:6630773,14259257 +g1,11350:6434165,14259257 +(1,11350:6434165,14259257:0,8398376,196608 +r1,11382:32779637,14259257:26345472,8594984,196608 +k1,11350:6434165,14259257:-26345472 +) +(1,11350:6434165,14259257:26345472,8398376,196608 +[1,11350:6630773,14259257:25952256,8201768,0 +(1,11335:6630773,6481928:25952256,424439,86428 +(1,11334:6630773,6481928:0,0,0 +g1,11334:6630773,6481928 +g1,11334:6630773,6481928 +g1,11334:6303093,6481928 +(1,11334:6303093,6481928:0,0,0 +) +g1,11334:6630773,6481928 +) +k1,11335:6630773,6481928:0 +g1,11335:11610083,6481928 +h1,11335:14265714,6481928:0,0,0 +k1,11335:32583030,6481928:18317316 +g1,11335:32583030,6481928 +) +(1,11349:6630773,7297855:25952256,431045,106246 +(1,11337:6630773,7297855:0,0,0 +g1,11337:6630773,7297855 +g1,11337:6630773,7297855 +g1,11337:6303093,7297855 +(1,11337:6303093,7297855:0,0,0 +) +g1,11337:6630773,7297855 +) +g1,11349:7626635,7297855 +g1,11349:10614220,7297855 +g1,11349:11610082,7297855 +g1,11349:14597667,7297855 +h1,11349:16257437,7297855:0,0,0 +k1,11349:32583029,7297855:16325592 +g1,11349:32583029,7297855 +) +(1,11349:6630773,7982710:25952256,398014,0 +h1,11349:6630773,7982710:0,0,0 +h1,11349:7294681,7982710:0,0,0 +k1,11349:32583029,7982710:25288348 +g1,11349:32583029,7982710 +) +(1,11349:6630773,8667565:25952256,424439,106246 +h1,11349:6630773,8667565:0,0,0 +g1,11349:7626635,8667565 +g1,11349:9618359,8667565 +g1,11349:10614221,8667565 +g1,11349:11278129,8667565 +g1,11349:11942037,8667565 +h1,11349:12273991,8667565:0,0,0 +k1,11349:32583029,8667565:20309038 +g1,11349:32583029,8667565 +) +(1,11349:6630773,9352420:25952256,424439,106246 +h1,11349:6630773,9352420:0,0,0 +g1,11349:7626635,9352420 +g1,11349:9618359,9352420 +g1,11349:10614221,9352420 +g1,11349:11278129,9352420 +g1,11349:11942037,9352420 +g1,11349:12605945,9352420 +g1,11349:13269853,9352420 +h1,11349:13601807,9352420:0,0,0 +k1,11349:32583029,9352420:18981222 +g1,11349:32583029,9352420 +) +(1,11349:6630773,10037275:25952256,424439,106246 +h1,11349:6630773,10037275:0,0,0 +g1,11349:7626635,10037275 +g1,11349:9618359,10037275 +g1,11349:10614221,10037275 +g1,11349:11278129,10037275 +g1,11349:11942037,10037275 +g1,11349:12605945,10037275 +g1,11349:13269853,10037275 +h1,11349:15261577,10037275:0,0,0 +k1,11349:32583029,10037275:17321452 +g1,11349:32583029,10037275 +) +(1,11349:6630773,10722130:25952256,431045,106246 +h1,11349:6630773,10722130:0,0,0 +g1,11349:7626635,10722130 +g1,11349:7958589,10722130 +g1,11349:8290543,10722130 +g1,11349:10614221,10722130 +g1,11349:10946175,10722130 +g1,11349:11278129,10722130 +g1,11349:11610083,10722130 +g1,11349:11942037,10722130 +g1,11349:13269853,10722130 +g1,11349:14265715,10722130 +g1,11349:15593531,10722130 +g1,11349:16589393,10722130 +g1,11349:17585255,10722130 +g1,11349:17917209,10722130 +g1,11349:18249163,10722130 +g1,11349:18581117,10722130 +g1,11349:18913071,10722130 +g1,11349:19245025,10722130 +g1,11349:19908933,10722130 +g1,11349:20240887,10722130 +g1,11349:20572841,10722130 +g1,11349:20904795,10722130 +k1,11349:20904795,10722130:0 +h1,11349:22896519,10722130:0,0,0 +k1,11349:32583029,10722130:9686510 +g1,11349:32583029,10722130 +) +(1,11349:6630773,11406985:25952256,407923,9908 +h1,11349:6630773,11406985:0,0,0 +g1,11349:7626635,11406985 +g1,11349:8290543,11406985 +g1,11349:8622497,11406985 +g1,11349:8954451,11406985 +g1,11349:9286405,11406985 +g1,11349:9618359,11406985 +g1,11349:9950313,11406985 +g1,11349:10614221,11406985 +h1,11349:12937899,11406985:0,0,0 +k1,11349:32583029,11406985:19645130 +g1,11349:32583029,11406985 +) +(1,11349:6630773,12091840:25952256,407923,9908 +h1,11349:6630773,12091840:0,0,0 +g1,11349:7626635,12091840 +g1,11349:8290543,12091840 +g1,11349:8622497,12091840 +g1,11349:8954451,12091840 +g1,11349:9286405,12091840 +g1,11349:9618359,12091840 +g1,11349:9950313,12091840 +g1,11349:10614221,12091840 +g1,11349:13269853,12091840 +g1,11349:14265715,12091840 +g1,11349:14597669,12091840 +g1,11349:14929623,12091840 +g1,11349:17585255,12091840 +g1,11349:19908933,12091840 +g1,11349:23228473,12091840 +h1,11349:24224335,12091840:0,0,0 +k1,11349:32583029,12091840:8358694 +g1,11349:32583029,12091840 +) +(1,11349:6630773,12776695:25952256,407923,9908 +h1,11349:6630773,12776695:0,0,0 +g1,11349:7626635,12776695 +g1,11349:8290543,12776695 +g1,11349:8622497,12776695 +g1,11349:8954451,12776695 +g1,11349:9286405,12776695 +g1,11349:9618359,12776695 +g1,11349:9950313,12776695 +g1,11349:10614221,12776695 +g1,11349:13269853,12776695 +g1,11349:13601807,12776695 +g1,11349:14265715,12776695 +g1,11349:14597669,12776695 +g1,11349:14929623,12776695 +g1,11349:15261577,12776695 +g1,11349:17585255,12776695 +g1,11349:19908933,12776695 +g1,11349:23228473,12776695 +h1,11349:24224335,12776695:0,0,0 +k1,11349:32583029,12776695:8358694 +g1,11349:32583029,12776695 +) +(1,11349:6630773,13461550:25952256,398014,0 +h1,11349:6630773,13461550:0,0,0 +g1,11349:7626635,13461550 +k1,11349:7626635,13461550:0 +h1,11349:8622497,13461550:0,0,0 +k1,11349:32583029,13461550:23960532 +g1,11349:32583029,13461550 +) +(1,11349:6630773,14146405:25952256,431045,112852 +h1,11349:6630773,14146405:0,0,0 +g1,11349:7626635,14146405 +g1,11349:10282267,14146405 +g1,11349:12605945,14146405 +g1,11349:12937899,14146405 +g1,11349:13601807,14146405 +g1,11349:15593531,14146405 +g1,11349:17585255,14146405 +g1,11349:19245025,14146405 +g1,11349:20904795,14146405 +g1,11349:22232611,14146405 +g1,11349:23892381,14146405 +g1,11349:25220197,14146405 +g1,11349:26548013,14146405 +g1,11349:27211921,14146405 +g1,11349:27875829,14146405 +h1,11349:28207783,14146405:0,0,0 +k1,11349:32583029,14146405:4375246 +g1,11349:32583029,14146405 +) +] +) +g1,11350:32583029,14259257 +g1,11350:6630773,14259257 +g1,11350:6630773,14259257 +g1,11350:32583029,14259257 +g1,11350:32583029,14259257 +) +h1,11350:6630773,14455865:0,0,0 +(1,11353:6630773,17287025:25952256,32768,229376 +(1,11353:6630773,17287025:0,32768,229376 +(1,11353:6630773,17287025:5505024,32768,229376 +r1,11382:12135797,17287025:5505024,262144,229376 +) +k1,11353:6630773,17287025:-5505024 +) +(1,11353:6630773,17287025:25952256,32768,0 +r1,11382:32583029,17287025:25952256,32768,0 +) +) +(1,11353:6630773,18918877:25952256,615776,151780 +(1,11353:6630773,18918877:2464678,573309,14155 +g1,11353:6630773,18918877 +g1,11353:9095451,18918877 +) +g1,11353:12724835,18918877 +g1,11353:15191873,18918877 +g1,11353:20480629,18918877 +g1,11353:21412551,18918877 +k1,11353:32583029,18918877:7210793 +g1,11353:32583029,18918877 +) +(1,11356:6630773,20177173:25952256,513147,134348 +k1,11355:8528696,20177173:144835 +k1,11355:11260236,20177173:144834 +k1,11355:12799022,20177173:144835 +k1,11355:14514754,20177173:144834 +k1,11355:16048952,20177173:144835 +k1,11355:17632302,20177173:144835 +k1,11355:18460021,20177173:144834 +k1,11355:20356633,20177173:144835 +k1,11355:22853555,20177173:144835 +k1,11355:24387752,20177173:144834 +k1,11355:25971102,20177173:144835 +k1,11355:27272646,20177173:144834 +k1,11355:30722462,20177173:144835 +k1,11355:32583029,20177173:0 +) +(1,11356:6630773,21042253:25952256,513147,126483 +k1,11355:7420110,21042253:137909 +k1,11355:8910682,21042253:137909 +k1,11355:13124275,21042253:137909 +k1,11355:14529650,21042253:137909 +k1,11355:17345360,21042253:137909 +k1,11355:18111104,21042253:137909 +k1,11355:18837526,21042253:137909 +k1,11355:21306551,21042253:137909 +(1,11355:21306551,21042253:0,459977,115847 +r1,11382:22368240,21042253:1061689,575824,115847 +k1,11355:21306551,21042253:-1061689 +) +(1,11355:21306551,21042253:1061689,459977,115847 +k1,11355:21306551,21042253:3277 +h1,11355:22364963,21042253:0,411205,112570 +) +k1,11355:22679819,21042253:137909 +(1,11355:22679819,21042253:0,452978,115847 +r1,11382:24444932,21042253:1765113,568825,115847 +k1,11355:22679819,21042253:-1765113 +) +(1,11355:22679819,21042253:1765113,452978,115847 +k1,11355:22679819,21042253:3277 +h1,11355:24441655,21042253:0,411205,112570 +) +k1,11355:24582841,21042253:137909 +k1,11355:25912195,21042253:137909 +(1,11355:25912195,21042253:0,414482,115847 +r1,11382:28029020,21042253:2116825,530329,115847 +k1,11355:25912195,21042253:-2116825 +) +(1,11355:25912195,21042253:2116825,414482,115847 +k1,11355:25912195,21042253:3277 +h1,11355:28025743,21042253:0,411205,112570 +) +k1,11355:28166929,21042253:137909 +k1,11355:29296398,21042253:137909 +k1,11355:32583029,21042253:0 +) +(1,11356:6630773,21907333:25952256,513147,134348 +k1,11355:10360951,21907333:231211 +k1,11355:11243590,21907333:231211 +k1,11355:12222567,21907333:231211 +k1,11355:14078416,21907333:231211 +k1,11355:17688008,21907333:231211 +k1,11355:21323813,21907333:231210 +k1,11355:22546584,21907333:231211 +k1,11355:23393833,21907333:231211 +k1,11355:25958126,21907333:231211 +k1,11355:30687073,21907333:231211 +k1,11355:32583029,21907333:0 +) +(1,11356:6630773,22772413:25952256,505283,134348 +k1,11355:7566278,22772413:141864 +k1,11355:11840841,22772413:141863 +k1,11355:13214782,22772413:141864 +k1,11355:14854798,22772413:141863 +h1,11355:15651716,22772413:0,0,0 +k1,11355:16000674,22772413:141864 +k1,11355:18429744,22772413:141863 +k1,11355:19857424,22772413:141864 +k1,11355:22045321,22772413:141863 +k1,11355:23683372,22772413:141864 +k1,11355:26411941,22772413:141863 +k1,11355:27011902,22772413:141864 +k1,11355:27685262,22772413:141863 +k1,11355:29411131,22772413:141864 +k1,11355:30204422,22772413:141863 +k1,11355:31438771,22772413:141864 +k1,11356:32583029,22772413:0 +) +(1,11356:6630773,23637493:25952256,505283,134348 +k1,11355:9920859,23637493:195476 +k1,11355:13154584,23637493:195476 +k1,11355:16153690,23637493:195476 +k1,11355:19793738,23637493:195476 +k1,11355:20798584,23637493:195476 +k1,11355:22013144,23637493:195475 +k1,11355:23749371,23637493:195476 +k1,11355:25690071,23637493:195476 +k1,11355:26989829,23637493:195476 +k1,11355:27933071,23637493:195476 +k1,11355:30847636,23637493:195476 +k1,11355:32583029,23637493:0 +) +(1,11356:6630773,24502573:25952256,513147,134348 +k1,11355:10069148,24502573:178615 +k1,11355:13523908,24502573:178615 +k1,11355:16953110,24502573:178616 +k1,11355:18924135,24502573:178615 +k1,11355:22128547,24502573:178615 +k1,11355:23539239,24502573:178615 +k1,11355:25996541,24502573:178615 +h1,11355:26967129,24502573:0,0,0 +k1,11355:27145744,24502573:178615 +k1,11355:28133730,24502573:178616 +k1,11355:29810498,24502573:178615 +h1,11355:31005875,24502573:0,0,0 +k1,11355:31391584,24502573:178615 +k1,11355:32583029,24502573:0 +) +(1,11356:6630773,25367653:25952256,513147,134348 +k1,11355:9860190,25367653:203620 +k1,11355:14487491,25367653:203621 +k1,11355:17996092,25367653:203620 +k1,11355:19712938,25367653:203620 +k1,11355:23321154,25367653:203621 +k1,11355:24756851,25367653:203620 +k1,11355:27239158,25367653:203620 +h1,11355:28209746,25367653:0,0,0 +k1,11355:28413366,25367653:203620 +k1,11355:29426357,25367653:203621 +k1,11355:31128130,25367653:203620 +h1,11355:32323507,25367653:0,0,0 +k1,11355:32583029,25367653:0 +) +(1,11356:6630773,26232733:25952256,513147,134348 +k1,11355:9882669,26232733:190054 +k1,11355:14148408,26232733:190055 +k1,11355:16199029,26232733:190054 +k1,11355:17040511,26232733:190054 +k1,11355:17978331,26232733:190054 +k1,11355:21002163,26232733:190055 +k1,11355:23481390,26232733:190054 +k1,11355:24690529,26232733:190054 +k1,11355:26653332,26232733:190054 +k1,11355:29519222,26232733:190055 +k1,11355:30325314,26232733:190054 +k1,11355:32583029,26232733:0 +) +(1,11356:6630773,27097813:25952256,513147,126483 +k1,11355:8718423,27097813:244122 +k1,11355:10632401,27097813:244121 +k1,11355:11562685,27097813:244122 +k1,11355:12422845,27097813:244122 +k1,11355:14268666,27097813:244121 +k1,11355:16210170,27097813:244122 +k1,11355:17552020,27097813:244122 +k1,11355:19126522,27097813:244121 +k1,11355:20796052,27097813:244122 +k1,11355:21571670,27097813:244121 +k1,11355:23465989,27097813:244122 +k1,11355:26351867,27097813:244122 +k1,11355:28038435,27097813:244121 +k1,11355:31358817,27097813:244122 +k1,11356:32583029,27097813:0 +) +(1,11356:6630773,27962893:25952256,513147,134348 +k1,11355:8229196,27962893:193331 +k1,11355:10021605,27962893:193331 +k1,11355:13149639,27962893:193332 +k1,11355:15078363,27962893:193331 +k1,11355:18549149,27962893:193331 +k1,11355:21819395,27962893:193331 +k1,11355:23204172,27962893:193332 +k1,11355:26590417,27962893:193331 +k1,11355:29809545,27962893:193331 +k1,11355:32583029,27962893:0 +) +(1,11356:6630773,28827973:25952256,513147,126483 +g1,11355:8802636,28827973 +g1,11355:11987685,28827973 +g1,11355:13677203,28827973 +g1,11355:15033142,28827973 +g1,11355:15763868,28827973 +g1,11355:18455431,28827973 +g1,11355:20048611,28827973 +k1,11356:32583029,28827973:10721692 +g1,11356:32583029,28827973 +) +(1,11358:6630773,29693053:25952256,513147,134348 +h1,11357:6630773,29693053:983040,0,0 +k1,11357:8684552,29693053:241709 +k1,11357:12959346,29693053:241708 +k1,11357:14220140,29693053:241709 +k1,11357:17867754,29693053:241708 +k1,11357:18768755,29693053:241709 +k1,11357:20029548,29693053:241708 +k1,11357:23787919,29693053:241709 +k1,11357:24645665,29693053:241708 +k1,11357:28963058,29693053:241709 +k1,11357:30489272,29693053:241708 +k1,11357:31835263,29693053:241709 +k1,11357:32583029,29693053:0 +) +(1,11358:6630773,30558133:25952256,513147,126483 +k1,11357:9905007,30558133:261544 +k1,11357:10379480,30558133:261481 +k1,11357:12154250,30558133:261544 +k1,11357:13101956,30558133:261544 +k1,11357:13719360,30558133:261544 +k1,11357:15287036,30558133:261543 +k1,11357:16915661,30558133:261544 +k1,11357:18196290,30558133:261544 +k1,11357:22521721,30558133:261544 +k1,11357:23442557,30558133:261544 +k1,11357:24723185,30558133:261543 +k1,11357:28501391,30558133:261544 +k1,11357:31398138,30558133:261544 +k1,11358:32583029,30558133:0 +) +(1,11358:6630773,31423213:25952256,513147,134348 +k1,11357:9077747,31423213:199744 +k1,11357:12093574,31423213:199745 +k1,11357:12909356,31423213:199744 +k1,11357:13464960,31423213:199744 +k1,11357:15816252,31423213:199745 +k1,11357:18387744,31423213:199744 +k1,11357:19238917,31423213:199745 +k1,11357:21746839,31423213:199744 +k1,11357:22605875,31423213:199744 +k1,11357:25149187,31423213:199745 +k1,11357:27772452,31423213:199744 +k1,11357:29539817,31423213:199744 +k1,11357:30536480,31423213:199745 +k1,11357:31387652,31423213:199744 +k1,11357:32583029,31423213:0 +) +(1,11358:6630773,32288293:25952256,513147,134348 +k1,11357:9057869,32288293:185109 +k1,11357:12059061,32288293:185110 +k1,11357:14436349,32288293:185109 +h1,11357:15406937,32288293:0,0,0 +k1,11357:15972811,32288293:185110 +k1,11357:16785755,32288293:185109 +k1,11357:19330161,32288293:185110 +k1,11357:21531813,32288293:185109 +k1,11357:22736008,32288293:185110 +k1,11357:26107477,32288293:185109 +k1,11357:26908625,32288293:185110 +k1,11357:31157621,32288293:185109 +k1,11357:32583029,32288293:0 +) +(1,11358:6630773,33153373:25952256,513147,134348 +k1,11357:7965202,33153373:153470 +k1,11357:9669909,33153373:153470 +k1,11357:12458582,33153373:153470 +k1,11357:14357276,33153373:153470 +k1,11357:15702191,33153373:153470 +k1,11357:19988361,33153373:153470 +k1,11357:21089481,33153373:153469 +k1,11357:23551129,33153373:153470 +k1,11357:24363891,33153373:153470 +k1,11357:25352945,33153373:153470 +k1,11357:26157843,33153373:153470 +k1,11357:28014399,33153373:153470 +k1,11357:30983951,33153373:153470 +k1,11357:32583029,33153373:0 +) +(1,11358:6630773,34018453:25952256,615216,126483 +$1,11357:8394347,34018453 +k1,11357:8938540,34018453:163429 +k1,11357:10174139,34018453:163430 +k1,11357:11356653,34018453:163429 +k1,11357:12989399,34018453:163429 +k1,11357:14908538,34018453:163429 +k1,11357:16576019,34018453:163430 +k1,11357:18093422,34018453:163429 +k1,11357:19941782,34018453:163429 +$1,11357:20148876,34018453 +k1,11357:20614467,34018453:67132 +k1,11357:21249796,34018453:67132 +(1,11357:22046714,33743172:709427,339935,8258 +) +$1,11357:22756141,34018453 +k1,11357:23359122,34018453:163430 +k1,11357:24383694,34018453:163429 +$1,11357:24383694,34018453 +k1,11357:25247744,34018453:67132 +k1,11357:25883073,34018453:67132 +(1,11357:26679991,33743172:709427,339935,8258 +) +$1,11357:27389418,34018453 +k1,11357:28373163,34018453:163429 +k1,11357:29578615,34018453:163430 +k1,11357:31438771,34018453:163429 +k1,11358:32583029,34018453:0 +) +(1,11358:6630773,34883533:25952256,513147,126483 +k1,11357:8237211,34883533:162680 +k1,11357:12786872,34883533:162681 +k1,11357:13608844,34883533:162680 +k1,11357:14127385,34883533:162681 +k1,11357:16267942,34883533:162680 +k1,11357:17082050,34883533:162680 +k1,11357:19320912,34883533:162681 +k1,11357:20502677,34883533:162680 +k1,11357:22838531,34883533:162680 +k1,11357:24745125,34883533:162681 +k1,11357:27070493,34883533:162680 +k1,11357:28042544,34883533:162681 +k1,11357:31391584,34883533:162680 +k1,11357:32583029,34883533:0 +) +(1,11358:6630773,35748613:25952256,505283,134348 +k1,11357:10950839,35748613:205061 +k1,11357:12549852,35748613:205062 +k1,11357:13773998,35748613:205061 +k1,11357:17193600,35748613:205061 +k1,11357:20145276,35748613:205062 +(1,11357:20145276,35748613:0,452978,115847 +r1,11382:21206966,35748613:1061690,568825,115847 +k1,11357:20145276,35748613:-1061690 +) +(1,11357:20145276,35748613:1061690,452978,115847 +g1,11357:20851977,35748613 +h1,11357:21203689,35748613:0,411205,112570 +) +k1,11357:21412027,35748613:205061 +k1,11357:24297511,35748613:205061 +k1,11357:25896523,35748613:205061 +k1,11357:27120670,35748613:205062 +k1,11357:29306884,35748613:205061 +k1,11357:32583029,35748613:0 +) +(1,11358:6630773,36613693:25952256,513147,134348 +k1,11357:9625382,36613693:247995 +(1,11357:9625382,36613693:0,414482,115847 +r1,11382:9983648,36613693:358266,530329,115847 +k1,11357:9625382,36613693:-358266 +) +(1,11357:9625382,36613693:358266,414482,115847 +k1,11357:9625382,36613693:3277 +h1,11357:9980371,36613693:0,411205,112570 +) +k1,11357:10231642,36613693:247994 +k1,11357:11686810,36613693:247995 +k1,11357:12953889,36613693:247994 +k1,11357:15517926,36613693:247995 +k1,11357:17598308,36613693:247995 +k1,11357:19821557,36613693:247994 +k1,11357:20720980,36613693:247995 +k1,11357:21716741,36613693:247995 +k1,11357:22320595,36613693:247994 +k1,11357:25882090,36613693:247995 +k1,11357:29056267,36613693:247994 +k1,11357:30251913,36613693:247995 +k1,11357:32583029,36613693:0 +) +(1,11358:6630773,37478773:25952256,513147,134348 +k1,11357:8815844,37478773:266177 +k1,11357:9768183,37478773:266177 +k1,11357:11053445,37478773:266177 +k1,11357:13842758,37478773:266177 +k1,11357:15534343,37478773:266177 +k1,11357:17007693,37478773:266177 +k1,11357:19246503,37478773:266176 +k1,11357:23519551,37478773:266177 +k1,11357:24445020,37478773:266177 +k1,11357:25730282,37478773:266177 +k1,11357:28009725,37478773:266177 +k1,11357:28935194,37478773:266177 +k1,11357:30898098,37478773:266177 +k1,11357:32583029,37478773:0 +) +(1,11358:6630773,38343853:25952256,426639,7863 +k1,11358:32583028,38343853:23609344 +g1,11358:32583028,38343853 +) +(1,11360:6630773,39208933:25952256,513147,134348 +h1,11359:6630773,39208933:983040,0,0 +k1,11359:8812293,39208933:156458 +k1,11359:11276928,39208933:156457 +k1,11359:12092678,39208933:156458 +k1,11359:14350681,39208933:156458 +k1,11359:15190024,39208933:156458 +k1,11359:16996678,39208933:156457 +k1,11359:19969218,39208933:156458 +k1,11359:21780460,39208933:156458 +k1,11359:23144090,39208933:156457 +k1,11359:24676149,39208933:156458 +k1,11359:25188467,39208933:156458 +k1,11359:26698899,39208933:156458 +k1,11359:28571744,39208933:156457 +k1,11359:31966991,39208933:156458 +k1,11359:32583029,39208933:0 +) +(1,11360:6630773,40074013:25952256,513147,134348 +k1,11359:8609813,40074013:243647 +k1,11359:11548956,40074013:243647 +(1,11359:11548956,40074013:0,459977,115847 +r1,11382:13665781,40074013:2116825,575824,115847 +k1,11359:11548956,40074013:-2116825 +) +(1,11359:11548956,40074013:2116825,459977,115847 +k1,11359:11548956,40074013:3277 +h1,11359:13662504,40074013:0,411205,112570 +) +k1,11359:13909428,40074013:243647 +k1,11359:15540472,40074013:243647 +k1,11359:17519511,40074013:243646 +k1,11359:21040613,40074013:243647 +k1,11359:24560405,40074013:243647 +k1,11359:25995497,40074013:243647 +k1,11359:29453685,40074013:243647 +k1,11359:32583029,40074013:0 +) +(1,11360:6630773,40939093:25952256,513147,126483 +k1,11359:7956497,40939093:283702 +(1,11359:7956497,40939093:0,452978,115847 +r1,11382:9721610,40939093:1765113,568825,115847 +k1,11359:7956497,40939093:-1765113 +) +(1,11359:7956497,40939093:1765113,452978,115847 +k1,11359:7956497,40939093:3277 +h1,11359:9718333,40939093:0,411205,112570 +) +k1,11359:10005313,40939093:283703 +k1,11359:11480460,40939093:283702 +(1,11359:11480460,40939093:0,459977,115847 +r1,11382:12542149,40939093:1061689,575824,115847 +k1,11359:11480460,40939093:-1061689 +) +(1,11359:11480460,40939093:1061689,459977,115847 +k1,11359:11480460,40939093:3277 +h1,11359:12538872,40939093:0,411205,112570 +) +k1,11359:12825851,40939093:283702 +k1,11359:14854778,40939093:283703 +k1,11359:19525460,40939093:283702 +k1,11359:20468454,40939093:283702 +k1,11359:21771241,40939093:283702 +k1,11359:24032821,40939093:283703 +k1,11359:24967951,40939093:283702 +k1,11359:27327834,40939093:283702 +k1,11359:29784711,40939093:283703 +k1,11359:31812326,40939093:283702 +k1,11359:32583029,40939093:0 +) +(1,11360:6630773,41804173:25952256,513147,134348 +k1,11359:10124060,41804173:283989 +k1,11359:13594409,41804173:283989 +$1,11359:13801503,41804173 +$1,11359:14768159,41804173 +k1,11359:15052148,41804173:283989 +k1,11359:15987565,41804173:283989 +$1,11359:15987565,41804173 +$1,11359:16954221,41804173 +k1,11359:17618974,41804173:283989 +k1,11359:19762219,41804173:283989 +k1,11359:20662246,41804173:283989 +k1,11359:21965320,41804173:283989 +k1,11359:23616390,41804173:283989 +k1,11359:24567535,41804173:283989 +(1,11359:24567535,41804173:0,459977,115847 +r1,11382:25629224,41804173:1061689,575824,115847 +k1,11359:24567535,41804173:-1061689 +) +(1,11359:24567535,41804173:1061689,459977,115847 +k1,11359:24567535,41804173:3277 +h1,11359:25625947,41804173:0,411205,112570 +) +k1,11359:26086883,41804173:283989 +k1,11359:29305574,41804173:283989 +k1,11359:32583029,41804173:0 +) +(1,11360:6630773,42669253:25952256,513147,126483 +k1,11359:9867654,42669253:159966 +k1,11359:11219065,42669253:159966 +k1,11359:14074527,42669253:159966 +(1,11359:14074527,42669253:0,459977,115847 +r1,11382:16191352,42669253:2116825,575824,115847 +k1,11359:14074527,42669253:-2116825 +) +(1,11359:14074527,42669253:2116825,459977,115847 +k1,11359:14074527,42669253:3277 +h1,11359:16188075,42669253:0,411205,112570 +) +k1,11359:16351318,42669253:159966 +k1,11359:19506935,42669253:159966 +k1,11359:21639536,42669253:159967 +$1,11359:21639536,42669253 +$1,11359:23004651,42669253 +k1,11359:23164617,42669253:159966 +k1,11359:25168111,42669253:159966 +k1,11359:26770524,42669253:159966 +k1,11359:27949575,42669253:159966 +k1,11359:30251913,42669253:159966 +k1,11359:32583029,42669253:0 +) +(1,11360:6630773,43534333:25952256,505283,134348 +k1,11359:8464471,43534333:245105 +k1,11359:9751597,43534333:245104 +k1,11359:11015787,43534333:245105 +k1,11359:13285298,43534333:245104 +k1,11359:15838581,43534333:245105 +k1,11359:17102771,43534333:245105 +k1,11359:18773283,43534333:245104 +k1,11359:22057948,43534333:245105 +k1,11359:24465740,43534333:245104 +k1,11359:27089802,43534333:245105 +k1,11359:28728857,43534333:245104 +k1,11359:30482601,43534333:245105 +k1,11359:32583029,43534333:0 +) +(1,11360:6630773,44399413:25952256,513147,126483 +k1,11359:8180819,44399413:182309 +k1,11359:10565138,44399413:182309 +k1,11359:12775786,44399413:182309 +k1,11359:13905746,44399413:182309 +k1,11359:15107140,44399413:182309 +k1,11359:18051793,44399413:182310 +k1,11359:22069924,44399413:182309 +k1,11359:24780612,44399413:182309 +k1,11359:25622213,44399413:182309 +k1,11359:26823607,44399413:182309 +k1,11359:31069803,44399413:182309 +k1,11359:32583029,44399413:0 +) +(1,11360:6630773,45264493:25952256,513147,126483 +g1,11359:7777653,45264493 +g1,11359:9180123,45264493 +g1,11359:12214439,45264493 +g1,11359:14591430,45264493 +g1,11359:17816456,45264493 +g1,11359:19784502,45264493 +g1,11359:21050002,45264493 +g1,11359:21996997,45264493 +k1,11360:32583029,45264493:9020377 +g1,11360:32583029,45264493 +) +] +(1,11382:32583029,45706769:0,0,0 +g1,11382:32583029,45706769 +) +) +] +(1,11382:6630773,47279633:25952256,0,0 +h1,11382:6630773,47279633:25952256,0,0 +) +] +(1,11382:4262630,4025873:0,0,0 +[1,11382:-473656,4025873:0,0,0 +(1,11382:-473656,-710413:0,0,0 +(1,11382:-473656,-710413:0,0,0 +g1,11382:-473656,-710413 +) +g1,11382:-473656,-710413 ) ] ) ] !27064 -}177 -Input:1909:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1910:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}178 +Input:1912:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1913:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{178 -[1,11450:4262630,47279633:28320399,43253760,0 -(1,11450:4262630,4025873:0,0,0 -[1,11450:-473656,4025873:0,0,0 -(1,11450:-473656,-710413:0,0,0 -(1,11450:-473656,-644877:0,0,0 -k1,11450:-473656,-644877:-65536 +{179 +[1,11449:4262630,47279633:28320399,43253760,0 +(1,11449:4262630,4025873:0,0,0 +[1,11449:-473656,4025873:0,0,0 +(1,11449:-473656,-710413:0,0,0 +(1,11449:-473656,-644877:0,0,0 +k1,11449:-473656,-644877:-65536 ) -(1,11450:-473656,4736287:0,0,0 -k1,11450:-473656,4736287:5209943 +(1,11449:-473656,4736287:0,0,0 +k1,11449:-473656,4736287:5209943 ) -g1,11450:-473656,-710413 +g1,11449:-473656,-710413 ) ] ) -[1,11450:6630773,47279633:25952256,43253760,0 -[1,11450:6630773,4812305:25952256,786432,0 -(1,11450:6630773,4812305:25952256,513147,126483 -(1,11450:6630773,4812305:25952256,513147,126483 -g1,11450:3078558,4812305 -[1,11450:3078558,4812305:0,0,0 -(1,11450:3078558,2439708:0,1703936,0 -k1,11450:1358238,2439708:-1720320 +[1,11449:6630773,47279633:25952256,43253760,0 +[1,11449:6630773,4812305:25952256,786432,0 +(1,11449:6630773,4812305:25952256,513147,126483 +(1,11449:6630773,4812305:25952256,513147,126483 +g1,11449:3078558,4812305 +[1,11449:3078558,4812305:0,0,0 +(1,11449:3078558,2439708:0,1703936,0 +k1,11449:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11450:2537886,2439708:1179648,16384,0 +r1,11449:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11450:3078558,1915420:16384,1179648,0 +r1,11449:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -204541,16 +204724,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11450:3078558,4812305:0,0,0 -(1,11450:3078558,2439708:0,1703936,0 -g1,11450:29030814,2439708 -g1,11450:36135244,2439708 +[1,11449:3078558,4812305:0,0,0 +(1,11449:3078558,2439708:0,1703936,0 +g1,11449:29030814,2439708 +g1,11449:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11450:36151628,1915420:16384,1179648,0 +r1,11449:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -204559,25 +204742,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11450:37855564,2439708:1179648,16384,0 +r1,11449:37855564,2439708:1179648,16384,0 ) ) -k1,11450:3078556,2439708:-34777008 +k1,11449:3078556,2439708:-34777008 ) ] -[1,11450:3078558,4812305:0,0,0 -(1,11450:3078558,49800853:0,16384,2228224 -k1,11450:1358238,49800853:-1720320 +[1,11449:3078558,4812305:0,0,0 +(1,11449:3078558,49800853:0,16384,2228224 +k1,11449:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11450:2537886,49800853:1179648,16384,0 +r1,11449:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11450:3078558,51504789:16384,1179648,0 +r1,11449:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -204587,16 +204770,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11450:3078558,4812305:0,0,0 -(1,11450:3078558,49800853:0,16384,2228224 -g1,11450:29030814,49800853 -g1,11450:36135244,49800853 +[1,11449:3078558,4812305:0,0,0 +(1,11449:3078558,49800853:0,16384,2228224 +g1,11449:29030814,49800853 +g1,11449:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11450:36151628,51504789:16384,1179648,0 +r1,11449:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -204605,452 +204788,449 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11450:37855564,49800853:1179648,16384,0 -) -) -k1,11450:3078556,49800853:-34777008 -) -] -g1,11450:6630773,4812305 -g1,11450:6630773,4812305 -g1,11450:9524187,4812305 -g1,11450:11465363,4812305 -g1,11450:15704887,4812305 -g1,11450:16405466,4812305 -g1,11450:19787123,4812305 -k1,11450:31387652,4812305:11600529 -) -) -] -[1,11450:6630773,45706769:25952256,40108032,0 -(1,11450:6630773,45706769:25952256,40108032,0 -(1,11450:6630773,45706769:0,0,0 -g1,11450:6630773,45706769 -) -[1,11450:6630773,45706769:25952256,40108032,0 -[1,11380:6630773,28849720:25952256,23250983,0 -[1,11380:6630773,28849720:25952256,23250983,0 -(1,11371:6630773,23766069:25952256,18167332,0 -k1,11371:10523651,23766069:3892878 -h1,11370:10523651,23766069:0,0,0 -(1,11370:10523651,23766069:18166500,18167332,0 -(1,11370:10523651,23766069:18167376,18167376,0 -(1,11370:10523651,23766069:18167376,18167376,0 -(1,11370:10523651,23766069:0,18167376,0 -(1,11370:10523651,23766069:0,28417720,0 -(1,11370:10523651,23766069:28417720,28417720,0 -) -k1,11370:10523651,23766069:-28417720 -) -) -g1,11370:28691027,23766069 -) -) -) -g1,11371:28690151,23766069 -k1,11371:32583029,23766069:3892878 -) -(1,11379:6630773,25286509:25952256,505283,134348 -h1,11379:6630773,25286509:0,0,0 -g1,11379:8923222,25286509 -k1,11379:32583029,25286509:22669558 -g1,11379:32583029,25286509 -) -(1,11379:6630773,26151589:25952256,513147,134348 -h1,11379:6630773,26151589:0,0,0 -k1,11379:10430841,26151589:233599 -k1,11379:12837614,26151589:233599 -k1,11379:14018865,26151589:233600 -k1,11379:17014807,26151589:233599 -k1,11379:20910558,26151589:233599 -k1,11379:21795585,26151589:233599 -k1,11379:25459995,26151589:233600 -k1,11379:28216730,26151589:233599 -k1,11379:31966991,26151589:233599 -k1,11379:32583029,26151589:0 -) -(1,11379:6630773,27016669:25952256,513147,134348 -k1,11379:9411847,27016669:160945 -k1,11379:12169985,27016669:160946 -k1,11379:14639108,27016669:160945 -k1,11379:15459346,27016669:160946 -k1,11379:18382634,27016669:160945 -k1,11379:21060818,27016669:160946 -k1,11379:22418450,27016669:160945 -k1,11379:23968759,27016669:160946 -k1,11379:24745742,27016669:160945 -k1,11379:26109929,27016669:160946 -k1,11379:28126198,27016669:160945 -k1,11379:29791195,27016669:160946 -k1,11379:32583029,27016669:0 -) -(1,11379:6630773,27881749:25952256,513147,126483 -k1,11379:7496243,27881749:249432 -k1,11379:8101536,27881749:249433 -k1,11379:11427228,27881749:249432 -k1,11379:13070612,27881749:249433 -k1,11379:13675904,27881749:249432 -k1,11379:16618211,27881749:249433 -k1,11379:17888039,27881749:249432 -k1,11379:20139596,27881749:249432 -k1,11379:22965249,27881749:249433 -k1,11379:24516831,27881749:249382 -k1,11379:26160214,27881749:249432 -k1,11379:27772141,27881749:249433 -k1,11379:29889349,27881749:249432 -k1,11379:31923737,27881749:249382 -k1,11379:32583029,27881749:0 -) -(1,11379:6630773,28746829:25952256,505283,102891 -g1,11379:8499859,28746829 -g1,11379:11587915,28746829 -g1,11379:12584062,28746829 -g1,11379:13974736,28746829 -g1,11379:14588808,28746829 -k1,11379:32583029,28746829:16399075 -g1,11379:32583029,28746829 -) -] -] -v1,11383:6630773,30815800:0,393216,0 -(1,11450:6630773,45706769:25952256,15284185,0 -g1,11450:6630773,45706769 -g1,11450:6237557,45706769 -r1,11450:6368629,45706769:131072,15284185,0 -g1,11450:6567858,45706769 -g1,11450:6764466,45706769 -[1,11450:6764466,45706769:25818563,15284185,0 -(1,11384:6764466,31124098:25818563,701514,196608 -(1,11383:6764466,31124098:0,701514,196608 -r1,11450:7761522,31124098:997056,898122,196608 -k1,11383:6764466,31124098:-997056 -) -(1,11383:6764466,31124098:997056,701514,196608 -) -k1,11383:7964916,31124098:203394 -k1,11383:8292596,31124098:327680 -k1,11383:9692677,31124098:203394 -k1,11383:12197040,31124098:203394 -k1,11383:14268865,31124098:203394 -k1,11383:16132941,31124098:203394 -k1,11383:17355420,31124098:203394 -k1,11383:19055002,31124098:203395 -k1,11383:20206047,31124098:203394 -k1,11383:21428526,31124098:203394 -k1,11383:22528453,31124098:203394 -k1,11383:26393999,31124098:203394 -k1,11383:29778511,31124098:203394 -k1,11383:30597943,31124098:203394 -k1,11383:32583029,31124098:0 -) -(1,11384:6764466,31989178:25818563,513147,134348 -h1,11383:7735054,31989178:0,0,0 -k1,11383:8087345,31989178:178621 -k1,11383:10184859,31989178:178620 -(1,11383:10184859,31989178:0,414482,115847 -r1,11450:10543125,31989178:358266,530329,115847 -k1,11383:10184859,31989178:-358266 -) -(1,11383:10184859,31989178:358266,414482,115847 -k1,11383:10184859,31989178:3277 -h1,11383:10539848,31989178:0,411205,112570 -) -k1,11383:10721746,31989178:178621 -k1,11383:11431864,31989178:178621 -k1,11383:11966344,31989178:178620 -k1,11383:14765094,31989178:178621 -k1,11383:16921592,31989178:178621 -k1,11383:19452955,31989178:178620 -k1,11383:21644842,31989178:178621 -k1,11383:25615376,31989178:178621 -k1,11383:27187947,31989178:178620 -k1,11383:30062064,31989178:178621 -(1,11383:30062064,31989178:0,452978,115847 -r1,11450:32530601,31989178:2468537,568825,115847 -k1,11383:30062064,31989178:-2468537 -) -(1,11383:30062064,31989178:2468537,452978,115847 -k1,11383:30062064,31989178:3277 -h1,11383:32527324,31989178:0,411205,112570 -) -k1,11384:32583029,31989178:0 -k1,11384:32583029,31989178:0 -) -v1,11386:6764466,32772925:0,393216,0 -(1,11395:6764466,36504853:25818563,4125144,196608 -g1,11395:6764466,36504853 -g1,11395:6764466,36504853 -g1,11395:6567858,36504853 -(1,11395:6567858,36504853:0,4125144,196608 -r1,11450:32779637,36504853:26211779,4321752,196608 -k1,11395:6567857,36504853:-26211780 -) -(1,11395:6567858,36504853:26211779,4125144,196608 -[1,11395:6764466,36504853:25818563,3928536,0 -(1,11388:6764466,33000756:25818563,424439,106246 -(1,11387:6764466,33000756:0,0,0 -g1,11387:6764466,33000756 -g1,11387:6764466,33000756 -g1,11387:6436786,33000756 -(1,11387:6436786,33000756:0,0,0 -) -g1,11387:6764466,33000756 -) -g1,11388:7428374,33000756 -g1,11388:8424236,33000756 -g1,11388:11743776,33000756 -g1,11388:12407684,33000756 -g1,11388:13403546,33000756 -g1,11388:14731362,33000756 -g1,11388:19046763,33000756 -k1,11388:19046763,33000756:43490 -h1,11388:21081977,33000756:0,0,0 -k1,11388:32583029,33000756:11501052 -g1,11388:32583029,33000756 -) -(1,11389:6764466,33685611:25818563,424439,0 -h1,11389:6764466,33685611:0,0,0 -g1,11389:7428374,33685611 -g1,11389:8424236,33685611 -h1,11389:8756190,33685611:0,0,0 -k1,11389:32583030,33685611:23826840 -g1,11389:32583030,33685611 -) -(1,11390:6764466,34370466:25818563,424439,112852 -h1,11390:6764466,34370466:0,0,0 -g1,11390:8756190,34370466 -g1,11390:9752052,34370466 -g1,11390:10415960,34370466 -g1,11390:14067454,34370466 -h1,11390:14399408,34370466:0,0,0 -k1,11390:32583028,34370466:18183620 -g1,11390:32583028,34370466 -) -(1,11391:6764466,35055321:25818563,424439,79822 -h1,11391:6764466,35055321:0,0,0 -g1,11391:7096420,35055321 -g1,11391:7428374,35055321 -g1,11391:9088144,35055321 -g1,11391:10084006,35055321 -g1,11391:12407684,35055321 -g1,11391:13071592,35055321 -h1,11391:14399408,35055321:0,0,0 -k1,11391:32583028,35055321:18183620 -g1,11391:32583028,35055321 -) -(1,11392:6764466,35740176:25818563,424439,0 -h1,11392:6764466,35740176:0,0,0 -g1,11392:7096420,35740176 -g1,11392:7428374,35740176 -g1,11392:8092282,35740176 -g1,11392:9088144,35740176 -g1,11392:9752052,35740176 -g1,11392:10415960,35740176 -h1,11392:10747914,35740176:0,0,0 -k1,11392:32583030,35740176:21835116 -g1,11392:32583030,35740176 -) -(1,11393:6764466,36425031:25818563,424439,79822 -h1,11393:6764466,36425031:0,0,0 -h1,11393:7096420,36425031:0,0,0 -k1,11393:32583028,36425031:25486608 -g1,11393:32583028,36425031 -) -] -) -g1,11395:32583029,36504853 -g1,11395:6764466,36504853 -g1,11395:6764466,36504853 -g1,11395:32583029,36504853 -g1,11395:32583029,36504853 -) -h1,11395:6764466,36701461:0,0,0 -v1,11399:6764466,37584099:0,393216,0 -(1,11408:6764466,41316027:25818563,4125144,196608 -g1,11408:6764466,41316027 -g1,11408:6764466,41316027 -g1,11408:6567858,41316027 -(1,11408:6567858,41316027:0,4125144,196608 -r1,11450:32779637,41316027:26211779,4321752,196608 -k1,11408:6567857,41316027:-26211780 -) -(1,11408:6567858,41316027:26211779,4125144,196608 -[1,11408:6764466,41316027:25818563,3928536,0 -(1,11401:6764466,37811930:25818563,424439,112852 -(1,11400:6764466,37811930:0,0,0 -g1,11400:6764466,37811930 -g1,11400:6764466,37811930 -g1,11400:6436786,37811930 -(1,11400:6436786,37811930:0,0,0 -) -g1,11400:6764466,37811930 -) -g1,11401:7428374,37811930 -g1,11401:8424236,37811930 -g1,11401:15395270,37811930 -g1,11401:16059178,37811930 -g1,11401:20374579,37811930 -k1,11401:20374579,37811930:43490 -h1,11401:22409793,37811930:0,0,0 -k1,11401:32583029,37811930:10173236 -g1,11401:32583029,37811930 -) -(1,11402:6764466,38496785:25818563,424439,0 -h1,11402:6764466,38496785:0,0,0 -g1,11402:7428374,38496785 -g1,11402:8424236,38496785 -h1,11402:8756190,38496785:0,0,0 -k1,11402:32583030,38496785:23826840 -g1,11402:32583030,38496785 -) -(1,11403:6764466,39181640:25818563,424439,112852 -h1,11403:6764466,39181640:0,0,0 -g1,11403:8756190,39181640 -g1,11403:9752052,39181640 -g1,11403:10415960,39181640 -g1,11403:14067454,39181640 -h1,11403:14399408,39181640:0,0,0 -k1,11403:32583028,39181640:18183620 -g1,11403:32583028,39181640 -) -(1,11404:6764466,39866495:25818563,424439,79822 -h1,11404:6764466,39866495:0,0,0 -g1,11404:7096420,39866495 -g1,11404:7428374,39866495 -g1,11404:9088144,39866495 -g1,11404:10084006,39866495 -g1,11404:12407684,39866495 -g1,11404:13071592,39866495 -h1,11404:14399408,39866495:0,0,0 -k1,11404:32583028,39866495:18183620 -g1,11404:32583028,39866495 -) -(1,11405:6764466,40551350:25818563,424439,0 -h1,11405:6764466,40551350:0,0,0 -g1,11405:7096420,40551350 -g1,11405:7428374,40551350 -g1,11405:8092282,40551350 -g1,11405:9088144,40551350 -g1,11405:9752052,40551350 -g1,11405:10415960,40551350 -h1,11405:10747914,40551350:0,0,0 -k1,11405:32583030,40551350:21835116 -g1,11405:32583030,40551350 -) -(1,11406:6764466,41236205:25818563,424439,79822 -h1,11406:6764466,41236205:0,0,0 -h1,11406:7096420,41236205:0,0,0 -k1,11406:32583028,41236205:25486608 -g1,11406:32583028,41236205 -) -] -) -g1,11408:32583029,41316027 -g1,11408:6764466,41316027 -g1,11408:6764466,41316027 -g1,11408:32583029,41316027 -g1,11408:32583029,41316027 -) -h1,11408:6764466,41512635:0,0,0 -v1,11412:6764466,42395274:0,393216,0 -(1,11419:6764466,44757492:25818563,2755434,196608 -g1,11419:6764466,44757492 -g1,11419:6764466,44757492 -g1,11419:6567858,44757492 -(1,11419:6567858,44757492:0,2755434,196608 -r1,11450:32779637,44757492:26211779,2952042,196608 -k1,11419:6567857,44757492:-26211780 -) -(1,11419:6567858,44757492:26211779,2755434,196608 -[1,11419:6764466,44757492:25818563,2558826,0 -(1,11414:6764466,42623105:25818563,424439,106246 -(1,11413:6764466,42623105:0,0,0 -g1,11413:6764466,42623105 -g1,11413:6764466,42623105 -g1,11413:6436786,42623105 -(1,11413:6436786,42623105:0,0,0 -) -g1,11413:6764466,42623105 -) -g1,11414:7428374,42623105 -g1,11414:8424236,42623105 -g1,11414:11743776,42623105 -g1,11414:12407684,42623105 -g1,11414:13403546,42623105 -g1,11414:14731362,42623105 -g1,11414:19046763,42623105 -k1,11414:19046763,42623105:43490 -h1,11414:21081977,42623105:0,0,0 -k1,11414:32583029,42623105:11501052 -g1,11414:32583029,42623105 -) -(1,11415:6764466,43307960:25818563,431045,112852 -h1,11415:6764466,43307960:0,0,0 -g1,11415:8756190,43307960 -g1,11415:9752052,43307960 -g1,11415:14731361,43307960 -g1,11415:15395269,43307960 -g1,11415:16723085,43307960 -h1,11415:17055039,43307960:0,0,0 -k1,11415:32583029,43307960:15527990 -g1,11415:32583029,43307960 -) -(1,11416:6764466,43992815:25818563,424439,79822 -h1,11416:6764466,43992815:0,0,0 -g1,11416:7096420,43992815 -g1,11416:7428374,43992815 -g1,11416:9088144,43992815 -g1,11416:10084006,43992815 -g1,11416:12407684,43992815 -g1,11416:13071592,43992815 -h1,11416:14399408,43992815:0,0,0 -k1,11416:32583028,43992815:18183620 -g1,11416:32583028,43992815 -) -(1,11417:6764466,44677670:25818563,424439,79822 -h1,11417:6764466,44677670:0,0,0 -h1,11417:7096420,44677670:0,0,0 -k1,11417:32583028,44677670:25486608 -g1,11417:32583028,44677670 -) -] -) -g1,11419:32583029,44757492 -g1,11419:6764466,44757492 -g1,11419:6764466,44757492 -g1,11419:32583029,44757492 -g1,11419:32583029,44757492 -) -h1,11419:6764466,44954100:0,0,0 -] -g1,11450:32583029,45706769 -) -] -(1,11450:32583029,45706769:0,0,0 -g1,11450:32583029,45706769 -) -) -] -(1,11450:6630773,47279633:25952256,0,0 -h1,11450:6630773,47279633:25952256,0,0 +r1,11449:37855564,49800853:1179648,16384,0 +) +) +k1,11449:3078556,49800853:-34777008 +) +] +g1,11449:6630773,4812305 +g1,11449:6630773,4812305 +g1,11449:9524187,4812305 +g1,11449:11465363,4812305 +g1,11449:15704887,4812305 +g1,11449:16405466,4812305 +g1,11449:19787123,4812305 +k1,11449:31387652,4812305:11600529 +) +) +] +[1,11449:6630773,45706769:25952256,40108032,0 +(1,11449:6630773,45706769:25952256,40108032,0 +(1,11449:6630773,45706769:0,0,0 +g1,11449:6630773,45706769 +) +[1,11449:6630773,45706769:25952256,40108032,0 +[1,11379:6630773,28849720:25952256,23250983,0 +[1,11379:6630773,28849720:25952256,23250983,0 +(1,11370:6630773,23766069:25952256,18167332,0 +k1,11370:10523651,23766069:3892878 +h1,11369:10523651,23766069:0,0,0 +(1,11369:10523651,23766069:18166500,18167332,0 +(1,11369:10523651,23766069:18167376,18167376,0 +(1,11369:10523651,23766069:18167376,18167376,0 +(1,11369:10523651,23766069:0,18167376,0 +(1,11369:10523651,23766069:0,28417720,0 +(1,11369:10523651,23766069:28417720,28417720,0 +) +k1,11369:10523651,23766069:-28417720 +) +) +g1,11369:28691027,23766069 +) +) +) +g1,11370:28690151,23766069 +k1,11370:32583029,23766069:3892878 +) +(1,11378:6630773,25286509:25952256,505283,134348 +h1,11378:6630773,25286509:0,0,0 +g1,11378:8923222,25286509 +k1,11378:32583029,25286509:22669558 +g1,11378:32583029,25286509 +) +(1,11378:6630773,26151589:25952256,513147,134348 +h1,11378:6630773,26151589:0,0,0 +k1,11378:10430841,26151589:233599 +k1,11378:12837614,26151589:233599 +k1,11378:14018865,26151589:233600 +k1,11378:17014807,26151589:233599 +k1,11378:20910558,26151589:233599 +k1,11378:21795585,26151589:233599 +k1,11378:25459995,26151589:233600 +k1,11378:28216730,26151589:233599 +k1,11378:31966991,26151589:233599 +k1,11378:32583029,26151589:0 +) +(1,11378:6630773,27016669:25952256,513147,134348 +k1,11378:9411847,27016669:160945 +k1,11378:12169985,27016669:160946 +k1,11378:14639108,27016669:160945 +k1,11378:15459346,27016669:160946 +k1,11378:18382634,27016669:160945 +k1,11378:21060818,27016669:160946 +k1,11378:22418450,27016669:160945 +k1,11378:23968759,27016669:160946 +k1,11378:24745742,27016669:160945 +k1,11378:26109929,27016669:160946 +k1,11378:28126198,27016669:160945 +k1,11378:29791195,27016669:160946 +k1,11378:32583029,27016669:0 +) +(1,11378:6630773,27881749:25952256,513147,126483 +k1,11378:7496243,27881749:249432 +k1,11378:8101536,27881749:249433 +k1,11378:11427228,27881749:249432 +k1,11378:13070612,27881749:249433 +k1,11378:13675904,27881749:249432 +k1,11378:16618211,27881749:249433 +k1,11378:17888039,27881749:249432 +k1,11378:20139596,27881749:249432 +k1,11378:22965249,27881749:249433 +k1,11378:24516831,27881749:249382 +k1,11378:26160214,27881749:249432 +k1,11378:27772141,27881749:249433 +k1,11378:29889349,27881749:249432 +k1,11378:31923737,27881749:249382 +k1,11378:32583029,27881749:0 +) +(1,11378:6630773,28746829:25952256,505283,102891 +g1,11378:8499859,28746829 +g1,11378:11587915,28746829 +g1,11378:12584062,28746829 +g1,11378:13974736,28746829 +g1,11378:14588808,28746829 +k1,11378:32583029,28746829:16399075 +g1,11378:32583029,28746829 +) +] +] +v1,11382:6630773,30815800:0,393216,0 +(1,11449:6630773,45706769:25952256,15284185,0 +g1,11449:6630773,45706769 +g1,11449:6237557,45706769 +r1,11449:6368629,45706769:131072,15284185,0 +g1,11449:6567858,45706769 +g1,11449:6764466,45706769 +[1,11449:6764466,45706769:25818563,15284185,0 +(1,11383:6764466,31124098:25818563,701514,196608 +(1,11382:6764466,31124098:0,701514,196608 +r1,11449:7761522,31124098:997056,898122,196608 +k1,11382:6764466,31124098:-997056 +) +(1,11382:6764466,31124098:997056,701514,196608 +) +k1,11382:7964916,31124098:203394 +k1,11382:8292596,31124098:327680 +k1,11382:9692677,31124098:203394 +k1,11382:12197040,31124098:203394 +k1,11382:14268865,31124098:203394 +k1,11382:16132941,31124098:203394 +k1,11382:17355420,31124098:203394 +k1,11382:19055002,31124098:203395 +k1,11382:20206047,31124098:203394 +k1,11382:21428526,31124098:203394 +k1,11382:22528453,31124098:203394 +k1,11382:26393999,31124098:203394 +k1,11382:29778511,31124098:203394 +k1,11382:30597943,31124098:203394 +k1,11382:32583029,31124098:0 +) +(1,11383:6764466,31989178:25818563,513147,134348 +h1,11382:7735054,31989178:0,0,0 +k1,11382:8087345,31989178:178621 +k1,11382:10184859,31989178:178620 +(1,11382:10184859,31989178:0,414482,115847 +r1,11449:10543125,31989178:358266,530329,115847 +k1,11382:10184859,31989178:-358266 +) +(1,11382:10184859,31989178:358266,414482,115847 +k1,11382:10184859,31989178:3277 +h1,11382:10539848,31989178:0,411205,112570 +) +k1,11382:10721746,31989178:178621 +k1,11382:11431864,31989178:178621 +k1,11382:11966344,31989178:178620 +k1,11382:14765094,31989178:178621 +k1,11382:16921592,31989178:178621 +k1,11382:19452955,31989178:178620 +k1,11382:21644842,31989178:178621 +k1,11382:25615376,31989178:178621 +k1,11382:27187947,31989178:178620 +k1,11382:30062064,31989178:178621 +(1,11382:30062064,31989178:0,452978,115847 +r1,11449:32530601,31989178:2468537,568825,115847 +k1,11382:30062064,31989178:-2468537 +) +(1,11382:30062064,31989178:2468537,452978,115847 +k1,11382:30062064,31989178:3277 +h1,11382:32527324,31989178:0,411205,112570 +) +k1,11383:32583029,31989178:0 +k1,11383:32583029,31989178:0 +) +v1,11385:6764466,32772925:0,393216,0 +(1,11394:6764466,36504853:25818563,4125144,196608 +g1,11394:6764466,36504853 +g1,11394:6764466,36504853 +g1,11394:6567858,36504853 +(1,11394:6567858,36504853:0,4125144,196608 +r1,11449:32779637,36504853:26211779,4321752,196608 +k1,11394:6567857,36504853:-26211780 +) +(1,11394:6567858,36504853:26211779,4125144,196608 +[1,11394:6764466,36504853:25818563,3928536,0 +(1,11387:6764466,33000756:25818563,424439,106246 +(1,11386:6764466,33000756:0,0,0 +g1,11386:6764466,33000756 +g1,11386:6764466,33000756 +g1,11386:6436786,33000756 +(1,11386:6436786,33000756:0,0,0 +) +g1,11386:6764466,33000756 +) +g1,11387:7428374,33000756 +g1,11387:8424236,33000756 +g1,11387:11743776,33000756 +g1,11387:12407684,33000756 +g1,11387:13403546,33000756 +g1,11387:14731362,33000756 +g1,11387:19046763,33000756 +k1,11387:19046763,33000756:43490 +h1,11387:21081977,33000756:0,0,0 +k1,11387:32583029,33000756:11501052 +g1,11387:32583029,33000756 +) +(1,11388:6764466,33685611:25818563,424439,0 +h1,11388:6764466,33685611:0,0,0 +g1,11388:7428374,33685611 +g1,11388:8424236,33685611 +h1,11388:8756190,33685611:0,0,0 +k1,11388:32583030,33685611:23826840 +g1,11388:32583030,33685611 +) +(1,11389:6764466,34370466:25818563,424439,112852 +h1,11389:6764466,34370466:0,0,0 +g1,11389:8756190,34370466 +g1,11389:9752052,34370466 +g1,11389:10415960,34370466 +g1,11389:14067454,34370466 +h1,11389:14399408,34370466:0,0,0 +k1,11389:32583028,34370466:18183620 +g1,11389:32583028,34370466 +) +(1,11390:6764466,35055321:25818563,424439,79822 +h1,11390:6764466,35055321:0,0,0 +g1,11390:7096420,35055321 +g1,11390:7428374,35055321 +g1,11390:9088144,35055321 +g1,11390:10084006,35055321 +g1,11390:12407684,35055321 +g1,11390:13071592,35055321 +h1,11390:14399408,35055321:0,0,0 +k1,11390:32583028,35055321:18183620 +g1,11390:32583028,35055321 +) +(1,11391:6764466,35740176:25818563,424439,0 +h1,11391:6764466,35740176:0,0,0 +g1,11391:7096420,35740176 +g1,11391:7428374,35740176 +g1,11391:8092282,35740176 +g1,11391:9088144,35740176 +g1,11391:9752052,35740176 +g1,11391:10415960,35740176 +h1,11391:10747914,35740176:0,0,0 +k1,11391:32583030,35740176:21835116 +g1,11391:32583030,35740176 +) +(1,11392:6764466,36425031:25818563,424439,79822 +h1,11392:6764466,36425031:0,0,0 +h1,11392:7096420,36425031:0,0,0 +k1,11392:32583028,36425031:25486608 +g1,11392:32583028,36425031 +) +] +) +g1,11394:32583029,36504853 +g1,11394:6764466,36504853 +g1,11394:6764466,36504853 +g1,11394:32583029,36504853 +g1,11394:32583029,36504853 +) +h1,11394:6764466,36701461:0,0,0 +v1,11398:6764466,37584099:0,393216,0 +(1,11407:6764466,41316027:25818563,4125144,196608 +g1,11407:6764466,41316027 +g1,11407:6764466,41316027 +g1,11407:6567858,41316027 +(1,11407:6567858,41316027:0,4125144,196608 +r1,11449:32779637,41316027:26211779,4321752,196608 +k1,11407:6567857,41316027:-26211780 +) +(1,11407:6567858,41316027:26211779,4125144,196608 +[1,11407:6764466,41316027:25818563,3928536,0 +(1,11400:6764466,37811930:25818563,424439,112852 +(1,11399:6764466,37811930:0,0,0 +g1,11399:6764466,37811930 +g1,11399:6764466,37811930 +g1,11399:6436786,37811930 +(1,11399:6436786,37811930:0,0,0 +) +g1,11399:6764466,37811930 +) +g1,11400:7428374,37811930 +g1,11400:8424236,37811930 +g1,11400:15395270,37811930 +g1,11400:16059178,37811930 +g1,11400:20374579,37811930 +k1,11400:20374579,37811930:43490 +h1,11400:22409793,37811930:0,0,0 +k1,11400:32583029,37811930:10173236 +g1,11400:32583029,37811930 +) +(1,11401:6764466,38496785:25818563,424439,0 +h1,11401:6764466,38496785:0,0,0 +g1,11401:7428374,38496785 +g1,11401:8424236,38496785 +h1,11401:8756190,38496785:0,0,0 +k1,11401:32583030,38496785:23826840 +g1,11401:32583030,38496785 +) +(1,11402:6764466,39181640:25818563,424439,112852 +h1,11402:6764466,39181640:0,0,0 +g1,11402:8756190,39181640 +g1,11402:9752052,39181640 +g1,11402:10415960,39181640 +g1,11402:14067454,39181640 +h1,11402:14399408,39181640:0,0,0 +k1,11402:32583028,39181640:18183620 +g1,11402:32583028,39181640 +) +(1,11403:6764466,39866495:25818563,424439,79822 +h1,11403:6764466,39866495:0,0,0 +g1,11403:7096420,39866495 +g1,11403:7428374,39866495 +g1,11403:9088144,39866495 +g1,11403:10084006,39866495 +g1,11403:12407684,39866495 +g1,11403:13071592,39866495 +h1,11403:14399408,39866495:0,0,0 +k1,11403:32583028,39866495:18183620 +g1,11403:32583028,39866495 +) +(1,11404:6764466,40551350:25818563,424439,0 +h1,11404:6764466,40551350:0,0,0 +g1,11404:7096420,40551350 +g1,11404:7428374,40551350 +g1,11404:8092282,40551350 +g1,11404:9088144,40551350 +g1,11404:9752052,40551350 +g1,11404:10415960,40551350 +h1,11404:10747914,40551350:0,0,0 +k1,11404:32583030,40551350:21835116 +g1,11404:32583030,40551350 +) +(1,11405:6764466,41236205:25818563,424439,79822 +h1,11405:6764466,41236205:0,0,0 +h1,11405:7096420,41236205:0,0,0 +k1,11405:32583028,41236205:25486608 +g1,11405:32583028,41236205 +) +] +) +g1,11407:32583029,41316027 +g1,11407:6764466,41316027 +g1,11407:6764466,41316027 +g1,11407:32583029,41316027 +g1,11407:32583029,41316027 +) +h1,11407:6764466,41512635:0,0,0 +v1,11411:6764466,42395274:0,393216,0 +(1,11418:6764466,44757492:25818563,2755434,196608 +g1,11418:6764466,44757492 +g1,11418:6764466,44757492 +g1,11418:6567858,44757492 +(1,11418:6567858,44757492:0,2755434,196608 +r1,11449:32779637,44757492:26211779,2952042,196608 +k1,11418:6567857,44757492:-26211780 +) +(1,11418:6567858,44757492:26211779,2755434,196608 +[1,11418:6764466,44757492:25818563,2558826,0 +(1,11413:6764466,42623105:25818563,424439,106246 +(1,11412:6764466,42623105:0,0,0 +g1,11412:6764466,42623105 +g1,11412:6764466,42623105 +g1,11412:6436786,42623105 +(1,11412:6436786,42623105:0,0,0 +) +g1,11412:6764466,42623105 +) +g1,11413:7428374,42623105 +g1,11413:8424236,42623105 +g1,11413:11743776,42623105 +g1,11413:12407684,42623105 +g1,11413:13403546,42623105 +g1,11413:14731362,42623105 +g1,11413:19046763,42623105 +k1,11413:19046763,42623105:43490 +h1,11413:21081977,42623105:0,0,0 +k1,11413:32583029,42623105:11501052 +g1,11413:32583029,42623105 +) +(1,11414:6764466,43307960:25818563,431045,112852 +h1,11414:6764466,43307960:0,0,0 +g1,11414:8756190,43307960 +g1,11414:9752052,43307960 +g1,11414:14731361,43307960 +g1,11414:15395269,43307960 +g1,11414:16723085,43307960 +h1,11414:17055039,43307960:0,0,0 +k1,11414:32583029,43307960:15527990 +g1,11414:32583029,43307960 +) +(1,11415:6764466,43992815:25818563,424439,79822 +h1,11415:6764466,43992815:0,0,0 +g1,11415:7096420,43992815 +g1,11415:7428374,43992815 +g1,11415:9088144,43992815 +g1,11415:10084006,43992815 +g1,11415:12407684,43992815 +g1,11415:13071592,43992815 +h1,11415:14399408,43992815:0,0,0 +k1,11415:32583028,43992815:18183620 +g1,11415:32583028,43992815 +) +(1,11416:6764466,44677670:25818563,424439,79822 +h1,11416:6764466,44677670:0,0,0 +h1,11416:7096420,44677670:0,0,0 +k1,11416:32583028,44677670:25486608 +g1,11416:32583028,44677670 +) +] +) +g1,11418:32583029,44757492 +g1,11418:6764466,44757492 +g1,11418:6764466,44757492 +g1,11418:32583029,44757492 +g1,11418:32583029,44757492 +) +h1,11418:6764466,44954100:0,0,0 +] +g1,11449:32583029,45706769 +) +] +(1,11449:32583029,45706769:0,0,0 +g1,11449:32583029,45706769 +) +) +] +(1,11449:6630773,47279633:25952256,0,0 +h1,11449:6630773,47279633:25952256,0,0 ) ] -(1,11450:4262630,4025873:0,0,0 -[1,11450:-473656,4025873:0,0,0 -(1,11450:-473656,-710413:0,0,0 -(1,11450:-473656,-710413:0,0,0 -g1,11450:-473656,-710413 +(1,11449:4262630,4025873:0,0,0 +[1,11449:-473656,4025873:0,0,0 +(1,11449:-473656,-710413:0,0,0 +(1,11449:-473656,-710413:0,0,0 +g1,11449:-473656,-710413 ) -g1,11450:-473656,-710413 +g1,11449:-473656,-710413 ) ] ) ] !14942 -}178 -Input:1911:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1912:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1913:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}179 Input:1914:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1915:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1916:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -205064,40 +205244,43 @@ Input:1923:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1924:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1925:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1926:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1927:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1928:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1929:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{179 -[1,11528:4262630,47279633:28320399,43253760,0 -(1,11528:4262630,4025873:0,0,0 -[1,11528:-473656,4025873:0,0,0 -(1,11528:-473656,-710413:0,0,0 -(1,11528:-473656,-644877:0,0,0 -k1,11528:-473656,-644877:-65536 +{180 +[1,11527:4262630,47279633:28320399,43253760,0 +(1,11527:4262630,4025873:0,0,0 +[1,11527:-473656,4025873:0,0,0 +(1,11527:-473656,-710413:0,0,0 +(1,11527:-473656,-644877:0,0,0 +k1,11527:-473656,-644877:-65536 ) -(1,11528:-473656,4736287:0,0,0 -k1,11528:-473656,4736287:5209943 +(1,11527:-473656,4736287:0,0,0 +k1,11527:-473656,4736287:5209943 ) -g1,11528:-473656,-710413 +g1,11527:-473656,-710413 ) ] ) -[1,11528:6630773,47279633:25952256,43253760,0 -[1,11528:6630773,4812305:25952256,786432,0 -(1,11528:6630773,4812305:25952256,505283,134348 -(1,11528:6630773,4812305:25952256,505283,134348 -g1,11528:3078558,4812305 -[1,11528:3078558,4812305:0,0,0 -(1,11528:3078558,2439708:0,1703936,0 -k1,11528:1358238,2439708:-1720320 +[1,11527:6630773,47279633:25952256,43253760,0 +[1,11527:6630773,4812305:25952256,786432,0 +(1,11527:6630773,4812305:25952256,505283,134348 +(1,11527:6630773,4812305:25952256,505283,134348 +g1,11527:3078558,4812305 +[1,11527:3078558,4812305:0,0,0 +(1,11527:3078558,2439708:0,1703936,0 +k1,11527:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11528:2537886,2439708:1179648,16384,0 +r1,11527:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11528:3078558,1915420:16384,1179648,0 +r1,11527:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -205107,16 +205290,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11528:3078558,4812305:0,0,0 -(1,11528:3078558,2439708:0,1703936,0 -g1,11528:29030814,2439708 -g1,11528:36135244,2439708 +[1,11527:3078558,4812305:0,0,0 +(1,11527:3078558,2439708:0,1703936,0 +g1,11527:29030814,2439708 +g1,11527:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11528:36151628,1915420:16384,1179648,0 +r1,11527:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -205125,25 +205308,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11528:37855564,2439708:1179648,16384,0 +r1,11527:37855564,2439708:1179648,16384,0 ) ) -k1,11528:3078556,2439708:-34777008 +k1,11527:3078556,2439708:-34777008 ) ] -[1,11528:3078558,4812305:0,0,0 -(1,11528:3078558,49800853:0,16384,2228224 -k1,11528:1358238,49800853:-1720320 +[1,11527:3078558,4812305:0,0,0 +(1,11527:3078558,49800853:0,16384,2228224 +k1,11527:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11528:2537886,49800853:1179648,16384,0 +r1,11527:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11528:3078558,51504789:16384,1179648,0 +r1,11527:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -205153,16 +205336,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11528:3078558,4812305:0,0,0 -(1,11528:3078558,49800853:0,16384,2228224 -g1,11528:29030814,49800853 -g1,11528:36135244,49800853 +[1,11527:3078558,4812305:0,0,0 +(1,11527:3078558,49800853:0,16384,2228224 +g1,11527:29030814,49800853 +g1,11527:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11528:36151628,51504789:16384,1179648,0 +r1,11527:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -205171,1017 +205354,1017 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11528:37855564,49800853:1179648,16384,0 -) -) -k1,11528:3078556,49800853:-34777008 -) -] -g1,11528:6630773,4812305 -k1,11528:21678495,4812305:13852345 -g1,11528:23301166,4812305 -g1,11528:24088253,4812305 -g1,11528:28572226,4812305 -g1,11528:29981905,4812305 -) -) -] -[1,11528:6630773,45706769:25952256,40108032,0 -(1,11528:6630773,45706769:25952256,40108032,0 -(1,11528:6630773,45706769:0,0,0 -g1,11528:6630773,45706769 -) -[1,11528:6630773,45706769:25952256,40108032,0 -v1,11450:6630773,6254097:0,393216,0 -(1,11450:6630773,12600501:25952256,6739620,0 -g1,11450:6630773,12600501 -g1,11450:6237557,12600501 -r1,11528:6368629,12600501:131072,6739620,0 -g1,11450:6567858,12600501 -g1,11450:6764466,12600501 -[1,11450:6764466,12600501:25818563,6739620,0 -v1,11423:6764466,6254097:0,393216,0 -(1,11430:6764466,8616315:25818563,2755434,196608 -g1,11430:6764466,8616315 -g1,11430:6764466,8616315 -g1,11430:6567858,8616315 -(1,11430:6567858,8616315:0,2755434,196608 -r1,11528:32779637,8616315:26211779,2952042,196608 -k1,11430:6567857,8616315:-26211780 -) -(1,11430:6567858,8616315:26211779,2755434,196608 -[1,11430:6764466,8616315:25818563,2558826,0 -(1,11425:6764466,6481928:25818563,424439,112852 -(1,11424:6764466,6481928:0,0,0 -g1,11424:6764466,6481928 -g1,11424:6764466,6481928 -g1,11424:6436786,6481928 -(1,11424:6436786,6481928:0,0,0 -) -g1,11424:6764466,6481928 -) -g1,11425:7428374,6481928 -g1,11425:8424236,6481928 -g1,11425:15395270,6481928 -g1,11425:16059178,6481928 -g1,11425:20374579,6481928 -k1,11425:20374579,6481928:43490 -h1,11425:22409793,6481928:0,0,0 -k1,11425:32583029,6481928:10173236 -g1,11425:32583029,6481928 -) -(1,11426:6764466,7166783:25818563,431045,112852 -h1,11426:6764466,7166783:0,0,0 -g1,11426:8756190,7166783 -g1,11426:9752052,7166783 -g1,11426:14731361,7166783 -g1,11426:15395269,7166783 -g1,11426:16723085,7166783 -h1,11426:17055039,7166783:0,0,0 -k1,11426:32583029,7166783:15527990 -g1,11426:32583029,7166783 -) -(1,11427:6764466,7851638:25818563,424439,79822 -h1,11427:6764466,7851638:0,0,0 -g1,11427:7096420,7851638 -g1,11427:7428374,7851638 -g1,11427:9088144,7851638 -g1,11427:10084006,7851638 -g1,11427:12407684,7851638 -g1,11427:13071592,7851638 -h1,11427:14399408,7851638:0,0,0 -k1,11427:32583028,7851638:18183620 -g1,11427:32583028,7851638 -) -(1,11428:6764466,8536493:25818563,424439,79822 -h1,11428:6764466,8536493:0,0,0 -h1,11428:7096420,8536493:0,0,0 -k1,11428:32583028,8536493:25486608 -g1,11428:32583028,8536493 -) -] -) -g1,11430:32583029,8616315 -g1,11430:6764466,8616315 -g1,11430:6764466,8616315 -g1,11430:32583029,8616315 -g1,11430:32583029,8616315 -) -h1,11430:6764466,8812923:0,0,0 -v1,11434:6764466,9497778:0,393216,0 -(1,11439:6764466,10523316:25818563,1418754,196608 -g1,11439:6764466,10523316 -g1,11439:6764466,10523316 -g1,11439:6567858,10523316 -(1,11439:6567858,10523316:0,1418754,196608 -r1,11528:32779637,10523316:26211779,1615362,196608 -k1,11439:6567857,10523316:-26211780 -) -(1,11439:6567858,10523316:26211779,1418754,196608 -[1,11439:6764466,10523316:25818563,1222146,0 -(1,11436:6764466,9725609:25818563,424439,112852 -(1,11435:6764466,9725609:0,0,0 -g1,11435:6764466,9725609 -g1,11435:6764466,9725609 -g1,11435:6436786,9725609 -(1,11435:6436786,9725609:0,0,0 -) -g1,11435:6764466,9725609 -) -g1,11436:7428374,9725609 -g1,11436:11079867,9725609 -g1,11436:13071591,9725609 -g1,11436:16723084,9725609 -k1,11436:16723084,9725609:0 -h1,11436:19710669,9725609:0,0,0 -k1,11436:32583029,9725609:12872360 -g1,11436:32583029,9725609 -) -(1,11437:6764466,10410464:25818563,424439,112852 -h1,11437:6764466,10410464:0,0,0 -g1,11437:7428374,10410464 -g1,11437:8424236,10410464 -g1,11437:13403546,10410464 -g1,11437:14067454,10410464 -k1,11437:14067454,10410464:0 -h1,11437:19378718,10410464:0,0,0 -k1,11437:32583029,10410464:13204311 -g1,11437:32583029,10410464 -) -] -) -g1,11439:32583029,10523316 -g1,11439:6764466,10523316 -g1,11439:6764466,10523316 -g1,11439:32583029,10523316 -g1,11439:32583029,10523316 -) -h1,11439:6764466,10719924:0,0,0 -v1,11443:6764466,11404779:0,393216,0 -(1,11448:6764466,12403893:25818563,1392330,196608 -g1,11448:6764466,12403893 -g1,11448:6764466,12403893 -g1,11448:6567858,12403893 -(1,11448:6567858,12403893:0,1392330,196608 -r1,11528:32779637,12403893:26211779,1588938,196608 -k1,11448:6567857,12403893:-26211780 -) -(1,11448:6567858,12403893:26211779,1392330,196608 -[1,11448:6764466,12403893:25818563,1195722,0 -(1,11445:6764466,11639216:25818563,431045,106246 -(1,11444:6764466,11639216:0,0,0 -g1,11444:6764466,11639216 -g1,11444:6764466,11639216 -g1,11444:6436786,11639216 -(1,11444:6436786,11639216:0,0,0 -) -g1,11444:6764466,11639216 -) -g1,11445:7428374,11639216 -g1,11445:11079867,11639216 -g1,11445:14067452,11639216 -k1,11445:14067452,11639216:0 -h1,11445:16059176,11639216:0,0,0 -k1,11445:32583029,11639216:16523853 -g1,11445:32583029,11639216 -) -(1,11446:6764466,12324071:25818563,431045,79822 -h1,11446:6764466,12324071:0,0,0 -g1,11446:7428374,12324071 -g1,11446:8424236,12324071 -k1,11446:8424236,12324071:0 -h1,11446:10747914,12324071:0,0,0 -k1,11446:32583030,12324071:21835116 -g1,11446:32583030,12324071 -) -] -) -g1,11448:32583029,12403893 -g1,11448:6764466,12403893 -g1,11448:6764466,12403893 -g1,11448:32583029,12403893 -g1,11448:32583029,12403893 -) -h1,11448:6764466,12600501:0,0,0 -] -g1,11450:32583029,12600501 -) -h1,11450:6630773,12600501:0,0,0 -(1,11453:6630773,13465581:25952256,505283,126483 -h1,11452:6630773,13465581:983040,0,0 -k1,11452:8421326,13465581:179678 -k1,11452:10718471,13465581:179677 -k1,11452:13615272,13465581:179678 -k1,11452:15540174,13465581:179678 -k1,11452:16177949,13465581:179678 -k1,11452:16889123,13465581:179677 -k1,11452:18670501,13465581:179678 -k1,11452:22059477,13465581:179678 -k1,11452:22890583,13465581:179678 -k1,11452:25810320,13465581:179677 -k1,11452:26672883,13465581:179678 -k1,11452:29954380,13465581:179678 -k1,11452:32583029,13465581:0 -) -(1,11453:6630773,14330661:25952256,513147,126483 -k1,11452:7869252,14330661:219394 -k1,11452:12164331,14330661:219395 -k1,11452:13043017,14330661:219394 -k1,11452:14281497,14330661:219395 -k1,11452:17769171,14330661:219394 -k1,11452:19403487,14330661:219394 -k1,11452:20309044,14330661:219395 -k1,11452:20986535,14330661:219394 -k1,11452:21737426,14330661:219394 -k1,11452:22975906,14330661:219395 -k1,11452:24352010,14330661:219394 -k1,11452:27404526,14330661:219395 -k1,11452:29225620,14330661:219394 -k1,11452:32583029,14330661:0 -) -(1,11453:6630773,15195741:25952256,513147,134348 -k1,11452:8031189,15195741:225356 -k1,11452:9752733,15195741:225357 -k1,11452:10925740,15195741:225356 -k1,11452:13268564,15195741:225356 -k1,11452:15239145,15195741:225357 -k1,11452:17184821,15195741:225356 -k1,11452:18096339,15195741:225356 -k1,11452:19092399,15195741:225357 -k1,11452:21979172,15195741:225356 -k1,11452:22820566,15195741:225356 -k1,11452:25324610,15195741:225357 -h1,11452:26867328,15195741:0,0,0 -k1,11452:27092684,15195741:225356 -k1,11452:28127410,15195741:225356 -k1,11452:29850920,15195741:225357 -h1,11452:31046297,15195741:0,0,0 -k1,11452:31478747,15195741:225356 -k1,11452:32583029,15195741:0 -) -(1,11453:6630773,16060821:25952256,513147,126483 -k1,11452:7618122,16060821:239583 -k1,11452:9851967,16060821:239584 -k1,11452:10742978,16060821:239583 -k1,11452:13337270,16060821:239583 -k1,11452:14595938,16060821:239583 -k1,11452:17166638,16060821:239584 -k1,11452:18498706,16060821:239583 -k1,11452:19405445,16060821:239583 -(1,11452:19405445,16060821:0,459977,115847 -r1,11528:20467134,16060821:1061689,575824,115847 -k1,11452:19405445,16060821:-1061689 -) -(1,11452:19405445,16060821:1061689,459977,115847 -k1,11452:19405445,16060821:3277 -h1,11452:20463857,16060821:0,411205,112570 -) -k1,11452:20706717,16060821:239583 -k1,11452:22865195,16060821:239584 -k1,11452:23317729,16060821:239542 -k1,11452:26349802,16060821:239584 -k1,11452:27608470,16060821:239583 -k1,11452:31923737,16060821:239583 -k1,11452:32583029,16060821:0 -) -(1,11453:6630773,16925901:25952256,513147,134348 -k1,11452:9623277,16925901:230161 -k1,11452:13515590,16925901:230161 -k1,11452:14507279,16925901:230161 -k1,11452:17803870,16925901:230161 -k1,11452:20432649,16925901:230161 -k1,11452:21610461,16925901:230161 -k1,11452:23981683,16925901:230161 -(1,11452:23981683,16925901:0,452978,115847 -r1,11528:26098508,16925901:2116825,568825,115847 -k1,11452:23981683,16925901:-2116825 -) -(1,11452:23981683,16925901:2116825,452978,115847 -k1,11452:23981683,16925901:3277 -h1,11452:26095231,16925901:0,411205,112570 -) -k1,11452:26328669,16925901:230161 -k1,11452:28848658,16925901:230161 -k1,11452:30472770,16925901:230161 -k1,11453:32583029,16925901:0 -) -(1,11453:6630773,17790981:25952256,615216,134348 -k1,11452:8489941,17790981:188000 -k1,11452:10419233,17790981:188000 -$1,11452:10419233,17790981 -$1,11452:10987430,17790981 -k1,11452:11175430,17790981:188000 -k1,11452:14283715,17790981:188001 -k1,11452:16895236,17790981:188000 -k1,11452:18650857,17790981:188000 -$1,11452:18650857,17790981 -k1,11452:19568796,17790981:121021 -k1,11452:20258013,17790981:121020 -$1,11452:21054931,17790981 -k1,11452:21416602,17790981:188001 -k1,11452:22873379,17790981:188000 -k1,11452:23629576,17790981:188000 -$1,11452:23629576,17790981 -(1,11452:24426494,17515700:311689,339935,0 -) -$1,11452:24738183,17790981 -k1,11452:25099853,17790981:188000 -k1,11452:25939281,17790981:188000 -$1,11452:25939281,17790981 -k1,11452:26845435,17790981:109236 -k1,11452:28161833,17790981:121021 -k1,11452:28851051,17790981:121021 -k1,11452:29757205,17790981:109236 -$1,11452:30952582,17790981 -k1,11452:31314252,17790981:188000 -k1,11452:32583029,17790981:0 -) -(1,11453:6630773,18656061:25952256,615216,134348 -g1,11452:7398199,18656061 -$1,11452:7398199,18656061 -(1,11452:8195117,18380780:311689,339935,8258 -) -$1,11452:8506806,18656061 -g1,11452:8706035,18656061 -g1,11452:11097443,18656061 -h1,11452:12466490,18656061:0,0,0 -k1,11453:32583028,18656061:19857016 -g1,11453:32583028,18656061 -) -(1,11455:6630773,19521141:25952256,513147,126483 -h1,11454:6630773,19521141:983040,0,0 -k1,11454:8508397,19521141:266749 -k1,11454:9978388,19521141:266750 -k1,11454:12486468,19521141:266749 -k1,11454:14293969,19521141:266750 -k1,11454:18947698,19521141:266749 -k1,11454:19873740,19521141:266750 -k1,11454:22771760,19521141:266749 -k1,11454:23689937,19521141:266749 -(1,11454:23689937,19521141:0,452978,115847 -r1,11528:24048203,19521141:358266,568825,115847 -k1,11454:23689937,19521141:-358266 -) -(1,11454:23689937,19521141:358266,452978,115847 -k1,11454:23689937,19521141:3277 -h1,11454:24044926,19521141:0,411205,112570 -) -k1,11454:24314953,19521141:266750 -k1,11454:25624380,19521141:266749 -k1,11454:26957401,19521141:266750 -k1,11454:29852799,19521141:266749 -k1,11455:32583029,19521141:0 -) -(1,11455:6630773,20386221:25952256,513147,134348 -k1,11454:8248604,20386221:166209 -k1,11454:9030851,20386221:166209 -k1,11454:10781066,20386221:166210 -k1,11454:14299442,20386221:166209 -k1,11454:15859602,20386221:166209 -k1,11454:17044896,20386221:166209 -k1,11454:21109187,20386221:166210 -k1,11454:22223047,20386221:166209 -k1,11454:23408341,20386221:166209 -k1,11454:24880683,20386221:166209 -k1,11454:27708310,20386221:166210 -k1,11454:28560681,20386221:166209 -k1,11454:30424928,20386221:166209 -k1,11454:32583029,20386221:0 -) -(1,11455:6630773,21251301:25952256,505283,134348 -k1,11454:7670984,21251301:251813 -k1,11454:9936062,21251301:251812 -k1,11454:11395048,21251301:251813 -k1,11454:13922076,21251301:251813 -k1,11454:15370575,21251301:251812 -k1,11454:16794827,21251301:251813 -k1,11454:19164107,21251301:251812 -k1,11454:21161144,21251301:251813 -k1,11454:23542222,21251301:251813 -k1,11454:25232549,21251301:251812 -k1,11454:26503447,21251301:251813 -k1,11454:29078511,21251301:251813 -k1,11454:29981751,21251301:251812 -k1,11454:31351608,21251301:251813 -k1,11455:32583029,21251301:0 -) -(1,11455:6630773,22116381:25952256,513147,134348 -k1,11454:9454373,22116381:229030 -k1,11454:10342695,22116381:229030 -k1,11454:11590810,22116381:229030 -k1,11454:13088617,22116381:229030 -k1,11454:13976940,22116381:229031 -k1,11454:16293947,22116381:229030 -(1,11454:16293947,22116381:0,414482,115847 -r1,11528:16652213,22116381:358266,530329,115847 -k1,11454:16293947,22116381:-358266 -) -(1,11454:16293947,22116381:358266,414482,115847 -k1,11454:16293947,22116381:3277 -h1,11454:16648936,22116381:0,411205,112570 -) -k1,11454:17054913,22116381:229030 -k1,11454:17771501,22116381:229000 -k1,11454:19873550,22116381:229030 -k1,11454:21517502,22116381:229030 -k1,11454:23133929,22116381:229030 -k1,11454:24897157,22116381:229030 -k1,11454:26861581,22116381:229031 -k1,11454:27446471,22116381:229030 -k1,11454:28775195,22116381:229030 -k1,11454:29655653,22116381:229030 -(1,11454:29655653,22116381:0,452978,115847 -r1,11528:31420766,22116381:1765113,568825,115847 -k1,11454:29655653,22116381:-1765113 -) -(1,11454:29655653,22116381:1765113,452978,115847 -k1,11454:29655653,22116381:3277 -h1,11454:31417489,22116381:0,411205,112570 -) -k1,11454:31649796,22116381:229030 -k1,11454:32583029,22116381:0 -) -(1,11455:6630773,22981461:25952256,513147,134348 -k1,11454:8256184,22981461:173789 -k1,11454:9807541,22981461:173790 -k1,11454:13031376,22981461:173789 -k1,11454:17280849,22981461:173789 -k1,11454:20635757,22981461:173790 -k1,11454:21460974,22981461:173789 -k1,11454:23752232,22981461:173790 -k1,11454:25844915,22981461:173789 -k1,11454:27620404,22981461:173789 -k1,11454:29890691,22981461:173790 -k1,11454:31012131,22981461:173789 -k1,11454:32583029,22981461:0 -) -(1,11455:6630773,23846541:25952256,513147,126483 -k1,11454:9809027,23846541:271077 -k1,11454:11460948,23846541:271077 -k1,11454:14716536,23846541:271078 -k1,11454:16194786,23846541:271077 -k1,11454:21137269,23846541:271077 -k1,11454:22169874,23846541:271077 -(1,11454:22169874,23846541:0,452978,115847 -r1,11528:24638411,23846541:2468537,568825,115847 -k1,11454:22169874,23846541:-2468537 -) -(1,11454:22169874,23846541:2468537,452978,115847 -k1,11454:22169874,23846541:3277 -h1,11454:24635134,23846541:0,411205,112570 -) -k1,11454:24909488,23846541:271077 -k1,11454:26556167,23846541:271078 -k1,11454:27774895,23846541:271077 -k1,11454:29762360,23846541:271077 -k1,11454:32583029,23846541:0 -) -(1,11455:6630773,24711621:25952256,513147,126483 -k1,11454:8404098,24711621:205704 -k1,11454:10495273,24711621:205704 -k1,11454:11569329,24711621:205704 -k1,11454:12879315,24711621:205704 -k1,11454:14601522,24711621:205704 -k1,11454:16091732,24711621:205704 -(1,11454:16091732,24711621:0,452978,115847 -r1,11528:18560269,24711621:2468537,568825,115847 -k1,11454:16091732,24711621:-2468537 -) -(1,11454:16091732,24711621:2468537,452978,115847 -k1,11454:16091732,24711621:3277 -h1,11454:18556992,24711621:0,411205,112570 -) -k1,11454:18765973,24711621:205704 -k1,11454:20072681,24711621:205703 -k1,11454:20634245,24711621:205704 -k1,11454:22623184,24711621:205704 -k1,11454:25180975,24711621:205704 -k1,11454:28312862,24711621:205704 -k1,11454:29961013,24711621:205704 -k1,11454:30937420,24711621:205704 -k1,11455:32583029,24711621:0 -) -(1,11455:6630773,25576701:25952256,513147,126483 -k1,11454:7675062,25576701:252614 -(1,11454:7675062,25576701:0,459977,115847 -r1,11528:8736751,25576701:1061689,575824,115847 -k1,11454:7675062,25576701:-1061689 -) -(1,11454:7675062,25576701:1061689,459977,115847 -k1,11454:7675062,25576701:3277 -h1,11454:8733474,25576701:0,411205,112570 -) -k1,11454:8989365,25576701:252614 -k1,11454:10830572,25576701:252614 -(1,11454:10830572,25576701:0,452978,115847 -r1,11528:14002532,25576701:3171960,568825,115847 -k1,11454:10830572,25576701:-3171960 -) -(1,11454:10830572,25576701:3171960,452978,115847 -k1,11454:10830572,25576701:3277 -h1,11454:13999255,25576701:0,411205,112570 -) -k1,11454:14255147,25576701:252615 -k1,11454:15714934,25576701:252614 -k1,11454:18602751,25576701:252614 -$1,11454:18602751,25576701 -$1,11454:19569407,25576701 -k1,11454:19822021,25576701:252614 -k1,11454:21266080,25576701:252614 -$1,11454:21266080,25576701 -$1,11454:22631195,25576701 -k1,11454:22883809,25576701:252614 -k1,11454:24979952,25576701:252615 -k1,11454:26675013,25576701:252614 -k1,11454:27946712,25576701:252614 -k1,11454:30440657,25576701:252614 -k1,11454:32583029,25576701:0 -) -(1,11455:6630773,26441781:25952256,513147,134348 -g1,11454:9814512,26441781 -g1,11454:13375738,26441781 -g1,11454:14384337,26441781 -g1,11454:15602651,26441781 -g1,11454:17070657,26441781 -g1,11454:17929178,26441781 -g1,11454:19147492,26441781 -k1,11455:32583029,26441781:11295787 -g1,11455:32583029,26441781 -) -v1,11477:6630773,27306861:0,393216,0 -(1,11528:6630773,44650332:25952256,17736687,0 -g1,11528:6630773,44650332 -g1,11528:6237557,44650332 -r1,11528:6368629,44650332:131072,17736687,0 -g1,11528:6567858,44650332 -g1,11528:6764466,44650332 -[1,11528:6764466,44650332:25818563,17736687,0 -(1,11478:6764466,27615159:25818563,701514,196608 -(1,11477:6764466,27615159:0,701514,196608 -r1,11528:7761522,27615159:997056,898122,196608 -k1,11477:6764466,27615159:-997056 -) -(1,11477:6764466,27615159:997056,701514,196608 -) -k1,11477:7964916,27615159:203394 -k1,11477:8292596,27615159:327680 -k1,11477:9692677,27615159:203394 -k1,11477:12197040,27615159:203394 -k1,11477:14268865,27615159:203394 -k1,11477:16132941,27615159:203394 -k1,11477:17355420,27615159:203394 -k1,11477:19055002,27615159:203395 -k1,11477:20206047,27615159:203394 -k1,11477:21428526,27615159:203394 -k1,11477:22528453,27615159:203394 -k1,11477:26393999,27615159:203394 -k1,11477:29778511,27615159:203394 -k1,11477:30597943,27615159:203394 -k1,11477:32583029,27615159:0 -) -(1,11478:6764466,28480239:25818563,513147,115847 -h1,11477:8133513,28480239:0,0,0 -g1,11477:8506412,28480239 -g1,11477:10624535,28480239 -(1,11477:10624535,28480239:0,414482,115847 -r1,11528:10982801,28480239:358266,530329,115847 -k1,11477:10624535,28480239:-358266 -) -(1,11477:10624535,28480239:358266,414482,115847 -k1,11477:10624535,28480239:3277 -h1,11477:10979524,28480239:0,411205,112570 -) -g1,11477:11182030,28480239 -g1,11477:12588432,28480239 -g1,11477:13143521,28480239 -g1,11477:15962879,28480239 -g1,11477:18249430,28480239 -g1,11477:22240572,28480239 -g1,11477:23833752,28480239 -g1,11477:26728477,28480239 -(1,11477:26728477,28480239:0,452978,115847 -r1,11528:29197014,28480239:2468537,568825,115847 -k1,11477:26728477,28480239:-2468537 -) -(1,11477:26728477,28480239:2468537,452978,115847 -k1,11477:26728477,28480239:3277 -h1,11477:29193737,28480239:0,411205,112570 -) -k1,11478:32583029,28480239:3333587 -g1,11478:32583029,28480239 -) -(1,11480:6764466,29345319:25818563,513147,126483 -h1,11479:6764466,29345319:983040,0,0 -k1,11479:9117940,29345319:173747 -k1,11479:10958268,29345319:173747 -(1,11479:10958268,29345319:0,459977,115847 -r1,11528:12019957,29345319:1061689,575824,115847 -k1,11479:10958268,29345319:-1061689 -) -(1,11479:10958268,29345319:1061689,459977,115847 -k1,11479:10958268,29345319:3277 -h1,11479:12016680,29345319:0,411205,112570 -) -k1,11479:12193705,29345319:173748 -k1,11479:13782374,29345319:173747 -k1,11479:15060403,29345319:173747 -k1,11479:15981916,29345319:173747 -k1,11479:18874752,29345319:173747 -k1,11479:19810028,29345319:173748 -k1,11479:22679271,29345319:173747 -(1,11479:22679271,29345319:0,452978,115847 -r1,11528:24444384,29345319:1765113,568825,115847 -k1,11479:22679271,29345319:-1765113 -) -(1,11479:22679271,29345319:1765113,452978,115847 -k1,11479:22679271,29345319:3277 -h1,11479:24441107,29345319:0,411205,112570 -) -k1,11479:24618131,29345319:173747 -k1,11479:26677349,29345319:173747 -k1,11479:29192043,29345319:173748 -k1,11479:30384875,29345319:173747 -k1,11479:31923737,29345319:173747 -k1,11479:32583029,29345319:0 -) -(1,11480:6764466,30210399:25818563,505283,126483 -g1,11479:7319555,30210399 -g1,11479:9670331,30210399 -g1,11479:11964746,30210399 -g1,11479:13183060,30210399 -g1,11479:14970882,30210399 -(1,11479:14970882,30210399:0,452978,115847 -r1,11528:17087707,30210399:2116825,568825,115847 -k1,11479:14970882,30210399:-2116825 -) -(1,11479:14970882,30210399:2116825,452978,115847 -g1,11479:16732718,30210399 -h1,11479:17084430,30210399:0,411205,112570 -) -g1,11479:17286936,30210399 -g1,11479:20020442,30210399 -g1,11479:22102520,30210399 -g1,11479:24009617,30210399 -g1,11479:25365556,30210399 -g1,11479:26177547,30210399 -g1,11479:26732636,30210399 -k1,11480:32583029,30210399:4372557 -g1,11480:32583029,30210399 -) -v1,11482:6764466,30895254:0,393216,0 -(1,11492:6764466,35338461:25818563,4836423,196608 -g1,11492:6764466,35338461 -g1,11492:6764466,35338461 -g1,11492:6567858,35338461 -(1,11492:6567858,35338461:0,4836423,196608 -r1,11528:32779637,35338461:26211779,5033031,196608 -k1,11492:6567857,35338461:-26211780 -) -(1,11492:6567858,35338461:26211779,4836423,196608 -[1,11492:6764466,35338461:25818563,4639815,0 -(1,11484:6764466,31123085:25818563,424439,79822 -(1,11483:6764466,31123085:0,0,0 -g1,11483:6764466,31123085 -g1,11483:6764466,31123085 -g1,11483:6436786,31123085 -(1,11483:6436786,31123085:0,0,0 -) -g1,11483:6764466,31123085 -) -g1,11484:9420098,31123085 -g1,11484:10415960,31123085 -k1,11484:10415960,31123085:0 -h1,11484:13403546,31123085:0,0,0 -k1,11484:32583030,31123085:19179484 -g1,11484:32583030,31123085 -) -(1,11485:6764466,31807940:25818563,431045,79822 -h1,11485:6764466,31807940:0,0,0 -g1,11485:8092282,31807940 -g1,11485:9088144,31807940 -g1,11485:10084006,31807940 -g1,11485:13735500,31807940 -h1,11485:14067454,31807940:0,0,0 -k1,11485:32583030,31807940:18515576 -g1,11485:32583030,31807940 -) -(1,11486:6764466,32492795:25818563,424439,79822 -h1,11486:6764466,32492795:0,0,0 -g1,11486:7096420,32492795 -g1,11486:7428374,32492795 -g1,11486:11079867,32492795 -g1,11486:12075729,32492795 -h1,11486:12407683,32492795:0,0,0 -k1,11486:32583029,32492795:20175346 -g1,11486:32583029,32492795 -) -(1,11487:6764466,33177650:25818563,431045,112852 -h1,11487:6764466,33177650:0,0,0 -g1,11487:7096420,33177650 -g1,11487:7428374,33177650 -g1,11487:8756190,33177650 -g1,11487:9752052,33177650 -g1,11487:10747914,33177650 -k1,11487:10747914,33177650:0 -h1,11487:14067454,33177650:0,0,0 -k1,11487:32583030,33177650:18515576 -g1,11487:32583030,33177650 -) -(1,11488:6764466,33862505:25818563,424439,112852 -h1,11488:6764466,33862505:0,0,0 -g1,11488:7096420,33862505 -g1,11488:7428374,33862505 -g1,11488:7760328,33862505 -g1,11488:8092282,33862505 -g1,11488:11743775,33862505 -g1,11488:12739637,33862505 -g1,11488:16391130,33862505 -g1,11488:17055038,33862505 -g1,11488:18714808,33862505 -h1,11488:19378716,33862505:0,0,0 -k1,11488:32583029,33862505:13204313 -g1,11488:32583029,33862505 -) -(1,11489:6764466,34547360:25818563,424439,79822 -h1,11489:6764466,34547360:0,0,0 -h1,11489:7096420,34547360:0,0,0 -k1,11489:32583028,34547360:25486608 -g1,11489:32583028,34547360 -) -(1,11490:6764466,35232215:25818563,424439,106246 -h1,11490:6764466,35232215:0,0,0 -k1,11490:6764466,35232215:0 -h1,11490:11411821,35232215:0,0,0 -k1,11490:32583029,35232215:21171208 -g1,11490:32583029,35232215 -) -] -) -g1,11492:32583029,35338461 -g1,11492:6764466,35338461 -g1,11492:6764466,35338461 -g1,11492:32583029,35338461 -g1,11492:32583029,35338461 -) -h1,11492:6764466,35535069:0,0,0 -v1,11496:6764466,36219924:0,393216,0 -(1,11503:6764466,38588748:25818563,2762040,196608 -g1,11503:6764466,38588748 -g1,11503:6764466,38588748 -g1,11503:6567858,38588748 -(1,11503:6567858,38588748:0,2762040,196608 -r1,11528:32779637,38588748:26211779,2958648,196608 -k1,11503:6567857,38588748:-26211780 -) -(1,11503:6567858,38588748:26211779,2762040,196608 -[1,11503:6764466,38588748:25818563,2565432,0 -(1,11498:6764466,36454361:25818563,431045,106246 -(1,11497:6764466,36454361:0,0,0 -g1,11497:6764466,36454361 -g1,11497:6764466,36454361 -g1,11497:6436786,36454361 -(1,11497:6436786,36454361:0,0,0 -) -g1,11497:6764466,36454361 -) -g1,11498:9420098,36454361 -g1,11498:10415960,36454361 -g1,11498:16059178,36454361 -g1,11498:16723086,36454361 -k1,11498:16723086,36454361:24773 -h1,11498:18739583,36454361:0,0,0 -k1,11498:32583029,36454361:13843446 -g1,11498:32583029,36454361 -) -(1,11499:6764466,37139216:25818563,431045,79822 -h1,11499:6764466,37139216:0,0,0 -g1,11499:8092282,37139216 -g1,11499:9088144,37139216 -g1,11499:10084006,37139216 -g1,11499:13735500,37139216 -h1,11499:14067454,37139216:0,0,0 -k1,11499:32583030,37139216:18515576 -g1,11499:32583030,37139216 -) -(1,11500:6764466,37824071:25818563,424439,86428 -h1,11500:6764466,37824071:0,0,0 -g1,11500:7096420,37824071 -g1,11500:7428374,37824071 -g1,11500:11079867,37824071 -g1,11500:12075729,37824071 -g1,11500:15063315,37824071 -h1,11500:15727223,37824071:0,0,0 -k1,11500:32583029,37824071:16855806 -g1,11500:32583029,37824071 -) -(1,11501:6764466,38508926:25818563,424439,79822 -h1,11501:6764466,38508926:0,0,0 -h1,11501:7096420,38508926:0,0,0 -k1,11501:32583028,38508926:25486608 -g1,11501:32583028,38508926 -) -] -) -g1,11503:32583029,38588748 -g1,11503:6764466,38588748 -g1,11503:6764466,38588748 -g1,11503:32583029,38588748 -g1,11503:32583029,38588748 -) -h1,11503:6764466,38785356:0,0,0 -(1,11507:6764466,39650436:25818563,505283,134348 -h1,11506:6764466,39650436:983040,0,0 -k1,11506:9199185,39650436:254992 -k1,11506:11156148,39650436:254993 -k1,11506:12826062,39650436:254992 -k1,11506:14185336,39650436:254992 -k1,11506:15188095,39650436:254993 -k1,11506:18162176,39650436:254992 -k1,11506:19178696,39650436:254992 -k1,11506:19789549,39650436:254993 -k1,11506:21144235,39650436:254992 -k1,11506:22050655,39650436:254992 -(1,11506:22050655,39650436:0,452978,115847 -r1,11528:24519192,39650436:2468537,568825,115847 -k1,11506:22050655,39650436:-2468537 -) -(1,11506:22050655,39650436:2468537,452978,115847 -k1,11506:22050655,39650436:3277 -h1,11506:24515915,39650436:0,411205,112570 -) -k1,11506:24774185,39650436:254993 -k1,11506:26261254,39650436:254992 -k1,11506:28794933,39650436:254992 -h1,11506:29765521,39650436:0,0,0 -k1,11506:30020514,39650436:254993 -k1,11506:31084876,39650436:254992 -k1,11506:32583029,39650436:0 -) -(1,11507:6764466,40515516:25818563,505283,95026 -h1,11506:7940182,40515516:0,0,0 -k1,11507:32583028,40515516:24383324 -g1,11507:32583028,40515516 -) -v1,11509:6764466,41200371:0,393216,0 -(1,11513:6764466,41534448:25818563,727293,196608 -g1,11513:6764466,41534448 -g1,11513:6764466,41534448 -g1,11513:6567858,41534448 -(1,11513:6567858,41534448:0,727293,196608 -r1,11528:32779637,41534448:26211779,923901,196608 -k1,11513:6567857,41534448:-26211780 -) -(1,11513:6567858,41534448:26211779,727293,196608 -[1,11513:6764466,41534448:25818563,530685,0 -(1,11511:6764466,41428202:25818563,424439,106246 -(1,11510:6764466,41428202:0,0,0 -g1,11510:6764466,41428202 -g1,11510:6764466,41428202 -g1,11510:6436786,41428202 -(1,11510:6436786,41428202:0,0,0 -) -g1,11510:6764466,41428202 -) -g1,11511:9420098,41428202 -g1,11511:10415960,41428202 -g1,11511:13403546,41428202 -g1,11511:15727224,41428202 -g1,11511:16391132,41428202 -g1,11511:17386994,41428202 -g1,11511:19046764,41428202 -g1,11511:19710672,41428202 -g1,11511:22698257,41428202 -g1,11511:26017796,41428202 -k1,11511:26017796,41428202:0 -h1,11511:27345612,41428202:0,0,0 -k1,11511:32583029,41428202:5237417 -g1,11511:32583029,41428202 -) -] -) -g1,11513:32583029,41534448 -g1,11513:6764466,41534448 -g1,11513:6764466,41534448 -g1,11513:32583029,41534448 -g1,11513:32583029,41534448 -) -h1,11513:6764466,41731056:0,0,0 -(1,11517:6764466,42596136:25818563,513147,134348 -h1,11516:6764466,42596136:983040,0,0 -k1,11516:11531010,42596136:210481 -k1,11516:12945387,42596136:210481 -k1,11516:14851283,42596136:210480 -k1,11516:15593261,42596136:210481 -k1,11516:16159602,42596136:210481 -k1,11516:19108833,42596136:210481 -k1,11516:22567277,42596136:210480 -k1,11516:24368317,42596136:210481 -k1,11516:24993630,42596136:210470 -k1,11516:27964486,42596136:210480 -k1,11516:28530827,42596136:210481 -k1,11516:31048831,42596136:210481 -k1,11517:32583029,42596136:0 -) -(1,11517:6764466,43461216:25818563,513147,7863 -g1,11516:8231161,43461216 -g1,11516:9378041,43461216 -k1,11517:32583030,43461216:21949320 -g1,11517:32583030,43461216 -) -v1,11519:6764466,44146071:0,393216,0 -(1,11523:6764466,44453724:25818563,700869,196608 -g1,11523:6764466,44453724 -g1,11523:6764466,44453724 -g1,11523:6567858,44453724 -(1,11523:6567858,44453724:0,700869,196608 -r1,11528:32779637,44453724:26211779,897477,196608 -k1,11523:6567857,44453724:-26211780 -) -(1,11523:6567858,44453724:26211779,700869,196608 -[1,11523:6764466,44453724:25818563,504261,0 -(1,11521:6764466,44373902:25818563,424439,79822 -(1,11520:6764466,44373902:0,0,0 -g1,11520:6764466,44373902 -g1,11520:6764466,44373902 -g1,11520:6436786,44373902 -(1,11520:6436786,44373902:0,0,0 -) -g1,11520:6764466,44373902 -) -k1,11521:6764466,44373902:0 -h1,11521:10084006,44373902:0,0,0 -k1,11521:32583030,44373902:22499024 -g1,11521:32583030,44373902 -) -] -) -g1,11523:32583029,44453724 -g1,11523:6764466,44453724 -g1,11523:6764466,44453724 -g1,11523:32583029,44453724 -g1,11523:32583029,44453724 -) -h1,11523:6764466,44650332:0,0,0 -] -g1,11528:32583029,44650332 -) -] -(1,11528:32583029,45706769:0,0,0 -g1,11528:32583029,45706769 +r1,11527:37855564,49800853:1179648,16384,0 +) +) +k1,11527:3078556,49800853:-34777008 +) +] +g1,11527:6630773,4812305 +k1,11527:21678495,4812305:13852345 +g1,11527:23301166,4812305 +g1,11527:24088253,4812305 +g1,11527:28572226,4812305 +g1,11527:29981905,4812305 +) +) +] +[1,11527:6630773,45706769:25952256,40108032,0 +(1,11527:6630773,45706769:25952256,40108032,0 +(1,11527:6630773,45706769:0,0,0 +g1,11527:6630773,45706769 +) +[1,11527:6630773,45706769:25952256,40108032,0 +v1,11449:6630773,6254097:0,393216,0 +(1,11449:6630773,12600501:25952256,6739620,0 +g1,11449:6630773,12600501 +g1,11449:6237557,12600501 +r1,11527:6368629,12600501:131072,6739620,0 +g1,11449:6567858,12600501 +g1,11449:6764466,12600501 +[1,11449:6764466,12600501:25818563,6739620,0 +v1,11422:6764466,6254097:0,393216,0 +(1,11429:6764466,8616315:25818563,2755434,196608 +g1,11429:6764466,8616315 +g1,11429:6764466,8616315 +g1,11429:6567858,8616315 +(1,11429:6567858,8616315:0,2755434,196608 +r1,11527:32779637,8616315:26211779,2952042,196608 +k1,11429:6567857,8616315:-26211780 +) +(1,11429:6567858,8616315:26211779,2755434,196608 +[1,11429:6764466,8616315:25818563,2558826,0 +(1,11424:6764466,6481928:25818563,424439,112852 +(1,11423:6764466,6481928:0,0,0 +g1,11423:6764466,6481928 +g1,11423:6764466,6481928 +g1,11423:6436786,6481928 +(1,11423:6436786,6481928:0,0,0 +) +g1,11423:6764466,6481928 +) +g1,11424:7428374,6481928 +g1,11424:8424236,6481928 +g1,11424:15395270,6481928 +g1,11424:16059178,6481928 +g1,11424:20374579,6481928 +k1,11424:20374579,6481928:43490 +h1,11424:22409793,6481928:0,0,0 +k1,11424:32583029,6481928:10173236 +g1,11424:32583029,6481928 +) +(1,11425:6764466,7166783:25818563,431045,112852 +h1,11425:6764466,7166783:0,0,0 +g1,11425:8756190,7166783 +g1,11425:9752052,7166783 +g1,11425:14731361,7166783 +g1,11425:15395269,7166783 +g1,11425:16723085,7166783 +h1,11425:17055039,7166783:0,0,0 +k1,11425:32583029,7166783:15527990 +g1,11425:32583029,7166783 +) +(1,11426:6764466,7851638:25818563,424439,79822 +h1,11426:6764466,7851638:0,0,0 +g1,11426:7096420,7851638 +g1,11426:7428374,7851638 +g1,11426:9088144,7851638 +g1,11426:10084006,7851638 +g1,11426:12407684,7851638 +g1,11426:13071592,7851638 +h1,11426:14399408,7851638:0,0,0 +k1,11426:32583028,7851638:18183620 +g1,11426:32583028,7851638 +) +(1,11427:6764466,8536493:25818563,424439,79822 +h1,11427:6764466,8536493:0,0,0 +h1,11427:7096420,8536493:0,0,0 +k1,11427:32583028,8536493:25486608 +g1,11427:32583028,8536493 +) +] +) +g1,11429:32583029,8616315 +g1,11429:6764466,8616315 +g1,11429:6764466,8616315 +g1,11429:32583029,8616315 +g1,11429:32583029,8616315 +) +h1,11429:6764466,8812923:0,0,0 +v1,11433:6764466,9497778:0,393216,0 +(1,11438:6764466,10523316:25818563,1418754,196608 +g1,11438:6764466,10523316 +g1,11438:6764466,10523316 +g1,11438:6567858,10523316 +(1,11438:6567858,10523316:0,1418754,196608 +r1,11527:32779637,10523316:26211779,1615362,196608 +k1,11438:6567857,10523316:-26211780 +) +(1,11438:6567858,10523316:26211779,1418754,196608 +[1,11438:6764466,10523316:25818563,1222146,0 +(1,11435:6764466,9725609:25818563,424439,112852 +(1,11434:6764466,9725609:0,0,0 +g1,11434:6764466,9725609 +g1,11434:6764466,9725609 +g1,11434:6436786,9725609 +(1,11434:6436786,9725609:0,0,0 +) +g1,11434:6764466,9725609 +) +g1,11435:7428374,9725609 +g1,11435:11079867,9725609 +g1,11435:13071591,9725609 +g1,11435:16723084,9725609 +k1,11435:16723084,9725609:0 +h1,11435:19710669,9725609:0,0,0 +k1,11435:32583029,9725609:12872360 +g1,11435:32583029,9725609 +) +(1,11436:6764466,10410464:25818563,424439,112852 +h1,11436:6764466,10410464:0,0,0 +g1,11436:7428374,10410464 +g1,11436:8424236,10410464 +g1,11436:13403546,10410464 +g1,11436:14067454,10410464 +k1,11436:14067454,10410464:0 +h1,11436:19378718,10410464:0,0,0 +k1,11436:32583029,10410464:13204311 +g1,11436:32583029,10410464 +) +] +) +g1,11438:32583029,10523316 +g1,11438:6764466,10523316 +g1,11438:6764466,10523316 +g1,11438:32583029,10523316 +g1,11438:32583029,10523316 +) +h1,11438:6764466,10719924:0,0,0 +v1,11442:6764466,11404779:0,393216,0 +(1,11447:6764466,12403893:25818563,1392330,196608 +g1,11447:6764466,12403893 +g1,11447:6764466,12403893 +g1,11447:6567858,12403893 +(1,11447:6567858,12403893:0,1392330,196608 +r1,11527:32779637,12403893:26211779,1588938,196608 +k1,11447:6567857,12403893:-26211780 +) +(1,11447:6567858,12403893:26211779,1392330,196608 +[1,11447:6764466,12403893:25818563,1195722,0 +(1,11444:6764466,11639216:25818563,431045,106246 +(1,11443:6764466,11639216:0,0,0 +g1,11443:6764466,11639216 +g1,11443:6764466,11639216 +g1,11443:6436786,11639216 +(1,11443:6436786,11639216:0,0,0 +) +g1,11443:6764466,11639216 +) +g1,11444:7428374,11639216 +g1,11444:11079867,11639216 +g1,11444:14067452,11639216 +k1,11444:14067452,11639216:0 +h1,11444:16059176,11639216:0,0,0 +k1,11444:32583029,11639216:16523853 +g1,11444:32583029,11639216 +) +(1,11445:6764466,12324071:25818563,431045,79822 +h1,11445:6764466,12324071:0,0,0 +g1,11445:7428374,12324071 +g1,11445:8424236,12324071 +k1,11445:8424236,12324071:0 +h1,11445:10747914,12324071:0,0,0 +k1,11445:32583030,12324071:21835116 +g1,11445:32583030,12324071 +) +] +) +g1,11447:32583029,12403893 +g1,11447:6764466,12403893 +g1,11447:6764466,12403893 +g1,11447:32583029,12403893 +g1,11447:32583029,12403893 +) +h1,11447:6764466,12600501:0,0,0 +] +g1,11449:32583029,12600501 +) +h1,11449:6630773,12600501:0,0,0 +(1,11452:6630773,13465581:25952256,505283,126483 +h1,11451:6630773,13465581:983040,0,0 +k1,11451:8382659,13465581:141011 +k1,11451:10641139,13465581:141012 +k1,11451:13499273,13465581:141011 +k1,11451:15559179,13465581:141012 +k1,11451:16158287,13465581:141011 +k1,11451:16830796,13465581:141012 +k1,11451:18573507,13465581:141011 +k1,11451:21923817,13465581:141012 +k1,11451:22716256,13465581:141011 +k1,11451:25887653,13465581:141012 +k1,11451:26711549,13465581:141011 +k1,11451:29954380,13465581:141012 +k1,11451:32583029,13465581:0 +) +(1,11452:6630773,14330661:25952256,513147,126483 +k1,11451:7855893,14330661:206035 +k1,11451:12137612,14330661:206035 +k1,11451:13002939,14330661:206035 +k1,11451:14228059,14330661:206035 +k1,11451:17702374,14330661:206035 +k1,11451:19497002,14330661:206035 +k1,11451:20389200,14330661:206036 +k1,11451:21053332,14330661:206035 +k1,11451:21790864,14330661:206035 +k1,11451:23015984,14330661:206035 +k1,11451:24378729,14330661:206035 +k1,11451:27417885,14330661:206035 +k1,11451:29225620,14330661:206035 +k1,11451:32583029,14330661:0 +) +(1,11452:6630773,15195741:25952256,513147,134348 +k1,11451:8031189,15195741:225356 +k1,11451:9752733,15195741:225357 +k1,11451:10925740,15195741:225356 +k1,11451:13268564,15195741:225356 +k1,11451:15239145,15195741:225357 +k1,11451:17184821,15195741:225356 +k1,11451:18096339,15195741:225356 +k1,11451:19092399,15195741:225357 +k1,11451:21979172,15195741:225356 +k1,11451:22820566,15195741:225356 +k1,11451:25324610,15195741:225357 +h1,11451:26867328,15195741:0,0,0 +k1,11451:27092684,15195741:225356 +k1,11451:28127410,15195741:225356 +k1,11451:29850920,15195741:225357 +h1,11451:31046297,15195741:0,0,0 +k1,11451:31478747,15195741:225356 +k1,11451:32583029,15195741:0 +) +(1,11452:6630773,16060821:25952256,513147,126483 +k1,11451:7618122,16060821:239583 +k1,11451:9851967,16060821:239584 +k1,11451:10742978,16060821:239583 +k1,11451:13337270,16060821:239583 +k1,11451:14595938,16060821:239583 +k1,11451:17166638,16060821:239584 +k1,11451:18498706,16060821:239583 +k1,11451:19405445,16060821:239583 +(1,11451:19405445,16060821:0,459977,115847 +r1,11527:20467134,16060821:1061689,575824,115847 +k1,11451:19405445,16060821:-1061689 +) +(1,11451:19405445,16060821:1061689,459977,115847 +k1,11451:19405445,16060821:3277 +h1,11451:20463857,16060821:0,411205,112570 +) +k1,11451:20706717,16060821:239583 +k1,11451:22865195,16060821:239584 +k1,11451:23317729,16060821:239542 +k1,11451:26349802,16060821:239584 +k1,11451:27608470,16060821:239583 +k1,11451:31923737,16060821:239583 +k1,11451:32583029,16060821:0 +) +(1,11452:6630773,16925901:25952256,513147,134348 +k1,11451:9623277,16925901:230161 +k1,11451:13515590,16925901:230161 +k1,11451:14507279,16925901:230161 +k1,11451:17803870,16925901:230161 +k1,11451:20432649,16925901:230161 +k1,11451:21610461,16925901:230161 +k1,11451:23981683,16925901:230161 +(1,11451:23981683,16925901:0,452978,115847 +r1,11527:26098508,16925901:2116825,568825,115847 +k1,11451:23981683,16925901:-2116825 +) +(1,11451:23981683,16925901:2116825,452978,115847 +k1,11451:23981683,16925901:3277 +h1,11451:26095231,16925901:0,411205,112570 +) +k1,11451:26328669,16925901:230161 +k1,11451:28848658,16925901:230161 +k1,11451:30472770,16925901:230161 +k1,11452:32583029,16925901:0 +) +(1,11452:6630773,17790981:25952256,615216,134348 +k1,11451:8489941,17790981:188000 +k1,11451:10419233,17790981:188000 +$1,11451:10419233,17790981 +$1,11451:10987430,17790981 +k1,11451:11175430,17790981:188000 +k1,11451:14283715,17790981:188001 +k1,11451:16895236,17790981:188000 +k1,11451:18650857,17790981:188000 +$1,11451:18650857,17790981 +k1,11451:19568796,17790981:121021 +k1,11451:20258013,17790981:121020 +$1,11451:21054931,17790981 +k1,11451:21416602,17790981:188001 +k1,11451:22873379,17790981:188000 +k1,11451:23629576,17790981:188000 +$1,11451:23629576,17790981 +(1,11451:24426494,17515700:311689,339935,0 +) +$1,11451:24738183,17790981 +k1,11451:25099853,17790981:188000 +k1,11451:25939281,17790981:188000 +$1,11451:25939281,17790981 +k1,11451:26845435,17790981:109236 +k1,11451:28161833,17790981:121021 +k1,11451:28851051,17790981:121021 +k1,11451:29757205,17790981:109236 +$1,11451:30952582,17790981 +k1,11451:31314252,17790981:188000 +k1,11451:32583029,17790981:0 +) +(1,11452:6630773,18656061:25952256,615216,134348 +g1,11451:7398199,18656061 +$1,11451:7398199,18656061 +(1,11451:8195117,18380780:311689,339935,8258 +) +$1,11451:8506806,18656061 +g1,11451:8706035,18656061 +g1,11451:11097443,18656061 +h1,11451:12466490,18656061:0,0,0 +k1,11452:32583028,18656061:19857016 +g1,11452:32583028,18656061 +) +(1,11454:6630773,19521141:25952256,513147,126483 +h1,11453:6630773,19521141:983040,0,0 +k1,11453:8508397,19521141:266749 +k1,11453:9978388,19521141:266750 +k1,11453:12486468,19521141:266749 +k1,11453:14293969,19521141:266750 +k1,11453:18947698,19521141:266749 +k1,11453:19873740,19521141:266750 +k1,11453:22771760,19521141:266749 +k1,11453:23689937,19521141:266749 +(1,11453:23689937,19521141:0,452978,115847 +r1,11527:24048203,19521141:358266,568825,115847 +k1,11453:23689937,19521141:-358266 +) +(1,11453:23689937,19521141:358266,452978,115847 +k1,11453:23689937,19521141:3277 +h1,11453:24044926,19521141:0,411205,112570 +) +k1,11453:24314953,19521141:266750 +k1,11453:25624380,19521141:266749 +k1,11453:26957401,19521141:266750 +k1,11453:29852799,19521141:266749 +k1,11454:32583029,19521141:0 +) +(1,11454:6630773,20386221:25952256,513147,134348 +k1,11453:8248604,20386221:166209 +k1,11453:9030851,20386221:166209 +k1,11453:10781066,20386221:166210 +k1,11453:14299442,20386221:166209 +k1,11453:15859602,20386221:166209 +k1,11453:17044896,20386221:166209 +k1,11453:21109187,20386221:166210 +k1,11453:22223047,20386221:166209 +k1,11453:23408341,20386221:166209 +k1,11453:24880683,20386221:166209 +k1,11453:27708310,20386221:166210 +k1,11453:28560681,20386221:166209 +k1,11453:30424928,20386221:166209 +k1,11453:32583029,20386221:0 +) +(1,11454:6630773,21251301:25952256,505283,134348 +k1,11453:7670984,21251301:251813 +k1,11453:9936062,21251301:251812 +k1,11453:11395048,21251301:251813 +k1,11453:13922076,21251301:251813 +k1,11453:15370575,21251301:251812 +k1,11453:16794827,21251301:251813 +k1,11453:19164107,21251301:251812 +k1,11453:21161144,21251301:251813 +k1,11453:23542222,21251301:251813 +k1,11453:25232549,21251301:251812 +k1,11453:26503447,21251301:251813 +k1,11453:29078511,21251301:251813 +k1,11453:29981751,21251301:251812 +k1,11453:31351608,21251301:251813 +k1,11454:32583029,21251301:0 +) +(1,11454:6630773,22116381:25952256,513147,134348 +k1,11453:9454373,22116381:229030 +k1,11453:10342695,22116381:229030 +k1,11453:11590810,22116381:229030 +k1,11453:13088617,22116381:229030 +k1,11453:13976940,22116381:229031 +k1,11453:16293947,22116381:229030 +(1,11453:16293947,22116381:0,414482,115847 +r1,11527:16652213,22116381:358266,530329,115847 +k1,11453:16293947,22116381:-358266 +) +(1,11453:16293947,22116381:358266,414482,115847 +k1,11453:16293947,22116381:3277 +h1,11453:16648936,22116381:0,411205,112570 +) +k1,11453:17054913,22116381:229030 +k1,11453:17771501,22116381:229000 +k1,11453:19873550,22116381:229030 +k1,11453:21517502,22116381:229030 +k1,11453:23133929,22116381:229030 +k1,11453:24897157,22116381:229030 +k1,11453:26861581,22116381:229031 +k1,11453:27446471,22116381:229030 +k1,11453:28775195,22116381:229030 +k1,11453:29655653,22116381:229030 +(1,11453:29655653,22116381:0,452978,115847 +r1,11527:31420766,22116381:1765113,568825,115847 +k1,11453:29655653,22116381:-1765113 +) +(1,11453:29655653,22116381:1765113,452978,115847 +k1,11453:29655653,22116381:3277 +h1,11453:31417489,22116381:0,411205,112570 +) +k1,11453:31649796,22116381:229030 +k1,11453:32583029,22116381:0 +) +(1,11454:6630773,22981461:25952256,513147,134348 +k1,11453:8256184,22981461:173789 +k1,11453:9807541,22981461:173790 +k1,11453:13031376,22981461:173789 +k1,11453:17280849,22981461:173789 +k1,11453:20635757,22981461:173790 +k1,11453:21460974,22981461:173789 +k1,11453:23752232,22981461:173790 +k1,11453:25844915,22981461:173789 +k1,11453:27620404,22981461:173789 +k1,11453:29890691,22981461:173790 +k1,11453:31012131,22981461:173789 +k1,11453:32583029,22981461:0 +) +(1,11454:6630773,23846541:25952256,513147,126483 +k1,11453:9809027,23846541:271077 +k1,11453:11460948,23846541:271077 +k1,11453:14716536,23846541:271078 +k1,11453:16194786,23846541:271077 +k1,11453:21137269,23846541:271077 +k1,11453:22169874,23846541:271077 +(1,11453:22169874,23846541:0,452978,115847 +r1,11527:24638411,23846541:2468537,568825,115847 +k1,11453:22169874,23846541:-2468537 +) +(1,11453:22169874,23846541:2468537,452978,115847 +k1,11453:22169874,23846541:3277 +h1,11453:24635134,23846541:0,411205,112570 +) +k1,11453:24909488,23846541:271077 +k1,11453:26556167,23846541:271078 +k1,11453:27774895,23846541:271077 +k1,11453:29762360,23846541:271077 +k1,11453:32583029,23846541:0 +) +(1,11454:6630773,24711621:25952256,513147,126483 +k1,11453:8404098,24711621:205704 +k1,11453:10495273,24711621:205704 +k1,11453:11569329,24711621:205704 +k1,11453:12879315,24711621:205704 +k1,11453:14601522,24711621:205704 +k1,11453:16091732,24711621:205704 +(1,11453:16091732,24711621:0,452978,115847 +r1,11527:18560269,24711621:2468537,568825,115847 +k1,11453:16091732,24711621:-2468537 +) +(1,11453:16091732,24711621:2468537,452978,115847 +k1,11453:16091732,24711621:3277 +h1,11453:18556992,24711621:0,411205,112570 +) +k1,11453:18765973,24711621:205704 +k1,11453:20072681,24711621:205703 +k1,11453:20634245,24711621:205704 +k1,11453:22623184,24711621:205704 +k1,11453:25180975,24711621:205704 +k1,11453:28312862,24711621:205704 +k1,11453:29961013,24711621:205704 +k1,11453:30937420,24711621:205704 +k1,11454:32583029,24711621:0 +) +(1,11454:6630773,25576701:25952256,513147,126483 +k1,11453:7675062,25576701:252614 +(1,11453:7675062,25576701:0,459977,115847 +r1,11527:8736751,25576701:1061689,575824,115847 +k1,11453:7675062,25576701:-1061689 +) +(1,11453:7675062,25576701:1061689,459977,115847 +k1,11453:7675062,25576701:3277 +h1,11453:8733474,25576701:0,411205,112570 +) +k1,11453:8989365,25576701:252614 +k1,11453:10830572,25576701:252614 +(1,11453:10830572,25576701:0,452978,115847 +r1,11527:14002532,25576701:3171960,568825,115847 +k1,11453:10830572,25576701:-3171960 +) +(1,11453:10830572,25576701:3171960,452978,115847 +k1,11453:10830572,25576701:3277 +h1,11453:13999255,25576701:0,411205,112570 +) +k1,11453:14255147,25576701:252615 +k1,11453:15714934,25576701:252614 +k1,11453:18602751,25576701:252614 +$1,11453:18602751,25576701 +$1,11453:19569407,25576701 +k1,11453:19822021,25576701:252614 +k1,11453:21266080,25576701:252614 +$1,11453:21266080,25576701 +$1,11453:22631195,25576701 +k1,11453:22883809,25576701:252614 +k1,11453:24979952,25576701:252615 +k1,11453:26675013,25576701:252614 +k1,11453:27946712,25576701:252614 +k1,11453:30440657,25576701:252614 +k1,11453:32583029,25576701:0 +) +(1,11454:6630773,26441781:25952256,513147,134348 +g1,11453:9814512,26441781 +g1,11453:13375738,26441781 +g1,11453:14384337,26441781 +g1,11453:15602651,26441781 +g1,11453:17070657,26441781 +g1,11453:17929178,26441781 +g1,11453:19147492,26441781 +k1,11454:32583029,26441781:11295787 +g1,11454:32583029,26441781 +) +v1,11476:6630773,27306861:0,393216,0 +(1,11527:6630773,44650332:25952256,17736687,0 +g1,11527:6630773,44650332 +g1,11527:6237557,44650332 +r1,11527:6368629,44650332:131072,17736687,0 +g1,11527:6567858,44650332 +g1,11527:6764466,44650332 +[1,11527:6764466,44650332:25818563,17736687,0 +(1,11477:6764466,27615159:25818563,701514,196608 +(1,11476:6764466,27615159:0,701514,196608 +r1,11527:7761522,27615159:997056,898122,196608 +k1,11476:6764466,27615159:-997056 +) +(1,11476:6764466,27615159:997056,701514,196608 +) +k1,11476:7964916,27615159:203394 +k1,11476:8292596,27615159:327680 +k1,11476:9692677,27615159:203394 +k1,11476:12197040,27615159:203394 +k1,11476:14268865,27615159:203394 +k1,11476:16132941,27615159:203394 +k1,11476:17355420,27615159:203394 +k1,11476:19055002,27615159:203395 +k1,11476:20206047,27615159:203394 +k1,11476:21428526,27615159:203394 +k1,11476:22528453,27615159:203394 +k1,11476:26393999,27615159:203394 +k1,11476:29778511,27615159:203394 +k1,11476:30597943,27615159:203394 +k1,11476:32583029,27615159:0 +) +(1,11477:6764466,28480239:25818563,513147,115847 +h1,11476:8133513,28480239:0,0,0 +g1,11476:8506412,28480239 +g1,11476:10624535,28480239 +(1,11476:10624535,28480239:0,414482,115847 +r1,11527:10982801,28480239:358266,530329,115847 +k1,11476:10624535,28480239:-358266 +) +(1,11476:10624535,28480239:358266,414482,115847 +k1,11476:10624535,28480239:3277 +h1,11476:10979524,28480239:0,411205,112570 +) +g1,11476:11182030,28480239 +g1,11476:12588432,28480239 +g1,11476:13143521,28480239 +g1,11476:15962879,28480239 +g1,11476:18249430,28480239 +g1,11476:22240572,28480239 +g1,11476:23833752,28480239 +g1,11476:26728477,28480239 +(1,11476:26728477,28480239:0,452978,115847 +r1,11527:29197014,28480239:2468537,568825,115847 +k1,11476:26728477,28480239:-2468537 +) +(1,11476:26728477,28480239:2468537,452978,115847 +k1,11476:26728477,28480239:3277 +h1,11476:29193737,28480239:0,411205,112570 +) +k1,11477:32583029,28480239:3333587 +g1,11477:32583029,28480239 +) +(1,11479:6764466,29345319:25818563,513147,126483 +h1,11478:6764466,29345319:983040,0,0 +k1,11478:9117940,29345319:173747 +k1,11478:10958268,29345319:173747 +(1,11478:10958268,29345319:0,459977,115847 +r1,11527:12019957,29345319:1061689,575824,115847 +k1,11478:10958268,29345319:-1061689 +) +(1,11478:10958268,29345319:1061689,459977,115847 +k1,11478:10958268,29345319:3277 +h1,11478:12016680,29345319:0,411205,112570 +) +k1,11478:12193705,29345319:173748 +k1,11478:13782374,29345319:173747 +k1,11478:15060403,29345319:173747 +k1,11478:15981916,29345319:173747 +k1,11478:18874752,29345319:173747 +k1,11478:19810028,29345319:173748 +k1,11478:22679271,29345319:173747 +(1,11478:22679271,29345319:0,452978,115847 +r1,11527:24444384,29345319:1765113,568825,115847 +k1,11478:22679271,29345319:-1765113 +) +(1,11478:22679271,29345319:1765113,452978,115847 +k1,11478:22679271,29345319:3277 +h1,11478:24441107,29345319:0,411205,112570 +) +k1,11478:24618131,29345319:173747 +k1,11478:26677349,29345319:173747 +k1,11478:29192043,29345319:173748 +k1,11478:30384875,29345319:173747 +k1,11478:31923737,29345319:173747 +k1,11478:32583029,29345319:0 +) +(1,11479:6764466,30210399:25818563,505283,126483 +g1,11478:7319555,30210399 +g1,11478:9670331,30210399 +g1,11478:11964746,30210399 +g1,11478:13183060,30210399 +g1,11478:14970882,30210399 +(1,11478:14970882,30210399:0,452978,115847 +r1,11527:17087707,30210399:2116825,568825,115847 +k1,11478:14970882,30210399:-2116825 +) +(1,11478:14970882,30210399:2116825,452978,115847 +g1,11478:16732718,30210399 +h1,11478:17084430,30210399:0,411205,112570 +) +g1,11478:17286936,30210399 +g1,11478:20020442,30210399 +g1,11478:22102520,30210399 +g1,11478:24009617,30210399 +g1,11478:25365556,30210399 +g1,11478:26177547,30210399 +g1,11478:26732636,30210399 +k1,11479:32583029,30210399:4372557 +g1,11479:32583029,30210399 +) +v1,11481:6764466,30895254:0,393216,0 +(1,11491:6764466,35338461:25818563,4836423,196608 +g1,11491:6764466,35338461 +g1,11491:6764466,35338461 +g1,11491:6567858,35338461 +(1,11491:6567858,35338461:0,4836423,196608 +r1,11527:32779637,35338461:26211779,5033031,196608 +k1,11491:6567857,35338461:-26211780 +) +(1,11491:6567858,35338461:26211779,4836423,196608 +[1,11491:6764466,35338461:25818563,4639815,0 +(1,11483:6764466,31123085:25818563,424439,79822 +(1,11482:6764466,31123085:0,0,0 +g1,11482:6764466,31123085 +g1,11482:6764466,31123085 +g1,11482:6436786,31123085 +(1,11482:6436786,31123085:0,0,0 +) +g1,11482:6764466,31123085 +) +g1,11483:9420098,31123085 +g1,11483:10415960,31123085 +k1,11483:10415960,31123085:0 +h1,11483:13403546,31123085:0,0,0 +k1,11483:32583030,31123085:19179484 +g1,11483:32583030,31123085 +) +(1,11484:6764466,31807940:25818563,431045,79822 +h1,11484:6764466,31807940:0,0,0 +g1,11484:8092282,31807940 +g1,11484:9088144,31807940 +g1,11484:10084006,31807940 +g1,11484:13735500,31807940 +h1,11484:14067454,31807940:0,0,0 +k1,11484:32583030,31807940:18515576 +g1,11484:32583030,31807940 +) +(1,11485:6764466,32492795:25818563,424439,79822 +h1,11485:6764466,32492795:0,0,0 +g1,11485:7096420,32492795 +g1,11485:7428374,32492795 +g1,11485:11079867,32492795 +g1,11485:12075729,32492795 +h1,11485:12407683,32492795:0,0,0 +k1,11485:32583029,32492795:20175346 +g1,11485:32583029,32492795 +) +(1,11486:6764466,33177650:25818563,431045,112852 +h1,11486:6764466,33177650:0,0,0 +g1,11486:7096420,33177650 +g1,11486:7428374,33177650 +g1,11486:8756190,33177650 +g1,11486:9752052,33177650 +g1,11486:10747914,33177650 +k1,11486:10747914,33177650:0 +h1,11486:14067454,33177650:0,0,0 +k1,11486:32583030,33177650:18515576 +g1,11486:32583030,33177650 +) +(1,11487:6764466,33862505:25818563,424439,112852 +h1,11487:6764466,33862505:0,0,0 +g1,11487:7096420,33862505 +g1,11487:7428374,33862505 +g1,11487:7760328,33862505 +g1,11487:8092282,33862505 +g1,11487:11743775,33862505 +g1,11487:12739637,33862505 +g1,11487:16391130,33862505 +g1,11487:17055038,33862505 +g1,11487:18714808,33862505 +h1,11487:19378716,33862505:0,0,0 +k1,11487:32583029,33862505:13204313 +g1,11487:32583029,33862505 +) +(1,11488:6764466,34547360:25818563,424439,79822 +h1,11488:6764466,34547360:0,0,0 +h1,11488:7096420,34547360:0,0,0 +k1,11488:32583028,34547360:25486608 +g1,11488:32583028,34547360 +) +(1,11489:6764466,35232215:25818563,424439,106246 +h1,11489:6764466,35232215:0,0,0 +k1,11489:6764466,35232215:0 +h1,11489:11411821,35232215:0,0,0 +k1,11489:32583029,35232215:21171208 +g1,11489:32583029,35232215 +) +] +) +g1,11491:32583029,35338461 +g1,11491:6764466,35338461 +g1,11491:6764466,35338461 +g1,11491:32583029,35338461 +g1,11491:32583029,35338461 +) +h1,11491:6764466,35535069:0,0,0 +v1,11495:6764466,36219924:0,393216,0 +(1,11502:6764466,38588748:25818563,2762040,196608 +g1,11502:6764466,38588748 +g1,11502:6764466,38588748 +g1,11502:6567858,38588748 +(1,11502:6567858,38588748:0,2762040,196608 +r1,11527:32779637,38588748:26211779,2958648,196608 +k1,11502:6567857,38588748:-26211780 +) +(1,11502:6567858,38588748:26211779,2762040,196608 +[1,11502:6764466,38588748:25818563,2565432,0 +(1,11497:6764466,36454361:25818563,431045,106246 +(1,11496:6764466,36454361:0,0,0 +g1,11496:6764466,36454361 +g1,11496:6764466,36454361 +g1,11496:6436786,36454361 +(1,11496:6436786,36454361:0,0,0 +) +g1,11496:6764466,36454361 +) +g1,11497:9420098,36454361 +g1,11497:10415960,36454361 +g1,11497:16059178,36454361 +g1,11497:16723086,36454361 +k1,11497:16723086,36454361:24773 +h1,11497:18739583,36454361:0,0,0 +k1,11497:32583029,36454361:13843446 +g1,11497:32583029,36454361 +) +(1,11498:6764466,37139216:25818563,431045,79822 +h1,11498:6764466,37139216:0,0,0 +g1,11498:8092282,37139216 +g1,11498:9088144,37139216 +g1,11498:10084006,37139216 +g1,11498:13735500,37139216 +h1,11498:14067454,37139216:0,0,0 +k1,11498:32583030,37139216:18515576 +g1,11498:32583030,37139216 +) +(1,11499:6764466,37824071:25818563,424439,86428 +h1,11499:6764466,37824071:0,0,0 +g1,11499:7096420,37824071 +g1,11499:7428374,37824071 +g1,11499:11079867,37824071 +g1,11499:12075729,37824071 +g1,11499:15063315,37824071 +h1,11499:15727223,37824071:0,0,0 +k1,11499:32583029,37824071:16855806 +g1,11499:32583029,37824071 +) +(1,11500:6764466,38508926:25818563,424439,79822 +h1,11500:6764466,38508926:0,0,0 +h1,11500:7096420,38508926:0,0,0 +k1,11500:32583028,38508926:25486608 +g1,11500:32583028,38508926 +) +] +) +g1,11502:32583029,38588748 +g1,11502:6764466,38588748 +g1,11502:6764466,38588748 +g1,11502:32583029,38588748 +g1,11502:32583029,38588748 +) +h1,11502:6764466,38785356:0,0,0 +(1,11506:6764466,39650436:25818563,505283,134348 +h1,11505:6764466,39650436:983040,0,0 +k1,11505:9199185,39650436:254992 +k1,11505:11156148,39650436:254993 +k1,11505:12826062,39650436:254992 +k1,11505:14185336,39650436:254992 +k1,11505:15188095,39650436:254993 +k1,11505:18162176,39650436:254992 +k1,11505:19178696,39650436:254992 +k1,11505:19789549,39650436:254993 +k1,11505:21144235,39650436:254992 +k1,11505:22050655,39650436:254992 +(1,11505:22050655,39650436:0,452978,115847 +r1,11527:24519192,39650436:2468537,568825,115847 +k1,11505:22050655,39650436:-2468537 +) +(1,11505:22050655,39650436:2468537,452978,115847 +k1,11505:22050655,39650436:3277 +h1,11505:24515915,39650436:0,411205,112570 +) +k1,11505:24774185,39650436:254993 +k1,11505:26261254,39650436:254992 +k1,11505:28794933,39650436:254992 +h1,11505:29765521,39650436:0,0,0 +k1,11505:30020514,39650436:254993 +k1,11505:31084876,39650436:254992 +k1,11505:32583029,39650436:0 +) +(1,11506:6764466,40515516:25818563,505283,95026 +h1,11505:7940182,40515516:0,0,0 +k1,11506:32583028,40515516:24383324 +g1,11506:32583028,40515516 +) +v1,11508:6764466,41200371:0,393216,0 +(1,11512:6764466,41534448:25818563,727293,196608 +g1,11512:6764466,41534448 +g1,11512:6764466,41534448 +g1,11512:6567858,41534448 +(1,11512:6567858,41534448:0,727293,196608 +r1,11527:32779637,41534448:26211779,923901,196608 +k1,11512:6567857,41534448:-26211780 +) +(1,11512:6567858,41534448:26211779,727293,196608 +[1,11512:6764466,41534448:25818563,530685,0 +(1,11510:6764466,41428202:25818563,424439,106246 +(1,11509:6764466,41428202:0,0,0 +g1,11509:6764466,41428202 +g1,11509:6764466,41428202 +g1,11509:6436786,41428202 +(1,11509:6436786,41428202:0,0,0 +) +g1,11509:6764466,41428202 +) +g1,11510:9420098,41428202 +g1,11510:10415960,41428202 +g1,11510:13403546,41428202 +g1,11510:15727224,41428202 +g1,11510:16391132,41428202 +g1,11510:17386994,41428202 +g1,11510:19046764,41428202 +g1,11510:19710672,41428202 +g1,11510:22698257,41428202 +g1,11510:26017796,41428202 +k1,11510:26017796,41428202:0 +h1,11510:27345612,41428202:0,0,0 +k1,11510:32583029,41428202:5237417 +g1,11510:32583029,41428202 +) +] +) +g1,11512:32583029,41534448 +g1,11512:6764466,41534448 +g1,11512:6764466,41534448 +g1,11512:32583029,41534448 +g1,11512:32583029,41534448 +) +h1,11512:6764466,41731056:0,0,0 +(1,11516:6764466,42596136:25818563,513147,134348 +h1,11515:6764466,42596136:983040,0,0 +k1,11515:11531010,42596136:210481 +k1,11515:12945387,42596136:210481 +k1,11515:14851283,42596136:210480 +k1,11515:15593261,42596136:210481 +k1,11515:16159602,42596136:210481 +k1,11515:19108833,42596136:210481 +k1,11515:22567277,42596136:210480 +k1,11515:24368317,42596136:210481 +k1,11515:24993630,42596136:210470 +k1,11515:27964486,42596136:210480 +k1,11515:28530827,42596136:210481 +k1,11515:31048831,42596136:210481 +k1,11516:32583029,42596136:0 +) +(1,11516:6764466,43461216:25818563,513147,7863 +g1,11515:8231161,43461216 +g1,11515:9378041,43461216 +k1,11516:32583030,43461216:21949320 +g1,11516:32583030,43461216 +) +v1,11518:6764466,44146071:0,393216,0 +(1,11522:6764466,44453724:25818563,700869,196608 +g1,11522:6764466,44453724 +g1,11522:6764466,44453724 +g1,11522:6567858,44453724 +(1,11522:6567858,44453724:0,700869,196608 +r1,11527:32779637,44453724:26211779,897477,196608 +k1,11522:6567857,44453724:-26211780 +) +(1,11522:6567858,44453724:26211779,700869,196608 +[1,11522:6764466,44453724:25818563,504261,0 +(1,11520:6764466,44373902:25818563,424439,79822 +(1,11519:6764466,44373902:0,0,0 +g1,11519:6764466,44373902 +g1,11519:6764466,44373902 +g1,11519:6436786,44373902 +(1,11519:6436786,44373902:0,0,0 +) +g1,11519:6764466,44373902 +) +k1,11520:6764466,44373902:0 +h1,11520:10084006,44373902:0,0,0 +k1,11520:32583030,44373902:22499024 +g1,11520:32583030,44373902 +) +] +) +g1,11522:32583029,44453724 +g1,11522:6764466,44453724 +g1,11522:6764466,44453724 +g1,11522:32583029,44453724 +g1,11522:32583029,44453724 +) +h1,11522:6764466,44650332:0,0,0 +] +g1,11527:32583029,44650332 +) +] +(1,11527:32583029,45706769:0,0,0 +g1,11527:32583029,45706769 ) ) ] -(1,11528:6630773,47279633:25952256,0,0 -h1,11528:6630773,47279633:25952256,0,0 +(1,11527:6630773,47279633:25952256,0,0 +h1,11527:6630773,47279633:25952256,0,0 ) ] -(1,11528:4262630,4025873:0,0,0 -[1,11528:-473656,4025873:0,0,0 -(1,11528:-473656,-710413:0,0,0 -(1,11528:-473656,-710413:0,0,0 -g1,11528:-473656,-710413 +(1,11527:4262630,4025873:0,0,0 +[1,11527:-473656,4025873:0,0,0 +(1,11527:-473656,-710413:0,0,0 +(1,11527:-473656,-710413:0,0,0 +g1,11527:-473656,-710413 ) -g1,11528:-473656,-710413 +g1,11527:-473656,-710413 ) ] ) ] !31125 -}179 +}180 !12 -{180 -[1,11538:4262630,47279633:28320399,43253760,0 -(1,11538:4262630,4025873:0,0,0 -[1,11538:-473656,4025873:0,0,0 -(1,11538:-473656,-710413:0,0,0 -(1,11538:-473656,-644877:0,0,0 -k1,11538:-473656,-644877:-65536 +{181 +[1,11537:4262630,47279633:28320399,43253760,0 +(1,11537:4262630,4025873:0,0,0 +[1,11537:-473656,4025873:0,0,0 +(1,11537:-473656,-710413:0,0,0 +(1,11537:-473656,-644877:0,0,0 +k1,11537:-473656,-644877:-65536 ) -(1,11538:-473656,4736287:0,0,0 -k1,11538:-473656,4736287:5209943 +(1,11537:-473656,4736287:0,0,0 +k1,11537:-473656,4736287:5209943 ) -g1,11538:-473656,-710413 +g1,11537:-473656,-710413 ) ] ) -[1,11538:6630773,47279633:25952256,43253760,0 -[1,11538:6630773,4812305:25952256,786432,0 -(1,11538:6630773,4812305:25952256,513147,126483 -(1,11538:6630773,4812305:25952256,513147,126483 -g1,11538:3078558,4812305 -[1,11538:3078558,4812305:0,0,0 -(1,11538:3078558,2439708:0,1703936,0 -k1,11538:1358238,2439708:-1720320 +[1,11537:6630773,47279633:25952256,43253760,0 +[1,11537:6630773,4812305:25952256,786432,0 +(1,11537:6630773,4812305:25952256,513147,126483 +(1,11537:6630773,4812305:25952256,513147,126483 +g1,11537:3078558,4812305 +[1,11537:3078558,4812305:0,0,0 +(1,11537:3078558,2439708:0,1703936,0 +k1,11537:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11538:2537886,2439708:1179648,16384,0 +r1,11537:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11538:3078558,1915420:16384,1179648,0 +r1,11537:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -206191,16 +206374,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11538:3078558,4812305:0,0,0 -(1,11538:3078558,2439708:0,1703936,0 -g1,11538:29030814,2439708 -g1,11538:36135244,2439708 +[1,11537:3078558,4812305:0,0,0 +(1,11537:3078558,2439708:0,1703936,0 +g1,11537:29030814,2439708 +g1,11537:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11538:36151628,1915420:16384,1179648,0 +r1,11537:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -206209,25 +206392,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11538:37855564,2439708:1179648,16384,0 +r1,11537:37855564,2439708:1179648,16384,0 ) ) -k1,11538:3078556,2439708:-34777008 +k1,11537:3078556,2439708:-34777008 ) ] -[1,11538:3078558,4812305:0,0,0 -(1,11538:3078558,49800853:0,16384,2228224 -k1,11538:1358238,49800853:-1720320 +[1,11537:3078558,4812305:0,0,0 +(1,11537:3078558,49800853:0,16384,2228224 +k1,11537:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11538:2537886,49800853:1179648,16384,0 +r1,11537:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11538:3078558,51504789:16384,1179648,0 +r1,11537:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -206237,16 +206420,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11538:3078558,4812305:0,0,0 -(1,11538:3078558,49800853:0,16384,2228224 -g1,11538:29030814,49800853 -g1,11538:36135244,49800853 +[1,11537:3078558,4812305:0,0,0 +(1,11537:3078558,49800853:0,16384,2228224 +g1,11537:29030814,49800853 +g1,11537:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11538:36151628,51504789:16384,1179648,0 +r1,11537:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -206255,433 +206438,432 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11538:37855564,49800853:1179648,16384,0 -) -) -k1,11538:3078556,49800853:-34777008 -) -] -g1,11538:6630773,4812305 -g1,11538:6630773,4812305 -g1,11538:9524187,4812305 -g1,11538:11465363,4812305 -g1,11538:15704887,4812305 -g1,11538:16405466,4812305 -g1,11538:19787123,4812305 -k1,11538:31387652,4812305:11600529 -) -) -] -[1,11538:6630773,45706769:25952256,40108032,0 -(1,11538:6630773,45706769:25952256,40108032,0 -(1,11538:6630773,45706769:0,0,0 -g1,11538:6630773,45706769 -) -[1,11538:6630773,45706769:25952256,40108032,0 -[1,11474:6630773,28758624:25952256,23159887,0 -[1,11474:6630773,28758624:25952256,23159887,0 -(1,11465:6630773,23766069:25952256,18167332,0 -k1,11465:10523651,23766069:3892878 -h1,11464:10523651,23766069:0,0,0 -(1,11464:10523651,23766069:18166500,18167332,0 -(1,11464:10523651,23766069:18167376,18167376,0 -(1,11464:10523651,23766069:18167376,18167376,0 -(1,11464:10523651,23766069:0,18167376,0 -(1,11464:10523651,23766069:0,28417720,0 -(1,11464:10523651,23766069:28417720,28417720,0 -) -k1,11464:10523651,23766069:-28417720 -) -) -g1,11464:28691027,23766069 -) -) -) -g1,11465:28690151,23766069 -k1,11465:32583029,23766069:3892878 -) -(1,11473:6630773,25286509:25952256,505283,134348 -h1,11473:6630773,25286509:0,0,0 -g1,11473:8923222,25286509 -k1,11473:32583028,25286509:22261268 -g1,11473:32583028,25286509 -) -(1,11473:6630773,26151589:25952256,513147,134348 -h1,11473:6630773,26151589:0,0,0 -k1,11473:10390216,26151589:192974 -k1,11473:12756363,26151589:192973 -k1,11473:13896988,26151589:192974 -k1,11473:16852305,26151589:192974 -k1,11473:20707430,26151589:192973 -k1,11473:21551832,26151589:192974 -k1,11473:25175615,26151589:192973 -k1,11473:26572485,26151589:192974 -k1,11473:28460875,26151589:192974 -k1,11473:29313140,26151589:192973 -k1,11473:31647175,26151589:192974 -k1,11473:32583029,26151589:0 -) -(1,11473:6630773,27016669:25952256,513147,134348 -k1,11473:8610767,27016669:189550 -k1,11473:11397509,27016669:189550 -k1,11473:14320567,27016669:189551 -k1,11473:15169409,27016669:189550 -k1,11473:18121302,27016669:189550 -k1,11473:20083601,27016669:189550 -k1,11473:21469839,27016669:189551 -k1,11473:23048752,27016669:189550 -k1,11473:23854340,27016669:189550 -k1,11473:25247131,27016669:189550 -k1,11473:27292006,27016669:189551 -k1,11473:28985607,27016669:189550 -k1,11473:31966991,27016669:189550 -k1,11473:32583029,27016669:0 -) -(1,11473:6630773,27881749:25952256,513147,126483 -k1,11473:7166967,27881749:180334 -k1,11473:10423562,27881749:180335 -k1,11473:11997847,27881749:180334 -k1,11473:12534041,27881749:180334 -k1,11473:15407249,27881749:180334 -k1,11473:16607980,27881749:180335 -k1,11473:18790439,27881749:180334 -k1,11473:21546993,27881749:180334 -k1,11473:23029508,27881749:180315 -k1,11473:24603794,27881749:180335 -k1,11473:26146622,27881749:180334 -k1,11473:28194732,27881749:180334 -k1,11473:30160054,27881749:180316 -k1,11473:30999680,27881749:180334 -k1,11473:32583029,27881749:0 -) -(1,11473:6630773,28746829:25952256,505283,11795 -g1,11473:9688682,28746829 -g1,11473:10684829,28746829 -g1,11473:12075503,28746829 -g1,11473:12689575,28746829 -k1,11473:32583029,28746829:18298308 -g1,11473:32583029,28746829 -) -] -] -v1,11528:6630773,30724704:0,393216,0 -(1,11528:6630773,32709143:25952256,2377655,0 -g1,11528:6630773,32709143 -g1,11528:6237557,32709143 -r1,11538:6368629,32709143:131072,2377655,0 -g1,11528:6567858,32709143 -g1,11528:6764466,32709143 -[1,11528:6764466,32709143:25818563,2377655,0 -(1,11528:6764466,30844635:25818563,513147,134348 -h1,11527:6764466,30844635:983040,0,0 -k1,11527:9228424,30844635:284231 -k1,11527:12224535,30844635:284231 -k1,11527:13746741,30844635:284231 -k1,11527:14690264,30844635:284231 -k1,11527:18321420,30844635:284232 -k1,11527:19624736,30844635:284231 -k1,11527:22984572,30844635:284231 -k1,11527:24694211,30844635:284231 -k1,11527:25637734,30844635:284231 -k1,11527:26692668,30844635:284231 -k1,11527:27391657,30844635:284146 -k1,11527:31115873,30844635:284231 -k1,11527:31931601,30844635:284231 -k1,11527:32583029,30844635:0 -) -(1,11528:6764466,31709715:25818563,513147,134348 -k1,11527:8042688,31709715:185737 -k1,11527:10923920,31709715:185736 -(1,11527:10923920,31709715:0,452978,115847 -r1,11538:15502728,31709715:4578808,568825,115847 -k1,11527:10923920,31709715:-4578808 -) -(1,11527:10923920,31709715:4578808,452978,115847 -k1,11527:10923920,31709715:3277 -h1,11527:15499451,31709715:0,411205,112570 -) -k1,11527:15862135,31709715:185737 -k1,11527:18582805,31709715:185737 -k1,11527:24647776,31709715:185737 -k1,11527:26346738,31709715:185736 -k1,11527:27480126,31709715:185737 -k1,11527:28684948,31709715:185737 -k1,11527:32583029,31709715:0 -) -(1,11528:6764466,32574795:25818563,513147,134348 -g1,11527:9039220,32574795 -g1,11527:9854487,32574795 -g1,11527:12369103,32574795 -h1,11527:13339691,32574795:0,0,0 -g1,11527:13538920,32574795 -g1,11527:14929594,32574795 -h1,11527:16298641,32574795:0,0,0 -g1,11527:16671540,32574795 -g1,11527:19631145,32574795 -g1,11527:21311488,32574795 -g1,11527:22936125,32574795 -k1,11528:32583029,32574795:6346511 -g1,11528:32583029,32574795 -) -] -g1,11528:32583029,32709143 -) -h1,11528:6630773,32709143:0,0,0 -(1,11531:6630773,33574223:25952256,513147,126483 -h1,11530:6630773,33574223:983040,0,0 -k1,11530:8615343,33574223:183641 -k1,11530:9415022,33574223:183641 -k1,11530:11295391,33574223:183642 -k1,11530:14470751,33574223:183641 -k1,11530:15673477,33574223:183641 -k1,11530:20251307,33574223:183641 -k1,11530:21050986,33574223:183641 -k1,11530:22253713,33574223:183642 -k1,11530:24014150,33574223:183641 -k1,11530:24857083,33574223:183641 -k1,11530:26059809,33574223:183641 -k1,11530:27658373,33574223:183642 -k1,11530:28833574,33574223:183641 -k1,11530:30371189,33574223:183641 -k1,11530:32583029,33574223:0 -) -(1,11531:6630773,34439303:25952256,513147,134348 -k1,11530:7870059,34439303:220201 -k1,11530:11016443,34439303:220201 -k1,11530:11895936,34439303:220201 -k1,11530:13135222,34439303:220201 -k1,11530:15967688,34439303:220201 -k1,11530:17933113,34439303:220201 -k1,11530:20778685,34439303:220200 -k1,11530:23108490,34439303:220201 -k1,11530:24347776,34439303:220201 -k1,11530:26037294,34439303:220201 -k1,11530:30321382,34439303:220201 -k1,11530:31966991,34439303:220201 -k1,11530:32583029,34439303:0 -) -(1,11531:6630773,35304383:25952256,505283,134348 -k1,11530:8547832,35304383:220332 -k1,11530:12839916,35304383:220332 -k1,11530:14843483,35304383:220332 -k1,11530:16082900,35304383:220332 -k1,11530:20697421,35304383:220332 -k1,11530:21530514,35304383:220331 -k1,11530:23202468,35304383:220332 -k1,11530:26139923,35304383:220332 -k1,11530:27351815,35304383:220332 -k1,11530:28997555,35304383:220332 -k1,11530:32583029,35304383:0 -) -(1,11531:6630773,36169463:25952256,513147,134348 -k1,11530:7948464,36169463:298606 -k1,11530:11173252,36169463:298605 -k1,11530:12131150,36169463:298606 -k1,11530:14165149,36169463:298606 -k1,11530:16794870,36169463:298605 -k1,11530:19810599,36169463:298606 -k1,11530:21854428,36169463:298605 -k1,11530:23461788,36169463:298606 -k1,11530:26200955,36169463:298606 -k1,11530:28267721,36169463:298605 -k1,11530:31563944,36169463:298606 -k1,11530:32583029,36169463:0 -) -(1,11531:6630773,37034543:25952256,513147,126483 -k1,11530:9165907,37034543:204018 -k1,11530:10462411,37034543:204019 -k1,11530:11325721,37034543:204018 -k1,11530:14246863,37034543:204019 -k1,11530:14982378,37034543:204018 -k1,11530:16788097,37034543:204019 -k1,11530:19438574,37034543:204018 -k1,11530:21340631,37034543:204019 -k1,11530:22002746,37034543:204018 -k1,11530:22738262,37034543:204019 -k1,11530:24812678,37034543:204018 -k1,11530:25668125,37034543:204019 -k1,11530:29305574,37034543:204018 -k1,11530:32583029,37034543:0 -) -(1,11531:6630773,37899623:25952256,513147,126483 -g1,11530:10106147,37899623 -g1,11530:10988261,37899623 -g1,11530:12453646,37899623 -g1,11530:15845789,37899623 -k1,11531:32583029,37899623:13659014 -g1,11531:32583029,37899623 -) -v1,11533:6630773,38764703:0,393216,0 -(1,11534:6630773,43585628:25952256,5214141,0 -g1,11534:6630773,43585628 -g1,11534:6237557,43585628 -r1,11538:6368629,43585628:131072,5214141,0 -g1,11534:6567858,43585628 -g1,11534:6764466,43585628 -[1,11534:6764466,43585628:25818563,5214141,0 -(1,11534:6764466,39125880:25818563,754393,260573 -(1,11533:6764466,39125880:0,754393,260573 -r1,11538:7856192,39125880:1091726,1014966,260573 -k1,11533:6764466,39125880:-1091726 -) -(1,11533:6764466,39125880:1091726,754393,260573 -) -k1,11533:8071064,39125880:214872 -k1,11533:8398744,39125880:327680 -k1,11533:9810303,39125880:214872 -k1,11533:12423792,39125880:214871 -k1,11533:13254702,39125880:214872 -k1,11533:15784961,39125880:214872 -h1,11533:16755549,39125880:0,0,0 -k1,11533:16970421,39125880:214872 -k1,11533:18376738,39125880:214872 -h1,11533:19745785,39125880:0,0,0 -k1,11533:19960656,39125880:214871 -k1,11533:21167088,39125880:214872 -k1,11533:22757561,39125880:214872 -k1,11533:24512529,39125880:214872 -k1,11533:25675051,39125880:214871 -k1,11533:26909008,39125880:214872 -k1,11533:29521187,39125880:214872 -k1,11533:32583029,39125880:0 -) -(1,11534:6764466,39990960:25818563,513147,134348 -k1,11533:11446746,39990960:234351 -k1,11533:14735076,39990960:234352 -k1,11533:17215346,39990960:234351 -k1,11533:18641143,39990960:234352 -k1,11533:19290302,39990960:234316 -k1,11533:21858391,39990960:234352 -k1,11533:23377248,39990960:234351 -k1,11533:23824556,39990960:234316 -k1,11533:25745805,39990960:234352 -k1,11533:27537947,39990960:234351 -k1,11533:30202374,39990960:234352 -k1,11533:31812326,39990960:234351 -k1,11533:32583029,39990960:0 -) -(1,11534:6764466,40856040:25818563,513147,134348 -k1,11533:11051891,40856040:260893 -k1,11533:13071114,40856040:260892 -k1,11533:13983435,40856040:260893 -k1,11533:15792944,40856040:260893 -k1,11533:17158119,40856040:260893 -k1,11533:18166777,40856040:260892 -k1,11533:21266690,40856040:260893 -k1,11533:22143621,40856040:260893 -k1,11533:25166857,40856040:260893 -k1,11533:28964072,40856040:260892 -k1,11533:30421652,40856040:260893 -k1,11533:32583029,40856040:0 -) -(1,11534:6764466,41721120:25818563,505283,134348 -k1,11533:8547398,41721120:269706 -k1,11533:9808664,41721120:269706 -k1,11533:12836780,41721120:269706 -k1,11533:13722524,41721120:269706 -k1,11533:16572382,41721120:269706 -k1,11533:20648418,41721120:269706 -k1,11533:21534162,41721120:269706 -k1,11533:23170949,41721120:269706 -k1,11533:25818957,41721120:269706 -k1,11533:27556014,41721120:269706 -k1,11533:28477148,41721120:269706 -k1,11533:29864898,41721120:269706 -k1,11533:31773659,41721120:269706 -k1,11533:32583029,41721120:0 -) -(1,11534:6764466,42586200:25818563,513147,126483 -k1,11533:8416348,42586200:143243 -k1,11533:12139823,42586200:143243 -k1,11533:13100955,42586200:143243 -k1,11533:16663866,42586200:143242 -k1,11533:17338606,42586200:143243 -k1,11533:19168746,42586200:143243 -k1,11533:20331074,42586200:143243 -k1,11533:21943634,42586200:143243 -k1,11533:23204921,42586200:143243 -k1,11533:24773572,42586200:143243 -k1,11533:25864465,42586200:143242 -k1,11533:27026793,42586200:143243 -k1,11533:29001112,42586200:143243 -k1,11533:29675852,42586200:143243 -k1,11533:32583029,42586200:0 -) -(1,11534:6764466,43451280:25818563,505283,134348 -k1,11534:32583030,43451280:24377428 -g1,11534:32583030,43451280 -) -] -g1,11534:32583029,43585628 -) -h1,11534:6630773,43585628:0,0,0 -v1,11537:6630773,44450708:0,393216,0 -] -(1,11538:32583029,45706769:0,0,0 -g1,11538:32583029,45706769 -) -) -] -(1,11538:6630773,47279633:25952256,0,0 -h1,11538:6630773,47279633:25952256,0,0 -) -] -(1,11538:4262630,4025873:0,0,0 -[1,11538:-473656,4025873:0,0,0 -(1,11538:-473656,-710413:0,0,0 -(1,11538:-473656,-710413:0,0,0 -g1,11538:-473656,-710413 -) -g1,11538:-473656,-710413 -) -] -) -] -!14087 -}180 -Input:1927:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1928:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1929:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +r1,11537:37855564,49800853:1179648,16384,0 +) +) +k1,11537:3078556,49800853:-34777008 +) +] +g1,11537:6630773,4812305 +g1,11537:6630773,4812305 +g1,11537:9524187,4812305 +g1,11537:11465363,4812305 +g1,11537:15704887,4812305 +g1,11537:16405466,4812305 +g1,11537:19787123,4812305 +k1,11537:31387652,4812305:11600529 +) +) +] +[1,11537:6630773,45706769:25952256,40108032,0 +(1,11537:6630773,45706769:25952256,40108032,0 +(1,11537:6630773,45706769:0,0,0 +g1,11537:6630773,45706769 +) +[1,11537:6630773,45706769:25952256,40108032,0 +[1,11473:6630773,28849720:25952256,23250983,0 +[1,11473:6630773,28849720:25952256,23250983,0 +(1,11464:6630773,23766069:25952256,18167332,0 +k1,11464:10523651,23766069:3892878 +h1,11463:10523651,23766069:0,0,0 +(1,11463:10523651,23766069:18166500,18167332,0 +(1,11463:10523651,23766069:18167376,18167376,0 +(1,11463:10523651,23766069:18167376,18167376,0 +(1,11463:10523651,23766069:0,18167376,0 +(1,11463:10523651,23766069:0,28417720,0 +(1,11463:10523651,23766069:28417720,28417720,0 +) +k1,11463:10523651,23766069:-28417720 +) +) +g1,11463:28691027,23766069 +) +) +) +g1,11464:28690151,23766069 +k1,11464:32583029,23766069:3892878 +) +(1,11472:6630773,25286509:25952256,505283,134348 +h1,11472:6630773,25286509:0,0,0 +g1,11472:8923222,25286509 +k1,11472:32583028,25286509:22261268 +g1,11472:32583028,25286509 +) +(1,11472:6630773,26151589:25952256,513147,134348 +h1,11472:6630773,26151589:0,0,0 +k1,11472:10390216,26151589:192974 +k1,11472:12756363,26151589:192973 +k1,11472:13896988,26151589:192974 +k1,11472:16852305,26151589:192974 +k1,11472:20707430,26151589:192973 +k1,11472:21551832,26151589:192974 +k1,11472:25175615,26151589:192973 +k1,11472:26572485,26151589:192974 +k1,11472:28460875,26151589:192974 +k1,11472:29313140,26151589:192973 +k1,11472:31647175,26151589:192974 +k1,11472:32583029,26151589:0 +) +(1,11472:6630773,27016669:25952256,513147,134348 +k1,11472:8610767,27016669:189550 +k1,11472:11397509,27016669:189550 +k1,11472:14320567,27016669:189551 +k1,11472:15169409,27016669:189550 +k1,11472:18121302,27016669:189550 +k1,11472:20083601,27016669:189550 +k1,11472:21469839,27016669:189551 +k1,11472:23048752,27016669:189550 +k1,11472:23854340,27016669:189550 +k1,11472:25247131,27016669:189550 +k1,11472:27292006,27016669:189551 +k1,11472:28985607,27016669:189550 +k1,11472:31966991,27016669:189550 +k1,11472:32583029,27016669:0 +) +(1,11472:6630773,27881749:25952256,513147,126483 +k1,11472:7164456,27881749:177823 +k1,11472:10418538,27881749:177822 +k1,11472:11990312,27881749:177823 +k1,11472:12523994,27881749:177822 +k1,11472:16628079,27881749:177823 +k1,11472:18808026,27881749:177822 +k1,11472:21562069,27881749:177823 +k1,11472:23042070,27881749:177801 +k1,11472:24613843,27881749:177822 +k1,11472:26154160,27881749:177823 +k1,11472:28199758,27881749:177822 +k1,11472:30162565,27881749:177801 +k1,11472:30999680,27881749:177823 +k1,11472:32583029,27881749:0 +) +(1,11472:6630773,28746829:25952256,505283,102891 +g1,11472:9688682,28746829 +g1,11472:10858499,28746829 +g1,11472:12249173,28746829 +g1,11472:12863245,28746829 +k1,11472:32583029,28746829:18124638 +g1,11472:32583029,28746829 +) +] +] +v1,11527:6630773,30815800:0,393216,0 +(1,11527:6630773,32800239:25952256,2377655,0 +g1,11527:6630773,32800239 +g1,11527:6237557,32800239 +r1,11537:6368629,32800239:131072,2377655,0 +g1,11527:6567858,32800239 +g1,11527:6764466,32800239 +[1,11527:6764466,32800239:25818563,2377655,0 +(1,11527:6764466,30935731:25818563,513147,134348 +h1,11526:6764466,30935731:983040,0,0 +k1,11526:9228424,30935731:284231 +k1,11526:12224535,30935731:284231 +k1,11526:13746741,30935731:284231 +k1,11526:14690264,30935731:284231 +k1,11526:18321420,30935731:284232 +k1,11526:19624736,30935731:284231 +k1,11526:22984572,30935731:284231 +k1,11526:24694211,30935731:284231 +k1,11526:25637734,30935731:284231 +k1,11526:26692668,30935731:284231 +k1,11526:27391657,30935731:284146 +k1,11526:31115873,30935731:284231 +k1,11526:31931601,30935731:284231 +k1,11526:32583029,30935731:0 +) +(1,11527:6764466,31800811:25818563,513147,134348 +k1,11526:8042688,31800811:185737 +k1,11526:10923920,31800811:185736 +(1,11526:10923920,31800811:0,452978,115847 +r1,11537:15502728,31800811:4578808,568825,115847 +k1,11526:10923920,31800811:-4578808 +) +(1,11526:10923920,31800811:4578808,452978,115847 +k1,11526:10923920,31800811:3277 +h1,11526:15499451,31800811:0,411205,112570 +) +k1,11526:15862135,31800811:185737 +k1,11526:18582805,31800811:185737 +k1,11526:24647776,31800811:185737 +k1,11526:26346738,31800811:185736 +k1,11526:27480126,31800811:185737 +k1,11526:28684948,31800811:185737 +k1,11526:32583029,31800811:0 +) +(1,11527:6764466,32665891:25818563,513147,134348 +g1,11526:9039220,32665891 +g1,11526:9854487,32665891 +g1,11526:12369103,32665891 +h1,11526:13339691,32665891:0,0,0 +g1,11526:13538920,32665891 +g1,11526:14929594,32665891 +h1,11526:16298641,32665891:0,0,0 +g1,11526:16671540,32665891 +g1,11526:19631145,32665891 +g1,11526:21311488,32665891 +g1,11526:22936125,32665891 +k1,11527:32583029,32665891:6346511 +g1,11527:32583029,32665891 +) +] +g1,11527:32583029,32800239 +) +h1,11527:6630773,32800239:0,0,0 +(1,11530:6630773,33665319:25952256,513147,126483 +h1,11529:6630773,33665319:983040,0,0 +k1,11529:8615343,33665319:183641 +k1,11529:9415022,33665319:183641 +k1,11529:11295391,33665319:183642 +k1,11529:14470751,33665319:183641 +k1,11529:15673477,33665319:183641 +k1,11529:20251307,33665319:183641 +k1,11529:21050986,33665319:183641 +k1,11529:22253713,33665319:183642 +k1,11529:24014150,33665319:183641 +k1,11529:24857083,33665319:183641 +k1,11529:26059809,33665319:183641 +k1,11529:27658373,33665319:183642 +k1,11529:28833574,33665319:183641 +k1,11529:30371189,33665319:183641 +k1,11529:32583029,33665319:0 +) +(1,11530:6630773,34530399:25952256,513147,134348 +k1,11529:7870059,34530399:220201 +k1,11529:11016443,34530399:220201 +k1,11529:11895936,34530399:220201 +k1,11529:13135222,34530399:220201 +k1,11529:15967688,34530399:220201 +k1,11529:17933113,34530399:220201 +k1,11529:20778685,34530399:220200 +k1,11529:23108490,34530399:220201 +k1,11529:24347776,34530399:220201 +k1,11529:26037294,34530399:220201 +k1,11529:30321382,34530399:220201 +k1,11529:31966991,34530399:220201 +k1,11529:32583029,34530399:0 +) +(1,11530:6630773,35395479:25952256,505283,134348 +k1,11529:8547832,35395479:220332 +k1,11529:12839916,35395479:220332 +k1,11529:14843483,35395479:220332 +k1,11529:16082900,35395479:220332 +k1,11529:20697421,35395479:220332 +k1,11529:21530514,35395479:220331 +k1,11529:23202468,35395479:220332 +k1,11529:26139923,35395479:220332 +k1,11529:27351815,35395479:220332 +k1,11529:28997555,35395479:220332 +k1,11529:32583029,35395479:0 +) +(1,11530:6630773,36260559:25952256,513147,134348 +k1,11529:7948464,36260559:298606 +k1,11529:11173252,36260559:298605 +k1,11529:12131150,36260559:298606 +k1,11529:14165149,36260559:298606 +k1,11529:16794870,36260559:298605 +k1,11529:19810599,36260559:298606 +k1,11529:21854428,36260559:298605 +k1,11529:23461788,36260559:298606 +k1,11529:26200955,36260559:298606 +k1,11529:28267721,36260559:298605 +k1,11529:31563944,36260559:298606 +k1,11529:32583029,36260559:0 +) +(1,11530:6630773,37125639:25952256,513147,126483 +k1,11529:9165907,37125639:204018 +k1,11529:10462411,37125639:204019 +k1,11529:11325721,37125639:204018 +k1,11529:14246863,37125639:204019 +k1,11529:14982378,37125639:204018 +k1,11529:16788097,37125639:204019 +k1,11529:19438574,37125639:204018 +k1,11529:21340631,37125639:204019 +k1,11529:22002746,37125639:204018 +k1,11529:22738262,37125639:204019 +k1,11529:24812678,37125639:204018 +k1,11529:25668125,37125639:204019 +k1,11529:29305574,37125639:204018 +k1,11529:32583029,37125639:0 +) +(1,11530:6630773,37990719:25952256,513147,126483 +g1,11529:10106147,37990719 +g1,11529:10988261,37990719 +g1,11529:12453646,37990719 +g1,11529:15845789,37990719 +k1,11530:32583029,37990719:13659014 +g1,11530:32583029,37990719 +) +v1,11532:6630773,38855799:0,393216,0 +(1,11533:6630773,43676724:25952256,5214141,0 +g1,11533:6630773,43676724 +g1,11533:6237557,43676724 +r1,11537:6368629,43676724:131072,5214141,0 +g1,11533:6567858,43676724 +g1,11533:6764466,43676724 +[1,11533:6764466,43676724:25818563,5214141,0 +(1,11533:6764466,39216976:25818563,754393,260573 +(1,11532:6764466,39216976:0,754393,260573 +r1,11537:7856192,39216976:1091726,1014966,260573 +k1,11532:6764466,39216976:-1091726 +) +(1,11532:6764466,39216976:1091726,754393,260573 +) +k1,11532:8071064,39216976:214872 +k1,11532:8398744,39216976:327680 +k1,11532:9810303,39216976:214872 +k1,11532:12423792,39216976:214871 +k1,11532:13254702,39216976:214872 +k1,11532:15784961,39216976:214872 +h1,11532:16755549,39216976:0,0,0 +k1,11532:16970421,39216976:214872 +k1,11532:18376738,39216976:214872 +h1,11532:19745785,39216976:0,0,0 +k1,11532:19960656,39216976:214871 +k1,11532:21167088,39216976:214872 +k1,11532:22757561,39216976:214872 +k1,11532:24512529,39216976:214872 +k1,11532:25675051,39216976:214871 +k1,11532:26909008,39216976:214872 +k1,11532:29521187,39216976:214872 +k1,11532:32583029,39216976:0 +) +(1,11533:6764466,40082056:25818563,513147,134348 +k1,11532:11446746,40082056:234351 +k1,11532:14735076,40082056:234352 +k1,11532:17215346,40082056:234351 +k1,11532:18641143,40082056:234352 +k1,11532:19290302,40082056:234316 +k1,11532:21858391,40082056:234352 +k1,11532:23377248,40082056:234351 +k1,11532:23824556,40082056:234316 +k1,11532:25745805,40082056:234352 +k1,11532:27537947,40082056:234351 +k1,11532:30202374,40082056:234352 +k1,11532:31812326,40082056:234351 +k1,11532:32583029,40082056:0 +) +(1,11533:6764466,40947136:25818563,513147,134348 +k1,11532:11051891,40947136:260893 +k1,11532:13071114,40947136:260892 +k1,11532:13983435,40947136:260893 +k1,11532:15792944,40947136:260893 +k1,11532:17158119,40947136:260893 +k1,11532:18166777,40947136:260892 +k1,11532:21266690,40947136:260893 +k1,11532:22143621,40947136:260893 +k1,11532:25166857,40947136:260893 +k1,11532:28964072,40947136:260892 +k1,11532:30421652,40947136:260893 +k1,11532:32583029,40947136:0 +) +(1,11533:6764466,41812216:25818563,505283,134348 +k1,11532:8547398,41812216:269706 +k1,11532:9808664,41812216:269706 +k1,11532:12836780,41812216:269706 +k1,11532:13722524,41812216:269706 +k1,11532:16572382,41812216:269706 +k1,11532:20648418,41812216:269706 +k1,11532:21534162,41812216:269706 +k1,11532:23170949,41812216:269706 +k1,11532:25818957,41812216:269706 +k1,11532:27556014,41812216:269706 +k1,11532:28477148,41812216:269706 +k1,11532:29864898,41812216:269706 +k1,11532:31773659,41812216:269706 +k1,11532:32583029,41812216:0 +) +(1,11533:6764466,42677296:25818563,513147,126483 +k1,11532:8416348,42677296:143243 +k1,11532:12139823,42677296:143243 +k1,11532:13100955,42677296:143243 +k1,11532:16663866,42677296:143242 +k1,11532:17338606,42677296:143243 +k1,11532:19168746,42677296:143243 +k1,11532:20331074,42677296:143243 +k1,11532:21943634,42677296:143243 +k1,11532:23204921,42677296:143243 +k1,11532:24773572,42677296:143243 +k1,11532:25864465,42677296:143242 +k1,11532:27026793,42677296:143243 +k1,11532:29001112,42677296:143243 +k1,11532:29675852,42677296:143243 +k1,11532:32583029,42677296:0 +) +(1,11533:6764466,43542376:25818563,505283,134348 +k1,11533:32583030,43542376:24377428 +g1,11533:32583030,43542376 +) +] +g1,11533:32583029,43676724 +) +h1,11533:6630773,43676724:0,0,0 +v1,11536:6630773,44541804:0,393216,0 +] +(1,11537:32583029,45706769:0,0,0 +g1,11537:32583029,45706769 +) +) +] +(1,11537:6630773,47279633:25952256,0,0 +h1,11537:6630773,47279633:25952256,0,0 +) +] +(1,11537:4262630,4025873:0,0,0 +[1,11537:-473656,4025873:0,0,0 +(1,11537:-473656,-710413:0,0,0 +(1,11537:-473656,-710413:0,0,0 +g1,11537:-473656,-710413 +) +g1,11537:-473656,-710413 +) +] +) +] +!14054 +}181 Input:1930:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1931:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1932:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1933:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1934:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1935:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1936:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1937:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1938:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{181 -[1,11577:4262630,47279633:28320399,43253760,0 -(1,11577:4262630,4025873:0,0,0 -[1,11577:-473656,4025873:0,0,0 -(1,11577:-473656,-710413:0,0,0 -(1,11577:-473656,-644877:0,0,0 -k1,11577:-473656,-644877:-65536 +{182 +[1,11576:4262630,47279633:28320399,43253760,0 +(1,11576:4262630,4025873:0,0,0 +[1,11576:-473656,4025873:0,0,0 +(1,11576:-473656,-710413:0,0,0 +(1,11576:-473656,-644877:0,0,0 +k1,11576:-473656,-644877:-65536 ) -(1,11577:-473656,4736287:0,0,0 -k1,11577:-473656,4736287:5209943 +(1,11576:-473656,4736287:0,0,0 +k1,11576:-473656,4736287:5209943 ) -g1,11577:-473656,-710413 +g1,11576:-473656,-710413 ) ] ) -[1,11577:6630773,47279633:25952256,43253760,0 -[1,11577:6630773,4812305:25952256,786432,0 -(1,11577:6630773,4812305:25952256,505283,134348 -(1,11577:6630773,4812305:25952256,505283,134348 -g1,11577:3078558,4812305 -[1,11577:3078558,4812305:0,0,0 -(1,11577:3078558,2439708:0,1703936,0 -k1,11577:1358238,2439708:-1720320 +[1,11576:6630773,47279633:25952256,43253760,0 +[1,11576:6630773,4812305:25952256,786432,0 +(1,11576:6630773,4812305:25952256,505283,134348 +(1,11576:6630773,4812305:25952256,505283,134348 +g1,11576:3078558,4812305 +[1,11576:3078558,4812305:0,0,0 +(1,11576:3078558,2439708:0,1703936,0 +k1,11576:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11577:2537886,2439708:1179648,16384,0 +r1,11576:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11577:3078558,1915420:16384,1179648,0 +r1,11576:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -206691,16 +206873,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11577:3078558,4812305:0,0,0 -(1,11577:3078558,2439708:0,1703936,0 -g1,11577:29030814,2439708 -g1,11577:36135244,2439708 +[1,11576:3078558,4812305:0,0,0 +(1,11576:3078558,2439708:0,1703936,0 +g1,11576:29030814,2439708 +g1,11576:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11577:36151628,1915420:16384,1179648,0 +r1,11576:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -206709,25 +206891,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11577:37855564,2439708:1179648,16384,0 +r1,11576:37855564,2439708:1179648,16384,0 ) ) -k1,11577:3078556,2439708:-34777008 +k1,11576:3078556,2439708:-34777008 ) ] -[1,11577:3078558,4812305:0,0,0 -(1,11577:3078558,49800853:0,16384,2228224 -k1,11577:1358238,49800853:-1720320 +[1,11576:3078558,4812305:0,0,0 +(1,11576:3078558,49800853:0,16384,2228224 +k1,11576:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11577:2537886,49800853:1179648,16384,0 +r1,11576:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11577:3078558,51504789:16384,1179648,0 +r1,11576:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -206737,16 +206919,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11577:3078558,4812305:0,0,0 -(1,11577:3078558,49800853:0,16384,2228224 -g1,11577:29030814,49800853 -g1,11577:36135244,49800853 +[1,11576:3078558,4812305:0,0,0 +(1,11576:3078558,49800853:0,16384,2228224 +g1,11576:29030814,49800853 +g1,11576:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11577:36151628,51504789:16384,1179648,0 +r1,11576:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -206755,1708 +206937,805 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11577:37855564,49800853:1179648,16384,0 -) -) -k1,11577:3078556,49800853:-34777008 -) -] -g1,11577:6630773,4812305 -k1,11577:21678495,4812305:13852345 -g1,11577:23301166,4812305 -g1,11577:24088253,4812305 -g1,11577:28572226,4812305 -g1,11577:29981905,4812305 -) -) -] -[1,11577:6630773,45706769:25952256,40108032,0 -(1,11577:6630773,45706769:25952256,40108032,0 -(1,11577:6630773,45706769:0,0,0 -g1,11577:6630773,45706769 -) -[1,11577:6630773,45706769:25952256,40108032,0 -v1,11538:6630773,6254097:0,393216,0 -(1,11538:6630773,14474598:25952256,8613717,0 -g1,11538:6630773,14474598 -g1,11538:6237557,14474598 -r1,11577:6368629,14474598:131072,8613717,0 -g1,11538:6567858,14474598 -g1,11538:6764466,14474598 -[1,11538:6764466,14474598:25818563,8613717,0 -(1,11538:6764466,6562395:25818563,701514,196608 -(1,11537:6764466,6562395:0,701514,196608 -r1,11577:7761522,6562395:997056,898122,196608 -k1,11537:6764466,6562395:-997056 -) -(1,11537:6764466,6562395:997056,701514,196608 -) -k1,11537:7997382,6562395:235860 -k1,11537:8325062,6562395:327680 -k1,11537:9814625,6562395:235859 -k1,11537:11387419,6562395:235860 -k1,11537:12371044,6562395:235859 -k1,11537:16157645,6562395:235860 -k1,11537:17723885,6562395:235859 -k1,11537:18775013,6562395:235860 -k1,11537:20029957,6562395:235859 -k1,11537:22109345,6562395:235860 -k1,11537:26007356,6562395:235859 -k1,11537:28711302,6562395:235860 -k1,11537:29598589,6562395:235859 -k1,11537:31563944,6562395:235860 -k1,11537:32583029,6562395:0 -) -(1,11538:6764466,7427475:25818563,513147,126483 -k1,11537:9848403,7427475:157754 -k1,11537:10665450,7427475:157755 -k1,11537:13867351,7427475:157754 -k1,11537:14799086,7427475:157755 -k1,11537:17065789,7427475:157754 -k1,11537:18603732,7427475:157755 -k1,11537:19576754,7427475:157754 -k1,11537:20800780,7427475:157755 -k1,11537:22721452,7427475:157754 -k1,11537:24608702,7427475:157755 -k1,11537:27657249,7427475:157754 -k1,11537:28887173,7427475:157755 -k1,11537:30064012,7427475:157754 -k1,11537:31966991,7427475:157755 -k1,11537:32583029,7427475:0 -) -(1,11538:6764466,8292555:25818563,513147,126483 -k1,11537:9935195,8292555:144932 -k1,11537:12366678,8292555:144932 -k1,11537:13127648,8292555:144932 -k1,11537:13899760,8292555:144933 -k1,11537:15501557,8292555:144932 -k1,11537:16329374,8292555:144932 -k1,11537:19515123,8292555:144878 -k1,11537:20651615,8292555:144932 -k1,11537:23739769,8292555:144932 -k1,11537:25152167,8292555:144932 -k1,11537:27984731,8292555:144933 -k1,11537:29625850,8292555:144932 -k1,11537:30456944,8292555:144932 -k1,11537:31923737,8292555:144932 -k1,11538:32583029,8292555:0 -) -(1,11538:6764466,9157635:25818563,513147,134348 -k1,11537:7342763,9157635:163454 -k1,11537:9111885,9157635:163490 -k1,11537:9958260,9157635:163490 -k1,11537:11819788,9157635:163490 -k1,11537:14893732,9157635:163490 -k1,11537:17596741,9157635:163489 -k1,11537:18751791,9157635:163490 -k1,11537:21439072,9157635:163490 -k1,11537:22230397,9157635:163490 -k1,11537:24806923,9157635:163490 -k1,11537:27099021,9157635:163489 -k1,11537:28281596,9157635:163490 -k1,11537:29870494,9157635:163490 -k1,11537:32583029,9157635:0 -) -(1,11538:6764466,10022715:25818563,505283,134348 -k1,11537:7611343,10022715:195449 -k1,11537:10199510,10022715:195448 -k1,11537:11586404,10022715:195449 -k1,11537:14554025,10022715:195448 -k1,11537:15768559,10022715:195449 -k1,11537:17460194,10022715:195448 -k1,11537:19942194,10022715:195449 -k1,11537:20753680,10022715:195448 -k1,11537:22645856,10022715:195449 -k1,11537:26013902,10022715:195448 -k1,11537:27476817,10022715:195449 -k1,11537:30359896,10022715:195448 -k1,11537:32051532,10022715:195449 -k1,11537:32583029,10022715:0 -) -(1,11538:6764466,10887795:25818563,513147,134348 -k1,11537:8754140,10887795:219547 -k1,11537:11087879,10887795:219548 -k1,11537:15279563,10887795:219547 -k1,11537:17786318,10887795:219548 -k1,11537:20048622,10887795:219547 -k1,11537:21136522,10887795:219548 -k1,11537:24483447,10887795:219547 -k1,11537:25894440,10887795:219548 -k1,11537:28083344,10887795:219547 -k1,11537:28717715,10887795:219528 -k1,11537:29620147,10887795:219547 -k1,11537:32583029,10887795:0 -) -(1,11538:6764466,11752875:25818563,505283,126483 -k1,11537:9502843,11752875:225727 -k1,11537:10084430,11752875:225727 -k1,11537:11725078,11752875:225726 -k1,11537:13867733,11752875:225727 -k1,11537:14709498,11752875:225727 -k1,11537:15350041,11752875:225700 -k1,11537:16107265,11752875:225727 -k1,11537:19923053,11752875:225726 -k1,11537:21416246,11752875:225727 -k1,11537:24329604,11752875:225727 -k1,11537:26051518,11752875:225727 -k1,11537:27728867,11752875:225727 -k1,11537:29380001,11752875:225726 -k1,11537:30474080,11752875:225727 -k1,11537:32583029,11752875:0 -) -(1,11538:6764466,12617955:25818563,513147,126483 -k1,11537:8080867,12617955:218673 -k1,11537:10304286,12617955:218673 -k1,11537:11714405,12617955:218674 -k1,11537:12549116,12617955:218673 -k1,11537:14459929,12617955:218673 -k1,11537:16375984,12617955:218673 -k1,11537:17542308,12617955:218673 -k1,11537:19212603,12617955:218673 -k1,11537:22148400,12617955:218674 -k1,11537:22983111,12617955:218673 -k1,11537:23557644,12617955:218673 -k1,11537:25364910,12617955:218673 -k1,11537:26780270,12617955:218673 -k1,11537:27413767,12617955:218654 -k1,11537:31090119,12617955:218673 -k1,11537:32583029,12617955:0 -) -(1,11538:6764466,13483035:25818563,505283,134348 -k1,11537:8693787,13483035:237181 -k1,11537:12729435,13483035:237181 -k1,11537:14234081,13483035:237180 -k1,11537:16550719,13483035:237181 -k1,11537:19475531,13483035:237181 -k1,11537:21382569,13483035:237181 -k1,11537:22305912,13483035:237181 -k1,11537:22898953,13483035:237181 -k1,11537:26840228,13483035:237180 -k1,11537:28742023,13483035:237181 -k1,11537:30864675,13483035:237181 -k1,11537:32583029,13483035:0 -) -(1,11538:6764466,14348115:25818563,513147,126483 -g1,11537:9592999,14348115 -k1,11538:32583029,14348115:18861918 -g1,11538:32583029,14348115 -) -] -g1,11538:32583029,14474598 -) -h1,11538:6630773,14474598:0,0,0 -(1,11541:6630773,15339678:25952256,505283,126483 -h1,11540:6630773,15339678:983040,0,0 -k1,11540:9038863,15339678:228363 -k1,11540:12258945,15339678:228363 -k1,11540:13103346,15339678:228363 -k1,11540:14534950,15339678:228363 -k1,11540:17042000,15339678:228363 -k1,11540:18362849,15339678:228364 -k1,11540:21407294,15339678:228363 -k1,11540:22827102,15339678:228363 -k1,11540:26331610,15339678:228363 -k1,11540:30138239,15339678:228363 -k1,11540:31438771,15339678:228363 -k1,11541:32583029,15339678:0 -) -(1,11541:6630773,16204758:25952256,513147,126483 -k1,11540:9906413,16204758:181030 -k1,11540:11278889,16204758:181031 -k1,11540:13252329,16204758:181030 -k1,11540:16459157,16204758:181031 -k1,11540:17744469,16204758:181030 -k1,11540:18673266,16204758:181031 -k1,11540:20140112,16204758:181030 -k1,11540:21834369,16204758:181031 -k1,11540:23409350,16204758:181030 -k1,11540:25898559,16204758:181031 -k1,11540:26738881,16204758:181030 -k1,11540:28621882,16204758:181031 -k1,11540:31089463,16204758:181030 -k1,11540:32583029,16204758:0 -) -(1,11541:6630773,17069838:25952256,513147,134348 -g1,11540:7516164,17069838 -g1,11540:10023571,17069838 -g1,11540:10889956,17069838 -(1,11540:10889956,17069838:0,452978,115847 -r1,11577:14061916,17069838:3171960,568825,115847 -k1,11540:10889956,17069838:-3171960 -) -(1,11540:10889956,17069838:3171960,452978,115847 -k1,11540:10889956,17069838:3277 -h1,11540:14058639,17069838:0,411205,112570 -) -g1,11540:14261145,17069838 -g1,11540:16656485,17069838 -g1,11540:17538599,17069838 -(1,11540:17538599,17069838:0,452978,122846 -r1,11577:20007136,17069838:2468537,575824,122846 -k1,11540:17538599,17069838:-2468537 -) -(1,11540:17538599,17069838:2468537,452978,122846 -k1,11540:17538599,17069838:3277 -h1,11540:20003859,17069838:0,411205,112570 -) -g1,11540:20206365,17069838 -k1,11541:32583029,17069838:10313591 -g1,11541:32583029,17069838 -) -(1,11543:6630773,17934918:25952256,505283,134348 -h1,11542:6630773,17934918:983040,0,0 -k1,11542:9268597,17934918:175636 -k1,11542:11930015,17934918:175637 -k1,11542:15181911,17934918:175636 -k1,11542:18989553,17934918:175637 -k1,11542:19848074,17934918:175636 -k1,11542:21829882,17934918:175636 -k1,11542:24666936,17934918:175637 -k1,11542:25861657,17934918:175636 -k1,11542:27703219,17934918:175637 -k1,11542:29911782,17934918:175636 -k1,11542:32583029,17934918:0 -) -(1,11543:6630773,18799998:25952256,513147,126483 -k1,11542:8484429,18799998:159550 -k1,11542:9591630,18799998:159550 -k1,11542:13238352,18799998:159551 -k1,11542:16473507,18799998:159550 -k1,11542:17737339,18799998:159550 -k1,11542:20525538,18799998:159550 -k1,11542:24934442,18799998:159550 -k1,11542:25923022,18799998:159550 -k1,11542:27774713,18799998:159551 -k1,11542:29922625,18799998:159550 -k1,11542:31285416,18799998:159550 -k1,11543:32583029,18799998:0 -) -(1,11543:6630773,19665078:25952256,505283,126483 -k1,11542:8368013,19665078:224014 -k1,11542:11264585,19665078:224014 -k1,11542:12671524,19665078:224014 -k1,11542:13546966,19665078:224014 -k1,11542:18149440,19665078:224014 -k1,11542:18989492,19665078:224014 -k1,11542:20232591,19665078:224014 -k1,11542:23931324,19665078:224014 -k1,11542:25422804,19665078:224014 -k1,11542:28334449,19665078:224014 -k1,11542:30228320,19665078:224014 -k1,11542:32583029,19665078:0 -) -(1,11543:6630773,20530158:25952256,505283,134348 -k1,11542:10552215,20530158:259290 -k1,11542:11803065,20530158:259290 -k1,11542:14846324,20530158:259290 -k1,11542:15721651,20530158:259289 -k1,11542:18561093,20530158:259290 -k1,11542:21505392,20530158:259290 -k1,11542:24523092,20530158:259290 -k1,11542:25398420,20530158:259290 -k1,11542:26676795,20530158:259290 -k1,11542:27350867,20530158:259229 -k1,11542:31391584,20530158:259290 -k1,11542:32583029,20530158:0 -) -(1,11543:6630773,21395238:25952256,513147,134348 -k1,11542:10569618,21395238:209191 -k1,11542:13689263,21395238:209191 -k1,11542:15392020,21395238:209191 -k1,11542:16287373,21395238:209191 -k1,11542:18948920,21395238:209191 -k1,11542:23651258,21395238:209190 -k1,11542:24391946,21395238:209191 -k1,11542:25886953,21395238:209191 -k1,11542:28726104,21395238:209191 -k1,11542:30968222,21395238:209191 -k1,11543:32583029,21395238:0 -) -(1,11543:6630773,22260318:25952256,513147,126483 -k1,11542:10071610,22260318:177144 -k1,11542:13828985,22260318:177143 -k1,11542:16940831,22260318:177144 -k1,11542:18448356,22260318:177144 -k1,11542:19276927,22260318:177143 -k1,11542:22082720,22260318:177144 -k1,11542:26335548,22260318:177144 -k1,11542:28367361,22260318:177144 -k1,11542:29353874,22260318:177143 -k1,11542:31914562,22260318:177144 -k1,11542:32583029,22260318:0 -) -(1,11543:6630773,23125398:25952256,513147,126483 -g1,11542:10368946,23125398 -g1,11542:13643780,23125398 -g1,11542:14374506,23125398 -g1,11542:16912715,23125398 -g1,11542:18131029,23125398 -g1,11542:20156746,23125398 -g1,11542:21015267,23125398 -g1,11542:22417737,23125398 -k1,11543:32583029,23125398:8530824 -g1,11543:32583029,23125398 -) -(1,11544:6630773,25956558:25952256,32768,229376 -(1,11544:6630773,25956558:0,32768,229376 -(1,11544:6630773,25956558:5505024,32768,229376 -r1,11577:12135797,25956558:5505024,262144,229376 -) -k1,11544:6630773,25956558:-5505024 -) -(1,11544:6630773,25956558:25952256,32768,0 -r1,11577:32583029,25956558:25952256,32768,0 -) -) -(1,11544:6630773,27588410:25952256,606339,161218 -(1,11544:6630773,27588410:2464678,582746,14155 -g1,11544:6630773,27588410 -g1,11544:9095451,27588410 -) -g1,11544:11933684,27588410 -g1,11544:14850561,27588410 -g1,11544:15945275,27588410 -g1,11544:20038654,27588410 -k1,11544:32583029,27588410:9784785 -g1,11544:32583029,27588410 -) -(1,11547:6630773,28846706:25952256,513147,134348 -k1,11546:7559910,28846706:301302 -k1,11546:8627328,28846706:301302 -k1,11546:12574398,28846706:301302 -k1,11546:15867418,28846706:301301 -k1,11546:18211477,28846706:301302 -k1,11546:19716020,28846706:301302 -k1,11546:22469679,28846706:301302 -k1,11546:23639333,28846706:301302 -k1,11546:25415850,28846706:301302 -k1,11546:27230377,28846706:301301 -k1,11546:29491205,28846706:301302 -k1,11546:31860823,28846706:301302 -k1,11547:32583029,28846706:0 -) -(1,11547:6630773,29711786:25952256,505283,134348 -k1,11546:9068166,29711786:295021 -k1,11546:10049349,29711786:295021 -k1,11546:12204283,29711786:295022 -k1,11546:15473983,29711786:295021 -k1,11546:17965115,29711786:295021 -k1,11546:18876174,29711786:295021 -k1,11546:20190280,29711786:295021 -k1,11546:21981488,29711786:295021 -k1,11546:26220467,29711786:295022 -k1,11546:27143323,29711786:295021 -k1,11546:29140314,29711786:295021 -k1,11546:31563944,29711786:295021 -k1,11546:32583029,29711786:0 -) -(1,11547:6630773,30576866:25952256,513147,126483 -k1,11546:8983253,30576866:284164 -k1,11546:10258977,30576866:284164 -k1,11546:13635130,30576866:284164 -k1,11546:14605457,30576866:284165 -k1,11546:16211482,30576866:284164 -k1,11546:17154938,30576866:284164 -k1,11546:18458187,30576866:284164 -k1,11546:20412208,30576866:284164 -k1,11546:22648034,30576866:284164 -k1,11546:24374645,30576866:284164 -k1,11546:25271572,30576866:284165 -k1,11546:26673780,30576866:284164 -k1,11546:28557022,30576866:284164 -k1,11546:29469021,30576866:284164 -k1,11546:31914562,30576866:284164 -k1,11546:32583029,30576866:0 -) -(1,11547:6630773,31441946:25952256,505283,134348 -k1,11546:10005128,31441946:290231 -k1,11546:11314444,31441946:290231 -k1,11546:13564200,31441946:290230 -k1,11546:15592446,31441946:290231 -k1,11546:16534105,31441946:290231 -k1,11546:17572102,31441946:290231 -k1,11546:20637127,31441946:290231 -k1,11546:22264291,31441946:290230 -k1,11546:24084788,31441946:290231 -k1,11546:25026447,31441946:290231 -k1,11546:26064444,31441946:290231 -k1,11546:28846353,31441946:290230 -k1,11546:29749346,31441946:290231 -k1,11546:31157621,31441946:290231 -k1,11546:32583029,31441946:0 -) -(1,11547:6630773,32307026:25952256,505283,134348 -k1,11546:8232473,32307026:236585 -k1,11546:12867835,32307026:236585 -k1,11546:13852186,32307026:236585 -k1,11546:16872740,32307026:236585 -k1,11546:18484926,32307026:236585 -k1,11546:19407673,32307026:236585 -k1,11546:20000117,32307026:236584 -k1,11546:23211381,32307026:236585 -k1,11546:25313776,32307026:236585 -k1,11546:27588531,32307026:236585 -k1,11546:28441154,32307026:236585 -k1,11546:29033599,32307026:236585 -k1,11546:31955194,32307026:236585 -k1,11546:32583029,32307026:0 -) -(1,11547:6630773,33172106:25952256,513147,126483 -k1,11546:8066431,33172106:232417 -k1,11546:9839599,33172106:232417 -k1,11546:12767512,33172106:232417 -(1,11546:12767512,33172106:0,452978,122846 -r1,11577:15587761,33172106:2820249,575824,122846 -k1,11546:12767512,33172106:-2820249 -) -(1,11546:12767512,33172106:2820249,452978,122846 -k1,11546:12767512,33172106:3277 -h1,11546:15584484,33172106:0,411205,112570 -) -k1,11546:15820178,33172106:232417 -k1,11546:17674611,33172106:232417 -k1,11546:18654794,33172106:232417 -k1,11546:20400437,33172106:232417 -k1,11546:22960037,33172106:232417 -k1,11546:23851746,33172106:232417 -k1,11546:25103248,33172106:232417 -k1,11546:28412580,33172106:232417 -(1,11546:28412580,33172106:0,414482,115847 -r1,11577:29122558,33172106:709978,530329,115847 -k1,11546:28412580,33172106:-709978 -) -(1,11546:28412580,33172106:709978,414482,115847 -k1,11546:28412580,33172106:3277 -h1,11546:29119281,33172106:0,411205,112570 -) -k1,11546:29354975,33172106:232417 -k1,11546:30270277,33172106:232417 -(1,11546:30270277,33172106:0,414482,115847 -r1,11577:30980255,33172106:709978,530329,115847 -k1,11546:30270277,33172106:-709978 -) -(1,11546:30270277,33172106:709978,414482,115847 -k1,11546:30270277,33172106:3277 -h1,11546:30976978,33172106:0,411205,112570 -) -k1,11546:31386342,33172106:232417 -k1,11546:32583029,33172106:0 -) -(1,11547:6630773,34037186:25952256,505283,7863 -g1,11546:10346664,34037186 -g1,11546:12414324,34037186 -g1,11546:16646639,34037186 -g1,11546:17634266,34037186 -k1,11547:32583029,34037186:13803849 -g1,11547:32583029,34037186 -) -(1,11549:6630773,34902266:25952256,473825,134348 -h1,11548:6630773,34902266:983040,0,0 -g1,11548:9248936,34902266 -g1,11548:11183558,34902266 -g1,11548:11738647,34902266 -(1,11548:11738647,34902266:0,452978,115847 -r1,11577:14910607,34902266:3171960,568825,115847 -k1,11548:11738647,34902266:-3171960 -) -(1,11548:11738647,34902266:3171960,452978,115847 -k1,11548:11738647,34902266:3277 -h1,11548:14907330,34902266:0,411205,112570 -) -g1,11548:15109836,34902266 -k1,11549:32583029,34902266:14663010 -g1,11549:32583029,34902266 -) -v1,11551:6630773,35587121:0,393216,0 -(1,11559:6630773,37395556:25952256,2201651,196608 -g1,11559:6630773,37395556 -g1,11559:6630773,37395556 -g1,11559:6434165,37395556 -(1,11559:6434165,37395556:0,2201651,196608 -r1,11577:32779637,37395556:26345472,2398259,196608 -k1,11559:6434165,37395556:-26345472 -) -(1,11559:6434165,37395556:26345472,2201651,196608 -[1,11559:6630773,37395556:25952256,2005043,0 -(1,11553:6630773,35814952:25952256,424439,112852 -(1,11552:6630773,35814952:0,0,0 -g1,11552:6630773,35814952 -g1,11552:6630773,35814952 -g1,11552:6303093,35814952 -(1,11552:6303093,35814952:0,0,0 -) -g1,11552:6630773,35814952 -) -k1,11553:6630773,35814952:0 -g1,11553:10614221,35814952 -h1,11553:12273991,35814952:0,0,0 -k1,11553:32583029,35814952:20309038 -g1,11553:32583029,35814952 -) -(1,11554:6630773,36499807:25952256,298373,4954 -h1,11554:6630773,36499807:0,0,0 -h1,11554:6962727,36499807:0,0,0 -k1,11554:32583029,36499807:25620302 -g1,11554:32583029,36499807 -) -(1,11558:6630773,37315734:25952256,424439,79822 -(1,11556:6630773,37315734:0,0,0 -g1,11556:6630773,37315734 -g1,11556:6630773,37315734 -g1,11556:6303093,37315734 -(1,11556:6303093,37315734:0,0,0 -) -g1,11556:6630773,37315734 -) -g1,11558:7626635,37315734 -g1,11558:8954451,37315734 -h1,11558:10282267,37315734:0,0,0 -k1,11558:32583029,37315734:22300762 -g1,11558:32583029,37315734 -) -] -) -g1,11559:32583029,37395556 -g1,11559:6630773,37395556 -g1,11559:6630773,37395556 -g1,11559:32583029,37395556 -g1,11559:32583029,37395556 -) -h1,11559:6630773,37592164:0,0,0 -(1,11562:6630773,38457244:25952256,505283,134348 -h1,11561:6630773,38457244:983040,0,0 -g1,11561:9274495,38457244 -g1,11561:11209117,38457244 -g1,11561:11764206,38457244 -(1,11561:11764206,38457244:0,452978,115847 -r1,11577:14936166,38457244:3171960,568825,115847 -k1,11561:11764206,38457244:-3171960 -) -(1,11561:11764206,38457244:3171960,452978,115847 -k1,11561:11764206,38457244:3277 -h1,11561:14932889,38457244:0,411205,112570 -) -g1,11561:15135395,38457244 -g1,11561:17014967,38457244 -g1,11561:19252366,38457244 -g1,11561:20067633,38457244 -g1,11561:20622722,38457244 -k1,11562:32583029,38457244:9396539 -g1,11562:32583029,38457244 -) -v1,11564:6630773,39142099:0,393216,0 -(1,11573:6630773,41641995:25952256,2893112,196608 -g1,11573:6630773,41641995 -g1,11573:6630773,41641995 -g1,11573:6434165,41641995 -(1,11573:6434165,41641995:0,2893112,196608 -r1,11577:32779637,41641995:26345472,3089720,196608 -k1,11573:6434165,41641995:-26345472 -) -(1,11573:6434165,41641995:26345472,2893112,196608 -[1,11573:6630773,41641995:25952256,2696504,0 -(1,11566:6630773,39376536:25952256,431045,6605 -(1,11565:6630773,39376536:0,0,0 -g1,11565:6630773,39376536 -g1,11565:6630773,39376536 -g1,11565:6303093,39376536 -(1,11565:6303093,39376536:0,0,0 -) -g1,11565:6630773,39376536 -) -g1,11566:10614220,39376536 -g1,11566:11610082,39376536 -h1,11566:12605944,39376536:0,0,0 -k1,11566:32583028,39376536:19977084 -g1,11566:32583028,39376536 -) -(1,11567:6630773,40061391:25952256,431045,112852 -h1,11567:6630773,40061391:0,0,0 -g1,11567:13269852,40061391 -h1,11567:14929622,40061391:0,0,0 -k1,11567:32583030,40061391:17653408 -g1,11567:32583030,40061391 -) -(1,11568:6630773,40746246:25952256,424439,6605 -h1,11568:6630773,40746246:0,0,0 -h1,11568:6962727,40746246:0,0,0 -k1,11568:32583029,40746246:25620302 -g1,11568:32583029,40746246 -) -(1,11572:6630773,41562173:25952256,424439,79822 -(1,11570:6630773,41562173:0,0,0 -g1,11570:6630773,41562173 -g1,11570:6630773,41562173 -g1,11570:6303093,41562173 -(1,11570:6303093,41562173:0,0,0 -) -g1,11570:6630773,41562173 -) -g1,11572:7626635,41562173 -g1,11572:8954451,41562173 -h1,11572:10282267,41562173:0,0,0 -k1,11572:32583029,41562173:22300762 -g1,11572:32583029,41562173 -) -] -) -g1,11573:32583029,41641995 -g1,11573:6630773,41641995 -g1,11573:6630773,41641995 -g1,11573:32583029,41641995 -g1,11573:32583029,41641995 -) -h1,11573:6630773,41838603:0,0,0 -(1,11577:6630773,42703683:25952256,505283,126483 -h1,11576:6630773,42703683:983040,0,0 -k1,11576:9098405,42703683:287905 -k1,11576:10558748,42703683:287904 -k1,11576:11859184,42703683:287905 -k1,11576:15138807,42703683:287904 -k1,11576:17282036,42703683:287905 -k1,11576:18385209,42703683:287905 -k1,11576:19739384,42703683:287904 -k1,11576:24060375,42703683:287905 -k1,11576:25645238,42703683:287905 -k1,11576:27089852,42703683:287904 -k1,11576:28714691,42703683:287905 -k1,11576:30551211,42703683:287904 -k1,11576:31490544,42703683:287905 -k1,11577:32583029,42703683:0 -) -(1,11577:6630773,43568763:25952256,505283,134348 -(1,11576:6630773,43568763:0,452978,122846 -r1,11577:9451022,43568763:2820249,575824,122846 -k1,11576:6630773,43568763:-2820249 -) -(1,11576:6630773,43568763:2820249,452978,122846 -k1,11576:6630773,43568763:3277 -h1,11576:9447745,43568763:0,411205,112570 -) -k1,11576:9795175,43568763:170483 -k1,11576:12864971,43568763:170483 -k1,11576:16192324,43568763:170484 -k1,11576:18281701,43568763:170483 -k1,11576:19320536,43568763:170483 -k1,11576:20827953,43568763:170483 -k1,11576:22547053,43568763:170484 -k1,11576:23368964,43568763:170483 -k1,11576:24631932,43568763:170483 -k1,11576:27777094,43568763:170483 -k1,11576:30143689,43568763:170484 -k1,11576:30965600,43568763:170483 -k1,11576:32583029,43568763:0 -) -(1,11577:6630773,44433843:25952256,513147,134348 -k1,11576:8999009,44433843:195063 -k1,11576:9876957,44433843:195063 -k1,11576:12770138,44433843:195064 -k1,11576:14924727,44433843:195063 -k1,11576:17188106,44433843:195063 -k1,11576:18374729,44433843:195063 -k1,11576:19175346,44433843:195064 -k1,11576:21068447,44433843:195063 -k1,11576:22131862,44433843:195063 -k1,11576:24008579,44433843:195063 -k1,11576:25914787,44433843:195063 -k1,11576:26761279,44433843:195064 -k1,11576:29386417,44433843:195063 -k1,11576:31649796,44433843:195063 -k1,11576:32583029,44433843:0 -) -(1,11577:6630773,45298923:25952256,505283,134348 -k1,11576:9143674,45298923:223073 -k1,11576:11222727,45298923:223073 -k1,11576:15372717,45298923:223073 -k1,11576:16278675,45298923:223073 -k1,11576:17187910,45298923:223073 -(1,11576:17187910,45298923:0,452978,115847 -r1,11577:20359870,45298923:3171960,568825,115847 -k1,11576:17187910,45298923:-3171960 -) -(1,11576:17187910,45298923:3171960,452978,115847 -k1,11576:17187910,45298923:3277 -h1,11576:20356593,45298923:0,411205,112570 -) -k1,11576:20582943,45298923:223073 -k1,11576:22369051,45298923:223074 -k1,11576:23197677,45298923:223073 -k1,11576:25118788,45298923:223073 -k1,11576:25957899,45298923:223073 -k1,11576:26536832,45298923:223073 -k1,11576:28174827,45298923:223073 -k1,11576:29266252,45298923:223073 -k1,11576:32583029,45298923:0 -) -] -(1,11577:32583029,45706769:0,0,0 -g1,11577:32583029,45706769 -) -) -] -(1,11577:6630773,47279633:25952256,0,0 -h1,11577:6630773,47279633:25952256,0,0 -) -] -(1,11577:4262630,4025873:0,0,0 -[1,11577:-473656,4025873:0,0,0 -(1,11577:-473656,-710413:0,0,0 -(1,11577:-473656,-710413:0,0,0 -g1,11577:-473656,-710413 -) -g1,11577:-473656,-710413 +r1,11576:37855564,49800853:1179648,16384,0 +) +) +k1,11576:3078556,49800853:-34777008 +) +] +g1,11576:6630773,4812305 +k1,11576:21678495,4812305:13852345 +g1,11576:23301166,4812305 +g1,11576:24088253,4812305 +g1,11576:28572226,4812305 +g1,11576:29981905,4812305 +) +) +] +[1,11576:6630773,45706769:25952256,40108032,0 +(1,11576:6630773,45706769:25952256,40108032,0 +(1,11576:6630773,45706769:0,0,0 +g1,11576:6630773,45706769 +) +[1,11576:6630773,45706769:25952256,40108032,0 +v1,11537:6630773,6254097:0,393216,0 +(1,11537:6630773,14474598:25952256,8613717,0 +g1,11537:6630773,14474598 +g1,11537:6237557,14474598 +r1,11576:6368629,14474598:131072,8613717,0 +g1,11537:6567858,14474598 +g1,11537:6764466,14474598 +[1,11537:6764466,14474598:25818563,8613717,0 +(1,11537:6764466,6562395:25818563,701514,196608 +(1,11536:6764466,6562395:0,701514,196608 +r1,11576:7761522,6562395:997056,898122,196608 +k1,11536:6764466,6562395:-997056 +) +(1,11536:6764466,6562395:997056,701514,196608 +) +k1,11536:7997382,6562395:235860 +k1,11536:8325062,6562395:327680 +k1,11536:9814625,6562395:235859 +k1,11536:11387419,6562395:235860 +k1,11536:12371044,6562395:235859 +k1,11536:16157645,6562395:235860 +k1,11536:17723885,6562395:235859 +k1,11536:18775013,6562395:235860 +k1,11536:20029957,6562395:235859 +k1,11536:22109345,6562395:235860 +k1,11536:26007356,6562395:235859 +k1,11536:28711302,6562395:235860 +k1,11536:29598589,6562395:235859 +k1,11536:31563944,6562395:235860 +k1,11536:32583029,6562395:0 +) +(1,11537:6764466,7427475:25818563,513147,126483 +k1,11536:9835998,7427475:145349 +k1,11536:10640640,7427475:145350 +k1,11536:13830136,7427475:145349 +k1,11536:14749466,7427475:145350 +k1,11536:17177434,7427475:145349 +k1,11536:18702972,7427475:145350 +k1,11536:19663589,7427475:145349 +k1,11536:20875210,7427475:145350 +k1,11536:22783477,7427475:145349 +k1,11536:24658322,7427475:145350 +k1,11536:27694464,7427475:145349 +k1,11536:28911983,7427475:145350 +k1,11536:30076417,7427475:145349 +k1,11536:31966991,7427475:145350 +k1,11536:32583029,7427475:0 +) +(1,11537:6764466,8292555:25818563,513147,126483 +k1,11536:9935195,8292555:144932 +k1,11536:12366678,8292555:144932 +k1,11536:13127648,8292555:144932 +k1,11536:13899760,8292555:144933 +k1,11536:15501557,8292555:144932 +k1,11536:16329374,8292555:144932 +k1,11536:19515123,8292555:144878 +k1,11536:20651615,8292555:144932 +k1,11536:23739769,8292555:144932 +k1,11536:25152167,8292555:144932 +k1,11536:27984731,8292555:144933 +k1,11536:29625850,8292555:144932 +k1,11536:30456944,8292555:144932 +k1,11536:31923737,8292555:144932 +k1,11537:32583029,8292555:0 +) +(1,11537:6764466,9157635:25818563,513147,134348 +k1,11536:7342763,9157635:163454 +k1,11536:9111885,9157635:163490 +k1,11536:9958260,9157635:163490 +k1,11536:11819788,9157635:163490 +k1,11536:14893732,9157635:163490 +k1,11536:17596741,9157635:163489 +k1,11536:18751791,9157635:163490 +k1,11536:21439072,9157635:163490 +k1,11536:22230397,9157635:163490 +k1,11536:24806923,9157635:163490 +k1,11536:27099021,9157635:163489 +k1,11536:28281596,9157635:163490 +k1,11536:29870494,9157635:163490 +k1,11536:32583029,9157635:0 +) +(1,11537:6764466,10022715:25818563,505283,134348 +k1,11536:7611343,10022715:195449 +k1,11536:10199510,10022715:195448 +k1,11536:11586404,10022715:195449 +k1,11536:14554025,10022715:195448 +k1,11536:15768559,10022715:195449 +k1,11536:17460194,10022715:195448 +k1,11536:19942194,10022715:195449 +k1,11536:20753680,10022715:195448 +k1,11536:22645856,10022715:195449 +k1,11536:26013902,10022715:195448 +k1,11536:27476817,10022715:195449 +k1,11536:30359896,10022715:195448 +k1,11536:32051532,10022715:195449 +k1,11536:32583029,10022715:0 +) +(1,11537:6764466,10887795:25818563,513147,134348 +k1,11536:8754140,10887795:219547 +k1,11536:11087879,10887795:219548 +k1,11536:15279563,10887795:219547 +k1,11536:17786318,10887795:219548 +k1,11536:20048622,10887795:219547 +k1,11536:21136522,10887795:219548 +k1,11536:24483447,10887795:219547 +k1,11536:25894440,10887795:219548 +k1,11536:28083344,10887795:219547 +k1,11536:28717715,10887795:219528 +k1,11536:29620147,10887795:219547 +k1,11536:32583029,10887795:0 +) +(1,11537:6764466,11752875:25818563,505283,126483 +k1,11536:9502843,11752875:225727 +k1,11536:10084430,11752875:225727 +k1,11536:11725078,11752875:225726 +k1,11536:13867733,11752875:225727 +k1,11536:14709498,11752875:225727 +k1,11536:15350041,11752875:225700 +k1,11536:16107265,11752875:225727 +k1,11536:19923053,11752875:225726 +k1,11536:21416246,11752875:225727 +k1,11536:24329604,11752875:225727 +k1,11536:26051518,11752875:225727 +k1,11536:27728867,11752875:225727 +k1,11536:29380001,11752875:225726 +k1,11536:30474080,11752875:225727 +k1,11536:32583029,11752875:0 +) +(1,11537:6764466,12617955:25818563,513147,126483 +k1,11536:8080867,12617955:218673 +k1,11536:10304286,12617955:218673 +k1,11536:11714405,12617955:218674 +k1,11536:12549116,12617955:218673 +k1,11536:14459929,12617955:218673 +k1,11536:16375984,12617955:218673 +k1,11536:17542308,12617955:218673 +k1,11536:19212603,12617955:218673 +k1,11536:22148400,12617955:218674 +k1,11536:22983111,12617955:218673 +k1,11536:23557644,12617955:218673 +k1,11536:25364910,12617955:218673 +k1,11536:26780270,12617955:218673 +k1,11536:27413767,12617955:218654 +k1,11536:31090119,12617955:218673 +k1,11536:32583029,12617955:0 +) +(1,11537:6764466,13483035:25818563,505283,134348 +k1,11536:8693787,13483035:237181 +k1,11536:12729435,13483035:237181 +k1,11536:14234081,13483035:237180 +k1,11536:16550719,13483035:237181 +k1,11536:19475531,13483035:237181 +k1,11536:21382569,13483035:237181 +k1,11536:22305912,13483035:237181 +k1,11536:22898953,13483035:237181 +k1,11536:26840228,13483035:237180 +k1,11536:28742023,13483035:237181 +k1,11536:30864675,13483035:237181 +k1,11536:32583029,13483035:0 +) +(1,11537:6764466,14348115:25818563,513147,126483 +g1,11536:9592999,14348115 +k1,11537:32583029,14348115:18861918 +g1,11537:32583029,14348115 +) +] +g1,11537:32583029,14474598 +) +h1,11537:6630773,14474598:0,0,0 +(1,11540:6630773,15339678:25952256,505283,126483 +h1,11539:6630773,15339678:983040,0,0 +k1,11539:9038863,15339678:228363 +k1,11539:12258945,15339678:228363 +k1,11539:13103346,15339678:228363 +k1,11539:14534950,15339678:228363 +k1,11539:17042000,15339678:228363 +k1,11539:18362849,15339678:228364 +k1,11539:21407294,15339678:228363 +k1,11539:22827102,15339678:228363 +k1,11539:26331610,15339678:228363 +k1,11539:30138239,15339678:228363 +k1,11539:31438771,15339678:228363 +k1,11540:32583029,15339678:0 +) +(1,11540:6630773,16204758:25952256,513147,126483 +k1,11539:9906413,16204758:181030 +k1,11539:11278889,16204758:181031 +k1,11539:13252329,16204758:181030 +k1,11539:16459157,16204758:181031 +k1,11539:17744469,16204758:181030 +k1,11539:18673266,16204758:181031 +k1,11539:20140112,16204758:181030 +k1,11539:21834369,16204758:181031 +k1,11539:23409350,16204758:181030 +k1,11539:25898559,16204758:181031 +k1,11539:26738881,16204758:181030 +k1,11539:28621882,16204758:181031 +k1,11539:31089463,16204758:181030 +k1,11539:32583029,16204758:0 +) +(1,11540:6630773,17069838:25952256,513147,134348 +g1,11539:7516164,17069838 +g1,11539:10023571,17069838 +g1,11539:10889956,17069838 +(1,11539:10889956,17069838:0,452978,115847 +r1,11576:14061916,17069838:3171960,568825,115847 +k1,11539:10889956,17069838:-3171960 +) +(1,11539:10889956,17069838:3171960,452978,115847 +k1,11539:10889956,17069838:3277 +h1,11539:14058639,17069838:0,411205,112570 +) +g1,11539:14261145,17069838 +g1,11539:16656485,17069838 +g1,11539:17538599,17069838 +(1,11539:17538599,17069838:0,452978,122846 +r1,11576:20007136,17069838:2468537,575824,122846 +k1,11539:17538599,17069838:-2468537 +) +(1,11539:17538599,17069838:2468537,452978,122846 +k1,11539:17538599,17069838:3277 +h1,11539:20003859,17069838:0,411205,112570 +) +g1,11539:20206365,17069838 +k1,11540:32583029,17069838:10313591 +g1,11540:32583029,17069838 +) +(1,11542:6630773,17934918:25952256,505283,134348 +h1,11541:6630773,17934918:983040,0,0 +k1,11541:9268597,17934918:175636 +k1,11541:11930015,17934918:175637 +k1,11541:15181911,17934918:175636 +k1,11541:18989553,17934918:175637 +k1,11541:19848074,17934918:175636 +k1,11541:21829882,17934918:175636 +k1,11541:24666936,17934918:175637 +k1,11541:25861657,17934918:175636 +k1,11541:27703219,17934918:175637 +k1,11541:29911782,17934918:175636 +k1,11541:32583029,17934918:0 +) +(1,11542:6630773,18799998:25952256,513147,126483 +k1,11541:8484429,18799998:159550 +k1,11541:9591630,18799998:159550 +k1,11541:13238352,18799998:159551 +k1,11541:16473507,18799998:159550 +k1,11541:17737339,18799998:159550 +k1,11541:20525538,18799998:159550 +k1,11541:24934442,18799998:159550 +k1,11541:25923022,18799998:159550 +k1,11541:27774713,18799998:159551 +k1,11541:29922625,18799998:159550 +k1,11541:31285416,18799998:159550 +k1,11542:32583029,18799998:0 +) +(1,11542:6630773,19665078:25952256,505283,126483 +k1,11541:8368013,19665078:224014 +k1,11541:11264585,19665078:224014 +k1,11541:12671524,19665078:224014 +k1,11541:13546966,19665078:224014 +k1,11541:18149440,19665078:224014 +k1,11541:18989492,19665078:224014 +k1,11541:20232591,19665078:224014 +k1,11541:23931324,19665078:224014 +k1,11541:25422804,19665078:224014 +k1,11541:28334449,19665078:224014 +k1,11541:30228320,19665078:224014 +k1,11541:32583029,19665078:0 +) +(1,11542:6630773,20530158:25952256,505283,134348 +k1,11541:10552215,20530158:259290 +k1,11541:11803065,20530158:259290 +k1,11541:14846324,20530158:259290 +k1,11541:15721651,20530158:259289 +k1,11541:18561093,20530158:259290 +k1,11541:21505392,20530158:259290 +k1,11541:24523092,20530158:259290 +k1,11541:25398420,20530158:259290 +k1,11541:26676795,20530158:259290 +k1,11541:27350867,20530158:259229 +k1,11541:31391584,20530158:259290 +k1,11541:32583029,20530158:0 +) +(1,11542:6630773,21395238:25952256,513147,134348 +k1,11541:10569618,21395238:209191 +k1,11541:13689263,21395238:209191 +k1,11541:15392020,21395238:209191 +k1,11541:16287373,21395238:209191 +k1,11541:18948920,21395238:209191 +k1,11541:23651258,21395238:209190 +k1,11541:24391946,21395238:209191 +k1,11541:25886953,21395238:209191 +k1,11541:28726104,21395238:209191 +k1,11541:30968222,21395238:209191 +k1,11542:32583029,21395238:0 +) +(1,11542:6630773,22260318:25952256,513147,126483 +k1,11541:10071610,22260318:177144 +k1,11541:13828985,22260318:177143 +k1,11541:16940831,22260318:177144 +k1,11541:18448356,22260318:177144 +k1,11541:19276927,22260318:177143 +k1,11541:22082720,22260318:177144 +k1,11541:26335548,22260318:177144 +k1,11541:28367361,22260318:177144 +k1,11541:29353874,22260318:177143 +k1,11541:31914562,22260318:177144 +k1,11541:32583029,22260318:0 +) +(1,11542:6630773,23125398:25952256,513147,126483 +g1,11541:10368946,23125398 +g1,11541:13643780,23125398 +g1,11541:14374506,23125398 +g1,11541:16912715,23125398 +g1,11541:18131029,23125398 +g1,11541:20156746,23125398 +g1,11541:21015267,23125398 +g1,11541:22417737,23125398 +k1,11542:32583029,23125398:8530824 +g1,11542:32583029,23125398 +) +(1,11543:6630773,25956558:25952256,32768,229376 +(1,11543:6630773,25956558:0,32768,229376 +(1,11543:6630773,25956558:5505024,32768,229376 +r1,11576:12135797,25956558:5505024,262144,229376 +) +k1,11543:6630773,25956558:-5505024 +) +(1,11543:6630773,25956558:25952256,32768,0 +r1,11576:32583029,25956558:25952256,32768,0 +) +) +(1,11543:6630773,27588410:25952256,606339,161218 +(1,11543:6630773,27588410:2464678,582746,14155 +g1,11543:6630773,27588410 +g1,11543:9095451,27588410 +) +g1,11543:11933684,27588410 +g1,11543:14850561,27588410 +g1,11543:15945275,27588410 +g1,11543:20038654,27588410 +k1,11543:32583029,27588410:9784785 +g1,11543:32583029,27588410 +) +(1,11546:6630773,28846706:25952256,513147,134348 +k1,11545:7559910,28846706:301302 +k1,11545:8627328,28846706:301302 +k1,11545:12574398,28846706:301302 +k1,11545:15867418,28846706:301301 +k1,11545:18211477,28846706:301302 +k1,11545:19716020,28846706:301302 +k1,11545:22469679,28846706:301302 +k1,11545:23639333,28846706:301302 +k1,11545:25415850,28846706:301302 +k1,11545:27230377,28846706:301301 +k1,11545:29491205,28846706:301302 +k1,11545:31860823,28846706:301302 +k1,11546:32583029,28846706:0 +) +(1,11546:6630773,29711786:25952256,505283,134348 +k1,11545:9068166,29711786:295021 +k1,11545:10049349,29711786:295021 +k1,11545:12204283,29711786:295022 +k1,11545:15473983,29711786:295021 +k1,11545:17965115,29711786:295021 +k1,11545:18876174,29711786:295021 +k1,11545:20190280,29711786:295021 +k1,11545:21981488,29711786:295021 +k1,11545:26220467,29711786:295022 +k1,11545:27143323,29711786:295021 +k1,11545:29140314,29711786:295021 +k1,11545:31563944,29711786:295021 +k1,11545:32583029,29711786:0 +) +(1,11546:6630773,30576866:25952256,513147,126483 +k1,11545:8983253,30576866:284164 +k1,11545:10258977,30576866:284164 +k1,11545:13635130,30576866:284164 +k1,11545:14605457,30576866:284165 +k1,11545:16211482,30576866:284164 +k1,11545:17154938,30576866:284164 +k1,11545:18458187,30576866:284164 +k1,11545:20412208,30576866:284164 +k1,11545:22648034,30576866:284164 +k1,11545:24374645,30576866:284164 +k1,11545:25271572,30576866:284165 +k1,11545:26673780,30576866:284164 +k1,11545:28557022,30576866:284164 +k1,11545:29469021,30576866:284164 +k1,11545:31914562,30576866:284164 +k1,11545:32583029,30576866:0 +) +(1,11546:6630773,31441946:25952256,505283,134348 +k1,11545:10005128,31441946:290231 +k1,11545:11314444,31441946:290231 +k1,11545:13564200,31441946:290230 +k1,11545:15592446,31441946:290231 +k1,11545:16534105,31441946:290231 +k1,11545:17572102,31441946:290231 +k1,11545:20637127,31441946:290231 +k1,11545:22264291,31441946:290230 +k1,11545:24084788,31441946:290231 +k1,11545:25026447,31441946:290231 +k1,11545:26064444,31441946:290231 +k1,11545:28846353,31441946:290230 +k1,11545:29749346,31441946:290231 +k1,11545:31157621,31441946:290231 +k1,11545:32583029,31441946:0 +) +(1,11546:6630773,32307026:25952256,505283,134348 +k1,11545:8232473,32307026:236585 +k1,11545:12867835,32307026:236585 +k1,11545:13852186,32307026:236585 +k1,11545:16872740,32307026:236585 +k1,11545:18484926,32307026:236585 +k1,11545:19407673,32307026:236585 +k1,11545:20000117,32307026:236584 +k1,11545:23211381,32307026:236585 +k1,11545:25313776,32307026:236585 +k1,11545:27588531,32307026:236585 +k1,11545:28441154,32307026:236585 +k1,11545:29033599,32307026:236585 +k1,11545:31955194,32307026:236585 +k1,11545:32583029,32307026:0 +) +(1,11546:6630773,33172106:25952256,513147,126483 +k1,11545:8066431,33172106:232417 +k1,11545:9839599,33172106:232417 +k1,11545:12767512,33172106:232417 +(1,11545:12767512,33172106:0,452978,122846 +r1,11576:15587761,33172106:2820249,575824,122846 +k1,11545:12767512,33172106:-2820249 +) +(1,11545:12767512,33172106:2820249,452978,122846 +k1,11545:12767512,33172106:3277 +h1,11545:15584484,33172106:0,411205,112570 +) +k1,11545:15820178,33172106:232417 +k1,11545:17674611,33172106:232417 +k1,11545:18654794,33172106:232417 +k1,11545:20400437,33172106:232417 +k1,11545:22960037,33172106:232417 +k1,11545:23851746,33172106:232417 +k1,11545:25103248,33172106:232417 +k1,11545:28412580,33172106:232417 +(1,11545:28412580,33172106:0,414482,115847 +r1,11576:29122558,33172106:709978,530329,115847 +k1,11545:28412580,33172106:-709978 +) +(1,11545:28412580,33172106:709978,414482,115847 +k1,11545:28412580,33172106:3277 +h1,11545:29119281,33172106:0,411205,112570 +) +k1,11545:29354975,33172106:232417 +k1,11545:30270277,33172106:232417 +(1,11545:30270277,33172106:0,414482,115847 +r1,11576:30980255,33172106:709978,530329,115847 +k1,11545:30270277,33172106:-709978 +) +(1,11545:30270277,33172106:709978,414482,115847 +k1,11545:30270277,33172106:3277 +h1,11545:30976978,33172106:0,411205,112570 +) +k1,11545:31386342,33172106:232417 +k1,11545:32583029,33172106:0 +) +(1,11546:6630773,34037186:25952256,505283,7863 +g1,11545:10346664,34037186 +g1,11545:12414324,34037186 +g1,11545:16646639,34037186 +g1,11545:17634266,34037186 +k1,11546:32583029,34037186:13803849 +g1,11546:32583029,34037186 +) +(1,11548:6630773,34902266:25952256,473825,134348 +h1,11547:6630773,34902266:983040,0,0 +g1,11547:9248936,34902266 +g1,11547:11183558,34902266 +g1,11547:11738647,34902266 +(1,11547:11738647,34902266:0,452978,115847 +r1,11576:14910607,34902266:3171960,568825,115847 +k1,11547:11738647,34902266:-3171960 +) +(1,11547:11738647,34902266:3171960,452978,115847 +k1,11547:11738647,34902266:3277 +h1,11547:14907330,34902266:0,411205,112570 +) +g1,11547:15109836,34902266 +k1,11548:32583029,34902266:14663010 +g1,11548:32583029,34902266 +) +v1,11550:6630773,35587121:0,393216,0 +(1,11558:6630773,37395556:25952256,2201651,196608 +g1,11558:6630773,37395556 +g1,11558:6630773,37395556 +g1,11558:6434165,37395556 +(1,11558:6434165,37395556:0,2201651,196608 +r1,11576:32779637,37395556:26345472,2398259,196608 +k1,11558:6434165,37395556:-26345472 +) +(1,11558:6434165,37395556:26345472,2201651,196608 +[1,11558:6630773,37395556:25952256,2005043,0 +(1,11552:6630773,35814952:25952256,424439,112852 +(1,11551:6630773,35814952:0,0,0 +g1,11551:6630773,35814952 +g1,11551:6630773,35814952 +g1,11551:6303093,35814952 +(1,11551:6303093,35814952:0,0,0 +) +g1,11551:6630773,35814952 +) +k1,11552:6630773,35814952:0 +g1,11552:10614221,35814952 +h1,11552:12273991,35814952:0,0,0 +k1,11552:32583029,35814952:20309038 +g1,11552:32583029,35814952 +) +(1,11553:6630773,36499807:25952256,298373,4954 +h1,11553:6630773,36499807:0,0,0 +h1,11553:6962727,36499807:0,0,0 +k1,11553:32583029,36499807:25620302 +g1,11553:32583029,36499807 +) +(1,11557:6630773,37315734:25952256,424439,79822 +(1,11555:6630773,37315734:0,0,0 +g1,11555:6630773,37315734 +g1,11555:6630773,37315734 +g1,11555:6303093,37315734 +(1,11555:6303093,37315734:0,0,0 +) +g1,11555:6630773,37315734 +) +g1,11557:7626635,37315734 +g1,11557:8954451,37315734 +h1,11557:10282267,37315734:0,0,0 +k1,11557:32583029,37315734:22300762 +g1,11557:32583029,37315734 +) +] +) +g1,11558:32583029,37395556 +g1,11558:6630773,37395556 +g1,11558:6630773,37395556 +g1,11558:32583029,37395556 +g1,11558:32583029,37395556 +) +h1,11558:6630773,37592164:0,0,0 +(1,11561:6630773,38457244:25952256,505283,134348 +h1,11560:6630773,38457244:983040,0,0 +g1,11560:9274495,38457244 +g1,11560:11209117,38457244 +g1,11560:11764206,38457244 +(1,11560:11764206,38457244:0,452978,115847 +r1,11576:14936166,38457244:3171960,568825,115847 +k1,11560:11764206,38457244:-3171960 +) +(1,11560:11764206,38457244:3171960,452978,115847 +k1,11560:11764206,38457244:3277 +h1,11560:14932889,38457244:0,411205,112570 +) +g1,11560:15135395,38457244 +g1,11560:17014967,38457244 +g1,11560:19252366,38457244 +g1,11560:20067633,38457244 +g1,11560:20622722,38457244 +k1,11561:32583029,38457244:9396539 +g1,11561:32583029,38457244 +) +v1,11563:6630773,39142099:0,393216,0 +(1,11572:6630773,41641995:25952256,2893112,196608 +g1,11572:6630773,41641995 +g1,11572:6630773,41641995 +g1,11572:6434165,41641995 +(1,11572:6434165,41641995:0,2893112,196608 +r1,11576:32779637,41641995:26345472,3089720,196608 +k1,11572:6434165,41641995:-26345472 +) +(1,11572:6434165,41641995:26345472,2893112,196608 +[1,11572:6630773,41641995:25952256,2696504,0 +(1,11565:6630773,39376536:25952256,431045,6605 +(1,11564:6630773,39376536:0,0,0 +g1,11564:6630773,39376536 +g1,11564:6630773,39376536 +g1,11564:6303093,39376536 +(1,11564:6303093,39376536:0,0,0 +) +g1,11564:6630773,39376536 +) +g1,11565:10614220,39376536 +g1,11565:11610082,39376536 +h1,11565:12605944,39376536:0,0,0 +k1,11565:32583028,39376536:19977084 +g1,11565:32583028,39376536 +) +(1,11566:6630773,40061391:25952256,431045,112852 +h1,11566:6630773,40061391:0,0,0 +g1,11566:13269852,40061391 +h1,11566:14929622,40061391:0,0,0 +k1,11566:32583030,40061391:17653408 +g1,11566:32583030,40061391 +) +(1,11567:6630773,40746246:25952256,424439,6605 +h1,11567:6630773,40746246:0,0,0 +h1,11567:6962727,40746246:0,0,0 +k1,11567:32583029,40746246:25620302 +g1,11567:32583029,40746246 +) +(1,11571:6630773,41562173:25952256,424439,79822 +(1,11569:6630773,41562173:0,0,0 +g1,11569:6630773,41562173 +g1,11569:6630773,41562173 +g1,11569:6303093,41562173 +(1,11569:6303093,41562173:0,0,0 +) +g1,11569:6630773,41562173 +) +g1,11571:7626635,41562173 +g1,11571:8954451,41562173 +h1,11571:10282267,41562173:0,0,0 +k1,11571:32583029,41562173:22300762 +g1,11571:32583029,41562173 +) +] +) +g1,11572:32583029,41641995 +g1,11572:6630773,41641995 +g1,11572:6630773,41641995 +g1,11572:32583029,41641995 +g1,11572:32583029,41641995 +) +h1,11572:6630773,41838603:0,0,0 +(1,11576:6630773,42703683:25952256,505283,126483 +h1,11575:6630773,42703683:983040,0,0 +k1,11575:9098405,42703683:287905 +k1,11575:10558748,42703683:287904 +k1,11575:11859184,42703683:287905 +k1,11575:15138807,42703683:287904 +k1,11575:17282036,42703683:287905 +k1,11575:18385209,42703683:287905 +k1,11575:19739384,42703683:287904 +k1,11575:24060375,42703683:287905 +k1,11575:25645238,42703683:287905 +k1,11575:27089852,42703683:287904 +k1,11575:28714691,42703683:287905 +k1,11575:30551211,42703683:287904 +k1,11575:31490544,42703683:287905 +k1,11576:32583029,42703683:0 +) +(1,11576:6630773,43568763:25952256,505283,134348 +(1,11575:6630773,43568763:0,452978,122846 +r1,11576:9451022,43568763:2820249,575824,122846 +k1,11575:6630773,43568763:-2820249 +) +(1,11575:6630773,43568763:2820249,452978,122846 +k1,11575:6630773,43568763:3277 +h1,11575:9447745,43568763:0,411205,112570 +) +k1,11575:9795175,43568763:170483 +k1,11575:12864971,43568763:170483 +k1,11575:16192324,43568763:170484 +k1,11575:18281701,43568763:170483 +k1,11575:19320536,43568763:170483 +k1,11575:20827953,43568763:170483 +k1,11575:22547053,43568763:170484 +k1,11575:23368964,43568763:170483 +k1,11575:24631932,43568763:170483 +k1,11575:27777094,43568763:170483 +k1,11575:30143689,43568763:170484 +k1,11575:30965600,43568763:170483 +k1,11575:32583029,43568763:0 +) +(1,11576:6630773,44433843:25952256,513147,134348 +k1,11575:8999009,44433843:195063 +k1,11575:9876957,44433843:195063 +k1,11575:12770138,44433843:195064 +k1,11575:14924727,44433843:195063 +k1,11575:17188106,44433843:195063 +k1,11575:18374729,44433843:195063 +k1,11575:19175346,44433843:195064 +k1,11575:21068447,44433843:195063 +k1,11575:22131862,44433843:195063 +k1,11575:24008579,44433843:195063 +k1,11575:25914787,44433843:195063 +k1,11575:26761279,44433843:195064 +k1,11575:29386417,44433843:195063 +k1,11575:31649796,44433843:195063 +k1,11575:32583029,44433843:0 +) +(1,11576:6630773,45298923:25952256,505283,134348 +k1,11575:9143674,45298923:223073 +k1,11575:11222727,45298923:223073 +k1,11575:15372717,45298923:223073 +k1,11575:16278675,45298923:223073 +k1,11575:17187910,45298923:223073 +(1,11575:17187910,45298923:0,452978,115847 +r1,11576:20359870,45298923:3171960,568825,115847 +k1,11575:17187910,45298923:-3171960 +) +(1,11575:17187910,45298923:3171960,452978,115847 +k1,11575:17187910,45298923:3277 +h1,11575:20356593,45298923:0,411205,112570 +) +k1,11575:20582943,45298923:223073 +k1,11575:22369051,45298923:223074 +k1,11575:23197677,45298923:223073 +k1,11575:25118788,45298923:223073 +k1,11575:25957899,45298923:223073 +k1,11575:26536832,45298923:223073 +k1,11575:28174827,45298923:223073 +k1,11575:29266252,45298923:223073 +k1,11575:32583029,45298923:0 +) +] +(1,11576:32583029,45706769:0,0,0 +g1,11576:32583029,45706769 +) +) +] +(1,11576:6630773,47279633:25952256,0,0 +h1,11576:6630773,47279633:25952256,0,0 +) +] +(1,11576:4262630,4025873:0,0,0 +[1,11576:-473656,4025873:0,0,0 +(1,11576:-473656,-710413:0,0,0 +(1,11576:-473656,-710413:0,0,0 +g1,11576:-473656,-710413 +) +g1,11576:-473656,-710413 ) ] ) ] !25402 -}181 -Input:1936:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1937:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1938:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}182 Input:1939:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1940:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1941:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1942:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1943:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1944:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!840 -{182 -[1,11642:4262630,47279633:28320399,43253760,0 -(1,11642:4262630,4025873:0,0,0 -[1,11642:-473656,4025873:0,0,0 -(1,11642:-473656,-710413:0,0,0 -(1,11642:-473656,-644877:0,0,0 -k1,11642:-473656,-644877:-65536 -) -(1,11642:-473656,4736287:0,0,0 -k1,11642:-473656,4736287:5209943 -) -g1,11642:-473656,-710413 -) -] -) -[1,11642:6630773,47279633:25952256,43253760,0 -[1,11642:6630773,4812305:25952256,786432,0 -(1,11642:6630773,4812305:25952256,505283,126483 -(1,11642:6630773,4812305:25952256,505283,126483 -g1,11642:3078558,4812305 -[1,11642:3078558,4812305:0,0,0 -(1,11642:3078558,2439708:0,1703936,0 -k1,11642:1358238,2439708:-1720320 -(1,9182:1358238,2439708:1720320,1703936,0 -(1,9182:1358238,2439708:1179648,16384,0 -r1,11642:2537886,2439708:1179648,16384,0 -) -g1,9182:3062174,2439708 -(1,9182:3062174,2439708:16384,1703936,0 -[1,9182:3062174,2439708:25952256,1703936,0 -(1,9182:3062174,1915420:25952256,1179648,0 -(1,9182:3062174,1915420:16384,1179648,0 -r1,11642:3078558,1915420:16384,1179648,0 -) -k1,9182:29014430,1915420:25935872 -g1,9182:29014430,1915420 -) -] -) -) -) -] -[1,11642:3078558,4812305:0,0,0 -(1,11642:3078558,2439708:0,1703936,0 -g1,11642:29030814,2439708 -g1,11642:36135244,2439708 -(1,9182:36135244,2439708:1720320,1703936,0 -(1,9182:36135244,2439708:16384,1703936,0 -[1,9182:36135244,2439708:25952256,1703936,0 -(1,9182:36135244,1915420:25952256,1179648,0 -(1,9182:36135244,1915420:16384,1179648,0 -r1,11642:36151628,1915420:16384,1179648,0 -) -k1,9182:62087500,1915420:25935872 -g1,9182:62087500,1915420 -) -] -) -g1,9182:36675916,2439708 -(1,9182:36675916,2439708:1179648,16384,0 -r1,11642:37855564,2439708:1179648,16384,0 -) -) -k1,11642:3078556,2439708:-34777008 -) -] -[1,11642:3078558,4812305:0,0,0 -(1,11642:3078558,49800853:0,16384,2228224 -k1,11642:1358238,49800853:-1720320 -(1,9182:1358238,49800853:1720320,16384,2228224 -(1,9182:1358238,49800853:1179648,16384,0 -r1,11642:2537886,49800853:1179648,16384,0 -) -g1,9182:3062174,49800853 -(1,9182:3062174,52029077:16384,1703936,0 -[1,9182:3062174,52029077:25952256,1703936,0 -(1,9182:3062174,51504789:25952256,1179648,0 -(1,9182:3062174,51504789:16384,1179648,0 -r1,11642:3078558,51504789:16384,1179648,0 -) -k1,9182:29014430,51504789:25935872 -g1,9182:29014430,51504789 -) -] -) -) -) -] -[1,11642:3078558,4812305:0,0,0 -(1,11642:3078558,49800853:0,16384,2228224 -g1,11642:29030814,49800853 -g1,11642:36135244,49800853 -(1,9182:36135244,49800853:1720320,16384,2228224 -(1,9182:36135244,52029077:16384,1703936,0 -[1,9182:36135244,52029077:25952256,1703936,0 -(1,9182:36135244,51504789:25952256,1179648,0 -(1,9182:36135244,51504789:16384,1179648,0 -r1,11642:36151628,51504789:16384,1179648,0 -) -k1,9182:62087500,51504789:25935872 -g1,9182:62087500,51504789 -) -] -) -g1,9182:36675916,49800853 -(1,9182:36675916,49800853:1179648,16384,0 -r1,11642:37855564,49800853:1179648,16384,0 -) -) -k1,11642:3078556,49800853:-34777008 -) -] -g1,11642:6630773,4812305 -g1,11642:6630773,4812305 -g1,11642:9718829,4812305 -k1,11642:31387653,4812305:21668824 -) -) -] -[1,11642:6630773,45706769:25952256,40108032,0 -(1,11642:6630773,45706769:25952256,40108032,0 -(1,11642:6630773,45706769:0,0,0 -g1,11642:6630773,45706769 -) -[1,11642:6630773,45706769:25952256,40108032,0 -(1,11577:6630773,6254097:25952256,513147,134348 -k1,11576:7196567,6254097:209934 -k1,11576:9384377,6254097:209933 -k1,11576:10277196,6254097:209934 -k1,11576:11480656,6254097:209934 -k1,11576:12349881,6254097:209933 -k1,11576:14519341,6254097:209934 -k1,11576:16971262,6254097:209934 -k1,11576:17864080,6254097:209933 -k1,11576:18679567,6254097:209934 -k1,11576:19757853,6254097:209934 -k1,11576:22991617,6254097:209933 -k1,11576:23814313,6254097:209934 -k1,11576:26567699,6254097:209934 -k1,11576:28737158,6254097:209933 -k1,11576:31015408,6254097:209934 -k1,11576:32583029,6254097:0 -) -(1,11577:6630773,7119177:25952256,505283,134348 -k1,11576:9529583,7119177:227563 -k1,11576:12731826,7119177:227564 -k1,11576:15155500,7119177:227563 -k1,11576:17237732,7119177:227563 -k1,11576:18274666,7119177:227564 -k1,11576:19891592,7119177:227563 -k1,11576:20802040,7119177:227563 -k1,11576:23715269,7119177:227564 -k1,11576:24430392,7119177:227535 -k1,11576:27435371,7119177:227563 -k1,11576:29030015,7119177:227563 -k1,11576:29789076,7119177:227564 -k1,11576:31714677,7119177:227563 -k1,11576:32583029,7119177:0 -) -(1,11577:6630773,7984257:25952256,513147,134348 -k1,11576:8984130,7984257:171663 -k1,11576:10545156,7984257:171663 -k1,11576:12284441,7984257:171664 -k1,11576:12811964,7984257:171663 -k1,11576:14209806,7984257:171663 -k1,11576:15364509,7984257:171663 -k1,11576:16727618,7984257:171664 -k1,11576:17767633,7984257:171663 -k1,11576:19487912,7984257:171663 -k1,11576:20311003,7984257:171663 -k1,11576:22220682,7984257:171664 -k1,11576:23411430,7984257:171663 -k1,11576:25542619,7984257:171663 -k1,11576:28831174,7984257:171663 -k1,11576:29654266,7984257:171664 -k1,11576:30845014,7984257:171663 -k1,11576:32583029,7984257:0 -) -(1,11577:6630773,8849337:25952256,513147,134348 -k1,11576:7484088,8849337:194023 -k1,11576:8697196,8849337:194023 -k1,11576:9874259,8849337:194023 -k1,11576:10877652,8849337:194023 -k1,11576:12590144,8849337:194023 -k1,11576:13467052,8849337:194023 -k1,11576:14016935,8849337:194023 -k1,11576:17185637,8849337:194023 -k1,11576:19245469,8849337:194022 -k1,11576:20851793,8849337:194023 -k1,11576:22613437,8849337:194023 -k1,11576:23826545,8849337:194023 -k1,11576:26195053,8849337:194023 -k1,11576:27001838,8849337:194023 -k1,11576:28214946,8849337:194023 -k1,11576:29481138,8849337:194023 -k1,11576:30334453,8849337:194023 -k1,11576:31547561,8849337:194023 -k1,11577:32583029,8849337:0 -k1,11577:32583029,8849337:0 -) -(1,11579:6630773,9714417:25952256,513147,126483 -h1,11578:6630773,9714417:983040,0,0 -g1,11578:10417443,9714417 -g1,11578:11983753,9714417 -g1,11578:12714479,9714417 -g1,11578:14611746,9714417 -(1,11578:14611746,9714417:0,452978,115847 -r1,11642:17783706,9714417:3171960,568825,115847 -k1,11578:14611746,9714417:-3171960 -) -(1,11578:14611746,9714417:3171960,452978,115847 -k1,11578:14611746,9714417:3277 -h1,11578:17780429,9714417:0,411205,112570 -) -g1,11578:17982935,9714417 -g1,11578:20192809,9714417 -g1,11578:21383598,9714417 -g1,11578:22601912,9714417 -g1,11578:24644013,9714417 -g1,11578:25502534,9714417 -g1,11578:26057623,9714417 -k1,11579:32583029,9714417:2409090 -g1,11579:32583029,9714417 -) -v1,11581:6630773,10399272:0,393216,0 -(1,11591:6630773,13610447:25952256,3604391,196608 -g1,11591:6630773,13610447 -g1,11591:6630773,13610447 -g1,11591:6434165,13610447 -(1,11591:6434165,13610447:0,3604391,196608 -r1,11642:32779637,13610447:26345472,3800999,196608 -k1,11591:6434165,13610447:-26345472 -) -(1,11591:6434165,13610447:26345472,3604391,196608 -[1,11591:6630773,13610447:25952256,3407783,0 -(1,11583:6630773,10633709:25952256,431045,79822 -(1,11582:6630773,10633709:0,0,0 -g1,11582:6630773,10633709 -g1,11582:6630773,10633709 -g1,11582:6303093,10633709 -(1,11582:6303093,10633709:0,0,0 -) -g1,11582:6630773,10633709 -) -k1,11583:6630773,10633709:0 -g1,11583:7958589,10633709 -g1,11583:8954451,10633709 -g1,11583:9950313,10633709 -g1,11583:11610083,10633709 -h1,11583:11942037,10633709:0,0,0 -k1,11583:32583029,10633709:20640992 -g1,11583:32583029,10633709 -) -(1,11584:6630773,11318564:25952256,431045,112852 -h1,11584:6630773,11318564:0,0,0 -g1,11584:6962727,11318564 -g1,11584:7294681,11318564 -g1,11584:7626635,11318564 -g1,11584:16589392,11318564 -g1,11584:17585254,11318564 -g1,11584:18913070,11318564 -g1,11584:19576978,11318564 -g1,11584:21236748,11318564 -h1,11584:22564564,11318564:0,0,0 -k1,11584:32583029,11318564:10018465 -g1,11584:32583029,11318564 -) -(1,11585:6630773,12003419:25952256,424439,79822 -h1,11585:6630773,12003419:0,0,0 -h1,11585:6962727,12003419:0,0,0 -k1,11585:32583029,12003419:25620302 -g1,11585:32583029,12003419 -) -(1,11586:6630773,12688274:25952256,431045,106246 -h1,11586:6630773,12688274:0,0,0 -g1,11586:10282267,12688274 -g1,11586:10946175,12688274 -h1,11586:15593530,12688274:0,0,0 -k1,11586:32583030,12688274:16989500 -g1,11586:32583030,12688274 -) -(1,11590:6630773,13504201:25952256,431045,106246 -(1,11588:6630773,13504201:0,0,0 -g1,11588:6630773,13504201 -g1,11588:6630773,13504201 -g1,11588:6303093,13504201 -(1,11588:6303093,13504201:0,0,0 -) -g1,11588:6630773,13504201 -) -g1,11590:7626635,13504201 -g1,11590:8954451,13504201 -g1,11590:13601806,13504201 -g1,11590:18249161,13504201 -g1,11590:22896516,13504201 -g1,11590:27543871,13504201 -h1,11590:31859272,13504201:0,0,0 -k1,11590:32583029,13504201:723757 -g1,11590:32583029,13504201 -) -] -) -g1,11591:32583029,13610447 -g1,11591:6630773,13610447 -g1,11591:6630773,13610447 -g1,11591:32583029,13610447 -g1,11591:32583029,13610447 -) -h1,11591:6630773,13807055:0,0,0 -(1,11595:6630773,14672135:25952256,513147,134348 -h1,11594:6630773,14672135:983040,0,0 -k1,11594:9091095,14672135:280595 -k1,11594:14337353,14672135:280595 -k1,11594:17692242,14672135:280595 -k1,11594:18632129,14672135:280595 -k1,11594:21892646,14672135:280595 -k1,11594:22529101,14672135:280595 -k1,11594:24547711,14672135:280595 -k1,11594:25479734,14672135:280595 -k1,11594:26531032,14672135:280595 -k1,11594:28771153,14672135:280595 -k1,11594:29583245,14672135:280595 -k1,11594:30515268,14672135:280595 -k1,11594:31812326,14672135:280595 -k1,11594:32583029,14672135:0 -) -(1,11595:6630773,15537215:25952256,505283,134348 -k1,11594:8820658,15537215:230359 -k1,11594:10749055,15537215:230359 -k1,11594:11847767,15537215:230360 -k1,11594:13553341,15537215:230359 -k1,11594:16567669,15537215:230359 -k1,11594:17586426,15537215:230359 -k1,11594:19554800,15537215:230359 -k1,11594:20471321,15537215:230359 -k1,11594:21057541,15537215:230360 -k1,11594:24262579,15537215:230359 -k1,11594:26532418,15537215:230359 -k1,11594:27959464,15537215:230359 -k1,11594:32583029,15537215:0 -) -(1,11595:6630773,16402295:25952256,513147,122846 -g1,11594:9525498,16402295 -g1,11594:10256224,16402295 -(1,11594:10256224,16402295:0,452978,122846 -r1,11642:12021337,16402295:1765113,575824,122846 -k1,11594:10256224,16402295:-1765113 -) -(1,11594:10256224,16402295:1765113,452978,122846 -k1,11594:10256224,16402295:3277 -h1,11594:12018060,16402295:0,411205,112570 -) -k1,11595:32583029,16402295:20509264 -g1,11595:32583029,16402295 -) -v1,11597:6630773,17087150:0,393216,0 -(1,11610:6630773,19842584:25952256,3148650,196608 -g1,11610:6630773,19842584 -g1,11610:6630773,19842584 -g1,11610:6434165,19842584 -(1,11610:6434165,19842584:0,3148650,196608 -r1,11642:32779637,19842584:26345472,3345258,196608 -k1,11610:6434165,19842584:-26345472 -) -(1,11610:6434165,19842584:26345472,3148650,196608 -[1,11610:6630773,19842584:25952256,2952042,0 -(1,11599:6630773,17314981:25952256,424439,112852 -(1,11598:6630773,17314981:0,0,0 -g1,11598:6630773,17314981 -g1,11598:6630773,17314981 -g1,11598:6303093,17314981 -(1,11598:6303093,17314981:0,0,0 -) -g1,11598:6630773,17314981 -) -k1,11599:6630773,17314981:0 -h1,11599:9286405,17314981:0,0,0 -k1,11599:32583029,17314981:23296624 -g1,11599:32583029,17314981 -) -(1,11603:6630773,18130908:25952256,424439,79822 -(1,11601:6630773,18130908:0,0,0 -g1,11601:6630773,18130908 -g1,11601:6630773,18130908 -g1,11601:6303093,18130908 -(1,11601:6303093,18130908:0,0,0 -) -g1,11601:6630773,18130908 -) -g1,11603:7626635,18130908 -g1,11603:8954451,18130908 -h1,11603:10282267,18130908:0,0,0 -k1,11603:32583029,18130908:22300762 -g1,11603:32583029,18130908 -) -(1,11605:6630773,18946835:25952256,424439,112852 -(1,11604:6630773,18946835:0,0,0 -g1,11604:6630773,18946835 -g1,11604:6630773,18946835 -g1,11604:6303093,18946835 -(1,11604:6303093,18946835:0,0,0 -) -g1,11604:6630773,18946835 -) -k1,11605:6630773,18946835:0 -h1,11605:9286405,18946835:0,0,0 -k1,11605:32583029,18946835:23296624 -g1,11605:32583029,18946835 -) -(1,11609:6630773,19762762:25952256,424439,79822 -(1,11607:6630773,19762762:0,0,0 -g1,11607:6630773,19762762 -g1,11607:6630773,19762762 -g1,11607:6303093,19762762 -(1,11607:6303093,19762762:0,0,0 -) -g1,11607:6630773,19762762 -) -g1,11609:7626635,19762762 -g1,11609:8954451,19762762 -h1,11609:10282267,19762762:0,0,0 -k1,11609:32583029,19762762:22300762 -g1,11609:32583029,19762762 -) -] -) -g1,11610:32583029,19842584 -g1,11610:6630773,19842584 -g1,11610:6630773,19842584 -g1,11610:32583029,19842584 -g1,11610:32583029,19842584 -) -h1,11610:6630773,20039192:0,0,0 -(1,11614:6630773,20904272:25952256,513147,134348 -h1,11613:6630773,20904272:983040,0,0 -k1,11613:8276634,20904272:185064 -k1,11613:9330049,20904272:185063 -k1,11613:10990328,20904272:185064 -k1,11613:13959360,20904272:185063 -k1,11613:14500284,20904272:185064 -k1,11613:17660027,20904272:185064 -k1,11613:19822967,20904272:185063 -k1,11613:23370028,20904272:185064 -k1,11613:25514618,20904272:185064 -k1,11613:27767997,20904272:185063 -k1,11613:29144506,20904272:185064 -k1,11613:30197921,20904272:185063 -k1,11613:31931601,20904272:185064 -k1,11613:32583029,20904272:0 -) -(1,11614:6630773,21769352:25952256,513147,134348 -k1,11613:8788268,21769352:228115 -k1,11613:9372242,21769352:228114 -k1,11613:10593883,21769352:228115 -k1,11613:14183995,21769352:228115 -k1,11613:16108836,21769352:228114 -k1,11613:18626779,21769352:228115 -k1,11613:19723246,21769352:228115 -k1,11613:21055643,21769352:228115 -k1,11613:22376242,21769352:228114 -k1,11613:25299853,21769352:228115 -(1,11613:25299853,21769352:0,452978,122846 -r1,11642:27416678,21769352:2116825,575824,122846 -k1,11613:25299853,21769352:-2116825 -) -(1,11613:25299853,21769352:2116825,452978,122846 -k1,11613:25299853,21769352:3277 -h1,11613:27413401,21769352:0,411205,112570 -) -k1,11613:27818463,21769352:228115 -k1,11613:28674412,21769352:228114 -k1,11613:29921612,21769352:228115 -k1,11613:32583029,21769352:0 -) -(1,11614:6630773,22634432:25952256,513147,134348 -k1,11613:8681662,22634432:182458 -k1,11613:9732473,22634432:182459 -k1,11613:11007416,22634432:182458 -k1,11613:13885371,22634432:182459 -(1,11613:13885371,22634432:0,452978,115847 -r1,11642:15298772,22634432:1413401,568825,115847 -k1,11613:13885371,22634432:-1413401 -) -(1,11613:13885371,22634432:1413401,452978,115847 -k1,11613:13885371,22634432:3277 -h1,11613:15295495,22634432:0,411205,112570 -) -k1,11613:15481230,22634432:182458 -k1,11613:16315116,22634432:182458 -k1,11613:18521327,22634432:182459 -k1,11613:19059645,22634432:182458 -k1,11613:22216782,22634432:182458 -k1,11613:24377118,22634432:182459 -k1,11613:25218868,22634432:182458 -k1,11613:27360853,22634432:182459 -k1,11613:29611627,22634432:182458 -k1,11613:32583029,22634432:0 -) -(1,11614:6630773,23499512:25952256,513147,134348 -g1,11613:7185862,23499512 -g1,11613:9782398,23499512 -g1,11613:12322573,23499512 -g1,11613:13713247,23499512 -g1,11613:15346404,23499512 -g1,11613:17621814,23499512 -g1,11613:18587159,23499512 -g1,11613:20483115,23499512 -g1,11613:22972172,23499512 -g1,11613:24438867,23499512 -g1,11613:24993956,23499512 -k1,11614:32583029,23499512:6543119 -g1,11614:32583029,23499512 -) -v1,11616:6630773,24184367:0,393216,0 -(1,11630:6630773,30134962:25952256,6343811,196608 -g1,11630:6630773,30134962 -g1,11630:6630773,30134962 -g1,11630:6434165,30134962 -(1,11630:6434165,30134962:0,6343811,196608 -r1,11642:32779637,30134962:26345472,6540419,196608 -k1,11630:6434165,30134962:-26345472 -) -(1,11630:6434165,30134962:26345472,6343811,196608 -[1,11630:6630773,30134962:25952256,6147203,0 -(1,11618:6630773,24418804:25952256,431045,112852 -(1,11617:6630773,24418804:0,0,0 -g1,11617:6630773,24418804 -g1,11617:6630773,24418804 -g1,11617:6303093,24418804 -(1,11617:6303093,24418804:0,0,0 -) -g1,11617:6630773,24418804 -) -g1,11618:9950312,24418804 -g1,11618:10946174,24418804 -g1,11618:14597668,24418804 -g1,11618:15261576,24418804 -h1,11618:19908931,24418804:0,0,0 -k1,11618:32583029,24418804:12674098 -g1,11618:32583029,24418804 -) -(1,11619:6630773,25103659:25952256,424439,112852 -h1,11619:6630773,25103659:0,0,0 -g1,11619:9286405,25103659 -g1,11619:10282267,25103659 -k1,11619:10282267,25103659:0 -h1,11619:15261576,25103659:0,0,0 -k1,11619:32583028,25103659:17321452 -g1,11619:32583028,25103659 -) -(1,11620:6630773,25788514:25952256,424439,112852 -h1,11620:6630773,25788514:0,0,0 -k1,11620:6630773,25788514:0 -h1,11620:10614220,25788514:0,0,0 -k1,11620:32583028,25788514:21968808 -g1,11620:32583028,25788514 -) -(1,11629:6630773,26604441:25952256,431045,9908 -(1,11622:6630773,26604441:0,0,0 -g1,11622:6630773,26604441 -g1,11622:6630773,26604441 -g1,11622:6303093,26604441 -(1,11622:6303093,26604441:0,0,0 -) -g1,11622:6630773,26604441 -) -g1,11629:7626635,26604441 -g1,11629:9286405,26604441 -g1,11629:10282267,26604441 -h1,11629:10614221,26604441:0,0,0 -k1,11629:32583029,26604441:21968808 -g1,11629:32583029,26604441 -) -(1,11629:6630773,27289296:25952256,431045,106246 -h1,11629:6630773,27289296:0,0,0 -g1,11629:7626635,27289296 -g1,11629:7958589,27289296 -g1,11629:8622497,27289296 -g1,11629:12937898,27289296 -g1,11629:14265714,27289296 -h1,11629:14597668,27289296:0,0,0 -k1,11629:32583028,27289296:17985360 -g1,11629:32583028,27289296 -) -(1,11629:6630773,27974151:25952256,431045,106246 -h1,11629:6630773,27974151:0,0,0 -g1,11629:7626635,27974151 -g1,11629:7958589,27974151 -g1,11629:8622497,27974151 -g1,11629:12937898,27974151 -g1,11629:14265714,27974151 -h1,11629:14597668,27974151:0,0,0 -k1,11629:32583028,27974151:17985360 -g1,11629:32583028,27974151 -) -(1,11629:6630773,28659006:25952256,431045,106246 -h1,11629:6630773,28659006:0,0,0 -g1,11629:7626635,28659006 -g1,11629:7958589,28659006 -g1,11629:8622497,28659006 -g1,11629:12937898,28659006 -g1,11629:14265714,28659006 -h1,11629:14597668,28659006:0,0,0 -k1,11629:32583028,28659006:17985360 -g1,11629:32583028,28659006 -) -(1,11629:6630773,29343861:25952256,431045,106246 -h1,11629:6630773,29343861:0,0,0 -g1,11629:7626635,29343861 -g1,11629:7958589,29343861 -g1,11629:8622497,29343861 -g1,11629:12937898,29343861 -g1,11629:14265714,29343861 -h1,11629:14929622,29343861:0,0,0 -k1,11629:32583030,29343861:17653408 -g1,11629:32583030,29343861 -) -(1,11629:6630773,30028716:25952256,431045,106246 -h1,11629:6630773,30028716:0,0,0 -g1,11629:7626635,30028716 -g1,11629:7958589,30028716 -g1,11629:8622497,30028716 -g1,11629:12937898,30028716 -g1,11629:14265714,30028716 -h1,11629:14929622,30028716:0,0,0 -k1,11629:32583030,30028716:17653408 -g1,11629:32583030,30028716 -) -] -) -g1,11630:32583029,30134962 -g1,11630:6630773,30134962 -g1,11630:6630773,30134962 -g1,11630:32583029,30134962 -g1,11630:32583029,30134962 -) -h1,11630:6630773,30331570:0,0,0 -v1,11634:6630773,31196650:0,393216,0 -(1,11635:6630773,34226671:25952256,3423237,0 -g1,11635:6630773,34226671 -g1,11635:6237557,34226671 -r1,11642:6368629,34226671:131072,3423237,0 -g1,11635:6567858,34226671 -g1,11635:6764466,34226671 -[1,11635:6764466,34226671:25818563,3423237,0 -(1,11635:6764466,31504948:25818563,701514,196608 -(1,11634:6764466,31504948:0,701514,196608 -r1,11642:8471973,31504948:1707507,898122,196608 -k1,11634:6764466,31504948:-1707507 -) -(1,11634:6764466,31504948:1707507,701514,196608 -) -k1,11634:8785284,31504948:313311 -k1,11634:10511502,31504948:327680 -k1,11634:12682760,31504948:313312 -k1,11634:13655363,31504948:313311 -k1,11634:16598634,31504948:313311 -k1,11634:18334732,31504948:313311 -k1,11634:19307336,31504948:313312 -k1,11634:22646444,31504948:313311 -(1,11634:22646444,31504948:0,452978,122846 -r1,11642:25466693,31504948:2820249,575824,122846 -k1,11634:22646444,31504948:-2820249 -) -(1,11634:22646444,31504948:2820249,452978,122846 -k1,11634:22646444,31504948:3277 -h1,11634:25463416,31504948:0,411205,112570 -) -k1,11634:25953674,31504948:313311 -(1,11634:25953674,31504948:0,452978,122846 -r1,11642:27718787,31504948:1765113,575824,122846 -k1,11634:25953674,31504948:-1765113 -) -(1,11634:25953674,31504948:1765113,452978,122846 -k1,11634:25953674,31504948:3277 -h1,11634:27715510,31504948:0,411205,112570 -) -k1,11634:28032099,31504948:313312 -k1,11634:29536855,31504948:313311 -(1,11634:29536855,31504948:0,452978,122846 -r1,11642:31653680,31504948:2116825,575824,122846 -k1,11634:29536855,31504948:-2116825 -) -(1,11634:29536855,31504948:2116825,452978,122846 -k1,11634:29536855,31504948:3277 -h1,11634:31650403,31504948:0,411205,112570 -) -k1,11634:31966991,31504948:313311 -k1,11634:32583029,31504948:0 -) -(1,11635:6764466,32370028:25818563,513147,126483 -k1,11634:9196647,32370028:270804 -k1,11634:10637924,32370028:270804 -k1,11634:12001214,32370028:270805 -k1,11634:12954903,32370028:270804 -k1,11634:14994524,32370028:270804 -k1,11634:16357813,32370028:270804 -k1,11634:17280046,32370028:270805 -k1,11634:19921287,32370028:270804 -k1,11634:21650922,32370028:270804 -k1,11634:23252107,32370028:270804 -k1,11634:24912274,32370028:270804 -k1,11634:26073058,32370028:270805 -k1,11634:27911483,32370028:270804 -k1,11634:29884257,32370028:270804 -k1,11634:32583029,32370028:0 -) -(1,11635:6764466,33235108:25818563,505283,126483 -k1,11634:8600691,33235108:166368 -k1,11634:9122919,33235108:166368 -k1,11634:11120362,33235108:166367 -k1,11634:11938158,33235108:166368 -k1,11634:15537957,33235108:166368 -k1,11634:17081236,33235108:166368 -k1,11634:18439048,33235108:166367 -k1,11634:21783912,33235108:166368 -k1,11634:23141725,33235108:166368 -k1,11634:24499538,33235108:166368 -k1,11634:26537614,33235108:166368 -k1,11634:27907222,33235108:166367 -k1,11634:29904666,33235108:166368 -k1,11634:31563944,33235108:166368 -k1,11634:32583029,33235108:0 -) -(1,11635:6764466,34100188:25818563,505283,126483 -g1,11634:8806567,34100188 -g1,11634:12046667,34100188 -g1,11634:13007424,34100188 -g1,11634:14225738,34100188 -g1,11634:16256043,34100188 -g1,11634:19114068,34100188 -g1,11634:20772128,34100188 -k1,11635:32583029,34100188:7733907 -g1,11635:32583029,34100188 -) -] -g1,11635:32583029,34226671 -) -h1,11635:6630773,34226671:0,0,0 -(1,11637:6630773,37057831:25952256,32768,229376 -(1,11637:6630773,37057831:0,32768,229376 -(1,11637:6630773,37057831:5505024,32768,229376 -r1,11642:12135797,37057831:5505024,262144,229376 -) -k1,11637:6630773,37057831:-5505024 -) -(1,11637:6630773,37057831:25952256,32768,0 -r1,11642:32583029,37057831:25952256,32768,0 -) -) -(1,11637:6630773,38689683:25952256,606339,151780 -(1,11637:6630773,38689683:2464678,582746,14155 -g1,11637:6630773,38689683 -g1,11637:9095451,38689683 -) -k1,11637:32583029,38689683:19951780 -g1,11637:32583029,38689683 -) -(1,11640:6630773,39947979:25952256,513147,126483 -k1,11639:10368666,39947979:265140 -k1,11639:11502158,39947979:265140 -k1,11639:13297563,39947979:265139 -k1,11639:14214131,39947979:265140 -k1,11639:16195004,39947979:265140 -k1,11639:17840988,39947979:265140 -k1,11639:19390634,39947979:265140 -k1,11639:22361099,39947979:265139 -k1,11639:24122426,39947979:265140 -k1,11639:24919063,39947979:265140 -k1,11639:28017324,39947979:265140 -k1,11639:29749159,39947979:265139 -k1,11639:30480260,39947979:265140 -k1,11639:31764485,39947979:265140 -k1,11640:32583029,39947979:0 -) -(1,11640:6630773,40813059:25952256,513147,126483 -k1,11639:9265590,40813059:271589 -k1,11639:10196471,40813059:271589 -k1,11639:10823920,40813059:271589 -k1,11639:12926585,40813059:271589 -k1,11639:13881059,40813059:271589 -k1,11639:16848144,40813059:271589 -k1,11639:17651230,40813059:271589 -k1,11639:20386973,40813059:271589 -k1,11639:21420090,40813059:271589 -k1,11639:22710763,40813059:271588 -k1,11639:24363196,40813059:271589 -k1,11639:25317670,40813059:271589 -k1,11639:26275421,40813059:271589 -k1,11639:26902870,40813059:271589 -k1,11639:29017331,40813059:271589 -k1,11639:29948212,40813059:271589 -k1,11639:30990504,40813059:271589 -k1,11639:32583029,40813059:0 -) -(1,11640:6630773,41678139:25952256,513147,126483 -k1,11639:10060273,41678139:223479 -k1,11639:10771317,41678139:223456 -k1,11639:13129304,41678139:223479 -k1,11639:16014200,41678139:223479 -k1,11639:16769177,41678139:223480 -k1,11639:17348516,41678139:223479 -k1,11639:19403072,41678139:223480 -k1,11639:20911057,41678139:223479 -k1,11639:24874021,41678139:223480 -k1,11639:26362345,41678139:223479 -k1,11639:26941685,41678139:223480 -k1,11639:28509963,41678139:223479 -k1,11639:30654303,41678139:223480 -k1,11639:31563944,41678139:223479 -k1,11639:32583029,41678139:0 -) -(1,11640:6630773,42543219:25952256,513147,134348 -k1,11639:9416325,42543219:225060 -k1,11639:12533489,42543219:225060 -k1,11639:13441434,42543219:225060 -k1,11639:15089281,42543219:225060 -k1,11639:15670201,42543219:225060 -k1,11639:16878301,42543219:225060 -k1,11639:17789522,42543219:225059 -k1,11639:21347743,42543219:225060 -k1,11639:24093973,42543219:225060 -k1,11639:27108901,42543219:225060 -(1,11639:27108901,42543219:0,452978,115847 -r1,11642:30280861,42543219:3171960,568825,115847 -k1,11639:27108901,42543219:-3171960 -) -(1,11639:27108901,42543219:3171960,452978,115847 -k1,11639:27108901,42543219:3277 -h1,11639:30277584,42543219:0,411205,112570 -) -k1,11639:30505921,42543219:225060 -k1,11639:31835263,42543219:225060 -k1,11639:32583029,42543219:0 -) -(1,11640:6630773,43408299:25952256,505283,126483 -k1,11639:8325393,43408299:181394 -k1,11639:9158215,43408299:181394 -k1,11639:11412513,43408299:181394 -k1,11639:12878414,43408299:181395 -k1,11639:13415668,43408299:181394 -k1,11639:14977906,43408299:181394 -k1,11639:17920332,43408299:181394 -k1,11639:21541711,43408299:181394 -k1,11639:23583672,43408299:181394 -k1,11639:24416494,43408299:181394 -k1,11639:25345655,43408299:181395 -k1,11639:28360170,43408299:181394 -k1,11639:30239602,43408299:181394 -k1,11639:31440081,43408299:181394 -k1,11640:32583029,43408299:0 -) -(1,11640:6630773,44273379:25952256,513147,126483 -k1,11639:8166834,44273379:228618 -k1,11639:11264619,44273379:228619 -k1,11639:12176122,44273379:228618 -k1,11639:12760601,44273379:228619 -k1,11639:14993965,44273379:228618 -k1,11639:16897028,44273379:228618 -k1,11639:19915515,44273379:228619 -(1,11639:19915515,44273379:0,452978,115847 -r1,11642:23087475,44273379:3171960,568825,115847 -k1,11639:19915515,44273379:-3171960 -) -(1,11639:19915515,44273379:3171960,452978,115847 -k1,11639:19915515,44273379:3277 -h1,11639:23084198,44273379:0,411205,112570 -) -k1,11639:23316093,44273379:228618 -k1,11639:24648993,44273379:228618 -k1,11639:26163428,44273379:228619 -k1,11639:28107779,44273379:228618 -k1,11639:29832585,44273379:228619 -k1,11639:31931601,44273379:228618 -k1,11639:32583029,44273379:0 -) -] -(1,11642:32583029,45706769:0,0,0 -g1,11642:32583029,45706769 -) -) -] -(1,11642:6630773,47279633:25952256,0,0 -h1,11642:6630773,47279633:25952256,0,0 -) -] -(1,11642:4262630,4025873:0,0,0 -[1,11642:-473656,4025873:0,0,0 -(1,11642:-473656,-710413:0,0,0 -(1,11642:-473656,-710413:0,0,0 -g1,11642:-473656,-710413 -) -g1,11642:-473656,-710413 -) -] -) -] -!25755 -}182 Input:1945:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 +!840 {183 -[1,11675:4262630,47279633:28320399,43253760,0 -(1,11675:4262630,4025873:0,0,0 -[1,11675:-473656,4025873:0,0,0 -(1,11675:-473656,-710413:0,0,0 -(1,11675:-473656,-644877:0,0,0 -k1,11675:-473656,-644877:-65536 +[1,11641:4262630,47279633:28320399,43253760,0 +(1,11641:4262630,4025873:0,0,0 +[1,11641:-473656,4025873:0,0,0 +(1,11641:-473656,-710413:0,0,0 +(1,11641:-473656,-644877:0,0,0 +k1,11641:-473656,-644877:-65536 ) -(1,11675:-473656,4736287:0,0,0 -k1,11675:-473656,4736287:5209943 +(1,11641:-473656,4736287:0,0,0 +k1,11641:-473656,4736287:5209943 ) -g1,11675:-473656,-710413 +g1,11641:-473656,-710413 ) ] ) -[1,11675:6630773,47279633:25952256,43253760,0 -[1,11675:6630773,4812305:25952256,786432,0 -(1,11675:6630773,4812305:25952256,505283,134348 -(1,11675:6630773,4812305:25952256,505283,134348 -g1,11675:3078558,4812305 -[1,11675:3078558,4812305:0,0,0 -(1,11675:3078558,2439708:0,1703936,0 -k1,11675:1358238,2439708:-1720320 +[1,11641:6630773,47279633:25952256,43253760,0 +[1,11641:6630773,4812305:25952256,786432,0 +(1,11641:6630773,4812305:25952256,505283,126483 +(1,11641:6630773,4812305:25952256,505283,126483 +g1,11641:3078558,4812305 +[1,11641:3078558,4812305:0,0,0 +(1,11641:3078558,2439708:0,1703936,0 +k1,11641:1358238,2439708:-1720320 (1,9182:1358238,2439708:1720320,1703936,0 (1,9182:1358238,2439708:1179648,16384,0 -r1,11675:2537886,2439708:1179648,16384,0 +r1,11641:2537886,2439708:1179648,16384,0 ) g1,9182:3062174,2439708 (1,9182:3062174,2439708:16384,1703936,0 [1,9182:3062174,2439708:25952256,1703936,0 (1,9182:3062174,1915420:25952256,1179648,0 (1,9182:3062174,1915420:16384,1179648,0 -r1,11675:3078558,1915420:16384,1179648,0 +r1,11641:3078558,1915420:16384,1179648,0 ) k1,9182:29014430,1915420:25935872 g1,9182:29014430,1915420 @@ -208466,16 +207745,16 @@ g1,9182:29014430,1915420 ) ) ] -[1,11675:3078558,4812305:0,0,0 -(1,11675:3078558,2439708:0,1703936,0 -g1,11675:29030814,2439708 -g1,11675:36135244,2439708 +[1,11641:3078558,4812305:0,0,0 +(1,11641:3078558,2439708:0,1703936,0 +g1,11641:29030814,2439708 +g1,11641:36135244,2439708 (1,9182:36135244,2439708:1720320,1703936,0 (1,9182:36135244,2439708:16384,1703936,0 [1,9182:36135244,2439708:25952256,1703936,0 (1,9182:36135244,1915420:25952256,1179648,0 (1,9182:36135244,1915420:16384,1179648,0 -r1,11675:36151628,1915420:16384,1179648,0 +r1,11641:36151628,1915420:16384,1179648,0 ) k1,9182:62087500,1915420:25935872 g1,9182:62087500,1915420 @@ -208484,25 +207763,25 @@ g1,9182:62087500,1915420 ) g1,9182:36675916,2439708 (1,9182:36675916,2439708:1179648,16384,0 -r1,11675:37855564,2439708:1179648,16384,0 +r1,11641:37855564,2439708:1179648,16384,0 ) ) -k1,11675:3078556,2439708:-34777008 +k1,11641:3078556,2439708:-34777008 ) ] -[1,11675:3078558,4812305:0,0,0 -(1,11675:3078558,49800853:0,16384,2228224 -k1,11675:1358238,49800853:-1720320 +[1,11641:3078558,4812305:0,0,0 +(1,11641:3078558,49800853:0,16384,2228224 +k1,11641:1358238,49800853:-1720320 (1,9182:1358238,49800853:1720320,16384,2228224 (1,9182:1358238,49800853:1179648,16384,0 -r1,11675:2537886,49800853:1179648,16384,0 +r1,11641:2537886,49800853:1179648,16384,0 ) g1,9182:3062174,49800853 (1,9182:3062174,52029077:16384,1703936,0 [1,9182:3062174,52029077:25952256,1703936,0 (1,9182:3062174,51504789:25952256,1179648,0 (1,9182:3062174,51504789:16384,1179648,0 -r1,11675:3078558,51504789:16384,1179648,0 +r1,11641:3078558,51504789:16384,1179648,0 ) k1,9182:29014430,51504789:25935872 g1,9182:29014430,51504789 @@ -208512,16 +207791,16 @@ g1,9182:29014430,51504789 ) ) ] -[1,11675:3078558,4812305:0,0,0 -(1,11675:3078558,49800853:0,16384,2228224 -g1,11675:29030814,49800853 -g1,11675:36135244,49800853 +[1,11641:3078558,4812305:0,0,0 +(1,11641:3078558,49800853:0,16384,2228224 +g1,11641:29030814,49800853 +g1,11641:36135244,49800853 (1,9182:36135244,49800853:1720320,16384,2228224 (1,9182:36135244,52029077:16384,1703936,0 [1,9182:36135244,52029077:25952256,1703936,0 (1,9182:36135244,51504789:25952256,1179648,0 (1,9182:36135244,51504789:16384,1179648,0 -r1,11675:36151628,51504789:16384,1179648,0 +r1,11641:36151628,51504789:16384,1179648,0 ) k1,9182:62087500,51504789:25935872 g1,9182:62087500,51504789 @@ -208530,912 +207809,1811 @@ g1,9182:62087500,51504789 ) g1,9182:36675916,49800853 (1,9182:36675916,49800853:1179648,16384,0 -r1,11675:37855564,49800853:1179648,16384,0 -) -) -k1,11675:3078556,49800853:-34777008 -) -] -g1,11675:6630773,4812305 -k1,11675:21678495,4812305:13852345 -g1,11675:23301166,4812305 -g1,11675:24088253,4812305 -g1,11675:28572226,4812305 -g1,11675:29981905,4812305 -) -) -] -[1,11675:6630773,45706769:25952256,40108032,0 -(1,11675:6630773,45706769:25952256,40108032,0 -(1,11675:6630773,45706769:0,0,0 -g1,11675:6630773,45706769 -) -[1,11675:6630773,45706769:25952256,40108032,0 -(1,11640:6630773,6254097:25952256,513147,126483 -k1,11639:8227845,6254097:184771 -k1,11639:9098777,6254097:184770 -k1,11639:9741645,6254097:184771 -k1,11639:11764700,6254097:184770 -k1,11639:14542075,6254097:184771 -k1,11639:15918290,6254097:184770 -k1,11639:18808387,6254097:184771 -k1,11639:20377277,6254097:184770 -k1,11639:21213476,6254097:184771 -k1,11639:22849869,6254097:184771 -k1,11639:24736609,6254097:184770 -k1,11639:25537418,6254097:184771 -k1,11639:26741273,6254097:184770 -k1,11639:28502840,6254097:184771 -k1,11639:29346902,6254097:184770 -k1,11639:29887533,6254097:184771 -k1,11639:32583029,6254097:0 -) -(1,11640:6630773,7119177:25952256,513147,134348 -g1,11639:7512887,7119177 -g1,11639:8328154,7119177 -g1,11639:9546468,7119177 -g1,11639:11729472,7119177 -g1,11639:12587993,7119177 -g1,11639:13143082,7119177 -k1,11640:32583030,7119177:17556444 -g1,11640:32583030,7119177 -) -v1,11642:6630773,7804032:0,393216,0 -(1,11653:6630773,10468030:25952256,3057214,196608 -g1,11653:6630773,10468030 -g1,11653:6630773,10468030 -g1,11653:6434165,10468030 -(1,11653:6434165,10468030:0,3057214,196608 -r1,11675:32779637,10468030:26345472,3253822,196608 -k1,11653:6434165,10468030:-26345472 -) -(1,11653:6434165,10468030:26345472,3057214,196608 -[1,11653:6630773,10468030:25952256,2860606,0 -(1,11644:6630773,8038469:25952256,431045,106246 -(1,11643:6630773,8038469:0,0,0 -g1,11643:6630773,8038469 -g1,11643:6630773,8038469 -g1,11643:6303093,8038469 -(1,11643:6303093,8038469:0,0,0 -) -g1,11643:6630773,8038469 -) -k1,11644:6630773,8038469:0 -h1,11644:14597667,8038469:0,0,0 -k1,11644:32583029,8038469:17985362 -g1,11644:32583029,8038469 -) -(1,11648:6630773,8854396:25952256,424439,79822 -(1,11646:6630773,8854396:0,0,0 -g1,11646:6630773,8854396 -g1,11646:6630773,8854396 -g1,11646:6303093,8854396 -(1,11646:6303093,8854396:0,0,0 -) -g1,11646:6630773,8854396 -) -g1,11648:7626635,8854396 -g1,11648:8954451,8854396 -h1,11648:10282267,8854396:0,0,0 -k1,11648:32583029,8854396:22300762 -g1,11648:32583029,8854396 -) -(1,11650:6630773,9670323:25952256,431045,106246 -(1,11649:6630773,9670323:0,0,0 -g1,11649:6630773,9670323 -g1,11649:6630773,9670323 -g1,11649:6303093,9670323 -(1,11649:6303093,9670323:0,0,0 -) -g1,11649:6630773,9670323 -) -k1,11650:6630773,9670323:0 -k1,11650:6630773,9670323:0 -h1,11650:17585253,9670323:0,0,0 -k1,11650:32583029,9670323:14997776 -g1,11650:32583029,9670323 -) -(1,11651:6630773,10355178:25952256,431045,112852 -h1,11651:6630773,10355178:0,0,0 -g1,11651:7294681,10355178 -g1,11651:8954451,10355178 -g1,11651:10614221,10355178 -g1,11651:12605945,10355178 -g1,11651:13933761,10355178 -g1,11651:14929623,10355178 -g1,11651:16257439,10355178 -g1,11651:17917209,10355178 -g1,11651:19576979,10355178 -k1,11651:19576979,10355178:1652 -h1,11651:20906447,10355178:0,0,0 -k1,11651:32583029,10355178:11676582 -g1,11651:32583029,10355178 -) -] -) -g1,11653:32583029,10468030 -g1,11653:6630773,10468030 -g1,11653:6630773,10468030 -g1,11653:32583029,10468030 -g1,11653:32583029,10468030 -) -h1,11653:6630773,10664638:0,0,0 -(1,11657:6630773,11529718:25952256,513147,134348 -h1,11656:6630773,11529718:983040,0,0 -k1,11656:10547143,11529718:143462 -(1,11656:10547143,11529718:0,452978,115847 -r1,11675:13719103,11529718:3171960,568825,115847 -k1,11656:10547143,11529718:-3171960 -) -(1,11656:10547143,11529718:3171960,452978,115847 -k1,11656:10547143,11529718:3277 -h1,11656:13715826,11529718:0,411205,112570 -) -k1,11656:13862566,11529718:143463 -k1,11656:16657615,11529718:143462 -k1,11656:17820163,11529718:143463 -k1,11656:21489462,11529718:143462 -k1,11656:22292217,11529718:143463 -k1,11656:23454764,11529718:143462 -k1,11656:25742565,11529718:143463 -k1,11656:28796481,11529718:143462 -k1,11656:30131389,11529718:143463 -k1,11656:30890889,11529718:143462 -k1,11656:32583029,11529718:0 -) -(1,11657:6630773,12394798:25952256,513147,126483 -k1,11656:9113276,12394798:288358 -k1,11656:11099017,12394798:288359 -k1,11656:12544085,12394798:288358 -k1,11656:14169378,12394798:288359 -k1,11656:16006352,12394798:288358 -k1,11656:16946139,12394798:288359 -k1,11656:19363762,12394798:288358 -k1,11656:21291176,12394798:288359 -k1,11656:22192296,12394798:288358 -k1,11656:23499739,12394798:288358 -k1,11656:24971023,12394798:288359 -k1,11656:25918673,12394798:288358 -k1,11656:26562892,12394798:288359 -k1,11656:28855996,12394798:288358 -k1,11656:30097904,12394798:288359 -k1,11656:31490544,12394798:288358 -k1,11657:32583029,12394798:0 -) -(1,11657:6630773,13259878:25952256,505283,134348 -(1,11656:6630773,13259878:0,452978,115847 -r1,11675:9451022,13259878:2820249,568825,115847 -k1,11656:6630773,13259878:-2820249 -) -(1,11656:6630773,13259878:2820249,452978,115847 -k1,11656:6630773,13259878:3277 -h1,11656:9447745,13259878:0,411205,112570 -) -k1,11656:9702240,13259878:251218 -k1,11656:12721700,13259878:251219 -k1,11656:13659080,13259878:251218 -k1,11656:15304249,13259878:251218 -k1,11656:18297494,13259878:251219 -(1,11656:18297494,13259878:0,459977,115847 -r1,11675:21821166,13259878:3523672,575824,115847 -k1,11656:18297494,13259878:-3523672 -) -(1,11656:18297494,13259878:3523672,459977,115847 -k1,11656:18297494,13259878:3277 -h1,11656:21817889,13259878:0,411205,112570 -) -k1,11656:22072384,13259878:251218 -k1,11656:24613430,13259878:251218 -k1,11656:26096726,13259878:251219 -k1,11656:27846097,13259878:251218 -h1,11656:29041474,13259878:0,0,0 -k1,11656:29673456,13259878:251218 -k1,11656:30742564,13259878:251219 -k1,11656:31764485,13259878:251218 -k1,11657:32583029,13259878:0 -) -(1,11657:6630773,14124958:25952256,505283,134348 -k1,11656:8812013,14124958:232199 -k1,11656:9912564,14124958:232199 -k1,11656:12274028,14124958:232199 -k1,11656:13525312,14124958:232199 -k1,11656:16667965,14124958:232199 -k1,11656:18413390,14124958:232199 -k1,11656:19261628,14124958:232200 -k1,11656:21772514,14124958:232199 -h1,11656:23141561,14124958:0,0,0 -k1,11656:23547430,14124958:232199 -k1,11656:24249522,14124958:232199 -k1,11656:25013218,14124958:232199 -k1,11656:28454715,14124958:232199 -k1,11656:29338342,14124958:232199 -k1,11656:32583029,14124958:0 -) -(1,11657:6630773,14990038:25952256,505283,126483 -k1,11656:8132606,14990038:217327 -k1,11656:9369019,14990038:217328 -k1,11656:11325672,14990038:217327 -k1,11656:12159037,14990038:217327 -k1,11656:14261836,14990038:217328 -k1,11656:15859351,14990038:217327 -k1,11656:17180960,14990038:217327 -k1,11656:18146053,14990038:217327 -k1,11656:21260728,14990038:217328 -k1,11656:22009552,14990038:217327 -k1,11656:25891652,14990038:217327 -k1,11656:26870508,14990038:217328 -k1,11656:28596474,14990038:217327 -k1,11657:32583029,14990038:0 -) -(1,11657:6630773,15855118:25952256,473825,7863 -k1,11657:32583029,15855118:23925228 -g1,11657:32583029,15855118 -) -v1,11659:6630773,16539973:0,393216,0 -(1,11665:6630773,18250366:25952256,2103609,196608 -g1,11665:6630773,18250366 -g1,11665:6630773,18250366 -g1,11665:6434165,18250366 -(1,11665:6434165,18250366:0,2103609,196608 -r1,11675:32779637,18250366:26345472,2300217,196608 -k1,11665:6434165,18250366:-26345472 -) -(1,11665:6434165,18250366:26345472,2103609,196608 -[1,11665:6630773,18250366:25952256,1907001,0 -(1,11661:6630773,16767804:25952256,424439,112852 -(1,11660:6630773,16767804:0,0,0 -g1,11660:6630773,16767804 -g1,11660:6630773,16767804 -g1,11660:6303093,16767804 -(1,11660:6303093,16767804:0,0,0 -) -g1,11660:6630773,16767804 -) -k1,11661:6630773,16767804:0 -h1,11661:14929621,16767804:0,0,0 -k1,11661:32583029,16767804:17653408 -g1,11661:32583029,16767804 -) -(1,11662:6630773,17452659:25952256,424439,112852 -h1,11662:6630773,17452659:0,0,0 -k1,11662:6630773,17452659:0 -h1,11662:14265713,17452659:0,0,0 -k1,11662:32583029,17452659:18317316 -g1,11662:32583029,17452659 -) -(1,11663:6630773,18137514:25952256,424439,112852 -h1,11663:6630773,18137514:0,0,0 -k1,11663:6630773,18137514:0 -h1,11663:13933760,18137514:0,0,0 -k1,11663:32583028,18137514:18649268 -g1,11663:32583028,18137514 -) -] -) -g1,11665:32583029,18250366 -g1,11665:6630773,18250366 -g1,11665:6630773,18250366 -g1,11665:32583029,18250366 -g1,11665:32583029,18250366 -) -h1,11665:6630773,18446974:0,0,0 -(1,11668:6630773,21278134:25952256,32768,229376 -(1,11668:6630773,21278134:0,32768,229376 -(1,11668:6630773,21278134:5505024,32768,229376 -r1,11675:12135797,21278134:5505024,262144,229376 -) -k1,11668:6630773,21278134:-5505024 -) -(1,11668:6630773,21278134:25952256,32768,0 -r1,11675:32583029,21278134:25952256,32768,0 -) -) -(1,11668:6630773,22909986:25952256,606339,161218 -(1,11668:6630773,22909986:2464678,575668,14155 -g1,11668:6630773,22909986 -g1,11668:9095451,22909986 -) -g1,11668:12303307,22909986 -k1,11668:32583029,22909986:17080516 -g1,11668:32583029,22909986 -) -(1,11670:6630773,24168282:25952256,513147,134348 -k1,11669:7835329,24168282:162534 -k1,11669:10273274,24168282:162535 -k1,11669:13168659,24168282:162534 -k1,11669:14140564,24168282:162535 -k1,11669:15322183,24168282:162534 -k1,11669:17859743,24168282:162535 -k1,11669:18689433,24168282:162534 -k1,11669:19266774,24168282:162498 -k1,11669:22558652,24168282:162534 -k1,11669:23337225,24168282:162535 -k1,11669:24518844,24168282:162534 -k1,11669:27025602,24168282:162535 -k1,11669:29779430,24168282:162534 -k1,11669:30154920,24168282:162498 -k1,11669:32583029,24168282:0 -) -(1,11670:6630773,25033362:25952256,513147,134348 -k1,11669:7813937,25033362:164079 -k1,11669:9890356,25033362:164078 -k1,11669:11241947,25033362:164079 -k1,11669:12436251,25033362:164078 -k1,11669:13216368,25033362:164079 -k1,11669:13830024,25033362:164079 -k1,11669:18558204,25033362:164253 -k1,11669:19211837,25033362:164079 -k1,11669:20898317,25033362:164079 -k1,11669:21678433,25033362:164078 -k1,11669:24872897,25033362:164079 -k1,11669:27818978,25033362:164078 -k1,11669:30114288,25033362:164079 -k1,11669:32583029,25033362:0 -) -(1,11670:6630773,25898442:25952256,505283,95026 -g1,11669:8630931,25898442 -g1,11669:10021605,25898442 -g1,11669:13343625,25898442 -g1,11669:13992431,25898442 -g1,11669:17322970,25898442 -k1,11670:32583029,25898442:13406701 -g1,11670:32583029,25898442 -) -] -(1,11675:32583029,45706769:0,0,0 -g1,11675:32583029,45706769 -) -) -] -(1,11675:6630773,47279633:25952256,0,0 -h1,11675:6630773,47279633:25952256,0,0 -) -] -(1,11675:4262630,4025873:0,0,0 -[1,11675:-473656,4025873:0,0,0 -(1,11675:-473656,-710413:0,0,0 -(1,11675:-473656,-710413:0,0,0 -g1,11675:-473656,-710413 -) -g1,11675:-473656,-710413 -) -] +r1,11641:37855564,49800853:1179648,16384,0 +) +) +k1,11641:3078556,49800853:-34777008 +) +] +g1,11641:6630773,4812305 +g1,11641:6630773,4812305 +g1,11641:9718829,4812305 +k1,11641:31387653,4812305:21668824 +) +) +] +[1,11641:6630773,45706769:25952256,40108032,0 +(1,11641:6630773,45706769:25952256,40108032,0 +(1,11641:6630773,45706769:0,0,0 +g1,11641:6630773,45706769 +) +[1,11641:6630773,45706769:25952256,40108032,0 +(1,11576:6630773,6254097:25952256,513147,134348 +k1,11575:7196567,6254097:209934 +k1,11575:9384377,6254097:209933 +k1,11575:10277196,6254097:209934 +k1,11575:11480656,6254097:209934 +k1,11575:12349881,6254097:209933 +k1,11575:14519341,6254097:209934 +k1,11575:16971262,6254097:209934 +k1,11575:17864080,6254097:209933 +k1,11575:18679567,6254097:209934 +k1,11575:19757853,6254097:209934 +k1,11575:22991617,6254097:209933 +k1,11575:23814313,6254097:209934 +k1,11575:26567699,6254097:209934 +k1,11575:28737158,6254097:209933 +k1,11575:31015408,6254097:209934 +k1,11575:32583029,6254097:0 +) +(1,11576:6630773,7119177:25952256,505283,134348 +k1,11575:9529583,7119177:227563 +k1,11575:12731826,7119177:227564 +k1,11575:15155500,7119177:227563 +k1,11575:17237732,7119177:227563 +k1,11575:18274666,7119177:227564 +k1,11575:19891592,7119177:227563 +k1,11575:20802040,7119177:227563 +k1,11575:23715269,7119177:227564 +k1,11575:24430392,7119177:227535 +k1,11575:27435371,7119177:227563 +k1,11575:29030015,7119177:227563 +k1,11575:29789076,7119177:227564 +k1,11575:31714677,7119177:227563 +k1,11575:32583029,7119177:0 +) +(1,11576:6630773,7984257:25952256,513147,134348 +k1,11575:8984130,7984257:171663 +k1,11575:10545156,7984257:171663 +k1,11575:12284441,7984257:171664 +k1,11575:12811964,7984257:171663 +k1,11575:14209806,7984257:171663 +k1,11575:15364509,7984257:171663 +k1,11575:16727618,7984257:171664 +k1,11575:17767633,7984257:171663 +k1,11575:19487912,7984257:171663 +k1,11575:20311003,7984257:171663 +k1,11575:22220682,7984257:171664 +k1,11575:23411430,7984257:171663 +k1,11575:25542619,7984257:171663 +k1,11575:28831174,7984257:171663 +k1,11575:29654266,7984257:171664 +k1,11575:30845014,7984257:171663 +k1,11575:32583029,7984257:0 +) +(1,11576:6630773,8849337:25952256,513147,134348 +k1,11575:7484088,8849337:194023 +k1,11575:8697196,8849337:194023 +k1,11575:9874259,8849337:194023 +k1,11575:10877652,8849337:194023 +k1,11575:12590144,8849337:194023 +k1,11575:13467052,8849337:194023 +k1,11575:14016935,8849337:194023 +k1,11575:17185637,8849337:194023 +k1,11575:19245469,8849337:194022 +k1,11575:20851793,8849337:194023 +k1,11575:22613437,8849337:194023 +k1,11575:23826545,8849337:194023 +k1,11575:26195053,8849337:194023 +k1,11575:27001838,8849337:194023 +k1,11575:28214946,8849337:194023 +k1,11575:29481138,8849337:194023 +k1,11575:30334453,8849337:194023 +k1,11575:31547561,8849337:194023 +k1,11576:32583029,8849337:0 +k1,11576:32583029,8849337:0 +) +(1,11578:6630773,9714417:25952256,513147,126483 +h1,11577:6630773,9714417:983040,0,0 +g1,11577:10417443,9714417 +g1,11577:11983753,9714417 +g1,11577:12714479,9714417 +g1,11577:14611746,9714417 +(1,11577:14611746,9714417:0,452978,115847 +r1,11641:17783706,9714417:3171960,568825,115847 +k1,11577:14611746,9714417:-3171960 +) +(1,11577:14611746,9714417:3171960,452978,115847 +k1,11577:14611746,9714417:3277 +h1,11577:17780429,9714417:0,411205,112570 +) +g1,11577:17982935,9714417 +g1,11577:20192809,9714417 +g1,11577:21383598,9714417 +g1,11577:22601912,9714417 +g1,11577:24644013,9714417 +g1,11577:25502534,9714417 +g1,11577:26057623,9714417 +k1,11578:32583029,9714417:2409090 +g1,11578:32583029,9714417 +) +v1,11580:6630773,10399272:0,393216,0 +(1,11590:6630773,13610447:25952256,3604391,196608 +g1,11590:6630773,13610447 +g1,11590:6630773,13610447 +g1,11590:6434165,13610447 +(1,11590:6434165,13610447:0,3604391,196608 +r1,11641:32779637,13610447:26345472,3800999,196608 +k1,11590:6434165,13610447:-26345472 +) +(1,11590:6434165,13610447:26345472,3604391,196608 +[1,11590:6630773,13610447:25952256,3407783,0 +(1,11582:6630773,10633709:25952256,431045,79822 +(1,11581:6630773,10633709:0,0,0 +g1,11581:6630773,10633709 +g1,11581:6630773,10633709 +g1,11581:6303093,10633709 +(1,11581:6303093,10633709:0,0,0 +) +g1,11581:6630773,10633709 +) +k1,11582:6630773,10633709:0 +g1,11582:7958589,10633709 +g1,11582:8954451,10633709 +g1,11582:9950313,10633709 +g1,11582:11610083,10633709 +h1,11582:11942037,10633709:0,0,0 +k1,11582:32583029,10633709:20640992 +g1,11582:32583029,10633709 +) +(1,11583:6630773,11318564:25952256,431045,112852 +h1,11583:6630773,11318564:0,0,0 +g1,11583:6962727,11318564 +g1,11583:7294681,11318564 +g1,11583:7626635,11318564 +g1,11583:16589392,11318564 +g1,11583:17585254,11318564 +g1,11583:18913070,11318564 +g1,11583:19576978,11318564 +g1,11583:21236748,11318564 +h1,11583:22564564,11318564:0,0,0 +k1,11583:32583029,11318564:10018465 +g1,11583:32583029,11318564 +) +(1,11584:6630773,12003419:25952256,424439,79822 +h1,11584:6630773,12003419:0,0,0 +h1,11584:6962727,12003419:0,0,0 +k1,11584:32583029,12003419:25620302 +g1,11584:32583029,12003419 +) +(1,11585:6630773,12688274:25952256,431045,106246 +h1,11585:6630773,12688274:0,0,0 +g1,11585:10282267,12688274 +g1,11585:10946175,12688274 +h1,11585:15593530,12688274:0,0,0 +k1,11585:32583030,12688274:16989500 +g1,11585:32583030,12688274 +) +(1,11589:6630773,13504201:25952256,431045,106246 +(1,11587:6630773,13504201:0,0,0 +g1,11587:6630773,13504201 +g1,11587:6630773,13504201 +g1,11587:6303093,13504201 +(1,11587:6303093,13504201:0,0,0 +) +g1,11587:6630773,13504201 +) +g1,11589:7626635,13504201 +g1,11589:8954451,13504201 +g1,11589:13601806,13504201 +g1,11589:18249161,13504201 +g1,11589:22896516,13504201 +g1,11589:27543871,13504201 +h1,11589:31859272,13504201:0,0,0 +k1,11589:32583029,13504201:723757 +g1,11589:32583029,13504201 +) +] +) +g1,11590:32583029,13610447 +g1,11590:6630773,13610447 +g1,11590:6630773,13610447 +g1,11590:32583029,13610447 +g1,11590:32583029,13610447 +) +h1,11590:6630773,13807055:0,0,0 +(1,11594:6630773,14672135:25952256,513147,134348 +h1,11593:6630773,14672135:983040,0,0 +k1,11593:9091095,14672135:280595 +k1,11593:14337353,14672135:280595 +k1,11593:17692242,14672135:280595 +k1,11593:18632129,14672135:280595 +k1,11593:21892646,14672135:280595 +k1,11593:22529101,14672135:280595 +k1,11593:24547711,14672135:280595 +k1,11593:25479734,14672135:280595 +k1,11593:26531032,14672135:280595 +k1,11593:28771153,14672135:280595 +k1,11593:29583245,14672135:280595 +k1,11593:30515268,14672135:280595 +k1,11593:31812326,14672135:280595 +k1,11593:32583029,14672135:0 +) +(1,11594:6630773,15537215:25952256,505283,134348 +k1,11593:8820658,15537215:230359 +k1,11593:10749055,15537215:230359 +k1,11593:11847767,15537215:230360 +k1,11593:13553341,15537215:230359 +k1,11593:16567669,15537215:230359 +k1,11593:17586426,15537215:230359 +k1,11593:19554800,15537215:230359 +k1,11593:20471321,15537215:230359 +k1,11593:21057541,15537215:230360 +k1,11593:24262579,15537215:230359 +k1,11593:26532418,15537215:230359 +k1,11593:27959464,15537215:230359 +k1,11593:32583029,15537215:0 +) +(1,11594:6630773,16402295:25952256,513147,122846 +g1,11593:9525498,16402295 +g1,11593:10256224,16402295 +(1,11593:10256224,16402295:0,452978,122846 +r1,11641:12021337,16402295:1765113,575824,122846 +k1,11593:10256224,16402295:-1765113 +) +(1,11593:10256224,16402295:1765113,452978,122846 +k1,11593:10256224,16402295:3277 +h1,11593:12018060,16402295:0,411205,112570 +) +k1,11594:32583029,16402295:20509264 +g1,11594:32583029,16402295 +) +v1,11596:6630773,17087150:0,393216,0 +(1,11609:6630773,19842584:25952256,3148650,196608 +g1,11609:6630773,19842584 +g1,11609:6630773,19842584 +g1,11609:6434165,19842584 +(1,11609:6434165,19842584:0,3148650,196608 +r1,11641:32779637,19842584:26345472,3345258,196608 +k1,11609:6434165,19842584:-26345472 +) +(1,11609:6434165,19842584:26345472,3148650,196608 +[1,11609:6630773,19842584:25952256,2952042,0 +(1,11598:6630773,17314981:25952256,424439,112852 +(1,11597:6630773,17314981:0,0,0 +g1,11597:6630773,17314981 +g1,11597:6630773,17314981 +g1,11597:6303093,17314981 +(1,11597:6303093,17314981:0,0,0 +) +g1,11597:6630773,17314981 +) +k1,11598:6630773,17314981:0 +h1,11598:9286405,17314981:0,0,0 +k1,11598:32583029,17314981:23296624 +g1,11598:32583029,17314981 +) +(1,11602:6630773,18130908:25952256,424439,79822 +(1,11600:6630773,18130908:0,0,0 +g1,11600:6630773,18130908 +g1,11600:6630773,18130908 +g1,11600:6303093,18130908 +(1,11600:6303093,18130908:0,0,0 +) +g1,11600:6630773,18130908 +) +g1,11602:7626635,18130908 +g1,11602:8954451,18130908 +h1,11602:10282267,18130908:0,0,0 +k1,11602:32583029,18130908:22300762 +g1,11602:32583029,18130908 +) +(1,11604:6630773,18946835:25952256,424439,112852 +(1,11603:6630773,18946835:0,0,0 +g1,11603:6630773,18946835 +g1,11603:6630773,18946835 +g1,11603:6303093,18946835 +(1,11603:6303093,18946835:0,0,0 +) +g1,11603:6630773,18946835 +) +k1,11604:6630773,18946835:0 +h1,11604:9286405,18946835:0,0,0 +k1,11604:32583029,18946835:23296624 +g1,11604:32583029,18946835 +) +(1,11608:6630773,19762762:25952256,424439,79822 +(1,11606:6630773,19762762:0,0,0 +g1,11606:6630773,19762762 +g1,11606:6630773,19762762 +g1,11606:6303093,19762762 +(1,11606:6303093,19762762:0,0,0 +) +g1,11606:6630773,19762762 +) +g1,11608:7626635,19762762 +g1,11608:8954451,19762762 +h1,11608:10282267,19762762:0,0,0 +k1,11608:32583029,19762762:22300762 +g1,11608:32583029,19762762 +) +] +) +g1,11609:32583029,19842584 +g1,11609:6630773,19842584 +g1,11609:6630773,19842584 +g1,11609:32583029,19842584 +g1,11609:32583029,19842584 +) +h1,11609:6630773,20039192:0,0,0 +(1,11613:6630773,20904272:25952256,513147,134348 +h1,11612:6630773,20904272:983040,0,0 +k1,11612:8276634,20904272:185064 +k1,11612:9330049,20904272:185063 +k1,11612:10990328,20904272:185064 +k1,11612:13959360,20904272:185063 +k1,11612:14500284,20904272:185064 +k1,11612:17660027,20904272:185064 +k1,11612:19822967,20904272:185063 +k1,11612:23370028,20904272:185064 +k1,11612:25514618,20904272:185064 +k1,11612:27767997,20904272:185063 +k1,11612:29144506,20904272:185064 +k1,11612:30197921,20904272:185063 +k1,11612:31931601,20904272:185064 +k1,11612:32583029,20904272:0 +) +(1,11613:6630773,21769352:25952256,513147,134348 +k1,11612:8788268,21769352:228115 +k1,11612:9372242,21769352:228114 +k1,11612:10593883,21769352:228115 +k1,11612:14183995,21769352:228115 +k1,11612:16108836,21769352:228114 +k1,11612:18626779,21769352:228115 +k1,11612:19723246,21769352:228115 +k1,11612:21055643,21769352:228115 +k1,11612:22376242,21769352:228114 +k1,11612:25299853,21769352:228115 +(1,11612:25299853,21769352:0,452978,122846 +r1,11641:27416678,21769352:2116825,575824,122846 +k1,11612:25299853,21769352:-2116825 +) +(1,11612:25299853,21769352:2116825,452978,122846 +k1,11612:25299853,21769352:3277 +h1,11612:27413401,21769352:0,411205,112570 +) +k1,11612:27818463,21769352:228115 +k1,11612:28674412,21769352:228114 +k1,11612:29921612,21769352:228115 +k1,11612:32583029,21769352:0 +) +(1,11613:6630773,22634432:25952256,513147,134348 +k1,11612:8681662,22634432:182458 +k1,11612:9732473,22634432:182459 +k1,11612:11007416,22634432:182458 +k1,11612:13885371,22634432:182459 +(1,11612:13885371,22634432:0,452978,115847 +r1,11641:15298772,22634432:1413401,568825,115847 +k1,11612:13885371,22634432:-1413401 +) +(1,11612:13885371,22634432:1413401,452978,115847 +k1,11612:13885371,22634432:3277 +h1,11612:15295495,22634432:0,411205,112570 +) +k1,11612:15481230,22634432:182458 +k1,11612:16315116,22634432:182458 +k1,11612:18521327,22634432:182459 +k1,11612:19059645,22634432:182458 +k1,11612:22216782,22634432:182458 +k1,11612:24377118,22634432:182459 +k1,11612:25218868,22634432:182458 +k1,11612:27360853,22634432:182459 +k1,11612:29611627,22634432:182458 +k1,11612:32583029,22634432:0 +) +(1,11613:6630773,23499512:25952256,513147,134348 +g1,11612:7185862,23499512 +g1,11612:9782398,23499512 +g1,11612:12322573,23499512 +g1,11612:13713247,23499512 +g1,11612:15346404,23499512 +g1,11612:17621814,23499512 +g1,11612:18587159,23499512 +g1,11612:20483115,23499512 +g1,11612:22972172,23499512 +g1,11612:24438867,23499512 +g1,11612:24993956,23499512 +k1,11613:32583029,23499512:6543119 +g1,11613:32583029,23499512 +) +v1,11615:6630773,24184367:0,393216,0 +(1,11629:6630773,30134962:25952256,6343811,196608 +g1,11629:6630773,30134962 +g1,11629:6630773,30134962 +g1,11629:6434165,30134962 +(1,11629:6434165,30134962:0,6343811,196608 +r1,11641:32779637,30134962:26345472,6540419,196608 +k1,11629:6434165,30134962:-26345472 +) +(1,11629:6434165,30134962:26345472,6343811,196608 +[1,11629:6630773,30134962:25952256,6147203,0 +(1,11617:6630773,24418804:25952256,431045,112852 +(1,11616:6630773,24418804:0,0,0 +g1,11616:6630773,24418804 +g1,11616:6630773,24418804 +g1,11616:6303093,24418804 +(1,11616:6303093,24418804:0,0,0 +) +g1,11616:6630773,24418804 +) +g1,11617:9950312,24418804 +g1,11617:10946174,24418804 +g1,11617:14597668,24418804 +g1,11617:15261576,24418804 +h1,11617:19908931,24418804:0,0,0 +k1,11617:32583029,24418804:12674098 +g1,11617:32583029,24418804 +) +(1,11618:6630773,25103659:25952256,424439,112852 +h1,11618:6630773,25103659:0,0,0 +g1,11618:9286405,25103659 +g1,11618:10282267,25103659 +k1,11618:10282267,25103659:0 +h1,11618:15261576,25103659:0,0,0 +k1,11618:32583028,25103659:17321452 +g1,11618:32583028,25103659 +) +(1,11619:6630773,25788514:25952256,424439,112852 +h1,11619:6630773,25788514:0,0,0 +k1,11619:6630773,25788514:0 +h1,11619:10614220,25788514:0,0,0 +k1,11619:32583028,25788514:21968808 +g1,11619:32583028,25788514 +) +(1,11628:6630773,26604441:25952256,431045,9908 +(1,11621:6630773,26604441:0,0,0 +g1,11621:6630773,26604441 +g1,11621:6630773,26604441 +g1,11621:6303093,26604441 +(1,11621:6303093,26604441:0,0,0 +) +g1,11621:6630773,26604441 +) +g1,11628:7626635,26604441 +g1,11628:9286405,26604441 +g1,11628:10282267,26604441 +h1,11628:10614221,26604441:0,0,0 +k1,11628:32583029,26604441:21968808 +g1,11628:32583029,26604441 +) +(1,11628:6630773,27289296:25952256,431045,106246 +h1,11628:6630773,27289296:0,0,0 +g1,11628:7626635,27289296 +g1,11628:7958589,27289296 +g1,11628:8622497,27289296 +g1,11628:12937898,27289296 +g1,11628:14265714,27289296 +h1,11628:14597668,27289296:0,0,0 +k1,11628:32583028,27289296:17985360 +g1,11628:32583028,27289296 +) +(1,11628:6630773,27974151:25952256,431045,106246 +h1,11628:6630773,27974151:0,0,0 +g1,11628:7626635,27974151 +g1,11628:7958589,27974151 +g1,11628:8622497,27974151 +g1,11628:12937898,27974151 +g1,11628:14265714,27974151 +h1,11628:14597668,27974151:0,0,0 +k1,11628:32583028,27974151:17985360 +g1,11628:32583028,27974151 +) +(1,11628:6630773,28659006:25952256,431045,106246 +h1,11628:6630773,28659006:0,0,0 +g1,11628:7626635,28659006 +g1,11628:7958589,28659006 +g1,11628:8622497,28659006 +g1,11628:12937898,28659006 +g1,11628:14265714,28659006 +h1,11628:14597668,28659006:0,0,0 +k1,11628:32583028,28659006:17985360 +g1,11628:32583028,28659006 +) +(1,11628:6630773,29343861:25952256,431045,106246 +h1,11628:6630773,29343861:0,0,0 +g1,11628:7626635,29343861 +g1,11628:7958589,29343861 +g1,11628:8622497,29343861 +g1,11628:12937898,29343861 +g1,11628:14265714,29343861 +h1,11628:14929622,29343861:0,0,0 +k1,11628:32583030,29343861:17653408 +g1,11628:32583030,29343861 +) +(1,11628:6630773,30028716:25952256,431045,106246 +h1,11628:6630773,30028716:0,0,0 +g1,11628:7626635,30028716 +g1,11628:7958589,30028716 +g1,11628:8622497,30028716 +g1,11628:12937898,30028716 +g1,11628:14265714,30028716 +h1,11628:14929622,30028716:0,0,0 +k1,11628:32583030,30028716:17653408 +g1,11628:32583030,30028716 +) +] +) +g1,11629:32583029,30134962 +g1,11629:6630773,30134962 +g1,11629:6630773,30134962 +g1,11629:32583029,30134962 +g1,11629:32583029,30134962 +) +h1,11629:6630773,30331570:0,0,0 +v1,11633:6630773,31196650:0,393216,0 +(1,11634:6630773,34226671:25952256,3423237,0 +g1,11634:6630773,34226671 +g1,11634:6237557,34226671 +r1,11641:6368629,34226671:131072,3423237,0 +g1,11634:6567858,34226671 +g1,11634:6764466,34226671 +[1,11634:6764466,34226671:25818563,3423237,0 +(1,11634:6764466,31504948:25818563,701514,196608 +(1,11633:6764466,31504948:0,701514,196608 +r1,11641:8471973,31504948:1707507,898122,196608 +k1,11633:6764466,31504948:-1707507 +) +(1,11633:6764466,31504948:1707507,701514,196608 +) +k1,11633:8785284,31504948:313311 +k1,11633:10511502,31504948:327680 +k1,11633:12682760,31504948:313312 +k1,11633:13655363,31504948:313311 +k1,11633:16598634,31504948:313311 +k1,11633:18334732,31504948:313311 +k1,11633:19307336,31504948:313312 +k1,11633:22646444,31504948:313311 +(1,11633:22646444,31504948:0,452978,122846 +r1,11641:25466693,31504948:2820249,575824,122846 +k1,11633:22646444,31504948:-2820249 +) +(1,11633:22646444,31504948:2820249,452978,122846 +k1,11633:22646444,31504948:3277 +h1,11633:25463416,31504948:0,411205,112570 +) +k1,11633:25953674,31504948:313311 +(1,11633:25953674,31504948:0,452978,122846 +r1,11641:27718787,31504948:1765113,575824,122846 +k1,11633:25953674,31504948:-1765113 +) +(1,11633:25953674,31504948:1765113,452978,122846 +k1,11633:25953674,31504948:3277 +h1,11633:27715510,31504948:0,411205,112570 +) +k1,11633:28032099,31504948:313312 +k1,11633:29536855,31504948:313311 +(1,11633:29536855,31504948:0,452978,122846 +r1,11641:31653680,31504948:2116825,575824,122846 +k1,11633:29536855,31504948:-2116825 +) +(1,11633:29536855,31504948:2116825,452978,122846 +k1,11633:29536855,31504948:3277 +h1,11633:31650403,31504948:0,411205,112570 +) +k1,11633:31966991,31504948:313311 +k1,11633:32583029,31504948:0 +) +(1,11634:6764466,32370028:25818563,513147,126483 +k1,11633:9196647,32370028:270804 +k1,11633:10637924,32370028:270804 +k1,11633:12001214,32370028:270805 +k1,11633:12954903,32370028:270804 +k1,11633:14994524,32370028:270804 +k1,11633:16357813,32370028:270804 +k1,11633:17280046,32370028:270805 +k1,11633:19921287,32370028:270804 +k1,11633:21650922,32370028:270804 +k1,11633:23252107,32370028:270804 +k1,11633:24912274,32370028:270804 +k1,11633:26073058,32370028:270805 +k1,11633:27911483,32370028:270804 +k1,11633:29884257,32370028:270804 +k1,11633:32583029,32370028:0 +) +(1,11634:6764466,33235108:25818563,505283,126483 +k1,11633:8600691,33235108:166368 +k1,11633:9122919,33235108:166368 +k1,11633:11120362,33235108:166367 +k1,11633:11938158,33235108:166368 +k1,11633:15537957,33235108:166368 +k1,11633:17081236,33235108:166368 +k1,11633:18439048,33235108:166367 +k1,11633:21783912,33235108:166368 +k1,11633:23141725,33235108:166368 +k1,11633:24499538,33235108:166368 +k1,11633:26537614,33235108:166368 +k1,11633:27907222,33235108:166367 +k1,11633:29904666,33235108:166368 +k1,11633:31563944,33235108:166368 +k1,11633:32583029,33235108:0 +) +(1,11634:6764466,34100188:25818563,505283,126483 +g1,11633:8806567,34100188 +g1,11633:12046667,34100188 +g1,11633:13007424,34100188 +g1,11633:14225738,34100188 +g1,11633:16256043,34100188 +g1,11633:19114068,34100188 +g1,11633:20772128,34100188 +k1,11634:32583029,34100188:7733907 +g1,11634:32583029,34100188 +) +] +g1,11634:32583029,34226671 +) +h1,11634:6630773,34226671:0,0,0 +(1,11636:6630773,37057831:25952256,32768,229376 +(1,11636:6630773,37057831:0,32768,229376 +(1,11636:6630773,37057831:5505024,32768,229376 +r1,11641:12135797,37057831:5505024,262144,229376 +) +k1,11636:6630773,37057831:-5505024 +) +(1,11636:6630773,37057831:25952256,32768,0 +r1,11641:32583029,37057831:25952256,32768,0 +) +) +(1,11636:6630773,38689683:25952256,606339,151780 +(1,11636:6630773,38689683:2464678,582746,14155 +g1,11636:6630773,38689683 +g1,11636:9095451,38689683 +) +k1,11636:32583029,38689683:19951780 +g1,11636:32583029,38689683 +) +(1,11639:6630773,39947979:25952256,513147,126483 +k1,11638:10368666,39947979:265140 +k1,11638:11502158,39947979:265140 +k1,11638:13297563,39947979:265139 +k1,11638:14214131,39947979:265140 +k1,11638:16195004,39947979:265140 +k1,11638:17840988,39947979:265140 +k1,11638:19390634,39947979:265140 +k1,11638:22361099,39947979:265139 +k1,11638:24122426,39947979:265140 +k1,11638:24919063,39947979:265140 +k1,11638:28017324,39947979:265140 +k1,11638:29749159,39947979:265139 +k1,11638:30480260,39947979:265140 +k1,11638:31764485,39947979:265140 +k1,11639:32583029,39947979:0 +) +(1,11639:6630773,40813059:25952256,513147,126483 +k1,11638:9265590,40813059:271589 +k1,11638:10196471,40813059:271589 +k1,11638:10823920,40813059:271589 +k1,11638:12926585,40813059:271589 +k1,11638:13881059,40813059:271589 +k1,11638:16848144,40813059:271589 +k1,11638:17651230,40813059:271589 +k1,11638:20386973,40813059:271589 +k1,11638:21420090,40813059:271589 +k1,11638:22710763,40813059:271588 +k1,11638:24363196,40813059:271589 +k1,11638:25317670,40813059:271589 +k1,11638:26275421,40813059:271589 +k1,11638:26902870,40813059:271589 +k1,11638:29017331,40813059:271589 +k1,11638:29948212,40813059:271589 +k1,11638:30990504,40813059:271589 +k1,11638:32583029,40813059:0 +) +(1,11639:6630773,41678139:25952256,513147,126483 +k1,11638:10060273,41678139:223479 +k1,11638:10771317,41678139:223456 +k1,11638:13129304,41678139:223479 +k1,11638:16014200,41678139:223479 +k1,11638:16769177,41678139:223480 +k1,11638:17348516,41678139:223479 +k1,11638:19403072,41678139:223480 +k1,11638:20911057,41678139:223479 +k1,11638:24874021,41678139:223480 +k1,11638:26362345,41678139:223479 +k1,11638:26941685,41678139:223480 +k1,11638:28509963,41678139:223479 +k1,11638:30654303,41678139:223480 +k1,11638:31563944,41678139:223479 +k1,11638:32583029,41678139:0 +) +(1,11639:6630773,42543219:25952256,513147,134348 +k1,11638:9416325,42543219:225060 +k1,11638:12533489,42543219:225060 +k1,11638:13441434,42543219:225060 +k1,11638:15089281,42543219:225060 +k1,11638:15670201,42543219:225060 +k1,11638:16878301,42543219:225060 +k1,11638:17789522,42543219:225059 +k1,11638:21347743,42543219:225060 +k1,11638:24093973,42543219:225060 +k1,11638:27108901,42543219:225060 +(1,11638:27108901,42543219:0,452978,115847 +r1,11641:30280861,42543219:3171960,568825,115847 +k1,11638:27108901,42543219:-3171960 +) +(1,11638:27108901,42543219:3171960,452978,115847 +k1,11638:27108901,42543219:3277 +h1,11638:30277584,42543219:0,411205,112570 +) +k1,11638:30505921,42543219:225060 +k1,11638:31835263,42543219:225060 +k1,11638:32583029,42543219:0 +) +(1,11639:6630773,43408299:25952256,505283,126483 +k1,11638:8325393,43408299:181394 +k1,11638:9158215,43408299:181394 +k1,11638:11412513,43408299:181394 +k1,11638:12878414,43408299:181395 +k1,11638:13415668,43408299:181394 +k1,11638:14977906,43408299:181394 +k1,11638:17920332,43408299:181394 +k1,11638:21541711,43408299:181394 +k1,11638:23583672,43408299:181394 +k1,11638:24416494,43408299:181394 +k1,11638:25345655,43408299:181395 +k1,11638:28360170,43408299:181394 +k1,11638:30239602,43408299:181394 +k1,11638:31440081,43408299:181394 +k1,11639:32583029,43408299:0 +) +(1,11639:6630773,44273379:25952256,513147,126483 +k1,11638:8166834,44273379:228618 +k1,11638:11264619,44273379:228619 +k1,11638:12176122,44273379:228618 +k1,11638:12760601,44273379:228619 +k1,11638:14993965,44273379:228618 +k1,11638:16897028,44273379:228618 +k1,11638:19915515,44273379:228619 +(1,11638:19915515,44273379:0,452978,115847 +r1,11641:23087475,44273379:3171960,568825,115847 +k1,11638:19915515,44273379:-3171960 +) +(1,11638:19915515,44273379:3171960,452978,115847 +k1,11638:19915515,44273379:3277 +h1,11638:23084198,44273379:0,411205,112570 +) +k1,11638:23316093,44273379:228618 +k1,11638:24648993,44273379:228618 +k1,11638:26163428,44273379:228619 +k1,11638:28107779,44273379:228618 +k1,11638:29832585,44273379:228619 +k1,11638:31931601,44273379:228618 +k1,11638:32583029,44273379:0 +) +] +(1,11641:32583029,45706769:0,0,0 +g1,11641:32583029,45706769 +) +) +] +(1,11641:6630773,47279633:25952256,0,0 +h1,11641:6630773,47279633:25952256,0,0 +) +] +(1,11641:4262630,4025873:0,0,0 +[1,11641:-473656,4025873:0,0,0 +(1,11641:-473656,-710413:0,0,0 +(1,11641:-473656,-710413:0,0,0 +g1,11641:-473656,-710413 +) +g1,11641:-473656,-710413 ) ] -!13237 +) +] +!25755 }183 -!12 +Input:1948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {184 -[1,11695:4262630,47279633:28320399,43253760,11795 -(1,11695:4262630,4025873:0,0,0 -[1,11695:-473656,4025873:0,0,0 -(1,11695:-473656,-710413:0,0,0 -(1,11695:-473656,-644877:0,0,0 -k1,11695:-473656,-644877:-65536 +[1,11674:4262630,47279633:28320399,43253760,0 +(1,11674:4262630,4025873:0,0,0 +[1,11674:-473656,4025873:0,0,0 +(1,11674:-473656,-710413:0,0,0 +(1,11674:-473656,-644877:0,0,0 +k1,11674:-473656,-644877:-65536 ) -(1,11695:-473656,4736287:0,0,0 -k1,11695:-473656,4736287:5209943 +(1,11674:-473656,4736287:0,0,0 +k1,11674:-473656,4736287:5209943 ) -g1,11695:-473656,-710413 +g1,11674:-473656,-710413 ) ] ) -[1,11695:6630773,47279633:25952256,43253760,11795 -[1,11695:6630773,4812305:25952256,786432,0 -(1,11695:6630773,4812305:25952256,0,0 -(1,11695:6630773,4812305:25952256,0,0 -g1,11695:3078558,4812305 -[1,11695:3078558,4812305:0,0,0 -(1,11695:3078558,2439708:0,1703936,0 -k1,11695:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,11695:2537886,2439708:1179648,16384,0 +[1,11674:6630773,47279633:25952256,43253760,0 +[1,11674:6630773,4812305:25952256,786432,0 +(1,11674:6630773,4812305:25952256,505283,134348 +(1,11674:6630773,4812305:25952256,505283,134348 +g1,11674:3078558,4812305 +[1,11674:3078558,4812305:0,0,0 +(1,11674:3078558,2439708:0,1703936,0 +k1,11674:1358238,2439708:-1720320 +(1,9182:1358238,2439708:1720320,1703936,0 +(1,9182:1358238,2439708:1179648,16384,0 +r1,11674:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,11695:3078558,1915420:16384,1179648,0 +g1,9182:3062174,2439708 +(1,9182:3062174,2439708:16384,1703936,0 +[1,9182:3062174,2439708:25952256,1703936,0 +(1,9182:3062174,1915420:25952256,1179648,0 +(1,9182:3062174,1915420:16384,1179648,0 +r1,11674:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,9182:29014430,1915420:25935872 +g1,9182:29014430,1915420 ) ] ) ) ) ] -[1,11695:3078558,4812305:0,0,0 -(1,11695:3078558,2439708:0,1703936,0 -g1,11695:29030814,2439708 -g1,11695:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,11695:36151628,1915420:16384,1179648,0 +[1,11674:3078558,4812305:0,0,0 +(1,11674:3078558,2439708:0,1703936,0 +g1,11674:29030814,2439708 +g1,11674:36135244,2439708 +(1,9182:36135244,2439708:1720320,1703936,0 +(1,9182:36135244,2439708:16384,1703936,0 +[1,9182:36135244,2439708:25952256,1703936,0 +(1,9182:36135244,1915420:25952256,1179648,0 +(1,9182:36135244,1915420:16384,1179648,0 +r1,11674:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,9182:62087500,1915420:25935872 +g1,9182:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,11695:37855564,2439708:1179648,16384,0 +g1,9182:36675916,2439708 +(1,9182:36675916,2439708:1179648,16384,0 +r1,11674:37855564,2439708:1179648,16384,0 ) ) -k1,11695:3078556,2439708:-34777008 +k1,11674:3078556,2439708:-34777008 +) +] +[1,11674:3078558,4812305:0,0,0 +(1,11674:3078558,49800853:0,16384,2228224 +k1,11674:1358238,49800853:-1720320 +(1,9182:1358238,49800853:1720320,16384,2228224 +(1,9182:1358238,49800853:1179648,16384,0 +r1,11674:2537886,49800853:1179648,16384,0 +) +g1,9182:3062174,49800853 +(1,9182:3062174,52029077:16384,1703936,0 +[1,9182:3062174,52029077:25952256,1703936,0 +(1,9182:3062174,51504789:25952256,1179648,0 +(1,9182:3062174,51504789:16384,1179648,0 +r1,11674:3078558,51504789:16384,1179648,0 +) +k1,9182:29014430,51504789:25935872 +g1,9182:29014430,51504789 ) ] -[1,11695:3078558,4812305:0,0,0 -(1,11695:3078558,49800853:0,16384,2228224 -k1,11695:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,11695:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,11695:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 ) ] +[1,11674:3078558,4812305:0,0,0 +(1,11674:3078558,49800853:0,16384,2228224 +g1,11674:29030814,49800853 +g1,11674:36135244,49800853 +(1,9182:36135244,49800853:1720320,16384,2228224 +(1,9182:36135244,52029077:16384,1703936,0 +[1,9182:36135244,52029077:25952256,1703936,0 +(1,9182:36135244,51504789:25952256,1179648,0 +(1,9182:36135244,51504789:16384,1179648,0 +r1,11674:36151628,51504789:16384,1179648,0 +) +k1,9182:62087500,51504789:25935872 +g1,9182:62087500,51504789 ) +] ) +g1,9182:36675916,49800853 +(1,9182:36675916,49800853:1179648,16384,0 +r1,11674:37855564,49800853:1179648,16384,0 +) +) +k1,11674:3078556,49800853:-34777008 +) +] +g1,11674:6630773,4812305 +k1,11674:21678495,4812305:13852345 +g1,11674:23301166,4812305 +g1,11674:24088253,4812305 +g1,11674:28572226,4812305 +g1,11674:29981905,4812305 +) +) +] +[1,11674:6630773,45706769:25952256,40108032,0 +(1,11674:6630773,45706769:25952256,40108032,0 +(1,11674:6630773,45706769:0,0,0 +g1,11674:6630773,45706769 +) +[1,11674:6630773,45706769:25952256,40108032,0 +(1,11639:6630773,6254097:25952256,513147,126483 +k1,11638:8227845,6254097:184771 +k1,11638:9098777,6254097:184770 +k1,11638:9741645,6254097:184771 +k1,11638:11764700,6254097:184770 +k1,11638:14542075,6254097:184771 +k1,11638:15918290,6254097:184770 +k1,11638:18808387,6254097:184771 +k1,11638:20377277,6254097:184770 +k1,11638:21213476,6254097:184771 +k1,11638:22849869,6254097:184771 +k1,11638:24736609,6254097:184770 +k1,11638:25537418,6254097:184771 +k1,11638:26741273,6254097:184770 +k1,11638:28502840,6254097:184771 +k1,11638:29346902,6254097:184770 +k1,11638:29887533,6254097:184771 +k1,11638:32583029,6254097:0 +) +(1,11639:6630773,7119177:25952256,513147,134348 +g1,11638:7512887,7119177 +g1,11638:8328154,7119177 +g1,11638:9546468,7119177 +g1,11638:11729472,7119177 +g1,11638:12587993,7119177 +g1,11638:13143082,7119177 +k1,11639:32583030,7119177:17556444 +g1,11639:32583030,7119177 +) +v1,11641:6630773,7804032:0,393216,0 +(1,11652:6630773,10468030:25952256,3057214,196608 +g1,11652:6630773,10468030 +g1,11652:6630773,10468030 +g1,11652:6434165,10468030 +(1,11652:6434165,10468030:0,3057214,196608 +r1,11674:32779637,10468030:26345472,3253822,196608 +k1,11652:6434165,10468030:-26345472 +) +(1,11652:6434165,10468030:26345472,3057214,196608 +[1,11652:6630773,10468030:25952256,2860606,0 +(1,11643:6630773,8038469:25952256,431045,106246 +(1,11642:6630773,8038469:0,0,0 +g1,11642:6630773,8038469 +g1,11642:6630773,8038469 +g1,11642:6303093,8038469 +(1,11642:6303093,8038469:0,0,0 +) +g1,11642:6630773,8038469 +) +k1,11643:6630773,8038469:0 +h1,11643:14597667,8038469:0,0,0 +k1,11643:32583029,8038469:17985362 +g1,11643:32583029,8038469 +) +(1,11647:6630773,8854396:25952256,424439,79822 +(1,11645:6630773,8854396:0,0,0 +g1,11645:6630773,8854396 +g1,11645:6630773,8854396 +g1,11645:6303093,8854396 +(1,11645:6303093,8854396:0,0,0 +) +g1,11645:6630773,8854396 +) +g1,11647:7626635,8854396 +g1,11647:8954451,8854396 +h1,11647:10282267,8854396:0,0,0 +k1,11647:32583029,8854396:22300762 +g1,11647:32583029,8854396 +) +(1,11649:6630773,9670323:25952256,431045,106246 +(1,11648:6630773,9670323:0,0,0 +g1,11648:6630773,9670323 +g1,11648:6630773,9670323 +g1,11648:6303093,9670323 +(1,11648:6303093,9670323:0,0,0 +) +g1,11648:6630773,9670323 +) +k1,11649:6630773,9670323:0 +k1,11649:6630773,9670323:0 +h1,11649:17585253,9670323:0,0,0 +k1,11649:32583029,9670323:14997776 +g1,11649:32583029,9670323 +) +(1,11650:6630773,10355178:25952256,431045,112852 +h1,11650:6630773,10355178:0,0,0 +g1,11650:7294681,10355178 +g1,11650:8954451,10355178 +g1,11650:10614221,10355178 +g1,11650:12605945,10355178 +g1,11650:13933761,10355178 +g1,11650:14929623,10355178 +g1,11650:16257439,10355178 +g1,11650:17917209,10355178 +g1,11650:19576979,10355178 +k1,11650:19576979,10355178:1652 +h1,11650:20906447,10355178:0,0,0 +k1,11650:32583029,10355178:11676582 +g1,11650:32583029,10355178 +) +] +) +g1,11652:32583029,10468030 +g1,11652:6630773,10468030 +g1,11652:6630773,10468030 +g1,11652:32583029,10468030 +g1,11652:32583029,10468030 +) +h1,11652:6630773,10664638:0,0,0 +(1,11656:6630773,11529718:25952256,513147,134348 +h1,11655:6630773,11529718:983040,0,0 +k1,11655:10547143,11529718:143462 +(1,11655:10547143,11529718:0,452978,115847 +r1,11674:13719103,11529718:3171960,568825,115847 +k1,11655:10547143,11529718:-3171960 +) +(1,11655:10547143,11529718:3171960,452978,115847 +k1,11655:10547143,11529718:3277 +h1,11655:13715826,11529718:0,411205,112570 +) +k1,11655:13862566,11529718:143463 +k1,11655:16657615,11529718:143462 +k1,11655:17820163,11529718:143463 +k1,11655:21489462,11529718:143462 +k1,11655:22292217,11529718:143463 +k1,11655:23454764,11529718:143462 +k1,11655:25742565,11529718:143463 +k1,11655:28796481,11529718:143462 +k1,11655:30131389,11529718:143463 +k1,11655:30890889,11529718:143462 +k1,11655:32583029,11529718:0 +) +(1,11656:6630773,12394798:25952256,513147,126483 +k1,11655:9113276,12394798:288358 +k1,11655:11099017,12394798:288359 +k1,11655:12544085,12394798:288358 +k1,11655:14169378,12394798:288359 +k1,11655:16006352,12394798:288358 +k1,11655:16946139,12394798:288359 +k1,11655:19363762,12394798:288358 +k1,11655:21291176,12394798:288359 +k1,11655:22192296,12394798:288358 +k1,11655:23499739,12394798:288358 +k1,11655:24971023,12394798:288359 +k1,11655:25918673,12394798:288358 +k1,11655:26562892,12394798:288359 +k1,11655:28855996,12394798:288358 +k1,11655:30097904,12394798:288359 +k1,11655:31490544,12394798:288358 +k1,11656:32583029,12394798:0 +) +(1,11656:6630773,13259878:25952256,505283,134348 +(1,11655:6630773,13259878:0,452978,115847 +r1,11674:9451022,13259878:2820249,568825,115847 +k1,11655:6630773,13259878:-2820249 +) +(1,11655:6630773,13259878:2820249,452978,115847 +k1,11655:6630773,13259878:3277 +h1,11655:9447745,13259878:0,411205,112570 +) +k1,11655:9702240,13259878:251218 +k1,11655:12721700,13259878:251219 +k1,11655:13659080,13259878:251218 +k1,11655:15304249,13259878:251218 +k1,11655:18297494,13259878:251219 +(1,11655:18297494,13259878:0,459977,115847 +r1,11674:21821166,13259878:3523672,575824,115847 +k1,11655:18297494,13259878:-3523672 +) +(1,11655:18297494,13259878:3523672,459977,115847 +k1,11655:18297494,13259878:3277 +h1,11655:21817889,13259878:0,411205,112570 +) +k1,11655:22072384,13259878:251218 +k1,11655:24613430,13259878:251218 +k1,11655:26096726,13259878:251219 +k1,11655:27846097,13259878:251218 +h1,11655:29041474,13259878:0,0,0 +k1,11655:29673456,13259878:251218 +k1,11655:30742564,13259878:251219 +k1,11655:31764485,13259878:251218 +k1,11656:32583029,13259878:0 +) +(1,11656:6630773,14124958:25952256,505283,134348 +k1,11655:8972324,14124958:218840 +k1,11655:10059516,14124958:218840 +k1,11655:12407621,14124958:218840 +k1,11655:13645545,14124958:218839 +k1,11655:16774839,14124958:218840 +k1,11655:18506905,14124958:218840 +k1,11655:19341783,14124958:218840 +k1,11655:21839310,14124958:218840 +h1,11655:23208357,14124958:0,0,0 +k1,11655:23600867,14124958:218840 +k1,11655:24289599,14124958:218839 +k1,11655:25039936,14124958:218840 +k1,11655:28468074,14124958:218840 +k1,11655:29338342,14124958:218840 +k1,11655:32583029,14124958:0 +) +(1,11656:6630773,14990038:25952256,505283,126483 +k1,11655:8132606,14990038:217327 +k1,11655:9369019,14990038:217328 +k1,11655:11325672,14990038:217327 +k1,11655:12159037,14990038:217327 +k1,11655:14261836,14990038:217328 +k1,11655:15859351,14990038:217327 +k1,11655:17180960,14990038:217327 +k1,11655:18146053,14990038:217327 +k1,11655:21260728,14990038:217328 +k1,11655:22009552,14990038:217327 +k1,11655:25891652,14990038:217327 +k1,11655:26870508,14990038:217328 +k1,11655:28596474,14990038:217327 +k1,11656:32583029,14990038:0 +) +(1,11656:6630773,15855118:25952256,473825,7863 +k1,11656:32583029,15855118:23925228 +g1,11656:32583029,15855118 +) +v1,11658:6630773,16539973:0,393216,0 +(1,11664:6630773,18250366:25952256,2103609,196608 +g1,11664:6630773,18250366 +g1,11664:6630773,18250366 +g1,11664:6434165,18250366 +(1,11664:6434165,18250366:0,2103609,196608 +r1,11674:32779637,18250366:26345472,2300217,196608 +k1,11664:6434165,18250366:-26345472 +) +(1,11664:6434165,18250366:26345472,2103609,196608 +[1,11664:6630773,18250366:25952256,1907001,0 +(1,11660:6630773,16767804:25952256,424439,112852 +(1,11659:6630773,16767804:0,0,0 +g1,11659:6630773,16767804 +g1,11659:6630773,16767804 +g1,11659:6303093,16767804 +(1,11659:6303093,16767804:0,0,0 +) +g1,11659:6630773,16767804 +) +k1,11660:6630773,16767804:0 +h1,11660:14929621,16767804:0,0,0 +k1,11660:32583029,16767804:17653408 +g1,11660:32583029,16767804 +) +(1,11661:6630773,17452659:25952256,424439,112852 +h1,11661:6630773,17452659:0,0,0 +k1,11661:6630773,17452659:0 +h1,11661:14265713,17452659:0,0,0 +k1,11661:32583029,17452659:18317316 +g1,11661:32583029,17452659 +) +(1,11662:6630773,18137514:25952256,424439,112852 +h1,11662:6630773,18137514:0,0,0 +k1,11662:6630773,18137514:0 +h1,11662:13933760,18137514:0,0,0 +k1,11662:32583028,18137514:18649268 +g1,11662:32583028,18137514 +) +] +) +g1,11664:32583029,18250366 +g1,11664:6630773,18250366 +g1,11664:6630773,18250366 +g1,11664:32583029,18250366 +g1,11664:32583029,18250366 +) +h1,11664:6630773,18446974:0,0,0 +(1,11667:6630773,21278134:25952256,32768,229376 +(1,11667:6630773,21278134:0,32768,229376 +(1,11667:6630773,21278134:5505024,32768,229376 +r1,11674:12135797,21278134:5505024,262144,229376 +) +k1,11667:6630773,21278134:-5505024 +) +(1,11667:6630773,21278134:25952256,32768,0 +r1,11674:32583029,21278134:25952256,32768,0 +) +) +(1,11667:6630773,22909986:25952256,606339,161218 +(1,11667:6630773,22909986:2464678,575668,14155 +g1,11667:6630773,22909986 +g1,11667:9095451,22909986 +) +g1,11667:12303307,22909986 +k1,11667:32583029,22909986:17080516 +g1,11667:32583029,22909986 +) +(1,11669:6630773,24168282:25952256,513147,134348 +k1,11668:7835329,24168282:162534 +k1,11668:10273274,24168282:162535 +k1,11668:13168659,24168282:162534 +k1,11668:14140564,24168282:162535 +k1,11668:15322183,24168282:162534 +k1,11668:17859743,24168282:162535 +k1,11668:18689433,24168282:162534 +k1,11668:19266774,24168282:162498 +k1,11668:22558652,24168282:162534 +k1,11668:23337225,24168282:162535 +k1,11668:24518844,24168282:162534 +k1,11668:27025602,24168282:162535 +k1,11668:29779430,24168282:162534 +k1,11668:30154920,24168282:162498 +k1,11668:32583029,24168282:0 +) +(1,11669:6630773,25033362:25952256,513147,134348 +k1,11668:7813937,25033362:164079 +k1,11668:9890356,25033362:164078 +k1,11668:11241947,25033362:164079 +k1,11668:12436251,25033362:164078 +k1,11668:13216368,25033362:164079 +k1,11668:13830024,25033362:164079 +k1,11668:18558204,25033362:164253 +k1,11668:19211837,25033362:164079 +k1,11668:20898317,25033362:164079 +k1,11668:21678433,25033362:164078 +k1,11668:24872897,25033362:164079 +k1,11668:27818978,25033362:164078 +k1,11668:30114288,25033362:164079 +k1,11668:32583029,25033362:0 +) +(1,11669:6630773,25898442:25952256,505283,95026 +g1,11668:8630931,25898442 +g1,11668:10021605,25898442 +g1,11668:13343625,25898442 +g1,11668:13992431,25898442 +g1,11668:17322970,25898442 +k1,11669:32583029,25898442:13406701 +g1,11669:32583029,25898442 +) +] +(1,11674:32583029,45706769:0,0,0 +g1,11674:32583029,45706769 +) +) +] +(1,11674:6630773,47279633:25952256,0,0 +h1,11674:6630773,47279633:25952256,0,0 +) +] +(1,11674:4262630,4025873:0,0,0 +[1,11674:-473656,4025873:0,0,0 +(1,11674:-473656,-710413:0,0,0 +(1,11674:-473656,-710413:0,0,0 +g1,11674:-473656,-710413 +) +g1,11674:-473656,-710413 +) +] ) ] -[1,11695:3078558,4812305:0,0,0 -(1,11695:3078558,49800853:0,16384,2228224 -g1,11695:29030814,49800853 -g1,11695:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,11695:36151628,51504789:16384,1179648,0 +!13238 +}184 +!12 +{185 +[1,11694:4262630,47279633:28320399,43253760,11795 +(1,11694:4262630,4025873:0,0,0 +[1,11694:-473656,4025873:0,0,0 +(1,11694:-473656,-710413:0,0,0 +(1,11694:-473656,-644877:0,0,0 +k1,11694:-473656,-644877:-65536 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +(1,11694:-473656,4736287:0,0,0 +k1,11694:-473656,4736287:5209943 +) +g1,11694:-473656,-710413 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,11695:37855564,49800853:1179648,16384,0 +[1,11694:6630773,47279633:25952256,43253760,11795 +[1,11694:6630773,4812305:25952256,786432,0 +(1,11694:6630773,4812305:25952256,0,0 +(1,11694:6630773,4812305:25952256,0,0 +g1,11694:3078558,4812305 +[1,11694:3078558,4812305:0,0,0 +(1,11694:3078558,2439708:0,1703936,0 +k1,11694:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,11694:2537886,2439708:1179648,16384,0 +) +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,11694:3078558,1915420:16384,1179648,0 +) +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 +) +] ) ) -k1,11695:3078556,49800853:-34777008 ) ] -g1,11695:6630773,4812305 +[1,11694:3078558,4812305:0,0,0 +(1,11694:3078558,2439708:0,1703936,0 +g1,11694:29030814,2439708 +g1,11694:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,11694:36151628,1915420:16384,1179648,0 ) +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] -[1,11695:6630773,45706769:25952256,40108032,0 -(1,11695:6630773,45706769:25952256,40108032,0 -(1,11695:6630773,45706769:0,0,0 -g1,11695:6630773,45706769 ) -[1,11695:6630773,45706769:25952256,40108032,0 -[1,11675:6630773,11797421:25952256,6198684,0 -(1,11675:6630773,6633157:25952256,1165492,28311 -h1,11675:6630773,6633157:0,0,0 -k1,11675:20096848,6633157:12486181 -k1,11675:32583029,6633157:12486181 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,11694:37855564,2439708:1179648,16384,0 ) -(1,11675:6630773,7380277:25952256,32768,229376 -(1,11675:6630773,7380277:0,32768,229376 -(1,11675:6630773,7380277:5505024,32768,229376 -r1,11695:12135797,7380277:5505024,262144,229376 ) -k1,11675:6630773,7380277:-5505024 +k1,11694:3078556,2439708:-34777008 ) -(1,11675:6630773,7380277:25952256,32768,0 -r1,11695:32583029,7380277:25952256,32768,0 +] +[1,11694:3078558,4812305:0,0,0 +(1,11694:3078558,49800853:0,16384,2228224 +k1,11694:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,11694:2537886,49800853:1179648,16384,0 ) +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,11694:3078558,51504789:16384,1179648,0 ) -(1,11675:6630773,9215293:25952256,909509,241827 -h1,11675:6630773,9215293:0,0,0 -g1,11675:9551582,9215293 -g1,11675:10968340,9215293 -g1,11675:15438026,9215293 -g1,11675:18256205,9215293 -k1,11675:27621430,9215293:4961599 -k1,11675:32583029,9215293:4961599 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) -(1,11675:6630773,9962413:25952256,32768,0 -(1,11675:6630773,9962413:5505024,32768,0 -r1,11695:12135797,9962413:5505024,32768,0 +] ) -k1,11675:22359413,9962413:10223616 -k1,11675:32583029,9962413:10223616 -) -] -(1,11677:6630773,14713778:25952256,131072,0 -r1,11695:32583029,14713778:25952256,131072,0 -g1,11677:32583029,14713778 -g1,11677:32583029,14713778 -) -(1,11679:6630773,16057271:25952256,513147,134348 -k1,11679:8596853,16057271:1966080 -k1,11678:11936713,16057271:141703 -k1,11678:14411498,16057271:141703 -k1,11678:15084699,16057271:141704 -k1,11678:15582262,16057271:141703 -k1,11678:18032143,16057271:141703 -k1,11678:18833138,16057271:141703 -k1,11678:25791242,16057271:141704 -k1,11678:26952030,16057271:141703 -k1,11678:28629242,16057271:141703 -k1,11678:32583029,16057271:1966080 -) -(1,11679:6630773,16922351:25952256,513147,134348 -k1,11679:8596853,16922351:1966080 -k1,11678:9742013,16922351:197509 -k1,11678:10295382,16922351:197509 -k1,11678:13169381,16922351:197509 -k1,11678:14558335,16922351:197509 -k1,11678:17402843,16922351:197509 -k1,11678:18619437,16922351:197509 -k1,11678:22567571,16922351:197509 -k1,11678:27151405,16922351:197509 -k1,11678:32583029,16922351:1966080 -) -(1,11679:6630773,17787431:25952256,505283,7863 -g1,11679:8596853,17787431 -g1,11678:9447510,17787431 -g1,11678:11281207,17787431 -k1,11679:30616948,17787431:18825216 -g1,11679:32583028,17787431 -) -(1,11680:6630773,19438943:25952256,513147,126483 -k1,11680:19256285,19438943:12625512 -h1,11680:19232037,19438943:0,0,0 -g1,11680:21445187,19438943 -g1,11680:22276183,19438943 -g1,11680:23772370,19438943 -g1,11680:25163044,19438943 -g1,11680:27468600,19438943 -g1,11680:28344816,19438943 -g1,11680:30616949,19438943 -g1,11680:32583029,19438943 -) -(1,11681:6630773,20304023:25952256,513147,126483 -k1,11681:18169042,20304023:11538269 -h1,11680:18169042,20304023:0,0,0 -g1,11680:22210647,20304023 -g1,11680:23025914,20304023 -g1,11680:26370216,20304023 -g1,11680:29023113,20304023 -g1,11681:30616949,20304023 -g1,11681:32583029,20304023 -) -(1,11681:6630773,21562319:25952256,131072,0 -r1,11695:32583029,21562319:25952256,131072,0 -g1,11681:32583029,21562319 -g1,11681:34549109,21562319 -) -(1,11685:6630773,24393479:25952256,32768,229376 -(1,11685:6630773,24393479:0,32768,229376 -(1,11685:6630773,24393479:5505024,32768,229376 -r1,11695:12135797,24393479:5505024,262144,229376 -) -k1,11685:6630773,24393479:-5505024 -) -(1,11685:6630773,24393479:25952256,32768,0 -r1,11695:32583029,24393479:25952256,32768,0 -) -) -(1,11685:6630773,26025331:25952256,615776,151780 -(1,11685:6630773,26025331:1974731,582746,14155 -g1,11685:6630773,26025331 -g1,11685:8605504,26025331 -) -g1,11685:10904245,26025331 -g1,11685:11961996,26025331 -g1,11685:13950883,26025331 -k1,11685:32583029,26025331:15515516 -g1,11685:32583029,26025331 -) -(1,11688:6630773,27283627:25952256,513147,126483 -k1,11687:7426557,27283627:167949 -k1,11687:9628088,27283627:167949 -k1,11687:12543962,27283627:167949 -k1,11687:13580263,27283627:167949 -k1,11687:15223427,27283627:167949 -k1,11687:16766977,27283627:167949 -k1,11687:18448152,27283627:167949 -k1,11687:20050029,27283627:167949 -k1,11687:20632789,27283627:167917 -k1,11687:23580120,27283627:167949 -k1,11687:24375904,27283627:167949 -k1,11687:25747094,27283627:167949 -k1,11687:28332666,27283627:167949 -k1,11687:29671088,27283627:167949 -k1,11687:30971499,27283627:167949 -k1,11687:32583029,27283627:0 -) -(1,11688:6630773,28148707:25952256,513147,134348 -k1,11687:8165908,28148707:204754 -k1,11687:9022089,28148707:204753 -k1,11687:11551405,28148707:204754 -k1,11687:12775243,28148707:204753 -k1,11687:14760610,28148707:204754 -k1,11687:15624655,28148707:204753 -k1,11687:18435120,28148707:204754 -k1,11687:21597513,28148707:204753 -k1,11687:22015253,28148707:204748 -k1,11687:23708330,28148707:204754 -k1,11687:24674611,28148707:204753 -k1,11687:28230876,28148707:204754 -k1,11687:29766010,28148707:204753 -k1,11687:30622192,28148707:204754 -k1,11687:32583029,28148707:0 -) -(1,11688:6630773,29013787:25952256,513147,126483 -k1,11687:8046460,29013787:224242 -k1,11687:9363187,29013787:224242 -k1,11687:10870624,29013787:224242 -k1,11687:14294334,29013787:224242 -k1,11687:17595491,29013787:224242 -k1,11687:19011178,29013787:224242 -k1,11687:21641902,29013787:224242 -k1,11687:23499957,29013787:224242 -k1,11687:24715759,29013787:224242 -k1,11687:26448640,29013787:224242 -k1,11687:29863175,29013787:224242 -k1,11687:31278862,29013787:224242 -k1,11687:32583029,29013787:0 -) -(1,11688:6630773,29878867:25952256,513147,134348 -k1,11687:8251478,29878867:240517 -k1,11687:11800908,29878867:240517 -k1,11687:12692853,29878867:240517 -k1,11687:16711521,29878867:240517 -k1,11687:18143483,29878867:240517 -k1,11687:21407831,29878867:240517 -k1,11687:22307640,29878867:240517 -k1,11687:25624417,29878867:240517 -k1,11687:28026311,29878867:240517 -k1,11687:29458273,29878867:240517 -k1,11687:32583029,29878867:0 -) -(1,11688:6630773,30743947:25952256,513147,134348 -k1,11687:8427397,30743947:183128 -k1,11687:8823502,30743947:183113 -k1,11687:10744645,30743947:183128 -k1,11687:11737144,30743947:183129 -k1,11687:13655665,30743947:183128 -k1,11687:16329817,30743947:183129 -k1,11687:19423399,30743947:183128 -k1,11687:20257956,30743947:183129 -k1,11687:22177788,30743947:183128 -k1,11687:25763546,30743947:183129 -k1,11687:26598102,30743947:183128 -k1,11687:27196058,30743947:183113 -k1,11687:28570631,30743947:183128 -k1,11687:30568452,30743947:183129 -k1,11687:32583029,30743947:0 -) -(1,11688:6630773,31609027:25952256,505283,126483 -k1,11687:7666446,31609027:226303 -k1,11687:9223130,31609027:226303 -k1,11687:10829621,31609027:226303 -k1,11687:12826050,31609027:226302 -k1,11687:13265318,31609027:226276 -k1,11687:14306889,31609027:226303 -k1,11687:15599463,31609027:226303 -k1,11687:18556651,31609027:226303 -k1,11687:19802039,31609027:226303 -k1,11687:23411309,31609027:226302 -k1,11687:24709781,31609027:226303 -k1,11687:26586281,31609027:226303 -k1,11687:29818720,31609027:226303 -k1,11687:32583029,31609027:0 -) -(1,11688:6630773,32474107:25952256,513147,134348 -k1,11687:7569480,32474107:279415 -k1,11687:11071956,32474107:279415 -k1,11687:14377168,32474107:279415 -k1,11687:15848028,32474107:279415 -k1,11687:18360255,32474107:279415 -k1,11687:19907137,32474107:279416 -k1,11687:21469747,32474107:279415 -k1,11687:22163924,32474107:279334 -k1,11687:25527463,32474107:279415 -k1,11687:28145858,32474107:279415 -k1,11687:28638185,32474107:279335 -k1,11687:31278862,32474107:279415 -k1,11687:32583029,32474107:0 -) -(1,11688:6630773,33339187:25952256,505283,134348 -g1,11687:9740456,33339187 -g1,11687:10931245,33339187 -g1,11687:13867913,33339187 -g1,11687:15258587,33339187 -k1,11688:32583029,33339187:15758787 -g1,11688:32583029,33339187 -) -(1,11689:6630773,36170347:25952256,32768,229376 -(1,11689:6630773,36170347:0,32768,229376 -(1,11689:6630773,36170347:5505024,32768,229376 -r1,11695:12135797,36170347:5505024,262144,229376 -) -k1,11689:6630773,36170347:-5505024 -) -(1,11689:6630773,36170347:25952256,32768,0 -r1,11695:32583029,36170347:25952256,32768,0 -) -) -(1,11689:6630773,37802199:25952256,615776,161218 -(1,11689:6630773,37802199:1974731,582746,14155 -g1,11689:6630773,37802199 -g1,11689:8605504,37802199 -) -g1,11689:12201071,37802199 -g1,11689:16332985,37802199 -g1,11689:18042688,37802199 -k1,11689:32583029,37802199:10581442 -g1,11689:32583029,37802199 -) -(1,11693:6630773,39060495:25952256,513147,134348 -k1,11692:10447412,39060495:210192 -k1,11692:11761885,39060495:210191 -k1,11692:12719843,39060495:210192 -k1,11692:15311613,39060495:210192 -k1,11692:16207966,39060495:210191 -k1,11692:19763771,39060495:210192 -k1,11692:20993047,39060495:210191 -k1,11692:25274335,39060495:210192 -k1,11692:28780333,39060495:210192 -k1,11692:30558145,39060495:210191 -k1,11692:31787422,39060495:210192 -k1,11693:32583029,39060495:0 -) -(1,11693:6630773,39925575:25952256,513147,134348 -k1,11692:9353279,39925575:186918 -k1,11692:11200879,39925575:186918 -k1,11692:12459966,39925575:186918 -k1,11692:15660885,39925575:186918 -k1,11692:16866888,39925575:186918 -k1,11692:18791821,39925575:186918 -k1,11692:20546360,39925575:186918 -k1,11692:21089138,39925575:186918 -k1,11692:22970817,39925575:186918 -k1,11692:25135612,39925575:186918 -k1,11692:25981822,39925575:186918 -k1,11692:28984822,39925575:186918 -k1,11692:29703237,39925575:186918 -k1,11692:30660858,39925575:186918 -k1,11692:32583029,39925575:0 -) -(1,11693:6630773,40790655:25952256,513147,126483 -k1,11692:10082792,40790655:204055 -k1,11692:12119234,40790655:204055 -k1,11692:13427572,40790655:204056 -k1,11692:14379393,40790655:204055 -k1,11692:16335225,40790655:204055 -k1,11692:18032846,40790655:204055 -k1,11692:21641496,40790655:204055 -k1,11692:22654921,40790655:204055 -k1,11692:25621320,40790655:204056 -k1,11692:28445504,40790655:204055 -k1,11692:31131407,40790655:204055 -k1,11692:32583029,40790655:0 -) -(1,11693:6630773,41655735:25952256,513147,134348 -k1,11692:7987166,41655735:199683 -k1,11692:8542709,41655735:199683 -k1,11692:11139699,41655735:199683 -k1,11692:12880134,41655735:199684 -k1,11692:14863052,41655735:199683 -k1,11692:15931087,41655735:199683 -k1,11692:18800051,41655735:199683 -k1,11692:19770437,41655735:199683 -k1,11692:23081114,41655735:199683 -k1,11692:24228449,41655735:199684 -k1,11692:27858942,41655735:199683 -k1,11692:29077710,41655735:199683 -k1,11692:31015408,41655735:199683 -k1,11692:32583029,41655735:0 -) -(1,11693:6630773,42520815:25952256,513147,126483 -k1,11692:7916449,42520815:153869 -k1,11692:10690447,42520815:153869 -k1,11692:12822194,42520815:153870 -k1,11692:13844415,42520815:153869 -k1,11692:15473499,42520815:153869 -k1,11692:17977489,42520815:153869 -k1,11692:19150443,42520815:153869 -k1,11692:22893064,42520815:153870 -k1,11692:23706225,42520815:153869 -k1,11692:25803891,42520815:153869 -k1,11692:26585595,42520815:153869 -k1,11692:27758550,42520815:153870 -k1,11692:29565892,42520815:153869 -k1,11692:31131407,42520815:153869 -k1,11692:32583029,42520815:0 -) -(1,11693:6630773,43385895:25952256,513147,126483 -k1,11692:8222844,43385895:166663 -k1,11692:9257859,43385895:166663 -k1,11692:12127227,43385895:166663 -k1,11692:15698485,43385895:166663 -k1,11692:17432769,43385895:166663 -k1,11692:19996739,43385895:166663 -k1,11692:21552766,43385895:166664 -k1,11692:22587781,43385895:166663 -k1,11692:24683824,43385895:166663 -k1,11692:25206347,43385895:166663 -k1,11692:26656205,43385895:166663 -k1,11692:30585290,43385895:166663 -k1,11692:31379788,43385895:166663 -k1,11692:32583029,43385895:0 -) -(1,11693:6630773,44250975:25952256,513147,126483 -k1,11692:8857508,44250975:282937 -k1,11692:12166241,44250975:282936 -k1,11692:13440738,44250975:282937 -k1,11692:17642728,44250975:282937 -k1,11692:18584956,44250975:282936 -k1,11692:22272488,44250975:282937 -k1,11692:23238309,44250975:282936 -k1,11692:25982123,44250975:282937 -k1,11692:27645248,44250975:282937 -k1,11692:28919744,44250975:282936 -k1,11692:30348906,44250975:282937 -k1,11692:32583029,44250975:0 -) -(1,11693:6630773,45116055:25952256,513147,134348 -g1,11692:10142192,45116055 -g1,11692:12628628,45116055 -g1,11692:16096793,45116055 -g1,11692:17863643,45116055 -k1,11693:32583029,45116055:12707431 -g1,11693:32583029,45116055 -) -] -(1,11695:32583029,45706769:0,0,0 -g1,11695:32583029,45706769 -) -) -] -(1,11695:6630773,47279633:25952256,485622,11795 -(1,11695:6630773,47279633:25952256,485622,11795 -(1,11695:6630773,47279633:0,0,0 -v1,11695:6630773,47279633:0,0,0 -) -g1,11695:6830002,47279633 -k1,11695:31387652,47279633:24557650 -) -) -] -(1,11695:4262630,4025873:0,0,0 -[1,11695:-473656,4025873:0,0,0 -(1,11695:-473656,-710413:0,0,0 -(1,11695:-473656,-710413:0,0,0 -g1,11695:-473656,-710413 -) -g1,11695:-473656,-710413 -) -] -) -] -!15204 -}184 -Input:1948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +) +] +[1,11694:3078558,4812305:0,0,0 +(1,11694:3078558,49800853:0,16384,2228224 +g1,11694:29030814,49800853 +g1,11694:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,11694:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,11694:37855564,49800853:1179648,16384,0 +) +) +k1,11694:3078556,49800853:-34777008 +) +] +g1,11694:6630773,4812305 +) +) +] +[1,11694:6630773,45706769:25952256,40108032,0 +(1,11694:6630773,45706769:25952256,40108032,0 +(1,11694:6630773,45706769:0,0,0 +g1,11694:6630773,45706769 +) +[1,11694:6630773,45706769:25952256,40108032,0 +[1,11674:6630773,11797421:25952256,6198684,0 +(1,11674:6630773,6633157:25952256,1165492,28311 +h1,11674:6630773,6633157:0,0,0 +k1,11674:20096848,6633157:12486181 +k1,11674:32583029,6633157:12486181 +) +(1,11674:6630773,7380277:25952256,32768,229376 +(1,11674:6630773,7380277:0,32768,229376 +(1,11674:6630773,7380277:5505024,32768,229376 +r1,11694:12135797,7380277:5505024,262144,229376 +) +k1,11674:6630773,7380277:-5505024 +) +(1,11674:6630773,7380277:25952256,32768,0 +r1,11694:32583029,7380277:25952256,32768,0 +) +) +(1,11674:6630773,9215293:25952256,909509,241827 +h1,11674:6630773,9215293:0,0,0 +g1,11674:9551582,9215293 +g1,11674:10968340,9215293 +g1,11674:15438026,9215293 +g1,11674:18256205,9215293 +k1,11674:27621430,9215293:4961599 +k1,11674:32583029,9215293:4961599 +) +(1,11674:6630773,9962413:25952256,32768,0 +(1,11674:6630773,9962413:5505024,32768,0 +r1,11694:12135797,9962413:5505024,32768,0 +) +k1,11674:22359413,9962413:10223616 +k1,11674:32583029,9962413:10223616 +) +] +(1,11676:6630773,14713778:25952256,131072,0 +r1,11694:32583029,14713778:25952256,131072,0 +g1,11676:32583029,14713778 +g1,11676:32583029,14713778 +) +(1,11678:6630773,16057271:25952256,513147,134348 +k1,11678:8596853,16057271:1966080 +k1,11677:11936713,16057271:141703 +k1,11677:14411498,16057271:141703 +k1,11677:15084699,16057271:141704 +k1,11677:15582262,16057271:141703 +k1,11677:18032143,16057271:141703 +k1,11677:18833138,16057271:141703 +k1,11677:25791242,16057271:141704 +k1,11677:26952030,16057271:141703 +k1,11677:28629242,16057271:141703 +k1,11677:32583029,16057271:1966080 +) +(1,11678:6630773,16922351:25952256,513147,134348 +k1,11678:8596853,16922351:1966080 +k1,11677:9742013,16922351:197509 +k1,11677:10295382,16922351:197509 +k1,11677:13169381,16922351:197509 +k1,11677:14558335,16922351:197509 +k1,11677:17402843,16922351:197509 +k1,11677:18619437,16922351:197509 +k1,11677:22567571,16922351:197509 +k1,11677:27151405,16922351:197509 +k1,11677:32583029,16922351:1966080 +) +(1,11678:6630773,17787431:25952256,505283,7863 +g1,11678:8596853,17787431 +g1,11677:9447510,17787431 +g1,11677:11281207,17787431 +k1,11678:30616948,17787431:18825216 +g1,11678:32583028,17787431 +) +(1,11679:6630773,19438943:25952256,513147,126483 +k1,11679:19256285,19438943:12625512 +h1,11679:19232037,19438943:0,0,0 +g1,11679:21445187,19438943 +g1,11679:22276183,19438943 +g1,11679:23772370,19438943 +g1,11679:25163044,19438943 +g1,11679:27468600,19438943 +g1,11679:28344816,19438943 +g1,11679:30616949,19438943 +g1,11679:32583029,19438943 +) +(1,11680:6630773,20304023:25952256,513147,126483 +k1,11680:18169042,20304023:11538269 +h1,11679:18169042,20304023:0,0,0 +g1,11679:22210647,20304023 +g1,11679:23025914,20304023 +g1,11679:26370216,20304023 +g1,11679:29023113,20304023 +g1,11680:30616949,20304023 +g1,11680:32583029,20304023 +) +(1,11680:6630773,21562319:25952256,131072,0 +r1,11694:32583029,21562319:25952256,131072,0 +g1,11680:32583029,21562319 +g1,11680:34549109,21562319 +) +(1,11684:6630773,24393479:25952256,32768,229376 +(1,11684:6630773,24393479:0,32768,229376 +(1,11684:6630773,24393479:5505024,32768,229376 +r1,11694:12135797,24393479:5505024,262144,229376 +) +k1,11684:6630773,24393479:-5505024 +) +(1,11684:6630773,24393479:25952256,32768,0 +r1,11694:32583029,24393479:25952256,32768,0 +) +) +(1,11684:6630773,26025331:25952256,615776,151780 +(1,11684:6630773,26025331:1974731,582746,14155 +g1,11684:6630773,26025331 +g1,11684:8605504,26025331 +) +g1,11684:10904245,26025331 +g1,11684:11961996,26025331 +g1,11684:13950883,26025331 +k1,11684:32583029,26025331:15515516 +g1,11684:32583029,26025331 +) +(1,11687:6630773,27283627:25952256,513147,126483 +k1,11686:7426557,27283627:167949 +k1,11686:9628088,27283627:167949 +k1,11686:12543962,27283627:167949 +k1,11686:13580263,27283627:167949 +k1,11686:15223427,27283627:167949 +k1,11686:16766977,27283627:167949 +k1,11686:18448152,27283627:167949 +k1,11686:20050029,27283627:167949 +k1,11686:20632789,27283627:167917 +k1,11686:23580120,27283627:167949 +k1,11686:24375904,27283627:167949 +k1,11686:25747094,27283627:167949 +k1,11686:28332666,27283627:167949 +k1,11686:29671088,27283627:167949 +k1,11686:30971499,27283627:167949 +k1,11686:32583029,27283627:0 +) +(1,11687:6630773,28148707:25952256,513147,134348 +k1,11686:8165908,28148707:204754 +k1,11686:9022089,28148707:204753 +k1,11686:11551405,28148707:204754 +k1,11686:12775243,28148707:204753 +k1,11686:14760610,28148707:204754 +k1,11686:15624655,28148707:204753 +k1,11686:18435120,28148707:204754 +k1,11686:21597513,28148707:204753 +k1,11686:22015253,28148707:204748 +k1,11686:23708330,28148707:204754 +k1,11686:24674611,28148707:204753 +k1,11686:28230876,28148707:204754 +k1,11686:29766010,28148707:204753 +k1,11686:30622192,28148707:204754 +k1,11686:32583029,28148707:0 +) +(1,11687:6630773,29013787:25952256,513147,126483 +k1,11686:8031987,29013787:209769 +k1,11686:9334242,29013787:209770 +k1,11686:10827206,29013787:209769 +k1,11686:14236444,29013787:209770 +k1,11686:17696799,29013787:209769 +k1,11686:19098014,29013787:209770 +k1,11686:21714265,29013787:209769 +k1,11686:23557847,29013787:209769 +k1,11686:24759177,29013787:209770 +k1,11686:26477585,29013787:209769 +k1,11686:29877648,29013787:209770 +k1,11686:31278862,29013787:209769 +k1,11686:32583029,29013787:0 +) +(1,11687:6630773,29878867:25952256,513147,134348 +k1,11686:8251478,29878867:240517 +k1,11686:11800908,29878867:240517 +k1,11686:12692853,29878867:240517 +k1,11686:16711521,29878867:240517 +k1,11686:18143483,29878867:240517 +k1,11686:21407831,29878867:240517 +k1,11686:22307640,29878867:240517 +k1,11686:25624417,29878867:240517 +k1,11686:28026311,29878867:240517 +k1,11686:29458273,29878867:240517 +k1,11686:32583029,29878867:0 +) +(1,11687:6630773,30743947:25952256,513147,134348 +k1,11686:8427397,30743947:183128 +k1,11686:8823502,30743947:183113 +k1,11686:10744645,30743947:183128 +k1,11686:11737144,30743947:183129 +k1,11686:13655665,30743947:183128 +k1,11686:16329817,30743947:183129 +k1,11686:19423399,30743947:183128 +k1,11686:20257956,30743947:183129 +k1,11686:22177788,30743947:183128 +k1,11686:25763546,30743947:183129 +k1,11686:26598102,30743947:183128 +k1,11686:27196058,30743947:183113 +k1,11686:28570631,30743947:183128 +k1,11686:30568452,30743947:183129 +k1,11686:32583029,30743947:0 +) +(1,11687:6630773,31609027:25952256,505283,126483 +k1,11686:7666446,31609027:226303 +k1,11686:9223130,31609027:226303 +k1,11686:10829621,31609027:226303 +k1,11686:12826050,31609027:226302 +k1,11686:13265318,31609027:226276 +k1,11686:14306889,31609027:226303 +k1,11686:15599463,31609027:226303 +k1,11686:18556651,31609027:226303 +k1,11686:19802039,31609027:226303 +k1,11686:23411309,31609027:226302 +k1,11686:24709781,31609027:226303 +k1,11686:26586281,31609027:226303 +k1,11686:29818720,31609027:226303 +k1,11686:32583029,31609027:0 +) +(1,11687:6630773,32474107:25952256,513147,134348 +k1,11686:7569480,32474107:279415 +k1,11686:11071956,32474107:279415 +k1,11686:14377168,32474107:279415 +k1,11686:15848028,32474107:279415 +k1,11686:18360255,32474107:279415 +k1,11686:19907137,32474107:279416 +k1,11686:21469747,32474107:279415 +k1,11686:22163924,32474107:279334 +k1,11686:25527463,32474107:279415 +k1,11686:28145858,32474107:279415 +k1,11686:28638185,32474107:279335 +k1,11686:31278862,32474107:279415 +k1,11686:32583029,32474107:0 +) +(1,11687:6630773,33339187:25952256,505283,134348 +g1,11686:9740456,33339187 +g1,11686:10931245,33339187 +g1,11686:13867913,33339187 +g1,11686:15258587,33339187 +k1,11687:32583029,33339187:15758787 +g1,11687:32583029,33339187 +) +(1,11688:6630773,36170347:25952256,32768,229376 +(1,11688:6630773,36170347:0,32768,229376 +(1,11688:6630773,36170347:5505024,32768,229376 +r1,11694:12135797,36170347:5505024,262144,229376 +) +k1,11688:6630773,36170347:-5505024 +) +(1,11688:6630773,36170347:25952256,32768,0 +r1,11694:32583029,36170347:25952256,32768,0 +) +) +(1,11688:6630773,37802199:25952256,615776,161218 +(1,11688:6630773,37802199:1974731,582746,14155 +g1,11688:6630773,37802199 +g1,11688:8605504,37802199 +) +g1,11688:12201071,37802199 +g1,11688:16332985,37802199 +g1,11688:18042688,37802199 +k1,11688:32583029,37802199:10581442 +g1,11688:32583029,37802199 +) +(1,11692:6630773,39060495:25952256,513147,134348 +k1,11691:10447412,39060495:210192 +k1,11691:11761885,39060495:210191 +k1,11691:12719843,39060495:210192 +k1,11691:15311613,39060495:210192 +k1,11691:16207966,39060495:210191 +k1,11691:19763771,39060495:210192 +k1,11691:20993047,39060495:210191 +k1,11691:25274335,39060495:210192 +k1,11691:28780333,39060495:210192 +k1,11691:30558145,39060495:210191 +k1,11691:31787422,39060495:210192 +k1,11692:32583029,39060495:0 +) +(1,11692:6630773,39925575:25952256,513147,134348 +k1,11691:9353279,39925575:186918 +k1,11691:11200879,39925575:186918 +k1,11691:12459966,39925575:186918 +k1,11691:15660885,39925575:186918 +k1,11691:16866888,39925575:186918 +k1,11691:18791821,39925575:186918 +k1,11691:20546360,39925575:186918 +k1,11691:21089138,39925575:186918 +k1,11691:22970817,39925575:186918 +k1,11691:25135612,39925575:186918 +k1,11691:25981822,39925575:186918 +k1,11691:28984822,39925575:186918 +k1,11691:29703237,39925575:186918 +k1,11691:30660858,39925575:186918 +k1,11691:32583029,39925575:0 +) +(1,11692:6630773,40790655:25952256,513147,126483 +k1,11691:10082792,40790655:204055 +k1,11691:12119234,40790655:204055 +k1,11691:13427572,40790655:204056 +k1,11691:14379393,40790655:204055 +k1,11691:16335225,40790655:204055 +k1,11691:18032846,40790655:204055 +k1,11691:21641496,40790655:204055 +k1,11691:22654921,40790655:204055 +k1,11691:25621320,40790655:204056 +k1,11691:28445504,40790655:204055 +k1,11691:31131407,40790655:204055 +k1,11691:32583029,40790655:0 +) +(1,11692:6630773,41655735:25952256,513147,134348 +k1,11691:7987166,41655735:199683 +k1,11691:8542709,41655735:199683 +k1,11691:11139699,41655735:199683 +k1,11691:12880134,41655735:199684 +k1,11691:14863052,41655735:199683 +k1,11691:15931087,41655735:199683 +k1,11691:18800051,41655735:199683 +k1,11691:19770437,41655735:199683 +k1,11691:23081114,41655735:199683 +k1,11691:24228449,41655735:199684 +k1,11691:27858942,41655735:199683 +k1,11691:29077710,41655735:199683 +k1,11691:31015408,41655735:199683 +k1,11691:32583029,41655735:0 +) +(1,11692:6630773,42520815:25952256,513147,126483 +k1,11691:7986159,42520815:223579 +k1,11691:10829866,42520815:223578 +k1,11691:13204992,42520815:223579 +k1,11691:14296923,42520815:223579 +k1,11691:17668195,42520815:223578 +k1,11691:18662477,42520815:223579 +k1,11691:22474807,42520815:223579 +k1,11691:23357678,42520815:223579 +k1,11691:25525053,42520815:223578 +k1,11691:26376467,42520815:223579 +k1,11691:27619131,42520815:223579 +k1,11691:29496182,42520815:223578 +k1,11691:31131407,42520815:223579 +k1,11691:32583029,42520815:0 +) +(1,11692:6630773,43385895:25952256,513147,126483 +k1,11691:8222844,43385895:166663 +k1,11691:9257859,43385895:166663 +k1,11691:12127227,43385895:166663 +k1,11691:15698485,43385895:166663 +k1,11691:17432769,43385895:166663 +k1,11691:19996739,43385895:166663 +k1,11691:21552766,43385895:166664 +k1,11691:22587781,43385895:166663 +k1,11691:24683824,43385895:166663 +k1,11691:25206347,43385895:166663 +k1,11691:26656205,43385895:166663 +k1,11691:30585290,43385895:166663 +k1,11691:31379788,43385895:166663 +k1,11691:32583029,43385895:0 +) +(1,11692:6630773,44250975:25952256,513147,126483 +k1,11691:8857508,44250975:282937 +k1,11691:12166241,44250975:282936 +k1,11691:13440738,44250975:282937 +k1,11691:17642728,44250975:282937 +k1,11691:18584956,44250975:282936 +k1,11691:22272488,44250975:282937 +k1,11691:23238309,44250975:282936 +k1,11691:25982123,44250975:282937 +k1,11691:27645248,44250975:282937 +k1,11691:28919744,44250975:282936 +k1,11691:30348906,44250975:282937 +k1,11691:32583029,44250975:0 +) +(1,11692:6630773,45116055:25952256,513147,134348 +g1,11691:10142192,45116055 +g1,11691:12628628,45116055 +g1,11691:16096793,45116055 +g1,11691:17863643,45116055 +k1,11692:32583029,45116055:12707431 +g1,11692:32583029,45116055 +) +] +(1,11694:32583029,45706769:0,0,0 +g1,11694:32583029,45706769 +) +) +] +(1,11694:6630773,47279633:25952256,485622,11795 +(1,11694:6630773,47279633:25952256,485622,11795 +(1,11694:6630773,47279633:0,0,0 +v1,11694:6630773,47279633:0,0,0 +) +g1,11694:6830002,47279633 +k1,11694:31387652,47279633:24557650 +) +) +] +(1,11694:4262630,4025873:0,0,0 +[1,11694:-473656,4025873:0,0,0 +(1,11694:-473656,-710413:0,0,0 +(1,11694:-473656,-710413:0,0,0 +g1,11694:-473656,-710413 +) +g1,11694:-473656,-710413 +) +] +) +] +!15170 +}185 Input:1951:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1952:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1953:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -209446,1156 +209624,1182 @@ Input:1957:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1958:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1959:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1960:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{185 -[1,11760:4262630,47279633:28320399,43253760,0 -(1,11760:4262630,4025873:0,0,0 -[1,11760:-473656,4025873:0,0,0 -(1,11760:-473656,-710413:0,0,0 -(1,11760:-473656,-644877:0,0,0 -k1,11760:-473656,-644877:-65536 +{186 +[1,11759:4262630,47279633:28320399,43253760,0 +(1,11759:4262630,4025873:0,0,0 +[1,11759:-473656,4025873:0,0,0 +(1,11759:-473656,-710413:0,0,0 +(1,11759:-473656,-644877:0,0,0 +k1,11759:-473656,-644877:-65536 ) -(1,11760:-473656,4736287:0,0,0 -k1,11760:-473656,4736287:5209943 +(1,11759:-473656,4736287:0,0,0 +k1,11759:-473656,4736287:5209943 ) -g1,11760:-473656,-710413 +g1,11759:-473656,-710413 ) ] ) -[1,11760:6630773,47279633:25952256,43253760,0 -[1,11760:6630773,4812305:25952256,786432,0 -(1,11760:6630773,4812305:25952256,505283,134348 -(1,11760:6630773,4812305:25952256,505283,134348 -g1,11760:3078558,4812305 -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,2439708:0,1703936,0 -k1,11760:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,11760:2537886,2439708:1179648,16384,0 +[1,11759:6630773,47279633:25952256,43253760,0 +[1,11759:6630773,4812305:25952256,786432,0 +(1,11759:6630773,4812305:25952256,505283,134348 +(1,11759:6630773,4812305:25952256,505283,134348 +g1,11759:3078558,4812305 +[1,11759:3078558,4812305:0,0,0 +(1,11759:3078558,2439708:0,1703936,0 +k1,11759:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,11759:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,11760:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,11759:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,2439708:0,1703936,0 -g1,11760:29030814,2439708 -g1,11760:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,11760:36151628,1915420:16384,1179648,0 +[1,11759:3078558,4812305:0,0,0 +(1,11759:3078558,2439708:0,1703936,0 +g1,11759:29030814,2439708 +g1,11759:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,11759:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,11760:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,11759:37855564,2439708:1179648,16384,0 ) ) -k1,11760:3078556,2439708:-34777008 +k1,11759:3078556,2439708:-34777008 ) ] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,49800853:0,16384,2228224 -k1,11760:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,11760:2537886,49800853:1179648,16384,0 +[1,11759:3078558,4812305:0,0,0 +(1,11759:3078558,49800853:0,16384,2228224 +k1,11759:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,11759:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,11760:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,11759:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 -) -] -) -) -) -] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,49800853:0,16384,2228224 -g1,11760:29030814,49800853 -g1,11760:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,11760:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,11760:37855564,49800853:1179648,16384,0 -) -) -k1,11760:3078556,49800853:-34777008 -) -] -g1,11760:6630773,4812305 -k1,11760:23588214,4812305:15762064 -g1,11760:25210885,4812305 -g1,11760:25997972,4812305 -g1,11760:28481131,4812305 -g1,11760:30046786,4812305 -) -) -] -[1,11760:6630773,45706769:25952256,40108032,0 -(1,11760:6630773,45706769:25952256,40108032,0 -(1,11760:6630773,45706769:0,0,0 -g1,11760:6630773,45706769 -) -[1,11760:6630773,45706769:25952256,40108032,0 -(1,11695:6630773,6254097:25952256,513147,134348 -h1,11694:6630773,6254097:983040,0,0 -k1,11694:9063116,6254097:252616 -k1,11694:10907602,6254097:252616 -k1,11694:12395572,6254097:252616 -k1,11694:13307480,6254097:252616 -k1,11694:16585893,6254097:252616 -k1,11694:17370006,6254097:252616 -k1,11694:18907129,6254097:252617 -k1,11694:19819037,6254097:252616 -k1,11694:23144636,6254097:252616 -k1,11694:24167955,6254097:252616 -k1,11694:28009322,6254097:252616 -k1,11694:30933841,6254097:252616 -k1,11694:31931601,6254097:252616 -k1,11694:32583029,6254097:0 -) -(1,11695:6630773,7119177:25952256,513147,134348 -k1,11694:8619493,7119177:259225 -k1,11694:11885509,7119177:259224 -k1,11694:14201254,7119177:259225 -k1,11694:15119770,7119177:259224 -k1,11694:16875182,7119177:259225 -k1,11694:19564481,7119177:259224 -k1,11694:20482998,7119177:259225 -k1,11694:24465978,7119177:259224 -k1,11694:27479026,7119177:259225 -k1,11694:28757335,7119177:259224 -k1,11694:30670033,7119177:259225 -k1,11695:32583029,7119177:0 -) -(1,11695:6630773,7984257:25952256,513147,126483 -k1,11694:8457614,7984257:229073 -k1,11694:9496058,7984257:229074 -k1,11694:12487474,7984257:229073 -k1,11694:14279582,7984257:229074 -k1,11694:15705342,7984257:229073 -k1,11694:18395947,7984257:229073 -k1,11694:19276449,7984257:229074 -k1,11694:21235017,7984257:229073 -k1,11694:24593434,7984257:229073 -k1,11694:25481800,7984257:229074 -k1,11694:27912883,7984257:229073 -k1,11694:30198477,7984257:229074 -k1,11694:31086842,7984257:229073 -k1,11694:32583029,7984257:0 -) -(1,11695:6630773,8849337:25952256,513147,134348 -k1,11694:10406521,8849337:259086 -k1,11694:11657166,8849337:259085 -k1,11694:13200758,8849337:259086 -k1,11694:14065396,8849337:259085 -k1,11694:14790443,8849337:259086 -k1,11694:16068613,8849337:259085 -k1,11694:19438693,8849337:259086 -k1,11694:20380663,8849337:259085 -k1,11694:25696507,8849337:259086 -k1,11694:27816159,8849337:259085 -k1,11694:28726673,8849337:259086 -k1,11694:29733524,8849337:259085 -k1,11695:32583029,8849337:0 -) -(1,11695:6630773,9714417:25952256,513147,134348 -k1,11694:8117713,9714417:244377 -k1,11694:9013517,9714417:244376 -k1,11694:10053501,9714417:244377 -k1,11694:10653737,9714417:244376 -k1,11694:12087592,9714417:244377 -k1,11694:13014853,9714417:244376 -k1,11694:15979629,9714417:244377 -k1,11694:16755502,9714417:244376 -k1,11694:18334847,9714417:244377 -k1,11694:19230651,9714417:244376 -k1,11694:21190761,9714417:244377 -k1,11694:22991617,9714417:244376 -k1,11694:23852032,9714417:244377 -k1,11694:24452268,9714417:244376 -k1,11694:26569664,9714417:244377 -k1,11694:28650359,9714417:244376 -k1,11694:29500289,9714417:244377 -k1,11694:31914562,9714417:244376 -k1,11694:32583029,9714417:0 -) -(1,11695:6630773,10579497:25952256,513147,134348 -k1,11694:8289251,10579497:204889 -k1,11694:10474638,10579497:204889 -k1,11694:11338819,10579497:204889 -k1,11694:14328333,10579497:204889 -k1,11694:16029409,10579497:204889 -k1,11694:17338581,10579497:204890 -k1,11694:19986652,10579497:204889 -k1,11694:22953884,10579497:204889 -k1,11694:25478092,10579497:204889 -k1,11694:26334409,10579497:204889 -k1,11694:31391584,10579497:204889 -k1,11694:32583029,10579497:0 -) -(1,11695:6630773,11444577:25952256,513147,134348 -k1,11694:11039619,11444577:224372 -k1,11694:12957440,11444577:224371 -k1,11694:13787365,11444577:224372 -k1,11694:17600487,11444577:224371 -k1,11694:19016304,11444577:224372 -k1,11694:21761845,11444577:224371 -k1,11694:22645509,11444577:224372 -k1,11694:23225740,11444577:224371 -k1,11694:26126602,11444577:224372 -k1,11694:27618439,11444577:224371 -k1,11694:30194898,11444577:224372 -k1,11694:32583029,11444577:0 -) -(1,11695:6630773,12309657:25952256,505283,134348 -k1,11694:9089744,12309657:270068 -k1,11694:11078165,12309657:270067 -k1,11694:12742184,12309657:270068 -k1,11694:15510484,12309657:270068 -k1,11694:16799637,12309657:270068 -k1,11694:18565891,12309657:270067 -k1,11694:23809486,12309657:270068 -k1,11694:24730982,12309657:270068 -k1,11694:27725382,12309657:270068 -k1,11694:28601002,12309657:270067 -k1,11694:31073080,12309657:270068 -k1,11695:32583029,12309657:0 -) -(1,11695:6630773,13174737:25952256,513147,134348 -k1,11694:8616633,13174737:260297 -k1,11694:10922964,13174737:260297 -k1,11694:12202346,13174737:260297 -k1,11694:14293719,13174737:260297 -k1,11694:15537056,13174737:260297 -k1,11694:17995431,13174737:260297 -k1,11694:19447173,13174737:260297 -k1,11694:20910711,13174737:260297 -k1,11694:23217042,13174737:260297 -k1,11694:26973029,13174737:260297 -k1,11694:31384376,13174737:260297 -k1,11694:32583029,13174737:0 -) -(1,11695:6630773,14039817:25952256,513147,126483 -k1,11694:8534952,14039817:253982 -k1,11694:11328453,14039817:253981 -k1,11694:12773880,14039817:253982 -k1,11694:14634804,14039817:253981 -k1,11694:16928266,14039817:253982 -k1,11694:17787800,14039817:253981 -k1,11694:19435733,14039817:253982 -k1,11694:23562892,14039817:253981 -k1,11694:25525398,14039817:253982 -k1,11694:26970824,14039817:253981 -k1,11694:29557232,14039817:253982 -k1,11694:32583029,14039817:0 -) -(1,11695:6630773,14904897:25952256,513147,134348 -g1,11694:9608729,14904897 -k1,11695:32583029,14904897:20740178 -g1,11695:32583029,14904897 -) -(1,11697:6630773,15769977:25952256,513147,134348 -h1,11696:6630773,15769977:983040,0,0 -k1,11696:9333377,15769977:298743 -k1,11696:11125031,15769977:298744 -k1,11696:12754155,15769977:298743 -k1,11696:13668936,15769977:298743 -k1,11696:16678904,15769977:298744 -k1,11696:18707142,15769977:298743 -k1,11696:22012677,15769977:298743 -k1,11696:23500244,15769977:298744 -k1,11696:24458279,15769977:298743 -k1,11696:26580234,15769977:298743 -k1,11696:28150375,15769977:298743 -k1,11696:30394228,15769977:298744 -k1,11696:31048831,15769977:298743 -k1,11697:32583029,15769977:0 -) -(1,11697:6630773,16635057:25952256,505283,134348 -k1,11696:8088394,16635057:190155 -k1,11696:11640546,16635057:190155 -k1,11696:12849786,16635057:190155 -k1,11696:16556603,16635057:190155 -k1,11696:18031264,16635057:190155 -k1,11696:20177669,16635057:190155 -k1,11696:21898090,16635057:190155 -k1,11696:22739673,16635057:190155 -k1,11696:23677594,16635057:190155 -k1,11696:26826044,16635057:190155 -k1,11696:28207644,16635057:190155 -k1,11696:29851388,16635057:190155 -k1,11696:31198253,16635057:190155 -k1,11697:32583029,16635057:0 -) -(1,11697:6630773,17500137:25952256,513147,134348 -k1,11696:9249491,17500137:202406 -k1,11696:10470981,17500137:202405 -k1,11696:13368883,17500137:202406 -k1,11696:14187327,17500137:202406 -k1,11696:15898371,17500137:202405 -k1,11696:17937096,17500137:202406 -k1,11696:19093050,17500137:202405 -k1,11696:20770671,17500137:202406 -k1,11696:22483027,17500137:202406 -k1,11696:24775375,17500137:202405 -k1,11696:25392621,17500137:202403 -k1,11696:28620823,17500137:202405 -k1,11696:29506114,17500137:202406 -k1,11696:32583029,17500137:0 -) -(1,11697:6630773,18365217:25952256,513147,126483 -k1,11696:7414296,18365217:167485 -k1,11696:9744470,18365217:167486 -k1,11696:11613270,18365217:167485 -k1,11696:14442172,18365217:167485 -k1,11696:15225696,18365217:167486 -k1,11696:16596422,18365217:167485 -k1,11696:18519618,18365217:167486 -k1,11696:20235719,18365217:167485 -k1,11696:21271556,18365217:167485 -k1,11696:22571504,18365217:167486 -k1,11696:24123109,18365217:167485 -k1,11696:26181963,18365217:167485 -k1,11696:26880946,18365217:167486 -k1,11696:28378812,18365217:167485 -k1,11696:29197726,18365217:167486 -k1,11696:31326048,18365217:167485 -k1,11696:32583029,18365217:0 -) -(1,11697:6630773,19230297:25952256,513147,7863 -g1,11696:9855799,19230297 -g1,11696:10714320,19230297 -g1,11696:12011277,19230297 -k1,11697:32583030,19230297:19188944 -g1,11697:32583030,19230297 -) -(1,11699:6630773,20095377:25952256,505283,134348 -h1,11698:6630773,20095377:983040,0,0 -k1,11698:9076795,20095377:266295 -k1,11698:11959286,20095377:266294 -k1,11698:12841619,20095377:266295 -k1,11698:15386600,20095377:266294 -h1,11698:16357188,20095377:0,0,0 -k1,11698:16623483,20095377:266295 -k1,11698:17699148,20095377:266295 -k1,11698:19463595,20095377:266294 -h1,11698:20658972,20095377:0,0,0 -k1,11698:20925267,20095377:266295 -k1,11698:24191144,20095377:266294 -k1,11698:24813299,20095377:266295 -k1,11698:28493363,20095377:266294 -k1,11698:32119689,20095377:266295 -k1,11698:32583029,20095377:0 -) -(1,11699:6630773,20960457:25952256,513147,126483 -k1,11698:9604142,20960457:277873 -k1,11698:10413511,20960457:277872 -k1,11698:11047244,20960457:277873 -k1,11698:12821303,20960457:277872 -k1,11698:16459207,20960457:277873 -k1,11698:18861757,20960457:277873 -k1,11698:19822514,20960457:277872 -k1,11698:23687828,20960457:277873 -k1,11698:25250206,20960457:277872 -k1,11698:26059576,20960457:277873 -k1,11698:28225540,20960457:277872 -k1,11698:31015408,20960457:277873 -k1,11698:32583029,20960457:0 -) -(1,11699:6630773,21825537:25952256,513147,134348 -k1,11698:7875811,21825537:225953 -k1,11698:11117732,21825537:225954 -k1,11698:15574689,21825537:225953 -k1,11698:16997330,21825537:225954 -k1,11698:19821786,21825537:225953 -k1,11698:23636491,21825537:225954 -k1,11698:25582109,21825537:225953 -k1,11698:26617433,21825537:225954 -k1,11698:28971995,21825537:225953 -k1,11698:32583029,21825537:0 -) -(1,11699:6630773,22690617:25952256,513147,134348 -k1,11698:9416709,22690617:225444 -k1,11698:10328314,22690617:225443 -k1,11698:14617645,22690617:225444 -k1,11698:15790740,22690617:225444 -k1,11698:19418812,22690617:225443 -k1,11698:21654245,22690617:225444 -k1,11698:22898773,22690617:225443 -k1,11698:25819713,22690617:225444 -k1,11698:27795624,22690617:225444 -k1,11698:29804302,22690617:225443 -k1,11698:31048831,22690617:225444 -k1,11699:32583029,22690617:0 -) -(1,11699:6630773,23555697:25952256,505283,134348 -k1,11698:8139159,23555697:240920 -k1,11698:8911576,23555697:240920 -k1,11698:11020273,23555697:240921 -k1,11698:12151172,23555697:240920 -k1,11698:14712722,23555697:240920 -k1,11698:16964287,23555697:240920 -k1,11698:18196768,23555697:240921 -k1,11698:20642975,23555697:240920 -k1,11698:21570057,23555697:240920 -k1,11698:25213606,23555697:240920 -k1,11698:26105955,23555697:240921 -k1,11698:27365960,23555697:240920 -k1,11698:31391584,23555697:240920 -k1,11698:32583029,23555697:0 -) -(1,11699:6630773,24420777:25952256,513147,134348 -g1,11698:8343228,24420777 -g1,11698:10240495,24420777 -g1,11698:13495012,24420777 -g1,11698:14713326,24420777 -g1,11698:16408742,24420777 -g1,11698:18617960,24420777 -g1,11698:19836274,24420777 -k1,11699:32583029,24420777:9998831 -g1,11699:32583029,24420777 -) -(1,11701:6630773,25285857:25952256,513147,134348 -h1,11700:6630773,25285857:983040,0,0 -k1,11700:9155370,25285857:181030 -k1,11700:12362198,25285857:181031 -k1,11700:13734673,25285857:181030 -k1,11700:16992618,25285857:181030 -k1,11700:18165208,25285857:181030 -k1,11700:20727817,25285857:181031 -k1,11700:22644240,25285857:181030 -k1,11700:25520766,25285857:181030 -(1,11700:25520766,25285857:0,459977,115847 -r1,11760:29044438,25285857:3523672,575824,115847 -k1,11700:25520766,25285857:-3523672 -) -(1,11700:25520766,25285857:3523672,459977,115847 -k1,11700:25520766,25285857:3277 -h1,11700:29041161,25285857:0,411205,112570 -) -k1,11700:29399139,25285857:181031 -k1,11700:30771614,25285857:181030 -k1,11700:32583029,25285857:0 -) -(1,11701:6630773,26150937:25952256,505283,134348 -k1,11700:7969019,26150937:192021 -k1,11700:9292847,26150937:192021 -k1,11700:11186838,26150937:192021 -k1,11700:13338385,26150937:192021 -k1,11700:14146444,26150937:192021 -k1,11700:14753301,26150937:192014 -k1,11700:15706849,26150937:192020 -k1,11700:19544638,26150937:192021 -k1,11700:20388087,26150937:192021 -k1,11700:20935968,26150937:192021 -k1,11700:23639329,26150937:192021 -k1,11700:25743035,26150937:192021 -k1,11700:26562891,26150937:192021 -k1,11700:27773997,26150937:192021 -k1,11700:30627435,26150937:192021 -k1,11701:32583029,26150937:0 -) -(1,11701:6630773,27016017:25952256,513147,134348 -(1,11700:6630773,27016017:0,414482,115847 -r1,11760:6989039,27016017:358266,530329,115847 -k1,11700:6630773,27016017:-358266 -) -(1,11700:6630773,27016017:358266,414482,115847 -k1,11700:6630773,27016017:3277 -h1,11700:6985762,27016017:0,411205,112570 -) -k1,11700:7163770,27016017:174731 -k1,11700:8529946,27016017:174731 -(1,11700:8529946,27016017:0,414482,115847 -r1,11760:8888212,27016017:358266,530329,115847 -k1,11700:8529946,27016017:-358266 -) -(1,11700:8529946,27016017:358266,414482,115847 -k1,11700:8529946,27016017:3277 -h1,11700:8884935,27016017:0,411205,112570 -) -k1,11700:9062943,27016017:174731 -k1,11700:10229234,27016017:174731 -k1,11700:11870661,27016017:174731 -k1,11700:14174001,27016017:174731 -k1,11700:18133436,27016017:174731 -k1,11700:18991052,27016017:174731 -k1,11700:21234099,27016017:174731 -k1,11700:22922056,27016017:174731 -k1,11700:25106776,27016017:174731 -k1,11700:26300592,27016017:174731 -k1,11700:29170819,27016017:174731 -k1,11700:30293201,27016017:174731 -k1,11700:32583029,27016017:0 -) -(1,11701:6630773,27881097:25952256,513147,134348 -g1,11700:8114508,27881097 -g1,11700:9446199,27881097 -g1,11700:10393194,27881097 -g1,11700:13353455,27881097 -g1,11700:14238846,27881097 -g1,11700:17867574,27881097 -g1,11700:19764841,27881097 -g1,11700:20983155,27881097 -g1,11700:23877880,27881097 -g1,11700:24608606,27881097 -k1,11701:32583029,27881097:6054219 -g1,11701:32583029,27881097 -) -(1,11703:6630773,28746177:25952256,513147,126483 -h1,11702:6630773,28746177:983040,0,0 -g1,11702:10602910,28746177 -(1,11702:10602910,28746177:0,459977,115847 -r1,11760:12719735,28746177:2116825,575824,115847 -k1,11702:10602910,28746177:-2116825 -) -(1,11702:10602910,28746177:2116825,459977,115847 -k1,11702:10602910,28746177:3277 -h1,11702:12716458,28746177:0,411205,112570 -) -g1,11702:12918964,28746177 -g1,11702:14219198,28746177 -g1,11702:15590866,28746177 -g1,11702:17918704,28746177 -g1,11702:21902637,28746177 -(1,11702:21902637,28746177:0,414482,115847 -r1,11760:22260903,28746177:358266,530329,115847 -k1,11702:21902637,28746177:-358266 -) -(1,11702:21902637,28746177:358266,414482,115847 -k1,11702:21902637,28746177:3277 -h1,11702:22257626,28746177:0,411205,112570 -) -g1,11702:22460132,28746177 -g1,11702:23850806,28746177 -(1,11702:23850806,28746177:0,414482,115847 -r1,11760:24209072,28746177:358266,530329,115847 -k1,11702:23850806,28746177:-358266 -) -(1,11702:23850806,28746177:358266,414482,115847 -k1,11702:23850806,28746177:3277 -h1,11702:24205795,28746177:0,411205,112570 -) -k1,11703:32583029,28746177:8321529 -g1,11703:32583029,28746177 -) -v1,11705:6630773,29431032:0,393216,0 -(1,11709:6630773,29771715:25952256,733899,196608 -g1,11709:6630773,29771715 -g1,11709:6630773,29771715 -g1,11709:6434165,29771715 -(1,11709:6434165,29771715:0,733899,196608 -r1,11760:32779637,29771715:26345472,930507,196608 -k1,11709:6434165,29771715:-26345472 -) -(1,11709:6434165,29771715:26345472,733899,196608 -[1,11709:6630773,29771715:25952256,537291,0 -(1,11707:6630773,29665469:25952256,431045,106246 -(1,11706:6630773,29665469:0,0,0 -g1,11706:6630773,29665469 -g1,11706:6630773,29665469 -g1,11706:6303093,29665469 -(1,11706:6303093,29665469:0,0,0 -) -g1,11706:6630773,29665469 -) -g1,11707:8290543,29665469 -g1,11707:9286405,29665469 -g1,11707:13269852,29665469 -g1,11707:14929622,29665469 -g1,11707:15593530,29665469 -h1,11707:16257438,29665469:0,0,0 -k1,11707:32583029,29665469:16325591 -g1,11707:32583029,29665469 -) -] -) -g1,11709:32583029,29771715 -g1,11709:6630773,29771715 -g1,11709:6630773,29771715 -g1,11709:32583029,29771715 -g1,11709:32583029,29771715 -) -h1,11709:6630773,29968323:0,0,0 -(1,11713:6630773,30833403:25952256,505283,134348 -h1,11712:6630773,30833403:983040,0,0 -k1,11712:9665223,30833403:268175 -k1,11712:10801750,30833403:268175 -k1,11712:12169619,30833403:268175 -(1,11712:12169619,30833403:0,459977,115847 -r1,11760:14286444,30833403:2116825,575824,115847 -k1,11712:12169619,30833403:-2116825 -) -(1,11712:12169619,30833403:2116825,459977,115847 -k1,11712:12169619,30833403:3277 -h1,11712:14283167,30833403:0,411205,112570 -) -k1,11712:14554620,30833403:268176 -k1,11712:16216746,30833403:268175 -(1,11712:16216746,30833403:0,424981,115847 -r1,11760:16575012,30833403:358266,540828,115847 -k1,11712:16216746,30833403:-358266 -) -(1,11712:16216746,30833403:358266,424981,115847 -k1,11712:16216746,30833403:3277 -h1,11712:16571735,30833403:0,411205,112570 -) -k1,11712:16843187,30833403:268175 -k1,11712:18302807,30833403:268175 -(1,11712:18302807,30833403:0,435480,115847 -r1,11760:18661073,30833403:358266,551327,115847 -k1,11712:18302807,30833403:-358266 -) -(1,11712:18302807,30833403:358266,435480,115847 -k1,11712:18302807,30833403:3277 -h1,11712:18657796,30833403:0,411205,112570 -) -k1,11712:18929248,30833403:268175 -k1,11712:19883585,30833403:268175 -k1,11712:23728061,30833403:268176 -k1,11712:25015321,30833403:268175 -k1,11712:29347383,30833403:268175 -k1,11712:30900064,30833403:268175 -k1,11712:32583029,30833403:0 -) -(1,11713:6630773,31698483:25952256,505283,126483 -k1,11712:8511363,31698483:217942 -k1,11712:9260803,31698483:217943 -(1,11712:9260803,31698483:0,435480,115847 -r1,11760:11025917,31698483:1765114,551327,115847 -k1,11712:9260803,31698483:-1765114 -) -(1,11712:9260803,31698483:1765114,435480,115847 -g1,11712:9967504,31698483 -g1,11712:10670928,31698483 -h1,11712:11022640,31698483:0,411205,112570 -) -k1,11712:11243859,31698483:217942 -k1,11712:12653247,31698483:217943 -k1,11712:13890274,31698483:217942 -k1,11712:15788560,31698483:217943 -k1,11712:18785229,31698483:217942 -k1,11712:19534669,31698483:217943 -(1,11712:19534669,31698483:0,435480,115847 -r1,11760:20244647,31698483:709978,551327,115847 -k1,11712:19534669,31698483:-709978 -) -(1,11712:19534669,31698483:709978,435480,115847 -k1,11712:19534669,31698483:3277 -h1,11712:20241370,31698483:0,411205,112570 -) -k1,11712:20636259,31698483:217942 -k1,11712:21482037,31698483:217943 -k1,11712:22903220,31698483:217942 -k1,11712:25782580,31698483:217943 -k1,11712:27019607,31698483:217942 -k1,11712:30016277,31698483:217943 -k1,11712:31914562,31698483:217942 -k1,11712:32583029,31698483:0 -) -(1,11713:6630773,32563563:25952256,513147,134348 -k1,11712:8700531,32563563:226886 -k1,11712:9458913,32563563:226885 -k1,11712:12209590,32563563:226886 -k1,11712:13508645,32563563:226886 -k1,11712:14193627,32563563:226885 -k1,11712:16189330,32563563:226886 -k1,11712:17891431,32563563:226886 -k1,11712:19628266,32563563:226885 -k1,11712:22629946,32563563:226886 -k1,11712:23508260,32563563:226886 -k1,11712:24091005,32563563:226885 -k1,11712:26829231,32563563:226886 -k1,11712:27739002,32563563:226886 -k1,11712:29479113,32563563:226885 -k1,11712:30322037,32563563:226886 -k1,11712:32583029,32563563:0 -) -(1,11713:6630773,33428643:25952256,505283,134348 -g1,11712:11224191,33428643 -g1,11712:13433409,33428643 -g1,11712:14651723,33428643 -g1,11712:16940895,33428643 -k1,11713:32583029,33428643:12403345 -g1,11713:32583029,33428643 -) -v1,11715:6630773,34113498:0,393216,0 -(1,11722:6630773,35243684:25952256,1523402,196608 -g1,11722:6630773,35243684 -g1,11722:6630773,35243684 -g1,11722:6434165,35243684 -(1,11722:6434165,35243684:0,1523402,196608 -r1,11760:32779637,35243684:26345472,1720010,196608 -k1,11722:6434165,35243684:-26345472 -) -(1,11722:6434165,35243684:26345472,1523402,196608 -[1,11722:6630773,35243684:25952256,1326794,0 -(1,11717:6630773,34347935:25952256,431045,106246 -(1,11716:6630773,34347935:0,0,0 -g1,11716:6630773,34347935 -g1,11716:6630773,34347935 -g1,11716:6303093,34347935 -(1,11716:6303093,34347935:0,0,0 -) -g1,11716:6630773,34347935 -) -k1,11717:6630773,34347935:0 -g1,11717:8954451,34347935 -g1,11717:9618359,34347935 -g1,11717:10614221,34347935 -g1,11717:11278129,34347935 -g1,11717:11942037,34347935 -h1,11717:12605945,34347935:0,0,0 -k1,11717:32583029,34347935:19977084 -g1,11717:32583029,34347935 -) -(1,11721:6630773,35163862:25952256,424439,79822 -(1,11719:6630773,35163862:0,0,0 -g1,11719:6630773,35163862 -g1,11719:6630773,35163862 -g1,11719:6303093,35163862 -(1,11719:6303093,35163862:0,0,0 -) -g1,11719:6630773,35163862 -) -g1,11721:7626635,35163862 -g1,11721:8954451,35163862 -h1,11721:9618359,35163862:0,0,0 -k1,11721:32583029,35163862:22964670 -g1,11721:32583029,35163862 -) -] -) -g1,11722:32583029,35243684 -g1,11722:6630773,35243684 -g1,11722:6630773,35243684 -g1,11722:32583029,35243684 -g1,11722:32583029,35243684 -) -h1,11722:6630773,35440292:0,0,0 -v1,11726:6630773,36305372:0,393216,0 -(1,11736:6630773,38484850:25952256,2572694,0 -g1,11736:6630773,38484850 -g1,11736:6237557,38484850 -r1,11760:6368629,38484850:131072,2572694,0 -g1,11736:6567858,38484850 -g1,11736:6764466,38484850 -[1,11736:6764466,38484850:25818563,2572694,0 -(1,11727:6764466,36577849:25818563,665693,196608 -(1,11726:6764466,36577849:0,665693,196608 -r1,11760:7868133,36577849:1103667,862301,196608 -k1,11726:6764466,36577849:-1103667 -) -(1,11726:6764466,36577849:1103667,665693,196608 -) -g1,11726:8067362,36577849 -g1,11726:9385291,36577849 -g1,11726:11218333,36577849 -g1,11726:11949059,36577849 -g1,11726:13167373,36577849 -g1,11726:17430489,36577849 -g1,11726:18914224,36577849 -g1,11726:20796418,36577849 -g1,11726:22988597,36577849 -g1,11726:23803864,36577849 -g1,11726:25699820,36577849 -g1,11726:28594545,36577849 -k1,11727:32583029,36577849:2264232 -g1,11727:32583029,36577849 -) -v1,11729:6764466,37262704:0,393216,0 -(1,11734:6764466,38288242:25818563,1418754,196608 -g1,11734:6764466,38288242 -g1,11734:6764466,38288242 -g1,11734:6567858,38288242 -(1,11734:6567858,38288242:0,1418754,196608 -r1,11760:32779637,38288242:26211779,1615362,196608 -k1,11734:6567857,38288242:-26211780 -) -(1,11734:6567858,38288242:26211779,1418754,196608 -[1,11734:6764466,38288242:25818563,1222146,0 -(1,11731:6764466,37497141:25818563,431045,106246 -(1,11730:6764466,37497141:0,0,0 -g1,11730:6764466,37497141 -g1,11730:6764466,37497141 -g1,11730:6436786,37497141 -(1,11730:6436786,37497141:0,0,0 -) -g1,11730:6764466,37497141 -) -k1,11731:6764466,37497141:0 -g1,11731:9088144,37497141 -g1,11731:9752052,37497141 -g1,11731:11079868,37497141 -g1,11731:11743776,37497141 -g1,11731:12407684,37497141 -h1,11731:13403546,37497141:0,0,0 -k1,11731:32583030,37497141:19179484 -g1,11731:32583030,37497141 -) -(1,11732:6764466,38181996:25818563,431045,106246 -h1,11732:6764466,38181996:0,0,0 -g1,11732:9088144,38181996 -g1,11732:9752052,38181996 -g1,11732:11079868,38181996 -g1,11732:11743776,38181996 -g1,11732:12407684,38181996 -g1,11732:13735500,38181996 -g1,11732:14399408,38181996 -h1,11732:14731362,38181996:0,0,0 -k1,11732:32583030,38181996:17851668 -g1,11732:32583030,38181996 -) -] -) -g1,11734:32583029,38288242 -g1,11734:6764466,38288242 -g1,11734:6764466,38288242 -g1,11734:32583029,38288242 -g1,11734:32583029,38288242 -) -h1,11734:6764466,38484850:0,0,0 -] -g1,11736:32583029,38484850 -) -h1,11736:6630773,38484850:0,0,0 -v1,11739:6630773,39349930:0,393216,0 -(1,11740:6630773,42314210:25952256,3357496,0 -g1,11740:6630773,42314210 -g1,11740:6237557,42314210 -r1,11760:6368629,42314210:131072,3357496,0 -g1,11740:6567858,42314210 -g1,11740:6764466,42314210 -[1,11740:6764466,42314210:25818563,3357496,0 -(1,11740:6764466,39711107:25818563,754393,260573 -(1,11739:6764466,39711107:0,754393,260573 -r1,11760:7856192,39711107:1091726,1014966,260573 -k1,11739:6764466,39711107:-1091726 -) -(1,11739:6764466,39711107:1091726,754393,260573 -) -k1,11739:8072317,39711107:216125 -k1,11739:8399997,39711107:327680 -k1,11739:10106412,39711107:216126 -k1,11739:12592704,39711107:216125 -k1,11739:13827915,39711107:216126 -k1,11739:17560702,39711107:216125 -k1,11739:19786817,39711107:216126 -k1,11739:21022027,39711107:216125 -k1,11739:23933649,39711107:216126 -k1,11739:25726570,39711107:216125 -k1,11739:26757964,39711107:216126 -k1,11739:28449304,39711107:216125 -k1,11739:30696391,39711107:216126 -k1,11739:31563944,39711107:216125 -k1,11739:32583029,39711107:0 -) -(1,11740:6764466,40576187:25818563,513147,134348 -k1,11739:11034324,40576187:212524 -k1,11739:11862885,40576187:212523 -k1,11739:13960880,40576187:212524 -k1,11739:15192489,40576187:212524 -k1,11739:18100509,40576187:212524 -k1,11739:18844529,40576187:212523 -k1,11739:21098499,40576187:212524 -k1,11739:21769120,40576187:212524 -k1,11739:22513140,40576187:212523 -k1,11739:24611135,40576187:212524 -k1,11739:25475087,40576187:212524 -k1,11739:27124816,40576187:212524 -k1,11739:28103455,40576187:212523 -k1,11739:30024503,40576187:212524 -k1,11739:32583029,40576187:0 -) -(1,11740:6764466,41441267:25818563,513147,126483 -k1,11739:7983788,41441267:200237 -k1,11739:10879522,41441267:200238 -k1,11739:14864463,41441267:200237 -k1,11739:16256146,41441267:200238 -k1,11739:18467028,41441267:200237 -k1,11739:19433381,41441267:200237 -k1,11739:21644264,41441267:200238 -k1,11739:22495929,41441267:200237 -k1,11739:23715251,41441267:200237 -k1,11739:25824553,41441267:200238 -k1,11739:27405634,41441267:200237 -k1,11739:30079201,41441267:200238 -k1,11739:31563944,41441267:200237 -k1,11739:32583029,41441267:0 -) -(1,11740:6764466,42306347:25818563,513147,7863 -g1,11739:8674840,42306347 -g1,11739:9533361,42306347 -g1,11739:10751675,42306347 -g1,11739:13646400,42306347 -g1,11739:14949911,42306347 -g1,11739:16654502,42306347 -g1,11739:17311828,42306347 -g1,11739:18197219,42306347 -g1,11739:18752308,42306347 -g1,11739:20639089,42306347 -g1,11739:21998305,42306347 -g1,11739:23591485,42306347 -g1,11739:24600084,42306347 -g1,11739:26098892,42306347 -k1,11740:32583029,42306347:4330624 -g1,11740:32583029,42306347 -) -] -g1,11740:32583029,42314210 -) -h1,11740:6630773,42314210:0,0,0 -(1,11760:6630773,43179290:25952256,513147,126483 -h1,11759:6630773,43179290:983040,0,0 -k1,11759:8450489,43179290:208841 -k1,11759:9247844,43179290:208842 -k1,11759:12973347,43179290:208841 -k1,11759:15192177,43179290:208841 -k1,11759:16420103,43179290:208841 -k1,11759:19324441,43179290:208842 -k1,11759:21820489,43179290:208841 -k1,11759:22844598,43179290:208841 -k1,11759:24119710,43179290:208841 -k1,11759:26107854,43179290:208842 -k1,11759:28731041,43179290:208841 -k1,11759:30071689,43179290:208841 -k1,11759:32583029,43179290:0 -) -(1,11760:6630773,44044370:25952256,513147,126483 -k1,11759:9299999,44044370:287648 -k1,11759:11953498,44044370:287649 -k1,11759:13260231,44044370:287648 -k1,11759:16417046,44044370:287649 -k1,11759:17723779,44044370:287648 -k1,11759:19854300,44044370:287649 -k1,11759:21709569,44044370:287648 -k1,11759:23016302,44044370:287648 -k1,11759:27367838,44044370:287649 -k1,11759:28186983,44044370:287648 -k1,11759:31253359,44044370:287649 -k1,11759:32227169,44044370:287648 -k1,11759:32583029,44044370:0 -) -(1,11760:6630773,44909450:25952256,513147,134348 -k1,11759:8711448,44909450:244356 -k1,11759:10152490,44909450:244355 -k1,11759:13013043,44909450:244356 -k1,11759:13873436,44909450:244355 -k1,11759:16102878,44909450:244356 -h1,11759:17073466,44909450:0,0,0 -k1,11759:17317821,44909450:244355 -k1,11759:20561760,44909450:244356 -k1,11759:21161976,44909450:244356 -k1,11759:24101827,44909450:244355 -k1,11759:25630689,44909450:244356 -k1,11759:26976049,44909450:244355 -k1,11759:28029775,44909450:244356 -k1,11759:29489823,44909450:244355 -k1,11759:31896867,44909450:244356 -k1,11759:32583029,44909450:0 -) -] -(1,11760:32583029,45706769:0,0,0 -g1,11760:32583029,45706769 -) -) -] -(1,11760:6630773,47279633:25952256,0,0 -h1,11760:6630773,47279633:25952256,0,0 -) -] -(1,11760:4262630,4025873:0,0,0 -[1,11760:-473656,4025873:0,0,0 -(1,11760:-473656,-710413:0,0,0 -(1,11760:-473656,-710413:0,0,0 -g1,11760:-473656,-710413 -) -g1,11760:-473656,-710413 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 +) +] +) +) +) +] +[1,11759:3078558,4812305:0,0,0 +(1,11759:3078558,49800853:0,16384,2228224 +g1,11759:29030814,49800853 +g1,11759:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,11759:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,11759:37855564,49800853:1179648,16384,0 +) +) +k1,11759:3078556,49800853:-34777008 +) +] +g1,11759:6630773,4812305 +k1,11759:23588214,4812305:15762064 +g1,11759:25210885,4812305 +g1,11759:25997972,4812305 +g1,11759:28481131,4812305 +g1,11759:30046786,4812305 +) +) +] +[1,11759:6630773,45706769:25952256,40108032,0 +(1,11759:6630773,45706769:25952256,40108032,0 +(1,11759:6630773,45706769:0,0,0 +g1,11759:6630773,45706769 +) +[1,11759:6630773,45706769:25952256,40108032,0 +(1,11694:6630773,6254097:25952256,513147,134348 +h1,11693:6630773,6254097:983040,0,0 +k1,11693:9063116,6254097:252616 +k1,11693:10907602,6254097:252616 +k1,11693:12395572,6254097:252616 +k1,11693:13307480,6254097:252616 +k1,11693:16585893,6254097:252616 +k1,11693:17370006,6254097:252616 +k1,11693:18907129,6254097:252617 +k1,11693:19819037,6254097:252616 +k1,11693:23144636,6254097:252616 +k1,11693:24167955,6254097:252616 +k1,11693:28009322,6254097:252616 +k1,11693:30933841,6254097:252616 +k1,11693:31931601,6254097:252616 +k1,11693:32583029,6254097:0 +) +(1,11694:6630773,7119177:25952256,513147,134348 +k1,11693:8619493,7119177:259225 +k1,11693:11885509,7119177:259224 +k1,11693:14201254,7119177:259225 +k1,11693:15119770,7119177:259224 +k1,11693:16875182,7119177:259225 +k1,11693:19564481,7119177:259224 +k1,11693:20482998,7119177:259225 +k1,11693:24465978,7119177:259224 +k1,11693:27479026,7119177:259225 +k1,11693:28757335,7119177:259224 +k1,11693:30670033,7119177:259225 +k1,11694:32583029,7119177:0 +) +(1,11694:6630773,7984257:25952256,513147,126483 +k1,11693:8457614,7984257:229073 +k1,11693:9496058,7984257:229074 +k1,11693:12487474,7984257:229073 +k1,11693:14279582,7984257:229074 +k1,11693:15705342,7984257:229073 +k1,11693:18395947,7984257:229073 +k1,11693:19276449,7984257:229074 +k1,11693:21235017,7984257:229073 +k1,11693:24593434,7984257:229073 +k1,11693:25481800,7984257:229074 +k1,11693:27912883,7984257:229073 +k1,11693:30198477,7984257:229074 +k1,11693:31086842,7984257:229073 +k1,11693:32583029,7984257:0 +) +(1,11694:6630773,8849337:25952256,513147,134348 +k1,11693:10406521,8849337:259086 +k1,11693:11657166,8849337:259085 +k1,11693:13200758,8849337:259086 +k1,11693:14065396,8849337:259085 +k1,11693:14790443,8849337:259086 +k1,11693:16068613,8849337:259085 +k1,11693:19438693,8849337:259086 +k1,11693:20380663,8849337:259085 +k1,11693:25696507,8849337:259086 +k1,11693:27816159,8849337:259085 +k1,11693:28726673,8849337:259086 +k1,11693:29733524,8849337:259085 +k1,11694:32583029,8849337:0 +) +(1,11694:6630773,9714417:25952256,513147,134348 +k1,11693:8117713,9714417:244377 +k1,11693:9013517,9714417:244376 +k1,11693:10053501,9714417:244377 +k1,11693:10653737,9714417:244376 +k1,11693:12087592,9714417:244377 +k1,11693:13014853,9714417:244376 +k1,11693:15979629,9714417:244377 +k1,11693:16755502,9714417:244376 +k1,11693:18334847,9714417:244377 +k1,11693:19230651,9714417:244376 +k1,11693:21190761,9714417:244377 +k1,11693:22991617,9714417:244376 +k1,11693:23852032,9714417:244377 +k1,11693:24452268,9714417:244376 +k1,11693:26569664,9714417:244377 +k1,11693:28650359,9714417:244376 +k1,11693:29500289,9714417:244377 +k1,11693:31914562,9714417:244376 +k1,11693:32583029,9714417:0 +) +(1,11694:6630773,10579497:25952256,513147,134348 +k1,11693:8289251,10579497:204889 +k1,11693:10474638,10579497:204889 +k1,11693:11338819,10579497:204889 +k1,11693:14328333,10579497:204889 +k1,11693:16029409,10579497:204889 +k1,11693:17338581,10579497:204890 +k1,11693:19986652,10579497:204889 +k1,11693:22953884,10579497:204889 +k1,11693:25478092,10579497:204889 +k1,11693:26334409,10579497:204889 +k1,11693:31391584,10579497:204889 +k1,11693:32583029,10579497:0 +) +(1,11694:6630773,11444577:25952256,513147,134348 +k1,11693:11039619,11444577:224372 +k1,11693:12957440,11444577:224371 +k1,11693:13787365,11444577:224372 +k1,11693:17600487,11444577:224371 +k1,11693:19016304,11444577:224372 +k1,11693:21761845,11444577:224371 +k1,11693:22645509,11444577:224372 +k1,11693:23225740,11444577:224371 +k1,11693:26126602,11444577:224372 +k1,11693:27618439,11444577:224371 +k1,11693:30194898,11444577:224372 +k1,11693:32583029,11444577:0 +) +(1,11694:6630773,12309657:25952256,505283,134348 +k1,11693:9089744,12309657:270068 +k1,11693:11078165,12309657:270067 +k1,11693:12742184,12309657:270068 +k1,11693:15510484,12309657:270068 +k1,11693:16799637,12309657:270068 +k1,11693:18565891,12309657:270067 +k1,11693:23809486,12309657:270068 +k1,11693:24730982,12309657:270068 +k1,11693:27725382,12309657:270068 +k1,11693:28601002,12309657:270067 +k1,11693:31073080,12309657:270068 +k1,11694:32583029,12309657:0 +) +(1,11694:6630773,13174737:25952256,513147,134348 +k1,11693:8616633,13174737:260297 +k1,11693:10922964,13174737:260297 +k1,11693:12202346,13174737:260297 +k1,11693:14293719,13174737:260297 +k1,11693:15537056,13174737:260297 +k1,11693:17995431,13174737:260297 +k1,11693:19447173,13174737:260297 +k1,11693:20910711,13174737:260297 +k1,11693:23217042,13174737:260297 +k1,11693:26973029,13174737:260297 +k1,11693:31384376,13174737:260297 +k1,11693:32583029,13174737:0 +) +(1,11694:6630773,14039817:25952256,513147,126483 +k1,11693:8534952,14039817:253982 +k1,11693:11328453,14039817:253981 +k1,11693:12773880,14039817:253982 +k1,11693:14634804,14039817:253981 +k1,11693:16928266,14039817:253982 +k1,11693:17787800,14039817:253981 +k1,11693:19435733,14039817:253982 +k1,11693:23562892,14039817:253981 +k1,11693:25525398,14039817:253982 +k1,11693:26970824,14039817:253981 +k1,11693:29557232,14039817:253982 +k1,11693:32583029,14039817:0 +) +(1,11694:6630773,14904897:25952256,513147,134348 +g1,11693:9608729,14904897 +k1,11694:32583029,14904897:20740178 +g1,11694:32583029,14904897 +) +(1,11696:6630773,15769977:25952256,513147,134348 +h1,11695:6630773,15769977:983040,0,0 +k1,11695:9333377,15769977:298743 +k1,11695:11125031,15769977:298744 +k1,11695:12754155,15769977:298743 +k1,11695:13668936,15769977:298743 +k1,11695:16678904,15769977:298744 +k1,11695:18707142,15769977:298743 +k1,11695:22012677,15769977:298743 +k1,11695:23500244,15769977:298744 +k1,11695:24458279,15769977:298743 +k1,11695:26580234,15769977:298743 +k1,11695:28150375,15769977:298743 +k1,11695:30394228,15769977:298744 +k1,11695:31048831,15769977:298743 +k1,11696:32583029,15769977:0 +) +(1,11696:6630773,16635057:25952256,505283,134348 +k1,11695:8088394,16635057:190155 +k1,11695:11640546,16635057:190155 +k1,11695:12849786,16635057:190155 +k1,11695:16556603,16635057:190155 +k1,11695:18031264,16635057:190155 +k1,11695:20177669,16635057:190155 +k1,11695:21898090,16635057:190155 +k1,11695:22739673,16635057:190155 +k1,11695:23677594,16635057:190155 +k1,11695:26826044,16635057:190155 +k1,11695:28207644,16635057:190155 +k1,11695:29851388,16635057:190155 +k1,11695:31198253,16635057:190155 +k1,11696:32583029,16635057:0 +) +(1,11696:6630773,17500137:25952256,513147,134348 +k1,11695:9249491,17500137:202406 +k1,11695:10470981,17500137:202405 +k1,11695:13368883,17500137:202406 +k1,11695:14187327,17500137:202406 +k1,11695:15898371,17500137:202405 +k1,11695:17937096,17500137:202406 +k1,11695:19093050,17500137:202405 +k1,11695:20770671,17500137:202406 +k1,11695:22483027,17500137:202406 +k1,11695:24775375,17500137:202405 +k1,11695:25392621,17500137:202403 +k1,11695:28620823,17500137:202405 +k1,11695:29506114,17500137:202406 +k1,11695:32583029,17500137:0 +) +(1,11696:6630773,18365217:25952256,513147,126483 +k1,11695:7414296,18365217:167485 +k1,11695:9744470,18365217:167486 +k1,11695:11613270,18365217:167485 +k1,11695:14442172,18365217:167485 +k1,11695:15225696,18365217:167486 +k1,11695:16596422,18365217:167485 +k1,11695:18519618,18365217:167486 +k1,11695:20235719,18365217:167485 +k1,11695:21271556,18365217:167485 +k1,11695:22571504,18365217:167486 +k1,11695:24123109,18365217:167485 +k1,11695:26181963,18365217:167485 +k1,11695:26880946,18365217:167486 +k1,11695:28378812,18365217:167485 +k1,11695:29197726,18365217:167486 +k1,11695:31326048,18365217:167485 +k1,11695:32583029,18365217:0 +) +(1,11696:6630773,19230297:25952256,513147,7863 +g1,11695:9855799,19230297 +g1,11695:10714320,19230297 +g1,11695:12011277,19230297 +k1,11696:32583030,19230297:19188944 +g1,11696:32583030,19230297 +) +(1,11698:6630773,20095377:25952256,505283,134348 +h1,11697:6630773,20095377:983040,0,0 +k1,11697:9076795,20095377:266295 +k1,11697:11959286,20095377:266294 +k1,11697:12841619,20095377:266295 +k1,11697:15386600,20095377:266294 +h1,11697:16357188,20095377:0,0,0 +k1,11697:16623483,20095377:266295 +k1,11697:17699148,20095377:266295 +k1,11697:19463595,20095377:266294 +h1,11697:20658972,20095377:0,0,0 +k1,11697:20925267,20095377:266295 +k1,11697:24191144,20095377:266294 +k1,11697:24813299,20095377:266295 +k1,11697:28493363,20095377:266294 +k1,11697:32119689,20095377:266295 +k1,11697:32583029,20095377:0 +) +(1,11698:6630773,20960457:25952256,513147,126483 +k1,11697:9604142,20960457:277873 +k1,11697:10413511,20960457:277872 +k1,11697:11047244,20960457:277873 +k1,11697:12821303,20960457:277872 +k1,11697:16459207,20960457:277873 +k1,11697:18861757,20960457:277873 +k1,11697:19822514,20960457:277872 +k1,11697:23687828,20960457:277873 +k1,11697:25250206,20960457:277872 +k1,11697:26059576,20960457:277873 +k1,11697:28225540,20960457:277872 +k1,11697:31015408,20960457:277873 +k1,11697:32583029,20960457:0 +) +(1,11698:6630773,21825537:25952256,513147,134348 +k1,11697:7875811,21825537:225953 +k1,11697:11117732,21825537:225954 +k1,11697:15574689,21825537:225953 +k1,11697:16997330,21825537:225954 +k1,11697:19821786,21825537:225953 +k1,11697:23636491,21825537:225954 +k1,11697:25582109,21825537:225953 +k1,11697:26617433,21825537:225954 +k1,11697:28971995,21825537:225953 +k1,11697:32583029,21825537:0 +) +(1,11698:6630773,22690617:25952256,513147,134348 +k1,11697:9416709,22690617:225444 +k1,11697:10328314,22690617:225443 +k1,11697:14617645,22690617:225444 +k1,11697:15790740,22690617:225444 +k1,11697:19418812,22690617:225443 +k1,11697:21654245,22690617:225444 +k1,11697:22898773,22690617:225443 +k1,11697:25819713,22690617:225444 +k1,11697:27795624,22690617:225444 +k1,11697:29804302,22690617:225443 +k1,11697:31048831,22690617:225444 +k1,11698:32583029,22690617:0 +) +(1,11698:6630773,23555697:25952256,505283,134348 +k1,11697:8139159,23555697:240920 +k1,11697:8911576,23555697:240920 +k1,11697:11020273,23555697:240921 +k1,11697:12151172,23555697:240920 +k1,11697:14712722,23555697:240920 +k1,11697:16964287,23555697:240920 +k1,11697:18196768,23555697:240921 +k1,11697:20642975,23555697:240920 +k1,11697:21570057,23555697:240920 +k1,11697:25213606,23555697:240920 +k1,11697:26105955,23555697:240921 +k1,11697:27365960,23555697:240920 +k1,11697:31391584,23555697:240920 +k1,11697:32583029,23555697:0 +) +(1,11698:6630773,24420777:25952256,513147,134348 +g1,11697:8343228,24420777 +g1,11697:10240495,24420777 +g1,11697:13495012,24420777 +g1,11697:14713326,24420777 +g1,11697:16408742,24420777 +g1,11697:18617960,24420777 +g1,11697:19836274,24420777 +k1,11698:32583029,24420777:9998831 +g1,11698:32583029,24420777 +) +(1,11700:6630773,25285857:25952256,513147,134348 +h1,11699:6630773,25285857:983040,0,0 +k1,11699:9155370,25285857:181030 +k1,11699:12362198,25285857:181031 +k1,11699:13734673,25285857:181030 +k1,11699:16992618,25285857:181030 +k1,11699:18165208,25285857:181030 +k1,11699:20727817,25285857:181031 +k1,11699:22644240,25285857:181030 +k1,11699:25520766,25285857:181030 +(1,11699:25520766,25285857:0,459977,115847 +r1,11759:29044438,25285857:3523672,575824,115847 +k1,11699:25520766,25285857:-3523672 +) +(1,11699:25520766,25285857:3523672,459977,115847 +k1,11699:25520766,25285857:3277 +h1,11699:29041161,25285857:0,411205,112570 +) +k1,11699:29399139,25285857:181031 +k1,11699:30771614,25285857:181030 +k1,11699:32583029,25285857:0 +) +(1,11700:6630773,26150937:25952256,505283,134348 +k1,11699:7969019,26150937:192021 +k1,11699:9292847,26150937:192021 +k1,11699:11186838,26150937:192021 +k1,11699:13338385,26150937:192021 +k1,11699:14146444,26150937:192021 +k1,11699:14753301,26150937:192014 +k1,11699:15706849,26150937:192020 +k1,11699:19544638,26150937:192021 +k1,11699:20388087,26150937:192021 +k1,11699:20935968,26150937:192021 +k1,11699:23639329,26150937:192021 +k1,11699:25743035,26150937:192021 +k1,11699:26562891,26150937:192021 +k1,11699:27773997,26150937:192021 +k1,11699:30627435,26150937:192021 +k1,11700:32583029,26150937:0 +) +(1,11700:6630773,27016017:25952256,513147,134348 +(1,11699:6630773,27016017:0,414482,115847 +r1,11759:6989039,27016017:358266,530329,115847 +k1,11699:6630773,27016017:-358266 +) +(1,11699:6630773,27016017:358266,414482,115847 +k1,11699:6630773,27016017:3277 +h1,11699:6985762,27016017:0,411205,112570 +) +k1,11699:7163770,27016017:174731 +k1,11699:8529946,27016017:174731 +(1,11699:8529946,27016017:0,414482,115847 +r1,11759:8888212,27016017:358266,530329,115847 +k1,11699:8529946,27016017:-358266 +) +(1,11699:8529946,27016017:358266,414482,115847 +k1,11699:8529946,27016017:3277 +h1,11699:8884935,27016017:0,411205,112570 +) +k1,11699:9062943,27016017:174731 +k1,11699:10229234,27016017:174731 +k1,11699:11870661,27016017:174731 +k1,11699:14174001,27016017:174731 +k1,11699:18133436,27016017:174731 +k1,11699:18991052,27016017:174731 +k1,11699:21234099,27016017:174731 +k1,11699:22922056,27016017:174731 +k1,11699:25106776,27016017:174731 +k1,11699:26300592,27016017:174731 +k1,11699:29170819,27016017:174731 +k1,11699:30293201,27016017:174731 +k1,11699:32583029,27016017:0 +) +(1,11700:6630773,27881097:25952256,513147,134348 +g1,11699:8114508,27881097 +g1,11699:9446199,27881097 +g1,11699:10393194,27881097 +g1,11699:13353455,27881097 +g1,11699:14238846,27881097 +g1,11699:17867574,27881097 +g1,11699:19764841,27881097 +g1,11699:20983155,27881097 +g1,11699:23877880,27881097 +g1,11699:24608606,27881097 +k1,11700:32583029,27881097:6054219 +g1,11700:32583029,27881097 +) +(1,11702:6630773,28746177:25952256,513147,126483 +h1,11701:6630773,28746177:983040,0,0 +g1,11701:10602910,28746177 +(1,11701:10602910,28746177:0,459977,115847 +r1,11759:12719735,28746177:2116825,575824,115847 +k1,11701:10602910,28746177:-2116825 +) +(1,11701:10602910,28746177:2116825,459977,115847 +k1,11701:10602910,28746177:3277 +h1,11701:12716458,28746177:0,411205,112570 +) +g1,11701:12918964,28746177 +g1,11701:14219198,28746177 +g1,11701:15590866,28746177 +g1,11701:17918704,28746177 +g1,11701:21902637,28746177 +(1,11701:21902637,28746177:0,414482,115847 +r1,11759:22260903,28746177:358266,530329,115847 +k1,11701:21902637,28746177:-358266 +) +(1,11701:21902637,28746177:358266,414482,115847 +k1,11701:21902637,28746177:3277 +h1,11701:22257626,28746177:0,411205,112570 +) +g1,11701:22460132,28746177 +g1,11701:23850806,28746177 +(1,11701:23850806,28746177:0,414482,115847 +r1,11759:24209072,28746177:358266,530329,115847 +k1,11701:23850806,28746177:-358266 +) +(1,11701:23850806,28746177:358266,414482,115847 +k1,11701:23850806,28746177:3277 +h1,11701:24205795,28746177:0,411205,112570 +) +k1,11702:32583029,28746177:8321529 +g1,11702:32583029,28746177 +) +v1,11704:6630773,29431032:0,393216,0 +(1,11708:6630773,29771715:25952256,733899,196608 +g1,11708:6630773,29771715 +g1,11708:6630773,29771715 +g1,11708:6434165,29771715 +(1,11708:6434165,29771715:0,733899,196608 +r1,11759:32779637,29771715:26345472,930507,196608 +k1,11708:6434165,29771715:-26345472 +) +(1,11708:6434165,29771715:26345472,733899,196608 +[1,11708:6630773,29771715:25952256,537291,0 +(1,11706:6630773,29665469:25952256,431045,106246 +(1,11705:6630773,29665469:0,0,0 +g1,11705:6630773,29665469 +g1,11705:6630773,29665469 +g1,11705:6303093,29665469 +(1,11705:6303093,29665469:0,0,0 +) +g1,11705:6630773,29665469 +) +g1,11706:8290543,29665469 +g1,11706:9286405,29665469 +g1,11706:13269852,29665469 +g1,11706:14929622,29665469 +g1,11706:15593530,29665469 +h1,11706:16257438,29665469:0,0,0 +k1,11706:32583029,29665469:16325591 +g1,11706:32583029,29665469 +) +] +) +g1,11708:32583029,29771715 +g1,11708:6630773,29771715 +g1,11708:6630773,29771715 +g1,11708:32583029,29771715 +g1,11708:32583029,29771715 +) +h1,11708:6630773,29968323:0,0,0 +(1,11712:6630773,30833403:25952256,505283,134348 +h1,11711:6630773,30833403:983040,0,0 +k1,11711:9665223,30833403:268175 +k1,11711:10801750,30833403:268175 +k1,11711:12169619,30833403:268175 +(1,11711:12169619,30833403:0,459977,115847 +r1,11759:14286444,30833403:2116825,575824,115847 +k1,11711:12169619,30833403:-2116825 +) +(1,11711:12169619,30833403:2116825,459977,115847 +k1,11711:12169619,30833403:3277 +h1,11711:14283167,30833403:0,411205,112570 +) +k1,11711:14554620,30833403:268176 +k1,11711:16216746,30833403:268175 +(1,11711:16216746,30833403:0,424981,115847 +r1,11759:16575012,30833403:358266,540828,115847 +k1,11711:16216746,30833403:-358266 +) +(1,11711:16216746,30833403:358266,424981,115847 +k1,11711:16216746,30833403:3277 +h1,11711:16571735,30833403:0,411205,112570 +) +k1,11711:16843187,30833403:268175 +k1,11711:18302807,30833403:268175 +(1,11711:18302807,30833403:0,435480,115847 +r1,11759:18661073,30833403:358266,551327,115847 +k1,11711:18302807,30833403:-358266 +) +(1,11711:18302807,30833403:358266,435480,115847 +k1,11711:18302807,30833403:3277 +h1,11711:18657796,30833403:0,411205,112570 +) +k1,11711:18929248,30833403:268175 +k1,11711:19883585,30833403:268175 +k1,11711:23728061,30833403:268176 +k1,11711:25015321,30833403:268175 +k1,11711:29347383,30833403:268175 +k1,11711:30900064,30833403:268175 +k1,11711:32583029,30833403:0 +) +(1,11712:6630773,31698483:25952256,505283,126483 +k1,11711:8499785,31698483:206364 +k1,11711:9237647,31698483:206365 +(1,11711:9237647,31698483:0,435480,115847 +r1,11759:11002761,31698483:1765114,551327,115847 +k1,11711:9237647,31698483:-1765114 +) +(1,11711:9237647,31698483:1765114,435480,115847 +g1,11711:9944348,31698483 +g1,11711:10647772,31698483 +h1,11711:10999484,31698483:0,411205,112570 +) +k1,11711:11209125,31698483:206364 +k1,11711:12606935,31698483:206365 +k1,11711:13832384,31698483:206364 +k1,11711:15719092,31698483:206365 +k1,11711:18704183,31698483:206364 +k1,11711:19442045,31698483:206365 +(1,11711:19442045,31698483:0,435480,115847 +r1,11759:20152023,31698483:709978,551327,115847 +k1,11711:19442045,31698483:-709978 +) +(1,11711:19442045,31698483:709978,435480,115847 +k1,11711:19442045,31698483:3277 +h1,11711:20148746,31698483:0,411205,112570 +) +k1,11711:20532057,31698483:206364 +k1,11711:21366257,31698483:206365 +k1,11711:22775862,31698483:206364 +k1,11711:25817314,31698483:206365 +k1,11711:27042763,31698483:206364 +k1,11711:30027855,31698483:206365 +k1,11711:31914562,31698483:206364 +k1,11711:32583029,31698483:0 +) +(1,11712:6630773,32563563:25952256,513147,134348 +k1,11711:8700531,32563563:226886 +k1,11711:9458913,32563563:226885 +k1,11711:12209590,32563563:226886 +k1,11711:13508645,32563563:226886 +k1,11711:14193627,32563563:226885 +k1,11711:16189330,32563563:226886 +k1,11711:17891431,32563563:226886 +k1,11711:19628266,32563563:226885 +k1,11711:22629946,32563563:226886 +k1,11711:23508260,32563563:226886 +k1,11711:24091005,32563563:226885 +k1,11711:26829231,32563563:226886 +k1,11711:27739002,32563563:226886 +k1,11711:29479113,32563563:226885 +k1,11711:30322037,32563563:226886 +k1,11711:32583029,32563563:0 +) +(1,11712:6630773,33428643:25952256,505283,134348 +g1,11711:11224191,33428643 +g1,11711:13433409,33428643 +g1,11711:14651723,33428643 +g1,11711:16940895,33428643 +k1,11712:32583029,33428643:12403345 +g1,11712:32583029,33428643 +) +v1,11714:6630773,34113498:0,393216,0 +(1,11721:6630773,35243684:25952256,1523402,196608 +g1,11721:6630773,35243684 +g1,11721:6630773,35243684 +g1,11721:6434165,35243684 +(1,11721:6434165,35243684:0,1523402,196608 +r1,11759:32779637,35243684:26345472,1720010,196608 +k1,11721:6434165,35243684:-26345472 +) +(1,11721:6434165,35243684:26345472,1523402,196608 +[1,11721:6630773,35243684:25952256,1326794,0 +(1,11716:6630773,34347935:25952256,431045,106246 +(1,11715:6630773,34347935:0,0,0 +g1,11715:6630773,34347935 +g1,11715:6630773,34347935 +g1,11715:6303093,34347935 +(1,11715:6303093,34347935:0,0,0 +) +g1,11715:6630773,34347935 +) +k1,11716:6630773,34347935:0 +g1,11716:8954451,34347935 +g1,11716:9618359,34347935 +g1,11716:10614221,34347935 +g1,11716:11278129,34347935 +g1,11716:11942037,34347935 +h1,11716:12605945,34347935:0,0,0 +k1,11716:32583029,34347935:19977084 +g1,11716:32583029,34347935 +) +(1,11720:6630773,35163862:25952256,424439,79822 +(1,11718:6630773,35163862:0,0,0 +g1,11718:6630773,35163862 +g1,11718:6630773,35163862 +g1,11718:6303093,35163862 +(1,11718:6303093,35163862:0,0,0 +) +g1,11718:6630773,35163862 +) +g1,11720:7626635,35163862 +g1,11720:8954451,35163862 +h1,11720:9618359,35163862:0,0,0 +k1,11720:32583029,35163862:22964670 +g1,11720:32583029,35163862 +) +] +) +g1,11721:32583029,35243684 +g1,11721:6630773,35243684 +g1,11721:6630773,35243684 +g1,11721:32583029,35243684 +g1,11721:32583029,35243684 +) +h1,11721:6630773,35440292:0,0,0 +v1,11725:6630773,36305372:0,393216,0 +(1,11735:6630773,38484850:25952256,2572694,0 +g1,11735:6630773,38484850 +g1,11735:6237557,38484850 +r1,11759:6368629,38484850:131072,2572694,0 +g1,11735:6567858,38484850 +g1,11735:6764466,38484850 +[1,11735:6764466,38484850:25818563,2572694,0 +(1,11726:6764466,36577849:25818563,665693,196608 +(1,11725:6764466,36577849:0,665693,196608 +r1,11759:7868133,36577849:1103667,862301,196608 +k1,11725:6764466,36577849:-1103667 +) +(1,11725:6764466,36577849:1103667,665693,196608 +) +g1,11725:8067362,36577849 +g1,11725:9385291,36577849 +g1,11725:11218333,36577849 +g1,11725:11949059,36577849 +g1,11725:13167373,36577849 +g1,11725:17430489,36577849 +g1,11725:18914224,36577849 +g1,11725:20796418,36577849 +g1,11725:22988597,36577849 +g1,11725:23803864,36577849 +g1,11725:25699820,36577849 +g1,11725:28594545,36577849 +k1,11726:32583029,36577849:2264232 +g1,11726:32583029,36577849 +) +v1,11728:6764466,37262704:0,393216,0 +(1,11733:6764466,38288242:25818563,1418754,196608 +g1,11733:6764466,38288242 +g1,11733:6764466,38288242 +g1,11733:6567858,38288242 +(1,11733:6567858,38288242:0,1418754,196608 +r1,11759:32779637,38288242:26211779,1615362,196608 +k1,11733:6567857,38288242:-26211780 +) +(1,11733:6567858,38288242:26211779,1418754,196608 +[1,11733:6764466,38288242:25818563,1222146,0 +(1,11730:6764466,37497141:25818563,431045,106246 +(1,11729:6764466,37497141:0,0,0 +g1,11729:6764466,37497141 +g1,11729:6764466,37497141 +g1,11729:6436786,37497141 +(1,11729:6436786,37497141:0,0,0 +) +g1,11729:6764466,37497141 +) +k1,11730:6764466,37497141:0 +g1,11730:9088144,37497141 +g1,11730:9752052,37497141 +g1,11730:11079868,37497141 +g1,11730:11743776,37497141 +g1,11730:12407684,37497141 +h1,11730:13403546,37497141:0,0,0 +k1,11730:32583030,37497141:19179484 +g1,11730:32583030,37497141 +) +(1,11731:6764466,38181996:25818563,431045,106246 +h1,11731:6764466,38181996:0,0,0 +g1,11731:9088144,38181996 +g1,11731:9752052,38181996 +g1,11731:11079868,38181996 +g1,11731:11743776,38181996 +g1,11731:12407684,38181996 +g1,11731:13735500,38181996 +g1,11731:14399408,38181996 +h1,11731:14731362,38181996:0,0,0 +k1,11731:32583030,38181996:17851668 +g1,11731:32583030,38181996 +) +] +) +g1,11733:32583029,38288242 +g1,11733:6764466,38288242 +g1,11733:6764466,38288242 +g1,11733:32583029,38288242 +g1,11733:32583029,38288242 +) +h1,11733:6764466,38484850:0,0,0 +] +g1,11735:32583029,38484850 +) +h1,11735:6630773,38484850:0,0,0 +v1,11738:6630773,39349930:0,393216,0 +(1,11739:6630773,42314210:25952256,3357496,0 +g1,11739:6630773,42314210 +g1,11739:6237557,42314210 +r1,11759:6368629,42314210:131072,3357496,0 +g1,11739:6567858,42314210 +g1,11739:6764466,42314210 +[1,11739:6764466,42314210:25818563,3357496,0 +(1,11739:6764466,39711107:25818563,754393,260573 +(1,11738:6764466,39711107:0,754393,260573 +r1,11759:7856192,39711107:1091726,1014966,260573 +k1,11738:6764466,39711107:-1091726 +) +(1,11738:6764466,39711107:1091726,754393,260573 +) +k1,11738:8072317,39711107:216125 +k1,11738:8399997,39711107:327680 +k1,11738:10106412,39711107:216126 +k1,11738:12592704,39711107:216125 +k1,11738:13827915,39711107:216126 +k1,11738:17560702,39711107:216125 +k1,11738:19786817,39711107:216126 +k1,11738:21022027,39711107:216125 +k1,11738:23933649,39711107:216126 +k1,11738:25726570,39711107:216125 +k1,11738:26757964,39711107:216126 +k1,11738:28449304,39711107:216125 +k1,11738:30696391,39711107:216126 +k1,11738:31563944,39711107:216125 +k1,11738:32583029,39711107:0 +) +(1,11739:6764466,40576187:25818563,513147,134348 +k1,11738:11034324,40576187:212524 +k1,11738:11862885,40576187:212523 +k1,11738:13960880,40576187:212524 +k1,11738:15192489,40576187:212524 +k1,11738:18100509,40576187:212524 +k1,11738:18844529,40576187:212523 +k1,11738:21098499,40576187:212524 +k1,11738:21769120,40576187:212524 +k1,11738:22513140,40576187:212523 +k1,11738:24611135,40576187:212524 +k1,11738:25475087,40576187:212524 +k1,11738:27124816,40576187:212524 +k1,11738:28103455,40576187:212523 +k1,11738:30024503,40576187:212524 +k1,11738:32583029,40576187:0 +) +(1,11739:6764466,41441267:25818563,513147,126483 +k1,11738:7983788,41441267:200237 +k1,11738:10879522,41441267:200238 +k1,11738:14864463,41441267:200237 +k1,11738:16256146,41441267:200238 +k1,11738:18467028,41441267:200237 +k1,11738:19433381,41441267:200237 +k1,11738:21644264,41441267:200238 +k1,11738:22495929,41441267:200237 +k1,11738:23715251,41441267:200237 +k1,11738:25824553,41441267:200238 +k1,11738:27405634,41441267:200237 +k1,11738:30079201,41441267:200238 +k1,11738:31563944,41441267:200237 +k1,11738:32583029,41441267:0 +) +(1,11739:6764466,42306347:25818563,513147,7863 +g1,11738:8674840,42306347 +g1,11738:9533361,42306347 +g1,11738:10751675,42306347 +g1,11738:13646400,42306347 +g1,11738:14949911,42306347 +g1,11738:16654502,42306347 +g1,11738:17311828,42306347 +g1,11738:18197219,42306347 +g1,11738:18752308,42306347 +g1,11738:20639089,42306347 +g1,11738:21998305,42306347 +g1,11738:23591485,42306347 +g1,11738:24600084,42306347 +g1,11738:26098892,42306347 +k1,11739:32583029,42306347:4330624 +g1,11739:32583029,42306347 +) +] +g1,11739:32583029,42314210 +) +h1,11739:6630773,42314210:0,0,0 +(1,11759:6630773,43179290:25952256,513147,126483 +h1,11758:6630773,43179290:983040,0,0 +k1,11758:8450489,43179290:208841 +k1,11758:9247844,43179290:208842 +k1,11758:12973347,43179290:208841 +k1,11758:15192177,43179290:208841 +k1,11758:16420103,43179290:208841 +k1,11758:19324441,43179290:208842 +k1,11758:21820489,43179290:208841 +k1,11758:22844598,43179290:208841 +k1,11758:24119710,43179290:208841 +k1,11758:26107854,43179290:208842 +k1,11758:28731041,43179290:208841 +k1,11758:30071689,43179290:208841 +k1,11758:32583029,43179290:0 +) +(1,11759:6630773,44044370:25952256,513147,126483 +k1,11758:9299999,44044370:287648 +k1,11758:11953498,44044370:287649 +k1,11758:13260231,44044370:287648 +k1,11758:16417046,44044370:287649 +k1,11758:17723779,44044370:287648 +k1,11758:19854300,44044370:287649 +k1,11758:21709569,44044370:287648 +k1,11758:23016302,44044370:287648 +k1,11758:27367838,44044370:287649 +k1,11758:28186983,44044370:287648 +k1,11758:31253359,44044370:287649 +k1,11758:32227169,44044370:287648 +k1,11758:32583029,44044370:0 +) +(1,11759:6630773,44909450:25952256,513147,134348 +k1,11758:8711448,44909450:244356 +k1,11758:10152490,44909450:244355 +k1,11758:13013043,44909450:244356 +k1,11758:13873436,44909450:244355 +k1,11758:16102878,44909450:244356 +h1,11758:17073466,44909450:0,0,0 +k1,11758:17317821,44909450:244355 +k1,11758:20561760,44909450:244356 +k1,11758:21161976,44909450:244356 +k1,11758:24101827,44909450:244355 +k1,11758:25630689,44909450:244356 +k1,11758:26976049,44909450:244355 +k1,11758:28029775,44909450:244356 +k1,11758:29489823,44909450:244355 +k1,11758:31896867,44909450:244356 +k1,11758:32583029,44909450:0 +) +] +(1,11759:32583029,45706769:0,0,0 +g1,11759:32583029,45706769 +) +) +] +(1,11759:6630773,47279633:25952256,0,0 +h1,11759:6630773,47279633:25952256,0,0 +) +] +(1,11759:4262630,4025873:0,0,0 +[1,11759:-473656,4025873:0,0,0 +(1,11759:-473656,-710413:0,0,0 +(1,11759:-473656,-710413:0,0,0 +g1,11759:-473656,-710413 +) +g1,11759:-473656,-710413 ) ] ) ] !29851 -}185 -Input:1961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}186 +Input:1964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1966:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{186 -[1,11781:4262630,47279633:28320399,43253760,0 -(1,11781:4262630,4025873:0,0,0 -[1,11781:-473656,4025873:0,0,0 -(1,11781:-473656,-710413:0,0,0 -(1,11781:-473656,-644877:0,0,0 -k1,11781:-473656,-644877:-65536 +{187 +[1,11780:4262630,47279633:28320399,43253760,0 +(1,11780:4262630,4025873:0,0,0 +[1,11780:-473656,4025873:0,0,0 +(1,11780:-473656,-710413:0,0,0 +(1,11780:-473656,-644877:0,0,0 +k1,11780:-473656,-644877:-65536 ) -(1,11781:-473656,4736287:0,0,0 -k1,11781:-473656,4736287:5209943 +(1,11780:-473656,4736287:0,0,0 +k1,11780:-473656,4736287:5209943 ) -g1,11781:-473656,-710413 +g1,11780:-473656,-710413 ) ] ) -[1,11781:6630773,47279633:25952256,43253760,0 -[1,11781:6630773,4812305:25952256,786432,0 -(1,11781:6630773,4812305:25952256,513147,134348 -(1,11781:6630773,4812305:25952256,513147,134348 -g1,11781:3078558,4812305 -[1,11781:3078558,4812305:0,0,0 -(1,11781:3078558,2439708:0,1703936,0 -k1,11781:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,11781:2537886,2439708:1179648,16384,0 +[1,11780:6630773,47279633:25952256,43253760,0 +[1,11780:6630773,4812305:25952256,786432,0 +(1,11780:6630773,4812305:25952256,513147,134348 +(1,11780:6630773,4812305:25952256,513147,134348 +g1,11780:3078558,4812305 +[1,11780:3078558,4812305:0,0,0 +(1,11780:3078558,2439708:0,1703936,0 +k1,11780:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,11780:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,11781:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,11780:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,11781:3078558,4812305:0,0,0 -(1,11781:3078558,2439708:0,1703936,0 -g1,11781:29030814,2439708 -g1,11781:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,11781:36151628,1915420:16384,1179648,0 +[1,11780:3078558,4812305:0,0,0 +(1,11780:3078558,2439708:0,1703936,0 +g1,11780:29030814,2439708 +g1,11780:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,11780:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,11781:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,11780:37855564,2439708:1179648,16384,0 ) ) -k1,11781:3078556,2439708:-34777008 +k1,11780:3078556,2439708:-34777008 ) ] -[1,11781:3078558,4812305:0,0,0 -(1,11781:3078558,49800853:0,16384,2228224 -k1,11781:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,11781:2537886,49800853:1179648,16384,0 +[1,11780:3078558,4812305:0,0,0 +(1,11780:3078558,49800853:0,16384,2228224 +k1,11780:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,11780:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,11781:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,11780:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,11781:3078558,4812305:0,0,0 -(1,11781:3078558,49800853:0,16384,2228224 -g1,11781:29030814,49800853 -g1,11781:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,11781:36151628,51504789:16384,1179648,0 +[1,11780:3078558,4812305:0,0,0 +(1,11780:3078558,49800853:0,16384,2228224 +g1,11780:29030814,49800853 +g1,11780:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,11780:36151628,51504789:16384,1179648,0 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,11781:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,11780:37855564,49800853:1179648,16384,0 ) ) -k1,11781:3078556,49800853:-34777008 +k1,11780:3078556,49800853:-34777008 ) ] -g1,11781:6630773,4812305 -g1,11781:6630773,4812305 -g1,11781:9499939,4812305 -g1,11781:12696785,4812305 -g1,11781:14106464,4812305 -g1,11781:17459285,4812305 -k1,11781:31387652,4812305:13928367 +g1,11780:6630773,4812305 +g1,11780:6630773,4812305 +g1,11780:9499939,4812305 +g1,11780:12696785,4812305 +g1,11780:14106464,4812305 +g1,11780:17459285,4812305 +k1,11780:31387652,4812305:13928367 ) ) ] -[1,11781:6630773,45706769:25952256,40108032,0 -(1,11781:6630773,45706769:25952256,40108032,0 -(1,11781:6630773,45706769:0,0,0 -g1,11781:6630773,45706769 +[1,11780:6630773,45706769:25952256,40108032,0 +(1,11780:6630773,45706769:25952256,40108032,0 +(1,11780:6630773,45706769:0,0,0 +g1,11780:6630773,45706769 +) +[1,11780:6630773,45706769:25952256,40108032,0 +[1,11756:6630773,22106719:25952256,16507982,0 +[1,11756:6630773,22106719:25952256,16507982,0 +(1,11755:6630773,16999476:25952256,11400739,0 +k1,11755:15658017,16999476:9027244 +h1,11753:15658017,16999476:0,0,0 +(1,11753:15658017,16999476:7718460,11400739,0 +g1,11753:19517247,16999476 +(1,11753:19517247,6544183:0,0,0 +(1,11753:19517247,6544183:0,0,0 +g1,11744:19517247,6544183 +(1,11745:19517247,6544183:0,0,0 +(1,11745:19517247,6544183:0,0,0 +g1,11745:19517247,6544183 +g1,11745:19517247,6544183 +g1,11745:19517247,6544183 +g1,11745:19517247,6544183 +g1,11745:19517247,6544183 +(1,11745:19517247,6544183:0,0,0 +(1,11745:19517247,6544183:7299073,385745,120913 +(1,11745:19517247,6544183:7299073,385745,120913 +g1,11745:22762459,6544183 +$1,11745:22762459,6544183 +$1,11745:23369978,6544183 +g1,11745:23549285,6544183 +) +g1,11745:26816320,6544183 +) +) +g1,11745:19517247,6544183 +g1,11745:19517247,6544183 +) ) -[1,11781:6630773,45706769:25952256,40108032,0 -[1,11757:6630773,22106719:25952256,16507982,0 -[1,11757:6630773,22106719:25952256,16507982,0 -(1,11756:6630773,16999476:25952256,11400739,0 -k1,11756:15658017,16999476:9027244 -h1,11754:15658017,16999476:0,0,0 -(1,11754:15658017,16999476:7718460,11400739,0 -g1,11754:19517247,16999476 -(1,11754:19517247,6544183:0,0,0 -(1,11754:19517247,6544183:0,0,0 g1,11745:19517247,6544183 (1,11746:19517247,6544183:0,0,0 (1,11746:19517247,6544183:0,0,0 @@ -210605,14 +210809,10 @@ g1,11746:19517247,6544183 g1,11746:19517247,6544183 g1,11746:19517247,6544183 (1,11746:19517247,6544183:0,0,0 -(1,11746:19517247,6544183:7299073,385745,120913 -(1,11746:19517247,6544183:7299073,385745,120913 -g1,11746:22762459,6544183 -$1,11746:22762459,6544183 -$1,11746:23369978,6544183 -g1,11746:23549285,6544183 +(1,11746:19517247,6544183:0,0,0 +(1,11746:19517247,6544183:0,0,0 ) -g1,11746:26816320,6544183 +g1,11746:19517247,6544183 ) ) g1,11746:19517247,6544183 @@ -210620,6 +210820,7 @@ g1,11746:19517247,6544183 ) ) g1,11746:19517247,6544183 +g1,11747:19517247,6544183 (1,11747:19517247,6544183:0,0,0 (1,11747:19517247,6544183:0,0,0 g1,11747:19517247,6544183 @@ -210628,10 +210829,18 @@ g1,11747:19517247,6544183 g1,11747:19517247,6544183 g1,11747:19517247,6544183 (1,11747:19517247,6544183:0,0,0 -(1,11747:19517247,6544183:0,0,0 -(1,11747:19517247,6544183:0,0,0 +(1,11747:19517247,6544183:4121582,373362,104590 +(1,11747:19517247,6544183:4121582,373362,104590 +(1,11747:19517247,6544183:0,373362,104590 +r1,11780:23638829,6544183:4121582,477952,104590 +k1,11747:19517247,6544183:-4121582 +) +(1,11747:19517247,6544183:4121582,373362,104590 +g1,11747:23002471,6544183 +h1,11747:23635552,6544183:0,370085,101313 ) -g1,11747:19517247,6544183 +) +g1,11747:23638829,6544183 ) ) g1,11747:19517247,6544183 @@ -210651,7 +210860,7 @@ g1,11748:19517247,6544183 (1,11748:19517247,6544183:4121582,373362,104590 (1,11748:19517247,6544183:4121582,373362,104590 (1,11748:19517247,6544183:0,373362,104590 -r1,11781:23638829,6544183:4121582,477952,104590 +r1,11780:23638829,6544183:4121582,477952,104590 k1,11748:19517247,6544183:-4121582 ) (1,11748:19517247,6544183:4121582,373362,104590 @@ -210676,18 +210885,15 @@ g1,11749:19517247,6544183 g1,11749:19517247,6544183 g1,11749:19517247,6544183 (1,11749:19517247,6544183:0,0,0 -(1,11749:19517247,6544183:4121582,373362,104590 -(1,11749:19517247,6544183:4121582,373362,104590 -(1,11749:19517247,6544183:0,373362,104590 -r1,11781:23638829,6544183:4121582,477952,104590 -k1,11749:19517247,6544183:-4121582 -) -(1,11749:19517247,6544183:4121582,373362,104590 -g1,11749:23002471,6544183 -h1,11749:23635552,6544183:0,370085,101313 +(1,11749:19517247,6544183:6778260,454754,7077 +(1,11749:19517247,6544183:6778260,454754,7077 +g1,11749:22173815,6544183 +g1,11749:23888434,6544183 +$1,11749:23888434,6544183 +$1,11749:24495953,6544183 +g1,11749:24675260,6544183 ) -) -g1,11749:23638829,6544183 +g1,11749:26295507,6544183 ) ) g1,11749:19517247,6544183 @@ -210696,29 +210902,10 @@ g1,11749:19517247,6544183 ) g1,11749:19517247,6544183 g1,11750:19517247,6544183 -(1,11750:19517247,6544183:0,0,0 -(1,11750:19517247,6544183:0,0,0 -g1,11750:19517247,6544183 g1,11750:19517247,6544183 g1,11750:19517247,6544183 g1,11750:19517247,6544183 g1,11750:19517247,6544183 -(1,11750:19517247,6544183:0,0,0 -(1,11750:19517247,6544183:6778260,454754,7077 -(1,11750:19517247,6544183:6778260,454754,7077 -g1,11750:22173815,6544183 -g1,11750:23888434,6544183 -$1,11750:23888434,6544183 -$1,11750:24495953,6544183 -g1,11750:24675260,6544183 -) -g1,11750:26295507,6544183 -) -) -g1,11750:19517247,6544183 -g1,11750:19517247,6544183 -) -) g1,11750:19517247,6544183 g1,11751:19517247,6544183 g1,11751:19517247,6544183 @@ -210734,97 +210921,114 @@ g1,11752:19517247,6544183 g1,11752:19517247,6544183 g1,11753:19517247,6544183 g1,11753:19517247,6544183 +) g1,11753:19517247,6544183 -g1,11753:19517247,6544183 -g1,11753:19517247,6544183 -g1,11753:19517247,6544183 -g1,11754:19517247,6544183 -g1,11754:19517247,6544183 -) -g1,11754:19517247,6544183 -) -) -g1,11754:23555784,16999476 -g1,11756:23555784,16999476 -k1,11756:32583028,16999476:9027244 -) -(1,11756:6630773,18519916:25952256,505283,134348 -h1,11756:6630773,18519916:0,0,0 -g1,11756:8923222,18519916 -k1,11756:32583029,18519916:22689874 -g1,11756:32583029,18519916 -) -(1,11756:6630773,19384996:25952256,513147,134348 -h1,11756:6630773,19384996:0,0,0 -k1,11756:9624786,19384996:295240 -k1,11756:10579317,19384996:295239 -k1,11756:13570053,19384996:295240 -k1,11756:15259243,19384996:295239 -k1,11756:16363853,19384996:295240 -k1,11756:17958672,19384996:295240 -k1,11756:20528666,19384996:295239 -k1,11756:22263732,19384996:295240 -k1,11756:23245133,19384996:295239 -k1,11756:23896233,19384996:295240 -k1,11756:27605242,19384996:295239 -k1,11756:29396669,19384996:295240 -k1,11756:32583029,19384996:0 -) -(1,11756:6630773,20250076:25952256,513147,134348 -k1,11756:9675466,20250076:179459 -k1,11756:10643323,20250076:179459 -k1,11756:12531307,20250076:179460 -k1,11756:13396928,20250076:179459 -k1,11756:16979016,20250076:179459 -k1,11756:19363762,20250076:179459 -k1,11756:20194650,20250076:179460 -k1,11756:21162507,20250076:179459 -k1,11756:23470575,20250076:179459 -k1,11756:27261068,20250076:179459 -k1,11756:28631973,20250076:179460 -k1,11756:31812326,20250076:179459 -k1,11756:32583029,20250076:0 -) -(1,11756:6630773,21115156:25952256,513147,134348 -k1,11756:8798212,21115156:207913 -k1,11756:9689010,21115156:207913 -k1,11756:11577266,21115156:207913 -k1,11756:12436607,21115156:207913 -k1,11756:13663605,21115156:207913 -k1,11756:17057878,21115156:207913 -k1,11756:18833412,21115156:207913 -k1,11756:20960219,21115156:207913 -k1,11756:21626229,21115156:207913 -k1,11756:23041315,21115156:207913 -k1,11756:25117004,21115156:207913 -k1,11756:26007802,21115156:207913 -k1,11756:27507430,21115156:207913 -k1,11756:28912030,21115156:207913 -k1,11756:30696739,21115156:207913 -k1,11756:31563944,21115156:207913 -k1,11756:32583029,21115156:0 -) -(1,11756:6630773,21980236:25952256,513147,126483 -g1,11756:9525498,21980236 -g1,11756:10256224,21980236 -g1,11756:14265061,21980236 -g1,11756:15225818,21980236 -g1,11756:16444132,21980236 -g1,11756:18252270,21980236 -k1,11756:32583029,21980236:13118343 -g1,11756:32583029,21980236 -) -] -] -[1,11778:6630773,40266213:25952256,17373062,0 -[1,11778:6630773,40266213:25952256,17373062,0 -(1,11777:6630773,34293890:25952256,11400739,0 -k1,11777:11800576,34293890:5169803 -h1,11775:11800576,34293890:0,0,0 -(1,11775:11800576,34293890:15433344,11400739,0 -g1,11775:15659806,34293890 -(1,11775:15659806,23838597:0,0,0 -(1,11775:15659806,23838597:0,0,0 +) +) +g1,11753:23555784,16999476 +g1,11755:23555784,16999476 +k1,11755:32583028,16999476:9027244 +) +(1,11755:6630773,18519916:25952256,505283,134348 +h1,11755:6630773,18519916:0,0,0 +g1,11755:8923222,18519916 +k1,11755:32583029,18519916:22689874 +g1,11755:32583029,18519916 +) +(1,11755:6630773,19384996:25952256,513147,134348 +h1,11755:6630773,19384996:0,0,0 +k1,11755:9624786,19384996:295240 +k1,11755:10579317,19384996:295239 +k1,11755:13570053,19384996:295240 +k1,11755:15259243,19384996:295239 +k1,11755:16363853,19384996:295240 +k1,11755:17958672,19384996:295240 +k1,11755:20528666,19384996:295239 +k1,11755:22263732,19384996:295240 +k1,11755:23245133,19384996:295239 +k1,11755:23896233,19384996:295240 +k1,11755:27605242,19384996:295239 +k1,11755:29396669,19384996:295240 +k1,11755:32583029,19384996:0 +) +(1,11755:6630773,20250076:25952256,513147,134348 +k1,11755:9675466,20250076:179459 +k1,11755:10643323,20250076:179459 +k1,11755:12531307,20250076:179460 +k1,11755:13396928,20250076:179459 +k1,11755:16979016,20250076:179459 +k1,11755:19363762,20250076:179459 +k1,11755:20194650,20250076:179460 +k1,11755:21162507,20250076:179459 +k1,11755:23470575,20250076:179459 +k1,11755:27261068,20250076:179459 +k1,11755:28631973,20250076:179460 +k1,11755:31812326,20250076:179459 +k1,11755:32583029,20250076:0 +) +(1,11755:6630773,21115156:25952256,513147,134348 +k1,11755:8798212,21115156:207913 +k1,11755:9689010,21115156:207913 +k1,11755:11577266,21115156:207913 +k1,11755:12436607,21115156:207913 +k1,11755:13663605,21115156:207913 +k1,11755:17057878,21115156:207913 +k1,11755:18833412,21115156:207913 +k1,11755:20960219,21115156:207913 +k1,11755:21626229,21115156:207913 +k1,11755:23041315,21115156:207913 +k1,11755:25117004,21115156:207913 +k1,11755:26007802,21115156:207913 +k1,11755:27507430,21115156:207913 +k1,11755:28912030,21115156:207913 +k1,11755:30696739,21115156:207913 +k1,11755:31563944,21115156:207913 +k1,11755:32583029,21115156:0 +) +(1,11755:6630773,21980236:25952256,513147,126483 +g1,11755:9525498,21980236 +g1,11755:10256224,21980236 +g1,11755:14265061,21980236 +g1,11755:15225818,21980236 +g1,11755:16444132,21980236 +g1,11755:18252270,21980236 +k1,11755:32583029,21980236:13118343 +g1,11755:32583029,21980236 +) +] +] +[1,11777:6630773,40266213:25952256,17373062,0 +[1,11777:6630773,40266213:25952256,17373062,0 +(1,11776:6630773,34293890:25952256,11400739,0 +k1,11776:11800576,34293890:5169803 +h1,11774:11800576,34293890:0,0,0 +(1,11774:11800576,34293890:15433344,11400739,0 +g1,11774:15659806,34293890 +(1,11774:15659806,23838597:0,0,0 +(1,11774:15659806,23838597:0,0,0 +g1,11763:15659806,23838597 +(1,11764:15659806,23838597:0,0,0 +(1,11764:15659806,23838597:0,0,0 +g1,11764:15659806,23838597 +g1,11764:15659806,23838597 +g1,11764:15659806,23838597 +g1,11764:15659806,23838597 +g1,11764:15659806,23838597 +(1,11764:15659806,23838597:0,0,0 +(1,11764:15659806,23838597:7299073,385745,120913 +(1,11764:15659806,23838597:7299073,385745,120913 +g1,11764:18905018,23838597 +$1,11764:18905018,23838597 +$1,11764:19512537,23838597 +g1,11764:19691844,23838597 +) +g1,11764:22958879,23838597 +) +) +g1,11764:15659806,23838597 +g1,11764:15659806,23838597 +) +) g1,11764:15659806,23838597 (1,11765:15659806,23838597:0,0,0 (1,11765:15659806,23838597:0,0,0 @@ -210834,14 +211038,10 @@ g1,11765:15659806,23838597 g1,11765:15659806,23838597 g1,11765:15659806,23838597 (1,11765:15659806,23838597:0,0,0 -(1,11765:15659806,23838597:7299073,385745,120913 -(1,11765:15659806,23838597:7299073,385745,120913 -g1,11765:18905018,23838597 -$1,11765:18905018,23838597 -$1,11765:19512537,23838597 -g1,11765:19691844,23838597 +(1,11765:15659806,23838597:0,0,0 +(1,11765:15659806,23838597:0,0,0 ) -g1,11765:22958879,23838597 +g1,11765:15659806,23838597 ) ) g1,11765:15659806,23838597 @@ -210849,6 +211049,7 @@ g1,11765:15659806,23838597 ) ) g1,11765:15659806,23838597 +g1,11766:15659806,23838597 (1,11766:15659806,23838597:0,0,0 (1,11766:15659806,23838597:0,0,0 g1,11766:15659806,23838597 @@ -210857,10 +211058,18 @@ g1,11766:15659806,23838597 g1,11766:15659806,23838597 g1,11766:15659806,23838597 (1,11766:15659806,23838597:0,0,0 -(1,11766:15659806,23838597:0,0,0 -(1,11766:15659806,23838597:0,0,0 +(1,11766:15659806,23838597:4121582,373362,104590 +(1,11766:15659806,23838597:4121582,373362,104590 +(1,11766:15659806,23838597:0,373362,104590 +r1,11780:19781388,23838597:4121582,477952,104590 +k1,11766:15659806,23838597:-4121582 +) +(1,11766:15659806,23838597:4121582,373362,104590 +g1,11766:19145030,23838597 +h1,11766:19778111,23838597:0,370085,101313 ) -g1,11766:15659806,23838597 +) +g1,11766:19781388,23838597 ) ) g1,11766:15659806,23838597 @@ -210868,7 +211077,6 @@ g1,11766:15659806,23838597 ) ) g1,11766:15659806,23838597 -g1,11767:15659806,23838597 (1,11767:15659806,23838597:0,0,0 (1,11767:15659806,23838597:0,0,0 g1,11767:15659806,23838597 @@ -210877,18 +211085,11 @@ g1,11767:15659806,23838597 g1,11767:15659806,23838597 g1,11767:15659806,23838597 (1,11767:15659806,23838597:0,0,0 -(1,11767:15659806,23838597:4121582,373362,104590 -(1,11767:15659806,23838597:4121582,373362,104590 -(1,11767:15659806,23838597:0,373362,104590 -r1,11781:19781388,23838597:4121582,477952,104590 -k1,11767:15659806,23838597:-4121582 -) -(1,11767:15659806,23838597:4121582,373362,104590 -g1,11767:19145030,23838597 -h1,11767:19778111,23838597:0,370085,101313 -) +(1,11767:15659806,23838597:2804024,461832,113835 +(1,11767:15659806,23838597:2804024,461832,113835 +g1,11767:16933237,23838597 ) -g1,11767:19781388,23838597 +g1,11767:18463830,23838597 ) ) g1,11767:15659806,23838597 @@ -210896,6 +211097,7 @@ g1,11767:15659806,23838597 ) ) g1,11767:15659806,23838597 +g1,11768:15659806,23838597 (1,11768:15659806,23838597:0,0,0 (1,11768:15659806,23838597:0,0,0 g1,11768:15659806,23838597 @@ -210904,11 +211106,18 @@ g1,11768:15659806,23838597 g1,11768:15659806,23838597 g1,11768:15659806,23838597 (1,11768:15659806,23838597:0,0,0 -(1,11768:15659806,23838597:2804024,461832,113835 -(1,11768:15659806,23838597:2804024,461832,113835 -g1,11768:16933237,23838597 +(1,11768:15659806,23838597:4121582,373362,104590 +(1,11768:15659806,23838597:4121582,373362,104590 +(1,11768:15659806,23838597:0,373362,104590 +r1,11780:19781388,23838597:4121582,477952,104590 +k1,11768:15659806,23838597:-4121582 +) +(1,11768:15659806,23838597:4121582,373362,104590 +g1,11768:19145030,23838597 +h1,11768:19778111,23838597:0,370085,101313 ) -g1,11768:18463830,23838597 +) +g1,11768:19781388,23838597 ) ) g1,11768:15659806,23838597 @@ -210925,18 +211134,15 @@ g1,11769:15659806,23838597 g1,11769:15659806,23838597 g1,11769:15659806,23838597 (1,11769:15659806,23838597:0,0,0 -(1,11769:15659806,23838597:4121582,373362,104590 -(1,11769:15659806,23838597:4121582,373362,104590 -(1,11769:15659806,23838597:0,373362,104590 -r1,11781:19781388,23838597:4121582,477952,104590 -k1,11769:15659806,23838597:-4121582 -) -(1,11769:15659806,23838597:4121582,373362,104590 -g1,11769:19145030,23838597 -h1,11769:19778111,23838597:0,370085,101313 +(1,11769:15659806,23838597:6778260,454754,7077 +(1,11769:15659806,23838597:6778260,454754,7077 +g1,11769:18316374,23838597 +g1,11769:20030993,23838597 +$1,11769:20030993,23838597 +$1,11769:20638512,23838597 +g1,11769:20817819,23838597 ) -) -g1,11769:19781388,23838597 +g1,11769:22438066,23838597 ) ) g1,11769:15659806,23838597 @@ -210945,29 +211151,10 @@ g1,11769:15659806,23838597 ) g1,11769:15659806,23838597 g1,11770:15659806,23838597 -(1,11770:15659806,23838597:0,0,0 -(1,11770:15659806,23838597:0,0,0 -g1,11770:15659806,23838597 -g1,11770:15659806,23838597 -g1,11770:15659806,23838597 g1,11770:15659806,23838597 g1,11770:15659806,23838597 -(1,11770:15659806,23838597:0,0,0 -(1,11770:15659806,23838597:6778260,454754,7077 -(1,11770:15659806,23838597:6778260,454754,7077 -g1,11770:18316374,23838597 -g1,11770:20030993,23838597 -$1,11770:20030993,23838597 -$1,11770:20638512,23838597 -g1,11770:20817819,23838597 -) -g1,11770:22438066,23838597 -) -) g1,11770:15659806,23838597 g1,11770:15659806,23838597 -) -) g1,11770:15659806,23838597 g1,11771:15659806,23838597 g1,11771:15659806,23838597 @@ -210989,2190 +211176,2181 @@ g1,11773:15659806,23838597 g1,11773:15659806,23838597 g1,11774:15659806,23838597 g1,11774:15659806,23838597 +) g1,11774:15659806,23838597 -g1,11774:15659806,23838597 -g1,11774:15659806,23838597 -g1,11774:15659806,23838597 -g1,11775:15659806,23838597 -g1,11775:15659806,23838597 -) -g1,11775:15659806,23838597 -) -) -g1,11775:27413227,34293890 -g1,11777:27413227,34293890 -k1,11777:32583029,34293890:5169802 -) -(1,11777:6630773,35814330:25952256,505283,134348 -h1,11777:6630773,35814330:0,0,0 -g1,11777:8923222,35814330 -k1,11777:32583029,35814330:22669558 -g1,11777:32583029,35814330 -) -(1,11777:6630773,36679410:25952256,513147,134348 -h1,11777:6630773,36679410:0,0,0 -k1,11777:9593929,36679410:264383 -k1,11777:10517604,36679410:264383 -k1,11777:13477484,36679410:264384 -k1,11777:14428029,36679410:264383 -k1,11777:15048272,36679410:264383 -k1,11777:18726425,36679410:264383 -k1,11777:20486995,36679410:264383 -k1,11777:23937738,36679410:264383 -k1,11777:27067356,36679410:264384 -k1,11777:28120137,36679410:264383 -k1,11777:30093044,36679410:264383 -k1,11777:31043589,36679410:264383 -k1,11777:32583029,36679410:0 -) -(1,11777:6630773,37544490:25952256,513147,134348 -k1,11777:8880271,37544490:280141 -k1,11777:11365699,37544490:280141 -k1,11777:12297268,37544490:280141 -k1,11777:13365807,37544490:280141 -k1,11777:15774557,37544490:280141 -k1,11777:19665732,37544490:280141 -k1,11777:21137319,37544490:280142 -k1,11777:24418354,37544490:280141 -k1,11777:25469198,37544490:280141 -k1,11777:27708865,37544490:280141 -k1,11777:28671891,37544490:280141 -k1,11777:30632375,37544490:280141 -k1,11777:31563944,37544490:280141 -k1,11777:32583029,37544490:0 -) -(1,11777:6630773,38409570:25952256,513147,126483 -k1,11777:10045854,38409570:228721 -k1,11777:11842195,38409570:228720 -k1,11777:13989810,38409570:228721 -k1,11777:14676628,38409570:228721 -k1,11777:16112521,38409570:228720 -k1,11777:18209018,38409570:228721 -k1,11777:19120624,38409570:228721 -k1,11777:20641059,38409570:228720 -k1,11777:22066467,38409570:228721 -k1,11777:23871983,38409570:228720 -k1,11777:24759996,38409570:228721 -k1,11777:26007802,38409570:228721 -k1,11777:28932018,38409570:228720 -k1,11777:29692236,38409570:228721 -k1,11777:32583029,38409570:0 -) -(1,11777:6630773,39274650:25952256,513147,126483 -k1,11777:7805178,39274650:149422 -k1,11777:8716128,39274650:149422 -k1,11777:9884635,39274650:149422 -k1,11777:11194044,39274650:149422 -k1,11777:12952375,39274650:149422 -k1,11777:13717835,39274650:149422 -k1,11777:15408664,39274650:149422 -k1,11777:17247604,39274650:149422 -k1,11777:18416112,39274650:149423 -k1,11777:19865113,39274650:149422 -k1,11777:21785318,39274650:149422 -k1,11777:22594032,39274650:149422 -k1,11777:23762539,39274650:149422 -k1,11777:25408148,39274650:149422 -k1,11777:26173608,39274650:149422 -k1,11777:27342115,39274650:149422 -k1,11777:30187033,39274650:149422 -k1,11777:32583029,39274650:0 -) -(1,11777:6630773,40139730:25952256,513147,126483 -g1,11777:9195852,40139730 -g1,11777:9926578,40139730 -g1,11777:13935415,40139730 -g1,11777:14896172,40139730 -g1,11777:16114486,40139730 -g1,11777:17473702,40139730 -g1,11777:19281840,40139730 -g1,11777:20097107,40139730 -k1,11777:32583029,40139730:10399256 -g1,11777:32583029,40139730 -) -] -] -(1,11760:6630773,42232293:25952256,513147,126483 -k1,11759:7299405,42232293:210535 -k1,11759:9002850,42232293:210535 -k1,11759:10279656,42232293:210535 -k1,11759:12269493,42232293:210535 -k1,11759:13268426,42232293:210535 -k1,11759:17709965,42232293:210535 -k1,11759:18378597,42232293:210535 -k1,11759:19964733,42232293:210535 -k1,11759:22516214,42232293:210535 -k1,11759:23082609,42232293:210535 -k1,11759:24973487,42232293:210535 -k1,11759:25835450,42232293:210535 -k1,11759:27065070,42232293:210535 -k1,11759:29184669,42232293:210535 -k1,11759:29882781,42232293:210524 -k1,11759:31773659,42232293:210535 -k1,11759:32583029,42232293:0 -) -(1,11760:6630773,43097373:25952256,513147,7863 -k1,11759:8736882,43097373:246852 -k1,11759:10002819,43097373:246852 -k1,11759:11985064,43097373:246852 -k1,11759:13332921,43097373:246852 -k1,11759:14669637,43097373:246852 -k1,11759:17378022,43097373:246853 -k1,11759:18821561,43097373:246852 -k1,11759:22254773,43097373:246852 -k1,11759:23786131,43097373:246852 -k1,11759:25462979,43097373:246852 -k1,11759:26728916,43097373:246852 -k1,11759:29671264,43097373:246852 -k1,11759:32583029,43097373:0 -) -(1,11760:6630773,43962453:25952256,513147,7863 -g1,11759:8352404,43962453 -g1,11759:9203061,43962453 -g1,11759:10217558,43962453 -g1,11759:11810738,43962453 -g1,11759:13029052,43962453 -g1,11759:14908624,43962453 -g1,11759:17750920,43962453 -g1,11759:19517770,43962453 -g1,11759:20736084,43962453 -k1,11760:32583029,43962453:9099021 -g1,11760:32583029,43962453 -) -(1,11781:6630773,44827533:25952256,513147,134348 -h1,11780:6630773,44827533:983040,0,0 -k1,11780:9605584,44827533:208536 -k1,11780:10169979,44827533:208535 -k1,11780:13074011,44827533:208536 -k1,11780:14383551,44827533:208535 -k1,11780:14947947,44827533:208536 -k1,11780:16456061,44827533:208535 -k1,11780:18609050,44827533:208536 -k1,11780:19836670,44827533:208535 -k1,11780:21780599,44827533:208536 -k1,11780:22520631,44827533:208535 -k1,11780:23538537,44827533:208536 -k1,11780:25771479,44827533:208535 -k1,11780:26596053,44827533:208536 -k1,11780:27894452,44827533:208535 -k1,11780:30390850,44827533:208536 -k1,11780:32583029,44827533:0 -) -(1,11781:6630773,45692613:25952256,513147,134348 -h1,11780:7601361,45692613:0,0,0 -k1,11780:8249905,45692613:267780 -k1,11780:9842168,45692613:267780 -k1,11780:12211032,45692613:267780 -k1,11780:13583094,45692613:267780 -k1,11780:14598640,45692613:267780 -k1,11780:17153627,45692613:267780 -k1,11780:18705913,45692613:267780 -k1,11780:19788961,45692613:267780 -k1,11780:21123012,45692613:267780 -k1,11780:22844381,45692613:267780 -k1,11780:24243968,45692613:267780 -k1,11780:26471274,45692613:267780 -k1,11780:27355092,45692613:267780 -k1,11780:28641957,45692613:267780 -k1,11780:30999680,45692613:267780 -k1,11780:32583029,45692613:0 -) -] -(1,11781:32583029,45706769:0,0,0 -g1,11781:32583029,45706769 -) -) -] -(1,11781:6630773,47279633:25952256,0,0 -h1,11781:6630773,47279633:25952256,0,0 -) -] -(1,11781:4262630,4025873:0,0,0 -[1,11781:-473656,4025873:0,0,0 -(1,11781:-473656,-710413:0,0,0 -(1,11781:-473656,-710413:0,0,0 -g1,11781:-473656,-710413 -) -g1,11781:-473656,-710413 +) +) +g1,11774:27413227,34293890 +g1,11776:27413227,34293890 +k1,11776:32583029,34293890:5169802 +) +(1,11776:6630773,35814330:25952256,505283,134348 +h1,11776:6630773,35814330:0,0,0 +g1,11776:8923222,35814330 +k1,11776:32583029,35814330:22669558 +g1,11776:32583029,35814330 +) +(1,11776:6630773,36679410:25952256,513147,134348 +h1,11776:6630773,36679410:0,0,0 +k1,11776:9593929,36679410:264383 +k1,11776:10517604,36679410:264383 +k1,11776:13477484,36679410:264384 +k1,11776:14428029,36679410:264383 +k1,11776:15048272,36679410:264383 +k1,11776:18726425,36679410:264383 +k1,11776:20486995,36679410:264383 +k1,11776:23937738,36679410:264383 +k1,11776:27067356,36679410:264384 +k1,11776:28120137,36679410:264383 +k1,11776:30093044,36679410:264383 +k1,11776:31043589,36679410:264383 +k1,11776:32583029,36679410:0 +) +(1,11776:6630773,37544490:25952256,513147,134348 +k1,11776:8880271,37544490:280141 +k1,11776:11365699,37544490:280141 +k1,11776:12297268,37544490:280141 +k1,11776:13365807,37544490:280141 +k1,11776:15774557,37544490:280141 +k1,11776:19665732,37544490:280141 +k1,11776:21137319,37544490:280142 +k1,11776:24418354,37544490:280141 +k1,11776:25469198,37544490:280141 +k1,11776:27708865,37544490:280141 +k1,11776:28671891,37544490:280141 +k1,11776:30632375,37544490:280141 +k1,11776:31563944,37544490:280141 +k1,11776:32583029,37544490:0 +) +(1,11776:6630773,38409570:25952256,513147,126483 +k1,11776:10045854,38409570:228721 +k1,11776:11842195,38409570:228720 +k1,11776:13989810,38409570:228721 +k1,11776:14676628,38409570:228721 +k1,11776:16112521,38409570:228720 +k1,11776:18209018,38409570:228721 +k1,11776:19120624,38409570:228721 +k1,11776:20641059,38409570:228720 +k1,11776:22066467,38409570:228721 +k1,11776:23871983,38409570:228720 +k1,11776:24759996,38409570:228721 +k1,11776:26007802,38409570:228721 +k1,11776:28932018,38409570:228720 +k1,11776:29692236,38409570:228721 +k1,11776:32583029,38409570:0 +) +(1,11776:6630773,39274650:25952256,513147,126483 +k1,11776:7805178,39274650:149422 +k1,11776:8716128,39274650:149422 +k1,11776:9884635,39274650:149422 +k1,11776:11194044,39274650:149422 +k1,11776:12952375,39274650:149422 +k1,11776:13717835,39274650:149422 +k1,11776:15408664,39274650:149422 +k1,11776:17247604,39274650:149422 +k1,11776:18416112,39274650:149423 +k1,11776:19865113,39274650:149422 +k1,11776:21785318,39274650:149422 +k1,11776:22594032,39274650:149422 +k1,11776:23762539,39274650:149422 +k1,11776:25408148,39274650:149422 +k1,11776:26173608,39274650:149422 +k1,11776:27342115,39274650:149422 +k1,11776:30187033,39274650:149422 +k1,11776:32583029,39274650:0 +) +(1,11776:6630773,40139730:25952256,513147,126483 +g1,11776:9195852,40139730 +g1,11776:9926578,40139730 +g1,11776:13935415,40139730 +g1,11776:14896172,40139730 +g1,11776:16114486,40139730 +g1,11776:17473702,40139730 +g1,11776:19281840,40139730 +g1,11776:20097107,40139730 +k1,11776:32583029,40139730:10399256 +g1,11776:32583029,40139730 +) +] +] +(1,11759:6630773,42232293:25952256,513147,126483 +k1,11758:7299405,42232293:210535 +k1,11758:9002850,42232293:210535 +k1,11758:10279656,42232293:210535 +k1,11758:12269493,42232293:210535 +k1,11758:13268426,42232293:210535 +k1,11758:17709965,42232293:210535 +k1,11758:18378597,42232293:210535 +k1,11758:19964733,42232293:210535 +k1,11758:22516214,42232293:210535 +k1,11758:23082609,42232293:210535 +k1,11758:24973487,42232293:210535 +k1,11758:25835450,42232293:210535 +k1,11758:27065070,42232293:210535 +k1,11758:29184669,42232293:210535 +k1,11758:29882781,42232293:210524 +k1,11758:31773659,42232293:210535 +k1,11758:32583029,42232293:0 +) +(1,11759:6630773,43097373:25952256,513147,7863 +k1,11758:8736882,43097373:246852 +k1,11758:10002819,43097373:246852 +k1,11758:11985064,43097373:246852 +k1,11758:13332921,43097373:246852 +k1,11758:14669637,43097373:246852 +k1,11758:17378022,43097373:246853 +k1,11758:18821561,43097373:246852 +k1,11758:22254773,43097373:246852 +k1,11758:23786131,43097373:246852 +k1,11758:25462979,43097373:246852 +k1,11758:26728916,43097373:246852 +k1,11758:29671264,43097373:246852 +k1,11758:32583029,43097373:0 +) +(1,11759:6630773,43962453:25952256,513147,7863 +g1,11758:8352404,43962453 +g1,11758:9203061,43962453 +g1,11758:10217558,43962453 +g1,11758:11810738,43962453 +g1,11758:13029052,43962453 +g1,11758:14908624,43962453 +g1,11758:17750920,43962453 +g1,11758:19517770,43962453 +g1,11758:20736084,43962453 +k1,11759:32583029,43962453:9099021 +g1,11759:32583029,43962453 +) +(1,11780:6630773,44827533:25952256,513147,134348 +h1,11779:6630773,44827533:983040,0,0 +k1,11779:9605584,44827533:208536 +k1,11779:10169979,44827533:208535 +k1,11779:13074011,44827533:208536 +k1,11779:14383551,44827533:208535 +k1,11779:14947947,44827533:208536 +k1,11779:16456061,44827533:208535 +k1,11779:18609050,44827533:208536 +k1,11779:19836670,44827533:208535 +k1,11779:21780599,44827533:208536 +k1,11779:22520631,44827533:208535 +k1,11779:23538537,44827533:208536 +k1,11779:25771479,44827533:208535 +k1,11779:26596053,44827533:208536 +k1,11779:27894452,44827533:208535 +k1,11779:30390850,44827533:208536 +k1,11779:32583029,44827533:0 +) +(1,11780:6630773,45692613:25952256,513147,134348 +h1,11779:7601361,45692613:0,0,0 +k1,11779:8249905,45692613:267780 +k1,11779:9842168,45692613:267780 +k1,11779:12211032,45692613:267780 +k1,11779:13583094,45692613:267780 +k1,11779:14598640,45692613:267780 +k1,11779:17153627,45692613:267780 +k1,11779:18705913,45692613:267780 +k1,11779:19788961,45692613:267780 +k1,11779:21123012,45692613:267780 +k1,11779:22844381,45692613:267780 +k1,11779:24243968,45692613:267780 +k1,11779:26471274,45692613:267780 +k1,11779:27355092,45692613:267780 +k1,11779:28641957,45692613:267780 +k1,11779:30999680,45692613:267780 +k1,11779:32583029,45692613:0 +) +] +(1,11780:32583029,45706769:0,0,0 +g1,11780:32583029,45706769 +) +) +] +(1,11780:6630773,47279633:25952256,0,0 +h1,11780:6630773,47279633:25952256,0,0 +) +] +(1,11780:4262630,4025873:0,0,0 +[1,11780:-473656,4025873:0,0,0 +(1,11780:-473656,-710413:0,0,0 +(1,11780:-473656,-710413:0,0,0 +g1,11780:-473656,-710413 +) +g1,11780:-473656,-710413 ) ] ) ] !19788 -}186 -Input:1964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1966:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}187 Input:1967:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1968:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1969:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1970:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1971:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1972:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1973:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{187 -[1,11833:4262630,47279633:28320399,43253760,0 -(1,11833:4262630,4025873:0,0,0 -[1,11833:-473656,4025873:0,0,0 -(1,11833:-473656,-710413:0,0,0 -(1,11833:-473656,-644877:0,0,0 -k1,11833:-473656,-644877:-65536 +{188 +[1,11832:4262630,47279633:28320399,43253760,0 +(1,11832:4262630,4025873:0,0,0 +[1,11832:-473656,4025873:0,0,0 +(1,11832:-473656,-710413:0,0,0 +(1,11832:-473656,-644877:0,0,0 +k1,11832:-473656,-644877:-65536 ) -(1,11833:-473656,4736287:0,0,0 -k1,11833:-473656,4736287:5209943 +(1,11832:-473656,4736287:0,0,0 +k1,11832:-473656,4736287:5209943 ) -g1,11833:-473656,-710413 +g1,11832:-473656,-710413 ) ] ) -[1,11833:6630773,47279633:25952256,43253760,0 -[1,11833:6630773,4812305:25952256,786432,0 -(1,11833:6630773,4812305:25952256,505283,134348 -(1,11833:6630773,4812305:25952256,505283,134348 -g1,11833:3078558,4812305 -[1,11833:3078558,4812305:0,0,0 -(1,11833:3078558,2439708:0,1703936,0 -k1,11833:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,11833:2537886,2439708:1179648,16384,0 +[1,11832:6630773,47279633:25952256,43253760,0 +[1,11832:6630773,4812305:25952256,786432,0 +(1,11832:6630773,4812305:25952256,505283,134348 +(1,11832:6630773,4812305:25952256,505283,134348 +g1,11832:3078558,4812305 +[1,11832:3078558,4812305:0,0,0 +(1,11832:3078558,2439708:0,1703936,0 +k1,11832:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,11832:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,11833:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,11832:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,11833:3078558,4812305:0,0,0 -(1,11833:3078558,2439708:0,1703936,0 -g1,11833:29030814,2439708 -g1,11833:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,11833:36151628,1915420:16384,1179648,0 +[1,11832:3078558,4812305:0,0,0 +(1,11832:3078558,2439708:0,1703936,0 +g1,11832:29030814,2439708 +g1,11832:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,11832:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,11833:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,11832:37855564,2439708:1179648,16384,0 ) ) -k1,11833:3078556,2439708:-34777008 +k1,11832:3078556,2439708:-34777008 ) ] -[1,11833:3078558,4812305:0,0,0 -(1,11833:3078558,49800853:0,16384,2228224 -k1,11833:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,11833:2537886,49800853:1179648,16384,0 +[1,11832:3078558,4812305:0,0,0 +(1,11832:3078558,49800853:0,16384,2228224 +k1,11832:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,11832:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,11833:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,11832:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,11833:3078558,4812305:0,0,0 -(1,11833:3078558,49800853:0,16384,2228224 -g1,11833:29030814,49800853 -g1,11833:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,11833:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,11833:37855564,49800853:1179648,16384,0 -) -) -k1,11833:3078556,49800853:-34777008 -) -] -g1,11833:6630773,4812305 -k1,11833:23588214,4812305:15762064 -g1,11833:25210885,4812305 -g1,11833:25997972,4812305 -g1,11833:28481131,4812305 -g1,11833:30046786,4812305 -) -) -] -[1,11833:6630773,45706769:25952256,40108032,0 -(1,11833:6630773,45706769:25952256,40108032,0 -(1,11833:6630773,45706769:0,0,0 -g1,11833:6630773,45706769 -) -[1,11833:6630773,45706769:25952256,40108032,0 -(1,11781:6630773,6254097:25952256,513147,126483 -k1,11780:8021941,6254097:244943 -k1,11780:9964923,6254097:244944 -k1,11780:10565726,6254097:244943 -k1,11780:11910364,6254097:244944 -k1,11780:12806735,6254097:244943 -(1,11780:12806735,6254097:0,452978,115847 -r1,11833:15275272,6254097:2468537,568825,115847 -k1,11780:12806735,6254097:-2468537 -) -(1,11780:12806735,6254097:2468537,452978,115847 -k1,11780:12806735,6254097:3277 -h1,11780:15271995,6254097:0,411205,112570 -) -k1,11780:15520216,6254097:244944 -k1,11780:18390531,6254097:244943 -k1,11780:19861654,6254097:244944 -k1,11780:20789482,6254097:244943 -k1,11780:24024178,6254097:244944 -k1,11780:25593604,6254097:244943 -k1,11780:27939632,6254097:244944 -k1,11780:29288857,6254097:244943 -k1,11780:30819617,6254097:244944 -k1,11780:31812326,6254097:244943 -k1,11780:32583029,6254097:0 -) -(1,11781:6630773,7119177:25952256,513147,134348 -k1,11780:10482443,7119177:205902 -k1,11780:11972851,7119177:205902 -k1,11780:14923402,7119177:205903 -k1,11780:15900007,7119177:205902 -k1,11780:18065435,7119177:205902 -k1,11780:18887375,7119177:205902 -k1,11780:20112362,7119177:205902 -k1,11780:22557629,7119177:205902 -k1,11780:26994536,7119177:205903 -k1,11780:28694004,7119177:205902 -k1,11780:29586068,7119177:205902 -k1,11780:32583029,7119177:0 -) -(1,11781:6630773,7984257:25952256,513147,102891 -g1,11780:7185862,7984257 -g1,11780:8668286,7984257 -g1,11780:10547858,7984257 -g1,11780:11398515,7984257 -g1,11780:11953604,7984257 -g1,11780:14664173,7984257 -g1,11780:15479440,7984257 -g1,11780:16697754,7984257 -g1,11780:19136348,7984257 -g1,11780:23566581,7984257 -g1,11780:24835358,7984257 -g1,11780:27700592,7984257 -g1,11780:28918906,7984257 -k1,11781:32583029,7984257:616044 -g1,11781:32583029,7984257 -) -(1,11783:6630773,8849337:25952256,513147,134348 -h1,11782:6630773,8849337:983040,0,0 -k1,11782:8326875,8849337:225474 -k1,11782:11247872,8849337:225501 -k1,11782:12577654,8849337:225500 -k1,11782:14813799,8849337:225500 -k1,11782:16414901,8849337:225501 -k1,11782:17797111,8849337:225500 -k1,11782:20155809,8849337:225501 -k1,11782:21106137,8849337:225500 -k1,11782:23029676,8849337:225501 -k1,11782:25926423,8849337:225500 -k1,11782:28325098,8849337:225501 -k1,11782:29542158,8849337:225500 -k1,11782:32583029,8849337:0 -) -(1,11783:6630773,9714417:25952256,505283,134348 -k1,11782:8158581,9714417:147620 -k1,11782:9836466,9714417:147619 -k1,11782:10635514,9714417:147620 -k1,11782:11530900,9714417:147620 -k1,11782:14522783,9714417:147620 -k1,11782:15937868,9714417:147619 -k1,11782:16441348,9714417:147620 -k1,11782:18461987,9714417:147620 -k1,11782:20742804,9714417:147620 -k1,11782:21518258,9714417:147619 -k1,11782:23417655,9714417:147620 -k1,11782:25436328,9714417:147620 -k1,11782:26907775,9714417:147620 -k1,11782:28046954,9714417:147619 -k1,11782:29707800,9714417:147620 -k1,11782:30506848,9714417:147620 -k1,11782:32583029,9714417:0 -) -(1,11783:6630773,10579497:25952256,513147,134348 -k1,11782:7549023,10579497:152134 -k1,11782:8720242,10579497:152134 -k1,11782:10883021,10579497:152134 -k1,11782:11686583,10579497:152134 -k1,11782:12586483,10579497:152134 -k1,11782:15517344,10579497:152134 -k1,11782:16936943,10579497:152133 -k1,11782:18245787,10579497:152134 -k1,11782:18812717,10579497:152087 -k1,11782:21098048,10579497:152134 -k1,11782:22292204,10579497:152134 -k1,11782:25279425,10579497:152134 -k1,11782:27419266,10579497:152134 -k1,11782:28258873,10579497:152134 -k1,11782:31436804,10579497:152134 -k1,11783:32583029,10579497:0 -) -(1,11783:6630773,11444577:25952256,505283,134348 -(1,11782:6630773,11444577:0,452978,115847 -r1,11833:8044174,11444577:1413401,568825,115847 -k1,11782:6630773,11444577:-1413401 -) -(1,11782:6630773,11444577:1413401,452978,115847 -k1,11782:6630773,11444577:3277 -h1,11782:8040897,11444577:0,411205,112570 -) -k1,11782:8352975,11444577:135131 -k1,11782:11617450,11444577:135131 -k1,11782:12368619,11444577:135131 -k1,11782:14782437,11444577:135131 -h1,11782:15753025,11444577:0,0,0 -k1,11782:15888156,11444577:135131 -k1,11782:16832656,11444577:135130 -k1,11782:18465940,11444577:135131 -h1,11782:19661317,11444577:0,0,0 -k1,11782:19970118,11444577:135131 -k1,11782:22115894,11444577:135131 -k1,11782:23574852,11444577:135131 -k1,11782:25103934,11444577:135131 -k1,11782:27910312,11444577:135131 -k1,11782:32583029,11444577:0 -) -(1,11783:6630773,12309657:25952256,513147,126483 -k1,11782:9896723,12309657:138572 -k1,11782:11406307,12309657:138571 -k1,11782:14265934,12309657:138572 -k1,11782:18211491,12309657:138571 -k1,11782:20388233,12309657:138572 -k1,11782:21142842,12309657:138571 -k1,11782:23512915,12309657:138572 -k1,11782:26934185,12309657:138572 -k1,11782:27700591,12309657:138571 -k1,11782:28858248,12309657:138572 -k1,11782:30363900,12309657:138571 -k1,11782:31169628,12309657:138572 -(1,11782:31169628,12309657:0,452978,115847 -r1,11833:32583029,12309657:1413401,568825,115847 -k1,11782:31169628,12309657:-1413401 -) -(1,11782:31169628,12309657:1413401,452978,115847 -k1,11782:31169628,12309657:3277 -h1,11782:32579752,12309657:0,411205,112570 -) -k1,11782:32583029,12309657:0 -) -(1,11783:6630773,13174737:25952256,505283,134348 -g1,11782:7849087,13174737 -g1,11782:10827043,13174737 -g1,11782:13489770,13174737 -g1,11782:15244168,13174737 -g1,11782:15974894,13174737 -(1,11782:15974894,13174737:0,452978,115847 -r1,11833:16684872,13174737:709978,568825,115847 -k1,11782:15974894,13174737:-709978 -) -(1,11782:15974894,13174737:709978,452978,115847 -k1,11782:15974894,13174737:3277 -h1,11782:16681595,13174737:0,411205,112570 -) -g1,11782:17057771,13174737 -g1,11782:18448445,13174737 -g1,11782:19436072,13174737 -g1,11782:21417880,13174737 -g1,11782:22148606,13174737 -(1,11782:22148606,13174737:0,452978,115847 -r1,11833:23562007,13174737:1413401,568825,115847 -k1,11782:22148606,13174737:-1413401 -) -(1,11782:22148606,13174737:1413401,452978,115847 -k1,11782:22148606,13174737:3277 -h1,11782:23558730,13174737:0,411205,112570 -) -k1,11783:32583029,13174737:8968594 -g1,11783:32583029,13174737 -) -v1,11785:6630773,14039817:0,393216,0 -(1,11808:6630773,28769561:25952256,15122960,0 -g1,11808:6630773,28769561 -g1,11808:6237557,28769561 -r1,11833:6368629,28769561:131072,15122960,0 -g1,11808:6567858,28769561 -g1,11808:6764466,28769561 -[1,11808:6764466,28769561:25818563,15122960,0 -(1,11786:6764466,14312294:25818563,665693,196608 -(1,11785:6764466,14312294:0,665693,196608 -r1,11833:7868133,14312294:1103667,862301,196608 -k1,11785:6764466,14312294:-1103667 -) -(1,11785:6764466,14312294:1103667,665693,196608 -) -k1,11785:8161548,14312294:293415 -k1,11785:9479477,14312294:327680 -k1,11785:11556126,14312294:293414 -k1,11785:14545037,14312294:293415 -(1,11785:14545037,14312294:0,452978,115847 -r1,11833:17365286,14312294:2820249,568825,115847 -k1,11785:14545037,14312294:-2820249 -) -(1,11785:14545037,14312294:2820249,452978,115847 -k1,11785:14545037,14312294:3277 -h1,11785:17362009,14312294:0,411205,112570 -) -k1,11785:17658700,14312294:293414 -k1,11785:18483612,14312294:293415 -k1,11785:20644802,14312294:293414 -k1,11785:22948206,14312294:293415 -k1,11785:23597480,14312294:293414 -k1,11785:26760061,14312294:293415 -k1,11785:28072560,14312294:293414 -k1,11785:29716017,14312294:293415 -k1,11785:30668723,14312294:293414 -k1,11786:32583029,14312294:0 -) -(1,11786:6764466,15177374:25818563,513147,134348 -k1,11785:8255240,15177374:223308 -k1,11785:10488538,15177374:223309 -k1,11785:11730931,15177374:223308 -k1,11785:14649735,15177374:223308 -k1,11785:16605816,15177374:223309 -k1,11785:18020569,15177374:223308 -k1,11785:19262962,15177374:223308 -k1,11785:22558598,15177374:223308 -k1,11785:24987194,15177374:223309 -k1,11785:25861930,15177374:223308 -(1,11785:25861930,15177374:0,452978,115847 -r1,11833:28682179,15177374:2820249,568825,115847 -k1,11785:25861930,15177374:-2820249 -) -(1,11785:25861930,15177374:2820249,452978,115847 -k1,11785:25861930,15177374:3277 -h1,11785:28678902,15177374:0,411205,112570 -) -k1,11785:28905487,15177374:223308 -k1,11785:29660293,15177374:223309 -k1,11785:30902686,15177374:223308 -k1,11785:32583029,15177374:0 -) -(1,11786:6764466,16042454:25818563,513147,126483 -k1,11785:9826453,16042454:283260 -k1,11785:10871240,16042454:283259 -k1,11785:12173585,16042454:283260 -k1,11785:15152340,16042454:283259 -k1,11785:16708965,16042454:283260 -k1,11785:17620060,16042454:283260 -k1,11785:20708260,16042454:283259 -k1,11785:21457481,16042454:283260 -k1,11785:24436236,16042454:283259 -(1,11785:24436236,16042454:0,452978,115847 -r1,11833:27256485,16042454:2820249,568825,115847 -k1,11785:24436236,16042454:-2820249 -) -(1,11785:24436236,16042454:2820249,452978,115847 -k1,11785:24436236,16042454:3277 -h1,11785:27253208,16042454:0,411205,112570 -) -k1,11785:27539745,16042454:283260 -k1,11785:28354501,16042454:283259 -k1,11785:29704032,16042454:283260 -k1,11785:32583029,16042454:0 -) -(1,11786:6764466,16907534:25818563,513147,126483 -k1,11785:9059209,16907534:253297 -k1,11785:10331590,16907534:253296 -k1,11785:12265230,16907534:253297 -k1,11785:15297253,16907534:253296 -k1,11785:16312078,16907534:253297 -k1,11785:17584459,16907534:253296 -k1,11785:20533252,16907534:253297 -k1,11785:21886243,16907534:253297 -k1,11785:22671036,16907534:253296 -k1,11785:24208839,16907534:253297 -k1,11785:27240862,16907534:253296 -k1,11785:28255687,16907534:253297 -k1,11785:29528068,16907534:253296 -k1,11785:30929556,16907534:253297 -k1,11786:32583029,16907534:0 -) -(1,11786:6764466,17772614:25818563,513147,126483 -k1,11785:8569478,17772614:165957 -k1,11785:11486637,17772614:165958 -k1,11785:13662583,17772614:165957 -k1,11785:14847626,17772614:165958 -k1,11785:16590379,17772614:165957 -k1,11785:17415628,17772614:165957 -k1,11785:18600671,17772614:165958 -k1,11785:21635794,17772614:165957 -k1,11785:23076426,17772614:165957 -k1,11785:24939111,17772614:165958 -k1,11785:28270457,17772614:165957 -k1,11785:29627860,17772614:165958 -k1,11785:31252648,17772614:165957 -k1,11785:32583029,17772614:0 -) -(1,11786:6764466,18637694:25818563,473825,7863 -k1,11786:32583029,18637694:22627616 -g1,11786:32583029,18637694 -) -v1,11789:6764466,19322549:0,393216,0 -(1,11806:6764466,28572953:25818563,9643620,196608 -g1,11806:6764466,28572953 -g1,11806:6764466,28572953 -g1,11806:6567858,28572953 -(1,11806:6567858,28572953:0,9643620,196608 -r1,11833:32779637,28572953:26211779,9840228,196608 -k1,11806:6567857,28572953:-26211780 -) -(1,11806:6567858,28572953:26211779,9643620,196608 -[1,11806:6764466,28572953:25818563,9447012,0 -(1,11791:6764466,19556986:25818563,431045,106246 -(1,11790:6764466,19556986:0,0,0 -g1,11790:6764466,19556986 -g1,11790:6764466,19556986 -g1,11790:6436786,19556986 -(1,11790:6436786,19556986:0,0,0 -) -g1,11790:6764466,19556986 -) -g1,11791:8092282,19556986 -g1,11791:9088144,19556986 -g1,11791:13071591,19556986 -k1,11791:13071591,19556986:0 -h1,11791:17055039,19556986:0,0,0 -k1,11791:32583029,19556986:15527990 -g1,11791:32583029,19556986 -) -(1,11792:6764466,20241841:25818563,424439,112852 -h1,11792:6764466,20241841:0,0,0 -k1,11792:6764466,20241841:0 -h1,11792:10084006,20241841:0,0,0 -k1,11792:32583030,20241841:22499024 -g1,11792:32583030,20241841 -) -(1,11793:6764466,20926696:25818563,431045,106246 -h1,11793:6764466,20926696:0,0,0 -g1,11793:8092282,20926696 -g1,11793:9088144,20926696 -k1,11793:9088144,20926696:0 -h1,11793:17055039,20926696:0,0,0 -k1,11793:32583029,20926696:15527990 -g1,11793:32583029,20926696 -) -(1,11794:6764466,21611551:25818563,424439,79822 -h1,11794:6764466,21611551:0,0,0 -g1,11794:7096420,21611551 -g1,11794:7428374,21611551 -g1,11794:7760328,21611551 -g1,11794:8092282,21611551 -g1,11794:8424236,21611551 -g1,11794:8756190,21611551 -g1,11794:9088144,21611551 -g1,11794:9420098,21611551 -g1,11794:9752052,21611551 -g1,11794:10084006,21611551 -g1,11794:10415960,21611551 -g1,11794:10747914,21611551 -g1,11794:11079868,21611551 -g1,11794:11411822,21611551 -g1,11794:11743776,21611551 -g1,11794:12075730,21611551 -g1,11794:12407684,21611551 -g1,11794:12739638,21611551 -g1,11794:13071592,21611551 -k1,11794:13071592,21611551:0 -h1,11794:16391132,21611551:0,0,0 -k1,11794:32583029,21611551:16191897 -g1,11794:32583029,21611551 -) -(1,11795:6764466,22296406:25818563,424439,112852 -h1,11795:6764466,22296406:0,0,0 -k1,11795:6764466,22296406:0 -h1,11795:10084006,22296406:0,0,0 -k1,11795:32583030,22296406:22499024 -g1,11795:32583030,22296406 -) -(1,11796:6764466,22981261:25818563,431045,79822 -h1,11796:6764466,22981261:0,0,0 -g1,11796:8092282,22981261 -g1,11796:9088144,22981261 -k1,11796:9088144,22981261:0 -h1,11796:16059177,22981261:0,0,0 -k1,11796:32583029,22981261:16523852 -g1,11796:32583029,22981261 -) -(1,11797:6764466,23666116:25818563,424439,106246 -h1,11797:6764466,23666116:0,0,0 -g1,11797:7096420,23666116 -g1,11797:7428374,23666116 -g1,11797:7760328,23666116 -g1,11797:8092282,23666116 -g1,11797:8424236,23666116 -g1,11797:8756190,23666116 -g1,11797:9088144,23666116 -g1,11797:9420098,23666116 -g1,11797:9752052,23666116 -g1,11797:10084006,23666116 -g1,11797:10415960,23666116 -g1,11797:10747914,23666116 -g1,11797:11079868,23666116 -g1,11797:11411822,23666116 -g1,11797:11743776,23666116 -g1,11797:12075730,23666116 -g1,11797:12407684,23666116 -g1,11797:12739638,23666116 -g1,11797:13071592,23666116 -k1,11797:13071592,23666116:0 -h1,11797:17386994,23666116:0,0,0 -k1,11797:32583029,23666116:15196035 -g1,11797:32583029,23666116 -) -(1,11798:6764466,24350971:25818563,424439,112852 -h1,11798:6764466,24350971:0,0,0 -k1,11798:6764466,24350971:0 -h1,11798:10084006,24350971:0,0,0 -k1,11798:32583030,24350971:22499024 -g1,11798:32583030,24350971 -) -(1,11799:6764466,25035826:25818563,431045,79822 -h1,11799:6764466,25035826:0,0,0 -g1,11799:8092282,25035826 -g1,11799:9088144,25035826 -k1,11799:9088144,25035826:0 -h1,11799:15727223,25035826:0,0,0 -k1,11799:32583029,25035826:16855806 -g1,11799:32583029,25035826 -) -(1,11800:6764466,25720681:25818563,424439,106246 -h1,11800:6764466,25720681:0,0,0 -g1,11800:7096420,25720681 -g1,11800:7428374,25720681 -g1,11800:7760328,25720681 -g1,11800:8092282,25720681 -g1,11800:8424236,25720681 -g1,11800:8756190,25720681 -g1,11800:9088144,25720681 -g1,11800:9420098,25720681 -g1,11800:9752052,25720681 -g1,11800:10084006,25720681 -g1,11800:10415960,25720681 -g1,11800:10747914,25720681 -g1,11800:11079868,25720681 -g1,11800:11411822,25720681 -g1,11800:11743776,25720681 -g1,11800:12075730,25720681 -g1,11800:12407684,25720681 -g1,11800:12739638,25720681 -g1,11800:13071592,25720681 -k1,11800:13071592,25720681:0 -h1,11800:17386994,25720681:0,0,0 -k1,11800:32583029,25720681:15196035 -g1,11800:32583029,25720681 -) -(1,11801:6764466,26405536:25818563,424439,112852 -h1,11801:6764466,26405536:0,0,0 -k1,11801:6764466,26405536:0 -h1,11801:10084006,26405536:0,0,0 -k1,11801:32583030,26405536:22499024 -g1,11801:32583030,26405536 -) -(1,11802:6764466,27090391:25818563,431045,106246 -h1,11802:6764466,27090391:0,0,0 -g1,11802:8092282,27090391 -g1,11802:9088144,27090391 -k1,11802:9088144,27090391:0 -h1,11802:18382855,27090391:0,0,0 -k1,11802:32583029,27090391:14200174 -g1,11802:32583029,27090391 -) -(1,11803:6764466,27775246:25818563,424439,106246 -h1,11803:6764466,27775246:0,0,0 -g1,11803:7096420,27775246 -g1,11803:7428374,27775246 -g1,11803:7760328,27775246 -g1,11803:8092282,27775246 -g1,11803:8424236,27775246 -g1,11803:8756190,27775246 -g1,11803:9088144,27775246 -g1,11803:9420098,27775246 -g1,11803:9752052,27775246 -g1,11803:10084006,27775246 -g1,11803:10415960,27775246 -g1,11803:10747914,27775246 -g1,11803:11079868,27775246 -g1,11803:11411822,27775246 -g1,11803:11743776,27775246 -g1,11803:12075730,27775246 -g1,11803:12407684,27775246 -g1,11803:12739638,27775246 -g1,11803:13071592,27775246 -k1,11803:13071592,27775246:0 -h1,11803:17386994,27775246:0,0,0 -k1,11803:32583029,27775246:15196035 -g1,11803:32583029,27775246 -) -(1,11804:6764466,28460101:25818563,424439,112852 -h1,11804:6764466,28460101:0,0,0 -k1,11804:6764466,28460101:0 -h1,11804:10084006,28460101:0,0,0 -k1,11804:32583030,28460101:22499024 -g1,11804:32583030,28460101 -) -] -) -g1,11806:32583029,28572953 -g1,11806:6764466,28572953 -g1,11806:6764466,28572953 -g1,11806:32583029,28572953 -g1,11806:32583029,28572953 -) -h1,11806:6764466,28769561:0,0,0 -] -g1,11808:32583029,28769561 -) -h1,11808:6630773,28769561:0,0,0 -(1,11811:6630773,29634641:25952256,513147,134348 -h1,11810:6630773,29634641:983040,0,0 -k1,11810:8398783,29634641:157135 -k1,11810:9989846,29634641:157135 -k1,11810:10735494,29634641:157135 -k1,11810:14295258,29634641:157135 -k1,11810:15103821,29634641:157135 -k1,11810:18286753,29634641:157135 -k1,11810:19435448,29634641:157135 -k1,11810:21797870,29634641:157135 -k1,11810:22716533,29634641:157135 -k1,11810:24557288,29634641:157135 -k1,11810:26095267,29634641:157135 -k1,11810:26783899,29634641:157135 -k1,11810:30295167,29634641:157135 -k1,11811:32583029,29634641:0 -) -(1,11811:6630773,30499721:25952256,513147,126483 -k1,11810:7900721,30499721:242343 -k1,11810:8794492,30499721:242343 -k1,11810:12469610,30499721:242342 -k1,11810:13189710,30499721:242343 -k1,11810:14928240,30499721:242343 -k1,11810:15786621,30499721:242343 -k1,11810:16384824,30499721:242343 -k1,11810:19826634,30499721:242342 -k1,11810:21645773,30499721:242343 -k1,11810:24632764,30499721:242343 -k1,11810:25894192,30499721:242343 -k1,11810:27816877,30499721:242342 -k1,11810:28718512,30499721:242343 -k1,11810:29316715,30499721:242343 -k1,11810:32583029,30499721:0 -) -(1,11811:6630773,31364801:25952256,513147,134348 -k1,11810:8091024,31364801:255044 -k1,11810:12079654,31364801:255044 -k1,11810:13282350,31364801:255045 -k1,11810:14308097,31364801:255044 -k1,11810:18016233,31364801:255044 -k1,11810:19059675,31364801:255044 -k1,11810:20995062,31364801:255044 -k1,11810:23615956,31364801:255044 -k1,11810:24890086,31364801:255045 -k1,11810:27840626,31364801:255044 -k1,11810:28627167,31364801:255044 -k1,11810:29948482,31364801:255044 -k1,11810:32583029,31364801:0 -) -(1,11811:6630773,32229881:25952256,513147,134348 -g1,11810:8072565,32229881 -g1,11810:8737755,32229881 -g1,11810:9956069,32229881 -g1,11810:13227626,32229881 -g1,11810:15632142,32229881 -g1,11810:17038544,32229881 -g1,11810:17593633,32229881 -k1,11811:32583029,32229881:12425628 -g1,11811:32583029,32229881 -) -v1,11813:6630773,32914736:0,393216,0 -(1,11823:6630773,36099487:25952256,3577967,196608 -g1,11823:6630773,36099487 -g1,11823:6630773,36099487 -g1,11823:6434165,36099487 -(1,11823:6434165,36099487:0,3577967,196608 -r1,11833:32779637,36099487:26345472,3774575,196608 -k1,11823:6434165,36099487:-26345472 -) -(1,11823:6434165,36099487:26345472,3577967,196608 -[1,11823:6630773,36099487:25952256,3381359,0 -(1,11815:6630773,33149173:25952256,431045,79822 -(1,11814:6630773,33149173:0,0,0 -g1,11814:6630773,33149173 -g1,11814:6630773,33149173 -g1,11814:6303093,33149173 -(1,11814:6303093,33149173:0,0,0 -) -g1,11814:6630773,33149173 -) -g1,11815:7958589,33149173 -g1,11815:8954451,33149173 -g1,11815:13601806,33149173 -g1,11815:14597668,33149173 -h1,11815:15593530,33149173:0,0,0 -k1,11815:32583030,33149173:16989500 -g1,11815:32583030,33149173 -) -(1,11816:6630773,33834028:25952256,407923,4954 -h1,11816:6630773,33834028:0,0,0 -g1,11816:7294681,33834028 -g1,11816:8290543,33834028 -h1,11816:8622497,33834028:0,0,0 -k1,11816:32583029,33834028:23960532 -g1,11816:32583029,33834028 -) -(1,11817:6630773,34518883:25952256,431045,79822 -h1,11817:6630773,34518883:0,0,0 -k1,11817:6630773,34518883:0 -h1,11817:8622497,34518883:0,0,0 -k1,11817:32583029,34518883:23960532 -g1,11817:32583029,34518883 -) -(1,11818:6630773,35203738:25952256,298373,4954 -h1,11818:6630773,35203738:0,0,0 -h1,11818:6962727,35203738:0,0,0 -k1,11818:32583029,35203738:25620302 -g1,11818:32583029,35203738 -) -(1,11822:6630773,36019665:25952256,424439,79822 -(1,11820:6630773,36019665:0,0,0 -g1,11820:6630773,36019665 -g1,11820:6630773,36019665 -g1,11820:6303093,36019665 -(1,11820:6303093,36019665:0,0,0 -) -g1,11820:6630773,36019665 -) -g1,11822:7626635,36019665 -g1,11822:8954451,36019665 -h1,11822:9286405,36019665:0,0,0 -k1,11822:32583029,36019665:23296624 -g1,11822:32583029,36019665 -) -] -) -g1,11823:32583029,36099487 -g1,11823:6630773,36099487 -g1,11823:6630773,36099487 -g1,11823:32583029,36099487 -g1,11823:32583029,36099487 -) -h1,11823:6630773,36296095:0,0,0 -v1,11827:6630773,37161175:0,393216,0 -(1,11828:6630773,41109155:25952256,4341196,0 -g1,11828:6630773,41109155 -g1,11828:6237557,41109155 -r1,11833:6368629,41109155:131072,4341196,0 -g1,11828:6567858,41109155 -g1,11828:6764466,41109155 -[1,11828:6764466,41109155:25818563,4341196,0 -(1,11828:6764466,37522352:25818563,754393,260573 -(1,11827:6764466,37522352:0,754393,260573 -r1,11833:7856192,37522352:1091726,1014966,260573 -k1,11827:6764466,37522352:-1091726 -) -(1,11827:6764466,37522352:1091726,754393,260573 -) -k1,11827:8098625,37522352:242433 -k1,11827:8426305,37522352:327680 -k1,11827:9296573,37522352:242433 -k1,11827:11231146,37522352:242433 -k1,11827:13175549,37522352:242433 -k1,11827:16494242,37522352:242433 -k1,11827:20082943,37522352:242433 -k1,11827:23728005,37522352:242433 -k1,11827:25074720,37522352:242433 -k1,11827:26064919,37522352:242433 -k1,11827:28512639,37522352:242433 -k1,11827:29516600,37522352:242433 -k1,11827:32583029,37522352:0 -) -(1,11828:6764466,38387432:25818563,513147,134348 -k1,11827:9695509,38387432:202779 -k1,11827:11182795,38387432:202780 -k1,11827:15361643,38387432:202779 -k1,11827:16215850,38387432:202779 -k1,11827:16774490,38387432:202780 -k1,11827:19105878,38387432:202779 -k1,11827:22589389,38387432:202779 -k1,11827:24802158,38387432:202780 -k1,11827:26024022,38387432:202779 -k1,11827:27803597,38387432:202779 -k1,11827:28665669,38387432:202780 -k1,11827:29887533,38387432:202779 -k1,11827:32583029,38387432:0 -) -(1,11828:6764466,39252512:25818563,513147,134348 -k1,11827:7978142,39252512:222116 -k1,11827:13295683,39252512:222117 -k1,11827:14169227,39252512:222116 -k1,11827:15410429,39252512:222117 -k1,11827:18704873,39252512:222116 -k1,11827:20118435,39252512:222117 -k1,11827:22602854,39252512:222116 -k1,11827:23456738,39252512:222117 -k1,11827:24148747,39252512:222116 -k1,11827:24902361,39252512:222117 -k1,11827:27754437,39252512:222116 -k1,11827:28627982,39252512:222117 -k1,11827:31089463,39252512:222116 -k1,11827:32583029,39252512:0 -) -(1,11828:6764466,40117592:25818563,513147,134348 -k1,11827:10125415,40117592:186385 -k1,11827:10927839,40117592:186386 -k1,11827:11529055,40117592:186373 -k1,11827:13450833,40117592:186385 -k1,11827:15329359,40117592:186386 -k1,11827:18358040,40117592:186385 -k1,11827:21013823,40117592:186386 -k1,11827:22391653,40117592:186385 -k1,11827:26976816,40117592:186386 -k1,11827:31048831,40117592:186385 -k1,11828:32583029,40117592:0 -) -(1,11828:6764466,40982672:25818563,505283,126483 -g1,11827:8561463,40982672 -g1,11827:9376730,40982672 -g1,11827:9990802,40982672 -g1,11827:11282516,40982672 -g1,11827:12684986,40982672 -k1,11828:32583028,40982672:16861104 -g1,11828:32583028,40982672 -) -] -g1,11828:32583029,41109155 -) -h1,11828:6630773,41109155:0,0,0 -(1,11831:6630773,41974235:25952256,505283,134348 -h1,11830:6630773,41974235:983040,0,0 -k1,11830:10984627,41974235:250645 -k1,11830:12710488,41974235:250646 -k1,11830:14469772,41974235:250645 -k1,11830:16050799,41974235:250646 -k1,11830:18187570,41974235:250645 -k1,11830:19701750,41974235:250646 -k1,11830:21235590,41974235:250645 -k1,11830:24327877,41974235:250646 -k1,11830:26928643,41974235:250645 -k1,11830:27940817,41974235:250646 -k1,11830:30470149,41974235:250645 -k1,11831:32583029,41974235:0 -) -(1,11831:6630773,42839315:25952256,513147,126483 -k1,11830:8443629,42839315:173801 -k1,11830:10627420,42839315:173802 -k1,11830:11820306,42839315:173801 -k1,11830:13570904,42839315:173802 -k1,11830:14403997,42839315:173801 -k1,11830:14933659,42839315:173802 -k1,11830:17802956,42839315:173801 -k1,11830:18968318,42839315:173802 -k1,11830:21184876,42839315:173801 -k1,11830:22734279,42839315:173802 -k1,11830:24918069,42839315:173801 -k1,11830:26110956,42839315:173802 -k1,11830:27861553,42839315:173801 -k1,11830:28694647,42839315:173802 -k1,11830:29887533,42839315:173801 -k1,11830:32583029,42839315:0 -) -(1,11831:6630773,43704395:25952256,513147,126483 -k1,11830:7959894,43704395:137676 -k1,11830:9089130,43704395:137676 -k1,11830:12394160,43704395:137675 -k1,11830:14229874,43704395:137676 -k1,11830:15386635,43704395:137676 -k1,11830:18219807,43704395:137676 -k1,11830:20698428,43704395:137675 -k1,11830:22403725,43704395:137676 -k1,11830:23560486,43704395:137676 -k1,11830:24971527,43704395:137676 -k1,11830:25737037,43704395:137675 -k1,11830:28153400,43704395:137676 -k1,11830:29557232,43704395:137676 -k1,11830:32583029,43704395:0 -) -(1,11831:6630773,44569475:25952256,513147,134348 -g1,11830:7446040,44569475 -g1,11830:8060112,44569475 -g1,11830:9074609,44569475 -g1,11830:10340109,44569475 -g1,11830:12318640,44569475 -g1,11830:14026508,44569475 -g1,11830:18283071,44569475 -g1,11830:21040826,44569475 -g1,11830:22539634,44569475 -k1,11831:32583029,44569475:7889882 -g1,11831:32583029,44569475 -) -] -(1,11833:32583029,45706769:0,0,0 -g1,11833:32583029,45706769 -) -) -] -(1,11833:6630773,47279633:25952256,0,0 -h1,11833:6630773,47279633:25952256,0,0 -) -] -(1,11833:4262630,4025873:0,0,0 -[1,11833:-473656,4025873:0,0,0 -(1,11833:-473656,-710413:0,0,0 -(1,11833:-473656,-710413:0,0,0 -g1,11833:-473656,-710413 -) -g1,11833:-473656,-710413 +[1,11832:3078558,4812305:0,0,0 +(1,11832:3078558,49800853:0,16384,2228224 +g1,11832:29030814,49800853 +g1,11832:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,11832:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,11832:37855564,49800853:1179648,16384,0 +) +) +k1,11832:3078556,49800853:-34777008 +) +] +g1,11832:6630773,4812305 +k1,11832:23588214,4812305:15762064 +g1,11832:25210885,4812305 +g1,11832:25997972,4812305 +g1,11832:28481131,4812305 +g1,11832:30046786,4812305 +) +) +] +[1,11832:6630773,45706769:25952256,40108032,0 +(1,11832:6630773,45706769:25952256,40108032,0 +(1,11832:6630773,45706769:0,0,0 +g1,11832:6630773,45706769 +) +[1,11832:6630773,45706769:25952256,40108032,0 +(1,11780:6630773,6254097:25952256,513147,126483 +k1,11779:8021941,6254097:244943 +k1,11779:9964923,6254097:244944 +k1,11779:10565726,6254097:244943 +k1,11779:11910364,6254097:244944 +k1,11779:12806735,6254097:244943 +(1,11779:12806735,6254097:0,452978,115847 +r1,11832:15275272,6254097:2468537,568825,115847 +k1,11779:12806735,6254097:-2468537 +) +(1,11779:12806735,6254097:2468537,452978,115847 +k1,11779:12806735,6254097:3277 +h1,11779:15271995,6254097:0,411205,112570 +) +k1,11779:15520216,6254097:244944 +k1,11779:18390531,6254097:244943 +k1,11779:19861654,6254097:244944 +k1,11779:20789482,6254097:244943 +k1,11779:24024178,6254097:244944 +k1,11779:25593604,6254097:244943 +k1,11779:27939632,6254097:244944 +k1,11779:29288857,6254097:244943 +k1,11779:30819617,6254097:244944 +k1,11779:31812326,6254097:244943 +k1,11779:32583029,6254097:0 +) +(1,11780:6630773,7119177:25952256,513147,134348 +k1,11779:10482443,7119177:205902 +k1,11779:11972851,7119177:205902 +k1,11779:14923402,7119177:205903 +k1,11779:15900007,7119177:205902 +k1,11779:18065435,7119177:205902 +k1,11779:18887375,7119177:205902 +k1,11779:20112362,7119177:205902 +k1,11779:22557629,7119177:205902 +k1,11779:26994536,7119177:205903 +k1,11779:28694004,7119177:205902 +k1,11779:29586068,7119177:205902 +k1,11779:32583029,7119177:0 +) +(1,11780:6630773,7984257:25952256,513147,102891 +g1,11779:7185862,7984257 +g1,11779:8668286,7984257 +g1,11779:10547858,7984257 +g1,11779:11398515,7984257 +g1,11779:11953604,7984257 +g1,11779:14664173,7984257 +g1,11779:15479440,7984257 +g1,11779:16697754,7984257 +g1,11779:19136348,7984257 +g1,11779:23566581,7984257 +g1,11779:24835358,7984257 +g1,11779:27700592,7984257 +g1,11779:28918906,7984257 +k1,11780:32583029,7984257:616044 +g1,11780:32583029,7984257 +) +(1,11782:6630773,8849337:25952256,513147,134348 +h1,11781:6630773,8849337:983040,0,0 +k1,11781:8326875,8849337:225474 +k1,11781:11247872,8849337:225501 +k1,11781:12577654,8849337:225500 +k1,11781:14813799,8849337:225500 +k1,11781:16414901,8849337:225501 +k1,11781:17797111,8849337:225500 +k1,11781:20155809,8849337:225501 +k1,11781:21106137,8849337:225500 +k1,11781:23029676,8849337:225501 +k1,11781:25926423,8849337:225500 +k1,11781:28325098,8849337:225501 +k1,11781:29542158,8849337:225500 +k1,11781:32583029,8849337:0 +) +(1,11782:6630773,9714417:25952256,505283,134348 +k1,11781:8158581,9714417:147620 +k1,11781:9836466,9714417:147619 +k1,11781:10635514,9714417:147620 +k1,11781:11530900,9714417:147620 +k1,11781:14522783,9714417:147620 +k1,11781:15937868,9714417:147619 +k1,11781:16441348,9714417:147620 +k1,11781:18461987,9714417:147620 +k1,11781:20742804,9714417:147620 +k1,11781:21518258,9714417:147619 +k1,11781:23417655,9714417:147620 +k1,11781:25436328,9714417:147620 +k1,11781:26907775,9714417:147620 +k1,11781:28046954,9714417:147619 +k1,11781:29707800,9714417:147620 +k1,11781:30506848,9714417:147620 +k1,11781:32583029,9714417:0 +) +(1,11782:6630773,10579497:25952256,513147,134348 +k1,11781:7549023,10579497:152134 +k1,11781:8720242,10579497:152134 +k1,11781:10883021,10579497:152134 +k1,11781:11686583,10579497:152134 +k1,11781:12586483,10579497:152134 +k1,11781:15517344,10579497:152134 +k1,11781:16936943,10579497:152133 +k1,11781:18245787,10579497:152134 +k1,11781:18812717,10579497:152087 +k1,11781:21098048,10579497:152134 +k1,11781:22292204,10579497:152134 +k1,11781:25279425,10579497:152134 +k1,11781:27419266,10579497:152134 +k1,11781:28258873,10579497:152134 +k1,11781:31436804,10579497:152134 +k1,11782:32583029,10579497:0 +) +(1,11782:6630773,11444577:25952256,505283,134348 +(1,11781:6630773,11444577:0,452978,115847 +r1,11832:8044174,11444577:1413401,568825,115847 +k1,11781:6630773,11444577:-1413401 +) +(1,11781:6630773,11444577:1413401,452978,115847 +k1,11781:6630773,11444577:3277 +h1,11781:8040897,11444577:0,411205,112570 +) +k1,11781:8352975,11444577:135131 +k1,11781:11617450,11444577:135131 +k1,11781:12368619,11444577:135131 +k1,11781:14782437,11444577:135131 +h1,11781:15753025,11444577:0,0,0 +k1,11781:15888156,11444577:135131 +k1,11781:16832656,11444577:135130 +k1,11781:18465940,11444577:135131 +h1,11781:19661317,11444577:0,0,0 +k1,11781:19970118,11444577:135131 +k1,11781:22115894,11444577:135131 +k1,11781:23574852,11444577:135131 +k1,11781:25103934,11444577:135131 +k1,11781:27910312,11444577:135131 +k1,11781:32583029,11444577:0 +) +(1,11782:6630773,12309657:25952256,513147,126483 +k1,11781:9896723,12309657:138572 +k1,11781:11406307,12309657:138571 +k1,11781:14265934,12309657:138572 +k1,11781:18211491,12309657:138571 +k1,11781:20388233,12309657:138572 +k1,11781:21142842,12309657:138571 +k1,11781:23512915,12309657:138572 +k1,11781:26934185,12309657:138572 +k1,11781:27700591,12309657:138571 +k1,11781:28858248,12309657:138572 +k1,11781:30363900,12309657:138571 +k1,11781:31169628,12309657:138572 +(1,11781:31169628,12309657:0,452978,115847 +r1,11832:32583029,12309657:1413401,568825,115847 +k1,11781:31169628,12309657:-1413401 +) +(1,11781:31169628,12309657:1413401,452978,115847 +k1,11781:31169628,12309657:3277 +h1,11781:32579752,12309657:0,411205,112570 +) +k1,11781:32583029,12309657:0 +) +(1,11782:6630773,13174737:25952256,505283,134348 +g1,11781:7849087,13174737 +g1,11781:10827043,13174737 +g1,11781:13489770,13174737 +g1,11781:15244168,13174737 +g1,11781:15974894,13174737 +(1,11781:15974894,13174737:0,452978,115847 +r1,11832:16684872,13174737:709978,568825,115847 +k1,11781:15974894,13174737:-709978 +) +(1,11781:15974894,13174737:709978,452978,115847 +k1,11781:15974894,13174737:3277 +h1,11781:16681595,13174737:0,411205,112570 +) +g1,11781:17057771,13174737 +g1,11781:18448445,13174737 +g1,11781:19436072,13174737 +g1,11781:21417880,13174737 +g1,11781:22148606,13174737 +(1,11781:22148606,13174737:0,452978,115847 +r1,11832:23562007,13174737:1413401,568825,115847 +k1,11781:22148606,13174737:-1413401 +) +(1,11781:22148606,13174737:1413401,452978,115847 +k1,11781:22148606,13174737:3277 +h1,11781:23558730,13174737:0,411205,112570 +) +k1,11782:32583029,13174737:8968594 +g1,11782:32583029,13174737 +) +v1,11784:6630773,14039817:0,393216,0 +(1,11807:6630773,28769561:25952256,15122960,0 +g1,11807:6630773,28769561 +g1,11807:6237557,28769561 +r1,11832:6368629,28769561:131072,15122960,0 +g1,11807:6567858,28769561 +g1,11807:6764466,28769561 +[1,11807:6764466,28769561:25818563,15122960,0 +(1,11785:6764466,14312294:25818563,665693,196608 +(1,11784:6764466,14312294:0,665693,196608 +r1,11832:7868133,14312294:1103667,862301,196608 +k1,11784:6764466,14312294:-1103667 +) +(1,11784:6764466,14312294:1103667,665693,196608 +) +k1,11784:8161548,14312294:293415 +k1,11784:9479477,14312294:327680 +k1,11784:11556126,14312294:293414 +k1,11784:14545037,14312294:293415 +(1,11784:14545037,14312294:0,452978,115847 +r1,11832:17365286,14312294:2820249,568825,115847 +k1,11784:14545037,14312294:-2820249 +) +(1,11784:14545037,14312294:2820249,452978,115847 +k1,11784:14545037,14312294:3277 +h1,11784:17362009,14312294:0,411205,112570 +) +k1,11784:17658700,14312294:293414 +k1,11784:18483612,14312294:293415 +k1,11784:20644802,14312294:293414 +k1,11784:22948206,14312294:293415 +k1,11784:23597480,14312294:293414 +k1,11784:26760061,14312294:293415 +k1,11784:28072560,14312294:293414 +k1,11784:29716017,14312294:293415 +k1,11784:30668723,14312294:293414 +k1,11785:32583029,14312294:0 +) +(1,11785:6764466,15177374:25818563,513147,134348 +k1,11784:8255240,15177374:223308 +k1,11784:10488538,15177374:223309 +k1,11784:11730931,15177374:223308 +k1,11784:14649735,15177374:223308 +k1,11784:16605816,15177374:223309 +k1,11784:18020569,15177374:223308 +k1,11784:19262962,15177374:223308 +k1,11784:22558598,15177374:223308 +k1,11784:24987194,15177374:223309 +k1,11784:25861930,15177374:223308 +(1,11784:25861930,15177374:0,452978,115847 +r1,11832:28682179,15177374:2820249,568825,115847 +k1,11784:25861930,15177374:-2820249 +) +(1,11784:25861930,15177374:2820249,452978,115847 +k1,11784:25861930,15177374:3277 +h1,11784:28678902,15177374:0,411205,112570 +) +k1,11784:28905487,15177374:223308 +k1,11784:29660293,15177374:223309 +k1,11784:30902686,15177374:223308 +k1,11784:32583029,15177374:0 +) +(1,11785:6764466,16042454:25818563,513147,126483 +k1,11784:9826453,16042454:283260 +k1,11784:10871240,16042454:283259 +k1,11784:12173585,16042454:283260 +k1,11784:15152340,16042454:283259 +k1,11784:16708965,16042454:283260 +k1,11784:17620060,16042454:283260 +k1,11784:20708260,16042454:283259 +k1,11784:21457481,16042454:283260 +k1,11784:24436236,16042454:283259 +(1,11784:24436236,16042454:0,452978,115847 +r1,11832:27256485,16042454:2820249,568825,115847 +k1,11784:24436236,16042454:-2820249 +) +(1,11784:24436236,16042454:2820249,452978,115847 +k1,11784:24436236,16042454:3277 +h1,11784:27253208,16042454:0,411205,112570 +) +k1,11784:27539745,16042454:283260 +k1,11784:28354501,16042454:283259 +k1,11784:29704032,16042454:283260 +k1,11784:32583029,16042454:0 +) +(1,11785:6764466,16907534:25818563,513147,126483 +k1,11784:9059209,16907534:253297 +k1,11784:10331590,16907534:253296 +k1,11784:12265230,16907534:253297 +k1,11784:15297253,16907534:253296 +k1,11784:16312078,16907534:253297 +k1,11784:17584459,16907534:253296 +k1,11784:20533252,16907534:253297 +k1,11784:21886243,16907534:253297 +k1,11784:22671036,16907534:253296 +k1,11784:24208839,16907534:253297 +k1,11784:27240862,16907534:253296 +k1,11784:28255687,16907534:253297 +k1,11784:29528068,16907534:253296 +k1,11784:30929556,16907534:253297 +k1,11785:32583029,16907534:0 +) +(1,11785:6764466,17772614:25818563,513147,126483 +k1,11784:8569478,17772614:165957 +k1,11784:11486637,17772614:165958 +k1,11784:13662583,17772614:165957 +k1,11784:14847626,17772614:165958 +k1,11784:16590379,17772614:165957 +k1,11784:17415628,17772614:165957 +k1,11784:18600671,17772614:165958 +k1,11784:21635794,17772614:165957 +k1,11784:23076426,17772614:165957 +k1,11784:24939111,17772614:165958 +k1,11784:28270457,17772614:165957 +k1,11784:29627860,17772614:165958 +k1,11784:31252648,17772614:165957 +k1,11784:32583029,17772614:0 +) +(1,11785:6764466,18637694:25818563,473825,7863 +k1,11785:32583029,18637694:22627616 +g1,11785:32583029,18637694 +) +v1,11788:6764466,19322549:0,393216,0 +(1,11805:6764466,28572953:25818563,9643620,196608 +g1,11805:6764466,28572953 +g1,11805:6764466,28572953 +g1,11805:6567858,28572953 +(1,11805:6567858,28572953:0,9643620,196608 +r1,11832:32779637,28572953:26211779,9840228,196608 +k1,11805:6567857,28572953:-26211780 +) +(1,11805:6567858,28572953:26211779,9643620,196608 +[1,11805:6764466,28572953:25818563,9447012,0 +(1,11790:6764466,19556986:25818563,431045,106246 +(1,11789:6764466,19556986:0,0,0 +g1,11789:6764466,19556986 +g1,11789:6764466,19556986 +g1,11789:6436786,19556986 +(1,11789:6436786,19556986:0,0,0 +) +g1,11789:6764466,19556986 +) +g1,11790:8092282,19556986 +g1,11790:9088144,19556986 +g1,11790:13071591,19556986 +k1,11790:13071591,19556986:0 +h1,11790:17055039,19556986:0,0,0 +k1,11790:32583029,19556986:15527990 +g1,11790:32583029,19556986 +) +(1,11791:6764466,20241841:25818563,424439,112852 +h1,11791:6764466,20241841:0,0,0 +k1,11791:6764466,20241841:0 +h1,11791:10084006,20241841:0,0,0 +k1,11791:32583030,20241841:22499024 +g1,11791:32583030,20241841 +) +(1,11792:6764466,20926696:25818563,431045,106246 +h1,11792:6764466,20926696:0,0,0 +g1,11792:8092282,20926696 +g1,11792:9088144,20926696 +k1,11792:9088144,20926696:0 +h1,11792:17055039,20926696:0,0,0 +k1,11792:32583029,20926696:15527990 +g1,11792:32583029,20926696 +) +(1,11793:6764466,21611551:25818563,424439,79822 +h1,11793:6764466,21611551:0,0,0 +g1,11793:7096420,21611551 +g1,11793:7428374,21611551 +g1,11793:7760328,21611551 +g1,11793:8092282,21611551 +g1,11793:8424236,21611551 +g1,11793:8756190,21611551 +g1,11793:9088144,21611551 +g1,11793:9420098,21611551 +g1,11793:9752052,21611551 +g1,11793:10084006,21611551 +g1,11793:10415960,21611551 +g1,11793:10747914,21611551 +g1,11793:11079868,21611551 +g1,11793:11411822,21611551 +g1,11793:11743776,21611551 +g1,11793:12075730,21611551 +g1,11793:12407684,21611551 +g1,11793:12739638,21611551 +g1,11793:13071592,21611551 +k1,11793:13071592,21611551:0 +h1,11793:16391132,21611551:0,0,0 +k1,11793:32583029,21611551:16191897 +g1,11793:32583029,21611551 +) +(1,11794:6764466,22296406:25818563,424439,112852 +h1,11794:6764466,22296406:0,0,0 +k1,11794:6764466,22296406:0 +h1,11794:10084006,22296406:0,0,0 +k1,11794:32583030,22296406:22499024 +g1,11794:32583030,22296406 +) +(1,11795:6764466,22981261:25818563,431045,79822 +h1,11795:6764466,22981261:0,0,0 +g1,11795:8092282,22981261 +g1,11795:9088144,22981261 +k1,11795:9088144,22981261:0 +h1,11795:16059177,22981261:0,0,0 +k1,11795:32583029,22981261:16523852 +g1,11795:32583029,22981261 +) +(1,11796:6764466,23666116:25818563,424439,106246 +h1,11796:6764466,23666116:0,0,0 +g1,11796:7096420,23666116 +g1,11796:7428374,23666116 +g1,11796:7760328,23666116 +g1,11796:8092282,23666116 +g1,11796:8424236,23666116 +g1,11796:8756190,23666116 +g1,11796:9088144,23666116 +g1,11796:9420098,23666116 +g1,11796:9752052,23666116 +g1,11796:10084006,23666116 +g1,11796:10415960,23666116 +g1,11796:10747914,23666116 +g1,11796:11079868,23666116 +g1,11796:11411822,23666116 +g1,11796:11743776,23666116 +g1,11796:12075730,23666116 +g1,11796:12407684,23666116 +g1,11796:12739638,23666116 +g1,11796:13071592,23666116 +k1,11796:13071592,23666116:0 +h1,11796:17386994,23666116:0,0,0 +k1,11796:32583029,23666116:15196035 +g1,11796:32583029,23666116 +) +(1,11797:6764466,24350971:25818563,424439,112852 +h1,11797:6764466,24350971:0,0,0 +k1,11797:6764466,24350971:0 +h1,11797:10084006,24350971:0,0,0 +k1,11797:32583030,24350971:22499024 +g1,11797:32583030,24350971 +) +(1,11798:6764466,25035826:25818563,431045,79822 +h1,11798:6764466,25035826:0,0,0 +g1,11798:8092282,25035826 +g1,11798:9088144,25035826 +k1,11798:9088144,25035826:0 +h1,11798:15727223,25035826:0,0,0 +k1,11798:32583029,25035826:16855806 +g1,11798:32583029,25035826 +) +(1,11799:6764466,25720681:25818563,424439,106246 +h1,11799:6764466,25720681:0,0,0 +g1,11799:7096420,25720681 +g1,11799:7428374,25720681 +g1,11799:7760328,25720681 +g1,11799:8092282,25720681 +g1,11799:8424236,25720681 +g1,11799:8756190,25720681 +g1,11799:9088144,25720681 +g1,11799:9420098,25720681 +g1,11799:9752052,25720681 +g1,11799:10084006,25720681 +g1,11799:10415960,25720681 +g1,11799:10747914,25720681 +g1,11799:11079868,25720681 +g1,11799:11411822,25720681 +g1,11799:11743776,25720681 +g1,11799:12075730,25720681 +g1,11799:12407684,25720681 +g1,11799:12739638,25720681 +g1,11799:13071592,25720681 +k1,11799:13071592,25720681:0 +h1,11799:17386994,25720681:0,0,0 +k1,11799:32583029,25720681:15196035 +g1,11799:32583029,25720681 +) +(1,11800:6764466,26405536:25818563,424439,112852 +h1,11800:6764466,26405536:0,0,0 +k1,11800:6764466,26405536:0 +h1,11800:10084006,26405536:0,0,0 +k1,11800:32583030,26405536:22499024 +g1,11800:32583030,26405536 +) +(1,11801:6764466,27090391:25818563,431045,106246 +h1,11801:6764466,27090391:0,0,0 +g1,11801:8092282,27090391 +g1,11801:9088144,27090391 +k1,11801:9088144,27090391:0 +h1,11801:18382855,27090391:0,0,0 +k1,11801:32583029,27090391:14200174 +g1,11801:32583029,27090391 +) +(1,11802:6764466,27775246:25818563,424439,106246 +h1,11802:6764466,27775246:0,0,0 +g1,11802:7096420,27775246 +g1,11802:7428374,27775246 +g1,11802:7760328,27775246 +g1,11802:8092282,27775246 +g1,11802:8424236,27775246 +g1,11802:8756190,27775246 +g1,11802:9088144,27775246 +g1,11802:9420098,27775246 +g1,11802:9752052,27775246 +g1,11802:10084006,27775246 +g1,11802:10415960,27775246 +g1,11802:10747914,27775246 +g1,11802:11079868,27775246 +g1,11802:11411822,27775246 +g1,11802:11743776,27775246 +g1,11802:12075730,27775246 +g1,11802:12407684,27775246 +g1,11802:12739638,27775246 +g1,11802:13071592,27775246 +k1,11802:13071592,27775246:0 +h1,11802:17386994,27775246:0,0,0 +k1,11802:32583029,27775246:15196035 +g1,11802:32583029,27775246 +) +(1,11803:6764466,28460101:25818563,424439,112852 +h1,11803:6764466,28460101:0,0,0 +k1,11803:6764466,28460101:0 +h1,11803:10084006,28460101:0,0,0 +k1,11803:32583030,28460101:22499024 +g1,11803:32583030,28460101 +) +] +) +g1,11805:32583029,28572953 +g1,11805:6764466,28572953 +g1,11805:6764466,28572953 +g1,11805:32583029,28572953 +g1,11805:32583029,28572953 +) +h1,11805:6764466,28769561:0,0,0 +] +g1,11807:32583029,28769561 +) +h1,11807:6630773,28769561:0,0,0 +(1,11810:6630773,29634641:25952256,513147,134348 +h1,11809:6630773,29634641:983040,0,0 +k1,11809:8398783,29634641:157135 +k1,11809:9989846,29634641:157135 +k1,11809:10735494,29634641:157135 +k1,11809:14295258,29634641:157135 +k1,11809:15103821,29634641:157135 +k1,11809:18286753,29634641:157135 +k1,11809:19435448,29634641:157135 +k1,11809:21797870,29634641:157135 +k1,11809:22716533,29634641:157135 +k1,11809:24557288,29634641:157135 +k1,11809:26095267,29634641:157135 +k1,11809:26783899,29634641:157135 +k1,11809:30295167,29634641:157135 +k1,11810:32583029,29634641:0 +) +(1,11810:6630773,30499721:25952256,513147,126483 +k1,11809:7900721,30499721:242343 +k1,11809:8794492,30499721:242343 +k1,11809:12469610,30499721:242342 +k1,11809:13189710,30499721:242343 +k1,11809:14928240,30499721:242343 +k1,11809:15786621,30499721:242343 +k1,11809:16384824,30499721:242343 +k1,11809:19826634,30499721:242342 +k1,11809:21645773,30499721:242343 +k1,11809:24632764,30499721:242343 +k1,11809:25894192,30499721:242343 +k1,11809:27816877,30499721:242342 +k1,11809:28718512,30499721:242343 +k1,11809:29316715,30499721:242343 +k1,11809:32583029,30499721:0 +) +(1,11810:6630773,31364801:25952256,513147,134348 +k1,11809:8091024,31364801:255044 +k1,11809:12079654,31364801:255044 +k1,11809:13282350,31364801:255045 +k1,11809:14308097,31364801:255044 +k1,11809:18016233,31364801:255044 +k1,11809:19059675,31364801:255044 +k1,11809:20995062,31364801:255044 +k1,11809:23615956,31364801:255044 +k1,11809:24890086,31364801:255045 +k1,11809:27840626,31364801:255044 +k1,11809:28627167,31364801:255044 +k1,11809:29948482,31364801:255044 +k1,11809:32583029,31364801:0 +) +(1,11810:6630773,32229881:25952256,513147,134348 +g1,11809:8072565,32229881 +g1,11809:8737755,32229881 +g1,11809:9956069,32229881 +g1,11809:13227626,32229881 +g1,11809:15632142,32229881 +g1,11809:17038544,32229881 +g1,11809:17593633,32229881 +k1,11810:32583029,32229881:12425628 +g1,11810:32583029,32229881 +) +v1,11812:6630773,32914736:0,393216,0 +(1,11822:6630773,36099487:25952256,3577967,196608 +g1,11822:6630773,36099487 +g1,11822:6630773,36099487 +g1,11822:6434165,36099487 +(1,11822:6434165,36099487:0,3577967,196608 +r1,11832:32779637,36099487:26345472,3774575,196608 +k1,11822:6434165,36099487:-26345472 +) +(1,11822:6434165,36099487:26345472,3577967,196608 +[1,11822:6630773,36099487:25952256,3381359,0 +(1,11814:6630773,33149173:25952256,431045,79822 +(1,11813:6630773,33149173:0,0,0 +g1,11813:6630773,33149173 +g1,11813:6630773,33149173 +g1,11813:6303093,33149173 +(1,11813:6303093,33149173:0,0,0 +) +g1,11813:6630773,33149173 +) +g1,11814:7958589,33149173 +g1,11814:8954451,33149173 +g1,11814:13601806,33149173 +g1,11814:14597668,33149173 +h1,11814:15593530,33149173:0,0,0 +k1,11814:32583030,33149173:16989500 +g1,11814:32583030,33149173 +) +(1,11815:6630773,33834028:25952256,407923,4954 +h1,11815:6630773,33834028:0,0,0 +g1,11815:7294681,33834028 +g1,11815:8290543,33834028 +h1,11815:8622497,33834028:0,0,0 +k1,11815:32583029,33834028:23960532 +g1,11815:32583029,33834028 +) +(1,11816:6630773,34518883:25952256,431045,79822 +h1,11816:6630773,34518883:0,0,0 +k1,11816:6630773,34518883:0 +h1,11816:8622497,34518883:0,0,0 +k1,11816:32583029,34518883:23960532 +g1,11816:32583029,34518883 +) +(1,11817:6630773,35203738:25952256,298373,4954 +h1,11817:6630773,35203738:0,0,0 +h1,11817:6962727,35203738:0,0,0 +k1,11817:32583029,35203738:25620302 +g1,11817:32583029,35203738 +) +(1,11821:6630773,36019665:25952256,424439,79822 +(1,11819:6630773,36019665:0,0,0 +g1,11819:6630773,36019665 +g1,11819:6630773,36019665 +g1,11819:6303093,36019665 +(1,11819:6303093,36019665:0,0,0 +) +g1,11819:6630773,36019665 +) +g1,11821:7626635,36019665 +g1,11821:8954451,36019665 +h1,11821:9286405,36019665:0,0,0 +k1,11821:32583029,36019665:23296624 +g1,11821:32583029,36019665 +) +] +) +g1,11822:32583029,36099487 +g1,11822:6630773,36099487 +g1,11822:6630773,36099487 +g1,11822:32583029,36099487 +g1,11822:32583029,36099487 +) +h1,11822:6630773,36296095:0,0,0 +v1,11826:6630773,37161175:0,393216,0 +(1,11827:6630773,41109155:25952256,4341196,0 +g1,11827:6630773,41109155 +g1,11827:6237557,41109155 +r1,11832:6368629,41109155:131072,4341196,0 +g1,11827:6567858,41109155 +g1,11827:6764466,41109155 +[1,11827:6764466,41109155:25818563,4341196,0 +(1,11827:6764466,37522352:25818563,754393,260573 +(1,11826:6764466,37522352:0,754393,260573 +r1,11832:7856192,37522352:1091726,1014966,260573 +k1,11826:6764466,37522352:-1091726 +) +(1,11826:6764466,37522352:1091726,754393,260573 +) +k1,11826:8098625,37522352:242433 +k1,11826:8426305,37522352:327680 +k1,11826:9296573,37522352:242433 +k1,11826:11231146,37522352:242433 +k1,11826:13175549,37522352:242433 +k1,11826:16494242,37522352:242433 +k1,11826:20082943,37522352:242433 +k1,11826:23728005,37522352:242433 +k1,11826:25074720,37522352:242433 +k1,11826:26064919,37522352:242433 +k1,11826:28512639,37522352:242433 +k1,11826:29516600,37522352:242433 +k1,11826:32583029,37522352:0 +) +(1,11827:6764466,38387432:25818563,513147,134348 +k1,11826:9695509,38387432:202779 +k1,11826:11182795,38387432:202780 +k1,11826:15361643,38387432:202779 +k1,11826:16215850,38387432:202779 +k1,11826:16774490,38387432:202780 +k1,11826:19105878,38387432:202779 +k1,11826:22589389,38387432:202779 +k1,11826:24802158,38387432:202780 +k1,11826:26024022,38387432:202779 +k1,11826:27803597,38387432:202779 +k1,11826:28665669,38387432:202780 +k1,11826:29887533,38387432:202779 +k1,11826:32583029,38387432:0 +) +(1,11827:6764466,39252512:25818563,513147,134348 +k1,11826:7978142,39252512:222116 +k1,11826:13295683,39252512:222117 +k1,11826:14169227,39252512:222116 +k1,11826:15410429,39252512:222117 +k1,11826:18704873,39252512:222116 +k1,11826:20118435,39252512:222117 +k1,11826:22602854,39252512:222116 +k1,11826:23456738,39252512:222117 +k1,11826:24148747,39252512:222116 +k1,11826:24902361,39252512:222117 +k1,11826:27754437,39252512:222116 +k1,11826:28627982,39252512:222117 +k1,11826:31089463,39252512:222116 +k1,11826:32583029,39252512:0 +) +(1,11827:6764466,40117592:25818563,513147,134348 +k1,11826:10125415,40117592:186385 +k1,11826:10927839,40117592:186386 +k1,11826:11529055,40117592:186373 +k1,11826:13450833,40117592:186385 +k1,11826:15329359,40117592:186386 +k1,11826:18358040,40117592:186385 +k1,11826:21013823,40117592:186386 +k1,11826:22391653,40117592:186385 +k1,11826:26976816,40117592:186386 +k1,11826:31048831,40117592:186385 +k1,11827:32583029,40117592:0 +) +(1,11827:6764466,40982672:25818563,505283,126483 +g1,11826:8561463,40982672 +g1,11826:9376730,40982672 +g1,11826:9990802,40982672 +g1,11826:11282516,40982672 +g1,11826:12684986,40982672 +k1,11827:32583028,40982672:16861104 +g1,11827:32583028,40982672 +) +] +g1,11827:32583029,41109155 +) +h1,11827:6630773,41109155:0,0,0 +(1,11830:6630773,41974235:25952256,505283,134348 +h1,11829:6630773,41974235:983040,0,0 +k1,11829:10984627,41974235:250645 +k1,11829:12710488,41974235:250646 +k1,11829:14469772,41974235:250645 +k1,11829:16050799,41974235:250646 +k1,11829:18187570,41974235:250645 +k1,11829:19701750,41974235:250646 +k1,11829:21235590,41974235:250645 +k1,11829:24327877,41974235:250646 +k1,11829:26928643,41974235:250645 +k1,11829:27940817,41974235:250646 +k1,11829:30470149,41974235:250645 +k1,11830:32583029,41974235:0 +) +(1,11830:6630773,42839315:25952256,513147,126483 +k1,11829:8443629,42839315:173801 +k1,11829:10627420,42839315:173802 +k1,11829:11820306,42839315:173801 +k1,11829:13570904,42839315:173802 +k1,11829:14403997,42839315:173801 +k1,11829:14933659,42839315:173802 +k1,11829:17802956,42839315:173801 +k1,11829:18968318,42839315:173802 +k1,11829:21184876,42839315:173801 +k1,11829:22734279,42839315:173802 +k1,11829:24918069,42839315:173801 +k1,11829:26110956,42839315:173802 +k1,11829:27861553,42839315:173801 +k1,11829:28694647,42839315:173802 +k1,11829:29887533,42839315:173801 +k1,11829:32583029,42839315:0 +) +(1,11830:6630773,43704395:25952256,513147,126483 +k1,11829:7959894,43704395:137676 +k1,11829:9089130,43704395:137676 +k1,11829:12394160,43704395:137675 +k1,11829:14229874,43704395:137676 +k1,11829:15386635,43704395:137676 +k1,11829:18219807,43704395:137676 +k1,11829:20698428,43704395:137675 +k1,11829:22403725,43704395:137676 +k1,11829:23560486,43704395:137676 +k1,11829:24971527,43704395:137676 +k1,11829:25737037,43704395:137675 +k1,11829:28153400,43704395:137676 +k1,11829:29557232,43704395:137676 +k1,11829:32583029,43704395:0 +) +(1,11830:6630773,44569475:25952256,513147,134348 +g1,11829:7446040,44569475 +g1,11829:8060112,44569475 +g1,11829:9074609,44569475 +g1,11829:10340109,44569475 +g1,11829:12318640,44569475 +g1,11829:14026508,44569475 +g1,11829:18283071,44569475 +g1,11829:21040826,44569475 +g1,11829:22539634,44569475 +k1,11830:32583029,44569475:7889882 +g1,11830:32583029,44569475 +) +] +(1,11832:32583029,45706769:0,0,0 +g1,11832:32583029,45706769 +) +) +] +(1,11832:6630773,47279633:25952256,0,0 +h1,11832:6630773,47279633:25952256,0,0 +) +] +(1,11832:4262630,4025873:0,0,0 +[1,11832:-473656,4025873:0,0,0 +(1,11832:-473656,-710413:0,0,0 +(1,11832:-473656,-710413:0,0,0 +g1,11832:-473656,-710413 +) +g1,11832:-473656,-710413 ) ] ) ] !27793 -}187 -Input:1971:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1972:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1973:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}188 Input:1974:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1975:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1976:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1977:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1978:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1979:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1980:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1981:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{188 -[1,11905:4262630,47279633:28320399,43253760,0 -(1,11905:4262630,4025873:0,0,0 -[1,11905:-473656,4025873:0,0,0 -(1,11905:-473656,-710413:0,0,0 -(1,11905:-473656,-644877:0,0,0 -k1,11905:-473656,-644877:-65536 +{189 +[1,11904:4262630,47279633:28320399,43253760,0 +(1,11904:4262630,4025873:0,0,0 +[1,11904:-473656,4025873:0,0,0 +(1,11904:-473656,-710413:0,0,0 +(1,11904:-473656,-644877:0,0,0 +k1,11904:-473656,-644877:-65536 ) -(1,11905:-473656,4736287:0,0,0 -k1,11905:-473656,4736287:5209943 +(1,11904:-473656,4736287:0,0,0 +k1,11904:-473656,4736287:5209943 ) -g1,11905:-473656,-710413 +g1,11904:-473656,-710413 ) ] ) -[1,11905:6630773,47279633:25952256,43253760,0 -[1,11905:6630773,4812305:25952256,786432,0 -(1,11905:6630773,4812305:25952256,513147,134348 -(1,11905:6630773,4812305:25952256,513147,134348 -g1,11905:3078558,4812305 -[1,11905:3078558,4812305:0,0,0 -(1,11905:3078558,2439708:0,1703936,0 -k1,11905:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,11905:2537886,2439708:1179648,16384,0 +[1,11904:6630773,47279633:25952256,43253760,0 +[1,11904:6630773,4812305:25952256,786432,0 +(1,11904:6630773,4812305:25952256,513147,134348 +(1,11904:6630773,4812305:25952256,513147,134348 +g1,11904:3078558,4812305 +[1,11904:3078558,4812305:0,0,0 +(1,11904:3078558,2439708:0,1703936,0 +k1,11904:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,11904:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,11905:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,11904:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,11905:3078558,4812305:0,0,0 -(1,11905:3078558,2439708:0,1703936,0 -g1,11905:29030814,2439708 -g1,11905:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,11905:36151628,1915420:16384,1179648,0 +[1,11904:3078558,4812305:0,0,0 +(1,11904:3078558,2439708:0,1703936,0 +g1,11904:29030814,2439708 +g1,11904:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,11904:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,11905:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,11904:37855564,2439708:1179648,16384,0 ) ) -k1,11905:3078556,2439708:-34777008 +k1,11904:3078556,2439708:-34777008 ) ] -[1,11905:3078558,4812305:0,0,0 -(1,11905:3078558,49800853:0,16384,2228224 -k1,11905:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,11905:2537886,49800853:1179648,16384,0 +[1,11904:3078558,4812305:0,0,0 +(1,11904:3078558,49800853:0,16384,2228224 +k1,11904:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,11904:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,11905:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,11904:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] -) -) -) +) +) +) ] -[1,11905:3078558,4812305:0,0,0 -(1,11905:3078558,49800853:0,16384,2228224 -g1,11905:29030814,49800853 -g1,11905:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,11905:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,11905:37855564,49800853:1179648,16384,0 -) -) -k1,11905:3078556,49800853:-34777008 -) -] -g1,11905:6630773,4812305 -g1,11905:6630773,4812305 -g1,11905:9499939,4812305 -g1,11905:12696785,4812305 -g1,11905:14106464,4812305 -g1,11905:17459285,4812305 -k1,11905:31387652,4812305:13928367 -) -) -] -[1,11905:6630773,45706769:25952256,40108032,0 -(1,11905:6630773,45706769:25952256,40108032,0 -(1,11905:6630773,45706769:0,0,0 -g1,11905:6630773,45706769 -) -[1,11905:6630773,45706769:25952256,40108032,0 -v1,11833:6630773,6254097:0,393216,0 -(1,11859:6630773,17552606:25952256,11691725,0 -g1,11859:6630773,17552606 -g1,11859:6237557,17552606 -r1,11905:6368629,17552606:131072,11691725,0 -g1,11859:6567858,17552606 -g1,11859:6764466,17552606 -[1,11859:6764466,17552606:25818563,11691725,0 -(1,11834:6764466,6615274:25818563,754393,260573 -(1,11833:6764466,6615274:0,754393,260573 -r1,11905:7856192,6615274:1091726,1014966,260573 -k1,11833:6764466,6615274:-1091726 -) -(1,11833:6764466,6615274:1091726,754393,260573 -) -k1,11833:8077863,6615274:221671 -k1,11833:8405543,6615274:327680 -k1,11833:11747383,6615274:221671 -k1,11833:13073336,6615274:221671 -k1,11833:14042772,6615274:221670 -k1,11833:16132219,6615274:221671 -k1,11833:18814112,6615274:221671 -k1,11833:20958609,6615274:221671 -k1,11833:22819335,6615274:221671 -k1,11833:23396866,6615274:221671 -k1,11833:25530221,6615274:221670 -k1,11833:27132736,6615274:221671 -k1,11833:27885904,6615274:221671 -k1,11833:30884991,6615274:221671 -k1,11833:32583029,6615274:0 -) -(1,11834:6764466,7480354:25818563,513147,126483 -k1,11833:7984687,7480354:201136 -k1,11833:10881319,7480354:201136 -k1,11833:11613951,7480354:201135 -k1,11833:13939764,7480354:201136 -k1,11833:15332345,7480354:201136 -k1,11833:17401257,7480354:201136 -k1,11833:18977994,7480354:201136 -k1,11833:20843089,7480354:201136 -k1,11833:24876769,7480354:201135 -k1,11833:28103702,7480354:201136 -k1,11833:29296398,7480354:201136 -k1,11833:32583029,7480354:0 -) -(1,11834:6764466,8345434:25818563,513147,134348 -k1,11833:8456714,8345434:179022 -k1,11833:11316160,8345434:179023 -k1,11833:12889133,8345434:179022 -k1,11833:14818623,8345434:179023 -k1,11833:18056865,8345434:179022 -k1,11833:18922050,8345434:179023 -k1,11833:19456932,8345434:179022 -k1,11833:22718113,8345434:179023 -k1,11833:25102422,8345434:179022 -k1,11833:27695791,8345434:179023 -k1,11833:28560975,8345434:179022 -k1,11833:29510701,8345434:179023 -k1,11833:32583029,8345434:0 -) -(1,11834:6764466,9210514:25818563,505283,134348 -g1,11833:7615123,9210514 -g1,11833:11095084,9210514 -(1,11833:11095084,9210514:0,414482,115847 -r1,11905:12156773,9210514:1061689,530329,115847 -k1,11833:11095084,9210514:-1061689 -) -(1,11833:11095084,9210514:1061689,414482,115847 -k1,11833:11095084,9210514:3277 -h1,11833:12153496,9210514:0,411205,112570 -) -g1,11833:12356002,9210514 -g1,11833:13787308,9210514 -g1,11833:16265224,9210514 -h1,11833:17235812,9210514:0,0,0 -g1,11833:17435041,9210514 -g1,11833:18443640,9210514 -g1,11833:20141022,9210514 -h1,11833:21336399,9210514:0,0,0 -k1,11834:32583029,9210514:10987108 -g1,11834:32583029,9210514 -) -v1,11836:6764466,9895369:0,393216,0 -(1,11843:6764466,11025555:25818563,1523402,196608 -g1,11843:6764466,11025555 -g1,11843:6764466,11025555 -g1,11843:6567858,11025555 -(1,11843:6567858,11025555:0,1523402,196608 -r1,11905:32779637,11025555:26211779,1720010,196608 -k1,11843:6567857,11025555:-26211780 -) -(1,11843:6567858,11025555:26211779,1523402,196608 -[1,11843:6764466,11025555:25818563,1326794,0 -(1,11838:6764466,10129806:25818563,431045,106246 -(1,11837:6764466,10129806:0,0,0 -g1,11837:6764466,10129806 -g1,11837:6764466,10129806 -g1,11837:6436786,10129806 -(1,11837:6436786,10129806:0,0,0 -) -g1,11837:6764466,10129806 -) -k1,11838:6764466,10129806:0 -g1,11838:11079867,10129806 -g1,11838:12739637,10129806 -g1,11838:13403545,10129806 -g1,11838:15395269,10129806 -g1,11838:16059177,10129806 -g1,11838:17055039,10129806 -g1,11838:17718947,10129806 -g1,11838:18382855,10129806 -h1,11838:19046763,10129806:0,0,0 -k1,11838:32583029,10129806:13536266 -g1,11838:32583029,10129806 -) -(1,11842:6764466,10945733:25818563,424439,79822 -(1,11840:6764466,10945733:0,0,0 -g1,11840:6764466,10945733 -g1,11840:6764466,10945733 -g1,11840:6436786,10945733 -(1,11840:6436786,10945733:0,0,0 -) -g1,11840:6764466,10945733 -) -g1,11842:7760328,10945733 -g1,11842:9088144,10945733 -h1,11842:9752052,10945733:0,0,0 -k1,11842:32583028,10945733:22830976 -g1,11842:32583028,10945733 -) -] -) -g1,11843:32583029,11025555 -g1,11843:6764466,11025555 -g1,11843:6764466,11025555 -g1,11843:32583029,11025555 -g1,11843:32583029,11025555 -) -h1,11843:6764466,11222163:0,0,0 -(1,11847:6764466,12087243:25818563,513147,134348 -h1,11846:6764466,12087243:983040,0,0 -k1,11846:8413889,12087243:178795 -k1,11846:9875899,12087243:178815 -k1,11846:11624957,12087243:178815 -k1,11846:14493370,12087243:178815 -k1,11846:15619836,12087243:178815 -k1,11846:18402396,12087243:178815 -k1,11846:21607008,12087243:178815 -k1,11846:22992996,12087243:178815 -k1,11846:26664880,12087243:178815 -k1,11846:27459733,12087243:178815 -k1,11846:28053371,12087243:178795 -k1,11846:29948574,12087243:178815 -k1,11846:31521340,12087243:178815 -(1,11846:31521340,12087243:0,452978,115847 -r1,11905:32583029,12087243:1061689,568825,115847 -k1,11846:31521340,12087243:-1061689 -) -(1,11846:31521340,12087243:1061689,452978,115847 -k1,11846:31521340,12087243:3277 -h1,11846:32579752,12087243:0,411205,112570 -) -k1,11846:32583029,12087243:0 -) -(1,11847:6764466,12952323:25818563,513147,126483 -k1,11846:7612618,12952323:161990 -k1,11846:8130468,12952323:161990 -k1,11846:11189149,12952323:161990 -k1,11846:12018295,12952323:161990 -(1,11846:12018295,12952323:0,459977,115847 -r1,11905:15541967,12952323:3523672,575824,115847 -k1,11846:12018295,12952323:-3523672 -) -(1,11846:12018295,12952323:3523672,459977,115847 -k1,11846:12018295,12952323:3277 -h1,11846:15538690,12952323:0,411205,112570 -) -k1,11846:15877627,12952323:161990 -k1,11846:17420461,12952323:161990 -k1,11846:18113949,12952323:161991 -k1,11846:21099885,12952323:161990 -k1,11846:21913303,12952323:161990 -k1,11846:23791026,12952323:161990 -k1,11846:25449203,12952323:161990 -k1,11846:28140227,12952323:161990 -k1,11846:29493662,12952323:161990 -k1,11846:32583029,12952323:0 -) -(1,11847:6764466,13817403:25818563,513147,126483 -k1,11846:8928168,13817403:186481 -k1,11846:10062300,13817403:186481 -k1,11846:13949598,13817403:186480 -k1,11846:14818964,13817403:186481 -k1,11846:17363430,13817403:186481 -k1,11846:20749379,13817403:186481 -k1,11846:23870562,13817403:186481 -k1,11846:24270022,13817403:186468 -k1,11846:26136845,13817403:186480 -k1,11846:27526567,13817403:186481 -k1,11846:30402646,13817403:186481 -k1,11846:32583029,13817403:0 -) -(1,11847:6764466,14682483:25818563,505283,134348 -k1,11846:7708430,14682483:196198 -k1,11846:9417855,14682483:196199 -k1,11846:12739465,14682483:196198 -k1,11846:14127109,14682483:196199 -k1,11846:16967029,14682483:196198 -k1,11846:18538828,14682483:196198 -k1,11846:19347789,14682483:196199 -k1,11846:20563072,14682483:196198 -k1,11846:21174110,14682483:196195 -k1,11846:23964224,14682483:196199 -k1,11846:24373411,14682483:196195 -k1,11846:26044824,14682483:196198 -k1,11846:27307294,14682483:196199 -k1,11846:29016718,14682483:196198 -(1,11846:29016718,14682483:0,452978,115847 -r1,11905:30078407,14682483:1061689,568825,115847 -k1,11846:29016718,14682483:-1061689 -) -(1,11846:29016718,14682483:1061689,452978,115847 -k1,11846:29016718,14682483:3277 -h1,11846:30075130,14682483:0,411205,112570 -) -k1,11846:30274606,14682483:196199 -k1,11846:31086842,14682483:196198 -k1,11846:32583029,14682483:0 -) -(1,11847:6764466,15547563:25818563,513147,126483 -g1,11846:9955414,15547563 -g1,11846:10770681,15547563 -g1,11846:11988995,15547563 -g1,11846:13943934,15547563 -g1,11846:16214101,15547563 -g1,11846:17360981,15547563 -g1,11846:18579295,15547563 -g1,11846:19935234,15547563 -k1,11847:32583029,15547563:10726935 -g1,11847:32583029,15547563 -) -v1,11849:6764466,16232418:0,393216,0 -(1,11856:6764466,17355998:25818563,1516796,196608 -g1,11856:6764466,17355998 -g1,11856:6764466,17355998 -g1,11856:6567858,17355998 -(1,11856:6567858,17355998:0,1516796,196608 -r1,11905:32779637,17355998:26211779,1713404,196608 -k1,11856:6567857,17355998:-26211780 -) -(1,11856:6567858,17355998:26211779,1516796,196608 -[1,11856:6764466,17355998:25818563,1320188,0 -(1,11851:6764466,16460249:25818563,424439,106246 -(1,11850:6764466,16460249:0,0,0 -g1,11850:6764466,16460249 -g1,11850:6764466,16460249 -g1,11850:6436786,16460249 -(1,11850:6436786,16460249:0,0,0 -) -g1,11850:6764466,16460249 -) -k1,11851:6764466,16460249:0 -g1,11851:8756190,16460249 -g1,11851:10415960,16460249 -g1,11851:11079868,16460249 -g1,11851:13071592,16460249 -g1,11851:13735500,16460249 -g1,11851:14731362,16460249 -g1,11851:15395270,16460249 -g1,11851:16059178,16460249 -h1,11851:16723086,16460249:0,0,0 -k1,11851:32583029,16460249:15859943 -g1,11851:32583029,16460249 -) -(1,11855:6764466,17276176:25818563,424439,79822 -(1,11853:6764466,17276176:0,0,0 -g1,11853:6764466,17276176 -g1,11853:6764466,17276176 -g1,11853:6436786,17276176 -(1,11853:6436786,17276176:0,0,0 -) -g1,11853:6764466,17276176 -) -g1,11855:7760328,17276176 -g1,11855:9088144,17276176 -h1,11855:9752052,17276176:0,0,0 -k1,11855:32583028,17276176:22830976 -g1,11855:32583028,17276176 -) -] -) -g1,11856:32583029,17355998 -g1,11856:6764466,17355998 -g1,11856:6764466,17355998 -g1,11856:32583029,17355998 -g1,11856:32583029,17355998 -) -h1,11856:6764466,17552606:0,0,0 -] -g1,11859:32583029,17552606 -) -h1,11859:6630773,17552606:0,0,0 -(1,11861:6630773,19669424:25952256,564462,139132 -(1,11861:6630773,19669424:2450326,534184,12975 -g1,11861:6630773,19669424 -g1,11861:9081099,19669424 -) -g1,11861:11416803,19669424 -g1,11861:12386409,19669424 -k1,11861:32583029,19669424:17844336 -g1,11861:32583029,19669424 -) -(1,11864:6630773,20927720:25952256,513147,134348 -k1,11863:9285186,20927720:160113 -k1,11863:10061336,20927720:160112 -k1,11863:10636253,20927720:160074 -k1,11863:11327862,20927720:160112 -k1,11863:15689488,20927720:160113 -k1,11863:17584993,20927720:160112 -k1,11863:22057375,20927720:160113 -k1,11863:23408932,20927720:160112 -k1,11863:25339172,20927720:160113 -k1,11863:27705225,20927720:160112 -k1,11863:28818887,20927720:160113 -k1,11863:30083281,20927720:160112 -k1,11863:31923737,20927720:160113 -k1,11863:32583029,20927720:0 -) -(1,11864:6630773,21792800:25952256,505283,134348 -k1,11863:11227230,21792800:208822 -k1,11863:12122213,21792800:208821 -k1,11863:14449159,21792800:208822 -k1,11863:15013840,21792800:208821 -k1,11863:18273363,21792800:208822 -k1,11863:19876135,21792800:208821 -k1,11863:23799538,21792800:208822 -k1,11863:26897841,21792800:208821 -k1,11863:28303350,21792800:208822 -k1,11863:30008358,21792800:208821 -k1,11863:32227169,21792800:208822 -k1,11863:32583029,21792800:0 -) -(1,11864:6630773,22657880:25952256,513147,134348 -k1,11863:9503107,22657880:176838 -k1,11863:11128291,22657880:176838 -k1,11863:11921167,22657880:176838 -k1,11863:12886403,22657880:176838 -k1,11863:14393622,22657880:176838 -k1,11863:18801464,22657880:176838 -k1,11863:19594340,22657880:176838 -k1,11863:22525656,22657880:176838 -k1,11863:24270115,22657880:176838 -k1,11863:25466038,22657880:176838 -k1,11863:27732819,22657880:176838 -k1,11863:31966991,22657880:176838 -k1,11863:32583029,22657880:0 -) -(1,11864:6630773,23522960:25952256,505283,134348 -k1,11863:9249810,23522960:154883 -k1,11863:10056121,23522960:154883 -k1,11863:14360745,23522960:154884 -k1,11863:15587797,23522960:154883 -k1,11863:16761765,23522960:154883 -k1,11863:18927293,23522960:154883 -k1,11863:21120347,23522960:154884 -k1,11863:21891268,23522960:154883 -k1,11863:24335979,23522960:154883 -k1,11863:25106900,23522960:154883 -k1,11863:26280869,23522960:154884 -k1,11863:28525695,23522960:154883 -k1,11863:32583029,23522960:0 -) -(1,11864:6630773,24388040:25952256,513147,134348 -k1,11863:7934761,24388040:199706 -k1,11863:8882233,24388040:199706 -k1,11863:12110357,24388040:199705 -k1,11863:13690907,24388040:199706 -k1,11863:16519262,24388040:199706 -k1,11863:18286589,24388040:199706 -k1,11863:22779559,24388040:199706 -k1,11863:24278844,24388040:199706 -k1,11863:26579633,24388040:199705 -k1,11863:27540867,24388040:199706 -k1,11863:30099214,24388040:199706 -k1,11863:32583029,24388040:0 -) -(1,11864:6630773,25253120:25952256,513147,134348 -k1,11863:7452431,25253120:170230 -k1,11863:10624864,25253120:170229 -k1,11863:12754620,25253120:170230 -k1,11863:16337310,25253120:170230 -k1,11863:17123578,25253120:170230 -k1,11863:18312892,25253120:170229 -k1,11863:20573065,25253120:170230 -k1,11863:24974299,25253120:170230 -k1,11863:25614422,25253120:170230 -k1,11863:26316148,25253120:170229 -k1,11863:29116338,25253120:170230 -k1,11863:29937996,25253120:170230 -k1,11863:32583029,25253120:0 -) -(1,11864:6630773,26118200:25952256,513147,134348 -k1,11863:8096613,26118200:262599 -k1,11863:11668124,26118200:262598 -k1,11863:13324674,26118200:262599 -k1,11863:16333887,26118200:262599 -(1,11863:16333887,26118200:0,414482,115847 -r1,11905:17395576,26118200:1061689,530329,115847 -k1,11863:16333887,26118200:-1061689 -) -(1,11863:16333887,26118200:1061689,414482,115847 -k1,11863:16333887,26118200:3277 -h1,11863:17392299,26118200:0,411205,112570 -) -k1,11863:17658174,26118200:262598 -k1,11863:18603658,26118200:262599 -k1,11863:20260207,26118200:262598 -k1,11863:23218302,26118200:262599 -(1,11863:23218302,26118200:0,452978,122846 -r1,11905:26038551,26118200:2820249,575824,122846 -k1,11863:23218302,26118200:-2820249 -) -(1,11863:23218302,26118200:2820249,452978,122846 -k1,11863:23218302,26118200:3277 -h1,11863:26035274,26118200:0,411205,112570 -) -k1,11863:26474820,26118200:262599 -k1,11863:28520653,26118200:262598 -k1,11863:30470149,26118200:262599 -k1,11864:32583029,26118200:0 -) -(1,11864:6630773,26983280:25952256,513147,134348 -k1,11863:8449091,26983280:179263 -k1,11863:9314515,26983280:179262 -k1,11863:10793357,26983280:179263 -k1,11863:13247374,26983280:179262 -k1,11863:14530919,26983280:179263 -k1,11863:16425914,26983280:179262 -k1,11863:17624262,26983280:179263 -k1,11863:19299711,26983280:179262 -k1,11863:21262209,26983280:179263 -k1,11863:23091668,26983280:179262 -k1,11863:25754746,26983280:179263 -k1,11863:26585436,26983280:179262 -k1,11863:28177000,26983280:179263 -k1,11863:29547707,26983280:179262 -k1,11863:31858201,26983280:179263 -k1,11863:32583029,26983280:0 -) -(1,11864:6630773,27848360:25952256,505283,7863 -g1,11863:7618400,27848360 -g1,11863:9152597,27848360 -g1,11863:10003254,27848360 -g1,11863:11931978,27848360 -k1,11864:32583030,27848360:18959568 -g1,11864:32583030,27848360 -) -v1,11866:6630773,28713440:0,393216,0 -(1,11867:6630773,30931260:25952256,2611036,0 -g1,11867:6630773,30931260 -g1,11867:6237557,30931260 -r1,11905:6368629,30931260:131072,2611036,0 -g1,11867:6567858,30931260 -g1,11867:6764466,30931260 -[1,11867:6764466,30931260:25818563,2611036,0 -(1,11867:6764466,29074617:25818563,754393,260573 -(1,11866:6764466,29074617:0,754393,260573 -r1,11905:7856192,29074617:1091726,1014966,260573 -k1,11866:6764466,29074617:-1091726 -) -(1,11866:6764466,29074617:1091726,754393,260573 -) -k1,11866:8133061,29074617:276869 -k1,11866:8460741,29074617:327680 -k1,11866:12303424,29074617:276869 -k1,11866:13771738,29074617:276869 -k1,11866:15542828,29074617:276869 -k1,11866:18661338,29074617:276869 -k1,11866:19929768,29074617:276870 -k1,11866:21272908,29074617:276869 -k1,11866:24724341,29074617:276869 -k1,11866:26381398,29074617:276869 -k1,11866:28881248,29074617:276869 -k1,11866:30304342,29074617:276869 -k1,11866:32583029,29074617:0 -) -(1,11867:6764466,29939697:25818563,513147,134348 -k1,11866:9809507,29939697:221095 -k1,11866:12040590,29939697:221094 -k1,11866:13280770,29939697:221095 -k1,11866:15078661,29939697:221095 -k1,11866:15959048,29939697:221095 -k1,11866:17199227,29939697:221094 -k1,11866:20289488,29939697:221095 -k1,11866:23445285,29939697:221095 -k1,11866:27642449,29939697:221095 -k1,11866:29607456,29939697:221094 -k1,11866:31563944,29939697:221095 -k1,11866:32583029,29939697:0 -) -(1,11867:6764466,30804777:25818563,513147,126483 -g1,11866:9710309,30804777 -(1,11866:9710309,30804777:0,414482,115847 -r1,11905:10420287,30804777:709978,530329,115847 -k1,11866:9710309,30804777:-709978 -) -(1,11866:9710309,30804777:709978,414482,115847 -k1,11866:9710309,30804777:3277 -h1,11866:10417010,30804777:0,411205,112570 -) -g1,11866:10793186,30804777 -g1,11866:12368016,30804777 -g1,11866:14346547,30804777 -g1,11866:14901636,30804777 -g1,11866:16595086,30804777 -g1,11866:18304265,30804777 -g1,11866:19788000,30804777 -g1,11866:20518726,30804777 -g1,11866:23885310,30804777 -g1,11866:25782577,30804777 -g1,11866:27000891,30804777 -g1,11866:29895616,30804777 -k1,11867:32583029,30804777:294039 -g1,11867:32583029,30804777 -) -] -g1,11867:32583029,30931260 -) -h1,11867:6630773,30931260:0,0,0 -(1,11870:6630773,31796340:25952256,513147,134348 -h1,11869:6630773,31796340:983040,0,0 -k1,11869:9056109,31796340:245609 -k1,11869:12017530,31796340:245609 -k1,11869:12922431,31796340:245609 -k1,11869:15236355,31796340:245608 -k1,11869:16013461,31796340:245609 -k1,11869:19923843,31796340:245609 -k1,11869:20930980,31796340:245609 -k1,11869:22195674,31796340:245609 -k1,11869:24811720,31796340:245609 -k1,11869:26618396,31796340:245608 -k1,11869:27523297,31796340:245609 -k1,11869:28124766,31796340:245609 -k1,11869:31386342,31796340:245609 -k1,11869:32583029,31796340:0 -) -(1,11870:6630773,32661420:25952256,505283,134348 -k1,11869:9422203,32661420:152951 -k1,11869:10647323,32661420:152951 -k1,11869:11866544,32661420:152950 -k1,11869:13038580,32661420:152951 -k1,11869:14567132,32661420:152951 -k1,11869:17546651,32661420:152951 -k1,11869:19397639,32661420:152950 -k1,11869:22019987,32661420:152951 -k1,11869:23758909,32661420:152951 -k1,11869:26210863,32661420:152951 -k1,11869:26895310,32661420:152950 -k1,11869:28746299,32661420:152951 -k1,11869:31189078,32661420:152951 -k1,11869:32583029,32661420:0 -) -(1,11870:6630773,33526500:25952256,513147,126483 -k1,11869:7825120,33526500:175262 -k1,11869:9653855,33526500:175262 -k1,11869:11567132,33526500:175262 -k1,11869:14144944,33526500:175262 -k1,11869:14948041,33526500:175262 -k1,11869:16616869,33526500:175262 -k1,11869:17147990,33526500:175261 -k1,11869:20149820,33526500:175262 -k1,11869:21481792,33526500:175262 -k1,11869:22789516,33526500:175262 -k1,11869:23712544,33526500:175262 -k1,11869:27072856,33526500:175262 -k1,11869:28009646,33526500:175262 -k1,11869:28973306,33526500:175262 -k1,11869:32583029,33526500:0 -) -(1,11870:6630773,34391580:25952256,513147,134348 -k1,11869:8624706,34391580:255918 -k1,11869:10072069,34391580:255918 -k1,11869:11347072,34391580:255918 -k1,11869:13304960,34391580:255918 -k1,11869:15780582,34391580:255918 -k1,11869:17108669,34391580:255918 -k1,11869:20008308,34391580:255917 -k1,11869:23449276,34391580:255918 -k1,11869:24466722,34391580:255918 -k1,11869:27920142,34391580:255918 -k1,11869:29195145,34391580:255918 -k1,11869:31189078,34391580:255918 -k1,11869:32583029,34391580:0 -) -(1,11870:6630773,35256660:25952256,513147,126483 -g1,11869:7849087,35256660 -g1,11869:11574153,35256660 -g1,11869:13692276,35256660 -g1,11869:14349602,35256660 -g1,11869:15080328,35256660 -k1,11870:32583029,35256660:15068694 -g1,11870:32583029,35256660 -) -(1,11872:6630773,36121740:25952256,513147,134348 -h1,11871:6630773,36121740:983040,0,0 -k1,11871:8626344,36121740:194642 -k1,11871:9840071,36121740:194642 -k1,11871:10449552,36121740:194638 -k1,11871:13486490,36121740:194642 -k1,11871:14782137,36121740:194642 -k1,11871:16109898,36121740:194643 -k1,11871:19031493,36121740:194642 -k1,11871:21181074,36121740:194642 -k1,11871:22323367,36121740:194642 -k1,11871:24403480,36121740:194642 -k1,11871:25407493,36121740:194643 -k1,11871:29319992,36121740:194642 -k1,11871:30046131,36121740:194642 -k1,11871:32583029,36121740:0 -) -(1,11872:6630773,36986820:25952256,513147,134348 -k1,11871:7671157,36986820:198246 -k1,11871:10049787,36986820:198247 -k1,11871:11600696,36986820:198246 -k1,11871:13124080,36986820:198246 -k1,11871:14388597,36986820:198246 -k1,11871:15238272,36986820:198247 -k1,11871:19227776,36986820:198246 -k1,11871:21154206,36986820:198246 -k1,11871:23420769,36986820:198247 -k1,11871:24903521,36986820:198246 -k1,11871:26093327,36986820:198246 -k1,11871:27613434,36986820:198246 -k1,11871:28470973,36986820:198247 -k1,11871:29688304,36986820:198246 -k1,11871:32583029,36986820:0 -) -(1,11872:6630773,37851900:25952256,513147,126483 -k1,11871:7870350,37851900:197555 -k1,11871:10902991,37851900:197554 -(1,11871:10902991,37851900:0,452978,115847 -r1,11905:11612969,37851900:709978,568825,115847 -k1,11871:10902991,37851900:-709978 -) -(1,11871:10902991,37851900:709978,452978,115847 -k1,11871:10902991,37851900:3277 -h1,11871:11609692,37851900:0,411205,112570 -) -k1,11871:11810524,37851900:197555 -k1,11871:12539575,37851900:197554 -k1,11871:13092990,37851900:197555 -k1,11871:16048299,37851900:197554 -k1,11871:18627432,37851900:197555 -k1,11871:19441024,37851900:197554 -k1,11871:20053420,37851900:197553 -k1,11871:21644925,37851900:197554 -k1,11871:22861565,37851900:197555 -k1,11871:24739462,37851900:197554 -k1,11871:25596309,37851900:197555 -k1,11871:26812948,37851900:197554 -k1,11871:31333913,37851900:197555 -k1,11872:32583029,37851900:0 -) -(1,11872:6630773,38716980:25952256,513147,134348 -k1,11871:8467048,38716980:221468 -$1,11871:8467048,38716980 -$1,11871:9046386,38716980 -k1,11871:9441524,38716980:221468 -k1,11871:10140749,38716980:221468 -k1,11871:11230569,38716980:221468 -k1,11871:12544522,38716980:221468 -k1,11871:13785075,38716980:221468 -k1,11871:15660016,38716980:221468 -k1,11871:17619500,38716980:221469 -k1,11871:18788619,38716980:221468 -k1,11871:20166797,38716980:221468 -k1,11871:21047557,38716980:221468 -k1,11871:22366753,38716980:221468 -k1,11871:25603532,38716980:221468 -k1,11871:26844085,38716980:221468 -k1,11871:29500871,38716980:221468 -k1,11871:32583029,38716980:0 -) -(1,11872:6630773,39582060:25952256,505283,134348 -g1,11871:7361499,39582060 -g1,11871:9780432,39582060 -g1,11871:11171106,39582060 -g1,11871:12474617,39582060 -g1,11871:13483216,39582060 -g1,11871:15706852,39582060 -g1,11871:16653847,39582060 -g1,11871:19697994,39582060 -k1,11872:32583029,39582060:10033564 -g1,11872:32583029,39582060 -) -v1,11874:6630773,40266915:0,393216,0 -(1,11901:6630773,45510161:25952256,5636462,196608 -g1,11901:6630773,45510161 -g1,11901:6630773,45510161 -g1,11901:6434165,45510161 -(1,11901:6434165,45510161:0,5636462,196608 -r1,11905:32779637,45510161:26345472,5833070,196608 -k1,11901:6434165,45510161:-26345472 -) -(1,11901:6434165,45510161:26345472,5636462,196608 -[1,11901:6630773,45510161:25952256,5439854,0 -(1,11876:6630773,40494746:25952256,424439,106246 -(1,11875:6630773,40494746:0,0,0 -g1,11875:6630773,40494746 -g1,11875:6630773,40494746 -g1,11875:6303093,40494746 -(1,11875:6303093,40494746:0,0,0 -) -g1,11875:6630773,40494746 -) -h1,11876:7294681,40494746:0,0,0 -k1,11876:32583029,40494746:25288348 -g1,11876:32583029,40494746 -) -(1,11880:6630773,41004158:25952256,424439,79822 -(1,11878:6630773,41004158:0,0,0 -g1,11878:6630773,41004158 -g1,11878:6630773,41004158 -g1,11878:6303093,41004158 -(1,11878:6303093,41004158:0,0,0 -) -g1,11878:6630773,41004158 -) -g1,11880:7626635,41004158 -g1,11880:8954451,41004158 -h1,11880:11610082,41004158:0,0,0 -k1,11880:32583030,41004158:20972948 -g1,11880:32583030,41004158 -) -(1,11882:6630773,41513570:25952256,424439,106246 -(1,11881:6630773,41513570:0,0,0 -g1,11881:6630773,41513570 -g1,11881:6630773,41513570 -g1,11881:6303093,41513570 -(1,11881:6303093,41513570:0,0,0 -) -g1,11881:6630773,41513570 -) -g1,11882:7626635,41513570 -g1,11882:8622497,41513570 -g1,11882:10946175,41513570 -h1,11882:12273991,41513570:0,0,0 -k1,11882:32583029,41513570:20309038 -g1,11882:32583029,41513570 -) -(1,11883:6630773,42198425:25952256,424439,106246 -h1,11883:6630773,42198425:0,0,0 -h1,11883:7294681,42198425:0,0,0 -k1,11883:32583029,42198425:25288348 -g1,11883:32583029,42198425 -) -(1,11887:6630773,42707837:25952256,424439,106246 -(1,11885:6630773,42707837:0,0,0 -g1,11885:6630773,42707837 -g1,11885:6630773,42707837 -g1,11885:6303093,42707837 -(1,11885:6303093,42707837:0,0,0 -) -g1,11885:6630773,42707837 -) -g1,11887:7626635,42707837 -g1,11887:8954451,42707837 -g1,11887:11278129,42707837 -h1,11887:12605945,42707837:0,0,0 -k1,11887:32583029,42707837:19977084 -g1,11887:32583029,42707837 -) -(1,11889:6630773,43217248:25952256,424439,106246 -(1,11888:6630773,43217248:0,0,0 -g1,11888:6630773,43217248 -g1,11888:6630773,43217248 -g1,11888:6303093,43217248 -(1,11888:6303093,43217248:0,0,0 -) -g1,11888:6630773,43217248 -) -k1,11889:6630773,43217248:0 -h1,11889:8622497,43217248:0,0,0 -k1,11889:32583029,43217248:23960532 -g1,11889:32583029,43217248 -) -(1,11890:6630773,43902103:25952256,424439,106246 -h1,11890:6630773,43902103:0,0,0 -h1,11890:7294681,43902103:0,0,0 -k1,11890:32583029,43902103:25288348 -g1,11890:32583029,43902103 -) -(1,11894:6630773,44411515:25952256,424439,79822 -(1,11892:6630773,44411515:0,0,0 -g1,11892:6630773,44411515 -g1,11892:6630773,44411515 -g1,11892:6303093,44411515 -(1,11892:6303093,44411515:0,0,0 -) -g1,11892:6630773,44411515 +[1,11904:3078558,4812305:0,0,0 +(1,11904:3078558,49800853:0,16384,2228224 +g1,11904:29030814,49800853 +g1,11904:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,11904:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,11904:37855564,49800853:1179648,16384,0 +) +) +k1,11904:3078556,49800853:-34777008 +) +] +g1,11904:6630773,4812305 +g1,11904:6630773,4812305 +g1,11904:9499939,4812305 +g1,11904:12696785,4812305 +g1,11904:14106464,4812305 +g1,11904:17459285,4812305 +k1,11904:31387652,4812305:13928367 +) +) +] +[1,11904:6630773,45706769:25952256,40108032,0 +(1,11904:6630773,45706769:25952256,40108032,0 +(1,11904:6630773,45706769:0,0,0 +g1,11904:6630773,45706769 +) +[1,11904:6630773,45706769:25952256,40108032,0 +v1,11832:6630773,6254097:0,393216,0 +(1,11858:6630773,17552606:25952256,11691725,0 +g1,11858:6630773,17552606 +g1,11858:6237557,17552606 +r1,11904:6368629,17552606:131072,11691725,0 +g1,11858:6567858,17552606 +g1,11858:6764466,17552606 +[1,11858:6764466,17552606:25818563,11691725,0 +(1,11833:6764466,6615274:25818563,754393,260573 +(1,11832:6764466,6615274:0,754393,260573 +r1,11904:7856192,6615274:1091726,1014966,260573 +k1,11832:6764466,6615274:-1091726 +) +(1,11832:6764466,6615274:1091726,754393,260573 +) +k1,11832:8077863,6615274:221671 +k1,11832:8405543,6615274:327680 +k1,11832:11747383,6615274:221671 +k1,11832:13073336,6615274:221671 +k1,11832:14042772,6615274:221670 +k1,11832:16132219,6615274:221671 +k1,11832:18814112,6615274:221671 +k1,11832:20958609,6615274:221671 +k1,11832:22819335,6615274:221671 +k1,11832:23396866,6615274:221671 +k1,11832:25530221,6615274:221670 +k1,11832:27132736,6615274:221671 +k1,11832:27885904,6615274:221671 +k1,11832:30884991,6615274:221671 +k1,11832:32583029,6615274:0 +) +(1,11833:6764466,7480354:25818563,513147,126483 +k1,11832:7984687,7480354:201136 +k1,11832:10881319,7480354:201136 +k1,11832:11613951,7480354:201135 +k1,11832:13939764,7480354:201136 +k1,11832:15332345,7480354:201136 +k1,11832:17401257,7480354:201136 +k1,11832:18977994,7480354:201136 +k1,11832:20843089,7480354:201136 +k1,11832:24876769,7480354:201135 +k1,11832:28103702,7480354:201136 +k1,11832:29296398,7480354:201136 +k1,11832:32583029,7480354:0 +) +(1,11833:6764466,8345434:25818563,513147,134348 +k1,11832:8456714,8345434:179022 +k1,11832:11316160,8345434:179023 +k1,11832:12889133,8345434:179022 +k1,11832:14818623,8345434:179023 +k1,11832:18056865,8345434:179022 +k1,11832:18922050,8345434:179023 +k1,11832:19456932,8345434:179022 +k1,11832:22718113,8345434:179023 +k1,11832:25102422,8345434:179022 +k1,11832:27695791,8345434:179023 +k1,11832:28560975,8345434:179022 +k1,11832:29510701,8345434:179023 +k1,11832:32583029,8345434:0 +) +(1,11833:6764466,9210514:25818563,505283,134348 +g1,11832:7615123,9210514 +g1,11832:11095084,9210514 +(1,11832:11095084,9210514:0,414482,115847 +r1,11904:12156773,9210514:1061689,530329,115847 +k1,11832:11095084,9210514:-1061689 +) +(1,11832:11095084,9210514:1061689,414482,115847 +k1,11832:11095084,9210514:3277 +h1,11832:12153496,9210514:0,411205,112570 +) +g1,11832:12356002,9210514 +g1,11832:13787308,9210514 +g1,11832:16265224,9210514 +h1,11832:17235812,9210514:0,0,0 +g1,11832:17435041,9210514 +g1,11832:18443640,9210514 +g1,11832:20141022,9210514 +h1,11832:21336399,9210514:0,0,0 +k1,11833:32583029,9210514:10987108 +g1,11833:32583029,9210514 +) +v1,11835:6764466,9895369:0,393216,0 +(1,11842:6764466,11025555:25818563,1523402,196608 +g1,11842:6764466,11025555 +g1,11842:6764466,11025555 +g1,11842:6567858,11025555 +(1,11842:6567858,11025555:0,1523402,196608 +r1,11904:32779637,11025555:26211779,1720010,196608 +k1,11842:6567857,11025555:-26211780 +) +(1,11842:6567858,11025555:26211779,1523402,196608 +[1,11842:6764466,11025555:25818563,1326794,0 +(1,11837:6764466,10129806:25818563,431045,106246 +(1,11836:6764466,10129806:0,0,0 +g1,11836:6764466,10129806 +g1,11836:6764466,10129806 +g1,11836:6436786,10129806 +(1,11836:6436786,10129806:0,0,0 +) +g1,11836:6764466,10129806 +) +k1,11837:6764466,10129806:0 +g1,11837:11079867,10129806 +g1,11837:12739637,10129806 +g1,11837:13403545,10129806 +g1,11837:15395269,10129806 +g1,11837:16059177,10129806 +g1,11837:17055039,10129806 +g1,11837:17718947,10129806 +g1,11837:18382855,10129806 +h1,11837:19046763,10129806:0,0,0 +k1,11837:32583029,10129806:13536266 +g1,11837:32583029,10129806 +) +(1,11841:6764466,10945733:25818563,424439,79822 +(1,11839:6764466,10945733:0,0,0 +g1,11839:6764466,10945733 +g1,11839:6764466,10945733 +g1,11839:6436786,10945733 +(1,11839:6436786,10945733:0,0,0 +) +g1,11839:6764466,10945733 +) +g1,11841:7760328,10945733 +g1,11841:9088144,10945733 +h1,11841:9752052,10945733:0,0,0 +k1,11841:32583028,10945733:22830976 +g1,11841:32583028,10945733 +) +] +) +g1,11842:32583029,11025555 +g1,11842:6764466,11025555 +g1,11842:6764466,11025555 +g1,11842:32583029,11025555 +g1,11842:32583029,11025555 +) +h1,11842:6764466,11222163:0,0,0 +(1,11846:6764466,12087243:25818563,513147,134348 +h1,11845:6764466,12087243:983040,0,0 +k1,11845:8413889,12087243:178795 +k1,11845:9875899,12087243:178815 +k1,11845:11624957,12087243:178815 +k1,11845:14493370,12087243:178815 +k1,11845:15619836,12087243:178815 +k1,11845:18402396,12087243:178815 +k1,11845:21607008,12087243:178815 +k1,11845:22992996,12087243:178815 +k1,11845:26664880,12087243:178815 +k1,11845:27459733,12087243:178815 +k1,11845:28053371,12087243:178795 +k1,11845:29948574,12087243:178815 +k1,11845:31521340,12087243:178815 +(1,11845:31521340,12087243:0,452978,115847 +r1,11904:32583029,12087243:1061689,568825,115847 +k1,11845:31521340,12087243:-1061689 +) +(1,11845:31521340,12087243:1061689,452978,115847 +k1,11845:31521340,12087243:3277 +h1,11845:32579752,12087243:0,411205,112570 +) +k1,11845:32583029,12087243:0 +) +(1,11846:6764466,12952323:25818563,513147,126483 +k1,11845:7612618,12952323:161990 +k1,11845:8130468,12952323:161990 +k1,11845:11189149,12952323:161990 +k1,11845:12018295,12952323:161990 +(1,11845:12018295,12952323:0,459977,115847 +r1,11904:15541967,12952323:3523672,575824,115847 +k1,11845:12018295,12952323:-3523672 +) +(1,11845:12018295,12952323:3523672,459977,115847 +k1,11845:12018295,12952323:3277 +h1,11845:15538690,12952323:0,411205,112570 +) +k1,11845:15877627,12952323:161990 +k1,11845:17420461,12952323:161990 +k1,11845:18113949,12952323:161991 +k1,11845:21099885,12952323:161990 +k1,11845:21913303,12952323:161990 +k1,11845:23791026,12952323:161990 +k1,11845:25449203,12952323:161990 +k1,11845:28140227,12952323:161990 +k1,11845:29493662,12952323:161990 +k1,11845:32583029,12952323:0 +) +(1,11846:6764466,13817403:25818563,513147,126483 +k1,11845:8928168,13817403:186481 +k1,11845:10062300,13817403:186481 +k1,11845:13949598,13817403:186480 +k1,11845:14818964,13817403:186481 +k1,11845:17363430,13817403:186481 +k1,11845:20749379,13817403:186481 +k1,11845:23870562,13817403:186481 +k1,11845:24270022,13817403:186468 +k1,11845:26136845,13817403:186480 +k1,11845:27526567,13817403:186481 +k1,11845:30402646,13817403:186481 +k1,11845:32583029,13817403:0 +) +(1,11846:6764466,14682483:25818563,505283,134348 +k1,11845:7708430,14682483:196198 +k1,11845:9417855,14682483:196199 +k1,11845:12739465,14682483:196198 +k1,11845:14127109,14682483:196199 +k1,11845:16967029,14682483:196198 +k1,11845:18538828,14682483:196198 +k1,11845:19347789,14682483:196199 +k1,11845:20563072,14682483:196198 +k1,11845:21174110,14682483:196195 +k1,11845:23964224,14682483:196199 +k1,11845:24373411,14682483:196195 +k1,11845:26044824,14682483:196198 +k1,11845:27307294,14682483:196199 +k1,11845:29016718,14682483:196198 +(1,11845:29016718,14682483:0,452978,115847 +r1,11904:30078407,14682483:1061689,568825,115847 +k1,11845:29016718,14682483:-1061689 +) +(1,11845:29016718,14682483:1061689,452978,115847 +k1,11845:29016718,14682483:3277 +h1,11845:30075130,14682483:0,411205,112570 +) +k1,11845:30274606,14682483:196199 +k1,11845:31086842,14682483:196198 +k1,11845:32583029,14682483:0 +) +(1,11846:6764466,15547563:25818563,513147,126483 +g1,11845:9955414,15547563 +g1,11845:10770681,15547563 +g1,11845:11988995,15547563 +g1,11845:13943934,15547563 +g1,11845:16214101,15547563 +g1,11845:17360981,15547563 +g1,11845:18579295,15547563 +g1,11845:19935234,15547563 +k1,11846:32583029,15547563:10726935 +g1,11846:32583029,15547563 +) +v1,11848:6764466,16232418:0,393216,0 +(1,11855:6764466,17355998:25818563,1516796,196608 +g1,11855:6764466,17355998 +g1,11855:6764466,17355998 +g1,11855:6567858,17355998 +(1,11855:6567858,17355998:0,1516796,196608 +r1,11904:32779637,17355998:26211779,1713404,196608 +k1,11855:6567857,17355998:-26211780 +) +(1,11855:6567858,17355998:26211779,1516796,196608 +[1,11855:6764466,17355998:25818563,1320188,0 +(1,11850:6764466,16460249:25818563,424439,106246 +(1,11849:6764466,16460249:0,0,0 +g1,11849:6764466,16460249 +g1,11849:6764466,16460249 +g1,11849:6436786,16460249 +(1,11849:6436786,16460249:0,0,0 +) +g1,11849:6764466,16460249 +) +k1,11850:6764466,16460249:0 +g1,11850:8756190,16460249 +g1,11850:10415960,16460249 +g1,11850:11079868,16460249 +g1,11850:13071592,16460249 +g1,11850:13735500,16460249 +g1,11850:14731362,16460249 +g1,11850:15395270,16460249 +g1,11850:16059178,16460249 +h1,11850:16723086,16460249:0,0,0 +k1,11850:32583029,16460249:15859943 +g1,11850:32583029,16460249 +) +(1,11854:6764466,17276176:25818563,424439,79822 +(1,11852:6764466,17276176:0,0,0 +g1,11852:6764466,17276176 +g1,11852:6764466,17276176 +g1,11852:6436786,17276176 +(1,11852:6436786,17276176:0,0,0 +) +g1,11852:6764466,17276176 +) +g1,11854:7760328,17276176 +g1,11854:9088144,17276176 +h1,11854:9752052,17276176:0,0,0 +k1,11854:32583028,17276176:22830976 +g1,11854:32583028,17276176 +) +] +) +g1,11855:32583029,17355998 +g1,11855:6764466,17355998 +g1,11855:6764466,17355998 +g1,11855:32583029,17355998 +g1,11855:32583029,17355998 +) +h1,11855:6764466,17552606:0,0,0 +] +g1,11858:32583029,17552606 +) +h1,11858:6630773,17552606:0,0,0 +(1,11860:6630773,19669424:25952256,564462,139132 +(1,11860:6630773,19669424:2450326,534184,12975 +g1,11860:6630773,19669424 +g1,11860:9081099,19669424 +) +g1,11860:11416803,19669424 +g1,11860:12386409,19669424 +k1,11860:32583029,19669424:17844336 +g1,11860:32583029,19669424 +) +(1,11863:6630773,20927720:25952256,513147,134348 +k1,11862:9285186,20927720:160113 +k1,11862:10061336,20927720:160112 +k1,11862:10636253,20927720:160074 +k1,11862:11327862,20927720:160112 +k1,11862:15689488,20927720:160113 +k1,11862:17584993,20927720:160112 +k1,11862:22057375,20927720:160113 +k1,11862:23408932,20927720:160112 +k1,11862:25339172,20927720:160113 +k1,11862:27705225,20927720:160112 +k1,11862:28818887,20927720:160113 +k1,11862:30083281,20927720:160112 +k1,11862:31923737,20927720:160113 +k1,11862:32583029,20927720:0 +) +(1,11863:6630773,21792800:25952256,505283,134348 +k1,11862:11227230,21792800:208822 +k1,11862:12122213,21792800:208821 +k1,11862:14449159,21792800:208822 +k1,11862:15013840,21792800:208821 +k1,11862:18273363,21792800:208822 +k1,11862:19876135,21792800:208821 +k1,11862:23799538,21792800:208822 +k1,11862:26897841,21792800:208821 +k1,11862:28303350,21792800:208822 +k1,11862:30008358,21792800:208821 +k1,11862:32227169,21792800:208822 +k1,11862:32583029,21792800:0 +) +(1,11863:6630773,22657880:25952256,513147,134348 +k1,11862:9503107,22657880:176838 +k1,11862:11128291,22657880:176838 +k1,11862:11921167,22657880:176838 +k1,11862:12886403,22657880:176838 +k1,11862:14393622,22657880:176838 +k1,11862:18801464,22657880:176838 +k1,11862:19594340,22657880:176838 +k1,11862:22525656,22657880:176838 +k1,11862:24270115,22657880:176838 +k1,11862:25466038,22657880:176838 +k1,11862:27732819,22657880:176838 +k1,11862:31966991,22657880:176838 +k1,11862:32583029,22657880:0 +) +(1,11863:6630773,23522960:25952256,505283,134348 +k1,11862:9249810,23522960:154883 +k1,11862:10056121,23522960:154883 +k1,11862:14360745,23522960:154884 +k1,11862:15587797,23522960:154883 +k1,11862:16761765,23522960:154883 +k1,11862:18927293,23522960:154883 +k1,11862:21120347,23522960:154884 +k1,11862:21891268,23522960:154883 +k1,11862:24335979,23522960:154883 +k1,11862:25106900,23522960:154883 +k1,11862:26280869,23522960:154884 +k1,11862:28525695,23522960:154883 +k1,11862:32583029,23522960:0 +) +(1,11863:6630773,24388040:25952256,513147,134348 +k1,11862:7934761,24388040:199706 +k1,11862:8882233,24388040:199706 +k1,11862:12110357,24388040:199705 +k1,11862:13690907,24388040:199706 +k1,11862:16519262,24388040:199706 +k1,11862:18286589,24388040:199706 +k1,11862:22779559,24388040:199706 +k1,11862:24278844,24388040:199706 +k1,11862:26579633,24388040:199705 +k1,11862:27540867,24388040:199706 +k1,11862:30099214,24388040:199706 +k1,11862:32583029,24388040:0 +) +(1,11863:6630773,25253120:25952256,513147,134348 +k1,11862:7452431,25253120:170230 +k1,11862:10624864,25253120:170229 +k1,11862:12754620,25253120:170230 +k1,11862:16337310,25253120:170230 +k1,11862:17123578,25253120:170230 +k1,11862:18312892,25253120:170229 +k1,11862:20573065,25253120:170230 +k1,11862:24974299,25253120:170230 +k1,11862:25614422,25253120:170230 +k1,11862:26316148,25253120:170229 +k1,11862:29116338,25253120:170230 +k1,11862:29937996,25253120:170230 +k1,11862:32583029,25253120:0 +) +(1,11863:6630773,26118200:25952256,513147,134348 +k1,11862:8096613,26118200:262599 +k1,11862:11668124,26118200:262598 +k1,11862:13324674,26118200:262599 +k1,11862:16333887,26118200:262599 +(1,11862:16333887,26118200:0,414482,115847 +r1,11904:17395576,26118200:1061689,530329,115847 +k1,11862:16333887,26118200:-1061689 +) +(1,11862:16333887,26118200:1061689,414482,115847 +k1,11862:16333887,26118200:3277 +h1,11862:17392299,26118200:0,411205,112570 +) +k1,11862:17658174,26118200:262598 +k1,11862:18603658,26118200:262599 +k1,11862:20260207,26118200:262598 +k1,11862:23218302,26118200:262599 +(1,11862:23218302,26118200:0,452978,122846 +r1,11904:26038551,26118200:2820249,575824,122846 +k1,11862:23218302,26118200:-2820249 +) +(1,11862:23218302,26118200:2820249,452978,122846 +k1,11862:23218302,26118200:3277 +h1,11862:26035274,26118200:0,411205,112570 +) +k1,11862:26474820,26118200:262599 +k1,11862:28520653,26118200:262598 +k1,11862:30470149,26118200:262599 +k1,11863:32583029,26118200:0 +) +(1,11863:6630773,26983280:25952256,513147,134348 +k1,11862:8449091,26983280:179263 +k1,11862:9314515,26983280:179262 +k1,11862:10793357,26983280:179263 +k1,11862:13247374,26983280:179262 +k1,11862:14530919,26983280:179263 +k1,11862:16425914,26983280:179262 +k1,11862:17624262,26983280:179263 +k1,11862:19299711,26983280:179262 +k1,11862:21262209,26983280:179263 +k1,11862:23091668,26983280:179262 +k1,11862:25754746,26983280:179263 +k1,11862:26585436,26983280:179262 +k1,11862:28177000,26983280:179263 +k1,11862:29547707,26983280:179262 +k1,11862:31858201,26983280:179263 +k1,11862:32583029,26983280:0 +) +(1,11863:6630773,27848360:25952256,505283,7863 +g1,11862:7618400,27848360 +g1,11862:9152597,27848360 +g1,11862:10003254,27848360 +g1,11862:11931978,27848360 +k1,11863:32583030,27848360:18959568 +g1,11863:32583030,27848360 +) +v1,11865:6630773,28713440:0,393216,0 +(1,11866:6630773,30931260:25952256,2611036,0 +g1,11866:6630773,30931260 +g1,11866:6237557,30931260 +r1,11904:6368629,30931260:131072,2611036,0 +g1,11866:6567858,30931260 +g1,11866:6764466,30931260 +[1,11866:6764466,30931260:25818563,2611036,0 +(1,11866:6764466,29074617:25818563,754393,260573 +(1,11865:6764466,29074617:0,754393,260573 +r1,11904:7856192,29074617:1091726,1014966,260573 +k1,11865:6764466,29074617:-1091726 +) +(1,11865:6764466,29074617:1091726,754393,260573 +) +k1,11865:8133061,29074617:276869 +k1,11865:8460741,29074617:327680 +k1,11865:12303424,29074617:276869 +k1,11865:13771738,29074617:276869 +k1,11865:15542828,29074617:276869 +k1,11865:18661338,29074617:276869 +k1,11865:19929768,29074617:276870 +k1,11865:21272908,29074617:276869 +k1,11865:24724341,29074617:276869 +k1,11865:26381398,29074617:276869 +k1,11865:28881248,29074617:276869 +k1,11865:30304342,29074617:276869 +k1,11865:32583029,29074617:0 +) +(1,11866:6764466,29939697:25818563,513147,134348 +k1,11865:9809507,29939697:221095 +k1,11865:12040590,29939697:221094 +k1,11865:13280770,29939697:221095 +k1,11865:15078661,29939697:221095 +k1,11865:15959048,29939697:221095 +k1,11865:17199227,29939697:221094 +k1,11865:20289488,29939697:221095 +k1,11865:23445285,29939697:221095 +k1,11865:27642449,29939697:221095 +k1,11865:29607456,29939697:221094 +k1,11865:31563944,29939697:221095 +k1,11865:32583029,29939697:0 +) +(1,11866:6764466,30804777:25818563,513147,126483 +g1,11865:9710309,30804777 +(1,11865:9710309,30804777:0,414482,115847 +r1,11904:10420287,30804777:709978,530329,115847 +k1,11865:9710309,30804777:-709978 +) +(1,11865:9710309,30804777:709978,414482,115847 +k1,11865:9710309,30804777:3277 +h1,11865:10417010,30804777:0,411205,112570 +) +g1,11865:10793186,30804777 +g1,11865:12368016,30804777 +g1,11865:14346547,30804777 +g1,11865:14901636,30804777 +g1,11865:16595086,30804777 +g1,11865:18304265,30804777 +g1,11865:19788000,30804777 +g1,11865:20518726,30804777 +g1,11865:23885310,30804777 +g1,11865:25782577,30804777 +g1,11865:27000891,30804777 +g1,11865:29895616,30804777 +k1,11866:32583029,30804777:294039 +g1,11866:32583029,30804777 +) +] +g1,11866:32583029,30931260 +) +h1,11866:6630773,30931260:0,0,0 +(1,11869:6630773,31796340:25952256,513147,134348 +h1,11868:6630773,31796340:983040,0,0 +k1,11868:9056109,31796340:245609 +k1,11868:12017530,31796340:245609 +k1,11868:12922431,31796340:245609 +k1,11868:15236355,31796340:245608 +k1,11868:16013461,31796340:245609 +k1,11868:19923843,31796340:245609 +k1,11868:20930980,31796340:245609 +k1,11868:22195674,31796340:245609 +k1,11868:24811720,31796340:245609 +k1,11868:26618396,31796340:245608 +k1,11868:27523297,31796340:245609 +k1,11868:28124766,31796340:245609 +k1,11868:31386342,31796340:245609 +k1,11868:32583029,31796340:0 +) +(1,11869:6630773,32661420:25952256,505283,134348 +k1,11868:9422203,32661420:152951 +k1,11868:10647323,32661420:152951 +k1,11868:11866544,32661420:152950 +k1,11868:13038580,32661420:152951 +k1,11868:14567132,32661420:152951 +k1,11868:17546651,32661420:152951 +k1,11868:19397639,32661420:152950 +k1,11868:22019987,32661420:152951 +k1,11868:23758909,32661420:152951 +k1,11868:26210863,32661420:152951 +k1,11868:26895310,32661420:152950 +k1,11868:28746299,32661420:152951 +k1,11868:31189078,32661420:152951 +k1,11868:32583029,32661420:0 +) +(1,11869:6630773,33526500:25952256,513147,126483 +k1,11868:7812715,33526500:162857 +k1,11868:9629045,33526500:162857 +k1,11868:11529917,33526500:162857 +k1,11868:14095324,33526500:162857 +k1,11868:14886016,33526500:162857 +k1,11868:16542439,33526500:162857 +k1,11868:17061156,33526500:162857 +k1,11868:20224250,33526500:162856 +k1,11868:21543817,33526500:162857 +k1,11868:22839136,33526500:162857 +k1,11868:23749759,33526500:162857 +k1,11868:27097666,33526500:162857 +k1,11868:28022051,33526500:162857 +k1,11868:28973306,33526500:162857 +k1,11868:32583029,33526500:0 +) +(1,11869:6630773,34391580:25952256,513147,134348 +k1,11868:8526629,34391580:157841 +k1,11868:9875915,34391580:157841 +k1,11868:11052840,34391580:157840 +k1,11868:12912651,34391580:157841 +k1,11868:15290196,34391580:157841 +k1,11868:16520206,34391580:157841 +k1,11868:19321768,34391580:157840 +k1,11868:22664659,34391580:157841 +k1,11868:23584028,34391580:157841 +k1,11868:26939371,34391580:157841 +k1,11868:28116296,34391580:157840 +k1,11868:30012152,34391580:157841 +k1,11868:31563944,34391580:157841 +k1,11868:32583029,34391580:0 +) +(1,11869:6630773,35256660:25952256,513147,126483 +g1,11868:10355839,35256660 +g1,11868:12473962,35256660 +g1,11868:13131288,35256660 +g1,11868:13862014,35256660 +k1,11869:32583029,35256660:16287008 +g1,11869:32583029,35256660 +) +(1,11871:6630773,36121740:25952256,513147,134348 +h1,11870:6630773,36121740:983040,0,0 +k1,11870:8626344,36121740:194642 +k1,11870:9840071,36121740:194642 +k1,11870:10449552,36121740:194638 +k1,11870:13486490,36121740:194642 +k1,11870:14782137,36121740:194642 +k1,11870:16109898,36121740:194643 +k1,11870:19031493,36121740:194642 +k1,11870:21181074,36121740:194642 +k1,11870:22323367,36121740:194642 +k1,11870:24403480,36121740:194642 +k1,11870:25407493,36121740:194643 +k1,11870:29319992,36121740:194642 +k1,11870:30046131,36121740:194642 +k1,11870:32583029,36121740:0 +) +(1,11871:6630773,36986820:25952256,513147,134348 +k1,11870:7671157,36986820:198246 +k1,11870:10049787,36986820:198247 +k1,11870:11600696,36986820:198246 +k1,11870:13124080,36986820:198246 +k1,11870:14388597,36986820:198246 +k1,11870:15238272,36986820:198247 +k1,11870:19227776,36986820:198246 +k1,11870:21154206,36986820:198246 +k1,11870:23420769,36986820:198247 +k1,11870:24903521,36986820:198246 +k1,11870:26093327,36986820:198246 +k1,11870:27613434,36986820:198246 +k1,11870:28470973,36986820:198247 +k1,11870:29688304,36986820:198246 +k1,11870:32583029,36986820:0 +) +(1,11871:6630773,37851900:25952256,513147,126483 +k1,11870:7870350,37851900:197555 +k1,11870:10902991,37851900:197554 +(1,11870:10902991,37851900:0,452978,115847 +r1,11904:11612969,37851900:709978,568825,115847 +k1,11870:10902991,37851900:-709978 +) +(1,11870:10902991,37851900:709978,452978,115847 +k1,11870:10902991,37851900:3277 +h1,11870:11609692,37851900:0,411205,112570 +) +k1,11870:11810524,37851900:197555 +k1,11870:12539575,37851900:197554 +k1,11870:13092990,37851900:197555 +k1,11870:16048299,37851900:197554 +k1,11870:18627432,37851900:197555 +k1,11870:19441024,37851900:197554 +k1,11870:20053420,37851900:197553 +k1,11870:21644925,37851900:197554 +k1,11870:22861565,37851900:197555 +k1,11870:24739462,37851900:197554 +k1,11870:25596309,37851900:197555 +k1,11870:26812948,37851900:197554 +k1,11870:31333913,37851900:197555 +k1,11871:32583029,37851900:0 +) +(1,11871:6630773,38716980:25952256,513147,134348 +k1,11870:8467048,38716980:221468 +$1,11870:8467048,38716980 +$1,11870:9046386,38716980 +k1,11870:9441524,38716980:221468 +k1,11870:10140749,38716980:221468 +k1,11870:11230569,38716980:221468 +k1,11870:12544522,38716980:221468 +k1,11870:13785075,38716980:221468 +k1,11870:15660016,38716980:221468 +k1,11870:17619500,38716980:221469 +k1,11870:18788619,38716980:221468 +k1,11870:20166797,38716980:221468 +k1,11870:21047557,38716980:221468 +k1,11870:22366753,38716980:221468 +k1,11870:25603532,38716980:221468 +k1,11870:26844085,38716980:221468 +k1,11870:29500871,38716980:221468 +k1,11870:32583029,38716980:0 +) +(1,11871:6630773,39582060:25952256,505283,134348 +g1,11870:7361499,39582060 +g1,11870:9780432,39582060 +g1,11870:11171106,39582060 +g1,11870:12474617,39582060 +g1,11870:13483216,39582060 +g1,11870:15706852,39582060 +g1,11870:16653847,39582060 +g1,11870:19697994,39582060 +k1,11871:32583029,39582060:10033564 +g1,11871:32583029,39582060 +) +v1,11873:6630773,40266915:0,393216,0 +(1,11900:6630773,45510161:25952256,5636462,196608 +g1,11900:6630773,45510161 +g1,11900:6630773,45510161 +g1,11900:6434165,45510161 +(1,11900:6434165,45510161:0,5636462,196608 +r1,11904:32779637,45510161:26345472,5833070,196608 +k1,11900:6434165,45510161:-26345472 +) +(1,11900:6434165,45510161:26345472,5636462,196608 +[1,11900:6630773,45510161:25952256,5439854,0 +(1,11875:6630773,40494746:25952256,424439,106246 +(1,11874:6630773,40494746:0,0,0 +g1,11874:6630773,40494746 +g1,11874:6630773,40494746 +g1,11874:6303093,40494746 +(1,11874:6303093,40494746:0,0,0 +) +g1,11874:6630773,40494746 +) +h1,11875:7294681,40494746:0,0,0 +k1,11875:32583029,40494746:25288348 +g1,11875:32583029,40494746 +) +(1,11879:6630773,41004158:25952256,424439,79822 +(1,11877:6630773,41004158:0,0,0 +g1,11877:6630773,41004158 +g1,11877:6630773,41004158 +g1,11877:6303093,41004158 +(1,11877:6303093,41004158:0,0,0 +) +g1,11877:6630773,41004158 +) +g1,11879:7626635,41004158 +g1,11879:8954451,41004158 +h1,11879:11610082,41004158:0,0,0 +k1,11879:32583030,41004158:20972948 +g1,11879:32583030,41004158 +) +(1,11881:6630773,41513570:25952256,424439,106246 +(1,11880:6630773,41513570:0,0,0 +g1,11880:6630773,41513570 +g1,11880:6630773,41513570 +g1,11880:6303093,41513570 +(1,11880:6303093,41513570:0,0,0 +) +g1,11880:6630773,41513570 +) +g1,11881:7626635,41513570 +g1,11881:8622497,41513570 +g1,11881:10946175,41513570 +h1,11881:12273991,41513570:0,0,0 +k1,11881:32583029,41513570:20309038 +g1,11881:32583029,41513570 +) +(1,11882:6630773,42198425:25952256,424439,106246 +h1,11882:6630773,42198425:0,0,0 +h1,11882:7294681,42198425:0,0,0 +k1,11882:32583029,42198425:25288348 +g1,11882:32583029,42198425 +) +(1,11886:6630773,42707837:25952256,424439,106246 +(1,11884:6630773,42707837:0,0,0 +g1,11884:6630773,42707837 +g1,11884:6630773,42707837 +g1,11884:6303093,42707837 +(1,11884:6303093,42707837:0,0,0 +) +g1,11884:6630773,42707837 +) +g1,11886:7626635,42707837 +g1,11886:8954451,42707837 +g1,11886:11278129,42707837 +h1,11886:12605945,42707837:0,0,0 +k1,11886:32583029,42707837:19977084 +g1,11886:32583029,42707837 +) +(1,11888:6630773,43217248:25952256,424439,106246 +(1,11887:6630773,43217248:0,0,0 +g1,11887:6630773,43217248 +g1,11887:6630773,43217248 +g1,11887:6303093,43217248 +(1,11887:6303093,43217248:0,0,0 +) +g1,11887:6630773,43217248 +) +k1,11888:6630773,43217248:0 +h1,11888:8622497,43217248:0,0,0 +k1,11888:32583029,43217248:23960532 +g1,11888:32583029,43217248 +) +(1,11889:6630773,43902103:25952256,424439,106246 +h1,11889:6630773,43902103:0,0,0 +h1,11889:7294681,43902103:0,0,0 +k1,11889:32583029,43902103:25288348 +g1,11889:32583029,43902103 +) +(1,11893:6630773,44411515:25952256,424439,79822 +(1,11891:6630773,44411515:0,0,0 +g1,11891:6630773,44411515 +g1,11891:6630773,44411515 +g1,11891:6303093,44411515 +(1,11891:6303093,44411515:0,0,0 +) +g1,11891:6630773,44411515 ) -g1,11894:7626635,44411515 -g1,11894:8954451,44411515 -h1,11894:11610082,44411515:0,0,0 -k1,11894:32583030,44411515:20972948 -g1,11894:32583030,44411515 +g1,11893:7626635,44411515 +g1,11893:8954451,44411515 +h1,11893:11610082,44411515:0,0,0 +k1,11893:32583030,44411515:20972948 +g1,11893:32583030,44411515 ) -(1,11896:6630773,44920927:25952256,424439,106246 -(1,11895:6630773,44920927:0,0,0 -g1,11895:6630773,44920927 -g1,11895:6630773,44920927 -g1,11895:6303093,44920927 -(1,11895:6303093,44920927:0,0,0 +(1,11895:6630773,44920927:25952256,424439,106246 +(1,11894:6630773,44920927:0,0,0 +g1,11894:6630773,44920927 +g1,11894:6630773,44920927 +g1,11894:6303093,44920927 +(1,11894:6303093,44920927:0,0,0 ) -g1,11895:6630773,44920927 +g1,11894:6630773,44920927 ) -k1,11896:6630773,44920927:0 -h1,11896:10614221,44920927:0,0,0 -k1,11896:32583029,44920927:21968808 -g1,11896:32583029,44920927 +k1,11895:6630773,44920927:0 +h1,11895:10614221,44920927:0,0,0 +k1,11895:32583029,44920927:21968808 +g1,11895:32583029,44920927 ) -(1,11900:6630773,45430339:25952256,424439,79822 -(1,11898:6630773,45430339:0,0,0 -g1,11898:6630773,45430339 -g1,11898:6630773,45430339 -g1,11898:6303093,45430339 -(1,11898:6303093,45430339:0,0,0 +(1,11899:6630773,45430339:25952256,424439,79822 +(1,11897:6630773,45430339:0,0,0 +g1,11897:6630773,45430339 +g1,11897:6630773,45430339 +g1,11897:6303093,45430339 +(1,11897:6303093,45430339:0,0,0 ) -g1,11898:6630773,45430339 +g1,11897:6630773,45430339 ) -g1,11900:7626635,45430339 -g1,11900:8954451,45430339 -h1,11900:10282267,45430339:0,0,0 -k1,11900:32583029,45430339:22300762 -g1,11900:32583029,45430339 +g1,11899:7626635,45430339 +g1,11899:8954451,45430339 +h1,11899:10282267,45430339:0,0,0 +k1,11899:32583029,45430339:22300762 +g1,11899:32583029,45430339 ) ] ) -g1,11901:32583029,45510161 -g1,11901:6630773,45510161 -g1,11901:6630773,45510161 -g1,11901:32583029,45510161 -g1,11901:32583029,45510161 +g1,11900:32583029,45510161 +g1,11900:6630773,45510161 +g1,11900:6630773,45510161 +g1,11900:32583029,45510161 +g1,11900:32583029,45510161 ) -h1,11901:6630773,45706769:0,0,0 +h1,11900:6630773,45706769:0,0,0 ] -(1,11905:32583029,45706769:0,0,0 -g1,11905:32583029,45706769 +(1,11904:32583029,45706769:0,0,0 +g1,11904:32583029,45706769 ) ) ] -(1,11905:6630773,47279633:25952256,0,0 -h1,11905:6630773,47279633:25952256,0,0 +(1,11904:6630773,47279633:25952256,0,0 +h1,11904:6630773,47279633:25952256,0,0 ) ] -(1,11905:4262630,4025873:0,0,0 -[1,11905:-473656,4025873:0,0,0 -(1,11905:-473656,-710413:0,0,0 -(1,11905:-473656,-710413:0,0,0 -g1,11905:-473656,-710413 +(1,11904:4262630,4025873:0,0,0 +[1,11904:-473656,4025873:0,0,0 +(1,11904:-473656,-710413:0,0,0 +(1,11904:-473656,-710413:0,0,0 +g1,11904:-473656,-710413 ) -g1,11905:-473656,-710413 +g1,11904:-473656,-710413 ) ] ) ] -!28627 -}188 -Input:1979:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1980:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1981:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!28634 +}189 Input:1982:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1983:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1984:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -213187,3866 +213365,3866 @@ Input:1992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:1993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{189 -[1,12009:4262630,47279633:28320399,43253760,0 -(1,12009:4262630,4025873:0,0,0 -[1,12009:-473656,4025873:0,0,0 -(1,12009:-473656,-710413:0,0,0 -(1,12009:-473656,-644877:0,0,0 -k1,12009:-473656,-644877:-65536 -) -(1,12009:-473656,4736287:0,0,0 -k1,12009:-473656,4736287:5209943 -) -g1,12009:-473656,-710413 -) -] -) -[1,12009:6630773,47279633:25952256,43253760,0 -[1,12009:6630773,4812305:25952256,786432,0 -(1,12009:6630773,4812305:25952256,505283,134348 -(1,12009:6630773,4812305:25952256,505283,134348 -g1,12009:3078558,4812305 -[1,12009:3078558,4812305:0,0,0 -(1,12009:3078558,2439708:0,1703936,0 -k1,12009:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12009:2537886,2439708:1179648,16384,0 -) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12009:3078558,1915420:16384,1179648,0 -) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 -) -] -) -) -) -] -[1,12009:3078558,4812305:0,0,0 -(1,12009:3078558,2439708:0,1703936,0 -g1,12009:29030814,2439708 -g1,12009:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12009:36151628,1915420:16384,1179648,0 -) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 -) -] -) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12009:37855564,2439708:1179648,16384,0 -) -) -k1,12009:3078556,2439708:-34777008 -) -] -[1,12009:3078558,4812305:0,0,0 -(1,12009:3078558,49800853:0,16384,2228224 -k1,12009:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12009:2537886,49800853:1179648,16384,0 -) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12009:3078558,51504789:16384,1179648,0 -) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 -) -] -) -) -) -] -[1,12009:3078558,4812305:0,0,0 -(1,12009:3078558,49800853:0,16384,2228224 -g1,12009:29030814,49800853 -g1,12009:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12009:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12009:37855564,49800853:1179648,16384,0 -) -) -k1,12009:3078556,49800853:-34777008 -) -] -g1,12009:6630773,4812305 -k1,12009:23588214,4812305:15762064 -g1,12009:25210885,4812305 -g1,12009:25997972,4812305 -g1,12009:28481131,4812305 -g1,12009:30046786,4812305 -) -) -] -[1,12009:6630773,45706769:25952256,40108032,0 -(1,12009:6630773,45706769:25952256,40108032,0 -(1,12009:6630773,45706769:0,0,0 -g1,12009:6630773,45706769 -) -[1,12009:6630773,45706769:25952256,40108032,0 -(1,11905:6630773,6254097:25952256,513147,126483 -h1,11904:6630773,6254097:983040,0,0 -k1,11904:8389890,6254097:148242 -k1,11904:9557218,6254097:148243 -k1,11904:12366877,6254097:148242 -k1,11904:14544114,6254097:148242 -k1,11904:15711442,6254097:148243 -k1,11904:17032123,6254097:148242 -k1,11904:20022006,6254097:148242 -k1,11904:21161809,6254097:148243 -k1,11904:22376322,6254097:148242 -k1,11904:24906142,6254097:148242 -k1,11904:25670423,6254097:148243 -k1,11904:26837750,6254097:148242 -k1,11904:28639465,6254097:148242 -k1,11904:30787867,6254097:148243 -k1,11904:31563944,6254097:148242 -k1,11904:32583029,6254097:0 -) -(1,11905:6630773,7119177:25952256,505283,134348 -k1,11904:9504480,7119177:212290 -k1,11904:11585201,7119177:212290 -k1,11904:12665843,7119177:212290 -k1,11904:14884845,7119177:212290 -k1,11904:15452995,7119177:212290 -k1,11904:16948480,7119177:212290 -k1,11904:18841113,7119177:212290 -k1,11904:19704830,7119177:212289 -k1,11904:20272980,7119177:212290 -k1,11904:22996610,7119177:212290 -k1,11904:24077252,7119177:212290 -k1,11904:25764757,7119177:212290 -k1,11904:28010629,7119177:212290 -k1,11904:30573040,7119177:212290 -k1,11904:32583029,7119177:0 -) -(1,11905:6630773,7984257:25952256,505283,134348 -k1,11904:7855510,7984257:205652 -k1,11904:9714635,7984257:205652 -k1,11904:11920446,7984257:205652 -k1,11904:13317543,7984257:205652 -k1,11904:17748301,7984257:205652 -k1,11904:18973037,7984257:205651 -k1,11904:21420020,7984257:205652 -k1,11904:25271440,7984257:205652 -k1,11904:28983268,7984257:205652 -k1,11904:31140582,7984257:205652 -k1,11904:32583029,7984257:0 -) -(1,11905:6630773,8849337:25952256,513147,134348 -g1,11904:8718094,8849337 -g1,11904:9936408,8849337 -g1,11904:12626660,8849337 -k1,11905:32583029,8849337:16700540 -g1,11905:32583029,8849337 -) -v1,11907:6630773,9534192:0,393216,0 -(1,11929:6630773,15976045:25952256,6835069,196608 -g1,11929:6630773,15976045 -g1,11929:6630773,15976045 -g1,11929:6434165,15976045 -(1,11929:6434165,15976045:0,6835069,196608 -r1,12009:32779637,15976045:26345472,7031677,196608 -k1,11929:6434165,15976045:-26345472 -) -(1,11929:6434165,15976045:26345472,6835069,196608 -[1,11929:6630773,15976045:25952256,6638461,0 -(1,11909:6630773,9762023:25952256,424439,106246 -(1,11908:6630773,9762023:0,0,0 -g1,11908:6630773,9762023 -g1,11908:6630773,9762023 -g1,11908:6303093,9762023 -(1,11908:6303093,9762023:0,0,0 -) -g1,11908:6630773,9762023 -) -g1,11909:8954451,9762023 -g1,11909:9950313,9762023 -g1,11909:13601806,9762023 -h1,11909:14929622,9762023:0,0,0 -k1,11909:32583030,9762023:17653408 -g1,11909:32583030,9762023 -) -(1,11910:6630773,10446878:25952256,424439,106246 -h1,11910:6630773,10446878:0,0,0 -h1,11910:8622497,10446878:0,0,0 -k1,11910:32583029,10446878:23960532 -g1,11910:32583029,10446878 -) -(1,11914:6630773,11262805:25952256,424439,106246 -(1,11912:6630773,11262805:0,0,0 -g1,11912:6630773,11262805 -g1,11912:6630773,11262805 -g1,11912:6303093,11262805 -(1,11912:6303093,11262805:0,0,0 -) -g1,11912:6630773,11262805 -) -g1,11914:7626635,11262805 -g1,11914:8954451,11262805 -g1,11914:12605944,11262805 -h1,11914:13933760,11262805:0,0,0 -k1,11914:32583028,11262805:18649268 -g1,11914:32583028,11262805 -) -(1,11916:6630773,12078732:25952256,424439,106246 -(1,11915:6630773,12078732:0,0,0 -g1,11915:6630773,12078732 -g1,11915:6630773,12078732 -g1,11915:6303093,12078732 -(1,11915:6303093,12078732:0,0,0 -) -g1,11915:6630773,12078732 -) -g1,11916:8954451,12078732 -g1,11916:9950313,12078732 -g1,11916:12273991,12078732 -h1,11916:13601807,12078732:0,0,0 -k1,11916:32583029,12078732:18981222 -g1,11916:32583029,12078732 -) -(1,11917:6630773,12763587:25952256,424439,106246 -h1,11917:6630773,12763587:0,0,0 -h1,11917:8622497,12763587:0,0,0 -k1,11917:32583029,12763587:23960532 -g1,11917:32583029,12763587 -) -(1,11921:6630773,13579514:25952256,424439,106246 -(1,11919:6630773,13579514:0,0,0 -g1,11919:6630773,13579514 -g1,11919:6630773,13579514 -g1,11919:6303093,13579514 -(1,11919:6303093,13579514:0,0,0 -) -g1,11919:6630773,13579514 -) -g1,11921:7626635,13579514 -g1,11921:8954451,13579514 -g1,11921:11278129,13579514 -h1,11921:12605945,13579514:0,0,0 -k1,11921:32583029,13579514:19977084 -g1,11921:32583029,13579514 -) -(1,11923:6630773,14395441:25952256,424439,106246 -(1,11922:6630773,14395441:0,0,0 -g1,11922:6630773,14395441 -g1,11922:6630773,14395441 -g1,11922:6303093,14395441 -(1,11922:6303093,14395441:0,0,0 -) -g1,11922:6630773,14395441 -) -k1,11923:6630773,14395441:0 -h1,11923:9950312,14395441:0,0,0 -k1,11923:32583028,14395441:22632716 -g1,11923:32583028,14395441 -) -(1,11924:6630773,15080296:25952256,424439,106246 -h1,11924:6630773,15080296:0,0,0 -k1,11924:6630773,15080296:0 -h1,11924:11942036,15080296:0,0,0 -k1,11924:32583028,15080296:20640992 -g1,11924:32583028,15080296 -) -(1,11928:6630773,15896223:25952256,424439,79822 -(1,11926:6630773,15896223:0,0,0 -g1,11926:6630773,15896223 -g1,11926:6630773,15896223 -g1,11926:6303093,15896223 -(1,11926:6303093,15896223:0,0,0 -) -g1,11926:6630773,15896223 -) -g1,11928:7626635,15896223 -g1,11928:8954451,15896223 -h1,11928:10614221,15896223:0,0,0 -k1,11928:32583029,15896223:21968808 -g1,11928:32583029,15896223 -) -] -) -g1,11929:32583029,15976045 -g1,11929:6630773,15976045 -g1,11929:6630773,15976045 -g1,11929:32583029,15976045 -g1,11929:32583029,15976045 -) -h1,11929:6630773,16172653:0,0,0 -(1,11933:6630773,17037733:25952256,505283,134348 -h1,11932:6630773,17037733:983040,0,0 -k1,11932:9579952,17037733:150792 -k1,11932:11848869,17037733:150793 -k1,11932:13342494,17037733:150792 -k1,11932:14263989,17037733:150792 -k1,11932:17624079,17037733:150792 -k1,11932:19010226,17037733:150793 -k1,11932:19777056,17037733:150792 -k1,11932:22647592,17037733:150792 -k1,11932:24536399,17037733:150792 -k1,11932:27004545,17037733:150793 -k1,11932:28853375,17037733:150792 -k1,11932:32583029,17037733:0 -) -(1,11933:6630773,17902813:25952256,505283,134348 -g1,11932:9740456,17902813 -g1,11932:10931245,17902813 -g1,11932:13872500,17902813 -g1,11932:15303806,17902813 -g1,11932:17781722,17902813 -h1,11932:19324440,17902813:0,0,0 -g1,11932:19523669,17902813 -g1,11932:20532268,17902813 -g1,11932:22229650,17902813 -h1,11932:23425027,17902813:0,0,0 -k1,11933:32583029,17902813:8898480 -g1,11933:32583029,17902813 -) -v1,11935:6630773,18767893:0,393216,0 -(1,11936:6630773,20075619:25952256,1700942,0 -g1,11936:6630773,20075619 -g1,11936:6237557,20075619 -r1,12009:6368629,20075619:131072,1700942,0 -g1,11936:6567858,20075619 -g1,11936:6764466,20075619 -[1,11936:6764466,20075619:25818563,1700942,0 -(1,11936:6764466,19076191:25818563,701514,196608 -(1,11935:6764466,19076191:0,701514,196608 -r1,12009:7761522,19076191:997056,898122,196608 -k1,11935:6764466,19076191:-997056 -) -(1,11935:6764466,19076191:997056,701514,196608 -) -k1,11935:7905185,19076191:143663 -k1,11935:8232865,19076191:327680 -k1,11935:12787755,19076191:143662 -k1,11935:14035700,19076191:143663 -k1,11935:14927129,19076191:143663 -k1,11935:17968138,19076191:143662 -k1,11935:20461922,19076191:143663 -k1,11935:21999536,19076191:143663 -k1,11935:24838694,19076191:143662 -(1,11935:24838694,19076191:0,452978,115847 -r1,12009:29417502,19076191:4578808,568825,115847 -k1,11935:24838694,19076191:-4578808 -) -(1,11935:24838694,19076191:4578808,452978,115847 -k1,11935:24838694,19076191:3277 -h1,11935:29414225,19076191:0,411205,112570 -) -k1,11935:29734835,19076191:143663 -k1,11936:32583029,19076191:0 -) -(1,11936:6764466,19941271:25818563,513147,134348 -(1,11935:6764466,19941271:0,452978,115847 -r1,12009:11343274,19941271:4578808,568825,115847 -k1,11935:6764466,19941271:-4578808 -) -(1,11935:6764466,19941271:4578808,452978,115847 -k1,11935:6764466,19941271:3277 -h1,11935:11339997,19941271:0,411205,112570 -) -g1,11935:11542503,19941271 -g1,11935:12273229,19941271 -g1,11935:14318607,19941271 -g1,11935:16031062,19941271 -g1,11935:16846329,19941271 -g1,11935:19206935,19941271 -g1,11935:21095682,19941271 -g1,11935:21753008,19941271 -g1,11935:23056519,19941271 -g1,11935:24003514,19941271 -g1,11935:26179964,19941271 -g1,11935:28389182,19941271 -k1,11936:32583029,19941271:1230965 -g1,11936:32583029,19941271 -) -] -g1,11936:32583029,20075619 -) -h1,11936:6630773,20075619:0,0,0 -(1,11938:6630773,22192437:25952256,564462,139132 -(1,11938:6630773,22192437:2450326,534184,12975 -g1,11938:6630773,22192437 -g1,11938:9081099,22192437 -) -g1,11938:12604118,22192437 -k1,11938:32583029,22192437:16537353 -g1,11938:32583029,22192437 -) -(1,11942:6630773,23450733:25952256,513147,126483 -k1,11941:8414008,23450733:162529 -k1,11941:9595622,23450733:162529 -k1,11941:10770683,23450733:162530 -k1,11941:13924931,23450733:162529 -k1,11941:16116455,23450733:162529 -k1,11941:17147336,23450733:162529 -k1,11941:18442328,23450733:162530 -k1,11941:20565694,23450733:162529 -k1,11941:21084083,23450733:162529 -k1,11941:22963000,23450733:162529 -k1,11941:24197698,23450733:162529 -k1,11941:26337449,23450733:162530 -k1,11941:29369144,23450733:162529 -k1,11941:29887533,23450733:162529 -k1,11941:32583029,23450733:0 -) -(1,11942:6630773,24315813:25952256,513147,134348 -k1,11941:7727039,24315813:148615 -k1,11941:11326781,24315813:148616 -k1,11941:12494481,24315813:148615 -k1,11941:15486704,24315813:148616 -k1,11941:17242262,24315813:148615 -k1,11941:18050170,24315813:148616 -k1,11941:19217870,24315813:148615 -k1,11941:21104501,24315813:148616 -k1,11941:22820737,24315813:148615 -k1,11941:23325213,24315813:148616 -k1,11941:26093957,24315813:148615 -k1,11941:28394119,24315813:148615 -k1,11941:29739422,24315813:148616 -k1,11941:32583029,24315813:0 -) -(1,11942:6630773,25180893:25952256,639543,134348 -k1,11941:8503089,25180893:265373 -k1,11941:9299959,25180893:265373 -k1,11941:11260093,25180893:265373 -k1,11941:12286994,25180893:265373 -$1,11941:12286994,25180893 -[1,11941:12715599,25279207:384631,359203,5505 -(1,11941:13044982,25273702:0,353698,0 -) -(1,11941:12715599,25279207:351863,248644,5505 -) -] -k1,11941:13403178,25180893:302948 -k1,11941:14274323,25180893:302948 -(1,11941:14274323,25180893:2195193,639543,119364 -[1,11941:14274323,24593778:595722,26214,706479 -] -[1,11941:14870045,25180893:1599471,639543,95027 -(1,11941:14870045,25180893:1599471,530010,95027 -(1,11941:15298650,24990818:311689,339935,0 -) -) -] -) -$1,11941:16469516,25180893 -k1,11941:16908559,25180893:265373 -k1,11941:18127481,25180893:265373 -k1,11941:19497136,25180893:265373 -k1,11941:22574004,25180893:265373 -k1,11941:24042618,25180893:265373 -k1,11941:25575456,25180893:265372 -k1,11941:26859914,25180893:265373 -k1,11941:30207445,25180893:265373 -k1,11941:31132110,25180893:265373 -k1,11941:32168186,25180893:265373 -k1,11942:32583029,25180893:0 -) -(1,11942:6630773,26045973:25952256,513147,115847 -g1,11941:9525498,26045973 -g1,11941:11592503,26045973 -(1,11941:11592503,26045973:0,414482,115847 -r1,12009:12654192,26045973:1061689,530329,115847 -k1,11941:11592503,26045973:-1061689 -) -(1,11941:11592503,26045973:1061689,414482,115847 -k1,11941:11592503,26045973:3277 -h1,11941:12650915,26045973:0,411205,112570 -) -k1,11942:32583028,26045973:19876408 -g1,11942:32583028,26045973 -) -v1,11944:6630773,26730828:0,393216,0 -(1,11948:6630773,27078117:25952256,740505,196608 -g1,11948:6630773,27078117 -g1,11948:6630773,27078117 -g1,11948:6434165,27078117 -(1,11948:6434165,27078117:0,740505,196608 -r1,12009:32779637,27078117:26345472,937113,196608 -k1,11948:6434165,27078117:-26345472 -) -(1,11948:6434165,27078117:26345472,740505,196608 -[1,11948:6630773,27078117:25952256,543897,0 -(1,11946:6630773,26965265:25952256,431045,112852 -(1,11945:6630773,26965265:0,0,0 -g1,11945:6630773,26965265 -g1,11945:6630773,26965265 -g1,11945:6303093,26965265 -(1,11945:6303093,26965265:0,0,0 -) -g1,11945:6630773,26965265 -) -g1,11946:7958589,26965265 -g1,11946:8954451,26965265 -g1,11946:16921346,26965265 -g1,11946:17585254,26965265 -k1,11946:17585254,26965265:0 -h1,11946:21236748,26965265:0,0,0 -k1,11946:32583029,26965265:11346281 -g1,11946:32583029,26965265 -) -] -) -g1,11948:32583029,27078117 -g1,11948:6630773,27078117 -g1,11948:6630773,27078117 -g1,11948:32583029,27078117 -g1,11948:32583029,27078117 -) -h1,11948:6630773,27274725:0,0,0 -(1,11952:6630773,28139805:25952256,505283,134348 -h1,11951:6630773,28139805:983040,0,0 -g1,11951:8630931,28139805 -g1,11951:9186020,28139805 -g1,11951:10750364,28139805 -g1,11951:11817945,28139805 -g1,11951:13116868,28139805 -(1,11951:13116868,28139805:0,452978,115847 -r1,12009:14881981,28139805:1765113,568825,115847 -k1,11951:13116868,28139805:-1765113 -) -(1,11951:13116868,28139805:1765113,452978,115847 -k1,11951:13116868,28139805:3277 -h1,11951:14878704,28139805:0,411205,112570 -) -g1,11951:15081210,28139805 -g1,11951:16674390,28139805 -g1,11951:18340315,28139805 -(1,11951:18340315,28139805:0,414482,115847 -r1,12009:18698581,28139805:358266,530329,115847 -k1,11951:18340315,28139805:-358266 -) -(1,11951:18340315,28139805:358266,414482,115847 -k1,11951:18340315,28139805:3277 -h1,11951:18695304,28139805:0,411205,112570 -) -g1,11951:18897810,28139805 -g1,11951:20288484,28139805 -(1,11951:20288484,28139805:0,414482,115847 -r1,12009:21701885,28139805:1413401,530329,115847 -k1,11951:20288484,28139805:-1413401 -) -(1,11951:20288484,28139805:1413401,414482,115847 -k1,11951:20288484,28139805:3277 -h1,11951:21698608,28139805:0,411205,112570 -) -g1,11951:21901114,28139805 -g1,11951:22786505,28139805 -k1,11952:32583029,28139805:6671768 -g1,11952:32583029,28139805 -) -v1,11954:6630773,28824660:0,393216,0 -(1,11969:6630773,32949804:25952256,4518360,196608 -g1,11969:6630773,32949804 -g1,11969:6630773,32949804 -g1,11969:6434165,32949804 -(1,11969:6434165,32949804:0,4518360,196608 -r1,12009:32779637,32949804:26345472,4714968,196608 -k1,11969:6434165,32949804:-26345472 -) -(1,11969:6434165,32949804:26345472,4518360,196608 -[1,11969:6630773,32949804:25952256,4321752,0 -(1,11956:6630773,29052491:25952256,424439,86428 -(1,11955:6630773,29052491:0,0,0 -g1,11955:6630773,29052491 -g1,11955:6630773,29052491 -g1,11955:6303093,29052491 -(1,11955:6303093,29052491:0,0,0 -) -g1,11955:6630773,29052491 -) -g1,11956:7294681,29052491 -g1,11956:8290543,29052491 -g1,11956:9950313,29052491 -g1,11956:10946175,29052491 -g1,11956:11942037,29052491 -k1,11956:11942037,29052491:0 -h1,11956:12937899,29052491:0,0,0 -k1,11956:32583029,29052491:19645130 -g1,11956:32583029,29052491 -) -(1,11957:6630773,29737346:25952256,424439,86428 -h1,11957:6630773,29737346:0,0,0 -g1,11957:8290543,29737346 -g1,11957:9286405,29737346 -g1,11957:10946175,29737346 -h1,11957:11942037,29737346:0,0,0 -k1,11957:32583029,29737346:20640992 -g1,11957:32583029,29737346 -) -(1,11958:6630773,30422201:25952256,424439,79822 -h1,11958:6630773,30422201:0,0,0 -g1,11958:8622497,30422201 -g1,11958:9286405,30422201 -h1,11958:9950313,30422201:0,0,0 -k1,11958:32583029,30422201:22632716 -g1,11958:32583029,30422201 -) -(1,11962:6630773,31238128:25952256,424439,79822 -(1,11960:6630773,31238128:0,0,0 -g1,11960:6630773,31238128 -g1,11960:6630773,31238128 -g1,11960:6303093,31238128 -(1,11960:6303093,31238128:0,0,0 -) -g1,11960:6630773,31238128 -) -g1,11962:7626635,31238128 -g1,11962:8954451,31238128 -h1,11962:11610082,31238128:0,0,0 -k1,11962:32583030,31238128:20972948 -g1,11962:32583030,31238128 -) -(1,11964:6630773,32054055:25952256,424439,79822 -(1,11963:6630773,32054055:0,0,0 -g1,11963:6630773,32054055 -g1,11963:6630773,32054055 -g1,11963:6303093,32054055 -(1,11963:6303093,32054055:0,0,0 -) -g1,11963:6630773,32054055 -) -k1,11964:6630773,32054055:0 -g1,11964:8622497,32054055 -g1,11964:9286405,32054055 -h1,11964:10946175,32054055:0,0,0 -k1,11964:32583029,32054055:21636854 -g1,11964:32583029,32054055 -) -(1,11968:6630773,32869982:25952256,424439,79822 -(1,11966:6630773,32869982:0,0,0 -g1,11966:6630773,32869982 -g1,11966:6630773,32869982 -g1,11966:6303093,32869982 -(1,11966:6303093,32869982:0,0,0 -) -g1,11966:6630773,32869982 -) -g1,11968:7626635,32869982 -g1,11968:8954451,32869982 -h1,11968:9618359,32869982:0,0,0 -k1,11968:32583029,32869982:22964670 -g1,11968:32583029,32869982 -) -] -) -g1,11969:32583029,32949804 -g1,11969:6630773,32949804 -g1,11969:6630773,32949804 -g1,11969:32583029,32949804 -g1,11969:32583029,32949804 -) -h1,11969:6630773,33146412:0,0,0 -(1,11973:6630773,34011492:25952256,513147,134348 -h1,11972:6630773,34011492:983040,0,0 -k1,11972:8970743,34011492:144514 -k1,11972:11810753,34011492:144514 -(1,11972:11810753,34011492:0,452978,115847 -r1,12009:13927578,34011492:2116825,568825,115847 -k1,11972:11810753,34011492:-2116825 -) -(1,11972:11810753,34011492:2116825,452978,115847 -k1,11972:11810753,34011492:3277 -h1,11972:13924301,34011492:0,411205,112570 -) -k1,11972:14072092,34011492:144514 -k1,11972:15971660,34011492:144514 -k1,11972:18457120,34011492:144514 -k1,11972:18957494,34011492:144514 -k1,11972:21094957,34011492:144513 -k1,11972:23497186,34011492:144514 -k1,11972:26171390,34011492:144514 -(1,11972:26171390,34011492:0,414482,115847 -r1,12009:26881368,34011492:709978,530329,115847 -k1,11972:26171390,34011492:-709978 -) -(1,11972:26171390,34011492:709978,414482,115847 -k1,11972:26171390,34011492:3277 -h1,11972:26878091,34011492:0,411205,112570 -) -k1,11972:27025882,34011492:144514 -k1,11972:29181041,34011492:144514 -k1,11972:29941593,34011492:144514 -k1,11972:30874505,34011492:144514 -k1,11972:32583029,34011492:0 -) -(1,11973:6630773,34876572:25952256,513147,134348 -k1,11972:8951285,34876572:191247 -k1,11972:10985404,34876572:191247 -k1,11972:11792689,34876572:191247 -(1,11972:11792689,34876572:0,414482,115847 -r1,12009:12502667,34876572:709978,530329,115847 -k1,11972:11792689,34876572:-709978 -) -(1,11972:11792689,34876572:709978,414482,115847 -k1,11972:11792689,34876572:3277 -h1,11972:12499390,34876572:0,411205,112570 -) -k1,11972:12693914,34876572:191247 -k1,11972:14623176,34876572:191247 -k1,11972:17766820,34876572:191247 -k1,11972:19154755,34876572:191248 -k1,11972:22396703,34876572:191247 -k1,11972:23119447,34876572:191247 -k1,11972:24595200,34876572:191247 -k1,11972:26762357,34876572:191247 -k1,11972:27872419,34876572:191247 -k1,11972:31089463,34876572:191247 -k1,11972:32583029,34876572:0 -) -(1,11973:6630773,35741652:25952256,505283,134348 -g1,11972:7516164,35741652 -(1,11972:7516164,35741652:0,452978,115847 -r1,12009:9281277,35741652:1765113,568825,115847 -k1,11972:7516164,35741652:-1765113 -) -(1,11972:7516164,35741652:1765113,452978,115847 -k1,11972:7516164,35741652:3277 -h1,11972:9278000,35741652:0,411205,112570 -) -g1,11972:9654176,35741652 -(1,11972:9654176,35741652:0,452978,115847 -r1,12009:11419289,35741652:1765113,568825,115847 -k1,11972:9654176,35741652:-1765113 -) -(1,11972:9654176,35741652:1765113,452978,115847 -k1,11972:9654176,35741652:3277 -h1,11972:11416012,35741652:0,411205,112570 -) -g1,11972:11618518,35741652 -g1,11972:13310657,35741652 -g1,11972:14576157,35741652 -g1,11972:17301799,35741652 -g1,11972:20220772,35741652 -(1,11972:20220772,35741652:0,414482,115847 -r1,12009:20930750,35741652:709978,530329,115847 -k1,11972:20220772,35741652:-709978 -) -(1,11972:20220772,35741652:709978,414482,115847 -k1,11972:20220772,35741652:3277 -h1,11972:20927473,35741652:0,411205,112570 -) -g1,11972:21129979,35741652 -k1,11973:32583029,35741652:9389977 -g1,11973:32583029,35741652 -) -(1,11975:6630773,36606732:25952256,505283,134348 -h1,11974:6630773,36606732:983040,0,0 -k1,11974:10081528,36606732:148396 -(1,11974:10081528,36606732:0,414482,115847 -r1,12009:11846641,36606732:1765113,530329,115847 -k1,11974:10081528,36606732:-1765113 -) -(1,11974:10081528,36606732:1765113,414482,115847 -k1,11974:10081528,36606732:3277 -h1,11974:11843364,36606732:0,411205,112570 -) -k1,11974:11995037,36606732:148396 -k1,11974:12829595,36606732:148396 -k1,11974:13333852,36606732:148397 -k1,11974:15723579,36606732:148396 -k1,11974:19152707,36606732:148396 -k1,11974:20492548,36606732:148396 -k1,11974:23068398,36606732:148396 -k1,11974:24235879,36606732:148396 -k1,11974:27456604,36606732:148397 -k1,11974:28063097,36606732:148396 -k1,11974:30764120,36606732:148396 -k1,11974:31563944,36606732:148396 -k1,11974:32583029,36606732:0 -) -(1,11975:6630773,37471812:25952256,513147,134348 -k1,11974:7909743,37471812:179276 -k1,11974:8740447,37471812:179276 -(1,11974:8740447,37471812:0,452978,115847 -r1,12009:10505560,37471812:1765113,568825,115847 -k1,11974:8740447,37471812:-1765113 -) -(1,11974:8740447,37471812:1765113,452978,115847 -k1,11974:8740447,37471812:3277 -h1,11974:10502283,37471812:0,411205,112570 -) -k1,11974:10684836,37471812:179276 -k1,11974:12874101,37471812:179276 -k1,11974:14072462,37471812:179276 -k1,11974:15828534,37471812:179276 -k1,11974:16674966,37471812:179276 -(1,11974:16674966,37471812:0,452978,115847 -r1,12009:18440079,37471812:1765113,568825,115847 -k1,11974:16674966,37471812:-1765113 -) -(1,11974:16674966,37471812:1765113,452978,115847 -k1,11974:16674966,37471812:3277 -h1,11974:18436802,37471812:0,411205,112570 -) -k1,11974:18619356,37471812:179277 -k1,11974:19330129,37471812:179276 -k1,11974:20575676,37471812:179276 -k1,11974:23289229,37471812:179276 -k1,11974:24297535,37471812:179276 -k1,11974:26206306,37471812:179276 -k1,11974:29386476,37471812:179276 -k1,11974:31558702,37471812:179276 -k1,11975:32583029,37471812:0 -) -(1,11975:6630773,38336892:25952256,513147,134348 -k1,11974:8054633,38336892:157704 -(1,11974:8054633,38336892:0,414482,115847 -r1,12009:8764611,38336892:709978,530329,115847 -k1,11974:8054633,38336892:-709978 -) -(1,11974:8054633,38336892:709978,414482,115847 -k1,11974:8054633,38336892:3277 -h1,11974:8761334,38336892:0,411205,112570 -) -k1,11974:8922316,38336892:157705 -k1,11974:11090666,38336892:157705 -k1,11974:13428753,38336892:157704 -k1,11974:14334224,38336892:157705 -k1,11974:15777744,38336892:157704 -k1,11974:18710898,38336892:157704 -k1,11974:20911360,38336892:157705 -k1,11974:23874006,38336892:157705 -k1,11974:25050795,38336892:157704 -k1,11974:27694281,38336892:157705 -k1,11974:28511277,38336892:157704 -k1,11974:32583029,38336892:0 -) -(1,11975:6630773,39201972:25952256,513147,134348 -g1,11974:8197739,39201972 -(1,11974:8197739,39201972:0,452978,122846 -r1,12009:11017988,39201972:2820249,575824,122846 -k1,11974:8197739,39201972:-2820249 -) -(1,11974:8197739,39201972:2820249,452978,122846 -k1,11974:8197739,39201972:3277 -h1,11974:11014711,39201972:0,411205,112570 -) -g1,11974:11390887,39201972 -g1,11974:12077704,39201972 -g1,11974:13860938,39201972 -g1,11974:17447068,39201972 -g1,11974:18177794,39201972 -g1,11974:19028451,39201972 -g1,11974:21188517,39201972 -g1,11974:22406831,39201972 -g1,11974:25301556,39201972 -g1,11974:26186947,39201972 -k1,11975:32583029,39201972:4028267 -g1,11975:32583029,39201972 -) -v1,11977:6630773,39886827:0,393216,0 -(1,11986:6630773,43625361:25952256,4131750,196608 -g1,11986:6630773,43625361 -g1,11986:6630773,43625361 -g1,11986:6434165,43625361 -(1,11986:6434165,43625361:0,4131750,196608 -r1,12009:32779637,43625361:26345472,4328358,196608 -k1,11986:6434165,43625361:-26345472 -) -(1,11986:6434165,43625361:26345472,4131750,196608 -[1,11986:6630773,43625361:25952256,3935142,0 -(1,11979:6630773,40121264:25952256,431045,86428 -(1,11978:6630773,40121264:0,0,0 -g1,11978:6630773,40121264 -g1,11978:6630773,40121264 -g1,11978:6303093,40121264 -(1,11978:6303093,40121264:0,0,0 -) -g1,11978:6630773,40121264 -) -g1,11979:7958589,40121264 -g1,11979:8954451,40121264 -g1,11979:12937898,40121264 -g1,11979:14929622,40121264 -g1,11979:15593530,40121264 -g1,11979:17917208,40121264 -h1,11979:18249162,40121264:0,0,0 -k1,11979:32583029,40121264:14333867 -g1,11979:32583029,40121264 -) -(1,11980:6630773,40806119:25952256,431045,79822 -h1,11980:6630773,40806119:0,0,0 -g1,11980:6962727,40806119 -g1,11980:7958589,40806119 -g1,11980:10614221,40806119 -h1,11980:10946175,40806119:0,0,0 -k1,11980:32583029,40806119:21636854 -g1,11980:32583029,40806119 -) -(1,11981:6630773,41490974:25952256,424439,79822 -h1,11981:6630773,41490974:0,0,0 -g1,11981:6962727,41490974 -g1,11981:7294681,41490974 -g1,11981:7626635,41490974 -g1,11981:8290543,41490974 -g1,11981:9286405,41490974 -k1,11981:9286405,41490974:0 -h1,11981:12605945,41490974:0,0,0 -k1,11981:32583029,41490974:19977084 -g1,11981:32583029,41490974 -) -(1,11982:6630773,42175829:25952256,424439,79822 -h1,11982:6630773,42175829:0,0,0 -g1,11982:6962727,42175829 -h1,11982:7294681,42175829:0,0,0 -k1,11982:32583029,42175829:25288348 -g1,11982:32583029,42175829 -) -(1,11983:6630773,42860684:25952256,424439,112852 -h1,11983:6630773,42860684:0,0,0 -g1,11983:6962727,42860684 -k1,11983:6962727,42860684:0 -h1,11983:14265715,42860684:0,0,0 -k1,11983:32583029,42860684:18317314 -g1,11983:32583029,42860684 -) -(1,11984:6630773,43545539:25952256,424439,79822 -h1,11984:6630773,43545539:0,0,0 -h1,11984:6962727,43545539:0,0,0 -k1,11984:32583029,43545539:25620302 -g1,11984:32583029,43545539 -) -] -) -g1,11986:32583029,43625361 -g1,11986:6630773,43625361 -g1,11986:6630773,43625361 -g1,11986:32583029,43625361 -g1,11986:32583029,43625361 -) -h1,11986:6630773,43821969:0,0,0 -v1,11990:6630773,44506824:0,393216,0 -(1,12009:6630773,45510161:25952256,1396553,196608 -g1,12009:6630773,45510161 -g1,12009:6630773,45510161 -g1,12009:6434165,45510161 -(1,12009:6434165,45510161:0,1396553,196608 -r1,12009:32779637,45510161:26345472,1593161,196608 -k1,12009:6434165,45510161:-26345472 -) -(1,12009:6434165,45510161:26345472,1396553,196608 -[1,12009:6630773,45510161:25952256,1199945,0 -(1,11992:6630773,44734655:25952256,424439,79822 -(1,11991:6630773,44734655:0,0,0 -g1,11991:6630773,44734655 -g1,11991:6630773,44734655 -g1,11991:6303093,44734655 -(1,11991:6303093,44734655:0,0,0 -) -g1,11991:6630773,44734655 -) -k1,11992:6630773,44734655:0 -g1,11992:8622497,44734655 -g1,11992:9286405,44734655 -h1,11992:9950313,44734655:0,0,0 -k1,11992:32583029,44734655:22632716 -g1,11992:32583029,44734655 -) -(1,11996:6630773,45430339:25952256,424439,79822 -(1,11994:6630773,45430339:0,0,0 -g1,11994:6630773,45430339 -g1,11994:6630773,45430339 -g1,11994:6303093,45430339 -(1,11994:6303093,45430339:0,0,0 -) -g1,11994:6630773,45430339 -) -g1,11996:7626635,45430339 -g1,11996:8954451,45430339 -h1,11996:11610082,45430339:0,0,0 -k1,11996:32583030,45430339:20972948 -g1,11996:32583030,45430339 -) -] -) -g1,12009:32583029,45510161 -g1,12009:6630773,45510161 -g1,12009:6630773,45510161 -g1,12009:32583029,45510161 -g1,12009:32583029,45510161 -) -] -(1,12009:32583029,45706769:0,0,0 -g1,12009:32583029,45706769 -) -) -] -(1,12009:6630773,47279633:25952256,0,0 -h1,12009:6630773,47279633:25952256,0,0 -) -] -(1,12009:4262630,4025873:0,0,0 -[1,12009:-473656,4025873:0,0,0 -(1,12009:-473656,-710413:0,0,0 -(1,12009:-473656,-710413:0,0,0 -g1,12009:-473656,-710413 -) -g1,12009:-473656,-710413 -) -] -) -] -!28953 -}189 Input:1996:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1997:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:1998:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1999:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2000:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2001:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2002:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2003:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2004:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2005:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2006:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2009:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 +!1576 {190 -[1,12083:4262630,47279633:28320399,43253760,0 -(1,12083:4262630,4025873:0,0,0 -[1,12083:-473656,4025873:0,0,0 -(1,12083:-473656,-710413:0,0,0 -(1,12083:-473656,-644877:0,0,0 -k1,12083:-473656,-644877:-65536 +[1,12008:4262630,47279633:28320399,43253760,0 +(1,12008:4262630,4025873:0,0,0 +[1,12008:-473656,4025873:0,0,0 +(1,12008:-473656,-710413:0,0,0 +(1,12008:-473656,-644877:0,0,0 +k1,12008:-473656,-644877:-65536 ) -(1,12083:-473656,4736287:0,0,0 -k1,12083:-473656,4736287:5209943 +(1,12008:-473656,4736287:0,0,0 +k1,12008:-473656,4736287:5209943 ) -g1,12083:-473656,-710413 +g1,12008:-473656,-710413 ) ] ) -[1,12083:6630773,47279633:25952256,43253760,0 -[1,12083:6630773,4812305:25952256,786432,0 -(1,12083:6630773,4812305:25952256,513147,134348 -(1,12083:6630773,4812305:25952256,513147,134348 -g1,12083:3078558,4812305 -[1,12083:3078558,4812305:0,0,0 -(1,12083:3078558,2439708:0,1703936,0 -k1,12083:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12083:2537886,2439708:1179648,16384,0 +[1,12008:6630773,47279633:25952256,43253760,0 +[1,12008:6630773,4812305:25952256,786432,0 +(1,12008:6630773,4812305:25952256,505283,134348 +(1,12008:6630773,4812305:25952256,505283,134348 +g1,12008:3078558,4812305 +[1,12008:3078558,4812305:0,0,0 +(1,12008:3078558,2439708:0,1703936,0 +k1,12008:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12008:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12083:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12008:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12083:3078558,4812305:0,0,0 -(1,12083:3078558,2439708:0,1703936,0 -g1,12083:29030814,2439708 -g1,12083:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12083:36151628,1915420:16384,1179648,0 +[1,12008:3078558,4812305:0,0,0 +(1,12008:3078558,2439708:0,1703936,0 +g1,12008:29030814,2439708 +g1,12008:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12008:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12083:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12008:37855564,2439708:1179648,16384,0 ) ) -k1,12083:3078556,2439708:-34777008 +k1,12008:3078556,2439708:-34777008 ) ] -[1,12083:3078558,4812305:0,0,0 -(1,12083:3078558,49800853:0,16384,2228224 -k1,12083:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12083:2537886,49800853:1179648,16384,0 +[1,12008:3078558,4812305:0,0,0 +(1,12008:3078558,49800853:0,16384,2228224 +k1,12008:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12008:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12083:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12008:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12083:3078558,4812305:0,0,0 -(1,12083:3078558,49800853:0,16384,2228224 -g1,12083:29030814,49800853 -g1,12083:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12083:36151628,51504789:16384,1179648,0 +[1,12008:3078558,4812305:0,0,0 +(1,12008:3078558,49800853:0,16384,2228224 +g1,12008:29030814,49800853 +g1,12008:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12008:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12008:37855564,49800853:1179648,16384,0 +) +) +k1,12008:3078556,49800853:-34777008 +) +] +g1,12008:6630773,4812305 +k1,12008:23588214,4812305:15762064 +g1,12008:25210885,4812305 +g1,12008:25997972,4812305 +g1,12008:28481131,4812305 +g1,12008:30046786,4812305 +) +) +] +[1,12008:6630773,45706769:25952256,40108032,0 +(1,12008:6630773,45706769:25952256,40108032,0 +(1,12008:6630773,45706769:0,0,0 +g1,12008:6630773,45706769 +) +[1,12008:6630773,45706769:25952256,40108032,0 +(1,11904:6630773,6254097:25952256,513147,126483 +h1,11903:6630773,6254097:983040,0,0 +k1,11903:8389890,6254097:148242 +k1,11903:9557218,6254097:148243 +k1,11903:12366877,6254097:148242 +k1,11903:14544114,6254097:148242 +k1,11903:15711442,6254097:148243 +k1,11903:17032123,6254097:148242 +k1,11903:20022006,6254097:148242 +k1,11903:21161809,6254097:148243 +k1,11903:22376322,6254097:148242 +k1,11903:24906142,6254097:148242 +k1,11903:25670423,6254097:148243 +k1,11903:26837750,6254097:148242 +k1,11903:28639465,6254097:148242 +k1,11903:30787867,6254097:148243 +k1,11903:31563944,6254097:148242 +k1,11903:32583029,6254097:0 +) +(1,11904:6630773,7119177:25952256,505283,134348 +k1,11903:9492075,7119177:199885 +k1,11903:11734062,7119177:199885 +k1,11903:12802299,7119177:199885 +k1,11903:15008895,7119177:199884 +k1,11903:15564640,7119177:199885 +k1,11903:17047720,7119177:199885 +k1,11903:18927948,7119177:199885 +k1,11903:19779261,7119177:199885 +k1,11903:20335006,7119177:199885 +k1,11903:23046231,7119177:199885 +k1,11903:24114467,7119177:199884 +k1,11903:25789567,7119177:199885 +k1,11903:28023034,7119177:199885 +k1,11903:30573040,7119177:199885 +k1,11903:32583029,7119177:0 +) +(1,11904:6630773,7984257:25952256,505283,134348 +k1,11903:7855510,7984257:205652 +k1,11903:9714635,7984257:205652 +k1,11903:11920446,7984257:205652 +k1,11903:13317543,7984257:205652 +k1,11903:17748301,7984257:205652 +k1,11903:18973037,7984257:205651 +k1,11903:21420020,7984257:205652 +k1,11903:25271440,7984257:205652 +k1,11903:28983268,7984257:205652 +k1,11903:31140582,7984257:205652 +k1,11903:32583029,7984257:0 +) +(1,11904:6630773,8849337:25952256,513147,134348 +g1,11903:8718094,8849337 +g1,11903:9936408,8849337 +g1,11903:12626660,8849337 +k1,11904:32583029,8849337:16700540 +g1,11904:32583029,8849337 +) +v1,11906:6630773,9534192:0,393216,0 +(1,11928:6630773,15976045:25952256,6835069,196608 +g1,11928:6630773,15976045 +g1,11928:6630773,15976045 +g1,11928:6434165,15976045 +(1,11928:6434165,15976045:0,6835069,196608 +r1,12008:32779637,15976045:26345472,7031677,196608 +k1,11928:6434165,15976045:-26345472 +) +(1,11928:6434165,15976045:26345472,6835069,196608 +[1,11928:6630773,15976045:25952256,6638461,0 +(1,11908:6630773,9762023:25952256,424439,106246 +(1,11907:6630773,9762023:0,0,0 +g1,11907:6630773,9762023 +g1,11907:6630773,9762023 +g1,11907:6303093,9762023 +(1,11907:6303093,9762023:0,0,0 +) +g1,11907:6630773,9762023 +) +g1,11908:8954451,9762023 +g1,11908:9950313,9762023 +g1,11908:13601806,9762023 +h1,11908:14929622,9762023:0,0,0 +k1,11908:32583030,9762023:17653408 +g1,11908:32583030,9762023 +) +(1,11909:6630773,10446878:25952256,424439,106246 +h1,11909:6630773,10446878:0,0,0 +h1,11909:8622497,10446878:0,0,0 +k1,11909:32583029,10446878:23960532 +g1,11909:32583029,10446878 +) +(1,11913:6630773,11262805:25952256,424439,106246 +(1,11911:6630773,11262805:0,0,0 +g1,11911:6630773,11262805 +g1,11911:6630773,11262805 +g1,11911:6303093,11262805 +(1,11911:6303093,11262805:0,0,0 +) +g1,11911:6630773,11262805 +) +g1,11913:7626635,11262805 +g1,11913:8954451,11262805 +g1,11913:12605944,11262805 +h1,11913:13933760,11262805:0,0,0 +k1,11913:32583028,11262805:18649268 +g1,11913:32583028,11262805 +) +(1,11915:6630773,12078732:25952256,424439,106246 +(1,11914:6630773,12078732:0,0,0 +g1,11914:6630773,12078732 +g1,11914:6630773,12078732 +g1,11914:6303093,12078732 +(1,11914:6303093,12078732:0,0,0 +) +g1,11914:6630773,12078732 +) +g1,11915:8954451,12078732 +g1,11915:9950313,12078732 +g1,11915:12273991,12078732 +h1,11915:13601807,12078732:0,0,0 +k1,11915:32583029,12078732:18981222 +g1,11915:32583029,12078732 +) +(1,11916:6630773,12763587:25952256,424439,106246 +h1,11916:6630773,12763587:0,0,0 +h1,11916:8622497,12763587:0,0,0 +k1,11916:32583029,12763587:23960532 +g1,11916:32583029,12763587 +) +(1,11920:6630773,13579514:25952256,424439,106246 +(1,11918:6630773,13579514:0,0,0 +g1,11918:6630773,13579514 +g1,11918:6630773,13579514 +g1,11918:6303093,13579514 +(1,11918:6303093,13579514:0,0,0 +) +g1,11918:6630773,13579514 +) +g1,11920:7626635,13579514 +g1,11920:8954451,13579514 +g1,11920:11278129,13579514 +h1,11920:12605945,13579514:0,0,0 +k1,11920:32583029,13579514:19977084 +g1,11920:32583029,13579514 +) +(1,11922:6630773,14395441:25952256,424439,106246 +(1,11921:6630773,14395441:0,0,0 +g1,11921:6630773,14395441 +g1,11921:6630773,14395441 +g1,11921:6303093,14395441 +(1,11921:6303093,14395441:0,0,0 +) +g1,11921:6630773,14395441 +) +k1,11922:6630773,14395441:0 +h1,11922:9950312,14395441:0,0,0 +k1,11922:32583028,14395441:22632716 +g1,11922:32583028,14395441 +) +(1,11923:6630773,15080296:25952256,424439,106246 +h1,11923:6630773,15080296:0,0,0 +k1,11923:6630773,15080296:0 +h1,11923:11942036,15080296:0,0,0 +k1,11923:32583028,15080296:20640992 +g1,11923:32583028,15080296 +) +(1,11927:6630773,15896223:25952256,424439,79822 +(1,11925:6630773,15896223:0,0,0 +g1,11925:6630773,15896223 +g1,11925:6630773,15896223 +g1,11925:6303093,15896223 +(1,11925:6303093,15896223:0,0,0 +) +g1,11925:6630773,15896223 +) +g1,11927:7626635,15896223 +g1,11927:8954451,15896223 +h1,11927:10614221,15896223:0,0,0 +k1,11927:32583029,15896223:21968808 +g1,11927:32583029,15896223 +) +] +) +g1,11928:32583029,15976045 +g1,11928:6630773,15976045 +g1,11928:6630773,15976045 +g1,11928:32583029,15976045 +g1,11928:32583029,15976045 +) +h1,11928:6630773,16172653:0,0,0 +(1,11932:6630773,17037733:25952256,505283,134348 +h1,11931:6630773,17037733:983040,0,0 +k1,11931:9579952,17037733:150792 +k1,11931:11848869,17037733:150793 +k1,11931:13342494,17037733:150792 +k1,11931:14263989,17037733:150792 +k1,11931:17624079,17037733:150792 +k1,11931:19010226,17037733:150793 +k1,11931:19777056,17037733:150792 +k1,11931:22647592,17037733:150792 +k1,11931:24536399,17037733:150792 +k1,11931:27004545,17037733:150793 +k1,11931:28853375,17037733:150792 +k1,11931:32583029,17037733:0 +) +(1,11932:6630773,17902813:25952256,505283,134348 +g1,11931:9740456,17902813 +g1,11931:10931245,17902813 +g1,11931:13872500,17902813 +g1,11931:15303806,17902813 +g1,11931:17781722,17902813 +h1,11931:19324440,17902813:0,0,0 +g1,11931:19523669,17902813 +g1,11931:20532268,17902813 +g1,11931:22229650,17902813 +h1,11931:23425027,17902813:0,0,0 +k1,11932:32583029,17902813:8898480 +g1,11932:32583029,17902813 +) +v1,11934:6630773,18767893:0,393216,0 +(1,11935:6630773,20075619:25952256,1700942,0 +g1,11935:6630773,20075619 +g1,11935:6237557,20075619 +r1,12008:6368629,20075619:131072,1700942,0 +g1,11935:6567858,20075619 +g1,11935:6764466,20075619 +[1,11935:6764466,20075619:25818563,1700942,0 +(1,11935:6764466,19076191:25818563,701514,196608 +(1,11934:6764466,19076191:0,701514,196608 +r1,12008:7761522,19076191:997056,898122,196608 +k1,11934:6764466,19076191:-997056 +) +(1,11934:6764466,19076191:997056,701514,196608 +) +k1,11934:7905185,19076191:143663 +k1,11934:8232865,19076191:327680 +k1,11934:12787755,19076191:143662 +k1,11934:14035700,19076191:143663 +k1,11934:14927129,19076191:143663 +k1,11934:17968138,19076191:143662 +k1,11934:20461922,19076191:143663 +k1,11934:21999536,19076191:143663 +k1,11934:24838694,19076191:143662 +(1,11934:24838694,19076191:0,452978,115847 +r1,12008:29417502,19076191:4578808,568825,115847 +k1,11934:24838694,19076191:-4578808 +) +(1,11934:24838694,19076191:4578808,452978,115847 +k1,11934:24838694,19076191:3277 +h1,11934:29414225,19076191:0,411205,112570 +) +k1,11934:29734835,19076191:143663 +k1,11935:32583029,19076191:0 +) +(1,11935:6764466,19941271:25818563,513147,134348 +(1,11934:6764466,19941271:0,452978,115847 +r1,12008:11343274,19941271:4578808,568825,115847 +k1,11934:6764466,19941271:-4578808 +) +(1,11934:6764466,19941271:4578808,452978,115847 +k1,11934:6764466,19941271:3277 +h1,11934:11339997,19941271:0,411205,112570 +) +g1,11934:11542503,19941271 +g1,11934:12273229,19941271 +g1,11934:14318607,19941271 +g1,11934:16031062,19941271 +g1,11934:16846329,19941271 +g1,11934:19206935,19941271 +g1,11934:21095682,19941271 +g1,11934:21753008,19941271 +g1,11934:23056519,19941271 +g1,11934:24003514,19941271 +g1,11934:26179964,19941271 +g1,11934:28389182,19941271 +k1,11935:32583029,19941271:1230965 +g1,11935:32583029,19941271 +) +] +g1,11935:32583029,20075619 +) +h1,11935:6630773,20075619:0,0,0 +(1,11937:6630773,22192437:25952256,564462,139132 +(1,11937:6630773,22192437:2450326,534184,12975 +g1,11937:6630773,22192437 +g1,11937:9081099,22192437 +) +g1,11937:12604118,22192437 +k1,11937:32583029,22192437:16537353 +g1,11937:32583029,22192437 +) +(1,11941:6630773,23450733:25952256,513147,126483 +k1,11940:8414008,23450733:162529 +k1,11940:9595622,23450733:162529 +k1,11940:10770683,23450733:162530 +k1,11940:13924931,23450733:162529 +k1,11940:16116455,23450733:162529 +k1,11940:17147336,23450733:162529 +k1,11940:18442328,23450733:162530 +k1,11940:20565694,23450733:162529 +k1,11940:21084083,23450733:162529 +k1,11940:22963000,23450733:162529 +k1,11940:24197698,23450733:162529 +k1,11940:26337449,23450733:162530 +k1,11940:29369144,23450733:162529 +k1,11940:29887533,23450733:162529 +k1,11940:32583029,23450733:0 +) +(1,11941:6630773,24315813:25952256,513147,134348 +k1,11940:7727039,24315813:148615 +k1,11940:11326781,24315813:148616 +k1,11940:12494481,24315813:148615 +k1,11940:15486704,24315813:148616 +k1,11940:17242262,24315813:148615 +k1,11940:18050170,24315813:148616 +k1,11940:19217870,24315813:148615 +k1,11940:21104501,24315813:148616 +k1,11940:22820737,24315813:148615 +k1,11940:23325213,24315813:148616 +k1,11940:26093957,24315813:148615 +k1,11940:28394119,24315813:148615 +k1,11940:29739422,24315813:148616 +k1,11940:32583029,24315813:0 +) +(1,11941:6630773,25180893:25952256,639543,134348 +k1,11940:8503089,25180893:265373 +k1,11940:9299959,25180893:265373 +k1,11940:11260093,25180893:265373 +k1,11940:12286994,25180893:265373 +$1,11940:12286994,25180893 +[1,11940:12715599,25279207:384631,359203,5505 +(1,11940:13044982,25273702:0,353698,0 +) +(1,11940:12715599,25279207:351863,248644,5505 +) +] +k1,11940:13403178,25180893:302948 +k1,11940:14274323,25180893:302948 +(1,11940:14274323,25180893:2195193,639543,119364 +[1,11940:14274323,24593778:595722,26214,706479 +] +[1,11940:14870045,25180893:1599471,639543,95027 +(1,11940:14870045,25180893:1599471,530010,95027 +(1,11940:15298650,24990818:311689,339935,0 +) +) +] +) +$1,11940:16469516,25180893 +k1,11940:16908559,25180893:265373 +k1,11940:18127481,25180893:265373 +k1,11940:19497136,25180893:265373 +k1,11940:22574004,25180893:265373 +k1,11940:24042618,25180893:265373 +k1,11940:25575456,25180893:265372 +k1,11940:26859914,25180893:265373 +k1,11940:30207445,25180893:265373 +k1,11940:31132110,25180893:265373 +k1,11940:32168186,25180893:265373 +k1,11941:32583029,25180893:0 +) +(1,11941:6630773,26045973:25952256,513147,115847 +g1,11940:9525498,26045973 +g1,11940:11592503,26045973 +(1,11940:11592503,26045973:0,414482,115847 +r1,12008:12654192,26045973:1061689,530329,115847 +k1,11940:11592503,26045973:-1061689 +) +(1,11940:11592503,26045973:1061689,414482,115847 +k1,11940:11592503,26045973:3277 +h1,11940:12650915,26045973:0,411205,112570 +) +k1,11941:32583028,26045973:19876408 +g1,11941:32583028,26045973 +) +v1,11943:6630773,26730828:0,393216,0 +(1,11947:6630773,27078117:25952256,740505,196608 +g1,11947:6630773,27078117 +g1,11947:6630773,27078117 +g1,11947:6434165,27078117 +(1,11947:6434165,27078117:0,740505,196608 +r1,12008:32779637,27078117:26345472,937113,196608 +k1,11947:6434165,27078117:-26345472 +) +(1,11947:6434165,27078117:26345472,740505,196608 +[1,11947:6630773,27078117:25952256,543897,0 +(1,11945:6630773,26965265:25952256,431045,112852 +(1,11944:6630773,26965265:0,0,0 +g1,11944:6630773,26965265 +g1,11944:6630773,26965265 +g1,11944:6303093,26965265 +(1,11944:6303093,26965265:0,0,0 +) +g1,11944:6630773,26965265 +) +g1,11945:7958589,26965265 +g1,11945:8954451,26965265 +g1,11945:16921346,26965265 +g1,11945:17585254,26965265 +k1,11945:17585254,26965265:0 +h1,11945:21236748,26965265:0,0,0 +k1,11945:32583029,26965265:11346281 +g1,11945:32583029,26965265 +) +] +) +g1,11947:32583029,27078117 +g1,11947:6630773,27078117 +g1,11947:6630773,27078117 +g1,11947:32583029,27078117 +g1,11947:32583029,27078117 +) +h1,11947:6630773,27274725:0,0,0 +(1,11951:6630773,28139805:25952256,505283,134348 +h1,11950:6630773,28139805:983040,0,0 +g1,11950:8630931,28139805 +g1,11950:9186020,28139805 +g1,11950:10750364,28139805 +g1,11950:11817945,28139805 +g1,11950:13116868,28139805 +(1,11950:13116868,28139805:0,452978,115847 +r1,12008:14881981,28139805:1765113,568825,115847 +k1,11950:13116868,28139805:-1765113 +) +(1,11950:13116868,28139805:1765113,452978,115847 +k1,11950:13116868,28139805:3277 +h1,11950:14878704,28139805:0,411205,112570 +) +g1,11950:15081210,28139805 +g1,11950:16674390,28139805 +g1,11950:18340315,28139805 +(1,11950:18340315,28139805:0,414482,115847 +r1,12008:18698581,28139805:358266,530329,115847 +k1,11950:18340315,28139805:-358266 +) +(1,11950:18340315,28139805:358266,414482,115847 +k1,11950:18340315,28139805:3277 +h1,11950:18695304,28139805:0,411205,112570 +) +g1,11950:18897810,28139805 +g1,11950:20288484,28139805 +(1,11950:20288484,28139805:0,414482,115847 +r1,12008:21701885,28139805:1413401,530329,115847 +k1,11950:20288484,28139805:-1413401 +) +(1,11950:20288484,28139805:1413401,414482,115847 +k1,11950:20288484,28139805:3277 +h1,11950:21698608,28139805:0,411205,112570 +) +g1,11950:21901114,28139805 +g1,11950:22786505,28139805 +k1,11951:32583029,28139805:6671768 +g1,11951:32583029,28139805 +) +v1,11953:6630773,28824660:0,393216,0 +(1,11968:6630773,32949804:25952256,4518360,196608 +g1,11968:6630773,32949804 +g1,11968:6630773,32949804 +g1,11968:6434165,32949804 +(1,11968:6434165,32949804:0,4518360,196608 +r1,12008:32779637,32949804:26345472,4714968,196608 +k1,11968:6434165,32949804:-26345472 +) +(1,11968:6434165,32949804:26345472,4518360,196608 +[1,11968:6630773,32949804:25952256,4321752,0 +(1,11955:6630773,29052491:25952256,424439,86428 +(1,11954:6630773,29052491:0,0,0 +g1,11954:6630773,29052491 +g1,11954:6630773,29052491 +g1,11954:6303093,29052491 +(1,11954:6303093,29052491:0,0,0 +) +g1,11954:6630773,29052491 +) +g1,11955:7294681,29052491 +g1,11955:8290543,29052491 +g1,11955:9950313,29052491 +g1,11955:10946175,29052491 +g1,11955:11942037,29052491 +k1,11955:11942037,29052491:0 +h1,11955:12937899,29052491:0,0,0 +k1,11955:32583029,29052491:19645130 +g1,11955:32583029,29052491 +) +(1,11956:6630773,29737346:25952256,424439,86428 +h1,11956:6630773,29737346:0,0,0 +g1,11956:8290543,29737346 +g1,11956:9286405,29737346 +g1,11956:10946175,29737346 +h1,11956:11942037,29737346:0,0,0 +k1,11956:32583029,29737346:20640992 +g1,11956:32583029,29737346 +) +(1,11957:6630773,30422201:25952256,424439,79822 +h1,11957:6630773,30422201:0,0,0 +g1,11957:8622497,30422201 +g1,11957:9286405,30422201 +h1,11957:9950313,30422201:0,0,0 +k1,11957:32583029,30422201:22632716 +g1,11957:32583029,30422201 +) +(1,11961:6630773,31238128:25952256,424439,79822 +(1,11959:6630773,31238128:0,0,0 +g1,11959:6630773,31238128 +g1,11959:6630773,31238128 +g1,11959:6303093,31238128 +(1,11959:6303093,31238128:0,0,0 +) +g1,11959:6630773,31238128 +) +g1,11961:7626635,31238128 +g1,11961:8954451,31238128 +h1,11961:11610082,31238128:0,0,0 +k1,11961:32583030,31238128:20972948 +g1,11961:32583030,31238128 +) +(1,11963:6630773,32054055:25952256,424439,79822 +(1,11962:6630773,32054055:0,0,0 +g1,11962:6630773,32054055 +g1,11962:6630773,32054055 +g1,11962:6303093,32054055 +(1,11962:6303093,32054055:0,0,0 +) +g1,11962:6630773,32054055 +) +k1,11963:6630773,32054055:0 +g1,11963:8622497,32054055 +g1,11963:9286405,32054055 +h1,11963:10946175,32054055:0,0,0 +k1,11963:32583029,32054055:21636854 +g1,11963:32583029,32054055 +) +(1,11967:6630773,32869982:25952256,424439,79822 +(1,11965:6630773,32869982:0,0,0 +g1,11965:6630773,32869982 +g1,11965:6630773,32869982 +g1,11965:6303093,32869982 +(1,11965:6303093,32869982:0,0,0 +) +g1,11965:6630773,32869982 +) +g1,11967:7626635,32869982 +g1,11967:8954451,32869982 +h1,11967:9618359,32869982:0,0,0 +k1,11967:32583029,32869982:22964670 +g1,11967:32583029,32869982 +) +] +) +g1,11968:32583029,32949804 +g1,11968:6630773,32949804 +g1,11968:6630773,32949804 +g1,11968:32583029,32949804 +g1,11968:32583029,32949804 +) +h1,11968:6630773,33146412:0,0,0 +(1,11972:6630773,34011492:25952256,513147,134348 +h1,11971:6630773,34011492:983040,0,0 +k1,11971:8970743,34011492:144514 +k1,11971:11810753,34011492:144514 +(1,11971:11810753,34011492:0,452978,115847 +r1,12008:13927578,34011492:2116825,568825,115847 +k1,11971:11810753,34011492:-2116825 +) +(1,11971:11810753,34011492:2116825,452978,115847 +k1,11971:11810753,34011492:3277 +h1,11971:13924301,34011492:0,411205,112570 +) +k1,11971:14072092,34011492:144514 +k1,11971:15971660,34011492:144514 +k1,11971:18457120,34011492:144514 +k1,11971:18957494,34011492:144514 +k1,11971:21094957,34011492:144513 +k1,11971:23497186,34011492:144514 +k1,11971:26171390,34011492:144514 +(1,11971:26171390,34011492:0,414482,115847 +r1,12008:26881368,34011492:709978,530329,115847 +k1,11971:26171390,34011492:-709978 +) +(1,11971:26171390,34011492:709978,414482,115847 +k1,11971:26171390,34011492:3277 +h1,11971:26878091,34011492:0,411205,112570 +) +k1,11971:27025882,34011492:144514 +k1,11971:29181041,34011492:144514 +k1,11971:29941593,34011492:144514 +k1,11971:30874505,34011492:144514 +k1,11971:32583029,34011492:0 +) +(1,11972:6630773,34876572:25952256,513147,134348 +k1,11971:8951285,34876572:191247 +k1,11971:10985404,34876572:191247 +k1,11971:11792689,34876572:191247 +(1,11971:11792689,34876572:0,414482,115847 +r1,12008:12502667,34876572:709978,530329,115847 +k1,11971:11792689,34876572:-709978 +) +(1,11971:11792689,34876572:709978,414482,115847 +k1,11971:11792689,34876572:3277 +h1,11971:12499390,34876572:0,411205,112570 +) +k1,11971:12693914,34876572:191247 +k1,11971:14623176,34876572:191247 +k1,11971:17766820,34876572:191247 +k1,11971:19154755,34876572:191248 +k1,11971:22396703,34876572:191247 +k1,11971:23119447,34876572:191247 +k1,11971:24595200,34876572:191247 +k1,11971:26762357,34876572:191247 +k1,11971:27872419,34876572:191247 +k1,11971:31089463,34876572:191247 +k1,11971:32583029,34876572:0 +) +(1,11972:6630773,35741652:25952256,505283,134348 +g1,11971:7516164,35741652 +(1,11971:7516164,35741652:0,452978,115847 +r1,12008:9281277,35741652:1765113,568825,115847 +k1,11971:7516164,35741652:-1765113 +) +(1,11971:7516164,35741652:1765113,452978,115847 +k1,11971:7516164,35741652:3277 +h1,11971:9278000,35741652:0,411205,112570 +) +g1,11971:9654176,35741652 +(1,11971:9654176,35741652:0,452978,115847 +r1,12008:11419289,35741652:1765113,568825,115847 +k1,11971:9654176,35741652:-1765113 +) +(1,11971:9654176,35741652:1765113,452978,115847 +k1,11971:9654176,35741652:3277 +h1,11971:11416012,35741652:0,411205,112570 +) +g1,11971:11618518,35741652 +g1,11971:13310657,35741652 +g1,11971:14576157,35741652 +g1,11971:17301799,35741652 +g1,11971:20220772,35741652 +(1,11971:20220772,35741652:0,414482,115847 +r1,12008:20930750,35741652:709978,530329,115847 +k1,11971:20220772,35741652:-709978 +) +(1,11971:20220772,35741652:709978,414482,115847 +k1,11971:20220772,35741652:3277 +h1,11971:20927473,35741652:0,411205,112570 +) +g1,11971:21129979,35741652 +k1,11972:32583029,35741652:9389977 +g1,11972:32583029,35741652 +) +(1,11974:6630773,36606732:25952256,505283,134348 +h1,11973:6630773,36606732:983040,0,0 +k1,11973:10081528,36606732:148396 +(1,11973:10081528,36606732:0,414482,115847 +r1,12008:11846641,36606732:1765113,530329,115847 +k1,11973:10081528,36606732:-1765113 +) +(1,11973:10081528,36606732:1765113,414482,115847 +k1,11973:10081528,36606732:3277 +h1,11973:11843364,36606732:0,411205,112570 +) +k1,11973:11995037,36606732:148396 +k1,11973:12829595,36606732:148396 +k1,11973:13333852,36606732:148397 +k1,11973:15723579,36606732:148396 +k1,11973:19152707,36606732:148396 +k1,11973:20492548,36606732:148396 +k1,11973:23068398,36606732:148396 +k1,11973:24235879,36606732:148396 +k1,11973:27456604,36606732:148397 +k1,11973:28063097,36606732:148396 +k1,11973:30764120,36606732:148396 +k1,11973:31563944,36606732:148396 +k1,11973:32583029,36606732:0 +) +(1,11974:6630773,37471812:25952256,513147,134348 +k1,11973:7909743,37471812:179276 +k1,11973:8740447,37471812:179276 +(1,11973:8740447,37471812:0,452978,115847 +r1,12008:10505560,37471812:1765113,568825,115847 +k1,11973:8740447,37471812:-1765113 +) +(1,11973:8740447,37471812:1765113,452978,115847 +k1,11973:8740447,37471812:3277 +h1,11973:10502283,37471812:0,411205,112570 +) +k1,11973:10684836,37471812:179276 +k1,11973:12874101,37471812:179276 +k1,11973:14072462,37471812:179276 +k1,11973:15828534,37471812:179276 +k1,11973:16674966,37471812:179276 +(1,11973:16674966,37471812:0,452978,115847 +r1,12008:18440079,37471812:1765113,568825,115847 +k1,11973:16674966,37471812:-1765113 +) +(1,11973:16674966,37471812:1765113,452978,115847 +k1,11973:16674966,37471812:3277 +h1,11973:18436802,37471812:0,411205,112570 +) +k1,11973:18619356,37471812:179277 +k1,11973:19330129,37471812:179276 +k1,11973:20575676,37471812:179276 +k1,11973:23289229,37471812:179276 +k1,11973:24297535,37471812:179276 +k1,11973:26206306,37471812:179276 +k1,11973:29386476,37471812:179276 +k1,11973:31558702,37471812:179276 +k1,11974:32583029,37471812:0 +) +(1,11974:6630773,38336892:25952256,513147,134348 +k1,11973:8054633,38336892:157704 +(1,11973:8054633,38336892:0,414482,115847 +r1,12008:8764611,38336892:709978,530329,115847 +k1,11973:8054633,38336892:-709978 +) +(1,11973:8054633,38336892:709978,414482,115847 +k1,11973:8054633,38336892:3277 +h1,11973:8761334,38336892:0,411205,112570 +) +k1,11973:8922316,38336892:157705 +k1,11973:11090666,38336892:157705 +k1,11973:13428753,38336892:157704 +k1,11973:14334224,38336892:157705 +k1,11973:15777744,38336892:157704 +k1,11973:18710898,38336892:157704 +k1,11973:20911360,38336892:157705 +k1,11973:23874006,38336892:157705 +k1,11973:25050795,38336892:157704 +k1,11973:27694281,38336892:157705 +k1,11973:28511277,38336892:157704 +k1,11973:32583029,38336892:0 +) +(1,11974:6630773,39201972:25952256,513147,134348 +g1,11973:8197739,39201972 +(1,11973:8197739,39201972:0,452978,122846 +r1,12008:11017988,39201972:2820249,575824,122846 +k1,11973:8197739,39201972:-2820249 +) +(1,11973:8197739,39201972:2820249,452978,122846 +k1,11973:8197739,39201972:3277 +h1,11973:11014711,39201972:0,411205,112570 +) +g1,11973:11390887,39201972 +g1,11973:12077704,39201972 +g1,11973:13860938,39201972 +g1,11973:17447068,39201972 +g1,11973:18177794,39201972 +g1,11973:19028451,39201972 +g1,11973:21188517,39201972 +g1,11973:22406831,39201972 +g1,11973:25301556,39201972 +g1,11973:26186947,39201972 +k1,11974:32583029,39201972:4028267 +g1,11974:32583029,39201972 +) +v1,11976:6630773,39886827:0,393216,0 +(1,11985:6630773,43625361:25952256,4131750,196608 +g1,11985:6630773,43625361 +g1,11985:6630773,43625361 +g1,11985:6434165,43625361 +(1,11985:6434165,43625361:0,4131750,196608 +r1,12008:32779637,43625361:26345472,4328358,196608 +k1,11985:6434165,43625361:-26345472 +) +(1,11985:6434165,43625361:26345472,4131750,196608 +[1,11985:6630773,43625361:25952256,3935142,0 +(1,11978:6630773,40121264:25952256,431045,86428 +(1,11977:6630773,40121264:0,0,0 +g1,11977:6630773,40121264 +g1,11977:6630773,40121264 +g1,11977:6303093,40121264 +(1,11977:6303093,40121264:0,0,0 +) +g1,11977:6630773,40121264 +) +g1,11978:7958589,40121264 +g1,11978:8954451,40121264 +g1,11978:12937898,40121264 +g1,11978:14929622,40121264 +g1,11978:15593530,40121264 +g1,11978:17917208,40121264 +h1,11978:18249162,40121264:0,0,0 +k1,11978:32583029,40121264:14333867 +g1,11978:32583029,40121264 +) +(1,11979:6630773,40806119:25952256,431045,79822 +h1,11979:6630773,40806119:0,0,0 +g1,11979:6962727,40806119 +g1,11979:7958589,40806119 +g1,11979:10614221,40806119 +h1,11979:10946175,40806119:0,0,0 +k1,11979:32583029,40806119:21636854 +g1,11979:32583029,40806119 +) +(1,11980:6630773,41490974:25952256,424439,79822 +h1,11980:6630773,41490974:0,0,0 +g1,11980:6962727,41490974 +g1,11980:7294681,41490974 +g1,11980:7626635,41490974 +g1,11980:8290543,41490974 +g1,11980:9286405,41490974 +k1,11980:9286405,41490974:0 +h1,11980:12605945,41490974:0,0,0 +k1,11980:32583029,41490974:19977084 +g1,11980:32583029,41490974 +) +(1,11981:6630773,42175829:25952256,424439,79822 +h1,11981:6630773,42175829:0,0,0 +g1,11981:6962727,42175829 +h1,11981:7294681,42175829:0,0,0 +k1,11981:32583029,42175829:25288348 +g1,11981:32583029,42175829 +) +(1,11982:6630773,42860684:25952256,424439,112852 +h1,11982:6630773,42860684:0,0,0 +g1,11982:6962727,42860684 +k1,11982:6962727,42860684:0 +h1,11982:14265715,42860684:0,0,0 +k1,11982:32583029,42860684:18317314 +g1,11982:32583029,42860684 +) +(1,11983:6630773,43545539:25952256,424439,79822 +h1,11983:6630773,43545539:0,0,0 +h1,11983:6962727,43545539:0,0,0 +k1,11983:32583029,43545539:25620302 +g1,11983:32583029,43545539 +) +] +) +g1,11985:32583029,43625361 +g1,11985:6630773,43625361 +g1,11985:6630773,43625361 +g1,11985:32583029,43625361 +g1,11985:32583029,43625361 +) +h1,11985:6630773,43821969:0,0,0 +v1,11989:6630773,44506824:0,393216,0 +(1,12008:6630773,45510161:25952256,1396553,196608 +g1,12008:6630773,45510161 +g1,12008:6630773,45510161 +g1,12008:6434165,45510161 +(1,12008:6434165,45510161:0,1396553,196608 +r1,12008:32779637,45510161:26345472,1593161,196608 +k1,12008:6434165,45510161:-26345472 +) +(1,12008:6434165,45510161:26345472,1396553,196608 +[1,12008:6630773,45510161:25952256,1199945,0 +(1,11991:6630773,44734655:25952256,424439,79822 +(1,11990:6630773,44734655:0,0,0 +g1,11990:6630773,44734655 +g1,11990:6630773,44734655 +g1,11990:6303093,44734655 +(1,11990:6303093,44734655:0,0,0 +) +g1,11990:6630773,44734655 +) +k1,11991:6630773,44734655:0 +g1,11991:8622497,44734655 +g1,11991:9286405,44734655 +h1,11991:9950313,44734655:0,0,0 +k1,11991:32583029,44734655:22632716 +g1,11991:32583029,44734655 +) +(1,11995:6630773,45430339:25952256,424439,79822 +(1,11993:6630773,45430339:0,0,0 +g1,11993:6630773,45430339 +g1,11993:6630773,45430339 +g1,11993:6303093,45430339 +(1,11993:6303093,45430339:0,0,0 +) +g1,11993:6630773,45430339 +) +g1,11995:7626635,45430339 +g1,11995:8954451,45430339 +h1,11995:11610082,45430339:0,0,0 +k1,11995:32583030,45430339:20972948 +g1,11995:32583030,45430339 +) +] +) +g1,12008:32583029,45510161 +g1,12008:6630773,45510161 +g1,12008:6630773,45510161 +g1,12008:32583029,45510161 +g1,12008:32583029,45510161 +) +] +(1,12008:32583029,45706769:0,0,0 +g1,12008:32583029,45706769 +) +) +] +(1,12008:6630773,47279633:25952256,0,0 +h1,12008:6630773,47279633:25952256,0,0 +) +] +(1,12008:4262630,4025873:0,0,0 +[1,12008:-473656,4025873:0,0,0 +(1,12008:-473656,-710413:0,0,0 +(1,12008:-473656,-710413:0,0,0 +g1,12008:-473656,-710413 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +g1,12008:-473656,-710413 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12083:37855564,49800853:1179648,16384,0 +] +!28953 +}190 +Input:1999:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2000:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2001:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2002:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2003:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2004:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2005:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2006:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2009:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2010:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1300 +{191 +[1,12082:4262630,47279633:28320399,43253760,0 +(1,12082:4262630,4025873:0,0,0 +[1,12082:-473656,4025873:0,0,0 +(1,12082:-473656,-710413:0,0,0 +(1,12082:-473656,-644877:0,0,0 +k1,12082:-473656,-644877:-65536 ) +(1,12082:-473656,4736287:0,0,0 +k1,12082:-473656,4736287:5209943 ) -k1,12083:3078556,49800853:-34777008 +g1,12082:-473656,-710413 ) ] -g1,12083:6630773,4812305 -g1,12083:6630773,4812305 -g1,12083:9499939,4812305 -g1,12083:12696785,4812305 -g1,12083:14106464,4812305 -g1,12083:17459285,4812305 -k1,12083:31387652,4812305:13928367 ) +[1,12082:6630773,47279633:25952256,43253760,0 +[1,12082:6630773,4812305:25952256,786432,0 +(1,12082:6630773,4812305:25952256,513147,134348 +(1,12082:6630773,4812305:25952256,513147,134348 +g1,12082:3078558,4812305 +[1,12082:3078558,4812305:0,0,0 +(1,12082:3078558,2439708:0,1703936,0 +k1,12082:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12082:2537886,2439708:1179648,16384,0 +) +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12082:3078558,1915420:16384,1179648,0 +) +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 +) +] +) +) +) +] +[1,12082:3078558,4812305:0,0,0 +(1,12082:3078558,2439708:0,1703936,0 +g1,12082:29030814,2439708 +g1,12082:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12082:36151628,1915420:16384,1179648,0 +) +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 +) +] +) +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12082:37855564,2439708:1179648,16384,0 +) +) +k1,12082:3078556,2439708:-34777008 ) ] -[1,12083:6630773,45706769:25952256,40108032,0 -(1,12083:6630773,45706769:25952256,40108032,0 -(1,12083:6630773,45706769:0,0,0 -g1,12083:6630773,45706769 +[1,12082:3078558,4812305:0,0,0 +(1,12082:3078558,49800853:0,16384,2228224 +k1,12082:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12082:2537886,49800853:1179648,16384,0 ) -[1,12083:6630773,45706769:25952256,40108032,0 -v1,12009:6630773,6254097:0,393216,0 -(1,12009:6630773,9009531:25952256,3148650,196608 -g1,12009:6630773,9009531 -g1,12009:6630773,9009531 -g1,12009:6434165,9009531 -(1,12009:6434165,9009531:0,3148650,196608 -r1,12083:32779637,9009531:26345472,3345258,196608 -k1,12009:6434165,9009531:-26345472 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12082:3078558,51504789:16384,1179648,0 ) -(1,12009:6434165,9009531:26345472,3148650,196608 -[1,12009:6630773,9009531:25952256,2952042,0 -(1,11998:6630773,6481928:25952256,424439,79822 -(1,11997:6630773,6481928:0,0,0 -g1,11997:6630773,6481928 -g1,11997:6630773,6481928 -g1,11997:6303093,6481928 -(1,11997:6303093,6481928:0,0,0 -) -g1,11997:6630773,6481928 -) -k1,11998:6630773,6481928:0 -g1,11998:8622497,6481928 -g1,11998:9286405,6481928 -h1,11998:10946175,6481928:0,0,0 -k1,11998:32583029,6481928:21636854 -g1,11998:32583029,6481928 -) -(1,12002:6630773,7297855:25952256,424439,79822 -(1,12000:6630773,7297855:0,0,0 -g1,12000:6630773,7297855 -g1,12000:6630773,7297855 -g1,12000:6303093,7297855 -(1,12000:6303093,7297855:0,0,0 -) -g1,12000:6630773,7297855 -) -g1,12002:7626635,7297855 -g1,12002:8954451,7297855 -h1,12002:9618359,7297855:0,0,0 -k1,12002:32583029,7297855:22964670 -g1,12002:32583029,7297855 -) -(1,12004:6630773,8113782:25952256,424439,86428 -(1,12003:6630773,8113782:0,0,0 -g1,12003:6630773,8113782 -g1,12003:6630773,8113782 -g1,12003:6303093,8113782 -(1,12003:6303093,8113782:0,0,0 -) -g1,12003:6630773,8113782 -) -k1,12004:6630773,8113782:0 -g1,12004:8622497,8113782 -g1,12004:9286405,8113782 -g1,12004:11278129,8113782 -g1,12004:13269853,8113782 -g1,12004:13933761,8113782 -h1,12004:15593531,8113782:0,0,0 -k1,12004:32583029,8113782:16989498 -g1,12004:32583029,8113782 -) -(1,12008:6630773,8929709:25952256,424439,79822 -(1,12006:6630773,8929709:0,0,0 -g1,12006:6630773,8929709 -g1,12006:6630773,8929709 -g1,12006:6303093,8929709 -(1,12006:6303093,8929709:0,0,0 -) -g1,12006:6630773,8929709 -) -g1,12008:7626635,8929709 -g1,12008:8954451,8929709 -h1,12008:11610082,8929709:0,0,0 -k1,12008:32583030,8929709:20972948 -g1,12008:32583030,8929709 -) -] -) -g1,12009:32583029,9009531 -g1,12009:6630773,9009531 -g1,12009:6630773,9009531 -g1,12009:32583029,9009531 -g1,12009:32583029,9009531 -) -h1,12009:6630773,9206139:0,0,0 -(1,12013:6630773,10071219:25952256,513147,134348 -h1,12012:6630773,10071219:983040,0,0 -k1,12012:8188434,10071219:159778 -k1,12012:9841161,10071219:159817 -k1,12012:11067249,10071219:159817 -k1,12012:13657141,10071219:159817 -k1,12012:14172818,10071219:159817 -k1,12012:17028130,10071219:159816 -k1,12012:18135598,10071219:159817 -k1,12012:21139022,10071219:159817 -k1,12012:23079452,10071219:159817 -k1,12012:23964097,10071219:159817 -k1,12012:25142999,10071219:159817 -k1,12012:27998312,10071219:159817 -k1,12012:30013453,10071219:159817 -k1,12012:30704767,10071219:159817 -k1,12013:32583029,10071219:0 -) -(1,12013:6630773,10936299:25952256,513147,134348 -k1,12012:7926092,10936299:168100 -k1,12012:10245083,10936299:168099 -k1,12012:11213378,10936299:168100 -k1,12012:12762322,10936299:168100 -k1,12012:15740605,10936299:168099 -k1,12012:16440202,10936299:168100 -k1,12012:19889034,10936299:168100 -k1,12012:21451084,10936299:168099 -k1,12012:22903690,10936299:168100 -k1,12012:23731082,10936299:168100 -k1,12012:27721896,10936299:168099 -k1,12012:30092006,10936299:168100 -k1,12012:32583029,10936299:0 -) -(1,12013:6630773,11801379:25952256,513147,126483 -g1,12012:10029470,11801379 -g1,12012:11182248,11801379 -g1,12012:12856692,11801379 -g1,12012:15021346,11801379 -g1,12012:15576435,11801379 -g1,12012:17058859,11801379 -g1,12012:18882726,11801379 -g1,12012:19733383,11801379 -g1,12012:20951697,11801379 -g1,12012:21565769,11801379 -g1,12012:25231853,11801379 -g1,12012:28215051,11801379 -g1,12012:29065708,11801379 -k1,12013:32583029,11801379:2719748 -g1,12013:32583029,11801379 -) -(1,12015:6630773,12666459:25952256,513147,134348 -h1,12014:6630773,12666459:983040,0,0 -k1,12014:8374634,12666459:132986 -k1,12014:9526705,12666459:132986 -k1,12014:12741848,12666459:132985 -k1,12014:13541990,12666459:132986 -(1,12014:13541990,12666459:0,452978,115847 -r1,12083:15307103,12666459:1765113,568825,115847 -k1,12014:13541990,12666459:-1765113 -) -(1,12014:13541990,12666459:1765113,452978,115847 -k1,12014:13541990,12666459:3277 -h1,12014:15303826,12666459:0,411205,112570 -) -k1,12014:15440089,12666459:132986 -k1,12014:16441427,12666459:132986 -k1,12014:17508955,12666459:132985 -k1,12014:17997801,12666459:132986 -k1,12014:20396367,12666459:132986 -k1,12014:23601681,12666459:132986 -k1,12014:24682317,12666459:132985 -k1,12014:28096035,12666459:132986 -(1,12014:28096035,12666459:0,452978,115847 -r1,12083:30564572,12666459:2468537,568825,115847 -k1,12014:28096035,12666459:-2468537 -) -(1,12014:28096035,12666459:2468537,452978,115847 -k1,12014:28096035,12666459:3277 -h1,12014:30561295,12666459:0,411205,112570 -) -k1,12014:30697558,12666459:132986 -k1,12014:32583029,12666459:0 -) -(1,12015:6630773,13531539:25952256,505283,134348 -g1,12014:7361499,13531539 -g1,12014:9073954,13531539 -g1,12014:11315940,13531539 -g1,12014:12534254,13531539 -g1,12014:14114327,13531539 -g1,12014:17210903,13531539 -g1,12014:19524979,13531539 -g1,12014:20494911,13531539 -g1,12014:23766468,13531539 -g1,12014:24617125,13531539 -g1,12014:26019595,13531539 -k1,12015:32583029,13531539:3230273 -g1,12015:32583029,13531539 -) -v1,12021:6630773,14396619:0,393216,0 -(1,12022:6630773,15660659:25952256,1657256,0 -g1,12022:6630773,15660659 -g1,12022:6237557,15660659 -r1,12083:6368629,15660659:131072,1657256,0 -g1,12022:6567858,15660659 -g1,12022:6764466,15660659 -[1,12022:6764466,15660659:25818563,1657256,0 -(1,12022:6764466,14669096:25818563,665693,196608 -(1,12021:6764466,14669096:0,665693,196608 -r1,12083:7868133,14669096:1103667,862301,196608 -k1,12021:6764466,14669096:-1103667 -) -(1,12021:6764466,14669096:1103667,665693,196608 -) -k1,12021:8067343,14669096:199210 -k1,12021:9385272,14669096:327680 -k1,12021:11627895,14669096:199210 -k1,12021:13285936,14669096:199210 -k1,12021:14815528,14669096:199211 -k1,12021:17710234,14669096:199210 -k1,12021:18560872,14669096:199210 -k1,12021:21568300,14669096:199210 -k1,12021:22786595,14669096:199210 -k1,12021:24723820,14669096:199210 -k1,12021:25539068,14669096:199210 -k1,12021:26094139,14669096:199211 -k1,12021:28495359,14669096:199210 -k1,12021:29932544,14669096:199210 -k1,12021:30817916,14669096:199210 -(1,12021:30817916,14669096:0,452978,115847 -r1,12083:32583029,14669096:1765113,568825,115847 -k1,12021:30817916,14669096:-1765113 -) -(1,12021:30817916,14669096:1765113,452978,115847 -k1,12021:30817916,14669096:3277 -h1,12021:32579752,14669096:0,411205,112570 -) -k1,12021:32583029,14669096:0 -) -(1,12022:6764466,15534176:25818563,513147,126483 -g1,12021:8144654,15534176 -g1,12021:10725461,15534176 -g1,12021:12953685,15534176 -g1,12021:14704807,15534176 -g1,12021:17599532,15534176 -(1,12021:17599532,15534176:0,452978,115847 -r1,12083:19364645,15534176:1765113,568825,115847 -k1,12021:17599532,15534176:-1765113 -) -(1,12021:17599532,15534176:1765113,452978,115847 -k1,12021:17599532,15534176:3277 -h1,12021:19361368,15534176:0,411205,112570 -) -g1,12021:19563874,15534176 -g1,12021:21531920,15534176 -g1,12021:22478915,15534176 -g1,12021:23337436,15534176 -k1,12022:32583029,15534176:7805112 -g1,12022:32583029,15534176 -) -] -g1,12022:32583029,15660659 -) -h1,12022:6630773,15660659:0,0,0 -(1,12025:6630773,16525739:25952256,513147,126483 -h1,12024:6630773,16525739:983040,0,0 -k1,12024:9929987,16525739:220988 -k1,12024:10921677,16525739:220987 -k1,12024:14756320,16525739:220988 -k1,12024:15333167,16525739:220987 -k1,12024:18249651,16525739:220988 -k1,12024:20208653,16525739:220987 -k1,12024:23182808,16525739:220988 -k1,12024:24165323,16525739:220987 -k1,12024:28240483,16525739:220988 -k1,12024:28992967,16525739:220987 -k1,12024:32583029,16525739:0 -) -(1,12025:6630773,17390819:25952256,513147,102891 -k1,12024:7539364,17390819:222429 -k1,12024:8117653,17390819:222429 -k1,12024:9439777,17390819:222430 -k1,12024:10313634,17390819:222429 -k1,12024:11555148,17390819:222429 -k1,12024:14646743,17390819:222429 -k1,12024:16558690,17390819:222429 -k1,12024:17800205,17390819:222430 -k1,12024:19414619,17390819:222429 -k1,12024:21375063,17390819:222429 -k1,12024:22256784,17390819:222429 -k1,12024:22835073,17390819:222429 -k1,12024:25926669,17390819:222430 -k1,12024:28490044,17390819:222429 -k1,12024:29500871,17390819:222429 -k1,12024:32583029,17390819:0 -) -(1,12025:6630773,18255899:25952256,513147,134348 -k1,12024:9853469,18255899:268333 -k1,12024:10773230,18255899:268333 -k1,12024:12173371,18255899:268334 -k1,12024:14143674,18255899:268333 -k1,12024:14826781,18255899:268264 -k1,12024:17435405,18255899:268333 -k1,12024:18181495,18255899:268333 -k1,12024:19468913,18255899:268333 -k1,12024:21475262,18255899:268334 -k1,12024:22275092,18255899:268333 -k1,12024:24966291,18255899:268333 -k1,12024:25920786,18255899:268333 -k1,12024:26544979,18255899:268333 -k1,12024:29999673,18255899:268334 -k1,12024:30880768,18255899:268333 -k1,12024:32168186,18255899:268333 -k1,12025:32583029,18255899:0 -) -(1,12025:6630773,19120979:25952256,505283,126483 -g1,12024:9423917,19120979 -g1,12024:10411544,19120979 -g1,12024:12291116,19120979 -g1,12024:13021842,19120979 -k1,12025:32583029,19120979:17158638 -g1,12025:32583029,19120979 -) -(1,12027:6630773,19986059:25952256,513147,126483 -h1,12026:6630773,19986059:983040,0,0 -k1,12026:8768557,19986059:201195 -k1,12026:10275886,19986059:201196 -k1,12026:12059120,19986059:201195 -k1,12026:15680640,19986059:201196 -k1,12026:16900920,19986059:201195 -k1,12026:20184274,19986059:201196 -k1,12026:21044761,19986059:201195 -k1,12026:22343685,19986059:201196 -k1,12026:25240376,19986059:201195 -k1,12026:27009193,19986059:201196 -k1,12026:29243970,19986059:201195 -k1,12026:30061204,19986059:201196 -k1,12026:31465640,19986059:201195 -k1,12027:32583029,19986059:0 -) -(1,12027:6630773,20851139:25952256,473825,7863 -k1,12027:32583028,20851139:24632360 -g1,12027:32583028,20851139 -) -v1,12029:6630773,21535994:0,393216,0 -(1,12042:6630773,26669062:25952256,5526284,196608 -g1,12042:6630773,26669062 -g1,12042:6630773,26669062 -g1,12042:6434165,26669062 -(1,12042:6434165,26669062:0,5526284,196608 -r1,12083:32779637,26669062:26345472,5722892,196608 -k1,12042:6434165,26669062:-26345472 -) -(1,12042:6434165,26669062:26345472,5526284,196608 -[1,12042:6630773,26669062:25952256,5329676,0 -(1,12031:6630773,21637759:25952256,298373,6605 -(1,12030:6630773,21637759:0,0,0 -g1,12030:6630773,21637759 -g1,12030:6630773,21637759 -g1,12030:6303093,21637759 -(1,12030:6303093,21637759:0,0,0 -) -g1,12030:6630773,21637759 -) -h1,12031:7626635,21637759:0,0,0 -k1,12031:32583029,21637759:24956394 -g1,12031:32583029,21637759 -) -(1,12041:6630773,22453686:25952256,431045,86428 -(1,12033:6630773,22453686:0,0,0 -g1,12033:6630773,22453686 -g1,12033:6630773,22453686 -g1,12033:6303093,22453686 -(1,12033:6303093,22453686:0,0,0 -) -g1,12033:6630773,22453686 -) -g1,12041:7626635,22453686 -g1,12041:11610082,22453686 -g1,12041:13601806,22453686 -g1,12041:14265714,22453686 -g1,12041:16589392,22453686 -h1,12041:16921346,22453686:0,0,0 -k1,12041:32583029,22453686:15661683 -g1,12041:32583029,22453686 -) -(1,12041:6630773,23138541:25952256,431045,79822 -h1,12041:6630773,23138541:0,0,0 -g1,12041:7626635,23138541 -g1,12041:7958589,23138541 -g1,12041:8954451,23138541 -g1,12041:11610083,23138541 -h1,12041:11942037,23138541:0,0,0 -k1,12041:32583029,23138541:20640992 -g1,12041:32583029,23138541 -) -(1,12041:6630773,23823396:25952256,424439,79822 -h1,12041:6630773,23823396:0,0,0 -g1,12041:7626635,23823396 -g1,12041:7958589,23823396 -g1,12041:8290543,23823396 -g1,12041:8622497,23823396 -g1,12041:9286405,23823396 -g1,12041:10282267,23823396 -h1,12041:13601806,23823396:0,0,0 -k1,12041:32583030,23823396:18981224 -g1,12041:32583030,23823396 -) -(1,12041:6630773,24508251:25952256,424439,79822 -h1,12041:6630773,24508251:0,0,0 -g1,12041:7626635,24508251 -g1,12041:7958589,24508251 -h1,12041:8290543,24508251:0,0,0 -k1,12041:32583029,24508251:24292486 -g1,12041:32583029,24508251 -) -(1,12041:6630773,25193106:25952256,424439,112852 -h1,12041:6630773,25193106:0,0,0 -g1,12041:7626635,25193106 -g1,12041:7958589,25193106 -h1,12041:15261575,25193106:0,0,0 -k1,12041:32583029,25193106:17321454 -g1,12041:32583029,25193106 -) -(1,12041:6630773,25877961:25952256,424439,79822 -h1,12041:6630773,25877961:0,0,0 -g1,12041:7626635,25877961 -h1,12041:7958589,25877961:0,0,0 -k1,12041:32583029,25877961:24624440 -g1,12041:32583029,25877961 -) -(1,12041:6630773,26562816:25952256,424439,106246 -h1,12041:6630773,26562816:0,0,0 -g1,12041:7626635,26562816 -g1,12041:11278128,26562816 -k1,12041:11278128,26562816:0 -h1,12041:17585253,26562816:0,0,0 -k1,12041:32583029,26562816:14997776 -g1,12041:32583029,26562816 -) -] -) -g1,12042:32583029,26669062 -g1,12042:6630773,26669062 -g1,12042:6630773,26669062 -g1,12042:32583029,26669062 -g1,12042:32583029,26669062 -) -h1,12042:6630773,26865670:0,0,0 -(1,12046:6630773,27730750:25952256,513147,126483 -h1,12045:6630773,27730750:983040,0,0 -g1,12045:9448165,27730750 -g1,12045:10515746,27730750 -g1,12045:12297014,27730750 -g1,12045:13515328,27730750 -g1,12045:16796715,27730750 -g1,12045:17663100,27730750 -g1,12045:18781144,27730750 -g1,12045:21823980,27730750 -g1,12045:24972984,27730750 -g1,12045:27867709,27730750 -(1,12045:27867709,27730750:0,452978,115847 -r1,12083:29281110,27730750:1413401,568825,115847 -k1,12045:27867709,27730750:-1413401 -) -(1,12045:27867709,27730750:1413401,452978,115847 -k1,12045:27867709,27730750:3277 -h1,12045:29277833,27730750:0,411205,112570 -) -k1,12046:32583029,27730750:3249491 -g1,12046:32583029,27730750 -) -v1,12048:6630773,28415605:0,393216,0 -(1,12059:6630773,32305029:25952256,4282640,196608 -g1,12059:6630773,32305029 -g1,12059:6630773,32305029 -g1,12059:6434165,32305029 -(1,12059:6434165,32305029:0,4282640,196608 -r1,12083:32779637,32305029:26345472,4479248,196608 -k1,12059:6434165,32305029:-26345472 -) -(1,12059:6434165,32305029:26345472,4282640,196608 -[1,12059:6630773,32305029:25952256,4086032,0 -(1,12050:6630773,28643436:25952256,424439,6605 -(1,12049:6630773,28643436:0,0,0 -g1,12049:6630773,28643436 -g1,12049:6630773,28643436 -g1,12049:6303093,28643436 -(1,12049:6303093,28643436:0,0,0 -) -g1,12049:6630773,28643436 -) -h1,12050:7294681,28643436:0,0,0 -k1,12050:32583029,28643436:25288348 -g1,12050:32583029,28643436 -) -(1,12058:6630773,29459363:25952256,431045,86428 -(1,12052:6630773,29459363:0,0,0 -g1,12052:6630773,29459363 -g1,12052:6630773,29459363 -g1,12052:6303093,29459363 -(1,12052:6303093,29459363:0,0,0 -) -g1,12052:6630773,29459363 -) -g1,12058:7626635,29459363 -g1,12058:10614220,29459363 -g1,12058:11942036,29459363 -g1,12058:13933760,29459363 -g1,12058:14597668,29459363 -h1,12058:16589392,29459363:0,0,0 -k1,12058:32583029,29459363:15993637 -g1,12058:32583029,29459363 -) -(1,12058:6630773,30144218:25952256,431045,106246 -h1,12058:6630773,30144218:0,0,0 -g1,12058:7626635,30144218 -g1,12058:11610082,30144218 -g1,12058:16257437,30144218 -g1,12058:17253299,30144218 -g1,12058:21900654,30144218 -g1,12058:22564562,30144218 -g1,12058:24224332,30144218 -k1,12058:24224332,30144218:0 -h1,12058:28539733,30144218:0,0,0 -k1,12058:32583029,30144218:4043296 -g1,12058:32583029,30144218 -) -(1,12058:6630773,30829073:25952256,424439,79822 -h1,12058:6630773,30829073:0,0,0 -g1,12058:7626635,30829073 -g1,12058:7958589,30829073 -g1,12058:8290543,30829073 -g1,12058:8622497,30829073 -g1,12058:8954451,30829073 -g1,12058:10946175,30829073 -g1,12058:11610083,30829073 -h1,12058:13933761,30829073:0,0,0 -k1,12058:32583029,30829073:18649268 -g1,12058:32583029,30829073 -) -(1,12058:6630773,31513928:25952256,424439,106246 -h1,12058:6630773,31513928:0,0,0 -g1,12058:7626635,31513928 -g1,12058:11278128,31513928 -k1,12058:11278128,31513928:0 -h1,12058:17585253,31513928:0,0,0 -k1,12058:32583029,31513928:14997776 -g1,12058:32583029,31513928 -) -(1,12058:6630773,32198783:25952256,424439,106246 -h1,12058:6630773,32198783:0,0,0 -g1,12058:7626635,32198783 -g1,12058:12273990,32198783 -k1,12058:12273990,32198783:0 -h1,12058:17585253,32198783:0,0,0 -k1,12058:32583029,32198783:14997776 -g1,12058:32583029,32198783 -) -] -) -g1,12059:32583029,32305029 -g1,12059:6630773,32305029 -g1,12059:6630773,32305029 -g1,12059:32583029,32305029 -g1,12059:32583029,32305029 -) -h1,12059:6630773,32501637:0,0,0 -(1,12063:6630773,33366717:25952256,513147,126483 -h1,12062:6630773,33366717:983040,0,0 -k1,12062:8708701,33366717:276999 -k1,12062:10089981,33366717:276998 -k1,12062:11114746,33366717:276999 -k1,12062:12831571,33366717:276999 -k1,12062:13721332,33366717:276999 -k1,12062:15017415,33366717:276998 -k1,12062:16477339,33366717:276999 -k1,12062:17413630,33366717:276999 -k1,12062:18709714,33366717:276999 -k1,12062:22138994,33366717:276998 -k1,12062:24112720,33366717:276999 -k1,12062:27415516,33366717:276999 -k1,12062:29979066,33366717:276999 -k1,12062:30872102,33366717:276998 -k1,12062:32168186,33366717:276999 -k1,12063:32583029,33366717:0 -) -(1,12063:6630773,34231797:25952256,513147,134348 -k1,12062:9757659,34231797:284590 -k1,12062:11517464,34231797:284590 -k1,12062:13312004,34231797:284590 -k1,12062:18118578,34231797:284590 -k1,12062:19127996,34231797:284590 -k1,12062:20697093,34231797:284591 -k1,12062:22361871,34231797:284590 -k1,12062:25058841,34231797:284590 -k1,12062:27360629,34231797:284590 -k1,12062:28598768,34231797:284590 -k1,12062:29987640,34231797:284590 -k1,12062:31558046,34231797:284590 -k1,12062:32583029,34231797:0 -) -(1,12063:6630773,35096877:25952256,513147,115847 -k1,12062:8080390,35096877:165111 -k1,12062:9264586,35096877:165111 -k1,12062:12511855,35096877:165111 -k1,12062:13344122,35096877:165111 -(1,12062:13344122,35096877:0,452978,115847 -r1,12083:14757523,35096877:1413401,568825,115847 -k1,12062:13344122,35096877:-1413401 -) -(1,12062:13344122,35096877:1413401,452978,115847 -k1,12062:13344122,35096877:3277 -h1,12062:14754246,35096877:0,411205,112570 -) -k1,12062:14922634,35096877:165111 -k1,12062:17353325,35096877:165111 -k1,12062:18134475,35096877:165112 -(1,12062:18134475,35096877:0,414482,115847 -r1,12083:23416706,35096877:5282231,530329,115847 -k1,12062:18134475,35096877:-5282231 -) -(1,12062:18134475,35096877:5282231,414482,115847 -k1,12062:18134475,35096877:3277 -h1,12062:23413429,35096877:0,411205,112570 -) -k1,12062:23581817,35096877:165111 -k1,12062:26276618,35096877:165111 -k1,12062:26899826,35096877:165111 -k1,12062:28165942,35096877:165111 -k1,12062:29841003,35096877:165111 -k1,12062:32583029,35096877:0 -) -(1,12063:6630773,35961957:25952256,513147,134348 -g1,12062:8397623,35961957 -g1,12062:11177004,35961957 -k1,12063:32583029,35961957:19487132 -g1,12063:32583029,35961957 -) -(1,12065:6630773,36827037:25952256,513147,134348 -h1,12064:6630773,36827037:983040,0,0 -k1,12064:10976730,36827037:242748 -k1,12064:12503984,36827037:242748 -k1,12064:13738292,36827037:242748 -k1,12064:15302901,36827037:242748 -k1,12064:16204942,36827037:242749 -k1,12064:17466775,36827037:242748 -k1,12064:18124322,36827037:242704 -k1,12064:21383037,36827037:242748 -k1,12064:22697954,36827037:242748 -k1,12064:24225208,36827037:242748 -k1,12064:25459517,36827037:242749 -k1,12064:26768536,36827037:242748 -k1,12064:28928212,36827037:242748 -k1,12064:30906353,36827037:242748 -k1,12064:32168186,36827037:242748 -k1,12065:32583029,36827037:0 -) -(1,12065:6630773,37692117:25952256,513147,134348 -k1,12064:9801703,37692117:154963 -k1,12064:10948225,37692117:154962 -k1,12064:12970964,37692117:154963 -k1,12064:16350298,37692117:154963 -k1,12064:17696705,37692117:154962 -k1,12064:19360307,37692117:154963 -k1,12064:20605133,37692117:154962 -k1,12064:23842254,37692117:154963 -k1,12064:26167769,37692117:154963 -k1,12064:27070497,37692117:154962 -k1,12064:30024503,37692117:154963 -k1,12064:32583029,37692117:0 -) -(1,12065:6630773,38557197:25952256,513147,115847 -g1,12064:8338641,38557197 -g1,12064:10275885,38557197 -g1,12064:11801563,38557197 -(1,12064:11801563,38557197:0,452978,115847 -r1,12083:13566676,38557197:1765113,568825,115847 -k1,12064:11801563,38557197:-1765113 -) -(1,12064:11801563,38557197:1765113,452978,115847 -k1,12064:11801563,38557197:3277 -h1,12064:13563399,38557197:0,411205,112570 -) -g1,12064:13765905,38557197 -g1,12064:16346712,38557197 -g1,12064:18401265,38557197 -g1,12064:19791939,38557197 -(1,12064:19791939,38557197:0,452978,115847 -r1,12083:20501917,38557197:709978,568825,115847 -k1,12064:19791939,38557197:-709978 -) -(1,12064:19791939,38557197:709978,452978,115847 -k1,12064:19791939,38557197:3277 -h1,12064:20498640,38557197:0,411205,112570 -) -g1,12064:20874816,38557197 -g1,12064:22467996,38557197 -(1,12064:22467996,38557197:0,452978,115847 -r1,12083:24584821,38557197:2116825,568825,115847 -k1,12064:22467996,38557197:-2116825 -) -(1,12064:22467996,38557197:2116825,452978,115847 -k1,12064:22467996,38557197:3277 -h1,12064:24581544,38557197:0,411205,112570 -) -g1,12064:24784050,38557197 -k1,12065:32583029,38557197:5671025 -g1,12065:32583029,38557197 -) -v1,12067:6630773,39242052:0,393216,0 -(1,12074:6630773,40365632:25952256,1516796,196608 -g1,12074:6630773,40365632 -g1,12074:6630773,40365632 -g1,12074:6434165,40365632 -(1,12074:6434165,40365632:0,1516796,196608 -r1,12083:32779637,40365632:26345472,1713404,196608 -k1,12074:6434165,40365632:-26345472 -) -(1,12074:6434165,40365632:26345472,1516796,196608 -[1,12074:6630773,40365632:25952256,1320188,0 -(1,12069:6630773,39469883:25952256,424439,6605 -(1,12068:6630773,39469883:0,0,0 -g1,12068:6630773,39469883 -g1,12068:6630773,39469883 -g1,12068:6303093,39469883 -(1,12068:6303093,39469883:0,0,0 -) -g1,12068:6630773,39469883 -) -h1,12069:7958589,39469883:0,0,0 -k1,12069:32583029,39469883:24624440 -g1,12069:32583029,39469883 -) -(1,12073:6630773,40285810:25952256,431045,79822 -(1,12071:6630773,40285810:0,0,0 -g1,12071:6630773,40285810 -g1,12071:6630773,40285810 -g1,12071:6303093,40285810 -(1,12071:6303093,40285810:0,0,0 -) -g1,12071:6630773,40285810 -) -g1,12073:7626635,40285810 -g1,12073:10614220,40285810 -g1,12073:12605944,40285810 -g1,12073:12937898,40285810 -h1,12073:18913069,40285810:0,0,0 -k1,12073:32583029,40285810:13669960 -g1,12073:32583029,40285810 -) -] -) -g1,12074:32583029,40365632 -g1,12074:6630773,40365632 -g1,12074:6630773,40365632 -g1,12074:32583029,40365632 -g1,12074:32583029,40365632 -) -h1,12074:6630773,40562240:0,0,0 -(1,12077:6630773,42679058:25952256,534184,139132 -(1,12077:6630773,42679058:2450326,534184,12975 -g1,12077:6630773,42679058 -g1,12077:9081099,42679058 -) -k1,12077:32583030,42679058:19872940 -g1,12077:32583030,42679058 -) -(1,12081:6630773,43937354:25952256,513147,134348 -k1,12080:10031032,43937354:208656 -k1,12080:11231249,43937354:208657 -k1,12080:14465702,43937354:208656 -k1,12080:15958865,43937354:208657 -k1,12080:17260006,43937354:208656 -k1,12080:17824523,43937354:208657 -k1,12080:20795522,43937354:208656 -k1,12080:23088224,43937354:208657 -k1,12080:24244531,43937354:208656 -k1,12080:26191203,43937354:208657 -k1,12080:28441305,43937354:208656 -k1,12080:29127719,43937354:208657 -k1,12080:30845014,43937354:208656 -k1,12080:32583029,43937354:0 -) -(1,12081:6630773,44802434:25952256,513147,126483 -k1,12080:7331958,44802434:169688 -k1,12080:10295446,44802434:169688 -k1,12080:11081171,44802434:169687 -k1,12080:12733283,44802434:169688 -k1,12080:14417508,44802434:169688 -k1,12080:15967384,44802434:169688 -k1,12080:17241353,44802434:169687 -k1,12080:18158807,44802434:169688 -k1,12080:20196271,44802434:169688 -k1,12080:21052121,44802434:169688 -k1,12080:23946795,44802434:169687 -k1,12080:27315951,44802434:169688 -k1,12080:29506114,44802434:169688 -k1,12080:32583029,44802434:0 -) -(1,12081:6630773,45667514:25952256,513147,126483 -k1,12080:7951027,45667514:174029 -(1,12080:7951027,45667514:0,414482,115847 -r1,12083:8309293,45667514:358266,530329,115847 -k1,12080:7951027,45667514:-358266 -) -(1,12080:7951027,45667514:358266,414482,115847 -k1,12080:7951027,45667514:3277 -h1,12080:8306016,45667514:0,411205,112570 -) -k1,12080:8483322,45667514:174029 -k1,12080:10132566,45667514:174029 -k1,12080:11479034,45667514:174029 -k1,12080:13781672,45667514:174029 -k1,12080:17740405,45667514:174029 -k1,12080:19105878,45667514:174028 -k1,12080:21114915,45667514:174029 -k1,12080:24365859,45667514:174029 -k1,12080:25686113,45667514:174029 -k1,12080:27695150,45667514:174029 -(1,12080:27695150,45667514:0,414482,115847 -r1,12083:28053416,45667514:358266,530329,115847 -k1,12080:27695150,45667514:-358266 -) -(1,12080:27695150,45667514:358266,414482,115847 -k1,12080:27695150,45667514:3277 -h1,12080:28050139,45667514:0,411205,112570 -) -k1,12080:28227445,45667514:174029 -k1,12080:29876689,45667514:174029 -k1,12080:31426319,45667514:174029 -k1,12080:32583029,45667514:0 -) -] -(1,12083:32583029,45706769:0,0,0 -g1,12083:32583029,45706769 -) -) -] -(1,12083:6630773,47279633:25952256,0,0 -h1,12083:6630773,47279633:25952256,0,0 -) -] -(1,12083:4262630,4025873:0,0,0 -[1,12083:-473656,4025873:0,0,0 -(1,12083:-473656,-710413:0,0,0 -(1,12083:-473656,-710413:0,0,0 -g1,12083:-473656,-710413 -) -g1,12083:-473656,-710413 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 +) +] +) +) +) +] +[1,12082:3078558,4812305:0,0,0 +(1,12082:3078558,49800853:0,16384,2228224 +g1,12082:29030814,49800853 +g1,12082:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12082:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12082:37855564,49800853:1179648,16384,0 +) +) +k1,12082:3078556,49800853:-34777008 +) +] +g1,12082:6630773,4812305 +g1,12082:6630773,4812305 +g1,12082:9499939,4812305 +g1,12082:12696785,4812305 +g1,12082:14106464,4812305 +g1,12082:17459285,4812305 +k1,12082:31387652,4812305:13928367 +) +) +] +[1,12082:6630773,45706769:25952256,40108032,0 +(1,12082:6630773,45706769:25952256,40108032,0 +(1,12082:6630773,45706769:0,0,0 +g1,12082:6630773,45706769 +) +[1,12082:6630773,45706769:25952256,40108032,0 +v1,12008:6630773,6254097:0,393216,0 +(1,12008:6630773,9009531:25952256,3148650,196608 +g1,12008:6630773,9009531 +g1,12008:6630773,9009531 +g1,12008:6434165,9009531 +(1,12008:6434165,9009531:0,3148650,196608 +r1,12082:32779637,9009531:26345472,3345258,196608 +k1,12008:6434165,9009531:-26345472 +) +(1,12008:6434165,9009531:26345472,3148650,196608 +[1,12008:6630773,9009531:25952256,2952042,0 +(1,11997:6630773,6481928:25952256,424439,79822 +(1,11996:6630773,6481928:0,0,0 +g1,11996:6630773,6481928 +g1,11996:6630773,6481928 +g1,11996:6303093,6481928 +(1,11996:6303093,6481928:0,0,0 +) +g1,11996:6630773,6481928 +) +k1,11997:6630773,6481928:0 +g1,11997:8622497,6481928 +g1,11997:9286405,6481928 +h1,11997:10946175,6481928:0,0,0 +k1,11997:32583029,6481928:21636854 +g1,11997:32583029,6481928 +) +(1,12001:6630773,7297855:25952256,424439,79822 +(1,11999:6630773,7297855:0,0,0 +g1,11999:6630773,7297855 +g1,11999:6630773,7297855 +g1,11999:6303093,7297855 +(1,11999:6303093,7297855:0,0,0 +) +g1,11999:6630773,7297855 +) +g1,12001:7626635,7297855 +g1,12001:8954451,7297855 +h1,12001:9618359,7297855:0,0,0 +k1,12001:32583029,7297855:22964670 +g1,12001:32583029,7297855 +) +(1,12003:6630773,8113782:25952256,424439,86428 +(1,12002:6630773,8113782:0,0,0 +g1,12002:6630773,8113782 +g1,12002:6630773,8113782 +g1,12002:6303093,8113782 +(1,12002:6303093,8113782:0,0,0 +) +g1,12002:6630773,8113782 +) +k1,12003:6630773,8113782:0 +g1,12003:8622497,8113782 +g1,12003:9286405,8113782 +g1,12003:11278129,8113782 +g1,12003:13269853,8113782 +g1,12003:13933761,8113782 +h1,12003:15593531,8113782:0,0,0 +k1,12003:32583029,8113782:16989498 +g1,12003:32583029,8113782 +) +(1,12007:6630773,8929709:25952256,424439,79822 +(1,12005:6630773,8929709:0,0,0 +g1,12005:6630773,8929709 +g1,12005:6630773,8929709 +g1,12005:6303093,8929709 +(1,12005:6303093,8929709:0,0,0 +) +g1,12005:6630773,8929709 +) +g1,12007:7626635,8929709 +g1,12007:8954451,8929709 +h1,12007:11610082,8929709:0,0,0 +k1,12007:32583030,8929709:20972948 +g1,12007:32583030,8929709 +) +] +) +g1,12008:32583029,9009531 +g1,12008:6630773,9009531 +g1,12008:6630773,9009531 +g1,12008:32583029,9009531 +g1,12008:32583029,9009531 +) +h1,12008:6630773,9206139:0,0,0 +(1,12012:6630773,10071219:25952256,513147,134348 +h1,12011:6630773,10071219:983040,0,0 +k1,12011:8188434,10071219:159778 +k1,12011:9841161,10071219:159817 +k1,12011:11067249,10071219:159817 +k1,12011:13657141,10071219:159817 +k1,12011:14172818,10071219:159817 +k1,12011:17028130,10071219:159816 +k1,12011:18135598,10071219:159817 +k1,12011:21139022,10071219:159817 +k1,12011:23079452,10071219:159817 +k1,12011:23964097,10071219:159817 +k1,12011:25142999,10071219:159817 +k1,12011:27998312,10071219:159817 +k1,12011:30013453,10071219:159817 +k1,12011:30704767,10071219:159817 +k1,12012:32583029,10071219:0 +) +(1,12012:6630773,10936299:25952256,513147,134348 +k1,12011:7926092,10936299:168100 +k1,12011:10245083,10936299:168099 +k1,12011:11213378,10936299:168100 +k1,12011:12762322,10936299:168100 +k1,12011:15740605,10936299:168099 +k1,12011:16440202,10936299:168100 +k1,12011:19889034,10936299:168100 +k1,12011:21451084,10936299:168099 +k1,12011:22903690,10936299:168100 +k1,12011:23731082,10936299:168100 +k1,12011:27721896,10936299:168099 +k1,12011:30092006,10936299:168100 +k1,12011:32583029,10936299:0 +) +(1,12012:6630773,11801379:25952256,513147,126483 +g1,12011:10029470,11801379 +g1,12011:11182248,11801379 +g1,12011:12856692,11801379 +g1,12011:15021346,11801379 +g1,12011:15576435,11801379 +g1,12011:17058859,11801379 +g1,12011:18882726,11801379 +g1,12011:19733383,11801379 +g1,12011:20951697,11801379 +g1,12011:21565769,11801379 +g1,12011:25231853,11801379 +g1,12011:28215051,11801379 +g1,12011:29065708,11801379 +k1,12012:32583029,11801379:2719748 +g1,12012:32583029,11801379 +) +(1,12014:6630773,12666459:25952256,513147,134348 +h1,12013:6630773,12666459:983040,0,0 +k1,12013:8374634,12666459:132986 +k1,12013:9526705,12666459:132986 +k1,12013:12741848,12666459:132985 +k1,12013:13541990,12666459:132986 +(1,12013:13541990,12666459:0,452978,115847 +r1,12082:15307103,12666459:1765113,568825,115847 +k1,12013:13541990,12666459:-1765113 +) +(1,12013:13541990,12666459:1765113,452978,115847 +k1,12013:13541990,12666459:3277 +h1,12013:15303826,12666459:0,411205,112570 +) +k1,12013:15440089,12666459:132986 +k1,12013:16441427,12666459:132986 +k1,12013:17508955,12666459:132985 +k1,12013:17997801,12666459:132986 +k1,12013:20396367,12666459:132986 +k1,12013:23601681,12666459:132986 +k1,12013:24682317,12666459:132985 +k1,12013:28096035,12666459:132986 +(1,12013:28096035,12666459:0,452978,115847 +r1,12082:30564572,12666459:2468537,568825,115847 +k1,12013:28096035,12666459:-2468537 +) +(1,12013:28096035,12666459:2468537,452978,115847 +k1,12013:28096035,12666459:3277 +h1,12013:30561295,12666459:0,411205,112570 +) +k1,12013:30697558,12666459:132986 +k1,12013:32583029,12666459:0 +) +(1,12014:6630773,13531539:25952256,505283,134348 +g1,12013:7361499,13531539 +g1,12013:9073954,13531539 +g1,12013:11315940,13531539 +g1,12013:12534254,13531539 +g1,12013:14114327,13531539 +g1,12013:17210903,13531539 +g1,12013:19524979,13531539 +g1,12013:20494911,13531539 +g1,12013:23766468,13531539 +g1,12013:24617125,13531539 +g1,12013:26019595,13531539 +k1,12014:32583029,13531539:3230273 +g1,12014:32583029,13531539 +) +v1,12020:6630773,14396619:0,393216,0 +(1,12021:6630773,15660659:25952256,1657256,0 +g1,12021:6630773,15660659 +g1,12021:6237557,15660659 +r1,12082:6368629,15660659:131072,1657256,0 +g1,12021:6567858,15660659 +g1,12021:6764466,15660659 +[1,12021:6764466,15660659:25818563,1657256,0 +(1,12021:6764466,14669096:25818563,665693,196608 +(1,12020:6764466,14669096:0,665693,196608 +r1,12082:7868133,14669096:1103667,862301,196608 +k1,12020:6764466,14669096:-1103667 +) +(1,12020:6764466,14669096:1103667,665693,196608 +) +k1,12020:8067343,14669096:199210 +k1,12020:9385272,14669096:327680 +k1,12020:11627895,14669096:199210 +k1,12020:13285936,14669096:199210 +k1,12020:14815528,14669096:199211 +k1,12020:17710234,14669096:199210 +k1,12020:18560872,14669096:199210 +k1,12020:21568300,14669096:199210 +k1,12020:22786595,14669096:199210 +k1,12020:24723820,14669096:199210 +k1,12020:25539068,14669096:199210 +k1,12020:26094139,14669096:199211 +k1,12020:28495359,14669096:199210 +k1,12020:29932544,14669096:199210 +k1,12020:30817916,14669096:199210 +(1,12020:30817916,14669096:0,452978,115847 +r1,12082:32583029,14669096:1765113,568825,115847 +k1,12020:30817916,14669096:-1765113 +) +(1,12020:30817916,14669096:1765113,452978,115847 +k1,12020:30817916,14669096:3277 +h1,12020:32579752,14669096:0,411205,112570 +) +k1,12020:32583029,14669096:0 +) +(1,12021:6764466,15534176:25818563,513147,126483 +g1,12020:8144654,15534176 +g1,12020:10725461,15534176 +g1,12020:12953685,15534176 +g1,12020:14704807,15534176 +g1,12020:17599532,15534176 +(1,12020:17599532,15534176:0,452978,115847 +r1,12082:19364645,15534176:1765113,568825,115847 +k1,12020:17599532,15534176:-1765113 +) +(1,12020:17599532,15534176:1765113,452978,115847 +k1,12020:17599532,15534176:3277 +h1,12020:19361368,15534176:0,411205,112570 +) +g1,12020:19563874,15534176 +g1,12020:21531920,15534176 +g1,12020:22478915,15534176 +g1,12020:23337436,15534176 +k1,12021:32583029,15534176:7805112 +g1,12021:32583029,15534176 +) +] +g1,12021:32583029,15660659 +) +h1,12021:6630773,15660659:0,0,0 +(1,12024:6630773,16525739:25952256,513147,126483 +h1,12023:6630773,16525739:983040,0,0 +k1,12023:9929987,16525739:220988 +k1,12023:10921677,16525739:220987 +k1,12023:14756320,16525739:220988 +k1,12023:15333167,16525739:220987 +k1,12023:18249651,16525739:220988 +k1,12023:20208653,16525739:220987 +k1,12023:23182808,16525739:220988 +k1,12023:24165323,16525739:220987 +k1,12023:28240483,16525739:220988 +k1,12023:28992967,16525739:220987 +k1,12023:32583029,16525739:0 +) +(1,12024:6630773,17390819:25952256,513147,102891 +k1,12023:7539364,17390819:222429 +k1,12023:8117653,17390819:222429 +k1,12023:9439777,17390819:222430 +k1,12023:10313634,17390819:222429 +k1,12023:11555148,17390819:222429 +k1,12023:14646743,17390819:222429 +k1,12023:16558690,17390819:222429 +k1,12023:17800205,17390819:222430 +k1,12023:19414619,17390819:222429 +k1,12023:21375063,17390819:222429 +k1,12023:22256784,17390819:222429 +k1,12023:22835073,17390819:222429 +k1,12023:25926669,17390819:222430 +k1,12023:28490044,17390819:222429 +k1,12023:29500871,17390819:222429 +k1,12023:32583029,17390819:0 +) +(1,12024:6630773,18255899:25952256,513147,134348 +k1,12023:9853469,18255899:268333 +k1,12023:10773230,18255899:268333 +k1,12023:12173371,18255899:268334 +k1,12023:14143674,18255899:268333 +k1,12023:14826781,18255899:268264 +k1,12023:17435405,18255899:268333 +k1,12023:18181495,18255899:268333 +k1,12023:19468913,18255899:268333 +k1,12023:21475262,18255899:268334 +k1,12023:22275092,18255899:268333 +k1,12023:24966291,18255899:268333 +k1,12023:25920786,18255899:268333 +k1,12023:26544979,18255899:268333 +k1,12023:29999673,18255899:268334 +k1,12023:30880768,18255899:268333 +k1,12023:32168186,18255899:268333 +k1,12024:32583029,18255899:0 +) +(1,12024:6630773,19120979:25952256,505283,126483 +g1,12023:9423917,19120979 +g1,12023:10411544,19120979 +g1,12023:12291116,19120979 +g1,12023:13021842,19120979 +k1,12024:32583029,19120979:17158638 +g1,12024:32583029,19120979 +) +(1,12026:6630773,19986059:25952256,513147,126483 +h1,12025:6630773,19986059:983040,0,0 +k1,12025:8768557,19986059:201195 +k1,12025:10275886,19986059:201196 +k1,12025:12059120,19986059:201195 +k1,12025:15680640,19986059:201196 +k1,12025:16900920,19986059:201195 +k1,12025:20184274,19986059:201196 +k1,12025:21044761,19986059:201195 +k1,12025:22343685,19986059:201196 +k1,12025:25240376,19986059:201195 +k1,12025:27009193,19986059:201196 +k1,12025:29243970,19986059:201195 +k1,12025:30061204,19986059:201196 +k1,12025:31465640,19986059:201195 +k1,12026:32583029,19986059:0 +) +(1,12026:6630773,20851139:25952256,473825,7863 +k1,12026:32583028,20851139:24632360 +g1,12026:32583028,20851139 +) +v1,12028:6630773,21535994:0,393216,0 +(1,12041:6630773,26669062:25952256,5526284,196608 +g1,12041:6630773,26669062 +g1,12041:6630773,26669062 +g1,12041:6434165,26669062 +(1,12041:6434165,26669062:0,5526284,196608 +r1,12082:32779637,26669062:26345472,5722892,196608 +k1,12041:6434165,26669062:-26345472 +) +(1,12041:6434165,26669062:26345472,5526284,196608 +[1,12041:6630773,26669062:25952256,5329676,0 +(1,12030:6630773,21637759:25952256,298373,6605 +(1,12029:6630773,21637759:0,0,0 +g1,12029:6630773,21637759 +g1,12029:6630773,21637759 +g1,12029:6303093,21637759 +(1,12029:6303093,21637759:0,0,0 +) +g1,12029:6630773,21637759 +) +h1,12030:7626635,21637759:0,0,0 +k1,12030:32583029,21637759:24956394 +g1,12030:32583029,21637759 +) +(1,12040:6630773,22453686:25952256,431045,86428 +(1,12032:6630773,22453686:0,0,0 +g1,12032:6630773,22453686 +g1,12032:6630773,22453686 +g1,12032:6303093,22453686 +(1,12032:6303093,22453686:0,0,0 +) +g1,12032:6630773,22453686 +) +g1,12040:7626635,22453686 +g1,12040:11610082,22453686 +g1,12040:13601806,22453686 +g1,12040:14265714,22453686 +g1,12040:16589392,22453686 +h1,12040:16921346,22453686:0,0,0 +k1,12040:32583029,22453686:15661683 +g1,12040:32583029,22453686 +) +(1,12040:6630773,23138541:25952256,431045,79822 +h1,12040:6630773,23138541:0,0,0 +g1,12040:7626635,23138541 +g1,12040:7958589,23138541 +g1,12040:8954451,23138541 +g1,12040:11610083,23138541 +h1,12040:11942037,23138541:0,0,0 +k1,12040:32583029,23138541:20640992 +g1,12040:32583029,23138541 +) +(1,12040:6630773,23823396:25952256,424439,79822 +h1,12040:6630773,23823396:0,0,0 +g1,12040:7626635,23823396 +g1,12040:7958589,23823396 +g1,12040:8290543,23823396 +g1,12040:8622497,23823396 +g1,12040:9286405,23823396 +g1,12040:10282267,23823396 +h1,12040:13601806,23823396:0,0,0 +k1,12040:32583030,23823396:18981224 +g1,12040:32583030,23823396 +) +(1,12040:6630773,24508251:25952256,424439,79822 +h1,12040:6630773,24508251:0,0,0 +g1,12040:7626635,24508251 +g1,12040:7958589,24508251 +h1,12040:8290543,24508251:0,0,0 +k1,12040:32583029,24508251:24292486 +g1,12040:32583029,24508251 +) +(1,12040:6630773,25193106:25952256,424439,112852 +h1,12040:6630773,25193106:0,0,0 +g1,12040:7626635,25193106 +g1,12040:7958589,25193106 +h1,12040:15261575,25193106:0,0,0 +k1,12040:32583029,25193106:17321454 +g1,12040:32583029,25193106 +) +(1,12040:6630773,25877961:25952256,424439,79822 +h1,12040:6630773,25877961:0,0,0 +g1,12040:7626635,25877961 +h1,12040:7958589,25877961:0,0,0 +k1,12040:32583029,25877961:24624440 +g1,12040:32583029,25877961 +) +(1,12040:6630773,26562816:25952256,431045,106246 +h1,12040:6630773,26562816:0,0,0 +g1,12040:7626635,26562816 +g1,12040:11278128,26562816 +k1,12040:11278128,26562816:0 +h1,12040:17585253,26562816:0,0,0 +k1,12040:32583029,26562816:14997776 +g1,12040:32583029,26562816 +) +] +) +g1,12041:32583029,26669062 +g1,12041:6630773,26669062 +g1,12041:6630773,26669062 +g1,12041:32583029,26669062 +g1,12041:32583029,26669062 +) +h1,12041:6630773,26865670:0,0,0 +(1,12045:6630773,27730750:25952256,513147,126483 +h1,12044:6630773,27730750:983040,0,0 +g1,12044:9448165,27730750 +g1,12044:10515746,27730750 +g1,12044:12297014,27730750 +g1,12044:13515328,27730750 +g1,12044:16796715,27730750 +g1,12044:17663100,27730750 +g1,12044:18781144,27730750 +g1,12044:21823980,27730750 +g1,12044:24972984,27730750 +g1,12044:27867709,27730750 +(1,12044:27867709,27730750:0,452978,115847 +r1,12082:29281110,27730750:1413401,568825,115847 +k1,12044:27867709,27730750:-1413401 +) +(1,12044:27867709,27730750:1413401,452978,115847 +k1,12044:27867709,27730750:3277 +h1,12044:29277833,27730750:0,411205,112570 +) +k1,12045:32583029,27730750:3249491 +g1,12045:32583029,27730750 +) +v1,12047:6630773,28415605:0,393216,0 +(1,12058:6630773,32305029:25952256,4282640,196608 +g1,12058:6630773,32305029 +g1,12058:6630773,32305029 +g1,12058:6434165,32305029 +(1,12058:6434165,32305029:0,4282640,196608 +r1,12082:32779637,32305029:26345472,4479248,196608 +k1,12058:6434165,32305029:-26345472 +) +(1,12058:6434165,32305029:26345472,4282640,196608 +[1,12058:6630773,32305029:25952256,4086032,0 +(1,12049:6630773,28643436:25952256,424439,6605 +(1,12048:6630773,28643436:0,0,0 +g1,12048:6630773,28643436 +g1,12048:6630773,28643436 +g1,12048:6303093,28643436 +(1,12048:6303093,28643436:0,0,0 +) +g1,12048:6630773,28643436 +) +h1,12049:7294681,28643436:0,0,0 +k1,12049:32583029,28643436:25288348 +g1,12049:32583029,28643436 +) +(1,12057:6630773,29459363:25952256,431045,86428 +(1,12051:6630773,29459363:0,0,0 +g1,12051:6630773,29459363 +g1,12051:6630773,29459363 +g1,12051:6303093,29459363 +(1,12051:6303093,29459363:0,0,0 +) +g1,12051:6630773,29459363 +) +g1,12057:7626635,29459363 +g1,12057:10614220,29459363 +g1,12057:11942036,29459363 +g1,12057:13933760,29459363 +g1,12057:14597668,29459363 +h1,12057:16589392,29459363:0,0,0 +k1,12057:32583029,29459363:15993637 +g1,12057:32583029,29459363 +) +(1,12057:6630773,30144218:25952256,431045,106246 +h1,12057:6630773,30144218:0,0,0 +g1,12057:7626635,30144218 +g1,12057:11610082,30144218 +g1,12057:16257437,30144218 +g1,12057:17253299,30144218 +g1,12057:21900654,30144218 +g1,12057:22564562,30144218 +g1,12057:24224332,30144218 +k1,12057:24224332,30144218:0 +h1,12057:28539733,30144218:0,0,0 +k1,12057:32583029,30144218:4043296 +g1,12057:32583029,30144218 +) +(1,12057:6630773,30829073:25952256,424439,79822 +h1,12057:6630773,30829073:0,0,0 +g1,12057:7626635,30829073 +g1,12057:7958589,30829073 +g1,12057:8290543,30829073 +g1,12057:8622497,30829073 +g1,12057:8954451,30829073 +g1,12057:10946175,30829073 +g1,12057:11610083,30829073 +h1,12057:13933761,30829073:0,0,0 +k1,12057:32583029,30829073:18649268 +g1,12057:32583029,30829073 +) +(1,12057:6630773,31513928:25952256,431045,106246 +h1,12057:6630773,31513928:0,0,0 +g1,12057:7626635,31513928 +g1,12057:11278128,31513928 +k1,12057:11278128,31513928:0 +h1,12057:17585253,31513928:0,0,0 +k1,12057:32583029,31513928:14997776 +g1,12057:32583029,31513928 +) +(1,12057:6630773,32198783:25952256,424439,106246 +h1,12057:6630773,32198783:0,0,0 +g1,12057:7626635,32198783 +g1,12057:12273990,32198783 +k1,12057:12273990,32198783:0 +h1,12057:17585253,32198783:0,0,0 +k1,12057:32583029,32198783:14997776 +g1,12057:32583029,32198783 +) +] +) +g1,12058:32583029,32305029 +g1,12058:6630773,32305029 +g1,12058:6630773,32305029 +g1,12058:32583029,32305029 +g1,12058:32583029,32305029 +) +h1,12058:6630773,32501637:0,0,0 +(1,12062:6630773,33366717:25952256,513147,126483 +h1,12061:6630773,33366717:983040,0,0 +k1,12061:8708701,33366717:276999 +k1,12061:10089981,33366717:276998 +k1,12061:11114746,33366717:276999 +k1,12061:12831571,33366717:276999 +k1,12061:13721332,33366717:276999 +k1,12061:15017415,33366717:276998 +k1,12061:16477339,33366717:276999 +k1,12061:17413630,33366717:276999 +k1,12061:18709714,33366717:276999 +k1,12061:22138994,33366717:276998 +k1,12061:24112720,33366717:276999 +k1,12061:27415516,33366717:276999 +k1,12061:29979066,33366717:276999 +k1,12061:30872102,33366717:276998 +k1,12061:32168186,33366717:276999 +k1,12062:32583029,33366717:0 +) +(1,12062:6630773,34231797:25952256,513147,134348 +k1,12061:9757659,34231797:284590 +k1,12061:11517464,34231797:284590 +k1,12061:13312004,34231797:284590 +k1,12061:18118578,34231797:284590 +k1,12061:19127996,34231797:284590 +k1,12061:20697093,34231797:284591 +k1,12061:22361871,34231797:284590 +k1,12061:25058841,34231797:284590 +k1,12061:27360629,34231797:284590 +k1,12061:28598768,34231797:284590 +k1,12061:29987640,34231797:284590 +k1,12061:31558046,34231797:284590 +k1,12061:32583029,34231797:0 +) +(1,12062:6630773,35096877:25952256,513147,115847 +k1,12061:8080390,35096877:165111 +k1,12061:9264586,35096877:165111 +k1,12061:12511855,35096877:165111 +k1,12061:13344122,35096877:165111 +(1,12061:13344122,35096877:0,452978,115847 +r1,12082:14757523,35096877:1413401,568825,115847 +k1,12061:13344122,35096877:-1413401 +) +(1,12061:13344122,35096877:1413401,452978,115847 +k1,12061:13344122,35096877:3277 +h1,12061:14754246,35096877:0,411205,112570 +) +k1,12061:14922634,35096877:165111 +k1,12061:17353325,35096877:165111 +k1,12061:18134475,35096877:165112 +(1,12061:18134475,35096877:0,414482,115847 +r1,12082:23416706,35096877:5282231,530329,115847 +k1,12061:18134475,35096877:-5282231 +) +(1,12061:18134475,35096877:5282231,414482,115847 +k1,12061:18134475,35096877:3277 +h1,12061:23413429,35096877:0,411205,112570 +) +k1,12061:23581817,35096877:165111 +k1,12061:26276618,35096877:165111 +k1,12061:26899826,35096877:165111 +k1,12061:28165942,35096877:165111 +k1,12061:29841003,35096877:165111 +k1,12061:32583029,35096877:0 +) +(1,12062:6630773,35961957:25952256,513147,134348 +g1,12061:8397623,35961957 +g1,12061:11177004,35961957 +k1,12062:32583029,35961957:19487132 +g1,12062:32583029,35961957 +) +(1,12064:6630773,36827037:25952256,513147,134348 +h1,12063:6630773,36827037:983040,0,0 +k1,12063:10976730,36827037:242748 +k1,12063:12503984,36827037:242748 +k1,12063:13738292,36827037:242748 +k1,12063:15302901,36827037:242748 +k1,12063:16204942,36827037:242749 +k1,12063:17466775,36827037:242748 +k1,12063:18124322,36827037:242704 +k1,12063:21383037,36827037:242748 +k1,12063:22697954,36827037:242748 +k1,12063:24225208,36827037:242748 +k1,12063:25459517,36827037:242749 +k1,12063:26768536,36827037:242748 +k1,12063:28928212,36827037:242748 +k1,12063:30906353,36827037:242748 +k1,12063:32168186,36827037:242748 +k1,12064:32583029,36827037:0 +) +(1,12064:6630773,37692117:25952256,513147,134348 +k1,12063:9801703,37692117:154963 +k1,12063:10948225,37692117:154962 +k1,12063:12970964,37692117:154963 +k1,12063:16350298,37692117:154963 +k1,12063:17696705,37692117:154962 +k1,12063:19360307,37692117:154963 +k1,12063:20605133,37692117:154962 +k1,12063:23842254,37692117:154963 +k1,12063:26167769,37692117:154963 +k1,12063:27070497,37692117:154962 +k1,12063:30024503,37692117:154963 +k1,12063:32583029,37692117:0 +) +(1,12064:6630773,38557197:25952256,513147,115847 +g1,12063:8338641,38557197 +g1,12063:10275885,38557197 +g1,12063:11801563,38557197 +(1,12063:11801563,38557197:0,452978,115847 +r1,12082:13566676,38557197:1765113,568825,115847 +k1,12063:11801563,38557197:-1765113 +) +(1,12063:11801563,38557197:1765113,452978,115847 +k1,12063:11801563,38557197:3277 +h1,12063:13563399,38557197:0,411205,112570 +) +g1,12063:13765905,38557197 +g1,12063:16346712,38557197 +g1,12063:18401265,38557197 +g1,12063:19791939,38557197 +(1,12063:19791939,38557197:0,452978,115847 +r1,12082:20501917,38557197:709978,568825,115847 +k1,12063:19791939,38557197:-709978 +) +(1,12063:19791939,38557197:709978,452978,115847 +k1,12063:19791939,38557197:3277 +h1,12063:20498640,38557197:0,411205,112570 +) +g1,12063:20874816,38557197 +g1,12063:22467996,38557197 +(1,12063:22467996,38557197:0,452978,115847 +r1,12082:24584821,38557197:2116825,568825,115847 +k1,12063:22467996,38557197:-2116825 +) +(1,12063:22467996,38557197:2116825,452978,115847 +k1,12063:22467996,38557197:3277 +h1,12063:24581544,38557197:0,411205,112570 +) +g1,12063:24784050,38557197 +k1,12064:32583029,38557197:5671025 +g1,12064:32583029,38557197 +) +v1,12066:6630773,39242052:0,393216,0 +(1,12073:6630773,40365632:25952256,1516796,196608 +g1,12073:6630773,40365632 +g1,12073:6630773,40365632 +g1,12073:6434165,40365632 +(1,12073:6434165,40365632:0,1516796,196608 +r1,12082:32779637,40365632:26345472,1713404,196608 +k1,12073:6434165,40365632:-26345472 +) +(1,12073:6434165,40365632:26345472,1516796,196608 +[1,12073:6630773,40365632:25952256,1320188,0 +(1,12068:6630773,39469883:25952256,424439,6605 +(1,12067:6630773,39469883:0,0,0 +g1,12067:6630773,39469883 +g1,12067:6630773,39469883 +g1,12067:6303093,39469883 +(1,12067:6303093,39469883:0,0,0 +) +g1,12067:6630773,39469883 +) +h1,12068:7958589,39469883:0,0,0 +k1,12068:32583029,39469883:24624440 +g1,12068:32583029,39469883 +) +(1,12072:6630773,40285810:25952256,431045,79822 +(1,12070:6630773,40285810:0,0,0 +g1,12070:6630773,40285810 +g1,12070:6630773,40285810 +g1,12070:6303093,40285810 +(1,12070:6303093,40285810:0,0,0 +) +g1,12070:6630773,40285810 +) +g1,12072:7626635,40285810 +g1,12072:10614220,40285810 +g1,12072:12605944,40285810 +g1,12072:12937898,40285810 +h1,12072:18913069,40285810:0,0,0 +k1,12072:32583029,40285810:13669960 +g1,12072:32583029,40285810 +) +] +) +g1,12073:32583029,40365632 +g1,12073:6630773,40365632 +g1,12073:6630773,40365632 +g1,12073:32583029,40365632 +g1,12073:32583029,40365632 +) +h1,12073:6630773,40562240:0,0,0 +(1,12076:6630773,42679058:25952256,534184,139132 +(1,12076:6630773,42679058:2450326,534184,12975 +g1,12076:6630773,42679058 +g1,12076:9081099,42679058 +) +k1,12076:32583030,42679058:19872940 +g1,12076:32583030,42679058 +) +(1,12080:6630773,43937354:25952256,513147,134348 +k1,12079:10031032,43937354:208656 +k1,12079:11231249,43937354:208657 +k1,12079:14465702,43937354:208656 +k1,12079:15958865,43937354:208657 +k1,12079:17260006,43937354:208656 +k1,12079:17824523,43937354:208657 +k1,12079:20795522,43937354:208656 +k1,12079:23088224,43937354:208657 +k1,12079:24244531,43937354:208656 +k1,12079:26191203,43937354:208657 +k1,12079:28441305,43937354:208656 +k1,12079:29127719,43937354:208657 +k1,12079:30845014,43937354:208656 +k1,12079:32583029,43937354:0 +) +(1,12080:6630773,44802434:25952256,513147,126483 +k1,12079:7331958,44802434:169688 +k1,12079:10295446,44802434:169688 +k1,12079:11081171,44802434:169687 +k1,12079:12733283,44802434:169688 +k1,12079:14417508,44802434:169688 +k1,12079:15967384,44802434:169688 +k1,12079:17241353,44802434:169687 +k1,12079:18158807,44802434:169688 +k1,12079:20196271,44802434:169688 +k1,12079:21052121,44802434:169688 +k1,12079:23946795,44802434:169687 +k1,12079:27315951,44802434:169688 +k1,12079:29506114,44802434:169688 +k1,12079:32583029,44802434:0 +) +(1,12080:6630773,45667514:25952256,513147,126483 +k1,12079:7951027,45667514:174029 +(1,12079:7951027,45667514:0,414482,115847 +r1,12082:8309293,45667514:358266,530329,115847 +k1,12079:7951027,45667514:-358266 +) +(1,12079:7951027,45667514:358266,414482,115847 +k1,12079:7951027,45667514:3277 +h1,12079:8306016,45667514:0,411205,112570 +) +k1,12079:8483322,45667514:174029 +k1,12079:10132566,45667514:174029 +k1,12079:11479034,45667514:174029 +k1,12079:13781672,45667514:174029 +k1,12079:17740405,45667514:174029 +k1,12079:19105878,45667514:174028 +k1,12079:21114915,45667514:174029 +k1,12079:24365859,45667514:174029 +k1,12079:25686113,45667514:174029 +k1,12079:27695150,45667514:174029 +(1,12079:27695150,45667514:0,414482,115847 +r1,12082:28053416,45667514:358266,530329,115847 +k1,12079:27695150,45667514:-358266 +) +(1,12079:27695150,45667514:358266,414482,115847 +k1,12079:27695150,45667514:3277 +h1,12079:28050139,45667514:0,411205,112570 +) +k1,12079:28227445,45667514:174029 +k1,12079:29876689,45667514:174029 +k1,12079:31426319,45667514:174029 +k1,12079:32583029,45667514:0 +) +] +(1,12082:32583029,45706769:0,0,0 +g1,12082:32583029,45706769 +) +) +] +(1,12082:6630773,47279633:25952256,0,0 +h1,12082:6630773,47279633:25952256,0,0 +) +] +(1,12082:4262630,4025873:0,0,0 +[1,12082:-473656,4025873:0,0,0 +(1,12082:-473656,-710413:0,0,0 +(1,12082:-473656,-710413:0,0,0 +g1,12082:-473656,-710413 +) +g1,12082:-473656,-710413 ) ] ) ] !27510 -}190 -Input:2010:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:2011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:2012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +}191 Input:2013:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:2014:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:2015:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:2016:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2017:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2018:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2016:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:2017:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:2018:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:2019:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2020:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2021:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !834 -{191 -[1,12169:4262630,47279633:28320399,43253760,0 -(1,12169:4262630,4025873:0,0,0 -[1,12169:-473656,4025873:0,0,0 -(1,12169:-473656,-710413:0,0,0 -(1,12169:-473656,-644877:0,0,0 -k1,12169:-473656,-644877:-65536 +{192 +[1,12168:4262630,47279633:28320399,43253760,0 +(1,12168:4262630,4025873:0,0,0 +[1,12168:-473656,4025873:0,0,0 +(1,12168:-473656,-710413:0,0,0 +(1,12168:-473656,-644877:0,0,0 +k1,12168:-473656,-644877:-65536 ) -(1,12169:-473656,4736287:0,0,0 -k1,12169:-473656,4736287:5209943 +(1,12168:-473656,4736287:0,0,0 +k1,12168:-473656,4736287:5209943 ) -g1,12169:-473656,-710413 +g1,12168:-473656,-710413 ) ] ) -[1,12169:6630773,47279633:25952256,43253760,0 -[1,12169:6630773,4812305:25952256,786432,0 -(1,12169:6630773,4812305:25952256,505283,134348 -(1,12169:6630773,4812305:25952256,505283,134348 -g1,12169:3078558,4812305 -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,2439708:0,1703936,0 -k1,12169:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12169:2537886,2439708:1179648,16384,0 +[1,12168:6630773,47279633:25952256,43253760,0 +[1,12168:6630773,4812305:25952256,786432,0 +(1,12168:6630773,4812305:25952256,505283,134348 +(1,12168:6630773,4812305:25952256,505283,134348 +g1,12168:3078558,4812305 +[1,12168:3078558,4812305:0,0,0 +(1,12168:3078558,2439708:0,1703936,0 +k1,12168:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12168:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12169:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12168:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,2439708:0,1703936,0 -g1,12169:29030814,2439708 -g1,12169:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12169:36151628,1915420:16384,1179648,0 +[1,12168:3078558,4812305:0,0,0 +(1,12168:3078558,2439708:0,1703936,0 +g1,12168:29030814,2439708 +g1,12168:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12168:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12169:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12168:37855564,2439708:1179648,16384,0 ) ) -k1,12169:3078556,2439708:-34777008 +k1,12168:3078556,2439708:-34777008 ) ] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,49800853:0,16384,2228224 -k1,12169:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12169:2537886,49800853:1179648,16384,0 +[1,12168:3078558,4812305:0,0,0 +(1,12168:3078558,49800853:0,16384,2228224 +k1,12168:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12168:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12169:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12168:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,49800853:0,16384,2228224 -g1,12169:29030814,49800853 -g1,12169:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12169:36151628,51504789:16384,1179648,0 +[1,12168:3078558,4812305:0,0,0 +(1,12168:3078558,49800853:0,16384,2228224 +g1,12168:29030814,49800853 +g1,12168:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12168:36151628,51504789:16384,1179648,0 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12169:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12168:37855564,49800853:1179648,16384,0 ) ) -k1,12169:3078556,49800853:-34777008 +k1,12168:3078556,49800853:-34777008 ) ] -g1,12169:6630773,4812305 -k1,12169:23588214,4812305:15762064 -g1,12169:25210885,4812305 -g1,12169:25997972,4812305 -g1,12169:28481131,4812305 -g1,12169:30046786,4812305 -) -) +g1,12168:6630773,4812305 +k1,12168:23588214,4812305:15762064 +g1,12168:25210885,4812305 +g1,12168:25997972,4812305 +g1,12168:28481131,4812305 +g1,12168:30046786,4812305 +) +) ] -[1,12169:6630773,45706769:25952256,40108032,0 -(1,12169:6630773,45706769:25952256,40108032,0 -(1,12169:6630773,45706769:0,0,0 -g1,12169:6630773,45706769 +[1,12168:6630773,45706769:25952256,40108032,0 +(1,12168:6630773,45706769:25952256,40108032,0 +(1,12168:6630773,45706769:0,0,0 +g1,12168:6630773,45706769 ) -[1,12169:6630773,45706769:25952256,40108032,0 -(1,12081:6630773,6254097:25952256,513147,126483 -k1,12080:8974814,6254097:215432 -k1,12080:12644650,6254097:215433 -k1,12080:14056769,6254097:215432 -k1,12080:17883235,6254097:215432 -k1,12080:18757959,6254097:215432 -k1,12080:20725169,6254097:215433 -k1,12080:22962387,6254097:215432 -k1,12080:23592646,6254097:215416 -k1,12080:26884993,6254097:215432 -k1,12080:28091985,6254097:215432 -k1,12080:30466174,6254097:215433 -(1,12080:30466174,6254097:0,435480,115847 -r1,12169:31176152,6254097:709978,551327,115847 -k1,12080:30466174,6254097:-709978 -) -(1,12080:30466174,6254097:709978,435480,115847 -k1,12080:30466174,6254097:3277 -h1,12080:31172875,6254097:0,411205,112570 -) -k1,12080:31391584,6254097:215432 -k1,12081:32583029,6254097:0 -) -(1,12081:6630773,7119177:25952256,513147,134348 -(1,12080:6630773,7119177:0,435480,115847 -r1,12169:7340751,7119177:709978,551327,115847 -k1,12080:6630773,7119177:-709978 -) -(1,12080:6630773,7119177:709978,435480,115847 -k1,12080:6630773,7119177:3277 -h1,12080:7337474,7119177:0,411205,112570 -) -g1,12080:7713650,7119177 -g1,12080:9293723,7119177 -g1,12080:10024449,7119177 -g1,12080:11452478,7119177 -g1,12080:12007567,7119177 -g1,12080:15910235,7119177 -g1,12080:17175735,7119177 -g1,12080:20186459,7119177 -g1,12080:21147216,7119177 -g1,12080:22365530,7119177 -g1,12080:22979602,7119177 -k1,12081:32583029,7119177:6708702 -g1,12081:32583029,7119177 -) -v1,12083:6630773,7804032:0,393216,0 -(1,12102:6630773,12191320:25952256,4780504,196608 -g1,12102:6630773,12191320 -g1,12102:6630773,12191320 -g1,12102:6434165,12191320 -(1,12102:6434165,12191320:0,4780504,196608 -r1,12169:32779637,12191320:26345472,4977112,196608 -k1,12102:6434165,12191320:-26345472 -) -(1,12102:6434165,12191320:26345472,4780504,196608 -[1,12102:6630773,12191320:25952256,4583896,0 -(1,12085:6630773,8031863:25952256,424439,79822 -(1,12084:6630773,8031863:0,0,0 -g1,12084:6630773,8031863 -g1,12084:6630773,8031863 -g1,12084:6303093,8031863 -(1,12084:6303093,8031863:0,0,0 -) -g1,12084:6630773,8031863 -) -g1,12085:7294681,8031863 -g1,12085:7958589,8031863 -h1,12085:8290543,8031863:0,0,0 -k1,12085:32583029,8031863:24292486 -g1,12085:32583029,8031863 -) -(1,12089:6630773,8847790:25952256,424439,79822 -(1,12087:6630773,8847790:0,0,0 -g1,12087:6630773,8847790 -g1,12087:6630773,8847790 -g1,12087:6303093,8847790 -(1,12087:6303093,8847790:0,0,0 -) -g1,12087:6630773,8847790 -) -g1,12089:7626635,8847790 -g1,12089:8954451,8847790 -h1,12089:9950313,8847790:0,0,0 -k1,12089:32583029,8847790:22632716 -g1,12089:32583029,8847790 -) -(1,12091:6630773,9663717:25952256,431045,86428 -(1,12090:6630773,9663717:0,0,0 -g1,12090:6630773,9663717 -g1,12090:6630773,9663717 -g1,12090:6303093,9663717 -(1,12090:6303093,9663717:0,0,0 -) -g1,12090:6630773,9663717 -) -k1,12091:6630773,9663717:0 -g1,12091:8622497,9663717 -g1,12091:9286405,9663717 -h1,12091:9950313,9663717:0,0,0 -k1,12091:32583029,9663717:22632716 -g1,12091:32583029,9663717 -) -(1,12095:6630773,10479644:25952256,424439,79822 -(1,12093:6630773,10479644:0,0,0 -g1,12093:6630773,10479644 -g1,12093:6630773,10479644 -g1,12093:6303093,10479644 -(1,12093:6303093,10479644:0,0,0 -) -g1,12093:6630773,10479644 -) -g1,12095:7626635,10479644 -g1,12095:8954451,10479644 -h1,12095:9950313,10479644:0,0,0 -k1,12095:32583029,10479644:22632716 -g1,12095:32583029,10479644 -) -(1,12097:6630773,11295571:25952256,431045,86428 -(1,12096:6630773,11295571:0,0,0 -g1,12096:6630773,11295571 -g1,12096:6630773,11295571 -g1,12096:6303093,11295571 -(1,12096:6303093,11295571:0,0,0 -) -g1,12096:6630773,11295571 -) -k1,12097:6630773,11295571:0 -g1,12097:8954451,11295571 -g1,12097:9618359,11295571 -g1,12097:10282267,11295571 -g1,12097:10946175,11295571 -g1,12097:11942037,11295571 -g1,12097:12605945,11295571 -h1,12097:13269853,11295571:0,0,0 -k1,12097:32583029,11295571:19313176 -g1,12097:32583029,11295571 -) -(1,12101:6630773,12111498:25952256,424439,79822 -(1,12099:6630773,12111498:0,0,0 -g1,12099:6630773,12111498 -g1,12099:6630773,12111498 -g1,12099:6303093,12111498 -(1,12099:6303093,12111498:0,0,0 -) -g1,12099:6630773,12111498 -) -g1,12101:7626635,12111498 -g1,12101:8954451,12111498 -h1,12101:9950313,12111498:0,0,0 -k1,12101:32583029,12111498:22632716 -g1,12101:32583029,12111498 -) -] -) -g1,12102:32583029,12191320 -g1,12102:6630773,12191320 -g1,12102:6630773,12191320 -g1,12102:32583029,12191320 -g1,12102:32583029,12191320 -) -h1,12102:6630773,12387928:0,0,0 -(1,12106:6630773,13253008:25952256,513147,134348 -h1,12105:6630773,13253008:983040,0,0 -k1,12105:8726683,13253008:203886 -k1,12105:12192291,13253008:203886 -k1,12105:16544599,13253008:203885 -k1,12105:17414330,13253008:203886 -k1,12105:18650407,13253008:203886 -k1,12105:22222838,13253008:203886 -k1,12105:23092569,13253008:203886 -k1,12105:25425715,13253008:203885 -k1,12105:28758940,13253008:203886 -k1,12105:30724431,13253008:203886 -k1,12106:32583029,13253008:0 -) -(1,12106:6630773,14118088:25952256,513147,134348 -k1,12105:7868983,14118088:219782 -k1,12105:10205575,14118088:219782 -k1,12105:10963406,14118088:219781 -k1,12105:12487353,14118088:219782 -k1,12105:15836474,14118088:219782 -k1,12105:17173644,14118088:219782 -k1,12105:18147745,14118088:219782 -k1,12105:19900411,14118088:219781 -k1,12105:20812908,14118088:219782 -k1,12105:24487743,14118088:219782 -k1,12105:25365506,14118088:219782 -k1,12105:27410462,14118088:219781 -k1,12105:30708465,14118088:219782 -k1,12105:31550838,14118088:219782 -k1,12105:32583029,14118088:0 -) -(1,12106:6630773,14983168:25952256,513147,134348 -k1,12105:8516959,14983168:213054 -k1,12105:9981095,14983168:213055 -k1,12105:10886864,14983168:213054 -k1,12105:13870776,14983168:213054 -k1,12105:17342275,14983168:213054 -k1,12105:19358224,14983168:213055 -k1,12105:22038050,14983168:213054 -k1,12105:25043589,14983168:213054 -k1,12105:27351171,14983168:213054 -k1,12105:28256941,14983168:213055 -k1,12105:31925048,14983168:213054 -k1,12105:32583029,14983168:0 -) -(1,12106:6630773,15848248:25952256,513147,126483 -k1,12105:8703442,15848248:247494 -k1,12105:12029157,15848248:247494 -k1,12105:13151556,15848248:247494 -k1,12105:14794310,15848248:247494 -k1,12105:16591729,15848248:247494 -k1,12105:17497204,15848248:247494 -k1,12105:20157076,15848248:247495 -k1,12105:22063284,15848248:247494 -k1,12105:22933369,15848248:247494 -k1,12105:24682946,15848248:247494 -k1,12105:26471189,15848248:247494 -k1,12105:27970419,15848248:247494 -k1,12105:30535918,15848248:247494 -h1,12105:31519612,15848248:0,0,0 -k1,12105:31767106,15848248:247494 -k1,12105:32583029,15848248:0 -) -(1,12106:6630773,16713328:25952256,505283,134348 -g1,12105:8354367,16713328 -h1,12105:9562850,16713328:0,0,0 -h1,12105:9950167,16713328:0,0,0 -k1,12106:32583029,16713328:22754104 -g1,12106:32583029,16713328 -) -(1,12108:6630773,17578408:25952256,513147,126483 -h1,12107:6630773,17578408:983040,0,0 -k1,12107:8991098,17578408:180598 -k1,12107:10909712,17578408:180599 -k1,12107:11851838,17578408:180598 -k1,12107:13638069,17578408:180599 -k1,12107:15010112,17578408:180598 -k1,12107:17984511,17578408:180599 -k1,12107:18781147,17578408:180598 -k1,12107:20444170,17578408:180599 -k1,12107:22139305,17578408:180598 -k1,12107:24331859,17578408:180599 -k1,12107:25257601,17578408:180598 -k1,12107:26089628,17578408:180599 -k1,12107:28301187,17578408:180598 -k1,12107:29500871,17578408:180599 -k1,12107:32583029,17578408:0 -) -(1,12108:6630773,18443488:25952256,513147,126483 -g1,12107:7489294,18443488 -g1,12107:8459226,18443488 -k1,12108:32583028,18443488:21324760 -g1,12108:32583028,18443488 -) -v1,12110:6630773,19128343:0,393216,0 -(1,12117:6630773,20265135:25952256,1530008,196608 -g1,12117:6630773,20265135 -g1,12117:6630773,20265135 -g1,12117:6434165,20265135 -(1,12117:6434165,20265135:0,1530008,196608 -r1,12169:32779637,20265135:26345472,1726616,196608 -k1,12117:6434165,20265135:-26345472 -) -(1,12117:6434165,20265135:26345472,1530008,196608 -[1,12117:6630773,20265135:25952256,1333400,0 -(1,12112:6630773,19362780:25952256,431045,79822 -(1,12111:6630773,19362780:0,0,0 -g1,12111:6630773,19362780 -g1,12111:6630773,19362780 -g1,12111:6303093,19362780 -(1,12111:6303093,19362780:0,0,0 -) -g1,12111:6630773,19362780 -) -h1,12112:7626635,19362780:0,0,0 -k1,12112:32583029,19362780:24956394 -g1,12112:32583029,19362780 -) -(1,12116:6630773,20178707:25952256,431045,86428 -(1,12114:6630773,20178707:0,0,0 -g1,12114:6630773,20178707 -g1,12114:6630773,20178707 -g1,12114:6303093,20178707 -(1,12114:6303093,20178707:0,0,0 -) -g1,12114:6630773,20178707 -) -g1,12116:7626635,20178707 -g1,12116:10614220,20178707 -g1,12116:12273990,20178707 -g1,12116:13601806,20178707 -g1,12116:13933760,20178707 -h1,12116:18913069,20178707:0,0,0 -k1,12116:32583029,20178707:13669960 -g1,12116:32583029,20178707 -) -] -) -g1,12117:32583029,20265135 -g1,12117:6630773,20265135 -g1,12117:6630773,20265135 -g1,12117:32583029,20265135 -g1,12117:32583029,20265135 -) -h1,12117:6630773,20461743:0,0,0 -v1,12121:6630773,21326823:0,393216,0 -(1,12161:6630773,35625999:25952256,14692392,0 -g1,12161:6630773,35625999 -g1,12161:6237557,35625999 -r1,12169:6368629,35625999:131072,14692392,0 -g1,12161:6567858,35625999 -g1,12161:6764466,35625999 -[1,12161:6764466,35625999:25818563,14692392,0 -(1,12122:6764466,21635121:25818563,701514,196608 -(1,12121:6764466,21635121:0,701514,196608 -r1,12169:7761522,21635121:997056,898122,196608 -k1,12121:6764466,21635121:-997056 -) -(1,12121:6764466,21635121:997056,701514,196608 -) -k1,12121:7981376,21635121:219854 -k1,12121:8309056,21635121:327680 -k1,12121:11326531,21635121:225641 -k1,12121:11916551,21635121:225640 -k1,12121:13515827,21635121:225641 -k1,12121:16738541,21635121:219854 -k1,12121:17911945,21635121:219855 -k1,12121:19264261,21635121:219854 -k1,12121:21444953,21635121:219855 -k1,12121:22020667,21635121:219854 -k1,12121:24262308,21635121:219855 -k1,12121:27228776,21635121:219854 -k1,12121:29651296,21635121:219855 -k1,12121:31043589,21635121:219854 -k1,12122:32583029,21635121:0 -) -(1,12122:6764466,22500201:25818563,513147,95026 -k1,12121:9180779,22500201:239862 -k1,12121:10705147,22500201:239862 -k1,12121:13912478,22500201:239861 -k1,12121:15719961,22500201:239862 -k1,12121:16978908,22500201:239862 -k1,12121:20034852,22500201:239862 -k1,12121:20890751,22500201:239861 -k1,12121:21486473,22500201:239862 -k1,12121:23704212,22500201:239862 -k1,12121:24963159,22500201:239862 -k1,12121:26941035,22500201:239861 -k1,12121:27840189,22500201:239862 -k1,12121:30552724,22500201:239862 -k1,12121:32583029,22500201:0 -) -(1,12122:6764466,23365281:25818563,513147,102891 -k1,12121:8540445,23365281:166415 -k1,12121:9575211,23365281:166414 -k1,12121:11271892,23365281:166415 -k1,12121:11794167,23365281:166415 -k1,12121:14472577,23365281:166415 -k1,12121:16550676,23365281:166414 -k1,12121:17789260,23365281:166415 -k1,12121:18824027,23365281:166415 -k1,12121:20465656,23365281:166414 -k1,12121:21845142,23365281:166415 -k1,12121:24694601,23365281:166415 -k1,12121:25547178,23365281:166415 -k1,12121:27781908,23365281:166414 -k1,12121:28607615,23365281:166415 -k1,12121:32583029,23365281:0 -) -(1,12122:6764466,24230361:25818563,505283,134348 -k1,12121:10033978,24230361:192597 -k1,12121:11848591,24230361:192597 -k1,12121:12788953,24230361:192596 -k1,12121:15775350,24230361:192597 -k1,12121:16583985,24230361:192597 -k1,12121:19185685,24230361:192597 -k1,12121:21202803,24230361:192596 -k1,12121:22348949,24230361:192597 -k1,12121:23674008,24230361:192597 -k1,12121:24959090,24230361:192597 -(1,12121:24959090,24230361:0,435480,115847 -r1,12169:27427627,24230361:2468537,551327,115847 -k1,12121:24959090,24230361:-2468537 -) -(1,12121:24959090,24230361:2468537,435480,115847 -k1,12121:24959090,24230361:3277 -h1,12121:27424350,24230361:0,411205,112570 -) -k1,12121:27620224,24230361:192597 -k1,12121:29004265,24230361:192596 -k1,12121:29883024,24230361:192597 -k1,12121:31469572,24230361:192597 -k1,12121:32583029,24230361:0 -) -(1,12122:6764466,25095441:25818563,513147,134348 -g1,12121:9086406,25095441 -g1,12121:11229432,25095441 -g1,12121:12297013,25095441 -g1,12121:14026508,25095441 -g1,12121:14877165,25095441 -g1,12121:17449453,25095441 -g1,12121:18106779,25095441 -g1,12121:18922046,25095441 -g1,12121:22215230,25095441 -g1,12121:24401511,25095441 -g1,12121:25548391,25095441 -g1,12121:26766705,25095441 -k1,12122:32583029,25095441:2118128 -g1,12122:32583029,25095441 -) -v1,12124:6764466,25780296:0,393216,0 -(1,12130:6764466,27464265:25818563,2077185,196608 -g1,12130:6764466,27464265 -g1,12130:6764466,27464265 -g1,12130:6567858,27464265 -(1,12130:6567858,27464265:0,2077185,196608 -r1,12169:32779637,27464265:26211779,2273793,196608 -k1,12130:6567857,27464265:-26211780 -) -(1,12130:6567858,27464265:26211779,2077185,196608 -[1,12130:6764466,27464265:25818563,1880577,0 -(1,12126:6764466,26014733:25818563,431045,86428 -(1,12125:6764466,26014733:0,0,0 -g1,12125:6764466,26014733 -g1,12125:6764466,26014733 -g1,12125:6436786,26014733 -(1,12125:6436786,26014733:0,0,0 -) -g1,12125:6764466,26014733 -) -k1,12126:6764466,26014733:0 -g1,12126:10084006,26014733 -g1,12126:11079868,26014733 -g1,12126:15395269,26014733 -g1,12126:16723085,26014733 -h1,12126:17055039,26014733:0,0,0 -k1,12126:32583029,26014733:15527990 -g1,12126:32583029,26014733 -) -(1,12127:6764466,26699588:25818563,424439,79822 -h1,12127:6764466,26699588:0,0,0 -g1,12127:7096420,26699588 -g1,12127:7428374,26699588 -g1,12127:8424236,26699588 -g1,12127:9088144,26699588 -k1,12127:9088144,26699588:0 -h1,12127:11743776,26699588:0,0,0 -k1,12127:32583028,26699588:20839252 -g1,12127:32583028,26699588 -) -(1,12128:6764466,27384443:25818563,424439,79822 -h1,12128:6764466,27384443:0,0,0 -h1,12128:7096420,27384443:0,0,0 -k1,12128:32583028,27384443:25486608 -g1,12128:32583028,27384443 -) -] -) -g1,12130:32583029,27464265 -g1,12130:6764466,27464265 -g1,12130:6764466,27464265 -g1,12130:32583029,27464265 -g1,12130:32583029,27464265 -) -h1,12130:6764466,27660873:0,0,0 -(1,12134:6764466,28525953:25818563,505283,126483 -h1,12133:6764466,28525953:983040,0,0 -g1,12133:8900284,28525953 -g1,12133:10203795,28525953 -g1,12133:11836952,28525953 -g1,12133:13128666,28525953 -g1,12133:14425623,28525953 -g1,12133:15908047,28525953 -g1,12133:18853890,28525953 -g1,12133:19669157,28525953 -g1,12133:20224246,28525953 -k1,12134:32583029,28525953:9644938 -g1,12134:32583029,28525953 -) -v1,12136:6764466,29210808:0,393216,0 -(1,12143:6764466,30317872:25818563,1500280,196608 -g1,12143:6764466,30317872 -g1,12143:6764466,30317872 -g1,12143:6567858,30317872 -(1,12143:6567858,30317872:0,1500280,196608 -r1,12169:32779637,30317872:26211779,1696888,196608 -k1,12143:6567857,30317872:-26211780 -) -(1,12143:6567858,30317872:26211779,1500280,196608 -[1,12143:6764466,30317872:25818563,1303672,0 -(1,12138:6764466,29422123:25818563,407923,9908 -(1,12137:6764466,29422123:0,0,0 -g1,12137:6764466,29422123 -g1,12137:6764466,29422123 -g1,12137:6436786,29422123 -(1,12137:6436786,29422123:0,0,0 -) -g1,12137:6764466,29422123 -) -g1,12138:8756190,29422123 -g1,12138:11411822,29422123 -h1,12138:12739638,29422123:0,0,0 -k1,12138:32583030,29422123:19843392 -g1,12138:32583030,29422123 -) -(1,12142:6764466,30238050:25818563,424439,79822 -(1,12140:6764466,30238050:0,0,0 -g1,12140:6764466,30238050 -g1,12140:6764466,30238050 -g1,12140:6436786,30238050 -(1,12140:6436786,30238050:0,0,0 -) -g1,12140:6764466,30238050 -) -g1,12142:7760328,30238050 -g1,12142:9088144,30238050 -g1,12142:10747914,30238050 -g1,12142:11079868,30238050 -g1,12142:12407684,30238050 -g1,12142:12739638,30238050 -g1,12142:14067454,30238050 -g1,12142:14399408,30238050 -g1,12142:15727224,30238050 -g1,12142:16059178,30238050 -g1,12142:17386994,30238050 -g1,12142:17718948,30238050 -h1,12142:18714810,30238050:0,0,0 -k1,12142:32583029,30238050:13868219 -g1,12142:32583029,30238050 -) -] -) -g1,12143:32583029,30317872 -g1,12143:6764466,30317872 -g1,12143:6764466,30317872 -g1,12143:32583029,30317872 -g1,12143:32583029,30317872 -) -h1,12143:6764466,30514480:0,0,0 -(1,12147:6764466,31379560:25818563,513147,126483 -h1,12146:6764466,31379560:983040,0,0 -k1,12146:8733261,31379560:156725 -k1,12146:10472024,31379560:156724 -k1,12146:11647834,31379560:156725 -k1,12146:15060388,31379560:156725 -k1,12146:16085464,31379560:156724 -k1,12146:18615248,31379560:156725 -k1,12146:19791057,31379560:156724 -k1,12146:21685797,31379560:156725 -k1,12146:22501814,31379560:156725 -k1,12146:23756266,31379560:156724 -k1,12146:25196186,31379560:156725 -k1,12146:28099525,31379560:156725 -k1,12146:28872287,31379560:156724 -k1,12146:30511436,31379560:156725 -k1,12147:32583029,31379560:0 -) -(1,12147:6764466,32244640:25818563,505283,126483 -g1,12146:8033243,32244640 -g1,12146:9100824,32244640 -g1,12146:10775268,32244640 -g1,12146:12719065,32244640 -g1,12146:13937379,32244640 -g1,12146:16330753,32244640 -k1,12147:32583029,32244640:14461833 -g1,12147:32583029,32244640 -) -v1,12149:6764466,32929495:0,393216,0 -(1,12158:6764466,35429391:25818563,2893112,196608 -g1,12158:6764466,35429391 -g1,12158:6764466,35429391 -g1,12158:6567858,35429391 -(1,12158:6567858,35429391:0,2893112,196608 -r1,12169:32779637,35429391:26211779,3089720,196608 -k1,12158:6567857,35429391:-26211780 -) -(1,12158:6567858,35429391:26211779,2893112,196608 -[1,12158:6764466,35429391:25818563,2696504,0 -(1,12151:6764466,33163932:25818563,431045,9908 -(1,12150:6764466,33163932:0,0,0 -g1,12150:6764466,33163932 -g1,12150:6764466,33163932 -g1,12150:6436786,33163932 -(1,12150:6436786,33163932:0,0,0 -) -g1,12150:6764466,33163932 -) -k1,12151:6764466,33163932:0 -h1,12151:9752052,33163932:0,0,0 -k1,12151:32583028,33163932:22830976 -g1,12151:32583028,33163932 -) -(1,12157:6764466,33979859:25818563,431045,86428 -(1,12153:6764466,33979859:0,0,0 -g1,12153:6764466,33979859 -g1,12153:6764466,33979859 -g1,12153:6436786,33979859 -(1,12153:6436786,33979859:0,0,0 -) -g1,12153:6764466,33979859 -) -g1,12157:7760328,33979859 -g1,12157:12075729,33979859 -g1,12157:13403545,33979859 -h1,12157:13735499,33979859:0,0,0 -k1,12157:32583029,33979859:18847530 -g1,12157:32583029,33979859 -) -(1,12157:6764466,34664714:25818563,424439,79822 -h1,12157:6764466,34664714:0,0,0 -g1,12157:7760328,34664714 -g1,12157:8092282,34664714 -g1,12157:8424236,34664714 -g1,12157:9420098,34664714 -g1,12157:10084006,34664714 -h1,12157:12739637,34664714:0,0,0 -k1,12157:32583029,34664714:19843392 -g1,12157:32583029,34664714 -) -(1,12157:6764466,35349569:25818563,424439,79822 -h1,12157:6764466,35349569:0,0,0 -g1,12157:7760328,35349569 -h1,12157:8092282,35349569:0,0,0 -k1,12157:32583030,35349569:24490748 -g1,12157:32583030,35349569 -) -] -) -g1,12158:32583029,35429391 -g1,12158:6764466,35429391 -g1,12158:6764466,35429391 -g1,12158:32583029,35429391 -g1,12158:32583029,35429391 -) -h1,12158:6764466,35625999:0,0,0 -] -g1,12161:32583029,35625999 -) -h1,12161:6630773,35625999:0,0,0 -(1,12163:6630773,38457159:25952256,32768,229376 -(1,12163:6630773,38457159:0,32768,229376 -(1,12163:6630773,38457159:5505024,32768,229376 -r1,12169:12135797,38457159:5505024,262144,229376 -) -k1,12163:6630773,38457159:-5505024 -) -(1,12163:6630773,38457159:25952256,32768,0 -r1,12169:32583029,38457159:25952256,32768,0 -) -) -(1,12163:6630773,40089011:25952256,606339,161218 -(1,12163:6630773,40089011:1974731,582746,14155 -g1,12163:6630773,40089011 -g1,12163:8605504,40089011 -) -g1,12163:12064232,40089011 -g1,12163:15239845,40089011 -g1,12163:16949548,40089011 -k1,12163:32583029,40089011:12250250 -g1,12163:32583029,40089011 -) -(1,12167:6630773,41347307:25952256,513147,134348 -k1,12166:8138806,41347307:147506 -k1,12166:10519125,41347307:147507 -k1,12166:11658191,41347307:147506 -k1,12166:14650616,41347307:147507 -k1,12166:17179700,41347307:147506 -k1,12166:19337195,41347307:147506 -k1,12166:22395156,41347307:147507 -k1,12166:24494324,41347307:147506 -k1,12166:26084277,41347307:147506 -k1,12166:26847822,41347307:147507 -k1,12166:28376172,41347307:147506 -k1,12166:30858727,41347307:147507 -k1,12166:31835263,41347307:147506 -k1,12166:32583029,41347307:0 -) -(1,12167:6630773,42212387:25952256,513147,134348 -k1,12166:8599222,42212387:205531 -k1,12166:10781974,42212387:205531 -k1,12166:15411185,42212387:205531 -k1,12166:15972576,42212387:205531 -k1,12166:17461302,42212387:205531 -k1,12166:19222002,42212387:205531 -k1,12166:22035212,42212387:205532 -k1,12166:23307014,42212387:205531 -k1,12166:24888146,42212387:205531 -k1,12166:27697422,42212387:205531 -k1,12166:28258813,42212387:205531 -k1,12166:30019513,42212387:205531 -k1,12166:31297213,42212387:205531 -k1,12166:32583029,42212387:0 -) -(1,12167:6630773,43077467:25952256,513147,134348 -k1,12166:7250028,43077467:263395 -k1,12166:8447966,43077467:263395 -k1,12166:9370654,43077467:263396 -k1,12166:13127773,43077467:263395 -k1,12166:16416965,43077467:263395 -k1,12166:17363245,43077467:263395 -k1,12166:20307718,43077467:263395 -k1,12166:21855619,43077467:263395 -k1,12166:25552446,43077467:263396 -k1,12166:29220436,43077467:263395 -k1,12166:30293201,43077467:263395 -k1,12166:32583029,43077467:0 -) -(1,12167:6630773,43942547:25952256,513147,134348 -k1,12166:10001111,43942547:243615 -k1,12166:10896154,43942547:243615 -k1,12166:12158854,43942547:243615 -k1,12166:13685664,43942547:243615 -k1,12166:15658119,43942547:243615 -k1,12166:20139948,43942547:243616 -k1,12166:21154266,43942547:243615 -k1,12166:26052903,43942547:243615 -k1,12166:26955810,43942547:243615 -k1,12166:28529806,43942547:243615 -k1,12166:31006233,43942547:243615 -k1,12166:32583029,43942547:0 -) -(1,12167:6630773,44807627:25952256,513147,126483 -k1,12166:7363728,44807627:201458 -k1,12166:10774483,44807627:201457 -k1,12166:12442637,44807627:201458 -k1,12166:13110055,44807627:201457 -k1,12166:14687114,44807627:201458 -k1,12166:16242546,44807627:201458 -k1,12166:20329633,44807627:201457 -k1,12166:20886951,44807627:201458 -k1,12166:22469252,44807627:201457 -k1,12166:23803172,44807627:201458 -k1,12166:25965467,44807627:201458 -k1,12166:26522784,44807627:201457 -k1,12166:28007437,44807627:201458 -k1,12166:30663217,44807627:201457 -k1,12166:31812326,44807627:201458 -k1,12166:32583029,44807627:0 -) -(1,12167:6630773,45672707:25952256,505283,134348 -g1,12166:9321025,45672707 -g1,12166:11075423,45672707 -g1,12166:13284641,45672707 -g1,12166:13839730,45672707 -k1,12167:32583030,45672707:16859796 -g1,12167:32583030,45672707 -) -] -(1,12169:32583029,45706769:0,0,0 -g1,12169:32583029,45706769 -) -) -] -(1,12169:6630773,47279633:25952256,0,0 -h1,12169:6630773,47279633:25952256,0,0 -) -] -(1,12169:4262630,4025873:0,0,0 -[1,12169:-473656,4025873:0,0,0 -(1,12169:-473656,-710413:0,0,0 -(1,12169:-473656,-710413:0,0,0 -g1,12169:-473656,-710413 -) -g1,12169:-473656,-710413 +[1,12168:6630773,45706769:25952256,40108032,0 +(1,12080:6630773,6254097:25952256,513147,126483 +k1,12079:8974814,6254097:215432 +k1,12079:12644650,6254097:215433 +k1,12079:14056769,6254097:215432 +k1,12079:17883235,6254097:215432 +k1,12079:18757959,6254097:215432 +k1,12079:20725169,6254097:215433 +k1,12079:22962387,6254097:215432 +k1,12079:23592646,6254097:215416 +k1,12079:26884993,6254097:215432 +k1,12079:28091985,6254097:215432 +k1,12079:30466174,6254097:215433 +(1,12079:30466174,6254097:0,435480,115847 +r1,12168:31176152,6254097:709978,551327,115847 +k1,12079:30466174,6254097:-709978 +) +(1,12079:30466174,6254097:709978,435480,115847 +k1,12079:30466174,6254097:3277 +h1,12079:31172875,6254097:0,411205,112570 +) +k1,12079:31391584,6254097:215432 +k1,12080:32583029,6254097:0 +) +(1,12080:6630773,7119177:25952256,513147,134348 +(1,12079:6630773,7119177:0,435480,115847 +r1,12168:7340751,7119177:709978,551327,115847 +k1,12079:6630773,7119177:-709978 +) +(1,12079:6630773,7119177:709978,435480,115847 +k1,12079:6630773,7119177:3277 +h1,12079:7337474,7119177:0,411205,112570 +) +g1,12079:7713650,7119177 +g1,12079:9293723,7119177 +g1,12079:10024449,7119177 +g1,12079:11452478,7119177 +g1,12079:12007567,7119177 +g1,12079:15910235,7119177 +g1,12079:17175735,7119177 +g1,12079:20186459,7119177 +g1,12079:21147216,7119177 +g1,12079:22365530,7119177 +g1,12079:22979602,7119177 +k1,12080:32583029,7119177:6708702 +g1,12080:32583029,7119177 +) +v1,12082:6630773,7804032:0,393216,0 +(1,12101:6630773,12191320:25952256,4780504,196608 +g1,12101:6630773,12191320 +g1,12101:6630773,12191320 +g1,12101:6434165,12191320 +(1,12101:6434165,12191320:0,4780504,196608 +r1,12168:32779637,12191320:26345472,4977112,196608 +k1,12101:6434165,12191320:-26345472 +) +(1,12101:6434165,12191320:26345472,4780504,196608 +[1,12101:6630773,12191320:25952256,4583896,0 +(1,12084:6630773,8031863:25952256,424439,79822 +(1,12083:6630773,8031863:0,0,0 +g1,12083:6630773,8031863 +g1,12083:6630773,8031863 +g1,12083:6303093,8031863 +(1,12083:6303093,8031863:0,0,0 +) +g1,12083:6630773,8031863 +) +g1,12084:7294681,8031863 +g1,12084:7958589,8031863 +h1,12084:8290543,8031863:0,0,0 +k1,12084:32583029,8031863:24292486 +g1,12084:32583029,8031863 +) +(1,12088:6630773,8847790:25952256,424439,79822 +(1,12086:6630773,8847790:0,0,0 +g1,12086:6630773,8847790 +g1,12086:6630773,8847790 +g1,12086:6303093,8847790 +(1,12086:6303093,8847790:0,0,0 +) +g1,12086:6630773,8847790 +) +g1,12088:7626635,8847790 +g1,12088:8954451,8847790 +h1,12088:9950313,8847790:0,0,0 +k1,12088:32583029,8847790:22632716 +g1,12088:32583029,8847790 +) +(1,12090:6630773,9663717:25952256,431045,86428 +(1,12089:6630773,9663717:0,0,0 +g1,12089:6630773,9663717 +g1,12089:6630773,9663717 +g1,12089:6303093,9663717 +(1,12089:6303093,9663717:0,0,0 +) +g1,12089:6630773,9663717 +) +k1,12090:6630773,9663717:0 +g1,12090:8622497,9663717 +g1,12090:9286405,9663717 +h1,12090:9950313,9663717:0,0,0 +k1,12090:32583029,9663717:22632716 +g1,12090:32583029,9663717 +) +(1,12094:6630773,10479644:25952256,424439,79822 +(1,12092:6630773,10479644:0,0,0 +g1,12092:6630773,10479644 +g1,12092:6630773,10479644 +g1,12092:6303093,10479644 +(1,12092:6303093,10479644:0,0,0 +) +g1,12092:6630773,10479644 +) +g1,12094:7626635,10479644 +g1,12094:8954451,10479644 +h1,12094:9950313,10479644:0,0,0 +k1,12094:32583029,10479644:22632716 +g1,12094:32583029,10479644 +) +(1,12096:6630773,11295571:25952256,431045,86428 +(1,12095:6630773,11295571:0,0,0 +g1,12095:6630773,11295571 +g1,12095:6630773,11295571 +g1,12095:6303093,11295571 +(1,12095:6303093,11295571:0,0,0 +) +g1,12095:6630773,11295571 +) +k1,12096:6630773,11295571:0 +g1,12096:8954451,11295571 +g1,12096:9618359,11295571 +g1,12096:10282267,11295571 +g1,12096:10946175,11295571 +g1,12096:11942037,11295571 +g1,12096:12605945,11295571 +h1,12096:13269853,11295571:0,0,0 +k1,12096:32583029,11295571:19313176 +g1,12096:32583029,11295571 +) +(1,12100:6630773,12111498:25952256,424439,79822 +(1,12098:6630773,12111498:0,0,0 +g1,12098:6630773,12111498 +g1,12098:6630773,12111498 +g1,12098:6303093,12111498 +(1,12098:6303093,12111498:0,0,0 +) +g1,12098:6630773,12111498 +) +g1,12100:7626635,12111498 +g1,12100:8954451,12111498 +h1,12100:9950313,12111498:0,0,0 +k1,12100:32583029,12111498:22632716 +g1,12100:32583029,12111498 +) +] +) +g1,12101:32583029,12191320 +g1,12101:6630773,12191320 +g1,12101:6630773,12191320 +g1,12101:32583029,12191320 +g1,12101:32583029,12191320 +) +h1,12101:6630773,12387928:0,0,0 +(1,12105:6630773,13253008:25952256,513147,134348 +h1,12104:6630773,13253008:983040,0,0 +k1,12104:8726683,13253008:203886 +k1,12104:12192291,13253008:203886 +k1,12104:16544599,13253008:203885 +k1,12104:17414330,13253008:203886 +k1,12104:18650407,13253008:203886 +k1,12104:22222838,13253008:203886 +k1,12104:23092569,13253008:203886 +k1,12104:25425715,13253008:203885 +k1,12104:28758940,13253008:203886 +k1,12104:30724431,13253008:203886 +k1,12105:32583029,13253008:0 +) +(1,12105:6630773,14118088:25952256,513147,134348 +k1,12104:7868983,14118088:219782 +k1,12104:10205575,14118088:219782 +k1,12104:10963406,14118088:219781 +k1,12104:12487353,14118088:219782 +k1,12104:15836474,14118088:219782 +k1,12104:17173644,14118088:219782 +k1,12104:18147745,14118088:219782 +k1,12104:19900411,14118088:219781 +k1,12104:20812908,14118088:219782 +k1,12104:24487743,14118088:219782 +k1,12104:25365506,14118088:219782 +k1,12104:27410462,14118088:219781 +k1,12104:30708465,14118088:219782 +k1,12104:31550838,14118088:219782 +k1,12104:32583029,14118088:0 +) +(1,12105:6630773,14983168:25952256,513147,134348 +k1,12104:8516959,14983168:213054 +k1,12104:9981095,14983168:213055 +k1,12104:10886864,14983168:213054 +k1,12104:13870776,14983168:213054 +k1,12104:17342275,14983168:213054 +k1,12104:19358224,14983168:213055 +k1,12104:22038050,14983168:213054 +k1,12104:25043589,14983168:213054 +k1,12104:27351171,14983168:213054 +k1,12104:28256941,14983168:213055 +k1,12104:31925048,14983168:213054 +k1,12104:32583029,14983168:0 +) +(1,12105:6630773,15848248:25952256,513147,126483 +k1,12104:8690569,15848248:234621 +k1,12104:12183635,15848248:234621 +k1,12104:13293161,15848248:234621 +k1,12104:14923042,15848248:234621 +k1,12104:16707588,15848248:234621 +k1,12104:17600190,15848248:234621 +k1,12104:20247188,15848248:234621 +k1,12104:22140522,15848248:234620 +k1,12104:22997734,15848248:234621 +k1,12104:24734438,15848248:234621 +k1,12104:26509808,15848248:234621 +k1,12104:27996165,15848248:234621 +k1,12104:30548791,15848248:234621 +h1,12104:31532485,15848248:0,0,0 +k1,12104:31767106,15848248:234621 +k1,12104:32583029,15848248:0 +) +(1,12105:6630773,16713328:25952256,505283,134348 +g1,12104:8354367,16713328 +h1,12104:9562850,16713328:0,0,0 +h1,12104:9950167,16713328:0,0,0 +k1,12105:32583029,16713328:22754104 +g1,12105:32583029,16713328 +) +(1,12107:6630773,17578408:25952256,513147,126483 +h1,12106:6630773,17578408:983040,0,0 +k1,12106:8991098,17578408:180598 +k1,12106:10909712,17578408:180599 +k1,12106:11851838,17578408:180598 +k1,12106:13638069,17578408:180599 +k1,12106:15010112,17578408:180598 +k1,12106:17984511,17578408:180599 +k1,12106:18781147,17578408:180598 +k1,12106:20444170,17578408:180599 +k1,12106:22139305,17578408:180598 +k1,12106:24331859,17578408:180599 +k1,12106:25257601,17578408:180598 +k1,12106:26089628,17578408:180599 +k1,12106:28301187,17578408:180598 +k1,12106:29500871,17578408:180599 +k1,12106:32583029,17578408:0 +) +(1,12107:6630773,18443488:25952256,513147,126483 +g1,12106:7489294,18443488 +g1,12106:8459226,18443488 +k1,12107:32583028,18443488:21324760 +g1,12107:32583028,18443488 +) +v1,12109:6630773,19128343:0,393216,0 +(1,12116:6630773,20265135:25952256,1530008,196608 +g1,12116:6630773,20265135 +g1,12116:6630773,20265135 +g1,12116:6434165,20265135 +(1,12116:6434165,20265135:0,1530008,196608 +r1,12168:32779637,20265135:26345472,1726616,196608 +k1,12116:6434165,20265135:-26345472 +) +(1,12116:6434165,20265135:26345472,1530008,196608 +[1,12116:6630773,20265135:25952256,1333400,0 +(1,12111:6630773,19362780:25952256,431045,79822 +(1,12110:6630773,19362780:0,0,0 +g1,12110:6630773,19362780 +g1,12110:6630773,19362780 +g1,12110:6303093,19362780 +(1,12110:6303093,19362780:0,0,0 +) +g1,12110:6630773,19362780 +) +h1,12111:7626635,19362780:0,0,0 +k1,12111:32583029,19362780:24956394 +g1,12111:32583029,19362780 +) +(1,12115:6630773,20178707:25952256,431045,86428 +(1,12113:6630773,20178707:0,0,0 +g1,12113:6630773,20178707 +g1,12113:6630773,20178707 +g1,12113:6303093,20178707 +(1,12113:6303093,20178707:0,0,0 +) +g1,12113:6630773,20178707 +) +g1,12115:7626635,20178707 +g1,12115:10614220,20178707 +g1,12115:12273990,20178707 +g1,12115:13601806,20178707 +g1,12115:13933760,20178707 +h1,12115:18913069,20178707:0,0,0 +k1,12115:32583029,20178707:13669960 +g1,12115:32583029,20178707 +) +] +) +g1,12116:32583029,20265135 +g1,12116:6630773,20265135 +g1,12116:6630773,20265135 +g1,12116:32583029,20265135 +g1,12116:32583029,20265135 +) +h1,12116:6630773,20461743:0,0,0 +v1,12120:6630773,21326823:0,393216,0 +(1,12160:6630773,35625999:25952256,14692392,0 +g1,12160:6630773,35625999 +g1,12160:6237557,35625999 +r1,12168:6368629,35625999:131072,14692392,0 +g1,12160:6567858,35625999 +g1,12160:6764466,35625999 +[1,12160:6764466,35625999:25818563,14692392,0 +(1,12121:6764466,21635121:25818563,701514,196608 +(1,12120:6764466,21635121:0,701514,196608 +r1,12168:7761522,21635121:997056,898122,196608 +k1,12120:6764466,21635121:-997056 +) +(1,12120:6764466,21635121:997056,701514,196608 +) +k1,12120:7981376,21635121:219854 +k1,12120:8309056,21635121:327680 +k1,12120:11326531,21635121:225641 +k1,12120:11916551,21635121:225640 +k1,12120:13515827,21635121:225641 +k1,12120:16738541,21635121:219854 +k1,12120:17911945,21635121:219855 +k1,12120:19264261,21635121:219854 +k1,12120:21444953,21635121:219855 +k1,12120:22020667,21635121:219854 +k1,12120:24262308,21635121:219855 +k1,12120:27228776,21635121:219854 +k1,12120:29651296,21635121:219855 +k1,12120:31043589,21635121:219854 +k1,12121:32583029,21635121:0 +) +(1,12121:6764466,22500201:25818563,513147,95026 +k1,12120:9180779,22500201:239862 +k1,12120:10705147,22500201:239862 +k1,12120:13912478,22500201:239861 +k1,12120:15719961,22500201:239862 +k1,12120:16978908,22500201:239862 +k1,12120:20034852,22500201:239862 +k1,12120:20890751,22500201:239861 +k1,12120:21486473,22500201:239862 +k1,12120:23704212,22500201:239862 +k1,12120:24963159,22500201:239862 +k1,12120:26941035,22500201:239861 +k1,12120:27840189,22500201:239862 +k1,12120:30552724,22500201:239862 +k1,12120:32583029,22500201:0 +) +(1,12121:6764466,23365281:25818563,513147,102891 +k1,12120:8540445,23365281:166415 +k1,12120:9575211,23365281:166414 +k1,12120:11271892,23365281:166415 +k1,12120:11794167,23365281:166415 +k1,12120:14472577,23365281:166415 +k1,12120:16550676,23365281:166414 +k1,12120:17789260,23365281:166415 +k1,12120:18824027,23365281:166415 +k1,12120:20465656,23365281:166414 +k1,12120:21845142,23365281:166415 +k1,12120:24694601,23365281:166415 +k1,12120:25547178,23365281:166415 +k1,12120:27781908,23365281:166414 +k1,12120:28607615,23365281:166415 +k1,12120:32583029,23365281:0 +) +(1,12121:6764466,24230361:25818563,505283,134348 +k1,12120:10033978,24230361:192597 +k1,12120:11848591,24230361:192597 +k1,12120:12788953,24230361:192596 +k1,12120:15775350,24230361:192597 +k1,12120:16583985,24230361:192597 +k1,12120:19185685,24230361:192597 +k1,12120:21202803,24230361:192596 +k1,12120:22348949,24230361:192597 +k1,12120:23674008,24230361:192597 +k1,12120:24959090,24230361:192597 +(1,12120:24959090,24230361:0,435480,115847 +r1,12168:27427627,24230361:2468537,551327,115847 +k1,12120:24959090,24230361:-2468537 +) +(1,12120:24959090,24230361:2468537,435480,115847 +k1,12120:24959090,24230361:3277 +h1,12120:27424350,24230361:0,411205,112570 +) +k1,12120:27620224,24230361:192597 +k1,12120:29004265,24230361:192596 +k1,12120:29883024,24230361:192597 +k1,12120:31469572,24230361:192597 +k1,12120:32583029,24230361:0 +) +(1,12121:6764466,25095441:25818563,513147,134348 +g1,12120:9086406,25095441 +g1,12120:11229432,25095441 +g1,12120:12297013,25095441 +g1,12120:14026508,25095441 +g1,12120:14877165,25095441 +g1,12120:17449453,25095441 +g1,12120:18106779,25095441 +g1,12120:18922046,25095441 +g1,12120:22215230,25095441 +g1,12120:24401511,25095441 +g1,12120:25548391,25095441 +g1,12120:26766705,25095441 +k1,12121:32583029,25095441:2118128 +g1,12121:32583029,25095441 +) +v1,12123:6764466,25780296:0,393216,0 +(1,12129:6764466,27464265:25818563,2077185,196608 +g1,12129:6764466,27464265 +g1,12129:6764466,27464265 +g1,12129:6567858,27464265 +(1,12129:6567858,27464265:0,2077185,196608 +r1,12168:32779637,27464265:26211779,2273793,196608 +k1,12129:6567857,27464265:-26211780 +) +(1,12129:6567858,27464265:26211779,2077185,196608 +[1,12129:6764466,27464265:25818563,1880577,0 +(1,12125:6764466,26014733:25818563,431045,86428 +(1,12124:6764466,26014733:0,0,0 +g1,12124:6764466,26014733 +g1,12124:6764466,26014733 +g1,12124:6436786,26014733 +(1,12124:6436786,26014733:0,0,0 +) +g1,12124:6764466,26014733 +) +k1,12125:6764466,26014733:0 +g1,12125:10084006,26014733 +g1,12125:11079868,26014733 +g1,12125:15395269,26014733 +g1,12125:16723085,26014733 +h1,12125:17055039,26014733:0,0,0 +k1,12125:32583029,26014733:15527990 +g1,12125:32583029,26014733 +) +(1,12126:6764466,26699588:25818563,424439,79822 +h1,12126:6764466,26699588:0,0,0 +g1,12126:7096420,26699588 +g1,12126:7428374,26699588 +g1,12126:8424236,26699588 +g1,12126:9088144,26699588 +k1,12126:9088144,26699588:0 +h1,12126:11743776,26699588:0,0,0 +k1,12126:32583028,26699588:20839252 +g1,12126:32583028,26699588 +) +(1,12127:6764466,27384443:25818563,424439,79822 +h1,12127:6764466,27384443:0,0,0 +h1,12127:7096420,27384443:0,0,0 +k1,12127:32583028,27384443:25486608 +g1,12127:32583028,27384443 +) +] +) +g1,12129:32583029,27464265 +g1,12129:6764466,27464265 +g1,12129:6764466,27464265 +g1,12129:32583029,27464265 +g1,12129:32583029,27464265 +) +h1,12129:6764466,27660873:0,0,0 +(1,12133:6764466,28525953:25818563,505283,126483 +h1,12132:6764466,28525953:983040,0,0 +g1,12132:8900284,28525953 +g1,12132:10203795,28525953 +g1,12132:11836952,28525953 +g1,12132:13128666,28525953 +g1,12132:14425623,28525953 +g1,12132:15908047,28525953 +g1,12132:18853890,28525953 +g1,12132:19669157,28525953 +g1,12132:20224246,28525953 +k1,12133:32583029,28525953:9644938 +g1,12133:32583029,28525953 +) +v1,12135:6764466,29210808:0,393216,0 +(1,12142:6764466,30317872:25818563,1500280,196608 +g1,12142:6764466,30317872 +g1,12142:6764466,30317872 +g1,12142:6567858,30317872 +(1,12142:6567858,30317872:0,1500280,196608 +r1,12168:32779637,30317872:26211779,1696888,196608 +k1,12142:6567857,30317872:-26211780 +) +(1,12142:6567858,30317872:26211779,1500280,196608 +[1,12142:6764466,30317872:25818563,1303672,0 +(1,12137:6764466,29422123:25818563,407923,9908 +(1,12136:6764466,29422123:0,0,0 +g1,12136:6764466,29422123 +g1,12136:6764466,29422123 +g1,12136:6436786,29422123 +(1,12136:6436786,29422123:0,0,0 +) +g1,12136:6764466,29422123 +) +g1,12137:8756190,29422123 +g1,12137:11411822,29422123 +h1,12137:12739638,29422123:0,0,0 +k1,12137:32583030,29422123:19843392 +g1,12137:32583030,29422123 +) +(1,12141:6764466,30238050:25818563,424439,79822 +(1,12139:6764466,30238050:0,0,0 +g1,12139:6764466,30238050 +g1,12139:6764466,30238050 +g1,12139:6436786,30238050 +(1,12139:6436786,30238050:0,0,0 +) +g1,12139:6764466,30238050 +) +g1,12141:7760328,30238050 +g1,12141:9088144,30238050 +g1,12141:10747914,30238050 +g1,12141:11079868,30238050 +g1,12141:12407684,30238050 +g1,12141:12739638,30238050 +g1,12141:14067454,30238050 +g1,12141:14399408,30238050 +g1,12141:15727224,30238050 +g1,12141:16059178,30238050 +g1,12141:17386994,30238050 +g1,12141:17718948,30238050 +h1,12141:18714810,30238050:0,0,0 +k1,12141:32583029,30238050:13868219 +g1,12141:32583029,30238050 +) +] +) +g1,12142:32583029,30317872 +g1,12142:6764466,30317872 +g1,12142:6764466,30317872 +g1,12142:32583029,30317872 +g1,12142:32583029,30317872 +) +h1,12142:6764466,30514480:0,0,0 +(1,12146:6764466,31379560:25818563,513147,126483 +h1,12145:6764466,31379560:983040,0,0 +k1,12145:8733261,31379560:156725 +k1,12145:10472024,31379560:156724 +k1,12145:11647834,31379560:156725 +k1,12145:15060388,31379560:156725 +k1,12145:16085464,31379560:156724 +k1,12145:18615248,31379560:156725 +k1,12145:19791057,31379560:156724 +k1,12145:21685797,31379560:156725 +k1,12145:22501814,31379560:156725 +k1,12145:23756266,31379560:156724 +k1,12145:25196186,31379560:156725 +k1,12145:28099525,31379560:156725 +k1,12145:28872287,31379560:156724 +k1,12145:30511436,31379560:156725 +k1,12146:32583029,31379560:0 +) +(1,12146:6764466,32244640:25818563,505283,126483 +g1,12145:8033243,32244640 +g1,12145:9100824,32244640 +g1,12145:10775268,32244640 +g1,12145:12719065,32244640 +g1,12145:13937379,32244640 +g1,12145:16330753,32244640 +k1,12146:32583029,32244640:14461833 +g1,12146:32583029,32244640 +) +v1,12148:6764466,32929495:0,393216,0 +(1,12157:6764466,35429391:25818563,2893112,196608 +g1,12157:6764466,35429391 +g1,12157:6764466,35429391 +g1,12157:6567858,35429391 +(1,12157:6567858,35429391:0,2893112,196608 +r1,12168:32779637,35429391:26211779,3089720,196608 +k1,12157:6567857,35429391:-26211780 +) +(1,12157:6567858,35429391:26211779,2893112,196608 +[1,12157:6764466,35429391:25818563,2696504,0 +(1,12150:6764466,33163932:25818563,431045,9908 +(1,12149:6764466,33163932:0,0,0 +g1,12149:6764466,33163932 +g1,12149:6764466,33163932 +g1,12149:6436786,33163932 +(1,12149:6436786,33163932:0,0,0 +) +g1,12149:6764466,33163932 +) +k1,12150:6764466,33163932:0 +h1,12150:9752052,33163932:0,0,0 +k1,12150:32583028,33163932:22830976 +g1,12150:32583028,33163932 +) +(1,12156:6764466,33979859:25818563,431045,86428 +(1,12152:6764466,33979859:0,0,0 +g1,12152:6764466,33979859 +g1,12152:6764466,33979859 +g1,12152:6436786,33979859 +(1,12152:6436786,33979859:0,0,0 +) +g1,12152:6764466,33979859 +) +g1,12156:7760328,33979859 +g1,12156:12075729,33979859 +g1,12156:13403545,33979859 +h1,12156:13735499,33979859:0,0,0 +k1,12156:32583029,33979859:18847530 +g1,12156:32583029,33979859 +) +(1,12156:6764466,34664714:25818563,424439,79822 +h1,12156:6764466,34664714:0,0,0 +g1,12156:7760328,34664714 +g1,12156:8092282,34664714 +g1,12156:8424236,34664714 +g1,12156:9420098,34664714 +g1,12156:10084006,34664714 +h1,12156:12739637,34664714:0,0,0 +k1,12156:32583029,34664714:19843392 +g1,12156:32583029,34664714 +) +(1,12156:6764466,35349569:25818563,424439,79822 +h1,12156:6764466,35349569:0,0,0 +g1,12156:7760328,35349569 +h1,12156:8092282,35349569:0,0,0 +k1,12156:32583030,35349569:24490748 +g1,12156:32583030,35349569 +) +] +) +g1,12157:32583029,35429391 +g1,12157:6764466,35429391 +g1,12157:6764466,35429391 +g1,12157:32583029,35429391 +g1,12157:32583029,35429391 +) +h1,12157:6764466,35625999:0,0,0 +] +g1,12160:32583029,35625999 +) +h1,12160:6630773,35625999:0,0,0 +(1,12162:6630773,38457159:25952256,32768,229376 +(1,12162:6630773,38457159:0,32768,229376 +(1,12162:6630773,38457159:5505024,32768,229376 +r1,12168:12135797,38457159:5505024,262144,229376 +) +k1,12162:6630773,38457159:-5505024 +) +(1,12162:6630773,38457159:25952256,32768,0 +r1,12168:32583029,38457159:25952256,32768,0 +) +) +(1,12162:6630773,40089011:25952256,606339,161218 +(1,12162:6630773,40089011:1974731,582746,14155 +g1,12162:6630773,40089011 +g1,12162:8605504,40089011 +) +g1,12162:12064232,40089011 +g1,12162:15239845,40089011 +g1,12162:16949548,40089011 +k1,12162:32583029,40089011:12250250 +g1,12162:32583029,40089011 +) +(1,12166:6630773,41347307:25952256,513147,134348 +k1,12165:8138806,41347307:147506 +k1,12165:10519125,41347307:147507 +k1,12165:11658191,41347307:147506 +k1,12165:14650616,41347307:147507 +k1,12165:17179700,41347307:147506 +k1,12165:19337195,41347307:147506 +k1,12165:22395156,41347307:147507 +k1,12165:24494324,41347307:147506 +k1,12165:26084277,41347307:147506 +k1,12165:26847822,41347307:147507 +k1,12165:28376172,41347307:147506 +k1,12165:30858727,41347307:147507 +k1,12165:31835263,41347307:147506 +k1,12165:32583029,41347307:0 +) +(1,12166:6630773,42212387:25952256,513147,134348 +k1,12165:8599222,42212387:205531 +k1,12165:10781974,42212387:205531 +k1,12165:15411185,42212387:205531 +k1,12165:15972576,42212387:205531 +k1,12165:17461302,42212387:205531 +k1,12165:19222002,42212387:205531 +k1,12165:22035212,42212387:205532 +k1,12165:23307014,42212387:205531 +k1,12165:24888146,42212387:205531 +k1,12165:27697422,42212387:205531 +k1,12165:28258813,42212387:205531 +k1,12165:30019513,42212387:205531 +k1,12165:31297213,42212387:205531 +k1,12165:32583029,42212387:0 +) +(1,12166:6630773,43077467:25952256,513147,134348 +k1,12165:7250028,43077467:263395 +k1,12165:8447966,43077467:263395 +k1,12165:9370654,43077467:263396 +k1,12165:13127773,43077467:263395 +k1,12165:16416965,43077467:263395 +k1,12165:17363245,43077467:263395 +k1,12165:20307718,43077467:263395 +k1,12165:21855619,43077467:263395 +k1,12165:25552446,43077467:263396 +k1,12165:29220436,43077467:263395 +k1,12165:30293201,43077467:263395 +k1,12165:32583029,43077467:0 +) +(1,12166:6630773,43942547:25952256,513147,134348 +k1,12165:10001111,43942547:243615 +k1,12165:10896154,43942547:243615 +k1,12165:12158854,43942547:243615 +k1,12165:13685664,43942547:243615 +k1,12165:15658119,43942547:243615 +k1,12165:20139948,43942547:243616 +k1,12165:21154266,43942547:243615 +k1,12165:26052903,43942547:243615 +k1,12165:26955810,43942547:243615 +k1,12165:28529806,43942547:243615 +k1,12165:31006233,43942547:243615 +k1,12165:32583029,43942547:0 +) +(1,12166:6630773,44807627:25952256,513147,126483 +k1,12165:7363728,44807627:201458 +k1,12165:10774483,44807627:201457 +k1,12165:12442637,44807627:201458 +k1,12165:13110055,44807627:201457 +k1,12165:14687114,44807627:201458 +k1,12165:16242546,44807627:201458 +k1,12165:20329633,44807627:201457 +k1,12165:20886951,44807627:201458 +k1,12165:22469252,44807627:201457 +k1,12165:23803172,44807627:201458 +k1,12165:25965467,44807627:201458 +k1,12165:26522784,44807627:201457 +k1,12165:28007437,44807627:201458 +k1,12165:30663217,44807627:201457 +k1,12165:31812326,44807627:201458 +k1,12165:32583029,44807627:0 +) +(1,12166:6630773,45672707:25952256,505283,134348 +g1,12165:9321025,45672707 +g1,12165:11075423,45672707 +g1,12165:13284641,45672707 +g1,12165:13839730,45672707 +k1,12166:32583030,45672707:16859796 +g1,12166:32583030,45672707 +) +] +(1,12168:32583029,45706769:0,0,0 +g1,12168:32583029,45706769 +) +) +] +(1,12168:6630773,47279633:25952256,0,0 +h1,12168:6630773,47279633:25952256,0,0 +) +] +(1,12168:4262630,4025873:0,0,0 +[1,12168:-473656,4025873:0,0,0 +(1,12168:-473656,-710413:0,0,0 +(1,12168:-473656,-710413:0,0,0 +g1,12168:-473656,-710413 +) +g1,12168:-473656,-710413 ) ] ) ] !25065 -}191 -Input:2019:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2020:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2021:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}192 Input:2022:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2023:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2024:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{192 -[1,12218:4262630,47279633:28320399,43253760,0 -(1,12218:4262630,4025873:0,0,0 -[1,12218:-473656,4025873:0,0,0 -(1,12218:-473656,-710413:0,0,0 -(1,12218:-473656,-644877:0,0,0 -k1,12218:-473656,-644877:-65536 +{193 +[1,12217:4262630,47279633:28320399,43253760,0 +(1,12217:4262630,4025873:0,0,0 +[1,12217:-473656,4025873:0,0,0 +(1,12217:-473656,-710413:0,0,0 +(1,12217:-473656,-644877:0,0,0 +k1,12217:-473656,-644877:-65536 ) -(1,12218:-473656,4736287:0,0,0 -k1,12218:-473656,4736287:5209943 +(1,12217:-473656,4736287:0,0,0 +k1,12217:-473656,4736287:5209943 ) -g1,12218:-473656,-710413 +g1,12217:-473656,-710413 ) ] ) -[1,12218:6630773,47279633:25952256,43253760,0 -[1,12218:6630773,4812305:25952256,786432,0 -(1,12218:6630773,4812305:25952256,505283,134348 -(1,12218:6630773,4812305:25952256,505283,134348 -g1,12218:3078558,4812305 -[1,12218:3078558,4812305:0,0,0 -(1,12218:3078558,2439708:0,1703936,0 -k1,12218:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12218:2537886,2439708:1179648,16384,0 +[1,12217:6630773,47279633:25952256,43253760,0 +[1,12217:6630773,4812305:25952256,786432,0 +(1,12217:6630773,4812305:25952256,505283,134348 +(1,12217:6630773,4812305:25952256,505283,134348 +g1,12217:3078558,4812305 +[1,12217:3078558,4812305:0,0,0 +(1,12217:3078558,2439708:0,1703936,0 +k1,12217:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12217:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12218:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12217:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12218:3078558,4812305:0,0,0 -(1,12218:3078558,2439708:0,1703936,0 -g1,12218:29030814,2439708 -g1,12218:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12218:36151628,1915420:16384,1179648,0 +[1,12217:3078558,4812305:0,0,0 +(1,12217:3078558,2439708:0,1703936,0 +g1,12217:29030814,2439708 +g1,12217:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12217:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12218:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12217:37855564,2439708:1179648,16384,0 ) ) -k1,12218:3078556,2439708:-34777008 +k1,12217:3078556,2439708:-34777008 ) ] -[1,12218:3078558,4812305:0,0,0 -(1,12218:3078558,49800853:0,16384,2228224 -k1,12218:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12218:2537886,49800853:1179648,16384,0 +[1,12217:3078558,4812305:0,0,0 +(1,12217:3078558,49800853:0,16384,2228224 +k1,12217:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12217:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12218:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12217:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 -) -] -) -) -) -] -[1,12218:3078558,4812305:0,0,0 -(1,12218:3078558,49800853:0,16384,2228224 -g1,12218:29030814,49800853 -g1,12218:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12218:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12218:37855564,49800853:1179648,16384,0 -) -) -k1,12218:3078556,49800853:-34777008 -) -] -g1,12218:6630773,4812305 -g1,12218:6630773,4812305 -g1,12218:9311850,4812305 -g1,12218:11771416,4812305 -g1,12218:13181095,4812305 -g1,12218:15986691,4812305 -k1,12218:31387652,4812305:15400961 -) -) -] -[1,12218:6630773,45706769:25952256,40108032,0 -(1,12218:6630773,45706769:25952256,40108032,0 -(1,12218:6630773,45706769:0,0,0 -g1,12218:6630773,45706769 -) -[1,12218:6630773,45706769:25952256,40108032,0 -(1,12169:6630773,6254097:25952256,513147,134348 -h1,12168:6630773,6254097:983040,0,0 -k1,12168:10201320,6254097:232798 -k1,12168:11425678,6254097:232798 -k1,12168:15751200,6254097:232799 -k1,12168:17056167,6254097:232798 -k1,12168:21208018,6254097:232798 -k1,12168:24753006,6254097:232798 -k1,12168:26004890,6254097:232799 -k1,12168:28395133,6254097:232798 -k1,12168:31923737,6254097:232798 -k1,12168:32583029,6254097:0 -) -(1,12169:6630773,7119177:25952256,513147,134348 -k1,12168:9054950,7119177:197263 -k1,12168:9935098,7119177:197263 -k1,12168:12355343,7119177:197264 -k1,12168:13211898,7119177:197263 -k1,12168:15611171,7119177:197263 -k1,12168:18271932,7119177:197263 -k1,12168:19097031,7119177:197264 -k1,12168:20497535,7119177:197263 -k1,12168:22638596,7119177:197263 -k1,12168:25068671,7119177:197263 -k1,12168:26257495,7119177:197264 -k1,12168:30373811,7119177:197263 -k1,12168:31230366,7119177:197263 -k1,12169:32583029,7119177:0 -) -(1,12169:6630773,7984257:25952256,505283,134348 -k1,12168:8314252,7984257:196467 -k1,12168:9890908,7984257:196468 -k1,12168:11078935,7984257:196467 -k1,12168:12421627,7984257:196467 -k1,12168:15187762,7984257:196468 -k1,12168:16000267,7984257:196467 -k1,12168:18488528,7984257:196467 -k1,12168:21700963,7984257:196468 -k1,12168:23531243,7984257:196467 -k1,12168:24596063,7984257:196468 -k1,12168:26816282,7984257:196467 -k1,12168:28406700,7984257:196467 -k1,12168:30835980,7984257:196468 -k1,12168:31563944,7984257:196467 -k1,12168:32583029,7984257:0 -) -(1,12169:6630773,8849337:25952256,513147,134348 -k1,12168:10073380,8849337:139592 -k1,12168:10872263,8849337:139591 -k1,12168:13615600,8849337:139592 -k1,12168:16426439,8849337:139592 -k1,12168:19230069,8849337:139591 -k1,12168:20028953,8849337:139592 -k1,12168:23194341,8849337:139591 -k1,12168:24223912,8849337:139592 -k1,12168:27251676,8849337:139592 -k1,12168:29770879,8849337:139591 -k1,12168:30929556,8849337:139592 -k1,12168:32583029,8849337:0 -) -(1,12169:6630773,9714417:25952256,513147,134348 -k1,12168:8630003,9714417:261215 -k1,12168:9963388,9714417:261216 -k1,12168:12694655,9714417:261215 -k1,12168:13607298,9714417:261215 -k1,12168:16279584,9714417:261216 -k1,12168:17350169,9714417:261215 -k1,12168:19901212,9714417:261215 -k1,12168:23289151,9714417:261216 -k1,12168:24201794,9714417:261215 -k1,12168:27225352,9714417:261215 -k1,12168:29893050,9714417:261216 -k1,12168:31107814,9714417:261215 -k1,12168:32583029,9714417:0 -) -(1,12169:6630773,10579497:25952256,513147,134348 -k1,12168:9132871,10579497:167706 -k1,12168:10810528,10579497:167707 -k1,12168:12713627,10579497:167706 -k1,12168:15665959,10579497:167707 -k1,12168:17227616,10579497:167706 -k1,12168:20066569,10579497:167706 -k1,12168:24747086,10579497:167707 -k1,12168:28539588,10579497:167706 -k1,12168:29726380,10579497:167707 -k1,12168:31649796,10579497:167706 -k1,12168:32583029,10579497:0 -) -(1,12169:6630773,11444577:25952256,505283,126483 -g1,12168:9665089,11444577 -(1,12168:9665089,11444577:0,452978,115847 -r1,12218:11781914,11444577:2116825,568825,115847 -k1,12168:9665089,11444577:-2116825 -) -(1,12168:9665089,11444577:2116825,452978,115847 -k1,12168:9665089,11444577:3277 -h1,12168:11778637,11444577:0,411205,112570 -) -g1,12168:11981143,11444577 -g1,12168:13371817,11444577 -(1,12168:13371817,11444577:0,452978,115847 -r1,12218:16543777,11444577:3171960,568825,115847 -k1,12168:13371817,11444577:-3171960 -) -(1,12168:13371817,11444577:3171960,452978,115847 -k1,12168:13371817,11444577:3277 -h1,12168:16540500,11444577:0,411205,112570 -) -k1,12169:32583029,11444577:15986824 -g1,12169:32583029,11444577 -) -(1,12171:6630773,12309657:25952256,513147,134348 -h1,12170:6630773,12309657:983040,0,0 -g1,12170:8766591,12309657 -g1,12170:10454143,12309657 -g1,12170:12047323,12309657 -g1,12170:12602412,12309657 -g1,12170:15895596,12309657 -g1,12170:17662446,12309657 -g1,12170:18221468,12309657 -g1,12170:20454934,12309657 -g1,12170:22708717,12309657 -g1,12170:24675452,12309657 -g1,12170:26372834,12309657 -k1,12171:32583029,12309657:5153755 -g1,12171:32583029,12309657 -) -(1,12177:7202902,13699025:24807998,513147,134348 -(1,12171:7202902,13699025:983040,0,0 -g1,12171:8185942,13699025 -g1,12171:6875222,13699025 -g1,12171:6547542,13699025 -(1,12171:6547542,13699025:1310720,0,0 -k1,12171:7858262,13699025:1310720 -) -g1,12171:8185942,13699025 -) -k1,12172:8185942,13699025:-21627 -k1,12172:9683797,13699025:322795 -k1,12172:11331729,13699025:322794 -k1,12172:12313816,13699025:322795 -k1,12172:17480377,13699025:322795 -k1,12172:22155417,13699025:322794 -k1,12172:23009709,13699025:322795 -k1,12172:25630851,13699025:322794 -k1,12172:27025815,13699025:322795 -k1,12172:29493603,13699025:322795 -k1,12172:30172257,13699025:322794 -k1,12172:31351608,13699025:322795 -k1,12172:32010900,13699025:0 -) -(1,12177:7202902,14564105:24807998,513147,134348 -k1,12172:9673891,14564105:208030 -k1,12173:11874215,14564105:208030 -k1,12173:13101330,14564105:208030 -k1,12173:15192209,14564105:208030 -k1,12173:17235902,14564105:208030 -k1,12173:17909893,14564105:208030 -k1,12173:19288396,14564105:208030 -k1,12173:20773723,14564105:208030 -k1,12173:21337613,14564105:208030 -k1,12173:23438323,14564105:208030 -k1,12173:24305645,14564105:208030 -k1,12173:26649493,14564105:208030 -k1,12173:28874721,14564105:208030 -k1,12173:30030402,14564105:208030 -k1,12173:32010900,14564105:0 -) -(1,12177:7202902,15429185:24807998,513147,126483 -k1,12173:8820931,15429185:184101 -k1,12174:10175506,15429185:184102 -k1,12174:12315857,15429185:184101 -k1,12174:14570897,15429185:184102 -k1,12174:16206620,15429185:184101 -k1,12174:17042149,15429185:184101 -k1,12174:18318736,15429185:184102 -k1,12174:19312207,15429185:184101 -k1,12174:21778928,15429185:184102 -k1,12174:25713654,15429185:184101 -k1,12174:26845407,15429185:184102 -k1,12174:28314014,15429185:184101 -k1,12174:32010900,15429185:0 -) -(1,12177:7202902,16294265:24807998,513147,134348 -k1,12174:8558736,16294265:160457 -k1,12175:11425175,16294265:160457 -k1,12175:12043729,16294265:160457 -k1,12175:12735683,16294265:160457 -k1,12175:15526100,16294265:160457 -k1,12175:16634208,16294265:160457 -k1,12175:18009008,16294265:160418 -k1,12175:20459293,16294265:160457 -k1,12175:21271178,16294265:160457 -k1,12175:22410088,16294265:160457 -k1,12175:25055670,16294265:160457 -k1,12175:29532984,16294265:160457 -k1,12177:32010900,16294265:0 -) -(1,12177:7202902,17159345:24807998,513147,134348 -g1,12175:8392380,17159345 -g1,12175:9400979,17159345 -g1,12176:11148824,17159345 -g1,12176:12903222,17159345 -g1,12176:13761743,17159345 -g1,12176:15920498,17159345 -g1,12176:17499915,17159345 -k1,12177:32010900,17159345:13466997 -g1,12177:32010900,17159345 -) -(1,12180:6630773,18548713:25952256,513147,134348 -h1,12179:6630773,18548713:983040,0,0 -k1,12179:8729639,18548713:162277 -k1,12179:9939181,18548713:162277 -k1,12179:11385964,18548713:162277 -k1,12179:13945548,18548713:162277 -k1,12179:16892450,18548713:162277 -k1,12179:18046287,18548713:162277 -k1,12179:21620369,18548713:162278 -k1,12179:23637315,18548713:162277 -k1,12179:24608962,18548713:162277 -k1,12179:25790324,18548713:162277 -k1,12179:27507770,18548713:162277 -k1,12179:28329339,18548713:162277 -k1,12179:29510701,18548713:162277 -k1,12179:32583029,18548713:0 -) -(1,12180:6630773,19413793:25952256,513147,134348 -k1,12179:9271975,19413793:262245 -k1,12179:11088734,19413793:262245 -k1,12179:14031402,19413793:262245 -k1,12179:15687597,19413793:262244 -k1,12179:16968927,19413793:262245 -k1,12179:18902995,19413793:262245 -k1,12179:20551326,19413793:262245 -k1,12179:22965773,19413793:262245 -k1,12179:23895174,19413793:262245 -k1,12179:24745932,19413793:262245 -k1,12179:27020131,19413793:262244 -k1,12179:29540091,19413793:262245 -k1,12179:31298523,19413793:262245 -k1,12179:32583029,19413793:0 -) -(1,12180:6630773,20278873:25952256,513147,134348 -k1,12179:9925804,20278873:269234 -k1,12179:10881199,20278873:269233 -k1,12179:13989453,20278873:269234 -k1,12179:15068057,20278873:269234 -k1,12179:18099633,20278873:269233 -k1,12179:20085255,20278873:269234 -k1,12179:21013780,20278873:269233 -k1,12179:23746512,20278873:269234 -k1,12179:25258309,20278873:269234 -k1,12179:28502221,20278873:269233 -k1,12179:29962900,20278873:269234 -k1,12179:32583029,20278873:0 -) -(1,12180:6630773,21143953:25952256,426639,7863 -k1,12180:32583028,21143953:23609344 -g1,12180:32583028,21143953 -) -(1,12182:6630773,22009033:25952256,513147,134348 -h1,12181:6630773,22009033:983040,0,0 -k1,12181:8288183,22009033:259527 -k1,12181:9648775,22009033:259587 -k1,12181:11492368,22009033:259588 -k1,12181:14278368,22009033:259587 -k1,12181:15485607,22009033:259588 -k1,12181:16764279,22009033:259587 -k1,12181:21867633,22009033:259588 -k1,12181:26479466,22009033:259587 -k1,12181:29949663,22009033:259588 -k1,12181:31281420,22009033:259588 -k1,12181:32227169,22009033:259587 -k1,12181:32583029,22009033:0 -) -(1,12182:6630773,22874113:25952256,505283,126483 -k1,12181:9064007,22874113:187315 -k1,12181:10535828,22874113:187315 -k1,12181:11824147,22874113:187314 -k1,12181:14440882,22874113:187315 -k1,12181:16015594,22874113:187315 -k1,12181:17221994,22874113:187315 -k1,12181:19265944,22874113:187315 -k1,12181:22363712,22874113:187314 -k1,12181:22965858,22874113:187303 -k1,12181:26009887,22874113:187315 -k1,12181:28868449,22874113:187315 -k1,12181:32583029,22874113:0 -) -(1,12182:6630773,23739193:25952256,513147,126483 -k1,12181:8023600,23739193:217767 -k1,12181:9440020,23739193:217766 -k1,12181:11259487,23739193:217767 -k1,12181:13977453,23739193:217767 -k1,12181:17179729,23739193:217766 -k1,12181:17928993,23739193:217767 -k1,12181:20014536,23739193:217767 -k1,12181:21159636,23739193:217766 -k1,12181:22568848,23739193:217767 -k1,12181:23142474,23739193:217766 -k1,12181:25010438,23739193:217767 -k1,12181:27216567,23739193:217767 -k1,12181:28625778,23739193:217766 -k1,12181:31700259,23739193:217767 -k1,12182:32583029,23739193:0 -) -(1,12182:6630773,24604273:25952256,513147,134348 -k1,12181:9198286,24604273:185935 -k1,12181:10778172,24604273:185935 -k1,12181:13050773,24604273:185935 -k1,12181:17486062,24604273:185935 -k1,12181:18203494,24604273:185935 -k1,12181:20257205,24604273:185935 -k1,12181:21370474,24604273:185935 -k1,12181:22753096,24604273:185935 -k1,12181:25272113,24604273:185935 -k1,12181:26783186,24604273:185935 -k1,12181:27500618,24604273:185935 -k1,12181:28971059,24604273:185935 -k1,12181:29512854,24604273:185935 -k1,12181:31436804,24604273:185935 -k1,12181:32583029,24604273:0 -) -(1,12182:6630773,25469353:25952256,513147,134348 -k1,12181:8607556,25469353:188961 -k1,12181:9900800,25469353:188962 -k1,12181:10837527,25469353:188961 -k1,12181:12539714,25469353:188961 -k1,12181:13414837,25469353:188961 -k1,12181:13959659,25469353:188962 -k1,12181:16455487,25469353:188961 -k1,12181:18382463,25469353:188961 -k1,12181:19762869,25469353:188961 -k1,12181:21236337,25469353:188962 -k1,12181:22444383,25469353:188961 -k1,12181:25030651,25469353:188961 -k1,12181:27553349,25469353:188961 -k1,12181:28409467,25469353:188962 -(1,12181:28409467,25469353:0,452978,115847 -r1,12218:30526292,25469353:2116825,568825,115847 -k1,12181:28409467,25469353:-2116825 -) -(1,12181:28409467,25469353:2116825,452978,115847 -k1,12181:28409467,25469353:3277 -h1,12181:30523015,25469353:0,411205,112570 -) -k1,12181:30715253,25469353:188961 -k1,12181:32583029,25469353:0 -) -(1,12182:6630773,26334433:25952256,513147,134348 -k1,12181:9566130,26334433:233308 -k1,12181:10608808,26334433:233308 -k1,12181:11861201,26334433:233308 -k1,12181:15497138,26334433:233308 -k1,12181:16389738,26334433:233308 -k1,12181:17642131,26334433:233308 -k1,12181:19148805,26334433:233309 -k1,12181:21173867,26334433:233308 -k1,12181:24837985,26334433:233308 -k1,12181:26914165,26334433:233308 -k1,12181:28015825,26334433:233308 -k1,12181:30017950,26334433:233308 -k1,12181:31298523,26334433:233308 -k1,12181:32583029,26334433:0 -) -(1,12182:6630773,27199513:25952256,513147,134348 -k1,12181:7875792,27199513:225934 -k1,12181:10439396,27199513:225934 -k1,12181:11332487,27199513:225935 -(1,12181:11332487,27199513:0,452978,115847 -r1,12218:13449312,27199513:2116825,568825,115847 -k1,12181:11332487,27199513:-2116825 -) -(1,12181:11332487,27199513:2116825,452978,115847 -k1,12181:11332487,27199513:3277 -h1,12181:13446035,27199513:0,411205,112570 -) -k1,12181:13675246,27199513:225934 -k1,12181:17312984,27199513:225934 -k1,12181:18558003,27199513:225934 -k1,12181:21219255,27199513:225934 -k1,12181:22544883,27199513:225934 -k1,12181:23422246,27199513:225935 -k1,12181:26410523,27199513:225934 -k1,12181:29033764,27199513:225934 -k1,12181:31923737,27199513:225934 -k1,12182:32583029,27199513:0 -) -(1,12182:6630773,28064593:25952256,513147,134348 -(1,12181:6630773,28064593:0,452978,115847 -r1,12218:8747598,28064593:2116825,568825,115847 -k1,12181:6630773,28064593:-2116825 -) -(1,12181:6630773,28064593:2116825,452978,115847 -k1,12181:6630773,28064593:3277 -h1,12181:8744321,28064593:0,411205,112570 -) -k1,12181:8933392,28064593:185794 -k1,12181:10973854,28064593:185793 -k1,12181:11969018,28064593:185794 -k1,12181:13173896,28064593:185793 -k1,12181:14914859,28064593:185794 -k1,12181:15759944,28064593:185793 -k1,12181:16964823,28064593:185794 -k1,12181:20553246,28064593:185794 -k1,12181:23117996,28064593:185793 -k1,12181:24057454,28064593:185794 -k1,12181:26550114,28064593:185793 -k1,12181:29761705,28064593:185794 -k1,12181:32583029,28064593:0 -) -(1,12182:6630773,28929673:25952256,513147,134348 -k1,12181:7681163,28929673:288862 -k1,12181:10409276,28929673:288863 -k1,12181:12552807,28929673:288862 -k1,12181:14217270,28929673:288862 -k1,12181:15315503,28929673:288863 -k1,12181:16623450,28929673:288862 -k1,12181:19984640,28929673:288862 -k1,12181:22478789,28929673:288862 -k1,12181:23419080,28929673:288863 -k1,12181:24063802,28929673:288862 -k1,12181:26225683,28929673:288862 -k1,12181:29968949,28929673:288863 -k1,12181:31276896,28929673:288862 -k1,12181:32583029,28929673:0 -) -(1,12182:6630773,29794753:25952256,513147,134348 -k1,12181:8235094,29794753:273940 -k1,12181:9262699,29794753:273941 -k1,12181:11843506,29794753:273940 -k1,12181:15143243,29794753:273940 -k1,12181:16521466,29794753:273941 -k1,12181:19529568,29794753:273940 -k1,12181:20822593,29794753:273940 -k1,12181:22196228,29794753:273941 -k1,12181:24324837,29794753:273940 -k1,12181:25408147,29794753:273940 -k1,12181:26701173,29794753:273941 -k1,12181:30377742,29794753:273940 -k1,12181:32583029,29794753:0 -) -(1,12182:6630773,30659833:25952256,513147,134348 -k1,12181:7539801,30659833:257600 -k1,12181:9447598,30659833:257600 -k1,12181:11147646,30659833:257601 -k1,12181:12561956,30659833:257600 -k1,12181:16100288,30659833:257600 -k1,12181:17549333,30659833:257600 -k1,12181:18826018,30659833:257600 -k1,12181:22015044,30659833:257601 -k1,12181:22931936,30659833:257600 -k1,12181:24208621,30659833:257600 -k1,12181:26756049,30659833:257600 -k1,12181:27672941,30659833:257600 -k1,12181:28286402,30659833:257601 -k1,12181:30238763,30659833:257600 -k1,12181:32051532,30659833:257600 -k1,12181:32583029,30659833:0 -) -(1,12182:6630773,31524913:25952256,513147,134348 -k1,12181:9013006,31524913:244449 -k1,12181:9908883,31524913:244449 -k1,12181:11172418,31524913:244450 -k1,12181:15048217,31524913:244449 -k1,12181:15920501,31524913:244449 -k1,12181:16918614,31524913:244449 -k1,12181:20362532,31524913:244450 -k1,12181:21626066,31524913:244449 -k1,12181:26549786,31524913:244449 -k1,12181:27453527,31524913:244449 -k1,12181:28053837,31524913:244450 -k1,12181:30605153,31524913:244449 -k1,12181:31841162,31524913:244449 -k1,12182:32583029,31524913:0 -) -(1,12182:6630773,32389993:25952256,513147,134348 -k1,12181:13042160,32389993:218235 -k1,12181:14635996,32389993:218235 -k1,12181:15615759,32389993:218235 -k1,12181:17342633,32389993:218235 -k1,12181:19472553,32389993:218235 -k1,12181:21013960,32389993:218235 -k1,12181:22251280,32389993:218235 -k1,12181:24024684,32389993:218235 -k1,12181:24902211,32389993:218235 -k1,12181:25891149,32389993:218235 -k1,12181:28068910,32389993:218235 -k1,12181:29048673,32389993:218235 -k1,12181:29622768,32389993:218235 -k1,12181:32583029,32389993:0 -) -(1,12182:6630773,33255073:25952256,505283,134348 -k1,12181:8740377,33255073:243794 -k1,12181:11022341,33255073:243794 -k1,12181:11952296,33255073:243793 -k1,12181:12966793,33255073:243794 -k1,12181:15989314,33255073:243794 -k1,12181:16884536,33255073:243794 -k1,12181:18147415,33255073:243794 -k1,12181:20350734,33255073:243793 -k1,12181:21826605,33255073:243794 -k1,12181:24349086,33255073:243794 -h1,12181:25319674,33255073:0,0,0 -k1,12181:25563468,33255073:243794 -k1,12181:26616632,33255073:243794 -k1,12181:28358578,33255073:243793 -h1,12181:29553955,33255073:0,0,0 -k1,12181:29797749,33255073:243794 -k1,12181:31864099,33255073:243794 -k1,12182:32583029,33255073:0 -) -(1,12182:6630773,34120153:25952256,505283,95026 -k1,12182:32583030,34120153:23196468 -g1,12182:32583030,34120153 -) -(1,12184:6630773,34985233:25952256,513147,126483 -h1,12183:6630773,34985233:983040,0,0 -k1,12183:8833539,34985233:266177 -k1,12183:10405849,34985233:266177 -k1,12183:13040497,34985233:266177 -k1,12183:14463384,34985233:266177 -k1,12183:15388853,34985233:266177 -k1,12183:16674115,34985233:266177 -k1,12183:19724918,34985233:266178 -k1,12183:22325487,34985233:266177 -k1,12183:25375633,34985233:266177 -k1,12183:26257848,34985233:266177 -k1,12183:27112538,34985233:266177 -k1,12183:28575402,34985233:266177 -k1,12183:31923737,34985233:266177 -k1,12184:32583029,34985233:0 -) -(1,12184:6630773,35850313:25952256,513147,134348 -(1,12183:6630773,35850313:0,414482,115847 -r1,12218:8044174,35850313:1413401,530329,115847 -k1,12183:6630773,35850313:-1413401 -) -(1,12183:6630773,35850313:1413401,414482,115847 -k1,12183:6630773,35850313:3277 -h1,12183:8040897,35850313:0,411205,112570 -) -g1,12183:8243403,35850313 -g1,12183:10433616,35850313 -g1,12183:11917351,35850313 -g1,12183:12574677,35850313 -g1,12183:13305403,35850313 -g1,12183:14523717,35850313 -g1,12183:17029813,35850313 -g1,12183:18176693,35850313 -g1,12183:18731782,35850313 -k1,12184:32583029,35850313:11344495 -g1,12184:32583029,35850313 -) -v1,12186:6630773,36535168:0,393216,0 -(1,12196:6630773,39613671:25952256,3471719,196608 -g1,12196:6630773,39613671 -g1,12196:6630773,39613671 -g1,12196:6434165,39613671 -(1,12196:6434165,39613671:0,3471719,196608 -r1,12218:32779637,39613671:26345472,3668327,196608 -k1,12196:6434165,39613671:-26345472 -) -(1,12196:6434165,39613671:26345472,3471719,196608 -[1,12196:6630773,39613671:25952256,3275111,0 -(1,12188:6630773,36636933:25952256,298373,6605 -(1,12187:6630773,36636933:0,0,0 -g1,12187:6630773,36636933 -g1,12187:6630773,36636933 -g1,12187:6303093,36636933 -(1,12187:6303093,36636933:0,0,0 -) -g1,12187:6630773,36636933 -) -h1,12188:7958589,36636933:0,0,0 -k1,12188:32583029,36636933:24624440 -g1,12188:32583029,36636933 -) -(1,12195:6630773,37452860:25952256,431045,86428 -(1,12190:6630773,37452860:0,0,0 -g1,12190:6630773,37452860 -g1,12190:6630773,37452860 -g1,12190:6303093,37452860 -(1,12190:6303093,37452860:0,0,0 -) -g1,12190:6630773,37452860 -) -g1,12195:7626635,37452860 -g1,12195:10614220,37452860 -g1,12195:11942036,37452860 -h1,12195:13269852,37452860:0,0,0 -k1,12195:32583028,37452860:19313176 -g1,12195:32583028,37452860 -) -(1,12195:6630773,38137715:25952256,424439,79822 -h1,12195:6630773,38137715:0,0,0 -g1,12195:7626635,38137715 -h1,12195:13269852,38137715:0,0,0 -k1,12195:32583028,38137715:19313176 -g1,12195:32583028,38137715 -) -(1,12195:6630773,38822570:25952256,431045,106246 -h1,12195:6630773,38822570:0,0,0 -g1,12195:7626635,38822570 -g1,12195:11278128,38822570 -k1,12195:11278128,38822570:0 -h1,12195:17585253,38822570:0,0,0 -k1,12195:32583029,38822570:14997776 -g1,12195:32583029,38822570 -) -(1,12195:6630773,39507425:25952256,424439,106246 -h1,12195:6630773,39507425:0,0,0 -g1,12195:7626635,39507425 -g1,12195:12273990,39507425 -k1,12195:12273990,39507425:0 -h1,12195:17253299,39507425:0,0,0 -k1,12195:32583029,39507425:15329730 -g1,12195:32583029,39507425 -) -] -) -g1,12196:32583029,39613671 -g1,12196:6630773,39613671 -g1,12196:6630773,39613671 -g1,12196:32583029,39613671 -g1,12196:32583029,39613671 -) -h1,12196:6630773,39810279:0,0,0 -(1,12200:6630773,40675359:25952256,513147,126483 -h1,12199:6630773,40675359:983040,0,0 -k1,12199:8781967,40675359:214605 -k1,12199:10100854,40675359:214605 -k1,12199:11581615,40675359:214605 -k1,12199:12862491,40675359:214605 -k1,12199:14962567,40675359:214605 -k1,12199:19856443,40675359:214605 -k1,12199:20730341,40675359:214606 -k1,12199:21300806,40675359:214605 -k1,12199:23969734,40675359:214605 -k1,12199:25175899,40675359:214605 -k1,12199:28174473,40675359:214605 -k1,12199:29005116,40675359:214605 -k1,12199:30238806,40675359:214605 -k1,12199:32583029,40675359:0 -) -(1,12200:6630773,41540439:25952256,505283,134348 -g1,12199:8900284,41540439 -g1,12199:10547859,41540439 -g1,12199:12482481,41540439 -(1,12199:12482481,41540439:0,452978,115847 -r1,12218:15654441,41540439:3171960,568825,115847 -k1,12199:12482481,41540439:-3171960 -) -(1,12199:12482481,41540439:3171960,452978,115847 -k1,12199:12482481,41540439:3277 -h1,12199:15651164,41540439:0,411205,112570 -) -k1,12200:32583029,41540439:16876160 -g1,12200:32583029,41540439 -) -v1,12202:6630773,42225294:0,393216,0 -(1,12212:6630773,45436469:25952256,3604391,196608 -g1,12212:6630773,45436469 -g1,12212:6630773,45436469 -g1,12212:6434165,45436469 -(1,12212:6434165,45436469:0,3604391,196608 -r1,12218:32779637,45436469:26345472,3800999,196608 -k1,12212:6434165,45436469:-26345472 -) -(1,12212:6434165,45436469:26345472,3604391,196608 -[1,12212:6630773,45436469:25952256,3407783,0 -(1,12204:6630773,42453125:25952256,424439,79822 -(1,12203:6630773,42453125:0,0,0 -g1,12203:6630773,42453125 -g1,12203:6630773,42453125 -g1,12203:6303093,42453125 -(1,12203:6303093,42453125:0,0,0 -) -g1,12203:6630773,42453125 -) -k1,12204:6630773,42453125:0 -h1,12204:10946175,42453125:0,0,0 -k1,12204:32583029,42453125:21636854 -g1,12204:32583029,42453125 -) -(1,12211:6630773,43269052:25952256,431045,79822 -(1,12206:6630773,43269052:0,0,0 -g1,12206:6630773,43269052 -g1,12206:6630773,43269052 -g1,12206:6303093,43269052 -(1,12206:6303093,43269052:0,0,0 -) -g1,12206:6630773,43269052 -) -g1,12211:7626635,43269052 -g1,12211:7958589,43269052 -g1,12211:9286405,43269052 -g1,12211:12605944,43269052 -g1,12211:12937898,43269052 -g1,12211:13269852,43269052 -g1,12211:13601806,43269052 -g1,12211:13933760,43269052 -g1,12211:14265714,43269052 -g1,12211:14597668,43269052 -g1,12211:14929622,43269052 -g1,12211:19245023,43269052 -g1,12211:19576977,43269052 -g1,12211:19908931,43269052 -g1,12211:20240885,43269052 -g1,12211:20572839,43269052 -g1,12211:25220194,43269052 -g1,12211:25552148,43269052 -g1,12211:25884102,43269052 -g1,12211:26216056,43269052 -h1,12211:30199503,43269052:0,0,0 -k1,12211:32583029,43269052:2383526 -g1,12211:32583029,43269052 -) -(1,12211:6630773,43953907:25952256,424439,106246 -h1,12211:6630773,43953907:0,0,0 -g1,12211:7626635,43953907 -g1,12211:7958589,43953907 -g1,12211:9286405,43953907 -g1,12211:13601806,43953907 -g1,12211:13933760,43953907 -g1,12211:14265714,43953907 -g1,12211:14597668,43953907 -g1,12211:14929622,43953907 -g1,12211:19576977,43953907 -g1,12211:19908931,43953907 -g1,12211:20240885,43953907 -g1,12211:20572839,43953907 -g1,12211:26216056,43953907 -h1,12211:30531457,43953907:0,0,0 -k1,12211:32583029,43953907:2051572 -g1,12211:32583029,43953907 -) -(1,12211:6630773,44638762:25952256,424439,106246 -h1,12211:6630773,44638762:0,0,0 -g1,12211:7626635,44638762 -g1,12211:7958589,44638762 -g1,12211:9286405,44638762 -g1,12211:13933760,44638762 -g1,12211:14265714,44638762 -g1,12211:14597668,44638762 -g1,12211:14929622,44638762 -h1,12211:17917207,44638762:0,0,0 -k1,12211:32583029,44638762:14665822 -g1,12211:32583029,44638762 -) -(1,12211:6630773,45323617:25952256,431045,112852 -h1,12211:6630773,45323617:0,0,0 -g1,12211:7626635,45323617 -g1,12211:8954451,45323617 -g1,12211:12605944,45323617 -g1,12211:13933760,45323617 -g1,12211:17253299,45323617 -g1,12211:18913069,45323617 -g1,12211:20240885,45323617 -g1,12211:22564563,45323617 -h1,12211:23892379,45323617:0,0,0 -k1,12211:32583029,45323617:8690650 -g1,12211:32583029,45323617 -) -] -) -g1,12212:32583029,45436469 -g1,12212:6630773,45436469 -g1,12212:6630773,45436469 -g1,12212:32583029,45436469 -g1,12212:32583029,45436469 -) -h1,12212:6630773,45633077:0,0,0 -] -(1,12218:32583029,45706769:0,0,0 -g1,12218:32583029,45706769 -) -) -] -(1,12218:6630773,47279633:25952256,0,0 -h1,12218:6630773,47279633:25952256,0,0 -) -] -(1,12218:4262630,4025873:0,0,0 -[1,12218:-473656,4025873:0,0,0 -(1,12218:-473656,-710413:0,0,0 -(1,12218:-473656,-710413:0,0,0 -g1,12218:-473656,-710413 -) -g1,12218:-473656,-710413 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 +) +] +) +) +) +] +[1,12217:3078558,4812305:0,0,0 +(1,12217:3078558,49800853:0,16384,2228224 +g1,12217:29030814,49800853 +g1,12217:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12217:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12217:37855564,49800853:1179648,16384,0 +) +) +k1,12217:3078556,49800853:-34777008 +) +] +g1,12217:6630773,4812305 +g1,12217:6630773,4812305 +g1,12217:9311850,4812305 +g1,12217:11771416,4812305 +g1,12217:13181095,4812305 +g1,12217:15986691,4812305 +k1,12217:31387652,4812305:15400961 +) +) +] +[1,12217:6630773,45706769:25952256,40108032,0 +(1,12217:6630773,45706769:25952256,40108032,0 +(1,12217:6630773,45706769:0,0,0 +g1,12217:6630773,45706769 +) +[1,12217:6630773,45706769:25952256,40108032,0 +(1,12168:6630773,6254097:25952256,513147,134348 +h1,12167:6630773,6254097:983040,0,0 +k1,12167:10201320,6254097:232798 +k1,12167:11425678,6254097:232798 +k1,12167:15751200,6254097:232799 +k1,12167:17056167,6254097:232798 +k1,12167:21208018,6254097:232798 +k1,12167:24753006,6254097:232798 +k1,12167:26004890,6254097:232799 +k1,12167:28395133,6254097:232798 +k1,12167:31923737,6254097:232798 +k1,12167:32583029,6254097:0 +) +(1,12168:6630773,7119177:25952256,513147,134348 +k1,12167:9054950,7119177:197263 +k1,12167:9935098,7119177:197263 +k1,12167:12355343,7119177:197264 +k1,12167:13211898,7119177:197263 +k1,12167:15611171,7119177:197263 +k1,12167:18271932,7119177:197263 +k1,12167:19097031,7119177:197264 +k1,12167:20497535,7119177:197263 +k1,12167:22638596,7119177:197263 +k1,12167:25068671,7119177:197263 +k1,12167:26257495,7119177:197264 +k1,12167:30373811,7119177:197263 +k1,12167:31230366,7119177:197263 +k1,12168:32583029,7119177:0 +) +(1,12168:6630773,7984257:25952256,505283,134348 +k1,12167:8314252,7984257:196467 +k1,12167:9890908,7984257:196468 +k1,12167:11078935,7984257:196467 +k1,12167:12421627,7984257:196467 +k1,12167:15187762,7984257:196468 +k1,12167:16000267,7984257:196467 +k1,12167:18488528,7984257:196467 +k1,12167:21700963,7984257:196468 +k1,12167:23531243,7984257:196467 +k1,12167:24596063,7984257:196468 +k1,12167:26816282,7984257:196467 +k1,12167:28406700,7984257:196467 +k1,12167:30835980,7984257:196468 +k1,12167:31563944,7984257:196467 +k1,12167:32583029,7984257:0 +) +(1,12168:6630773,8849337:25952256,513147,134348 +k1,12167:10073380,8849337:139592 +k1,12167:10872263,8849337:139591 +k1,12167:13615600,8849337:139592 +k1,12167:16426439,8849337:139592 +k1,12167:19230069,8849337:139591 +k1,12167:20028953,8849337:139592 +k1,12167:23194341,8849337:139591 +k1,12167:24223912,8849337:139592 +k1,12167:27251676,8849337:139592 +k1,12167:29770879,8849337:139591 +k1,12167:30929556,8849337:139592 +k1,12167:32583029,8849337:0 +) +(1,12168:6630773,9714417:25952256,513147,134348 +k1,12167:8630003,9714417:261215 +k1,12167:9963388,9714417:261216 +k1,12167:12694655,9714417:261215 +k1,12167:13607298,9714417:261215 +k1,12167:16279584,9714417:261216 +k1,12167:17350169,9714417:261215 +k1,12167:19901212,9714417:261215 +k1,12167:23289151,9714417:261216 +k1,12167:24201794,9714417:261215 +k1,12167:27225352,9714417:261215 +k1,12167:29893050,9714417:261216 +k1,12167:31107814,9714417:261215 +k1,12167:32583029,9714417:0 +) +(1,12168:6630773,10579497:25952256,513147,134348 +k1,12167:9132871,10579497:167706 +k1,12167:10810528,10579497:167707 +k1,12167:12713627,10579497:167706 +k1,12167:15665959,10579497:167707 +k1,12167:17227616,10579497:167706 +k1,12167:20066569,10579497:167706 +k1,12167:24747086,10579497:167707 +k1,12167:28539588,10579497:167706 +k1,12167:29726380,10579497:167707 +k1,12167:31649796,10579497:167706 +k1,12167:32583029,10579497:0 +) +(1,12168:6630773,11444577:25952256,505283,126483 +g1,12167:9665089,11444577 +(1,12167:9665089,11444577:0,452978,115847 +r1,12217:11781914,11444577:2116825,568825,115847 +k1,12167:9665089,11444577:-2116825 +) +(1,12167:9665089,11444577:2116825,452978,115847 +k1,12167:9665089,11444577:3277 +h1,12167:11778637,11444577:0,411205,112570 +) +g1,12167:11981143,11444577 +g1,12167:13371817,11444577 +(1,12167:13371817,11444577:0,452978,115847 +r1,12217:16543777,11444577:3171960,568825,115847 +k1,12167:13371817,11444577:-3171960 +) +(1,12167:13371817,11444577:3171960,452978,115847 +k1,12167:13371817,11444577:3277 +h1,12167:16540500,11444577:0,411205,112570 +) +k1,12168:32583029,11444577:15986824 +g1,12168:32583029,11444577 +) +(1,12170:6630773,12309657:25952256,513147,134348 +h1,12169:6630773,12309657:983040,0,0 +g1,12169:8766591,12309657 +g1,12169:10454143,12309657 +g1,12169:12047323,12309657 +g1,12169:12602412,12309657 +g1,12169:15895596,12309657 +g1,12169:17662446,12309657 +g1,12169:18221468,12309657 +g1,12169:20454934,12309657 +g1,12169:22708717,12309657 +g1,12169:24675452,12309657 +g1,12169:26372834,12309657 +k1,12170:32583029,12309657:5153755 +g1,12170:32583029,12309657 +) +(1,12176:7202902,13699025:24807998,513147,134348 +(1,12170:7202902,13699025:983040,0,0 +g1,12170:8185942,13699025 +g1,12170:6875222,13699025 +g1,12170:6547542,13699025 +(1,12170:6547542,13699025:1310720,0,0 +k1,12170:7858262,13699025:1310720 +) +g1,12170:8185942,13699025 +) +k1,12171:8185942,13699025:-21627 +k1,12171:9683797,13699025:322795 +k1,12171:11331729,13699025:322794 +k1,12171:12313816,13699025:322795 +k1,12171:17480377,13699025:322795 +k1,12171:22155417,13699025:322794 +k1,12171:23009709,13699025:322795 +k1,12171:25630851,13699025:322794 +k1,12171:27025815,13699025:322795 +k1,12171:29493603,13699025:322795 +k1,12171:30172257,13699025:322794 +k1,12171:31351608,13699025:322795 +k1,12171:32010900,13699025:0 +) +(1,12176:7202902,14564105:24807998,513147,134348 +k1,12171:9673891,14564105:208030 +k1,12172:11874215,14564105:208030 +k1,12172:13101330,14564105:208030 +k1,12172:15192209,14564105:208030 +k1,12172:17235902,14564105:208030 +k1,12172:17909893,14564105:208030 +k1,12172:19288396,14564105:208030 +k1,12172:20773723,14564105:208030 +k1,12172:21337613,14564105:208030 +k1,12172:23438323,14564105:208030 +k1,12172:24305645,14564105:208030 +k1,12172:26649493,14564105:208030 +k1,12172:28874721,14564105:208030 +k1,12172:30030402,14564105:208030 +k1,12172:32010900,14564105:0 +) +(1,12176:7202902,15429185:24807998,513147,126483 +k1,12172:8820931,15429185:184101 +k1,12173:10175506,15429185:184102 +k1,12173:12315857,15429185:184101 +k1,12173:14570897,15429185:184102 +k1,12173:16206620,15429185:184101 +k1,12173:17042149,15429185:184101 +k1,12173:18318736,15429185:184102 +k1,12173:19312207,15429185:184101 +k1,12173:21778928,15429185:184102 +k1,12173:25713654,15429185:184101 +k1,12173:26845407,15429185:184102 +k1,12173:28314014,15429185:184101 +k1,12173:32010900,15429185:0 +) +(1,12176:7202902,16294265:24807998,513147,134348 +k1,12173:8558736,16294265:160457 +k1,12174:11425175,16294265:160457 +k1,12174:12043729,16294265:160457 +k1,12174:12735683,16294265:160457 +k1,12174:15526100,16294265:160457 +k1,12174:16634208,16294265:160457 +k1,12174:18009008,16294265:160418 +k1,12174:20459293,16294265:160457 +k1,12174:21271178,16294265:160457 +k1,12174:22410088,16294265:160457 +k1,12174:25055670,16294265:160457 +k1,12174:29532984,16294265:160457 +k1,12176:32010900,16294265:0 +) +(1,12176:7202902,17159345:24807998,513147,134348 +g1,12174:8392380,17159345 +g1,12174:9400979,17159345 +g1,12175:11148824,17159345 +g1,12175:12903222,17159345 +g1,12175:13761743,17159345 +g1,12175:15920498,17159345 +g1,12175:17499915,17159345 +k1,12176:32010900,17159345:13466997 +g1,12176:32010900,17159345 +) +(1,12179:6630773,18548713:25952256,513147,134348 +h1,12178:6630773,18548713:983040,0,0 +k1,12178:8729639,18548713:162277 +k1,12178:9939181,18548713:162277 +k1,12178:11385964,18548713:162277 +k1,12178:13945548,18548713:162277 +k1,12178:16892450,18548713:162277 +k1,12178:18046287,18548713:162277 +k1,12178:21620369,18548713:162278 +k1,12178:23637315,18548713:162277 +k1,12178:24608962,18548713:162277 +k1,12178:25790324,18548713:162277 +k1,12178:27507770,18548713:162277 +k1,12178:28329339,18548713:162277 +k1,12178:29510701,18548713:162277 +k1,12178:32583029,18548713:0 +) +(1,12179:6630773,19413793:25952256,513147,134348 +k1,12178:9271975,19413793:262245 +k1,12178:11088734,19413793:262245 +k1,12178:14031402,19413793:262245 +k1,12178:15687597,19413793:262244 +k1,12178:16968927,19413793:262245 +k1,12178:18902995,19413793:262245 +k1,12178:20551326,19413793:262245 +k1,12178:22965773,19413793:262245 +k1,12178:23895174,19413793:262245 +k1,12178:24745932,19413793:262245 +k1,12178:27020131,19413793:262244 +k1,12178:29540091,19413793:262245 +k1,12178:31298523,19413793:262245 +k1,12178:32583029,19413793:0 +) +(1,12179:6630773,20278873:25952256,513147,134348 +k1,12178:9925804,20278873:269234 +k1,12178:10881199,20278873:269233 +k1,12178:13989453,20278873:269234 +k1,12178:15068057,20278873:269234 +k1,12178:18099633,20278873:269233 +k1,12178:20085255,20278873:269234 +k1,12178:21013780,20278873:269233 +k1,12178:23746512,20278873:269234 +k1,12178:25258309,20278873:269234 +k1,12178:28502221,20278873:269233 +k1,12178:29962900,20278873:269234 +k1,12178:32583029,20278873:0 +) +(1,12179:6630773,21143953:25952256,426639,7863 +k1,12179:32583028,21143953:23609344 +g1,12179:32583028,21143953 +) +(1,12181:6630773,22009033:25952256,513147,134348 +h1,12180:6630773,22009033:983040,0,0 +k1,12180:8288183,22009033:259527 +k1,12180:9648775,22009033:259587 +k1,12180:11492368,22009033:259588 +k1,12180:14278368,22009033:259587 +k1,12180:15485607,22009033:259588 +k1,12180:16764279,22009033:259587 +k1,12180:21867633,22009033:259588 +k1,12180:26479466,22009033:259587 +k1,12180:29949663,22009033:259588 +k1,12180:31281420,22009033:259588 +k1,12180:32227169,22009033:259587 +k1,12180:32583029,22009033:0 +) +(1,12181:6630773,22874113:25952256,505283,126483 +k1,12180:9064007,22874113:187315 +k1,12180:10535828,22874113:187315 +k1,12180:11824147,22874113:187314 +k1,12180:14440882,22874113:187315 +k1,12180:16015594,22874113:187315 +k1,12180:17221994,22874113:187315 +k1,12180:19265944,22874113:187315 +k1,12180:22363712,22874113:187314 +k1,12180:22965858,22874113:187303 +k1,12180:26009887,22874113:187315 +k1,12180:28868449,22874113:187315 +k1,12180:32583029,22874113:0 +) +(1,12181:6630773,23739193:25952256,513147,126483 +k1,12180:8023600,23739193:217767 +k1,12180:9440020,23739193:217766 +k1,12180:11259487,23739193:217767 +k1,12180:13977453,23739193:217767 +k1,12180:17179729,23739193:217766 +k1,12180:17928993,23739193:217767 +k1,12180:20014536,23739193:217767 +k1,12180:21159636,23739193:217766 +k1,12180:22568848,23739193:217767 +k1,12180:23142474,23739193:217766 +k1,12180:25010438,23739193:217767 +k1,12180:27216567,23739193:217767 +k1,12180:28625778,23739193:217766 +k1,12180:31700259,23739193:217767 +k1,12181:32583029,23739193:0 +) +(1,12181:6630773,24604273:25952256,513147,134348 +k1,12180:9198286,24604273:185935 +k1,12180:10778172,24604273:185935 +k1,12180:13050773,24604273:185935 +k1,12180:17486062,24604273:185935 +k1,12180:18203494,24604273:185935 +k1,12180:20257205,24604273:185935 +k1,12180:21370474,24604273:185935 +k1,12180:22753096,24604273:185935 +k1,12180:25272113,24604273:185935 +k1,12180:26783186,24604273:185935 +k1,12180:27500618,24604273:185935 +k1,12180:28971059,24604273:185935 +k1,12180:29512854,24604273:185935 +k1,12180:31436804,24604273:185935 +k1,12180:32583029,24604273:0 +) +(1,12181:6630773,25469353:25952256,513147,134348 +k1,12180:8607556,25469353:188961 +k1,12180:9900800,25469353:188962 +k1,12180:10837527,25469353:188961 +k1,12180:12539714,25469353:188961 +k1,12180:13414837,25469353:188961 +k1,12180:13959659,25469353:188962 +k1,12180:16455487,25469353:188961 +k1,12180:18382463,25469353:188961 +k1,12180:19762869,25469353:188961 +k1,12180:21236337,25469353:188962 +k1,12180:22444383,25469353:188961 +k1,12180:25030651,25469353:188961 +k1,12180:27553349,25469353:188961 +k1,12180:28409467,25469353:188962 +(1,12180:28409467,25469353:0,452978,115847 +r1,12217:30526292,25469353:2116825,568825,115847 +k1,12180:28409467,25469353:-2116825 +) +(1,12180:28409467,25469353:2116825,452978,115847 +k1,12180:28409467,25469353:3277 +h1,12180:30523015,25469353:0,411205,112570 +) +k1,12180:30715253,25469353:188961 +k1,12180:32583029,25469353:0 +) +(1,12181:6630773,26334433:25952256,513147,134348 +k1,12180:9566130,26334433:233308 +k1,12180:10608808,26334433:233308 +k1,12180:11861201,26334433:233308 +k1,12180:15497138,26334433:233308 +k1,12180:16389738,26334433:233308 +k1,12180:17642131,26334433:233308 +k1,12180:19148805,26334433:233309 +k1,12180:21173867,26334433:233308 +k1,12180:24837985,26334433:233308 +k1,12180:26914165,26334433:233308 +k1,12180:28015825,26334433:233308 +k1,12180:30017950,26334433:233308 +k1,12180:31298523,26334433:233308 +k1,12180:32583029,26334433:0 +) +(1,12181:6630773,27199513:25952256,513147,134348 +k1,12180:7875792,27199513:225934 +k1,12180:10439396,27199513:225934 +k1,12180:11332487,27199513:225935 +(1,12180:11332487,27199513:0,452978,115847 +r1,12217:13449312,27199513:2116825,568825,115847 +k1,12180:11332487,27199513:-2116825 +) +(1,12180:11332487,27199513:2116825,452978,115847 +k1,12180:11332487,27199513:3277 +h1,12180:13446035,27199513:0,411205,112570 +) +k1,12180:13675246,27199513:225934 +k1,12180:17312984,27199513:225934 +k1,12180:18558003,27199513:225934 +k1,12180:21219255,27199513:225934 +k1,12180:22544883,27199513:225934 +k1,12180:23422246,27199513:225935 +k1,12180:26410523,27199513:225934 +k1,12180:29033764,27199513:225934 +k1,12180:31923737,27199513:225934 +k1,12181:32583029,27199513:0 +) +(1,12181:6630773,28064593:25952256,513147,134348 +(1,12180:6630773,28064593:0,452978,115847 +r1,12217:8747598,28064593:2116825,568825,115847 +k1,12180:6630773,28064593:-2116825 +) +(1,12180:6630773,28064593:2116825,452978,115847 +k1,12180:6630773,28064593:3277 +h1,12180:8744321,28064593:0,411205,112570 +) +k1,12180:8933392,28064593:185794 +k1,12180:10973854,28064593:185793 +k1,12180:11969018,28064593:185794 +k1,12180:13173896,28064593:185793 +k1,12180:14914859,28064593:185794 +k1,12180:15759944,28064593:185793 +k1,12180:16964823,28064593:185794 +k1,12180:20553246,28064593:185794 +k1,12180:23117996,28064593:185793 +k1,12180:24057454,28064593:185794 +k1,12180:26550114,28064593:185793 +k1,12180:29761705,28064593:185794 +k1,12180:32583029,28064593:0 +) +(1,12181:6630773,28929673:25952256,513147,134348 +k1,12180:7681163,28929673:288862 +k1,12180:10409276,28929673:288863 +k1,12180:12552807,28929673:288862 +k1,12180:14217270,28929673:288862 +k1,12180:15315503,28929673:288863 +k1,12180:16623450,28929673:288862 +k1,12180:19984640,28929673:288862 +k1,12180:22478789,28929673:288862 +k1,12180:23419080,28929673:288863 +k1,12180:24063802,28929673:288862 +k1,12180:26225683,28929673:288862 +k1,12180:29968949,28929673:288863 +k1,12180:31276896,28929673:288862 +k1,12180:32583029,28929673:0 +) +(1,12181:6630773,29794753:25952256,513147,134348 +k1,12180:8235094,29794753:273940 +k1,12180:9262699,29794753:273941 +k1,12180:11843506,29794753:273940 +k1,12180:15143243,29794753:273940 +k1,12180:16521466,29794753:273941 +k1,12180:19529568,29794753:273940 +k1,12180:20822593,29794753:273940 +k1,12180:22196228,29794753:273941 +k1,12180:24324837,29794753:273940 +k1,12180:25408147,29794753:273940 +k1,12180:26701173,29794753:273941 +k1,12180:30377742,29794753:273940 +k1,12180:32583029,29794753:0 +) +(1,12181:6630773,30659833:25952256,513147,134348 +k1,12180:7539801,30659833:257600 +k1,12180:9447598,30659833:257600 +k1,12180:11147646,30659833:257601 +k1,12180:12561956,30659833:257600 +k1,12180:16100288,30659833:257600 +k1,12180:17549333,30659833:257600 +k1,12180:18826018,30659833:257600 +k1,12180:22015044,30659833:257601 +k1,12180:22931936,30659833:257600 +k1,12180:24208621,30659833:257600 +k1,12180:26756049,30659833:257600 +k1,12180:27672941,30659833:257600 +k1,12180:28286402,30659833:257601 +k1,12180:30238763,30659833:257600 +k1,12180:32051532,30659833:257600 +k1,12180:32583029,30659833:0 +) +(1,12181:6630773,31524913:25952256,513147,134348 +k1,12180:9013006,31524913:244449 +k1,12180:9908883,31524913:244449 +k1,12180:11172418,31524913:244450 +k1,12180:15048217,31524913:244449 +k1,12180:15920501,31524913:244449 +k1,12180:16918614,31524913:244449 +k1,12180:20362532,31524913:244450 +k1,12180:21626066,31524913:244449 +k1,12180:26549786,31524913:244449 +k1,12180:27453527,31524913:244449 +k1,12180:28053837,31524913:244450 +k1,12180:30605153,31524913:244449 +k1,12180:31841162,31524913:244449 +k1,12181:32583029,31524913:0 +) +(1,12181:6630773,32389993:25952256,513147,134348 +k1,12180:13042160,32389993:218235 +k1,12180:14635996,32389993:218235 +k1,12180:15615759,32389993:218235 +k1,12180:17342633,32389993:218235 +k1,12180:19472553,32389993:218235 +k1,12180:21013960,32389993:218235 +k1,12180:22251280,32389993:218235 +k1,12180:24024684,32389993:218235 +k1,12180:24902211,32389993:218235 +k1,12180:25891149,32389993:218235 +k1,12180:28068910,32389993:218235 +k1,12180:29048673,32389993:218235 +k1,12180:29622768,32389993:218235 +k1,12180:32583029,32389993:0 +) +(1,12181:6630773,33255073:25952256,505283,134348 +k1,12180:8740377,33255073:243794 +k1,12180:11022341,33255073:243794 +k1,12180:11952296,33255073:243793 +k1,12180:12966793,33255073:243794 +k1,12180:15989314,33255073:243794 +k1,12180:16884536,33255073:243794 +k1,12180:18147415,33255073:243794 +k1,12180:20350734,33255073:243793 +k1,12180:21826605,33255073:243794 +k1,12180:24349086,33255073:243794 +h1,12180:25319674,33255073:0,0,0 +k1,12180:25563468,33255073:243794 +k1,12180:26616632,33255073:243794 +k1,12180:28358578,33255073:243793 +h1,12180:29553955,33255073:0,0,0 +k1,12180:29797749,33255073:243794 +k1,12180:31864099,33255073:243794 +k1,12181:32583029,33255073:0 +) +(1,12181:6630773,34120153:25952256,505283,95026 +k1,12181:32583030,34120153:23196468 +g1,12181:32583030,34120153 +) +(1,12183:6630773,34985233:25952256,513147,126483 +h1,12182:6630773,34985233:983040,0,0 +k1,12182:8833539,34985233:266177 +k1,12182:10405849,34985233:266177 +k1,12182:13040497,34985233:266177 +k1,12182:14463384,34985233:266177 +k1,12182:15388853,34985233:266177 +k1,12182:16674115,34985233:266177 +k1,12182:19724918,34985233:266178 +k1,12182:22325487,34985233:266177 +k1,12182:25375633,34985233:266177 +k1,12182:26257848,34985233:266177 +k1,12182:27112538,34985233:266177 +k1,12182:28575402,34985233:266177 +k1,12182:31923737,34985233:266177 +k1,12183:32583029,34985233:0 +) +(1,12183:6630773,35850313:25952256,513147,134348 +(1,12182:6630773,35850313:0,414482,115847 +r1,12217:8044174,35850313:1413401,530329,115847 +k1,12182:6630773,35850313:-1413401 +) +(1,12182:6630773,35850313:1413401,414482,115847 +k1,12182:6630773,35850313:3277 +h1,12182:8040897,35850313:0,411205,112570 +) +g1,12182:8243403,35850313 +g1,12182:10433616,35850313 +g1,12182:11917351,35850313 +g1,12182:12574677,35850313 +g1,12182:13305403,35850313 +g1,12182:14523717,35850313 +g1,12182:17029813,35850313 +g1,12182:18176693,35850313 +g1,12182:18731782,35850313 +k1,12183:32583029,35850313:11344495 +g1,12183:32583029,35850313 +) +v1,12185:6630773,36535168:0,393216,0 +(1,12195:6630773,39613671:25952256,3471719,196608 +g1,12195:6630773,39613671 +g1,12195:6630773,39613671 +g1,12195:6434165,39613671 +(1,12195:6434165,39613671:0,3471719,196608 +r1,12217:32779637,39613671:26345472,3668327,196608 +k1,12195:6434165,39613671:-26345472 +) +(1,12195:6434165,39613671:26345472,3471719,196608 +[1,12195:6630773,39613671:25952256,3275111,0 +(1,12187:6630773,36636933:25952256,298373,6605 +(1,12186:6630773,36636933:0,0,0 +g1,12186:6630773,36636933 +g1,12186:6630773,36636933 +g1,12186:6303093,36636933 +(1,12186:6303093,36636933:0,0,0 +) +g1,12186:6630773,36636933 +) +h1,12187:7958589,36636933:0,0,0 +k1,12187:32583029,36636933:24624440 +g1,12187:32583029,36636933 +) +(1,12194:6630773,37452860:25952256,431045,86428 +(1,12189:6630773,37452860:0,0,0 +g1,12189:6630773,37452860 +g1,12189:6630773,37452860 +g1,12189:6303093,37452860 +(1,12189:6303093,37452860:0,0,0 +) +g1,12189:6630773,37452860 +) +g1,12194:7626635,37452860 +g1,12194:10614220,37452860 +g1,12194:11942036,37452860 +h1,12194:13269852,37452860:0,0,0 +k1,12194:32583028,37452860:19313176 +g1,12194:32583028,37452860 +) +(1,12194:6630773,38137715:25952256,424439,79822 +h1,12194:6630773,38137715:0,0,0 +g1,12194:7626635,38137715 +h1,12194:13269852,38137715:0,0,0 +k1,12194:32583028,38137715:19313176 +g1,12194:32583028,38137715 +) +(1,12194:6630773,38822570:25952256,431045,106246 +h1,12194:6630773,38822570:0,0,0 +g1,12194:7626635,38822570 +g1,12194:11278128,38822570 +k1,12194:11278128,38822570:0 +h1,12194:17585253,38822570:0,0,0 +k1,12194:32583029,38822570:14997776 +g1,12194:32583029,38822570 +) +(1,12194:6630773,39507425:25952256,424439,106246 +h1,12194:6630773,39507425:0,0,0 +g1,12194:7626635,39507425 +g1,12194:12273990,39507425 +k1,12194:12273990,39507425:0 +h1,12194:17253299,39507425:0,0,0 +k1,12194:32583029,39507425:15329730 +g1,12194:32583029,39507425 +) +] +) +g1,12195:32583029,39613671 +g1,12195:6630773,39613671 +g1,12195:6630773,39613671 +g1,12195:32583029,39613671 +g1,12195:32583029,39613671 +) +h1,12195:6630773,39810279:0,0,0 +(1,12199:6630773,40675359:25952256,513147,126483 +h1,12198:6630773,40675359:983040,0,0 +k1,12198:8781967,40675359:214605 +k1,12198:10100854,40675359:214605 +k1,12198:11581615,40675359:214605 +k1,12198:12862491,40675359:214605 +k1,12198:14962567,40675359:214605 +k1,12198:19856443,40675359:214605 +k1,12198:20730341,40675359:214606 +k1,12198:21300806,40675359:214605 +k1,12198:23969734,40675359:214605 +k1,12198:25175899,40675359:214605 +k1,12198:28174473,40675359:214605 +k1,12198:29005116,40675359:214605 +k1,12198:30238806,40675359:214605 +k1,12198:32583029,40675359:0 +) +(1,12199:6630773,41540439:25952256,505283,134348 +g1,12198:8900284,41540439 +g1,12198:10547859,41540439 +g1,12198:12482481,41540439 +(1,12198:12482481,41540439:0,452978,115847 +r1,12217:15654441,41540439:3171960,568825,115847 +k1,12198:12482481,41540439:-3171960 +) +(1,12198:12482481,41540439:3171960,452978,115847 +k1,12198:12482481,41540439:3277 +h1,12198:15651164,41540439:0,411205,112570 +) +k1,12199:32583029,41540439:16876160 +g1,12199:32583029,41540439 +) +v1,12201:6630773,42225294:0,393216,0 +(1,12211:6630773,45436469:25952256,3604391,196608 +g1,12211:6630773,45436469 +g1,12211:6630773,45436469 +g1,12211:6434165,45436469 +(1,12211:6434165,45436469:0,3604391,196608 +r1,12217:32779637,45436469:26345472,3800999,196608 +k1,12211:6434165,45436469:-26345472 +) +(1,12211:6434165,45436469:26345472,3604391,196608 +[1,12211:6630773,45436469:25952256,3407783,0 +(1,12203:6630773,42453125:25952256,424439,79822 +(1,12202:6630773,42453125:0,0,0 +g1,12202:6630773,42453125 +g1,12202:6630773,42453125 +g1,12202:6303093,42453125 +(1,12202:6303093,42453125:0,0,0 +) +g1,12202:6630773,42453125 +) +k1,12203:6630773,42453125:0 +h1,12203:10946175,42453125:0,0,0 +k1,12203:32583029,42453125:21636854 +g1,12203:32583029,42453125 +) +(1,12210:6630773,43269052:25952256,431045,79822 +(1,12205:6630773,43269052:0,0,0 +g1,12205:6630773,43269052 +g1,12205:6630773,43269052 +g1,12205:6303093,43269052 +(1,12205:6303093,43269052:0,0,0 +) +g1,12205:6630773,43269052 +) +g1,12210:7626635,43269052 +g1,12210:7958589,43269052 +g1,12210:9286405,43269052 +g1,12210:12605944,43269052 +g1,12210:12937898,43269052 +g1,12210:13269852,43269052 +g1,12210:13601806,43269052 +g1,12210:13933760,43269052 +g1,12210:14265714,43269052 +g1,12210:14597668,43269052 +g1,12210:14929622,43269052 +g1,12210:19245023,43269052 +g1,12210:19576977,43269052 +g1,12210:19908931,43269052 +g1,12210:20240885,43269052 +g1,12210:20572839,43269052 +g1,12210:25220194,43269052 +g1,12210:25552148,43269052 +g1,12210:25884102,43269052 +g1,12210:26216056,43269052 +h1,12210:30199503,43269052:0,0,0 +k1,12210:32583029,43269052:2383526 +g1,12210:32583029,43269052 +) +(1,12210:6630773,43953907:25952256,424439,106246 +h1,12210:6630773,43953907:0,0,0 +g1,12210:7626635,43953907 +g1,12210:7958589,43953907 +g1,12210:9286405,43953907 +g1,12210:13601806,43953907 +g1,12210:13933760,43953907 +g1,12210:14265714,43953907 +g1,12210:14597668,43953907 +g1,12210:14929622,43953907 +g1,12210:19576977,43953907 +g1,12210:19908931,43953907 +g1,12210:20240885,43953907 +g1,12210:20572839,43953907 +g1,12210:26216056,43953907 +h1,12210:30531457,43953907:0,0,0 +k1,12210:32583029,43953907:2051572 +g1,12210:32583029,43953907 +) +(1,12210:6630773,44638762:25952256,424439,106246 +h1,12210:6630773,44638762:0,0,0 +g1,12210:7626635,44638762 +g1,12210:7958589,44638762 +g1,12210:9286405,44638762 +g1,12210:13933760,44638762 +g1,12210:14265714,44638762 +g1,12210:14597668,44638762 +g1,12210:14929622,44638762 +h1,12210:17917207,44638762:0,0,0 +k1,12210:32583029,44638762:14665822 +g1,12210:32583029,44638762 +) +(1,12210:6630773,45323617:25952256,431045,112852 +h1,12210:6630773,45323617:0,0,0 +g1,12210:7626635,45323617 +g1,12210:8954451,45323617 +g1,12210:12605944,45323617 +g1,12210:13933760,45323617 +g1,12210:17253299,45323617 +g1,12210:18913069,45323617 +g1,12210:20240885,45323617 +g1,12210:22564563,45323617 +h1,12210:23892379,45323617:0,0,0 +k1,12210:32583029,45323617:8690650 +g1,12210:32583029,45323617 +) +] +) +g1,12211:32583029,45436469 +g1,12211:6630773,45436469 +g1,12211:6630773,45436469 +g1,12211:32583029,45436469 +g1,12211:32583029,45436469 +) +h1,12211:6630773,45633077:0,0,0 +] +(1,12217:32583029,45706769:0,0,0 +g1,12217:32583029,45706769 +) +) +] +(1,12217:6630773,47279633:25952256,0,0 +h1,12217:6630773,47279633:25952256,0,0 +) +] +(1,12217:4262630,4025873:0,0,0 +[1,12217:-473656,4025873:0,0,0 +(1,12217:-473656,-710413:0,0,0 +(1,12217:-473656,-710413:0,0,0 +g1,12217:-473656,-710413 +) +g1,12217:-473656,-710413 ) ] ) ] !27207 -}192 -Input:2025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}193 Input:2028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2029:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2030:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -217062,8028 +217240,8047 @@ Input:2039:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2044:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2045:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{193 -[1,12317:4262630,47279633:28320399,43253760,0 -(1,12317:4262630,4025873:0,0,0 -[1,12317:-473656,4025873:0,0,0 -(1,12317:-473656,-710413:0,0,0 -(1,12317:-473656,-644877:0,0,0 -k1,12317:-473656,-644877:-65536 +{194 +[1,12316:4262630,47279633:28320399,43253760,0 +(1,12316:4262630,4025873:0,0,0 +[1,12316:-473656,4025873:0,0,0 +(1,12316:-473656,-710413:0,0,0 +(1,12316:-473656,-644877:0,0,0 +k1,12316:-473656,-644877:-65536 ) -(1,12317:-473656,4736287:0,0,0 -k1,12317:-473656,4736287:5209943 +(1,12316:-473656,4736287:0,0,0 +k1,12316:-473656,4736287:5209943 ) -g1,12317:-473656,-710413 +g1,12316:-473656,-710413 ) ] ) -[1,12317:6630773,47279633:25952256,43253760,0 -[1,12317:6630773,4812305:25952256,786432,0 -(1,12317:6630773,4812305:25952256,505283,134348 -(1,12317:6630773,4812305:25952256,505283,134348 -g1,12317:3078558,4812305 -[1,12317:3078558,4812305:0,0,0 -(1,12317:3078558,2439708:0,1703936,0 -k1,12317:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12317:2537886,2439708:1179648,16384,0 +[1,12316:6630773,47279633:25952256,43253760,0 +[1,12316:6630773,4812305:25952256,786432,0 +(1,12316:6630773,4812305:25952256,505283,134348 +(1,12316:6630773,4812305:25952256,505283,134348 +g1,12316:3078558,4812305 +[1,12316:3078558,4812305:0,0,0 +(1,12316:3078558,2439708:0,1703936,0 +k1,12316:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12316:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12317:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12316:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12317:3078558,4812305:0,0,0 -(1,12317:3078558,2439708:0,1703936,0 -g1,12317:29030814,2439708 -g1,12317:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12317:36151628,1915420:16384,1179648,0 +[1,12316:3078558,4812305:0,0,0 +(1,12316:3078558,2439708:0,1703936,0 +g1,12316:29030814,2439708 +g1,12316:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12316:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12317:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12316:37855564,2439708:1179648,16384,0 ) ) -k1,12317:3078556,2439708:-34777008 +k1,12316:3078556,2439708:-34777008 ) ] -[1,12317:3078558,4812305:0,0,0 -(1,12317:3078558,49800853:0,16384,2228224 -k1,12317:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12317:2537886,49800853:1179648,16384,0 +[1,12316:3078558,4812305:0,0,0 +(1,12316:3078558,49800853:0,16384,2228224 +k1,12316:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12316:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12317:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12316:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12317:3078558,4812305:0,0,0 -(1,12317:3078558,49800853:0,16384,2228224 -g1,12317:29030814,49800853 -g1,12317:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12317:36151628,51504789:16384,1179648,0 +[1,12316:3078558,4812305:0,0,0 +(1,12316:3078558,49800853:0,16384,2228224 +g1,12316:29030814,49800853 +g1,12316:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12316:36151628,51504789:16384,1179648,0 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12317:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12316:37855564,49800853:1179648,16384,0 ) ) -k1,12317:3078556,49800853:-34777008 +k1,12316:3078556,49800853:-34777008 ) -] -g1,12317:6630773,4812305 -k1,12317:23588214,4812305:15762064 -g1,12317:25210885,4812305 -g1,12317:25997972,4812305 -g1,12317:28481131,4812305 -g1,12317:30046786,4812305 -) -) -] -[1,12317:6630773,45706769:25952256,40108032,0 -(1,12317:6630773,45706769:25952256,40108032,0 -(1,12317:6630773,45706769:0,0,0 -g1,12317:6630773,45706769 -) -[1,12317:6630773,45706769:25952256,40108032,0 -(1,12216:6630773,6254097:25952256,513147,134348 -h1,12215:6630773,6254097:983040,0,0 -k1,12215:8799775,6254097:232413 -k1,12215:10136470,6254097:232413 -k1,12215:11654698,6254097:232412 -k1,12215:12979596,6254097:232413 -(1,12215:12979596,6254097:0,452978,115847 -r1,12317:16151556,6254097:3171960,568825,115847 -k1,12215:12979596,6254097:-3171960 -) -(1,12215:12979596,6254097:3171960,452978,115847 -k1,12215:12979596,6254097:3277 -h1,12215:16148279,6254097:0,411205,112570 -) -k1,12215:16383969,6254097:232413 -k1,12215:17267810,6254097:232413 -k1,12215:19316226,6254097:232413 -k1,12215:20314755,6254097:232413 -k1,12215:23505462,6254097:232412 -k1,12215:26718452,6254097:232413 -k1,12215:30201451,6254097:232413 -k1,12215:32583029,6254097:0 -) -(1,12216:6630773,7119177:25952256,513147,134348 -g1,12215:7777653,7119177 -g1,12215:10266710,7119177 -g1,12215:11125231,7119177 -g1,12215:11680320,7119177 -g1,12215:13574310,7119177 -k1,12216:32583028,7119177:17401120 -g1,12216:32583028,7119177 -) -v1,12218:6630773,7804032:0,393216,0 -(1,12227:6630773,10330352:25952256,2919536,196608 -g1,12227:6630773,10330352 -g1,12227:6630773,10330352 -g1,12227:6434165,10330352 -(1,12227:6434165,10330352:0,2919536,196608 -r1,12317:32779637,10330352:26345472,3116144,196608 -k1,12227:6434165,10330352:-26345472 -) -(1,12227:6434165,10330352:26345472,2919536,196608 -[1,12227:6630773,10330352:25952256,2722928,0 -(1,12220:6630773,8031863:25952256,424439,79822 -(1,12219:6630773,8031863:0,0,0 -g1,12219:6630773,8031863 -g1,12219:6630773,8031863 -g1,12219:6303093,8031863 -(1,12219:6303093,8031863:0,0,0 -) -g1,12219:6630773,8031863 -) -k1,12220:6630773,8031863:0 -g1,12220:11278129,8031863 -g1,12220:11942037,8031863 -h1,12220:14265715,8031863:0,0,0 -k1,12220:32583029,8031863:18317314 -g1,12220:32583029,8031863 -) -(1,12226:6630773,8847790:25952256,431045,112852 -(1,12222:6630773,8847790:0,0,0 -g1,12222:6630773,8847790 -g1,12222:6630773,8847790 -g1,12222:6303093,8847790 -(1,12222:6303093,8847790:0,0,0 -) -g1,12222:6630773,8847790 -) -g1,12226:7626635,8847790 -g1,12226:8954451,8847790 -g1,12226:12273990,8847790 -g1,12226:12605944,8847790 -g1,12226:12937898,8847790 -g1,12226:13269852,8847790 -g1,12226:13601806,8847790 -g1,12226:18249161,8847790 -g1,12226:20572839,8847790 -g1,12226:20904793,8847790 -g1,12226:21236747,8847790 -g1,12226:21568701,8847790 -g1,12226:21900655,8847790 -g1,12226:22232609,8847790 -g1,12226:22564563,8847790 -g1,12226:22896517,8847790 -g1,12226:27543872,8847790 -h1,12226:28539734,8847790:0,0,0 -k1,12226:32583029,8847790:4043295 -g1,12226:32583029,8847790 -) -(1,12226:6630773,9532645:25952256,424439,106246 -h1,12226:6630773,9532645:0,0,0 -g1,12226:7626635,9532645 -g1,12226:8954451,9532645 -g1,12226:11278129,9532645 -g1,12226:11610083,9532645 -g1,12226:11942037,9532645 -g1,12226:12273991,9532645 -g1,12226:12605945,9532645 -g1,12226:12937899,9532645 -g1,12226:13269853,9532645 -g1,12226:13601807,9532645 -g1,12226:14929623,9532645 -g1,12226:15261577,9532645 -g1,12226:15593531,9532645 -g1,12226:15925485,9532645 -g1,12226:16257439,9532645 -g1,12226:16589393,9532645 -g1,12226:16921347,9532645 -g1,12226:17253301,9532645 -g1,12226:17585255,9532645 -g1,12226:17917209,9532645 -g1,12226:18249163,9532645 -g1,12226:22564564,9532645 -g1,12226:22896518,9532645 -h1,12226:24888242,9532645:0,0,0 -k1,12226:32583029,9532645:7694787 -g1,12226:32583029,9532645 -) -(1,12226:6630773,10217500:25952256,431045,112852 -h1,12226:6630773,10217500:0,0,0 -g1,12226:7626635,10217500 -g1,12226:8954451,10217500 -g1,12226:12605944,10217500 -g1,12226:13933760,10217500 -g1,12226:17253299,10217500 -g1,12226:18913069,10217500 -g1,12226:20240885,10217500 -g1,12226:22564563,10217500 -h1,12226:23892379,10217500:0,0,0 -k1,12226:32583029,10217500:8690650 -g1,12226:32583029,10217500 -) -] -) -g1,12227:32583029,10330352 -g1,12227:6630773,10330352 -g1,12227:6630773,10330352 -g1,12227:32583029,10330352 -g1,12227:32583029,10330352 -) -h1,12227:6630773,10526960:0,0,0 -v1,12231:6630773,11392040:0,393216,0 -(1,12317:6630773,44132826:25952256,33134002,0 -g1,12317:6630773,44132826 -g1,12317:6237557,44132826 -r1,12317:6368629,44132826:131072,33134002,0 -g1,12317:6567858,44132826 -g1,12317:6764466,44132826 -[1,12317:6764466,44132826:25818563,33134002,0 -(1,12232:6764466,11700338:25818563,701514,196608 -(1,12231:6764466,11700338:0,701514,196608 -r1,12317:7761522,11700338:997056,898122,196608 -k1,12231:6764466,11700338:-997056 -) -(1,12231:6764466,11700338:997056,701514,196608 -) -k1,12231:8029948,11700338:268426 -k1,12231:8357628,11700338:327680 -k1,12231:9379718,11700338:268426 -k1,12231:11203313,11700338:268426 -k1,12231:15278725,11700338:268426 -k1,12231:16078648,11700338:268426 -k1,12231:18385244,11700338:268426 -k1,12231:19339833,11700338:268427 -k1,12231:19964119,11700338:268426 -k1,12231:23207224,11700338:268426 -k1,12231:25453527,11700338:268426 -k1,12231:26337991,11700338:268426 -k1,12231:27377120,11700338:268426 -k1,12231:30424273,11700338:268426 -k1,12232:32583029,11700338:0 -) -(1,12232:6764466,12565418:25818563,513147,134348 -(1,12231:6764466,12565418:0,452978,115847 -r1,12317:9233003,12565418:2468537,568825,115847 -k1,12231:6764466,12565418:-2468537 -) -(1,12231:6764466,12565418:2468537,452978,115847 -k1,12231:6764466,12565418:3277 -h1,12231:9229726,12565418:0,411205,112570 -) -k1,12231:9594626,12565418:187953 -k1,12231:10979266,12565418:187953 -k1,12231:12768919,12565418:187953 -k1,12231:14578232,12565418:187952 -k1,12231:17750695,12565418:187953 -k1,12231:18590076,12565418:187953 -k1,12231:19797114,12565418:187953 -k1,12231:24019463,12565418:187953 -k1,12231:24982707,12565418:187953 -k1,12231:27970357,12565418:187952 -k1,12231:28817602,12565418:187953 -k1,12231:29776258,12565418:187953 -k1,12231:31923737,12565418:187953 -k1,12231:32583029,12565418:0 -) -(1,12232:6764466,13430498:25818563,513147,134348 -k1,12231:7280185,13430498:159859 -k1,12231:8723238,13430498:159858 -k1,12231:9636761,13430498:159859 -k1,12231:11525460,13430498:159859 -k1,12231:12216815,13430498:159858 -k1,12231:13028102,13430498:159859 -k1,12231:14385304,13430498:159859 -k1,12231:15564247,13430498:159858 -k1,12231:17007301,13430498:159859 -k1,12231:18722329,13430498:159859 -k1,12231:20620202,13430498:159858 -k1,12231:21431489,13430498:159859 -k1,12231:22610433,13430498:159859 -(1,12231:22610433,13430498:0,452978,115847 -r1,12317:24375546,13430498:1765113,568825,115847 -k1,12231:22610433,13430498:-1765113 -) -(1,12231:22610433,13430498:1765113,452978,115847 -k1,12231:22610433,13430498:3277 -h1,12231:24372269,13430498:0,411205,112570 -) -k1,12231:24535404,13430498:159858 -k1,12231:27473990,13430498:159859 -k1,12231:28293141,13430498:159859 -k1,12231:29472084,13430498:159858 -k1,12231:31765140,13430498:159859 -k1,12231:32583029,13430498:0 -) -(1,12232:6764466,14295578:25818563,513147,134348 -k1,12231:7983951,14295578:200400 -k1,12231:10600662,14295578:200399 -k1,12231:12356231,14295578:200400 -k1,12231:15562112,14295578:200400 -k1,12231:16294009,14295578:200400 -k1,12231:18189169,14295578:200399 -k1,12231:19151097,14295578:200400 -k1,12231:20370582,14295578:200400 -k1,12231:22310307,14295578:200399 -k1,12231:23169999,14295578:200400 -k1,12231:24389484,14295578:200400 -k1,12231:27543592,14295578:200400 -k1,12231:28403283,14295578:200399 -k1,12231:29622768,14295578:200400 -k1,12231:32583029,14295578:0 -) -(1,12232:6764466,15160658:25818563,513147,102891 -k1,12231:9122369,15160658:224051 -k1,12231:10365505,15160658:224051 -k1,12231:12327571,15160658:224051 -k1,12231:13210915,15160658:224052 -k1,12231:14454051,15160658:224051 -k1,12231:15961297,15160658:224051 -k1,12231:17740517,15160658:224051 -k1,12231:19586584,15160658:224051 -k1,12231:20558401,15160658:224051 -k1,12231:22747877,15160658:224051 -k1,12231:23584690,15160658:224051 -k1,12231:24827827,15160658:224052 -k1,12231:26590663,15160658:224051 -k1,12231:27474006,15160658:224051 -k1,12231:28717142,15160658:224051 -k1,12231:31092740,15160658:224051 -k1,12231:32583029,15160658:0 -) -(1,12232:6764466,16025738:25818563,505283,134348 -k1,12231:9229790,16025738:195157 -k1,12231:10628187,16025738:195156 -k1,12231:12178629,16025738:195157 -k1,12231:13478068,16025738:195157 -k1,12231:14420991,16025738:195157 -k1,12231:16193599,16025738:195156 -k1,12231:17074918,16025738:195157 -k1,12231:19345600,16025738:195157 -k1,12231:21112309,16025738:195156 -k1,12231:21923504,16025738:195157 -k1,12231:24656215,16025738:195157 -k1,12231:26054613,16025738:195157 -k1,12231:27605054,16025738:195156 -k1,12231:29756461,16025738:195157 -k1,12231:32583029,16025738:0 -) -(1,12232:6764466,16890818:25818563,513147,126483 -k1,12231:8400295,16890818:283166 -k1,12231:10346109,16890818:283166 -k1,12231:12639264,16890818:283166 -k1,12231:13278290,16890818:283166 -k1,12231:17186252,16890818:283166 -k1,12231:20164914,16890818:283166 -k1,12231:21639525,16890818:283166 -k1,12231:22941776,16890818:283166 -k1,12231:24508137,16890818:283166 -k1,12231:26520143,16890818:283166 -k1,12231:27269270,16890818:283166 -k1,12231:29934014,16890818:283166 -k1,12231:32227169,16890818:283166 -k1,12231:32583029,16890818:0 -) -(1,12232:6764466,17755898:25818563,505283,134348 -k1,12231:9691358,17755898:173069 -k1,12231:11820678,17755898:173070 -k1,12231:13524013,17755898:173069 -k1,12231:14348511,17755898:173070 -k1,12231:15269347,17755898:173070 -k1,12231:18818175,17755898:173069 -k1,12231:19944793,17755898:173069 -k1,12231:21778545,17755898:173070 -k1,12231:23349498,17755898:173070 -k1,12231:24725808,17755898:173069 -k1,12231:28391291,17755898:173069 -k1,12231:31225778,17755898:173070 -k1,12231:32583029,17755898:0 -) -(1,12232:6764466,18620978:25818563,505283,126483 -g1,12231:7615123,18620978 -g1,12231:11847438,18620978 -g1,12231:13377048,18620978 -g1,12231:14329941,18620978 -g1,12231:16761982,18620978 -g1,12231:17952771,18620978 -g1,12231:22353513,18620978 -g1,12231:23168780,18620978 -k1,12232:32583029,18620978:8946978 -g1,12232:32583029,18620978 -) -v1,12234:6764466,19305833:0,393216,0 -(1,12249:6764466,23440885:25818563,4528268,196608 -g1,12249:6764466,23440885 -g1,12249:6764466,23440885 -g1,12249:6567858,23440885 -(1,12249:6567858,23440885:0,4528268,196608 -r1,12317:32779637,23440885:26211779,4724876,196608 -k1,12249:6567857,23440885:-26211780 -) -(1,12249:6567858,23440885:26211779,4528268,196608 -[1,12249:6764466,23440885:25818563,4331660,0 -(1,12236:6764466,19517148:25818563,407923,9908 -(1,12235:6764466,19517148:0,0,0 -g1,12235:6764466,19517148 -g1,12235:6764466,19517148 -g1,12235:6436786,19517148 -(1,12235:6436786,19517148:0,0,0 -) -g1,12235:6764466,19517148 -) -g1,12236:7428374,19517148 -g1,12236:8424236,19517148 -h1,12236:9420098,19517148:0,0,0 -k1,12236:32583030,19517148:23162932 -g1,12236:32583030,19517148 -) -(1,12237:6764466,20202003:25818563,424439,79822 -h1,12237:6764466,20202003:0,0,0 -k1,12237:6764466,20202003:0 -h1,12237:9420098,20202003:0,0,0 -k1,12237:32583030,20202003:23162932 -g1,12237:32583030,20202003 -) -(1,12241:6764466,21017930:25818563,424439,79822 -(1,12239:6764466,21017930:0,0,0 -g1,12239:6764466,21017930 -g1,12239:6764466,21017930 -g1,12239:6436786,21017930 -(1,12239:6436786,21017930:0,0,0 -) -g1,12239:6764466,21017930 -) -g1,12241:7760328,21017930 -g1,12241:9088144,21017930 -h1,12241:12075729,21017930:0,0,0 -k1,12241:32583029,21017930:20507300 -g1,12241:32583029,21017930 -) -(1,12243:6764466,21833857:25818563,424439,106246 -(1,12242:6764466,21833857:0,0,0 -g1,12242:6764466,21833857 -g1,12242:6764466,21833857 -g1,12242:6436786,21833857 -(1,12242:6436786,21833857:0,0,0 -) -g1,12242:6764466,21833857 -) -k1,12243:6764466,21833857:0 -g1,12243:9752052,21833857 -g1,12243:10747914,21833857 -g1,12243:15063315,21833857 -k1,12243:15063315,21833857:0 -h1,12243:18050901,21833857:0,0,0 -k1,12243:32583029,21833857:14532128 -g1,12243:32583029,21833857 -) -(1,12244:6764466,22518712:25818563,424439,79822 -h1,12244:6764466,22518712:0,0,0 -k1,12244:6764466,22518712:0 -h1,12244:9420098,22518712:0,0,0 -k1,12244:32583030,22518712:23162932 -g1,12244:32583030,22518712 -) -(1,12248:6764466,23334639:25818563,424439,106246 -(1,12246:6764466,23334639:0,0,0 -g1,12246:6764466,23334639 -g1,12246:6764466,23334639 -g1,12246:6436786,23334639 -(1,12246:6436786,23334639:0,0,0 -) -g1,12246:6764466,23334639 -) -g1,12248:7760328,23334639 -g1,12248:9088144,23334639 -g1,12248:12407683,23334639 -h1,12248:15395268,23334639:0,0,0 -k1,12248:32583028,23334639:17187760 -g1,12248:32583028,23334639 -) -] -) -g1,12249:32583029,23440885 -g1,12249:6764466,23440885 -g1,12249:6764466,23440885 -g1,12249:32583029,23440885 -g1,12249:32583029,23440885 -) -h1,12249:6764466,23637493:0,0,0 -(1,12253:6764466,24502573:25818563,513147,134348 -h1,12252:6764466,24502573:983040,0,0 -k1,12252:9374490,24502573:219271 -k1,12252:10462113,24502573:219271 -k1,12252:12610765,24502573:219272 -k1,12252:13185896,24502573:219271 -k1,12252:14987206,24502573:219271 -k1,12252:17660800,24502573:219271 -k1,12252:20277378,24502573:219271 -k1,12252:21148077,24502573:219271 -(1,12252:21148077,24502573:0,452978,115847 -r1,12317:24320037,24502573:3171960,568825,115847 -k1,12252:21148077,24502573:-3171960 -) -(1,12252:21148077,24502573:3171960,452978,115847 -k1,12252:21148077,24502573:3277 -h1,12252:24316760,24502573:0,411205,112570 -) -k1,12252:24539309,24502573:219272 -k1,12252:27222078,24502573:219271 -k1,12252:30503846,24502573:219271 -k1,12252:31591469,24502573:219271 -k1,12252:32583029,24502573:0 -) -(1,12253:6764466,25367653:25818563,513147,134348 -k1,12252:8712428,25367653:212569 -k1,12252:11620494,25367653:212570 -(1,12252:11620494,25367653:0,459977,115847 -r1,12317:14792454,25367653:3171960,575824,115847 -k1,12252:11620494,25367653:-3171960 -) -(1,12252:11620494,25367653:3171960,459977,115847 -k1,12252:11620494,25367653:3277 -h1,12252:14789177,25367653:0,411205,112570 -) -k1,12252:15005023,25367653:212569 -k1,12252:16409037,25367653:212569 -k1,12252:17569257,25367653:212569 -k1,12252:18800912,25367653:212570 -k1,12252:21193864,25367653:212569 -k1,12252:24216617,25367653:212569 -k1,12252:25080615,25367653:212570 -k1,12252:26889641,25367653:212569 -k1,12252:27970562,25367653:212569 -k1,12252:29713397,25367653:212569 -k1,12252:30577395,25367653:212570 -k1,12252:32227169,25367653:212569 -k1,12253:32583029,25367653:0 -) -(1,12253:6764466,26232733:25818563,505283,134348 -(1,12252:6764466,26232733:0,452978,115847 -r1,12317:9233003,26232733:2468537,568825,115847 -k1,12252:6764466,26232733:-2468537 -) -(1,12252:6764466,26232733:2468537,452978,115847 -k1,12252:6764466,26232733:3277 -h1,12252:9229726,26232733:0,411205,112570 -) -k1,12252:9443927,26232733:210924 -k1,12252:11335193,26232733:210923 -k1,12252:12232279,26232733:210924 -k1,12252:13213906,26232733:210924 -k1,12252:18222065,26232733:210924 -k1,12252:21492209,26232733:210923 -(1,12252:21492209,26232733:0,459977,115847 -r1,12317:24664169,26232733:3171960,575824,115847 -k1,12252:21492209,26232733:-3171960 -) -(1,12252:21492209,26232733:3171960,459977,115847 -k1,12252:21492209,26232733:3277 -h1,12252:24660892,26232733:0,411205,112570 -) -k1,12252:24875093,26232733:210924 -k1,12252:26578927,26232733:210924 -k1,12252:27856122,26232733:210924 -k1,12252:30390296,26232733:210923 -k1,12252:31931601,26232733:210924 -k1,12252:32583029,26232733:0 -) -(1,12253:6764466,27097813:25818563,513147,134348 -g1,12252:9122451,27097813 -g1,12252:11611508,27097813 -g1,12252:12470029,27097813 -g1,12252:13688343,27097813 -g1,12252:15442741,27097813 -g1,12252:16510322,27097813 -g1,12252:18184766,27097813 -g1,12252:19612795,27097813 -k1,12253:32583029,27097813:10463482 -g1,12253:32583029,27097813 -) -v1,12255:6764466,27782668:0,393216,0 -(1,12261:6764466,29466637:25818563,2077185,196608 -g1,12261:6764466,29466637 -g1,12261:6764466,29466637 -g1,12261:6567858,29466637 -(1,12261:6567858,29466637:0,2077185,196608 -r1,12317:32779637,29466637:26211779,2273793,196608 -k1,12261:6567857,29466637:-26211780 -) -(1,12261:6567858,29466637:26211779,2077185,196608 -[1,12261:6764466,29466637:25818563,1880577,0 -(1,12257:6764466,28017105:25818563,431045,106246 -(1,12256:6764466,28017105:0,0,0 -g1,12256:6764466,28017105 -g1,12256:6764466,28017105 -g1,12256:6436786,28017105 -(1,12256:6436786,28017105:0,0,0 -) -g1,12256:6764466,28017105 -) -g1,12257:11411821,28017105 -g1,12257:12407683,28017105 -g1,12257:16391130,28017105 -h1,12257:16723084,28017105:0,0,0 -k1,12257:32583029,28017105:15859945 -g1,12257:32583029,28017105 -) -(1,12258:6764466,28701960:25818563,431045,106246 -h1,12258:6764466,28701960:0,0,0 -g1,12258:7096420,28701960 -g1,12258:7428374,28701960 -g1,12258:7760328,28701960 -g1,12258:8092282,28701960 -g1,12258:14399407,28701960 -g1,12258:16723085,28701960 -k1,12258:16723085,28701960:0 -h1,12258:21370440,28701960:0,0,0 -k1,12258:32583029,28701960:11212589 -g1,12258:32583029,28701960 -) -(1,12259:6764466,29386815:25818563,424439,79822 -h1,12259:6764466,29386815:0,0,0 -h1,12259:7096420,29386815:0,0,0 -k1,12259:32583028,29386815:25486608 -g1,12259:32583028,29386815 -) -] -) -g1,12261:32583029,29466637 -g1,12261:6764466,29466637 -g1,12261:6764466,29466637 -g1,12261:32583029,29466637 -g1,12261:32583029,29466637 -) -h1,12261:6764466,29663245:0,0,0 -(1,12265:6764466,30528325:25818563,513147,134348 -h1,12264:6764466,30528325:983040,0,0 -k1,12264:9559926,30528325:207443 -k1,12264:10123230,30528325:207444 -k1,12264:13824397,30528325:207443 -k1,12264:16486163,30528325:207443 -k1,12264:18524682,30528325:207443 -k1,12264:19679777,30528325:207444 -k1,12264:20243080,30528325:207443 -k1,12264:22179363,30528325:207443 -k1,12264:22844903,30528325:207443 -k1,12264:24184809,30528325:207444 -k1,12264:25140018,30528325:207443 -k1,12264:26860687,30528325:207443 -k1,12264:28015781,30528325:207443 -k1,12264:30513053,30528325:207444 -k1,12264:31379788,30528325:207443 -k1,12264:32583029,30528325:0 -) -(1,12265:6764466,31393405:25818563,505283,7863 -k1,12265:32583028,31393405:24210964 -g1,12265:32583028,31393405 -) -v1,12267:6764466,32078260:0,393216,0 -(1,12280:6764466,34833694:25818563,3148650,196608 -g1,12280:6764466,34833694 -g1,12280:6764466,34833694 -g1,12280:6567858,34833694 -(1,12280:6567858,34833694:0,3148650,196608 -r1,12317:32779637,34833694:26211779,3345258,196608 -k1,12280:6567857,34833694:-26211780 -) -(1,12280:6567858,34833694:26211779,3148650,196608 -[1,12280:6764466,34833694:25818563,2952042,0 -(1,12269:6764466,32306091:25818563,424439,106246 -(1,12268:6764466,32306091:0,0,0 -g1,12268:6764466,32306091 -g1,12268:6764466,32306091 -g1,12268:6436786,32306091 -(1,12268:6436786,32306091:0,0,0 -) -g1,12268:6764466,32306091 -) -k1,12269:6764466,32306091:0 -h1,12269:9420098,32306091:0,0,0 -k1,12269:32583030,32306091:23162932 -g1,12269:32583030,32306091 -) -(1,12273:6764466,33122018:25818563,424439,106246 -(1,12271:6764466,33122018:0,0,0 -g1,12271:6764466,33122018 -g1,12271:6764466,33122018 -g1,12271:6436786,33122018 -(1,12271:6436786,33122018:0,0,0 -) -g1,12271:6764466,33122018 -) -g1,12273:7760328,33122018 -g1,12273:9088144,33122018 -g1,12273:12739637,33122018 -h1,12273:14067453,33122018:0,0,0 -k1,12273:32583029,33122018:18515576 -g1,12273:32583029,33122018 -) -(1,12275:6764466,33937945:25818563,424439,106246 -(1,12274:6764466,33937945:0,0,0 -g1,12274:6764466,33937945 -g1,12274:6764466,33937945 -g1,12274:6436786,33937945 -(1,12274:6436786,33937945:0,0,0 -) -g1,12274:6764466,33937945 -) -k1,12275:6764466,33937945:0 -k1,12275:6764466,33937945:0 -h1,12275:13403545,33937945:0,0,0 -k1,12275:32583029,33937945:19179484 -g1,12275:32583029,33937945 -) -(1,12279:6764466,34753872:25818563,424439,79822 -(1,12277:6764466,34753872:0,0,0 -g1,12277:6764466,34753872 -g1,12277:6764466,34753872 -g1,12277:6436786,34753872 -(1,12277:6436786,34753872:0,0,0 -) -g1,12277:6764466,34753872 -) -g1,12279:7760328,34753872 -g1,12279:9088144,34753872 -h1,12279:10084006,34753872:0,0,0 -k1,12279:32583030,34753872:22499024 -g1,12279:32583030,34753872 -) -] -) -g1,12280:32583029,34833694 -g1,12280:6764466,34833694 -g1,12280:6764466,34833694 -g1,12280:32583029,34833694 -g1,12280:32583029,34833694 -) -h1,12280:6764466,35030302:0,0,0 -(1,12284:6764466,35895382:25818563,513147,134348 -h1,12283:6764466,35895382:983040,0,0 -k1,12283:10415871,35895382:349046 -k1,12283:11784001,35895382:349045 -k1,12283:13871062,35895382:349046 -(1,12283:13871062,35895382:0,452978,115847 -r1,12317:18098158,35895382:4227096,568825,115847 -k1,12283:13871062,35895382:-4227096 -) -(1,12283:13871062,35895382:4227096,452978,115847 -k1,12283:13871062,35895382:3277 -h1,12283:18094881,35895382:0,411205,112570 -) -k1,12283:18447204,35895382:349046 -k1,12283:19447677,35895382:349045 -k1,12283:20815808,35895382:349046 -k1,12283:22703639,35895382:349046 -k1,12283:23711976,35895382:349045 -k1,12283:25080107,35895382:349046 -(1,12283:25080107,35895382:0,452978,115847 -r1,12317:26845220,35895382:1765113,568825,115847 -k1,12283:25080107,35895382:-1765113 -) -(1,12283:25080107,35895382:1765113,452978,115847 -k1,12283:25080107,35895382:3277 -h1,12283:26841943,35895382:0,411205,112570 -) -k1,12283:27194265,35895382:349045 -k1,12283:30517990,35895382:349046 -k1,12283:32583029,35895382:0 -) -(1,12284:6764466,36760462:25818563,513147,134348 -k1,12283:9106858,36760462:296358 -k1,12283:11362742,36760462:296358 -(1,12283:11362742,36760462:0,452978,115847 -r1,12317:11721008,36760462:358266,568825,115847 -k1,12283:11362742,36760462:-358266 -) -(1,12283:11362742,36760462:358266,452978,115847 -k1,12283:11362742,36760462:3277 -h1,12283:11717731,36760462:0,411205,112570 -) -k1,12283:12017365,36760462:296357 -k1,12283:12669583,36760462:296358 -k1,12283:15589347,36760462:296358 -k1,12283:16544997,36760462:296358 -k1,12283:18308051,36760462:296358 -k1,12283:21010891,36760462:296358 -(1,12283:21010891,36760462:0,452978,115847 -r1,12317:24182851,36760462:3171960,568825,115847 -k1,12283:21010891,36760462:-3171960 -) -(1,12283:21010891,36760462:3171960,452978,115847 -k1,12283:21010891,36760462:3277 -h1,12283:24179574,36760462:0,411205,112570 -) -k1,12283:24479208,36760462:296357 -k1,12283:25967011,36760462:296358 -(1,12283:25967011,36760462:0,452978,115847 -r1,12317:30194107,36760462:4227096,568825,115847 -k1,12283:25967011,36760462:-4227096 -) -(1,12283:25967011,36760462:4227096,452978,115847 -k1,12283:25967011,36760462:3277 -h1,12283:30190830,36760462:0,411205,112570 -) -k1,12283:30664135,36760462:296358 -k1,12284:32583029,36760462:0 -) -(1,12284:6764466,37625542:25818563,513147,126483 -(1,12283:6764466,37625542:0,452978,115847 -r1,12317:10991562,37625542:4227096,568825,115847 -k1,12283:6764466,37625542:-4227096 -) -(1,12283:6764466,37625542:4227096,452978,115847 -k1,12283:6764466,37625542:3277 -h1,12283:10988285,37625542:0,411205,112570 -) -k1,12283:11184300,37625542:192738 -k1,12283:11908535,37625542:192738 -k1,12283:14484162,37625542:192738 -k1,12283:16244520,37625542:192737 -(1,12283:16244520,37625542:0,452978,115847 -r1,12317:19416480,37625542:3171960,568825,115847 -k1,12283:16244520,37625542:-3171960 -) -(1,12283:16244520,37625542:3171960,452978,115847 -k1,12283:16244520,37625542:3277 -h1,12283:19413203,37625542:0,411205,112570 -) -k1,12283:19782888,37625542:192738 -k1,12283:20793515,37625542:192738 -(1,12283:20793515,37625542:0,452978,115847 -r1,12317:25020611,37625542:4227096,568825,115847 -k1,12283:20793515,37625542:-4227096 -) -(1,12283:20793515,37625542:4227096,452978,115847 -k1,12283:20793515,37625542:3277 -h1,12283:25017334,37625542:0,411205,112570 -) -k1,12283:25213349,37625542:192738 -k1,12283:25937584,37625542:192738 -k1,12283:26743084,37625542:192738 -k1,12283:29550052,37625542:192737 -(1,12283:29550052,37625542:0,435480,115847 -r1,12317:29908318,37625542:358266,551327,115847 -k1,12283:29550052,37625542:-358266 -) -(1,12283:29550052,37625542:358266,435480,115847 -k1,12283:29550052,37625542:3277 -h1,12283:29905041,37625542:0,411205,112570 -) -k1,12283:30274726,37625542:192738 -k1,12283:30925561,37625542:192738 -k1,12283:31649796,37625542:192738 -k1,12283:32583029,37625542:0 -) -(1,12284:6764466,38490622:25818563,505283,134348 -g1,12283:8166936,38490622 -g1,12283:10325691,38490622 -g1,12283:11313318,38490622 -g1,12283:13019220,38490622 -g1,12283:15557429,38490622 -k1,12284:32583029,38490622:15489437 -g1,12284:32583029,38490622 -) -v1,12286:6764466,39175477:0,393216,0 -(1,12291:6764466,40174591:25818563,1392330,196608 -g1,12291:6764466,40174591 -g1,12291:6764466,40174591 -g1,12291:6567858,40174591 -(1,12291:6567858,40174591:0,1392330,196608 -r1,12317:32779637,40174591:26211779,1588938,196608 -k1,12291:6567857,40174591:-26211780 -) -(1,12291:6567858,40174591:26211779,1392330,196608 -[1,12291:6764466,40174591:25818563,1195722,0 -(1,12288:6764466,39403308:25818563,424439,9908 -(1,12287:6764466,39403308:0,0,0 -g1,12287:6764466,39403308 -g1,12287:6764466,39403308 -g1,12287:6436786,39403308 -(1,12287:6436786,39403308:0,0,0 -) -g1,12287:6764466,39403308 -) -g1,12288:7428374,39403308 -g1,12288:8424236,39403308 -h1,12288:9420098,39403308:0,0,0 -k1,12288:32583030,39403308:23162932 -g1,12288:32583030,39403308 -) -(1,12289:6764466,40088163:25818563,424439,86428 -h1,12289:6764466,40088163:0,0,0 -g1,12289:9752052,40088163 -g1,12289:10747914,40088163 -g1,12289:16059177,40088163 -k1,12289:16059177,40088163:0 -h1,12289:19046763,40088163:0,0,0 -k1,12289:32583029,40088163:13536266 -g1,12289:32583029,40088163 -) -] -) -g1,12291:32583029,40174591 -g1,12291:6764466,40174591 -g1,12291:6764466,40174591 -g1,12291:32583029,40174591 -g1,12291:32583029,40174591 -) -h1,12291:6764466,40371199:0,0,0 -(1,12295:6764466,41236279:25818563,513147,126483 -h1,12294:6764466,41236279:983040,0,0 -k1,12294:8398203,41236279:163109 -k1,12294:12055072,41236279:163145 -(1,12294:12055072,41236279:0,452978,115847 -r1,12317:14523609,41236279:2468537,568825,115847 -k1,12294:12055072,41236279:-2468537 -) -(1,12294:12055072,41236279:2468537,452978,115847 -k1,12294:12055072,41236279:3277 -h1,12294:14520332,41236279:0,411205,112570 -) -k1,12294:14686753,41236279:163144 -k1,12294:17304221,41236279:163145 -k1,12294:17998863,41236279:163145 -k1,12294:19228278,41236279:163144 -k1,12294:22175392,41236279:163145 -k1,12294:23286188,41236279:163145 -(1,12294:23286188,41236279:0,452978,115847 -r1,12317:27513284,41236279:4227096,568825,115847 -k1,12294:23286188,41236279:-4227096 -) -(1,12294:23286188,41236279:4227096,452978,115847 -k1,12294:23286188,41236279:3277 -h1,12294:27510007,41236279:0,411205,112570 -) -k1,12294:27850099,41236279:163145 -k1,12294:29032328,41236279:163144 -k1,12294:31649796,41236279:163145 -k1,12295:32583029,41236279:0 -) -(1,12295:6764466,42101359:25818563,505283,134348 -(1,12294:6764466,42101359:0,452978,115847 -r1,12317:9936426,42101359:3171960,568825,115847 -k1,12294:6764466,42101359:-3171960 -) -(1,12294:6764466,42101359:3171960,452978,115847 -k1,12294:6764466,42101359:3277 -h1,12294:9933149,42101359:0,411205,112570 -) -g1,12294:10309325,42101359 -g1,12294:11527639,42101359 -g1,12294:13110988,42101359 -g1,12294:14865386,42101359 -g1,12294:16802630,42101359 -g1,12294:18746427,42101359 -g1,12294:19964741,42101359 -g1,12294:22315517,42101359 -g1,12294:23046243,42101359 -k1,12295:32583029,42101359:7616582 -g1,12295:32583029,42101359 -) -v1,12297:6764466,42786214:0,393216,0 -(1,12304:6764466,43936218:25818563,1543220,196608 -g1,12304:6764466,43936218 -g1,12304:6764466,43936218 -g1,12304:6567858,43936218 -(1,12304:6567858,43936218:0,1543220,196608 -r1,12317:32779637,43936218:26211779,1739828,196608 -k1,12304:6567857,43936218:-26211780 -) -(1,12304:6567858,43936218:26211779,1543220,196608 -[1,12304:6764466,43936218:25818563,1346612,0 -(1,12299:6764466,43014045:25818563,424439,106246 -(1,12298:6764466,43014045:0,0,0 -g1,12298:6764466,43014045 -g1,12298:6764466,43014045 -g1,12298:6436786,43014045 -(1,12298:6436786,43014045:0,0,0 -) -g1,12298:6764466,43014045 +] +g1,12316:6630773,4812305 +k1,12316:23588214,4812305:15762064 +g1,12316:25210885,4812305 +g1,12316:25997972,4812305 +g1,12316:28481131,4812305 +g1,12316:30046786,4812305 +) +) +] +[1,12316:6630773,45706769:25952256,40108032,0 +(1,12316:6630773,45706769:25952256,40108032,0 +(1,12316:6630773,45706769:0,0,0 +g1,12316:6630773,45706769 +) +[1,12316:6630773,45706769:25952256,40108032,0 +(1,12215:6630773,6254097:25952256,513147,134348 +h1,12214:6630773,6254097:983040,0,0 +k1,12214:8799775,6254097:232413 +k1,12214:10136470,6254097:232413 +k1,12214:11654698,6254097:232412 +k1,12214:12979596,6254097:232413 +(1,12214:12979596,6254097:0,452978,115847 +r1,12316:16151556,6254097:3171960,568825,115847 +k1,12214:12979596,6254097:-3171960 +) +(1,12214:12979596,6254097:3171960,452978,115847 +k1,12214:12979596,6254097:3277 +h1,12214:16148279,6254097:0,411205,112570 +) +k1,12214:16383969,6254097:232413 +k1,12214:17267810,6254097:232413 +k1,12214:19316226,6254097:232413 +k1,12214:20314755,6254097:232413 +k1,12214:23505462,6254097:232412 +k1,12214:26718452,6254097:232413 +k1,12214:30201451,6254097:232413 +k1,12214:32583029,6254097:0 +) +(1,12215:6630773,7119177:25952256,513147,134348 +g1,12214:7777653,7119177 +g1,12214:10266710,7119177 +g1,12214:11125231,7119177 +g1,12214:11680320,7119177 +g1,12214:13574310,7119177 +k1,12215:32583028,7119177:17401120 +g1,12215:32583028,7119177 +) +v1,12217:6630773,7804032:0,393216,0 +(1,12226:6630773,10330352:25952256,2919536,196608 +g1,12226:6630773,10330352 +g1,12226:6630773,10330352 +g1,12226:6434165,10330352 +(1,12226:6434165,10330352:0,2919536,196608 +r1,12316:32779637,10330352:26345472,3116144,196608 +k1,12226:6434165,10330352:-26345472 +) +(1,12226:6434165,10330352:26345472,2919536,196608 +[1,12226:6630773,10330352:25952256,2722928,0 +(1,12219:6630773,8031863:25952256,424439,79822 +(1,12218:6630773,8031863:0,0,0 +g1,12218:6630773,8031863 +g1,12218:6630773,8031863 +g1,12218:6303093,8031863 +(1,12218:6303093,8031863:0,0,0 +) +g1,12218:6630773,8031863 +) +k1,12219:6630773,8031863:0 +g1,12219:11278129,8031863 +g1,12219:11942037,8031863 +h1,12219:14265715,8031863:0,0,0 +k1,12219:32583029,8031863:18317314 +g1,12219:32583029,8031863 +) +(1,12225:6630773,8847790:25952256,431045,112852 +(1,12221:6630773,8847790:0,0,0 +g1,12221:6630773,8847790 +g1,12221:6630773,8847790 +g1,12221:6303093,8847790 +(1,12221:6303093,8847790:0,0,0 +) +g1,12221:6630773,8847790 +) +g1,12225:7626635,8847790 +g1,12225:8954451,8847790 +g1,12225:12273990,8847790 +g1,12225:12605944,8847790 +g1,12225:12937898,8847790 +g1,12225:13269852,8847790 +g1,12225:13601806,8847790 +g1,12225:18249161,8847790 +g1,12225:20572839,8847790 +g1,12225:20904793,8847790 +g1,12225:21236747,8847790 +g1,12225:21568701,8847790 +g1,12225:21900655,8847790 +g1,12225:22232609,8847790 +g1,12225:22564563,8847790 +g1,12225:22896517,8847790 +g1,12225:27543872,8847790 +h1,12225:28539734,8847790:0,0,0 +k1,12225:32583029,8847790:4043295 +g1,12225:32583029,8847790 +) +(1,12225:6630773,9532645:25952256,424439,106246 +h1,12225:6630773,9532645:0,0,0 +g1,12225:7626635,9532645 +g1,12225:8954451,9532645 +g1,12225:11278129,9532645 +g1,12225:11610083,9532645 +g1,12225:11942037,9532645 +g1,12225:12273991,9532645 +g1,12225:12605945,9532645 +g1,12225:12937899,9532645 +g1,12225:13269853,9532645 +g1,12225:13601807,9532645 +g1,12225:14929623,9532645 +g1,12225:15261577,9532645 +g1,12225:15593531,9532645 +g1,12225:15925485,9532645 +g1,12225:16257439,9532645 +g1,12225:16589393,9532645 +g1,12225:16921347,9532645 +g1,12225:17253301,9532645 +g1,12225:17585255,9532645 +g1,12225:17917209,9532645 +g1,12225:18249163,9532645 +g1,12225:22564564,9532645 +g1,12225:22896518,9532645 +h1,12225:24888242,9532645:0,0,0 +k1,12225:32583029,9532645:7694787 +g1,12225:32583029,9532645 +) +(1,12225:6630773,10217500:25952256,431045,112852 +h1,12225:6630773,10217500:0,0,0 +g1,12225:7626635,10217500 +g1,12225:8954451,10217500 +g1,12225:12605944,10217500 +g1,12225:13933760,10217500 +g1,12225:17253299,10217500 +g1,12225:18913069,10217500 +g1,12225:20240885,10217500 +g1,12225:22564563,10217500 +h1,12225:23892379,10217500:0,0,0 +k1,12225:32583029,10217500:8690650 +g1,12225:32583029,10217500 +) +] +) +g1,12226:32583029,10330352 +g1,12226:6630773,10330352 +g1,12226:6630773,10330352 +g1,12226:32583029,10330352 +g1,12226:32583029,10330352 +) +h1,12226:6630773,10526960:0,0,0 +v1,12230:6630773,11392040:0,393216,0 +(1,12316:6630773,44132826:25952256,33134002,0 +g1,12316:6630773,44132826 +g1,12316:6237557,44132826 +r1,12316:6368629,44132826:131072,33134002,0 +g1,12316:6567858,44132826 +g1,12316:6764466,44132826 +[1,12316:6764466,44132826:25818563,33134002,0 +(1,12231:6764466,11700338:25818563,701514,196608 +(1,12230:6764466,11700338:0,701514,196608 +r1,12316:7761522,11700338:997056,898122,196608 +k1,12230:6764466,11700338:-997056 +) +(1,12230:6764466,11700338:997056,701514,196608 +) +k1,12230:8029948,11700338:268426 +k1,12230:8357628,11700338:327680 +k1,12230:9379718,11700338:268426 +k1,12230:11203313,11700338:268426 +k1,12230:15278725,11700338:268426 +k1,12230:16078648,11700338:268426 +k1,12230:18385244,11700338:268426 +k1,12230:19339833,11700338:268427 +k1,12230:19964119,11700338:268426 +k1,12230:23207224,11700338:268426 +k1,12230:25453527,11700338:268426 +k1,12230:26337991,11700338:268426 +k1,12230:27377120,11700338:268426 +k1,12230:30424273,11700338:268426 +k1,12231:32583029,11700338:0 +) +(1,12231:6764466,12565418:25818563,513147,134348 +(1,12230:6764466,12565418:0,452978,115847 +r1,12316:9233003,12565418:2468537,568825,115847 +k1,12230:6764466,12565418:-2468537 +) +(1,12230:6764466,12565418:2468537,452978,115847 +k1,12230:6764466,12565418:3277 +h1,12230:9229726,12565418:0,411205,112570 +) +k1,12230:9594626,12565418:187953 +k1,12230:10979266,12565418:187953 +k1,12230:12768919,12565418:187953 +k1,12230:14578232,12565418:187952 +k1,12230:17750695,12565418:187953 +k1,12230:18590076,12565418:187953 +k1,12230:19797114,12565418:187953 +k1,12230:24019463,12565418:187953 +k1,12230:24982707,12565418:187953 +k1,12230:27970357,12565418:187952 +k1,12230:28817602,12565418:187953 +k1,12230:29776258,12565418:187953 +k1,12230:31923737,12565418:187953 +k1,12230:32583029,12565418:0 +) +(1,12231:6764466,13430498:25818563,513147,134348 +k1,12230:7280185,13430498:159859 +k1,12230:8723238,13430498:159858 +k1,12230:9636761,13430498:159859 +k1,12230:11525460,13430498:159859 +k1,12230:12216815,13430498:159858 +k1,12230:13028102,13430498:159859 +k1,12230:14385304,13430498:159859 +k1,12230:15564247,13430498:159858 +k1,12230:17007301,13430498:159859 +k1,12230:18722329,13430498:159859 +k1,12230:20620202,13430498:159858 +k1,12230:21431489,13430498:159859 +k1,12230:22610433,13430498:159859 +(1,12230:22610433,13430498:0,452978,115847 +r1,12316:24375546,13430498:1765113,568825,115847 +k1,12230:22610433,13430498:-1765113 +) +(1,12230:22610433,13430498:1765113,452978,115847 +k1,12230:22610433,13430498:3277 +h1,12230:24372269,13430498:0,411205,112570 +) +k1,12230:24535404,13430498:159858 +k1,12230:27473990,13430498:159859 +k1,12230:28293141,13430498:159859 +k1,12230:29472084,13430498:159858 +k1,12230:31765140,13430498:159859 +k1,12230:32583029,13430498:0 +) +(1,12231:6764466,14295578:25818563,513147,134348 +k1,12230:7983951,14295578:200400 +k1,12230:10600662,14295578:200399 +k1,12230:12356231,14295578:200400 +k1,12230:15562112,14295578:200400 +k1,12230:16294009,14295578:200400 +k1,12230:18189169,14295578:200399 +k1,12230:19151097,14295578:200400 +k1,12230:20370582,14295578:200400 +k1,12230:22310307,14295578:200399 +k1,12230:23169999,14295578:200400 +k1,12230:24389484,14295578:200400 +k1,12230:27543592,14295578:200400 +k1,12230:28403283,14295578:200399 +k1,12230:29622768,14295578:200400 +k1,12230:32583029,14295578:0 +) +(1,12231:6764466,15160658:25818563,513147,102891 +k1,12230:9122369,15160658:224051 +k1,12230:10365505,15160658:224051 +k1,12230:12327571,15160658:224051 +k1,12230:13210915,15160658:224052 +k1,12230:14454051,15160658:224051 +k1,12230:15961297,15160658:224051 +k1,12230:17740517,15160658:224051 +k1,12230:19586584,15160658:224051 +k1,12230:20558401,15160658:224051 +k1,12230:22747877,15160658:224051 +k1,12230:23584690,15160658:224051 +k1,12230:24827827,15160658:224052 +k1,12230:26590663,15160658:224051 +k1,12230:27474006,15160658:224051 +k1,12230:28717142,15160658:224051 +k1,12230:31092740,15160658:224051 +k1,12230:32583029,15160658:0 +) +(1,12231:6764466,16025738:25818563,505283,134348 +k1,12230:9229790,16025738:195157 +k1,12230:10628187,16025738:195156 +k1,12230:12178629,16025738:195157 +k1,12230:13478068,16025738:195157 +k1,12230:14420991,16025738:195157 +k1,12230:16193599,16025738:195156 +k1,12230:17074918,16025738:195157 +k1,12230:19345600,16025738:195157 +k1,12230:21112309,16025738:195156 +k1,12230:21923504,16025738:195157 +k1,12230:24656215,16025738:195157 +k1,12230:26054613,16025738:195157 +k1,12230:27605054,16025738:195156 +k1,12230:29756461,16025738:195157 +k1,12230:32583029,16025738:0 +) +(1,12231:6764466,16890818:25818563,513147,126483 +k1,12230:8400295,16890818:283166 +k1,12230:10346109,16890818:283166 +k1,12230:12639264,16890818:283166 +k1,12230:13278290,16890818:283166 +k1,12230:17186252,16890818:283166 +k1,12230:20164914,16890818:283166 +k1,12230:21639525,16890818:283166 +k1,12230:22941776,16890818:283166 +k1,12230:24508137,16890818:283166 +k1,12230:26520143,16890818:283166 +k1,12230:27269270,16890818:283166 +k1,12230:29934014,16890818:283166 +k1,12230:32227169,16890818:283166 +k1,12230:32583029,16890818:0 +) +(1,12231:6764466,17755898:25818563,505283,134348 +k1,12230:9691358,17755898:173069 +k1,12230:11820678,17755898:173070 +k1,12230:13524013,17755898:173069 +k1,12230:14348511,17755898:173070 +k1,12230:15269347,17755898:173070 +k1,12230:18818175,17755898:173069 +k1,12230:19944793,17755898:173069 +k1,12230:21778545,17755898:173070 +k1,12230:23349498,17755898:173070 +k1,12230:24725808,17755898:173069 +k1,12230:28391291,17755898:173069 +k1,12230:31225778,17755898:173070 +k1,12230:32583029,17755898:0 +) +(1,12231:6764466,18620978:25818563,505283,126483 +g1,12230:7615123,18620978 +g1,12230:11847438,18620978 +g1,12230:13377048,18620978 +g1,12230:14329941,18620978 +g1,12230:16761982,18620978 +g1,12230:17952771,18620978 +g1,12230:22353513,18620978 +g1,12230:23168780,18620978 +k1,12231:32583029,18620978:8946978 +g1,12231:32583029,18620978 +) +v1,12233:6764466,19305833:0,393216,0 +(1,12248:6764466,23440885:25818563,4528268,196608 +g1,12248:6764466,23440885 +g1,12248:6764466,23440885 +g1,12248:6567858,23440885 +(1,12248:6567858,23440885:0,4528268,196608 +r1,12316:32779637,23440885:26211779,4724876,196608 +k1,12248:6567857,23440885:-26211780 +) +(1,12248:6567858,23440885:26211779,4528268,196608 +[1,12248:6764466,23440885:25818563,4331660,0 +(1,12235:6764466,19517148:25818563,407923,9908 +(1,12234:6764466,19517148:0,0,0 +g1,12234:6764466,19517148 +g1,12234:6764466,19517148 +g1,12234:6436786,19517148 +(1,12234:6436786,19517148:0,0,0 +) +g1,12234:6764466,19517148 +) +g1,12235:7428374,19517148 +g1,12235:8424236,19517148 +h1,12235:9420098,19517148:0,0,0 +k1,12235:32583030,19517148:23162932 +g1,12235:32583030,19517148 +) +(1,12236:6764466,20202003:25818563,424439,79822 +h1,12236:6764466,20202003:0,0,0 +k1,12236:6764466,20202003:0 +h1,12236:9420098,20202003:0,0,0 +k1,12236:32583030,20202003:23162932 +g1,12236:32583030,20202003 +) +(1,12240:6764466,21017930:25818563,424439,79822 +(1,12238:6764466,21017930:0,0,0 +g1,12238:6764466,21017930 +g1,12238:6764466,21017930 +g1,12238:6436786,21017930 +(1,12238:6436786,21017930:0,0,0 +) +g1,12238:6764466,21017930 +) +g1,12240:7760328,21017930 +g1,12240:9088144,21017930 +h1,12240:12075729,21017930:0,0,0 +k1,12240:32583029,21017930:20507300 +g1,12240:32583029,21017930 +) +(1,12242:6764466,21833857:25818563,424439,106246 +(1,12241:6764466,21833857:0,0,0 +g1,12241:6764466,21833857 +g1,12241:6764466,21833857 +g1,12241:6436786,21833857 +(1,12241:6436786,21833857:0,0,0 +) +g1,12241:6764466,21833857 +) +k1,12242:6764466,21833857:0 +g1,12242:9752052,21833857 +g1,12242:10747914,21833857 +g1,12242:15063315,21833857 +k1,12242:15063315,21833857:0 +h1,12242:18050901,21833857:0,0,0 +k1,12242:32583029,21833857:14532128 +g1,12242:32583029,21833857 +) +(1,12243:6764466,22518712:25818563,424439,79822 +h1,12243:6764466,22518712:0,0,0 +k1,12243:6764466,22518712:0 +h1,12243:9420098,22518712:0,0,0 +k1,12243:32583030,22518712:23162932 +g1,12243:32583030,22518712 +) +(1,12247:6764466,23334639:25818563,424439,106246 +(1,12245:6764466,23334639:0,0,0 +g1,12245:6764466,23334639 +g1,12245:6764466,23334639 +g1,12245:6436786,23334639 +(1,12245:6436786,23334639:0,0,0 +) +g1,12245:6764466,23334639 +) +g1,12247:7760328,23334639 +g1,12247:9088144,23334639 +g1,12247:12407683,23334639 +h1,12247:15395268,23334639:0,0,0 +k1,12247:32583028,23334639:17187760 +g1,12247:32583028,23334639 +) +] +) +g1,12248:32583029,23440885 +g1,12248:6764466,23440885 +g1,12248:6764466,23440885 +g1,12248:32583029,23440885 +g1,12248:32583029,23440885 +) +h1,12248:6764466,23637493:0,0,0 +(1,12252:6764466,24502573:25818563,513147,134348 +h1,12251:6764466,24502573:983040,0,0 +k1,12251:9374490,24502573:219271 +k1,12251:10462113,24502573:219271 +k1,12251:12610765,24502573:219272 +k1,12251:13185896,24502573:219271 +k1,12251:14987206,24502573:219271 +k1,12251:17660800,24502573:219271 +k1,12251:20277378,24502573:219271 +k1,12251:21148077,24502573:219271 +(1,12251:21148077,24502573:0,452978,115847 +r1,12316:24320037,24502573:3171960,568825,115847 +k1,12251:21148077,24502573:-3171960 +) +(1,12251:21148077,24502573:3171960,452978,115847 +k1,12251:21148077,24502573:3277 +h1,12251:24316760,24502573:0,411205,112570 +) +k1,12251:24539309,24502573:219272 +k1,12251:27222078,24502573:219271 +k1,12251:30503846,24502573:219271 +k1,12251:31591469,24502573:219271 +k1,12251:32583029,24502573:0 +) +(1,12252:6764466,25367653:25818563,513147,134348 +k1,12251:8712428,25367653:212569 +k1,12251:11620494,25367653:212570 +(1,12251:11620494,25367653:0,459977,115847 +r1,12316:14792454,25367653:3171960,575824,115847 +k1,12251:11620494,25367653:-3171960 +) +(1,12251:11620494,25367653:3171960,459977,115847 +k1,12251:11620494,25367653:3277 +h1,12251:14789177,25367653:0,411205,112570 +) +k1,12251:15005023,25367653:212569 +k1,12251:16409037,25367653:212569 +k1,12251:17569257,25367653:212569 +k1,12251:18800912,25367653:212570 +k1,12251:21193864,25367653:212569 +k1,12251:24216617,25367653:212569 +k1,12251:25080615,25367653:212570 +k1,12251:26889641,25367653:212569 +k1,12251:27970562,25367653:212569 +k1,12251:29713397,25367653:212569 +k1,12251:30577395,25367653:212570 +k1,12251:32227169,25367653:212569 +k1,12252:32583029,25367653:0 +) +(1,12252:6764466,26232733:25818563,505283,134348 +(1,12251:6764466,26232733:0,452978,115847 +r1,12316:9233003,26232733:2468537,568825,115847 +k1,12251:6764466,26232733:-2468537 +) +(1,12251:6764466,26232733:2468537,452978,115847 +k1,12251:6764466,26232733:3277 +h1,12251:9229726,26232733:0,411205,112570 +) +k1,12251:9443927,26232733:210924 +k1,12251:11335193,26232733:210923 +k1,12251:12232279,26232733:210924 +k1,12251:13213906,26232733:210924 +k1,12251:18222065,26232733:210924 +k1,12251:21492209,26232733:210923 +(1,12251:21492209,26232733:0,459977,115847 +r1,12316:24664169,26232733:3171960,575824,115847 +k1,12251:21492209,26232733:-3171960 +) +(1,12251:21492209,26232733:3171960,459977,115847 +k1,12251:21492209,26232733:3277 +h1,12251:24660892,26232733:0,411205,112570 +) +k1,12251:24875093,26232733:210924 +k1,12251:26578927,26232733:210924 +k1,12251:27856122,26232733:210924 +k1,12251:30390296,26232733:210923 +k1,12251:31931601,26232733:210924 +k1,12251:32583029,26232733:0 +) +(1,12252:6764466,27097813:25818563,513147,134348 +g1,12251:9122451,27097813 +g1,12251:11611508,27097813 +g1,12251:12470029,27097813 +g1,12251:13688343,27097813 +g1,12251:15442741,27097813 +g1,12251:16510322,27097813 +g1,12251:18184766,27097813 +g1,12251:19612795,27097813 +k1,12252:32583029,27097813:10463482 +g1,12252:32583029,27097813 +) +v1,12254:6764466,27782668:0,393216,0 +(1,12260:6764466,29466637:25818563,2077185,196608 +g1,12260:6764466,29466637 +g1,12260:6764466,29466637 +g1,12260:6567858,29466637 +(1,12260:6567858,29466637:0,2077185,196608 +r1,12316:32779637,29466637:26211779,2273793,196608 +k1,12260:6567857,29466637:-26211780 +) +(1,12260:6567858,29466637:26211779,2077185,196608 +[1,12260:6764466,29466637:25818563,1880577,0 +(1,12256:6764466,28017105:25818563,431045,106246 +(1,12255:6764466,28017105:0,0,0 +g1,12255:6764466,28017105 +g1,12255:6764466,28017105 +g1,12255:6436786,28017105 +(1,12255:6436786,28017105:0,0,0 +) +g1,12255:6764466,28017105 +) +g1,12256:11411821,28017105 +g1,12256:12407683,28017105 +g1,12256:16391130,28017105 +h1,12256:16723084,28017105:0,0,0 +k1,12256:32583029,28017105:15859945 +g1,12256:32583029,28017105 +) +(1,12257:6764466,28701960:25818563,431045,106246 +h1,12257:6764466,28701960:0,0,0 +g1,12257:7096420,28701960 +g1,12257:7428374,28701960 +g1,12257:7760328,28701960 +g1,12257:8092282,28701960 +g1,12257:14399407,28701960 +g1,12257:16723085,28701960 +k1,12257:16723085,28701960:0 +h1,12257:21370440,28701960:0,0,0 +k1,12257:32583029,28701960:11212589 +g1,12257:32583029,28701960 +) +(1,12258:6764466,29386815:25818563,424439,79822 +h1,12258:6764466,29386815:0,0,0 +h1,12258:7096420,29386815:0,0,0 +k1,12258:32583028,29386815:25486608 +g1,12258:32583028,29386815 +) +] +) +g1,12260:32583029,29466637 +g1,12260:6764466,29466637 +g1,12260:6764466,29466637 +g1,12260:32583029,29466637 +g1,12260:32583029,29466637 +) +h1,12260:6764466,29663245:0,0,0 +(1,12264:6764466,30528325:25818563,513147,134348 +h1,12263:6764466,30528325:983040,0,0 +k1,12263:9559926,30528325:207443 +k1,12263:10123230,30528325:207444 +k1,12263:13824397,30528325:207443 +k1,12263:16486163,30528325:207443 +k1,12263:18524682,30528325:207443 +k1,12263:19679777,30528325:207444 +k1,12263:20243080,30528325:207443 +k1,12263:22179363,30528325:207443 +k1,12263:22844903,30528325:207443 +k1,12263:24184809,30528325:207444 +k1,12263:25140018,30528325:207443 +k1,12263:26860687,30528325:207443 +k1,12263:28015781,30528325:207443 +k1,12263:30513053,30528325:207444 +k1,12263:31379788,30528325:207443 +k1,12263:32583029,30528325:0 +) +(1,12264:6764466,31393405:25818563,505283,7863 +k1,12264:32583028,31393405:24210964 +g1,12264:32583028,31393405 +) +v1,12266:6764466,32078260:0,393216,0 +(1,12279:6764466,34833694:25818563,3148650,196608 +g1,12279:6764466,34833694 +g1,12279:6764466,34833694 +g1,12279:6567858,34833694 +(1,12279:6567858,34833694:0,3148650,196608 +r1,12316:32779637,34833694:26211779,3345258,196608 +k1,12279:6567857,34833694:-26211780 +) +(1,12279:6567858,34833694:26211779,3148650,196608 +[1,12279:6764466,34833694:25818563,2952042,0 +(1,12268:6764466,32306091:25818563,424439,106246 +(1,12267:6764466,32306091:0,0,0 +g1,12267:6764466,32306091 +g1,12267:6764466,32306091 +g1,12267:6436786,32306091 +(1,12267:6436786,32306091:0,0,0 +) +g1,12267:6764466,32306091 +) +k1,12268:6764466,32306091:0 +h1,12268:9420098,32306091:0,0,0 +k1,12268:32583030,32306091:23162932 +g1,12268:32583030,32306091 +) +(1,12272:6764466,33122018:25818563,424439,106246 +(1,12270:6764466,33122018:0,0,0 +g1,12270:6764466,33122018 +g1,12270:6764466,33122018 +g1,12270:6436786,33122018 +(1,12270:6436786,33122018:0,0,0 +) +g1,12270:6764466,33122018 +) +g1,12272:7760328,33122018 +g1,12272:9088144,33122018 +g1,12272:12739637,33122018 +h1,12272:14067453,33122018:0,0,0 +k1,12272:32583029,33122018:18515576 +g1,12272:32583029,33122018 +) +(1,12274:6764466,33937945:25818563,424439,106246 +(1,12273:6764466,33937945:0,0,0 +g1,12273:6764466,33937945 +g1,12273:6764466,33937945 +g1,12273:6436786,33937945 +(1,12273:6436786,33937945:0,0,0 +) +g1,12273:6764466,33937945 +) +k1,12274:6764466,33937945:0 +k1,12274:6764466,33937945:0 +h1,12274:13403545,33937945:0,0,0 +k1,12274:32583029,33937945:19179484 +g1,12274:32583029,33937945 +) +(1,12278:6764466,34753872:25818563,424439,79822 +(1,12276:6764466,34753872:0,0,0 +g1,12276:6764466,34753872 +g1,12276:6764466,34753872 +g1,12276:6436786,34753872 +(1,12276:6436786,34753872:0,0,0 +) +g1,12276:6764466,34753872 +) +g1,12278:7760328,34753872 +g1,12278:9088144,34753872 +h1,12278:10084006,34753872:0,0,0 +k1,12278:32583030,34753872:22499024 +g1,12278:32583030,34753872 +) +] +) +g1,12279:32583029,34833694 +g1,12279:6764466,34833694 +g1,12279:6764466,34833694 +g1,12279:32583029,34833694 +g1,12279:32583029,34833694 +) +h1,12279:6764466,35030302:0,0,0 +(1,12283:6764466,35895382:25818563,513147,134348 +h1,12282:6764466,35895382:983040,0,0 +k1,12282:10415871,35895382:349046 +k1,12282:11784001,35895382:349045 +k1,12282:13871062,35895382:349046 +(1,12282:13871062,35895382:0,452978,115847 +r1,12316:18098158,35895382:4227096,568825,115847 +k1,12282:13871062,35895382:-4227096 +) +(1,12282:13871062,35895382:4227096,452978,115847 +k1,12282:13871062,35895382:3277 +h1,12282:18094881,35895382:0,411205,112570 +) +k1,12282:18447204,35895382:349046 +k1,12282:19447677,35895382:349045 +k1,12282:20815808,35895382:349046 +k1,12282:22703639,35895382:349046 +k1,12282:23711976,35895382:349045 +k1,12282:25080107,35895382:349046 +(1,12282:25080107,35895382:0,452978,115847 +r1,12316:26845220,35895382:1765113,568825,115847 +k1,12282:25080107,35895382:-1765113 +) +(1,12282:25080107,35895382:1765113,452978,115847 +k1,12282:25080107,35895382:3277 +h1,12282:26841943,35895382:0,411205,112570 +) +k1,12282:27194265,35895382:349045 +k1,12282:30517990,35895382:349046 +k1,12282:32583029,35895382:0 +) +(1,12283:6764466,36760462:25818563,513147,134348 +k1,12282:9106858,36760462:296358 +k1,12282:11362742,36760462:296358 +(1,12282:11362742,36760462:0,452978,115847 +r1,12316:11721008,36760462:358266,568825,115847 +k1,12282:11362742,36760462:-358266 +) +(1,12282:11362742,36760462:358266,452978,115847 +k1,12282:11362742,36760462:3277 +h1,12282:11717731,36760462:0,411205,112570 +) +k1,12282:12017365,36760462:296357 +k1,12282:12669583,36760462:296358 +k1,12282:15589347,36760462:296358 +k1,12282:16544997,36760462:296358 +k1,12282:18308051,36760462:296358 +k1,12282:21010891,36760462:296358 +(1,12282:21010891,36760462:0,452978,115847 +r1,12316:24182851,36760462:3171960,568825,115847 +k1,12282:21010891,36760462:-3171960 +) +(1,12282:21010891,36760462:3171960,452978,115847 +k1,12282:21010891,36760462:3277 +h1,12282:24179574,36760462:0,411205,112570 +) +k1,12282:24479208,36760462:296357 +k1,12282:25967011,36760462:296358 +(1,12282:25967011,36760462:0,452978,115847 +r1,12316:30194107,36760462:4227096,568825,115847 +k1,12282:25967011,36760462:-4227096 +) +(1,12282:25967011,36760462:4227096,452978,115847 +k1,12282:25967011,36760462:3277 +h1,12282:30190830,36760462:0,411205,112570 +) +k1,12282:30664135,36760462:296358 +k1,12283:32583029,36760462:0 +) +(1,12283:6764466,37625542:25818563,513147,126483 +(1,12282:6764466,37625542:0,452978,115847 +r1,12316:10991562,37625542:4227096,568825,115847 +k1,12282:6764466,37625542:-4227096 +) +(1,12282:6764466,37625542:4227096,452978,115847 +k1,12282:6764466,37625542:3277 +h1,12282:10988285,37625542:0,411205,112570 +) +k1,12282:11184300,37625542:192738 +k1,12282:11908535,37625542:192738 +k1,12282:14484162,37625542:192738 +k1,12282:16244520,37625542:192737 +(1,12282:16244520,37625542:0,452978,115847 +r1,12316:19416480,37625542:3171960,568825,115847 +k1,12282:16244520,37625542:-3171960 +) +(1,12282:16244520,37625542:3171960,452978,115847 +k1,12282:16244520,37625542:3277 +h1,12282:19413203,37625542:0,411205,112570 +) +k1,12282:19782888,37625542:192738 +k1,12282:20793515,37625542:192738 +(1,12282:20793515,37625542:0,452978,115847 +r1,12316:25020611,37625542:4227096,568825,115847 +k1,12282:20793515,37625542:-4227096 +) +(1,12282:20793515,37625542:4227096,452978,115847 +k1,12282:20793515,37625542:3277 +h1,12282:25017334,37625542:0,411205,112570 +) +k1,12282:25213349,37625542:192738 +k1,12282:25937584,37625542:192738 +k1,12282:26743084,37625542:192738 +k1,12282:29550052,37625542:192737 +(1,12282:29550052,37625542:0,435480,115847 +r1,12316:29908318,37625542:358266,551327,115847 +k1,12282:29550052,37625542:-358266 +) +(1,12282:29550052,37625542:358266,435480,115847 +k1,12282:29550052,37625542:3277 +h1,12282:29905041,37625542:0,411205,112570 +) +k1,12282:30274726,37625542:192738 +k1,12282:30925561,37625542:192738 +k1,12282:31649796,37625542:192738 +k1,12282:32583029,37625542:0 +) +(1,12283:6764466,38490622:25818563,505283,134348 +g1,12282:8166936,38490622 +g1,12282:10325691,38490622 +g1,12282:11313318,38490622 +g1,12282:13019220,38490622 +g1,12282:15557429,38490622 +k1,12283:32583029,38490622:15489437 +g1,12283:32583029,38490622 +) +v1,12285:6764466,39175477:0,393216,0 +(1,12290:6764466,40174591:25818563,1392330,196608 +g1,12290:6764466,40174591 +g1,12290:6764466,40174591 +g1,12290:6567858,40174591 +(1,12290:6567858,40174591:0,1392330,196608 +r1,12316:32779637,40174591:26211779,1588938,196608 +k1,12290:6567857,40174591:-26211780 +) +(1,12290:6567858,40174591:26211779,1392330,196608 +[1,12290:6764466,40174591:25818563,1195722,0 +(1,12287:6764466,39403308:25818563,424439,9908 +(1,12286:6764466,39403308:0,0,0 +g1,12286:6764466,39403308 +g1,12286:6764466,39403308 +g1,12286:6436786,39403308 +(1,12286:6436786,39403308:0,0,0 +) +g1,12286:6764466,39403308 +) +g1,12287:7428374,39403308 +g1,12287:8424236,39403308 +h1,12287:9420098,39403308:0,0,0 +k1,12287:32583030,39403308:23162932 +g1,12287:32583030,39403308 +) +(1,12288:6764466,40088163:25818563,424439,86428 +h1,12288:6764466,40088163:0,0,0 +g1,12288:9752052,40088163 +g1,12288:10747914,40088163 +g1,12288:16059177,40088163 +k1,12288:16059177,40088163:0 +h1,12288:19046763,40088163:0,0,0 +k1,12288:32583029,40088163:13536266 +g1,12288:32583029,40088163 +) +] +) +g1,12290:32583029,40174591 +g1,12290:6764466,40174591 +g1,12290:6764466,40174591 +g1,12290:32583029,40174591 +g1,12290:32583029,40174591 +) +h1,12290:6764466,40371199:0,0,0 +(1,12294:6764466,41236279:25818563,513147,126483 +h1,12293:6764466,41236279:983040,0,0 +k1,12293:8398203,41236279:163109 +k1,12293:12055072,41236279:163145 +(1,12293:12055072,41236279:0,452978,115847 +r1,12316:14523609,41236279:2468537,568825,115847 +k1,12293:12055072,41236279:-2468537 +) +(1,12293:12055072,41236279:2468537,452978,115847 +k1,12293:12055072,41236279:3277 +h1,12293:14520332,41236279:0,411205,112570 +) +k1,12293:14686753,41236279:163144 +k1,12293:17304221,41236279:163145 +k1,12293:17998863,41236279:163145 +k1,12293:19228278,41236279:163144 +k1,12293:22175392,41236279:163145 +k1,12293:23286188,41236279:163145 +(1,12293:23286188,41236279:0,452978,115847 +r1,12316:27513284,41236279:4227096,568825,115847 +k1,12293:23286188,41236279:-4227096 +) +(1,12293:23286188,41236279:4227096,452978,115847 +k1,12293:23286188,41236279:3277 +h1,12293:27510007,41236279:0,411205,112570 +) +k1,12293:27850099,41236279:163145 +k1,12293:29032328,41236279:163144 +k1,12293:31649796,41236279:163145 +k1,12294:32583029,41236279:0 +) +(1,12294:6764466,42101359:25818563,505283,134348 +(1,12293:6764466,42101359:0,452978,115847 +r1,12316:9936426,42101359:3171960,568825,115847 +k1,12293:6764466,42101359:-3171960 +) +(1,12293:6764466,42101359:3171960,452978,115847 +k1,12293:6764466,42101359:3277 +h1,12293:9933149,42101359:0,411205,112570 +) +g1,12293:10309325,42101359 +g1,12293:11527639,42101359 +g1,12293:13110988,42101359 +g1,12293:14865386,42101359 +g1,12293:16802630,42101359 +g1,12293:18746427,42101359 +g1,12293:19964741,42101359 +g1,12293:22315517,42101359 +g1,12293:23046243,42101359 +k1,12294:32583029,42101359:7616582 +g1,12294:32583029,42101359 +) +v1,12296:6764466,42786214:0,393216,0 +(1,12303:6764466,43936218:25818563,1543220,196608 +g1,12303:6764466,43936218 +g1,12303:6764466,43936218 +g1,12303:6567858,43936218 +(1,12303:6567858,43936218:0,1543220,196608 +r1,12316:32779637,43936218:26211779,1739828,196608 +k1,12303:6567857,43936218:-26211780 +) +(1,12303:6567858,43936218:26211779,1543220,196608 +[1,12303:6764466,43936218:25818563,1346612,0 +(1,12298:6764466,43014045:25818563,424439,106246 +(1,12297:6764466,43014045:0,0,0 +g1,12297:6764466,43014045 +g1,12297:6764466,43014045 +g1,12297:6436786,43014045 +(1,12297:6436786,43014045:0,0,0 +) +g1,12297:6764466,43014045 ) -k1,12299:6764466,43014045:0 -h1,12299:9420098,43014045:0,0,0 -k1,12299:32583030,43014045:23162932 -g1,12299:32583030,43014045 -) -(1,12303:6764466,43829972:25818563,424439,106246 -(1,12301:6764466,43829972:0,0,0 -g1,12301:6764466,43829972 -g1,12301:6764466,43829972 -g1,12301:6436786,43829972 -(1,12301:6436786,43829972:0,0,0 +k1,12298:6764466,43014045:0 +h1,12298:9420098,43014045:0,0,0 +k1,12298:32583030,43014045:23162932 +g1,12298:32583030,43014045 +) +(1,12302:6764466,43829972:25818563,424439,106246 +(1,12300:6764466,43829972:0,0,0 +g1,12300:6764466,43829972 +g1,12300:6764466,43829972 +g1,12300:6436786,43829972 +(1,12300:6436786,43829972:0,0,0 ) -g1,12301:6764466,43829972 +g1,12300:6764466,43829972 ) -g1,12303:7760328,43829972 -g1,12303:9088144,43829972 -g1,12303:12739637,43829972 -h1,12303:14067453,43829972:0,0,0 -k1,12303:32583029,43829972:18515576 -g1,12303:32583029,43829972 +g1,12302:7760328,43829972 +g1,12302:9088144,43829972 +g1,12302:12739637,43829972 +h1,12302:14067453,43829972:0,0,0 +k1,12302:32583029,43829972:18515576 +g1,12302:32583029,43829972 ) -] -) -g1,12304:32583029,43936218 -g1,12304:6764466,43936218 -g1,12304:6764466,43936218 -g1,12304:32583029,43936218 -g1,12304:32583029,43936218 +] +) +g1,12303:32583029,43936218 +g1,12303:6764466,43936218 +g1,12303:6764466,43936218 +g1,12303:32583029,43936218 +g1,12303:32583029,43936218 ) -h1,12304:6764466,44132826:0,0,0 +h1,12303:6764466,44132826:0,0,0 ] -g1,12317:32583029,44132826 +g1,12316:32583029,44132826 ) ] -(1,12317:32583029,45706769:0,0,0 -g1,12317:32583029,45706769 +(1,12316:32583029,45706769:0,0,0 +g1,12316:32583029,45706769 ) ) ] -(1,12317:6630773,47279633:25952256,0,0 -h1,12317:6630773,47279633:25952256,0,0 +(1,12316:6630773,47279633:25952256,0,0 +h1,12316:6630773,47279633:25952256,0,0 ) ] -(1,12317:4262630,4025873:0,0,0 -[1,12317:-473656,4025873:0,0,0 -(1,12317:-473656,-710413:0,0,0 -(1,12317:-473656,-710413:0,0,0 -g1,12317:-473656,-710413 +(1,12316:4262630,4025873:0,0,0 +[1,12316:-473656,4025873:0,0,0 +(1,12316:-473656,-710413:0,0,0 +(1,12316:-473656,-710413:0,0,0 +g1,12316:-473656,-710413 ) -g1,12317:-473656,-710413 +g1,12316:-473656,-710413 ) ] ) ] !31077 -}193 +}194 !12 -{194 -[1,12387:4262630,47279633:28320399,43253760,0 -(1,12387:4262630,4025873:0,0,0 -[1,12387:-473656,4025873:0,0,0 -(1,12387:-473656,-710413:0,0,0 -(1,12387:-473656,-644877:0,0,0 -k1,12387:-473656,-644877:-65536 +{195 +[1,12386:4262630,47279633:28320399,43253760,0 +(1,12386:4262630,4025873:0,0,0 +[1,12386:-473656,4025873:0,0,0 +(1,12386:-473656,-710413:0,0,0 +(1,12386:-473656,-644877:0,0,0 +k1,12386:-473656,-644877:-65536 ) -(1,12387:-473656,4736287:0,0,0 -k1,12387:-473656,4736287:5209943 +(1,12386:-473656,4736287:0,0,0 +k1,12386:-473656,4736287:5209943 ) -g1,12387:-473656,-710413 +g1,12386:-473656,-710413 ) ] ) -[1,12387:6630773,47279633:25952256,43253760,0 -[1,12387:6630773,4812305:25952256,786432,0 -(1,12387:6630773,4812305:25952256,505283,134348 -(1,12387:6630773,4812305:25952256,505283,134348 -g1,12387:3078558,4812305 -[1,12387:3078558,4812305:0,0,0 -(1,12387:3078558,2439708:0,1703936,0 -k1,12387:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12387:2537886,2439708:1179648,16384,0 +[1,12386:6630773,47279633:25952256,43253760,0 +[1,12386:6630773,4812305:25952256,786432,0 +(1,12386:6630773,4812305:25952256,505283,134348 +(1,12386:6630773,4812305:25952256,505283,134348 +g1,12386:3078558,4812305 +[1,12386:3078558,4812305:0,0,0 +(1,12386:3078558,2439708:0,1703936,0 +k1,12386:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12386:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12387:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12386:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12387:3078558,4812305:0,0,0 -(1,12387:3078558,2439708:0,1703936,0 -g1,12387:29030814,2439708 -g1,12387:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12387:36151628,1915420:16384,1179648,0 +[1,12386:3078558,4812305:0,0,0 +(1,12386:3078558,2439708:0,1703936,0 +g1,12386:29030814,2439708 +g1,12386:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12386:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12387:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12386:37855564,2439708:1179648,16384,0 ) ) -k1,12387:3078556,2439708:-34777008 +k1,12386:3078556,2439708:-34777008 ) ] -[1,12387:3078558,4812305:0,0,0 -(1,12387:3078558,49800853:0,16384,2228224 -k1,12387:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12387:2537886,49800853:1179648,16384,0 +[1,12386:3078558,4812305:0,0,0 +(1,12386:3078558,49800853:0,16384,2228224 +k1,12386:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12386:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12387:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12386:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12387:3078558,4812305:0,0,0 -(1,12387:3078558,49800853:0,16384,2228224 -g1,12387:29030814,49800853 -g1,12387:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12387:36151628,51504789:16384,1179648,0 +[1,12386:3078558,4812305:0,0,0 +(1,12386:3078558,49800853:0,16384,2228224 +g1,12386:29030814,49800853 +g1,12386:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12386:36151628,51504789:16384,1179648,0 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12387:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12386:37855564,49800853:1179648,16384,0 ) ) -k1,12387:3078556,49800853:-34777008 +k1,12386:3078556,49800853:-34777008 ) ] -g1,12387:6630773,4812305 -g1,12387:6630773,4812305 -g1,12387:9714897,4812305 -k1,12387:31387653,4812305:21672756 +g1,12386:6630773,4812305 +g1,12386:6630773,4812305 +g1,12386:9714897,4812305 +k1,12386:31387653,4812305:21672756 ) ) ] -[1,12387:6630773,45706769:25952256,40108032,0 -(1,12387:6630773,45706769:25952256,40108032,0 -(1,12387:6630773,45706769:0,0,0 -g1,12387:6630773,45706769 +[1,12386:6630773,45706769:25952256,40108032,0 +(1,12386:6630773,45706769:25952256,40108032,0 +(1,12386:6630773,45706769:0,0,0 +g1,12386:6630773,45706769 ) -[1,12387:6630773,45706769:25952256,40108032,0 -v1,12317:6630773,6254097:0,393216,0 -(1,12317:6630773,7574285:25952256,1713404,0 -g1,12317:6630773,7574285 -g1,12317:6237557,7574285 -r1,12387:6368629,7574285:131072,1713404,0 -g1,12317:6567858,7574285 -g1,12317:6764466,7574285 -[1,12317:6764466,7574285:25818563,1713404,0 -v1,12308:6764466,6254097:0,393216,0 -(1,12315:6764466,7377677:25818563,1516796,196608 -g1,12315:6764466,7377677 -g1,12315:6764466,7377677 -g1,12315:6567858,7377677 -(1,12315:6567858,7377677:0,1516796,196608 -r1,12387:32779637,7377677:26211779,1713404,196608 -k1,12315:6567857,7377677:-26211780 -) -(1,12315:6567858,7377677:26211779,1516796,196608 -[1,12315:6764466,7377677:25818563,1320188,0 -(1,12310:6764466,6481928:25818563,424439,106246 -(1,12309:6764466,6481928:0,0,0 -g1,12309:6764466,6481928 -g1,12309:6764466,6481928 -g1,12309:6436786,6481928 -(1,12309:6436786,6481928:0,0,0 -) -g1,12309:6764466,6481928 -) -k1,12310:6764466,6481928:0 -k1,12310:6764466,6481928:0 -h1,12310:13403545,6481928:0,0,0 -k1,12310:32583029,6481928:19179484 -g1,12310:32583029,6481928 -) -(1,12314:6764466,7297855:25818563,424439,79822 -(1,12312:6764466,7297855:0,0,0 -g1,12312:6764466,7297855 -g1,12312:6764466,7297855 -g1,12312:6436786,7297855 -(1,12312:6436786,7297855:0,0,0 -) -g1,12312:6764466,7297855 -) -g1,12314:7760328,7297855 -g1,12314:9088144,7297855 -h1,12314:10084006,7297855:0,0,0 -k1,12314:32583030,7297855:22499024 -g1,12314:32583030,7297855 -) -] -) -g1,12315:32583029,7377677 -g1,12315:6764466,7377677 -g1,12315:6764466,7377677 -g1,12315:32583029,7377677 -g1,12315:32583029,7377677 -) -h1,12315:6764466,7574285:0,0,0 -] -g1,12317:32583029,7574285 -) -h1,12317:6630773,7574285:0,0,0 -v1,12320:6630773,8439365:0,393216,0 -(1,12321:6630773,12387345:25952256,4341196,0 -g1,12321:6630773,12387345 -g1,12321:6237557,12387345 -r1,12387:6368629,12387345:131072,4341196,0 -g1,12321:6567858,12387345 -g1,12321:6764466,12387345 -[1,12321:6764466,12387345:25818563,4341196,0 -(1,12321:6764466,8800542:25818563,754393,260573 -(1,12320:6764466,8800542:0,754393,260573 -r1,12387:7856192,8800542:1091726,1014966,260573 -k1,12320:6764466,8800542:-1091726 -) -(1,12320:6764466,8800542:1091726,754393,260573 -) -k1,12320:8038623,8800542:182431 -k1,12320:8366303,8800542:327680 -k1,12320:9745422,8800542:182432 -k1,12320:10681517,8800542:182431 -k1,12320:12419118,8800542:182432 -k1,12320:14847468,8800542:182431 -k1,12320:15561397,8800542:182432 -k1,12320:19911918,8800542:182431 -k1,12320:20710388,8800542:182432 -k1,12320:22177325,8800542:182431 -k1,12320:22817854,8800542:182432 -k1,12320:24527929,8800542:182431 -k1,12320:26064335,8800542:182432 -k1,12320:27719360,8800542:182431 -k1,12320:31128785,8800542:182432 -k1,12321:32583029,8800542:0 -) -(1,12321:6764466,9665622:25818563,513147,134348 -k1,12320:9626891,9665622:146613 -k1,12320:11323431,9665622:146614 -k1,12320:12542213,9665622:146613 -k1,12320:13146923,9665622:146613 -k1,12320:13825034,9665622:146614 -k1,12320:15923309,9665622:146613 -k1,12320:18707091,9665622:146613 -k1,12320:19469743,9665622:146614 -k1,12320:20900862,9665622:146613 -k1,12320:22649176,9665622:146614 -k1,12320:23455081,9665622:146613 -k1,12320:24620779,9665622:146613 -k1,12320:29120950,9665622:146614 -k1,12320:30215214,9665622:146613 -k1,12321:32583029,9665622:0 -) -(1,12321:6764466,10530702:25818563,513147,134348 -k1,12320:8456307,10530702:234976 -k1,12320:9882729,10530702:234977 -k1,12320:13783134,10530702:234976 -k1,12320:14677402,10530702:234976 -k1,12320:15931463,10530702:234976 -k1,12320:20152995,10530702:234977 -k1,12320:21454242,10530702:234976 -k1,12320:24307381,10530702:234976 -k1,12320:25377941,10530702:234976 -k1,12320:28347080,10530702:234977 -k1,12320:29343584,10530702:234976 -k1,12320:32583029,10530702:0 -) -(1,12321:6764466,11395782:25818563,513147,134348 -k1,12320:10033893,11395782:243630 -k1,12320:10960408,11395782:243630 -k1,12320:13570544,11395782:243631 -k1,12320:14170034,11395782:243630 -k1,12320:16993816,11395782:243630 -k1,12320:20300599,11395782:243630 -k1,12320:23570026,11395782:243630 -k1,12320:25207607,11395782:243630 -k1,12320:26470323,11395782:243631 -k1,12320:28367426,11395782:243630 -k1,12320:30522741,11395782:243630 -k1,12320:32051532,11395782:243630 -k1,12320:32583029,11395782:0 -) -(1,12321:6764466,12260862:25818563,505283,126483 -g1,12320:8029966,12260862 -g1,12320:10819178,12260862 -g1,12320:11779935,12260862 -g1,12320:12998249,12260862 -g1,12320:13612321,12260862 -k1,12321:32583029,12260862:15460600 -g1,12321:32583029,12260862 -) -] -g1,12321:32583029,12387345 -) -h1,12321:6630773,12387345:0,0,0 -(1,12373:6630773,15218505:25952256,32768,229376 -(1,12373:6630773,15218505:0,32768,229376 -(1,12373:6630773,15218505:5505024,32768,229376 -r1,12387:12135797,15218505:5505024,262144,229376 -) -k1,12373:6630773,15218505:-5505024 -) -(1,12373:6630773,15218505:25952256,32768,0 -r1,12387:32583029,15218505:25952256,32768,0 -) -) -(1,12373:6630773,16850357:25952256,606339,161218 -(1,12373:6630773,16850357:1974731,582746,14155 -g1,12373:6630773,16850357 -g1,12373:8605504,16850357 -) -k1,12373:32583030,16850357:20355220 -g1,12373:32583030,16850357 -) -(1,12375:6630773,18180743:25952256,564462,147783 -(1,12375:6630773,18180743:2450326,534184,12975 -g1,12375:6630773,18180743 -g1,12375:9081099,18180743 -) -g1,12375:12049749,18180743 -g1,12375:13033052,18180743 -g1,12375:17211366,18180743 -k1,12375:32583029,18180743:11465127 -g1,12375:32583029,18180743 -) -(1,12378:6630773,19439039:25952256,513147,134348 -k1,12377:8008854,19439039:203021 -k1,12377:9813576,19439039:203022 -k1,12377:12318221,19439039:203021 -k1,12377:13759218,19439039:203022 -k1,12377:14621531,19439039:203021 -k1,12377:17012144,19439039:203021 -k1,12377:18498361,19439039:203022 -k1,12377:21307093,19439039:203021 -k1,12377:22193000,19439039:203022 -k1,12377:26005744,19439039:203021 -k1,12377:26860194,19439039:203022 -k1,12377:27478054,19439039:203017 -k1,12377:28212573,19439039:203022 -k1,12377:30974120,19439039:203021 -k1,12378:32583029,19439039:0 -) -(1,12378:6630773,20304119:25952256,513147,134348 -k1,12377:8441069,20304119:228912 -k1,12377:9157539,20304119:228882 -k1,12377:11966603,20304119:228912 -k1,12377:13299797,20304119:228912 -k1,12377:15900457,20304119:228912 -k1,12377:17434846,20304119:228912 -k1,12377:19895260,20304119:228913 -k1,12377:20807057,20304119:228912 -k1,12377:21802085,20304119:228912 -k1,12377:22698153,20304119:228912 -k1,12377:23341878,20304119:228882 -k1,12377:26266286,20304119:228912 -k1,12377:27686643,20304119:228912 -k1,12377:30662169,20304119:228912 -k1,12378:32583029,20304119:0 -) -(1,12378:6630773,21169199:25952256,505283,134348 -k1,12377:8613630,21169199:211419 -k1,12377:10214412,21169199:211419 -k1,12377:12889329,21169199:211419 -k1,12377:15333560,21169199:211419 -k1,12377:16736425,21169199:211420 -k1,12377:18456483,21169199:211419 -k1,12377:21626197,21169199:211419 -k1,12377:23208629,21169199:211419 -k1,12377:24439133,21169199:211419 -k1,12377:29274117,21169199:211419 -k1,12378:32583029,21169199:0 -) -(1,12378:6630773,22034279:25952256,513147,134348 -k1,12377:8672773,22034279:245003 -k1,12377:10634819,22034279:245003 -k1,12377:13790276,22034279:245003 -k1,12377:16819248,22034279:245003 -k1,12377:19622777,22034279:245003 -k1,12377:21672596,22034279:244957 -k1,12377:24289347,22034279:245003 -k1,12377:25909951,22034279:245003 -k1,12377:27311664,22034279:245003 -k1,12377:28215959,22034279:245003 -k1,12377:29633401,22034279:245003 -k1,12377:30293201,22034279:244957 -k1,12377:32583029,22034279:0 -) -(1,12378:6630773,22899359:25952256,513147,134348 -k1,12377:8480636,22899359:186559 -k1,12377:10699466,22899359:186559 -k1,12377:13257773,22899359:186559 -k1,12377:16496344,22899359:186559 -k1,12377:17342195,22899359:186559 -k1,12377:19341480,22899359:186559 -k1,12377:21172994,22899359:186560 -k1,12377:23726058,22899359:186559 -k1,12377:25104062,22899359:186559 -k1,12377:28254814,22899359:186559 -k1,12377:28797233,22899359:186559 -k1,12377:31563944,22899359:186559 -k1,12377:32583029,22899359:0 -) -(1,12378:6630773,23764439:25952256,513147,134348 -g1,12377:9119830,23764439 -g1,12377:10603565,23764439 -g1,12377:11821879,23764439 -g1,12377:14601260,23764439 -g1,12377:17203694,23764439 -g1,12377:18507205,23764439 -g1,12377:19454200,23764439 -g1,12377:21166655,23764439 -g1,12377:22052046,23764439 -g1,12377:22717236,23764439 -g1,12377:24296653,23764439 -g1,12377:25999933,23764439 -g1,12377:27521023,23764439 -g1,12377:28135095,23764439 -k1,12378:32583029,23764439:2789874 -g1,12378:32583029,23764439 -) -(1,12380:6630773,24629519:25952256,513147,134348 -h1,12379:6630773,24629519:983040,0,0 -k1,12379:10713308,24629519:234261 -k1,12379:12112800,24629519:234262 -k1,12379:14807283,24629519:234261 -k1,12379:17102652,24629519:234262 -k1,12379:18355998,24629519:234261 -k1,12379:19925228,24629519:234262 -k1,12379:23797392,24629519:234261 -k1,12379:24979305,24629519:234262 -k1,12379:27593178,24629519:234261 -k1,12379:31230069,24629519:234262 -k1,12379:32115758,24629519:234261 -k1,12379:32583029,24629519:0 -) -(1,12380:6630773,25494599:25952256,513147,134348 -k1,12379:9741384,25494599:175909 -k1,12379:10533332,25494599:175910 -k1,12379:12310941,25494599:175909 -k1,12379:15817391,25494599:175910 -k1,12379:18903754,25494599:175909 -k1,12379:20071223,25494599:175909 -k1,12379:21532949,25494599:175910 -k1,12379:23062832,25494599:175909 -k1,12379:25215963,25494599:175910 -k1,12379:26339523,25494599:175909 -k1,12379:29626427,25494599:175910 -k1,12379:31298523,25494599:175909 -k1,12379:32583029,25494599:0 -) -(1,12380:6630773,26359679:25952256,505283,134348 -k1,12379:7897412,26359679:160391 -k1,12379:8805569,26359679:160391 -k1,12379:11114886,26359679:160391 -k1,12379:12036805,26359679:160391 -k1,12379:12553056,26359679:160391 -k1,12379:14586466,26359679:160391 -k1,12379:16942968,26359679:160391 -k1,12379:18490756,26359679:160391 -k1,12379:20250225,26359679:160391 -k1,12379:20825421,26359679:160353 -k1,12379:23896266,26359679:160391 -k1,12379:25531872,26359679:160391 -k1,12379:27359499,26359679:160391 -k1,12379:29105861,26359679:160391 -k1,12379:31088808,26359679:160391 -k1,12379:32583029,26359679:0 -) -(1,12380:6630773,27224759:25952256,513147,134348 -k1,12379:9742029,27224759:188350 -k1,12379:10913419,27224759:188350 -k1,12379:14206866,27224759:188351 -k1,12379:15586661,27224759:188350 -k1,12379:20774753,27224759:188350 -k1,12379:22848574,27224759:188350 -k1,12379:25082958,27224759:188350 -k1,12379:25729406,27224759:188351 -k1,12379:28547716,27224759:188350 -k1,12379:30895477,27224759:188350 -k1,12379:32583029,27224759:0 -) -(1,12380:6630773,28089839:25952256,513147,134348 -k1,12379:8847351,28089839:224284 -k1,12379:10019287,28089839:224285 -k1,12379:11262656,28089839:224284 -k1,12379:14067092,28089839:224284 -k1,12379:19117448,28089839:224285 -k1,12379:19993160,28089839:224284 -k1,12379:20965210,28089839:224284 -k1,12379:23587456,28089839:224284 -k1,12379:25079207,28089839:224285 -k1,12379:26222306,28089839:224284 -k1,12379:27834643,28089839:224284 -k1,12379:30304847,28089839:224285 -k1,12379:32227169,28089839:224284 -k1,12379:32583029,28089839:0 -) -(1,12380:6630773,28954919:25952256,513147,134348 -k1,12379:9382208,28954919:171283 -k1,12379:10084988,28954919:171283 -k1,12379:12574279,28954919:171283 -k1,12379:14224710,28954919:171283 -k1,12379:14751853,28954919:171283 -k1,12379:16056254,28954919:171283 -k1,12379:19813011,28954919:171282 -k1,12379:22894748,28954919:171283 -k1,12379:24170313,28954919:171283 -k1,12379:25089362,28954919:171283 -k1,12379:27547196,28954919:171283 -k1,12379:28443307,28954919:171283 -k1,12379:29899096,28954919:171283 -k1,12379:31450567,28954919:171283 -k1,12379:32583029,28954919:0 -) -(1,12380:6630773,29819999:25952256,505283,126483 -g1,12379:8400245,29819999 -g1,12379:9408844,29819999 -g1,12379:10739880,29819999 -g1,12379:14015369,29819999 -g1,12379:16133492,29819999 -g1,12379:16747564,29819999 -k1,12380:32583029,29819999:14334691 -g1,12380:32583029,29819999 -) -v1,12382:6630773,30685079:0,393216,0 -(1,12383:6630773,38786960:25952256,8495097,0 -g1,12383:6630773,38786960 -g1,12383:6237557,38786960 -r1,12387:6368629,38786960:131072,8495097,0 -g1,12383:6567858,38786960 -g1,12383:6764466,38786960 -[1,12383:6764466,38786960:25818563,8495097,0 -(1,12383:6764466,30993377:25818563,701514,196608 -(1,12382:6764466,30993377:0,701514,196608 -r1,12387:7761522,30993377:997056,898122,196608 -k1,12382:6764466,30993377:-997056 -) -(1,12382:6764466,30993377:997056,701514,196608 -) -k1,12382:8025440,30993377:263918 -k1,12382:8353120,30993377:327680 -k1,12382:9244874,30993377:263919 -k1,12382:9864652,30993377:263918 -k1,12382:12237519,30993377:263918 -k1,12382:13484478,30993377:263919 -k1,12382:14767481,30993377:263918 -k1,12382:17611551,30993377:263918 -k1,12382:19371657,30993377:263919 -k1,12382:20167072,30993377:263918 -k1,12382:21047028,30993377:263918 -k1,12382:22537126,30993377:263919 -k1,12382:24288056,30993377:263918 -k1,12382:26690414,30993377:263918 -k1,12382:29673422,30993377:263919 -k1,12382:31128785,30993377:263918 -k1,12383:32583029,30993377:0 -) -(1,12383:6764466,31858457:25818563,513147,134348 -k1,12382:9499053,31858457:249462 -k1,12382:12428937,31858457:249461 -k1,12382:13945865,31858457:249462 -k1,12382:14551187,31858457:249462 -k1,12382:16673668,31858457:249462 -k1,12382:18079839,31858457:249461 -k1,12382:18816839,31858457:249412 -k1,12382:21088087,31858457:249462 -k1,12382:22320588,31858457:249461 -k1,12382:23671055,31858457:249462 -k1,12382:25430467,31858457:249462 -k1,12382:28893159,31858457:249462 -k1,12382:30410086,31858457:249461 -k1,12382:31015408,31858457:249462 -k1,12382:32583029,31858457:0 -) -(1,12383:6764466,32723537:25818563,513147,134348 -k1,12382:9508160,32723537:231699 -k1,12382:10687511,32723537:231700 -k1,12382:12762738,32723537:231699 -k1,12382:16587122,32723537:231700 -k1,12382:18704947,32723537:231699 -k1,12382:19292507,32723537:231700 -k1,12382:21218967,32723537:231699 -k1,12382:24504645,32723537:231700 -k1,12382:26982263,32723537:231699 -k1,12382:28405408,32723537:231700 -k1,12382:31280829,32723537:231699 -k1,12382:32583029,32723537:0 -) -(1,12383:6764466,33588617:25818563,513147,134348 -k1,12382:9103971,33588617:157811 -k1,12382:11282256,33588617:157810 -k1,12382:12753409,33588617:157811 -k1,12382:13902779,33588617:157810 -k1,12382:15346406,33588617:157811 -k1,12382:17901524,33588617:157811 -k1,12382:18710762,33588617:157810 -k1,12382:20320195,33588617:157811 -k1,12382:22363476,33588617:157810 -k1,12382:24855024,33588617:157811 -k1,12382:25679991,33588617:157811 -k1,12382:26426314,33588617:157810 -k1,12382:27211960,33588617:157811 -k1,12382:30035775,33588617:157810 -k1,12382:30845014,33588617:157811 +[1,12386:6630773,45706769:25952256,40108032,0 +v1,12316:6630773,6254097:0,393216,0 +(1,12316:6630773,7574285:25952256,1713404,0 +g1,12316:6630773,7574285 +g1,12316:6237557,7574285 +r1,12386:6368629,7574285:131072,1713404,0 +g1,12316:6567858,7574285 +g1,12316:6764466,7574285 +[1,12316:6764466,7574285:25818563,1713404,0 +v1,12307:6764466,6254097:0,393216,0 +(1,12314:6764466,7377677:25818563,1516796,196608 +g1,12314:6764466,7377677 +g1,12314:6764466,7377677 +g1,12314:6567858,7377677 +(1,12314:6567858,7377677:0,1516796,196608 +r1,12386:32779637,7377677:26211779,1713404,196608 +k1,12314:6567857,7377677:-26211780 +) +(1,12314:6567858,7377677:26211779,1516796,196608 +[1,12314:6764466,7377677:25818563,1320188,0 +(1,12309:6764466,6481928:25818563,424439,106246 +(1,12308:6764466,6481928:0,0,0 +g1,12308:6764466,6481928 +g1,12308:6764466,6481928 +g1,12308:6436786,6481928 +(1,12308:6436786,6481928:0,0,0 +) +g1,12308:6764466,6481928 +) +k1,12309:6764466,6481928:0 +k1,12309:6764466,6481928:0 +h1,12309:13403545,6481928:0,0,0 +k1,12309:32583029,6481928:19179484 +g1,12309:32583029,6481928 +) +(1,12313:6764466,7297855:25818563,424439,79822 +(1,12311:6764466,7297855:0,0,0 +g1,12311:6764466,7297855 +g1,12311:6764466,7297855 +g1,12311:6436786,7297855 +(1,12311:6436786,7297855:0,0,0 +) +g1,12311:6764466,7297855 +) +g1,12313:7760328,7297855 +g1,12313:9088144,7297855 +h1,12313:10084006,7297855:0,0,0 +k1,12313:32583030,7297855:22499024 +g1,12313:32583030,7297855 +) +] +) +g1,12314:32583029,7377677 +g1,12314:6764466,7377677 +g1,12314:6764466,7377677 +g1,12314:32583029,7377677 +g1,12314:32583029,7377677 +) +h1,12314:6764466,7574285:0,0,0 +] +g1,12316:32583029,7574285 +) +h1,12316:6630773,7574285:0,0,0 +v1,12319:6630773,8439365:0,393216,0 +(1,12320:6630773,12387345:25952256,4341196,0 +g1,12320:6630773,12387345 +g1,12320:6237557,12387345 +r1,12386:6368629,12387345:131072,4341196,0 +g1,12320:6567858,12387345 +g1,12320:6764466,12387345 +[1,12320:6764466,12387345:25818563,4341196,0 +(1,12320:6764466,8800542:25818563,754393,260573 +(1,12319:6764466,8800542:0,754393,260573 +r1,12386:7856192,8800542:1091726,1014966,260573 +k1,12319:6764466,8800542:-1091726 +) +(1,12319:6764466,8800542:1091726,754393,260573 +) +k1,12319:8038623,8800542:182431 +k1,12319:8366303,8800542:327680 +k1,12319:9745422,8800542:182432 +k1,12319:10681517,8800542:182431 +k1,12319:12419118,8800542:182432 +k1,12319:14847468,8800542:182431 +k1,12319:15561397,8800542:182432 +k1,12319:19911918,8800542:182431 +k1,12319:20710388,8800542:182432 +k1,12319:22177325,8800542:182431 +k1,12319:22817854,8800542:182432 +k1,12319:24527929,8800542:182431 +k1,12319:26064335,8800542:182432 +k1,12319:27719360,8800542:182431 +k1,12319:31128785,8800542:182432 +k1,12320:32583029,8800542:0 +) +(1,12320:6764466,9665622:25818563,513147,134348 +k1,12319:9626891,9665622:146613 +k1,12319:11323431,9665622:146614 +k1,12319:12542213,9665622:146613 +k1,12319:13146923,9665622:146613 +k1,12319:13825034,9665622:146614 +k1,12319:15923309,9665622:146613 +k1,12319:18707091,9665622:146613 +k1,12319:19469743,9665622:146614 +k1,12319:20900862,9665622:146613 +k1,12319:22649176,9665622:146614 +k1,12319:23455081,9665622:146613 +k1,12319:24620779,9665622:146613 +k1,12319:29120950,9665622:146614 +k1,12319:30215214,9665622:146613 +k1,12320:32583029,9665622:0 +) +(1,12320:6764466,10530702:25818563,513147,134348 +k1,12319:8456307,10530702:234976 +k1,12319:9882729,10530702:234977 +k1,12319:13783134,10530702:234976 +k1,12319:14677402,10530702:234976 +k1,12319:15931463,10530702:234976 +k1,12319:20152995,10530702:234977 +k1,12319:21454242,10530702:234976 +k1,12319:24307381,10530702:234976 +k1,12319:25377941,10530702:234976 +k1,12319:28347080,10530702:234977 +k1,12319:29343584,10530702:234976 +k1,12319:32583029,10530702:0 +) +(1,12320:6764466,11395782:25818563,513147,134348 +k1,12319:10033893,11395782:243630 +k1,12319:10960408,11395782:243630 +k1,12319:13570544,11395782:243631 +k1,12319:14170034,11395782:243630 +k1,12319:16993816,11395782:243630 +k1,12319:20300599,11395782:243630 +k1,12319:23570026,11395782:243630 +k1,12319:25207607,11395782:243630 +k1,12319:26470323,11395782:243631 +k1,12319:28367426,11395782:243630 +k1,12319:30522741,11395782:243630 +k1,12319:32051532,11395782:243630 +k1,12319:32583029,11395782:0 +) +(1,12320:6764466,12260862:25818563,505283,126483 +g1,12319:8029966,12260862 +g1,12319:10819178,12260862 +g1,12319:11779935,12260862 +g1,12319:12998249,12260862 +g1,12319:13612321,12260862 +k1,12320:32583029,12260862:15460600 +g1,12320:32583029,12260862 +) +] +g1,12320:32583029,12387345 +) +h1,12320:6630773,12387345:0,0,0 +(1,12372:6630773,15218505:25952256,32768,229376 +(1,12372:6630773,15218505:0,32768,229376 +(1,12372:6630773,15218505:5505024,32768,229376 +r1,12386:12135797,15218505:5505024,262144,229376 +) +k1,12372:6630773,15218505:-5505024 +) +(1,12372:6630773,15218505:25952256,32768,0 +r1,12386:32583029,15218505:25952256,32768,0 +) +) +(1,12372:6630773,16850357:25952256,606339,161218 +(1,12372:6630773,16850357:1974731,582746,14155 +g1,12372:6630773,16850357 +g1,12372:8605504,16850357 +) +k1,12372:32583030,16850357:20355220 +g1,12372:32583030,16850357 +) +(1,12374:6630773,18180743:25952256,564462,147783 +(1,12374:6630773,18180743:2450326,534184,12975 +g1,12374:6630773,18180743 +g1,12374:9081099,18180743 +) +g1,12374:12049749,18180743 +g1,12374:13033052,18180743 +g1,12374:17211366,18180743 +k1,12374:32583029,18180743:11465127 +g1,12374:32583029,18180743 +) +(1,12377:6630773,19439039:25952256,513147,134348 +k1,12376:8008854,19439039:203021 +k1,12376:9813576,19439039:203022 +k1,12376:12318221,19439039:203021 +k1,12376:13759218,19439039:203022 +k1,12376:14621531,19439039:203021 +k1,12376:17012144,19439039:203021 +k1,12376:18498361,19439039:203022 +k1,12376:21307093,19439039:203021 +k1,12376:22193000,19439039:203022 +k1,12376:26005744,19439039:203021 +k1,12376:26860194,19439039:203022 +k1,12376:27478054,19439039:203017 +k1,12376:28212573,19439039:203022 +k1,12376:30974120,19439039:203021 +k1,12377:32583029,19439039:0 +) +(1,12377:6630773,20304119:25952256,513147,134348 +k1,12376:8441069,20304119:228912 +k1,12376:9157539,20304119:228882 +k1,12376:11966603,20304119:228912 +k1,12376:13299797,20304119:228912 +k1,12376:15900457,20304119:228912 +k1,12376:17434846,20304119:228912 +k1,12376:19895260,20304119:228913 +k1,12376:20807057,20304119:228912 +k1,12376:21802085,20304119:228912 +k1,12376:22698153,20304119:228912 +k1,12376:23341878,20304119:228882 +k1,12376:26266286,20304119:228912 +k1,12376:27686643,20304119:228912 +k1,12376:30662169,20304119:228912 +k1,12377:32583029,20304119:0 +) +(1,12377:6630773,21169199:25952256,505283,134348 +k1,12376:8596263,21169199:194052 +k1,12376:10179678,21169199:194052 +k1,12376:12837228,21169199:194052 +k1,12376:15437762,21169199:194052 +k1,12376:16823259,21169199:194052 +k1,12376:18525951,21169199:194053 +k1,12376:21678298,21169199:194052 +k1,12376:23243363,21169199:194052 +k1,12376:24456500,21169199:194052 +k1,12376:29274117,21169199:194052 +k1,12377:32583029,21169199:0 +) +(1,12377:6630773,22034279:25952256,505283,134348 +k1,12376:8670807,22034279:243037 +k1,12376:10630886,22034279:243036 +k1,12376:13784377,22034279:243037 +k1,12376:16811382,22034279:243036 +k1,12376:19612945,22034279:243037 +k1,12376:21660800,22034279:242993 +k1,12376:24275584,22034279:243036 +k1,12376:25894222,22034279:243037 +k1,12376:27293968,22034279:243036 +k1,12376:28219890,22034279:243037 +k1,12376:29635365,22034279:243036 +k1,12376:30293201,22034279:242993 +k1,12376:32583029,22034279:0 +) +(1,12377:6630773,22899359:25952256,513147,134348 +k1,12376:8466163,22899359:172086 +k1,12376:10670521,22899359:172087 +k1,12376:13214355,22899359:172086 +k1,12376:16438454,22899359:172087 +k1,12376:17269832,22899359:172086 +k1,12376:19254645,22899359:172087 +k1,12376:21071685,22899359:172086 +k1,12376:23610277,22899359:172087 +k1,12376:24973808,22899359:172086 +k1,12376:28110088,22899359:172087 +k1,12376:28638034,22899359:172086 +k1,12376:31563944,22899359:172087 +k1,12376:32583029,22899359:0 +) +(1,12377:6630773,23764439:25952256,513147,134348 +g1,12376:9119830,23764439 +g1,12376:10603565,23764439 +g1,12376:11821879,23764439 +g1,12376:14601260,23764439 +g1,12376:17203694,23764439 +g1,12376:18507205,23764439 +g1,12376:19454200,23764439 +g1,12376:21166655,23764439 +g1,12376:22052046,23764439 +g1,12376:22717236,23764439 +g1,12376:24296653,23764439 +g1,12376:25999933,23764439 +g1,12376:27521023,23764439 +g1,12376:28135095,23764439 +k1,12377:32583029,23764439:2789874 +g1,12377:32583029,23764439 +) +(1,12379:6630773,24629519:25952256,513147,134348 +h1,12378:6630773,24629519:983040,0,0 +k1,12378:10713308,24629519:234261 +k1,12378:12112800,24629519:234262 +k1,12378:14807283,24629519:234261 +k1,12378:17102652,24629519:234262 +k1,12378:18355998,24629519:234261 +k1,12378:19925228,24629519:234262 +k1,12378:23797392,24629519:234261 +k1,12378:24979305,24629519:234262 +k1,12378:27593178,24629519:234261 +k1,12378:31230069,24629519:234262 +k1,12378:32115758,24629519:234261 +k1,12378:32583029,24629519:0 +) +(1,12379:6630773,25494599:25952256,513147,134348 +k1,12378:9741384,25494599:175909 +k1,12378:10533332,25494599:175910 +k1,12378:12310941,25494599:175909 +k1,12378:15817391,25494599:175910 +k1,12378:18903754,25494599:175909 +k1,12378:20071223,25494599:175909 +k1,12378:21532949,25494599:175910 +k1,12378:23062832,25494599:175909 +k1,12378:25215963,25494599:175910 +k1,12378:26339523,25494599:175909 +k1,12378:29626427,25494599:175910 +k1,12378:31298523,25494599:175909 +k1,12378:32583029,25494599:0 +) +(1,12379:6630773,26359679:25952256,505283,134348 +k1,12378:7897412,26359679:160391 +k1,12378:8805569,26359679:160391 +k1,12378:11114886,26359679:160391 +k1,12378:12036805,26359679:160391 +k1,12378:12553056,26359679:160391 +k1,12378:14586466,26359679:160391 +k1,12378:16942968,26359679:160391 +k1,12378:18490756,26359679:160391 +k1,12378:20250225,26359679:160391 +k1,12378:20825421,26359679:160353 +k1,12378:23896266,26359679:160391 +k1,12378:25531872,26359679:160391 +k1,12378:27359499,26359679:160391 +k1,12378:29105861,26359679:160391 +k1,12378:31088808,26359679:160391 +k1,12378:32583029,26359679:0 +) +(1,12379:6630773,27224759:25952256,513147,134348 +k1,12378:9742029,27224759:188350 +k1,12378:10913419,27224759:188350 +k1,12378:14206866,27224759:188351 +k1,12378:15586661,27224759:188350 +k1,12378:20774753,27224759:188350 +k1,12378:22848574,27224759:188350 +k1,12378:25082958,27224759:188350 +k1,12378:25729406,27224759:188351 +k1,12378:28547716,27224759:188350 +k1,12378:30895477,27224759:188350 +k1,12378:32583029,27224759:0 +) +(1,12379:6630773,28089839:25952256,513147,134348 +k1,12378:8847351,28089839:224284 +k1,12378:10019287,28089839:224285 +k1,12378:11262656,28089839:224284 +k1,12378:14067092,28089839:224284 +k1,12378:19117448,28089839:224285 +k1,12378:19993160,28089839:224284 +k1,12378:20965210,28089839:224284 +k1,12378:23587456,28089839:224284 +k1,12378:25079207,28089839:224285 +k1,12378:26222306,28089839:224284 +k1,12378:27834643,28089839:224284 +k1,12378:30304847,28089839:224285 +k1,12378:32227169,28089839:224284 +k1,12378:32583029,28089839:0 +) +(1,12379:6630773,28954919:25952256,513147,134348 +k1,12378:9382208,28954919:171283 +k1,12378:10084988,28954919:171283 +k1,12378:12574279,28954919:171283 +k1,12378:14224710,28954919:171283 +k1,12378:14751853,28954919:171283 +k1,12378:16056254,28954919:171283 +k1,12378:19813011,28954919:171282 +k1,12378:22894748,28954919:171283 +k1,12378:24170313,28954919:171283 +k1,12378:25089362,28954919:171283 +k1,12378:27547196,28954919:171283 +k1,12378:28443307,28954919:171283 +k1,12378:29899096,28954919:171283 +k1,12378:31450567,28954919:171283 +k1,12378:32583029,28954919:0 +) +(1,12379:6630773,29819999:25952256,505283,126483 +g1,12378:8400245,29819999 +g1,12378:9408844,29819999 +g1,12378:10739880,29819999 +g1,12378:14015369,29819999 +g1,12378:16133492,29819999 +g1,12378:16747564,29819999 +k1,12379:32583029,29819999:14334691 +g1,12379:32583029,29819999 +) +v1,12381:6630773,30685079:0,393216,0 +(1,12382:6630773,38881988:25952256,8590125,0 +g1,12382:6630773,38881988 +g1,12382:6237557,38881988 +r1,12386:6368629,38881988:131072,8590125,0 +g1,12382:6567858,38881988 +g1,12382:6764466,38881988 +[1,12382:6764466,38881988:25818563,8590125,0 +(1,12382:6764466,30993377:25818563,701514,196608 +(1,12381:6764466,30993377:0,701514,196608 +r1,12386:7761522,30993377:997056,898122,196608 +k1,12381:6764466,30993377:-997056 +) +(1,12381:6764466,30993377:997056,701514,196608 +) +k1,12381:7978615,30993377:217093 +k1,12381:8306295,30993377:327680 +k1,12381:9151224,30993377:217094 +k1,12381:9724177,30993377:217093 +k1,12381:12350374,30993377:217094 +k1,12381:15621445,30993377:217093 +k1,12381:16857624,30993377:217094 +k1,12381:18570904,30993377:217093 +k1,12381:21074548,30993377:217093 +k1,12381:21907680,30993377:217094 +k1,12381:22713286,30993377:217093 +k1,12381:24121825,30993377:217094 +k1,12381:26982640,30993377:217093 +k1,12381:27815772,30993377:217094 +k1,12381:29734835,30993377:217093 +k1,12382:32583029,30993377:0 +) +(1,12382:6764466,31858457:25818563,513147,134348 +k1,12381:8509236,31858457:134550 +k1,12381:11990055,31858457:134551 +k1,12381:12656102,31858457:134550 +k1,12381:15930482,31858457:134550 +k1,12381:16681071,31858457:134551 +k1,12381:18041800,31858457:134550 +k1,12381:19489692,31858457:134550 +k1,12381:20908748,31858457:134550 +k1,12381:22034859,31858457:134551 +k1,12381:26002610,31858457:134550 +k1,12381:28817583,31858457:134550 +k1,12381:30219600,31858457:134551 +k1,12381:30710010,31858457:134550 +k1,12381:32583029,31858457:0 +) +(1,12382:6764466,32723537:25818563,513147,134348 +k1,12381:9359037,32723537:296223 +k1,12381:10811970,32723537:296223 +k1,12381:11736027,32723537:296222 +k1,12381:12388110,32723537:296223 +k1,12381:15006274,32723537:296223 +k1,12381:18182804,32723537:296223 +k1,12381:19498111,32723537:296222 +k1,12381:21903283,32723537:296223 +k1,12381:23695693,32723537:296223 +k1,12381:24523413,32723537:296223 +k1,12381:27154028,32723537:296223 +k1,12381:30663480,32723537:296222 +k1,12381:32227169,32723537:296223 +k1,12381:32583029,32723537:0 +) +(1,12382:6764466,33588617:25818563,513147,134348 +k1,12381:8556548,33588617:224461 +k1,12381:11293004,33588617:224461 +k1,12381:12465115,33588617:224460 +k1,12381:14533104,33588617:224461 +k1,12381:18523919,33588617:224461 +k1,12381:20768855,33588617:224461 +k1,12381:23573467,33588617:224460 +k1,12381:25111270,33588617:224461 +k1,12381:26327291,33588617:224461 +k1,12381:28949059,33588617:224461 +k1,12381:29824947,33588617:224460 +k1,12381:31501030,33588617:224461 k1,12382:32583029,33588617:0 ) -(1,12383:6764466,34453697:25818563,513147,126483 -k1,12382:9255031,34453697:230228 -k1,12382:13077943,34453697:230228 -k1,12382:14875792,34453697:230228 -k1,12382:17214969,34453697:230228 -k1,12382:18758539,34453697:230228 -k1,12382:19604804,34453697:230227 -k1,12382:21586809,34453697:230228 -k1,12382:23514419,34453697:230228 -k1,12382:26366742,34453697:230228 -k1,12382:29823963,34453697:230228 -k1,12382:32583029,34453697:0 -) -(1,12383:6764466,35318777:25818563,513147,134348 -k1,12382:8120501,35318777:209810 -k1,12382:11471451,35318777:209809 -k1,12382:12332689,35318777:209810 -k1,12382:13290264,35318777:209809 -k1,12382:16284043,35318777:209810 -k1,12382:17106614,35318777:209809 -k1,12382:18335509,35318777:209810 -k1,12382:19970726,35318777:209809 -k1,12382:20839828,35318777:209810 -k1,12382:24815991,35318777:209809 -k1,12382:25513378,35318777:209799 -k1,12382:28534027,35318777:209810 -k1,12382:29275333,35318777:209809 -k1,12382:29841003,35318777:209810 -k1,12382:32583029,35318777:0 -) -(1,12383:6764466,36183857:25818563,513147,134348 -k1,12382:8278020,36183857:229048 -k1,12382:11648865,36183857:229049 -k1,12382:12896998,36183857:229048 -k1,12382:14352226,36183857:229049 -k1,12382:19246127,36183857:229048 -k1,12382:20134468,36183857:229049 -k1,12382:20719376,36183857:229048 -k1,12382:24024684,36183857:229048 -k1,12382:26995759,36183857:229049 -k1,12382:29511358,36183857:229048 -k1,12382:30356445,36183857:229049 -k1,12382:31212672,36183857:229048 -k1,12383:32583029,36183857:0 -) -(1,12383:6764466,37048937:25818563,513147,126483 -k1,12382:10175615,37048937:196608 -k1,12382:11657384,37048937:196608 -k1,12382:13121458,37048937:196608 -k1,12382:16005697,37048937:196608 -k1,12382:17872162,37048937:196608 -k1,12382:19138318,37048937:196608 -k1,12382:23172714,37048937:196608 -k1,12382:24316973,37048937:196608 -k1,12382:25532666,37048937:196608 -k1,12382:28805534,37048937:196608 -k1,12382:32168186,37048937:196608 -k1,12383:32583029,37048937:0 -) -(1,12383:6764466,37914017:25818563,513147,126483 -k1,12382:8463159,37914017:202506 -k1,12382:9197163,37914017:202507 -k1,12382:12631905,37914017:202506 -k1,12382:14101877,37914017:202506 -k1,12382:18142171,37914017:202506 -k1,12382:19292329,37914017:202507 -k1,12382:19850695,37914017:202506 -k1,12382:22132658,37914017:202506 -k1,12382:25196467,37914017:202507 -k1,12382:26720834,37914017:202506 -k1,12382:27590496,37914017:202506 -k1,12382:28381515,37914017:202506 -k1,12382:29868528,37914017:202507 -k1,12382:31563944,37914017:202506 -k1,12382:32583029,37914017:0 -) -(1,12383:6764466,38779097:25818563,513147,7863 -g1,12382:8370098,38779097 -g1,12382:12044046,38779097 -g1,12382:13510741,38779097 -g1,12382:16397601,38779097 -g1,12382:18093017,38779097 -g1,12382:18905008,38779097 -k1,12383:32583029,38779097:11082140 -g1,12383:32583029,38779097 -) -] -g1,12383:32583029,38786960 -) -h1,12383:6630773,38786960:0,0,0 -(1,12386:6630773,39652040:25952256,513147,134348 -h1,12385:6630773,39652040:983040,0,0 -k1,12385:8825901,39652040:170066 -k1,12385:12777394,39652040:170066 -k1,12385:13303320,39652040:170066 -k1,12385:15346405,39652040:170066 -k1,12385:19349672,39652040:170066 -k1,12385:21818085,39652040:170065 -k1,12385:22971191,39652040:170066 -k1,12385:23672754,39652040:170066 -k1,12385:25356046,39652040:170066 -k1,12385:26473763,39652040:170066 -k1,12385:28095451,39652040:170066 -k1,12385:31019340,39652040:170066 -k1,12386:32583029,39652040:0 -) -(1,12386:6630773,40517120:25952256,513147,134348 -k1,12385:8201116,40517120:162630 -k1,12385:9468028,40517120:162630 -k1,12385:10378424,40517120:162630 -k1,12385:12698499,40517120:162630 -k1,12385:13547291,40517120:162630 -k1,12385:16031862,40517120:162630 -k1,12385:16877376,40517120:162629 -k1,12385:20770971,40517120:162630 -k1,12385:22420613,40517120:162630 -k1,12385:23932629,40517120:162630 -k1,12385:25042910,40517120:162630 -k1,12385:27866957,40517120:162630 -k1,12385:30588113,40517120:162630 -k1,12385:32583029,40517120:0 -) -(1,12386:6630773,41382200:25952256,513147,134348 -k1,12385:9709480,41382200:144005 -k1,12385:10872571,41382200:144006 -k1,12385:13174677,41382200:144005 -k1,12385:15294593,41382200:144006 -k1,12385:18721952,41382200:144005 -k1,12385:19533114,41382200:144006 -k1,12385:20091907,41382200:143950 -k1,12385:23146367,41382200:144006 -k1,12385:23821869,41382200:144005 -k1,12385:25833650,41382200:144005 -k1,12385:27782463,41382200:143951 -$1,12385:27989557,41382200 -k1,12385:29856797,41382200:0 -k1,12385:30230245,41382200:0 -k1,12385:30603693,41382200:0 -k1,12385:30977141,41382200:0 -k1,12385:32470933,41382200:0 -k1,12386:32583029,41382200:0 -) -(1,12386:6630773,42247280:25952256,513147,134348 -(1,12385:7377669,42335763:32768,0,0 -) -k1,12385:10024573,42247280:0 -k1,12385:10398021,42247280:0 -$1,12385:11891813,42247280 -k1,12385:12557283,42247280:284706 -k1,12385:13612693,42247280:284707 -k1,12385:16665640,42247280:284706 -k1,12385:17897997,42247280:284706 -k1,12385:23122153,42247280:284707 -k1,12385:23851762,42247280:284620 -k1,12385:26566544,42247280:284707 -k1,12385:29717795,42247280:284706 -k1,12385:32583029,42247280:0 -) -(1,12386:6630773,43112360:25952256,513147,134348 -k1,12385:9688134,43112360:273392 -k1,12385:12520051,43112360:273391 -k1,12385:14598230,43112360:273317 -k1,12385:15863182,43112360:273392 -k1,12385:19712873,43112360:273391 -k1,12385:20637693,43112360:273392 -k1,12385:22681212,43112360:273392 -k1,12385:23570641,43112360:273391 -k1,12385:24863118,43112360:273392 -k1,12385:26906636,43112360:273391 -k1,12385:27839320,43112360:273392 -k1,12385:29178982,43112360:273391 -k1,12385:31469572,43112360:273392 -k1,12385:32583029,43112360:0 -) -(1,12386:6630773,43977440:25952256,505283,134348 -k1,12385:8384680,43977440:232161 -k1,12385:10095333,43977440:232161 -k1,12385:11594960,43977440:232161 -k1,12385:12846206,43977440:232161 -k1,12385:15988821,43977440:232161 -k1,12385:17412427,43977440:232161 -k1,12385:18710860,43977440:232162 -k1,12385:21656212,43977440:232161 -k1,12385:22571258,43977440:232161 -k1,12385:25489740,43977440:232161 -k1,12385:29801517,43977440:232161 -k1,12385:31591469,43977440:232161 -k1,12385:32583029,43977440:0 -) -(1,12386:6630773,44842520:25952256,505283,134348 -k1,12385:8782824,44842520:192525 -k1,12385:10693047,44842520:192524 -k1,12385:11571734,44842520:192525 -k1,12385:13144446,44842520:192524 -k1,12385:14673905,44842520:192525 -k1,12385:17238177,44842520:192524 -k1,12385:18240072,44842520:192525 -k1,12385:20134566,44842520:192524 -k1,12385:23237545,44842520:192525 -k1,12385:25438092,44842520:192524 -k1,12385:27126804,44842520:192525 -k1,12385:28451790,44842520:192524 -k1,12385:30884991,44842520:192525 -k1,12385:32583029,44842520:0 -) -] -(1,12387:32583029,45706769:0,0,0 -g1,12387:32583029,45706769 -) -) -] -(1,12387:6630773,47279633:25952256,0,0 -h1,12387:6630773,47279633:25952256,0,0 -) -] -(1,12387:4262630,4025873:0,0,0 -[1,12387:-473656,4025873:0,0,0 -(1,12387:-473656,-710413:0,0,0 -(1,12387:-473656,-710413:0,0,0 -g1,12387:-473656,-710413 -) -g1,12387:-473656,-710413 -) -] -) -] -!24193 -}194 -Input:2043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2044:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2045:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,12382:6764466,34453697:25818563,513147,134348 +k1,12381:7830955,34453697:156849 +k1,12381:10321542,34453697:156850 +k1,12381:11145547,34453697:156849 +k1,12381:11890910,34453697:156850 +k1,12381:15101737,34453697:156849 +k1,12381:17678175,34453697:156849 +k1,12381:19026470,34453697:156850 +k1,12381:22259579,34453697:156849 +k1,12381:26429198,34453697:156850 +k1,12381:27213882,34453697:156849 +k1,12381:30036737,34453697:156850 +k1,12381:30845014,34453697:156849 +k1,12381:32583029,34453697:0 +) +(1,12382:6764466,35318777:25818563,513147,134348 +k1,12381:9246897,35318777:222094 +k1,12381:12049143,35318777:222094 +k1,12381:15863921,35318777:222094 +k1,12381:17653636,35318777:222094 +k1,12381:20314981,35318777:222095 +k1,12381:21641357,35318777:222094 +k1,12381:24485546,35318777:222094 +k1,12381:27934633,35318777:222094 +k1,12381:31089463,35318777:222094 +k1,12381:32583029,35318777:0 +) +(1,12382:6764466,36183857:25818563,513147,134348 +k1,12381:7599161,36183857:148533 +k1,12381:11062505,36183857:148533 +k1,12381:11698575,36183857:148482 +k1,12381:14657947,36183857:148533 +k1,12381:17948276,36183857:148533 +k1,12381:19115894,36183857:148533 +k1,12381:20490606,36183857:148533 +k1,12381:25303992,36183857:148533 +k1,12381:26111817,36183857:148533 +k1,12381:26616210,36183857:148533 +k1,12381:29841003,36183857:148533 +k1,12381:32583029,36183857:0 +) +(1,12382:6764466,37048937:25818563,513147,102891 +k1,12381:9209816,37048937:185013 +k1,12381:10010867,37048937:185013 +k1,12381:10823060,37048937:185014 +k1,12381:12464938,37048937:185013 +k1,12381:15864492,37048937:185013 +k1,12381:17334666,37048937:185013 +k1,12381:18787146,37048937:185014 +k1,12381:21659790,37048937:185013 +k1,12381:23514660,37048937:185013 +k1,12381:24769221,37048937:185013 +k1,12381:28792023,37048937:185014 +k1,12381:29924687,37048937:185013 +k1,12381:31128785,37048937:185013 +k1,12382:32583029,37048937:0 +) +(1,12382:6764466,37914017:25818563,513147,126483 +k1,12381:8731587,37914017:238937 +k1,12381:12136567,37914017:238936 +k1,12381:12790307,37914017:238897 +k1,12381:14525431,37914017:238937 +k1,12381:15295865,37914017:238937 +k1,12381:18478024,37914017:238937 +k1,12381:19984426,37914017:238936 +k1,12381:24061151,37914017:238937 +k1,12381:25247739,37914017:238937 +k1,12381:25842536,37914017:238937 +k1,12381:28160929,37914017:238936 +k1,12381:31261168,37914017:238937 +k1,12381:32583029,37914017:0 +) +(1,12382:6764466,38779097:25818563,513147,102891 +g1,12381:7630851,38779097 +g1,12381:8418593,38779097 +g1,12381:9902328,38779097 +g1,12381:11594467,38779097 +g1,12381:12812781,38779097 +g1,12381:14418413,38779097 +g1,12381:18092361,38779097 +g1,12381:19559056,38779097 +g1,12381:22445916,38779097 +g1,12381:24141332,38779097 +g1,12381:24953323,38779097 +k1,12382:32583029,38779097:5033825 +g1,12382:32583029,38779097 +) +] +g1,12382:32583029,38881988 +) +h1,12382:6630773,38881988:0,0,0 +(1,12385:6630773,39747068:25952256,513147,134348 +h1,12384:6630773,39747068:983040,0,0 +k1,12384:8811428,39747068:155593 +k1,12384:12922120,39747068:155594 +k1,12384:13433573,39747068:155593 +k1,12384:15462185,39747068:155593 +k1,12384:19450980,39747068:155594 +k1,12384:21904921,39747068:155593 +k1,12384:23043554,39747068:155593 +k1,12384:23730645,39747068:155594 +k1,12384:25399464,39747068:155593 +k1,12384:26502708,39747068:155593 +k1,12384:28109924,39747068:155594 +k1,12384:31019340,39747068:155593 +k1,12385:32583029,39747068:0 +) +(1,12385:6630773,40612148:25952256,513147,134348 +k1,12384:8201116,40612148:162630 +k1,12384:9468028,40612148:162630 +k1,12384:10378424,40612148:162630 +k1,12384:12698499,40612148:162630 +k1,12384:13547291,40612148:162630 +k1,12384:16031862,40612148:162630 +k1,12384:16877376,40612148:162629 +k1,12384:20770971,40612148:162630 +k1,12384:22420613,40612148:162630 +k1,12384:23932629,40612148:162630 +k1,12384:25042910,40612148:162630 +k1,12384:27866957,40612148:162630 +k1,12384:30588113,40612148:162630 +k1,12384:32583029,40612148:0 +) +(1,12385:6630773,41477228:25952256,513147,134348 +k1,12384:9709480,41477228:144005 +k1,12384:10872571,41477228:144006 +k1,12384:13174677,41477228:144005 +k1,12384:15294593,41477228:144006 +k1,12384:18721952,41477228:144005 +k1,12384:19533114,41477228:144006 +k1,12384:20091907,41477228:143950 +k1,12384:23146367,41477228:144006 +k1,12384:23821869,41477228:144005 +k1,12384:25833650,41477228:144005 +k1,12384:27782463,41477228:143951 +$1,12384:27989557,41477228 +k1,12384:29856797,41477228:0 +k1,12384:30230245,41477228:0 +k1,12384:30603693,41477228:0 +k1,12384:30977141,41477228:0 +k1,12384:32470933,41477228:0 +k1,12385:32583029,41477228:0 +) +(1,12385:6630773,42342308:25952256,513147,134348 +(1,12384:7377669,42430791:32768,0,0 +) +k1,12384:10024573,42342308:0 +k1,12384:10398021,42342308:0 +$1,12384:11891813,42342308 +k1,12384:12557283,42342308:284706 +k1,12384:13612693,42342308:284707 +k1,12384:16665640,42342308:284706 +k1,12384:17897997,42342308:284706 +k1,12384:23122153,42342308:284707 +k1,12384:23851762,42342308:284620 +k1,12384:26566544,42342308:284707 +k1,12384:29717795,42342308:284706 +k1,12384:32583029,42342308:0 +) +(1,12385:6630773,43207388:25952256,513147,134348 +k1,12384:9688134,43207388:273392 +k1,12384:12520051,43207388:273391 +k1,12384:14598230,43207388:273317 +k1,12384:15863182,43207388:273392 +k1,12384:19712873,43207388:273391 +k1,12384:20637693,43207388:273392 +k1,12384:22681212,43207388:273392 +k1,12384:23570641,43207388:273391 +k1,12384:24863118,43207388:273392 +k1,12384:26906636,43207388:273391 +k1,12384:27839320,43207388:273392 +k1,12384:29178982,43207388:273391 +k1,12384:31469572,43207388:273392 +k1,12384:32583029,43207388:0 +) +(1,12385:6630773,44072468:25952256,505283,134348 +k1,12384:8384680,44072468:232161 +k1,12384:10095333,44072468:232161 +k1,12384:11594960,44072468:232161 +k1,12384:12846206,44072468:232161 +k1,12384:15988821,44072468:232161 +k1,12384:17412427,44072468:232161 +k1,12384:18710860,44072468:232162 +k1,12384:21656212,44072468:232161 +k1,12384:22571258,44072468:232161 +k1,12384:25489740,44072468:232161 +k1,12384:29801517,44072468:232161 +k1,12384:31591469,44072468:232161 +k1,12384:32583029,44072468:0 +) +(1,12385:6630773,44937548:25952256,505283,134348 +k1,12384:8782824,44937548:192525 +k1,12384:10693047,44937548:192524 +k1,12384:11571734,44937548:192525 +k1,12384:13144446,44937548:192524 +k1,12384:14673905,44937548:192525 +k1,12384:17238177,44937548:192524 +k1,12384:18240072,44937548:192525 +k1,12384:20134566,44937548:192524 +k1,12384:23237545,44937548:192525 +k1,12384:25438092,44937548:192524 +k1,12384:27126804,44937548:192525 +k1,12384:28451790,44937548:192524 +k1,12384:30884991,44937548:192525 +k1,12384:32583029,44937548:0 +) +] +(1,12386:32583029,45706769:0,0,0 +g1,12386:32583029,45706769 +) +) +] +(1,12386:6630773,47279633:25952256,0,0 +h1,12386:6630773,47279633:25952256,0,0 +) +] +(1,12386:4262630,4025873:0,0,0 +[1,12386:-473656,4025873:0,0,0 +(1,12386:-473656,-710413:0,0,0 +(1,12386:-473656,-710413:0,0,0 +g1,12386:-473656,-710413 +) +g1,12386:-473656,-710413 +) +] +) +] +!24089 +}195 Input:2046:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2047:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2048:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2049:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2050:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{195 -[1,12427:4262630,47279633:28320399,43253760,0 -(1,12427:4262630,4025873:0,0,0 -[1,12427:-473656,4025873:0,0,0 -(1,12427:-473656,-710413:0,0,0 -(1,12427:-473656,-644877:0,0,0 -k1,12427:-473656,-644877:-65536 +{196 +[1,12425:4262630,47279633:28320399,43253760,0 +(1,12425:4262630,4025873:0,0,0 +[1,12425:-473656,4025873:0,0,0 +(1,12425:-473656,-710413:0,0,0 +(1,12425:-473656,-644877:0,0,0 +k1,12425:-473656,-644877:-65536 ) -(1,12427:-473656,4736287:0,0,0 -k1,12427:-473656,4736287:5209943 +(1,12425:-473656,4736287:0,0,0 +k1,12425:-473656,4736287:5209943 ) -g1,12427:-473656,-710413 +g1,12425:-473656,-710413 ) ] ) -[1,12427:6630773,47279633:25952256,43253760,0 -[1,12427:6630773,4812305:25952256,786432,0 -(1,12427:6630773,4812305:25952256,505283,134348 -(1,12427:6630773,4812305:25952256,505283,134348 -g1,12427:3078558,4812305 -[1,12427:3078558,4812305:0,0,0 -(1,12427:3078558,2439708:0,1703936,0 -k1,12427:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12427:2537886,2439708:1179648,16384,0 +[1,12425:6630773,47279633:25952256,43253760,0 +[1,12425:6630773,4812305:25952256,786432,0 +(1,12425:6630773,4812305:25952256,505283,134348 +(1,12425:6630773,4812305:25952256,505283,134348 +g1,12425:3078558,4812305 +[1,12425:3078558,4812305:0,0,0 +(1,12425:3078558,2439708:0,1703936,0 +k1,12425:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12425:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12427:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12425:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12427:3078558,4812305:0,0,0 -(1,12427:3078558,2439708:0,1703936,0 -g1,12427:29030814,2439708 -g1,12427:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12427:36151628,1915420:16384,1179648,0 +[1,12425:3078558,4812305:0,0,0 +(1,12425:3078558,2439708:0,1703936,0 +g1,12425:29030814,2439708 +g1,12425:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12425:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12427:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12425:37855564,2439708:1179648,16384,0 ) ) -k1,12427:3078556,2439708:-34777008 +k1,12425:3078556,2439708:-34777008 ) ] -[1,12427:3078558,4812305:0,0,0 -(1,12427:3078558,49800853:0,16384,2228224 -k1,12427:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12427:2537886,49800853:1179648,16384,0 +[1,12425:3078558,4812305:0,0,0 +(1,12425:3078558,49800853:0,16384,2228224 +k1,12425:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12425:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12427:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12425:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] -) -) +) +) ) ] -[1,12427:3078558,4812305:0,0,0 -(1,12427:3078558,49800853:0,16384,2228224 -g1,12427:29030814,49800853 -g1,12427:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12427:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12427:37855564,49800853:1179648,16384,0 -) -) -k1,12427:3078556,49800853:-34777008 -) -] -g1,12427:6630773,4812305 -k1,12427:23588214,4812305:15762064 -g1,12427:25210885,4812305 -g1,12427:25997972,4812305 -g1,12427:28481131,4812305 -g1,12427:30046786,4812305 -) -) -] -[1,12427:6630773,45706769:25952256,40108032,0 -(1,12427:6630773,45706769:25952256,40108032,0 -(1,12427:6630773,45706769:0,0,0 -g1,12427:6630773,45706769 -) -[1,12427:6630773,45706769:25952256,40108032,0 -(1,12386:6630773,6254097:25952256,513147,134348 -k1,12385:9646030,6254097:204418 -k1,12385:11047135,6254097:204418 -k1,12385:13737334,6254097:204418 -k1,12385:14601044,6254097:204418 -k1,12385:17715916,6254097:204418 -k1,12385:20704303,6254097:204418 -k1,12385:23467247,6254097:204418 -k1,12385:25476522,6254097:204413 -k1,12385:26293702,6254097:204418 -k1,12385:27517205,6254097:204418 -k1,12385:29147031,6254097:204418 -k1,12385:30010741,6254097:204418 -k1,12385:32583029,6254097:0 -) -(1,12386:6630773,7119177:25952256,612464,95026 -g1,12385:10836873,7119177 -g1,12385:12243275,7119177 -$1,12385:12243275,7119177 -g1,12385:13773699,7119177 -g1,12385:14487544,7119177 -(1,12385:15284462,6843896:311689,337183,0 -) -$1,12385:15596151,7119177 -k1,12386:32583029,7119177:16934450 -g1,12386:32583029,7119177 -) -(1,12389:6630773,7984257:25952256,513147,126483 -h1,12387:6630773,7984257:983040,0,0 -k1,12387:8487681,7984257:386280 -k1,12387:9975153,7984257:386467 -k1,12387:13644975,7984257:386468 -k1,12387:14979093,7984257:386467 -k1,12387:20023205,7984257:386468 -k1,12387:21803623,7984257:386467 -k1,12387:22604746,7984257:386280 -k1,12387:23522711,7984257:386468 -k1,12387:28155911,7984257:386467 -$1,12387:28363005,7984257 -k1,12387:30230245,7984257:0 -k1,12387:30603693,7984257:0 -k1,12387:30977141,7984257:0 -k1,12387:31350589,7984257:0 -k1,12387:32470933,7984257:0 -k1,12389:32583029,7984257:0 -) -(1,12389:6630773,8849337:25952256,505283,134348 -k1,12387:11112149,8849337:0 -k1,12387:11485597,8849337:0 -$1,12387:12979389,8849337 -k1,12387:13670038,8849337:309885 -k1,12387:17341920,8849337:309885 -k1,12387:20562260,8849337:309886 -k1,12387:22156651,8849337:309885 -k1,12387:23903741,8849337:309885 -k1,12387:25880863,8849337:309886 -k1,12387:28390136,8849337:309885 -k1,12387:30395437,8849337:309885 -k1,12387:32583029,8849337:0 -) -(1,12389:6630773,9714417:25952256,505283,134348 -k1,12387:7622483,9714417:221007 -k1,12387:11070483,9714417:221007 -k1,12387:12994576,9714417:221007 -k1,12387:16299707,9714417:221007 -k1,12387:20834294,9714417:221007 -k1,12387:22156305,9714417:221006 -k1,12387:25987690,9714417:221007 -k1,12387:29465836,9714417:221007 -k1,12387:30878288,9714417:221007 -k1,12387:31455155,9714417:221007 -k1,12389:32583029,9714417:0 -) -(1,12389:6630773,10579497:25952256,513147,134348 -k1,12387:8068853,10579497:213867 -k1,12387:9230371,10579497:213867 -k1,12387:10940425,10579497:213867 -k1,12387:12558073,10579497:213867 -k1,12387:14834357,10579497:213866 -k1,12387:15995875,10579497:213867 -k1,12387:16624571,10579497:213853 -k1,12387:19922561,10579497:213866 -k1,12387:22010758,10579497:213867 -k1,12387:26671898,10579497:213867 -k1,12387:29796219,10579497:213867 -k1,12387:31001646,10579497:213867 -k1,12389:32583029,10579497:0 -) -(1,12389:6630773,11444577:25952256,505283,134348 -k1,12387:8193275,11444577:253748 -k1,12387:11005549,11444577:253748 -k1,12387:13064105,11444577:253694 -k1,12387:14000738,11444577:253748 -k1,12387:15956456,11444577:253748 -k1,12387:20011292,11444577:253748 -k1,12387:21456485,11444577:253748 -k1,12387:23471842,11444577:253749 -k1,12387:24338352,11444577:253748 -k1,12387:25611185,11444577:253748 -k1,12387:30178513,11444577:253748 -k1,12387:32583029,11444577:0 -) -(1,12389:6630773,12309657:25952256,505283,134348 -$1,12387:6816895,12309657 -k1,12387:8684135,12309657:0 -k1,12387:9057583,12309657:0 -k1,12387:9431031,12309657:0 -k1,12387:9804479,12309657:0 -k1,12387:12792063,12309657:0 -k1,12387:13165511,12309657:0 -$1,12387:14659303,12309657 -k1,12387:15241294,12309657:201227 -k1,12388:19442839,12309657:201227 -k1,12388:20800777,12309657:201228 -k1,12388:22338938,12309657:201227 -k1,12388:24015380,12309657:201227 -k1,12388:24899492,12309657:201227 -k1,12388:26649336,12309657:201228 -k1,12388:27501991,12309657:201227 -k1,12388:29672575,12309657:201227 -k1,12388:32583029,12309657:0 -) -(1,12389:6630773,13174737:25952256,513147,126483 -k1,12388:9207430,13174737:162311 -k1,12388:10937361,13174737:162310 -k1,12388:12037492,13174737:162311 -k1,12388:16000891,13174737:162311 -k1,12388:17656767,13174737:162310 -k1,12388:18505240,13174737:162311 -k1,12388:21331590,13174737:162311 -k1,12388:22692554,13174737:162310 -k1,12388:24740991,13174737:162311 -k1,12388:29035347,13174737:162311 -k1,12388:30389102,13174737:162310 -k1,12388:31617684,13174737:162311 -k1,12388:32583029,13174737:0 -) -(1,12389:6630773,14039817:25952256,505283,11795 -g1,12388:10078622,14039817 -g1,12388:10929279,14039817 -k1,12389:32583029,14039817:19796460 -g1,12389:32583029,14039817 -) -(1,12391:6630773,14904897:25952256,513147,134348 -h1,12390:6630773,14904897:983040,0,0 -k1,12390:8314100,14904897:212699 -k1,12390:10110817,14904897:212712 -k1,12390:11561504,14904897:212712 -k1,12390:12433508,14904897:212712 -k1,12390:15248000,14904897:212713 -k1,12390:16791093,14904897:212712 -k1,12390:18022890,14904897:212712 -k1,12390:21638231,14904897:212712 -k1,12390:24701760,14904897:212713 -k1,12390:25676000,14904897:212712 -k1,12390:26244572,14904897:212712 -k1,12390:29037437,14904897:212713 -k1,12390:31020276,14904897:212712 -k1,12390:31764485,14904897:212712 -k1,12391:32583029,14904897:0 -) -(1,12391:6630773,15769977:25952256,513147,134348 -k1,12390:10668496,15769977:150783 -k1,12390:12213230,15769977:150783 -k1,12390:14176739,15769977:150783 -k1,12390:16110758,15769977:150784 -k1,12390:17996934,15769977:150783 -k1,12390:18503577,15769977:150783 -k1,12390:21349856,15769977:150783 -k1,12390:22368991,15769977:150783 -k1,12390:23511334,15769977:150783 -k1,12390:24728389,15769977:150784 -k1,12390:25844517,15769977:150783 -k1,12390:28487634,15769977:150783 -k1,12390:30206038,15769977:150783 -k1,12390:32583029,15769977:0 -) -(1,12391:6630773,16635057:25952256,513147,126483 -k1,12390:7422902,16635057:179367 -k1,12390:8390667,16635057:179367 -k1,12390:9958087,16635057:179367 -k1,12390:10788882,16635057:179367 -k1,12390:12790150,16635057:179367 -k1,12390:13735633,16635057:179367 -k1,12390:14703397,16635057:179366 -k1,12390:17488475,16635057:179367 -k1,12390:20322705,16635057:179367 -k1,12390:21599800,16635057:179367 -k1,12390:24964217,16635057:179367 -k1,12390:26918299,16635057:179367 -k1,12390:31923737,16635057:179367 -k1,12390:32583029,16635057:0 -) -(1,12391:6630773,17500137:25952256,513147,134348 -k1,12390:9678197,17500137:206438 -k1,12390:12174463,17500137:206438 -k1,12390:12912399,17500137:206439 -k1,12390:16104002,17500137:206438 -k1,12390:18062217,17500137:206438 -k1,12390:21179109,17500137:206438 -k1,12390:23896888,17500137:206439 -k1,12390:24719364,17500137:206438 -k1,12390:27765477,17500137:206438 -k1,12390:32583029,17500137:0 -) -(1,12391:6630773,18365217:25952256,505283,134348 -k1,12390:8252181,18365217:240564 -k1,12390:10581377,18365217:240564 -k1,12390:11504826,18365217:240564 -k1,12390:14064053,18365217:240563 -k1,12390:14990779,18365217:240564 -k1,12390:18200779,18365217:240564 -k1,12390:18911236,18365217:240564 -k1,12390:19683297,18365217:240564 -k1,12390:20990132,18365217:240564 -k1,12390:23781357,18365217:240564 -k1,12390:24673348,18365217:240563 -k1,12390:26984850,18365217:240564 -k1,12390:29110885,18365217:240564 -k1,12390:31931601,18365217:240564 -k1,12390:32583029,18365217:0 -) -(1,12391:6630773,19230297:25952256,513147,134348 -k1,12390:7984696,19230297:261438 -k1,12390:9813755,19230297:261438 -k1,12390:10431054,19230297:261439 -k1,12390:11627035,19230297:261438 -k1,12390:12547765,19230297:261438 -k1,12390:16526405,19230297:261438 -k1,12390:18642513,19230297:261439 -k1,12390:19692349,19230297:261438 -k1,12390:24953529,19230297:261438 -k1,12390:25842802,19230297:261438 -k1,12390:27123326,19230297:261439 -k1,12390:28751845,19230297:261438 -k1,12390:29672575,19230297:261438 -k1,12390:32583029,19230297:0 -) -(1,12391:6630773,20095377:25952256,513147,134348 -k1,12390:9047195,20095377:228830 -k1,12390:12243495,20095377:228830 -k1,12390:13755520,20095377:228830 -k1,12390:18233704,20095377:228830 -k1,12390:19842722,20095377:228830 -k1,12390:21408486,20095377:228830 -k1,12390:22385082,20095377:228830 -k1,12390:26584738,20095377:228830 -k1,12390:27429606,20095377:228830 -k1,12390:29519003,20095377:228830 -k1,12390:30363871,20095377:228830 -k1,12390:30948561,20095377:228830 -k1,12390:32583029,20095377:0 -) -(1,12391:6630773,20960457:25952256,513147,126483 -k1,12390:10526292,20960457:211085 -k1,12390:13729097,20960457:211086 -k1,12390:14931742,20960457:211085 -k1,12390:19198850,20960457:211085 -k1,12390:21559516,20960457:211085 -k1,12390:22373533,20960457:211086 -k1,12390:22944411,20960457:211085 -k1,12390:24365946,20960457:211085 -k1,12390:26434977,20960457:211085 -k1,12390:29490981,20960457:211086 -k1,12390:30893511,20960457:211085 -k1,12390:32583029,20960457:0 -) -(1,12391:6630773,21825537:25952256,513147,134348 -k1,12390:8597672,21825537:165970 -k1,12390:9955086,21825537:165969 -k1,12390:12669916,21825537:166135 -k1,12390:15176832,21825537:165970 -k1,12390:18153641,21825537:165970 -k1,12390:19243668,21825537:165969 -k1,12390:20943836,21825537:165970 -k1,12390:23755494,21825537:165969 -k1,12390:27052774,21825537:165970 -k1,12390:28410188,21825537:165969 -k1,12390:30729671,21825537:165970 -k1,12391:32583029,21825537:0 -k1,12391:32583029,21825537:0 -) -(1,12392:6630773,23942355:25952256,555811,104529 -(1,12392:6630773,23942355:2450326,534184,12975 -g1,12392:6630773,23942355 -g1,12392:9081099,23942355 -) -g1,12392:13170022,23942355 -g1,12392:17460075,23942355 -g1,12392:19027303,23942355 -k1,12392:32583029,23942355:12301367 -g1,12392:32583029,23942355 -) -(1,12396:6630773,25200651:25952256,505283,134348 -k1,12395:7429961,25200651:171353 -k1,12395:8016130,25200651:171326 -k1,12395:10207959,25200651:171354 -k1,12395:13080051,25200651:171353 -k1,12395:13782901,25200651:171353 -k1,12395:14973340,25200651:171354 -k1,12395:17701252,25200651:171353 -k1,12395:19791500,25200651:171354 -k1,12395:22873307,25200651:171353 -k1,12395:24036221,25200651:171354 -k1,12395:27118683,25200651:171353 -k1,12395:30155271,25200651:171354 -k1,12395:31318184,25200651:171353 -k1,12395:32583029,25200651:0 -) -(1,12396:6630773,26065731:25952256,513147,126483 -k1,12395:7549205,26065731:259140 -k1,12395:11007813,26065731:259140 -k1,12395:12458398,26065731:259140 -k1,12395:14280572,26065731:259140 -k1,12395:16937019,26065731:259140 -k1,12395:18143810,26065731:259140 -k1,12395:20095090,26065731:259140 -k1,12395:23475054,26065731:259140 -k1,12395:26524717,26065731:259140 -k1,12395:28068363,26065731:259140 -k1,12395:29431785,26065731:259140 -k1,12395:30438691,26065731:259140 -k1,12395:32583029,26065731:0 -) -(1,12396:6630773,26930811:25952256,505283,126483 -k1,12395:8168047,26930811:269808 -k1,12395:9208558,26930811:269808 -k1,12395:9893138,26930811:269737 -k1,12395:12511756,26930811:269808 -k1,12395:13432992,26930811:269808 -k1,12395:15418533,26930811:269808 -k1,12395:17327396,26930811:269808 -k1,12395:20381173,26930811:269808 -k1,12395:21375809,26930811:269808 -k1,12395:22930123,26930811:269808 -k1,12395:24580119,26930811:269808 -k1,12395:25954209,26930811:269808 -k1,12395:26971783,26930811:269808 -k1,12395:28754817,26930811:269808 -k1,12395:29640663,26930811:269808 -k1,12395:30929556,26930811:269808 -k1,12395:32583029,26930811:0 -) -(1,12396:6630773,27795891:25952256,513147,126483 -k1,12395:8100187,27795891:257653 -k1,12395:9044002,27795891:257653 -k1,12395:11609177,27795891:257652 -k1,12395:12281615,27795891:257595 -k1,12395:15565065,27795891:257653 -k1,12395:17014162,27795891:257652 -k1,12395:18834849,27795891:257653 -k1,12395:21882370,27795891:257653 -(1,12395:21882370,27795891:0,452978,115847 -r1,12427:25054330,27795891:3171960,568825,115847 -k1,12395:21882370,27795891:-3171960 -) -(1,12395:21882370,27795891:3171960,452978,115847 -k1,12395:21882370,27795891:3277 -h1,12395:25051053,27795891:0,411205,112570 -) -k1,12395:25311983,27795891:257653 -k1,12395:26101133,27795891:257653 -k1,12395:27872012,27795891:257653 -k1,12395:28781092,27795891:257652 -k1,12395:30415001,27795891:257653 -k1,12395:31864099,27795891:257653 -k1,12396:32583029,27795891:0 -) -(1,12396:6630773,28660971:25952256,513147,134348 -k1,12395:8175508,28660971:183552 -k1,12395:11269515,28660971:183553 -k1,12395:12737573,28660971:183552 -k1,12395:13912685,28660971:183552 -k1,12395:16430629,28660971:183552 -k1,12395:19351621,28660971:183553 -k1,12395:20151211,28660971:183552 -k1,12395:21353848,28660971:183552 -k1,12395:23031621,28660971:183552 -k1,12395:23630001,28660971:183537 -k1,12395:26087652,28660971:183552 -k1,12395:26899040,28660971:183553 -k1,12395:29887533,28660971:183552 -k1,12396:32583029,28660971:0 -) -(1,12396:6630773,29526051:25952256,505283,134348 -(1,12395:6630773,29526051:0,452978,122846 -r1,12427:12968140,29526051:6337367,575824,122846 -k1,12395:6630773,29526051:-6337367 -) -(1,12395:6630773,29526051:6337367,452978,122846 -k1,12395:6630773,29526051:3277 -h1,12395:12964863,29526051:0,411205,112570 -) -g1,12395:13167369,29526051 -g1,12395:13898095,29526051 -g1,12395:15610550,29526051 -g1,12395:16461207,29526051 -g1,12395:18629793,29526051 -k1,12396:32583029,29526051:10990354 -g1,12396:32583029,29526051 -) -v1,12398:6630773,30391131:0,393216,0 -(1,12399:6630773,34346976:25952256,4349061,0 -g1,12399:6630773,34346976 -g1,12399:6237557,34346976 -r1,12427:6368629,34346976:131072,4349061,0 -g1,12399:6567858,34346976 -g1,12399:6764466,34346976 -[1,12399:6764466,34346976:25818563,4349061,0 -(1,12399:6764466,30752308:25818563,754393,260573 -(1,12398:6764466,30752308:0,754393,260573 -r1,12427:7856192,30752308:1091726,1014966,260573 -k1,12398:6764466,30752308:-1091726 -) -(1,12398:6764466,30752308:1091726,754393,260573 -) -k1,12398:8107804,30752308:251612 -k1,12398:8435484,30752308:327680 -k1,12398:9883783,30752308:251612 -k1,12398:13973184,30752308:251613 -k1,12398:16093227,30752308:251612 -k1,12398:18743457,30752308:251612 -k1,12398:20279575,30752308:251612 -k1,12398:21550272,30752308:251612 -k1,12398:23182728,30752308:251612 -k1,12398:24535346,30752308:251613 -k1,12398:26817919,30752308:251612 -k1,12398:27720959,30752308:251612 -k1,12398:31773659,30752308:251612 -k1,12398:32583029,30752308:0 -) -(1,12399:6764466,31617388:25818563,505283,134348 -k1,12398:7998369,31617388:214818 -k1,12398:10740910,31617388:214817 -k1,12398:12147173,31617388:214818 -k1,12398:14722597,31617388:214817 -k1,12398:16318259,31617388:214818 -k1,12398:18398886,31617388:214817 -k1,12398:19265132,31617388:214818 -k1,12398:21449306,31617388:214817 -k1,12398:24748248,31617388:214818 -k1,12398:26343909,31617388:214817 -k1,12398:27090224,31617388:214818 -k1,12398:29151190,31617388:214817 -k1,12398:30385093,31617388:214818 -k1,12398:31966991,31617388:214817 -k1,12398:32583029,31617388:0 -) -(1,12399:6764466,32482468:25818563,505283,134348 -k1,12398:11283828,32482468:206438 -k1,12398:13225660,32482468:206439 -k1,12398:15099334,32482468:206438 -k1,12398:17839394,32482468:206438 -k1,12398:21238092,32482468:206439 -k1,12398:22072365,32482468:206438 -k1,12398:23772369,32482468:206438 -k1,12398:25849860,32482468:206438 -k1,12398:27075384,32482468:206439 -k1,12398:31264445,32482468:206438 -k1,12398:32583029,32482468:0 -) -(1,12399:6764466,33347548:25818563,513147,126483 -k1,12398:8526081,33347548:253632 -k1,12398:9135573,33347548:253632 -k1,12398:11469973,33347548:253632 -k1,12398:12390761,33347548:253632 -k1,12398:14449201,33347548:253578 -k1,12398:15318871,33347548:253632 -k1,12398:16591588,33347548:253632 -k1,12398:19555134,33347548:253632 -k1,12398:21005453,33347548:253632 -k1,12398:24973666,33347548:253632 -k1,12398:27454867,33347548:253632 -k1,12398:28123288,33347548:253578 -k1,12398:30477349,33347548:253632 -k1,12398:31835263,33347548:253632 -k1,12398:32583029,33347548:0 -) -(1,12399:6764466,34212628:25818563,513147,134348 -g1,12398:8381239,34212628 -g1,12398:9196506,34212628 -g1,12398:9751595,34212628 -g1,12398:11871684,34212628 -g1,12398:13989807,34212628 -g1,12398:15208121,34212628 -g1,12398:16788194,34212628 -g1,12398:18088428,34212628 -g1,12398:20545372,34212628 -g1,12398:21936046,34212628 -g1,12398:24537825,34212628 -k1,12399:32583029,34212628:6126966 -g1,12399:32583029,34212628 -) -] -g1,12399:32583029,34346976 -) -h1,12399:6630773,34346976:0,0,0 -v1,12402:6630773,35212056:0,393216,0 -(1,12424:6630773,44991530:25952256,10172690,0 -g1,12424:6630773,44991530 -g1,12424:6237557,44991530 -r1,12427:6368629,44991530:131072,10172690,0 -g1,12424:6567858,44991530 -g1,12424:6764466,44991530 -[1,12424:6764466,44991530:25818563,10172690,0 -(1,12403:6764466,35626598:25818563,807758,219026 -(1,12402:6764466,35626598:0,807758,219026 -r1,12427:7908217,35626598:1143751,1026784,219026 -k1,12402:6764466,35626598:-1143751 -) -(1,12402:6764466,35626598:1143751,807758,219026 -) -g1,12402:8107446,35626598 -g1,12402:8435126,35626598 -g1,12402:10143649,35626598 -g1,12402:11007413,35626598 -g1,12402:13242190,35626598 -g1,12402:14153795,35626598 -g1,12402:16629090,35626598 -g1,12402:17197942,35626598 -g1,12402:20102497,35626598 -g1,12402:21920465,35626598 -k1,12402:32583029,35626598:8356352 -g1,12403:32583029,35626598 -) -(1,12403:6764466,36491678:25818563,513147,134348 -k1,12402:8787874,36491678:218546 -k1,12402:9537936,36491678:218565 -k1,12402:10775586,36491678:218565 -k1,12402:13259732,36491678:218566 -k1,12402:16761651,36491678:218565 -k1,12402:17927867,36491678:218565 -k1,12402:18561256,36491678:218546 -k1,12402:21863945,36491678:218565 -k1,12402:22560268,36491678:218566 -k1,12402:23949306,36491678:218565 -k1,12402:25260356,36491678:218565 -k1,12402:27903098,36491678:218565 -k1,12402:28804549,36491678:218566 -k1,12402:31495787,36491678:218565 -k1,12402:32583029,36491678:0 -) -(1,12403:6764466,37356758:25818563,513147,134348 -k1,12402:7685523,37356758:234895 -k1,12402:8276278,37356758:234895 -k1,12402:10130568,37356758:234895 -k1,12402:11548388,37356758:234895 -k1,12402:12592653,37356758:234895 -k1,12402:13959354,37356758:234894 -k1,12402:17248227,37356758:234895 -k1,12402:19729041,37356758:234895 -k1,12402:20646821,37356758:234895 -k1,12402:22520735,37356758:234859 -k1,12402:24641756,37356758:234895 -k1,12402:28990345,37356758:234895 -k1,12402:32583029,37356758:0 -) -(1,12403:6764466,38221838:25818563,505283,134348 -k1,12402:8163707,38221838:207796 -k1,12402:10918233,38221838:207797 -k1,12402:12230311,38221838:207796 -k1,12402:13185874,38221838:207797 -k1,12402:14971122,38221838:207796 -k1,12402:17737444,38221838:207796 -k1,12402:18301101,38221838:207797 -k1,12402:20305894,38221838:207796 -k1,12402:21196576,38221838:207797 -k1,12402:22568282,38221838:207787 -k1,12402:25435530,38221838:207797 -k1,12402:27517656,38221838:207796 -k1,12402:29852752,38221838:207797 -k1,12402:31153033,38221838:207796 -k1,12402:32583029,38221838:0 -) -(1,12403:6764466,39086918:25818563,505283,122846 -g1,12402:7615123,39086918 -(1,12402:7615123,39086918:0,452978,122846 -r1,12427:13952490,39086918:6337367,575824,122846 -k1,12402:7615123,39086918:-6337367 -) -(1,12402:7615123,39086918:6337367,452978,122846 -k1,12402:7615123,39086918:3277 -h1,12402:13949213,39086918:0,411205,112570 -) -g1,12402:14151719,39086918 -g1,12402:15542393,39086918 -(1,12402:15542393,39086918:0,452978,122846 -r1,12427:21528048,39086918:5985655,575824,122846 -k1,12402:15542393,39086918:-5985655 -) -(1,12402:15542393,39086918:5985655,452978,122846 -k1,12402:15542393,39086918:3277 -h1,12402:21524771,39086918:0,411205,112570 -) -g1,12402:21727277,39086918 -g1,12402:24125894,39086918 -g1,12402:25344208,39086918 -k1,12403:32583029,39086918:5082687 -g1,12403:32583029,39086918 -) -(1,12405:6764466,39951998:25818563,505283,126483 -h1,12404:6764466,39951998:983040,0,0 -k1,12404:12272175,39951998:266139 -k1,12404:13151075,39951998:266138 -k1,12404:14436299,39951998:266139 -k1,12404:15117213,39951998:266071 -k1,12404:18542843,39951998:266139 -k1,12404:20151158,39951998:266138 -k1,12404:21100182,39951998:266139 -k1,12404:21982358,39951998:266138 -k1,12404:22604357,39951998:266139 -k1,12404:24875241,39951998:266138 -(1,12404:24875241,39951998:0,452978,122846 -r1,12427:31212608,39951998:6337367,575824,122846 -k1,12404:24875241,39951998:-6337367 -) -(1,12404:24875241,39951998:6337367,452978,122846 -k1,12404:24875241,39951998:3277 -h1,12404:31209331,39951998:0,411205,112570 -) -k1,12404:31478747,39951998:266139 -k1,12404:32583029,39951998:0 -) -(1,12405:6764466,40817078:25818563,513147,134348 -k1,12404:7768852,40817078:256620 -k1,12404:9893249,40817078:256621 -k1,12404:11543820,40817078:256620 -k1,12404:12819525,40817078:256620 -k1,12404:14814160,40817078:256620 -k1,12404:15730073,40817078:256621 -k1,12404:17005778,40817078:256620 -k1,12404:19842550,40817078:256620 -k1,12404:20785333,40817078:256621 -k1,12404:21812656,40817078:256620 -k1,12404:25315274,40817078:256620 -k1,12404:26613916,40817078:256620 -k1,12404:29705624,40817078:256621 -k1,12404:30613672,40817078:256620 -k1,12404:32583029,40817078:0 -) -(1,12405:6764466,41682158:25818563,505283,134348 -g1,12404:9543847,41682158 -g1,12404:13549406,41682158 -g1,12404:14905345,41682158 -g1,12404:16208856,41682158 -k1,12405:32583029,41682158:15281688 -g1,12405:32583029,41682158 -) -v1,12407:6764466,42367013:0,393216,0 -(1,12411:6764466,42707696:25818563,733899,196608 -g1,12411:6764466,42707696 -g1,12411:6764466,42707696 -g1,12411:6567858,42707696 -(1,12411:6567858,42707696:0,733899,196608 -r1,12427:32779637,42707696:26211779,930507,196608 -k1,12411:6567857,42707696:-26211780 -) -(1,12411:6567858,42707696:26211779,733899,196608 -[1,12411:6764466,42707696:25818563,537291,0 -(1,12409:6764466,42594844:25818563,424439,112852 -(1,12408:6764466,42594844:0,0,0 -g1,12408:6764466,42594844 -g1,12408:6764466,42594844 -g1,12408:6436786,42594844 -(1,12408:6436786,42594844:0,0,0 -) -g1,12408:6764466,42594844 -) -k1,12409:6764466,42594844:0 -h1,12409:16723084,42594844:0,0,0 -k1,12409:32583029,42594844:15859945 -g1,12409:32583029,42594844 -) -] -) -g1,12411:32583029,42707696 -g1,12411:6764466,42707696 -g1,12411:6764466,42707696 -g1,12411:32583029,42707696 -g1,12411:32583029,42707696 -) -h1,12411:6764466,42904304:0,0,0 -(1,12416:6764466,43769384:25818563,505283,134348 -g1,12415:8155140,43769384 -g1,12415:9005797,43769384 -g1,12415:11421454,43769384 -g1,12415:13955075,43769384 -g1,12415:16891743,43769384 -k1,12416:32583029,43769384:12780832 -g1,12416:32583029,43769384 -) -v1,12418:6764466,44454239:0,393216,0 -(1,12422:6764466,44794922:25818563,733899,196608 -g1,12422:6764466,44794922 -g1,12422:6764466,44794922 -g1,12422:6567858,44794922 -(1,12422:6567858,44794922:0,733899,196608 -r1,12427:32779637,44794922:26211779,930507,196608 -k1,12422:6567857,44794922:-26211780 -) -(1,12422:6567858,44794922:26211779,733899,196608 -[1,12422:6764466,44794922:25818563,537291,0 -(1,12420:6764466,44682070:25818563,424439,112852 -(1,12419:6764466,44682070:0,0,0 -g1,12419:6764466,44682070 -g1,12419:6764466,44682070 -g1,12419:6436786,44682070 -(1,12419:6436786,44682070:0,0,0 -) -g1,12419:6764466,44682070 -) -k1,12420:6764466,44682070:0 -h1,12420:12407683,44682070:0,0,0 -k1,12420:32583029,44682070:20175346 -g1,12420:32583029,44682070 +[1,12425:3078558,4812305:0,0,0 +(1,12425:3078558,49800853:0,16384,2228224 +g1,12425:29030814,49800853 +g1,12425:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12425:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12425:37855564,49800853:1179648,16384,0 +) +) +k1,12425:3078556,49800853:-34777008 +) +] +g1,12425:6630773,4812305 +k1,12425:23588214,4812305:15762064 +g1,12425:25210885,4812305 +g1,12425:25997972,4812305 +g1,12425:28481131,4812305 +g1,12425:30046786,4812305 +) +) +] +[1,12425:6630773,45706769:25952256,40108032,0 +(1,12425:6630773,45706769:25952256,40108032,0 +(1,12425:6630773,45706769:0,0,0 +g1,12425:6630773,45706769 +) +[1,12425:6630773,45706769:25952256,40108032,0 +(1,12385:6630773,6254097:25952256,513147,134348 +k1,12384:9646030,6254097:204418 +k1,12384:11047135,6254097:204418 +k1,12384:13737334,6254097:204418 +k1,12384:14601044,6254097:204418 +k1,12384:17715916,6254097:204418 +k1,12384:20704303,6254097:204418 +k1,12384:23467247,6254097:204418 +k1,12384:25476522,6254097:204413 +k1,12384:26293702,6254097:204418 +k1,12384:27517205,6254097:204418 +k1,12384:29147031,6254097:204418 +k1,12384:30010741,6254097:204418 +k1,12384:32583029,6254097:0 +) +(1,12385:6630773,7119177:25952256,612464,95026 +g1,12384:10836873,7119177 +g1,12384:12243275,7119177 +$1,12384:12243275,7119177 +g1,12384:13773699,7119177 +g1,12384:14487544,7119177 +(1,12384:15284462,6843896:311689,337183,0 +) +$1,12384:15596151,7119177 +k1,12385:32583029,7119177:16934450 +g1,12385:32583029,7119177 +) +(1,12387:6630773,7984257:25952256,513147,126483 +h1,12386:6630773,7984257:983040,0,0 +k1,12386:8487681,7984257:386280 +k1,12386:9975153,7984257:386467 +k1,12386:13644975,7984257:386468 +k1,12386:14979093,7984257:386467 +k1,12386:20023205,7984257:386468 +k1,12386:21803623,7984257:386467 +k1,12386:22604746,7984257:386280 +k1,12386:23522711,7984257:386468 +k1,12386:28155911,7984257:386467 +$1,12386:28363005,7984257 +k1,12386:30230245,7984257:0 +k1,12386:30603693,7984257:0 +k1,12386:30977141,7984257:0 +k1,12386:31350589,7984257:0 +k1,12386:32470933,7984257:0 +k1,12387:32583029,7984257:0 +) +(1,12387:6630773,8849337:25952256,505283,134348 +k1,12386:11112149,8849337:0 +k1,12386:11485597,8849337:0 +$1,12386:12979389,8849337 +k1,12386:13670038,8849337:309885 +k1,12386:17341920,8849337:309885 +k1,12386:20562260,8849337:309886 +k1,12386:22156651,8849337:309885 +k1,12386:23903741,8849337:309885 +k1,12386:25880863,8849337:309886 +k1,12386:28390136,8849337:309885 +k1,12386:30395437,8849337:309885 +k1,12386:32583029,8849337:0 +) +(1,12387:6630773,9714417:25952256,505283,134348 +k1,12386:7622483,9714417:221007 +k1,12386:11070483,9714417:221007 +k1,12386:12994576,9714417:221007 +k1,12386:16299707,9714417:221007 +k1,12386:20834294,9714417:221007 +k1,12386:22156305,9714417:221006 +k1,12386:25987690,9714417:221007 +k1,12386:29465836,9714417:221007 +k1,12386:30878288,9714417:221007 +k1,12386:31455155,9714417:221007 +k1,12387:32583029,9714417:0 +) +(1,12387:6630773,10579497:25952256,513147,134348 +k1,12386:8068853,10579497:213867 +k1,12386:9230371,10579497:213867 +k1,12386:10940425,10579497:213867 +k1,12386:12558073,10579497:213867 +k1,12386:14834357,10579497:213866 +k1,12386:15995875,10579497:213867 +k1,12386:16624571,10579497:213853 +k1,12386:19922561,10579497:213866 +k1,12386:22010758,10579497:213867 +k1,12386:26671898,10579497:213867 +k1,12386:29796219,10579497:213867 +k1,12386:31001646,10579497:213867 +k1,12387:32583029,10579497:0 +) +(1,12387:6630773,11444577:25952256,505283,134348 +k1,12386:8193275,11444577:253748 +k1,12386:11005549,11444577:253748 +k1,12386:13064105,11444577:253694 +k1,12386:14000738,11444577:253748 +k1,12386:15956456,11444577:253748 +k1,12386:20011292,11444577:253748 +k1,12386:21456485,11444577:253748 +k1,12386:23471842,11444577:253749 +k1,12386:24338352,11444577:253748 +k1,12386:25611185,11444577:253748 +k1,12386:30178513,11444577:253748 +k1,12386:32583029,11444577:0 +) +(1,12387:6630773,12309657:25952256,505283,126960 +$1,12386:6816895,12309657 +k1,12386:8684135,12309657:0 +k1,12386:9057583,12309657:0 +k1,12386:9431031,12309657:0 +k1,12386:9804479,12309657:0 +k1,12386:12792063,12309657:0 +k1,12386:13165511,12309657:0 +$1,12386:14659303,12309657 +k1,12386:15328020,12309657:287953 +k1,12386:19789961,12309657:287953 +k1,12386:21234625,12309657:287954 +k1,12386:22859512,12309657:287953 +k1,12386:24796351,12309657:287953 +k1,12386:25767189,12309657:287953 +k1,12386:27777429,12309657:287954 +k1,12386:28716810,12309657:287953 +k1,12386:30974120,12309657:287953 +k1,12387:32583029,12309657:0 +) +(1,12387:6630773,13174737:25952256,513147,134348 +k1,12386:8360343,13174737:321857 +k1,12386:9365086,13174737:321858 +k1,12386:12233672,13174737:321857 +k1,12386:13840035,13174737:321857 +k1,12386:15153453,13174737:321858 +k1,12386:16541581,13174737:321857 +k1,12386:17828783,13174737:321857 +k1,12386:18766678,13174737:321857 +k1,12386:21067068,13174737:321858 +k1,12386:23244905,13174737:321857 +k1,12386:25134383,13174737:321857 +k1,12386:26475326,13174737:321858 +k1,12386:27242049,13174737:321734 +k1,12386:30321661,13174737:321857 +$1,12386:30528755,13174737 +k1,12386:32395995,13174737:0 +k1,12387:32583029,13174737:0 +) +(1,12387:6630773,14039817:25952256,513147,134348 +g1,12386:6967062,14039817 +g1,12386:7340510,14039817 +(1,12386:8087406,14128300:32768,0,0 +) +g1,12386:11107758,14039817 +g1,12386:11481206,14039817 +$1,12386:12974998,14039817 +g1,12386:13381321,14039817 +g1,12386:17555309,14039817 +g1,12386:18437423,14039817 +g1,12386:20204273,14039817 +g1,12386:21341322,14039817 +g1,12386:25341639,14039817 +g1,12386:26990524,14039817 +g1,12386:28757374,14039817 +k1,12387:32583029,14039817:1307762 +g1,12387:32583029,14039817 +) +(1,12389:6630773,14904897:25952256,513147,134348 +h1,12388:6630773,14904897:983040,0,0 +k1,12388:8326025,14904897:224624 +k1,12388:10134680,14904897:224650 +k1,12388:11597305,14904897:224650 +k1,12388:12481247,14904897:224650 +k1,12388:15307676,14904897:224650 +k1,12388:16862707,14904897:224650 +k1,12388:18106442,14904897:224650 +k1,12388:21733721,14904897:224650 +k1,12388:24809187,14904897:224650 +k1,12388:25795365,14904897:224650 +k1,12388:26375875,14904897:224650 +k1,12388:29180677,14904897:224650 +k1,12388:31175454,14904897:224650 +k1,12388:31931601,14904897:224650 +k1,12388:32583029,14904897:0 +) +(1,12389:6630773,15769977:25952256,513147,134348 +k1,12388:10411999,15769977:172158 +k1,12388:11978108,15769977:172158 +k1,12388:13962992,15769977:172158 +k1,12388:15918385,15769977:172158 +k1,12388:17825936,15769977:172158 +k1,12388:18353954,15769977:172158 +k1,12388:21221607,15769977:172157 +k1,12388:22262117,15769977:172158 +k1,12388:23425835,15769977:172158 +k1,12388:24664264,15769977:172158 +k1,12388:25801767,15769977:172158 +k1,12388:28466259,15769977:172158 +k1,12388:30206038,15769977:172158 +k1,12388:32583029,15769977:0 +) +(1,12389:6630773,16635057:25952256,513147,126483 +k1,12388:7422902,16635057:179367 +k1,12388:8390667,16635057:179367 +k1,12388:9958087,16635057:179367 +k1,12388:10788882,16635057:179367 +k1,12388:12790150,16635057:179367 +k1,12388:13735633,16635057:179367 +k1,12388:14703397,16635057:179366 +k1,12388:17488475,16635057:179367 +k1,12388:20322705,16635057:179367 +k1,12388:21599800,16635057:179367 +k1,12388:24964217,16635057:179367 +k1,12388:26918299,16635057:179367 +k1,12388:31923737,16635057:179367 +k1,12388:32583029,16635057:0 +) +(1,12389:6630773,17500137:25952256,513147,134348 +k1,12388:9678197,17500137:206438 +k1,12388:12174463,17500137:206438 +k1,12388:12912399,17500137:206439 +k1,12388:16104002,17500137:206438 +k1,12388:18062217,17500137:206438 +k1,12388:21179109,17500137:206438 +k1,12388:23896888,17500137:206439 +k1,12388:24719364,17500137:206438 +k1,12388:27765477,17500137:206438 +k1,12388:32583029,17500137:0 +) +(1,12389:6630773,18365217:25952256,505283,134348 +k1,12388:8252181,18365217:240564 +k1,12388:10581377,18365217:240564 +k1,12388:11504826,18365217:240564 +k1,12388:14064053,18365217:240563 +k1,12388:14990779,18365217:240564 +k1,12388:18200779,18365217:240564 +k1,12388:18911236,18365217:240564 +k1,12388:19683297,18365217:240564 +k1,12388:20990132,18365217:240564 +k1,12388:23781357,18365217:240564 +k1,12388:24673348,18365217:240563 +k1,12388:26984850,18365217:240564 +k1,12388:29110885,18365217:240564 +k1,12388:31931601,18365217:240564 +k1,12388:32583029,18365217:0 +) +(1,12389:6630773,19230297:25952256,513147,134348 +k1,12388:7984696,19230297:261438 +k1,12388:9813755,19230297:261438 +k1,12388:10431054,19230297:261439 +k1,12388:11627035,19230297:261438 +k1,12388:12547765,19230297:261438 +k1,12388:16526405,19230297:261438 +k1,12388:18642513,19230297:261439 +k1,12388:19692349,19230297:261438 +k1,12388:24953529,19230297:261438 +k1,12388:25842802,19230297:261438 +k1,12388:27123326,19230297:261439 +k1,12388:28751845,19230297:261438 +k1,12388:29672575,19230297:261438 +k1,12388:32583029,19230297:0 +) +(1,12389:6630773,20095377:25952256,513147,134348 +k1,12388:9047195,20095377:228830 +k1,12388:12243495,20095377:228830 +k1,12388:13755520,20095377:228830 +k1,12388:18233704,20095377:228830 +k1,12388:19842722,20095377:228830 +k1,12388:21408486,20095377:228830 +k1,12388:22385082,20095377:228830 +k1,12388:26584738,20095377:228830 +k1,12388:27429606,20095377:228830 +k1,12388:29519003,20095377:228830 +k1,12388:30363871,20095377:228830 +k1,12388:30948561,20095377:228830 +k1,12388:32583029,20095377:0 +) +(1,12389:6630773,20960457:25952256,513147,126483 +k1,12388:10526292,20960457:211085 +k1,12388:13729097,20960457:211086 +k1,12388:14931742,20960457:211085 +k1,12388:19198850,20960457:211085 +k1,12388:21559516,20960457:211085 +k1,12388:22373533,20960457:211086 +k1,12388:22944411,20960457:211085 +k1,12388:24365946,20960457:211085 +k1,12388:26434977,20960457:211085 +k1,12388:29490981,20960457:211086 +k1,12388:30893511,20960457:211085 +k1,12388:32583029,20960457:0 +) +(1,12389:6630773,21825537:25952256,513147,134348 +k1,12388:8597672,21825537:165970 +k1,12388:9955086,21825537:165969 +k1,12388:12669916,21825537:166135 +k1,12388:15176832,21825537:165970 +k1,12388:18153641,21825537:165970 +k1,12388:19243668,21825537:165969 +k1,12388:20943836,21825537:165970 +k1,12388:23755494,21825537:165969 +k1,12388:27052774,21825537:165970 +k1,12388:28410188,21825537:165969 +k1,12388:30729671,21825537:165970 +k1,12389:32583029,21825537:0 +k1,12389:32583029,21825537:0 +) +(1,12390:6630773,23942355:25952256,555811,104529 +(1,12390:6630773,23942355:2450326,534184,12975 +g1,12390:6630773,23942355 +g1,12390:9081099,23942355 +) +g1,12390:13170022,23942355 +g1,12390:17460075,23942355 +g1,12390:19027303,23942355 +k1,12390:32583029,23942355:12301367 +g1,12390:32583029,23942355 +) +(1,12394:6630773,25200651:25952256,505283,134348 +k1,12393:7429961,25200651:171353 +k1,12393:8016130,25200651:171326 +k1,12393:10207959,25200651:171354 +k1,12393:13080051,25200651:171353 +k1,12393:13782901,25200651:171353 +k1,12393:14973340,25200651:171354 +k1,12393:17701252,25200651:171353 +k1,12393:19791500,25200651:171354 +k1,12393:22873307,25200651:171353 +k1,12393:24036221,25200651:171354 +k1,12393:27118683,25200651:171353 +k1,12393:30155271,25200651:171354 +k1,12393:31318184,25200651:171353 +k1,12393:32583029,25200651:0 +) +(1,12394:6630773,26065731:25952256,513147,126483 +k1,12393:7549205,26065731:259140 +k1,12393:11007813,26065731:259140 +k1,12393:12458398,26065731:259140 +k1,12393:14280572,26065731:259140 +k1,12393:16937019,26065731:259140 +k1,12393:18143810,26065731:259140 +k1,12393:20095090,26065731:259140 +k1,12393:23475054,26065731:259140 +k1,12393:26524717,26065731:259140 +k1,12393:28068363,26065731:259140 +k1,12393:29431785,26065731:259140 +k1,12393:30438691,26065731:259140 +k1,12393:32583029,26065731:0 +) +(1,12394:6630773,26930811:25952256,505283,126483 +k1,12393:8168047,26930811:269808 +k1,12393:9208558,26930811:269808 +k1,12393:9893138,26930811:269737 +k1,12393:12511756,26930811:269808 +k1,12393:13432992,26930811:269808 +k1,12393:15418533,26930811:269808 +k1,12393:17327396,26930811:269808 +k1,12393:20381173,26930811:269808 +k1,12393:21375809,26930811:269808 +k1,12393:22930123,26930811:269808 +k1,12393:24580119,26930811:269808 +k1,12393:25954209,26930811:269808 +k1,12393:26971783,26930811:269808 +k1,12393:28754817,26930811:269808 +k1,12393:29640663,26930811:269808 +k1,12393:30929556,26930811:269808 +k1,12393:32583029,26930811:0 +) +(1,12394:6630773,27795891:25952256,513147,126483 +k1,12393:8100187,27795891:257653 +k1,12393:9044002,27795891:257653 +k1,12393:11609177,27795891:257652 +k1,12393:12281615,27795891:257595 +k1,12393:15565065,27795891:257653 +k1,12393:17014162,27795891:257652 +k1,12393:18834849,27795891:257653 +k1,12393:21882370,27795891:257653 +(1,12393:21882370,27795891:0,452978,115847 +r1,12425:25054330,27795891:3171960,568825,115847 +k1,12393:21882370,27795891:-3171960 +) +(1,12393:21882370,27795891:3171960,452978,115847 +k1,12393:21882370,27795891:3277 +h1,12393:25051053,27795891:0,411205,112570 +) +k1,12393:25311983,27795891:257653 +k1,12393:26101133,27795891:257653 +k1,12393:27872012,27795891:257653 +k1,12393:28781092,27795891:257652 +k1,12393:30415001,27795891:257653 +k1,12393:31864099,27795891:257653 +k1,12394:32583029,27795891:0 +) +(1,12394:6630773,28660971:25952256,513147,134348 +k1,12393:8175508,28660971:183552 +k1,12393:11269515,28660971:183553 +k1,12393:12737573,28660971:183552 +k1,12393:13912685,28660971:183552 +k1,12393:16430629,28660971:183552 +k1,12393:19351621,28660971:183553 +k1,12393:20151211,28660971:183552 +k1,12393:21353848,28660971:183552 +k1,12393:23031621,28660971:183552 +k1,12393:23630001,28660971:183537 +k1,12393:26087652,28660971:183552 +k1,12393:26899040,28660971:183553 +k1,12393:29887533,28660971:183552 +k1,12394:32583029,28660971:0 +) +(1,12394:6630773,29526051:25952256,505283,134348 +(1,12393:6630773,29526051:0,452978,122846 +r1,12425:12968140,29526051:6337367,575824,122846 +k1,12393:6630773,29526051:-6337367 +) +(1,12393:6630773,29526051:6337367,452978,122846 +k1,12393:6630773,29526051:3277 +h1,12393:12964863,29526051:0,411205,112570 +) +g1,12393:13167369,29526051 +g1,12393:13898095,29526051 +g1,12393:15610550,29526051 +g1,12393:16461207,29526051 +g1,12393:18629793,29526051 +k1,12394:32583029,29526051:10990354 +g1,12394:32583029,29526051 +) +v1,12396:6630773,30391131:0,393216,0 +(1,12397:6630773,34346976:25952256,4349061,0 +g1,12397:6630773,34346976 +g1,12397:6237557,34346976 +r1,12425:6368629,34346976:131072,4349061,0 +g1,12397:6567858,34346976 +g1,12397:6764466,34346976 +[1,12397:6764466,34346976:25818563,4349061,0 +(1,12397:6764466,30752308:25818563,754393,260573 +(1,12396:6764466,30752308:0,754393,260573 +r1,12425:7856192,30752308:1091726,1014966,260573 +k1,12396:6764466,30752308:-1091726 +) +(1,12396:6764466,30752308:1091726,754393,260573 +) +k1,12396:8107804,30752308:251612 +k1,12396:8435484,30752308:327680 +k1,12396:9883783,30752308:251612 +k1,12396:13973184,30752308:251613 +k1,12396:16093227,30752308:251612 +k1,12396:18743457,30752308:251612 +k1,12396:20279575,30752308:251612 +k1,12396:21550272,30752308:251612 +k1,12396:23182728,30752308:251612 +k1,12396:24535346,30752308:251613 +k1,12396:26817919,30752308:251612 +k1,12396:27720959,30752308:251612 +k1,12396:31773659,30752308:251612 +k1,12396:32583029,30752308:0 +) +(1,12397:6764466,31617388:25818563,505283,134348 +k1,12396:7998369,31617388:214818 +k1,12396:10740910,31617388:214817 +k1,12396:12147173,31617388:214818 +k1,12396:14722597,31617388:214817 +k1,12396:16318259,31617388:214818 +k1,12396:18398886,31617388:214817 +k1,12396:19265132,31617388:214818 +k1,12396:21449306,31617388:214817 +k1,12396:24748248,31617388:214818 +k1,12396:26343909,31617388:214817 +k1,12396:27090224,31617388:214818 +k1,12396:29151190,31617388:214817 +k1,12396:30385093,31617388:214818 +k1,12396:31966991,31617388:214817 +k1,12396:32583029,31617388:0 +) +(1,12397:6764466,32482468:25818563,505283,134348 +k1,12396:11283828,32482468:206438 +k1,12396:13225660,32482468:206439 +k1,12396:15099334,32482468:206438 +k1,12396:17839394,32482468:206438 +k1,12396:21238092,32482468:206439 +k1,12396:22072365,32482468:206438 +k1,12396:23772369,32482468:206438 +k1,12396:25849860,32482468:206438 +k1,12396:27075384,32482468:206439 +k1,12396:31264445,32482468:206438 +k1,12396:32583029,32482468:0 +) +(1,12397:6764466,33347548:25818563,513147,126483 +k1,12396:8526081,33347548:253632 +k1,12396:9135573,33347548:253632 +k1,12396:11469973,33347548:253632 +k1,12396:12390761,33347548:253632 +k1,12396:14449201,33347548:253578 +k1,12396:15318871,33347548:253632 +k1,12396:16591588,33347548:253632 +k1,12396:19555134,33347548:253632 +k1,12396:21005453,33347548:253632 +k1,12396:24973666,33347548:253632 +k1,12396:27454867,33347548:253632 +k1,12396:28123288,33347548:253578 +k1,12396:30477349,33347548:253632 +k1,12396:31835263,33347548:253632 +k1,12396:32583029,33347548:0 +) +(1,12397:6764466,34212628:25818563,513147,134348 +g1,12396:8381239,34212628 +g1,12396:9196506,34212628 +g1,12396:9751595,34212628 +g1,12396:11871684,34212628 +g1,12396:13989807,34212628 +g1,12396:15208121,34212628 +g1,12396:16788194,34212628 +g1,12396:18088428,34212628 +g1,12396:20545372,34212628 +g1,12396:21936046,34212628 +g1,12396:24537825,34212628 +k1,12397:32583029,34212628:6126966 +g1,12397:32583029,34212628 +) +] +g1,12397:32583029,34346976 +) +h1,12397:6630773,34346976:0,0,0 +v1,12400:6630773,35212056:0,393216,0 +(1,12422:6630773,44991530:25952256,10172690,0 +g1,12422:6630773,44991530 +g1,12422:6237557,44991530 +r1,12425:6368629,44991530:131072,10172690,0 +g1,12422:6567858,44991530 +g1,12422:6764466,44991530 +[1,12422:6764466,44991530:25818563,10172690,0 +(1,12401:6764466,35626598:25818563,807758,219026 +(1,12400:6764466,35626598:0,807758,219026 +r1,12425:7908217,35626598:1143751,1026784,219026 +k1,12400:6764466,35626598:-1143751 +) +(1,12400:6764466,35626598:1143751,807758,219026 +) +g1,12400:8107446,35626598 +g1,12400:8435126,35626598 +g1,12400:10143649,35626598 +g1,12400:11007413,35626598 +g1,12400:13242190,35626598 +g1,12400:14153795,35626598 +g1,12400:16629090,35626598 +g1,12400:17197942,35626598 +g1,12400:20102497,35626598 +g1,12400:21920465,35626598 +k1,12400:32583029,35626598:8356352 +g1,12401:32583029,35626598 +) +(1,12401:6764466,36491678:25818563,513147,134348 +k1,12400:8787874,36491678:218546 +k1,12400:9537936,36491678:218565 +k1,12400:10775586,36491678:218565 +k1,12400:13259732,36491678:218566 +k1,12400:16761651,36491678:218565 +k1,12400:17927867,36491678:218565 +k1,12400:18561256,36491678:218546 +k1,12400:21863945,36491678:218565 +k1,12400:22560268,36491678:218566 +k1,12400:23949306,36491678:218565 +k1,12400:25260356,36491678:218565 +k1,12400:27903098,36491678:218565 +k1,12400:28804549,36491678:218566 +k1,12400:31495787,36491678:218565 +k1,12400:32583029,36491678:0 +) +(1,12401:6764466,37356758:25818563,513147,134348 +k1,12400:7685523,37356758:234895 +k1,12400:8276278,37356758:234895 +k1,12400:10130568,37356758:234895 +k1,12400:11548388,37356758:234895 +k1,12400:12592653,37356758:234895 +k1,12400:13959354,37356758:234894 +k1,12400:17248227,37356758:234895 +k1,12400:19729041,37356758:234895 +k1,12400:20646821,37356758:234895 +k1,12400:22520735,37356758:234859 +k1,12400:24641756,37356758:234895 +k1,12400:28990345,37356758:234895 +k1,12400:32583029,37356758:0 +) +(1,12401:6764466,38221838:25818563,505283,134348 +k1,12400:8188519,38221838:232608 +k1,12400:10967857,38221838:232609 +k1,12400:12304747,38221838:232608 +k1,12400:13285121,38221838:232608 +k1,12400:15095181,38221838:232608 +k1,12400:17886316,38221838:232609 +k1,12400:18474784,38221838:232608 +k1,12400:20504389,38221838:232608 +k1,12400:21419882,38221838:232608 +k1,12400:22816376,38221838:232575 +k1,12400:25361094,38221838:232608 +k1,12400:27468033,38221838:232609 +k1,12400:29827940,38221838:232608 +k1,12400:31153033,38221838:232608 +k1,12400:32583029,38221838:0 +) +(1,12401:6764466,39086918:25818563,505283,122846 +g1,12400:7615123,39086918 +(1,12400:7615123,39086918:0,452978,122846 +r1,12425:13952490,39086918:6337367,575824,122846 +k1,12400:7615123,39086918:-6337367 +) +(1,12400:7615123,39086918:6337367,452978,122846 +k1,12400:7615123,39086918:3277 +h1,12400:13949213,39086918:0,411205,112570 +) +g1,12400:14151719,39086918 +g1,12400:15542393,39086918 +(1,12400:15542393,39086918:0,452978,122846 +r1,12425:21528048,39086918:5985655,575824,122846 +k1,12400:15542393,39086918:-5985655 +) +(1,12400:15542393,39086918:5985655,452978,122846 +k1,12400:15542393,39086918:3277 +h1,12400:21524771,39086918:0,411205,112570 +) +g1,12400:21727277,39086918 +g1,12400:24125894,39086918 +g1,12400:25344208,39086918 +k1,12401:32583029,39086918:5082687 +g1,12401:32583029,39086918 +) +(1,12403:6764466,39951998:25818563,505283,126483 +h1,12402:6764466,39951998:983040,0,0 +k1,12402:12272175,39951998:266139 +k1,12402:13151075,39951998:266138 +k1,12402:14436299,39951998:266139 +k1,12402:15117213,39951998:266071 +k1,12402:18542843,39951998:266139 +k1,12402:20151158,39951998:266138 +k1,12402:21100182,39951998:266139 +k1,12402:21982358,39951998:266138 +k1,12402:22604357,39951998:266139 +k1,12402:24875241,39951998:266138 +(1,12402:24875241,39951998:0,452978,122846 +r1,12425:31212608,39951998:6337367,575824,122846 +k1,12402:24875241,39951998:-6337367 +) +(1,12402:24875241,39951998:6337367,452978,122846 +k1,12402:24875241,39951998:3277 +h1,12402:31209331,39951998:0,411205,112570 +) +k1,12402:31478747,39951998:266139 +k1,12402:32583029,39951998:0 +) +(1,12403:6764466,40817078:25818563,513147,134348 +k1,12402:7768852,40817078:256620 +k1,12402:9893249,40817078:256621 +k1,12402:11543820,40817078:256620 +k1,12402:12819525,40817078:256620 +k1,12402:14814160,40817078:256620 +k1,12402:15730073,40817078:256621 +k1,12402:17005778,40817078:256620 +k1,12402:19842550,40817078:256620 +k1,12402:20785333,40817078:256621 +k1,12402:21812656,40817078:256620 +k1,12402:25315274,40817078:256620 +k1,12402:26613916,40817078:256620 +k1,12402:29705624,40817078:256621 +k1,12402:30613672,40817078:256620 +k1,12402:32583029,40817078:0 +) +(1,12403:6764466,41682158:25818563,505283,134348 +g1,12402:9543847,41682158 +g1,12402:13549406,41682158 +g1,12402:14905345,41682158 +g1,12402:16208856,41682158 +k1,12403:32583029,41682158:15281688 +g1,12403:32583029,41682158 +) +v1,12405:6764466,42367013:0,393216,0 +(1,12409:6764466,42707696:25818563,733899,196608 +g1,12409:6764466,42707696 +g1,12409:6764466,42707696 +g1,12409:6567858,42707696 +(1,12409:6567858,42707696:0,733899,196608 +r1,12425:32779637,42707696:26211779,930507,196608 +k1,12409:6567857,42707696:-26211780 +) +(1,12409:6567858,42707696:26211779,733899,196608 +[1,12409:6764466,42707696:25818563,537291,0 +(1,12407:6764466,42594844:25818563,424439,112852 +(1,12406:6764466,42594844:0,0,0 +g1,12406:6764466,42594844 +g1,12406:6764466,42594844 +g1,12406:6436786,42594844 +(1,12406:6436786,42594844:0,0,0 +) +g1,12406:6764466,42594844 +) +k1,12407:6764466,42594844:0 +h1,12407:16723084,42594844:0,0,0 +k1,12407:32583029,42594844:15859945 +g1,12407:32583029,42594844 +) +] +) +g1,12409:32583029,42707696 +g1,12409:6764466,42707696 +g1,12409:6764466,42707696 +g1,12409:32583029,42707696 +g1,12409:32583029,42707696 +) +h1,12409:6764466,42904304:0,0,0 +(1,12414:6764466,43769384:25818563,505283,134348 +g1,12413:8155140,43769384 +g1,12413:9005797,43769384 +g1,12413:11421454,43769384 +g1,12413:13955075,43769384 +g1,12413:16891743,43769384 +k1,12414:32583029,43769384:12780832 +g1,12414:32583029,43769384 +) +v1,12416:6764466,44454239:0,393216,0 +(1,12420:6764466,44794922:25818563,733899,196608 +g1,12420:6764466,44794922 +g1,12420:6764466,44794922 +g1,12420:6567858,44794922 +(1,12420:6567858,44794922:0,733899,196608 +r1,12425:32779637,44794922:26211779,930507,196608 +k1,12420:6567857,44794922:-26211780 +) +(1,12420:6567858,44794922:26211779,733899,196608 +[1,12420:6764466,44794922:25818563,537291,0 +(1,12418:6764466,44682070:25818563,424439,112852 +(1,12417:6764466,44682070:0,0,0 +g1,12417:6764466,44682070 +g1,12417:6764466,44682070 +g1,12417:6436786,44682070 +(1,12417:6436786,44682070:0,0,0 +) +g1,12417:6764466,44682070 +) +k1,12418:6764466,44682070:0 +h1,12418:12407683,44682070:0,0,0 +k1,12418:32583029,44682070:20175346 +g1,12418:32583029,44682070 ) -] -) -g1,12422:32583029,44794922 -g1,12422:6764466,44794922 -g1,12422:6764466,44794922 -g1,12422:32583029,44794922 -g1,12422:32583029,44794922 -) -h1,12422:6764466,44991530:0,0,0 -] -g1,12424:32583029,44991530 +] +) +g1,12420:32583029,44794922 +g1,12420:6764466,44794922 +g1,12420:6764466,44794922 +g1,12420:32583029,44794922 +g1,12420:32583029,44794922 +) +h1,12420:6764466,44991530:0,0,0 +] +g1,12422:32583029,44991530 ) -h1,12424:6630773,44991530:0,0,0 +h1,12422:6630773,44991530:0,0,0 ] -(1,12427:32583029,45706769:0,0,0 -g1,12427:32583029,45706769 +(1,12425:32583029,45706769:0,0,0 +g1,12425:32583029,45706769 ) ) ] -(1,12427:6630773,47279633:25952256,0,0 -h1,12427:6630773,47279633:25952256,0,0 +(1,12425:6630773,47279633:25952256,0,0 +h1,12425:6630773,47279633:25952256,0,0 ) ] -(1,12427:4262630,4025873:0,0,0 -[1,12427:-473656,4025873:0,0,0 -(1,12427:-473656,-710413:0,0,0 -(1,12427:-473656,-710413:0,0,0 -g1,12427:-473656,-710413 +(1,12425:4262630,4025873:0,0,0 +[1,12425:-473656,4025873:0,0,0 +(1,12425:-473656,-710413:0,0,0 +(1,12425:-473656,-710413:0,0,0 +g1,12425:-473656,-710413 ) -g1,12427:-473656,-710413 +g1,12425:-473656,-710413 ) ] ) ] -!26038 -}195 -Input:2048:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2049:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2050:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!26494 +}196 Input:2051:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{196 -[1,12464:4262630,47279633:28320399,43253760,0 -(1,12464:4262630,4025873:0,0,0 -[1,12464:-473656,4025873:0,0,0 -(1,12464:-473656,-710413:0,0,0 -(1,12464:-473656,-644877:0,0,0 -k1,12464:-473656,-644877:-65536 +{197 +[1,12462:4262630,47279633:28320399,43253760,0 +(1,12462:4262630,4025873:0,0,0 +[1,12462:-473656,4025873:0,0,0 +(1,12462:-473656,-710413:0,0,0 +(1,12462:-473656,-644877:0,0,0 +k1,12462:-473656,-644877:-65536 ) -(1,12464:-473656,4736287:0,0,0 -k1,12464:-473656,4736287:5209943 +(1,12462:-473656,4736287:0,0,0 +k1,12462:-473656,4736287:5209943 ) -g1,12464:-473656,-710413 +g1,12462:-473656,-710413 ) ] ) -[1,12464:6630773,47279633:25952256,43253760,0 -[1,12464:6630773,4812305:25952256,786432,0 -(1,12464:6630773,4812305:25952256,505283,134348 -(1,12464:6630773,4812305:25952256,505283,134348 -g1,12464:3078558,4812305 -[1,12464:3078558,4812305:0,0,0 -(1,12464:3078558,2439708:0,1703936,0 -k1,12464:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12464:2537886,2439708:1179648,16384,0 +[1,12462:6630773,47279633:25952256,43253760,0 +[1,12462:6630773,4812305:25952256,786432,0 +(1,12462:6630773,4812305:25952256,505283,134348 +(1,12462:6630773,4812305:25952256,505283,134348 +g1,12462:3078558,4812305 +[1,12462:3078558,4812305:0,0,0 +(1,12462:3078558,2439708:0,1703936,0 +k1,12462:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12462:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12464:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12462:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12464:3078558,4812305:0,0,0 -(1,12464:3078558,2439708:0,1703936,0 -g1,12464:29030814,2439708 -g1,12464:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12464:36151628,1915420:16384,1179648,0 +[1,12462:3078558,4812305:0,0,0 +(1,12462:3078558,2439708:0,1703936,0 +g1,12462:29030814,2439708 +g1,12462:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12462:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12464:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12462:37855564,2439708:1179648,16384,0 ) ) -k1,12464:3078556,2439708:-34777008 +k1,12462:3078556,2439708:-34777008 ) ] -[1,12464:3078558,4812305:0,0,0 -(1,12464:3078558,49800853:0,16384,2228224 -k1,12464:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12464:2537886,49800853:1179648,16384,0 +[1,12462:3078558,4812305:0,0,0 +(1,12462:3078558,49800853:0,16384,2228224 +k1,12462:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12462:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12464:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12462:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12464:3078558,4812305:0,0,0 -(1,12464:3078558,49800853:0,16384,2228224 -g1,12464:29030814,49800853 -g1,12464:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12464:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12464:37855564,49800853:1179648,16384,0 -) -) -k1,12464:3078556,49800853:-34777008 -) -] -g1,12464:6630773,4812305 -g1,12464:6630773,4812305 -g1,12464:9714897,4812305 -k1,12464:31387653,4812305:21672756 -) -) -] -[1,12464:6630773,45706769:25952256,40108032,0 -(1,12464:6630773,45706769:25952256,40108032,0 -(1,12464:6630773,45706769:0,0,0 -g1,12464:6630773,45706769 -) -[1,12464:6630773,45706769:25952256,40108032,0 -v1,12427:6630773,6254097:0,393216,0 -(1,12436:6630773,11351105:25952256,5490224,0 -g1,12436:6630773,11351105 -g1,12436:6237557,11351105 -r1,12464:6368629,11351105:131072,5490224,0 -g1,12436:6567858,11351105 -g1,12436:6764466,11351105 -[1,12436:6764466,11351105:25818563,5490224,0 -(1,12428:6764466,6668639:25818563,807758,219026 -(1,12427:6764466,6668639:0,807758,219026 -r1,12464:7908217,6668639:1143751,1026784,219026 -k1,12427:6764466,6668639:-1143751 -) -(1,12427:6764466,6668639:1143751,807758,219026 -) -g1,12427:8107446,6668639 -g1,12427:8435126,6668639 -g1,12427:10143649,6668639 -g1,12427:11007413,6668639 -g1,12427:13242190,6668639 -g1,12427:14153795,6668639 -g1,12427:16629090,6668639 -g1,12427:17197942,6668639 -g1,12427:20102497,6668639 -g1,12427:21920465,6668639 -k1,12427:32583029,6668639:7999181 -g1,12428:32583029,6668639 -) -(1,12428:6764466,7533719:25818563,513147,134348 -k1,12427:9517336,7533719:217937 -k1,12427:12673907,7533719:217937 -k1,12427:14937878,7533719:217937 -k1,12427:15613912,7533719:217937 -k1,12427:18461809,7533719:217937 -k1,12427:19331173,7533719:217936 -k1,12427:21518467,7533719:217937 -k1,12427:24646858,7533719:217937 -k1,12427:27279141,7533719:217937 -k1,12427:29064699,7533719:217937 -k1,12427:31665525,7533719:217937 -k1,12428:32583029,7533719:0 -) -(1,12428:6764466,8398799:25818563,505283,126483 -k1,12427:9137525,8398799:225444 -k1,12427:10554414,8398799:225444 -k1,12427:12481827,8398799:225443 -k1,12427:16508359,8398799:225444 -k1,12427:18588472,8398799:225444 -k1,12427:19623286,8398799:225444 -k1,12427:20930728,8398799:225443 -k1,12427:22352859,8398799:225444 -k1,12427:24074490,8398799:225444 -k1,12427:24915972,8398799:225444 -k1,12427:26160501,8398799:225444 -k1,12427:27770064,8398799:225443 -k1,12427:29966176,8398799:225444 -k1,12427:31464985,8398799:225444 -k1,12427:32583029,8398799:0 -) -(1,12428:6764466,9263879:25818563,505283,126483 -k1,12427:8597836,9263879:228393 -k1,12427:9930511,9263879:228393 -k1,12427:10906670,9263879:228393 -k1,12427:12648288,9263879:228392 -k1,12427:13528109,9263879:228393 -k1,12427:15725859,9263879:228393 -k1,12427:16973337,9263879:228393 -k1,12427:19127833,9263879:228393 -k1,12427:22173619,9263879:228393 -k1,12427:23600665,9263879:228392 -k1,12427:25715184,9263879:228393 -k1,12427:30249292,9263879:228393 -k1,12427:32583029,9263879:0 -) -(1,12428:6764466,10128959:25818563,513147,134348 -g1,12427:7622987,10128959 -g1,12427:10402368,10128959 -k1,12428:32583030,10128959:18321904 -g1,12428:32583030,10128959 -) -v1,12430:6764466,10813814:0,393216,0 -(1,12434:6764466,11154497:25818563,733899,196608 -g1,12434:6764466,11154497 -g1,12434:6764466,11154497 -g1,12434:6567858,11154497 -(1,12434:6567858,11154497:0,733899,196608 -r1,12464:32779637,11154497:26211779,930507,196608 -k1,12434:6567857,11154497:-26211780 -) -(1,12434:6567858,11154497:26211779,733899,196608 -[1,12434:6764466,11154497:25818563,537291,0 -(1,12432:6764466,11041645:25818563,424439,112852 -(1,12431:6764466,11041645:0,0,0 -g1,12431:6764466,11041645 -g1,12431:6764466,11041645 -g1,12431:6436786,11041645 -(1,12431:6436786,11041645:0,0,0 -) -g1,12431:6764466,11041645 -) -k1,12432:6764466,11041645:0 -k1,12432:6764466,11041645:0 -h1,12432:22698256,11041645:0,0,0 -k1,12432:32583029,11041645:9884773 -g1,12432:32583029,11041645 -) -] -) -g1,12434:32583029,11154497 -g1,12434:6764466,11154497 -g1,12434:6764466,11154497 -g1,12434:32583029,11154497 -g1,12434:32583029,11154497 -) -h1,12434:6764466,11351105:0,0,0 -] -g1,12436:32583029,11351105 -) -h1,12436:6630773,11351105:0,0,0 -v1,12439:6630773,12216185:0,393216,0 -(1,12449:6630773,16168250:25952256,4345281,0 -g1,12449:6630773,16168250 -g1,12449:6237557,16168250 -r1,12464:6368629,16168250:131072,4345281,0 -g1,12449:6567858,16168250 -g1,12449:6764466,16168250 -[1,12449:6764466,16168250:25818563,4345281,0 -(1,12440:6764466,12524483:25818563,701514,196608 -(1,12439:6764466,12524483:0,701514,196608 -r1,12464:7761522,12524483:997056,898122,196608 -k1,12439:6764466,12524483:-997056 -) -(1,12439:6764466,12524483:997056,701514,196608 -) -k1,12439:7924168,12524483:162646 -k1,12439:8251848,12524483:327680 -k1,12439:11204362,12524483:162646 -(1,12439:11204362,12524483:0,452978,122846 -r1,12464:15783170,12524483:4578808,575824,122846 -k1,12439:11204362,12524483:-4578808 -) -(1,12439:11204362,12524483:4578808,452978,122846 -k1,12439:11204362,12524483:3277 -h1,12439:15779893,12524483:0,411205,112570 -) -k1,12439:15945816,12524483:162646 -k1,12439:17676083,12524483:162646 -k1,12439:19343436,12524483:162647 -k1,12439:20610364,12524483:162646 -k1,12439:22742367,12524483:162646 -k1,12439:25989137,12524483:162646 -k1,12439:27618479,12524483:162646 -k1,12439:29348746,12524483:162646 -k1,12439:31391584,12524483:162610 -k1,12439:32583029,12524483:0 -) -(1,12440:6764466,13389563:25818563,513147,126483 -k1,12439:11266920,13389563:255721 -k1,12439:15497401,13389563:255722 -k1,12439:16944567,13389563:255721 -k1,12439:18767909,13389563:255721 -k1,12439:19931960,13389563:255722 -k1,12439:24162440,13389563:255721 -k1,12439:25614848,13389563:255721 -k1,12439:27524042,13389563:255721 -k1,12439:30475260,13389563:255722 -k1,12439:31835263,13389563:255721 -k1,12439:32583029,13389563:0 -) -(1,12440:6764466,14254643:25818563,513147,134348 -g1,12439:8476921,14254643 -g1,12439:9327578,14254643 -g1,12439:11743235,14254643 -g1,12439:14339771,14254643 -g1,12439:16873392,14254643 -g1,12439:19810060,14254643 -g1,12439:22919743,14254643 -g1,12439:24310417,14254643 -k1,12440:32583029,14254643:3873836 -g1,12440:32583029,14254643 -) -v1,12442:6764466,14939498:0,393216,0 -(1,12447:6764466,15971642:25818563,1425360,196608 -g1,12447:6764466,15971642 -g1,12447:6764466,15971642 -g1,12447:6567858,15971642 -(1,12447:6567858,15971642:0,1425360,196608 -r1,12464:32779637,15971642:26211779,1621968,196608 -k1,12447:6567857,15971642:-26211780 -) -(1,12447:6567858,15971642:26211779,1425360,196608 -[1,12447:6764466,15971642:25818563,1228752,0 -(1,12444:6764466,15173935:25818563,431045,112852 -(1,12443:6764466,15173935:0,0,0 -g1,12443:6764466,15173935 -g1,12443:6764466,15173935 -g1,12443:6436786,15173935 -(1,12443:6436786,15173935:0,0,0 -) -g1,12443:6764466,15173935 -) -k1,12444:6764466,15173935:0 -g1,12444:17055038,15173935 -g1,12444:17718946,15173935 -g1,12444:19378716,15173935 -k1,12444:19378716,15173935:28626 -h1,12444:20735158,15173935:0,0,0 -k1,12444:32583029,15173935:11847871 -g1,12444:32583029,15173935 -) -(1,12445:6764466,15858790:25818563,431045,112852 -h1,12445:6764466,15858790:0,0,0 -g1,12445:20706532,15858790 -g1,12445:21370440,15858790 -g1,12445:23030210,15858790 -k1,12445:23030210,15858790:8258 -h1,12445:25030192,15858790:0,0,0 -k1,12445:32583029,15858790:7552837 -g1,12445:32583029,15858790 -) -] -) -g1,12447:32583029,15971642 -g1,12447:6764466,15971642 -g1,12447:6764466,15971642 -g1,12447:32583029,15971642 -g1,12447:32583029,15971642 -) -h1,12447:6764466,16168250:0,0,0 -] -g1,12449:32583029,16168250 -) -h1,12449:6630773,16168250:0,0,0 -(1,12452:6630773,17033330:25952256,513147,134348 -h1,12451:6630773,17033330:983040,0,0 -k1,12451:8269244,17033330:240588 -k1,12451:11420328,17033330:240630 -k1,12451:12765240,17033330:240630 -k1,12451:13753636,17033330:240630 -k1,12451:16731704,17033330:240629 -k1,12451:18828314,17033330:240630 -k1,12451:20636565,17033330:240630 -k1,12451:23490115,17033330:240630 -k1,12451:24413630,17033330:240630 -k1,12451:26221880,17033330:240629 -k1,12451:28796902,17033330:240630 -k1,12451:30516024,17033330:240630 -k1,12452:32583029,17033330:0 -) -(1,12452:6630773,17898410:25952256,513147,134348 -k1,12451:8248201,17898410:264765 -k1,12451:11484369,17898410:264766 -k1,12451:13316755,17898410:264765 -k1,12451:16194441,17898410:264766 -k1,12451:19821203,17898410:264765 -k1,12451:20895338,17898410:264765 -k1,12451:22179189,17898410:264766 -k1,12451:25197777,17898410:264765 -k1,12451:26799477,17898410:264766 -k1,12451:29356036,17898410:264765 -k1,12451:32583029,17898410:0 -) -(1,12452:6630773,18763490:25952256,513147,134348 -k1,12451:9603991,18763490:214152 -k1,12451:10469572,18763490:214153 -k1,12451:11431490,18763490:214152 -k1,12451:14603283,18763490:214153 -k1,12451:16198279,18763490:214152 -k1,12451:16943928,18763490:214152 -k1,12451:19687771,18763490:214153 -k1,12451:21594063,18763490:214152 -k1,12451:22223043,18763490:214137 -k1,12451:25347650,18763490:214153 -k1,12451:27933550,18763490:214152 -k1,12451:30256652,18763490:214153 -k1,12451:31966991,18763490:214152 -k1,12451:32583029,18763490:0 -) -(1,12452:6630773,19628570:25952256,505283,134348 -k1,12451:8577523,19628570:244780 -k1,12451:11994901,19628570:244780 -k1,12451:13733247,19628570:244780 -k1,12451:14664189,19628570:244780 -k1,12451:15536149,19628570:244781 -k1,12451:17064124,19628570:244780 -k1,12451:17991789,19628570:244780 -k1,12451:21277394,19628570:244734 -k1,12451:22806680,19628570:244780 -k1,12451:24912028,19628570:244781 -k1,12451:25808236,19628570:244780 -k1,12451:26800782,19628570:244780 -k1,12451:29988784,19628570:244780 -k1,12451:31501030,19628570:244780 -k1,12452:32583029,19628570:0 -) -(1,12452:6630773,20493650:25952256,505283,134348 -k1,12451:8600785,20493650:258212 -k1,12451:10355184,20493650:258212 -k1,12451:12727587,20493650:258212 -k1,12451:16752153,20493650:258212 -k1,12451:18952851,20493650:258211 -k1,12451:23324757,20493650:258212 -k1,12451:24602054,20493650:258212 -k1,12451:27158614,20493650:258212 -k1,12451:29093237,20493650:258212 -k1,12451:32583029,20493650:0 -) -(1,12452:6630773,21358730:25952256,513147,134348 -k1,12451:8072839,21358730:250621 -k1,12451:11464600,21358730:250620 -k1,12451:12706781,21358730:250621 -k1,12451:14023672,21358730:250620 -k1,12451:17058262,21358730:250621 -k1,12451:17995044,21358730:250620 -k1,12451:19567526,21358730:250621 -k1,12451:20477438,21358730:250620 -k1,12451:21747144,21358730:250621 -k1,12451:25051742,21358730:250620 -k1,12451:27721952,21358730:250621 -k1,12451:30943974,21358730:250620 -k1,12451:32583029,21358730:0 -) -(1,12452:6630773,22223810:25952256,513147,134348 -k1,12451:7418919,22223810:256649 -k1,12451:8741839,22223810:256649 -k1,12451:11482303,22223810:256649 -k1,12451:12425114,22223810:256649 -k1,12451:14061951,22223810:256649 -k1,12451:15310160,22223810:256649 -k1,12451:18350778,22223810:256649 -k1,12451:22664761,22223810:256649 -k1,12451:23537448,22223810:256649 -k1,12451:24564800,22223810:256649 -k1,12451:27426505,22223810:256649 -k1,12451:29569280,22223810:256649 -k1,12451:30845014,22223810:256649 -k1,12452:32583029,22223810:0 -) -(1,12452:6630773,23088890:25952256,513147,173670 -k1,12451:9043546,23088890:255983 -k1,12451:12290592,23088890:255983 -k1,12451:14114196,23088890:255983 -k1,12451:16555805,23088890:255983 -(1,12451:16555805,23088890:1181614,473825,0 -) -(1,12451:18042357,23262560:355205,473825,0 -) -k1,12451:19188974,23088890:255983 -k1,12451:19976454,23088890:255983 -k1,12451:22519643,23088890:255982 -k1,12451:25073974,23088890:255983 -k1,12451:25981385,23088890:255983 -k1,12451:27879700,23088890:255983 -k1,12451:29154768,23088890:255983 -k1,12451:30648669,23088890:255926 -k1,12451:31563944,23088890:255983 -k1,12451:32583029,23088890:0 -) -(1,12452:6630773,23953970:25952256,505283,134348 -g1,12451:9914126,23953970 -k1,12452:32583029,23953970:20249970 -g1,12452:32583029,23953970 -) -(1,12454:6630773,24819050:25952256,530548,134348 -h1,12453:6630773,24819050:983040,0,0 -k1,12453:9780509,24819050:224209 -k1,12453:13944742,24819050:224209 -k1,12453:14627048,24819050:224209 -k1,12453:15382754,24819050:224209 -k1,12453:17477361,24819050:224209 -k1,12453:18352998,24819050:224209 -k1,12453:20546564,24819050:224209 -k1,12453:23681227,24819050:224209 -k1,12453:25473057,24819050:224209 -k1,12453:27719052,24819050:224209 -k1,12453:29603031,24819050:224209 -k1,12453:31140582,24819050:224209 -k1,12453:32583029,24819050:0 -) -(1,12454:6630773,25684130:25952256,513147,141066 -k1,12453:8495491,25684130:297097 -k1,12453:11697185,25684130:297097 -k1,12453:14103231,25684130:297097 -k1,12453:15887340,25684130:297097 -k1,12453:17226460,25684130:297098 -k1,12453:18397638,25684130:308724 -k1,12453:19104891,25684130:296998 -k1,12453:21490620,25684130:297097 -k1,12453:23247860,25684130:297098 -k1,12453:24564042,25684130:297097 -k1,12453:27687707,25684130:297097 -k1,12453:28516301,25684130:297097 -k1,12453:31189078,25684130:297097 -k1,12453:32583029,25684130:0 -) -(1,12454:6630773,26549210:25952256,513147,126483 -k1,12453:9342856,26549210:172563 -k1,12453:12299388,26549210:172563 -k1,12453:13938648,26549210:172564 -k1,12453:15058862,26549210:172563 -k1,12453:16668630,26549210:172563 -k1,12453:18032638,26549210:172563 -k1,12453:19701362,26549210:172537 -k1,12453:21216758,26549210:172563 -k1,12453:22351390,26549210:172563 -k1,12453:24575885,26549210:172563 -k1,12453:28380454,26549210:172564 -k1,12453:30272026,26549210:172563 -k1,12453:31516758,26549210:172563 -k1,12453:32583029,26549210:0 -) -(1,12454:6630773,27414290:25952256,513147,126483 -k1,12453:7711570,27414290:141011 -k1,12453:9613534,27414290:141012 -k1,12453:13866274,27414290:141011 -k1,12453:16344955,27414290:141012 -k1,12453:17102004,27414290:141011 -k1,12453:18262101,27414290:141012 -k1,12453:20668692,27414290:141011 -k1,12453:22579831,27414290:141012 -k1,12453:23739927,27414290:141011 -k1,12453:25462323,27414290:141012 -k1,12453:27901682,27414290:141011 -k1,12453:28990345,27414290:141012 -k1,12453:32583029,27414290:0 -) -(1,12454:6630773,28279370:25952256,513147,134348 -k1,12453:7508603,28279370:210674 -k1,12453:8134108,28279370:210662 -k1,12453:11428906,28279370:210674 -k1,12453:13582067,28279370:210674 -k1,12453:15553693,28279370:210674 -k1,12453:16222464,28279370:210674 -k1,12453:16964635,28279370:210674 -k1,12453:19126971,28279370:210674 -k1,12453:22115061,28279370:210674 -k1,12453:22977163,28279370:210674 -k1,12453:25157194,28279370:210674 -k1,12453:28278322,28279370:210674 -k1,12453:30056617,28279370:210674 -k1,12453:32583029,28279370:0 -) -(1,12454:6630773,29144450:25952256,505283,134348 -g1,12453:9661157,29144450 -g1,12453:12440538,29144450 -g1,12453:15179287,29144450 -g1,12453:16853731,29144450 -g1,12453:19607553,29144450 -g1,12453:22249964,29144450 -g1,12453:24099390,29144450 -g1,12453:26099548,29144450 -k1,12454:32583029,29144450:3647083 -g1,12454:32583029,29144450 -) -(1,12456:6630773,30009530:25952256,513147,134348 -h1,12455:6630773,30009530:983040,0,0 -k1,12455:8347106,30009530:255536 -k1,12455:9621726,30009530:255535 -k1,12455:11458646,30009530:255536 -k1,12455:12705742,30009530:255536 -k1,12455:15918917,30009530:255535 -k1,12455:19084907,30009530:255536 -k1,12455:20444725,30009530:255536 -k1,12455:21448026,30009530:255535 -k1,12455:23504491,30009530:255536 -k1,12455:26497466,30009530:255536 -k1,12455:28320622,30009530:255535 -k1,12455:31015408,30009530:255536 -k1,12455:32583029,30009530:0 -) -(1,12456:6630773,30874610:25952256,513147,134348 -k1,12455:8832187,30874610:217639 -k1,12455:11647673,30874610:217639 -k1,12455:14800014,30874610:217639 -k1,12455:17557173,30874610:217639 -k1,12455:18766372,30874610:217639 -k1,12455:19931662,30874610:217639 -k1,12455:21751001,30874610:217639 -k1,12455:24879094,30874610:217639 -k1,12455:26382549,30874610:217639 -k1,12455:28779915,30874610:217639 -k1,12455:31955194,30874610:217639 -k1,12456:32583029,30874610:0 -) -(1,12456:6630773,31739690:25952256,513147,134348 -k1,12455:8793330,31739690:184025 -k1,12455:9996440,31739690:184025 -k1,12455:12202251,31739690:184025 -k1,12455:13333927,31739690:184025 -k1,12455:13873812,31739690:184025 -k1,12455:15341032,31739690:184025 -k1,12455:17858794,31739690:184025 -k1,12455:18702112,31739690:184026 -k1,12455:19241997,31739690:184025 -k1,12455:22006174,31739690:184025 -k1,12455:24963683,31739690:184025 -k1,12455:27931677,31739690:184025 -k1,12455:29509653,31739690:184025 -k1,12455:30049538,31739690:184025 -k1,12455:31923737,31739690:184025 -k1,12455:32583029,31739690:0 -) -(1,12456:6630773,32604770:25952256,505283,134348 -k1,12455:7985906,32604770:198423 -k1,12455:8867214,32604770:198423 -k1,12455:10238075,32604770:198422 -k1,12455:11904504,32604770:198423 -k1,12455:15284045,32604770:198423 -k1,12455:16133896,32604770:198423 -k1,12455:17351403,32604770:198422 -k1,12455:19832445,32604770:198423 -k1,12455:21072890,32604770:198423 -k1,12455:24181767,32604770:198423 -k1,12455:25664695,32604770:198422 -k1,12455:27393384,32604770:198423 -k1,12455:31563944,32604770:198423 -k1,12455:32583029,32604770:0 -) -(1,12456:6630773,33469850:25952256,513147,7863 -g1,12455:10422686,33469850 -g1,12455:12189536,33469850 -g1,12455:14828015,33469850 -g1,12455:16710209,33469850 -g1,12455:18559635,33469850 -g1,12455:20184272,33469850 -g1,12455:21825948,33469850 -g1,12455:25617861,33469850 -g1,12455:27384711,33469850 -k1,12456:32583029,33469850:2606369 -g1,12456:32583029,33469850 -) -v1,12458:6630773,34334930:0,393216,0 -(1,12459:6630773,37364951:25952256,3423237,0 -g1,12459:6630773,37364951 -g1,12459:6237557,37364951 -r1,12464:6368629,37364951:131072,3423237,0 -g1,12459:6567858,37364951 -g1,12459:6764466,37364951 -[1,12459:6764466,37364951:25818563,3423237,0 -(1,12459:6764466,34643228:25818563,701514,196608 -(1,12458:6764466,34643228:0,701514,196608 -r1,12464:8471973,34643228:1707507,898122,196608 -k1,12458:6764466,34643228:-1707507 -) -(1,12458:6764466,34643228:1707507,701514,196608 -) -k1,12458:8674742,34643228:202769 -k1,12458:9992671,34643228:327680 -k1,12458:11344287,34643228:202770 -(1,12458:11344287,34643228:0,452978,115847 -r1,12464:12757688,34643228:1413401,568825,115847 -k1,12458:11344287,34643228:-1413401 -) -(1,12458:11344287,34643228:1413401,452978,115847 -k1,12458:11344287,34643228:3277 -h1,12458:12754411,34643228:0,411205,112570 -) -k1,12458:12960457,34643228:202769 -k1,12458:13814654,34643228:202769 -k1,12458:15404165,34643228:202769 -k1,12458:16442519,34643228:202770 -k1,12458:17664373,34643228:202769 -k1,12458:19255195,34643228:202769 -k1,12458:20956117,34643228:202769 -k1,12458:22106538,34643228:202770 -(1,12458:22106538,34643228:0,452978,122846 -r1,12464:28443905,34643228:6337367,575824,122846 -k1,12458:22106538,34643228:-6337367 -) -(1,12458:22106538,34643228:6337367,452978,122846 -k1,12458:22106538,34643228:3277 -h1,12458:28440628,34643228:0,411205,112570 -) -k1,12458:28820344,34643228:202769 -k1,12458:30214558,34643228:202769 -k1,12458:32583029,34643228:0 -) -(1,12459:6764466,35508308:25818563,513147,134348 -k1,12458:8377822,35508308:282975 -k1,12458:9312225,35508308:282975 -k1,12458:11883062,35508308:282975 -k1,12458:14756676,35508308:282976 -k1,12458:16058736,35508308:282975 -k1,12458:18921863,35508308:282975 -k1,12458:19736335,35508308:282975 -k1,12458:22756749,35508308:282975 -k1,12458:24607345,35508308:282975 -k1,12458:25246180,35508308:282975 -k1,12458:27638105,35508308:282976 -k1,12458:28603965,35508308:282975 -k1,12458:29242800,35508308:282975 -k1,12458:31547561,35508308:282975 -k1,12458:32583029,35508308:0 -) -(1,12459:6764466,36373388:25818563,513147,134348 -k1,12458:8355912,36373388:198150 -k1,12458:11096204,36373388:198150 -k1,12458:12624735,36373388:198150 -k1,12458:13474313,36373388:198150 -k1,12458:15641821,36373388:198151 -k1,12458:16195831,36373388:198150 -k1,12458:18974133,36373388:198150 -k1,12458:20739904,36373388:198150 -k1,12458:21293914,36373388:198150 -k1,12458:22475104,36373388:198150 -k1,12458:23289292,36373388:198150 -k1,12458:23843302,36373388:198150 -k1,12458:25535674,36373388:198151 -k1,12458:27078623,36373388:198150 -k1,12458:29603956,36373388:198150 -k1,12458:30461398,36373388:198150 -k1,12458:32227169,36373388:198150 -k1,12458:32583029,36373388:0 -) -(1,12459:6764466,37238468:25818563,505283,126483 -g1,12458:10247049,37238468 -g1,12458:11592503,37238468 -k1,12459:32583029,37238468:19133236 -g1,12459:32583029,37238468 -) -] -g1,12459:32583029,37364951 -) -h1,12459:6630773,37364951:0,0,0 -(1,12462:6630773,38230031:25952256,513147,134348 -h1,12461:6630773,38230031:983040,0,0 -k1,12461:11280831,38230031:267666 -k1,12461:12567581,38230031:267665 -k1,12461:15576549,38230031:267597 -k1,12461:16827255,38230031:267666 -k1,12461:17754213,38230031:267666 -k1,12461:18377739,38230031:267666 -k1,12461:21225556,38230031:267665 -k1,12461:24161193,38230031:267666 -k1,12461:28266647,38230031:267666 -k1,12461:29343683,38230031:267666 -k1,12461:30941729,38230031:267665 -k1,12461:31860823,38230031:267666 -k1,12462:32583029,38230031:0 -) -(1,12462:6630773,39095111:25952256,513147,134348 -k1,12461:8237065,39095111:252974 -k1,12461:8948136,39095111:252974 -k1,12461:10768730,39095111:252973 -k1,12461:12826512,39095111:252920 -k1,12461:13762371,39095111:252974 -k1,12461:16488018,39095111:252974 -k1,12461:18718869,39095111:252974 -k1,12461:22428867,39095111:252974 -k1,12461:27087826,39095111:252973 -k1,12461:30251254,39095111:252974 -k1,12461:31841162,39095111:252974 -k1,12462:32583029,39095111:0 -) -(1,12462:6630773,39960191:25952256,513147,126483 -k1,12461:8541677,39960191:254809 -k1,12461:12589711,39960191:254810 -k1,12461:13863605,39960191:254809 -k1,12461:17711098,39960191:254809 -k1,12461:18625199,39960191:254809 -k1,12461:21639075,39960191:254810 -k1,12461:24259734,39960191:254809 -k1,12461:24929330,39960191:254753 -k1,12461:27226897,39960191:254810 -k1,12461:28990345,39960191:254809 -k1,12461:32583029,39960191:0 -) -(1,12462:6630773,40825271:25952256,505283,126483 -k1,12461:9008550,40825271:167903 -k1,12461:10442609,40825271:167903 -k1,12461:12393747,40825271:167903 -k1,12461:15141147,40825271:167903 -k1,12461:17005777,40825271:167903 -k1,12461:19125342,40825271:167903 -k1,12461:22935736,40825271:167903 -k1,12461:27364790,40825271:167903 -k1,12461:28524253,40825271:167903 -k1,12461:30821421,40825271:167903 -k1,12461:32583029,40825271:0 -) -(1,12462:6630773,41690351:25952256,505283,126483 -k1,12461:7490365,41690351:243554 -k1,12461:8753005,41690351:243555 -k1,12461:13363834,41690351:243510 -k1,12461:15493514,41690351:243554 -(1,12461:15493514,41690351:0,452978,115847 -r1,12464:22182592,41690351:6689078,568825,115847 -k1,12461:15493514,41690351:-6689078 -) -(1,12461:15493514,41690351:6689078,452978,115847 -k1,12461:15493514,41690351:3277 -h1,12461:22179315,41690351:0,411205,112570 -) -k1,12461:22426146,41690351:243554 -k1,12461:23861146,41690351:243555 -k1,12461:27182926,41690351:243554 -k1,12461:28042518,41690351:243554 -k1,12461:29936270,41690351:243555 -k1,12461:31966991,41690351:243554 -k1,12461:32583029,41690351:0 -) -(1,12462:6630773,42555431:25952256,513147,134348 -k1,12461:7881683,42555431:231825 -k1,12461:10854846,42555431:231792 -k1,12461:12243381,42555431:231825 -k1,12461:13103041,42555431:231825 -k1,12461:15313398,42555431:231825 -k1,12461:16996844,42555431:231824 -k1,12461:19808821,42555431:231825 -k1,12461:21141651,42555431:231825 -k1,12461:21729336,42555431:231825 -k1,12461:23737842,42555431:231825 -k1,12461:25238444,42555431:231825 -k1,12461:26968421,42555431:231824 -k1,12461:28484752,42555431:231825 -k1,12461:29820859,42555431:231825 -k1,12461:30800450,42555431:231825 -k1,12461:32583029,42555431:0 -) -(1,12462:6630773,43420511:25952256,513147,134348 -k1,12461:8729875,43420511:189383 -k1,12461:9385220,43420511:189384 -k1,12461:10731313,43420511:189383 -k1,12461:12973939,43420511:189383 -k1,12461:14182407,43420511:189383 -k1,12461:16109806,43420511:189384 -k1,12461:16958481,43420511:189383 -k1,12461:18166949,43420511:189383 -k1,12461:21110156,43420511:189384 -k1,12461:22542102,43420511:189383 -$1,12461:22542102,43420511 -k1,12461:24409342,43420511:0 -k1,12461:24782790,43420511:0 -k1,12461:25156238,43420511:0 -k1,12461:25529686,43420511:0 -k1,12461:27023478,43420511:0 -k1,12461:27396926,43420511:0 -(1,12461:28143822,43508994:32768,0,0 -) -k1,12461:30790726,43420511:0 -k1,12461:31164174,43420511:0 -k1,12461:32284518,43420511:0 -k1,12462:32583029,43420511:0 -) -(1,12462:6630773,44285591:25952256,513147,134348 -k1,12461:9244909,44285591:0 -k1,12461:9618357,44285591:0 -$1,12461:13352837,44285591 -k1,12461:13661672,44285591:135165 -k1,12461:17202088,44285591:135165 -k1,12461:17795349,44285591:135164 -k1,12461:18462011,44285591:135165 -k1,12461:21374592,44285591:135165 -k1,12461:22457408,44285591:135165 -k1,12461:23611658,44285591:135165 -k1,12461:25134876,44285591:135165 -k1,12461:26217691,44285591:135164 -k1,12461:26708716,44285591:135165 -k1,12461:29424033,44285591:135165 -k1,12461:31297213,44285591:135165 -k1,12461:32583029,44285591:0 -) -(1,12462:6630773,45150671:25952256,505283,134348 -g1,12461:9613971,45150671 -g1,12461:10499362,45150671 -g1,12461:11054451,45150671 -g1,12461:12522457,45150671 -g1,12461:14031095,45150671 -g1,12461:15472887,45150671 -$1,12461:15472887,45150671 -g1,12461:17340127,45150671 -g1,12461:17713575,45150671 -g1,12461:18087023,45150671 -g1,12461:18460471,45150671 -g1,12461:19954263,45150671 -g1,12461:20327711,45150671 -g1,12461:25555983,45150671 -g1,12461:25929431,45150671 -g1,12461:27423223,45150671 -g1,12461:27796671,45150671 -$1,12461:31904599,45150671 -k1,12462:32583029,45150671:626002 -g1,12462:32583029,45150671 -) -] -(1,12464:32583029,45706769:0,0,0 -g1,12464:32583029,45706769 -) -) -] -(1,12464:6630773,47279633:25952256,0,0 -h1,12464:6630773,47279633:25952256,0,0 -) -] -(1,12464:4262630,4025873:0,0,0 -[1,12464:-473656,4025873:0,0,0 -(1,12464:-473656,-710413:0,0,0 -(1,12464:-473656,-710413:0,0,0 -g1,12464:-473656,-710413 -) -g1,12464:-473656,-710413 +[1,12462:3078558,4812305:0,0,0 +(1,12462:3078558,49800853:0,16384,2228224 +g1,12462:29030814,49800853 +g1,12462:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12462:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12462:37855564,49800853:1179648,16384,0 +) +) +k1,12462:3078556,49800853:-34777008 +) +] +g1,12462:6630773,4812305 +g1,12462:6630773,4812305 +g1,12462:9714897,4812305 +k1,12462:31387653,4812305:21672756 +) +) +] +[1,12462:6630773,45706769:25952256,40108032,0 +(1,12462:6630773,45706769:25952256,40108032,0 +(1,12462:6630773,45706769:0,0,0 +g1,12462:6630773,45706769 +) +[1,12462:6630773,45706769:25952256,40108032,0 +v1,12425:6630773,6254097:0,393216,0 +(1,12434:6630773,11351105:25952256,5490224,0 +g1,12434:6630773,11351105 +g1,12434:6237557,11351105 +r1,12462:6368629,11351105:131072,5490224,0 +g1,12434:6567858,11351105 +g1,12434:6764466,11351105 +[1,12434:6764466,11351105:25818563,5490224,0 +(1,12426:6764466,6668639:25818563,807758,219026 +(1,12425:6764466,6668639:0,807758,219026 +r1,12462:7908217,6668639:1143751,1026784,219026 +k1,12425:6764466,6668639:-1143751 +) +(1,12425:6764466,6668639:1143751,807758,219026 +) +g1,12425:8107446,6668639 +g1,12425:8435126,6668639 +g1,12425:10143649,6668639 +g1,12425:11007413,6668639 +g1,12425:13242190,6668639 +g1,12425:14153795,6668639 +g1,12425:16629090,6668639 +g1,12425:17197942,6668639 +g1,12425:20102497,6668639 +g1,12425:21920465,6668639 +k1,12425:32583029,6668639:7999181 +g1,12426:32583029,6668639 +) +(1,12426:6764466,7533719:25818563,513147,134348 +k1,12425:9517336,7533719:217937 +k1,12425:12673907,7533719:217937 +k1,12425:14937878,7533719:217937 +k1,12425:15613912,7533719:217937 +k1,12425:18461809,7533719:217937 +k1,12425:19331173,7533719:217936 +k1,12425:21518467,7533719:217937 +k1,12425:24646858,7533719:217937 +k1,12425:27279141,7533719:217937 +k1,12425:29064699,7533719:217937 +k1,12425:31665525,7533719:217937 +k1,12426:32583029,7533719:0 +) +(1,12426:6764466,8398799:25818563,505283,126483 +k1,12425:9137525,8398799:225444 +k1,12425:10554414,8398799:225444 +k1,12425:12481827,8398799:225443 +k1,12425:16508359,8398799:225444 +k1,12425:18588472,8398799:225444 +k1,12425:19623286,8398799:225444 +k1,12425:20930728,8398799:225443 +k1,12425:22352859,8398799:225444 +k1,12425:24074490,8398799:225444 +k1,12425:24915972,8398799:225444 +k1,12425:26160501,8398799:225444 +k1,12425:27770064,8398799:225443 +k1,12425:29966176,8398799:225444 +k1,12425:31464985,8398799:225444 +k1,12425:32583029,8398799:0 +) +(1,12426:6764466,9263879:25818563,505283,126483 +k1,12425:8597836,9263879:228393 +k1,12425:9930511,9263879:228393 +k1,12425:10906670,9263879:228393 +k1,12425:12648288,9263879:228392 +k1,12425:13528109,9263879:228393 +k1,12425:15725859,9263879:228393 +k1,12425:16973337,9263879:228393 +k1,12425:19127833,9263879:228393 +k1,12425:22173619,9263879:228393 +k1,12425:23600665,9263879:228392 +k1,12425:25715184,9263879:228393 +k1,12425:30249292,9263879:228393 +k1,12425:32583029,9263879:0 +) +(1,12426:6764466,10128959:25818563,513147,134348 +g1,12425:7622987,10128959 +g1,12425:10402368,10128959 +k1,12426:32583030,10128959:18321904 +g1,12426:32583030,10128959 +) +v1,12428:6764466,10813814:0,393216,0 +(1,12432:6764466,11154497:25818563,733899,196608 +g1,12432:6764466,11154497 +g1,12432:6764466,11154497 +g1,12432:6567858,11154497 +(1,12432:6567858,11154497:0,733899,196608 +r1,12462:32779637,11154497:26211779,930507,196608 +k1,12432:6567857,11154497:-26211780 +) +(1,12432:6567858,11154497:26211779,733899,196608 +[1,12432:6764466,11154497:25818563,537291,0 +(1,12430:6764466,11041645:25818563,424439,112852 +(1,12429:6764466,11041645:0,0,0 +g1,12429:6764466,11041645 +g1,12429:6764466,11041645 +g1,12429:6436786,11041645 +(1,12429:6436786,11041645:0,0,0 +) +g1,12429:6764466,11041645 +) +k1,12430:6764466,11041645:0 +k1,12430:6764466,11041645:0 +h1,12430:22698256,11041645:0,0,0 +k1,12430:32583029,11041645:9884773 +g1,12430:32583029,11041645 +) +] +) +g1,12432:32583029,11154497 +g1,12432:6764466,11154497 +g1,12432:6764466,11154497 +g1,12432:32583029,11154497 +g1,12432:32583029,11154497 +) +h1,12432:6764466,11351105:0,0,0 +] +g1,12434:32583029,11351105 +) +h1,12434:6630773,11351105:0,0,0 +v1,12437:6630773,12216185:0,393216,0 +(1,12447:6630773,16168250:25952256,4345281,0 +g1,12447:6630773,16168250 +g1,12447:6237557,16168250 +r1,12462:6368629,16168250:131072,4345281,0 +g1,12447:6567858,16168250 +g1,12447:6764466,16168250 +[1,12447:6764466,16168250:25818563,4345281,0 +(1,12438:6764466,12524483:25818563,701514,196608 +(1,12437:6764466,12524483:0,701514,196608 +r1,12462:7761522,12524483:997056,898122,196608 +k1,12437:6764466,12524483:-997056 +) +(1,12437:6764466,12524483:997056,701514,196608 +) +k1,12437:7924168,12524483:162646 +k1,12437:8251848,12524483:327680 +k1,12437:11204362,12524483:162646 +(1,12437:11204362,12524483:0,452978,122846 +r1,12462:15783170,12524483:4578808,575824,122846 +k1,12437:11204362,12524483:-4578808 +) +(1,12437:11204362,12524483:4578808,452978,122846 +k1,12437:11204362,12524483:3277 +h1,12437:15779893,12524483:0,411205,112570 +) +k1,12437:15945816,12524483:162646 +k1,12437:17676083,12524483:162646 +k1,12437:19343436,12524483:162647 +k1,12437:20610364,12524483:162646 +k1,12437:22742367,12524483:162646 +k1,12437:25989137,12524483:162646 +k1,12437:27618479,12524483:162646 +k1,12437:29348746,12524483:162646 +k1,12437:31391584,12524483:162610 +k1,12437:32583029,12524483:0 +) +(1,12438:6764466,13389563:25818563,513147,126483 +k1,12437:11266920,13389563:255721 +k1,12437:15497401,13389563:255722 +k1,12437:16944567,13389563:255721 +k1,12437:18767909,13389563:255721 +k1,12437:19931960,13389563:255722 +k1,12437:24162440,13389563:255721 +k1,12437:25614848,13389563:255721 +k1,12437:27524042,13389563:255721 +k1,12437:30475260,13389563:255722 +k1,12437:31835263,13389563:255721 +k1,12437:32583029,13389563:0 +) +(1,12438:6764466,14254643:25818563,513147,134348 +g1,12437:8476921,14254643 +g1,12437:9327578,14254643 +g1,12437:11743235,14254643 +g1,12437:14339771,14254643 +g1,12437:16873392,14254643 +g1,12437:19810060,14254643 +g1,12437:22919743,14254643 +g1,12437:24310417,14254643 +k1,12438:32583029,14254643:3873836 +g1,12438:32583029,14254643 +) +v1,12440:6764466,14939498:0,393216,0 +(1,12445:6764466,15971642:25818563,1425360,196608 +g1,12445:6764466,15971642 +g1,12445:6764466,15971642 +g1,12445:6567858,15971642 +(1,12445:6567858,15971642:0,1425360,196608 +r1,12462:32779637,15971642:26211779,1621968,196608 +k1,12445:6567857,15971642:-26211780 +) +(1,12445:6567858,15971642:26211779,1425360,196608 +[1,12445:6764466,15971642:25818563,1228752,0 +(1,12442:6764466,15173935:25818563,431045,112852 +(1,12441:6764466,15173935:0,0,0 +g1,12441:6764466,15173935 +g1,12441:6764466,15173935 +g1,12441:6436786,15173935 +(1,12441:6436786,15173935:0,0,0 +) +g1,12441:6764466,15173935 +) +k1,12442:6764466,15173935:0 +g1,12442:17055038,15173935 +g1,12442:17718946,15173935 +g1,12442:19378716,15173935 +k1,12442:19378716,15173935:28626 +h1,12442:20735158,15173935:0,0,0 +k1,12442:32583029,15173935:11847871 +g1,12442:32583029,15173935 +) +(1,12443:6764466,15858790:25818563,431045,112852 +h1,12443:6764466,15858790:0,0,0 +g1,12443:20706532,15858790 +g1,12443:21370440,15858790 +g1,12443:23030210,15858790 +k1,12443:23030210,15858790:8258 +h1,12443:25030192,15858790:0,0,0 +k1,12443:32583029,15858790:7552837 +g1,12443:32583029,15858790 +) +] +) +g1,12445:32583029,15971642 +g1,12445:6764466,15971642 +g1,12445:6764466,15971642 +g1,12445:32583029,15971642 +g1,12445:32583029,15971642 +) +h1,12445:6764466,16168250:0,0,0 +] +g1,12447:32583029,16168250 +) +h1,12447:6630773,16168250:0,0,0 +(1,12450:6630773,17033330:25952256,513147,134348 +h1,12449:6630773,17033330:983040,0,0 +k1,12449:8269244,17033330:240588 +k1,12449:11420328,17033330:240630 +k1,12449:12765240,17033330:240630 +k1,12449:13753636,17033330:240630 +k1,12449:16731704,17033330:240629 +k1,12449:18828314,17033330:240630 +k1,12449:20636565,17033330:240630 +k1,12449:23490115,17033330:240630 +k1,12449:24413630,17033330:240630 +k1,12449:26221880,17033330:240629 +k1,12449:28796902,17033330:240630 +k1,12449:30516024,17033330:240630 +k1,12450:32583029,17033330:0 +) +(1,12450:6630773,17898410:25952256,513147,134348 +k1,12449:8248201,17898410:264765 +k1,12449:11484369,17898410:264766 +k1,12449:13316755,17898410:264765 +k1,12449:16194441,17898410:264766 +k1,12449:19821203,17898410:264765 +k1,12449:20895338,17898410:264765 +k1,12449:22179189,17898410:264766 +k1,12449:25197777,17898410:264765 +k1,12449:26799477,17898410:264766 +k1,12449:29356036,17898410:264765 +k1,12449:32583029,17898410:0 +) +(1,12450:6630773,18763490:25952256,513147,134348 +k1,12449:9603991,18763490:214152 +k1,12449:10469572,18763490:214153 +k1,12449:11431490,18763490:214152 +k1,12449:14603283,18763490:214153 +k1,12449:16198279,18763490:214152 +k1,12449:16943928,18763490:214152 +k1,12449:19687771,18763490:214153 +k1,12449:21594063,18763490:214152 +k1,12449:22223043,18763490:214137 +k1,12449:25347650,18763490:214153 +k1,12449:27933550,18763490:214152 +k1,12449:30256652,18763490:214153 +k1,12449:31966991,18763490:214152 +k1,12449:32583029,18763490:0 +) +(1,12450:6630773,19628570:25952256,505283,134348 +k1,12449:8577523,19628570:244780 +k1,12449:11994901,19628570:244780 +k1,12449:13733247,19628570:244780 +k1,12449:14664189,19628570:244780 +k1,12449:15536149,19628570:244781 +k1,12449:17064124,19628570:244780 +k1,12449:17991789,19628570:244780 +k1,12449:21277394,19628570:244734 +k1,12449:22806680,19628570:244780 +k1,12449:24912028,19628570:244781 +k1,12449:25808236,19628570:244780 +k1,12449:26800782,19628570:244780 +k1,12449:29988784,19628570:244780 +k1,12449:31501030,19628570:244780 +k1,12450:32583029,19628570:0 +) +(1,12450:6630773,20493650:25952256,505283,134348 +k1,12449:8591100,20493650:248527 +k1,12449:10335814,20493650:248527 +k1,12449:12698532,20493650:248527 +k1,12449:16713413,20493650:248527 +k1,12449:18904428,20493650:248528 +k1,12449:23266649,20493650:248527 +k1,12449:24534261,20493650:248527 +k1,12449:27081136,20493650:248527 +k1,12449:29006074,20493650:248527 +k1,12449:32583029,20493650:0 +) +(1,12450:6630773,21358730:25952256,513147,134348 +k1,12449:8072839,21358730:250621 +k1,12449:11464600,21358730:250620 +k1,12449:12706781,21358730:250621 +k1,12449:14023672,21358730:250620 +k1,12449:17058262,21358730:250621 +k1,12449:17995044,21358730:250620 +k1,12449:19567526,21358730:250621 +k1,12449:20477438,21358730:250620 +k1,12449:21747144,21358730:250621 +k1,12449:25051742,21358730:250620 +k1,12449:27721952,21358730:250621 +k1,12449:30943974,21358730:250620 +k1,12449:32583029,21358730:0 +) +(1,12450:6630773,22223810:25952256,513147,134348 +k1,12449:7418919,22223810:256649 +k1,12449:8741839,22223810:256649 +k1,12449:11482303,22223810:256649 +k1,12449:12425114,22223810:256649 +k1,12449:14061951,22223810:256649 +k1,12449:15310160,22223810:256649 +k1,12449:18350778,22223810:256649 +k1,12449:22664761,22223810:256649 +k1,12449:23537448,22223810:256649 +k1,12449:24564800,22223810:256649 +k1,12449:27426505,22223810:256649 +k1,12449:29569280,22223810:256649 +k1,12449:30845014,22223810:256649 +k1,12450:32583029,22223810:0 +) +(1,12450:6630773,23088890:25952256,513147,173670 +k1,12449:9043546,23088890:255983 +k1,12449:12290592,23088890:255983 +k1,12449:14114196,23088890:255983 +k1,12449:16555805,23088890:255983 +(1,12449:16555805,23088890:1181614,473825,0 +) +(1,12449:18042357,23262560:355205,473825,0 +) +k1,12449:19188974,23088890:255983 +k1,12449:19976454,23088890:255983 +k1,12449:22519643,23088890:255982 +k1,12449:25073974,23088890:255983 +k1,12449:25981385,23088890:255983 +k1,12449:27879700,23088890:255983 +k1,12449:29154768,23088890:255983 +k1,12449:30648669,23088890:255926 +k1,12449:31563944,23088890:255983 +k1,12449:32583029,23088890:0 +) +(1,12450:6630773,23953970:25952256,505283,134348 +g1,12449:9914126,23953970 +k1,12450:32583029,23953970:20249970 +g1,12450:32583029,23953970 +) +(1,12452:6630773,24819050:25952256,530548,134348 +h1,12451:6630773,24819050:983040,0,0 +k1,12451:9766037,24819050:209737 +k1,12451:14089467,24819050:209736 +k1,12451:14757301,24819050:209737 +k1,12451:15498534,24819050:209736 +k1,12451:17578669,24819050:209737 +k1,12451:18439833,24819050:209736 +k1,12451:20618927,24819050:209737 +k1,12451:23739117,24819050:209736 +k1,12451:25516475,24819050:209737 +k1,12451:27747997,24819050:209736 +k1,12451:29617504,24819050:209737 +k1,12451:31140582,24819050:209736 +k1,12451:32583029,24819050:0 +) +(1,12452:6630773,25684130:25952256,513147,141066 +k1,12451:8495491,25684130:297097 +k1,12451:11697185,25684130:297097 +k1,12451:14103231,25684130:297097 +k1,12451:15887340,25684130:297097 +k1,12451:17226460,25684130:297098 +k1,12451:18397638,25684130:308724 +k1,12451:19104891,25684130:296998 +k1,12451:21490620,25684130:297097 +k1,12451:23247860,25684130:297098 +k1,12451:24564042,25684130:297097 +k1,12451:27687707,25684130:297097 +k1,12451:28516301,25684130:297097 +k1,12451:31189078,25684130:297097 +k1,12451:32583029,25684130:0 +) +(1,12452:6630773,26549210:25952256,513147,126483 +k1,12451:9342856,26549210:172563 +k1,12451:12299388,26549210:172563 +k1,12451:13938648,26549210:172564 +k1,12451:15058862,26549210:172563 +k1,12451:16668630,26549210:172563 +k1,12451:18032638,26549210:172563 +k1,12451:19701362,26549210:172537 +k1,12451:21216758,26549210:172563 +k1,12451:22351390,26549210:172563 +k1,12451:24575885,26549210:172563 +k1,12451:28380454,26549210:172564 +k1,12451:30272026,26549210:172563 +k1,12451:31516758,26549210:172563 +k1,12451:32583029,26549210:0 +) +(1,12452:6630773,27414290:25952256,513147,126483 +k1,12451:7711570,27414290:141011 +k1,12451:9613534,27414290:141012 +k1,12451:13866274,27414290:141011 +k1,12451:16344955,27414290:141012 +k1,12451:17102004,27414290:141011 +k1,12451:18262101,27414290:141012 +k1,12451:20668692,27414290:141011 +k1,12451:22579831,27414290:141012 +k1,12451:23739927,27414290:141011 +k1,12451:25462323,27414290:141012 +k1,12451:27901682,27414290:141011 +k1,12451:28990345,27414290:141012 +k1,12451:32583029,27414290:0 +) +(1,12452:6630773,28279370:25952256,513147,134348 +k1,12451:7508603,28279370:210674 +k1,12451:8134108,28279370:210662 +k1,12451:11428906,28279370:210674 +k1,12451:13582067,28279370:210674 +k1,12451:15553693,28279370:210674 +k1,12451:16222464,28279370:210674 +k1,12451:16964635,28279370:210674 +k1,12451:19126971,28279370:210674 +k1,12451:22115061,28279370:210674 +k1,12451:22977163,28279370:210674 +k1,12451:25157194,28279370:210674 +k1,12451:28278322,28279370:210674 +k1,12451:30056617,28279370:210674 +k1,12451:32583029,28279370:0 +) +(1,12452:6630773,29144450:25952256,505283,134348 +g1,12451:9661157,29144450 +g1,12451:12440538,29144450 +g1,12451:15179287,29144450 +g1,12451:16853731,29144450 +g1,12451:19607553,29144450 +g1,12451:22249964,29144450 +g1,12451:24099390,29144450 +g1,12451:26099548,29144450 +k1,12452:32583029,29144450:3647083 +g1,12452:32583029,29144450 +) +(1,12454:6630773,30009530:25952256,513147,134348 +h1,12453:6630773,30009530:983040,0,0 +k1,12453:8347106,30009530:255536 +k1,12453:9621726,30009530:255535 +k1,12453:11458646,30009530:255536 +k1,12453:12705742,30009530:255536 +k1,12453:15918917,30009530:255535 +k1,12453:19084907,30009530:255536 +k1,12453:20444725,30009530:255536 +k1,12453:21448026,30009530:255535 +k1,12453:23504491,30009530:255536 +k1,12453:26497466,30009530:255536 +k1,12453:28320622,30009530:255535 +k1,12453:31015408,30009530:255536 +k1,12453:32583029,30009530:0 +) +(1,12454:6630773,30874610:25952256,513147,134348 +k1,12453:8832187,30874610:217639 +k1,12453:11647673,30874610:217639 +k1,12453:14800014,30874610:217639 +k1,12453:17557173,30874610:217639 +k1,12453:18766372,30874610:217639 +k1,12453:19931662,30874610:217639 +k1,12453:21751001,30874610:217639 +k1,12453:24879094,30874610:217639 +k1,12453:26382549,30874610:217639 +k1,12453:28779915,30874610:217639 +k1,12453:31955194,30874610:217639 +k1,12454:32583029,30874610:0 +) +(1,12454:6630773,31739690:25952256,513147,134348 +k1,12453:8793330,31739690:184025 +k1,12453:9996440,31739690:184025 +k1,12453:12202251,31739690:184025 +k1,12453:13333927,31739690:184025 +k1,12453:13873812,31739690:184025 +k1,12453:15341032,31739690:184025 +k1,12453:17858794,31739690:184025 +k1,12453:18702112,31739690:184026 +k1,12453:19241997,31739690:184025 +k1,12453:22006174,31739690:184025 +k1,12453:24963683,31739690:184025 +k1,12453:27931677,31739690:184025 +k1,12453:29509653,31739690:184025 +k1,12453:30049538,31739690:184025 +k1,12453:31923737,31739690:184025 +k1,12453:32583029,31739690:0 +) +(1,12454:6630773,32604770:25952256,505283,134348 +k1,12453:7985906,32604770:198423 +k1,12453:8867214,32604770:198423 +k1,12453:10238075,32604770:198422 +k1,12453:11904504,32604770:198423 +k1,12453:15284045,32604770:198423 +k1,12453:16133896,32604770:198423 +k1,12453:17351403,32604770:198422 +k1,12453:19832445,32604770:198423 +k1,12453:21072890,32604770:198423 +k1,12453:24181767,32604770:198423 +k1,12453:25664695,32604770:198422 +k1,12453:27393384,32604770:198423 +k1,12453:31563944,32604770:198423 +k1,12453:32583029,32604770:0 +) +(1,12454:6630773,33469850:25952256,513147,7863 +g1,12453:10422686,33469850 +g1,12453:12189536,33469850 +g1,12453:14828015,33469850 +g1,12453:16710209,33469850 +g1,12453:18559635,33469850 +g1,12453:20184272,33469850 +g1,12453:21825948,33469850 +g1,12453:25617861,33469850 +g1,12453:27384711,33469850 +k1,12454:32583029,33469850:2606369 +g1,12454:32583029,33469850 +) +v1,12456:6630773,34334930:0,393216,0 +(1,12457:6630773,37364951:25952256,3423237,0 +g1,12457:6630773,37364951 +g1,12457:6237557,37364951 +r1,12462:6368629,37364951:131072,3423237,0 +g1,12457:6567858,37364951 +g1,12457:6764466,37364951 +[1,12457:6764466,37364951:25818563,3423237,0 +(1,12457:6764466,34643228:25818563,701514,196608 +(1,12456:6764466,34643228:0,701514,196608 +r1,12462:8471973,34643228:1707507,898122,196608 +k1,12456:6764466,34643228:-1707507 +) +(1,12456:6764466,34643228:1707507,701514,196608 +) +k1,12456:8674742,34643228:202769 +k1,12456:9992671,34643228:327680 +k1,12456:11344287,34643228:202770 +(1,12456:11344287,34643228:0,452978,115847 +r1,12462:12757688,34643228:1413401,568825,115847 +k1,12456:11344287,34643228:-1413401 +) +(1,12456:11344287,34643228:1413401,452978,115847 +k1,12456:11344287,34643228:3277 +h1,12456:12754411,34643228:0,411205,112570 +) +k1,12456:12960457,34643228:202769 +k1,12456:13814654,34643228:202769 +k1,12456:15404165,34643228:202769 +k1,12456:16442519,34643228:202770 +k1,12456:17664373,34643228:202769 +k1,12456:19255195,34643228:202769 +k1,12456:20956117,34643228:202769 +k1,12456:22106538,34643228:202770 +(1,12456:22106538,34643228:0,452978,122846 +r1,12462:28443905,34643228:6337367,575824,122846 +k1,12456:22106538,34643228:-6337367 +) +(1,12456:22106538,34643228:6337367,452978,122846 +k1,12456:22106538,34643228:3277 +h1,12456:28440628,34643228:0,411205,112570 +) +k1,12456:28820344,34643228:202769 +k1,12456:30214558,34643228:202769 +k1,12456:32583029,34643228:0 +) +(1,12457:6764466,35508308:25818563,513147,134348 +k1,12456:8377822,35508308:282975 +k1,12456:9312225,35508308:282975 +k1,12456:11883062,35508308:282975 +k1,12456:14756676,35508308:282976 +k1,12456:16058736,35508308:282975 +k1,12456:18921863,35508308:282975 +k1,12456:19736335,35508308:282975 +k1,12456:22756749,35508308:282975 +k1,12456:24607345,35508308:282975 +k1,12456:25246180,35508308:282975 +k1,12456:27638105,35508308:282976 +k1,12456:28603965,35508308:282975 +k1,12456:29242800,35508308:282975 +k1,12456:31547561,35508308:282975 +k1,12456:32583029,35508308:0 +) +(1,12457:6764466,36373388:25818563,513147,134348 +k1,12456:8355912,36373388:198150 +k1,12456:11096204,36373388:198150 +k1,12456:12624735,36373388:198150 +k1,12456:13474313,36373388:198150 +k1,12456:15641821,36373388:198151 +k1,12456:16195831,36373388:198150 +k1,12456:18974133,36373388:198150 +k1,12456:20739904,36373388:198150 +k1,12456:21293914,36373388:198150 +k1,12456:22475104,36373388:198150 +k1,12456:23289292,36373388:198150 +k1,12456:23843302,36373388:198150 +k1,12456:25535674,36373388:198151 +k1,12456:27078623,36373388:198150 +k1,12456:29603956,36373388:198150 +k1,12456:30461398,36373388:198150 +k1,12456:32227169,36373388:198150 +k1,12456:32583029,36373388:0 +) +(1,12457:6764466,37238468:25818563,505283,126483 +g1,12456:10247049,37238468 +g1,12456:11592503,37238468 +k1,12457:32583029,37238468:19133236 +g1,12457:32583029,37238468 +) +] +g1,12457:32583029,37364951 +) +h1,12457:6630773,37364951:0,0,0 +(1,12460:6630773,38230031:25952256,513147,134348 +h1,12459:6630773,38230031:983040,0,0 +k1,12459:11280831,38230031:267666 +k1,12459:12567581,38230031:267665 +k1,12459:15576549,38230031:267597 +k1,12459:16827255,38230031:267666 +k1,12459:17754213,38230031:267666 +k1,12459:18377739,38230031:267666 +k1,12459:21225556,38230031:267665 +k1,12459:24161193,38230031:267666 +k1,12459:28266647,38230031:267666 +k1,12459:29343683,38230031:267666 +k1,12459:30941729,38230031:267665 +k1,12459:31860823,38230031:267666 +k1,12460:32583029,38230031:0 +) +(1,12460:6630773,39095111:25952256,513147,134348 +k1,12459:8237065,39095111:252974 +k1,12459:8948136,39095111:252974 +k1,12459:10768730,39095111:252973 +k1,12459:12826512,39095111:252920 +k1,12459:13762371,39095111:252974 +k1,12459:16488018,39095111:252974 +k1,12459:18718869,39095111:252974 +k1,12459:22428867,39095111:252974 +k1,12459:27087826,39095111:252973 +k1,12459:30251254,39095111:252974 +k1,12459:31841162,39095111:252974 +k1,12460:32583029,39095111:0 +) +(1,12460:6630773,39960191:25952256,513147,126483 +k1,12459:8541677,39960191:254809 +k1,12459:12589711,39960191:254810 +k1,12459:13863605,39960191:254809 +k1,12459:17711098,39960191:254809 +k1,12459:18625199,39960191:254809 +k1,12459:21639075,39960191:254810 +k1,12459:24259734,39960191:254809 +k1,12459:24929330,39960191:254753 +k1,12459:27226897,39960191:254810 +k1,12459:28990345,39960191:254809 +k1,12459:32583029,39960191:0 +) +(1,12460:6630773,40825271:25952256,505283,126483 +k1,12459:9008550,40825271:167903 +k1,12459:10442609,40825271:167903 +k1,12459:12393747,40825271:167903 +k1,12459:15141147,40825271:167903 +k1,12459:17005777,40825271:167903 +k1,12459:19125342,40825271:167903 +k1,12459:22935736,40825271:167903 +k1,12459:27364790,40825271:167903 +k1,12459:28524253,40825271:167903 +k1,12459:30821421,40825271:167903 +k1,12459:32583029,40825271:0 +) +(1,12460:6630773,41690351:25952256,505283,126483 +k1,12459:7490365,41690351:243554 +k1,12459:8753005,41690351:243555 +k1,12459:13363834,41690351:243510 +k1,12459:15493514,41690351:243554 +(1,12459:15493514,41690351:0,452978,115847 +r1,12462:22182592,41690351:6689078,568825,115847 +k1,12459:15493514,41690351:-6689078 +) +(1,12459:15493514,41690351:6689078,452978,115847 +k1,12459:15493514,41690351:3277 +h1,12459:22179315,41690351:0,411205,112570 +) +k1,12459:22426146,41690351:243554 +k1,12459:23861146,41690351:243555 +k1,12459:27182926,41690351:243554 +k1,12459:28042518,41690351:243554 +k1,12459:29936270,41690351:243555 +k1,12459:31966991,41690351:243554 +k1,12459:32583029,41690351:0 +) +(1,12460:6630773,42555431:25952256,513147,134348 +k1,12459:7881683,42555431:231825 +k1,12459:10854846,42555431:231792 +k1,12459:12243381,42555431:231825 +k1,12459:13103041,42555431:231825 +k1,12459:15313398,42555431:231825 +k1,12459:16996844,42555431:231824 +k1,12459:19808821,42555431:231825 +k1,12459:21141651,42555431:231825 +k1,12459:21729336,42555431:231825 +k1,12459:23737842,42555431:231825 +k1,12459:25238444,42555431:231825 +k1,12459:26968421,42555431:231824 +k1,12459:28484752,42555431:231825 +k1,12459:29820859,42555431:231825 +k1,12459:30800450,42555431:231825 +k1,12459:32583029,42555431:0 +) +(1,12460:6630773,43420511:25952256,513147,134348 +k1,12459:8729875,43420511:189383 +k1,12459:9385220,43420511:189384 +k1,12459:10731313,43420511:189383 +k1,12459:12973939,43420511:189383 +k1,12459:14182407,43420511:189383 +k1,12459:16109806,43420511:189384 +k1,12459:16958481,43420511:189383 +k1,12459:18166949,43420511:189383 +k1,12459:21110156,43420511:189384 +k1,12459:22542102,43420511:189383 +$1,12459:22542102,43420511 +k1,12459:24409342,43420511:0 +k1,12459:24782790,43420511:0 +k1,12459:25156238,43420511:0 +k1,12459:25529686,43420511:0 +k1,12459:27023478,43420511:0 +k1,12459:27396926,43420511:0 +(1,12459:28143822,43508994:32768,0,0 +) +k1,12459:30790726,43420511:0 +k1,12459:31164174,43420511:0 +k1,12459:32284518,43420511:0 +k1,12460:32583029,43420511:0 +) +(1,12460:6630773,44285591:25952256,513147,134348 +k1,12459:9244909,44285591:0 +k1,12459:9618357,44285591:0 +$1,12459:13352837,44285591 +k1,12459:13661672,44285591:135165 +k1,12459:17202088,44285591:135165 +k1,12459:17795349,44285591:135164 +k1,12459:18462011,44285591:135165 +k1,12459:21374592,44285591:135165 +k1,12459:22457408,44285591:135165 +k1,12459:23611658,44285591:135165 +k1,12459:25134876,44285591:135165 +k1,12459:26217691,44285591:135164 +k1,12459:26708716,44285591:135165 +k1,12459:29424033,44285591:135165 +k1,12459:31297213,44285591:135165 +k1,12459:32583029,44285591:0 +) +(1,12460:6630773,45150671:25952256,505283,134348 +g1,12459:9613971,45150671 +g1,12459:10499362,45150671 +g1,12459:11054451,45150671 +g1,12459:12522457,45150671 +g1,12459:14031095,45150671 +g1,12459:15472887,45150671 +$1,12459:15472887,45150671 +g1,12459:17340127,45150671 +g1,12459:17713575,45150671 +g1,12459:18087023,45150671 +g1,12459:18460471,45150671 +g1,12459:19954263,45150671 +g1,12459:20327711,45150671 +g1,12459:25555983,45150671 +g1,12459:25929431,45150671 +g1,12459:27423223,45150671 +g1,12459:27796671,45150671 +$1,12459:31904599,45150671 +k1,12460:32583029,45150671:626002 +g1,12460:32583029,45150671 +) +] +(1,12462:32583029,45706769:0,0,0 +g1,12462:32583029,45706769 +) +) +] +(1,12462:6630773,47279633:25952256,0,0 +h1,12462:6630773,47279633:25952256,0,0 +) +] +(1,12462:4262630,4025873:0,0,0 +[1,12462:-473656,4025873:0,0,0 +(1,12462:-473656,-710413:0,0,0 +(1,12462:-473656,-710413:0,0,0 +g1,12462:-473656,-710413 +) +g1,12462:-473656,-710413 ) ] ) ] !27657 -}196 -Input:2052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}197 Input:2055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2057:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2058:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2059:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2060:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2061:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2062:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{197 -[1,12530:4262630,47279633:28320399,43253760,0 -(1,12530:4262630,4025873:0,0,0 -[1,12530:-473656,4025873:0,0,0 -(1,12530:-473656,-710413:0,0,0 -(1,12530:-473656,-644877:0,0,0 -k1,12530:-473656,-644877:-65536 +{198 +[1,12528:4262630,47279633:28320399,43253760,0 +(1,12528:4262630,4025873:0,0,0 +[1,12528:-473656,4025873:0,0,0 +(1,12528:-473656,-710413:0,0,0 +(1,12528:-473656,-644877:0,0,0 +k1,12528:-473656,-644877:-65536 ) -(1,12530:-473656,4736287:0,0,0 -k1,12530:-473656,4736287:5209943 +(1,12528:-473656,4736287:0,0,0 +k1,12528:-473656,4736287:5209943 ) -g1,12530:-473656,-710413 +g1,12528:-473656,-710413 ) ] ) -[1,12530:6630773,47279633:25952256,43253760,0 -[1,12530:6630773,4812305:25952256,786432,0 -(1,12530:6630773,4812305:25952256,505283,134348 -(1,12530:6630773,4812305:25952256,505283,134348 -g1,12530:3078558,4812305 -[1,12530:3078558,4812305:0,0,0 -(1,12530:3078558,2439708:0,1703936,0 -k1,12530:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12530:2537886,2439708:1179648,16384,0 +[1,12528:6630773,47279633:25952256,43253760,0 +[1,12528:6630773,4812305:25952256,786432,0 +(1,12528:6630773,4812305:25952256,505283,134348 +(1,12528:6630773,4812305:25952256,505283,134348 +g1,12528:3078558,4812305 +[1,12528:3078558,4812305:0,0,0 +(1,12528:3078558,2439708:0,1703936,0 +k1,12528:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12528:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12530:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12528:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12530:3078558,4812305:0,0,0 -(1,12530:3078558,2439708:0,1703936,0 -g1,12530:29030814,2439708 -g1,12530:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12530:36151628,1915420:16384,1179648,0 +[1,12528:3078558,4812305:0,0,0 +(1,12528:3078558,2439708:0,1703936,0 +g1,12528:29030814,2439708 +g1,12528:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12528:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12530:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12528:37855564,2439708:1179648,16384,0 ) ) -k1,12530:3078556,2439708:-34777008 +k1,12528:3078556,2439708:-34777008 ) ] -[1,12530:3078558,4812305:0,0,0 -(1,12530:3078558,49800853:0,16384,2228224 -k1,12530:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12530:2537886,49800853:1179648,16384,0 +[1,12528:3078558,4812305:0,0,0 +(1,12528:3078558,49800853:0,16384,2228224 +k1,12528:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12528:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12530:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12528:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12530:3078558,4812305:0,0,0 -(1,12530:3078558,49800853:0,16384,2228224 -g1,12530:29030814,49800853 -g1,12530:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12530:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12530:37855564,49800853:1179648,16384,0 -) -) -k1,12530:3078556,49800853:-34777008 -) -] -g1,12530:6630773,4812305 -k1,12530:23588214,4812305:15762064 -g1,12530:25210885,4812305 -g1,12530:25997972,4812305 -g1,12530:28481131,4812305 -g1,12530:30046786,4812305 -) -) -] -[1,12530:6630773,45706769:25952256,40108032,0 -(1,12530:6630773,45706769:25952256,40108032,0 -(1,12530:6630773,45706769:0,0,0 -g1,12530:6630773,45706769 -) -[1,12530:6630773,45706769:25952256,40108032,0 -v1,12464:6630773,6254097:0,393216,0 -(1,12467:6630773,12858547:25952256,6997666,0 -g1,12467:6630773,12858547 -g1,12467:6237557,12858547 -r1,12530:6368629,12858547:131072,6997666,0 -g1,12467:6567858,12858547 -g1,12467:6764466,12858547 -[1,12467:6764466,12858547:25818563,6997666,0 -(1,12465:6764466,6668639:25818563,807758,219026 -(1,12464:6764466,6668639:0,807758,219026 -r1,12530:7908217,6668639:1143751,1026784,219026 -k1,12464:6764466,6668639:-1143751 -) -(1,12464:6764466,6668639:1143751,807758,219026 -) -g1,12464:8107446,6668639 -g1,12464:8435126,6668639 -g1,12464:10143649,6668639 -g1,12464:11007413,6668639 -g1,12464:13548899,6668639 -g1,12464:14805224,6668639 -g1,12464:18459511,6668639 -g1,12464:20231604,6668639 -g1,12464:21095368,6668639 -g1,12464:23330145,6668639 -k1,12464:32583029,6668639:5878435 -g1,12465:32583029,6668639 -) -(1,12465:6764466,7533719:25818563,505283,126483 -k1,12464:9887494,7533719:333160 -(1,12464:9887494,7533719:0,452978,115847 -r1,12530:15873149,7533719:5985655,568825,115847 -k1,12464:9887494,7533719:-5985655 -) -(1,12464:9887494,7533719:5985655,452978,115847 -k1,12464:9887494,7533719:3277 -h1,12464:15869872,7533719:0,411205,112570 -) -k1,12464:16206309,7533719:333160 -k1,12464:17643750,7533719:333159 -k1,12464:18724676,7533719:333160 -k1,12464:20571062,7533719:333160 -k1,12464:21555650,7533719:333160 -k1,12464:23959748,7533719:333160 -k1,12464:25994877,7533719:333159 -k1,12464:30129125,7533719:333160 -k1,12464:31078323,7533719:333160 -k1,12465:32583029,7533719:0 -) -(1,12465:6764466,8398799:25818563,513147,134348 -k1,12464:8353119,8398799:321187 -k1,12464:9357190,8398799:321186 -k1,12464:12005560,8398799:321187 -k1,12464:12993902,8398799:321186 -k1,12464:15119828,8398799:321064 -k1,12464:17555206,8398799:321187 -k1,12464:18647095,8398799:321186 -k1,12464:19383002,8398799:321064 -k1,12464:22226670,8398799:321187 -k1,12464:23175691,8398799:321186 -k1,12464:25485240,8398799:321187 -k1,12464:28470466,8398799:321187 -k1,12464:29458808,8398799:321186 -k1,12464:30368508,8398799:321187 -k1,12464:31708779,8398799:321186 -k1,12465:32583029,8398799:0 -) -(1,12465:6764466,9263879:25818563,513147,126483 -k1,12464:8640412,9263879:378448 -k1,12464:10012386,9263879:378448 -k1,12464:11050125,9263879:378447 -k1,12464:15229661,9263879:378448 -k1,12464:16139606,9263879:378448 -k1,12464:18285560,9263879:378448 -k1,12464:20231628,9263879:378447 -k1,12464:21024739,9263879:378268 -k1,12464:23485921,9263879:378448 -(1,12464:23485921,9263879:0,452978,115847 -r1,12530:25954458,9263879:2468537,568825,115847 -k1,12464:23485921,9263879:-2468537 -) -(1,12464:23485921,9263879:2468537,452978,115847 -k1,12464:23485921,9263879:3277 -h1,12464:25951181,9263879:0,411205,112570 -) -k1,12464:26332906,9263879:378448 -k1,12464:27177314,9263879:378447 -k1,12464:30111011,9263879:378448 -k1,12465:32583029,9263879:0 -) -(1,12465:6764466,10128959:25818563,513147,115847 -(1,12464:6764466,10128959:0,452978,115847 -r1,12530:14860392,10128959:8095926,568825,115847 -k1,12464:6764466,10128959:-8095926 -) -(1,12464:6764466,10128959:8095926,452978,115847 -k1,12464:6764466,10128959:3277 -h1,12464:14857115,10128959:0,411205,112570 -) -g1,12464:15059621,10128959 -g1,12464:16206501,10128959 -g1,12464:17424815,10128959 -k1,12465:32583029,10128959:12988317 -g1,12465:32583029,10128959 -) -(1,12467:6764466,10994039:25818563,513147,134348 -h1,12466:6764466,10994039:983040,0,0 -k1,12466:12246769,10994039:240733 -k1,12466:13644212,10994039:240733 -k1,12466:14989227,10994039:240733 -k1,12466:16322445,10994039:240733 -k1,12466:19258674,10994039:240733 -(1,12466:19258674,10994039:0,452978,122846 -r1,12530:23837482,10994039:4578808,575824,122846 -k1,12466:19258674,10994039:-4578808 -) -(1,12466:19258674,10994039:4578808,452978,122846 -k1,12466:19258674,10994039:3277 -h1,12466:23834205,10994039:0,411205,112570 -) -k1,12466:24078215,10994039:240733 -k1,12466:25886569,10994039:240733 -k1,12466:28707454,10994039:240733 -k1,12466:30452893,10994039:240733 -k1,12466:31379788,10994039:240733 -k1,12466:32583029,10994039:0 -) -(1,12467:6764466,11859119:25818563,513147,126483 -k1,12466:9678971,11859119:219009 -k1,12466:12742898,11859119:219009 -k1,12466:13613336,11859119:219010 -k1,12466:18149202,11859119:219009 -k1,12466:19302754,11859119:219009 -k1,12466:20540848,11859119:219009 -k1,12466:23002499,11859119:219009 -k1,12466:26504862,11859119:219009 -k1,12466:28578541,11859119:219010 -k1,12466:29606920,11859119:219009 -k1,12466:30845014,11859119:219009 -k1,12466:32583029,11859119:0 -) -(1,12467:6764466,12724199:25818563,513147,134348 -g1,12466:7622987,12724199 -g1,12466:8841301,12724199 -k1,12467:32583030,12724199:21109148 -g1,12467:32583030,12724199 -) -] -g1,12467:32583029,12858547 -) -h1,12467:6630773,12858547:0,0,0 -v1,12470:6630773,13723627:0,393216,0 -(1,12480:6630773,19679109:25952256,6348698,0 -g1,12480:6630773,19679109 -g1,12480:6237557,19679109 -r1,12530:6368629,19679109:131072,6348698,0 -g1,12480:6567858,19679109 -g1,12480:6764466,19679109 -[1,12480:6764466,19679109:25818563,6348698,0 -(1,12471:6764466,14138169:25818563,807758,219026 -(1,12470:6764466,14138169:0,807758,219026 -r1,12530:7908217,14138169:1143751,1026784,219026 -k1,12470:6764466,14138169:-1143751 -) -(1,12470:6764466,14138169:1143751,807758,219026 -) -g1,12470:8107446,14138169 -g1,12470:8435126,14138169 -g1,12470:10143649,14138169 -g1,12470:11007413,14138169 -g1,12470:12352211,14138169 -g1,12470:13349669,14138169 -g1,12470:16380053,14138169 -k1,12470:32583029,14138169:13171936 -g1,12471:32583029,14138169 -) -(1,12471:6764466,15003249:25818563,513147,134348 -k1,12470:7830484,15003249:258615 -k1,12470:9181584,15003249:258615 -k1,12470:10459285,15003249:258616 -k1,12470:13743697,15003249:258615 -k1,12470:15193757,15003249:258615 -k1,12470:17154342,15003249:258615 -k1,12470:19702786,15003249:258616 -k1,12470:22342979,15003249:258615 -k1,12470:23217632,15003249:258615 -k1,12470:23832107,15003249:258615 -k1,12470:26844546,15003249:258616 -k1,12470:28122246,15003249:258615 -k1,12470:30961013,15003249:258615 -k1,12470:32583029,15003249:0 -) -(1,12471:6764466,15868329:25818563,513147,134348 -k1,12470:8252461,15868329:181862 -k1,12470:9182090,15868329:181863 -k1,12470:11681960,15868329:181862 -k1,12470:13055267,15868329:181862 -k1,12470:14184781,15868329:181863 -k1,12470:15385728,15868329:181862 -k1,12470:17635907,15868329:181863 -k1,12470:18477061,15868329:181862 -k1,12470:20355650,15868329:181862 -k1,12470:22827341,15868329:181863 -k1,12470:23660631,15868329:181862 -k1,12470:24590259,15868329:181862 -k1,12470:26814879,15868329:181863 -k1,12470:27612779,15868329:181862 -k1,12470:28813727,15868329:181863 -k1,12470:30880404,15868329:181862 -k1,12471:32583029,15868329:0 -) -(1,12471:6764466,16733409:25818563,505283,134348 -k1,12470:8959682,16733409:233723 -k1,12470:10212491,16733409:233724 -k1,12470:13026366,16733409:233723 -k1,12470:15120656,16733409:233723 -k1,12470:16005808,16733409:233724 -k1,12470:16987297,16733409:233723 -k1,12470:20136718,16733409:233724 -k1,12470:23160309,16733409:233723 -(1,12470:23160309,16733409:0,452978,115847 -r1,12530:26332269,16733409:3171960,568825,115847 -k1,12470:23160309,16733409:-3171960 -) -(1,12470:23160309,16733409:3171960,452978,115847 -k1,12470:23160309,16733409:3277 -h1,12470:26328992,16733409:0,411205,112570 -) -k1,12470:26565992,16733409:233723 -k1,12470:28506274,16733409:233724 -k1,12470:29931442,16733409:233723 -k1,12470:32583029,16733409:0 -) -(1,12471:6764466,17598489:25818563,505283,134348 -k1,12470:8166483,17598489:245307 -k1,12470:10991941,17598489:245306 -k1,12470:11850010,17598489:245307 -k1,12470:12451176,17598489:245306 -k1,12470:14295561,17598489:245307 -k1,12470:15582889,17598489:245306 -k1,12470:18663283,17598489:245307 -k1,12470:19560017,17598489:245306 -k1,12470:21181580,17598489:245307 -k1,12470:22618331,17598489:245306 -k1,12470:24837582,17598489:245307 -k1,12470:27663040,17598489:245306 -k1,12470:31714677,17598489:245307 -k1,12470:32583029,17598489:0 -) -(1,12471:6764466,18463569:25818563,355205,7863 -k1,12471:32583028,18463569:24673648 -g1,12471:32583028,18463569 -) -v1,12473:6764466,19148424:0,393216,0 -(1,12477:6764466,19482501:25818563,727293,196608 -g1,12477:6764466,19482501 -g1,12477:6764466,19482501 -g1,12477:6567858,19482501 -(1,12477:6567858,19482501:0,727293,196608 -r1,12530:32779637,19482501:26211779,923901,196608 -k1,12477:6567857,19482501:-26211780 -) -(1,12477:6567858,19482501:26211779,727293,196608 -[1,12477:6764466,19482501:25818563,530685,0 -(1,12475:6764466,19376255:25818563,424439,106246 -(1,12474:6764466,19376255:0,0,0 -g1,12474:6764466,19376255 -g1,12474:6764466,19376255 -g1,12474:6436786,19376255 -(1,12474:6436786,19376255:0,0,0 -) -g1,12474:6764466,19376255 -) -k1,12475:6764466,19376255:0 -h1,12475:13735499,19376255:0,0,0 -k1,12475:32583029,19376255:18847530 -g1,12475:32583029,19376255 -) -] -) -g1,12477:32583029,19482501 -g1,12477:6764466,19482501 -g1,12477:6764466,19482501 -g1,12477:32583029,19482501 -g1,12477:32583029,19482501 -) -h1,12477:6764466,19679109:0,0,0 -] -g1,12480:32583029,19679109 -) -h1,12480:6630773,19679109:0,0,0 -v1,12483:6630773,20544189:0,393216,0 -(1,12495:6630773,25559014:25952256,5408041,0 -g1,12495:6630773,25559014 -g1,12495:6237557,25559014 -r1,12530:6368629,25559014:131072,5408041,0 -g1,12495:6567858,25559014 -g1,12495:6764466,25559014 -[1,12495:6764466,25559014:25818563,5408041,0 -(1,12484:6764466,20958731:25818563,807758,219026 -(1,12483:6764466,20958731:0,807758,219026 -r1,12530:7908217,20958731:1143751,1026784,219026 -k1,12483:6764466,20958731:-1143751 -) -(1,12483:6764466,20958731:1143751,807758,219026 -) -g1,12483:8107446,20958731 -g1,12483:8435126,20958731 -g1,12483:10143649,20958731 -g1,12483:11007413,20958731 -g1,12483:12508187,20958731 -g1,12483:13764512,20958731 -g1,12483:17051142,20958731 -g1,12483:20081526,20958731 -g1,12483:22777021,20958731 -g1,12483:23658480,20958731 -g1,12483:24227332,20958731 -k1,12483:32583029,20958731:5324657 -g1,12484:32583029,20958731 -) -(1,12484:6764466,21823811:25818563,513147,134348 -k1,12483:10306951,21823811:752617 -(1,12483:10306951,21823811:0,452978,122846 -r1,12530:15237471,21823811:4930520,575824,122846 -k1,12483:10306951,21823811:-4930520 -) -(1,12483:10306951,21823811:4930520,452978,122846 -k1,12483:10306951,21823811:3277 -h1,12483:15234194,21823811:0,411205,112570 -) -k1,12483:15990089,21823811:752618 -k1,12483:19083652,21823811:752617 -k1,12483:20855354,21823811:752617 -k1,12483:23941708,21823811:752617 -k1,12483:25380488,21823811:752618 -k1,12483:26903808,21823811:752617 -k1,12483:29615951,21823811:752617 -k1,12483:31027860,21823811:752617 -k1,12484:32583029,21823811:0 -) -(1,12484:6764466,22688891:25818563,513147,134348 -(1,12483:6764466,22688891:0,452978,122846 -r1,12530:12750121,22688891:5985655,575824,122846 -k1,12483:6764466,22688891:-5985655 -) -(1,12483:6764466,22688891:5985655,452978,122846 -k1,12483:6764466,22688891:3277 -h1,12483:12746844,22688891:0,411205,112570 -) -k1,12483:13124044,22688891:373923 -k1,12483:14782473,22688891:373923 -k1,12483:16260678,22688891:373923 -k1,12483:17700872,22688891:373923 -k1,12483:19450397,22688891:373924 -k1,12483:20572086,22688891:373923 -k1,12483:23469800,22688891:373923 -k1,12483:24915892,22688891:373923 -k1,12483:26575631,22688891:373923 -k1,12483:31128785,22688891:373923 -k1,12484:32583029,22688891:0 -) -(1,12484:6764466,23553971:25818563,513147,134348 -g1,12483:8970407,23553971 -g1,12483:10412199,23553971 -g1,12483:11262856,23553971 -g1,12483:12653530,23553971 -g1,12483:13800410,23553971 -g1,12483:14355499,23553971 -g1,12483:17646717,23553971 -g1,12483:20179683,23553971 -k1,12484:32583029,23553971:8420068 -g1,12484:32583029,23553971 -) -v1,12486:6764466,24238826:0,393216,0 -(1,12493:6764466,25362406:25818563,1516796,196608 -g1,12493:6764466,25362406 -g1,12493:6764466,25362406 -g1,12493:6567858,25362406 -(1,12493:6567858,25362406:0,1516796,196608 -r1,12530:32779637,25362406:26211779,1713404,196608 -k1,12493:6567857,25362406:-26211780 -) -(1,12493:6567858,25362406:26211779,1516796,196608 -[1,12493:6764466,25362406:25818563,1320188,0 -(1,12488:6764466,24466657:25818563,424439,112852 -(1,12487:6764466,24466657:0,0,0 -g1,12487:6764466,24466657 -g1,12487:6764466,24466657 -g1,12487:6436786,24466657 -(1,12487:6436786,24466657:0,0,0 -) -g1,12487:6764466,24466657 -) -k1,12488:6764466,24466657:0 -h1,12488:17386992,24466657:0,0,0 -k1,12488:32583029,24466657:15196037 -g1,12488:32583029,24466657 -) -(1,12492:6764466,25282584:25818563,424439,79822 -(1,12490:6764466,25282584:0,0,0 -g1,12490:6764466,25282584 -g1,12490:6764466,25282584 -g1,12490:6436786,25282584 -(1,12490:6436786,25282584:0,0,0 -) -g1,12490:6764466,25282584 -) -g1,12492:7760328,25282584 -g1,12492:9088144,25282584 -h1,12492:12075730,25282584:0,0,0 -k1,12492:32583030,25282584:20507300 -g1,12492:32583030,25282584 -) -] -) -g1,12493:32583029,25362406 -g1,12493:6764466,25362406 -g1,12493:6764466,25362406 -g1,12493:32583029,25362406 -g1,12493:32583029,25362406 -) -h1,12493:6764466,25559014:0,0,0 -] -g1,12495:32583029,25559014 -) -h1,12495:6630773,25559014:0,0,0 -(1,12498:6630773,26424094:25952256,505283,134348 -h1,12497:6630773,26424094:983040,0,0 -k1,12497:8671504,26424094:239802 -k1,12497:11821760,26424094:239802 -k1,12497:13053123,26424094:239803 -k1,12497:17022579,26424094:239802 -k1,12497:18023909,26424094:239802 -k1,12497:22270582,26424094:239802 -k1,12497:25139688,26424094:239802 -k1,12497:26759678,26424094:239802 -k1,12497:29179864,26424094:239803 -k1,12497:30167432,26424094:239802 -k1,12497:31966991,26424094:239802 -k1,12497:32583029,26424094:0 -) -(1,12498:6630773,27289174:25952256,513147,134348 -k1,12497:9536221,27289174:239443 -k1,12497:10427092,27289174:239443 -k1,12497:12448460,27289174:239444 -k1,12497:13102706,27289174:239403 -k1,12497:14947781,27289174:239443 -k1,12497:16885262,27289174:239443 -k1,12497:18504893,27289174:239443 -k1,12497:19735897,27289174:239444 -k1,12497:21488566,27289174:239443 -k1,12497:22379437,27289174:239443 -k1,12497:24642632,27289174:239443 -k1,12497:27055250,27289174:239444 -k1,12497:27977578,27289174:239443 -k1,12497:29824619,27289174:239443 -k1,12497:32583029,27289174:0 -) -(1,12498:6630773,28154254:25952256,513147,134348 -k1,12497:7520720,28154254:273909 -k1,12497:11897837,28154254:273908 -k1,12497:12586514,28154254:273834 -k1,12497:15555919,28154254:273909 -(1,12497:15555919,28154254:0,452978,115847 -r1,12530:19079591,28154254:3523672,568825,115847 -k1,12497:15555919,28154254:-3523672 -) -(1,12497:15555919,28154254:3523672,452978,115847 -k1,12497:15555919,28154254:3277 -h1,12497:19076314,28154254:0,411205,112570 -) -k1,12497:19353499,28154254:273908 -k1,12497:21325446,28154254:273909 -k1,12497:23467131,28154254:273909 -k1,12497:25134990,28154254:273908 -k1,12497:26427984,28154254:273909 -k1,12497:28439908,28154254:273909 -k1,12497:29373108,28154254:273908 -k1,12497:30002877,28154254:273909 -k1,12497:32583029,28154254:0 -) -(1,12498:6630773,29019334:25952256,513147,134348 -k1,12497:7544798,29019334:227863 -k1,12497:8561060,29019334:227864 -k1,12497:11861251,29019334:227863 -k1,12497:14849491,29019334:227864 -k1,12497:16096439,29019334:227863 -k1,12497:19303569,29019334:227863 -k1,12497:20815939,29019334:227864 -k1,12497:23224185,29019334:227863 -k1,12497:24199814,29019334:227863 -k1,12497:25987435,29019334:227864 -k1,12497:27162949,29019334:227863 -k1,12497:28409898,29019334:227864 -k1,12497:31391584,29019334:227863 -k1,12497:32583029,29019334:0 -) -(1,12498:6630773,29884414:25952256,513147,134348 -k1,12497:9305082,29884414:240301 -k1,12497:10316087,29884414:240302 -k1,12497:12887504,29884414:240301 -k1,12497:16373803,29884414:240301 -k1,12497:17633189,29884414:240301 -k1,12497:20852758,29884414:240302 -k1,12497:21744487,29884414:240301 -k1,12497:23123804,29884414:240301 -k1,12497:24311757,29884414:240302 -k1,12497:25571143,29884414:240301 -k1,12497:28145181,29884414:240301 -k1,12497:29052638,29884414:240301 -k1,12497:29707741,29884414:240260 -k1,12497:30564081,29884414:240302 -k1,12497:31896867,29884414:240301 -k1,12497:32583029,29884414:0 -) -(1,12498:6630773,30749494:25952256,505283,7863 -g1,12497:8905527,30749494 -k1,12498:32583029,30749494:21756642 -g1,12498:32583029,30749494 -) -v1,12500:6630773,31434349:0,393216,0 -(1,12526:6630773,45510161:25952256,14469028,196608 -g1,12526:6630773,45510161 -g1,12526:6630773,45510161 -g1,12526:6434165,45510161 -(1,12526:6434165,45510161:0,14469028,196608 -r1,12530:32779637,45510161:26345472,14665636,196608 -k1,12526:6434165,45510161:-26345472 -) -(1,12526:6434165,45510161:26345472,14469028,196608 -[1,12526:6630773,45510161:25952256,14272420,0 -(1,12502:6630773,31662180:25952256,424439,79822 -(1,12501:6630773,31662180:0,0,0 -g1,12501:6630773,31662180 -g1,12501:6630773,31662180 -g1,12501:6303093,31662180 -(1,12501:6303093,31662180:0,0,0 -) -g1,12501:6630773,31662180 -) -k1,12502:6630773,31662180:0 -h1,12502:9950312,31662180:0,0,0 -k1,12502:32583028,31662180:22632716 -g1,12502:32583028,31662180 -) -(1,12525:6630773,32385064:25952256,424439,106246 -(1,12504:6630773,32385064:0,0,0 -g1,12504:6630773,32385064 -g1,12504:6630773,32385064 -g1,12504:6303093,32385064 -(1,12504:6303093,32385064:0,0,0 -) -g1,12504:6630773,32385064 -) -g1,12525:7626635,32385064 -g1,12525:8622497,32385064 -g1,12525:10282267,32385064 -g1,12525:10946175,32385064 -g1,12525:11942037,32385064 -g1,12525:16257438,32385064 -h1,12525:17585254,32385064:0,0,0 -k1,12525:32583029,32385064:14997775 -g1,12525:32583029,32385064 -) -(1,12525:6630773,33069919:25952256,398014,0 -h1,12525:6630773,33069919:0,0,0 -h1,12525:7294681,33069919:0,0,0 -k1,12525:32583029,33069919:25288348 -g1,12525:32583029,33069919 -) -(1,12525:6630773,33754774:25952256,431045,112852 -h1,12525:6630773,33754774:0,0,0 -g1,12525:7626635,33754774 -g1,12525:7958589,33754774 -g1,12525:8290543,33754774 -g1,12525:8954451,33754774 -g1,12525:10614221,33754774 -g1,12525:12273991,33754774 -g1,12525:14929623,33754774 -g1,12525:16257439,33754774 -g1,12525:16921347,33754774 -g1,12525:19908932,33754774 -g1,12525:21236748,33754774 -g1,12525:25220195,33754774 -g1,12525:26548011,33754774 -h1,12525:30199504,33754774:0,0,0 -k1,12525:32583029,33754774:2383525 -g1,12525:32583029,33754774 -) -(1,12525:6630773,34439629:25952256,431045,112852 -h1,12525:6630773,34439629:0,0,0 -g1,12525:7626635,34439629 -g1,12525:7958589,34439629 -g1,12525:8290543,34439629 -g1,12525:12273990,34439629 -g1,12525:12937898,34439629 -g1,12525:16589391,34439629 -g1,12525:17917207,34439629 -g1,12525:21900654,34439629 -g1,12525:25552147,34439629 -g1,12525:28207779,34439629 -h1,12525:30863410,34439629:0,0,0 -k1,12525:32583029,34439629:1719619 -g1,12525:32583029,34439629 -) -(1,12525:6630773,35124484:25952256,424439,112852 -h1,12525:6630773,35124484:0,0,0 -g1,12525:7626635,35124484 -g1,12525:7958589,35124484 -g1,12525:8290543,35124484 -k1,12525:8290543,35124484:0 -h1,12525:17917207,35124484:0,0,0 -k1,12525:32583029,35124484:14665822 -g1,12525:32583029,35124484 -) -(1,12525:6630773,35809339:25952256,398014,0 -h1,12525:6630773,35809339:0,0,0 -h1,12525:7294681,35809339:0,0,0 -k1,12525:32583029,35809339:25288348 -g1,12525:32583029,35809339 -) -(1,12525:6630773,36494194:25952256,431045,106246 -h1,12525:6630773,36494194:0,0,0 -g1,12525:7626635,36494194 -g1,12525:8290543,36494194 -g1,12525:10614221,36494194 -g1,12525:12605945,36494194 -g1,12525:13933761,36494194 -g1,12525:15925485,36494194 -g1,12525:17917209,36494194 -h1,12525:18581117,36494194:0,0,0 -k1,12525:32583029,36494194:14001912 -g1,12525:32583029,36494194 -) -(1,12525:6630773,37179049:25952256,398014,0 -h1,12525:6630773,37179049:0,0,0 -h1,12525:7294681,37179049:0,0,0 -k1,12525:32583029,37179049:25288348 -g1,12525:32583029,37179049 -) -(1,12525:6630773,37863904:25952256,424439,112852 -h1,12525:6630773,37863904:0,0,0 -g1,12525:7626635,37863904 -g1,12525:7958589,37863904 -g1,12525:8290543,37863904 -k1,12525:8290543,37863904:0 -h1,12525:11278128,37863904:0,0,0 -k1,12525:32583028,37863904:21304900 -g1,12525:32583028,37863904 -) -(1,12525:6630773,38548759:25952256,431045,112852 -h1,12525:6630773,38548759:0,0,0 -g1,12525:7626635,38548759 -g1,12525:7958589,38548759 -g1,12525:8290543,38548759 -g1,12525:8622497,38548759 -g1,12525:8954451,38548759 -g1,12525:10946175,38548759 -g1,12525:11610083,38548759 -g1,12525:12937899,38548759 -g1,12525:13601807,38548759 -g1,12525:16589392,38548759 -g1,12525:17917208,38548759 -g1,12525:21900655,38548759 -g1,12525:23228471,38548759 -g1,12525:27211918,38548759 -k1,12525:27211918,38548759:0 -h1,12525:30863411,38548759:0,0,0 -k1,12525:32583029,38548759:1719618 -g1,12525:32583029,38548759 -) -(1,12525:6630773,39233614:25952256,424439,86428 -h1,12525:6630773,39233614:0,0,0 -g1,12525:7626635,39233614 -g1,12525:7958589,39233614 -g1,12525:8290543,39233614 -g1,12525:8622497,39233614 -g1,12525:8954451,39233614 -g1,12525:11278129,39233614 -g1,12525:11942037,39233614 -g1,12525:13269853,39233614 -g1,12525:14929623,39233614 -k1,12525:14929623,39233614:0 -h1,12525:17253301,39233614:0,0,0 -k1,12525:32583029,39233614:15329728 -g1,12525:32583029,39233614 -) -(1,12525:6630773,39918469:25952256,431045,112852 -h1,12525:6630773,39918469:0,0,0 -g1,12525:7626635,39918469 -g1,12525:7958589,39918469 -g1,12525:8290543,39918469 -g1,12525:8622497,39918469 -g1,12525:8954451,39918469 -g1,12525:13269852,39918469 -g1,12525:13933760,39918469 -g1,12525:14929622,39918469 -g1,12525:18581115,39918469 -g1,12525:19908931,39918469 -g1,12525:23892378,39918469 -k1,12525:23892378,39918469:0 -h1,12525:27543871,39918469:0,0,0 -k1,12525:32583029,39918469:5039158 -g1,12525:32583029,39918469 -) -(1,12525:6630773,40603324:25952256,424439,86428 -h1,12525:6630773,40603324:0,0,0 -g1,12525:7626635,40603324 -g1,12525:7958589,40603324 -g1,12525:8290543,40603324 -g1,12525:8622497,40603324 -g1,12525:8954451,40603324 -g1,12525:11610083,40603324 -g1,12525:12273991,40603324 -g1,12525:15261577,40603324 -k1,12525:15261577,40603324:0 -h1,12525:18249162,40603324:0,0,0 -k1,12525:32583029,40603324:14333867 -g1,12525:32583029,40603324 -) -(1,12525:6630773,41288179:25952256,424439,106246 -h1,12525:6630773,41288179:0,0,0 -g1,12525:7626635,41288179 -g1,12525:7958589,41288179 -g1,12525:8290543,41288179 -g1,12525:8622497,41288179 -g1,12525:8954451,41288179 -g1,12525:10614221,41288179 -g1,12525:11278129,41288179 -k1,12525:11278129,41288179:0 -h1,12525:13601807,41288179:0,0,0 -k1,12525:32583029,41288179:18981222 -g1,12525:32583029,41288179 -) -(1,12525:6630773,41973034:25952256,424439,112852 -h1,12525:6630773,41973034:0,0,0 -g1,12525:7626635,41973034 -g1,12525:7958589,41973034 -g1,12525:8290543,41973034 -g1,12525:8622497,41973034 -g1,12525:8954451,41973034 -g1,12525:10282267,41973034 -g1,12525:10946175,41973034 -k1,12525:10946175,41973034:0 -h1,12525:20572839,41973034:0,0,0 -k1,12525:32583029,41973034:12010190 -g1,12525:32583029,41973034 -) -(1,12525:6630773,42657889:25952256,424439,79822 -h1,12525:6630773,42657889:0,0,0 -g1,12525:7626635,42657889 -g1,12525:7958589,42657889 -g1,12525:8290543,42657889 -h1,12525:8622497,42657889:0,0,0 -k1,12525:32583029,42657889:23960532 -g1,12525:32583029,42657889 -) -(1,12525:6630773,43342744:25952256,398014,0 -h1,12525:6630773,43342744:0,0,0 -h1,12525:7294681,43342744:0,0,0 -k1,12525:32583029,43342744:25288348 -g1,12525:32583029,43342744 -) -(1,12525:6630773,44027599:25952256,431045,112852 -h1,12525:6630773,44027599:0,0,0 -g1,12525:7626635,44027599 -g1,12525:8622497,44027599 -g1,12525:10282267,44027599 -g1,12525:13269852,44027599 -g1,12525:13933760,44027599 -g1,12525:15261576,44027599 -g1,12525:16257438,44027599 -g1,12525:17917208,44027599 -g1,12525:19245024,44027599 -g1,12525:21568702,44027599 -g1,12525:22564564,44027599 -g1,12525:25552149,44027599 -g1,12525:26548011,44027599 -g1,12525:28871689,44027599 -g1,12525:30531459,44027599 -h1,12525:31195367,44027599:0,0,0 -k1,12525:32583029,44027599:1387662 -g1,12525:32583029,44027599 -) -(1,12525:6630773,44712454:25952256,431045,112852 -h1,12525:6630773,44712454:0,0,0 -g1,12525:7626635,44712454 -g1,12525:9286405,44712454 -g1,12525:11278129,44712454 -g1,12525:12273991,44712454 -g1,12525:13601807,44712454 -g1,12525:15261577,44712454 -g1,12525:18581116,44712454 -g1,12525:19908932,44712454 -g1,12525:21568702,44712454 -g1,12525:28871688,44712454 -h1,12525:29867550,44712454:0,0,0 -k1,12525:32583029,44712454:2715479 -g1,12525:32583029,44712454 -) -(1,12525:6630773,45397309:25952256,424439,112852 -h1,12525:6630773,45397309:0,0,0 -g1,12525:7626635,45397309 -g1,12525:9950313,45397309 -g1,12525:10614221,45397309 -h1,12525:13601806,45397309:0,0,0 -k1,12525:32583030,45397309:18981224 -g1,12525:32583030,45397309 -) -] -) -g1,12526:32583029,45510161 -g1,12526:6630773,45510161 -g1,12526:6630773,45510161 -g1,12526:32583029,45510161 -g1,12526:32583029,45510161 -) -h1,12526:6630773,45706769:0,0,0 -] -(1,12530:32583029,45706769:0,0,0 -g1,12530:32583029,45706769 -) -) -] -(1,12530:6630773,47279633:25952256,0,0 -h1,12530:6630773,47279633:25952256,0,0 -) -] -(1,12530:4262630,4025873:0,0,0 -[1,12530:-473656,4025873:0,0,0 -(1,12530:-473656,-710413:0,0,0 -(1,12530:-473656,-710413:0,0,0 -g1,12530:-473656,-710413 -) -g1,12530:-473656,-710413 +[1,12528:3078558,4812305:0,0,0 +(1,12528:3078558,49800853:0,16384,2228224 +g1,12528:29030814,49800853 +g1,12528:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12528:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12528:37855564,49800853:1179648,16384,0 +) +) +k1,12528:3078556,49800853:-34777008 +) +] +g1,12528:6630773,4812305 +k1,12528:23588214,4812305:15762064 +g1,12528:25210885,4812305 +g1,12528:25997972,4812305 +g1,12528:28481131,4812305 +g1,12528:30046786,4812305 +) +) +] +[1,12528:6630773,45706769:25952256,40108032,0 +(1,12528:6630773,45706769:25952256,40108032,0 +(1,12528:6630773,45706769:0,0,0 +g1,12528:6630773,45706769 +) +[1,12528:6630773,45706769:25952256,40108032,0 +v1,12462:6630773,6254097:0,393216,0 +(1,12465:6630773,12858547:25952256,6997666,0 +g1,12465:6630773,12858547 +g1,12465:6237557,12858547 +r1,12528:6368629,12858547:131072,6997666,0 +g1,12465:6567858,12858547 +g1,12465:6764466,12858547 +[1,12465:6764466,12858547:25818563,6997666,0 +(1,12463:6764466,6668639:25818563,807758,219026 +(1,12462:6764466,6668639:0,807758,219026 +r1,12528:7908217,6668639:1143751,1026784,219026 +k1,12462:6764466,6668639:-1143751 +) +(1,12462:6764466,6668639:1143751,807758,219026 +) +g1,12462:8107446,6668639 +g1,12462:8435126,6668639 +g1,12462:10143649,6668639 +g1,12462:11007413,6668639 +g1,12462:13548899,6668639 +g1,12462:14805224,6668639 +g1,12462:18459511,6668639 +g1,12462:20231604,6668639 +g1,12462:21095368,6668639 +g1,12462:23330145,6668639 +k1,12462:32583029,6668639:5878435 +g1,12463:32583029,6668639 +) +(1,12463:6764466,7533719:25818563,505283,126483 +k1,12462:9887494,7533719:333160 +(1,12462:9887494,7533719:0,452978,115847 +r1,12528:15873149,7533719:5985655,568825,115847 +k1,12462:9887494,7533719:-5985655 +) +(1,12462:9887494,7533719:5985655,452978,115847 +k1,12462:9887494,7533719:3277 +h1,12462:15869872,7533719:0,411205,112570 +) +k1,12462:16206309,7533719:333160 +k1,12462:17643750,7533719:333159 +k1,12462:18724676,7533719:333160 +k1,12462:20571062,7533719:333160 +k1,12462:21555650,7533719:333160 +k1,12462:23959748,7533719:333160 +k1,12462:25994877,7533719:333159 +k1,12462:30129125,7533719:333160 +k1,12462:31078323,7533719:333160 +k1,12463:32583029,7533719:0 +) +(1,12463:6764466,8398799:25818563,513147,134348 +k1,12462:8353119,8398799:321187 +k1,12462:9357190,8398799:321186 +k1,12462:12005560,8398799:321187 +k1,12462:12993902,8398799:321186 +k1,12462:15119828,8398799:321064 +k1,12462:17555206,8398799:321187 +k1,12462:18647095,8398799:321186 +k1,12462:19383002,8398799:321064 +k1,12462:22226670,8398799:321187 +k1,12462:23175691,8398799:321186 +k1,12462:25485240,8398799:321187 +k1,12462:28470466,8398799:321187 +k1,12462:29458808,8398799:321186 +k1,12462:30368508,8398799:321187 +k1,12462:31708779,8398799:321186 +k1,12463:32583029,8398799:0 +) +(1,12463:6764466,9263879:25818563,513147,126483 +k1,12462:8640412,9263879:378448 +k1,12462:10012386,9263879:378448 +k1,12462:11050125,9263879:378447 +k1,12462:15229661,9263879:378448 +k1,12462:16139606,9263879:378448 +k1,12462:18285560,9263879:378448 +k1,12462:20231628,9263879:378447 +k1,12462:21024739,9263879:378268 +k1,12462:23485921,9263879:378448 +(1,12462:23485921,9263879:0,452978,115847 +r1,12528:25954458,9263879:2468537,568825,115847 +k1,12462:23485921,9263879:-2468537 +) +(1,12462:23485921,9263879:2468537,452978,115847 +k1,12462:23485921,9263879:3277 +h1,12462:25951181,9263879:0,411205,112570 +) +k1,12462:26332906,9263879:378448 +k1,12462:27177314,9263879:378447 +k1,12462:30111011,9263879:378448 +k1,12463:32583029,9263879:0 +) +(1,12463:6764466,10128959:25818563,513147,115847 +(1,12462:6764466,10128959:0,452978,115847 +r1,12528:14860392,10128959:8095926,568825,115847 +k1,12462:6764466,10128959:-8095926 +) +(1,12462:6764466,10128959:8095926,452978,115847 +k1,12462:6764466,10128959:3277 +h1,12462:14857115,10128959:0,411205,112570 +) +g1,12462:15059621,10128959 +g1,12462:16206501,10128959 +g1,12462:17424815,10128959 +k1,12463:32583029,10128959:12988317 +g1,12463:32583029,10128959 +) +(1,12465:6764466,10994039:25818563,513147,134348 +h1,12464:6764466,10994039:983040,0,0 +k1,12464:12246769,10994039:240733 +k1,12464:13644212,10994039:240733 +k1,12464:14989227,10994039:240733 +k1,12464:16322445,10994039:240733 +k1,12464:19258674,10994039:240733 +(1,12464:19258674,10994039:0,452978,122846 +r1,12528:23837482,10994039:4578808,575824,122846 +k1,12464:19258674,10994039:-4578808 +) +(1,12464:19258674,10994039:4578808,452978,122846 +k1,12464:19258674,10994039:3277 +h1,12464:23834205,10994039:0,411205,112570 +) +k1,12464:24078215,10994039:240733 +k1,12464:25886569,10994039:240733 +k1,12464:28707454,10994039:240733 +k1,12464:30452893,10994039:240733 +k1,12464:31379788,10994039:240733 +k1,12464:32583029,10994039:0 +) +(1,12465:6764466,11859119:25818563,513147,126483 +k1,12464:9678971,11859119:219009 +k1,12464:12742898,11859119:219009 +k1,12464:13613336,11859119:219010 +k1,12464:18149202,11859119:219009 +k1,12464:19302754,11859119:219009 +k1,12464:20540848,11859119:219009 +k1,12464:23002499,11859119:219009 +k1,12464:26504862,11859119:219009 +k1,12464:28578541,11859119:219010 +k1,12464:29606920,11859119:219009 +k1,12464:30845014,11859119:219009 +k1,12464:32583029,11859119:0 +) +(1,12465:6764466,12724199:25818563,513147,134348 +g1,12464:7622987,12724199 +g1,12464:8841301,12724199 +k1,12465:32583030,12724199:21109148 +g1,12465:32583030,12724199 +) +] +g1,12465:32583029,12858547 +) +h1,12465:6630773,12858547:0,0,0 +v1,12468:6630773,13723627:0,393216,0 +(1,12478:6630773,19679109:25952256,6348698,0 +g1,12478:6630773,19679109 +g1,12478:6237557,19679109 +r1,12528:6368629,19679109:131072,6348698,0 +g1,12478:6567858,19679109 +g1,12478:6764466,19679109 +[1,12478:6764466,19679109:25818563,6348698,0 +(1,12469:6764466,14138169:25818563,807758,219026 +(1,12468:6764466,14138169:0,807758,219026 +r1,12528:7908217,14138169:1143751,1026784,219026 +k1,12468:6764466,14138169:-1143751 +) +(1,12468:6764466,14138169:1143751,807758,219026 +) +g1,12468:8107446,14138169 +g1,12468:8435126,14138169 +g1,12468:10143649,14138169 +g1,12468:11007413,14138169 +g1,12468:12352211,14138169 +g1,12468:13349669,14138169 +g1,12468:16380053,14138169 +k1,12468:32583029,14138169:13171936 +g1,12469:32583029,14138169 +) +(1,12469:6764466,15003249:25818563,513147,134348 +k1,12468:7830484,15003249:258615 +k1,12468:9181584,15003249:258615 +k1,12468:10459285,15003249:258616 +k1,12468:13743697,15003249:258615 +k1,12468:15193757,15003249:258615 +k1,12468:17154342,15003249:258615 +k1,12468:19702786,15003249:258616 +k1,12468:22342979,15003249:258615 +k1,12468:23217632,15003249:258615 +k1,12468:23832107,15003249:258615 +k1,12468:26844546,15003249:258616 +k1,12468:28122246,15003249:258615 +k1,12468:30961013,15003249:258615 +k1,12468:32583029,15003249:0 +) +(1,12469:6764466,15868329:25818563,513147,134348 +k1,12468:8252461,15868329:181862 +k1,12468:9182090,15868329:181863 +k1,12468:11681960,15868329:181862 +k1,12468:13055267,15868329:181862 +k1,12468:14184781,15868329:181863 +k1,12468:15385728,15868329:181862 +k1,12468:17635907,15868329:181863 +k1,12468:18477061,15868329:181862 +k1,12468:20355650,15868329:181862 +k1,12468:22827341,15868329:181863 +k1,12468:23660631,15868329:181862 +k1,12468:24590259,15868329:181862 +k1,12468:26814879,15868329:181863 +k1,12468:27612779,15868329:181862 +k1,12468:28813727,15868329:181863 +k1,12468:30880404,15868329:181862 +k1,12469:32583029,15868329:0 +) +(1,12469:6764466,16733409:25818563,505283,134348 +k1,12468:8959682,16733409:233723 +k1,12468:10212491,16733409:233724 +k1,12468:13026366,16733409:233723 +k1,12468:15120656,16733409:233723 +k1,12468:16005808,16733409:233724 +k1,12468:16987297,16733409:233723 +k1,12468:20136718,16733409:233724 +k1,12468:23160309,16733409:233723 +(1,12468:23160309,16733409:0,452978,115847 +r1,12528:26332269,16733409:3171960,568825,115847 +k1,12468:23160309,16733409:-3171960 +) +(1,12468:23160309,16733409:3171960,452978,115847 +k1,12468:23160309,16733409:3277 +h1,12468:26328992,16733409:0,411205,112570 +) +k1,12468:26565992,16733409:233723 +k1,12468:28506274,16733409:233724 +k1,12468:29931442,16733409:233723 +k1,12468:32583029,16733409:0 +) +(1,12469:6764466,17598489:25818563,505283,134348 +k1,12468:8166483,17598489:245307 +k1,12468:10991941,17598489:245306 +k1,12468:11850010,17598489:245307 +k1,12468:12451176,17598489:245306 +k1,12468:14295561,17598489:245307 +k1,12468:15582889,17598489:245306 +k1,12468:18663283,17598489:245307 +k1,12468:19560017,17598489:245306 +k1,12468:21181580,17598489:245307 +k1,12468:22618331,17598489:245306 +k1,12468:24837582,17598489:245307 +k1,12468:27663040,17598489:245306 +k1,12468:31714677,17598489:245307 +k1,12468:32583029,17598489:0 +) +(1,12469:6764466,18463569:25818563,355205,7863 +k1,12469:32583028,18463569:24673648 +g1,12469:32583028,18463569 +) +v1,12471:6764466,19148424:0,393216,0 +(1,12475:6764466,19482501:25818563,727293,196608 +g1,12475:6764466,19482501 +g1,12475:6764466,19482501 +g1,12475:6567858,19482501 +(1,12475:6567858,19482501:0,727293,196608 +r1,12528:32779637,19482501:26211779,923901,196608 +k1,12475:6567857,19482501:-26211780 +) +(1,12475:6567858,19482501:26211779,727293,196608 +[1,12475:6764466,19482501:25818563,530685,0 +(1,12473:6764466,19376255:25818563,424439,106246 +(1,12472:6764466,19376255:0,0,0 +g1,12472:6764466,19376255 +g1,12472:6764466,19376255 +g1,12472:6436786,19376255 +(1,12472:6436786,19376255:0,0,0 +) +g1,12472:6764466,19376255 +) +k1,12473:6764466,19376255:0 +h1,12473:13735499,19376255:0,0,0 +k1,12473:32583029,19376255:18847530 +g1,12473:32583029,19376255 +) +] +) +g1,12475:32583029,19482501 +g1,12475:6764466,19482501 +g1,12475:6764466,19482501 +g1,12475:32583029,19482501 +g1,12475:32583029,19482501 +) +h1,12475:6764466,19679109:0,0,0 +] +g1,12478:32583029,19679109 +) +h1,12478:6630773,19679109:0,0,0 +v1,12481:6630773,20544189:0,393216,0 +(1,12493:6630773,25559014:25952256,5408041,0 +g1,12493:6630773,25559014 +g1,12493:6237557,25559014 +r1,12528:6368629,25559014:131072,5408041,0 +g1,12493:6567858,25559014 +g1,12493:6764466,25559014 +[1,12493:6764466,25559014:25818563,5408041,0 +(1,12482:6764466,20958731:25818563,807758,219026 +(1,12481:6764466,20958731:0,807758,219026 +r1,12528:7908217,20958731:1143751,1026784,219026 +k1,12481:6764466,20958731:-1143751 +) +(1,12481:6764466,20958731:1143751,807758,219026 +) +g1,12481:8107446,20958731 +g1,12481:8435126,20958731 +g1,12481:10143649,20958731 +g1,12481:11007413,20958731 +g1,12481:12508187,20958731 +g1,12481:13764512,20958731 +g1,12481:17051142,20958731 +g1,12481:20081526,20958731 +g1,12481:22777021,20958731 +g1,12481:23658480,20958731 +g1,12481:24227332,20958731 +k1,12481:32583029,20958731:5324657 +g1,12482:32583029,20958731 +) +(1,12482:6764466,21823811:25818563,513147,134348 +k1,12481:10306951,21823811:752617 +(1,12481:10306951,21823811:0,452978,122846 +r1,12528:15237471,21823811:4930520,575824,122846 +k1,12481:10306951,21823811:-4930520 +) +(1,12481:10306951,21823811:4930520,452978,122846 +k1,12481:10306951,21823811:3277 +h1,12481:15234194,21823811:0,411205,112570 +) +k1,12481:15990089,21823811:752618 +k1,12481:19083652,21823811:752617 +k1,12481:20855354,21823811:752617 +k1,12481:23941708,21823811:752617 +k1,12481:25380488,21823811:752618 +k1,12481:26903808,21823811:752617 +k1,12481:29615951,21823811:752617 +k1,12481:31027860,21823811:752617 +k1,12482:32583029,21823811:0 +) +(1,12482:6764466,22688891:25818563,513147,134348 +(1,12481:6764466,22688891:0,452978,122846 +r1,12528:12750121,22688891:5985655,575824,122846 +k1,12481:6764466,22688891:-5985655 +) +(1,12481:6764466,22688891:5985655,452978,122846 +k1,12481:6764466,22688891:3277 +h1,12481:12746844,22688891:0,411205,112570 +) +k1,12481:13124044,22688891:373923 +k1,12481:14782473,22688891:373923 +k1,12481:16260678,22688891:373923 +k1,12481:17700872,22688891:373923 +k1,12481:19450397,22688891:373924 +k1,12481:20572086,22688891:373923 +k1,12481:23469800,22688891:373923 +k1,12481:24915892,22688891:373923 +k1,12481:26575631,22688891:373923 +k1,12481:31128785,22688891:373923 +k1,12482:32583029,22688891:0 +) +(1,12482:6764466,23553971:25818563,513147,134348 +g1,12481:8970407,23553971 +g1,12481:10412199,23553971 +g1,12481:11262856,23553971 +g1,12481:12653530,23553971 +g1,12481:13800410,23553971 +g1,12481:14355499,23553971 +g1,12481:17646717,23553971 +g1,12481:20179683,23553971 +k1,12482:32583029,23553971:8420068 +g1,12482:32583029,23553971 +) +v1,12484:6764466,24238826:0,393216,0 +(1,12491:6764466,25362406:25818563,1516796,196608 +g1,12491:6764466,25362406 +g1,12491:6764466,25362406 +g1,12491:6567858,25362406 +(1,12491:6567858,25362406:0,1516796,196608 +r1,12528:32779637,25362406:26211779,1713404,196608 +k1,12491:6567857,25362406:-26211780 +) +(1,12491:6567858,25362406:26211779,1516796,196608 +[1,12491:6764466,25362406:25818563,1320188,0 +(1,12486:6764466,24466657:25818563,424439,112852 +(1,12485:6764466,24466657:0,0,0 +g1,12485:6764466,24466657 +g1,12485:6764466,24466657 +g1,12485:6436786,24466657 +(1,12485:6436786,24466657:0,0,0 +) +g1,12485:6764466,24466657 +) +k1,12486:6764466,24466657:0 +h1,12486:17386992,24466657:0,0,0 +k1,12486:32583029,24466657:15196037 +g1,12486:32583029,24466657 +) +(1,12490:6764466,25282584:25818563,424439,79822 +(1,12488:6764466,25282584:0,0,0 +g1,12488:6764466,25282584 +g1,12488:6764466,25282584 +g1,12488:6436786,25282584 +(1,12488:6436786,25282584:0,0,0 +) +g1,12488:6764466,25282584 +) +g1,12490:7760328,25282584 +g1,12490:9088144,25282584 +h1,12490:12075730,25282584:0,0,0 +k1,12490:32583030,25282584:20507300 +g1,12490:32583030,25282584 +) +] +) +g1,12491:32583029,25362406 +g1,12491:6764466,25362406 +g1,12491:6764466,25362406 +g1,12491:32583029,25362406 +g1,12491:32583029,25362406 +) +h1,12491:6764466,25559014:0,0,0 +] +g1,12493:32583029,25559014 +) +h1,12493:6630773,25559014:0,0,0 +(1,12496:6630773,26424094:25952256,505283,134348 +h1,12495:6630773,26424094:983040,0,0 +k1,12495:8671504,26424094:239802 +k1,12495:11821760,26424094:239802 +k1,12495:13053123,26424094:239803 +k1,12495:17022579,26424094:239802 +k1,12495:18023909,26424094:239802 +k1,12495:22270582,26424094:239802 +k1,12495:25139688,26424094:239802 +k1,12495:26759678,26424094:239802 +k1,12495:29179864,26424094:239803 +k1,12495:30167432,26424094:239802 +k1,12495:31966991,26424094:239802 +k1,12495:32583029,26424094:0 +) +(1,12496:6630773,27289174:25952256,513147,134348 +k1,12495:9536221,27289174:239443 +k1,12495:10427092,27289174:239443 +k1,12495:12448460,27289174:239444 +k1,12495:13102706,27289174:239403 +k1,12495:14947781,27289174:239443 +k1,12495:16885262,27289174:239443 +k1,12495:18504893,27289174:239443 +k1,12495:19735897,27289174:239444 +k1,12495:21488566,27289174:239443 +k1,12495:22379437,27289174:239443 +k1,12495:24642632,27289174:239443 +k1,12495:27055250,27289174:239444 +k1,12495:27977578,27289174:239443 +k1,12495:29824619,27289174:239443 +k1,12495:32583029,27289174:0 +) +(1,12496:6630773,28154254:25952256,513147,134348 +k1,12495:7520720,28154254:273909 +k1,12495:11897837,28154254:273908 +k1,12495:12586514,28154254:273834 +k1,12495:15555919,28154254:273909 +(1,12495:15555919,28154254:0,452978,115847 +r1,12528:19079591,28154254:3523672,568825,115847 +k1,12495:15555919,28154254:-3523672 +) +(1,12495:15555919,28154254:3523672,452978,115847 +k1,12495:15555919,28154254:3277 +h1,12495:19076314,28154254:0,411205,112570 +) +k1,12495:19353499,28154254:273908 +k1,12495:21325446,28154254:273909 +k1,12495:23467131,28154254:273909 +k1,12495:25134990,28154254:273908 +k1,12495:26427984,28154254:273909 +k1,12495:28439908,28154254:273909 +k1,12495:29373108,28154254:273908 +k1,12495:30002877,28154254:273909 +k1,12495:32583029,28154254:0 +) +(1,12496:6630773,29019334:25952256,513147,134348 +k1,12495:7544798,29019334:227863 +k1,12495:8561060,29019334:227864 +k1,12495:11861251,29019334:227863 +k1,12495:14849491,29019334:227864 +k1,12495:16096439,29019334:227863 +k1,12495:19303569,29019334:227863 +k1,12495:20815939,29019334:227864 +k1,12495:23224185,29019334:227863 +k1,12495:24199814,29019334:227863 +k1,12495:25987435,29019334:227864 +k1,12495:27162949,29019334:227863 +k1,12495:28409898,29019334:227864 +k1,12495:31391584,29019334:227863 +k1,12495:32583029,29019334:0 +) +(1,12496:6630773,29884414:25952256,513147,134348 +k1,12495:9305082,29884414:240301 +k1,12495:10316087,29884414:240302 +k1,12495:12887504,29884414:240301 +k1,12495:16373803,29884414:240301 +k1,12495:17633189,29884414:240301 +k1,12495:20852758,29884414:240302 +k1,12495:21744487,29884414:240301 +k1,12495:23123804,29884414:240301 +k1,12495:24311757,29884414:240302 +k1,12495:25571143,29884414:240301 +k1,12495:28145181,29884414:240301 +k1,12495:29052638,29884414:240301 +k1,12495:29707741,29884414:240260 +k1,12495:30564081,29884414:240302 +k1,12495:31896867,29884414:240301 +k1,12495:32583029,29884414:0 +) +(1,12496:6630773,30749494:25952256,505283,7863 +g1,12495:8905527,30749494 +k1,12496:32583029,30749494:21756642 +g1,12496:32583029,30749494 +) +v1,12498:6630773,31434349:0,393216,0 +(1,12524:6630773,45510161:25952256,14469028,196608 +g1,12524:6630773,45510161 +g1,12524:6630773,45510161 +g1,12524:6434165,45510161 +(1,12524:6434165,45510161:0,14469028,196608 +r1,12528:32779637,45510161:26345472,14665636,196608 +k1,12524:6434165,45510161:-26345472 +) +(1,12524:6434165,45510161:26345472,14469028,196608 +[1,12524:6630773,45510161:25952256,14272420,0 +(1,12500:6630773,31662180:25952256,424439,79822 +(1,12499:6630773,31662180:0,0,0 +g1,12499:6630773,31662180 +g1,12499:6630773,31662180 +g1,12499:6303093,31662180 +(1,12499:6303093,31662180:0,0,0 +) +g1,12499:6630773,31662180 +) +k1,12500:6630773,31662180:0 +h1,12500:9950312,31662180:0,0,0 +k1,12500:32583028,31662180:22632716 +g1,12500:32583028,31662180 +) +(1,12523:6630773,32385064:25952256,424439,106246 +(1,12502:6630773,32385064:0,0,0 +g1,12502:6630773,32385064 +g1,12502:6630773,32385064 +g1,12502:6303093,32385064 +(1,12502:6303093,32385064:0,0,0 +) +g1,12502:6630773,32385064 +) +g1,12523:7626635,32385064 +g1,12523:8622497,32385064 +g1,12523:10282267,32385064 +g1,12523:10946175,32385064 +g1,12523:11942037,32385064 +g1,12523:16257438,32385064 +h1,12523:17585254,32385064:0,0,0 +k1,12523:32583029,32385064:14997775 +g1,12523:32583029,32385064 +) +(1,12523:6630773,33069919:25952256,398014,0 +h1,12523:6630773,33069919:0,0,0 +h1,12523:7294681,33069919:0,0,0 +k1,12523:32583029,33069919:25288348 +g1,12523:32583029,33069919 +) +(1,12523:6630773,33754774:25952256,431045,112852 +h1,12523:6630773,33754774:0,0,0 +g1,12523:7626635,33754774 +g1,12523:7958589,33754774 +g1,12523:8290543,33754774 +g1,12523:8954451,33754774 +g1,12523:10614221,33754774 +g1,12523:12273991,33754774 +g1,12523:14929623,33754774 +g1,12523:16257439,33754774 +g1,12523:16921347,33754774 +g1,12523:19908932,33754774 +g1,12523:21236748,33754774 +g1,12523:25220195,33754774 +g1,12523:26548011,33754774 +h1,12523:30199504,33754774:0,0,0 +k1,12523:32583029,33754774:2383525 +g1,12523:32583029,33754774 +) +(1,12523:6630773,34439629:25952256,431045,112852 +h1,12523:6630773,34439629:0,0,0 +g1,12523:7626635,34439629 +g1,12523:7958589,34439629 +g1,12523:8290543,34439629 +g1,12523:12273990,34439629 +g1,12523:12937898,34439629 +g1,12523:16589391,34439629 +g1,12523:17917207,34439629 +g1,12523:21900654,34439629 +g1,12523:25552147,34439629 +g1,12523:28207779,34439629 +h1,12523:30863410,34439629:0,0,0 +k1,12523:32583029,34439629:1719619 +g1,12523:32583029,34439629 +) +(1,12523:6630773,35124484:25952256,424439,112852 +h1,12523:6630773,35124484:0,0,0 +g1,12523:7626635,35124484 +g1,12523:7958589,35124484 +g1,12523:8290543,35124484 +k1,12523:8290543,35124484:0 +h1,12523:17917207,35124484:0,0,0 +k1,12523:32583029,35124484:14665822 +g1,12523:32583029,35124484 +) +(1,12523:6630773,35809339:25952256,398014,0 +h1,12523:6630773,35809339:0,0,0 +h1,12523:7294681,35809339:0,0,0 +k1,12523:32583029,35809339:25288348 +g1,12523:32583029,35809339 +) +(1,12523:6630773,36494194:25952256,431045,106246 +h1,12523:6630773,36494194:0,0,0 +g1,12523:7626635,36494194 +g1,12523:8290543,36494194 +g1,12523:10614221,36494194 +g1,12523:12605945,36494194 +g1,12523:13933761,36494194 +g1,12523:15925485,36494194 +g1,12523:17917209,36494194 +h1,12523:18581117,36494194:0,0,0 +k1,12523:32583029,36494194:14001912 +g1,12523:32583029,36494194 +) +(1,12523:6630773,37179049:25952256,398014,0 +h1,12523:6630773,37179049:0,0,0 +h1,12523:7294681,37179049:0,0,0 +k1,12523:32583029,37179049:25288348 +g1,12523:32583029,37179049 +) +(1,12523:6630773,37863904:25952256,424439,112852 +h1,12523:6630773,37863904:0,0,0 +g1,12523:7626635,37863904 +g1,12523:7958589,37863904 +g1,12523:8290543,37863904 +k1,12523:8290543,37863904:0 +h1,12523:11278128,37863904:0,0,0 +k1,12523:32583028,37863904:21304900 +g1,12523:32583028,37863904 +) +(1,12523:6630773,38548759:25952256,431045,112852 +h1,12523:6630773,38548759:0,0,0 +g1,12523:7626635,38548759 +g1,12523:7958589,38548759 +g1,12523:8290543,38548759 +g1,12523:8622497,38548759 +g1,12523:8954451,38548759 +g1,12523:10946175,38548759 +g1,12523:11610083,38548759 +g1,12523:12937899,38548759 +g1,12523:13601807,38548759 +g1,12523:16589392,38548759 +g1,12523:17917208,38548759 +g1,12523:21900655,38548759 +g1,12523:23228471,38548759 +g1,12523:27211918,38548759 +k1,12523:27211918,38548759:0 +h1,12523:30863411,38548759:0,0,0 +k1,12523:32583029,38548759:1719618 +g1,12523:32583029,38548759 +) +(1,12523:6630773,39233614:25952256,424439,86428 +h1,12523:6630773,39233614:0,0,0 +g1,12523:7626635,39233614 +g1,12523:7958589,39233614 +g1,12523:8290543,39233614 +g1,12523:8622497,39233614 +g1,12523:8954451,39233614 +g1,12523:11278129,39233614 +g1,12523:11942037,39233614 +g1,12523:13269853,39233614 +g1,12523:14929623,39233614 +k1,12523:14929623,39233614:0 +h1,12523:17253301,39233614:0,0,0 +k1,12523:32583029,39233614:15329728 +g1,12523:32583029,39233614 +) +(1,12523:6630773,39918469:25952256,431045,112852 +h1,12523:6630773,39918469:0,0,0 +g1,12523:7626635,39918469 +g1,12523:7958589,39918469 +g1,12523:8290543,39918469 +g1,12523:8622497,39918469 +g1,12523:8954451,39918469 +g1,12523:13269852,39918469 +g1,12523:13933760,39918469 +g1,12523:14929622,39918469 +g1,12523:18581115,39918469 +g1,12523:19908931,39918469 +g1,12523:23892378,39918469 +k1,12523:23892378,39918469:0 +h1,12523:27543871,39918469:0,0,0 +k1,12523:32583029,39918469:5039158 +g1,12523:32583029,39918469 +) +(1,12523:6630773,40603324:25952256,424439,86428 +h1,12523:6630773,40603324:0,0,0 +g1,12523:7626635,40603324 +g1,12523:7958589,40603324 +g1,12523:8290543,40603324 +g1,12523:8622497,40603324 +g1,12523:8954451,40603324 +g1,12523:11610083,40603324 +g1,12523:12273991,40603324 +g1,12523:15261577,40603324 +k1,12523:15261577,40603324:0 +h1,12523:18249162,40603324:0,0,0 +k1,12523:32583029,40603324:14333867 +g1,12523:32583029,40603324 +) +(1,12523:6630773,41288179:25952256,424439,106246 +h1,12523:6630773,41288179:0,0,0 +g1,12523:7626635,41288179 +g1,12523:7958589,41288179 +g1,12523:8290543,41288179 +g1,12523:8622497,41288179 +g1,12523:8954451,41288179 +g1,12523:10614221,41288179 +g1,12523:11278129,41288179 +k1,12523:11278129,41288179:0 +h1,12523:13601807,41288179:0,0,0 +k1,12523:32583029,41288179:18981222 +g1,12523:32583029,41288179 +) +(1,12523:6630773,41973034:25952256,424439,112852 +h1,12523:6630773,41973034:0,0,0 +g1,12523:7626635,41973034 +g1,12523:7958589,41973034 +g1,12523:8290543,41973034 +g1,12523:8622497,41973034 +g1,12523:8954451,41973034 +g1,12523:10282267,41973034 +g1,12523:10946175,41973034 +k1,12523:10946175,41973034:0 +h1,12523:20572839,41973034:0,0,0 +k1,12523:32583029,41973034:12010190 +g1,12523:32583029,41973034 +) +(1,12523:6630773,42657889:25952256,424439,79822 +h1,12523:6630773,42657889:0,0,0 +g1,12523:7626635,42657889 +g1,12523:7958589,42657889 +g1,12523:8290543,42657889 +h1,12523:8622497,42657889:0,0,0 +k1,12523:32583029,42657889:23960532 +g1,12523:32583029,42657889 +) +(1,12523:6630773,43342744:25952256,398014,0 +h1,12523:6630773,43342744:0,0,0 +h1,12523:7294681,43342744:0,0,0 +k1,12523:32583029,43342744:25288348 +g1,12523:32583029,43342744 +) +(1,12523:6630773,44027599:25952256,431045,112852 +h1,12523:6630773,44027599:0,0,0 +g1,12523:7626635,44027599 +g1,12523:8622497,44027599 +g1,12523:10282267,44027599 +g1,12523:13269852,44027599 +g1,12523:13933760,44027599 +g1,12523:15261576,44027599 +g1,12523:16257438,44027599 +g1,12523:17917208,44027599 +g1,12523:19245024,44027599 +g1,12523:21568702,44027599 +g1,12523:22564564,44027599 +g1,12523:25552149,44027599 +g1,12523:26548011,44027599 +g1,12523:28871689,44027599 +g1,12523:30531459,44027599 +h1,12523:31195367,44027599:0,0,0 +k1,12523:32583029,44027599:1387662 +g1,12523:32583029,44027599 +) +(1,12523:6630773,44712454:25952256,431045,112852 +h1,12523:6630773,44712454:0,0,0 +g1,12523:7626635,44712454 +g1,12523:9286405,44712454 +g1,12523:11278129,44712454 +g1,12523:12273991,44712454 +g1,12523:13601807,44712454 +g1,12523:15261577,44712454 +g1,12523:18581116,44712454 +g1,12523:19908932,44712454 +g1,12523:21568702,44712454 +g1,12523:28871688,44712454 +h1,12523:29867550,44712454:0,0,0 +k1,12523:32583029,44712454:2715479 +g1,12523:32583029,44712454 +) +(1,12523:6630773,45397309:25952256,424439,112852 +h1,12523:6630773,45397309:0,0,0 +g1,12523:7626635,45397309 +g1,12523:9950313,45397309 +g1,12523:10614221,45397309 +h1,12523:13601806,45397309:0,0,0 +k1,12523:32583030,45397309:18981224 +g1,12523:32583030,45397309 +) +] +) +g1,12524:32583029,45510161 +g1,12524:6630773,45510161 +g1,12524:6630773,45510161 +g1,12524:32583029,45510161 +g1,12524:32583029,45510161 +) +h1,12524:6630773,45706769:0,0,0 +] +(1,12528:32583029,45706769:0,0,0 +g1,12528:32583029,45706769 +) +) +] +(1,12528:6630773,47279633:25952256,0,0 +h1,12528:6630773,47279633:25952256,0,0 +) +] +(1,12528:4262630,4025873:0,0,0 +[1,12528:-473656,4025873:0,0,0 +(1,12528:-473656,-710413:0,0,0 +(1,12528:-473656,-710413:0,0,0 +g1,12528:-473656,-710413 +) +g1,12528:-473656,-710413 ) ] ) ] !27496 -}197 -Input:2060:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}198 +Input:2063:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{198 -[1,12549:4262630,47279633:28320399,43253760,0 -(1,12549:4262630,4025873:0,0,0 -[1,12549:-473656,4025873:0,0,0 -(1,12549:-473656,-710413:0,0,0 -(1,12549:-473656,-644877:0,0,0 -k1,12549:-473656,-644877:-65536 +{199 +[1,12547:4262630,47279633:28320399,43253760,0 +(1,12547:4262630,4025873:0,0,0 +[1,12547:-473656,4025873:0,0,0 +(1,12547:-473656,-710413:0,0,0 +(1,12547:-473656,-644877:0,0,0 +k1,12547:-473656,-644877:-65536 ) -(1,12549:-473656,4736287:0,0,0 -k1,12549:-473656,4736287:5209943 +(1,12547:-473656,4736287:0,0,0 +k1,12547:-473656,4736287:5209943 ) -g1,12549:-473656,-710413 +g1,12547:-473656,-710413 ) ] ) -[1,12549:6630773,47279633:25952256,43253760,0 -[1,12549:6630773,4812305:25952256,786432,0 -(1,12549:6630773,4812305:25952256,505283,134348 -(1,12549:6630773,4812305:25952256,505283,134348 -g1,12549:3078558,4812305 -[1,12549:3078558,4812305:0,0,0 -(1,12549:3078558,2439708:0,1703936,0 -k1,12549:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12549:2537886,2439708:1179648,16384,0 +[1,12547:6630773,47279633:25952256,43253760,0 +[1,12547:6630773,4812305:25952256,786432,0 +(1,12547:6630773,4812305:25952256,505283,134348 +(1,12547:6630773,4812305:25952256,505283,134348 +g1,12547:3078558,4812305 +[1,12547:3078558,4812305:0,0,0 +(1,12547:3078558,2439708:0,1703936,0 +k1,12547:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12547:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12549:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12547:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12549:3078558,4812305:0,0,0 -(1,12549:3078558,2439708:0,1703936,0 -g1,12549:29030814,2439708 -g1,12549:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12549:36151628,1915420:16384,1179648,0 +[1,12547:3078558,4812305:0,0,0 +(1,12547:3078558,2439708:0,1703936,0 +g1,12547:29030814,2439708 +g1,12547:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12547:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12549:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12547:37855564,2439708:1179648,16384,0 ) ) -k1,12549:3078556,2439708:-34777008 +k1,12547:3078556,2439708:-34777008 ) ] -[1,12549:3078558,4812305:0,0,0 -(1,12549:3078558,49800853:0,16384,2228224 -k1,12549:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12549:2537886,49800853:1179648,16384,0 +[1,12547:3078558,4812305:0,0,0 +(1,12547:3078558,49800853:0,16384,2228224 +k1,12547:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12547:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12549:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12547:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12549:3078558,4812305:0,0,0 -(1,12549:3078558,49800853:0,16384,2228224 -g1,12549:29030814,49800853 -g1,12549:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12549:36151628,51504789:16384,1179648,0 +[1,12547:3078558,4812305:0,0,0 +(1,12547:3078558,49800853:0,16384,2228224 +g1,12547:29030814,49800853 +g1,12547:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12547:36151628,51504789:16384,1179648,0 ) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12549:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12547:37855564,49800853:1179648,16384,0 ) ) -k1,12549:3078556,49800853:-34777008 +k1,12547:3078556,49800853:-34777008 ) -] -g1,12549:6630773,4812305 -g1,12549:6630773,4812305 -g1,12549:9714897,4812305 -k1,12549:31387653,4812305:21672756 -) -) -] -[1,12549:6630773,45706769:25952256,40108032,0 -(1,12549:6630773,45706769:25952256,40108032,0 -(1,12549:6630773,45706769:0,0,0 -g1,12549:6630773,45706769 -) -[1,12549:6630773,45706769:25952256,40108032,0 -v1,12530:6630773,6254097:0,393216,0 -(1,12531:6630773,7526002:25952256,1665121,0 -g1,12531:6630773,7526002 -g1,12531:6237557,7526002 -r1,12549:6368629,7526002:131072,1665121,0 -g1,12531:6567858,7526002 -g1,12531:6764466,7526002 -[1,12531:6764466,7526002:25818563,1665121,0 -(1,12531:6764466,6526574:25818563,665693,196608 -(1,12530:6764466,6526574:0,665693,196608 -r1,12549:7868133,6526574:1103667,862301,196608 -k1,12530:6764466,6526574:-1103667 -) -(1,12530:6764466,6526574:1103667,665693,196608 -) -k1,12530:8087830,6526574:219697 -k1,12530:9405759,6526574:327680 -k1,12530:11172106,6526574:219697 -k1,12530:12004565,6526574:219697 -k1,12530:13243348,6526574:219698 -k1,12530:14851098,6526574:219697 -k1,12530:16568948,6526574:219697 -k1,12530:17736296,6526574:219697 -k1,12530:20651489,6526574:219697 -(1,12530:20651489,6526574:0,452978,115847 -r1,12549:24175161,6526574:3523672,568825,115847 -k1,12530:20651489,6526574:-3523672 -) -(1,12530:20651489,6526574:3523672,452978,115847 -k1,12530:20651489,6526574:3277 -h1,12530:24171884,6526574:0,411205,112570 -) -k1,12530:24394858,6526574:219697 -k1,12530:25562206,6526574:219697 -k1,12530:26137764,6526574:219698 -k1,12530:29729288,6526574:219697 -k1,12530:30608277,6526574:219697 -k1,12530:32124932,6526574:219697 -k1,12530:32583029,6526574:0 -) -(1,12531:6764466,7391654:25818563,505283,134348 -g1,12530:7495192,7391654 -g1,12530:10903719,7391654 -g1,12530:12387454,7391654 -g1,12530:14297828,7391654 -g1,12530:15636073,7391654 -g1,12530:16250145,7391654 -g1,12530:17640819,7391654 -g1,12530:20750502,7391654 -g1,12530:22647769,7391654 -g1,12530:24582391,7391654 -k1,12531:32583029,7391654:6309154 -g1,12531:32583029,7391654 -) -] -g1,12531:32583029,7526002 -) -h1,12531:6630773,7526002:0,0,0 -v1,12534:6630773,8391082:0,393216,0 -(1,12535:6630773,18394622:25952256,10396756,0 -g1,12535:6630773,18394622 -g1,12535:6237557,18394622 -r1,12549:6368629,18394622:131072,10396756,0 -g1,12535:6567858,18394622 -g1,12535:6764466,18394622 -[1,12535:6764466,18394622:25818563,10396756,0 -(1,12535:6764466,8752259:25818563,754393,260573 -(1,12534:6764466,8752259:0,754393,260573 -r1,12549:7856192,8752259:1091726,1014966,260573 -k1,12534:6764466,8752259:-1091726 -) -(1,12534:6764466,8752259:1091726,754393,260573 -) -k1,12534:8100650,8752259:244458 -k1,12534:8428330,8752259:327680 -k1,12534:11494113,8752259:244458 -k1,12534:13897982,8752259:244458 -k1,12534:17052894,8752259:244458 -k1,12534:18401634,8752259:244458 -k1,12534:20447021,8752259:244458 -k1,12534:22388205,8752259:244457 -k1,12534:23580314,8752259:244458 -k1,12534:26659859,8752259:244458 -k1,12534:28602355,8752259:244458 -k1,12534:30227001,8752259:244458 -k1,12534:31563944,8752259:244458 -k1,12534:32583029,8752259:0 -) -(1,12535:6764466,9617339:25818563,513147,134348 -k1,12534:8645240,9617339:227301 -k1,12534:10940856,9617339:227300 -k1,12534:12115808,9617339:227301 -k1,12534:14632936,9617339:227300 -k1,12534:15543122,9617339:227301 -k1,12534:18969890,9617339:227300 -k1,12534:21071521,9617339:227301 -k1,12534:22290381,9617339:227300 -k1,12534:25281991,9617339:227301 -k1,12534:27207329,9617339:227300 -k1,12534:28453715,9617339:227301 -k1,12534:31591469,9617339:227300 -k1,12534:32583029,9617339:0 -) -(1,12535:6764466,10482419:25818563,513147,134348 -k1,12534:9669727,10482419:163235 -k1,12534:11065039,10482419:163235 -k1,12534:13506961,10482419:163235 -h1,12534:15049679,10482419:0,0,0 -k1,12534:15212914,10482419:163235 -k1,12534:16185519,10482419:163235 -k1,12534:17846907,10482419:163235 -h1,12534:19042284,10482419:0,0,0 -k1,12534:19205518,10482419:163234 -k1,12534:20316404,10482419:163235 -k1,12534:20835499,10482419:163235 -k1,12534:25265128,10482419:163235 -k1,12534:26056198,10482419:163235 -k1,12534:29059108,10482419:163235 -k1,12534:30974120,10482419:163235 -k1,12535:32583029,10482419:0 -) -(1,12535:6764466,11347499:25818563,513147,134348 -k1,12534:8467603,11347499:295424 -k1,12534:9855511,11347499:295423 -k1,12534:13176732,11347499:295424 -k1,12534:15853734,11347499:295424 -k1,12534:16765196,11347499:295424 -k1,12534:19971073,11347499:295423 -k1,12534:20882535,11347499:295424 -k1,12534:22197044,11347499:295424 -k1,12534:22907214,11347499:295327 -k1,12534:26984065,11347499:295424 -k1,12534:28885121,11347499:295424 -k1,12534:29863429,11347499:295423 -k1,12534:31860823,11347499:295424 -k1,12535:32583029,11347499:0 -) -(1,12535:6764466,12212579:25818563,505283,134348 -k1,12534:10932965,12212579:211435 -k1,12534:14405472,12212579:211436 -k1,12534:17527361,12212579:211435 -k1,12534:18500325,12212579:211436 -k1,12534:21883703,12212579:211435 -k1,12534:23907864,12212579:211435 -k1,12534:26722390,12212579:211436 -k1,12534:27585253,12212579:211435 -k1,12534:32583029,12212579:0 -) -(1,12535:6764466,13077659:25818563,513147,134348 -k1,12534:9902985,13077659:228065 -k1,12534:11235332,13077659:228065 -k1,12534:13848253,13077659:228066 -k1,12534:15999144,13077659:228065 -k1,12534:21127991,13077659:228065 -k1,12534:22375141,13077659:228065 -k1,12534:25994039,13077659:228065 -k1,12534:29132559,13077659:228066 -k1,12534:30043509,13077659:228065 -k1,12534:31923737,13077659:228065 -k1,12534:32583029,13077659:0 -) -(1,12535:6764466,13942739:25818563,505283,134348 -k1,12534:8789967,13942739:212775 -k1,12534:10199428,13942739:212774 -k1,12534:13513367,13942739:212775 -k1,12534:15907835,13942739:212774 -k1,12534:16882138,13942739:212775 -k1,12534:18899761,13942739:212761 -k1,12534:21405640,13942739:212774 -k1,12534:23111981,13942739:212775 -k1,12534:26331547,13942739:212774 -k1,12534:27160360,13942739:212775 -k1,12534:28974834,13942739:212774 -k1,12534:30884991,13942739:212775 -k1,12534:32583029,13942739:0 -) -(1,12535:6764466,14807819:25818563,513147,134348 -k1,12534:9545945,14807819:201327 -k1,12534:12612505,14807819:201326 -k1,12534:13805392,14807819:201327 -k1,12534:17429008,14807819:201326 -k1,12534:19901813,14807819:201327 -k1,12534:22683292,14807819:201327 -k1,12534:26671288,14807819:201326 -k1,12534:27524043,14807819:201327 -k1,12534:28520976,14807819:201326 -k1,12534:31729095,14807819:201327 -k1,12535:32583029,14807819:0 -) -(1,12535:6764466,15672899:25818563,513147,134348 -k1,12534:8222168,15672899:162711 -k1,12534:12166307,15672899:162712 -k1,12534:14887544,15672899:162711 -k1,12534:16855081,15672899:162675 -k1,12534:17549289,15672899:162711 -k1,12534:20515631,15672899:162712 -k1,12534:23613044,15672899:162711 -k1,12534:24241716,15672899:162711 -k1,12534:25574900,15672899:162711 -k1,12534:26830097,15672899:162712 -k1,12534:28694778,15672899:162711 -k1,12534:32583029,15672899:0 -) -(1,12535:6764466,16537979:25818563,513147,126483 -k1,12534:7225199,16537979:247741 -k1,12534:11259659,16537979:247790 -k1,12534:12791955,16537979:247790 -k1,12534:14210218,16537979:247790 -k1,12534:16173741,16537979:247790 -k1,12534:17802375,16537979:247790 -k1,12534:19334671,16537979:247790 -k1,12534:21874910,16537979:247790 -k1,12534:25437511,16537979:247790 -k1,12534:26151262,16537979:247790 -k1,12534:28285178,16537979:247790 -k1,12534:32583029,16537979:0 -) -(1,12535:6764466,17403059:25818563,513147,126483 -k1,12534:9571209,17403059:160399 -k1,12534:10546877,17403059:160400 -k1,12534:12303733,17403059:160399 -k1,12534:13858083,17403059:160399 -k1,12534:15477314,17403059:160400 -k1,12534:16968094,17403059:160399 -k1,12534:18798350,17403059:160399 -k1,12534:21001507,17403059:160400 -k1,12534:22670545,17403059:160399 -k1,12534:23923429,17403059:160399 -k1,12534:24699867,17403059:160400 -k1,12534:29000831,17403059:160399 -k1,12534:32583029,17403059:0 -) -(1,12535:6764466,18268139:25818563,505283,126483 -g1,12534:8353058,18268139 -k1,12535:32583029,18268139:21476804 -g1,12535:32583029,18268139 -) -] -g1,12535:32583029,18394622 -) -h1,12535:6630773,18394622:0,0,0 -(1,12537:6630773,20511440:25952256,555811,147783 -(1,12537:6630773,20511440:2450326,534184,12975 -g1,12537:6630773,20511440 -g1,12537:9081099,20511440 -) -g1,12537:12040378,20511440 -g1,12537:15130860,20511440 -k1,12537:32583029,20511440:14104328 -g1,12537:32583029,20511440 -) -(1,12540:6630773,21769736:25952256,513147,134348 -k1,12539:8127315,21769736:231042 -k1,12539:9009785,21769736:231042 -k1,12539:10259912,21769736:231042 -k1,12539:12061851,21769736:231041 -k1,12539:14778674,21769736:231042 -k1,12539:15669008,21769736:231042 -k1,12539:19629704,21769736:231042 -k1,12539:20275557,21769736:231010 -k1,12539:23417053,21769736:231042 -k1,12539:24106191,21769736:231041 -k1,12539:25441515,21769736:231042 -k1,12539:29120406,21769736:231042 -k1,12539:30099214,21769736:231042 -k1,12539:32583029,21769736:0 -) -(1,12540:6630773,22634816:25952256,513147,134348 -k1,12539:7494720,22634816:212519 -k1,12539:8973394,22634816:212518 -k1,12539:9541773,22634816:212519 -k1,12539:12266286,22634816:212518 -k1,12539:15058957,22634816:212519 -k1,12539:16219127,22634816:212519 -k1,12539:16787505,22634816:212518 -k1,12539:18335648,22634816:212519 -k1,12539:19160929,22634816:212519 -k1,12539:21153405,22634816:212518 -k1,12539:21835817,22634816:212519 -k1,12539:22579832,22634816:212518 -k1,12539:24376356,22634816:212519 -k1,12539:25240303,22634816:212519 -k1,12539:26758954,22634816:212518 -k1,12539:28793374,22634816:212519 -k1,12539:29471853,22634816:212518 -k1,12539:30703457,22634816:212519 -k1,12540:32583029,22634816:0 -) -(1,12540:6630773,23499896:25952256,505283,134348 -k1,12539:8134676,23499896:168279 -k1,12539:11394943,23499896:168278 -k1,12539:12094719,23499896:168279 -k1,12539:14597389,23499896:168278 -k1,12539:16244160,23499896:168279 -k1,12539:17679905,23499896:168279 -k1,12539:19282111,23499896:168278 -k1,12539:20038903,23499896:168279 -k1,12539:21639798,23499896:168278 -k1,12539:22222889,23499896:168248 -k1,12539:23762181,23499896:168279 -k1,12539:24949544,23499896:168278 -k1,12539:29672575,23499896:168279 -k1,12539:32583029,23499896:0 -) -(1,12540:6630773,24364976:25952256,513147,134348 -k1,12539:9759977,24364976:205643 -k1,12539:11663658,24364976:205643 -k1,12539:12284138,24364976:205637 -k1,12539:13021278,24364976:205643 -k1,12539:16171454,24364976:205643 -k1,12539:18098072,24364976:205643 -k1,12539:18659575,24364976:205643 -k1,12539:19721774,24364976:205643 -k1,12539:20586709,24364976:205643 -k1,12539:23273546,24364976:205644 -k1,12539:24308219,24364976:205643 -k1,12539:26884299,24364976:205643 -k1,12539:28479305,24364976:205643 -k1,12539:30420341,24364976:205643 -k1,12539:32583029,24364976:0 -) -(1,12540:6630773,25230056:25952256,513147,126483 -k1,12539:7995636,25230056:233056 -k1,12539:8887984,25230056:233056 -k1,12539:10140125,25230056:233056 -k1,12539:12023378,25230056:233056 -k1,12539:15033850,25230056:233056 -k1,12539:18351030,25230056:233056 -k1,12539:21368711,25230056:233056 -k1,12539:23094677,25230056:233056 -k1,12539:24394004,25230056:233056 -k1,12539:26918854,25230056:233056 -k1,12539:28170995,25230056:233056 -k1,12539:29496536,25230056:233056 -k1,12539:30388884,25230056:233056 -k1,12539:32583029,25230056:0 -) -(1,12540:6630773,26095136:25952256,513147,134348 -k1,12539:9929118,26095136:214221 -k1,12539:13789762,26095136:214221 -k1,12539:17733636,26095136:214220 -k1,12539:20858311,26095136:214221 -k1,12539:24028861,26095136:214221 -k1,12539:24925967,26095136:214221 -k1,12539:27292389,26095136:214220 -k1,12539:28525695,26095136:214221 -k1,12539:32583029,26095136:0 -) -(1,12540:6630773,26960216:25952256,513147,126483 -k1,12539:7490037,26960216:243226 -k1,12539:9167191,26960216:243226 -k1,12539:9998930,26960216:243226 -k1,12539:12025391,26960216:243226 -k1,12539:13425327,26960216:243226 -k1,12539:16729740,26960216:243226 -k1,12539:17992051,26960216:243226 -k1,12539:19327762,26960216:243226 -k1,12539:20230280,26960216:243226 -k1,12539:22192515,26960216:243226 -k1,12539:23118626,26960216:243226 -k1,12539:26855576,26960216:243226 -k1,12539:28815190,26960216:243226 -k1,12539:29717708,26960216:243226 -k1,12539:31350297,26960216:243226 -k1,12540:32583029,26960216:0 -) -(1,12540:6630773,27825296:25952256,513147,134348 -k1,12539:8472234,27825296:239761 -k1,12539:9731080,27825296:239761 -k1,12539:11063325,27825296:239760 -k1,12539:11962378,27825296:239761 -k1,12539:15931793,27825296:239761 -k1,12539:19082008,27825296:239761 -k1,12539:20426050,27825296:239760 -k1,12539:21413577,27825296:239761 -k1,12539:25694943,27825296:239761 -k1,12539:27424993,27825296:239761 -k1,12539:28280791,27825296:239760 -k1,12539:30014118,27825296:239761 -k1,12539:32124932,27825296:239761 -k1,12539:32583029,27825296:0 -) -(1,12540:6630773,28690376:25952256,513147,7863 -k1,12539:7438668,28690376:276398 -k1,12539:8781337,28690376:276398 -k1,12539:11608396,28690376:276398 -k1,12539:12536222,28690376:276398 -k1,12539:14287835,28690376:276398 -k1,12539:18281436,28690376:276399 -k1,12539:19209262,28690376:276398 -k1,12539:21700777,28690376:276398 -k1,12539:23544796,28690376:276398 -k1,12539:25831183,28690376:276398 -k1,12539:27126666,28690376:276398 -k1,12539:30187033,28690376:276398 -k1,12540:32583029,28690376:0 -) -(1,12540:6630773,29555456:25952256,513147,134348 -k1,12539:8255957,29555456:185358 -k1,12539:11525438,29555456:185357 -k1,12539:15183549,29555456:185358 -k1,12539:17591888,29555456:185358 -k1,12539:18460130,29555456:185357 -k1,12539:20526371,29555456:185358 -k1,12539:21371021,29555456:185358 -k1,12539:24466832,29555456:185357 -k1,12539:25643750,29555456:185358 -k1,12539:28685822,29555456:185358 -k1,12539:29522607,29555456:185357 -k1,12539:31304422,29555456:185358 -k1,12539:32583029,29555456:0 -) -(1,12540:6630773,30420536:25952256,505283,134348 -k1,12540:32583028,30420536:23219404 -g1,12540:32583028,30420536 -) -(1,12542:6630773,31285616:25952256,505283,126483 -h1,12541:6630773,31285616:983040,0,0 -k1,12541:9129288,31285616:318788 -k1,12541:11252818,31285616:318668 -k1,12541:14854960,31285616:318788 -k1,12541:16274753,31285616:318788 -k1,12541:16949401,31285616:318788 -k1,12541:18622163,31285616:318788 -k1,12541:20800862,31285616:318787 -k1,12541:22946138,31285616:318788 -k1,12541:24456371,31285616:318788 -k1,12541:27443130,31285616:318788 -k1,12541:28117778,31285616:318788 -k1,12541:30715253,31285616:318788 -k1,12541:32583029,31285616:0 -) -(1,12542:6630773,32150696:25952256,513147,134348 -k1,12541:9324665,32150696:252676 -k1,12541:9992130,32150696:252622 -k1,12541:12001826,32150696:252676 -k1,12541:13246062,32150696:252676 -k1,12541:14767515,32150696:252676 -k1,12541:16848645,32150696:252676 -k1,12541:20174303,32150696:252675 -k1,12541:23644797,32150696:252676 -k1,12541:25221300,32150696:252676 -k1,12541:26133268,32150696:252676 -k1,12541:29296398,32150696:252676 -k1,12541:32583029,32150696:0 -) -(1,12542:6630773,33015776:25952256,513147,134348 -k1,12541:8388627,33015776:244628 -k1,12541:10643244,33015776:244628 -k1,12541:11243732,33015776:244628 -k1,12541:13183121,33015776:244628 -k1,12541:14831530,33015776:244628 -k1,12541:15735450,33015776:244628 -k1,12541:18859730,33015776:244628 -k1,12541:22830080,33015776:244628 -k1,12541:23757593,33015776:244628 -k1,12541:26399528,33015776:244628 -k1,12541:30708699,33015776:244628 -k1,12541:32583029,33015776:0 -) -(1,12542:6630773,33880856:25952256,513147,126483 -k1,12541:8672176,33880856:302078 -k1,12541:9965815,33880856:302079 -k1,12541:13856644,33880856:302078 -k1,12541:14920251,33880856:302079 -k1,12541:17984672,33880856:302078 -k1,12541:20312468,33880856:302078 -k1,12541:23027583,33880856:302079 -k1,12541:24526348,33880856:302078 -k1,12541:25243166,33880856:301975 -k1,12541:27302265,33880856:302079 -k1,12541:28708625,33880856:302078 -k1,12541:29758470,33880856:302079 -k1,12541:31970267,33880856:302078 -k1,12541:32583029,33880856:0 -) -(1,12542:6630773,34745936:25952256,477493,126960 -g1,12541:8498013,34745936 -g1,12541:8871461,34745936 -g1,12541:9244909,34745936 -g1,12541:9618357,34745936 -g1,12541:11112149,34745936 -g1,12541:11485597,34745936 -(1,12541:12232493,34834419:32768,0,0 -) -g1,12541:14879397,34745936 -g1,12541:15252845,34745936 -g1,12541:16373189,34745936 -g1,12541:16746637,34745936 -g1,12541:17866981,34745936 -g1,12541:18240429,34745936 -$1,12541:20481117,34745936 -k1,12542:32583029,34745936:12049484 -g1,12542:32583029,34745936 -) -(1,12544:6630773,35611016:25952256,513147,126483 -h1,12543:6630773,35611016:983040,0,0 -k1,12543:9083130,35611016:272630 -k1,12543:13602492,35611016:272629 -k1,12543:17158476,35611016:272630 -k1,12543:20834391,35611016:272630 -k1,12543:21723059,35611016:272630 -k1,12543:26653332,35611016:272629 -k1,12543:28319913,35611016:272630 -k1,12543:29181056,35611016:272630 -k1,12543:29923578,35611016:272629 -k1,12543:31482024,35611016:272630 -k1,12543:32583029,35611016:0 -) -(1,12544:6630773,36476096:25952256,513147,126483 -k1,12543:7213715,36476096:227082 -k1,12543:9719485,36476096:227083 -k1,12543:11340518,36476096:227082 -k1,12543:13924930,36476096:227082 -k1,12543:15343457,36476096:227082 -k1,12543:17580529,36476096:227083 -k1,12543:18439378,36476096:227082 -k1,12543:22606484,36476096:227082 -k1,12543:23492858,36476096:227082 -k1,12543:26482284,36476096:227083 -k1,12543:28098729,36476096:227082 -k1,12543:30880404,36476096:227082 -k1,12544:32583029,36476096:0 -) -(1,12544:6630773,37341176:25952256,513147,134348 -k1,12543:8755942,37341176:271155 -k1,12543:10223784,37341176:271155 -k1,12543:13771740,37341176:271156 -k1,12543:15034455,37341176:271155 -k1,12543:18413327,37341176:271155 -k1,12543:20268487,37341176:271155 -k1,12543:21225804,37341176:271155 -k1,12543:22877147,37341176:271155 -k1,12543:25049502,37341176:271156 -k1,12543:27206128,37341176:271155 -k1,12543:28742128,37341176:271155 -k1,12543:29672575,37341176:271155 -k1,12543:32583029,37341176:0 -) -(1,12544:6630773,38206256:25952256,513147,134348 -k1,12543:8366391,38206256:165375 -k1,12543:9810374,38206256:165376 -k1,12543:12829842,38206256:165375 -k1,12543:14869548,38206256:165376 -k1,12543:16791943,38206256:165375 -k1,12543:18061601,38206256:165376 -k1,12543:18974742,38206256:165375 -k1,12543:21049837,38206256:165376 -k1,12543:21827974,38206256:165375 -$1,12543:21827974,38206256 -k1,12543:23695214,38206256:0 -k1,12543:24068662,38206256:0 -k1,12543:24442110,38206256:0 -k1,12543:24815558,38206256:0 -k1,12543:25935902,38206256:0 -k1,12543:26309350,38206256:0 -k1,12543:30790726,38206256:0 -k1,12543:31164174,38206256:0 -k1,12543:32284518,38206256:0 -k1,12544:32583029,38206256:0 -) -(1,12544:6630773,39071336:25952256,477493,126960 -g1,12543:9618357,39071336 -g1,12543:9991805,39071336 -g1,12543:12605941,39071336 -g1,12543:12979389,39071336 -g1,12543:16340421,39071336 -g1,12543:16713869,39071336 -$1,12543:18207661,39071336 -k1,12544:32583029,39071336:14322940 -g1,12544:32583029,39071336 -) -(1,12546:6630773,39936416:25952256,513147,126483 -h1,12545:6630773,39936416:983040,0,0 -k1,12545:10769079,39936416:315591 -k1,12545:12712585,39936416:315591 -k1,12545:13632418,39936416:315591 -k1,12545:14682900,39936416:315823 -k1,12545:16799420,39936416:315591 -k1,12545:19327506,39936416:315591 -k1,12545:19998957,39936416:315591 -k1,12545:22575540,39936416:315591 -k1,12545:24175636,39936416:315590 -k1,12545:26501872,39936416:315591 -k1,12545:28394915,39936416:315591 -k1,12545:29901951,39936416:315591 -k1,12546:32583029,39936416:0 -) -(1,12546:6630773,40801496:25952256,513147,134348 -k1,12545:8447813,40801496:329373 -k1,12545:11483168,40801496:329373 -k1,12545:13547934,40801496:329373 -k1,12545:16034752,40801496:329373 -k1,12545:17753488,40801496:329373 -k1,12545:19274306,40801496:329373 -k1,12545:22293277,40801496:329373 -k1,12545:25555386,40801496:329373 -k1,12545:27156157,40801496:329373 -k1,12545:29530253,40801496:329373 -k1,12545:30518918,40801496:329373 -k1,12545:32051532,40801496:329373 -k1,12545:32583029,40801496:0 -) -(1,12546:6630773,41666576:25952256,513147,134348 -k1,12545:9276053,41666576:286639 -k1,12545:12192651,41666576:286638 -k1,12545:16158481,41666576:286639 -k1,12545:17112275,41666576:286638 -k1,12545:17813669,41666576:286551 -k1,12545:21184432,41666576:286639 -k1,12545:24310746,41666576:286639 -k1,12545:26090294,41666576:286638 -k1,12545:27443204,41666576:286639 -k1,12545:29237825,41666576:286638 -k1,12545:29880324,41666576:286639 -k1,12545:32583029,41666576:0 -) -(1,12546:6630773,42531656:25952256,513147,134348 -k1,12545:9439611,42531656:228686 -k1,12545:12951652,42531656:228687 -k1,12545:14127989,42531656:228686 -k1,12545:15375761,42531656:228687 -k1,12545:20051720,42531656:228686 -k1,12545:23364531,42531656:228687 -k1,12545:24973405,42531656:228686 -k1,12545:26710075,42531656:228687 -k1,12545:27709464,42531656:228686 -k1,12545:29687307,42531656:228687 -k1,12545:30528755,42531656:228686 -$1,12545:30528755,42531656 -k1,12545:32395995,42531656:0 -k1,12546:32583029,42531656:0 -) -(1,12546:6630773,43396736:25952256,505283,134348 -k1,12545:6967062,43396736:0 -k1,12545:7340510,43396736:0 -k1,12545:10328094,43396736:0 -k1,12545:10701542,43396736:0 -k1,12545:11821886,43396736:0 -k1,12545:12195334,43396736:0 -$1,12545:15556366,43396736 -k1,12545:16021355,43396736:291319 -k1,12545:17509362,43396736:291320 -k1,12545:20711135,43396736:291319 -k1,12545:23760865,43396736:291320 -k1,12545:25527399,43396736:291319 -k1,12545:28261901,43396736:291320 -k1,12545:30203417,43396736:291319 -k1,12545:32583029,43396736:0 -) -(1,12546:6630773,44261816:25952256,513147,134348 -g1,12545:7902171,44261816 -g1,12545:10503950,44261816 -g1,12545:11722264,44261816 -g1,12545:13513363,44261816 -g1,12545:15450607,44261816 -g1,12545:16857009,44261816 -g1,12545:17865608,44261816 -g1,12545:21486472,44261816 -g1,12545:23716662,44261816 -g1,12545:24567319,44261816 -g1,12545:26344000,44261816 -g1,12545:27932592,44261816 -k1,12546:32583029,44261816:2158759 -g1,12546:32583029,44261816 -) -] -(1,12549:32583029,45706769:0,0,0 -g1,12549:32583029,45706769 -) -) -] -(1,12549:6630773,47279633:25952256,0,0 -h1,12549:6630773,47279633:25952256,0,0 -) -] -(1,12549:4262630,4025873:0,0,0 -[1,12549:-473656,4025873:0,0,0 -(1,12549:-473656,-710413:0,0,0 -(1,12549:-473656,-710413:0,0,0 -g1,12549:-473656,-710413 -) -g1,12549:-473656,-710413 -) -] -) -] -!24390 -}198 -Input:2061:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2062:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2063:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,12547:6630773,4812305 +g1,12547:6630773,4812305 +g1,12547:9714897,4812305 +k1,12547:31387653,4812305:21672756 +) +) +] +[1,12547:6630773,45706769:25952256,40108032,0 +(1,12547:6630773,45706769:25952256,40108032,0 +(1,12547:6630773,45706769:0,0,0 +g1,12547:6630773,45706769 +) +[1,12547:6630773,45706769:25952256,40108032,0 +v1,12528:6630773,6254097:0,393216,0 +(1,12529:6630773,7526002:25952256,1665121,0 +g1,12529:6630773,7526002 +g1,12529:6237557,7526002 +r1,12547:6368629,7526002:131072,1665121,0 +g1,12529:6567858,7526002 +g1,12529:6764466,7526002 +[1,12529:6764466,7526002:25818563,1665121,0 +(1,12529:6764466,6526574:25818563,665693,196608 +(1,12528:6764466,6526574:0,665693,196608 +r1,12547:7868133,6526574:1103667,862301,196608 +k1,12528:6764466,6526574:-1103667 +) +(1,12528:6764466,6526574:1103667,665693,196608 +) +k1,12528:8087830,6526574:219697 +k1,12528:9405759,6526574:327680 +k1,12528:11172106,6526574:219697 +k1,12528:12004565,6526574:219697 +k1,12528:13243348,6526574:219698 +k1,12528:14851098,6526574:219697 +k1,12528:16568948,6526574:219697 +k1,12528:17736296,6526574:219697 +k1,12528:20651489,6526574:219697 +(1,12528:20651489,6526574:0,452978,115847 +r1,12547:24175161,6526574:3523672,568825,115847 +k1,12528:20651489,6526574:-3523672 +) +(1,12528:20651489,6526574:3523672,452978,115847 +k1,12528:20651489,6526574:3277 +h1,12528:24171884,6526574:0,411205,112570 +) +k1,12528:24394858,6526574:219697 +k1,12528:25562206,6526574:219697 +k1,12528:26137764,6526574:219698 +k1,12528:29729288,6526574:219697 +k1,12528:30608277,6526574:219697 +k1,12528:32124932,6526574:219697 +k1,12528:32583029,6526574:0 +) +(1,12529:6764466,7391654:25818563,505283,134348 +g1,12528:7495192,7391654 +g1,12528:10903719,7391654 +g1,12528:12387454,7391654 +g1,12528:14297828,7391654 +g1,12528:15636073,7391654 +g1,12528:16250145,7391654 +g1,12528:17640819,7391654 +g1,12528:20750502,7391654 +g1,12528:22647769,7391654 +g1,12528:24582391,7391654 +k1,12529:32583029,7391654:6309154 +g1,12529:32583029,7391654 +) +] +g1,12529:32583029,7526002 +) +h1,12529:6630773,7526002:0,0,0 +v1,12532:6630773,8391082:0,393216,0 +(1,12533:6630773,18394622:25952256,10396756,0 +g1,12533:6630773,18394622 +g1,12533:6237557,18394622 +r1,12547:6368629,18394622:131072,10396756,0 +g1,12533:6567858,18394622 +g1,12533:6764466,18394622 +[1,12533:6764466,18394622:25818563,10396756,0 +(1,12533:6764466,8752259:25818563,754393,260573 +(1,12532:6764466,8752259:0,754393,260573 +r1,12547:7856192,8752259:1091726,1014966,260573 +k1,12532:6764466,8752259:-1091726 +) +(1,12532:6764466,8752259:1091726,754393,260573 +) +k1,12532:8100650,8752259:244458 +k1,12532:8428330,8752259:327680 +k1,12532:11494113,8752259:244458 +k1,12532:13897982,8752259:244458 +k1,12532:17052894,8752259:244458 +k1,12532:18401634,8752259:244458 +k1,12532:20447021,8752259:244458 +k1,12532:22388205,8752259:244457 +k1,12532:23580314,8752259:244458 +k1,12532:26659859,8752259:244458 +k1,12532:28602355,8752259:244458 +k1,12532:30227001,8752259:244458 +k1,12532:31563944,8752259:244458 +k1,12532:32583029,8752259:0 +) +(1,12533:6764466,9617339:25818563,513147,134348 +k1,12532:8645240,9617339:227301 +k1,12532:10940856,9617339:227300 +k1,12532:12115808,9617339:227301 +k1,12532:14632936,9617339:227300 +k1,12532:15543122,9617339:227301 +k1,12532:18969890,9617339:227300 +k1,12532:21071521,9617339:227301 +k1,12532:22290381,9617339:227300 +k1,12532:25281991,9617339:227301 +k1,12532:27207329,9617339:227300 +k1,12532:28453715,9617339:227301 +k1,12532:31591469,9617339:227300 +k1,12532:32583029,9617339:0 +) +(1,12533:6764466,10482419:25818563,513147,134348 +k1,12532:9669727,10482419:163235 +k1,12532:11065039,10482419:163235 +k1,12532:13506961,10482419:163235 +h1,12532:15049679,10482419:0,0,0 +k1,12532:15212914,10482419:163235 +k1,12532:16185519,10482419:163235 +k1,12532:17846907,10482419:163235 +h1,12532:19042284,10482419:0,0,0 +k1,12532:19205518,10482419:163234 +k1,12532:20316404,10482419:163235 +k1,12532:20835499,10482419:163235 +k1,12532:25265128,10482419:163235 +k1,12532:26056198,10482419:163235 +k1,12532:29059108,10482419:163235 +k1,12532:30974120,10482419:163235 +k1,12533:32583029,10482419:0 +) +(1,12533:6764466,11347499:25818563,513147,134348 +k1,12532:8467603,11347499:295424 +k1,12532:9855511,11347499:295423 +k1,12532:13176732,11347499:295424 +k1,12532:15853734,11347499:295424 +k1,12532:16765196,11347499:295424 +k1,12532:19971073,11347499:295423 +k1,12532:20882535,11347499:295424 +k1,12532:22197044,11347499:295424 +k1,12532:22907214,11347499:295327 +k1,12532:26984065,11347499:295424 +k1,12532:28885121,11347499:295424 +k1,12532:29863429,11347499:295423 +k1,12532:31860823,11347499:295424 +k1,12533:32583029,11347499:0 +) +(1,12533:6764466,12212579:25818563,505283,134348 +k1,12532:10932965,12212579:211435 +k1,12532:14405472,12212579:211436 +k1,12532:17527361,12212579:211435 +k1,12532:18500325,12212579:211436 +k1,12532:21883703,12212579:211435 +k1,12532:23907864,12212579:211435 +k1,12532:26722390,12212579:211436 +k1,12532:27585253,12212579:211435 +k1,12532:32583029,12212579:0 +) +(1,12533:6764466,13077659:25818563,513147,134348 +k1,12532:9902985,13077659:228065 +k1,12532:11235332,13077659:228065 +k1,12532:13848253,13077659:228066 +k1,12532:15999144,13077659:228065 +k1,12532:21127991,13077659:228065 +k1,12532:22375141,13077659:228065 +k1,12532:25994039,13077659:228065 +k1,12532:29132559,13077659:228066 +k1,12532:30043509,13077659:228065 +k1,12532:31923737,13077659:228065 +k1,12532:32583029,13077659:0 +) +(1,12533:6764466,13942739:25818563,505283,134348 +k1,12532:8789967,13942739:212775 +k1,12532:10199428,13942739:212774 +k1,12532:13513367,13942739:212775 +k1,12532:15907835,13942739:212774 +k1,12532:16882138,13942739:212775 +k1,12532:18899761,13942739:212761 +k1,12532:21405640,13942739:212774 +k1,12532:23111981,13942739:212775 +k1,12532:26331547,13942739:212774 +k1,12532:27160360,13942739:212775 +k1,12532:28974834,13942739:212774 +k1,12532:30884991,13942739:212775 +k1,12532:32583029,13942739:0 +) +(1,12533:6764466,14807819:25818563,513147,134348 +k1,12532:9545945,14807819:201327 +k1,12532:12612505,14807819:201326 +k1,12532:13805392,14807819:201327 +k1,12532:17429008,14807819:201326 +k1,12532:19901813,14807819:201327 +k1,12532:22683292,14807819:201327 +k1,12532:26671288,14807819:201326 +k1,12532:27524043,14807819:201327 +k1,12532:28520976,14807819:201326 +k1,12532:31729095,14807819:201327 +k1,12533:32583029,14807819:0 +) +(1,12533:6764466,15672899:25818563,513147,134348 +k1,12532:8222168,15672899:162711 +k1,12532:12166307,15672899:162712 +k1,12532:14887544,15672899:162711 +k1,12532:16855081,15672899:162675 +k1,12532:17549289,15672899:162711 +k1,12532:20515631,15672899:162712 +k1,12532:23613044,15672899:162711 +k1,12532:24241716,15672899:162711 +k1,12532:25574900,15672899:162711 +k1,12532:26830097,15672899:162712 +k1,12532:28694778,15672899:162711 +k1,12532:32583029,15672899:0 +) +(1,12533:6764466,16537979:25818563,513147,126483 +k1,12532:7225199,16537979:247741 +k1,12532:11259659,16537979:247790 +k1,12532:12791955,16537979:247790 +k1,12532:14210218,16537979:247790 +k1,12532:16173741,16537979:247790 +k1,12532:17802375,16537979:247790 +k1,12532:19334671,16537979:247790 +k1,12532:21874910,16537979:247790 +k1,12532:25437511,16537979:247790 +k1,12532:26151262,16537979:247790 +k1,12532:28285178,16537979:247790 +k1,12532:32583029,16537979:0 +) +(1,12533:6764466,17403059:25818563,513147,126483 +k1,12532:9571209,17403059:160399 +k1,12532:10546877,17403059:160400 +k1,12532:12303733,17403059:160399 +k1,12532:13858083,17403059:160399 +k1,12532:15477314,17403059:160400 +k1,12532:16968094,17403059:160399 +k1,12532:18798350,17403059:160399 +k1,12532:21001507,17403059:160400 +k1,12532:22670545,17403059:160399 +k1,12532:23923429,17403059:160399 +k1,12532:24699867,17403059:160400 +k1,12532:29000831,17403059:160399 +k1,12532:32583029,17403059:0 +) +(1,12533:6764466,18268139:25818563,505283,126483 +g1,12532:8353058,18268139 +k1,12533:32583029,18268139:21476804 +g1,12533:32583029,18268139 +) +] +g1,12533:32583029,18394622 +) +h1,12533:6630773,18394622:0,0,0 +(1,12535:6630773,20511440:25952256,555811,147783 +(1,12535:6630773,20511440:2450326,534184,12975 +g1,12535:6630773,20511440 +g1,12535:9081099,20511440 +) +g1,12535:12040378,20511440 +g1,12535:15130860,20511440 +k1,12535:32583029,20511440:14104328 +g1,12535:32583029,20511440 +) +(1,12538:6630773,21769736:25952256,513147,134348 +k1,12537:8051877,21769736:155604 +k1,12537:8858909,21769736:155604 +k1,12537:10033598,21769736:155604 +k1,12537:11760100,21769736:155604 +k1,12537:14401485,21769736:155604 +k1,12537:15216382,21769736:155605 +k1,12537:19101640,21769736:155604 +k1,12537:19672043,21769736:155560 +k1,12537:22911772,21769736:155605 +k1,12537:23525473,21769736:155604 +k1,12537:24785359,21769736:155604 +k1,12537:28388812,21769736:155604 +k1,12537:29292182,21769736:155604 +k1,12537:31931601,21769736:155604 +k1,12537:32583029,21769736:0 +) +(1,12538:6630773,22634816:25952256,513147,134348 +k1,12537:8089026,22634816:192097 +k1,12537:8636984,22634816:192098 +k1,12537:11341076,22634816:192097 +k1,12537:14113326,22634816:192098 +k1,12537:15253074,22634816:192097 +k1,12537:15801032,22634816:192098 +k1,12537:17328753,22634816:192097 +k1,12537:18133613,22634816:192098 +k1,12537:20105668,22634816:192097 +k1,12537:20767659,22634816:192098 +k1,12537:21491253,22634816:192097 +k1,12537:23267356,22634816:192098 +k1,12537:24110881,22634816:192097 +k1,12537:25609112,22634816:192098 +k1,12537:27623110,22634816:192097 +k1,12537:28281169,22634816:192098 +k1,12537:29492351,22634816:192097 +k1,12537:32583029,22634816:0 +) +(1,12538:6630773,23499896:25952256,505283,134348 +k1,12537:9922294,23499896:199532 +k1,12537:10653323,23499896:199532 +k1,12537:13187247,23499896:199532 +k1,12537:14865271,23499896:199532 +k1,12537:16332269,23499896:199532 +k1,12537:17965729,23499896:199532 +k1,12537:18753774,23499896:199532 +k1,12537:20385923,23499896:199532 +k1,12537:21000297,23499896:199531 +k1,12537:22570842,23499896:199532 +k1,12537:23789459,23499896:199532 +k1,12537:28543743,23499896:199532 +k1,12537:31653729,23499896:199532 +k1,12538:32583029,23499896:0 +) +(1,12538:6630773,24364976:25952256,513147,134348 +k1,12537:8939466,24364976:187293 +k1,12537:10824798,24364976:187294 +k1,12537:11426922,24364976:187281 +k1,12537:12145713,24364976:187294 +k1,12537:15277539,24364976:187293 +k1,12537:17185807,24364976:187293 +k1,12537:17728961,24364976:187294 +k1,12537:18772810,24364976:187293 +k1,12537:19619395,24364976:187293 +k1,12537:22287882,24364976:187294 +k1,12537:25620248,24364976:187293 +k1,12537:27196904,24364976:187293 +k1,12537:29119591,24364976:187294 +k1,12537:31469572,24364976:187293 +k1,12537:32583029,24364976:0 +) +(1,12538:6630773,25230056:25952256,513147,126483 +k1,12537:7508901,25230056:218836 +k1,12537:8746821,25230056:218835 +k1,12537:10615854,25230056:218836 +k1,12537:13612105,25230056:218835 +k1,12537:16915065,25230056:218836 +k1,12537:19918525,25230056:218835 +k1,12537:21630271,25230056:218836 +k1,12537:22915377,25230056:218835 +k1,12537:25426007,25230056:218836 +k1,12537:26663927,25230056:218835 +k1,12537:27975248,25230056:218836 +k1,12537:28853375,25230056:218835 +k1,12537:32583029,25230056:0 +) +(1,12538:6630773,26095136:25952256,513147,134348 +k1,12537:9929118,26095136:214221 +k1,12537:13789762,26095136:214221 +k1,12537:17733636,26095136:214220 +k1,12537:20858311,26095136:214221 +k1,12537:24028861,26095136:214221 +k1,12537:24925967,26095136:214221 +k1,12537:27292389,26095136:214220 +k1,12537:28525695,26095136:214221 +k1,12537:32583029,26095136:0 +) +(1,12538:6630773,26960216:25952256,513147,126483 +k1,12537:7490037,26960216:243226 +k1,12537:9167191,26960216:243226 +k1,12537:9998930,26960216:243226 +k1,12537:12025391,26960216:243226 +k1,12537:13425327,26960216:243226 +k1,12537:16729740,26960216:243226 +k1,12537:17992051,26960216:243226 +k1,12537:19327762,26960216:243226 +k1,12537:20230280,26960216:243226 +k1,12537:22192515,26960216:243226 +k1,12537:23118626,26960216:243226 +k1,12537:26855576,26960216:243226 +k1,12537:28815190,26960216:243226 +k1,12537:29717708,26960216:243226 +k1,12537:31350297,26960216:243226 +k1,12538:32583029,26960216:0 +) +(1,12538:6630773,27825296:25952256,513147,134348 +k1,12537:8472234,27825296:239761 +k1,12537:9731080,27825296:239761 +k1,12537:11063325,27825296:239760 +k1,12537:11962378,27825296:239761 +k1,12537:15931793,27825296:239761 +k1,12537:19082008,27825296:239761 +k1,12537:20426050,27825296:239760 +k1,12537:21413577,27825296:239761 +k1,12537:25694943,27825296:239761 +k1,12537:27424993,27825296:239761 +k1,12537:28280791,27825296:239760 +k1,12537:30014118,27825296:239761 +k1,12537:32124932,27825296:239761 +k1,12537:32583029,27825296:0 +) +(1,12538:6630773,28690376:25952256,513147,7863 +k1,12537:7438668,28690376:276398 +k1,12537:8781337,28690376:276398 +k1,12537:11608396,28690376:276398 +k1,12537:12536222,28690376:276398 +k1,12537:14287835,28690376:276398 +k1,12537:18281436,28690376:276399 +k1,12537:19209262,28690376:276398 +k1,12537:21700777,28690376:276398 +k1,12537:23544796,28690376:276398 +k1,12537:25831183,28690376:276398 +k1,12537:27126666,28690376:276398 +k1,12537:30187033,28690376:276398 +k1,12538:32583029,28690376:0 +) +(1,12538:6630773,29555456:25952256,513147,134348 +k1,12537:8255957,29555456:185358 +k1,12537:11525438,29555456:185357 +k1,12537:15183549,29555456:185358 +k1,12537:17591888,29555456:185358 +k1,12537:18460130,29555456:185357 +k1,12537:20526371,29555456:185358 +k1,12537:21371021,29555456:185358 +k1,12537:24466832,29555456:185357 +k1,12537:25643750,29555456:185358 +k1,12537:28685822,29555456:185358 +k1,12537:29522607,29555456:185357 +k1,12537:31304422,29555456:185358 +k1,12537:32583029,29555456:0 +) +(1,12538:6630773,30420536:25952256,505283,134348 +k1,12538:32583028,30420536:23219404 +g1,12538:32583028,30420536 +) +(1,12540:6630773,31285616:25952256,505283,126483 +h1,12539:6630773,31285616:983040,0,0 +k1,12539:9129288,31285616:318788 +k1,12539:11252818,31285616:318668 +k1,12539:14854960,31285616:318788 +k1,12539:16274753,31285616:318788 +k1,12539:16949401,31285616:318788 +k1,12539:18622163,31285616:318788 +k1,12539:20800862,31285616:318787 +k1,12539:22946138,31285616:318788 +k1,12539:24456371,31285616:318788 +k1,12539:27443130,31285616:318788 +k1,12539:28117778,31285616:318788 +k1,12539:30715253,31285616:318788 +k1,12539:32583029,31285616:0 +) +(1,12540:6630773,32150696:25952256,513147,134348 +k1,12539:9324665,32150696:252676 +k1,12539:9992130,32150696:252622 +k1,12539:12001826,32150696:252676 +k1,12539:13246062,32150696:252676 +k1,12539:14767515,32150696:252676 +k1,12539:16848645,32150696:252676 +k1,12539:20174303,32150696:252675 +k1,12539:23644797,32150696:252676 +k1,12539:25221300,32150696:252676 +k1,12539:26133268,32150696:252676 +k1,12539:29296398,32150696:252676 +k1,12539:32583029,32150696:0 +) +(1,12540:6630773,33015776:25952256,513147,134348 +k1,12539:8372839,33015776:228840 +k1,12539:10611668,33015776:228840 +k1,12539:11196367,33015776:228839 +k1,12539:13119968,33015776:228840 +k1,12539:14752589,33015776:228840 +k1,12539:15640721,33015776:228840 +k1,12539:18749213,33015776:228840 +k1,12539:22877445,33015776:228840 +k1,12539:23789169,33015776:228839 +k1,12539:26415316,33015776:228840 +k1,12539:30708699,33015776:228840 +k1,12539:32583029,33015776:0 +) +(1,12540:6630773,33880856:25952256,513147,126483 +k1,12539:8672176,33880856:302078 +k1,12539:9965815,33880856:302079 +k1,12539:13856644,33880856:302078 +k1,12539:14920251,33880856:302079 +k1,12539:17984672,33880856:302078 +k1,12539:20312468,33880856:302078 +k1,12539:23027583,33880856:302079 +k1,12539:24526348,33880856:302078 +k1,12539:25243166,33880856:301975 +k1,12539:27302265,33880856:302079 +k1,12539:28708625,33880856:302078 +k1,12539:29758470,33880856:302079 +k1,12539:31970267,33880856:302078 +k1,12539:32583029,33880856:0 +) +(1,12540:6630773,34745936:25952256,477493,126960 +g1,12539:8498013,34745936 +g1,12539:8871461,34745936 +g1,12539:9244909,34745936 +g1,12539:9618357,34745936 +g1,12539:11112149,34745936 +g1,12539:11485597,34745936 +(1,12539:12232493,34834419:32768,0,0 +) +g1,12539:14879397,34745936 +g1,12539:15252845,34745936 +g1,12539:16373189,34745936 +g1,12539:16746637,34745936 +g1,12539:17866981,34745936 +g1,12539:18240429,34745936 +$1,12539:20481117,34745936 +k1,12540:32583029,34745936:12049484 +g1,12540:32583029,34745936 +) +(1,12542:6630773,35611016:25952256,513147,126483 +h1,12541:6630773,35611016:983040,0,0 +k1,12541:9083130,35611016:272630 +k1,12541:13602492,35611016:272629 +k1,12541:17158476,35611016:272630 +k1,12541:20834391,35611016:272630 +k1,12541:21723059,35611016:272630 +k1,12541:26653332,35611016:272629 +k1,12541:28319913,35611016:272630 +k1,12541:29181056,35611016:272630 +k1,12541:29923578,35611016:272629 +k1,12541:31482024,35611016:272630 +k1,12541:32583029,35611016:0 +) +(1,12542:6630773,36476096:25952256,513147,126483 +k1,12541:7213715,36476096:227082 +k1,12541:9719485,36476096:227083 +k1,12541:11340518,36476096:227082 +k1,12541:13924930,36476096:227082 +k1,12541:15343457,36476096:227082 +k1,12541:17580529,36476096:227083 +k1,12541:18439378,36476096:227082 +k1,12541:22606484,36476096:227082 +k1,12541:23492858,36476096:227082 +k1,12541:26482284,36476096:227083 +k1,12541:28098729,36476096:227082 +k1,12541:30880404,36476096:227082 +k1,12542:32583029,36476096:0 +) +(1,12542:6630773,37341176:25952256,513147,134348 +k1,12541:8755942,37341176:271155 +k1,12541:10223784,37341176:271155 +k1,12541:13771740,37341176:271156 +k1,12541:15034455,37341176:271155 +k1,12541:18413327,37341176:271155 +k1,12541:20268487,37341176:271155 +k1,12541:21225804,37341176:271155 +k1,12541:22877147,37341176:271155 +k1,12541:25049502,37341176:271156 +k1,12541:27206128,37341176:271155 +k1,12541:28742128,37341176:271155 +k1,12541:29672575,37341176:271155 +k1,12541:32583029,37341176:0 +) +(1,12542:6630773,38206256:25952256,513147,134348 +k1,12541:8366391,38206256:165375 +k1,12541:9810374,38206256:165376 +k1,12541:12829842,38206256:165375 +k1,12541:14869548,38206256:165376 +k1,12541:16791943,38206256:165375 +k1,12541:18061601,38206256:165376 +k1,12541:18974742,38206256:165375 +k1,12541:21049837,38206256:165376 +k1,12541:21827974,38206256:165375 +$1,12541:21827974,38206256 +k1,12541:23695214,38206256:0 +k1,12541:24068662,38206256:0 +k1,12541:24442110,38206256:0 +k1,12541:24815558,38206256:0 +k1,12541:25935902,38206256:0 +k1,12541:26309350,38206256:0 +k1,12541:30790726,38206256:0 +k1,12541:31164174,38206256:0 +k1,12541:32284518,38206256:0 +k1,12542:32583029,38206256:0 +) +(1,12542:6630773,39071336:25952256,477493,126960 +g1,12541:9618357,39071336 +g1,12541:9991805,39071336 +g1,12541:12605941,39071336 +g1,12541:12979389,39071336 +g1,12541:16340421,39071336 +g1,12541:16713869,39071336 +$1,12541:18207661,39071336 +k1,12542:32583029,39071336:14322940 +g1,12542:32583029,39071336 +) +(1,12544:6630773,39936416:25952256,513147,126483 +h1,12543:6630773,39936416:983040,0,0 +k1,12543:10769079,39936416:315591 +k1,12543:12712585,39936416:315591 +k1,12543:13632418,39936416:315591 +k1,12543:14682900,39936416:315823 +k1,12543:16799420,39936416:315591 +k1,12543:19327506,39936416:315591 +k1,12543:19998957,39936416:315591 +k1,12543:22575540,39936416:315591 +k1,12543:24175636,39936416:315590 +k1,12543:26501872,39936416:315591 +k1,12543:28394915,39936416:315591 +k1,12543:29901951,39936416:315591 +k1,12544:32583029,39936416:0 +) +(1,12544:6630773,40801496:25952256,513147,134348 +k1,12543:8447813,40801496:329373 +k1,12543:11483168,40801496:329373 +k1,12543:13547934,40801496:329373 +k1,12543:16034752,40801496:329373 +k1,12543:17753488,40801496:329373 +k1,12543:19274306,40801496:329373 +k1,12543:22293277,40801496:329373 +k1,12543:25555386,40801496:329373 +k1,12543:27156157,40801496:329373 +k1,12543:29530253,40801496:329373 +k1,12543:30518918,40801496:329373 +k1,12543:32051532,40801496:329373 +k1,12543:32583029,40801496:0 +) +(1,12544:6630773,41666576:25952256,513147,134348 +k1,12543:9276053,41666576:286639 +k1,12543:12192651,41666576:286638 +k1,12543:16158481,41666576:286639 +k1,12543:17112275,41666576:286638 +k1,12543:17813669,41666576:286551 +k1,12543:21184432,41666576:286639 +k1,12543:24310746,41666576:286639 +k1,12543:26090294,41666576:286638 +k1,12543:27443204,41666576:286639 +k1,12543:29237825,41666576:286638 +k1,12543:29880324,41666576:286639 +k1,12543:32583029,41666576:0 +) +(1,12544:6630773,42531656:25952256,513147,134348 +k1,12543:9439611,42531656:228686 +k1,12543:12951652,42531656:228687 +k1,12543:14127989,42531656:228686 +k1,12543:15375761,42531656:228687 +k1,12543:20051720,42531656:228686 +k1,12543:23364531,42531656:228687 +k1,12543:24973405,42531656:228686 +k1,12543:26710075,42531656:228687 +k1,12543:27709464,42531656:228686 +k1,12543:29687307,42531656:228687 +k1,12543:30528755,42531656:228686 +$1,12543:30528755,42531656 +k1,12543:32395995,42531656:0 +k1,12544:32583029,42531656:0 +) +(1,12544:6630773,43396736:25952256,505283,134348 +k1,12543:6967062,43396736:0 +k1,12543:7340510,43396736:0 +k1,12543:10328094,43396736:0 +k1,12543:10701542,43396736:0 +k1,12543:11821886,43396736:0 +k1,12543:12195334,43396736:0 +$1,12543:15556366,43396736 +k1,12543:16021355,43396736:291319 +k1,12543:17509362,43396736:291320 +k1,12543:20711135,43396736:291319 +k1,12543:23760865,43396736:291320 +k1,12543:25527399,43396736:291319 +k1,12543:28261901,43396736:291320 +k1,12543:30203417,43396736:291319 +k1,12543:32583029,43396736:0 +) +(1,12544:6630773,44261816:25952256,513147,134348 +g1,12543:7902171,44261816 +g1,12543:10503950,44261816 +g1,12543:11722264,44261816 +g1,12543:13513363,44261816 +g1,12543:15450607,44261816 +g1,12543:16857009,44261816 +g1,12543:17865608,44261816 +g1,12543:21486472,44261816 +g1,12543:23716662,44261816 +g1,12543:24567319,44261816 +g1,12543:26344000,44261816 +g1,12543:27932592,44261816 +k1,12544:32583029,44261816:2158759 +g1,12544:32583029,44261816 +) +] +(1,12547:32583029,45706769:0,0,0 +g1,12547:32583029,45706769 +) +) +] +(1,12547:6630773,47279633:25952256,0,0 +h1,12547:6630773,47279633:25952256,0,0 +) +] +(1,12547:4262630,4025873:0,0,0 +[1,12547:-473656,4025873:0,0,0 +(1,12547:-473656,-710413:0,0,0 +(1,12547:-473656,-710413:0,0,0 +g1,12547:-473656,-710413 +) +g1,12547:-473656,-710413 +) +] +) +] +!24357 +}199 Input:2064:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2065:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2066:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2067:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2068:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2069:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2070:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{199 -[1,12593:4262630,47279633:28320399,43253760,0 -(1,12593:4262630,4025873:0,0,0 -[1,12593:-473656,4025873:0,0,0 -(1,12593:-473656,-710413:0,0,0 -(1,12593:-473656,-644877:0,0,0 -k1,12593:-473656,-644877:-65536 +{200 +[1,12591:4262630,47279633:28320399,43253760,0 +(1,12591:4262630,4025873:0,0,0 +[1,12591:-473656,4025873:0,0,0 +(1,12591:-473656,-710413:0,0,0 +(1,12591:-473656,-644877:0,0,0 +k1,12591:-473656,-644877:-65536 ) -(1,12593:-473656,4736287:0,0,0 -k1,12593:-473656,4736287:5209943 +(1,12591:-473656,4736287:0,0,0 +k1,12591:-473656,4736287:5209943 ) -g1,12593:-473656,-710413 +g1,12591:-473656,-710413 ) ] ) -[1,12593:6630773,47279633:25952256,43253760,0 -[1,12593:6630773,4812305:25952256,786432,0 -(1,12593:6630773,4812305:25952256,505283,134348 -(1,12593:6630773,4812305:25952256,505283,134348 -g1,12593:3078558,4812305 -[1,12593:3078558,4812305:0,0,0 -(1,12593:3078558,2439708:0,1703936,0 -k1,12593:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12593:2537886,2439708:1179648,16384,0 +[1,12591:6630773,47279633:25952256,43253760,0 +[1,12591:6630773,4812305:25952256,786432,0 +(1,12591:6630773,4812305:25952256,505283,134348 +(1,12591:6630773,4812305:25952256,505283,134348 +g1,12591:3078558,4812305 +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,2439708:0,1703936,0 +k1,12591:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12591:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12593:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12591:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12593:3078558,4812305:0,0,0 -(1,12593:3078558,2439708:0,1703936,0 -g1,12593:29030814,2439708 -g1,12593:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12593:36151628,1915420:16384,1179648,0 +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,2439708:0,1703936,0 +g1,12591:29030814,2439708 +g1,12591:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12591:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12593:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12591:37855564,2439708:1179648,16384,0 ) ) -k1,12593:3078556,2439708:-34777008 +k1,12591:3078556,2439708:-34777008 ) ] -[1,12593:3078558,4812305:0,0,0 -(1,12593:3078558,49800853:0,16384,2228224 -k1,12593:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12593:2537886,49800853:1179648,16384,0 +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,49800853:0,16384,2228224 +k1,12591:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12591:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12593:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12591:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12593:3078558,4812305:0,0,0 -(1,12593:3078558,49800853:0,16384,2228224 -g1,12593:29030814,49800853 -g1,12593:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12593:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12593:37855564,49800853:1179648,16384,0 -) -) -k1,12593:3078556,49800853:-34777008 -) -] -g1,12593:6630773,4812305 -k1,12593:23588214,4812305:15762064 -g1,12593:25210885,4812305 -g1,12593:25997972,4812305 -g1,12593:28481131,4812305 -g1,12593:30046786,4812305 -) -) -] -[1,12593:6630773,45706769:25952256,40108032,0 -(1,12593:6630773,45706769:25952256,40108032,0 -(1,12593:6630773,45706769:0,0,0 -g1,12593:6630773,45706769 -) -[1,12593:6630773,45706769:25952256,40108032,0 -(1,12548:6630773,6254097:25952256,513147,134348 -h1,12547:6630773,6254097:983040,0,0 -k1,12547:9068553,6254097:258053 -k1,12547:11131409,6254097:257994 -k1,12547:14672815,6254097:258052 -k1,12547:16769153,6254097:258053 -k1,12547:17797909,6254097:258053 -k1,12547:20354310,6254097:258053 -k1,12547:21271655,6254097:258053 -k1,12547:23563290,6254097:258053 -k1,12547:26485382,6254097:258053 -k1,12547:27402726,6254097:258052 -k1,12547:30744903,6254097:258053 -k1,12547:31812326,6254097:258053 -k1,12547:32583029,6254097:0 -) -(1,12548:6630773,7119177:25952256,513147,134348 -g1,12547:10022916,7119177 -g1,12547:12802297,7119177 -g1,12547:14793280,7119177 -g1,12547:16373353,7119177 -g1,12547:17104079,7119177 -g1,12547:18589124,7119177 -g1,12547:21997651,7119177 -g1,12547:23144531,7119177 -g1,12547:26458031,7119177 -k1,12548:32583029,7119177:1336938 -g1,12548:32583029,7119177 -) -(1,12549:6630773,9235995:25952256,555811,147783 -(1,12549:6630773,9235995:2450326,534184,12975 -g1,12549:6630773,9235995 -g1,12549:9081099,9235995 -) -g1,12549:10960475,9235995 -g1,12549:14533236,9235995 -k1,12549:32583029,9235995:16189882 -g1,12549:32583029,9235995 -) -(1,12552:6630773,10494291:25952256,513147,134348 -k1,12551:7232148,10494291:186532 -k1,12551:10329146,10494291:186544 -k1,12551:12476528,10494291:186545 -k1,12551:13429188,10494291:186544 -k1,12551:15905560,10494291:186544 -k1,12551:18102094,10494291:186545 -k1,12551:18644498,10494291:186544 -k1,12551:22345083,10494291:186545 -k1,12551:23925578,10494291:186544 -k1,12551:25131207,10494291:186544 -k1,12551:26971225,10494291:186545 -k1,12551:28895784,10494291:186544 -k1,12551:29768491,10494291:186545 -k1,12551:30974120,10494291:186544 -k1,12552:32583029,10494291:0 -) -(1,12552:6630773,11359371:25952256,513147,134348 -k1,12551:7910526,11359371:202341 -k1,12551:9892169,11359371:202341 -k1,12551:12620923,11359371:202341 -k1,12551:14014709,11359371:202341 -k1,12551:17181243,11359371:202341 -k1,12551:17739444,11359371:202341 -k1,12551:20521936,11359371:202340 -k1,12551:22118228,11359371:202341 -(1,12551:22118228,11359371:0,452978,115847 -r1,12593:25290188,11359371:3171960,568825,115847 -k1,12551:22118228,11359371:-3171960 -) -(1,12551:22118228,11359371:3171960,452978,115847 -k1,12551:22118228,11359371:3277 -h1,12551:25286911,11359371:0,411205,112570 -) -k1,12551:25492529,11359371:202341 -k1,12551:27740904,11359371:202341 -k1,12551:29986002,11359371:202341 -k1,12551:31563944,11359371:202341 -k1,12551:32583029,11359371:0 -) -(1,12552:6630773,12224451:25952256,505283,134348 -k1,12551:9737398,12224451:265639 -k1,12551:12466536,12224451:265640 -k1,12551:15828096,12224451:265639 -k1,12551:16449595,12224451:265639 -k1,12551:19295386,12224451:265639 -k1,12551:21088670,12224451:265640 -k1,12551:23051036,12224451:265639 -k1,12551:25606503,12224451:265639 -k1,12551:26523570,12224451:265639 -k1,12551:27808295,12224451:265640 -k1,12551:30144216,12224451:265639 -k1,12551:31858201,12224451:265639 -k1,12551:32583029,12224451:0 -) -(1,12552:6630773,13089531:25952256,513147,134348 -k1,12551:8152410,13089531:237131 -k1,12551:9769729,13089531:237131 -k1,12551:11111142,13089531:237131 -k1,12551:12096039,13089531:237131 -k1,12551:15132213,13089531:237131 -k1,12551:17829566,13089531:237131 -k1,12551:21717051,13089531:237130 -k1,12551:22973267,13089531:237131 -k1,12551:24948413,13089531:237131 -k1,12551:25844836,13089531:237131 -k1,12551:27101052,13089531:237131 -k1,12551:31037690,13089531:237131 -k1,12551:32583029,13089531:0 -) -(1,12552:6630773,13954611:25952256,513147,134348 -k1,12551:9766368,13954611:225141 -k1,12551:10806777,13954611:225141 -k1,12551:12098190,13954611:225142 -k1,12551:14396235,13954611:225141 -k1,12551:15387492,13954611:225141 -k1,12551:16631718,13954611:225141 -k1,12551:19882657,13954611:225142 -k1,12551:21299243,13954611:225141 -k1,12551:23814212,13954611:225141 -k1,12551:26420931,13954611:225141 -k1,12551:27262111,13954611:225142 -k1,12551:28995891,13954611:225141 -k1,12551:30890889,13954611:225141 -k1,12551:32583029,13954611:0 -) -(1,12552:6630773,14819691:25952256,513147,134348 -k1,12551:7813277,14819691:190944 -k1,12551:9421765,14819691:190944 -k1,12551:12270848,14819691:190943 -k1,12551:13077830,14819691:190944 -k1,12551:14870474,14819691:190944 -k1,12551:16758800,14819691:190944 -k1,12551:19479433,14819691:190943 -k1,12551:21050565,14819691:190944 -k1,12551:22578443,14819691:190944 -k1,12551:25010063,14819691:190944 -k1,12551:25883892,14819691:190944 -k1,12551:26822601,14819691:190943 -k1,12551:29788995,14819691:190944 -k1,12551:30595977,14819691:190944 -k1,12551:32583029,14819691:0 -) -(1,12552:6630773,15684771:25952256,473825,7863 -k1,12552:32583029,15684771:23253484 -g1,12552:32583029,15684771 -) -v1,12554:6630773,16549851:0,393216,0 -(1,12555:6630773,21317897:25952256,5161262,0 -g1,12555:6630773,21317897 -g1,12555:6237557,21317897 -r1,12593:6368629,21317897:131072,5161262,0 -g1,12555:6567858,21317897 -g1,12555:6764466,21317897 -[1,12555:6764466,21317897:25818563,5161262,0 -(1,12555:6764466,16858149:25818563,701514,196608 -(1,12554:6764466,16858149:0,701514,196608 -r1,12593:7761522,16858149:997056,898122,196608 -k1,12554:6764466,16858149:-997056 -) -(1,12554:6764466,16858149:997056,701514,196608 -) -k1,12554:8142785,16858149:381263 -k1,12554:8470465,16858149:327680 -k1,12554:11386661,16858149:381263 -k1,12554:15624062,16858149:381263 -k1,12554:17109607,16858149:381263 -k1,12554:18238636,16858149:381263 -k1,12554:21517245,16858149:381262 -k1,12554:23089953,16858149:381263 -k1,12554:24757032,16858149:381263 -k1,12554:28112319,16858149:381263 -k1,12554:29887533,16858149:381263 -k1,12555:32583029,16858149:0 -) -(1,12555:6764466,17723229:25818563,513147,134348 -(1,12554:6764466,17723229:0,452978,115847 -r1,12593:9584715,17723229:2820249,568825,115847 -k1,12554:6764466,17723229:-2820249 -) -(1,12554:6764466,17723229:2820249,452978,115847 -k1,12554:6764466,17723229:3277 -h1,12554:9581438,17723229:0,411205,112570 -) -k1,12554:9789823,17723229:205108 -k1,12554:11730324,17723229:205108 -k1,12554:12291292,17723229:205108 -k1,12554:14845210,17723229:205108 -k1,12554:17812661,17723229:205108 -k1,12554:20707367,17723229:205108 -k1,12554:21860126,17723229:205108 -k1,12554:23084319,17723229:205108 -k1,12554:26361755,17723229:205108 -k1,12554:28134484,17723229:205108 -k1,12554:29624098,17723229:205108 -k1,12554:31714677,17723229:205108 -k1,12554:32583029,17723229:0 -) -(1,12555:6764466,18588309:25818563,513147,134348 -k1,12554:10004566,18588309:150077 -k1,12554:11102295,18588309:150078 -k1,12554:12641735,18588309:150077 -k1,12554:14998409,18588309:150077 -k1,12554:15764525,18588309:150078 -k1,12554:18193289,18588309:150077 -h1,12554:19736007,18588309:0,0,0 -k1,12554:19886084,18588309:150077 -k1,12554:20845532,18588309:150078 -k1,12554:22493762,18588309:150077 -h1,12554:23689139,18588309:0,0,0 -k1,12554:24012887,18588309:150078 -k1,12554:25543808,18588309:150077 -k1,12554:26225382,18588309:150077 -k1,12554:27729434,18588309:150078 -k1,12554:30197519,18588309:150077 -k1,12554:32583029,18588309:0 -) -(1,12555:6764466,19453389:25818563,513147,134348 -k1,12554:8008751,19453389:172116 -k1,12554:9337576,19453389:172115 -k1,12554:10876773,19453389:172116 -k1,12554:11261854,19453389:172089 -k1,12554:12909185,19453389:172116 -k1,12554:14776717,19453389:172116 -k1,12554:16981759,19453389:172115 -k1,12554:17685372,19453389:172116 -k1,12554:18213348,19453389:172116 -k1,12554:20965616,19453389:172116 -k1,12554:22422237,19453389:172115 -k1,12554:25521191,19453389:172116 -k1,12554:26049167,19453389:172116 -k1,12554:28528149,19453389:172115 -k1,12554:31395761,19453389:172116 -k1,12554:32227169,19453389:172116 -k1,12554:32583029,19453389:0 -) -(1,12555:6764466,20318469:25818563,513147,134348 -k1,12554:9377199,20318469:158410 -k1,12554:10194901,20318469:158410 -k1,12554:10709171,20318469:158410 -k1,12554:13447733,20318469:158410 -k1,12554:14064240,20318469:158410 -k1,12554:16908315,20318469:158410 -k1,12554:18483613,20318469:158410 -k1,12554:22064969,20318469:158411 -k1,12554:23242464,20318469:158410 -k1,12554:25679561,20318469:158410 -k1,12554:26930456,20318469:158410 -k1,12554:27748158,20318469:158410 -k1,12554:28262428,20318469:158410 -k1,12554:30002877,20318469:158410 -k1,12554:32583029,20318469:0 -) -(1,12555:6764466,21183549:25818563,513147,134348 -g1,12554:8248201,21183549 -g1,12554:11149479,21183549 -g1,12554:12158078,21183549 -g1,12554:13376392,21183549 -g1,12554:16010939,21183549 -g1,12554:19292326,21183549 -g1,12554:20150847,21183549 -g1,12554:21369161,21183549 -k1,12555:32583029,21183549:8854572 -g1,12555:32583029,21183549 -) -] -g1,12555:32583029,21317897 -) -h1,12555:6630773,21317897:0,0,0 -(1,12558:6630773,22182977:25952256,513147,134348 -h1,12557:6630773,22182977:983040,0,0 -k1,12557:9597729,22182977:200681 -k1,12557:10666761,22182977:200680 -k1,12557:12595626,22182977:200681 -k1,12557:13152167,22182977:200681 -k1,12557:15090863,22182977:200681 -k1,12557:17673121,22182977:200680 -k1,12557:18489840,22182977:200681 -k1,12557:19046381,22182977:200681 -k1,12557:22000884,22182977:200680 -k1,12557:22989963,22182977:200681 -k1,12557:26272802,22182977:200681 -k1,12557:27089521,22182977:200681 -k1,12557:28309286,22182977:200680 -k1,12557:31090119,22182977:200681 -k1,12557:32583029,22182977:0 -) -(1,12558:6630773,23048057:25952256,505283,134348 -k1,12557:7876076,23048057:179032 -k1,12557:9033561,23048057:179032 -k1,12557:13060213,23048057:179033 -k1,12557:14311414,23048057:179032 -k1,12557:16991300,23048057:179032 -k1,12557:18545933,23048057:179032 -k1,12557:21118340,23048057:179032 -k1,12557:23171702,23048057:179032 -k1,12557:25570439,23048057:179033 -k1,12557:28039299,23048057:179032 -k1,12557:30445900,23048057:179032 -k1,12558:32583029,23048057:0 -) -(1,12558:6630773,23913137:25952256,513147,134348 -k1,12557:7985705,23913137:200843 -k1,12557:9921940,23913137:200842 -k1,12557:11141868,23913137:200843 -k1,12557:13080726,23913137:200843 -k1,12557:16052430,23913137:200842 -k1,12557:17014801,23913137:200843 -k1,12557:20865999,23913137:200843 -k1,12557:22085927,23913137:200843 -k1,12557:24024784,23913137:200842 -k1,12557:24884919,23913137:200843 -k1,12557:26104847,23913137:200843 -k1,12557:28885841,23913137:200842 -k1,12557:31839851,23913137:200843 -k1,12557:32583029,23913137:0 -) -(1,12558:6630773,24778217:25952256,505283,134348 -g1,12557:8002441,24778217 -g1,12557:10448244,24778217 -g1,12557:11890036,24778217 -(1,12557:11890036,24778217:0,452978,115847 -r1,12593:15765420,24778217:3875384,568825,115847 -k1,12557:11890036,24778217:-3875384 -) -(1,12557:11890036,24778217:3875384,452978,115847 -k1,12557:11890036,24778217:3277 -h1,12557:15762143,24778217:0,411205,112570 -) -k1,12558:32583029,24778217:16765181 -g1,12558:32583029,24778217 -) -(1,12560:6630773,25643297:25952256,513147,134348 -h1,12559:6630773,25643297:983040,0,0 -k1,12559:8332289,25643297:240719 -k1,12559:9745447,25643297:240719 -k1,12559:12896619,25643297:240718 -k1,12559:15098175,25643297:240719 -k1,12559:17628722,25643297:240719 -k1,12559:19263392,25643297:240719 -k1,12559:20523195,25643297:240718 -k1,12559:22417387,25643297:240719 -k1,12559:24569791,25643297:240719 -k1,12559:26244438,25643297:240719 -k1,12559:28370627,25643297:240718 -k1,12559:29768056,25643297:240719 -k1,12559:30540272,25643297:240719 -k1,12559:32583029,25643297:0 -) -(1,12560:6630773,26508377:25952256,505283,134348 -k1,12559:9619213,26508377:286391 -k1,12559:10714974,26508377:286391 -k1,12559:12020450,26508377:286391 -k1,12559:14046166,26508377:286390 -k1,12559:14948595,26508377:286391 -k1,12559:17120457,26508377:286391 -k1,12559:18425933,26508377:286391 -k1,12559:21622778,26508377:286391 -k1,12559:23413220,26508377:286391 -k1,12559:26441636,26508377:286390 -k1,12559:28121978,26508377:286391 -(1,12559:28121978,26508377:0,452978,115847 -r1,12593:31293938,26508377:3171960,568825,115847 -k1,12559:28121978,26508377:-3171960 -) -(1,12559:28121978,26508377:3171960,452978,115847 -k1,12559:28121978,26508377:3277 -h1,12559:31290661,26508377:0,411205,112570 -) -k1,12559:31753999,26508377:286391 -k1,12559:32583029,26508377:0 -) -(1,12560:6630773,27373457:25952256,513147,126483 -k1,12559:8589076,27373457:228808 -k1,12559:11981307,27373457:228808 -k1,12559:12826153,27373457:228808 -k1,12559:14548527,27373457:228808 -k1,12559:16648388,27373457:228808 -k1,12559:17493234,27373457:228808 -k1,12559:19883419,27373457:228808 -k1,12559:20570324,27373457:228808 -k1,12559:21330629,27373457:228808 -k1,12559:22894405,27373457:228808 -k1,12559:23774641,27373457:228808 -k1,12559:25095934,27373457:228808 -k1,12559:26343827,27373457:228808 -k1,12559:29352672,27373457:228808 -k1,12559:31649796,27373457:228808 -k1,12559:32583029,27373457:0 -) -(1,12560:6630773,28238537:25952256,513147,134348 -k1,12559:8964292,28238537:243576 -k1,12559:11497695,28238537:243575 -k1,12559:14122849,28238537:243576 -k1,12559:15760375,28238537:243575 -k1,12559:17023036,28238537:243576 -k1,12559:18920084,28238537:243575 -k1,12559:20901675,28238537:243576 -k1,12559:21761288,28238537:243575 -k1,12559:23177303,28238537:243576 -k1,12559:26505002,28238537:243575 -k1,12559:28540332,28238537:243576 -k1,12559:29802992,28238537:243575 -k1,12559:32583029,28238537:0 -) -(1,12560:6630773,29103617:25952256,513147,134348 -k1,12559:8624051,29103617:255263 -k1,12559:9826964,29103617:255262 -k1,12559:10852930,29103617:255263 -k1,12559:13067719,29103617:255263 -k1,12559:14890603,29103617:255263 -k1,12559:15916569,29103617:255263 -k1,12559:18506223,29103617:255262 -k1,12559:21503512,29103617:255263 -k1,12559:24512598,29103617:255263 -k1,12559:25299358,29103617:255263 -k1,12559:30591717,29103617:255262 -k1,12559:31794631,29103617:255263 -k1,12559:32583029,29103617:0 -) -(1,12560:6630773,29968697:25952256,513147,126483 -g1,12559:11275309,29968697 -g1,12559:12236066,29968697 -g1,12559:13023808,29968697 -g1,12559:14295206,29968697 -g1,12559:15598717,29968697 -g1,12559:18426595,29968697 -g1,12559:19644909,29968697 -g1,12559:23238248,29968697 -g1,12559:24096769,29968697 -g1,12559:25315083,29968697 -k1,12560:32583029,29968697:5719331 -g1,12560:32583029,29968697 -) -v1,12562:6630773,30833777:0,393216,0 -(1,12563:6630773,33924542:25952256,3483981,0 -g1,12563:6630773,33924542 -g1,12563:6237557,33924542 -r1,12593:6368629,33924542:131072,3483981,0 -g1,12563:6567858,33924542 -g1,12563:6764466,33924542 -[1,12563:6764466,33924542:25818563,3483981,0 -(1,12563:6764466,31194954:25818563,754393,260573 -(1,12562:6764466,31194954:0,754393,260573 -r1,12593:7856192,31194954:1091726,1014966,260573 -k1,12562:6764466,31194954:-1091726 -) -(1,12562:6764466,31194954:1091726,754393,260573 -) -k1,12562:8095231,31194954:239039 -k1,12562:8422911,31194954:327680 -k1,12562:9139706,31194954:239038 -k1,12562:10535455,31194954:239039 -k1,12562:12197281,31194954:239039 -k1,12562:12792179,31194954:239038 -k1,12562:15811255,31194954:239039 -k1,12562:17788309,31194954:239039 -k1,12562:18974998,31194954:239038 -k1,12562:19984740,31194954:239039 -k1,12562:22183305,31194954:239039 -k1,12562:23494512,31194954:239038 -k1,12562:25226461,31194954:239039 -k1,12562:26531771,31194954:239039 -k1,12562:28744753,31194954:239038 -k1,12562:30002877,31194954:239039 -k1,12562:32583029,31194954:0 -) -(1,12563:6764466,32060034:25818563,513147,134348 -k1,12562:8330121,32060034:197918 -k1,12562:8883898,32060034:197917 -k1,12562:10181510,32060034:197918 -k1,12562:11030855,32060034:197917 -(1,12562:11030855,32060034:0,452978,115847 -r1,12593:14202815,32060034:3171960,568825,115847 -k1,12562:11030855,32060034:-3171960 -) -(1,12562:11030855,32060034:3171960,452978,115847 -k1,12562:11030855,32060034:3277 -h1,12562:14199538,32060034:0,411205,112570 -) -k1,12562:14574403,32060034:197918 -k1,12562:15791406,32060034:197918 -k1,12562:18569475,32060034:197917 -k1,12562:19298890,32060034:197918 -k1,12562:20872408,32060034:197917 -k1,12562:23388334,32060034:197918 -k1,12562:24214087,32060034:197918 -k1,12562:26113974,32060034:197917 -k1,12562:28440501,32060034:197918 -k1,12562:29657503,32060034:197917 -k1,12562:31923737,32060034:197918 -k1,12562:32583029,32060034:0 -) -(1,12563:6764466,32925114:25818563,513147,134348 -k1,12562:7959515,32925114:175964 -k1,12562:10976465,32925114:175964 -k1,12562:13442257,32925114:175964 -k1,12562:14609781,32925114:175964 -k1,12562:15852016,32925114:175964 -k1,12562:17993405,32925114:175964 -k1,12562:18820797,32925114:175964 -k1,12562:20015847,32925114:175965 -k1,12562:22262093,32925114:175964 -k1,12562:24048932,32925114:175964 -k1,12562:25297065,32925114:175964 -k1,12562:26492114,32925114:175964 -k1,12562:28164265,32925114:175964 -k1,12562:30943974,32925114:175964 -k1,12562:32583029,32925114:0 -) -(1,12563:6764466,33790194:25818563,513147,134348 -g1,12562:7495192,33790194 -g1,12562:10549169,33790194 -g1,12562:11939843,33790194 -g1,12562:14923041,33790194 -g1,12562:16857663,33790194 -g1,12562:19836929,33790194 -k1,12563:32583029,33790194:10625355 -g1,12563:32583029,33790194 -) -] -g1,12563:32583029,33924542 -) -h1,12563:6630773,33924542:0,0,0 -(1,12566:6630773,34789622:25952256,513147,134348 -h1,12565:6630773,34789622:983040,0,0 -k1,12565:9566083,34789622:235227 -k1,12565:12827106,34789622:235226 -k1,12565:14346839,34789622:235227 -k1,12565:15573625,34789622:235226 -k1,12565:17130713,34789622:235227 -k1,12565:18033095,34789622:235226 -k1,12565:18683129,34789622:235191 -k1,12565:19909915,34789622:235226 -k1,12565:22989405,34789622:235227 -k1,12565:24492097,34789622:235226 -k1,12565:27637778,34789622:235227 -k1,12565:30533766,34789622:235226 -k1,12565:31530521,34789622:235227 -k1,12566:32583029,34789622:0 -) -(1,12566:6630773,35654702:25952256,513147,134348 -k1,12565:8744200,35654702:174217 -k1,12565:10912675,35654702:174216 -k1,12565:13127027,35654702:174217 -k1,12565:16481050,35654702:174217 -k1,12565:17940427,35654702:174216 -k1,12565:19306089,35654702:174217 -k1,12565:20584588,35654702:174217 -k1,12565:21506570,35654702:174216 -k1,12565:23548563,35654702:174217 -k1,12565:25420818,35654702:174217 -k1,12565:27893382,35654702:174216 -k1,12565:29802992,35654702:174217 -k1,12565:32583029,35654702:0 -) -(1,12566:6630773,36519782:25952256,513147,134348 -k1,12565:9056197,36519782:183437 -k1,12565:10193183,36519782:183437 -k1,12565:11480902,36519782:183437 -k1,12565:12930495,36519782:183437 -k1,12565:14180203,36519782:183437 -k1,12565:15382725,36519782:183437 -k1,12565:17636444,36519782:183437 -k1,12565:19559208,36519782:183438 -k1,12565:20504173,36519782:183437 -k1,12565:22777553,36519782:183437 -(1,12565:22777553,36519782:0,452978,115847 -r1,12593:25597802,36519782:2820249,568825,115847 -k1,12565:22777553,36519782:-2820249 -) -(1,12565:22777553,36519782:2820249,452978,115847 -k1,12565:22777553,36519782:3277 -h1,12565:25594525,36519782:0,411205,112570 -) -k1,12565:25954909,36519782:183437 -k1,12565:27532297,36519782:183437 -k1,12565:28734819,36519782:183437 -k1,12565:30988538,36519782:183437 -k1,12566:32583029,36519782:0 -) -(1,12566:6630773,37384862:25952256,513147,134348 -g1,12565:7820251,37384862 -g1,12565:8632242,37384862 -g1,12565:9850556,37384862 -(1,12565:9850556,37384862:0,452978,115847 -r1,12593:14077652,37384862:4227096,568825,115847 -k1,12565:9850556,37384862:-4227096 -) -(1,12565:9850556,37384862:4227096,452978,115847 -k1,12565:9850556,37384862:3277 -h1,12565:14074375,37384862:0,411205,112570 -) -g1,12565:14276881,37384862 -g1,12565:15423761,37384862 -g1,12565:19139652,37384862 -g1,12565:22400068,37384862 -g1,12565:23212059,37384862 -g1,12565:24430373,37384862 -g1,12565:25044445,37384862 -g1,12565:28403165,37384862 -k1,12566:32583029,37384862:2958929 -g1,12566:32583029,37384862 -) -v1,12568:6630773,38249942:0,393216,0 -(1,12593:6630773,42844435:25952256,4987709,0 -g1,12593:6630773,42844435 -g1,12593:6237557,42844435 -r1,12593:6368629,42844435:131072,4987709,0 -g1,12593:6567858,42844435 -g1,12593:6764466,42844435 -[1,12593:6764466,42844435:25818563,4987709,0 -(1,12569:6764466,38522419:25818563,665693,196608 -(1,12568:6764466,38522419:0,665693,196608 -r1,12593:7868133,38522419:1103667,862301,196608 -k1,12568:6764466,38522419:-1103667 -) -(1,12568:6764466,38522419:1103667,665693,196608 -) -k1,12568:8108051,38522419:239918 -k1,12568:9425980,38522419:327680 -k1,12568:13599368,38522419:239917 -k1,12568:15930540,38522419:239918 -k1,12568:17189543,38522419:239918 -k1,12568:19497777,38522419:239918 -k1,12568:22119272,38522419:239917 -k1,12568:24369179,38522419:239918 -k1,12568:26248152,38522419:239918 -k1,12568:28055691,38522419:239918 -k1,12568:30039521,38522419:239917 -k1,12568:30895477,38522419:239918 -k1,12568:32583029,38522419:0 -) -(1,12569:6764466,39387499:25818563,505283,126483 -k1,12568:11068811,39387499:274536 -k1,12568:12724191,39387499:274536 -k1,12568:14717081,39387499:274536 -k1,12568:17424313,39387499:274536 -k1,12568:19436864,39387499:274536 -k1,12568:22202424,39387499:274537 -k1,12568:23668405,39387499:274536 -k1,12568:25988975,39387499:274536 -k1,12568:26721608,39387499:274536 -k1,12568:29626104,39387499:274536 -k1,12568:30552068,39387499:274536 -k1,12568:32583029,39387499:0 -) -(1,12569:6764466,40252579:25818563,513147,134348 -g1,12568:9253523,40252579 -g1,12568:10919448,40252579 -g1,12568:12816715,40252579 -g1,12568:14396132,40252579 -g1,12568:15586921,40252579 -g1,12568:18606164,40252579 -g1,12568:19566921,40252579 -g1,12568:20122010,40252579 -g1,12568:23083582,40252579 -g1,12568:25242337,40252579 -g1,12568:26835517,40252579 -g1,12568:28053831,40252579 -g1,12568:29906533,40252579 -k1,12569:32583029,40252579:886053 -g1,12569:32583029,40252579 -) -v1,12571:6764466,40937434:0,393216,0 -(1,12577:6764466,42647827:25818563,2103609,196608 -g1,12577:6764466,42647827 -g1,12577:6764466,42647827 -g1,12577:6567858,42647827 -(1,12577:6567858,42647827:0,2103609,196608 -r1,12593:32779637,42647827:26211779,2300217,196608 -k1,12577:6567857,42647827:-26211780 -) -(1,12577:6567858,42647827:26211779,2103609,196608 -[1,12577:6764466,42647827:25818563,1907001,0 -(1,12573:6764466,41165265:25818563,424439,79822 -(1,12572:6764466,41165265:0,0,0 -g1,12572:6764466,41165265 -g1,12572:6764466,41165265 -g1,12572:6436786,41165265 -(1,12572:6436786,41165265:0,0,0 -) -g1,12572:6764466,41165265 -) -k1,12573:6764466,41165265:0 -h1,12573:10415960,41165265:0,0,0 -k1,12573:32583028,41165265:22167068 -g1,12573:32583028,41165265 -) -(1,12574:6764466,41850120:25818563,424439,86428 -h1,12574:6764466,41850120:0,0,0 -g1,12574:10415960,41850120 -h1,12574:11079868,41850120:0,0,0 -k1,12574:32583028,41850120:21503160 -g1,12574:32583028,41850120 -) -(1,12575:6764466,42534975:25818563,431045,112852 -h1,12575:6764466,42534975:0,0,0 -g1,12575:15395269,42534975 -g1,12575:16059177,42534975 -g1,12575:18714809,42534975 -g1,12575:19710671,42534975 -k1,12575:19710671,42534975:1652 -h1,12575:22036001,42534975:0,0,0 -k1,12575:32583029,42534975:10547028 -g1,12575:32583029,42534975 -) -] -) -g1,12577:32583029,42647827 -g1,12577:6764466,42647827 -g1,12577:6764466,42647827 -g1,12577:32583029,42647827 -g1,12577:32583029,42647827 -) -h1,12577:6764466,42844435:0,0,0 -] -g1,12593:32583029,42844435 -) -] -(1,12593:32583029,45706769:0,0,0 -g1,12593:32583029,45706769 -) -) -] -(1,12593:6630773,47279633:25952256,0,0 -h1,12593:6630773,47279633:25952256,0,0 -) -] -(1,12593:4262630,4025873:0,0,0 -[1,12593:-473656,4025873:0,0,0 -(1,12593:-473656,-710413:0,0,0 -(1,12593:-473656,-710413:0,0,0 -g1,12593:-473656,-710413 -) -g1,12593:-473656,-710413 -) -] -) -] -!25850 -}199 -Input:2068:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2069:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2070:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,49800853:0,16384,2228224 +g1,12591:29030814,49800853 +g1,12591:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12591:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12591:37855564,49800853:1179648,16384,0 +) +) +k1,12591:3078556,49800853:-34777008 +) +] +g1,12591:6630773,4812305 +k1,12591:23588214,4812305:15762064 +g1,12591:25210885,4812305 +g1,12591:25997972,4812305 +g1,12591:28481131,4812305 +g1,12591:30046786,4812305 +) +) +] +[1,12591:6630773,45706769:25952256,40108032,0 +(1,12591:6630773,45706769:25952256,40108032,0 +(1,12591:6630773,45706769:0,0,0 +g1,12591:6630773,45706769 +) +[1,12591:6630773,45706769:25952256,40108032,0 +(1,12546:6630773,6254097:25952256,513147,134348 +h1,12545:6630773,6254097:983040,0,0 +k1,12545:9068553,6254097:258053 +k1,12545:11131409,6254097:257994 +k1,12545:14672815,6254097:258052 +k1,12545:16769153,6254097:258053 +k1,12545:17797909,6254097:258053 +k1,12545:20354310,6254097:258053 +k1,12545:21271655,6254097:258053 +k1,12545:23563290,6254097:258053 +k1,12545:26485382,6254097:258053 +k1,12545:27402726,6254097:258052 +k1,12545:30744903,6254097:258053 +k1,12545:31812326,6254097:258053 +k1,12545:32583029,6254097:0 +) +(1,12546:6630773,7119177:25952256,513147,134348 +g1,12545:10022916,7119177 +g1,12545:12802297,7119177 +g1,12545:14793280,7119177 +g1,12545:16373353,7119177 +g1,12545:17104079,7119177 +g1,12545:18589124,7119177 +g1,12545:21997651,7119177 +g1,12545:23144531,7119177 +g1,12545:26458031,7119177 +k1,12546:32583029,7119177:1336938 +g1,12546:32583029,7119177 +) +(1,12547:6630773,9235995:25952256,555811,147783 +(1,12547:6630773,9235995:2450326,534184,12975 +g1,12547:6630773,9235995 +g1,12547:9081099,9235995 +) +g1,12547:10960475,9235995 +g1,12547:14533236,9235995 +k1,12547:32583029,9235995:16189882 +g1,12547:32583029,9235995 +) +(1,12550:6630773,10494291:25952256,513147,134348 +k1,12549:7232148,10494291:186532 +k1,12549:10329146,10494291:186544 +k1,12549:12476528,10494291:186545 +k1,12549:13429188,10494291:186544 +k1,12549:15905560,10494291:186544 +k1,12549:18102094,10494291:186545 +k1,12549:18644498,10494291:186544 +k1,12549:22345083,10494291:186545 +k1,12549:23925578,10494291:186544 +k1,12549:25131207,10494291:186544 +k1,12549:26971225,10494291:186545 +k1,12549:28895784,10494291:186544 +k1,12549:29768491,10494291:186545 +k1,12549:30974120,10494291:186544 +k1,12550:32583029,10494291:0 +) +(1,12550:6630773,11359371:25952256,513147,134348 +k1,12549:7910526,11359371:202341 +k1,12549:9892169,11359371:202341 +k1,12549:12620923,11359371:202341 +k1,12549:14014709,11359371:202341 +k1,12549:17181243,11359371:202341 +k1,12549:17739444,11359371:202341 +k1,12549:20521936,11359371:202340 +k1,12549:22118228,11359371:202341 +(1,12549:22118228,11359371:0,452978,115847 +r1,12591:25290188,11359371:3171960,568825,115847 +k1,12549:22118228,11359371:-3171960 +) +(1,12549:22118228,11359371:3171960,452978,115847 +k1,12549:22118228,11359371:3277 +h1,12549:25286911,11359371:0,411205,112570 +) +k1,12549:25492529,11359371:202341 +k1,12549:27740904,11359371:202341 +k1,12549:29986002,11359371:202341 +k1,12549:31563944,11359371:202341 +k1,12549:32583029,11359371:0 +) +(1,12550:6630773,12224451:25952256,505283,134348 +k1,12549:9618156,12224451:146397 +k1,12549:12228052,12224451:146398 +k1,12549:15470370,12224451:146397 +k1,12549:15972627,12224451:146397 +k1,12549:18699177,12224451:146398 +k1,12549:20373218,12224451:146397 +k1,12549:22216342,12224451:146397 +k1,12549:24652567,12224451:146397 +k1,12549:25450393,12224451:146398 +k1,12549:26615875,12224451:146397 +k1,12549:28832554,12224451:146397 +k1,12549:30427298,12224451:146398 +k1,12549:31298523,12224451:146397 +k1,12549:32583029,12224451:0 +) +(1,12550:6630773,13089531:25952256,513147,134348 +k1,12549:8221058,13089531:210097 +k1,12549:9535438,13089531:210098 +k1,12549:10493301,13089531:210097 +k1,12549:13502441,13089531:210097 +k1,12549:16172761,13089531:210098 +k1,12549:20033213,13089531:210097 +k1,12549:21262395,13089531:210097 +k1,12549:23210508,13089531:210098 +k1,12549:24079897,13089531:210097 +k1,12549:25309079,13089531:210097 +k1,12549:29218684,13089531:210098 +k1,12549:30974120,13089531:210097 +k1,12550:32583029,13089531:0 +) +(1,12550:6630773,13954611:25952256,513147,134348 +k1,12549:8284059,13954611:245573 +k1,12549:9344899,13954611:245572 +k1,12549:10656743,13954611:245573 +k1,12549:12975220,13954611:245573 +k1,12549:13986908,13954611:245572 +k1,12549:15251566,13954611:245573 +k1,12549:18522936,13954611:245573 +k1,12549:19959953,13954611:245572 +k1,12549:22495354,13954611:245573 +k1,12549:25122504,13954611:245572 +k1,12549:25984115,13954611:245573 +k1,12549:27738327,13954611:245573 +k1,12549:29653756,13954611:245572 +k1,12549:31591469,13954611:245573 +k1,12549:32583029,13954611:0 +) +(1,12550:6630773,14819691:25952256,505283,134348 +k1,12549:8203091,14819691:154774 +k1,12549:11016005,14819691:154774 +k1,12549:11786817,14819691:154774 +k1,12549:13543292,14819691:154775 +k1,12549:15569119,14819691:154774 +k1,12549:16375321,14819691:154774 +k1,12549:18259590,14819691:154774 +k1,12549:20773005,14819691:154774 +k1,12549:21283639,14819691:154774 +k1,12549:25503612,14819691:154775 +k1,12549:27480942,14819691:154774 +k1,12549:29144355,14819691:154774 +k1,12549:32583029,14819691:0 +) +(1,12550:6630773,15684771:25952256,513147,126483 +g1,12549:7446040,15684771 +g1,12549:9632321,15684771 +g1,12549:12669259,15684771 +g1,12549:14753959,15684771 +g1,12549:16722005,15684771 +g1,12549:19911642,15684771 +g1,12549:22386281,15684771 +k1,12550:32583029,15684771:6012275 +g1,12550:32583029,15684771 +) +v1,12552:6630773,16549851:0,393216,0 +(1,12553:6630773,21317897:25952256,5161262,0 +g1,12553:6630773,21317897 +g1,12553:6237557,21317897 +r1,12591:6368629,21317897:131072,5161262,0 +g1,12553:6567858,21317897 +g1,12553:6764466,21317897 +[1,12553:6764466,21317897:25818563,5161262,0 +(1,12553:6764466,16858149:25818563,701514,196608 +(1,12552:6764466,16858149:0,701514,196608 +r1,12591:7761522,16858149:997056,898122,196608 +k1,12552:6764466,16858149:-997056 +) +(1,12552:6764466,16858149:997056,701514,196608 +) +k1,12552:8142785,16858149:381263 +k1,12552:8470465,16858149:327680 +k1,12552:11386661,16858149:381263 +k1,12552:15624062,16858149:381263 +k1,12552:17109607,16858149:381263 +k1,12552:18238636,16858149:381263 +k1,12552:21517245,16858149:381262 +k1,12552:23089953,16858149:381263 +k1,12552:24757032,16858149:381263 +k1,12552:28112319,16858149:381263 +k1,12552:29887533,16858149:381263 +k1,12553:32583029,16858149:0 +) +(1,12553:6764466,17723229:25818563,513147,134348 +(1,12552:6764466,17723229:0,452978,115847 +r1,12591:9584715,17723229:2820249,568825,115847 +k1,12552:6764466,17723229:-2820249 +) +(1,12552:6764466,17723229:2820249,452978,115847 +k1,12552:6764466,17723229:3277 +h1,12552:9581438,17723229:0,411205,112570 +) +k1,12552:9789823,17723229:205108 +k1,12552:11730324,17723229:205108 +k1,12552:12291292,17723229:205108 +k1,12552:14845210,17723229:205108 +k1,12552:17812661,17723229:205108 +k1,12552:20707367,17723229:205108 +k1,12552:21860126,17723229:205108 +k1,12552:23084319,17723229:205108 +k1,12552:26361755,17723229:205108 +k1,12552:28134484,17723229:205108 +k1,12552:29624098,17723229:205108 +k1,12552:31714677,17723229:205108 +k1,12552:32583029,17723229:0 +) +(1,12553:6764466,18588309:25818563,513147,134348 +k1,12552:10004566,18588309:150077 +k1,12552:11102295,18588309:150078 +k1,12552:12641735,18588309:150077 +k1,12552:14998409,18588309:150077 +k1,12552:15764525,18588309:150078 +k1,12552:18193289,18588309:150077 +h1,12552:19736007,18588309:0,0,0 +k1,12552:19886084,18588309:150077 +k1,12552:20845532,18588309:150078 +k1,12552:22493762,18588309:150077 +h1,12552:23689139,18588309:0,0,0 +k1,12552:24012887,18588309:150078 +k1,12552:25543808,18588309:150077 +k1,12552:26225382,18588309:150077 +k1,12552:27729434,18588309:150078 +k1,12552:30197519,18588309:150077 +k1,12552:32583029,18588309:0 +) +(1,12553:6764466,19453389:25818563,513147,134348 +k1,12552:8008751,19453389:172116 +k1,12552:9337576,19453389:172115 +k1,12552:10876773,19453389:172116 +k1,12552:11261854,19453389:172089 +k1,12552:12909185,19453389:172116 +k1,12552:14776717,19453389:172116 +k1,12552:16981759,19453389:172115 +k1,12552:17685372,19453389:172116 +k1,12552:18213348,19453389:172116 +k1,12552:20965616,19453389:172116 +k1,12552:22422237,19453389:172115 +k1,12552:25521191,19453389:172116 +k1,12552:26049167,19453389:172116 +k1,12552:28528149,19453389:172115 +k1,12552:31395761,19453389:172116 +k1,12552:32227169,19453389:172116 +k1,12552:32583029,19453389:0 +) +(1,12553:6764466,20318469:25818563,513147,134348 +k1,12552:9377199,20318469:158410 +k1,12552:10194901,20318469:158410 +k1,12552:10709171,20318469:158410 +k1,12552:13447733,20318469:158410 +k1,12552:14064240,20318469:158410 +k1,12552:16908315,20318469:158410 +k1,12552:18483613,20318469:158410 +k1,12552:22064969,20318469:158411 +k1,12552:23242464,20318469:158410 +k1,12552:25679561,20318469:158410 +k1,12552:26930456,20318469:158410 +k1,12552:27748158,20318469:158410 +k1,12552:28262428,20318469:158410 +k1,12552:30002877,20318469:158410 +k1,12552:32583029,20318469:0 +) +(1,12553:6764466,21183549:25818563,513147,134348 +g1,12552:8248201,21183549 +g1,12552:11149479,21183549 +g1,12552:12158078,21183549 +g1,12552:13376392,21183549 +g1,12552:16010939,21183549 +g1,12552:19292326,21183549 +g1,12552:20150847,21183549 +g1,12552:21369161,21183549 +k1,12553:32583029,21183549:8854572 +g1,12553:32583029,21183549 +) +] +g1,12553:32583029,21317897 +) +h1,12553:6630773,21317897:0,0,0 +(1,12556:6630773,22182977:25952256,513147,134348 +h1,12555:6630773,22182977:983040,0,0 +k1,12555:9597729,22182977:200681 +k1,12555:10666761,22182977:200680 +k1,12555:12595626,22182977:200681 +k1,12555:13152167,22182977:200681 +k1,12555:15090863,22182977:200681 +k1,12555:17673121,22182977:200680 +k1,12555:18489840,22182977:200681 +k1,12555:19046381,22182977:200681 +k1,12555:22000884,22182977:200680 +k1,12555:22989963,22182977:200681 +k1,12555:26272802,22182977:200681 +k1,12555:27089521,22182977:200681 +k1,12555:28309286,22182977:200680 +k1,12555:31090119,22182977:200681 +k1,12555:32583029,22182977:0 +) +(1,12556:6630773,23048057:25952256,505283,134348 +k1,12555:7876076,23048057:179032 +k1,12555:9033561,23048057:179032 +k1,12555:13060213,23048057:179033 +k1,12555:14311414,23048057:179032 +k1,12555:16991300,23048057:179032 +k1,12555:18545933,23048057:179032 +k1,12555:21118340,23048057:179032 +k1,12555:23171702,23048057:179032 +k1,12555:25570439,23048057:179033 +k1,12555:28039299,23048057:179032 +k1,12555:30445900,23048057:179032 +k1,12556:32583029,23048057:0 +) +(1,12556:6630773,23913137:25952256,513147,134348 +k1,12555:7985705,23913137:200843 +k1,12555:9921940,23913137:200842 +k1,12555:11141868,23913137:200843 +k1,12555:13080726,23913137:200843 +k1,12555:16052430,23913137:200842 +k1,12555:17014801,23913137:200843 +k1,12555:20865999,23913137:200843 +k1,12555:22085927,23913137:200843 +k1,12555:24024784,23913137:200842 +k1,12555:24884919,23913137:200843 +k1,12555:26104847,23913137:200843 +k1,12555:28885841,23913137:200842 +k1,12555:31839851,23913137:200843 +k1,12555:32583029,23913137:0 +) +(1,12556:6630773,24778217:25952256,505283,134348 +g1,12555:8002441,24778217 +g1,12555:10448244,24778217 +g1,12555:11890036,24778217 +(1,12555:11890036,24778217:0,452978,115847 +r1,12591:15765420,24778217:3875384,568825,115847 +k1,12555:11890036,24778217:-3875384 +) +(1,12555:11890036,24778217:3875384,452978,115847 +k1,12555:11890036,24778217:3277 +h1,12555:15762143,24778217:0,411205,112570 +) +k1,12556:32583029,24778217:16765181 +g1,12556:32583029,24778217 +) +(1,12558:6630773,25643297:25952256,513147,134348 +h1,12557:6630773,25643297:983040,0,0 +k1,12557:8332289,25643297:240719 +k1,12557:9745447,25643297:240719 +k1,12557:12896619,25643297:240718 +k1,12557:15098175,25643297:240719 +k1,12557:17628722,25643297:240719 +k1,12557:19263392,25643297:240719 +k1,12557:20523195,25643297:240718 +k1,12557:22417387,25643297:240719 +k1,12557:24569791,25643297:240719 +k1,12557:26244438,25643297:240719 +k1,12557:28370627,25643297:240718 +k1,12557:29768056,25643297:240719 +k1,12557:30540272,25643297:240719 +k1,12557:32583029,25643297:0 +) +(1,12558:6630773,26508377:25952256,505283,134348 +k1,12557:9619213,26508377:286391 +k1,12557:10714974,26508377:286391 +k1,12557:12020450,26508377:286391 +k1,12557:14046166,26508377:286390 +k1,12557:14948595,26508377:286391 +k1,12557:17120457,26508377:286391 +k1,12557:18425933,26508377:286391 +k1,12557:21622778,26508377:286391 +k1,12557:23413220,26508377:286391 +k1,12557:26441636,26508377:286390 +k1,12557:28121978,26508377:286391 +(1,12557:28121978,26508377:0,452978,115847 +r1,12591:31293938,26508377:3171960,568825,115847 +k1,12557:28121978,26508377:-3171960 +) +(1,12557:28121978,26508377:3171960,452978,115847 +k1,12557:28121978,26508377:3277 +h1,12557:31290661,26508377:0,411205,112570 +) +k1,12557:31753999,26508377:286391 +k1,12557:32583029,26508377:0 +) +(1,12558:6630773,27373457:25952256,513147,126483 +k1,12557:8589076,27373457:228808 +k1,12557:11981307,27373457:228808 +k1,12557:12826153,27373457:228808 +k1,12557:14548527,27373457:228808 +k1,12557:16648388,27373457:228808 +k1,12557:17493234,27373457:228808 +k1,12557:19883419,27373457:228808 +k1,12557:20570324,27373457:228808 +k1,12557:21330629,27373457:228808 +k1,12557:22894405,27373457:228808 +k1,12557:23774641,27373457:228808 +k1,12557:25095934,27373457:228808 +k1,12557:26343827,27373457:228808 +k1,12557:29352672,27373457:228808 +k1,12557:31649796,27373457:228808 +k1,12557:32583029,27373457:0 +) +(1,12558:6630773,28238537:25952256,513147,134348 +k1,12557:8964292,28238537:243576 +k1,12557:11497695,28238537:243575 +k1,12557:14122849,28238537:243576 +k1,12557:15760375,28238537:243575 +k1,12557:17023036,28238537:243576 +k1,12557:18920084,28238537:243575 +k1,12557:20901675,28238537:243576 +k1,12557:21761288,28238537:243575 +k1,12557:23177303,28238537:243576 +k1,12557:26505002,28238537:243575 +k1,12557:28540332,28238537:243576 +k1,12557:29802992,28238537:243575 +k1,12557:32583029,28238537:0 +) +(1,12558:6630773,29103617:25952256,513147,134348 +k1,12557:8624051,29103617:255263 +k1,12557:9826964,29103617:255262 +k1,12557:10852930,29103617:255263 +k1,12557:13067719,29103617:255263 +k1,12557:14890603,29103617:255263 +k1,12557:15916569,29103617:255263 +k1,12557:18506223,29103617:255262 +k1,12557:21503512,29103617:255263 +k1,12557:24512598,29103617:255263 +k1,12557:25299358,29103617:255263 +k1,12557:30591717,29103617:255262 +k1,12557:31794631,29103617:255263 +k1,12557:32583029,29103617:0 +) +(1,12558:6630773,29968697:25952256,513147,126483 +g1,12557:11275309,29968697 +g1,12557:12236066,29968697 +g1,12557:13023808,29968697 +g1,12557:14295206,29968697 +g1,12557:15598717,29968697 +g1,12557:18426595,29968697 +g1,12557:19644909,29968697 +g1,12557:23238248,29968697 +g1,12557:24096769,29968697 +g1,12557:25315083,29968697 +k1,12558:32583029,29968697:5719331 +g1,12558:32583029,29968697 +) +v1,12560:6630773,30833777:0,393216,0 +(1,12561:6630773,33924542:25952256,3483981,0 +g1,12561:6630773,33924542 +g1,12561:6237557,33924542 +r1,12591:6368629,33924542:131072,3483981,0 +g1,12561:6567858,33924542 +g1,12561:6764466,33924542 +[1,12561:6764466,33924542:25818563,3483981,0 +(1,12561:6764466,31194954:25818563,754393,260573 +(1,12560:6764466,31194954:0,754393,260573 +r1,12591:7856192,31194954:1091726,1014966,260573 +k1,12560:6764466,31194954:-1091726 +) +(1,12560:6764466,31194954:1091726,754393,260573 +) +k1,12560:8095231,31194954:239039 +k1,12560:8422911,31194954:327680 +k1,12560:9139706,31194954:239038 +k1,12560:10535455,31194954:239039 +k1,12560:12197281,31194954:239039 +k1,12560:12792179,31194954:239038 +k1,12560:15811255,31194954:239039 +k1,12560:17788309,31194954:239039 +k1,12560:18974998,31194954:239038 +k1,12560:19984740,31194954:239039 +k1,12560:22183305,31194954:239039 +k1,12560:23494512,31194954:239038 +k1,12560:25226461,31194954:239039 +k1,12560:26531771,31194954:239039 +k1,12560:28744753,31194954:239038 +k1,12560:30002877,31194954:239039 +k1,12560:32583029,31194954:0 +) +(1,12561:6764466,32060034:25818563,513147,134348 +k1,12560:8330121,32060034:197918 +k1,12560:8883898,32060034:197917 +k1,12560:10181510,32060034:197918 +k1,12560:11030855,32060034:197917 +(1,12560:11030855,32060034:0,452978,115847 +r1,12591:14202815,32060034:3171960,568825,115847 +k1,12560:11030855,32060034:-3171960 +) +(1,12560:11030855,32060034:3171960,452978,115847 +k1,12560:11030855,32060034:3277 +h1,12560:14199538,32060034:0,411205,112570 +) +k1,12560:14574403,32060034:197918 +k1,12560:15791406,32060034:197918 +k1,12560:18569475,32060034:197917 +k1,12560:19298890,32060034:197918 +k1,12560:20872408,32060034:197917 +k1,12560:23388334,32060034:197918 +k1,12560:24214087,32060034:197918 +k1,12560:26113974,32060034:197917 +k1,12560:28440501,32060034:197918 +k1,12560:29657503,32060034:197917 +k1,12560:31923737,32060034:197918 +k1,12560:32583029,32060034:0 +) +(1,12561:6764466,32925114:25818563,513147,134348 +k1,12560:7959515,32925114:175964 +k1,12560:10976465,32925114:175964 +k1,12560:13442257,32925114:175964 +k1,12560:14609781,32925114:175964 +k1,12560:15852016,32925114:175964 +k1,12560:17993405,32925114:175964 +k1,12560:18820797,32925114:175964 +k1,12560:20015847,32925114:175965 +k1,12560:22262093,32925114:175964 +k1,12560:24048932,32925114:175964 +k1,12560:25297065,32925114:175964 +k1,12560:26492114,32925114:175964 +k1,12560:28164265,32925114:175964 +k1,12560:30943974,32925114:175964 +k1,12560:32583029,32925114:0 +) +(1,12561:6764466,33790194:25818563,513147,134348 +g1,12560:7495192,33790194 +g1,12560:10549169,33790194 +g1,12560:11939843,33790194 +g1,12560:14923041,33790194 +g1,12560:16857663,33790194 +g1,12560:19836929,33790194 +k1,12561:32583029,33790194:10625355 +g1,12561:32583029,33790194 +) +] +g1,12561:32583029,33924542 +) +h1,12561:6630773,33924542:0,0,0 +(1,12564:6630773,34789622:25952256,513147,134348 +h1,12563:6630773,34789622:983040,0,0 +k1,12563:9566083,34789622:235227 +k1,12563:12827106,34789622:235226 +k1,12563:14346839,34789622:235227 +k1,12563:15573625,34789622:235226 +k1,12563:17130713,34789622:235227 +k1,12563:18033095,34789622:235226 +k1,12563:18683129,34789622:235191 +k1,12563:19909915,34789622:235226 +k1,12563:22989405,34789622:235227 +k1,12563:24492097,34789622:235226 +k1,12563:27637778,34789622:235227 +k1,12563:30533766,34789622:235226 +k1,12563:31530521,34789622:235227 +k1,12564:32583029,34789622:0 +) +(1,12564:6630773,35654702:25952256,513147,134348 +k1,12563:8744200,35654702:174217 +k1,12563:10912675,35654702:174216 +k1,12563:13127027,35654702:174217 +k1,12563:16481050,35654702:174217 +k1,12563:17940427,35654702:174216 +k1,12563:19306089,35654702:174217 +k1,12563:20584588,35654702:174217 +k1,12563:21506570,35654702:174216 +k1,12563:23548563,35654702:174217 +k1,12563:25420818,35654702:174217 +k1,12563:27893382,35654702:174216 +k1,12563:29802992,35654702:174217 +k1,12563:32583029,35654702:0 +) +(1,12564:6630773,36519782:25952256,513147,134348 +k1,12563:9056197,36519782:183437 +k1,12563:10193183,36519782:183437 +k1,12563:11480902,36519782:183437 +k1,12563:12930495,36519782:183437 +k1,12563:14180203,36519782:183437 +k1,12563:15382725,36519782:183437 +k1,12563:17636444,36519782:183437 +k1,12563:19559208,36519782:183438 +k1,12563:20504173,36519782:183437 +k1,12563:22777553,36519782:183437 +(1,12563:22777553,36519782:0,452978,115847 +r1,12591:25597802,36519782:2820249,568825,115847 +k1,12563:22777553,36519782:-2820249 +) +(1,12563:22777553,36519782:2820249,452978,115847 +k1,12563:22777553,36519782:3277 +h1,12563:25594525,36519782:0,411205,112570 +) +k1,12563:25954909,36519782:183437 +k1,12563:27532297,36519782:183437 +k1,12563:28734819,36519782:183437 +k1,12563:30988538,36519782:183437 +k1,12564:32583029,36519782:0 +) +(1,12564:6630773,37384862:25952256,513147,134348 +g1,12563:7820251,37384862 +g1,12563:8632242,37384862 +g1,12563:9850556,37384862 +(1,12563:9850556,37384862:0,452978,115847 +r1,12591:14077652,37384862:4227096,568825,115847 +k1,12563:9850556,37384862:-4227096 +) +(1,12563:9850556,37384862:4227096,452978,115847 +k1,12563:9850556,37384862:3277 +h1,12563:14074375,37384862:0,411205,112570 +) +g1,12563:14276881,37384862 +g1,12563:15423761,37384862 +g1,12563:19139652,37384862 +g1,12563:22400068,37384862 +g1,12563:23212059,37384862 +g1,12563:24430373,37384862 +g1,12563:25044445,37384862 +g1,12563:28403165,37384862 +k1,12564:32583029,37384862:2958929 +g1,12564:32583029,37384862 +) +v1,12566:6630773,38249942:0,393216,0 +(1,12591:6630773,42844435:25952256,4987709,0 +g1,12591:6630773,42844435 +g1,12591:6237557,42844435 +r1,12591:6368629,42844435:131072,4987709,0 +g1,12591:6567858,42844435 +g1,12591:6764466,42844435 +[1,12591:6764466,42844435:25818563,4987709,0 +(1,12567:6764466,38522419:25818563,665693,196608 +(1,12566:6764466,38522419:0,665693,196608 +r1,12591:7868133,38522419:1103667,862301,196608 +k1,12566:6764466,38522419:-1103667 +) +(1,12566:6764466,38522419:1103667,665693,196608 +) +k1,12566:8108051,38522419:239918 +k1,12566:9425980,38522419:327680 +k1,12566:13599368,38522419:239917 +k1,12566:15930540,38522419:239918 +k1,12566:17189543,38522419:239918 +k1,12566:19497777,38522419:239918 +k1,12566:22119272,38522419:239917 +k1,12566:24369179,38522419:239918 +k1,12566:26248152,38522419:239918 +k1,12566:28055691,38522419:239918 +k1,12566:30039521,38522419:239917 +k1,12566:30895477,38522419:239918 +k1,12566:32583029,38522419:0 +) +(1,12567:6764466,39387499:25818563,505283,126483 +k1,12566:11068811,39387499:274536 +k1,12566:12724191,39387499:274536 +k1,12566:14717081,39387499:274536 +k1,12566:17424313,39387499:274536 +k1,12566:19436864,39387499:274536 +k1,12566:22202424,39387499:274537 +k1,12566:23668405,39387499:274536 +k1,12566:25988975,39387499:274536 +k1,12566:26721608,39387499:274536 +k1,12566:29626104,39387499:274536 +k1,12566:30552068,39387499:274536 +k1,12566:32583029,39387499:0 +) +(1,12567:6764466,40252579:25818563,513147,134348 +g1,12566:9253523,40252579 +g1,12566:10919448,40252579 +g1,12566:12816715,40252579 +g1,12566:14396132,40252579 +g1,12566:15586921,40252579 +g1,12566:18606164,40252579 +g1,12566:19566921,40252579 +g1,12566:20122010,40252579 +g1,12566:23083582,40252579 +g1,12566:25242337,40252579 +g1,12566:26835517,40252579 +g1,12566:28053831,40252579 +g1,12566:29906533,40252579 +k1,12567:32583029,40252579:886053 +g1,12567:32583029,40252579 +) +v1,12569:6764466,40937434:0,393216,0 +(1,12575:6764466,42647827:25818563,2103609,196608 +g1,12575:6764466,42647827 +g1,12575:6764466,42647827 +g1,12575:6567858,42647827 +(1,12575:6567858,42647827:0,2103609,196608 +r1,12591:32779637,42647827:26211779,2300217,196608 +k1,12575:6567857,42647827:-26211780 +) +(1,12575:6567858,42647827:26211779,2103609,196608 +[1,12575:6764466,42647827:25818563,1907001,0 +(1,12571:6764466,41165265:25818563,424439,79822 +(1,12570:6764466,41165265:0,0,0 +g1,12570:6764466,41165265 +g1,12570:6764466,41165265 +g1,12570:6436786,41165265 +(1,12570:6436786,41165265:0,0,0 +) +g1,12570:6764466,41165265 +) +k1,12571:6764466,41165265:0 +h1,12571:10415960,41165265:0,0,0 +k1,12571:32583028,41165265:22167068 +g1,12571:32583028,41165265 +) +(1,12572:6764466,41850120:25818563,424439,86428 +h1,12572:6764466,41850120:0,0,0 +g1,12572:10415960,41850120 +h1,12572:11079868,41850120:0,0,0 +k1,12572:32583028,41850120:21503160 +g1,12572:32583028,41850120 +) +(1,12573:6764466,42534975:25818563,431045,112852 +h1,12573:6764466,42534975:0,0,0 +g1,12573:15395269,42534975 +g1,12573:16059177,42534975 +g1,12573:18714809,42534975 +g1,12573:19710671,42534975 +k1,12573:19710671,42534975:1652 +h1,12573:22036001,42534975:0,0,0 +k1,12573:32583029,42534975:10547028 +g1,12573:32583029,42534975 +) +] +) +g1,12575:32583029,42647827 +g1,12575:6764466,42647827 +g1,12575:6764466,42647827 +g1,12575:32583029,42647827 +g1,12575:32583029,42647827 +) +h1,12575:6764466,42844435:0,0,0 +] +g1,12591:32583029,42844435 +) +] +(1,12591:32583029,45706769:0,0,0 +g1,12591:32583029,45706769 +) +) +] +(1,12591:6630773,47279633:25952256,0,0 +h1,12591:6630773,47279633:25952256,0,0 +) +] +(1,12591:4262630,4025873:0,0,0 +[1,12591:-473656,4025873:0,0,0 +(1,12591:-473656,-710413:0,0,0 +(1,12591:-473656,-710413:0,0,0 +g1,12591:-473656,-710413 +) +g1,12591:-473656,-710413 +) +] +) +] +!26038 +}200 Input:2071:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2072:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2073:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2074:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{200 -[1,12668:4262630,47279633:28320399,43253760,0 -(1,12668:4262630,4025873:0,0,0 -[1,12668:-473656,4025873:0,0,0 -(1,12668:-473656,-710413:0,0,0 -(1,12668:-473656,-644877:0,0,0 -k1,12668:-473656,-644877:-65536 +{201 +[1,12666:4262630,47279633:28320399,43253760,0 +(1,12666:4262630,4025873:0,0,0 +[1,12666:-473656,4025873:0,0,0 +(1,12666:-473656,-710413:0,0,0 +(1,12666:-473656,-644877:0,0,0 +k1,12666:-473656,-644877:-65536 ) -(1,12668:-473656,4736287:0,0,0 -k1,12668:-473656,4736287:5209943 +(1,12666:-473656,4736287:0,0,0 +k1,12666:-473656,4736287:5209943 ) -g1,12668:-473656,-710413 +g1,12666:-473656,-710413 ) ] ) -[1,12668:6630773,47279633:25952256,43253760,0 -[1,12668:6630773,4812305:25952256,786432,0 -(1,12668:6630773,4812305:25952256,505283,134348 -(1,12668:6630773,4812305:25952256,505283,134348 -g1,12668:3078558,4812305 -[1,12668:3078558,4812305:0,0,0 -(1,12668:3078558,2439708:0,1703936,0 -k1,12668:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12668:2537886,2439708:1179648,16384,0 +[1,12666:6630773,47279633:25952256,43253760,0 +[1,12666:6630773,4812305:25952256,786432,0 +(1,12666:6630773,4812305:25952256,505283,134348 +(1,12666:6630773,4812305:25952256,505283,134348 +g1,12666:3078558,4812305 +[1,12666:3078558,4812305:0,0,0 +(1,12666:3078558,2439708:0,1703936,0 +k1,12666:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12666:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12668:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12666:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12668:3078558,4812305:0,0,0 -(1,12668:3078558,2439708:0,1703936,0 -g1,12668:29030814,2439708 -g1,12668:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12668:36151628,1915420:16384,1179648,0 +[1,12666:3078558,4812305:0,0,0 +(1,12666:3078558,2439708:0,1703936,0 +g1,12666:29030814,2439708 +g1,12666:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12666:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12668:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12666:37855564,2439708:1179648,16384,0 ) ) -k1,12668:3078556,2439708:-34777008 +k1,12666:3078556,2439708:-34777008 ) ] -[1,12668:3078558,4812305:0,0,0 -(1,12668:3078558,49800853:0,16384,2228224 -k1,12668:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12668:2537886,49800853:1179648,16384,0 +[1,12666:3078558,4812305:0,0,0 +(1,12666:3078558,49800853:0,16384,2228224 +k1,12666:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12666:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12668:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12666:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 ) ] ) ) ) ] -[1,12668:3078558,4812305:0,0,0 -(1,12668:3078558,49800853:0,16384,2228224 -g1,12668:29030814,49800853 -g1,12668:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12668:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 -) -] -) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12668:37855564,49800853:1179648,16384,0 -) -) -k1,12668:3078556,49800853:-34777008 -) -] -g1,12668:6630773,4812305 -g1,12668:6630773,4812305 -g1,12668:9205682,4812305 -g1,12668:11988340,4812305 -k1,12668:31387652,4812305:19399312 -) -) -] -[1,12668:6630773,45706769:25952256,40108032,0 -(1,12668:6630773,45706769:25952256,40108032,0 -(1,12668:6630773,45706769:0,0,0 -g1,12668:6630773,45706769 -) -[1,12668:6630773,45706769:25952256,40108032,0 -v1,12593:6630773,6254097:0,393216,0 -(1,12593:6630773,10777755:25952256,4916874,0 -g1,12593:6630773,10777755 -g1,12593:6237557,10777755 -r1,12668:6368629,10777755:131072,4916874,0 -g1,12593:6567858,10777755 -g1,12593:6764466,10777755 -[1,12593:6764466,10777755:25818563,4916874,0 -v1,12581:6764466,6254097:0,393216,0 -(1,12590:6764466,10581147:25818563,4720266,196608 -g1,12590:6764466,10581147 -g1,12590:6764466,10581147 -g1,12590:6567858,10581147 -(1,12590:6567858,10581147:0,4720266,196608 -r1,12668:32779637,10581147:26211779,4916874,196608 -k1,12590:6567857,10581147:-26211780 -) -(1,12590:6567858,10581147:26211779,4720266,196608 -[1,12590:6764466,10581147:25818563,4523658,0 -(1,12583:6764466,6465412:25818563,407923,9908 -(1,12582:6764466,6465412:0,0,0 -g1,12582:6764466,6465412 -g1,12582:6764466,6465412 -g1,12582:6436786,6465412 -(1,12582:6436786,6465412:0,0,0 -) -g1,12582:6764466,6465412 -) -g1,12583:8424236,6465412 -g1,12583:9420098,6465412 -h1,12583:10747914,6465412:0,0,0 -k1,12583:32583030,6465412:21835116 -g1,12583:32583030,6465412 -) -(1,12584:6764466,7150267:25818563,424439,79822 -h1,12584:6764466,7150267:0,0,0 -k1,12584:6764466,7150267:0 -h1,12584:10415960,7150267:0,0,0 -k1,12584:32583028,7150267:22167068 -g1,12584:32583028,7150267 -) -(1,12585:6764466,7835122:25818563,431045,112852 -h1,12585:6764466,7835122:0,0,0 -g1,12585:10415960,7835122 -g1,12585:11411822,7835122 -g1,12585:12075730,7835122 -g1,12585:14399408,7835122 -g1,12585:16723086,7835122 -g1,12585:19378718,7835122 -g1,12585:20374580,7835122 -g1,12585:21702396,7835122 -g1,12585:24026074,7835122 -k1,12585:24026074,7835122:14864 -h1,12585:27692431,7835122:0,0,0 -k1,12585:32583029,7835122:4890598 -g1,12585:32583029,7835122 -) -(1,12586:6764466,8519977:25818563,424439,106246 -h1,12586:6764466,8519977:0,0,0 -g1,12586:9752052,8519977 -g1,12586:10415960,8519977 -g1,12586:12407684,8519977 -k1,12586:12407684,8519977:9909 -h1,12586:13081501,8519977:0,0,0 -k1,12586:32583029,8519977:19501528 -g1,12586:32583029,8519977 -) -(1,12587:6764466,9204832:25818563,424439,86428 -h1,12587:6764466,9204832:0,0,0 -g1,12587:10415960,9204832 -h1,12587:11079868,9204832:0,0,0 -k1,12587:32583028,9204832:21503160 -g1,12587:32583028,9204832 -) -(1,12588:6764466,9889687:25818563,431045,112852 -h1,12588:6764466,9889687:0,0,0 -k1,12588:15421080,9889687:357765 -k1,12588:16110798,9889687:357764 -k1,12588:17464425,9889687:357765 -k1,12588:19481960,9889687:357765 -k1,12588:22163402,9889687:357764 -k1,12588:25840706,9889687:357765 -k1,12588:26862379,9889687:357765 -k1,12588:27884052,9889687:357765 -k1,12588:29237678,9889687:357764 -k1,12588:31587167,9889687:357765 -k1,12588:32583029,9889687:0 -) -(1,12588:6764466,10574542:25818563,424439,6605 -k1,12588:6764466,10574542:14864 -h1,12588:9766915,10574542:0,0,0 -k1,12588:32583029,10574542:22816114 -g1,12588:32583029,10574542 -) -] -) -g1,12590:32583029,10581147 -g1,12590:6764466,10581147 -g1,12590:6764466,10581147 -g1,12590:32583029,10581147 -g1,12590:32583029,10581147 -) -h1,12590:6764466,10777755:0,0,0 -] -g1,12593:32583029,10777755 -) -h1,12593:6630773,10777755:0,0,0 -v1,12596:6630773,11642835:0,393216,0 -(1,12661:6630773,37774992:25952256,26525373,0 -g1,12661:6630773,37774992 -g1,12661:6237557,37774992 -r1,12668:6368629,37774992:131072,26525373,0 -g1,12661:6567858,37774992 -g1,12661:6764466,37774992 -[1,12661:6764466,37774992:25818563,26525373,0 -(1,12597:6764466,12004012:25818563,754393,260573 -(1,12596:6764466,12004012:0,754393,260573 -r1,12668:7856192,12004012:1091726,1014966,260573 -k1,12596:6764466,12004012:-1091726 -) -(1,12596:6764466,12004012:1091726,754393,260573 -) -k1,12596:8088667,12004012:232475 -k1,12596:8416347,12004012:327680 -k1,12596:9276658,12004012:232476 -k1,12596:10528218,12004012:232475 -k1,12596:14411049,12004012:232476 -k1,12596:16672519,12004012:232475 -k1,12596:17117953,12004012:232442 -k1,12596:18863654,12004012:232475 -k1,12596:19451990,12004012:232476 -k1,12596:21073828,12004012:232475 -k1,12596:23182599,12004012:232475 -k1,12596:25548272,12004012:232476 -k1,12596:26852916,12004012:232475 -k1,12596:28104477,12004012:232476 -k1,12596:29990425,12004012:232475 -k1,12597:32583029,12004012:0 -) -(1,12597:6764466,12869092:25818563,513147,134348 -k1,12596:8531979,12869092:285744 -k1,12596:10581296,12869092:285743 -k1,12596:11518468,12869092:285744 -k1,12596:12570327,12869092:285743 -k1,12596:13270827,12869092:285657 -k1,12596:15846399,12869092:285744 -k1,12596:19112719,12869092:285743 -k1,12596:22597931,12869092:285744 -k1,12596:24080362,12869092:285744 -k1,12596:27192673,12869092:285743 -k1,12596:29176455,12869092:285744 -k1,12596:30618908,12869092:285743 -k1,12596:31563944,12869092:285744 -k1,12596:32583029,12869092:0 -) -(1,12597:6764466,13734172:25818563,513147,134348 -k1,12596:10452964,13734172:276038 -k1,12596:11260498,13734172:276037 -k1,12596:11892396,13734172:276038 -k1,12596:14863929,13734172:276037 -k1,12596:16331412,13734172:276038 -k1,12596:17626535,13734172:276038 -k1,12596:19604542,13734172:276037 -k1,12596:20412077,13734172:276038 -k1,12596:21928055,13734172:276037 -k1,12596:22735590,13734172:276038 -k1,12596:25360438,13734172:276038 -k1,12596:28398818,13734172:276037 -k1,12596:29290894,13734172:276038 -k1,12596:30851437,13734172:276037 -k1,12596:31483335,13734172:276038 -k1,12596:32583029,13734172:0 -) -(1,12597:6764466,14599252:25818563,513147,134348 -k1,12596:8747585,14599252:247726 -k1,12596:12703338,14599252:247726 -k1,12596:15640662,14599252:247726 -k1,12596:17020850,14599252:247726 -k1,12596:20829147,14599252:247726 -k1,12596:23712077,14599252:247727 -k1,12596:24315663,14599252:247726 -k1,12596:27258885,14599252:247726 -k1,12596:28698056,14599252:247726 -k1,12596:29716485,14599252:247726 -k1,12596:31923737,14599252:247726 -k1,12596:32583029,14599252:0 -) -(1,12597:6764466,15464332:25818563,513147,134348 -k1,12596:8017561,15464332:234010 -k1,12596:9905045,15464332:234011 -k1,12596:11877070,15464332:234010 -k1,12596:13395586,15464332:234010 -k1,12596:14161093,15464332:234010 -k1,12596:15461375,15464332:234011 -k1,12596:16051245,15464332:234010 -k1,12596:19154421,15464332:234010 -k1,12596:21737242,15464332:234011 -k1,12596:22780622,15464332:234010 -k1,12596:24217873,15464332:234010 -k1,12596:27878105,15464332:234010 -k1,12596:28643613,15464332:234011 -k1,12596:31247405,15464332:234010 -k1,12596:32583029,15464332:0 -) -(1,12597:6764466,16329412:25818563,513147,134348 -g1,12596:10106802,16329412 -g1,12596:11671146,16329412 -g1,12596:13460934,16329412 -g1,12596:14016023,16329412 -g1,12596:15392279,16329412 -k1,12597:32583029,16329412:15813184 -g1,12597:32583029,16329412 -) -v1,12599:6764466,17014267:0,393216,0 -(1,12609:6764466,20092770:25818563,3471719,196608 -g1,12609:6764466,20092770 -g1,12609:6764466,20092770 -g1,12609:6567858,20092770 -(1,12609:6567858,20092770:0,3471719,196608 -r1,12668:32779637,20092770:26211779,3668327,196608 -k1,12609:6567857,20092770:-26211780 -) -(1,12609:6567858,20092770:26211779,3471719,196608 -[1,12609:6764466,20092770:25818563,3275111,0 -(1,12601:6764466,17116032:25818563,298373,6605 -(1,12600:6764466,17116032:0,0,0 -g1,12600:6764466,17116032 -g1,12600:6764466,17116032 -g1,12600:6436786,17116032 -(1,12600:6436786,17116032:0,0,0 -) -g1,12600:6764466,17116032 -) -h1,12601:8092282,17116032:0,0,0 -k1,12601:32583030,17116032:24490748 -g1,12601:32583030,17116032 -) -(1,12608:6764466,17931959:25818563,431045,86428 -(1,12603:6764466,17931959:0,0,0 -g1,12603:6764466,17931959 -g1,12603:6764466,17931959 -g1,12603:6436786,17931959 -(1,12603:6436786,17931959:0,0,0 -) -g1,12603:6764466,17931959 -) -g1,12608:7760328,17931959 -g1,12608:10747913,17931959 -g1,12608:12075729,17931959 -h1,12608:13403545,17931959:0,0,0 -k1,12608:32583029,17931959:19179484 -g1,12608:32583029,17931959 -) -(1,12608:6764466,18616814:25818563,424439,79822 -h1,12608:6764466,18616814:0,0,0 -g1,12608:7760328,18616814 -h1,12608:13403545,18616814:0,0,0 -k1,12608:32583029,18616814:19179484 -g1,12608:32583029,18616814 -) -(1,12608:6764466,19301669:25818563,431045,106246 -h1,12608:6764466,19301669:0,0,0 -g1,12608:7760328,19301669 -g1,12608:11411821,19301669 -k1,12608:11411821,19301669:0 -h1,12608:17718946,19301669:0,0,0 -k1,12608:32583029,19301669:14864083 -g1,12608:32583029,19301669 -) -(1,12608:6764466,19986524:25818563,424439,106246 -h1,12608:6764466,19986524:0,0,0 -g1,12608:7760328,19986524 -g1,12608:12407683,19986524 -k1,12608:12407683,19986524:0 -h1,12608:17386992,19986524:0,0,0 -k1,12608:32583029,19986524:15196037 -g1,12608:32583029,19986524 -) -] -) -g1,12609:32583029,20092770 -g1,12609:6764466,20092770 -g1,12609:6764466,20092770 -g1,12609:32583029,20092770 -g1,12609:32583029,20092770 -) -h1,12609:6764466,20289378:0,0,0 -v1,12613:6764466,20974233:0,393216,0 -(1,12627:6764466,24414522:25818563,3833505,196608 -g1,12627:6764466,24414522 -g1,12627:6764466,24414522 -g1,12627:6567858,24414522 -(1,12627:6567858,24414522:0,3833505,196608 -r1,12668:32779637,24414522:26211779,4030113,196608 -k1,12627:6567857,24414522:-26211780 -) -(1,12627:6567858,24414522:26211779,3833505,196608 -[1,12627:6764466,24414522:25818563,3636897,0 -(1,12615:6764466,21202064:25818563,424439,79822 -(1,12614:6764466,21202064:0,0,0 -g1,12614:6764466,21202064 -g1,12614:6764466,21202064 -g1,12614:6436786,21202064 -(1,12614:6436786,21202064:0,0,0 -) -g1,12614:6764466,21202064 -) -g1,12615:8424236,21202064 -g1,12615:9420098,21202064 -k1,12615:9420098,21202064:0 -h1,12615:12407684,21202064:0,0,0 -k1,12615:32583028,21202064:20175344 -g1,12615:32583028,21202064 -) -(1,12616:6764466,21886919:25818563,298373,6605 -h1,12616:6764466,21886919:0,0,0 -h1,12616:8092282,21886919:0,0,0 -k1,12616:32583030,21886919:24490748 -g1,12616:32583030,21886919 -) -(1,12620:6764466,22702846:25818563,424439,79822 -(1,12618:6764466,22702846:0,0,0 -g1,12618:6764466,22702846 -g1,12618:6764466,22702846 -g1,12618:6436786,22702846 -(1,12618:6436786,22702846:0,0,0 -) -g1,12618:6764466,22702846 -) -g1,12620:7760328,22702846 -g1,12620:9088144,22702846 -h1,12620:9420098,22702846:0,0,0 -k1,12620:32583030,22702846:23162932 -g1,12620:32583030,22702846 -) -(1,12622:6764466,23518773:25818563,424439,79822 -(1,12621:6764466,23518773:0,0,0 -g1,12621:6764466,23518773 -g1,12621:6764466,23518773 -g1,12621:6436786,23518773 -(1,12621:6436786,23518773:0,0,0 -) -g1,12621:6764466,23518773 -) -k1,12622:6764466,23518773:0 -h1,12622:9752052,23518773:0,0,0 -k1,12622:32583028,23518773:22830976 -g1,12622:32583028,23518773 -) -(1,12626:6764466,24334700:25818563,424439,79822 -(1,12624:6764466,24334700:0,0,0 -g1,12624:6764466,24334700 -g1,12624:6764466,24334700 -g1,12624:6436786,24334700 -(1,12624:6436786,24334700:0,0,0 -) -g1,12624:6764466,24334700 -) -g1,12626:7760328,24334700 -g1,12626:9088144,24334700 -h1,12626:10084006,24334700:0,0,0 -k1,12626:32583030,24334700:22499024 -g1,12626:32583030,24334700 -) -] -) -g1,12627:32583029,24414522 -g1,12627:6764466,24414522 -g1,12627:6764466,24414522 -g1,12627:32583029,24414522 -g1,12627:32583029,24414522 -) -h1,12627:6764466,24611130:0,0,0 -v1,12631:6764466,25295985:0,393216,0 -(1,12645:6764466,28775910:25818563,3873141,196608 -g1,12645:6764466,28775910 -g1,12645:6764466,28775910 -g1,12645:6567858,28775910 -(1,12645:6567858,28775910:0,3873141,196608 -r1,12668:32779637,28775910:26211779,4069749,196608 -k1,12645:6567857,28775910:-26211780 -) -(1,12645:6567858,28775910:26211779,3873141,196608 -[1,12645:6764466,28775910:25818563,3676533,0 -(1,12633:6764466,25530422:25818563,431045,112852 -(1,12632:6764466,25530422:0,0,0 -g1,12632:6764466,25530422 -g1,12632:6764466,25530422 -g1,12632:6436786,25530422 -(1,12632:6436786,25530422:0,0,0 -) -g1,12632:6764466,25530422 -) -k1,12633:6764466,25530422:0 -h1,12633:15063315,25530422:0,0,0 -k1,12633:32583029,25530422:17519714 -g1,12633:32583029,25530422 -) -(1,12637:6764466,26346349:25818563,424439,112852 -(1,12635:6764466,26346349:0,0,0 -g1,12635:6764466,26346349 -g1,12635:6764466,26346349 -g1,12635:6436786,26346349 -(1,12635:6436786,26346349:0,0,0 -) -g1,12635:6764466,26346349 -) -g1,12637:7760328,26346349 -g1,12637:9088144,26346349 -g1,12637:13403545,26346349 -g1,12637:13735499,26346349 -g1,12637:14067453,26346349 -g1,12637:14399407,26346349 -g1,12637:14731361,26346349 -g1,12637:19710670,26346349 -g1,12637:20042624,26346349 -g1,12637:20374578,26346349 -h1,12637:25685841,26346349:0,0,0 -k1,12637:32583029,26346349:6897188 -g1,12637:32583029,26346349 -) -(1,12639:6764466,27162276:25818563,424439,79822 -(1,12638:6764466,27162276:0,0,0 -g1,12638:6764466,27162276 -g1,12638:6764466,27162276 -g1,12638:6436786,27162276 -(1,12638:6436786,27162276:0,0,0 -) -g1,12638:6764466,27162276 -) -k1,12639:6764466,27162276:0 -h1,12639:9420098,27162276:0,0,0 -k1,12639:32583030,27162276:23162932 -g1,12639:32583030,27162276 -) -(1,12640:6764466,27847131:25818563,431045,112852 -h1,12640:6764466,27847131:0,0,0 -k1,12640:6764466,27847131:0 -h1,12640:15063315,27847131:0,0,0 -k1,12640:32583029,27847131:17519714 -g1,12640:32583029,27847131 -) -(1,12644:6764466,28663058:25818563,424439,112852 -(1,12642:6764466,28663058:0,0,0 -g1,12642:6764466,28663058 -g1,12642:6764466,28663058 -g1,12642:6436786,28663058 -(1,12642:6436786,28663058:0,0,0 -) -g1,12642:6764466,28663058 -) -g1,12644:7760328,28663058 -g1,12644:9088144,28663058 -g1,12644:14067453,28663058 -g1,12644:14399407,28663058 -g1,12644:14731361,28663058 -h1,12644:20042624,28663058:0,0,0 -k1,12644:32583029,28663058:12540405 -g1,12644:32583029,28663058 -) -] -) -g1,12645:32583029,28775910 -g1,12645:6764466,28775910 -g1,12645:6764466,28775910 -g1,12645:32583029,28775910 -g1,12645:32583029,28775910 -) -h1,12645:6764466,28972518:0,0,0 -(1,12649:6764466,29837598:25818563,505283,134348 -h1,12648:6764466,29837598:983040,0,0 -k1,12648:8553833,29837598:178492 -k1,12648:9935566,29837598:178492 -k1,12648:11262249,29837598:178492 -k1,12648:14275828,29837598:178492 -(1,12648:14275828,29837598:0,452978,115847 -r1,12668:17096077,29837598:2820249,568825,115847 -k1,12648:14275828,29837598:-2820249 -) -(1,12648:14275828,29837598:2820249,452978,115847 -k1,12648:14275828,29837598:3277 -h1,12648:17092800,29837598:0,411205,112570 -) -k1,12648:17274569,29837598:178492 -k1,12648:20228511,29837598:178492 -k1,12648:21426087,29837598:178491 -k1,12648:24115919,29837598:178492 -k1,12648:25162763,29837598:178492 -k1,12648:26532700,29837598:178492 -k1,12648:29485986,29837598:178492 -k1,12648:30020338,29837598:178492 -k1,12648:31879173,29837598:178492 -k1,12648:32583029,29837598:0 -) -(1,12649:6764466,30702678:25818563,513147,134348 -k1,12648:9517515,30702678:218116 -k1,12648:13591768,30702678:218115 -k1,12648:16108232,30702678:218116 -k1,12648:17345433,30702678:218116 -k1,12648:19853377,30702678:218116 -k1,12648:22453070,30702678:218115 -k1,12648:23287224,30702678:218116 -k1,12648:24524425,30702678:218116 -k1,12648:27322693,30702678:218116 -k1,12648:29108429,30702678:218115 -k1,12648:31914562,30702678:218116 -k1,12648:32583029,30702678:0 -) -(1,12649:6764466,31567758:25818563,513147,134348 -k1,12648:10783840,31567758:200591 -k1,12648:12365274,31567758:200590 -k1,12648:13097362,31567758:200591 -k1,12648:16060295,31567758:200590 -k1,12648:16912314,31567758:200591 -k1,12648:19716649,31567758:200590 -k1,12648:20273100,31567758:200591 -k1,12648:21756885,31567758:200590 -k1,12648:23917002,31567758:200591 -k1,12648:25511543,31567758:200590 -k1,12648:26731219,31567758:200591 -k1,12648:28585282,31567758:200590 -k1,12648:30697558,31567758:200591 -k1,12648:32583029,31567758:0 -) -(1,12649:6764466,32432838:25818563,505283,134348 -k1,12648:7532056,32432838:236093 -k1,12648:10391556,32432838:236094 -k1,12648:11824336,32432838:236093 -k1,12648:13232869,32432838:236094 -k1,12648:16985624,32432838:236093 -k1,12648:19090148,32432838:236093 -k1,12648:21456817,32432838:236094 -k1,12648:23630154,32432838:236093 -k1,12648:25057693,32432838:236094 -k1,12648:26285346,32432838:236093 -k1,12648:27587711,32432838:236094 -k1,12648:30884991,32432838:236093 -k1,12648:32583029,32432838:0 -) -(1,12649:6764466,33297918:25818563,505283,134348 -g1,12648:10531475,33297918 -g1,12648:11749789,33297918 -k1,12649:32583029,33297918:19198772 -g1,12649:32583029,33297918 -) -v1,12651:6764466,33982773:0,393216,0 -(1,12656:6764466,34975281:25818563,1385724,196608 -g1,12656:6764466,34975281 -g1,12656:6764466,34975281 -g1,12656:6567858,34975281 -(1,12656:6567858,34975281:0,1385724,196608 -r1,12668:32779637,34975281:26211779,1582332,196608 -k1,12656:6567857,34975281:-26211780 -) -(1,12656:6567858,34975281:26211779,1385724,196608 -[1,12656:6764466,34975281:25818563,1189116,0 -(1,12653:6764466,34210604:25818563,424439,112852 -(1,12652:6764466,34210604:0,0,0 -g1,12652:6764466,34210604 -g1,12652:6764466,34210604 -g1,12652:6436786,34210604 -(1,12652:6436786,34210604:0,0,0 -) -g1,12652:6764466,34210604 -) -g1,12653:11743775,34210604 -g1,12653:12739637,34210604 -g1,12653:14067453,34210604 -g1,12653:15395269,34210604 -g1,12653:16391131,34210604 -h1,12653:18382855,34210604:0,0,0 -k1,12653:32583029,34210604:14200174 -g1,12653:32583029,34210604 -) -(1,12654:6764466,34895459:25818563,424439,79822 -h1,12654:6764466,34895459:0,0,0 -k1,12654:6764466,34895459:0 -h1,12654:12739637,34895459:0,0,0 -k1,12654:32583029,34895459:19843392 -g1,12654:32583029,34895459 -) -] -) -g1,12656:32583029,34975281 -g1,12656:6764466,34975281 -g1,12656:6764466,34975281 -g1,12656:32583029,34975281 -g1,12656:32583029,34975281 -) -h1,12656:6764466,35171889:0,0,0 -(1,12660:6764466,36036969:25818563,513147,126483 -h1,12659:6764466,36036969:983040,0,0 -k1,12659:9180339,36036969:236146 -k1,12659:11096827,36036969:236145 -k1,12659:14111699,36036969:236145 -k1,12659:15109373,36036969:236146 -(1,12659:15109373,36036969:0,452978,122846 -r1,12668:19688181,36036969:4578808,575824,122846 -k1,12659:15109373,36036969:-4578808 -) -(1,12659:15109373,36036969:4578808,452978,122846 -k1,12659:15109373,36036969:3277 -h1,12659:19684904,36036969:0,411205,112570 -) -k1,12659:19924327,36036969:236146 -k1,12659:21261477,36036969:236145 -k1,12659:24724615,36036969:236145 -k1,12659:28767747,36036969:236146 -k1,12659:30446340,36036969:236146 -k1,12659:31966991,36036969:236145 -k1,12659:32583029,36036969:0 -) -(1,12660:6764466,36902049:25818563,513147,134348 -k1,12659:7747050,36902049:194186 -k1,12659:10564643,36902049:194187 -(1,12659:10564643,36902049:0,452978,115847 -r1,12668:12329756,36902049:1765113,568825,115847 -k1,12659:10564643,36902049:-1765113 -) -(1,12659:10564643,36902049:1765113,452978,115847 -k1,12659:10564643,36902049:3277 -h1,12659:12326479,36902049:0,411205,112570 -) -k1,12659:12697612,36902049:194186 -k1,12659:13789641,36902049:194186 -k1,12659:15459042,36902049:194186 -k1,12659:16009089,36902049:194187 -k1,12659:17590017,36902049:194186 -k1,12659:18396965,36902049:194186 -k1,12659:19379550,36902049:194187 -k1,12659:20961789,36902049:194186 -k1,12659:22654128,36902049:194186 -k1,12659:24242265,36902049:194186 -(1,12659:24242265,36902049:0,452978,122846 -r1,12668:30227920,36902049:5985655,575824,122846 -k1,12659:24242265,36902049:-5985655 -) -(1,12659:24242265,36902049:5985655,452978,122846 -k1,12659:24242265,36902049:3277 -h1,12659:30224643,36902049:0,411205,112570 -) -k1,12659:30422107,36902049:194187 -k1,12659:31563944,36902049:194186 -k1,12659:32583029,36902049:0 -) -(1,12660:6764466,37767129:25818563,505283,7863 -k1,12660:32583029,37767129:23648666 -g1,12660:32583029,37767129 -) -] -g1,12661:32583029,37774992 -) -h1,12661:6630773,37774992:0,0,0 -(1,12663:6630773,40606152:25952256,32768,229376 -(1,12663:6630773,40606152:0,32768,229376 -(1,12663:6630773,40606152:5505024,32768,229376 -r1,12668:12135797,40606152:5505024,262144,229376 -) -k1,12663:6630773,40606152:-5505024 -) -(1,12663:6630773,40606152:25952256,32768,0 -r1,12668:32583029,40606152:25952256,32768,0 -) -) -(1,12663:6630773,42238004:25952256,606339,161218 -(1,12663:6630773,42238004:1974731,582746,14155 -g1,12663:6630773,42238004 -g1,12663:8605504,42238004 -) -g1,12663:11813360,42238004 -k1,12663:32583030,42238004:17570464 -g1,12663:32583030,42238004 -) -(1,12666:6630773,43496300:25952256,513147,126483 -k1,12665:9123927,43496300:236749 -k1,12665:11273016,43496300:236748 -k1,12665:14179046,43496300:236749 -k1,12665:15031833,43496300:236749 -k1,12665:17055748,43496300:236748 -k1,12665:18311582,43496300:236749 -k1,12665:21310674,43496300:236749 -k1,12665:23102591,43496300:236748 -k1,12665:25915560,43496300:236749 -k1,12665:28936278,43496300:236749 -k1,12665:30364471,43496300:236748 -k1,12665:31931601,43496300:236749 -k1,12665:32583029,43496300:0 -) -(1,12666:6630773,44361380:25952256,513147,134348 -k1,12665:7944161,44361380:220903 -k1,12665:9804119,44361380:220903 -k1,12665:10641061,44361380:220904 -k1,12665:11450477,44361380:220903 -k1,12665:12713402,44361380:220903 -k1,12665:13705008,44361380:220903 -k1,12665:16615510,44361380:220904 -k1,12665:19980830,44361380:220903 -k1,12665:20861025,44361380:220903 -k1,12665:22101013,44361380:220903 -k1,12665:24632060,44361380:220903 -k1,12665:26859676,44361380:220904 -k1,12665:29430700,44361380:220903 -k1,12665:30670688,44361380:220903 -k1,12665:32583029,44361380:0 -) -(1,12666:6630773,45226460:25952256,505283,134348 -g1,12665:9952793,45226460 -g1,12665:10601599,45226460 -g1,12665:13932138,45226460 -g1,12665:15932296,45226460 -g1,12665:17322970,45226460 -g1,12665:20610911,45226460 -g1,12665:21259717,45226460 -g1,12665:24878615,45226460 -k1,12666:32583029,45226460:5851056 -g1,12666:32583029,45226460 -) -] -(1,12668:32583029,45706769:0,0,0 -g1,12668:32583029,45706769 -) -) -] -(1,12668:6630773,47279633:25952256,0,0 -h1,12668:6630773,47279633:25952256,0,0 -) -] -(1,12668:4262630,4025873:0,0,0 -[1,12668:-473656,4025873:0,0,0 -(1,12668:-473656,-710413:0,0,0 -(1,12668:-473656,-710413:0,0,0 -g1,12668:-473656,-710413 +[1,12666:3078558,4812305:0,0,0 +(1,12666:3078558,49800853:0,16384,2228224 +g1,12666:29030814,49800853 +g1,12666:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12666:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 +) +] +) +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12666:37855564,49800853:1179648,16384,0 +) +) +k1,12666:3078556,49800853:-34777008 +) +] +g1,12666:6630773,4812305 +g1,12666:6630773,4812305 +g1,12666:9205682,4812305 +g1,12666:11988340,4812305 +k1,12666:31387652,4812305:19399312 +) +) +] +[1,12666:6630773,45706769:25952256,40108032,0 +(1,12666:6630773,45706769:25952256,40108032,0 +(1,12666:6630773,45706769:0,0,0 +g1,12666:6630773,45706769 +) +[1,12666:6630773,45706769:25952256,40108032,0 +v1,12591:6630773,6254097:0,393216,0 +(1,12591:6630773,10777755:25952256,4916874,0 +g1,12591:6630773,10777755 +g1,12591:6237557,10777755 +r1,12666:6368629,10777755:131072,4916874,0 +g1,12591:6567858,10777755 +g1,12591:6764466,10777755 +[1,12591:6764466,10777755:25818563,4916874,0 +v1,12579:6764466,6254097:0,393216,0 +(1,12588:6764466,10581147:25818563,4720266,196608 +g1,12588:6764466,10581147 +g1,12588:6764466,10581147 +g1,12588:6567858,10581147 +(1,12588:6567858,10581147:0,4720266,196608 +r1,12666:32779637,10581147:26211779,4916874,196608 +k1,12588:6567857,10581147:-26211780 +) +(1,12588:6567858,10581147:26211779,4720266,196608 +[1,12588:6764466,10581147:25818563,4523658,0 +(1,12581:6764466,6465412:25818563,407923,9908 +(1,12580:6764466,6465412:0,0,0 +g1,12580:6764466,6465412 +g1,12580:6764466,6465412 +g1,12580:6436786,6465412 +(1,12580:6436786,6465412:0,0,0 +) +g1,12580:6764466,6465412 +) +g1,12581:8424236,6465412 +g1,12581:9420098,6465412 +h1,12581:10747914,6465412:0,0,0 +k1,12581:32583030,6465412:21835116 +g1,12581:32583030,6465412 +) +(1,12582:6764466,7150267:25818563,424439,79822 +h1,12582:6764466,7150267:0,0,0 +k1,12582:6764466,7150267:0 +h1,12582:10415960,7150267:0,0,0 +k1,12582:32583028,7150267:22167068 +g1,12582:32583028,7150267 +) +(1,12583:6764466,7835122:25818563,431045,112852 +h1,12583:6764466,7835122:0,0,0 +g1,12583:10415960,7835122 +g1,12583:11411822,7835122 +g1,12583:12075730,7835122 +g1,12583:14399408,7835122 +g1,12583:16723086,7835122 +g1,12583:19378718,7835122 +g1,12583:20374580,7835122 +g1,12583:21702396,7835122 +g1,12583:24026074,7835122 +k1,12583:24026074,7835122:14864 +h1,12583:27692431,7835122:0,0,0 +k1,12583:32583029,7835122:4890598 +g1,12583:32583029,7835122 +) +(1,12584:6764466,8519977:25818563,424439,106246 +h1,12584:6764466,8519977:0,0,0 +g1,12584:9752052,8519977 +g1,12584:10415960,8519977 +g1,12584:12407684,8519977 +k1,12584:12407684,8519977:9909 +h1,12584:13081501,8519977:0,0,0 +k1,12584:32583029,8519977:19501528 +g1,12584:32583029,8519977 +) +(1,12585:6764466,9204832:25818563,424439,86428 +h1,12585:6764466,9204832:0,0,0 +g1,12585:10415960,9204832 +h1,12585:11079868,9204832:0,0,0 +k1,12585:32583028,9204832:21503160 +g1,12585:32583028,9204832 +) +(1,12586:6764466,9889687:25818563,431045,112852 +h1,12586:6764466,9889687:0,0,0 +k1,12586:15421080,9889687:357765 +k1,12586:16110798,9889687:357764 +k1,12586:17464425,9889687:357765 +k1,12586:19481960,9889687:357765 +k1,12586:22163402,9889687:357764 +k1,12586:25840706,9889687:357765 +k1,12586:26862379,9889687:357765 +k1,12586:27884052,9889687:357765 +k1,12586:29237678,9889687:357764 +k1,12586:31587167,9889687:357765 +k1,12586:32583029,9889687:0 +) +(1,12586:6764466,10574542:25818563,424439,6605 +k1,12586:6764466,10574542:14864 +h1,12586:9766915,10574542:0,0,0 +k1,12586:32583029,10574542:22816114 +g1,12586:32583029,10574542 +) +] +) +g1,12588:32583029,10581147 +g1,12588:6764466,10581147 +g1,12588:6764466,10581147 +g1,12588:32583029,10581147 +g1,12588:32583029,10581147 +) +h1,12588:6764466,10777755:0,0,0 +] +g1,12591:32583029,10777755 +) +h1,12591:6630773,10777755:0,0,0 +v1,12594:6630773,11642835:0,393216,0 +(1,12659:6630773,37774992:25952256,26525373,0 +g1,12659:6630773,37774992 +g1,12659:6237557,37774992 +r1,12666:6368629,37774992:131072,26525373,0 +g1,12659:6567858,37774992 +g1,12659:6764466,37774992 +[1,12659:6764466,37774992:25818563,26525373,0 +(1,12595:6764466,12004012:25818563,754393,260573 +(1,12594:6764466,12004012:0,754393,260573 +r1,12666:7856192,12004012:1091726,1014966,260573 +k1,12594:6764466,12004012:-1091726 +) +(1,12594:6764466,12004012:1091726,754393,260573 +) +k1,12594:8088667,12004012:232475 +k1,12594:8416347,12004012:327680 +k1,12594:9276658,12004012:232476 +k1,12594:10528218,12004012:232475 +k1,12594:14411049,12004012:232476 +k1,12594:16672519,12004012:232475 +k1,12594:17117953,12004012:232442 +k1,12594:18863654,12004012:232475 +k1,12594:19451990,12004012:232476 +k1,12594:21073828,12004012:232475 +k1,12594:23182599,12004012:232475 +k1,12594:25548272,12004012:232476 +k1,12594:26852916,12004012:232475 +k1,12594:28104477,12004012:232476 +k1,12594:29990425,12004012:232475 +k1,12595:32583029,12004012:0 +) +(1,12595:6764466,12869092:25818563,513147,134348 +k1,12594:8531979,12869092:285744 +k1,12594:10581296,12869092:285743 +k1,12594:11518468,12869092:285744 +k1,12594:12570327,12869092:285743 +k1,12594:13270827,12869092:285657 +k1,12594:15846399,12869092:285744 +k1,12594:19112719,12869092:285743 +k1,12594:22597931,12869092:285744 +k1,12594:24080362,12869092:285744 +k1,12594:27192673,12869092:285743 +k1,12594:29176455,12869092:285744 +k1,12594:30618908,12869092:285743 +k1,12594:31563944,12869092:285744 +k1,12594:32583029,12869092:0 +) +(1,12595:6764466,13734172:25818563,513147,134348 +k1,12594:10452964,13734172:276038 +k1,12594:11260498,13734172:276037 +k1,12594:11892396,13734172:276038 +k1,12594:14863929,13734172:276037 +k1,12594:16331412,13734172:276038 +k1,12594:17626535,13734172:276038 +k1,12594:19604542,13734172:276037 +k1,12594:20412077,13734172:276038 +k1,12594:21928055,13734172:276037 +k1,12594:22735590,13734172:276038 +k1,12594:25360438,13734172:276038 +k1,12594:28398818,13734172:276037 +k1,12594:29290894,13734172:276038 +k1,12594:30851437,13734172:276037 +k1,12594:31483335,13734172:276038 +k1,12594:32583029,13734172:0 +) +(1,12595:6764466,14599252:25818563,513147,134348 +k1,12594:8747585,14599252:247726 +k1,12594:12703338,14599252:247726 +k1,12594:15640662,14599252:247726 +k1,12594:17020850,14599252:247726 +k1,12594:20829147,14599252:247726 +k1,12594:23712077,14599252:247727 +k1,12594:24315663,14599252:247726 +k1,12594:27258885,14599252:247726 +k1,12594:28698056,14599252:247726 +k1,12594:29716485,14599252:247726 +k1,12594:31923737,14599252:247726 +k1,12594:32583029,14599252:0 +) +(1,12595:6764466,15464332:25818563,513147,134348 +k1,12594:8017561,15464332:234010 +k1,12594:9905045,15464332:234011 +k1,12594:11877070,15464332:234010 +k1,12594:13395586,15464332:234010 +k1,12594:14161093,15464332:234010 +k1,12594:15461375,15464332:234011 +k1,12594:16051245,15464332:234010 +k1,12594:19154421,15464332:234010 +k1,12594:21737242,15464332:234011 +k1,12594:22780622,15464332:234010 +k1,12594:24217873,15464332:234010 +k1,12594:27878105,15464332:234010 +k1,12594:28643613,15464332:234011 +k1,12594:31247405,15464332:234010 +k1,12594:32583029,15464332:0 +) +(1,12595:6764466,16329412:25818563,513147,134348 +g1,12594:10106802,16329412 +g1,12594:11671146,16329412 +g1,12594:13460934,16329412 +g1,12594:14016023,16329412 +g1,12594:15392279,16329412 +k1,12595:32583029,16329412:15813184 +g1,12595:32583029,16329412 +) +v1,12597:6764466,17014267:0,393216,0 +(1,12607:6764466,20092770:25818563,3471719,196608 +g1,12607:6764466,20092770 +g1,12607:6764466,20092770 +g1,12607:6567858,20092770 +(1,12607:6567858,20092770:0,3471719,196608 +r1,12666:32779637,20092770:26211779,3668327,196608 +k1,12607:6567857,20092770:-26211780 +) +(1,12607:6567858,20092770:26211779,3471719,196608 +[1,12607:6764466,20092770:25818563,3275111,0 +(1,12599:6764466,17116032:25818563,298373,6605 +(1,12598:6764466,17116032:0,0,0 +g1,12598:6764466,17116032 +g1,12598:6764466,17116032 +g1,12598:6436786,17116032 +(1,12598:6436786,17116032:0,0,0 +) +g1,12598:6764466,17116032 +) +h1,12599:8092282,17116032:0,0,0 +k1,12599:32583030,17116032:24490748 +g1,12599:32583030,17116032 +) +(1,12606:6764466,17931959:25818563,431045,86428 +(1,12601:6764466,17931959:0,0,0 +g1,12601:6764466,17931959 +g1,12601:6764466,17931959 +g1,12601:6436786,17931959 +(1,12601:6436786,17931959:0,0,0 +) +g1,12601:6764466,17931959 +) +g1,12606:7760328,17931959 +g1,12606:10747913,17931959 +g1,12606:12075729,17931959 +h1,12606:13403545,17931959:0,0,0 +k1,12606:32583029,17931959:19179484 +g1,12606:32583029,17931959 +) +(1,12606:6764466,18616814:25818563,424439,79822 +h1,12606:6764466,18616814:0,0,0 +g1,12606:7760328,18616814 +h1,12606:13403545,18616814:0,0,0 +k1,12606:32583029,18616814:19179484 +g1,12606:32583029,18616814 +) +(1,12606:6764466,19301669:25818563,431045,106246 +h1,12606:6764466,19301669:0,0,0 +g1,12606:7760328,19301669 +g1,12606:11411821,19301669 +k1,12606:11411821,19301669:0 +h1,12606:17718946,19301669:0,0,0 +k1,12606:32583029,19301669:14864083 +g1,12606:32583029,19301669 +) +(1,12606:6764466,19986524:25818563,424439,106246 +h1,12606:6764466,19986524:0,0,0 +g1,12606:7760328,19986524 +g1,12606:12407683,19986524 +k1,12606:12407683,19986524:0 +h1,12606:17386992,19986524:0,0,0 +k1,12606:32583029,19986524:15196037 +g1,12606:32583029,19986524 +) +] +) +g1,12607:32583029,20092770 +g1,12607:6764466,20092770 +g1,12607:6764466,20092770 +g1,12607:32583029,20092770 +g1,12607:32583029,20092770 +) +h1,12607:6764466,20289378:0,0,0 +v1,12611:6764466,20974233:0,393216,0 +(1,12625:6764466,24414522:25818563,3833505,196608 +g1,12625:6764466,24414522 +g1,12625:6764466,24414522 +g1,12625:6567858,24414522 +(1,12625:6567858,24414522:0,3833505,196608 +r1,12666:32779637,24414522:26211779,4030113,196608 +k1,12625:6567857,24414522:-26211780 +) +(1,12625:6567858,24414522:26211779,3833505,196608 +[1,12625:6764466,24414522:25818563,3636897,0 +(1,12613:6764466,21202064:25818563,424439,79822 +(1,12612:6764466,21202064:0,0,0 +g1,12612:6764466,21202064 +g1,12612:6764466,21202064 +g1,12612:6436786,21202064 +(1,12612:6436786,21202064:0,0,0 +) +g1,12612:6764466,21202064 +) +g1,12613:8424236,21202064 +g1,12613:9420098,21202064 +k1,12613:9420098,21202064:0 +h1,12613:12407684,21202064:0,0,0 +k1,12613:32583028,21202064:20175344 +g1,12613:32583028,21202064 +) +(1,12614:6764466,21886919:25818563,298373,6605 +h1,12614:6764466,21886919:0,0,0 +h1,12614:8092282,21886919:0,0,0 +k1,12614:32583030,21886919:24490748 +g1,12614:32583030,21886919 +) +(1,12618:6764466,22702846:25818563,424439,79822 +(1,12616:6764466,22702846:0,0,0 +g1,12616:6764466,22702846 +g1,12616:6764466,22702846 +g1,12616:6436786,22702846 +(1,12616:6436786,22702846:0,0,0 +) +g1,12616:6764466,22702846 +) +g1,12618:7760328,22702846 +g1,12618:9088144,22702846 +h1,12618:9420098,22702846:0,0,0 +k1,12618:32583030,22702846:23162932 +g1,12618:32583030,22702846 +) +(1,12620:6764466,23518773:25818563,424439,79822 +(1,12619:6764466,23518773:0,0,0 +g1,12619:6764466,23518773 +g1,12619:6764466,23518773 +g1,12619:6436786,23518773 +(1,12619:6436786,23518773:0,0,0 +) +g1,12619:6764466,23518773 +) +k1,12620:6764466,23518773:0 +h1,12620:9752052,23518773:0,0,0 +k1,12620:32583028,23518773:22830976 +g1,12620:32583028,23518773 +) +(1,12624:6764466,24334700:25818563,424439,79822 +(1,12622:6764466,24334700:0,0,0 +g1,12622:6764466,24334700 +g1,12622:6764466,24334700 +g1,12622:6436786,24334700 +(1,12622:6436786,24334700:0,0,0 +) +g1,12622:6764466,24334700 +) +g1,12624:7760328,24334700 +g1,12624:9088144,24334700 +h1,12624:10084006,24334700:0,0,0 +k1,12624:32583030,24334700:22499024 +g1,12624:32583030,24334700 +) +] +) +g1,12625:32583029,24414522 +g1,12625:6764466,24414522 +g1,12625:6764466,24414522 +g1,12625:32583029,24414522 +g1,12625:32583029,24414522 +) +h1,12625:6764466,24611130:0,0,0 +v1,12629:6764466,25295985:0,393216,0 +(1,12643:6764466,28775910:25818563,3873141,196608 +g1,12643:6764466,28775910 +g1,12643:6764466,28775910 +g1,12643:6567858,28775910 +(1,12643:6567858,28775910:0,3873141,196608 +r1,12666:32779637,28775910:26211779,4069749,196608 +k1,12643:6567857,28775910:-26211780 +) +(1,12643:6567858,28775910:26211779,3873141,196608 +[1,12643:6764466,28775910:25818563,3676533,0 +(1,12631:6764466,25530422:25818563,431045,112852 +(1,12630:6764466,25530422:0,0,0 +g1,12630:6764466,25530422 +g1,12630:6764466,25530422 +g1,12630:6436786,25530422 +(1,12630:6436786,25530422:0,0,0 +) +g1,12630:6764466,25530422 +) +k1,12631:6764466,25530422:0 +h1,12631:15063315,25530422:0,0,0 +k1,12631:32583029,25530422:17519714 +g1,12631:32583029,25530422 +) +(1,12635:6764466,26346349:25818563,424439,112852 +(1,12633:6764466,26346349:0,0,0 +g1,12633:6764466,26346349 +g1,12633:6764466,26346349 +g1,12633:6436786,26346349 +(1,12633:6436786,26346349:0,0,0 +) +g1,12633:6764466,26346349 +) +g1,12635:7760328,26346349 +g1,12635:9088144,26346349 +g1,12635:13403545,26346349 +g1,12635:13735499,26346349 +g1,12635:14067453,26346349 +g1,12635:14399407,26346349 +g1,12635:14731361,26346349 +g1,12635:19710670,26346349 +g1,12635:20042624,26346349 +g1,12635:20374578,26346349 +h1,12635:25685841,26346349:0,0,0 +k1,12635:32583029,26346349:6897188 +g1,12635:32583029,26346349 +) +(1,12637:6764466,27162276:25818563,424439,79822 +(1,12636:6764466,27162276:0,0,0 +g1,12636:6764466,27162276 +g1,12636:6764466,27162276 +g1,12636:6436786,27162276 +(1,12636:6436786,27162276:0,0,0 +) +g1,12636:6764466,27162276 +) +k1,12637:6764466,27162276:0 +h1,12637:9420098,27162276:0,0,0 +k1,12637:32583030,27162276:23162932 +g1,12637:32583030,27162276 +) +(1,12638:6764466,27847131:25818563,431045,112852 +h1,12638:6764466,27847131:0,0,0 +k1,12638:6764466,27847131:0 +h1,12638:15063315,27847131:0,0,0 +k1,12638:32583029,27847131:17519714 +g1,12638:32583029,27847131 +) +(1,12642:6764466,28663058:25818563,424439,112852 +(1,12640:6764466,28663058:0,0,0 +g1,12640:6764466,28663058 +g1,12640:6764466,28663058 +g1,12640:6436786,28663058 +(1,12640:6436786,28663058:0,0,0 +) +g1,12640:6764466,28663058 +) +g1,12642:7760328,28663058 +g1,12642:9088144,28663058 +g1,12642:14067453,28663058 +g1,12642:14399407,28663058 +g1,12642:14731361,28663058 +h1,12642:20042624,28663058:0,0,0 +k1,12642:32583029,28663058:12540405 +g1,12642:32583029,28663058 +) +] +) +g1,12643:32583029,28775910 +g1,12643:6764466,28775910 +g1,12643:6764466,28775910 +g1,12643:32583029,28775910 +g1,12643:32583029,28775910 +) +h1,12643:6764466,28972518:0,0,0 +(1,12647:6764466,29837598:25818563,505283,134348 +h1,12646:6764466,29837598:983040,0,0 +k1,12646:8553833,29837598:178492 +k1,12646:9935566,29837598:178492 +k1,12646:11262249,29837598:178492 +k1,12646:14275828,29837598:178492 +(1,12646:14275828,29837598:0,452978,115847 +r1,12666:17096077,29837598:2820249,568825,115847 +k1,12646:14275828,29837598:-2820249 +) +(1,12646:14275828,29837598:2820249,452978,115847 +k1,12646:14275828,29837598:3277 +h1,12646:17092800,29837598:0,411205,112570 +) +k1,12646:17274569,29837598:178492 +k1,12646:20228511,29837598:178492 +k1,12646:21426087,29837598:178491 +k1,12646:24115919,29837598:178492 +k1,12646:25162763,29837598:178492 +k1,12646:26532700,29837598:178492 +k1,12646:29485986,29837598:178492 +k1,12646:30020338,29837598:178492 +k1,12646:31879173,29837598:178492 +k1,12646:32583029,29837598:0 +) +(1,12647:6764466,30702678:25818563,513147,134348 +k1,12646:9517515,30702678:218116 +k1,12646:13591768,30702678:218115 +k1,12646:16108232,30702678:218116 +k1,12646:17345433,30702678:218116 +k1,12646:19853377,30702678:218116 +k1,12646:22453070,30702678:218115 +k1,12646:23287224,30702678:218116 +k1,12646:24524425,30702678:218116 +k1,12646:27322693,30702678:218116 +k1,12646:29108429,30702678:218115 +k1,12646:31914562,30702678:218116 +k1,12646:32583029,30702678:0 +) +(1,12647:6764466,31567758:25818563,513147,134348 +k1,12646:10783840,31567758:200591 +k1,12646:12365274,31567758:200590 +k1,12646:13097362,31567758:200591 +k1,12646:16060295,31567758:200590 +k1,12646:16912314,31567758:200591 +k1,12646:19716649,31567758:200590 +k1,12646:20273100,31567758:200591 +k1,12646:21756885,31567758:200590 +k1,12646:23917002,31567758:200591 +k1,12646:25511543,31567758:200590 +k1,12646:26731219,31567758:200591 +k1,12646:28585282,31567758:200590 +k1,12646:30697558,31567758:200591 +k1,12646:32583029,31567758:0 +) +(1,12647:6764466,32432838:25818563,505283,134348 +k1,12646:7532056,32432838:236093 +k1,12646:10391556,32432838:236094 +k1,12646:11824336,32432838:236093 +k1,12646:13232869,32432838:236094 +k1,12646:16985624,32432838:236093 +k1,12646:19090148,32432838:236093 +k1,12646:21456817,32432838:236094 +k1,12646:23630154,32432838:236093 +k1,12646:25057693,32432838:236094 +k1,12646:26285346,32432838:236093 +k1,12646:27587711,32432838:236094 +k1,12646:30884991,32432838:236093 +k1,12646:32583029,32432838:0 +) +(1,12647:6764466,33297918:25818563,505283,134348 +g1,12646:10531475,33297918 +g1,12646:11749789,33297918 +k1,12647:32583029,33297918:19198772 +g1,12647:32583029,33297918 +) +v1,12649:6764466,33982773:0,393216,0 +(1,12654:6764466,34975281:25818563,1385724,196608 +g1,12654:6764466,34975281 +g1,12654:6764466,34975281 +g1,12654:6567858,34975281 +(1,12654:6567858,34975281:0,1385724,196608 +r1,12666:32779637,34975281:26211779,1582332,196608 +k1,12654:6567857,34975281:-26211780 +) +(1,12654:6567858,34975281:26211779,1385724,196608 +[1,12654:6764466,34975281:25818563,1189116,0 +(1,12651:6764466,34210604:25818563,424439,112852 +(1,12650:6764466,34210604:0,0,0 +g1,12650:6764466,34210604 +g1,12650:6764466,34210604 +g1,12650:6436786,34210604 +(1,12650:6436786,34210604:0,0,0 +) +g1,12650:6764466,34210604 +) +g1,12651:11743775,34210604 +g1,12651:12739637,34210604 +g1,12651:14067453,34210604 +g1,12651:15395269,34210604 +g1,12651:16391131,34210604 +h1,12651:18382855,34210604:0,0,0 +k1,12651:32583029,34210604:14200174 +g1,12651:32583029,34210604 +) +(1,12652:6764466,34895459:25818563,424439,79822 +h1,12652:6764466,34895459:0,0,0 +k1,12652:6764466,34895459:0 +h1,12652:12739637,34895459:0,0,0 +k1,12652:32583029,34895459:19843392 +g1,12652:32583029,34895459 +) +] +) +g1,12654:32583029,34975281 +g1,12654:6764466,34975281 +g1,12654:6764466,34975281 +g1,12654:32583029,34975281 +g1,12654:32583029,34975281 +) +h1,12654:6764466,35171889:0,0,0 +(1,12658:6764466,36036969:25818563,513147,126483 +h1,12657:6764466,36036969:983040,0,0 +k1,12657:9180339,36036969:236146 +k1,12657:11096827,36036969:236145 +k1,12657:14111699,36036969:236145 +k1,12657:15109373,36036969:236146 +(1,12657:15109373,36036969:0,452978,122846 +r1,12666:19688181,36036969:4578808,575824,122846 +k1,12657:15109373,36036969:-4578808 +) +(1,12657:15109373,36036969:4578808,452978,122846 +k1,12657:15109373,36036969:3277 +h1,12657:19684904,36036969:0,411205,112570 +) +k1,12657:19924327,36036969:236146 +k1,12657:21261477,36036969:236145 +k1,12657:24724615,36036969:236145 +k1,12657:28767747,36036969:236146 +k1,12657:30446340,36036969:236146 +k1,12657:31966991,36036969:236145 +k1,12657:32583029,36036969:0 +) +(1,12658:6764466,36902049:25818563,513147,134348 +k1,12657:7747050,36902049:194186 +k1,12657:10564643,36902049:194187 +(1,12657:10564643,36902049:0,452978,115847 +r1,12666:12329756,36902049:1765113,568825,115847 +k1,12657:10564643,36902049:-1765113 +) +(1,12657:10564643,36902049:1765113,452978,115847 +k1,12657:10564643,36902049:3277 +h1,12657:12326479,36902049:0,411205,112570 +) +k1,12657:12697612,36902049:194186 +k1,12657:13789641,36902049:194186 +k1,12657:15459042,36902049:194186 +k1,12657:16009089,36902049:194187 +k1,12657:17590017,36902049:194186 +k1,12657:18396965,36902049:194186 +k1,12657:19379550,36902049:194187 +k1,12657:20961789,36902049:194186 +k1,12657:22654128,36902049:194186 +k1,12657:24242265,36902049:194186 +(1,12657:24242265,36902049:0,452978,122846 +r1,12666:30227920,36902049:5985655,575824,122846 +k1,12657:24242265,36902049:-5985655 +) +(1,12657:24242265,36902049:5985655,452978,122846 +k1,12657:24242265,36902049:3277 +h1,12657:30224643,36902049:0,411205,112570 +) +k1,12657:30422107,36902049:194187 +k1,12657:31563944,36902049:194186 +k1,12657:32583029,36902049:0 +) +(1,12658:6764466,37767129:25818563,505283,7863 +k1,12658:32583029,37767129:23648666 +g1,12658:32583029,37767129 +) +] +g1,12659:32583029,37774992 +) +h1,12659:6630773,37774992:0,0,0 +(1,12661:6630773,40606152:25952256,32768,229376 +(1,12661:6630773,40606152:0,32768,229376 +(1,12661:6630773,40606152:5505024,32768,229376 +r1,12666:12135797,40606152:5505024,262144,229376 +) +k1,12661:6630773,40606152:-5505024 +) +(1,12661:6630773,40606152:25952256,32768,0 +r1,12666:32583029,40606152:25952256,32768,0 +) +) +(1,12661:6630773,42238004:25952256,606339,161218 +(1,12661:6630773,42238004:1974731,582746,14155 +g1,12661:6630773,42238004 +g1,12661:8605504,42238004 +) +g1,12661:11813360,42238004 +k1,12661:32583030,42238004:17570464 +g1,12661:32583030,42238004 +) +(1,12664:6630773,43496300:25952256,513147,126483 +k1,12663:9123927,43496300:236749 +k1,12663:11273016,43496300:236748 +k1,12663:14179046,43496300:236749 +k1,12663:15031833,43496300:236749 +k1,12663:17055748,43496300:236748 +k1,12663:18311582,43496300:236749 +k1,12663:21310674,43496300:236749 +k1,12663:23102591,43496300:236748 +k1,12663:25915560,43496300:236749 +k1,12663:28936278,43496300:236749 +k1,12663:30364471,43496300:236748 +k1,12663:31931601,43496300:236749 +k1,12663:32583029,43496300:0 +) +(1,12664:6630773,44361380:25952256,513147,134348 +k1,12663:7944161,44361380:220903 +k1,12663:9804119,44361380:220903 +k1,12663:10641061,44361380:220904 +k1,12663:11450477,44361380:220903 +k1,12663:12713402,44361380:220903 +k1,12663:13705008,44361380:220903 +k1,12663:16615510,44361380:220904 +k1,12663:19980830,44361380:220903 +k1,12663:20861025,44361380:220903 +k1,12663:22101013,44361380:220903 +k1,12663:24632060,44361380:220903 +k1,12663:26859676,44361380:220904 +k1,12663:29430700,44361380:220903 +k1,12663:30670688,44361380:220903 +k1,12663:32583029,44361380:0 +) +(1,12664:6630773,45226460:25952256,505283,134348 +g1,12663:9952793,45226460 +g1,12663:10601599,45226460 +g1,12663:13932138,45226460 +g1,12663:15932296,45226460 +g1,12663:17322970,45226460 +g1,12663:20610911,45226460 +g1,12663:21259717,45226460 +g1,12663:24878615,45226460 +k1,12664:32583029,45226460:5851056 +g1,12664:32583029,45226460 +) +] +(1,12666:32583029,45706769:0,0,0 +g1,12666:32583029,45706769 +) +) +] +(1,12666:6630773,47279633:25952256,0,0 +h1,12666:6630773,47279633:25952256,0,0 +) +] +(1,12666:4262630,4025873:0,0,0 +[1,12666:-473656,4025873:0,0,0 +(1,12666:-473656,-710413:0,0,0 +(1,12666:-473656,-710413:0,0,0 +g1,12666:-473656,-710413 ) -g1,12668:-473656,-710413 +g1,12666:-473656,-710413 ) ] ) ] !24192 -}200 +}201 !12 -{201 -[1,12676:4262630,47279633:28320399,43253760,0 -(1,12676:4262630,4025873:0,0,0 -[1,12676:-473656,4025873:0,0,0 -(1,12676:-473656,-710413:0,0,0 -(1,12676:-473656,-644877:0,0,0 -k1,12676:-473656,-644877:-65536 +{202 +[1,12674:4262630,47279633:28320399,43253760,0 +(1,12674:4262630,4025873:0,0,0 +[1,12674:-473656,4025873:0,0,0 +(1,12674:-473656,-710413:0,0,0 +(1,12674:-473656,-644877:0,0,0 +k1,12674:-473656,-644877:-65536 ) -(1,12676:-473656,4736287:0,0,0 -k1,12676:-473656,4736287:5209943 +(1,12674:-473656,4736287:0,0,0 +k1,12674:-473656,4736287:5209943 ) -g1,12676:-473656,-710413 +g1,12674:-473656,-710413 ) ] ) -[1,12676:6630773,47279633:25952256,43253760,0 -[1,12676:6630773,4812305:25952256,786432,0 -(1,12676:6630773,4812305:25952256,505283,134348 -(1,12676:6630773,4812305:25952256,505283,134348 -g1,12676:3078558,4812305 -[1,12676:3078558,4812305:0,0,0 -(1,12676:3078558,2439708:0,1703936,0 -k1,12676:1358238,2439708:-1720320 -(1,11675:1358238,2439708:1720320,1703936,0 -(1,11675:1358238,2439708:1179648,16384,0 -r1,12676:2537886,2439708:1179648,16384,0 +[1,12674:6630773,47279633:25952256,43253760,0 +[1,12674:6630773,4812305:25952256,786432,0 +(1,12674:6630773,4812305:25952256,505283,134348 +(1,12674:6630773,4812305:25952256,505283,134348 +g1,12674:3078558,4812305 +[1,12674:3078558,4812305:0,0,0 +(1,12674:3078558,2439708:0,1703936,0 +k1,12674:1358238,2439708:-1720320 +(1,11674:1358238,2439708:1720320,1703936,0 +(1,11674:1358238,2439708:1179648,16384,0 +r1,12674:2537886,2439708:1179648,16384,0 ) -g1,11675:3062174,2439708 -(1,11675:3062174,2439708:16384,1703936,0 -[1,11675:3062174,2439708:25952256,1703936,0 -(1,11675:3062174,1915420:25952256,1179648,0 -(1,11675:3062174,1915420:16384,1179648,0 -r1,12676:3078558,1915420:16384,1179648,0 +g1,11674:3062174,2439708 +(1,11674:3062174,2439708:16384,1703936,0 +[1,11674:3062174,2439708:25952256,1703936,0 +(1,11674:3062174,1915420:25952256,1179648,0 +(1,11674:3062174,1915420:16384,1179648,0 +r1,12674:3078558,1915420:16384,1179648,0 ) -k1,11675:29014430,1915420:25935872 -g1,11675:29014430,1915420 +k1,11674:29014430,1915420:25935872 +g1,11674:29014430,1915420 ) ] ) ) ) ] -[1,12676:3078558,4812305:0,0,0 -(1,12676:3078558,2439708:0,1703936,0 -g1,12676:29030814,2439708 -g1,12676:36135244,2439708 -(1,11675:36135244,2439708:1720320,1703936,0 -(1,11675:36135244,2439708:16384,1703936,0 -[1,11675:36135244,2439708:25952256,1703936,0 -(1,11675:36135244,1915420:25952256,1179648,0 -(1,11675:36135244,1915420:16384,1179648,0 -r1,12676:36151628,1915420:16384,1179648,0 +[1,12674:3078558,4812305:0,0,0 +(1,12674:3078558,2439708:0,1703936,0 +g1,12674:29030814,2439708 +g1,12674:36135244,2439708 +(1,11674:36135244,2439708:1720320,1703936,0 +(1,11674:36135244,2439708:16384,1703936,0 +[1,11674:36135244,2439708:25952256,1703936,0 +(1,11674:36135244,1915420:25952256,1179648,0 +(1,11674:36135244,1915420:16384,1179648,0 +r1,12674:36151628,1915420:16384,1179648,0 ) -k1,11675:62087500,1915420:25935872 -g1,11675:62087500,1915420 +k1,11674:62087500,1915420:25935872 +g1,11674:62087500,1915420 ) ] ) -g1,11675:36675916,2439708 -(1,11675:36675916,2439708:1179648,16384,0 -r1,12676:37855564,2439708:1179648,16384,0 +g1,11674:36675916,2439708 +(1,11674:36675916,2439708:1179648,16384,0 +r1,12674:37855564,2439708:1179648,16384,0 ) ) -k1,12676:3078556,2439708:-34777008 +k1,12674:3078556,2439708:-34777008 ) ] -[1,12676:3078558,4812305:0,0,0 -(1,12676:3078558,49800853:0,16384,2228224 -k1,12676:1358238,49800853:-1720320 -(1,11675:1358238,49800853:1720320,16384,2228224 -(1,11675:1358238,49800853:1179648,16384,0 -r1,12676:2537886,49800853:1179648,16384,0 +[1,12674:3078558,4812305:0,0,0 +(1,12674:3078558,49800853:0,16384,2228224 +k1,12674:1358238,49800853:-1720320 +(1,11674:1358238,49800853:1720320,16384,2228224 +(1,11674:1358238,49800853:1179648,16384,0 +r1,12674:2537886,49800853:1179648,16384,0 ) -g1,11675:3062174,49800853 -(1,11675:3062174,52029077:16384,1703936,0 -[1,11675:3062174,52029077:25952256,1703936,0 -(1,11675:3062174,51504789:25952256,1179648,0 -(1,11675:3062174,51504789:16384,1179648,0 -r1,12676:3078558,51504789:16384,1179648,0 +g1,11674:3062174,49800853 +(1,11674:3062174,52029077:16384,1703936,0 +[1,11674:3062174,52029077:25952256,1703936,0 +(1,11674:3062174,51504789:25952256,1179648,0 +(1,11674:3062174,51504789:16384,1179648,0 +r1,12674:3078558,51504789:16384,1179648,0 ) -k1,11675:29014430,51504789:25935872 -g1,11675:29014430,51504789 -) -] -) -) -) -] -[1,12676:3078558,4812305:0,0,0 -(1,12676:3078558,49800853:0,16384,2228224 -g1,12676:29030814,49800853 -g1,12676:36135244,49800853 -(1,11675:36135244,49800853:1720320,16384,2228224 -(1,11675:36135244,52029077:16384,1703936,0 -[1,11675:36135244,52029077:25952256,1703936,0 -(1,11675:36135244,51504789:25952256,1179648,0 -(1,11675:36135244,51504789:16384,1179648,0 -r1,12676:36151628,51504789:16384,1179648,0 -) -k1,11675:62087500,51504789:25935872 -g1,11675:62087500,51504789 +k1,11674:29014430,51504789:25935872 +g1,11674:29014430,51504789 +) +] +) +) +) +] +[1,12674:3078558,4812305:0,0,0 +(1,12674:3078558,49800853:0,16384,2228224 +g1,12674:29030814,49800853 +g1,12674:36135244,49800853 +(1,11674:36135244,49800853:1720320,16384,2228224 +(1,11674:36135244,52029077:16384,1703936,0 +[1,11674:36135244,52029077:25952256,1703936,0 +(1,11674:36135244,51504789:25952256,1179648,0 +(1,11674:36135244,51504789:16384,1179648,0 +r1,12674:36151628,51504789:16384,1179648,0 +) +k1,11674:62087500,51504789:25935872 +g1,11674:62087500,51504789 ) ] ) -g1,11675:36675916,49800853 -(1,11675:36675916,49800853:1179648,16384,0 -r1,12676:37855564,49800853:1179648,16384,0 +g1,11674:36675916,49800853 +(1,11674:36675916,49800853:1179648,16384,0 +r1,12674:37855564,49800853:1179648,16384,0 ) ) -k1,12676:3078556,49800853:-34777008 +k1,12674:3078556,49800853:-34777008 ) ] -g1,12676:6630773,4812305 -k1,12676:23588214,4812305:15762064 -g1,12676:25210885,4812305 -g1,12676:25997972,4812305 -g1,12676:28481131,4812305 -g1,12676:30046786,4812305 +g1,12674:6630773,4812305 +k1,12674:23588214,4812305:15762064 +g1,12674:25210885,4812305 +g1,12674:25997972,4812305 +g1,12674:28481131,4812305 +g1,12674:30046786,4812305 ) ) ] -[1,12676:6630773,45706769:25952256,40108032,0 -(1,12676:6630773,45706769:25952256,40108032,0 -(1,12676:6630773,45706769:0,0,0 -g1,12676:6630773,45706769 +[1,12674:6630773,45706769:25952256,40108032,0 +(1,12674:6630773,45706769:25952256,40108032,0 +(1,12674:6630773,45706769:0,0,0 +g1,12674:6630773,45706769 ) -[1,12676:6630773,45706769:25952256,40108032,0 -(1,12668:6630773,6254097:25952256,513147,134348 -h1,12667:6630773,6254097:983040,0,0 -k1,12667:9001156,6254097:190656 -k1,12667:13323857,6254097:190656 -k1,12667:14181669,6254097:190656 -k1,12667:14787159,6254097:190647 -k1,12667:17888269,6254097:190656 -k1,12667:18610422,6254097:190656 -k1,12667:21999890,6254097:190656 -k1,12667:25268771,6254097:190655 -k1,12667:26075465,6254097:190656 -k1,12667:27285206,6254097:190656 -k1,12667:29057901,6254097:190656 -k1,12667:29698134,6254097:190656 -k1,12668:32583029,6254097:0 +[1,12674:6630773,45706769:25952256,40108032,0 +(1,12666:6630773,6254097:25952256,513147,134348 +h1,12665:6630773,6254097:983040,0,0 +k1,12665:9001156,6254097:190656 +k1,12665:13323857,6254097:190656 +k1,12665:14181669,6254097:190656 +k1,12665:14787159,6254097:190647 +k1,12665:17888269,6254097:190656 +k1,12665:18610422,6254097:190656 +k1,12665:21999890,6254097:190656 +k1,12665:25268771,6254097:190655 +k1,12665:26075465,6254097:190656 +k1,12665:27285206,6254097:190656 +k1,12665:29057901,6254097:190656 +k1,12665:29698134,6254097:190656 +k1,12666:32583029,6254097:0 ) -(1,12668:6630773,7119177:25952256,505283,134348 -k1,12667:9925700,7119177:184589 -k1,12667:11301735,7119177:184590 -k1,12667:13305603,7119177:184589 -k1,12667:15464837,7119177:184634 -k1,12667:17384819,7119177:184589 -k1,12667:17925268,7119177:184589 -k1,12667:20861059,7119177:184590 -k1,12667:24030158,7119177:184589 -k1,12667:25406193,7119177:184590 -k1,12667:27172166,7119177:184589 -k1,12667:30617827,7119177:184590 -k1,12667:31563944,7119177:184589 -k1,12667:32583029,7119177:0 +(1,12666:6630773,7119177:25952256,505283,134348 +k1,12665:9925700,7119177:184589 +k1,12665:11301735,7119177:184590 +k1,12665:13305603,7119177:184589 +k1,12665:15464837,7119177:184634 +k1,12665:17384819,7119177:184589 +k1,12665:17925268,7119177:184589 +k1,12665:20861059,7119177:184590 +k1,12665:24030158,7119177:184589 +k1,12665:25406193,7119177:184590 +k1,12665:27172166,7119177:184589 +k1,12665:30617827,7119177:184590 +k1,12665:31563944,7119177:184589 +k1,12665:32583029,7119177:0 ) -(1,12668:6630773,7984257:25952256,513147,134348 -k1,12667:8935019,7984257:178913 -k1,12667:10305377,7984257:178913 -k1,12667:11430630,7984257:178913 -k1,12667:15986693,7984257:178913 -k1,12667:17362293,7984257:178913 -k1,12667:19123245,7984257:178913 -k1,12667:22390871,7984257:178914 -k1,12667:23019361,7984257:178913 -k1,12667:26617943,7984257:178913 -k1,12667:28597785,7984257:178913 -k1,12667:29877703,7984257:178913 -k1,12667:30845014,7984257:178913 -k1,12667:32583029,7984257:0 +(1,12666:6630773,7984257:25952256,513147,134348 +k1,12665:8935019,7984257:178913 +k1,12665:10305377,7984257:178913 +k1,12665:11430630,7984257:178913 +k1,12665:15986693,7984257:178913 +k1,12665:17362293,7984257:178913 +k1,12665:19123245,7984257:178913 +k1,12665:22390871,7984257:178914 +k1,12665:23019361,7984257:178913 +k1,12665:26617943,7984257:178913 +k1,12665:28597785,7984257:178913 +k1,12665:29877703,7984257:178913 +k1,12665:30845014,7984257:178913 +k1,12665:32583029,7984257:0 ) -(1,12668:6630773,8849337:25952256,513147,126483 -k1,12667:7712591,8849337:272448 -k1,12667:8399808,8849337:272374 -k1,12667:10451557,8849337:272447 -k1,12667:12054386,8849337:272448 -k1,12667:12784930,8849337:272447 -k1,12667:15157807,8849337:272448 -k1,12667:16621699,8849337:272447 -k1,12667:18224528,8849337:272448 -k1,12667:19148403,8849337:272447 -k1,12667:21913841,8849337:272448 -k1,12667:25588917,8849337:272447 -k1,12667:27328061,8849337:272448 -k1,12667:28994459,8849337:272447 -k1,12667:31391584,8849337:272448 -k1,12667:32583029,8849337:0 -) -(1,12668:6630773,9714417:25952256,505283,134348 -g1,12667:10471182,9714417 -k1,12668:32583029,9714417:20399392 -g1,12668:32583029,9714417 -) -] -(1,12676:32583029,45706769:0,0,0 -g1,12676:32583029,45706769 -) -) -] -(1,12676:6630773,47279633:25952256,0,0 -h1,12676:6630773,47279633:25952256,0,0 -) -] -(1,12676:4262630,4025873:0,0,0 -[1,12676:-473656,4025873:0,0,0 -(1,12676:-473656,-710413:0,0,0 -(1,12676:-473656,-710413:0,0,0 -g1,12676:-473656,-710413 -) -g1,12676:-473656,-710413 +(1,12666:6630773,8849337:25952256,513147,126483 +k1,12665:7712591,8849337:272448 +k1,12665:8399808,8849337:272374 +k1,12665:10451557,8849337:272447 +k1,12665:12054386,8849337:272448 +k1,12665:12784930,8849337:272447 +k1,12665:15157807,8849337:272448 +k1,12665:16621699,8849337:272447 +k1,12665:18224528,8849337:272448 +k1,12665:19148403,8849337:272447 +k1,12665:21913841,8849337:272448 +k1,12665:25588917,8849337:272447 +k1,12665:27328061,8849337:272448 +k1,12665:28994459,8849337:272447 +k1,12665:31391584,8849337:272448 +k1,12665:32583029,8849337:0 +) +(1,12666:6630773,9714417:25952256,505283,134348 +g1,12665:10471182,9714417 +k1,12666:32583029,9714417:20399392 +g1,12666:32583029,9714417 +) +] +(1,12674:32583029,45706769:0,0,0 +g1,12674:32583029,45706769 +) +) +] +(1,12674:6630773,47279633:25952256,0,0 +h1,12674:6630773,47279633:25952256,0,0 +) +] +(1,12674:4262630,4025873:0,0,0 +[1,12674:-473656,4025873:0,0,0 +(1,12674:-473656,-710413:0,0,0 +(1,12674:-473656,-710413:0,0,0 +g1,12674:-473656,-710413 +) +g1,12674:-473656,-710413 ) ] ) ] !5680 -}201 -Input:2072:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2073:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}202 +Input:2075:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2076:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !195 -{202 -[1,12692:4262630,47279633:28320399,43253760,11795 -(1,12692:4262630,4025873:0,0,0 -[1,12692:-473656,4025873:0,0,0 -(1,12692:-473656,-710413:0,0,0 -(1,12692:-473656,-644877:0,0,0 -k1,12692:-473656,-644877:-65536 +{203 +[1,12690:4262630,47279633:28320399,43253760,11795 +(1,12690:4262630,4025873:0,0,0 +[1,12690:-473656,4025873:0,0,0 +(1,12690:-473656,-710413:0,0,0 +(1,12690:-473656,-644877:0,0,0 +k1,12690:-473656,-644877:-65536 ) -(1,12692:-473656,4736287:0,0,0 -k1,12692:-473656,4736287:5209943 +(1,12690:-473656,4736287:0,0,0 +k1,12690:-473656,4736287:5209943 ) -g1,12692:-473656,-710413 +g1,12690:-473656,-710413 ) ] ) -[1,12692:6630773,47279633:25952256,43253760,11795 -[1,12692:6630773,4812305:25952256,786432,0 -(1,12692:6630773,4812305:25952256,0,0 -(1,12692:6630773,4812305:25952256,0,0 -g1,12692:3078558,4812305 -[1,12692:3078558,4812305:0,0,0 -(1,12692:3078558,2439708:0,1703936,0 -k1,12692:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12692:2537886,2439708:1179648,16384,0 +[1,12690:6630773,47279633:25952256,43253760,11795 +[1,12690:6630773,4812305:25952256,786432,0 +(1,12690:6630773,4812305:25952256,0,0 +(1,12690:6630773,4812305:25952256,0,0 +g1,12690:3078558,4812305 +[1,12690:3078558,4812305:0,0,0 +(1,12690:3078558,2439708:0,1703936,0 +k1,12690:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12690:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12692:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12690:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12692:3078558,4812305:0,0,0 -(1,12692:3078558,2439708:0,1703936,0 -g1,12692:29030814,2439708 -g1,12692:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12692:36151628,1915420:16384,1179648,0 +[1,12690:3078558,4812305:0,0,0 +(1,12690:3078558,2439708:0,1703936,0 +g1,12690:29030814,2439708 +g1,12690:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12690:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12692:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12690:37855564,2439708:1179648,16384,0 ) ) -k1,12692:3078556,2439708:-34777008 +k1,12690:3078556,2439708:-34777008 ) ] -[1,12692:3078558,4812305:0,0,0 -(1,12692:3078558,49800853:0,16384,2228224 -k1,12692:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12692:2537886,49800853:1179648,16384,0 +[1,12690:3078558,4812305:0,0,0 +(1,12690:3078558,49800853:0,16384,2228224 +k1,12690:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12690:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12692:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12690:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,12692:3078558,4812305:0,0,0 -(1,12692:3078558,49800853:0,16384,2228224 -g1,12692:29030814,49800853 -g1,12692:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12692:36151628,51504789:16384,1179648,0 +[1,12690:3078558,4812305:0,0,0 +(1,12690:3078558,49800853:0,16384,2228224 +g1,12690:29030814,49800853 +g1,12690:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12690:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12692:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12690:37855564,49800853:1179648,16384,0 ) ) -k1,12692:3078556,49800853:-34777008 +k1,12690:3078556,49800853:-34777008 ) ] -g1,12692:6630773,4812305 +g1,12690:6630773,4812305 ) ) ] -[1,12692:6630773,45706769:25952256,40108032,0 -(1,12692:6630773,45706769:25952256,40108032,0 -(1,12692:6630773,45706769:0,0,0 -g1,12692:6630773,45706769 +[1,12690:6630773,45706769:25952256,40108032,0 +(1,12690:6630773,45706769:25952256,40108032,0 +(1,12690:6630773,45706769:0,0,0 +g1,12690:6630773,45706769 ) -[1,12692:6630773,45706769:25952256,40108032,0 -[1,12676:6630773,11769110:25952256,6170373,0 -(1,12676:6630773,6604846:25952256,1137181,0 -h1,12676:6582014,6604846:0,0,0 -k1,12676:20048089,6604846:12534940 -k1,12676:32583029,6604846:12534940 +[1,12690:6630773,45706769:25952256,40108032,0 +[1,12674:6630773,11769110:25952256,6170373,0 +(1,12674:6630773,6604846:25952256,1137181,0 +h1,12674:6582014,6604846:0,0,0 +k1,12674:20048089,6604846:12534940 +k1,12674:32583029,6604846:12534940 ) -(1,12676:6630773,7351966:25952256,32768,229376 -(1,12676:6630773,7351966:0,32768,229376 -(1,12676:6630773,7351966:5505024,32768,229376 -r1,12692:12135797,7351966:5505024,262144,229376 +(1,12674:6630773,7351966:25952256,32768,229376 +(1,12674:6630773,7351966:0,32768,229376 +(1,12674:6630773,7351966:5505024,32768,229376 +r1,12690:12135797,7351966:5505024,262144,229376 ) -k1,12676:6630773,7351966:-5505024 +k1,12674:6630773,7351966:-5505024 ) -(1,12676:6630773,7351966:25952256,32768,0 -r1,12692:32583029,7351966:25952256,32768,0 +(1,12674:6630773,7351966:25952256,32768,0 +r1,12690:32583029,7351966:25952256,32768,0 ) ) -(1,12676:6630773,9186982:25952256,923664,227671 -h1,12676:6630773,9186982:0,0,0 -g1,12676:9551582,9186982 -g1,12676:10968340,9186982 -g1,12676:15566608,9186982 -g1,12676:18104031,9186982 -g1,12676:23106918,9186982 -g1,12676:25128835,9186982 -k1,12676:31313729,9186982:1269301 -k1,12676:32583029,9186982:1269300 -) -(1,12676:6630773,9934102:25952256,32768,0 -(1,12676:6630773,9934102:5505024,32768,0 -r1,12692:12135797,9934102:5505024,32768,0 -) -k1,12676:22359413,9934102:10223616 -k1,12676:32583029,9934102:10223616 -) -] -(1,12678:6630773,14685467:25952256,131072,0 -r1,12692:32583029,14685467:25952256,131072,0 -g1,12678:32583029,14685467 -g1,12678:32583029,14685467 -) -(1,12680:6630773,16028960:25952256,513147,134348 -g1,12680:8596853,16028960 -g1,12679:9971142,16028960 -g1,12679:12787224,16028960 -g1,12679:13645745,16028960 -g1,12679:17275784,16028960 -g1,12679:18006510,16028960 -g1,12679:20572899,16028960 -g1,12679:21838399,16028960 -k1,12680:30616949,16028960:5910040 -g1,12680:32583029,16028960 -) -(1,12681:6630773,17680472:25952256,505283,134348 -k1,12681:23887713,17680472:17256940 -h1,12681:23887713,17680472:0,0,0 -g1,12681:26546508,17680472 -g1,12681:27525615,17680472 -g1,12681:30616948,17680472 -g1,12681:32583028,17680472 -) -(1,12682:6630773,18545552:25952256,513147,134348 -k1,12682:13746018,18545552:7115245 -h1,12681:13746018,18545552:0,0,0 -g1,12681:17220081,18545552 -g1,12681:20025677,18545552 -g1,12681:21148964,18545552 -g1,12681:24200975,18545552 -g1,12681:25610654,18545552 -g1,12681:29042774,18545552 -g1,12682:30616949,18545552 -g1,12682:32583029,18545552 -) -(1,12682:6630773,19803848:25952256,131072,0 -r1,12692:32583029,19803848:25952256,131072,0 -g1,12682:32583029,19803848 -g1,12682:34549109,19803848 -) -(1,12684:6630773,22635008:25952256,32768,229376 -(1,12684:6630773,22635008:0,32768,229376 -(1,12684:6630773,22635008:5505024,32768,229376 -r1,12692:12135797,22635008:5505024,262144,229376 -) -k1,12684:6630773,22635008:-5505024 -) -(1,12684:6630773,22635008:25952256,32768,0 -r1,12692:32583029,22635008:25952256,32768,0 -) -) -(1,12684:6630773,24266860:25952256,615776,151780 -(1,12684:6630773,24266860:1974731,573309,0 -g1,12684:6630773,24266860 -g1,12684:8605504,24266860 -) -g1,12684:10904245,24266860 -g1,12684:11961996,24266860 -g1,12684:13950883,24266860 -k1,12684:32583029,24266860:15515516 -g1,12684:32583029,24266860 -) -(1,12687:6630773,25525156:25952256,505283,134348 -k1,12686:8182010,25525156:192020 -k1,12686:10791654,25525156:192021 -k1,12686:12491002,25525156:192020 -k1,12686:13334451,25525156:192021 -k1,12686:14806389,25525156:192020 -k1,12686:16017495,25525156:192021 -k1,12686:18257515,25525156:192020 -k1,12686:19220238,25525156:192020 -k1,12686:23404712,25525156:192021 -k1,12686:24248160,25525156:192020 -k1,12686:25459266,25525156:192021 -k1,12686:28635796,25525156:192020 -k1,12686:30341043,25525156:192021 -k1,12686:31149101,25525156:192020 -k1,12687:32583029,25525156:0 -) -(1,12687:6630773,26390236:25952256,513147,134348 -k1,12686:7288823,26390236:243207 -k1,12686:8479726,26390236:243252 -k1,12686:9742062,26390236:243251 -k1,12686:14049201,26390236:243252 -k1,12686:14951744,26390236:243251 -k1,12686:18279119,26390236:243251 -k1,12686:22204184,26390236:243252 -k1,12686:23466520,26390236:243251 -k1,12686:25644395,26390236:243252 -k1,12686:26546938,26390236:243251 -k1,12686:29108198,26390236:243252 -k1,12686:30002877,26390236:243251 -k1,12687:32583029,26390236:0 -) -(1,12687:6630773,27255316:25952256,513147,126483 -k1,12686:8383206,27255316:154665 -k1,12686:9729316,27255316:154665 -k1,12686:11405727,27255316:154665 -k1,12686:12219684,27255316:154665 -k1,12686:16020117,27255316:154665 -k1,12686:17555625,27255316:154664 -k1,12686:20127913,27255316:154665 -k1,12686:21775488,27255316:154665 -k1,12686:22993147,27255316:154665 -k1,12686:25457956,27255316:154665 -k1,12686:27001984,27255316:154665 -k1,12686:29711242,27255316:154665 -k1,12686:32583029,27255316:0 -) -(1,12687:6630773,28120396:25952256,505283,134348 -k1,12686:9929319,28120396:214422 -k1,12686:13307163,28120396:214421 -k1,12686:14204470,28120396:214422 -k1,12686:18588948,28120396:214422 -k1,12686:21395974,28120396:214422 -k1,12686:23442782,28120396:214421 -k1,12686:24648764,28120396:214422 -k1,12686:26614963,28120396:214422 -k1,12686:28413390,28120396:214422 -k1,12686:30540152,28120396:214421 -k1,12686:31563944,28120396:214422 -k1,12686:32583029,28120396:0 -) -(1,12687:6630773,28985476:25952256,513147,134348 -k1,12686:7886492,28985476:163234 -k1,12686:8716882,28985476:163234 -k1,12686:9294923,28985476:163198 -k1,12686:10405808,28985476:163234 -k1,12686:13331384,28985476:163233 -k1,12686:15254260,28985476:163234 -k1,12686:16076786,28985476:163234 -k1,12686:19324144,28985476:163234 -k1,12686:22188117,28985476:163234 -k1,12686:23583428,28985476:163234 -k1,12686:26022071,28985476:163233 -k1,12686:28587855,28985476:163234 -k1,12686:29560459,28985476:163234 -k1,12686:31221846,28985476:163234 -h1,12686:32417223,28985476:0,0,0 -k1,12686:32583029,28985476:0 -) -(1,12687:6630773,29850556:25952256,513147,126483 -k1,12686:7906712,29850556:203770 -k1,12686:9712182,29850556:203770 -k1,12686:10575244,29850556:203770 -k1,12686:12418069,29850556:203770 -k1,12686:14061665,29850556:203770 -k1,12686:14916863,29850556:203770 -k1,12686:16858649,29850556:203771 -k1,12686:17871789,29850556:203770 -k1,12686:20472866,29850556:203770 -k1,12686:23760760,29850556:203770 -k1,12686:26749155,29850556:203770 -k1,12686:28904587,29850556:203770 -k1,12686:30550804,29850556:203770 -k1,12686:31563944,29850556:203770 -k1,12686:32583029,29850556:0 -) -(1,12687:6630773,30715636:25952256,513147,134348 -k1,12686:11501801,30715636:195690 -k1,12686:13856903,30715636:195691 -k1,12686:15865319,30715636:195690 -k1,12686:19023893,30715636:195691 -k1,12686:20653511,30715636:195690 -k1,12686:21768016,30715636:195690 -k1,12686:23951414,30715636:195691 -k1,12686:26081727,30715636:195690 -k1,12686:29303215,30715636:195691 -k1,12686:31378478,30715636:195690 -k1,12687:32583029,30715636:0 -) -(1,12687:6630773,31580716:25952256,513147,126483 -k1,12686:8185615,31580716:255918 -k1,12686:11525657,31580716:255918 -k1,12686:15541375,31580716:255918 -k1,12686:17177481,31580716:255918 -k1,12686:18525884,31580716:255918 -k1,12686:19137662,31580716:255918 -k1,12686:22170996,31580716:255918 -k1,12686:25411424,31580716:255918 -k1,12686:26318770,31580716:255918 -k1,12686:28562395,31580716:255918 -k1,12686:32583029,31580716:0 -) -(1,12687:6630773,32445796:25952256,513147,134348 -k1,12686:8009949,32445796:187731 -k1,12686:9145330,32445796:187730 -k1,12686:12333955,32445796:187731 -k1,12686:13540770,32445796:187730 -k1,12686:16937144,32445796:187731 -k1,12686:20170987,32445796:187730 -k1,12686:21550163,32445796:187731 -k1,12686:22929338,32445796:187730 -k1,12686:26382728,32445796:187731 -k1,12686:27951302,32445796:187730 -k1,12686:31297213,32445796:187731 -k1,12686:32583029,32445796:0 -) -(1,12687:6630773,33310876:25952256,513147,134348 -k1,12686:9530795,33310876:146855 -k1,12686:10439178,33310876:146855 -k1,12686:12337811,33310876:146856 -k1,12686:16214320,33310876:146855 -k1,12686:19433503,33310876:146855 -k1,12686:22664482,33310876:146855 -k1,12686:23915620,33310876:146856 -k1,12686:24810241,33310876:146855 -k1,12686:28456063,33310876:146855 -k1,12686:29289080,33310876:146855 -k1,12686:30757797,33310876:146856 -k1,12686:31563944,33310876:146855 -k1,12686:32583029,33310876:0 -) -(1,12687:6630773,34175956:25952256,513147,134348 -k1,12686:10427386,34175956:238663 -k1,12686:12865438,34175956:238664 -k1,12686:14123186,34175956:238663 -k1,12686:14776653,34175956:238624 -k1,12686:18031284,34175956:238664 -k1,12686:18897782,34175956:238663 -k1,12686:20339687,34175956:238664 -k1,12686:22995973,34175956:238663 -k1,12686:24405110,34175956:238664 -k1,12686:25776235,34175956:238663 -k1,12686:28458081,34175956:238664 -k1,12686:31189078,34175956:238663 -k1,12686:32583029,34175956:0 -) -(1,12687:6630773,35041036:25952256,513147,134348 -k1,12686:7804396,35041036:154538 -k1,12686:11621086,35041036:154538 -k1,12686:13288851,35041036:154539 -k1,12686:14059427,35041036:154538 -k1,12686:14628764,35041036:154494 -k1,12686:15730953,35041036:154538 -k1,12686:19336617,35041036:154538 -k1,12686:22575280,35041036:154539 -k1,12686:26411631,35041036:154538 -k1,12686:29941273,35041036:154538 -k1,12687:32583029,35041036:0 -) -(1,12687:6630773,35906116:25952256,513147,134348 -k1,12686:9538802,35906116:206635 -k1,12686:12735189,35906116:206635 -k1,12686:16037745,35906116:206635 -k1,12686:18179003,35906116:206635 -k1,12686:20703646,35906116:206635 -k1,12686:22101725,35906116:206634 -k1,12686:24925868,35906116:206635 -k1,12686:26198774,35906116:206635 -k1,12686:27927155,35906116:206635 -k1,12686:28793082,35906116:206635 -k1,12686:32583029,35906116:0 -) -(1,12687:6630773,36771196:25952256,505283,134348 -k1,12686:7727309,36771196:173134 -k1,12686:9032905,36771196:173134 -k1,12686:10298524,36771196:173134 -k1,12686:12284384,36771196:173134 -k1,12686:16111805,36771196:173134 -k1,12686:18145507,36771196:173135 -k1,12686:20131367,36771196:173134 -k1,12686:22796180,36771196:173134 -k1,12686:26601975,36771196:173134 -k1,12686:28587835,36771196:173134 -k1,12686:31252648,36771196:173134 -k1,12687:32583029,36771196:0 -) -(1,12687:6630773,37636276:25952256,513147,126483 -k1,12686:8613565,37636276:170066 -k1,12686:11101638,37636276:170065 -k1,12686:12463149,37636276:170066 -k1,12686:14325355,37636276:170066 -k1,12686:16620098,37636276:170066 -k1,12686:20650889,37636276:170065 -k1,12686:23605580,37636276:170066 -k1,12686:24461808,37636276:170066 -k1,12686:27797263,37636276:170066 -k1,12686:29164015,37636276:170065 -k1,12686:31072096,37636276:170066 -k1,12686:31773659,37636276:170066 -k1,12686:32583029,37636276:0 -) -(1,12687:6630773,38501356:25952256,513147,126483 -k1,12686:8209476,38501356:248322 -k1,12686:9109225,38501356:248321 -k1,12686:11616573,38501356:248322 -k1,12686:14949019,38501356:248322 -k1,12686:17689020,38501356:248322 -k1,12686:20898913,38501356:248321 -k1,12686:22338680,38501356:248322 -k1,12686:26832424,38501356:248322 -k1,12686:28411127,38501356:248322 -k1,12686:29310876,38501356:248321 -k1,12686:31590159,38501356:248322 -k1,12687:32583029,38501356:0 -) -(1,12687:6630773,39366436:25952256,513147,134348 -k1,12686:8741509,39366436:191186 -k1,12686:12860268,39366436:191186 -k1,12686:13710746,39366436:191186 -k1,12686:14921017,39366436:191186 -k1,12686:17402031,39366436:191186 -k1,12686:20371945,39366436:191187 -k1,12686:21324659,39366436:191186 -k1,12686:22534930,39366436:191186 -k1,12686:27349681,39366436:191186 -k1,12686:28228340,39366436:191186 -k1,12686:29610971,39366436:191186 -k1,12686:32583029,39366436:0 -) -(1,12687:6630773,40231516:25952256,513147,126483 -k1,12686:10006294,40231516:176053 -k1,12686:11373793,40231516:176054 -k1,12686:12880227,40231516:176053 -k1,12686:13707708,40231516:176053 -k1,12686:14976247,40231516:176054 -k1,12686:16849027,40231516:176053 -k1,12686:19997139,40231516:176054 -k1,12686:24100765,40231516:176053 -k1,12686:24892856,40231516:176053 -k1,12686:27344320,40231516:176054 -k1,12686:31914562,40231516:176053 -k1,12686:32583029,40231516:0 -) -(1,12687:6630773,41096596:25952256,513147,134348 -g1,12686:7777653,41096596 -g1,12686:11626582,41096596 -g1,12686:14398099,41096596 -g1,12686:15788773,41096596 -k1,12687:32583029,41096596:13314295 -g1,12687:32583029,41096596 -) -] -(1,12692:32583029,45706769:0,0,0 -g1,12692:32583029,45706769 -) -) -] -(1,12692:6630773,47279633:25952256,485622,11795 -(1,12692:6630773,47279633:25952256,485622,11795 -(1,12692:6630773,47279633:0,0,0 -v1,12692:6630773,47279633:0,0,0 -) -g1,12692:6830002,47279633 -k1,12692:31387652,47279633:24557650 -) -) -] -(1,12692:4262630,4025873:0,0,0 -[1,12692:-473656,4025873:0,0,0 -(1,12692:-473656,-710413:0,0,0 -(1,12692:-473656,-710413:0,0,0 -g1,12692:-473656,-710413 -) -g1,12692:-473656,-710413 -) -] -) -] -!15082 -}202 -Input:2074:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2075:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2076:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +(1,12674:6630773,9186982:25952256,923664,227671 +h1,12674:6630773,9186982:0,0,0 +g1,12674:9551582,9186982 +g1,12674:10968340,9186982 +g1,12674:15566608,9186982 +g1,12674:18104031,9186982 +g1,12674:23106918,9186982 +g1,12674:25128835,9186982 +k1,12674:31313729,9186982:1269301 +k1,12674:32583029,9186982:1269300 +) +(1,12674:6630773,9934102:25952256,32768,0 +(1,12674:6630773,9934102:5505024,32768,0 +r1,12690:12135797,9934102:5505024,32768,0 +) +k1,12674:22359413,9934102:10223616 +k1,12674:32583029,9934102:10223616 +) +] +(1,12676:6630773,14685467:25952256,131072,0 +r1,12690:32583029,14685467:25952256,131072,0 +g1,12676:32583029,14685467 +g1,12676:32583029,14685467 +) +(1,12678:6630773,16028960:25952256,513147,134348 +g1,12678:8596853,16028960 +g1,12677:9971142,16028960 +g1,12677:12787224,16028960 +g1,12677:13645745,16028960 +g1,12677:17275784,16028960 +g1,12677:18006510,16028960 +g1,12677:20572899,16028960 +g1,12677:21838399,16028960 +k1,12678:30616949,16028960:5910040 +g1,12678:32583029,16028960 +) +(1,12679:6630773,17680472:25952256,505283,134348 +k1,12679:23887713,17680472:17256940 +h1,12679:23887713,17680472:0,0,0 +g1,12679:26546508,17680472 +g1,12679:27525615,17680472 +g1,12679:30616948,17680472 +g1,12679:32583028,17680472 +) +(1,12680:6630773,18545552:25952256,513147,134348 +k1,12680:13746018,18545552:7115245 +h1,12679:13746018,18545552:0,0,0 +g1,12679:17220081,18545552 +g1,12679:20025677,18545552 +g1,12679:21148964,18545552 +g1,12679:24200975,18545552 +g1,12679:25610654,18545552 +g1,12679:29042774,18545552 +g1,12680:30616949,18545552 +g1,12680:32583029,18545552 +) +(1,12680:6630773,19803848:25952256,131072,0 +r1,12690:32583029,19803848:25952256,131072,0 +g1,12680:32583029,19803848 +g1,12680:34549109,19803848 +) +(1,12682:6630773,22635008:25952256,32768,229376 +(1,12682:6630773,22635008:0,32768,229376 +(1,12682:6630773,22635008:5505024,32768,229376 +r1,12690:12135797,22635008:5505024,262144,229376 +) +k1,12682:6630773,22635008:-5505024 +) +(1,12682:6630773,22635008:25952256,32768,0 +r1,12690:32583029,22635008:25952256,32768,0 +) +) +(1,12682:6630773,24266860:25952256,615776,151780 +(1,12682:6630773,24266860:1974731,573309,0 +g1,12682:6630773,24266860 +g1,12682:8605504,24266860 +) +g1,12682:10904245,24266860 +g1,12682:11961996,24266860 +g1,12682:13950883,24266860 +k1,12682:32583029,24266860:15515516 +g1,12682:32583029,24266860 +) +(1,12685:6630773,25525156:25952256,505283,134348 +k1,12684:8182010,25525156:192020 +k1,12684:10791654,25525156:192021 +k1,12684:12491002,25525156:192020 +k1,12684:13334451,25525156:192021 +k1,12684:14806389,25525156:192020 +k1,12684:16017495,25525156:192021 +k1,12684:18257515,25525156:192020 +k1,12684:19220238,25525156:192020 +k1,12684:23404712,25525156:192021 +k1,12684:24248160,25525156:192020 +k1,12684:25459266,25525156:192021 +k1,12684:28635796,25525156:192020 +k1,12684:30341043,25525156:192021 +k1,12684:31149101,25525156:192020 +k1,12685:32583029,25525156:0 +) +(1,12685:6630773,26390236:25952256,513147,134348 +k1,12684:7288823,26390236:243207 +k1,12684:8479726,26390236:243252 +k1,12684:9742062,26390236:243251 +k1,12684:14049201,26390236:243252 +k1,12684:14951744,26390236:243251 +k1,12684:18279119,26390236:243251 +k1,12684:22204184,26390236:243252 +k1,12684:23466520,26390236:243251 +k1,12684:25644395,26390236:243252 +k1,12684:26546938,26390236:243251 +k1,12684:29108198,26390236:243252 +k1,12684:30002877,26390236:243251 +k1,12685:32583029,26390236:0 +) +(1,12685:6630773,27255316:25952256,513147,126483 +k1,12684:8383206,27255316:154665 +k1,12684:9729316,27255316:154665 +k1,12684:11405727,27255316:154665 +k1,12684:12219684,27255316:154665 +k1,12684:16020117,27255316:154665 +k1,12684:17555625,27255316:154664 +k1,12684:20127913,27255316:154665 +k1,12684:21775488,27255316:154665 +k1,12684:22993147,27255316:154665 +k1,12684:25457956,27255316:154665 +k1,12684:27001984,27255316:154665 +k1,12684:29711242,27255316:154665 +k1,12684:32583029,27255316:0 +) +(1,12685:6630773,28120396:25952256,505283,134348 +k1,12684:9929319,28120396:214422 +k1,12684:13307163,28120396:214421 +k1,12684:14204470,28120396:214422 +k1,12684:18588948,28120396:214422 +k1,12684:21395974,28120396:214422 +k1,12684:23442782,28120396:214421 +k1,12684:24648764,28120396:214422 +k1,12684:26614963,28120396:214422 +k1,12684:28413390,28120396:214422 +k1,12684:30540152,28120396:214421 +k1,12684:31563944,28120396:214422 +k1,12684:32583029,28120396:0 +) +(1,12685:6630773,28985476:25952256,513147,134348 +k1,12684:7886492,28985476:163234 +k1,12684:8716882,28985476:163234 +k1,12684:9294923,28985476:163198 +k1,12684:10405808,28985476:163234 +k1,12684:13331384,28985476:163233 +k1,12684:15254260,28985476:163234 +k1,12684:16076786,28985476:163234 +k1,12684:19324144,28985476:163234 +k1,12684:22188117,28985476:163234 +k1,12684:23583428,28985476:163234 +k1,12684:26022071,28985476:163233 +k1,12684:28587855,28985476:163234 +k1,12684:29560459,28985476:163234 +k1,12684:31221846,28985476:163234 +h1,12684:32417223,28985476:0,0,0 +k1,12684:32583029,28985476:0 +) +(1,12685:6630773,29850556:25952256,513147,126483 +k1,12684:7906712,29850556:203770 +k1,12684:9712182,29850556:203770 +k1,12684:10575244,29850556:203770 +k1,12684:12418069,29850556:203770 +k1,12684:14061665,29850556:203770 +k1,12684:14916863,29850556:203770 +k1,12684:16858649,29850556:203771 +k1,12684:17871789,29850556:203770 +k1,12684:20472866,29850556:203770 +k1,12684:23760760,29850556:203770 +k1,12684:26749155,29850556:203770 +k1,12684:28904587,29850556:203770 +k1,12684:30550804,29850556:203770 +k1,12684:31563944,29850556:203770 +k1,12684:32583029,29850556:0 +) +(1,12685:6630773,30715636:25952256,513147,134348 +k1,12684:11501801,30715636:195690 +k1,12684:13856903,30715636:195691 +k1,12684:15865319,30715636:195690 +k1,12684:19023893,30715636:195691 +k1,12684:20653511,30715636:195690 +k1,12684:21768016,30715636:195690 +k1,12684:23951414,30715636:195691 +k1,12684:26081727,30715636:195690 +k1,12684:29303215,30715636:195691 +k1,12684:31378478,30715636:195690 +k1,12685:32583029,30715636:0 +) +(1,12685:6630773,31580716:25952256,513147,126483 +k1,12684:8185615,31580716:255918 +k1,12684:11525657,31580716:255918 +k1,12684:15541375,31580716:255918 +k1,12684:17177481,31580716:255918 +k1,12684:18525884,31580716:255918 +k1,12684:19137662,31580716:255918 +k1,12684:22170996,31580716:255918 +k1,12684:25411424,31580716:255918 +k1,12684:26318770,31580716:255918 +k1,12684:28562395,31580716:255918 +k1,12684:32583029,31580716:0 +) +(1,12685:6630773,32445796:25952256,513147,134348 +k1,12684:8009949,32445796:187731 +k1,12684:9145330,32445796:187730 +k1,12684:12333955,32445796:187731 +k1,12684:13540770,32445796:187730 +k1,12684:16937144,32445796:187731 +k1,12684:20170987,32445796:187730 +k1,12684:21550163,32445796:187731 +k1,12684:22929338,32445796:187730 +k1,12684:26382728,32445796:187731 +k1,12684:27951302,32445796:187730 +k1,12684:31297213,32445796:187731 +k1,12684:32583029,32445796:0 +) +(1,12685:6630773,33310876:25952256,513147,134348 +k1,12684:9636790,33310876:252850 +k1,12684:10651168,33310876:252850 +k1,12684:12655794,33310876:252849 +k1,12684:16638298,33310876:252850 +k1,12684:19963476,33310876:252850 +k1,12684:23300450,33310876:252850 +k1,12684:24657582,33310876:252850 +k1,12684:25658198,33310876:252850 +k1,12684:29410014,33310876:252849 +k1,12684:30349026,33310876:252850 +k1,12684:31923737,33310876:252850 +k1,12684:32583029,33310876:0 +) +(1,12685:6630773,34175956:25952256,513147,134348 +k1,12684:7906491,34175956:256633 +k1,12684:11721073,34175956:256632 +k1,12684:14177094,34175956:256633 +k1,12684:15452812,34175956:256633 +k1,12684:16124230,34175956:256575 +k1,12684:19396830,34175956:256633 +k1,12684:20281297,34175956:256632 +k1,12684:21741171,34175956:256633 +k1,12684:24589098,34175956:256633 +k1,12684:26016204,34175956:256633 +k1,12684:27405298,34175956:256632 +k1,12684:30105113,34175956:256633 +k1,12684:32583029,34175956:0 +) +(1,12685:6630773,35041036:25952256,513147,134348 +k1,12684:8280454,35041036:281944 +k1,12684:9581483,35041036:281944 +k1,12684:13525579,35041036:281944 +k1,12684:15320749,35041036:281944 +k1,12684:16218731,35041036:281944 +k1,12684:16915435,35041036:281861 +k1,12684:18145030,35041036:281944 +k1,12684:21878100,35041036:281944 +k1,12684:25244168,35041036:281944 +k1,12684:29207925,35041036:281944 +k1,12684:32583029,35041036:0 +) +(1,12685:6630773,35906116:25952256,513147,134348 +k1,12684:12254089,35906116:194314 +k1,12684:15438155,35906116:194314 +k1,12684:18728390,35906116:194314 +k1,12684:20857327,35906116:194314 +k1,12684:23543320,35906116:194314 +k1,12684:24929080,35906116:194315 +k1,12684:27740902,35906116:194314 +k1,12684:29001487,35906116:194314 +k1,12684:30717547,35906116:194314 +k1,12684:31571153,35906116:194314 +k1,12685:32583029,35906116:0 +) +(1,12685:6630773,36771196:25952256,513147,134348 +k1,12684:9906787,36771196:270533 +k1,12684:11130868,36771196:270532 +k1,12684:12533863,36771196:270533 +k1,12684:13896880,36771196:270532 +k1,12684:15980139,36771196:270533 +k1,12684:19904958,36771196:270532 +k1,12684:22036058,36771196:270533 +k1,12684:24119316,36771196:270532 +k1,12684:26881528,36771196:270533 +k1,12684:30784721,36771196:270532 +k1,12684:32583029,36771196:0 +) +(1,12685:6630773,37636276:25952256,505283,126483 +k1,12684:9381902,37636276:259450 +k1,12684:12891281,37636276:259449 +k1,12684:15642410,37636276:259450 +k1,12684:17093304,37636276:259449 +k1,12684:19044894,37636276:259450 +k1,12684:21429020,37636276:259449 +k1,12684:25549196,37636276:259450 +k1,12684:28593270,37636276:259449 +k1,12684:29538882,37636276:259450 +k1,12684:32583029,37636276:0 +) +(1,12685:6630773,38501356:25952256,513147,126483 +k1,12684:7987422,38501356:181589 +k1,12684:9907026,38501356:181589 +k1,12684:10620112,38501356:181589 +k1,12684:11611072,38501356:181590 +k1,12684:13123042,38501356:181589 +k1,12684:13956059,38501356:181589 +k1,12684:16396674,38501356:181589 +k1,12684:19662387,38501356:181589 +k1,12684:22335655,38501356:181589 +k1,12684:25478817,38501356:181590 +k1,12684:26851851,38501356:181589 +k1,12684:31278862,38501356:181589 +k1,12684:32583029,38501356:0 +) +(1,12685:6630773,39366436:25952256,513147,134348 +k1,12684:7531416,39366436:249215 +k1,12684:9811593,39366436:249216 +k1,12684:12823151,39366436:249215 +k1,12684:16999939,39366436:249215 +k1,12684:17908446,39366436:249215 +k1,12684:19176747,39366436:249216 +k1,12684:21715790,39366436:249215 +k1,12684:24743732,39366436:249215 +k1,12684:25754475,39366436:249215 +k1,12684:27022776,39366436:249216 +k1,12684:31895556,39366436:249215 +k1,12684:32583029,39366436:0 +) +(1,12685:6630773,40231516:25952256,513147,126483 +k1,12684:8079655,40231516:257437 +k1,12684:11327500,40231516:257437 +k1,12684:14784405,40231516:257437 +k1,12684:16233287,40231516:257437 +k1,12684:17821105,40231516:257437 +k1,12684:18729971,40231516:257438 +k1,12684:20079893,40231516:257437 +k1,12684:22034057,40231516:257437 +k1,12684:25263552,40231516:257437 +k1,12684:29448562,40231516:257437 +k1,12684:30322037,40231516:257437 +k1,12684:32583029,40231516:0 +) +(1,12685:6630773,41096596:25952256,513147,134348 +g1,12684:11224191,41096596 +g1,12684:12106305,41096596 +g1,12684:13253185,41096596 +g1,12684:17102114,41096596 +g1,12684:19873631,41096596 +g1,12684:21264305,41096596 +k1,12685:32583029,41096596:7838763 +g1,12685:32583029,41096596 +) +] +(1,12690:32583029,45706769:0,0,0 +g1,12690:32583029,45706769 +) +) +] +(1,12690:6630773,47279633:25952256,485622,11795 +(1,12690:6630773,47279633:25952256,485622,11795 +(1,12690:6630773,47279633:0,0,0 +v1,12690:6630773,47279633:0,0,0 +) +g1,12690:6830002,47279633 +k1,12690:31387652,47279633:24557650 +) +) +] +(1,12690:4262630,4025873:0,0,0 +[1,12690:-473656,4025873:0,0,0 +(1,12690:-473656,-710413:0,0,0 +(1,12690:-473656,-710413:0,0,0 +g1,12690:-473656,-710413 +) +g1,12690:-473656,-710413 +) +] +) +] +!14998 +}203 Input:2077:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2078:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2079:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -225097,1260 +225294,1259 @@ Input:2086:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2087:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2088:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2089:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2090:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2091:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2092:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{203 -[1,12754:4262630,47279633:28320399,43253760,0 -(1,12754:4262630,4025873:0,0,0 -[1,12754:-473656,4025873:0,0,0 -(1,12754:-473656,-710413:0,0,0 -(1,12754:-473656,-644877:0,0,0 -k1,12754:-473656,-644877:-65536 +{204 +[1,12752:4262630,47279633:28320399,43253760,0 +(1,12752:4262630,4025873:0,0,0 +[1,12752:-473656,4025873:0,0,0 +(1,12752:-473656,-710413:0,0,0 +(1,12752:-473656,-644877:0,0,0 +k1,12752:-473656,-644877:-65536 ) -(1,12754:-473656,4736287:0,0,0 -k1,12754:-473656,4736287:5209943 +(1,12752:-473656,4736287:0,0,0 +k1,12752:-473656,4736287:5209943 ) -g1,12754:-473656,-710413 +g1,12752:-473656,-710413 ) ] ) -[1,12754:6630773,47279633:25952256,43253760,0 -[1,12754:6630773,4812305:25952256,786432,0 -(1,12754:6630773,4812305:25952256,513147,126483 -(1,12754:6630773,4812305:25952256,513147,126483 -g1,12754:3078558,4812305 -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,2439708:0,1703936,0 -k1,12754:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12754:2537886,2439708:1179648,16384,0 +[1,12752:6630773,47279633:25952256,43253760,0 +[1,12752:6630773,4812305:25952256,786432,0 +(1,12752:6630773,4812305:25952256,513147,126483 +(1,12752:6630773,4812305:25952256,513147,126483 +g1,12752:3078558,4812305 +[1,12752:3078558,4812305:0,0,0 +(1,12752:3078558,2439708:0,1703936,0 +k1,12752:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12752:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12754:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12752:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,2439708:0,1703936,0 -g1,12754:29030814,2439708 -g1,12754:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12754:36151628,1915420:16384,1179648,0 +[1,12752:3078558,4812305:0,0,0 +(1,12752:3078558,2439708:0,1703936,0 +g1,12752:29030814,2439708 +g1,12752:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12752:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12754:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12752:37855564,2439708:1179648,16384,0 ) ) -k1,12754:3078556,2439708:-34777008 +k1,12752:3078556,2439708:-34777008 ) ] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,49800853:0,16384,2228224 -k1,12754:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12754:2537886,49800853:1179648,16384,0 +[1,12752:3078558,4812305:0,0,0 +(1,12752:3078558,49800853:0,16384,2228224 +k1,12752:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12752:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12754:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12752:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,12754:3078558,4812305:0,0,0 -(1,12754:3078558,49800853:0,16384,2228224 -g1,12754:29030814,49800853 -g1,12754:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12754:36151628,51504789:16384,1179648,0 +[1,12752:3078558,4812305:0,0,0 +(1,12752:3078558,49800853:0,16384,2228224 +g1,12752:29030814,49800853 +g1,12752:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12752:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12754:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12752:37855564,49800853:1179648,16384,0 ) ) -k1,12754:3078556,49800853:-34777008 -) -] -g1,12754:6630773,4812305 -k1,12754:19575446,4812305:11749296 -g1,12754:21198117,4812305 -g1,12754:21985204,4812305 -g1,12754:24539797,4812305 -g1,12754:25949476,4812305 -g1,12754:28728857,4812305 -g1,12754:29852144,4812305 -) -) -] -[1,12754:6630773,45706769:25952256,40108032,0 -(1,12754:6630773,45706769:25952256,40108032,0 -(1,12754:6630773,45706769:0,0,0 -g1,12754:6630773,45706769 -) -[1,12754:6630773,45706769:25952256,40108032,0 -[1,12711:6630773,17348238:25952256,11749501,0 -[1,12711:6630773,17348238:25952256,11749501,0 -(1,12695:6630773,6759380:25952256,505283,7863 -h1,12695:6607180,6759380:0,0,0 -g1,12695:8644694,6759380 -k1,12695:32583029,6759380:22968402 -g1,12695:32583029,6759380 +k1,12752:3078556,49800853:-34777008 +) +] +g1,12752:6630773,4812305 +k1,12752:19575446,4812305:11749296 +g1,12752:21198117,4812305 +g1,12752:21985204,4812305 +g1,12752:24539797,4812305 +g1,12752:25949476,4812305 +g1,12752:28728857,4812305 +g1,12752:29852144,4812305 +) +) +] +[1,12752:6630773,45706769:25952256,40108032,0 +(1,12752:6630773,45706769:25952256,40108032,0 +(1,12752:6630773,45706769:0,0,0 +g1,12752:6630773,45706769 +) +[1,12752:6630773,45706769:25952256,40108032,0 +[1,12709:6630773,17348238:25952256,11749501,0 +[1,12709:6630773,17348238:25952256,11749501,0 +(1,12693:6630773,6759380:25952256,505283,7863 +h1,12693:6607180,6759380:0,0,0 +g1,12693:8644694,6759380 +k1,12693:32583029,6759380:22968402 +g1,12693:32583029,6759380 ) -(1,12695:6630773,7624460:25952256,513147,134348 -h1,12695:6630773,7624460:0,0,0 -g1,12695:10229354,7624460 -g1,12695:11941809,7624460 -g1,12695:14265715,7624460 -g1,12695:17549068,7624460 -g1,12695:21256439,7624460 -g1,12695:22647113,7624460 -g1,12695:23865427,7624460 -g1,12695:28688221,7624460 -g1,12695:29302293,7624460 -k1,12695:32583029,7624460:202510 -g1,12695:32583029,7624460 -) -(1,12710:6630773,17348238:25952256,9176553,0 -k1,12710:7403899,17348238:773126 -h1,12696:7403899,17348238:0,0,0 -k1,12696:8177026,17348238:773127 -[1,12710:8177026,17348238:23632877,9176553,0 -(1,12710:8177026,8237221:23632877,65536,0 -g1,12710:8177026,8237221 -(1,12710:8177026,8237221:23632877,65536,0 -r1,12754:31809903,8237221:23632877,65536,0 -) -g1,12710:31809903,8237221 -) -(1,12710:8177026,12932344:23632877,4629587,4219286 -g1,12710:8177026,12932344 -(1,12710:8177026,12932344:23632877,4629587,4219286 -g1,12696:8376255,12932344 -$1,12710:8376255,12932344 -[1,12710:8376255,12932344:23433648,4629587,4219286 -(1,12699:8376255,9093877:23433648,555093,237900 -g1,12698:8376255,9093877 -(1,12698:8376255,9093877:3475610,555093,237900 -r1,12754:8376255,9093877:0,792993,237900 -g1,12698:8703935,9093877 -g1,12698:8703936,9093877 -k1,12698:11524185,9093877:30381 -g1,12698:11851865,9093877 -) -g1,12698:11851865,9093877 -(1,12698:11851865,9093877:3828666,555093,237900 -g1,12698:12179545,9093877 -g1,12698:12179546,9093877 -k1,12698:15352851,9093877:836946 -g1,12698:15680531,9093877 -) -g1,12698:15680531,9093877 -(1,12698:15680531,9093877:7002829,555093,237900 -g1,12698:16008211,9093877 -g1,12698:16008212,9093877 -k1,12698:22355680,9093877:2442178 -g1,12698:22683360,9093877 -) -g1,12698:22683360,9093877 -(1,12699:22683360,9093877:9126543,555093,237900 -g1,12698:23011040,9093877 -g1,12698:23011041,9093877 -k1,12699:31482223,9093877:6655835 -g1,12699:31809903,9093877 -) -g1,12699:31809903,9093877 -) -(1,12701:8376255,10216219:23433648,555093,237900 -g1,12700:8376255,10216219 -(1,12700:8376255,10216219:3475610,555093,237900 -r1,12754:8376255,10216219:0,792993,237900 -g1,12700:8703935,10216219 -g1,12700:8703936,10216219 -(1,12700:8703936,10216219:0,452978,115847 -r1,12754:10820761,10216219:2116825,568825,115847 -k1,12700:8703936,10216219:-2116825 -) -(1,12700:8703936,10216219:2116825,452978,115847 -k1,12700:8703936,10216219:3277 -h1,12700:10817484,10216219:0,411205,112570 -) -k1,12700:11524185,10216219:703424 -g1,12700:11851865,10216219 -) -g1,12700:11851865,10216219 -(1,12700:11851865,10216219:3828666,555093,237900 -g1,12700:12179545,10216219 -g1,12700:12179546,10216219 -$1,12700:12179546,10216219 -[1,12700:12179546,10216219:502661,458096,7864 -(1,12700:12650093,10208355:0,450232,0 -) -(1,12700:12179546,10216219:502661,355205,7864 -) -] -$1,12700:12682207,10216219 -k1,12700:15352851,10216219:2670644 -g1,12700:15680531,10216219 -) -g1,12700:15680531,10216219 -(1,12700:15680531,10216219:7002829,555093,237900 -g1,12700:16008211,10216219 -g1,12700:16008212,10216219 -$1,12700:16008212,10216219 -(1,12700:16008212,10254863:649462,567542,79954 -) -g1,12700:16766910,10216219 -$1,12700:18128748,10216219 -k1,12700:22355680,10216219:4226932 -g1,12700:22683360,10216219 -) -g1,12700:22683360,10216219 -(1,12701:22683360,10216219:9126543,555093,237900 -g1,12700:23011040,10216219 -g1,12700:23011041,10216219 -k1,12701:31482223,10216219:6733167 -g1,12701:31809903,10216219 -) -g1,12701:31809903,10216219 -) -(1,12702:8376255,11069335:23433648,615216,237900 -g1,12701:8376255,11069335 -(1,12701:8376255,11069335:3475610,615216,237900 -r1,12754:8376255,11069335:0,792993,237900 -g1,12701:8703935,11069335 -g1,12701:8703936,11069335 -(1,12701:8703936,11069335:0,452978,115847 -r1,12754:10469049,11069335:1765113,568825,115847 -k1,12701:8703936,11069335:-1765113 -) -(1,12701:8703936,11069335:1765113,452978,115847 -k1,12701:8703936,11069335:3277 -h1,12701:10465772,11069335:0,411205,112570 -) -k1,12701:11524185,11069335:1055136 -g1,12701:11851865,11069335 -) -g1,12701:11851865,11069335 -(1,12701:11851865,11069335:3828666,615216,237900 -g1,12701:12179545,11069335 -g1,12701:12179546,11069335 -$1,12701:12179546,11069335 -(1,12701:12525576,10794054:311689,339935,0 -) -$1,12701:12837265,11069335 -k1,12701:15352851,11069335:2515586 -g1,12701:15680531,11069335 -) -g1,12701:15680531,11069335 -(1,12701:15680531,11069335:7002829,615216,237900 -g1,12701:16008211,11069335 -g1,12701:16008212,11069335 -$1,12701:16008212,11069335 -(1,12701:16008212,11107979:649462,567542,79954 -) -(1,12701:17431000,11167649:233243,346358,5505 -) -g1,12701:17809891,11069335 -g1,12701:18523736,11069335 -[1,12701:18523736,11069335:502661,513147,7864 -(1,12701:18994283,11061471:0,505283,0 -) -(1,12701:18523736,11069335:502661,355205,7864 -) -] -(1,12701:19326552,10794054:311689,339935,0 -) -g1,12701:20943221,11069335 -g1,12701:21657066,11069335 -$1,12701:22355680,11069335 -g1,12701:22355680,11069335 -g1,12701:22683360,11069335 -) -g1,12701:22683360,11069335 -(1,12702:22683360,11069335:9126543,615216,237900 -g1,12701:23011040,11069335 -g1,12701:23011041,11069335 -g1,12701:25489612,11069335 -k1,12702:31482223,11069335:3338403 -g1,12702:31809903,11069335 -) -g1,12702:31809903,11069335 -) -(1,12703:8376255,11990360:23433648,683125,237900 -g1,12702:8376255,11990360 -(1,12702:8376255,11990360:3475610,683125,237900 -r1,12754:8376255,11990360:0,792993,237900 -g1,12702:8703935,11990360 -g1,12702:8703936,11990360 -(1,12702:8703936,11990360:0,452978,115847 -r1,12754:10117337,11990360:1413401,568825,115847 -k1,12702:8703936,11990360:-1413401 -) -(1,12702:8703936,11990360:1413401,452978,115847 -k1,12702:8703936,11990360:3277 -h1,12702:10114060,11990360:0,411205,112570 -) -k1,12702:11524185,11990360:1406848 -g1,12702:11851865,11990360 -) -g1,12702:11851865,11990360 -(1,12702:11851865,11990360:3828666,683125,237900 -g1,12702:12179545,11990360 -g1,12702:12179546,11990360 -$1,12702:12179546,11990360 -$1,12702:12525576,11990360 -k1,12702:15352851,11990360:2827275 -g1,12702:15680531,11990360 -) -g1,12702:15680531,11990360 -(1,12702:15680531,11990360:7002829,683125,237900 -g1,12702:16008211,11990360 -g1,12702:16008212,11990360 -$1,12702:16008212,11990360 -(1,12702:16008212,11990360:1339294,683125,75782 -(1,12702:16189747,11625954:199229,242811,0 -$1,12702:16189747,11625954 -$1,12702:16388976,11625954 -) -(1,12702:16094065,11990360:1253441,683125,75782 -$1,12702:16094065,11990360 -(1,12702:16094065,11990360:1253441,683125,75782 -[1,12702:16094065,11359663:595722,26214,706479 -] -[1,12702:16689787,11990360:657719,683125,7864 -(1,12702:16689787,11990360:657719,530010,7864 -(1,12702:17035817,11800285:311689,339935,0 -) -) -] -) -$1,12702:17347506,11990360 -) -) -$1,12702:17347506,11990360 -k1,12702:22355680,11990360:5008174 -g1,12702:22683360,11990360 -) -g1,12702:22683360,11990360 -(1,12703:22683360,11990360:9126543,683125,237900 -g1,12702:23011040,11990360 -g1,12702:23011041,11990360 -g1,12702:25489612,11990360 -g1,12702:28532448,11990360 -g1,12703:31482223,11990360 -g1,12703:31809903,11990360 -) -g1,12703:31809903,11990360 -) -(1,12704:8376255,12783353:23433648,555093,237900 -g1,12703:8376255,12783353 -(1,12703:8376255,12783353:3475610,555093,237900 -r1,12754:8376255,12783353:0,792993,237900 -g1,12703:8703935,12783353 -g1,12703:8703936,12783353 -(1,12703:8703936,12783353:0,452978,115847 -r1,12754:11524185,12783353:2820249,568825,115847 -k1,12703:8703936,12783353:-2820249 -) -(1,12703:8703936,12783353:2820249,452978,115847 -k1,12703:8703936,12783353:3277 -h1,12703:11520908,12783353:0,411205,112570 -) -g1,12703:11524185,12783353 -g1,12703:11851865,12783353 -) -g1,12703:11851865,12783353 -(1,12703:11851865,12783353:3828666,555093,237900 -g1,12703:12179545,12783353 -g1,12703:12179546,12783353 -g1,12703:12942385,12783353 -g1,12703:13824499,12783353 -$1,12703:13824499,12783353 -[1,12703:13824499,12783353:502661,493486,7864 -(1,12703:14295701,12775489:0,485622,0 -) -(1,12703:13824499,12783353:502661,355205,7864 -) -] -$1,12703:14327160,12783353 -k1,12703:15352851,12783353:1025691 -g1,12703:15680531,12783353 -) -g1,12703:15680531,12783353 -(1,12703:15680531,12783353:7002829,555093,237900 -g1,12703:16008211,12783353 -k1,12703:22355680,12783353:6347469 -g1,12703:22683360,12783353 -) -g1,12703:22683360,12783353 -(1,12704:22683360,12783353:9126543,555093,237900 -g1,12703:23011040,12783353 -g1,12703:23011041,12783353 -k1,12704:31482223,12783353:6111231 -g1,12704:31809903,12783353 -) -g1,12704:31809903,12783353 -) -(1,12705:8376255,13576346:23433648,555093,237900 -g1,12704:8376255,13576346 -(1,12704:8376255,13576346:3475610,555093,237900 -r1,12754:8376255,13576346:0,792993,237900 -g1,12704:8703935,13576346 -g1,12704:8703936,13576346 -(1,12704:8703936,13576346:0,452978,115847 -r1,12754:10469049,13576346:1765113,568825,115847 -k1,12704:8703936,13576346:-1765113 -) -(1,12704:8703936,13576346:1765113,452978,115847 -k1,12704:8703936,13576346:3277 -h1,12704:10465772,13576346:0,411205,112570 -) -k1,12704:11524185,13576346:1055136 -g1,12704:11851865,13576346 -) -g1,12704:11851865,13576346 -(1,12704:11851865,13576346:3828666,555093,237900 -g1,12704:12179545,13576346 -g1,12704:12179546,13576346 -k1,12704:15352851,13576346:1618791 -g1,12704:15680531,13576346 -) -g1,12704:15680531,13576346 -(1,12704:15680531,13576346:7002829,555093,237900 -g1,12704:16008211,13576346 -g1,12704:16008212,13576346 -g1,12704:18567392,13576346 -$1,12704:18567392,13576346 -(1,12704:19285012,13674660:233243,346358,5505 -) -g1,12704:19663903,13576346 -g1,12704:20377748,13576346 -[1,12704:20377748,13576346:502661,513147,7864 -(1,12704:20848295,13568482:0,505283,0 -) -(1,12704:20377748,13576346:502661,355205,7864 -) -] -$1,12704:21124858,13576346 -k1,12704:22355680,13576346:1230822 -g1,12704:22683360,13576346 -) -g1,12704:22683360,13576346 -(1,12705:22683360,13576346:9126543,555093,237900 -g1,12704:23011040,13576346 -g1,12704:23011041,13576346 -g1,12704:25570221,13576346 -g1,12704:28474776,13576346 -k1,12705:31482223,13576346:57672 -g1,12705:31809903,13576346 -) -g1,12705:31809903,13576346 -) -(1,12706:8376255,14369339:23433648,555093,237900 -g1,12705:8376255,14369339 -(1,12705:8376255,14369339:3475610,555093,237900 -r1,12754:8376255,14369339:0,792993,237900 -g1,12705:8703935,14369339 -g1,12705:8703936,14369339 -(1,12705:8703936,14369339:0,452978,115847 -r1,12754:10820761,14369339:2116825,568825,115847 -k1,12705:8703936,14369339:-2116825 -) -(1,12705:8703936,14369339:2116825,452978,115847 -k1,12705:8703936,14369339:3277 -h1,12705:10817484,14369339:0,411205,112570 -) -k1,12705:11524185,14369339:703424 -g1,12705:11851865,14369339 -) -g1,12705:11851865,14369339 -(1,12705:11851865,14369339:3828666,555093,237900 -g1,12705:12179545,14369339 -g1,12705:12179546,14369339 -k1,12705:15352851,14369339:1597164 -g1,12705:15680531,14369339 -) -g1,12705:15680531,14369339 -(1,12705:15680531,14369339:7002829,555093,237900 -g1,12705:16008211,14369339 -k1,12705:22355680,14369339:6347469 -g1,12705:22683360,14369339 -) -g1,12705:22683360,14369339 -(1,12706:22683360,14369339:9126543,555093,237900 -g1,12705:23011040,14369339 -g1,12705:23011041,14369339 -k1,12706:31482223,14369339:6688603 -g1,12706:31809903,14369339 -) -g1,12706:31809903,14369339 -) -(1,12707:8376255,15162332:23433648,555093,237900 -g1,12706:8376255,15162332 -(1,12706:8376255,15162332:3475610,555093,237900 -r1,12754:8376255,15162332:0,792993,237900 -g1,12706:8703935,15162332 -g1,12706:8703936,15162332 -(1,12706:8703936,15162332:0,452978,115847 -r1,12754:10469049,15162332:1765113,568825,115847 -k1,12706:8703936,15162332:-1765113 -) -(1,12706:8703936,15162332:1765113,452978,115847 -k1,12706:8703936,15162332:3277 -h1,12706:10465772,15162332:0,411205,112570 -) -k1,12706:11524185,15162332:1055136 -g1,12706:11851865,15162332 -) -g1,12706:11851865,15162332 -(1,12706:11851865,15162332:3828666,555093,237900 -g1,12706:12179545,15162332 -g1,12706:12179546,15162332 -$1,12706:12179546,15162332 -(1,12706:12682207,15260646:971374,248644,5505 -) -$1,12706:13653581,15162332 -k1,12706:15352851,15162332:1699270 -g1,12706:15680531,15162332 -) -g1,12706:15680531,15162332 -(1,12706:15680531,15162332:7002829,555093,237900 -g1,12706:16008211,15162332 -k1,12706:22355680,15162332:6347469 -g1,12706:22683360,15162332 -) -g1,12706:22683360,15162332 -(1,12707:22683360,15162332:9126543,555093,237900 -g1,12706:23011040,15162332 -g1,12706:23011041,15162332 -k1,12707:31482223,15162332:5274336 -g1,12707:31809903,15162332 -) -g1,12707:31809903,15162332 -) -(1,12708:8376255,15955325:23433648,555093,237900 -g1,12707:8376255,15955325 -(1,12707:8376255,15955325:3475610,555093,237900 -r1,12754:8376255,15955325:0,792993,237900 -g1,12707:8703935,15955325 -g1,12707:8703936,15955325 -(1,12707:8703936,15955325:0,452978,115847 -r1,12754:10469049,15955325:1765113,568825,115847 -k1,12707:8703936,15955325:-1765113 -) -(1,12707:8703936,15955325:1765113,452978,115847 -k1,12707:8703936,15955325:3277 -h1,12707:10465772,15955325:0,411205,112570 -) -k1,12707:11524185,15955325:1055136 -g1,12707:11851865,15955325 -) -g1,12707:11851865,15955325 -(1,12707:11851865,15955325:3828666,555093,237900 -g1,12707:12179545,15955325 -g1,12707:12179546,15955325 -$1,12707:12179546,15955325 -(1,12707:12682207,16053639:897974,331678,0 -) -$1,12707:13580181,15955325 -k1,12707:15352851,15955325:1772670 -g1,12707:15680531,15955325 -) -g1,12707:15680531,15955325 -(1,12707:15680531,15955325:7002829,555093,237900 -g1,12707:16008211,15955325 -k1,12707:22355680,15955325:6347469 -g1,12707:22683360,15955325 -) -g1,12707:22683360,15955325 -(1,12708:22683360,15955325:9126543,555093,237900 -g1,12707:23011040,15955325 -g1,12707:23011041,15955325 -k1,12708:31482223,15955325:5379193 -g1,12708:31809903,15955325 -) -g1,12708:31809903,15955325 -) -(1,12709:8376255,16748318:23433648,555093,237900 -g1,12708:8376255,16748318 -(1,12708:8376255,16748318:3475610,555093,237900 -r1,12754:8376255,16748318:0,792993,237900 -g1,12708:8703935,16748318 -g1,12708:8703936,16748318 -(1,12708:8703936,16748318:0,452978,122846 -r1,12754:11172473,16748318:2468537,575824,122846 -k1,12708:8703936,16748318:-2468537 -) -(1,12708:8703936,16748318:2468537,452978,122846 -k1,12708:8703936,16748318:3277 -h1,12708:11169196,16748318:0,411205,112570 -) -k1,12708:11524185,16748318:351712 -g1,12708:11851865,16748318 -) -g1,12708:11851865,16748318 -(1,12708:11851865,16748318:3828666,555093,237900 -g1,12708:12179545,16748318 -g1,12708:12179546,16748318 -$1,12708:12179546,16748318 -(1,12708:12682207,16846632:897974,331678,0 -) -g1,12708:13878816,16748318 -(1,12708:14381477,16846632:971374,248644,5505 -) -$1,12708:15352851,16748318 -g1,12708:15352851,16748318 -g1,12708:15680531,16748318 -) -g1,12708:15680531,16748318 -(1,12708:15680531,16748318:7002829,555093,237900 -g1,12708:16008211,16748318 -k1,12708:22355680,16748318:6347469 -g1,12708:22683360,16748318 -) -g1,12708:22683360,16748318 -(1,12709:22683360,16748318:9126543,555093,237900 -g1,12708:23011040,16748318 -g1,12708:23011041,16748318 -k1,12709:31482223,16748318:6690569 -g1,12709:31809903,16748318 -) -g1,12709:31809903,16748318 -) -] -$1,12710:31809903,12932344 -) -g1,12710:31809903,12932344 -) -(1,12710:8177026,17348238:23632877,65536,0 -g1,12710:8177026,17348238 -(1,12710:8177026,17348238:23632877,65536,0 -r1,12754:31809903,17348238:23632877,65536,0 -) -g1,12710:31809903,17348238 -) -] -g1,12710:31809903,17348238 -k1,12710:32583029,17348238:773126 -) -] -] -(1,12689:6630773,19314318:25952256,32768,229376 -(1,12689:6630773,19314318:0,32768,229376 -(1,12689:6630773,19314318:5505024,32768,229376 -r1,12754:12135797,19314318:5505024,262144,229376 -) -k1,12689:6630773,19314318:-5505024 -) -(1,12689:6630773,19314318:25952256,32768,0 -r1,12754:32583029,19314318:25952256,32768,0 -) -) -(1,12689:6630773,20946170:25952256,606339,14155 -(1,12689:6630773,20946170:1974731,582746,0 -g1,12689:6630773,20946170 -g1,12689:8605504,20946170 -) -g1,12689:12684727,20946170 -k1,12689:32583029,20946170:15515516 -g1,12689:32583029,20946170 -) -(1,12692:6630773,22204466:25952256,513147,134348 -k1,12691:8580143,22204466:212666 -k1,12691:9811894,22204466:212666 -k1,12691:11616431,22204466:212667 -k1,12691:13567112,22204466:212666 -k1,12691:14439070,22204466:212666 -k1,12691:15670821,22204466:212666 -k1,12691:16298317,22204466:212653 -k1,12691:19353279,22204466:212666 -k1,12691:20181983,22204466:212666 -k1,12691:21784013,22204466:212667 -k1,12691:24551272,22204466:212666 -k1,12691:25955383,22204466:212666 -k1,12691:29195157,22204466:212666 -k1,12691:29822653,22204466:212653 -k1,12691:32583029,22204466:0 -) -(1,12692:6630773,23069546:25952256,513147,134348 -k1,12691:9896491,23069546:239921 -k1,12691:11603108,23069546:239921 -k1,12691:12790681,23069546:239922 -k1,12691:15155279,23069546:239921 -k1,12691:16586645,23069546:239921 -k1,12691:19512887,23069546:239921 -k1,12691:23728222,23069546:239921 -k1,12691:25727129,23069546:239921 -k1,12691:27534672,23069546:239922 -k1,12691:29842909,23069546:239921 -k1,12691:31274275,23069546:239921 -k1,12692:32583029,23069546:0 -) -(1,12692:6630773,23934626:25952256,513147,134348 -k1,12691:8660204,23934626:247507 -k1,12691:9559140,23934626:247508 -k1,12691:11741270,23934626:247507 -k1,12691:13342752,23934626:247508 -k1,12691:16276580,23934626:247507 -k1,12691:19015767,23934626:247508 -k1,12691:21006532,23934626:247507 -h1,12691:21977120,23934626:0,0,0 -k1,12691:22224627,23934626:247507 -k1,12691:23795962,23934626:247508 -k1,12691:25735609,23934626:247507 -k1,12691:29288098,23934626:247508 -k1,12691:31048831,23934626:247507 -k1,12692:32583029,23934626:0 -) -(1,12692:6630773,24799706:25952256,505283,134348 -k1,12691:8676283,24799706:274072 -k1,12691:9848197,24799706:274071 -k1,12691:11818996,24799706:274072 -k1,12691:14877692,24799706:274071 -k1,12691:17199764,24799706:274072 -k1,12691:20093964,24799706:274071 -k1,12691:22676214,24799706:274072 -k1,12691:25160159,24799706:274071 -k1,12691:28167738,24799706:274072 -k1,12691:29127971,24799706:274071 -k1,12691:32583029,24799706:0 -) -(1,12692:6630773,25664786:25952256,513147,126483 -k1,12691:7469719,25664786:211111 -k1,12691:10346835,25664786:211111 -k1,12691:13253442,25664786:211111 -(1,12691:13253442,25664786:0,452978,115847 -r1,12754:16777114,25664786:3523672,568825,115847 -k1,12691:13253442,25664786:-3523672 -) -(1,12691:13253442,25664786:3523672,452978,115847 -k1,12691:13253442,25664786:3277 -h1,12691:16773837,25664786:0,411205,112570 -) -k1,12691:16988225,25664786:211111 -k1,12691:18303619,25664786:211112 -k1,12691:19262496,25664786:211111 -k1,12691:20986833,25664786:211111 -k1,12691:21849372,25664786:211111 -k1,12691:26912769,25664786:211111 -k1,12691:29911782,25664786:211111 -k1,12691:32583029,25664786:0 -) -(1,12692:6630773,26529866:25952256,513147,126483 -k1,12691:9654274,26529866:227080 -k1,12691:12812125,26529866:227081 -k1,12691:13986856,26529866:227080 -k1,12691:14569797,26529866:227081 -k1,12691:16774754,26529866:227080 -k1,12691:17661126,26529866:227080 -k1,12691:22133629,26529866:227081 -k1,12691:23552154,26529866:227080 -k1,12691:26233558,26529866:227081 -(1,12691:26233558,26529866:0,452978,115847 -r1,12754:29405518,26529866:3171960,568825,115847 -k1,12691:26233558,26529866:-3171960 -) -(1,12691:26233558,26529866:3171960,452978,115847 -k1,12691:26233558,26529866:3277 -h1,12691:29402241,26529866:0,411205,112570 -) -k1,12691:29632598,26529866:227080 -k1,12691:32583029,26529866:0 -) -(1,12692:6630773,27394946:25952256,513147,134348 -k1,12691:7260667,27394946:274034 -k1,12691:10525109,27394946:274034 -k1,12691:12083649,27394946:274034 -k1,12691:15059732,27394946:274034 -k1,12691:16143136,27394946:274034 -k1,12691:17436255,27394946:274034 -k1,12691:19265458,27394946:274034 -k1,12691:20198784,27394946:274034 -k1,12691:21491903,27394946:274034 -k1,12691:24838265,27394946:274034 -k1,12691:27317586,27394946:274034 -k1,12691:28243048,27394946:274034 -k1,12691:29148849,27394946:274034 -k1,12691:31558046,27394946:274034 -k1,12691:32583029,27394946:0 -) -(1,12692:6630773,28260026:25952256,513147,134348 -g1,12691:9108689,28260026 -h1,12691:10651407,28260026:0,0,0 -g1,12691:10850636,28260026 -g1,12691:11859235,28260026 -g1,12691:13556617,28260026 -h1,12691:14751994,28260026:0,0,0 -g1,12691:14951223,28260026 -g1,12691:16098103,28260026 -g1,12691:17627713,28260026 -g1,12691:18478370,28260026 -g1,12691:20638436,28260026 -g1,12691:22296496,28260026 -g1,12691:23826106,28260026 -k1,12692:32583029,28260026:5391650 -g1,12692:32583029,28260026 -) -(1,12714:6630773,29125106:25952256,513147,134348 -h1,12713:6630773,29125106:983040,0,0 -k1,12713:8634572,29125106:260541 -k1,12713:11334363,29125106:260541 -k1,12713:12060865,29125106:260541 -k1,12713:13340491,29125106:260541 -k1,12713:16673360,29125106:260541 -k1,12713:19635951,29125106:260542 -(1,12713:19635951,29125106:0,414482,115847 -r1,12754:20697640,29125106:1061689,530329,115847 -k1,12713:19635951,29125106:-1061689 -) -(1,12713:19635951,29125106:1061689,414482,115847 -k1,12713:19635951,29125106:3277 -h1,12713:20694363,29125106:0,411205,112570 -) -k1,12713:20958181,29125106:260541 -k1,12713:22915449,29125106:260541 -k1,12713:26201787,29125106:260541 -k1,12713:28472973,29125106:260541 -(1,12713:28472973,29125106:0,414482,115847 -r1,12754:29182951,29125106:709978,530329,115847 -k1,12713:28472973,29125106:-709978 -) -(1,12713:28472973,29125106:709978,414482,115847 -k1,12713:28472973,29125106:3277 -h1,12713:29179674,29125106:0,411205,112570 -) -k1,12713:29617162,29125106:260541 -k1,12713:31074390,29125106:260541 -k1,12713:32583029,29125106:0 -) -(1,12714:6630773,29990186:25952256,513147,102891 -k1,12713:9052205,29990186:222044 -k1,12713:10477490,29990186:222044 -k1,12713:11231031,29990186:222044 -k1,12713:12737582,29990186:222045 -k1,12713:13425587,29990186:222044 -k1,12713:14804341,29990186:222044 -k1,12713:16706728,29990186:222044 -k1,12713:18759848,29990186:222044 -k1,12713:20054061,29990186:222044 -k1,12713:20807602,29990186:222044 -k1,12713:24170787,29990186:222044 -k1,12713:25411917,29990186:222045 -k1,12713:26941404,29990186:222044 -k1,12713:29006320,29990186:222044 -k1,12713:29887656,29990186:222044 -k1,12713:31128785,29990186:222044 -k1,12714:32583029,29990186:0 -) -(1,12714:6630773,30855266:25952256,513147,134348 -k1,12713:9570786,30855266:224201 -k1,12713:10326484,30855266:224201 -k1,12713:13518155,30855266:224201 -k1,12713:14974433,30855266:224201 -k1,12713:16696787,30855266:224201 -h1,12713:17493705,30855266:0,0,0 -k1,12713:17717906,30855266:224201 -k1,12713:18889758,30855266:224201 -k1,12713:21231428,30855266:224202 -k1,12713:22264999,30855266:224201 -k1,12713:23508285,30855266:224201 -k1,12713:24967840,30855266:224201 -k1,12713:25859197,30855266:224201 -(1,12713:25859197,30855266:0,414482,115847 -r1,12754:26569175,30855266:709978,530329,115847 -k1,12713:25859197,30855266:-709978 -) -(1,12713:25859197,30855266:709978,414482,115847 -k1,12713:25859197,30855266:3277 -h1,12713:26565898,30855266:0,411205,112570 -) -k1,12713:26793376,30855266:224201 -k1,12713:27633615,30855266:224201 -k1,12713:28653423,30855266:224201 -k1,12713:31812326,30855266:224201 -k1,12713:32583029,30855266:0 -) -(1,12714:6630773,31720346:25952256,513147,126483 -k1,12713:10073359,31720346:215593 -k1,12713:13569683,31720346:215592 -k1,12713:15653052,31720346:215593 -(1,12713:15653052,31720346:0,414482,115847 -r1,12754:17418165,31720346:1765113,530329,115847 -k1,12713:15653052,31720346:-1765113 -) -(1,12713:15653052,31720346:1765113,414482,115847 -k1,12713:15653052,31720346:3277 -h1,12713:17414888,31720346:0,411205,112570 -) -k1,12713:17633758,31720346:215593 -k1,12713:19861305,31720346:215592 -k1,12713:20822042,31720346:215593 -k1,12713:21689062,31720346:215592 -k1,12713:24549688,31720346:215593 -k1,12713:25968522,31720346:215593 -k1,12713:28449694,31720346:215592 -k1,12713:31839851,31720346:215593 -k1,12713:32583029,31720346:0 -) -(1,12714:6630773,32585426:25952256,513147,134348 -k1,12713:10201510,32585426:191045 -k1,12713:11524363,32585426:191046 -(1,12713:11524363,32585426:0,414482,115847 -r1,12754:12234341,32585426:709978,530329,115847 -k1,12713:11524363,32585426:-709978 -) -(1,12713:11524363,32585426:709978,414482,115847 -k1,12713:11524363,32585426:3277 -h1,12713:12231064,32585426:0,411205,112570 -) -k1,12713:12425386,32585426:191045 -k1,12713:13232469,32585426:191045 -k1,12713:14442600,32585426:191046 -k1,12713:16342169,32585426:191045 -k1,12713:17184642,32585426:191045 -k1,12713:18123453,32585426:191045 -k1,12713:21089949,32585426:191046 -k1,12713:22170973,32585426:191045 -k1,12713:25687970,32585426:191045 -k1,12713:27921773,32585426:191046 -k1,12713:31563944,32585426:191045 -k1,12713:32583029,32585426:0 -) -(1,12714:6630773,33450506:25952256,355205,126483 -k1,12714:32583029,33450506:22874686 -g1,12714:32583029,33450506 -) -v1,12716:6630773,34135361:0,393216,0 -(1,12730:6630773,37575650:25952256,3833505,196608 -g1,12730:6630773,37575650 -g1,12730:6630773,37575650 -g1,12730:6434165,37575650 -(1,12730:6434165,37575650:0,3833505,196608 -r1,12754:32779637,37575650:26345472,4030113,196608 -k1,12730:6434165,37575650:-26345472 -) -(1,12730:6434165,37575650:26345472,3833505,196608 -[1,12730:6630773,37575650:25952256,3636897,0 -(1,12718:6630773,34363192:25952256,424439,86428 -(1,12717:6630773,34363192:0,0,0 -g1,12717:6630773,34363192 -g1,12717:6630773,34363192 -g1,12717:6303093,34363192 -(1,12717:6303093,34363192:0,0,0 -) -g1,12717:6630773,34363192 -) -g1,12718:7294681,34363192 -g1,12718:8290543,34363192 -g1,12718:10946175,34363192 -h1,12718:11942037,34363192:0,0,0 -k1,12718:32583029,34363192:20640992 -g1,12718:32583029,34363192 -) -(1,12719:6630773,35048047:25952256,424439,79822 -h1,12719:6630773,35048047:0,0,0 -k1,12719:6630773,35048047:0 -h1,12719:8954451,35048047:0,0,0 -k1,12719:32583029,35048047:23628578 -g1,12719:32583029,35048047 -) -(1,12723:6630773,35863974:25952256,424439,79822 -(1,12721:6630773,35863974:0,0,0 -g1,12721:6630773,35863974 -g1,12721:6630773,35863974 -g1,12721:6303093,35863974 -(1,12721:6303093,35863974:0,0,0 -) -g1,12721:6630773,35863974 -) -g1,12723:7626635,35863974 -g1,12723:8954451,35863974 -h1,12723:9618359,35863974:0,0,0 -k1,12723:32583029,35863974:22964670 -g1,12723:32583029,35863974 -) -(1,12725:6630773,36679901:25952256,424439,86428 -(1,12724:6630773,36679901:0,0,0 -g1,12724:6630773,36679901 -g1,12724:6630773,36679901 -g1,12724:6303093,36679901 -(1,12724:6303093,36679901:0,0,0 -) -g1,12724:6630773,36679901 -) -k1,12725:6630773,36679901:0 -g1,12725:9286405,36679901 -g1,12725:11278129,36679901 -g1,12725:11942037,36679901 -h1,12725:13601807,36679901:0,0,0 -k1,12725:32583029,36679901:18981222 -g1,12725:32583029,36679901 -) -(1,12729:6630773,37495828:25952256,424439,79822 -(1,12727:6630773,37495828:0,0,0 -g1,12727:6630773,37495828 -g1,12727:6630773,37495828 -g1,12727:6303093,37495828 -(1,12727:6303093,37495828:0,0,0 -) -g1,12727:6630773,37495828 -) -g1,12729:7626635,37495828 -g1,12729:8954451,37495828 -h1,12729:10282267,37495828:0,0,0 -k1,12729:32583029,37495828:22300762 -g1,12729:32583029,37495828 -) -] -) -g1,12730:32583029,37575650 -g1,12730:6630773,37575650 -g1,12730:6630773,37575650 -g1,12730:32583029,37575650 -g1,12730:32583029,37575650 -) -h1,12730:6630773,37772258:0,0,0 -(1,12734:6630773,38637338:25952256,513147,126483 -h1,12733:6630773,38637338:983040,0,0 -k1,12733:10665215,38637338:261534 -(1,12733:10665215,38637338:0,452978,115847 -r1,12754:12782040,38637338:2116825,568825,115847 -k1,12733:10665215,38637338:-2116825 -) -(1,12733:10665215,38637338:2116825,452978,115847 -k1,12733:10665215,38637338:3277 -h1,12733:12778763,38637338:0,411205,112570 -) -k1,12733:13043575,38637338:261535 -k1,12733:14409391,38637338:261534 -k1,12733:15418692,38637338:261535 -k1,12733:17193452,38637338:261534 -k1,12733:18106415,38637338:261535 -k1,12733:21155851,38637338:261534 -k1,12733:22436470,38637338:261534 -k1,12733:24436020,38637338:261535 -k1,12733:26265175,38637338:261534 -k1,12733:27292826,38637338:261535 -k1,12733:29738675,38637338:261534 -k1,12733:30686372,38637338:261535 -k1,12733:31563944,38637338:261534 -k1,12733:32583029,38637338:0 -) -(1,12734:6630773,39502418:25952256,513147,134348 -k1,12733:9511616,39502418:219426 -k1,12733:11760038,39502418:219427 -k1,12733:12665626,39502418:219426 -k1,12733:14163659,39502418:219426 -k1,12733:15069248,39502418:219427 -k1,12733:18043152,39502418:219426 -k1,12733:20504566,39502418:219427 -k1,12733:21793540,39502418:219426 -k1,12733:24081282,39502418:219426 -k1,12733:27509352,39502418:219427 -k1,12733:29242004,39502418:219426 -k1,12733:32583029,39502418:0 -) -(1,12734:6630773,40367498:25952256,513147,134348 -k1,12733:9456347,40367498:253286 -k1,12733:11893948,40367498:253286 -k1,12733:13343921,40367498:253286 -k1,12733:16669535,40367498:253286 -k1,12733:19128108,40367498:253286 -k1,12733:20032821,40367498:253285 -k1,12733:23566839,40367498:253286 -(1,12733:23566839,40367498:0,452978,115847 -r1,12754:24980240,40367498:1413401,568825,115847 -k1,12733:23566839,40367498:-1413401 -) -(1,12733:23566839,40367498:1413401,452978,115847 -k1,12733:23566839,40367498:3277 -h1,12733:24976963,40367498:0,411205,112570 -) -k1,12733:25233526,40367498:253286 -k1,12733:27888051,40367498:253286 -k1,12733:29160422,40367498:253286 -k1,12733:31923737,40367498:253286 -k1,12733:32583029,40367498:0 -) -(1,12734:6630773,41232578:25952256,513147,134348 -k1,12733:7857153,41232578:207295 -k1,12733:12136200,41232578:207295 -k1,12733:12994924,41232578:207296 -k1,12733:15552995,41232578:207295 -k1,12733:16373052,41232578:207295 -k1,12733:18050975,41232578:207295 -k1,12733:20770266,41232578:207296 -k1,12733:21636853,41232578:207295 -k1,12733:22863233,41232578:207295 -k1,12733:25048405,41232578:207295 -k1,12733:25914993,41232578:207296 -k1,12733:28132933,41232578:207295 -k1,12733:29853454,41232578:207295 -k1,12733:32583029,41232578:0 -) -(1,12734:6630773,42097658:25952256,513147,134348 -g1,12733:8469057,42097658 -g1,12733:10235907,42097658 -g1,12733:13086067,42097658 -g1,12733:13936724,42097658 -k1,12734:32583029,42097658:16435776 -g1,12734:32583029,42097658 -) -v1,12736:6630773,42782513:0,393216,0 -(1,12750:6630773,45510161:25952256,3120864,196608 -g1,12750:6630773,45510161 -g1,12750:6630773,45510161 -g1,12750:6434165,45510161 -(1,12750:6434165,45510161:0,3120864,196608 -r1,12754:32779637,45510161:26345472,3317472,196608 -k1,12750:6434165,45510161:-26345472 -) -(1,12750:6434165,45510161:26345472,3120864,196608 -[1,12750:6630773,45510161:25952256,2924256,0 -(1,12738:6630773,43010344:25952256,424439,86428 -(1,12737:6630773,43010344:0,0,0 -g1,12737:6630773,43010344 -g1,12737:6630773,43010344 -g1,12737:6303093,43010344 -(1,12737:6303093,43010344:0,0,0 -) -g1,12737:6630773,43010344 -) -g1,12738:7294681,43010344 -g1,12738:8290543,43010344 -g1,12738:10946175,43010344 -h1,12738:12273991,43010344:0,0,0 -k1,12738:32583029,43010344:20309038 -g1,12738:32583029,43010344 -) -(1,12739:6630773,43695199:25952256,424439,79822 -h1,12739:6630773,43695199:0,0,0 -k1,12739:6630773,43695199:0 -h1,12739:8954451,43695199:0,0,0 -k1,12739:32583029,43695199:23628578 -g1,12739:32583029,43695199 -) -(1,12743:6630773,44273579:25952256,424439,79822 -(1,12741:6630773,44273579:0,0,0 -g1,12741:6630773,44273579 -g1,12741:6630773,44273579 -g1,12741:6303093,44273579 -(1,12741:6303093,44273579:0,0,0 -) -g1,12741:6630773,44273579 -) -g1,12743:7626635,44273579 -g1,12743:8954451,44273579 -h1,12743:11278129,44273579:0,0,0 -k1,12743:32583029,44273579:21304900 -g1,12743:32583029,44273579 -) -(1,12745:6630773,44851959:25952256,424439,86428 -(1,12744:6630773,44851959:0,0,0 -g1,12744:6630773,44851959 -g1,12744:6630773,44851959 -g1,12744:6303093,44851959 -(1,12744:6303093,44851959:0,0,0 -) -g1,12744:6630773,44851959 -) -k1,12745:6630773,44851959:0 -g1,12745:9286405,44851959 -g1,12745:10946175,44851959 -g1,12745:11610083,44851959 -h1,12745:13269853,44851959:0,0,0 -k1,12745:32583029,44851959:19313176 -g1,12745:32583029,44851959 -) -(1,12749:6630773,45430339:25952256,424439,79822 -(1,12747:6630773,45430339:0,0,0 -g1,12747:6630773,45430339 -g1,12747:6630773,45430339 -g1,12747:6303093,45430339 -(1,12747:6303093,45430339:0,0,0 -) -g1,12747:6630773,45430339 -) -g1,12749:7626635,45430339 -g1,12749:8954451,45430339 -h1,12749:9618359,45430339:0,0,0 -k1,12749:32583029,45430339:22964670 -g1,12749:32583029,45430339 -) -] -) -g1,12750:32583029,45510161 -g1,12750:6630773,45510161 -g1,12750:6630773,45510161 -g1,12750:32583029,45510161 -g1,12750:32583029,45510161 -) -h1,12750:6630773,45706769:0,0,0 +(1,12693:6630773,7624460:25952256,513147,134348 +h1,12693:6630773,7624460:0,0,0 +g1,12693:10229354,7624460 +g1,12693:11941809,7624460 +g1,12693:14265715,7624460 +g1,12693:17549068,7624460 +g1,12693:21256439,7624460 +g1,12693:22647113,7624460 +g1,12693:23865427,7624460 +g1,12693:28688221,7624460 +g1,12693:29302293,7624460 +k1,12693:32583029,7624460:202510 +g1,12693:32583029,7624460 +) +(1,12708:6630773,17348238:25952256,9176553,0 +k1,12708:7403899,17348238:773126 +h1,12694:7403899,17348238:0,0,0 +k1,12694:8177026,17348238:773127 +[1,12708:8177026,17348238:23632877,9176553,0 +(1,12708:8177026,8237221:23632877,65536,0 +g1,12708:8177026,8237221 +(1,12708:8177026,8237221:23632877,65536,0 +r1,12752:31809903,8237221:23632877,65536,0 +) +g1,12708:31809903,8237221 +) +(1,12708:8177026,12932344:23632877,4629587,4219286 +g1,12708:8177026,12932344 +(1,12708:8177026,12932344:23632877,4629587,4219286 +g1,12694:8376255,12932344 +$1,12708:8376255,12932344 +[1,12708:8376255,12932344:23433648,4629587,4219286 +(1,12697:8376255,9093877:23433648,555093,237900 +g1,12696:8376255,9093877 +(1,12696:8376255,9093877:3475610,555093,237900 +r1,12752:8376255,9093877:0,792993,237900 +g1,12696:8703935,9093877 +g1,12696:8703936,9093877 +k1,12696:11524185,9093877:30381 +g1,12696:11851865,9093877 +) +g1,12696:11851865,9093877 +(1,12696:11851865,9093877:3828666,555093,237900 +g1,12696:12179545,9093877 +g1,12696:12179546,9093877 +k1,12696:15352851,9093877:836946 +g1,12696:15680531,9093877 +) +g1,12696:15680531,9093877 +(1,12696:15680531,9093877:7002829,555093,237900 +g1,12696:16008211,9093877 +g1,12696:16008212,9093877 +k1,12696:22355680,9093877:2442178 +g1,12696:22683360,9093877 +) +g1,12696:22683360,9093877 +(1,12697:22683360,9093877:9126543,555093,237900 +g1,12696:23011040,9093877 +g1,12696:23011041,9093877 +k1,12697:31482223,9093877:6655835 +g1,12697:31809903,9093877 +) +g1,12697:31809903,9093877 +) +(1,12699:8376255,10216219:23433648,555093,237900 +g1,12698:8376255,10216219 +(1,12698:8376255,10216219:3475610,555093,237900 +r1,12752:8376255,10216219:0,792993,237900 +g1,12698:8703935,10216219 +g1,12698:8703936,10216219 +(1,12698:8703936,10216219:0,452978,115847 +r1,12752:10820761,10216219:2116825,568825,115847 +k1,12698:8703936,10216219:-2116825 +) +(1,12698:8703936,10216219:2116825,452978,115847 +k1,12698:8703936,10216219:3277 +h1,12698:10817484,10216219:0,411205,112570 +) +k1,12698:11524185,10216219:703424 +g1,12698:11851865,10216219 +) +g1,12698:11851865,10216219 +(1,12698:11851865,10216219:3828666,555093,237900 +g1,12698:12179545,10216219 +g1,12698:12179546,10216219 +$1,12698:12179546,10216219 +[1,12698:12179546,10216219:502661,458096,7864 +(1,12698:12650093,10208355:0,450232,0 +) +(1,12698:12179546,10216219:502661,355205,7864 +) +] +$1,12698:12682207,10216219 +k1,12698:15352851,10216219:2670644 +g1,12698:15680531,10216219 +) +g1,12698:15680531,10216219 +(1,12698:15680531,10216219:7002829,555093,237900 +g1,12698:16008211,10216219 +g1,12698:16008212,10216219 +$1,12698:16008212,10216219 +(1,12698:16008212,10254863:649462,567542,79954 +) +g1,12698:16766910,10216219 +$1,12698:18128748,10216219 +k1,12698:22355680,10216219:4226932 +g1,12698:22683360,10216219 +) +g1,12698:22683360,10216219 +(1,12699:22683360,10216219:9126543,555093,237900 +g1,12698:23011040,10216219 +g1,12698:23011041,10216219 +k1,12699:31482223,10216219:6733167 +g1,12699:31809903,10216219 +) +g1,12699:31809903,10216219 +) +(1,12700:8376255,11069335:23433648,615216,237900 +g1,12699:8376255,11069335 +(1,12699:8376255,11069335:3475610,615216,237900 +r1,12752:8376255,11069335:0,792993,237900 +g1,12699:8703935,11069335 +g1,12699:8703936,11069335 +(1,12699:8703936,11069335:0,452978,115847 +r1,12752:10469049,11069335:1765113,568825,115847 +k1,12699:8703936,11069335:-1765113 +) +(1,12699:8703936,11069335:1765113,452978,115847 +k1,12699:8703936,11069335:3277 +h1,12699:10465772,11069335:0,411205,112570 +) +k1,12699:11524185,11069335:1055136 +g1,12699:11851865,11069335 +) +g1,12699:11851865,11069335 +(1,12699:11851865,11069335:3828666,615216,237900 +g1,12699:12179545,11069335 +g1,12699:12179546,11069335 +$1,12699:12179546,11069335 +(1,12699:12525576,10794054:311689,339935,0 +) +$1,12699:12837265,11069335 +k1,12699:15352851,11069335:2515586 +g1,12699:15680531,11069335 +) +g1,12699:15680531,11069335 +(1,12699:15680531,11069335:7002829,615216,237900 +g1,12699:16008211,11069335 +g1,12699:16008212,11069335 +$1,12699:16008212,11069335 +(1,12699:16008212,11107979:649462,567542,79954 +) +(1,12699:17431000,11167649:233243,346358,5505 +) +g1,12699:17809891,11069335 +g1,12699:18523736,11069335 +[1,12699:18523736,11069335:502661,513147,7864 +(1,12699:18994283,11061471:0,505283,0 +) +(1,12699:18523736,11069335:502661,355205,7864 +) +] +(1,12699:19326552,10794054:311689,339935,0 +) +g1,12699:20943221,11069335 +g1,12699:21657066,11069335 +$1,12699:22355680,11069335 +g1,12699:22355680,11069335 +g1,12699:22683360,11069335 +) +g1,12699:22683360,11069335 +(1,12700:22683360,11069335:9126543,615216,237900 +g1,12699:23011040,11069335 +g1,12699:23011041,11069335 +g1,12699:25489612,11069335 +k1,12700:31482223,11069335:3338403 +g1,12700:31809903,11069335 +) +g1,12700:31809903,11069335 +) +(1,12701:8376255,11990360:23433648,683125,237900 +g1,12700:8376255,11990360 +(1,12700:8376255,11990360:3475610,683125,237900 +r1,12752:8376255,11990360:0,792993,237900 +g1,12700:8703935,11990360 +g1,12700:8703936,11990360 +(1,12700:8703936,11990360:0,452978,115847 +r1,12752:10117337,11990360:1413401,568825,115847 +k1,12700:8703936,11990360:-1413401 +) +(1,12700:8703936,11990360:1413401,452978,115847 +k1,12700:8703936,11990360:3277 +h1,12700:10114060,11990360:0,411205,112570 +) +k1,12700:11524185,11990360:1406848 +g1,12700:11851865,11990360 +) +g1,12700:11851865,11990360 +(1,12700:11851865,11990360:3828666,683125,237900 +g1,12700:12179545,11990360 +g1,12700:12179546,11990360 +$1,12700:12179546,11990360 +$1,12700:12525576,11990360 +k1,12700:15352851,11990360:2827275 +g1,12700:15680531,11990360 +) +g1,12700:15680531,11990360 +(1,12700:15680531,11990360:7002829,683125,237900 +g1,12700:16008211,11990360 +g1,12700:16008212,11990360 +$1,12700:16008212,11990360 +(1,12700:16008212,11990360:1339294,683125,75782 +(1,12700:16189747,11625954:199229,242811,0 +$1,12700:16189747,11625954 +$1,12700:16388976,11625954 +) +(1,12700:16094065,11990360:1253441,683125,75782 +$1,12700:16094065,11990360 +(1,12700:16094065,11990360:1253441,683125,75782 +[1,12700:16094065,11359663:595722,26214,706479 +] +[1,12700:16689787,11990360:657719,683125,7864 +(1,12700:16689787,11990360:657719,530010,7864 +(1,12700:17035817,11800285:311689,339935,0 +) +) +] +) +$1,12700:17347506,11990360 +) +) +$1,12700:17347506,11990360 +k1,12700:22355680,11990360:5008174 +g1,12700:22683360,11990360 +) +g1,12700:22683360,11990360 +(1,12701:22683360,11990360:9126543,683125,237900 +g1,12700:23011040,11990360 +g1,12700:23011041,11990360 +g1,12700:25489612,11990360 +g1,12700:28532448,11990360 +g1,12701:31482223,11990360 +g1,12701:31809903,11990360 +) +g1,12701:31809903,11990360 +) +(1,12702:8376255,12783353:23433648,555093,237900 +g1,12701:8376255,12783353 +(1,12701:8376255,12783353:3475610,555093,237900 +r1,12752:8376255,12783353:0,792993,237900 +g1,12701:8703935,12783353 +g1,12701:8703936,12783353 +(1,12701:8703936,12783353:0,452978,115847 +r1,12752:11524185,12783353:2820249,568825,115847 +k1,12701:8703936,12783353:-2820249 +) +(1,12701:8703936,12783353:2820249,452978,115847 +k1,12701:8703936,12783353:3277 +h1,12701:11520908,12783353:0,411205,112570 +) +g1,12701:11524185,12783353 +g1,12701:11851865,12783353 +) +g1,12701:11851865,12783353 +(1,12701:11851865,12783353:3828666,555093,237900 +g1,12701:12179545,12783353 +g1,12701:12179546,12783353 +g1,12701:12942385,12783353 +g1,12701:13824499,12783353 +$1,12701:13824499,12783353 +[1,12701:13824499,12783353:502661,493486,7864 +(1,12701:14295701,12775489:0,485622,0 +) +(1,12701:13824499,12783353:502661,355205,7864 +) +] +$1,12701:14327160,12783353 +k1,12701:15352851,12783353:1025691 +g1,12701:15680531,12783353 +) +g1,12701:15680531,12783353 +(1,12701:15680531,12783353:7002829,555093,237900 +g1,12701:16008211,12783353 +k1,12701:22355680,12783353:6347469 +g1,12701:22683360,12783353 +) +g1,12701:22683360,12783353 +(1,12702:22683360,12783353:9126543,555093,237900 +g1,12701:23011040,12783353 +g1,12701:23011041,12783353 +k1,12702:31482223,12783353:6111231 +g1,12702:31809903,12783353 +) +g1,12702:31809903,12783353 +) +(1,12703:8376255,13576346:23433648,555093,237900 +g1,12702:8376255,13576346 +(1,12702:8376255,13576346:3475610,555093,237900 +r1,12752:8376255,13576346:0,792993,237900 +g1,12702:8703935,13576346 +g1,12702:8703936,13576346 +(1,12702:8703936,13576346:0,452978,115847 +r1,12752:10469049,13576346:1765113,568825,115847 +k1,12702:8703936,13576346:-1765113 +) +(1,12702:8703936,13576346:1765113,452978,115847 +k1,12702:8703936,13576346:3277 +h1,12702:10465772,13576346:0,411205,112570 +) +k1,12702:11524185,13576346:1055136 +g1,12702:11851865,13576346 +) +g1,12702:11851865,13576346 +(1,12702:11851865,13576346:3828666,555093,237900 +g1,12702:12179545,13576346 +g1,12702:12179546,13576346 +k1,12702:15352851,13576346:1618791 +g1,12702:15680531,13576346 +) +g1,12702:15680531,13576346 +(1,12702:15680531,13576346:7002829,555093,237900 +g1,12702:16008211,13576346 +g1,12702:16008212,13576346 +g1,12702:18567392,13576346 +$1,12702:18567392,13576346 +(1,12702:19285012,13674660:233243,346358,5505 +) +g1,12702:19663903,13576346 +g1,12702:20377748,13576346 +[1,12702:20377748,13576346:502661,513147,7864 +(1,12702:20848295,13568482:0,505283,0 +) +(1,12702:20377748,13576346:502661,355205,7864 +) +] +$1,12702:21124858,13576346 +k1,12702:22355680,13576346:1230822 +g1,12702:22683360,13576346 +) +g1,12702:22683360,13576346 +(1,12703:22683360,13576346:9126543,555093,237900 +g1,12702:23011040,13576346 +g1,12702:23011041,13576346 +g1,12702:25570221,13576346 +g1,12702:28474776,13576346 +k1,12703:31482223,13576346:57672 +g1,12703:31809903,13576346 +) +g1,12703:31809903,13576346 +) +(1,12704:8376255,14369339:23433648,555093,237900 +g1,12703:8376255,14369339 +(1,12703:8376255,14369339:3475610,555093,237900 +r1,12752:8376255,14369339:0,792993,237900 +g1,12703:8703935,14369339 +g1,12703:8703936,14369339 +(1,12703:8703936,14369339:0,452978,115847 +r1,12752:10820761,14369339:2116825,568825,115847 +k1,12703:8703936,14369339:-2116825 +) +(1,12703:8703936,14369339:2116825,452978,115847 +k1,12703:8703936,14369339:3277 +h1,12703:10817484,14369339:0,411205,112570 +) +k1,12703:11524185,14369339:703424 +g1,12703:11851865,14369339 +) +g1,12703:11851865,14369339 +(1,12703:11851865,14369339:3828666,555093,237900 +g1,12703:12179545,14369339 +g1,12703:12179546,14369339 +k1,12703:15352851,14369339:1597164 +g1,12703:15680531,14369339 +) +g1,12703:15680531,14369339 +(1,12703:15680531,14369339:7002829,555093,237900 +g1,12703:16008211,14369339 +k1,12703:22355680,14369339:6347469 +g1,12703:22683360,14369339 +) +g1,12703:22683360,14369339 +(1,12704:22683360,14369339:9126543,555093,237900 +g1,12703:23011040,14369339 +g1,12703:23011041,14369339 +k1,12704:31482223,14369339:6688603 +g1,12704:31809903,14369339 +) +g1,12704:31809903,14369339 +) +(1,12705:8376255,15162332:23433648,555093,237900 +g1,12704:8376255,15162332 +(1,12704:8376255,15162332:3475610,555093,237900 +r1,12752:8376255,15162332:0,792993,237900 +g1,12704:8703935,15162332 +g1,12704:8703936,15162332 +(1,12704:8703936,15162332:0,452978,115847 +r1,12752:10469049,15162332:1765113,568825,115847 +k1,12704:8703936,15162332:-1765113 +) +(1,12704:8703936,15162332:1765113,452978,115847 +k1,12704:8703936,15162332:3277 +h1,12704:10465772,15162332:0,411205,112570 +) +k1,12704:11524185,15162332:1055136 +g1,12704:11851865,15162332 +) +g1,12704:11851865,15162332 +(1,12704:11851865,15162332:3828666,555093,237900 +g1,12704:12179545,15162332 +g1,12704:12179546,15162332 +$1,12704:12179546,15162332 +(1,12704:12682207,15260646:971374,248644,5505 +) +$1,12704:13653581,15162332 +k1,12704:15352851,15162332:1699270 +g1,12704:15680531,15162332 +) +g1,12704:15680531,15162332 +(1,12704:15680531,15162332:7002829,555093,237900 +g1,12704:16008211,15162332 +k1,12704:22355680,15162332:6347469 +g1,12704:22683360,15162332 +) +g1,12704:22683360,15162332 +(1,12705:22683360,15162332:9126543,555093,237900 +g1,12704:23011040,15162332 +g1,12704:23011041,15162332 +k1,12705:31482223,15162332:5274336 +g1,12705:31809903,15162332 +) +g1,12705:31809903,15162332 +) +(1,12706:8376255,15955325:23433648,555093,237900 +g1,12705:8376255,15955325 +(1,12705:8376255,15955325:3475610,555093,237900 +r1,12752:8376255,15955325:0,792993,237900 +g1,12705:8703935,15955325 +g1,12705:8703936,15955325 +(1,12705:8703936,15955325:0,452978,115847 +r1,12752:10469049,15955325:1765113,568825,115847 +k1,12705:8703936,15955325:-1765113 +) +(1,12705:8703936,15955325:1765113,452978,115847 +k1,12705:8703936,15955325:3277 +h1,12705:10465772,15955325:0,411205,112570 +) +k1,12705:11524185,15955325:1055136 +g1,12705:11851865,15955325 +) +g1,12705:11851865,15955325 +(1,12705:11851865,15955325:3828666,555093,237900 +g1,12705:12179545,15955325 +g1,12705:12179546,15955325 +$1,12705:12179546,15955325 +(1,12705:12682207,16053639:897974,331678,0 +) +$1,12705:13580181,15955325 +k1,12705:15352851,15955325:1772670 +g1,12705:15680531,15955325 +) +g1,12705:15680531,15955325 +(1,12705:15680531,15955325:7002829,555093,237900 +g1,12705:16008211,15955325 +k1,12705:22355680,15955325:6347469 +g1,12705:22683360,15955325 +) +g1,12705:22683360,15955325 +(1,12706:22683360,15955325:9126543,555093,237900 +g1,12705:23011040,15955325 +g1,12705:23011041,15955325 +k1,12706:31482223,15955325:5379193 +g1,12706:31809903,15955325 +) +g1,12706:31809903,15955325 +) +(1,12707:8376255,16748318:23433648,555093,237900 +g1,12706:8376255,16748318 +(1,12706:8376255,16748318:3475610,555093,237900 +r1,12752:8376255,16748318:0,792993,237900 +g1,12706:8703935,16748318 +g1,12706:8703936,16748318 +(1,12706:8703936,16748318:0,452978,122846 +r1,12752:11172473,16748318:2468537,575824,122846 +k1,12706:8703936,16748318:-2468537 +) +(1,12706:8703936,16748318:2468537,452978,122846 +k1,12706:8703936,16748318:3277 +h1,12706:11169196,16748318:0,411205,112570 +) +k1,12706:11524185,16748318:351712 +g1,12706:11851865,16748318 +) +g1,12706:11851865,16748318 +(1,12706:11851865,16748318:3828666,555093,237900 +g1,12706:12179545,16748318 +g1,12706:12179546,16748318 +$1,12706:12179546,16748318 +(1,12706:12682207,16846632:897974,331678,0 +) +g1,12706:13878816,16748318 +(1,12706:14381477,16846632:971374,248644,5505 +) +$1,12706:15352851,16748318 +g1,12706:15352851,16748318 +g1,12706:15680531,16748318 +) +g1,12706:15680531,16748318 +(1,12706:15680531,16748318:7002829,555093,237900 +g1,12706:16008211,16748318 +k1,12706:22355680,16748318:6347469 +g1,12706:22683360,16748318 +) +g1,12706:22683360,16748318 +(1,12707:22683360,16748318:9126543,555093,237900 +g1,12706:23011040,16748318 +g1,12706:23011041,16748318 +k1,12707:31482223,16748318:6690569 +g1,12707:31809903,16748318 +) +g1,12707:31809903,16748318 +) +] +$1,12708:31809903,12932344 +) +g1,12708:31809903,12932344 +) +(1,12708:8177026,17348238:23632877,65536,0 +g1,12708:8177026,17348238 +(1,12708:8177026,17348238:23632877,65536,0 +r1,12752:31809903,17348238:23632877,65536,0 +) +g1,12708:31809903,17348238 +) +] +g1,12708:31809903,17348238 +k1,12708:32583029,17348238:773126 +) +] +] +(1,12687:6630773,19314318:25952256,32768,229376 +(1,12687:6630773,19314318:0,32768,229376 +(1,12687:6630773,19314318:5505024,32768,229376 +r1,12752:12135797,19314318:5505024,262144,229376 +) +k1,12687:6630773,19314318:-5505024 +) +(1,12687:6630773,19314318:25952256,32768,0 +r1,12752:32583029,19314318:25952256,32768,0 +) +) +(1,12687:6630773,20946170:25952256,606339,14155 +(1,12687:6630773,20946170:1974731,582746,0 +g1,12687:6630773,20946170 +g1,12687:8605504,20946170 +) +g1,12687:12684727,20946170 +k1,12687:32583029,20946170:15515516 +g1,12687:32583029,20946170 +) +(1,12690:6630773,22204466:25952256,513147,134348 +k1,12689:8580143,22204466:212666 +k1,12689:9811894,22204466:212666 +k1,12689:11616431,22204466:212667 +k1,12689:13567112,22204466:212666 +k1,12689:14439070,22204466:212666 +k1,12689:15670821,22204466:212666 +k1,12689:16298317,22204466:212653 +k1,12689:19353279,22204466:212666 +k1,12689:20181983,22204466:212666 +k1,12689:21784013,22204466:212667 +k1,12689:24551272,22204466:212666 +k1,12689:25955383,22204466:212666 +k1,12689:29195157,22204466:212666 +k1,12689:29822653,22204466:212653 +k1,12689:32583029,22204466:0 +) +(1,12690:6630773,23069546:25952256,513147,134348 +k1,12689:9896491,23069546:239921 +k1,12689:11603108,23069546:239921 +k1,12689:12790681,23069546:239922 +k1,12689:15155279,23069546:239921 +k1,12689:16586645,23069546:239921 +k1,12689:19512887,23069546:239921 +k1,12689:23728222,23069546:239921 +k1,12689:25727129,23069546:239921 +k1,12689:27534672,23069546:239922 +k1,12689:29842909,23069546:239921 +k1,12689:31274275,23069546:239921 +k1,12690:32583029,23069546:0 +) +(1,12690:6630773,23934626:25952256,513147,134348 +k1,12689:8660204,23934626:247507 +k1,12689:9559140,23934626:247508 +k1,12689:11741270,23934626:247507 +k1,12689:13342752,23934626:247508 +k1,12689:16276580,23934626:247507 +k1,12689:19015767,23934626:247508 +k1,12689:21006532,23934626:247507 +h1,12689:21977120,23934626:0,0,0 +k1,12689:22224627,23934626:247507 +k1,12689:23795962,23934626:247508 +k1,12689:25735609,23934626:247507 +k1,12689:29288098,23934626:247508 +k1,12689:31048831,23934626:247507 +k1,12690:32583029,23934626:0 +) +(1,12690:6630773,24799706:25952256,505283,134348 +k1,12689:8676283,24799706:274072 +k1,12689:9848197,24799706:274071 +k1,12689:11818996,24799706:274072 +k1,12689:14877692,24799706:274071 +k1,12689:17199764,24799706:274072 +k1,12689:20093964,24799706:274071 +k1,12689:22676214,24799706:274072 +k1,12689:25160159,24799706:274071 +k1,12689:28167738,24799706:274072 +k1,12689:29127971,24799706:274071 +k1,12689:32583029,24799706:0 +) +(1,12690:6630773,25664786:25952256,513147,126483 +k1,12689:7452352,25664786:193744 +k1,12689:10485771,25664786:193744 +k1,12689:13375011,25664786:193744 +(1,12689:13375011,25664786:0,452978,115847 +r1,12752:16898683,25664786:3523672,568825,115847 +k1,12689:13375011,25664786:-3523672 +) +(1,12689:13375011,25664786:3523672,452978,115847 +k1,12689:13375011,25664786:3277 +h1,12689:16895406,25664786:0,411205,112570 +) +k1,12689:17092427,25664786:193744 +k1,12689:18390453,25664786:193744 +k1,12689:19331964,25664786:193745 +k1,12689:21038934,25664786:193744 +k1,12689:21884106,25664786:193744 +k1,12689:26930136,25664786:193744 +k1,12689:29911782,25664786:193744 +k1,12689:32583029,25664786:0 +) +(1,12690:6630773,26529866:25952256,513147,126483 +k1,12689:9654274,26529866:227080 +k1,12689:12812125,26529866:227081 +k1,12689:13986856,26529866:227080 +k1,12689:14569797,26529866:227081 +k1,12689:16774754,26529866:227080 +k1,12689:17661126,26529866:227080 +k1,12689:22133629,26529866:227081 +k1,12689:23552154,26529866:227080 +k1,12689:26233558,26529866:227081 +(1,12689:26233558,26529866:0,452978,115847 +r1,12752:29405518,26529866:3171960,568825,115847 +k1,12689:26233558,26529866:-3171960 +) +(1,12689:26233558,26529866:3171960,452978,115847 +k1,12689:26233558,26529866:3277 +h1,12689:29402241,26529866:0,411205,112570 +) +k1,12689:29632598,26529866:227080 +k1,12689:32583029,26529866:0 +) +(1,12690:6630773,27394946:25952256,513147,134348 +k1,12689:7233844,27394946:247211 +k1,12689:10471463,27394946:247211 +k1,12689:12003180,27394946:247211 +k1,12689:14952440,27394946:247211 +k1,12689:16009021,27394946:247211 +k1,12689:17275317,27394946:247211 +k1,12689:19077697,27394946:247211 +k1,12689:19984200,27394946:247211 +k1,12689:21250496,27394946:247211 +k1,12689:24570035,27394946:247211 +k1,12689:27022533,27394946:247211 +k1,12689:27921172,27394946:247211 +k1,12689:28800150,27394946:247211 +k1,12689:30304342,27394946:247211 +k1,12689:32583029,27394946:0 +) +(1,12690:6630773,28260026:25952256,513147,134348 +h1,12689:8173491,28260026:0,0,0 +g1,12689:8372720,28260026 +g1,12689:9381319,28260026 +g1,12689:11078701,28260026 +h1,12689:12274078,28260026:0,0,0 +g1,12689:12473307,28260026 +g1,12689:13620187,28260026 +g1,12689:15149797,28260026 +g1,12689:16000454,28260026 +g1,12689:18160520,28260026 +g1,12689:19818580,28260026 +g1,12689:21348190,28260026 +k1,12690:32583029,28260026:7869566 +g1,12690:32583029,28260026 +) +(1,12712:6630773,29125106:25952256,513147,134348 +h1,12711:6630773,29125106:983040,0,0 +k1,12711:8634572,29125106:260541 +k1,12711:11334363,29125106:260541 +k1,12711:12060865,29125106:260541 +k1,12711:13340491,29125106:260541 +k1,12711:16673360,29125106:260541 +k1,12711:19635951,29125106:260542 +(1,12711:19635951,29125106:0,414482,115847 +r1,12752:20697640,29125106:1061689,530329,115847 +k1,12711:19635951,29125106:-1061689 +) +(1,12711:19635951,29125106:1061689,414482,115847 +k1,12711:19635951,29125106:3277 +h1,12711:20694363,29125106:0,411205,112570 +) +k1,12711:20958181,29125106:260541 +k1,12711:22915449,29125106:260541 +k1,12711:26201787,29125106:260541 +k1,12711:28472973,29125106:260541 +(1,12711:28472973,29125106:0,414482,115847 +r1,12752:29182951,29125106:709978,530329,115847 +k1,12711:28472973,29125106:-709978 +) +(1,12711:28472973,29125106:709978,414482,115847 +k1,12711:28472973,29125106:3277 +h1,12711:29179674,29125106:0,411205,112570 +) +k1,12711:29617162,29125106:260541 +k1,12711:31074390,29125106:260541 +k1,12711:32583029,29125106:0 +) +(1,12712:6630773,29990186:25952256,513147,102891 +k1,12711:9052205,29990186:222044 +k1,12711:10477490,29990186:222044 +k1,12711:11231031,29990186:222044 +k1,12711:12737582,29990186:222045 +k1,12711:13425587,29990186:222044 +k1,12711:14804341,29990186:222044 +k1,12711:16706728,29990186:222044 +k1,12711:18759848,29990186:222044 +k1,12711:20054061,29990186:222044 +k1,12711:20807602,29990186:222044 +k1,12711:24170787,29990186:222044 +k1,12711:25411917,29990186:222045 +k1,12711:26941404,29990186:222044 +k1,12711:29006320,29990186:222044 +k1,12711:29887656,29990186:222044 +k1,12711:31128785,29990186:222044 +k1,12712:32583029,29990186:0 +) +(1,12712:6630773,30855266:25952256,513147,134348 +k1,12711:9570786,30855266:224201 +k1,12711:10326484,30855266:224201 +k1,12711:13518155,30855266:224201 +k1,12711:14974433,30855266:224201 +k1,12711:16696787,30855266:224201 +h1,12711:17493705,30855266:0,0,0 +k1,12711:17717906,30855266:224201 +k1,12711:18889758,30855266:224201 +k1,12711:21231428,30855266:224202 +k1,12711:22264999,30855266:224201 +k1,12711:23508285,30855266:224201 +k1,12711:24967840,30855266:224201 +k1,12711:25859197,30855266:224201 +(1,12711:25859197,30855266:0,414482,115847 +r1,12752:26569175,30855266:709978,530329,115847 +k1,12711:25859197,30855266:-709978 +) +(1,12711:25859197,30855266:709978,414482,115847 +k1,12711:25859197,30855266:3277 +h1,12711:26565898,30855266:0,411205,112570 +) +k1,12711:26793376,30855266:224201 +k1,12711:27633615,30855266:224201 +k1,12711:28653423,30855266:224201 +k1,12711:31812326,30855266:224201 +k1,12711:32583029,30855266:0 +) +(1,12712:6630773,31720346:25952256,513147,126483 +k1,12711:10073359,31720346:215593 +k1,12711:13569683,31720346:215592 +k1,12711:15653052,31720346:215593 +(1,12711:15653052,31720346:0,414482,115847 +r1,12752:17418165,31720346:1765113,530329,115847 +k1,12711:15653052,31720346:-1765113 +) +(1,12711:15653052,31720346:1765113,414482,115847 +k1,12711:15653052,31720346:3277 +h1,12711:17414888,31720346:0,411205,112570 +) +k1,12711:17633758,31720346:215593 +k1,12711:19861305,31720346:215592 +k1,12711:20822042,31720346:215593 +k1,12711:21689062,31720346:215592 +k1,12711:24549688,31720346:215593 +k1,12711:25968522,31720346:215593 +k1,12711:28449694,31720346:215592 +k1,12711:31839851,31720346:215593 +k1,12711:32583029,31720346:0 +) +(1,12712:6630773,32585426:25952256,513147,134348 +k1,12711:10201510,32585426:191045 +k1,12711:11524363,32585426:191046 +(1,12711:11524363,32585426:0,414482,115847 +r1,12752:12234341,32585426:709978,530329,115847 +k1,12711:11524363,32585426:-709978 +) +(1,12711:11524363,32585426:709978,414482,115847 +k1,12711:11524363,32585426:3277 +h1,12711:12231064,32585426:0,411205,112570 +) +k1,12711:12425386,32585426:191045 +k1,12711:13232469,32585426:191045 +k1,12711:14442600,32585426:191046 +k1,12711:16342169,32585426:191045 +k1,12711:17184642,32585426:191045 +k1,12711:18123453,32585426:191045 +k1,12711:21089949,32585426:191046 +k1,12711:22170973,32585426:191045 +k1,12711:25687970,32585426:191045 +k1,12711:27921773,32585426:191046 +k1,12711:31563944,32585426:191045 +k1,12711:32583029,32585426:0 +) +(1,12712:6630773,33450506:25952256,355205,126483 +k1,12712:32583029,33450506:22874686 +g1,12712:32583029,33450506 +) +v1,12714:6630773,34135361:0,393216,0 +(1,12728:6630773,37575650:25952256,3833505,196608 +g1,12728:6630773,37575650 +g1,12728:6630773,37575650 +g1,12728:6434165,37575650 +(1,12728:6434165,37575650:0,3833505,196608 +r1,12752:32779637,37575650:26345472,4030113,196608 +k1,12728:6434165,37575650:-26345472 +) +(1,12728:6434165,37575650:26345472,3833505,196608 +[1,12728:6630773,37575650:25952256,3636897,0 +(1,12716:6630773,34363192:25952256,424439,86428 +(1,12715:6630773,34363192:0,0,0 +g1,12715:6630773,34363192 +g1,12715:6630773,34363192 +g1,12715:6303093,34363192 +(1,12715:6303093,34363192:0,0,0 +) +g1,12715:6630773,34363192 +) +g1,12716:7294681,34363192 +g1,12716:8290543,34363192 +g1,12716:10946175,34363192 +h1,12716:11942037,34363192:0,0,0 +k1,12716:32583029,34363192:20640992 +g1,12716:32583029,34363192 +) +(1,12717:6630773,35048047:25952256,424439,79822 +h1,12717:6630773,35048047:0,0,0 +k1,12717:6630773,35048047:0 +h1,12717:8954451,35048047:0,0,0 +k1,12717:32583029,35048047:23628578 +g1,12717:32583029,35048047 +) +(1,12721:6630773,35863974:25952256,424439,79822 +(1,12719:6630773,35863974:0,0,0 +g1,12719:6630773,35863974 +g1,12719:6630773,35863974 +g1,12719:6303093,35863974 +(1,12719:6303093,35863974:0,0,0 +) +g1,12719:6630773,35863974 +) +g1,12721:7626635,35863974 +g1,12721:8954451,35863974 +h1,12721:9618359,35863974:0,0,0 +k1,12721:32583029,35863974:22964670 +g1,12721:32583029,35863974 +) +(1,12723:6630773,36679901:25952256,424439,86428 +(1,12722:6630773,36679901:0,0,0 +g1,12722:6630773,36679901 +g1,12722:6630773,36679901 +g1,12722:6303093,36679901 +(1,12722:6303093,36679901:0,0,0 +) +g1,12722:6630773,36679901 +) +k1,12723:6630773,36679901:0 +g1,12723:9286405,36679901 +g1,12723:11278129,36679901 +g1,12723:11942037,36679901 +h1,12723:13601807,36679901:0,0,0 +k1,12723:32583029,36679901:18981222 +g1,12723:32583029,36679901 +) +(1,12727:6630773,37495828:25952256,424439,79822 +(1,12725:6630773,37495828:0,0,0 +g1,12725:6630773,37495828 +g1,12725:6630773,37495828 +g1,12725:6303093,37495828 +(1,12725:6303093,37495828:0,0,0 +) +g1,12725:6630773,37495828 +) +g1,12727:7626635,37495828 +g1,12727:8954451,37495828 +h1,12727:10282267,37495828:0,0,0 +k1,12727:32583029,37495828:22300762 +g1,12727:32583029,37495828 +) +] +) +g1,12728:32583029,37575650 +g1,12728:6630773,37575650 +g1,12728:6630773,37575650 +g1,12728:32583029,37575650 +g1,12728:32583029,37575650 +) +h1,12728:6630773,37772258:0,0,0 +(1,12732:6630773,38637338:25952256,513147,126483 +h1,12731:6630773,38637338:983040,0,0 +k1,12731:10665215,38637338:261534 +(1,12731:10665215,38637338:0,452978,115847 +r1,12752:12782040,38637338:2116825,568825,115847 +k1,12731:10665215,38637338:-2116825 +) +(1,12731:10665215,38637338:2116825,452978,115847 +k1,12731:10665215,38637338:3277 +h1,12731:12778763,38637338:0,411205,112570 +) +k1,12731:13043575,38637338:261535 +k1,12731:14409391,38637338:261534 +k1,12731:15418692,38637338:261535 +k1,12731:17193452,38637338:261534 +k1,12731:18106415,38637338:261535 +k1,12731:21155851,38637338:261534 +k1,12731:22436470,38637338:261534 +k1,12731:24436020,38637338:261535 +k1,12731:26265175,38637338:261534 +k1,12731:27292826,38637338:261535 +k1,12731:29738675,38637338:261534 +k1,12731:30686372,38637338:261535 +k1,12731:31563944,38637338:261534 +k1,12731:32583029,38637338:0 +) +(1,12732:6630773,39502418:25952256,513147,134348 +k1,12731:9511616,39502418:219426 +k1,12731:11760038,39502418:219427 +k1,12731:12665626,39502418:219426 +k1,12731:14163659,39502418:219426 +k1,12731:15069248,39502418:219427 +k1,12731:18043152,39502418:219426 +k1,12731:20504566,39502418:219427 +k1,12731:21793540,39502418:219426 +k1,12731:24081282,39502418:219426 +k1,12731:27509352,39502418:219427 +k1,12731:29242004,39502418:219426 +k1,12731:32583029,39502418:0 +) +(1,12732:6630773,40367498:25952256,513147,134348 +k1,12731:9456347,40367498:253286 +k1,12731:11893948,40367498:253286 +k1,12731:13343921,40367498:253286 +k1,12731:16669535,40367498:253286 +k1,12731:19128108,40367498:253286 +k1,12731:20032821,40367498:253285 +k1,12731:23566839,40367498:253286 +(1,12731:23566839,40367498:0,452978,115847 +r1,12752:24980240,40367498:1413401,568825,115847 +k1,12731:23566839,40367498:-1413401 +) +(1,12731:23566839,40367498:1413401,452978,115847 +k1,12731:23566839,40367498:3277 +h1,12731:24976963,40367498:0,411205,112570 +) +k1,12731:25233526,40367498:253286 +k1,12731:27888051,40367498:253286 +k1,12731:29160422,40367498:253286 +k1,12731:31923737,40367498:253286 +k1,12731:32583029,40367498:0 +) +(1,12732:6630773,41232578:25952256,513147,134348 +k1,12731:7857153,41232578:207295 +k1,12731:12136200,41232578:207295 +k1,12731:12994924,41232578:207296 +k1,12731:15552995,41232578:207295 +k1,12731:16373052,41232578:207295 +k1,12731:18050975,41232578:207295 +k1,12731:20770266,41232578:207296 +k1,12731:21636853,41232578:207295 +k1,12731:22863233,41232578:207295 +k1,12731:25048405,41232578:207295 +k1,12731:25914993,41232578:207296 +k1,12731:28132933,41232578:207295 +k1,12731:29853454,41232578:207295 +k1,12731:32583029,41232578:0 +) +(1,12732:6630773,42097658:25952256,513147,134348 +g1,12731:8469057,42097658 +g1,12731:10235907,42097658 +g1,12731:13086067,42097658 +g1,12731:13936724,42097658 +k1,12732:32583029,42097658:16435776 +g1,12732:32583029,42097658 +) +v1,12734:6630773,42782513:0,393216,0 +(1,12748:6630773,45510161:25952256,3120864,196608 +g1,12748:6630773,45510161 +g1,12748:6630773,45510161 +g1,12748:6434165,45510161 +(1,12748:6434165,45510161:0,3120864,196608 +r1,12752:32779637,45510161:26345472,3317472,196608 +k1,12748:6434165,45510161:-26345472 +) +(1,12748:6434165,45510161:26345472,3120864,196608 +[1,12748:6630773,45510161:25952256,2924256,0 +(1,12736:6630773,43010344:25952256,424439,86428 +(1,12735:6630773,43010344:0,0,0 +g1,12735:6630773,43010344 +g1,12735:6630773,43010344 +g1,12735:6303093,43010344 +(1,12735:6303093,43010344:0,0,0 +) +g1,12735:6630773,43010344 +) +g1,12736:7294681,43010344 +g1,12736:8290543,43010344 +g1,12736:10946175,43010344 +h1,12736:12273991,43010344:0,0,0 +k1,12736:32583029,43010344:20309038 +g1,12736:32583029,43010344 +) +(1,12737:6630773,43695199:25952256,424439,79822 +h1,12737:6630773,43695199:0,0,0 +k1,12737:6630773,43695199:0 +h1,12737:8954451,43695199:0,0,0 +k1,12737:32583029,43695199:23628578 +g1,12737:32583029,43695199 +) +(1,12741:6630773,44273579:25952256,424439,79822 +(1,12739:6630773,44273579:0,0,0 +g1,12739:6630773,44273579 +g1,12739:6630773,44273579 +g1,12739:6303093,44273579 +(1,12739:6303093,44273579:0,0,0 +) +g1,12739:6630773,44273579 +) +g1,12741:7626635,44273579 +g1,12741:8954451,44273579 +h1,12741:11278129,44273579:0,0,0 +k1,12741:32583029,44273579:21304900 +g1,12741:32583029,44273579 +) +(1,12743:6630773,44851959:25952256,424439,86428 +(1,12742:6630773,44851959:0,0,0 +g1,12742:6630773,44851959 +g1,12742:6630773,44851959 +g1,12742:6303093,44851959 +(1,12742:6303093,44851959:0,0,0 +) +g1,12742:6630773,44851959 +) +k1,12743:6630773,44851959:0 +g1,12743:9286405,44851959 +g1,12743:10946175,44851959 +g1,12743:11610083,44851959 +h1,12743:13269853,44851959:0,0,0 +k1,12743:32583029,44851959:19313176 +g1,12743:32583029,44851959 +) +(1,12747:6630773,45430339:25952256,424439,79822 +(1,12745:6630773,45430339:0,0,0 +g1,12745:6630773,45430339 +g1,12745:6630773,45430339 +g1,12745:6303093,45430339 +(1,12745:6303093,45430339:0,0,0 +) +g1,12745:6630773,45430339 +) +g1,12747:7626635,45430339 +g1,12747:8954451,45430339 +h1,12747:9618359,45430339:0,0,0 +k1,12747:32583029,45430339:22964670 +g1,12747:32583029,45430339 +) +] +) +g1,12748:32583029,45510161 +g1,12748:6630773,45510161 +g1,12748:6630773,45510161 +g1,12748:32583029,45510161 +g1,12748:32583029,45510161 +) +h1,12748:6630773,45706769:0,0,0 ] -(1,12754:32583029,45706769:0,0,0 -g1,12754:32583029,45706769 +(1,12752:32583029,45706769:0,0,0 +g1,12752:32583029,45706769 ) ) ] -(1,12754:6630773,47279633:25952256,0,0 -h1,12754:6630773,47279633:25952256,0,0 +(1,12752:6630773,47279633:25952256,0,0 +h1,12752:6630773,47279633:25952256,0,0 ) ] -(1,12754:4262630,4025873:0,0,0 -[1,12754:-473656,4025873:0,0,0 -(1,12754:-473656,-710413:0,0,0 -(1,12754:-473656,-710413:0,0,0 -g1,12754:-473656,-710413 +(1,12752:4262630,4025873:0,0,0 +[1,12752:-473656,4025873:0,0,0 +(1,12752:-473656,-710413:0,0,0 +(1,12752:-473656,-710413:0,0,0 +g1,12752:-473656,-710413 ) -g1,12754:-473656,-710413 +g1,12752:-473656,-710413 ) ] ) ] -!35124 -}203 -Input:2090:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2091:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2092:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!35095 +}204 Input:2093:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2094:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2095:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -226397,3282 +226593,3281 @@ Input:2135:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2136:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2137:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2138:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2139:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !4520 -{204 -[1,12791:4262630,47279633:28320399,43253760,0 -(1,12791:4262630,4025873:0,0,0 -[1,12791:-473656,4025873:0,0,0 -(1,12791:-473656,-710413:0,0,0 -(1,12791:-473656,-644877:0,0,0 -k1,12791:-473656,-644877:-65536 +{205 +[1,12789:4262630,47279633:28320399,43253760,0 +(1,12789:4262630,4025873:0,0,0 +[1,12789:-473656,4025873:0,0,0 +(1,12789:-473656,-710413:0,0,0 +(1,12789:-473656,-644877:0,0,0 +k1,12789:-473656,-644877:-65536 ) -(1,12791:-473656,4736287:0,0,0 -k1,12791:-473656,4736287:5209943 +(1,12789:-473656,4736287:0,0,0 +k1,12789:-473656,4736287:5209943 ) -g1,12791:-473656,-710413 +g1,12789:-473656,-710413 ) ] ) -[1,12791:6630773,47279633:25952256,43253760,0 -[1,12791:6630773,4812305:25952256,786432,0 -(1,12791:6630773,4812305:25952256,505283,126483 -(1,12791:6630773,4812305:25952256,505283,126483 -g1,12791:3078558,4812305 -[1,12791:3078558,4812305:0,0,0 -(1,12791:3078558,2439708:0,1703936,0 -k1,12791:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12791:2537886,2439708:1179648,16384,0 +[1,12789:6630773,47279633:25952256,43253760,0 +[1,12789:6630773,4812305:25952256,786432,0 +(1,12789:6630773,4812305:25952256,505283,126483 +(1,12789:6630773,4812305:25952256,505283,126483 +g1,12789:3078558,4812305 +[1,12789:3078558,4812305:0,0,0 +(1,12789:3078558,2439708:0,1703936,0 +k1,12789:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12789:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12791:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12789:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12791:3078558,4812305:0,0,0 -(1,12791:3078558,2439708:0,1703936,0 -g1,12791:29030814,2439708 -g1,12791:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12791:36151628,1915420:16384,1179648,0 +[1,12789:3078558,4812305:0,0,0 +(1,12789:3078558,2439708:0,1703936,0 +g1,12789:29030814,2439708 +g1,12789:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12789:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12791:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12789:37855564,2439708:1179648,16384,0 ) ) -k1,12791:3078556,2439708:-34777008 +k1,12789:3078556,2439708:-34777008 ) ] -[1,12791:3078558,4812305:0,0,0 -(1,12791:3078558,49800853:0,16384,2228224 -k1,12791:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12791:2537886,49800853:1179648,16384,0 +[1,12789:3078558,4812305:0,0,0 +(1,12789:3078558,49800853:0,16384,2228224 +k1,12789:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12789:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12791:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12789:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,12791:3078558,4812305:0,0,0 -(1,12791:3078558,49800853:0,16384,2228224 -g1,12791:29030814,49800853 -g1,12791:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12791:36151628,51504789:16384,1179648,0 +[1,12789:3078558,4812305:0,0,0 +(1,12789:3078558,49800853:0,16384,2228224 +g1,12789:29030814,49800853 +g1,12789:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12789:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12791:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12789:37855564,49800853:1179648,16384,0 ) ) -k1,12791:3078556,49800853:-34777008 -) -] -g1,12791:6630773,4812305 -g1,12791:6630773,4812305 -g1,12791:9737834,4812305 -g1,12791:13337726,4812305 -g1,12791:17543826,4812305 -k1,12791:31387652,4812305:13843826 -) -) -] -[1,12791:6630773,45706769:25952256,40108032,0 -(1,12791:6630773,45706769:25952256,40108032,0 -(1,12791:6630773,45706769:0,0,0 -g1,12791:6630773,45706769 -) -[1,12791:6630773,45706769:25952256,40108032,0 -[1,12787:6630773,18931865:25952256,13333128,0 -[1,12787:6630773,18931865:25952256,13333128,0 -(1,12770:6630773,6759380:25952256,505283,7863 -h1,12770:6607180,6759380:0,0,0 -g1,12770:8644694,6759380 -k1,12770:32583029,6759380:22948086 -g1,12770:32583029,6759380 -) -(1,12770:6630773,7624460:25952256,513147,126483 -h1,12770:6630773,7624460:0,0,0 -k1,12770:9736145,7624460:236861 -k1,12770:13458866,7624460:236861 -k1,12770:17807456,7624460:236861 -k1,12770:18660355,7624460:236861 -k1,12770:19485729,7624460:236861 -k1,12770:21761415,7624460:236861 -k1,12770:22991802,7624460:236861 -k1,12770:23887956,7624460:236862 -k1,12770:25558745,7624460:236861 -k1,12770:26210411,7624460:236823 -k1,12770:29473069,7624460:236861 -k1,12770:31931601,7624460:236861 -k1,12770:32583029,7624460:0 -) -(1,12770:6630773,8489540:25952256,513147,134348 -k1,12770:10322237,8489540:205604 -k1,12770:14813240,8489540:205604 -k1,12770:16215532,8489540:205605 -k1,12770:17511000,8489540:205604 -k1,12770:18710130,8489540:205604 -k1,12770:20020016,8489540:205604 -k1,12770:20973386,8489540:205604 -k1,12770:23970824,8489540:205604 -k1,12770:24937957,8489540:205605 -k1,12770:28198849,8489540:205604 -k1,12770:29423538,8489540:205604 -k1,12770:32583029,8489540:0 -) -(1,12770:6630773,9354620:25952256,452978,115847 -(1,12770:6630773,9354620:0,452978,115847 -r1,12791:13319851,9354620:6689078,568825,115847 -k1,12770:6630773,9354620:-6689078 -) -(1,12770:6630773,9354620:6689078,452978,115847 -k1,12770:6630773,9354620:3277 -h1,12770:13316574,9354620:0,411205,112570 -) -k1,12770:32583029,9354620:19210750 -g1,12770:32583029,9354620 -) -(1,12786:6630773,18931865:25952256,9048521,0 -k1,12786:6661908,18931865:31135 -h1,12772:6661908,18931865:0,0,0 -k1,12772:6693042,18931865:31134 -[1,12786:6693042,18931865:25858852,9048521,0 -(1,12786:6693042,9948880:25858852,65536,0 -g1,12786:6693042,9948880 -(1,12786:6693042,9948880:25858852,65536,0 -r1,12791:32551894,9948880:25858852,65536,0 -) -g1,12786:32551894,9948880 -) -(1,12786:6693042,14579987:25858852,4565571,4155270 -g1,12786:6693042,14579987 -(1,12786:6693042,14579987:25858852,4565571,4155270 -g1,12772:6892271,14579987 -$1,12786:6892271,14579987 -[1,12786:6892271,14579987:25659623,4565571,4155270 -(1,12775:6892271,10805536:25659623,555093,237900 -g1,12774:6892271,10805536 -(1,12774:6892271,10805536:4544923,555093,237900 -r1,12791:6892271,10805536:0,792993,237900 -g1,12774:7219951,10805536 -g1,12774:7219952,10805536 -k1,12774:11109514,10805536:25559 -g1,12774:11437194,10805536 -) -g1,12774:11437194,10805536 -(1,12774:11437194,10805536:2991720,555093,237900 -g1,12774:11764874,10805536 -g1,12774:11764875,10805536 -g1,12774:14101234,10805536 -g1,12774:14428914,10805536 -) -g1,12774:14428914,10805536 -(1,12774:14428914,10805536:4530745,555093,237900 -g1,12774:14756594,10805536 -g1,12774:14756595,10805536 -k1,12774:18631979,10805536:1460382 -g1,12774:18959659,10805536 -) -g1,12774:18959659,10805536 -(1,12774:18959659,10805536:4530745,555093,237900 -g1,12774:19287339,10805536 -g1,12774:19287340,10805536 -$1,12774:19287340,10805536 -$1,12774:19755267,10805536 -k1,12774:23162724,10805536:1514122 -g1,12774:23490404,10805536 -) -g1,12774:23490404,10805536 -(1,12774:23490404,10805536:4530745,555093,237900 -g1,12774:23818084,10805536 -g1,12774:23818085,10805536 -k1,12774:27693469,10805536:839101 -g1,12774:28021149,10805536 -) -g1,12774:28021149,10805536 -(1,12775:28021149,10805536:4530745,555093,237900 -g1,12774:28348829,10805536 -g1,12774:28348830,10805536 -k1,12775:32224214,10805536:1876536 -g1,12775:32551894,10805536 -) -g1,12775:32551894,10805536 -) -(1,12777:6892271,11927878:25659623,555093,237900 -g1,12776:6892271,11927878 -(1,12776:6892271,11927878:4544923,555093,237900 -r1,12791:6892271,11927878:0,792993,237900 -g1,12776:7219951,11927878 -g1,12776:7219952,11927878 -k1,12776:11109514,11927878:1533543 -g1,12776:11437194,11927878 -) -g1,12776:11437194,11927878 -(1,12776:11437194,11927878:2991720,555093,237900 -g1,12776:11764874,11927878 -g1,12776:11764875,11927878 -$1,12776:11764875,11927878 -$1,12776:12350767,11927878 -k1,12776:14101234,11927878:1750467 -g1,12776:14428914,11927878 -) -g1,12776:14428914,11927878 -(1,12776:14428914,11927878:4530745,555093,237900 -g1,12776:14756594,11927878 -g1,12776:14756595,11927878 -(1,12776:14756595,11927878:0,452978,115847 -r1,12791:17225132,11927878:2468537,568825,115847 -k1,12776:14756595,11927878:-2468537 -) -(1,12776:14756595,11927878:2468537,452978,115847 -k1,12776:14756595,11927878:3277 -h1,12776:17221855,11927878:0,411205,112570 -) -k1,12776:18631979,11927878:1406847 -g1,12776:18959659,11927878 -) -g1,12776:18959659,11927878 -(1,12776:18959659,11927878:4530745,555093,237900 -g1,12776:19287339,11927878 -g1,12776:19287340,11927878 -(1,12776:19287340,11927878:0,452978,115847 -r1,12791:21755877,11927878:2468537,568825,115847 -k1,12776:19287340,11927878:-2468537 -) -(1,12776:19287340,11927878:2468537,452978,115847 -k1,12776:19287340,11927878:3277 -h1,12776:21752600,11927878:0,411205,112570 -) -k1,12776:23162724,11927878:1406847 -g1,12776:23490404,11927878 -) -g1,12776:23490404,11927878 -(1,12776:23490404,11927878:4530745,555093,237900 -g1,12776:23818084,11927878 -g1,12776:23818085,11927878 -(1,12776:23818085,11927878:0,452978,115847 -r1,12791:26286622,11927878:2468537,568825,115847 -k1,12776:23818085,11927878:-2468537 -) -(1,12776:23818085,11927878:2468537,452978,115847 -k1,12776:23818085,11927878:3277 -h1,12776:26283345,11927878:0,411205,112570 -) -k1,12776:27693469,11927878:1406847 -g1,12776:28021149,11927878 -) -g1,12776:28021149,11927878 -(1,12777:28021149,11927878:4530745,555093,237900 -g1,12776:28348829,11927878 -g1,12776:28348830,11927878 -(1,12776:28348830,11927878:0,452978,115847 -r1,12791:30817367,11927878:2468537,568825,115847 -k1,12776:28348830,11927878:-2468537 -) -(1,12776:28348830,11927878:2468537,452978,115847 -k1,12776:28348830,11927878:3277 -h1,12776:30814090,11927878:0,411205,112570 -) -k1,12777:32224214,11927878:1406847 -g1,12777:32551894,11927878 -) -g1,12777:32551894,11927878 -) -(1,12778:6892271,12720871:25659623,555093,237900 -g1,12777:6892271,12720871 -(1,12777:6892271,12720871:4544923,555093,237900 -r1,12791:6892271,12720871:0,792993,237900 -g1,12777:7219951,12720871 -g1,12777:7219952,12720871 -k1,12777:11109514,12720871:918815 -g1,12777:11437194,12720871 -) -g1,12777:11437194,12720871 -(1,12777:11437194,12720871:2991720,555093,237900 -g1,12777:11764874,12720871 -g1,12777:11764875,12720871 -$1,12777:11764875,12720871 -$1,12777:12085346,12720871 -k1,12777:14101234,12720871:2015888 -g1,12777:14428914,12720871 -) -g1,12777:14428914,12720871 -(1,12777:14428914,12720871:4530745,555093,237900 -g1,12777:14756594,12720871 -g1,12777:14756595,12720871 -(1,12777:14756595,12720871:0,452978,115847 -r1,12791:16169996,12720871:1413401,568825,115847 -k1,12777:14756595,12720871:-1413401 -) -(1,12777:14756595,12720871:1413401,452978,115847 -k1,12777:14756595,12720871:3277 -h1,12777:16166719,12720871:0,411205,112570 -) -k1,12777:18631979,12720871:2461983 -g1,12777:18959659,12720871 -) -g1,12777:18959659,12720871 -(1,12777:18959659,12720871:4530745,555093,237900 -g1,12777:19287339,12720871 -g1,12777:19287340,12720871 -(1,12777:19287340,12720871:0,452978,115847 -r1,12791:20700741,12720871:1413401,568825,115847 -k1,12777:19287340,12720871:-1413401 -) -(1,12777:19287340,12720871:1413401,452978,115847 -k1,12777:19287340,12720871:3277 -h1,12777:20697464,12720871:0,411205,112570 -) -k1,12777:23162724,12720871:2461983 -g1,12777:23490404,12720871 -) -g1,12777:23490404,12720871 -(1,12777:23490404,12720871:4530745,555093,237900 -g1,12777:23818084,12720871 -g1,12777:23818085,12720871 -(1,12777:23818085,12720871:0,452978,115847 -r1,12791:25231486,12720871:1413401,568825,115847 -k1,12777:23818085,12720871:-1413401 -) -(1,12777:23818085,12720871:1413401,452978,115847 -k1,12777:23818085,12720871:3277 -h1,12777:25228209,12720871:0,411205,112570 -) -k1,12777:27693469,12720871:2461983 -g1,12777:28021149,12720871 -) -g1,12777:28021149,12720871 -(1,12778:28021149,12720871:4530745,555093,237900 -g1,12777:28348829,12720871 -g1,12777:28348830,12720871 -(1,12777:28348830,12720871:0,452978,115847 -r1,12791:29762231,12720871:1413401,568825,115847 -k1,12777:28348830,12720871:-1413401 -) -(1,12777:28348830,12720871:1413401,452978,115847 -k1,12777:28348830,12720871:3277 -h1,12777:29758954,12720871:0,411205,112570 -) -k1,12778:32224214,12720871:2461983 -g1,12778:32551894,12720871 -) -g1,12778:32551894,12720871 -) -(1,12779:6892271,13513864:25659623,555093,237900 -g1,12778:6892271,13513864 -(1,12778:6892271,13513864:4544923,555093,237900 -r1,12791:6892271,13513864:0,792993,237900 -g1,12778:7219951,13513864 -g1,12778:7219952,13513864 -k1,12778:11109514,13513864:3530425 -g1,12778:11437194,13513864 -) -g1,12778:11437194,13513864 -(1,12778:11437194,13513864:2991720,555093,237900 -g1,12778:11764874,13513864 -g1,12778:11764875,13513864 -$1,12778:11764875,13513864 -$1,12778:12209864,13513864 -k1,12778:14101234,13513864:1891370 -g1,12778:14428914,13513864 -) -g1,12778:14428914,13513864 -(1,12778:14428914,13513864:4530745,555093,237900 -g1,12778:14756594,13513864 -g1,12778:14756595,13513864 -(1,12778:14756595,13513864:0,459977,115847 -r1,12791:16169996,13513864:1413401,575824,115847 -k1,12778:14756595,13513864:-1413401 -) -(1,12778:14756595,13513864:1413401,459977,115847 -k1,12778:14756595,13513864:3277 -h1,12778:16166719,13513864:0,411205,112570 -) -k1,12778:18631979,13513864:2461983 -g1,12778:18959659,13513864 -) -g1,12778:18959659,13513864 -(1,12778:18959659,13513864:4530745,555093,237900 -g1,12778:19287339,13513864 -g1,12778:19287340,13513864 -(1,12778:19287340,13513864:0,459977,115847 -r1,12791:20700741,13513864:1413401,575824,115847 -k1,12778:19287340,13513864:-1413401 -) -(1,12778:19287340,13513864:1413401,459977,115847 -k1,12778:19287340,13513864:3277 -h1,12778:20697464,13513864:0,411205,112570 -) -k1,12778:23162724,13513864:2461983 -g1,12778:23490404,13513864 -) -g1,12778:23490404,13513864 -(1,12778:23490404,13513864:4530745,555093,237900 -g1,12778:23818084,13513864 -g1,12778:23818085,13513864 -(1,12778:23818085,13513864:0,459977,115847 -r1,12791:25231486,13513864:1413401,575824,115847 -k1,12778:23818085,13513864:-1413401 -) -(1,12778:23818085,13513864:1413401,459977,115847 -k1,12778:23818085,13513864:3277 -h1,12778:25228209,13513864:0,411205,112570 -) -k1,12778:27693469,13513864:2461983 -g1,12778:28021149,13513864 -) -g1,12778:28021149,13513864 -(1,12779:28021149,13513864:4530745,555093,237900 -g1,12778:28348829,13513864 -g1,12778:28348830,13513864 -(1,12778:28348830,13513864:0,459977,115847 -r1,12791:29762231,13513864:1413401,575824,115847 -k1,12778:28348830,13513864:-1413401 -) -(1,12778:28348830,13513864:1413401,459977,115847 -k1,12778:28348830,13513864:3277 -h1,12778:29758954,13513864:0,411205,112570 -) -k1,12779:32224214,13513864:2461983 -g1,12779:32551894,13513864 -) -g1,12779:32551894,13513864 -) -(1,12780:6892271,14306857:25659623,555093,237900 -g1,12779:6892271,14306857 -(1,12779:6892271,14306857:4544923,555093,237900 -r1,12791:6892271,14306857:0,792993,237900 -g1,12779:7219951,14306857 -g1,12779:7219952,14306857 -k1,12779:11109514,14306857:1096418 -g1,12779:11437194,14306857 -) -g1,12779:11437194,14306857 -(1,12779:11437194,14306857:2991720,555093,237900 -g1,12779:11764874,14306857 -g1,12779:11764875,14306857 -$1,12779:11764875,14306857 -$1,12779:12213141,14306857 -k1,12779:14101234,14306857:1888093 -g1,12779:14428914,14306857 -) -g1,12779:14428914,14306857 -(1,12779:14428914,14306857:4530745,555093,237900 -g1,12779:14756594,14306857 -g1,12779:14756595,14306857 -(1,12779:14756595,14306857:0,452978,115847 -r1,12791:17576844,14306857:2820249,568825,115847 -k1,12779:14756595,14306857:-2820249 -) -(1,12779:14756595,14306857:2820249,452978,115847 -k1,12779:14756595,14306857:3277 -h1,12779:17573567,14306857:0,411205,112570 -) -k1,12779:18631979,14306857:1055135 -g1,12779:18959659,14306857 -) -g1,12779:18959659,14306857 -(1,12779:18959659,14306857:4530745,555093,237900 -g1,12779:19287339,14306857 -g1,12779:19287340,14306857 -(1,12779:19287340,14306857:0,452978,115847 -r1,12791:22107589,14306857:2820249,568825,115847 -k1,12779:19287340,14306857:-2820249 -) -(1,12779:19287340,14306857:2820249,452978,115847 -k1,12779:19287340,14306857:3277 -h1,12779:22104312,14306857:0,411205,112570 -) -k1,12779:23162724,14306857:1055135 -g1,12779:23490404,14306857 -) -g1,12779:23490404,14306857 -(1,12779:23490404,14306857:4530745,555093,237900 -g1,12779:23818084,14306857 -g1,12779:23818085,14306857 -(1,12779:23818085,14306857:0,452978,115847 -r1,12791:26638334,14306857:2820249,568825,115847 -k1,12779:23818085,14306857:-2820249 -) -(1,12779:23818085,14306857:2820249,452978,115847 -k1,12779:23818085,14306857:3277 -h1,12779:26635057,14306857:0,411205,112570 -) -k1,12779:27693469,14306857:1055135 -g1,12779:28021149,14306857 -) -g1,12779:28021149,14306857 -(1,12780:28021149,14306857:4530745,555093,237900 -g1,12779:28348829,14306857 -g1,12779:28348830,14306857 -(1,12779:28348830,14306857:0,452978,115847 -r1,12791:31169079,14306857:2820249,568825,115847 -k1,12779:28348830,14306857:-2820249 -) -(1,12779:28348830,14306857:2820249,452978,115847 -k1,12779:28348830,14306857:3277 -h1,12779:31165802,14306857:0,411205,112570 -) -k1,12780:32224214,14306857:1055135 -g1,12780:32551894,14306857 -) -g1,12780:32551894,14306857 -) -(1,12781:6892271,15099850:25659623,555093,237900 -g1,12780:6892271,15099850 -(1,12780:6892271,15099850:4544923,555093,237900 -r1,12791:6892271,15099850:0,792993,237900 -g1,12780:7219951,15099850 -g1,12780:7219952,15099850 -g1,12780:11109514,15099850 -g1,12780:11437194,15099850 -) -g1,12780:11437194,15099850 -(1,12780:11437194,15099850:2991720,555093,237900 -g1,12780:11764874,15099850 -g1,12780:11764875,15099850 -$1,12780:11764875,15099850 -$1,12780:12423512,15099850 -k1,12780:14101234,15099850:1677722 -g1,12780:14428914,15099850 -) -g1,12780:14428914,15099850 -(1,12780:14428914,15099850:4530745,555093,237900 -g1,12780:14756594,15099850 -g1,12780:14756595,15099850 -(1,12780:14756595,15099850:0,452978,115847 -r1,12791:18631979,15099850:3875384,568825,115847 -k1,12780:14756595,15099850:-3875384 -) -(1,12780:14756595,15099850:3875384,452978,115847 -k1,12780:14756595,15099850:3277 -h1,12780:18628702,15099850:0,411205,112570 -) -g1,12780:18631979,15099850 -g1,12780:18959659,15099850 -) -g1,12780:18959659,15099850 -(1,12780:18959659,15099850:4530745,555093,237900 -g1,12780:19287339,15099850 -g1,12780:19287340,15099850 -(1,12780:19287340,15099850:0,452978,115847 -r1,12791:23162724,15099850:3875384,568825,115847 -k1,12780:19287340,15099850:-3875384 -) -(1,12780:19287340,15099850:3875384,452978,115847 -k1,12780:19287340,15099850:3277 -h1,12780:23159447,15099850:0,411205,112570 -) -g1,12780:23162724,15099850 -g1,12780:23490404,15099850 -) -g1,12780:23490404,15099850 -(1,12780:23490404,15099850:4530745,555093,237900 -g1,12780:23818084,15099850 -g1,12780:23818085,15099850 -(1,12780:23818085,15099850:0,452978,115847 -r1,12791:27693469,15099850:3875384,568825,115847 -k1,12780:23818085,15099850:-3875384 -) -(1,12780:23818085,15099850:3875384,452978,115847 -k1,12780:23818085,15099850:3277 -h1,12780:27690192,15099850:0,411205,112570 -) -g1,12780:27693469,15099850 -g1,12780:28021149,15099850 -) -g1,12780:28021149,15099850 -(1,12781:28021149,15099850:4530745,555093,237900 -g1,12780:28348829,15099850 -g1,12780:28348830,15099850 -(1,12780:28348830,15099850:0,452978,115847 -r1,12791:32224214,15099850:3875384,568825,115847 -k1,12780:28348830,15099850:-3875384 -) -(1,12780:28348830,15099850:3875384,452978,115847 -k1,12780:28348830,15099850:3277 -h1,12780:32220937,15099850:0,411205,112570 -) -g1,12781:32224214,15099850 -g1,12781:32551894,15099850 -) -g1,12781:32551894,15099850 -) -(1,12782:6892271,15892843:25659623,555093,237900 -g1,12781:6892271,15892843 -(1,12781:6892271,15892843:4544923,555093,237900 -r1,12791:6892271,15892843:0,792993,237900 -g1,12781:7219951,15892843 -g1,12781:7219952,15892843 -k1,12781:11109514,15892843:1448346 -g1,12781:11437194,15892843 -) -g1,12781:11437194,15892843 -(1,12781:11437194,15892843:2991720,555093,237900 -g1,12781:11764874,15892843 -k1,12781:14101234,15892843:2336360 -g1,12781:14428914,15892843 -) -g1,12781:14428914,15892843 -(1,12781:14428914,15892843:4530745,555093,237900 -g1,12781:14756594,15892843 -g1,12781:14756595,15892843 -(1,12781:14756595,15892843:0,452978,115847 -r1,12791:17225132,15892843:2468537,568825,115847 -k1,12781:14756595,15892843:-2468537 -) -(1,12781:14756595,15892843:2468537,452978,115847 -k1,12781:14756595,15892843:3277 -h1,12781:17221855,15892843:0,411205,112570 -) -k1,12781:18631979,15892843:1406847 -g1,12781:18959659,15892843 -) -g1,12781:18959659,15892843 -(1,12781:18959659,15892843:4530745,555093,237900 -g1,12781:19287339,15892843 -g1,12781:19287340,15892843 -(1,12781:19287340,15892843:0,452978,115847 -r1,12791:21755877,15892843:2468537,568825,115847 -k1,12781:19287340,15892843:-2468537 -) -(1,12781:19287340,15892843:2468537,452978,115847 -k1,12781:19287340,15892843:3277 -h1,12781:21752600,15892843:0,411205,112570 -) -k1,12781:23162724,15892843:1406847 -g1,12781:23490404,15892843 -) -g1,12781:23490404,15892843 -(1,12781:23490404,15892843:4530745,555093,237900 -g1,12781:23818084,15892843 -g1,12781:23818085,15892843 -(1,12781:23818085,15892843:0,452978,115847 -r1,12791:26286622,15892843:2468537,568825,115847 -k1,12781:23818085,15892843:-2468537 -) -(1,12781:23818085,15892843:2468537,452978,115847 -k1,12781:23818085,15892843:3277 -h1,12781:26283345,15892843:0,411205,112570 -) -k1,12781:27693469,15892843:1406847 -g1,12781:28021149,15892843 -) -g1,12781:28021149,15892843 -(1,12782:28021149,15892843:4530745,555093,237900 -g1,12781:28348829,15892843 -g1,12781:28348830,15892843 -(1,12781:28348830,15892843:0,452978,115847 -r1,12791:30817367,15892843:2468537,568825,115847 -k1,12781:28348830,15892843:-2468537 -) -(1,12781:28348830,15892843:2468537,452978,115847 -k1,12781:28348830,15892843:3277 -h1,12781:30814090,15892843:0,411205,112570 -) -k1,12782:32224214,15892843:1406847 -g1,12782:32551894,15892843 -) -g1,12782:32551894,15892843 -) -(1,12783:6892271,16745959:25659623,615216,237900 -g1,12782:6892271,16745959 -(1,12782:6892271,16745959:4544923,615216,237900 -r1,12791:6892271,16745959:0,792993,237900 -g1,12782:7219951,16745959 -g1,12782:7219952,16745959 -$1,12782:7219952,16745959 -$1,12782:7702952,16745959 -k1,12782:11109514,16745959:631768 -g1,12782:11437194,16745959 -) -g1,12782:11437194,16745959 -(1,12782:11437194,16745959:2991720,615216,237900 -g1,12782:11764874,16745959 -g1,12782:11764875,16745959 -$1,12782:11764875,16745959 -(1,12782:12247875,16470678:311689,339935,0 -) -$1,12782:12559564,16745959 -k1,12782:14101234,16745959:1541670 -g1,12782:14428914,16745959 -) -g1,12782:14428914,16745959 -(1,12782:14428914,16745959:4530745,615216,237900 -g1,12782:14756594,16745959 -g1,12782:14756595,16745959 -(1,12782:14756595,16745959:0,452978,115847 -r1,12791:17576844,16745959:2820249,568825,115847 -k1,12782:14756595,16745959:-2820249 -) -(1,12782:14756595,16745959:2820249,452978,115847 -k1,12782:14756595,16745959:3277 -h1,12782:17573567,16745959:0,411205,112570 -) -k1,12782:18631979,16745959:1055135 -g1,12782:18959659,16745959 -) -g1,12782:18959659,16745959 -(1,12782:18959659,16745959:4530745,615216,237900 -g1,12782:19287339,16745959 -g1,12782:19287340,16745959 -(1,12782:19287340,16745959:0,452978,115847 -r1,12791:22107589,16745959:2820249,568825,115847 -k1,12782:19287340,16745959:-2820249 -) -(1,12782:19287340,16745959:2820249,452978,115847 -k1,12782:19287340,16745959:3277 -h1,12782:22104312,16745959:0,411205,112570 -) -k1,12782:23162724,16745959:1055135 -g1,12782:23490404,16745959 -) -g1,12782:23490404,16745959 -(1,12782:23490404,16745959:4530745,615216,237900 -g1,12782:23818084,16745959 -g1,12782:23818085,16745959 -(1,12782:23818085,16745959:0,452978,115847 -r1,12791:26638334,16745959:2820249,568825,115847 -k1,12782:23818085,16745959:-2820249 -) -(1,12782:23818085,16745959:2820249,452978,115847 -k1,12782:23818085,16745959:3277 -h1,12782:26635057,16745959:0,411205,112570 -) -k1,12782:27693469,16745959:1055135 -g1,12782:28021149,16745959 -) -g1,12782:28021149,16745959 -(1,12783:28021149,16745959:4530745,615216,237900 -g1,12782:28348829,16745959 -g1,12782:28348830,16745959 -(1,12782:28348830,16745959:0,452978,115847 -r1,12791:31169079,16745959:2820249,568825,115847 -k1,12782:28348830,16745959:-2820249 -) -(1,12782:28348830,16745959:2820249,452978,115847 -k1,12782:28348830,16745959:3277 -h1,12782:31165802,16745959:0,411205,112570 -) -k1,12783:32224214,16745959:1055135 -g1,12783:32551894,16745959 -) -g1,12783:32551894,16745959 -) -(1,12784:6892271,17538952:25659623,555093,237900 -g1,12783:6892271,17538952 -(1,12783:6892271,17538952:4544923,555093,237900 -r1,12791:6892271,17538952:0,792993,237900 -g1,12783:7219951,17538952 -g1,12783:7219952,17538952 -k1,12783:11109514,17538952:637010 -g1,12783:11437194,17538952 -) -g1,12783:11437194,17538952 -(1,12783:11437194,17538952:2991720,555093,237900 -g1,12783:11764874,17538952 -k1,12783:14101234,17538952:2336360 -g1,12783:14428914,17538952 -) -g1,12783:14428914,17538952 -(1,12783:14428914,17538952:4530745,555093,237900 -g1,12783:14756594,17538952 -g1,12783:14756595,17538952 -(1,12783:14756595,17538952:0,452978,115847 -r1,12791:17576844,17538952:2820249,568825,115847 -k1,12783:14756595,17538952:-2820249 -) -(1,12783:14756595,17538952:2820249,452978,115847 -k1,12783:14756595,17538952:3277 -h1,12783:17573567,17538952:0,411205,112570 -) -k1,12783:18631979,17538952:1055135 -g1,12783:18959659,17538952 -) -g1,12783:18959659,17538952 -(1,12783:18959659,17538952:4530745,555093,237900 -g1,12783:19287339,17538952 -g1,12783:19287340,17538952 -(1,12783:19287340,17538952:0,452978,115847 -r1,12791:22107589,17538952:2820249,568825,115847 -k1,12783:19287340,17538952:-2820249 -) -(1,12783:19287340,17538952:2820249,452978,115847 -k1,12783:19287340,17538952:3277 -h1,12783:22104312,17538952:0,411205,112570 -) -k1,12783:23162724,17538952:1055135 -g1,12783:23490404,17538952 -) -g1,12783:23490404,17538952 -(1,12783:23490404,17538952:4530745,555093,237900 -g1,12783:23818084,17538952 -g1,12783:23818085,17538952 -(1,12783:23818085,17538952:0,452978,115847 -r1,12791:26638334,17538952:2820249,568825,115847 -k1,12783:23818085,17538952:-2820249 -) -(1,12783:23818085,17538952:2820249,452978,115847 -k1,12783:23818085,17538952:3277 -h1,12783:26635057,17538952:0,411205,112570 -) -k1,12783:27693469,17538952:1055135 -g1,12783:28021149,17538952 -) -g1,12783:28021149,17538952 -(1,12784:28021149,17538952:4530745,555093,237900 -g1,12783:28348829,17538952 -g1,12783:28348830,17538952 -(1,12783:28348830,17538952:0,452978,115847 -r1,12791:31169079,17538952:2820249,568825,115847 -k1,12783:28348830,17538952:-2820249 -) -(1,12783:28348830,17538952:2820249,452978,115847 -k1,12783:28348830,17538952:3277 -h1,12783:31165802,17538952:0,411205,112570 -) -k1,12784:32224214,17538952:1055135 -g1,12784:32551894,17538952 -) -g1,12784:32551894,17538952 -) -(1,12785:6892271,18331945:25659623,555093,237900 -g1,12784:6892271,18331945 -(1,12784:6892271,18331945:4544923,555093,237900 -r1,12791:6892271,18331945:0,792993,237900 -g1,12784:7219951,18331945 -g1,12784:7219952,18331945 -k1,12784:11109514,18331945:1291059 -g1,12784:11437194,18331945 -) -g1,12784:11437194,18331945 -(1,12784:11437194,18331945:2991720,555093,237900 -g1,12784:11764874,18331945 -k1,12784:14101234,18331945:2336360 -g1,12784:14428914,18331945 -) -g1,12784:14428914,18331945 -(1,12784:14428914,18331945:4530745,555093,237900 -g1,12784:14756594,18331945 -g1,12784:14756595,18331945 -(1,12784:14756595,18331945:0,459977,115847 -r1,12791:17225132,18331945:2468537,575824,115847 -k1,12784:14756595,18331945:-2468537 -) -(1,12784:14756595,18331945:2468537,459977,115847 -k1,12784:14756595,18331945:3277 -h1,12784:17221855,18331945:0,411205,112570 -) -k1,12784:18631979,18331945:1406847 -g1,12784:18959659,18331945 -) -g1,12784:18959659,18331945 -(1,12784:18959659,18331945:4530745,555093,237900 -g1,12784:19287339,18331945 -g1,12784:19287340,18331945 -(1,12784:19287340,18331945:0,459977,115847 -r1,12791:21755877,18331945:2468537,575824,115847 -k1,12784:19287340,18331945:-2468537 -) -(1,12784:19287340,18331945:2468537,459977,115847 -k1,12784:19287340,18331945:3277 -h1,12784:21752600,18331945:0,411205,112570 -) -k1,12784:23162724,18331945:1406847 -g1,12784:23490404,18331945 -) -g1,12784:23490404,18331945 -(1,12784:23490404,18331945:4530745,555093,237900 -g1,12784:23818084,18331945 -g1,12784:23818085,18331945 -(1,12784:23818085,18331945:0,459977,115847 -r1,12791:26286622,18331945:2468537,575824,115847 -k1,12784:23818085,18331945:-2468537 -) -(1,12784:23818085,18331945:2468537,459977,115847 -k1,12784:23818085,18331945:3277 -h1,12784:26283345,18331945:0,411205,112570 -) -k1,12784:27693469,18331945:1406847 -g1,12784:28021149,18331945 -) -g1,12784:28021149,18331945 -(1,12785:28021149,18331945:4530745,555093,237900 -g1,12784:28348829,18331945 -g1,12784:28348830,18331945 -(1,12784:28348830,18331945:0,459977,115847 -r1,12791:30817367,18331945:2468537,575824,115847 -k1,12784:28348830,18331945:-2468537 -) -(1,12784:28348830,18331945:2468537,459977,115847 -k1,12784:28348830,18331945:3277 -h1,12784:30814090,18331945:0,411205,112570 -) -k1,12785:32224214,18331945:1406847 -g1,12785:32551894,18331945 -) -g1,12785:32551894,18331945 -) -] -$1,12786:32551894,14579987 -) -g1,12786:32551894,14579987 -) -(1,12786:6693042,18931865:25858852,65536,0 -g1,12786:6693042,18931865 -(1,12786:6693042,18931865:25858852,65536,0 -r1,12791:32551894,18931865:25858852,65536,0 -) -g1,12786:32551894,18931865 -) -] -g1,12786:32551894,18931865 -k1,12786:32583029,18931865:31135 -) -] -] -v1,12754:6630773,20897945:0,393216,0 -(1,12755:6630773,23892145:25952256,3387416,0 -g1,12755:6630773,23892145 -g1,12755:6237557,23892145 -r1,12791:6368629,23892145:131072,3387416,0 -g1,12755:6567858,23892145 -g1,12755:6764466,23892145 -[1,12755:6764466,23892145:25818563,3387416,0 -(1,12755:6764466,21170422:25818563,665693,196608 -(1,12754:6764466,21170422:0,665693,196608 -r1,12791:7868133,21170422:1103667,862301,196608 -k1,12754:6764466,21170422:-1103667 -) -(1,12754:6764466,21170422:1103667,665693,196608 -) -k1,12754:8042763,21170422:174630 -k1,12754:9360692,21170422:327680 -k1,12754:10163158,21170422:174631 -k1,12754:12969059,21170422:174630 -k1,12754:13795117,21170422:174630 -k1,12754:14988833,21170422:174631 -k1,12754:16255948,21170422:174630 -k1,12754:17089871,21170422:174631 -k1,12754:18966471,21170422:174630 -k1,12754:22340569,21170422:174630 -k1,12754:22728167,21170422:174606 -k1,12754:23718066,21170422:174631 -k1,12754:24958967,21170422:174630 -k1,12754:27563672,21170422:174630 -k1,12754:30730022,21170422:174631 -k1,12754:31563944,21170422:174630 -k1,12754:32583029,21170422:0 -) -(1,12755:6764466,22035502:25818563,513147,115847 -k1,12754:8014304,22035502:157353 -k1,12754:8830948,22035502:157352 -k1,12754:9754417,22035502:157353 -k1,12754:10930854,22035502:157352 -k1,12754:14114004,22035502:157353 -k1,12754:16032964,22035502:157352 -k1,12754:16806355,22035502:157353 -k1,12754:18706965,22035502:157352 -h1,12754:19677553,22035502:0,0,0 -k1,12754:20008576,22035502:157353 -k1,12754:23311656,22035502:157352 -(1,12754:23311656,22035502:0,452978,115847 -r1,12791:25780193,22035502:2468537,568825,115847 -k1,12754:23311656,22035502:-2468537 -) -(1,12754:23311656,22035502:2468537,452978,115847 -k1,12754:23311656,22035502:3277 -h1,12754:25776916,22035502:0,411205,112570 -) -k1,12754:25937546,22035502:157353 -k1,12754:28403076,22035502:157352 -k1,12754:29954380,22035502:157353 -k1,12754:32583029,22035502:0 -) -(1,12755:6764466,22900582:25818563,513147,134348 -k1,12754:8382316,22900582:228487 -k1,12754:9293687,22900582:228486 -k1,12754:10614659,22900582:228487 -k1,12754:12039832,22900582:228486 -k1,12754:13657682,22900582:228487 -k1,12754:14537596,22900582:228486 -k1,12754:16108916,22900582:228487 -k1,12754:17731353,22900582:228486 -k1,12754:18978925,22900582:228487 -k1,12754:22425229,22900582:228486 -k1,12754:25853184,22900582:228487 -k1,12754:27890464,22900582:228486 -k1,12754:29138036,22900582:228487 -k1,12754:30754575,22900582:228486 -k1,12754:32583029,22900582:0 -) -(1,12755:6764466,23765662:25818563,513147,126483 -g1,12754:7615123,23765662 -g1,12754:9425882,23765662 -g1,12754:11447667,23765662 -g1,12754:12665981,23765662 -g1,12754:15627553,23765662 -g1,12754:19437816,23765662 -g1,12754:20828490,23765662 -g1,12754:22536358,23765662 -k1,12755:32583029,23765662:8571456 -g1,12755:32583029,23765662 -) -] -g1,12755:32583029,23892145 -) -h1,12755:6630773,23892145:0,0,0 -(1,12758:6630773,24757225:25952256,513147,115847 -h1,12757:6630773,24757225:983040,0,0 -k1,12757:9588887,24757225:158416 -k1,12757:11397499,24757225:158415 -k1,12757:14562051,24757225:158416 -k1,12757:17746264,24757225:158416 -k1,12757:18896240,24757225:158416 -k1,12757:20340471,24757225:158415 -k1,12757:23282856,24757225:158416 -k1,12757:24057310,24757225:158416 -k1,12757:24804239,24757225:158416 -k1,12757:26456220,24757225:158415 -k1,12757:27300798,24757225:158416 -(1,12757:27300798,24757225:0,452978,115847 -r1,12791:32583029,24757225:5282231,568825,115847 -k1,12757:27300798,24757225:-5282231 -) -(1,12757:27300798,24757225:5282231,452978,115847 -k1,12757:27300798,24757225:3277 -h1,12757:32579752,24757225:0,411205,112570 -) -k1,12757:32583029,24757225:0 -) -(1,12758:6630773,25622305:25952256,505283,134348 -k1,12757:8099939,25622305:184660 -k1,12757:11402802,25622305:184660 -k1,12757:12606547,25622305:184660 -k1,12757:14801852,25622305:184660 -k1,12757:17284860,25622305:184660 -k1,12757:18120948,25622305:184660 -k1,12757:19891580,25622305:184661 -k1,12757:22843825,25622305:184660 -k1,12757:24260562,25622305:184660 -k1,12757:26723909,25622305:184660 -h1,12757:28266627,25622305:0,0,0 -k1,12757:28451287,25622305:184660 -k1,12757:29445317,25622305:184660 -k1,12757:31128130,25622305:184660 -h1,12757:32323507,25622305:0,0,0 -k1,12758:32583029,25622305:0 -k1,12758:32583029,25622305:0 -) -(1,12761:6630773,26487385:25952256,505283,134348 -h1,12759:6630773,26487385:983040,0,0 -k1,12759:8400144,26487385:158496 -k1,12759:10310418,26487385:158497 -k1,12759:12166296,26487385:158496 -k1,12759:13495265,26487385:158496 -k1,12759:14786224,26487385:158497 -k1,12759:16493336,26487385:158496 -k1,12759:17303260,26487385:158496 -k1,12759:20249658,26487385:158496 -k1,12759:23492279,26487385:158497 -k1,12759:27158917,26487385:158496 -k1,12759:28078941,26487385:158496 -k1,12759:30130118,26487385:158497 -k1,12759:30971499,26487385:158496 -k1,12761:32583029,26487385:0 -) -(1,12761:6630773,27352465:25952256,513147,11795 -k1,12759:8478355,27352465:208527 -k1,12759:9302921,27352465:208528 -k1,12759:12177453,27352465:208527 -k1,12759:13068866,27352465:208528 -k1,12759:15604576,27352465:208527 -k1,12759:16472395,27352465:208527 -k1,12759:17628574,27352465:208528 -k1,12759:18192961,27352465:208527 -k1,12759:20284337,27352465:208527 -k1,12759:21882228,27352465:208528 -k1,12759:23025298,27352465:208527 -k1,12759:23916711,27352465:208528 -k1,12759:26276785,27352465:208527 -k1,12759:27535199,27352465:208527 -k1,12759:30022414,27352465:208528 -h1,12759:31565132,27352465:0,0,0 -k1,12759:31773659,27352465:208527 -k1,12759:32583029,27352465:0 -) -(1,12761:6630773,28217545:25952256,513147,134348 -k1,12759:8329466,28217545:200540 -h1,12759:9524843,28217545:0,0,0 -k1,12759:9725383,28217545:200540 -k1,12759:10873574,28217545:200540 -k1,12759:13191582,28217545:200540 -k1,12759:14201492,28217545:200540 -k1,12759:15732413,28217545:200540 -k1,12759:16584382,28217545:200541 -k1,12759:19572824,28217545:200540 -k1,12759:23281506,28217545:200540 -k1,12759:24141338,28217545:200540 -k1,12759:25731241,28217545:200540 -k1,12759:27969951,28217545:200540 -k1,12759:28786529,28217545:200540 -k1,12759:30376432,28217545:200540 -k1,12759:32583029,28217545:0 -) -(1,12761:6630773,29082625:25952256,513147,134348 -k1,12759:8542863,29082625:176697 -k1,12759:10153487,29082625:176696 -k1,12759:10745005,29082625:176675 -k1,12759:14121169,29082625:176696 -k1,12759:15489311,29082625:176697 -k1,12759:17944694,29082625:176696 -h1,12759:18915282,29082625:0,0,0 -k1,12759:19091979,29082625:176697 -k1,12759:20078046,29082625:176697 -k1,12759:21752895,29082625:176696 -h1,12759:22948272,29082625:0,0,0 -k1,12759:23124969,29082625:176697 -k1,12759:24249317,29082625:176697 -k1,12759:27812914,29082625:176696 -k1,12759:31015408,29082625:176697 -k1,12759:32583029,29082625:0 -) -(1,12761:6630773,29947705:25952256,505283,134348 -g1,12759:10559656,29947705 -g1,12759:13843009,29947705 -k1,12761:32583029,29947705:18740020 -g1,12761:32583029,29947705 -) -(1,12762:6630773,32778865:25952256,32768,229376 -(1,12762:6630773,32778865:0,32768,229376 -(1,12762:6630773,32778865:5505024,32768,229376 -r1,12791:12135797,32778865:5505024,262144,229376 -) -k1,12762:6630773,32778865:-5505024 -) -(1,12762:6630773,32778865:25952256,32768,0 -r1,12791:32583029,32778865:25952256,32768,0 -) -) -(1,12762:6630773,34410717:25952256,606339,151780 -(1,12762:6630773,34410717:1974731,582746,14155 -g1,12762:6630773,34410717 -g1,12762:8605504,34410717 -) -g1,12762:12371727,34410717 -g1,12762:16979433,34410717 -k1,12762:32583029,34410717:10395843 -g1,12762:32583029,34410717 -) -(1,12767:6630773,35669013:25952256,513147,134348 -k1,12766:9603896,35669013:384451 -k1,12766:13769773,35669013:384450 -k1,12766:17353692,35669013:384451 -k1,12766:20338611,35669013:384450 -k1,12766:23748859,35669013:384451 -k1,12766:25324754,35669013:384450 -k1,12766:29104625,35669013:384451 -k1,12766:30148367,35669013:384450 -k1,12767:32583029,35669013:0 -) -(1,12767:6630773,36534093:25952256,513147,126483 -k1,12766:9281130,36534093:156057 -k1,12766:11447833,36534093:156058 -k1,12766:12551541,36534093:156057 -k1,12766:14939099,36534093:156057 -k1,12766:17857500,36534093:156058 -k1,12766:20857164,36534093:156057 -k1,12766:24829383,36534093:156058 -k1,12766:28471300,36534093:156057 -k1,12766:32583029,36534093:0 -) -(1,12767:6630773,37399173:25952256,513147,134348 -k1,12766:7777271,37399173:154938 -k1,12766:9254069,37399173:154937 -k1,12766:10068299,37399173:154938 -k1,12766:11242321,37399173:154937 -k1,12766:11812058,37399173:154894 -k1,12766:14982963,37399173:154938 -k1,12766:17806526,37399173:154937 -(1,12766:17806526,37399173:0,452978,115847 -r1,12791:24495604,37399173:6689078,568825,115847 -k1,12766:17806526,37399173:-6689078 -) -(1,12766:17806526,37399173:6689078,452978,115847 -k1,12766:17806526,37399173:3277 -h1,12766:24492327,37399173:0,411205,112570 -) -k1,12766:24650542,37399173:154938 -k1,12766:25418242,37399173:154938 -k1,12766:26592264,37399173:154937 -k1,12766:27162001,37399173:154894 -k1,12766:29718177,37399173:154937 -k1,12766:31005577,37399173:154938 -k1,12766:32583029,37399173:0 -) -(1,12767:6630773,38264253:25952256,505283,134348 -k1,12766:7214698,38264253:228065 -k1,12766:8830817,38264253:228066 -k1,12766:10557035,38264253:228065 -k1,12766:14097290,38264253:228065 -k1,12766:15091472,38264253:228066 -k1,12766:16338622,38264253:228065 -k1,12766:20678416,38264253:228065 -k1,12766:23690450,38264253:228065 -k1,12766:24534554,38264253:228066 -k1,12766:26196547,38264253:228065 -k1,12766:27013125,38264253:228065 -k1,12766:28283213,38264253:228066 -k1,12766:29962900,38264253:228065 -k1,12767:32583029,38264253:0 -) -(1,12767:6630773,39129333:25952256,513147,115847 -k1,12766:8301000,39129333:229090 -k1,12766:9549174,39129333:229089 -k1,12766:12540607,39129333:229090 -k1,12766:15795493,39129333:229089 -k1,12766:18396331,39129333:229090 -k1,12766:19644505,39129333:229089 -k1,12766:21527068,39129333:229090 -k1,12766:23690780,39129333:229089 -k1,12766:24535908,39129333:229090 -k1,12766:26273636,39129333:229089 -k1,12766:28744713,39129333:229090 -(1,12766:28744713,39129333:0,414482,115847 -r1,12791:30158114,39129333:1413401,530329,115847 -k1,12766:28744713,39129333:-1413401 -) -(1,12766:28744713,39129333:1413401,414482,115847 -k1,12766:28744713,39129333:3277 -h1,12766:30154837,39129333:0,411205,112570 -) -k1,12766:30387203,39129333:229089 -k1,12766:31563944,39129333:229090 -k1,12766:32583029,39129333:0 -) -(1,12767:6630773,39994413:25952256,513147,115847 -k1,12766:9150322,39994413:240862 -k1,12766:13346282,39994413:240862 -(1,12766:13346282,39994413:0,459977,115847 -r1,12791:14759683,39994413:1413401,575824,115847 -k1,12766:13346282,39994413:-1413401 -) -(1,12766:13346282,39994413:1413401,459977,115847 -k1,12766:13346282,39994413:3277 -h1,12766:14756406,39994413:0,411205,112570 -) -k1,12766:15000546,39994413:240863 -k1,12766:16189059,39994413:240862 -k1,12766:17449006,39994413:240862 -k1,12766:20288371,39994413:240862 -k1,12766:24484331,39994413:240862 -k1,12766:25916638,39994413:240862 -k1,12766:26882329,39994413:240863 -k1,12766:28106231,39994413:240862 -k1,12766:29543780,39994413:240862 -k1,12766:31923737,39994413:240862 -k1,12766:32583029,39994413:0 -) -(1,12767:6630773,40859493:25952256,513147,126483 -k1,12766:7817302,40859493:167444 -k1,12766:9722760,40859493:167443 -k1,12766:12752161,40859493:167444 -k1,12766:13938690,40859493:167444 -k1,12766:15492220,40859493:167444 -k1,12766:16318955,40859493:167443 -k1,12766:18497044,40859493:167444 -k1,12766:21616885,40859493:167444 -(1,12766:21917040,40859493:0,452978,115847 -r1,12791:22275306,40859493:358266,568825,115847 -k1,12766:21917040,40859493:-358266 -) -(1,12766:21917040,40859493:358266,452978,115847 -k1,12766:21917040,40859493:3277 -h1,12766:22272029,40859493:0,411205,112570 -) -k1,12766:22742904,40859493:167443 -k1,12766:23857999,40859493:167444 -k1,12766:26531540,40859493:167444 -(1,12766:26831695,40859493:0,414482,115847 -r1,12791:27189961,40859493:358266,530329,115847 -k1,12766:26831695,40859493:-358266 -) -(1,12766:26831695,40859493:358266,414482,115847 -k1,12766:26831695,40859493:3277 -h1,12766:27186684,40859493:0,411205,112570 -) -k1,12766:27657560,40859493:167444 -k1,12766:28772654,40859493:167443 -k1,12766:31714237,40859493:167444 -(1,12766:32014392,40859493:0,414482,115847 -r1,12791:32372658,40859493:358266,530329,115847 -k1,12766:32014392,40859493:-358266 -) -(1,12766:32014392,40859493:358266,414482,115847 -k1,12766:32014392,40859493:3277 -h1,12766:32369381,40859493:0,411205,112570 -) -k1,12766:32583029,40859493:0 -) -(1,12767:6630773,41724573:25952256,513147,126483 -g1,12766:12259004,41724573 -g1,12766:14548176,41724573 -g1,12766:15938850,41724573 -(1,12766:16239005,41724573:0,414482,115847 -r1,12791:16597271,41724573:358266,530329,115847 -k1,12766:16239005,41724573:-358266 -) -(1,12766:16239005,41724573:358266,414482,115847 -k1,12766:16239005,41724573:3277 -h1,12766:16593994,41724573:0,411205,112570 -) -g1,12766:17096655,41724573 -g1,12766:18243535,41724573 -g1,12766:21928624,41724573 -g1,12766:24078204,41724573 -h1,12766:25048792,41724573:0,0,0 -k1,12767:32583029,41724573:7274715 -g1,12767:32583029,41724573 -) -(1,12790:6630773,42589653:25952256,513147,126483 -h1,12789:6630773,42589653:983040,0,0 -k1,12789:11501081,42589653:307692 -k1,12789:15920501,42589653:307691 -k1,12789:17219753,42589653:307692 -k1,12789:19909022,42589653:307691 -k1,12789:20978242,42589653:307692 -k1,12789:25609343,42589653:307691 -k1,12789:28942832,42589653:307692 -k1,12789:30535029,42589653:307691 -k1,12789:32583029,42589653:0 -) -(1,12790:6630773,43454733:25952256,513147,126483 -k1,12789:10491953,43454733:250146 -k1,12789:12026604,43454733:250145 -k1,12789:14564612,43454733:250146 -k1,12789:15833843,43454733:250146 -k1,12789:17742704,43454733:250145 -k1,12789:19861937,43454733:250146 -k1,12789:21303528,43454733:250146 -k1,12789:24283904,43454733:250146 -k1,12789:25161884,43454733:250145 -k1,12789:26431115,43454733:250146 -k1,12789:28048342,43454733:250146 -k1,12789:28957779,43454733:250145 -k1,12789:30227010,43454733:250146 -k1,12789:32583029,43454733:0 -) -(1,12790:6630773,44319813:25952256,505283,134348 -k1,12789:10790561,44319813:204690 -k1,12789:12691978,44319813:204690 -k1,12789:16507701,44319813:204689 -k1,12789:17703951,44319813:204690 -k1,12789:18927726,44319813:204690 -k1,12789:20903854,44319813:204690 -(1,12789:21110948,44319813:0,414482,115847 -r1,12791:22524349,44319813:1413401,530329,115847 -k1,12789:21110948,44319813:-1413401 -) -(1,12789:21110948,44319813:1413401,414482,115847 -k1,12789:21110948,44319813:3277 -h1,12789:22521072,44319813:0,411205,112570 -) -k1,12789:22936133,44319813:204690 -k1,12789:26624061,44319813:204689 -k1,12789:27847836,44319813:204690 -k1,12789:30609085,44319813:204690 -k1,12789:32583029,44319813:0 -) -(1,12790:6630773,45184893:25952256,513147,134348 -k1,12789:8059440,45184893:237222 -k1,12789:11416830,45184893:237221 -k1,12789:14810921,45184893:237222 -(1,12789:15018015,45184893:0,452978,115847 -r1,12791:15727993,45184893:709978,568825,115847 -k1,12789:15018015,45184893:-709978 -) -(1,12789:15018015,45184893:709978,452978,115847 -k1,12789:15018015,45184893:3277 -h1,12789:15724716,45184893:0,411205,112570 -) -k1,12789:16172308,45184893:237221 -k1,12789:19892769,45184893:237222 -k1,12789:21149076,45184893:237222 -k1,12789:23549640,45184893:237221 -k1,12789:25380698,45184893:237222 -k1,12789:27185540,45184893:237221 -k1,12789:28441847,45184893:237222 -k1,12789:30667430,45184893:237221 -k1,12789:31563944,45184893:237222 -k1,12789:32583029,45184893:0 -) -] -(1,12791:32583029,45706769:0,0,0 -g1,12791:32583029,45706769 -) -) -] -(1,12791:6630773,47279633:25952256,0,0 -h1,12791:6630773,47279633:25952256,0,0 -) -] -(1,12791:4262630,4025873:0,0,0 -[1,12791:-473656,4025873:0,0,0 -(1,12791:-473656,-710413:0,0,0 -(1,12791:-473656,-710413:0,0,0 -g1,12791:-473656,-710413 -) -g1,12791:-473656,-710413 -) -] -) -] -!43448 -}204 -Input:2139:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,12789:3078556,49800853:-34777008 +) +] +g1,12789:6630773,4812305 +g1,12789:6630773,4812305 +g1,12789:9737834,4812305 +g1,12789:13337726,4812305 +g1,12789:17543826,4812305 +k1,12789:31387652,4812305:13843826 +) +) +] +[1,12789:6630773,45706769:25952256,40108032,0 +(1,12789:6630773,45706769:25952256,40108032,0 +(1,12789:6630773,45706769:0,0,0 +g1,12789:6630773,45706769 +) +[1,12789:6630773,45706769:25952256,40108032,0 +[1,12785:6630773,18931865:25952256,13333128,0 +[1,12785:6630773,18931865:25952256,13333128,0 +(1,12768:6630773,6759380:25952256,505283,7863 +h1,12768:6607180,6759380:0,0,0 +g1,12768:8644694,6759380 +k1,12768:32583029,6759380:22948086 +g1,12768:32583029,6759380 +) +(1,12768:6630773,7624460:25952256,513147,126483 +h1,12768:6630773,7624460:0,0,0 +k1,12768:9736145,7624460:236861 +k1,12768:13458866,7624460:236861 +k1,12768:17807456,7624460:236861 +k1,12768:18660355,7624460:236861 +k1,12768:19485729,7624460:236861 +k1,12768:21761415,7624460:236861 +k1,12768:22991802,7624460:236861 +k1,12768:23887956,7624460:236862 +k1,12768:25558745,7624460:236861 +k1,12768:26210411,7624460:236823 +k1,12768:29473069,7624460:236861 +k1,12768:31931601,7624460:236861 +k1,12768:32583029,7624460:0 +) +(1,12768:6630773,8489540:25952256,513147,134348 +k1,12768:10322237,8489540:205604 +k1,12768:14813240,8489540:205604 +k1,12768:16215532,8489540:205605 +k1,12768:17511000,8489540:205604 +k1,12768:18710130,8489540:205604 +k1,12768:20020016,8489540:205604 +k1,12768:20973386,8489540:205604 +k1,12768:23970824,8489540:205604 +k1,12768:24937957,8489540:205605 +k1,12768:28198849,8489540:205604 +k1,12768:29423538,8489540:205604 +k1,12768:32583029,8489540:0 +) +(1,12768:6630773,9354620:25952256,452978,115847 +(1,12768:6630773,9354620:0,452978,115847 +r1,12789:13319851,9354620:6689078,568825,115847 +k1,12768:6630773,9354620:-6689078 +) +(1,12768:6630773,9354620:6689078,452978,115847 +k1,12768:6630773,9354620:3277 +h1,12768:13316574,9354620:0,411205,112570 +) +k1,12768:32583029,9354620:19210750 +g1,12768:32583029,9354620 +) +(1,12784:6630773,18931865:25952256,9048521,0 +k1,12784:6661908,18931865:31135 +h1,12770:6661908,18931865:0,0,0 +k1,12770:6693042,18931865:31134 +[1,12784:6693042,18931865:25858852,9048521,0 +(1,12784:6693042,9948880:25858852,65536,0 +g1,12784:6693042,9948880 +(1,12784:6693042,9948880:25858852,65536,0 +r1,12789:32551894,9948880:25858852,65536,0 +) +g1,12784:32551894,9948880 +) +(1,12784:6693042,14579987:25858852,4565571,4155270 +g1,12784:6693042,14579987 +(1,12784:6693042,14579987:25858852,4565571,4155270 +g1,12770:6892271,14579987 +$1,12784:6892271,14579987 +[1,12784:6892271,14579987:25659623,4565571,4155270 +(1,12773:6892271,10805536:25659623,555093,237900 +g1,12772:6892271,10805536 +(1,12772:6892271,10805536:4544923,555093,237900 +r1,12789:6892271,10805536:0,792993,237900 +g1,12772:7219951,10805536 +g1,12772:7219952,10805536 +k1,12772:11109514,10805536:25559 +g1,12772:11437194,10805536 +) +g1,12772:11437194,10805536 +(1,12772:11437194,10805536:2991720,555093,237900 +g1,12772:11764874,10805536 +g1,12772:11764875,10805536 +g1,12772:14101234,10805536 +g1,12772:14428914,10805536 +) +g1,12772:14428914,10805536 +(1,12772:14428914,10805536:4530745,555093,237900 +g1,12772:14756594,10805536 +g1,12772:14756595,10805536 +k1,12772:18631979,10805536:1460382 +g1,12772:18959659,10805536 +) +g1,12772:18959659,10805536 +(1,12772:18959659,10805536:4530745,555093,237900 +g1,12772:19287339,10805536 +g1,12772:19287340,10805536 +$1,12772:19287340,10805536 +$1,12772:19755267,10805536 +k1,12772:23162724,10805536:1514122 +g1,12772:23490404,10805536 +) +g1,12772:23490404,10805536 +(1,12772:23490404,10805536:4530745,555093,237900 +g1,12772:23818084,10805536 +g1,12772:23818085,10805536 +k1,12772:27693469,10805536:839101 +g1,12772:28021149,10805536 +) +g1,12772:28021149,10805536 +(1,12773:28021149,10805536:4530745,555093,237900 +g1,12772:28348829,10805536 +g1,12772:28348830,10805536 +k1,12773:32224214,10805536:1876536 +g1,12773:32551894,10805536 +) +g1,12773:32551894,10805536 +) +(1,12775:6892271,11927878:25659623,555093,237900 +g1,12774:6892271,11927878 +(1,12774:6892271,11927878:4544923,555093,237900 +r1,12789:6892271,11927878:0,792993,237900 +g1,12774:7219951,11927878 +g1,12774:7219952,11927878 +k1,12774:11109514,11927878:1533543 +g1,12774:11437194,11927878 +) +g1,12774:11437194,11927878 +(1,12774:11437194,11927878:2991720,555093,237900 +g1,12774:11764874,11927878 +g1,12774:11764875,11927878 +$1,12774:11764875,11927878 +$1,12774:12350767,11927878 +k1,12774:14101234,11927878:1750467 +g1,12774:14428914,11927878 +) +g1,12774:14428914,11927878 +(1,12774:14428914,11927878:4530745,555093,237900 +g1,12774:14756594,11927878 +g1,12774:14756595,11927878 +(1,12774:14756595,11927878:0,452978,115847 +r1,12789:17225132,11927878:2468537,568825,115847 +k1,12774:14756595,11927878:-2468537 +) +(1,12774:14756595,11927878:2468537,452978,115847 +k1,12774:14756595,11927878:3277 +h1,12774:17221855,11927878:0,411205,112570 +) +k1,12774:18631979,11927878:1406847 +g1,12774:18959659,11927878 +) +g1,12774:18959659,11927878 +(1,12774:18959659,11927878:4530745,555093,237900 +g1,12774:19287339,11927878 +g1,12774:19287340,11927878 +(1,12774:19287340,11927878:0,452978,115847 +r1,12789:21755877,11927878:2468537,568825,115847 +k1,12774:19287340,11927878:-2468537 +) +(1,12774:19287340,11927878:2468537,452978,115847 +k1,12774:19287340,11927878:3277 +h1,12774:21752600,11927878:0,411205,112570 +) +k1,12774:23162724,11927878:1406847 +g1,12774:23490404,11927878 +) +g1,12774:23490404,11927878 +(1,12774:23490404,11927878:4530745,555093,237900 +g1,12774:23818084,11927878 +g1,12774:23818085,11927878 +(1,12774:23818085,11927878:0,452978,115847 +r1,12789:26286622,11927878:2468537,568825,115847 +k1,12774:23818085,11927878:-2468537 +) +(1,12774:23818085,11927878:2468537,452978,115847 +k1,12774:23818085,11927878:3277 +h1,12774:26283345,11927878:0,411205,112570 +) +k1,12774:27693469,11927878:1406847 +g1,12774:28021149,11927878 +) +g1,12774:28021149,11927878 +(1,12775:28021149,11927878:4530745,555093,237900 +g1,12774:28348829,11927878 +g1,12774:28348830,11927878 +(1,12774:28348830,11927878:0,452978,115847 +r1,12789:30817367,11927878:2468537,568825,115847 +k1,12774:28348830,11927878:-2468537 +) +(1,12774:28348830,11927878:2468537,452978,115847 +k1,12774:28348830,11927878:3277 +h1,12774:30814090,11927878:0,411205,112570 +) +k1,12775:32224214,11927878:1406847 +g1,12775:32551894,11927878 +) +g1,12775:32551894,11927878 +) +(1,12776:6892271,12720871:25659623,555093,237900 +g1,12775:6892271,12720871 +(1,12775:6892271,12720871:4544923,555093,237900 +r1,12789:6892271,12720871:0,792993,237900 +g1,12775:7219951,12720871 +g1,12775:7219952,12720871 +k1,12775:11109514,12720871:918815 +g1,12775:11437194,12720871 +) +g1,12775:11437194,12720871 +(1,12775:11437194,12720871:2991720,555093,237900 +g1,12775:11764874,12720871 +g1,12775:11764875,12720871 +$1,12775:11764875,12720871 +$1,12775:12085346,12720871 +k1,12775:14101234,12720871:2015888 +g1,12775:14428914,12720871 +) +g1,12775:14428914,12720871 +(1,12775:14428914,12720871:4530745,555093,237900 +g1,12775:14756594,12720871 +g1,12775:14756595,12720871 +(1,12775:14756595,12720871:0,452978,115847 +r1,12789:16169996,12720871:1413401,568825,115847 +k1,12775:14756595,12720871:-1413401 +) +(1,12775:14756595,12720871:1413401,452978,115847 +k1,12775:14756595,12720871:3277 +h1,12775:16166719,12720871:0,411205,112570 +) +k1,12775:18631979,12720871:2461983 +g1,12775:18959659,12720871 +) +g1,12775:18959659,12720871 +(1,12775:18959659,12720871:4530745,555093,237900 +g1,12775:19287339,12720871 +g1,12775:19287340,12720871 +(1,12775:19287340,12720871:0,452978,115847 +r1,12789:20700741,12720871:1413401,568825,115847 +k1,12775:19287340,12720871:-1413401 +) +(1,12775:19287340,12720871:1413401,452978,115847 +k1,12775:19287340,12720871:3277 +h1,12775:20697464,12720871:0,411205,112570 +) +k1,12775:23162724,12720871:2461983 +g1,12775:23490404,12720871 +) +g1,12775:23490404,12720871 +(1,12775:23490404,12720871:4530745,555093,237900 +g1,12775:23818084,12720871 +g1,12775:23818085,12720871 +(1,12775:23818085,12720871:0,452978,115847 +r1,12789:25231486,12720871:1413401,568825,115847 +k1,12775:23818085,12720871:-1413401 +) +(1,12775:23818085,12720871:1413401,452978,115847 +k1,12775:23818085,12720871:3277 +h1,12775:25228209,12720871:0,411205,112570 +) +k1,12775:27693469,12720871:2461983 +g1,12775:28021149,12720871 +) +g1,12775:28021149,12720871 +(1,12776:28021149,12720871:4530745,555093,237900 +g1,12775:28348829,12720871 +g1,12775:28348830,12720871 +(1,12775:28348830,12720871:0,452978,115847 +r1,12789:29762231,12720871:1413401,568825,115847 +k1,12775:28348830,12720871:-1413401 +) +(1,12775:28348830,12720871:1413401,452978,115847 +k1,12775:28348830,12720871:3277 +h1,12775:29758954,12720871:0,411205,112570 +) +k1,12776:32224214,12720871:2461983 +g1,12776:32551894,12720871 +) +g1,12776:32551894,12720871 +) +(1,12777:6892271,13513864:25659623,555093,237900 +g1,12776:6892271,13513864 +(1,12776:6892271,13513864:4544923,555093,237900 +r1,12789:6892271,13513864:0,792993,237900 +g1,12776:7219951,13513864 +g1,12776:7219952,13513864 +k1,12776:11109514,13513864:3530425 +g1,12776:11437194,13513864 +) +g1,12776:11437194,13513864 +(1,12776:11437194,13513864:2991720,555093,237900 +g1,12776:11764874,13513864 +g1,12776:11764875,13513864 +$1,12776:11764875,13513864 +$1,12776:12209864,13513864 +k1,12776:14101234,13513864:1891370 +g1,12776:14428914,13513864 +) +g1,12776:14428914,13513864 +(1,12776:14428914,13513864:4530745,555093,237900 +g1,12776:14756594,13513864 +g1,12776:14756595,13513864 +(1,12776:14756595,13513864:0,459977,115847 +r1,12789:16169996,13513864:1413401,575824,115847 +k1,12776:14756595,13513864:-1413401 +) +(1,12776:14756595,13513864:1413401,459977,115847 +k1,12776:14756595,13513864:3277 +h1,12776:16166719,13513864:0,411205,112570 +) +k1,12776:18631979,13513864:2461983 +g1,12776:18959659,13513864 +) +g1,12776:18959659,13513864 +(1,12776:18959659,13513864:4530745,555093,237900 +g1,12776:19287339,13513864 +g1,12776:19287340,13513864 +(1,12776:19287340,13513864:0,459977,115847 +r1,12789:20700741,13513864:1413401,575824,115847 +k1,12776:19287340,13513864:-1413401 +) +(1,12776:19287340,13513864:1413401,459977,115847 +k1,12776:19287340,13513864:3277 +h1,12776:20697464,13513864:0,411205,112570 +) +k1,12776:23162724,13513864:2461983 +g1,12776:23490404,13513864 +) +g1,12776:23490404,13513864 +(1,12776:23490404,13513864:4530745,555093,237900 +g1,12776:23818084,13513864 +g1,12776:23818085,13513864 +(1,12776:23818085,13513864:0,459977,115847 +r1,12789:25231486,13513864:1413401,575824,115847 +k1,12776:23818085,13513864:-1413401 +) +(1,12776:23818085,13513864:1413401,459977,115847 +k1,12776:23818085,13513864:3277 +h1,12776:25228209,13513864:0,411205,112570 +) +k1,12776:27693469,13513864:2461983 +g1,12776:28021149,13513864 +) +g1,12776:28021149,13513864 +(1,12777:28021149,13513864:4530745,555093,237900 +g1,12776:28348829,13513864 +g1,12776:28348830,13513864 +(1,12776:28348830,13513864:0,459977,115847 +r1,12789:29762231,13513864:1413401,575824,115847 +k1,12776:28348830,13513864:-1413401 +) +(1,12776:28348830,13513864:1413401,459977,115847 +k1,12776:28348830,13513864:3277 +h1,12776:29758954,13513864:0,411205,112570 +) +k1,12777:32224214,13513864:2461983 +g1,12777:32551894,13513864 +) +g1,12777:32551894,13513864 +) +(1,12778:6892271,14306857:25659623,555093,237900 +g1,12777:6892271,14306857 +(1,12777:6892271,14306857:4544923,555093,237900 +r1,12789:6892271,14306857:0,792993,237900 +g1,12777:7219951,14306857 +g1,12777:7219952,14306857 +k1,12777:11109514,14306857:1096418 +g1,12777:11437194,14306857 +) +g1,12777:11437194,14306857 +(1,12777:11437194,14306857:2991720,555093,237900 +g1,12777:11764874,14306857 +g1,12777:11764875,14306857 +$1,12777:11764875,14306857 +$1,12777:12213141,14306857 +k1,12777:14101234,14306857:1888093 +g1,12777:14428914,14306857 +) +g1,12777:14428914,14306857 +(1,12777:14428914,14306857:4530745,555093,237900 +g1,12777:14756594,14306857 +g1,12777:14756595,14306857 +(1,12777:14756595,14306857:0,452978,115847 +r1,12789:17576844,14306857:2820249,568825,115847 +k1,12777:14756595,14306857:-2820249 +) +(1,12777:14756595,14306857:2820249,452978,115847 +k1,12777:14756595,14306857:3277 +h1,12777:17573567,14306857:0,411205,112570 +) +k1,12777:18631979,14306857:1055135 +g1,12777:18959659,14306857 +) +g1,12777:18959659,14306857 +(1,12777:18959659,14306857:4530745,555093,237900 +g1,12777:19287339,14306857 +g1,12777:19287340,14306857 +(1,12777:19287340,14306857:0,452978,115847 +r1,12789:22107589,14306857:2820249,568825,115847 +k1,12777:19287340,14306857:-2820249 +) +(1,12777:19287340,14306857:2820249,452978,115847 +k1,12777:19287340,14306857:3277 +h1,12777:22104312,14306857:0,411205,112570 +) +k1,12777:23162724,14306857:1055135 +g1,12777:23490404,14306857 +) +g1,12777:23490404,14306857 +(1,12777:23490404,14306857:4530745,555093,237900 +g1,12777:23818084,14306857 +g1,12777:23818085,14306857 +(1,12777:23818085,14306857:0,452978,115847 +r1,12789:26638334,14306857:2820249,568825,115847 +k1,12777:23818085,14306857:-2820249 +) +(1,12777:23818085,14306857:2820249,452978,115847 +k1,12777:23818085,14306857:3277 +h1,12777:26635057,14306857:0,411205,112570 +) +k1,12777:27693469,14306857:1055135 +g1,12777:28021149,14306857 +) +g1,12777:28021149,14306857 +(1,12778:28021149,14306857:4530745,555093,237900 +g1,12777:28348829,14306857 +g1,12777:28348830,14306857 +(1,12777:28348830,14306857:0,452978,115847 +r1,12789:31169079,14306857:2820249,568825,115847 +k1,12777:28348830,14306857:-2820249 +) +(1,12777:28348830,14306857:2820249,452978,115847 +k1,12777:28348830,14306857:3277 +h1,12777:31165802,14306857:0,411205,112570 +) +k1,12778:32224214,14306857:1055135 +g1,12778:32551894,14306857 +) +g1,12778:32551894,14306857 +) +(1,12779:6892271,15099850:25659623,555093,237900 +g1,12778:6892271,15099850 +(1,12778:6892271,15099850:4544923,555093,237900 +r1,12789:6892271,15099850:0,792993,237900 +g1,12778:7219951,15099850 +g1,12778:7219952,15099850 +g1,12778:11109514,15099850 +g1,12778:11437194,15099850 +) +g1,12778:11437194,15099850 +(1,12778:11437194,15099850:2991720,555093,237900 +g1,12778:11764874,15099850 +g1,12778:11764875,15099850 +$1,12778:11764875,15099850 +$1,12778:12423512,15099850 +k1,12778:14101234,15099850:1677722 +g1,12778:14428914,15099850 +) +g1,12778:14428914,15099850 +(1,12778:14428914,15099850:4530745,555093,237900 +g1,12778:14756594,15099850 +g1,12778:14756595,15099850 +(1,12778:14756595,15099850:0,452978,115847 +r1,12789:18631979,15099850:3875384,568825,115847 +k1,12778:14756595,15099850:-3875384 +) +(1,12778:14756595,15099850:3875384,452978,115847 +k1,12778:14756595,15099850:3277 +h1,12778:18628702,15099850:0,411205,112570 +) +g1,12778:18631979,15099850 +g1,12778:18959659,15099850 +) +g1,12778:18959659,15099850 +(1,12778:18959659,15099850:4530745,555093,237900 +g1,12778:19287339,15099850 +g1,12778:19287340,15099850 +(1,12778:19287340,15099850:0,452978,115847 +r1,12789:23162724,15099850:3875384,568825,115847 +k1,12778:19287340,15099850:-3875384 +) +(1,12778:19287340,15099850:3875384,452978,115847 +k1,12778:19287340,15099850:3277 +h1,12778:23159447,15099850:0,411205,112570 +) +g1,12778:23162724,15099850 +g1,12778:23490404,15099850 +) +g1,12778:23490404,15099850 +(1,12778:23490404,15099850:4530745,555093,237900 +g1,12778:23818084,15099850 +g1,12778:23818085,15099850 +(1,12778:23818085,15099850:0,452978,115847 +r1,12789:27693469,15099850:3875384,568825,115847 +k1,12778:23818085,15099850:-3875384 +) +(1,12778:23818085,15099850:3875384,452978,115847 +k1,12778:23818085,15099850:3277 +h1,12778:27690192,15099850:0,411205,112570 +) +g1,12778:27693469,15099850 +g1,12778:28021149,15099850 +) +g1,12778:28021149,15099850 +(1,12779:28021149,15099850:4530745,555093,237900 +g1,12778:28348829,15099850 +g1,12778:28348830,15099850 +(1,12778:28348830,15099850:0,452978,115847 +r1,12789:32224214,15099850:3875384,568825,115847 +k1,12778:28348830,15099850:-3875384 +) +(1,12778:28348830,15099850:3875384,452978,115847 +k1,12778:28348830,15099850:3277 +h1,12778:32220937,15099850:0,411205,112570 +) +g1,12779:32224214,15099850 +g1,12779:32551894,15099850 +) +g1,12779:32551894,15099850 +) +(1,12780:6892271,15892843:25659623,555093,237900 +g1,12779:6892271,15892843 +(1,12779:6892271,15892843:4544923,555093,237900 +r1,12789:6892271,15892843:0,792993,237900 +g1,12779:7219951,15892843 +g1,12779:7219952,15892843 +k1,12779:11109514,15892843:1448346 +g1,12779:11437194,15892843 +) +g1,12779:11437194,15892843 +(1,12779:11437194,15892843:2991720,555093,237900 +g1,12779:11764874,15892843 +k1,12779:14101234,15892843:2336360 +g1,12779:14428914,15892843 +) +g1,12779:14428914,15892843 +(1,12779:14428914,15892843:4530745,555093,237900 +g1,12779:14756594,15892843 +g1,12779:14756595,15892843 +(1,12779:14756595,15892843:0,452978,115847 +r1,12789:17225132,15892843:2468537,568825,115847 +k1,12779:14756595,15892843:-2468537 +) +(1,12779:14756595,15892843:2468537,452978,115847 +k1,12779:14756595,15892843:3277 +h1,12779:17221855,15892843:0,411205,112570 +) +k1,12779:18631979,15892843:1406847 +g1,12779:18959659,15892843 +) +g1,12779:18959659,15892843 +(1,12779:18959659,15892843:4530745,555093,237900 +g1,12779:19287339,15892843 +g1,12779:19287340,15892843 +(1,12779:19287340,15892843:0,452978,115847 +r1,12789:21755877,15892843:2468537,568825,115847 +k1,12779:19287340,15892843:-2468537 +) +(1,12779:19287340,15892843:2468537,452978,115847 +k1,12779:19287340,15892843:3277 +h1,12779:21752600,15892843:0,411205,112570 +) +k1,12779:23162724,15892843:1406847 +g1,12779:23490404,15892843 +) +g1,12779:23490404,15892843 +(1,12779:23490404,15892843:4530745,555093,237900 +g1,12779:23818084,15892843 +g1,12779:23818085,15892843 +(1,12779:23818085,15892843:0,452978,115847 +r1,12789:26286622,15892843:2468537,568825,115847 +k1,12779:23818085,15892843:-2468537 +) +(1,12779:23818085,15892843:2468537,452978,115847 +k1,12779:23818085,15892843:3277 +h1,12779:26283345,15892843:0,411205,112570 +) +k1,12779:27693469,15892843:1406847 +g1,12779:28021149,15892843 +) +g1,12779:28021149,15892843 +(1,12780:28021149,15892843:4530745,555093,237900 +g1,12779:28348829,15892843 +g1,12779:28348830,15892843 +(1,12779:28348830,15892843:0,452978,115847 +r1,12789:30817367,15892843:2468537,568825,115847 +k1,12779:28348830,15892843:-2468537 +) +(1,12779:28348830,15892843:2468537,452978,115847 +k1,12779:28348830,15892843:3277 +h1,12779:30814090,15892843:0,411205,112570 +) +k1,12780:32224214,15892843:1406847 +g1,12780:32551894,15892843 +) +g1,12780:32551894,15892843 +) +(1,12781:6892271,16745959:25659623,615216,237900 +g1,12780:6892271,16745959 +(1,12780:6892271,16745959:4544923,615216,237900 +r1,12789:6892271,16745959:0,792993,237900 +g1,12780:7219951,16745959 +g1,12780:7219952,16745959 +$1,12780:7219952,16745959 +$1,12780:7702952,16745959 +k1,12780:11109514,16745959:631768 +g1,12780:11437194,16745959 +) +g1,12780:11437194,16745959 +(1,12780:11437194,16745959:2991720,615216,237900 +g1,12780:11764874,16745959 +g1,12780:11764875,16745959 +$1,12780:11764875,16745959 +(1,12780:12247875,16470678:311689,339935,0 +) +$1,12780:12559564,16745959 +k1,12780:14101234,16745959:1541670 +g1,12780:14428914,16745959 +) +g1,12780:14428914,16745959 +(1,12780:14428914,16745959:4530745,615216,237900 +g1,12780:14756594,16745959 +g1,12780:14756595,16745959 +(1,12780:14756595,16745959:0,452978,115847 +r1,12789:17576844,16745959:2820249,568825,115847 +k1,12780:14756595,16745959:-2820249 +) +(1,12780:14756595,16745959:2820249,452978,115847 +k1,12780:14756595,16745959:3277 +h1,12780:17573567,16745959:0,411205,112570 +) +k1,12780:18631979,16745959:1055135 +g1,12780:18959659,16745959 +) +g1,12780:18959659,16745959 +(1,12780:18959659,16745959:4530745,615216,237900 +g1,12780:19287339,16745959 +g1,12780:19287340,16745959 +(1,12780:19287340,16745959:0,452978,115847 +r1,12789:22107589,16745959:2820249,568825,115847 +k1,12780:19287340,16745959:-2820249 +) +(1,12780:19287340,16745959:2820249,452978,115847 +k1,12780:19287340,16745959:3277 +h1,12780:22104312,16745959:0,411205,112570 +) +k1,12780:23162724,16745959:1055135 +g1,12780:23490404,16745959 +) +g1,12780:23490404,16745959 +(1,12780:23490404,16745959:4530745,615216,237900 +g1,12780:23818084,16745959 +g1,12780:23818085,16745959 +(1,12780:23818085,16745959:0,452978,115847 +r1,12789:26638334,16745959:2820249,568825,115847 +k1,12780:23818085,16745959:-2820249 +) +(1,12780:23818085,16745959:2820249,452978,115847 +k1,12780:23818085,16745959:3277 +h1,12780:26635057,16745959:0,411205,112570 +) +k1,12780:27693469,16745959:1055135 +g1,12780:28021149,16745959 +) +g1,12780:28021149,16745959 +(1,12781:28021149,16745959:4530745,615216,237900 +g1,12780:28348829,16745959 +g1,12780:28348830,16745959 +(1,12780:28348830,16745959:0,452978,115847 +r1,12789:31169079,16745959:2820249,568825,115847 +k1,12780:28348830,16745959:-2820249 +) +(1,12780:28348830,16745959:2820249,452978,115847 +k1,12780:28348830,16745959:3277 +h1,12780:31165802,16745959:0,411205,112570 +) +k1,12781:32224214,16745959:1055135 +g1,12781:32551894,16745959 +) +g1,12781:32551894,16745959 +) +(1,12782:6892271,17538952:25659623,555093,237900 +g1,12781:6892271,17538952 +(1,12781:6892271,17538952:4544923,555093,237900 +r1,12789:6892271,17538952:0,792993,237900 +g1,12781:7219951,17538952 +g1,12781:7219952,17538952 +k1,12781:11109514,17538952:637010 +g1,12781:11437194,17538952 +) +g1,12781:11437194,17538952 +(1,12781:11437194,17538952:2991720,555093,237900 +g1,12781:11764874,17538952 +k1,12781:14101234,17538952:2336360 +g1,12781:14428914,17538952 +) +g1,12781:14428914,17538952 +(1,12781:14428914,17538952:4530745,555093,237900 +g1,12781:14756594,17538952 +g1,12781:14756595,17538952 +(1,12781:14756595,17538952:0,452978,115847 +r1,12789:17576844,17538952:2820249,568825,115847 +k1,12781:14756595,17538952:-2820249 +) +(1,12781:14756595,17538952:2820249,452978,115847 +k1,12781:14756595,17538952:3277 +h1,12781:17573567,17538952:0,411205,112570 +) +k1,12781:18631979,17538952:1055135 +g1,12781:18959659,17538952 +) +g1,12781:18959659,17538952 +(1,12781:18959659,17538952:4530745,555093,237900 +g1,12781:19287339,17538952 +g1,12781:19287340,17538952 +(1,12781:19287340,17538952:0,452978,115847 +r1,12789:22107589,17538952:2820249,568825,115847 +k1,12781:19287340,17538952:-2820249 +) +(1,12781:19287340,17538952:2820249,452978,115847 +k1,12781:19287340,17538952:3277 +h1,12781:22104312,17538952:0,411205,112570 +) +k1,12781:23162724,17538952:1055135 +g1,12781:23490404,17538952 +) +g1,12781:23490404,17538952 +(1,12781:23490404,17538952:4530745,555093,237900 +g1,12781:23818084,17538952 +g1,12781:23818085,17538952 +(1,12781:23818085,17538952:0,452978,115847 +r1,12789:26638334,17538952:2820249,568825,115847 +k1,12781:23818085,17538952:-2820249 +) +(1,12781:23818085,17538952:2820249,452978,115847 +k1,12781:23818085,17538952:3277 +h1,12781:26635057,17538952:0,411205,112570 +) +k1,12781:27693469,17538952:1055135 +g1,12781:28021149,17538952 +) +g1,12781:28021149,17538952 +(1,12782:28021149,17538952:4530745,555093,237900 +g1,12781:28348829,17538952 +g1,12781:28348830,17538952 +(1,12781:28348830,17538952:0,452978,115847 +r1,12789:31169079,17538952:2820249,568825,115847 +k1,12781:28348830,17538952:-2820249 +) +(1,12781:28348830,17538952:2820249,452978,115847 +k1,12781:28348830,17538952:3277 +h1,12781:31165802,17538952:0,411205,112570 +) +k1,12782:32224214,17538952:1055135 +g1,12782:32551894,17538952 +) +g1,12782:32551894,17538952 +) +(1,12783:6892271,18331945:25659623,555093,237900 +g1,12782:6892271,18331945 +(1,12782:6892271,18331945:4544923,555093,237900 +r1,12789:6892271,18331945:0,792993,237900 +g1,12782:7219951,18331945 +g1,12782:7219952,18331945 +k1,12782:11109514,18331945:1291059 +g1,12782:11437194,18331945 +) +g1,12782:11437194,18331945 +(1,12782:11437194,18331945:2991720,555093,237900 +g1,12782:11764874,18331945 +k1,12782:14101234,18331945:2336360 +g1,12782:14428914,18331945 +) +g1,12782:14428914,18331945 +(1,12782:14428914,18331945:4530745,555093,237900 +g1,12782:14756594,18331945 +g1,12782:14756595,18331945 +(1,12782:14756595,18331945:0,459977,115847 +r1,12789:17225132,18331945:2468537,575824,115847 +k1,12782:14756595,18331945:-2468537 +) +(1,12782:14756595,18331945:2468537,459977,115847 +k1,12782:14756595,18331945:3277 +h1,12782:17221855,18331945:0,411205,112570 +) +k1,12782:18631979,18331945:1406847 +g1,12782:18959659,18331945 +) +g1,12782:18959659,18331945 +(1,12782:18959659,18331945:4530745,555093,237900 +g1,12782:19287339,18331945 +g1,12782:19287340,18331945 +(1,12782:19287340,18331945:0,459977,115847 +r1,12789:21755877,18331945:2468537,575824,115847 +k1,12782:19287340,18331945:-2468537 +) +(1,12782:19287340,18331945:2468537,459977,115847 +k1,12782:19287340,18331945:3277 +h1,12782:21752600,18331945:0,411205,112570 +) +k1,12782:23162724,18331945:1406847 +g1,12782:23490404,18331945 +) +g1,12782:23490404,18331945 +(1,12782:23490404,18331945:4530745,555093,237900 +g1,12782:23818084,18331945 +g1,12782:23818085,18331945 +(1,12782:23818085,18331945:0,459977,115847 +r1,12789:26286622,18331945:2468537,575824,115847 +k1,12782:23818085,18331945:-2468537 +) +(1,12782:23818085,18331945:2468537,459977,115847 +k1,12782:23818085,18331945:3277 +h1,12782:26283345,18331945:0,411205,112570 +) +k1,12782:27693469,18331945:1406847 +g1,12782:28021149,18331945 +) +g1,12782:28021149,18331945 +(1,12783:28021149,18331945:4530745,555093,237900 +g1,12782:28348829,18331945 +g1,12782:28348830,18331945 +(1,12782:28348830,18331945:0,459977,115847 +r1,12789:30817367,18331945:2468537,575824,115847 +k1,12782:28348830,18331945:-2468537 +) +(1,12782:28348830,18331945:2468537,459977,115847 +k1,12782:28348830,18331945:3277 +h1,12782:30814090,18331945:0,411205,112570 +) +k1,12783:32224214,18331945:1406847 +g1,12783:32551894,18331945 +) +g1,12783:32551894,18331945 +) +] +$1,12784:32551894,14579987 +) +g1,12784:32551894,14579987 +) +(1,12784:6693042,18931865:25858852,65536,0 +g1,12784:6693042,18931865 +(1,12784:6693042,18931865:25858852,65536,0 +r1,12789:32551894,18931865:25858852,65536,0 +) +g1,12784:32551894,18931865 +) +] +g1,12784:32551894,18931865 +k1,12784:32583029,18931865:31135 +) +] +] +v1,12752:6630773,20897945:0,393216,0 +(1,12753:6630773,23892145:25952256,3387416,0 +g1,12753:6630773,23892145 +g1,12753:6237557,23892145 +r1,12789:6368629,23892145:131072,3387416,0 +g1,12753:6567858,23892145 +g1,12753:6764466,23892145 +[1,12753:6764466,23892145:25818563,3387416,0 +(1,12753:6764466,21170422:25818563,665693,196608 +(1,12752:6764466,21170422:0,665693,196608 +r1,12789:7868133,21170422:1103667,862301,196608 +k1,12752:6764466,21170422:-1103667 +) +(1,12752:6764466,21170422:1103667,665693,196608 +) +k1,12752:8042763,21170422:174630 +k1,12752:9360692,21170422:327680 +k1,12752:10163158,21170422:174631 +k1,12752:12969059,21170422:174630 +k1,12752:13795117,21170422:174630 +k1,12752:14988833,21170422:174631 +k1,12752:16255948,21170422:174630 +k1,12752:17089871,21170422:174631 +k1,12752:18966471,21170422:174630 +k1,12752:22340569,21170422:174630 +k1,12752:22728167,21170422:174606 +k1,12752:23718066,21170422:174631 +k1,12752:24958967,21170422:174630 +k1,12752:27563672,21170422:174630 +k1,12752:30730022,21170422:174631 +k1,12752:31563944,21170422:174630 +k1,12752:32583029,21170422:0 +) +(1,12753:6764466,22035502:25818563,513147,115847 +k1,12752:8014304,22035502:157353 +k1,12752:8830948,22035502:157352 +k1,12752:9754417,22035502:157353 +k1,12752:10930854,22035502:157352 +k1,12752:14114004,22035502:157353 +k1,12752:16032964,22035502:157352 +k1,12752:16806355,22035502:157353 +k1,12752:18706965,22035502:157352 +h1,12752:19677553,22035502:0,0,0 +k1,12752:20008576,22035502:157353 +k1,12752:23311656,22035502:157352 +(1,12752:23311656,22035502:0,452978,115847 +r1,12789:25780193,22035502:2468537,568825,115847 +k1,12752:23311656,22035502:-2468537 +) +(1,12752:23311656,22035502:2468537,452978,115847 +k1,12752:23311656,22035502:3277 +h1,12752:25776916,22035502:0,411205,112570 +) +k1,12752:25937546,22035502:157353 +k1,12752:28403076,22035502:157352 +k1,12752:29954380,22035502:157353 +k1,12752:32583029,22035502:0 +) +(1,12753:6764466,22900582:25818563,513147,134348 +k1,12752:8382316,22900582:228487 +k1,12752:9293687,22900582:228486 +k1,12752:10614659,22900582:228487 +k1,12752:12039832,22900582:228486 +k1,12752:13657682,22900582:228487 +k1,12752:14537596,22900582:228486 +k1,12752:16108916,22900582:228487 +k1,12752:17731353,22900582:228486 +k1,12752:18978925,22900582:228487 +k1,12752:22425229,22900582:228486 +k1,12752:25853184,22900582:228487 +k1,12752:27890464,22900582:228486 +k1,12752:29138036,22900582:228487 +k1,12752:30754575,22900582:228486 +k1,12752:32583029,22900582:0 +) +(1,12753:6764466,23765662:25818563,513147,126483 +g1,12752:7615123,23765662 +g1,12752:9425882,23765662 +g1,12752:11447667,23765662 +g1,12752:12665981,23765662 +g1,12752:15627553,23765662 +g1,12752:19437816,23765662 +g1,12752:20828490,23765662 +g1,12752:22536358,23765662 +k1,12753:32583029,23765662:8571456 +g1,12753:32583029,23765662 +) +] +g1,12753:32583029,23892145 +) +h1,12753:6630773,23892145:0,0,0 +(1,12756:6630773,24757225:25952256,513147,115847 +h1,12755:6630773,24757225:983040,0,0 +k1,12755:9588887,24757225:158416 +k1,12755:11397499,24757225:158415 +k1,12755:14562051,24757225:158416 +k1,12755:17746264,24757225:158416 +k1,12755:18896240,24757225:158416 +k1,12755:20340471,24757225:158415 +k1,12755:23282856,24757225:158416 +k1,12755:24057310,24757225:158416 +k1,12755:24804239,24757225:158416 +k1,12755:26456220,24757225:158415 +k1,12755:27300798,24757225:158416 +(1,12755:27300798,24757225:0,452978,115847 +r1,12789:32583029,24757225:5282231,568825,115847 +k1,12755:27300798,24757225:-5282231 +) +(1,12755:27300798,24757225:5282231,452978,115847 +k1,12755:27300798,24757225:3277 +h1,12755:32579752,24757225:0,411205,112570 +) +k1,12755:32583029,24757225:0 +) +(1,12756:6630773,25622305:25952256,505283,134348 +k1,12755:8099939,25622305:184660 +k1,12755:11402802,25622305:184660 +k1,12755:12606547,25622305:184660 +k1,12755:14801852,25622305:184660 +k1,12755:17284860,25622305:184660 +k1,12755:18120948,25622305:184660 +k1,12755:19891580,25622305:184661 +k1,12755:22843825,25622305:184660 +k1,12755:24260562,25622305:184660 +k1,12755:26723909,25622305:184660 +h1,12755:28266627,25622305:0,0,0 +k1,12755:28451287,25622305:184660 +k1,12755:29445317,25622305:184660 +k1,12755:31128130,25622305:184660 +h1,12755:32323507,25622305:0,0,0 +k1,12756:32583029,25622305:0 +k1,12756:32583029,25622305:0 +) +(1,12759:6630773,26487385:25952256,505283,134348 +h1,12757:6630773,26487385:983040,0,0 +k1,12757:8534375,26487385:292727 +k1,12757:10578880,26487385:292728 +k1,12757:12742660,26487385:292727 +k1,12757:14205861,26487385:292728 +k1,12757:15631050,26487385:292727 +k1,12757:17472394,26487385:292728 +k1,12757:18416549,26487385:292727 +k1,12757:21497178,26487385:292727 +k1,12757:24874030,26487385:292728 +k1,12757:28674899,26487385:292727 +k1,12757:29729155,26487385:292728 +k1,12757:31914562,26487385:292727 +k1,12757:32583029,26487385:0 +) +(1,12759:6630773,27352465:25952256,513147,11795 +k1,12757:9951220,27352465:176030 +k1,12757:10743287,27352465:176029 +k1,12757:13585322,27352465:176030 +k1,12757:14444237,27352465:176030 +k1,12757:16947450,27352465:176030 +k1,12757:17782771,27352465:176029 +k1,12757:18906452,27352465:176030 +k1,12757:19438342,27352465:176030 +k1,12757:21497221,27352465:176030 +k1,12757:23062613,27352465:176029 +k1,12757:24173186,27352465:176030 +k1,12757:25032101,27352465:176030 +k1,12757:27359678,27352465:176030 +k1,12757:28585594,27352465:176029 +k1,12757:31040311,27352465:176030 +h1,12757:32583029,27352465:0,0,0 +k1,12757:32583029,27352465:0 +) +(1,12759:6630773,28217545:25952256,513147,134348 +k1,12757:7573356,28217545:133213 +k1,12757:9204721,28217545:133212 +h1,12757:10400098,28217545:0,0,0 +k1,12757:10533311,28217545:133213 +k1,12757:11614175,28217545:133213 +k1,12757:13864856,28217545:133213 +k1,12757:14807438,28217545:133212 +k1,12757:16271032,28217545:133213 +k1,12757:17055673,28217545:133213 +k1,12757:19976788,28217545:133213 +k1,12757:23618142,28217545:133212 +k1,12757:24410647,28217545:133213 +k1,12757:25933223,28217545:133213 +k1,12757:28104605,28217545:133212 +k1,12757:28853856,28217545:133213 +k1,12757:30376432,28217545:133213 +k1,12757:32583029,28217545:0 +) +(1,12759:6630773,29082625:25952256,513147,134348 +k1,12757:8542863,29082625:176697 +k1,12757:10153487,29082625:176696 +k1,12757:10745005,29082625:176675 +k1,12757:14121169,29082625:176696 +k1,12757:15489311,29082625:176697 +k1,12757:17944694,29082625:176696 +h1,12757:18915282,29082625:0,0,0 +k1,12757:19091979,29082625:176697 +k1,12757:20078046,29082625:176697 +k1,12757:21752895,29082625:176696 +h1,12757:22948272,29082625:0,0,0 +k1,12757:23124969,29082625:176697 +k1,12757:24249317,29082625:176697 +k1,12757:27812914,29082625:176696 +k1,12757:31015408,29082625:176697 +k1,12757:32583029,29082625:0 +) +(1,12759:6630773,29947705:25952256,505283,134348 +g1,12757:10559656,29947705 +g1,12757:13843009,29947705 +k1,12759:32583029,29947705:18740020 +g1,12759:32583029,29947705 +) +(1,12760:6630773,32778865:25952256,32768,229376 +(1,12760:6630773,32778865:0,32768,229376 +(1,12760:6630773,32778865:5505024,32768,229376 +r1,12789:12135797,32778865:5505024,262144,229376 +) +k1,12760:6630773,32778865:-5505024 +) +(1,12760:6630773,32778865:25952256,32768,0 +r1,12789:32583029,32778865:25952256,32768,0 +) +) +(1,12760:6630773,34410717:25952256,606339,151780 +(1,12760:6630773,34410717:1974731,582746,14155 +g1,12760:6630773,34410717 +g1,12760:8605504,34410717 +) +g1,12760:12371727,34410717 +g1,12760:16979433,34410717 +k1,12760:32583029,34410717:10395843 +g1,12760:32583029,34410717 +) +(1,12765:6630773,35669013:25952256,513147,126483 +k1,12764:9213956,35669013:168181 +k1,12764:12581606,35669013:168182 +k1,12764:16235647,35669013:168181 +k1,12764:20185255,35669013:168181 +k1,12764:23552905,35669013:168182 +k1,12764:26321555,35669013:168181 +k1,12764:29689205,35669013:168182 +k1,12764:31048831,35669013:168181 +k1,12765:32583029,35669013:0 +) +(1,12765:6630773,36534093:25952256,513147,126483 +k1,12764:8576014,36534093:347473 +k1,12764:9871139,36534093:347474 +k1,12764:15254398,36534093:347473 +k1,12764:17518144,36534093:347473 +k1,12764:18857178,36534093:347474 +k1,12764:21988620,36534093:347473 +k1,12764:22952131,36534093:347473 +k1,12764:23714299,36534093:347325 +k1,12764:25009423,36534093:347473 +k1,12764:27588398,36534093:347474 +k1,12764:30698214,36534093:347473 +k1,12765:32583029,36534093:0 +) +(1,12765:6630773,37399173:25952256,505283,134348 +k1,12764:7932668,37399173:236935 +k1,12764:11985765,37399173:236936 +k1,12764:15708560,37399173:236935 +k1,12764:20230894,37399173:236935 +k1,12764:23136455,37399173:236935 +(1,12764:23136455,37399173:0,452978,115847 +r1,12789:29825533,37399173:6689078,568825,115847 +k1,12764:23136455,37399173:-6689078 +) +(1,12764:23136455,37399173:6689078,452978,115847 +k1,12764:23136455,37399173:3277 +h1,12764:29822256,37399173:0,411205,112570 +) +k1,12764:30062469,37399173:236936 +k1,12764:30912166,37399173:236935 +k1,12764:32168186,37399173:236935 +k1,12765:32583029,37399173:0 +) +(1,12765:6630773,38264253:25952256,505283,134348 +k1,12764:9170574,38264253:138562 +k1,12764:10441598,38264253:138562 +k1,12764:12157611,38264253:138561 +k1,12764:12652033,38264253:138562 +k1,12764:14178648,38264253:138562 +k1,12764:15815363,38264253:138562 +k1,12764:19266114,38264253:138561 +k1,12764:20170792,38264253:138562 +k1,12764:21328439,38264253:138562 +k1,12764:25578730,38264253:138562 +k1,12764:28501261,38264253:138562 +k1,12764:29255860,38264253:138561 +k1,12764:30828350,38264253:138562 +k1,12764:31555425,38264253:138562 +k1,12764:32583029,38264253:0 +) +(1,12765:6630773,39129333:25952256,513147,102891 +k1,12764:8307779,39129333:225384 +k1,12764:12488261,39129333:225384 +k1,12764:13732731,39129333:225385 +k1,12764:16720458,39129333:225384 +k1,12764:19971639,39129333:225384 +k1,12764:22568771,39129333:225384 +k1,12764:23813240,39129333:225384 +k1,12764:25692097,39129333:225384 +k1,12764:27852105,39129333:225385 +k1,12764:28693527,39129333:225384 +k1,12764:30427550,39129333:225384 +k1,12765:32583029,39129333:0 +) +(1,12765:6630773,39994413:25952256,513147,115847 +(1,12764:6630773,39994413:0,414482,115847 +r1,12789:8044174,39994413:1413401,530329,115847 +k1,12764:6630773,39994413:-1413401 +) +(1,12764:6630773,39994413:1413401,414482,115847 +k1,12764:6630773,39994413:3277 +h1,12764:8040897,39994413:0,411205,112570 +) +k1,12764:8221758,39994413:177584 +k1,12764:9346994,39994413:177585 +k1,12764:10543663,39994413:177584 +k1,12764:12999934,39994413:177584 +k1,12764:17132617,39994413:177585 +(1,12764:17132617,39994413:0,459977,115847 +r1,12789:18546018,39994413:1413401,575824,115847 +k1,12764:17132617,39994413:-1413401 +) +(1,12764:17132617,39994413:1413401,459977,115847 +k1,12764:17132617,39994413:3277 +h1,12764:18542741,39994413:0,411205,112570 +) +k1,12764:18723602,39994413:177584 +k1,12764:19848837,39994413:177584 +k1,12764:21045506,39994413:177584 +k1,12764:23821594,39994413:177585 +k1,12764:27954276,39994413:177584 +k1,12764:29323305,39994413:177584 +k1,12764:30225718,39994413:177585 +k1,12764:31386342,39994413:177584 +k1,12764:32583029,39994413:0 +) +(1,12765:6630773,40859493:25952256,513147,126483 +k1,12764:8915295,40859493:235211 +k1,12764:9809799,40859493:235212 +k1,12764:11064095,40859493:235211 +k1,12764:13037321,40859493:235211 +k1,12764:16134489,40859493:235211 +k1,12764:17388786,40859493:235212 +k1,12764:19010083,40859493:235211 +k1,12764:19904586,40859493:235211 +k1,12764:22150443,40859493:235212 +k1,12764:25338051,40859493:235211 +(1,12764:25638206,40859493:0,452978,115847 +r1,12789:25996472,40859493:358266,568825,115847 +k1,12764:25638206,40859493:-358266 +) +(1,12764:25638206,40859493:358266,452978,115847 +k1,12764:25638206,40859493:3277 +h1,12764:25993195,40859493:0,411205,112570 +) +k1,12764:26531838,40859493:235211 +k1,12764:27714700,40859493:235211 +k1,12764:30456009,40859493:235212 +(1,12764:30756164,40859493:0,414482,115847 +r1,12789:31114430,40859493:358266,530329,115847 +k1,12764:30756164,40859493:-358266 +) +(1,12764:30756164,40859493:358266,414482,115847 +k1,12764:30756164,40859493:3277 +h1,12764:31111153,40859493:0,411205,112570 +) +k1,12764:31649796,40859493:235211 +k1,12764:32583029,40859493:0 +) +(1,12765:6630773,41724573:25952256,513147,126483 +g1,12764:9604141,41724573 +(1,12764:9904296,41724573:0,414482,115847 +r1,12789:10262562,41724573:358266,530329,115847 +k1,12764:9904296,41724573:-358266 +) +(1,12764:9904296,41724573:358266,414482,115847 +k1,12764:9904296,41724573:3277 +h1,12764:10259285,41724573:0,411205,112570 +) +g1,12764:10761946,41724573 +g1,12764:16411149,41724573 +g1,12764:18700321,41724573 +g1,12764:20090995,41724573 +(1,12764:20391150,41724573:0,414482,115847 +r1,12789:20749416,41724573:358266,530329,115847 +k1,12764:20391150,41724573:-358266 +) +(1,12764:20391150,41724573:358266,414482,115847 +k1,12764:20391150,41724573:3277 +h1,12764:20746139,41724573:0,411205,112570 +) +g1,12764:21248800,41724573 +g1,12764:22395680,41724573 +g1,12764:26080769,41724573 +g1,12764:28230349,41724573 +h1,12764:29200937,41724573:0,0,0 +k1,12765:32583029,41724573:3122570 +g1,12765:32583029,41724573 +) +(1,12788:6630773,42589653:25952256,513147,126483 +h1,12787:6630773,42589653:983040,0,0 +k1,12787:11501081,42589653:307692 +k1,12787:15920501,42589653:307691 +k1,12787:17219753,42589653:307692 +k1,12787:19909022,42589653:307691 +k1,12787:20978242,42589653:307692 +k1,12787:25609343,42589653:307691 +k1,12787:28942832,42589653:307692 +k1,12787:30535029,42589653:307691 +k1,12787:32583029,42589653:0 +) +(1,12788:6630773,43454733:25952256,513147,126483 +k1,12787:10491953,43454733:250146 +k1,12787:12026604,43454733:250145 +k1,12787:14564612,43454733:250146 +k1,12787:15833843,43454733:250146 +k1,12787:17742704,43454733:250145 +k1,12787:19861937,43454733:250146 +k1,12787:21303528,43454733:250146 +k1,12787:24283904,43454733:250146 +k1,12787:25161884,43454733:250145 +k1,12787:26431115,43454733:250146 +k1,12787:28048342,43454733:250146 +k1,12787:28957779,43454733:250145 +k1,12787:30227010,43454733:250146 +k1,12787:32583029,43454733:0 +) +(1,12788:6630773,44319813:25952256,505283,134348 +k1,12787:10790561,44319813:204690 +k1,12787:12691978,44319813:204690 +k1,12787:16507701,44319813:204689 +k1,12787:17703951,44319813:204690 +k1,12787:18927726,44319813:204690 +k1,12787:20903854,44319813:204690 +(1,12787:21110948,44319813:0,414482,115847 +r1,12789:22524349,44319813:1413401,530329,115847 +k1,12787:21110948,44319813:-1413401 +) +(1,12787:21110948,44319813:1413401,414482,115847 +k1,12787:21110948,44319813:3277 +h1,12787:22521072,44319813:0,411205,112570 +) +k1,12787:22936133,44319813:204690 +k1,12787:26624061,44319813:204689 +k1,12787:27847836,44319813:204690 +k1,12787:30609085,44319813:204690 +k1,12787:32583029,44319813:0 +) +(1,12788:6630773,45184893:25952256,513147,134348 +k1,12787:8059440,45184893:237222 +k1,12787:11416830,45184893:237221 +k1,12787:14810921,45184893:237222 +(1,12787:15018015,45184893:0,452978,115847 +r1,12789:15727993,45184893:709978,568825,115847 +k1,12787:15018015,45184893:-709978 +) +(1,12787:15018015,45184893:709978,452978,115847 +k1,12787:15018015,45184893:3277 +h1,12787:15724716,45184893:0,411205,112570 +) +k1,12787:16172308,45184893:237221 +k1,12787:19892769,45184893:237222 +k1,12787:21149076,45184893:237222 +k1,12787:23549640,45184893:237221 +k1,12787:25380698,45184893:237222 +k1,12787:27185540,45184893:237221 +k1,12787:28441847,45184893:237222 +k1,12787:30667430,45184893:237221 +k1,12787:31563944,45184893:237222 +k1,12787:32583029,45184893:0 +) +] +(1,12789:32583029,45706769:0,0,0 +g1,12789:32583029,45706769 +) +) +] +(1,12789:6630773,47279633:25952256,0,0 +h1,12789:6630773,47279633:25952256,0,0 +) +] +(1,12789:4262630,4025873:0,0,0 +[1,12789:-473656,4025873:0,0,0 +(1,12789:-473656,-710413:0,0,0 +(1,12789:-473656,-710413:0,0,0 +g1,12789:-473656,-710413 +) +g1,12789:-473656,-710413 +) +] +) +] +!43392 +}205 Input:2142:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2143:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2144:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2145:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2146:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2147:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{205 -[1,12847:4262630,47279633:28320399,43253760,0 -(1,12847:4262630,4025873:0,0,0 -[1,12847:-473656,4025873:0,0,0 -(1,12847:-473656,-710413:0,0,0 -(1,12847:-473656,-644877:0,0,0 -k1,12847:-473656,-644877:-65536 +{206 +[1,12845:4262630,47279633:28320399,43253760,0 +(1,12845:4262630,4025873:0,0,0 +[1,12845:-473656,4025873:0,0,0 +(1,12845:-473656,-710413:0,0,0 +(1,12845:-473656,-644877:0,0,0 +k1,12845:-473656,-644877:-65536 ) -(1,12847:-473656,4736287:0,0,0 -k1,12847:-473656,4736287:5209943 +(1,12845:-473656,4736287:0,0,0 +k1,12845:-473656,4736287:5209943 ) -g1,12847:-473656,-710413 +g1,12845:-473656,-710413 ) ] ) -[1,12847:6630773,47279633:25952256,43253760,0 -[1,12847:6630773,4812305:25952256,786432,0 -(1,12847:6630773,4812305:25952256,513147,126483 -(1,12847:6630773,4812305:25952256,513147,126483 -g1,12847:3078558,4812305 -[1,12847:3078558,4812305:0,0,0 -(1,12847:3078558,2439708:0,1703936,0 -k1,12847:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12847:2537886,2439708:1179648,16384,0 +[1,12845:6630773,47279633:25952256,43253760,0 +[1,12845:6630773,4812305:25952256,786432,0 +(1,12845:6630773,4812305:25952256,513147,126483 +(1,12845:6630773,4812305:25952256,513147,126483 +g1,12845:3078558,4812305 +[1,12845:3078558,4812305:0,0,0 +(1,12845:3078558,2439708:0,1703936,0 +k1,12845:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12845:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12847:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12845:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12847:3078558,4812305:0,0,0 -(1,12847:3078558,2439708:0,1703936,0 -g1,12847:29030814,2439708 -g1,12847:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12847:36151628,1915420:16384,1179648,0 +[1,12845:3078558,4812305:0,0,0 +(1,12845:3078558,2439708:0,1703936,0 +g1,12845:29030814,2439708 +g1,12845:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12845:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12847:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12845:37855564,2439708:1179648,16384,0 ) ) -k1,12847:3078556,2439708:-34777008 +k1,12845:3078556,2439708:-34777008 ) ] -[1,12847:3078558,4812305:0,0,0 -(1,12847:3078558,49800853:0,16384,2228224 -k1,12847:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12847:2537886,49800853:1179648,16384,0 +[1,12845:3078558,4812305:0,0,0 +(1,12845:3078558,49800853:0,16384,2228224 +k1,12845:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12845:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12847:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12845:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,12847:3078558,4812305:0,0,0 -(1,12847:3078558,49800853:0,16384,2228224 -g1,12847:29030814,49800853 -g1,12847:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12847:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12847:37855564,49800853:1179648,16384,0 -) -) -k1,12847:3078556,49800853:-34777008 -) -] -g1,12847:6630773,4812305 -k1,12847:19575446,4812305:11749296 -g1,12847:21198117,4812305 -g1,12847:21985204,4812305 -g1,12847:24539797,4812305 -g1,12847:25949476,4812305 -g1,12847:28728857,4812305 -g1,12847:29852144,4812305 -) -) -] -[1,12847:6630773,45706769:25952256,40108032,0 -(1,12847:6630773,45706769:25952256,40108032,0 -(1,12847:6630773,45706769:0,0,0 -g1,12847:6630773,45706769 -) -[1,12847:6630773,45706769:25952256,40108032,0 -(1,12790:6630773,6254097:25952256,513147,95026 -k1,12789:10762937,6254097:177066 -k1,12789:12136690,6254097:177066 -k1,12789:13676250,6254097:177066 -k1,12789:16615659,6254097:177066 -k1,12789:19818522,6254097:177066 -k1,12789:21738847,6254097:177067 -k1,12789:22531951,6254097:177066 -k1,12789:24594488,6254097:177066 -k1,12789:26782199,6254097:177066 -k1,12789:27950825,6254097:177066 -k1,12789:31356850,6254097:177066 -k1,12789:32583029,6254097:0 -) -(1,12790:6630773,7119177:25952256,505283,134348 -g1,12789:10334867,7119177 -g1,12789:11725541,7119177 -g1,12789:13810241,7119177 -g1,12789:16020115,7119177 -g1,12789:17210904,7119177 -g1,12789:20171165,7119177 -g1,12789:21056556,7119177 -g1,12789:24658414,7119177 -g1,12789:26083822,7119177 -g1,12789:28420835,7119177 -k1,12790:32583029,7119177:1863847 -g1,12790:32583029,7119177 -) -(1,12792:6630773,7984257:25952256,513147,126483 -h1,12791:6630773,7984257:983040,0,0 -k1,12791:8503797,7984257:262149 -k1,12791:10314562,7984257:262149 -k1,12791:12892098,7984257:262149 -k1,12791:13367175,7984257:262085 -k1,12791:14721809,7984257:262149 -k1,12791:16003043,7984257:262149 -k1,12791:18621211,7984257:262149 -k1,12791:22664787,7984257:262149 -k1,12791:23613098,7984257:262149 -k1,12791:24645949,7984257:262148 -k1,12791:27743185,7984257:262149 -k1,12791:29077503,7984257:262149 -k1,12791:30733603,7984257:262149 -k1,12792:32583029,7984257:0 -) -(1,12792:6630773,8849337:25952256,513147,126483 -k1,12791:8614416,8849337:210239 -k1,12791:9440694,8849337:210240 -k1,12791:11159572,8849337:210239 -k1,12791:15154515,8849337:210239 -k1,12791:16383840,8849337:210240 -k1,12791:19619876,8849337:210239 -k1,12791:20777766,8849337:210239 -k1,12791:22689975,8849337:210239 -k1,12791:26302189,8849337:210240 -k1,12791:30624157,8849337:210239 -k1,12791:32583029,8849337:0 -) -(1,12792:6630773,9714417:25952256,505283,134348 -g1,12791:7185862,9714417 -g1,12791:9587101,9714417 -g1,12791:12167253,9714417 -k1,12792:32583029,9714417:18022402 -g1,12792:32583029,9714417 -) -(1,12793:6630773,11831235:25952256,564462,139132 -(1,12793:6630773,11831235:2450326,534184,12975 -g1,12793:6630773,11831235 -g1,12793:9081099,11831235 -) -g1,12793:12118955,11831235 -g1,12793:14118721,11831235 -k1,12793:32583029,11831235:14360968 -g1,12793:32583029,11831235 -) -(1,12797:6630773,12909306:25952256,513147,134348 -k1,12795:7613245,12909306:175069 -k1,12795:9812065,12909306:175068 -k1,12795:10342994,12909306:175069 -k1,12795:12391081,12909306:175068 -k1,12795:14254357,12909306:175069 -k1,12795:15997046,12909306:175068 -k1,12795:17191200,12909306:175069 -k1,12795:21147695,12909306:175068 -k1,12795:23064056,12909306:175069 -k1,12795:24107476,12909306:175068 -k1,12795:25719750,12909306:175069 -k1,12795:26250678,12909306:175068 -k1,12795:28403624,12909306:175069 -k1,12795:29237984,12909306:175068 -k1,12795:31426319,12909306:175069 -k1,12795:32583029,12909306:0 -) -(1,12797:6630773,13594161:25952256,513147,134348 -g1,12795:7516164,13594161 -g1,12795:8486096,13594161 -g1,12795:11757653,13594161 -g1,12795:12904533,13594161 -(1,12795:12904533,13594161:0,414482,115847 -r1,12847:13262799,13594161:358266,530329,115847 -k1,12795:12904533,13594161:-358266 -) -(1,12795:12904533,13594161:358266,414482,115847 -k1,12795:12904533,13594161:3277 -h1,12795:13259522,13594161:0,411205,112570 -) -g1,12795:13635698,13594161 -k1,12797:32583030,13594161:18947332 -g1,12797:32583030,13594161 -) -v1,12797:6630773,14279016:0,393216,0 -(1,12804:6630773,15402596:25952256,1516796,196608 -g1,12804:6630773,15402596 -g1,12804:6630773,15402596 -g1,12804:6434165,15402596 -(1,12804:6434165,15402596:0,1516796,196608 -r1,12847:32779637,15402596:26345472,1713404,196608 -k1,12804:6434165,15402596:-26345472 -) -(1,12804:6434165,15402596:26345472,1516796,196608 -[1,12804:6630773,15402596:25952256,1320188,0 -(1,12799:6630773,14506847:25952256,424439,86428 -(1,12798:6630773,14506847:0,0,0 -g1,12798:6630773,14506847 -g1,12798:6630773,14506847 -g1,12798:6303093,14506847 -(1,12798:6303093,14506847:0,0,0 -) -g1,12798:6630773,14506847 -) -k1,12799:6630773,14506847:0 -g1,12799:9286405,14506847 -g1,12799:9950313,14506847 -g1,12799:11610083,14506847 -g1,12799:13269853,14506847 -g1,12799:13933761,14506847 -g1,12799:14929623,14506847 -g1,12799:15925485,14506847 -g1,12799:16589393,14506847 -h1,12799:17917209,14506847:0,0,0 -k1,12799:32583029,14506847:14665820 -g1,12799:32583029,14506847 -) -(1,12803:6630773,15322774:25952256,424439,79822 -(1,12801:6630773,15322774:0,0,0 -g1,12801:6630773,15322774 -g1,12801:6630773,15322774 -g1,12801:6303093,15322774 -(1,12801:6303093,15322774:0,0,0 -) -g1,12801:6630773,15322774 -) -g1,12803:7626635,15322774 -g1,12803:8954451,15322774 -h1,12803:11942036,15322774:0,0,0 -k1,12803:32583028,15322774:20640992 -g1,12803:32583028,15322774 -) -] -) -g1,12804:32583029,15402596 -g1,12804:6630773,15402596 -g1,12804:6630773,15402596 -g1,12804:32583029,15402596 -g1,12804:32583029,15402596 -) -h1,12804:6630773,15599204:0,0,0 -(1,12808:6630773,16464284:25952256,505283,134348 -h1,12807:6630773,16464284:983040,0,0 -g1,12807:8642072,16464284 -g1,12807:10865053,16464284 -g1,12807:13735529,16464284 -g1,12807:15945403,16464284 -g1,12807:17012984,16464284 -g1,12807:18316495,16464284 -g1,12807:19952929,16464284 -g1,12807:20508018,16464284 -g1,12807:22731654,16464284 -g1,12807:24908760,16464284 -g1,12807:25794151,16464284 -g1,12807:26764083,16464284 -k1,12808:32583029,16464284:2694190 -g1,12808:32583029,16464284 -) -v1,12810:6630773,17149139:0,393216,0 -(1,12817:6630773,18279325:25952256,1523402,196608 -g1,12817:6630773,18279325 -g1,12817:6630773,18279325 -g1,12817:6434165,18279325 -(1,12817:6434165,18279325:0,1523402,196608 -r1,12847:32779637,18279325:26345472,1720010,196608 -k1,12817:6434165,18279325:-26345472 -) -(1,12817:6434165,18279325:26345472,1523402,196608 -[1,12817:6630773,18279325:25952256,1326794,0 -(1,12812:6630773,17383576:25952256,431045,112852 -(1,12811:6630773,17383576:0,0,0 -g1,12811:6630773,17383576 -g1,12811:6630773,17383576 -g1,12811:6303093,17383576 -(1,12811:6303093,17383576:0,0,0 -) -g1,12811:6630773,17383576 -) -k1,12812:6630773,17383576:0 -g1,12812:9286405,17383576 -g1,12812:9950313,17383576 -g1,12812:12937899,17383576 -g1,12812:13601807,17383576 -g1,12812:14929623,17383576 -g1,12812:15925485,17383576 -g1,12812:16589393,17383576 -g1,12812:17585255,17383576 -g1,12812:21236748,17383576 -g1,12812:21900656,17383576 -g1,12812:23228472,17383576 -g1,12812:24888242,17383576 -g1,12812:25552150,17383576 -g1,12812:26548012,17383576 -g1,12812:27543874,17383576 -g1,12812:28207782,17383576 -h1,12812:29535598,17383576:0,0,0 -k1,12812:32583029,17383576:3047431 -g1,12812:32583029,17383576 -) -(1,12816:6630773,18199503:25952256,424439,79822 -(1,12814:6630773,18199503:0,0,0 -g1,12814:6630773,18199503 -g1,12814:6630773,18199503 -g1,12814:6303093,18199503 -(1,12814:6303093,18199503:0,0,0 -) -g1,12814:6630773,18199503 -) -g1,12816:7626635,18199503 -g1,12816:8954451,18199503 -g1,12816:13269852,18199503 -g1,12816:17585253,18199503 -g1,12816:21900654,18199503 -g1,12816:26216055,18199503 -h1,12816:30199502,18199503:0,0,0 -k1,12816:32583029,18199503:2383527 -g1,12816:32583029,18199503 -) -] -) -g1,12817:32583029,18279325 -g1,12817:6630773,18279325 -g1,12817:6630773,18279325 -g1,12817:32583029,18279325 -g1,12817:32583029,18279325 -) -h1,12817:6630773,18475933:0,0,0 -(1,12821:6630773,19341013:25952256,513147,126483 -h1,12820:6630773,19341013:983040,0,0 -k1,12820:9288834,19341013:195873 -k1,12820:10281625,19341013:195873 -k1,12820:12771258,19341013:195873 -k1,12820:15175694,19341013:195873 -k1,12820:17382212,19341013:195873 -k1,12820:18525736,19341013:195873 -$1,12820:18525736,19341013 -$1,12820:19028397,19341013 -k1,12820:19224270,19341013:195873 -k1,12820:20288495,19341013:195873 -k1,12820:21588650,19341013:195873 -k1,12820:23061820,19341013:195873 -k1,12820:23613553,19341013:195873 -k1,12820:24977933,19341013:195873 -(1,12820:25185027,19341013:0,452978,115847 -r1,12847:28708699,19341013:3523672,568825,115847 -k1,12820:25185027,19341013:-3523672 -) -(1,12820:25185027,19341013:3523672,452978,115847 -g1,12820:26946863,19341013 -g1,12820:27650287,19341013 -h1,12820:28705422,19341013:0,411205,112570 -) -k1,12820:29111666,19341013:195873 -k1,12820:30592045,19341013:195873 -k1,12820:32583029,19341013:0 -) -(1,12821:6630773,20206093:25952256,513147,134348 -k1,12820:8121343,20206093:206064 -k1,12820:9346492,20206093:206064 -k1,12820:10349474,20206093:206064 -k1,12820:13708475,20206093:206064 -k1,12820:15303902,20206093:206064 -k1,12820:17528475,20206093:206064 -k1,12820:19014456,20206093:206063 -k1,12820:20239605,20206093:206064 -k1,12820:22812829,20206093:206064 -k1,12820:23678185,20206093:206064 -k1,12820:24240109,20206093:206064 -k1,12820:28016574,20206093:206064 -k1,12820:30137600,20206093:206064 -k1,12820:31297213,20206093:206064 -k1,12820:32583029,20206093:0 -) -(1,12821:6630773,21071173:25952256,513147,134348 -g1,12820:8027345,21071173 -g1,12820:8582434,21071173 -g1,12820:10469870,21071173 -g1,12820:13320030,21071173 -g1,12820:14538344,21071173 -g1,12820:16417916,21071173 -g1,12820:17564796,21071173 -$1,12820:17564796,21071173 -g1,12820:18249517,21071173 -g1,12820:18999774,21071173 -$1,12820:19986091,21071173 -g1,12820:20185320,21071173 -g1,12820:23613508,21071173 -k1,12821:32583029,21071173:7061768 -g1,12821:32583029,21071173 -) -v1,12823:6630773,21756028:0,393216,0 -(1,12832:6630773,25520986:25952256,4158174,196608 -g1,12832:6630773,25520986 -g1,12832:6630773,25520986 -g1,12832:6434165,25520986 -(1,12832:6434165,25520986:0,4158174,196608 -r1,12847:32779637,25520986:26345472,4354782,196608 -k1,12832:6434165,25520986:-26345472 -) -(1,12832:6434165,25520986:26345472,4158174,196608 -[1,12832:6630773,25520986:25952256,3961566,0 -(1,12825:6630773,21990465:25952256,431045,112852 -(1,12824:6630773,21990465:0,0,0 -g1,12824:6630773,21990465 -g1,12824:6630773,21990465 -g1,12824:6303093,21990465 -(1,12824:6303093,21990465:0,0,0 -) -g1,12824:6630773,21990465 -) -g1,12825:8290543,21990465 -g1,12825:9286405,21990465 -g1,12825:12273991,21990465 -g1,12825:12937899,21990465 -g1,12825:14265715,21990465 -g1,12825:15261577,21990465 -g1,12825:15925485,21990465 -g1,12825:16921347,21990465 -g1,12825:20572840,21990465 -g1,12825:21236748,21990465 -h1,12825:22232610,21990465:0,0,0 -k1,12825:32583029,21990465:10350419 -g1,12825:32583029,21990465 -) -(1,12826:6630773,22675320:25952256,0,0 -h1,12826:6630773,22675320:0,0,0 -h1,12826:6630773,22675320:0,0,0 -k1,12826:32583029,22675320:25952256 -g1,12826:32583029,22675320 -) -(1,12827:6630773,23360175:25952256,431045,86428 -h1,12827:6630773,23360175:0,0,0 -g1,12827:7958589,23360175 -g1,12827:8954451,23360175 -g1,12827:13269852,23360175 -g1,12827:13933760,23360175 -k1,12827:13933760,23360175:0 -h1,12827:15593530,23360175:0,0,0 -k1,12827:32583030,23360175:16989500 -g1,12827:32583030,23360175 -) -(1,12828:6630773,24045030:25952256,424439,106246 -h1,12828:6630773,24045030:0,0,0 -g1,12828:6962727,24045030 -g1,12828:7294681,24045030 -g1,12828:7626635,24045030 -g1,12828:7958589,24045030 -g1,12828:8290543,24045030 -g1,12828:8622497,24045030 -g1,12828:8954451,24045030 -g1,12828:9286405,24045030 -g1,12828:9618359,24045030 -g1,12828:9950313,24045030 -g1,12828:10282267,24045030 -g1,12828:10614221,24045030 -g1,12828:10946175,24045030 -g1,12828:11278129,24045030 -g1,12828:11610083,24045030 -g1,12828:11942037,24045030 -g1,12828:12273991,24045030 -g1,12828:12605945,24045030 -g1,12828:13269853,24045030 -g1,12828:13933761,24045030 -g1,12828:16589393,24045030 -g1,12828:17253301,24045030 -g1,12828:19245025,24045030 -g1,12828:20904795,24045030 -g1,12828:21568703,24045030 -g1,12828:22564565,24045030 -g1,12828:23560427,24045030 -g1,12828:24224335,24045030 -h1,12828:25220197,24045030:0,0,0 -k1,12828:32583029,24045030:7362832 -g1,12828:32583029,24045030 -) -(1,12829:6630773,24729885:25952256,431045,106246 -h1,12829:6630773,24729885:0,0,0 -g1,12829:9950313,24729885 -g1,12829:11610083,24729885 -g1,12829:12273991,24729885 -g1,12829:13933761,24729885 -g1,12829:15593531,24729885 -g1,12829:16257439,24729885 -g1,12829:17917209,24729885 -g1,12829:19576979,24729885 -g1,12829:20240887,24729885 -g1,12829:21900657,24729885 -g1,12829:23560427,24729885 -g1,12829:24224335,24729885 -h1,12829:26548013,24729885:0,0,0 -k1,12829:32583029,24729885:6035016 -g1,12829:32583029,24729885 -) -(1,12830:6630773,25414740:25952256,424439,106246 -h1,12830:6630773,25414740:0,0,0 -g1,12830:9618359,25414740 -g1,12830:10282267,25414740 -g1,12830:11278129,25414740 -g1,12830:11942037,25414740 -g1,12830:12605945,25414740 -g1,12830:15261577,25414740 -g1,12830:15925485,25414740 -g1,12830:16921347,25414740 -g1,12830:18581117,25414740 -g1,12830:19245025,25414740 -g1,12830:20240887,25414740 -g1,12830:21236749,25414740 -g1,12830:21900657,25414740 -h1,12830:22896519,25414740:0,0,0 -k1,12830:32583029,25414740:9686510 -g1,12830:32583029,25414740 -) -] -) -g1,12832:32583029,25520986 -g1,12832:6630773,25520986 -g1,12832:6630773,25520986 -g1,12832:32583029,25520986 -g1,12832:32583029,25520986 -) -h1,12832:6630773,25717594:0,0,0 -(1,12835:6630773,38629234:25952256,12846104,0 -k1,12835:13183781,38629234:6553008 -h1,12834:13183781,38629234:0,0,0 -(1,12834:13183781,38629234:12846240,12846104,0 -(1,12834:13183781,38629234:12846136,12846136,0 -(1,12834:13183781,38629234:12846136,12846136,0 -(1,12834:13183781,38629234:0,12846136,0 -(1,12834:13183781,38629234:0,18945146,0 -(1,12834:13183781,38629234:18945146,18945146,0 -) -k1,12834:13183781,38629234:-18945146 -) -) -g1,12834:26029917,38629234 -) -) -) -g1,12835:26030021,38629234 -k1,12835:32583029,38629234:6553008 -) -(1,12841:6630773,40746052:25952256,564462,139132 -(1,12841:6630773,40746052:2450326,534184,12975 -g1,12841:6630773,40746052 -g1,12841:9081099,40746052 -) -g1,12841:13850548,40746052 -g1,12841:15850314,40746052 -g1,12841:20178574,40746052 -g1,12841:21745802,40746052 -k1,12841:32583029,40746052:7500199 -g1,12841:32583029,40746052 -) -(1,12845:6630773,42004348:25952256,505283,134348 -k1,12844:8314998,42004348:235224 -k1,12844:8906081,42004348:235223 -k1,12844:11279089,42004348:235224 -k1,12844:14114782,42004348:235224 -k1,12844:16204019,42004348:235223 -k1,12844:16897340,42004348:235224 -k1,12844:17664061,42004348:235224 -k1,12844:20529245,42004348:235224 -k1,12844:21415896,42004348:235223 -k1,12844:23037862,42004348:235224 -k1,12844:24108670,42004348:235224 -k1,12844:25362978,42004348:235223 -k1,12844:30221767,42004348:235224 -$1,12844:30221767,42004348 -$1,12844:30689694,42004348 -k1,12844:32583029,42004348:0 -) -(1,12845:6630773,42869428:25952256,513147,134348 -k1,12844:8485794,42869428:287400 -k1,12844:9792280,42869428:287401 -k1,12844:12435699,42869428:287400 -k1,12844:16678198,42869428:287401 -k1,12844:18035146,42869428:287400 -k1,12844:19341631,42869428:287400 -k1,12844:20976452,42869428:287401 -k1,12844:23149978,42869428:287400 -k1,12844:24456464,42869428:287401 -k1,12844:26658826,42869428:287400 -k1,12844:28802206,42869428:287400 -k1,12844:29741035,42869428:287401 -k1,12844:31047520,42869428:287400 -k1,12844:32583029,42869428:0 -) -(1,12845:6630773,43734508:25952256,513147,134348 -k1,12844:7572731,43734508:259073 -k1,12844:8483231,43734508:259072 -k1,12844:9761389,43734508:259073 -k1,12844:11094597,43734508:259073 -k1,12844:12012962,43734508:259073 -k1,12844:12627894,43734508:259072 -k1,12844:14581728,43734508:259073 -k1,12844:16521144,43734508:259073 -k1,12844:17447372,43734508:259072 -(1,12844:17447372,43734508:0,414482,115847 -r1,12847:17805638,43734508:358266,530329,115847 -k1,12844:17447372,43734508:-358266 -) -(1,12844:17447372,43734508:358266,414482,115847 -k1,12844:17447372,43734508:3277 -h1,12844:17802361,43734508:0,411205,112570 -) -k1,12844:18064711,43734508:259073 -k1,12844:19292406,43734508:259073 -k1,12844:21990729,43734508:259073 -k1,12844:25735661,43734508:259072 -k1,12844:27013819,43734508:259073 -k1,12844:29029257,43734508:259073 -k1,12844:29971214,43734508:259072 -k1,12844:31304422,43734508:259073 -k1,12844:32583029,43734508:0 -) -(1,12845:6630773,44599588:25952256,505283,134348 -k1,12844:8630407,44599588:246546 -k1,12844:11463660,44599588:246547 -k1,12844:13104157,44599588:246546 -k1,12844:17596125,44599588:246546 -k1,12844:18861757,44599588:246547 -k1,12844:21882442,44599588:246546 -k1,12844:23867003,44599588:246546 -k1,12844:25304994,44599588:246546 -k1,12844:28395148,44599588:246547 -k1,12844:31591469,44599588:246546 -k1,12844:32583029,44599588:0 -) -(1,12845:6630773,45464668:25952256,513147,126483 -k1,12844:7421628,45464668:174817 -k1,12844:9198145,45464668:174817 -k1,12844:11070345,45464668:174818 -k1,12844:14453805,45464668:174817 -k1,12844:16196243,45464668:174817 -k1,12844:17390145,45464668:174817 -k1,12844:19218436,45464668:174818 -k1,12844:23465005,45464668:174817 -k1,12844:25525948,45464668:174817 -k1,12844:26719850,45464668:174817 -k1,12844:28134609,45464668:174818 -k1,12844:31955194,45464668:174817 -k1,12844:32583029,45464668:0 -) -] -(1,12847:32583029,45706769:0,0,0 -g1,12847:32583029,45706769 -) -) -] -(1,12847:6630773,47279633:25952256,0,0 -h1,12847:6630773,47279633:25952256,0,0 -) -] -(1,12847:4262630,4025873:0,0,0 -[1,12847:-473656,4025873:0,0,0 -(1,12847:-473656,-710413:0,0,0 -(1,12847:-473656,-710413:0,0,0 -g1,12847:-473656,-710413 -) -g1,12847:-473656,-710413 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,12845:3078558,4812305:0,0,0 +(1,12845:3078558,49800853:0,16384,2228224 +g1,12845:29030814,49800853 +g1,12845:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12845:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12845:37855564,49800853:1179648,16384,0 +) +) +k1,12845:3078556,49800853:-34777008 +) +] +g1,12845:6630773,4812305 +k1,12845:19575446,4812305:11749296 +g1,12845:21198117,4812305 +g1,12845:21985204,4812305 +g1,12845:24539797,4812305 +g1,12845:25949476,4812305 +g1,12845:28728857,4812305 +g1,12845:29852144,4812305 +) +) +] +[1,12845:6630773,45706769:25952256,40108032,0 +(1,12845:6630773,45706769:25952256,40108032,0 +(1,12845:6630773,45706769:0,0,0 +g1,12845:6630773,45706769 +) +[1,12845:6630773,45706769:25952256,40108032,0 +(1,12788:6630773,6254097:25952256,513147,95026 +k1,12787:10762937,6254097:177066 +k1,12787:12136690,6254097:177066 +k1,12787:13676250,6254097:177066 +k1,12787:16615659,6254097:177066 +k1,12787:19818522,6254097:177066 +k1,12787:21738847,6254097:177067 +k1,12787:22531951,6254097:177066 +k1,12787:24594488,6254097:177066 +k1,12787:26782199,6254097:177066 +k1,12787:27950825,6254097:177066 +k1,12787:31356850,6254097:177066 +k1,12787:32583029,6254097:0 +) +(1,12788:6630773,7119177:25952256,505283,134348 +g1,12787:10334867,7119177 +g1,12787:11725541,7119177 +g1,12787:13810241,7119177 +g1,12787:16020115,7119177 +g1,12787:17210904,7119177 +g1,12787:20171165,7119177 +g1,12787:21056556,7119177 +g1,12787:24658414,7119177 +g1,12787:26083822,7119177 +g1,12787:28420835,7119177 +k1,12788:32583029,7119177:1863847 +g1,12788:32583029,7119177 +) +(1,12790:6630773,7984257:25952256,513147,126483 +h1,12789:6630773,7984257:983040,0,0 +k1,12789:8490437,7984257:248789 +k1,12789:10287841,7984257:248788 +k1,12789:13025687,7984257:248789 +k1,12789:13487418,7984257:248739 +k1,12789:14828691,7984257:248788 +k1,12789:16096565,7984257:248789 +k1,12789:18701372,7984257:248788 +k1,12789:22731588,7984257:248789 +k1,12789:23666539,7984257:248789 +k1,12789:24686030,7984257:248788 +k1,12789:27769906,7984257:248789 +k1,12789:29090863,7984257:248788 +k1,12789:30733603,7984257:248789 +k1,12790:32583029,7984257:0 +) +(1,12790:6630773,8849337:25952256,513147,126483 +k1,12789:8614416,8849337:210239 +k1,12789:9440694,8849337:210240 +k1,12789:11159572,8849337:210239 +k1,12789:15154515,8849337:210239 +k1,12789:16383840,8849337:210240 +k1,12789:19619876,8849337:210239 +k1,12789:20777766,8849337:210239 +k1,12789:22689975,8849337:210239 +k1,12789:26302189,8849337:210240 +k1,12789:30624157,8849337:210239 +k1,12789:32583029,8849337:0 +) +(1,12790:6630773,9714417:25952256,505283,134348 +g1,12789:7185862,9714417 +g1,12789:9587101,9714417 +g1,12789:12167253,9714417 +k1,12790:32583029,9714417:18022402 +g1,12790:32583029,9714417 +) +(1,12791:6630773,11831235:25952256,564462,139132 +(1,12791:6630773,11831235:2450326,534184,12975 +g1,12791:6630773,11831235 +g1,12791:9081099,11831235 +) +g1,12791:12118955,11831235 +g1,12791:14118721,11831235 +k1,12791:32583029,11831235:14360968 +g1,12791:32583029,11831235 +) +(1,12795:6630773,12909306:25952256,513147,134348 +k1,12793:7613245,12909306:175069 +k1,12793:9812065,12909306:175068 +k1,12793:10342994,12909306:175069 +k1,12793:12391081,12909306:175068 +k1,12793:14254357,12909306:175069 +k1,12793:15997046,12909306:175068 +k1,12793:17191200,12909306:175069 +k1,12793:21147695,12909306:175068 +k1,12793:23064056,12909306:175069 +k1,12793:24107476,12909306:175068 +k1,12793:25719750,12909306:175069 +k1,12793:26250678,12909306:175068 +k1,12793:28403624,12909306:175069 +k1,12793:29237984,12909306:175068 +k1,12793:31426319,12909306:175069 +k1,12793:32583029,12909306:0 +) +(1,12795:6630773,13594161:25952256,513147,134348 +g1,12793:7516164,13594161 +g1,12793:8486096,13594161 +g1,12793:11757653,13594161 +g1,12793:12904533,13594161 +(1,12793:12904533,13594161:0,414482,115847 +r1,12845:13262799,13594161:358266,530329,115847 +k1,12793:12904533,13594161:-358266 +) +(1,12793:12904533,13594161:358266,414482,115847 +k1,12793:12904533,13594161:3277 +h1,12793:13259522,13594161:0,411205,112570 +) +g1,12793:13635698,13594161 +k1,12795:32583030,13594161:18947332 +g1,12795:32583030,13594161 +) +v1,12795:6630773,14279016:0,393216,0 +(1,12802:6630773,15402596:25952256,1516796,196608 +g1,12802:6630773,15402596 +g1,12802:6630773,15402596 +g1,12802:6434165,15402596 +(1,12802:6434165,15402596:0,1516796,196608 +r1,12845:32779637,15402596:26345472,1713404,196608 +k1,12802:6434165,15402596:-26345472 +) +(1,12802:6434165,15402596:26345472,1516796,196608 +[1,12802:6630773,15402596:25952256,1320188,0 +(1,12797:6630773,14506847:25952256,424439,86428 +(1,12796:6630773,14506847:0,0,0 +g1,12796:6630773,14506847 +g1,12796:6630773,14506847 +g1,12796:6303093,14506847 +(1,12796:6303093,14506847:0,0,0 +) +g1,12796:6630773,14506847 +) +k1,12797:6630773,14506847:0 +g1,12797:9286405,14506847 +g1,12797:9950313,14506847 +g1,12797:11610083,14506847 +g1,12797:13269853,14506847 +g1,12797:13933761,14506847 +g1,12797:14929623,14506847 +g1,12797:15925485,14506847 +g1,12797:16589393,14506847 +h1,12797:17917209,14506847:0,0,0 +k1,12797:32583029,14506847:14665820 +g1,12797:32583029,14506847 +) +(1,12801:6630773,15322774:25952256,424439,79822 +(1,12799:6630773,15322774:0,0,0 +g1,12799:6630773,15322774 +g1,12799:6630773,15322774 +g1,12799:6303093,15322774 +(1,12799:6303093,15322774:0,0,0 +) +g1,12799:6630773,15322774 +) +g1,12801:7626635,15322774 +g1,12801:8954451,15322774 +h1,12801:11942036,15322774:0,0,0 +k1,12801:32583028,15322774:20640992 +g1,12801:32583028,15322774 +) +] +) +g1,12802:32583029,15402596 +g1,12802:6630773,15402596 +g1,12802:6630773,15402596 +g1,12802:32583029,15402596 +g1,12802:32583029,15402596 +) +h1,12802:6630773,15599204:0,0,0 +(1,12806:6630773,16464284:25952256,505283,134348 +h1,12805:6630773,16464284:983040,0,0 +g1,12805:8642072,16464284 +g1,12805:10865053,16464284 +g1,12805:13735529,16464284 +g1,12805:15945403,16464284 +g1,12805:17012984,16464284 +g1,12805:18316495,16464284 +g1,12805:19952929,16464284 +g1,12805:20508018,16464284 +g1,12805:22731654,16464284 +g1,12805:24908760,16464284 +g1,12805:25794151,16464284 +g1,12805:26764083,16464284 +k1,12806:32583029,16464284:2694190 +g1,12806:32583029,16464284 +) +v1,12808:6630773,17149139:0,393216,0 +(1,12815:6630773,18279325:25952256,1523402,196608 +g1,12815:6630773,18279325 +g1,12815:6630773,18279325 +g1,12815:6434165,18279325 +(1,12815:6434165,18279325:0,1523402,196608 +r1,12845:32779637,18279325:26345472,1720010,196608 +k1,12815:6434165,18279325:-26345472 +) +(1,12815:6434165,18279325:26345472,1523402,196608 +[1,12815:6630773,18279325:25952256,1326794,0 +(1,12810:6630773,17383576:25952256,431045,112852 +(1,12809:6630773,17383576:0,0,0 +g1,12809:6630773,17383576 +g1,12809:6630773,17383576 +g1,12809:6303093,17383576 +(1,12809:6303093,17383576:0,0,0 +) +g1,12809:6630773,17383576 +) +k1,12810:6630773,17383576:0 +g1,12810:9286405,17383576 +g1,12810:9950313,17383576 +g1,12810:12937899,17383576 +g1,12810:13601807,17383576 +g1,12810:14929623,17383576 +g1,12810:15925485,17383576 +g1,12810:16589393,17383576 +g1,12810:17585255,17383576 +g1,12810:21236748,17383576 +g1,12810:21900656,17383576 +g1,12810:23228472,17383576 +g1,12810:24888242,17383576 +g1,12810:25552150,17383576 +g1,12810:26548012,17383576 +g1,12810:27543874,17383576 +g1,12810:28207782,17383576 +h1,12810:29535598,17383576:0,0,0 +k1,12810:32583029,17383576:3047431 +g1,12810:32583029,17383576 +) +(1,12814:6630773,18199503:25952256,424439,79822 +(1,12812:6630773,18199503:0,0,0 +g1,12812:6630773,18199503 +g1,12812:6630773,18199503 +g1,12812:6303093,18199503 +(1,12812:6303093,18199503:0,0,0 +) +g1,12812:6630773,18199503 +) +g1,12814:7626635,18199503 +g1,12814:8954451,18199503 +g1,12814:13269852,18199503 +g1,12814:17585253,18199503 +g1,12814:21900654,18199503 +g1,12814:26216055,18199503 +h1,12814:30199502,18199503:0,0,0 +k1,12814:32583029,18199503:2383527 +g1,12814:32583029,18199503 +) +] +) +g1,12815:32583029,18279325 +g1,12815:6630773,18279325 +g1,12815:6630773,18279325 +g1,12815:32583029,18279325 +g1,12815:32583029,18279325 +) +h1,12815:6630773,18475933:0,0,0 +(1,12819:6630773,19341013:25952256,513147,126483 +h1,12818:6630773,19341013:983040,0,0 +k1,12818:9288834,19341013:195873 +k1,12818:10281625,19341013:195873 +k1,12818:12771258,19341013:195873 +k1,12818:15175694,19341013:195873 +k1,12818:17382212,19341013:195873 +k1,12818:18525736,19341013:195873 +$1,12818:18525736,19341013 +$1,12818:19028397,19341013 +k1,12818:19224270,19341013:195873 +k1,12818:20288495,19341013:195873 +k1,12818:21588650,19341013:195873 +k1,12818:23061820,19341013:195873 +k1,12818:23613553,19341013:195873 +k1,12818:24977933,19341013:195873 +(1,12818:25185027,19341013:0,452978,115847 +r1,12845:28708699,19341013:3523672,568825,115847 +k1,12818:25185027,19341013:-3523672 +) +(1,12818:25185027,19341013:3523672,452978,115847 +g1,12818:26946863,19341013 +g1,12818:27650287,19341013 +h1,12818:28705422,19341013:0,411205,112570 +) +k1,12818:29111666,19341013:195873 +k1,12818:30592045,19341013:195873 +k1,12818:32583029,19341013:0 +) +(1,12819:6630773,20206093:25952256,513147,134348 +k1,12818:8121343,20206093:206064 +k1,12818:9346492,20206093:206064 +k1,12818:10349474,20206093:206064 +k1,12818:13708475,20206093:206064 +k1,12818:15303902,20206093:206064 +k1,12818:17528475,20206093:206064 +k1,12818:19014456,20206093:206063 +k1,12818:20239605,20206093:206064 +k1,12818:22812829,20206093:206064 +k1,12818:23678185,20206093:206064 +k1,12818:24240109,20206093:206064 +k1,12818:28016574,20206093:206064 +k1,12818:30137600,20206093:206064 +k1,12818:31297213,20206093:206064 +k1,12818:32583029,20206093:0 +) +(1,12819:6630773,21071173:25952256,513147,134348 +g1,12818:8027345,21071173 +g1,12818:8582434,21071173 +g1,12818:10469870,21071173 +g1,12818:13320030,21071173 +g1,12818:14538344,21071173 +g1,12818:16417916,21071173 +g1,12818:17564796,21071173 +$1,12818:17564796,21071173 +g1,12818:18249517,21071173 +g1,12818:18999774,21071173 +$1,12818:19986091,21071173 +g1,12818:20185320,21071173 +g1,12818:23613508,21071173 +k1,12819:32583029,21071173:7061768 +g1,12819:32583029,21071173 +) +v1,12821:6630773,21756028:0,393216,0 +(1,12830:6630773,25520986:25952256,4158174,196608 +g1,12830:6630773,25520986 +g1,12830:6630773,25520986 +g1,12830:6434165,25520986 +(1,12830:6434165,25520986:0,4158174,196608 +r1,12845:32779637,25520986:26345472,4354782,196608 +k1,12830:6434165,25520986:-26345472 +) +(1,12830:6434165,25520986:26345472,4158174,196608 +[1,12830:6630773,25520986:25952256,3961566,0 +(1,12823:6630773,21990465:25952256,431045,112852 +(1,12822:6630773,21990465:0,0,0 +g1,12822:6630773,21990465 +g1,12822:6630773,21990465 +g1,12822:6303093,21990465 +(1,12822:6303093,21990465:0,0,0 +) +g1,12822:6630773,21990465 +) +g1,12823:8290543,21990465 +g1,12823:9286405,21990465 +g1,12823:12273991,21990465 +g1,12823:12937899,21990465 +g1,12823:14265715,21990465 +g1,12823:15261577,21990465 +g1,12823:15925485,21990465 +g1,12823:16921347,21990465 +g1,12823:20572840,21990465 +g1,12823:21236748,21990465 +h1,12823:22232610,21990465:0,0,0 +k1,12823:32583029,21990465:10350419 +g1,12823:32583029,21990465 +) +(1,12824:6630773,22675320:25952256,0,0 +h1,12824:6630773,22675320:0,0,0 +h1,12824:6630773,22675320:0,0,0 +k1,12824:32583029,22675320:25952256 +g1,12824:32583029,22675320 +) +(1,12825:6630773,23360175:25952256,431045,86428 +h1,12825:6630773,23360175:0,0,0 +g1,12825:7958589,23360175 +g1,12825:8954451,23360175 +g1,12825:13269852,23360175 +g1,12825:13933760,23360175 +k1,12825:13933760,23360175:0 +h1,12825:15593530,23360175:0,0,0 +k1,12825:32583030,23360175:16989500 +g1,12825:32583030,23360175 +) +(1,12826:6630773,24045030:25952256,424439,106246 +h1,12826:6630773,24045030:0,0,0 +g1,12826:6962727,24045030 +g1,12826:7294681,24045030 +g1,12826:7626635,24045030 +g1,12826:7958589,24045030 +g1,12826:8290543,24045030 +g1,12826:8622497,24045030 +g1,12826:8954451,24045030 +g1,12826:9286405,24045030 +g1,12826:9618359,24045030 +g1,12826:9950313,24045030 +g1,12826:10282267,24045030 +g1,12826:10614221,24045030 +g1,12826:10946175,24045030 +g1,12826:11278129,24045030 +g1,12826:11610083,24045030 +g1,12826:11942037,24045030 +g1,12826:12273991,24045030 +g1,12826:12605945,24045030 +g1,12826:13269853,24045030 +g1,12826:13933761,24045030 +g1,12826:16589393,24045030 +g1,12826:17253301,24045030 +g1,12826:19245025,24045030 +g1,12826:20904795,24045030 +g1,12826:21568703,24045030 +g1,12826:22564565,24045030 +g1,12826:23560427,24045030 +g1,12826:24224335,24045030 +h1,12826:25220197,24045030:0,0,0 +k1,12826:32583029,24045030:7362832 +g1,12826:32583029,24045030 +) +(1,12827:6630773,24729885:25952256,431045,106246 +h1,12827:6630773,24729885:0,0,0 +g1,12827:9950313,24729885 +g1,12827:11610083,24729885 +g1,12827:12273991,24729885 +g1,12827:13933761,24729885 +g1,12827:15593531,24729885 +g1,12827:16257439,24729885 +g1,12827:17917209,24729885 +g1,12827:19576979,24729885 +g1,12827:20240887,24729885 +g1,12827:21900657,24729885 +g1,12827:23560427,24729885 +g1,12827:24224335,24729885 +h1,12827:26548013,24729885:0,0,0 +k1,12827:32583029,24729885:6035016 +g1,12827:32583029,24729885 +) +(1,12828:6630773,25414740:25952256,424439,106246 +h1,12828:6630773,25414740:0,0,0 +g1,12828:9618359,25414740 +g1,12828:10282267,25414740 +g1,12828:11278129,25414740 +g1,12828:11942037,25414740 +g1,12828:12605945,25414740 +g1,12828:15261577,25414740 +g1,12828:15925485,25414740 +g1,12828:16921347,25414740 +g1,12828:18581117,25414740 +g1,12828:19245025,25414740 +g1,12828:20240887,25414740 +g1,12828:21236749,25414740 +g1,12828:21900657,25414740 +h1,12828:22896519,25414740:0,0,0 +k1,12828:32583029,25414740:9686510 +g1,12828:32583029,25414740 +) +] +) +g1,12830:32583029,25520986 +g1,12830:6630773,25520986 +g1,12830:6630773,25520986 +g1,12830:32583029,25520986 +g1,12830:32583029,25520986 +) +h1,12830:6630773,25717594:0,0,0 +(1,12833:6630773,38629234:25952256,12846104,0 +k1,12833:13183781,38629234:6553008 +h1,12832:13183781,38629234:0,0,0 +(1,12832:13183781,38629234:12846240,12846104,0 +(1,12832:13183781,38629234:12846136,12846136,0 +(1,12832:13183781,38629234:12846136,12846136,0 +(1,12832:13183781,38629234:0,12846136,0 +(1,12832:13183781,38629234:0,18945146,0 +(1,12832:13183781,38629234:18945146,18945146,0 +) +k1,12832:13183781,38629234:-18945146 +) +) +g1,12832:26029917,38629234 +) +) +) +g1,12833:26030021,38629234 +k1,12833:32583029,38629234:6553008 +) +(1,12839:6630773,40746052:25952256,564462,139132 +(1,12839:6630773,40746052:2450326,534184,12975 +g1,12839:6630773,40746052 +g1,12839:9081099,40746052 +) +g1,12839:13850548,40746052 +g1,12839:15850314,40746052 +g1,12839:20178574,40746052 +g1,12839:21745802,40746052 +k1,12839:32583029,40746052:7500199 +g1,12839:32583029,40746052 +) +(1,12843:6630773,42004348:25952256,505283,134348 +k1,12842:8314998,42004348:235224 +k1,12842:8906081,42004348:235223 +k1,12842:11279089,42004348:235224 +k1,12842:14114782,42004348:235224 +k1,12842:16204019,42004348:235223 +k1,12842:16897340,42004348:235224 +k1,12842:17664061,42004348:235224 +k1,12842:20529245,42004348:235224 +k1,12842:21415896,42004348:235223 +k1,12842:23037862,42004348:235224 +k1,12842:24108670,42004348:235224 +k1,12842:25362978,42004348:235223 +k1,12842:30221767,42004348:235224 +$1,12842:30221767,42004348 +$1,12842:30689694,42004348 +k1,12842:32583029,42004348:0 +) +(1,12843:6630773,42869428:25952256,513147,134348 +k1,12842:8485794,42869428:287400 +k1,12842:9792280,42869428:287401 +k1,12842:12435699,42869428:287400 +k1,12842:16678198,42869428:287401 +k1,12842:18035146,42869428:287400 +k1,12842:19341631,42869428:287400 +k1,12842:20976452,42869428:287401 +k1,12842:23149978,42869428:287400 +k1,12842:24456464,42869428:287401 +k1,12842:26658826,42869428:287400 +k1,12842:28802206,42869428:287400 +k1,12842:29741035,42869428:287401 +k1,12842:31047520,42869428:287400 +k1,12842:32583029,42869428:0 +) +(1,12843:6630773,43734508:25952256,513147,134348 +k1,12842:7572731,43734508:259073 +k1,12842:8483231,43734508:259072 +k1,12842:9761389,43734508:259073 +k1,12842:11094597,43734508:259073 +k1,12842:12012962,43734508:259073 +k1,12842:12627894,43734508:259072 +k1,12842:14581728,43734508:259073 +k1,12842:16521144,43734508:259073 +k1,12842:17447372,43734508:259072 +(1,12842:17447372,43734508:0,414482,115847 +r1,12845:17805638,43734508:358266,530329,115847 +k1,12842:17447372,43734508:-358266 +) +(1,12842:17447372,43734508:358266,414482,115847 +k1,12842:17447372,43734508:3277 +h1,12842:17802361,43734508:0,411205,112570 +) +k1,12842:18064711,43734508:259073 +k1,12842:19292406,43734508:259073 +k1,12842:21990729,43734508:259073 +k1,12842:25735661,43734508:259072 +k1,12842:27013819,43734508:259073 +k1,12842:29029257,43734508:259073 +k1,12842:29971214,43734508:259072 +k1,12842:31304422,43734508:259073 +k1,12842:32583029,43734508:0 +) +(1,12843:6630773,44599588:25952256,505283,134348 +k1,12842:8630407,44599588:246546 +k1,12842:11463660,44599588:246547 +k1,12842:13104157,44599588:246546 +k1,12842:17596125,44599588:246546 +k1,12842:18861757,44599588:246547 +k1,12842:21882442,44599588:246546 +k1,12842:23867003,44599588:246546 +k1,12842:25304994,44599588:246546 +k1,12842:28395148,44599588:246547 +k1,12842:31591469,44599588:246546 +k1,12842:32583029,44599588:0 +) +(1,12843:6630773,45464668:25952256,513147,126483 +k1,12842:7421628,45464668:174817 +k1,12842:9198145,45464668:174817 +k1,12842:11070345,45464668:174818 +k1,12842:14453805,45464668:174817 +k1,12842:16196243,45464668:174817 +k1,12842:17390145,45464668:174817 +k1,12842:19218436,45464668:174818 +k1,12842:23465005,45464668:174817 +k1,12842:25525948,45464668:174817 +k1,12842:26719850,45464668:174817 +k1,12842:28134609,45464668:174818 +k1,12842:31955194,45464668:174817 +k1,12842:32583029,45464668:0 +) +] +(1,12845:32583029,45706769:0,0,0 +g1,12845:32583029,45706769 +) +) +] +(1,12845:6630773,47279633:25952256,0,0 +h1,12845:6630773,47279633:25952256,0,0 +) +] +(1,12845:4262630,4025873:0,0,0 +[1,12845:-473656,4025873:0,0,0 +(1,12845:-473656,-710413:0,0,0 +(1,12845:-473656,-710413:0,0,0 +g1,12845:-473656,-710413 +) +g1,12845:-473656,-710413 ) ] ) ] !19962 -}205 -Input:2145:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2146:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2147:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}206 Input:2148:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2149:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2150:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2151:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{206 -[1,12940:4262630,47279633:28320399,43253760,0 -(1,12940:4262630,4025873:0,0,0 -[1,12940:-473656,4025873:0,0,0 -(1,12940:-473656,-710413:0,0,0 -(1,12940:-473656,-644877:0,0,0 -k1,12940:-473656,-644877:-65536 +{207 +[1,12938:4262630,47279633:28320399,43253760,0 +(1,12938:4262630,4025873:0,0,0 +[1,12938:-473656,4025873:0,0,0 +(1,12938:-473656,-710413:0,0,0 +(1,12938:-473656,-644877:0,0,0 +k1,12938:-473656,-644877:-65536 ) -(1,12940:-473656,4736287:0,0,0 -k1,12940:-473656,4736287:5209943 +(1,12938:-473656,4736287:0,0,0 +k1,12938:-473656,4736287:5209943 ) -g1,12940:-473656,-710413 +g1,12938:-473656,-710413 ) ] ) -[1,12940:6630773,47279633:25952256,43253760,0 -[1,12940:6630773,4812305:25952256,786432,0 -(1,12940:6630773,4812305:25952256,505283,126483 -(1,12940:6630773,4812305:25952256,505283,126483 -g1,12940:3078558,4812305 -[1,12940:3078558,4812305:0,0,0 -(1,12940:3078558,2439708:0,1703936,0 -k1,12940:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12940:2537886,2439708:1179648,16384,0 +[1,12938:6630773,47279633:25952256,43253760,0 +[1,12938:6630773,4812305:25952256,786432,0 +(1,12938:6630773,4812305:25952256,505283,126483 +(1,12938:6630773,4812305:25952256,505283,126483 +g1,12938:3078558,4812305 +[1,12938:3078558,4812305:0,0,0 +(1,12938:3078558,2439708:0,1703936,0 +k1,12938:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12938:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12940:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12938:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12940:3078558,4812305:0,0,0 -(1,12940:3078558,2439708:0,1703936,0 -g1,12940:29030814,2439708 -g1,12940:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12940:36151628,1915420:16384,1179648,0 +[1,12938:3078558,4812305:0,0,0 +(1,12938:3078558,2439708:0,1703936,0 +g1,12938:29030814,2439708 +g1,12938:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12938:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12940:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12938:37855564,2439708:1179648,16384,0 ) ) -k1,12940:3078556,2439708:-34777008 +k1,12938:3078556,2439708:-34777008 ) ] -[1,12940:3078558,4812305:0,0,0 -(1,12940:3078558,49800853:0,16384,2228224 -k1,12940:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12940:2537886,49800853:1179648,16384,0 +[1,12938:3078558,4812305:0,0,0 +(1,12938:3078558,49800853:0,16384,2228224 +k1,12938:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12938:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12940:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12938:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,12940:3078558,4812305:0,0,0 -(1,12940:3078558,49800853:0,16384,2228224 -g1,12940:29030814,49800853 -g1,12940:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12940:36151628,51504789:16384,1179648,0 +[1,12938:3078558,4812305:0,0,0 +(1,12938:3078558,49800853:0,16384,2228224 +g1,12938:29030814,49800853 +g1,12938:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12938:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12940:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12938:37855564,49800853:1179648,16384,0 ) ) -k1,12940:3078556,49800853:-34777008 +k1,12938:3078556,49800853:-34777008 ) ] -g1,12940:6630773,4812305 -g1,12940:6630773,4812305 -g1,12940:9737834,4812305 -g1,12940:13337726,4812305 -g1,12940:17543826,4812305 -k1,12940:31387652,4812305:13843826 +g1,12938:6630773,4812305 +g1,12938:6630773,4812305 +g1,12938:9737834,4812305 +g1,12938:13337726,4812305 +g1,12938:17543826,4812305 +k1,12938:31387652,4812305:13843826 ) ) ] -[1,12940:6630773,45706769:25952256,40108032,0 -(1,12940:6630773,45706769:25952256,40108032,0 -(1,12940:6630773,45706769:0,0,0 -g1,12940:6630773,45706769 +[1,12938:6630773,45706769:25952256,40108032,0 +(1,12938:6630773,45706769:25952256,40108032,0 +(1,12938:6630773,45706769:0,0,0 +g1,12938:6630773,45706769 ) -[1,12940:6630773,45706769:25952256,40108032,0 -(1,12845:6630773,6254097:25952256,513147,126483 -k1,12844:7830417,6254097:180559 -k1,12844:10672393,6254097:180559 -k1,12844:12895055,6254097:180560 -k1,12844:13943966,6254097:180559 -k1,12844:15217010,6254097:180559 -k1,12844:18157945,6254097:180559 -k1,12844:20349150,6254097:180560 -k1,12844:21477360,6254097:180559 -k1,12844:22424035,6254097:180559 -k1,12844:26215628,6254097:180559 -(1,12844:26215628,6254097:0,414482,115847 -r1,12940:26573894,6254097:358266,530329,115847 -k1,12844:26215628,6254097:-358266 -) -(1,12844:26215628,6254097:358266,414482,115847 -k1,12844:26215628,6254097:3277 -h1,12844:26570617,6254097:0,411205,112570 -) -k1,12844:26928124,6254097:180560 -k1,12844:28127768,6254097:180559 -k1,12844:31082466,6254097:180559 -(1,12844:31082466,6254097:0,414482,115847 -r1,12940:32495867,6254097:1413401,530329,115847 -k1,12844:31082466,6254097:-1413401 -) -(1,12844:31082466,6254097:1413401,414482,115847 -k1,12844:31082466,6254097:3277 -h1,12844:32492590,6254097:0,411205,112570 -) -k1,12844:32583029,6254097:0 -) -(1,12845:6630773,7119177:25952256,505283,115847 -g1,12844:8021447,7119177 -(1,12844:8021447,7119177:0,452978,115847 -r1,12940:8731425,7119177:709978,568825,115847 -k1,12844:8021447,7119177:-709978 -) -(1,12844:8021447,7119177:709978,452978,115847 -k1,12844:8021447,7119177:3277 -h1,12844:8728148,7119177:0,411205,112570 -) -g1,12844:9104324,7119177 -g1,12844:10322638,7119177 -g1,12844:13365474,7119177 -k1,12845:32583029,7119177:16215351 -g1,12845:32583029,7119177 -) -v1,12847:6630773,7804032:0,393216,0 -(1,12872:6630773,13823174:25952256,6412358,196608 -g1,12872:6630773,13823174 -g1,12872:6630773,13823174 -g1,12872:6434165,13823174 -(1,12872:6434165,13823174:0,6412358,196608 -r1,12940:32779637,13823174:26345472,6608966,196608 -k1,12872:6434165,13823174:-26345472 -) -(1,12872:6434165,13823174:26345472,6412358,196608 -[1,12872:6630773,13823174:25952256,6215750,0 -(1,12849:6630773,8031863:25952256,424439,106246 -(1,12848:6630773,8031863:0,0,0 -g1,12848:6630773,8031863 -g1,12848:6630773,8031863 -g1,12848:6303093,8031863 -(1,12848:6303093,8031863:0,0,0 -) -g1,12848:6630773,8031863 -) -k1,12849:6630773,8031863:0 -g1,12849:9286405,8031863 -g1,12849:9950313,8031863 -g1,12849:10946175,8031863 -g1,12849:12605945,8031863 -g1,12849:13269853,8031863 -g1,12849:14265715,8031863 -g1,12849:15261577,8031863 -g1,12849:15925485,8031863 -h1,12849:16589393,8031863:0,0,0 -k1,12849:32583029,8031863:15993636 -g1,12849:32583029,8031863 -) -(1,12853:6630773,8847790:25952256,424439,79822 -(1,12851:6630773,8847790:0,0,0 -g1,12851:6630773,8847790 -g1,12851:6630773,8847790 -g1,12851:6303093,8847790 -(1,12851:6303093,8847790:0,0,0 -) -g1,12851:6630773,8847790 -) -g1,12853:7626635,8847790 -g1,12853:8954451,8847790 -h1,12853:11942036,8847790:0,0,0 -k1,12853:32583028,8847790:20640992 -g1,12853:32583028,8847790 -) -(1,12855:6630773,9663717:25952256,424439,106246 -(1,12854:6630773,9663717:0,0,0 -g1,12854:6630773,9663717 -g1,12854:6630773,9663717 -g1,12854:6303093,9663717 -(1,12854:6303093,9663717:0,0,0 -) -g1,12854:6630773,9663717 -) -k1,12855:6630773,9663717:0 -g1,12855:9286405,9663717 -g1,12855:9950313,9663717 -g1,12855:10946175,9663717 -g1,12855:12605945,9663717 -g1,12855:13269853,9663717 -g1,12855:14265715,9663717 -g1,12855:15261577,9663717 -g1,12855:15925485,9663717 -g1,12855:16921347,9663717 -g1,12855:20572840,9663717 -g1,12855:21236748,9663717 -h1,12855:23228472,9663717:0,0,0 -k1,12855:32583029,9663717:9354557 -g1,12855:32583029,9663717 -) -(1,12859:6630773,10479644:25952256,424439,79822 -(1,12857:6630773,10479644:0,0,0 -g1,12857:6630773,10479644 -g1,12857:6630773,10479644 -g1,12857:6303093,10479644 -(1,12857:6303093,10479644:0,0,0 -) -g1,12857:6630773,10479644 -) -g1,12859:7626635,10479644 -g1,12859:8954451,10479644 -h1,12859:11942036,10479644:0,0,0 -k1,12859:32583028,10479644:20640992 -g1,12859:32583028,10479644 -) -(1,12861:6630773,11295571:25952256,424439,106246 -(1,12860:6630773,11295571:0,0,0 -g1,12860:6630773,11295571 -g1,12860:6630773,11295571 -g1,12860:6303093,11295571 -(1,12860:6303093,11295571:0,0,0 -) -g1,12860:6630773,11295571 -) -k1,12861:6630773,11295571:0 -g1,12861:9286405,11295571 -g1,12861:9950313,11295571 -g1,12861:10946175,11295571 -g1,12861:12605945,11295571 -g1,12861:13269853,11295571 -g1,12861:14265715,11295571 -g1,12861:15261577,11295571 -g1,12861:15925485,11295571 -g1,12861:16921347,11295571 -g1,12861:20572840,11295571 -g1,12861:21236748,11295571 -h1,12861:23228472,11295571:0,0,0 -k1,12861:32583029,11295571:9354557 -g1,12861:32583029,11295571 -) -(1,12865:6630773,12111498:25952256,424439,79822 -(1,12863:6630773,12111498:0,0,0 -g1,12863:6630773,12111498 -g1,12863:6630773,12111498 -g1,12863:6303093,12111498 -(1,12863:6303093,12111498:0,0,0 -) -g1,12863:6630773,12111498 -) -g1,12865:7626635,12111498 -g1,12865:8954451,12111498 -h1,12865:11942036,12111498:0,0,0 -k1,12865:32583028,12111498:20640992 -g1,12865:32583028,12111498 -) -(1,12867:6630773,12927425:25952256,424439,106246 -(1,12866:6630773,12927425:0,0,0 -g1,12866:6630773,12927425 -g1,12866:6630773,12927425 -g1,12866:6303093,12927425 -(1,12866:6303093,12927425:0,0,0 -) -g1,12866:6630773,12927425 -) -k1,12867:6630773,12927425:0 -g1,12867:9286405,12927425 -g1,12867:9950313,12927425 -g1,12867:11610083,12927425 -g1,12867:12937899,12927425 -g1,12867:14597669,12927425 -g1,12867:15261577,12927425 -g1,12867:16257439,12927425 -g1,12867:17253301,12927425 -g1,12867:17917209,12927425 -g1,12867:18913071,12927425 -g1,12867:22564564,12927425 -g1,12867:23228472,12927425 -h1,12867:25220196,12927425:0,0,0 -k1,12867:32583029,12927425:7362833 -g1,12867:32583029,12927425 -) -(1,12871:6630773,13743352:25952256,424439,79822 -(1,12869:6630773,13743352:0,0,0 -g1,12869:6630773,13743352 -g1,12869:6630773,13743352 -g1,12869:6303093,13743352 -(1,12869:6303093,13743352:0,0,0 -) -g1,12869:6630773,13743352 -) -g1,12871:7626635,13743352 -g1,12871:8954451,13743352 -g1,12871:12937898,13743352 -h1,12871:16589391,13743352:0,0,0 -k1,12871:32583029,13743352:15993638 -g1,12871:32583029,13743352 -) -] -) -g1,12872:32583029,13823174 -g1,12872:6630773,13823174 -g1,12872:6630773,13823174 -g1,12872:32583029,13823174 -g1,12872:32583029,13823174 -) -h1,12872:6630773,14019782:0,0,0 -v1,12876:6630773,14884862:0,393216,0 -(1,12877:6630773,21375203:25952256,6883557,0 -g1,12877:6630773,21375203 -g1,12877:6237557,21375203 -r1,12940:6368629,21375203:131072,6883557,0 -g1,12877:6567858,21375203 -g1,12877:6764466,21375203 -[1,12877:6764466,21375203:25818563,6883557,0 -(1,12877:6764466,15193160:25818563,701514,196608 -(1,12876:6764466,15193160:0,701514,196608 -r1,12940:7761522,15193160:997056,898122,196608 -k1,12876:6764466,15193160:-997056 -) -(1,12876:6764466,15193160:997056,701514,196608 -) -k1,12876:7945056,15193160:183534 -k1,12876:8272736,15193160:327680 -k1,12876:9084105,15193160:183534 -k1,12876:10789385,15193160:183534 -k1,12876:11632212,15193160:183535 -k1,12876:15726935,15193160:183534 -k1,12876:18883837,15193160:183534 -$1,12876:18883837,15193160 -$1,12876:19309166,15193160 -k1,12876:21716337,15193160:183534 -k1,12876:23091316,15193160:183534 -$1,12876:23091316,15193160 -$1,12876:23411787,15193160 -k1,12876:25818958,15193160:183534 -k1,12876:26994053,15193160:183535 -k1,12876:30386230,15193160:183534 -k1,12876:31331292,15193160:183534 -k1,12877:32583029,15193160:0 -) -(1,12877:6764466,16058240:25818563,513147,134348 -k1,12876:9507803,16058240:261489 -k1,12876:11336912,16058240:261488 -k1,12876:12617486,16058240:261489 -k1,12876:15765180,16058240:261488 -k1,12876:17764684,16058240:261489 -k1,12876:18973824,16058240:261489 -k1,12876:20392022,16058240:261488 -k1,12876:22546191,16058240:261489 -k1,12876:23490564,16058240:261488 -k1,12876:24917283,16058240:261489 -k1,12876:27952910,16058240:261488 -k1,12876:29233484,16058240:261489 -k1,12876:32583029,16058240:0 -) -(1,12877:6764466,16923320:25818563,513147,126483 -k1,12876:8729946,16923320:227465 -k1,12876:9520364,16923320:227464 -k1,12876:13988008,16923320:227465 -k1,12876:17617446,16923320:227464 -k1,12876:19698925,16923320:227465 -k1,12876:20945474,16923320:227464 -k1,12876:22910954,16923320:227465 -k1,12876:23797710,16923320:227464 -k1,12876:24381035,16923320:227465 -k1,12876:26896361,16923320:227464 -k1,12876:30156177,16923320:227465 -k1,12876:31896867,16923320:227464 -k1,12876:32583029,16923320:0 -) -(1,12877:6764466,17788400:25818563,513147,126483 -k1,12876:7347736,17788400:227410 -k1,12876:10728083,17788400:227410 -k1,12876:11638378,17788400:227410 -k1,12876:12884873,17788400:227410 -k1,12876:14850298,17788400:227410 -k1,12876:18286351,17788400:227410 -k1,12876:19901157,17788400:227409 -k1,12876:20894683,17788400:227410 -k1,12876:24596812,17788400:227410 -k1,12876:26710348,17788400:227410 -k1,12876:27956843,17788400:227410 -k1,12876:31923737,17788400:227410 -k1,12876:32583029,17788400:0 -) -(1,12877:6764466,18653480:25818563,513147,134348 -k1,12876:7843353,18653480:269517 -k1,12876:9883652,18653480:269516 -k1,12876:10812461,18653480:269517 -k1,12876:14763791,18653480:269517 -k1,12876:16224752,18653480:269516 -k1,12876:17928197,18653480:269517 -k1,12876:20789008,18653480:269517 -k1,12876:22261765,18653480:269516 -k1,12876:25717642,18653480:269517 -k1,12876:26748687,18653480:269517 -k1,12876:28037288,18653480:269516 -k1,12876:31150412,18653480:269517 -k1,12877:32583029,18653480:0 -) -(1,12877:6764466,19518560:25818563,505283,138281 -k1,12876:8784212,19518560:222749 -k1,12876:13527636,19518560:222750 -k1,12876:14769470,19518560:222749 -$1,12876:14769470,19518560 -$1,12876:15237397,19518560 -k1,12876:17683783,19518560:222749 -k1,12876:22530098,19518560:222750 -k1,12876:23404275,19518560:222749 -k1,12876:25323751,19518560:222749 -k1,12876:28519869,19518560:222750 -$1,12876:28519869,19518560 -$1,12876:28945198,19518560 -k1,12876:31391584,19518560:222749 -k1,12876:32583029,19518560:0 -) -(1,12877:6764466,20383640:25818563,505283,134348 -$1,12876:7084937,20383640 -k1,12876:9505935,20383640:197361 -k1,12876:11233561,20383640:197360 -k1,12876:12082350,20383640:197361 -k1,12876:13027477,20383640:197361 -k1,12876:15379661,20383640:197360 -k1,12876:16412606,20383640:197361 -k1,12876:18345360,20383640:197361 -(1,12876:18345360,20383640:0,435480,115847 -r1,12940:21165609,20383640:2820249,551327,115847 -k1,12876:18345360,20383640:-2820249 -) -(1,12876:18345360,20383640:2820249,435480,115847 -g1,12876:20107196,20383640 -g1,12876:20810620,20383640 -h1,12876:21162332,20383640:0,411205,112570 -) -k1,12876:21362970,20383640:197361 -k1,12876:22751775,20383640:197360 -(1,12876:22751775,20383640:0,452978,115847 -r1,12940:24868601,20383640:2116826,568825,115847 -k1,12876:22751775,20383640:-2116826 -) -(1,12876:22751775,20383640:2116826,452978,115847 -g1,12876:23810188,20383640 -g1,12876:24513612,20383640 -h1,12876:24865324,20383640:0,411205,112570 -) -k1,12876:25065962,20383640:197361 -k1,12876:26961361,20383640:197361 -k1,12876:29248664,20383640:197360 -(1,12876:29248664,20383640:0,452978,115847 -r1,12940:31717201,20383640:2468537,568825,115847 -k1,12876:29248664,20383640:-2468537 -) -(1,12876:29248664,20383640:2468537,452978,115847 -k1,12876:29248664,20383640:3277 -h1,12876:31713924,20383640:0,411205,112570 -) -k1,12876:31914562,20383640:197361 -k1,12877:32583029,20383640:0 -) -(1,12877:6764466,21248720:25818563,513147,126483 -(1,12876:6764466,21248720:0,452978,115847 -r1,12940:8177867,21248720:1413401,568825,115847 -k1,12876:6764466,21248720:-1413401 -) -(1,12876:6764466,21248720:1413401,452978,115847 -k1,12876:6764466,21248720:3277 -h1,12876:8174590,21248720:0,411205,112570 -) -g1,12876:8377096,21248720 -g1,12876:12546496,21248720 -g1,12876:14620055,21248720 -g1,12876:18124265,21248720 -g1,12876:19836720,21248720 -g1,12876:22046594,21248720 -g1,12876:23237383,21248720 -g1,12876:24455697,21248720 -k1,12877:32583029,21248720:5479023 -g1,12877:32583029,21248720 -) -] -g1,12877:32583029,21375203 -) -h1,12877:6630773,21375203:0,0,0 -(1,12879:6630773,23492021:25952256,564462,139132 -(1,12879:6630773,23492021:2450326,534184,12975 -g1,12879:6630773,23492021 -g1,12879:9081099,23492021 -) -g1,12879:12765599,23492021 -g1,12879:14765365,23492021 -g1,12879:19093625,23492021 -g1,12879:20660853,23492021 -k1,12879:32583029,23492021:7350253 -g1,12879:32583029,23492021 -) -(1,12883:6630773,24750317:25952256,513147,126483 -k1,12882:7964329,24750317:158496 -k1,12882:10429037,24750317:158496 -k1,12882:14651421,24750317:158497 -k1,12882:16377538,24750317:158496 -k1,12882:17820540,24750317:158496 -k1,12882:18595074,24750317:158496 -k1,12882:19772656,24750317:158497 -k1,12882:22685630,24750317:158496 -k1,12882:25122813,24750317:158496 -k1,12882:25812806,24750317:158496 -k1,12882:26622731,24750317:158497 -k1,12882:28804979,24750317:158496 -k1,12882:29982560,24750317:158496 -k1,12882:32583029,24750317:0 -) -(1,12883:6630773,25615397:25952256,513147,134348 -k1,12882:11415884,25615397:161546 -k1,12882:12228859,25615397:161547 -k1,12882:12746265,25615397:161546 -k1,12882:15045595,25615397:161546 -$1,12882:15045595,25615397 -$1,12882:15513522,25615397 -k1,12882:17568404,25615397:161547 -k1,12882:18412835,25615397:161546 -k1,12882:19921801,25615397:161546 -k1,12882:21969474,25615397:161547 -k1,12882:23287730,25615397:161546 -k1,12882:24108569,25615397:161547 -k1,12882:25289200,25615397:161546 -k1,12882:26800132,25615397:161546 -k1,12882:27620971,25615397:161547 -k1,12882:28801602,25615397:161546 -k1,12882:32583029,25615397:0 -) -(1,12883:6630773,26480477:25952256,513147,126483 -k1,12882:8777295,26480477:231560 -k1,12882:10883186,26480477:231561 -k1,12882:14045516,26480477:231560 -k1,12882:15268636,26480477:231560 -k1,12882:18805178,26480477:231561 -k1,12882:19688166,26480477:231560 -k1,12882:20938811,26480477:231560 -k1,12882:23181017,26480477:231561 -k1,12882:24028615,26480477:231560 -k1,12882:25279260,26480477:231560 -k1,12882:27406778,26480477:231561 -k1,12882:28297630,26480477:231560 -k1,12882:32583029,26480477:0 -) -(1,12883:6630773,27345557:25952256,513147,134348 -g1,12882:9760772,27345557 -g1,12882:11473227,27345557 -g1,12882:12288494,27345557 -g1,12882:14521305,27345557 -g1,12882:16476244,27345557 -g1,12882:17326901,27345557 -g1,12882:19550537,27345557 -g1,12882:23487284,27345557 -g1,12882:25080464,27345557 -g1,12882:28363817,27345557 -k1,12883:32583029,27345557:2645038 -g1,12883:32583029,27345557 -) -v1,12885:6630773,28030412:0,393216,0 -(1,12904:6630773,32417700:25952256,4780504,196608 -g1,12904:6630773,32417700 -g1,12904:6630773,32417700 -g1,12904:6434165,32417700 -(1,12904:6434165,32417700:0,4780504,196608 -r1,12940:32779637,32417700:26345472,4977112,196608 -k1,12904:6434165,32417700:-26345472 -) -(1,12904:6434165,32417700:26345472,4780504,196608 -[1,12904:6630773,32417700:25952256,4583896,0 -(1,12887:6630773,28258243:25952256,424439,106246 -(1,12886:6630773,28258243:0,0,0 -g1,12886:6630773,28258243 -g1,12886:6630773,28258243 -g1,12886:6303093,28258243 -(1,12886:6303093,28258243:0,0,0 -) -g1,12886:6630773,28258243 -) -k1,12887:6630773,28258243:0 -g1,12887:9286405,28258243 -g1,12887:9950313,28258243 -g1,12887:11942037,28258243 -g1,12887:13601807,28258243 -g1,12887:14265715,28258243 -g1,12887:15261577,28258243 -g1,12887:16257439,28258243 -g1,12887:16921347,28258243 -h1,12887:17585255,28258243:0,0,0 -k1,12887:32583029,28258243:14997774 -g1,12887:32583029,28258243 -) -(1,12891:6630773,29074170:25952256,424439,79822 -(1,12889:6630773,29074170:0,0,0 -g1,12889:6630773,29074170 -g1,12889:6630773,29074170 -g1,12889:6303093,29074170 -(1,12889:6303093,29074170:0,0,0 -) -g1,12889:6630773,29074170 -) -g1,12891:7626635,29074170 -g1,12891:8954451,29074170 -k1,12891:8954451,29074170:0 -h1,12891:11942036,29074170:0,0,0 -k1,12891:32583028,29074170:20640992 -g1,12891:32583028,29074170 -) -(1,12893:6630773,29890097:25952256,424439,106246 -(1,12892:6630773,29890097:0,0,0 -g1,12892:6630773,29890097 -g1,12892:6630773,29890097 -g1,12892:6303093,29890097 -(1,12892:6303093,29890097:0,0,0 -) -g1,12892:6630773,29890097 -) -k1,12893:6630773,29890097:0 -g1,12893:9286405,29890097 -g1,12893:9950313,29890097 -g1,12893:11942037,29890097 -g1,12893:13601807,29890097 -g1,12893:14265715,29890097 -g1,12893:15261577,29890097 -g1,12893:16257439,29890097 -g1,12893:16921347,29890097 -h1,12893:17585255,29890097:0,0,0 -k1,12893:32583029,29890097:14997774 -g1,12893:32583029,29890097 -) -(1,12897:6630773,30706024:25952256,424439,79822 -(1,12895:6630773,30706024:0,0,0 -g1,12895:6630773,30706024 -g1,12895:6630773,30706024 -g1,12895:6303093,30706024 -(1,12895:6303093,30706024:0,0,0 -) -g1,12895:6630773,30706024 -) -g1,12897:7626635,30706024 -g1,12897:8954451,30706024 -k1,12897:8954451,30706024:0 -h1,12897:11942036,30706024:0,0,0 -k1,12897:32583028,30706024:20640992 -g1,12897:32583028,30706024 -) -(1,12899:6630773,31521951:25952256,424439,106246 -(1,12898:6630773,31521951:0,0,0 -g1,12898:6630773,31521951 -g1,12898:6630773,31521951 -g1,12898:6303093,31521951 -(1,12898:6303093,31521951:0,0,0 -) -g1,12898:6630773,31521951 -) -k1,12899:6630773,31521951:0 -g1,12899:9286405,31521951 -g1,12899:9950313,31521951 -g1,12899:11942037,31521951 -g1,12899:13601807,31521951 -g1,12899:14265715,31521951 -g1,12899:15261577,31521951 -g1,12899:16257439,31521951 -g1,12899:16921347,31521951 -g1,12899:17917209,31521951 -g1,12899:21568702,31521951 -g1,12899:22232610,31521951 -h1,12899:24224334,31521951:0,0,0 -k1,12899:32583029,31521951:8358695 -g1,12899:32583029,31521951 -) -(1,12903:6630773,32337878:25952256,424439,79822 -(1,12901:6630773,32337878:0,0,0 -g1,12901:6630773,32337878 -g1,12901:6630773,32337878 -g1,12901:6303093,32337878 -(1,12901:6303093,32337878:0,0,0 -) -g1,12901:6630773,32337878 -) -g1,12903:7626635,32337878 -g1,12903:8954451,32337878 -h1,12903:11610082,32337878:0,0,0 -k1,12903:32583030,32337878:20972948 -g1,12903:32583030,32337878 -) -] -) -g1,12904:32583029,32417700 -g1,12904:6630773,32417700 -g1,12904:6630773,32417700 -g1,12904:32583029,32417700 -g1,12904:32583029,32417700 -) -h1,12904:6630773,32614308:0,0,0 -v1,12908:6630773,33479388:0,393216,0 -(1,12940:6630773,45389665:25952256,12303493,0 -g1,12940:6630773,45389665 -g1,12940:6237557,45389665 -r1,12940:6368629,45389665:131072,12303493,0 -g1,12940:6567858,45389665 -g1,12940:6764466,45389665 -[1,12940:6764466,45389665:25818563,12303493,0 -(1,12909:6764466,33840565:25818563,754393,260573 -(1,12908:6764466,33840565:0,754393,260573 -r1,12940:7856192,33840565:1091726,1014966,260573 -k1,12908:6764466,33840565:-1091726 -) -(1,12908:6764466,33840565:1091726,754393,260573 -) -k1,12908:8016741,33840565:160549 -k1,12908:8344421,33840565:327680 -k1,12908:11210951,33840565:160548 -k1,12908:14397297,33840565:160549 -k1,12908:15704071,33840565:160549 -(1,12908:15704071,33840565:0,452978,115847 -r1,12940:18172608,33840565:2468537,568825,115847 -k1,12908:15704071,33840565:-2468537 -) -(1,12908:15704071,33840565:2468537,452978,115847 -k1,12908:15704071,33840565:3277 -h1,12908:18169331,33840565:0,411205,112570 -) -k1,12908:18333156,33840565:160548 -k1,12908:19685150,33840565:160549 -k1,12908:23331559,33840565:160549 -k1,12908:26517905,33840565:160549 -k1,12908:27824678,33840565:160548 -(1,12908:27824678,33840565:0,452978,115847 -r1,12940:30293215,33840565:2468537,568825,115847 -k1,12908:27824678,33840565:-2468537 -) -(1,12908:27824678,33840565:2468537,452978,115847 -k1,12908:27824678,33840565:3277 -h1,12908:30289938,33840565:0,411205,112570 -) -k1,12908:30453764,33840565:160549 -k1,12908:32583029,33840565:0 -) -(1,12909:6764466,34705645:25818563,513147,134348 -k1,12908:7800122,34705645:220388 -k1,12908:12414699,34705645:220388 -k1,12908:14489756,34705645:220388 -k1,12908:15519515,34705645:220389 -k1,12908:16095763,34705645:220388 -k1,12908:18189170,34705645:220388 -k1,12908:19428643,34705645:220388 -k1,12908:20308323,34705645:220388 -k1,12908:21547796,34705645:220388 -k1,12908:25723282,34705645:220388 -k1,12908:27410367,34705645:220389 -k1,12908:29900922,34705645:220388 -k1,12908:30579407,34705645:220388 -k1,12908:31331292,34705645:220388 -k1,12909:32583029,34705645:0 -) -(1,12909:6764466,35570725:25818563,513147,134348 -k1,12908:8497378,35570725:248522 -k1,12908:9397328,35570725:248522 -k1,12908:11904876,35570725:248522 -k1,12908:14038868,35570725:248521 -k1,12908:15306475,35570725:248522 -k1,12908:16423349,35570725:248522 -k1,12908:17663431,35570725:248522 -k1,12908:21123217,35570725:248522 -k1,12908:22161448,35570725:248522 -k1,12908:22887727,35570725:248522 -k1,12908:24004600,35570725:248521 -k1,12908:25244682,35570725:248522 -k1,12908:28704468,35570725:248522 -k1,12908:29569028,35570725:248522 -k1,12908:32583029,35570725:0 -) -(1,12909:6764466,36435805:25818563,513147,126483 -k1,12908:11255414,36435805:204893 -k1,12908:14391078,36435805:204894 -k1,12908:15543622,36435805:204893 -k1,12908:17215212,36435805:204894 -k1,12908:18943162,36435805:204893 -k1,12908:20016408,36435805:204894 -k1,12908:21751567,36435805:204893 -k1,12908:22607888,36435805:204893 -k1,12908:23628050,36435805:204894 -k1,12908:25036184,36435805:204893 -k1,12908:28347485,36435805:204894 -k1,12908:29030135,36435805:204893 -k1,12908:30103381,36435805:204894 -k1,12908:31299834,36435805:204893 -k1,12909:32583029,36435805:0 -) -(1,12909:6764466,37300885:25818563,513147,134348 -k1,12908:7973877,37300885:219162 -k1,12908:8805801,37300885:219162 -k1,12908:11955732,37300885:219161 -k1,12908:13122545,37300885:219162 -$1,12908:13122545,37300885 -k1,12908:13808963,37300885:218491 -k1,12908:14595650,37300885:218490 -$1,12908:15980426,37300885 -k1,12908:16373258,37300885:219162 -k1,12908:17460772,37300885:219162 -k1,12908:19210199,37300885:219161 -k1,12908:20080789,37300885:219162 -k1,12908:21566107,37300885:219162 -k1,12908:22804354,37300885:219162 -k1,12908:25623985,37300885:219162 -k1,12908:26790798,37300885:219162 -k1,12908:28461581,37300885:219161 -k1,12908:29699828,37300885:219162 -k1,12908:31773659,37300885:219162 -k1,12908:32583029,37300885:0 -) -(1,12909:6764466,38165965:25818563,485622,95027 -g1,12908:8156976,38165965 -g1,12908:8907233,38165965 -$1,12908:10690468,38165965 -k1,12909:32583028,38165965:21840132 -g1,12909:32583028,38165965 -) -v1,12911:6764466,38850820:0,393216,0 -(1,12924:6764466,41606254:25818563,3148650,196608 -g1,12924:6764466,41606254 -g1,12924:6764466,41606254 -g1,12924:6567858,41606254 -(1,12924:6567858,41606254:0,3148650,196608 -r1,12940:32779637,41606254:26211779,3345258,196608 -k1,12924:6567857,41606254:-26211780 -) -(1,12924:6567858,41606254:26211779,3148650,196608 -[1,12924:6764466,41606254:25818563,2952042,0 -(1,12913:6764466,39078651:25818563,424439,106246 -(1,12912:6764466,39078651:0,0,0 -g1,12912:6764466,39078651 -g1,12912:6764466,39078651 -g1,12912:6436786,39078651 -(1,12912:6436786,39078651:0,0,0 -) -g1,12912:6764466,39078651 -) -k1,12913:6764466,39078651:0 -g1,12913:9420098,39078651 -g1,12913:10084006,39078651 -g1,12913:12407684,39078651 -g1,12913:14067454,39078651 -g1,12913:14731362,39078651 -g1,12913:15727224,39078651 -g1,12913:16723086,39078651 -g1,12913:17386994,39078651 -h1,12913:18050902,39078651:0,0,0 -k1,12913:32583029,39078651:14532127 -g1,12913:32583029,39078651 -) -(1,12917:6764466,39894578:25818563,424439,79822 -(1,12915:6764466,39894578:0,0,0 -g1,12915:6764466,39894578 -g1,12915:6764466,39894578 -g1,12915:6436786,39894578 -(1,12915:6436786,39894578:0,0,0 -) -g1,12915:6764466,39894578 -) -g1,12917:7760328,39894578 -g1,12917:9088144,39894578 -k1,12917:9088144,39894578:0 -h1,12917:12075729,39894578:0,0,0 -k1,12917:32583029,39894578:20507300 -g1,12917:32583029,39894578 -) -(1,12919:6764466,40710505:25818563,424439,106246 -(1,12918:6764466,40710505:0,0,0 -g1,12918:6764466,40710505 -g1,12918:6764466,40710505 -g1,12918:6436786,40710505 -(1,12918:6436786,40710505:0,0,0 -) -g1,12918:6764466,40710505 -) -k1,12919:6764466,40710505:0 -g1,12919:9420098,40710505 -g1,12919:10084006,40710505 -g1,12919:12407684,40710505 -g1,12919:14067454,40710505 -g1,12919:14731362,40710505 -g1,12919:15727224,40710505 -g1,12919:16723086,40710505 -g1,12919:17386994,40710505 -g1,12919:18382856,40710505 -g1,12919:22034349,40710505 -g1,12919:22698257,40710505 -h1,12919:24689981,40710505:0,0,0 -k1,12919:32583029,40710505:7893048 -g1,12919:32583029,40710505 -) -(1,12923:6764466,41526432:25818563,424439,79822 -(1,12921:6764466,41526432:0,0,0 -g1,12921:6764466,41526432 -g1,12921:6764466,41526432 -g1,12921:6436786,41526432 -(1,12921:6436786,41526432:0,0,0 -) -g1,12921:6764466,41526432 -) -g1,12923:7760328,41526432 -g1,12923:9088144,41526432 -h1,12923:11743775,41526432:0,0,0 -k1,12923:32583029,41526432:20839254 -g1,12923:32583029,41526432 -) -] -) -g1,12924:32583029,41606254 -g1,12924:6764466,41606254 -g1,12924:6764466,41606254 -g1,12924:32583029,41606254 -g1,12924:32583029,41606254 -) -h1,12924:6764466,41802862:0,0,0 -(1,12928:6764466,42667942:25818563,513147,134348 -h1,12927:6764466,42667942:983040,0,0 -k1,12927:9761666,42667942:230925 -k1,12927:13443717,42667942:230925 -k1,12927:14030502,42667942:230925 -$1,12927:14030502,42667942 -$1,12927:14498429,42667942 -k1,12927:16622689,42667942:230925 -k1,12927:18421235,42667942:230925 -k1,12927:19008021,42667942:230926 -k1,12927:21839415,42667942:230925 -k1,12927:25278983,42667942:230925 -k1,12927:27077529,42667942:230925 -k1,12927:31380206,42667942:230925 -k1,12927:32227169,42667942:230925 -k1,12927:32583029,42667942:0 -) -(1,12928:6764466,43533022:25818563,513147,134348 -k1,12927:8213249,43533022:257338 -k1,12927:9129879,43533022:257338 -k1,12927:13298406,43533022:257338 -k1,12927:14424096,43533022:257338 -k1,12927:16211700,43533022:257338 -k1,12927:17120466,43533022:257338 -k1,12927:18683936,43533022:257337 -k1,12927:21012212,43533022:257338 -k1,12927:23860188,43533022:257338 -k1,12927:24473386,43533022:257338 -k1,12927:27836475,43533022:257338 -k1,12927:28776698,43533022:257338 -k1,12927:32583029,43533022:0 -) -(1,12928:6764466,44398102:25818563,513147,134348 -k1,12927:8181894,44398102:225983 -k1,12927:8939375,44398102:225984 -k1,12927:11911972,44398102:225983 -k1,12927:13329401,44398102:225984 -k1,12927:14171422,44398102:225983 -k1,12927:15416491,44398102:225984 -k1,12927:17009555,44398102:225983 -k1,12927:17894831,44398102:225984 -k1,12927:18476674,44398102:225983 -k1,12927:20575677,44398102:225984 -k1,12927:22521980,44398102:225983 -k1,12927:24113079,44398102:225984 -k1,12927:26224533,44398102:225983 -k1,12927:27469602,44398102:225984 -k1,12927:28227082,44398102:225983 -k1,12927:29112358,44398102:225984 -k1,12927:31955194,44398102:225983 -k1,12927:32583029,44398102:0 -) -(1,12928:6764466,45263182:25818563,505283,126483 -k1,12927:7319992,45263182:199666 -k1,12927:10625410,45263182:199667 -k1,12927:12016521,45263182:199666 -k1,12927:13084539,45263182:199666 -k1,12927:14814472,45263182:199667 -k1,12927:15665566,45263182:199666 -k1,12927:18550242,45263182:199666 -k1,12927:19768994,45263182:199667 -k1,12927:22747387,45263182:199666 -$1,12927:22747387,45263182 -$1,12927:23215314,45263182 -k1,12927:25308315,45263182:199666 -k1,12927:26269510,45263182:199667 -k1,12927:27041305,45263182:199666 -k1,12927:28621815,45263182:199666 -k1,12927:30748240,45263182:199667 -k1,12927:31563944,45263182:199666 -k1,12927:32583029,45263182:0 -) -] -g1,12940:32583029,45389665 -) -] -(1,12940:32583029,45706769:0,0,0 -g1,12940:32583029,45706769 -) -) -] -(1,12940:6630773,47279633:25952256,0,0 -h1,12940:6630773,47279633:25952256,0,0 -) -] -(1,12940:4262630,4025873:0,0,0 -[1,12940:-473656,4025873:0,0,0 -(1,12940:-473656,-710413:0,0,0 -(1,12940:-473656,-710413:0,0,0 -g1,12940:-473656,-710413 -) -g1,12940:-473656,-710413 +[1,12938:6630773,45706769:25952256,40108032,0 +(1,12843:6630773,6254097:25952256,513147,126483 +k1,12842:7830417,6254097:180559 +k1,12842:10672393,6254097:180559 +k1,12842:12895055,6254097:180560 +k1,12842:13943966,6254097:180559 +k1,12842:15217010,6254097:180559 +k1,12842:18157945,6254097:180559 +k1,12842:20349150,6254097:180560 +k1,12842:21477360,6254097:180559 +k1,12842:22424035,6254097:180559 +k1,12842:26215628,6254097:180559 +(1,12842:26215628,6254097:0,414482,115847 +r1,12938:26573894,6254097:358266,530329,115847 +k1,12842:26215628,6254097:-358266 +) +(1,12842:26215628,6254097:358266,414482,115847 +k1,12842:26215628,6254097:3277 +h1,12842:26570617,6254097:0,411205,112570 +) +k1,12842:26928124,6254097:180560 +k1,12842:28127768,6254097:180559 +k1,12842:31082466,6254097:180559 +(1,12842:31082466,6254097:0,414482,115847 +r1,12938:32495867,6254097:1413401,530329,115847 +k1,12842:31082466,6254097:-1413401 +) +(1,12842:31082466,6254097:1413401,414482,115847 +k1,12842:31082466,6254097:3277 +h1,12842:32492590,6254097:0,411205,112570 +) +k1,12842:32583029,6254097:0 +) +(1,12843:6630773,7119177:25952256,505283,115847 +g1,12842:8021447,7119177 +(1,12842:8021447,7119177:0,452978,115847 +r1,12938:8731425,7119177:709978,568825,115847 +k1,12842:8021447,7119177:-709978 +) +(1,12842:8021447,7119177:709978,452978,115847 +k1,12842:8021447,7119177:3277 +h1,12842:8728148,7119177:0,411205,112570 +) +g1,12842:9104324,7119177 +g1,12842:10322638,7119177 +g1,12842:13365474,7119177 +k1,12843:32583029,7119177:16215351 +g1,12843:32583029,7119177 +) +v1,12845:6630773,7804032:0,393216,0 +(1,12870:6630773,13823174:25952256,6412358,196608 +g1,12870:6630773,13823174 +g1,12870:6630773,13823174 +g1,12870:6434165,13823174 +(1,12870:6434165,13823174:0,6412358,196608 +r1,12938:32779637,13823174:26345472,6608966,196608 +k1,12870:6434165,13823174:-26345472 +) +(1,12870:6434165,13823174:26345472,6412358,196608 +[1,12870:6630773,13823174:25952256,6215750,0 +(1,12847:6630773,8031863:25952256,424439,106246 +(1,12846:6630773,8031863:0,0,0 +g1,12846:6630773,8031863 +g1,12846:6630773,8031863 +g1,12846:6303093,8031863 +(1,12846:6303093,8031863:0,0,0 +) +g1,12846:6630773,8031863 +) +k1,12847:6630773,8031863:0 +g1,12847:9286405,8031863 +g1,12847:9950313,8031863 +g1,12847:10946175,8031863 +g1,12847:12605945,8031863 +g1,12847:13269853,8031863 +g1,12847:14265715,8031863 +g1,12847:15261577,8031863 +g1,12847:15925485,8031863 +h1,12847:16589393,8031863:0,0,0 +k1,12847:32583029,8031863:15993636 +g1,12847:32583029,8031863 +) +(1,12851:6630773,8847790:25952256,424439,79822 +(1,12849:6630773,8847790:0,0,0 +g1,12849:6630773,8847790 +g1,12849:6630773,8847790 +g1,12849:6303093,8847790 +(1,12849:6303093,8847790:0,0,0 +) +g1,12849:6630773,8847790 +) +g1,12851:7626635,8847790 +g1,12851:8954451,8847790 +h1,12851:11942036,8847790:0,0,0 +k1,12851:32583028,8847790:20640992 +g1,12851:32583028,8847790 +) +(1,12853:6630773,9663717:25952256,424439,106246 +(1,12852:6630773,9663717:0,0,0 +g1,12852:6630773,9663717 +g1,12852:6630773,9663717 +g1,12852:6303093,9663717 +(1,12852:6303093,9663717:0,0,0 +) +g1,12852:6630773,9663717 +) +k1,12853:6630773,9663717:0 +g1,12853:9286405,9663717 +g1,12853:9950313,9663717 +g1,12853:10946175,9663717 +g1,12853:12605945,9663717 +g1,12853:13269853,9663717 +g1,12853:14265715,9663717 +g1,12853:15261577,9663717 +g1,12853:15925485,9663717 +g1,12853:16921347,9663717 +g1,12853:20572840,9663717 +g1,12853:21236748,9663717 +h1,12853:23228472,9663717:0,0,0 +k1,12853:32583029,9663717:9354557 +g1,12853:32583029,9663717 +) +(1,12857:6630773,10479644:25952256,424439,79822 +(1,12855:6630773,10479644:0,0,0 +g1,12855:6630773,10479644 +g1,12855:6630773,10479644 +g1,12855:6303093,10479644 +(1,12855:6303093,10479644:0,0,0 +) +g1,12855:6630773,10479644 +) +g1,12857:7626635,10479644 +g1,12857:8954451,10479644 +h1,12857:11942036,10479644:0,0,0 +k1,12857:32583028,10479644:20640992 +g1,12857:32583028,10479644 +) +(1,12859:6630773,11295571:25952256,424439,106246 +(1,12858:6630773,11295571:0,0,0 +g1,12858:6630773,11295571 +g1,12858:6630773,11295571 +g1,12858:6303093,11295571 +(1,12858:6303093,11295571:0,0,0 +) +g1,12858:6630773,11295571 +) +k1,12859:6630773,11295571:0 +g1,12859:9286405,11295571 +g1,12859:9950313,11295571 +g1,12859:10946175,11295571 +g1,12859:12605945,11295571 +g1,12859:13269853,11295571 +g1,12859:14265715,11295571 +g1,12859:15261577,11295571 +g1,12859:15925485,11295571 +g1,12859:16921347,11295571 +g1,12859:20572840,11295571 +g1,12859:21236748,11295571 +h1,12859:23228472,11295571:0,0,0 +k1,12859:32583029,11295571:9354557 +g1,12859:32583029,11295571 +) +(1,12863:6630773,12111498:25952256,424439,79822 +(1,12861:6630773,12111498:0,0,0 +g1,12861:6630773,12111498 +g1,12861:6630773,12111498 +g1,12861:6303093,12111498 +(1,12861:6303093,12111498:0,0,0 +) +g1,12861:6630773,12111498 +) +g1,12863:7626635,12111498 +g1,12863:8954451,12111498 +h1,12863:11942036,12111498:0,0,0 +k1,12863:32583028,12111498:20640992 +g1,12863:32583028,12111498 +) +(1,12865:6630773,12927425:25952256,424439,106246 +(1,12864:6630773,12927425:0,0,0 +g1,12864:6630773,12927425 +g1,12864:6630773,12927425 +g1,12864:6303093,12927425 +(1,12864:6303093,12927425:0,0,0 +) +g1,12864:6630773,12927425 +) +k1,12865:6630773,12927425:0 +g1,12865:9286405,12927425 +g1,12865:9950313,12927425 +g1,12865:11610083,12927425 +g1,12865:12937899,12927425 +g1,12865:14597669,12927425 +g1,12865:15261577,12927425 +g1,12865:16257439,12927425 +g1,12865:17253301,12927425 +g1,12865:17917209,12927425 +g1,12865:18913071,12927425 +g1,12865:22564564,12927425 +g1,12865:23228472,12927425 +h1,12865:25220196,12927425:0,0,0 +k1,12865:32583029,12927425:7362833 +g1,12865:32583029,12927425 +) +(1,12869:6630773,13743352:25952256,424439,79822 +(1,12867:6630773,13743352:0,0,0 +g1,12867:6630773,13743352 +g1,12867:6630773,13743352 +g1,12867:6303093,13743352 +(1,12867:6303093,13743352:0,0,0 +) +g1,12867:6630773,13743352 +) +g1,12869:7626635,13743352 +g1,12869:8954451,13743352 +g1,12869:12937898,13743352 +h1,12869:16589391,13743352:0,0,0 +k1,12869:32583029,13743352:15993638 +g1,12869:32583029,13743352 +) +] +) +g1,12870:32583029,13823174 +g1,12870:6630773,13823174 +g1,12870:6630773,13823174 +g1,12870:32583029,13823174 +g1,12870:32583029,13823174 +) +h1,12870:6630773,14019782:0,0,0 +v1,12874:6630773,14884862:0,393216,0 +(1,12875:6630773,21375203:25952256,6883557,0 +g1,12875:6630773,21375203 +g1,12875:6237557,21375203 +r1,12938:6368629,21375203:131072,6883557,0 +g1,12875:6567858,21375203 +g1,12875:6764466,21375203 +[1,12875:6764466,21375203:25818563,6883557,0 +(1,12875:6764466,15193160:25818563,701514,196608 +(1,12874:6764466,15193160:0,701514,196608 +r1,12938:7761522,15193160:997056,898122,196608 +k1,12874:6764466,15193160:-997056 +) +(1,12874:6764466,15193160:997056,701514,196608 +) +k1,12874:7945056,15193160:183534 +k1,12874:8272736,15193160:327680 +k1,12874:9084105,15193160:183534 +k1,12874:10789385,15193160:183534 +k1,12874:11632212,15193160:183535 +k1,12874:15726935,15193160:183534 +k1,12874:18883837,15193160:183534 +$1,12874:18883837,15193160 +$1,12874:19309166,15193160 +k1,12874:21716337,15193160:183534 +k1,12874:23091316,15193160:183534 +$1,12874:23091316,15193160 +$1,12874:23411787,15193160 +k1,12874:25818958,15193160:183534 +k1,12874:26994053,15193160:183535 +k1,12874:30386230,15193160:183534 +k1,12874:31331292,15193160:183534 +k1,12875:32583029,15193160:0 +) +(1,12875:6764466,16058240:25818563,513147,134348 +k1,12874:9507803,16058240:261489 +k1,12874:11336912,16058240:261488 +k1,12874:12617486,16058240:261489 +k1,12874:15765180,16058240:261488 +k1,12874:17764684,16058240:261489 +k1,12874:18973824,16058240:261489 +k1,12874:20392022,16058240:261488 +k1,12874:22546191,16058240:261489 +k1,12874:23490564,16058240:261488 +k1,12874:24917283,16058240:261489 +k1,12874:27952910,16058240:261488 +k1,12874:29233484,16058240:261489 +k1,12874:32583029,16058240:0 +) +(1,12875:6764466,16923320:25818563,513147,126483 +k1,12874:8729946,16923320:227465 +k1,12874:9520364,16923320:227464 +k1,12874:13988008,16923320:227465 +k1,12874:17617446,16923320:227464 +k1,12874:19698925,16923320:227465 +k1,12874:20945474,16923320:227464 +k1,12874:22910954,16923320:227465 +k1,12874:23797710,16923320:227464 +k1,12874:24381035,16923320:227465 +k1,12874:26896361,16923320:227464 +k1,12874:30156177,16923320:227465 +k1,12874:31896867,16923320:227464 +k1,12874:32583029,16923320:0 +) +(1,12875:6764466,17788400:25818563,513147,126483 +k1,12874:7347736,17788400:227410 +k1,12874:10728083,17788400:227410 +k1,12874:11638378,17788400:227410 +k1,12874:12884873,17788400:227410 +k1,12874:14850298,17788400:227410 +k1,12874:18286351,17788400:227410 +k1,12874:19901157,17788400:227409 +k1,12874:20894683,17788400:227410 +k1,12874:24596812,17788400:227410 +k1,12874:26710348,17788400:227410 +k1,12874:27956843,17788400:227410 +k1,12874:31923737,17788400:227410 +k1,12874:32583029,17788400:0 +) +(1,12875:6764466,18653480:25818563,513147,134348 +k1,12874:7843353,18653480:269517 +k1,12874:9883652,18653480:269516 +k1,12874:10812461,18653480:269517 +k1,12874:14763791,18653480:269517 +k1,12874:16224752,18653480:269516 +k1,12874:17928197,18653480:269517 +k1,12874:20789008,18653480:269517 +k1,12874:22261765,18653480:269516 +k1,12874:25717642,18653480:269517 +k1,12874:26748687,18653480:269517 +k1,12874:28037288,18653480:269516 +k1,12874:31150412,18653480:269517 +k1,12875:32583029,18653480:0 +) +(1,12875:6764466,19518560:25818563,505283,138281 +k1,12874:8784212,19518560:222749 +k1,12874:13527636,19518560:222750 +k1,12874:14769470,19518560:222749 +$1,12874:14769470,19518560 +$1,12874:15237397,19518560 +k1,12874:17683783,19518560:222749 +k1,12874:22530098,19518560:222750 +k1,12874:23404275,19518560:222749 +k1,12874:25323751,19518560:222749 +k1,12874:28519869,19518560:222750 +$1,12874:28519869,19518560 +$1,12874:28945198,19518560 +k1,12874:31391584,19518560:222749 +k1,12874:32583029,19518560:0 +) +(1,12875:6764466,20383640:25818563,505283,134348 +$1,12874:7084937,20383640 +k1,12874:9505935,20383640:197361 +k1,12874:11233561,20383640:197360 +k1,12874:12082350,20383640:197361 +k1,12874:13027477,20383640:197361 +k1,12874:15379661,20383640:197360 +k1,12874:16412606,20383640:197361 +k1,12874:18345360,20383640:197361 +(1,12874:18345360,20383640:0,435480,115847 +r1,12938:21165609,20383640:2820249,551327,115847 +k1,12874:18345360,20383640:-2820249 +) +(1,12874:18345360,20383640:2820249,435480,115847 +g1,12874:20107196,20383640 +g1,12874:20810620,20383640 +h1,12874:21162332,20383640:0,411205,112570 +) +k1,12874:21362970,20383640:197361 +k1,12874:22751775,20383640:197360 +(1,12874:22751775,20383640:0,452978,115847 +r1,12938:24868601,20383640:2116826,568825,115847 +k1,12874:22751775,20383640:-2116826 +) +(1,12874:22751775,20383640:2116826,452978,115847 +g1,12874:23810188,20383640 +g1,12874:24513612,20383640 +h1,12874:24865324,20383640:0,411205,112570 +) +k1,12874:25065962,20383640:197361 +k1,12874:26961361,20383640:197361 +k1,12874:29248664,20383640:197360 +(1,12874:29248664,20383640:0,452978,115847 +r1,12938:31717201,20383640:2468537,568825,115847 +k1,12874:29248664,20383640:-2468537 +) +(1,12874:29248664,20383640:2468537,452978,115847 +k1,12874:29248664,20383640:3277 +h1,12874:31713924,20383640:0,411205,112570 +) +k1,12874:31914562,20383640:197361 +k1,12875:32583029,20383640:0 +) +(1,12875:6764466,21248720:25818563,513147,126483 +(1,12874:6764466,21248720:0,452978,115847 +r1,12938:8177867,21248720:1413401,568825,115847 +k1,12874:6764466,21248720:-1413401 +) +(1,12874:6764466,21248720:1413401,452978,115847 +k1,12874:6764466,21248720:3277 +h1,12874:8174590,21248720:0,411205,112570 +) +g1,12874:8377096,21248720 +g1,12874:12546496,21248720 +g1,12874:14620055,21248720 +g1,12874:18124265,21248720 +g1,12874:19836720,21248720 +g1,12874:22046594,21248720 +g1,12874:23237383,21248720 +g1,12874:24455697,21248720 +k1,12875:32583029,21248720:5479023 +g1,12875:32583029,21248720 +) +] +g1,12875:32583029,21375203 +) +h1,12875:6630773,21375203:0,0,0 +(1,12877:6630773,23492021:25952256,564462,139132 +(1,12877:6630773,23492021:2450326,534184,12975 +g1,12877:6630773,23492021 +g1,12877:9081099,23492021 +) +g1,12877:12765599,23492021 +g1,12877:14765365,23492021 +g1,12877:19093625,23492021 +g1,12877:20660853,23492021 +k1,12877:32583029,23492021:7350253 +g1,12877:32583029,23492021 +) +(1,12881:6630773,24750317:25952256,513147,126483 +k1,12880:7964329,24750317:158496 +k1,12880:10429037,24750317:158496 +k1,12880:14651421,24750317:158497 +k1,12880:16377538,24750317:158496 +k1,12880:17820540,24750317:158496 +k1,12880:18595074,24750317:158496 +k1,12880:19772656,24750317:158497 +k1,12880:22685630,24750317:158496 +k1,12880:25122813,24750317:158496 +k1,12880:25812806,24750317:158496 +k1,12880:26622731,24750317:158497 +k1,12880:28804979,24750317:158496 +k1,12880:29982560,24750317:158496 +k1,12880:32583029,24750317:0 +) +(1,12881:6630773,25615397:25952256,513147,134348 +k1,12880:11415884,25615397:161546 +k1,12880:12228859,25615397:161547 +k1,12880:12746265,25615397:161546 +k1,12880:15045595,25615397:161546 +$1,12880:15045595,25615397 +$1,12880:15513522,25615397 +k1,12880:17568404,25615397:161547 +k1,12880:18412835,25615397:161546 +k1,12880:19921801,25615397:161546 +k1,12880:21969474,25615397:161547 +k1,12880:23287730,25615397:161546 +k1,12880:24108569,25615397:161547 +k1,12880:25289200,25615397:161546 +k1,12880:26800132,25615397:161546 +k1,12880:27620971,25615397:161547 +k1,12880:28801602,25615397:161546 +k1,12880:32583029,25615397:0 +) +(1,12881:6630773,26480477:25952256,513147,126483 +k1,12880:8777295,26480477:231560 +k1,12880:10883186,26480477:231561 +k1,12880:14045516,26480477:231560 +k1,12880:15268636,26480477:231560 +k1,12880:18805178,26480477:231561 +k1,12880:19688166,26480477:231560 +k1,12880:20938811,26480477:231560 +k1,12880:23181017,26480477:231561 +k1,12880:24028615,26480477:231560 +k1,12880:25279260,26480477:231560 +k1,12880:27406778,26480477:231561 +k1,12880:28297630,26480477:231560 +k1,12880:32583029,26480477:0 +) +(1,12881:6630773,27345557:25952256,513147,134348 +g1,12880:9760772,27345557 +g1,12880:11473227,27345557 +g1,12880:12288494,27345557 +g1,12880:14521305,27345557 +g1,12880:16476244,27345557 +g1,12880:17326901,27345557 +g1,12880:19550537,27345557 +g1,12880:23487284,27345557 +g1,12880:25080464,27345557 +g1,12880:28363817,27345557 +k1,12881:32583029,27345557:2645038 +g1,12881:32583029,27345557 +) +v1,12883:6630773,28030412:0,393216,0 +(1,12902:6630773,32417700:25952256,4780504,196608 +g1,12902:6630773,32417700 +g1,12902:6630773,32417700 +g1,12902:6434165,32417700 +(1,12902:6434165,32417700:0,4780504,196608 +r1,12938:32779637,32417700:26345472,4977112,196608 +k1,12902:6434165,32417700:-26345472 +) +(1,12902:6434165,32417700:26345472,4780504,196608 +[1,12902:6630773,32417700:25952256,4583896,0 +(1,12885:6630773,28258243:25952256,424439,106246 +(1,12884:6630773,28258243:0,0,0 +g1,12884:6630773,28258243 +g1,12884:6630773,28258243 +g1,12884:6303093,28258243 +(1,12884:6303093,28258243:0,0,0 +) +g1,12884:6630773,28258243 +) +k1,12885:6630773,28258243:0 +g1,12885:9286405,28258243 +g1,12885:9950313,28258243 +g1,12885:11942037,28258243 +g1,12885:13601807,28258243 +g1,12885:14265715,28258243 +g1,12885:15261577,28258243 +g1,12885:16257439,28258243 +g1,12885:16921347,28258243 +h1,12885:17585255,28258243:0,0,0 +k1,12885:32583029,28258243:14997774 +g1,12885:32583029,28258243 +) +(1,12889:6630773,29074170:25952256,424439,79822 +(1,12887:6630773,29074170:0,0,0 +g1,12887:6630773,29074170 +g1,12887:6630773,29074170 +g1,12887:6303093,29074170 +(1,12887:6303093,29074170:0,0,0 +) +g1,12887:6630773,29074170 +) +g1,12889:7626635,29074170 +g1,12889:8954451,29074170 +k1,12889:8954451,29074170:0 +h1,12889:11942036,29074170:0,0,0 +k1,12889:32583028,29074170:20640992 +g1,12889:32583028,29074170 +) +(1,12891:6630773,29890097:25952256,424439,106246 +(1,12890:6630773,29890097:0,0,0 +g1,12890:6630773,29890097 +g1,12890:6630773,29890097 +g1,12890:6303093,29890097 +(1,12890:6303093,29890097:0,0,0 +) +g1,12890:6630773,29890097 +) +k1,12891:6630773,29890097:0 +g1,12891:9286405,29890097 +g1,12891:9950313,29890097 +g1,12891:11942037,29890097 +g1,12891:13601807,29890097 +g1,12891:14265715,29890097 +g1,12891:15261577,29890097 +g1,12891:16257439,29890097 +g1,12891:16921347,29890097 +h1,12891:17585255,29890097:0,0,0 +k1,12891:32583029,29890097:14997774 +g1,12891:32583029,29890097 +) +(1,12895:6630773,30706024:25952256,424439,79822 +(1,12893:6630773,30706024:0,0,0 +g1,12893:6630773,30706024 +g1,12893:6630773,30706024 +g1,12893:6303093,30706024 +(1,12893:6303093,30706024:0,0,0 +) +g1,12893:6630773,30706024 +) +g1,12895:7626635,30706024 +g1,12895:8954451,30706024 +k1,12895:8954451,30706024:0 +h1,12895:11942036,30706024:0,0,0 +k1,12895:32583028,30706024:20640992 +g1,12895:32583028,30706024 +) +(1,12897:6630773,31521951:25952256,424439,106246 +(1,12896:6630773,31521951:0,0,0 +g1,12896:6630773,31521951 +g1,12896:6630773,31521951 +g1,12896:6303093,31521951 +(1,12896:6303093,31521951:0,0,0 +) +g1,12896:6630773,31521951 +) +k1,12897:6630773,31521951:0 +g1,12897:9286405,31521951 +g1,12897:9950313,31521951 +g1,12897:11942037,31521951 +g1,12897:13601807,31521951 +g1,12897:14265715,31521951 +g1,12897:15261577,31521951 +g1,12897:16257439,31521951 +g1,12897:16921347,31521951 +g1,12897:17917209,31521951 +g1,12897:21568702,31521951 +g1,12897:22232610,31521951 +h1,12897:24224334,31521951:0,0,0 +k1,12897:32583029,31521951:8358695 +g1,12897:32583029,31521951 +) +(1,12901:6630773,32337878:25952256,424439,79822 +(1,12899:6630773,32337878:0,0,0 +g1,12899:6630773,32337878 +g1,12899:6630773,32337878 +g1,12899:6303093,32337878 +(1,12899:6303093,32337878:0,0,0 +) +g1,12899:6630773,32337878 +) +g1,12901:7626635,32337878 +g1,12901:8954451,32337878 +h1,12901:11610082,32337878:0,0,0 +k1,12901:32583030,32337878:20972948 +g1,12901:32583030,32337878 +) +] +) +g1,12902:32583029,32417700 +g1,12902:6630773,32417700 +g1,12902:6630773,32417700 +g1,12902:32583029,32417700 +g1,12902:32583029,32417700 +) +h1,12902:6630773,32614308:0,0,0 +v1,12906:6630773,33479388:0,393216,0 +(1,12938:6630773,45389665:25952256,12303493,0 +g1,12938:6630773,45389665 +g1,12938:6237557,45389665 +r1,12938:6368629,45389665:131072,12303493,0 +g1,12938:6567858,45389665 +g1,12938:6764466,45389665 +[1,12938:6764466,45389665:25818563,12303493,0 +(1,12907:6764466,33840565:25818563,754393,260573 +(1,12906:6764466,33840565:0,754393,260573 +r1,12938:7856192,33840565:1091726,1014966,260573 +k1,12906:6764466,33840565:-1091726 +) +(1,12906:6764466,33840565:1091726,754393,260573 +) +k1,12906:8016741,33840565:160549 +k1,12906:8344421,33840565:327680 +k1,12906:11210951,33840565:160548 +k1,12906:14397297,33840565:160549 +k1,12906:15704071,33840565:160549 +(1,12906:15704071,33840565:0,452978,115847 +r1,12938:18172608,33840565:2468537,568825,115847 +k1,12906:15704071,33840565:-2468537 +) +(1,12906:15704071,33840565:2468537,452978,115847 +k1,12906:15704071,33840565:3277 +h1,12906:18169331,33840565:0,411205,112570 +) +k1,12906:18333156,33840565:160548 +k1,12906:19685150,33840565:160549 +k1,12906:23331559,33840565:160549 +k1,12906:26517905,33840565:160549 +k1,12906:27824678,33840565:160548 +(1,12906:27824678,33840565:0,452978,115847 +r1,12938:30293215,33840565:2468537,568825,115847 +k1,12906:27824678,33840565:-2468537 +) +(1,12906:27824678,33840565:2468537,452978,115847 +k1,12906:27824678,33840565:3277 +h1,12906:30289938,33840565:0,411205,112570 +) +k1,12906:30453764,33840565:160549 +k1,12906:32583029,33840565:0 +) +(1,12907:6764466,34705645:25818563,513147,134348 +k1,12906:7800122,34705645:220388 +k1,12906:12414699,34705645:220388 +k1,12906:14489756,34705645:220388 +k1,12906:15519515,34705645:220389 +k1,12906:16095763,34705645:220388 +k1,12906:18189170,34705645:220388 +k1,12906:19428643,34705645:220388 +k1,12906:20308323,34705645:220388 +k1,12906:21547796,34705645:220388 +k1,12906:25723282,34705645:220388 +k1,12906:27410367,34705645:220389 +k1,12906:29900922,34705645:220388 +k1,12906:30579407,34705645:220388 +k1,12906:31331292,34705645:220388 +k1,12907:32583029,34705645:0 +) +(1,12907:6764466,35570725:25818563,513147,134348 +k1,12906:8497378,35570725:248522 +k1,12906:9397328,35570725:248522 +k1,12906:11904876,35570725:248522 +k1,12906:14038868,35570725:248521 +k1,12906:15306475,35570725:248522 +k1,12906:16423349,35570725:248522 +k1,12906:17663431,35570725:248522 +k1,12906:21123217,35570725:248522 +k1,12906:22161448,35570725:248522 +k1,12906:22887727,35570725:248522 +k1,12906:24004600,35570725:248521 +k1,12906:25244682,35570725:248522 +k1,12906:28704468,35570725:248522 +k1,12906:29569028,35570725:248522 +k1,12906:32583029,35570725:0 +) +(1,12907:6764466,36435805:25818563,513147,126483 +k1,12906:11255414,36435805:204893 +k1,12906:14391078,36435805:204894 +k1,12906:15543622,36435805:204893 +k1,12906:17215212,36435805:204894 +k1,12906:18943162,36435805:204893 +k1,12906:20016408,36435805:204894 +k1,12906:21751567,36435805:204893 +k1,12906:22607888,36435805:204893 +k1,12906:23628050,36435805:204894 +k1,12906:25036184,36435805:204893 +k1,12906:28347485,36435805:204894 +k1,12906:29030135,36435805:204893 +k1,12906:30103381,36435805:204894 +k1,12906:31299834,36435805:204893 +k1,12907:32583029,36435805:0 +) +(1,12907:6764466,37300885:25818563,513147,134348 +k1,12906:7973877,37300885:219162 +k1,12906:8805801,37300885:219162 +k1,12906:11955732,37300885:219161 +k1,12906:13122545,37300885:219162 +$1,12906:13122545,37300885 +k1,12906:13808963,37300885:218491 +k1,12906:14595650,37300885:218490 +$1,12906:15980426,37300885 +k1,12906:16373258,37300885:219162 +k1,12906:17460772,37300885:219162 +k1,12906:19210199,37300885:219161 +k1,12906:20080789,37300885:219162 +k1,12906:21566107,37300885:219162 +k1,12906:22804354,37300885:219162 +k1,12906:25623985,37300885:219162 +k1,12906:26790798,37300885:219162 +k1,12906:28461581,37300885:219161 +k1,12906:29699828,37300885:219162 +k1,12906:31773659,37300885:219162 +k1,12906:32583029,37300885:0 +) +(1,12907:6764466,38165965:25818563,485622,95027 +g1,12906:8156976,38165965 +g1,12906:8907233,38165965 +$1,12906:10690468,38165965 +k1,12907:32583028,38165965:21840132 +g1,12907:32583028,38165965 +) +v1,12909:6764466,38850820:0,393216,0 +(1,12922:6764466,41606254:25818563,3148650,196608 +g1,12922:6764466,41606254 +g1,12922:6764466,41606254 +g1,12922:6567858,41606254 +(1,12922:6567858,41606254:0,3148650,196608 +r1,12938:32779637,41606254:26211779,3345258,196608 +k1,12922:6567857,41606254:-26211780 +) +(1,12922:6567858,41606254:26211779,3148650,196608 +[1,12922:6764466,41606254:25818563,2952042,0 +(1,12911:6764466,39078651:25818563,424439,106246 +(1,12910:6764466,39078651:0,0,0 +g1,12910:6764466,39078651 +g1,12910:6764466,39078651 +g1,12910:6436786,39078651 +(1,12910:6436786,39078651:0,0,0 +) +g1,12910:6764466,39078651 +) +k1,12911:6764466,39078651:0 +g1,12911:9420098,39078651 +g1,12911:10084006,39078651 +g1,12911:12407684,39078651 +g1,12911:14067454,39078651 +g1,12911:14731362,39078651 +g1,12911:15727224,39078651 +g1,12911:16723086,39078651 +g1,12911:17386994,39078651 +h1,12911:18050902,39078651:0,0,0 +k1,12911:32583029,39078651:14532127 +g1,12911:32583029,39078651 +) +(1,12915:6764466,39894578:25818563,424439,79822 +(1,12913:6764466,39894578:0,0,0 +g1,12913:6764466,39894578 +g1,12913:6764466,39894578 +g1,12913:6436786,39894578 +(1,12913:6436786,39894578:0,0,0 +) +g1,12913:6764466,39894578 +) +g1,12915:7760328,39894578 +g1,12915:9088144,39894578 +k1,12915:9088144,39894578:0 +h1,12915:12075729,39894578:0,0,0 +k1,12915:32583029,39894578:20507300 +g1,12915:32583029,39894578 +) +(1,12917:6764466,40710505:25818563,424439,106246 +(1,12916:6764466,40710505:0,0,0 +g1,12916:6764466,40710505 +g1,12916:6764466,40710505 +g1,12916:6436786,40710505 +(1,12916:6436786,40710505:0,0,0 +) +g1,12916:6764466,40710505 +) +k1,12917:6764466,40710505:0 +g1,12917:9420098,40710505 +g1,12917:10084006,40710505 +g1,12917:12407684,40710505 +g1,12917:14067454,40710505 +g1,12917:14731362,40710505 +g1,12917:15727224,40710505 +g1,12917:16723086,40710505 +g1,12917:17386994,40710505 +g1,12917:18382856,40710505 +g1,12917:22034349,40710505 +g1,12917:22698257,40710505 +h1,12917:24689981,40710505:0,0,0 +k1,12917:32583029,40710505:7893048 +g1,12917:32583029,40710505 +) +(1,12921:6764466,41526432:25818563,424439,79822 +(1,12919:6764466,41526432:0,0,0 +g1,12919:6764466,41526432 +g1,12919:6764466,41526432 +g1,12919:6436786,41526432 +(1,12919:6436786,41526432:0,0,0 +) +g1,12919:6764466,41526432 +) +g1,12921:7760328,41526432 +g1,12921:9088144,41526432 +h1,12921:11743775,41526432:0,0,0 +k1,12921:32583029,41526432:20839254 +g1,12921:32583029,41526432 +) +] +) +g1,12922:32583029,41606254 +g1,12922:6764466,41606254 +g1,12922:6764466,41606254 +g1,12922:32583029,41606254 +g1,12922:32583029,41606254 +) +h1,12922:6764466,41802862:0,0,0 +(1,12926:6764466,42667942:25818563,513147,134348 +h1,12925:6764466,42667942:983040,0,0 +k1,12925:9761666,42667942:230925 +k1,12925:13443717,42667942:230925 +k1,12925:14030502,42667942:230925 +$1,12925:14030502,42667942 +$1,12925:14498429,42667942 +k1,12925:16622689,42667942:230925 +k1,12925:18421235,42667942:230925 +k1,12925:19008021,42667942:230926 +k1,12925:21839415,42667942:230925 +k1,12925:25278983,42667942:230925 +k1,12925:27077529,42667942:230925 +k1,12925:31380206,42667942:230925 +k1,12925:32227169,42667942:230925 +k1,12925:32583029,42667942:0 +) +(1,12926:6764466,43533022:25818563,513147,134348 +k1,12925:8213249,43533022:257338 +k1,12925:9129879,43533022:257338 +k1,12925:13298406,43533022:257338 +k1,12925:14424096,43533022:257338 +k1,12925:16211700,43533022:257338 +k1,12925:17120466,43533022:257338 +k1,12925:18683936,43533022:257337 +k1,12925:21012212,43533022:257338 +k1,12925:23860188,43533022:257338 +k1,12925:24473386,43533022:257338 +k1,12925:27836475,43533022:257338 +k1,12925:28776698,43533022:257338 +k1,12925:32583029,43533022:0 +) +(1,12926:6764466,44398102:25818563,513147,134348 +k1,12925:8181894,44398102:225983 +k1,12925:8939375,44398102:225984 +k1,12925:11911972,44398102:225983 +k1,12925:13329401,44398102:225984 +k1,12925:14171422,44398102:225983 +k1,12925:15416491,44398102:225984 +k1,12925:17009555,44398102:225983 +k1,12925:17894831,44398102:225984 +k1,12925:18476674,44398102:225983 +k1,12925:20575677,44398102:225984 +k1,12925:22521980,44398102:225983 +k1,12925:24113079,44398102:225984 +k1,12925:26224533,44398102:225983 +k1,12925:27469602,44398102:225984 +k1,12925:28227082,44398102:225983 +k1,12925:29112358,44398102:225984 +k1,12925:31955194,44398102:225983 +k1,12925:32583029,44398102:0 +) +(1,12926:6764466,45263182:25818563,505283,126483 +k1,12925:7319992,45263182:199666 +k1,12925:10625410,45263182:199667 +k1,12925:12016521,45263182:199666 +k1,12925:13084539,45263182:199666 +k1,12925:14814472,45263182:199667 +k1,12925:15665566,45263182:199666 +k1,12925:18550242,45263182:199666 +k1,12925:19768994,45263182:199667 +k1,12925:22747387,45263182:199666 +$1,12925:22747387,45263182 +$1,12925:23215314,45263182 +k1,12925:25308315,45263182:199666 +k1,12925:26269510,45263182:199667 +k1,12925:27041305,45263182:199666 +k1,12925:28621815,45263182:199666 +k1,12925:30748240,45263182:199667 +k1,12925:31563944,45263182:199666 +k1,12925:32583029,45263182:0 +) +] +g1,12938:32583029,45389665 +) +] +(1,12938:32583029,45706769:0,0,0 +g1,12938:32583029,45706769 +) +) +] +(1,12938:6630773,47279633:25952256,0,0 +h1,12938:6630773,47279633:25952256,0,0 +) +] +(1,12938:4262630,4025873:0,0,0 +[1,12938:-473656,4025873:0,0,0 +(1,12938:-473656,-710413:0,0,0 +(1,12938:-473656,-710413:0,0,0 +g1,12938:-473656,-710413 +) +g1,12938:-473656,-710413 ) ] ) ] !29742 -}206 -Input:2151:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}207 Input:2154:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2155:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2156:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -229681,964 +229876,964 @@ Input:2158:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2159:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2160:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2161:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2162:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2163:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2164:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{207 -[1,12985:4262630,47279633:28320399,43253760,0 -(1,12985:4262630,4025873:0,0,0 -[1,12985:-473656,4025873:0,0,0 -(1,12985:-473656,-710413:0,0,0 -(1,12985:-473656,-644877:0,0,0 -k1,12985:-473656,-644877:-65536 +{208 +[1,12983:4262630,47279633:28320399,43253760,0 +(1,12983:4262630,4025873:0,0,0 +[1,12983:-473656,4025873:0,0,0 +(1,12983:-473656,-710413:0,0,0 +(1,12983:-473656,-644877:0,0,0 +k1,12983:-473656,-644877:-65536 ) -(1,12985:-473656,4736287:0,0,0 -k1,12985:-473656,4736287:5209943 +(1,12983:-473656,4736287:0,0,0 +k1,12983:-473656,4736287:5209943 ) -g1,12985:-473656,-710413 +g1,12983:-473656,-710413 ) ] ) -[1,12985:6630773,47279633:25952256,43253760,0 -[1,12985:6630773,4812305:25952256,786432,0 -(1,12985:6630773,4812305:25952256,513147,126483 -(1,12985:6630773,4812305:25952256,513147,126483 -g1,12985:3078558,4812305 -[1,12985:3078558,4812305:0,0,0 -(1,12985:3078558,2439708:0,1703936,0 -k1,12985:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,12985:2537886,2439708:1179648,16384,0 +[1,12983:6630773,47279633:25952256,43253760,0 +[1,12983:6630773,4812305:25952256,786432,0 +(1,12983:6630773,4812305:25952256,513147,126483 +(1,12983:6630773,4812305:25952256,513147,126483 +g1,12983:3078558,4812305 +[1,12983:3078558,4812305:0,0,0 +(1,12983:3078558,2439708:0,1703936,0 +k1,12983:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,12983:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,12985:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,12983:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,12985:3078558,4812305:0,0,0 -(1,12985:3078558,2439708:0,1703936,0 -g1,12985:29030814,2439708 -g1,12985:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,12985:36151628,1915420:16384,1179648,0 +[1,12983:3078558,4812305:0,0,0 +(1,12983:3078558,2439708:0,1703936,0 +g1,12983:29030814,2439708 +g1,12983:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,12983:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,12985:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,12983:37855564,2439708:1179648,16384,0 ) ) -k1,12985:3078556,2439708:-34777008 +k1,12983:3078556,2439708:-34777008 ) ] -[1,12985:3078558,4812305:0,0,0 -(1,12985:3078558,49800853:0,16384,2228224 -k1,12985:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,12985:2537886,49800853:1179648,16384,0 +[1,12983:3078558,4812305:0,0,0 +(1,12983:3078558,49800853:0,16384,2228224 +k1,12983:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,12983:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,12985:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,12983:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,12985:3078558,4812305:0,0,0 -(1,12985:3078558,49800853:0,16384,2228224 -g1,12985:29030814,49800853 -g1,12985:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,12985:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,12985:37855564,49800853:1179648,16384,0 -) -) -k1,12985:3078556,49800853:-34777008 -) -] -g1,12985:6630773,4812305 -k1,12985:19575446,4812305:11749296 -g1,12985:21198117,4812305 -g1,12985:21985204,4812305 -g1,12985:24539797,4812305 -g1,12985:25949476,4812305 -g1,12985:28728857,4812305 -g1,12985:29852144,4812305 -) -) -] -[1,12985:6630773,45706769:25952256,40108032,0 -(1,12985:6630773,45706769:25952256,40108032,0 -(1,12985:6630773,45706769:0,0,0 -g1,12985:6630773,45706769 -) -[1,12985:6630773,45706769:25952256,40108032,0 -v1,12940:6630773,6254097:0,393216,0 -(1,12940:6630773,9244151:25952256,3383270,0 -g1,12940:6630773,9244151 -g1,12940:6237557,9244151 -r1,12985:6368629,9244151:131072,3383270,0 -g1,12940:6567858,9244151 -g1,12940:6764466,9244151 -[1,12940:6764466,9244151:25818563,3383270,0 -(1,12928:6764466,6374028:25818563,513147,126483 -k1,12927:8309553,6374028:178006 -k1,12927:9146851,6374028:178006 -k1,12927:9680717,6374028:178006 -k1,12927:13217442,6374028:178005 -k1,12927:17176875,6374028:178006 -k1,12927:18501106,6374028:178006 -k1,12927:19698197,6374028:178006 -k1,12927:22405893,6374028:178006 -k1,12927:25113589,6374028:178006 -k1,12927:26310679,6374028:178005 -k1,12927:29419455,6374028:178006 -k1,12927:30213499,6374028:178006 -k1,12927:31410590,6374028:178006 -k1,12927:32583029,6374028:0 -) -(1,12928:6764466,7239108:25818563,513147,134348 -k1,12927:8290144,7239108:176292 -k1,12927:10209694,7239108:176292 -k1,12927:11761586,7239108:176291 -k1,12927:12553916,7239108:176292 -k1,12927:14224429,7239108:176292 -k1,12927:17335423,7239108:176292 -k1,12927:18714955,7239108:176291 -k1,12927:19422744,7239108:176292 -k1,12927:20665307,7239108:176292 -k1,12927:21860684,7239108:176292 -k1,12927:23404056,7239108:176291 -k1,12927:24527999,7239108:176292 -k1,12927:28418872,7239108:176292 -k1,12928:32583029,7239108:0 -k1,12928:32583029,7239108:0 -) -v1,12930:6764466,7923963:0,393216,0 -(1,12937:6764466,9047543:25818563,1516796,196608 -g1,12937:6764466,9047543 -g1,12937:6764466,9047543 -g1,12937:6567858,9047543 -(1,12937:6567858,9047543:0,1516796,196608 -r1,12985:32779637,9047543:26211779,1713404,196608 -k1,12937:6567857,9047543:-26211780 -) -(1,12937:6567858,9047543:26211779,1516796,196608 -[1,12937:6764466,9047543:25818563,1320188,0 -(1,12932:6764466,8151794:25818563,424439,106246 -(1,12931:6764466,8151794:0,0,0 -g1,12931:6764466,8151794 -g1,12931:6764466,8151794 -g1,12931:6436786,8151794 -(1,12931:6436786,8151794:0,0,0 -) -g1,12931:6764466,8151794 -) -k1,12932:6764466,8151794:0 -g1,12932:9420098,8151794 -g1,12932:10084006,8151794 -g1,12932:11079868,8151794 -g1,12932:12739638,8151794 -g1,12932:13403546,8151794 -g1,12932:14399408,8151794 -g1,12932:15395270,8151794 -g1,12932:16059178,8151794 -g1,12932:17055040,8151794 -g1,12932:17718948,8151794 -h1,12932:18050902,8151794:0,0,0 -k1,12932:32583029,8151794:14532127 -g1,12932:32583029,8151794 -) -(1,12936:6764466,8967721:25818563,424439,79822 -(1,12934:6764466,8967721:0,0,0 -g1,12934:6764466,8967721 -g1,12934:6764466,8967721 -g1,12934:6436786,8967721 -(1,12934:6436786,8967721:0,0,0 -) -g1,12934:6764466,8967721 -) -g1,12936:7760328,8967721 -g1,12936:9088144,8967721 -h1,12936:11743775,8967721:0,0,0 -k1,12936:32583029,8967721:20839254 -g1,12936:32583029,8967721 -) -] -) -g1,12937:32583029,9047543 -g1,12937:6764466,9047543 -g1,12937:6764466,9047543 -g1,12937:32583029,9047543 -g1,12937:32583029,9047543 -) -h1,12937:6764466,9244151:0,0,0 -] -g1,12940:32583029,9244151 -) -h1,12940:6630773,9244151:0,0,0 -(1,12942:6630773,11360969:25952256,564462,12975 -(1,12942:6630773,11360969:2450326,534184,12975 -g1,12942:6630773,11360969 -g1,12942:9081099,11360969 -) -g1,12942:12986914,11360969 -g1,12942:15427868,11360969 -g1,12942:17427634,11360969 -g1,12942:18053372,11360969 -k1,12942:32583029,11360969:10236000 -g1,12942:32583029,11360969 -) -(1,12946:6630773,12619265:25952256,505283,134348 -k1,12945:8278765,12619265:184573 -k1,12945:10957638,12619265:184573 -k1,12945:14412458,12619265:184573 -k1,12945:15701313,12619265:184573 -k1,12945:17261487,12619265:184573 -k1,12945:18193827,12619265:184574 -k1,12945:21531337,12619265:184573 -k1,12945:22477438,12619265:184573 -k1,12945:25284762,12619265:184573 -k1,12945:28765796,12619265:184573 -k1,12945:29848212,12619265:184573 -k1,12946:32583029,12619265:0 -) -(1,12946:6630773,13484345:25952256,513147,134348 -k1,12945:9587393,13484345:162165 -k1,12945:13019805,13484345:162165 -k1,12945:13841263,13484345:162166 -k1,12945:16819510,13484345:162165 -k1,12945:20134612,13484345:162165 -k1,12945:21058305,13484345:162165 -k1,12945:25284358,13484345:162166 -k1,12945:26438083,13484345:162165 -k1,12945:28363166,13484345:162165 -k1,12945:32583029,13484345:0 -) -(1,12946:6630773,14349425:25952256,505283,134348 -k1,12945:9640186,14349425:178258 -k1,12945:11198632,14349425:178258 -k1,12945:13113594,14349425:178258 -k1,12945:15043629,14349425:178258 -k1,12945:18517693,14349425:178258 -k1,12945:20089901,14349425:178257 -k1,12945:21575602,14349425:178258 -k1,12945:24248160,14349425:178258 -k1,12945:27696665,14349425:178258 -k1,12945:29324579,14349425:178258 -k1,12945:30118875,14349425:178258 -k1,12945:32583029,14349425:0 -) -(1,12946:6630773,15214505:25952256,505283,95026 -g1,12945:7481430,15214505 -k1,12946:32583029,15214505:19939328 -g1,12946:32583029,15214505 -) -(1,12948:6630773,16079585:25952256,513147,126483 -h1,12947:6630773,16079585:983040,0,0 -k1,12947:8327391,16079585:243685 -k1,12947:9102572,16079585:243684 -k1,12947:11976217,16079585:243685 -k1,12947:12871329,16079585:243684 -k1,12947:15902916,16079585:243685 -k1,12947:17212872,16079585:243685 -k1,12947:18832157,16079585:243684 -k1,12947:24111628,16079585:243685 -k1,12947:26271585,16079585:243684 -k1,12947:28082891,16079585:243685 -k1,12947:28682435,16079585:243684 -k1,12947:31524623,16079585:243685 -k1,12948:32583029,16079585:0 -) -(1,12948:6630773,16944665:25952256,513147,102891 -k1,12947:9666494,16944665:206532 -k1,12947:10945195,16944665:206532 -k1,12947:12437543,16944665:206532 -k1,12947:14211696,16944665:206532 -k1,12947:15437313,16944665:206532 -k1,12947:18173535,16944665:206532 -$1,12947:18173535,16944665 -$1,12947:18494006,16944665 -k1,12947:18874209,16944665:206533 -$1,12947:18874209,16944665 -$1,12947:19319198,16944665 -k1,12947:19525730,16944665:206532 -k1,12947:20923707,16944665:206532 -k1,12947:22832209,16944665:206532 -k1,12947:27324140,16944665:206532 -k1,12947:28158507,16944665:206532 -k1,12947:29816661,16944665:206532 -k1,12947:31563944,16944665:206532 -k1,12947:32583029,16944665:0 -) -(1,12948:6630773,17809745:25952256,513147,126483 -k1,12947:10276832,17809745:160199 -k1,12947:11830982,17809745:160199 -k1,12947:13876651,17809745:160198 -k1,12947:16799193,17809745:160199 -k1,12947:18970037,17809745:160199 -k1,12947:20121796,17809745:160199 -k1,12947:22883118,17809745:160198 -k1,12947:27400151,17809745:160199 -k1,12947:28579435,17809745:160199 -k1,12947:32583029,17809745:0 -) -(1,12948:6630773,18674825:25952256,505283,134348 -k1,12947:7787898,18674825:222582 -k1,12947:8772008,18674825:222582 -k1,12947:10013675,18674825:222582 -k1,12947:14859822,18674825:222582 -k1,12947:18484378,18674825:222582 -k1,12947:22662057,18674825:222581 -k1,12947:26120151,18674825:222582 -(1,12947:26120151,18674825:0,414482,115847 -r1,12985:26478417,18674825:358266,530329,115847 -k1,12947:26120151,18674825:-358266 -) -(1,12947:26120151,18674825:358266,414482,115847 -k1,12947:26120151,18674825:3277 -h1,12947:26475140,18674825:0,411205,112570 -) -k1,12947:26700999,18674825:222582 -k1,12947:29785538,18674825:222582 -k1,12947:31027205,18674825:222582 -k1,12948:32583029,18674825:0 -) -(1,12948:6630773,19539905:25952256,513147,134348 -k1,12947:7868442,19539905:201545 -k1,12947:8729279,19539905:201545 -k1,12947:10941469,19539905:201545 -k1,12947:11794441,19539905:201544 -k1,12947:12743752,19539905:201545 -k1,12947:15119782,19539905:201545 -k1,12947:16004212,19539905:201545 -k1,12947:16994155,19539905:201545 -k1,12947:20674351,19539905:201545 -k1,12947:21894981,19539905:201545 -k1,12947:24109792,19539905:201545 -k1,12947:24970628,19539905:201544 -k1,12947:26191258,19539905:201545 -k1,12947:28370680,19539905:201545 -k1,12947:31350952,19539905:201545 -k1,12947:32583029,19539905:0 -) -(1,12948:6630773,20404985:25952256,513147,134348 -g1,12947:9108689,20404985 -h1,12947:10651407,20404985:0,0,0 -g1,12947:10850636,20404985 -g1,12947:11859235,20404985 -g1,12947:13556617,20404985 -h1,12947:14751994,20404985:0,0,0 -g1,12947:14951223,20404985 -g1,12947:16098103,20404985 -g1,12947:18958749,20404985 -g1,12947:21146340,20404985 -g1,12947:21146340,20404985 -k1,12948:32583029,20404985:11436689 -g1,12948:32583029,20404985 -) -v1,12950:6630773,21089840:0,393216,0 -(1,12964:6630773,24530129:25952256,3833505,196608 -g1,12964:6630773,24530129 -g1,12964:6630773,24530129 -g1,12964:6434165,24530129 -(1,12964:6434165,24530129:0,3833505,196608 -r1,12985:32779637,24530129:26345472,4030113,196608 -k1,12964:6434165,24530129:-26345472 -) -(1,12964:6434165,24530129:26345472,3833505,196608 -[1,12964:6630773,24530129:25952256,3636897,0 -(1,12952:6630773,21317671:25952256,424439,79822 -(1,12951:6630773,21317671:0,0,0 -g1,12951:6630773,21317671 -g1,12951:6630773,21317671 -g1,12951:6303093,21317671 -(1,12951:6303093,21317671:0,0,0 -) -g1,12951:6630773,21317671 -) -k1,12952:6630773,21317671:0 -h1,12952:9286405,21317671:0,0,0 -k1,12952:32583029,21317671:23296624 -g1,12952:32583029,21317671 -) -(1,12956:6630773,22133598:25952256,424439,79822 -(1,12954:6630773,22133598:0,0,0 -g1,12954:6630773,22133598 -g1,12954:6630773,22133598 -g1,12954:6303093,22133598 -(1,12954:6303093,22133598:0,0,0 -) -g1,12954:6630773,22133598 -) -g1,12956:7626635,22133598 -g1,12956:8954451,22133598 -g1,12956:12605944,22133598 -g1,12956:12937898,22133598 -g1,12956:16257437,22133598 -g1,12956:19908930,22133598 -g1,12956:23560423,22133598 -g1,12956:23892377,22133598 -h1,12956:26879962,22133598:0,0,0 -k1,12956:32583029,22133598:5703067 -g1,12956:32583029,22133598 -) -(1,12958:6630773,22949525:25952256,424439,86428 -(1,12957:6630773,22949525:0,0,0 -g1,12957:6630773,22949525 -g1,12957:6630773,22949525 -g1,12957:6303093,22949525 -(1,12957:6303093,22949525:0,0,0 -) -g1,12957:6630773,22949525 -) -k1,12958:6630773,22949525:0 -g1,12958:9286405,22949525 -g1,12958:9950313,22949525 -g1,12958:11278129,22949525 -g1,12958:12937899,22949525 -g1,12958:13601807,22949525 -g1,12958:14929623,22949525 -g1,12958:15925485,22949525 -g1,12958:16589393,22949525 -h1,12958:17253301,22949525:0,0,0 -k1,12958:32583029,22949525:15329728 -g1,12958:32583029,22949525 -) -(1,12963:6630773,23765452:25952256,424439,79822 -(1,12960:6630773,23765452:0,0,0 -g1,12960:6630773,23765452 -g1,12960:6630773,23765452 -g1,12960:6303093,23765452 -(1,12960:6303093,23765452:0,0,0 -) -g1,12960:6630773,23765452 -) -g1,12963:7626635,23765452 -g1,12963:7958589,23765452 -g1,12963:9286405,23765452 -g1,12963:12605944,23765452 -g1,12963:12937898,23765452 -g1,12963:15925483,23765452 -g1,12963:16257437,23765452 -g1,12963:19245022,23765452 -g1,12963:22564561,23765452 -g1,12963:25884100,23765452 -g1,12963:29203639,23765452 -h1,12963:32191224,23765452:0,0,0 -k1,12963:32583029,23765452:391805 -g1,12963:32583029,23765452 -) -(1,12963:6630773,24450307:25952256,424439,79822 -h1,12963:6630773,24450307:0,0,0 -g1,12963:7626635,24450307 -g1,12963:7958589,24450307 -g1,12963:9286405,24450307 -g1,12963:12605944,24450307 -g1,12963:15925483,24450307 -g1,12963:16257437,24450307 -h1,12963:18913068,24450307:0,0,0 -k1,12963:32583029,24450307:13669961 -g1,12963:32583029,24450307 -) -] -) -g1,12964:32583029,24530129 -g1,12964:6630773,24530129 -g1,12964:6630773,24530129 -g1,12964:32583029,24530129 -g1,12964:32583029,24530129 -) -h1,12964:6630773,24726737:0,0,0 -v1,12968:6630773,25591817:0,393216,0 -(1,12969:6630773,26832265:25952256,1633664,0 -g1,12969:6630773,26832265 -g1,12969:6237557,26832265 -r1,12985:6368629,26832265:131072,1633664,0 -g1,12969:6567858,26832265 -g1,12969:6764466,26832265 -[1,12969:6764466,26832265:25818563,1633664,0 -(1,12969:6764466,25864294:25818563,665693,196608 -(1,12968:6764466,25864294:0,665693,196608 -r1,12985:7868133,25864294:1103667,862301,196608 -k1,12968:6764466,25864294:-1103667 -) -(1,12968:6764466,25864294:1103667,665693,196608 -) -k1,12968:8122901,25864294:254768 -k1,12968:9440830,25864294:327680 -k1,12968:10945369,25864294:254767 -k1,12968:12219222,25864294:254768 -k1,12968:15465708,25864294:254767 -k1,12968:16336514,25864294:254768 -k1,12968:19200270,25864294:254768 -h1,12968:20742988,25864294:0,0,0 -k1,12968:21171425,25864294:254767 -h1,12968:22714143,25864294:0,0,0 -k1,12968:22968911,25864294:254768 -k1,12968:24415123,25864294:254767 -h1,12968:25957841,25864294:0,0,0 -k1,12968:26212609,25864294:254768 -k1,12968:27118804,25864294:254767 -k1,12968:28188840,25864294:254768 -k1,12968:32583029,25864294:0 -) -(1,12969:6764466,26729374:25818563,513147,102891 -g1,12968:8818364,26729374 -g1,12968:9826963,26729374 -g1,12968:12788535,26729374 -g1,12968:17273163,26729374 -g1,12968:18965958,26729374 -g1,12968:19851349,26729374 -g1,12968:23021325,26729374 -g1,12968:23626877,26729374 -g1,12968:24259299,26729374 -g1,12968:25141413,26729374 -k1,12969:32583029,26729374:4790685 -g1,12969:32583029,26729374 -) -] -g1,12969:32583029,26832265 -) -h1,12969:6630773,26832265:0,0,0 -v1,12972:6630773,27697345:0,393216,0 -(1,12974:6630773,36782926:25952256,9478797,0 -g1,12974:6630773,36782926 -g1,12974:6237557,36782926 -r1,12985:6368629,36782926:131072,9478797,0 -g1,12974:6567858,36782926 -g1,12974:6764466,36782926 -[1,12974:6764466,36782926:25818563,9478797,0 -(1,12974:6764466,28005643:25818563,701514,196608 -(1,12972:6764466,28005643:0,701514,196608 -r1,12985:7761522,28005643:997056,898122,196608 -k1,12972:6764466,28005643:-997056 -) -(1,12972:6764466,28005643:997056,701514,196608 -) -k1,12972:7897951,28005643:136429 -k1,12972:8225631,28005643:327680 -k1,12972:8225631,28005643:0 -k1,12972:8362060,28005643:136429 -k1,12973:8968382,28005643:136429 -k1,12973:9636308,28005643:136429 -k1,12973:13223863,28005643:136429 -k1,12973:14011720,28005643:136429 -k1,12973:16880345,28005643:136429 -k1,12973:18543109,28005643:136430 -k1,12973:21173838,28005643:136429 -k1,12973:24580514,28005643:136429 -k1,12973:25376235,28005643:136429 -k1,12973:28328746,28005643:136429 -k1,12973:29226703,28005643:136429 -k1,12973:31431448,28005643:136429 -k1,12973:32227169,28005643:136429 -k1,12973:32583029,28005643:0 -) -(1,12974:6764466,28870723:25818563,505283,126483 -k1,12973:11129164,28870723:144835 -k1,12973:13719146,28870723:144834 -k1,12973:15357547,28870723:144835 -k1,12973:16188543,28870723:144834 -k1,12973:16689238,28870723:144835 -k1,12973:21157482,28870723:144834 -k1,12973:25539875,28870723:144835 -k1,12973:28635795,28870723:144834 -k1,12973:31896867,28870723:144835 -k1,12973:32583029,28870723:0 -) -(1,12974:6764466,29735803:25818563,505283,134348 -k1,12973:10138196,29735803:220793 -k1,12973:11120517,29735803:220793 -k1,12973:11756131,29735803:220771 -k1,12973:13168368,29735803:220792 -k1,12973:15091131,29735803:220793 -k1,12973:18388184,29735803:220793 -k1,12973:21681305,29735803:220793 -k1,12973:22893657,29735803:220792 -k1,12973:28028340,29735803:220793 -k1,12973:31194321,29735803:220793 -k1,12973:32583029,29735803:0 -) -(1,12974:6764466,30600883:25818563,513147,7863 -k1,12973:11251133,30600883:266804 -k1,12973:13362776,30600883:266805 -k1,12973:14288872,30600883:266804 -k1,12973:17371758,30600883:266804 -k1,12973:18923069,30600883:266805 -k1,12973:22076079,30600883:266804 -k1,12973:24837183,30600883:266804 -k1,12973:27193931,30600883:266805 -k1,12973:30111666,30600883:266804 -k1,12973:32583029,30600883:0 -) -(1,12974:6764466,31465963:25818563,513147,134348 -k1,12973:10357617,31465963:197731 -k1,12973:11978136,31465963:197732 -k1,12973:12531727,31465963:197731 -k1,12973:14130618,31465963:197732 -k1,12973:16008692,31465963:197731 -k1,12973:17490930,31465963:197732 -k1,12973:21262995,31465963:197731 -k1,12973:23379621,31465963:197732 -k1,12973:24193390,31465963:197731 -k1,12973:25410207,31465963:197732 -k1,12973:27452776,31465963:197731 -k1,12973:28669593,31465963:197732 -k1,12973:30173457,31465963:197731 -k1,12973:32051532,31465963:197732 -k1,12973:32583029,31465963:0 -) -(1,12974:6764466,32331043:25818563,513147,134348 -k1,12973:9494827,32331043:171180 -k1,12973:10862694,32331043:171180 -k1,12973:12754849,32331043:171180 -k1,12973:14164004,32331043:171180 -k1,12973:14994476,32331043:171180 -k1,12973:19482513,32331043:171180 -k1,12973:21835387,32331043:171180 -k1,12973:23025652,32331043:171180 -k1,12973:24877175,32331043:171180 -k1,12973:25707647,32331043:171180 -k1,12973:26897912,32331043:171180 -k1,12973:28514816,32331043:171180 -k1,12973:29217493,32331043:171180 -k1,12973:30040101,32331043:171180 -k1,12973:31563944,32331043:171180 -k1,12973:32583029,32331043:0 -) -(1,12974:6764466,33196123:25818563,513147,134348 -k1,12973:10947024,33196123:178308 -k1,12973:11808218,33196123:178309 -k1,12973:12342386,33196123:178308 -k1,12973:14722705,33196123:178309 -k1,12973:17154141,33196123:178308 -k1,12973:20216033,33196123:178308 -k1,12973:21328885,33196123:178309 -k1,12973:22166485,33196123:178308 -k1,12973:24129338,33196123:178308 -k1,12973:25875268,33196123:178309 -k1,12973:27072661,33196123:178308 -k1,12973:30086057,33196123:178309 -k1,12973:31923737,33196123:178308 -k1,12973:32583029,33196123:0 -) -(1,12974:6764466,34061203:25818563,505283,134348 -k1,12973:8015700,34061203:232149 -k1,12973:11497779,34061203:232149 -k1,12973:14664629,34061203:232148 -k1,12973:15512816,34061203:232149 -k1,12973:17442347,34061203:232149 -k1,12973:19372534,34061203:232149 -k1,12973:20473034,34061203:232148 -k1,12973:22172534,34061203:232149 -k1,12973:23056111,34061203:232149 -k1,12973:25304803,34061203:232149 -k1,12973:25892811,34061203:232148 -k1,12973:29596402,34061203:232149 -k1,12973:31563944,34061203:232149 -k1,12973:32583029,34061203:0 -) -(1,12974:6764466,34926283:25818563,513147,126483 -k1,12973:8682425,34926283:264486 -k1,12973:10791748,34926283:264485 -k1,12973:11715526,34926283:264486 -k1,12973:17015798,34926283:264486 -k1,12973:19464599,34926283:264486 -k1,12973:20597436,34926283:264485 -k1,12973:21966204,34926283:264486 -k1,12973:23323175,34926283:264486 -(1,12973:23323175,34926283:0,452978,115847 -r1,12985:26846847,34926283:3523672,568825,115847 -k1,12973:23323175,34926283:-3523672 -) -(1,12973:23323175,34926283:3523672,452978,115847 -k1,12973:23323175,34926283:3277 -h1,12973:26843570,34926283:0,411205,112570 -) -k1,12973:27111333,34926283:264486 -k1,12973:28769769,34926283:264485 -k1,12973:29804958,34926283:264486 -k1,12973:32583029,34926283:0 -) -(1,12974:6764466,35791363:25818563,505283,134348 -k1,12973:9184710,35791363:190054 -k1,12973:10060927,35791363:190055 -k1,12973:11021684,35791363:190054 -k1,12973:14284067,35791363:190055 -k1,12973:15125549,35791363:190054 -k1,12973:16885847,35791363:190055 -k1,12973:18094986,35791363:190054 -k1,12973:21352780,35791363:190054 -k1,12973:22194263,35791363:190055 -k1,12973:23403402,35791363:190054 -k1,12973:25246930,35791363:190055 -k1,12973:27125191,35791363:190054 -k1,12973:27931284,35791363:190055 -k1,12973:29140423,35791363:190054 -k1,12973:32583029,35791363:0 -) -(1,12974:6764466,36656443:25818563,505283,126483 -g1,12973:11576774,36656443 -k1,12974:32583029,36656443:18013882 -g1,12974:32583029,36656443 -) -] -g1,12974:32583029,36782926 -) -h1,12974:6630773,36782926:0,0,0 -v1,12977:6630773,37648006:0,393216,0 -(1,12978:6630773,44019727:25952256,6764937,0 -g1,12978:6630773,44019727 -g1,12978:6237557,44019727 -r1,12985:6368629,44019727:131072,6764937,0 -g1,12978:6567858,44019727 -g1,12978:6764466,44019727 -[1,12978:6764466,44019727:25818563,6764937,0 -(1,12978:6764466,37956304:25818563,701514,196608 -(1,12977:6764466,37956304:0,701514,196608 -r1,12985:8471973,37956304:1707507,898122,196608 -k1,12977:6764466,37956304:-1707507 -) -(1,12977:6764466,37956304:1707507,701514,196608 -) -k1,12977:8649588,37956304:177615 -k1,12977:9967517,37956304:327680 -k1,12977:12581105,37956304:177615 -k1,12977:13777806,37956304:177616 -k1,12977:17141781,37956304:177615 -(1,12977:17141781,37956304:0,452978,115847 -r1,12985:19962030,37956304:2820249,568825,115847 -k1,12977:17141781,37956304:-2820249 -) -(1,12977:17141781,37956304:2820249,452978,115847 -k1,12977:17141781,37956304:3277 -h1,12977:19958753,37956304:0,411205,112570 -) -k1,12977:20139645,37956304:177615 -k1,12977:21078788,37956304:177615 -k1,12977:22862035,37956304:177615 -k1,12977:25271152,37956304:177616 -k1,12977:27378147,37956304:177615 -k1,12977:29683716,37956304:177615 -k1,12977:32583029,37956304:0 -) -(1,12978:6764466,38821384:25818563,505283,134348 -k1,12977:7666435,38821384:250541 -k1,12977:8936061,38821384:250541 -k1,12977:11197247,38821384:250541 -k1,12977:14413292,38821384:250541 -k1,12977:16837007,38821384:250541 -k1,12977:18106634,38821384:250542 -k1,12977:21091337,38821384:250541 -k1,12977:22414047,38821384:250541 -k1,12977:23994969,38821384:250541 -k1,12977:27300798,38821384:250541 -(1,12977:27300798,38821384:0,452978,115847 -r1,12985:32583029,38821384:5282231,568825,115847 -k1,12977:27300798,38821384:-5282231 -) -(1,12977:27300798,38821384:5282231,452978,115847 -k1,12977:27300798,38821384:3277 -h1,12977:32579752,38821384:0,411205,112570 -) -k1,12977:32583029,38821384:0 -) -(1,12978:6764466,39686464:25818563,513147,134348 -k1,12977:10995032,39686464:293818 -k1,12977:13331607,39686464:293818 -k1,12977:15077048,39686464:293819 -k1,12977:16470560,39686464:293818 -k1,12977:17415806,39686464:293818 -(1,12977:17415806,39686464:0,452978,115847 -r1,12985:20236055,39686464:2820249,568825,115847 -k1,12977:17415806,39686464:-2820249 -) -(1,12977:17415806,39686464:2820249,452978,115847 -k1,12977:17415806,39686464:3277 -h1,12977:20232778,39686464:0,411205,112570 -) -k1,12977:20703543,39686464:293818 -k1,12977:22699331,39686464:293818 -k1,12977:25121103,39686464:293818 -k1,12977:28314235,39686464:293819 -k1,12977:29259481,39686464:293818 -k1,12977:30572384,39686464:293818 -k1,12977:32583029,39686464:0 -) -(1,12978:6764466,40551544:25818563,513147,126483 -k1,12977:9908686,40551544:178716 -k1,12977:11548855,40551544:178716 -k1,12977:14139951,40551544:178716 -(1,12977:14139951,40551544:0,452978,115847 -r1,12985:19422182,40551544:5282231,568825,115847 -k1,12977:14139951,40551544:-5282231 -) -(1,12977:14139951,40551544:5282231,452978,115847 -k1,12977:14139951,40551544:3277 -h1,12977:19418905,40551544:0,411205,112570 -) -k1,12977:19774569,40551544:178717 -k1,12977:22706452,40551544:178716 -k1,12977:23646696,40551544:178716 -(1,12977:23646696,40551544:0,452978,115847 -r1,12985:31039198,40551544:7392502,568825,115847 -k1,12977:23646696,40551544:-7392502 -) -(1,12977:23646696,40551544:7392502,452978,115847 -g1,12977:27870515,40551544 -h1,12977:31035921,40551544:0,411205,112570 -) -k1,12977:31391584,40551544:178716 -k1,12977:32583029,40551544:0 -) -(1,12978:6764466,41416624:25818563,513147,126483 -k1,12977:8396352,41416624:197958 -k1,12977:11006690,41416624:197958 -(1,12977:11006690,41416624:0,452978,115847 -r1,12985:16288921,41416624:5282231,568825,115847 -k1,12977:11006690,41416624:-5282231 -) -(1,12977:11006690,41416624:5282231,452978,115847 -k1,12977:11006690,41416624:3277 -h1,12977:16285644,41416624:0,411205,112570 -) -k1,12977:16660549,41416624:197958 -k1,12977:19611674,41416624:197958 -k1,12977:20571160,41416624:197958 -(1,12977:20571160,41416624:0,452978,115847 -r1,12985:23391409,41416624:2820249,568825,115847 -k1,12977:20571160,41416624:-2820249 -) -(1,12977:20571160,41416624:2820249,452978,115847 -k1,12977:20571160,41416624:3277 -h1,12977:23388132,41416624:0,411205,112570 -) -k1,12977:23589367,41416624:197958 -k1,12977:24978770,41416624:197958 -k1,12977:27937104,41416624:197958 -k1,12977:29154147,41416624:197958 -k1,12977:31684531,41416624:197958 -k1,12978:32583029,41416624:0 -) -(1,12978:6764466,42281704:25818563,513147,134348 -k1,12977:8435160,42281704:289850 -k1,12977:9744094,42281704:289849 -k1,12977:12594436,42281704:289850 -k1,12977:14619678,42281704:289849 -k1,12977:15265388,42281704:289850 -k1,12977:18317580,42281704:289849 -k1,12977:21679758,42281704:289850 -k1,12977:22585645,42281704:289849 -k1,12977:23894580,42281704:289850 -k1,12977:25284123,42281704:289849 -k1,12977:26225401,42281704:289850 -(1,12977:26225401,42281704:0,452978,115847 -r1,12985:29749073,42281704:3523672,568825,115847 -k1,12977:26225401,42281704:-3523672 -) -(1,12977:26225401,42281704:3523672,452978,115847 -k1,12977:26225401,42281704:3277 -h1,12977:29745796,42281704:0,411205,112570 -) -k1,12977:30212592,42281704:289849 -k1,12977:32583029,42281704:0 -) -(1,12978:6764466,43146784:25818563,513147,134348 -k1,12977:8023870,43146784:240319 -k1,12977:10437362,43146784:240318 -k1,12977:11869126,43146784:240319 -k1,12977:14419589,43146784:240319 -k1,12977:15990289,43146784:240319 -(1,12977:15990289,43146784:0,452978,115847 -r1,12985:19162249,43146784:3171960,568825,115847 -k1,12977:15990289,43146784:-3171960 -) -(1,12977:15990289,43146784:3171960,452978,115847 -k1,12977:15990289,43146784:3277 -h1,12977:19158972,43146784:0,411205,112570 -) -k1,12977:19402567,43146784:240318 -k1,12977:21752490,43146784:240319 -k1,12977:23011894,43146784:240319 -k1,12977:26647632,43146784:240318 -k1,12977:27547243,43146784:240319 -k1,12977:32583029,43146784:0 -) -(1,12978:6764466,44011864:25818563,505283,7863 -g1,12977:9779777,44011864 -g1,12977:10595044,44011864 -k1,12978:32583029,44011864:21520714 -g1,12978:32583029,44011864 -) -] -g1,12978:32583029,44019727 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,12983:3078558,4812305:0,0,0 +(1,12983:3078558,49800853:0,16384,2228224 +g1,12983:29030814,49800853 +g1,12983:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,12983:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,12983:37855564,49800853:1179648,16384,0 +) +) +k1,12983:3078556,49800853:-34777008 +) +] +g1,12983:6630773,4812305 +k1,12983:19575446,4812305:11749296 +g1,12983:21198117,4812305 +g1,12983:21985204,4812305 +g1,12983:24539797,4812305 +g1,12983:25949476,4812305 +g1,12983:28728857,4812305 +g1,12983:29852144,4812305 +) +) +] +[1,12983:6630773,45706769:25952256,40108032,0 +(1,12983:6630773,45706769:25952256,40108032,0 +(1,12983:6630773,45706769:0,0,0 +g1,12983:6630773,45706769 +) +[1,12983:6630773,45706769:25952256,40108032,0 +v1,12938:6630773,6254097:0,393216,0 +(1,12938:6630773,9244151:25952256,3383270,0 +g1,12938:6630773,9244151 +g1,12938:6237557,9244151 +r1,12983:6368629,9244151:131072,3383270,0 +g1,12938:6567858,9244151 +g1,12938:6764466,9244151 +[1,12938:6764466,9244151:25818563,3383270,0 +(1,12926:6764466,6374028:25818563,513147,126483 +k1,12925:8309553,6374028:178006 +k1,12925:9146851,6374028:178006 +k1,12925:9680717,6374028:178006 +k1,12925:13217442,6374028:178005 +k1,12925:17176875,6374028:178006 +k1,12925:18501106,6374028:178006 +k1,12925:19698197,6374028:178006 +k1,12925:22405893,6374028:178006 +k1,12925:25113589,6374028:178006 +k1,12925:26310679,6374028:178005 +k1,12925:29419455,6374028:178006 +k1,12925:30213499,6374028:178006 +k1,12925:31410590,6374028:178006 +k1,12925:32583029,6374028:0 +) +(1,12926:6764466,7239108:25818563,513147,134348 +k1,12925:8290144,7239108:176292 +k1,12925:10209694,7239108:176292 +k1,12925:11761586,7239108:176291 +k1,12925:12553916,7239108:176292 +k1,12925:14224429,7239108:176292 +k1,12925:17335423,7239108:176292 +k1,12925:18714955,7239108:176291 +k1,12925:19422744,7239108:176292 +k1,12925:20665307,7239108:176292 +k1,12925:21860684,7239108:176292 +k1,12925:23404056,7239108:176291 +k1,12925:24527999,7239108:176292 +k1,12925:28418872,7239108:176292 +k1,12926:32583029,7239108:0 +k1,12926:32583029,7239108:0 +) +v1,12928:6764466,7923963:0,393216,0 +(1,12935:6764466,9047543:25818563,1516796,196608 +g1,12935:6764466,9047543 +g1,12935:6764466,9047543 +g1,12935:6567858,9047543 +(1,12935:6567858,9047543:0,1516796,196608 +r1,12983:32779637,9047543:26211779,1713404,196608 +k1,12935:6567857,9047543:-26211780 +) +(1,12935:6567858,9047543:26211779,1516796,196608 +[1,12935:6764466,9047543:25818563,1320188,0 +(1,12930:6764466,8151794:25818563,424439,106246 +(1,12929:6764466,8151794:0,0,0 +g1,12929:6764466,8151794 +g1,12929:6764466,8151794 +g1,12929:6436786,8151794 +(1,12929:6436786,8151794:0,0,0 +) +g1,12929:6764466,8151794 +) +k1,12930:6764466,8151794:0 +g1,12930:9420098,8151794 +g1,12930:10084006,8151794 +g1,12930:11079868,8151794 +g1,12930:12739638,8151794 +g1,12930:13403546,8151794 +g1,12930:14399408,8151794 +g1,12930:15395270,8151794 +g1,12930:16059178,8151794 +g1,12930:17055040,8151794 +g1,12930:17718948,8151794 +h1,12930:18050902,8151794:0,0,0 +k1,12930:32583029,8151794:14532127 +g1,12930:32583029,8151794 +) +(1,12934:6764466,8967721:25818563,424439,79822 +(1,12932:6764466,8967721:0,0,0 +g1,12932:6764466,8967721 +g1,12932:6764466,8967721 +g1,12932:6436786,8967721 +(1,12932:6436786,8967721:0,0,0 +) +g1,12932:6764466,8967721 +) +g1,12934:7760328,8967721 +g1,12934:9088144,8967721 +h1,12934:11743775,8967721:0,0,0 +k1,12934:32583029,8967721:20839254 +g1,12934:32583029,8967721 +) +] +) +g1,12935:32583029,9047543 +g1,12935:6764466,9047543 +g1,12935:6764466,9047543 +g1,12935:32583029,9047543 +g1,12935:32583029,9047543 +) +h1,12935:6764466,9244151:0,0,0 +] +g1,12938:32583029,9244151 +) +h1,12938:6630773,9244151:0,0,0 +(1,12940:6630773,11360969:25952256,564462,12975 +(1,12940:6630773,11360969:2450326,534184,12975 +g1,12940:6630773,11360969 +g1,12940:9081099,11360969 +) +g1,12940:12986914,11360969 +g1,12940:15427868,11360969 +g1,12940:17427634,11360969 +g1,12940:18053372,11360969 +k1,12940:32583029,11360969:10236000 +g1,12940:32583029,11360969 +) +(1,12944:6630773,12619265:25952256,505283,134348 +k1,12943:8278765,12619265:184573 +k1,12943:10957638,12619265:184573 +k1,12943:14412458,12619265:184573 +k1,12943:15701313,12619265:184573 +k1,12943:17261487,12619265:184573 +k1,12943:18193827,12619265:184574 +k1,12943:21531337,12619265:184573 +k1,12943:22477438,12619265:184573 +k1,12943:25284762,12619265:184573 +k1,12943:28765796,12619265:184573 +k1,12943:29848212,12619265:184573 +k1,12944:32583029,12619265:0 +) +(1,12944:6630773,13484345:25952256,513147,134348 +k1,12943:9587393,13484345:162165 +k1,12943:13019805,13484345:162165 +k1,12943:13841263,13484345:162166 +k1,12943:16819510,13484345:162165 +k1,12943:20134612,13484345:162165 +k1,12943:21058305,13484345:162165 +k1,12943:25284358,13484345:162166 +k1,12943:26438083,13484345:162165 +k1,12943:28363166,13484345:162165 +k1,12943:32583029,13484345:0 +) +(1,12944:6630773,14349425:25952256,505283,134348 +k1,12943:9640186,14349425:178258 +k1,12943:11198632,14349425:178258 +k1,12943:13113594,14349425:178258 +k1,12943:15043629,14349425:178258 +k1,12943:18517693,14349425:178258 +k1,12943:20089901,14349425:178257 +k1,12943:21575602,14349425:178258 +k1,12943:24248160,14349425:178258 +k1,12943:27696665,14349425:178258 +k1,12943:29324579,14349425:178258 +k1,12943:30118875,14349425:178258 +k1,12943:32583029,14349425:0 +) +(1,12944:6630773,15214505:25952256,505283,95026 +g1,12943:7481430,15214505 +k1,12944:32583029,15214505:19939328 +g1,12944:32583029,15214505 +) +(1,12946:6630773,16079585:25952256,513147,126483 +h1,12945:6630773,16079585:983040,0,0 +k1,12945:8327391,16079585:243685 +k1,12945:9102572,16079585:243684 +k1,12945:11976217,16079585:243685 +k1,12945:12871329,16079585:243684 +k1,12945:15902916,16079585:243685 +k1,12945:17212872,16079585:243685 +k1,12945:18832157,16079585:243684 +k1,12945:24111628,16079585:243685 +k1,12945:26271585,16079585:243684 +k1,12945:28082891,16079585:243685 +k1,12945:28682435,16079585:243684 +k1,12945:31524623,16079585:243685 +k1,12946:32583029,16079585:0 +) +(1,12946:6630773,16944665:25952256,513147,102891 +k1,12945:9654089,16944665:194127 +k1,12945:10920385,16944665:194127 +k1,12945:12400328,16944665:194127 +k1,12945:14162076,16944665:194127 +k1,12945:15375288,16944665:194127 +k1,12945:18099105,16944665:194127 +$1,12945:18099105,16944665 +$1,12945:18419576,16944665 +k1,12945:18787373,16944665:194127 +$1,12945:18787373,16944665 +$1,12945:19232362,16944665 +k1,12945:19600160,16944665:194128 +k1,12945:20985732,16944665:194127 +k1,12945:22881829,16944665:194127 +k1,12945:27361355,16944665:194127 +k1,12945:28183317,16944665:194127 +k1,12945:29829066,16944665:194127 +k1,12945:31563944,16944665:194127 +k1,12945:32583029,16944665:0 +) +(1,12946:6630773,17809745:25952256,513147,126483 +k1,12945:10276832,17809745:160199 +k1,12945:11830982,17809745:160199 +k1,12945:13876651,17809745:160198 +k1,12945:16799193,17809745:160199 +k1,12945:18970037,17809745:160199 +k1,12945:20121796,17809745:160199 +k1,12945:22883118,17809745:160198 +k1,12945:27400151,17809745:160199 +k1,12945:28579435,17809745:160199 +k1,12945:32583029,17809745:0 +) +(1,12946:6630773,18674825:25952256,505283,134348 +k1,12945:7787898,18674825:222582 +k1,12945:8772008,18674825:222582 +k1,12945:10013675,18674825:222582 +k1,12945:14859822,18674825:222582 +k1,12945:18484378,18674825:222582 +k1,12945:22662057,18674825:222581 +k1,12945:26120151,18674825:222582 +(1,12945:26120151,18674825:0,414482,115847 +r1,12983:26478417,18674825:358266,530329,115847 +k1,12945:26120151,18674825:-358266 +) +(1,12945:26120151,18674825:358266,414482,115847 +k1,12945:26120151,18674825:3277 +h1,12945:26475140,18674825:0,411205,112570 +) +k1,12945:26700999,18674825:222582 +k1,12945:29785538,18674825:222582 +k1,12945:31027205,18674825:222582 +k1,12946:32583029,18674825:0 +) +(1,12946:6630773,19539905:25952256,513147,134348 +k1,12945:7868442,19539905:201545 +k1,12945:8729279,19539905:201545 +k1,12945:10941469,19539905:201545 +k1,12945:11794441,19539905:201544 +k1,12945:12743752,19539905:201545 +k1,12945:15119782,19539905:201545 +k1,12945:16004212,19539905:201545 +k1,12945:16994155,19539905:201545 +k1,12945:20674351,19539905:201545 +k1,12945:21894981,19539905:201545 +k1,12945:24109792,19539905:201545 +k1,12945:24970628,19539905:201544 +k1,12945:26191258,19539905:201545 +k1,12945:28370680,19539905:201545 +k1,12945:31350952,19539905:201545 +k1,12945:32583029,19539905:0 +) +(1,12946:6630773,20404985:25952256,513147,134348 +g1,12945:9108689,20404985 +h1,12945:10651407,20404985:0,0,0 +g1,12945:10850636,20404985 +g1,12945:11859235,20404985 +g1,12945:13556617,20404985 +h1,12945:14751994,20404985:0,0,0 +g1,12945:14951223,20404985 +g1,12945:16098103,20404985 +g1,12945:18958749,20404985 +g1,12945:21146340,20404985 +g1,12945:21146340,20404985 +k1,12946:32583029,20404985:11436689 +g1,12946:32583029,20404985 +) +v1,12948:6630773,21089840:0,393216,0 +(1,12962:6630773,24530129:25952256,3833505,196608 +g1,12962:6630773,24530129 +g1,12962:6630773,24530129 +g1,12962:6434165,24530129 +(1,12962:6434165,24530129:0,3833505,196608 +r1,12983:32779637,24530129:26345472,4030113,196608 +k1,12962:6434165,24530129:-26345472 +) +(1,12962:6434165,24530129:26345472,3833505,196608 +[1,12962:6630773,24530129:25952256,3636897,0 +(1,12950:6630773,21317671:25952256,424439,79822 +(1,12949:6630773,21317671:0,0,0 +g1,12949:6630773,21317671 +g1,12949:6630773,21317671 +g1,12949:6303093,21317671 +(1,12949:6303093,21317671:0,0,0 +) +g1,12949:6630773,21317671 +) +k1,12950:6630773,21317671:0 +h1,12950:9286405,21317671:0,0,0 +k1,12950:32583029,21317671:23296624 +g1,12950:32583029,21317671 +) +(1,12954:6630773,22133598:25952256,424439,79822 +(1,12952:6630773,22133598:0,0,0 +g1,12952:6630773,22133598 +g1,12952:6630773,22133598 +g1,12952:6303093,22133598 +(1,12952:6303093,22133598:0,0,0 +) +g1,12952:6630773,22133598 +) +g1,12954:7626635,22133598 +g1,12954:8954451,22133598 +g1,12954:12605944,22133598 +g1,12954:12937898,22133598 +g1,12954:16257437,22133598 +g1,12954:19908930,22133598 +g1,12954:23560423,22133598 +g1,12954:23892377,22133598 +h1,12954:26879962,22133598:0,0,0 +k1,12954:32583029,22133598:5703067 +g1,12954:32583029,22133598 +) +(1,12956:6630773,22949525:25952256,424439,86428 +(1,12955:6630773,22949525:0,0,0 +g1,12955:6630773,22949525 +g1,12955:6630773,22949525 +g1,12955:6303093,22949525 +(1,12955:6303093,22949525:0,0,0 +) +g1,12955:6630773,22949525 +) +k1,12956:6630773,22949525:0 +g1,12956:9286405,22949525 +g1,12956:9950313,22949525 +g1,12956:11278129,22949525 +g1,12956:12937899,22949525 +g1,12956:13601807,22949525 +g1,12956:14929623,22949525 +g1,12956:15925485,22949525 +g1,12956:16589393,22949525 +h1,12956:17253301,22949525:0,0,0 +k1,12956:32583029,22949525:15329728 +g1,12956:32583029,22949525 +) +(1,12961:6630773,23765452:25952256,424439,79822 +(1,12958:6630773,23765452:0,0,0 +g1,12958:6630773,23765452 +g1,12958:6630773,23765452 +g1,12958:6303093,23765452 +(1,12958:6303093,23765452:0,0,0 +) +g1,12958:6630773,23765452 +) +g1,12961:7626635,23765452 +g1,12961:7958589,23765452 +g1,12961:9286405,23765452 +g1,12961:12605944,23765452 +g1,12961:12937898,23765452 +g1,12961:15925483,23765452 +g1,12961:16257437,23765452 +g1,12961:19245022,23765452 +g1,12961:22564561,23765452 +g1,12961:25884100,23765452 +g1,12961:29203639,23765452 +h1,12961:32191224,23765452:0,0,0 +k1,12961:32583029,23765452:391805 +g1,12961:32583029,23765452 +) +(1,12961:6630773,24450307:25952256,424439,79822 +h1,12961:6630773,24450307:0,0,0 +g1,12961:7626635,24450307 +g1,12961:7958589,24450307 +g1,12961:9286405,24450307 +g1,12961:12605944,24450307 +g1,12961:15925483,24450307 +g1,12961:16257437,24450307 +h1,12961:18913068,24450307:0,0,0 +k1,12961:32583029,24450307:13669961 +g1,12961:32583029,24450307 +) +] +) +g1,12962:32583029,24530129 +g1,12962:6630773,24530129 +g1,12962:6630773,24530129 +g1,12962:32583029,24530129 +g1,12962:32583029,24530129 +) +h1,12962:6630773,24726737:0,0,0 +v1,12966:6630773,25591817:0,393216,0 +(1,12967:6630773,26832265:25952256,1633664,0 +g1,12967:6630773,26832265 +g1,12967:6237557,26832265 +r1,12983:6368629,26832265:131072,1633664,0 +g1,12967:6567858,26832265 +g1,12967:6764466,26832265 +[1,12967:6764466,26832265:25818563,1633664,0 +(1,12967:6764466,25864294:25818563,665693,196608 +(1,12966:6764466,25864294:0,665693,196608 +r1,12983:7868133,25864294:1103667,862301,196608 +k1,12966:6764466,25864294:-1103667 +) +(1,12966:6764466,25864294:1103667,665693,196608 +) +k1,12966:8108428,25864294:240295 +k1,12966:9426357,25864294:327680 +k1,12966:10916424,25864294:240295 +k1,12966:12175804,25864294:240295 +k1,12966:15407818,25864294:240295 +k1,12966:16264151,25864294:240295 +k1,12966:19113435,25864294:240296 +h1,12966:20656153,25864294:0,0,0 +k1,12966:21070118,25864294:240295 +h1,12966:22612836,25864294:0,0,0 +k1,12966:23026801,25864294:240295 +k1,12966:24458541,25864294:240295 +h1,12966:26001259,25864294:0,0,0 +k1,12966:26241554,25864294:240295 +k1,12966:27133277,25864294:240295 +k1,12966:28188840,25864294:240295 +k1,12966:32583029,25864294:0 +) +(1,12967:6764466,26729374:25818563,513147,102891 +g1,12966:8818364,26729374 +g1,12966:9826963,26729374 +g1,12966:12788535,26729374 +g1,12966:17273163,26729374 +g1,12966:18965958,26729374 +g1,12966:19851349,26729374 +g1,12966:23021325,26729374 +g1,12966:23626877,26729374 +g1,12966:24259299,26729374 +g1,12966:25141413,26729374 +k1,12967:32583029,26729374:4790685 +g1,12967:32583029,26729374 +) +] +g1,12967:32583029,26832265 +) +h1,12967:6630773,26832265:0,0,0 +v1,12970:6630773,27697345:0,393216,0 +(1,12972:6630773,36782926:25952256,9478797,0 +g1,12972:6630773,36782926 +g1,12972:6237557,36782926 +r1,12983:6368629,36782926:131072,9478797,0 +g1,12972:6567858,36782926 +g1,12972:6764466,36782926 +[1,12972:6764466,36782926:25818563,9478797,0 +(1,12972:6764466,28005643:25818563,701514,196608 +(1,12970:6764466,28005643:0,701514,196608 +r1,12983:7761522,28005643:997056,898122,196608 +k1,12970:6764466,28005643:-997056 +) +(1,12970:6764466,28005643:997056,701514,196608 +) +k1,12970:7897951,28005643:136429 +k1,12970:8225631,28005643:327680 +k1,12970:8225631,28005643:0 +k1,12970:8362060,28005643:136429 +k1,12971:8968382,28005643:136429 +k1,12971:9636308,28005643:136429 +k1,12971:13223863,28005643:136429 +k1,12971:14011720,28005643:136429 +k1,12971:16880345,28005643:136429 +k1,12971:18543109,28005643:136430 +k1,12971:21173838,28005643:136429 +k1,12971:24580514,28005643:136429 +k1,12971:25376235,28005643:136429 +k1,12971:28328746,28005643:136429 +k1,12971:29226703,28005643:136429 +k1,12971:31431448,28005643:136429 +k1,12971:32227169,28005643:136429 +k1,12971:32583029,28005643:0 +) +(1,12972:6764466,28870723:25818563,505283,126483 +k1,12971:11129164,28870723:144835 +k1,12971:13719146,28870723:144834 +k1,12971:15357547,28870723:144835 +k1,12971:16188543,28870723:144834 +k1,12971:16689238,28870723:144835 +k1,12971:21157482,28870723:144834 +k1,12971:25539875,28870723:144835 +k1,12971:28635795,28870723:144834 +k1,12971:31896867,28870723:144835 +k1,12971:32583029,28870723:0 +) +(1,12972:6764466,29735803:25818563,505283,134348 +k1,12971:10138196,29735803:220793 +k1,12971:11120517,29735803:220793 +k1,12971:11756131,29735803:220771 +k1,12971:13168368,29735803:220792 +k1,12971:15091131,29735803:220793 +k1,12971:18388184,29735803:220793 +k1,12971:21681305,29735803:220793 +k1,12971:22893657,29735803:220792 +k1,12971:28028340,29735803:220793 +k1,12971:31194321,29735803:220793 +k1,12971:32583029,29735803:0 +) +(1,12972:6764466,30600883:25818563,513147,7863 +k1,12971:11251133,30600883:266804 +k1,12971:13362776,30600883:266805 +k1,12971:14288872,30600883:266804 +k1,12971:17371758,30600883:266804 +k1,12971:18923069,30600883:266805 +k1,12971:22076079,30600883:266804 +k1,12971:24837183,30600883:266804 +k1,12971:27193931,30600883:266805 +k1,12971:30111666,30600883:266804 +k1,12971:32583029,30600883:0 +) +(1,12972:6764466,31465963:25818563,513147,134348 +k1,12971:10357617,31465963:197731 +k1,12971:11978136,31465963:197732 +k1,12971:12531727,31465963:197731 +k1,12971:14130618,31465963:197732 +k1,12971:16008692,31465963:197731 +k1,12971:17490930,31465963:197732 +k1,12971:21262995,31465963:197731 +k1,12971:23379621,31465963:197732 +k1,12971:24193390,31465963:197731 +k1,12971:25410207,31465963:197732 +k1,12971:27452776,31465963:197731 +k1,12971:28669593,31465963:197732 +k1,12971:30173457,31465963:197731 +k1,12971:32051532,31465963:197732 +k1,12971:32583029,31465963:0 +) +(1,12972:6764466,32331043:25818563,513147,134348 +k1,12971:9494827,32331043:171180 +k1,12971:10862694,32331043:171180 +k1,12971:12754849,32331043:171180 +k1,12971:14164004,32331043:171180 +k1,12971:14994476,32331043:171180 +k1,12971:19482513,32331043:171180 +k1,12971:21835387,32331043:171180 +k1,12971:23025652,32331043:171180 +k1,12971:24877175,32331043:171180 +k1,12971:25707647,32331043:171180 +k1,12971:26897912,32331043:171180 +k1,12971:28514816,32331043:171180 +k1,12971:29217493,32331043:171180 +k1,12971:30040101,32331043:171180 +k1,12971:31563944,32331043:171180 +k1,12971:32583029,32331043:0 +) +(1,12972:6764466,33196123:25818563,513147,134348 +k1,12971:10947024,33196123:178308 +k1,12971:11808218,33196123:178309 +k1,12971:12342386,33196123:178308 +k1,12971:14722705,33196123:178309 +k1,12971:17154141,33196123:178308 +k1,12971:20216033,33196123:178308 +k1,12971:21328885,33196123:178309 +k1,12971:22166485,33196123:178308 +k1,12971:24129338,33196123:178308 +k1,12971:25875268,33196123:178309 +k1,12971:27072661,33196123:178308 +k1,12971:30086057,33196123:178309 +k1,12971:31923737,33196123:178308 +k1,12971:32583029,33196123:0 +) +(1,12972:6764466,34061203:25818563,505283,134348 +k1,12971:8015700,34061203:232149 +k1,12971:11497779,34061203:232149 +k1,12971:14664629,34061203:232148 +k1,12971:15512816,34061203:232149 +k1,12971:17442347,34061203:232149 +k1,12971:19372534,34061203:232149 +k1,12971:20473034,34061203:232148 +k1,12971:22172534,34061203:232149 +k1,12971:23056111,34061203:232149 +k1,12971:25304803,34061203:232149 +k1,12971:25892811,34061203:232148 +k1,12971:29596402,34061203:232149 +k1,12971:31563944,34061203:232149 +k1,12971:32583029,34061203:0 +) +(1,12972:6764466,34926283:25818563,513147,126483 +k1,12971:8682425,34926283:264486 +k1,12971:10791748,34926283:264485 +k1,12971:11715526,34926283:264486 +k1,12971:17015798,34926283:264486 +k1,12971:19464599,34926283:264486 +k1,12971:20597436,34926283:264485 +k1,12971:21966204,34926283:264486 +k1,12971:23323175,34926283:264486 +(1,12971:23323175,34926283:0,452978,115847 +r1,12983:26846847,34926283:3523672,568825,115847 +k1,12971:23323175,34926283:-3523672 +) +(1,12971:23323175,34926283:3523672,452978,115847 +k1,12971:23323175,34926283:3277 +h1,12971:26843570,34926283:0,411205,112570 +) +k1,12971:27111333,34926283:264486 +k1,12971:28769769,34926283:264485 +k1,12971:29804958,34926283:264486 +k1,12971:32583029,34926283:0 +) +(1,12972:6764466,35791363:25818563,505283,134348 +k1,12971:9184710,35791363:190054 +k1,12971:10060927,35791363:190055 +k1,12971:11021684,35791363:190054 +k1,12971:14284067,35791363:190055 +k1,12971:15125549,35791363:190054 +k1,12971:16885847,35791363:190055 +k1,12971:18094986,35791363:190054 +k1,12971:21352780,35791363:190054 +k1,12971:22194263,35791363:190055 +k1,12971:23403402,35791363:190054 +k1,12971:25246930,35791363:190055 +k1,12971:27125191,35791363:190054 +k1,12971:27931284,35791363:190055 +k1,12971:29140423,35791363:190054 +k1,12971:32583029,35791363:0 +) +(1,12972:6764466,36656443:25818563,505283,126483 +g1,12971:11576774,36656443 +k1,12972:32583029,36656443:18013882 +g1,12972:32583029,36656443 +) +] +g1,12972:32583029,36782926 +) +h1,12972:6630773,36782926:0,0,0 +v1,12975:6630773,37648006:0,393216,0 +(1,12976:6630773,44019727:25952256,6764937,0 +g1,12976:6630773,44019727 +g1,12976:6237557,44019727 +r1,12983:6368629,44019727:131072,6764937,0 +g1,12976:6567858,44019727 +g1,12976:6764466,44019727 +[1,12976:6764466,44019727:25818563,6764937,0 +(1,12976:6764466,37956304:25818563,701514,196608 +(1,12975:6764466,37956304:0,701514,196608 +r1,12983:8471973,37956304:1707507,898122,196608 +k1,12975:6764466,37956304:-1707507 +) +(1,12975:6764466,37956304:1707507,701514,196608 +) +k1,12975:8649588,37956304:177615 +k1,12975:9967517,37956304:327680 +k1,12975:12581105,37956304:177615 +k1,12975:13777806,37956304:177616 +k1,12975:17141781,37956304:177615 +(1,12975:17141781,37956304:0,452978,115847 +r1,12983:19962030,37956304:2820249,568825,115847 +k1,12975:17141781,37956304:-2820249 +) +(1,12975:17141781,37956304:2820249,452978,115847 +k1,12975:17141781,37956304:3277 +h1,12975:19958753,37956304:0,411205,112570 +) +k1,12975:20139645,37956304:177615 +k1,12975:21078788,37956304:177615 +k1,12975:22862035,37956304:177615 +k1,12975:25271152,37956304:177616 +k1,12975:27378147,37956304:177615 +k1,12975:29683716,37956304:177615 +k1,12975:32583029,37956304:0 +) +(1,12976:6764466,38821384:25818563,505283,134348 +k1,12975:7666435,38821384:250541 +k1,12975:8936061,38821384:250541 +k1,12975:11197247,38821384:250541 +k1,12975:14413292,38821384:250541 +k1,12975:16837007,38821384:250541 +k1,12975:18106634,38821384:250542 +k1,12975:21091337,38821384:250541 +k1,12975:22414047,38821384:250541 +k1,12975:23994969,38821384:250541 +k1,12975:27300798,38821384:250541 +(1,12975:27300798,38821384:0,452978,115847 +r1,12983:32583029,38821384:5282231,568825,115847 +k1,12975:27300798,38821384:-5282231 +) +(1,12975:27300798,38821384:5282231,452978,115847 +k1,12975:27300798,38821384:3277 +h1,12975:32579752,38821384:0,411205,112570 +) +k1,12975:32583029,38821384:0 +) +(1,12976:6764466,39686464:25818563,513147,134348 +k1,12975:10995032,39686464:293818 +k1,12975:13331607,39686464:293818 +k1,12975:15077048,39686464:293819 +k1,12975:16470560,39686464:293818 +k1,12975:17415806,39686464:293818 +(1,12975:17415806,39686464:0,452978,115847 +r1,12983:20236055,39686464:2820249,568825,115847 +k1,12975:17415806,39686464:-2820249 +) +(1,12975:17415806,39686464:2820249,452978,115847 +k1,12975:17415806,39686464:3277 +h1,12975:20232778,39686464:0,411205,112570 +) +k1,12975:20703543,39686464:293818 +k1,12975:22699331,39686464:293818 +k1,12975:25121103,39686464:293818 +k1,12975:28314235,39686464:293819 +k1,12975:29259481,39686464:293818 +k1,12975:30572384,39686464:293818 +k1,12975:32583029,39686464:0 +) +(1,12976:6764466,40551544:25818563,513147,126483 +k1,12975:9908686,40551544:178716 +k1,12975:11548855,40551544:178716 +k1,12975:14139951,40551544:178716 +(1,12975:14139951,40551544:0,452978,115847 +r1,12983:19422182,40551544:5282231,568825,115847 +k1,12975:14139951,40551544:-5282231 +) +(1,12975:14139951,40551544:5282231,452978,115847 +k1,12975:14139951,40551544:3277 +h1,12975:19418905,40551544:0,411205,112570 +) +k1,12975:19774569,40551544:178717 +k1,12975:22706452,40551544:178716 +k1,12975:23646696,40551544:178716 +(1,12975:23646696,40551544:0,452978,115847 +r1,12983:31039198,40551544:7392502,568825,115847 +k1,12975:23646696,40551544:-7392502 +) +(1,12975:23646696,40551544:7392502,452978,115847 +g1,12975:27870515,40551544 +h1,12975:31035921,40551544:0,411205,112570 +) +k1,12975:31391584,40551544:178716 +k1,12975:32583029,40551544:0 +) +(1,12976:6764466,41416624:25818563,513147,126483 +k1,12975:8396352,41416624:197958 +k1,12975:11006690,41416624:197958 +(1,12975:11006690,41416624:0,452978,115847 +r1,12983:16288921,41416624:5282231,568825,115847 +k1,12975:11006690,41416624:-5282231 +) +(1,12975:11006690,41416624:5282231,452978,115847 +k1,12975:11006690,41416624:3277 +h1,12975:16285644,41416624:0,411205,112570 +) +k1,12975:16660549,41416624:197958 +k1,12975:19611674,41416624:197958 +k1,12975:20571160,41416624:197958 +(1,12975:20571160,41416624:0,452978,115847 +r1,12983:23391409,41416624:2820249,568825,115847 +k1,12975:20571160,41416624:-2820249 +) +(1,12975:20571160,41416624:2820249,452978,115847 +k1,12975:20571160,41416624:3277 +h1,12975:23388132,41416624:0,411205,112570 +) +k1,12975:23589367,41416624:197958 +k1,12975:24978770,41416624:197958 +k1,12975:27937104,41416624:197958 +k1,12975:29154147,41416624:197958 +k1,12975:31684531,41416624:197958 +k1,12976:32583029,41416624:0 +) +(1,12976:6764466,42281704:25818563,513147,134348 +k1,12975:8435160,42281704:289850 +k1,12975:9744094,42281704:289849 +k1,12975:12594436,42281704:289850 +k1,12975:14619678,42281704:289849 +k1,12975:15265388,42281704:289850 +k1,12975:18317580,42281704:289849 +k1,12975:21679758,42281704:289850 +k1,12975:22585645,42281704:289849 +k1,12975:23894580,42281704:289850 +k1,12975:25284123,42281704:289849 +k1,12975:26225401,42281704:289850 +(1,12975:26225401,42281704:0,452978,115847 +r1,12983:29749073,42281704:3523672,568825,115847 +k1,12975:26225401,42281704:-3523672 +) +(1,12975:26225401,42281704:3523672,452978,115847 +k1,12975:26225401,42281704:3277 +h1,12975:29745796,42281704:0,411205,112570 +) +k1,12975:30212592,42281704:289849 +k1,12975:32583029,42281704:0 +) +(1,12976:6764466,43146784:25818563,513147,134348 +k1,12975:8023870,43146784:240319 +k1,12975:10437362,43146784:240318 +k1,12975:11869126,43146784:240319 +k1,12975:14419589,43146784:240319 +k1,12975:15990289,43146784:240319 +(1,12975:15990289,43146784:0,452978,115847 +r1,12983:19162249,43146784:3171960,568825,115847 +k1,12975:15990289,43146784:-3171960 +) +(1,12975:15990289,43146784:3171960,452978,115847 +k1,12975:15990289,43146784:3277 +h1,12975:19158972,43146784:0,411205,112570 +) +k1,12975:19402567,43146784:240318 +k1,12975:21752490,43146784:240319 +k1,12975:23011894,43146784:240319 +k1,12975:26647632,43146784:240318 +k1,12975:27547243,43146784:240319 +k1,12975:32583029,43146784:0 +) +(1,12976:6764466,44011864:25818563,505283,7863 +g1,12975:9779777,44011864 +g1,12975:10595044,44011864 +k1,12976:32583029,44011864:21520714 +g1,12976:32583029,44011864 +) +] +g1,12976:32583029,44019727 ) -h1,12978:6630773,44019727:0,0,0 -] -(1,12985:32583029,45706769:0,0,0 -g1,12985:32583029,45706769 -) -) -] -(1,12985:6630773,47279633:25952256,0,0 -h1,12985:6630773,47279633:25952256,0,0 +h1,12976:6630773,44019727:0,0,0 +] +(1,12983:32583029,45706769:0,0,0 +g1,12983:32583029,45706769 +) +) +] +(1,12983:6630773,47279633:25952256,0,0 +h1,12983:6630773,47279633:25952256,0,0 ) ] -(1,12985:4262630,4025873:0,0,0 -[1,12985:-473656,4025873:0,0,0 -(1,12985:-473656,-710413:0,0,0 -(1,12985:-473656,-710413:0,0,0 -g1,12985:-473656,-710413 +(1,12983:4262630,4025873:0,0,0 +[1,12983:-473656,4025873:0,0,0 +(1,12983:-473656,-710413:0,0,0 +(1,12983:-473656,-710413:0,0,0 +g1,12983:-473656,-710413 ) -g1,12985:-473656,-710413 +g1,12983:-473656,-710413 ) ] ) ] !27818 -}207 -Input:2162:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2163:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2164:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}208 Input:2165:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2166:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2167:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -230650,2598 +230845,2601 @@ Input:2172:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2173:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2174:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2175:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{208 -[1,13039:4262630,47279633:28320399,43253760,0 -(1,13039:4262630,4025873:0,0,0 -[1,13039:-473656,4025873:0,0,0 -(1,13039:-473656,-710413:0,0,0 -(1,13039:-473656,-644877:0,0,0 -k1,13039:-473656,-644877:-65536 -) -(1,13039:-473656,4736287:0,0,0 -k1,13039:-473656,4736287:5209943 -) -g1,13039:-473656,-710413 -) -] -) -[1,13039:6630773,47279633:25952256,43253760,0 -[1,13039:6630773,4812305:25952256,786432,0 -(1,13039:6630773,4812305:25952256,505283,126483 -(1,13039:6630773,4812305:25952256,505283,126483 -g1,13039:3078558,4812305 -[1,13039:3078558,4812305:0,0,0 -(1,13039:3078558,2439708:0,1703936,0 -k1,13039:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13039:2537886,2439708:1179648,16384,0 -) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13039:3078558,1915420:16384,1179648,0 -) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 -) -] -) -) -) -] -[1,13039:3078558,4812305:0,0,0 -(1,13039:3078558,2439708:0,1703936,0 -g1,13039:29030814,2439708 -g1,13039:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13039:36151628,1915420:16384,1179648,0 -) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 -) -] -) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13039:37855564,2439708:1179648,16384,0 -) -) -k1,13039:3078556,2439708:-34777008 -) -] -[1,13039:3078558,4812305:0,0,0 -(1,13039:3078558,49800853:0,16384,2228224 -k1,13039:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13039:2537886,49800853:1179648,16384,0 -) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13039:3078558,51504789:16384,1179648,0 -) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,13039:3078558,4812305:0,0,0 -(1,13039:3078558,49800853:0,16384,2228224 -g1,13039:29030814,49800853 -g1,13039:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13039:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13039:37855564,49800853:1179648,16384,0 -) -) -k1,13039:3078556,49800853:-34777008 -) -] -g1,13039:6630773,4812305 -g1,13039:6630773,4812305 -g1,13039:9773224,4812305 -g1,13039:13373116,4812305 -g1,13039:17579216,4812305 -k1,13039:31387652,4812305:13808436 -) -) -] -[1,13039:6630773,45706769:25952256,40108032,0 -(1,13039:6630773,45706769:25952256,40108032,0 -(1,13039:6630773,45706769:0,0,0 -g1,13039:6630773,45706769 -) -[1,13039:6630773,45706769:25952256,40108032,0 -(1,12981:6630773,6254097:25952256,32768,229376 -(1,12981:6630773,6254097:0,32768,229376 -(1,12981:6630773,6254097:5505024,32768,229376 -r1,13039:12135797,6254097:5505024,262144,229376 -) -k1,12981:6630773,6254097:-5505024 -) -(1,12981:6630773,6254097:25952256,32768,0 -r1,13039:32583029,6254097:25952256,32768,0 -) -) -(1,12981:6630773,7885949:25952256,606339,151780 -(1,12981:6630773,7885949:1974731,575668,0 -g1,12981:6630773,7885949 -g1,12981:8605504,7885949 -) -g1,12981:12680009,7885949 -g1,12981:17287715,7885949 -k1,12981:32583029,7885949:10087561 -g1,12981:32583029,7885949 -) -(1,12985:6630773,9144245:25952256,513147,126483 -k1,12984:7322883,9144245:222217 -k1,12984:8076598,9144245:222218 -k1,12984:11076231,9144245:222217 -k1,12984:11949877,9144245:222218 -k1,12984:14887906,9144245:222217 -k1,12984:16129208,9144245:222217 -k1,12984:18031769,9144245:222218 -k1,12984:18913278,9144245:222217 -k1,12984:20154580,9144245:222217 -k1,12984:23987832,9144245:222218 -k1,12984:25157700,9144245:222217 -k1,12984:25735778,9144245:222218 -k1,12984:28801602,9144245:222217 -k1,12984:32583029,9144245:0 -) -(1,12985:6630773,10009325:25952256,513147,134348 -k1,12984:7935118,10009325:158120 -k1,12984:11063986,10009325:158121 -$1,12984:11063986,10009325 -$1,12984:11384457,10009325 -k1,12984:11542577,10009325:158120 -k1,12984:12383582,10009325:158120 -k1,12984:14897722,10009325:158121 -k1,12984:19167571,10009325:158120 -k1,12984:20893313,10009325:158121 -k1,12984:25353872,10009325:158120 -k1,12984:27075026,10009325:158120 -k1,12984:30274673,10009325:158121 -k1,12984:30788653,10009325:158120 -k1,12984:32583029,10009325:0 -) -(1,12985:6630773,10874405:25952256,513147,126483 -k1,12984:7836417,10874405:186559 -k1,12984:11208026,10874405:186559 -k1,12984:12053877,10874405:186559 -k1,12984:13259521,10874405:186559 -k1,12984:17401178,10874405:186559 -k1,12984:18065494,10874405:186559 -k1,12984:19120405,10874405:186559 -k1,12984:22094866,10874405:186559 -k1,12984:23300510,10874405:186559 -k1,12984:25225084,10874405:186559 -k1,12984:26603088,10874405:186559 -k1,12984:29633254,10874405:186559 -k1,12984:32583029,10874405:0 -) -(1,12985:6630773,11739485:25952256,513147,134348 -k1,12984:7439050,11739485:148985 -k1,12984:7943895,11739485:148985 -k1,12984:9663779,11739485:148986 -k1,12984:12265777,11739485:148985 -k1,12984:14111489,11739485:148985 -k1,12984:15432913,11739485:148985 -k1,12984:19192933,11739485:148986 -k1,12984:21302755,11739485:148985 -k1,12984:21807600,11739485:148985 -k1,12984:24353892,11739485:148985 -k1,12984:26858897,11739485:148986 -k1,12984:30789309,11739485:148985 -k1,12984:32583029,11739485:0 -) -(1,12985:6630773,12604565:25952256,513147,134348 -k1,12984:7345195,12604565:236665 -k1,12984:8450212,12604565:236665 -k1,12984:9884221,12604565:236666 -k1,12984:11139971,12604565:236665 -k1,12984:14092448,12604565:236665 -k1,12984:14988405,12604565:236665 -k1,12984:16244155,12604565:236665 -k1,12984:18936455,12604565:236666 -k1,12984:19832412,12604565:236665 -k1,12984:22925791,12604565:236665 -$1,12984:22925791,12604565 -k1,12984:23627815,12604565:250481 -k1,12984:24446492,12604565:250480 -k1,12984:25134621,12604565:173016 -k1,12984:25875834,12604565:173016 -$1,12984:26274293,12604565 -k1,12984:26684629,12604565:236666 -k1,12984:27940379,12604565:236665 -k1,12984:29831828,12604565:236665 -k1,12985:32583029,12604565:0 -) -(1,12985:6630773,13469645:25952256,513147,126483 -k1,12984:7830586,13469645:233812 -k1,12984:10025235,13469645:233812 -k1,12984:10614908,13469645:233813 -k1,12984:13246027,13469645:233812 -$1,12984:13246027,13469645 -$1,12984:13566498,13469645 -k1,12984:17794729,13469645:233812 -k1,12984:19943503,13469645:233812 -k1,12984:21771807,13469645:233813 -k1,12984:22463716,13469645:233812 -k1,12984:23229025,13469645:233812 -k1,12984:26092797,13469645:233812 -k1,12984:26978038,13469645:233813 -k1,12984:28304335,13469645:233812 -k1,12984:29557232,13469645:233812 -k1,12984:32583029,13469645:0 -) -(1,12985:6630773,14334725:25952256,513147,134348 -g1,12984:9920025,14334725 -g1,12984:10735292,14334725 -g1,12984:13213208,14334725 -h1,12984:14183796,14334725:0,0,0 -g1,12984:14383025,14334725 -g1,12984:15391624,14334725 -g1,12984:17089006,14334725 -h1,12984:18059594,14334725:0,0,0 -g1,12984:18432493,14334725 -g1,12984:19247760,14334725 -g1,12984:22531113,14334725 -k1,12985:32583029,14334725:7039882 -g1,12985:32583029,14334725 -) -v1,12987:6630773,15199805:0,393216,0 -(1,12988:6630773,18237691:25952256,3431102,0 -g1,12988:6630773,18237691 -g1,12988:6237557,18237691 -r1,13039:6368629,18237691:131072,3431102,0 -g1,12988:6567858,18237691 -g1,12988:6764466,18237691 -[1,12988:6764466,18237691:25818563,3431102,0 -(1,12988:6764466,15508103:25818563,701514,196608 -(1,12987:6764466,15508103:0,701514,196608 -r1,13039:7761522,15508103:997056,898122,196608 -k1,12987:6764466,15508103:-997056 -) -(1,12987:6764466,15508103:997056,701514,196608 -) -k1,12987:8038517,15508103:276995 -k1,12987:8366197,15508103:327680 -k1,12987:11178126,15508103:276996 -k1,12987:14578566,15508103:276995 -k1,12987:17615937,15508103:276995 -k1,12987:19474317,15508103:276996 -k1,12987:20698963,15508103:276995 -k1,12987:22910581,15508103:276995 -k1,12987:24379021,15508103:276995 -k1,12987:27669362,15508103:276996 -k1,12987:30381675,15508103:276995 -k1,12988:32583029,15508103:0 -) -(1,12988:6764466,16373183:25818563,513147,126483 -k1,12987:8431047,16373183:173015 -k1,12987:9290224,16373183:173015 -k1,12987:10482324,16373183:173015 -k1,12987:11841541,16373183:173015 -k1,12987:12673848,16373183:173015 -k1,12987:14019302,16373183:173015 -k1,12987:14875202,16373183:173015 -k1,12987:16698414,16373183:173015 -k1,12987:20064998,16373183:173015 -k1,12987:22594032,16373183:173015 -k1,12987:27052446,16373183:173015 -k1,12987:28127892,16373183:173015 -k1,12987:30962324,16373183:173015 -k1,12987:31794631,16373183:173015 -k1,12987:32583029,16373183:0 -) -(1,12988:6764466,17238263:25818563,513147,7863 -k1,12987:8065002,17238263:208051 -k1,12987:10041871,17238263:208052 -k1,12987:10997688,17238263:208051 -k1,12987:11857168,17238263:208052 -k1,12987:14781031,17238263:208051 -k1,12987:16727098,17238263:208052 -k1,12987:18126594,17238263:208051 -k1,12987:21178253,17238263:208052 -k1,12987:24666381,17238263:208051 -k1,12987:25822084,17238263:208052 -k1,12987:27888736,17238263:208051 -k1,12987:29288233,17238263:208052 -k1,12987:31966991,17238263:208051 -k1,12987:32583029,17238263:0 -) -(1,12988:6764466,18103343:25818563,513147,134348 -g1,12987:7319555,18103343 -g1,12987:9842691,18103343 -g1,12987:11960814,18103343 -g1,12987:13179128,18103343 -g1,12987:15571192,18103343 -g1,12987:16977594,18103343 -g1,12987:18243094,18103343 -g1,12987:21283309,18103343 -g1,12987:22095300,18103343 -g1,12987:23313614,18103343 -g1,12987:24938251,18103343 -g1,12987:25796772,18103343 -k1,12988:32583029,18103343:2992378 -g1,12988:32583029,18103343 -) -] -g1,12988:32583029,18237691 -) -h1,12988:6630773,18237691:0,0,0 -(1,12991:6630773,19102771:25952256,513147,126483 -h1,12990:6630773,19102771:983040,0,0 -k1,12990:8358100,19102771:274394 -k1,12990:9163991,19102771:274394 -k1,12990:10724201,19102771:274394 -k1,12990:13628556,19102771:274395 -k1,12990:14554378,19102771:274394 -k1,12990:17498053,19102771:274394 -k1,12990:18791532,19102771:274394 -k1,12990:21952132,19102771:274394 -k1,12990:24095613,19102771:274394 -k1,12990:25029300,19102771:274395 -k1,12990:26322779,19102771:274394 -k1,12990:30552271,19102771:274394 -k1,12990:31509550,19102771:274394 -k1,12991:32583029,19102771:0 -) -(1,12991:6630773,19967851:25952256,513147,134348 -k1,12990:8849385,19967851:212555 -k1,12990:13017038,19967851:212555 -k1,12990:14177244,19967851:212555 -k1,12990:14745659,19967851:212555 -k1,12990:16347577,19967851:212555 -k1,12990:17494676,19967851:212556 -k1,12990:20167453,19967851:212555 -k1,12990:22572187,19967851:212555 -k1,12990:23594112,19967851:212555 -k1,12990:24162527,19967851:212555 -k1,12990:27218689,19967851:212555 -k1,12990:31386342,19967851:212555 -k1,12990:32583029,19967851:0 -) -(1,12991:6630773,20832931:25952256,513147,126483 -k1,12990:8546391,20832931:203162 -k1,12990:11722920,20832931:203161 -k1,12990:15707509,20832931:203162 -k1,12990:17014952,20832931:203161 -k1,12990:18671703,20832931:203162 -k1,12990:19622630,20832931:203161 -k1,12990:21339018,20832931:203162 -k1,12990:22193607,20832931:203161 -k1,12990:25184671,20832931:203162 -k1,12990:29565097,20832931:203161 -k1,12990:32583029,20832931:0 -) -(1,12991:6630773,21698011:25952256,513147,7863 -k1,12990:8047900,21698011:225682 -k1,12990:10767882,21698011:225682 -k1,12990:12909838,21698011:225683 -k1,12990:13821682,21698011:225682 -k1,12990:15614985,21698011:225682 -k1,12990:18684274,21698011:225682 -k1,12990:23195355,21698011:225682 -k1,12990:24801881,21698011:225682 -k1,12990:26313380,21698011:225683 -k1,12990:28551017,21698011:225682 -k1,12990:31860823,21698011:225682 -k1,12991:32583029,21698011:0 -) -(1,12991:6630773,22563091:25952256,513147,134348 -g1,12990:9347240,22563091 -g1,12990:11281862,22563091 -g1,12990:14265716,22563091 -g1,12990:15958511,22563091 -g1,12990:16843902,22563091 -g1,12990:18062216,22563091 -g1,12990:21359987,22563091 -g1,12990:22242101,22563091 -g1,12990:24133470,22563091 -g1,12990:26893846,22563091 -k1,12991:32583029,22563091:3318746 -g1,12991:32583029,22563091 -) -(1,12993:6630773,23428171:25952256,513147,134348 -h1,12992:6630773,23428171:983040,0,0 -k1,12992:10665987,23428171:262306 -(1,12992:10665987,23428171:0,452978,115847 -r1,13039:13837947,23428171:3171960,568825,115847 -k1,12992:10665987,23428171:-3171960 -) -(1,12992:10665987,23428171:3171960,452978,115847 -k1,12992:10665987,23428171:3277 -h1,12992:13834670,23428171:0,411205,112570 -) -k1,12992:14100252,23428171:262305 -k1,12992:17480761,23428171:262306 -k1,12992:19738637,23428171:262305 -k1,12992:22333369,23428171:262306 -k1,12992:25815459,23428171:262306 -k1,12992:27813157,23428171:262305 -k1,12992:30837806,23428171:262306 -k1,12993:32583029,23428171:0 -) -(1,12993:6630773,24293251:25952256,505283,126483 -k1,12992:8217808,24293251:267795 -k1,12992:8973123,24293251:267727 -k1,12992:10982210,24293251:267795 -k1,12992:11781502,24293251:267795 -k1,12992:13562524,24293251:267796 -k1,12992:14481747,24293251:267795 -k1,12992:17418823,24293251:267795 -k1,12992:18705704,24293251:267796 -k1,12992:21016256,24293251:267795 -k1,12992:22475496,24293251:267795 -k1,12992:23762376,24293251:267795 -k1,12992:27436733,24293251:267796 -k1,12992:31278862,24293251:267795 -k1,12992:32583029,24293251:0 -) -(1,12993:6630773,25158331:25952256,513147,126483 -k1,12992:9165939,25158331:234197 -k1,12992:10603378,25158331:234198 -k1,12992:12578867,25158331:234197 -k1,12992:13518232,25158331:234198 -k1,12992:14949116,25158331:234197 -k1,12992:16924606,25158331:234198 -k1,12992:17690300,25158331:234197 -k1,12992:18280357,25158331:234197 -k1,12992:21561324,25158331:234198 -k1,12992:23080027,25158331:234197 -k1,12992:25454631,25158331:234198 -k1,12992:26340256,25158331:234197 -k1,12992:27593539,25158331:234198 -k1,12992:30713942,25158331:234197 -k1,12992:32583029,25158331:0 -) -(1,12993:6630773,26023411:25952256,513147,134348 -k1,12992:7497512,26023411:207447 -k1,12992:8724043,26023411:207446 -k1,12992:12712917,26023411:207447 -k1,12992:13579655,26023411:207446 -k1,12992:18032524,26023411:207447 -k1,12992:19436658,26023411:207447 -k1,12992:21603630,26023411:207446 -k1,12992:24589804,26023411:207447 -k1,12992:25328748,26023411:207447 -k1,12992:25892054,26023411:207446 -k1,12992:28785822,26023411:207447 -k1,12992:29986794,26023411:207446 -k1,12992:31478747,26023411:207447 -k1,12992:32583029,26023411:0 -) -(1,12993:6630773,26888491:25952256,505283,126483 -g1,12992:7577768,26888491 -g1,12992:9290223,26888491 -g1,12992:10140880,26888491 -g1,12992:11617406,26888491 -g1,12992:12835720,26888491 -g1,12992:16171502,26888491 -k1,12993:32583029,26888491:14617807 -g1,12993:32583029,26888491 -) -(1,12995:6630773,27753571:25952256,513147,134348 -h1,12994:6630773,27753571:983040,0,0 -k1,12994:9106365,27753571:295865 -k1,12994:10898418,27753571:295866 -k1,12994:13062714,27753571:295865 -k1,12994:16404692,27753571:295865 -k1,12994:17719643,27753571:295866 -k1,12994:20988876,27753571:295865 -k1,12994:25066169,27753571:295866 -k1,12994:26309685,27753571:295865 -k1,12994:27624635,27753571:295865 -k1,12994:30245718,27753571:295866 -k1,12994:31966991,27753571:295865 -k1,12994:32583029,27753571:0 -) -(1,12995:6630773,28618651:25952256,513147,134348 -k1,12994:9488917,28618651:272749 -k1,12994:12396869,28618651:272749 -k1,12994:15738668,28618651:272748 -k1,12994:16670709,28618651:272749 -k1,12994:17962543,28618651:272749 -k1,12994:19370376,28618651:272749 -k1,12994:22115798,28618651:272749 -k1,12994:24437202,28618651:272749 -k1,12994:25322712,28618651:272748 -k1,12994:29630513,28618651:272749 -k1,12994:30259122,28618651:272749 -k1,12994:32583029,28618651:0 -) -(1,12995:6630773,29483731:25952256,513147,7863 -g1,12994:8397623,29483731 -k1,12995:32583030,29483731:23718136 -g1,12995:32583030,29483731 -) -v1,12997:6630773,30168586:0,393216,0 -(1,13001:6630773,30515875:25952256,740505,196608 -g1,13001:6630773,30515875 -g1,13001:6630773,30515875 -g1,13001:6434165,30515875 -(1,13001:6434165,30515875:0,740505,196608 -r1,13039:32779637,30515875:26345472,937113,196608 -k1,13001:6434165,30515875:-26345472 -) -(1,13001:6434165,30515875:26345472,740505,196608 -[1,13001:6630773,30515875:25952256,543897,0 -(1,12999:6630773,30403023:25952256,431045,112852 -(1,12998:6630773,30403023:0,0,0 -g1,12998:6630773,30403023 -g1,12998:6630773,30403023 -g1,12998:6303093,30403023 -(1,12998:6303093,30403023:0,0,0 -) -g1,12998:6630773,30403023 -) -g1,12999:7294681,30403023 -g1,12999:8290543,30403023 -g1,12999:16921346,30403023 -g1,12999:17917208,30403023 -g1,12999:18581116,30403023 -h1,12999:20240886,30403023:0,0,0 -k1,12999:32583029,30403023:12342143 -g1,12999:32583029,30403023 -) -] -) -g1,13001:32583029,30515875 -g1,13001:6630773,30515875 -g1,13001:6630773,30515875 -g1,13001:32583029,30515875 -g1,13001:32583029,30515875 -) -h1,13001:6630773,30712483:0,0,0 -v1,13005:6630773,31577563:0,393216,0 -(1,13039:6630773,45405851:25952256,14221504,0 -g1,13039:6630773,45405851 -g1,13039:6237557,45405851 -r1,13039:6368629,45405851:131072,14221504,0 -g1,13039:6567858,45405851 -g1,13039:6764466,45405851 -[1,13039:6764466,45405851:25818563,14221504,0 -(1,13006:6764466,31885861:25818563,701514,196608 -(1,13005:6764466,31885861:0,701514,196608 -r1,13039:7761522,31885861:997056,898122,196608 -k1,13005:6764466,31885861:-997056 -) -(1,13005:6764466,31885861:997056,701514,196608 -) -k1,13005:7974729,31885861:213207 -k1,13005:8302409,31885861:327680 -k1,13005:10307370,31885861:213207 -(1,13005:10307370,31885861:0,452978,115847 -r1,13039:12072483,31885861:1765113,568825,115847 -k1,13005:10307370,31885861:-1765113 -) -(1,13005:10307370,31885861:1765113,452978,115847 -k1,13005:10307370,31885861:3277 -h1,13005:12069206,31885861:0,411205,112570 -) -k1,13005:12285690,31885861:213207 -k1,13005:13367249,31885861:213207 -k1,13005:14684738,31885861:213207 -k1,13005:17266416,31885861:213207 -k1,13005:18498708,31885861:213207 -k1,13005:21643340,31885861:213207 -k1,13005:22515839,31885861:213207 -k1,13005:23748131,31885861:213207 -k1,13005:25920864,31885861:213207 -k1,13005:28912798,31885861:213207 -k1,13005:29887533,31885861:213207 -k1,13006:32583029,31885861:0 -) -(1,13006:6764466,32750941:25818563,452978,115847 -(1,13005:6764466,32750941:0,452978,115847 -r1,13039:9936426,32750941:3171960,568825,115847 -k1,13005:6764466,32750941:-3171960 -) -(1,13005:6764466,32750941:3171960,452978,115847 -k1,13005:6764466,32750941:3277 -h1,13005:9933149,32750941:0,411205,112570 -) -k1,13006:32583030,32750941:22594176 -g1,13006:32583030,32750941 -) -v1,13008:6764466,33435796:0,393216,0 -(1,13024:6764466,40749495:25818563,7706915,196608 -g1,13024:6764466,40749495 -g1,13024:6764466,40749495 -g1,13024:6567858,40749495 -(1,13024:6567858,40749495:0,7706915,196608 -r1,13039:32779637,40749495:26211779,7903523,196608 -k1,13024:6567857,40749495:-26211780 -) -(1,13024:6567858,40749495:26211779,7706915,196608 -[1,13024:6764466,40749495:25818563,7510307,0 -(1,13010:6764466,33663627:25818563,424439,79822 -(1,13009:6764466,33663627:0,0,0 -g1,13009:6764466,33663627 -g1,13009:6764466,33663627 -g1,13009:6436786,33663627 -(1,13009:6436786,33663627:0,0,0 -) -g1,13009:6764466,33663627 -) -k1,13010:6764466,33663627:0 -h1,13010:8756190,33663627:0,0,0 -k1,13010:32583030,33663627:23826840 -g1,13010:32583030,33663627 -) -(1,13023:6764466,34479554:25818563,431045,9908 -(1,13012:6764466,34479554:0,0,0 -g1,13012:6764466,34479554 -g1,13012:6764466,34479554 -g1,13012:6436786,34479554 -(1,13012:6436786,34479554:0,0,0 -) -g1,13012:6764466,34479554 -) -g1,13023:7760328,34479554 -g1,13023:9420098,34479554 -g1,13023:10415960,34479554 -h1,13023:10747914,34479554:0,0,0 -k1,13023:32583030,34479554:21835116 -g1,13023:32583030,34479554 -) -(1,13023:6764466,35164409:25818563,431045,79822 -h1,13023:6764466,35164409:0,0,0 -g1,13023:7760328,35164409 -g1,13023:8092282,35164409 -g1,13023:8756190,35164409 -g1,13023:9420098,35164409 -g1,13023:9752052,35164409 -g1,13023:10084006,35164409 -g1,13023:10415960,35164409 -g1,13023:10747914,35164409 -g1,13023:11079868,35164409 -g1,13023:11411822,35164409 -g1,13023:11743776,35164409 -g1,13023:12075730,35164409 -g1,13023:12739638,35164409 -g1,13023:14067454,35164409 -g1,13023:16723086,35164409 -g1,13023:18382856,35164409 -g1,13023:20042626,35164409 -g1,13023:21702396,35164409 -g1,13023:23362166,35164409 -g1,13023:24358028,35164409 -h1,13023:25353890,35164409:0,0,0 -k1,13023:32583029,35164409:7229139 -g1,13023:32583029,35164409 -) -(1,13023:6764466,35849264:25818563,431045,106246 -h1,13023:6764466,35849264:0,0,0 -k1,13023:7756636,35849264:328262 -k1,13023:8084897,35849264:328261 -k1,13023:8745113,35849264:328262 -k1,13023:9405328,35849264:328261 -k1,13023:9733590,35849264:328262 -k1,13023:10061851,35849264:328261 -k1,13023:10390113,35849264:328262 -k1,13023:10718374,35849264:328261 -k1,13023:11046636,35849264:328262 -k1,13023:11374897,35849264:328261 -k1,13023:11703159,35849264:328262 -k1,13023:12031421,35849264:328262 -k1,13023:12691636,35849264:328261 -k1,13023:14015760,35849264:328262 -k1,13023:16667699,35849264:328261 -k1,13023:19651593,35849264:328262 -k1,13023:22635486,35849264:328261 -k1,13023:25619380,35849264:328262 -k1,13023:28603273,35849264:328261 -k1,13023:31587167,35849264:328262 -h1,13023:32583029,35849264:0,0,0 -k1,13023:32583029,35849264:0 -k1,13023:32583029,35849264:0 -) -(1,13023:6764466,36534119:25818563,431045,33029 -h1,13023:6764466,36534119:0,0,0 -g1,13023:7760328,36534119 -g1,13023:8092282,36534119 -g1,13023:8756190,36534119 -g1,13023:9752052,36534119 -g1,13023:10084006,36534119 -g1,13023:10415960,36534119 -g1,13023:10747914,36534119 -g1,13023:11079868,36534119 -g1,13023:11411822,36534119 -g1,13023:11743776,36534119 -g1,13023:12075730,36534119 -g1,13023:12739638,36534119 -g1,13023:14067454,36534119 -h1,13023:15063316,36534119:0,0,0 -k1,13023:32583028,36534119:17519712 -g1,13023:32583028,36534119 -) -(1,13023:6764466,37218974:25818563,431045,33029 -h1,13023:6764466,37218974:0,0,0 -g1,13023:7760328,37218974 -g1,13023:8092282,37218974 -g1,13023:8756190,37218974 -g1,13023:9420098,37218974 -g1,13023:9752052,37218974 -g1,13023:10084006,37218974 -g1,13023:10415960,37218974 -g1,13023:10747914,37218974 -g1,13023:11079868,37218974 -g1,13023:11411822,37218974 -g1,13023:11743776,37218974 -g1,13023:12075730,37218974 -g1,13023:12739638,37218974 -g1,13023:14067454,37218974 -h1,13023:15063316,37218974:0,0,0 -k1,13023:32583028,37218974:17519712 -g1,13023:32583028,37218974 -) -(1,13023:6764466,37903829:25818563,431045,112852 -h1,13023:6764466,37903829:0,0,0 -g1,13023:7760328,37903829 -g1,13023:8092282,37903829 -g1,13023:8756190,37903829 -g1,13023:12739637,37903829 -g1,13023:14399407,37903829 -h1,13023:16059177,37903829:0,0,0 -k1,13023:32583029,37903829:16523852 -g1,13023:32583029,37903829 -) -(1,13023:6764466,38588684:25818563,431045,112852 -h1,13023:6764466,38588684:0,0,0 -g1,13023:7760328,38588684 -g1,13023:8092282,38588684 -g1,13023:8756190,38588684 -g1,13023:10415960,38588684 -g1,13023:10747914,38588684 -g1,13023:11079868,38588684 -g1,13023:11411822,38588684 -g1,13023:11743776,38588684 -g1,13023:12075730,38588684 -g1,13023:12739638,38588684 -g1,13023:15727223,38588684 -g1,13023:21702394,38588684 -g1,13023:22366302,38588684 -g1,13023:28341473,38588684 -g1,13023:29337335,38588684 -g1,13023:30001243,38588684 -h1,13023:31661013,38588684:0,0,0 -k1,13023:32583029,38588684:922016 -g1,13023:32583029,38588684 -) -(1,13023:6764466,39273539:25818563,431045,112852 -h1,13023:6764466,39273539:0,0,0 -g1,13023:7760328,39273539 -g1,13023:8092282,39273539 -g1,13023:8756190,39273539 -g1,13023:12075729,39273539 -g1,13023:12739637,39273539 -g1,13023:14067453,39273539 -h1,13023:20042624,39273539:0,0,0 -k1,13023:32583029,39273539:12540405 -g1,13023:32583029,39273539 -) -(1,13023:6764466,39958394:25818563,431045,112852 -h1,13023:6764466,39958394:0,0,0 -g1,13023:7760328,39958394 -g1,13023:8092282,39958394 -g1,13023:8756190,39958394 -g1,13023:11079868,39958394 -g1,13023:11411822,39958394 -g1,13023:11743776,39958394 -g1,13023:12075730,39958394 -g1,13023:12739638,39958394 -g1,13023:14399408,39958394 -h1,13023:16059178,39958394:0,0,0 -k1,13023:32583029,39958394:16523851 -g1,13023:32583029,39958394 -) -(1,13023:6764466,40643249:25818563,424439,106246 -h1,13023:6764466,40643249:0,0,0 -g1,13023:7760328,40643249 -g1,13023:8092282,40643249 -g1,13023:8756190,40643249 -g1,13023:11411822,40643249 -g1,13023:14731361,40643249 -g1,13023:16059177,40643249 -h1,13023:19046762,40643249:0,0,0 -k1,13023:32583029,40643249:13536267 -g1,13023:32583029,40643249 -) -] -) -g1,13024:32583029,40749495 -g1,13024:6764466,40749495 -g1,13024:6764466,40749495 -g1,13024:32583029,40749495 -g1,13024:32583029,40749495 -) -h1,13024:6764466,40946103:0,0,0 -(1,13028:6764466,41811183:25818563,505283,134348 -h1,13027:6764466,41811183:983040,0,0 -k1,13027:9102527,41811183:158334 -k1,13027:11220388,41811183:158335 -k1,13027:13190137,41811183:158334 -k1,13027:14034633,41811183:158334 -(1,13027:14034633,41811183:0,452978,115847 -r1,13039:14392899,41811183:358266,568825,115847 -k1,13027:14034633,41811183:-358266 -) -(1,13027:14034633,41811183:358266,452978,115847 -k1,13027:14034633,41811183:3277 -h1,13027:14389622,41811183:0,411205,112570 -) -k1,13027:14551233,41811183:158334 -k1,13027:15241065,41811183:158335 -k1,13027:15755259,41811183:158334 -(1,13027:15755259,41811183:0,452978,115847 -r1,13039:17168660,41811183:1413401,568825,115847 -k1,13027:15755259,41811183:-1413401 -) -(1,13027:15755259,41811183:1413401,452978,115847 -k1,13027:15755259,41811183:3277 -h1,13027:17165383,41811183:0,411205,112570 -) -k1,13027:17326994,41811183:158334 -k1,13027:18879279,41811183:158334 -k1,13027:20834611,41811183:158335 -k1,13027:24120323,41811183:158334 -k1,13027:25475344,41811183:158334 -k1,13027:26806117,41811183:158334 -k1,13027:29584581,41811183:158335 -k1,13027:32224763,41811183:158334 -(1,13027:32224763,41811183:0,414482,115847 -r1,13039:32583029,41811183:358266,530329,115847 -k1,13027:32224763,41811183:-358266 -) -(1,13027:32224763,41811183:358266,414482,115847 -k1,13027:32224763,41811183:3277 -h1,13027:32579752,41811183:0,411205,112570 -) -k1,13027:32583029,41811183:0 -) -(1,13028:6764466,42676263:25818563,505283,126483 -k1,13027:8120042,42676263:164131 -(1,13027:8120042,42676263:0,414482,115847 -r1,13039:8478308,42676263:358266,530329,115847 -k1,13027:8120042,42676263:-358266 -) -(1,13027:8120042,42676263:358266,414482,115847 -k1,13027:8120042,42676263:3277 -h1,13027:8475031,42676263:0,411205,112570 -) -k1,13027:8642439,42676263:164131 -k1,13027:11475851,42676263:164131 -k1,13027:12659067,42676263:164131 -k1,13027:15959751,42676263:164131 -k1,13027:19609742,42676263:164131 -k1,13027:23555300,42676263:164131 -k1,13027:24910876,42676263:164131 -k1,13027:27695136,42676263:164131 -k1,13027:28878352,42676263:164131 -k1,13027:30783775,42676263:164131 -k1,13027:31563944,42676263:164131 -k1,13027:32583029,42676263:0 -) -(1,13028:6764466,43541343:25818563,505283,134348 -k1,13027:8175103,43541343:133340 -k1,13027:10350544,43541343:133339 -k1,13027:11680571,43541343:133340 -k1,13027:14995028,43541343:133339 -k1,13027:18534929,43541343:133340 -k1,13027:21804822,43541343:133340 -k1,13027:23673554,43541343:133339 -k1,13027:26261217,43541343:133340 -(1,13027:26261217,43541343:0,452978,122846 -r1,13039:27674618,43541343:1413401,575824,122846 -k1,13027:26261217,43541343:-1413401 -) -(1,13027:26261217,43541343:1413401,452978,122846 -k1,13027:26261217,43541343:3277 -h1,13027:27671341,43541343:0,411205,112570 -) -k1,13027:27807958,43541343:133340 -k1,13027:28472794,43541343:133339 -k1,13027:29222172,43541343:133340 -(1,13027:29222172,43541343:0,452978,115847 -r1,13039:29932150,43541343:709978,568825,115847 -k1,13027:29222172,43541343:-709978 -) -(1,13027:29222172,43541343:709978,452978,115847 -k1,13027:29222172,43541343:3277 -h1,13027:29928873,43541343:0,411205,112570 -) -k1,13027:30239159,43541343:133339 -k1,13027:31563944,43541343:133340 -k1,13027:32583029,43541343:0 -) -(1,13028:6764466,44406423:25818563,513147,134348 -k1,13027:8963477,44406423:185745 -k1,13027:9808514,44406423:185745 -k1,13027:11972135,44406423:185744 -(1,13027:11972135,44406423:0,459977,122846 -r1,13039:17606078,44406423:5633943,582823,122846 -k1,13027:11972135,44406423:-5633943 -) -(1,13027:11972135,44406423:5633943,459977,122846 -k1,13027:11972135,44406423:3277 -h1,13027:17602801,44406423:0,411205,112570 -) -k1,13027:17965493,44406423:185745 -k1,13027:19170323,44406423:185745 -k1,13027:20745431,44406423:185745 -k1,13027:22618072,44406423:185744 -k1,13027:23335314,44406423:185745 -k1,13027:24137097,44406423:185745 -(1,13027:24137097,44406423:0,414482,115847 -r1,13039:24495363,44406423:358266,530329,115847 -k1,13027:24137097,44406423:-358266 -) -(1,13027:24137097,44406423:358266,414482,115847 -k1,13027:24137097,44406423:3277 -h1,13027:24492086,44406423:0,411205,112570 -) -k1,13027:24854778,44406423:185745 -k1,13027:27607568,44406423:185745 -(1,13027:27607568,44406423:0,452978,115847 -r1,13039:29020969,44406423:1413401,568825,115847 -k1,13027:27607568,44406423:-1413401 -) -(1,13027:27607568,44406423:1413401,452978,115847 -k1,13027:27607568,44406423:3277 -h1,13027:29017692,44406423:0,411205,112570 -) -k1,13027:29206713,44406423:185744 -k1,13027:29923955,44406423:185745 -k1,13027:31128785,44406423:185745 -k1,13028:32583029,44406423:0 -) -(1,13028:6764466,45271503:25818563,513147,134348 -k1,13027:8749373,45271503:173492 -k1,13027:10436090,45271503:173491 -k1,13027:11261010,45271503:173492 -k1,13027:12534196,45271503:173492 -k1,13027:13726772,45271503:173491 -k1,13027:16769430,45271503:173492 -k1,13027:17962006,45271503:173491 -k1,13027:21353316,45271503:173492 -k1,13027:22699247,45271503:173492 -k1,13027:25826446,45271503:173491 -k1,13027:27475153,45271503:173492 -k1,13027:32583029,45271503:0 -) -] -g1,13039:32583029,45405851 -) -] -(1,13039:32583029,45706769:0,0,0 -g1,13039:32583029,45706769 -) -) -] -(1,13039:6630773,47279633:25952256,0,0 -h1,13039:6630773,47279633:25952256,0,0 -) -] -(1,13039:4262630,4025873:0,0,0 -[1,13039:-473656,4025873:0,0,0 -(1,13039:-473656,-710413:0,0,0 -(1,13039:-473656,-710413:0,0,0 -g1,13039:-473656,-710413 -) -g1,13039:-473656,-710413 -) -] -) -] -!29708 -}208 Input:2176:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2177:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2178:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!288 +!1300 {209 -[1,13087:4262630,47279633:28320399,43253760,0 -(1,13087:4262630,4025873:0,0,0 -[1,13087:-473656,4025873:0,0,0 -(1,13087:-473656,-710413:0,0,0 -(1,13087:-473656,-644877:0,0,0 -k1,13087:-473656,-644877:-65536 +[1,13037:4262630,47279633:28320399,43253760,0 +(1,13037:4262630,4025873:0,0,0 +[1,13037:-473656,4025873:0,0,0 +(1,13037:-473656,-710413:0,0,0 +(1,13037:-473656,-644877:0,0,0 +k1,13037:-473656,-644877:-65536 ) -(1,13087:-473656,4736287:0,0,0 -k1,13087:-473656,4736287:5209943 +(1,13037:-473656,4736287:0,0,0 +k1,13037:-473656,4736287:5209943 ) -g1,13087:-473656,-710413 +g1,13037:-473656,-710413 ) ] ) -[1,13087:6630773,47279633:25952256,43253760,0 -[1,13087:6630773,4812305:25952256,786432,0 -(1,13087:6630773,4812305:25952256,513147,126483 -(1,13087:6630773,4812305:25952256,513147,126483 -g1,13087:3078558,4812305 -[1,13087:3078558,4812305:0,0,0 -(1,13087:3078558,2439708:0,1703936,0 -k1,13087:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13087:2537886,2439708:1179648,16384,0 +[1,13037:6630773,47279633:25952256,43253760,0 +[1,13037:6630773,4812305:25952256,786432,0 +(1,13037:6630773,4812305:25952256,505283,126483 +(1,13037:6630773,4812305:25952256,505283,126483 +g1,13037:3078558,4812305 +[1,13037:3078558,4812305:0,0,0 +(1,13037:3078558,2439708:0,1703936,0 +k1,13037:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13037:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13087:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13037:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13087:3078558,4812305:0,0,0 -(1,13087:3078558,2439708:0,1703936,0 -g1,13087:29030814,2439708 -g1,13087:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13087:36151628,1915420:16384,1179648,0 +[1,13037:3078558,4812305:0,0,0 +(1,13037:3078558,2439708:0,1703936,0 +g1,13037:29030814,2439708 +g1,13037:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13037:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13087:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13037:37855564,2439708:1179648,16384,0 ) ) -k1,13087:3078556,2439708:-34777008 +k1,13037:3078556,2439708:-34777008 ) ] -[1,13087:3078558,4812305:0,0,0 -(1,13087:3078558,49800853:0,16384,2228224 -k1,13087:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13087:2537886,49800853:1179648,16384,0 +[1,13037:3078558,4812305:0,0,0 +(1,13037:3078558,49800853:0,16384,2228224 +k1,13037:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13037:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13087:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13037:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] -) -) -) -] -[1,13087:3078558,4812305:0,0,0 -(1,13087:3078558,49800853:0,16384,2228224 -g1,13087:29030814,49800853 -g1,13087:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13087:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13087:37855564,49800853:1179648,16384,0 -) -) -k1,13087:3078556,49800853:-34777008 -) -] -g1,13087:6630773,4812305 -k1,13087:19575446,4812305:11749296 -g1,13087:21198117,4812305 -g1,13087:21985204,4812305 -g1,13087:24539797,4812305 -g1,13087:25949476,4812305 -g1,13087:28728857,4812305 -g1,13087:29852144,4812305 -) -) -] -[1,13087:6630773,45706769:25952256,40108032,0 -(1,13087:6630773,45706769:25952256,40108032,0 -(1,13087:6630773,45706769:0,0,0 -g1,13087:6630773,45706769 -) -[1,13087:6630773,45706769:25952256,40108032,0 -v1,13039:6630773,6254097:0,393216,0 -(1,13039:6630773,12703213:25952256,6842332,0 -g1,13039:6630773,12703213 -g1,13039:6237557,12703213 -r1,13087:6368629,12703213:131072,6842332,0 -g1,13039:6567858,12703213 -g1,13039:6764466,12703213 -[1,13039:6764466,12703213:25818563,6842332,0 -(1,13028:6764466,6366164:25818563,505283,134348 -k1,13027:9243601,6366164:237148 -k1,13027:10677436,6366164:237148 -k1,13027:13693312,6366164:237149 -k1,13027:15889986,6366164:237148 -k1,13027:18593909,6366164:237148 -k1,13027:19482485,6366164:237148 -k1,13027:21274802,6366164:237148 -(1,13027:21274802,6366164:0,452978,115847 -r1,13087:23743339,6366164:2468537,568825,115847 -k1,13027:21274802,6366164:-2468537 -) -(1,13027:21274802,6366164:2468537,452978,115847 -k1,13027:21274802,6366164:3277 -h1,13027:23740062,6366164:0,411205,112570 -) -k1,13027:24154157,6366164:237148 -k1,13027:25587993,6366164:237149 -k1,13027:27978654,6366164:237148 -k1,13027:30556748,6366164:237148 -k1,13027:31325393,6366164:237148 -k1,13028:32583029,6366164:0 -) -(1,13028:6764466,7231244:25818563,513147,134348 -k1,13027:8212200,7231244:223521 -k1,13027:9507891,7231244:223522 -k1,13027:12144448,7231244:223521 -k1,13027:13810416,7231244:223521 -k1,13027:14981589,7231244:223522 -k1,13027:16224195,7231244:223521 -k1,13027:18435423,7231244:223521 -k1,13027:20593568,7231244:223522 -k1,13027:23842886,7231244:223521 -k1,13027:25350913,7231244:223521 -k1,13027:26442787,7231244:223522 -k1,13027:27798770,7231244:223521 -k1,13027:29047274,7231244:223521 -k1,13027:30724385,7231244:223522 -k1,13027:31563944,7231244:223521 -k1,13027:32583029,7231244:0 -) -(1,13028:6764466,8096324:25818563,513147,134348 -k1,13027:9530372,8096324:174612 -k1,13027:10901672,8096324:174613 -k1,13027:12631453,8096324:174612 -k1,13027:14544081,8096324:174613 -k1,13027:15377985,8096324:174612 -k1,13027:16571683,8096324:174613 -k1,13027:18705821,8096324:174612 -k1,13027:19411930,8096324:174612 -k1,13027:20605628,8096324:174613 -k1,13027:22433713,8096324:174612 -k1,13027:23294488,8096324:174613 -k1,13027:24488185,8096324:174612 -k1,13027:26400813,8096324:174613 -k1,13027:27234717,8096324:174612 -k1,13027:28428415,8096324:174613 -k1,13027:31298523,8096324:174612 -k1,13027:32583029,8096324:0 -) -(1,13028:6764466,8961404:25818563,513147,134348 -k1,13027:9281672,8961404:167085 -k1,13027:10080524,8961404:167085 -(1,13027:10080524,8961404:0,452978,115847 -r1,13087:11493925,8961404:1413401,568825,115847 -k1,13027:10080524,8961404:-1413401 -) -(1,13027:10080524,8961404:1413401,452978,115847 -k1,13027:10080524,8961404:3277 -h1,13027:11490648,8961404:0,411205,112570 -) -k1,13027:11661010,8961404:167085 -k1,13027:14588472,8961404:167086 -k1,13027:15111417,8961404:167085 -k1,13027:16876270,8961404:167085 -k1,13027:17702647,8961404:167085 -k1,13027:19200113,8961404:167085 -k1,13027:20386283,8961404:167085 -k1,13027:22512894,8961404:167085 -k1,13027:23887153,8961404:167086 -k1,13027:26578029,8961404:167085 -k1,13027:28561772,8961404:167085 -k1,13027:31856235,8961404:167085 -k1,13028:32583029,8961404:0 -) -(1,13028:6764466,9826484:25818563,513147,134348 -k1,13027:9105234,9826484:182667 -k1,13027:13351787,9826484:182666 -k1,13027:14193746,9826484:182667 -k1,13027:16759302,9826484:182667 -k1,13027:20125708,9826484:182667 -k1,13027:21499819,9826484:182666 -k1,13027:24380603,9826484:182667 -k1,13027:26299974,9826484:182667 -k1,13027:26838501,9826484:182667 -k1,13027:28188363,9826484:182666 -k1,13027:29390115,9826484:182667 -k1,13027:32583029,9826484:0 -) -(1,13028:6764466,10691564:25818563,505283,126483 -g1,13027:9917403,10691564 -g1,13027:11220914,10691564 -g1,13027:12167909,10691564 -g1,13027:15339196,10691564 -g1,13027:16299953,10691564 -k1,13028:32583029,10691564:14492633 -g1,13028:32583029,10691564 -) -v1,13030:6764466,11376419:0,393216,0 -(1,13037:6764466,12506605:25818563,1523402,196608 -g1,13037:6764466,12506605 -g1,13037:6764466,12506605 -g1,13037:6567858,12506605 -(1,13037:6567858,12506605:0,1523402,196608 -r1,13087:32779637,12506605:26211779,1720010,196608 -k1,13037:6567857,12506605:-26211780 -) -(1,13037:6567858,12506605:26211779,1523402,196608 -[1,13037:6764466,12506605:25818563,1326794,0 -(1,13032:6764466,11610856:25818563,431045,33029 -(1,13031:6764466,11610856:0,0,0 -g1,13031:6764466,11610856 -g1,13031:6764466,11610856 -g1,13031:6436786,11610856 -(1,13031:6436786,11610856:0,0,0 -) -g1,13031:6764466,11610856 -) -h1,13032:7760328,11610856:0,0,0 -k1,13032:32583028,11610856:24822700 -g1,13032:32583028,11610856 -) -(1,13036:6764466,12426783:25818563,424439,79822 -(1,13034:6764466,12426783:0,0,0 -g1,13034:6764466,12426783 -g1,13034:6764466,12426783 -g1,13034:6436786,12426783 -(1,13034:6436786,12426783:0,0,0 -) -g1,13034:6764466,12426783 -) -g1,13036:7760328,12426783 -g1,13036:9088144,12426783 -h1,13036:10084006,12426783:0,0,0 -k1,13036:32583030,12426783:22499024 -g1,13036:32583030,12426783 -) -] -) -g1,13037:32583029,12506605 -g1,13037:6764466,12506605 -g1,13037:6764466,12506605 -g1,13037:32583029,12506605 -g1,13037:32583029,12506605 -) -h1,13037:6764466,12703213:0,0,0 -] -g1,13039:32583029,12703213 -) -h1,13039:6630773,12703213:0,0,0 -(1,13042:6630773,13568293:25952256,513147,126483 -h1,13041:6630773,13568293:983040,0,0 -k1,13041:8639605,13568293:207903 -k1,13041:9203369,13568293:207904 -(1,13041:9203369,13568293:0,452978,115847 -r1,13087:11320194,13568293:2116825,568825,115847 -k1,13041:9203369,13568293:-2116825 -) -(1,13041:9203369,13568293:2116825,452978,115847 -k1,13041:9203369,13568293:3277 -h1,13041:11316917,13568293:0,411205,112570 -) -k1,13041:11528097,13568293:207903 -k1,13041:14190323,13568293:207903 -k1,13041:14929724,13568293:207904 -k1,13041:17921596,13568293:207903 -k1,13041:19077151,13568293:207904 -k1,13041:20840223,13568293:207903 -(1,13041:20840223,13568293:0,452978,115847 -r1,13087:23308760,13568293:2468537,568825,115847 -k1,13041:20840223,13568293:-2468537 -) -(1,13041:20840223,13568293:2468537,452978,115847 -k1,13041:20840223,13568293:3277 -h1,13041:23305483,13568293:0,411205,112570 -) -k1,13041:23516663,13568293:207903 -k1,13041:24592919,13568293:207904 -k1,13041:25905104,13568293:207903 -k1,13041:27913936,13568293:207903 -k1,13041:30741969,13568293:207904 -k1,13041:31305732,13568293:207903 -k1,13041:32583029,13568293:0 -) -(1,13042:6630773,14433373:25952256,513147,126483 -k1,13041:7491370,14433373:201305 -k1,13041:8711760,14433373:201305 -k1,13041:12049617,14433373:201304 -k1,13041:15224290,14433373:201305 -k1,13041:17758021,14433373:201305 -k1,13041:21914424,14433373:201305 -k1,13041:22743563,14433373:201304 -k1,13041:24148109,14433373:201305 -k1,13041:25716495,14433373:201305 -k1,13041:26273660,14433373:201305 -k1,13041:29072811,14433373:201304 -k1,13041:31189078,14433373:201305 -k1,13041:32583029,14433373:0 -) -(1,13042:6630773,15298453:25952256,513147,102891 -g1,13041:8002441,15298453 -g1,13041:10893234,15298453 -g1,13041:12283908,15298453 -g1,13041:14073696,15298453 -g1,13041:15181909,15298453 -g1,13041:16948759,15298453 -k1,13042:32583029,15298453:13225822 -g1,13042:32583029,15298453 -) -v1,13044:6630773,15983308:0,393216,0 -(1,13048:6630773,16317385:25952256,727293,196608 -g1,13048:6630773,16317385 -g1,13048:6630773,16317385 -g1,13048:6434165,16317385 -(1,13048:6434165,16317385:0,727293,196608 -r1,13087:32779637,16317385:26345472,923901,196608 -k1,13048:6434165,16317385:-26345472 -) -(1,13048:6434165,16317385:26345472,727293,196608 -[1,13048:6630773,16317385:25952256,530685,0 -(1,13046:6630773,16211139:25952256,424439,106246 -(1,13045:6630773,16211139:0,0,0 -g1,13045:6630773,16211139 -g1,13045:6630773,16211139 -g1,13045:6303093,16211139 -(1,13045:6303093,16211139:0,0,0 -) -g1,13045:6630773,16211139 -) -k1,13046:6630773,16211139:0 -h1,13046:8954451,16211139:0,0,0 -k1,13046:32583029,16211139:23628578 -g1,13046:32583029,16211139 -) -] -) -g1,13048:32583029,16317385 -g1,13048:6630773,16317385 -g1,13048:6630773,16317385 -g1,13048:32583029,16317385 -g1,13048:32583029,16317385 -) -h1,13048:6630773,16513993:0,0,0 -(1,13051:6630773,29425633:25952256,12846104,0 -k1,13051:13183781,29425633:6553008 -h1,13050:13183781,29425633:0,0,0 -(1,13050:13183781,29425633:12846240,12846104,0 -(1,13050:13183781,29425633:12846136,12846136,0 -(1,13050:13183781,29425633:12846136,12846136,0 -(1,13050:13183781,29425633:0,12846136,0 -(1,13050:13183781,29425633:0,18945146,0 -(1,13050:13183781,29425633:18945146,18945146,0 -) -k1,13050:13183781,29425633:-18945146 -) -) -g1,13050:26029917,29425633 -) -) -) -g1,13051:26030021,29425633 -k1,13051:32583029,29425633:6553008 -) -(1,13059:6630773,30290713:25952256,505283,126483 -h1,13057:6630773,30290713:983040,0,0 -k1,13057:10897073,30290713:282366 -k1,13057:14665300,30290713:282367 -k1,13057:19233065,30290713:282366 -k1,13057:22623149,30290713:282367 -k1,13057:25878883,30290713:282366 -k1,13057:27821932,30290713:282367 -k1,13057:31258546,30290713:282366 -k1,13057:32583029,30290713:0 -) -(1,13059:6630773,31155793:25952256,505283,134348 -k1,13057:7257090,31155793:270457 -k1,13057:9729558,31155793:270458 -k1,13057:11235369,31155793:270457 -k1,13057:12121864,31155793:270457 -k1,13057:13781684,31155793:270457 -k1,13057:18071465,31155793:270458 -k1,13057:21322499,31155793:270457 -k1,13057:22494660,31155793:270386 -k1,13057:23956562,31155793:270457 -k1,13057:25128723,31155793:270386 -k1,13057:28372548,31155793:270457 -k1,13057:30975431,31155793:270457 -k1,13057:32583029,31155793:0 -) -(1,13059:6630773,32020873:25952256,513147,134348 -k1,13057:8654574,32020873:169132 -k1,13057:9633076,32020873:169132 -k1,13057:10821293,32020873:169132 -k1,13057:12082910,32020873:169132 -k1,13057:12911334,32020873:169132 -k1,13057:16106263,32020873:169132 -k1,13057:17421619,32020873:169131 -(1,13057:17421619,32020873:0,452978,115847 -r1,13087:20593579,32020873:3171960,568825,115847 -k1,13057:17421619,32020873:-3171960 -) -(1,13057:17421619,32020873:3171960,452978,115847 -k1,13057:17421619,32020873:3277 -h1,13057:20590302,32020873:0,411205,112570 -) -k1,13057:20936381,32020873:169132 -k1,13057:21791675,32020873:169132 -k1,13057:23239414,32020873:169132 -k1,13057:24094708,32020873:169132 -k1,13057:27615351,32020873:169132 -k1,13057:31350952,32020873:169132 -k1,13057:32583029,32020873:0 -) -(1,13059:6630773,32885953:25952256,513147,134348 -g1,13057:9108689,32885953 -h1,13057:10651407,32885953:0,0,0 -g1,13057:10850636,32885953 -g1,13057:11859235,32885953 -g1,13057:13556617,32885953 -h1,13057:14751994,32885953:0,0,0 -g1,13057:14951223,32885953 -g1,13057:16098103,32885953 -g1,13057:19289051,32885953 -g1,13057:20147572,32885953 -g1,13057:21996998,32885953 -g1,13057:25147969,32885953 -g1,13057:26538643,32885953 -g1,13057:29039496,32885953 -g1,13057:31227087,32885953 -k1,13059:32583029,32885953:1355942 -g1,13059:32583029,32885953 -) -(1,13060:6630773,35717113:25952256,32768,229376 -(1,13060:6630773,35717113:0,32768,229376 -(1,13060:6630773,35717113:5505024,32768,229376 -r1,13087:12135797,35717113:5505024,262144,229376 -) -k1,13060:6630773,35717113:-5505024 -) -(1,13060:6630773,35717113:25952256,32768,0 -r1,13087:32583029,35717113:25952256,32768,0 -) -) -(1,13060:6630773,37348965:25952256,606339,161218 -(1,13060:6630773,37348965:1974731,568590,14155 -g1,13060:6630773,37348965 -g1,13060:8605504,37348965 -) -g1,13060:12866393,37348965 -k1,13060:32583029,37348965:16072310 -g1,13060:32583029,37348965 -) -(1,13065:6630773,38607261:25952256,513147,134348 -k1,13064:7472801,38607261:214193 -k1,13064:10353000,38607261:214194 -k1,13064:11218621,38607261:214193 -k1,13064:14009034,38607261:214193 -k1,13064:16233873,38607261:214194 -k1,13064:18015687,38607261:214193 -k1,13064:18585740,38607261:214193 -k1,13064:22201908,38607261:214194 -k1,13064:26371199,38607261:214193 -k1,13064:27453744,38607261:214193 -k1,13064:28772220,38607261:214194 -k1,13064:30572384,38607261:214193 -k1,13064:32583029,38607261:0 -) -(1,13065:6630773,39472341:25952256,513147,134348 -k1,13064:8347925,39472341:149531 -k1,13064:9268160,39472341:149532 -k1,13064:11908714,39472341:149531 -k1,13064:12992788,39472341:149531 -k1,13064:13825205,39472341:149532 -k1,13064:17061482,39472341:149531 -k1,13064:17870305,39472341:149531 -k1,13064:20204152,39472341:149532 -k1,13064:21307232,39472341:149531 -k1,13064:22556457,39472341:149531 -k1,13064:23909230,39472341:149532 -k1,13064:27133055,39472341:149531 -k1,13064:32583029,39472341:0 -) -(1,13065:6630773,40337421:25952256,505283,134348 -k1,13064:9907931,40337421:181237 -k1,13064:11285854,40337421:181236 -k1,13064:13383364,40337421:181237 -k1,13064:14668883,40337421:181237 -k1,13064:15597885,40337421:181236 -k1,13064:17356574,40337421:181237 -k1,13064:19393790,40337421:181236 -k1,13064:20968978,40337421:181237 -k1,13064:25087618,40337421:181237 -k1,13064:25951739,40337421:181236 -k1,13064:28593198,40337421:181237 -k1,13064:32583029,40337421:0 -) -(1,13065:6630773,41202501:25952256,513147,134348 -k1,13064:7526432,41202501:267824 -k1,13064:8813340,41202501:267823 -k1,13064:11322495,41202501:267824 -k1,13064:13131070,41202501:267824 -k1,13064:14165010,41202501:267824 -k1,13064:16349106,41202501:267823 -k1,13064:17608490,41202501:267824 -k1,13064:19643820,41202501:267824 -k1,13064:21479265,41202501:267824 -k1,13064:22766173,41202501:267823 -k1,13064:24916846,41202501:267824 -k1,13064:26119213,41202501:267824 -k1,13064:27046329,41202501:267824 -k1,13064:29498467,41202501:267823 -k1,13064:32124932,41202501:267824 -k1,13064:32583029,41202501:0 -) -(1,13065:6630773,42067581:25952256,513147,134348 -k1,13064:9478353,42067581:217620 -k1,13064:10643625,42067581:217621 -k1,13064:11217105,42067581:217620 -k1,13064:13129487,42067581:217621 -k1,13064:15027450,42067581:217620 -k1,13064:15896498,42067581:217620 -k1,13064:16861885,42067581:217621 -k1,13064:19080319,42067581:217620 -k1,13064:20948136,42067581:217620 -k1,13064:22608204,42067581:217621 -k1,13064:24489783,42067581:217620 -k1,13064:25335239,42067581:217621 -k1,13064:26571944,42067581:217620 -k1,13064:29055144,42067581:217620 -k1,13064:30639846,42067581:217621 -k1,13064:31516758,42067581:217620 -k1,13064:32583029,42067581:0 -) -(1,13065:6630773,42932661:25952256,513147,134348 -k1,13064:8611664,42932661:245498 -k1,13064:12968235,42932661:245498 -k1,13064:16875228,42932661:245497 -k1,13064:19036999,42932661:245498 -k1,13064:20274057,42932661:245498 -k1,13064:22287061,42932661:245498 -k1,13064:24100180,42932661:245498 -k1,13064:25364762,42932661:245497 -k1,13064:27620905,42932661:245498 -k1,13064:31084221,42932661:245498 -k1,13064:32583029,42932661:0 -) -(1,13065:6630773,43797741:25952256,505283,134348 -g1,13064:9827619,43797741 -g1,13064:11045933,43797741 -g1,13064:13255807,43797741 -g1,13064:15690469,43797741 -g1,13064:16505736,43797741 -g1,13064:18738547,43797741 -k1,13065:32583029,43797741:11875781 -g1,13065:32583029,43797741 -) -v1,13067:6630773,44482596:0,393216,0 -(1,13087:6630773,45510161:25952256,1420781,196608 -g1,13087:6630773,45510161 -g1,13087:6630773,45510161 -g1,13087:6434165,45510161 -(1,13087:6434165,45510161:0,1420781,196608 -r1,13087:32779637,45510161:26345472,1617389,196608 -k1,13087:6434165,45510161:-26345472 -) -(1,13087:6434165,45510161:26345472,1420781,196608 -[1,13087:6630773,45510161:25952256,1224173,0 -(1,13069:6630773,44710427:25952256,424439,106246 -(1,13068:6630773,44710427:0,0,0 -g1,13068:6630773,44710427 -g1,13068:6630773,44710427 -g1,13068:6303093,44710427 -(1,13068:6303093,44710427:0,0,0 -) -g1,13068:6630773,44710427 -) -k1,13069:6630773,44710427:0 -g1,13069:9618359,44710427 -g1,13069:10282267,44710427 -h1,13069:12937898,44710427:0,0,0 -k1,13069:32583030,44710427:19645132 -g1,13069:32583030,44710427 -) -(1,13074:6630773,45430339:25952256,424439,79822 -(1,13071:6630773,45430339:0,0,0 -g1,13071:6630773,45430339 -g1,13071:6630773,45430339 -g1,13071:6303093,45430339 -(1,13071:6303093,45430339:0,0,0 -) -g1,13071:6630773,45430339 -) -k1,13074:7550448,45430339:255767 -k1,13074:7806215,45430339:255767 -k1,13074:9057844,45430339:255767 -k1,13074:10309473,45430339:255767 -k1,13074:11561102,45430339:255767 -k1,13074:12812731,45430339:255767 -k1,13074:14064360,45430339:255767 -k1,13074:15315989,45430339:255767 -k1,13074:16567618,45430339:255767 -k1,13074:17819247,45430339:255767 -k1,13074:19070877,45430339:255768 -k1,13074:20322506,45430339:255767 -k1,13074:21574135,45430339:255767 -k1,13074:22825764,45430339:255767 -k1,13074:24077393,45430339:255767 -k1,13074:25329022,45430339:255767 -k1,13074:26580651,45430339:255767 -k1,13074:27832280,45430339:255767 -k1,13074:29083909,45430339:255767 -k1,13074:30335538,45430339:255767 -k1,13074:31587167,45430339:255767 -h1,13074:32583029,45430339:0,0,0 -k1,13074:32583029,45430339:0 -k1,13074:32583029,45430339:0 -) -] -) -g1,13087:32583029,45510161 -g1,13087:6630773,45510161 -g1,13087:6630773,45510161 -g1,13087:32583029,45510161 -g1,13087:32583029,45510161 -) -] -(1,13087:32583029,45706769:0,0,0 -g1,13087:32583029,45706769 -) -) -] -(1,13087:6630773,47279633:25952256,0,0 -h1,13087:6630773,47279633:25952256,0,0 -) -] -(1,13087:4262630,4025873:0,0,0 -[1,13087:-473656,4025873:0,0,0 -(1,13087:-473656,-710413:0,0,0 -(1,13087:-473656,-710413:0,0,0 -g1,13087:-473656,-710413 -) -g1,13087:-473656,-710413 -) -] -) -] -!19840 +) +) +) +] +[1,13037:3078558,4812305:0,0,0 +(1,13037:3078558,49800853:0,16384,2228224 +g1,13037:29030814,49800853 +g1,13037:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13037:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13037:37855564,49800853:1179648,16384,0 +) +) +k1,13037:3078556,49800853:-34777008 +) +] +g1,13037:6630773,4812305 +g1,13037:6630773,4812305 +g1,13037:9773224,4812305 +g1,13037:13373116,4812305 +g1,13037:17579216,4812305 +k1,13037:31387652,4812305:13808436 +) +) +] +[1,13037:6630773,45706769:25952256,40108032,0 +(1,13037:6630773,45706769:25952256,40108032,0 +(1,13037:6630773,45706769:0,0,0 +g1,13037:6630773,45706769 +) +[1,13037:6630773,45706769:25952256,40108032,0 +(1,12979:6630773,6254097:25952256,32768,229376 +(1,12979:6630773,6254097:0,32768,229376 +(1,12979:6630773,6254097:5505024,32768,229376 +r1,13037:12135797,6254097:5505024,262144,229376 +) +k1,12979:6630773,6254097:-5505024 +) +(1,12979:6630773,6254097:25952256,32768,0 +r1,13037:32583029,6254097:25952256,32768,0 +) +) +(1,12979:6630773,7885949:25952256,606339,151780 +(1,12979:6630773,7885949:1974731,575668,0 +g1,12979:6630773,7885949 +g1,12979:8605504,7885949 +) +g1,12979:12680009,7885949 +g1,12979:17287715,7885949 +k1,12979:32583029,7885949:10087561 +g1,12979:32583029,7885949 +) +(1,12983:6630773,9144245:25952256,513147,126483 +k1,12982:7322883,9144245:222217 +k1,12982:8076598,9144245:222218 +k1,12982:11076231,9144245:222217 +k1,12982:11949877,9144245:222218 +k1,12982:14887906,9144245:222217 +k1,12982:16129208,9144245:222217 +k1,12982:18031769,9144245:222218 +k1,12982:18913278,9144245:222217 +k1,12982:20154580,9144245:222217 +k1,12982:23987832,9144245:222218 +k1,12982:25157700,9144245:222217 +k1,12982:25735778,9144245:222218 +k1,12982:28801602,9144245:222217 +k1,12982:32583029,9144245:0 +) +(1,12983:6630773,10009325:25952256,513147,134348 +k1,12982:7935118,10009325:158120 +k1,12982:11063986,10009325:158121 +$1,12982:11063986,10009325 +$1,12982:11384457,10009325 +k1,12982:11542577,10009325:158120 +k1,12982:12383582,10009325:158120 +k1,12982:14897722,10009325:158121 +k1,12982:19167571,10009325:158120 +k1,12982:20893313,10009325:158121 +k1,12982:25353872,10009325:158120 +k1,12982:27075026,10009325:158120 +k1,12982:30274673,10009325:158121 +k1,12982:30788653,10009325:158120 +k1,12982:32583029,10009325:0 +) +(1,12983:6630773,10874405:25952256,513147,126483 +k1,12982:7836417,10874405:186559 +k1,12982:11208026,10874405:186559 +k1,12982:12053877,10874405:186559 +k1,12982:13259521,10874405:186559 +k1,12982:17401178,10874405:186559 +k1,12982:18065494,10874405:186559 +k1,12982:19120405,10874405:186559 +k1,12982:22094866,10874405:186559 +k1,12982:23300510,10874405:186559 +k1,12982:25225084,10874405:186559 +k1,12982:26603088,10874405:186559 +k1,12982:29633254,10874405:186559 +k1,12982:32583029,10874405:0 +) +(1,12983:6630773,11739485:25952256,513147,134348 +k1,12982:7439050,11739485:148985 +k1,12982:7943895,11739485:148985 +k1,12982:9663779,11739485:148986 +k1,12982:12265777,11739485:148985 +k1,12982:14111489,11739485:148985 +k1,12982:15432913,11739485:148985 +k1,12982:19192933,11739485:148986 +k1,12982:21302755,11739485:148985 +k1,12982:21807600,11739485:148985 +k1,12982:24353892,11739485:148985 +k1,12982:26858897,11739485:148986 +k1,12982:30789309,11739485:148985 +k1,12982:32583029,11739485:0 +) +(1,12983:6630773,12604565:25952256,513147,134348 +k1,12982:7345195,12604565:236665 +k1,12982:8450212,12604565:236665 +k1,12982:9884221,12604565:236666 +k1,12982:11139971,12604565:236665 +k1,12982:14092448,12604565:236665 +k1,12982:14988405,12604565:236665 +k1,12982:16244155,12604565:236665 +k1,12982:18936455,12604565:236666 +k1,12982:19832412,12604565:236665 +k1,12982:22925791,12604565:236665 +$1,12982:22925791,12604565 +k1,12982:23627815,12604565:250481 +k1,12982:24446492,12604565:250480 +k1,12982:25134621,12604565:173016 +k1,12982:25875834,12604565:173016 +$1,12982:26274293,12604565 +k1,12982:26684629,12604565:236666 +k1,12982:27940379,12604565:236665 +k1,12982:29831828,12604565:236665 +k1,12983:32583029,12604565:0 +) +(1,12983:6630773,13469645:25952256,513147,126483 +k1,12982:7830586,13469645:233812 +k1,12982:10025235,13469645:233812 +k1,12982:10614908,13469645:233813 +k1,12982:13246027,13469645:233812 +$1,12982:13246027,13469645 +$1,12982:13566498,13469645 +k1,12982:17794729,13469645:233812 +k1,12982:19943503,13469645:233812 +k1,12982:21771807,13469645:233813 +k1,12982:22463716,13469645:233812 +k1,12982:23229025,13469645:233812 +k1,12982:26092797,13469645:233812 +k1,12982:26978038,13469645:233813 +k1,12982:28304335,13469645:233812 +k1,12982:29557232,13469645:233812 +k1,12982:32583029,13469645:0 +) +(1,12983:6630773,14334725:25952256,513147,134348 +g1,12982:9920025,14334725 +g1,12982:10735292,14334725 +g1,12982:13213208,14334725 +h1,12982:14183796,14334725:0,0,0 +g1,12982:14383025,14334725 +g1,12982:15391624,14334725 +g1,12982:17089006,14334725 +h1,12982:18059594,14334725:0,0,0 +g1,12982:18432493,14334725 +g1,12982:19247760,14334725 +g1,12982:22531113,14334725 +k1,12983:32583029,14334725:7039882 +g1,12983:32583029,14334725 +) +v1,12985:6630773,15199805:0,393216,0 +(1,12986:6630773,18237691:25952256,3431102,0 +g1,12986:6630773,18237691 +g1,12986:6237557,18237691 +r1,13037:6368629,18237691:131072,3431102,0 +g1,12986:6567858,18237691 +g1,12986:6764466,18237691 +[1,12986:6764466,18237691:25818563,3431102,0 +(1,12986:6764466,15508103:25818563,701514,196608 +(1,12985:6764466,15508103:0,701514,196608 +r1,13037:7761522,15508103:997056,898122,196608 +k1,12985:6764466,15508103:-997056 +) +(1,12985:6764466,15508103:997056,701514,196608 +) +k1,12985:8038517,15508103:276995 +k1,12985:8366197,15508103:327680 +k1,12985:11178126,15508103:276996 +k1,12985:14578566,15508103:276995 +k1,12985:17615937,15508103:276995 +k1,12985:19474317,15508103:276996 +k1,12985:20698963,15508103:276995 +k1,12985:22910581,15508103:276995 +k1,12985:24379021,15508103:276995 +k1,12985:27669362,15508103:276996 +k1,12985:30381675,15508103:276995 +k1,12986:32583029,15508103:0 +) +(1,12986:6764466,16373183:25818563,513147,126483 +k1,12985:8431047,16373183:173015 +k1,12985:9290224,16373183:173015 +k1,12985:10482324,16373183:173015 +k1,12985:11841541,16373183:173015 +k1,12985:12673848,16373183:173015 +k1,12985:14019302,16373183:173015 +k1,12985:14875202,16373183:173015 +k1,12985:16698414,16373183:173015 +k1,12985:20064998,16373183:173015 +k1,12985:22594032,16373183:173015 +k1,12985:27052446,16373183:173015 +k1,12985:28127892,16373183:173015 +k1,12985:30962324,16373183:173015 +k1,12985:31794631,16373183:173015 +k1,12985:32583029,16373183:0 +) +(1,12986:6764466,17238263:25818563,513147,7863 +k1,12985:8065002,17238263:208051 +k1,12985:10041871,17238263:208052 +k1,12985:10997688,17238263:208051 +k1,12985:11857168,17238263:208052 +k1,12985:14781031,17238263:208051 +k1,12985:16727098,17238263:208052 +k1,12985:18126594,17238263:208051 +k1,12985:21178253,17238263:208052 +k1,12985:24666381,17238263:208051 +k1,12985:25822084,17238263:208052 +k1,12985:27888736,17238263:208051 +k1,12985:29288233,17238263:208052 +k1,12985:31966991,17238263:208051 +k1,12985:32583029,17238263:0 +) +(1,12986:6764466,18103343:25818563,513147,134348 +g1,12985:7319555,18103343 +g1,12985:9842691,18103343 +g1,12985:11960814,18103343 +g1,12985:13179128,18103343 +g1,12985:15571192,18103343 +g1,12985:16977594,18103343 +g1,12985:18243094,18103343 +g1,12985:21283309,18103343 +g1,12985:22095300,18103343 +g1,12985:23313614,18103343 +g1,12985:24938251,18103343 +g1,12985:25796772,18103343 +k1,12986:32583029,18103343:2992378 +g1,12986:32583029,18103343 +) +] +g1,12986:32583029,18237691 +) +h1,12986:6630773,18237691:0,0,0 +(1,12989:6630773,19102771:25952256,513147,126483 +h1,12988:6630773,19102771:983040,0,0 +k1,12988:8358100,19102771:274394 +k1,12988:9163991,19102771:274394 +k1,12988:10724201,19102771:274394 +k1,12988:13628556,19102771:274395 +k1,12988:14554378,19102771:274394 +k1,12988:17498053,19102771:274394 +k1,12988:18791532,19102771:274394 +k1,12988:21952132,19102771:274394 +k1,12988:24095613,19102771:274394 +k1,12988:25029300,19102771:274395 +k1,12988:26322779,19102771:274394 +k1,12988:30552271,19102771:274394 +k1,12988:31509550,19102771:274394 +k1,12989:32583029,19102771:0 +) +(1,12989:6630773,19967851:25952256,513147,134348 +k1,12988:8849385,19967851:212555 +k1,12988:13017038,19967851:212555 +k1,12988:14177244,19967851:212555 +k1,12988:14745659,19967851:212555 +k1,12988:16347577,19967851:212555 +k1,12988:17494676,19967851:212556 +k1,12988:20167453,19967851:212555 +k1,12988:22572187,19967851:212555 +k1,12988:23594112,19967851:212555 +k1,12988:24162527,19967851:212555 +k1,12988:27218689,19967851:212555 +k1,12988:31386342,19967851:212555 +k1,12988:32583029,19967851:0 +) +(1,12989:6630773,20832931:25952256,513147,126483 +k1,12988:8546391,20832931:203162 +k1,12988:11722920,20832931:203161 +k1,12988:15707509,20832931:203162 +k1,12988:17014952,20832931:203161 +k1,12988:18671703,20832931:203162 +k1,12988:19622630,20832931:203161 +k1,12988:21339018,20832931:203162 +k1,12988:22193607,20832931:203161 +k1,12988:25184671,20832931:203162 +k1,12988:29565097,20832931:203161 +k1,12988:32583029,20832931:0 +) +(1,12989:6630773,21698011:25952256,513147,7863 +k1,12988:8047900,21698011:225682 +k1,12988:10767882,21698011:225682 +k1,12988:12909838,21698011:225683 +k1,12988:13821682,21698011:225682 +k1,12988:15614985,21698011:225682 +k1,12988:18684274,21698011:225682 +k1,12988:23195355,21698011:225682 +k1,12988:24801881,21698011:225682 +k1,12988:26313380,21698011:225683 +k1,12988:28551017,21698011:225682 +k1,12988:31860823,21698011:225682 +k1,12989:32583029,21698011:0 +) +(1,12989:6630773,22563091:25952256,513147,134348 +g1,12988:9347240,22563091 +g1,12988:11281862,22563091 +g1,12988:14265716,22563091 +g1,12988:15958511,22563091 +g1,12988:16843902,22563091 +g1,12988:18062216,22563091 +g1,12988:21359987,22563091 +g1,12988:22242101,22563091 +g1,12988:24133470,22563091 +g1,12988:26893846,22563091 +k1,12989:32583029,22563091:3318746 +g1,12989:32583029,22563091 +) +(1,12991:6630773,23428171:25952256,513147,134348 +h1,12990:6630773,23428171:983040,0,0 +k1,12990:10665987,23428171:262306 +(1,12990:10665987,23428171:0,452978,115847 +r1,13037:13837947,23428171:3171960,568825,115847 +k1,12990:10665987,23428171:-3171960 +) +(1,12990:10665987,23428171:3171960,452978,115847 +k1,12990:10665987,23428171:3277 +h1,12990:13834670,23428171:0,411205,112570 +) +k1,12990:14100252,23428171:262305 +k1,12990:17480761,23428171:262306 +k1,12990:19738637,23428171:262305 +k1,12990:22333369,23428171:262306 +k1,12990:25815459,23428171:262306 +k1,12990:27813157,23428171:262305 +k1,12990:30837806,23428171:262306 +k1,12991:32583029,23428171:0 +) +(1,12991:6630773,24293251:25952256,505283,126483 +k1,12990:8217808,24293251:267795 +k1,12990:8973123,24293251:267727 +k1,12990:10982210,24293251:267795 +k1,12990:11781502,24293251:267795 +k1,12990:13562524,24293251:267796 +k1,12990:14481747,24293251:267795 +k1,12990:17418823,24293251:267795 +k1,12990:18705704,24293251:267796 +k1,12990:21016256,24293251:267795 +k1,12990:22475496,24293251:267795 +k1,12990:23762376,24293251:267795 +k1,12990:27436733,24293251:267796 +k1,12990:31278862,24293251:267795 +k1,12990:32583029,24293251:0 +) +(1,12991:6630773,25158331:25952256,513147,126483 +k1,12990:9165939,25158331:234197 +k1,12990:10603378,25158331:234198 +k1,12990:12578867,25158331:234197 +k1,12990:13518232,25158331:234198 +k1,12990:14949116,25158331:234197 +k1,12990:16924606,25158331:234198 +k1,12990:17690300,25158331:234197 +k1,12990:18280357,25158331:234197 +k1,12990:21561324,25158331:234198 +k1,12990:23080027,25158331:234197 +k1,12990:25454631,25158331:234198 +k1,12990:26340256,25158331:234197 +k1,12990:27593539,25158331:234198 +k1,12990:30713942,25158331:234197 +k1,12990:32583029,25158331:0 +) +(1,12991:6630773,26023411:25952256,513147,134348 +k1,12990:7497512,26023411:207447 +k1,12990:8724043,26023411:207446 +k1,12990:12712917,26023411:207447 +k1,12990:13579655,26023411:207446 +k1,12990:18032524,26023411:207447 +k1,12990:19436658,26023411:207447 +k1,12990:21603630,26023411:207446 +k1,12990:24589804,26023411:207447 +k1,12990:25328748,26023411:207447 +k1,12990:25892054,26023411:207446 +k1,12990:28785822,26023411:207447 +k1,12990:29986794,26023411:207446 +k1,12990:31478747,26023411:207447 +k1,12990:32583029,26023411:0 +) +(1,12991:6630773,26888491:25952256,505283,126483 +g1,12990:7577768,26888491 +g1,12990:9290223,26888491 +g1,12990:10140880,26888491 +g1,12990:11617406,26888491 +g1,12990:12835720,26888491 +g1,12990:16171502,26888491 +k1,12991:32583029,26888491:14617807 +g1,12991:32583029,26888491 +) +(1,12993:6630773,27753571:25952256,513147,134348 +h1,12992:6630773,27753571:983040,0,0 +k1,12992:9106365,27753571:295865 +k1,12992:10898418,27753571:295866 +k1,12992:13062714,27753571:295865 +k1,12992:16404692,27753571:295865 +k1,12992:17719643,27753571:295866 +k1,12992:20988876,27753571:295865 +k1,12992:25066169,27753571:295866 +k1,12992:26309685,27753571:295865 +k1,12992:27624635,27753571:295865 +k1,12992:30245718,27753571:295866 +k1,12992:31966991,27753571:295865 +k1,12992:32583029,27753571:0 +) +(1,12993:6630773,28618651:25952256,513147,134348 +k1,12992:9488917,28618651:272749 +k1,12992:12396869,28618651:272749 +k1,12992:15738668,28618651:272748 +k1,12992:16670709,28618651:272749 +k1,12992:17962543,28618651:272749 +k1,12992:19370376,28618651:272749 +k1,12992:22115798,28618651:272749 +k1,12992:24437202,28618651:272749 +k1,12992:25322712,28618651:272748 +k1,12992:29630513,28618651:272749 +k1,12992:30259122,28618651:272749 +k1,12992:32583029,28618651:0 +) +(1,12993:6630773,29483731:25952256,513147,7863 +g1,12992:8397623,29483731 +k1,12993:32583030,29483731:23718136 +g1,12993:32583030,29483731 +) +v1,12995:6630773,30168586:0,393216,0 +(1,12999:6630773,30515875:25952256,740505,196608 +g1,12999:6630773,30515875 +g1,12999:6630773,30515875 +g1,12999:6434165,30515875 +(1,12999:6434165,30515875:0,740505,196608 +r1,13037:32779637,30515875:26345472,937113,196608 +k1,12999:6434165,30515875:-26345472 +) +(1,12999:6434165,30515875:26345472,740505,196608 +[1,12999:6630773,30515875:25952256,543897,0 +(1,12997:6630773,30403023:25952256,431045,112852 +(1,12996:6630773,30403023:0,0,0 +g1,12996:6630773,30403023 +g1,12996:6630773,30403023 +g1,12996:6303093,30403023 +(1,12996:6303093,30403023:0,0,0 +) +g1,12996:6630773,30403023 +) +g1,12997:7294681,30403023 +g1,12997:8290543,30403023 +g1,12997:16921346,30403023 +g1,12997:17917208,30403023 +g1,12997:18581116,30403023 +h1,12997:20240886,30403023:0,0,0 +k1,12997:32583029,30403023:12342143 +g1,12997:32583029,30403023 +) +] +) +g1,12999:32583029,30515875 +g1,12999:6630773,30515875 +g1,12999:6630773,30515875 +g1,12999:32583029,30515875 +g1,12999:32583029,30515875 +) +h1,12999:6630773,30712483:0,0,0 +v1,13003:6630773,31577563:0,393216,0 +(1,13037:6630773,45405851:25952256,14221504,0 +g1,13037:6630773,45405851 +g1,13037:6237557,45405851 +r1,13037:6368629,45405851:131072,14221504,0 +g1,13037:6567858,45405851 +g1,13037:6764466,45405851 +[1,13037:6764466,45405851:25818563,14221504,0 +(1,13004:6764466,31885861:25818563,701514,196608 +(1,13003:6764466,31885861:0,701514,196608 +r1,13037:7761522,31885861:997056,898122,196608 +k1,13003:6764466,31885861:-997056 +) +(1,13003:6764466,31885861:997056,701514,196608 +) +k1,13003:7974729,31885861:213207 +k1,13003:8302409,31885861:327680 +k1,13003:10307370,31885861:213207 +(1,13003:10307370,31885861:0,452978,115847 +r1,13037:12072483,31885861:1765113,568825,115847 +k1,13003:10307370,31885861:-1765113 +) +(1,13003:10307370,31885861:1765113,452978,115847 +k1,13003:10307370,31885861:3277 +h1,13003:12069206,31885861:0,411205,112570 +) +k1,13003:12285690,31885861:213207 +k1,13003:13367249,31885861:213207 +k1,13003:14684738,31885861:213207 +k1,13003:17266416,31885861:213207 +k1,13003:18498708,31885861:213207 +k1,13003:21643340,31885861:213207 +k1,13003:22515839,31885861:213207 +k1,13003:23748131,31885861:213207 +k1,13003:25920864,31885861:213207 +k1,13003:28912798,31885861:213207 +k1,13003:29887533,31885861:213207 +k1,13004:32583029,31885861:0 +) +(1,13004:6764466,32750941:25818563,452978,115847 +(1,13003:6764466,32750941:0,452978,115847 +r1,13037:9936426,32750941:3171960,568825,115847 +k1,13003:6764466,32750941:-3171960 +) +(1,13003:6764466,32750941:3171960,452978,115847 +k1,13003:6764466,32750941:3277 +h1,13003:9933149,32750941:0,411205,112570 +) +k1,13004:32583030,32750941:22594176 +g1,13004:32583030,32750941 +) +v1,13006:6764466,33435796:0,393216,0 +(1,13022:6764466,40749495:25818563,7706915,196608 +g1,13022:6764466,40749495 +g1,13022:6764466,40749495 +g1,13022:6567858,40749495 +(1,13022:6567858,40749495:0,7706915,196608 +r1,13037:32779637,40749495:26211779,7903523,196608 +k1,13022:6567857,40749495:-26211780 +) +(1,13022:6567858,40749495:26211779,7706915,196608 +[1,13022:6764466,40749495:25818563,7510307,0 +(1,13008:6764466,33663627:25818563,424439,79822 +(1,13007:6764466,33663627:0,0,0 +g1,13007:6764466,33663627 +g1,13007:6764466,33663627 +g1,13007:6436786,33663627 +(1,13007:6436786,33663627:0,0,0 +) +g1,13007:6764466,33663627 +) +k1,13008:6764466,33663627:0 +h1,13008:8756190,33663627:0,0,0 +k1,13008:32583030,33663627:23826840 +g1,13008:32583030,33663627 +) +(1,13021:6764466,34479554:25818563,431045,9908 +(1,13010:6764466,34479554:0,0,0 +g1,13010:6764466,34479554 +g1,13010:6764466,34479554 +g1,13010:6436786,34479554 +(1,13010:6436786,34479554:0,0,0 +) +g1,13010:6764466,34479554 +) +g1,13021:7760328,34479554 +g1,13021:9420098,34479554 +g1,13021:10415960,34479554 +h1,13021:10747914,34479554:0,0,0 +k1,13021:32583030,34479554:21835116 +g1,13021:32583030,34479554 +) +(1,13021:6764466,35164409:25818563,431045,79822 +h1,13021:6764466,35164409:0,0,0 +g1,13021:7760328,35164409 +g1,13021:8092282,35164409 +g1,13021:8756190,35164409 +g1,13021:9420098,35164409 +g1,13021:9752052,35164409 +g1,13021:10084006,35164409 +g1,13021:10415960,35164409 +g1,13021:10747914,35164409 +g1,13021:11079868,35164409 +g1,13021:11411822,35164409 +g1,13021:11743776,35164409 +g1,13021:12075730,35164409 +g1,13021:12739638,35164409 +g1,13021:14067454,35164409 +g1,13021:16723086,35164409 +g1,13021:18382856,35164409 +g1,13021:20042626,35164409 +g1,13021:21702396,35164409 +g1,13021:23362166,35164409 +g1,13021:24358028,35164409 +h1,13021:25353890,35164409:0,0,0 +k1,13021:32583029,35164409:7229139 +g1,13021:32583029,35164409 +) +(1,13021:6764466,35849264:25818563,431045,106246 +h1,13021:6764466,35849264:0,0,0 +k1,13021:7756636,35849264:328262 +k1,13021:8084897,35849264:328261 +k1,13021:8745113,35849264:328262 +k1,13021:9405328,35849264:328261 +k1,13021:9733590,35849264:328262 +k1,13021:10061851,35849264:328261 +k1,13021:10390113,35849264:328262 +k1,13021:10718374,35849264:328261 +k1,13021:11046636,35849264:328262 +k1,13021:11374897,35849264:328261 +k1,13021:11703159,35849264:328262 +k1,13021:12031421,35849264:328262 +k1,13021:12691636,35849264:328261 +k1,13021:14015760,35849264:328262 +k1,13021:16667699,35849264:328261 +k1,13021:19651593,35849264:328262 +k1,13021:22635486,35849264:328261 +k1,13021:25619380,35849264:328262 +k1,13021:28603273,35849264:328261 +k1,13021:31587167,35849264:328262 +h1,13021:32583029,35849264:0,0,0 +k1,13021:32583029,35849264:0 +k1,13021:32583029,35849264:0 +) +(1,13021:6764466,36534119:25818563,431045,33029 +h1,13021:6764466,36534119:0,0,0 +g1,13021:7760328,36534119 +g1,13021:8092282,36534119 +g1,13021:8756190,36534119 +g1,13021:9752052,36534119 +g1,13021:10084006,36534119 +g1,13021:10415960,36534119 +g1,13021:10747914,36534119 +g1,13021:11079868,36534119 +g1,13021:11411822,36534119 +g1,13021:11743776,36534119 +g1,13021:12075730,36534119 +g1,13021:12739638,36534119 +g1,13021:14067454,36534119 +h1,13021:15063316,36534119:0,0,0 +k1,13021:32583028,36534119:17519712 +g1,13021:32583028,36534119 +) +(1,13021:6764466,37218974:25818563,431045,33029 +h1,13021:6764466,37218974:0,0,0 +g1,13021:7760328,37218974 +g1,13021:8092282,37218974 +g1,13021:8756190,37218974 +g1,13021:9420098,37218974 +g1,13021:9752052,37218974 +g1,13021:10084006,37218974 +g1,13021:10415960,37218974 +g1,13021:10747914,37218974 +g1,13021:11079868,37218974 +g1,13021:11411822,37218974 +g1,13021:11743776,37218974 +g1,13021:12075730,37218974 +g1,13021:12739638,37218974 +g1,13021:14067454,37218974 +h1,13021:15063316,37218974:0,0,0 +k1,13021:32583028,37218974:17519712 +g1,13021:32583028,37218974 +) +(1,13021:6764466,37903829:25818563,431045,112852 +h1,13021:6764466,37903829:0,0,0 +g1,13021:7760328,37903829 +g1,13021:8092282,37903829 +g1,13021:8756190,37903829 +g1,13021:12739637,37903829 +g1,13021:14399407,37903829 +h1,13021:16059177,37903829:0,0,0 +k1,13021:32583029,37903829:16523852 +g1,13021:32583029,37903829 +) +(1,13021:6764466,38588684:25818563,431045,112852 +h1,13021:6764466,38588684:0,0,0 +g1,13021:7760328,38588684 +g1,13021:8092282,38588684 +g1,13021:8756190,38588684 +g1,13021:10415960,38588684 +g1,13021:10747914,38588684 +g1,13021:11079868,38588684 +g1,13021:11411822,38588684 +g1,13021:11743776,38588684 +g1,13021:12075730,38588684 +g1,13021:12739638,38588684 +g1,13021:15727223,38588684 +g1,13021:21702394,38588684 +g1,13021:22366302,38588684 +g1,13021:28341473,38588684 +g1,13021:29337335,38588684 +g1,13021:30001243,38588684 +h1,13021:31661013,38588684:0,0,0 +k1,13021:32583029,38588684:922016 +g1,13021:32583029,38588684 +) +(1,13021:6764466,39273539:25818563,431045,112852 +h1,13021:6764466,39273539:0,0,0 +g1,13021:7760328,39273539 +g1,13021:8092282,39273539 +g1,13021:8756190,39273539 +g1,13021:12075729,39273539 +g1,13021:12739637,39273539 +g1,13021:14067453,39273539 +h1,13021:20042624,39273539:0,0,0 +k1,13021:32583029,39273539:12540405 +g1,13021:32583029,39273539 +) +(1,13021:6764466,39958394:25818563,431045,112852 +h1,13021:6764466,39958394:0,0,0 +g1,13021:7760328,39958394 +g1,13021:8092282,39958394 +g1,13021:8756190,39958394 +g1,13021:11079868,39958394 +g1,13021:11411822,39958394 +g1,13021:11743776,39958394 +g1,13021:12075730,39958394 +g1,13021:12739638,39958394 +g1,13021:14399408,39958394 +h1,13021:16059178,39958394:0,0,0 +k1,13021:32583029,39958394:16523851 +g1,13021:32583029,39958394 +) +(1,13021:6764466,40643249:25818563,424439,106246 +h1,13021:6764466,40643249:0,0,0 +g1,13021:7760328,40643249 +g1,13021:8092282,40643249 +g1,13021:8756190,40643249 +g1,13021:11411822,40643249 +g1,13021:14731361,40643249 +g1,13021:16059177,40643249 +h1,13021:19046762,40643249:0,0,0 +k1,13021:32583029,40643249:13536267 +g1,13021:32583029,40643249 +) +] +) +g1,13022:32583029,40749495 +g1,13022:6764466,40749495 +g1,13022:6764466,40749495 +g1,13022:32583029,40749495 +g1,13022:32583029,40749495 +) +h1,13022:6764466,40946103:0,0,0 +(1,13026:6764466,41811183:25818563,505283,134348 +h1,13025:6764466,41811183:983040,0,0 +k1,13025:9102527,41811183:158334 +k1,13025:11220388,41811183:158335 +k1,13025:13190137,41811183:158334 +k1,13025:14034633,41811183:158334 +(1,13025:14034633,41811183:0,452978,115847 +r1,13037:14392899,41811183:358266,568825,115847 +k1,13025:14034633,41811183:-358266 +) +(1,13025:14034633,41811183:358266,452978,115847 +k1,13025:14034633,41811183:3277 +h1,13025:14389622,41811183:0,411205,112570 +) +k1,13025:14551233,41811183:158334 +k1,13025:15241065,41811183:158335 +k1,13025:15755259,41811183:158334 +(1,13025:15755259,41811183:0,452978,115847 +r1,13037:17168660,41811183:1413401,568825,115847 +k1,13025:15755259,41811183:-1413401 +) +(1,13025:15755259,41811183:1413401,452978,115847 +k1,13025:15755259,41811183:3277 +h1,13025:17165383,41811183:0,411205,112570 +) +k1,13025:17326994,41811183:158334 +k1,13025:18879279,41811183:158334 +k1,13025:20834611,41811183:158335 +k1,13025:24120323,41811183:158334 +k1,13025:25475344,41811183:158334 +k1,13025:26806117,41811183:158334 +k1,13025:29584581,41811183:158335 +k1,13025:32224763,41811183:158334 +(1,13025:32224763,41811183:0,414482,115847 +r1,13037:32583029,41811183:358266,530329,115847 +k1,13025:32224763,41811183:-358266 +) +(1,13025:32224763,41811183:358266,414482,115847 +k1,13025:32224763,41811183:3277 +h1,13025:32579752,41811183:0,411205,112570 +) +k1,13025:32583029,41811183:0 +) +(1,13026:6764466,42676263:25818563,505283,126483 +k1,13025:8120042,42676263:164131 +(1,13025:8120042,42676263:0,414482,115847 +r1,13037:8478308,42676263:358266,530329,115847 +k1,13025:8120042,42676263:-358266 +) +(1,13025:8120042,42676263:358266,414482,115847 +k1,13025:8120042,42676263:3277 +h1,13025:8475031,42676263:0,411205,112570 +) +k1,13025:8642439,42676263:164131 +k1,13025:11475851,42676263:164131 +k1,13025:12659067,42676263:164131 +k1,13025:15959751,42676263:164131 +k1,13025:19609742,42676263:164131 +k1,13025:23555300,42676263:164131 +k1,13025:24910876,42676263:164131 +k1,13025:27695136,42676263:164131 +k1,13025:28878352,42676263:164131 +k1,13025:30783775,42676263:164131 +k1,13025:31563944,42676263:164131 +k1,13025:32583029,42676263:0 +) +(1,13026:6764466,43541343:25818563,505283,134348 +k1,13025:8175103,43541343:133340 +k1,13025:10350544,43541343:133339 +k1,13025:11680571,43541343:133340 +k1,13025:14995028,43541343:133339 +k1,13025:18534929,43541343:133340 +k1,13025:21804822,43541343:133340 +k1,13025:23673554,43541343:133339 +k1,13025:26261217,43541343:133340 +(1,13025:26261217,43541343:0,452978,122846 +r1,13037:27674618,43541343:1413401,575824,122846 +k1,13025:26261217,43541343:-1413401 +) +(1,13025:26261217,43541343:1413401,452978,122846 +k1,13025:26261217,43541343:3277 +h1,13025:27671341,43541343:0,411205,112570 +) +k1,13025:27807958,43541343:133340 +k1,13025:28472794,43541343:133339 +k1,13025:29222172,43541343:133340 +(1,13025:29222172,43541343:0,452978,115847 +r1,13037:29932150,43541343:709978,568825,115847 +k1,13025:29222172,43541343:-709978 +) +(1,13025:29222172,43541343:709978,452978,115847 +k1,13025:29222172,43541343:3277 +h1,13025:29928873,43541343:0,411205,112570 +) +k1,13025:30239159,43541343:133339 +k1,13025:31563944,43541343:133340 +k1,13025:32583029,43541343:0 +) +(1,13026:6764466,44406423:25818563,513147,134348 +k1,13025:8963477,44406423:185745 +k1,13025:9808514,44406423:185745 +k1,13025:11972135,44406423:185744 +(1,13025:11972135,44406423:0,459977,122846 +r1,13037:17606078,44406423:5633943,582823,122846 +k1,13025:11972135,44406423:-5633943 +) +(1,13025:11972135,44406423:5633943,459977,122846 +k1,13025:11972135,44406423:3277 +h1,13025:17602801,44406423:0,411205,112570 +) +k1,13025:17965493,44406423:185745 +k1,13025:19170323,44406423:185745 +k1,13025:20745431,44406423:185745 +k1,13025:22618072,44406423:185744 +k1,13025:23335314,44406423:185745 +k1,13025:24137097,44406423:185745 +(1,13025:24137097,44406423:0,414482,115847 +r1,13037:24495363,44406423:358266,530329,115847 +k1,13025:24137097,44406423:-358266 +) +(1,13025:24137097,44406423:358266,414482,115847 +k1,13025:24137097,44406423:3277 +h1,13025:24492086,44406423:0,411205,112570 +) +k1,13025:24854778,44406423:185745 +k1,13025:27607568,44406423:185745 +(1,13025:27607568,44406423:0,452978,115847 +r1,13037:29020969,44406423:1413401,568825,115847 +k1,13025:27607568,44406423:-1413401 +) +(1,13025:27607568,44406423:1413401,452978,115847 +k1,13025:27607568,44406423:3277 +h1,13025:29017692,44406423:0,411205,112570 +) +k1,13025:29206713,44406423:185744 +k1,13025:29923955,44406423:185745 +k1,13025:31128785,44406423:185745 +k1,13026:32583029,44406423:0 +) +(1,13026:6764466,45271503:25818563,513147,134348 +k1,13025:8749373,45271503:173492 +k1,13025:10436090,45271503:173491 +k1,13025:11261010,45271503:173492 +k1,13025:12534196,45271503:173492 +k1,13025:13726772,45271503:173491 +k1,13025:16769430,45271503:173492 +k1,13025:17962006,45271503:173491 +k1,13025:21353316,45271503:173492 +k1,13025:22699247,45271503:173492 +k1,13025:25826446,45271503:173491 +k1,13025:27475153,45271503:173492 +k1,13025:32583029,45271503:0 +) +] +g1,13037:32583029,45405851 +) +] +(1,13037:32583029,45706769:0,0,0 +g1,13037:32583029,45706769 +) +) +] +(1,13037:6630773,47279633:25952256,0,0 +h1,13037:6630773,47279633:25952256,0,0 +) +] +(1,13037:4262630,4025873:0,0,0 +[1,13037:-473656,4025873:0,0,0 +(1,13037:-473656,-710413:0,0,0 +(1,13037:-473656,-710413:0,0,0 +g1,13037:-473656,-710413 +) +g1,13037:-473656,-710413 +) +] +) +] +!29708 }209 Input:2179:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2180:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2181:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 +{210 +[1,13085:4262630,47279633:28320399,43253760,0 +(1,13085:4262630,4025873:0,0,0 +[1,13085:-473656,4025873:0,0,0 +(1,13085:-473656,-710413:0,0,0 +(1,13085:-473656,-644877:0,0,0 +k1,13085:-473656,-644877:-65536 +) +(1,13085:-473656,4736287:0,0,0 +k1,13085:-473656,4736287:5209943 +) +g1,13085:-473656,-710413 +) +] +) +[1,13085:6630773,47279633:25952256,43253760,0 +[1,13085:6630773,4812305:25952256,786432,0 +(1,13085:6630773,4812305:25952256,513147,126483 +(1,13085:6630773,4812305:25952256,513147,126483 +g1,13085:3078558,4812305 +[1,13085:3078558,4812305:0,0,0 +(1,13085:3078558,2439708:0,1703936,0 +k1,13085:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13085:2537886,2439708:1179648,16384,0 +) +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13085:3078558,1915420:16384,1179648,0 +) +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 +) +] +) +) +) +] +[1,13085:3078558,4812305:0,0,0 +(1,13085:3078558,2439708:0,1703936,0 +g1,13085:29030814,2439708 +g1,13085:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13085:36151628,1915420:16384,1179648,0 +) +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 +) +] +) +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13085:37855564,2439708:1179648,16384,0 +) +) +k1,13085:3078556,2439708:-34777008 +) +] +[1,13085:3078558,4812305:0,0,0 +(1,13085:3078558,49800853:0,16384,2228224 +k1,13085:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13085:2537886,49800853:1179648,16384,0 +) +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13085:3078558,51504789:16384,1179648,0 +) +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,13085:3078558,4812305:0,0,0 +(1,13085:3078558,49800853:0,16384,2228224 +g1,13085:29030814,49800853 +g1,13085:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13085:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13085:37855564,49800853:1179648,16384,0 +) +) +k1,13085:3078556,49800853:-34777008 +) +] +g1,13085:6630773,4812305 +k1,13085:19575446,4812305:11749296 +g1,13085:21198117,4812305 +g1,13085:21985204,4812305 +g1,13085:24539797,4812305 +g1,13085:25949476,4812305 +g1,13085:28728857,4812305 +g1,13085:29852144,4812305 +) +) +] +[1,13085:6630773,45706769:25952256,40108032,0 +(1,13085:6630773,45706769:25952256,40108032,0 +(1,13085:6630773,45706769:0,0,0 +g1,13085:6630773,45706769 +) +[1,13085:6630773,45706769:25952256,40108032,0 +v1,13037:6630773,6254097:0,393216,0 +(1,13037:6630773,12703213:25952256,6842332,0 +g1,13037:6630773,12703213 +g1,13037:6237557,12703213 +r1,13085:6368629,12703213:131072,6842332,0 +g1,13037:6567858,12703213 +g1,13037:6764466,12703213 +[1,13037:6764466,12703213:25818563,6842332,0 +(1,13026:6764466,6366164:25818563,505283,134348 +k1,13025:9243601,6366164:237148 +k1,13025:10677436,6366164:237148 +k1,13025:13693312,6366164:237149 +k1,13025:15889986,6366164:237148 +k1,13025:18593909,6366164:237148 +k1,13025:19482485,6366164:237148 +k1,13025:21274802,6366164:237148 +(1,13025:21274802,6366164:0,452978,115847 +r1,13085:23743339,6366164:2468537,568825,115847 +k1,13025:21274802,6366164:-2468537 +) +(1,13025:21274802,6366164:2468537,452978,115847 +k1,13025:21274802,6366164:3277 +h1,13025:23740062,6366164:0,411205,112570 +) +k1,13025:24154157,6366164:237148 +k1,13025:25587993,6366164:237149 +k1,13025:27978654,6366164:237148 +k1,13025:30556748,6366164:237148 +k1,13025:31325393,6366164:237148 +k1,13026:32583029,6366164:0 +) +(1,13026:6764466,7231244:25818563,513147,134348 +k1,13025:8212200,7231244:223521 +k1,13025:9507891,7231244:223522 +k1,13025:12144448,7231244:223521 +k1,13025:13810416,7231244:223521 +k1,13025:14981589,7231244:223522 +k1,13025:16224195,7231244:223521 +k1,13025:18435423,7231244:223521 +k1,13025:20593568,7231244:223522 +k1,13025:23842886,7231244:223521 +k1,13025:25350913,7231244:223521 +k1,13025:26442787,7231244:223522 +k1,13025:27798770,7231244:223521 +k1,13025:29047274,7231244:223521 +k1,13025:30724385,7231244:223522 +k1,13025:31563944,7231244:223521 +k1,13025:32583029,7231244:0 +) +(1,13026:6764466,8096324:25818563,513147,134348 +k1,13025:9530372,8096324:174612 +k1,13025:10901672,8096324:174613 +k1,13025:12631453,8096324:174612 +k1,13025:14544081,8096324:174613 +k1,13025:15377985,8096324:174612 +k1,13025:16571683,8096324:174613 +k1,13025:18705821,8096324:174612 +k1,13025:19411930,8096324:174612 +k1,13025:20605628,8096324:174613 +k1,13025:22433713,8096324:174612 +k1,13025:23294488,8096324:174613 +k1,13025:24488185,8096324:174612 +k1,13025:26400813,8096324:174613 +k1,13025:27234717,8096324:174612 +k1,13025:28428415,8096324:174613 +k1,13025:31298523,8096324:174612 +k1,13025:32583029,8096324:0 +) +(1,13026:6764466,8961404:25818563,513147,134348 +k1,13025:9281672,8961404:167085 +k1,13025:10080524,8961404:167085 +(1,13025:10080524,8961404:0,452978,115847 +r1,13085:11493925,8961404:1413401,568825,115847 +k1,13025:10080524,8961404:-1413401 +) +(1,13025:10080524,8961404:1413401,452978,115847 +k1,13025:10080524,8961404:3277 +h1,13025:11490648,8961404:0,411205,112570 +) +k1,13025:11661010,8961404:167085 +k1,13025:14588472,8961404:167086 +k1,13025:15111417,8961404:167085 +k1,13025:16876270,8961404:167085 +k1,13025:17702647,8961404:167085 +k1,13025:19200113,8961404:167085 +k1,13025:20386283,8961404:167085 +k1,13025:22512894,8961404:167085 +k1,13025:23887153,8961404:167086 +k1,13025:26578029,8961404:167085 +k1,13025:28561772,8961404:167085 +k1,13025:31856235,8961404:167085 +k1,13026:32583029,8961404:0 +) +(1,13026:6764466,9826484:25818563,513147,134348 +k1,13025:9105234,9826484:182667 +k1,13025:13351787,9826484:182666 +k1,13025:14193746,9826484:182667 +k1,13025:16759302,9826484:182667 +k1,13025:20125708,9826484:182667 +k1,13025:21499819,9826484:182666 +k1,13025:24380603,9826484:182667 +k1,13025:26299974,9826484:182667 +k1,13025:26838501,9826484:182667 +k1,13025:28188363,9826484:182666 +k1,13025:29390115,9826484:182667 +k1,13025:32583029,9826484:0 +) +(1,13026:6764466,10691564:25818563,505283,126483 +g1,13025:9917403,10691564 +g1,13025:11220914,10691564 +g1,13025:12167909,10691564 +g1,13025:15339196,10691564 +g1,13025:16299953,10691564 +k1,13026:32583029,10691564:14492633 +g1,13026:32583029,10691564 +) +v1,13028:6764466,11376419:0,393216,0 +(1,13035:6764466,12506605:25818563,1523402,196608 +g1,13035:6764466,12506605 +g1,13035:6764466,12506605 +g1,13035:6567858,12506605 +(1,13035:6567858,12506605:0,1523402,196608 +r1,13085:32779637,12506605:26211779,1720010,196608 +k1,13035:6567857,12506605:-26211780 +) +(1,13035:6567858,12506605:26211779,1523402,196608 +[1,13035:6764466,12506605:25818563,1326794,0 +(1,13030:6764466,11610856:25818563,431045,33029 +(1,13029:6764466,11610856:0,0,0 +g1,13029:6764466,11610856 +g1,13029:6764466,11610856 +g1,13029:6436786,11610856 +(1,13029:6436786,11610856:0,0,0 +) +g1,13029:6764466,11610856 +) +h1,13030:7760328,11610856:0,0,0 +k1,13030:32583028,11610856:24822700 +g1,13030:32583028,11610856 +) +(1,13034:6764466,12426783:25818563,424439,79822 +(1,13032:6764466,12426783:0,0,0 +g1,13032:6764466,12426783 +g1,13032:6764466,12426783 +g1,13032:6436786,12426783 +(1,13032:6436786,12426783:0,0,0 +) +g1,13032:6764466,12426783 +) +g1,13034:7760328,12426783 +g1,13034:9088144,12426783 +h1,13034:10084006,12426783:0,0,0 +k1,13034:32583030,12426783:22499024 +g1,13034:32583030,12426783 +) +] +) +g1,13035:32583029,12506605 +g1,13035:6764466,12506605 +g1,13035:6764466,12506605 +g1,13035:32583029,12506605 +g1,13035:32583029,12506605 +) +h1,13035:6764466,12703213:0,0,0 +] +g1,13037:32583029,12703213 +) +h1,13037:6630773,12703213:0,0,0 +(1,13040:6630773,13568293:25952256,513147,126483 +h1,13039:6630773,13568293:983040,0,0 +k1,13039:8581792,13568293:150090 +k1,13039:9087743,13568293:150091 +(1,13039:9087743,13568293:0,452978,115847 +r1,13085:11204568,13568293:2116825,568825,115847 +k1,13039:9087743,13568293:-2116825 +) +(1,13039:9087743,13568293:2116825,452978,115847 +k1,13039:9087743,13568293:3277 +h1,13039:11201291,13568293:0,411205,112570 +) +k1,13039:11354658,13568293:150090 +k1,13039:13959071,13568293:150090 +k1,13039:14640659,13568293:150091 +k1,13039:17574718,13568293:150090 +k1,13039:18672459,13568293:150090 +k1,13039:20377719,13568293:150091 +(1,13039:20377719,13568293:0,452978,115847 +r1,13085:22846256,13568293:2468537,568825,115847 +k1,13039:20377719,13568293:-2468537 +) +(1,13039:20377719,13568293:2468537,452978,115847 +k1,13039:20377719,13568293:3277 +h1,13039:22842979,13568293:0,411205,112570 +) +k1,13039:22996346,13568293:150090 +k1,13039:24014788,13568293:150090 +k1,13039:25269161,13568293:150091 +k1,13039:27220180,13568293:150090 +k1,13039:29990399,13568293:150090 +k1,13039:30496350,13568293:150091 +k1,13039:31923737,13568293:150090 +k1,13039:32583029,13568293:0 +) +(1,13040:6630773,14433373:25952256,513147,126483 +k1,13039:7832227,14433373:182369 +k1,13039:11151149,14433373:182369 +k1,13039:14306885,14433373:182368 +k1,13039:16821680,14433373:182369 +k1,13039:20959147,14433373:182369 +k1,13039:21769351,14433373:182369 +k1,13039:23154961,14433373:182369 +k1,13039:24878081,14433373:182369 +k1,13039:26079534,14433373:182368 +k1,13039:27974359,14433373:182369 +k1,13039:30754575,14433373:182369 +k1,13039:32583029,14433373:0 +) +(1,13040:6630773,15298453:25952256,513147,126483 +g1,13039:8197739,15298453 +g1,13039:9569407,15298453 +g1,13039:12460200,15298453 +g1,13039:13190926,15298453 +g1,13039:14744129,15298453 +g1,13039:17705701,15298453 +g1,13039:18556358,15298453 +g1,13039:19774672,15298453 +k1,13040:32583029,15298453:10399909 +g1,13040:32583029,15298453 +) +v1,13042:6630773,15983308:0,393216,0 +(1,13046:6630773,16317385:25952256,727293,196608 +g1,13046:6630773,16317385 +g1,13046:6630773,16317385 +g1,13046:6434165,16317385 +(1,13046:6434165,16317385:0,727293,196608 +r1,13085:32779637,16317385:26345472,923901,196608 +k1,13046:6434165,16317385:-26345472 +) +(1,13046:6434165,16317385:26345472,727293,196608 +[1,13046:6630773,16317385:25952256,530685,0 +(1,13044:6630773,16211139:25952256,424439,106246 +(1,13043:6630773,16211139:0,0,0 +g1,13043:6630773,16211139 +g1,13043:6630773,16211139 +g1,13043:6303093,16211139 +(1,13043:6303093,16211139:0,0,0 +) +g1,13043:6630773,16211139 +) +k1,13044:6630773,16211139:0 +h1,13044:8954451,16211139:0,0,0 +k1,13044:32583029,16211139:23628578 +g1,13044:32583029,16211139 +) +] +) +g1,13046:32583029,16317385 +g1,13046:6630773,16317385 +g1,13046:6630773,16317385 +g1,13046:32583029,16317385 +g1,13046:32583029,16317385 +) +h1,13046:6630773,16513993:0,0,0 +(1,13049:6630773,29425633:25952256,12846104,0 +k1,13049:13183781,29425633:6553008 +h1,13048:13183781,29425633:0,0,0 +(1,13048:13183781,29425633:12846240,12846104,0 +(1,13048:13183781,29425633:12846136,12846136,0 +(1,13048:13183781,29425633:12846136,12846136,0 +(1,13048:13183781,29425633:0,12846136,0 +(1,13048:13183781,29425633:0,18945146,0 +(1,13048:13183781,29425633:18945146,18945146,0 +) +k1,13048:13183781,29425633:-18945146 +) +) +g1,13048:26029917,29425633 +) +) +) +g1,13049:26030021,29425633 +k1,13049:32583029,29425633:6553008 +) +(1,13057:6630773,30290713:25952256,505283,126483 +h1,13055:6630773,30290713:983040,0,0 +k1,13055:10897073,30290713:282366 +k1,13055:14665300,30290713:282367 +k1,13055:19233065,30290713:282366 +k1,13055:22623149,30290713:282367 +k1,13055:25878883,30290713:282366 +k1,13055:27821932,30290713:282367 +k1,13055:31258546,30290713:282366 +k1,13055:32583029,30290713:0 +) +(1,13057:6630773,31155793:25952256,505283,134348 +k1,13055:7257090,31155793:270457 +k1,13055:9729558,31155793:270458 +k1,13055:11235369,31155793:270457 +k1,13055:12121864,31155793:270457 +k1,13055:13781684,31155793:270457 +k1,13055:18071465,31155793:270458 +k1,13055:21322499,31155793:270457 +k1,13055:22494660,31155793:270386 +k1,13055:23956562,31155793:270457 +k1,13055:25128723,31155793:270386 +k1,13055:28372548,31155793:270457 +k1,13055:30975431,31155793:270457 +k1,13055:32583029,31155793:0 +) +(1,13057:6630773,32020873:25952256,513147,134348 +k1,13055:8654574,32020873:169132 +k1,13055:9633076,32020873:169132 +k1,13055:10821293,32020873:169132 +k1,13055:12082910,32020873:169132 +k1,13055:12911334,32020873:169132 +k1,13055:16106263,32020873:169132 +k1,13055:17421619,32020873:169131 +(1,13055:17421619,32020873:0,452978,115847 +r1,13085:20593579,32020873:3171960,568825,115847 +k1,13055:17421619,32020873:-3171960 +) +(1,13055:17421619,32020873:3171960,452978,115847 +k1,13055:17421619,32020873:3277 +h1,13055:20590302,32020873:0,411205,112570 +) +k1,13055:20936381,32020873:169132 +k1,13055:21791675,32020873:169132 +k1,13055:23239414,32020873:169132 +k1,13055:24094708,32020873:169132 +k1,13055:27615351,32020873:169132 +k1,13055:31350952,32020873:169132 +k1,13055:32583029,32020873:0 +) +(1,13057:6630773,32885953:25952256,513147,134348 +g1,13055:9108689,32885953 +h1,13055:10651407,32885953:0,0,0 +g1,13055:10850636,32885953 +g1,13055:11859235,32885953 +g1,13055:13556617,32885953 +h1,13055:14751994,32885953:0,0,0 +g1,13055:14951223,32885953 +g1,13055:16098103,32885953 +g1,13055:19289051,32885953 +g1,13055:20147572,32885953 +g1,13055:21996998,32885953 +g1,13055:25147969,32885953 +g1,13055:26538643,32885953 +g1,13055:29039496,32885953 +g1,13055:31227087,32885953 +k1,13057:32583029,32885953:1355942 +g1,13057:32583029,32885953 +) +(1,13058:6630773,35717113:25952256,32768,229376 +(1,13058:6630773,35717113:0,32768,229376 +(1,13058:6630773,35717113:5505024,32768,229376 +r1,13085:12135797,35717113:5505024,262144,229376 +) +k1,13058:6630773,35717113:-5505024 +) +(1,13058:6630773,35717113:25952256,32768,0 +r1,13085:32583029,35717113:25952256,32768,0 +) +) +(1,13058:6630773,37348965:25952256,606339,161218 +(1,13058:6630773,37348965:1974731,568590,14155 +g1,13058:6630773,37348965 +g1,13058:8605504,37348965 +) +g1,13058:12866393,37348965 +k1,13058:32583029,37348965:16072310 +g1,13058:32583029,37348965 +) +(1,13063:6630773,38607261:25952256,513147,134348 +k1,13062:7472801,38607261:214193 +k1,13062:10353000,38607261:214194 +k1,13062:11218621,38607261:214193 +k1,13062:14009034,38607261:214193 +k1,13062:16233873,38607261:214194 +k1,13062:18015687,38607261:214193 +k1,13062:18585740,38607261:214193 +k1,13062:22201908,38607261:214194 +k1,13062:26371199,38607261:214193 +k1,13062:27453744,38607261:214193 +k1,13062:28772220,38607261:214194 +k1,13062:30572384,38607261:214193 +k1,13062:32583029,38607261:0 +) +(1,13063:6630773,39472341:25952256,513147,134348 +k1,13062:8347925,39472341:149531 +k1,13062:9268160,39472341:149532 +k1,13062:11908714,39472341:149531 +k1,13062:12992788,39472341:149531 +k1,13062:13825205,39472341:149532 +k1,13062:17061482,39472341:149531 +k1,13062:17870305,39472341:149531 +k1,13062:20204152,39472341:149532 +k1,13062:21307232,39472341:149531 +k1,13062:22556457,39472341:149531 +k1,13062:23909230,39472341:149532 +k1,13062:27133055,39472341:149531 +k1,13062:32583029,39472341:0 +) +(1,13063:6630773,40337421:25952256,505283,134348 +k1,13062:9907931,40337421:181237 +k1,13062:11285854,40337421:181236 +k1,13062:13383364,40337421:181237 +k1,13062:14668883,40337421:181237 +k1,13062:15597885,40337421:181236 +k1,13062:17356574,40337421:181237 +k1,13062:19393790,40337421:181236 +k1,13062:20968978,40337421:181237 +k1,13062:25087618,40337421:181237 +k1,13062:25951739,40337421:181236 +k1,13062:28593198,40337421:181237 +k1,13062:32583029,40337421:0 +) +(1,13063:6630773,41202501:25952256,513147,134348 +k1,13062:7526432,41202501:267824 +k1,13062:8813340,41202501:267823 +k1,13062:11322495,41202501:267824 +k1,13062:13131070,41202501:267824 +k1,13062:14165010,41202501:267824 +k1,13062:16349106,41202501:267823 +k1,13062:17608490,41202501:267824 +k1,13062:19643820,41202501:267824 +k1,13062:21479265,41202501:267824 +k1,13062:22766173,41202501:267823 +k1,13062:24916846,41202501:267824 +k1,13062:26119213,41202501:267824 +k1,13062:27046329,41202501:267824 +k1,13062:29498467,41202501:267823 +k1,13062:32124932,41202501:267824 +k1,13062:32583029,41202501:0 +) +(1,13063:6630773,42067581:25952256,513147,134348 +k1,13062:9478353,42067581:217620 +k1,13062:10643625,42067581:217621 +k1,13062:11217105,42067581:217620 +k1,13062:13129487,42067581:217621 +k1,13062:15027450,42067581:217620 +k1,13062:15896498,42067581:217620 +k1,13062:16861885,42067581:217621 +k1,13062:19080319,42067581:217620 +k1,13062:20948136,42067581:217620 +k1,13062:22608204,42067581:217621 +k1,13062:24489783,42067581:217620 +k1,13062:25335239,42067581:217621 +k1,13062:26571944,42067581:217620 +k1,13062:29055144,42067581:217620 +k1,13062:30639846,42067581:217621 +k1,13062:31516758,42067581:217620 +k1,13062:32583029,42067581:0 +) +(1,13063:6630773,42932661:25952256,513147,134348 +k1,13062:8611664,42932661:245498 +k1,13062:12968235,42932661:245498 +k1,13062:16875228,42932661:245497 +k1,13062:19036999,42932661:245498 +k1,13062:20274057,42932661:245498 +k1,13062:22287061,42932661:245498 +k1,13062:24100180,42932661:245498 +k1,13062:25364762,42932661:245497 +k1,13062:27620905,42932661:245498 +k1,13062:31084221,42932661:245498 +k1,13062:32583029,42932661:0 +) +(1,13063:6630773,43797741:25952256,505283,134348 +g1,13062:9827619,43797741 +g1,13062:11045933,43797741 +g1,13062:13255807,43797741 +g1,13062:15690469,43797741 +g1,13062:16505736,43797741 +g1,13062:18738547,43797741 +k1,13063:32583029,43797741:11875781 +g1,13063:32583029,43797741 +) +v1,13065:6630773,44482596:0,393216,0 +(1,13085:6630773,45510161:25952256,1420781,196608 +g1,13085:6630773,45510161 +g1,13085:6630773,45510161 +g1,13085:6434165,45510161 +(1,13085:6434165,45510161:0,1420781,196608 +r1,13085:32779637,45510161:26345472,1617389,196608 +k1,13085:6434165,45510161:-26345472 +) +(1,13085:6434165,45510161:26345472,1420781,196608 +[1,13085:6630773,45510161:25952256,1224173,0 +(1,13067:6630773,44710427:25952256,424439,106246 +(1,13066:6630773,44710427:0,0,0 +g1,13066:6630773,44710427 +g1,13066:6630773,44710427 +g1,13066:6303093,44710427 +(1,13066:6303093,44710427:0,0,0 +) +g1,13066:6630773,44710427 +) +k1,13067:6630773,44710427:0 +g1,13067:9618359,44710427 +g1,13067:10282267,44710427 +h1,13067:12937898,44710427:0,0,0 +k1,13067:32583030,44710427:19645132 +g1,13067:32583030,44710427 +) +(1,13072:6630773,45430339:25952256,424439,79822 +(1,13069:6630773,45430339:0,0,0 +g1,13069:6630773,45430339 +g1,13069:6630773,45430339 +g1,13069:6303093,45430339 +(1,13069:6303093,45430339:0,0,0 +) +g1,13069:6630773,45430339 +) +k1,13072:7550448,45430339:255767 +k1,13072:7806215,45430339:255767 +k1,13072:9057844,45430339:255767 +k1,13072:10309473,45430339:255767 +k1,13072:11561102,45430339:255767 +k1,13072:12812731,45430339:255767 +k1,13072:14064360,45430339:255767 +k1,13072:15315989,45430339:255767 +k1,13072:16567618,45430339:255767 +k1,13072:17819247,45430339:255767 +k1,13072:19070877,45430339:255768 +k1,13072:20322506,45430339:255767 +k1,13072:21574135,45430339:255767 +k1,13072:22825764,45430339:255767 +k1,13072:24077393,45430339:255767 +k1,13072:25329022,45430339:255767 +k1,13072:26580651,45430339:255767 +k1,13072:27832280,45430339:255767 +k1,13072:29083909,45430339:255767 +k1,13072:30335538,45430339:255767 +k1,13072:31587167,45430339:255767 +h1,13072:32583029,45430339:0,0,0 +k1,13072:32583029,45430339:0 +k1,13072:32583029,45430339:0 +) +] +) +g1,13085:32583029,45510161 +g1,13085:6630773,45510161 +g1,13085:6630773,45510161 +g1,13085:32583029,45510161 +g1,13085:32583029,45510161 +) +] +(1,13085:32583029,45706769:0,0,0 +g1,13085:32583029,45706769 +) +) +] +(1,13085:6630773,47279633:25952256,0,0 +h1,13085:6630773,47279633:25952256,0,0 +) +] +(1,13085:4262630,4025873:0,0,0 +[1,13085:-473656,4025873:0,0,0 +(1,13085:-473656,-710413:0,0,0 +(1,13085:-473656,-710413:0,0,0 +g1,13085:-473656,-710413 +) +g1,13085:-473656,-710413 +) +] +) +] +!19894 +}210 Input:2182:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2183:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2184:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2185:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2186:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2187:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{210 -[1,13137:4262630,47279633:28320399,43253760,0 -(1,13137:4262630,4025873:0,0,0 -[1,13137:-473656,4025873:0,0,0 -(1,13137:-473656,-710413:0,0,0 -(1,13137:-473656,-644877:0,0,0 -k1,13137:-473656,-644877:-65536 +{211 +[1,13135:4262630,47279633:28320399,43253760,0 +(1,13135:4262630,4025873:0,0,0 +[1,13135:-473656,4025873:0,0,0 +(1,13135:-473656,-710413:0,0,0 +(1,13135:-473656,-644877:0,0,0 +k1,13135:-473656,-644877:-65536 ) -(1,13137:-473656,4736287:0,0,0 -k1,13137:-473656,4736287:5209943 +(1,13135:-473656,4736287:0,0,0 +k1,13135:-473656,4736287:5209943 ) -g1,13137:-473656,-710413 +g1,13135:-473656,-710413 ) ] ) -[1,13137:6630773,47279633:25952256,43253760,0 -[1,13137:6630773,4812305:25952256,786432,0 -(1,13137:6630773,4812305:25952256,505283,11795 -(1,13137:6630773,4812305:25952256,505283,11795 -g1,13137:3078558,4812305 -[1,13137:3078558,4812305:0,0,0 -(1,13137:3078558,2439708:0,1703936,0 -k1,13137:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13137:2537886,2439708:1179648,16384,0 +[1,13135:6630773,47279633:25952256,43253760,0 +[1,13135:6630773,4812305:25952256,786432,0 +(1,13135:6630773,4812305:25952256,505283,11795 +(1,13135:6630773,4812305:25952256,505283,11795 +g1,13135:3078558,4812305 +[1,13135:3078558,4812305:0,0,0 +(1,13135:3078558,2439708:0,1703936,0 +k1,13135:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13135:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13137:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13135:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13137:3078558,4812305:0,0,0 -(1,13137:3078558,2439708:0,1703936,0 -g1,13137:29030814,2439708 -g1,13137:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13137:36151628,1915420:16384,1179648,0 +[1,13135:3078558,4812305:0,0,0 +(1,13135:3078558,2439708:0,1703936,0 +g1,13135:29030814,2439708 +g1,13135:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13135:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13137:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13135:37855564,2439708:1179648,16384,0 ) ) -k1,13137:3078556,2439708:-34777008 +k1,13135:3078556,2439708:-34777008 ) ] -[1,13137:3078558,4812305:0,0,0 -(1,13137:3078558,49800853:0,16384,2228224 -k1,13137:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13137:2537886,49800853:1179648,16384,0 +[1,13135:3078558,4812305:0,0,0 +(1,13135:3078558,49800853:0,16384,2228224 +k1,13135:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13135:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13137:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13135:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13137:3078558,4812305:0,0,0 -(1,13137:3078558,49800853:0,16384,2228224 -g1,13137:29030814,49800853 -g1,13137:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13137:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +[1,13135:3078558,4812305:0,0,0 +(1,13135:3078558,49800853:0,16384,2228224 +g1,13135:29030814,49800853 +g1,13135:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13135:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13137:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13135:37855564,49800853:1179648,16384,0 ) ) -k1,13137:3078556,49800853:-34777008 +k1,13135:3078556,49800853:-34777008 ) -] -g1,13137:6630773,4812305 -g1,13137:6630773,4812305 -g1,13137:10410889,4812305 -k1,13137:31387653,4812305:20976764 -) -) -] -[1,13137:6630773,45706769:25952256,40108032,0 -(1,13137:6630773,45706769:25952256,40108032,0 -(1,13137:6630773,45706769:0,0,0 -g1,13137:6630773,45706769 -) -[1,13137:6630773,45706769:25952256,40108032,0 -v1,13087:6630773,6254097:0,393216,0 -(1,13087:6630773,9832064:25952256,3971183,196608 -g1,13087:6630773,9832064 -g1,13087:6630773,9832064 -g1,13087:6434165,9832064 -(1,13087:6434165,9832064:0,3971183,196608 -r1,13137:32779637,9832064:26345472,4167791,196608 -k1,13087:6434165,9832064:-26345472 -) -(1,13087:6434165,9832064:26345472,3971183,196608 -[1,13087:6630773,9832064:25952256,3774575,0 -(1,13074:6630773,6481928:25952256,424439,86428 -h1,13074:6630773,6481928:0,0,0 -g1,13074:7626635,6481928 -g1,13074:9286405,6481928 -g1,13074:10614221,6481928 -g1,13074:11942037,6481928 -g1,13074:13269853,6481928 -g1,13074:14597669,6481928 -g1,13074:15925485,6481928 -g1,13074:17253301,6481928 -h1,13074:18249163,6481928:0,0,0 -k1,13074:32583029,6481928:14333866 -g1,13074:32583029,6481928 -) -(1,13076:6630773,7297855:25952256,424439,106246 -(1,13075:6630773,7297855:0,0,0 -g1,13075:6630773,7297855 -g1,13075:6630773,7297855 -g1,13075:6303093,7297855 -(1,13075:6303093,7297855:0,0,0 -) -g1,13075:6630773,7297855 -) -k1,13076:6630773,7297855:0 -g1,13076:9618359,7297855 -g1,13076:10282267,7297855 -g1,13076:13269853,7297855 -g1,13076:14929623,7297855 -g1,13076:15593531,7297855 -h1,13076:16589393,7297855:0,0,0 -k1,13076:32583029,7297855:15993636 -g1,13076:32583029,7297855 -) -(1,13080:6630773,8113782:25952256,424439,86428 -(1,13078:6630773,8113782:0,0,0 -g1,13078:6630773,8113782 -g1,13078:6630773,8113782 -g1,13078:6303093,8113782 -(1,13078:6303093,8113782:0,0,0 -) -g1,13078:6630773,8113782 -) -g1,13080:7626635,8113782 -g1,13080:7958589,8113782 -g1,13080:9286405,8113782 -g1,13080:10614221,8113782 -g1,13080:11942037,8113782 -g1,13080:13269853,8113782 -g1,13080:14597669,8113782 -g1,13080:15925485,8113782 -g1,13080:17253301,8113782 -g1,13080:18581117,8113782 -g1,13080:19908933,8113782 -g1,13080:21236749,8113782 -g1,13080:22564565,8113782 -g1,13080:23892381,8113782 -h1,13080:24888243,8113782:0,0,0 -k1,13080:32583029,8113782:7694786 -g1,13080:32583029,8113782 -) -(1,13082:6630773,8929709:25952256,424439,106246 -(1,13081:6630773,8929709:0,0,0 -g1,13081:6630773,8929709 -g1,13081:6630773,8929709 -g1,13081:6303093,8929709 -(1,13081:6303093,8929709:0,0,0 -) -g1,13081:6630773,8929709 -) -k1,13082:6630773,8929709:0 -g1,13082:9618359,8929709 -g1,13082:10282267,8929709 -g1,13082:13269853,8929709 -g1,13082:14929623,8929709 -g1,13082:15593531,8929709 -g1,13082:16921347,8929709 -g1,13082:19576979,8929709 -g1,13082:20240887,8929709 -h1,13082:21900657,8929709:0,0,0 -k1,13082:32583029,8929709:10682372 -g1,13082:32583029,8929709 -) -(1,13086:6630773,9745636:25952256,424439,86428 -(1,13084:6630773,9745636:0,0,0 -g1,13084:6630773,9745636 -g1,13084:6630773,9745636 -g1,13084:6303093,9745636 -(1,13084:6303093,9745636:0,0,0 -) -g1,13084:6630773,9745636 -) -g1,13086:7626635,9745636 -g1,13086:7958589,9745636 -g1,13086:9286405,9745636 -g1,13086:10614221,9745636 -g1,13086:11942037,9745636 -g1,13086:13269853,9745636 -g1,13086:14597669,9745636 -g1,13086:15925485,9745636 -g1,13086:17253301,9745636 -g1,13086:18581117,9745636 -g1,13086:19908933,9745636 -g1,13086:21236749,9745636 -g1,13086:22564565,9745636 -g1,13086:23892381,9745636 -h1,13086:24888243,9745636:0,0,0 -k1,13086:32583029,9745636:7694786 -g1,13086:32583029,9745636 -) -] -) -g1,13087:32583029,9832064 -g1,13087:6630773,9832064 -g1,13087:6630773,9832064 -g1,13087:32583029,9832064 -g1,13087:32583029,9832064 -) -h1,13087:6630773,10028672:0,0,0 -(1,13091:6630773,10893752:25952256,513147,134348 -h1,13090:6630773,10893752:983040,0,0 -k1,13090:8440222,10893752:198574 -k1,13090:11350020,10893752:198574 -k1,13090:16584380,10893752:198574 -k1,13090:19705204,10893752:198574 -k1,13090:20435275,10893752:198574 -k1,13090:22611071,10893752:198575 -k1,13090:24507683,10893752:198574 -k1,13090:25574609,10893752:198574 -k1,13090:27303449,10893752:198574 -k1,13090:28153451,10893752:198574 -k1,13090:30172615,10893752:198574 -k1,13090:32583029,10893752:0 -) -(1,13091:6630773,11758832:25952256,513147,134348 -k1,13090:7549766,11758832:259701 -k1,13090:12054890,11758832:259702 -k1,13090:13585989,11758832:259701 -k1,13090:15339256,11758832:259701 -k1,13090:16966038,11758832:259701 -k1,13090:17757237,11758832:259702 -k1,13090:21013899,11758832:259701 -k1,13090:24748319,11758832:259701 -k1,13090:25659448,11758832:259701 -k1,13090:30089206,11758832:259702 -k1,13090:31966991,11758832:259701 -k1,13090:32583029,11758832:0 -) -(1,13091:6630773,12623912:25952256,505283,134348 -k1,13090:7699665,12623912:298189 -k1,13090:11606922,12623912:298189 -k1,13090:12587995,12623912:298188 -k1,13090:15697023,12623912:298189 -k1,13090:18521625,12623912:298189 -k1,13090:19471242,12623912:298189 -k1,13090:22704788,12623912:298188 -k1,13090:23619015,12623912:298189 -k1,13090:24273064,12623912:298189 -k1,13090:26844042,12623912:298189 -k1,13090:29746632,12623912:298189 -k1,13090:31137305,12623912:298188 -k1,13090:31966991,12623912:298189 -k1,13090:32583029,12623912:0 -) -(1,13091:6630773,13488992:25952256,505283,134348 -k1,13090:11339535,13488992:199230 -k1,13090:12190192,13488992:199229 -k1,13090:15105234,13488992:199230 -k1,13090:18130376,13488992:199230 -k1,13090:18945643,13488992:199229 -k1,13090:22425605,13488992:199230 -k1,13090:25670948,13488992:199230 -k1,13090:27605570,13488992:199229 -k1,13090:30778168,13488992:199230 -k1,13091:32583029,13488992:0 -) -(1,13091:6630773,14354072:25952256,505283,7863 -k1,13091:32583029,14354072:23486792 -g1,13091:32583029,14354072 -) -v1,13093:6630773,15219152:0,393216,0 -(1,13110:6630773,25498723:25952256,10672787,0 -g1,13110:6630773,25498723 -g1,13110:6237557,25498723 -r1,13137:6368629,25498723:131072,10672787,0 -g1,13110:6567858,25498723 -g1,13110:6764466,25498723 -[1,13110:6764466,25498723:25818563,10672787,0 -(1,13094:6764466,15633694:25818563,807758,219026 -(1,13093:6764466,15633694:0,807758,219026 -r1,13137:7908217,15633694:1143751,1026784,219026 -k1,13093:6764466,15633694:-1143751 -) -(1,13093:6764466,15633694:1143751,807758,219026 -) -g1,13093:8107446,15633694 -g1,13093:8435126,15633694 -g1,13093:10143649,15633694 -g1,13093:11007413,15633694 -g1,13093:13562006,15633694 -g1,13093:16327625,15633694 -g1,13093:18159356,15633694 -g1,13093:19977324,15633694 -g1,13093:20546176,15633694 -g1,13093:22161638,15633694 -k1,13093:32583029,15633694:8148602 -g1,13094:32583029,15633694 -) -(1,13094:6764466,16498774:25818563,513147,134348 -k1,13093:7777980,16498774:219873 -k1,13093:11087876,16498774:219873 -k1,13093:11923788,16498774:219874 -k1,13093:14422348,16498774:219873 -h1,13093:15392936,16498774:0,0,0 -k1,13093:15612809,16498774:219873 -k1,13093:16642052,16498774:219873 -k1,13093:18360079,16498774:219874 -h1,13093:19156997,16498774:0,0,0 -k1,13093:19550540,16498774:219873 -k1,13093:21159776,16498774:219873 -k1,13093:23586246,16498774:219873 -k1,13093:24797679,16498774:219873 -k1,13093:28361200,16498774:219874 -k1,13093:30094299,16498774:219873 -k1,13093:30965600,16498774:219873 -k1,13093:32583029,16498774:0 -) -(1,13094:6764466,17363854:25818563,513147,134348 -k1,13093:8062253,17363854:141077 -k1,13093:11944781,17363854:141078 -k1,13093:13142298,17363854:141077 -k1,13093:14660942,17363854:141077 -k1,13093:15631049,17363854:141077 -k1,13093:18051469,17363854:141078 -k1,13093:18548406,17363854:141077 -k1,13093:20769596,17363854:141077 -k1,13093:21569965,17363854:141077 -k1,13093:23245241,17363854:141078 -k1,13093:24254670,17363854:141077 -k1,13093:25926013,17363854:141077 -k1,13093:26718518,17363854:141077 -k1,13093:29591792,17363854:141078 -k1,13093:30088729,17363854:141077 -k1,13093:32583029,17363854:0 -) -(1,13094:6764466,18228934:25818563,513147,126483 -k1,13093:7890093,18228934:191084 -k1,13093:8740468,18228934:191083 -k1,13093:11180748,18228934:191084 -k1,13093:12023260,18228934:191084 -k1,13093:13306828,18228934:191083 -k1,13093:14891863,18228934:191084 -k1,13093:16102031,18228934:191083 -k1,13093:19507656,18228934:191084 -k1,13093:22445354,18228934:191084 -(1,13093:22652448,18228934:0,452978,115847 -r1,13137:23714138,18228934:1061690,568825,115847 -k1,13093:22652448,18228934:-1061690 -) -(1,13093:22652448,18228934:1061690,452978,115847 -g1,13093:23359149,18228934 -h1,13093:23710861,18228934:0,411205,112570 -) -k1,13093:24285985,18228934:191083 -k1,13093:25965392,18228934:191084 -k1,13093:27024828,18228934:191084 -k1,13093:29495253,18228934:191083 -k1,13093:31048831,18228934:191084 -k1,13093:32583029,18228934:0 -) -(1,13094:6764466,19094014:25818563,513147,134348 -k1,13093:8538743,19094014:206656 -k1,13093:10134763,19094014:206657 -k1,13093:12217715,19094014:206656 -(1,13093:12217715,19094014:0,414482,115847 -r1,13137:13631116,19094014:1413401,530329,115847 -k1,13093:12217715,19094014:-1413401 -) -(1,13093:12217715,19094014:1413401,414482,115847 -k1,13093:12217715,19094014:3277 -h1,13093:13627839,19094014:0,411205,112570 -) -k1,13093:13837772,19094014:206656 -k1,13093:16802839,19094014:206657 -k1,13093:17625533,19094014:206656 -k1,13093:18420702,19094014:206656 -k1,13093:20501688,19094014:206656 -k1,13093:22097708,19094014:206657 -k1,13093:24566011,19094014:206656 -k1,13093:25431959,19094014:206656 -k1,13093:28452077,19094014:206657 -k1,13093:31649796,19094014:206656 -k1,13093:32583029,19094014:0 -) -(1,13094:6764466,19959094:25818563,513147,134348 -k1,13093:8328215,19959094:255650 -k1,13093:10945783,19959094:255650 -k1,13093:11814194,19959094:255649 -k1,13093:14832187,19959094:255650 -k1,13093:17284604,19959094:255650 -k1,13093:18226416,19959094:255650 -k1,13093:21572089,19959094:255650 -k1,13093:22443777,19959094:255650 -k1,13093:23718511,19959094:255649 -k1,13093:28800232,19959094:255650 -k1,13093:31839851,19959094:255650 -k1,13093:32583029,19959094:0 -) -(1,13094:6764466,20824174:25818563,505283,134348 -g1,13093:9608728,20824174 -(1,13093:9608728,20824174:0,452978,115847 -r1,13137:13132400,20824174:3523672,568825,115847 -k1,13093:9608728,20824174:-3523672 -) -(1,13093:9608728,20824174:3523672,452978,115847 -k1,13093:9608728,20824174:3277 -h1,13093:13129123,20824174:0,411205,112570 -) -k1,13094:32583030,20824174:19191108 -g1,13094:32583030,20824174 -) -v1,13096:6764466,21509029:0,393216,0 -(1,13107:6764466,25302115:25818563,4186302,196608 -g1,13107:6764466,25302115 -g1,13107:6764466,25302115 -g1,13107:6567858,25302115 -(1,13107:6567858,25302115:0,4186302,196608 -r1,13137:32779637,25302115:26211779,4382910,196608 -k1,13107:6567857,25302115:-26211780 -) -(1,13107:6567858,25302115:26211779,4186302,196608 -[1,13107:6764466,25302115:25818563,3989694,0 -(1,13098:6764466,21736860:25818563,424439,106246 -(1,13097:6764466,21736860:0,0,0 -g1,13097:6764466,21736860 -g1,13097:6764466,21736860 -g1,13097:6436786,21736860 -(1,13097:6436786,21736860:0,0,0 -) -g1,13097:6764466,21736860 -) -k1,13098:6764466,21736860:0 -g1,13098:11411822,21736860 -g1,13098:12075730,21736860 -g1,13098:16723086,21736860 -g1,13098:18382856,21736860 -g1,13098:19046764,21736860 -g1,13098:20374580,21736860 -h1,13098:20706534,21736860:0,0,0 -k1,13098:32583029,21736860:11876495 -g1,13098:32583029,21736860 -) -(1,13106:6764466,22552787:25818563,424439,106246 -(1,13100:6764466,22552787:0,0,0 -g1,13100:6764466,22552787 -g1,13100:6764466,22552787 -g1,13100:6436786,22552787 -(1,13100:6436786,22552787:0,0,0 -) -g1,13100:6764466,22552787 -) -g1,13106:7760328,22552787 -g1,13106:8092282,22552787 -g1,13106:8424236,22552787 -g1,13106:8756190,22552787 -g1,13106:10747914,22552787 -h1,13106:12075730,22552787:0,0,0 -k1,13106:32583030,22552787:20507300 -g1,13106:32583030,22552787 -) -(1,13106:6764466,23237642:25818563,407923,9908 -h1,13106:6764466,23237642:0,0,0 -g1,13106:7760328,23237642 -g1,13106:8756190,23237642 -g1,13106:9088144,23237642 -g1,13106:9420098,23237642 -g1,13106:9752052,23237642 -g1,13106:10747914,23237642 -g1,13106:11079868,23237642 -g1,13106:11411822,23237642 -h1,13106:12075730,23237642:0,0,0 -k1,13106:32583030,23237642:20507300 -g1,13106:32583030,23237642 -) -(1,13106:6764466,23922497:25818563,407923,9908 -h1,13106:6764466,23922497:0,0,0 -g1,13106:7760328,23922497 -g1,13106:8756190,23922497 -g1,13106:9088144,23922497 -g1,13106:9420098,23922497 -g1,13106:9752052,23922497 -g1,13106:10747914,23922497 -g1,13106:11079868,23922497 -g1,13106:11411822,23922497 -h1,13106:12075730,23922497:0,0,0 -k1,13106:32583030,23922497:20507300 -g1,13106:32583030,23922497 -) -(1,13106:6764466,24607352:25818563,407923,9908 -h1,13106:6764466,24607352:0,0,0 -g1,13106:7760328,24607352 -g1,13106:8756190,24607352 -g1,13106:9088144,24607352 -g1,13106:9420098,24607352 -g1,13106:9752052,24607352 -g1,13106:10747914,24607352 -g1,13106:11079868,24607352 -g1,13106:11411822,24607352 -h1,13106:12075730,24607352:0,0,0 -k1,13106:32583030,24607352:20507300 -g1,13106:32583030,24607352 -) -(1,13106:6764466,25292207:25818563,407923,9908 -h1,13106:6764466,25292207:0,0,0 -g1,13106:7760328,25292207 -g1,13106:8756190,25292207 -g1,13106:9088144,25292207 -g1,13106:9420098,25292207 -g1,13106:9752052,25292207 -g1,13106:10747914,25292207 -g1,13106:11079868,25292207 -g1,13106:11411822,25292207 -h1,13106:12075730,25292207:0,0,0 -k1,13106:32583030,25292207:20507300 -g1,13106:32583030,25292207 -) -] -) -g1,13107:32583029,25302115 -g1,13107:6764466,25302115 -g1,13107:6764466,25302115 -g1,13107:32583029,25302115 -g1,13107:32583029,25302115 -) -h1,13107:6764466,25498723:0,0,0 -] -g1,13110:32583029,25498723 -) -h1,13110:6630773,25498723:0,0,0 -v1,13113:6630773,26363803:0,393216,0 -(1,13123:6630773,28752721:25952256,2782134,0 -g1,13123:6630773,28752721 -g1,13123:6237557,28752721 -r1,13137:6368629,28752721:131072,2782134,0 -g1,13123:6567858,28752721 -g1,13123:6764466,28752721 -[1,13123:6764466,28752721:25818563,2782134,0 -(1,13114:6764466,26672101:25818563,701514,196608 -(1,13113:6764466,26672101:0,701514,196608 -r1,13137:8471973,26672101:1707507,898122,196608 -k1,13113:6764466,26672101:-1707507 -) -(1,13113:6764466,26672101:1707507,701514,196608 -) -k1,13113:8638565,26672101:166592 -k1,13113:9956494,26672101:327680 -k1,13113:12595104,26672101:166592 -k1,13113:13780781,26672101:166592 -k1,13113:18773444,26672101:166592 -k1,13113:19607192,26672101:166592 -(1,13113:19607192,26672101:0,452978,115847 -r1,13137:22427441,26672101:2820249,568825,115847 -k1,13113:19607192,26672101:-2820249 -) -(1,13113:19607192,26672101:2820249,452978,115847 -k1,13113:19607192,26672101:3277 -h1,13113:22424164,26672101:0,411205,112570 -) -k1,13113:22594033,26672101:166592 -k1,13113:23952070,26672101:166592 -k1,13113:26428806,26672101:166592 -k1,13113:27892356,26672101:166592 -k1,13113:29078033,26672101:166592 -k1,13113:30740812,26672101:166592 -k1,13113:32583029,26672101:0 -) -(1,13114:6764466,27537181:25818563,505283,126483 -g1,13113:7495192,27537181 -g1,13113:10999402,27537181 -g1,13113:11850059,27537181 -g1,13113:13333794,27537181 -g1,13113:14149061,27537181 -g1,13113:15367375,27537181 -g1,13113:18228021,27537181 -g1,13113:22363998,27537181 -k1,13114:32583029,27537181:8311278 -g1,13114:32583029,27537181 -) -v1,13116:6764466,28222036:0,393216,0 -(1,13120:6764466,28556113:25818563,727293,196608 -g1,13120:6764466,28556113 -g1,13120:6764466,28556113 -g1,13120:6567858,28556113 -(1,13120:6567858,28556113:0,727293,196608 -r1,13137:32779637,28556113:26211779,923901,196608 -k1,13120:6567857,28556113:-26211780 -) -(1,13120:6567858,28556113:26211779,727293,196608 -[1,13120:6764466,28556113:25818563,530685,0 -(1,13118:6764466,28449867:25818563,424439,106246 -(1,13117:6764466,28449867:0,0,0 -g1,13117:6764466,28449867 -g1,13117:6764466,28449867 -g1,13117:6436786,28449867 -(1,13117:6436786,28449867:0,0,0 -) -g1,13117:6764466,28449867 -) -k1,13118:6764466,28449867:0 -g1,13118:11411822,28449867 -g1,13118:12075730,28449867 -g1,13118:16059178,28449867 -g1,13118:17718948,28449867 -g1,13118:18382856,28449867 -g1,13118:19710672,28449867 -h1,13118:20042626,28449867:0,0,0 -k1,13118:32583029,28449867:12540403 -g1,13118:32583029,28449867 -) -] -) -g1,13120:32583029,28556113 -g1,13120:6764466,28556113 -g1,13120:6764466,28556113 -g1,13120:32583029,28556113 -g1,13120:32583029,28556113 -) -h1,13120:6764466,28752721:0,0,0 -] -g1,13123:32583029,28752721 -) -h1,13123:6630773,28752721:0,0,0 -(1,13126:6630773,31583881:25952256,32768,229376 -(1,13126:6630773,31583881:0,32768,229376 -(1,13126:6630773,31583881:5505024,32768,229376 -r1,13137:12135797,31583881:5505024,262144,229376 -) -k1,13126:6630773,31583881:-5505024 -) -(1,13126:6630773,31583881:25952256,32768,0 -r1,13137:32583029,31583881:25952256,32768,0 -) -) -(1,13126:6630773,33215733:25952256,606339,14155 -(1,13126:6630773,33215733:1974731,582746,14155 -g1,13126:6630773,33215733 -g1,13126:8605504,33215733 -) -k1,13126:32583030,33215733:19510592 -g1,13126:32583030,33215733 -) -(1,13129:6630773,34474029:25952256,505283,126483 -k1,13128:8254673,34474029:158515 -k1,13128:11881353,34474029:158515 -k1,13128:15464779,34474029:158515 -k1,13128:16814739,34474029:158515 -k1,13128:21878624,34474029:158515 -k1,13128:24122495,34474029:158515 -k1,13128:28150256,34474029:158515 -k1,13128:29500216,34474029:158515 -k1,13128:32583029,34474029:0 -) -(1,13129:6630773,35339109:25952256,513147,126483 -k1,13128:9661158,35339109:245760 -k1,13128:10854569,35339109:245760 -k1,13128:12119414,35339109:245760 -k1,13128:15744210,35339109:245760 -k1,13128:16649262,35339109:245760 -k1,13128:17914106,35339109:245759 -k1,13128:20386779,35339109:245760 -k1,13128:24113156,35339109:245760 -k1,13128:26994119,35339109:245760 -k1,13128:28836336,35339109:245760 -k1,13128:29741388,35339109:245760 -k1,13128:32583029,35339109:0 -) -(1,13129:6630773,36204189:25952256,513147,134348 -k1,13128:7840896,36204189:218563 -k1,13128:10843427,36204189:218562 -k1,13128:11678028,36204189:218563 -k1,13128:13330518,36204189:218562 -k1,13128:14137594,36204189:218563 -k1,13128:15552843,36204189:218562 -k1,13128:18533749,36204189:218563 -k1,13128:21536936,36204189:218562 -k1,13128:22747059,36204189:218563 -k1,13128:25554293,36204189:218562 -k1,13128:26534384,36204189:218563 -k1,13128:29180400,36204189:218562 -k1,13128:32583029,36204189:0 -) -(1,13129:6630773,37069269:25952256,513147,134348 -k1,13128:7506287,37069269:224086 -k1,13128:8086233,37069269:224086 -k1,13128:10183339,37069269:224087 -k1,13128:13276591,37069269:224086 -k1,13128:15275392,37069269:224086 -k1,13128:18510202,37069269:224086 -k1,13128:21188612,37069269:224087 -k1,13128:21944195,37069269:224086 -k1,13128:24022950,37069269:224086 -k1,13128:25056406,37069269:224086 -k1,13128:26299577,37069269:224086 -k1,13128:28445835,37069269:224087 -k1,13128:30680566,37069269:224086 -k1,13128:31563944,37069269:224086 -k1,13128:32583029,37069269:0 -) -(1,13129:6630773,37934349:25952256,513147,134348 -k1,13128:11130713,37934349:254518 -k1,13128:16290601,37934349:254518 -k1,13128:19329743,37934349:254517 -k1,13128:20575821,37934349:254518 -k1,13128:22685008,37934349:254518 -k1,13128:23748896,37934349:254518 -k1,13128:25022499,37934349:254518 -k1,13128:28006592,37934349:254518 -k1,13128:28943994,37934349:254517 -k1,13128:30650134,37934349:254518 -k1,13128:31563944,37934349:254518 -k1,13128:32583029,37934349:0 -) -(1,13129:6630773,38799429:25952256,513147,126483 -k1,13128:11061443,38799429:185248 -k1,13128:12438137,38799429:185249 -k1,13128:16848491,38799429:185248 -k1,13128:18246811,38799429:185249 -k1,13128:20979443,38799429:185248 -k1,13128:21926220,38799429:185249 -k1,13128:26183220,38799429:185248 -k1,13128:27762420,38799429:185249 -k1,13128:30519956,38799429:185248 -k1,13129:32583029,38799429:0 -k1,13129:32583029,38799429:0 -) -(1,13130:6630773,40916247:25952256,555811,12975 -(1,13130:6630773,40916247:2450326,534184,12975 -g1,13130:6630773,40916247 -g1,13130:9081099,40916247 -) -g1,13130:12750460,40916247 -$1,13130:12750460,40916247 -$1,13130:13239948,40916247 -k1,13130:32583028,40916247:19343080 -g1,13130:32583028,40916247 -) -(1,13135:6630773,42174543:25952256,513147,134348 -k1,13134:9675760,42174543:255119 -(1,13134:9675760,42174543:0,452978,115847 -r1,13137:11440873,42174543:1765113,568825,115847 -k1,13134:9675760,42174543:-1765113 -) -(1,13134:9675760,42174543:1765113,452978,115847 -k1,13134:9675760,42174543:3277 -h1,13134:11437596,42174543:0,411205,112570 -) -k1,13134:11695992,42174543:255119 -k1,13134:13055393,42174543:255119 -k1,13134:14058278,42174543:255119 -k1,13134:16181173,42174543:255119 -k1,13134:17830243,42174543:255119 -k1,13134:19257801,42174543:255119 -k1,13134:21821098,42174543:255119 -k1,13134:22735509,42174543:255119 -k1,13134:24009713,42174543:255119 -k1,13134:25918305,42174543:255119 -k1,13134:28186690,42174543:255119 -k1,13134:29127971,42174543:255119 -k1,13134:32583029,42174543:0 -) -(1,13135:6630773,43039623:25952256,513147,126483 -k1,13134:7475345,43039623:216737 -k1,13134:8711167,43039623:216737 -k1,13134:10294984,43039623:216736 -k1,13134:11171013,43039623:216737 -k1,13134:12406835,43039623:216737 -k1,13134:16091737,43039623:216737 -k1,13134:18815226,43039623:216737 -k1,13134:21659956,43039623:216736 -k1,13134:22745045,43039623:216737 -k1,13134:23777050,43039623:216737 -k1,13134:25060058,43039623:216737 -k1,13134:26807060,43039623:216736 -k1,13134:27675225,43039623:216737 -k1,13134:30322037,43039623:216737 -k1,13134:32583029,43039623:0 -) -(1,13135:6630773,43904703:25952256,513147,134348 -g1,13134:10232631,43904703 -g1,13134:11118022,43904703 -g1,13134:12520492,43904703 -g1,13134:15174044,43904703 -g1,13134:15904770,43904703 -g1,13134:17123084,43904703 -g1,13134:19587893,43904703 -g1,13134:21117503,43904703 -g1,13134:22270281,43904703 -g1,13134:23561995,43904703 -g1,13134:25150587,43904703 -g1,13134:26284359,43904703 -(1,13134:26284359,43904703:0,414482,115847 -r1,13137:27697760,43904703:1413401,530329,115847 -k1,13134:26284359,43904703:-1413401 -) -(1,13134:26284359,43904703:1413401,414482,115847 -k1,13134:26284359,43904703:3277 -h1,13134:27694483,43904703:0,411205,112570 -) -k1,13135:32583029,43904703:4832841 -g1,13135:32583029,43904703 -) -] -(1,13137:32583029,45706769:0,0,0 -g1,13137:32583029,45706769 -) -) -] -(1,13137:6630773,47279633:25952256,0,0 -h1,13137:6630773,47279633:25952256,0,0 -) -] -(1,13137:4262630,4025873:0,0,0 -[1,13137:-473656,4025873:0,0,0 -(1,13137:-473656,-710413:0,0,0 -(1,13137:-473656,-710413:0,0,0 -g1,13137:-473656,-710413 -) -g1,13137:-473656,-710413 -) -] -) -] -!24548 -}210 -Input:2185:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2186:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2187:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,13135:6630773,4812305 +g1,13135:6630773,4812305 +g1,13135:10410889,4812305 +k1,13135:31387653,4812305:20976764 +) +) +] +[1,13135:6630773,45706769:25952256,40108032,0 +(1,13135:6630773,45706769:25952256,40108032,0 +(1,13135:6630773,45706769:0,0,0 +g1,13135:6630773,45706769 +) +[1,13135:6630773,45706769:25952256,40108032,0 +v1,13085:6630773,6254097:0,393216,0 +(1,13085:6630773,9832064:25952256,3971183,196608 +g1,13085:6630773,9832064 +g1,13085:6630773,9832064 +g1,13085:6434165,9832064 +(1,13085:6434165,9832064:0,3971183,196608 +r1,13135:32779637,9832064:26345472,4167791,196608 +k1,13085:6434165,9832064:-26345472 +) +(1,13085:6434165,9832064:26345472,3971183,196608 +[1,13085:6630773,9832064:25952256,3774575,0 +(1,13072:6630773,6481928:25952256,424439,86428 +h1,13072:6630773,6481928:0,0,0 +g1,13072:7626635,6481928 +g1,13072:9286405,6481928 +g1,13072:10614221,6481928 +g1,13072:11942037,6481928 +g1,13072:13269853,6481928 +g1,13072:14597669,6481928 +g1,13072:15925485,6481928 +g1,13072:17253301,6481928 +h1,13072:18249163,6481928:0,0,0 +k1,13072:32583029,6481928:14333866 +g1,13072:32583029,6481928 +) +(1,13074:6630773,7297855:25952256,424439,106246 +(1,13073:6630773,7297855:0,0,0 +g1,13073:6630773,7297855 +g1,13073:6630773,7297855 +g1,13073:6303093,7297855 +(1,13073:6303093,7297855:0,0,0 +) +g1,13073:6630773,7297855 +) +k1,13074:6630773,7297855:0 +g1,13074:9618359,7297855 +g1,13074:10282267,7297855 +g1,13074:13269853,7297855 +g1,13074:14929623,7297855 +g1,13074:15593531,7297855 +h1,13074:16589393,7297855:0,0,0 +k1,13074:32583029,7297855:15993636 +g1,13074:32583029,7297855 +) +(1,13078:6630773,8113782:25952256,424439,86428 +(1,13076:6630773,8113782:0,0,0 +g1,13076:6630773,8113782 +g1,13076:6630773,8113782 +g1,13076:6303093,8113782 +(1,13076:6303093,8113782:0,0,0 +) +g1,13076:6630773,8113782 +) +g1,13078:7626635,8113782 +g1,13078:7958589,8113782 +g1,13078:9286405,8113782 +g1,13078:10614221,8113782 +g1,13078:11942037,8113782 +g1,13078:13269853,8113782 +g1,13078:14597669,8113782 +g1,13078:15925485,8113782 +g1,13078:17253301,8113782 +g1,13078:18581117,8113782 +g1,13078:19908933,8113782 +g1,13078:21236749,8113782 +g1,13078:22564565,8113782 +g1,13078:23892381,8113782 +h1,13078:24888243,8113782:0,0,0 +k1,13078:32583029,8113782:7694786 +g1,13078:32583029,8113782 +) +(1,13080:6630773,8929709:25952256,424439,106246 +(1,13079:6630773,8929709:0,0,0 +g1,13079:6630773,8929709 +g1,13079:6630773,8929709 +g1,13079:6303093,8929709 +(1,13079:6303093,8929709:0,0,0 +) +g1,13079:6630773,8929709 +) +k1,13080:6630773,8929709:0 +g1,13080:9618359,8929709 +g1,13080:10282267,8929709 +g1,13080:13269853,8929709 +g1,13080:14929623,8929709 +g1,13080:15593531,8929709 +g1,13080:16921347,8929709 +g1,13080:19576979,8929709 +g1,13080:20240887,8929709 +h1,13080:21900657,8929709:0,0,0 +k1,13080:32583029,8929709:10682372 +g1,13080:32583029,8929709 +) +(1,13084:6630773,9745636:25952256,424439,86428 +(1,13082:6630773,9745636:0,0,0 +g1,13082:6630773,9745636 +g1,13082:6630773,9745636 +g1,13082:6303093,9745636 +(1,13082:6303093,9745636:0,0,0 +) +g1,13082:6630773,9745636 +) +g1,13084:7626635,9745636 +g1,13084:7958589,9745636 +g1,13084:9286405,9745636 +g1,13084:10614221,9745636 +g1,13084:11942037,9745636 +g1,13084:13269853,9745636 +g1,13084:14597669,9745636 +g1,13084:15925485,9745636 +g1,13084:17253301,9745636 +g1,13084:18581117,9745636 +g1,13084:19908933,9745636 +g1,13084:21236749,9745636 +g1,13084:22564565,9745636 +g1,13084:23892381,9745636 +h1,13084:24888243,9745636:0,0,0 +k1,13084:32583029,9745636:7694786 +g1,13084:32583029,9745636 +) +] +) +g1,13085:32583029,9832064 +g1,13085:6630773,9832064 +g1,13085:6630773,9832064 +g1,13085:32583029,9832064 +g1,13085:32583029,9832064 +) +h1,13085:6630773,10028672:0,0,0 +(1,13089:6630773,10893752:25952256,513147,134348 +h1,13088:6630773,10893752:983040,0,0 +k1,13088:8440222,10893752:198574 +k1,13088:11350020,10893752:198574 +k1,13088:16584380,10893752:198574 +k1,13088:19705204,10893752:198574 +k1,13088:20435275,10893752:198574 +k1,13088:22611071,10893752:198575 +k1,13088:24507683,10893752:198574 +k1,13088:25574609,10893752:198574 +k1,13088:27303449,10893752:198574 +k1,13088:28153451,10893752:198574 +k1,13088:30172615,10893752:198574 +k1,13088:32583029,10893752:0 +) +(1,13089:6630773,11758832:25952256,513147,134348 +k1,13088:7549766,11758832:259701 +k1,13088:12054890,11758832:259702 +k1,13088:13585989,11758832:259701 +k1,13088:15339256,11758832:259701 +k1,13088:16966038,11758832:259701 +k1,13088:17757237,11758832:259702 +k1,13088:21013899,11758832:259701 +k1,13088:24748319,11758832:259701 +k1,13088:25659448,11758832:259701 +k1,13088:30089206,11758832:259702 +k1,13088:31966991,11758832:259701 +k1,13088:32583029,11758832:0 +) +(1,13089:6630773,12623912:25952256,505283,134348 +k1,13088:7699665,12623912:298189 +k1,13088:11606922,12623912:298189 +k1,13088:12587995,12623912:298188 +k1,13088:15697023,12623912:298189 +k1,13088:18521625,12623912:298189 +k1,13088:19471242,12623912:298189 +k1,13088:22704788,12623912:298188 +k1,13088:23619015,12623912:298189 +k1,13088:24273064,12623912:298189 +k1,13088:26844042,12623912:298189 +k1,13088:29746632,12623912:298189 +k1,13088:31137305,12623912:298188 +k1,13088:31966991,12623912:298189 +k1,13088:32583029,12623912:0 +) +(1,13089:6630773,13488992:25952256,505283,134348 +k1,13088:11339535,13488992:199230 +k1,13088:12190192,13488992:199229 +k1,13088:15105234,13488992:199230 +k1,13088:18130376,13488992:199230 +k1,13088:18945643,13488992:199229 +k1,13088:22425605,13488992:199230 +k1,13088:25670948,13488992:199230 +k1,13088:27605570,13488992:199229 +k1,13088:30778168,13488992:199230 +k1,13089:32583029,13488992:0 +) +(1,13089:6630773,14354072:25952256,505283,7863 +k1,13089:32583029,14354072:23486792 +g1,13089:32583029,14354072 +) +v1,13091:6630773,15219152:0,393216,0 +(1,13108:6630773,25498723:25952256,10672787,0 +g1,13108:6630773,25498723 +g1,13108:6237557,25498723 +r1,13135:6368629,25498723:131072,10672787,0 +g1,13108:6567858,25498723 +g1,13108:6764466,25498723 +[1,13108:6764466,25498723:25818563,10672787,0 +(1,13092:6764466,15633694:25818563,807758,219026 +(1,13091:6764466,15633694:0,807758,219026 +r1,13135:7908217,15633694:1143751,1026784,219026 +k1,13091:6764466,15633694:-1143751 +) +(1,13091:6764466,15633694:1143751,807758,219026 +) +g1,13091:8107446,15633694 +g1,13091:8435126,15633694 +g1,13091:10143649,15633694 +g1,13091:11007413,15633694 +g1,13091:13562006,15633694 +g1,13091:16327625,15633694 +g1,13091:18159356,15633694 +g1,13091:19977324,15633694 +g1,13091:20546176,15633694 +g1,13091:22161638,15633694 +k1,13091:32583029,15633694:8148602 +g1,13092:32583029,15633694 +) +(1,13092:6764466,16498774:25818563,513147,134348 +k1,13091:7777980,16498774:219873 +k1,13091:11087876,16498774:219873 +k1,13091:11923788,16498774:219874 +k1,13091:14422348,16498774:219873 +h1,13091:15392936,16498774:0,0,0 +k1,13091:15612809,16498774:219873 +k1,13091:16642052,16498774:219873 +k1,13091:18360079,16498774:219874 +h1,13091:19156997,16498774:0,0,0 +k1,13091:19550540,16498774:219873 +k1,13091:21159776,16498774:219873 +k1,13091:23586246,16498774:219873 +k1,13091:24797679,16498774:219873 +k1,13091:28361200,16498774:219874 +k1,13091:30094299,16498774:219873 +k1,13091:30965600,16498774:219873 +k1,13091:32583029,16498774:0 +) +(1,13092:6764466,17363854:25818563,513147,134348 +k1,13091:8139280,17363854:218104 +k1,13091:12098834,17363854:218104 +k1,13091:13373378,17363854:218104 +k1,13091:14969049,17363854:218104 +k1,13091:16016183,17363854:218104 +k1,13091:18513629,17363854:218104 +k1,13091:19087593,17363854:218104 +k1,13091:21385809,17363854:218103 +k1,13091:22263205,17363854:218104 +k1,13091:24189177,17363854:218104 +k1,13091:25275633,17363854:218104 +k1,13091:27024003,17363854:218104 +k1,13091:27893535,17363854:218104 +k1,13091:30843835,17363854:218104 +k1,13091:31417799,17363854:218104 +k1,13092:32583029,17363854:0 +) +(1,13092:6764466,18228934:25818563,513147,126483 +k1,13091:8398886,18228934:199182 +k1,13091:9532611,18228934:199182 +k1,13091:10391085,18228934:199182 +k1,13091:12839463,18228934:199182 +k1,13091:13690073,18228934:199182 +k1,13091:14981740,18228934:199182 +k1,13091:16574873,18228934:199182 +k1,13091:17793141,18228934:199183 +k1,13091:21206864,18228934:199182 +k1,13091:24152660,18228934:199182 +(1,13091:24359754,18228934:0,452978,115847 +r1,13135:25421444,18228934:1061690,568825,115847 +k1,13091:24359754,18228934:-1061690 +) +(1,13091:24359754,18228934:1061690,452978,115847 +g1,13091:25066455,18228934 +h1,13091:25418167,18228934:0,411205,112570 +) +k1,13091:26001390,18228934:199182 +k1,13091:27688895,18228934:199182 +k1,13091:28756429,18228934:199182 +k1,13091:31234953,18228934:199182 +k1,13091:32583029,18228934:0 +) +(1,13092:6764466,19094014:25818563,513147,134348 +k1,13091:8459092,19094014:160428 +k1,13091:10187141,19094014:160428 +k1,13091:11736933,19094014:160429 +k1,13091:13773657,19094014:160428 +(1,13091:13773657,19094014:0,414482,115847 +r1,13135:15187058,19094014:1413401,530329,115847 +k1,13091:13773657,19094014:-1413401 +) +(1,13091:13773657,19094014:1413401,414482,115847 +k1,13091:13773657,19094014:3277 +h1,13091:15183781,19094014:0,411205,112570 +) +k1,13091:15347486,19094014:160428 +k1,13091:18266324,19094014:160428 +k1,13091:19042791,19094014:160429 +k1,13091:19791732,19094014:160428 +k1,13091:21826490,19094014:160428 +k1,13091:23376281,19094014:160428 +k1,13091:25798357,19094014:160429 +k1,13091:26618077,19094014:160428 +k1,13091:29591966,19094014:160428 +k1,13091:32583029,19094014:0 +) +(1,13092:6764466,19959094:25818563,513147,134348 +k1,13091:7949178,19959094:237061 +k1,13091:9494339,19959094:237062 +k1,13091:12093318,19959094:237061 +k1,13091:12943141,19959094:237061 +k1,13091:15942546,19959094:237062 +k1,13091:18376374,19959094:237061 +k1,13091:19299598,19959094:237062 +k1,13091:22626682,19959094:237061 +k1,13091:23479781,19959094:237061 +k1,13091:24735928,19959094:237062 +k1,13091:29799060,19959094:237061 +k1,13091:32583029,19959094:0 +) +(1,13092:6764466,20824174:25818563,505283,134348 +g1,13091:7725223,20824174 +g1,13091:10569485,20824174 +(1,13091:10569485,20824174:0,452978,115847 +r1,13135:14093157,20824174:3523672,568825,115847 +k1,13091:10569485,20824174:-3523672 +) +(1,13091:10569485,20824174:3523672,452978,115847 +k1,13091:10569485,20824174:3277 +h1,13091:14089880,20824174:0,411205,112570 +) +k1,13092:32583029,20824174:18230350 +g1,13092:32583029,20824174 +) +v1,13094:6764466,21509029:0,393216,0 +(1,13105:6764466,25302115:25818563,4186302,196608 +g1,13105:6764466,25302115 +g1,13105:6764466,25302115 +g1,13105:6567858,25302115 +(1,13105:6567858,25302115:0,4186302,196608 +r1,13135:32779637,25302115:26211779,4382910,196608 +k1,13105:6567857,25302115:-26211780 +) +(1,13105:6567858,25302115:26211779,4186302,196608 +[1,13105:6764466,25302115:25818563,3989694,0 +(1,13096:6764466,21736860:25818563,424439,106246 +(1,13095:6764466,21736860:0,0,0 +g1,13095:6764466,21736860 +g1,13095:6764466,21736860 +g1,13095:6436786,21736860 +(1,13095:6436786,21736860:0,0,0 +) +g1,13095:6764466,21736860 +) +k1,13096:6764466,21736860:0 +g1,13096:11411822,21736860 +g1,13096:12075730,21736860 +g1,13096:16723086,21736860 +g1,13096:18382856,21736860 +g1,13096:19046764,21736860 +g1,13096:20374580,21736860 +h1,13096:20706534,21736860:0,0,0 +k1,13096:32583029,21736860:11876495 +g1,13096:32583029,21736860 +) +(1,13104:6764466,22552787:25818563,424439,106246 +(1,13098:6764466,22552787:0,0,0 +g1,13098:6764466,22552787 +g1,13098:6764466,22552787 +g1,13098:6436786,22552787 +(1,13098:6436786,22552787:0,0,0 +) +g1,13098:6764466,22552787 +) +g1,13104:7760328,22552787 +g1,13104:8092282,22552787 +g1,13104:8424236,22552787 +g1,13104:8756190,22552787 +g1,13104:10747914,22552787 +h1,13104:12075730,22552787:0,0,0 +k1,13104:32583030,22552787:20507300 +g1,13104:32583030,22552787 +) +(1,13104:6764466,23237642:25818563,407923,9908 +h1,13104:6764466,23237642:0,0,0 +g1,13104:7760328,23237642 +g1,13104:8756190,23237642 +g1,13104:9088144,23237642 +g1,13104:9420098,23237642 +g1,13104:9752052,23237642 +g1,13104:10747914,23237642 +g1,13104:11079868,23237642 +g1,13104:11411822,23237642 +h1,13104:12075730,23237642:0,0,0 +k1,13104:32583030,23237642:20507300 +g1,13104:32583030,23237642 +) +(1,13104:6764466,23922497:25818563,407923,9908 +h1,13104:6764466,23922497:0,0,0 +g1,13104:7760328,23922497 +g1,13104:8756190,23922497 +g1,13104:9088144,23922497 +g1,13104:9420098,23922497 +g1,13104:9752052,23922497 +g1,13104:10747914,23922497 +g1,13104:11079868,23922497 +g1,13104:11411822,23922497 +h1,13104:12075730,23922497:0,0,0 +k1,13104:32583030,23922497:20507300 +g1,13104:32583030,23922497 +) +(1,13104:6764466,24607352:25818563,407923,9908 +h1,13104:6764466,24607352:0,0,0 +g1,13104:7760328,24607352 +g1,13104:8756190,24607352 +g1,13104:9088144,24607352 +g1,13104:9420098,24607352 +g1,13104:9752052,24607352 +g1,13104:10747914,24607352 +g1,13104:11079868,24607352 +g1,13104:11411822,24607352 +h1,13104:12075730,24607352:0,0,0 +k1,13104:32583030,24607352:20507300 +g1,13104:32583030,24607352 +) +(1,13104:6764466,25292207:25818563,407923,9908 +h1,13104:6764466,25292207:0,0,0 +g1,13104:7760328,25292207 +g1,13104:8756190,25292207 +g1,13104:9088144,25292207 +g1,13104:9420098,25292207 +g1,13104:9752052,25292207 +g1,13104:10747914,25292207 +g1,13104:11079868,25292207 +g1,13104:11411822,25292207 +h1,13104:12075730,25292207:0,0,0 +k1,13104:32583030,25292207:20507300 +g1,13104:32583030,25292207 +) +] +) +g1,13105:32583029,25302115 +g1,13105:6764466,25302115 +g1,13105:6764466,25302115 +g1,13105:32583029,25302115 +g1,13105:32583029,25302115 +) +h1,13105:6764466,25498723:0,0,0 +] +g1,13108:32583029,25498723 +) +h1,13108:6630773,25498723:0,0,0 +v1,13111:6630773,26363803:0,393216,0 +(1,13121:6630773,28752721:25952256,2782134,0 +g1,13121:6630773,28752721 +g1,13121:6237557,28752721 +r1,13135:6368629,28752721:131072,2782134,0 +g1,13121:6567858,28752721 +g1,13121:6764466,28752721 +[1,13121:6764466,28752721:25818563,2782134,0 +(1,13112:6764466,26672101:25818563,701514,196608 +(1,13111:6764466,26672101:0,701514,196608 +r1,13135:8471973,26672101:1707507,898122,196608 +k1,13111:6764466,26672101:-1707507 +) +(1,13111:6764466,26672101:1707507,701514,196608 +) +k1,13111:8638565,26672101:166592 +k1,13111:9956494,26672101:327680 +k1,13111:12595104,26672101:166592 +k1,13111:13780781,26672101:166592 +k1,13111:18773444,26672101:166592 +k1,13111:19607192,26672101:166592 +(1,13111:19607192,26672101:0,452978,115847 +r1,13135:22427441,26672101:2820249,568825,115847 +k1,13111:19607192,26672101:-2820249 +) +(1,13111:19607192,26672101:2820249,452978,115847 +k1,13111:19607192,26672101:3277 +h1,13111:22424164,26672101:0,411205,112570 +) +k1,13111:22594033,26672101:166592 +k1,13111:23952070,26672101:166592 +k1,13111:26428806,26672101:166592 +k1,13111:27892356,26672101:166592 +k1,13111:29078033,26672101:166592 +k1,13111:30740812,26672101:166592 +k1,13111:32583029,26672101:0 +) +(1,13112:6764466,27537181:25818563,505283,126483 +g1,13111:7495192,27537181 +g1,13111:10999402,27537181 +g1,13111:11850059,27537181 +g1,13111:13333794,27537181 +g1,13111:14149061,27537181 +g1,13111:15367375,27537181 +g1,13111:18228021,27537181 +g1,13111:22363998,27537181 +k1,13112:32583029,27537181:8311278 +g1,13112:32583029,27537181 +) +v1,13114:6764466,28222036:0,393216,0 +(1,13118:6764466,28556113:25818563,727293,196608 +g1,13118:6764466,28556113 +g1,13118:6764466,28556113 +g1,13118:6567858,28556113 +(1,13118:6567858,28556113:0,727293,196608 +r1,13135:32779637,28556113:26211779,923901,196608 +k1,13118:6567857,28556113:-26211780 +) +(1,13118:6567858,28556113:26211779,727293,196608 +[1,13118:6764466,28556113:25818563,530685,0 +(1,13116:6764466,28449867:25818563,424439,106246 +(1,13115:6764466,28449867:0,0,0 +g1,13115:6764466,28449867 +g1,13115:6764466,28449867 +g1,13115:6436786,28449867 +(1,13115:6436786,28449867:0,0,0 +) +g1,13115:6764466,28449867 +) +k1,13116:6764466,28449867:0 +g1,13116:11411822,28449867 +g1,13116:12075730,28449867 +g1,13116:16059178,28449867 +g1,13116:17718948,28449867 +g1,13116:18382856,28449867 +g1,13116:19710672,28449867 +h1,13116:20042626,28449867:0,0,0 +k1,13116:32583029,28449867:12540403 +g1,13116:32583029,28449867 +) +] +) +g1,13118:32583029,28556113 +g1,13118:6764466,28556113 +g1,13118:6764466,28556113 +g1,13118:32583029,28556113 +g1,13118:32583029,28556113 +) +h1,13118:6764466,28752721:0,0,0 +] +g1,13121:32583029,28752721 +) +h1,13121:6630773,28752721:0,0,0 +(1,13124:6630773,31583881:25952256,32768,229376 +(1,13124:6630773,31583881:0,32768,229376 +(1,13124:6630773,31583881:5505024,32768,229376 +r1,13135:12135797,31583881:5505024,262144,229376 +) +k1,13124:6630773,31583881:-5505024 +) +(1,13124:6630773,31583881:25952256,32768,0 +r1,13135:32583029,31583881:25952256,32768,0 +) +) +(1,13124:6630773,33215733:25952256,606339,14155 +(1,13124:6630773,33215733:1974731,582746,14155 +g1,13124:6630773,33215733 +g1,13124:8605504,33215733 +) +k1,13124:32583030,33215733:19510592 +g1,13124:32583030,33215733 +) +(1,13127:6630773,34474029:25952256,505283,126483 +k1,13126:8254673,34474029:158515 +k1,13126:11881353,34474029:158515 +k1,13126:15464779,34474029:158515 +k1,13126:16814739,34474029:158515 +k1,13126:21878624,34474029:158515 +k1,13126:24122495,34474029:158515 +k1,13126:28150256,34474029:158515 +k1,13126:29500216,34474029:158515 +k1,13126:32583029,34474029:0 +) +(1,13127:6630773,35339109:25952256,513147,126483 +k1,13126:9661158,35339109:245760 +k1,13126:10854569,35339109:245760 +k1,13126:12119414,35339109:245760 +k1,13126:15744210,35339109:245760 +k1,13126:16649262,35339109:245760 +k1,13126:17914106,35339109:245759 +k1,13126:20386779,35339109:245760 +k1,13126:24113156,35339109:245760 +k1,13126:26994119,35339109:245760 +k1,13126:28836336,35339109:245760 +k1,13126:29741388,35339109:245760 +k1,13126:32583029,35339109:0 +) +(1,13127:6630773,36204189:25952256,513147,134348 +k1,13126:7840896,36204189:218563 +k1,13126:10843427,36204189:218562 +k1,13126:11678028,36204189:218563 +k1,13126:13330518,36204189:218562 +k1,13126:14137594,36204189:218563 +k1,13126:15552843,36204189:218562 +k1,13126:18533749,36204189:218563 +k1,13126:21536936,36204189:218562 +k1,13126:22747059,36204189:218563 +k1,13126:25554293,36204189:218562 +k1,13126:26534384,36204189:218563 +k1,13126:29180400,36204189:218562 +k1,13126:32583029,36204189:0 +) +(1,13127:6630773,37069269:25952256,513147,134348 +k1,13126:7506287,37069269:224086 +k1,13126:8086233,37069269:224086 +k1,13126:10183339,37069269:224087 +k1,13126:13276591,37069269:224086 +k1,13126:15275392,37069269:224086 +k1,13126:18510202,37069269:224086 +k1,13126:21188612,37069269:224087 +k1,13126:21944195,37069269:224086 +k1,13126:24022950,37069269:224086 +k1,13126:25056406,37069269:224086 +k1,13126:26299577,37069269:224086 +k1,13126:28445835,37069269:224087 +k1,13126:30680566,37069269:224086 +k1,13126:31563944,37069269:224086 +k1,13126:32583029,37069269:0 +) +(1,13127:6630773,37934349:25952256,513147,134348 +k1,13126:11130713,37934349:254518 +k1,13126:16290601,37934349:254518 +k1,13126:19329743,37934349:254517 +k1,13126:20575821,37934349:254518 +k1,13126:22685008,37934349:254518 +k1,13126:23748896,37934349:254518 +k1,13126:25022499,37934349:254518 +k1,13126:28006592,37934349:254518 +k1,13126:28943994,37934349:254517 +k1,13126:30650134,37934349:254518 +k1,13126:31563944,37934349:254518 +k1,13126:32583029,37934349:0 +) +(1,13127:6630773,38799429:25952256,513147,126483 +k1,13126:11061443,38799429:185248 +k1,13126:12438137,38799429:185249 +k1,13126:16848491,38799429:185248 +k1,13126:18246811,38799429:185249 +k1,13126:20979443,38799429:185248 +k1,13126:21926220,38799429:185249 +k1,13126:26183220,38799429:185248 +k1,13126:27762420,38799429:185249 +k1,13126:30519956,38799429:185248 +k1,13127:32583029,38799429:0 +k1,13127:32583029,38799429:0 +) +(1,13128:6630773,40916247:25952256,555811,12975 +(1,13128:6630773,40916247:2450326,534184,12975 +g1,13128:6630773,40916247 +g1,13128:9081099,40916247 +) +g1,13128:12750460,40916247 +$1,13128:12750460,40916247 +$1,13128:13239948,40916247 +k1,13128:32583028,40916247:19343080 +g1,13128:32583028,40916247 +) +(1,13133:6630773,42174543:25952256,513147,134348 +k1,13132:9675760,42174543:255119 +(1,13132:9675760,42174543:0,452978,115847 +r1,13135:11440873,42174543:1765113,568825,115847 +k1,13132:9675760,42174543:-1765113 +) +(1,13132:9675760,42174543:1765113,452978,115847 +k1,13132:9675760,42174543:3277 +h1,13132:11437596,42174543:0,411205,112570 +) +k1,13132:11695992,42174543:255119 +k1,13132:13055393,42174543:255119 +k1,13132:14058278,42174543:255119 +k1,13132:16181173,42174543:255119 +k1,13132:17830243,42174543:255119 +k1,13132:19257801,42174543:255119 +k1,13132:21821098,42174543:255119 +k1,13132:22735509,42174543:255119 +k1,13132:24009713,42174543:255119 +k1,13132:25918305,42174543:255119 +k1,13132:28186690,42174543:255119 +k1,13132:29127971,42174543:255119 +k1,13132:32583029,42174543:0 +) +(1,13133:6630773,43039623:25952256,513147,126483 +k1,13132:7475345,43039623:216737 +k1,13132:8711167,43039623:216737 +k1,13132:10294984,43039623:216736 +k1,13132:11171013,43039623:216737 +k1,13132:12406835,43039623:216737 +k1,13132:16091737,43039623:216737 +k1,13132:18815226,43039623:216737 +k1,13132:21659956,43039623:216736 +k1,13132:22745045,43039623:216737 +k1,13132:23777050,43039623:216737 +k1,13132:25060058,43039623:216737 +k1,13132:26807060,43039623:216736 +k1,13132:27675225,43039623:216737 +k1,13132:30322037,43039623:216737 +k1,13132:32583029,43039623:0 +) +(1,13133:6630773,43904703:25952256,513147,134348 +g1,13132:10232631,43904703 +g1,13132:11118022,43904703 +g1,13132:12520492,43904703 +g1,13132:15174044,43904703 +g1,13132:15904770,43904703 +g1,13132:17123084,43904703 +g1,13132:19587893,43904703 +g1,13132:21117503,43904703 +g1,13132:22270281,43904703 +g1,13132:23561995,43904703 +g1,13132:25150587,43904703 +g1,13132:26284359,43904703 +(1,13132:26284359,43904703:0,414482,115847 +r1,13135:27697760,43904703:1413401,530329,115847 +k1,13132:26284359,43904703:-1413401 +) +(1,13132:26284359,43904703:1413401,414482,115847 +k1,13132:26284359,43904703:3277 +h1,13132:27694483,43904703:0,411205,112570 +) +k1,13133:32583029,43904703:4832841 +g1,13133:32583029,43904703 +) +] +(1,13135:32583029,45706769:0,0,0 +g1,13135:32583029,45706769 +) +) +] +(1,13135:6630773,47279633:25952256,0,0 +h1,13135:6630773,47279633:25952256,0,0 +) +] +(1,13135:4262630,4025873:0,0,0 +[1,13135:-473656,4025873:0,0,0 +(1,13135:-473656,-710413:0,0,0 +(1,13135:-473656,-710413:0,0,0 +g1,13135:-473656,-710413 +) +g1,13135:-473656,-710413 +) +] +) +] +!24578 +}211 Input:2188:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2189:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2190:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -233251,1066 +233449,1066 @@ Input:2193:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2194:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2195:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2196:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2197:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2198:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2199:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{211 -[1,13210:4262630,47279633:28320399,43253760,0 -(1,13210:4262630,4025873:0,0,0 -[1,13210:-473656,4025873:0,0,0 -(1,13210:-473656,-710413:0,0,0 -(1,13210:-473656,-644877:0,0,0 -k1,13210:-473656,-644877:-65536 +{212 +[1,13208:4262630,47279633:28320399,43253760,0 +(1,13208:4262630,4025873:0,0,0 +[1,13208:-473656,4025873:0,0,0 +(1,13208:-473656,-710413:0,0,0 +(1,13208:-473656,-644877:0,0,0 +k1,13208:-473656,-644877:-65536 ) -(1,13210:-473656,4736287:0,0,0 -k1,13210:-473656,4736287:5209943 +(1,13208:-473656,4736287:0,0,0 +k1,13208:-473656,4736287:5209943 ) -g1,13210:-473656,-710413 +g1,13208:-473656,-710413 ) ] ) -[1,13210:6630773,47279633:25952256,43253760,0 -[1,13210:6630773,4812305:25952256,786432,0 -(1,13210:6630773,4812305:25952256,513147,126483 -(1,13210:6630773,4812305:25952256,513147,126483 -g1,13210:3078558,4812305 -[1,13210:3078558,4812305:0,0,0 -(1,13210:3078558,2439708:0,1703936,0 -k1,13210:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13210:2537886,2439708:1179648,16384,0 +[1,13208:6630773,47279633:25952256,43253760,0 +[1,13208:6630773,4812305:25952256,786432,0 +(1,13208:6630773,4812305:25952256,513147,126483 +(1,13208:6630773,4812305:25952256,513147,126483 +g1,13208:3078558,4812305 +[1,13208:3078558,4812305:0,0,0 +(1,13208:3078558,2439708:0,1703936,0 +k1,13208:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13208:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13210:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13208:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13210:3078558,4812305:0,0,0 -(1,13210:3078558,2439708:0,1703936,0 -g1,13210:29030814,2439708 -g1,13210:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13210:36151628,1915420:16384,1179648,0 +[1,13208:3078558,4812305:0,0,0 +(1,13208:3078558,2439708:0,1703936,0 +g1,13208:29030814,2439708 +g1,13208:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13208:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13210:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13208:37855564,2439708:1179648,16384,0 ) ) -k1,13210:3078556,2439708:-34777008 +k1,13208:3078556,2439708:-34777008 ) ] -[1,13210:3078558,4812305:0,0,0 -(1,13210:3078558,49800853:0,16384,2228224 -k1,13210:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13210:2537886,49800853:1179648,16384,0 +[1,13208:3078558,4812305:0,0,0 +(1,13208:3078558,49800853:0,16384,2228224 +k1,13208:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13208:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13210:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13208:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13210:3078558,4812305:0,0,0 -(1,13210:3078558,49800853:0,16384,2228224 -g1,13210:29030814,49800853 -g1,13210:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13210:36151628,51504789:16384,1179648,0 +[1,13208:3078558,4812305:0,0,0 +(1,13208:3078558,49800853:0,16384,2228224 +g1,13208:29030814,49800853 +g1,13208:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13208:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13210:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13208:37855564,49800853:1179648,16384,0 ) ) -k1,13210:3078556,49800853:-34777008 +k1,13208:3078556,49800853:-34777008 ) ] -g1,13210:6630773,4812305 -k1,13210:19575446,4812305:11749296 -g1,13210:21198117,4812305 -g1,13210:21985204,4812305 -g1,13210:24539797,4812305 -g1,13210:25949476,4812305 -g1,13210:28728857,4812305 -g1,13210:29852144,4812305 -) -) -] -[1,13210:6630773,45706769:25952256,40108032,0 -(1,13210:6630773,45706769:25952256,40108032,0 -(1,13210:6630773,45706769:0,0,0 -g1,13210:6630773,45706769 -) -[1,13210:6630773,45706769:25952256,40108032,0 -v1,13137:6630773,6254097:0,393216,0 -(1,13144:6630773,7384283:25952256,1523402,196608 -g1,13144:6630773,7384283 -g1,13144:6630773,7384283 -g1,13144:6434165,7384283 -(1,13144:6434165,7384283:0,1523402,196608 -r1,13210:32779637,7384283:26345472,1720010,196608 -k1,13144:6434165,7384283:-26345472 -) -(1,13144:6434165,7384283:26345472,1523402,196608 -[1,13144:6630773,7384283:25952256,1326794,0 -(1,13139:6630773,6488534:25952256,431045,106246 -(1,13138:6630773,6488534:0,0,0 -g1,13138:6630773,6488534 -g1,13138:6630773,6488534 -g1,13138:6303093,6488534 -(1,13138:6303093,6488534:0,0,0 -) -g1,13138:6630773,6488534 -) -k1,13139:6630773,6488534:0 -g1,13139:8622497,6488534 -g1,13139:9286405,6488534 -g1,13139:13269853,6488534 -g1,13139:13933761,6488534 -g1,13139:14597669,6488534 -h1,13139:17917209,6488534:0,0,0 -k1,13139:32583029,6488534:14665820 -g1,13139:32583029,6488534 -) -(1,13143:6630773,7304461:25952256,424439,79822 -(1,13141:6630773,7304461:0,0,0 -g1,13141:6630773,7304461 -g1,13141:6630773,7304461 -g1,13141:6303093,7304461 -(1,13141:6303093,7304461:0,0,0 -) -g1,13141:6630773,7304461 -) -g1,13143:7626635,7304461 -g1,13143:8954451,7304461 -h1,13143:11942036,7304461:0,0,0 -k1,13143:32583028,7304461:20640992 -g1,13143:32583028,7304461 -) -] -) -g1,13144:32583029,7384283 -g1,13144:6630773,7384283 -g1,13144:6630773,7384283 -g1,13144:32583029,7384283 -g1,13144:32583029,7384283 -) -h1,13144:6630773,7580891:0,0,0 -(1,13148:6630773,8445971:25952256,513147,134348 -h1,13147:6630773,8445971:983040,0,0 -k1,13147:8251929,8445971:168223 -k1,13147:8951648,8445971:168222 -k1,13147:10405687,8445971:168223 -k1,13147:13203870,8445971:168223 -k1,13147:14023520,8445971:168222 -k1,13147:15628948,8445971:168223 -k1,13147:16153031,8445971:168223 -k1,13147:17710616,8445971:168222 -k1,13147:19755135,8445971:168223 -k1,13147:20813337,8445971:168223 -k1,13147:21337420,8445971:168223 -k1,13147:23800057,8445971:168222 -k1,13147:24654442,8445971:168223 -k1,13147:25841750,8445971:168223 -k1,13147:27385573,8445971:168222 -k1,13147:30799794,8445971:168223 -k1,13147:32583029,8445971:0 -) -(1,13148:6630773,9311051:25952256,513147,126483 -k1,13147:7928743,9311051:278885 -k1,13147:9596992,9311051:278886 -k1,13147:11752173,9311051:278885 -k1,13147:12921037,9311051:278885 -k1,13147:15494338,9311051:278886 -k1,13147:18475272,9311051:278885 -k1,13147:20129759,9311051:278886 -k1,13147:21581083,9311051:278885 -k1,13147:24746829,9311051:278885 -k1,13147:26044800,9311051:278886 -k1,13147:29102412,9311051:278885 -k1,13147:32583029,9311051:0 -) -(1,13148:6630773,10176131:25952256,513147,134348 -k1,13147:9568807,10176131:222222 -k1,13147:10322525,10176131:222221 -k1,13147:13849728,10176131:222222 -k1,13147:14723377,10176131:222221 -k1,13147:16230105,10176131:222222 -k1,13147:17111618,10176131:222221 -k1,13147:19761294,10176131:222222 -k1,13147:21002600,10176131:222221 -k1,13147:22397261,10176131:222222 -k1,13147:25332673,10176131:222221 -k1,13147:29314040,10176131:222222 -k1,13147:30222423,10176131:222221 -k1,13147:32583029,10176131:0 -) -(1,13148:6630773,11041211:25952256,513147,134348 -g1,13147:8005062,11041211 -g1,13147:10163817,11041211 -g1,13147:13141773,11041211 -g1,13147:13872499,11041211 -g1,13147:14427588,11041211 -$1,13147:14427588,11041211 -g1,13147:14971695,11041211 -g1,13147:15685540,11041211 -$1,13147:16083999,11041211 -g1,13147:16283228,11041211 -(1,13147:16283228,11041211:0,452978,115847 -r1,13210:18400053,11041211:2116825,568825,115847 -k1,13147:16283228,11041211:-2116825 -) -(1,13147:16283228,11041211:2116825,452978,115847 -k1,13147:16283228,11041211:3277 -h1,13147:18396776,11041211:0,411205,112570 -) -g1,13147:18599282,11041211 -g1,13147:21125694,11041211 -g1,13147:21984215,11041211 -g1,13147:22539304,11041211 -g1,13147:24716410,11041211 -g1,13147:25574931,11041211 -g1,13147:27787426,11041211 -k1,13148:32583029,11041211:3586464 -g1,13148:32583029,11041211 -) -v1,13150:6630773,11726066:0,393216,0 -(1,13159:6630773,14149442:25952256,2816592,196608 -g1,13159:6630773,14149442 -g1,13159:6630773,14149442 -g1,13159:6434165,14149442 -(1,13159:6434165,14149442:0,2816592,196608 -r1,13210:32779637,14149442:26345472,3013200,196608 -k1,13159:6434165,14149442:-26345472 -) -(1,13159:6434165,14149442:26345472,2816592,196608 -[1,13159:6630773,14149442:25952256,2619984,0 -(1,13152:6630773,11953897:25952256,424439,79822 -(1,13151:6630773,11953897:0,0,0 -g1,13151:6630773,11953897 -g1,13151:6630773,11953897 -g1,13151:6303093,11953897 -(1,13151:6303093,11953897:0,0,0 -) -g1,13151:6630773,11953897 -) -k1,13152:6630773,11953897:0 -h1,13152:9618359,11953897:0,0,0 -k1,13152:32583029,11953897:22964670 -g1,13152:32583029,11953897 -) -(1,13158:6630773,12769824:25952256,424439,106246 -(1,13154:6630773,12769824:0,0,0 -g1,13154:6630773,12769824 -g1,13154:6630773,12769824 -g1,13154:6303093,12769824 -(1,13154:6303093,12769824:0,0,0 -) -g1,13154:6630773,12769824 -) -g1,13158:7626635,12769824 -g1,13158:7958589,12769824 -g1,13158:8290543,12769824 -g1,13158:8622497,12769824 -g1,13158:8954451,12769824 -g1,13158:9286405,12769824 -g1,13158:9618359,12769824 -g1,13158:9950313,12769824 -g1,13158:10282267,12769824 -g1,13158:10614221,12769824 -g1,13158:10946175,12769824 -g1,13158:12937899,12769824 -g1,13158:13269853,12769824 -g1,13158:13601807,12769824 -g1,13158:13933761,12769824 -g1,13158:14265715,12769824 -g1,13158:14597669,12769824 -h1,13158:15925485,12769824:0,0,0 -k1,13158:32583029,12769824:16657544 -g1,13158:32583029,12769824 -) -(1,13158:6630773,13454679:25952256,424439,106246 -h1,13158:6630773,13454679:0,0,0 -g1,13158:7626635,13454679 -g1,13158:9618359,13454679 -g1,13158:12937898,13454679 -h1,13158:15925483,13454679:0,0,0 -k1,13158:32583029,13454679:16657546 -g1,13158:32583029,13454679 -) -(1,13158:6630773,14139534:25952256,424439,9908 -h1,13158:6630773,14139534:0,0,0 -g1,13158:7626635,14139534 -g1,13158:9286405,14139534 -g1,13158:9618359,14139534 -g1,13158:12937898,14139534 -h1,13158:15925483,14139534:0,0,0 -k1,13158:32583029,14139534:16657546 -g1,13158:32583029,14139534 -) -] -) -g1,13159:32583029,14149442 -g1,13159:6630773,14149442 -g1,13159:6630773,14149442 -g1,13159:32583029,14149442 -g1,13159:32583029,14149442 -) -h1,13159:6630773,14346050:0,0,0 -(1,13163:6630773,15211130:25952256,513147,102891 -h1,13162:6630773,15211130:983040,0,0 -k1,13162:9650618,15211130:253570 -k1,13162:10923272,15211130:253569 -k1,13162:12566205,15211130:253570 -k1,13162:14696071,15211130:253570 -k1,13162:15632525,15211130:253569 -k1,13162:17973417,15211130:253570 -k1,13162:20929036,15211130:253570 -k1,13162:22832802,15211130:253569 -k1,13162:24528819,15211130:253570 -k1,13162:25954828,15211130:253570 -k1,13162:28828526,15211130:253569 -k1,13162:31563944,15211130:253570 -k1,13162:32583029,15211130:0 -) -(1,13163:6630773,16076210:25952256,513147,126483 -k1,13162:9616415,16076210:206915 -k1,13162:11503673,16076210:206915 -k1,13162:12242085,16076210:206915 -k1,13162:12804860,16076210:206915 -k1,13162:15099097,16076210:206915 -k1,13162:15965303,16076210:206914 -k1,13162:19218331,16076210:206915 -k1,13162:20084538,16076210:206915 -k1,13162:22957458,16076210:206915 -k1,13162:26975292,16076210:206915 -k1,13162:29817410,16076210:206915 -k1,13162:32583029,16076210:0 -) -(1,13163:6630773,16941290:25952256,513147,134348 -k1,13162:7814698,16941290:260523 -k1,13162:9473103,16941290:260522 -k1,13162:10826111,16941290:260523 -(1,13162:10826111,16941290:0,452978,115847 -r1,13210:13294648,16941290:2468537,568825,115847 -k1,13162:10826111,16941290:-2468537 -) -(1,13162:10826111,16941290:2468537,452978,115847 -k1,13162:10826111,16941290:3277 -h1,13162:13291371,16941290:0,411205,112570 -) -k1,13162:13555170,16941290:260522 -k1,13162:16905716,16941290:260523 -k1,13162:19021562,16941290:260522 -k1,13162:19933513,16941290:260523 -k1,13162:22123416,16941290:260523 -k1,13162:22739798,16941290:260522 -k1,13162:24389029,16941290:260523 -k1,13162:26627428,16941290:260522 -k1,13162:27547243,16941290:260523 -k1,13162:32583029,16941290:0 -) -(1,13163:6630773,17806370:25952256,513147,115847 -k1,13162:8779731,17806370:156008 -k1,13162:10936553,17806370:156008 -k1,13162:12660182,17806370:156008 -k1,13162:13835275,17806370:156008 -k1,13162:16347302,17806370:156008 -k1,13162:20284737,17806370:156008 -k1,13162:21632190,17806370:156008 -(1,13162:21632190,17806370:0,452978,115847 -r1,13210:24452439,17806370:2820249,568825,115847 -k1,13162:21632190,17806370:-2820249 -) -(1,13162:21632190,17806370:2820249,452978,115847 -k1,13162:21632190,17806370:3277 -h1,13162:24449162,17806370:0,411205,112570 -) -k1,13162:24608447,17806370:156008 -k1,13162:25415883,17806370:156008 -k1,13162:27964610,17806370:156008 -k1,13162:28578715,17806370:156008 -k1,13162:30002189,17806370:156008 -k1,13162:30514057,17806370:156008 -k1,13162:32583029,17806370:0 -) -(1,13163:6630773,18671450:25952256,513147,134348 -g1,13162:8197739,18671450 -g1,13162:10051752,18671450 -g1,13162:12964172,18671450 -g1,13162:14395478,18671450 -g1,13162:16092860,18671450 -h1,13162:16889778,18671450:0,0,0 -g1,13162:17089007,18671450 -g1,13162:18235887,18671450 -g1,13162:20552584,18671450 -g1,13162:22574369,18671450 -g1,13162:23188441,18671450 -k1,13163:32583029,18671450:6401559 -g1,13163:32583029,18671450 -) -v1,13165:6630773,19356305:0,393216,0 -(1,13177:6630773,23834246:25952256,4871157,196608 -g1,13177:6630773,23834246 -g1,13177:6630773,23834246 -g1,13177:6434165,23834246 -(1,13177:6434165,23834246:0,4871157,196608 -r1,13210:32779637,23834246:26345472,5067765,196608 -k1,13177:6434165,23834246:-26345472 -) -(1,13177:6434165,23834246:26345472,4871157,196608 -[1,13177:6630773,23834246:25952256,4674549,0 -(1,13167:6630773,19584136:25952256,424439,86428 -(1,13166:6630773,19584136:0,0,0 -g1,13166:6630773,19584136 -g1,13166:6630773,19584136 -g1,13166:6303093,19584136 -(1,13166:6303093,19584136:0,0,0 -) -g1,13166:6630773,19584136 -) -g1,13167:8290543,19584136 -g1,13167:9286405,19584136 -g1,13167:15261577,19584136 -g1,13167:16921347,19584136 -g1,13167:17585255,19584136 -k1,13167:17585255,19584136:0 -h1,13167:18249163,19584136:0,0,0 -k1,13167:32583029,19584136:14333866 -g1,13167:32583029,19584136 -) -(1,13168:6630773,20268991:25952256,424439,86428 -h1,13168:6630773,20268991:0,0,0 -g1,13168:6962727,20268991 -g1,13168:7294681,20268991 -g1,13168:7626635,20268991 -g1,13168:7958589,20268991 -g1,13168:8290543,20268991 -g1,13168:8622497,20268991 -g1,13168:8954451,20268991 -g1,13168:9286405,20268991 -g1,13168:9618359,20268991 -g1,13168:9950313,20268991 -g1,13168:10282267,20268991 -g1,13168:10614221,20268991 -g1,13168:10946175,20268991 -g1,13168:11278129,20268991 -g1,13168:11610083,20268991 -g1,13168:14597668,20268991 -g1,13168:15261576,20268991 -g1,13168:18581116,20268991 -g1,13168:19245024,20268991 -g1,13168:21236748,20268991 -g1,13168:22896518,20268991 -g1,13168:23560426,20268991 -g1,13168:25884104,20268991 -g1,13168:27543874,20268991 -h1,13168:29535598,20268991:0,0,0 -k1,13168:32583029,20268991:3047431 -g1,13168:32583029,20268991 -) -(1,13169:6630773,20953846:25952256,424439,79822 -h1,13169:6630773,20953846:0,0,0 -k1,13169:6630773,20953846:0 -h1,13169:9618359,20953846:0,0,0 -k1,13169:32583029,20953846:22964670 -g1,13169:32583029,20953846 -) -(1,13176:6630773,21769773:25952256,398014,8257 -(1,13171:6630773,21769773:0,0,0 -g1,13171:6630773,21769773 -g1,13171:6630773,21769773 -g1,13171:6303093,21769773 -(1,13171:6303093,21769773:0,0,0 -) -g1,13171:6630773,21769773 -) -g1,13176:7626635,21769773 -g1,13176:7958589,21769773 -g1,13176:8290543,21769773 -g1,13176:8622497,21769773 -g1,13176:8954451,21769773 -g1,13176:9286405,21769773 -g1,13176:9618359,21769773 -g1,13176:9950313,21769773 -g1,13176:10282267,21769773 -g1,13176:10614221,21769773 -g1,13176:10946175,21769773 -g1,13176:11278129,21769773 -g1,13176:11942037,21769773 -g1,13176:12273991,21769773 -g1,13176:12605945,21769773 -g1,13176:12937899,21769773 -g1,13176:13269853,21769773 -g1,13176:13601807,21769773 -g1,13176:13933761,21769773 -g1,13176:14265715,21769773 -g1,13176:14597669,21769773 -g1,13176:15261577,21769773 -g1,13176:15593531,21769773 -g1,13176:15925485,21769773 -g1,13176:16257439,21769773 -g1,13176:16589393,21769773 -g1,13176:16921347,21769773 -g1,13176:17253301,21769773 -g1,13176:17585255,21769773 -g1,13176:17917209,21769773 -g1,13176:18249163,21769773 -h1,13176:18581117,21769773:0,0,0 -k1,13176:32583029,21769773:14001912 -g1,13176:32583029,21769773 -) -(1,13176:6630773,22454628:25952256,407923,9908 -h1,13176:6630773,22454628:0,0,0 -g1,13176:7626635,22454628 -g1,13176:8290543,22454628 -g1,13176:11942036,22454628 -g1,13176:15261575,22454628 -h1,13176:18581114,22454628:0,0,0 -k1,13176:32583029,22454628:14001915 -g1,13176:32583029,22454628 -) -(1,13176:6630773,23139483:25952256,407923,9908 -h1,13176:6630773,23139483:0,0,0 -g1,13176:7626635,23139483 -g1,13176:8290543,23139483 -g1,13176:11942036,23139483 -g1,13176:15261575,23139483 -h1,13176:18581114,23139483:0,0,0 -k1,13176:32583029,23139483:14001915 -g1,13176:32583029,23139483 -) -(1,13176:6630773,23824338:25952256,407923,9908 -h1,13176:6630773,23824338:0,0,0 -g1,13176:7626635,23824338 -g1,13176:8290543,23824338 -g1,13176:11942036,23824338 -g1,13176:15261575,23824338 -h1,13176:18581114,23824338:0,0,0 -k1,13176:32583029,23824338:14001915 -g1,13176:32583029,23824338 -) -] -) -g1,13177:32583029,23834246 -g1,13177:6630773,23834246 -g1,13177:6630773,23834246 -g1,13177:32583029,23834246 -g1,13177:32583029,23834246 -) -h1,13177:6630773,24030854:0,0,0 -v1,13181:6630773,24895934:0,393216,0 -(1,13182:6630773,26167839:25952256,1665121,0 -g1,13182:6630773,26167839 -g1,13182:6237557,26167839 -r1,13210:6368629,26167839:131072,1665121,0 -g1,13182:6567858,26167839 -g1,13182:6764466,26167839 -[1,13182:6764466,26167839:25818563,1665121,0 -(1,13182:6764466,25168411:25818563,665693,196608 -(1,13181:6764466,25168411:0,665693,196608 -r1,13210:7868133,25168411:1103667,862301,196608 -k1,13181:6764466,25168411:-1103667 -) -(1,13181:6764466,25168411:1103667,665693,196608 -) -k1,13181:8126222,25168411:258089 -k1,13181:9444151,25168411:327680 -k1,13181:11908182,25168411:258089 -k1,13181:13185356,25168411:258089 -k1,13181:14939632,25168411:258089 -k1,13181:15813759,25168411:258089 -k1,13181:17090932,25168411:258088 -k1,13181:19319689,25168411:258089 -k1,13181:23514526,25168411:258089 -k1,13181:25627939,25168411:258089 -k1,13181:29900108,25168411:258089 -k1,13181:30514057,25168411:258089 -k1,13181:32583029,25168411:0 -) -(1,13182:6764466,26033491:25818563,505283,134348 -g1,13181:8331432,26033491 -g1,13181:9427194,26033491 -g1,13181:12339614,26033491 -g1,13181:13730288,26033491 -g1,13181:15363445,26033491 -g1,13181:18993484,26033491 -g1,13181:20211798,26033491 -k1,13182:32583029,26033491:8507884 -g1,13182:32583029,26033491 -) -] -g1,13182:32583029,26167839 -) -h1,13182:6630773,26167839:0,0,0 -(1,13185:6630773,27032919:25952256,513147,115847 -h1,13184:6630773,27032919:983040,0,0 -k1,13184:9673148,27032919:284620 -(1,13184:9673148,27032919:0,452978,115847 -r1,13210:11438261,27032919:1765113,568825,115847 -k1,13184:9673148,27032919:-1765113 -) -(1,13184:9673148,27032919:1765113,452978,115847 -k1,13184:9673148,27032919:3277 -h1,13184:11434984,27032919:0,411205,112570 -) -k1,13184:11722881,27032919:284620 -k1,13184:14348447,27032919:284620 -k1,13184:15403770,27032919:284620 -k1,13184:18404202,27032919:284620 -k1,13184:19348113,27032919:284619 -$1,13184:19348113,27032919 -$1,13184:19793102,27032919 -k1,13184:20251392,27032919:284620 -k1,13184:21555097,27032919:284620 -k1,13184:25320334,27032919:284620 -k1,13184:29059357,27032919:284620 -(1,13184:29059357,27032919:0,452978,115847 -r1,13210:32583029,27032919:3523672,568825,115847 -k1,13184:29059357,27032919:-3523672 -) -(1,13184:29059357,27032919:3523672,452978,115847 -k1,13184:29059357,27032919:3277 -h1,13184:32579752,27032919:0,411205,112570 -) -k1,13184:32583029,27032919:0 -) -(1,13185:6630773,27897999:25952256,513147,126483 -k1,13184:10138915,27897999:216269 -k1,13184:10971221,27897999:216268 -k1,13184:14027165,27897999:216269 -k1,13184:15262519,27897999:216269 -$1,13184:15262519,27897999 -$1,13184:15582990,27897999 -k1,13184:17866264,27897999:216268 -$1,13184:17866264,27897999 -$1,13184:18334191,27897999 -k1,13184:20617466,27897999:216269 -k1,13184:22025179,27897999:216268 -k1,13184:25678811,27897999:216269 -k1,13184:28321878,27897999:216269 -k1,13184:29485797,27897999:216268 -k1,13184:30721151,27897999:216269 -k1,13185:32583029,27897999:0 -) -(1,13185:6630773,28763079:25952256,426639,7863 -k1,13185:32583028,28763079:24939724 -g1,13185:32583028,28763079 -) -v1,13187:6630773,29447934:0,393216,0 -(1,13204:6630773,37356756:25952256,8302038,196608 -g1,13204:6630773,37356756 -g1,13204:6630773,37356756 -g1,13204:6434165,37356756 -(1,13204:6434165,37356756:0,8302038,196608 -r1,13210:32779637,37356756:26345472,8498646,196608 -k1,13204:6434165,37356756:-26345472 -) -(1,13204:6434165,37356756:26345472,8302038,196608 -[1,13204:6630773,37356756:25952256,8105430,0 -(1,13189:6630773,29682371:25952256,431045,106246 -(1,13188:6630773,29682371:0,0,0 -g1,13188:6630773,29682371 -g1,13188:6630773,29682371 -g1,13188:6303093,29682371 -(1,13188:6303093,29682371:0,0,0 -) -g1,13188:6630773,29682371 -) -k1,13189:6630773,29682371:0 -g1,13189:10282266,29682371 -g1,13189:10946174,29682371 -g1,13189:14929622,29682371 -g1,13189:15593530,29682371 -g1,13189:16257438,29682371 -h1,13189:19576978,29682371:0,0,0 -k1,13189:32583029,29682371:13006051 -g1,13189:32583029,29682371 -) -(1,13203:6630773,30498298:25952256,398014,0 -(1,13191:6630773,30498298:0,0,0 -g1,13191:6630773,30498298 -g1,13191:6630773,30498298 -g1,13191:6303093,30498298 -(1,13191:6303093,30498298:0,0,0 -) -g1,13191:6630773,30498298 -) -h1,13203:7294681,30498298:0,0,0 -k1,13203:32583029,30498298:25288348 -g1,13203:32583029,30498298 -) -(1,13203:6630773,31183153:25952256,424439,106246 -h1,13203:6630773,31183153:0,0,0 -g1,13203:7626635,31183153 -g1,13203:7958589,31183153 -g1,13203:11278129,31183153 -g1,13203:16257439,31183153 -h1,13203:19908932,31183153:0,0,0 -k1,13203:32583029,31183153:12674097 -g1,13203:32583029,31183153 -) -(1,13203:6630773,31868008:25952256,398014,0 -h1,13203:6630773,31868008:0,0,0 -h1,13203:7294681,31868008:0,0,0 -k1,13203:32583029,31868008:25288348 -g1,13203:32583029,31868008 -) -(1,13203:6630773,32552863:25952256,431045,106246 -h1,13203:6630773,32552863:0,0,0 -g1,13203:7626635,32552863 -g1,13203:9618359,32552863 -g1,13203:9950313,32552863 -g1,13203:13601806,32552863 -g1,13203:14929622,32552863 -h1,13203:17917207,32552863:0,0,0 -k1,13203:32583029,32552863:14665822 -g1,13203:32583029,32552863 -) -(1,13203:6630773,33237718:25952256,431045,106246 -h1,13203:6630773,33237718:0,0,0 -g1,13203:7626635,33237718 -g1,13203:8290543,33237718 -g1,13203:8954451,33237718 -g1,13203:11278129,33237718 -g1,13203:12273991,33237718 -g1,13203:12937899,33237718 -g1,13203:14265715,33237718 -g1,13203:16921347,33237718 -g1,13203:17585255,33237718 -k1,13203:17585255,33237718:0 -h1,13203:20240887,33237718:0,0,0 -k1,13203:32583029,33237718:12342142 -g1,13203:32583029,33237718 -) -(1,13203:6630773,33922573:25952256,424439,106246 -h1,13203:6630773,33922573:0,0,0 -g1,13203:7626635,33922573 -g1,13203:11610082,33922573 -g1,13203:15593529,33922573 -g1,13203:17253299,33922573 -g1,13203:21236746,33922573 -g1,13203:22232608,33922573 -g1,13203:23560424,33922573 -g1,13203:25552148,33922573 -g1,13203:26548010,33922573 -h1,13203:26879964,33922573:0,0,0 -k1,13203:32583029,33922573:5703065 -g1,13203:32583029,33922573 -) -(1,13203:6630773,34607428:25952256,431045,106246 -h1,13203:6630773,34607428:0,0,0 -g1,13203:7626635,34607428 -g1,13203:8622497,34607428 -g1,13203:11278129,34607428 -g1,13203:14929622,34607428 -h1,13203:17917207,34607428:0,0,0 -k1,13203:32583029,34607428:14665822 -g1,13203:32583029,34607428 -) -(1,13203:6630773,35292283:25952256,407923,9908 -h1,13203:6630773,35292283:0,0,0 -g1,13203:7626635,35292283 -g1,13203:7958589,35292283 -g1,13203:11278128,35292283 -h1,13203:14265713,35292283:0,0,0 -k1,13203:32583029,35292283:18317316 -g1,13203:32583029,35292283 -) -(1,13203:6630773,35977138:25952256,424439,106246 -h1,13203:6630773,35977138:0,0,0 -g1,13203:7626635,35977138 -g1,13203:9950313,35977138 -h1,13203:13269852,35977138:0,0,0 -k1,13203:32583028,35977138:19313176 -g1,13203:32583028,35977138 -) -(1,13203:6630773,36661993:25952256,398014,6605 -h1,13203:6630773,36661993:0,0,0 -g1,13203:7626635,36661993 -g1,13203:7958589,36661993 -g1,13203:8290543,36661993 -g1,13203:8622497,36661993 -g1,13203:8954451,36661993 -g1,13203:9286405,36661993 -g1,13203:9618359,36661993 -h1,13203:10614221,36661993:0,0,0 -k1,13203:32583029,36661993:21968808 -g1,13203:32583029,36661993 -) -(1,13203:6630773,37346848:25952256,407923,9908 -h1,13203:6630773,37346848:0,0,0 -g1,13203:7626635,37346848 -h1,13203:10614220,37346848:0,0,0 -k1,13203:32583028,37346848:21968808 -g1,13203:32583028,37346848 -) -] -) -g1,13204:32583029,37356756 -g1,13204:6630773,37356756 -g1,13204:6630773,37356756 -g1,13204:32583029,37356756 -g1,13204:32583029,37356756 -) -h1,13204:6630773,37553364:0,0,0 -(1,13208:6630773,38418444:25952256,505283,134348 -h1,13207:6630773,38418444:983040,0,0 -k1,13207:9843093,38418444:242228 -k1,13207:10953673,38418444:242228 -k1,13207:13401188,38418444:242228 -k1,13207:14815855,38418444:242228 -k1,13207:17678212,38418444:242228 -k1,13207:20228618,38418444:242228 -k1,13207:21157008,38418444:242228 -k1,13207:24975536,38418444:242228 -k1,13207:26374474,38418444:242228 -k1,13207:27268130,38418444:242228 -k1,13207:30791090,38418444:242228 -(1,13207:30791090,38418444:0,414482,115847 -r1,13210:31149356,38418444:358266,530329,115847 -k1,13207:30791090,38418444:-358266 -) -(1,13207:30791090,38418444:358266,414482,115847 -k1,13207:30791090,38418444:3277 -h1,13207:31146079,38418444:0,411205,112570 -) -k1,13207:31391584,38418444:242228 -k1,13207:32583029,38418444:0 -) -(1,13208:6630773,39283524:25952256,513147,134348 -k1,13207:7944842,39283524:157359 -k1,13207:8753628,39283524:157358 -k1,13207:12191719,39283524:157359 -(1,13207:12191719,39283524:0,414482,115847 -r1,13210:12549985,39283524:358266,530329,115847 -k1,13207:12191719,39283524:-358266 -) -(1,13207:12191719,39283524:358266,414482,115847 -k1,13207:12191719,39283524:3277 -h1,13207:12546708,39283524:0,411205,112570 -) -k1,13207:12881013,39283524:157358 -k1,13207:17296902,39283524:157359 -k1,13207:18322612,39283524:157358 -k1,13207:19584253,39283524:157359 -k1,13207:21178816,39283524:157358 -k1,13207:21692035,39283524:157359 -k1,13207:23238756,39283524:157358 -k1,13207:25272411,39283524:157359 -k1,13207:26115931,39283524:157358 -k1,13207:27043993,39283524:157359 -k1,13207:30273679,39283524:157358 -k1,13207:31082466,39283524:157359 -(1,13207:31082466,39283524:0,452978,115847 -r1,13210:32495867,39283524:1413401,568825,115847 -k1,13207:31082466,39283524:-1413401 -) -(1,13207:31082466,39283524:1413401,452978,115847 -k1,13207:31082466,39283524:3277 -h1,13207:32492590,39283524:0,411205,112570 -) -k1,13207:32583029,39283524:0 -) -(1,13208:6630773,40148604:25952256,513147,134348 -k1,13207:7955235,40148604:133017 -k1,13207:8444113,40148604:133018 -k1,13207:10490126,40148604:133017 -k1,13207:13171183,40148604:133017 -k1,13207:13955629,40148604:133018 -(1,13207:13955629,40148604:0,459977,115847 -r1,13210:16424166,40148604:2468537,575824,115847 -k1,13207:13955629,40148604:-2468537 -) -(1,13207:13955629,40148604:2468537,459977,115847 -k1,13207:13955629,40148604:3277 -h1,13207:16420889,40148604:0,411205,112570 -) -k1,13207:16730853,40148604:133017 -k1,13207:18060557,40148604:133017 -k1,13207:21265903,40148604:133018 -k1,13207:23604207,40148604:133017 -k1,13207:24388652,40148604:133017 -(1,13207:24388652,40148604:0,459977,115847 -r1,13210:26857189,40148604:2468537,575824,115847 -k1,13207:24388652,40148604:-2468537 -) -(1,13207:24388652,40148604:2468537,459977,115847 -k1,13207:24388652,40148604:3277 -h1,13207:26853912,40148604:0,411205,112570 -) -k1,13207:26990207,40148604:133018 -k1,13207:30697558,40148604:133017 -k1,13207:32583029,40148604:0 -) -(1,13208:6630773,41013684:25952256,513147,126483 -k1,13207:9679148,41013684:224429 -k1,13207:11471198,41013684:224429 -(1,13207:11471198,41013684:0,452978,115847 -r1,13210:12884599,41013684:1413401,568825,115847 -k1,13207:11471198,41013684:-1413401 -) -(1,13207:11471198,41013684:1413401,452978,115847 -k1,13207:11471198,41013684:3277 -h1,13207:12881322,41013684:0,411205,112570 -) -k1,13207:13109028,41013684:224429 -k1,13207:14325016,41013684:224428 -k1,13207:16236342,41013684:224429 -k1,13207:17652216,41013684:224429 -k1,13207:18492683,41013684:224429 -k1,13207:20602583,41013684:224429 -k1,13207:22236036,41013684:224429 -k1,13207:24665752,41013684:224429 -k1,13207:25909265,41013684:224428 -k1,13207:29389523,41013684:224429 -k1,13207:30265380,41013684:224429 -k1,13207:31508894,41013684:224429 -k1,13207:32583029,41013684:0 -) -(1,13208:6630773,41878764:25952256,513147,134348 -k1,13207:7519175,41878764:229110 -k1,13207:8767371,41878764:229111 -k1,13207:10427787,41878764:229110 -(1,13207:10634881,41878764:0,414482,115847 -r1,13210:10993147,41878764:358266,530329,115847 -k1,13207:10634881,41878764:-358266 -) -(1,13207:10634881,41878764:358266,414482,115847 -g1,13207:10989870,41878764 -h1,13207:10989870,41878764:0,411205,112570 -) -k1,13207:11429351,41878764:229110 -k1,13207:12650022,41878764:229111 -k1,13207:15752886,41878764:229110 -k1,13207:18997308,41878764:229111 -k1,13207:20417863,41878764:229110 -k1,13207:22390886,41878764:229110 -k1,13207:23271425,41878764:229111 -k1,13207:24519620,41878764:229110 -k1,13207:26284239,41878764:229110 -k1,13207:27504910,41878764:229111 -k1,13207:31914562,41878764:229110 -k1,13207:32583029,41878764:0 -) -(1,13208:6630773,42743844:25952256,513147,126483 -k1,13207:10758012,42743844:187870 -k1,13207:13961193,42743844:187870 -k1,13207:14776897,42743844:187869 -k1,13207:15983852,42743844:187870 -k1,13207:17538803,42743844:187870 -k1,13207:18385965,42743844:187870 -k1,13207:22228122,42743844:187870 -k1,13207:23225362,42743844:187870 -k1,13207:27152715,42743844:187869 -k1,13207:27872082,42743844:187870 -k1,13207:29803865,42743844:187870 -k1,13207:30801105,42743844:187870 -k1,13207:32583029,42743844:0 -) -(1,13208:6630773,43608924:25952256,513147,134348 -k1,13207:8058584,43608924:236366 -k1,13207:10239404,43608924:236367 -k1,13207:11667215,43608924:236366 -k1,13207:13370277,43608924:236366 -k1,13207:16448285,43608924:236367 -k1,13207:18873554,43608924:236366 -k1,13207:19761348,43608924:236366 -k1,13207:21016800,43608924:236367 -k1,13207:22788675,43608924:236366 -k1,13207:23684333,43608924:236366 -k1,13207:24939785,43608924:236367 -k1,13207:26781128,43608924:236366 -k1,13207:28214181,43608924:236366 -k1,13207:29946735,43608924:236367 -k1,13207:32051532,43608924:236366 -k1,13207:32583029,43608924:0 -) -(1,13208:6630773,44474004:25952256,513147,134348 -k1,13207:10191519,44474004:255765 -k1,13207:11098712,44474004:255765 -k1,13207:12638983,44474004:255765 -k1,13207:14923743,44474004:255765 -k1,13207:16229395,44474004:255765 -k1,13207:18763847,44474004:255765 -h1,13207:20132894,44474004:0,0,0 -k1,13207:20388659,44474004:255765 -k1,13207:21453793,44474004:255764 -k1,13207:23207711,44474004:255765 -h1,13207:24403088,44474004:0,0,0 -k1,13207:24658853,44474004:255765 -k1,13207:25862269,44474004:255765 -k1,13207:28235502,44474004:255765 -k1,13207:29300637,44474004:255765 -k1,13207:30575487,44474004:255765 -k1,13207:31923737,44474004:255765 -k1,13207:32583029,44474004:0 -) -] -(1,13210:32583029,45706769:0,0,0 -g1,13210:32583029,45706769 -) -) -] -(1,13210:6630773,47279633:25952256,0,0 -h1,13210:6630773,47279633:25952256,0,0 -) -] -(1,13210:4262630,4025873:0,0,0 -[1,13210:-473656,4025873:0,0,0 -(1,13210:-473656,-710413:0,0,0 -(1,13210:-473656,-710413:0,0,0 -g1,13210:-473656,-710413 -) -g1,13210:-473656,-710413 +g1,13208:6630773,4812305 +k1,13208:19575446,4812305:11749296 +g1,13208:21198117,4812305 +g1,13208:21985204,4812305 +g1,13208:24539797,4812305 +g1,13208:25949476,4812305 +g1,13208:28728857,4812305 +g1,13208:29852144,4812305 +) +) +] +[1,13208:6630773,45706769:25952256,40108032,0 +(1,13208:6630773,45706769:25952256,40108032,0 +(1,13208:6630773,45706769:0,0,0 +g1,13208:6630773,45706769 +) +[1,13208:6630773,45706769:25952256,40108032,0 +v1,13135:6630773,6254097:0,393216,0 +(1,13142:6630773,7384283:25952256,1523402,196608 +g1,13142:6630773,7384283 +g1,13142:6630773,7384283 +g1,13142:6434165,7384283 +(1,13142:6434165,7384283:0,1523402,196608 +r1,13208:32779637,7384283:26345472,1720010,196608 +k1,13142:6434165,7384283:-26345472 +) +(1,13142:6434165,7384283:26345472,1523402,196608 +[1,13142:6630773,7384283:25952256,1326794,0 +(1,13137:6630773,6488534:25952256,431045,106246 +(1,13136:6630773,6488534:0,0,0 +g1,13136:6630773,6488534 +g1,13136:6630773,6488534 +g1,13136:6303093,6488534 +(1,13136:6303093,6488534:0,0,0 +) +g1,13136:6630773,6488534 +) +k1,13137:6630773,6488534:0 +g1,13137:8622497,6488534 +g1,13137:9286405,6488534 +g1,13137:13269853,6488534 +g1,13137:13933761,6488534 +g1,13137:14597669,6488534 +h1,13137:17917209,6488534:0,0,0 +k1,13137:32583029,6488534:14665820 +g1,13137:32583029,6488534 +) +(1,13141:6630773,7304461:25952256,424439,79822 +(1,13139:6630773,7304461:0,0,0 +g1,13139:6630773,7304461 +g1,13139:6630773,7304461 +g1,13139:6303093,7304461 +(1,13139:6303093,7304461:0,0,0 +) +g1,13139:6630773,7304461 +) +g1,13141:7626635,7304461 +g1,13141:8954451,7304461 +h1,13141:11942036,7304461:0,0,0 +k1,13141:32583028,7304461:20640992 +g1,13141:32583028,7304461 +) +] +) +g1,13142:32583029,7384283 +g1,13142:6630773,7384283 +g1,13142:6630773,7384283 +g1,13142:32583029,7384283 +g1,13142:32583029,7384283 +) +h1,13142:6630773,7580891:0,0,0 +(1,13146:6630773,8445971:25952256,513147,134348 +h1,13145:6630773,8445971:983040,0,0 +k1,13145:8251929,8445971:168223 +k1,13145:8951648,8445971:168222 +k1,13145:10405687,8445971:168223 +k1,13145:13203870,8445971:168223 +k1,13145:14023520,8445971:168222 +k1,13145:15628948,8445971:168223 +k1,13145:16153031,8445971:168223 +k1,13145:17710616,8445971:168222 +k1,13145:19755135,8445971:168223 +k1,13145:20813337,8445971:168223 +k1,13145:21337420,8445971:168223 +k1,13145:23800057,8445971:168222 +k1,13145:24654442,8445971:168223 +k1,13145:25841750,8445971:168223 +k1,13145:27385573,8445971:168222 +k1,13145:30799794,8445971:168223 +k1,13145:32583029,8445971:0 +) +(1,13146:6630773,9311051:25952256,513147,126483 +k1,13145:7928743,9311051:278885 +k1,13145:9596992,9311051:278886 +k1,13145:11752173,9311051:278885 +k1,13145:12921037,9311051:278885 +k1,13145:15494338,9311051:278886 +k1,13145:18475272,9311051:278885 +k1,13145:20129759,9311051:278886 +k1,13145:21581083,9311051:278885 +k1,13145:24746829,9311051:278885 +k1,13145:26044800,9311051:278886 +k1,13145:29102412,9311051:278885 +k1,13145:32583029,9311051:0 +) +(1,13146:6630773,10176131:25952256,513147,134348 +k1,13145:9568807,10176131:222222 +k1,13145:10322525,10176131:222221 +k1,13145:13849728,10176131:222222 +k1,13145:14723377,10176131:222221 +k1,13145:16230105,10176131:222222 +k1,13145:17111618,10176131:222221 +k1,13145:19761294,10176131:222222 +k1,13145:21002600,10176131:222221 +k1,13145:22397261,10176131:222222 +k1,13145:25332673,10176131:222221 +k1,13145:29314040,10176131:222222 +k1,13145:30222423,10176131:222221 +k1,13145:32583029,10176131:0 +) +(1,13146:6630773,11041211:25952256,513147,134348 +g1,13145:8005062,11041211 +g1,13145:10163817,11041211 +g1,13145:13141773,11041211 +g1,13145:13872499,11041211 +g1,13145:14427588,11041211 +$1,13145:14427588,11041211 +g1,13145:14971695,11041211 +g1,13145:15685540,11041211 +$1,13145:16083999,11041211 +g1,13145:16283228,11041211 +(1,13145:16283228,11041211:0,452978,115847 +r1,13208:18400053,11041211:2116825,568825,115847 +k1,13145:16283228,11041211:-2116825 +) +(1,13145:16283228,11041211:2116825,452978,115847 +k1,13145:16283228,11041211:3277 +h1,13145:18396776,11041211:0,411205,112570 +) +g1,13145:18599282,11041211 +g1,13145:21125694,11041211 +g1,13145:21984215,11041211 +g1,13145:22539304,11041211 +g1,13145:24716410,11041211 +g1,13145:25574931,11041211 +g1,13145:27787426,11041211 +k1,13146:32583029,11041211:3586464 +g1,13146:32583029,11041211 +) +v1,13148:6630773,11726066:0,393216,0 +(1,13157:6630773,14149442:25952256,2816592,196608 +g1,13157:6630773,14149442 +g1,13157:6630773,14149442 +g1,13157:6434165,14149442 +(1,13157:6434165,14149442:0,2816592,196608 +r1,13208:32779637,14149442:26345472,3013200,196608 +k1,13157:6434165,14149442:-26345472 +) +(1,13157:6434165,14149442:26345472,2816592,196608 +[1,13157:6630773,14149442:25952256,2619984,0 +(1,13150:6630773,11953897:25952256,424439,79822 +(1,13149:6630773,11953897:0,0,0 +g1,13149:6630773,11953897 +g1,13149:6630773,11953897 +g1,13149:6303093,11953897 +(1,13149:6303093,11953897:0,0,0 +) +g1,13149:6630773,11953897 +) +k1,13150:6630773,11953897:0 +h1,13150:9618359,11953897:0,0,0 +k1,13150:32583029,11953897:22964670 +g1,13150:32583029,11953897 +) +(1,13156:6630773,12769824:25952256,424439,106246 +(1,13152:6630773,12769824:0,0,0 +g1,13152:6630773,12769824 +g1,13152:6630773,12769824 +g1,13152:6303093,12769824 +(1,13152:6303093,12769824:0,0,0 +) +g1,13152:6630773,12769824 +) +g1,13156:7626635,12769824 +g1,13156:7958589,12769824 +g1,13156:8290543,12769824 +g1,13156:8622497,12769824 +g1,13156:8954451,12769824 +g1,13156:9286405,12769824 +g1,13156:9618359,12769824 +g1,13156:9950313,12769824 +g1,13156:10282267,12769824 +g1,13156:10614221,12769824 +g1,13156:10946175,12769824 +g1,13156:12937899,12769824 +g1,13156:13269853,12769824 +g1,13156:13601807,12769824 +g1,13156:13933761,12769824 +g1,13156:14265715,12769824 +g1,13156:14597669,12769824 +h1,13156:15925485,12769824:0,0,0 +k1,13156:32583029,12769824:16657544 +g1,13156:32583029,12769824 +) +(1,13156:6630773,13454679:25952256,424439,106246 +h1,13156:6630773,13454679:0,0,0 +g1,13156:7626635,13454679 +g1,13156:9618359,13454679 +g1,13156:12937898,13454679 +h1,13156:15925483,13454679:0,0,0 +k1,13156:32583029,13454679:16657546 +g1,13156:32583029,13454679 +) +(1,13156:6630773,14139534:25952256,424439,9908 +h1,13156:6630773,14139534:0,0,0 +g1,13156:7626635,14139534 +g1,13156:9286405,14139534 +g1,13156:9618359,14139534 +g1,13156:12937898,14139534 +h1,13156:15925483,14139534:0,0,0 +k1,13156:32583029,14139534:16657546 +g1,13156:32583029,14139534 +) +] +) +g1,13157:32583029,14149442 +g1,13157:6630773,14149442 +g1,13157:6630773,14149442 +g1,13157:32583029,14149442 +g1,13157:32583029,14149442 +) +h1,13157:6630773,14346050:0,0,0 +(1,13161:6630773,15211130:25952256,513147,102891 +h1,13160:6630773,15211130:983040,0,0 +k1,13160:9650618,15211130:253570 +k1,13160:10923272,15211130:253569 +k1,13160:12566205,15211130:253570 +k1,13160:14696071,15211130:253570 +k1,13160:15632525,15211130:253569 +k1,13160:17973417,15211130:253570 +k1,13160:20929036,15211130:253570 +k1,13160:22832802,15211130:253569 +k1,13160:24528819,15211130:253570 +k1,13160:25954828,15211130:253570 +k1,13160:28828526,15211130:253569 +k1,13160:31563944,15211130:253570 +k1,13160:32583029,15211130:0 +) +(1,13161:6630773,16076210:25952256,513147,126483 +k1,13160:9616415,16076210:206915 +k1,13160:11503673,16076210:206915 +k1,13160:12242085,16076210:206915 +k1,13160:12804860,16076210:206915 +k1,13160:15099097,16076210:206915 +k1,13160:15965303,16076210:206914 +k1,13160:19218331,16076210:206915 +k1,13160:20084538,16076210:206915 +k1,13160:22957458,16076210:206915 +k1,13160:26975292,16076210:206915 +k1,13160:29817410,16076210:206915 +k1,13160:32583029,16076210:0 +) +(1,13161:6630773,16941290:25952256,513147,134348 +k1,13160:7814698,16941290:260523 +k1,13160:9473103,16941290:260522 +k1,13160:10826111,16941290:260523 +(1,13160:10826111,16941290:0,452978,115847 +r1,13208:13294648,16941290:2468537,568825,115847 +k1,13160:10826111,16941290:-2468537 +) +(1,13160:10826111,16941290:2468537,452978,115847 +k1,13160:10826111,16941290:3277 +h1,13160:13291371,16941290:0,411205,112570 +) +k1,13160:13555170,16941290:260522 +k1,13160:16905716,16941290:260523 +k1,13160:19021562,16941290:260522 +k1,13160:19933513,16941290:260523 +k1,13160:22123416,16941290:260523 +k1,13160:22739798,16941290:260522 +k1,13160:24389029,16941290:260523 +k1,13160:26627428,16941290:260522 +k1,13160:27547243,16941290:260523 +k1,13160:32583029,16941290:0 +) +(1,13161:6630773,17806370:25952256,513147,115847 +k1,13160:8779731,17806370:156008 +k1,13160:10936553,17806370:156008 +k1,13160:12660182,17806370:156008 +k1,13160:13835275,17806370:156008 +k1,13160:16347302,17806370:156008 +k1,13160:20284737,17806370:156008 +k1,13160:21632190,17806370:156008 +(1,13160:21632190,17806370:0,452978,115847 +r1,13208:24452439,17806370:2820249,568825,115847 +k1,13160:21632190,17806370:-2820249 +) +(1,13160:21632190,17806370:2820249,452978,115847 +k1,13160:21632190,17806370:3277 +h1,13160:24449162,17806370:0,411205,112570 +) +k1,13160:24608447,17806370:156008 +k1,13160:25415883,17806370:156008 +k1,13160:27964610,17806370:156008 +k1,13160:28578715,17806370:156008 +k1,13160:30002189,17806370:156008 +k1,13160:30514057,17806370:156008 +k1,13160:32583029,17806370:0 +) +(1,13161:6630773,18671450:25952256,513147,134348 +g1,13160:8197739,18671450 +g1,13160:10051752,18671450 +g1,13160:12964172,18671450 +g1,13160:14395478,18671450 +g1,13160:16092860,18671450 +h1,13160:16889778,18671450:0,0,0 +g1,13160:17089007,18671450 +g1,13160:18235887,18671450 +g1,13160:20552584,18671450 +g1,13160:22574369,18671450 +g1,13160:23188441,18671450 +k1,13161:32583029,18671450:6401559 +g1,13161:32583029,18671450 +) +v1,13163:6630773,19356305:0,393216,0 +(1,13175:6630773,23834246:25952256,4871157,196608 +g1,13175:6630773,23834246 +g1,13175:6630773,23834246 +g1,13175:6434165,23834246 +(1,13175:6434165,23834246:0,4871157,196608 +r1,13208:32779637,23834246:26345472,5067765,196608 +k1,13175:6434165,23834246:-26345472 +) +(1,13175:6434165,23834246:26345472,4871157,196608 +[1,13175:6630773,23834246:25952256,4674549,0 +(1,13165:6630773,19584136:25952256,424439,86428 +(1,13164:6630773,19584136:0,0,0 +g1,13164:6630773,19584136 +g1,13164:6630773,19584136 +g1,13164:6303093,19584136 +(1,13164:6303093,19584136:0,0,0 +) +g1,13164:6630773,19584136 +) +g1,13165:8290543,19584136 +g1,13165:9286405,19584136 +g1,13165:15261577,19584136 +g1,13165:16921347,19584136 +g1,13165:17585255,19584136 +k1,13165:17585255,19584136:0 +h1,13165:18249163,19584136:0,0,0 +k1,13165:32583029,19584136:14333866 +g1,13165:32583029,19584136 +) +(1,13166:6630773,20268991:25952256,424439,86428 +h1,13166:6630773,20268991:0,0,0 +g1,13166:6962727,20268991 +g1,13166:7294681,20268991 +g1,13166:7626635,20268991 +g1,13166:7958589,20268991 +g1,13166:8290543,20268991 +g1,13166:8622497,20268991 +g1,13166:8954451,20268991 +g1,13166:9286405,20268991 +g1,13166:9618359,20268991 +g1,13166:9950313,20268991 +g1,13166:10282267,20268991 +g1,13166:10614221,20268991 +g1,13166:10946175,20268991 +g1,13166:11278129,20268991 +g1,13166:11610083,20268991 +g1,13166:14597668,20268991 +g1,13166:15261576,20268991 +g1,13166:18581116,20268991 +g1,13166:19245024,20268991 +g1,13166:21236748,20268991 +g1,13166:22896518,20268991 +g1,13166:23560426,20268991 +g1,13166:25884104,20268991 +g1,13166:27543874,20268991 +h1,13166:29535598,20268991:0,0,0 +k1,13166:32583029,20268991:3047431 +g1,13166:32583029,20268991 +) +(1,13167:6630773,20953846:25952256,424439,79822 +h1,13167:6630773,20953846:0,0,0 +k1,13167:6630773,20953846:0 +h1,13167:9618359,20953846:0,0,0 +k1,13167:32583029,20953846:22964670 +g1,13167:32583029,20953846 +) +(1,13174:6630773,21769773:25952256,398014,8257 +(1,13169:6630773,21769773:0,0,0 +g1,13169:6630773,21769773 +g1,13169:6630773,21769773 +g1,13169:6303093,21769773 +(1,13169:6303093,21769773:0,0,0 +) +g1,13169:6630773,21769773 +) +g1,13174:7626635,21769773 +g1,13174:7958589,21769773 +g1,13174:8290543,21769773 +g1,13174:8622497,21769773 +g1,13174:8954451,21769773 +g1,13174:9286405,21769773 +g1,13174:9618359,21769773 +g1,13174:9950313,21769773 +g1,13174:10282267,21769773 +g1,13174:10614221,21769773 +g1,13174:10946175,21769773 +g1,13174:11278129,21769773 +g1,13174:11942037,21769773 +g1,13174:12273991,21769773 +g1,13174:12605945,21769773 +g1,13174:12937899,21769773 +g1,13174:13269853,21769773 +g1,13174:13601807,21769773 +g1,13174:13933761,21769773 +g1,13174:14265715,21769773 +g1,13174:14597669,21769773 +g1,13174:15261577,21769773 +g1,13174:15593531,21769773 +g1,13174:15925485,21769773 +g1,13174:16257439,21769773 +g1,13174:16589393,21769773 +g1,13174:16921347,21769773 +g1,13174:17253301,21769773 +g1,13174:17585255,21769773 +g1,13174:17917209,21769773 +g1,13174:18249163,21769773 +h1,13174:18581117,21769773:0,0,0 +k1,13174:32583029,21769773:14001912 +g1,13174:32583029,21769773 +) +(1,13174:6630773,22454628:25952256,407923,9908 +h1,13174:6630773,22454628:0,0,0 +g1,13174:7626635,22454628 +g1,13174:8290543,22454628 +g1,13174:11942036,22454628 +g1,13174:15261575,22454628 +h1,13174:18581114,22454628:0,0,0 +k1,13174:32583029,22454628:14001915 +g1,13174:32583029,22454628 +) +(1,13174:6630773,23139483:25952256,407923,9908 +h1,13174:6630773,23139483:0,0,0 +g1,13174:7626635,23139483 +g1,13174:8290543,23139483 +g1,13174:11942036,23139483 +g1,13174:15261575,23139483 +h1,13174:18581114,23139483:0,0,0 +k1,13174:32583029,23139483:14001915 +g1,13174:32583029,23139483 +) +(1,13174:6630773,23824338:25952256,407923,9908 +h1,13174:6630773,23824338:0,0,0 +g1,13174:7626635,23824338 +g1,13174:8290543,23824338 +g1,13174:11942036,23824338 +g1,13174:15261575,23824338 +h1,13174:18581114,23824338:0,0,0 +k1,13174:32583029,23824338:14001915 +g1,13174:32583029,23824338 +) +] +) +g1,13175:32583029,23834246 +g1,13175:6630773,23834246 +g1,13175:6630773,23834246 +g1,13175:32583029,23834246 +g1,13175:32583029,23834246 +) +h1,13175:6630773,24030854:0,0,0 +v1,13179:6630773,24895934:0,393216,0 +(1,13180:6630773,26167839:25952256,1665121,0 +g1,13180:6630773,26167839 +g1,13180:6237557,26167839 +r1,13208:6368629,26167839:131072,1665121,0 +g1,13180:6567858,26167839 +g1,13180:6764466,26167839 +[1,13180:6764466,26167839:25818563,1665121,0 +(1,13180:6764466,25168411:25818563,665693,196608 +(1,13179:6764466,25168411:0,665693,196608 +r1,13208:7868133,25168411:1103667,862301,196608 +k1,13179:6764466,25168411:-1103667 +) +(1,13179:6764466,25168411:1103667,665693,196608 +) +k1,13179:8126222,25168411:258089 +k1,13179:9444151,25168411:327680 +k1,13179:11908182,25168411:258089 +k1,13179:13185356,25168411:258089 +k1,13179:14939632,25168411:258089 +k1,13179:15813759,25168411:258089 +k1,13179:17090932,25168411:258088 +k1,13179:19319689,25168411:258089 +k1,13179:23514526,25168411:258089 +k1,13179:25627939,25168411:258089 +k1,13179:29900108,25168411:258089 +k1,13179:30514057,25168411:258089 +k1,13179:32583029,25168411:0 +) +(1,13180:6764466,26033491:25818563,505283,134348 +g1,13179:8331432,26033491 +g1,13179:9427194,26033491 +g1,13179:12339614,26033491 +g1,13179:13730288,26033491 +g1,13179:15363445,26033491 +g1,13179:18993484,26033491 +g1,13179:20211798,26033491 +k1,13180:32583029,26033491:8507884 +g1,13180:32583029,26033491 +) +] +g1,13180:32583029,26167839 +) +h1,13180:6630773,26167839:0,0,0 +(1,13183:6630773,27032919:25952256,513147,115847 +h1,13182:6630773,27032919:983040,0,0 +k1,13182:9673148,27032919:284620 +(1,13182:9673148,27032919:0,452978,115847 +r1,13208:11438261,27032919:1765113,568825,115847 +k1,13182:9673148,27032919:-1765113 +) +(1,13182:9673148,27032919:1765113,452978,115847 +k1,13182:9673148,27032919:3277 +h1,13182:11434984,27032919:0,411205,112570 +) +k1,13182:11722881,27032919:284620 +k1,13182:14348447,27032919:284620 +k1,13182:15403770,27032919:284620 +k1,13182:18404202,27032919:284620 +k1,13182:19348113,27032919:284619 +$1,13182:19348113,27032919 +$1,13182:19793102,27032919 +k1,13182:20251392,27032919:284620 +k1,13182:21555097,27032919:284620 +k1,13182:25320334,27032919:284620 +k1,13182:29059357,27032919:284620 +(1,13182:29059357,27032919:0,452978,115847 +r1,13208:32583029,27032919:3523672,568825,115847 +k1,13182:29059357,27032919:-3523672 +) +(1,13182:29059357,27032919:3523672,452978,115847 +k1,13182:29059357,27032919:3277 +h1,13182:32579752,27032919:0,411205,112570 +) +k1,13182:32583029,27032919:0 +) +(1,13183:6630773,27897999:25952256,513147,126483 +k1,13182:10138915,27897999:216269 +k1,13182:10971221,27897999:216268 +k1,13182:14027165,27897999:216269 +k1,13182:15262519,27897999:216269 +$1,13182:15262519,27897999 +$1,13182:15582990,27897999 +k1,13182:17866264,27897999:216268 +$1,13182:17866264,27897999 +$1,13182:18334191,27897999 +k1,13182:20617466,27897999:216269 +k1,13182:22025179,27897999:216268 +k1,13182:25678811,27897999:216269 +k1,13182:28321878,27897999:216269 +k1,13182:29485797,27897999:216268 +k1,13182:30721151,27897999:216269 +k1,13183:32583029,27897999:0 +) +(1,13183:6630773,28763079:25952256,426639,7863 +k1,13183:32583028,28763079:24939724 +g1,13183:32583028,28763079 +) +v1,13185:6630773,29447934:0,393216,0 +(1,13202:6630773,37356756:25952256,8302038,196608 +g1,13202:6630773,37356756 +g1,13202:6630773,37356756 +g1,13202:6434165,37356756 +(1,13202:6434165,37356756:0,8302038,196608 +r1,13208:32779637,37356756:26345472,8498646,196608 +k1,13202:6434165,37356756:-26345472 +) +(1,13202:6434165,37356756:26345472,8302038,196608 +[1,13202:6630773,37356756:25952256,8105430,0 +(1,13187:6630773,29682371:25952256,431045,106246 +(1,13186:6630773,29682371:0,0,0 +g1,13186:6630773,29682371 +g1,13186:6630773,29682371 +g1,13186:6303093,29682371 +(1,13186:6303093,29682371:0,0,0 +) +g1,13186:6630773,29682371 +) +k1,13187:6630773,29682371:0 +g1,13187:10282266,29682371 +g1,13187:10946174,29682371 +g1,13187:14929622,29682371 +g1,13187:15593530,29682371 +g1,13187:16257438,29682371 +h1,13187:19576978,29682371:0,0,0 +k1,13187:32583029,29682371:13006051 +g1,13187:32583029,29682371 +) +(1,13201:6630773,30498298:25952256,398014,0 +(1,13189:6630773,30498298:0,0,0 +g1,13189:6630773,30498298 +g1,13189:6630773,30498298 +g1,13189:6303093,30498298 +(1,13189:6303093,30498298:0,0,0 +) +g1,13189:6630773,30498298 +) +h1,13201:7294681,30498298:0,0,0 +k1,13201:32583029,30498298:25288348 +g1,13201:32583029,30498298 +) +(1,13201:6630773,31183153:25952256,424439,106246 +h1,13201:6630773,31183153:0,0,0 +g1,13201:7626635,31183153 +g1,13201:7958589,31183153 +g1,13201:11278129,31183153 +g1,13201:16257439,31183153 +h1,13201:19908932,31183153:0,0,0 +k1,13201:32583029,31183153:12674097 +g1,13201:32583029,31183153 +) +(1,13201:6630773,31868008:25952256,398014,0 +h1,13201:6630773,31868008:0,0,0 +h1,13201:7294681,31868008:0,0,0 +k1,13201:32583029,31868008:25288348 +g1,13201:32583029,31868008 +) +(1,13201:6630773,32552863:25952256,431045,106246 +h1,13201:6630773,32552863:0,0,0 +g1,13201:7626635,32552863 +g1,13201:9618359,32552863 +g1,13201:9950313,32552863 +g1,13201:13601806,32552863 +g1,13201:14929622,32552863 +h1,13201:17917207,32552863:0,0,0 +k1,13201:32583029,32552863:14665822 +g1,13201:32583029,32552863 +) +(1,13201:6630773,33237718:25952256,431045,106246 +h1,13201:6630773,33237718:0,0,0 +g1,13201:7626635,33237718 +g1,13201:8290543,33237718 +g1,13201:8954451,33237718 +g1,13201:11278129,33237718 +g1,13201:12273991,33237718 +g1,13201:12937899,33237718 +g1,13201:14265715,33237718 +g1,13201:16921347,33237718 +g1,13201:17585255,33237718 +k1,13201:17585255,33237718:0 +h1,13201:20240887,33237718:0,0,0 +k1,13201:32583029,33237718:12342142 +g1,13201:32583029,33237718 +) +(1,13201:6630773,33922573:25952256,424439,106246 +h1,13201:6630773,33922573:0,0,0 +g1,13201:7626635,33922573 +g1,13201:11610082,33922573 +g1,13201:15593529,33922573 +g1,13201:17253299,33922573 +g1,13201:21236746,33922573 +g1,13201:22232608,33922573 +g1,13201:23560424,33922573 +g1,13201:25552148,33922573 +g1,13201:26548010,33922573 +h1,13201:26879964,33922573:0,0,0 +k1,13201:32583029,33922573:5703065 +g1,13201:32583029,33922573 +) +(1,13201:6630773,34607428:25952256,431045,106246 +h1,13201:6630773,34607428:0,0,0 +g1,13201:7626635,34607428 +g1,13201:8622497,34607428 +g1,13201:11278129,34607428 +g1,13201:14929622,34607428 +h1,13201:17917207,34607428:0,0,0 +k1,13201:32583029,34607428:14665822 +g1,13201:32583029,34607428 +) +(1,13201:6630773,35292283:25952256,407923,9908 +h1,13201:6630773,35292283:0,0,0 +g1,13201:7626635,35292283 +g1,13201:7958589,35292283 +g1,13201:11278128,35292283 +h1,13201:14265713,35292283:0,0,0 +k1,13201:32583029,35292283:18317316 +g1,13201:32583029,35292283 +) +(1,13201:6630773,35977138:25952256,424439,106246 +h1,13201:6630773,35977138:0,0,0 +g1,13201:7626635,35977138 +g1,13201:9950313,35977138 +h1,13201:13269852,35977138:0,0,0 +k1,13201:32583028,35977138:19313176 +g1,13201:32583028,35977138 +) +(1,13201:6630773,36661993:25952256,398014,6605 +h1,13201:6630773,36661993:0,0,0 +g1,13201:7626635,36661993 +g1,13201:7958589,36661993 +g1,13201:8290543,36661993 +g1,13201:8622497,36661993 +g1,13201:8954451,36661993 +g1,13201:9286405,36661993 +g1,13201:9618359,36661993 +h1,13201:10614221,36661993:0,0,0 +k1,13201:32583029,36661993:21968808 +g1,13201:32583029,36661993 +) +(1,13201:6630773,37346848:25952256,407923,9908 +h1,13201:6630773,37346848:0,0,0 +g1,13201:7626635,37346848 +h1,13201:10614220,37346848:0,0,0 +k1,13201:32583028,37346848:21968808 +g1,13201:32583028,37346848 +) +] +) +g1,13202:32583029,37356756 +g1,13202:6630773,37356756 +g1,13202:6630773,37356756 +g1,13202:32583029,37356756 +g1,13202:32583029,37356756 +) +h1,13202:6630773,37553364:0,0,0 +(1,13206:6630773,38418444:25952256,505283,134348 +h1,13205:6630773,38418444:983040,0,0 +k1,13205:9843093,38418444:242228 +k1,13205:10953673,38418444:242228 +k1,13205:13401188,38418444:242228 +k1,13205:14815855,38418444:242228 +k1,13205:17678212,38418444:242228 +k1,13205:20228618,38418444:242228 +k1,13205:21157008,38418444:242228 +k1,13205:24975536,38418444:242228 +k1,13205:26374474,38418444:242228 +k1,13205:27268130,38418444:242228 +k1,13205:30791090,38418444:242228 +(1,13205:30791090,38418444:0,414482,115847 +r1,13208:31149356,38418444:358266,530329,115847 +k1,13205:30791090,38418444:-358266 +) +(1,13205:30791090,38418444:358266,414482,115847 +k1,13205:30791090,38418444:3277 +h1,13205:31146079,38418444:0,411205,112570 +) +k1,13205:31391584,38418444:242228 +k1,13205:32583029,38418444:0 +) +(1,13206:6630773,39283524:25952256,513147,134348 +k1,13205:7944842,39283524:157359 +k1,13205:8753628,39283524:157358 +k1,13205:12191719,39283524:157359 +(1,13205:12191719,39283524:0,414482,115847 +r1,13208:12549985,39283524:358266,530329,115847 +k1,13205:12191719,39283524:-358266 +) +(1,13205:12191719,39283524:358266,414482,115847 +k1,13205:12191719,39283524:3277 +h1,13205:12546708,39283524:0,411205,112570 +) +k1,13205:12881013,39283524:157358 +k1,13205:17296902,39283524:157359 +k1,13205:18322612,39283524:157358 +k1,13205:19584253,39283524:157359 +k1,13205:21178816,39283524:157358 +k1,13205:21692035,39283524:157359 +k1,13205:23238756,39283524:157358 +k1,13205:25272411,39283524:157359 +k1,13205:26115931,39283524:157358 +k1,13205:27043993,39283524:157359 +k1,13205:30273679,39283524:157358 +k1,13205:31082466,39283524:157359 +(1,13205:31082466,39283524:0,452978,115847 +r1,13208:32495867,39283524:1413401,568825,115847 +k1,13205:31082466,39283524:-1413401 +) +(1,13205:31082466,39283524:1413401,452978,115847 +k1,13205:31082466,39283524:3277 +h1,13205:32492590,39283524:0,411205,112570 +) +k1,13205:32583029,39283524:0 +) +(1,13206:6630773,40148604:25952256,513147,134348 +k1,13205:7955235,40148604:133017 +k1,13205:8444113,40148604:133018 +k1,13205:10490126,40148604:133017 +k1,13205:13171183,40148604:133017 +k1,13205:13955629,40148604:133018 +(1,13205:13955629,40148604:0,459977,115847 +r1,13208:16424166,40148604:2468537,575824,115847 +k1,13205:13955629,40148604:-2468537 +) +(1,13205:13955629,40148604:2468537,459977,115847 +k1,13205:13955629,40148604:3277 +h1,13205:16420889,40148604:0,411205,112570 +) +k1,13205:16730853,40148604:133017 +k1,13205:18060557,40148604:133017 +k1,13205:21265903,40148604:133018 +k1,13205:23604207,40148604:133017 +k1,13205:24388652,40148604:133017 +(1,13205:24388652,40148604:0,459977,115847 +r1,13208:26857189,40148604:2468537,575824,115847 +k1,13205:24388652,40148604:-2468537 +) +(1,13205:24388652,40148604:2468537,459977,115847 +k1,13205:24388652,40148604:3277 +h1,13205:26853912,40148604:0,411205,112570 +) +k1,13205:26990207,40148604:133018 +k1,13205:30697558,40148604:133017 +k1,13205:32583029,40148604:0 +) +(1,13206:6630773,41013684:25952256,513147,126483 +k1,13205:9679148,41013684:224429 +k1,13205:11471198,41013684:224429 +(1,13205:11471198,41013684:0,452978,115847 +r1,13208:12884599,41013684:1413401,568825,115847 +k1,13205:11471198,41013684:-1413401 +) +(1,13205:11471198,41013684:1413401,452978,115847 +k1,13205:11471198,41013684:3277 +h1,13205:12881322,41013684:0,411205,112570 +) +k1,13205:13109028,41013684:224429 +k1,13205:14325016,41013684:224428 +k1,13205:16236342,41013684:224429 +k1,13205:17652216,41013684:224429 +k1,13205:18492683,41013684:224429 +k1,13205:20602583,41013684:224429 +k1,13205:22236036,41013684:224429 +k1,13205:24665752,41013684:224429 +k1,13205:25909265,41013684:224428 +k1,13205:29389523,41013684:224429 +k1,13205:30265380,41013684:224429 +k1,13205:31508894,41013684:224429 +k1,13205:32583029,41013684:0 +) +(1,13206:6630773,41878764:25952256,513147,134348 +k1,13205:7519175,41878764:229110 +k1,13205:8767371,41878764:229111 +k1,13205:10427787,41878764:229110 +(1,13205:10634881,41878764:0,414482,115847 +r1,13208:10993147,41878764:358266,530329,115847 +k1,13205:10634881,41878764:-358266 +) +(1,13205:10634881,41878764:358266,414482,115847 +g1,13205:10989870,41878764 +h1,13205:10989870,41878764:0,411205,112570 +) +k1,13205:11429351,41878764:229110 +k1,13205:12650022,41878764:229111 +k1,13205:15752886,41878764:229110 +k1,13205:18997308,41878764:229111 +k1,13205:20417863,41878764:229110 +k1,13205:22390886,41878764:229110 +k1,13205:23271425,41878764:229111 +k1,13205:24519620,41878764:229110 +k1,13205:26284239,41878764:229110 +k1,13205:27504910,41878764:229111 +k1,13205:31914562,41878764:229110 +k1,13205:32583029,41878764:0 +) +(1,13206:6630773,42743844:25952256,513147,126483 +k1,13205:10758012,42743844:187870 +k1,13205:13961193,42743844:187870 +k1,13205:14776897,42743844:187869 +k1,13205:15983852,42743844:187870 +k1,13205:17538803,42743844:187870 +k1,13205:18385965,42743844:187870 +k1,13205:22228122,42743844:187870 +k1,13205:23225362,42743844:187870 +k1,13205:27152715,42743844:187869 +k1,13205:27872082,42743844:187870 +k1,13205:29803865,42743844:187870 +k1,13205:30801105,42743844:187870 +k1,13205:32583029,42743844:0 +) +(1,13206:6630773,43608924:25952256,513147,134348 +k1,13205:8058584,43608924:236366 +k1,13205:10239404,43608924:236367 +k1,13205:11667215,43608924:236366 +k1,13205:13370277,43608924:236366 +k1,13205:16448285,43608924:236367 +k1,13205:18873554,43608924:236366 +k1,13205:19761348,43608924:236366 +k1,13205:21016800,43608924:236367 +k1,13205:22788675,43608924:236366 +k1,13205:23684333,43608924:236366 +k1,13205:24939785,43608924:236367 +k1,13205:26781128,43608924:236366 +k1,13205:28214181,43608924:236366 +k1,13205:29946735,43608924:236367 +k1,13205:32051532,43608924:236366 +k1,13205:32583029,43608924:0 +) +(1,13206:6630773,44474004:25952256,513147,134348 +k1,13205:10191519,44474004:255765 +k1,13205:11098712,44474004:255765 +k1,13205:12638983,44474004:255765 +k1,13205:14923743,44474004:255765 +k1,13205:16229395,44474004:255765 +k1,13205:18763847,44474004:255765 +h1,13205:20132894,44474004:0,0,0 +k1,13205:20388659,44474004:255765 +k1,13205:21453793,44474004:255764 +k1,13205:23207711,44474004:255765 +h1,13205:24403088,44474004:0,0,0 +k1,13205:24658853,44474004:255765 +k1,13205:25862269,44474004:255765 +k1,13205:28235502,44474004:255765 +k1,13205:29300637,44474004:255765 +k1,13205:30575487,44474004:255765 +k1,13205:31923737,44474004:255765 +k1,13205:32583029,44474004:0 +) +] +(1,13208:32583029,45706769:0,0,0 +g1,13208:32583029,45706769 +) +) +] +(1,13208:6630773,47279633:25952256,0,0 +h1,13208:6630773,47279633:25952256,0,0 +) +] +(1,13208:4262630,4025873:0,0,0 +[1,13208:-473656,4025873:0,0,0 +(1,13208:-473656,-710413:0,0,0 +(1,13208:-473656,-710413:0,0,0 +g1,13208:-473656,-710413 +) +g1,13208:-473656,-710413 ) ] ) ] !30092 -}211 -Input:2197:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2198:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2199:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}212 Input:2200:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2201:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2202:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -234325,936 +234523,936 @@ Input:2210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2216:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{212 -[1,13270:4262630,47279633:28320399,43253760,0 -(1,13270:4262630,4025873:0,0,0 -[1,13270:-473656,4025873:0,0,0 -(1,13270:-473656,-710413:0,0,0 -(1,13270:-473656,-644877:0,0,0 -k1,13270:-473656,-644877:-65536 +{213 +[1,13268:4262630,47279633:28320399,43253760,0 +(1,13268:4262630,4025873:0,0,0 +[1,13268:-473656,4025873:0,0,0 +(1,13268:-473656,-710413:0,0,0 +(1,13268:-473656,-644877:0,0,0 +k1,13268:-473656,-644877:-65536 ) -(1,13270:-473656,4736287:0,0,0 -k1,13270:-473656,4736287:5209943 +(1,13268:-473656,4736287:0,0,0 +k1,13268:-473656,4736287:5209943 ) -g1,13270:-473656,-710413 +g1,13268:-473656,-710413 ) ] ) -[1,13270:6630773,47279633:25952256,43253760,0 -[1,13270:6630773,4812305:25952256,786432,0 -(1,13270:6630773,4812305:25952256,485622,11795 -(1,13270:6630773,4812305:25952256,485622,11795 -g1,13270:3078558,4812305 -[1,13270:3078558,4812305:0,0,0 -(1,13270:3078558,2439708:0,1703936,0 -k1,13270:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13270:2537886,2439708:1179648,16384,0 +[1,13268:6630773,47279633:25952256,43253760,0 +[1,13268:6630773,4812305:25952256,786432,0 +(1,13268:6630773,4812305:25952256,485622,11795 +(1,13268:6630773,4812305:25952256,485622,11795 +g1,13268:3078558,4812305 +[1,13268:3078558,4812305:0,0,0 +(1,13268:3078558,2439708:0,1703936,0 +k1,13268:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13268:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13270:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13268:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13270:3078558,4812305:0,0,0 -(1,13270:3078558,2439708:0,1703936,0 -g1,13270:29030814,2439708 -g1,13270:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13270:36151628,1915420:16384,1179648,0 +[1,13268:3078558,4812305:0,0,0 +(1,13268:3078558,2439708:0,1703936,0 +g1,13268:29030814,2439708 +g1,13268:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13268:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13270:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13268:37855564,2439708:1179648,16384,0 ) ) -k1,13270:3078556,2439708:-34777008 +k1,13268:3078556,2439708:-34777008 ) ] -[1,13270:3078558,4812305:0,0,0 -(1,13270:3078558,49800853:0,16384,2228224 -k1,13270:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13270:2537886,49800853:1179648,16384,0 +[1,13268:3078558,4812305:0,0,0 +(1,13268:3078558,49800853:0,16384,2228224 +k1,13268:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13268:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13270:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13268:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13270:3078558,4812305:0,0,0 -(1,13270:3078558,49800853:0,16384,2228224 -g1,13270:29030814,49800853 -g1,13270:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13270:36151628,51504789:16384,1179648,0 +[1,13268:3078558,4812305:0,0,0 +(1,13268:3078558,49800853:0,16384,2228224 +g1,13268:29030814,49800853 +g1,13268:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13268:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13270:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13268:37855564,49800853:1179648,16384,0 ) ) -k1,13270:3078556,49800853:-34777008 +k1,13268:3078556,49800853:-34777008 ) ] -g1,13270:6630773,4812305 -g1,13270:6630773,4812305 -$1,13270:6630773,4812305 -$1,13270:6951244,4812305 -g1,13270:8448741,4812305 -k1,13270:31387653,4812305:22938912 -) -) -] -[1,13270:6630773,45706769:25952256,40108032,0 -(1,13270:6630773,45706769:25952256,40108032,0 -(1,13270:6630773,45706769:0,0,0 -g1,13270:6630773,45706769 +g1,13268:6630773,4812305 +g1,13268:6630773,4812305 +$1,13268:6630773,4812305 +$1,13268:6951244,4812305 +g1,13268:8448741,4812305 +k1,13268:31387653,4812305:22938912 +) +) +] +[1,13268:6630773,45706769:25952256,40108032,0 +(1,13268:6630773,45706769:25952256,40108032,0 +(1,13268:6630773,45706769:0,0,0 +g1,13268:6630773,45706769 ) -[1,13270:6630773,45706769:25952256,40108032,0 -(1,13208:6630773,6254097:25952256,513147,134348 -k1,13207:8857312,6254097:238832 -k1,13207:11969897,6254097:238831 -k1,13207:13400174,6254097:238832 -k1,13207:15917693,6254097:238832 -h1,13207:16888281,6254097:0,0,0 -k1,13207:17127113,6254097:238832 -k1,13207:18175314,6254097:238831 -k1,13207:19912299,6254097:238832 -h1,13207:21107676,6254097:0,0,0 -k1,13207:21346508,6254097:238832 -k1,13207:22532990,6254097:238831 -k1,13207:25763541,6254097:238832 -k1,13207:26661665,6254097:238832 -k1,13207:28409136,6254097:238832 -k1,13207:29740452,6254097:238831 -k1,13207:30595322,6254097:238832 -k1,13207:32583029,6254097:0 -) -(1,13208:6630773,7119177:25952256,513147,134348 -k1,13208:32583028,7119177:23965204 -g1,13208:32583028,7119177 -) -v1,13210:6630773,7804032:0,393216,0 -(1,13214:6630773,8144715:25952256,733899,196608 -g1,13214:6630773,8144715 -g1,13214:6630773,8144715 -g1,13214:6434165,8144715 -(1,13214:6434165,8144715:0,733899,196608 -r1,13270:32779637,8144715:26345472,930507,196608 -k1,13214:6434165,8144715:-26345472 -) -(1,13214:6434165,8144715:26345472,733899,196608 -[1,13214:6630773,8144715:25952256,537291,0 -(1,13212:6630773,8038469:25952256,431045,106246 -(1,13211:6630773,8038469:0,0,0 -g1,13211:6630773,8038469 -g1,13211:6630773,8038469 -g1,13211:6303093,8038469 -(1,13211:6303093,8038469:0,0,0 -) -g1,13211:6630773,8038469 -) -k1,13212:6630773,8038469:0 -g1,13212:12273990,8038469 -g1,13212:12937898,8038469 -g1,13212:13601806,8038469 -g1,13212:15593530,8038469 -g1,13212:16257438,8038469 -g1,13212:18249162,8038469 -g1,13212:19908932,8038469 -g1,13212:20572840,8038469 -h1,13212:22232610,8038469:0,0,0 -k1,13212:32583029,8038469:10350419 -g1,13212:32583029,8038469 -) -] -) -g1,13214:32583029,8144715 -g1,13214:6630773,8144715 -g1,13214:6630773,8144715 -g1,13214:32583029,8144715 -g1,13214:32583029,8144715 -) -h1,13214:6630773,8341323:0,0,0 -v1,13218:6630773,9206403:0,393216,0 -(1,13232:6630773,23237869:25952256,14424682,0 -g1,13232:6630773,23237869 -g1,13232:6237557,23237869 -r1,13270:6368629,23237869:131072,14424682,0 -g1,13232:6567858,23237869 -g1,13232:6764466,23237869 -[1,13232:6764466,23237869:25818563,14424682,0 -(1,13219:6764466,9478880:25818563,665693,196608 -(1,13218:6764466,9478880:0,665693,196608 -r1,13270:7868133,9478880:1103667,862301,196608 -k1,13218:6764466,9478880:-1103667 -) -(1,13218:6764466,9478880:1103667,665693,196608 -) -k1,13218:8122525,9478880:254392 -k1,13218:9440454,9478880:327680 -k1,13218:12815015,9478880:254392 -(1,13218:12815015,9478880:0,452978,115847 -r1,13270:14580128,9478880:1765113,568825,115847 -k1,13218:12815015,9478880:-1765113 -) -(1,13218:12815015,9478880:1765113,452978,115847 -k1,13218:12815015,9478880:3277 -h1,13218:14576851,9478880:0,411205,112570 -) -k1,13218:14834521,9478880:254393 -k1,13218:16280358,9478880:254392 -(1,13218:16280358,9478880:0,452978,115847 -r1,13270:19804030,9478880:3523672,568825,115847 -k1,13218:16280358,9478880:-3523672 -) -(1,13218:16280358,9478880:3523672,452978,115847 -k1,13218:16280358,9478880:3277 -h1,13218:19800753,9478880:0,411205,112570 -) -k1,13218:20058422,9478880:254392 -k1,13218:22323459,9478880:254392 -k1,13218:22992639,9478880:254337 -k1,13218:25710529,9478880:254392 -k1,13218:27249428,9478880:254393 -k1,13218:29201858,9478880:254392 -k1,13218:31191643,9478880:254392 -k1,13218:31860823,9478880:254337 -k1,13219:32583029,9478880:0 -) -(1,13219:6764466,10343960:25818563,505283,134348 -k1,13218:10334033,10343960:258688 -k1,13218:11571175,10343960:258689 -k1,13218:16146720,10343960:258688 -k1,13218:19355839,10343960:258688 -k1,13218:20423897,10343960:258688 -k1,13218:21701671,10343960:258689 -k1,13218:24195792,10343960:258688 -k1,13218:25725878,10343960:258688 -k1,13218:28164950,10343960:258689 -k1,13218:29171404,10343960:258688 -k1,13218:31298523,10343960:258688 -k1,13219:32583029,10343960:0 -) -(1,13219:6764466,11209040:25818563,513147,126483 -(1,13218:6764466,11209040:0,452978,115847 -r1,13270:9233003,11209040:2468537,568825,115847 -k1,13218:6764466,11209040:-2468537 -) -(1,13218:6764466,11209040:2468537,452978,115847 -k1,13218:6764466,11209040:3277 -h1,13218:9229726,11209040:0,411205,112570 -) -k1,13218:9483429,11209040:250426 -k1,13218:12518479,11209040:250425 -k1,13218:13584173,11209040:250426 -k1,13218:14900870,11209040:250426 -k1,13218:18666646,11209040:250425 -k1,13218:21212143,11209040:250426 -k1,13218:22228684,11209040:250425 -k1,13218:23498195,11209040:250426 -k1,13218:27555607,11209040:250426 -k1,13218:30945862,11209040:250425 -k1,13218:31812326,11209040:250426 -k1,13219:32583029,11209040:0 -) -(1,13219:6764466,12074120:25818563,513147,134348 -k1,13218:7416766,12074120:237457 -k1,13218:9787458,12074120:237495 -k1,13218:11405797,12074120:237495 -k1,13218:12174789,12074120:237495 -k1,13218:14574972,12074120:237495 -k1,13218:16941732,12074120:237495 -k1,13218:18198312,12074120:237495 -k1,13218:19802888,12074120:237495 -k1,13218:20988035,12074120:237496 -k1,13218:23911851,12074120:237495 -k1,13218:26439174,12074120:237495 -k1,13218:27822894,12074120:237495 -k1,13218:29804302,12074120:237495 -k1,13218:32583029,12074120:0 -) -(1,13219:6764466,12939200:25818563,513147,134348 -k1,13218:7768938,12939200:242944 -k1,13218:8426680,12939200:242899 -k1,13218:11695421,12939200:242944 -k1,13218:16362045,12939200:242944 -k1,13218:19689112,12939200:242943 -k1,13218:21627472,12939200:242944 -k1,13218:22688305,12939200:242944 -k1,13218:24325200,12939200:242944 -k1,13218:25699950,12939200:242943 -k1,13218:26357693,12939200:242900 -k1,13218:28733834,12939200:242944 -k1,13218:29845129,12939200:242943 -k1,13218:31192355,12939200:242944 -k1,13218:32583029,12939200:0 -) -(1,13219:6764466,13804280:25818563,513147,134348 -k1,13218:8035952,13804280:252401 -k1,13218:10131225,13804280:252401 -k1,13218:11042918,13804280:252401 -k1,13218:12066022,13804280:252401 -k1,13218:14873016,13804280:252401 -k1,13218:16392883,13804280:252401 -k1,13218:17001144,13804280:252401 -k1,13218:19938556,13804280:252402 -k1,13218:21008846,13804280:252401 -k1,13218:24351270,13804280:252401 -k1,13218:25219709,13804280:252401 -k1,13218:27750797,13804280:252401 -h1,13218:28721385,13804280:0,0,0 -k1,13218:28973786,13804280:252401 -k1,13218:30035557,13804280:252401 -k1,13218:31786111,13804280:252401 -h1,13218:32583029,13804280:0,0,0 -k1,13218:32583029,13804280:0 -) -(1,13219:6764466,14669360:25818563,513147,134348 -k1,13218:7941478,14669360:229361 -k1,13218:9668337,14669360:229361 -k1,13218:10766049,14669360:229360 -k1,13218:12099692,14669360:229361 -k1,13218:13837036,14669360:229361 -k1,13218:15333863,14669360:229361 -k1,13218:16582309,14669360:229361 -k1,13218:19743094,14669360:229360 -k1,13218:20631747,14669360:229361 -k1,13218:21631811,14669360:229361 -k1,13218:23820698,14669360:229361 -k1,13218:25444010,14669360:229361 -k1,13218:28127693,14669360:229360 -(1,13218:28127693,14669360:0,452978,115847 -r1,13270:29892806,14669360:1765113,568825,115847 -k1,13218:28127693,14669360:-1765113 -) -(1,13218:28127693,14669360:1765113,452978,115847 -k1,13218:28127693,14669360:3277 -h1,13218:29889529,14669360:0,411205,112570 -) -k1,13218:30295837,14669360:229361 -k1,13218:31478747,14669360:229361 -k1,13218:32583029,14669360:0 -) -(1,13219:6764466,15534440:25818563,513147,115847 -k1,13218:8048823,15534440:191872 -(1,13218:8048823,15534440:0,452978,115847 -r1,13270:10517360,15534440:2468537,568825,115847 -k1,13218:8048823,15534440:-2468537 -) -(1,13218:8048823,15534440:2468537,452978,115847 -k1,13218:8048823,15534440:3277 -h1,13218:10514083,15534440:0,411205,112570 -) -k1,13218:10709231,15534440:191871 -k1,13218:12092548,15534440:191872 -(1,13218:12092548,15534440:0,452978,115847 -r1,13270:16319644,15534440:4227096,568825,115847 -k1,13218:12092548,15534440:-4227096 -) -(1,13218:12092548,15534440:4227096,452978,115847 -k1,13218:12092548,15534440:3277 -h1,13218:16316367,15534440:0,411205,112570 -) -k1,13218:16511515,15534440:191871 -k1,13218:17354815,15534440:191872 -k1,13218:19750662,15534440:191871 -k1,13218:22217944,15534440:191872 -k1,13218:26390473,15534440:191872 -k1,13218:27857019,15534440:191871 -k1,13218:29067976,15534440:191872 -k1,13218:30756034,15534440:191871 -k1,13218:31563944,15534440:191872 -k1,13218:32583029,15534440:0 -) -(1,13219:6764466,16399520:25818563,505283,126483 -g1,13218:8934363,16399520 -g1,13218:11002023,16399520 -g1,13218:11852680,16399520 -g1,13218:14725123,16399520 -g1,13218:16472968,16399520 -g1,13218:17203694,16399520 -g1,13218:19891325,16399520 -g1,13218:22869281,16399520 -g1,13218:23830038,16399520 -(1,13218:23830038,16399520:0,452978,115847 -r1,13270:25595151,16399520:1765113,568825,115847 -k1,13218:23830038,16399520:-1765113 -) -(1,13218:23830038,16399520:1765113,452978,115847 -k1,13218:23830038,16399520:3277 -h1,13218:25591874,16399520:0,411205,112570 -) -k1,13219:32583029,16399520:6935450 -g1,13219:32583029,16399520 -) -v1,13221:6764466,17084375:0,393216,0 -(1,13228:6764466,19446593:25818563,2755434,196608 -g1,13228:6764466,19446593 -g1,13228:6764466,19446593 -g1,13228:6567858,19446593 -(1,13228:6567858,19446593:0,2755434,196608 -r1,13270:32779637,19446593:26211779,2952042,196608 -k1,13228:6567857,19446593:-26211780 -) -(1,13228:6567858,19446593:26211779,2755434,196608 -[1,13228:6764466,19446593:25818563,2558826,0 -(1,13223:6764466,17312206:25818563,424439,79822 -(1,13222:6764466,17312206:0,0,0 -g1,13222:6764466,17312206 -g1,13222:6764466,17312206 -g1,13222:6436786,17312206 -(1,13222:6436786,17312206:0,0,0 -) -g1,13222:6764466,17312206 -) -g1,13223:8424236,17312206 -g1,13223:9420098,17312206 -k1,13223:9420098,17312206:0 -h1,13223:12407684,17312206:0,0,0 -k1,13223:32583028,17312206:20175344 -g1,13223:32583028,17312206 -) -(1,13224:6764466,17997061:25818563,424439,79822 -h1,13224:6764466,17997061:0,0,0 -k1,13224:6764466,17997061:0 -h1,13224:10415960,17997061:0,0,0 -k1,13224:32583028,17997061:22167068 -g1,13224:32583028,17997061 -) -(1,13225:6764466,18681916:25818563,424439,79822 -h1,13225:6764466,18681916:0,0,0 -k1,13225:6764466,18681916:0 -h1,13225:12075729,18681916:0,0,0 -k1,13225:32583029,18681916:20507300 -g1,13225:32583029,18681916 -) -(1,13226:6764466,19366771:25818563,424439,79822 -h1,13226:6764466,19366771:0,0,0 -k1,13226:6764466,19366771:0 -h1,13226:9752052,19366771:0,0,0 -k1,13226:32583028,19366771:22830976 -g1,13226:32583028,19366771 -) -] -) -g1,13228:32583029,19446593 -g1,13228:6764466,19446593 -g1,13228:6764466,19446593 -g1,13228:32583029,19446593 -g1,13228:32583029,19446593 -) -h1,13228:6764466,19643201:0,0,0 -(1,13232:6764466,20508281:25818563,513147,126483 -h1,13231:6764466,20508281:983040,0,0 -k1,13231:10690426,20508281:214656 -(1,13231:10690426,20508281:0,452978,115847 -r1,13270:13158963,20508281:2468537,568825,115847 -k1,13231:10690426,20508281:-2468537 -) -(1,13231:10690426,20508281:2468537,452978,115847 -k1,13231:10690426,20508281:3277 -h1,13231:13155686,20508281:0,411205,112570 -) -k1,13231:13547288,20508281:214655 -(1,13231:13547288,20508281:0,452978,115847 -r1,13270:17774384,20508281:4227096,568825,115847 -k1,13231:13547288,20508281:-4227096 -) -(1,13231:13547288,20508281:4227096,452978,115847 -k1,13231:13547288,20508281:3277 -h1,13231:17771107,20508281:0,411205,112570 -) -k1,13231:17989040,20508281:214656 -k1,13231:19395141,20508281:214656 -(1,13231:19395141,20508281:0,452978,115847 -r1,13270:21160254,20508281:1765113,568825,115847 -k1,13231:19395141,20508281:-1765113 -) -(1,13231:19395141,20508281:1765113,452978,115847 -k1,13231:19395141,20508281:3277 -h1,13231:21156977,20508281:0,411205,112570 -) -k1,13231:21374909,20508281:214655 -k1,13231:22581125,20508281:214656 -k1,13231:24149754,20508281:214655 -k1,13231:27221124,20508281:214656 -k1,13231:29017164,20508281:214656 -k1,13231:30516325,20508281:214655 -k1,13231:31835263,20508281:214656 -k1,13231:32583029,20508281:0 -) -(1,13232:6764466,21373361:25818563,505283,134348 -k1,13231:8465002,21373361:187310 -k1,13231:10350350,21373361:187310 -k1,13231:11406012,21373361:187310 -k1,13231:12584882,21373361:187310 -k1,13231:13388231,21373361:187311 -k1,13231:15462978,21373361:187310 -k1,13231:17472844,21373361:187310 -k1,13231:18679239,21373361:187310 -k1,13231:20255912,21373361:187310 -k1,13231:23583052,21373361:187310 -k1,13231:24386400,21373361:187310 -k1,13231:25344413,21373361:187310 -k1,13231:27491250,21373361:187311 -k1,13231:29888434,21373361:187310 -k1,13231:31406125,21373361:187310 -k1,13231:32051532,21373361:187310 -k1,13231:32583029,21373361:0 -) -(1,13232:6764466,22238441:25818563,505283,134348 -k1,13231:10468203,22238441:177900 -k1,13231:13430729,22238441:177901 -k1,13231:14627714,22238441:177900 -k1,13231:17737040,22238441:177901 -k1,13231:19926895,22238441:177900 -k1,13231:20849940,22238441:177901 -k1,13231:21679268,22238441:177900 -k1,13231:24291176,22238441:177901 -k1,13231:25488161,22238441:177900 -k1,13231:27055425,22238441:177901 -k1,13231:30187033,22238441:177900 -k1,13231:32583029,22238441:0 -) -(1,13232:6764466,23103521:25818563,513147,134348 -g1,13231:8531316,23103521 -g1,13231:9749630,23103521 -g1,13231:11908385,23103521 -g1,13231:13805652,23103521 -g1,13231:17442900,23103521 -g1,13231:20528990,23103521 -g1,13231:23512844,23103521 -g1,13231:24703633,23103521 -g1,13231:25969133,23103521 -k1,13232:32583029,23103521:3777498 -g1,13232:32583029,23103521 -) -] -g1,13232:32583029,23237869 -) -h1,13232:6630773,23237869:0,0,0 -(1,13234:6630773,25354687:25952256,555811,139133 -(1,13234:6630773,25354687:2450326,534184,12975 -g1,13234:6630773,25354687 -g1,13234:9081099,25354687 -) -g1,13234:12629350,25354687 -$1,13234:12629350,25354687 -$1,13234:13144791,25354687 -g1,13234:13369711,25354687 -g1,13234:14936939,25354687 -g1,13234:19309895,25354687 -$1,13234:19309895,25354687 -$1,13234:19813801,25354687 -k1,13234:32583029,25354687:12769228 -g1,13234:32583029,25354687 -) -(1,13240:6630773,26612983:25952256,513147,126483 -k1,13239:7744972,26612983:190797 -k1,13239:9028254,26612983:190797 -k1,13239:10238136,26612983:190797 -k1,13239:12082407,26612983:190798 -k1,13239:15299001,26612983:190797 -k1,13239:16175960,26612983:190797 -k1,13239:17314408,26612983:190797 -k1,13239:20515929,26612983:190797 -$1,13239:20515929,26612983 -$1,13239:20960918,26612983 -k1,13239:21151715,26612983:190797 -k1,13239:22414681,26612983:190797 -k1,13239:25502825,26612983:190797 -k1,13239:28083066,26612983:190798 -k1,13239:29292948,26612983:190797 -k1,13239:30576230,26612983:190797 -k1,13239:31426319,26612983:190797 -k1,13239:32583029,26612983:0 -) -(1,13240:6630773,27478063:25952256,513147,134348 -g1,13239:7489294,27478063 -g1,13239:9385250,27478063 -g1,13239:12369104,27478063 -g1,13239:13329861,27478063 -g1,13239:15956544,27478063 -g1,13239:16926476,27478063 -k1,13240:32583029,27478063:12531797 -g1,13240:32583029,27478063 -) -v1,13242:6630773,28162918:0,393216,0 -(1,13255:6630773,30924958:25952256,3155256,196608 -g1,13255:6630773,30924958 -g1,13255:6630773,30924958 -g1,13255:6434165,30924958 -(1,13255:6434165,30924958:0,3155256,196608 -r1,13270:32779637,30924958:26345472,3351864,196608 -k1,13255:6434165,30924958:-26345472 -) -(1,13255:6434165,30924958:26345472,3155256,196608 -[1,13255:6630773,30924958:25952256,2958648,0 -(1,13244:6630773,28397355:25952256,431045,106246 -(1,13243:6630773,28397355:0,0,0 -g1,13243:6630773,28397355 -g1,13243:6630773,28397355 -g1,13243:6303093,28397355 -(1,13243:6303093,28397355:0,0,0 -) -g1,13243:6630773,28397355 -) -k1,13244:6630773,28397355:0 -g1,13244:8622497,28397355 -g1,13244:9286405,28397355 -g1,13244:13269853,28397355 -g1,13244:13933761,28397355 -g1,13244:14597669,28397355 -g1,13244:18249163,28397355 -g1,13244:20572841,28397355 -g1,13244:21236749,28397355 -h1,13244:24556288,28397355:0,0,0 -k1,13244:32583029,28397355:8026741 -g1,13244:32583029,28397355 -) -(1,13248:6630773,29213282:25952256,424439,79822 -(1,13246:6630773,29213282:0,0,0 -g1,13246:6630773,29213282 -g1,13246:6630773,29213282 -g1,13246:6303093,29213282 -(1,13246:6303093,29213282:0,0,0 -) -g1,13246:6630773,29213282 -) -g1,13248:7626635,29213282 -g1,13248:8954451,29213282 -h1,13248:11942036,29213282:0,0,0 -k1,13248:32583028,29213282:20640992 -g1,13248:32583028,29213282 -) -(1,13250:6630773,30029209:25952256,431045,106246 -(1,13249:6630773,30029209:0,0,0 -g1,13249:6630773,30029209 -g1,13249:6630773,30029209 -g1,13249:6303093,30029209 -(1,13249:6303093,30029209:0,0,0 -) -g1,13249:6630773,30029209 -) -k1,13250:6630773,30029209:0 -g1,13250:8622497,30029209 -g1,13250:9286405,30029209 -g1,13250:13269853,30029209 -g1,13250:13933761,30029209 -g1,13250:14597669,30029209 -g1,13250:18249163,30029209 -g1,13250:20572841,30029209 -g1,13250:21236749,30029209 -h1,13250:24888242,30029209:0,0,0 -k1,13250:32583029,30029209:7694787 -g1,13250:32583029,30029209 -) -(1,13254:6630773,30845136:25952256,424439,79822 -(1,13252:6630773,30845136:0,0,0 -g1,13252:6630773,30845136 -g1,13252:6630773,30845136 -g1,13252:6303093,30845136 -(1,13252:6303093,30845136:0,0,0 -) -g1,13252:6630773,30845136 -) -g1,13254:7626635,30845136 -g1,13254:8954451,30845136 -h1,13254:11942036,30845136:0,0,0 -k1,13254:32583028,30845136:20640992 -g1,13254:32583028,30845136 -) -] -) -g1,13255:32583029,30924958 -g1,13255:6630773,30924958 -g1,13255:6630773,30924958 -g1,13255:32583029,30924958 -g1,13255:32583029,30924958 -) -h1,13255:6630773,31121566:0,0,0 -(1,13259:6630773,31986646:25952256,513147,115847 -h1,13258:6630773,31986646:983040,0,0 -k1,13258:10655031,31986646:251350 -(1,13258:10655031,31986646:0,452978,115847 -r1,13270:14178703,31986646:3523672,568825,115847 -k1,13258:10655031,31986646:-3523672 -) -(1,13258:10655031,31986646:3523672,452978,115847 -k1,13258:10655031,31986646:3277 -h1,13258:14175426,31986646:0,411205,112570 -) -k1,13258:14603724,31986646:251351 -k1,13258:17945097,31986646:251350 -k1,13258:20225443,31986646:251351 -k1,13258:21762609,31986646:251350 -k1,13258:24025914,31986646:251350 -k1,13258:25296350,31986646:251351 -k1,13258:27572762,31986646:251350 -k1,13258:28483405,31986646:251351 -k1,13258:31189078,31986646:251350 -k1,13258:32583029,31986646:0 -) -(1,13259:6630773,32851726:25952256,513147,126483 -g1,13258:7849087,32851726 -g1,13258:9701789,32851726 -g1,13258:11985063,32851726 -g1,13258:12870454,32851726 -g1,13258:15145208,32851726 -g1,13258:16292088,32851726 -(1,13258:16292088,32851726:0,452978,115847 -r1,13270:18057201,32851726:1765113,568825,115847 -k1,13258:16292088,32851726:-1765113 -) -(1,13258:16292088,32851726:1765113,452978,115847 -k1,13258:16292088,32851726:3277 -h1,13258:18053924,32851726:0,411205,112570 -) -k1,13259:32583029,32851726:14473400 -g1,13259:32583029,32851726 -) -v1,13261:6630773,33716806:0,393216,0 -(1,13262:6630773,36592386:25952256,3268796,0 -g1,13262:6630773,36592386 -g1,13262:6237557,36592386 -r1,13270:6368629,36592386:131072,3268796,0 -g1,13262:6567858,36592386 -g1,13262:6764466,36592386 -[1,13262:6764466,36592386:25818563,3268796,0 -(1,13262:6764466,33989283:25818563,665693,196608 -(1,13261:6764466,33989283:0,665693,196608 -r1,13270:7868133,33989283:1103667,862301,196608 -k1,13261:6764466,33989283:-1103667 -) -(1,13261:6764466,33989283:1103667,665693,196608 -) -k1,13261:8073138,33989283:205005 -k1,13261:9391067,33989283:327680 -k1,13261:11769245,33989283:205004 -k1,13261:12993335,33989283:205005 -k1,13261:15758832,33989283:205005 -k1,13261:16579875,33989283:205005 -k1,13261:17803964,33989283:205004 -k1,13261:21659324,33989283:205005 -k1,13261:25801077,33989283:205005 -k1,13261:28035077,33989283:205005 -k1,13261:29312250,33989283:205004 -k1,13261:30847636,33989283:205005 -k1,13261:32583029,33989283:0 -) -(1,13262:6764466,34854363:25818563,513147,126483 -k1,13261:11834461,34854363:164625 -k1,13261:14957381,34854363:164625 -k1,13261:16542827,34854363:164625 -k1,13261:18200362,34854363:164625 -k1,13261:19384072,34854363:164625 -k1,13261:23355684,34854363:164626 -k1,13261:25558479,34854363:164625 -k1,13261:26339142,34854363:164625 -k1,13261:27522852,34854363:164625 -k1,13261:30466204,34854363:164625 -(1,13261:30466204,34854363:0,452978,115847 -r1,13270:32583029,34854363:2116825,568825,115847 -k1,13261:30466204,34854363:-2116825 -) -(1,13261:30466204,34854363:2116825,452978,115847 -k1,13261:30466204,34854363:3277 -h1,13261:32579752,34854363:0,411205,112570 -) -k1,13261:32583029,34854363:0 -) -(1,13262:6764466,35719443:25818563,513147,134348 -k1,13261:8679529,35719443:171805 -k1,13261:12213331,35719443:171805 -k1,13261:13194506,35719443:171805 -k1,13261:14385396,35719443:171805 -k1,13261:17185195,35719443:171805 -k1,13261:18548445,35719443:171805 -k1,13261:20050630,35719443:171804 -k1,13261:21326717,35719443:171805 -k1,13261:22366874,35719443:171805 -k1,13261:24742655,35719443:171805 -k1,13261:26482081,35719443:171805 -k1,13261:27672971,35719443:171805 -k1,13261:30623503,35719443:171805 -k1,13261:32583029,35719443:0 -) -(1,13262:6764466,36584523:25818563,513147,7863 -g1,13261:10770681,36584523 -g1,13261:12792466,36584523 -g1,13261:14010780,36584523 -g1,13261:16664332,36584523 -g1,13261:18376787,36584523 -g1,13261:19523667,36584523 -g1,13261:20741981,36584523 -g1,13261:24412652,36584523 -g1,13261:25271173,36584523 -g1,13261:26489487,36584523 -k1,13262:32583029,36584523:2318668 -g1,13262:32583029,36584523 -) -] -g1,13262:32583029,36592386 -) -h1,13262:6630773,36592386:0,0,0 -(1,13265:6630773,39423546:25952256,32768,229376 -(1,13265:6630773,39423546:0,32768,229376 -(1,13265:6630773,39423546:5505024,32768,229376 -r1,13270:12135797,39423546:5505024,262144,229376 -) -k1,13265:6630773,39423546:-5505024 -) -(1,13265:6630773,39423546:25952256,32768,0 -r1,13270:32583029,39423546:25952256,32768,0 -) -) -(1,13265:6630773,41055398:25952256,568590,9437 -(1,13265:6630773,41055398:1974731,568590,0 -g1,13265:6630773,41055398 -g1,13265:8605504,41055398 -) -$1,13265:8605504,41055398 -$1,13265:8990069,41055398 -k1,13265:32583029,41055398:21899772 -g1,13265:32583029,41055398 -) -(1,13269:6630773,42313694:25952256,505283,126483 -k1,13268:8010003,42313694:204170 -$1,13268:8010003,42313694 -$1,13268:8330474,42313694 -k1,13268:9939080,42313694:204169 -k1,13268:10674747,42313694:204170 -k1,13268:12733586,42313694:204170 -k1,13268:13747125,42313694:204169 -k1,13268:16922042,42313694:204170 -$1,13268:16922042,42313694 -$1,13268:17242513,42313694 -k1,13268:21614773,42313694:204170 -k1,13268:22288836,42313694:204170 -k1,13268:23597287,42313694:204169 -k1,13268:24549223,42313694:204170 -k1,13268:27125141,42313694:204170 -k1,13268:27980738,42313694:204169 -k1,13268:29316715,42313694:204170 -k1,13268:32583029,42313694:0 -) -(1,13269:6630773,43178774:25952256,513147,102891 -k1,13268:9589887,43178774:243302 -k1,13268:10780841,43178774:243303 -k1,13268:12909614,43178774:243302 -k1,13268:13941314,43178774:243302 -k1,13268:17028224,43178774:243303 -k1,13268:20221301,43178774:243302 -k1,13268:20996100,43178774:243302 -k1,13268:24197043,43178774:243303 -k1,13268:25631790,43178774:243302 -k1,13268:26894177,43178774:243302 -$1,13268:26894177,43178774 -$1,13268:27214648,43178774 -k1,13268:31452370,43178774:243303 -k1,13268:32227169,43178774:243302 -k1,13268:32583029,43178774:0 -) -(1,13269:6630773,44043854:25952256,513147,126483 -k1,13268:9775081,44043854:263345 -k1,13268:13951582,44043854:263346 -k1,13268:14684820,44043854:263345 -k1,13268:15479663,44043854:263346 -k1,13268:17344708,44043854:263345 -k1,13268:20913035,44043854:263346 -k1,13268:22689606,44043854:263345 -k1,13268:23604379,44043854:263345 -k1,13268:26628101,44043854:263346 -k1,13268:27662149,44043854:263345 -k1,13268:30641307,44043854:263346 -k1,13268:31563944,44043854:263345 -k1,13268:32583029,44043854:0 -) -(1,13269:6630773,44908934:25952256,513147,134348 -k1,13268:8558187,44908934:189399 -k1,13268:11036759,44908934:189399 -k1,13268:11582018,44908934:189399 -k1,13268:14529172,44908934:189399 -k1,13268:16572585,44908934:189399 -k1,13268:17444869,44908934:189399 -k1,13268:18653353,44908934:189399 -k1,13268:21558564,44908934:189399 -k1,13268:22407255,44908934:189399 -k1,13268:22952514,44908934:189399 -k1,13268:26328273,44908934:189399 -k1,13268:29152875,44908934:189399 -k1,13268:30514713,44908934:189399 -k1,13268:32583029,44908934:0 -) -] -(1,13270:32583029,45706769:0,0,0 -g1,13270:32583029,45706769 -) -) -] -(1,13270:6630773,47279633:25952256,0,0 -h1,13270:6630773,47279633:25952256,0,0 -) -] -(1,13270:4262630,4025873:0,0,0 -[1,13270:-473656,4025873:0,0,0 -(1,13270:-473656,-710413:0,0,0 -(1,13270:-473656,-710413:0,0,0 -g1,13270:-473656,-710413 -) -g1,13270:-473656,-710413 +[1,13268:6630773,45706769:25952256,40108032,0 +(1,13206:6630773,6254097:25952256,513147,134348 +k1,13205:8857312,6254097:238832 +k1,13205:11969897,6254097:238831 +k1,13205:13400174,6254097:238832 +k1,13205:15917693,6254097:238832 +h1,13205:16888281,6254097:0,0,0 +k1,13205:17127113,6254097:238832 +k1,13205:18175314,6254097:238831 +k1,13205:19912299,6254097:238832 +h1,13205:21107676,6254097:0,0,0 +k1,13205:21346508,6254097:238832 +k1,13205:22532990,6254097:238831 +k1,13205:25763541,6254097:238832 +k1,13205:26661665,6254097:238832 +k1,13205:28409136,6254097:238832 +k1,13205:29740452,6254097:238831 +k1,13205:30595322,6254097:238832 +k1,13205:32583029,6254097:0 +) +(1,13206:6630773,7119177:25952256,513147,134348 +k1,13206:32583028,7119177:23965204 +g1,13206:32583028,7119177 +) +v1,13208:6630773,7804032:0,393216,0 +(1,13212:6630773,8144715:25952256,733899,196608 +g1,13212:6630773,8144715 +g1,13212:6630773,8144715 +g1,13212:6434165,8144715 +(1,13212:6434165,8144715:0,733899,196608 +r1,13268:32779637,8144715:26345472,930507,196608 +k1,13212:6434165,8144715:-26345472 +) +(1,13212:6434165,8144715:26345472,733899,196608 +[1,13212:6630773,8144715:25952256,537291,0 +(1,13210:6630773,8038469:25952256,431045,106246 +(1,13209:6630773,8038469:0,0,0 +g1,13209:6630773,8038469 +g1,13209:6630773,8038469 +g1,13209:6303093,8038469 +(1,13209:6303093,8038469:0,0,0 +) +g1,13209:6630773,8038469 +) +k1,13210:6630773,8038469:0 +g1,13210:12273990,8038469 +g1,13210:12937898,8038469 +g1,13210:13601806,8038469 +g1,13210:15593530,8038469 +g1,13210:16257438,8038469 +g1,13210:18249162,8038469 +g1,13210:19908932,8038469 +g1,13210:20572840,8038469 +h1,13210:22232610,8038469:0,0,0 +k1,13210:32583029,8038469:10350419 +g1,13210:32583029,8038469 +) +] +) +g1,13212:32583029,8144715 +g1,13212:6630773,8144715 +g1,13212:6630773,8144715 +g1,13212:32583029,8144715 +g1,13212:32583029,8144715 +) +h1,13212:6630773,8341323:0,0,0 +v1,13216:6630773,9206403:0,393216,0 +(1,13230:6630773,23237869:25952256,14424682,0 +g1,13230:6630773,23237869 +g1,13230:6237557,23237869 +r1,13268:6368629,23237869:131072,14424682,0 +g1,13230:6567858,23237869 +g1,13230:6764466,23237869 +[1,13230:6764466,23237869:25818563,14424682,0 +(1,13217:6764466,9478880:25818563,665693,196608 +(1,13216:6764466,9478880:0,665693,196608 +r1,13268:7868133,9478880:1103667,862301,196608 +k1,13216:6764466,9478880:-1103667 +) +(1,13216:6764466,9478880:1103667,665693,196608 +) +k1,13216:8122525,9478880:254392 +k1,13216:9440454,9478880:327680 +k1,13216:12815015,9478880:254392 +(1,13216:12815015,9478880:0,452978,115847 +r1,13268:14580128,9478880:1765113,568825,115847 +k1,13216:12815015,9478880:-1765113 +) +(1,13216:12815015,9478880:1765113,452978,115847 +k1,13216:12815015,9478880:3277 +h1,13216:14576851,9478880:0,411205,112570 +) +k1,13216:14834521,9478880:254393 +k1,13216:16280358,9478880:254392 +(1,13216:16280358,9478880:0,452978,115847 +r1,13268:19804030,9478880:3523672,568825,115847 +k1,13216:16280358,9478880:-3523672 +) +(1,13216:16280358,9478880:3523672,452978,115847 +k1,13216:16280358,9478880:3277 +h1,13216:19800753,9478880:0,411205,112570 +) +k1,13216:20058422,9478880:254392 +k1,13216:22323459,9478880:254392 +k1,13216:22992639,9478880:254337 +k1,13216:25710529,9478880:254392 +k1,13216:27249428,9478880:254393 +k1,13216:29201858,9478880:254392 +k1,13216:31191643,9478880:254392 +k1,13216:31860823,9478880:254337 +k1,13217:32583029,9478880:0 +) +(1,13217:6764466,10343960:25818563,505283,134348 +k1,13216:10334033,10343960:258688 +k1,13216:11571175,10343960:258689 +k1,13216:16146720,10343960:258688 +k1,13216:19355839,10343960:258688 +k1,13216:20423897,10343960:258688 +k1,13216:21701671,10343960:258689 +k1,13216:24195792,10343960:258688 +k1,13216:25725878,10343960:258688 +k1,13216:28164950,10343960:258689 +k1,13216:29171404,10343960:258688 +k1,13216:31298523,10343960:258688 +k1,13217:32583029,10343960:0 +) +(1,13217:6764466,11209040:25818563,513147,126483 +(1,13216:6764466,11209040:0,452978,115847 +r1,13268:9233003,11209040:2468537,568825,115847 +k1,13216:6764466,11209040:-2468537 +) +(1,13216:6764466,11209040:2468537,452978,115847 +k1,13216:6764466,11209040:3277 +h1,13216:9229726,11209040:0,411205,112570 +) +k1,13216:9483429,11209040:250426 +k1,13216:12518479,11209040:250425 +k1,13216:13584173,11209040:250426 +k1,13216:14900870,11209040:250426 +k1,13216:18666646,11209040:250425 +k1,13216:21212143,11209040:250426 +k1,13216:22228684,11209040:250425 +k1,13216:23498195,11209040:250426 +k1,13216:27555607,11209040:250426 +k1,13216:30945862,11209040:250425 +k1,13216:31812326,11209040:250426 +k1,13217:32583029,11209040:0 +) +(1,13217:6764466,12074120:25818563,513147,134348 +k1,13216:7416766,12074120:237457 +k1,13216:9787458,12074120:237495 +k1,13216:11405797,12074120:237495 +k1,13216:12174789,12074120:237495 +k1,13216:14574972,12074120:237495 +k1,13216:16941732,12074120:237495 +k1,13216:18198312,12074120:237495 +k1,13216:19802888,12074120:237495 +k1,13216:20988035,12074120:237496 +k1,13216:23911851,12074120:237495 +k1,13216:26439174,12074120:237495 +k1,13216:27822894,12074120:237495 +k1,13216:29804302,12074120:237495 +k1,13216:32583029,12074120:0 +) +(1,13217:6764466,12939200:25818563,513147,134348 +k1,13216:7768938,12939200:242944 +k1,13216:8426680,12939200:242899 +k1,13216:11695421,12939200:242944 +k1,13216:16362045,12939200:242944 +k1,13216:19689112,12939200:242943 +k1,13216:21627472,12939200:242944 +k1,13216:22688305,12939200:242944 +k1,13216:24325200,12939200:242944 +k1,13216:25699950,12939200:242943 +k1,13216:26357693,12939200:242900 +k1,13216:28733834,12939200:242944 +k1,13216:29845129,12939200:242943 +k1,13216:31192355,12939200:242944 +k1,13216:32583029,12939200:0 +) +(1,13217:6764466,13804280:25818563,513147,134348 +k1,13216:8035952,13804280:252401 +k1,13216:10131225,13804280:252401 +k1,13216:11042918,13804280:252401 +k1,13216:12066022,13804280:252401 +k1,13216:14873016,13804280:252401 +k1,13216:16392883,13804280:252401 +k1,13216:17001144,13804280:252401 +k1,13216:19938556,13804280:252402 +k1,13216:21008846,13804280:252401 +k1,13216:24351270,13804280:252401 +k1,13216:25219709,13804280:252401 +k1,13216:27750797,13804280:252401 +h1,13216:28721385,13804280:0,0,0 +k1,13216:28973786,13804280:252401 +k1,13216:30035557,13804280:252401 +k1,13216:31786111,13804280:252401 +h1,13216:32583029,13804280:0,0,0 +k1,13216:32583029,13804280:0 +) +(1,13217:6764466,14669360:25818563,513147,134348 +k1,13216:7941478,14669360:229361 +k1,13216:9668337,14669360:229361 +k1,13216:10766049,14669360:229360 +k1,13216:12099692,14669360:229361 +k1,13216:13837036,14669360:229361 +k1,13216:15333863,14669360:229361 +k1,13216:16582309,14669360:229361 +k1,13216:19743094,14669360:229360 +k1,13216:20631747,14669360:229361 +k1,13216:21631811,14669360:229361 +k1,13216:23820698,14669360:229361 +k1,13216:25444010,14669360:229361 +k1,13216:28127693,14669360:229360 +(1,13216:28127693,14669360:0,452978,115847 +r1,13268:29892806,14669360:1765113,568825,115847 +k1,13216:28127693,14669360:-1765113 +) +(1,13216:28127693,14669360:1765113,452978,115847 +k1,13216:28127693,14669360:3277 +h1,13216:29889529,14669360:0,411205,112570 +) +k1,13216:30295837,14669360:229361 +k1,13216:31478747,14669360:229361 +k1,13216:32583029,14669360:0 +) +(1,13217:6764466,15534440:25818563,513147,115847 +k1,13216:8048823,15534440:191872 +(1,13216:8048823,15534440:0,452978,115847 +r1,13268:10517360,15534440:2468537,568825,115847 +k1,13216:8048823,15534440:-2468537 +) +(1,13216:8048823,15534440:2468537,452978,115847 +k1,13216:8048823,15534440:3277 +h1,13216:10514083,15534440:0,411205,112570 +) +k1,13216:10709231,15534440:191871 +k1,13216:12092548,15534440:191872 +(1,13216:12092548,15534440:0,452978,115847 +r1,13268:16319644,15534440:4227096,568825,115847 +k1,13216:12092548,15534440:-4227096 +) +(1,13216:12092548,15534440:4227096,452978,115847 +k1,13216:12092548,15534440:3277 +h1,13216:16316367,15534440:0,411205,112570 +) +k1,13216:16511515,15534440:191871 +k1,13216:17354815,15534440:191872 +k1,13216:19750662,15534440:191871 +k1,13216:22217944,15534440:191872 +k1,13216:26390473,15534440:191872 +k1,13216:27857019,15534440:191871 +k1,13216:29067976,15534440:191872 +k1,13216:30756034,15534440:191871 +k1,13216:31563944,15534440:191872 +k1,13216:32583029,15534440:0 +) +(1,13217:6764466,16399520:25818563,505283,126483 +g1,13216:8934363,16399520 +g1,13216:11002023,16399520 +g1,13216:11852680,16399520 +g1,13216:14725123,16399520 +g1,13216:16472968,16399520 +g1,13216:17203694,16399520 +g1,13216:19891325,16399520 +g1,13216:22869281,16399520 +g1,13216:23830038,16399520 +(1,13216:23830038,16399520:0,452978,115847 +r1,13268:25595151,16399520:1765113,568825,115847 +k1,13216:23830038,16399520:-1765113 +) +(1,13216:23830038,16399520:1765113,452978,115847 +k1,13216:23830038,16399520:3277 +h1,13216:25591874,16399520:0,411205,112570 +) +k1,13217:32583029,16399520:6935450 +g1,13217:32583029,16399520 +) +v1,13219:6764466,17084375:0,393216,0 +(1,13226:6764466,19446593:25818563,2755434,196608 +g1,13226:6764466,19446593 +g1,13226:6764466,19446593 +g1,13226:6567858,19446593 +(1,13226:6567858,19446593:0,2755434,196608 +r1,13268:32779637,19446593:26211779,2952042,196608 +k1,13226:6567857,19446593:-26211780 +) +(1,13226:6567858,19446593:26211779,2755434,196608 +[1,13226:6764466,19446593:25818563,2558826,0 +(1,13221:6764466,17312206:25818563,424439,79822 +(1,13220:6764466,17312206:0,0,0 +g1,13220:6764466,17312206 +g1,13220:6764466,17312206 +g1,13220:6436786,17312206 +(1,13220:6436786,17312206:0,0,0 +) +g1,13220:6764466,17312206 +) +g1,13221:8424236,17312206 +g1,13221:9420098,17312206 +k1,13221:9420098,17312206:0 +h1,13221:12407684,17312206:0,0,0 +k1,13221:32583028,17312206:20175344 +g1,13221:32583028,17312206 +) +(1,13222:6764466,17997061:25818563,424439,79822 +h1,13222:6764466,17997061:0,0,0 +k1,13222:6764466,17997061:0 +h1,13222:10415960,17997061:0,0,0 +k1,13222:32583028,17997061:22167068 +g1,13222:32583028,17997061 +) +(1,13223:6764466,18681916:25818563,424439,79822 +h1,13223:6764466,18681916:0,0,0 +k1,13223:6764466,18681916:0 +h1,13223:12075729,18681916:0,0,0 +k1,13223:32583029,18681916:20507300 +g1,13223:32583029,18681916 +) +(1,13224:6764466,19366771:25818563,424439,79822 +h1,13224:6764466,19366771:0,0,0 +k1,13224:6764466,19366771:0 +h1,13224:9752052,19366771:0,0,0 +k1,13224:32583028,19366771:22830976 +g1,13224:32583028,19366771 +) +] +) +g1,13226:32583029,19446593 +g1,13226:6764466,19446593 +g1,13226:6764466,19446593 +g1,13226:32583029,19446593 +g1,13226:32583029,19446593 +) +h1,13226:6764466,19643201:0,0,0 +(1,13230:6764466,20508281:25818563,513147,126483 +h1,13229:6764466,20508281:983040,0,0 +k1,13229:10690426,20508281:214656 +(1,13229:10690426,20508281:0,452978,115847 +r1,13268:13158963,20508281:2468537,568825,115847 +k1,13229:10690426,20508281:-2468537 +) +(1,13229:10690426,20508281:2468537,452978,115847 +k1,13229:10690426,20508281:3277 +h1,13229:13155686,20508281:0,411205,112570 +) +k1,13229:13547288,20508281:214655 +(1,13229:13547288,20508281:0,452978,115847 +r1,13268:17774384,20508281:4227096,568825,115847 +k1,13229:13547288,20508281:-4227096 +) +(1,13229:13547288,20508281:4227096,452978,115847 +k1,13229:13547288,20508281:3277 +h1,13229:17771107,20508281:0,411205,112570 +) +k1,13229:17989040,20508281:214656 +k1,13229:19395141,20508281:214656 +(1,13229:19395141,20508281:0,452978,115847 +r1,13268:21160254,20508281:1765113,568825,115847 +k1,13229:19395141,20508281:-1765113 +) +(1,13229:19395141,20508281:1765113,452978,115847 +k1,13229:19395141,20508281:3277 +h1,13229:21156977,20508281:0,411205,112570 +) +k1,13229:21374909,20508281:214655 +k1,13229:22581125,20508281:214656 +k1,13229:24149754,20508281:214655 +k1,13229:27221124,20508281:214656 +k1,13229:29017164,20508281:214656 +k1,13229:30516325,20508281:214655 +k1,13229:31835263,20508281:214656 +k1,13229:32583029,20508281:0 +) +(1,13230:6764466,21373361:25818563,505283,134348 +k1,13229:8465002,21373361:187310 +k1,13229:10350350,21373361:187310 +k1,13229:11406012,21373361:187310 +k1,13229:12584882,21373361:187310 +k1,13229:13388231,21373361:187311 +k1,13229:15462978,21373361:187310 +k1,13229:17472844,21373361:187310 +k1,13229:18679239,21373361:187310 +k1,13229:20255912,21373361:187310 +k1,13229:23583052,21373361:187310 +k1,13229:24386400,21373361:187310 +k1,13229:25344413,21373361:187310 +k1,13229:27491250,21373361:187311 +k1,13229:29888434,21373361:187310 +k1,13229:31406125,21373361:187310 +k1,13229:32051532,21373361:187310 +k1,13229:32583029,21373361:0 +) +(1,13230:6764466,22238441:25818563,505283,134348 +k1,13229:10468203,22238441:177900 +k1,13229:13430729,22238441:177901 +k1,13229:14627714,22238441:177900 +k1,13229:17737040,22238441:177901 +k1,13229:19926895,22238441:177900 +k1,13229:20849940,22238441:177901 +k1,13229:21679268,22238441:177900 +k1,13229:24291176,22238441:177901 +k1,13229:25488161,22238441:177900 +k1,13229:27055425,22238441:177901 +k1,13229:30187033,22238441:177900 +k1,13229:32583029,22238441:0 +) +(1,13230:6764466,23103521:25818563,513147,134348 +g1,13229:8531316,23103521 +g1,13229:9749630,23103521 +g1,13229:11908385,23103521 +g1,13229:13805652,23103521 +g1,13229:17442900,23103521 +g1,13229:20528990,23103521 +g1,13229:23512844,23103521 +g1,13229:24703633,23103521 +g1,13229:25969133,23103521 +k1,13230:32583029,23103521:3777498 +g1,13230:32583029,23103521 +) +] +g1,13230:32583029,23237869 +) +h1,13230:6630773,23237869:0,0,0 +(1,13232:6630773,25354687:25952256,555811,139133 +(1,13232:6630773,25354687:2450326,534184,12975 +g1,13232:6630773,25354687 +g1,13232:9081099,25354687 +) +g1,13232:12629350,25354687 +$1,13232:12629350,25354687 +$1,13232:13144791,25354687 +g1,13232:13369711,25354687 +g1,13232:14936939,25354687 +g1,13232:19309895,25354687 +$1,13232:19309895,25354687 +$1,13232:19813801,25354687 +k1,13232:32583029,25354687:12769228 +g1,13232:32583029,25354687 +) +(1,13238:6630773,26612983:25952256,513147,126483 +k1,13237:7744972,26612983:190797 +k1,13237:9028254,26612983:190797 +k1,13237:10238136,26612983:190797 +k1,13237:12082407,26612983:190798 +k1,13237:15299001,26612983:190797 +k1,13237:16175960,26612983:190797 +k1,13237:17314408,26612983:190797 +k1,13237:20515929,26612983:190797 +$1,13237:20515929,26612983 +$1,13237:20960918,26612983 +k1,13237:21151715,26612983:190797 +k1,13237:22414681,26612983:190797 +k1,13237:25502825,26612983:190797 +k1,13237:28083066,26612983:190798 +k1,13237:29292948,26612983:190797 +k1,13237:30576230,26612983:190797 +k1,13237:31426319,26612983:190797 +k1,13237:32583029,26612983:0 +) +(1,13238:6630773,27478063:25952256,513147,134348 +g1,13237:7489294,27478063 +g1,13237:9385250,27478063 +g1,13237:12369104,27478063 +g1,13237:13329861,27478063 +g1,13237:15956544,27478063 +g1,13237:16926476,27478063 +k1,13238:32583029,27478063:12531797 +g1,13238:32583029,27478063 +) +v1,13240:6630773,28162918:0,393216,0 +(1,13253:6630773,30924958:25952256,3155256,196608 +g1,13253:6630773,30924958 +g1,13253:6630773,30924958 +g1,13253:6434165,30924958 +(1,13253:6434165,30924958:0,3155256,196608 +r1,13268:32779637,30924958:26345472,3351864,196608 +k1,13253:6434165,30924958:-26345472 +) +(1,13253:6434165,30924958:26345472,3155256,196608 +[1,13253:6630773,30924958:25952256,2958648,0 +(1,13242:6630773,28397355:25952256,431045,106246 +(1,13241:6630773,28397355:0,0,0 +g1,13241:6630773,28397355 +g1,13241:6630773,28397355 +g1,13241:6303093,28397355 +(1,13241:6303093,28397355:0,0,0 +) +g1,13241:6630773,28397355 +) +k1,13242:6630773,28397355:0 +g1,13242:8622497,28397355 +g1,13242:9286405,28397355 +g1,13242:13269853,28397355 +g1,13242:13933761,28397355 +g1,13242:14597669,28397355 +g1,13242:18249163,28397355 +g1,13242:20572841,28397355 +g1,13242:21236749,28397355 +h1,13242:24556288,28397355:0,0,0 +k1,13242:32583029,28397355:8026741 +g1,13242:32583029,28397355 +) +(1,13246:6630773,29213282:25952256,424439,79822 +(1,13244:6630773,29213282:0,0,0 +g1,13244:6630773,29213282 +g1,13244:6630773,29213282 +g1,13244:6303093,29213282 +(1,13244:6303093,29213282:0,0,0 +) +g1,13244:6630773,29213282 +) +g1,13246:7626635,29213282 +g1,13246:8954451,29213282 +h1,13246:11942036,29213282:0,0,0 +k1,13246:32583028,29213282:20640992 +g1,13246:32583028,29213282 +) +(1,13248:6630773,30029209:25952256,431045,106246 +(1,13247:6630773,30029209:0,0,0 +g1,13247:6630773,30029209 +g1,13247:6630773,30029209 +g1,13247:6303093,30029209 +(1,13247:6303093,30029209:0,0,0 +) +g1,13247:6630773,30029209 +) +k1,13248:6630773,30029209:0 +g1,13248:8622497,30029209 +g1,13248:9286405,30029209 +g1,13248:13269853,30029209 +g1,13248:13933761,30029209 +g1,13248:14597669,30029209 +g1,13248:18249163,30029209 +g1,13248:20572841,30029209 +g1,13248:21236749,30029209 +h1,13248:24888242,30029209:0,0,0 +k1,13248:32583029,30029209:7694787 +g1,13248:32583029,30029209 +) +(1,13252:6630773,30845136:25952256,424439,79822 +(1,13250:6630773,30845136:0,0,0 +g1,13250:6630773,30845136 +g1,13250:6630773,30845136 +g1,13250:6303093,30845136 +(1,13250:6303093,30845136:0,0,0 +) +g1,13250:6630773,30845136 +) +g1,13252:7626635,30845136 +g1,13252:8954451,30845136 +h1,13252:11942036,30845136:0,0,0 +k1,13252:32583028,30845136:20640992 +g1,13252:32583028,30845136 +) +] +) +g1,13253:32583029,30924958 +g1,13253:6630773,30924958 +g1,13253:6630773,30924958 +g1,13253:32583029,30924958 +g1,13253:32583029,30924958 +) +h1,13253:6630773,31121566:0,0,0 +(1,13257:6630773,31986646:25952256,513147,115847 +h1,13256:6630773,31986646:983040,0,0 +k1,13256:10655031,31986646:251350 +(1,13256:10655031,31986646:0,452978,115847 +r1,13268:14178703,31986646:3523672,568825,115847 +k1,13256:10655031,31986646:-3523672 +) +(1,13256:10655031,31986646:3523672,452978,115847 +k1,13256:10655031,31986646:3277 +h1,13256:14175426,31986646:0,411205,112570 +) +k1,13256:14603724,31986646:251351 +k1,13256:17945097,31986646:251350 +k1,13256:20225443,31986646:251351 +k1,13256:21762609,31986646:251350 +k1,13256:24025914,31986646:251350 +k1,13256:25296350,31986646:251351 +k1,13256:27572762,31986646:251350 +k1,13256:28483405,31986646:251351 +k1,13256:31189078,31986646:251350 +k1,13256:32583029,31986646:0 +) +(1,13257:6630773,32851726:25952256,513147,126483 +g1,13256:7849087,32851726 +g1,13256:9701789,32851726 +g1,13256:11985063,32851726 +g1,13256:12870454,32851726 +g1,13256:15145208,32851726 +g1,13256:16292088,32851726 +(1,13256:16292088,32851726:0,452978,115847 +r1,13268:18057201,32851726:1765113,568825,115847 +k1,13256:16292088,32851726:-1765113 +) +(1,13256:16292088,32851726:1765113,452978,115847 +k1,13256:16292088,32851726:3277 +h1,13256:18053924,32851726:0,411205,112570 +) +k1,13257:32583029,32851726:14473400 +g1,13257:32583029,32851726 +) +v1,13259:6630773,33716806:0,393216,0 +(1,13260:6630773,36592386:25952256,3268796,0 +g1,13260:6630773,36592386 +g1,13260:6237557,36592386 +r1,13268:6368629,36592386:131072,3268796,0 +g1,13260:6567858,36592386 +g1,13260:6764466,36592386 +[1,13260:6764466,36592386:25818563,3268796,0 +(1,13260:6764466,33989283:25818563,665693,196608 +(1,13259:6764466,33989283:0,665693,196608 +r1,13268:7868133,33989283:1103667,862301,196608 +k1,13259:6764466,33989283:-1103667 +) +(1,13259:6764466,33989283:1103667,665693,196608 +) +k1,13259:8073138,33989283:205005 +k1,13259:9391067,33989283:327680 +k1,13259:11769245,33989283:205004 +k1,13259:12993335,33989283:205005 +k1,13259:15758832,33989283:205005 +k1,13259:16579875,33989283:205005 +k1,13259:17803964,33989283:205004 +k1,13259:21659324,33989283:205005 +k1,13259:25801077,33989283:205005 +k1,13259:28035077,33989283:205005 +k1,13259:29312250,33989283:205004 +k1,13259:30847636,33989283:205005 +k1,13259:32583029,33989283:0 +) +(1,13260:6764466,34854363:25818563,513147,126483 +k1,13259:11834461,34854363:164625 +k1,13259:14957381,34854363:164625 +k1,13259:16542827,34854363:164625 +k1,13259:18200362,34854363:164625 +k1,13259:19384072,34854363:164625 +k1,13259:23355684,34854363:164626 +k1,13259:25558479,34854363:164625 +k1,13259:26339142,34854363:164625 +k1,13259:27522852,34854363:164625 +k1,13259:30466204,34854363:164625 +(1,13259:30466204,34854363:0,452978,115847 +r1,13268:32583029,34854363:2116825,568825,115847 +k1,13259:30466204,34854363:-2116825 +) +(1,13259:30466204,34854363:2116825,452978,115847 +k1,13259:30466204,34854363:3277 +h1,13259:32579752,34854363:0,411205,112570 +) +k1,13259:32583029,34854363:0 +) +(1,13260:6764466,35719443:25818563,513147,134348 +k1,13259:8679529,35719443:171805 +k1,13259:12213331,35719443:171805 +k1,13259:13194506,35719443:171805 +k1,13259:14385396,35719443:171805 +k1,13259:17185195,35719443:171805 +k1,13259:18548445,35719443:171805 +k1,13259:20050630,35719443:171804 +k1,13259:21326717,35719443:171805 +k1,13259:22366874,35719443:171805 +k1,13259:24742655,35719443:171805 +k1,13259:26482081,35719443:171805 +k1,13259:27672971,35719443:171805 +k1,13259:30623503,35719443:171805 +k1,13259:32583029,35719443:0 +) +(1,13260:6764466,36584523:25818563,513147,7863 +g1,13259:10770681,36584523 +g1,13259:12792466,36584523 +g1,13259:14010780,36584523 +g1,13259:16664332,36584523 +g1,13259:18376787,36584523 +g1,13259:19523667,36584523 +g1,13259:20741981,36584523 +g1,13259:24412652,36584523 +g1,13259:25271173,36584523 +g1,13259:26489487,36584523 +k1,13260:32583029,36584523:2318668 +g1,13260:32583029,36584523 +) +] +g1,13260:32583029,36592386 +) +h1,13260:6630773,36592386:0,0,0 +(1,13263:6630773,39423546:25952256,32768,229376 +(1,13263:6630773,39423546:0,32768,229376 +(1,13263:6630773,39423546:5505024,32768,229376 +r1,13268:12135797,39423546:5505024,262144,229376 +) +k1,13263:6630773,39423546:-5505024 +) +(1,13263:6630773,39423546:25952256,32768,0 +r1,13268:32583029,39423546:25952256,32768,0 +) +) +(1,13263:6630773,41055398:25952256,568590,9437 +(1,13263:6630773,41055398:1974731,568590,0 +g1,13263:6630773,41055398 +g1,13263:8605504,41055398 +) +$1,13263:8605504,41055398 +$1,13263:8990069,41055398 +k1,13263:32583029,41055398:21899772 +g1,13263:32583029,41055398 +) +(1,13267:6630773,42313694:25952256,505283,126483 +k1,13266:8010003,42313694:204170 +$1,13266:8010003,42313694 +$1,13266:8330474,42313694 +k1,13266:9939080,42313694:204169 +k1,13266:10674747,42313694:204170 +k1,13266:12733586,42313694:204170 +k1,13266:13747125,42313694:204169 +k1,13266:16922042,42313694:204170 +$1,13266:16922042,42313694 +$1,13266:17242513,42313694 +k1,13266:21614773,42313694:204170 +k1,13266:22288836,42313694:204170 +k1,13266:23597287,42313694:204169 +k1,13266:24549223,42313694:204170 +k1,13266:27125141,42313694:204170 +k1,13266:27980738,42313694:204169 +k1,13266:29316715,42313694:204170 +k1,13266:32583029,42313694:0 +) +(1,13267:6630773,43178774:25952256,513147,102891 +k1,13266:9589887,43178774:243302 +k1,13266:10780841,43178774:243303 +k1,13266:12909614,43178774:243302 +k1,13266:13941314,43178774:243302 +k1,13266:17028224,43178774:243303 +k1,13266:20221301,43178774:243302 +k1,13266:20996100,43178774:243302 +k1,13266:24197043,43178774:243303 +k1,13266:25631790,43178774:243302 +k1,13266:26894177,43178774:243302 +$1,13266:26894177,43178774 +$1,13266:27214648,43178774 +k1,13266:31452370,43178774:243303 +k1,13266:32227169,43178774:243302 +k1,13266:32583029,43178774:0 +) +(1,13267:6630773,44043854:25952256,513147,126483 +k1,13266:9775081,44043854:263345 +k1,13266:13951582,44043854:263346 +k1,13266:14684820,44043854:263345 +k1,13266:15479663,44043854:263346 +k1,13266:17344708,44043854:263345 +k1,13266:20913035,44043854:263346 +k1,13266:22689606,44043854:263345 +k1,13266:23604379,44043854:263345 +k1,13266:26628101,44043854:263346 +k1,13266:27662149,44043854:263345 +k1,13266:30641307,44043854:263346 +k1,13266:31563944,44043854:263345 +k1,13266:32583029,44043854:0 +) +(1,13267:6630773,44908934:25952256,513147,134348 +k1,13266:8558187,44908934:189399 +k1,13266:11036759,44908934:189399 +k1,13266:11582018,44908934:189399 +k1,13266:14529172,44908934:189399 +k1,13266:16572585,44908934:189399 +k1,13266:17444869,44908934:189399 +k1,13266:18653353,44908934:189399 +k1,13266:21558564,44908934:189399 +k1,13266:22407255,44908934:189399 +k1,13266:22952514,44908934:189399 +k1,13266:26328273,44908934:189399 +k1,13266:29152875,44908934:189399 +k1,13266:30514713,44908934:189399 +k1,13266:32583029,44908934:0 +) +] +(1,13268:32583029,45706769:0,0,0 +g1,13268:32583029,45706769 +) +) +] +(1,13268:6630773,47279633:25952256,0,0 +h1,13268:6630773,47279633:25952256,0,0 +) +] +(1,13268:4262630,4025873:0,0,0 +[1,13268:-473656,4025873:0,0,0 +(1,13268:-473656,-710413:0,0,0 +(1,13268:-473656,-710413:0,0,0 +g1,13268:-473656,-710413 +) +g1,13268:-473656,-710413 ) ] ) ] !26775 -}212 -Input:2214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2216:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}213 Input:2217:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2218:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2219:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -235265,1160 +235463,1160 @@ Input:2223:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2224:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2225:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{213 -[1,13341:4262630,47279633:28320399,43253760,0 -(1,13341:4262630,4025873:0,0,0 -[1,13341:-473656,4025873:0,0,0 -(1,13341:-473656,-710413:0,0,0 -(1,13341:-473656,-644877:0,0,0 -k1,13341:-473656,-644877:-65536 +{214 +[1,13339:4262630,47279633:28320399,43253760,0 +(1,13339:4262630,4025873:0,0,0 +[1,13339:-473656,4025873:0,0,0 +(1,13339:-473656,-710413:0,0,0 +(1,13339:-473656,-644877:0,0,0 +k1,13339:-473656,-644877:-65536 ) -(1,13341:-473656,4736287:0,0,0 -k1,13341:-473656,4736287:5209943 +(1,13339:-473656,4736287:0,0,0 +k1,13339:-473656,4736287:5209943 ) -g1,13341:-473656,-710413 +g1,13339:-473656,-710413 ) ] ) -[1,13341:6630773,47279633:25952256,43253760,0 -[1,13341:6630773,4812305:25952256,786432,0 -(1,13341:6630773,4812305:25952256,513147,126483 -(1,13341:6630773,4812305:25952256,513147,126483 -g1,13341:3078558,4812305 -[1,13341:3078558,4812305:0,0,0 -(1,13341:3078558,2439708:0,1703936,0 -k1,13341:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13341:2537886,2439708:1179648,16384,0 +[1,13339:6630773,47279633:25952256,43253760,0 +[1,13339:6630773,4812305:25952256,786432,0 +(1,13339:6630773,4812305:25952256,513147,126483 +(1,13339:6630773,4812305:25952256,513147,126483 +g1,13339:3078558,4812305 +[1,13339:3078558,4812305:0,0,0 +(1,13339:3078558,2439708:0,1703936,0 +k1,13339:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13339:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13341:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13339:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13341:3078558,4812305:0,0,0 -(1,13341:3078558,2439708:0,1703936,0 -g1,13341:29030814,2439708 -g1,13341:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13341:36151628,1915420:16384,1179648,0 +[1,13339:3078558,4812305:0,0,0 +(1,13339:3078558,2439708:0,1703936,0 +g1,13339:29030814,2439708 +g1,13339:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13339:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13341:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13339:37855564,2439708:1179648,16384,0 ) ) -k1,13341:3078556,2439708:-34777008 +k1,13339:3078556,2439708:-34777008 ) ] -[1,13341:3078558,4812305:0,0,0 -(1,13341:3078558,49800853:0,16384,2228224 -k1,13341:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13341:2537886,49800853:1179648,16384,0 +[1,13339:3078558,4812305:0,0,0 +(1,13339:3078558,49800853:0,16384,2228224 +k1,13339:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13339:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13341:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13339:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13341:3078558,4812305:0,0,0 -(1,13341:3078558,49800853:0,16384,2228224 -g1,13341:29030814,49800853 -g1,13341:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13341:36151628,51504789:16384,1179648,0 +[1,13339:3078558,4812305:0,0,0 +(1,13339:3078558,49800853:0,16384,2228224 +g1,13339:29030814,49800853 +g1,13339:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13339:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13341:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13339:37855564,49800853:1179648,16384,0 ) ) -k1,13341:3078556,49800853:-34777008 +k1,13339:3078556,49800853:-34777008 ) ] -g1,13341:6630773,4812305 -k1,13341:19575446,4812305:11749296 -g1,13341:21198117,4812305 -g1,13341:21985204,4812305 -g1,13341:24539797,4812305 -g1,13341:25949476,4812305 -g1,13341:28728857,4812305 -g1,13341:29852144,4812305 -) -) -] -[1,13341:6630773,45706769:25952256,40108032,0 -(1,13341:6630773,45706769:25952256,40108032,0 -(1,13341:6630773,45706769:0,0,0 -g1,13341:6630773,45706769 -) -[1,13341:6630773,45706769:25952256,40108032,0 -(1,13269:6630773,6254097:25952256,513147,134348 -k1,13268:7975626,6254097:153408 -k1,13268:8484894,6254097:153408 -k1,13268:10517875,6254097:153408 -k1,13268:14031314,6254097:153408 -k1,13268:16471928,6254097:153407 -k1,13268:17434706,6254097:153408 -k1,13268:20948145,6254097:153408 -k1,13268:21729388,6254097:153408 -k1,13268:22297593,6254097:153362 -k1,13268:24147728,6254097:153408 -k1,13268:25405418,6254097:153408 -k1,13268:26306592,6254097:153408 -k1,13268:29668643,6254097:153408 -k1,13268:32583029,6254097:0 -) -(1,13269:6630773,7119177:25952256,513147,134348 -g1,13268:8565395,7119177 -g1,13268:11790421,7119177 -(1,13268:11790421,7119177:0,452978,115847 -r1,13341:13907246,7119177:2116825,568825,115847 -k1,13268:11790421,7119177:-2116825 -) -(1,13268:11790421,7119177:2116825,452978,115847 -k1,13268:11790421,7119177:3277 -h1,13268:13903969,7119177:0,411205,112570 -) -g1,13268:14280145,7119177 -(1,13268:14280145,7119177:0,452978,115847 -r1,13341:15693546,7119177:1413401,568825,115847 -k1,13268:14280145,7119177:-1413401 -) -(1,13268:14280145,7119177:1413401,452978,115847 -k1,13268:14280145,7119177:3277 -h1,13268:15690269,7119177:0,411205,112570 -) -g1,13268:16066445,7119177 -g1,13268:17457119,7119177 -(1,13268:17457119,7119177:0,452978,115847 -r1,13341:18870520,7119177:1413401,568825,115847 -k1,13268:17457119,7119177:-1413401 -) -(1,13268:17457119,7119177:1413401,452978,115847 -k1,13268:17457119,7119177:3277 -h1,13268:18867243,7119177:0,411205,112570 -) -g1,13268:19069749,7119177 -g1,13268:19951863,7119177 -g1,13268:21545043,7119177 -(1,13268:21545043,7119177:0,452978,115847 -r1,13341:24365292,7119177:2820249,568825,115847 -k1,13268:21545043,7119177:-2820249 -) -(1,13268:21545043,7119177:2820249,452978,115847 -k1,13268:21545043,7119177:3277 -h1,13268:24362015,7119177:0,411205,112570 -) -k1,13269:32583029,7119177:8165309 -g1,13269:32583029,7119177 -) -(1,13271:6630773,7984257:25952256,513147,134348 -h1,13270:6630773,7984257:983040,0,0 -k1,13270:10782042,7984257:205346 -k1,13270:12833537,7984257:205346 -k1,13270:16212792,7984257:205346 -k1,13270:17034176,7984257:205346 -k1,13270:18733088,7984257:205346 -k1,13270:19294294,7984257:205346 -k1,13270:20911286,7984257:205346 -k1,13270:22135718,7984257:205347 -$1,13270:22135718,7984257 -$1,13270:22456189,7984257 -k1,13270:24065972,7984257:205346 -k1,13270:25375600,7984257:205346 -k1,13270:26328712,7984257:205346 -k1,13270:29061126,7984257:205346 -k1,13270:29925764,7984257:205346 -k1,13270:30817272,7984257:205346 -k1,13270:31378478,7984257:205346 -k1,13271:32583029,7984257:0 -) -(1,13271:6630773,8849337:25952256,513147,126483 -k1,13270:7983857,8849337:257322 -k1,13270:9608261,8849337:257323 -k1,13270:10524875,8849337:257322 -k1,13270:11138058,8849337:257323 -k1,13270:13208106,8849337:257322 -k1,13270:15453136,8849337:257323 -k1,13270:16571601,8849337:257322 -k1,13270:20797783,8849337:257322 -k1,13270:22449057,8849337:257323 -k1,13270:25732176,8849337:257322 -k1,13270:27502725,8849337:257323 -k1,13270:28411475,8849337:257322 -k1,13270:29356271,8849337:257323 -k1,13270:31931601,8849337:257322 -k1,13270:32583029,8849337:0 -) -(1,13271:6630773,9714417:25952256,513147,126483 -k1,13270:11087146,9714417:210951 -k1,13270:12166448,9714417:210950 -k1,13270:13481681,9714417:210951 -k1,13270:14785117,9714417:210951 -k1,13270:15351928,9714417:210951 -k1,13270:18110918,9714417:210950 -k1,13270:18973297,9714417:210951 -k1,13270:21853529,9714417:210951 -k1,13270:22420339,9714417:210950 -$1,13270:22420339,9714417 -$1,13270:22740810,9714417 -k1,13270:24529868,9714417:210951 -k1,13270:25228395,9714417:210939 -k1,13270:27982798,9714417:210951 -k1,13270:29687315,9714417:210951 -k1,13270:30584427,9714417:210950 -(1,13270:30584427,9714417:0,414482,115847 -r1,13341:31840581,9714417:1256154,530329,115847 -k1,13270:30584427,9714417:-1256154 -) -(1,13270:30584427,9714417:1256154,414482,115847 -k1,13270:30584427,9714417:97232 -h1,13270:31837304,9714417:0,411205,112570 -) -k1,13270:32051532,9714417:210951 -k1,13270:32583029,9714417:0 -) -(1,13271:6630773,10579497:25952256,513147,138281 -k1,13270:8274567,10579497:231493 -k1,13270:9192222,10579497:231493 -$1,13270:9192222,10579497 -$1,13270:9744035,10579497 -k1,13270:9975529,10579497:231494 -k1,13270:10738519,10579497:231493 -k1,13270:14048238,10579497:231493 -k1,13270:15041259,10579497:231493 -$1,13270:15041259,10579497 -$1,13270:15543920,10579497 -k1,13270:15949084,10579497:231494 -k1,13270:17134126,10579497:231493 -k1,13270:18458104,10579497:231493 -k1,13270:19603825,10579497:231493 -k1,13270:24655492,10579497:231494 -k1,13270:26078430,10579497:231493 -k1,13270:27342771,10579497:231493 -k1,13270:32583029,10579497:0 -) -(1,13271:6630773,11444577:25952256,513147,134348 -k1,13270:7460014,11444577:177813 -k1,13270:9785443,11444577:177814 -k1,13270:10729372,11444577:177813 -k1,13270:12750057,11444577:177813 -k1,13270:13579299,11444577:177814 -k1,13270:14776197,11444577:177813 -k1,13270:16028145,11444577:177813 -k1,13270:17397404,11444577:177814 -k1,13270:19110726,11444577:177813 -k1,13270:19947832,11444577:177814 -k1,13270:21144730,11444577:177813 -k1,13270:22753849,11444577:177813 -(1,13270:22960943,11444577:0,414482,115847 -r1,13341:23513673,11444577:552730,530329,115847 -k1,13270:22960943,11444577:-552730 -) -(1,13270:22960943,11444577:552730,414482,115847 -k1,13270:22960943,11444577:97232 -h1,13270:23510396,11444577:0,411205,112570 -) -k1,13270:24072251,11444577:177814 -k1,13270:28046565,11444577:177813 -(1,13270:28253659,11444577:0,452978,115847 -r1,13341:32323507,11444577:4069848,568825,115847 -k1,13270:28253659,11444577:-4069848 -) -(1,13270:28253659,11444577:4069848,452978,115847 -k1,13270:28253659,11444577:97232 -h1,13270:32320230,11444577:0,411205,112570 -) -k1,13270:32583029,11444577:0 -) -(1,13271:6630773,12309657:25952256,513147,134348 -k1,13270:8132102,12309657:265320 -k1,13270:10676109,12309657:265320 -h1,13270:12045156,12309657:0,0,0 -k1,13270:12310476,12309657:265320 -k1,13270:13385165,12309657:265319 -k1,13270:15148638,12309657:265320 -h1,13270:16344015,12309657:0,0,0 -k1,13270:16609335,12309657:265320 -k1,13270:17822306,12309657:265320 -k1,13270:18443486,12309657:265320 -k1,13270:21264055,12309657:265320 -k1,13270:24901201,12309657:265319 -k1,13270:25825813,12309657:265320 -k1,13270:28078840,12309657:265320 -k1,13270:31391584,12309657:265320 -k1,13270:32583029,12309657:0 -) -(1,13271:6630773,13174737:25952256,513147,134348 -g1,13270:9108689,13174737 -h1,13270:10079277,13174737:0,0,0 -g1,13270:10278506,13174737 -g1,13270:11287105,13174737 -g1,13270:12984487,13174737 -h1,13270:14179864,13174737:0,0,0 -g1,13270:14379093,13174737 -g1,13270:15525973,13174737 -g1,13270:18716921,13174737 -g1,13270:19575442,13174737 -g1,13270:21283310,13174737 -g1,13270:22575024,13174737 -g1,13270:23390291,13174737 -g1,13270:25577227,13174737 -k1,13271:32583029,13174737:4731703 -g1,13271:32583029,13174737 -) -v1,13273:6630773,13859592:0,393216,0 -(1,13278:6630773,14891736:25952256,1425360,196608 -g1,13278:6630773,14891736 -g1,13278:6630773,14891736 -g1,13278:6434165,14891736 -(1,13278:6434165,14891736:0,1425360,196608 -r1,13341:32779637,14891736:26345472,1621968,196608 -k1,13278:6434165,14891736:-26345472 -) -(1,13278:6434165,14891736:26345472,1425360,196608 -[1,13278:6630773,14891736:25952256,1228752,0 -(1,13275:6630773,14094029:25952256,431045,86428 -(1,13274:6630773,14094029:0,0,0 -g1,13274:6630773,14094029 -g1,13274:6630773,14094029 -g1,13274:6303093,14094029 -(1,13274:6303093,14094029:0,0,0 -) -g1,13274:6630773,14094029 -) -g1,13275:7958589,14094029 -g1,13275:8954451,14094029 -g1,13275:15925483,14094029 -g1,13275:16589391,14094029 -g1,13275:20572839,14094029 -g1,13275:22232609,14094029 -g1,13275:22896517,14094029 -g1,13275:24888241,14094029 -g1,13275:28207781,14094029 -g1,13275:29867551,14094029 -g1,13275:30531459,14094029 -k1,13275:30531459,14094029:0 -h1,13275:32523183,14094029:0,0,0 -k1,13275:32583029,14094029:59846 -g1,13275:32583029,14094029 -) -(1,13276:6630773,14778884:25952256,431045,112852 -h1,13276:6630773,14778884:0,0,0 -g1,13276:6962727,14778884 -g1,13276:7294681,14778884 -g1,13276:7626635,14778884 -g1,13276:7958589,14778884 -g1,13276:8290543,14778884 -g1,13276:8622497,14778884 -g1,13276:8954451,14778884 -g1,13276:9286405,14778884 -g1,13276:9618359,14778884 -g1,13276:9950313,14778884 -g1,13276:10282267,14778884 -g1,13276:10614221,14778884 -g1,13276:10946175,14778884 -g1,13276:11278129,14778884 -g1,13276:11610083,14778884 -g1,13276:11942037,14778884 -g1,13276:12273991,14778884 -g1,13276:12605945,14778884 -g1,13276:14597669,14778884 -g1,13276:15261577,14778884 -g1,13276:21236749,14778884 -g1,13276:23228473,14778884 -g1,13276:24888243,14778884 -g1,13276:25552151,14778884 -h1,13276:27211921,14778884:0,0,0 -k1,13276:32583029,14778884:5371108 -g1,13276:32583029,14778884 -) -] -) -g1,13278:32583029,14891736 -g1,13278:6630773,14891736 -g1,13278:6630773,14891736 -g1,13278:32583029,14891736 -g1,13278:32583029,14891736 -) -h1,13278:6630773,15088344:0,0,0 -(1,13282:6630773,15953424:25952256,513147,115847 -h1,13281:6630773,15953424:983040,0,0 -k1,13281:9125448,15953424:314948 -k1,13281:11983849,15953424:314949 -(1,13281:11983849,15953424:0,452978,115847 -r1,13341:16053697,15953424:4069848,568825,115847 -k1,13281:11983849,15953424:-4069848 -) -(1,13281:11983849,15953424:4069848,452978,115847 -k1,13281:11983849,15953424:97232 -h1,13281:16050420,15953424:0,411205,112570 -) -k1,13281:16368645,15953424:314948 -k1,13281:17215091,15953424:314949 -k1,13281:18942340,15953424:314948 -k1,13281:19943451,15953424:314949 -k1,13281:21577639,15953424:314948 -k1,13281:23630602,15953424:314948 -k1,13281:24604843,15953424:314949 -k1,13281:27431131,15953424:314948 -(1,13281:27431131,15953424:0,452978,115847 -r1,13341:30603091,15953424:3171960,568825,115847 -k1,13281:27431131,15953424:-3171960 -) -(1,13281:27431131,15953424:3171960,452978,115847 -k1,13281:27431131,15953424:3277 -h1,13281:30599814,15953424:0,411205,112570 -) -k1,13281:30918040,15953424:314949 -k1,13281:31764485,15953424:314948 -k1,13282:32583029,15953424:0 -) -(1,13282:6630773,16818504:25952256,513147,126483 -k1,13281:9252323,16818504:255700 -k1,13281:10269551,16818504:255700 -k1,13281:10881110,16818504:255699 -k1,13281:13894565,16818504:255700 -k1,13281:16304433,16818504:255700 -k1,13281:17756820,16818504:255700 -k1,13281:19692862,16818504:255699 -k1,13281:23085115,16818504:255700 -k1,13281:24908436,16818504:255700 -k1,13281:29409558,16818504:255700 -$1,13281:29409558,16818504 -[1,13281:29409558,16818504:502661,458096,7864 -(1,13281:29880105,16810640:0,450232,0 -) -(1,13281:29409558,16818504:502661,355205,7864 -) -] -$1,13281:29912219,16818504 -k1,13281:30341588,16818504:255699 -k1,13281:31128785,16818504:255700 -k1,13282:32583029,16818504:0 -) -(1,13282:6630773,17683584:25952256,513147,134348 -k1,13281:8707696,17683584:243881 -k1,13281:11240751,17683584:243882 -k1,13281:12503717,17683584:243881 -k1,13281:14427941,17683584:243881 -k1,13281:15331114,17683584:243881 -$1,13281:15331114,17683584 -$1,13281:15782657,17683584 -k1,13281:16026539,17683584:243882 -k1,13281:17204963,17683584:243881 -k1,13281:18135006,17683584:243881 -k1,13281:19397972,17683584:243881 -k1,13281:20881795,17683584:243882 -k1,13281:24771444,17683584:243881 -k1,13281:26934219,17683584:243881 -$1,13281:26934219,17683584 -$1,13281:27385762,17683584 -k1,13281:27629643,17683584:243881 -k1,13281:28405022,17683584:243882 -k1,13281:29667988,17683584:243881 -k1,13282:32583029,17683584:0 -) -(1,13282:6630773,18548664:25952256,513147,126483 -k1,13281:8662308,18548664:293520 -k1,13281:9615121,18548664:293521 -k1,13281:10927726,18548664:293520 -k1,13281:13921329,18548664:293520 -k1,13281:17867826,18548664:293520 -k1,13281:18921565,18548664:293521 -k1,13281:21654335,18548664:293520 -(1,13281:21654335,18548664:0,452978,115847 -r1,13341:24474584,18548664:2820249,568825,115847 -k1,13281:21654335,18548664:-2820249 -) -(1,13281:21654335,18548664:2820249,452978,115847 -k1,13281:21654335,18548664:3277 -h1,13281:24471307,18548664:0,411205,112570 -) -k1,13281:24768104,18548664:293520 -k1,13281:27342932,18548664:293520 -k1,13281:27992313,18548664:293521 -k1,13281:31391584,18548664:293520 -k1,13281:32583029,18548664:0 -) -(1,13282:6630773,19413744:25952256,505283,134348 -(1,13281:6816895,19413744:0,452978,115847 -r1,13341:15616245,19413744:8799350,568825,115847 -k1,13281:6816895,19413744:-8799350 -) -(1,13281:6816895,19413744:8799350,452978,115847 -g1,13281:11040714,19413744 -g1,13281:11744138,19413744 -h1,13281:15612968,19413744:0,411205,112570 -) -g1,13281:16022568,19413744 -g1,13281:18510970,19413744 -(1,13281:18510970,19413744:0,435480,115847 -r1,13341:20627796,19413744:2116826,551327,115847 -k1,13281:18510970,19413744:-2116826 -) -(1,13281:18510970,19413744:2116826,435480,115847 -g1,13281:19569383,19413744 -g1,13281:20272807,19413744 -h1,13281:20624519,19413744:0,411205,112570 -) -g1,13281:21000695,19413744 -g1,13281:22272093,19413744 -g1,13281:23869205,19413744 -g1,13281:24936786,19413744 -g1,13281:26228500,19413744 -(1,13281:26228500,19413744:0,435480,115847 -r1,13341:28345326,19413744:2116826,551327,115847 -k1,13281:26228500,19413744:-2116826 -) -(1,13281:26228500,19413744:2116826,435480,115847 -g1,13281:27286913,19413744 -g1,13281:27990337,19413744 -h1,13281:28342049,19413744:0,411205,112570 -) -g1,13281:28544555,19413744 -k1,13282:32583029,19413744:1658862 -g1,13282:32583029,19413744 -) -v1,13284:6630773,20098599:0,393216,0 -(1,13301:6630773,28007421:25952256,8302038,196608 -g1,13301:6630773,28007421 -g1,13301:6630773,28007421 -g1,13301:6434165,28007421 -(1,13301:6434165,28007421:0,8302038,196608 -r1,13341:32779637,28007421:26345472,8498646,196608 -k1,13301:6434165,28007421:-26345472 -) -(1,13301:6434165,28007421:26345472,8302038,196608 -[1,13301:6630773,28007421:25952256,8105430,0 -(1,13286:6630773,20333036:25952256,431045,86428 -(1,13285:6630773,20333036:0,0,0 -g1,13285:6630773,20333036 -g1,13285:6630773,20333036 -g1,13285:6303093,20333036 -(1,13285:6303093,20333036:0,0,0 -) -g1,13285:6630773,20333036 -) -k1,13286:6630773,20333036:0 -g1,13286:12273990,20333036 -g1,13286:12937898,20333036 -g1,13286:13933760,20333036 -g1,13286:14929622,20333036 -g1,13286:15593530,20333036 -g1,13286:16589392,20333036 -g1,13286:18249162,20333036 -g1,13286:18913070,20333036 -h1,13286:20240886,20333036:0,0,0 -k1,13286:32583029,20333036:12342143 -g1,13286:32583029,20333036 -) -(1,13300:6630773,21148963:25952256,398014,0 -(1,13288:6630773,21148963:0,0,0 -g1,13288:6630773,21148963 -g1,13288:6630773,21148963 -g1,13288:6303093,21148963 -(1,13288:6303093,21148963:0,0,0 -) -g1,13288:6630773,21148963 -) -h1,13300:7294681,21148963:0,0,0 -k1,13300:32583029,21148963:25288348 -g1,13300:32583029,21148963 -) -(1,13300:6630773,21833818:25952256,424439,106246 -h1,13300:6630773,21833818:0,0,0 -g1,13300:7626635,21833818 -g1,13300:7958589,21833818 -g1,13300:9286405,21833818 -g1,13300:11610083,21833818 -k1,13300:11610083,21833818:0 -h1,13300:13601807,21833818:0,0,0 -k1,13300:32583029,21833818:18981222 -g1,13300:32583029,21833818 -) -(1,13300:6630773,22518673:25952256,398014,0 -h1,13300:6630773,22518673:0,0,0 -h1,13300:7294681,22518673:0,0,0 -k1,13300:32583029,22518673:25288348 -g1,13300:32583029,22518673 -) -(1,13300:6630773,23203528:25952256,424439,6605 -h1,13300:6630773,23203528:0,0,0 -g1,13300:7626635,23203528 -g1,13300:9618359,23203528 -g1,13300:9950313,23203528 -h1,13300:12937898,23203528:0,0,0 -k1,13300:32583030,23203528:19645132 -g1,13300:32583030,23203528 -) -(1,13300:6630773,23888383:25952256,431045,106246 -h1,13300:6630773,23888383:0,0,0 -g1,13300:7626635,23888383 -g1,13300:8290543,23888383 -g1,13300:8954451,23888383 -g1,13300:11278129,23888383 -g1,13300:12273991,23888383 -g1,13300:12937899,23888383 -g1,13300:14265715,23888383 -g1,13300:16921347,23888383 -g1,13300:17585255,23888383 -h1,13300:19576979,23888383:0,0,0 -k1,13300:32583029,23888383:13006050 -g1,13300:32583029,23888383 -) -(1,13300:6630773,24573238:25952256,424439,106246 -h1,13300:6630773,24573238:0,0,0 -g1,13300:7626635,24573238 -g1,13300:11610082,24573238 -g1,13300:15593529,24573238 -g1,13300:17253299,24573238 -g1,13300:18913069,24573238 -g1,13300:19908931,24573238 -g1,13300:21236747,24573238 -g1,13300:23228471,24573238 -g1,13300:24224333,24573238 -h1,13300:24556287,24573238:0,0,0 -k1,13300:32583029,24573238:8026742 -g1,13300:32583029,24573238 -) -(1,13300:6630773,25258093:25952256,431045,106246 -h1,13300:6630773,25258093:0,0,0 -g1,13300:7626635,25258093 -g1,13300:8622497,25258093 -g1,13300:11278129,25258093 -g1,13300:14929622,25258093 -h1,13300:17917207,25258093:0,0,0 -k1,13300:32583029,25258093:14665822 -g1,13300:32583029,25258093 -) -(1,13300:6630773,25942948:25952256,407923,9908 -h1,13300:6630773,25942948:0,0,0 -g1,13300:7626635,25942948 -g1,13300:7958589,25942948 -g1,13300:10946174,25942948 -h1,13300:13601805,25942948:0,0,0 -k1,13300:32583029,25942948:18981224 -g1,13300:32583029,25942948 -) -(1,13300:6630773,26627803:25952256,424439,106246 -h1,13300:6630773,26627803:0,0,0 -g1,13300:7626635,26627803 -g1,13300:9950313,26627803 -h1,13300:13269852,26627803:0,0,0 -k1,13300:32583028,26627803:19313176 -g1,13300:32583028,26627803 -) -(1,13300:6630773,27312658:25952256,431045,6605 -h1,13300:6630773,27312658:0,0,0 -g1,13300:7626635,27312658 -g1,13300:9286405,27312658 -g1,13300:10282267,27312658 -h1,13300:10614221,27312658:0,0,0 -k1,13300:32583029,27312658:21968808 -g1,13300:32583029,27312658 -) -(1,13300:6630773,27997513:25952256,407923,9908 -h1,13300:6630773,27997513:0,0,0 -g1,13300:7626635,27997513 -g1,13300:7958589,27997513 -g1,13300:8290543,27997513 -h1,13300:10614221,27997513:0,0,0 -k1,13300:32583029,27997513:21968808 -g1,13300:32583029,27997513 -) -] -) -g1,13301:32583029,28007421 -g1,13301:6630773,28007421 -g1,13301:6630773,28007421 -g1,13301:32583029,28007421 -g1,13301:32583029,28007421 -) -h1,13301:6630773,28204029:0,0,0 -(1,13305:6630773,29069109:25952256,505283,126483 -h1,13304:6630773,29069109:983040,0,0 -k1,13304:9024977,29069109:214477 -k1,13304:10892928,29069109:214478 -k1,13304:12298850,29069109:214477 -k1,13304:13617609,29069109:214477 -k1,13304:14579853,29069109:214478 -k1,13304:18023289,29069109:214477 -k1,13304:19593051,29069109:214477 -k1,13304:20569057,29069109:214478 -k1,13304:22312489,29069109:214477 -k1,13304:23154801,29069109:214477 -k1,13304:24572520,29069109:214478 -k1,13304:26154078,29069109:214477 -k1,13304:27571796,29069109:214477 -k1,13304:30770784,29069109:214478 -k1,13304:31516758,29069109:214477 -k1,13304:32583029,29069109:0 -) -(1,13305:6630773,29934189:25952256,513147,134348 -k1,13304:9346257,29934189:243466 -k1,13304:10661892,29934189:243466 -k1,13304:11363455,29934189:243466 -k1,13304:12138419,29934189:243467 -k1,13304:14359106,29934189:243466 -k1,13304:16300610,29934189:243466 -k1,13304:17412428,29934189:243466 -k1,13304:19131109,29934189:243466 -k1,13304:19730435,29934189:243466 -k1,13304:23254633,29934189:243466 -k1,13304:26213912,29934189:243467 -k1,13304:27730743,29934189:243466 -k1,13304:29203009,29934189:243466 -k1,13304:31391584,29934189:243466 -k1,13304:32583029,29934189:0 -) -(1,13305:6630773,30799269:25952256,513147,134348 -k1,13304:7590926,30799269:171755 -k1,13304:10606287,30799269:171754 -k1,13304:12384985,30799269:171755 -k1,13304:15514380,30799269:171755 -k1,13304:16372296,30799269:171754 -k1,13304:17160089,30799269:171755 -k1,13304:19319551,30799269:171755 -k1,13304:20509080,30799269:171755 -k1,13304:21912911,30799269:171754 -k1,13304:23103751,30799269:171755 -k1,13304:26281642,30799269:171755 -k1,13304:30103751,30799269:171754 -k1,13304:31084876,30799269:171755 -k1,13304:32583029,30799269:0 -) -(1,13305:6630773,31664349:25952256,513147,126483 -h1,13304:7826150,31664349:0,0,0 -g1,13304:8025379,31664349 -g1,13304:9172259,31664349 -g1,13304:10142191,31664349 -k1,13305:32583030,31664349:19519900 -g1,13305:32583030,31664349 -) -v1,13307:6630773,32349204:0,393216,0 -(1,13318:6630773,36148896:25952256,4192908,196608 -g1,13318:6630773,36148896 -g1,13318:6630773,36148896 -g1,13318:6434165,36148896 -(1,13318:6434165,36148896:0,4192908,196608 -r1,13341:32779637,36148896:26345472,4389516,196608 -k1,13318:6434165,36148896:-26345472 -) -(1,13318:6434165,36148896:26345472,4192908,196608 -[1,13318:6630773,36148896:25952256,3996300,0 -(1,13309:6630773,32583641:25952256,431045,106246 -(1,13308:6630773,32583641:0,0,0 -g1,13308:6630773,32583641 -g1,13308:6630773,32583641 -g1,13308:6303093,32583641 -(1,13308:6303093,32583641:0,0,0 -) -g1,13308:6630773,32583641 -) -g1,13309:7958589,32583641 -g1,13309:8622497,32583641 -g1,13309:16589392,32583641 -g1,13309:17253300,32583641 -k1,13309:17253300,32583641:0 -h1,13309:20572840,32583641:0,0,0 -k1,13309:32583029,32583641:12010189 -g1,13309:32583029,32583641 -) -(1,13310:6630773,33268496:25952256,431045,79822 -h1,13310:6630773,33268496:0,0,0 -g1,13310:9286405,33268496 -g1,13310:9950313,33268496 -g1,13310:16921346,33268496 -g1,13310:17585254,33268496 -g1,13310:18581116,33268496 -g1,13310:19245024,33268496 -g1,13310:20572840,33268496 -g1,13310:21236748,33268496 -g1,13310:22564564,33268496 -g1,13310:23560426,33268496 -g1,13310:24224334,33268496 -k1,13310:24224334,33268496:28626 -h1,13310:24584914,33268496:0,0,0 -k1,13310:32583029,33268496:7998115 -g1,13310:32583029,33268496 -) -(1,13311:6630773,33953351:25952256,431045,106246 -h1,13311:6630773,33953351:0,0,0 -g1,13311:9286405,33953351 -g1,13311:10282267,33953351 -g1,13311:14265714,33953351 -g1,13311:15261576,33953351 -g1,13311:15925484,33953351 -g1,13311:19245024,33953351 -g1,13311:19908932,33953351 -g1,13311:20904794,33953351 -g1,13311:24556287,33953351 -g1,13311:25220195,33953351 -g1,13311:27543873,33953351 -g1,13311:28207781,33953351 -g1,13311:28871689,33953351 -g1,13311:29535597,33953351 -g1,13311:30863413,33953351 -k1,13311:30863413,33953351:0 -h1,13311:32523183,33953351:0,0,0 -k1,13311:32583029,33953351:59846 -g1,13311:32583029,33953351 -) -(1,13312:6630773,34638206:25952256,431045,112852 -h1,13312:6630773,34638206:0,0,0 -g1,13312:10282267,34638206 -g1,13312:10946175,34638206 -g1,13312:13933761,34638206 -g1,13312:14929623,34638206 -g1,13312:15593531,34638206 -g1,13312:18913071,34638206 -g1,13312:19576979,34638206 -g1,13312:20572841,34638206 -g1,13312:21236749,34638206 -g1,13312:21900657,34638206 -g1,13312:25220196,34638206 -g1,13312:26216058,34638206 -g1,13312:26879966,34638206 -g1,13312:27543874,34638206 -k1,13312:27543874,34638206:0 -h1,13312:29535598,34638206:0,0,0 -k1,13312:32583029,34638206:3047431 -g1,13312:32583029,34638206 -) -(1,13317:6630773,35454133:25952256,431045,6605 -(1,13314:6630773,35454133:0,0,0 -g1,13314:6630773,35454133 -g1,13314:6630773,35454133 -g1,13314:6303093,35454133 -(1,13314:6303093,35454133:0,0,0 -) -g1,13314:6630773,35454133 -) -g1,13317:7626635,35454133 -g1,13317:7958589,35454133 -g1,13317:8290543,35454133 -g1,13317:8622497,35454133 -g1,13317:8954451,35454133 -g1,13317:9286405,35454133 -g1,13317:9618359,35454133 -g1,13317:10282267,35454133 -g1,13317:10614221,35454133 -g1,13317:10946175,35454133 -g1,13317:11278129,35454133 -g1,13317:11610083,35454133 -g1,13317:11942037,35454133 -g1,13317:12937899,35454133 -g1,13317:13269853,35454133 -g1,13317:13601807,35454133 -g1,13317:13933761,35454133 -g1,13317:14265715,35454133 -g1,13317:14597669,35454133 -g1,13317:14929623,35454133 -h1,13317:15261577,35454133:0,0,0 -k1,13317:32583029,35454133:17321452 -g1,13317:32583029,35454133 -) -(1,13317:6630773,36138988:25952256,407923,9908 -h1,13317:6630773,36138988:0,0,0 -g1,13317:7626635,36138988 -g1,13317:7958589,36138988 -g1,13317:10282267,36138988 -g1,13317:12937899,36138988 -g1,13317:13269853,36138988 -h1,13317:15261577,36138988:0,0,0 -k1,13317:32583029,36138988:17321452 -g1,13317:32583029,36138988 -) -] -) -g1,13318:32583029,36148896 -g1,13318:6630773,36148896 -g1,13318:6630773,36148896 -g1,13318:32583029,36148896 -g1,13318:32583029,36148896 -) -h1,13318:6630773,36345504:0,0,0 -(1,13322:6630773,37210584:25952256,513147,102891 -h1,13321:6630773,37210584:983040,0,0 -k1,13321:9056915,37210584:246415 -k1,13321:10956804,37210584:246416 -k1,13321:14072385,37210584:246415 -k1,13321:15712751,37210584:246415 -k1,13321:16315026,37210584:246415 -k1,13321:19323785,37210584:246416 -k1,13321:22287323,37210584:246415 -k1,13321:24055484,37210584:246415 -k1,13321:25249550,37210584:246415 -k1,13321:26515051,37210584:246416 -k1,13321:29947826,37210584:246415 -k1,13321:32583029,37210584:0 -) -(1,13322:6630773,38075664:25952256,513147,134348 -k1,13321:7969393,38075664:319535 -k1,13321:10357243,38075664:319534 -k1,13321:11336070,38075664:319535 -k1,13321:12828043,38075664:319534 -k1,13321:15370559,38075664:319535 -k1,13321:16372978,38075664:319534 -k1,13321:20340902,38075664:319535 -$1,13321:20340902,38075664 -(1,13321:20894682,38173978:309854,248644,5505 -) -k1,13321:21606473,38075664:401937 -k1,13321:22292836,38075664:401937 -(1,13321:22718821,38173978:395182,337183,0 -) -k1,13321:23347602,38075664:233599 -k1,13321:24149398,38075664:233599 -(1,13321:24575383,38173978:346554,331678,0 -) -k1,13321:25323874,38075664:401937 -k1,13321:26294008,38075664:401937 -$1,13321:26692467,38075664 -k1,13321:27185671,38075664:319534 -k1,13321:28458755,38075664:319535 -k1,13321:30190591,38075664:319535 -k1,13321:31529210,38075664:319534 -k1,13322:32583029,38075664:0 -) -(1,13322:6630773,38940744:25952256,513147,126483 -k1,13321:8401153,38940744:174578 -(1,13321:8401153,38940744:0,452978,122846 -r1,13341:13877848,38940744:5476695,575824,122846 -k1,13321:8401153,38940744:-5476695 -) -(1,13321:8401153,38940744:5476695,452978,122846 -k1,13321:8401153,38940744:97232 -h1,13321:13874571,38940744:0,411205,112570 -) -k1,13321:14052426,38940744:174578 -k1,13321:14913167,38940744:174579 -k1,13321:18904562,38940744:174578 -k1,13321:19695178,38940744:174578 -(1,13321:19695178,38940744:0,452978,115847 -r1,13341:22867138,38940744:3171960,568825,115847 -k1,13321:19695178,38940744:-3171960 -) -(1,13321:19695178,38940744:3171960,452978,115847 -k1,13321:19695178,38940744:3277 -h1,13321:22863861,38940744:0,411205,112570 -) -k1,13321:23041716,38940744:174578 -k1,13321:24207854,38940744:174578 -k1,13321:27460659,38940744:174579 -k1,13321:28396765,38940744:174578 -k1,13321:30465333,38940744:174578 -(1,13321:30465333,38940744:0,414482,122846 -r1,13341:32230446,38940744:1765113,537328,122846 -k1,13321:30465333,38940744:-1765113 -) -(1,13321:30465333,38940744:1765113,414482,122846 -k1,13321:30465333,38940744:3277 -h1,13321:32227169,38940744:0,411205,112570 -) -k1,13321:32583029,38940744:0 -) -(1,13322:6630773,39805824:25952256,513147,134348 -k1,13321:8011288,39805824:205455 -k1,13321:11403104,39805824:205456 -k1,13321:14243762,39805824:205455 -k1,13321:15468302,39805824:205455 -k1,13321:17742073,39805824:205455 -k1,13321:18895180,39805824:205456 -k1,13321:20119720,39805824:205455 -k1,13321:21497614,39805824:205455 -k1,13321:23926050,39805824:205455 -k1,13321:24663002,39805824:205455 -k1,13321:28005011,39805824:205456 -k1,13321:29401911,39805824:205455 -k1,13321:32583029,39805824:0 -) -(1,13322:6630773,40670904:25952256,513147,134348 -k1,13321:9120564,40670904:200618 -k1,13321:10340266,40670904:200617 -k1,13321:14186652,40670904:200618 -k1,13321:15222199,40670904:200618 -k1,13321:16626058,40670904:200618 -k1,13321:18367426,40670904:200617 -k1,13321:19587129,40670904:200618 -k1,13321:21468090,40670904:200618 -k1,13321:22327999,40670904:200617 -k1,13321:23547702,40670904:200618 -k1,13321:26820648,40670904:200618 -k1,13321:29226553,40670904:200618 -k1,13321:30078598,40670904:200617 -(1,13321:30078598,40670904:0,414482,115847 -r1,13341:30788576,40670904:709978,530329,115847 -k1,13321:30078598,40670904:-709978 -) -(1,13321:30078598,40670904:709978,414482,115847 -k1,13321:30078598,40670904:3277 -h1,13321:30785299,40670904:0,411205,112570 -) -k1,13321:31162864,40670904:200618 -k1,13321:32583029,40670904:0 -) -(1,13322:6630773,41535984:25952256,513147,134348 -k1,13321:7623588,41535984:231287 -k1,13321:10294126,41535984:231288 -k1,13321:13524996,41535984:231287 -k1,13321:14959524,41535984:231287 -k1,13321:18757937,41535984:231288 -k1,13321:19749442,41535984:231287 -k1,13321:22419979,41535984:231287 -k1,13321:25635777,41535984:231288 -k1,13321:26483102,41535984:231287 -k1,13321:27733474,41535984:231287 -k1,13321:29137201,41535984:231288 -k1,13321:31591469,41535984:231287 -k1,13321:32583029,41535984:0 -) -(1,13322:6630773,42401064:25952256,505283,126483 -g1,13321:7896273,42401064 -g1,13321:8746930,42401064 -g1,13321:11765518,42401064 -k1,13322:32583029,42401064:19002820 -g1,13322:32583029,42401064 -) -v1,13324:6630773,43085919:0,393216,0 -(1,13341:6630773,45505993:25952256,2813290,196608 -g1,13341:6630773,45505993 -g1,13341:6630773,45505993 -g1,13341:6434165,45505993 -(1,13341:6434165,45505993:0,2813290,196608 -r1,13341:32779637,45505993:26345472,3009898,196608 -k1,13341:6434165,45505993:-26345472 -) -(1,13341:6434165,45505993:26345472,2813290,196608 -[1,13341:6630773,45505993:25952256,2616682,0 -(1,13326:6630773,43320356:25952256,431045,112852 -(1,13325:6630773,43320356:0,0,0 -g1,13325:6630773,43320356 -g1,13325:6630773,43320356 -g1,13325:6303093,43320356 -(1,13325:6303093,43320356:0,0,0 -) -g1,13325:6630773,43320356 -) -k1,13326:6630773,43320356:0 -g1,13326:12273990,43320356 -g1,13326:12937898,43320356 -g1,13326:15261576,43320356 -g1,13326:16921346,43320356 -g1,13326:17585254,43320356 -h1,13326:18913070,43320356:0,0,0 -k1,13326:32583029,43320356:13669959 -g1,13326:32583029,43320356 -) -(1,13340:6630773,44136283:25952256,398014,0 -(1,13328:6630773,44136283:0,0,0 -g1,13328:6630773,44136283 -g1,13328:6630773,44136283 -g1,13328:6303093,44136283 -(1,13328:6303093,44136283:0,0,0 -) -g1,13328:6630773,44136283 -) -h1,13340:7294681,44136283:0,0,0 -k1,13340:32583029,44136283:25288348 -g1,13340:32583029,44136283 -) -(1,13340:6630773,44821138:25952256,424439,106246 -h1,13340:6630773,44821138:0,0,0 -g1,13340:7626635,44821138 -g1,13340:7958589,44821138 -g1,13340:9950313,44821138 -g1,13340:11278129,44821138 -g1,13340:13601807,44821138 -k1,13340:13601807,44821138:0 -h1,13340:15593531,44821138:0,0,0 -k1,13340:32583029,44821138:16989498 -g1,13340:32583029,44821138 -) -(1,13340:6630773,45505993:25952256,398014,0 -h1,13340:6630773,45505993:0,0,0 -h1,13340:7294681,45505993:0,0,0 -k1,13340:32583029,45505993:25288348 -g1,13340:32583029,45505993 -) -] -) -g1,13341:32583029,45505993 -g1,13341:6630773,45505993 -g1,13341:6630773,45505993 -g1,13341:32583029,45505993 -g1,13341:32583029,45505993 -) -] -(1,13341:32583029,45706769:0,0,0 -g1,13341:32583029,45706769 -) -) -] -(1,13341:6630773,47279633:25952256,0,0 -h1,13341:6630773,47279633:25952256,0,0 -) -] -(1,13341:4262630,4025873:0,0,0 -[1,13341:-473656,4025873:0,0,0 -(1,13341:-473656,-710413:0,0,0 -(1,13341:-473656,-710413:0,0,0 -g1,13341:-473656,-710413 -) -g1,13341:-473656,-710413 +g1,13339:6630773,4812305 +k1,13339:19575446,4812305:11749296 +g1,13339:21198117,4812305 +g1,13339:21985204,4812305 +g1,13339:24539797,4812305 +g1,13339:25949476,4812305 +g1,13339:28728857,4812305 +g1,13339:29852144,4812305 +) +) +] +[1,13339:6630773,45706769:25952256,40108032,0 +(1,13339:6630773,45706769:25952256,40108032,0 +(1,13339:6630773,45706769:0,0,0 +g1,13339:6630773,45706769 +) +[1,13339:6630773,45706769:25952256,40108032,0 +(1,13267:6630773,6254097:25952256,513147,134348 +k1,13266:7975626,6254097:153408 +k1,13266:8484894,6254097:153408 +k1,13266:10517875,6254097:153408 +k1,13266:14031314,6254097:153408 +k1,13266:16471928,6254097:153407 +k1,13266:17434706,6254097:153408 +k1,13266:20948145,6254097:153408 +k1,13266:21729388,6254097:153408 +k1,13266:22297593,6254097:153362 +k1,13266:24147728,6254097:153408 +k1,13266:25405418,6254097:153408 +k1,13266:26306592,6254097:153408 +k1,13266:29668643,6254097:153408 +k1,13266:32583029,6254097:0 +) +(1,13267:6630773,7119177:25952256,513147,134348 +g1,13266:8565395,7119177 +g1,13266:11790421,7119177 +(1,13266:11790421,7119177:0,452978,115847 +r1,13339:13907246,7119177:2116825,568825,115847 +k1,13266:11790421,7119177:-2116825 +) +(1,13266:11790421,7119177:2116825,452978,115847 +k1,13266:11790421,7119177:3277 +h1,13266:13903969,7119177:0,411205,112570 +) +g1,13266:14280145,7119177 +(1,13266:14280145,7119177:0,452978,115847 +r1,13339:15693546,7119177:1413401,568825,115847 +k1,13266:14280145,7119177:-1413401 +) +(1,13266:14280145,7119177:1413401,452978,115847 +k1,13266:14280145,7119177:3277 +h1,13266:15690269,7119177:0,411205,112570 +) +g1,13266:16066445,7119177 +g1,13266:17457119,7119177 +(1,13266:17457119,7119177:0,452978,115847 +r1,13339:18870520,7119177:1413401,568825,115847 +k1,13266:17457119,7119177:-1413401 +) +(1,13266:17457119,7119177:1413401,452978,115847 +k1,13266:17457119,7119177:3277 +h1,13266:18867243,7119177:0,411205,112570 +) +g1,13266:19069749,7119177 +g1,13266:19951863,7119177 +g1,13266:21545043,7119177 +(1,13266:21545043,7119177:0,452978,115847 +r1,13339:24365292,7119177:2820249,568825,115847 +k1,13266:21545043,7119177:-2820249 +) +(1,13266:21545043,7119177:2820249,452978,115847 +k1,13266:21545043,7119177:3277 +h1,13266:24362015,7119177:0,411205,112570 +) +k1,13267:32583029,7119177:8165309 +g1,13267:32583029,7119177 +) +(1,13269:6630773,7984257:25952256,513147,134348 +h1,13268:6630773,7984257:983040,0,0 +k1,13268:10782042,7984257:205346 +k1,13268:12833537,7984257:205346 +k1,13268:16212792,7984257:205346 +k1,13268:17034176,7984257:205346 +k1,13268:18733088,7984257:205346 +k1,13268:19294294,7984257:205346 +k1,13268:20911286,7984257:205346 +k1,13268:22135718,7984257:205347 +$1,13268:22135718,7984257 +$1,13268:22456189,7984257 +k1,13268:24065972,7984257:205346 +k1,13268:25375600,7984257:205346 +k1,13268:26328712,7984257:205346 +k1,13268:29061126,7984257:205346 +k1,13268:29925764,7984257:205346 +k1,13268:30817272,7984257:205346 +k1,13268:31378478,7984257:205346 +k1,13269:32583029,7984257:0 +) +(1,13269:6630773,8849337:25952256,513147,126483 +k1,13268:7983857,8849337:257322 +k1,13268:9608261,8849337:257323 +k1,13268:10524875,8849337:257322 +k1,13268:11138058,8849337:257323 +k1,13268:13208106,8849337:257322 +k1,13268:15453136,8849337:257323 +k1,13268:16571601,8849337:257322 +k1,13268:20797783,8849337:257322 +k1,13268:22449057,8849337:257323 +k1,13268:25732176,8849337:257322 +k1,13268:27502725,8849337:257323 +k1,13268:28411475,8849337:257322 +k1,13268:29356271,8849337:257323 +k1,13268:31931601,8849337:257322 +k1,13268:32583029,8849337:0 +) +(1,13269:6630773,9714417:25952256,513147,126483 +k1,13268:11087146,9714417:210951 +k1,13268:12166448,9714417:210950 +k1,13268:13481681,9714417:210951 +k1,13268:14785117,9714417:210951 +k1,13268:15351928,9714417:210951 +k1,13268:18110918,9714417:210950 +k1,13268:18973297,9714417:210951 +k1,13268:21853529,9714417:210951 +k1,13268:22420339,9714417:210950 +$1,13268:22420339,9714417 +$1,13268:22740810,9714417 +k1,13268:24529868,9714417:210951 +k1,13268:25228395,9714417:210939 +k1,13268:27982798,9714417:210951 +k1,13268:29687315,9714417:210951 +k1,13268:30584427,9714417:210950 +(1,13268:30584427,9714417:0,414482,115847 +r1,13339:31840581,9714417:1256154,530329,115847 +k1,13268:30584427,9714417:-1256154 +) +(1,13268:30584427,9714417:1256154,414482,115847 +k1,13268:30584427,9714417:97232 +h1,13268:31837304,9714417:0,411205,112570 +) +k1,13268:32051532,9714417:210951 +k1,13268:32583029,9714417:0 +) +(1,13269:6630773,10579497:25952256,513147,138281 +k1,13268:8274567,10579497:231493 +k1,13268:9192222,10579497:231493 +$1,13268:9192222,10579497 +$1,13268:9744035,10579497 +k1,13268:9975529,10579497:231494 +k1,13268:10738519,10579497:231493 +k1,13268:14048238,10579497:231493 +k1,13268:15041259,10579497:231493 +$1,13268:15041259,10579497 +$1,13268:15543920,10579497 +k1,13268:15949084,10579497:231494 +k1,13268:17134126,10579497:231493 +k1,13268:18458104,10579497:231493 +k1,13268:19603825,10579497:231493 +k1,13268:24655492,10579497:231494 +k1,13268:26078430,10579497:231493 +k1,13268:27342771,10579497:231493 +k1,13268:32583029,10579497:0 +) +(1,13269:6630773,11444577:25952256,513147,134348 +k1,13268:7460014,11444577:177813 +k1,13268:9785443,11444577:177814 +k1,13268:10729372,11444577:177813 +k1,13268:12750057,11444577:177813 +k1,13268:13579299,11444577:177814 +k1,13268:14776197,11444577:177813 +k1,13268:16028145,11444577:177813 +k1,13268:17397404,11444577:177814 +k1,13268:19110726,11444577:177813 +k1,13268:19947832,11444577:177814 +k1,13268:21144730,11444577:177813 +k1,13268:22753849,11444577:177813 +(1,13268:22960943,11444577:0,414482,115847 +r1,13339:23513673,11444577:552730,530329,115847 +k1,13268:22960943,11444577:-552730 +) +(1,13268:22960943,11444577:552730,414482,115847 +k1,13268:22960943,11444577:97232 +h1,13268:23510396,11444577:0,411205,112570 +) +k1,13268:24072251,11444577:177814 +k1,13268:28046565,11444577:177813 +(1,13268:28253659,11444577:0,452978,115847 +r1,13339:32323507,11444577:4069848,568825,115847 +k1,13268:28253659,11444577:-4069848 +) +(1,13268:28253659,11444577:4069848,452978,115847 +k1,13268:28253659,11444577:97232 +h1,13268:32320230,11444577:0,411205,112570 +) +k1,13268:32583029,11444577:0 +) +(1,13269:6630773,12309657:25952256,513147,134348 +k1,13268:8132102,12309657:265320 +k1,13268:10676109,12309657:265320 +h1,13268:12045156,12309657:0,0,0 +k1,13268:12310476,12309657:265320 +k1,13268:13385165,12309657:265319 +k1,13268:15148638,12309657:265320 +h1,13268:16344015,12309657:0,0,0 +k1,13268:16609335,12309657:265320 +k1,13268:17822306,12309657:265320 +k1,13268:18443486,12309657:265320 +k1,13268:21264055,12309657:265320 +k1,13268:24901201,12309657:265319 +k1,13268:25825813,12309657:265320 +k1,13268:28078840,12309657:265320 +k1,13268:31391584,12309657:265320 +k1,13268:32583029,12309657:0 +) +(1,13269:6630773,13174737:25952256,513147,134348 +g1,13268:9108689,13174737 +h1,13268:10079277,13174737:0,0,0 +g1,13268:10278506,13174737 +g1,13268:11287105,13174737 +g1,13268:12984487,13174737 +h1,13268:14179864,13174737:0,0,0 +g1,13268:14379093,13174737 +g1,13268:15525973,13174737 +g1,13268:18716921,13174737 +g1,13268:19575442,13174737 +g1,13268:21283310,13174737 +g1,13268:22575024,13174737 +g1,13268:23390291,13174737 +g1,13268:25577227,13174737 +k1,13269:32583029,13174737:4731703 +g1,13269:32583029,13174737 +) +v1,13271:6630773,13859592:0,393216,0 +(1,13276:6630773,14891736:25952256,1425360,196608 +g1,13276:6630773,14891736 +g1,13276:6630773,14891736 +g1,13276:6434165,14891736 +(1,13276:6434165,14891736:0,1425360,196608 +r1,13339:32779637,14891736:26345472,1621968,196608 +k1,13276:6434165,14891736:-26345472 +) +(1,13276:6434165,14891736:26345472,1425360,196608 +[1,13276:6630773,14891736:25952256,1228752,0 +(1,13273:6630773,14094029:25952256,431045,86428 +(1,13272:6630773,14094029:0,0,0 +g1,13272:6630773,14094029 +g1,13272:6630773,14094029 +g1,13272:6303093,14094029 +(1,13272:6303093,14094029:0,0,0 +) +g1,13272:6630773,14094029 +) +g1,13273:7958589,14094029 +g1,13273:8954451,14094029 +g1,13273:15925483,14094029 +g1,13273:16589391,14094029 +g1,13273:20572839,14094029 +g1,13273:22232609,14094029 +g1,13273:22896517,14094029 +g1,13273:24888241,14094029 +g1,13273:28207781,14094029 +g1,13273:29867551,14094029 +g1,13273:30531459,14094029 +k1,13273:30531459,14094029:0 +h1,13273:32523183,14094029:0,0,0 +k1,13273:32583029,14094029:59846 +g1,13273:32583029,14094029 +) +(1,13274:6630773,14778884:25952256,431045,112852 +h1,13274:6630773,14778884:0,0,0 +g1,13274:6962727,14778884 +g1,13274:7294681,14778884 +g1,13274:7626635,14778884 +g1,13274:7958589,14778884 +g1,13274:8290543,14778884 +g1,13274:8622497,14778884 +g1,13274:8954451,14778884 +g1,13274:9286405,14778884 +g1,13274:9618359,14778884 +g1,13274:9950313,14778884 +g1,13274:10282267,14778884 +g1,13274:10614221,14778884 +g1,13274:10946175,14778884 +g1,13274:11278129,14778884 +g1,13274:11610083,14778884 +g1,13274:11942037,14778884 +g1,13274:12273991,14778884 +g1,13274:12605945,14778884 +g1,13274:14597669,14778884 +g1,13274:15261577,14778884 +g1,13274:21236749,14778884 +g1,13274:23228473,14778884 +g1,13274:24888243,14778884 +g1,13274:25552151,14778884 +h1,13274:27211921,14778884:0,0,0 +k1,13274:32583029,14778884:5371108 +g1,13274:32583029,14778884 +) +] +) +g1,13276:32583029,14891736 +g1,13276:6630773,14891736 +g1,13276:6630773,14891736 +g1,13276:32583029,14891736 +g1,13276:32583029,14891736 +) +h1,13276:6630773,15088344:0,0,0 +(1,13280:6630773,15953424:25952256,513147,115847 +h1,13279:6630773,15953424:983040,0,0 +k1,13279:9125448,15953424:314948 +k1,13279:11983849,15953424:314949 +(1,13279:11983849,15953424:0,452978,115847 +r1,13339:16053697,15953424:4069848,568825,115847 +k1,13279:11983849,15953424:-4069848 +) +(1,13279:11983849,15953424:4069848,452978,115847 +k1,13279:11983849,15953424:97232 +h1,13279:16050420,15953424:0,411205,112570 +) +k1,13279:16368645,15953424:314948 +k1,13279:17215091,15953424:314949 +k1,13279:18942340,15953424:314948 +k1,13279:19943451,15953424:314949 +k1,13279:21577639,15953424:314948 +k1,13279:23630602,15953424:314948 +k1,13279:24604843,15953424:314949 +k1,13279:27431131,15953424:314948 +(1,13279:27431131,15953424:0,452978,115847 +r1,13339:30603091,15953424:3171960,568825,115847 +k1,13279:27431131,15953424:-3171960 +) +(1,13279:27431131,15953424:3171960,452978,115847 +k1,13279:27431131,15953424:3277 +h1,13279:30599814,15953424:0,411205,112570 +) +k1,13279:30918040,15953424:314949 +k1,13279:31764485,15953424:314948 +k1,13280:32583029,15953424:0 +) +(1,13280:6630773,16818504:25952256,513147,126483 +k1,13279:9252323,16818504:255700 +k1,13279:10269551,16818504:255700 +k1,13279:10881110,16818504:255699 +k1,13279:13894565,16818504:255700 +k1,13279:16304433,16818504:255700 +k1,13279:17756820,16818504:255700 +k1,13279:19692862,16818504:255699 +k1,13279:23085115,16818504:255700 +k1,13279:24908436,16818504:255700 +k1,13279:29409558,16818504:255700 +$1,13279:29409558,16818504 +[1,13279:29409558,16818504:502661,458096,7864 +(1,13279:29880105,16810640:0,450232,0 +) +(1,13279:29409558,16818504:502661,355205,7864 +) +] +$1,13279:29912219,16818504 +k1,13279:30341588,16818504:255699 +k1,13279:31128785,16818504:255700 +k1,13280:32583029,16818504:0 +) +(1,13280:6630773,17683584:25952256,513147,134348 +k1,13279:8707696,17683584:243881 +k1,13279:11240751,17683584:243882 +k1,13279:12503717,17683584:243881 +k1,13279:14427941,17683584:243881 +k1,13279:15331114,17683584:243881 +$1,13279:15331114,17683584 +$1,13279:15782657,17683584 +k1,13279:16026539,17683584:243882 +k1,13279:17204963,17683584:243881 +k1,13279:18135006,17683584:243881 +k1,13279:19397972,17683584:243881 +k1,13279:20881795,17683584:243882 +k1,13279:24771444,17683584:243881 +k1,13279:26934219,17683584:243881 +$1,13279:26934219,17683584 +$1,13279:27385762,17683584 +k1,13279:27629643,17683584:243881 +k1,13279:28405022,17683584:243882 +k1,13279:29667988,17683584:243881 +k1,13280:32583029,17683584:0 +) +(1,13280:6630773,18548664:25952256,513147,126483 +k1,13279:8662308,18548664:293520 +k1,13279:9615121,18548664:293521 +k1,13279:10927726,18548664:293520 +k1,13279:13921329,18548664:293520 +k1,13279:17867826,18548664:293520 +k1,13279:18921565,18548664:293521 +k1,13279:21654335,18548664:293520 +(1,13279:21654335,18548664:0,452978,115847 +r1,13339:24474584,18548664:2820249,568825,115847 +k1,13279:21654335,18548664:-2820249 +) +(1,13279:21654335,18548664:2820249,452978,115847 +k1,13279:21654335,18548664:3277 +h1,13279:24471307,18548664:0,411205,112570 +) +k1,13279:24768104,18548664:293520 +k1,13279:27342932,18548664:293520 +k1,13279:27992313,18548664:293521 +k1,13279:31391584,18548664:293520 +k1,13279:32583029,18548664:0 +) +(1,13280:6630773,19413744:25952256,505283,134348 +(1,13279:6816895,19413744:0,452978,115847 +r1,13339:15616245,19413744:8799350,568825,115847 +k1,13279:6816895,19413744:-8799350 +) +(1,13279:6816895,19413744:8799350,452978,115847 +g1,13279:11040714,19413744 +g1,13279:11744138,19413744 +h1,13279:15612968,19413744:0,411205,112570 +) +g1,13279:16022568,19413744 +g1,13279:18510970,19413744 +(1,13279:18510970,19413744:0,435480,115847 +r1,13339:20627796,19413744:2116826,551327,115847 +k1,13279:18510970,19413744:-2116826 +) +(1,13279:18510970,19413744:2116826,435480,115847 +g1,13279:19569383,19413744 +g1,13279:20272807,19413744 +h1,13279:20624519,19413744:0,411205,112570 +) +g1,13279:21000695,19413744 +g1,13279:22272093,19413744 +g1,13279:23869205,19413744 +g1,13279:24936786,19413744 +g1,13279:26228500,19413744 +(1,13279:26228500,19413744:0,435480,115847 +r1,13339:28345326,19413744:2116826,551327,115847 +k1,13279:26228500,19413744:-2116826 +) +(1,13279:26228500,19413744:2116826,435480,115847 +g1,13279:27286913,19413744 +g1,13279:27990337,19413744 +h1,13279:28342049,19413744:0,411205,112570 +) +g1,13279:28544555,19413744 +k1,13280:32583029,19413744:1658862 +g1,13280:32583029,19413744 +) +v1,13282:6630773,20098599:0,393216,0 +(1,13299:6630773,28007421:25952256,8302038,196608 +g1,13299:6630773,28007421 +g1,13299:6630773,28007421 +g1,13299:6434165,28007421 +(1,13299:6434165,28007421:0,8302038,196608 +r1,13339:32779637,28007421:26345472,8498646,196608 +k1,13299:6434165,28007421:-26345472 +) +(1,13299:6434165,28007421:26345472,8302038,196608 +[1,13299:6630773,28007421:25952256,8105430,0 +(1,13284:6630773,20333036:25952256,431045,86428 +(1,13283:6630773,20333036:0,0,0 +g1,13283:6630773,20333036 +g1,13283:6630773,20333036 +g1,13283:6303093,20333036 +(1,13283:6303093,20333036:0,0,0 +) +g1,13283:6630773,20333036 +) +k1,13284:6630773,20333036:0 +g1,13284:12273990,20333036 +g1,13284:12937898,20333036 +g1,13284:13933760,20333036 +g1,13284:14929622,20333036 +g1,13284:15593530,20333036 +g1,13284:16589392,20333036 +g1,13284:18249162,20333036 +g1,13284:18913070,20333036 +h1,13284:20240886,20333036:0,0,0 +k1,13284:32583029,20333036:12342143 +g1,13284:32583029,20333036 +) +(1,13298:6630773,21148963:25952256,398014,0 +(1,13286:6630773,21148963:0,0,0 +g1,13286:6630773,21148963 +g1,13286:6630773,21148963 +g1,13286:6303093,21148963 +(1,13286:6303093,21148963:0,0,0 +) +g1,13286:6630773,21148963 +) +h1,13298:7294681,21148963:0,0,0 +k1,13298:32583029,21148963:25288348 +g1,13298:32583029,21148963 +) +(1,13298:6630773,21833818:25952256,424439,106246 +h1,13298:6630773,21833818:0,0,0 +g1,13298:7626635,21833818 +g1,13298:7958589,21833818 +g1,13298:9286405,21833818 +g1,13298:11610083,21833818 +k1,13298:11610083,21833818:0 +h1,13298:13601807,21833818:0,0,0 +k1,13298:32583029,21833818:18981222 +g1,13298:32583029,21833818 +) +(1,13298:6630773,22518673:25952256,398014,0 +h1,13298:6630773,22518673:0,0,0 +h1,13298:7294681,22518673:0,0,0 +k1,13298:32583029,22518673:25288348 +g1,13298:32583029,22518673 +) +(1,13298:6630773,23203528:25952256,424439,6605 +h1,13298:6630773,23203528:0,0,0 +g1,13298:7626635,23203528 +g1,13298:9618359,23203528 +g1,13298:9950313,23203528 +h1,13298:12937898,23203528:0,0,0 +k1,13298:32583030,23203528:19645132 +g1,13298:32583030,23203528 +) +(1,13298:6630773,23888383:25952256,431045,106246 +h1,13298:6630773,23888383:0,0,0 +g1,13298:7626635,23888383 +g1,13298:8290543,23888383 +g1,13298:8954451,23888383 +g1,13298:11278129,23888383 +g1,13298:12273991,23888383 +g1,13298:12937899,23888383 +g1,13298:14265715,23888383 +g1,13298:16921347,23888383 +g1,13298:17585255,23888383 +h1,13298:19576979,23888383:0,0,0 +k1,13298:32583029,23888383:13006050 +g1,13298:32583029,23888383 +) +(1,13298:6630773,24573238:25952256,424439,106246 +h1,13298:6630773,24573238:0,0,0 +g1,13298:7626635,24573238 +g1,13298:11610082,24573238 +g1,13298:15593529,24573238 +g1,13298:17253299,24573238 +g1,13298:18913069,24573238 +g1,13298:19908931,24573238 +g1,13298:21236747,24573238 +g1,13298:23228471,24573238 +g1,13298:24224333,24573238 +h1,13298:24556287,24573238:0,0,0 +k1,13298:32583029,24573238:8026742 +g1,13298:32583029,24573238 +) +(1,13298:6630773,25258093:25952256,431045,106246 +h1,13298:6630773,25258093:0,0,0 +g1,13298:7626635,25258093 +g1,13298:8622497,25258093 +g1,13298:11278129,25258093 +g1,13298:14929622,25258093 +h1,13298:17917207,25258093:0,0,0 +k1,13298:32583029,25258093:14665822 +g1,13298:32583029,25258093 +) +(1,13298:6630773,25942948:25952256,407923,9908 +h1,13298:6630773,25942948:0,0,0 +g1,13298:7626635,25942948 +g1,13298:7958589,25942948 +g1,13298:10946174,25942948 +h1,13298:13601805,25942948:0,0,0 +k1,13298:32583029,25942948:18981224 +g1,13298:32583029,25942948 +) +(1,13298:6630773,26627803:25952256,424439,106246 +h1,13298:6630773,26627803:0,0,0 +g1,13298:7626635,26627803 +g1,13298:9950313,26627803 +h1,13298:13269852,26627803:0,0,0 +k1,13298:32583028,26627803:19313176 +g1,13298:32583028,26627803 +) +(1,13298:6630773,27312658:25952256,431045,6605 +h1,13298:6630773,27312658:0,0,0 +g1,13298:7626635,27312658 +g1,13298:9286405,27312658 +g1,13298:10282267,27312658 +h1,13298:10614221,27312658:0,0,0 +k1,13298:32583029,27312658:21968808 +g1,13298:32583029,27312658 +) +(1,13298:6630773,27997513:25952256,407923,9908 +h1,13298:6630773,27997513:0,0,0 +g1,13298:7626635,27997513 +g1,13298:7958589,27997513 +g1,13298:8290543,27997513 +h1,13298:10614221,27997513:0,0,0 +k1,13298:32583029,27997513:21968808 +g1,13298:32583029,27997513 +) +] +) +g1,13299:32583029,28007421 +g1,13299:6630773,28007421 +g1,13299:6630773,28007421 +g1,13299:32583029,28007421 +g1,13299:32583029,28007421 +) +h1,13299:6630773,28204029:0,0,0 +(1,13303:6630773,29069109:25952256,505283,126483 +h1,13302:6630773,29069109:983040,0,0 +k1,13302:9013399,29069109:202899 +k1,13302:10869772,29069109:202900 +k1,13302:12264116,29069109:202899 +k1,13302:13571297,29069109:202899 +k1,13302:14521963,29069109:202900 +k1,13302:17953821,29069109:202899 +k1,13302:19512005,29069109:202899 +k1,13302:20476433,29069109:202900 +k1,13302:22208287,29069109:202899 +k1,13302:23039021,29069109:202899 +k1,13302:24445162,29069109:202900 +k1,13302:26188812,29069109:202899 +k1,13302:27594952,29069109:202899 +k1,13302:30782362,29069109:202900 +k1,13302:31516758,29069109:202899 +k1,13302:32583029,29069109:0 +) +(1,13303:6630773,29934189:25952256,513147,134348 +k1,13302:9346257,29934189:243466 +k1,13302:10661892,29934189:243466 +k1,13302:11363455,29934189:243466 +k1,13302:12138419,29934189:243467 +k1,13302:14359106,29934189:243466 +k1,13302:16300610,29934189:243466 +k1,13302:17412428,29934189:243466 +k1,13302:19131109,29934189:243466 +k1,13302:19730435,29934189:243466 +k1,13302:23254633,29934189:243466 +k1,13302:26213912,29934189:243467 +k1,13302:27730743,29934189:243466 +k1,13302:29203009,29934189:243466 +k1,13302:31391584,29934189:243466 +k1,13302:32583029,29934189:0 +) +(1,13303:6630773,30799269:25952256,513147,134348 +k1,13302:7590926,30799269:171755 +k1,13302:10606287,30799269:171754 +k1,13302:12384985,30799269:171755 +k1,13302:15514380,30799269:171755 +k1,13302:16372296,30799269:171754 +k1,13302:17160089,30799269:171755 +k1,13302:19319551,30799269:171755 +k1,13302:20509080,30799269:171755 +k1,13302:21912911,30799269:171754 +k1,13302:23103751,30799269:171755 +k1,13302:26281642,30799269:171755 +k1,13302:30103751,30799269:171754 +k1,13302:31084876,30799269:171755 +k1,13302:32583029,30799269:0 +) +(1,13303:6630773,31664349:25952256,513147,126483 +h1,13302:7826150,31664349:0,0,0 +g1,13302:8025379,31664349 +g1,13302:9172259,31664349 +g1,13302:10142191,31664349 +k1,13303:32583030,31664349:19519900 +g1,13303:32583030,31664349 +) +v1,13305:6630773,32349204:0,393216,0 +(1,13316:6630773,36148896:25952256,4192908,196608 +g1,13316:6630773,36148896 +g1,13316:6630773,36148896 +g1,13316:6434165,36148896 +(1,13316:6434165,36148896:0,4192908,196608 +r1,13339:32779637,36148896:26345472,4389516,196608 +k1,13316:6434165,36148896:-26345472 +) +(1,13316:6434165,36148896:26345472,4192908,196608 +[1,13316:6630773,36148896:25952256,3996300,0 +(1,13307:6630773,32583641:25952256,431045,106246 +(1,13306:6630773,32583641:0,0,0 +g1,13306:6630773,32583641 +g1,13306:6630773,32583641 +g1,13306:6303093,32583641 +(1,13306:6303093,32583641:0,0,0 +) +g1,13306:6630773,32583641 +) +g1,13307:7958589,32583641 +g1,13307:8622497,32583641 +g1,13307:16589392,32583641 +g1,13307:17253300,32583641 +k1,13307:17253300,32583641:0 +h1,13307:20572840,32583641:0,0,0 +k1,13307:32583029,32583641:12010189 +g1,13307:32583029,32583641 +) +(1,13308:6630773,33268496:25952256,431045,79822 +h1,13308:6630773,33268496:0,0,0 +g1,13308:9286405,33268496 +g1,13308:9950313,33268496 +g1,13308:16921346,33268496 +g1,13308:17585254,33268496 +g1,13308:18581116,33268496 +g1,13308:19245024,33268496 +g1,13308:20572840,33268496 +g1,13308:21236748,33268496 +g1,13308:22564564,33268496 +g1,13308:23560426,33268496 +g1,13308:24224334,33268496 +k1,13308:24224334,33268496:28626 +h1,13308:24584914,33268496:0,0,0 +k1,13308:32583029,33268496:7998115 +g1,13308:32583029,33268496 +) +(1,13309:6630773,33953351:25952256,431045,106246 +h1,13309:6630773,33953351:0,0,0 +g1,13309:9286405,33953351 +g1,13309:10282267,33953351 +g1,13309:14265714,33953351 +g1,13309:15261576,33953351 +g1,13309:15925484,33953351 +g1,13309:19245024,33953351 +g1,13309:19908932,33953351 +g1,13309:20904794,33953351 +g1,13309:24556287,33953351 +g1,13309:25220195,33953351 +g1,13309:27543873,33953351 +g1,13309:28207781,33953351 +g1,13309:28871689,33953351 +g1,13309:29535597,33953351 +g1,13309:30863413,33953351 +k1,13309:30863413,33953351:0 +h1,13309:32523183,33953351:0,0,0 +k1,13309:32583029,33953351:59846 +g1,13309:32583029,33953351 +) +(1,13310:6630773,34638206:25952256,431045,112852 +h1,13310:6630773,34638206:0,0,0 +g1,13310:10282267,34638206 +g1,13310:10946175,34638206 +g1,13310:13933761,34638206 +g1,13310:14929623,34638206 +g1,13310:15593531,34638206 +g1,13310:18913071,34638206 +g1,13310:19576979,34638206 +g1,13310:20572841,34638206 +g1,13310:21236749,34638206 +g1,13310:21900657,34638206 +g1,13310:25220196,34638206 +g1,13310:26216058,34638206 +g1,13310:26879966,34638206 +g1,13310:27543874,34638206 +k1,13310:27543874,34638206:0 +h1,13310:29535598,34638206:0,0,0 +k1,13310:32583029,34638206:3047431 +g1,13310:32583029,34638206 +) +(1,13315:6630773,35454133:25952256,431045,6605 +(1,13312:6630773,35454133:0,0,0 +g1,13312:6630773,35454133 +g1,13312:6630773,35454133 +g1,13312:6303093,35454133 +(1,13312:6303093,35454133:0,0,0 +) +g1,13312:6630773,35454133 +) +g1,13315:7626635,35454133 +g1,13315:7958589,35454133 +g1,13315:8290543,35454133 +g1,13315:8622497,35454133 +g1,13315:8954451,35454133 +g1,13315:9286405,35454133 +g1,13315:9618359,35454133 +g1,13315:10282267,35454133 +g1,13315:10614221,35454133 +g1,13315:10946175,35454133 +g1,13315:11278129,35454133 +g1,13315:11610083,35454133 +g1,13315:11942037,35454133 +g1,13315:12937899,35454133 +g1,13315:13269853,35454133 +g1,13315:13601807,35454133 +g1,13315:13933761,35454133 +g1,13315:14265715,35454133 +g1,13315:14597669,35454133 +g1,13315:14929623,35454133 +h1,13315:15261577,35454133:0,0,0 +k1,13315:32583029,35454133:17321452 +g1,13315:32583029,35454133 +) +(1,13315:6630773,36138988:25952256,407923,9908 +h1,13315:6630773,36138988:0,0,0 +g1,13315:7626635,36138988 +g1,13315:7958589,36138988 +g1,13315:10282267,36138988 +g1,13315:12937899,36138988 +g1,13315:13269853,36138988 +h1,13315:15261577,36138988:0,0,0 +k1,13315:32583029,36138988:17321452 +g1,13315:32583029,36138988 +) +] +) +g1,13316:32583029,36148896 +g1,13316:6630773,36148896 +g1,13316:6630773,36148896 +g1,13316:32583029,36148896 +g1,13316:32583029,36148896 +) +h1,13316:6630773,36345504:0,0,0 +(1,13320:6630773,37210584:25952256,513147,102891 +h1,13319:6630773,37210584:983040,0,0 +k1,13319:9056915,37210584:246415 +k1,13319:10956804,37210584:246416 +k1,13319:14072385,37210584:246415 +k1,13319:15712751,37210584:246415 +k1,13319:16315026,37210584:246415 +k1,13319:19323785,37210584:246416 +k1,13319:22287323,37210584:246415 +k1,13319:24055484,37210584:246415 +k1,13319:25249550,37210584:246415 +k1,13319:26515051,37210584:246416 +k1,13319:29947826,37210584:246415 +k1,13319:32583029,37210584:0 +) +(1,13320:6630773,38075664:25952256,513147,134348 +k1,13319:7969393,38075664:319535 +k1,13319:10357243,38075664:319534 +k1,13319:11336070,38075664:319535 +k1,13319:12828043,38075664:319534 +k1,13319:15370559,38075664:319535 +k1,13319:16372978,38075664:319534 +k1,13319:20340902,38075664:319535 +$1,13319:20340902,38075664 +(1,13319:20894682,38173978:309854,248644,5505 +) +k1,13319:21606473,38075664:401937 +k1,13319:22292836,38075664:401937 +(1,13319:22718821,38173978:395182,337183,0 +) +k1,13319:23347602,38075664:233599 +k1,13319:24149398,38075664:233599 +(1,13319:24575383,38173978:346554,331678,0 +) +k1,13319:25323874,38075664:401937 +k1,13319:26294008,38075664:401937 +$1,13319:26692467,38075664 +k1,13319:27185671,38075664:319534 +k1,13319:28458755,38075664:319535 +k1,13319:30190591,38075664:319535 +k1,13319:31529210,38075664:319534 +k1,13320:32583029,38075664:0 +) +(1,13320:6630773,38940744:25952256,513147,126483 +k1,13319:8401153,38940744:174578 +(1,13319:8401153,38940744:0,452978,122846 +r1,13339:13877848,38940744:5476695,575824,122846 +k1,13319:8401153,38940744:-5476695 +) +(1,13319:8401153,38940744:5476695,452978,122846 +k1,13319:8401153,38940744:97232 +h1,13319:13874571,38940744:0,411205,112570 +) +k1,13319:14052426,38940744:174578 +k1,13319:14913167,38940744:174579 +k1,13319:18904562,38940744:174578 +k1,13319:19695178,38940744:174578 +(1,13319:19695178,38940744:0,452978,115847 +r1,13339:22867138,38940744:3171960,568825,115847 +k1,13319:19695178,38940744:-3171960 +) +(1,13319:19695178,38940744:3171960,452978,115847 +k1,13319:19695178,38940744:3277 +h1,13319:22863861,38940744:0,411205,112570 +) +k1,13319:23041716,38940744:174578 +k1,13319:24207854,38940744:174578 +k1,13319:27460659,38940744:174579 +k1,13319:28396765,38940744:174578 +k1,13319:30465333,38940744:174578 +(1,13319:30465333,38940744:0,414482,122846 +r1,13339:32230446,38940744:1765113,537328,122846 +k1,13319:30465333,38940744:-1765113 +) +(1,13319:30465333,38940744:1765113,414482,122846 +k1,13319:30465333,38940744:3277 +h1,13319:32227169,38940744:0,411205,112570 +) +k1,13319:32583029,38940744:0 +) +(1,13320:6630773,39805824:25952256,513147,134348 +k1,13319:8011288,39805824:205455 +k1,13319:11403104,39805824:205456 +k1,13319:14243762,39805824:205455 +k1,13319:15468302,39805824:205455 +k1,13319:17742073,39805824:205455 +k1,13319:18895180,39805824:205456 +k1,13319:20119720,39805824:205455 +k1,13319:21497614,39805824:205455 +k1,13319:23926050,39805824:205455 +k1,13319:24663002,39805824:205455 +k1,13319:28005011,39805824:205456 +k1,13319:29401911,39805824:205455 +k1,13319:32583029,39805824:0 +) +(1,13320:6630773,40670904:25952256,513147,134348 +k1,13319:9120564,40670904:200618 +k1,13319:10340266,40670904:200617 +k1,13319:14186652,40670904:200618 +k1,13319:15222199,40670904:200618 +k1,13319:16626058,40670904:200618 +k1,13319:18367426,40670904:200617 +k1,13319:19587129,40670904:200618 +k1,13319:21468090,40670904:200618 +k1,13319:22327999,40670904:200617 +k1,13319:23547702,40670904:200618 +k1,13319:26820648,40670904:200618 +k1,13319:29226553,40670904:200618 +k1,13319:30078598,40670904:200617 +(1,13319:30078598,40670904:0,414482,115847 +r1,13339:30788576,40670904:709978,530329,115847 +k1,13319:30078598,40670904:-709978 +) +(1,13319:30078598,40670904:709978,414482,115847 +k1,13319:30078598,40670904:3277 +h1,13319:30785299,40670904:0,411205,112570 +) +k1,13319:31162864,40670904:200618 +k1,13319:32583029,40670904:0 +) +(1,13320:6630773,41535984:25952256,513147,134348 +k1,13319:7623588,41535984:231287 +k1,13319:10294126,41535984:231288 +k1,13319:13524996,41535984:231287 +k1,13319:14959524,41535984:231287 +k1,13319:18757937,41535984:231288 +k1,13319:19749442,41535984:231287 +k1,13319:22419979,41535984:231287 +k1,13319:25635777,41535984:231288 +k1,13319:26483102,41535984:231287 +k1,13319:27733474,41535984:231287 +k1,13319:29137201,41535984:231288 +k1,13319:31591469,41535984:231287 +k1,13319:32583029,41535984:0 +) +(1,13320:6630773,42401064:25952256,505283,126483 +g1,13319:7896273,42401064 +g1,13319:8746930,42401064 +g1,13319:11765518,42401064 +k1,13320:32583029,42401064:19002820 +g1,13320:32583029,42401064 +) +v1,13322:6630773,43085919:0,393216,0 +(1,13339:6630773,45505993:25952256,2813290,196608 +g1,13339:6630773,45505993 +g1,13339:6630773,45505993 +g1,13339:6434165,45505993 +(1,13339:6434165,45505993:0,2813290,196608 +r1,13339:32779637,45505993:26345472,3009898,196608 +k1,13339:6434165,45505993:-26345472 +) +(1,13339:6434165,45505993:26345472,2813290,196608 +[1,13339:6630773,45505993:25952256,2616682,0 +(1,13324:6630773,43320356:25952256,431045,112852 +(1,13323:6630773,43320356:0,0,0 +g1,13323:6630773,43320356 +g1,13323:6630773,43320356 +g1,13323:6303093,43320356 +(1,13323:6303093,43320356:0,0,0 +) +g1,13323:6630773,43320356 +) +k1,13324:6630773,43320356:0 +g1,13324:12273990,43320356 +g1,13324:12937898,43320356 +g1,13324:15261576,43320356 +g1,13324:16921346,43320356 +g1,13324:17585254,43320356 +h1,13324:18913070,43320356:0,0,0 +k1,13324:32583029,43320356:13669959 +g1,13324:32583029,43320356 +) +(1,13338:6630773,44136283:25952256,398014,0 +(1,13326:6630773,44136283:0,0,0 +g1,13326:6630773,44136283 +g1,13326:6630773,44136283 +g1,13326:6303093,44136283 +(1,13326:6303093,44136283:0,0,0 +) +g1,13326:6630773,44136283 +) +h1,13338:7294681,44136283:0,0,0 +k1,13338:32583029,44136283:25288348 +g1,13338:32583029,44136283 +) +(1,13338:6630773,44821138:25952256,424439,106246 +h1,13338:6630773,44821138:0,0,0 +g1,13338:7626635,44821138 +g1,13338:7958589,44821138 +g1,13338:9950313,44821138 +g1,13338:11278129,44821138 +g1,13338:13601807,44821138 +k1,13338:13601807,44821138:0 +h1,13338:15593531,44821138:0,0,0 +k1,13338:32583029,44821138:16989498 +g1,13338:32583029,44821138 +) +(1,13338:6630773,45505993:25952256,398014,0 +h1,13338:6630773,45505993:0,0,0 +h1,13338:7294681,45505993:0,0,0 +k1,13338:32583029,45505993:25288348 +g1,13338:32583029,45505993 +) +] +) +g1,13339:32583029,45505993 +g1,13339:6630773,45505993 +g1,13339:6630773,45505993 +g1,13339:32583029,45505993 +g1,13339:32583029,45505993 +) +] +(1,13339:32583029,45706769:0,0,0 +g1,13339:32583029,45706769 +) +) +] +(1,13339:6630773,47279633:25952256,0,0 +h1,13339:6630773,47279633:25952256,0,0 +) +] +(1,13339:4262630,4025873:0,0,0 +[1,13339:-473656,4025873:0,0,0 +(1,13339:-473656,-710413:0,0,0 +(1,13339:-473656,-710413:0,0,0 +g1,13339:-473656,-710413 +) +g1,13339:-473656,-710413 ) ] ) ] !33018 -}213 -Input:2227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}214 Input:2230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2232:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -236427,987 +236625,987 @@ Input:2234:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2235:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2236:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2237:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2238:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{214 -[1,13396:4262630,47279633:28320399,43253760,0 -(1,13396:4262630,4025873:0,0,0 -[1,13396:-473656,4025873:0,0,0 -(1,13396:-473656,-710413:0,0,0 -(1,13396:-473656,-644877:0,0,0 -k1,13396:-473656,-644877:-65536 +{215 +[1,13394:4262630,47279633:28320399,43253760,0 +(1,13394:4262630,4025873:0,0,0 +[1,13394:-473656,4025873:0,0,0 +(1,13394:-473656,-710413:0,0,0 +(1,13394:-473656,-644877:0,0,0 +k1,13394:-473656,-644877:-65536 ) -(1,13396:-473656,4736287:0,0,0 -k1,13396:-473656,4736287:5209943 +(1,13394:-473656,4736287:0,0,0 +k1,13394:-473656,4736287:5209943 ) -g1,13396:-473656,-710413 +g1,13394:-473656,-710413 ) ] ) -[1,13396:6630773,47279633:25952256,43253760,0 -[1,13396:6630773,4812305:25952256,786432,0 -(1,13396:6630773,4812305:25952256,505283,134348 -(1,13396:6630773,4812305:25952256,505283,134348 -g1,13396:3078558,4812305 -[1,13396:3078558,4812305:0,0,0 -(1,13396:3078558,2439708:0,1703936,0 -k1,13396:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13396:2537886,2439708:1179648,16384,0 +[1,13394:6630773,47279633:25952256,43253760,0 +[1,13394:6630773,4812305:25952256,786432,0 +(1,13394:6630773,4812305:25952256,505283,134348 +(1,13394:6630773,4812305:25952256,505283,134348 +g1,13394:3078558,4812305 +[1,13394:3078558,4812305:0,0,0 +(1,13394:3078558,2439708:0,1703936,0 +k1,13394:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13394:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13396:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13394:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13396:3078558,4812305:0,0,0 -(1,13396:3078558,2439708:0,1703936,0 -g1,13396:29030814,2439708 -g1,13396:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13396:36151628,1915420:16384,1179648,0 +[1,13394:3078558,4812305:0,0,0 +(1,13394:3078558,2439708:0,1703936,0 +g1,13394:29030814,2439708 +g1,13394:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13394:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13396:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13394:37855564,2439708:1179648,16384,0 ) ) -k1,13396:3078556,2439708:-34777008 +k1,13394:3078556,2439708:-34777008 ) ] -[1,13396:3078558,4812305:0,0,0 -(1,13396:3078558,49800853:0,16384,2228224 -k1,13396:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13396:2537886,49800853:1179648,16384,0 +[1,13394:3078558,4812305:0,0,0 +(1,13394:3078558,49800853:0,16384,2228224 +k1,13394:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13394:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13396:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13394:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13396:3078558,4812305:0,0,0 -(1,13396:3078558,49800853:0,16384,2228224 -g1,13396:29030814,49800853 -g1,13396:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13396:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13396:37855564,49800853:1179648,16384,0 -) -) -k1,13396:3078556,49800853:-34777008 -) -] -g1,13396:6630773,4812305 -g1,13396:6630773,4812305 -g1,13396:8691224,4812305 -g1,13396:10903719,4812305 -g1,13396:11705879,4812305 -g1,13396:12319296,4812305 -g1,13396:12518525,4812305 -k1,13396:31387653,4812305:18869128 -) -) -] -[1,13396:6630773,45706769:25952256,40108032,0 -(1,13396:6630773,45706769:25952256,40108032,0 -(1,13396:6630773,45706769:0,0,0 -g1,13396:6630773,45706769 -) -[1,13396:6630773,45706769:25952256,40108032,0 -[1,13389:6630773,18085286:25952256,12486549,0 -[1,13389:6630773,18085286:25952256,12486549,0 -(1,13371:6630773,6759380:25952256,505283,11795 -h1,13371:6607180,6759380:0,0,0 -g1,13371:8644694,6759380 -k1,13371:32583029,6759380:22948086 -g1,13371:32583029,6759380 -) -(1,13371:6630773,7624460:25952256,513147,134348 -h1,13371:6630773,7624460:0,0,0 -k1,13371:7334768,7624460:289152 -k1,13371:10649807,7624460:289242 -k1,13371:15362729,7624460:289242 -k1,13371:18956952,7624460:289242 -k1,13371:20759420,7624460:289242 -k1,13371:24132787,7624460:289243 -k1,13371:26117445,7624460:289242 -k1,13371:29377434,7624460:289242 -$1,13371:29377434,7624460 -$1,13371:29697905,7624460 -k1,13371:31391584,7624460:289242 -k1,13371:32583029,7624460:0 -) -(1,13371:6630773,8489540:25952256,505283,134348 -g1,13371:10310619,8489540 -g1,13371:12031594,8489540 -g1,13371:13222383,8489540 -g1,13371:16511635,8489540 -g1,13371:17520234,8489540 -g1,13371:19547917,8489540 -h1,13371:20743294,8489540:0,0,0 -g1,13371:20942523,8489540 -g1,13371:22333197,8489540 -h1,13371:23528574,8489540:0,0,0 -g1,13371:23901473,8489540 -k1,13371:32583029,8489540:4832627 -g1,13371:32583029,8489540 -) -(1,13388:6630773,18085286:25952256,9048521,0 -k1,13388:8282280,18085286:1651507 -k1,13374:9933787,18085286:1651507 -[1,13388:9933787,18085286:20997735,9048521,0 -(1,13388:9933787,9102301:20997735,65536,0 -g1,13388:9933787,9102301 -(1,13388:9933787,9102301:20997735,65536,0 -r1,13396:30931522,9102301:20997735,65536,0 -) -g1,13388:30931522,9102301 -) -(1,13388:9933787,13733408:20997735,4565571,4155270 -g1,13388:9933787,13733408 -(1,13388:9933787,13733408:20997735,4565571,4155270 -g1,13374:10133016,13733408 -$1,13388:10133016,13733408 -[1,13388:10133016,13733408:20798506,4565571,4155270 -(1,13377:10133016,9958957:20798506,555093,237900 -g1,13376:10133016,9958957 -(1,13376:10133016,9958957:15416033,555093,237900 -r1,13396:10133016,9958957:0,792993,237900 -g1,13376:10460696,9958957 -g1,13376:10460697,9958957 -g1,13376:13768954,9958957 -k1,13376:25221369,9958957:10260970 -g1,13376:25549049,9958957 -) -g1,13376:25549049,9958957 -(1,13377:25549049,9958957:5382473,555093,237900 -g1,13376:25876729,9958957 -g1,13376:25876730,9958957 -g1,13376:28865827,9958957 -g1,13377:30603842,9958957 -g1,13377:30931522,9958957 -) -g1,13377:30931522,9958957 -) -(1,13379:10133016,11081299:20798506,555093,237900 -g1,13378:10133016,11081299 -(1,13378:10133016,11081299:15416033,555093,237900 -r1,13396:10133016,11081299:0,792993,237900 -g1,13378:10460696,11081299 -g1,13378:10460697,11081299 -g1,13378:13630673,11081299 -$1,13378:13630673,11081299 -$1,13378:13951144,11081299 -g1,13378:15554810,11081299 -g1,13378:16359592,11081299 -g1,13378:17750266,11081299 -g1,13378:18347954,11081299 -k1,13378:25221369,11081299:4056678 -g1,13378:25549049,11081299 -) -g1,13378:25549049,11081299 -(1,13379:25549049,11081299:5382473,555093,237900 -g1,13378:25876729,11081299 -g1,13378:25876730,11081299 -(1,13378:25876730,11081299:0,452978,115847 -r1,13396:28696979,11081299:2820249,568825,115847 -k1,13378:25876730,11081299:-2820249 -) -(1,13378:25876730,11081299:2820249,452978,115847 -k1,13378:25876730,11081299:3277 -h1,13378:28693702,11081299:0,411205,112570 -) -k1,13379:30603842,11081299:1906863 -g1,13379:30931522,11081299 -) -g1,13379:30931522,11081299 -) -(1,13380:10133016,11874292:20798506,555093,237900 -g1,13379:10133016,11874292 -(1,13379:10133016,11874292:15416033,555093,237900 -r1,13396:10133016,11874292:0,792993,237900 -g1,13379:10460696,11874292 -g1,13379:10460697,11874292 -g1,13379:13574967,11874292 -g1,13379:15225818,11874292 -g1,13379:16790162,11874292 -g1,13379:18180836,11874292 -g1,13379:20468697,11874292 -g1,13379:22119548,11874292 -k1,13379:25221369,11874292:1580075 -g1,13379:25549049,11874292 -) -g1,13379:25549049,11874292 -(1,13380:25549049,11874292:5382473,555093,237900 -g1,13379:25876729,11874292 -g1,13379:25876730,11874292 -(1,13379:25876730,11874292:0,452978,115847 -r1,13396:29752114,11874292:3875384,568825,115847 -k1,13379:25876730,11874292:-3875384 -) -(1,13379:25876730,11874292:3875384,452978,115847 -k1,13379:25876730,11874292:3277 -h1,13379:29748837,11874292:0,411205,112570 -) -k1,13380:30603842,11874292:851728 -g1,13380:30931522,11874292 -) -g1,13380:30931522,11874292 -) -(1,13381:10133016,12667285:20798506,555093,237900 -g1,13380:10133016,12667285 -(1,13380:10133016,12667285:15416033,555093,237900 -r1,13396:10133016,12667285:0,792993,237900 -g1,13380:10460696,12667285 -g1,13380:10460697,12667285 -g1,13380:17391129,12667285 -k1,13380:25221369,12667285:6308494 -g1,13380:25549049,12667285 -) -g1,13380:25549049,12667285 -(1,13381:25549049,12667285:5382473,555093,237900 -g1,13380:25876729,12667285 -g1,13380:25876730,12667285 -(1,13380:25876730,12667285:0,452978,115847 -r1,13396:29048690,12667285:3171960,568825,115847 -k1,13380:25876730,12667285:-3171960 -) -(1,13380:25876730,12667285:3171960,452978,115847 -k1,13380:25876730,12667285:3277 -h1,13380:29045413,12667285:0,411205,112570 -) -k1,13381:30603842,12667285:1555152 -g1,13381:30931522,12667285 -) -g1,13381:30931522,12667285 -) -(1,13382:10133016,13460278:20798506,555093,237900 -g1,13381:10133016,13460278 -(1,13381:10133016,13460278:15416033,555093,237900 -r1,13396:10133016,13460278:0,792993,237900 -g1,13381:10460696,13460278 -g1,13381:10460697,13460278 -g1,13381:14262440,13460278 -g1,13381:15983415,13460278 -g1,13381:19070160,13460278 -g1,13381:21856095,13460278 -g1,13381:25221369,13460278 -g1,13381:25549049,13460278 -) -g1,13381:25549049,13460278 -(1,13382:25549049,13460278:5382473,555093,237900 -g1,13381:25876729,13460278 -g1,13381:25876730,13460278 -(1,13381:25876730,13460278:0,452978,115847 -r1,13396:29400402,13460278:3523672,568825,115847 -k1,13381:25876730,13460278:-3523672 -) -(1,13381:25876730,13460278:3523672,452978,115847 -k1,13381:25876730,13460278:3277 -h1,13381:29397125,13460278:0,411205,112570 -) -k1,13382:30603842,13460278:1203440 -g1,13382:30931522,13460278 -) -g1,13382:30931522,13460278 -) -(1,13383:10133016,14253271:20798506,555093,237900 -g1,13382:10133016,14253271 -(1,13382:10133016,14253271:15416033,555093,237900 -r1,13396:10133016,14253271:0,792993,237900 -g1,13382:10460696,14253271 -g1,13382:10460697,14253271 -$1,13382:10460697,14253271 -$1,13382:10905686,14253271 -g1,13382:12509352,14253271 -g1,13382:13360009,14253271 -g1,13382:16319614,14253271 -g1,13382:17691282,14253271 -k1,13382:25221369,14253271:4545577 -g1,13382:25549049,14253271 -) -g1,13382:25549049,14253271 -(1,13383:25549049,14253271:5382473,555093,237900 -g1,13382:25876729,14253271 -g1,13382:25876730,14253271 -(1,13382:25876730,14253271:0,452978,115847 -r1,13396:29400402,14253271:3523672,568825,115847 -k1,13382:25876730,14253271:-3523672 -) -(1,13382:25876730,14253271:3523672,452978,115847 -k1,13382:25876730,14253271:3277 -h1,13382:29397125,14253271:0,411205,112570 -) -k1,13383:30603842,14253271:1203440 -g1,13383:30931522,14253271 -) -g1,13383:30931522,14253271 -) -(1,13384:10133016,15046264:20798506,555093,237900 -g1,13383:10133016,15046264 -(1,13383:10133016,15046264:15416033,555093,237900 -r1,13396:10133016,15046264:0,792993,237900 -g1,13383:10460696,15046264 -g1,13383:10460697,15046264 -g1,13383:13105074,15046264 -g1,13383:14963019,15046264 -g1,13383:16353693,15046264 -g1,13383:17500573,15046264 -g1,13383:19514494,15046264 -k1,13383:25221369,15046264:4317512 -g1,13383:25549049,15046264 -) -g1,13383:25549049,15046264 -(1,13384:25549049,15046264:5382473,555093,237900 -g1,13383:25876729,15046264 -g1,13383:25876730,15046264 -(1,13383:25876730,15046264:0,459977,115847 -r1,13396:30455538,15046264:4578808,575824,115847 -k1,13383:25876730,15046264:-4578808 -) -(1,13383:25876730,15046264:4578808,459977,115847 -k1,13383:25876730,15046264:3277 -h1,13383:30452261,15046264:0,411205,112570 -) -k1,13384:30603842,15046264:148304 -g1,13384:30931522,15046264 -) -g1,13384:30931522,15046264 -) -(1,13385:10133016,15899380:20798506,615216,237900 -g1,13384:10133016,15899380 -(1,13384:10133016,15899380:15416033,615216,237900 -r1,13396:10133016,15899380:0,792993,237900 -g1,13384:10460696,15899380 -g1,13384:10460697,15899380 -g1,13384:13670650,15899380 -g1,13384:17716187,15899380 -$1,13384:17923281,15899380 -(1,13384:18378101,15624099:311689,339935,0 -) -$1,13384:18689790,15899380 -g1,13384:19096113,15899380 -g1,13384:20486787,15899380 -g1,13384:21633667,15899380 -g1,13384:23647588,15899380 -k1,13384:25221369,15899380:184418 -g1,13384:25549049,15899380 -) -g1,13384:25549049,15899380 -(1,13385:25549049,15899380:5382473,615216,237900 -g1,13384:25876729,15899380 -g1,13384:25876730,15899380 -(1,13384:25876730,15899380:0,452978,115847 -r1,13396:30103826,15899380:4227096,568825,115847 -k1,13384:25876730,15899380:-4227096 -) -(1,13384:25876730,15899380:4227096,452978,115847 -k1,13384:25876730,15899380:3277 -h1,13384:30100549,15899380:0,411205,112570 -) -k1,13385:30603842,15899380:500016 -g1,13385:30931522,15899380 -) -g1,13385:30931522,15899380 -) -(1,13386:10133016,16692373:20798506,555093,237900 -g1,13385:10133016,16692373 -(1,13385:10133016,16692373:15416033,555093,237900 -r1,13396:10133016,16692373:0,792993,237900 -g1,13385:10460696,16692373 -g1,13385:10460697,16692373 -g1,13385:12342235,16692373 -g1,13385:15333298,16692373 -k1,13385:25221369,16692373:8519024 -g1,13385:25549049,16692373 -) -g1,13385:25549049,16692373 -(1,13386:25549049,16692373:5382473,555093,237900 -g1,13385:25876729,16692373 -g1,13385:25876730,16692373 -(1,13385:25876730,16692373:0,452978,115847 -r1,13396:30103826,16692373:4227096,568825,115847 -k1,13385:25876730,16692373:-4227096 -) -(1,13385:25876730,16692373:4227096,452978,115847 -k1,13385:25876730,16692373:3277 -h1,13385:30100549,16692373:0,411205,112570 -) -k1,13386:30603842,16692373:500016 -g1,13386:30931522,16692373 -) -g1,13386:30931522,16692373 -) -(1,13387:10133016,17485366:20798506,555093,237900 -g1,13386:10133016,17485366 -(1,13386:10133016,17485366:15416033,555093,237900 -r1,13396:10133016,17485366:0,792993,237900 -g1,13386:10460696,17485366 -g1,13386:10460697,17485366 -g1,13386:12028973,17485366 -g1,13386:12887494,17485366 -g1,13386:14814252,17485366 -g1,13386:15696366,17485366 -g1,13386:17590356,17485366 -k1,13386:25221369,17485366:3825993 -g1,13386:25549049,17485366 -) -g1,13386:25549049,17485366 -(1,13387:25549049,17485366:5382473,555093,237900 -g1,13386:25876729,17485366 -g1,13386:25876730,17485366 -(1,13386:25876730,17485366:0,452978,115847 -r1,13396:29752114,17485366:3875384,568825,115847 -k1,13386:25876730,17485366:-3875384 -) -(1,13386:25876730,17485366:3875384,452978,115847 -k1,13386:25876730,17485366:3277 -h1,13386:29748837,17485366:0,411205,112570 -) -k1,13387:30603842,17485366:851728 -g1,13387:30931522,17485366 -) -g1,13387:30931522,17485366 -) -] -$1,13388:30931522,13733408 -) -g1,13388:30931522,13733408 -) -(1,13388:9933787,18085286:20997735,65536,0 -g1,13388:9933787,18085286 -(1,13388:9933787,18085286:20997735,65536,0 -r1,13396:30931522,18085286:20997735,65536,0 -) -g1,13388:30931522,18085286 -) -] -g1,13388:30931522,18085286 -k1,13388:32583029,18085286:1651507 -) -] -] -v1,13341:6630773,20051366:0,393216,0 -(1,13341:6630773,25083090:25952256,5424940,196608 -g1,13341:6630773,25083090 -g1,13341:6630773,25083090 -g1,13341:6434165,25083090 -(1,13341:6434165,25083090:0,5424940,196608 -r1,13396:32779637,25083090:26345472,5621548,196608 -k1,13341:6434165,25083090:-26345472 -) -(1,13341:6434165,25083090:26345472,5424940,196608 -[1,13341:6630773,25083090:25952256,5228332,0 -(1,13340:6630773,20279197:25952256,424439,112852 -h1,13340:6630773,20279197:0,0,0 -g1,13340:7626635,20279197 -g1,13340:9618359,20279197 -g1,13340:9950313,20279197 -g1,13340:13269852,20279197 -g1,13340:14265714,20279197 -h1,13340:15925484,20279197:0,0,0 -k1,13340:32583029,20279197:16657545 -g1,13340:32583029,20279197 -) -(1,13340:6630773,20964052:25952256,431045,106246 -h1,13340:6630773,20964052:0,0,0 -g1,13340:7626635,20964052 -g1,13340:8290543,20964052 -g1,13340:8954451,20964052 -g1,13340:11610083,20964052 -g1,13340:12605945,20964052 -g1,13340:13269853,20964052 -g1,13340:15925485,20964052 -g1,13340:18581117,20964052 -g1,13340:19245025,20964052 -h1,13340:21236749,20964052:0,0,0 -k1,13340:32583029,20964052:11346280 -g1,13340:32583029,20964052 -) -(1,13340:6630773,21648907:25952256,431045,112852 -h1,13340:6630773,21648907:0,0,0 -k1,13340:7515984,21648907:221303 -k1,13340:11388780,21648907:221303 -k1,13340:15261576,21648907:221303 -k1,13340:16810695,21648907:221303 -k1,13340:20351537,21648907:221303 -k1,13340:21236748,21648907:221303 -k1,13340:23117821,21648907:221303 -k1,13340:25662802,21648907:221303 -k1,13340:27543875,21648907:221303 -k1,13340:28097132,21648907:221303 -k1,13340:29314297,21648907:221303 -k1,13340:31195370,21648907:221303 -k1,13340:31748627,21648907:221303 -k1,13340:32633838,21648907:221303 -k1,13340:33851003,21648907:221303 -k1,13340:35732076,21648907:221303 -k1,13340:36617287,21648907:221303 -h1,13340:36949241,21648907:0,0,0 -k1,13340:36949241,21648907:0 -k1,13340:36949241,21648907:0 -) -(1,13340:6630773,22333762:25952256,431045,106246 -h1,13340:6630773,22333762:0,0,0 -g1,13340:7626635,22333762 -g1,13340:8622497,22333762 -g1,13340:11278129,22333762 -g1,13340:14929622,22333762 -h1,13340:17917207,22333762:0,0,0 -k1,13340:32583029,22333762:14665822 -g1,13340:32583029,22333762 -) -(1,13340:6630773,23018617:25952256,407923,9908 -h1,13340:6630773,23018617:0,0,0 -g1,13340:7626635,23018617 -g1,13340:7958589,23018617 -g1,13340:11610082,23018617 -g1,13340:11942036,23018617 -h1,13340:14929621,23018617:0,0,0 -k1,13340:32583029,23018617:17653408 -g1,13340:32583029,23018617 -) -(1,13340:6630773,23703472:25952256,424439,106246 -h1,13340:6630773,23703472:0,0,0 -g1,13340:7626635,23703472 -g1,13340:9950313,23703472 -h1,13340:13269852,23703472:0,0,0 -k1,13340:32583028,23703472:19313176 -g1,13340:32583028,23703472 -) -(1,13340:6630773,24388327:25952256,424439,112852 -h1,13340:6630773,24388327:0,0,0 -g1,13340:7626635,24388327 -g1,13340:9286405,24388327 -g1,13340:10282267,24388327 -g1,13340:12273991,24388327 -g1,13340:12937899,24388327 -g1,13340:14597669,24388327 -g1,13340:15593531,24388327 -g1,13340:17585255,24388327 -h1,13340:17917209,24388327:0,0,0 -k1,13340:32583029,24388327:14665820 -g1,13340:32583029,24388327 -) -(1,13340:6630773,25073182:25952256,407923,9908 -h1,13340:6630773,25073182:0,0,0 -g1,13340:7626635,25073182 -g1,13340:7958589,25073182 -g1,13340:8290543,25073182 -g1,13340:8622497,25073182 -g1,13340:8954451,25073182 -g1,13340:9286405,25073182 -g1,13340:9618359,25073182 -g1,13340:9950313,25073182 -g1,13340:12937898,25073182 -g1,13340:13269852,25073182 -g1,13340:13601806,25073182 -g1,13340:13933760,25073182 -g1,13340:14265714,25073182 -g1,13340:14597668,25073182 -g1,13340:14929622,25073182 -g1,13340:15261576,25073182 -h1,13340:17917207,25073182:0,0,0 -k1,13340:32583029,25073182:14665822 -g1,13340:32583029,25073182 -) -] -) -g1,13341:32583029,25083090 -g1,13341:6630773,25083090 -g1,13341:6630773,25083090 -g1,13341:32583029,25083090 -g1,13341:32583029,25083090 -) -h1,13341:6630773,25279698:0,0,0 -(1,13346:6630773,26144778:25952256,513147,126483 -k1,13345:7922637,26144778:219695 -k1,13345:9536284,26144778:219696 -(1,13345:9536284,26144778:0,452978,115847 -r1,13396:15170227,26144778:5633943,568825,115847 -k1,13345:9536284,26144778:-5633943 -) -(1,13345:9536284,26144778:5633943,452978,115847 -g1,13345:13056679,26144778 -g1,13345:13760103,26144778 -h1,13345:15166950,26144778:0,411205,112570 -) -k1,13345:15563592,26144778:219695 -k1,13345:16802372,26144778:219695 -k1,13345:20006578,26144778:219696 -k1,13345:20842311,26144778:219695 -k1,13345:22081091,26144778:219695 -k1,13345:26110394,26144778:219695 -k1,13345:27897711,26144778:219696 -k1,13345:30002877,26144778:219695 -k1,13346:32583029,26144778:0 -) -(1,13346:6630773,27009858:25952256,505283,134348 -k1,13345:8405229,27009858:176688 -k1,13345:9197955,27009858:176688 -k1,13345:11597624,27009858:176688 -k1,13345:12261878,27009858:176666 -k1,13345:13630011,27009858:176688 -k1,13345:14205791,27009858:176666 -k1,13345:15886530,27009858:176688 -k1,13345:18763301,27009858:176688 -k1,13345:19931549,27009858:176688 -k1,13345:22927596,27009858:176688 -k1,13345:25005483,27009858:176688 -k1,13345:26373616,27009858:176688 -k1,13345:28733308,27009858:176688 -k1,13345:30177462,27009858:176688 -k1,13345:30710010,27009858:176688 -k1,13345:32583029,27009858:0 -) -(1,13346:6630773,27874938:25952256,473825,7863 -k1,13346:32583029,27874938:23184016 -g1,13346:32583029,27874938 -) -v1,13348:6630773,28559793:0,393216,0 -(1,13365:6630773,36468615:25952256,8302038,196608 -g1,13365:6630773,36468615 -g1,13365:6630773,36468615 -g1,13365:6434165,36468615 -(1,13365:6434165,36468615:0,8302038,196608 -r1,13396:32779637,36468615:26345472,8498646,196608 -k1,13365:6434165,36468615:-26345472 -) -(1,13365:6434165,36468615:26345472,8302038,196608 -[1,13365:6630773,36468615:25952256,8105430,0 -(1,13350:6630773,28794230:25952256,431045,112852 -(1,13349:6630773,28794230:0,0,0 -g1,13349:6630773,28794230 -g1,13349:6630773,28794230 -g1,13349:6303093,28794230 -(1,13349:6303093,28794230:0,0,0 -) -g1,13349:6630773,28794230 -) -k1,13350:6630773,28794230:0 -g1,13350:12273990,28794230 -g1,13350:12937898,28794230 -g1,13350:15261576,28794230 -g1,13350:18581115,28794230 -g1,13350:19245023,28794230 -g1,13350:21236747,28794230 -g1,13350:22896517,28794230 -g1,13350:23560425,28794230 -h1,13350:24888241,28794230:0,0,0 -k1,13350:32583029,28794230:7694788 -g1,13350:32583029,28794230 -) -(1,13364:6630773,29610157:25952256,398014,0 -(1,13352:6630773,29610157:0,0,0 -g1,13352:6630773,29610157 -g1,13352:6630773,29610157 -g1,13352:6303093,29610157 -(1,13352:6303093,29610157:0,0,0 -) -g1,13352:6630773,29610157 -) -h1,13364:7294681,29610157:0,0,0 -k1,13364:32583029,29610157:25288348 -g1,13364:32583029,29610157 -) -(1,13364:6630773,30295012:25952256,424439,106246 -h1,13364:6630773,30295012:0,0,0 -g1,13364:7626635,30295012 -g1,13364:7958589,30295012 -g1,13364:9286405,30295012 -g1,13364:11610083,30295012 -k1,13364:11610083,30295012:0 -h1,13364:13601807,30295012:0,0,0 -k1,13364:32583029,30295012:18981222 -g1,13364:32583029,30295012 -) -(1,13364:6630773,30979867:25952256,398014,0 -h1,13364:6630773,30979867:0,0,0 -h1,13364:7294681,30979867:0,0,0 -k1,13364:32583029,30979867:25288348 -g1,13364:32583029,30979867 -) -(1,13364:6630773,31664722:25952256,424439,112852 -h1,13364:6630773,31664722:0,0,0 -g1,13364:7626635,31664722 -g1,13364:9618359,31664722 -g1,13364:9950313,31664722 -g1,13364:13269852,31664722 -g1,13364:14265714,31664722 -h1,13364:15925484,31664722:0,0,0 -k1,13364:32583029,31664722:16657545 -g1,13364:32583029,31664722 -) -(1,13364:6630773,32349577:25952256,431045,106246 -h1,13364:6630773,32349577:0,0,0 -g1,13364:7626635,32349577 -g1,13364:8290543,32349577 -g1,13364:8954451,32349577 -g1,13364:11610083,32349577 -g1,13364:12605945,32349577 -g1,13364:13269853,32349577 -g1,13364:14597669,32349577 -g1,13364:17253301,32349577 -g1,13364:17917209,32349577 -h1,13364:19908933,32349577:0,0,0 -k1,13364:32583029,32349577:12674096 -g1,13364:32583029,32349577 -) -(1,13364:6630773,33034432:25952256,431045,112852 -h1,13364:6630773,33034432:0,0,0 -k1,13364:7515984,33034432:221303 -k1,13364:11388780,33034432:221303 -k1,13364:15261576,33034432:221303 -k1,13364:16810695,33034432:221303 -k1,13364:20351537,33034432:221303 -k1,13364:21236748,33034432:221303 -k1,13364:23117821,33034432:221303 -k1,13364:25662802,33034432:221303 -k1,13364:27543875,33034432:221303 -k1,13364:28097132,33034432:221303 -k1,13364:29314297,33034432:221303 -k1,13364:31195370,33034432:221303 -k1,13364:31748627,33034432:221303 -k1,13364:32633838,33034432:221303 -k1,13364:33851003,33034432:221303 -k1,13364:35732076,33034432:221303 -k1,13364:36617287,33034432:221303 -h1,13364:36949241,33034432:0,0,0 -k1,13364:36949241,33034432:0 -k1,13364:36949241,33034432:0 -) -(1,13364:6630773,33719287:25952256,431045,106246 -h1,13364:6630773,33719287:0,0,0 -g1,13364:7626635,33719287 -g1,13364:8622497,33719287 -g1,13364:11278129,33719287 -g1,13364:14929622,33719287 -h1,13364:17917207,33719287:0,0,0 -k1,13364:32583029,33719287:14665822 -g1,13364:32583029,33719287 -) -(1,13364:6630773,34404142:25952256,407923,9908 -h1,13364:6630773,34404142:0,0,0 -g1,13364:7626635,34404142 -g1,13364:7958589,34404142 -g1,13364:11610082,34404142 -g1,13364:11942036,34404142 -h1,13364:14929621,34404142:0,0,0 -k1,13364:32583029,34404142:17653408 -g1,13364:32583029,34404142 -) -(1,13364:6630773,35088997:25952256,424439,106246 -h1,13364:6630773,35088997:0,0,0 -g1,13364:7626635,35088997 -g1,13364:9950313,35088997 -h1,13364:13269852,35088997:0,0,0 -k1,13364:32583028,35088997:19313176 -g1,13364:32583028,35088997 -) -(1,13364:6630773,35773852:25952256,424439,112852 -h1,13364:6630773,35773852:0,0,0 -g1,13364:7626635,35773852 -g1,13364:9286405,35773852 -g1,13364:10282267,35773852 -g1,13364:12273991,35773852 -g1,13364:12937899,35773852 -g1,13364:14597669,35773852 -g1,13364:15593531,35773852 -g1,13364:17585255,35773852 -h1,13364:17917209,35773852:0,0,0 -k1,13364:32583029,35773852:14665820 -g1,13364:32583029,35773852 -) -(1,13364:6630773,36458707:25952256,407923,9908 -h1,13364:6630773,36458707:0,0,0 -g1,13364:7626635,36458707 -g1,13364:7958589,36458707 -g1,13364:8290543,36458707 -g1,13364:8622497,36458707 -g1,13364:8954451,36458707 -g1,13364:9286405,36458707 -g1,13364:9618359,36458707 -g1,13364:9950313,36458707 -g1,13364:12937898,36458707 -g1,13364:13269852,36458707 -g1,13364:13601806,36458707 -g1,13364:13933760,36458707 -g1,13364:14265714,36458707 -g1,13364:14597668,36458707 -g1,13364:14929622,36458707 -g1,13364:15261576,36458707 -h1,13364:17917207,36458707:0,0,0 -k1,13364:32583029,36458707:14665822 -g1,13364:32583029,36458707 -) -] -) -g1,13365:32583029,36468615 -g1,13365:6630773,36468615 -g1,13365:6630773,36468615 -g1,13365:32583029,36468615 -g1,13365:32583029,36468615 -) -h1,13365:6630773,36665223:0,0,0 -(1,13369:6630773,37530303:25952256,513147,126483 -h1,13368:6630773,37530303:983040,0,0 -k1,13368:9022232,37530303:211732 -$1,13368:9022232,37530303 -$1,13368:9342703,37530303 -k1,13368:10958871,37530303:211731 -k1,13368:13171417,37530303:211732 -k1,13368:14069310,37530303:211731 -k1,13368:15051745,37530303:211732 -k1,13368:17924894,37530303:211732 -k1,13368:18795917,37530303:211731 -k1,13368:20338030,37530303:211732 -k1,13368:23633886,37530303:211732 -k1,13368:25367363,37530303:211731 -k1,13368:26570655,37530303:211732 -k1,13368:29069593,37530303:211731 -k1,13368:31516758,37530303:211732 -k1,13368:32583029,37530303:0 -) -(1,13369:6630773,38395383:25952256,513147,126483 -g1,13368:7446040,38395383 -g1,13368:8233782,38395383 -g1,13368:10176269,38395383 -h1,13368:11146857,38395383:0,0,0 -g1,13368:11346086,38395383 -g1,13368:12869142,38395383 -g1,13368:13483214,38395383 -g1,13368:16708240,38395383 -g1,13368:17855120,38395383 -g1,13368:21359330,38395383 -g1,13368:23071785,38395383 -g1,13368:26355138,38395383 -k1,13369:32583029,38395383:4653717 -g1,13369:32583029,38395383 -) -(1,13393:6630773,41226543:25952256,32768,229376 -(1,13393:6630773,41226543:0,32768,229376 -(1,13393:6630773,41226543:5505024,32768,229376 -r1,13396:12135797,41226543:5505024,262144,229376 -) -k1,13393:6630773,41226543:-5505024 -) -(1,13393:6630773,41226543:25952256,32768,0 -r1,13396:32583029,41226543:25952256,32768,0 -) -) -(1,13393:6630773,42858395:25952256,606339,161218 -(1,13393:6630773,42858395:1974731,582746,14155 -g1,13393:6630773,42858395 -g1,13393:8605504,42858395 -) -g1,13393:11257353,42858395 -g1,13393:14070421,42858395 -g1,13393:15085705,42858395 -k1,13393:32583029,42858395:16954686 -g1,13393:32583029,42858395 -) -(1,13396:6630773,44116691:25952256,513147,134348 -k1,13395:8077725,44116691:271892 -k1,13395:10682699,44116691:271892 -k1,13395:13939100,44116691:271891 -k1,13395:14862420,44116691:271892 -k1,13395:17122019,44116691:271892 -k1,13395:19328534,44116691:271892 -k1,13395:20216464,44116691:271892 -k1,13395:20903125,44116691:271818 -k1,13395:21706514,44116691:271892 -k1,13395:22629834,44116691:271892 -k1,13395:25604431,44116691:271892 -k1,13395:26895408,44116691:271892 -k1,13395:29089470,44116691:271891 -k1,13395:31295985,44116691:271892 -k1,13395:32227169,44116691:271892 -k1,13395:32583029,44116691:0 -) -(1,13396:6630773,44981771:25952256,513147,134348 -k1,13395:8805040,44981771:186560 -k1,13395:10559221,44981771:186560 -k1,13395:11764866,44981771:186560 -k1,13395:15266893,44981771:186561 -k1,13395:16112745,44981771:186560 -k1,13395:17318390,44981771:186560 -k1,13395:19217406,44981771:186560 -k1,13395:21565343,44981771:186560 -k1,13395:22239479,44981771:186548 -k1,13395:24413746,44981771:186560 -k1,13395:26534929,44981771:186560 -k1,13395:29416985,44981771:186560 -k1,13395:32583029,44981771:0 -) -] -(1,13396:32583029,45706769:0,0,0 -g1,13396:32583029,45706769 -) -) -] -(1,13396:6630773,47279633:25952256,0,0 -h1,13396:6630773,47279633:25952256,0,0 -) -] -(1,13396:4262630,4025873:0,0,0 -[1,13396:-473656,4025873:0,0,0 -(1,13396:-473656,-710413:0,0,0 -(1,13396:-473656,-710413:0,0,0 -g1,13396:-473656,-710413 -) -g1,13396:-473656,-710413 +[1,13394:3078558,4812305:0,0,0 +(1,13394:3078558,49800853:0,16384,2228224 +g1,13394:29030814,49800853 +g1,13394:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13394:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13394:37855564,49800853:1179648,16384,0 +) +) +k1,13394:3078556,49800853:-34777008 +) +] +g1,13394:6630773,4812305 +g1,13394:6630773,4812305 +g1,13394:8691224,4812305 +g1,13394:10903719,4812305 +g1,13394:11705879,4812305 +g1,13394:12319296,4812305 +g1,13394:12518525,4812305 +k1,13394:31387653,4812305:18869128 +) +) +] +[1,13394:6630773,45706769:25952256,40108032,0 +(1,13394:6630773,45706769:25952256,40108032,0 +(1,13394:6630773,45706769:0,0,0 +g1,13394:6630773,45706769 +) +[1,13394:6630773,45706769:25952256,40108032,0 +[1,13387:6630773,18085286:25952256,12486549,0 +[1,13387:6630773,18085286:25952256,12486549,0 +(1,13369:6630773,6759380:25952256,505283,11795 +h1,13369:6607180,6759380:0,0,0 +g1,13369:8644694,6759380 +k1,13369:32583029,6759380:22948086 +g1,13369:32583029,6759380 +) +(1,13369:6630773,7624460:25952256,513147,134348 +h1,13369:6630773,7624460:0,0,0 +k1,13369:7334768,7624460:289152 +k1,13369:10649807,7624460:289242 +k1,13369:15362729,7624460:289242 +k1,13369:18956952,7624460:289242 +k1,13369:20759420,7624460:289242 +k1,13369:24132787,7624460:289243 +k1,13369:26117445,7624460:289242 +k1,13369:29377434,7624460:289242 +$1,13369:29377434,7624460 +$1,13369:29697905,7624460 +k1,13369:31391584,7624460:289242 +k1,13369:32583029,7624460:0 +) +(1,13369:6630773,8489540:25952256,505283,134348 +g1,13369:10310619,8489540 +g1,13369:12031594,8489540 +g1,13369:13222383,8489540 +g1,13369:16511635,8489540 +g1,13369:17520234,8489540 +g1,13369:19547917,8489540 +h1,13369:20743294,8489540:0,0,0 +g1,13369:20942523,8489540 +g1,13369:22333197,8489540 +h1,13369:23528574,8489540:0,0,0 +g1,13369:23901473,8489540 +k1,13369:32583029,8489540:4832627 +g1,13369:32583029,8489540 +) +(1,13386:6630773,18085286:25952256,9048521,0 +k1,13386:8282280,18085286:1651507 +k1,13372:9933787,18085286:1651507 +[1,13386:9933787,18085286:20997735,9048521,0 +(1,13386:9933787,9102301:20997735,65536,0 +g1,13386:9933787,9102301 +(1,13386:9933787,9102301:20997735,65536,0 +r1,13394:30931522,9102301:20997735,65536,0 +) +g1,13386:30931522,9102301 +) +(1,13386:9933787,13733408:20997735,4565571,4155270 +g1,13386:9933787,13733408 +(1,13386:9933787,13733408:20997735,4565571,4155270 +g1,13372:10133016,13733408 +$1,13386:10133016,13733408 +[1,13386:10133016,13733408:20798506,4565571,4155270 +(1,13375:10133016,9958957:20798506,555093,237900 +g1,13374:10133016,9958957 +(1,13374:10133016,9958957:15416033,555093,237900 +r1,13394:10133016,9958957:0,792993,237900 +g1,13374:10460696,9958957 +g1,13374:10460697,9958957 +g1,13374:13768954,9958957 +k1,13374:25221369,9958957:10260970 +g1,13374:25549049,9958957 +) +g1,13374:25549049,9958957 +(1,13375:25549049,9958957:5382473,555093,237900 +g1,13374:25876729,9958957 +g1,13374:25876730,9958957 +g1,13374:28865827,9958957 +g1,13375:30603842,9958957 +g1,13375:30931522,9958957 +) +g1,13375:30931522,9958957 +) +(1,13377:10133016,11081299:20798506,555093,237900 +g1,13376:10133016,11081299 +(1,13376:10133016,11081299:15416033,555093,237900 +r1,13394:10133016,11081299:0,792993,237900 +g1,13376:10460696,11081299 +g1,13376:10460697,11081299 +g1,13376:13630673,11081299 +$1,13376:13630673,11081299 +$1,13376:13951144,11081299 +g1,13376:15554810,11081299 +g1,13376:16359592,11081299 +g1,13376:17750266,11081299 +g1,13376:18347954,11081299 +k1,13376:25221369,11081299:4056678 +g1,13376:25549049,11081299 +) +g1,13376:25549049,11081299 +(1,13377:25549049,11081299:5382473,555093,237900 +g1,13376:25876729,11081299 +g1,13376:25876730,11081299 +(1,13376:25876730,11081299:0,452978,115847 +r1,13394:28696979,11081299:2820249,568825,115847 +k1,13376:25876730,11081299:-2820249 +) +(1,13376:25876730,11081299:2820249,452978,115847 +k1,13376:25876730,11081299:3277 +h1,13376:28693702,11081299:0,411205,112570 +) +k1,13377:30603842,11081299:1906863 +g1,13377:30931522,11081299 +) +g1,13377:30931522,11081299 +) +(1,13378:10133016,11874292:20798506,555093,237900 +g1,13377:10133016,11874292 +(1,13377:10133016,11874292:15416033,555093,237900 +r1,13394:10133016,11874292:0,792993,237900 +g1,13377:10460696,11874292 +g1,13377:10460697,11874292 +g1,13377:13574967,11874292 +g1,13377:15225818,11874292 +g1,13377:16790162,11874292 +g1,13377:18180836,11874292 +g1,13377:20468697,11874292 +g1,13377:22119548,11874292 +k1,13377:25221369,11874292:1580075 +g1,13377:25549049,11874292 +) +g1,13377:25549049,11874292 +(1,13378:25549049,11874292:5382473,555093,237900 +g1,13377:25876729,11874292 +g1,13377:25876730,11874292 +(1,13377:25876730,11874292:0,452978,115847 +r1,13394:29752114,11874292:3875384,568825,115847 +k1,13377:25876730,11874292:-3875384 +) +(1,13377:25876730,11874292:3875384,452978,115847 +k1,13377:25876730,11874292:3277 +h1,13377:29748837,11874292:0,411205,112570 +) +k1,13378:30603842,11874292:851728 +g1,13378:30931522,11874292 +) +g1,13378:30931522,11874292 +) +(1,13379:10133016,12667285:20798506,555093,237900 +g1,13378:10133016,12667285 +(1,13378:10133016,12667285:15416033,555093,237900 +r1,13394:10133016,12667285:0,792993,237900 +g1,13378:10460696,12667285 +g1,13378:10460697,12667285 +g1,13378:17391129,12667285 +k1,13378:25221369,12667285:6308494 +g1,13378:25549049,12667285 +) +g1,13378:25549049,12667285 +(1,13379:25549049,12667285:5382473,555093,237900 +g1,13378:25876729,12667285 +g1,13378:25876730,12667285 +(1,13378:25876730,12667285:0,452978,115847 +r1,13394:29048690,12667285:3171960,568825,115847 +k1,13378:25876730,12667285:-3171960 +) +(1,13378:25876730,12667285:3171960,452978,115847 +k1,13378:25876730,12667285:3277 +h1,13378:29045413,12667285:0,411205,112570 +) +k1,13379:30603842,12667285:1555152 +g1,13379:30931522,12667285 +) +g1,13379:30931522,12667285 +) +(1,13380:10133016,13460278:20798506,555093,237900 +g1,13379:10133016,13460278 +(1,13379:10133016,13460278:15416033,555093,237900 +r1,13394:10133016,13460278:0,792993,237900 +g1,13379:10460696,13460278 +g1,13379:10460697,13460278 +g1,13379:14262440,13460278 +g1,13379:15983415,13460278 +g1,13379:19070160,13460278 +g1,13379:21856095,13460278 +g1,13379:25221369,13460278 +g1,13379:25549049,13460278 +) +g1,13379:25549049,13460278 +(1,13380:25549049,13460278:5382473,555093,237900 +g1,13379:25876729,13460278 +g1,13379:25876730,13460278 +(1,13379:25876730,13460278:0,452978,115847 +r1,13394:29400402,13460278:3523672,568825,115847 +k1,13379:25876730,13460278:-3523672 +) +(1,13379:25876730,13460278:3523672,452978,115847 +k1,13379:25876730,13460278:3277 +h1,13379:29397125,13460278:0,411205,112570 +) +k1,13380:30603842,13460278:1203440 +g1,13380:30931522,13460278 +) +g1,13380:30931522,13460278 +) +(1,13381:10133016,14253271:20798506,555093,237900 +g1,13380:10133016,14253271 +(1,13380:10133016,14253271:15416033,555093,237900 +r1,13394:10133016,14253271:0,792993,237900 +g1,13380:10460696,14253271 +g1,13380:10460697,14253271 +$1,13380:10460697,14253271 +$1,13380:10905686,14253271 +g1,13380:12509352,14253271 +g1,13380:13360009,14253271 +g1,13380:16319614,14253271 +g1,13380:17691282,14253271 +k1,13380:25221369,14253271:4545577 +g1,13380:25549049,14253271 +) +g1,13380:25549049,14253271 +(1,13381:25549049,14253271:5382473,555093,237900 +g1,13380:25876729,14253271 +g1,13380:25876730,14253271 +(1,13380:25876730,14253271:0,452978,115847 +r1,13394:29400402,14253271:3523672,568825,115847 +k1,13380:25876730,14253271:-3523672 +) +(1,13380:25876730,14253271:3523672,452978,115847 +k1,13380:25876730,14253271:3277 +h1,13380:29397125,14253271:0,411205,112570 +) +k1,13381:30603842,14253271:1203440 +g1,13381:30931522,14253271 +) +g1,13381:30931522,14253271 +) +(1,13382:10133016,15046264:20798506,555093,237900 +g1,13381:10133016,15046264 +(1,13381:10133016,15046264:15416033,555093,237900 +r1,13394:10133016,15046264:0,792993,237900 +g1,13381:10460696,15046264 +g1,13381:10460697,15046264 +g1,13381:13105074,15046264 +g1,13381:14963019,15046264 +g1,13381:16353693,15046264 +g1,13381:17500573,15046264 +g1,13381:19514494,15046264 +k1,13381:25221369,15046264:4317512 +g1,13381:25549049,15046264 +) +g1,13381:25549049,15046264 +(1,13382:25549049,15046264:5382473,555093,237900 +g1,13381:25876729,15046264 +g1,13381:25876730,15046264 +(1,13381:25876730,15046264:0,459977,115847 +r1,13394:30455538,15046264:4578808,575824,115847 +k1,13381:25876730,15046264:-4578808 +) +(1,13381:25876730,15046264:4578808,459977,115847 +k1,13381:25876730,15046264:3277 +h1,13381:30452261,15046264:0,411205,112570 +) +k1,13382:30603842,15046264:148304 +g1,13382:30931522,15046264 +) +g1,13382:30931522,15046264 +) +(1,13383:10133016,15899380:20798506,615216,237900 +g1,13382:10133016,15899380 +(1,13382:10133016,15899380:15416033,615216,237900 +r1,13394:10133016,15899380:0,792993,237900 +g1,13382:10460696,15899380 +g1,13382:10460697,15899380 +g1,13382:13670650,15899380 +g1,13382:17716187,15899380 +$1,13382:17923281,15899380 +(1,13382:18378101,15624099:311689,339935,0 +) +$1,13382:18689790,15899380 +g1,13382:19096113,15899380 +g1,13382:20486787,15899380 +g1,13382:21633667,15899380 +g1,13382:23647588,15899380 +k1,13382:25221369,15899380:184418 +g1,13382:25549049,15899380 +) +g1,13382:25549049,15899380 +(1,13383:25549049,15899380:5382473,615216,237900 +g1,13382:25876729,15899380 +g1,13382:25876730,15899380 +(1,13382:25876730,15899380:0,452978,115847 +r1,13394:30103826,15899380:4227096,568825,115847 +k1,13382:25876730,15899380:-4227096 +) +(1,13382:25876730,15899380:4227096,452978,115847 +k1,13382:25876730,15899380:3277 +h1,13382:30100549,15899380:0,411205,112570 +) +k1,13383:30603842,15899380:500016 +g1,13383:30931522,15899380 +) +g1,13383:30931522,15899380 +) +(1,13384:10133016,16692373:20798506,555093,237900 +g1,13383:10133016,16692373 +(1,13383:10133016,16692373:15416033,555093,237900 +r1,13394:10133016,16692373:0,792993,237900 +g1,13383:10460696,16692373 +g1,13383:10460697,16692373 +g1,13383:12342235,16692373 +g1,13383:15333298,16692373 +k1,13383:25221369,16692373:8519024 +g1,13383:25549049,16692373 +) +g1,13383:25549049,16692373 +(1,13384:25549049,16692373:5382473,555093,237900 +g1,13383:25876729,16692373 +g1,13383:25876730,16692373 +(1,13383:25876730,16692373:0,452978,115847 +r1,13394:30103826,16692373:4227096,568825,115847 +k1,13383:25876730,16692373:-4227096 +) +(1,13383:25876730,16692373:4227096,452978,115847 +k1,13383:25876730,16692373:3277 +h1,13383:30100549,16692373:0,411205,112570 +) +k1,13384:30603842,16692373:500016 +g1,13384:30931522,16692373 +) +g1,13384:30931522,16692373 +) +(1,13385:10133016,17485366:20798506,555093,237900 +g1,13384:10133016,17485366 +(1,13384:10133016,17485366:15416033,555093,237900 +r1,13394:10133016,17485366:0,792993,237900 +g1,13384:10460696,17485366 +g1,13384:10460697,17485366 +g1,13384:12028973,17485366 +g1,13384:12887494,17485366 +g1,13384:14814252,17485366 +g1,13384:15696366,17485366 +g1,13384:17590356,17485366 +k1,13384:25221369,17485366:3825993 +g1,13384:25549049,17485366 +) +g1,13384:25549049,17485366 +(1,13385:25549049,17485366:5382473,555093,237900 +g1,13384:25876729,17485366 +g1,13384:25876730,17485366 +(1,13384:25876730,17485366:0,452978,115847 +r1,13394:29752114,17485366:3875384,568825,115847 +k1,13384:25876730,17485366:-3875384 +) +(1,13384:25876730,17485366:3875384,452978,115847 +k1,13384:25876730,17485366:3277 +h1,13384:29748837,17485366:0,411205,112570 +) +k1,13385:30603842,17485366:851728 +g1,13385:30931522,17485366 +) +g1,13385:30931522,17485366 +) +] +$1,13386:30931522,13733408 +) +g1,13386:30931522,13733408 +) +(1,13386:9933787,18085286:20997735,65536,0 +g1,13386:9933787,18085286 +(1,13386:9933787,18085286:20997735,65536,0 +r1,13394:30931522,18085286:20997735,65536,0 +) +g1,13386:30931522,18085286 +) +] +g1,13386:30931522,18085286 +k1,13386:32583029,18085286:1651507 +) +] +] +v1,13339:6630773,20051366:0,393216,0 +(1,13339:6630773,25083090:25952256,5424940,196608 +g1,13339:6630773,25083090 +g1,13339:6630773,25083090 +g1,13339:6434165,25083090 +(1,13339:6434165,25083090:0,5424940,196608 +r1,13394:32779637,25083090:26345472,5621548,196608 +k1,13339:6434165,25083090:-26345472 +) +(1,13339:6434165,25083090:26345472,5424940,196608 +[1,13339:6630773,25083090:25952256,5228332,0 +(1,13338:6630773,20279197:25952256,424439,112852 +h1,13338:6630773,20279197:0,0,0 +g1,13338:7626635,20279197 +g1,13338:9618359,20279197 +g1,13338:9950313,20279197 +g1,13338:13269852,20279197 +g1,13338:14265714,20279197 +h1,13338:15925484,20279197:0,0,0 +k1,13338:32583029,20279197:16657545 +g1,13338:32583029,20279197 +) +(1,13338:6630773,20964052:25952256,431045,106246 +h1,13338:6630773,20964052:0,0,0 +g1,13338:7626635,20964052 +g1,13338:8290543,20964052 +g1,13338:8954451,20964052 +g1,13338:11610083,20964052 +g1,13338:12605945,20964052 +g1,13338:13269853,20964052 +g1,13338:15925485,20964052 +g1,13338:18581117,20964052 +g1,13338:19245025,20964052 +h1,13338:21236749,20964052:0,0,0 +k1,13338:32583029,20964052:11346280 +g1,13338:32583029,20964052 +) +(1,13338:6630773,21648907:25952256,431045,112852 +h1,13338:6630773,21648907:0,0,0 +k1,13338:7515984,21648907:221303 +k1,13338:11388780,21648907:221303 +k1,13338:15261576,21648907:221303 +k1,13338:16810695,21648907:221303 +k1,13338:20351537,21648907:221303 +k1,13338:21236748,21648907:221303 +k1,13338:23117821,21648907:221303 +k1,13338:25662802,21648907:221303 +k1,13338:27543875,21648907:221303 +k1,13338:28097132,21648907:221303 +k1,13338:29314297,21648907:221303 +k1,13338:31195370,21648907:221303 +k1,13338:31748627,21648907:221303 +k1,13338:32633838,21648907:221303 +k1,13338:33851003,21648907:221303 +k1,13338:35732076,21648907:221303 +k1,13338:36617287,21648907:221303 +h1,13338:36949241,21648907:0,0,0 +k1,13338:36949241,21648907:0 +k1,13338:36949241,21648907:0 +) +(1,13338:6630773,22333762:25952256,431045,106246 +h1,13338:6630773,22333762:0,0,0 +g1,13338:7626635,22333762 +g1,13338:8622497,22333762 +g1,13338:11278129,22333762 +g1,13338:14929622,22333762 +h1,13338:17917207,22333762:0,0,0 +k1,13338:32583029,22333762:14665822 +g1,13338:32583029,22333762 +) +(1,13338:6630773,23018617:25952256,407923,9908 +h1,13338:6630773,23018617:0,0,0 +g1,13338:7626635,23018617 +g1,13338:7958589,23018617 +g1,13338:11610082,23018617 +g1,13338:11942036,23018617 +h1,13338:14929621,23018617:0,0,0 +k1,13338:32583029,23018617:17653408 +g1,13338:32583029,23018617 +) +(1,13338:6630773,23703472:25952256,424439,106246 +h1,13338:6630773,23703472:0,0,0 +g1,13338:7626635,23703472 +g1,13338:9950313,23703472 +h1,13338:13269852,23703472:0,0,0 +k1,13338:32583028,23703472:19313176 +g1,13338:32583028,23703472 +) +(1,13338:6630773,24388327:25952256,424439,112852 +h1,13338:6630773,24388327:0,0,0 +g1,13338:7626635,24388327 +g1,13338:9286405,24388327 +g1,13338:10282267,24388327 +g1,13338:12273991,24388327 +g1,13338:12937899,24388327 +g1,13338:14597669,24388327 +g1,13338:15593531,24388327 +g1,13338:17585255,24388327 +h1,13338:17917209,24388327:0,0,0 +k1,13338:32583029,24388327:14665820 +g1,13338:32583029,24388327 +) +(1,13338:6630773,25073182:25952256,407923,9908 +h1,13338:6630773,25073182:0,0,0 +g1,13338:7626635,25073182 +g1,13338:7958589,25073182 +g1,13338:8290543,25073182 +g1,13338:8622497,25073182 +g1,13338:8954451,25073182 +g1,13338:9286405,25073182 +g1,13338:9618359,25073182 +g1,13338:9950313,25073182 +g1,13338:12937898,25073182 +g1,13338:13269852,25073182 +g1,13338:13601806,25073182 +g1,13338:13933760,25073182 +g1,13338:14265714,25073182 +g1,13338:14597668,25073182 +g1,13338:14929622,25073182 +g1,13338:15261576,25073182 +h1,13338:17917207,25073182:0,0,0 +k1,13338:32583029,25073182:14665822 +g1,13338:32583029,25073182 +) +] +) +g1,13339:32583029,25083090 +g1,13339:6630773,25083090 +g1,13339:6630773,25083090 +g1,13339:32583029,25083090 +g1,13339:32583029,25083090 +) +h1,13339:6630773,25279698:0,0,0 +(1,13344:6630773,26144778:25952256,513147,126483 +k1,13343:7922637,26144778:219695 +k1,13343:9536284,26144778:219696 +(1,13343:9536284,26144778:0,452978,115847 +r1,13394:15170227,26144778:5633943,568825,115847 +k1,13343:9536284,26144778:-5633943 +) +(1,13343:9536284,26144778:5633943,452978,115847 +g1,13343:13056679,26144778 +g1,13343:13760103,26144778 +h1,13343:15166950,26144778:0,411205,112570 +) +k1,13343:15563592,26144778:219695 +k1,13343:16802372,26144778:219695 +k1,13343:20006578,26144778:219696 +k1,13343:20842311,26144778:219695 +k1,13343:22081091,26144778:219695 +k1,13343:26110394,26144778:219695 +k1,13343:27897711,26144778:219696 +k1,13343:30002877,26144778:219695 +k1,13344:32583029,26144778:0 +) +(1,13344:6630773,27009858:25952256,505283,134348 +k1,13343:8405229,27009858:176688 +k1,13343:9197955,27009858:176688 +k1,13343:11597624,27009858:176688 +k1,13343:12261878,27009858:176666 +k1,13343:13630011,27009858:176688 +k1,13343:14205791,27009858:176666 +k1,13343:15886530,27009858:176688 +k1,13343:18763301,27009858:176688 +k1,13343:19931549,27009858:176688 +k1,13343:22927596,27009858:176688 +k1,13343:25005483,27009858:176688 +k1,13343:26373616,27009858:176688 +k1,13343:28733308,27009858:176688 +k1,13343:30177462,27009858:176688 +k1,13343:30710010,27009858:176688 +k1,13343:32583029,27009858:0 +) +(1,13344:6630773,27874938:25952256,473825,7863 +k1,13344:32583029,27874938:23184016 +g1,13344:32583029,27874938 +) +v1,13346:6630773,28559793:0,393216,0 +(1,13363:6630773,36468615:25952256,8302038,196608 +g1,13363:6630773,36468615 +g1,13363:6630773,36468615 +g1,13363:6434165,36468615 +(1,13363:6434165,36468615:0,8302038,196608 +r1,13394:32779637,36468615:26345472,8498646,196608 +k1,13363:6434165,36468615:-26345472 +) +(1,13363:6434165,36468615:26345472,8302038,196608 +[1,13363:6630773,36468615:25952256,8105430,0 +(1,13348:6630773,28794230:25952256,431045,112852 +(1,13347:6630773,28794230:0,0,0 +g1,13347:6630773,28794230 +g1,13347:6630773,28794230 +g1,13347:6303093,28794230 +(1,13347:6303093,28794230:0,0,0 +) +g1,13347:6630773,28794230 +) +k1,13348:6630773,28794230:0 +g1,13348:12273990,28794230 +g1,13348:12937898,28794230 +g1,13348:15261576,28794230 +g1,13348:18581115,28794230 +g1,13348:19245023,28794230 +g1,13348:21236747,28794230 +g1,13348:22896517,28794230 +g1,13348:23560425,28794230 +h1,13348:24888241,28794230:0,0,0 +k1,13348:32583029,28794230:7694788 +g1,13348:32583029,28794230 +) +(1,13362:6630773,29610157:25952256,398014,0 +(1,13350:6630773,29610157:0,0,0 +g1,13350:6630773,29610157 +g1,13350:6630773,29610157 +g1,13350:6303093,29610157 +(1,13350:6303093,29610157:0,0,0 +) +g1,13350:6630773,29610157 +) +h1,13362:7294681,29610157:0,0,0 +k1,13362:32583029,29610157:25288348 +g1,13362:32583029,29610157 +) +(1,13362:6630773,30295012:25952256,424439,106246 +h1,13362:6630773,30295012:0,0,0 +g1,13362:7626635,30295012 +g1,13362:7958589,30295012 +g1,13362:9286405,30295012 +g1,13362:11610083,30295012 +k1,13362:11610083,30295012:0 +h1,13362:13601807,30295012:0,0,0 +k1,13362:32583029,30295012:18981222 +g1,13362:32583029,30295012 +) +(1,13362:6630773,30979867:25952256,398014,0 +h1,13362:6630773,30979867:0,0,0 +h1,13362:7294681,30979867:0,0,0 +k1,13362:32583029,30979867:25288348 +g1,13362:32583029,30979867 +) +(1,13362:6630773,31664722:25952256,424439,112852 +h1,13362:6630773,31664722:0,0,0 +g1,13362:7626635,31664722 +g1,13362:9618359,31664722 +g1,13362:9950313,31664722 +g1,13362:13269852,31664722 +g1,13362:14265714,31664722 +h1,13362:15925484,31664722:0,0,0 +k1,13362:32583029,31664722:16657545 +g1,13362:32583029,31664722 +) +(1,13362:6630773,32349577:25952256,431045,106246 +h1,13362:6630773,32349577:0,0,0 +g1,13362:7626635,32349577 +g1,13362:8290543,32349577 +g1,13362:8954451,32349577 +g1,13362:11610083,32349577 +g1,13362:12605945,32349577 +g1,13362:13269853,32349577 +g1,13362:14597669,32349577 +g1,13362:17253301,32349577 +g1,13362:17917209,32349577 +h1,13362:19908933,32349577:0,0,0 +k1,13362:32583029,32349577:12674096 +g1,13362:32583029,32349577 +) +(1,13362:6630773,33034432:25952256,431045,112852 +h1,13362:6630773,33034432:0,0,0 +k1,13362:7515984,33034432:221303 +k1,13362:11388780,33034432:221303 +k1,13362:15261576,33034432:221303 +k1,13362:16810695,33034432:221303 +k1,13362:20351537,33034432:221303 +k1,13362:21236748,33034432:221303 +k1,13362:23117821,33034432:221303 +k1,13362:25662802,33034432:221303 +k1,13362:27543875,33034432:221303 +k1,13362:28097132,33034432:221303 +k1,13362:29314297,33034432:221303 +k1,13362:31195370,33034432:221303 +k1,13362:31748627,33034432:221303 +k1,13362:32633838,33034432:221303 +k1,13362:33851003,33034432:221303 +k1,13362:35732076,33034432:221303 +k1,13362:36617287,33034432:221303 +h1,13362:36949241,33034432:0,0,0 +k1,13362:36949241,33034432:0 +k1,13362:36949241,33034432:0 +) +(1,13362:6630773,33719287:25952256,431045,106246 +h1,13362:6630773,33719287:0,0,0 +g1,13362:7626635,33719287 +g1,13362:8622497,33719287 +g1,13362:11278129,33719287 +g1,13362:14929622,33719287 +h1,13362:17917207,33719287:0,0,0 +k1,13362:32583029,33719287:14665822 +g1,13362:32583029,33719287 +) +(1,13362:6630773,34404142:25952256,407923,9908 +h1,13362:6630773,34404142:0,0,0 +g1,13362:7626635,34404142 +g1,13362:7958589,34404142 +g1,13362:11610082,34404142 +g1,13362:11942036,34404142 +h1,13362:14929621,34404142:0,0,0 +k1,13362:32583029,34404142:17653408 +g1,13362:32583029,34404142 +) +(1,13362:6630773,35088997:25952256,424439,106246 +h1,13362:6630773,35088997:0,0,0 +g1,13362:7626635,35088997 +g1,13362:9950313,35088997 +h1,13362:13269852,35088997:0,0,0 +k1,13362:32583028,35088997:19313176 +g1,13362:32583028,35088997 +) +(1,13362:6630773,35773852:25952256,424439,112852 +h1,13362:6630773,35773852:0,0,0 +g1,13362:7626635,35773852 +g1,13362:9286405,35773852 +g1,13362:10282267,35773852 +g1,13362:12273991,35773852 +g1,13362:12937899,35773852 +g1,13362:14597669,35773852 +g1,13362:15593531,35773852 +g1,13362:17585255,35773852 +h1,13362:17917209,35773852:0,0,0 +k1,13362:32583029,35773852:14665820 +g1,13362:32583029,35773852 +) +(1,13362:6630773,36458707:25952256,407923,9908 +h1,13362:6630773,36458707:0,0,0 +g1,13362:7626635,36458707 +g1,13362:7958589,36458707 +g1,13362:8290543,36458707 +g1,13362:8622497,36458707 +g1,13362:8954451,36458707 +g1,13362:9286405,36458707 +g1,13362:9618359,36458707 +g1,13362:9950313,36458707 +g1,13362:12937898,36458707 +g1,13362:13269852,36458707 +g1,13362:13601806,36458707 +g1,13362:13933760,36458707 +g1,13362:14265714,36458707 +g1,13362:14597668,36458707 +g1,13362:14929622,36458707 +g1,13362:15261576,36458707 +h1,13362:17917207,36458707:0,0,0 +k1,13362:32583029,36458707:14665822 +g1,13362:32583029,36458707 +) +] +) +g1,13363:32583029,36468615 +g1,13363:6630773,36468615 +g1,13363:6630773,36468615 +g1,13363:32583029,36468615 +g1,13363:32583029,36468615 +) +h1,13363:6630773,36665223:0,0,0 +(1,13367:6630773,37530303:25952256,513147,126483 +h1,13366:6630773,37530303:983040,0,0 +k1,13366:9022232,37530303:211732 +$1,13366:9022232,37530303 +$1,13366:9342703,37530303 +k1,13366:10958871,37530303:211731 +k1,13366:13171417,37530303:211732 +k1,13366:14069310,37530303:211731 +k1,13366:15051745,37530303:211732 +k1,13366:17924894,37530303:211732 +k1,13366:18795917,37530303:211731 +k1,13366:20338030,37530303:211732 +k1,13366:23633886,37530303:211732 +k1,13366:25367363,37530303:211731 +k1,13366:26570655,37530303:211732 +k1,13366:29069593,37530303:211731 +k1,13366:31516758,37530303:211732 +k1,13366:32583029,37530303:0 +) +(1,13367:6630773,38395383:25952256,513147,126483 +g1,13366:7446040,38395383 +g1,13366:8233782,38395383 +g1,13366:10176269,38395383 +h1,13366:11146857,38395383:0,0,0 +g1,13366:11346086,38395383 +g1,13366:12869142,38395383 +g1,13366:13483214,38395383 +g1,13366:16708240,38395383 +g1,13366:17855120,38395383 +g1,13366:21359330,38395383 +g1,13366:23071785,38395383 +g1,13366:26355138,38395383 +k1,13367:32583029,38395383:4653717 +g1,13367:32583029,38395383 +) +(1,13391:6630773,41226543:25952256,32768,229376 +(1,13391:6630773,41226543:0,32768,229376 +(1,13391:6630773,41226543:5505024,32768,229376 +r1,13394:12135797,41226543:5505024,262144,229376 +) +k1,13391:6630773,41226543:-5505024 +) +(1,13391:6630773,41226543:25952256,32768,0 +r1,13394:32583029,41226543:25952256,32768,0 +) +) +(1,13391:6630773,42858395:25952256,606339,161218 +(1,13391:6630773,42858395:1974731,582746,14155 +g1,13391:6630773,42858395 +g1,13391:8605504,42858395 +) +g1,13391:11257353,42858395 +g1,13391:14070421,42858395 +g1,13391:15085705,42858395 +k1,13391:32583029,42858395:16954686 +g1,13391:32583029,42858395 +) +(1,13394:6630773,44116691:25952256,513147,134348 +k1,13393:8077725,44116691:271892 +k1,13393:10682699,44116691:271892 +k1,13393:13939100,44116691:271891 +k1,13393:14862420,44116691:271892 +k1,13393:17122019,44116691:271892 +k1,13393:19328534,44116691:271892 +k1,13393:20216464,44116691:271892 +k1,13393:20903125,44116691:271818 +k1,13393:21706514,44116691:271892 +k1,13393:22629834,44116691:271892 +k1,13393:25604431,44116691:271892 +k1,13393:26895408,44116691:271892 +k1,13393:29089470,44116691:271891 +k1,13393:31295985,44116691:271892 +k1,13393:32227169,44116691:271892 +k1,13393:32583029,44116691:0 +) +(1,13394:6630773,44981771:25952256,513147,134348 +k1,13393:8805040,44981771:186560 +k1,13393:10559221,44981771:186560 +k1,13393:11764866,44981771:186560 +k1,13393:15266893,44981771:186561 +k1,13393:16112745,44981771:186560 +k1,13393:17318390,44981771:186560 +k1,13393:19217406,44981771:186560 +k1,13393:21565343,44981771:186560 +k1,13393:22239479,44981771:186548 +k1,13393:24413746,44981771:186560 +k1,13393:26534929,44981771:186560 +k1,13393:29416985,44981771:186560 +k1,13393:32583029,44981771:0 +) +] +(1,13394:32583029,45706769:0,0,0 +g1,13394:32583029,45706769 +) +) +] +(1,13394:6630773,47279633:25952256,0,0 +h1,13394:6630773,47279633:25952256,0,0 +) +] +(1,13394:4262630,4025873:0,0,0 +[1,13394:-473656,4025873:0,0,0 +(1,13394:-473656,-710413:0,0,0 +(1,13394:-473656,-710413:0,0,0 +g1,13394:-473656,-710413 +) +g1,13394:-473656,-710413 ) ] ) ] !27445 -}214 -Input:2238:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}215 Input:2241:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2242:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2243:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -237423,146 +237621,188 @@ Input:2252:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2253:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{215 -[1,13429:4262630,47279633:28320399,43253760,0 -(1,13429:4262630,4025873:0,0,0 -[1,13429:-473656,4025873:0,0,0 -(1,13429:-473656,-710413:0,0,0 -(1,13429:-473656,-644877:0,0,0 -k1,13429:-473656,-644877:-65536 +{216 +[1,13427:4262630,47279633:28320399,43253760,0 +(1,13427:4262630,4025873:0,0,0 +[1,13427:-473656,4025873:0,0,0 +(1,13427:-473656,-710413:0,0,0 +(1,13427:-473656,-644877:0,0,0 +k1,13427:-473656,-644877:-65536 ) -(1,13429:-473656,4736287:0,0,0 -k1,13429:-473656,4736287:5209943 +(1,13427:-473656,4736287:0,0,0 +k1,13427:-473656,4736287:5209943 ) -g1,13429:-473656,-710413 +g1,13427:-473656,-710413 ) ] ) -[1,13429:6630773,47279633:25952256,43253760,0 -[1,13429:6630773,4812305:25952256,786432,0 -(1,13429:6630773,4812305:25952256,513147,126483 -(1,13429:6630773,4812305:25952256,513147,126483 -g1,13429:3078558,4812305 -[1,13429:3078558,4812305:0,0,0 -(1,13429:3078558,2439708:0,1703936,0 -k1,13429:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13429:2537886,2439708:1179648,16384,0 +[1,13427:6630773,47279633:25952256,43253760,0 +[1,13427:6630773,4812305:25952256,786432,0 +(1,13427:6630773,4812305:25952256,513147,126483 +(1,13427:6630773,4812305:25952256,513147,126483 +g1,13427:3078558,4812305 +[1,13427:3078558,4812305:0,0,0 +(1,13427:3078558,2439708:0,1703936,0 +k1,13427:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13427:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13429:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13427:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13429:3078558,4812305:0,0,0 -(1,13429:3078558,2439708:0,1703936,0 -g1,13429:29030814,2439708 -g1,13429:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13429:36151628,1915420:16384,1179648,0 +[1,13427:3078558,4812305:0,0,0 +(1,13427:3078558,2439708:0,1703936,0 +g1,13427:29030814,2439708 +g1,13427:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13427:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13429:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13427:37855564,2439708:1179648,16384,0 ) ) -k1,13429:3078556,2439708:-34777008 +k1,13427:3078556,2439708:-34777008 ) ] -[1,13429:3078558,4812305:0,0,0 -(1,13429:3078558,49800853:0,16384,2228224 -k1,13429:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13429:2537886,49800853:1179648,16384,0 +[1,13427:3078558,4812305:0,0,0 +(1,13427:3078558,49800853:0,16384,2228224 +k1,13427:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13427:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13429:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13427:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13429:3078558,4812305:0,0,0 -(1,13429:3078558,49800853:0,16384,2228224 -g1,13429:29030814,49800853 -g1,13429:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13429:36151628,51504789:16384,1179648,0 +[1,13427:3078558,4812305:0,0,0 +(1,13427:3078558,49800853:0,16384,2228224 +g1,13427:29030814,49800853 +g1,13427:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13427:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13429:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13427:37855564,49800853:1179648,16384,0 ) ) -k1,13429:3078556,49800853:-34777008 +k1,13427:3078556,49800853:-34777008 ) ] -g1,13429:6630773,4812305 -k1,13429:19575446,4812305:11749296 -g1,13429:21198117,4812305 -g1,13429:21985204,4812305 -g1,13429:24539797,4812305 -g1,13429:25949476,4812305 -g1,13429:28728857,4812305 -g1,13429:29852144,4812305 +g1,13427:6630773,4812305 +k1,13427:19575446,4812305:11749296 +g1,13427:21198117,4812305 +g1,13427:21985204,4812305 +g1,13427:24539797,4812305 +g1,13427:25949476,4812305 +g1,13427:28728857,4812305 +g1,13427:29852144,4812305 ) ) ] -[1,13429:6630773,45706769:25952256,40108032,0 -(1,13429:6630773,45706769:25952256,40108032,0 -(1,13429:6630773,45706769:0,0,0 -g1,13429:6630773,45706769 +[1,13427:6630773,45706769:25952256,40108032,0 +(1,13427:6630773,45706769:25952256,40108032,0 +(1,13427:6630773,45706769:0,0,0 +g1,13427:6630773,45706769 +) +[1,13427:6630773,45706769:25952256,40108032,0 +[1,13411:6630773,12724648:25952256,7125911,0 +[1,13411:6630773,12724648:25952256,7125911,0 +(1,13410:6630773,9466185:25952256,3867448,0 +k1,13410:7673877,9466185:1043104 +h1,13408:7673877,9466185:0,0,0 +(1,13408:7673877,9466185:23686741,3867448,0 +g1,13408:10576118,9466185 +(1,13408:10576118,6227191:0,0,0 +(1,13408:10576118,6227191:0,0,0 +g1,13398:10576118,6227191 +(1,13399:10576118,6227191:0,0,0 +(1,13399:10576118,6227191:0,0,0 +g1,13399:10576118,6227191 +g1,13399:10576118,6227191 +g1,13399:10576118,6227191 +g1,13399:10576118,6227191 +g1,13399:10576118,6227191 +(1,13399:10576118,6227191:0,0,0 +(1,13399:10576118,6227191:5385094,461832,113835 +(1,13399:10576118,6227191:5385094,461832,113835 +g1,13399:12477121,6227191 +) +g1,13399:15961212,6227191 +) +) +g1,13399:10576118,6227191 +g1,13399:10576118,6227191 +) +) +g1,13399:10576118,6227191 +g1,13400:10576118,6227191 +(1,13400:10576118,6227191:0,0,0 +(1,13400:10576118,6227191:0,0,0 +g1,13400:10576118,6227191 +g1,13400:10576118,6227191 +g1,13400:10576118,6227191 +g1,13400:10576118,6227191 +g1,13400:10576118,6227191 +(1,13400:10576118,6227191:0,0,0 +(1,13400:10576118,6227191:3574334,454754,7077 +(1,13400:10576118,6227191:3574334,454754,7077 +) +g1,13400:14150452,6227191 +) ) -[1,13429:6630773,45706769:25952256,40108032,0 -[1,13413:6630773,12724648:25952256,7125911,0 -[1,13413:6630773,12724648:25952256,7125911,0 -(1,13412:6630773,9466185:25952256,3867448,0 -k1,13412:7673877,9466185:1043104 -h1,13410:7673877,9466185:0,0,0 -(1,13410:7673877,9466185:23686741,3867448,0 -g1,13410:10576118,9466185 -(1,13410:10576118,6227191:0,0,0 -(1,13410:10576118,6227191:0,0,0 g1,13400:10576118,6227191 +g1,13400:10576118,6227191 +) +) (1,13401:10576118,6227191:0,0,0 (1,13401:10576118,6227191:0,0,0 g1,13401:10576118,6227191 @@ -237571,11 +237811,11 @@ g1,13401:10576118,6227191 g1,13401:10576118,6227191 g1,13401:10576118,6227191 (1,13401:10576118,6227191:0,0,0 -(1,13401:10576118,6227191:5385094,461832,113835 -(1,13401:10576118,6227191:5385094,461832,113835 -g1,13401:12477121,6227191 +(1,13401:10576118,6227191:4207806,461832,120913 +(1,13401:10576118,6227191:4207806,461832,120913 +g1,13401:12445271,6227191 ) -g1,13401:15961212,6227191 +g1,13401:14783924,6227191 ) ) g1,13401:10576118,6227191 @@ -237583,7 +237823,6 @@ g1,13401:10576118,6227191 ) ) g1,13401:10576118,6227191 -g1,13402:10576118,6227191 (1,13402:10576118,6227191:0,0,0 (1,13402:10576118,6227191:0,0,0 g1,13402:10576118,6227191 @@ -237592,16 +237831,18 @@ g1,13402:10576118,6227191 g1,13402:10576118,6227191 g1,13402:10576118,6227191 (1,13402:10576118,6227191:0,0,0 -(1,13402:10576118,6227191:3574334,454754,7077 -(1,13402:10576118,6227191:3574334,454754,7077 +(1,13402:10576118,6227191:3387360,461832,113835 +(1,13402:10576118,6227191:3387360,461832,113835 +g1,13402:12211701,6227191 ) -g1,13402:14150452,6227191 +g1,13402:13963478,6227191 ) ) g1,13402:10576118,6227191 g1,13402:10576118,6227191 ) ) +g1,13402:10576118,6227191 (1,13403:10576118,6227191:0,0,0 (1,13403:10576118,6227191:0,0,0 g1,13403:10576118,6227191 @@ -237610,11 +237851,11 @@ g1,13403:10576118,6227191 g1,13403:10576118,6227191 g1,13403:10576118,6227191 (1,13403:10576118,6227191:0,0,0 -(1,13403:10576118,6227191:4207806,461832,120913 -(1,13403:10576118,6227191:4207806,461832,120913 -g1,13403:12445271,6227191 +(1,13403:10576118,6227191:4229039,454754,113835 +(1,13403:10576118,6227191:4229039,454754,113835 +g1,13403:12392187,6227191 ) -g1,13403:14783924,6227191 +g1,13403:14805157,6227191 ) ) g1,13403:10576118,6227191 @@ -237622,45 +237863,17 @@ g1,13403:10576118,6227191 ) ) g1,13403:10576118,6227191 -(1,13404:10576118,6227191:0,0,0 -(1,13404:10576118,6227191:0,0,0 -g1,13404:10576118,6227191 g1,13404:10576118,6227191 g1,13404:10576118,6227191 g1,13404:10576118,6227191 g1,13404:10576118,6227191 -(1,13404:10576118,6227191:0,0,0 -(1,13404:10576118,6227191:3387360,461832,113835 -(1,13404:10576118,6227191:3387360,461832,113835 -g1,13404:12211701,6227191 -) -g1,13404:13963478,6227191 -) -) -g1,13404:10576118,6227191 g1,13404:10576118,6227191 -) -) g1,13404:10576118,6227191 -(1,13405:10576118,6227191:0,0,0 -(1,13405:10576118,6227191:0,0,0 g1,13405:10576118,6227191 g1,13405:10576118,6227191 g1,13405:10576118,6227191 g1,13405:10576118,6227191 g1,13405:10576118,6227191 -(1,13405:10576118,6227191:0,0,0 -(1,13405:10576118,6227191:4229039,454754,113835 -(1,13405:10576118,6227191:4229039,454754,113835 -g1,13405:12392187,6227191 -) -g1,13405:14805157,6227191 -) -) -g1,13405:10576118,6227191 -g1,13405:10576118,6227191 -) -) g1,13405:10576118,6227191 g1,13406:10576118,6227191 g1,13406:10576118,6227191 @@ -237676,690 +237889,676 @@ g1,13407:10576118,6227191 g1,13407:10576118,6227191 g1,13408:10576118,6227191 g1,13408:10576118,6227191 -g1,13408:10576118,6227191 -g1,13408:10576118,6227191 -g1,13408:10576118,6227191 -g1,13408:10576118,6227191 -g1,13409:10576118,6227191 -g1,13409:10576118,6227191 -g1,13409:10576118,6227191 -g1,13409:10576118,6227191 -g1,13409:10576118,6227191 -g1,13409:10576118,6227191 -g1,13410:10576118,6227191 -g1,13410:10576118,6227191 ) -g1,13410:10576118,6227191 +g1,13408:10576118,6227191 ) ) +g1,13408:31539925,9466185 g1,13410:31539925,9466185 -g1,13412:31539925,9466185 -k1,13412:32583029,9466185:1043104 -) -(1,13412:6630773,10986625:25952256,505283,134348 -h1,13412:6630773,10986625:0,0,0 -g1,13412:8923222,10986625 -k1,13412:32583029,10986625:22689874 -g1,13412:32583029,10986625 -) -(1,13412:6630773,11851705:25952256,513147,134348 -h1,13412:6630773,11851705:0,0,0 -k1,13412:8757547,11851705:195428 -k1,13412:10887599,11851705:195429 -k1,13412:11699065,11851705:195428 -k1,13412:12309333,11851705:195425 -k1,13412:13036258,11851705:195428 -k1,13412:14809139,11851705:195429 -k1,13412:15620605,11851705:195428 -k1,13412:17675290,11851705:195429 -k1,13412:19062163,11851705:195428 -k1,13412:20361874,11851705:195429 -k1,13412:21305068,11851705:195428 -k1,13412:25310105,11851705:195429 -k1,13412:29826322,11851705:195428 -k1,13412:30707913,11851705:195429 -k1,13412:31259201,11851705:195428 -k1,13412:32583029,11851705:0 -) -(1,13412:6630773,12716785:25952256,513147,7863 -g1,13412:7489294,12716785 -k1,13412:32583029,12716785:21234320 -g1,13412:32583029,12716785 -) -] -] -(1,13396:6630773,14690728:25952256,513147,126483 -k1,13395:9453257,14690728:200389 -k1,13395:10009506,14690728:200389 -k1,13395:13819618,14690728:200389 -k1,13395:14679300,14690728:200390 -k1,13395:15898774,14690728:200389 -k1,13395:18086870,14690728:200389 -k1,13395:18938687,14690728:200389 -k1,13395:20000219,14690728:200389 -k1,13395:20886770,14690728:200389 -k1,13395:21443019,14690728:200389 -k1,13395:23631115,14690728:200389 -(1,13395:23631115,14690728:0,459977,115847 -r1,13429:26099652,14690728:2468537,575824,115847 -k1,13395:23631115,14690728:-2468537 -) -(1,13395:23631115,14690728:2468537,459977,115847 -k1,13395:23631115,14690728:3277 -h1,13395:26096375,14690728:0,411205,112570 -) -k1,13395:26300042,14690728:200390 -k1,13395:27691876,14690728:200389 -k1,13395:28248125,14690728:200389 -k1,13395:29837877,14690728:200389 -k1,13395:31914562,14690728:200389 -k1,13395:32583029,14690728:0 -) -(1,13396:6630773,15555808:25952256,513147,7863 -k1,13395:9102135,15555808:180879 -k1,13395:10676966,15555808:180880 -k1,13395:11876930,15555808:180879 -k1,13395:13447172,15555808:180879 -k1,13395:14310936,15555808:180879 -k1,13395:18563568,15555808:180880 -k1,13395:19395875,15555808:180879 -k1,13395:21462225,15555808:180879 -k1,13395:22294533,15555808:180880 -k1,13395:23162885,15555808:180879 -k1,13395:24362849,15555808:180879 -k1,13395:26705105,15555808:180879 -k1,13395:28760315,15555808:180880 -k1,13395:31966991,15555808:180879 -k1,13396:32583029,15555808:0 -) -(1,13396:6630773,16420888:25952256,513147,134348 -k1,13395:7259602,16420888:213986 -k1,13395:9484249,16420888:214002 -k1,13395:10054110,16420888:214001 -k1,13395:13156283,16420888:214001 -k1,13395:15503481,16420888:214001 -k1,13395:17098326,16420888:214001 -k1,13395:19271854,16420888:214002 -k1,13395:22187904,16420888:214001 -k1,13395:23420990,16420888:214001 -k1,13395:25198025,16420888:214001 -k1,13395:26431112,16420888:214002 -k1,13395:28632820,16420888:214001 -k1,13395:31563944,16420888:214001 -k1,13395:32583029,16420888:0 -) -(1,13396:6630773,17285968:25952256,513147,134348 -k1,13395:7919261,17285968:188794 -k1,13395:9299500,17285968:188794 -k1,13395:10507379,17285968:188794 -k1,13395:12539045,17285968:188794 -k1,13395:13387131,17285968:188794 -k1,13395:15510548,17285968:188794 -k1,13395:16718426,17285968:188793 -k1,13395:19068597,17285968:188794 -k1,13395:21513796,17285968:188794 -k1,13395:24487215,17285968:188794 -k1,13395:25667569,17285968:188794 -k1,13395:28640332,17285968:188794 -k1,13395:29776777,17285968:188794 -k1,13395:32583029,17285968:0 -) -(1,13396:6630773,18151048:25952256,513147,134348 -k1,13395:7452408,18151048:189868 -k1,13395:8838963,18151048:189868 -k1,13395:11645027,18151048:189867 -k1,13395:12450933,18151048:189868 -k1,13395:14625887,18151048:189868 -h1,13395:15596475,18151048:0,0,0 -k1,13395:15786343,18151048:189868 -k1,13395:19814655,18151048:189868 -k1,13395:21023607,18151048:189867 -k1,13395:24197985,18151048:189868 -k1,13395:25901079,18151048:189868 -k1,13395:26706985,18151048:189868 -k1,13395:27311686,18151048:189858 -k1,13395:28449205,18151048:189868 -k1,13395:30028436,18151048:189868 -k1,13395:32583029,18151048:0 -) -(1,13396:6630773,19016128:25952256,513147,7863 -g1,13395:8684671,19016128 -g1,13395:9693270,19016128 -g1,13395:11604955,19016128 -k1,13396:32583028,19016128:18607636 -g1,13396:32583028,19016128 -) -(1,13416:6630773,19881208:25952256,513147,138281 -h1,13415:6630773,19881208:983040,0,0 -k1,13415:10120779,19881208:245319 -k1,13415:11357659,19881208:245320 -k1,13415:14693001,19881208:245319 -k1,13415:16673713,19881208:245319 -k1,13415:18906740,19881208:245320 -k1,13415:22025813,19881208:245319 -k1,13415:23764698,19881208:245319 -k1,13415:24696179,19881208:245319 -(1,13415:24696179,19881208:0,414482,115847 -r1,13429:25952333,19881208:1256154,530329,115847 -k1,13415:24696179,19881208:-1256154 -) -(1,13415:24696179,19881208:1256154,414482,115847 -k1,13415:24696179,19881208:97232 -h1,13415:25949056,19881208:0,411205,112570 -) -k1,13415:26197653,19881208:245320 -k1,13415:28328443,19881208:245319 -k1,13415:29442114,19881208:245319 -k1,13415:31099735,19881208:245320 -k1,13415:32031216,19881208:245319 -$1,13415:32031216,19881208 -$1,13415:32583029,19881208 -k1,13416:32583029,19881208:0 -) -(1,13416:6630773,20746288:25952256,513147,134348 -k1,13415:7398746,20746288:236476 -k1,13415:10713447,20746288:236475 -k1,13415:11711451,20746288:236476 -$1,13415:11711451,20746288 -$1,13415:12214112,20746288 -k1,13415:12624257,20746288:236475 -k1,13415:13814282,20746288:236476 -k1,13415:15143243,20746288:236476 -k1,13415:16293946,20746288:236475 -k1,13415:21350595,20746288:236476 -k1,13415:22778515,20746288:236475 -k1,13415:24047839,20746288:236476 -k1,13415:29565860,20746288:236475 -k1,13415:30453764,20746288:236476 -k1,13415:32583029,20746288:0 -) -(1,13416:6630773,21611368:25952256,513147,134348 -k1,13415:7645800,21611368:248911 -k1,13415:9737583,21611368:248911 -k1,13415:10637922,21611368:248911 -k1,13415:11905918,21611368:248911 -k1,13415:13228964,21611368:248911 -k1,13415:14669320,21611368:248911 -k1,13415:16453739,21611368:248910 -k1,13415:17361942,21611368:248911 -k1,13415:18629938,21611368:248911 -k1,13415:20310155,21611368:248911 -(1,13415:20517249,21611368:0,414482,115847 -r1,13429:21069979,21611368:552730,530329,115847 -k1,13415:20517249,21611368:-552730 -) -(1,13415:20517249,21611368:552730,414482,115847 -k1,13415:20517249,21611368:97232 -h1,13415:21066702,21611368:0,411205,112570 -) -k1,13415:21699654,21611368:248911 -k1,13415:25745066,21611368:248911 -(1,13415:25952160,21611368:0,452978,115847 -r1,13429:30022008,21611368:4069848,568825,115847 -k1,13415:25952160,21611368:-4069848 -) -(1,13415:25952160,21611368:4069848,452978,115847 -k1,13415:25952160,21611368:97232 -h1,13415:30018731,21611368:0,411205,112570 -) -k1,13415:30651683,21611368:248911 -k1,13415:32583029,21611368:0 -) -(1,13416:6630773,22476448:25952256,513147,134348 -k1,13415:9727786,22476448:223259 -k1,13415:10942605,22476448:223259 -k1,13415:12679091,22476448:223260 -k1,13415:13518388,22476448:223259 -k1,13415:16503990,22476448:223259 -k1,13415:19600347,22476448:223259 -k1,13415:21758229,22476448:223259 -k1,13415:22640780,22476448:223259 -k1,13415:25355719,22476448:223260 -k1,13415:28277095,22476448:223259 -k1,13415:29691799,22476448:223259 -k1,13415:31436804,22476448:223259 -k1,13415:32583029,22476448:0 -) -(1,13416:6630773,23341528:25952256,513147,134348 -$1,13415:6951244,23341528 -k1,13415:8744638,23341528:215287 -k1,13415:10156612,23341528:215287 -k1,13415:12455944,23341528:215287 -k1,13415:13330523,23341528:215287 -k1,13415:15533517,23341528:215287 -k1,13415:18622558,23341528:215287 -k1,13415:19369342,23341528:215287 -k1,13415:22865361,23341528:215287 -k1,13415:26705444,23341528:215287 -k1,13415:28354659,23341528:215287 -k1,13415:28984773,23341528:215271 -k1,13415:30391505,23341528:215287 -k1,13416:32583029,23341528:0 -) -(1,13416:6630773,24206608:25952256,505283,134348 -k1,13415:8018498,24206608:248054 -k1,13415:12839653,24206608:248053 -k1,13415:16348778,24206608:248054 -k1,13415:19680956,24206608:248054 -k1,13415:22863712,24206608:248054 -k1,13415:24620404,24206608:248053 -k1,13415:25960943,24206608:248054 -k1,13415:26740494,24206608:248054 -k1,13415:28054818,24206608:248053 -k1,13415:31391584,24206608:248054 -k1,13415:32583029,24206608:0 -) -(1,13416:6630773,25071688:25952256,513147,134348 -k1,13415:9045502,25071688:183228 -k1,13415:12139183,25071688:183227 -k1,13415:14474613,25071688:183228 -k1,13415:15676925,25071688:183227 -k1,13415:17481514,25071688:183228 -k1,13415:19748786,25071688:183227 -k1,13415:20583442,25071688:183228 -k1,13415:22448324,25071688:183228 -k1,13415:23650636,25071688:183227 -k1,13415:27443587,25071688:183228 -k1,13415:28286106,25071688:183227 -k1,13415:30866641,25071688:183228 -k1,13415:32583029,25071688:0 -) -(1,13416:6630773,25936768:25952256,513147,134348 -k1,13415:7513018,25936768:222953 -k1,13415:10227651,25936768:222954 -k1,13415:11268493,25936768:222953 -k1,13415:13093147,25936768:222954 -k1,13415:15308394,25936768:222953 -k1,13415:16147385,25936768:222953 -k1,13415:16958852,25936768:222954 -k1,13415:19169512,25936768:222953 -k1,13415:22266220,25936768:222954 -k1,13415:23480733,25936768:222953 -k1,13415:25993514,25936768:222953 -k1,13415:27407913,25936768:222954 -k1,13415:28735148,25936768:222953 -k1,13415:29705868,25936768:222954 -k1,13415:31966991,25936768:222953 -k1,13415:32583029,25936768:0 -) -(1,13416:6630773,26801848:25952256,513147,134348 -k1,13415:9778416,26801848:150027 -k1,13415:10978330,26801848:150027 -k1,13415:13407044,26801848:150027 -h1,13415:14776091,26801848:0,0,0 -k1,13415:14926118,26801848:150027 -k1,13415:15885515,26801848:150027 -k1,13415:17533695,26801848:150027 -h1,13415:18729072,26801848:0,0,0 -k1,13415:18879099,26801848:150027 -k1,13415:19976777,26801848:150027 -k1,13415:20482664,26801848:150027 -k1,13415:23187940,26801848:150027 -k1,13415:26709794,26801848:150027 -k1,13415:27519113,26801848:150027 -k1,13415:29656847,26801848:150027 -k1,13416:32583029,26801848:0 -k1,13416:32583029,26801848:0 -) -(1,13418:6630773,27666928:25952256,513147,134348 -h1,13417:6630773,27666928:983040,0,0 -k1,13417:10852537,27666928:275841 -k1,13417:12783162,27666928:275841 -k1,13417:13590499,27666928:275840 -k1,13417:15558480,27666928:275841 -k1,13417:18833904,27666928:275841 -k1,13417:22217462,27666928:275841 -k1,13417:23440954,27666928:275841 -k1,13417:25429250,27666928:275840 -k1,13417:27692798,27666928:275841 -k1,13417:30201451,27666928:275841 -k1,13417:32583029,27666928:0 -) -(1,13418:6630773,28532008:25952256,513147,134348 -k1,13417:7484161,28532008:237350 -k1,13417:10793838,28532008:237349 -k1,13417:14115312,28532008:237350 -k1,13417:14968699,28532008:237349 -k1,13417:16807749,28532008:237350 -k1,13417:18916151,28532008:237349 -k1,13417:20172586,28532008:237350 -k1,13417:22228559,28532008:237349 -k1,13417:25374397,28532008:237350 -k1,13417:27792784,28532008:237349 -k1,13417:30710557,28532008:237350 -k1,13417:31563944,28532008:237349 -k1,13417:32583029,28532008:0 -) -(1,13418:6630773,29397088:25952256,505283,134348 -k1,13417:9912653,29397088:144672 -k1,13417:11217311,29397088:144671 -k1,13417:11978021,29397088:144672 -k1,13417:13141778,29397088:144672 -k1,13417:15902647,29397088:144672 -k1,13417:18384987,29397088:144671 -k1,13417:21314284,29397088:144672 -(1,13417:21314284,29397088:0,452978,115847 -r1,13429:24486244,29397088:3171960,568825,115847 -k1,13417:21314284,29397088:-3171960 -) -(1,13417:21314284,29397088:3171960,452978,115847 -k1,13417:21314284,29397088:3277 -h1,13417:24482967,29397088:0,411205,112570 -) -k1,13417:24804586,29397088:144672 -(1,13417:24804586,29397088:0,452978,115847 -r1,13429:27273123,29397088:2468537,568825,115847 -k1,13417:24804586,29397088:-2468537 -) -(1,13417:24804586,29397088:2468537,452978,115847 -k1,13417:24804586,29397088:3277 -h1,13417:27269846,29397088:0,411205,112570 -) -k1,13417:27417795,29397088:144672 -k1,13417:28753911,29397088:144671 -(1,13417:28753911,29397088:0,452978,115847 -r1,13429:30870736,29397088:2116825,568825,115847 -k1,13417:28753911,29397088:-2116825 -) -(1,13417:28753911,29397088:2116825,452978,115847 -k1,13417:28753911,29397088:3277 -h1,13417:30867459,29397088:0,411205,112570 -) -k1,13417:31189078,29397088:144672 -k1,13417:32583029,29397088:0 -) -(1,13418:6630773,30262168:25952256,505283,115847 -k1,13417:9142614,30262168:280340 -k1,13417:11124924,30262168:280340 -k1,13417:14189889,30262168:280340 -k1,13417:15963795,30262168:280340 -k1,13417:16930296,30262168:280339 -(1,13417:16930296,30262168:0,459977,115847 -r1,13429:19047121,30262168:2116825,575824,115847 -k1,13417:16930296,30262168:-2116825 -) -(1,13417:16930296,30262168:2116825,459977,115847 -k1,13417:16930296,30262168:3277 -h1,13417:19043844,30262168:0,411205,112570 -) -k1,13417:19501131,30262168:280340 -(1,13417:19501131,30262168:0,452978,115847 -r1,13429:23376515,30262168:3875384,568825,115847 -k1,13417:19501131,30262168:-3875384 -) -(1,13417:19501131,30262168:3875384,452978,115847 -k1,13417:19501131,30262168:3277 -h1,13417:23373238,30262168:0,411205,112570 -) -k1,13417:23830525,30262168:280340 -(1,13417:23830525,30262168:0,459977,115847 -r1,13429:26650774,30262168:2820249,575824,115847 -k1,13417:23830525,30262168:-2820249 -) -(1,13417:23830525,30262168:2820249,459977,115847 -k1,13417:23830525,30262168:3277 -h1,13417:26647497,30262168:0,411205,112570 -) -k1,13417:27104784,30262168:280340 -(1,13417:27104784,30262168:0,452978,115847 -r1,13429:30276744,30262168:3171960,568825,115847 -k1,13417:27104784,30262168:-3171960 -) -(1,13417:27104784,30262168:3171960,452978,115847 -k1,13417:27104784,30262168:3277 -h1,13417:30273467,30262168:0,411205,112570 -) -k1,13417:30730754,30262168:280340 -(1,13417:30730754,30262168:0,452978,115847 -r1,13429:32495867,30262168:1765113,568825,115847 -k1,13417:30730754,30262168:-1765113 -) -(1,13417:30730754,30262168:1765113,452978,115847 -k1,13417:30730754,30262168:3277 -h1,13417:32492590,30262168:0,411205,112570 -) -k1,13418:32583029,30262168:0 -) -(1,13418:6630773,31127248:25952256,505283,126483 -(1,13417:6630773,31127248:0,452978,115847 -r1,13429:8395886,31127248:1765113,568825,115847 -k1,13417:6630773,31127248:-1765113 -) -(1,13417:6630773,31127248:1765113,452978,115847 -k1,13417:6630773,31127248:3277 -h1,13417:8392609,31127248:0,411205,112570 -) -k1,13417:8680879,31127248:284993 -k1,13417:11253079,31127248:284993 -k1,13417:12823888,31127248:284993 -k1,13417:16066521,31127248:284993 -k1,13417:19710235,31127248:284994 -k1,13417:22779853,31127248:284993 -k1,13417:24401780,31127248:284993 -k1,13417:25434539,31127248:284993 -k1,13417:28677172,31127248:284993 -k1,13417:31896867,31127248:284993 -k1,13417:32583029,31127248:0 -) -(1,13418:6630773,31992328:25952256,513147,134348 -k1,13417:8813340,31992328:194860 -k1,13417:9695672,31992328:194859 -k1,13417:12180360,31992328:194860 -k1,13417:13366779,31992328:194859 -k1,13417:15944528,31992328:194860 -k1,13417:17707009,31992328:194860 -k1,13417:19457037,31992328:194859 -(1,13417:19457037,31992328:0,452978,115847 -r1,13429:20870438,31992328:1413401,568825,115847 -k1,13417:19457037,31992328:-1413401 -) -(1,13417:19457037,31992328:1413401,452978,115847 -k1,13417:19457037,31992328:3277 -h1,13417:20867161,31992328:0,411205,112570 -) -k1,13417:21238968,31992328:194860 -k1,13417:23130555,31992328:194860 -k1,13417:24516859,31992328:194859 -k1,13417:26413689,31992328:194860 -k1,13417:30536121,31992328:194859 -k1,13417:31835263,31992328:194860 -k1,13417:32583029,31992328:0 -) -(1,13418:6630773,32857408:25952256,505283,134348 -k1,13417:9024557,32857408:189808 -k1,13417:9897250,32857408:189808 -k1,13417:13295702,32857408:189809 -k1,13417:19122262,32857408:189808 -k1,13417:21010108,32857408:189808 -k1,13417:23671935,32857408:189809 -k1,13417:28382417,32857408:189808 -k1,13417:29591310,32857408:189808 -k1,13417:32583029,32857408:0 -) -(1,13418:6630773,33722488:25952256,513147,134348 -k1,13417:7428171,33722488:181360 -k1,13417:8812772,33722488:181360 -k1,13417:11411755,33722488:181360 -k1,13417:12697397,33722488:181360 -k1,13417:13626523,33722488:181360 -k1,13417:16386069,33722488:181360 -k1,13417:17218857,33722488:181360 -k1,13417:18419301,33722488:181359 -k1,13417:20535284,33722488:181360 -k1,13417:21375936,33722488:181360 -k1,13417:23273684,33722488:181360 -k1,13417:24114336,33722488:181360 -k1,13417:26613704,33722488:181360 -k1,13417:27861335,33722488:181360 -k1,13417:31132718,33722488:181360 -k1,13418:32583029,33722488:0 -k1,13418:32583029,33722488:0 -) -v1,13420:6630773,34587568:0,393216,0 -(1,13421:6630773,38482669:25952256,4288317,0 -g1,13421:6630773,38482669 -g1,13421:6237557,38482669 -r1,13429:6368629,38482669:131072,4288317,0 -g1,13421:6567858,38482669 -g1,13421:6764466,38482669 -[1,13421:6764466,38482669:25818563,4288317,0 -(1,13421:6764466,34895866:25818563,701514,196608 -(1,13420:6764466,34895866:0,701514,196608 -r1,13429:7761522,34895866:997056,898122,196608 -k1,13420:6764466,34895866:-997056 -) -(1,13420:6764466,34895866:997056,701514,196608 -) -k1,13420:8001632,34895866:240110 -k1,13420:8329312,34895866:327680 -k1,13420:10411638,34895866:240109 -k1,13420:12639455,34895866:240110 -k1,13420:15169393,34895866:240110 -k1,13420:16025541,34895866:240110 -k1,13420:16680452,34895866:240068 -k1,13420:17912122,34895866:240110 -k1,13420:19299767,34895866:240110 -k1,13420:22679707,34895866:240110 -k1,13420:24111261,34895866:240109 -k1,13420:26689040,34895866:240110 -k1,13420:27285010,34895866:240110 -k1,13420:29035070,34895866:240110 -k1,13420:29934471,34895866:240109 -k1,13420:31193666,34895866:240110 -k1,13420:32583029,34895866:0 -) -(1,13421:6764466,35760946:25818563,513147,126483 -k1,13420:7669871,35760946:253977 -k1,13420:9809319,35760946:253977 -k1,13420:11082381,35760946:253977 -k1,13420:13324066,35760946:253978 -k1,13420:14785216,35760946:253977 -k1,13420:15900336,35760946:253977 -k1,13420:16840475,35760946:253977 -k1,13420:18373059,35760946:253977 -k1,13420:19313198,35760946:253977 -k1,13420:22461246,35760946:253978 -k1,13420:23906668,35760946:253977 -k1,13420:26804367,35760946:253977 -k1,13420:28525040,35760946:253977 -k1,13420:32583029,35760946:0 -) -(1,13421:6764466,36626026:25818563,513147,134348 -k1,13420:9114234,36626026:176594 -k1,13420:9950120,36626026:176594 -k1,13420:14694574,36626026:176595 -k1,13420:17834051,36626026:176594 -k1,13420:19213886,36626026:176594 -k1,13420:20494762,36626026:176594 -k1,13420:22387090,36626026:176595 -k1,13420:23582769,36626026:176594 -k1,13420:25028140,36626026:176594 -k1,13420:25864026,36626026:176594 -k1,13420:27737348,36626026:176595 -k1,13420:30203770,36626026:176594 -k1,13420:32124932,36626026:176594 -k1,13420:32583029,36626026:0 -) -(1,13421:6764466,37491106:25818563,513147,134348 -k1,13420:8964416,37491106:187995 -k1,13420:11958662,37491106:187994 -k1,13420:13338102,37491106:187995 -k1,13420:14992793,37491106:187995 -k1,13420:18040123,37491106:187994 -k1,13420:19867173,37491106:187995 -k1,13420:20671205,37491106:187994 -k1,13420:21878285,37491106:187995 -k1,13420:24595970,37491106:187995 -k1,13420:25443256,37491106:187994 -k1,13420:26650336,37491106:187995 -k1,13420:28227694,37491106:187995 -k1,13420:29031726,37491106:187994 -k1,13420:30238806,37491106:187995 -k1,13421:32583029,37491106:0 -) -(1,13421:6764466,38356186:25818563,505283,126483 -g1,13420:7378538,38356186 -k1,13421:32583030,38356186:21767784 -g1,13421:32583030,38356186 -) -] -g1,13421:32583029,38482669 -) -h1,13421:6630773,38482669:0,0,0 -(1,13423:6630773,41313829:25952256,32768,229376 -(1,13423:6630773,41313829:0,32768,229376 -(1,13423:6630773,41313829:5505024,32768,229376 -r1,13429:12135797,41313829:5505024,262144,229376 -) -k1,13423:6630773,41313829:-5505024 -) -(1,13423:6630773,41313829:25952256,32768,0 -r1,13429:32583029,41313829:25952256,32768,0 -) -) -(1,13423:6630773,42945681:25952256,606339,161218 -(1,13423:6630773,42945681:1974731,582746,14155 -g1,13423:6630773,42945681 -g1,13423:8605504,42945681 -) -g1,13423:11418572,42945681 -g1,13423:14135695,42945681 -k1,13423:32583029,42945681:15628762 -g1,13423:32583029,42945681 -) -(1,13429:6630773,44203977:25952256,513147,134348 -k1,13428:10559812,44203977:281960 -k1,13428:13396364,44203977:281959 -k1,13428:14337616,44203977:281960 -k1,13428:17273784,44203977:281960 -k1,13428:20404510,44203977:281876 -k1,13428:21877915,44203977:281960 -k1,13428:24714468,44203977:281960 -k1,13428:25655719,44203977:281959 -k1,13428:29319992,44203977:281960 -k1,13428:32583029,44203977:0 -) -(1,13429:6630773,45069057:25952256,513147,134348 -k1,13428:7834123,45069057:211790 -k1,13428:8812030,45069057:211791 -k1,13428:10836546,45069057:211790 -k1,13428:13540015,45069057:211790 -k1,13428:16485313,45069057:211791 -k1,13428:18072704,45069057:211790 -k1,13428:19093864,45069057:211790 -k1,13428:20324740,45069057:211791 -k1,13428:21922616,45069057:211790 -k1,13428:22793698,45069057:211790 -k1,13428:26771188,45069057:211791 -k1,13428:29824619,45069057:211790 -k1,13428:32583029,45069057:0 -) -] -(1,13429:32583029,45706769:0,0,0 -g1,13429:32583029,45706769 -) -) -] -(1,13429:6630773,47279633:25952256,0,0 -h1,13429:6630773,47279633:25952256,0,0 -) -] -(1,13429:4262630,4025873:0,0,0 -[1,13429:-473656,4025873:0,0,0 -(1,13429:-473656,-710413:0,0,0 -(1,13429:-473656,-710413:0,0,0 -g1,13429:-473656,-710413 -) -g1,13429:-473656,-710413 -) -] -) -] -!27342 -}215 -Input:2256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,13410:32583029,9466185:1043104 +) +(1,13410:6630773,10986625:25952256,505283,134348 +h1,13410:6630773,10986625:0,0,0 +g1,13410:8923222,10986625 +k1,13410:32583029,10986625:22689874 +g1,13410:32583029,10986625 +) +(1,13410:6630773,11851705:25952256,513147,134348 +h1,13410:6630773,11851705:0,0,0 +k1,13410:8757547,11851705:195428 +k1,13410:10887599,11851705:195429 +k1,13410:11699065,11851705:195428 +k1,13410:12309333,11851705:195425 +k1,13410:13036258,11851705:195428 +k1,13410:14809139,11851705:195429 +k1,13410:15620605,11851705:195428 +k1,13410:17675290,11851705:195429 +k1,13410:19062163,11851705:195428 +k1,13410:20361874,11851705:195429 +k1,13410:21305068,11851705:195428 +k1,13410:25310105,11851705:195429 +k1,13410:29826322,11851705:195428 +k1,13410:30707913,11851705:195429 +k1,13410:31259201,11851705:195428 +k1,13410:32583029,11851705:0 +) +(1,13410:6630773,12716785:25952256,513147,7863 +g1,13410:7489294,12716785 +k1,13410:32583029,12716785:21234320 +g1,13410:32583029,12716785 +) +] +] +(1,13394:6630773,14690728:25952256,513147,126483 +k1,13393:9453257,14690728:200389 +k1,13393:10009506,14690728:200389 +k1,13393:13819618,14690728:200389 +k1,13393:14679300,14690728:200390 +k1,13393:15898774,14690728:200389 +k1,13393:18086870,14690728:200389 +k1,13393:18938687,14690728:200389 +k1,13393:20000219,14690728:200389 +k1,13393:20886770,14690728:200389 +k1,13393:21443019,14690728:200389 +k1,13393:23631115,14690728:200389 +(1,13393:23631115,14690728:0,459977,115847 +r1,13427:26099652,14690728:2468537,575824,115847 +k1,13393:23631115,14690728:-2468537 +) +(1,13393:23631115,14690728:2468537,459977,115847 +k1,13393:23631115,14690728:3277 +h1,13393:26096375,14690728:0,411205,112570 +) +k1,13393:26300042,14690728:200390 +k1,13393:27691876,14690728:200389 +k1,13393:28248125,14690728:200389 +k1,13393:29837877,14690728:200389 +k1,13393:31914562,14690728:200389 +k1,13393:32583029,14690728:0 +) +(1,13394:6630773,15555808:25952256,513147,7863 +k1,13393:9102135,15555808:180879 +k1,13393:10676966,15555808:180880 +k1,13393:11876930,15555808:180879 +k1,13393:13447172,15555808:180879 +k1,13393:14310936,15555808:180879 +k1,13393:18563568,15555808:180880 +k1,13393:19395875,15555808:180879 +k1,13393:21462225,15555808:180879 +k1,13393:22294533,15555808:180880 +k1,13393:23162885,15555808:180879 +k1,13393:24362849,15555808:180879 +k1,13393:26705105,15555808:180879 +k1,13393:28760315,15555808:180880 +k1,13393:31966991,15555808:180879 +k1,13394:32583029,15555808:0 +) +(1,13394:6630773,16420888:25952256,513147,134348 +k1,13393:7259602,16420888:213986 +k1,13393:9484249,16420888:214002 +k1,13393:10054110,16420888:214001 +k1,13393:13156283,16420888:214001 +k1,13393:15503481,16420888:214001 +k1,13393:17098326,16420888:214001 +k1,13393:19271854,16420888:214002 +k1,13393:22187904,16420888:214001 +k1,13393:23420990,16420888:214001 +k1,13393:25198025,16420888:214001 +k1,13393:26431112,16420888:214002 +k1,13393:28632820,16420888:214001 +k1,13393:31563944,16420888:214001 +k1,13393:32583029,16420888:0 +) +(1,13394:6630773,17285968:25952256,513147,134348 +k1,13393:8079573,17285968:175435 +k1,13393:9446452,17285968:175434 +k1,13393:10640972,17285968:175435 +k1,13393:12659278,17285968:175434 +k1,13393:13494005,17285968:175435 +k1,13393:15604063,17285968:175435 +k1,13393:16798582,17285968:175434 +k1,13393:19135394,17285968:175435 +k1,13393:21567234,17285968:175435 +k1,13393:24527293,17285968:175434 +k1,13393:25694288,17285968:175435 +k1,13393:28653691,17285968:175434 +k1,13393:29776777,17285968:175435 +k1,13393:32583029,17285968:0 +) +(1,13394:6630773,18151048:25952256,513147,134348 +k1,13393:7452408,18151048:189868 +k1,13393:8838963,18151048:189868 +k1,13393:11645027,18151048:189867 +k1,13393:12450933,18151048:189868 +k1,13393:14625887,18151048:189868 +h1,13393:15596475,18151048:0,0,0 +k1,13393:15786343,18151048:189868 +k1,13393:19814655,18151048:189868 +k1,13393:21023607,18151048:189867 +k1,13393:24197985,18151048:189868 +k1,13393:25901079,18151048:189868 +k1,13393:26706985,18151048:189868 +k1,13393:27311686,18151048:189858 +k1,13393:28449205,18151048:189868 +k1,13393:30028436,18151048:189868 +k1,13393:32583029,18151048:0 +) +(1,13394:6630773,19016128:25952256,513147,7863 +g1,13393:8684671,19016128 +g1,13393:9693270,19016128 +g1,13393:11604955,19016128 +k1,13394:32583028,19016128:18607636 +g1,13394:32583028,19016128 +) +(1,13414:6630773,19881208:25952256,513147,138281 +h1,13413:6630773,19881208:983040,0,0 +k1,13413:10120779,19881208:245319 +k1,13413:11357659,19881208:245320 +k1,13413:14693001,19881208:245319 +k1,13413:16673713,19881208:245319 +k1,13413:18906740,19881208:245320 +k1,13413:22025813,19881208:245319 +k1,13413:23764698,19881208:245319 +k1,13413:24696179,19881208:245319 +(1,13413:24696179,19881208:0,414482,115847 +r1,13427:25952333,19881208:1256154,530329,115847 +k1,13413:24696179,19881208:-1256154 +) +(1,13413:24696179,19881208:1256154,414482,115847 +k1,13413:24696179,19881208:97232 +h1,13413:25949056,19881208:0,411205,112570 +) +k1,13413:26197653,19881208:245320 +k1,13413:28328443,19881208:245319 +k1,13413:29442114,19881208:245319 +k1,13413:31099735,19881208:245320 +k1,13413:32031216,19881208:245319 +$1,13413:32031216,19881208 +$1,13413:32583029,19881208 +k1,13414:32583029,19881208:0 +) +(1,13414:6630773,20746288:25952256,513147,134348 +k1,13413:7398746,20746288:236476 +k1,13413:10713447,20746288:236475 +k1,13413:11711451,20746288:236476 +$1,13413:11711451,20746288 +$1,13413:12214112,20746288 +k1,13413:12624257,20746288:236475 +k1,13413:13814282,20746288:236476 +k1,13413:15143243,20746288:236476 +k1,13413:16293946,20746288:236475 +k1,13413:21350595,20746288:236476 +k1,13413:22778515,20746288:236475 +k1,13413:24047839,20746288:236476 +k1,13413:29565860,20746288:236475 +k1,13413:30453764,20746288:236476 +k1,13413:32583029,20746288:0 +) +(1,13414:6630773,21611368:25952256,513147,134348 +k1,13413:7645800,21611368:248911 +k1,13413:9737583,21611368:248911 +k1,13413:10637922,21611368:248911 +k1,13413:11905918,21611368:248911 +k1,13413:13228964,21611368:248911 +k1,13413:14669320,21611368:248911 +k1,13413:16453739,21611368:248910 +k1,13413:17361942,21611368:248911 +k1,13413:18629938,21611368:248911 +k1,13413:20310155,21611368:248911 +(1,13413:20517249,21611368:0,414482,115847 +r1,13427:21069979,21611368:552730,530329,115847 +k1,13413:20517249,21611368:-552730 +) +(1,13413:20517249,21611368:552730,414482,115847 +k1,13413:20517249,21611368:97232 +h1,13413:21066702,21611368:0,411205,112570 +) +k1,13413:21699654,21611368:248911 +k1,13413:25745066,21611368:248911 +(1,13413:25952160,21611368:0,452978,115847 +r1,13427:30022008,21611368:4069848,568825,115847 +k1,13413:25952160,21611368:-4069848 +) +(1,13413:25952160,21611368:4069848,452978,115847 +k1,13413:25952160,21611368:97232 +h1,13413:30018731,21611368:0,411205,112570 +) +k1,13413:30651683,21611368:248911 +k1,13413:32583029,21611368:0 +) +(1,13414:6630773,22476448:25952256,513147,134348 +k1,13413:9727786,22476448:223259 +k1,13413:10942605,22476448:223259 +k1,13413:12679091,22476448:223260 +k1,13413:13518388,22476448:223259 +k1,13413:16503990,22476448:223259 +k1,13413:19600347,22476448:223259 +k1,13413:21758229,22476448:223259 +k1,13413:22640780,22476448:223259 +k1,13413:25355719,22476448:223260 +k1,13413:28277095,22476448:223259 +k1,13413:29691799,22476448:223259 +k1,13413:31436804,22476448:223259 +k1,13413:32583029,22476448:0 +) +(1,13414:6630773,23341528:25952256,513147,134348 +$1,13413:6951244,23341528 +k1,13413:8744638,23341528:215287 +k1,13413:10156612,23341528:215287 +k1,13413:12455944,23341528:215287 +k1,13413:13330523,23341528:215287 +k1,13413:15533517,23341528:215287 +k1,13413:18622558,23341528:215287 +k1,13413:19369342,23341528:215287 +k1,13413:22865361,23341528:215287 +k1,13413:26705444,23341528:215287 +k1,13413:28354659,23341528:215287 +k1,13413:28984773,23341528:215271 +k1,13413:30391505,23341528:215287 +k1,13414:32583029,23341528:0 +) +(1,13414:6630773,24206608:25952256,505283,134348 +k1,13413:8018498,24206608:248054 +k1,13413:12839653,24206608:248053 +k1,13413:16348778,24206608:248054 +k1,13413:19680956,24206608:248054 +k1,13413:22863712,24206608:248054 +k1,13413:24620404,24206608:248053 +k1,13413:25960943,24206608:248054 +k1,13413:26740494,24206608:248054 +k1,13413:28054818,24206608:248053 +k1,13413:31391584,24206608:248054 +k1,13413:32583029,24206608:0 +) +(1,13414:6630773,25071688:25952256,513147,134348 +k1,13413:9045502,25071688:183228 +k1,13413:12139183,25071688:183227 +k1,13413:14474613,25071688:183228 +k1,13413:15676925,25071688:183227 +k1,13413:17481514,25071688:183228 +k1,13413:19748786,25071688:183227 +k1,13413:20583442,25071688:183228 +k1,13413:22448324,25071688:183228 +k1,13413:23650636,25071688:183227 +k1,13413:27443587,25071688:183228 +k1,13413:28286106,25071688:183227 +k1,13413:30866641,25071688:183228 +k1,13413:32583029,25071688:0 +) +(1,13414:6630773,25936768:25952256,513147,134348 +k1,13413:7513018,25936768:222953 +k1,13413:10227651,25936768:222954 +k1,13413:11268493,25936768:222953 +k1,13413:13093147,25936768:222954 +k1,13413:15308394,25936768:222953 +k1,13413:16147385,25936768:222953 +k1,13413:16958852,25936768:222954 +k1,13413:19169512,25936768:222953 +k1,13413:22266220,25936768:222954 +k1,13413:23480733,25936768:222953 +k1,13413:25993514,25936768:222953 +k1,13413:27407913,25936768:222954 +k1,13413:28735148,25936768:222953 +k1,13413:29705868,25936768:222954 +k1,13413:31966991,25936768:222953 +k1,13413:32583029,25936768:0 +) +(1,13414:6630773,26801848:25952256,513147,134348 +k1,13413:9778416,26801848:150027 +k1,13413:10978330,26801848:150027 +k1,13413:13407044,26801848:150027 +h1,13413:14776091,26801848:0,0,0 +k1,13413:14926118,26801848:150027 +k1,13413:15885515,26801848:150027 +k1,13413:17533695,26801848:150027 +h1,13413:18729072,26801848:0,0,0 +k1,13413:18879099,26801848:150027 +k1,13413:19976777,26801848:150027 +k1,13413:20482664,26801848:150027 +k1,13413:23187940,26801848:150027 +k1,13413:26709794,26801848:150027 +k1,13413:27519113,26801848:150027 +k1,13413:29656847,26801848:150027 +k1,13414:32583029,26801848:0 +k1,13414:32583029,26801848:0 +) +(1,13416:6630773,27666928:25952256,513147,134348 +h1,13415:6630773,27666928:983040,0,0 +k1,13415:10852537,27666928:275841 +k1,13415:12783162,27666928:275841 +k1,13415:13590499,27666928:275840 +k1,13415:15558480,27666928:275841 +k1,13415:18833904,27666928:275841 +k1,13415:22217462,27666928:275841 +k1,13415:23440954,27666928:275841 +k1,13415:25429250,27666928:275840 +k1,13415:27692798,27666928:275841 +k1,13415:30201451,27666928:275841 +k1,13415:32583029,27666928:0 +) +(1,13416:6630773,28532008:25952256,513147,134348 +k1,13415:7484161,28532008:237350 +k1,13415:10793838,28532008:237349 +k1,13415:14115312,28532008:237350 +k1,13415:14968699,28532008:237349 +k1,13415:16807749,28532008:237350 +k1,13415:18916151,28532008:237349 +k1,13415:20172586,28532008:237350 +k1,13415:22228559,28532008:237349 +k1,13415:25374397,28532008:237350 +k1,13415:27792784,28532008:237349 +k1,13415:30710557,28532008:237350 +k1,13415:31563944,28532008:237349 +k1,13415:32583029,28532008:0 +) +(1,13416:6630773,29397088:25952256,505283,134348 +k1,13415:9958378,29397088:190397 +k1,13415:11308761,29397088:190396 +k1,13415:12115196,29397088:190397 +k1,13415:13324678,29397088:190397 +k1,13415:16131272,29397088:190397 +k1,13415:16937707,29397088:190397 +k1,13415:19113189,29397088:190396 +h1,13415:20083777,29397088:0,0,0 +k1,13415:20274174,29397088:190397 +k1,13415:22802240,29397088:190397 +(1,13415:22802240,29397088:0,452978,115847 +r1,13427:25974200,29397088:3171960,568825,115847 +k1,13415:22802240,29397088:-3171960 +) +(1,13415:22802240,29397088:3171960,452978,115847 +k1,13415:22802240,29397088:3277 +h1,13415:25970923,29397088:0,411205,112570 +) +k1,13415:26338266,29397088:190396 +(1,13415:26338266,29397088:0,452978,115847 +r1,13427:28806803,29397088:2468537,568825,115847 +k1,13415:26338266,29397088:-2468537 +) +(1,13415:26338266,29397088:2468537,452978,115847 +k1,13415:26338266,29397088:3277 +h1,13415:28803526,29397088:0,411205,112570 +) +k1,13415:28997200,29397088:190397 +k1,13415:30379042,29397088:190397 +(1,13415:30379042,29397088:0,452978,115847 +r1,13427:32495867,29397088:2116825,568825,115847 +k1,13415:30379042,29397088:-2116825 +) +(1,13415:30379042,29397088:2116825,452978,115847 +k1,13415:30379042,29397088:3277 +h1,13415:32492590,29397088:0,411205,112570 +) +k1,13415:32583029,29397088:0 +) +(1,13416:6630773,30262168:25952256,505283,115847 +k1,13415:8209397,30262168:210887 +k1,13415:10122254,30262168:210887 +k1,13415:13117766,30262168:210887 +k1,13415:14822219,30262168:210887 +k1,13415:15719268,30262168:210887 +(1,13415:15719268,30262168:0,459977,115847 +r1,13427:17836093,30262168:2116825,575824,115847 +k1,13415:15719268,30262168:-2116825 +) +(1,13415:15719268,30262168:2116825,459977,115847 +k1,13415:15719268,30262168:3277 +h1,13415:17832816,30262168:0,411205,112570 +) +k1,13415:18220650,30262168:210887 +(1,13415:18220650,30262168:0,452978,115847 +r1,13427:22096034,30262168:3875384,568825,115847 +k1,13415:18220650,30262168:-3875384 +) +(1,13415:18220650,30262168:3875384,452978,115847 +k1,13415:18220650,30262168:3277 +h1,13415:22092757,30262168:0,411205,112570 +) +k1,13415:22480591,30262168:210887 +(1,13415:22480591,30262168:0,459977,115847 +r1,13427:25300840,30262168:2820249,575824,115847 +k1,13415:22480591,30262168:-2820249 +) +(1,13415:22480591,30262168:2820249,459977,115847 +k1,13415:22480591,30262168:3277 +h1,13415:25297563,30262168:0,411205,112570 +) +k1,13415:25685397,30262168:210887 +(1,13415:25685397,30262168:0,452978,115847 +r1,13427:28857357,30262168:3171960,568825,115847 +k1,13415:25685397,30262168:-3171960 +) +(1,13415:25685397,30262168:3171960,452978,115847 +k1,13415:25685397,30262168:3277 +h1,13415:28854080,30262168:0,411205,112570 +) +k1,13415:29241914,30262168:210887 +(1,13415:29241914,30262168:0,452978,115847 +r1,13427:31007027,30262168:1765113,568825,115847 +k1,13415:29241914,30262168:-1765113 +) +(1,13415:29241914,30262168:1765113,452978,115847 +k1,13415:29241914,30262168:3277 +h1,13415:31003750,30262168:0,411205,112570 +) +k1,13415:31391584,30262168:210887 +k1,13416:32583029,30262168:0 +) +(1,13416:6630773,31127248:25952256,505283,126483 +(1,13415:6630773,31127248:0,452978,115847 +r1,13427:8395886,31127248:1765113,568825,115847 +k1,13415:6630773,31127248:-1765113 +) +(1,13415:6630773,31127248:1765113,452978,115847 +k1,13415:6630773,31127248:3277 +h1,13415:8392609,31127248:0,411205,112570 +) +k1,13415:8680879,31127248:284993 +k1,13415:11253079,31127248:284993 +k1,13415:12823888,31127248:284993 +k1,13415:16066521,31127248:284993 +k1,13415:19710235,31127248:284994 +k1,13415:22779853,31127248:284993 +k1,13415:24401780,31127248:284993 +k1,13415:25434539,31127248:284993 +k1,13415:28677172,31127248:284993 +k1,13415:31896867,31127248:284993 +k1,13415:32583029,31127248:0 +) +(1,13416:6630773,31992328:25952256,513147,134348 +k1,13415:8904234,31992328:285754 +k1,13415:9877462,31992328:285755 +k1,13415:12453044,31992328:285754 +k1,13415:13730358,31992328:285754 +(1,13415:13730358,31992328:0,452978,115847 +r1,13427:15143759,31992328:1413401,568825,115847 +k1,13415:13730358,31992328:-1413401 +) +(1,13415:13730358,31992328:1413401,452978,115847 +k1,13415:13730358,31992328:3277 +h1,13415:15140482,31992328:0,411205,112570 +) +k1,13415:16962400,31992328:285754 +k1,13415:18944882,31992328:285755 +k1,13415:20422081,31992328:285754 +k1,13415:22409805,31992328:285754 +k1,13415:24706204,31992328:285754 +k1,13415:26096241,31992328:285755 +k1,13415:27129761,31992328:285754 +k1,13415:30387573,31992328:285754 +k1,13415:32583029,31992328:0 +) +(1,13416:6630773,32857408:25952256,505283,134348 +k1,13415:10105361,32857408:265945 +k1,13415:16008058,32857408:265945 +k1,13415:17972041,32857408:265945 +k1,13415:20710004,32857408:265945 +k1,13415:22172636,32857408:265945 +k1,13415:25430299,32857408:265944 +k1,13415:26312282,32857408:265945 +k1,13415:27781468,32857408:265945 +k1,13415:30465036,32857408:265945 +k1,13415:31835263,32857408:265945 +k1,13415:32583029,32857408:0 +) +(1,13416:6630773,33722488:25952256,513147,134348 +g1,13415:9408188,33722488 +g1,13415:10258845,33722488 +g1,13415:11477159,33722488 +g1,13415:13611011,33722488 +g1,13415:14469532,33722488 +g1,13415:16385149,33722488 +g1,13415:17243670,33722488 +g1,13415:19760907,33722488 +g1,13415:21026407,33722488 +g1,13415:24315659,33722488 +g1,13415:25130926,33722488 +g1,13415:26533396,33722488 +k1,13416:32583029,33722488:4415165 +g1,13416:32583029,33722488 +) +v1,13418:6630773,34587568:0,393216,0 +(1,13419:6630773,38482669:25952256,4288317,0 +g1,13419:6630773,38482669 +g1,13419:6237557,38482669 +r1,13427:6368629,38482669:131072,4288317,0 +g1,13419:6567858,38482669 +g1,13419:6764466,38482669 +[1,13419:6764466,38482669:25818563,4288317,0 +(1,13419:6764466,34895866:25818563,701514,196608 +(1,13418:6764466,34895866:0,701514,196608 +r1,13427:7761522,34895866:997056,898122,196608 +k1,13418:6764466,34895866:-997056 +) +(1,13418:6764466,34895866:997056,701514,196608 +) +k1,13418:8001632,34895866:240110 +k1,13418:8329312,34895866:327680 +k1,13418:10411638,34895866:240109 +k1,13418:12639455,34895866:240110 +k1,13418:15169393,34895866:240110 +k1,13418:16025541,34895866:240110 +k1,13418:16680452,34895866:240068 +k1,13418:17912122,34895866:240110 +k1,13418:19299767,34895866:240110 +k1,13418:22679707,34895866:240110 +k1,13418:24111261,34895866:240109 +k1,13418:26689040,34895866:240110 +k1,13418:27285010,34895866:240110 +k1,13418:29035070,34895866:240110 +k1,13418:29934471,34895866:240109 +k1,13418:31193666,34895866:240110 +k1,13418:32583029,34895866:0 +) +(1,13419:6764466,35760946:25818563,513147,126483 +k1,13418:7669871,35760946:253977 +k1,13418:9809319,35760946:253977 +k1,13418:11082381,35760946:253977 +k1,13418:13324066,35760946:253978 +k1,13418:14785216,35760946:253977 +k1,13418:15900336,35760946:253977 +k1,13418:16840475,35760946:253977 +k1,13418:18373059,35760946:253977 +k1,13418:19313198,35760946:253977 +k1,13418:22461246,35760946:253978 +k1,13418:23906668,35760946:253977 +k1,13418:26804367,35760946:253977 +k1,13418:28525040,35760946:253977 +k1,13418:32583029,35760946:0 +) +(1,13419:6764466,36626026:25818563,513147,134348 +k1,13418:9114234,36626026:176594 +k1,13418:9950120,36626026:176594 +k1,13418:14694574,36626026:176595 +k1,13418:17834051,36626026:176594 +k1,13418:19213886,36626026:176594 +k1,13418:20494762,36626026:176594 +k1,13418:22387090,36626026:176595 +k1,13418:23582769,36626026:176594 +k1,13418:25028140,36626026:176594 +k1,13418:25864026,36626026:176594 +k1,13418:27737348,36626026:176595 +k1,13418:30203770,36626026:176594 +k1,13418:32124932,36626026:176594 +k1,13418:32583029,36626026:0 +) +(1,13419:6764466,37491106:25818563,513147,134348 +k1,13418:8964416,37491106:187995 +k1,13418:11958662,37491106:187994 +k1,13418:13338102,37491106:187995 +k1,13418:14992793,37491106:187995 +k1,13418:18040123,37491106:187994 +k1,13418:19867173,37491106:187995 +k1,13418:20671205,37491106:187994 +k1,13418:21878285,37491106:187995 +k1,13418:24595970,37491106:187995 +k1,13418:25443256,37491106:187994 +k1,13418:26650336,37491106:187995 +k1,13418:28227694,37491106:187995 +k1,13418:29031726,37491106:187994 +k1,13418:30238806,37491106:187995 +k1,13419:32583029,37491106:0 +) +(1,13419:6764466,38356186:25818563,505283,126483 +g1,13418:7378538,38356186 +k1,13419:32583030,38356186:21767784 +g1,13419:32583030,38356186 +) +] +g1,13419:32583029,38482669 +) +h1,13419:6630773,38482669:0,0,0 +(1,13421:6630773,41313829:25952256,32768,229376 +(1,13421:6630773,41313829:0,32768,229376 +(1,13421:6630773,41313829:5505024,32768,229376 +r1,13427:12135797,41313829:5505024,262144,229376 +) +k1,13421:6630773,41313829:-5505024 +) +(1,13421:6630773,41313829:25952256,32768,0 +r1,13427:32583029,41313829:25952256,32768,0 +) +) +(1,13421:6630773,42945681:25952256,606339,161218 +(1,13421:6630773,42945681:1974731,582746,14155 +g1,13421:6630773,42945681 +g1,13421:8605504,42945681 +) +g1,13421:11418572,42945681 +g1,13421:14135695,42945681 +k1,13421:32583029,42945681:15628762 +g1,13421:32583029,42945681 +) +(1,13427:6630773,44203977:25952256,513147,134348 +k1,13426:10559812,44203977:281960 +k1,13426:13396364,44203977:281959 +k1,13426:14337616,44203977:281960 +k1,13426:17273784,44203977:281960 +k1,13426:20404510,44203977:281876 +k1,13426:21877915,44203977:281960 +k1,13426:24714468,44203977:281960 +k1,13426:25655719,44203977:281959 +k1,13426:29319992,44203977:281960 +k1,13426:32583029,44203977:0 +) +(1,13427:6630773,45069057:25952256,513147,134348 +k1,13426:7834123,45069057:211790 +k1,13426:8812030,45069057:211791 +k1,13426:10836546,45069057:211790 +k1,13426:13540015,45069057:211790 +k1,13426:16485313,45069057:211791 +k1,13426:18072704,45069057:211790 +k1,13426:19093864,45069057:211790 +k1,13426:20324740,45069057:211791 +k1,13426:21922616,45069057:211790 +k1,13426:22793698,45069057:211790 +k1,13426:26771188,45069057:211791 +k1,13426:29824619,45069057:211790 +k1,13426:32583029,45069057:0 +) +] +(1,13427:32583029,45706769:0,0,0 +g1,13427:32583029,45706769 +) +) +] +(1,13427:6630773,47279633:25952256,0,0 +h1,13427:6630773,47279633:25952256,0,0 +) +] +(1,13427:4262630,4025873:0,0,0 +[1,13427:-473656,4025873:0,0,0 +(1,13427:-473656,-710413:0,0,0 +(1,13427:-473656,-710413:0,0,0 +g1,13427:-473656,-710413 +) +g1,13427:-473656,-710413 +) +] +) +] +!27298 +}216 Input:2259:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2260:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2261:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -238376,143 +238575,208 @@ Input:2271:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2272:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2273:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2274:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2275:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2276:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{216 -[1,13473:4262630,47279633:28320399,43253760,0 -(1,13473:4262630,4025873:0,0,0 -[1,13473:-473656,4025873:0,0,0 -(1,13473:-473656,-710413:0,0,0 -(1,13473:-473656,-644877:0,0,0 -k1,13473:-473656,-644877:-65536 +{217 +[1,13471:4262630,47279633:28320399,43253760,0 +(1,13471:4262630,4025873:0,0,0 +[1,13471:-473656,4025873:0,0,0 +(1,13471:-473656,-710413:0,0,0 +(1,13471:-473656,-644877:0,0,0 +k1,13471:-473656,-644877:-65536 ) -(1,13473:-473656,4736287:0,0,0 -k1,13473:-473656,4736287:5209943 +(1,13471:-473656,4736287:0,0,0 +k1,13471:-473656,4736287:5209943 ) -g1,13473:-473656,-710413 +g1,13471:-473656,-710413 ) ] ) -[1,13473:6630773,47279633:25952256,43253760,0 -[1,13473:6630773,4812305:25952256,786432,0 -(1,13473:6630773,4812305:25952256,505283,134348 -(1,13473:6630773,4812305:25952256,505283,134348 -g1,13473:3078558,4812305 -[1,13473:3078558,4812305:0,0,0 -(1,13473:3078558,2439708:0,1703936,0 -k1,13473:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13473:2537886,2439708:1179648,16384,0 +[1,13471:6630773,47279633:25952256,43253760,0 +[1,13471:6630773,4812305:25952256,786432,0 +(1,13471:6630773,4812305:25952256,505283,134348 +(1,13471:6630773,4812305:25952256,505283,134348 +g1,13471:3078558,4812305 +[1,13471:3078558,4812305:0,0,0 +(1,13471:3078558,2439708:0,1703936,0 +k1,13471:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13471:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13473:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13471:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13473:3078558,4812305:0,0,0 -(1,13473:3078558,2439708:0,1703936,0 -g1,13473:29030814,2439708 -g1,13473:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13473:36151628,1915420:16384,1179648,0 +[1,13471:3078558,4812305:0,0,0 +(1,13471:3078558,2439708:0,1703936,0 +g1,13471:29030814,2439708 +g1,13471:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13471:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13473:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13471:37855564,2439708:1179648,16384,0 ) ) -k1,13473:3078556,2439708:-34777008 +k1,13471:3078556,2439708:-34777008 ) ] -[1,13473:3078558,4812305:0,0,0 -(1,13473:3078558,49800853:0,16384,2228224 -k1,13473:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13473:2537886,49800853:1179648,16384,0 +[1,13471:3078558,4812305:0,0,0 +(1,13471:3078558,49800853:0,16384,2228224 +k1,13471:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13471:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13473:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13471:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13473:3078558,4812305:0,0,0 -(1,13473:3078558,49800853:0,16384,2228224 -g1,13473:29030814,49800853 -g1,13473:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13473:36151628,51504789:16384,1179648,0 +[1,13471:3078558,4812305:0,0,0 +(1,13471:3078558,49800853:0,16384,2228224 +g1,13471:29030814,49800853 +g1,13471:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13471:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13473:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13471:37855564,49800853:1179648,16384,0 ) ) -k1,13473:3078556,49800853:-34777008 +k1,13471:3078556,49800853:-34777008 ) ] -g1,13473:6630773,4812305 -g1,13473:6630773,4812305 -g1,13473:8843268,4812305 -g1,13473:11066249,4812305 -g1,13473:13415059,4812305 -k1,13473:31387651,4812305:17972592 +g1,13471:6630773,4812305 +g1,13471:6630773,4812305 +g1,13471:8843268,4812305 +g1,13471:11066249,4812305 +g1,13471:13415059,4812305 +k1,13471:31387651,4812305:17972592 ) ) ] -[1,13473:6630773,45706769:25952256,40108032,0 -(1,13473:6630773,45706769:25952256,40108032,0 -(1,13473:6630773,45706769:0,0,0 -g1,13473:6630773,45706769 +[1,13471:6630773,45706769:25952256,40108032,0 +(1,13471:6630773,45706769:25952256,40108032,0 +(1,13471:6630773,45706769:0,0,0 +g1,13471:6630773,45706769 +) +[1,13471:6630773,45706769:25952256,40108032,0 +[1,13456:6630773,17422408:25952256,11823671,0 +[1,13456:6630773,17422408:25952256,11823671,0 +(1,13455:6630773,10585005:25952256,4986268,0 +k1,13455:7790068,10585005:1159295 +h1,13453:7790068,10585005:0,0,0 +(1,13453:7790068,10585005:23454359,4986268,0 +g1,13453:10906354,10585005 +(1,13453:10906354,6227191:0,0,0 +(1,13453:10906354,6227191:0,0,0 +g1,13437:10906354,6227191 +(1,13438:10906354,6227191:0,0,0 +(1,13438:10906354,6227191:0,0,0 +g1,13438:10906354,6227191 +g1,13438:10906354,6227191 +g1,13438:10906354,6227191 +g1,13438:10906354,6227191 +g1,13438:10906354,6227191 +(1,13438:10906354,6227191:0,0,0 +(1,13438:10906354,6227191:4940249,454754,104590 +(1,13438:10906354,6227191:4940249,454754,104590 +g1,13438:12837438,6227191 +$1,13438:12837438,6227191 +$1,13438:13444957,6227191 +g1,13438:13624264,6227191 +(1,13438:13624264,6227191:0,414307,104590 +r1,13471:15846603,6227191:2222339,518897,104590 +k1,13438:13624264,6227191:-2222339 +) +(1,13438:13624264,6227191:2222339,414307,104590 +k1,13438:13624264,6227191:3277 +h1,13438:15843326,6227191:0,370085,101313 +) +) +g1,13438:15846603,6227191 +) +) +g1,13438:10906354,6227191 +g1,13438:10906354,6227191 +) +) +g1,13438:10906354,6227191 +(1,13439:10906354,6227191:0,0,0 +(1,13439:10906354,6227191:0,0,0 +g1,13439:10906354,6227191 +g1,13439:10906354,6227191 +g1,13439:10906354,6227191 +g1,13439:10906354,6227191 +g1,13439:10906354,6227191 +(1,13439:10906354,6227191:0,0,0 +(1,13439:10906354,6227191:5813184,454754,104590 +(1,13439:10906354,6227191:5813184,454754,104590 +g1,13439:14659995,6227191 +$1,13439:14659995,6227191 +$1,13439:15267514,6227191 +g1,13439:15446821,6227191 +(1,13439:15446821,6227191:0,408008,104590 +r1,13471:16719538,6227191:1272717,512598,104590 +k1,13439:15446821,6227191:-1272717 +) +(1,13439:15446821,6227191:1272717,408008,104590 +k1,13439:15446821,6227191:3277 +h1,13439:16716261,6227191:0,370085,101313 +) +) +g1,13439:16719538,6227191 +) +) +g1,13439:10906354,6227191 +g1,13439:10906354,6227191 +) ) -[1,13473:6630773,45706769:25952256,40108032,0 -[1,13458:6630773,17422408:25952256,11823671,0 -[1,13458:6630773,17422408:25952256,11823671,0 -(1,13457:6630773,10585005:25952256,4986268,0 -k1,13457:7790068,10585005:1159295 -h1,13455:7790068,10585005:0,0,0 -(1,13455:7790068,10585005:23454359,4986268,0 -g1,13455:10906354,10585005 -(1,13455:10906354,6227191:0,0,0 -(1,13455:10906354,6227191:0,0,0 g1,13439:10906354,6227191 (1,13440:10906354,6227191:0,0,0 (1,13440:10906354,6227191:0,0,0 @@ -238522,22 +238786,22 @@ g1,13440:10906354,6227191 g1,13440:10906354,6227191 g1,13440:10906354,6227191 (1,13440:10906354,6227191:0,0,0 -(1,13440:10906354,6227191:4940249,454754,104590 -(1,13440:10906354,6227191:4940249,454754,104590 -g1,13440:12837438,6227191 -$1,13440:12837438,6227191 -$1,13440:13444957,6227191 -g1,13440:13624264,6227191 -(1,13440:13624264,6227191:0,414307,104590 -r1,13473:15846603,6227191:2222339,518897,104590 -k1,13440:13624264,6227191:-2222339 +(1,13440:10906354,6227191:5356075,454754,120913 +(1,13440:10906354,6227191:5356075,454754,120913 +g1,13440:13253264,6227191 +$1,13440:13253264,6227191 +$1,13440:13860783,6227191 +g1,13440:14040090,6227191 +(1,13440:14040090,6227191:0,408008,110889 +r1,13471:16262429,6227191:2222339,518897,110889 +k1,13440:14040090,6227191:-2222339 ) -(1,13440:13624264,6227191:2222339,414307,104590 -k1,13440:13624264,6227191:3277 -h1,13440:15843326,6227191:0,370085,101313 +(1,13440:14040090,6227191:2222339,408008,110889 +k1,13440:14040090,6227191:3277 +h1,13440:16259152,6227191:0,370085,101313 ) ) -g1,13440:15846603,6227191 +g1,13440:16262429,6227191 ) ) g1,13440:10906354,6227191 @@ -238553,22 +238817,18 @@ g1,13441:10906354,6227191 g1,13441:10906354,6227191 g1,13441:10906354,6227191 (1,13441:10906354,6227191:0,0,0 -(1,13441:10906354,6227191:5813184,454754,104590 -(1,13441:10906354,6227191:5813184,454754,104590 -g1,13441:14659995,6227191 -$1,13441:14659995,6227191 -$1,13441:15267514,6227191 -g1,13441:15446821,6227191 -(1,13441:15446821,6227191:0,408008,104590 -r1,13473:16719538,6227191:1272717,512598,104590 -k1,13441:15446821,6227191:-1272717 +(1,13441:10906354,6227191:1272717,408008,104590 +(1,13441:10906354,6227191:1272717,408008,104590 +(1,13441:10906354,6227191:0,408008,104590 +r1,13471:12179071,6227191:1272717,512598,104590 +k1,13441:10906354,6227191:-1272717 ) -(1,13441:15446821,6227191:1272717,408008,104590 -k1,13441:15446821,6227191:3277 -h1,13441:16716261,6227191:0,370085,101313 +(1,13441:10906354,6227191:1272717,408008,104590 +k1,13441:10906354,6227191:3277 +h1,13441:12175794,6227191:0,370085,101313 ) ) -g1,13441:16719538,6227191 +g1,13441:12179071,6227191 ) ) g1,13441:10906354,6227191 @@ -238584,22 +238844,19 @@ g1,13442:10906354,6227191 g1,13442:10906354,6227191 g1,13442:10906354,6227191 (1,13442:10906354,6227191:0,0,0 -(1,13442:10906354,6227191:5356075,454754,120913 -(1,13442:10906354,6227191:5356075,454754,120913 -g1,13442:13253264,6227191 -$1,13442:13253264,6227191 -$1,13442:13860783,6227191 -g1,13442:14040090,6227191 -(1,13442:14040090,6227191:0,408008,110889 -r1,13473:16262429,6227191:2222339,518897,110889 -k1,13442:14040090,6227191:-2222339 +(1,13442:10906354,6227191:2550076,454754,120913 +(1,13442:10906354,6227191:2550076,454754,120913 +(1,13442:10906354,6227191:0,408008,104590 +r1,13471:11545989,6227191:639635,512598,104590 +k1,13442:10906354,6227191:-639635 ) -(1,13442:14040090,6227191:2222339,408008,110889 -k1,13442:14040090,6227191:3277 -h1,13442:16259152,6227191:0,370085,101313 +(1,13442:10906354,6227191:639635,408008,104590 +k1,13442:10906354,6227191:3277 +h1,13442:11542712,6227191:0,370085,101313 ) +g1,13442:11725296,6227191 ) -g1,13442:16262429,6227191 +g1,13442:13456430,6227191 ) ) g1,13442:10906354,6227191 @@ -238615,18 +238872,18 @@ g1,13443:10906354,6227191 g1,13443:10906354,6227191 g1,13443:10906354,6227191 (1,13443:10906354,6227191:0,0,0 -(1,13443:10906354,6227191:1272717,408008,104590 -(1,13443:10906354,6227191:1272717,408008,104590 +(1,13443:10906354,6227191:2855420,408008,104590 +(1,13443:10906354,6227191:2855420,408008,104590 (1,13443:10906354,6227191:0,408008,104590 -r1,13473:12179071,6227191:1272717,512598,104590 -k1,13443:10906354,6227191:-1272717 +r1,13471:13761774,6227191:2855420,512598,104590 +k1,13443:10906354,6227191:-2855420 ) -(1,13443:10906354,6227191:1272717,408008,104590 +(1,13443:10906354,6227191:2855420,408008,104590 k1,13443:10906354,6227191:3277 -h1,13443:12175794,6227191:0,370085,101313 +h1,13443:13758497,6227191:0,370085,101313 ) ) -g1,13443:12179071,6227191 +g1,13443:13761774,6227191 ) ) g1,13443:10906354,6227191 @@ -238642,19 +238899,18 @@ g1,13444:10906354,6227191 g1,13444:10906354,6227191 g1,13444:10906354,6227191 (1,13444:10906354,6227191:0,0,0 -(1,13444:10906354,6227191:2550076,454754,120913 -(1,13444:10906354,6227191:2550076,454754,120913 +(1,13444:10906354,6227191:2222339,408008,104590 +(1,13444:10906354,6227191:2222339,408008,104590 (1,13444:10906354,6227191:0,408008,104590 -r1,13473:11545989,6227191:639635,512598,104590 -k1,13444:10906354,6227191:-639635 +r1,13471:13128693,6227191:2222339,512598,104590 +k1,13444:10906354,6227191:-2222339 ) -(1,13444:10906354,6227191:639635,408008,104590 +(1,13444:10906354,6227191:2222339,408008,104590 k1,13444:10906354,6227191:3277 -h1,13444:11542712,6227191:0,370085,101313 +h1,13444:13125416,6227191:0,370085,101313 ) -g1,13444:11725296,6227191 ) -g1,13444:13456430,6227191 +g1,13444:13128693,6227191 ) ) g1,13444:10906354,6227191 @@ -238670,18 +238926,18 @@ g1,13445:10906354,6227191 g1,13445:10906354,6227191 g1,13445:10906354,6227191 (1,13445:10906354,6227191:0,0,0 -(1,13445:10906354,6227191:2855420,408008,104590 -(1,13445:10906354,6227191:2855420,408008,104590 +(1,13445:10906354,6227191:1905798,408008,104590 +(1,13445:10906354,6227191:1905798,408008,104590 (1,13445:10906354,6227191:0,408008,104590 -r1,13473:13761774,6227191:2855420,512598,104590 -k1,13445:10906354,6227191:-2855420 +r1,13471:12812152,6227191:1905798,512598,104590 +k1,13445:10906354,6227191:-1905798 ) -(1,13445:10906354,6227191:2855420,408008,104590 +(1,13445:10906354,6227191:1905798,408008,104590 k1,13445:10906354,6227191:3277 -h1,13445:13758497,6227191:0,370085,101313 +h1,13445:12808875,6227191:0,370085,101313 ) ) -g1,13445:13761774,6227191 +g1,13445:12812152,6227191 ) ) g1,13445:10906354,6227191 @@ -238689,59 +238945,17 @@ g1,13445:10906354,6227191 ) ) g1,13445:10906354,6227191 -(1,13446:10906354,6227191:0,0,0 -(1,13446:10906354,6227191:0,0,0 -g1,13446:10906354,6227191 g1,13446:10906354,6227191 g1,13446:10906354,6227191 g1,13446:10906354,6227191 g1,13446:10906354,6227191 -(1,13446:10906354,6227191:0,0,0 -(1,13446:10906354,6227191:2222339,408008,104590 -(1,13446:10906354,6227191:2222339,408008,104590 -(1,13446:10906354,6227191:0,408008,104590 -r1,13473:13128693,6227191:2222339,512598,104590 -k1,13446:10906354,6227191:-2222339 -) -(1,13446:10906354,6227191:2222339,408008,104590 -k1,13446:10906354,6227191:3277 -h1,13446:13125416,6227191:0,370085,101313 -) -) -g1,13446:13128693,6227191 -) -) -g1,13446:10906354,6227191 g1,13446:10906354,6227191 -) -) g1,13446:10906354,6227191 -(1,13447:10906354,6227191:0,0,0 -(1,13447:10906354,6227191:0,0,0 g1,13447:10906354,6227191 g1,13447:10906354,6227191 g1,13447:10906354,6227191 g1,13447:10906354,6227191 g1,13447:10906354,6227191 -(1,13447:10906354,6227191:0,0,0 -(1,13447:10906354,6227191:1905798,408008,104590 -(1,13447:10906354,6227191:1905798,408008,104590 -(1,13447:10906354,6227191:0,408008,104590 -r1,13473:12812152,6227191:1905798,512598,104590 -k1,13447:10906354,6227191:-1905798 -) -(1,13447:10906354,6227191:1905798,408008,104590 -k1,13447:10906354,6227191:3277 -h1,13447:12808875,6227191:0,370085,101313 -) -) -g1,13447:12812152,6227191 -) -) -g1,13447:10906354,6227191 -g1,13447:10906354,6227191 -) -) g1,13447:10906354,6227191 g1,13448:10906354,6227191 g1,13448:10906354,6227191 @@ -238775,1492 +238989,1477 @@ g1,13452:10906354,6227191 g1,13452:10906354,6227191 g1,13453:10906354,6227191 g1,13453:10906354,6227191 -g1,13453:10906354,6227191 -g1,13453:10906354,6227191 -g1,13453:10906354,6227191 -g1,13453:10906354,6227191 -g1,13454:10906354,6227191 -g1,13454:10906354,6227191 -g1,13454:10906354,6227191 -g1,13454:10906354,6227191 -g1,13454:10906354,6227191 -g1,13454:10906354,6227191 -g1,13455:10906354,6227191 -g1,13455:10906354,6227191 ) -g1,13455:10906354,6227191 +g1,13453:10906354,6227191 ) ) +g1,13453:31423734,10585005 g1,13455:31423734,10585005 -g1,13457:31423734,10585005 -k1,13457:32583029,10585005:1159295 -) -(1,13457:6630773,12105445:25952256,505283,134348 -h1,13457:6630773,12105445:0,0,0 -g1,13457:8923222,12105445 -k1,13457:32583029,12105445:22669558 -g1,13457:32583029,12105445 -) -(1,13457:6630773,12970525:25952256,513147,134348 -h1,13457:6630773,12970525:0,0,0 -k1,13457:8876182,12970525:272775 -k1,13457:11136665,12970525:272776 -k1,13457:13344063,12970525:272775 -k1,13457:14232877,12970525:272776 -k1,13457:14920422,12970525:272702 -k1,13457:15724694,12970525:272775 -k1,13457:17574922,12970525:272776 -k1,13457:18463735,12970525:272775 -k1,13457:20595767,12970525:272776 -k1,13457:22065229,12970525:272775 -k1,13457:24644872,12970525:272776 -k1,13457:27533844,12970525:272775 -k1,13457:29374241,12970525:272776 -k1,13457:31632102,12970525:272775 -h1,13457:32602690,12970525:0,0,0 -k1,13457:32583029,12970525:0 -) -(1,13457:6630773,13835605:25952256,513147,134348 -k1,13457:9472226,13835605:204940 -k1,13457:10328595,13835605:204941 -k1,13457:12194217,13835605:204940 -k1,13457:12755017,13835605:204940 -k1,13457:14772684,13835605:204941 -k1,13457:16965331,13835605:204940 -k1,13457:18031415,13835605:204941 -k1,13457:21359801,13835605:204940 -k1,13457:23402371,13835605:204940 -k1,13457:24598872,13835605:204941 -k1,13457:26961257,13835605:204940 -k1,13457:28560148,13835605:204940 -k1,13457:29784174,13835605:204941 -k1,13457:31923737,13835605:204940 -k1,13457:32583029,13835605:0 -) -(1,13457:6630773,14700685:25952256,513147,126483 -k1,13457:8597196,14700685:264453 -k1,13457:10578036,14700685:264452 -k1,13457:11501781,14700685:264453 -k1,13457:14257913,14700685:264453 -k1,13457:15713810,14700685:264452 -k1,13457:17587172,14700685:264453 -k1,13457:19338637,14700685:264453 -k1,13457:20594649,14700685:264452 -k1,13457:23256409,14700685:264453 -k1,13457:24172289,14700685:264452 -(1,13457:24172289,14700685:0,452978,115847 -r1,13473:25585690,14700685:1413401,568825,115847 -k1,13457:24172289,14700685:-1413401 -) -(1,13457:24172289,14700685:1413401,452978,115847 -k1,13457:24172289,14700685:3277 -h1,13457:25582413,14700685:0,411205,112570 -) -k1,13457:26023813,14700685:264453 -k1,13457:27778555,14700685:264453 -k1,13457:29062092,14700685:264452 -k1,13457:30981329,14700685:264453 -k1,13457:32583029,14700685:0 -) -(1,13457:6630773,15565765:25952256,513147,126483 -k1,13457:10168144,15565765:232390 -k1,13457:11913761,15565765:232391 -k1,13457:13962154,15565765:232390 -k1,13457:16979169,15565765:232390 -k1,13457:18203120,15565765:232391 -k1,13457:20684706,15565765:232390 -k1,13457:22606614,15565765:232390 -k1,13457:24305700,15565765:232390 -k1,13457:27411845,15565765:232391 -k1,13457:28835680,15565765:232390 -k1,13457:32583029,15565765:0 -) -(1,13457:6630773,16430845:25952256,513147,126483 -k1,13457:9603009,16430845:148290 -k1,13457:10742859,16430845:148290 -k1,13457:12777275,16430845:148290 -k1,13457:17047779,16430845:148290 -k1,13457:19568472,16430845:148290 -k1,13457:21554392,16430845:148290 -k1,13457:22894127,16430845:148290 -k1,13457:25220834,16430845:148290 -k1,13457:26360684,16430845:148290 -k1,13457:29152696,16430845:148290 -k1,13457:29987148,16430845:148290 -k1,13457:32583029,16430845:0 -) -(1,13457:6630773,17295925:25952256,505283,126483 -g1,13457:7821562,17295925 -k1,13457:32583029,17295925:21858222 -g1,13457:32583029,17295925 -) -] -] -(1,13429:6630773,19388488:25952256,513147,126483 -k1,13428:7491512,19388488:244701 -k1,13428:8755299,19388488:244702 -k1,13428:12084124,19388488:244701 -k1,13428:14316532,19388488:244701 -k1,13428:16447360,19388488:244702 -k1,13428:17169818,19388488:244701 -k1,13428:18030557,19388488:244701 -k1,13428:19294343,19388488:244701 -k1,13428:21251501,19388488:244702 -k1,13428:23483909,19388488:244701 -k1,13428:24494726,19388488:244701 -k1,13428:28505127,19388488:244702 -k1,13428:31591469,19388488:244701 -k1,13428:32583029,19388488:0 -) -(1,13429:6630773,20253568:25952256,513147,134348 -k1,13428:10589056,20253568:214211 -k1,13428:11872814,20253568:214210 -(1,13428:11872814,20253568:0,452978,115847 -r1,13473:14341351,20253568:2468537,568825,115847 -k1,13428:11872814,20253568:-2468537 -) -(1,13428:11872814,20253568:2468537,452978,115847 -k1,13428:11872814,20253568:3277 -h1,13428:14338074,20253568:0,411205,112570 -) -k1,13428:14729232,20253568:214211 -k1,13428:17425290,20253568:214210 -k1,13428:18658586,20253568:214211 -k1,13428:20860504,20253568:214211 -k1,13428:21606211,20253568:214210 -k1,13428:22176282,20253568:214211 -k1,13428:25707269,20253568:214210 -k1,13428:28082857,20253568:214211 -k1,13428:28774824,20253568:214210 -k1,13428:29755151,20253568:214211 -k1,13429:32583029,20253568:0 -) -(1,13429:6630773,21118648:25952256,513147,126483 -k1,13428:7887719,21118648:212957 -k1,13428:10942317,21118648:212957 -k1,13428:12146834,21118648:212957 -k1,13428:15059220,21118648:212958 -k1,13428:16341725,21118648:212957 -(1,13428:16341725,21118648:0,459977,115847 -r1,13473:18810262,21118648:2468537,575824,115847 -k1,13428:16341725,21118648:-2468537 -) -(1,13428:16341725,21118648:2468537,459977,115847 -k1,13428:16341725,21118648:3277 -h1,13428:18806985,21118648:0,411205,112570 -) -k1,13428:19196889,21118648:212957 -k1,13428:20428931,21118648:212957 -k1,13428:22629595,21118648:212957 -k1,13428:23374049,21118648:212957 -k1,13428:26195340,21118648:212958 -k1,13428:28684362,21118648:212957 -k1,13428:29363280,21118648:212957 -k1,13428:30595322,21118648:212957 -k1,13428:32583029,21118648:0 -) -(1,13429:6630773,21983728:25952256,505283,115847 -k1,13428:9571152,21983728:238330 -k1,13428:10881652,21983728:238331 -(1,13428:10881652,21983728:0,452978,115847 -r1,13473:13350189,21983728:2468537,568825,115847 -k1,13428:10881652,21983728:-2468537 -) -(1,13428:10881652,21983728:2468537,452978,115847 -k1,13428:10881652,21983728:3277 -h1,13428:13346912,21983728:0,411205,112570 -) -k1,13428:13588519,21983728:238330 -k1,13428:16668491,21983728:238331 -k1,13428:18098266,21983728:238330 -(1,13428:18098266,21983728:0,459977,115847 -r1,13473:20566803,21983728:2468537,575824,115847 -k1,13428:18098266,21983728:-2468537 -) -(1,13428:18098266,21983728:2468537,459977,115847 -k1,13428:18098266,21983728:3277 -h1,13428:20563526,21983728:0,411205,112570 -) -k1,13428:20805133,21983728:238330 -k1,13428:21501561,21983728:238331 -k1,13428:22271388,21983728:238330 -k1,13428:24668474,21983728:238330 -k1,13428:27970613,21983728:238331 -k1,13428:29026832,21983728:238330 -k1,13428:29881201,21983728:238331 -k1,13428:30885647,21983728:238330 -k1,13428:32583029,21983728:0 -) -(1,13429:6630773,22848808:25952256,513147,134348 -k1,13428:7856764,22848808:206906 -k1,13428:9998294,22848808:206907 -k1,13428:13189710,22848808:206906 -k1,13428:13928113,22848808:206906 -k1,13428:15154105,22848808:206907 -k1,13428:17188155,22848808:206906 -k1,13428:19249731,22848808:206907 -k1,13428:20266007,22848808:206906 -k1,13428:23197900,22848808:206906 -k1,13428:24900339,22848808:206907 -k1,13428:27578608,22848808:206906 -k1,13428:29602827,22848808:206906 -k1,13428:30425772,22848808:206907 -k1,13428:31221191,22848808:206906 -k1,13428:32583029,22848808:0 -) -(1,13429:6630773,23713888:25952256,513147,126483 -g1,13428:7821562,23713888 -g1,13428:8786907,23713888 -g1,13428:13187649,23713888 -g1,13428:14002916,23713888 -g1,13428:16897641,23713888 -(1,13428:16897641,23713888:0,452978,115847 -r1,13473:18311042,23713888:1413401,568825,115847 -k1,13428:16897641,23713888:-1413401 -) -(1,13428:16897641,23713888:1413401,452978,115847 -k1,13428:16897641,23713888:3277 -h1,13428:18307765,23713888:0,411205,112570 -) -k1,13429:32583029,23713888:14219559 -g1,13429:32583029,23713888 -) -(1,13431:6630773,24578968:25952256,513147,134348 -h1,13430:6630773,24578968:983040,0,0 -k1,13430:9642644,24578968:196444 -k1,13430:10370585,24578968:196444 -k1,13430:13039702,24578968:196444 -k1,13430:15964410,24578968:196444 -k1,13430:16820146,24578968:196444 -k1,13430:19624923,24578968:196444 -k1,13430:22636139,24578968:196445 -k1,13430:24208184,24578968:196444 -k1,13430:25056056,24578968:196444 -k1,13430:26271585,24578968:196444 -k1,13430:27989775,24578968:196444 -k1,13430:28845511,24578968:196444 -k1,13430:32583029,24578968:0 -) -(1,13431:6630773,25444048:25952256,513147,134348 -k1,13430:8762123,25444048:179688 -k1,13430:10384257,25444048:179687 -k1,13430:11215373,25444048:179688 -k1,13430:12165764,25444048:179688 -k1,13430:15329962,25444048:179688 -k1,13430:16161077,25444048:179687 -k1,13430:18328472,25444048:179688 -k1,13430:20616453,25444048:179688 -k1,13430:25316815,25444048:179688 -k1,13430:27448164,25444048:179687 -k1,13430:31510860,25444048:179688 -k1,13431:32583029,25444048:0 -) -(1,13431:6630773,26309128:25952256,513147,134348 -k1,13430:8083943,26309128:245997 -k1,13430:9277592,26309128:245998 -k1,13430:11045335,26309128:245997 -k1,13430:11950624,26309128:245997 -k1,13430:15934140,26309128:245998 -k1,13430:17284419,26309128:245997 -k1,13430:18997113,26309128:245998 -k1,13430:19859148,26309128:245997 -k1,13430:21124230,26309128:245997 -k1,13430:22737309,26309128:245998 -k1,13430:23642598,26309128:245997 -k1,13430:27379042,26309128:245997 -k1,13430:30059656,26309128:245951 -k1,13430:31497098,26309128:245997 -k1,13431:32583029,26309128:0 -) -(1,13431:6630773,27174208:25952256,505283,134348 -k1,13430:8925189,27174208:210371 -k1,13430:9883327,27174208:210372 -k1,13430:13267607,27174208:210371 -k1,13430:14094016,27174208:210371 -k1,13430:15075090,27174208:210371 -k1,13430:17720113,27174208:210360 -k1,13430:19669811,27174208:210372 -k1,13430:20508017,27174208:210371 -k1,13430:21921629,27174208:210371 -k1,13430:24547002,27174208:210371 -k1,13430:27060309,27174208:210372 -k1,13430:30172614,27174208:210371 -k1,13430:32583029,27174208:0 -) -(1,13431:6630773,28039288:25952256,513147,134348 -g1,13430:8898318,28039288 -g1,13430:9453407,28039288 -g1,13430:10844081,28039288 -g1,13430:11702602,28039288 -g1,13430:15639349,28039288 -g1,13430:17693247,28039288 -g1,13430:18701846,28039288 -g1,13430:19920160,28039288 -g1,13430:21946533,28039288 -g1,13430:24780965,28039288 -g1,13430:26576651,28039288 -g1,13430:27435172,28039288 -k1,13431:32583029,28039288:2110919 -g1,13431:32583029,28039288 -) -v1,13433:6630773,28904368:0,393216,0 -(1,13434:6630773,30264973:25952256,1753821,0 -g1,13434:6630773,30264973 -g1,13434:6237557,30264973 -r1,13473:6368629,30264973:131072,1753821,0 -g1,13434:6567858,30264973 -g1,13434:6764466,30264973 -[1,13434:6764466,30264973:25818563,1753821,0 -(1,13434:6764466,29265545:25818563,754393,260573 -(1,13433:6764466,29265545:0,754393,260573 -r1,13473:7856192,29265545:1091726,1014966,260573 -k1,13433:6764466,29265545:-1091726 -) -(1,13433:6764466,29265545:1091726,754393,260573 -) -k1,13433:8068974,29265545:212782 -k1,13433:8396654,29265545:327680 -k1,13433:9087193,29265545:212782 -k1,13433:10470449,29265545:212783 -k1,13433:11498499,29265545:212782 -k1,13433:12777552,29265545:212782 -k1,13433:15086831,29265545:212782 -k1,13433:18558718,29265545:212782 -k1,13433:19790585,29265545:212782 -k1,13433:23189727,29265545:212782 -k1,13433:26037713,29265545:212783 -k1,13433:28870624,29265545:212782 -k1,13433:31391584,29265545:212782 -k1,13433:32583029,29265545:0 -) -(1,13434:6764466,30130625:25818563,513147,134348 -g1,13433:9361657,30130625 -g1,13433:10243771,30130625 -g1,13433:11773381,30130625 -g1,13433:13352798,30130625 -g1,13433:14656309,30130625 -g1,13433:15603304,30130625 -g1,13433:18326324,30130625 -g1,13433:20705936,30130625 -g1,13433:22887629,30130625 -g1,13433:25504481,30130625 -h1,13433:25902940,30130625:0,0,0 -g1,13433:26102169,30130625 -g1,13433:27110768,30130625 -g1,13433:28808150,30130625 -h1,13433:29605068,30130625:0,0,0 -k1,13434:32583029,30130625:2925533 -g1,13434:32583029,30130625 -) -] -g1,13434:32583029,30264973 -) -h1,13434:6630773,30264973:0,0,0 -(1,13462:6630773,31130053:25952256,513147,134348 -h1,13460:6630773,31130053:983040,0,0 -k1,13460:9830896,31130053:231997 -h1,13460:10801484,31130053:0,0,0 -k1,13460:11033481,31130053:231997 -k1,13460:13256463,31130053:231998 -k1,13460:14507545,31130053:231997 -k1,13460:16425128,31130053:231997 -k1,13460:18955473,31130053:231997 -k1,13460:19838899,31130053:231998 -k1,13460:20758369,31130053:231997 -k1,13460:21346226,31130053:231997 -k1,13460:23390949,31130053:231997 -k1,13460:25610653,31130053:231997 -k1,13460:27034096,31130053:231998 -k1,13460:29470069,31130053:231997 -k1,13460:30721151,31130053:231997 -k1,13462:32583029,31130053:0 -) -(1,13462:6630773,31995133:25952256,513147,102891 -k1,13460:8074007,31995133:152830 -k1,13460:9418282,31995133:152830 -k1,13460:10762557,31995133:152830 -k1,13460:13262231,31995133:152830 -k1,13460:14611748,31995133:152830 -k1,13460:18836330,31995133:152830 -k1,13460:19980720,31995133:152830 -k1,13460:22171719,31995133:152829 -k1,13460:22940587,31995133:152830 -k1,13460:23449277,31995133:152830 -k1,13460:24991470,31995133:152830 -k1,13460:27194266,31995133:152830 -k1,13460:28503806,31995133:152830 -k1,13460:30023717,31995133:152830 -k1,13460:30859432,31995133:152830 -k1,13460:32583029,31995133:0 -) -(1,13462:6630773,32860213:25952256,513147,126483 -k1,13460:7928931,32860213:241718 -k1,13460:9548217,32860213:241719 -k1,13460:11183886,32860213:241718 -k1,13460:13436250,32860213:241719 -k1,13460:14625619,32860213:241718 -k1,13460:16334034,32860213:241719 -k1,13460:19449506,32860213:241718 -k1,13460:20882669,32860213:241718 -k1,13460:24890087,32860213:241719 -k1,13460:27973446,32860213:241718 -k1,13460:28831203,32860213:241719 -k1,13460:31914562,32860213:241718 -k1,13460:32583029,32860213:0 -) -(1,13462:6630773,33725293:25952256,513147,7863 -k1,13460:9708545,33725293:190911 -k1,13460:11096144,33725293:190912 -k1,13460:13274762,33725293:190911 -k1,13460:16009126,33725293:190912 -k1,13460:16731534,33725293:190911 -k1,13460:18435671,33725293:190911 -k1,13460:19278011,33725293:190912 -k1,13460:22000578,33725293:190911 -k1,13460:24076960,33725293:190911 -k1,13460:27109513,33725293:190912 -k1,13460:27916462,33725293:190911 -k1,13460:29126459,33725293:190912 -k1,13460:30706733,33725293:190911 -k1,13460:32583029,33725293:0 -) -(1,13462:6630773,34590373:25952256,505283,126483 -k1,13460:7800169,34590373:177836 -k1,13460:8629434,34590373:177837 -k1,13460:9555036,34590373:177836 -k1,13460:11246099,34590373:177837 -k1,13460:12615380,34590373:177836 -k1,13460:13409255,34590373:177837 -k1,13460:15472562,34590373:177836 -k1,13460:17059422,34590373:177836 -k1,13460:19093239,34590373:177837 -k1,13461:22144829,34590373:177836 -k1,13461:23005551,34590373:177837 -k1,13461:27122756,34590373:177836 -k1,13461:28492038,34590373:177837 -k1,13461:30367912,34590373:177836 -k1,13462:32583029,34590373:0 -) -(1,13462:6630773,35455453:25952256,505283,134348 -k1,13461:8549727,35455453:262204 -k1,13461:10142311,35455453:262203 -k1,13461:11784703,35455453:262204 -k1,13461:15355819,35455453:262203 -k1,13461:16269451,35455453:262204 -k1,13461:17550739,35455453:262203 -k1,13461:20949496,35455453:262204 -k1,13461:24259123,35455453:262203 -k1,13461:25718014,35455453:262204 -k1,13461:27939743,35455453:262203 -k1,13461:31563944,35455453:262204 -k1,13461:32583029,35455453:0 -) -(1,13462:6630773,36320533:25952256,513147,126483 -k1,13461:9037658,36320533:233711 -k1,13461:10838991,36320533:233712 -k1,13461:12091787,36320533:233711 -k1,13461:13012971,36320533:233711 -k1,13461:13778180,36320533:233712 -k1,13461:16436068,36320533:233711 -k1,13461:17321207,36320533:233711 -k1,13461:19579325,36320533:233711 -k1,13461:22172333,36320533:233712 -k1,13461:23597489,36320533:233711 -k1,13461:25546933,36320533:233711 -k1,13461:29548310,36320533:233712 -k1,13461:30464906,36320533:233711 -k1,13462:32583029,36320533:0 -) -(1,13462:6630773,37185613:25952256,473825,7863 -k1,13462:32583029,37185613:24302060 -g1,13462:32583029,37185613 -) -v1,13464:6630773,38050693:0,393216,0 -(1,13465:6630773,44548899:25952256,6891422,0 -g1,13465:6630773,44548899 -g1,13465:6237557,44548899 -r1,13473:6368629,44548899:131072,6891422,0 -g1,13465:6567858,44548899 -g1,13465:6764466,44548899 -[1,13465:6764466,44548899:25818563,6891422,0 -(1,13465:6764466,38358991:25818563,701514,196608 -(1,13464:6764466,38358991:0,701514,196608 -r1,13473:7761522,38358991:997056,898122,196608 -k1,13464:6764466,38358991:-997056 -) -(1,13464:6764466,38358991:997056,701514,196608 -) -k1,13464:7932058,38358991:170536 -k1,13464:8259738,38358991:327680 -k1,13464:10961274,38358991:170536 -k1,13464:12123371,38358991:170537 -k1,13464:16671057,38358991:170536 -k1,13464:19065885,38358991:170536 -k1,13464:20749647,38358991:170536 -k1,13464:21571612,38358991:170537 -k1,13464:23195737,38358991:170536 -k1,13464:24385358,38358991:170536 -k1,13464:26702853,38358991:170536 -k1,13464:28568151,38358991:170537 -k1,13464:29390115,38358991:170536 -k1,13464:32583029,38358991:0 -) -(1,13465:6764466,39224071:25818563,513147,134348 -k1,13464:9916212,39224071:257676 -k1,13464:11871925,39224071:257675 -k1,13464:14064224,39224071:257676 -k1,13464:14677759,39224071:257675 -k1,13464:16923142,39224071:257676 -k1,13464:17832245,39224071:257675 -k1,13464:22161673,39224071:257676 -k1,13464:23703854,39224071:257675 -k1,13464:24953090,39224071:257676 -k1,13464:26277036,39224071:257675 -k1,13464:28828472,39224071:257676 -k1,13464:32583029,39224071:0 -) -(1,13465:6764466,40089151:25818563,513147,134348 -k1,13464:7490597,40089151:262791 -k1,13464:10492201,40089151:262854 -k1,13464:12122137,40089151:262855 -k1,13464:12916488,40089151:262854 -k1,13464:15113966,40089151:262855 -k1,13464:15732680,40089151:262854 -k1,13464:17983242,40089151:262855 -k1,13464:18897524,40089151:262854 -k1,13464:23232131,40089151:262855 -k1,13464:24779491,40089151:262854 -k1,13464:26033906,40089151:262855 -k1,13464:28365077,40089151:262855 -k1,13464:29287223,40089151:262854 -k1,13464:32583029,40089151:0 -) -(1,13465:6764466,40954231:25818563,513147,126483 -k1,13464:9675139,40954231:148330 -k1,13464:12639550,40954231:148329 -k1,13464:13447172,40954231:148330 -k1,13464:16788416,40954231:148330 -k1,13464:21783788,40954231:148329 -k1,13464:23649161,40954231:148330 -k1,13464:25785198,40954231:148330 -k1,13464:26621000,40954231:148329 -k1,13464:29795127,40954231:148330 -k1,13464:32583029,40954231:0 -) -(1,13465:6764466,41819311:25818563,505283,134348 -k1,13464:8061474,41819311:277923 -k1,13464:10958871,41819311:277923 -k1,13464:12308963,41819311:277923 -k1,13464:13202924,41819311:277923 -k1,13464:15082547,41819311:277923 -k1,13464:17057852,41819311:277923 -k1,13464:18715964,41819311:277924 -k1,13464:19985447,41819311:277923 -k1,13464:23024402,41819311:277923 -k1,13464:23988487,41819311:277923 -k1,13464:25037113,41819311:277923 -k1,13464:28387364,41819311:277923 -k1,13464:29316715,41819311:277923 -k1,13465:32583029,41819311:0 -) -(1,13465:6764466,42684391:25818563,513147,134348 -(1,13464:6764466,42684391:0,452978,122846 -r1,13473:9233003,42684391:2468537,575824,122846 -k1,13464:6764466,42684391:-2468537 -) -(1,13464:6764466,42684391:2468537,452978,122846 -k1,13464:6764466,42684391:3277 -h1,13464:9229726,42684391:0,411205,112570 -) -k1,13464:9596682,42684391:190009 -k1,13464:10546908,42684391:190008 -k1,13464:13176167,42684391:190009 -(1,13464:13176167,42684391:0,452978,122846 -r1,13473:15644704,42684391:2468537,575824,122846 -k1,13464:13176167,42684391:-2468537 -) -(1,13464:13176167,42684391:2468537,452978,122846 -k1,13464:13176167,42684391:3277 -h1,13464:15641427,42684391:0,411205,112570 -) -k1,13464:15834713,42684391:190009 -k1,13464:17499937,42684391:190009 -k1,13464:18045805,42684391:190008 -k1,13464:19916157,42684391:190009 -k1,13464:20773322,42684391:190009 -(1,13464:20773322,42684391:0,435480,115847 -r1,13473:21131588,42684391:358266,551327,115847 -k1,13464:20773322,42684391:-358266 -) -(1,13464:20773322,42684391:358266,435480,115847 -k1,13464:20773322,42684391:3277 -h1,13464:21128311,42684391:0,411205,112570 -) -k1,13464:21321597,42684391:190009 -k1,13464:22703050,42684391:190008 -k1,13464:24309947,42684391:190009 -k1,13464:25315224,42684391:190009 -k1,13464:26571504,42684391:190009 -k1,13464:28540814,42684391:190008 -k1,13464:29749908,42684391:190009 -k1,13464:32583029,42684391:0 -) -(1,13465:6764466,43549471:25818563,513147,134348 -k1,13464:9046934,43549471:294761 -k1,13464:10202837,43549471:294760 -k1,13464:12195636,43549471:294761 -k1,13464:15251428,43549471:294760 -k1,13464:16229074,43549471:294761 -k1,13464:19906148,43549471:294761 -k1,13464:21219993,43549471:294760 -k1,13464:23960558,43549471:294761 -k1,13464:25246879,43549471:294761 -k1,13464:27353054,43549471:294760 -k1,13464:28299243,43549471:294761 -k1,13464:29613088,43549471:294760 -k1,13464:31895556,43549471:294761 -k1,13464:32583029,43549471:0 -) -(1,13465:6764466,44414551:25818563,505283,134348 -k1,13465:32583029,44414551:23806608 -g1,13465:32583029,44414551 -) -] -g1,13465:32583029,44548899 -) -h1,13465:6630773,44548899:0,0,0 -] -(1,13473:32583029,45706769:0,0,0 -g1,13473:32583029,45706769 -) -) -] -(1,13473:6630773,47279633:25952256,0,0 -h1,13473:6630773,47279633:25952256,0,0 -) -] -(1,13473:4262630,4025873:0,0,0 -[1,13473:-473656,4025873:0,0,0 -(1,13473:-473656,-710413:0,0,0 -(1,13473:-473656,-710413:0,0,0 -g1,13473:-473656,-710413 -) -g1,13473:-473656,-710413 +k1,13455:32583029,10585005:1159295 +) +(1,13455:6630773,12105445:25952256,505283,134348 +h1,13455:6630773,12105445:0,0,0 +g1,13455:8923222,12105445 +k1,13455:32583029,12105445:22669558 +g1,13455:32583029,12105445 +) +(1,13455:6630773,12970525:25952256,513147,134348 +h1,13455:6630773,12970525:0,0,0 +k1,13455:8876182,12970525:272775 +k1,13455:11136665,12970525:272776 +k1,13455:13344063,12970525:272775 +k1,13455:14232877,12970525:272776 +k1,13455:14920422,12970525:272702 +k1,13455:15724694,12970525:272775 +k1,13455:17574922,12970525:272776 +k1,13455:18463735,12970525:272775 +k1,13455:20595767,12970525:272776 +k1,13455:22065229,12970525:272775 +k1,13455:24644872,12970525:272776 +k1,13455:27533844,12970525:272775 +k1,13455:29374241,12970525:272776 +k1,13455:31632102,12970525:272775 +h1,13455:32602690,12970525:0,0,0 +k1,13455:32583029,12970525:0 +) +(1,13455:6630773,13835605:25952256,513147,134348 +k1,13455:9472226,13835605:204940 +k1,13455:10328595,13835605:204941 +k1,13455:12194217,13835605:204940 +k1,13455:12755017,13835605:204940 +k1,13455:14772684,13835605:204941 +k1,13455:16965331,13835605:204940 +k1,13455:18031415,13835605:204941 +k1,13455:21359801,13835605:204940 +k1,13455:23402371,13835605:204940 +k1,13455:24598872,13835605:204941 +k1,13455:26961257,13835605:204940 +k1,13455:28560148,13835605:204940 +k1,13455:29784174,13835605:204941 +k1,13455:31923737,13835605:204940 +k1,13455:32583029,13835605:0 +) +(1,13455:6630773,14700685:25952256,513147,126483 +k1,13455:8597196,14700685:264453 +k1,13455:10578036,14700685:264452 +k1,13455:11501781,14700685:264453 +k1,13455:14257913,14700685:264453 +k1,13455:15713810,14700685:264452 +k1,13455:17587172,14700685:264453 +k1,13455:19338637,14700685:264453 +k1,13455:20594649,14700685:264452 +k1,13455:23256409,14700685:264453 +k1,13455:24172289,14700685:264452 +(1,13455:24172289,14700685:0,452978,115847 +r1,13471:25585690,14700685:1413401,568825,115847 +k1,13455:24172289,14700685:-1413401 +) +(1,13455:24172289,14700685:1413401,452978,115847 +k1,13455:24172289,14700685:3277 +h1,13455:25582413,14700685:0,411205,112570 +) +k1,13455:26023813,14700685:264453 +k1,13455:27778555,14700685:264453 +k1,13455:29062092,14700685:264452 +k1,13455:30981329,14700685:264453 +k1,13455:32583029,14700685:0 +) +(1,13455:6630773,15565765:25952256,513147,126483 +k1,13455:10168144,15565765:232390 +k1,13455:11913761,15565765:232391 +k1,13455:13962154,15565765:232390 +k1,13455:16979169,15565765:232390 +k1,13455:18203120,15565765:232391 +k1,13455:20684706,15565765:232390 +k1,13455:22606614,15565765:232390 +k1,13455:24305700,15565765:232390 +k1,13455:27411845,15565765:232391 +k1,13455:28835680,15565765:232390 +k1,13455:32583029,15565765:0 +) +(1,13455:6630773,16430845:25952256,513147,126483 +k1,13455:9603009,16430845:148290 +k1,13455:10742859,16430845:148290 +k1,13455:12777275,16430845:148290 +k1,13455:17047779,16430845:148290 +k1,13455:19568472,16430845:148290 +k1,13455:21554392,16430845:148290 +k1,13455:22894127,16430845:148290 +k1,13455:25220834,16430845:148290 +k1,13455:26360684,16430845:148290 +k1,13455:29152696,16430845:148290 +k1,13455:29987148,16430845:148290 +k1,13455:32583029,16430845:0 +) +(1,13455:6630773,17295925:25952256,505283,126483 +g1,13455:7821562,17295925 +k1,13455:32583029,17295925:21858222 +g1,13455:32583029,17295925 +) +] +] +(1,13427:6630773,19388488:25952256,513147,126483 +k1,13426:7491512,19388488:244701 +k1,13426:8755299,19388488:244702 +k1,13426:12084124,19388488:244701 +k1,13426:14316532,19388488:244701 +k1,13426:16447360,19388488:244702 +k1,13426:17169818,19388488:244701 +k1,13426:18030557,19388488:244701 +k1,13426:19294343,19388488:244701 +k1,13426:21251501,19388488:244702 +k1,13426:23483909,19388488:244701 +k1,13426:24494726,19388488:244701 +k1,13426:28505127,19388488:244702 +k1,13426:31591469,19388488:244701 +k1,13426:32583029,19388488:0 +) +(1,13427:6630773,20253568:25952256,513147,134348 +k1,13426:10589056,20253568:214211 +k1,13426:11872814,20253568:214210 +(1,13426:11872814,20253568:0,452978,115847 +r1,13471:14341351,20253568:2468537,568825,115847 +k1,13426:11872814,20253568:-2468537 +) +(1,13426:11872814,20253568:2468537,452978,115847 +k1,13426:11872814,20253568:3277 +h1,13426:14338074,20253568:0,411205,112570 +) +k1,13426:14729232,20253568:214211 +k1,13426:17425290,20253568:214210 +k1,13426:18658586,20253568:214211 +k1,13426:20860504,20253568:214211 +k1,13426:21606211,20253568:214210 +k1,13426:22176282,20253568:214211 +k1,13426:25707269,20253568:214210 +k1,13426:28082857,20253568:214211 +k1,13426:28774824,20253568:214210 +k1,13426:29755151,20253568:214211 +k1,13427:32583029,20253568:0 +) +(1,13427:6630773,21118648:25952256,513147,126483 +k1,13426:7887719,21118648:212957 +k1,13426:10942317,21118648:212957 +k1,13426:12146834,21118648:212957 +k1,13426:15059220,21118648:212958 +k1,13426:16341725,21118648:212957 +(1,13426:16341725,21118648:0,459977,115847 +r1,13471:18810262,21118648:2468537,575824,115847 +k1,13426:16341725,21118648:-2468537 +) +(1,13426:16341725,21118648:2468537,459977,115847 +k1,13426:16341725,21118648:3277 +h1,13426:18806985,21118648:0,411205,112570 +) +k1,13426:19196889,21118648:212957 +k1,13426:20428931,21118648:212957 +k1,13426:22629595,21118648:212957 +k1,13426:23374049,21118648:212957 +k1,13426:26195340,21118648:212958 +k1,13426:28684362,21118648:212957 +k1,13426:29363280,21118648:212957 +k1,13426:30595322,21118648:212957 +k1,13426:32583029,21118648:0 +) +(1,13427:6630773,21983728:25952256,505283,115847 +k1,13426:9571152,21983728:238330 +k1,13426:10881652,21983728:238331 +(1,13426:10881652,21983728:0,452978,115847 +r1,13471:13350189,21983728:2468537,568825,115847 +k1,13426:10881652,21983728:-2468537 +) +(1,13426:10881652,21983728:2468537,452978,115847 +k1,13426:10881652,21983728:3277 +h1,13426:13346912,21983728:0,411205,112570 +) +k1,13426:13588519,21983728:238330 +k1,13426:16668491,21983728:238331 +k1,13426:18098266,21983728:238330 +(1,13426:18098266,21983728:0,459977,115847 +r1,13471:20566803,21983728:2468537,575824,115847 +k1,13426:18098266,21983728:-2468537 +) +(1,13426:18098266,21983728:2468537,459977,115847 +k1,13426:18098266,21983728:3277 +h1,13426:20563526,21983728:0,411205,112570 +) +k1,13426:20805133,21983728:238330 +k1,13426:21501561,21983728:238331 +k1,13426:22271388,21983728:238330 +k1,13426:24668474,21983728:238330 +k1,13426:27970613,21983728:238331 +k1,13426:29026832,21983728:238330 +k1,13426:29881201,21983728:238331 +k1,13426:30885647,21983728:238330 +k1,13426:32583029,21983728:0 +) +(1,13427:6630773,22848808:25952256,513147,134348 +k1,13426:7856764,22848808:206906 +k1,13426:9998294,22848808:206907 +k1,13426:13189710,22848808:206906 +k1,13426:13928113,22848808:206906 +k1,13426:15154105,22848808:206907 +k1,13426:17188155,22848808:206906 +k1,13426:19249731,22848808:206907 +k1,13426:20266007,22848808:206906 +k1,13426:23197900,22848808:206906 +k1,13426:24900339,22848808:206907 +k1,13426:27578608,22848808:206906 +k1,13426:29602827,22848808:206906 +k1,13426:30425772,22848808:206907 +k1,13426:31221191,22848808:206906 +k1,13426:32583029,22848808:0 +) +(1,13427:6630773,23713888:25952256,513147,126483 +g1,13426:7821562,23713888 +g1,13426:8786907,23713888 +g1,13426:13187649,23713888 +g1,13426:14002916,23713888 +g1,13426:16897641,23713888 +(1,13426:16897641,23713888:0,452978,115847 +r1,13471:18311042,23713888:1413401,568825,115847 +k1,13426:16897641,23713888:-1413401 +) +(1,13426:16897641,23713888:1413401,452978,115847 +k1,13426:16897641,23713888:3277 +h1,13426:18307765,23713888:0,411205,112570 +) +k1,13427:32583029,23713888:14219559 +g1,13427:32583029,23713888 +) +(1,13429:6630773,24578968:25952256,513147,134348 +h1,13428:6630773,24578968:983040,0,0 +k1,13428:9642644,24578968:196444 +k1,13428:10370585,24578968:196444 +k1,13428:13039702,24578968:196444 +k1,13428:15964410,24578968:196444 +k1,13428:16820146,24578968:196444 +k1,13428:19624923,24578968:196444 +k1,13428:22636139,24578968:196445 +k1,13428:24208184,24578968:196444 +k1,13428:25056056,24578968:196444 +k1,13428:26271585,24578968:196444 +k1,13428:27989775,24578968:196444 +k1,13428:28845511,24578968:196444 +k1,13428:32583029,24578968:0 +) +(1,13429:6630773,25444048:25952256,513147,134348 +k1,13428:8762123,25444048:179688 +k1,13428:10384257,25444048:179687 +k1,13428:11215373,25444048:179688 +k1,13428:12165764,25444048:179688 +k1,13428:15329962,25444048:179688 +k1,13428:16161077,25444048:179687 +k1,13428:18328472,25444048:179688 +k1,13428:20616453,25444048:179688 +k1,13428:25316815,25444048:179688 +k1,13428:27448164,25444048:179687 +k1,13428:31510860,25444048:179688 +k1,13429:32583029,25444048:0 +) +(1,13429:6630773,26309128:25952256,513147,134348 +k1,13428:8083943,26309128:245997 +k1,13428:9277592,26309128:245998 +k1,13428:11045335,26309128:245997 +k1,13428:11950624,26309128:245997 +k1,13428:15934140,26309128:245998 +k1,13428:17284419,26309128:245997 +k1,13428:18997113,26309128:245998 +k1,13428:19859148,26309128:245997 +k1,13428:21124230,26309128:245997 +k1,13428:22737309,26309128:245998 +k1,13428:23642598,26309128:245997 +k1,13428:27379042,26309128:245997 +k1,13428:30059656,26309128:245951 +k1,13428:31497098,26309128:245997 +k1,13429:32583029,26309128:0 +) +(1,13429:6630773,27174208:25952256,505283,134348 +k1,13428:8925189,27174208:210371 +k1,13428:9883327,27174208:210372 +k1,13428:13267607,27174208:210371 +k1,13428:14094016,27174208:210371 +k1,13428:15075090,27174208:210371 +k1,13428:17720113,27174208:210360 +k1,13428:19669811,27174208:210372 +k1,13428:20508017,27174208:210371 +k1,13428:21921629,27174208:210371 +k1,13428:24547002,27174208:210371 +k1,13428:27060309,27174208:210372 +k1,13428:30172614,27174208:210371 +k1,13428:32583029,27174208:0 +) +(1,13429:6630773,28039288:25952256,513147,134348 +g1,13428:8898318,28039288 +g1,13428:9453407,28039288 +g1,13428:10844081,28039288 +g1,13428:11702602,28039288 +g1,13428:15639349,28039288 +g1,13428:17693247,28039288 +g1,13428:18701846,28039288 +g1,13428:19920160,28039288 +g1,13428:21946533,28039288 +g1,13428:24780965,28039288 +g1,13428:26576651,28039288 +g1,13428:27435172,28039288 +k1,13429:32583029,28039288:2110919 +g1,13429:32583029,28039288 +) +v1,13431:6630773,28904368:0,393216,0 +(1,13432:6630773,30264973:25952256,1753821,0 +g1,13432:6630773,30264973 +g1,13432:6237557,30264973 +r1,13471:6368629,30264973:131072,1753821,0 +g1,13432:6567858,30264973 +g1,13432:6764466,30264973 +[1,13432:6764466,30264973:25818563,1753821,0 +(1,13432:6764466,29265545:25818563,754393,260573 +(1,13431:6764466,29265545:0,754393,260573 +r1,13471:7856192,29265545:1091726,1014966,260573 +k1,13431:6764466,29265545:-1091726 +) +(1,13431:6764466,29265545:1091726,754393,260573 +) +k1,13431:8068974,29265545:212782 +k1,13431:8396654,29265545:327680 +k1,13431:9087193,29265545:212782 +k1,13431:10470449,29265545:212783 +k1,13431:11498499,29265545:212782 +k1,13431:12777552,29265545:212782 +k1,13431:15086831,29265545:212782 +k1,13431:18558718,29265545:212782 +k1,13431:19790585,29265545:212782 +k1,13431:23189727,29265545:212782 +k1,13431:26037713,29265545:212783 +k1,13431:28870624,29265545:212782 +k1,13431:31391584,29265545:212782 +k1,13431:32583029,29265545:0 +) +(1,13432:6764466,30130625:25818563,513147,134348 +g1,13431:9361657,30130625 +g1,13431:10243771,30130625 +g1,13431:11773381,30130625 +g1,13431:13352798,30130625 +g1,13431:14656309,30130625 +g1,13431:15603304,30130625 +g1,13431:18326324,30130625 +g1,13431:20705936,30130625 +g1,13431:22887629,30130625 +g1,13431:25504481,30130625 +h1,13431:25902940,30130625:0,0,0 +g1,13431:26102169,30130625 +g1,13431:27110768,30130625 +g1,13431:28808150,30130625 +h1,13431:29605068,30130625:0,0,0 +k1,13432:32583029,30130625:2925533 +g1,13432:32583029,30130625 +) +] +g1,13432:32583029,30264973 +) +h1,13432:6630773,30264973:0,0,0 +(1,13460:6630773,31130053:25952256,513147,134348 +h1,13458:6630773,31130053:983040,0,0 +k1,13458:9830896,31130053:231997 +h1,13458:10801484,31130053:0,0,0 +k1,13458:11033481,31130053:231997 +k1,13458:13256463,31130053:231998 +k1,13458:14507545,31130053:231997 +k1,13458:16425128,31130053:231997 +k1,13458:18955473,31130053:231997 +k1,13458:19838899,31130053:231998 +k1,13458:20758369,31130053:231997 +k1,13458:21346226,31130053:231997 +k1,13458:23390949,31130053:231997 +k1,13458:25610653,31130053:231997 +k1,13458:27034096,31130053:231998 +k1,13458:29470069,31130053:231997 +k1,13458:30721151,31130053:231997 +k1,13460:32583029,31130053:0 +) +(1,13460:6630773,31995133:25952256,513147,102891 +k1,13458:8074007,31995133:152830 +k1,13458:9418282,31995133:152830 +k1,13458:10762557,31995133:152830 +k1,13458:13262231,31995133:152830 +k1,13458:14611748,31995133:152830 +k1,13458:18836330,31995133:152830 +k1,13458:19980720,31995133:152830 +k1,13458:22171719,31995133:152829 +k1,13458:22940587,31995133:152830 +k1,13458:23449277,31995133:152830 +k1,13458:24991470,31995133:152830 +k1,13458:27194266,31995133:152830 +k1,13458:28503806,31995133:152830 +k1,13458:30023717,31995133:152830 +k1,13458:30859432,31995133:152830 +k1,13458:32583029,31995133:0 +) +(1,13460:6630773,32860213:25952256,513147,126483 +k1,13458:7928931,32860213:241718 +k1,13458:9548217,32860213:241719 +k1,13458:11183886,32860213:241718 +k1,13458:13436250,32860213:241719 +k1,13458:14625619,32860213:241718 +k1,13458:16334034,32860213:241719 +k1,13458:19449506,32860213:241718 +k1,13458:20882669,32860213:241718 +k1,13458:24890087,32860213:241719 +k1,13458:27973446,32860213:241718 +k1,13458:28831203,32860213:241719 +k1,13458:31914562,32860213:241718 +k1,13458:32583029,32860213:0 +) +(1,13460:6630773,33725293:25952256,513147,7863 +k1,13458:9708545,33725293:190911 +k1,13458:11096144,33725293:190912 +k1,13458:13274762,33725293:190911 +k1,13458:16009126,33725293:190912 +k1,13458:16731534,33725293:190911 +k1,13458:18435671,33725293:190911 +k1,13458:19278011,33725293:190912 +k1,13458:22000578,33725293:190911 +k1,13458:24076960,33725293:190911 +k1,13458:27109513,33725293:190912 +k1,13458:27916462,33725293:190911 +k1,13458:29126459,33725293:190912 +k1,13458:30706733,33725293:190911 +k1,13458:32583029,33725293:0 +) +(1,13460:6630773,34590373:25952256,505283,126483 +k1,13458:7800169,34590373:177836 +k1,13458:8629434,34590373:177837 +k1,13458:9555036,34590373:177836 +k1,13458:11246099,34590373:177837 +k1,13458:12615380,34590373:177836 +k1,13458:13409255,34590373:177837 +k1,13458:15472562,34590373:177836 +k1,13458:17059422,34590373:177836 +k1,13458:19093239,34590373:177837 +k1,13459:22144829,34590373:177836 +k1,13459:23005551,34590373:177837 +k1,13459:27122756,34590373:177836 +k1,13459:28492038,34590373:177837 +k1,13459:30367912,34590373:177836 +k1,13460:32583029,34590373:0 +) +(1,13460:6630773,35455453:25952256,505283,134348 +k1,13459:8549727,35455453:262204 +k1,13459:10142311,35455453:262203 +k1,13459:11784703,35455453:262204 +k1,13459:15355819,35455453:262203 +k1,13459:16269451,35455453:262204 +k1,13459:17550739,35455453:262203 +k1,13459:20949496,35455453:262204 +k1,13459:24259123,35455453:262203 +k1,13459:25718014,35455453:262204 +k1,13459:27939743,35455453:262203 +k1,13459:31563944,35455453:262204 +k1,13459:32583029,35455453:0 +) +(1,13460:6630773,36320533:25952256,513147,126483 +k1,13459:9037658,36320533:233711 +k1,13459:10838991,36320533:233712 +k1,13459:12091787,36320533:233711 +k1,13459:13012971,36320533:233711 +k1,13459:13778180,36320533:233712 +k1,13459:16436068,36320533:233711 +k1,13459:17321207,36320533:233711 +k1,13459:19579325,36320533:233711 +k1,13459:22172333,36320533:233712 +k1,13459:23597489,36320533:233711 +k1,13459:25546933,36320533:233711 +k1,13459:29548310,36320533:233712 +k1,13459:30464906,36320533:233711 +k1,13460:32583029,36320533:0 +) +(1,13460:6630773,37185613:25952256,473825,7863 +k1,13460:32583029,37185613:24302060 +g1,13460:32583029,37185613 +) +v1,13462:6630773,38050693:0,393216,0 +(1,13463:6630773,44548899:25952256,6891422,0 +g1,13463:6630773,44548899 +g1,13463:6237557,44548899 +r1,13471:6368629,44548899:131072,6891422,0 +g1,13463:6567858,44548899 +g1,13463:6764466,44548899 +[1,13463:6764466,44548899:25818563,6891422,0 +(1,13463:6764466,38358991:25818563,701514,196608 +(1,13462:6764466,38358991:0,701514,196608 +r1,13471:7761522,38358991:997056,898122,196608 +k1,13462:6764466,38358991:-997056 +) +(1,13462:6764466,38358991:997056,701514,196608 +) +k1,13462:7932058,38358991:170536 +k1,13462:8259738,38358991:327680 +k1,13462:10961274,38358991:170536 +k1,13462:12123371,38358991:170537 +k1,13462:16671057,38358991:170536 +k1,13462:19065885,38358991:170536 +k1,13462:20749647,38358991:170536 +k1,13462:21571612,38358991:170537 +k1,13462:23195737,38358991:170536 +k1,13462:24385358,38358991:170536 +k1,13462:26702853,38358991:170536 +k1,13462:28568151,38358991:170537 +k1,13462:29390115,38358991:170536 +k1,13462:32583029,38358991:0 +) +(1,13463:6764466,39224071:25818563,513147,134348 +k1,13462:9916212,39224071:257676 +k1,13462:11871925,39224071:257675 +k1,13462:14064224,39224071:257676 +k1,13462:14677759,39224071:257675 +k1,13462:16923142,39224071:257676 +k1,13462:17832245,39224071:257675 +k1,13462:22161673,39224071:257676 +k1,13462:23703854,39224071:257675 +k1,13462:24953090,39224071:257676 +k1,13462:26277036,39224071:257675 +k1,13462:28828472,39224071:257676 +k1,13462:32583029,39224071:0 +) +(1,13463:6764466,40089151:25818563,513147,134348 +k1,13462:7490597,40089151:262791 +k1,13462:10492201,40089151:262854 +k1,13462:12122137,40089151:262855 +k1,13462:12916488,40089151:262854 +k1,13462:15113966,40089151:262855 +k1,13462:15732680,40089151:262854 +k1,13462:17983242,40089151:262855 +k1,13462:18897524,40089151:262854 +k1,13462:23232131,40089151:262855 +k1,13462:24779491,40089151:262854 +k1,13462:26033906,40089151:262855 +k1,13462:28365077,40089151:262855 +k1,13462:29287223,40089151:262854 +k1,13462:32583029,40089151:0 +) +(1,13463:6764466,40954231:25818563,513147,126483 +k1,13462:9675139,40954231:148330 +k1,13462:12639550,40954231:148329 +k1,13462:13447172,40954231:148330 +k1,13462:16788416,40954231:148330 +k1,13462:21783788,40954231:148329 +k1,13462:23649161,40954231:148330 +k1,13462:25785198,40954231:148330 +k1,13462:26621000,40954231:148329 +k1,13462:29795127,40954231:148330 +k1,13462:32583029,40954231:0 +) +(1,13463:6764466,41819311:25818563,505283,134348 +k1,13462:8061474,41819311:277923 +k1,13462:10958871,41819311:277923 +k1,13462:12308963,41819311:277923 +k1,13462:13202924,41819311:277923 +k1,13462:15082547,41819311:277923 +k1,13462:17057852,41819311:277923 +k1,13462:18715964,41819311:277924 +k1,13462:19985447,41819311:277923 +k1,13462:23024402,41819311:277923 +k1,13462:23988487,41819311:277923 +k1,13462:25037113,41819311:277923 +k1,13462:28387364,41819311:277923 +k1,13462:29316715,41819311:277923 +k1,13463:32583029,41819311:0 +) +(1,13463:6764466,42684391:25818563,513147,134348 +(1,13462:6764466,42684391:0,452978,122846 +r1,13471:9233003,42684391:2468537,575824,122846 +k1,13462:6764466,42684391:-2468537 +) +(1,13462:6764466,42684391:2468537,452978,122846 +k1,13462:6764466,42684391:3277 +h1,13462:9229726,42684391:0,411205,112570 +) +k1,13462:9596682,42684391:190009 +k1,13462:10546908,42684391:190008 +k1,13462:13176167,42684391:190009 +(1,13462:13176167,42684391:0,452978,122846 +r1,13471:15644704,42684391:2468537,575824,122846 +k1,13462:13176167,42684391:-2468537 +) +(1,13462:13176167,42684391:2468537,452978,122846 +k1,13462:13176167,42684391:3277 +h1,13462:15641427,42684391:0,411205,112570 +) +k1,13462:15834713,42684391:190009 +k1,13462:17499937,42684391:190009 +k1,13462:18045805,42684391:190008 +k1,13462:19916157,42684391:190009 +k1,13462:20773322,42684391:190009 +(1,13462:20773322,42684391:0,435480,115847 +r1,13471:21131588,42684391:358266,551327,115847 +k1,13462:20773322,42684391:-358266 +) +(1,13462:20773322,42684391:358266,435480,115847 +k1,13462:20773322,42684391:3277 +h1,13462:21128311,42684391:0,411205,112570 +) +k1,13462:21321597,42684391:190009 +k1,13462:22703050,42684391:190008 +k1,13462:24309947,42684391:190009 +k1,13462:25315224,42684391:190009 +k1,13462:26571504,42684391:190009 +k1,13462:28540814,42684391:190008 +k1,13462:29749908,42684391:190009 +k1,13462:32583029,42684391:0 +) +(1,13463:6764466,43549471:25818563,513147,134348 +k1,13462:9046934,43549471:294761 +k1,13462:10202837,43549471:294760 +k1,13462:12195636,43549471:294761 +k1,13462:15251428,43549471:294760 +k1,13462:16229074,43549471:294761 +k1,13462:19906148,43549471:294761 +k1,13462:21219993,43549471:294760 +k1,13462:23960558,43549471:294761 +k1,13462:25246879,43549471:294761 +k1,13462:27353054,43549471:294760 +k1,13462:28299243,43549471:294761 +k1,13462:29613088,43549471:294760 +k1,13462:31895556,43549471:294761 +k1,13462:32583029,43549471:0 +) +(1,13463:6764466,44414551:25818563,505283,134348 +k1,13463:32583029,44414551:23806608 +g1,13463:32583029,44414551 +) +] +g1,13463:32583029,44548899 +) +h1,13463:6630773,44548899:0,0,0 +] +(1,13471:32583029,45706769:0,0,0 +g1,13471:32583029,45706769 +) +) +] +(1,13471:6630773,47279633:25952256,0,0 +h1,13471:6630773,47279633:25952256,0,0 +) +] +(1,13471:4262630,4025873:0,0,0 +[1,13471:-473656,4025873:0,0,0 +(1,13471:-473656,-710413:0,0,0 +(1,13471:-473656,-710413:0,0,0 +g1,13471:-473656,-710413 +) +g1,13471:-473656,-710413 ) ] ) ] !31077 -}216 -Input:2275:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2276:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}217 +Input:2278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{217 -[1,13529:4262630,47279633:28320399,43253760,0 -(1,13529:4262630,4025873:0,0,0 -[1,13529:-473656,4025873:0,0,0 -(1,13529:-473656,-710413:0,0,0 -(1,13529:-473656,-644877:0,0,0 -k1,13529:-473656,-644877:-65536 +{218 +[1,13527:4262630,47279633:28320399,43253760,0 +(1,13527:4262630,4025873:0,0,0 +[1,13527:-473656,4025873:0,0,0 +(1,13527:-473656,-710413:0,0,0 +(1,13527:-473656,-644877:0,0,0 +k1,13527:-473656,-644877:-65536 ) -(1,13529:-473656,4736287:0,0,0 -k1,13529:-473656,4736287:5209943 +(1,13527:-473656,4736287:0,0,0 +k1,13527:-473656,4736287:5209943 ) -g1,13529:-473656,-710413 +g1,13527:-473656,-710413 ) ] ) -[1,13529:6630773,47279633:25952256,43253760,0 -[1,13529:6630773,4812305:25952256,786432,0 -(1,13529:6630773,4812305:25952256,513147,126483 -(1,13529:6630773,4812305:25952256,513147,126483 -g1,13529:3078558,4812305 -[1,13529:3078558,4812305:0,0,0 -(1,13529:3078558,2439708:0,1703936,0 -k1,13529:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13529:2537886,2439708:1179648,16384,0 +[1,13527:6630773,47279633:25952256,43253760,0 +[1,13527:6630773,4812305:25952256,786432,0 +(1,13527:6630773,4812305:25952256,513147,126483 +(1,13527:6630773,4812305:25952256,513147,126483 +g1,13527:3078558,4812305 +[1,13527:3078558,4812305:0,0,0 +(1,13527:3078558,2439708:0,1703936,0 +k1,13527:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13527:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13529:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13527:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13529:3078558,4812305:0,0,0 -(1,13529:3078558,2439708:0,1703936,0 -g1,13529:29030814,2439708 -g1,13529:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13529:36151628,1915420:16384,1179648,0 +[1,13527:3078558,4812305:0,0,0 +(1,13527:3078558,2439708:0,1703936,0 +g1,13527:29030814,2439708 +g1,13527:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13527:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13529:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13527:37855564,2439708:1179648,16384,0 ) ) -k1,13529:3078556,2439708:-34777008 +k1,13527:3078556,2439708:-34777008 ) ] -[1,13529:3078558,4812305:0,0,0 -(1,13529:3078558,49800853:0,16384,2228224 -k1,13529:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13529:2537886,49800853:1179648,16384,0 +[1,13527:3078558,4812305:0,0,0 +(1,13527:3078558,49800853:0,16384,2228224 +k1,13527:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13527:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13529:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13527:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13529:3078558,4812305:0,0,0 -(1,13529:3078558,49800853:0,16384,2228224 -g1,13529:29030814,49800853 -g1,13529:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13529:36151628,51504789:16384,1179648,0 +[1,13527:3078558,4812305:0,0,0 +(1,13527:3078558,49800853:0,16384,2228224 +g1,13527:29030814,49800853 +g1,13527:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13527:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13529:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13527:37855564,49800853:1179648,16384,0 ) ) -k1,13529:3078556,49800853:-34777008 +k1,13527:3078556,49800853:-34777008 ) -] -g1,13529:6630773,4812305 -k1,13529:19575446,4812305:11749296 -g1,13529:21198117,4812305 -g1,13529:21985204,4812305 -g1,13529:24539797,4812305 -g1,13529:25949476,4812305 -g1,13529:28728857,4812305 -g1,13529:29852144,4812305 -) -) -] -[1,13529:6630773,45706769:25952256,40108032,0 -(1,13529:6630773,45706769:25952256,40108032,0 -(1,13529:6630773,45706769:0,0,0 -g1,13529:6630773,45706769 -) -[1,13529:6630773,45706769:25952256,40108032,0 -(1,13467:6630773,6254097:25952256,555811,147783 -(1,13467:6630773,6254097:2450326,534184,12975 -g1,13467:6630773,6254097 -g1,13467:9081099,6254097 -) -k1,13467:32583029,6254097:19501678 -g1,13467:32583029,6254097 -) -(1,13473:6630773,7512393:25952256,505283,134348 -k1,13471:8078091,7512393:272258 -(1,13471:8078091,7512393:0,414482,115847 -r1,13529:9491492,7512393:1413401,530329,115847 -k1,13471:8078091,7512393:-1413401 -) -(1,13471:8078091,7512393:1413401,414482,115847 -k1,13471:8078091,7512393:3277 -h1,13471:9488215,7512393:0,411205,112570 -) -k1,13471:9763751,7512393:272259 -k1,13471:11425372,7512393:272258 -k1,13471:12805845,7512393:272259 -k1,13471:16440100,7512393:272258 -k1,13471:17884797,7512393:272258 -(1,13471:17884797,7512393:0,452978,115847 -r1,13529:20353334,7512393:2468537,568825,115847 -k1,13471:17884797,7512393:-2468537 -) -(1,13471:17884797,7512393:2468537,452978,115847 -k1,13471:17884797,7512393:3277 -h1,13471:20350057,7512393:0,411205,112570 -) -k1,13471:20625593,7512393:272259 -k1,13471:23913162,7512393:272258 -k1,13471:24716918,7512393:272259 -k1,13471:26502402,7512393:272258 -k1,13471:27390698,7512393:272258 -k1,13471:28682042,7512393:272259 -k1,13471:32119689,7512393:272258 -k1,13472:32583029,7512393:0 -) -(1,13473:6630773,8377473:25952256,513147,138281 -k1,13472:8975636,8377473:220186 -k1,13472:11008548,8377473:220186 -k1,13472:13216441,8377473:220186 -$1,13472:13216441,8377473 -k1,13472:13988616,8377473:220362 -k1,13472:14777175,8377473:220362 -k1,13472:15446048,8377473:160969 -k1,13472:15875714,8377473:160968 -k1,13472:16435142,8377473:160969 -k1,13472:17164308,8377473:160969 -k1,13472:17769611,8377473:160969 -k1,13472:18199278,8377473:160969 -$1,13472:18701939,8377473 -k1,13472:18922124,8377473:220185 -k1,13472:21061204,8377473:220186 -$1,13472:21061204,8377473 -$1,13472:21613017,8377473 -k1,13472:21833203,8377473:220186 -k1,13472:26017006,8377473:220186 -k1,13472:26888620,8377473:220186 -k1,13472:29922267,8377473:220186 -k1,13472:32583029,8377473:0 -) -(1,13473:6630773,9242553:25952256,513147,126483 -(1,13472:6816895,9242553:0,452978,115847 -r1,13529:8230296,9242553:1413401,568825,115847 -k1,13472:6816895,9242553:-1413401 -) -(1,13472:6816895,9242553:1413401,452978,115847 -k1,13472:6816895,9242553:3277 -h1,13472:8227019,9242553:0,411205,112570 -) -k1,13472:8675604,9242553:238214 -k1,13472:10105263,9242553:238214 -$1,13472:10105263,9242553 -$1,13472:10607924,9242553 -k1,13472:10846138,9242553:238214 -k1,13472:11735780,9242553:238214 -k1,13472:13810313,9242553:238214 -k1,13472:15914993,9242553:238215 -(1,13472:16122087,9242553:0,452978,115847 -r1,13529:17887200,9242553:1765113,568825,115847 -k1,13472:16122087,9242553:-1765113 -) -(1,13472:16122087,9242553:1765113,452978,115847 -k1,13472:16122087,9242553:3277 -h1,13472:17883923,9242553:0,411205,112570 -) -k1,13472:18332508,9242553:238214 -k1,13472:19102219,9242553:238214 -k1,13472:22908868,9242553:238214 -k1,13472:23763120,9242553:238214 -k1,13472:24416138,9242553:238175 -k1,13472:25340514,9242553:238214 -(1,13472:25340514,9242553:0,452978,115847 -r1,13529:30974458,9242553:5633944,568825,115847 -k1,13472:25340514,9242553:-5633944 -) -(1,13472:25340514,9242553:5633944,452978,115847 -g1,13472:27102350,9242553 -g1,13472:27805774,9242553 -g1,13472:28509198,9242553 -g1,13472:29212622,9242553 -h1,13472:30971181,9242553:0,411205,112570 -) -k1,13472:31386342,9242553:238214 -k1,13472:32583029,9242553:0 -) -(1,13473:6630773,10107633:25952256,513147,134348 -g1,13472:8542458,10107633 -g1,13472:10729394,10107633 -g1,13472:12888149,10107633 -g1,13472:13618875,10107633 -g1,13472:16592898,10107633 -g1,13472:17443555,10107633 -g1,13472:20154124,10107633 -(1,13472:20154124,10107633:0,459977,115847 -r1,13529:21215813,10107633:1061689,575824,115847 -k1,13472:20154124,10107633:-1061689 -) -(1,13472:20154124,10107633:1061689,459977,115847 -k1,13472:20154124,10107633:3277 -h1,13472:21212536,10107633:0,411205,112570 -) -g1,13472:21415042,10107633 -g1,13472:22177225,10107633 -g1,13472:25722722,10107633 -g1,13472:26869602,10107633 -g1,13472:30981986,10107633 -k1,13473:32583029,10107633:63568 -g1,13473:32583029,10107633 -) -v1,13475:6630773,10792488:0,393216,0 -(1,13483:6630773,12607529:25952256,2208257,196608 -g1,13483:6630773,12607529 -g1,13483:6630773,12607529 -g1,13483:6434165,12607529 -(1,13483:6434165,12607529:0,2208257,196608 -r1,13529:32779637,12607529:26345472,2404865,196608 -k1,13483:6434165,12607529:-26345472 -) -(1,13483:6434165,12607529:26345472,2208257,196608 -[1,13483:6630773,12607529:25952256,2011649,0 -(1,13477:6630773,11026925:25952256,431045,106246 -(1,13476:6630773,11026925:0,0,0 -g1,13476:6630773,11026925 -g1,13476:6630773,11026925 -g1,13476:6303093,11026925 -(1,13476:6303093,11026925:0,0,0 -) -g1,13476:6630773,11026925 -) -g1,13477:7958589,11026925 -g1,13477:8954451,11026925 -g1,13477:11610083,11026925 -g1,13477:12273991,11026925 -g1,13477:12937899,11026925 -g1,13477:13601807,11026925 -g1,13477:15925485,11026925 -h1,13477:19245025,11026925:0,0,0 -k1,13477:32583029,11026925:13338004 -g1,13477:32583029,11026925 -) -(1,13478:6630773,11711780:25952256,431045,79822 -h1,13478:6630773,11711780:0,0,0 -k1,13478:6630773,11711780:0 -h1,13478:9950313,11711780:0,0,0 -k1,13478:32583029,11711780:22632716 -g1,13478:32583029,11711780 -) -(1,13482:6630773,12527707:25952256,424439,79822 -(1,13480:6630773,12527707:0,0,0 -g1,13480:6630773,12527707 -g1,13480:6630773,12527707 -g1,13480:6303093,12527707 -(1,13480:6303093,12527707:0,0,0 -) -g1,13480:6630773,12527707 -) -g1,13482:7626635,12527707 -g1,13482:8954451,12527707 -h1,13482:10282267,12527707:0,0,0 -k1,13482:32583029,12527707:22300762 -g1,13482:32583029,12527707 -) -] -) -g1,13483:32583029,12607529 -g1,13483:6630773,12607529 -g1,13483:6630773,12607529 -g1,13483:32583029,12607529 -g1,13483:32583029,12607529 -) -h1,13483:6630773,12804137:0,0,0 -(1,13487:6630773,13669217:25952256,513147,134348 -h1,13486:6630773,13669217:983040,0,0 -k1,13486:8950185,13669217:139685 -k1,13486:10473990,13669217:139685 -k1,13486:11968961,13669217:139686 -k1,13486:12640143,13669217:139685 -k1,13486:15803004,13669217:139685 -k1,13486:16601981,13669217:139685 -k1,13486:17760751,13669217:139685 -k1,13486:18761580,13669217:139686 -k1,13486:20024552,13669217:139685 -k1,13486:24234023,13669217:139685 -k1,13486:25033000,13669217:139685 -k1,13486:26191771,13669217:139686 -k1,13486:28144182,13669217:139685 -k1,13486:30271574,13669217:139685 -k1,13487:32583029,13669217:0 -) -(1,13487:6630773,14534297:25952256,513147,134348 -k1,13486:7850031,14534297:168716 -k1,13486:9531973,14534297:168716 -k1,13486:13154436,14534297:168716 -k1,13486:14934027,14534297:168716 -k1,13486:15754171,14534297:168716 -k1,13486:17660902,14534297:168716 -k1,13486:20650288,14534297:168716 -k1,13486:21446839,14534297:168716 -k1,13486:22030368,14534297:168686 -k1,13486:22657181,14534297:168716 -k1,13486:23357394,14534297:168716 -k1,13486:25127810,14534297:168716 -k1,13486:28073942,14534297:168716 -k1,13486:28894086,14534297:168716 -k1,13486:30155287,14534297:168716 -k1,13486:31931601,14534297:168716 -k1,13486:32583029,14534297:0 -) -(1,13487:6630773,15399377:25952256,513147,126483 -k1,13486:8032682,15399377:198668 -k1,13486:9587944,15399377:198667 -k1,13486:10740161,15399377:198668 -k1,13486:12599511,15399377:198668 -k1,13486:14196061,15399377:198667 -k1,13486:15770330,15399377:198668 -k1,13486:17125707,15399377:198667 -k1,13486:17983667,15399377:198668 -k1,13486:19201420,15399377:198668 -k1,13486:21007685,15399377:198667 -k1,13486:24051271,15399377:198668 -k1,13486:27464480,15399377:198668 -k1,13486:29043991,15399377:198667 -k1,13486:31843128,15399377:198668 -k1,13486:32583029,15399377:0 -) -(1,13487:6630773,16264457:25952256,513147,126483 -k1,13486:9404358,16264457:173116 -k1,13486:10854770,16264457:173115 -k1,13486:11559383,16264457:173116 -k1,13486:13245725,16264457:173116 -k1,13486:14070268,16264457:173115 -k1,13486:16267791,16264457:173116 -k1,13486:17771288,16264457:173116 -k1,13486:19727639,16264457:173116 -k1,13486:20919839,16264457:173115 -k1,13486:24874382,16264457:173116 -k1,13486:25706790,16264457:173116 -k1,13486:26898990,16264457:173115 -k1,13486:29966176,16264457:173116 -k1,13486:32583029,16264457:0 -) -(1,13487:6630773,17129537:25952256,513147,7863 -g1,13486:8397623,17129537 -g1,13486:9615937,17129537 -g1,13486:12634525,17129537 -g1,13486:15189773,17129537 -k1,13487:32583029,17129537:13559400 -g1,13487:32583029,17129537 -) -v1,13489:6630773,17814392:0,393216,0 -(1,13493:6630773,18155075:25952256,733899,196608 -g1,13493:6630773,18155075 -g1,13493:6630773,18155075 -g1,13493:6434165,18155075 -(1,13493:6434165,18155075:0,733899,196608 -r1,13529:32779637,18155075:26345472,930507,196608 -k1,13493:6434165,18155075:-26345472 -) -(1,13493:6434165,18155075:26345472,733899,196608 -[1,13493:6630773,18155075:25952256,537291,0 -(1,13491:6630773,18048829:25952256,431045,106246 -(1,13490:6630773,18048829:0,0,0 -g1,13490:6630773,18048829 -g1,13490:6630773,18048829 -g1,13490:6303093,18048829 -(1,13490:6303093,18048829:0,0,0 -) -g1,13490:6630773,18048829 -) -k1,13491:6630773,18048829:0 -g1,13491:9950313,18048829 -g1,13491:11942037,18048829 -g1,13491:12605945,18048829 -h1,13491:13269853,18048829:0,0,0 -k1,13491:32583029,18048829:19313176 -g1,13491:32583029,18048829 -) -] -) -g1,13493:32583029,18155075 -g1,13493:6630773,18155075 -g1,13493:6630773,18155075 -g1,13493:32583029,18155075 -g1,13493:32583029,18155075 -) -h1,13493:6630773,18351683:0,0,0 -(1,13496:6630773,31263323:25952256,12846104,0 -k1,13496:13183781,31263323:6553008 -h1,13495:13183781,31263323:0,0,0 -(1,13495:13183781,31263323:12846240,12846104,0 -(1,13495:13183781,31263323:12846136,12846136,0 -(1,13495:13183781,31263323:12846136,12846136,0 -(1,13495:13183781,31263323:0,12846136,0 -(1,13495:13183781,31263323:0,18945146,0 -(1,13495:13183781,31263323:18945146,18945146,0 -) -k1,13495:13183781,31263323:-18945146 -) -) -g1,13495:26029917,31263323 -) -) -) -g1,13496:26030021,31263323 -k1,13496:32583029,31263323:6553008 -) -(1,13503:6630773,32128403:25952256,513147,134348 -h1,13502:6630773,32128403:983040,0,0 -k1,13502:8505404,32128403:263756 -k1,13502:9788245,32128403:263756 -k1,13502:11419082,32128403:263756 -k1,13502:12342129,32128403:263755 -k1,13502:12961745,32128403:263756 -k1,13502:16715948,32128403:263756 -k1,13502:19069647,32128403:263756 -(1,13502:19069647,32128403:0,452978,115847 -r1,13529:22241607,32128403:3171960,568825,115847 -k1,13502:19069647,32128403:-3171960 -) -(1,13502:19069647,32128403:3171960,452978,115847 -k1,13502:19069647,32128403:3277 -h1,13502:22238330,32128403:0,411205,112570 -) -k1,13502:22505363,32128403:263756 -k1,13502:24163070,32128403:263756 -k1,13502:25445910,32128403:263755 -k1,13502:27422122,32128403:263756 -k1,13502:29673585,32128403:263756 -k1,13502:31896867,32128403:263756 -k1,13502:32583029,32128403:0 -) -(1,13503:6630773,32993483:25952256,513147,134348 -k1,13502:9954759,32993483:251658 -k1,13502:10737914,32993483:251658 -k1,13502:12591273,32993483:251659 -k1,13502:14820152,32993483:251658 -k1,13502:15757972,32993483:251658 -k1,13502:16467727,32993483:251658 -k1,13502:19479762,32993483:251659 -k1,13502:20087280,32993483:251658 -k1,13502:21904593,32993483:251658 -k1,13502:22815543,32993483:251658 -k1,13502:26347934,32993483:251659 -k1,13502:29645705,32993483:251658 -k1,13502:31088808,32993483:251658 -k1,13502:32583029,32993483:0 -) -(1,13503:6630773,33858563:25952256,513147,126483 -k1,13502:8966853,33858563:225165 -k1,13502:12607753,33858563:225164 -k1,13502:14117424,33858563:225165 -k1,13502:15028751,33858563:225165 -k1,13502:15785412,33858563:225164 -k1,13502:17029662,33858563:225165 -k1,13502:18621908,33858563:225165 -k1,13502:19794723,33858563:225164 -k1,13502:21621588,33858563:225165 -k1,13502:22261569,33858563:225138 -k1,13502:25686202,33858563:225165 -k1,13502:26930452,33858563:225165 -k1,13502:28835959,33858563:225164 -k1,13502:31839851,33858563:225165 -k1,13503:32583029,33858563:0 -) -(1,13503:6630773,34723643:25952256,505283,126483 -(1,13502:6630773,34723643:0,452978,115847 -r1,13529:9802733,34723643:3171960,568825,115847 -k1,13502:6630773,34723643:-3171960 -) -(1,13502:6630773,34723643:3171960,452978,115847 -k1,13502:6630773,34723643:3277 -h1,13502:9799456,34723643:0,411205,112570 -) -g1,13502:10001962,34723643 -g1,13502:10732688,34723643 -g1,13502:13282038,34723643 -g1,13502:15179305,34723643 -g1,13502:16246886,34723643 -g1,13502:17545809,34723643 -g1,13502:18948279,34723643 -g1,13502:21601831,34723643 -g1,13502:22413822,34723643 -g1,13502:23632136,34723643 -g1,13502:24246208,34723643 -k1,13503:32583029,34723643:5883153 -g1,13503:32583029,34723643 -) -v1,13505:6630773,35408498:0,393216,0 -(1,13529:6630773,45474829:25952256,10459547,196608 -g1,13529:6630773,45474829 -g1,13529:6630773,45474829 -g1,13529:6434165,45474829 -(1,13529:6434165,45474829:0,10459547,196608 -r1,13529:32779637,45474829:26345472,10656155,196608 -k1,13529:6434165,45474829:-26345472 -) -(1,13529:6434165,45474829:26345472,10459547,196608 -[1,13529:6630773,45474829:25952256,10262939,0 -(1,13507:6630773,35642935:25952256,431045,106246 -(1,13506:6630773,35642935:0,0,0 -g1,13506:6630773,35642935 -g1,13506:6630773,35642935 -g1,13506:6303093,35642935 -(1,13506:6303093,35642935:0,0,0 -) -g1,13506:6630773,35642935 -) -k1,13507:6630773,35642935:0 -h1,13507:10614221,35642935:0,0,0 -k1,13507:32583029,35642935:21968808 -g1,13507:32583029,35642935 -) -(1,13528:6630773,36458862:25952256,398014,0 -(1,13509:6630773,36458862:0,0,0 -g1,13509:6630773,36458862 -g1,13509:6630773,36458862 -g1,13509:6303093,36458862 -(1,13509:6303093,36458862:0,0,0 -) -g1,13509:6630773,36458862 -) -h1,13528:7294681,36458862:0,0,0 -k1,13528:32583029,36458862:25288348 -g1,13528:32583029,36458862 -) -(1,13528:6630773,37143717:25952256,424439,8257 -h1,13528:6630773,37143717:0,0,0 -g1,13528:7626635,37143717 -h1,13528:9286405,37143717:0,0,0 -k1,13528:32583029,37143717:23296624 -g1,13528:32583029,37143717 -) -(1,13528:6630773,37828572:25952256,431045,106246 -h1,13528:6630773,37828572:0,0,0 -g1,13528:7626635,37828572 -g1,13528:11278128,37828572 -g1,13528:11942036,37828572 -g1,13528:13601806,37828572 -g1,13528:14265714,37828572 -g1,13528:14929622,37828572 -g1,13528:15593530,37828572 -g1,13528:17917208,37828572 -g1,13528:19576978,37828572 -g1,13528:20240886,37828572 -h1,13528:21900656,37828572:0,0,0 -k1,13528:32583029,37828572:10682373 -g1,13528:32583029,37828572 -) -(1,13528:6630773,38513427:25952256,398014,0 -h1,13528:6630773,38513427:0,0,0 -h1,13528:7294681,38513427:0,0,0 -k1,13528:32583029,38513427:25288348 -g1,13528:32583029,38513427 -) -(1,13528:6630773,39198282:25952256,424439,6605 -h1,13528:6630773,39198282:0,0,0 -g1,13528:7626635,39198282 -h1,13528:10946174,39198282:0,0,0 -k1,13528:32583030,39198282:21636856 -g1,13528:32583030,39198282 -) -(1,13528:6630773,39883137:25952256,424439,86428 -h1,13528:6630773,39883137:0,0,0 -g1,13528:7626635,39883137 -g1,13528:7958589,39883137 -g1,13528:8290543,39883137 -g1,13528:8622497,39883137 -g1,13528:8954451,39883137 -g1,13528:10282267,39883137 -g1,13528:10614221,39883137 -g1,13528:10946175,39883137 -g1,13528:11278129,39883137 -g1,13528:11610083,39883137 -g1,13528:11942037,39883137 -g1,13528:12937899,39883137 -g1,13528:13269853,39883137 -g1,13528:15593531,39883137 -g1,13528:15925485,39883137 -g1,13528:16257439,39883137 -g1,13528:16589393,39883137 -g1,13528:16921347,39883137 -g1,13528:17253301,39883137 -g1,13528:18249163,39883137 -g1,13528:18581117,39883137 -g1,13528:18913071,39883137 -g1,13528:19245025,39883137 -g1,13528:19576979,39883137 -h1,13528:20572841,39883137:0,0,0 -k1,13528:32583029,39883137:12010188 -g1,13528:32583029,39883137 -) -(1,13528:6630773,40567992:25952256,407923,9908 -h1,13528:6630773,40567992:0,0,0 -g1,13528:7626635,40567992 -g1,13528:10282267,40567992 -g1,13528:10614221,40567992 -g1,13528:12937899,40567992 -g1,13528:13269853,40567992 -g1,13528:15593531,40567992 -g1,13528:15925485,40567992 -g1,13528:16257439,40567992 -g1,13528:18249163,40567992 -g1,13528:18581117,40567992 -h1,13528:20572841,40567992:0,0,0 -k1,13528:32583029,40567992:12010188 -g1,13528:32583029,40567992 -) -(1,13528:6630773,41252847:25952256,398014,0 -h1,13528:6630773,41252847:0,0,0 -h1,13528:7294681,41252847:0,0,0 -k1,13528:32583029,41252847:25288348 -g1,13528:32583029,41252847 -) -(1,13528:6630773,41937702:25952256,431045,8257 -h1,13528:6630773,41937702:0,0,0 -g1,13528:7626635,41937702 -h1,13528:11942036,41937702:0,0,0 -k1,13528:32583028,41937702:20640992 -g1,13528:32583028,41937702 -) -(1,13528:6630773,42622557:25952256,424439,79822 -h1,13528:6630773,42622557:0,0,0 -g1,13528:7626635,42622557 -g1,13528:7958589,42622557 -g1,13528:8290543,42622557 -g1,13528:8622497,42622557 -g1,13528:8954451,42622557 -g1,13528:9286405,42622557 -g1,13528:9618359,42622557 -g1,13528:9950313,42622557 -g1,13528:10282267,42622557 -g1,13528:10614221,42622557 -g1,13528:10946175,42622557 -g1,13528:11278129,42622557 -g1,13528:11610083,42622557 -g1,13528:14597668,42622557 -g1,13528:16257438,42622557 -g1,13528:18249162,42622557 -g1,13528:18913070,42622557 -g1,13528:20904794,42622557 -k1,13528:20904794,42622557:0 -h1,13528:23560426,42622557:0,0,0 -k1,13528:32583029,42622557:9022603 -g1,13528:32583029,42622557 -) -(1,13528:6630773,43307412:25952256,424439,106246 -h1,13528:6630773,43307412:0,0,0 -g1,13528:7626635,43307412 -g1,13528:11610082,43307412 -g1,13528:14597667,43307412 -g1,13528:14929621,43307412 -g1,13528:15261575,43307412 -g1,13528:15593529,43307412 -g1,13528:15925483,43307412 -g1,13528:18249161,43307412 -g1,13528:18581115,43307412 -g1,13528:20904793,43307412 -g1,13528:21236747,43307412 -g1,13528:21568701,43307412 -g1,13528:23892379,43307412 -h1,13528:24224333,43307412:0,0,0 -k1,13528:32583029,43307412:8358696 -g1,13528:32583029,43307412 -) -(1,13528:6630773,43992267:25952256,424439,106246 -h1,13528:6630773,43992267:0,0,0 -g1,13528:7626635,43992267 -g1,13528:9618359,43992267 -g1,13528:9950313,43992267 -g1,13528:10282267,43992267 -g1,13528:10614221,43992267 -g1,13528:10946175,43992267 -g1,13528:11278129,43992267 -g1,13528:11610083,43992267 -g1,13528:11942037,43992267 -g1,13528:12273991,43992267 -g1,13528:14597669,43992267 -g1,13528:14929623,43992267 -g1,13528:15261577,43992267 -g1,13528:15593531,43992267 -g1,13528:15925485,43992267 -g1,13528:18249163,43992267 -g1,13528:18581117,43992267 -g1,13528:18913071,43992267 -g1,13528:20904795,43992267 -g1,13528:23892381,43992267 -h1,13528:24888243,43992267:0,0,0 -k1,13528:32583029,43992267:7694786 -g1,13528:32583029,43992267 -) -(1,13528:6630773,44677122:25952256,398014,0 -h1,13528:6630773,44677122:0,0,0 -g1,13528:7626635,44677122 -k1,13528:7626635,44677122:0 -h1,13528:8622497,44677122:0,0,0 -k1,13528:32583029,44677122:23960532 -g1,13528:32583029,44677122 -) -(1,13528:6630773,45361977:25952256,431045,112852 -h1,13528:6630773,45361977:0,0,0 -g1,13528:7626635,45361977 -g1,13528:10282267,45361977 -g1,13528:12605945,45361977 -g1,13528:12937899,45361977 -g1,13528:13601807,45361977 -g1,13528:15593531,45361977 -g1,13528:17585255,45361977 -g1,13528:19245025,45361977 -g1,13528:20904795,45361977 -g1,13528:22232611,45361977 -g1,13528:23892381,45361977 -g1,13528:25220197,45361977 -g1,13528:26548013,45361977 -g1,13528:27211921,45361977 -g1,13528:27875829,45361977 -h1,13528:28207783,45361977:0,0,0 -k1,13528:32583029,45361977:4375246 -g1,13528:32583029,45361977 -) -] -) -g1,13529:32583029,45474829 -g1,13529:6630773,45474829 -g1,13529:6630773,45474829 -g1,13529:32583029,45474829 -g1,13529:32583029,45474829 -) -] -(1,13529:32583029,45706769:0,0,0 -g1,13529:32583029,45706769 -) -) -] -(1,13529:6630773,47279633:25952256,0,0 -h1,13529:6630773,47279633:25952256,0,0 -) -] -(1,13529:4262630,4025873:0,0,0 -[1,13529:-473656,4025873:0,0,0 -(1,13529:-473656,-710413:0,0,0 -(1,13529:-473656,-710413:0,0,0 -g1,13529:-473656,-710413 -) -g1,13529:-473656,-710413 +] +g1,13527:6630773,4812305 +k1,13527:19575446,4812305:11749296 +g1,13527:21198117,4812305 +g1,13527:21985204,4812305 +g1,13527:24539797,4812305 +g1,13527:25949476,4812305 +g1,13527:28728857,4812305 +g1,13527:29852144,4812305 +) +) +] +[1,13527:6630773,45706769:25952256,40108032,0 +(1,13527:6630773,45706769:25952256,40108032,0 +(1,13527:6630773,45706769:0,0,0 +g1,13527:6630773,45706769 +) +[1,13527:6630773,45706769:25952256,40108032,0 +(1,13465:6630773,6254097:25952256,555811,147783 +(1,13465:6630773,6254097:2450326,534184,12975 +g1,13465:6630773,6254097 +g1,13465:9081099,6254097 +) +k1,13465:32583029,6254097:19501678 +g1,13465:32583029,6254097 +) +(1,13471:6630773,7512393:25952256,505283,134348 +k1,13469:8078091,7512393:272258 +(1,13469:8078091,7512393:0,414482,115847 +r1,13527:9491492,7512393:1413401,530329,115847 +k1,13469:8078091,7512393:-1413401 +) +(1,13469:8078091,7512393:1413401,414482,115847 +k1,13469:8078091,7512393:3277 +h1,13469:9488215,7512393:0,411205,112570 +) +k1,13469:9763751,7512393:272259 +k1,13469:11425372,7512393:272258 +k1,13469:12805845,7512393:272259 +k1,13469:16440100,7512393:272258 +k1,13469:17884797,7512393:272258 +(1,13469:17884797,7512393:0,452978,115847 +r1,13527:20353334,7512393:2468537,568825,115847 +k1,13469:17884797,7512393:-2468537 +) +(1,13469:17884797,7512393:2468537,452978,115847 +k1,13469:17884797,7512393:3277 +h1,13469:20350057,7512393:0,411205,112570 +) +k1,13469:20625593,7512393:272259 +k1,13469:23913162,7512393:272258 +k1,13469:24716918,7512393:272259 +k1,13469:26502402,7512393:272258 +k1,13469:27390698,7512393:272258 +k1,13469:28682042,7512393:272259 +k1,13469:32119689,7512393:272258 +k1,13470:32583029,7512393:0 +) +(1,13471:6630773,8377473:25952256,513147,138281 +k1,13470:8975636,8377473:220186 +k1,13470:11008548,8377473:220186 +k1,13470:13216441,8377473:220186 +$1,13470:13216441,8377473 +k1,13470:13988616,8377473:220362 +k1,13470:14777175,8377473:220362 +k1,13470:15446048,8377473:160969 +k1,13470:15875714,8377473:160968 +k1,13470:16435142,8377473:160969 +k1,13470:17164308,8377473:160969 +k1,13470:17769611,8377473:160969 +k1,13470:18199278,8377473:160969 +$1,13470:18701939,8377473 +k1,13470:18922124,8377473:220185 +k1,13470:21061204,8377473:220186 +$1,13470:21061204,8377473 +$1,13470:21613017,8377473 +k1,13470:21833203,8377473:220186 +k1,13470:26017006,8377473:220186 +k1,13470:26888620,8377473:220186 +k1,13470:29922267,8377473:220186 +k1,13470:32583029,8377473:0 +) +(1,13471:6630773,9242553:25952256,513147,126483 +(1,13470:6816895,9242553:0,452978,115847 +r1,13527:8230296,9242553:1413401,568825,115847 +k1,13470:6816895,9242553:-1413401 +) +(1,13470:6816895,9242553:1413401,452978,115847 +k1,13470:6816895,9242553:3277 +h1,13470:8227019,9242553:0,411205,112570 +) +k1,13470:8675604,9242553:238214 +k1,13470:10105263,9242553:238214 +$1,13470:10105263,9242553 +$1,13470:10607924,9242553 +k1,13470:10846138,9242553:238214 +k1,13470:11735780,9242553:238214 +k1,13470:13810313,9242553:238214 +k1,13470:15914993,9242553:238215 +(1,13470:16122087,9242553:0,452978,115847 +r1,13527:17887200,9242553:1765113,568825,115847 +k1,13470:16122087,9242553:-1765113 +) +(1,13470:16122087,9242553:1765113,452978,115847 +k1,13470:16122087,9242553:3277 +h1,13470:17883923,9242553:0,411205,112570 +) +k1,13470:18332508,9242553:238214 +k1,13470:19102219,9242553:238214 +k1,13470:22908868,9242553:238214 +k1,13470:23763120,9242553:238214 +k1,13470:24416138,9242553:238175 +k1,13470:25340514,9242553:238214 +(1,13470:25340514,9242553:0,452978,115847 +r1,13527:30974458,9242553:5633944,568825,115847 +k1,13470:25340514,9242553:-5633944 +) +(1,13470:25340514,9242553:5633944,452978,115847 +g1,13470:27102350,9242553 +g1,13470:27805774,9242553 +g1,13470:28509198,9242553 +g1,13470:29212622,9242553 +h1,13470:30971181,9242553:0,411205,112570 +) +k1,13470:31386342,9242553:238214 +k1,13470:32583029,9242553:0 +) +(1,13471:6630773,10107633:25952256,513147,134348 +g1,13470:8542458,10107633 +g1,13470:10729394,10107633 +g1,13470:12888149,10107633 +g1,13470:13618875,10107633 +g1,13470:16592898,10107633 +g1,13470:17443555,10107633 +g1,13470:20154124,10107633 +(1,13470:20154124,10107633:0,459977,115847 +r1,13527:21215813,10107633:1061689,575824,115847 +k1,13470:20154124,10107633:-1061689 +) +(1,13470:20154124,10107633:1061689,459977,115847 +k1,13470:20154124,10107633:3277 +h1,13470:21212536,10107633:0,411205,112570 +) +g1,13470:21415042,10107633 +g1,13470:22177225,10107633 +g1,13470:25722722,10107633 +g1,13470:26869602,10107633 +g1,13470:30981986,10107633 +k1,13471:32583029,10107633:63568 +g1,13471:32583029,10107633 +) +v1,13473:6630773,10792488:0,393216,0 +(1,13481:6630773,12607529:25952256,2208257,196608 +g1,13481:6630773,12607529 +g1,13481:6630773,12607529 +g1,13481:6434165,12607529 +(1,13481:6434165,12607529:0,2208257,196608 +r1,13527:32779637,12607529:26345472,2404865,196608 +k1,13481:6434165,12607529:-26345472 +) +(1,13481:6434165,12607529:26345472,2208257,196608 +[1,13481:6630773,12607529:25952256,2011649,0 +(1,13475:6630773,11026925:25952256,431045,106246 +(1,13474:6630773,11026925:0,0,0 +g1,13474:6630773,11026925 +g1,13474:6630773,11026925 +g1,13474:6303093,11026925 +(1,13474:6303093,11026925:0,0,0 +) +g1,13474:6630773,11026925 +) +g1,13475:7958589,11026925 +g1,13475:8954451,11026925 +g1,13475:11610083,11026925 +g1,13475:12273991,11026925 +g1,13475:12937899,11026925 +g1,13475:13601807,11026925 +g1,13475:15925485,11026925 +h1,13475:19245025,11026925:0,0,0 +k1,13475:32583029,11026925:13338004 +g1,13475:32583029,11026925 +) +(1,13476:6630773,11711780:25952256,431045,79822 +h1,13476:6630773,11711780:0,0,0 +k1,13476:6630773,11711780:0 +h1,13476:9950313,11711780:0,0,0 +k1,13476:32583029,11711780:22632716 +g1,13476:32583029,11711780 +) +(1,13480:6630773,12527707:25952256,424439,79822 +(1,13478:6630773,12527707:0,0,0 +g1,13478:6630773,12527707 +g1,13478:6630773,12527707 +g1,13478:6303093,12527707 +(1,13478:6303093,12527707:0,0,0 +) +g1,13478:6630773,12527707 +) +g1,13480:7626635,12527707 +g1,13480:8954451,12527707 +h1,13480:10282267,12527707:0,0,0 +k1,13480:32583029,12527707:22300762 +g1,13480:32583029,12527707 +) +] +) +g1,13481:32583029,12607529 +g1,13481:6630773,12607529 +g1,13481:6630773,12607529 +g1,13481:32583029,12607529 +g1,13481:32583029,12607529 +) +h1,13481:6630773,12804137:0,0,0 +(1,13485:6630773,13669217:25952256,513147,134348 +h1,13484:6630773,13669217:983040,0,0 +k1,13484:8950185,13669217:139685 +k1,13484:10473990,13669217:139685 +k1,13484:11968961,13669217:139686 +k1,13484:12640143,13669217:139685 +k1,13484:15803004,13669217:139685 +k1,13484:16601981,13669217:139685 +k1,13484:17760751,13669217:139685 +k1,13484:18761580,13669217:139686 +k1,13484:20024552,13669217:139685 +k1,13484:24234023,13669217:139685 +k1,13484:25033000,13669217:139685 +k1,13484:26191771,13669217:139686 +k1,13484:28144182,13669217:139685 +k1,13484:30271574,13669217:139685 +k1,13485:32583029,13669217:0 +) +(1,13485:6630773,14534297:25952256,513147,134348 +k1,13484:7850031,14534297:168716 +k1,13484:9531973,14534297:168716 +k1,13484:13154436,14534297:168716 +k1,13484:14934027,14534297:168716 +k1,13484:15754171,14534297:168716 +k1,13484:17660902,14534297:168716 +k1,13484:20650288,14534297:168716 +k1,13484:21446839,14534297:168716 +k1,13484:22030368,14534297:168686 +k1,13484:22657181,14534297:168716 +k1,13484:23357394,14534297:168716 +k1,13484:25127810,14534297:168716 +k1,13484:28073942,14534297:168716 +k1,13484:28894086,14534297:168716 +k1,13484:30155287,14534297:168716 +k1,13484:31931601,14534297:168716 +k1,13484:32583029,14534297:0 +) +(1,13485:6630773,15399377:25952256,513147,126483 +k1,13484:8032682,15399377:198668 +k1,13484:9587944,15399377:198667 +k1,13484:10740161,15399377:198668 +k1,13484:12599511,15399377:198668 +k1,13484:14196061,15399377:198667 +k1,13484:15770330,15399377:198668 +k1,13484:17125707,15399377:198667 +k1,13484:17983667,15399377:198668 +k1,13484:19201420,15399377:198668 +k1,13484:21007685,15399377:198667 +k1,13484:24051271,15399377:198668 +k1,13484:27464480,15399377:198668 +k1,13484:29043991,15399377:198667 +k1,13484:31843128,15399377:198668 +k1,13484:32583029,15399377:0 +) +(1,13485:6630773,16264457:25952256,513147,126483 +k1,13484:9404358,16264457:173116 +k1,13484:10854770,16264457:173115 +k1,13484:11559383,16264457:173116 +k1,13484:13245725,16264457:173116 +k1,13484:14070268,16264457:173115 +k1,13484:16267791,16264457:173116 +k1,13484:17771288,16264457:173116 +k1,13484:19727639,16264457:173116 +k1,13484:20919839,16264457:173115 +k1,13484:24874382,16264457:173116 +k1,13484:25706790,16264457:173116 +k1,13484:26898990,16264457:173115 +k1,13484:29966176,16264457:173116 +k1,13484:32583029,16264457:0 +) +(1,13485:6630773,17129537:25952256,513147,7863 +g1,13484:8397623,17129537 +g1,13484:9615937,17129537 +g1,13484:12634525,17129537 +g1,13484:15189773,17129537 +k1,13485:32583029,17129537:13559400 +g1,13485:32583029,17129537 +) +v1,13487:6630773,17814392:0,393216,0 +(1,13491:6630773,18155075:25952256,733899,196608 +g1,13491:6630773,18155075 +g1,13491:6630773,18155075 +g1,13491:6434165,18155075 +(1,13491:6434165,18155075:0,733899,196608 +r1,13527:32779637,18155075:26345472,930507,196608 +k1,13491:6434165,18155075:-26345472 +) +(1,13491:6434165,18155075:26345472,733899,196608 +[1,13491:6630773,18155075:25952256,537291,0 +(1,13489:6630773,18048829:25952256,431045,106246 +(1,13488:6630773,18048829:0,0,0 +g1,13488:6630773,18048829 +g1,13488:6630773,18048829 +g1,13488:6303093,18048829 +(1,13488:6303093,18048829:0,0,0 +) +g1,13488:6630773,18048829 +) +k1,13489:6630773,18048829:0 +g1,13489:9950313,18048829 +g1,13489:11942037,18048829 +g1,13489:12605945,18048829 +h1,13489:13269853,18048829:0,0,0 +k1,13489:32583029,18048829:19313176 +g1,13489:32583029,18048829 +) +] +) +g1,13491:32583029,18155075 +g1,13491:6630773,18155075 +g1,13491:6630773,18155075 +g1,13491:32583029,18155075 +g1,13491:32583029,18155075 +) +h1,13491:6630773,18351683:0,0,0 +(1,13494:6630773,31263323:25952256,12846104,0 +k1,13494:13183781,31263323:6553008 +h1,13493:13183781,31263323:0,0,0 +(1,13493:13183781,31263323:12846240,12846104,0 +(1,13493:13183781,31263323:12846136,12846136,0 +(1,13493:13183781,31263323:12846136,12846136,0 +(1,13493:13183781,31263323:0,12846136,0 +(1,13493:13183781,31263323:0,18945146,0 +(1,13493:13183781,31263323:18945146,18945146,0 +) +k1,13493:13183781,31263323:-18945146 +) +) +g1,13493:26029917,31263323 +) +) +) +g1,13494:26030021,31263323 +k1,13494:32583029,31263323:6553008 +) +(1,13501:6630773,32128403:25952256,513147,134348 +h1,13500:6630773,32128403:983040,0,0 +k1,13500:8505404,32128403:263756 +k1,13500:9788245,32128403:263756 +k1,13500:11419082,32128403:263756 +k1,13500:12342129,32128403:263755 +k1,13500:12961745,32128403:263756 +k1,13500:16715948,32128403:263756 +k1,13500:19069647,32128403:263756 +(1,13500:19069647,32128403:0,452978,115847 +r1,13527:22241607,32128403:3171960,568825,115847 +k1,13500:19069647,32128403:-3171960 +) +(1,13500:19069647,32128403:3171960,452978,115847 +k1,13500:19069647,32128403:3277 +h1,13500:22238330,32128403:0,411205,112570 +) +k1,13500:22505363,32128403:263756 +k1,13500:24163070,32128403:263756 +k1,13500:25445910,32128403:263755 +k1,13500:27422122,32128403:263756 +k1,13500:29673585,32128403:263756 +k1,13500:31896867,32128403:263756 +k1,13500:32583029,32128403:0 +) +(1,13501:6630773,32993483:25952256,513147,134348 +k1,13500:9954759,32993483:251658 +k1,13500:10737914,32993483:251658 +k1,13500:12591273,32993483:251659 +k1,13500:14820152,32993483:251658 +k1,13500:15757972,32993483:251658 +k1,13500:16467727,32993483:251658 +k1,13500:19479762,32993483:251659 +k1,13500:20087280,32993483:251658 +k1,13500:21904593,32993483:251658 +k1,13500:22815543,32993483:251658 +k1,13500:26347934,32993483:251659 +k1,13500:29645705,32993483:251658 +k1,13500:31088808,32993483:251658 +k1,13500:32583029,32993483:0 +) +(1,13501:6630773,33858563:25952256,513147,126483 +k1,13500:8966853,33858563:225165 +k1,13500:12607753,33858563:225164 +k1,13500:14117424,33858563:225165 +k1,13500:15028751,33858563:225165 +k1,13500:15785412,33858563:225164 +k1,13500:17029662,33858563:225165 +k1,13500:18621908,33858563:225165 +k1,13500:19794723,33858563:225164 +k1,13500:21621588,33858563:225165 +k1,13500:22261569,33858563:225138 +k1,13500:25686202,33858563:225165 +k1,13500:26930452,33858563:225165 +k1,13500:28835959,33858563:225164 +k1,13500:31839851,33858563:225165 +k1,13501:32583029,33858563:0 +) +(1,13501:6630773,34723643:25952256,505283,126483 +(1,13500:6630773,34723643:0,452978,115847 +r1,13527:9802733,34723643:3171960,568825,115847 +k1,13500:6630773,34723643:-3171960 +) +(1,13500:6630773,34723643:3171960,452978,115847 +k1,13500:6630773,34723643:3277 +h1,13500:9799456,34723643:0,411205,112570 +) +g1,13500:10001962,34723643 +g1,13500:10732688,34723643 +g1,13500:13282038,34723643 +g1,13500:15179305,34723643 +g1,13500:16246886,34723643 +g1,13500:17545809,34723643 +g1,13500:18948279,34723643 +g1,13500:21601831,34723643 +g1,13500:22413822,34723643 +g1,13500:23632136,34723643 +g1,13500:24246208,34723643 +k1,13501:32583029,34723643:5883153 +g1,13501:32583029,34723643 +) +v1,13503:6630773,35408498:0,393216,0 +(1,13527:6630773,45474829:25952256,10459547,196608 +g1,13527:6630773,45474829 +g1,13527:6630773,45474829 +g1,13527:6434165,45474829 +(1,13527:6434165,45474829:0,10459547,196608 +r1,13527:32779637,45474829:26345472,10656155,196608 +k1,13527:6434165,45474829:-26345472 +) +(1,13527:6434165,45474829:26345472,10459547,196608 +[1,13527:6630773,45474829:25952256,10262939,0 +(1,13505:6630773,35642935:25952256,431045,106246 +(1,13504:6630773,35642935:0,0,0 +g1,13504:6630773,35642935 +g1,13504:6630773,35642935 +g1,13504:6303093,35642935 +(1,13504:6303093,35642935:0,0,0 +) +g1,13504:6630773,35642935 +) +k1,13505:6630773,35642935:0 +h1,13505:10614221,35642935:0,0,0 +k1,13505:32583029,35642935:21968808 +g1,13505:32583029,35642935 +) +(1,13526:6630773,36458862:25952256,398014,0 +(1,13507:6630773,36458862:0,0,0 +g1,13507:6630773,36458862 +g1,13507:6630773,36458862 +g1,13507:6303093,36458862 +(1,13507:6303093,36458862:0,0,0 +) +g1,13507:6630773,36458862 +) +h1,13526:7294681,36458862:0,0,0 +k1,13526:32583029,36458862:25288348 +g1,13526:32583029,36458862 +) +(1,13526:6630773,37143717:25952256,424439,8257 +h1,13526:6630773,37143717:0,0,0 +g1,13526:7626635,37143717 +h1,13526:9286405,37143717:0,0,0 +k1,13526:32583029,37143717:23296624 +g1,13526:32583029,37143717 +) +(1,13526:6630773,37828572:25952256,431045,106246 +h1,13526:6630773,37828572:0,0,0 +g1,13526:7626635,37828572 +g1,13526:11278128,37828572 +g1,13526:11942036,37828572 +g1,13526:13601806,37828572 +g1,13526:14265714,37828572 +g1,13526:14929622,37828572 +g1,13526:15593530,37828572 +g1,13526:17917208,37828572 +g1,13526:19576978,37828572 +g1,13526:20240886,37828572 +h1,13526:21900656,37828572:0,0,0 +k1,13526:32583029,37828572:10682373 +g1,13526:32583029,37828572 +) +(1,13526:6630773,38513427:25952256,398014,0 +h1,13526:6630773,38513427:0,0,0 +h1,13526:7294681,38513427:0,0,0 +k1,13526:32583029,38513427:25288348 +g1,13526:32583029,38513427 +) +(1,13526:6630773,39198282:25952256,424439,6605 +h1,13526:6630773,39198282:0,0,0 +g1,13526:7626635,39198282 +h1,13526:10946174,39198282:0,0,0 +k1,13526:32583030,39198282:21636856 +g1,13526:32583030,39198282 +) +(1,13526:6630773,39883137:25952256,424439,86428 +h1,13526:6630773,39883137:0,0,0 +g1,13526:7626635,39883137 +g1,13526:7958589,39883137 +g1,13526:8290543,39883137 +g1,13526:8622497,39883137 +g1,13526:8954451,39883137 +g1,13526:10282267,39883137 +g1,13526:10614221,39883137 +g1,13526:10946175,39883137 +g1,13526:11278129,39883137 +g1,13526:11610083,39883137 +g1,13526:11942037,39883137 +g1,13526:12937899,39883137 +g1,13526:13269853,39883137 +g1,13526:15593531,39883137 +g1,13526:15925485,39883137 +g1,13526:16257439,39883137 +g1,13526:16589393,39883137 +g1,13526:16921347,39883137 +g1,13526:17253301,39883137 +g1,13526:18249163,39883137 +g1,13526:18581117,39883137 +g1,13526:18913071,39883137 +g1,13526:19245025,39883137 +g1,13526:19576979,39883137 +h1,13526:20572841,39883137:0,0,0 +k1,13526:32583029,39883137:12010188 +g1,13526:32583029,39883137 +) +(1,13526:6630773,40567992:25952256,407923,9908 +h1,13526:6630773,40567992:0,0,0 +g1,13526:7626635,40567992 +g1,13526:10282267,40567992 +g1,13526:10614221,40567992 +g1,13526:12937899,40567992 +g1,13526:13269853,40567992 +g1,13526:15593531,40567992 +g1,13526:15925485,40567992 +g1,13526:16257439,40567992 +g1,13526:18249163,40567992 +g1,13526:18581117,40567992 +h1,13526:20572841,40567992:0,0,0 +k1,13526:32583029,40567992:12010188 +g1,13526:32583029,40567992 +) +(1,13526:6630773,41252847:25952256,398014,0 +h1,13526:6630773,41252847:0,0,0 +h1,13526:7294681,41252847:0,0,0 +k1,13526:32583029,41252847:25288348 +g1,13526:32583029,41252847 +) +(1,13526:6630773,41937702:25952256,431045,8257 +h1,13526:6630773,41937702:0,0,0 +g1,13526:7626635,41937702 +h1,13526:11942036,41937702:0,0,0 +k1,13526:32583028,41937702:20640992 +g1,13526:32583028,41937702 +) +(1,13526:6630773,42622557:25952256,424439,79822 +h1,13526:6630773,42622557:0,0,0 +g1,13526:7626635,42622557 +g1,13526:7958589,42622557 +g1,13526:8290543,42622557 +g1,13526:8622497,42622557 +g1,13526:8954451,42622557 +g1,13526:9286405,42622557 +g1,13526:9618359,42622557 +g1,13526:9950313,42622557 +g1,13526:10282267,42622557 +g1,13526:10614221,42622557 +g1,13526:10946175,42622557 +g1,13526:11278129,42622557 +g1,13526:11610083,42622557 +g1,13526:14597668,42622557 +g1,13526:16257438,42622557 +g1,13526:18249162,42622557 +g1,13526:18913070,42622557 +g1,13526:20904794,42622557 +k1,13526:20904794,42622557:0 +h1,13526:23560426,42622557:0,0,0 +k1,13526:32583029,42622557:9022603 +g1,13526:32583029,42622557 +) +(1,13526:6630773,43307412:25952256,424439,106246 +h1,13526:6630773,43307412:0,0,0 +g1,13526:7626635,43307412 +g1,13526:11610082,43307412 +g1,13526:14597667,43307412 +g1,13526:14929621,43307412 +g1,13526:15261575,43307412 +g1,13526:15593529,43307412 +g1,13526:15925483,43307412 +g1,13526:18249161,43307412 +g1,13526:18581115,43307412 +g1,13526:20904793,43307412 +g1,13526:21236747,43307412 +g1,13526:21568701,43307412 +g1,13526:23892379,43307412 +h1,13526:24224333,43307412:0,0,0 +k1,13526:32583029,43307412:8358696 +g1,13526:32583029,43307412 +) +(1,13526:6630773,43992267:25952256,424439,106246 +h1,13526:6630773,43992267:0,0,0 +g1,13526:7626635,43992267 +g1,13526:9618359,43992267 +g1,13526:9950313,43992267 +g1,13526:10282267,43992267 +g1,13526:10614221,43992267 +g1,13526:10946175,43992267 +g1,13526:11278129,43992267 +g1,13526:11610083,43992267 +g1,13526:11942037,43992267 +g1,13526:12273991,43992267 +g1,13526:14597669,43992267 +g1,13526:14929623,43992267 +g1,13526:15261577,43992267 +g1,13526:15593531,43992267 +g1,13526:15925485,43992267 +g1,13526:18249163,43992267 +g1,13526:18581117,43992267 +g1,13526:18913071,43992267 +g1,13526:20904795,43992267 +g1,13526:23892381,43992267 +h1,13526:24888243,43992267:0,0,0 +k1,13526:32583029,43992267:7694786 +g1,13526:32583029,43992267 +) +(1,13526:6630773,44677122:25952256,398014,0 +h1,13526:6630773,44677122:0,0,0 +g1,13526:7626635,44677122 +k1,13526:7626635,44677122:0 +h1,13526:8622497,44677122:0,0,0 +k1,13526:32583029,44677122:23960532 +g1,13526:32583029,44677122 +) +(1,13526:6630773,45361977:25952256,431045,112852 +h1,13526:6630773,45361977:0,0,0 +g1,13526:7626635,45361977 +g1,13526:10282267,45361977 +g1,13526:12605945,45361977 +g1,13526:12937899,45361977 +g1,13526:13601807,45361977 +g1,13526:15593531,45361977 +g1,13526:17585255,45361977 +g1,13526:19245025,45361977 +g1,13526:20904795,45361977 +g1,13526:22232611,45361977 +g1,13526:23892381,45361977 +g1,13526:25220197,45361977 +g1,13526:26548013,45361977 +g1,13526:27211921,45361977 +g1,13526:27875829,45361977 +h1,13526:28207783,45361977:0,0,0 +k1,13526:32583029,45361977:4375246 +g1,13526:32583029,45361977 +) +] +) +g1,13527:32583029,45474829 +g1,13527:6630773,45474829 +g1,13527:6630773,45474829 +g1,13527:32583029,45474829 +g1,13527:32583029,45474829 +) +] +(1,13527:32583029,45706769:0,0,0 +g1,13527:32583029,45706769 +) +) +] +(1,13527:6630773,47279633:25952256,0,0 +h1,13527:6630773,47279633:25952256,0,0 +) +] +(1,13527:4262630,4025873:0,0,0 +[1,13527:-473656,4025873:0,0,0 +(1,13527:-473656,-710413:0,0,0 +(1,13527:-473656,-710413:0,0,0 +g1,13527:-473656,-710413 +) +g1,13527:-473656,-710413 ) ] ) ] !22426 -}217 -Input:2277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}218 Input:2280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2282:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -240273,2151 +240472,2151 @@ Input:2288:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2289:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2290:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2291:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1392 -{218 -[1,13632:4262630,47279633:28320399,43253760,0 -(1,13632:4262630,4025873:0,0,0 -[1,13632:-473656,4025873:0,0,0 -(1,13632:-473656,-710413:0,0,0 -(1,13632:-473656,-644877:0,0,0 -k1,13632:-473656,-644877:-65536 -) -(1,13632:-473656,4736287:0,0,0 -k1,13632:-473656,4736287:5209943 -) -g1,13632:-473656,-710413 -) -] -) -[1,13632:6630773,47279633:25952256,43253760,0 -[1,13632:6630773,4812305:25952256,786432,0 -(1,13632:6630773,4812305:25952256,505283,134348 -(1,13632:6630773,4812305:25952256,505283,134348 -g1,13632:3078558,4812305 -[1,13632:3078558,4812305:0,0,0 -(1,13632:3078558,2439708:0,1703936,0 -k1,13632:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13632:2537886,2439708:1179648,16384,0 -) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13632:3078558,1915420:16384,1179648,0 -) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 -) -] -) -) -) -] -[1,13632:3078558,4812305:0,0,0 -(1,13632:3078558,2439708:0,1703936,0 -g1,13632:29030814,2439708 -g1,13632:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13632:36151628,1915420:16384,1179648,0 -) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 -) -] -) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13632:37855564,2439708:1179648,16384,0 -) -) -k1,13632:3078556,2439708:-34777008 -) -] -[1,13632:3078558,4812305:0,0,0 -(1,13632:3078558,49800853:0,16384,2228224 -k1,13632:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13632:2537886,49800853:1179648,16384,0 -) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13632:3078558,51504789:16384,1179648,0 -) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,13632:3078558,4812305:0,0,0 -(1,13632:3078558,49800853:0,16384,2228224 -g1,13632:29030814,49800853 -g1,13632:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13632:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13632:37855564,49800853:1179648,16384,0 -) -) -k1,13632:3078556,49800853:-34777008 -) -] -g1,13632:6630773,4812305 -g1,13632:6630773,4812305 -g1,13632:8843268,4812305 -g1,13632:11066249,4812305 -g1,13632:13415059,4812305 -k1,13632:31387651,4812305:17972592 -) -) -] -[1,13632:6630773,45706769:25952256,40108032,0 -(1,13632:6630773,45706769:25952256,40108032,0 -(1,13632:6630773,45706769:0,0,0 -g1,13632:6630773,45706769 -) -[1,13632:6630773,45706769:25952256,40108032,0 -v1,13529:6630773,6254097:0,393216,0 -(1,13529:6630773,8616314:25952256,2755433,196608 -g1,13529:6630773,8616314 -g1,13529:6630773,8616314 -g1,13529:6434165,8616314 -(1,13529:6434165,8616314:0,2755433,196608 -r1,13632:32779637,8616314:26345472,2952041,196608 -k1,13529:6434165,8616314:-26345472 -) -(1,13529:6434165,8616314:26345472,2755433,196608 -[1,13529:6630773,8616314:25952256,2558825,0 -(1,13528:6630773,6455503:25952256,398014,0 -h1,13528:6630773,6455503:0,0,0 -h1,13528:7294681,6455503:0,0,0 -k1,13528:32583029,6455503:25288348 -g1,13528:32583029,6455503 -) -(1,13528:6630773,7140358:25952256,431045,112852 -h1,13528:6630773,7140358:0,0,0 -g1,13528:7626635,7140358 -g1,13528:10614220,7140358 -g1,13528:13601805,7140358 -g1,13528:15925483,7140358 -g1,13528:17917207,7140358 -g1,13528:18913069,7140358 -g1,13528:19908931,7140358 -g1,13528:22564563,7140358 -g1,13528:23560425,7140358 -h1,13528:25884103,7140358:0,0,0 -k1,13528:32583029,7140358:6698926 -g1,13528:32583029,7140358 -) -(1,13528:6630773,7825213:25952256,424439,112852 -h1,13528:6630773,7825213:0,0,0 -g1,13528:7626635,7825213 -g1,13528:10614220,7825213 -g1,13528:14265713,7825213 -g1,13528:14597667,7825213 -g1,13528:17253299,7825213 -g1,13528:20240884,7825213 -g1,13528:23892377,7825213 -g1,13528:24224331,7825213 -h1,13528:26216055,7825213:0,0,0 -k1,13528:32583029,7825213:6366974 -g1,13528:32583029,7825213 -) -(1,13528:6630773,8510068:25952256,424439,106246 -h1,13528:6630773,8510068:0,0,0 -g1,13528:7626635,8510068 -g1,13528:11942036,8510068 -g1,13528:13933760,8510068 -g1,13528:14929622,8510068 -g1,13528:15593530,8510068 -g1,13528:16921346,8510068 -g1,13528:17917208,8510068 -g1,13528:19245024,8510068 -g1,13528:19576978,8510068 -g1,13528:22564564,8510068 -k1,13528:22564564,8510068:0 -h1,13528:25220196,8510068:0,0,0 -k1,13528:32583029,8510068:7362833 -g1,13528:32583029,8510068 -) -] -) -g1,13529:32583029,8616314 -g1,13529:6630773,8616314 -g1,13529:6630773,8616314 -g1,13529:32583029,8616314 -g1,13529:32583029,8616314 -) -h1,13529:6630773,8812922:0,0,0 -(1,13533:6630773,9678002:25952256,505283,134348 -h1,13532:6630773,9678002:983040,0,0 -k1,13532:9050708,9678002:240208 -k1,13532:12281324,9678002:240208 -k1,13532:13053029,9678002:240208 -k1,13532:16420615,9678002:240208 -k1,13532:17276861,9678002:240208 -k1,13532:20299728,9678002:240208 -k1,13532:22535507,9678002:240208 -k1,13532:24766699,9678002:240208 -(1,13532:24766699,9678002:0,452978,115847 -r1,13632:30400643,9678002:5633944,568825,115847 -k1,13532:24766699,9678002:-5633944 -) -(1,13532:24766699,9678002:5633944,452978,115847 -g1,13532:26528535,9678002 -g1,13532:27231959,9678002 -g1,13532:27935383,9678002 -g1,13532:28638807,9678002 -h1,13532:30397366,9678002:0,411205,112570 -) -k1,13532:30640851,9678002:240208 -k1,13532:31563944,9678002:240208 -k1,13532:32583029,9678002:0 -) -(1,13533:6630773,10543082:25952256,513147,126483 -k1,13532:10870188,10543082:218781 -k1,13532:11748261,10543082:218781 -k1,13532:12986127,10543082:218781 -k1,13532:15192615,10543082:218781 -k1,13532:17297522,10543082:218781 -k1,13532:18887316,10543082:218781 -k1,13532:20125182,10543082:218781 -k1,13532:21733326,10543082:218781 -k1,13532:23639004,10543082:218781 -k1,13532:27682466,10543082:218781 -k1,13532:30526619,10543082:218781 -k1,13532:31764485,10543082:218781 -k1,13533:32583029,10543082:0 -) -(1,13533:6630773,11408162:25952256,513147,126483 -k1,13532:9176323,11408162:181666 -k1,13532:12162274,11408162:181665 -k1,13532:13535385,11408162:181666 -k1,13532:16077001,11408162:181665 -k1,13532:16917959,11408162:181666 -k1,13532:18118710,11408162:181666 -k1,13532:21368115,11408162:181665 -k1,13532:22232666,11408162:181666 -k1,13532:25694408,11408162:181665 -k1,13532:28511277,11408162:181666 -k1,13532:32583029,11408162:0 -) -(1,13533:6630773,12273242:25952256,513147,126483 -k1,13532:8000714,12273242:178496 -k1,13532:9198295,12273242:178496 -k1,13532:11089247,12273242:178496 -k1,13532:12609920,12273242:178496 -k1,13532:17295327,12273242:178496 -k1,13532:20175873,12273242:178497 -k1,13532:23400482,12273242:178496 -k1,13532:24238270,12273242:178496 -k1,13532:25435851,12273242:178496 -k1,13532:27602054,12273242:178496 -k1,13532:31391584,12273242:178496 -k1,13532:32583029,12273242:0 -) -(1,13533:6630773,13138322:25952256,513147,134348 -k1,13532:8357210,13138322:217798 -k1,13532:11400920,13138322:217798 -k1,13532:12989731,13138322:217798 -k1,13532:17831094,13138322:217798 -$1,13532:17831094,13138322 -$1,13532:18151565,13138322 -k1,13532:20277771,13138322:217798 -k1,13532:21123404,13138322:217798 -k1,13532:22360287,13138322:217798 -k1,13532:23726276,13138322:217798 -k1,13532:25598858,13138322:217798 -k1,13532:27315464,13138322:217798 -k1,13532:29188046,13138322:217798 -k1,13532:29937341,13138322:217798 -k1,13533:32583029,13138322:0 -) -(1,13533:6630773,14003402:25952256,513147,134348 -k1,13532:8137227,14003402:238988 -k1,13532:9185585,14003402:238988 -k1,13532:11578086,14003402:238988 -k1,13532:14660680,14003402:238987 -k1,13532:16506611,14003402:238988 -k1,13532:17937044,14003402:238988 -k1,13532:18964430,14003402:238988 -k1,13532:21659052,14003402:238988 -k1,13532:22557332,14003402:238988 -k1,13532:25479363,14003402:238987 -k1,13532:26909796,14003402:238988 -k1,13532:29302297,14003402:238988 -k1,13532:32583029,14003402:0 -) -(1,13533:6630773,14868482:25952256,615216,95026 -g1,13532:7489294,14868482 -g1,13532:12208541,14868482 -$1,13532:12415635,14868482 -(1,13532:12909776,14593201:311689,339935,0 -) -$1,13532:13221465,14868482 -g1,13532:13627788,14868482 -g1,13532:15018462,14868482 -$1,13532:15018462,14868482 -$1,13532:15463451,14868482 -k1,13533:32583029,14868482:14331021 -g1,13533:32583029,14868482 -) -(1,13535:6630773,15733562:25952256,513147,138281 -h1,13534:6630773,15733562:983040,0,0 -k1,13534:11008362,15733562:296662 -$1,13534:11008362,15733562 -$1,13534:11516266,15733562 -k1,13534:11812929,15733562:296663 -k1,13534:13301036,15733562:296662 -$1,13534:13301036,15733562 -$1,13534:13745370,15733562 -k1,13534:14042032,15733562:296662 -k1,13534:14954733,15733562:296663 -$1,13534:14954733,15733562 -k1,13534:15866680,15733562:360134 -k1,13534:16795012,15733562:360135 -k1,13534:17519794,15733562:216878 -k1,13534:18005370,15733562:216878 -k1,13534:18620706,15733562:216877 -k1,13534:19405781,15733562:216878 -k1,13534:20066993,15733562:216878 -k1,13534:20552569,15733562:216878 -$1,13534:21055230,15733562 -k1,13534:21351892,15733562:296662 -k1,13534:22410083,15733562:296663 -k1,13534:23725830,15733562:296662 -k1,13534:27068605,15733562:296662 -k1,13534:28312919,15733562:296663 -k1,13534:29628666,15733562:296662 -k1,13534:32583029,15733562:0 -) -(1,13535:6630773,16598642:25952256,513147,134348 -k1,13534:7416667,16598642:323210 -k1,13534:8308075,16598642:323211 -$1,13534:10261048,16598642 -k1,13534:10711177,16598642:276459 -k1,13534:12179082,16598642:276460 -k1,13534:14327249,16598642:276459 -$1,13534:14327249,16598642 -k1,13534:15090862,16598642:323211 -k1,13534:15982269,16598642:323210 -$1,13534:17367045,16598642 -k1,13534:17817174,16598642:276459 -k1,13534:18961986,16598642:276460 -k1,13534:21262197,16598642:276459 -k1,13534:22309360,16598642:276460 -k1,13534:25301631,16598642:276459 -k1,13534:26525741,16598642:276459 -k1,13534:27821286,16598642:276460 -k1,13534:31414522,16598642:276459 -k1,13534:32583029,16598642:0 -) -(1,13535:6630773,17463722:25952256,513147,138281 -k1,13534:7365606,17463722:183020 -k1,13534:8116823,17463722:183020 -k1,13534:10215829,17463722:146033 -k1,13534:10930058,17463722:146032 -$1,13534:12817495,17463722 -k1,13534:13190919,17463722:199754 -k1,13534:16325375,17463722:199754 -k1,13534:18219891,17463722:199755 -k1,13534:19438730,17463722:199754 -k1,13534:21716632,17463722:199755 -k1,13534:22575678,17463722:199754 -k1,13534:23794517,17463722:199754 -k1,13534:26844433,17463722:199755 -k1,13534:27912539,17463722:199754 -k1,13534:29787394,17463722:199755 -k1,13534:31802495,17463722:199754 -k1,13534:32583029,17463722:0 -) -(1,13535:6630773,18328802:25952256,513147,134348 -k1,13534:8106442,18328802:231796 -k1,13534:11394837,18328802:231795 -k1,13534:12911139,18328802:231796 -k1,13534:14162019,18328802:231795 -k1,13534:17207276,18328802:231796 -k1,13534:20099833,18328802:231795 -k1,13534:21953645,18328802:231796 -k1,13534:22933206,18328802:231795 -k1,13534:24585167,18328802:231796 -k1,13534:26515000,18328802:231795 -k1,13534:28613261,18328802:231796 -k1,13534:29376553,18328802:231795 -k1,13534:31202185,18328802:231796 -k1,13534:32583029,18328802:0 -) -(1,13535:6630773,19193882:25952256,513147,134348 -k1,13534:9619411,19193882:230228 -k1,13534:11134145,19193882:230228 -k1,13534:12232725,19193882:230228 -k1,13534:14643336,19193882:230228 -k1,13534:15939835,19193882:230228 -k1,13534:18885875,19193882:230228 -k1,13534:20135188,19193882:230228 -k1,13534:22045759,19193882:230228 -k1,13534:22935279,19193882:230228 -$1,13534:22935279,19193882 -$1,13534:23443183,19193882 -k1,13534:23673411,19193882:230228 -k1,13534:24975807,19193882:230227 -k1,13534:27533218,19193882:230228 -k1,13534:28697989,19193882:230228 -$1,13534:28697989,19193882 -k1,13534:29444609,19193882:238716 -k1,13534:30251521,19193882:238715 -$1,13534:30649980,19193882 -k1,13534:31053878,19193882:230228 -k1,13534:31966991,19193882:230228 -k1,13534:32583029,19193882:0 -) -(1,13535:6630773,20058962:25952256,513147,138281 -g1,13534:8531972,20058962 -g1,13534:10859810,20058962 -g1,13534:11746512,20058962 -g1,13534:12964826,20058962 -g1,13534:15151762,20058962 -$1,13534:15151762,20058962 -g1,13534:15885635,20058962 -g1,13534:16635892,20058962 -g1,13534:17225874,20058962 -g1,13534:17640220,20058962 -$1,13534:18142881,20058962 -k1,13535:32583029,20058962:14387720 -g1,13535:32583029,20058962 -) -(1,13537:6630773,20924042:25952256,513147,126483 -h1,13536:6630773,20924042:983040,0,0 -k1,13536:8431235,20924042:189587 -k1,13536:9035655,20924042:189577 -k1,13536:11716921,20924042:189587 -k1,13536:12925593,20924042:189587 -k1,13536:15982380,20924042:189587 -k1,13536:16703464,20924042:189587 -k1,13536:19651461,20924042:189587 -k1,13536:20602576,20924042:189587 -k1,13536:23231413,20924042:189587 -k1,13536:24145827,20924042:189586 -k1,13536:25354499,20924042:189587 -k1,13536:27531793,20924042:189587 -k1,13536:29433836,20924042:189587 -k1,13536:31478747,20924042:189587 -k1,13536:32583029,20924042:0 -) -(1,13537:6630773,21789122:25952256,513147,134348 -k1,13536:7514851,21789122:136312 -k1,13536:11219598,21789122:136312 -k1,13536:12042073,21789122:136313 -(1,13536:12042073,21789122:0,452978,115847 -r1,13632:16269169,21789122:4227096,568825,115847 -k1,13536:12042073,21789122:-4227096 -) -(1,13536:12042073,21789122:4227096,452978,115847 -g1,13536:13803909,21789122 -g1,13536:14507333,21789122 -h1,13536:16265892,21789122:0,411205,112570 -) -k1,13536:18130389,21789122:136312 -k1,13536:19285786,21789122:136312 -k1,13536:21894116,21789122:136312 -(1,13536:21894116,21789122:0,435480,115847 -r1,13632:22955806,21789122:1061690,551327,115847 -k1,13536:21894116,21789122:-1061690 -) -(1,13536:21894116,21789122:1061690,435480,115847 -g1,13536:22600817,21789122 -h1,13536:22952529,21789122:0,411205,112570 -) -k1,13536:23092119,21789122:136313 -k1,13536:24721341,21789122:136312 -k1,13536:25923924,21789122:136312 -k1,13536:28300912,21789122:136312 -k1,13536:29456310,21789122:136313 -k1,13536:31753999,21789122:136312 -k1,13536:32583029,21789122:0 -) -(1,13537:6630773,22654202:25952256,513147,126483 -k1,13536:9278224,22654202:213444 -k1,13536:10510754,22654202:213445 -k1,13536:13591398,22654202:213444 -k1,13536:14673194,22654202:213444 -k1,13536:16416904,22654202:213444 -k1,13536:17281777,22654202:213445 -k1,13536:19754247,22654202:213444 -k1,13536:20425788,22654202:213444 -k1,13536:21325394,22654202:213444 -(1,13536:21325394,22654202:0,452978,115847 -r1,13632:26959338,22654202:5633944,568825,115847 -k1,13536:21325394,22654202:-5633944 -) -(1,13536:21325394,22654202:5633944,452978,115847 -g1,13536:23087230,22654202 -g1,13536:23790654,22654202 -g1,13536:25900925,22654202 -g1,13536:26604349,22654202 -h1,13536:26956061,22654202:0,411205,112570 -) -k1,13536:27172783,22654202:213445 -k1,13536:28276206,22654202:213444 -k1,13536:29278048,22654202:213444 -k1,13537:32583029,22654202:0 -) -(1,13537:6630773,23519282:25952256,513147,138281 -(1,13536:6630773,23519282:0,452978,115847 -r1,13632:12264717,23519282:5633944,568825,115847 -k1,13536:6630773,23519282:-5633944 -) -(1,13536:6630773,23519282:5633944,452978,115847 -g1,13536:8392609,23519282 -g1,13536:9096033,23519282 -g1,13536:11206304,23519282 -g1,13536:11909728,23519282 -h1,13536:12261440,23519282:0,411205,112570 -) -k1,13536:12888554,23519282:243073 -k1,13536:14079277,23519282:243072 -k1,13536:14678210,23519282:243073 -k1,13536:17399855,23519282:243073 -k1,13536:18811434,23519282:243072 -k1,13536:21481961,23519282:243073 -k1,13536:24283560,23519282:243073 -k1,13536:25545717,23519282:243072 -k1,13536:27663120,23519282:243073 -$1,13536:27870214,23519282 -k1,13536:28635066,23519282:262191 -k1,13536:29465454,23519282:262191 -$1,13536:29863913,23519282 -k1,13536:30280656,23519282:243073 -$1,13536:30280656,23519282 -k1,13536:31094660,23519282:262191 -k1,13536:31925048,23519282:262191 -$1,13536:32323507,23519282 -k1,13536:32583029,23519282:0 -) -(1,13537:6630773,24384362:25952256,513147,126483 -k1,13536:7491957,24384362:233349 -k1,13536:8744391,24384362:233349 -k1,13536:11968148,24384362:233349 -k1,13536:13149148,24384362:233349 -k1,13536:14585738,24384362:233349 -k1,13536:16806794,24384362:233349 -k1,13536:18694927,24384362:233349 -k1,13536:19459773,24384362:233349 -k1,13536:20463824,24384362:233348 -k1,13536:23412985,24384362:233349 -k1,13536:24593985,24384362:233349 -k1,13536:25846419,24384362:233349 -k1,13536:27777806,24384362:233349 -k1,13536:29083324,24384362:233349 -k1,13536:30382944,24384362:233349 -k1,13536:31563944,24384362:233349 -k1,13536:32583029,24384362:0 -) -(1,13537:6630773,25249442:25952256,473825,126483 -k1,13537:32583030,25249442:23032628 -g1,13537:32583030,25249442 -) -v1,13539:6630773,25934297:0,393216,0 -(1,13563:6630773,38733442:25952256,13192361,196608 -g1,13563:6630773,38733442 -g1,13563:6630773,38733442 -g1,13563:6434165,38733442 -(1,13563:6434165,38733442:0,13192361,196608 -r1,13632:32779637,38733442:26345472,13388969,196608 -k1,13563:6434165,38733442:-26345472 -) -(1,13563:6434165,38733442:26345472,13192361,196608 -[1,13563:6630773,38733442:25952256,12995753,0 -(1,13541:6630773,26168734:25952256,431045,106246 -(1,13540:6630773,26168734:0,0,0 -g1,13540:6630773,26168734 -g1,13540:6630773,26168734 -g1,13540:6303093,26168734 -(1,13540:6303093,26168734:0,0,0 -) -g1,13540:6630773,26168734 -) -g1,13541:7958589,26168734 -g1,13541:8954451,26168734 -g1,13541:11610083,26168734 -g1,13541:12273991,26168734 -g1,13541:14265715,26168734 -g1,13541:14929623,26168734 -g1,13541:15925485,26168734 -g1,13541:17585255,26168734 -g1,13541:18249163,26168734 -h1,13541:19908933,26168734:0,0,0 -k1,13541:32583029,26168734:12674096 -g1,13541:32583029,26168734 -) -(1,13542:6630773,26853589:25952256,431045,106246 -h1,13542:6630773,26853589:0,0,0 -k1,13542:6630773,26853589:0 -h1,13542:10614221,26853589:0,0,0 -k1,13542:32583029,26853589:21968808 -g1,13542:32583029,26853589 -) -(1,13562:6630773,27669516:25952256,398014,0 -(1,13544:6630773,27669516:0,0,0 -g1,13544:6630773,27669516 -g1,13544:6630773,27669516 -g1,13544:6303093,27669516 -(1,13544:6303093,27669516:0,0,0 -) -g1,13544:6630773,27669516 -) -h1,13562:7294681,27669516:0,0,0 -k1,13562:32583029,27669516:25288348 -g1,13562:32583029,27669516 -) -(1,13562:6630773,28354371:25952256,424439,8257 -h1,13562:6630773,28354371:0,0,0 -g1,13562:7626635,28354371 -h1,13562:9286405,28354371:0,0,0 -k1,13562:32583029,28354371:23296624 -g1,13562:32583029,28354371 -) -(1,13562:6630773,29039226:25952256,431045,106246 -h1,13562:6630773,29039226:0,0,0 -g1,13562:7626635,29039226 -g1,13562:11278128,29039226 -g1,13562:11942036,29039226 -g1,13562:13601806,29039226 -g1,13562:14265714,29039226 -g1,13562:16257438,29039226 -g1,13562:16921346,29039226 -g1,13562:17917208,29039226 -g1,13562:19576978,29039226 -g1,13562:20240886,29039226 -h1,13562:21900656,29039226:0,0,0 -k1,13562:32583029,29039226:10682373 -g1,13562:32583029,29039226 -) -(1,13562:6630773,29724081:25952256,398014,0 -h1,13562:6630773,29724081:0,0,0 -h1,13562:7294681,29724081:0,0,0 -k1,13562:32583029,29724081:25288348 -g1,13562:32583029,29724081 -) -(1,13562:6630773,30408936:25952256,424439,6605 -h1,13562:6630773,30408936:0,0,0 -g1,13562:7626635,30408936 -h1,13562:10946174,30408936:0,0,0 -k1,13562:32583030,30408936:21636856 -g1,13562:32583030,30408936 -) -(1,13562:6630773,31093791:25952256,424439,86428 -h1,13562:6630773,31093791:0,0,0 -g1,13562:7626635,31093791 -g1,13562:7958589,31093791 -g1,13562:8290543,31093791 -g1,13562:8622497,31093791 -g1,13562:8954451,31093791 -g1,13562:10282267,31093791 -g1,13562:10614221,31093791 -g1,13562:10946175,31093791 -g1,13562:11278129,31093791 -g1,13562:11610083,31093791 -g1,13562:11942037,31093791 -g1,13562:12937899,31093791 -g1,13562:13269853,31093791 -g1,13562:15593531,31093791 -g1,13562:15925485,31093791 -g1,13562:16257439,31093791 -g1,13562:16589393,31093791 -g1,13562:16921347,31093791 -g1,13562:17253301,31093791 -g1,13562:18249163,31093791 -g1,13562:18581117,31093791 -g1,13562:18913071,31093791 -g1,13562:19245025,31093791 -g1,13562:19576979,31093791 -h1,13562:20572841,31093791:0,0,0 -k1,13562:32583029,31093791:12010188 -g1,13562:32583029,31093791 -) -(1,13562:6630773,31778646:25952256,407923,9908 -h1,13562:6630773,31778646:0,0,0 -g1,13562:7626635,31778646 -g1,13562:10282267,31778646 -g1,13562:12937899,31778646 -g1,13562:13269853,31778646 -g1,13562:15593531,31778646 -g1,13562:15925485,31778646 -g1,13562:16257439,31778646 -g1,13562:18249163,31778646 -g1,13562:18581117,31778646 -h1,13562:20572841,31778646:0,0,0 -k1,13562:32583029,31778646:12010188 -g1,13562:32583029,31778646 -) -(1,13562:6630773,32463501:25952256,398014,0 -h1,13562:6630773,32463501:0,0,0 -h1,13562:7294681,32463501:0,0,0 -k1,13562:32583029,32463501:25288348 -g1,13562:32583029,32463501 -) -(1,13562:6630773,33148356:25952256,431045,8257 -h1,13562:6630773,33148356:0,0,0 -g1,13562:7626635,33148356 -h1,13562:11942036,33148356:0,0,0 -k1,13562:32583028,33148356:20640992 -g1,13562:32583028,33148356 -) -(1,13562:6630773,33833211:25952256,424439,79822 -h1,13562:6630773,33833211:0,0,0 -g1,13562:7626635,33833211 -g1,13562:7958589,33833211 -g1,13562:8290543,33833211 -g1,13562:8622497,33833211 -g1,13562:8954451,33833211 -g1,13562:9286405,33833211 -g1,13562:9618359,33833211 -g1,13562:12605944,33833211 -g1,13562:14265714,33833211 -g1,13562:16257438,33833211 -g1,13562:16921346,33833211 -g1,13562:18913070,33833211 -k1,13562:18913070,33833211:0 -h1,13562:21568702,33833211:0,0,0 -k1,13562:32583029,33833211:11014327 -g1,13562:32583029,33833211 -) -(1,13562:6630773,34518066:25952256,424439,106246 -h1,13562:6630773,34518066:0,0,0 -g1,13562:7626635,34518066 -g1,13562:9618359,34518066 -g1,13562:9950313,34518066 -g1,13562:10282267,34518066 -g1,13562:12605945,34518066 -g1,13562:12937899,34518066 -g1,13562:13269853,34518066 -g1,13562:13601807,34518066 -g1,13562:13933761,34518066 -g1,13562:16257439,34518066 -g1,13562:16589393,34518066 -g1,13562:16921347,34518066 -g1,13562:18913071,34518066 -g1,13562:19245025,34518066 -g1,13562:19576979,34518066 -g1,13562:21900657,34518066 -h1,13562:22896519,34518066:0,0,0 -k1,13562:32583029,34518066:9686510 -g1,13562:32583029,34518066 -) -(1,13562:6630773,35202921:25952256,398014,0 -h1,13562:6630773,35202921:0,0,0 -g1,13562:7626635,35202921 -k1,13562:7626635,35202921:0 -h1,13562:8622497,35202921:0,0,0 -k1,13562:32583029,35202921:23960532 -g1,13562:32583029,35202921 -) -(1,13562:6630773,35887776:25952256,431045,112852 -h1,13562:6630773,35887776:0,0,0 -g1,13562:7626635,35887776 -g1,13562:10282267,35887776 -g1,13562:12605945,35887776 -g1,13562:12937899,35887776 -g1,13562:13601807,35887776 -g1,13562:15593531,35887776 -g1,13562:17585255,35887776 -g1,13562:19245025,35887776 -g1,13562:20904795,35887776 -g1,13562:22232611,35887776 -g1,13562:23892381,35887776 -g1,13562:25220197,35887776 -g1,13562:26548013,35887776 -g1,13562:27211921,35887776 -g1,13562:27875829,35887776 -h1,13562:28207783,35887776:0,0,0 -k1,13562:32583029,35887776:4375246 -g1,13562:32583029,35887776 -) -(1,13562:6630773,36572631:25952256,398014,0 -h1,13562:6630773,36572631:0,0,0 -h1,13562:7294681,36572631:0,0,0 -k1,13562:32583029,36572631:25288348 -g1,13562:32583029,36572631 -) -(1,13562:6630773,37257486:25952256,431045,112852 -h1,13562:6630773,37257486:0,0,0 -g1,13562:7626635,37257486 -g1,13562:10614220,37257486 -g1,13562:13601805,37257486 -g1,13562:15925483,37257486 -g1,13562:17917207,37257486 -g1,13562:18913069,37257486 -g1,13562:19908931,37257486 -g1,13562:22564563,37257486 -g1,13562:23560425,37257486 -h1,13562:25884103,37257486:0,0,0 -k1,13562:32583029,37257486:6698926 -g1,13562:32583029,37257486 -) -(1,13562:6630773,37942341:25952256,424439,112852 -h1,13562:6630773,37942341:0,0,0 -g1,13562:7626635,37942341 -g1,13562:10614220,37942341 -g1,13562:14265713,37942341 -g1,13562:14597667,37942341 -g1,13562:17253299,37942341 -g1,13562:20240884,37942341 -g1,13562:23892377,37942341 -g1,13562:24224331,37942341 -h1,13562:26216055,37942341:0,0,0 -k1,13562:32583029,37942341:6366974 -g1,13562:32583029,37942341 -) -(1,13562:6630773,38627196:25952256,424439,106246 -h1,13562:6630773,38627196:0,0,0 -g1,13562:7626635,38627196 -g1,13562:11942036,38627196 -g1,13562:13933760,38627196 -g1,13562:14929622,38627196 -g1,13562:15593530,38627196 -g1,13562:16921346,38627196 -g1,13562:17917208,38627196 -g1,13562:19245024,38627196 -g1,13562:19576978,38627196 -g1,13562:22564564,38627196 -g1,13562:23228472,38627196 -k1,13562:23228472,38627196:0 -h1,13562:25552150,38627196:0,0,0 -k1,13562:32583029,38627196:7030879 -g1,13562:32583029,38627196 -) -] -) -g1,13563:32583029,38733442 -g1,13563:6630773,38733442 -g1,13563:6630773,38733442 -g1,13563:32583029,38733442 -g1,13563:32583029,38733442 -) -h1,13563:6630773,38930050:0,0,0 -(1,13567:6630773,39795130:25952256,513147,138281 -h1,13566:6630773,39795130:983040,0,0 -k1,13566:9058779,39795130:248279 -k1,13566:12096926,39795130:248279 -k1,13566:13292855,39795130:248278 -(1,13566:13292855,39795130:0,459977,115847 -r1,13632:14354544,39795130:1061689,575824,115847 -k1,13566:13292855,39795130:-1061689 -) -(1,13566:13292855,39795130:1061689,459977,115847 -k1,13566:13292855,39795130:3277 -h1,13566:14351267,39795130:0,411205,112570 -) -k1,13566:14602823,39795130:248279 -k1,13566:15382599,39795130:248279 -$1,13566:15382599,39795130 -k1,13566:16206118,39795130:271706 -k1,13566:17046021,39795130:271706 -$1,13566:18933458,39795130 -k1,13566:19355407,39795130:248279 -k1,13566:21265679,39795130:248279 -k1,13566:22533042,39795130:248278 -k1,13566:25849061,39795130:248279 -k1,13566:26555437,39795130:248279 -k1,13566:27907998,39795130:248279 -k1,13566:28904042,39795130:248278 -k1,13566:30592147,39795130:248279 -k1,13566:32124932,39795130:248279 -k1,13566:32583029,39795130:0 -) -(1,13567:6630773,40660210:25952256,513147,134348 -k1,13566:7422869,40660210:260599 -k1,13566:11376422,40660210:260599 -k1,13566:12323183,40660210:260599 -k1,13566:13602867,40660210:260599 -k1,13566:16342038,40660210:260599 -k1,13566:17771144,40660210:260599 -k1,13566:19524653,40660210:260599 -k1,13566:20851523,40660210:260599 -k1,13566:23097208,40660210:260599 -k1,13566:24376892,40660210:260599 -k1,13566:27694746,40660210:260599 -k1,13566:28614637,40660210:260599 -k1,13566:29894321,40660210:260599 -k1,13566:31923737,40660210:260599 -k1,13566:32583029,40660210:0 -) -(1,13567:6630773,41525290:25952256,505283,7863 -k1,13567:32583029,41525290:21828076 -g1,13567:32583029,41525290 -) -v1,13569:6630773,42390370:0,393216,0 -(1,13632:6630773,45392435:25952256,3395281,0 -g1,13632:6630773,45392435 -g1,13632:6237557,45392435 -r1,13632:6368629,45392435:131072,3395281,0 -g1,13632:6567858,45392435 -g1,13632:6764466,45392435 -[1,13632:6764466,45392435:25818563,3395281,0 -(1,13570:6764466,42662847:25818563,665693,196608 -(1,13569:6764466,42662847:0,665693,196608 -r1,13632:7868133,42662847:1103667,862301,196608 -k1,13569:6764466,42662847:-1103667 -) -(1,13569:6764466,42662847:1103667,665693,196608 -) -k1,13569:8027830,42662847:159697 -k1,13569:9345759,42662847:327680 -k1,13569:10759160,42662847:159697 -k1,13569:12051318,42662847:159696 -k1,13569:13541396,42662847:159697 -k1,13569:14388566,42662847:159697 -k1,13569:14904123,42662847:159697 -k1,13569:19643476,42662847:159697 -k1,13569:23549866,42662847:159697 -k1,13569:24065422,42662847:159696 -k1,13569:26987462,42662847:159697 -k1,13569:28959885,42662847:159697 -k1,13569:31280959,42662847:159697 -$1,13569:31280959,42662847 -k1,13569:32014832,42662847:182060 -k1,13570:32583029,42662847:0 -) -(1,13570:6764466,43527927:25818563,615216,134348 -k1,13569:7371846,43527927:99476 -k1,13569:7740020,43527927:99476 -k1,13569:8237956,43527927:99477 -k1,13569:8905629,43527927:99476 -(1,13569:9349963,43626241:311689,334430,0 -) -k1,13569:9761128,43527927:99476 -k1,13569:10129302,43527927:99476 -k1,13569:10731439,43527927:99476 -k1,13569:11399113,43527927:99477 -(1,13569:11843447,43626241:311689,339935,0 -) -k1,13569:12254612,43527927:99476 -k1,13569:12622786,43527927:99476 -(1,13569:13125447,43252646:311689,339935,0 -) -$1,13569:13437136,43527927 -k1,13569:13788983,43527927:178177 -k1,13569:15163847,43527927:178177 -k1,13569:18037519,43527927:178176 -k1,13569:19728922,43527927:178177 -k1,13569:20438596,43527927:178177 -k1,13569:21635857,43527927:178176 -k1,13569:23467507,43527927:178177 -k1,13569:24331846,43527927:178177 -k1,13569:25457674,43527927:178177 -k1,13569:27448576,43527927:178176 -k1,13569:31117200,43527927:178177 -(1,13569:31117200,43527927:0,452978,115847 -r1,13632:32530601,43527927:1413401,568825,115847 -k1,13569:31117200,43527927:-1413401 -) -(1,13569:31117200,43527927:1413401,452978,115847 -k1,13569:31117200,43527927:3277 -h1,13569:32527324,43527927:0,411205,112570 -) -k1,13569:32583029,43527927:0 -) -(1,13570:6764466,44393007:25818563,513147,126483 -k1,13569:7921363,44393007:233495 -k1,13569:9530459,44393007:233495 -k1,13569:11294220,44393007:233495 -k1,13569:12179142,44393007:233494 -k1,13569:13866226,44393007:233495 -k1,13569:15118806,44393007:233495 -k1,13569:19163220,44393007:233495 -k1,13569:20056007,44393007:233495 -k1,13569:21308587,44393007:233495 -k1,13569:23703459,44393007:233495 -k1,13569:25133640,44393007:233494 -k1,13569:27827357,44393007:233495 -k1,13569:30756348,44393007:233495 -(1,13569:30756348,44393007:0,452978,115847 -r1,13632:31818037,44393007:1061689,568825,115847 -k1,13569:30756348,44393007:-1061689 -) -(1,13569:30756348,44393007:1061689,452978,115847 -k1,13569:30756348,44393007:3277 -h1,13569:31814760,44393007:0,411205,112570 -) -k1,13569:32051532,44393007:233495 -k1,13569:32583029,44393007:0 -) -(1,13570:6764466,45258087:25818563,513147,134348 -k1,13569:8456857,45258087:179165 -k1,13569:9287451,45258087:179166 -k1,13569:11764964,45258087:179165 -k1,13569:12732527,45258087:179165 -k1,13569:15984021,45258087:179166 -k1,13569:17730807,45258087:179165 -k1,13569:19647987,45258087:179165 -k1,13569:23417214,45258087:179165 -k1,13569:24282542,45258087:179166 -k1,13569:25783568,45258087:179165 -k1,13569:26622025,45258087:179165 -k1,13569:27820276,45258087:179166 -k1,13569:29987148,45258087:179165 -k1,13569:32583029,45258087:0 -) -] -g1,13632:32583029,45392435 -) -] -(1,13632:32583029,45706769:0,0,0 -g1,13632:32583029,45706769 -) -) -] -(1,13632:6630773,47279633:25952256,0,0 -h1,13632:6630773,47279633:25952256,0,0 -) -] -(1,13632:4262630,4025873:0,0,0 -[1,13632:-473656,4025873:0,0,0 -(1,13632:-473656,-710413:0,0,0 -(1,13632:-473656,-710413:0,0,0 -g1,13632:-473656,-710413 -) -g1,13632:-473656,-710413 -) -] -) -] -!30039 -}218 Input:2292:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2293:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2294:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2295:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2296:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2300:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2301:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2303:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2304:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2306:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2307:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2308:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2309:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2310:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2311:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2312:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2313:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2314:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2315:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2316:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2312 +!1392 {219 -[1,13668:4262630,47279633:28320399,43253760,0 -(1,13668:4262630,4025873:0,0,0 -[1,13668:-473656,4025873:0,0,0 -(1,13668:-473656,-710413:0,0,0 -(1,13668:-473656,-644877:0,0,0 -k1,13668:-473656,-644877:-65536 +[1,13630:4262630,47279633:28320399,43253760,0 +(1,13630:4262630,4025873:0,0,0 +[1,13630:-473656,4025873:0,0,0 +(1,13630:-473656,-710413:0,0,0 +(1,13630:-473656,-644877:0,0,0 +k1,13630:-473656,-644877:-65536 ) -(1,13668:-473656,4736287:0,0,0 -k1,13668:-473656,4736287:5209943 +(1,13630:-473656,4736287:0,0,0 +k1,13630:-473656,4736287:5209943 ) -g1,13668:-473656,-710413 +g1,13630:-473656,-710413 ) ] ) -[1,13668:6630773,47279633:25952256,43253760,0 -[1,13668:6630773,4812305:25952256,786432,0 -(1,13668:6630773,4812305:25952256,513147,126483 -(1,13668:6630773,4812305:25952256,513147,126483 -g1,13668:3078558,4812305 -[1,13668:3078558,4812305:0,0,0 -(1,13668:3078558,2439708:0,1703936,0 -k1,13668:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13668:2537886,2439708:1179648,16384,0 +[1,13630:6630773,47279633:25952256,43253760,0 +[1,13630:6630773,4812305:25952256,786432,0 +(1,13630:6630773,4812305:25952256,505283,134348 +(1,13630:6630773,4812305:25952256,505283,134348 +g1,13630:3078558,4812305 +[1,13630:3078558,4812305:0,0,0 +(1,13630:3078558,2439708:0,1703936,0 +k1,13630:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13630:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13668:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13630:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13668:3078558,4812305:0,0,0 -(1,13668:3078558,2439708:0,1703936,0 -g1,13668:29030814,2439708 -g1,13668:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13668:36151628,1915420:16384,1179648,0 +[1,13630:3078558,4812305:0,0,0 +(1,13630:3078558,2439708:0,1703936,0 +g1,13630:29030814,2439708 +g1,13630:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13630:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13668:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13630:37855564,2439708:1179648,16384,0 ) ) -k1,13668:3078556,2439708:-34777008 +k1,13630:3078556,2439708:-34777008 ) ] -[1,13668:3078558,4812305:0,0,0 -(1,13668:3078558,49800853:0,16384,2228224 -k1,13668:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13668:2537886,49800853:1179648,16384,0 +[1,13630:3078558,4812305:0,0,0 +(1,13630:3078558,49800853:0,16384,2228224 +k1,13630:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13630:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13668:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13630:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) -) -) -] -[1,13668:3078558,4812305:0,0,0 -(1,13668:3078558,49800853:0,16384,2228224 -g1,13668:29030814,49800853 -g1,13668:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13668:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13668:37855564,49800853:1179648,16384,0 -) -) -k1,13668:3078556,49800853:-34777008 -) -] -g1,13668:6630773,4812305 -k1,13668:19575446,4812305:11749296 -g1,13668:21198117,4812305 -g1,13668:21985204,4812305 -g1,13668:24539797,4812305 -g1,13668:25949476,4812305 -g1,13668:28728857,4812305 -g1,13668:29852144,4812305 -) -) -] -[1,13668:6630773,45706769:25952256,40108032,0 -(1,13668:6630773,45706769:25952256,40108032,0 -(1,13668:6630773,45706769:0,0,0 -g1,13668:6630773,45706769 -) -[1,13668:6630773,45706769:25952256,40108032,0 -v1,13632:6630773,6254097:0,393216,0 -(1,13632:6630773,37603062:25952256,31742181,0 -g1,13632:6630773,37603062 -g1,13632:6237557,37603062 -r1,13668:6368629,37603062:131072,31742181,0 -g1,13632:6567858,37603062 -g1,13632:6764466,37603062 -[1,13632:6764466,37603062:25818563,31742181,0 -(1,13570:6764466,6374028:25818563,513147,134348 -k1,13569:9449054,6374028:171938 -k1,13569:10409391,6374028:171939 -k1,13569:13653657,6374028:171938 -k1,13569:14357092,6374028:171938 -k1,13569:17590218,6374028:171939 -k1,13569:21411201,6374028:171938 -k1,13569:22774584,6374028:171938 -k1,13569:23965608,6374028:171939 -k1,13569:25980418,6374028:171938 -k1,13569:26683854,6374028:171939 -k1,13569:28369018,6374028:171938 -k1,13569:29227118,6374028:171938 -k1,13569:30591812,6374028:171939 -k1,13569:31379788,6374028:171938 -k1,13569:32583029,6374028:0 -) -(1,13570:6764466,7239108:25818563,505283,126483 -g1,13569:8330776,7239108 -g1,13569:10945007,7239108 -g1,13569:14909935,7239108 -k1,13570:32583029,7239108:14988084 -g1,13570:32583029,7239108 -) -v1,13572:6764466,7923963:0,393216,0 -(1,13578:6764466,9634356:25818563,2103609,196608 -g1,13578:6764466,9634356 -g1,13578:6764466,9634356 -g1,13578:6567858,9634356 -(1,13578:6567858,9634356:0,2103609,196608 -r1,13668:32779637,9634356:26211779,2300217,196608 -k1,13578:6567857,9634356:-26211780 -) -(1,13578:6567858,9634356:26211779,2103609,196608 -[1,13578:6764466,9634356:25818563,1907001,0 -(1,13574:6764466,8158400:25818563,431045,106246 -(1,13573:6764466,8158400:0,0,0 -g1,13573:6764466,8158400 -g1,13573:6764466,8158400 -g1,13573:6436786,8158400 -(1,13573:6436786,8158400:0,0,0 -) -g1,13573:6764466,8158400 -) -g1,13574:8092282,8158400 -g1,13574:9088144,8158400 -g1,13574:11743776,8158400 -g1,13574:12407684,8158400 -g1,13574:14399408,8158400 -g1,13574:15063316,8158400 -g1,13574:19046764,8158400 -g1,13574:20706534,8158400 -g1,13574:21370442,8158400 -h1,13574:23030212,8158400:0,0,0 -k1,13574:32583029,8158400:9552817 -g1,13574:32583029,8158400 -) -(1,13575:6764466,8843255:25818563,431045,106246 -h1,13575:6764466,8843255:0,0,0 -g1,13575:10084006,8843255 -g1,13575:12075730,8843255 -g1,13575:12739638,8843255 -h1,13575:13403546,8843255:0,0,0 -k1,13575:32583030,8843255:19179484 -g1,13575:32583030,8843255 -) -(1,13576:6764466,9528110:25818563,431045,106246 -h1,13576:6764466,9528110:0,0,0 -k1,13576:6764466,9528110:0 -h1,13576:10747914,9528110:0,0,0 -k1,13576:32583030,9528110:21835116 -g1,13576:32583030,9528110 -) -] -) -g1,13578:32583029,9634356 -g1,13578:6764466,9634356 -g1,13578:6764466,9634356 -g1,13578:32583029,9634356 -g1,13578:32583029,9634356 -) -h1,13578:6764466,9830964:0,0,0 -(1,13582:6764466,10696044:25818563,513147,134348 -h1,13581:6764466,10696044:983040,0,0 -k1,13581:9232492,10696044:288299 -k1,13581:11774574,10696044:288299 -k1,13581:12750345,10696044:288298 -k1,13581:14774037,10696044:288299 -k1,13581:15833039,10696044:288299 -k1,13581:19615062,10696044:288299 -k1,13581:23476384,10696044:288299 -k1,13581:24868965,10696044:288299 -k1,13581:25905029,10696044:288298 -k1,13581:29025139,10696044:288299 -k1,13581:31048831,10696044:288299 -k1,13582:32583029,10696044:0 -) -(1,13582:6764466,11561124:25818563,513147,134348 -k1,13581:8221221,11561124:189289 -(1,13581:8221221,11561124:0,452978,115847 -r1,13668:10338046,11561124:2116825,568825,115847 -k1,13581:8221221,11561124:-2116825 -) -(1,13581:8221221,11561124:2116825,452978,115847 -k1,13581:8221221,11561124:3277 -h1,13581:10334769,11561124:0,411205,112570 -) -k1,13581:10701004,11561124:189288 -k1,13581:14748397,11561124:189289 -k1,13581:15596978,11561124:189289 -k1,13581:18548610,11561124:189289 -k1,13581:21193532,11561124:189288 -k1,13581:22487103,11561124:189289 -k1,13581:23424158,11561124:189289 -k1,13581:26405281,11561124:189289 -k1,13581:27356097,11561124:189288 -k1,13581:30688493,11561124:189289 -k1,13581:31563944,11561124:189289 -k1,13581:32583029,11561124:0 -) -(1,13582:6764466,12426204:25818563,505283,134348 -k1,13581:9207170,12426204:201373 -k1,13581:12480871,12426204:201373 -k1,13581:13333672,12426204:201373 -(1,13581:13333672,12426204:0,452978,115847 -r1,13668:15450497,12426204:2116825,568825,115847 -k1,13581:13333672,12426204:-2116825 -) -(1,13581:13333672,12426204:2116825,452978,115847 -k1,13581:13333672,12426204:3277 -h1,13581:15447220,12426204:0,411205,112570 -) -k1,13581:15651870,12426204:201373 -k1,13581:16872328,12426204:201373 -k1,13581:21697267,12426204:201374 -k1,13581:24408014,12426204:201373 -k1,13581:26839577,12426204:201373 -k1,13581:28894964,12426204:201373 -k1,13581:29724172,12426204:201373 -k1,13581:31128786,12426204:201373 -k1,13581:32583029,12426204:0 -) -(1,13582:6764466,13291284:25818563,513147,134348 -g1,13581:7982780,13291284 -g1,13581:10944352,13291284 -g1,13581:12986453,13291284 -g1,13581:13844974,13291284 -g1,13581:15063288,13291284 -g1,13581:18835540,13291284 -g1,13581:20026329,13291284 -g1,13581:22406596,13291284 -g1,13581:25286248,13291284 -g1,13581:26101515,13291284 -g1,13581:27319829,13291284 -k1,13582:32583029,13291284:2220364 -g1,13582:32583029,13291284 -) -v1,13584:6764466,13976139:0,393216,0 -(1,13589:6764466,15001677:25818563,1418754,196608 -g1,13589:6764466,15001677 -g1,13589:6764466,15001677 -g1,13589:6567858,15001677 -(1,13589:6567858,15001677:0,1418754,196608 -r1,13668:32779637,15001677:26211779,1615362,196608 -k1,13589:6567857,15001677:-26211780 -) -(1,13589:6567858,15001677:26211779,1418754,196608 -[1,13589:6764466,15001677:25818563,1222146,0 -(1,13586:6764466,14210576:25818563,431045,106246 -(1,13585:6764466,14210576:0,0,0 -g1,13585:6764466,14210576 -g1,13585:6764466,14210576 -g1,13585:6436786,14210576 -(1,13585:6436786,14210576:0,0,0 -) -g1,13585:6764466,14210576 -) -g1,13586:8424236,14210576 -g1,13586:9420098,14210576 -g1,13586:12075730,14210576 -g1,13586:12739638,14210576 -g1,13586:16723086,14210576 -g1,13586:18050902,14210576 -g1,13586:19710672,14210576 -g1,13586:20374580,14210576 -h1,13586:22034350,14210576:0,0,0 -k1,13586:32583029,14210576:10548679 -g1,13586:32583029,14210576 -) -(1,13587:6764466,14895431:25818563,431045,106246 -h1,13587:6764466,14895431:0,0,0 -k1,13587:6764466,14895431:0 -h1,13587:11079868,14895431:0,0,0 -k1,13587:32583028,14895431:21503160 -g1,13587:32583028,14895431 -) -] -) -g1,13589:32583029,15001677 -g1,13589:6764466,15001677 -g1,13589:6764466,15001677 -g1,13589:32583029,15001677 -g1,13589:32583029,15001677 -) -h1,13589:6764466,15198285:0,0,0 -(1,13593:6764466,16063365:25818563,513147,134348 -h1,13592:6764466,16063365:983040,0,0 -k1,13592:8421131,16063365:203732 -k1,13592:9156360,16063365:203732 -k1,13592:11990052,16063365:203732 -k1,13592:12845212,16063365:203732 -k1,13592:15809320,16063365:203732 -k1,13592:17185491,16063365:203732 -k1,13592:19376929,16063365:203731 -k1,13592:20598435,16063365:203732 -k1,13592:22537560,16063365:203732 -(1,13592:22537560,16063365:0,452978,115847 -r1,13668:25006097,16063365:2468537,568825,115847 -k1,13592:22537560,16063365:-2468537 -) -(1,13592:22537560,16063365:2468537,452978,115847 -k1,13592:22537560,16063365:3277 -h1,13592:25002820,16063365:0,411205,112570 -) -k1,13592:25383499,16063365:203732 -k1,13592:27768925,16063365:203732 -k1,13592:30563295,16063365:203732 -k1,13592:31923737,16063365:203732 -k1,13592:32583029,16063365:0 -) -(1,13593:6764466,16928445:25818563,505283,126483 -k1,13592:7969586,16928445:186035 -k1,13592:10473629,16928445:186035 -k1,13592:13659247,16928445:186035 -k1,13592:14864367,16928445:186035 -k1,13592:16439765,16928445:186035 -k1,13592:18523067,16928445:186035 -k1,13592:20151549,16928445:186035 -k1,13592:21356668,16928445:186034 -k1,13592:23418343,16928445:186035 -k1,13592:24074271,16928445:186035 -k1,13592:24791803,16928445:186035 -k1,13592:28187136,16928445:186035 -k1,13592:28989209,16928445:186035 -k1,13592:30378485,16928445:186035 -k1,13592:31931601,16928445:186035 -k1,13592:32583029,16928445:0 -) -(1,13593:6764466,17793525:25818563,513147,102891 -k1,13592:8324342,17793525:207213 -k1,13592:9799021,17793525:207213 -k1,13592:14360446,17793525:207213 -k1,13592:15586744,17793525:207213 -k1,13592:17872104,17793525:207213 -k1,13592:18738608,17793525:207212 -k1,13592:19964906,17793525:207213 -k1,13592:23358479,17793525:207213 -k1,13592:26200895,17793525:207213 -k1,13592:27427193,17793525:207213 -k1,13592:29622113,17793525:207213 -k1,13592:32583029,17793525:0 -) -(1,13593:6764466,18658605:25818563,513147,126483 -k1,13592:8579376,18658605:213210 -k1,13592:12568116,18658605:213211 -k1,13592:13247287,18658605:213210 -k1,13592:14840686,18658605:213211 -k1,13592:16158178,18658605:213210 -k1,13592:17119155,18658605:213211 -k1,13592:20922427,18658605:213210 -k1,13592:21821799,18658605:213210 -k1,13592:25877386,18658605:213211 -k1,13592:29680658,18658605:213210 -k1,13592:30580031,18658605:213211 -k1,13592:31149101,18658605:213210 -k1,13592:32583029,18658605:0 -) -(1,13593:6764466,19523685:25818563,505283,7863 -g1,13592:8951402,19523685 -g1,13592:10011774,19523685 -g1,13592:11230088,19523685 -g1,13592:13082790,19523685 -g1,13592:15269726,19523685 -g1,13592:16862906,19523685 -g1,13592:20289128,19523685 -k1,13593:32583029,19523685:10398600 -g1,13593:32583029,19523685 -) -v1,13595:6764466,20208540:0,393216,0 -(1,13599:6764466,20529405:25818563,714081,196608 -g1,13599:6764466,20529405 -g1,13599:6764466,20529405 -g1,13599:6567858,20529405 -(1,13599:6567858,20529405:0,714081,196608 -r1,13668:32779637,20529405:26211779,910689,196608 -k1,13599:6567857,20529405:-26211780 -) -(1,13599:6567858,20529405:26211779,714081,196608 -[1,13599:6764466,20529405:25818563,517473,0 -(1,13597:6764466,20442977:25818563,431045,86428 -(1,13596:6764466,20442977:0,0,0 -g1,13596:6764466,20442977 -g1,13596:6764466,20442977 -g1,13596:6436786,20442977 -(1,13596:6436786,20442977:0,0,0 -) -g1,13596:6764466,20442977 -) -k1,13597:6764466,20442977:0 -g1,13597:10415960,20442977 -h1,13597:11743776,20442977:0,0,0 -k1,13597:32583028,20442977:20839252 -g1,13597:32583028,20442977 -) -] -) -g1,13599:32583029,20529405 -g1,13599:6764466,20529405 -g1,13599:6764466,20529405 -g1,13599:32583029,20529405 -g1,13599:32583029,20529405 -) -h1,13599:6764466,20726013:0,0,0 -(1,13603:6764466,21591093:25818563,505283,134348 -h1,13602:6764466,21591093:983040,0,0 -k1,13602:9718938,21591093:139045 -k1,13602:10540867,21591093:139044 -k1,13602:12330109,21591093:139045 -k1,13602:14787161,21591093:139044 -k1,13602:16030488,21591093:139045 -k1,13602:17455348,21591093:139044 -k1,13602:18342159,21591093:139045 -k1,13602:21662322,21591093:139045 -k1,13602:22417404,21591093:139044 -k1,13602:22912309,21591093:139045 -k1,13602:24924372,21591093:139044 -k1,13602:26163111,21591093:139045 -k1,13602:26953583,21591093:139044 -(1,13602:26953583,21591093:0,452978,115847 -r1,13668:29422120,21591093:2468537,568825,115847 -k1,13602:26953583,21591093:-2468537 -) -(1,13602:26953583,21591093:2468537,452978,115847 -k1,13602:26953583,21591093:3277 -h1,13602:29418843,21591093:0,411205,112570 -) -k1,13602:29734835,21591093:139045 -k1,13602:32583029,21591093:0 -) -(1,13603:6764466,22456173:25818563,513147,134348 -g1,13602:8288833,22456173 -g1,13602:9019559,22456173 -g1,13602:11690806,22456173 -g1,13602:12576197,22456173 -g1,13602:13794511,22456173 -g1,13602:15733066,22456173 -g1,13602:16591587,22456173 -g1,13602:17809901,22456173 -g1,13602:21411759,22456173 -k1,13603:32583029,22456173:8663208 -g1,13603:32583029,22456173 -) -v1,13605:6764466,23141028:0,393216,0 -(1,13610:6764466,24146748:25818563,1398936,196608 -g1,13610:6764466,24146748 -g1,13610:6764466,24146748 -g1,13610:6567858,24146748 -(1,13610:6567858,24146748:0,1398936,196608 -r1,13668:32779637,24146748:26211779,1595544,196608 -k1,13610:6567857,24146748:-26211780 -) -(1,13610:6567858,24146748:26211779,1398936,196608 -[1,13610:6764466,24146748:25818563,1202328,0 -(1,13607:6764466,23375465:25818563,431045,86428 -(1,13606:6764466,23375465:0,0,0 -g1,13606:6764466,23375465 -g1,13606:6764466,23375465 -g1,13606:6436786,23375465 -(1,13606:6436786,23375465:0,0,0 -) -g1,13606:6764466,23375465 -) -k1,13607:6764466,23375465:0 -g1,13607:10415960,23375465 -g1,13607:12075730,23375465 -h1,13607:13735500,23375465:0,0,0 -k1,13607:32583028,23375465:18847528 -g1,13607:32583028,23375465 -) -(1,13608:6764466,24060320:25818563,431045,86428 -h1,13608:6764466,24060320:0,0,0 -g1,13608:10415960,24060320 -g1,13608:12407684,24060320 -h1,13608:13735500,24060320:0,0,0 -k1,13608:32583028,24060320:18847528 -g1,13608:32583028,24060320 -) -] -) -g1,13610:32583029,24146748 -g1,13610:6764466,24146748 -g1,13610:6764466,24146748 -g1,13610:32583029,24146748 -g1,13610:32583029,24146748 -) -h1,13610:6764466,24343356:0,0,0 -(1,13620:6764466,25208436:25818563,513147,134348 -h1,13619:6764466,25208436:983040,0,0 -k1,13619:10844976,25208436:252552 -k1,13619:13370317,25208436:252552 -k1,13619:14727150,25208436:252551 -k1,13619:15727468,25208436:252552 -k1,13619:17493246,25208436:252552 -k1,13619:18397226,25208436:252552 -k1,13619:20864895,25208436:252552 -k1,13619:22136532,25208436:252552 -k1,13619:24324361,25208436:252551 -k1,13619:26738290,25208436:252552 -k1,13619:30728360,25208436:252552 -k1,13619:32583029,25208436:0 -) -(1,13620:6764466,26073516:25818563,513147,138281 -k1,13619:7796839,26073516:223003 -$1,13619:7796839,26073516 -$1,13619:8264766,26073516 -k1,13619:10711406,26073516:223003 -k1,13619:11617295,26073516:223004 -k1,13619:15647284,26073516:223003 -k1,13619:18143076,26073516:223003 -k1,13619:19902898,26073516:223003 -k1,13619:21574247,26073516:223003 -k1,13619:22953281,26073516:222979 -k1,13619:26064457,26073516:223004 -k1,13619:27490046,26073516:223003 -k1,13619:31531832,26073516:223003 -k1,13620:32583029,26073516:0 -) -(1,13620:6764466,26938596:25818563,513147,126483 -k1,13619:9354844,26938596:179964 -k1,13619:10726252,26938596:179963 -k1,13619:11973779,26938596:179945 -k1,13619:15426611,26938596:179964 -k1,13619:19425357,26938596:179963 -k1,13619:22753671,26938596:179964 -k1,13619:23501832,26938596:179964 -k1,13619:25065261,26938596:179964 -k1,13619:28708146,26938596:179963 -k1,13619:31653729,26938596:179964 -k1,13620:32583029,26938596:0 -) -(1,13620:6764466,27803676:25818563,513147,134348 -k1,13619:9320548,27803676:145668 -k1,13619:10750723,27803676:145669 -k1,13619:13519142,27803676:145668 -k1,13619:14683896,27803676:145669 -k1,13619:17662685,27803676:145668 -k1,13619:21415456,27803676:145669 -k1,13619:23415793,27803676:145668 -k1,13619:24370832,27803676:145669 -k1,13619:25535585,27803676:145668 -k1,13619:28167035,27803676:145669 -k1,13619:28971995,27803676:145668 -k1,13619:32583029,27803676:0 -) -(1,13620:6764466,28668756:25818563,513147,102891 -k1,13619:7548432,28668756:167928 -k1,13619:8735445,28668756:167928 -k1,13619:10615829,28668756:167928 -k1,13619:12945134,28668756:167928 -k1,13619:13740898,28668756:167929 -k1,13619:14927911,28668756:167928 -k1,13619:16462920,28668756:167928 -k1,13619:17290140,28668756:167928 -k1,13619:18614092,28668756:167897 -k1,13619:19973465,28668756:167928 -k1,13619:21382645,28668756:167928 -k1,13619:21906433,28668756:167928 -k1,13619:24426448,28668756:167928 -k1,13619:26274720,28668756:167929 -k1,13619:26974145,28668756:167928 -k1,13619:29213011,28668756:167928 -k1,13619:30572384,28668756:167928 -k1,13619:32583029,28668756:0 -) -(1,13620:6764466,29533836:25818563,505283,134348 -k1,13619:9747514,29533836:204321 -k1,13619:11056117,29533836:204321 -k1,13619:12008204,29533836:204321 -k1,13619:14068505,29533836:204321 -k1,13619:16782200,29533836:204321 -k1,13619:17669406,29533836:204321 -k1,13619:20702260,29533836:204320 -k1,13619:21522619,29533836:204321 -k1,13619:23612411,29533836:204321 -k1,13619:25183813,29533836:204321 -k1,13619:27038331,29533836:204321 -k1,13619:29897515,29533836:204321 -k1,13619:30633333,29533836:204321 -k1,13619:32583029,29533836:0 -) -(1,13620:6764466,30398916:25818563,513147,126483 -k1,13619:9992773,30398916:158601 -k1,13619:11099024,30398916:158600 -k1,13619:12724321,30398916:158601 -k1,13619:13950463,30398916:158560 -k1,13619:15300509,30398916:158601 -k1,13619:16615125,30398916:158561 -k1,13619:17765285,30398916:158600 -k1,13619:20702613,30398916:158601 -k1,13619:21622742,30398916:158601 -(1,13619:21622742,30398916:0,452978,115847 -r1,13668:24091279,30398916:2468537,568825,115847 -k1,13619:21622742,30398916:-2468537 -) -(1,13619:21622742,30398916:2468537,452978,115847 -k1,13619:21622742,30398916:3277 -h1,13619:24088002,30398916:0,411205,112570 -) -k1,13619:24423549,30398916:158600 -k1,13619:25773595,30398916:158601 -k1,13619:26741566,30398916:158601 -k1,13619:28408806,30398916:158601 -k1,13619:29897787,30398916:158600 -k1,13619:30817916,30398916:158601 -(1,13619:30817916,30398916:0,452978,115847 -r1,13668:32583029,30398916:1765113,568825,115847 -k1,13619:30817916,30398916:-1765113 -) -(1,13619:30817916,30398916:1765113,452978,115847 -k1,13619:30817916,30398916:3277 -h1,13619:32579752,30398916:0,411205,112570 -) -k1,13619:32583029,30398916:0 -) -(1,13620:6764466,31263996:25818563,505283,115847 -g1,13619:8155140,31263996 -(1,13619:8155140,31263996:0,452978,115847 -r1,13668:9920253,31263996:1765113,568825,115847 -k1,13619:8155140,31263996:-1765113 -) -(1,13619:8155140,31263996:1765113,452978,115847 -k1,13619:8155140,31263996:3277 -h1,13619:9916976,31263996:0,411205,112570 -) -k1,13620:32583029,31263996:22662776 -g1,13620:32583029,31263996 -) -v1,13622:6764466,31948851:0,393216,0 -(1,13627:6764466,32954571:25818563,1398936,196608 -g1,13627:6764466,32954571 -g1,13627:6764466,32954571 -g1,13627:6567858,32954571 -(1,13627:6567858,32954571:0,1398936,196608 -r1,13668:32779637,32954571:26211779,1595544,196608 -k1,13627:6567857,32954571:-26211780 -) -(1,13627:6567858,32954571:26211779,1398936,196608 -[1,13627:6764466,32954571:25818563,1202328,0 -(1,13624:6764466,32183288:25818563,431045,86428 -(1,13623:6764466,32183288:0,0,0 -g1,13623:6764466,32183288 -g1,13623:6764466,32183288 -g1,13623:6436786,32183288 -(1,13623:6436786,32183288:0,0,0 -) -g1,13623:6764466,32183288 -) -k1,13624:6764466,32183288:0 -g1,13624:9752052,32183288 -g1,13624:11411822,32183288 -g1,13624:13071592,32183288 -h1,13624:14731362,32183288:0,0,0 -k1,13624:32583030,32183288:17851668 -g1,13624:32583030,32183288 -) -(1,13625:6764466,32868143:25818563,431045,86428 -h1,13625:6764466,32868143:0,0,0 -g1,13625:9752052,32868143 -g1,13625:11411822,32868143 -g1,13625:13071592,32868143 -h1,13625:14731362,32868143:0,0,0 -k1,13625:32583030,32868143:17851668 -g1,13625:32583030,32868143 -) -] -) -g1,13627:32583029,32954571 -g1,13627:6764466,32954571 -g1,13627:6764466,32954571 -g1,13627:32583029,32954571 -g1,13627:32583029,32954571 -) -h1,13627:6764466,33151179:0,0,0 -(1,13631:6764466,34016259:25818563,505283,126483 -h1,13630:6764466,34016259:983040,0,0 -k1,13630:9640317,34016259:287834 -k1,13630:11098624,34016259:287834 -k1,13630:12861673,34016259:287834 -k1,13630:14267551,34016259:287834 -k1,13630:15574470,34016259:287834 -k1,13630:17358491,34016259:287834 -k1,13630:18262363,34016259:287834 -k1,13630:19569283,34016259:287835 -k1,13630:22158086,34016259:287834 -k1,13630:24474915,34016259:287834 -k1,13630:25933222,34016259:287834 -k1,13630:27353518,34016259:287834 -k1,13630:28389118,34016259:287834 -k1,13630:29985706,34016259:287834 -k1,13630:31298523,34016259:287834 -k1,13630:32583029,34016259:0 -) -(1,13631:6764466,34881339:25818563,505283,134348 -k1,13630:8656209,34881339:195016 -k1,13630:10506010,34881339:195017 -k1,13630:12973815,34881339:195016 -k1,13630:13984099,34881339:195016 -k1,13630:15245387,34881339:195017 -k1,13630:18955754,34881339:195016 -k1,13630:20863881,34881339:195016 -k1,13630:21868268,34881339:195017 -k1,13630:23948755,34881339:195016 -k1,13630:24675269,34881339:195017 -k1,13630:25889370,34881339:195016 -k1,13630:28019664,34881339:195016 -k1,13630:30376058,34881339:195017 -k1,13630:31966991,34881339:195016 -k1,13630:32583029,34881339:0 -) -(1,13631:6764466,35746419:25818563,513147,126483 -k1,13630:7980869,35746419:197318 -k1,13630:10336943,35746419:197318 -$1,13630:10336943,35746419 -$1,13630:10804870,35746419 -k1,13630:13069194,35746419:197318 -k1,13630:14334092,35746419:197316 -k1,13630:15722855,35746419:197318 -k1,13630:17076226,35746419:197316 -k1,13630:20493328,35746419:197318 -k1,13630:21638297,35746419:197318 -k1,13630:22854700,35746419:197318 -k1,13630:25814361,35746419:197318 -k1,13630:28329687,35746419:197318 -k1,13630:29718450,35746419:197318 -k1,13630:32583029,35746419:0 -) -(1,13631:6764466,36611499:25818563,513147,126483 -k1,13630:8829787,36611499:206064 -k1,13630:11023558,36611499:206064 -k1,13630:11761119,36611499:206064 -k1,13630:14810790,36611499:206064 -k1,13630:15778382,36611499:206064 -k1,13630:17436068,36611499:206064 -k1,13630:18301423,36611499:206063 -k1,13630:19526572,36611499:206064 -k1,13630:21387420,36611499:206064 -k1,13630:24039943,36611499:206064 -k1,13630:24873842,36611499:206064 -k1,13630:27919581,36611499:206064 -k1,13630:29296118,36611499:206064 -k1,13630:30634644,36611499:206064 -k1,13630:32583029,36611499:0 -) -(1,13631:6764466,37476579:25818563,513147,126483 -g1,13630:8248201,37476579 -g1,13630:9466515,37476579 -g1,13630:10838183,37476579 -g1,13630:13799755,37476579 -g1,13630:18140204,37476579 -g1,13630:18998725,37476579 -g1,13630:20217039,37476579 -g1,13630:23447963,37476579 -g1,13630:27220215,37476579 -g1,13630:28411004,37476579 -k1,13631:32583029,37476579:814616 -g1,13631:32583029,37476579 -) -] -g1,13632:32583029,37603062 -) -h1,13632:6630773,37603062:0,0,0 -(1,13635:6630773,38468142:25952256,513147,134348 -h1,13634:6630773,38468142:983040,0,0 -k1,13634:11130594,38468142:158061 -k1,13634:13104657,38468142:158060 -k1,13634:16047343,38468142:158061 -k1,13634:17485322,38468142:158061 -k1,13634:19037989,38468142:158061 -k1,13634:21227010,38468142:158060 -k1,13634:22036499,38468142:158061 -k1,13634:24956903,38468142:158061 -k1,13634:27489989,38468142:158061 -k1,13634:28307341,38468142:158060 -k1,13634:30177858,38468142:158061 -k1,13635:32583029,38468142:0 -) -(1,13635:6630773,39333222:25952256,505283,115847 -(1,13634:6630773,39333222:0,452978,115847 -r1,13668:8747598,39333222:2116825,568825,115847 -k1,13634:6630773,39333222:-2116825 -) -(1,13634:6630773,39333222:2116825,452978,115847 -k1,13634:6630773,39333222:3277 -h1,13634:8744321,39333222:0,411205,112570 -) -k1,13634:8913083,39333222:165485 -k1,13634:11419513,39333222:165484 -k1,13634:12604083,39333222:165485 -k1,13634:19019080,39333222:165484 -k1,13634:21445557,39333222:165485 -(1,13634:21445557,39333222:0,459977,115847 -r1,13668:23562382,39333222:2116825,575824,115847 -k1,13634:21445557,39333222:-2116825 -) -(1,13634:21445557,39333222:2116825,459977,115847 -k1,13634:21445557,39333222:3277 -h1,13634:23559105,39333222:0,411205,112570 -) -k1,13634:23727866,39333222:165484 -k1,13634:25084796,39333222:165485 -k1,13634:26038678,39333222:165484 -k1,13634:27652509,39333222:165485 -(1,13634:27652509,39333222:0,459977,115847 -r1,13668:32583029,39333222:4930520,575824,115847 -k1,13634:27652509,39333222:-4930520 -) -(1,13634:27652509,39333222:4930520,459977,115847 -k1,13634:27652509,39333222:3277 -h1,13634:32579752,39333222:0,411205,112570 -) -k1,13634:32583029,39333222:0 -) -(1,13635:6630773,40198302:25952256,513147,115847 -k1,13634:9021088,40198302:379670 -k1,13634:10419843,40198302:379670 -k1,13634:13845627,40198302:379671 -k1,13634:15172948,40198302:379670 -k1,13634:16571703,40198302:379670 -k1,13634:18663829,40198302:379670 -k1,13634:21031206,40198302:379670 -k1,13634:25195581,40198302:379671 -(1,13634:25195581,40198302:0,459977,115847 -r1,13668:28015830,40198302:2820249,575824,115847 -k1,13634:25195581,40198302:-2820249 -) -(1,13634:25195581,40198302:2820249,459977,115847 -k1,13634:25195581,40198302:3277 -h1,13634:28012553,40198302:0,411205,112570 -) -k1,13634:28395500,40198302:379670 -k1,13634:29966615,40198302:379670 -k1,13634:31134683,40198302:379670 -k1,13635:32583029,40198302:0 -) -(1,13635:6630773,41063382:25952256,513147,115847 -(1,13634:6630773,41063382:0,459977,115847 -r1,13668:11913004,41063382:5282231,575824,115847 -k1,13634:6630773,41063382:-5282231 -) -(1,13634:6630773,41063382:5282231,459977,115847 -k1,13634:6630773,41063382:3277 -h1,13634:11909727,41063382:0,411205,112570 -) -k1,13634:12171668,41063382:258664 -k1,13634:14634308,41063382:258664 -k1,13634:15912056,41063382:258663 -k1,13634:17883176,41063382:258664 -k1,13634:20326155,41063382:258664 -k1,13634:21776264,41063382:258664 -(1,13634:21776264,41063382:0,452978,115847 -r1,13668:24244801,41063382:2468537,568825,115847 -k1,13634:21776264,41063382:-2468537 -) -(1,13634:21776264,41063382:2468537,452978,115847 -k1,13634:21776264,41063382:3277 -h1,13634:24241524,41063382:0,411205,112570 -) -k1,13634:24503465,41063382:258664 -k1,13634:25953573,41063382:258663 -k1,13634:27000635,41063382:258664 -k1,13634:28707645,41063382:258664 -(1,13634:28707645,41063382:0,452978,115847 -r1,13668:32583029,41063382:3875384,568825,115847 -k1,13634:28707645,41063382:-3875384 -) -(1,13634:28707645,41063382:3875384,452978,115847 -k1,13634:28707645,41063382:3277 -h1,13634:32579752,41063382:0,411205,112570 -) -k1,13634:32583029,41063382:0 -) -(1,13635:6630773,41928462:25952256,513147,134348 -k1,13634:7900664,41928462:250806 -k1,13634:12775035,41928462:250806 -k1,13634:15919912,41928462:250807 -k1,13634:17060697,41928462:250806 -k1,13634:20798674,41928462:250806 -k1,13634:23241659,41928462:250806 -h1,13634:24212247,41928462:0,0,0 -k1,13634:24843817,41928462:250806 -k1,13634:26467603,41928462:250807 -k1,13634:30023390,41928462:250806 -k1,13634:31787422,41928462:250806 -k1,13635:32583029,41928462:0 -) -(1,13635:6630773,42793542:25952256,505283,122846 -g1,13634:9184711,42793542 -g1,13634:10375500,42793542 -(1,13634:10375500,42793542:0,452978,122846 -r1,13668:13547460,42793542:3171960,575824,122846 -k1,13634:10375500,42793542:-3171960 -) -(1,13634:10375500,42793542:3171960,452978,122846 -k1,13634:10375500,42793542:3277 -h1,13634:13544183,42793542:0,411205,112570 -) -g1,13634:13920359,42793542 -(1,13634:13920359,42793542:0,459977,115847 -r1,13668:17092319,42793542:3171960,575824,115847 -k1,13634:13920359,42793542:-3171960 -) -(1,13634:13920359,42793542:3171960,459977,115847 -k1,13634:13920359,42793542:3277 -h1,13634:17089042,42793542:0,411205,112570 -) -g1,13634:17465218,42793542 -(1,13634:17465218,42793542:0,452978,115847 -r1,13668:19933755,42793542:2468537,568825,115847 -k1,13634:17465218,42793542:-2468537 -) -(1,13634:17465218,42793542:2468537,452978,115847 -k1,13634:17465218,42793542:3277 -h1,13634:19930478,42793542:0,411205,112570 -) -g1,13634:20306654,42793542 -(1,13634:20306654,42793542:0,459977,115847 -r1,13668:24885462,42793542:4578808,575824,115847 -k1,13634:20306654,42793542:-4578808 -) -(1,13634:20306654,42793542:4578808,459977,115847 -k1,13634:20306654,42793542:3277 -h1,13634:24882185,42793542:0,411205,112570 -) -g1,13634:25084691,42793542 -g1,13634:26475365,42793542 -(1,13634:26475365,42793542:0,452978,115847 -r1,13668:31405885,42793542:4930520,568825,115847 -k1,13634:26475365,42793542:-4930520 -) -(1,13634:26475365,42793542:4930520,452978,115847 -k1,13634:26475365,42793542:3277 -h1,13634:31402608,42793542:0,411205,112570 -) -k1,13635:32583029,42793542:1124716 -g1,13635:32583029,42793542 -) -v1,13667:6630773,43658622:0,393216,0 -(1,13668:6630773,45706769:25952256,2441363,0 -g1,13668:6630773,45706769 -g1,13668:6237557,45706769 -r1,13668:6368629,45706769:131072,2441363,0 -g1,13668:6567858,45706769 -g1,13668:6764466,45706769 -[1,13668:6764466,45706769:25818563,2441363,0 -(1,13668:6764466,43931099:25818563,665693,196608 -(1,13667:6764466,43931099:0,665693,196608 -r1,13668:7868133,43931099:1103667,862301,196608 -k1,13667:6764466,43931099:-1103667 -) -(1,13667:6764466,43931099:1103667,665693,196608 -) -k1,13667:8045469,43931099:177336 -k1,13667:9363398,43931099:327680 -k1,13667:13006278,43931099:177336 -k1,13667:15789982,43931099:177337 -k1,13667:17361269,43931099:177336 -k1,13667:19235332,43931099:177336 -k1,13667:22627209,43931099:177336 -k1,13667:23995990,43931099:177336 -k1,13667:27163735,43931099:177337 -k1,13667:30125696,43931099:177336 -k1,13667:31064560,43931099:177336 -k1,13668:32583029,43931099:0 -) -(1,13668:6764466,44796179:25818563,513147,134348 -k1,13667:7939105,44796179:184390 -k1,13667:9632134,44796179:184390 -k1,13667:14642594,44796179:184389 -k1,13667:16018429,44796179:184390 -k1,13667:17295304,44796179:184390 -k1,13667:19118749,44796179:184390 -k1,13667:19954566,44796179:184389 -k1,13667:22507427,44796179:184390 -(1,13667:22507427,44796179:0,459977,115847 -r1,13668:23569116,44796179:1061689,575824,115847 -k1,13667:22507427,44796179:-1061689 -) -(1,13667:22507427,44796179:1061689,459977,115847 -k1,13667:22507427,44796179:3277 -h1,13667:23565839,44796179:0,411205,112570 -) -k1,13667:23753506,44796179:184390 -k1,13667:25650352,44796179:184390 -k1,13667:27690066,44796179:184390 -k1,13667:28557340,44796179:184389 -k1,13667:30729437,44796179:184390 -k1,13667:31931601,44796179:184390 -k1,13667:32583029,44796179:0 -) -(1,13668:6764466,45661259:25818563,513147,126483 -g1,13667:8665665,45661259 -g1,13667:10254257,45661259 -g1,13667:11112778,45661259 -g1,13667:12770838,45661259 -k1,13668:32583029,45661259:17316580 -g1,13668:32583029,45661259 -) -] -g1,13668:32583029,45706769 -) -] -(1,13668:32583029,45706769:0,0,0 -g1,13668:32583029,45706769 -) -) -] -(1,13668:6630773,47279633:25952256,0,0 -h1,13668:6630773,47279633:25952256,0,0 -) -] -(1,13668:4262630,4025873:0,0,0 -[1,13668:-473656,4025873:0,0,0 -(1,13668:-473656,-710413:0,0,0 -(1,13668:-473656,-710413:0,0,0 -g1,13668:-473656,-710413 -) -g1,13668:-473656,-710413 -) -] -) -] -!31798 +) +) +] +[1,13630:3078558,4812305:0,0,0 +(1,13630:3078558,49800853:0,16384,2228224 +g1,13630:29030814,49800853 +g1,13630:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13630:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13630:37855564,49800853:1179648,16384,0 +) +) +k1,13630:3078556,49800853:-34777008 +) +] +g1,13630:6630773,4812305 +g1,13630:6630773,4812305 +g1,13630:8843268,4812305 +g1,13630:11066249,4812305 +g1,13630:13415059,4812305 +k1,13630:31387651,4812305:17972592 +) +) +] +[1,13630:6630773,45706769:25952256,40108032,0 +(1,13630:6630773,45706769:25952256,40108032,0 +(1,13630:6630773,45706769:0,0,0 +g1,13630:6630773,45706769 +) +[1,13630:6630773,45706769:25952256,40108032,0 +v1,13527:6630773,6254097:0,393216,0 +(1,13527:6630773,8616314:25952256,2755433,196608 +g1,13527:6630773,8616314 +g1,13527:6630773,8616314 +g1,13527:6434165,8616314 +(1,13527:6434165,8616314:0,2755433,196608 +r1,13630:32779637,8616314:26345472,2952041,196608 +k1,13527:6434165,8616314:-26345472 +) +(1,13527:6434165,8616314:26345472,2755433,196608 +[1,13527:6630773,8616314:25952256,2558825,0 +(1,13526:6630773,6455503:25952256,398014,0 +h1,13526:6630773,6455503:0,0,0 +h1,13526:7294681,6455503:0,0,0 +k1,13526:32583029,6455503:25288348 +g1,13526:32583029,6455503 +) +(1,13526:6630773,7140358:25952256,431045,112852 +h1,13526:6630773,7140358:0,0,0 +g1,13526:7626635,7140358 +g1,13526:10614220,7140358 +g1,13526:13601805,7140358 +g1,13526:15925483,7140358 +g1,13526:17917207,7140358 +g1,13526:18913069,7140358 +g1,13526:19908931,7140358 +g1,13526:22564563,7140358 +g1,13526:23560425,7140358 +h1,13526:25884103,7140358:0,0,0 +k1,13526:32583029,7140358:6698926 +g1,13526:32583029,7140358 +) +(1,13526:6630773,7825213:25952256,424439,112852 +h1,13526:6630773,7825213:0,0,0 +g1,13526:7626635,7825213 +g1,13526:10614220,7825213 +g1,13526:14265713,7825213 +g1,13526:14597667,7825213 +g1,13526:17253299,7825213 +g1,13526:20240884,7825213 +g1,13526:23892377,7825213 +g1,13526:24224331,7825213 +h1,13526:26216055,7825213:0,0,0 +k1,13526:32583029,7825213:6366974 +g1,13526:32583029,7825213 +) +(1,13526:6630773,8510068:25952256,424439,106246 +h1,13526:6630773,8510068:0,0,0 +g1,13526:7626635,8510068 +g1,13526:11942036,8510068 +g1,13526:13933760,8510068 +g1,13526:14929622,8510068 +g1,13526:15593530,8510068 +g1,13526:16921346,8510068 +g1,13526:17917208,8510068 +g1,13526:19245024,8510068 +g1,13526:19576978,8510068 +g1,13526:22564564,8510068 +k1,13526:22564564,8510068:0 +h1,13526:25220196,8510068:0,0,0 +k1,13526:32583029,8510068:7362833 +g1,13526:32583029,8510068 +) +] +) +g1,13527:32583029,8616314 +g1,13527:6630773,8616314 +g1,13527:6630773,8616314 +g1,13527:32583029,8616314 +g1,13527:32583029,8616314 +) +h1,13527:6630773,8812922:0,0,0 +(1,13531:6630773,9678002:25952256,505283,134348 +h1,13530:6630773,9678002:983040,0,0 +k1,13530:9050708,9678002:240208 +k1,13530:12281324,9678002:240208 +k1,13530:13053029,9678002:240208 +k1,13530:16420615,9678002:240208 +k1,13530:17276861,9678002:240208 +k1,13530:20299728,9678002:240208 +k1,13530:22535507,9678002:240208 +k1,13530:24766699,9678002:240208 +(1,13530:24766699,9678002:0,452978,115847 +r1,13630:30400643,9678002:5633944,568825,115847 +k1,13530:24766699,9678002:-5633944 +) +(1,13530:24766699,9678002:5633944,452978,115847 +g1,13530:26528535,9678002 +g1,13530:27231959,9678002 +g1,13530:27935383,9678002 +g1,13530:28638807,9678002 +h1,13530:30397366,9678002:0,411205,112570 +) +k1,13530:30640851,9678002:240208 +k1,13530:31563944,9678002:240208 +k1,13530:32583029,9678002:0 +) +(1,13531:6630773,10543082:25952256,513147,126483 +k1,13530:10870188,10543082:218781 +k1,13530:11748261,10543082:218781 +k1,13530:12986127,10543082:218781 +k1,13530:15192615,10543082:218781 +k1,13530:17297522,10543082:218781 +k1,13530:18887316,10543082:218781 +k1,13530:20125182,10543082:218781 +k1,13530:21733326,10543082:218781 +k1,13530:23639004,10543082:218781 +k1,13530:27682466,10543082:218781 +k1,13530:30526619,10543082:218781 +k1,13530:31764485,10543082:218781 +k1,13531:32583029,10543082:0 +) +(1,13531:6630773,11408162:25952256,513147,126483 +k1,13530:9176323,11408162:181666 +k1,13530:12162274,11408162:181665 +k1,13530:13535385,11408162:181666 +k1,13530:16077001,11408162:181665 +k1,13530:16917959,11408162:181666 +k1,13530:18118710,11408162:181666 +k1,13530:21368115,11408162:181665 +k1,13530:22232666,11408162:181666 +k1,13530:25694408,11408162:181665 +k1,13530:28511277,11408162:181666 +k1,13530:32583029,11408162:0 +) +(1,13531:6630773,12273242:25952256,513147,126483 +k1,13530:8000714,12273242:178496 +k1,13530:9198295,12273242:178496 +k1,13530:11089247,12273242:178496 +k1,13530:12609920,12273242:178496 +k1,13530:17295327,12273242:178496 +k1,13530:20175873,12273242:178497 +k1,13530:23400482,12273242:178496 +k1,13530:24238270,12273242:178496 +k1,13530:25435851,12273242:178496 +k1,13530:27602054,12273242:178496 +k1,13530:31391584,12273242:178496 +k1,13530:32583029,12273242:0 +) +(1,13531:6630773,13138322:25952256,513147,134348 +k1,13530:8372392,13138322:232980 +k1,13530:11431285,13138322:232981 +k1,13530:13035278,13138322:232980 +k1,13530:17891824,13138322:232981 +$1,13530:17891824,13138322 +$1,13530:18212295,13138322 +k1,13530:20353683,13138322:232980 +k1,13530:21214499,13138322:232981 +k1,13530:22466564,13138322:232980 +k1,13530:23847735,13138322:232980 +k1,13530:25735500,13138322:232981 +k1,13530:27640959,13138322:232980 +k1,13530:29528724,13138322:232981 +k1,13530:30293201,13138322:232980 +k1,13531:32583029,13138322:0 +) +(1,13531:6630773,14003402:25952256,513147,134348 +k1,13530:8463433,14003402:209333 +k1,13530:9482136,14003402:209333 +k1,13530:11844981,14003402:209332 +k1,13530:14897921,14003402:209333 +k1,13530:16714197,14003402:209333 +k1,13530:18114975,14003402:209333 +k1,13530:19112705,14003402:209332 +k1,13530:21777672,14003402:209333 +k1,13530:22646297,14003402:209333 +k1,13530:25538674,14003402:209333 +k1,13530:26939451,14003402:209332 +k1,13530:29302297,14003402:209333 +k1,13530:32583029,14003402:0 +) +(1,13531:6630773,14868482:25952256,615216,95026 +g1,13530:7489294,14868482 +g1,13530:12208541,14868482 +$1,13530:12415635,14868482 +(1,13530:12909776,14593201:311689,339935,0 +) +$1,13530:13221465,14868482 +g1,13530:13627788,14868482 +g1,13530:15018462,14868482 +$1,13530:15018462,14868482 +$1,13530:15463451,14868482 +k1,13531:32583029,14868482:14331021 +g1,13531:32583029,14868482 +) +(1,13533:6630773,15733562:25952256,513147,138281 +h1,13532:6630773,15733562:983040,0,0 +k1,13532:11008362,15733562:296662 +$1,13532:11008362,15733562 +$1,13532:11516266,15733562 +k1,13532:11812929,15733562:296663 +k1,13532:13301036,15733562:296662 +$1,13532:13301036,15733562 +$1,13532:13745370,15733562 +k1,13532:14042032,15733562:296662 +k1,13532:14954733,15733562:296663 +$1,13532:14954733,15733562 +k1,13532:15866680,15733562:360134 +k1,13532:16795012,15733562:360135 +k1,13532:17519794,15733562:216878 +k1,13532:18005370,15733562:216878 +k1,13532:18620706,15733562:216877 +k1,13532:19405781,15733562:216878 +k1,13532:20066993,15733562:216878 +k1,13532:20552569,15733562:216878 +$1,13532:21055230,15733562 +k1,13532:21351892,15733562:296662 +k1,13532:22410083,15733562:296663 +k1,13532:23725830,15733562:296662 +k1,13532:27068605,15733562:296662 +k1,13532:28312919,15733562:296663 +k1,13532:29628666,15733562:296662 +k1,13532:32583029,15733562:0 +) +(1,13533:6630773,16598642:25952256,513147,134348 +k1,13532:7416667,16598642:323210 +k1,13532:8308075,16598642:323211 +$1,13532:10261048,16598642 +k1,13532:10711177,16598642:276459 +k1,13532:12179082,16598642:276460 +k1,13532:14327249,16598642:276459 +$1,13532:14327249,16598642 +k1,13532:15090862,16598642:323211 +k1,13532:15982269,16598642:323210 +$1,13532:17367045,16598642 +k1,13532:17817174,16598642:276459 +k1,13532:18961986,16598642:276460 +k1,13532:21262197,16598642:276459 +k1,13532:22309360,16598642:276460 +k1,13532:25301631,16598642:276459 +k1,13532:26525741,16598642:276459 +k1,13532:27821286,16598642:276460 +k1,13532:31414522,16598642:276459 +k1,13532:32583029,16598642:0 +) +(1,13533:6630773,17463722:25952256,513147,138281 +k1,13532:7365606,17463722:183020 +k1,13532:8116823,17463722:183020 +k1,13532:10215829,17463722:146033 +k1,13532:10930058,17463722:146032 +$1,13532:12817495,17463722 +k1,13532:13190919,17463722:199754 +k1,13532:16325375,17463722:199754 +k1,13532:18219891,17463722:199755 +k1,13532:19438730,17463722:199754 +k1,13532:21716632,17463722:199755 +k1,13532:22575678,17463722:199754 +k1,13532:23794517,17463722:199754 +k1,13532:26844433,17463722:199755 +k1,13532:27912539,17463722:199754 +k1,13532:29787394,17463722:199755 +k1,13532:31802495,17463722:199754 +k1,13532:32583029,17463722:0 +) +(1,13533:6630773,18328802:25952256,513147,134348 +k1,13532:8106442,18328802:231796 +k1,13532:11394837,18328802:231795 +k1,13532:12911139,18328802:231796 +k1,13532:14162019,18328802:231795 +k1,13532:17207276,18328802:231796 +k1,13532:20099833,18328802:231795 +k1,13532:21953645,18328802:231796 +k1,13532:22933206,18328802:231795 +k1,13532:24585167,18328802:231796 +k1,13532:26515000,18328802:231795 +k1,13532:28613261,18328802:231796 +k1,13532:29376553,18328802:231795 +k1,13532:31202185,18328802:231796 +k1,13532:32583029,18328802:0 +) +(1,13533:6630773,19193882:25952256,513147,134348 +k1,13532:9619411,19193882:230228 +k1,13532:11134145,19193882:230228 +k1,13532:12232725,19193882:230228 +k1,13532:14643336,19193882:230228 +k1,13532:15939835,19193882:230228 +k1,13532:18885875,19193882:230228 +k1,13532:20135188,19193882:230228 +k1,13532:22045759,19193882:230228 +k1,13532:22935279,19193882:230228 +$1,13532:22935279,19193882 +$1,13532:23443183,19193882 +k1,13532:23673411,19193882:230228 +k1,13532:24975807,19193882:230227 +k1,13532:27533218,19193882:230228 +k1,13532:28697989,19193882:230228 +$1,13532:28697989,19193882 +k1,13532:29444609,19193882:238716 +k1,13532:30251521,19193882:238715 +$1,13532:30649980,19193882 +k1,13532:31053878,19193882:230228 +k1,13532:31966991,19193882:230228 +k1,13532:32583029,19193882:0 +) +(1,13533:6630773,20058962:25952256,513147,138281 +g1,13532:8531972,20058962 +g1,13532:10859810,20058962 +g1,13532:11746512,20058962 +g1,13532:12964826,20058962 +g1,13532:15151762,20058962 +$1,13532:15151762,20058962 +g1,13532:15885635,20058962 +g1,13532:16635892,20058962 +g1,13532:17225874,20058962 +g1,13532:17640220,20058962 +$1,13532:18142881,20058962 +k1,13533:32583029,20058962:14387720 +g1,13533:32583029,20058962 +) +(1,13535:6630773,20924042:25952256,513147,126483 +h1,13534:6630773,20924042:983040,0,0 +k1,13534:8431235,20924042:189587 +k1,13534:9035655,20924042:189577 +k1,13534:11716921,20924042:189587 +k1,13534:12925593,20924042:189587 +k1,13534:15982380,20924042:189587 +k1,13534:16703464,20924042:189587 +k1,13534:19651461,20924042:189587 +k1,13534:20602576,20924042:189587 +k1,13534:23231413,20924042:189587 +k1,13534:24145827,20924042:189586 +k1,13534:25354499,20924042:189587 +k1,13534:27531793,20924042:189587 +k1,13534:29433836,20924042:189587 +k1,13534:31478747,20924042:189587 +k1,13534:32583029,20924042:0 +) +(1,13535:6630773,21789122:25952256,513147,134348 +k1,13534:7613632,21789122:235093 +k1,13534:11417159,21789122:235092 +k1,13534:12338414,21789122:235093 +(1,13534:12338414,21789122:0,452978,115847 +r1,13630:16565510,21789122:4227096,568825,115847 +k1,13534:12338414,21789122:-4227096 +) +(1,13534:12338414,21789122:4227096,452978,115847 +g1,13534:14100250,21789122 +g1,13534:14803674,21789122 +h1,13534:16562233,21789122:0,411205,112570 +) +k1,13534:18525511,21789122:235093 +k1,13534:19779688,21789122:235092 +k1,13534:22486799,21789122:235093 +(1,13534:22486799,21789122:0,435480,115847 +r1,13630:23548489,21789122:1061690,551327,115847 +k1,13534:22486799,21789122:-1061690 +) +(1,13534:22486799,21789122:1061690,435480,115847 +g1,13534:23193500,21789122 +h1,13534:23545212,21789122:0,411205,112570 +) +k1,13534:23783581,21789122:235092 +k1,13534:25511584,21789122:235093 +k1,13534:26812948,21789122:235093 +k1,13534:29288716,21789122:235092 +k1,13534:30542894,21789122:235093 +k1,13534:32583029,21789122:0 +) +(1,13535:6630773,22654202:25952256,513147,126483 +k1,13534:7617910,22654202:179734 +k1,13534:10231651,22654202:179734 +k1,13534:11430470,22654202:179734 +k1,13534:14651075,22654202:179734 +k1,13534:15699161,22654202:179734 +k1,13534:17409161,22654202:179734 +k1,13534:18240324,22654202:179735 +k1,13534:20679084,22654202:179734 +k1,13534:21877903,22654202:179734 +k1,13534:24045344,22654202:179734 +k1,13534:24911240,22654202:179734 +(1,13534:24911240,22654202:0,452978,115847 +r1,13630:30545184,22654202:5633944,568825,115847 +k1,13534:24911240,22654202:-5633944 +) +(1,13534:24911240,22654202:5633944,452978,115847 +g1,13534:26673076,22654202 +g1,13534:27376500,22654202 +g1,13534:29486771,22654202 +g1,13534:30190195,22654202 +h1,13534:30541907,22654202:0,411205,112570 +) +k1,13534:30724918,22654202:179734 +k1,13534:31794631,22654202:179734 +k1,13534:32583029,22654202:0 +) +(1,13535:6630773,23519282:25952256,513147,134348 +k1,13534:10103243,23519282:167489 +(1,13534:10103243,23519282:0,452978,115847 +r1,13630:15737187,23519282:5633944,568825,115847 +k1,13534:10103243,23519282:-5633944 +) +(1,13534:10103243,23519282:5633944,452978,115847 +g1,13534:11865079,23519282 +g1,13534:12568503,23519282 +g1,13534:14678774,23519282 +g1,13534:15382198,23519282 +h1,13534:15733910,23519282:0,411205,112570 +) +k1,13534:16285440,23519282:167489 +k1,13534:17400580,23519282:167489 +k1,13534:17923929,23519282:167489 +k1,13534:20569989,23519282:167488 +k1,13534:21905985,23519282:167489 +k1,13534:24500928,23519282:167489 +k1,13534:27226943,23519282:167489 +k1,13534:28413517,23519282:167489 +k1,13534:30455336,23519282:167489 +$1,13534:30662430,23519282 +k1,13534:31347151,23519282:182060 +k1,13534:32097408,23519282:182060 +$1,13534:32495867,23519282 +k1,13534:32583029,23519282:0 +) +(1,13535:6630773,24384362:25952256,513147,138281 +k1,13534:7408588,24384362:226002 +k1,13534:8202788,24384362:226003 +$1,13534:8601247,24384362 +k1,13534:9205283,24384362:223272 +k1,13534:10056390,24384362:223272 +k1,13534:11298747,24384362:223272 +k1,13534:14512427,24384362:223272 +k1,13534:15683350,24384362:223272 +k1,13534:17109863,24384362:223272 +k1,13534:19320842,24384362:223272 +k1,13534:21198898,24384362:223272 +k1,13534:21953668,24384362:223273 +k1,13534:22947643,24384362:223272 +k1,13534:25886727,24384362:223272 +k1,13534:27057650,24384362:223272 +k1,13534:28300007,24384362:223272 +k1,13534:30221317,24384362:223272 +k1,13534:31516758,24384362:223272 +k1,13534:32583029,24384362:0 +) +(1,13535:6630773,25249442:25952256,513147,126483 +g1,13534:7777653,25249442 +g1,13534:8995967,25249442 +k1,13535:32583028,25249442:20667432 +g1,13535:32583028,25249442 +) +v1,13537:6630773,25934297:0,393216,0 +(1,13561:6630773,38733442:25952256,13192361,196608 +g1,13561:6630773,38733442 +g1,13561:6630773,38733442 +g1,13561:6434165,38733442 +(1,13561:6434165,38733442:0,13192361,196608 +r1,13630:32779637,38733442:26345472,13388969,196608 +k1,13561:6434165,38733442:-26345472 +) +(1,13561:6434165,38733442:26345472,13192361,196608 +[1,13561:6630773,38733442:25952256,12995753,0 +(1,13539:6630773,26168734:25952256,431045,106246 +(1,13538:6630773,26168734:0,0,0 +g1,13538:6630773,26168734 +g1,13538:6630773,26168734 +g1,13538:6303093,26168734 +(1,13538:6303093,26168734:0,0,0 +) +g1,13538:6630773,26168734 +) +g1,13539:7958589,26168734 +g1,13539:8954451,26168734 +g1,13539:11610083,26168734 +g1,13539:12273991,26168734 +g1,13539:14265715,26168734 +g1,13539:14929623,26168734 +g1,13539:15925485,26168734 +g1,13539:17585255,26168734 +g1,13539:18249163,26168734 +h1,13539:19908933,26168734:0,0,0 +k1,13539:32583029,26168734:12674096 +g1,13539:32583029,26168734 +) +(1,13540:6630773,26853589:25952256,431045,106246 +h1,13540:6630773,26853589:0,0,0 +k1,13540:6630773,26853589:0 +h1,13540:10614221,26853589:0,0,0 +k1,13540:32583029,26853589:21968808 +g1,13540:32583029,26853589 +) +(1,13560:6630773,27669516:25952256,398014,0 +(1,13542:6630773,27669516:0,0,0 +g1,13542:6630773,27669516 +g1,13542:6630773,27669516 +g1,13542:6303093,27669516 +(1,13542:6303093,27669516:0,0,0 +) +g1,13542:6630773,27669516 +) +h1,13560:7294681,27669516:0,0,0 +k1,13560:32583029,27669516:25288348 +g1,13560:32583029,27669516 +) +(1,13560:6630773,28354371:25952256,424439,8257 +h1,13560:6630773,28354371:0,0,0 +g1,13560:7626635,28354371 +h1,13560:9286405,28354371:0,0,0 +k1,13560:32583029,28354371:23296624 +g1,13560:32583029,28354371 +) +(1,13560:6630773,29039226:25952256,431045,106246 +h1,13560:6630773,29039226:0,0,0 +g1,13560:7626635,29039226 +g1,13560:11278128,29039226 +g1,13560:11942036,29039226 +g1,13560:13601806,29039226 +g1,13560:14265714,29039226 +g1,13560:16257438,29039226 +g1,13560:16921346,29039226 +g1,13560:17917208,29039226 +g1,13560:19576978,29039226 +g1,13560:20240886,29039226 +h1,13560:21900656,29039226:0,0,0 +k1,13560:32583029,29039226:10682373 +g1,13560:32583029,29039226 +) +(1,13560:6630773,29724081:25952256,398014,0 +h1,13560:6630773,29724081:0,0,0 +h1,13560:7294681,29724081:0,0,0 +k1,13560:32583029,29724081:25288348 +g1,13560:32583029,29724081 +) +(1,13560:6630773,30408936:25952256,424439,6605 +h1,13560:6630773,30408936:0,0,0 +g1,13560:7626635,30408936 +h1,13560:10946174,30408936:0,0,0 +k1,13560:32583030,30408936:21636856 +g1,13560:32583030,30408936 +) +(1,13560:6630773,31093791:25952256,424439,86428 +h1,13560:6630773,31093791:0,0,0 +g1,13560:7626635,31093791 +g1,13560:7958589,31093791 +g1,13560:8290543,31093791 +g1,13560:8622497,31093791 +g1,13560:8954451,31093791 +g1,13560:10282267,31093791 +g1,13560:10614221,31093791 +g1,13560:10946175,31093791 +g1,13560:11278129,31093791 +g1,13560:11610083,31093791 +g1,13560:11942037,31093791 +g1,13560:12937899,31093791 +g1,13560:13269853,31093791 +g1,13560:15593531,31093791 +g1,13560:15925485,31093791 +g1,13560:16257439,31093791 +g1,13560:16589393,31093791 +g1,13560:16921347,31093791 +g1,13560:17253301,31093791 +g1,13560:18249163,31093791 +g1,13560:18581117,31093791 +g1,13560:18913071,31093791 +g1,13560:19245025,31093791 +g1,13560:19576979,31093791 +h1,13560:20572841,31093791:0,0,0 +k1,13560:32583029,31093791:12010188 +g1,13560:32583029,31093791 +) +(1,13560:6630773,31778646:25952256,407923,9908 +h1,13560:6630773,31778646:0,0,0 +g1,13560:7626635,31778646 +g1,13560:10282267,31778646 +g1,13560:12937899,31778646 +g1,13560:13269853,31778646 +g1,13560:15593531,31778646 +g1,13560:15925485,31778646 +g1,13560:16257439,31778646 +g1,13560:18249163,31778646 +g1,13560:18581117,31778646 +h1,13560:20572841,31778646:0,0,0 +k1,13560:32583029,31778646:12010188 +g1,13560:32583029,31778646 +) +(1,13560:6630773,32463501:25952256,398014,0 +h1,13560:6630773,32463501:0,0,0 +h1,13560:7294681,32463501:0,0,0 +k1,13560:32583029,32463501:25288348 +g1,13560:32583029,32463501 +) +(1,13560:6630773,33148356:25952256,431045,8257 +h1,13560:6630773,33148356:0,0,0 +g1,13560:7626635,33148356 +h1,13560:11942036,33148356:0,0,0 +k1,13560:32583028,33148356:20640992 +g1,13560:32583028,33148356 +) +(1,13560:6630773,33833211:25952256,424439,79822 +h1,13560:6630773,33833211:0,0,0 +g1,13560:7626635,33833211 +g1,13560:7958589,33833211 +g1,13560:8290543,33833211 +g1,13560:8622497,33833211 +g1,13560:8954451,33833211 +g1,13560:9286405,33833211 +g1,13560:9618359,33833211 +g1,13560:12605944,33833211 +g1,13560:14265714,33833211 +g1,13560:16257438,33833211 +g1,13560:16921346,33833211 +g1,13560:18913070,33833211 +k1,13560:18913070,33833211:0 +h1,13560:21568702,33833211:0,0,0 +k1,13560:32583029,33833211:11014327 +g1,13560:32583029,33833211 +) +(1,13560:6630773,34518066:25952256,424439,106246 +h1,13560:6630773,34518066:0,0,0 +g1,13560:7626635,34518066 +g1,13560:9618359,34518066 +g1,13560:9950313,34518066 +g1,13560:10282267,34518066 +g1,13560:12605945,34518066 +g1,13560:12937899,34518066 +g1,13560:13269853,34518066 +g1,13560:13601807,34518066 +g1,13560:13933761,34518066 +g1,13560:16257439,34518066 +g1,13560:16589393,34518066 +g1,13560:16921347,34518066 +g1,13560:18913071,34518066 +g1,13560:19245025,34518066 +g1,13560:19576979,34518066 +g1,13560:21900657,34518066 +h1,13560:22896519,34518066:0,0,0 +k1,13560:32583029,34518066:9686510 +g1,13560:32583029,34518066 +) +(1,13560:6630773,35202921:25952256,398014,0 +h1,13560:6630773,35202921:0,0,0 +g1,13560:7626635,35202921 +k1,13560:7626635,35202921:0 +h1,13560:8622497,35202921:0,0,0 +k1,13560:32583029,35202921:23960532 +g1,13560:32583029,35202921 +) +(1,13560:6630773,35887776:25952256,431045,112852 +h1,13560:6630773,35887776:0,0,0 +g1,13560:7626635,35887776 +g1,13560:10282267,35887776 +g1,13560:12605945,35887776 +g1,13560:12937899,35887776 +g1,13560:13601807,35887776 +g1,13560:15593531,35887776 +g1,13560:17585255,35887776 +g1,13560:19245025,35887776 +g1,13560:20904795,35887776 +g1,13560:22232611,35887776 +g1,13560:23892381,35887776 +g1,13560:25220197,35887776 +g1,13560:26548013,35887776 +g1,13560:27211921,35887776 +g1,13560:27875829,35887776 +h1,13560:28207783,35887776:0,0,0 +k1,13560:32583029,35887776:4375246 +g1,13560:32583029,35887776 +) +(1,13560:6630773,36572631:25952256,398014,0 +h1,13560:6630773,36572631:0,0,0 +h1,13560:7294681,36572631:0,0,0 +k1,13560:32583029,36572631:25288348 +g1,13560:32583029,36572631 +) +(1,13560:6630773,37257486:25952256,431045,112852 +h1,13560:6630773,37257486:0,0,0 +g1,13560:7626635,37257486 +g1,13560:10614220,37257486 +g1,13560:13601805,37257486 +g1,13560:15925483,37257486 +g1,13560:17917207,37257486 +g1,13560:18913069,37257486 +g1,13560:19908931,37257486 +g1,13560:22564563,37257486 +g1,13560:23560425,37257486 +h1,13560:25884103,37257486:0,0,0 +k1,13560:32583029,37257486:6698926 +g1,13560:32583029,37257486 +) +(1,13560:6630773,37942341:25952256,424439,112852 +h1,13560:6630773,37942341:0,0,0 +g1,13560:7626635,37942341 +g1,13560:10614220,37942341 +g1,13560:14265713,37942341 +g1,13560:14597667,37942341 +g1,13560:17253299,37942341 +g1,13560:20240884,37942341 +g1,13560:23892377,37942341 +g1,13560:24224331,37942341 +h1,13560:26216055,37942341:0,0,0 +k1,13560:32583029,37942341:6366974 +g1,13560:32583029,37942341 +) +(1,13560:6630773,38627196:25952256,424439,106246 +h1,13560:6630773,38627196:0,0,0 +g1,13560:7626635,38627196 +g1,13560:11942036,38627196 +g1,13560:13933760,38627196 +g1,13560:14929622,38627196 +g1,13560:15593530,38627196 +g1,13560:16921346,38627196 +g1,13560:17917208,38627196 +g1,13560:19245024,38627196 +g1,13560:19576978,38627196 +g1,13560:22564564,38627196 +g1,13560:23228472,38627196 +k1,13560:23228472,38627196:0 +h1,13560:25552150,38627196:0,0,0 +k1,13560:32583029,38627196:7030879 +g1,13560:32583029,38627196 +) +] +) +g1,13561:32583029,38733442 +g1,13561:6630773,38733442 +g1,13561:6630773,38733442 +g1,13561:32583029,38733442 +g1,13561:32583029,38733442 +) +h1,13561:6630773,38930050:0,0,0 +(1,13565:6630773,39795130:25952256,513147,138281 +h1,13564:6630773,39795130:983040,0,0 +k1,13564:9058779,39795130:248279 +k1,13564:12096926,39795130:248279 +k1,13564:13292855,39795130:248278 +(1,13564:13292855,39795130:0,459977,115847 +r1,13630:14354544,39795130:1061689,575824,115847 +k1,13564:13292855,39795130:-1061689 +) +(1,13564:13292855,39795130:1061689,459977,115847 +k1,13564:13292855,39795130:3277 +h1,13564:14351267,39795130:0,411205,112570 +) +k1,13564:14602823,39795130:248279 +k1,13564:15382599,39795130:248279 +$1,13564:15382599,39795130 +k1,13564:16206118,39795130:271706 +k1,13564:17046021,39795130:271706 +$1,13564:18933458,39795130 +k1,13564:19355407,39795130:248279 +k1,13564:21265679,39795130:248279 +k1,13564:22533042,39795130:248278 +k1,13564:25849061,39795130:248279 +k1,13564:26555437,39795130:248279 +k1,13564:27907998,39795130:248279 +k1,13564:28904042,39795130:248278 +k1,13564:30592147,39795130:248279 +k1,13564:32124932,39795130:248279 +k1,13564:32583029,39795130:0 +) +(1,13565:6630773,40660210:25952256,513147,134348 +k1,13564:7422869,40660210:260599 +k1,13564:11376422,40660210:260599 +k1,13564:12323183,40660210:260599 +k1,13564:13602867,40660210:260599 +k1,13564:16342038,40660210:260599 +k1,13564:17771144,40660210:260599 +k1,13564:19524653,40660210:260599 +k1,13564:20851523,40660210:260599 +k1,13564:23097208,40660210:260599 +k1,13564:24376892,40660210:260599 +k1,13564:27694746,40660210:260599 +k1,13564:28614637,40660210:260599 +k1,13564:29894321,40660210:260599 +k1,13564:31923737,40660210:260599 +k1,13564:32583029,40660210:0 +) +(1,13565:6630773,41525290:25952256,505283,7863 +k1,13565:32583029,41525290:21828076 +g1,13565:32583029,41525290 +) +v1,13567:6630773,42390370:0,393216,0 +(1,13630:6630773,45392435:25952256,3395281,0 +g1,13630:6630773,45392435 +g1,13630:6237557,45392435 +r1,13630:6368629,45392435:131072,3395281,0 +g1,13630:6567858,45392435 +g1,13630:6764466,45392435 +[1,13630:6764466,45392435:25818563,3395281,0 +(1,13568:6764466,42662847:25818563,665693,196608 +(1,13567:6764466,42662847:0,665693,196608 +r1,13630:7868133,42662847:1103667,862301,196608 +k1,13567:6764466,42662847:-1103667 +) +(1,13567:6764466,42662847:1103667,665693,196608 +) +k1,13567:8027830,42662847:159697 +k1,13567:9345759,42662847:327680 +k1,13567:10759160,42662847:159697 +k1,13567:12051318,42662847:159696 +k1,13567:13541396,42662847:159697 +k1,13567:14388566,42662847:159697 +k1,13567:14904123,42662847:159697 +k1,13567:19643476,42662847:159697 +k1,13567:23549866,42662847:159697 +k1,13567:24065422,42662847:159696 +k1,13567:26987462,42662847:159697 +k1,13567:28959885,42662847:159697 +k1,13567:31280959,42662847:159697 +$1,13567:31280959,42662847 +k1,13567:32014832,42662847:182060 +k1,13568:32583029,42662847:0 +) +(1,13568:6764466,43527927:25818563,615216,134348 +k1,13567:7371846,43527927:99476 +k1,13567:7740020,43527927:99476 +k1,13567:8237956,43527927:99477 +k1,13567:8905629,43527927:99476 +(1,13567:9349963,43626241:311689,334430,0 +) +k1,13567:9761128,43527927:99476 +k1,13567:10129302,43527927:99476 +k1,13567:10731439,43527927:99476 +k1,13567:11399113,43527927:99477 +(1,13567:11843447,43626241:311689,339935,0 +) +k1,13567:12254612,43527927:99476 +k1,13567:12622786,43527927:99476 +(1,13567:13125447,43252646:311689,339935,0 +) +$1,13567:13437136,43527927 +k1,13567:13788983,43527927:178177 +k1,13567:15163847,43527927:178177 +k1,13567:18037519,43527927:178176 +k1,13567:19728922,43527927:178177 +k1,13567:20438596,43527927:178177 +k1,13567:21635857,43527927:178176 +k1,13567:23467507,43527927:178177 +k1,13567:24331846,43527927:178177 +k1,13567:25457674,43527927:178177 +k1,13567:27448576,43527927:178176 +k1,13567:31117200,43527927:178177 +(1,13567:31117200,43527927:0,452978,115847 +r1,13630:32530601,43527927:1413401,568825,115847 +k1,13567:31117200,43527927:-1413401 +) +(1,13567:31117200,43527927:1413401,452978,115847 +k1,13567:31117200,43527927:3277 +h1,13567:32527324,43527927:0,411205,112570 +) +k1,13567:32583029,43527927:0 +) +(1,13568:6764466,44393007:25818563,513147,126483 +k1,13567:7921363,44393007:233495 +k1,13567:9530459,44393007:233495 +k1,13567:11294220,44393007:233495 +k1,13567:12179142,44393007:233494 +k1,13567:13866226,44393007:233495 +k1,13567:15118806,44393007:233495 +k1,13567:19163220,44393007:233495 +k1,13567:20056007,44393007:233495 +k1,13567:21308587,44393007:233495 +k1,13567:23703459,44393007:233495 +k1,13567:25133640,44393007:233494 +k1,13567:27827357,44393007:233495 +k1,13567:30756348,44393007:233495 +(1,13567:30756348,44393007:0,452978,115847 +r1,13630:31818037,44393007:1061689,568825,115847 +k1,13567:30756348,44393007:-1061689 +) +(1,13567:30756348,44393007:1061689,452978,115847 +k1,13567:30756348,44393007:3277 +h1,13567:31814760,44393007:0,411205,112570 +) +k1,13567:32051532,44393007:233495 +k1,13567:32583029,44393007:0 +) +(1,13568:6764466,45258087:25818563,513147,134348 +k1,13567:8456857,45258087:179165 +k1,13567:9287451,45258087:179166 +k1,13567:11764964,45258087:179165 +k1,13567:12732527,45258087:179165 +k1,13567:15984021,45258087:179166 +k1,13567:17730807,45258087:179165 +k1,13567:19647987,45258087:179165 +k1,13567:23417214,45258087:179165 +k1,13567:24282542,45258087:179166 +k1,13567:25783568,45258087:179165 +k1,13567:26622025,45258087:179165 +k1,13567:27820276,45258087:179166 +k1,13567:29987148,45258087:179165 +k1,13567:32583029,45258087:0 +) +] +g1,13630:32583029,45392435 +) +] +(1,13630:32583029,45706769:0,0,0 +g1,13630:32583029,45706769 +) +) +] +(1,13630:6630773,47279633:25952256,0,0 +h1,13630:6630773,47279633:25952256,0,0 +) +] +(1,13630:4262630,4025873:0,0,0 +[1,13630:-473656,4025873:0,0,0 +(1,13630:-473656,-710413:0,0,0 +(1,13630:-473656,-710413:0,0,0 +g1,13630:-473656,-710413 +) +g1,13630:-473656,-710413 +) +] +) +] +!30033 }219 +Input:2295:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2296:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2300:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2301:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2303:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2304:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2306:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2307:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2308:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2309:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2310:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2311:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2312:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2313:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2314:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2315:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2316:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2317:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2318:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2312 +{220 +[1,13666:4262630,47279633:28320399,43253760,0 +(1,13666:4262630,4025873:0,0,0 +[1,13666:-473656,4025873:0,0,0 +(1,13666:-473656,-710413:0,0,0 +(1,13666:-473656,-644877:0,0,0 +k1,13666:-473656,-644877:-65536 +) +(1,13666:-473656,4736287:0,0,0 +k1,13666:-473656,4736287:5209943 +) +g1,13666:-473656,-710413 +) +] +) +[1,13666:6630773,47279633:25952256,43253760,0 +[1,13666:6630773,4812305:25952256,786432,0 +(1,13666:6630773,4812305:25952256,513147,126483 +(1,13666:6630773,4812305:25952256,513147,126483 +g1,13666:3078558,4812305 +[1,13666:3078558,4812305:0,0,0 +(1,13666:3078558,2439708:0,1703936,0 +k1,13666:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13666:2537886,2439708:1179648,16384,0 +) +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13666:3078558,1915420:16384,1179648,0 +) +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 +) +] +) +) +) +] +[1,13666:3078558,4812305:0,0,0 +(1,13666:3078558,2439708:0,1703936,0 +g1,13666:29030814,2439708 +g1,13666:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13666:36151628,1915420:16384,1179648,0 +) +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 +) +] +) +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13666:37855564,2439708:1179648,16384,0 +) +) +k1,13666:3078556,2439708:-34777008 +) +] +[1,13666:3078558,4812305:0,0,0 +(1,13666:3078558,49800853:0,16384,2228224 +k1,13666:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13666:2537886,49800853:1179648,16384,0 +) +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13666:3078558,51504789:16384,1179648,0 +) +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,13666:3078558,4812305:0,0,0 +(1,13666:3078558,49800853:0,16384,2228224 +g1,13666:29030814,49800853 +g1,13666:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13666:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13666:37855564,49800853:1179648,16384,0 +) +) +k1,13666:3078556,49800853:-34777008 +) +] +g1,13666:6630773,4812305 +k1,13666:19575446,4812305:11749296 +g1,13666:21198117,4812305 +g1,13666:21985204,4812305 +g1,13666:24539797,4812305 +g1,13666:25949476,4812305 +g1,13666:28728857,4812305 +g1,13666:29852144,4812305 +) +) +] +[1,13666:6630773,45706769:25952256,40108032,0 +(1,13666:6630773,45706769:25952256,40108032,0 +(1,13666:6630773,45706769:0,0,0 +g1,13666:6630773,45706769 +) +[1,13666:6630773,45706769:25952256,40108032,0 +v1,13630:6630773,6254097:0,393216,0 +(1,13630:6630773,37603062:25952256,31742181,0 +g1,13630:6630773,37603062 +g1,13630:6237557,37603062 +r1,13666:6368629,37603062:131072,31742181,0 +g1,13630:6567858,37603062 +g1,13630:6764466,37603062 +[1,13630:6764466,37603062:25818563,31742181,0 +(1,13568:6764466,6374028:25818563,513147,134348 +k1,13567:9449054,6374028:171938 +k1,13567:10409391,6374028:171939 +k1,13567:13653657,6374028:171938 +k1,13567:14357092,6374028:171938 +k1,13567:17590218,6374028:171939 +k1,13567:21411201,6374028:171938 +k1,13567:22774584,6374028:171938 +k1,13567:23965608,6374028:171939 +k1,13567:25980418,6374028:171938 +k1,13567:26683854,6374028:171939 +k1,13567:28369018,6374028:171938 +k1,13567:29227118,6374028:171938 +k1,13567:30591812,6374028:171939 +k1,13567:31379788,6374028:171938 +k1,13567:32583029,6374028:0 +) +(1,13568:6764466,7239108:25818563,505283,126483 +g1,13567:8330776,7239108 +g1,13567:10945007,7239108 +g1,13567:14909935,7239108 +k1,13568:32583029,7239108:14988084 +g1,13568:32583029,7239108 +) +v1,13570:6764466,7923963:0,393216,0 +(1,13576:6764466,9634356:25818563,2103609,196608 +g1,13576:6764466,9634356 +g1,13576:6764466,9634356 +g1,13576:6567858,9634356 +(1,13576:6567858,9634356:0,2103609,196608 +r1,13666:32779637,9634356:26211779,2300217,196608 +k1,13576:6567857,9634356:-26211780 +) +(1,13576:6567858,9634356:26211779,2103609,196608 +[1,13576:6764466,9634356:25818563,1907001,0 +(1,13572:6764466,8158400:25818563,431045,106246 +(1,13571:6764466,8158400:0,0,0 +g1,13571:6764466,8158400 +g1,13571:6764466,8158400 +g1,13571:6436786,8158400 +(1,13571:6436786,8158400:0,0,0 +) +g1,13571:6764466,8158400 +) +g1,13572:8092282,8158400 +g1,13572:9088144,8158400 +g1,13572:11743776,8158400 +g1,13572:12407684,8158400 +g1,13572:14399408,8158400 +g1,13572:15063316,8158400 +g1,13572:19046764,8158400 +g1,13572:20706534,8158400 +g1,13572:21370442,8158400 +h1,13572:23030212,8158400:0,0,0 +k1,13572:32583029,8158400:9552817 +g1,13572:32583029,8158400 +) +(1,13573:6764466,8843255:25818563,431045,106246 +h1,13573:6764466,8843255:0,0,0 +g1,13573:10084006,8843255 +g1,13573:12075730,8843255 +g1,13573:12739638,8843255 +h1,13573:13403546,8843255:0,0,0 +k1,13573:32583030,8843255:19179484 +g1,13573:32583030,8843255 +) +(1,13574:6764466,9528110:25818563,431045,106246 +h1,13574:6764466,9528110:0,0,0 +k1,13574:6764466,9528110:0 +h1,13574:10747914,9528110:0,0,0 +k1,13574:32583030,9528110:21835116 +g1,13574:32583030,9528110 +) +] +) +g1,13576:32583029,9634356 +g1,13576:6764466,9634356 +g1,13576:6764466,9634356 +g1,13576:32583029,9634356 +g1,13576:32583029,9634356 +) +h1,13576:6764466,9830964:0,0,0 +(1,13580:6764466,10696044:25818563,513147,134348 +h1,13579:6764466,10696044:983040,0,0 +k1,13579:9232492,10696044:288299 +k1,13579:11774574,10696044:288299 +k1,13579:12750345,10696044:288298 +k1,13579:14774037,10696044:288299 +k1,13579:15833039,10696044:288299 +k1,13579:19615062,10696044:288299 +k1,13579:23476384,10696044:288299 +k1,13579:24868965,10696044:288299 +k1,13579:25905029,10696044:288298 +k1,13579:29025139,10696044:288299 +k1,13579:31048831,10696044:288299 +k1,13580:32583029,10696044:0 +) +(1,13580:6764466,11561124:25818563,513147,134348 +k1,13579:8221221,11561124:189289 +(1,13579:8221221,11561124:0,452978,115847 +r1,13666:10338046,11561124:2116825,568825,115847 +k1,13579:8221221,11561124:-2116825 +) +(1,13579:8221221,11561124:2116825,452978,115847 +k1,13579:8221221,11561124:3277 +h1,13579:10334769,11561124:0,411205,112570 +) +k1,13579:10701004,11561124:189288 +k1,13579:14748397,11561124:189289 +k1,13579:15596978,11561124:189289 +k1,13579:18548610,11561124:189289 +k1,13579:21193532,11561124:189288 +k1,13579:22487103,11561124:189289 +k1,13579:23424158,11561124:189289 +k1,13579:26405281,11561124:189289 +k1,13579:27356097,11561124:189288 +k1,13579:30688493,11561124:189289 +k1,13579:31563944,11561124:189289 +k1,13579:32583029,11561124:0 +) +(1,13580:6764466,12426204:25818563,505283,134348 +k1,13579:9207170,12426204:201373 +k1,13579:12480871,12426204:201373 +k1,13579:13333672,12426204:201373 +(1,13579:13333672,12426204:0,452978,115847 +r1,13666:15450497,12426204:2116825,568825,115847 +k1,13579:13333672,12426204:-2116825 +) +(1,13579:13333672,12426204:2116825,452978,115847 +k1,13579:13333672,12426204:3277 +h1,13579:15447220,12426204:0,411205,112570 +) +k1,13579:15651870,12426204:201373 +k1,13579:16872328,12426204:201373 +k1,13579:21697267,12426204:201374 +k1,13579:24408014,12426204:201373 +k1,13579:26839577,12426204:201373 +k1,13579:28894964,12426204:201373 +k1,13579:29724172,12426204:201373 +k1,13579:31128786,12426204:201373 +k1,13579:32583029,12426204:0 +) +(1,13580:6764466,13291284:25818563,513147,134348 +g1,13579:7982780,13291284 +g1,13579:10944352,13291284 +g1,13579:12986453,13291284 +g1,13579:13844974,13291284 +g1,13579:15063288,13291284 +g1,13579:18835540,13291284 +g1,13579:20026329,13291284 +g1,13579:22406596,13291284 +g1,13579:25286248,13291284 +g1,13579:26101515,13291284 +g1,13579:27319829,13291284 +k1,13580:32583029,13291284:2220364 +g1,13580:32583029,13291284 +) +v1,13582:6764466,13976139:0,393216,0 +(1,13587:6764466,15001677:25818563,1418754,196608 +g1,13587:6764466,15001677 +g1,13587:6764466,15001677 +g1,13587:6567858,15001677 +(1,13587:6567858,15001677:0,1418754,196608 +r1,13666:32779637,15001677:26211779,1615362,196608 +k1,13587:6567857,15001677:-26211780 +) +(1,13587:6567858,15001677:26211779,1418754,196608 +[1,13587:6764466,15001677:25818563,1222146,0 +(1,13584:6764466,14210576:25818563,431045,106246 +(1,13583:6764466,14210576:0,0,0 +g1,13583:6764466,14210576 +g1,13583:6764466,14210576 +g1,13583:6436786,14210576 +(1,13583:6436786,14210576:0,0,0 +) +g1,13583:6764466,14210576 +) +g1,13584:8424236,14210576 +g1,13584:9420098,14210576 +g1,13584:12075730,14210576 +g1,13584:12739638,14210576 +g1,13584:16723086,14210576 +g1,13584:18050902,14210576 +g1,13584:19710672,14210576 +g1,13584:20374580,14210576 +h1,13584:22034350,14210576:0,0,0 +k1,13584:32583029,14210576:10548679 +g1,13584:32583029,14210576 +) +(1,13585:6764466,14895431:25818563,431045,106246 +h1,13585:6764466,14895431:0,0,0 +k1,13585:6764466,14895431:0 +h1,13585:11079868,14895431:0,0,0 +k1,13585:32583028,14895431:21503160 +g1,13585:32583028,14895431 +) +] +) +g1,13587:32583029,15001677 +g1,13587:6764466,15001677 +g1,13587:6764466,15001677 +g1,13587:32583029,15001677 +g1,13587:32583029,15001677 +) +h1,13587:6764466,15198285:0,0,0 +(1,13591:6764466,16063365:25818563,513147,134348 +h1,13590:6764466,16063365:983040,0,0 +k1,13590:8421131,16063365:203732 +k1,13590:9156360,16063365:203732 +k1,13590:11990052,16063365:203732 +k1,13590:12845212,16063365:203732 +k1,13590:15809320,16063365:203732 +k1,13590:17185491,16063365:203732 +k1,13590:19376929,16063365:203731 +k1,13590:20598435,16063365:203732 +k1,13590:22537560,16063365:203732 +(1,13590:22537560,16063365:0,452978,115847 +r1,13666:25006097,16063365:2468537,568825,115847 +k1,13590:22537560,16063365:-2468537 +) +(1,13590:22537560,16063365:2468537,452978,115847 +k1,13590:22537560,16063365:3277 +h1,13590:25002820,16063365:0,411205,112570 +) +k1,13590:25383499,16063365:203732 +k1,13590:27768925,16063365:203732 +k1,13590:30563295,16063365:203732 +k1,13590:31923737,16063365:203732 +k1,13590:32583029,16063365:0 +) +(1,13591:6764466,16928445:25818563,505283,126483 +k1,13590:7969586,16928445:186035 +k1,13590:10473629,16928445:186035 +k1,13590:13659247,16928445:186035 +k1,13590:14864367,16928445:186035 +k1,13590:16439765,16928445:186035 +k1,13590:18523067,16928445:186035 +k1,13590:20151549,16928445:186035 +k1,13590:21356668,16928445:186034 +k1,13590:23418343,16928445:186035 +k1,13590:24074271,16928445:186035 +k1,13590:24791803,16928445:186035 +k1,13590:28187136,16928445:186035 +k1,13590:28989209,16928445:186035 +k1,13590:30378485,16928445:186035 +k1,13590:31931601,16928445:186035 +k1,13590:32583029,16928445:0 +) +(1,13591:6764466,17793525:25818563,513147,102891 +k1,13590:8324342,17793525:207213 +k1,13590:9799021,17793525:207213 +k1,13590:14360446,17793525:207213 +k1,13590:15586744,17793525:207213 +k1,13590:17872104,17793525:207213 +k1,13590:18738608,17793525:207212 +k1,13590:19964906,17793525:207213 +k1,13590:23358479,17793525:207213 +k1,13590:26200895,17793525:207213 +k1,13590:27427193,17793525:207213 +k1,13590:29622113,17793525:207213 +k1,13590:32583029,17793525:0 +) +(1,13591:6764466,18658605:25818563,513147,126483 +k1,13590:8579376,18658605:213210 +k1,13590:12568116,18658605:213211 +k1,13590:13247287,18658605:213210 +k1,13590:14840686,18658605:213211 +k1,13590:16158178,18658605:213210 +k1,13590:17119155,18658605:213211 +k1,13590:20922427,18658605:213210 +k1,13590:21821799,18658605:213210 +k1,13590:25877386,18658605:213211 +k1,13590:29680658,18658605:213210 +k1,13590:30580031,18658605:213211 +k1,13590:31149101,18658605:213210 +k1,13590:32583029,18658605:0 +) +(1,13591:6764466,19523685:25818563,505283,7863 +g1,13590:8951402,19523685 +g1,13590:10011774,19523685 +g1,13590:11230088,19523685 +g1,13590:13082790,19523685 +g1,13590:15269726,19523685 +g1,13590:16862906,19523685 +g1,13590:20289128,19523685 +k1,13591:32583029,19523685:10398600 +g1,13591:32583029,19523685 +) +v1,13593:6764466,20208540:0,393216,0 +(1,13597:6764466,20529405:25818563,714081,196608 +g1,13597:6764466,20529405 +g1,13597:6764466,20529405 +g1,13597:6567858,20529405 +(1,13597:6567858,20529405:0,714081,196608 +r1,13666:32779637,20529405:26211779,910689,196608 +k1,13597:6567857,20529405:-26211780 +) +(1,13597:6567858,20529405:26211779,714081,196608 +[1,13597:6764466,20529405:25818563,517473,0 +(1,13595:6764466,20442977:25818563,431045,86428 +(1,13594:6764466,20442977:0,0,0 +g1,13594:6764466,20442977 +g1,13594:6764466,20442977 +g1,13594:6436786,20442977 +(1,13594:6436786,20442977:0,0,0 +) +g1,13594:6764466,20442977 +) +k1,13595:6764466,20442977:0 +g1,13595:10415960,20442977 +h1,13595:11743776,20442977:0,0,0 +k1,13595:32583028,20442977:20839252 +g1,13595:32583028,20442977 +) +] +) +g1,13597:32583029,20529405 +g1,13597:6764466,20529405 +g1,13597:6764466,20529405 +g1,13597:32583029,20529405 +g1,13597:32583029,20529405 +) +h1,13597:6764466,20726013:0,0,0 +(1,13601:6764466,21591093:25818563,505283,134348 +h1,13600:6764466,21591093:983040,0,0 +k1,13600:9718938,21591093:139045 +k1,13600:10540867,21591093:139044 +k1,13600:12330109,21591093:139045 +k1,13600:14787161,21591093:139044 +k1,13600:16030488,21591093:139045 +k1,13600:17455348,21591093:139044 +k1,13600:18342159,21591093:139045 +k1,13600:21662322,21591093:139045 +k1,13600:22417404,21591093:139044 +k1,13600:22912309,21591093:139045 +k1,13600:24924372,21591093:139044 +k1,13600:26163111,21591093:139045 +k1,13600:26953583,21591093:139044 +(1,13600:26953583,21591093:0,452978,115847 +r1,13666:29422120,21591093:2468537,568825,115847 +k1,13600:26953583,21591093:-2468537 +) +(1,13600:26953583,21591093:2468537,452978,115847 +k1,13600:26953583,21591093:3277 +h1,13600:29418843,21591093:0,411205,112570 +) +k1,13600:29734835,21591093:139045 +k1,13600:32583029,21591093:0 +) +(1,13601:6764466,22456173:25818563,513147,134348 +g1,13600:8288833,22456173 +g1,13600:9019559,22456173 +g1,13600:11690806,22456173 +g1,13600:12576197,22456173 +g1,13600:13794511,22456173 +g1,13600:15733066,22456173 +g1,13600:16591587,22456173 +g1,13600:17809901,22456173 +g1,13600:21411759,22456173 +k1,13601:32583029,22456173:8663208 +g1,13601:32583029,22456173 +) +v1,13603:6764466,23141028:0,393216,0 +(1,13608:6764466,24146748:25818563,1398936,196608 +g1,13608:6764466,24146748 +g1,13608:6764466,24146748 +g1,13608:6567858,24146748 +(1,13608:6567858,24146748:0,1398936,196608 +r1,13666:32779637,24146748:26211779,1595544,196608 +k1,13608:6567857,24146748:-26211780 +) +(1,13608:6567858,24146748:26211779,1398936,196608 +[1,13608:6764466,24146748:25818563,1202328,0 +(1,13605:6764466,23375465:25818563,431045,86428 +(1,13604:6764466,23375465:0,0,0 +g1,13604:6764466,23375465 +g1,13604:6764466,23375465 +g1,13604:6436786,23375465 +(1,13604:6436786,23375465:0,0,0 +) +g1,13604:6764466,23375465 +) +k1,13605:6764466,23375465:0 +g1,13605:10415960,23375465 +g1,13605:12075730,23375465 +h1,13605:13735500,23375465:0,0,0 +k1,13605:32583028,23375465:18847528 +g1,13605:32583028,23375465 +) +(1,13606:6764466,24060320:25818563,431045,86428 +h1,13606:6764466,24060320:0,0,0 +g1,13606:10415960,24060320 +g1,13606:12407684,24060320 +h1,13606:13735500,24060320:0,0,0 +k1,13606:32583028,24060320:18847528 +g1,13606:32583028,24060320 +) +] +) +g1,13608:32583029,24146748 +g1,13608:6764466,24146748 +g1,13608:6764466,24146748 +g1,13608:32583029,24146748 +g1,13608:32583029,24146748 +) +h1,13608:6764466,24343356:0,0,0 +(1,13618:6764466,25208436:25818563,513147,134348 +h1,13617:6764466,25208436:983040,0,0 +k1,13617:10844976,25208436:252552 +k1,13617:13370317,25208436:252552 +k1,13617:14727150,25208436:252551 +k1,13617:15727468,25208436:252552 +k1,13617:17493246,25208436:252552 +k1,13617:18397226,25208436:252552 +k1,13617:20864895,25208436:252552 +k1,13617:22136532,25208436:252552 +k1,13617:24324361,25208436:252551 +k1,13617:26738290,25208436:252552 +k1,13617:30728360,25208436:252552 +k1,13617:32583029,25208436:0 +) +(1,13618:6764466,26073516:25818563,513147,138281 +k1,13617:7796839,26073516:223003 +$1,13617:7796839,26073516 +$1,13617:8264766,26073516 +k1,13617:10711406,26073516:223003 +k1,13617:11617295,26073516:223004 +k1,13617:15647284,26073516:223003 +k1,13617:18143076,26073516:223003 +k1,13617:19902898,26073516:223003 +k1,13617:21574247,26073516:223003 +k1,13617:22953281,26073516:222979 +k1,13617:26064457,26073516:223004 +k1,13617:27490046,26073516:223003 +k1,13617:31531832,26073516:223003 +k1,13618:32583029,26073516:0 +) +(1,13618:6764466,26938596:25818563,513147,126483 +k1,13617:9354844,26938596:179964 +k1,13617:10726252,26938596:179963 +k1,13617:11973779,26938596:179945 +k1,13617:15426611,26938596:179964 +k1,13617:19425357,26938596:179963 +k1,13617:22753671,26938596:179964 +k1,13617:23501832,26938596:179964 +k1,13617:25065261,26938596:179964 +k1,13617:28708146,26938596:179963 +k1,13617:31653729,26938596:179964 +k1,13618:32583029,26938596:0 +) +(1,13618:6764466,27803676:25818563,513147,134348 +k1,13617:9320548,27803676:145668 +k1,13617:10750723,27803676:145669 +k1,13617:13519142,27803676:145668 +k1,13617:14683896,27803676:145669 +k1,13617:17662685,27803676:145668 +k1,13617:21415456,27803676:145669 +k1,13617:23415793,27803676:145668 +k1,13617:24370832,27803676:145669 +k1,13617:25535585,27803676:145668 +k1,13617:28167035,27803676:145669 +k1,13617:28971995,27803676:145668 +k1,13617:32583029,27803676:0 +) +(1,13618:6764466,28668756:25818563,513147,102891 +k1,13617:7548432,28668756:167928 +k1,13617:8735445,28668756:167928 +k1,13617:10615829,28668756:167928 +k1,13617:12945134,28668756:167928 +k1,13617:13740898,28668756:167929 +k1,13617:14927911,28668756:167928 +k1,13617:16462920,28668756:167928 +k1,13617:17290140,28668756:167928 +k1,13617:18614092,28668756:167897 +k1,13617:19973465,28668756:167928 +k1,13617:21382645,28668756:167928 +k1,13617:21906433,28668756:167928 +k1,13617:24426448,28668756:167928 +k1,13617:26274720,28668756:167929 +k1,13617:26974145,28668756:167928 +k1,13617:29213011,28668756:167928 +k1,13617:30572384,28668756:167928 +k1,13617:32583029,28668756:0 +) +(1,13618:6764466,29533836:25818563,505283,134348 +k1,13617:9747514,29533836:204321 +k1,13617:11056117,29533836:204321 +k1,13617:12008204,29533836:204321 +k1,13617:14068505,29533836:204321 +k1,13617:16782200,29533836:204321 +k1,13617:17669406,29533836:204321 +k1,13617:20702260,29533836:204320 +k1,13617:21522619,29533836:204321 +k1,13617:23612411,29533836:204321 +k1,13617:25183813,29533836:204321 +k1,13617:27038331,29533836:204321 +k1,13617:29897515,29533836:204321 +k1,13617:30633333,29533836:204321 +k1,13617:32583029,29533836:0 +) +(1,13618:6764466,30398916:25818563,513147,126483 +k1,13617:9992773,30398916:158601 +k1,13617:11099024,30398916:158600 +k1,13617:12724321,30398916:158601 +k1,13617:13950463,30398916:158560 +k1,13617:15300509,30398916:158601 +k1,13617:16615125,30398916:158561 +k1,13617:17765285,30398916:158600 +k1,13617:20702613,30398916:158601 +k1,13617:21622742,30398916:158601 +(1,13617:21622742,30398916:0,452978,115847 +r1,13666:24091279,30398916:2468537,568825,115847 +k1,13617:21622742,30398916:-2468537 +) +(1,13617:21622742,30398916:2468537,452978,115847 +k1,13617:21622742,30398916:3277 +h1,13617:24088002,30398916:0,411205,112570 +) +k1,13617:24423549,30398916:158600 +k1,13617:25773595,30398916:158601 +k1,13617:26741566,30398916:158601 +k1,13617:28408806,30398916:158601 +k1,13617:29897787,30398916:158600 +k1,13617:30817916,30398916:158601 +(1,13617:30817916,30398916:0,452978,115847 +r1,13666:32583029,30398916:1765113,568825,115847 +k1,13617:30817916,30398916:-1765113 +) +(1,13617:30817916,30398916:1765113,452978,115847 +k1,13617:30817916,30398916:3277 +h1,13617:32579752,30398916:0,411205,112570 +) +k1,13617:32583029,30398916:0 +) +(1,13618:6764466,31263996:25818563,505283,115847 +g1,13617:8155140,31263996 +(1,13617:8155140,31263996:0,452978,115847 +r1,13666:9920253,31263996:1765113,568825,115847 +k1,13617:8155140,31263996:-1765113 +) +(1,13617:8155140,31263996:1765113,452978,115847 +k1,13617:8155140,31263996:3277 +h1,13617:9916976,31263996:0,411205,112570 +) +k1,13618:32583029,31263996:22662776 +g1,13618:32583029,31263996 +) +v1,13620:6764466,31948851:0,393216,0 +(1,13625:6764466,32954571:25818563,1398936,196608 +g1,13625:6764466,32954571 +g1,13625:6764466,32954571 +g1,13625:6567858,32954571 +(1,13625:6567858,32954571:0,1398936,196608 +r1,13666:32779637,32954571:26211779,1595544,196608 +k1,13625:6567857,32954571:-26211780 +) +(1,13625:6567858,32954571:26211779,1398936,196608 +[1,13625:6764466,32954571:25818563,1202328,0 +(1,13622:6764466,32183288:25818563,431045,86428 +(1,13621:6764466,32183288:0,0,0 +g1,13621:6764466,32183288 +g1,13621:6764466,32183288 +g1,13621:6436786,32183288 +(1,13621:6436786,32183288:0,0,0 +) +g1,13621:6764466,32183288 +) +k1,13622:6764466,32183288:0 +g1,13622:9752052,32183288 +g1,13622:11411822,32183288 +g1,13622:13071592,32183288 +h1,13622:14731362,32183288:0,0,0 +k1,13622:32583030,32183288:17851668 +g1,13622:32583030,32183288 +) +(1,13623:6764466,32868143:25818563,431045,86428 +h1,13623:6764466,32868143:0,0,0 +g1,13623:9752052,32868143 +g1,13623:11411822,32868143 +g1,13623:13071592,32868143 +h1,13623:14731362,32868143:0,0,0 +k1,13623:32583030,32868143:17851668 +g1,13623:32583030,32868143 +) +] +) +g1,13625:32583029,32954571 +g1,13625:6764466,32954571 +g1,13625:6764466,32954571 +g1,13625:32583029,32954571 +g1,13625:32583029,32954571 +) +h1,13625:6764466,33151179:0,0,0 +(1,13629:6764466,34016259:25818563,505283,126483 +h1,13628:6764466,34016259:983040,0,0 +k1,13628:9640317,34016259:287834 +k1,13628:11098624,34016259:287834 +k1,13628:12861673,34016259:287834 +k1,13628:14267551,34016259:287834 +k1,13628:15574470,34016259:287834 +k1,13628:17358491,34016259:287834 +k1,13628:18262363,34016259:287834 +k1,13628:19569283,34016259:287835 +k1,13628:22158086,34016259:287834 +k1,13628:24474915,34016259:287834 +k1,13628:25933222,34016259:287834 +k1,13628:27353518,34016259:287834 +k1,13628:28389118,34016259:287834 +k1,13628:29985706,34016259:287834 +k1,13628:31298523,34016259:287834 +k1,13628:32583029,34016259:0 +) +(1,13629:6764466,34881339:25818563,505283,134348 +k1,13628:8656209,34881339:195016 +k1,13628:10506010,34881339:195017 +k1,13628:12973815,34881339:195016 +k1,13628:13984099,34881339:195016 +k1,13628:15245387,34881339:195017 +k1,13628:18955754,34881339:195016 +k1,13628:20863881,34881339:195016 +k1,13628:21868268,34881339:195017 +k1,13628:23948755,34881339:195016 +k1,13628:24675269,34881339:195017 +k1,13628:25889370,34881339:195016 +k1,13628:28019664,34881339:195016 +k1,13628:30376058,34881339:195017 +k1,13628:31966991,34881339:195016 +k1,13628:32583029,34881339:0 +) +(1,13629:6764466,35746419:25818563,513147,126483 +k1,13628:7980869,35746419:197318 +k1,13628:10336943,35746419:197318 +$1,13628:10336943,35746419 +$1,13628:10804870,35746419 +k1,13628:13069194,35746419:197318 +k1,13628:14334092,35746419:197316 +k1,13628:15722855,35746419:197318 +k1,13628:17076226,35746419:197316 +k1,13628:20493328,35746419:197318 +k1,13628:21638297,35746419:197318 +k1,13628:22854700,35746419:197318 +k1,13628:25814361,35746419:197318 +k1,13628:28329687,35746419:197318 +k1,13628:29718450,35746419:197318 +k1,13628:32583029,35746419:0 +) +(1,13629:6764466,36611499:25818563,513147,126483 +k1,13628:8829787,36611499:206064 +k1,13628:11023558,36611499:206064 +k1,13628:11761119,36611499:206064 +k1,13628:14810790,36611499:206064 +k1,13628:15778382,36611499:206064 +k1,13628:17436068,36611499:206064 +k1,13628:18301423,36611499:206063 +k1,13628:19526572,36611499:206064 +k1,13628:21387420,36611499:206064 +k1,13628:24039943,36611499:206064 +k1,13628:24873842,36611499:206064 +k1,13628:27919581,36611499:206064 +k1,13628:29296118,36611499:206064 +k1,13628:30634644,36611499:206064 +k1,13628:32583029,36611499:0 +) +(1,13629:6764466,37476579:25818563,513147,126483 +g1,13628:8248201,37476579 +g1,13628:9466515,37476579 +g1,13628:10838183,37476579 +g1,13628:13799755,37476579 +g1,13628:18140204,37476579 +g1,13628:18998725,37476579 +g1,13628:20217039,37476579 +g1,13628:23447963,37476579 +g1,13628:27220215,37476579 +g1,13628:28411004,37476579 +k1,13629:32583029,37476579:814616 +g1,13629:32583029,37476579 +) +] +g1,13630:32583029,37603062 +) +h1,13630:6630773,37603062:0,0,0 +(1,13633:6630773,38468142:25952256,513147,134348 +h1,13632:6630773,38468142:983040,0,0 +k1,13632:11130594,38468142:158061 +k1,13632:13104657,38468142:158060 +k1,13632:16047343,38468142:158061 +k1,13632:17485322,38468142:158061 +k1,13632:19037989,38468142:158061 +k1,13632:21227010,38468142:158060 +k1,13632:22036499,38468142:158061 +k1,13632:24956903,38468142:158061 +k1,13632:27489989,38468142:158061 +k1,13632:28307341,38468142:158060 +k1,13632:30177858,38468142:158061 +k1,13633:32583029,38468142:0 +) +(1,13633:6630773,39333222:25952256,505283,115847 +(1,13632:6630773,39333222:0,452978,115847 +r1,13666:8747598,39333222:2116825,568825,115847 +k1,13632:6630773,39333222:-2116825 +) +(1,13632:6630773,39333222:2116825,452978,115847 +k1,13632:6630773,39333222:3277 +h1,13632:8744321,39333222:0,411205,112570 +) +k1,13632:8913083,39333222:165485 +k1,13632:11419513,39333222:165484 +k1,13632:12604083,39333222:165485 +k1,13632:19019080,39333222:165484 +k1,13632:21445557,39333222:165485 +(1,13632:21445557,39333222:0,459977,115847 +r1,13666:23562382,39333222:2116825,575824,115847 +k1,13632:21445557,39333222:-2116825 +) +(1,13632:21445557,39333222:2116825,459977,115847 +k1,13632:21445557,39333222:3277 +h1,13632:23559105,39333222:0,411205,112570 +) +k1,13632:23727866,39333222:165484 +k1,13632:25084796,39333222:165485 +k1,13632:26038678,39333222:165484 +k1,13632:27652509,39333222:165485 +(1,13632:27652509,39333222:0,459977,115847 +r1,13666:32583029,39333222:4930520,575824,115847 +k1,13632:27652509,39333222:-4930520 +) +(1,13632:27652509,39333222:4930520,459977,115847 +k1,13632:27652509,39333222:3277 +h1,13632:32579752,39333222:0,411205,112570 +) +k1,13632:32583029,39333222:0 +) +(1,13633:6630773,40198302:25952256,513147,115847 +k1,13632:9021088,40198302:379670 +k1,13632:10419843,40198302:379670 +k1,13632:13845627,40198302:379671 +k1,13632:15172948,40198302:379670 +k1,13632:16571703,40198302:379670 +k1,13632:18663829,40198302:379670 +k1,13632:21031206,40198302:379670 +k1,13632:25195581,40198302:379671 +(1,13632:25195581,40198302:0,459977,115847 +r1,13666:28015830,40198302:2820249,575824,115847 +k1,13632:25195581,40198302:-2820249 +) +(1,13632:25195581,40198302:2820249,459977,115847 +k1,13632:25195581,40198302:3277 +h1,13632:28012553,40198302:0,411205,112570 +) +k1,13632:28395500,40198302:379670 +k1,13632:29966615,40198302:379670 +k1,13632:31134683,40198302:379670 +k1,13633:32583029,40198302:0 +) +(1,13633:6630773,41063382:25952256,513147,115847 +(1,13632:6630773,41063382:0,459977,115847 +r1,13666:11913004,41063382:5282231,575824,115847 +k1,13632:6630773,41063382:-5282231 +) +(1,13632:6630773,41063382:5282231,459977,115847 +k1,13632:6630773,41063382:3277 +h1,13632:11909727,41063382:0,411205,112570 +) +k1,13632:12171668,41063382:258664 +k1,13632:14634308,41063382:258664 +k1,13632:15912056,41063382:258663 +k1,13632:17883176,41063382:258664 +k1,13632:20326155,41063382:258664 +k1,13632:21776264,41063382:258664 +(1,13632:21776264,41063382:0,452978,115847 +r1,13666:24244801,41063382:2468537,568825,115847 +k1,13632:21776264,41063382:-2468537 +) +(1,13632:21776264,41063382:2468537,452978,115847 +k1,13632:21776264,41063382:3277 +h1,13632:24241524,41063382:0,411205,112570 +) +k1,13632:24503465,41063382:258664 +k1,13632:25953573,41063382:258663 +k1,13632:27000635,41063382:258664 +k1,13632:28707645,41063382:258664 +(1,13632:28707645,41063382:0,452978,115847 +r1,13666:32583029,41063382:3875384,568825,115847 +k1,13632:28707645,41063382:-3875384 +) +(1,13632:28707645,41063382:3875384,452978,115847 +k1,13632:28707645,41063382:3277 +h1,13632:32579752,41063382:0,411205,112570 +) +k1,13632:32583029,41063382:0 +) +(1,13633:6630773,41928462:25952256,513147,134348 +k1,13632:7900664,41928462:250806 +k1,13632:12775035,41928462:250806 +k1,13632:15919912,41928462:250807 +k1,13632:17060697,41928462:250806 +k1,13632:20798674,41928462:250806 +k1,13632:23241659,41928462:250806 +h1,13632:24212247,41928462:0,0,0 +k1,13632:24843817,41928462:250806 +k1,13632:26467603,41928462:250807 +k1,13632:30023390,41928462:250806 +k1,13632:31787422,41928462:250806 +k1,13633:32583029,41928462:0 +) +(1,13633:6630773,42793542:25952256,505283,122846 +g1,13632:9184711,42793542 +g1,13632:10375500,42793542 +(1,13632:10375500,42793542:0,452978,122846 +r1,13666:13547460,42793542:3171960,575824,122846 +k1,13632:10375500,42793542:-3171960 +) +(1,13632:10375500,42793542:3171960,452978,122846 +k1,13632:10375500,42793542:3277 +h1,13632:13544183,42793542:0,411205,112570 +) +g1,13632:13920359,42793542 +(1,13632:13920359,42793542:0,459977,115847 +r1,13666:17092319,42793542:3171960,575824,115847 +k1,13632:13920359,42793542:-3171960 +) +(1,13632:13920359,42793542:3171960,459977,115847 +k1,13632:13920359,42793542:3277 +h1,13632:17089042,42793542:0,411205,112570 +) +g1,13632:17465218,42793542 +(1,13632:17465218,42793542:0,452978,115847 +r1,13666:19933755,42793542:2468537,568825,115847 +k1,13632:17465218,42793542:-2468537 +) +(1,13632:17465218,42793542:2468537,452978,115847 +k1,13632:17465218,42793542:3277 +h1,13632:19930478,42793542:0,411205,112570 +) +g1,13632:20306654,42793542 +(1,13632:20306654,42793542:0,459977,115847 +r1,13666:24885462,42793542:4578808,575824,115847 +k1,13632:20306654,42793542:-4578808 +) +(1,13632:20306654,42793542:4578808,459977,115847 +k1,13632:20306654,42793542:3277 +h1,13632:24882185,42793542:0,411205,112570 +) +g1,13632:25258361,42793542 +g1,13632:26649035,42793542 +(1,13632:26649035,42793542:0,452978,115847 +r1,13666:31579555,42793542:4930520,568825,115847 +k1,13632:26649035,42793542:-4930520 +) +(1,13632:26649035,42793542:4930520,452978,115847 +k1,13632:26649035,42793542:3277 +h1,13632:31576278,42793542:0,411205,112570 +) +k1,13633:32583029,42793542:951046 +g1,13633:32583029,42793542 +) +v1,13665:6630773,43658622:0,393216,0 +(1,13666:6630773,45706769:25952256,2441363,0 +g1,13666:6630773,45706769 +g1,13666:6237557,45706769 +r1,13666:6368629,45706769:131072,2441363,0 +g1,13666:6567858,45706769 +g1,13666:6764466,45706769 +[1,13666:6764466,45706769:25818563,2441363,0 +(1,13666:6764466,43931099:25818563,665693,196608 +(1,13665:6764466,43931099:0,665693,196608 +r1,13666:7868133,43931099:1103667,862301,196608 +k1,13665:6764466,43931099:-1103667 +) +(1,13665:6764466,43931099:1103667,665693,196608 +) +k1,13665:8045469,43931099:177336 +k1,13665:9363398,43931099:327680 +k1,13665:13006278,43931099:177336 +k1,13665:15789982,43931099:177337 +k1,13665:17361269,43931099:177336 +k1,13665:19235332,43931099:177336 +k1,13665:22627209,43931099:177336 +k1,13665:23995990,43931099:177336 +k1,13665:27163735,43931099:177337 +k1,13665:30125696,43931099:177336 +k1,13665:31064560,43931099:177336 +k1,13666:32583029,43931099:0 +) +(1,13666:6764466,44796179:25818563,513147,134348 +k1,13665:7939105,44796179:184390 +k1,13665:9632134,44796179:184390 +k1,13665:14642594,44796179:184389 +k1,13665:16018429,44796179:184390 +k1,13665:17295304,44796179:184390 +k1,13665:19118749,44796179:184390 +k1,13665:19954566,44796179:184389 +k1,13665:22507427,44796179:184390 +(1,13665:22507427,44796179:0,459977,115847 +r1,13666:23569116,44796179:1061689,575824,115847 +k1,13665:22507427,44796179:-1061689 +) +(1,13665:22507427,44796179:1061689,459977,115847 +k1,13665:22507427,44796179:3277 +h1,13665:23565839,44796179:0,411205,112570 +) +k1,13665:23753506,44796179:184390 +k1,13665:25650352,44796179:184390 +k1,13665:27690066,44796179:184390 +k1,13665:28557340,44796179:184389 +k1,13665:30729437,44796179:184390 +k1,13665:31931601,44796179:184390 +k1,13665:32583029,44796179:0 +) +(1,13666:6764466,45661259:25818563,513147,126483 +g1,13665:8665665,45661259 +g1,13665:10254257,45661259 +g1,13665:11112778,45661259 +g1,13665:12770838,45661259 +k1,13666:32583029,45661259:17316580 +g1,13666:32583029,45661259 +) +] +g1,13666:32583029,45706769 +) +] +(1,13666:32583029,45706769:0,0,0 +g1,13666:32583029,45706769 +) +) +] +(1,13666:6630773,47279633:25952256,0,0 +h1,13666:6630773,47279633:25952256,0,0 +) +] +(1,13666:4262630,4025873:0,0,0 +[1,13666:-473656,4025873:0,0,0 +(1,13666:-473656,-710413:0,0,0 +(1,13666:-473656,-710413:0,0,0 +g1,13666:-473656,-710413 +) +g1,13666:-473656,-710413 +) +] +) +] +!31797 +}220 Input:2320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2322:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -242435,143 +242634,208 @@ Input:2333:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2334:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2335:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2336:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2337:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2338:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2339:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1852 -{220 -[1,13759:4262630,47279633:28320399,43253760,0 -(1,13759:4262630,4025873:0,0,0 -[1,13759:-473656,4025873:0,0,0 -(1,13759:-473656,-710413:0,0,0 -(1,13759:-473656,-644877:0,0,0 -k1,13759:-473656,-644877:-65536 +{221 +[1,13757:4262630,47279633:28320399,43253760,0 +(1,13757:4262630,4025873:0,0,0 +[1,13757:-473656,4025873:0,0,0 +(1,13757:-473656,-710413:0,0,0 +(1,13757:-473656,-644877:0,0,0 +k1,13757:-473656,-644877:-65536 ) -(1,13759:-473656,4736287:0,0,0 -k1,13759:-473656,4736287:5209943 +(1,13757:-473656,4736287:0,0,0 +k1,13757:-473656,4736287:5209943 ) -g1,13759:-473656,-710413 +g1,13757:-473656,-710413 ) ] ) -[1,13759:6630773,47279633:25952256,43253760,0 -[1,13759:6630773,4812305:25952256,786432,0 -(1,13759:6630773,4812305:25952256,505283,134348 -(1,13759:6630773,4812305:25952256,505283,134348 -g1,13759:3078558,4812305 -[1,13759:3078558,4812305:0,0,0 -(1,13759:3078558,2439708:0,1703936,0 -k1,13759:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13759:2537886,2439708:1179648,16384,0 +[1,13757:6630773,47279633:25952256,43253760,0 +[1,13757:6630773,4812305:25952256,786432,0 +(1,13757:6630773,4812305:25952256,505283,134348 +(1,13757:6630773,4812305:25952256,505283,134348 +g1,13757:3078558,4812305 +[1,13757:3078558,4812305:0,0,0 +(1,13757:3078558,2439708:0,1703936,0 +k1,13757:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13757:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13759:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13757:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13759:3078558,4812305:0,0,0 -(1,13759:3078558,2439708:0,1703936,0 -g1,13759:29030814,2439708 -g1,13759:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13759:36151628,1915420:16384,1179648,0 +[1,13757:3078558,4812305:0,0,0 +(1,13757:3078558,2439708:0,1703936,0 +g1,13757:29030814,2439708 +g1,13757:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13757:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13759:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13757:37855564,2439708:1179648,16384,0 ) ) -k1,13759:3078556,2439708:-34777008 +k1,13757:3078556,2439708:-34777008 ) ] -[1,13759:3078558,4812305:0,0,0 -(1,13759:3078558,49800853:0,16384,2228224 -k1,13759:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13759:2537886,49800853:1179648,16384,0 +[1,13757:3078558,4812305:0,0,0 +(1,13757:3078558,49800853:0,16384,2228224 +k1,13757:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13757:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13759:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13757:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13759:3078558,4812305:0,0,0 -(1,13759:3078558,49800853:0,16384,2228224 -g1,13759:29030814,49800853 -g1,13759:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13759:36151628,51504789:16384,1179648,0 +[1,13757:3078558,4812305:0,0,0 +(1,13757:3078558,49800853:0,16384,2228224 +g1,13757:29030814,49800853 +g1,13757:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13757:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13759:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13757:37855564,49800853:1179648,16384,0 ) ) -k1,13759:3078556,49800853:-34777008 +k1,13757:3078556,49800853:-34777008 ) ] -g1,13759:6630773,4812305 -g1,13759:6630773,4812305 -g1,13759:8843268,4812305 -g1,13759:11066249,4812305 -g1,13759:13415059,4812305 -k1,13759:31387651,4812305:17972592 +g1,13757:6630773,4812305 +g1,13757:6630773,4812305 +g1,13757:8843268,4812305 +g1,13757:11066249,4812305 +g1,13757:13415059,4812305 +k1,13757:31387651,4812305:17972592 ) ) ] -[1,13759:6630773,45706769:25952256,40108032,0 -(1,13759:6630773,45706769:25952256,40108032,0 -(1,13759:6630773,45706769:0,0,0 -g1,13759:6630773,45706769 +[1,13757:6630773,45706769:25952256,40108032,0 +(1,13757:6630773,45706769:25952256,40108032,0 +(1,13757:6630773,45706769:0,0,0 +g1,13757:6630773,45706769 +) +[1,13757:6630773,45706769:25952256,40108032,0 +[1,13662:6630773,17699313:25952256,12100576,0 +[1,13662:6630773,17699313:25952256,12100576,0 +(1,13661:6630773,14314365:25952256,8715628,0 +k1,13661:7745583,14314365:1114810 +h1,13659:7745583,14314365:0,0,0 +(1,13659:7745583,14314365:23543329,8715628,0 +g1,13659:10861869,14314365 +(1,13659:10861869,8091871:0,0,0 +(1,13659:10861869,8091871:0,0,0 +g1,13637:10861869,8091871 +(1,13638:10861869,8091871:0,0,0 +(1,13638:10861869,8091871:0,0,0 +g1,13638:10861869,8091871 +g1,13638:10861869,8091871 +g1,13638:10861869,8091871 +g1,13638:10861869,8091871 +g1,13638:10861869,8091871 +(1,13638:10861869,8091871:0,0,0 +(1,13638:10861869,8091871:4940249,454754,104590 +(1,13638:10861869,8091871:4940249,454754,104590 +g1,13638:12792953,8091871 +$1,13638:12792953,8091871 +$1,13638:13400472,8091871 +g1,13638:13579779,8091871 +(1,13638:13579779,8091871:0,414307,104590 +r1,13757:15802118,8091871:2222339,518897,104590 +k1,13638:13579779,8091871:-2222339 +) +(1,13638:13579779,8091871:2222339,414307,104590 +k1,13638:13579779,8091871:3277 +h1,13638:15798841,8091871:0,370085,101313 +) +) +g1,13638:15802118,8091871 +) +) +g1,13638:10861869,8091871 +g1,13638:10861869,8091871 +) +) +g1,13638:10861869,8091871 +(1,13639:10861869,8091871:0,0,0 +(1,13639:10861869,8091871:0,0,0 +g1,13639:10861869,8091871 +g1,13639:10861869,8091871 +g1,13639:10861869,8091871 +g1,13639:10861869,8091871 +g1,13639:10861869,8091871 +(1,13639:10861869,8091871:0,0,0 +(1,13639:10861869,8091871:5813184,454754,104590 +(1,13639:10861869,8091871:5813184,454754,104590 +g1,13639:14615510,8091871 +$1,13639:14615510,8091871 +$1,13639:15223029,8091871 +g1,13639:15402336,8091871 +(1,13639:15402336,8091871:0,408008,104590 +r1,13757:16675053,8091871:1272717,512598,104590 +k1,13639:15402336,8091871:-1272717 +) +(1,13639:15402336,8091871:1272717,408008,104590 +k1,13639:15402336,8091871:3277 +h1,13639:16671776,8091871:0,370085,101313 +) +) +g1,13639:16675053,8091871 +) +) +g1,13639:10861869,8091871 +g1,13639:10861869,8091871 +) ) -[1,13759:6630773,45706769:25952256,40108032,0 -[1,13664:6630773,17699313:25952256,12100576,0 -[1,13664:6630773,17699313:25952256,12100576,0 -(1,13663:6630773,14314365:25952256,8715628,0 -k1,13663:7745583,14314365:1114810 -h1,13661:7745583,14314365:0,0,0 -(1,13661:7745583,14314365:23543329,8715628,0 -g1,13661:10861869,14314365 -(1,13661:10861869,8091871:0,0,0 -(1,13661:10861869,8091871:0,0,0 g1,13639:10861869,8091871 (1,13640:10861869,8091871:0,0,0 (1,13640:10861869,8091871:0,0,0 @@ -242581,22 +242845,22 @@ g1,13640:10861869,8091871 g1,13640:10861869,8091871 g1,13640:10861869,8091871 (1,13640:10861869,8091871:0,0,0 -(1,13640:10861869,8091871:4940249,454754,104590 -(1,13640:10861869,8091871:4940249,454754,104590 -g1,13640:12792953,8091871 -$1,13640:12792953,8091871 -$1,13640:13400472,8091871 -g1,13640:13579779,8091871 -(1,13640:13579779,8091871:0,414307,104590 -r1,13759:15802118,8091871:2222339,518897,104590 -k1,13640:13579779,8091871:-2222339 +(1,13640:10861869,8091871:5356075,454754,120913 +(1,13640:10861869,8091871:5356075,454754,120913 +g1,13640:13208779,8091871 +$1,13640:13208779,8091871 +$1,13640:13816298,8091871 +g1,13640:13995605,8091871 +(1,13640:13995605,8091871:0,408008,110889 +r1,13757:16217944,8091871:2222339,518897,110889 +k1,13640:13995605,8091871:-2222339 ) -(1,13640:13579779,8091871:2222339,414307,104590 -k1,13640:13579779,8091871:3277 -h1,13640:15798841,8091871:0,370085,101313 +(1,13640:13995605,8091871:2222339,408008,110889 +k1,13640:13995605,8091871:3277 +h1,13640:16214667,8091871:0,370085,101313 ) ) -g1,13640:15802118,8091871 +g1,13640:16217944,8091871 ) ) g1,13640:10861869,8091871 @@ -242612,22 +242876,18 @@ g1,13641:10861869,8091871 g1,13641:10861869,8091871 g1,13641:10861869,8091871 (1,13641:10861869,8091871:0,0,0 -(1,13641:10861869,8091871:5813184,454754,104590 -(1,13641:10861869,8091871:5813184,454754,104590 -g1,13641:14615510,8091871 -$1,13641:14615510,8091871 -$1,13641:15223029,8091871 -g1,13641:15402336,8091871 -(1,13641:15402336,8091871:0,408008,104590 -r1,13759:16675053,8091871:1272717,512598,104590 -k1,13641:15402336,8091871:-1272717 +(1,13641:10861869,8091871:1272717,408008,104590 +(1,13641:10861869,8091871:1272717,408008,104590 +(1,13641:10861869,8091871:0,408008,104590 +r1,13757:12134586,8091871:1272717,512598,104590 +k1,13641:10861869,8091871:-1272717 ) -(1,13641:15402336,8091871:1272717,408008,104590 -k1,13641:15402336,8091871:3277 -h1,13641:16671776,8091871:0,370085,101313 +(1,13641:10861869,8091871:1272717,408008,104590 +k1,13641:10861869,8091871:3277 +h1,13641:12131309,8091871:0,370085,101313 ) ) -g1,13641:16675053,8091871 +g1,13641:12134586,8091871 ) ) g1,13641:10861869,8091871 @@ -242643,22 +242903,19 @@ g1,13642:10861869,8091871 g1,13642:10861869,8091871 g1,13642:10861869,8091871 (1,13642:10861869,8091871:0,0,0 -(1,13642:10861869,8091871:5356075,454754,120913 -(1,13642:10861869,8091871:5356075,454754,120913 -g1,13642:13208779,8091871 -$1,13642:13208779,8091871 -$1,13642:13816298,8091871 -g1,13642:13995605,8091871 -(1,13642:13995605,8091871:0,408008,110889 -r1,13759:16217944,8091871:2222339,518897,110889 -k1,13642:13995605,8091871:-2222339 +(1,13642:10861869,8091871:2550076,454754,120913 +(1,13642:10861869,8091871:2550076,454754,120913 +(1,13642:10861869,8091871:0,408008,104590 +r1,13757:11501504,8091871:639635,512598,104590 +k1,13642:10861869,8091871:-639635 ) -(1,13642:13995605,8091871:2222339,408008,110889 -k1,13642:13995605,8091871:3277 -h1,13642:16214667,8091871:0,370085,101313 +(1,13642:10861869,8091871:639635,408008,104590 +k1,13642:10861869,8091871:3277 +h1,13642:11498227,8091871:0,370085,101313 ) +g1,13642:11680811,8091871 ) -g1,13642:16217944,8091871 +g1,13642:13411945,8091871 ) ) g1,13642:10861869,8091871 @@ -242674,18 +242931,18 @@ g1,13643:10861869,8091871 g1,13643:10861869,8091871 g1,13643:10861869,8091871 (1,13643:10861869,8091871:0,0,0 -(1,13643:10861869,8091871:1272717,408008,104590 -(1,13643:10861869,8091871:1272717,408008,104590 -(1,13643:10861869,8091871:0,408008,104590 -r1,13759:12134586,8091871:1272717,512598,104590 -k1,13643:10861869,8091871:-1272717 +(1,13643:10861869,8091871:2538879,414307,104590 +(1,13643:10861869,8091871:2538879,414307,104590 +(1,13643:10861869,8091871:0,414307,104590 +r1,13757:13400748,8091871:2538879,518897,104590 +k1,13643:10861869,8091871:-2538879 ) -(1,13643:10861869,8091871:1272717,408008,104590 +(1,13643:10861869,8091871:2538879,414307,104590 k1,13643:10861869,8091871:3277 -h1,13643:12131309,8091871:0,370085,101313 +h1,13643:13397471,8091871:0,370085,101313 ) ) -g1,13643:12134586,8091871 +g1,13643:13400748,8091871 ) ) g1,13643:10861869,8091871 @@ -242701,19 +242958,18 @@ g1,13644:10861869,8091871 g1,13644:10861869,8091871 g1,13644:10861869,8091871 (1,13644:10861869,8091871:0,0,0 -(1,13644:10861869,8091871:2550076,454754,120913 -(1,13644:10861869,8091871:2550076,454754,120913 +(1,13644:10861869,8091871:3488501,408008,104590 +(1,13644:10861869,8091871:3488501,408008,104590 (1,13644:10861869,8091871:0,408008,104590 -r1,13759:11501504,8091871:639635,512598,104590 -k1,13644:10861869,8091871:-639635 +r1,13757:14350370,8091871:3488501,512598,104590 +k1,13644:10861869,8091871:-3488501 ) -(1,13644:10861869,8091871:639635,408008,104590 +(1,13644:10861869,8091871:3488501,408008,104590 k1,13644:10861869,8091871:3277 -h1,13644:11498227,8091871:0,370085,101313 +h1,13644:14347093,8091871:0,370085,101313 ) -g1,13644:11680811,8091871 ) -g1,13644:13411945,8091871 +g1,13644:14350370,8091871 ) ) g1,13644:10861869,8091871 @@ -242729,18 +242985,18 @@ g1,13645:10861869,8091871 g1,13645:10861869,8091871 g1,13645:10861869,8091871 (1,13645:10861869,8091871:0,0,0 -(1,13645:10861869,8091871:2538879,414307,104590 -(1,13645:10861869,8091871:2538879,414307,104590 +(1,13645:10861869,8091871:1905798,414307,104590 +(1,13645:10861869,8091871:1905798,414307,104590 (1,13645:10861869,8091871:0,414307,104590 -r1,13759:13400748,8091871:2538879,518897,104590 -k1,13645:10861869,8091871:-2538879 +r1,13757:12767667,8091871:1905798,518897,104590 +k1,13645:10861869,8091871:-1905798 ) -(1,13645:10861869,8091871:2538879,414307,104590 +(1,13645:10861869,8091871:1905798,414307,104590 k1,13645:10861869,8091871:3277 -h1,13645:13397471,8091871:0,370085,101313 +h1,13645:12764390,8091871:0,370085,101313 ) ) -g1,13645:13400748,8091871 +g1,13645:12767667,8091871 ) ) g1,13645:10861869,8091871 @@ -242756,18 +243012,27 @@ g1,13646:10861869,8091871 g1,13646:10861869,8091871 g1,13646:10861869,8091871 (1,13646:10861869,8091871:0,0,0 -(1,13646:10861869,8091871:3488501,408008,104590 -(1,13646:10861869,8091871:3488501,408008,104590 +(1,13646:10861869,8091871:3514124,408008,104590 +(1,13646:10861869,8091871:3514124,408008,104590 (1,13646:10861869,8091871:0,408008,104590 -r1,13759:14350370,8091871:3488501,512598,104590 -k1,13646:10861869,8091871:-3488501 +r1,13757:12451126,8091871:1589257,512598,104590 +k1,13646:10861869,8091871:-1589257 ) -(1,13646:10861869,8091871:3488501,408008,104590 +(1,13646:10861869,8091871:1589257,408008,104590 k1,13646:10861869,8091871:3277 -h1,13646:14347093,8091871:0,370085,101313 +h1,13646:12447849,8091871:0,370085,101313 +) +g1,13646:12786736,8091871 +(1,13646:12786736,8091871:0,408008,104590 +r1,13757:14375993,8091871:1589257,512598,104590 +k1,13646:12786736,8091871:-1589257 ) +(1,13646:12786736,8091871:1589257,408008,104590 +k1,13646:12786736,8091871:3277 +h1,13646:14372716,8091871:0,370085,101313 ) -g1,13646:14350370,8091871 +) +g1,13646:14375993,8091871 ) ) g1,13646:10861869,8091871 @@ -242783,18 +243048,18 @@ g1,13647:10861869,8091871 g1,13647:10861869,8091871 g1,13647:10861869,8091871 (1,13647:10861869,8091871:0,0,0 -(1,13647:10861869,8091871:1905798,414307,104590 -(1,13647:10861869,8091871:1905798,414307,104590 -(1,13647:10861869,8091871:0,414307,104590 -r1,13759:12767667,8091871:1905798,518897,104590 -k1,13647:10861869,8091871:-1905798 +(1,13647:10861869,8091871:2855420,408008,104590 +(1,13647:10861869,8091871:2855420,408008,104590 +(1,13647:10861869,8091871:0,408008,104590 +r1,13757:13717289,8091871:2855420,512598,104590 +k1,13647:10861869,8091871:-2855420 ) -(1,13647:10861869,8091871:1905798,414307,104590 +(1,13647:10861869,8091871:2855420,408008,104590 k1,13647:10861869,8091871:3277 -h1,13647:12764390,8091871:0,370085,101313 +h1,13647:13714012,8091871:0,370085,101313 ) ) -g1,13647:12767667,8091871 +g1,13647:13717289,8091871 ) ) g1,13647:10861869,8091871 @@ -242810,27 +243075,23 @@ g1,13648:10861869,8091871 g1,13648:10861869,8091871 g1,13648:10861869,8091871 (1,13648:10861869,8091871:0,0,0 -(1,13648:10861869,8091871:3514124,408008,104590 -(1,13648:10861869,8091871:3514124,408008,104590 -(1,13648:10861869,8091871:0,408008,104590 -r1,13759:12451126,8091871:1589257,512598,104590 -k1,13648:10861869,8091871:-1589257 -) -(1,13648:10861869,8091871:1589257,408008,104590 -k1,13648:10861869,8091871:3277 -h1,13648:12447849,8091871:0,370085,101313 +(1,13648:10861869,8091871:6040272,454754,113835 +(1,13648:10861869,8091871:6040272,454754,113835 +g1,13648:12332891,8091871 +g1,13648:13892976,8091871 +$1,13648:13892976,8091871 +$1,13648:14500495,8091871 +g1,13648:14679802,8091871 +(1,13648:14679802,8091871:0,408008,104590 +r1,13757:16902141,8091871:2222339,512598,104590 +k1,13648:14679802,8091871:-2222339 ) -g1,13648:12786736,8091871 -(1,13648:12786736,8091871:0,408008,104590 -r1,13759:14375993,8091871:1589257,512598,104590 -k1,13648:12786736,8091871:-1589257 +(1,13648:14679802,8091871:2222339,408008,104590 +k1,13648:14679802,8091871:3277 +h1,13648:16898864,8091871:0,370085,101313 ) -(1,13648:12786736,8091871:1589257,408008,104590 -k1,13648:12786736,8091871:3277 -h1,13648:14372716,8091871:0,370085,101313 ) -) -g1,13648:14375993,8091871 +g1,13648:16902141,8091871 ) ) g1,13648:10861869,8091871 @@ -242838,64 +243099,17 @@ g1,13648:10861869,8091871 ) ) g1,13648:10861869,8091871 -(1,13649:10861869,8091871:0,0,0 -(1,13649:10861869,8091871:0,0,0 g1,13649:10861869,8091871 g1,13649:10861869,8091871 g1,13649:10861869,8091871 g1,13649:10861869,8091871 g1,13649:10861869,8091871 -(1,13649:10861869,8091871:0,0,0 -(1,13649:10861869,8091871:2855420,408008,104590 -(1,13649:10861869,8091871:2855420,408008,104590 -(1,13649:10861869,8091871:0,408008,104590 -r1,13759:13717289,8091871:2855420,512598,104590 -k1,13649:10861869,8091871:-2855420 -) -(1,13649:10861869,8091871:2855420,408008,104590 -k1,13649:10861869,8091871:3277 -h1,13649:13714012,8091871:0,370085,101313 -) -) -g1,13649:13717289,8091871 -) -) -g1,13649:10861869,8091871 g1,13649:10861869,8091871 -) -) -g1,13649:10861869,8091871 -(1,13650:10861869,8091871:0,0,0 -(1,13650:10861869,8091871:0,0,0 g1,13650:10861869,8091871 g1,13650:10861869,8091871 g1,13650:10861869,8091871 g1,13650:10861869,8091871 g1,13650:10861869,8091871 -(1,13650:10861869,8091871:0,0,0 -(1,13650:10861869,8091871:6040272,454754,113835 -(1,13650:10861869,8091871:6040272,454754,113835 -g1,13650:12332891,8091871 -g1,13650:13892976,8091871 -$1,13650:13892976,8091871 -$1,13650:14500495,8091871 -g1,13650:14679802,8091871 -(1,13650:14679802,8091871:0,408008,104590 -r1,13759:16902141,8091871:2222339,512598,104590 -k1,13650:14679802,8091871:-2222339 -) -(1,13650:14679802,8091871:2222339,408008,104590 -k1,13650:14679802,8091871:3277 -h1,13650:16898864,8091871:0,370085,101313 -) -) -g1,13650:16902141,8091871 -) -) -g1,13650:10861869,8091871 -g1,13650:10861869,8091871 -) -) g1,13650:10861869,8091871 g1,13651:10861869,8091871 g1,13651:10861869,8091871 @@ -242947,1935 +243161,1920 @@ g1,13658:10861869,8091871 g1,13658:10861869,8091871 g1,13659:10861869,8091871 g1,13659:10861869,8091871 -g1,13659:10861869,8091871 -g1,13659:10861869,8091871 -g1,13659:10861869,8091871 -g1,13659:10861869,8091871 -g1,13660:10861869,8091871 -g1,13660:10861869,8091871 -g1,13660:10861869,8091871 -g1,13660:10861869,8091871 -g1,13660:10861869,8091871 -g1,13660:10861869,8091871 -g1,13661:10861869,8091871 -g1,13661:10861869,8091871 ) -g1,13661:10861869,8091871 +g1,13659:10861869,8091871 ) ) +g1,13659:31468219,14314365 g1,13661:31468219,14314365 -g1,13663:31468219,14314365 -k1,13663:32583029,14314365:1114810 -) -(1,13663:6630773,15834805:25952256,505283,134348 -h1,13663:6630773,15834805:0,0,0 -g1,13663:8923222,15834805 -k1,13663:32583029,15834805:22669558 -g1,13663:32583029,15834805 -) -(1,13663:6630773,16699885:25952256,513147,134348 -h1,13663:6630773,16699885:0,0,0 -k1,13663:9585071,16699885:255525 -k1,13663:12821172,16699885:255524 -k1,13663:16303690,16699885:255525 -k1,13663:19343840,16699885:255525 -k1,13663:21112591,16699885:255525 -k1,13663:22019543,16699885:255524 -k1,13663:24091071,16699885:255525 -k1,13663:26059052,16699885:255525 -k1,13663:28302283,16699885:255524 -k1,13663:30847636,16699885:255525 -k1,13663:32583029,16699885:0 -) -(1,13663:6630773,17564965:25952256,513147,134348 -g1,13663:8642728,17564965 -g1,13663:11159965,17564965 -g1,13663:12045356,17564965 -g1,13663:13015288,17564965 -g1,13663:16049604,17564965 -g1,13663:17290855,17564965 -g1,13663:19192054,17564965 -g1,13663:21508751,17564965 -g1,13663:22732963,17564965 -g1,13663:23951277,17564965 -g1,13663:26260110,17564965 -g1,13663:27118631,17564965 -g1,13663:29302946,17564965 -h1,13663:30273534,17564965:0,0,0 -k1,13663:32583029,17564965:2257067 -g1,13663:32583029,17564965 -) -] -] -v1,13668:6630773,19665393:0,393216,0 -(1,13668:6630773,19272177:25952256,0,0 -g1,13668:6630773,19272177 -g1,13668:6237557,19272177 -r1,13759:6368629,19272177:131072,0,0 -g1,13668:6567858,19272177 -g1,13668:6764466,19272177 -[1,13668:6764466,19272177:25818563,0,0 -] -g1,13668:32583029,19272177 -) -h1,13668:6630773,19272177:0,0,0 -(1,13671:6630773,20137257:25952256,505283,126483 -h1,13670:6630773,20137257:983040,0,0 -k1,13670:8242228,20137257:158522 -k1,13670:8932247,20137257:158522 -k1,13670:10811744,20137257:158522 -k1,13670:11621694,20137257:158522 -k1,13670:13155817,20137257:158522 -k1,13670:14701081,20137257:158522 -k1,13670:15472365,20137257:158522 -k1,13670:16649973,20137257:158523 -k1,13670:18819140,20137257:158522 -k1,13670:21756389,20137257:158522 -k1,13670:22676439,20137257:158522 -(1,13670:22676439,20137257:0,452978,115847 -r1,13759:25144976,20137257:2468537,568825,115847 -k1,13670:22676439,20137257:-2468537 -) -(1,13670:22676439,20137257:2468537,452978,115847 -k1,13670:22676439,20137257:3277 -h1,13670:25141699,20137257:0,411205,112570 -) -k1,13670:25303498,20137257:158522 -k1,13670:26653465,20137257:158522 -(1,13670:26653465,20137257:0,452978,115847 -r1,13759:29825425,20137257:3171960,568825,115847 -k1,13670:26653465,20137257:-3171960 -) -(1,13670:26653465,20137257:3171960,452978,115847 -k1,13670:26653465,20137257:3277 -h1,13670:29822148,20137257:0,411205,112570 -) -k1,13670:29983947,20137257:158522 -k1,13670:30828631,20137257:158522 -k1,13671:32583029,20137257:0 -) -(1,13671:6630773,21002337:25952256,505283,126483 -k1,13670:8210230,21002337:221551 -k1,13670:11494933,21002337:221550 -k1,13670:12478012,21002337:221551 -(1,13670:12478012,21002337:0,452978,115847 -r1,13759:14946549,21002337:2468537,568825,115847 -k1,13670:12478012,21002337:-2468537 -) -(1,13670:12478012,21002337:2468537,452978,115847 -k1,13670:12478012,21002337:3277 -h1,13670:14943272,21002337:0,411205,112570 -) -k1,13670:15341769,21002337:221550 -k1,13670:18498022,21002337:221551 -k1,13670:20186269,21002337:221551 -(1,13670:20186269,21002337:0,452978,115847 -r1,13759:22654806,21002337:2468537,568825,115847 -k1,13670:20186269,21002337:-2468537 -) -(1,13670:20186269,21002337:2468537,452978,115847 -k1,13670:20186269,21002337:3277 -h1,13670:22651529,21002337:0,411205,112570 -) -k1,13670:22876356,21002337:221550 -k1,13670:24289352,21002337:221551 -(1,13670:24289352,21002337:0,452978,115847 -r1,13759:27461312,21002337:3171960,568825,115847 -k1,13670:24289352,21002337:-3171960 -) -(1,13670:24289352,21002337:3171960,452978,115847 -k1,13670:24289352,21002337:3277 -h1,13670:27458035,21002337:0,411205,112570 -) -k1,13670:27682862,21002337:221550 -k1,13670:29915058,21002337:221551 -k1,13670:32583029,21002337:0 -) -(1,13671:6630773,21867417:25952256,513147,134348 -k1,13670:9347413,21867417:253142 -k1,13670:11983443,21867417:253141 -k1,13670:13804206,21867417:253142 -(1,13670:13804206,21867417:0,452978,115847 -r1,13759:15217607,21867417:1413401,568825,115847 -k1,13670:13804206,21867417:-1413401 -) -(1,13670:13804206,21867417:1413401,452978,115847 -k1,13670:13804206,21867417:3277 -h1,13670:15214330,21867417:0,411205,112570 -) -k1,13670:15644418,21867417:253141 -k1,13670:19259557,21867417:253142 -k1,13670:21204838,21867417:253141 -k1,13670:24411688,21867417:253142 -k1,13670:25731100,21867417:253141 -k1,13670:29047395,21867417:253142 -k1,13670:30062064,21867417:253141 -(1,13670:30062064,21867417:0,452978,115847 -r1,13759:32530601,21867417:2468537,568825,115847 -k1,13670:30062064,21867417:-2468537 -) -(1,13670:30062064,21867417:2468537,452978,115847 -k1,13670:30062064,21867417:3277 -h1,13670:32527324,21867417:0,411205,112570 -) -k1,13670:32583029,21867417:0 -) -(1,13671:6630773,22732497:25952256,513147,134348 -k1,13670:8953369,22732497:184156 -k1,13670:9788953,22732497:184156 -k1,13670:12926817,22732497:184156 -k1,13670:13770265,22732497:184156 -k1,13670:15651148,22732497:184156 -k1,13670:18125132,22732497:184156 -k1,13670:19413570,22732497:184156 -k1,13670:20345493,22732497:184157 -k1,13670:23638677,22732497:184156 -k1,13670:24474261,22732497:184156 -k1,13670:25750902,22732497:184156 -k1,13670:27574113,22732497:184156 -k1,13670:28374307,22732497:184156 -k1,13670:30833873,22732497:184156 -k1,13671:32583029,22732497:0 -) -(1,13671:6630773,23597577:25952256,513147,126483 -g1,13670:8988758,23597577 -g1,13670:9870872,23597577 -g1,13670:10721529,23597577 -g1,13670:12502797,23597577 -g1,13670:14341081,23597577 -g1,13670:15156348,23597577 -g1,13670:15711437,23597577 -g1,13670:18091049,23597577 -g1,13670:21052621,23597577 -g1,13670:21903278,23597577 -g1,13670:23121592,23597577 -k1,13671:32583029,23597577:7143429 -g1,13671:32583029,23597577 -) -v1,13672:6630773,24462657:0,393216,0 -(1,13759:6630773,44608122:25952256,20538681,0 -g1,13759:6630773,44608122 -g1,13759:6237557,44608122 -r1,13759:6368629,44608122:131072,20538681,0 -g1,13759:6567858,44608122 -g1,13759:6764466,44608122 -[1,13759:6764466,44608122:25818563,20538681,0 -(1,13674:6764466,24770955:25818563,701514,196608 -(1,13672:6764466,24770955:0,701514,196608 -r1,13759:7761522,24770955:997056,898122,196608 -k1,13672:6764466,24770955:-997056 -) -(1,13672:6764466,24770955:997056,701514,196608 -) -k1,13672:8047127,24770955:285605 -k1,13672:8374807,24770955:327680 -k1,13672:8374807,24770955:0 -k1,13673:9857099,24770955:285605 -k1,13673:11697874,24770955:285606 -k1,13673:13174924,24770955:285605 -k1,13673:16391954,24770955:285605 -k1,13673:17336851,24770955:285605 -k1,13673:18641541,24770955:285605 -k1,13673:21216974,24770955:285605 -k1,13673:24281307,24770955:285606 -k1,13673:25328440,24770955:285605 -(1,13673:25328440,24770955:0,452978,115847 -r1,13759:28500400,24770955:3171960,568825,115847 -k1,13673:25328440,24770955:-3171960 -) -(1,13673:25328440,24770955:3171960,452978,115847 -k1,13673:25328440,24770955:3277 -h1,13673:28497123,24770955:0,411205,112570 -) -k1,13673:28786005,24770955:285605 -k1,13673:31773659,24770955:285605 -k1,13673:32583029,24770955:0 -) -(1,13674:6764466,25636035:25818563,513147,134348 -k1,13673:7983715,25636035:200164 -k1,13673:9739049,25636035:200165 -k1,13673:10598505,25636035:200164 -k1,13673:11817755,25636035:200165 -k1,13673:14005626,25636035:200164 -k1,13673:14893264,25636035:200165 -k1,13673:17226625,25636035:200164 -k1,13673:18496337,25636035:200164 -(1,13673:18496337,25636035:0,452978,115847 -r1,13759:21668297,25636035:3171960,568825,115847 -k1,13673:18496337,25636035:-3171960 -) -(1,13673:18496337,25636035:3171960,452978,115847 -k1,13673:18496337,25636035:3277 -h1,13673:21665020,25636035:0,411205,112570 -) -k1,13673:21868462,25636035:200165 -k1,13673:22600123,25636035:200164 -k1,13673:23156148,25636035:200165 -k1,13673:25663179,25636035:200164 -k1,13673:28317667,25636035:200165 -k1,13673:29911782,25636035:200164 -k1,13673:32583029,25636035:0 -) -(1,13674:6764466,26501115:25818563,505283,126483 -k1,13674:32583029,26501115:21086864 -g1,13674:32583029,26501115 -) -v1,13676:6764466,27185970:0,393216,0 -(1,13683:6764466,28342580:25818563,1549826,196608 -g1,13683:6764466,28342580 -g1,13683:6764466,28342580 -g1,13683:6567858,28342580 -(1,13683:6567858,28342580:0,1549826,196608 -r1,13759:32779637,28342580:26211779,1746434,196608 -k1,13683:6567857,28342580:-26211780 -) -(1,13683:6567858,28342580:26211779,1549826,196608 -[1,13683:6764466,28342580:25818563,1353218,0 -(1,13678:6764466,27420407:25818563,431045,106246 -(1,13677:6764466,27420407:0,0,0 -g1,13677:6764466,27420407 -g1,13677:6764466,27420407 -g1,13677:6436786,27420407 -(1,13677:6436786,27420407:0,0,0 -) -g1,13677:6764466,27420407 -) -k1,13678:6764466,27420407:0 -k1,13678:6764466,27420407:0 -h1,13678:13071592,27420407:0,0,0 -k1,13678:32583028,27420407:19511436 -g1,13678:32583028,27420407 -) -(1,13682:6764466,28236334:25818563,424439,106246 -(1,13680:6764466,28236334:0,0,0 -g1,13680:6764466,28236334 -g1,13680:6764466,28236334 -g1,13680:6436786,28236334 -(1,13680:6436786,28236334:0,0,0 -) -g1,13680:6764466,28236334 -) -g1,13682:7760328,28236334 -g1,13682:9088144,28236334 -h1,13682:13071591,28236334:0,0,0 -k1,13682:32583029,28236334:19511438 -g1,13682:32583029,28236334 -) -] -) -g1,13683:32583029,28342580 -g1,13683:6764466,28342580 -g1,13683:6764466,28342580 -g1,13683:32583029,28342580 -g1,13683:32583029,28342580 -) -h1,13683:6764466,28539188:0,0,0 -(1,13687:6764466,29404268:25818563,505283,134348 -h1,13686:6764466,29404268:983040,0,0 -k1,13686:9199019,29404268:180115 -k1,13686:10746214,29404268:180114 -k1,13686:12845223,29404268:180115 -k1,13686:13893690,29404268:180115 -k1,13686:15604070,29404268:180114 -k1,13686:16435613,29404268:180115 -k1,13686:18819704,29404268:180115 -k1,13686:22192732,29404268:180114 -k1,13686:25326555,29404268:180115 -k1,13686:26038167,29404268:180115 -k1,13686:27916319,29404268:180114 -k1,13686:30284026,29404268:180115 -k1,13687:32583029,29404268:0 -) -(1,13687:6764466,30269348:25818563,505283,134348 -k1,13686:8579992,30269348:217758 -k1,13686:9449178,30269348:217758 -k1,13686:11448205,30269348:217758 -k1,13686:14270364,30269348:217758 -k1,13686:15855203,30269348:217758 -k1,13686:16604459,30269348:217759 -k1,13686:18520255,30269348:217758 -k1,13686:20995728,30269348:217758 -k1,13686:23540014,30269348:217758 -k1,13686:24409200,30269348:217758 -k1,13686:26964627,30269348:217758 -k1,13686:32583029,30269348:0 -) -(1,13687:6764466,31134428:25818563,505283,126483 -k1,13686:8019816,31134428:236265 -k1,13686:11464724,31134428:236265 -k1,13686:13711633,31134428:236264 -k1,13686:15957887,31134428:236265 -k1,13686:17213237,31134428:236265 -k1,13686:18849351,31134428:236265 -(1,13686:18849351,31134428:0,452978,115847 -r1,13759:20614464,31134428:1765113,568825,115847 -k1,13686:18849351,31134428:-1765113 -) -(1,13686:18849351,31134428:1765113,452978,115847 -k1,13686:18849351,31134428:3277 -h1,13686:20611187,31134428:0,411205,112570 -) -k1,13686:20850728,31134428:236264 -k1,13686:22191275,31134428:236265 -k1,13686:23175306,31134428:236265 -k1,13686:24924797,31134428:236265 -k1,13686:25812489,31134428:236264 -k1,13686:28343825,31134428:236265 -k1,13686:29599175,31134428:236265 -k1,13686:32583029,31134428:0 -) -(1,13687:6764466,31999508:25818563,505283,134348 -k1,13686:9234479,31999508:258173 -(1,13686:9234479,31999508:0,452978,115847 -r1,13759:10999592,31999508:1765113,568825,115847 -k1,13686:9234479,31999508:-1765113 -) -(1,13686:9234479,31999508:1765113,452978,115847 -k1,13686:9234479,31999508:3277 -h1,13686:10996315,31999508:0,411205,112570 -) -k1,13686:11257765,31999508:258173 -k1,13686:12909888,31999508:258172 -(1,13686:12909888,31999508:0,452978,115847 -r1,13759:17840408,31999508:4930520,568825,115847 -k1,13686:12909888,31999508:-4930520 -) -(1,13686:12909888,31999508:4930520,452978,115847 -g1,13686:15726860,31999508 -g1,13686:16430284,31999508 -h1,13686:17837131,31999508:0,411205,112570 -) -k1,13686:18272251,31999508:258173 -(1,13686:18272251,31999508:0,452978,122846 -r1,13759:24257906,31999508:5985655,575824,122846 -k1,13686:18272251,31999508:-5985655 -) -(1,13686:18272251,31999508:5985655,452978,122846 -g1,13686:21792646,31999508 -g1,13686:22496070,31999508 -h1,13686:24254629,31999508:0,411205,112570 -) -k1,13686:24516079,31999508:258173 -k1,13686:25965697,31999508:258173 -(1,13686:25965697,31999508:0,452978,115847 -r1,13759:29841082,31999508:3875385,568825,115847 -k1,13686:25965697,31999508:-3875385 -) -(1,13686:25965697,31999508:3875385,452978,115847 -g1,13686:28782669,31999508 -g1,13686:29486093,31999508 -h1,13686:29837805,31999508:0,411205,112570 -) -k1,13686:30099254,31999508:258172 -k1,13686:31043589,31999508:258173 -k1,13687:32583029,31999508:0 -) -(1,13687:6764466,32864588:25818563,513147,126483 -g1,13686:8933052,32864588 -g1,13686:11765518,32864588 -g1,13686:12983832,32864588 -g1,13686:15341817,32864588 -g1,13686:16192474,32864588 -g1,13686:17162406,32864588 -g1,13686:20175751,32864588 -g1,13686:21034272,32864588 -g1,13686:22252586,32864588 -g1,13686:25383240,32864588 -g1,13686:26249625,32864588 -(1,13686:26249625,32864588:0,459977,115847 -r1,13759:27311314,32864588:1061689,575824,115847 -k1,13686:26249625,32864588:-1061689 -) -(1,13686:26249625,32864588:1061689,459977,115847 -k1,13686:26249625,32864588:3277 -h1,13686:27308037,32864588:0,411205,112570 -) -k1,13687:32583029,32864588:5219287 -g1,13687:32583029,32864588 -) -v1,13689:6764466,33549443:0,393216,0 -(1,13706:6764466,41534785:25818563,8378558,196608 -g1,13706:6764466,41534785 -g1,13706:6764466,41534785 -g1,13706:6567858,41534785 -(1,13706:6567858,41534785:0,8378558,196608 -r1,13759:32779637,41534785:26211779,8575166,196608 -k1,13706:6567857,41534785:-26211780 -) -(1,13706:6567858,41534785:26211779,8378558,196608 -[1,13706:6764466,41534785:25818563,8181950,0 -(1,13691:6764466,33783880:25818563,431045,112852 -(1,13690:6764466,33783880:0,0,0 -g1,13690:6764466,33783880 -g1,13690:6764466,33783880 -g1,13690:6436786,33783880 -(1,13690:6436786,33783880:0,0,0 -) -g1,13690:6764466,33783880 -) -k1,13691:6764466,33783880:0 -g1,13691:12739638,33783880 -g1,13691:15395270,33783880 -g1,13691:16059178,33783880 -g1,13691:18050902,33783880 -g1,13691:21370441,33783880 -g1,13691:22034349,33783880 -g1,13691:24358027,33783880 -g1,13691:27013659,33783880 -g1,13691:27677567,33783880 -h1,13691:28341475,33783880:0,0,0 -k1,13691:32583029,33783880:4241554 -g1,13691:32583029,33783880 -) -(1,13705:6764466,34599807:25818563,431045,112852 -(1,13693:6764466,34599807:0,0,0 -g1,13693:6764466,34599807 -g1,13693:6764466,34599807 -g1,13693:6436786,34599807 -(1,13693:6436786,34599807:0,0,0 -) -g1,13693:6764466,34599807 -) -g1,13705:7760328,34599807 -g1,13705:8092282,34599807 -g1,13705:8756190,34599807 -g1,13705:10415960,34599807 -g1,13705:10747914,34599807 -g1,13705:11079868,34599807 -g1,13705:11411822,34599807 -g1,13705:11743776,34599807 -g1,13705:12075730,34599807 -g1,13705:12407684,34599807 -g1,13705:12739638,34599807 -g1,13705:13071592,34599807 -g1,13705:13735500,34599807 -g1,13705:16723085,34599807 -g1,13705:20374578,34599807 -g1,13705:21038486,34599807 -g1,13705:22698256,34599807 -g1,13705:23362164,34599807 -g1,13705:24026072,34599807 -g1,13705:24689980,34599807 -g1,13705:27013658,34599807 -g1,13705:28673428,34599807 -g1,13705:29337336,34599807 -h1,13705:30997106,34599807:0,0,0 -k1,13705:32583029,34599807:1585923 -g1,13705:32583029,34599807 -) -(1,13705:6764466,35284662:25818563,431045,112852 -h1,13705:6764466,35284662:0,0,0 -g1,13705:7760328,35284662 -g1,13705:8092282,35284662 -g1,13705:8756190,35284662 -g1,13705:10747914,35284662 -g1,13705:11079868,35284662 -g1,13705:11411822,35284662 -g1,13705:11743776,35284662 -g1,13705:12075730,35284662 -g1,13705:12407684,35284662 -g1,13705:12739638,35284662 -g1,13705:13071592,35284662 -g1,13705:16059177,35284662 -g1,13705:19046763,35284662 -g1,13705:22366303,35284662 -g1,13705:22698257,35284662 -g1,13705:25685842,35284662 -g1,13705:27345612,35284662 -g1,13705:28009520,35284662 -g1,13705:28673428,35284662 -g1,13705:29337336,35284662 -h1,13705:30997106,35284662:0,0,0 -k1,13705:32583029,35284662:1585923 -g1,13705:32583029,35284662 -) -(1,13705:6764466,35969517:25818563,431045,79822 -h1,13705:6764466,35969517:0,0,0 -g1,13705:7760328,35969517 -g1,13705:8092282,35969517 -g1,13705:8756190,35969517 -g1,13705:12075729,35969517 -g1,13705:12407683,35969517 -g1,13705:12739637,35969517 -g1,13705:13071591,35969517 -g1,13705:13735499,35969517 -g1,13705:15727223,35969517 -g1,13705:17055039,35969517 -g1,13705:19378717,35969517 -g1,13705:21038487,35969517 -g1,13705:23030211,35969517 -h1,13705:24026073,35969517:0,0,0 -k1,13705:32583029,35969517:8556956 -g1,13705:32583029,35969517 -) -(1,13705:6764466,36654372:25818563,431045,86428 -h1,13705:6764466,36654372:0,0,0 -g1,13705:7760328,36654372 -g1,13705:8092282,36654372 -g1,13705:8756190,36654372 -g1,13705:13071591,36654372 -g1,13705:13735499,36654372 -g1,13705:15063315,36654372 -g1,13705:17055039,36654372 -g1,13705:18714809,36654372 -g1,13705:21038487,36654372 -g1,13705:22698257,36654372 -h1,13705:23694119,36654372:0,0,0 -k1,13705:32583029,36654372:8888910 -g1,13705:32583029,36654372 -) -(1,13705:6764466,37339227:25818563,431045,112852 -h1,13705:6764466,37339227:0,0,0 -g1,13705:7760328,37339227 -g1,13705:8092282,37339227 -g1,13705:8756190,37339227 -g1,13705:11411822,37339227 -g1,13705:11743776,37339227 -g1,13705:12075730,37339227 -g1,13705:12407684,37339227 -g1,13705:12739638,37339227 -g1,13705:13071592,37339227 -g1,13705:13735500,37339227 -g1,13705:15727224,37339227 -g1,13705:17386994,37339227 -g1,13705:19378718,37339227 -g1,13705:21370442,37339227 -h1,13705:23030212,37339227:0,0,0 -k1,13705:32583029,37339227:9552817 -g1,13705:32583029,37339227 -) -(1,13705:6764466,38024082:25818563,431045,112852 -h1,13705:6764466,38024082:0,0,0 -g1,13705:7760328,38024082 -g1,13705:8092282,38024082 -g1,13705:8756190,38024082 -g1,13705:10747914,38024082 -g1,13705:11079868,38024082 -g1,13705:11411822,38024082 -g1,13705:11743776,38024082 -g1,13705:12075730,38024082 -g1,13705:12407684,38024082 -g1,13705:12739638,38024082 -g1,13705:13071592,38024082 -g1,13705:13735500,38024082 -g1,13705:15063316,38024082 -h1,13705:16391132,38024082:0,0,0 -k1,13705:32583029,38024082:16191897 -g1,13705:32583029,38024082 -) -(1,13705:6764466,38708937:25818563,431045,79822 -h1,13705:6764466,38708937:0,0,0 -g1,13705:7760328,38708937 -g1,13705:8092282,38708937 -g1,13705:8756190,38708937 -g1,13705:9752052,38708937 -g1,13705:10084006,38708937 -g1,13705:10415960,38708937 -g1,13705:10747914,38708937 -g1,13705:11079868,38708937 -g1,13705:11411822,38708937 -g1,13705:11743776,38708937 -g1,13705:12075730,38708937 -g1,13705:12407684,38708937 -g1,13705:12739638,38708937 -g1,13705:13071592,38708937 -g1,13705:13735500,38708937 -g1,13705:15063316,38708937 -g1,13705:17055040,38708937 -g1,13705:17718948,38708937 -g1,13705:18714810,38708937 -h1,13705:19046764,38708937:0,0,0 -k1,13705:32583029,38708937:13536265 -g1,13705:32583029,38708937 -) -(1,13705:6764466,39393792:25818563,431045,106246 -h1,13705:6764466,39393792:0,0,0 -g1,13705:7760328,39393792 -g1,13705:8092282,39393792 -g1,13705:8756190,39393792 -g1,13705:12075729,39393792 -g1,13705:12407683,39393792 -g1,13705:12739637,39393792 -g1,13705:13071591,39393792 -g1,13705:13735499,39393792 -g1,13705:15063315,39393792 -h1,13705:16723085,39393792:0,0,0 -k1,13705:32583029,39393792:15859944 -g1,13705:32583029,39393792 -) -(1,13705:6764466,40078647:25818563,431045,112852 -h1,13705:6764466,40078647:0,0,0 -g1,13705:7760328,40078647 -g1,13705:8092282,40078647 -g1,13705:8756190,40078647 -g1,13705:13735499,40078647 -g1,13705:15063315,40078647 -h1,13705:16723085,40078647:0,0,0 -k1,13705:32583029,40078647:15859944 -g1,13705:32583029,40078647 -) -(1,13705:6764466,40763502:25818563,431045,79822 -h1,13705:6764466,40763502:0,0,0 -g1,13705:7760328,40763502 -g1,13705:8092282,40763502 -g1,13705:8756190,40763502 -g1,13705:12407683,40763502 -g1,13705:12739637,40763502 -g1,13705:13071591,40763502 -g1,13705:13735499,40763502 -g1,13705:15727223,40763502 -g1,13705:17055039,40763502 -g1,13705:19046763,40763502 -g1,13705:20706533,40763502 -g1,13705:21370441,40763502 -h1,13705:22366303,40763502:0,0,0 -k1,13705:32583029,40763502:10216726 -g1,13705:32583029,40763502 -) -(1,13705:6764466,41448357:25818563,431045,86428 -h1,13705:6764466,41448357:0,0,0 -g1,13705:7760328,41448357 -g1,13705:8092282,41448357 -g1,13705:8756190,41448357 -g1,13705:13071591,41448357 -g1,13705:13735499,41448357 -g1,13705:15063315,41448357 -g1,13705:17055039,41448357 -g1,13705:18714809,41448357 -g1,13705:21038487,41448357 -g1,13705:23694119,41448357 -h1,13705:24689981,41448357:0,0,0 -k1,13705:32583029,41448357:7893048 -g1,13705:32583029,41448357 -) -] -) -g1,13706:32583029,41534785 -g1,13706:6764466,41534785 -g1,13706:6764466,41534785 -g1,13706:32583029,41534785 -g1,13706:32583029,41534785 -) -h1,13706:6764466,41731393:0,0,0 -(1,13710:6764466,42596473:25818563,513147,134348 -h1,13709:6764466,42596473:983040,0,0 -g1,13709:11184869,42596473 -g1,13709:12043390,42596473 -g1,13709:15196327,42596473 -g1,13709:17710943,42596473 -g1,13709:18929257,42596473 -g1,13709:20849461,42596473 -g1,13709:21463533,42596473 -g1,13709:23248733,42596473 -g1,13709:25183355,42596473 -(1,13709:25183355,42596473:0,459977,115847 -r1,13759:25541621,42596473:358266,575824,115847 -k1,13709:25183355,42596473:-358266 -) -(1,13709:25183355,42596473:358266,459977,115847 -k1,13709:25183355,42596473:3277 -h1,13709:25538344,42596473:0,411205,112570 -) -g1,13709:25914520,42596473 -(1,13709:25914520,42596473:0,452978,115847 -r1,13759:26976210,42596473:1061690,568825,115847 -k1,13709:25914520,42596473:-1061690 -) -(1,13709:25914520,42596473:1061690,452978,115847 -g1,13709:26621221,42596473 -h1,13709:26972933,42596473:0,411205,112570 -) -g1,13709:27349109,42596473 -g1,13709:28231223,42596473 -(1,13709:28231223,42596473:0,452978,115847 -r1,13759:29996337,42596473:1765114,568825,115847 -k1,13709:28231223,42596473:-1765114 -) -(1,13709:28231223,42596473:1765114,452978,115847 -g1,13709:29289636,42596473 -h1,13709:29993060,42596473:0,411205,112570 -) -k1,13710:32583029,42596473:2534264 -g1,13710:32583029,42596473 -) -v1,13712:6764466,43281328:0,393216,0 -(1,13719:6764466,44411514:25818563,1523402,196608 -g1,13719:6764466,44411514 -g1,13719:6764466,44411514 -g1,13719:6567858,44411514 -(1,13719:6567858,44411514:0,1523402,196608 -r1,13759:32779637,44411514:26211779,1720010,196608 -k1,13719:6567857,44411514:-26211780 -) -(1,13719:6567858,44411514:26211779,1523402,196608 -[1,13719:6764466,44411514:25818563,1326794,0 -(1,13714:6764466,43515765:25818563,431045,112852 -(1,13713:6764466,43515765:0,0,0 -g1,13713:6764466,43515765 -g1,13713:6764466,43515765 -g1,13713:6436786,43515765 -(1,13713:6436786,43515765:0,0,0 -) -g1,13713:6764466,43515765 -) -k1,13714:6764466,43515765:0 -h1,13714:15395269,43515765:0,0,0 -k1,13714:32583029,43515765:17187760 -g1,13714:32583029,43515765 -) -(1,13718:6764466,44331692:25818563,424439,79822 -(1,13716:6764466,44331692:0,0,0 -g1,13716:6764466,44331692 -g1,13716:6764466,44331692 -g1,13716:6436786,44331692 -(1,13716:6436786,44331692:0,0,0 +k1,13661:32583029,14314365:1114810 +) +(1,13661:6630773,15834805:25952256,505283,134348 +h1,13661:6630773,15834805:0,0,0 +g1,13661:8923222,15834805 +k1,13661:32583029,15834805:22669558 +g1,13661:32583029,15834805 +) +(1,13661:6630773,16699885:25952256,513147,134348 +h1,13661:6630773,16699885:0,0,0 +k1,13661:9585071,16699885:255525 +k1,13661:12821172,16699885:255524 +k1,13661:16303690,16699885:255525 +k1,13661:19343840,16699885:255525 +k1,13661:21112591,16699885:255525 +k1,13661:22019543,16699885:255524 +k1,13661:24091071,16699885:255525 +k1,13661:26059052,16699885:255525 +k1,13661:28302283,16699885:255524 +k1,13661:30847636,16699885:255525 +k1,13661:32583029,16699885:0 +) +(1,13661:6630773,17564965:25952256,513147,134348 +g1,13661:8642728,17564965 +g1,13661:11159965,17564965 +g1,13661:12045356,17564965 +g1,13661:13015288,17564965 +g1,13661:16049604,17564965 +g1,13661:17290855,17564965 +g1,13661:19192054,17564965 +g1,13661:21508751,17564965 +g1,13661:22732963,17564965 +g1,13661:23951277,17564965 +g1,13661:26260110,17564965 +g1,13661:27118631,17564965 +g1,13661:29302946,17564965 +h1,13661:30273534,17564965:0,0,0 +k1,13661:32583029,17564965:2257067 +g1,13661:32583029,17564965 +) +] +] +v1,13666:6630773,19665393:0,393216,0 +(1,13666:6630773,19272177:25952256,0,0 +g1,13666:6630773,19272177 +g1,13666:6237557,19272177 +r1,13757:6368629,19272177:131072,0,0 +g1,13666:6567858,19272177 +g1,13666:6764466,19272177 +[1,13666:6764466,19272177:25818563,0,0 +] +g1,13666:32583029,19272177 +) +h1,13666:6630773,19272177:0,0,0 +(1,13669:6630773,20137257:25952256,505283,126483 +h1,13668:6630773,20137257:983040,0,0 +k1,13668:8242228,20137257:158522 +k1,13668:8932247,20137257:158522 +k1,13668:10811744,20137257:158522 +k1,13668:11621694,20137257:158522 +k1,13668:13155817,20137257:158522 +k1,13668:14701081,20137257:158522 +k1,13668:15472365,20137257:158522 +k1,13668:16649973,20137257:158523 +k1,13668:18819140,20137257:158522 +k1,13668:21756389,20137257:158522 +k1,13668:22676439,20137257:158522 +(1,13668:22676439,20137257:0,452978,115847 +r1,13757:25144976,20137257:2468537,568825,115847 +k1,13668:22676439,20137257:-2468537 +) +(1,13668:22676439,20137257:2468537,452978,115847 +k1,13668:22676439,20137257:3277 +h1,13668:25141699,20137257:0,411205,112570 +) +k1,13668:25303498,20137257:158522 +k1,13668:26653465,20137257:158522 +(1,13668:26653465,20137257:0,452978,115847 +r1,13757:29825425,20137257:3171960,568825,115847 +k1,13668:26653465,20137257:-3171960 +) +(1,13668:26653465,20137257:3171960,452978,115847 +k1,13668:26653465,20137257:3277 +h1,13668:29822148,20137257:0,411205,112570 +) +k1,13668:29983947,20137257:158522 +k1,13668:30828631,20137257:158522 +k1,13669:32583029,20137257:0 +) +(1,13669:6630773,21002337:25952256,505283,126483 +k1,13668:8210230,21002337:221551 +k1,13668:11494933,21002337:221550 +k1,13668:12478012,21002337:221551 +(1,13668:12478012,21002337:0,452978,115847 +r1,13757:14946549,21002337:2468537,568825,115847 +k1,13668:12478012,21002337:-2468537 +) +(1,13668:12478012,21002337:2468537,452978,115847 +k1,13668:12478012,21002337:3277 +h1,13668:14943272,21002337:0,411205,112570 +) +k1,13668:15341769,21002337:221550 +k1,13668:18498022,21002337:221551 +k1,13668:20186269,21002337:221551 +(1,13668:20186269,21002337:0,452978,115847 +r1,13757:22654806,21002337:2468537,568825,115847 +k1,13668:20186269,21002337:-2468537 +) +(1,13668:20186269,21002337:2468537,452978,115847 +k1,13668:20186269,21002337:3277 +h1,13668:22651529,21002337:0,411205,112570 +) +k1,13668:22876356,21002337:221550 +k1,13668:24289352,21002337:221551 +(1,13668:24289352,21002337:0,452978,115847 +r1,13757:27461312,21002337:3171960,568825,115847 +k1,13668:24289352,21002337:-3171960 +) +(1,13668:24289352,21002337:3171960,452978,115847 +k1,13668:24289352,21002337:3277 +h1,13668:27458035,21002337:0,411205,112570 +) +k1,13668:27682862,21002337:221550 +k1,13668:29915058,21002337:221551 +k1,13668:32583029,21002337:0 +) +(1,13669:6630773,21867417:25952256,513147,134348 +k1,13668:9347413,21867417:253142 +k1,13668:11983443,21867417:253141 +k1,13668:13804206,21867417:253142 +(1,13668:13804206,21867417:0,452978,115847 +r1,13757:15217607,21867417:1413401,568825,115847 +k1,13668:13804206,21867417:-1413401 +) +(1,13668:13804206,21867417:1413401,452978,115847 +k1,13668:13804206,21867417:3277 +h1,13668:15214330,21867417:0,411205,112570 +) +k1,13668:15644418,21867417:253141 +k1,13668:19259557,21867417:253142 +k1,13668:21204838,21867417:253141 +k1,13668:24411688,21867417:253142 +k1,13668:25731100,21867417:253141 +k1,13668:29047395,21867417:253142 +k1,13668:30062064,21867417:253141 +(1,13668:30062064,21867417:0,452978,115847 +r1,13757:32530601,21867417:2468537,568825,115847 +k1,13668:30062064,21867417:-2468537 +) +(1,13668:30062064,21867417:2468537,452978,115847 +k1,13668:30062064,21867417:3277 +h1,13668:32527324,21867417:0,411205,112570 +) +k1,13668:32583029,21867417:0 +) +(1,13669:6630773,22732497:25952256,513147,134348 +k1,13668:8953369,22732497:184156 +k1,13668:9788953,22732497:184156 +k1,13668:12926817,22732497:184156 +k1,13668:13770265,22732497:184156 +k1,13668:15651148,22732497:184156 +k1,13668:18125132,22732497:184156 +k1,13668:19413570,22732497:184156 +k1,13668:20345493,22732497:184157 +k1,13668:23638677,22732497:184156 +k1,13668:24474261,22732497:184156 +k1,13668:25750902,22732497:184156 +k1,13668:27574113,22732497:184156 +k1,13668:28374307,22732497:184156 +k1,13668:30833873,22732497:184156 +k1,13669:32583029,22732497:0 +) +(1,13669:6630773,23597577:25952256,513147,126483 +g1,13668:8988758,23597577 +g1,13668:9870872,23597577 +g1,13668:10721529,23597577 +g1,13668:12502797,23597577 +g1,13668:14341081,23597577 +g1,13668:15156348,23597577 +g1,13668:15711437,23597577 +g1,13668:18091049,23597577 +g1,13668:21052621,23597577 +g1,13668:21903278,23597577 +g1,13668:23121592,23597577 +k1,13669:32583029,23597577:7143429 +g1,13669:32583029,23597577 +) +v1,13670:6630773,24462657:0,393216,0 +(1,13757:6630773,44608122:25952256,20538681,0 +g1,13757:6630773,44608122 +g1,13757:6237557,44608122 +r1,13757:6368629,44608122:131072,20538681,0 +g1,13757:6567858,44608122 +g1,13757:6764466,44608122 +[1,13757:6764466,44608122:25818563,20538681,0 +(1,13672:6764466,24770955:25818563,701514,196608 +(1,13670:6764466,24770955:0,701514,196608 +r1,13757:7761522,24770955:997056,898122,196608 +k1,13670:6764466,24770955:-997056 +) +(1,13670:6764466,24770955:997056,701514,196608 +) +k1,13670:8047127,24770955:285605 +k1,13670:8374807,24770955:327680 +k1,13670:8374807,24770955:0 +k1,13671:9857099,24770955:285605 +k1,13671:11697874,24770955:285606 +k1,13671:13174924,24770955:285605 +k1,13671:16391954,24770955:285605 +k1,13671:17336851,24770955:285605 +k1,13671:18641541,24770955:285605 +k1,13671:21216974,24770955:285605 +k1,13671:24281307,24770955:285606 +k1,13671:25328440,24770955:285605 +(1,13671:25328440,24770955:0,452978,115847 +r1,13757:28500400,24770955:3171960,568825,115847 +k1,13671:25328440,24770955:-3171960 +) +(1,13671:25328440,24770955:3171960,452978,115847 +k1,13671:25328440,24770955:3277 +h1,13671:28497123,24770955:0,411205,112570 +) +k1,13671:28786005,24770955:285605 +k1,13671:31773659,24770955:285605 +k1,13671:32583029,24770955:0 +) +(1,13672:6764466,25636035:25818563,513147,134348 +k1,13671:7983715,25636035:200164 +k1,13671:9739049,25636035:200165 +k1,13671:10598505,25636035:200164 +k1,13671:11817755,25636035:200165 +k1,13671:14005626,25636035:200164 +k1,13671:14893264,25636035:200165 +k1,13671:17226625,25636035:200164 +k1,13671:18496337,25636035:200164 +(1,13671:18496337,25636035:0,452978,115847 +r1,13757:21668297,25636035:3171960,568825,115847 +k1,13671:18496337,25636035:-3171960 +) +(1,13671:18496337,25636035:3171960,452978,115847 +k1,13671:18496337,25636035:3277 +h1,13671:21665020,25636035:0,411205,112570 +) +k1,13671:21868462,25636035:200165 +k1,13671:22600123,25636035:200164 +k1,13671:23156148,25636035:200165 +k1,13671:25663179,25636035:200164 +k1,13671:28317667,25636035:200165 +k1,13671:29911782,25636035:200164 +k1,13671:32583029,25636035:0 +) +(1,13672:6764466,26501115:25818563,505283,126483 +k1,13672:32583029,26501115:21086864 +g1,13672:32583029,26501115 +) +v1,13674:6764466,27185970:0,393216,0 +(1,13681:6764466,28342580:25818563,1549826,196608 +g1,13681:6764466,28342580 +g1,13681:6764466,28342580 +g1,13681:6567858,28342580 +(1,13681:6567858,28342580:0,1549826,196608 +r1,13757:32779637,28342580:26211779,1746434,196608 +k1,13681:6567857,28342580:-26211780 +) +(1,13681:6567858,28342580:26211779,1549826,196608 +[1,13681:6764466,28342580:25818563,1353218,0 +(1,13676:6764466,27420407:25818563,431045,106246 +(1,13675:6764466,27420407:0,0,0 +g1,13675:6764466,27420407 +g1,13675:6764466,27420407 +g1,13675:6436786,27420407 +(1,13675:6436786,27420407:0,0,0 +) +g1,13675:6764466,27420407 +) +k1,13676:6764466,27420407:0 +k1,13676:6764466,27420407:0 +h1,13676:13071592,27420407:0,0,0 +k1,13676:32583028,27420407:19511436 +g1,13676:32583028,27420407 +) +(1,13680:6764466,28236334:25818563,424439,106246 +(1,13678:6764466,28236334:0,0,0 +g1,13678:6764466,28236334 +g1,13678:6764466,28236334 +g1,13678:6436786,28236334 +(1,13678:6436786,28236334:0,0,0 +) +g1,13678:6764466,28236334 +) +g1,13680:7760328,28236334 +g1,13680:9088144,28236334 +h1,13680:13071591,28236334:0,0,0 +k1,13680:32583029,28236334:19511438 +g1,13680:32583029,28236334 +) +] +) +g1,13681:32583029,28342580 +g1,13681:6764466,28342580 +g1,13681:6764466,28342580 +g1,13681:32583029,28342580 +g1,13681:32583029,28342580 +) +h1,13681:6764466,28539188:0,0,0 +(1,13685:6764466,29404268:25818563,505283,134348 +h1,13684:6764466,29404268:983040,0,0 +k1,13684:9199019,29404268:180115 +k1,13684:10746214,29404268:180114 +k1,13684:12845223,29404268:180115 +k1,13684:13893690,29404268:180115 +k1,13684:15604070,29404268:180114 +k1,13684:16435613,29404268:180115 +k1,13684:18819704,29404268:180115 +k1,13684:22192732,29404268:180114 +k1,13684:25326555,29404268:180115 +k1,13684:26038167,29404268:180115 +k1,13684:27916319,29404268:180114 +k1,13684:30284026,29404268:180115 +k1,13685:32583029,29404268:0 +) +(1,13685:6764466,30269348:25818563,505283,134348 +k1,13684:8579992,30269348:217758 +k1,13684:9449178,30269348:217758 +k1,13684:11448205,30269348:217758 +k1,13684:14270364,30269348:217758 +k1,13684:15855203,30269348:217758 +k1,13684:16604459,30269348:217759 +k1,13684:18520255,30269348:217758 +k1,13684:20995728,30269348:217758 +k1,13684:23540014,30269348:217758 +k1,13684:24409200,30269348:217758 +k1,13684:26964627,30269348:217758 +k1,13684:32583029,30269348:0 +) +(1,13685:6764466,31134428:25818563,505283,126483 +k1,13684:8019816,31134428:236265 +k1,13684:11464724,31134428:236265 +k1,13684:13711633,31134428:236264 +k1,13684:15957887,31134428:236265 +k1,13684:17213237,31134428:236265 +k1,13684:18849351,31134428:236265 +(1,13684:18849351,31134428:0,452978,115847 +r1,13757:20614464,31134428:1765113,568825,115847 +k1,13684:18849351,31134428:-1765113 +) +(1,13684:18849351,31134428:1765113,452978,115847 +k1,13684:18849351,31134428:3277 +h1,13684:20611187,31134428:0,411205,112570 +) +k1,13684:20850728,31134428:236264 +k1,13684:22191275,31134428:236265 +k1,13684:23175306,31134428:236265 +k1,13684:24924797,31134428:236265 +k1,13684:25812489,31134428:236264 +k1,13684:28343825,31134428:236265 +k1,13684:29599175,31134428:236265 +k1,13684:32583029,31134428:0 +) +(1,13685:6764466,31999508:25818563,505283,134348 +k1,13684:9234479,31999508:258173 +(1,13684:9234479,31999508:0,452978,115847 +r1,13757:10999592,31999508:1765113,568825,115847 +k1,13684:9234479,31999508:-1765113 +) +(1,13684:9234479,31999508:1765113,452978,115847 +k1,13684:9234479,31999508:3277 +h1,13684:10996315,31999508:0,411205,112570 +) +k1,13684:11257765,31999508:258173 +k1,13684:12909888,31999508:258172 +(1,13684:12909888,31999508:0,452978,115847 +r1,13757:17840408,31999508:4930520,568825,115847 +k1,13684:12909888,31999508:-4930520 +) +(1,13684:12909888,31999508:4930520,452978,115847 +g1,13684:15726860,31999508 +g1,13684:16430284,31999508 +h1,13684:17837131,31999508:0,411205,112570 +) +k1,13684:18272251,31999508:258173 +(1,13684:18272251,31999508:0,452978,122846 +r1,13757:24257906,31999508:5985655,575824,122846 +k1,13684:18272251,31999508:-5985655 +) +(1,13684:18272251,31999508:5985655,452978,122846 +g1,13684:21792646,31999508 +g1,13684:22496070,31999508 +h1,13684:24254629,31999508:0,411205,112570 +) +k1,13684:24516079,31999508:258173 +k1,13684:25965697,31999508:258173 +(1,13684:25965697,31999508:0,452978,115847 +r1,13757:29841082,31999508:3875385,568825,115847 +k1,13684:25965697,31999508:-3875385 +) +(1,13684:25965697,31999508:3875385,452978,115847 +g1,13684:28782669,31999508 +g1,13684:29486093,31999508 +h1,13684:29837805,31999508:0,411205,112570 +) +k1,13684:30099254,31999508:258172 +k1,13684:31043589,31999508:258173 +k1,13685:32583029,31999508:0 +) +(1,13685:6764466,32864588:25818563,513147,126483 +g1,13684:8933052,32864588 +g1,13684:11765518,32864588 +g1,13684:12983832,32864588 +g1,13684:15341817,32864588 +g1,13684:16192474,32864588 +g1,13684:17162406,32864588 +g1,13684:20175751,32864588 +g1,13684:21034272,32864588 +g1,13684:22252586,32864588 +g1,13684:25383240,32864588 +g1,13684:26249625,32864588 +(1,13684:26249625,32864588:0,459977,115847 +r1,13757:27311314,32864588:1061689,575824,115847 +k1,13684:26249625,32864588:-1061689 +) +(1,13684:26249625,32864588:1061689,459977,115847 +k1,13684:26249625,32864588:3277 +h1,13684:27308037,32864588:0,411205,112570 +) +k1,13685:32583029,32864588:5219287 +g1,13685:32583029,32864588 +) +v1,13687:6764466,33549443:0,393216,0 +(1,13704:6764466,41534785:25818563,8378558,196608 +g1,13704:6764466,41534785 +g1,13704:6764466,41534785 +g1,13704:6567858,41534785 +(1,13704:6567858,41534785:0,8378558,196608 +r1,13757:32779637,41534785:26211779,8575166,196608 +k1,13704:6567857,41534785:-26211780 +) +(1,13704:6567858,41534785:26211779,8378558,196608 +[1,13704:6764466,41534785:25818563,8181950,0 +(1,13689:6764466,33783880:25818563,431045,112852 +(1,13688:6764466,33783880:0,0,0 +g1,13688:6764466,33783880 +g1,13688:6764466,33783880 +g1,13688:6436786,33783880 +(1,13688:6436786,33783880:0,0,0 +) +g1,13688:6764466,33783880 +) +k1,13689:6764466,33783880:0 +g1,13689:12739638,33783880 +g1,13689:15395270,33783880 +g1,13689:16059178,33783880 +g1,13689:18050902,33783880 +g1,13689:21370441,33783880 +g1,13689:22034349,33783880 +g1,13689:24358027,33783880 +g1,13689:27013659,33783880 +g1,13689:27677567,33783880 +h1,13689:28341475,33783880:0,0,0 +k1,13689:32583029,33783880:4241554 +g1,13689:32583029,33783880 +) +(1,13703:6764466,34599807:25818563,431045,112852 +(1,13691:6764466,34599807:0,0,0 +g1,13691:6764466,34599807 +g1,13691:6764466,34599807 +g1,13691:6436786,34599807 +(1,13691:6436786,34599807:0,0,0 +) +g1,13691:6764466,34599807 +) +g1,13703:7760328,34599807 +g1,13703:8092282,34599807 +g1,13703:8756190,34599807 +g1,13703:10415960,34599807 +g1,13703:10747914,34599807 +g1,13703:11079868,34599807 +g1,13703:11411822,34599807 +g1,13703:11743776,34599807 +g1,13703:12075730,34599807 +g1,13703:12407684,34599807 +g1,13703:12739638,34599807 +g1,13703:13071592,34599807 +g1,13703:13735500,34599807 +g1,13703:16723085,34599807 +g1,13703:20374578,34599807 +g1,13703:21038486,34599807 +g1,13703:22698256,34599807 +g1,13703:23362164,34599807 +g1,13703:24026072,34599807 +g1,13703:24689980,34599807 +g1,13703:27013658,34599807 +g1,13703:28673428,34599807 +g1,13703:29337336,34599807 +h1,13703:30997106,34599807:0,0,0 +k1,13703:32583029,34599807:1585923 +g1,13703:32583029,34599807 +) +(1,13703:6764466,35284662:25818563,431045,112852 +h1,13703:6764466,35284662:0,0,0 +g1,13703:7760328,35284662 +g1,13703:8092282,35284662 +g1,13703:8756190,35284662 +g1,13703:10747914,35284662 +g1,13703:11079868,35284662 +g1,13703:11411822,35284662 +g1,13703:11743776,35284662 +g1,13703:12075730,35284662 +g1,13703:12407684,35284662 +g1,13703:12739638,35284662 +g1,13703:13071592,35284662 +g1,13703:16059177,35284662 +g1,13703:19046763,35284662 +g1,13703:22366303,35284662 +g1,13703:22698257,35284662 +g1,13703:25685842,35284662 +g1,13703:27345612,35284662 +g1,13703:28009520,35284662 +g1,13703:28673428,35284662 +g1,13703:29337336,35284662 +h1,13703:30997106,35284662:0,0,0 +k1,13703:32583029,35284662:1585923 +g1,13703:32583029,35284662 +) +(1,13703:6764466,35969517:25818563,431045,79822 +h1,13703:6764466,35969517:0,0,0 +g1,13703:7760328,35969517 +g1,13703:8092282,35969517 +g1,13703:8756190,35969517 +g1,13703:12075729,35969517 +g1,13703:12407683,35969517 +g1,13703:12739637,35969517 +g1,13703:13071591,35969517 +g1,13703:13735499,35969517 +g1,13703:15727223,35969517 +g1,13703:17055039,35969517 +g1,13703:19378717,35969517 +g1,13703:21038487,35969517 +g1,13703:23030211,35969517 +h1,13703:24026073,35969517:0,0,0 +k1,13703:32583029,35969517:8556956 +g1,13703:32583029,35969517 +) +(1,13703:6764466,36654372:25818563,431045,86428 +h1,13703:6764466,36654372:0,0,0 +g1,13703:7760328,36654372 +g1,13703:8092282,36654372 +g1,13703:8756190,36654372 +g1,13703:13071591,36654372 +g1,13703:13735499,36654372 +g1,13703:15063315,36654372 +g1,13703:17055039,36654372 +g1,13703:18714809,36654372 +g1,13703:21038487,36654372 +g1,13703:22698257,36654372 +h1,13703:23694119,36654372:0,0,0 +k1,13703:32583029,36654372:8888910 +g1,13703:32583029,36654372 +) +(1,13703:6764466,37339227:25818563,431045,112852 +h1,13703:6764466,37339227:0,0,0 +g1,13703:7760328,37339227 +g1,13703:8092282,37339227 +g1,13703:8756190,37339227 +g1,13703:11411822,37339227 +g1,13703:11743776,37339227 +g1,13703:12075730,37339227 +g1,13703:12407684,37339227 +g1,13703:12739638,37339227 +g1,13703:13071592,37339227 +g1,13703:13735500,37339227 +g1,13703:15727224,37339227 +g1,13703:17386994,37339227 +g1,13703:19378718,37339227 +g1,13703:21370442,37339227 +h1,13703:23030212,37339227:0,0,0 +k1,13703:32583029,37339227:9552817 +g1,13703:32583029,37339227 +) +(1,13703:6764466,38024082:25818563,431045,112852 +h1,13703:6764466,38024082:0,0,0 +g1,13703:7760328,38024082 +g1,13703:8092282,38024082 +g1,13703:8756190,38024082 +g1,13703:10747914,38024082 +g1,13703:11079868,38024082 +g1,13703:11411822,38024082 +g1,13703:11743776,38024082 +g1,13703:12075730,38024082 +g1,13703:12407684,38024082 +g1,13703:12739638,38024082 +g1,13703:13071592,38024082 +g1,13703:13735500,38024082 +g1,13703:15063316,38024082 +h1,13703:16391132,38024082:0,0,0 +k1,13703:32583029,38024082:16191897 +g1,13703:32583029,38024082 +) +(1,13703:6764466,38708937:25818563,431045,79822 +h1,13703:6764466,38708937:0,0,0 +g1,13703:7760328,38708937 +g1,13703:8092282,38708937 +g1,13703:8756190,38708937 +g1,13703:9752052,38708937 +g1,13703:10084006,38708937 +g1,13703:10415960,38708937 +g1,13703:10747914,38708937 +g1,13703:11079868,38708937 +g1,13703:11411822,38708937 +g1,13703:11743776,38708937 +g1,13703:12075730,38708937 +g1,13703:12407684,38708937 +g1,13703:12739638,38708937 +g1,13703:13071592,38708937 +g1,13703:13735500,38708937 +g1,13703:15063316,38708937 +g1,13703:17055040,38708937 +g1,13703:17718948,38708937 +g1,13703:18714810,38708937 +h1,13703:19046764,38708937:0,0,0 +k1,13703:32583029,38708937:13536265 +g1,13703:32583029,38708937 +) +(1,13703:6764466,39393792:25818563,431045,106246 +h1,13703:6764466,39393792:0,0,0 +g1,13703:7760328,39393792 +g1,13703:8092282,39393792 +g1,13703:8756190,39393792 +g1,13703:12075729,39393792 +g1,13703:12407683,39393792 +g1,13703:12739637,39393792 +g1,13703:13071591,39393792 +g1,13703:13735499,39393792 +g1,13703:15063315,39393792 +h1,13703:16723085,39393792:0,0,0 +k1,13703:32583029,39393792:15859944 +g1,13703:32583029,39393792 +) +(1,13703:6764466,40078647:25818563,431045,112852 +h1,13703:6764466,40078647:0,0,0 +g1,13703:7760328,40078647 +g1,13703:8092282,40078647 +g1,13703:8756190,40078647 +g1,13703:13735499,40078647 +g1,13703:15063315,40078647 +h1,13703:16723085,40078647:0,0,0 +k1,13703:32583029,40078647:15859944 +g1,13703:32583029,40078647 +) +(1,13703:6764466,40763502:25818563,431045,79822 +h1,13703:6764466,40763502:0,0,0 +g1,13703:7760328,40763502 +g1,13703:8092282,40763502 +g1,13703:8756190,40763502 +g1,13703:12407683,40763502 +g1,13703:12739637,40763502 +g1,13703:13071591,40763502 +g1,13703:13735499,40763502 +g1,13703:15727223,40763502 +g1,13703:17055039,40763502 +g1,13703:19046763,40763502 +g1,13703:20706533,40763502 +g1,13703:21370441,40763502 +h1,13703:22366303,40763502:0,0,0 +k1,13703:32583029,40763502:10216726 +g1,13703:32583029,40763502 +) +(1,13703:6764466,41448357:25818563,431045,86428 +h1,13703:6764466,41448357:0,0,0 +g1,13703:7760328,41448357 +g1,13703:8092282,41448357 +g1,13703:8756190,41448357 +g1,13703:13071591,41448357 +g1,13703:13735499,41448357 +g1,13703:15063315,41448357 +g1,13703:17055039,41448357 +g1,13703:18714809,41448357 +g1,13703:21038487,41448357 +g1,13703:23694119,41448357 +h1,13703:24689981,41448357:0,0,0 +k1,13703:32583029,41448357:7893048 +g1,13703:32583029,41448357 +) +] +) +g1,13704:32583029,41534785 +g1,13704:6764466,41534785 +g1,13704:6764466,41534785 +g1,13704:32583029,41534785 +g1,13704:32583029,41534785 +) +h1,13704:6764466,41731393:0,0,0 +(1,13708:6764466,42596473:25818563,513147,134348 +h1,13707:6764466,42596473:983040,0,0 +g1,13707:11184869,42596473 +g1,13707:12043390,42596473 +g1,13707:15196327,42596473 +g1,13707:17710943,42596473 +g1,13707:18929257,42596473 +g1,13707:20849461,42596473 +g1,13707:21463533,42596473 +g1,13707:23248733,42596473 +g1,13707:25183355,42596473 +(1,13707:25183355,42596473:0,459977,115847 +r1,13757:25541621,42596473:358266,575824,115847 +k1,13707:25183355,42596473:-358266 +) +(1,13707:25183355,42596473:358266,459977,115847 +k1,13707:25183355,42596473:3277 +h1,13707:25538344,42596473:0,411205,112570 +) +g1,13707:25914520,42596473 +(1,13707:25914520,42596473:0,452978,115847 +r1,13757:26976210,42596473:1061690,568825,115847 +k1,13707:25914520,42596473:-1061690 +) +(1,13707:25914520,42596473:1061690,452978,115847 +g1,13707:26621221,42596473 +h1,13707:26972933,42596473:0,411205,112570 +) +g1,13707:27349109,42596473 +g1,13707:28231223,42596473 +(1,13707:28231223,42596473:0,452978,115847 +r1,13757:29996337,42596473:1765114,568825,115847 +k1,13707:28231223,42596473:-1765114 +) +(1,13707:28231223,42596473:1765114,452978,115847 +g1,13707:29289636,42596473 +h1,13707:29993060,42596473:0,411205,112570 +) +k1,13708:32583029,42596473:2534264 +g1,13708:32583029,42596473 +) +v1,13710:6764466,43281328:0,393216,0 +(1,13717:6764466,44411514:25818563,1523402,196608 +g1,13717:6764466,44411514 +g1,13717:6764466,44411514 +g1,13717:6567858,44411514 +(1,13717:6567858,44411514:0,1523402,196608 +r1,13757:32779637,44411514:26211779,1720010,196608 +k1,13717:6567857,44411514:-26211780 +) +(1,13717:6567858,44411514:26211779,1523402,196608 +[1,13717:6764466,44411514:25818563,1326794,0 +(1,13712:6764466,43515765:25818563,431045,112852 +(1,13711:6764466,43515765:0,0,0 +g1,13711:6764466,43515765 +g1,13711:6764466,43515765 +g1,13711:6436786,43515765 +(1,13711:6436786,43515765:0,0,0 +) +g1,13711:6764466,43515765 +) +k1,13712:6764466,43515765:0 +h1,13712:15395269,43515765:0,0,0 +k1,13712:32583029,43515765:17187760 +g1,13712:32583029,43515765 +) +(1,13716:6764466,44331692:25818563,424439,79822 +(1,13714:6764466,44331692:0,0,0 +g1,13714:6764466,44331692 +g1,13714:6764466,44331692 +g1,13714:6436786,44331692 +(1,13714:6436786,44331692:0,0,0 ) -g1,13716:6764466,44331692 +g1,13714:6764466,44331692 ) -g1,13718:7760328,44331692 -g1,13718:9088144,44331692 -h1,13718:12075729,44331692:0,0,0 -k1,13718:32583029,44331692:20507300 -g1,13718:32583029,44331692 +g1,13716:7760328,44331692 +g1,13716:9088144,44331692 +h1,13716:12075729,44331692:0,0,0 +k1,13716:32583029,44331692:20507300 +g1,13716:32583029,44331692 ) ] ) -g1,13719:32583029,44411514 -g1,13719:6764466,44411514 -g1,13719:6764466,44411514 -g1,13719:32583029,44411514 -g1,13719:32583029,44411514 +g1,13717:32583029,44411514 +g1,13717:6764466,44411514 +g1,13717:6764466,44411514 +g1,13717:32583029,44411514 +g1,13717:32583029,44411514 ) -h1,13719:6764466,44608122:0,0,0 +h1,13717:6764466,44608122:0,0,0 ] -g1,13759:32583029,44608122 +g1,13757:32583029,44608122 ) ] -(1,13759:32583029,45706769:0,0,0 -g1,13759:32583029,45706769 +(1,13757:32583029,45706769:0,0,0 +g1,13757:32583029,45706769 ) ) ] -(1,13759:6630773,47279633:25952256,0,0 -h1,13759:6630773,47279633:25952256,0,0 +(1,13757:6630773,47279633:25952256,0,0 +h1,13757:6630773,47279633:25952256,0,0 ) ] -(1,13759:4262630,4025873:0,0,0 -[1,13759:-473656,4025873:0,0,0 -(1,13759:-473656,-710413:0,0,0 -(1,13759:-473656,-710413:0,0,0 -g1,13759:-473656,-710413 +(1,13757:4262630,4025873:0,0,0 +[1,13757:-473656,4025873:0,0,0 +(1,13757:-473656,-710413:0,0,0 +(1,13757:-473656,-710413:0,0,0 +g1,13757:-473656,-710413 ) -g1,13759:-473656,-710413 +g1,13757:-473656,-710413 ) ] ) ] !36690 -}220 -Input:2337:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2338:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2339:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}221 Input:2340:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2341:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{221 -[1,13847:4262630,47279633:28320399,43253760,0 -(1,13847:4262630,4025873:0,0,0 -[1,13847:-473656,4025873:0,0,0 -(1,13847:-473656,-710413:0,0,0 -(1,13847:-473656,-644877:0,0,0 -k1,13847:-473656,-644877:-65536 +{222 +[1,13845:4262630,47279633:28320399,43253760,0 +(1,13845:4262630,4025873:0,0,0 +[1,13845:-473656,4025873:0,0,0 +(1,13845:-473656,-710413:0,0,0 +(1,13845:-473656,-644877:0,0,0 +k1,13845:-473656,-644877:-65536 ) -(1,13847:-473656,4736287:0,0,0 -k1,13847:-473656,4736287:5209943 +(1,13845:-473656,4736287:0,0,0 +k1,13845:-473656,4736287:5209943 ) -g1,13847:-473656,-710413 +g1,13845:-473656,-710413 ) ] ) -[1,13847:6630773,47279633:25952256,43253760,0 -[1,13847:6630773,4812305:25952256,786432,0 -(1,13847:6630773,4812305:25952256,513147,126483 -(1,13847:6630773,4812305:25952256,513147,126483 -g1,13847:3078558,4812305 -[1,13847:3078558,4812305:0,0,0 -(1,13847:3078558,2439708:0,1703936,0 -k1,13847:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13847:2537886,2439708:1179648,16384,0 +[1,13845:6630773,47279633:25952256,43253760,0 +[1,13845:6630773,4812305:25952256,786432,0 +(1,13845:6630773,4812305:25952256,513147,126483 +(1,13845:6630773,4812305:25952256,513147,126483 +g1,13845:3078558,4812305 +[1,13845:3078558,4812305:0,0,0 +(1,13845:3078558,2439708:0,1703936,0 +k1,13845:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13845:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13847:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13845:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13847:3078558,4812305:0,0,0 -(1,13847:3078558,2439708:0,1703936,0 -g1,13847:29030814,2439708 -g1,13847:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13847:36151628,1915420:16384,1179648,0 +[1,13845:3078558,4812305:0,0,0 +(1,13845:3078558,2439708:0,1703936,0 +g1,13845:29030814,2439708 +g1,13845:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13845:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13847:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13845:37855564,2439708:1179648,16384,0 ) ) -k1,13847:3078556,2439708:-34777008 +k1,13845:3078556,2439708:-34777008 ) ] -[1,13847:3078558,4812305:0,0,0 -(1,13847:3078558,49800853:0,16384,2228224 -k1,13847:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13847:2537886,49800853:1179648,16384,0 +[1,13845:3078558,4812305:0,0,0 +(1,13845:3078558,49800853:0,16384,2228224 +k1,13845:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13845:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13847:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13845:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13847:3078558,4812305:0,0,0 -(1,13847:3078558,49800853:0,16384,2228224 -g1,13847:29030814,49800853 -g1,13847:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13847:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] +[1,13845:3078558,4812305:0,0,0 +(1,13845:3078558,49800853:0,16384,2228224 +g1,13845:29030814,49800853 +g1,13845:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13845:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13847:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13845:37855564,49800853:1179648,16384,0 ) ) -k1,13847:3078556,49800853:-34777008 +k1,13845:3078556,49800853:-34777008 ) -] -g1,13847:6630773,4812305 -k1,13847:19575446,4812305:11749296 -g1,13847:21198117,4812305 -g1,13847:21985204,4812305 -g1,13847:24539797,4812305 -g1,13847:25949476,4812305 -g1,13847:28728857,4812305 -g1,13847:29852144,4812305 -) -) -] -[1,13847:6630773,45706769:25952256,40108032,0 -(1,13847:6630773,45706769:25952256,40108032,0 -(1,13847:6630773,45706769:0,0,0 -g1,13847:6630773,45706769 -) -[1,13847:6630773,45706769:25952256,40108032,0 -v1,13759:6630773,6254097:0,393216,0 -(1,13759:6630773,18940304:25952256,13079423,0 -g1,13759:6630773,18940304 -g1,13759:6237557,18940304 -r1,13847:6368629,18940304:131072,13079423,0 -g1,13759:6567858,18940304 -g1,13759:6764466,18940304 -[1,13759:6764466,18940304:25818563,13079423,0 -(1,13723:6764466,6374028:25818563,513147,126483 -h1,13722:6764466,6374028:983040,0,0 -k1,13722:11029284,6374028:212072 -k1,13722:11908513,6374028:212073 -(1,13722:11908513,6374028:0,459977,115847 -r1,13847:16135609,6374028:4227096,575824,115847 -k1,13722:11908513,6374028:-4227096 -) -(1,13722:11908513,6374028:4227096,459977,115847 -k1,13722:11908513,6374028:3277 -h1,13722:16132332,6374028:0,411205,112570 -) -k1,13722:16347681,6374028:212072 -k1,13722:17551313,6374028:212072 -k1,13722:21961622,6374028:212073 -k1,13722:22935222,6374028:212072 -k1,13722:26193407,6374028:212072 -k1,13722:27064771,6374028:212072 -k1,13722:28785483,6374028:212073 -k1,13722:31841162,6374028:212072 -k1,13723:32583029,6374028:0 -) -(1,13723:6764466,7239108:25818563,505283,134348 -g1,13722:8438910,7239108 -g1,13722:11144236,7239108 -g1,13722:12534910,7239108 -g1,13722:15566605,7239108 -g1,13722:17455352,7239108 -g1,13722:18270619,7239108 -g1,13722:19488933,7239108 -g1,13722:21675869,7239108 -g1,13722:23834624,7239108 -(1,13722:23834624,7239108:0,459977,115847 -r1,13847:24896313,7239108:1061689,575824,115847 -k1,13722:23834624,7239108:-1061689 -) -(1,13722:23834624,7239108:1061689,459977,115847 -k1,13722:23834624,7239108:3277 -h1,13722:24893036,7239108:0,411205,112570 -) -g1,13722:25095542,7239108 -g1,13722:26991498,7239108 -g1,13722:28182287,7239108 -g1,13722:29447787,7239108 -k1,13723:32583029,7239108:324403 -g1,13723:32583029,7239108 -) -v1,13725:6764466,7923963:0,393216,0 -(1,13757:6764466,18743696:25818563,11212949,196608 -g1,13757:6764466,18743696 -g1,13757:6764466,18743696 -g1,13757:6567858,18743696 -(1,13757:6567858,18743696:0,11212949,196608 -r1,13847:32779637,18743696:26211779,11409557,196608 -k1,13757:6567857,18743696:-26211780 -) -(1,13757:6567858,18743696:26211779,11212949,196608 -[1,13757:6764466,18743696:25818563,11016341,0 -(1,13727:6764466,8158400:25818563,431045,79822 -(1,13726:6764466,8158400:0,0,0 -g1,13726:6764466,8158400 -g1,13726:6764466,8158400 -g1,13726:6436786,8158400 -(1,13726:6436786,8158400:0,0,0 -) -g1,13726:6764466,8158400 -) -k1,13727:6764466,8158400:0 -h1,13727:9752052,8158400:0,0,0 -k1,13727:32583028,8158400:22830976 -g1,13727:32583028,8158400 -) -(1,13732:6764466,8974327:25818563,424439,106246 -(1,13729:6764466,8974327:0,0,0 -g1,13729:6764466,8974327 -g1,13729:6764466,8974327 -g1,13729:6436786,8974327 -(1,13729:6436786,8974327:0,0,0 -) -g1,13729:6764466,8974327 -) -g1,13732:7760328,8974327 -g1,13732:11743775,8974327 -g1,13732:12075729,8974327 -g1,13732:12407683,8974327 -g1,13732:12739637,8974327 -g1,13732:13071591,8974327 -g1,13732:13403545,8974327 -g1,13732:13735499,8974327 -h1,13732:15395269,8974327:0,0,0 -k1,13732:32583029,8974327:17187760 -g1,13732:32583029,8974327 -) -(1,13732:6764466,9659182:25818563,407923,9908 -h1,13732:6764466,9659182:0,0,0 -g1,13732:7760328,9659182 -g1,13732:8092282,9659182 -g1,13732:11743775,9659182 -g1,13732:12075729,9659182 -g1,13732:12407683,9659182 -g1,13732:12739637,9659182 -h1,13732:15395268,9659182:0,0,0 -k1,13732:32583028,9659182:17187760 -g1,13732:32583028,9659182 -) -(1,13734:6764466,10475109:25818563,431045,79822 -(1,13733:6764466,10475109:0,0,0 -g1,13733:6764466,10475109 -g1,13733:6764466,10475109 -g1,13733:6436786,10475109 -(1,13733:6436786,10475109:0,0,0 -) -g1,13733:6764466,10475109 -) -k1,13734:6764466,10475109:0 -h1,13734:13735499,10475109:0,0,0 -k1,13734:32583029,10475109:18847530 -g1,13734:32583029,10475109 -) -(1,13739:6764466,11291036:25818563,424439,79822 -(1,13736:6764466,11291036:0,0,0 -g1,13736:6764466,11291036 -g1,13736:6764466,11291036 -g1,13736:6436786,11291036 -(1,13736:6436786,11291036:0,0,0 -) -g1,13736:6764466,11291036 -) -g1,13739:7760328,11291036 -g1,13739:8092282,11291036 -g1,13739:10084006,11291036 -g1,13739:11411822,11291036 -g1,13739:13403546,11291036 -g1,13739:15727224,11291036 -h1,13739:17055040,11291036:0,0,0 -k1,13739:32583029,11291036:15527989 -g1,13739:32583029,11291036 -) -(1,13739:6764466,11975891:25818563,424439,106246 -h1,13739:6764466,11975891:0,0,0 -g1,13739:7760328,11975891 -g1,13739:8092282,11975891 -g1,13739:8756190,11975891 -g1,13739:11411822,11975891 -g1,13739:14731361,11975891 -g1,13739:16059177,11975891 -g1,13739:18050901,11975891 -g1,13739:22698256,11975891 -h1,13739:25021934,11975891:0,0,0 -k1,13739:32583029,11975891:7561095 -g1,13739:32583029,11975891 -) -(1,13741:6764466,12791818:25818563,431045,106246 -(1,13740:6764466,12791818:0,0,0 -g1,13740:6764466,12791818 -g1,13740:6764466,12791818 -g1,13740:6436786,12791818 -(1,13740:6436786,12791818:0,0,0 -) -g1,13740:6764466,12791818 -) -k1,13741:6764466,12791818:0 -k1,13741:6764466,12791818:0 -h1,13741:17386993,12791818:0,0,0 -k1,13741:32583029,12791818:15196036 -g1,13741:32583029,12791818 -) -(1,13747:6764466,13607745:25818563,424439,79822 -(1,13743:6764466,13607745:0,0,0 -g1,13743:6764466,13607745 -g1,13743:6764466,13607745 -g1,13743:6436786,13607745 -(1,13743:6436786,13607745:0,0,0 -) -g1,13743:6764466,13607745 -) -g1,13747:7760328,13607745 -g1,13747:8092282,13607745 -g1,13747:8424236,13607745 -g1,13747:8756190,13607745 -g1,13747:9088144,13607745 -g1,13747:9420098,13607745 -g1,13747:9752052,13607745 -g1,13747:10084006,13607745 -g1,13747:10415960,13607745 -g1,13747:10747914,13607745 -g1,13747:11079868,13607745 -g1,13747:11411822,13607745 -g1,13747:11743776,13607745 -g1,13747:12075730,13607745 -g1,13747:12407684,13607745 -g1,13747:15395269,13607745 -g1,13747:17055039,13607745 -g1,13747:19046763,13607745 -g1,13747:19378717,13607745 -g1,13747:19710671,13607745 -g1,13747:20374579,13607745 -g1,13747:22366303,13607745 -g1,13747:22698257,13607745 -g1,13747:23030211,13607745 -g1,13747:23362165,13607745 -g1,13747:23694119,13607745 -k1,13747:23694119,13607745:0 -h1,13747:26349751,13607745:0,0,0 -k1,13747:32583029,13607745:6233278 -g1,13747:32583029,13607745 -) -(1,13747:6764466,14292600:25818563,424439,106246 -h1,13747:6764466,14292600:0,0,0 -g1,13747:7760328,14292600 -g1,13747:11743775,14292600 -g1,13747:15395268,14292600 -g1,13747:15727222,14292600 -g1,13747:19046761,14292600 -g1,13747:22366300,14292600 -k1,13747:22366300,14292600:0 -h1,13747:26349747,14292600:0,0,0 -k1,13747:32583029,14292600:6233282 -g1,13747:32583029,14292600 -) -(1,13747:6764466,14977455:25818563,424439,106246 -h1,13747:6764466,14977455:0,0,0 -g1,13747:7760328,14977455 -g1,13747:9752052,14977455 -g1,13747:10084006,14977455 -g1,13747:10415960,14977455 -g1,13747:10747914,14977455 -g1,13747:11079868,14977455 -g1,13747:11411822,14977455 -g1,13747:11743776,14977455 -g1,13747:12075730,14977455 -g1,13747:12407684,14977455 -g1,13747:15395269,14977455 -g1,13747:15727223,14977455 -g1,13747:19046762,14977455 -g1,13747:19378716,14977455 -g1,13747:22366301,14977455 -k1,13747:22366301,14977455:0 -h1,13747:26349748,14977455:0,0,0 -k1,13747:32583029,14977455:6233281 -g1,13747:32583029,14977455 -) -(1,13749:6764466,15793382:25818563,431045,106246 -(1,13748:6764466,15793382:0,0,0 -g1,13748:6764466,15793382 -g1,13748:6764466,15793382 -g1,13748:6436786,15793382 -(1,13748:6436786,15793382:0,0,0 -) -g1,13748:6764466,15793382 -) -k1,13749:6764466,15793382:0 -k1,13749:6764466,15793382:0 -h1,13749:16723085,15793382:0,0,0 -k1,13749:32583029,15793382:15859944 -g1,13749:32583029,15793382 -) -(1,13756:6764466,16609309:25818563,424439,86428 -(1,13751:6764466,16609309:0,0,0 -g1,13751:6764466,16609309 -g1,13751:6764466,16609309 -g1,13751:6436786,16609309 -(1,13751:6436786,16609309:0,0,0 -) -g1,13751:6764466,16609309 -) -g1,13756:7760328,16609309 -g1,13756:8092282,16609309 -g1,13756:9420098,16609309 -g1,13756:11411822,16609309 -g1,13756:13071592,16609309 -g1,13756:15727224,16609309 -g1,13756:17718948,16609309 -g1,13756:19710672,16609309 -g1,13756:21702396,16609309 -g1,13756:24026074,16609309 -h1,13756:25021936,16609309:0,0,0 -k1,13756:32583029,16609309:7561093 -g1,13756:32583029,16609309 -) -(1,13756:6764466,17294164:25818563,431045,86428 -h1,13756:6764466,17294164:0,0,0 -g1,13756:7760328,17294164 -g1,13756:8092282,17294164 -g1,13756:8756190,17294164 -g1,13756:11411822,17294164 -g1,13756:17055039,17294164 -g1,13756:18050901,17294164 -h1,13756:18382855,17294164:0,0,0 -k1,13756:32583029,17294164:14200174 -g1,13756:32583029,17294164 -) -(1,13756:6764466,17979019:25818563,431045,106246 -h1,13756:6764466,17979019:0,0,0 -g1,13756:7760328,17979019 -g1,13756:8092282,17979019 -g1,13756:8424236,17979019 -g1,13756:9752052,17979019 -g1,13756:10415960,17979019 -g1,13756:11743776,17979019 -g1,13756:13735500,17979019 -g1,13756:18382855,17979019 -h1,13756:20706533,17979019:0,0,0 -k1,13756:32583029,17979019:11876496 -g1,13756:32583029,17979019 -) -(1,13756:6764466,18663874:25818563,431045,79822 -h1,13756:6764466,18663874:0,0,0 -g1,13756:7760328,18663874 -g1,13756:8092282,18663874 -g1,13756:8424236,18663874 -g1,13756:9752052,18663874 -g1,13756:10415960,18663874 -g1,13756:11743776,18663874 -g1,13756:13735500,18663874 -g1,13756:17386993,18663874 -g1,13756:19378717,18663874 -g1,13756:21702395,18663874 -g1,13756:22698257,18663874 -g1,13756:25021935,18663874 -k1,13756:25021935,18663874:0 -h1,13756:28341475,18663874:0,0,0 -k1,13756:32583029,18663874:4241554 -g1,13756:32583029,18663874 -) -] -) -g1,13757:32583029,18743696 -g1,13757:6764466,18743696 -g1,13757:6764466,18743696 -g1,13757:32583029,18743696 -g1,13757:32583029,18743696 -) -h1,13757:6764466,18940304:0,0,0 -] -g1,13759:32583029,18940304 -) -h1,13759:6630773,18940304:0,0,0 -v1,13761:6630773,19805384:0,393216,0 -(1,13809:6630773,35982884:25952256,16570716,0 -g1,13809:6630773,35982884 -g1,13809:6237557,35982884 -r1,13847:6368629,35982884:131072,16570716,0 -g1,13809:6567858,35982884 -g1,13809:6764466,35982884 -[1,13809:6764466,35982884:25818563,16570716,0 -(1,13763:6764466,20113682:25818563,701514,196608 -(1,13761:6764466,20113682:0,701514,196608 -r1,13847:7761522,20113682:997056,898122,196608 -k1,13761:6764466,20113682:-997056 -) -(1,13761:6764466,20113682:997056,701514,196608 -) -k1,13761:7967348,20113682:205826 -k1,13761:8295028,20113682:327680 -k1,13761:8295028,20113682:0 -k1,13762:9697542,20113682:205827 -k1,13762:11458537,20113682:205826 -k1,13762:12323655,20113682:205826 -k1,13762:13548567,20113682:205827 -k1,13762:15713919,20113682:205826 -k1,13762:18698473,20113682:205827 -k1,13762:19665827,20113682:205826 -k1,13762:22325976,20113682:205826 -(1,13762:22325976,20113682:0,452978,115847 -r1,13847:24794513,20113682:2468537,568825,115847 -k1,13762:22325976,20113682:-2468537 -) -(1,13762:22325976,20113682:2468537,452978,115847 -k1,13762:22325976,20113682:3277 -h1,13762:24791236,20113682:0,411205,112570 -) -k1,13762:25000340,20113682:205827 -k1,13762:26699076,20113682:205826 -k1,13762:27971173,20113682:205826 -k1,13762:30548748,20113682:205827 -k1,13762:31563944,20113682:205826 -k1,13762:32583029,20113682:0 -) -(1,13763:6764466,20978762:25818563,513147,134348 -g1,13762:8518864,20978762 -g1,13762:9377385,20978762 -g1,13762:10595699,20978762 -g1,13762:12782635,20978762 -g1,13762:13669337,20978762 -g1,13762:16001763,20978762 -g1,13762:17890510,20978762 -g1,13762:18878137,20978762 -g1,13762:22008791,20978762 -g1,13762:23700930,20978762 -k1,13763:32583029,20978762:6457923 -g1,13763:32583029,20978762 -) -v1,13765:6764466,21663617:0,393216,0 -(1,13779:6764466,27620818:25818563,6350417,196608 -g1,13779:6764466,27620818 -g1,13779:6764466,27620818 -g1,13779:6567858,27620818 -(1,13779:6567858,27620818:0,6350417,196608 -r1,13847:32779637,27620818:26211779,6547025,196608 -k1,13779:6567857,27620818:-26211780 -) -(1,13779:6567858,27620818:26211779,6350417,196608 -[1,13779:6764466,27620818:25818563,6153809,0 -(1,13767:6764466,21898054:25818563,431045,79822 -(1,13766:6764466,21898054:0,0,0 -g1,13766:6764466,21898054 -g1,13766:6764466,21898054 -g1,13766:6436786,21898054 -(1,13766:6436786,21898054:0,0,0 -) -g1,13766:6764466,21898054 -) -k1,13767:6764466,21898054:0 -h1,13767:10084006,21898054:0,0,0 -k1,13767:32583030,21898054:22499024 -g1,13767:32583030,21898054 -) -(1,13778:6764466,22713981:25818563,431045,106246 -(1,13769:6764466,22713981:0,0,0 -g1,13769:6764466,22713981 -g1,13769:6764466,22713981 -g1,13769:6436786,22713981 -(1,13769:6436786,22713981:0,0,0 -) -g1,13769:6764466,22713981 -) -g1,13778:7760328,22713981 -g1,13778:10747913,22713981 -g1,13778:11743775,22713981 -g1,13778:14731360,22713981 -h1,13778:16391130,22713981:0,0,0 -k1,13778:32583029,22713981:16191899 -g1,13778:32583029,22713981 -) -(1,13778:6764466,23398836:25818563,398014,0 -h1,13778:6764466,23398836:0,0,0 -h1,13778:7428374,23398836:0,0,0 -k1,13778:32583030,23398836:25154656 -g1,13778:32583030,23398836 -) -(1,13778:6764466,24083691:25818563,424439,106246 -h1,13778:6764466,24083691:0,0,0 -g1,13778:7760328,24083691 -g1,13778:11079867,24083691 -h1,13778:12407683,24083691:0,0,0 -k1,13778:32583029,24083691:20175346 -g1,13778:32583029,24083691 -) -(1,13778:6764466,24768546:25818563,431045,106246 -h1,13778:6764466,24768546:0,0,0 -g1,13778:7760328,24768546 -g1,13778:8092282,24768546 -g1,13778:8424236,24768546 -g1,13778:8756190,24768546 -g1,13778:9088144,24768546 -g1,13778:9420098,24768546 -g1,13778:9752052,24768546 -g1,13778:10084006,24768546 -g1,13778:10415960,24768546 -g1,13778:10747914,24768546 -g1,13778:11079868,24768546 -g1,13778:12075730,24768546 -g1,13778:13403546,24768546 -g1,13778:14399408,24768546 -g1,13778:16059178,24768546 -g1,13778:17055040,24768546 -g1,13778:17718948,24768546 -g1,13778:19710672,24768546 -g1,13778:20042626,24768546 -g1,13778:20374580,24768546 -k1,13778:20374580,24768546:0 -h1,13778:22366304,24768546:0,0,0 -k1,13778:32583029,24768546:10216725 -g1,13778:32583029,24768546 -) -(1,13778:6764466,25453401:25818563,424439,106246 -h1,13778:6764466,25453401:0,0,0 -g1,13778:7760328,25453401 -g1,13778:9752052,25453401 -g1,13778:10084006,25453401 -g1,13778:10415960,25453401 -g1,13778:10747914,25453401 -g1,13778:11079868,25453401 -g1,13778:11411822,25453401 -g1,13778:12075730,25453401 -g1,13778:12407684,25453401 -g1,13778:14399408,25453401 -g1,13778:17055040,25453401 -g1,13778:17386994,25453401 -g1,13778:19710672,25453401 -g1,13778:22698258,25453401 -h1,13778:23694120,25453401:0,0,0 -k1,13778:32583029,25453401:8888909 -g1,13778:32583029,25453401 -) -(1,13778:6764466,26138256:25818563,424439,9908 -h1,13778:6764466,26138256:0,0,0 -g1,13778:7760328,26138256 -g1,13778:11079867,26138256 -g1,13778:12075729,26138256 -g1,13778:12407683,26138256 -g1,13778:14399407,26138256 -g1,13778:14731361,26138256 -g1,13778:15063315,26138256 -h1,13778:16723085,26138256:0,0,0 -k1,13778:32583029,26138256:15859944 -g1,13778:32583029,26138256 -) -(1,13778:6764466,26823111:25818563,398014,0 -h1,13778:6764466,26823111:0,0,0 -g1,13778:7760328,26823111 -k1,13778:7760328,26823111:0 -h1,13778:8756190,26823111:0,0,0 -k1,13778:32583030,26823111:23826840 -g1,13778:32583030,26823111 -) -(1,13778:6764466,27507966:25818563,431045,112852 -h1,13778:6764466,27507966:0,0,0 -g1,13778:7760328,27507966 -g1,13778:10415960,27507966 -g1,13778:12739638,27507966 -g1,13778:13071592,27507966 -g1,13778:13735500,27507966 -g1,13778:15727224,27507966 -g1,13778:17718948,27507966 -g1,13778:19378718,27507966 -g1,13778:21038488,27507966 -g1,13778:22366304,27507966 -g1,13778:24026074,27507966 -g1,13778:25353890,27507966 -g1,13778:26681706,27507966 -g1,13778:27345614,27507966 -g1,13778:28009522,27507966 -h1,13778:28341476,27507966:0,0,0 -k1,13778:32583029,27507966:4241553 -g1,13778:32583029,27507966 -) -] -) -g1,13779:32583029,27620818 -g1,13779:6764466,27620818 -g1,13779:6764466,27620818 -g1,13779:32583029,27620818 -g1,13779:32583029,27620818 -) -h1,13779:6764466,27817426:0,0,0 -v1,13783:6764466,28502281:0,393216,0 -(1,13790:6764466,29632467:25818563,1523402,196608 -g1,13790:6764466,29632467 -g1,13790:6764466,29632467 -g1,13790:6567858,29632467 -(1,13790:6567858,29632467:0,1523402,196608 -r1,13847:32779637,29632467:26211779,1720010,196608 -k1,13790:6567857,29632467:-26211780 -) -(1,13790:6567858,29632467:26211779,1523402,196608 -[1,13790:6764466,29632467:25818563,1326794,0 -(1,13785:6764466,28736718:25818563,431045,79822 -(1,13784:6764466,28736718:0,0,0 -g1,13784:6764466,28736718 -g1,13784:6764466,28736718 -g1,13784:6436786,28736718 -(1,13784:6436786,28736718:0,0,0 -) -g1,13784:6764466,28736718 -) -k1,13785:6764466,28736718:0 -k1,13785:6764466,28736718:0 -h1,13785:12407684,28736718:0,0,0 -k1,13785:32583028,28736718:20175344 -g1,13785:32583028,28736718 -) -(1,13789:6764466,29552645:25818563,431045,79822 -(1,13787:6764466,29552645:0,0,0 -g1,13787:6764466,29552645 -g1,13787:6764466,29552645 -g1,13787:6436786,29552645 -(1,13787:6436786,29552645:0,0,0 -) -g1,13787:6764466,29552645 -) -g1,13789:7760328,29552645 -g1,13789:9088144,29552645 -g1,13789:11743776,29552645 -g1,13789:12075730,29552645 -g1,13789:12407684,29552645 -g1,13789:12739638,29552645 -g1,13789:13071592,29552645 -g1,13789:13403546,29552645 -h1,13789:17386993,29552645:0,0,0 -k1,13789:32583029,29552645:15196036 -g1,13789:32583029,29552645 -) -] -) -g1,13790:32583029,29632467 -g1,13790:6764466,29632467 -g1,13790:6764466,29632467 -g1,13790:32583029,29632467 -g1,13790:32583029,29632467 -) -h1,13790:6764466,29829075:0,0,0 -v1,13794:6764466,30513930:0,393216,0 -(1,13807:6764466,35786276:25818563,5665562,196608 -g1,13807:6764466,35786276 -g1,13807:6764466,35786276 -g1,13807:6567858,35786276 -(1,13807:6567858,35786276:0,5665562,196608 -r1,13847:32779637,35786276:26211779,5862170,196608 -k1,13807:6567857,35786276:-26211780 -) -(1,13807:6567858,35786276:26211779,5665562,196608 -[1,13807:6764466,35786276:25818563,5468954,0 -(1,13796:6764466,30748367:25818563,431045,79822 -(1,13795:6764466,30748367:0,0,0 -g1,13795:6764466,30748367 -g1,13795:6764466,30748367 -g1,13795:6436786,30748367 -(1,13795:6436786,30748367:0,0,0 -) -g1,13795:6764466,30748367 -) -k1,13796:6764466,30748367:0 -k1,13796:6764466,30748367:0 -h1,13796:11743776,30748367:0,0,0 -k1,13796:32583028,30748367:20839252 -g1,13796:32583028,30748367 -) -(1,13806:6764466,31564294:25818563,431045,9908 -(1,13798:6764466,31564294:0,0,0 -g1,13798:6764466,31564294 -g1,13798:6764466,31564294 -g1,13798:6436786,31564294 -(1,13798:6436786,31564294:0,0,0 -) -g1,13798:6764466,31564294 -) -g1,13806:7760328,31564294 -g1,13806:10415960,31564294 -g1,13806:13071592,31564294 -g1,13806:14399408,31564294 -g1,13806:19046763,31564294 -g1,13806:19710671,31564294 -g1,13806:21370441,31564294 -g1,13806:22366303,31564294 -g1,13806:22698257,31564294 -g1,13806:23362165,31564294 -h1,13806:26681704,31564294:0,0,0 -k1,13806:32583029,31564294:5901325 -g1,13806:32583029,31564294 -) -(1,13806:6764466,32249149:25818563,431045,33029 -h1,13806:6764466,32249149:0,0,0 -g1,13806:7760328,32249149 -g1,13806:8092282,32249149 -g1,13806:8756190,32249149 -g1,13806:9752052,32249149 -g1,13806:10084006,32249149 -g1,13806:10415960,32249149 -g1,13806:10747914,32249149 -g1,13806:11079868,32249149 -g1,13806:11743776,32249149 -g1,13806:13071592,32249149 -g1,13806:13403546,32249149 -g1,13806:14067454,32249149 -h1,13806:14731362,32249149:0,0,0 -k1,13806:32583030,32249149:17851668 -g1,13806:32583030,32249149 -) -(1,13806:6764466,32934004:25818563,431045,106246 -h1,13806:6764466,32934004:0,0,0 -g1,13806:7760328,32934004 -g1,13806:8092282,32934004 -g1,13806:8756190,32934004 -g1,13806:10084006,32934004 -g1,13806:11079868,32934004 -g1,13806:11743776,32934004 -g1,13806:13071592,32934004 -g1,13806:13403546,32934004 -g1,13806:15395270,32934004 -h1,13806:17055040,32934004:0,0,0 -k1,13806:32583029,32934004:15527989 -g1,13806:32583029,32934004 -) -(1,13806:6764466,33618859:25818563,431045,106246 -h1,13806:6764466,33618859:0,0,0 -g1,13806:7760328,33618859 -g1,13806:8092282,33618859 -g1,13806:8756190,33618859 -g1,13806:10415960,33618859 -g1,13806:11743776,33618859 -g1,13806:13071592,33618859 -g1,13806:13403546,33618859 -g1,13806:15395270,33618859 -h1,13806:16391132,33618859:0,0,0 -k1,13806:32583029,33618859:16191897 -g1,13806:32583029,33618859 -) -(1,13806:6764466,34303714:25818563,431045,33029 -h1,13806:6764466,34303714:0,0,0 -g1,13806:7760328,34303714 -g1,13806:8092282,34303714 -g1,13806:8756190,34303714 -g1,13806:9420098,34303714 -g1,13806:11743776,34303714 -g1,13806:13071592,34303714 -g1,13806:13403546,34303714 -g1,13806:15063316,34303714 -h1,13806:15727224,34303714:0,0,0 -k1,13806:32583028,34303714:16855804 -g1,13806:32583028,34303714 -) -(1,13806:6764466,34988569:25818563,431045,79822 -h1,13806:6764466,34988569:0,0,0 -g1,13806:7760328,34988569 -g1,13806:8092282,34988569 -g1,13806:8756190,34988569 -g1,13806:11079868,34988569 -g1,13806:11743776,34988569 -g1,13806:13071592,34988569 -g1,13806:13403546,34988569 -g1,13806:16391132,34988569 -h1,13806:17055040,34988569:0,0,0 -k1,13806:32583029,34988569:15527989 -g1,13806:32583029,34988569 -) -(1,13806:6764466,35673424:25818563,431045,112852 -h1,13806:6764466,35673424:0,0,0 -k1,13806:7649677,35673424:221303 -k1,13806:7870980,35673424:221303 -k1,13806:8424237,35673424:221303 -k1,13806:10969218,35673424:221303 -k1,13806:14842014,35673424:221303 -k1,13806:16059179,35673424:221303 -k1,13806:17940252,35673424:221303 -k1,13806:21149140,35673424:221303 -k1,13806:22034351,35673424:221303 -k1,13806:24911285,35673424:221303 -k1,13806:27788219,35673424:221303 -k1,13806:31329061,35673424:221303 -h1,13806:32988831,35673424:0,0,0 -k1,13806:32988831,35673424:0 -k1,13806:32988831,35673424:0 -) -] -) -g1,13807:32583029,35786276 -g1,13807:6764466,35786276 -g1,13807:6764466,35786276 -g1,13807:32583029,35786276 -g1,13807:32583029,35786276 -) -h1,13807:6764466,35982884:0,0,0 -] -g1,13809:32583029,35982884 -) -h1,13809:6630773,35982884:0,0,0 -v1,13811:6630773,36847964:0,393216,0 -(1,13847:6630773,44949845:25952256,8495097,0 -g1,13847:6630773,44949845 -g1,13847:6237557,44949845 -r1,13847:6368629,44949845:131072,8495097,0 -g1,13847:6567858,44949845 -g1,13847:6764466,44949845 -[1,13847:6764466,44949845:25818563,8495097,0 -(1,13813:6764466,37156262:25818563,701514,196608 -(1,13811:6764466,37156262:0,701514,196608 -r1,13847:7761522,37156262:997056,898122,196608 -k1,13811:6764466,37156262:-997056 -) -(1,13811:6764466,37156262:997056,701514,196608 -) -k1,13811:8002550,37156262:241028 -k1,13811:8330230,37156262:327680 -k1,13811:8330230,37156262:0 -k1,13812:9389147,37156262:241028 -k1,13812:10400878,37156262:241028 -k1,13812:13303324,37156262:241029 -k1,13812:14203644,37156262:241028 -k1,13812:15463757,37156262:241028 -k1,13812:16797270,37156262:241028 -k1,13812:17697590,37156262:241028 -k1,13812:19949263,37156262:241028 -k1,13812:23162349,37156262:241028 -k1,13812:24970999,37156262:241029 -k1,13812:26231112,37156262:241028 -(1,13812:26231112,37156262:0,452978,115847 -r1,13847:29754784,37156262:3523672,568825,115847 -k1,13812:26231112,37156262:-3523672 -) -(1,13812:26231112,37156262:3523672,452978,115847 -k1,13812:26231112,37156262:3277 -h1,13812:29751507,37156262:0,411205,112570 -) -k1,13812:29995812,37156262:241028 -k1,13812:32370037,37156262:241028 -k1,13812:32583029,37156262:0 -) -(1,13813:6764466,38021342:25818563,513147,134348 -k1,13812:8567782,38021342:142634 -k1,13812:10040798,38021342:142635 -k1,13812:10834860,38021342:142634 -k1,13812:12168939,38021342:142634 -k1,13812:12777535,38021342:142635 -k1,13812:13939254,38021342:142634 -k1,13812:15779926,38021342:142634 -k1,13812:17490182,38021342:142635 -k1,13812:17988676,38021342:142634 -k1,13812:19944037,38021342:142635 -k1,13812:23403448,38021342:142634 -k1,13812:24233555,38021342:142634 -k1,13812:26993043,38021342:142635 -k1,13812:31015408,38021342:142634 -k1,13812:32583029,38021342:0 -) -(1,13813:6764466,38886422:25818563,513147,126483 -k1,13812:7315108,38886422:194782 -k1,13812:10267646,38886422:194783 -k1,13812:12142771,38886422:194782 -k1,13812:15099896,38886422:194782 -k1,13812:16862299,38886422:194782 -k1,13812:18076167,38886422:194783 -k1,13812:19991924,38886422:194782 -k1,13812:21780542,38886422:194782 -k1,13812:23860796,38886422:194783 -k1,13812:25577324,38886422:194782 -k1,13812:26719757,38886422:194782 -k1,13812:27933624,38886422:194782 -k1,13812:30958252,38886422:194783 -k1,13812:31812326,38886422:194782 -k1,13812:32583029,38886422:0 -) -(1,13813:6764466,39751502:25818563,513147,134348 -k1,13812:9217062,39751502:171287 -k1,13812:10047641,39751502:171287 -k1,13812:11238013,39751502:171287 -k1,13812:15174999,39751502:171287 -k1,13812:18031296,39751502:171287 -k1,13812:19985819,39751502:171288 -k1,13812:22338800,39751502:171287 -k1,13812:23457738,39751502:171287 -k1,13812:26909102,39751502:171287 -k1,13812:28648010,39751502:171287 -k1,13812:29175157,39751502:171287 -k1,13812:32583029,39751502:0 -) -(1,13813:6764466,40616582:25818563,513147,134348 -k1,13812:7679184,40616582:153190 -k1,13812:11235660,40616582:153191 -k1,13812:12561289,40616582:153190 -k1,13812:16590279,40616582:153191 -k1,13812:17426354,40616582:153190 -k1,13812:18350248,40616582:153191 -k1,13812:22048936,40616582:153190 -k1,13812:23393572,40616582:153191 -k1,13812:23902622,40616582:153190 -k1,13812:27208750,40616582:153191 -k1,13812:27717801,40616582:153191 -k1,13812:29110932,40616582:153190 -k1,13812:32583029,40616582:0 -) -(1,13813:6764466,41481662:25818563,513147,134348 -k1,13812:7686838,41481662:263080 -k1,13812:9106628,41481662:263080 -k1,13812:10317359,41481662:263080 -k1,13812:11599525,41481662:263081 -k1,13812:13560643,41481662:263080 -k1,13812:15345469,41481662:263080 -k1,13812:16556200,41481662:263080 -k1,13812:20099357,41481662:263080 -k1,13812:21930058,41481662:263080 -k1,13812:23212223,41481662:263080 -k1,13812:24782747,41481662:263081 -k1,13812:27952349,41481662:263080 -k1,13812:28843264,41481662:263080 -k1,13812:30798484,41481662:263080 -k1,13812:32583029,41481662:0 -) -(1,13813:6764466,42346742:25818563,513147,134348 -k1,13812:8625197,42346742:188907 -k1,13812:12217390,42346742:188908 -k1,13812:13425382,42346742:188907 -k1,13812:17713566,42346742:188907 -k1,13812:18561766,42346742:188908 -k1,13812:22976435,42346742:188907 -k1,13812:24033694,42346742:188907 -k1,13812:25559536,42346742:188908 -k1,13812:26496209,42346742:188907 -k1,13812:29896380,42346742:188907 -k1,13812:30736716,42346742:188908 -k1,13812:32117068,42346742:188907 -k1,13812:32583029,42346742:0 -) -(1,13813:6764466,43211822:25818563,513147,134348 -k1,13812:7322177,43211822:201851 -k1,13812:8807223,43211822:201851 -k1,13812:11993583,43211822:201850 -k1,13812:15343784,43211822:201851 -k1,13812:16830141,43211822:201851 -k1,13812:17648030,43211822:201851 -k1,13812:20194104,43211822:201851 -k1,13812:21488439,43211822:201850 -k1,13812:22451818,43211822:201851 -k1,13812:23266431,43211822:201851 -k1,13812:24963814,43211822:201851 -k1,13812:25521524,43211822:201850 -k1,13812:28120682,43211822:201851 -k1,13812:30750642,43211822:201851 -k1,13812:32583029,43211822:0 -) -(1,13813:6764466,44076902:25818563,513147,134348 -k1,13812:8557094,44076902:291854 -k1,13812:11600149,44076902:291854 -k1,13812:15048871,44076902:291853 -k1,13812:17259619,44076902:291854 -k1,13812:19733167,44076902:291854 -k1,13812:20490982,44076902:291854 -k1,13812:21138695,44076902:291853 -k1,13812:24304303,44076902:291854 -k1,13812:27087836,44076902:291854 -k1,13812:27735550,44076902:291854 -k1,13812:31100386,44076902:291853 -k1,13812:31923737,44076902:291854 -k1,13812:32583029,44076902:0 -) -(1,13813:6764466,44941982:25818563,473825,7863 -k1,13813:32583029,44941982:23322952 -g1,13813:32583029,44941982 -) -] -g1,13847:32583029,44949845 -) -] -(1,13847:32583029,45706769:0,0,0 -g1,13847:32583029,45706769 -) -) -] -(1,13847:6630773,47279633:25952256,0,0 -h1,13847:6630773,47279633:25952256,0,0 -) -] -(1,13847:4262630,4025873:0,0,0 -[1,13847:-473656,4025873:0,0,0 -(1,13847:-473656,-710413:0,0,0 -(1,13847:-473656,-710413:0,0,0 -g1,13847:-473656,-710413 -) -g1,13847:-473656,-710413 +] +g1,13845:6630773,4812305 +k1,13845:19575446,4812305:11749296 +g1,13845:21198117,4812305 +g1,13845:21985204,4812305 +g1,13845:24539797,4812305 +g1,13845:25949476,4812305 +g1,13845:28728857,4812305 +g1,13845:29852144,4812305 +) +) +] +[1,13845:6630773,45706769:25952256,40108032,0 +(1,13845:6630773,45706769:25952256,40108032,0 +(1,13845:6630773,45706769:0,0,0 +g1,13845:6630773,45706769 +) +[1,13845:6630773,45706769:25952256,40108032,0 +v1,13757:6630773,6254097:0,393216,0 +(1,13757:6630773,18940304:25952256,13079423,0 +g1,13757:6630773,18940304 +g1,13757:6237557,18940304 +r1,13845:6368629,18940304:131072,13079423,0 +g1,13757:6567858,18940304 +g1,13757:6764466,18940304 +[1,13757:6764466,18940304:25818563,13079423,0 +(1,13721:6764466,6374028:25818563,513147,126483 +h1,13720:6764466,6374028:983040,0,0 +k1,13720:11029284,6374028:212072 +k1,13720:11908513,6374028:212073 +(1,13720:11908513,6374028:0,459977,115847 +r1,13845:16135609,6374028:4227096,575824,115847 +k1,13720:11908513,6374028:-4227096 +) +(1,13720:11908513,6374028:4227096,459977,115847 +k1,13720:11908513,6374028:3277 +h1,13720:16132332,6374028:0,411205,112570 +) +k1,13720:16347681,6374028:212072 +k1,13720:17551313,6374028:212072 +k1,13720:21961622,6374028:212073 +k1,13720:22935222,6374028:212072 +k1,13720:26193407,6374028:212072 +k1,13720:27064771,6374028:212072 +k1,13720:28785483,6374028:212073 +k1,13720:31841162,6374028:212072 +k1,13721:32583029,6374028:0 +) +(1,13721:6764466,7239108:25818563,505283,134348 +g1,13720:8438910,7239108 +g1,13720:11144236,7239108 +g1,13720:12534910,7239108 +g1,13720:15566605,7239108 +g1,13720:17455352,7239108 +g1,13720:18270619,7239108 +g1,13720:19488933,7239108 +g1,13720:21675869,7239108 +g1,13720:23834624,7239108 +(1,13720:23834624,7239108:0,459977,115847 +r1,13845:24896313,7239108:1061689,575824,115847 +k1,13720:23834624,7239108:-1061689 +) +(1,13720:23834624,7239108:1061689,459977,115847 +k1,13720:23834624,7239108:3277 +h1,13720:24893036,7239108:0,411205,112570 +) +g1,13720:25095542,7239108 +g1,13720:26991498,7239108 +g1,13720:28182287,7239108 +g1,13720:29447787,7239108 +k1,13721:32583029,7239108:324403 +g1,13721:32583029,7239108 +) +v1,13723:6764466,7923963:0,393216,0 +(1,13755:6764466,18743696:25818563,11212949,196608 +g1,13755:6764466,18743696 +g1,13755:6764466,18743696 +g1,13755:6567858,18743696 +(1,13755:6567858,18743696:0,11212949,196608 +r1,13845:32779637,18743696:26211779,11409557,196608 +k1,13755:6567857,18743696:-26211780 +) +(1,13755:6567858,18743696:26211779,11212949,196608 +[1,13755:6764466,18743696:25818563,11016341,0 +(1,13725:6764466,8158400:25818563,431045,79822 +(1,13724:6764466,8158400:0,0,0 +g1,13724:6764466,8158400 +g1,13724:6764466,8158400 +g1,13724:6436786,8158400 +(1,13724:6436786,8158400:0,0,0 +) +g1,13724:6764466,8158400 +) +k1,13725:6764466,8158400:0 +h1,13725:9752052,8158400:0,0,0 +k1,13725:32583028,8158400:22830976 +g1,13725:32583028,8158400 +) +(1,13730:6764466,8974327:25818563,424439,106246 +(1,13727:6764466,8974327:0,0,0 +g1,13727:6764466,8974327 +g1,13727:6764466,8974327 +g1,13727:6436786,8974327 +(1,13727:6436786,8974327:0,0,0 +) +g1,13727:6764466,8974327 +) +g1,13730:7760328,8974327 +g1,13730:11743775,8974327 +g1,13730:12075729,8974327 +g1,13730:12407683,8974327 +g1,13730:12739637,8974327 +g1,13730:13071591,8974327 +g1,13730:13403545,8974327 +g1,13730:13735499,8974327 +h1,13730:15395269,8974327:0,0,0 +k1,13730:32583029,8974327:17187760 +g1,13730:32583029,8974327 +) +(1,13730:6764466,9659182:25818563,407923,9908 +h1,13730:6764466,9659182:0,0,0 +g1,13730:7760328,9659182 +g1,13730:8092282,9659182 +g1,13730:11743775,9659182 +g1,13730:12075729,9659182 +g1,13730:12407683,9659182 +g1,13730:12739637,9659182 +h1,13730:15395268,9659182:0,0,0 +k1,13730:32583028,9659182:17187760 +g1,13730:32583028,9659182 +) +(1,13732:6764466,10475109:25818563,431045,79822 +(1,13731:6764466,10475109:0,0,0 +g1,13731:6764466,10475109 +g1,13731:6764466,10475109 +g1,13731:6436786,10475109 +(1,13731:6436786,10475109:0,0,0 +) +g1,13731:6764466,10475109 +) +k1,13732:6764466,10475109:0 +h1,13732:13735499,10475109:0,0,0 +k1,13732:32583029,10475109:18847530 +g1,13732:32583029,10475109 +) +(1,13737:6764466,11291036:25818563,424439,79822 +(1,13734:6764466,11291036:0,0,0 +g1,13734:6764466,11291036 +g1,13734:6764466,11291036 +g1,13734:6436786,11291036 +(1,13734:6436786,11291036:0,0,0 +) +g1,13734:6764466,11291036 +) +g1,13737:7760328,11291036 +g1,13737:8092282,11291036 +g1,13737:10084006,11291036 +g1,13737:11411822,11291036 +g1,13737:13403546,11291036 +g1,13737:15727224,11291036 +h1,13737:17055040,11291036:0,0,0 +k1,13737:32583029,11291036:15527989 +g1,13737:32583029,11291036 +) +(1,13737:6764466,11975891:25818563,424439,106246 +h1,13737:6764466,11975891:0,0,0 +g1,13737:7760328,11975891 +g1,13737:8092282,11975891 +g1,13737:8756190,11975891 +g1,13737:11411822,11975891 +g1,13737:14731361,11975891 +g1,13737:16059177,11975891 +g1,13737:18050901,11975891 +g1,13737:22698256,11975891 +h1,13737:25021934,11975891:0,0,0 +k1,13737:32583029,11975891:7561095 +g1,13737:32583029,11975891 +) +(1,13739:6764466,12791818:25818563,431045,106246 +(1,13738:6764466,12791818:0,0,0 +g1,13738:6764466,12791818 +g1,13738:6764466,12791818 +g1,13738:6436786,12791818 +(1,13738:6436786,12791818:0,0,0 +) +g1,13738:6764466,12791818 +) +k1,13739:6764466,12791818:0 +k1,13739:6764466,12791818:0 +h1,13739:17386993,12791818:0,0,0 +k1,13739:32583029,12791818:15196036 +g1,13739:32583029,12791818 +) +(1,13745:6764466,13607745:25818563,424439,79822 +(1,13741:6764466,13607745:0,0,0 +g1,13741:6764466,13607745 +g1,13741:6764466,13607745 +g1,13741:6436786,13607745 +(1,13741:6436786,13607745:0,0,0 +) +g1,13741:6764466,13607745 +) +g1,13745:7760328,13607745 +g1,13745:8092282,13607745 +g1,13745:8424236,13607745 +g1,13745:8756190,13607745 +g1,13745:9088144,13607745 +g1,13745:9420098,13607745 +g1,13745:9752052,13607745 +g1,13745:10084006,13607745 +g1,13745:10415960,13607745 +g1,13745:10747914,13607745 +g1,13745:11079868,13607745 +g1,13745:11411822,13607745 +g1,13745:11743776,13607745 +g1,13745:12075730,13607745 +g1,13745:12407684,13607745 +g1,13745:15395269,13607745 +g1,13745:17055039,13607745 +g1,13745:19046763,13607745 +g1,13745:19378717,13607745 +g1,13745:19710671,13607745 +g1,13745:20374579,13607745 +g1,13745:22366303,13607745 +g1,13745:22698257,13607745 +g1,13745:23030211,13607745 +g1,13745:23362165,13607745 +g1,13745:23694119,13607745 +k1,13745:23694119,13607745:0 +h1,13745:26349751,13607745:0,0,0 +k1,13745:32583029,13607745:6233278 +g1,13745:32583029,13607745 +) +(1,13745:6764466,14292600:25818563,424439,106246 +h1,13745:6764466,14292600:0,0,0 +g1,13745:7760328,14292600 +g1,13745:11743775,14292600 +g1,13745:15395268,14292600 +g1,13745:15727222,14292600 +g1,13745:19046761,14292600 +g1,13745:22366300,14292600 +k1,13745:22366300,14292600:0 +h1,13745:26349747,14292600:0,0,0 +k1,13745:32583029,14292600:6233282 +g1,13745:32583029,14292600 +) +(1,13745:6764466,14977455:25818563,424439,106246 +h1,13745:6764466,14977455:0,0,0 +g1,13745:7760328,14977455 +g1,13745:9752052,14977455 +g1,13745:10084006,14977455 +g1,13745:10415960,14977455 +g1,13745:10747914,14977455 +g1,13745:11079868,14977455 +g1,13745:11411822,14977455 +g1,13745:11743776,14977455 +g1,13745:12075730,14977455 +g1,13745:12407684,14977455 +g1,13745:15395269,14977455 +g1,13745:15727223,14977455 +g1,13745:19046762,14977455 +g1,13745:19378716,14977455 +g1,13745:22366301,14977455 +k1,13745:22366301,14977455:0 +h1,13745:26349748,14977455:0,0,0 +k1,13745:32583029,14977455:6233281 +g1,13745:32583029,14977455 +) +(1,13747:6764466,15793382:25818563,431045,106246 +(1,13746:6764466,15793382:0,0,0 +g1,13746:6764466,15793382 +g1,13746:6764466,15793382 +g1,13746:6436786,15793382 +(1,13746:6436786,15793382:0,0,0 +) +g1,13746:6764466,15793382 +) +k1,13747:6764466,15793382:0 +k1,13747:6764466,15793382:0 +h1,13747:16723085,15793382:0,0,0 +k1,13747:32583029,15793382:15859944 +g1,13747:32583029,15793382 +) +(1,13754:6764466,16609309:25818563,424439,86428 +(1,13749:6764466,16609309:0,0,0 +g1,13749:6764466,16609309 +g1,13749:6764466,16609309 +g1,13749:6436786,16609309 +(1,13749:6436786,16609309:0,0,0 +) +g1,13749:6764466,16609309 +) +g1,13754:7760328,16609309 +g1,13754:8092282,16609309 +g1,13754:9420098,16609309 +g1,13754:11411822,16609309 +g1,13754:13071592,16609309 +g1,13754:15727224,16609309 +g1,13754:17718948,16609309 +g1,13754:19710672,16609309 +g1,13754:21702396,16609309 +g1,13754:24026074,16609309 +h1,13754:25021936,16609309:0,0,0 +k1,13754:32583029,16609309:7561093 +g1,13754:32583029,16609309 +) +(1,13754:6764466,17294164:25818563,431045,86428 +h1,13754:6764466,17294164:0,0,0 +g1,13754:7760328,17294164 +g1,13754:8092282,17294164 +g1,13754:8756190,17294164 +g1,13754:11411822,17294164 +g1,13754:17055039,17294164 +g1,13754:18050901,17294164 +h1,13754:18382855,17294164:0,0,0 +k1,13754:32583029,17294164:14200174 +g1,13754:32583029,17294164 +) +(1,13754:6764466,17979019:25818563,431045,106246 +h1,13754:6764466,17979019:0,0,0 +g1,13754:7760328,17979019 +g1,13754:8092282,17979019 +g1,13754:8424236,17979019 +g1,13754:9752052,17979019 +g1,13754:10415960,17979019 +g1,13754:11743776,17979019 +g1,13754:13735500,17979019 +g1,13754:18382855,17979019 +h1,13754:20706533,17979019:0,0,0 +k1,13754:32583029,17979019:11876496 +g1,13754:32583029,17979019 +) +(1,13754:6764466,18663874:25818563,431045,79822 +h1,13754:6764466,18663874:0,0,0 +g1,13754:7760328,18663874 +g1,13754:8092282,18663874 +g1,13754:8424236,18663874 +g1,13754:9752052,18663874 +g1,13754:10415960,18663874 +g1,13754:11743776,18663874 +g1,13754:13735500,18663874 +g1,13754:17386993,18663874 +g1,13754:19378717,18663874 +g1,13754:21702395,18663874 +g1,13754:22698257,18663874 +g1,13754:25021935,18663874 +k1,13754:25021935,18663874:0 +h1,13754:28341475,18663874:0,0,0 +k1,13754:32583029,18663874:4241554 +g1,13754:32583029,18663874 +) +] +) +g1,13755:32583029,18743696 +g1,13755:6764466,18743696 +g1,13755:6764466,18743696 +g1,13755:32583029,18743696 +g1,13755:32583029,18743696 +) +h1,13755:6764466,18940304:0,0,0 +] +g1,13757:32583029,18940304 +) +h1,13757:6630773,18940304:0,0,0 +v1,13759:6630773,19805384:0,393216,0 +(1,13807:6630773,35982884:25952256,16570716,0 +g1,13807:6630773,35982884 +g1,13807:6237557,35982884 +r1,13845:6368629,35982884:131072,16570716,0 +g1,13807:6567858,35982884 +g1,13807:6764466,35982884 +[1,13807:6764466,35982884:25818563,16570716,0 +(1,13761:6764466,20113682:25818563,701514,196608 +(1,13759:6764466,20113682:0,701514,196608 +r1,13845:7761522,20113682:997056,898122,196608 +k1,13759:6764466,20113682:-997056 +) +(1,13759:6764466,20113682:997056,701514,196608 +) +k1,13759:7967348,20113682:205826 +k1,13759:8295028,20113682:327680 +k1,13759:8295028,20113682:0 +k1,13760:9697542,20113682:205827 +k1,13760:11458537,20113682:205826 +k1,13760:12323655,20113682:205826 +k1,13760:13548567,20113682:205827 +k1,13760:15713919,20113682:205826 +k1,13760:18698473,20113682:205827 +k1,13760:19665827,20113682:205826 +k1,13760:22325976,20113682:205826 +(1,13760:22325976,20113682:0,452978,115847 +r1,13845:24794513,20113682:2468537,568825,115847 +k1,13760:22325976,20113682:-2468537 +) +(1,13760:22325976,20113682:2468537,452978,115847 +k1,13760:22325976,20113682:3277 +h1,13760:24791236,20113682:0,411205,112570 +) +k1,13760:25000340,20113682:205827 +k1,13760:26699076,20113682:205826 +k1,13760:27971173,20113682:205826 +k1,13760:30548748,20113682:205827 +k1,13760:31563944,20113682:205826 +k1,13760:32583029,20113682:0 +) +(1,13761:6764466,20978762:25818563,513147,134348 +g1,13760:8518864,20978762 +g1,13760:9377385,20978762 +g1,13760:10595699,20978762 +g1,13760:12782635,20978762 +g1,13760:13669337,20978762 +g1,13760:16001763,20978762 +g1,13760:17890510,20978762 +g1,13760:18878137,20978762 +g1,13760:22008791,20978762 +g1,13760:23700930,20978762 +k1,13761:32583029,20978762:6457923 +g1,13761:32583029,20978762 +) +v1,13763:6764466,21663617:0,393216,0 +(1,13777:6764466,27620818:25818563,6350417,196608 +g1,13777:6764466,27620818 +g1,13777:6764466,27620818 +g1,13777:6567858,27620818 +(1,13777:6567858,27620818:0,6350417,196608 +r1,13845:32779637,27620818:26211779,6547025,196608 +k1,13777:6567857,27620818:-26211780 +) +(1,13777:6567858,27620818:26211779,6350417,196608 +[1,13777:6764466,27620818:25818563,6153809,0 +(1,13765:6764466,21898054:25818563,431045,79822 +(1,13764:6764466,21898054:0,0,0 +g1,13764:6764466,21898054 +g1,13764:6764466,21898054 +g1,13764:6436786,21898054 +(1,13764:6436786,21898054:0,0,0 +) +g1,13764:6764466,21898054 +) +k1,13765:6764466,21898054:0 +h1,13765:10084006,21898054:0,0,0 +k1,13765:32583030,21898054:22499024 +g1,13765:32583030,21898054 +) +(1,13776:6764466,22713981:25818563,431045,106246 +(1,13767:6764466,22713981:0,0,0 +g1,13767:6764466,22713981 +g1,13767:6764466,22713981 +g1,13767:6436786,22713981 +(1,13767:6436786,22713981:0,0,0 +) +g1,13767:6764466,22713981 +) +g1,13776:7760328,22713981 +g1,13776:10747913,22713981 +g1,13776:11743775,22713981 +g1,13776:14731360,22713981 +h1,13776:16391130,22713981:0,0,0 +k1,13776:32583029,22713981:16191899 +g1,13776:32583029,22713981 +) +(1,13776:6764466,23398836:25818563,398014,0 +h1,13776:6764466,23398836:0,0,0 +h1,13776:7428374,23398836:0,0,0 +k1,13776:32583030,23398836:25154656 +g1,13776:32583030,23398836 +) +(1,13776:6764466,24083691:25818563,424439,106246 +h1,13776:6764466,24083691:0,0,0 +g1,13776:7760328,24083691 +g1,13776:11079867,24083691 +h1,13776:12407683,24083691:0,0,0 +k1,13776:32583029,24083691:20175346 +g1,13776:32583029,24083691 +) +(1,13776:6764466,24768546:25818563,431045,106246 +h1,13776:6764466,24768546:0,0,0 +g1,13776:7760328,24768546 +g1,13776:8092282,24768546 +g1,13776:8424236,24768546 +g1,13776:8756190,24768546 +g1,13776:9088144,24768546 +g1,13776:9420098,24768546 +g1,13776:9752052,24768546 +g1,13776:10084006,24768546 +g1,13776:10415960,24768546 +g1,13776:10747914,24768546 +g1,13776:11079868,24768546 +g1,13776:12075730,24768546 +g1,13776:13403546,24768546 +g1,13776:14399408,24768546 +g1,13776:16059178,24768546 +g1,13776:17055040,24768546 +g1,13776:17718948,24768546 +g1,13776:19710672,24768546 +g1,13776:20042626,24768546 +g1,13776:20374580,24768546 +k1,13776:20374580,24768546:0 +h1,13776:22366304,24768546:0,0,0 +k1,13776:32583029,24768546:10216725 +g1,13776:32583029,24768546 +) +(1,13776:6764466,25453401:25818563,424439,106246 +h1,13776:6764466,25453401:0,0,0 +g1,13776:7760328,25453401 +g1,13776:9752052,25453401 +g1,13776:10084006,25453401 +g1,13776:10415960,25453401 +g1,13776:10747914,25453401 +g1,13776:11079868,25453401 +g1,13776:11411822,25453401 +g1,13776:12075730,25453401 +g1,13776:12407684,25453401 +g1,13776:14399408,25453401 +g1,13776:17055040,25453401 +g1,13776:17386994,25453401 +g1,13776:19710672,25453401 +g1,13776:22698258,25453401 +h1,13776:23694120,25453401:0,0,0 +k1,13776:32583029,25453401:8888909 +g1,13776:32583029,25453401 +) +(1,13776:6764466,26138256:25818563,424439,9908 +h1,13776:6764466,26138256:0,0,0 +g1,13776:7760328,26138256 +g1,13776:11079867,26138256 +g1,13776:12075729,26138256 +g1,13776:12407683,26138256 +g1,13776:14399407,26138256 +g1,13776:14731361,26138256 +g1,13776:15063315,26138256 +h1,13776:16723085,26138256:0,0,0 +k1,13776:32583029,26138256:15859944 +g1,13776:32583029,26138256 +) +(1,13776:6764466,26823111:25818563,398014,0 +h1,13776:6764466,26823111:0,0,0 +g1,13776:7760328,26823111 +k1,13776:7760328,26823111:0 +h1,13776:8756190,26823111:0,0,0 +k1,13776:32583030,26823111:23826840 +g1,13776:32583030,26823111 +) +(1,13776:6764466,27507966:25818563,431045,112852 +h1,13776:6764466,27507966:0,0,0 +g1,13776:7760328,27507966 +g1,13776:10415960,27507966 +g1,13776:12739638,27507966 +g1,13776:13071592,27507966 +g1,13776:13735500,27507966 +g1,13776:15727224,27507966 +g1,13776:17718948,27507966 +g1,13776:19378718,27507966 +g1,13776:21038488,27507966 +g1,13776:22366304,27507966 +g1,13776:24026074,27507966 +g1,13776:25353890,27507966 +g1,13776:26681706,27507966 +g1,13776:27345614,27507966 +g1,13776:28009522,27507966 +h1,13776:28341476,27507966:0,0,0 +k1,13776:32583029,27507966:4241553 +g1,13776:32583029,27507966 +) +] +) +g1,13777:32583029,27620818 +g1,13777:6764466,27620818 +g1,13777:6764466,27620818 +g1,13777:32583029,27620818 +g1,13777:32583029,27620818 +) +h1,13777:6764466,27817426:0,0,0 +v1,13781:6764466,28502281:0,393216,0 +(1,13788:6764466,29632467:25818563,1523402,196608 +g1,13788:6764466,29632467 +g1,13788:6764466,29632467 +g1,13788:6567858,29632467 +(1,13788:6567858,29632467:0,1523402,196608 +r1,13845:32779637,29632467:26211779,1720010,196608 +k1,13788:6567857,29632467:-26211780 +) +(1,13788:6567858,29632467:26211779,1523402,196608 +[1,13788:6764466,29632467:25818563,1326794,0 +(1,13783:6764466,28736718:25818563,431045,79822 +(1,13782:6764466,28736718:0,0,0 +g1,13782:6764466,28736718 +g1,13782:6764466,28736718 +g1,13782:6436786,28736718 +(1,13782:6436786,28736718:0,0,0 +) +g1,13782:6764466,28736718 +) +k1,13783:6764466,28736718:0 +k1,13783:6764466,28736718:0 +h1,13783:12407684,28736718:0,0,0 +k1,13783:32583028,28736718:20175344 +g1,13783:32583028,28736718 +) +(1,13787:6764466,29552645:25818563,431045,79822 +(1,13785:6764466,29552645:0,0,0 +g1,13785:6764466,29552645 +g1,13785:6764466,29552645 +g1,13785:6436786,29552645 +(1,13785:6436786,29552645:0,0,0 +) +g1,13785:6764466,29552645 +) +g1,13787:7760328,29552645 +g1,13787:9088144,29552645 +g1,13787:11743776,29552645 +g1,13787:12075730,29552645 +g1,13787:12407684,29552645 +g1,13787:12739638,29552645 +g1,13787:13071592,29552645 +g1,13787:13403546,29552645 +h1,13787:17386993,29552645:0,0,0 +k1,13787:32583029,29552645:15196036 +g1,13787:32583029,29552645 +) +] +) +g1,13788:32583029,29632467 +g1,13788:6764466,29632467 +g1,13788:6764466,29632467 +g1,13788:32583029,29632467 +g1,13788:32583029,29632467 +) +h1,13788:6764466,29829075:0,0,0 +v1,13792:6764466,30513930:0,393216,0 +(1,13805:6764466,35786276:25818563,5665562,196608 +g1,13805:6764466,35786276 +g1,13805:6764466,35786276 +g1,13805:6567858,35786276 +(1,13805:6567858,35786276:0,5665562,196608 +r1,13845:32779637,35786276:26211779,5862170,196608 +k1,13805:6567857,35786276:-26211780 +) +(1,13805:6567858,35786276:26211779,5665562,196608 +[1,13805:6764466,35786276:25818563,5468954,0 +(1,13794:6764466,30748367:25818563,431045,79822 +(1,13793:6764466,30748367:0,0,0 +g1,13793:6764466,30748367 +g1,13793:6764466,30748367 +g1,13793:6436786,30748367 +(1,13793:6436786,30748367:0,0,0 +) +g1,13793:6764466,30748367 +) +k1,13794:6764466,30748367:0 +k1,13794:6764466,30748367:0 +h1,13794:11743776,30748367:0,0,0 +k1,13794:32583028,30748367:20839252 +g1,13794:32583028,30748367 +) +(1,13804:6764466,31564294:25818563,431045,9908 +(1,13796:6764466,31564294:0,0,0 +g1,13796:6764466,31564294 +g1,13796:6764466,31564294 +g1,13796:6436786,31564294 +(1,13796:6436786,31564294:0,0,0 +) +g1,13796:6764466,31564294 +) +g1,13804:7760328,31564294 +g1,13804:10415960,31564294 +g1,13804:13071592,31564294 +g1,13804:14399408,31564294 +g1,13804:19046763,31564294 +g1,13804:19710671,31564294 +g1,13804:21370441,31564294 +g1,13804:22366303,31564294 +g1,13804:22698257,31564294 +g1,13804:23362165,31564294 +h1,13804:26681704,31564294:0,0,0 +k1,13804:32583029,31564294:5901325 +g1,13804:32583029,31564294 +) +(1,13804:6764466,32249149:25818563,431045,33029 +h1,13804:6764466,32249149:0,0,0 +g1,13804:7760328,32249149 +g1,13804:8092282,32249149 +g1,13804:8756190,32249149 +g1,13804:9752052,32249149 +g1,13804:10084006,32249149 +g1,13804:10415960,32249149 +g1,13804:10747914,32249149 +g1,13804:11079868,32249149 +g1,13804:11743776,32249149 +g1,13804:13071592,32249149 +g1,13804:13403546,32249149 +g1,13804:14067454,32249149 +h1,13804:14731362,32249149:0,0,0 +k1,13804:32583030,32249149:17851668 +g1,13804:32583030,32249149 +) +(1,13804:6764466,32934004:25818563,431045,106246 +h1,13804:6764466,32934004:0,0,0 +g1,13804:7760328,32934004 +g1,13804:8092282,32934004 +g1,13804:8756190,32934004 +g1,13804:10084006,32934004 +g1,13804:11079868,32934004 +g1,13804:11743776,32934004 +g1,13804:13071592,32934004 +g1,13804:13403546,32934004 +g1,13804:15395270,32934004 +h1,13804:17055040,32934004:0,0,0 +k1,13804:32583029,32934004:15527989 +g1,13804:32583029,32934004 +) +(1,13804:6764466,33618859:25818563,431045,106246 +h1,13804:6764466,33618859:0,0,0 +g1,13804:7760328,33618859 +g1,13804:8092282,33618859 +g1,13804:8756190,33618859 +g1,13804:10415960,33618859 +g1,13804:11743776,33618859 +g1,13804:13071592,33618859 +g1,13804:13403546,33618859 +g1,13804:15395270,33618859 +h1,13804:16391132,33618859:0,0,0 +k1,13804:32583029,33618859:16191897 +g1,13804:32583029,33618859 +) +(1,13804:6764466,34303714:25818563,431045,33029 +h1,13804:6764466,34303714:0,0,0 +g1,13804:7760328,34303714 +g1,13804:8092282,34303714 +g1,13804:8756190,34303714 +g1,13804:9420098,34303714 +g1,13804:11743776,34303714 +g1,13804:13071592,34303714 +g1,13804:13403546,34303714 +g1,13804:15063316,34303714 +h1,13804:15727224,34303714:0,0,0 +k1,13804:32583028,34303714:16855804 +g1,13804:32583028,34303714 +) +(1,13804:6764466,34988569:25818563,431045,79822 +h1,13804:6764466,34988569:0,0,0 +g1,13804:7760328,34988569 +g1,13804:8092282,34988569 +g1,13804:8756190,34988569 +g1,13804:11079868,34988569 +g1,13804:11743776,34988569 +g1,13804:13071592,34988569 +g1,13804:13403546,34988569 +g1,13804:16391132,34988569 +h1,13804:17055040,34988569:0,0,0 +k1,13804:32583029,34988569:15527989 +g1,13804:32583029,34988569 +) +(1,13804:6764466,35673424:25818563,431045,112852 +h1,13804:6764466,35673424:0,0,0 +k1,13804:7649677,35673424:221303 +k1,13804:7870980,35673424:221303 +k1,13804:8424237,35673424:221303 +k1,13804:10969218,35673424:221303 +k1,13804:14842014,35673424:221303 +k1,13804:16059179,35673424:221303 +k1,13804:17940252,35673424:221303 +k1,13804:21149140,35673424:221303 +k1,13804:22034351,35673424:221303 +k1,13804:24911285,35673424:221303 +k1,13804:27788219,35673424:221303 +k1,13804:31329061,35673424:221303 +h1,13804:32988831,35673424:0,0,0 +k1,13804:32988831,35673424:0 +k1,13804:32988831,35673424:0 +) +] +) +g1,13805:32583029,35786276 +g1,13805:6764466,35786276 +g1,13805:6764466,35786276 +g1,13805:32583029,35786276 +g1,13805:32583029,35786276 +) +h1,13805:6764466,35982884:0,0,0 +] +g1,13807:32583029,35982884 +) +h1,13807:6630773,35982884:0,0,0 +v1,13809:6630773,36847964:0,393216,0 +(1,13845:6630773,44949845:25952256,8495097,0 +g1,13845:6630773,44949845 +g1,13845:6237557,44949845 +r1,13845:6368629,44949845:131072,8495097,0 +g1,13845:6567858,44949845 +g1,13845:6764466,44949845 +[1,13845:6764466,44949845:25818563,8495097,0 +(1,13811:6764466,37156262:25818563,701514,196608 +(1,13809:6764466,37156262:0,701514,196608 +r1,13845:7761522,37156262:997056,898122,196608 +k1,13809:6764466,37156262:-997056 +) +(1,13809:6764466,37156262:997056,701514,196608 +) +k1,13809:8002550,37156262:241028 +k1,13809:8330230,37156262:327680 +k1,13809:8330230,37156262:0 +k1,13810:9389147,37156262:241028 +k1,13810:10400878,37156262:241028 +k1,13810:13303324,37156262:241029 +k1,13810:14203644,37156262:241028 +k1,13810:15463757,37156262:241028 +k1,13810:16797270,37156262:241028 +k1,13810:17697590,37156262:241028 +k1,13810:19949263,37156262:241028 +k1,13810:23162349,37156262:241028 +k1,13810:24970999,37156262:241029 +k1,13810:26231112,37156262:241028 +(1,13810:26231112,37156262:0,452978,115847 +r1,13845:29754784,37156262:3523672,568825,115847 +k1,13810:26231112,37156262:-3523672 +) +(1,13810:26231112,37156262:3523672,452978,115847 +k1,13810:26231112,37156262:3277 +h1,13810:29751507,37156262:0,411205,112570 +) +k1,13810:29995812,37156262:241028 +k1,13810:32370037,37156262:241028 +k1,13810:32583029,37156262:0 +) +(1,13811:6764466,38021342:25818563,513147,134348 +k1,13810:8567782,38021342:142634 +k1,13810:10040798,38021342:142635 +k1,13810:10834860,38021342:142634 +k1,13810:12168939,38021342:142634 +k1,13810:12777535,38021342:142635 +k1,13810:13939254,38021342:142634 +k1,13810:15779926,38021342:142634 +k1,13810:17490182,38021342:142635 +k1,13810:17988676,38021342:142634 +k1,13810:19944037,38021342:142635 +k1,13810:23403448,38021342:142634 +k1,13810:24233555,38021342:142634 +k1,13810:26993043,38021342:142635 +k1,13810:31015408,38021342:142634 +k1,13810:32583029,38021342:0 +) +(1,13811:6764466,38886422:25818563,513147,126483 +k1,13810:7315108,38886422:194782 +k1,13810:10267646,38886422:194783 +k1,13810:12142771,38886422:194782 +k1,13810:15099896,38886422:194782 +k1,13810:16862299,38886422:194782 +k1,13810:18076167,38886422:194783 +k1,13810:19991924,38886422:194782 +k1,13810:21780542,38886422:194782 +k1,13810:23860796,38886422:194783 +k1,13810:25577324,38886422:194782 +k1,13810:26719757,38886422:194782 +k1,13810:27933624,38886422:194782 +k1,13810:30958252,38886422:194783 +k1,13810:31812326,38886422:194782 +k1,13810:32583029,38886422:0 +) +(1,13811:6764466,39751502:25818563,513147,134348 +k1,13810:9217062,39751502:171287 +k1,13810:10047641,39751502:171287 +k1,13810:11238013,39751502:171287 +k1,13810:15174999,39751502:171287 +k1,13810:18031296,39751502:171287 +k1,13810:19985819,39751502:171288 +k1,13810:22338800,39751502:171287 +k1,13810:23457738,39751502:171287 +k1,13810:26909102,39751502:171287 +k1,13810:28648010,39751502:171287 +k1,13810:29175157,39751502:171287 +k1,13810:32583029,39751502:0 +) +(1,13811:6764466,40616582:25818563,513147,134348 +k1,13810:7679184,40616582:153190 +k1,13810:11235660,40616582:153191 +k1,13810:12561289,40616582:153190 +k1,13810:16590279,40616582:153191 +k1,13810:17426354,40616582:153190 +k1,13810:18350248,40616582:153191 +k1,13810:22048936,40616582:153190 +k1,13810:23393572,40616582:153191 +k1,13810:23902622,40616582:153190 +k1,13810:27208750,40616582:153191 +k1,13810:27717801,40616582:153191 +k1,13810:29110932,40616582:153190 +k1,13810:32583029,40616582:0 +) +(1,13811:6764466,41481662:25818563,513147,134348 +k1,13810:7686838,41481662:263080 +k1,13810:9106628,41481662:263080 +k1,13810:10317359,41481662:263080 +k1,13810:11599525,41481662:263081 +k1,13810:13560643,41481662:263080 +k1,13810:15345469,41481662:263080 +k1,13810:16556200,41481662:263080 +k1,13810:20099357,41481662:263080 +k1,13810:21930058,41481662:263080 +k1,13810:23212223,41481662:263080 +k1,13810:24782747,41481662:263081 +k1,13810:27952349,41481662:263080 +k1,13810:28843264,41481662:263080 +k1,13810:30798484,41481662:263080 +k1,13810:32583029,41481662:0 +) +(1,13811:6764466,42346742:25818563,513147,134348 +k1,13810:8625197,42346742:188907 +k1,13810:12217390,42346742:188908 +k1,13810:13425382,42346742:188907 +k1,13810:17713566,42346742:188907 +k1,13810:18561766,42346742:188908 +k1,13810:22976435,42346742:188907 +k1,13810:24033694,42346742:188907 +k1,13810:25559536,42346742:188908 +k1,13810:26496209,42346742:188907 +k1,13810:29896380,42346742:188907 +k1,13810:30736716,42346742:188908 +k1,13810:32117068,42346742:188907 +k1,13810:32583029,42346742:0 +) +(1,13811:6764466,43211822:25818563,513147,134348 +k1,13810:7322177,43211822:201851 +k1,13810:8807223,43211822:201851 +k1,13810:11993583,43211822:201850 +k1,13810:15343784,43211822:201851 +k1,13810:16830141,43211822:201851 +k1,13810:17648030,43211822:201851 +k1,13810:20194104,43211822:201851 +k1,13810:21488439,43211822:201850 +k1,13810:22451818,43211822:201851 +k1,13810:23266431,43211822:201851 +k1,13810:24963814,43211822:201851 +k1,13810:25521524,43211822:201850 +k1,13810:28120682,43211822:201851 +k1,13810:30750642,43211822:201851 +k1,13810:32583029,43211822:0 +) +(1,13811:6764466,44076902:25818563,513147,134348 +k1,13810:8557094,44076902:291854 +k1,13810:11600149,44076902:291854 +k1,13810:15048871,44076902:291853 +k1,13810:17259619,44076902:291854 +k1,13810:19733167,44076902:291854 +k1,13810:20490982,44076902:291854 +k1,13810:21138695,44076902:291853 +k1,13810:24304303,44076902:291854 +k1,13810:27087836,44076902:291854 +k1,13810:27735550,44076902:291854 +k1,13810:31100386,44076902:291853 +k1,13810:31923737,44076902:291854 +k1,13810:32583029,44076902:0 +) +(1,13811:6764466,44941982:25818563,473825,7863 +k1,13811:32583029,44941982:23322952 +g1,13811:32583029,44941982 +) +] +g1,13845:32583029,44949845 +) +] +(1,13845:32583029,45706769:0,0,0 +g1,13845:32583029,45706769 +) +) +] +(1,13845:6630773,47279633:25952256,0,0 +h1,13845:6630773,47279633:25952256,0,0 +) +] +(1,13845:4262630,4025873:0,0,0 +[1,13845:-473656,4025873:0,0,0 +(1,13845:-473656,-710413:0,0,0 +(1,13845:-473656,-710413:0,0,0 +g1,13845:-473656,-710413 +) +g1,13845:-473656,-710413 ) ] ) ] !30126 -}221 -Input:2343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}222 Input:2346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -244885,1083 +245084,1083 @@ Input:2351:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2352:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2353:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2354:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2355:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2356:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{222 -[1,13864:4262630,47279633:28320399,43253760,0 -(1,13864:4262630,4025873:0,0,0 -[1,13864:-473656,4025873:0,0,0 -(1,13864:-473656,-710413:0,0,0 -(1,13864:-473656,-644877:0,0,0 -k1,13864:-473656,-644877:-65536 +{223 +[1,13862:4262630,47279633:28320399,43253760,0 +(1,13862:4262630,4025873:0,0,0 +[1,13862:-473656,4025873:0,0,0 +(1,13862:-473656,-710413:0,0,0 +(1,13862:-473656,-644877:0,0,0 +k1,13862:-473656,-644877:-65536 ) -(1,13864:-473656,4736287:0,0,0 -k1,13864:-473656,4736287:5209943 +(1,13862:-473656,4736287:0,0,0 +k1,13862:-473656,4736287:5209943 ) -g1,13864:-473656,-710413 +g1,13862:-473656,-710413 ) ] ) -[1,13864:6630773,47279633:25952256,43253760,0 -[1,13864:6630773,4812305:25952256,786432,0 -(1,13864:6630773,4812305:25952256,505283,134348 -(1,13864:6630773,4812305:25952256,505283,134348 -g1,13864:3078558,4812305 -[1,13864:3078558,4812305:0,0,0 -(1,13864:3078558,2439708:0,1703936,0 -k1,13864:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13864:2537886,2439708:1179648,16384,0 +[1,13862:6630773,47279633:25952256,43253760,0 +[1,13862:6630773,4812305:25952256,786432,0 +(1,13862:6630773,4812305:25952256,505283,134348 +(1,13862:6630773,4812305:25952256,505283,134348 +g1,13862:3078558,4812305 +[1,13862:3078558,4812305:0,0,0 +(1,13862:3078558,2439708:0,1703936,0 +k1,13862:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13862:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13864:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13862:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13864:3078558,4812305:0,0,0 -(1,13864:3078558,2439708:0,1703936,0 -g1,13864:29030814,2439708 -g1,13864:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13864:36151628,1915420:16384,1179648,0 +[1,13862:3078558,4812305:0,0,0 +(1,13862:3078558,2439708:0,1703936,0 +g1,13862:29030814,2439708 +g1,13862:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13862:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13864:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13862:37855564,2439708:1179648,16384,0 ) ) -k1,13864:3078556,2439708:-34777008 +k1,13862:3078556,2439708:-34777008 ) ] -[1,13864:3078558,4812305:0,0,0 -(1,13864:3078558,49800853:0,16384,2228224 -k1,13864:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13864:2537886,49800853:1179648,16384,0 +[1,13862:3078558,4812305:0,0,0 +(1,13862:3078558,49800853:0,16384,2228224 +k1,13862:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13862:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13864:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13862:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,13864:3078558,4812305:0,0,0 -(1,13864:3078558,49800853:0,16384,2228224 -g1,13864:29030814,49800853 -g1,13864:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13864:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13864:37855564,49800853:1179648,16384,0 -) -) -k1,13864:3078556,49800853:-34777008 -) -] -g1,13864:6630773,4812305 -g1,13864:6630773,4812305 -g1,13864:8843268,4812305 -g1,13864:11066249,4812305 -g1,13864:13415059,4812305 -k1,13864:31387651,4812305:17972592 -) -) -] -[1,13864:6630773,45706769:25952256,40108032,0 -(1,13864:6630773,45706769:25952256,40108032,0 -(1,13864:6630773,45706769:0,0,0 -g1,13864:6630773,45706769 -) -[1,13864:6630773,45706769:25952256,40108032,0 -v1,13847:6630773,6254097:0,393216,0 -(1,13847:6630773,28812152:25952256,22951271,0 -g1,13847:6630773,28812152 -g1,13847:6237557,28812152 -r1,13864:6368629,28812152:131072,22951271,0 -g1,13847:6567858,28812152 -g1,13847:6764466,28812152 -[1,13847:6764466,28812152:25818563,22951271,0 -(1,13815:6764466,6374028:25818563,513147,134348 -h1,13814:6764466,6374028:983040,0,0 -k1,13814:8441867,6374028:206773 -k1,13814:10824444,6374028:206782 -k1,13814:12135507,6374028:206781 -k1,13814:13090054,6374028:206781 -k1,13814:16505478,6374028:206781 -k1,13814:17659910,6374028:206781 -k1,13814:18885776,6374028:206781 -k1,13814:20790595,6374028:206781 -k1,13814:21683538,6374028:206781 -k1,13814:22837970,6374028:206781 -k1,13814:24063836,6374028:206781 -k1,13814:26182302,6374028:206781 -k1,13814:28172318,6374028:206781 -k1,13814:30114492,6374028:206781 -(1,13814:30114492,6374028:0,452978,115847 -r1,13864:32583029,6374028:2468537,568825,115847 -k1,13814:30114492,6374028:-2468537 -) -(1,13814:30114492,6374028:2468537,452978,115847 -k1,13814:30114492,6374028:3277 -h1,13814:32579752,6374028:0,411205,112570 -) -k1,13814:32583029,6374028:0 -) -(1,13815:6764466,7239108:25818563,513147,126483 -k1,13814:8153785,7239108:197874 -(1,13814:8153785,7239108:0,452978,115847 -r1,13864:11325745,7239108:3171960,568825,115847 -k1,13814:8153785,7239108:-3171960 -) -(1,13814:8153785,7239108:3171960,452978,115847 -k1,13814:8153785,7239108:3277 -h1,13814:11322468,7239108:0,411205,112570 -) -k1,13814:11523619,7239108:197874 -k1,13814:12740577,7239108:197873 -k1,13814:14178392,7239108:197874 -k1,13814:17848363,7239108:197874 -k1,13814:18577734,7239108:197874 -k1,13814:19584978,7239108:197874 -k1,13814:21553634,7239108:197873 -k1,13814:22434393,7239108:197874 -k1,13814:23441637,7239108:197874 -k1,13814:26686935,7239108:197874 -k1,13814:27954357,7239108:197874 -k1,13814:29850268,7239108:197873 -k1,13814:30616339,7239108:197874 -k1,13814:31386342,7239108:197874 -k1,13814:32583029,7239108:0 -) -(1,13815:6764466,8104188:25818563,513147,126483 -k1,13814:10348849,8104188:279402 -k1,13814:11819696,8104188:279402 -k1,13814:13493048,8104188:279401 -k1,13814:14128310,8104188:279402 -k1,13814:15647653,8104188:279402 -k1,13814:19399152,8104188:279402 -k1,13814:20337846,8104188:279402 -k1,13814:22315285,8104188:279401 -k1,13814:23162884,8104188:279402 -k1,13814:23840745,8104188:279402 -k1,13814:24651644,8104188:279402 -k1,13814:26325652,8104188:279402 -k1,13814:27256481,8104188:279401 -k1,13814:30969314,8104188:279402 -k1,13814:31714677,8104188:279402 -k1,13814:32583029,8104188:0 -) -(1,13815:6764466,8969268:25818563,505283,134348 -k1,13814:9674639,8969268:179288 -k1,13814:11184307,8969268:179287 -k1,13814:12231947,8969268:179288 -k1,13814:15219453,8969268:179288 -k1,13814:15754601,8969268:179288 -$1,13814:15754601,8969268 -$1,13814:16075072,8969268 -k1,13814:18147694,8969268:179287 -k1,13814:19559059,8969268:179288 -k1,13814:22017034,8969268:179288 -h1,13814:22987622,8969268:0,0,0 -k1,13814:23166909,8969268:179287 -k1,13814:24155567,8969268:179288 -k1,13814:25833008,8969268:179288 -h1,13814:27028385,8969268:0,0,0 -k1,13814:27588437,8969268:179288 -k1,13814:28596754,8969268:179287 -k1,13814:31563944,8969268:179288 -k1,13814:32583029,8969268:0 -) -(1,13815:6764466,9834348:25818563,513147,126483 -k1,13814:9107858,9834348:167597 -k1,13814:10143808,9834348:167598 -k1,13814:11841671,9834348:167597 -k1,13814:12779972,9834348:167598 -k1,13814:15663381,9834348:167597 -k1,13814:16778629,9834348:167597 -k1,13814:17965312,9834348:167598 -k1,13814:19830947,9834348:167597 -k1,13814:21189990,9834348:167598 -k1,13814:22128290,9834348:167597 -k1,13814:25011699,9834348:167597 -k1,13814:25838589,9834348:167598 -k1,13814:26794584,9834348:167597 -k1,13814:29805789,9834348:167598 -k1,13814:31753999,9834348:167597 -k1,13814:32583029,9834348:0 -) -(1,13815:6764466,10699428:25818563,513147,134348 -k1,13814:8325908,10699428:174700 -k1,13814:9336192,10699428:174700 -k1,13814:10529978,10699428:174701 -$1,13814:10529978,10699428 -$1,13814:10997905,10699428 -k1,13814:13065940,10699428:174700 -k1,13814:14108992,10699428:174700 -k1,13814:15813958,10699428:174700 -k1,13814:17007743,10699428:174700 -k1,13814:19638078,10699428:174701 -k1,13814:20472070,10699428:174700 -k1,13814:23503484,10699428:174700 -k1,13814:24576027,10699428:174700 -k1,13814:26447455,10699428:174701 -k1,13814:28632800,10699428:174700 -k1,13814:29799060,10699428:174700 -k1,13814:32583029,10699428:0 -) -(1,13815:6764466,11564508:25818563,513147,134348 -g1,13814:7649857,11564508 -g1,13814:10802794,11564508 -g1,13814:11661315,11564508 -g1,13814:12879629,11564508 -g1,13814:16069266,11564508 -g1,13814:18228021,11564508 -g1,13814:19086542,11564508 -g1,13814:19641631,11564508 -g1,13814:21553316,11564508 -k1,13815:32583029,11564508:8989578 -g1,13815:32583029,11564508 -) -v1,13817:6764466,12249363:0,393216,0 -(1,13823:6764466,13966362:25818563,2110215,196608 -g1,13823:6764466,13966362 -g1,13823:6764466,13966362 -g1,13823:6567858,13966362 -(1,13823:6567858,13966362:0,2110215,196608 -r1,13864:32779637,13966362:26211779,2306823,196608 -k1,13823:6567857,13966362:-26211780 -) -(1,13823:6567858,13966362:26211779,2110215,196608 -[1,13823:6764466,13966362:25818563,1913607,0 -(1,13819:6764466,12483800:25818563,431045,106246 -(1,13818:6764466,12483800:0,0,0 -g1,13818:6764466,12483800 -g1,13818:6764466,12483800 -g1,13818:6436786,12483800 -(1,13818:6436786,12483800:0,0,0 -) -g1,13818:6764466,12483800 -) -g1,13819:12075729,12483800 -g1,13819:13071591,12483800 -g1,13819:24689980,12483800 -h1,13819:28341473,12483800:0,0,0 -k1,13819:32583029,12483800:4241556 -g1,13819:32583029,12483800 -) -(1,13820:6764466,13168655:25818563,431045,106246 -h1,13820:6764466,13168655:0,0,0 -g1,13820:11079867,13168655 -g1,13820:12075729,13168655 -g1,13820:23694118,13168655 -g1,13820:25685842,13168655 -h1,13820:28009520,13168655:0,0,0 -k1,13820:32583029,13168655:4573509 -g1,13820:32583029,13168655 -) -(1,13821:6764466,13853510:25818563,431045,112852 -h1,13821:6764466,13853510:0,0,0 -g1,13821:13071591,13853510 -g1,13821:14067453,13853510 -k1,13821:14067453,13853510:0 -h1,13821:20042625,13853510:0,0,0 -k1,13821:32583029,13853510:12540404 -g1,13821:32583029,13853510 -) -] -) -g1,13823:32583029,13966362 -g1,13823:6764466,13966362 -g1,13823:6764466,13966362 -g1,13823:32583029,13966362 -g1,13823:32583029,13966362 -) -h1,13823:6764466,14162970:0,0,0 -(1,13827:6764466,15028050:25818563,513147,126483 -h1,13826:6764466,15028050:983040,0,0 -k1,13826:9176737,15028050:232544 -k1,13826:12125092,15028050:232543 -k1,13826:13016928,15028050:232544 -k1,13826:14268556,15028050:232543 -$1,13826:14268556,15028050 -$1,13826:14589027,15028050 -k1,13826:16888577,15028050:232544 -k1,13826:17804005,15028050:232543 -k1,13826:20810687,15028050:232543 -k1,13826:21574728,15028050:232544 -k1,13826:25015915,15028050:232544 -k1,13826:27103127,15028050:232543 -k1,13826:28145041,15028050:232544 -k1,13826:29396669,15028050:232543 -k1,13826:32583029,15028050:0 -) -(1,13827:6764466,15893130:25818563,513147,126483 -k1,13826:9628944,15893130:229275 -k1,13826:10877304,15893130:229275 -k1,13826:13822391,15893130:229275 -k1,13826:14999317,15893130:229275 -k1,13826:16247677,15893130:229275 -k1,13826:18174990,15893130:229275 -k1,13826:19595711,15893130:229276 -k1,13826:20180846,15893130:229275 -k1,13826:21650062,15893130:229275 -k1,13826:25351434,15893130:229275 -k1,13826:27093935,15893130:229275 -k1,13826:28009372,15893130:229275 -k1,13826:31391584,15893130:229275 -k1,13826:32583029,15893130:0 -) -(1,13827:6764466,16758210:25818563,513147,126483 -k1,13826:7989889,16758210:206338 -k1,13826:11039834,16758210:206338 -k1,13826:12853115,16758210:206338 -k1,13826:13718745,16758210:206338 -k1,13826:14944168,16758210:206338 -k1,13826:18287059,16758210:206338 -k1,13826:20365105,16758210:206338 -k1,13826:21059024,16758210:206331 -k1,13826:24751222,16758210:206338 -k1,13826:25489057,16758210:206338 -k1,13826:28487229,16758210:206338 -k1,13826:30548236,16758210:206338 -k1,13826:31563944,16758210:206338 -k1,13826:32583029,16758210:0 -) -(1,13827:6764466,17623290:25818563,513147,134348 -k1,13826:10243356,17623290:270247 -$1,13826:10243356,17623290 -$1,13826:10563827,17623290 -k1,13826:12901079,17623290:270246 -k1,13826:13854211,17623290:270247 -k1,13826:16898596,17623290:270246 -k1,13826:18360288,17623290:270247 -k1,13826:19649619,17623290:270246 -$1,13826:19649619,17623290 -$1,13826:19970090,17623290 -k1,13826:20240337,17623290:270247 -k1,13826:24292010,17623290:270246 -k1,13826:25956208,17623290:270247 -k1,13826:29197856,17623290:270246 -k1,13826:31923737,17623290:270247 -k1,13826:32583029,17623290:0 -) -(1,13827:6764466,18488370:25818563,513147,134348 -k1,13826:9697133,18488370:249623 -k1,13826:11340708,18488370:249624 -k1,13826:11946191,18488370:249623 -k1,13826:13295509,18488370:249624 -k1,13826:14196560,18488370:249623 -(1,13826:14196560,18488370:0,452978,115847 -r1,13864:15609961,18488370:1413401,568825,115847 -k1,13826:14196560,18488370:-1413401 -) -(1,13826:14196560,18488370:1413401,452978,115847 -k1,13826:14196560,18488370:3277 -h1,13826:15606684,18488370:0,411205,112570 -) -k1,13826:15859584,18488370:249623 -k1,13826:17341285,18488370:249624 -k1,13826:19869595,18488370:249623 -h1,13826:20840183,18488370:0,0,0 -k1,13826:21089806,18488370:249623 -k1,13826:22148800,18488370:249624 -k1,13826:23896576,18488370:249623 -h1,13826:25091953,18488370:0,0,0 -k1,13826:25722341,18488370:249624 -k1,13826:27013986,18488370:249623 -k1,13826:27619469,18488370:249623 -k1,13826:30273609,18488370:249624 -k1,13826:31714677,18488370:249623 -k1,13826:32583029,18488370:0 -) -(1,13827:6764466,19353450:25818563,505283,126483 -g1,13826:9648705,19353450 -g1,13826:10609462,19353450 -g1,13826:11981130,19353450 -g1,13826:13199444,19353450 -g1,13826:15787460,19353450 -$1,13826:15787460,19353450 -$1,13826:16255387,19353450 -g1,13826:16454616,19353450 -k1,13827:32583029,19353450:13360173 -g1,13827:32583029,19353450 -) -v1,13829:6764466,20038305:0,393216,0 -(1,13843:6764466,25885956:25818563,6240867,196608 -g1,13843:6764466,25885956 -g1,13843:6764466,25885956 -g1,13843:6567858,25885956 -(1,13843:6567858,25885956:0,6240867,196608 -r1,13864:32779637,25885956:26211779,6437475,196608 -k1,13843:6567857,25885956:-26211780 -) -(1,13843:6567858,25885956:26211779,6240867,196608 -[1,13843:6764466,25885956:25818563,6044259,0 -(1,13831:6764466,20266136:25818563,424439,106246 -(1,13830:6764466,20266136:0,0,0 -g1,13830:6764466,20266136 -g1,13830:6764466,20266136 -g1,13830:6436786,20266136 -(1,13830:6436786,20266136:0,0,0 -) -g1,13830:6764466,20266136 -) -g1,13831:9752051,20266136 -g1,13831:10747913,20266136 -h1,13831:11079867,20266136:0,0,0 -k1,13831:32583029,20266136:21503162 -g1,13831:32583029,20266136 -) -(1,13832:6764466,20950991:25818563,424439,106246 -h1,13832:6764466,20950991:0,0,0 -g1,13832:9420098,20950991 -g1,13832:10415960,20950991 -g1,13832:16059177,20950991 -g1,13832:16723085,20950991 -g1,13832:20042624,20950991 -g1,13832:20706532,20950991 -h1,13832:24689979,20950991:0,0,0 -k1,13832:32583029,20950991:7893050 -g1,13832:32583029,20950991 -) -(1,13833:6764466,21635846:25818563,431045,112852 -h1,13833:6764466,21635846:0,0,0 -g1,13833:9420098,21635846 -g1,13833:10415960,21635846 -g1,13833:11079868,21635846 -g1,13833:11743776,21635846 -g1,13833:13403546,21635846 -g1,13833:14067454,21635846 -g1,13833:17055040,21635846 -g1,13833:18050902,21635846 -g1,13833:18714810,21635846 -g1,13833:25353889,21635846 -g1,13833:29005382,21635846 -g1,13833:29669290,21635846 -h1,13833:31661014,21635846:0,0,0 -k1,13833:32583029,21635846:922015 -g1,13833:32583029,21635846 -) -(1,13834:6764466,22320701:25818563,431045,112852 -h1,13834:6764466,22320701:0,0,0 -g1,13834:10415960,22320701 -g1,13834:11743776,22320701 -g1,13834:19710671,22320701 -k1,13834:19710671,22320701:0 -h1,13834:20706533,22320701:0,0,0 -k1,13834:32583029,22320701:11876496 -g1,13834:32583029,22320701 -) -(1,13835:6764466,23005556:25818563,431045,112852 -h1,13835:6764466,23005556:0,0,0 -g1,13835:7096420,23005556 -g1,13835:7428374,23005556 -g1,13835:7760328,23005556 -g1,13835:8092282,23005556 -g1,13835:10084006,23005556 -g1,13835:11743776,23005556 -g1,13835:13071592,23005556 -g1,13835:20042625,23005556 -k1,13835:20042625,23005556:0 -h1,13835:21038487,23005556:0,0,0 -k1,13835:32583029,23005556:11544542 -g1,13835:32583029,23005556 -) -(1,13836:6764466,23690411:25818563,431045,112852 -h1,13836:6764466,23690411:0,0,0 -g1,13836:7096420,23690411 -g1,13836:7428374,23690411 -g1,13836:7760328,23690411 -g1,13836:8092282,23690411 -g1,13836:11743775,23690411 -g1,13836:13071591,23690411 -g1,13836:18382854,23690411 -k1,13836:18382854,23690411:0 -h1,13836:19378716,23690411:0,0,0 -k1,13836:32583029,23690411:13204313 -g1,13836:32583029,23690411 -) -(1,13837:6764466,24375266:25818563,431045,112852 -h1,13837:6764466,24375266:0,0,0 -g1,13837:7096420,24375266 -g1,13837:7428374,24375266 -g1,13837:7760328,24375266 -g1,13837:8092282,24375266 -g1,13837:9752052,24375266 -g1,13837:12407684,24375266 -g1,13837:13735500,24375266 -g1,13837:19046763,24375266 -h1,13837:20042625,24375266:0,0,0 -k1,13837:32583029,24375266:12540404 -g1,13837:32583029,24375266 -) -(1,13842:6764466,25191193:25818563,424439,106246 -(1,13839:6764466,25191193:0,0,0 -g1,13839:6764466,25191193 -g1,13839:6764466,25191193 -g1,13839:6436786,25191193 -(1,13839:6436786,25191193:0,0,0 -) -g1,13839:6764466,25191193 -) -g1,13842:7760328,25191193 -g1,13842:9752052,25191193 -g1,13842:10415960,25191193 -g1,13842:12075730,25191193 -g1,13842:13735500,25191193 -g1,13842:15395270,25191193 -g1,13842:16059178,25191193 -h1,13842:17718948,25191193:0,0,0 -k1,13842:32583029,25191193:14864081 -g1,13842:32583029,25191193 -) -(1,13842:6764466,25876048:25818563,424439,9908 -h1,13842:6764466,25876048:0,0,0 -g1,13842:7760328,25876048 -g1,13842:10415960,25876048 -g1,13842:11079868,25876048 -g1,13842:12739638,25876048 -g1,13842:14067454,25876048 -g1,13842:16723086,25876048 -g1,13842:17386994,25876048 -k1,13842:17386994,25876048:0 -h1,13842:20042626,25876048:0,0,0 -k1,13842:32583029,25876048:12540403 -g1,13842:32583029,25876048 -) -] -) -g1,13843:32583029,25885956 -g1,13843:6764466,25885956 -g1,13843:6764466,25885956 -g1,13843:32583029,25885956 -g1,13843:32583029,25885956 -) -h1,13843:6764466,26082564:0,0,0 -(1,13847:6764466,26947644:25818563,513147,126483 -h1,13846:6764466,26947644:983040,0,0 -k1,13846:9365137,26947644:236787 -k1,13846:12263341,26947644:236787 -k1,13846:13031625,26947644:236787 -k1,13846:14216064,26947644:236788 -k1,13846:14808711,26947644:236787 -k1,13846:16858224,26947644:236787 -k1,13846:19082718,26947644:236787 -k1,13846:21031961,26947644:236787 -k1,13846:22662699,26947644:236787 -k1,13846:25594982,26947644:236787 -(1,13846:25594982,26947644:0,452978,115847 -r1,13864:27008383,26947644:1413401,568825,115847 -k1,13846:25594982,26947644:-1413401 -) -(1,13846:25594982,26947644:1413401,452978,115847 -k1,13846:25594982,26947644:3277 -h1,13846:27005106,26947644:0,411205,112570 -) -k1,13846:27245171,26947644:236788 -k1,13846:28554127,26947644:236787 -k1,13846:29809999,26947644:236787 -k1,13846:31700259,26947644:236787 -k1,13847:32583029,26947644:0 -) -(1,13847:6764466,27812724:25818563,513147,126483 -k1,13846:9106723,27812724:134349 -k1,13846:10345353,27812724:134348 -k1,13846:11227468,27812724:134349 -k1,13846:13733565,27812724:134349 -k1,13846:14519341,27812724:134348 -k1,13846:16355660,27812724:134349 -k1,13846:18477716,27812724:134349 -k1,13846:19299537,27812724:134348 -k1,13846:23020016,27812724:134349 -k1,13846:24102016,27812724:134349 -k1,13846:26121835,27812724:134348 -k1,13846:29536916,27812724:134349 -k1,13846:32583029,27812724:0 -) -(1,13847:6764466,28677804:25818563,505283,134348 -g1,13846:8155140,28677804 -g1,13846:9863008,28677804 -g1,13846:14685802,28677804 -g1,13846:17728638,28677804 -g1,13846:19534810,28677804 -g1,13846:22780152,28677804 -g1,13846:24083663,28677804 -g1,13846:25030658,28677804 -g1,13846:28201945,28677804 -g1,13846:29084059,28677804 -k1,13847:32583029,28677804:237899 -g1,13847:32583029,28677804 -) -] -g1,13847:32583029,28812152 -) -h1,13847:6630773,28812152:0,0,0 -v1,13850:6630773,29677232:0,393216,0 -(1,13854:6630773,32715118:25952256,3431102,0 -g1,13854:6630773,32715118 -g1,13854:6237557,32715118 -r1,13864:6368629,32715118:131072,3431102,0 -g1,13854:6567858,32715118 -g1,13854:6764466,32715118 -[1,13854:6764466,32715118:25818563,3431102,0 -(1,13851:6764466,29985530:25818563,701514,196608 -(1,13850:6764466,29985530:0,701514,196608 -r1,13864:8471973,29985530:1707507,898122,196608 -k1,13850:6764466,29985530:-1707507 -) -(1,13850:6764466,29985530:1707507,701514,196608 -) -k1,13850:8706580,29985530:234607 -k1,13850:10432798,29985530:327680 -k1,13850:12611204,29985530:234608 -k1,13850:14130317,29985530:234607 -k1,13850:15384010,29985530:234608 -k1,13850:20012806,29985530:234607 -k1,13850:22102738,29985530:234608 -k1,13850:23850571,29985530:234607 -k1,13850:27026435,29985530:234608 -(1,13850:27026435,29985530:0,452978,115847 -r1,13864:31605244,29985530:4578809,568825,115847 -k1,13850:27026435,29985530:-4578809 -) -(1,13850:27026435,29985530:4578809,452978,115847 -g1,13850:30195119,29985530 -g1,13850:31250255,29985530 -h1,13850:31601967,29985530:0,411205,112570 -) -k1,13850:31839851,29985530:234607 -k1,13851:32583029,29985530:0 -) -(1,13851:6764466,30850610:25818563,513147,134348 -(1,13850:6764466,30850610:0,452978,115847 -r1,13864:11343275,30850610:4578809,568825,115847 -k1,13850:6764466,30850610:-4578809 -) -(1,13850:6764466,30850610:4578809,452978,115847 -g1,13850:9933150,30850610 -g1,13850:10988286,30850610 -h1,13850:11339998,30850610:0,411205,112570 -) -g1,13850:11542504,30850610 -g1,13850:13454844,30850610 -g1,13850:15048024,30850610 -g1,13850:16266338,30850610 -g1,13850:18624323,30850610 -g1,13850:19482844,30850610 -g1,13850:22254361,30850610 -(1,13850:22254361,30850610:0,452978,115847 -r1,13864:25426321,30850610:3171960,568825,115847 -k1,13850:22254361,30850610:-3171960 -) -(1,13850:22254361,30850610:3171960,452978,115847 -k1,13850:22254361,30850610:3277 -h1,13850:25423044,30850610:0,411205,112570 -) -k1,13851:32583029,30850610:7104280 -g1,13851:32583029,30850610 -) -(1,13853:6764466,31715690:25818563,513147,134348 -h1,13852:6764466,31715690:983040,0,0 -k1,13852:10200956,31715690:247508 -k1,13852:11467548,31715690:247507 -k1,13852:14376473,31715690:247508 -k1,13852:16479304,31715690:247507 -k1,13852:17451640,31715690:247508 -k1,13852:18385310,31715690:247508 -k1,13852:19284245,31715690:247507 -k1,13852:20723198,31715690:247508 -k1,13852:23561343,31715690:247507 -k1,13852:24827936,31715690:247508 -k1,13852:27942643,31715690:247507 -k1,13852:28721648,31715690:247508 -k1,13852:32583029,31715690:0 -) -(1,13853:6764466,32580770:25818563,513147,134348 -g1,13852:8822951,32580770 -g1,13852:10464627,32580770 -g1,13852:11062315,32580770 -g1,13852:12651563,32580770 -g1,13852:14656309,32580770 -g1,13852:15211398,32580770 -g1,13852:18500650,32580770 -k1,13853:32583029,32580770:12838506 -g1,13853:32583029,32580770 -) -] -g1,13854:32583029,32715118 -) -h1,13854:6630773,32715118:0,0,0 -(1,13858:6630773,33580198:25952256,513147,134348 -h1,13857:6630773,33580198:983040,0,0 -k1,13857:10266217,33580198:254442 -(1,13857:10266217,33580198:0,452978,115847 -r1,13864:13438177,33580198:3171960,568825,115847 -k1,13857:10266217,33580198:-3171960 -) -(1,13857:10266217,33580198:3171960,452978,115847 -k1,13857:10266217,33580198:3277 -h1,13857:13434900,33580198:0,411205,112570 -) -k1,13857:13692619,33580198:254442 -k1,13857:15369848,33580198:254442 -k1,13857:16643375,33580198:254442 -k1,13857:18610273,33580198:254442 -k1,13857:20852422,33580198:254442 -k1,13857:23787286,33580198:254441 -k1,13857:25435679,33580198:254442 -k1,13857:26973316,33580198:254442 -k1,13857:28617121,33580198:254442 -k1,13857:29819214,33580198:254442 -k1,13857:31092741,33580198:254442 -k1,13858:32583029,33580198:0 -) -(1,13858:6630773,34445278:25952256,505283,126483 -k1,13857:9411941,34445278:158417 -k1,13857:12411998,34445278:158416 -k1,13857:13221843,34445278:158417 -k1,13857:16168162,34445278:158417 -k1,13857:20109972,34445278:158417 -k1,13857:21086277,34445278:158416 -(1,13857:21086277,34445278:0,452978,115847 -r1,13864:24258237,34445278:3171960,568825,115847 -k1,13857:21086277,34445278:-3171960 -) -(1,13857:21086277,34445278:3171960,452978,115847 -k1,13857:21086277,34445278:3277 -h1,13857:24254960,34445278:0,411205,112570 -) -k1,13857:24416654,34445278:158417 -k1,13857:26953373,34445278:158417 -k1,13857:28394985,34445278:158417 -k1,13857:29942764,34445278:158416 -k1,13857:30787343,34445278:158417 -k1,13857:32583029,34445278:0 -) -(1,13858:6630773,35310358:25952256,513147,126483 -k1,13857:7358092,35310358:269222 -k1,13857:9639268,35310358:269221 -k1,13857:14060851,35310358:269222 -k1,13857:15521518,35310358:269222 -k1,13857:20047959,35310358:269222 -k1,13857:20968608,35310358:269221 -k1,13857:23248475,35310358:269222 -k1,13857:24176989,35310358:269222 -k1,13857:25465295,35310358:269221 -k1,13857:29741388,35310358:269222 -k1,13857:32583029,35310358:0 -) -(1,13858:6630773,36175438:25952256,513147,134348 -k1,13857:7865348,36175438:168304 -k1,13857:10439480,36175438:168305 -k1,13857:11223822,36175438:168304 -k1,13857:12411212,36175438:168305 -k1,13857:15014834,36175438:168304 -k1,13857:16746173,36175438:168305 -k1,13857:17542312,36175438:168304 -k1,13857:18729702,36175438:168305 -k1,13857:20265087,36175438:168304 -k1,13857:21092684,36175438:168305 -k1,13857:22278762,36175438:168304 -k1,13857:23106359,36175438:168305 -k1,13857:25087389,36175438:168304 -k1,13857:26447139,36175438:168305 -k1,13857:28307583,36175438:168304 -k1,13857:30177858,36175438:168305 -k1,13857:32583029,36175438:0 -) -(1,13858:6630773,37040518:25952256,513147,126483 -k1,13857:9319713,37040518:234617 -(1,13857:9319713,37040518:0,452978,115847 -r1,13864:12491673,37040518:3171960,568825,115847 -k1,13857:9319713,37040518:-3171960 -) -(1,13857:9319713,37040518:3171960,452978,115847 -k1,13857:9319713,37040518:3277 -h1,13857:12488396,37040518:0,411205,112570 -) -k1,13857:12726291,37040518:234618 -k1,13857:15475524,37040518:234617 -k1,13857:16326179,37040518:234617 -k1,13857:19226801,37040518:234617 -k1,13857:20112847,37040518:234618 -k1,13857:21366549,37040518:234617 -k1,13857:25054258,37040518:234617 -k1,13857:28334988,37040518:234617 -k1,13857:29228898,37040518:234618 -k1,13857:30482600,37040518:234617 -k1,13858:32583029,37040518:0 -) -(1,13858:6630773,37905598:25952256,513147,126483 -k1,13857:8229618,37905598:155742 -k1,13857:10595233,37905598:155741 -k1,13857:14030397,37905598:155742 -k1,13857:17116908,37905598:155741 -k1,13857:18469337,37905598:155742 -k1,13857:19908273,37905598:155741 -k1,13857:21453378,37905598:155742 -k1,13857:23231136,37905598:155742 -k1,13857:24134643,37905598:155741 -k1,13857:26328555,37905598:155742 -k1,13857:27100334,37905598:155741 -k1,13857:27611936,37905598:155742 -k1,13857:29157040,37905598:155741 -k1,13857:31189078,37905598:155742 -k1,13857:32583029,37905598:0 -) -(1,13858:6630773,38770678:25952256,513147,134348 -k1,13857:9572029,38770678:228065 -k1,13857:11535487,38770678:228065 -k1,13857:12782638,38770678:228066 -k1,13857:14664176,38770678:228065 -k1,13857:16960557,38770678:228065 -k1,13857:18136273,38770678:228065 -k1,13857:19383424,38770678:228066 -k1,13857:23377188,38770678:228065 -k1,13857:26446894,38770678:228065 -k1,13857:27361121,38770678:228065 -k1,13857:28205225,38770678:228066 -k1,13857:29452375,38770678:228065 -k1,13857:31069803,38770678:228065 -k1,13857:32583029,38770678:0 -) -(1,13858:6630773,39635758:25952256,513147,134348 -k1,13857:7799230,39635758:220806 -k1,13857:9039120,39635758:220805 -k1,13857:10121069,39635758:220806 -k1,13857:10697734,39635758:220805 -k1,13857:13792294,39635758:220806 -k1,13857:16524440,39635758:220806 -k1,13857:17276742,39635758:220805 -k1,13857:18563819,39635758:220806 -k1,13857:21082973,39635758:220806 -k1,13857:22495223,39635758:220805 -k1,13857:25943022,39635758:220806 -k1,13857:28877018,39635758:220805 -k1,13857:30089384,39635758:220806 -k1,13857:32583029,39635758:0 -) -(1,13858:6630773,40500838:25952256,513147,126483 -k1,13857:8184581,40500838:170999 -k1,13857:12121278,40500838:170998 -k1,13857:15133918,40500838:170999 -k1,13857:15920954,40500838:170998 -k1,13857:17111038,40500838:170999 -k1,13857:18565231,40500838:170998 -k1,13857:20125593,40500838:170999 -k1,13857:21400873,40500838:170998 -k1,13857:22319638,40500838:170999 -k1,13857:24346616,40500838:170998 -k1,13857:28088016,40500838:170999 -k1,13857:28941899,40500838:170998 -k1,13857:31510860,40500838:170999 -k1,13857:32583029,40500838:0 -) -(1,13858:6630773,41365918:25952256,505283,134348 -g1,13857:8210190,41365918 -g1,13857:10031435,41365918 -g1,13857:12211817,41365918 -g1,13857:13027084,41365918 -g1,13857:14429554,41365918 -g1,13857:16953345,41365918 -g1,13857:18896487,41365918 -g1,13857:19711754,41365918 -g1,13857:20930068,41365918 -g1,13857:23564615,41365918 -k1,13858:32583029,41365918:7289575 -g1,13858:32583029,41365918 -) -v1,13860:6630773,42230998:0,393216,0 -(1,13861:6630773,45225198:25952256,3387416,0 -g1,13861:6630773,45225198 -g1,13861:6237557,45225198 -r1,13864:6368629,45225198:131072,3387416,0 -g1,13861:6567858,45225198 -g1,13861:6764466,45225198 -[1,13861:6764466,45225198:25818563,3387416,0 -(1,13861:6764466,42503475:25818563,665693,196608 -(1,13860:6764466,42503475:0,665693,196608 -r1,13864:7868133,42503475:1103667,862301,196608 -k1,13860:6764466,42503475:-1103667 -) -(1,13860:6764466,42503475:1103667,665693,196608 -) -k1,13860:8032120,42503475:163987 -k1,13860:9758338,42503475:327680 -k1,13860:12145962,42503475:163987 -k1,13860:14045342,42503475:163987 -k1,13860:15676025,42503475:163987 -(1,13860:15676025,42503475:0,459977,115847 -r1,13864:16737714,42503475:1061689,575824,115847 -k1,13860:15676025,42503475:-1061689 -) -(1,13860:15676025,42503475:1061689,459977,115847 -k1,13860:15676025,42503475:3277 -h1,13860:16734437,42503475:0,411205,112570 -) -k1,13860:16901701,42503475:163987 -k1,13860:18257133,42503475:163987 -(1,13860:18257133,42503475:0,459977,115847 -r1,13864:19318822,42503475:1061689,575824,115847 -k1,13860:18257133,42503475:-1061689 -) -(1,13860:18257133,42503475:1061689,459977,115847 -k1,13860:18257133,42503475:3277 -h1,13860:19315545,42503475:0,411205,112570 -) -k1,13860:19482810,42503475:163988 -k1,13860:20665882,42503475:163987 -k1,13860:23490631,42503475:163987 -k1,13860:26367153,42503475:163987 -k1,13860:27182568,42503475:163987 -k1,13860:28749025,42503475:163987 -k1,13860:30221111,42503475:163987 -k1,13860:32583029,42503475:0 -) -(1,13861:6764466,43368555:25818563,513147,134348 -k1,13860:7641296,43368555:264068 -k1,13860:8477493,43368555:264068 -k1,13860:9313690,43368555:264068 -k1,13860:10548346,43368555:264068 -k1,13860:11783002,43368555:264068 -k1,13860:13017658,43368555:264068 -k1,13860:14473171,43368555:264068 -k1,13860:15534157,43368555:264068 -k1,13860:17427449,43368555:264067 -k1,13860:19500311,43368555:264068 -k1,13860:20783464,43368555:264068 -k1,13860:22435585,43368555:264068 -k1,13860:24197806,43368555:264068 -k1,13860:25409525,43368555:264068 -k1,13860:26692678,43368555:264068 -(1,13860:26692678,43368555:0,452978,115847 -r1,13864:29864638,43368555:3171960,568825,115847 -k1,13860:26692678,43368555:-3171960 -) -(1,13860:26692678,43368555:3171960,452978,115847 -k1,13860:26692678,43368555:3277 -h1,13860:29861361,43368555:0,411205,112570 -) -k1,13860:30128706,43368555:264068 -k1,13860:32583029,43368555:0 -) -(1,13861:6764466,44233635:25818563,513147,134348 -k1,13860:8155901,44233635:443784 -k1,13860:10412411,44233635:443784 -k1,13860:13174203,44233635:443784 -k1,13860:15560474,44233635:443784 -(1,13860:15560474,44233635:0,452978,115847 -r1,13864:21194417,44233635:5633943,568825,115847 -k1,13860:15560474,44233635:-5633943 -) -(1,13860:15560474,44233635:5633943,452978,115847 -k1,13860:15560474,44233635:3277 -h1,13860:21191140,44233635:0,411205,112570 -) -k1,13860:22018965,44233635:443784 -k1,13860:24854813,44233635:443784 -k1,13860:26317682,44233635:443784 -k1,13860:29947826,44233635:443784 -k1,13861:32583029,44233635:0 -) -(1,13861:6764466,45098715:25818563,513147,126483 -(1,13860:6764466,45098715:0,452978,115847 -r1,13864:10991562,45098715:4227096,568825,115847 -k1,13860:6764466,45098715:-4227096 -) -(1,13860:6764466,45098715:4227096,452978,115847 -k1,13860:6764466,45098715:3277 -h1,13860:10988285,45098715:0,411205,112570 -) -g1,13860:11190791,45098715 -g1,13860:12581465,45098715 -(1,13860:12581465,45098715:0,459977,115847 -r1,13864:16808561,45098715:4227096,575824,115847 -k1,13860:12581465,45098715:-4227096 -) -(1,13860:12581465,45098715:4227096,459977,115847 -k1,13860:12581465,45098715:3277 -h1,13860:16805284,45098715:0,411205,112570 -) -g1,13860:17007790,45098715 -g1,13860:19302860,45098715 -g1,13860:20799047,45098715 -g1,13860:21989836,45098715 -g1,13860:23569253,45098715 -g1,13860:24493310,45098715 -k1,13861:32583029,45098715:5033120 -g1,13861:32583029,45098715 -) -] -g1,13861:32583029,45225198 -) -h1,13861:6630773,45225198:0,0,0 -] -(1,13864:32583029,45706769:0,0,0 -g1,13864:32583029,45706769 -) -) -] -(1,13864:6630773,47279633:25952256,0,0 -h1,13864:6630773,47279633:25952256,0,0 -) -] -(1,13864:4262630,4025873:0,0,0 -[1,13864:-473656,4025873:0,0,0 -(1,13864:-473656,-710413:0,0,0 -(1,13864:-473656,-710413:0,0,0 -g1,13864:-473656,-710413 -) -g1,13864:-473656,-710413 +[1,13862:3078558,4812305:0,0,0 +(1,13862:3078558,49800853:0,16384,2228224 +g1,13862:29030814,49800853 +g1,13862:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13862:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13862:37855564,49800853:1179648,16384,0 +) +) +k1,13862:3078556,49800853:-34777008 +) +] +g1,13862:6630773,4812305 +g1,13862:6630773,4812305 +g1,13862:8843268,4812305 +g1,13862:11066249,4812305 +g1,13862:13415059,4812305 +k1,13862:31387651,4812305:17972592 +) +) +] +[1,13862:6630773,45706769:25952256,40108032,0 +(1,13862:6630773,45706769:25952256,40108032,0 +(1,13862:6630773,45706769:0,0,0 +g1,13862:6630773,45706769 +) +[1,13862:6630773,45706769:25952256,40108032,0 +v1,13845:6630773,6254097:0,393216,0 +(1,13845:6630773,28812152:25952256,22951271,0 +g1,13845:6630773,28812152 +g1,13845:6237557,28812152 +r1,13862:6368629,28812152:131072,22951271,0 +g1,13845:6567858,28812152 +g1,13845:6764466,28812152 +[1,13845:6764466,28812152:25818563,22951271,0 +(1,13813:6764466,6374028:25818563,513147,134348 +h1,13812:6764466,6374028:983040,0,0 +k1,13812:8441867,6374028:206773 +k1,13812:10824444,6374028:206782 +k1,13812:12135507,6374028:206781 +k1,13812:13090054,6374028:206781 +k1,13812:16505478,6374028:206781 +k1,13812:17659910,6374028:206781 +k1,13812:18885776,6374028:206781 +k1,13812:20790595,6374028:206781 +k1,13812:21683538,6374028:206781 +k1,13812:22837970,6374028:206781 +k1,13812:24063836,6374028:206781 +k1,13812:26182302,6374028:206781 +k1,13812:28172318,6374028:206781 +k1,13812:30114492,6374028:206781 +(1,13812:30114492,6374028:0,452978,115847 +r1,13862:32583029,6374028:2468537,568825,115847 +k1,13812:30114492,6374028:-2468537 +) +(1,13812:30114492,6374028:2468537,452978,115847 +k1,13812:30114492,6374028:3277 +h1,13812:32579752,6374028:0,411205,112570 +) +k1,13812:32583029,6374028:0 +) +(1,13813:6764466,7239108:25818563,513147,126483 +k1,13812:8153785,7239108:197874 +(1,13812:8153785,7239108:0,452978,115847 +r1,13862:11325745,7239108:3171960,568825,115847 +k1,13812:8153785,7239108:-3171960 +) +(1,13812:8153785,7239108:3171960,452978,115847 +k1,13812:8153785,7239108:3277 +h1,13812:11322468,7239108:0,411205,112570 +) +k1,13812:11523619,7239108:197874 +k1,13812:12740577,7239108:197873 +k1,13812:14178392,7239108:197874 +k1,13812:17848363,7239108:197874 +k1,13812:18577734,7239108:197874 +k1,13812:19584978,7239108:197874 +k1,13812:21553634,7239108:197873 +k1,13812:22434393,7239108:197874 +k1,13812:23441637,7239108:197874 +k1,13812:26686935,7239108:197874 +k1,13812:27954357,7239108:197874 +k1,13812:29850268,7239108:197873 +k1,13812:30616339,7239108:197874 +k1,13812:31386342,7239108:197874 +k1,13812:32583029,7239108:0 +) +(1,13813:6764466,8104188:25818563,513147,126483 +k1,13812:10348849,8104188:279402 +k1,13812:11819696,8104188:279402 +k1,13812:13493048,8104188:279401 +k1,13812:14128310,8104188:279402 +k1,13812:15647653,8104188:279402 +k1,13812:19399152,8104188:279402 +k1,13812:20337846,8104188:279402 +k1,13812:22315285,8104188:279401 +k1,13812:23162884,8104188:279402 +k1,13812:23840745,8104188:279402 +k1,13812:24651644,8104188:279402 +k1,13812:26325652,8104188:279402 +k1,13812:27256481,8104188:279401 +k1,13812:30969314,8104188:279402 +k1,13812:31714677,8104188:279402 +k1,13812:32583029,8104188:0 +) +(1,13813:6764466,8969268:25818563,505283,134348 +k1,13812:9674639,8969268:179288 +k1,13812:11184307,8969268:179287 +k1,13812:12231947,8969268:179288 +k1,13812:15219453,8969268:179288 +k1,13812:15754601,8969268:179288 +$1,13812:15754601,8969268 +$1,13812:16075072,8969268 +k1,13812:18147694,8969268:179287 +k1,13812:19559059,8969268:179288 +k1,13812:22017034,8969268:179288 +h1,13812:22987622,8969268:0,0,0 +k1,13812:23166909,8969268:179287 +k1,13812:24155567,8969268:179288 +k1,13812:25833008,8969268:179288 +h1,13812:27028385,8969268:0,0,0 +k1,13812:27588437,8969268:179288 +k1,13812:28596754,8969268:179287 +k1,13812:31563944,8969268:179288 +k1,13812:32583029,8969268:0 +) +(1,13813:6764466,9834348:25818563,513147,126483 +k1,13812:9107858,9834348:167597 +k1,13812:10143808,9834348:167598 +k1,13812:11841671,9834348:167597 +k1,13812:12779972,9834348:167598 +k1,13812:15663381,9834348:167597 +k1,13812:16778629,9834348:167597 +k1,13812:17965312,9834348:167598 +k1,13812:19830947,9834348:167597 +k1,13812:21189990,9834348:167598 +k1,13812:22128290,9834348:167597 +k1,13812:25011699,9834348:167597 +k1,13812:25838589,9834348:167598 +k1,13812:26794584,9834348:167597 +k1,13812:29805789,9834348:167598 +k1,13812:31753999,9834348:167597 +k1,13812:32583029,9834348:0 +) +(1,13813:6764466,10699428:25818563,513147,134348 +k1,13812:8313503,10699428:162295 +k1,13812:9311382,10699428:162295 +k1,13812:10492762,10699428:162295 +$1,13812:10492762,10699428 +$1,13812:10960689,10699428 +k1,13812:13189991,10699428:162296 +k1,13812:14220638,10699428:162295 +k1,13812:15913199,10699428:162295 +k1,13812:17094579,10699428:162295 +k1,13812:19712508,10699428:162295 +k1,13812:20534095,10699428:162295 +k1,13812:23553104,10699428:162295 +k1,13812:24613243,10699428:162296 +k1,13812:26472265,10699428:162295 +k1,13812:28645205,10699428:162295 +k1,13812:29799060,10699428:162295 +k1,13812:32583029,10699428:0 +) +(1,13813:6764466,11564508:25818563,513147,134348 +g1,13812:7649857,11564508 +g1,13812:10802794,11564508 +g1,13812:11661315,11564508 +g1,13812:12879629,11564508 +g1,13812:16069266,11564508 +g1,13812:18228021,11564508 +g1,13812:19086542,11564508 +g1,13812:19641631,11564508 +g1,13812:21553316,11564508 +k1,13813:32583029,11564508:8989578 +g1,13813:32583029,11564508 +) +v1,13815:6764466,12249363:0,393216,0 +(1,13821:6764466,13966362:25818563,2110215,196608 +g1,13821:6764466,13966362 +g1,13821:6764466,13966362 +g1,13821:6567858,13966362 +(1,13821:6567858,13966362:0,2110215,196608 +r1,13862:32779637,13966362:26211779,2306823,196608 +k1,13821:6567857,13966362:-26211780 +) +(1,13821:6567858,13966362:26211779,2110215,196608 +[1,13821:6764466,13966362:25818563,1913607,0 +(1,13817:6764466,12483800:25818563,431045,106246 +(1,13816:6764466,12483800:0,0,0 +g1,13816:6764466,12483800 +g1,13816:6764466,12483800 +g1,13816:6436786,12483800 +(1,13816:6436786,12483800:0,0,0 +) +g1,13816:6764466,12483800 +) +g1,13817:12075729,12483800 +g1,13817:13071591,12483800 +g1,13817:24689980,12483800 +h1,13817:28341473,12483800:0,0,0 +k1,13817:32583029,12483800:4241556 +g1,13817:32583029,12483800 +) +(1,13818:6764466,13168655:25818563,431045,106246 +h1,13818:6764466,13168655:0,0,0 +g1,13818:11079867,13168655 +g1,13818:12075729,13168655 +g1,13818:23694118,13168655 +g1,13818:25685842,13168655 +h1,13818:28009520,13168655:0,0,0 +k1,13818:32583029,13168655:4573509 +g1,13818:32583029,13168655 +) +(1,13819:6764466,13853510:25818563,431045,112852 +h1,13819:6764466,13853510:0,0,0 +g1,13819:13071591,13853510 +g1,13819:14067453,13853510 +k1,13819:14067453,13853510:0 +h1,13819:20042625,13853510:0,0,0 +k1,13819:32583029,13853510:12540404 +g1,13819:32583029,13853510 +) +] +) +g1,13821:32583029,13966362 +g1,13821:6764466,13966362 +g1,13821:6764466,13966362 +g1,13821:32583029,13966362 +g1,13821:32583029,13966362 +) +h1,13821:6764466,14162970:0,0,0 +(1,13825:6764466,15028050:25818563,513147,126483 +h1,13824:6764466,15028050:983040,0,0 +k1,13824:9176737,15028050:232544 +k1,13824:12125092,15028050:232543 +k1,13824:13016928,15028050:232544 +k1,13824:14268556,15028050:232543 +$1,13824:14268556,15028050 +$1,13824:14589027,15028050 +k1,13824:16888577,15028050:232544 +k1,13824:17804005,15028050:232543 +k1,13824:20810687,15028050:232543 +k1,13824:21574728,15028050:232544 +k1,13824:25015915,15028050:232544 +k1,13824:27103127,15028050:232543 +k1,13824:28145041,15028050:232544 +k1,13824:29396669,15028050:232543 +k1,13824:32583029,15028050:0 +) +(1,13825:6764466,15893130:25818563,513147,126483 +k1,13824:9628944,15893130:229275 +k1,13824:10877304,15893130:229275 +k1,13824:13822391,15893130:229275 +k1,13824:14999317,15893130:229275 +k1,13824:16247677,15893130:229275 +k1,13824:18174990,15893130:229275 +k1,13824:19595711,15893130:229276 +k1,13824:20180846,15893130:229275 +k1,13824:21650062,15893130:229275 +k1,13824:25351434,15893130:229275 +k1,13824:27093935,15893130:229275 +k1,13824:28009372,15893130:229275 +k1,13824:31391584,15893130:229275 +k1,13824:32583029,15893130:0 +) +(1,13825:6764466,16758210:25818563,513147,126483 +k1,13824:7989889,16758210:206338 +k1,13824:11039834,16758210:206338 +k1,13824:12853115,16758210:206338 +k1,13824:13718745,16758210:206338 +k1,13824:14944168,16758210:206338 +k1,13824:18287059,16758210:206338 +k1,13824:20365105,16758210:206338 +k1,13824:21059024,16758210:206331 +k1,13824:24751222,16758210:206338 +k1,13824:25489057,16758210:206338 +k1,13824:28487229,16758210:206338 +k1,13824:30548236,16758210:206338 +k1,13824:31563944,16758210:206338 +k1,13824:32583029,16758210:0 +) +(1,13825:6764466,17623290:25818563,513147,134348 +k1,13824:10243356,17623290:270247 +$1,13824:10243356,17623290 +$1,13824:10563827,17623290 +k1,13824:12901079,17623290:270246 +k1,13824:13854211,17623290:270247 +k1,13824:16898596,17623290:270246 +k1,13824:18360288,17623290:270247 +k1,13824:19649619,17623290:270246 +$1,13824:19649619,17623290 +$1,13824:19970090,17623290 +k1,13824:20240337,17623290:270247 +k1,13824:24292010,17623290:270246 +k1,13824:25956208,17623290:270247 +k1,13824:29197856,17623290:270246 +k1,13824:31923737,17623290:270247 +k1,13824:32583029,17623290:0 +) +(1,13825:6764466,18488370:25818563,513147,134348 +k1,13824:9697133,18488370:249623 +k1,13824:11340708,18488370:249624 +k1,13824:11946191,18488370:249623 +k1,13824:13295509,18488370:249624 +k1,13824:14196560,18488370:249623 +(1,13824:14196560,18488370:0,452978,115847 +r1,13862:15609961,18488370:1413401,568825,115847 +k1,13824:14196560,18488370:-1413401 +) +(1,13824:14196560,18488370:1413401,452978,115847 +k1,13824:14196560,18488370:3277 +h1,13824:15606684,18488370:0,411205,112570 +) +k1,13824:15859584,18488370:249623 +k1,13824:17341285,18488370:249624 +k1,13824:19869595,18488370:249623 +h1,13824:20840183,18488370:0,0,0 +k1,13824:21089806,18488370:249623 +k1,13824:22148800,18488370:249624 +k1,13824:23896576,18488370:249623 +h1,13824:25091953,18488370:0,0,0 +k1,13824:25722341,18488370:249624 +k1,13824:27013986,18488370:249623 +k1,13824:27619469,18488370:249623 +k1,13824:30273609,18488370:249624 +k1,13824:31714677,18488370:249623 +k1,13824:32583029,18488370:0 +) +(1,13825:6764466,19353450:25818563,505283,126483 +g1,13824:9648705,19353450 +g1,13824:10609462,19353450 +g1,13824:11981130,19353450 +g1,13824:13199444,19353450 +g1,13824:15787460,19353450 +$1,13824:15787460,19353450 +$1,13824:16255387,19353450 +g1,13824:16454616,19353450 +k1,13825:32583029,19353450:13360173 +g1,13825:32583029,19353450 +) +v1,13827:6764466,20038305:0,393216,0 +(1,13841:6764466,25885956:25818563,6240867,196608 +g1,13841:6764466,25885956 +g1,13841:6764466,25885956 +g1,13841:6567858,25885956 +(1,13841:6567858,25885956:0,6240867,196608 +r1,13862:32779637,25885956:26211779,6437475,196608 +k1,13841:6567857,25885956:-26211780 +) +(1,13841:6567858,25885956:26211779,6240867,196608 +[1,13841:6764466,25885956:25818563,6044259,0 +(1,13829:6764466,20266136:25818563,424439,106246 +(1,13828:6764466,20266136:0,0,0 +g1,13828:6764466,20266136 +g1,13828:6764466,20266136 +g1,13828:6436786,20266136 +(1,13828:6436786,20266136:0,0,0 +) +g1,13828:6764466,20266136 +) +g1,13829:9752051,20266136 +g1,13829:10747913,20266136 +h1,13829:11079867,20266136:0,0,0 +k1,13829:32583029,20266136:21503162 +g1,13829:32583029,20266136 +) +(1,13830:6764466,20950991:25818563,424439,106246 +h1,13830:6764466,20950991:0,0,0 +g1,13830:9420098,20950991 +g1,13830:10415960,20950991 +g1,13830:16059177,20950991 +g1,13830:16723085,20950991 +g1,13830:20042624,20950991 +g1,13830:20706532,20950991 +h1,13830:24689979,20950991:0,0,0 +k1,13830:32583029,20950991:7893050 +g1,13830:32583029,20950991 +) +(1,13831:6764466,21635846:25818563,431045,112852 +h1,13831:6764466,21635846:0,0,0 +g1,13831:9420098,21635846 +g1,13831:10415960,21635846 +g1,13831:11079868,21635846 +g1,13831:11743776,21635846 +g1,13831:13403546,21635846 +g1,13831:14067454,21635846 +g1,13831:17055040,21635846 +g1,13831:18050902,21635846 +g1,13831:18714810,21635846 +g1,13831:25353889,21635846 +g1,13831:29005382,21635846 +g1,13831:29669290,21635846 +h1,13831:31661014,21635846:0,0,0 +k1,13831:32583029,21635846:922015 +g1,13831:32583029,21635846 +) +(1,13832:6764466,22320701:25818563,431045,112852 +h1,13832:6764466,22320701:0,0,0 +g1,13832:10415960,22320701 +g1,13832:11743776,22320701 +g1,13832:19710671,22320701 +k1,13832:19710671,22320701:0 +h1,13832:20706533,22320701:0,0,0 +k1,13832:32583029,22320701:11876496 +g1,13832:32583029,22320701 +) +(1,13833:6764466,23005556:25818563,431045,112852 +h1,13833:6764466,23005556:0,0,0 +g1,13833:7096420,23005556 +g1,13833:7428374,23005556 +g1,13833:7760328,23005556 +g1,13833:8092282,23005556 +g1,13833:10084006,23005556 +g1,13833:11743776,23005556 +g1,13833:13071592,23005556 +g1,13833:20042625,23005556 +k1,13833:20042625,23005556:0 +h1,13833:21038487,23005556:0,0,0 +k1,13833:32583029,23005556:11544542 +g1,13833:32583029,23005556 +) +(1,13834:6764466,23690411:25818563,431045,112852 +h1,13834:6764466,23690411:0,0,0 +g1,13834:7096420,23690411 +g1,13834:7428374,23690411 +g1,13834:7760328,23690411 +g1,13834:8092282,23690411 +g1,13834:11743775,23690411 +g1,13834:13071591,23690411 +g1,13834:18382854,23690411 +k1,13834:18382854,23690411:0 +h1,13834:19378716,23690411:0,0,0 +k1,13834:32583029,23690411:13204313 +g1,13834:32583029,23690411 +) +(1,13835:6764466,24375266:25818563,431045,112852 +h1,13835:6764466,24375266:0,0,0 +g1,13835:7096420,24375266 +g1,13835:7428374,24375266 +g1,13835:7760328,24375266 +g1,13835:8092282,24375266 +g1,13835:9752052,24375266 +g1,13835:12407684,24375266 +g1,13835:13735500,24375266 +g1,13835:19046763,24375266 +h1,13835:20042625,24375266:0,0,0 +k1,13835:32583029,24375266:12540404 +g1,13835:32583029,24375266 +) +(1,13840:6764466,25191193:25818563,424439,106246 +(1,13837:6764466,25191193:0,0,0 +g1,13837:6764466,25191193 +g1,13837:6764466,25191193 +g1,13837:6436786,25191193 +(1,13837:6436786,25191193:0,0,0 +) +g1,13837:6764466,25191193 +) +g1,13840:7760328,25191193 +g1,13840:9752052,25191193 +g1,13840:10415960,25191193 +g1,13840:12075730,25191193 +g1,13840:13735500,25191193 +g1,13840:15395270,25191193 +g1,13840:16059178,25191193 +h1,13840:17718948,25191193:0,0,0 +k1,13840:32583029,25191193:14864081 +g1,13840:32583029,25191193 +) +(1,13840:6764466,25876048:25818563,424439,9908 +h1,13840:6764466,25876048:0,0,0 +g1,13840:7760328,25876048 +g1,13840:10415960,25876048 +g1,13840:11079868,25876048 +g1,13840:12739638,25876048 +g1,13840:14067454,25876048 +g1,13840:16723086,25876048 +g1,13840:17386994,25876048 +k1,13840:17386994,25876048:0 +h1,13840:20042626,25876048:0,0,0 +k1,13840:32583029,25876048:12540403 +g1,13840:32583029,25876048 +) +] +) +g1,13841:32583029,25885956 +g1,13841:6764466,25885956 +g1,13841:6764466,25885956 +g1,13841:32583029,25885956 +g1,13841:32583029,25885956 +) +h1,13841:6764466,26082564:0,0,0 +(1,13845:6764466,26947644:25818563,513147,126483 +h1,13844:6764466,26947644:983040,0,0 +k1,13844:9365137,26947644:236787 +k1,13844:12263341,26947644:236787 +k1,13844:13031625,26947644:236787 +k1,13844:14216064,26947644:236788 +k1,13844:14808711,26947644:236787 +k1,13844:16858224,26947644:236787 +k1,13844:19082718,26947644:236787 +k1,13844:21031961,26947644:236787 +k1,13844:22662699,26947644:236787 +k1,13844:25594982,26947644:236787 +(1,13844:25594982,26947644:0,452978,115847 +r1,13862:27008383,26947644:1413401,568825,115847 +k1,13844:25594982,26947644:-1413401 +) +(1,13844:25594982,26947644:1413401,452978,115847 +k1,13844:25594982,26947644:3277 +h1,13844:27005106,26947644:0,411205,112570 +) +k1,13844:27245171,26947644:236788 +k1,13844:28554127,26947644:236787 +k1,13844:29809999,26947644:236787 +k1,13844:31700259,26947644:236787 +k1,13845:32583029,26947644:0 +) +(1,13845:6764466,27812724:25818563,513147,126483 +k1,13844:9106723,27812724:134349 +k1,13844:10345353,27812724:134348 +k1,13844:11227468,27812724:134349 +k1,13844:13733565,27812724:134349 +k1,13844:14519341,27812724:134348 +k1,13844:16355660,27812724:134349 +k1,13844:18477716,27812724:134349 +k1,13844:19299537,27812724:134348 +k1,13844:23020016,27812724:134349 +k1,13844:24102016,27812724:134349 +k1,13844:26121835,27812724:134348 +k1,13844:29536916,27812724:134349 +k1,13844:32583029,27812724:0 +) +(1,13845:6764466,28677804:25818563,505283,134348 +g1,13844:8155140,28677804 +g1,13844:9863008,28677804 +g1,13844:14685802,28677804 +g1,13844:17728638,28677804 +g1,13844:19534810,28677804 +g1,13844:22780152,28677804 +g1,13844:24083663,28677804 +g1,13844:25030658,28677804 +g1,13844:28201945,28677804 +g1,13844:29084059,28677804 +k1,13845:32583029,28677804:237899 +g1,13845:32583029,28677804 +) +] +g1,13845:32583029,28812152 +) +h1,13845:6630773,28812152:0,0,0 +v1,13848:6630773,29677232:0,393216,0 +(1,13852:6630773,32715118:25952256,3431102,0 +g1,13852:6630773,32715118 +g1,13852:6237557,32715118 +r1,13862:6368629,32715118:131072,3431102,0 +g1,13852:6567858,32715118 +g1,13852:6764466,32715118 +[1,13852:6764466,32715118:25818563,3431102,0 +(1,13849:6764466,29985530:25818563,701514,196608 +(1,13848:6764466,29985530:0,701514,196608 +r1,13862:8471973,29985530:1707507,898122,196608 +k1,13848:6764466,29985530:-1707507 +) +(1,13848:6764466,29985530:1707507,701514,196608 +) +k1,13848:8706580,29985530:234607 +k1,13848:10432798,29985530:327680 +k1,13848:12611204,29985530:234608 +k1,13848:14130317,29985530:234607 +k1,13848:15384010,29985530:234608 +k1,13848:20012806,29985530:234607 +k1,13848:22102738,29985530:234608 +k1,13848:23850571,29985530:234607 +k1,13848:27026435,29985530:234608 +(1,13848:27026435,29985530:0,452978,115847 +r1,13862:31605244,29985530:4578809,568825,115847 +k1,13848:27026435,29985530:-4578809 +) +(1,13848:27026435,29985530:4578809,452978,115847 +g1,13848:30195119,29985530 +g1,13848:31250255,29985530 +h1,13848:31601967,29985530:0,411205,112570 +) +k1,13848:31839851,29985530:234607 +k1,13849:32583029,29985530:0 +) +(1,13849:6764466,30850610:25818563,513147,134348 +(1,13848:6764466,30850610:0,452978,115847 +r1,13862:11343275,30850610:4578809,568825,115847 +k1,13848:6764466,30850610:-4578809 +) +(1,13848:6764466,30850610:4578809,452978,115847 +g1,13848:9933150,30850610 +g1,13848:10988286,30850610 +h1,13848:11339998,30850610:0,411205,112570 +) +g1,13848:11542504,30850610 +g1,13848:13454844,30850610 +g1,13848:15048024,30850610 +g1,13848:16266338,30850610 +g1,13848:18624323,30850610 +g1,13848:19482844,30850610 +g1,13848:22254361,30850610 +(1,13848:22254361,30850610:0,452978,115847 +r1,13862:25426321,30850610:3171960,568825,115847 +k1,13848:22254361,30850610:-3171960 +) +(1,13848:22254361,30850610:3171960,452978,115847 +k1,13848:22254361,30850610:3277 +h1,13848:25423044,30850610:0,411205,112570 +) +k1,13849:32583029,30850610:7104280 +g1,13849:32583029,30850610 +) +(1,13851:6764466,31715690:25818563,513147,134348 +h1,13850:6764466,31715690:983040,0,0 +k1,13850:10200956,31715690:247508 +k1,13850:11467548,31715690:247507 +k1,13850:14376473,31715690:247508 +k1,13850:16479304,31715690:247507 +k1,13850:17451640,31715690:247508 +k1,13850:18385310,31715690:247508 +k1,13850:19284245,31715690:247507 +k1,13850:20723198,31715690:247508 +k1,13850:23561343,31715690:247507 +k1,13850:24827936,31715690:247508 +k1,13850:27942643,31715690:247507 +k1,13850:28721648,31715690:247508 +k1,13850:32583029,31715690:0 +) +(1,13851:6764466,32580770:25818563,513147,134348 +g1,13850:8822951,32580770 +g1,13850:10464627,32580770 +g1,13850:11062315,32580770 +g1,13850:12651563,32580770 +g1,13850:14656309,32580770 +g1,13850:15211398,32580770 +g1,13850:18500650,32580770 +k1,13851:32583029,32580770:12838506 +g1,13851:32583029,32580770 +) +] +g1,13852:32583029,32715118 +) +h1,13852:6630773,32715118:0,0,0 +(1,13856:6630773,33580198:25952256,513147,134348 +h1,13855:6630773,33580198:983040,0,0 +k1,13855:10266217,33580198:254442 +(1,13855:10266217,33580198:0,452978,115847 +r1,13862:13438177,33580198:3171960,568825,115847 +k1,13855:10266217,33580198:-3171960 +) +(1,13855:10266217,33580198:3171960,452978,115847 +k1,13855:10266217,33580198:3277 +h1,13855:13434900,33580198:0,411205,112570 +) +k1,13855:13692619,33580198:254442 +k1,13855:15369848,33580198:254442 +k1,13855:16643375,33580198:254442 +k1,13855:18610273,33580198:254442 +k1,13855:20852422,33580198:254442 +k1,13855:23787286,33580198:254441 +k1,13855:25435679,33580198:254442 +k1,13855:26973316,33580198:254442 +k1,13855:28617121,33580198:254442 +k1,13855:29819214,33580198:254442 +k1,13855:31092741,33580198:254442 +k1,13856:32583029,33580198:0 +) +(1,13856:6630773,34445278:25952256,505283,126483 +k1,13855:9411941,34445278:158417 +k1,13855:12411998,34445278:158416 +k1,13855:13221843,34445278:158417 +k1,13855:16168162,34445278:158417 +k1,13855:20109972,34445278:158417 +k1,13855:21086277,34445278:158416 +(1,13855:21086277,34445278:0,452978,115847 +r1,13862:24258237,34445278:3171960,568825,115847 +k1,13855:21086277,34445278:-3171960 +) +(1,13855:21086277,34445278:3171960,452978,115847 +k1,13855:21086277,34445278:3277 +h1,13855:24254960,34445278:0,411205,112570 +) +k1,13855:24416654,34445278:158417 +k1,13855:26953373,34445278:158417 +k1,13855:28394985,34445278:158417 +k1,13855:29942764,34445278:158416 +k1,13855:30787343,34445278:158417 +k1,13855:32583029,34445278:0 +) +(1,13856:6630773,35310358:25952256,513147,126483 +k1,13855:7358092,35310358:269222 +k1,13855:9639268,35310358:269221 +k1,13855:14060851,35310358:269222 +k1,13855:15521518,35310358:269222 +k1,13855:20047959,35310358:269222 +k1,13855:20968608,35310358:269221 +k1,13855:23248475,35310358:269222 +k1,13855:24176989,35310358:269222 +k1,13855:25465295,35310358:269221 +k1,13855:29741388,35310358:269222 +k1,13855:32583029,35310358:0 +) +(1,13856:6630773,36175438:25952256,513147,134348 +k1,13855:7865348,36175438:168304 +k1,13855:10439480,36175438:168305 +k1,13855:11223822,36175438:168304 +k1,13855:12411212,36175438:168305 +k1,13855:15014834,36175438:168304 +k1,13855:16746173,36175438:168305 +k1,13855:17542312,36175438:168304 +k1,13855:18729702,36175438:168305 +k1,13855:20265087,36175438:168304 +k1,13855:21092684,36175438:168305 +k1,13855:22278762,36175438:168304 +k1,13855:23106359,36175438:168305 +k1,13855:25087389,36175438:168304 +k1,13855:26447139,36175438:168305 +k1,13855:28307583,36175438:168304 +k1,13855:30177858,36175438:168305 +k1,13855:32583029,36175438:0 +) +(1,13856:6630773,37040518:25952256,513147,126483 +k1,13855:9319713,37040518:234617 +(1,13855:9319713,37040518:0,452978,115847 +r1,13862:12491673,37040518:3171960,568825,115847 +k1,13855:9319713,37040518:-3171960 +) +(1,13855:9319713,37040518:3171960,452978,115847 +k1,13855:9319713,37040518:3277 +h1,13855:12488396,37040518:0,411205,112570 +) +k1,13855:12726291,37040518:234618 +k1,13855:15475524,37040518:234617 +k1,13855:16326179,37040518:234617 +k1,13855:19226801,37040518:234617 +k1,13855:20112847,37040518:234618 +k1,13855:21366549,37040518:234617 +k1,13855:25054258,37040518:234617 +k1,13855:28334988,37040518:234617 +k1,13855:29228898,37040518:234618 +k1,13855:30482600,37040518:234617 +k1,13856:32583029,37040518:0 +) +(1,13856:6630773,37905598:25952256,513147,126483 +k1,13855:8229618,37905598:155742 +k1,13855:10595233,37905598:155741 +k1,13855:14030397,37905598:155742 +k1,13855:17116908,37905598:155741 +k1,13855:18469337,37905598:155742 +k1,13855:19908273,37905598:155741 +k1,13855:21453378,37905598:155742 +k1,13855:23231136,37905598:155742 +k1,13855:24134643,37905598:155741 +k1,13855:26328555,37905598:155742 +k1,13855:27100334,37905598:155741 +k1,13855:27611936,37905598:155742 +k1,13855:29157040,37905598:155741 +k1,13855:31189078,37905598:155742 +k1,13855:32583029,37905598:0 +) +(1,13856:6630773,38770678:25952256,513147,134348 +k1,13855:9572029,38770678:228065 +k1,13855:11535487,38770678:228065 +k1,13855:12782638,38770678:228066 +k1,13855:14664176,38770678:228065 +k1,13855:16960557,38770678:228065 +k1,13855:18136273,38770678:228065 +k1,13855:19383424,38770678:228066 +k1,13855:23377188,38770678:228065 +k1,13855:26446894,38770678:228065 +k1,13855:27361121,38770678:228065 +k1,13855:28205225,38770678:228066 +k1,13855:29452375,38770678:228065 +k1,13855:31069803,38770678:228065 +k1,13855:32583029,38770678:0 +) +(1,13856:6630773,39635758:25952256,513147,134348 +k1,13855:7799230,39635758:220806 +k1,13855:9039120,39635758:220805 +k1,13855:10121069,39635758:220806 +k1,13855:10697734,39635758:220805 +k1,13855:13792294,39635758:220806 +k1,13855:16524440,39635758:220806 +k1,13855:17276742,39635758:220805 +k1,13855:18563819,39635758:220806 +k1,13855:21082973,39635758:220806 +k1,13855:22495223,39635758:220805 +k1,13855:25943022,39635758:220806 +k1,13855:28877018,39635758:220805 +k1,13855:30089384,39635758:220806 +k1,13855:32583029,39635758:0 +) +(1,13856:6630773,40500838:25952256,513147,126483 +k1,13855:8184581,40500838:170999 +k1,13855:12121278,40500838:170998 +k1,13855:15133918,40500838:170999 +k1,13855:15920954,40500838:170998 +k1,13855:17111038,40500838:170999 +k1,13855:18565231,40500838:170998 +k1,13855:20125593,40500838:170999 +k1,13855:21400873,40500838:170998 +k1,13855:22319638,40500838:170999 +k1,13855:24346616,40500838:170998 +k1,13855:28088016,40500838:170999 +k1,13855:28941899,40500838:170998 +k1,13855:31510860,40500838:170999 +k1,13855:32583029,40500838:0 +) +(1,13856:6630773,41365918:25952256,505283,134348 +g1,13855:8210190,41365918 +g1,13855:10031435,41365918 +g1,13855:12211817,41365918 +g1,13855:13027084,41365918 +g1,13855:14429554,41365918 +g1,13855:16953345,41365918 +g1,13855:18896487,41365918 +g1,13855:19711754,41365918 +g1,13855:20930068,41365918 +g1,13855:23564615,41365918 +k1,13856:32583029,41365918:7289575 +g1,13856:32583029,41365918 +) +v1,13858:6630773,42230998:0,393216,0 +(1,13859:6630773,45225198:25952256,3387416,0 +g1,13859:6630773,45225198 +g1,13859:6237557,45225198 +r1,13862:6368629,45225198:131072,3387416,0 +g1,13859:6567858,45225198 +g1,13859:6764466,45225198 +[1,13859:6764466,45225198:25818563,3387416,0 +(1,13859:6764466,42503475:25818563,665693,196608 +(1,13858:6764466,42503475:0,665693,196608 +r1,13862:7868133,42503475:1103667,862301,196608 +k1,13858:6764466,42503475:-1103667 +) +(1,13858:6764466,42503475:1103667,665693,196608 +) +k1,13858:8032120,42503475:163987 +k1,13858:9758338,42503475:327680 +k1,13858:12145962,42503475:163987 +k1,13858:14045342,42503475:163987 +k1,13858:15676025,42503475:163987 +(1,13858:15676025,42503475:0,459977,115847 +r1,13862:16737714,42503475:1061689,575824,115847 +k1,13858:15676025,42503475:-1061689 +) +(1,13858:15676025,42503475:1061689,459977,115847 +k1,13858:15676025,42503475:3277 +h1,13858:16734437,42503475:0,411205,112570 +) +k1,13858:16901701,42503475:163987 +k1,13858:18257133,42503475:163987 +(1,13858:18257133,42503475:0,459977,115847 +r1,13862:19318822,42503475:1061689,575824,115847 +k1,13858:18257133,42503475:-1061689 +) +(1,13858:18257133,42503475:1061689,459977,115847 +k1,13858:18257133,42503475:3277 +h1,13858:19315545,42503475:0,411205,112570 +) +k1,13858:19482810,42503475:163988 +k1,13858:20665882,42503475:163987 +k1,13858:23490631,42503475:163987 +k1,13858:26367153,42503475:163987 +k1,13858:27182568,42503475:163987 +k1,13858:28749025,42503475:163987 +k1,13858:30221111,42503475:163987 +k1,13858:32583029,42503475:0 +) +(1,13859:6764466,43368555:25818563,513147,134348 +k1,13858:7641296,43368555:264068 +k1,13858:8477493,43368555:264068 +k1,13858:9313690,43368555:264068 +k1,13858:10548346,43368555:264068 +k1,13858:11783002,43368555:264068 +k1,13858:13017658,43368555:264068 +k1,13858:14473171,43368555:264068 +k1,13858:15534157,43368555:264068 +k1,13858:17427449,43368555:264067 +k1,13858:19500311,43368555:264068 +k1,13858:20783464,43368555:264068 +k1,13858:22435585,43368555:264068 +k1,13858:24197806,43368555:264068 +k1,13858:25409525,43368555:264068 +k1,13858:26692678,43368555:264068 +(1,13858:26692678,43368555:0,452978,115847 +r1,13862:29864638,43368555:3171960,568825,115847 +k1,13858:26692678,43368555:-3171960 +) +(1,13858:26692678,43368555:3171960,452978,115847 +k1,13858:26692678,43368555:3277 +h1,13858:29861361,43368555:0,411205,112570 +) +k1,13858:30128706,43368555:264068 +k1,13858:32583029,43368555:0 +) +(1,13859:6764466,44233635:25818563,513147,134348 +k1,13858:8155901,44233635:443784 +k1,13858:10412411,44233635:443784 +k1,13858:13174203,44233635:443784 +k1,13858:15560474,44233635:443784 +(1,13858:15560474,44233635:0,452978,115847 +r1,13862:21194417,44233635:5633943,568825,115847 +k1,13858:15560474,44233635:-5633943 +) +(1,13858:15560474,44233635:5633943,452978,115847 +k1,13858:15560474,44233635:3277 +h1,13858:21191140,44233635:0,411205,112570 +) +k1,13858:22018965,44233635:443784 +k1,13858:24854813,44233635:443784 +k1,13858:26317682,44233635:443784 +k1,13858:29947826,44233635:443784 +k1,13859:32583029,44233635:0 +) +(1,13859:6764466,45098715:25818563,513147,126483 +(1,13858:6764466,45098715:0,452978,115847 +r1,13862:10991562,45098715:4227096,568825,115847 +k1,13858:6764466,45098715:-4227096 +) +(1,13858:6764466,45098715:4227096,452978,115847 +k1,13858:6764466,45098715:3277 +h1,13858:10988285,45098715:0,411205,112570 +) +g1,13858:11190791,45098715 +g1,13858:12581465,45098715 +(1,13858:12581465,45098715:0,459977,115847 +r1,13862:16808561,45098715:4227096,575824,115847 +k1,13858:12581465,45098715:-4227096 +) +(1,13858:12581465,45098715:4227096,459977,115847 +k1,13858:12581465,45098715:3277 +h1,13858:16805284,45098715:0,411205,112570 +) +g1,13858:17007790,45098715 +g1,13858:19302860,45098715 +g1,13858:20799047,45098715 +g1,13858:21989836,45098715 +g1,13858:23569253,45098715 +g1,13858:24493310,45098715 +k1,13859:32583029,45098715:5033120 +g1,13859:32583029,45098715 +) +] +g1,13859:32583029,45225198 +) +h1,13859:6630773,45225198:0,0,0 +] +(1,13862:32583029,45706769:0,0,0 +g1,13862:32583029,45706769 +) +) +] +(1,13862:6630773,47279633:25952256,0,0 +h1,13862:6630773,47279633:25952256,0,0 +) +] +(1,13862:4262630,4025873:0,0,0 +[1,13862:-473656,4025873:0,0,0 +(1,13862:-473656,-710413:0,0,0 +(1,13862:-473656,-710413:0,0,0 +g1,13862:-473656,-710413 +) +g1,13862:-473656,-710413 ) ] ) ] !31648 -}222 -Input:2355:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2356:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}223 Input:2358:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2359:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -245969,1888 +246168,1888 @@ Input:2361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{223 -[1,13940:4262630,47279633:28320399,43253760,0 -(1,13940:4262630,4025873:0,0,0 -[1,13940:-473656,4025873:0,0,0 -(1,13940:-473656,-710413:0,0,0 -(1,13940:-473656,-644877:0,0,0 -k1,13940:-473656,-644877:-65536 +{224 +[1,13938:4262630,47279633:28320399,43253760,0 +(1,13938:4262630,4025873:0,0,0 +[1,13938:-473656,4025873:0,0,0 +(1,13938:-473656,-710413:0,0,0 +(1,13938:-473656,-644877:0,0,0 +k1,13938:-473656,-644877:-65536 ) -(1,13940:-473656,4736287:0,0,0 -k1,13940:-473656,4736287:5209943 +(1,13938:-473656,4736287:0,0,0 +k1,13938:-473656,4736287:5209943 ) -g1,13940:-473656,-710413 +g1,13938:-473656,-710413 ) ] ) -[1,13940:6630773,47279633:25952256,43253760,0 -[1,13940:6630773,4812305:25952256,786432,0 -(1,13940:6630773,4812305:25952256,513147,126483 -(1,13940:6630773,4812305:25952256,513147,126483 -g1,13940:3078558,4812305 -[1,13940:3078558,4812305:0,0,0 -(1,13940:3078558,2439708:0,1703936,0 -k1,13940:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,13940:2537886,2439708:1179648,16384,0 +[1,13938:6630773,47279633:25952256,43253760,0 +[1,13938:6630773,4812305:25952256,786432,0 +(1,13938:6630773,4812305:25952256,513147,126483 +(1,13938:6630773,4812305:25952256,513147,126483 +g1,13938:3078558,4812305 +[1,13938:3078558,4812305:0,0,0 +(1,13938:3078558,2439708:0,1703936,0 +k1,13938:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,13938:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,13940:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,13938:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,13940:3078558,4812305:0,0,0 -(1,13940:3078558,2439708:0,1703936,0 -g1,13940:29030814,2439708 -g1,13940:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,13940:36151628,1915420:16384,1179648,0 +[1,13938:3078558,4812305:0,0,0 +(1,13938:3078558,2439708:0,1703936,0 +g1,13938:29030814,2439708 +g1,13938:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,13938:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,13940:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,13938:37855564,2439708:1179648,16384,0 ) ) -k1,13940:3078556,2439708:-34777008 +k1,13938:3078556,2439708:-34777008 ) ] -[1,13940:3078558,4812305:0,0,0 -(1,13940:3078558,49800853:0,16384,2228224 -k1,13940:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,13940:2537886,49800853:1179648,16384,0 +[1,13938:3078558,4812305:0,0,0 +(1,13938:3078558,49800853:0,16384,2228224 +k1,13938:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,13938:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,13940:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,13938:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] -) -) -) -] -[1,13940:3078558,4812305:0,0,0 -(1,13940:3078558,49800853:0,16384,2228224 -g1,13940:29030814,49800853 -g1,13940:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,13940:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,13940:37855564,49800853:1179648,16384,0 -) -) -k1,13940:3078556,49800853:-34777008 -) -] -g1,13940:6630773,4812305 -k1,13940:19575446,4812305:11749296 -g1,13940:21198117,4812305 -g1,13940:21985204,4812305 -g1,13940:24539797,4812305 -g1,13940:25949476,4812305 -g1,13940:28728857,4812305 -g1,13940:29852144,4812305 -) -) -] -[1,13940:6630773,45706769:25952256,40108032,0 -(1,13940:6630773,45706769:25952256,40108032,0 -(1,13940:6630773,45706769:0,0,0 -g1,13940:6630773,45706769 -) -[1,13940:6630773,45706769:25952256,40108032,0 -v1,13864:6630773,6254097:0,393216,0 -(1,13929:6630773,39231790:25952256,33370909,0 -g1,13929:6630773,39231790 -g1,13929:6237557,39231790 -r1,13940:6368629,39231790:131072,33370909,0 -g1,13929:6567858,39231790 -g1,13929:6764466,39231790 -[1,13929:6764466,39231790:25818563,33370909,0 -(1,13866:6764466,6562395:25818563,701514,196608 -(1,13864:6764466,6562395:0,701514,196608 -r1,13940:7761522,6562395:997056,898122,196608 -k1,13864:6764466,6562395:-997056 -) -(1,13864:6764466,6562395:997056,701514,196608 -) -k1,13864:7956439,6562395:194917 -k1,13864:8284119,6562395:327680 -k1,13864:8284119,6562395:0 -k1,13865:9675722,6562395:194916 -k1,13865:12160467,6562395:194917 -k1,13865:15134111,6562395:194917 -k1,13865:16090556,6562395:194917 -k1,13865:18273179,6562395:194916 -k1,13865:20402719,6562395:194917 -k1,13865:23623433,6562395:194917 -k1,13865:26190098,6562395:194917 -k1,13865:27404099,6562395:194916 -k1,13865:28688880,6562395:194917 -k1,13865:32583029,6562395:0 -) -(1,13866:6764466,7427475:25818563,513147,134348 -k1,13865:9943430,7427475:198387 -k1,13865:11160902,7427475:198387 -k1,13865:12748652,7427475:198387 -k1,13865:13598467,7427475:198387 -k1,13865:15682325,7427475:198387 -k1,13865:16899797,7427475:198387 -k1,13865:19085890,7427475:198386 -k1,13865:20491450,7427475:198387 -k1,13865:21377310,7427475:198387 -k1,13865:22400795,7427475:198387 -k1,13865:24285423,7427475:198387 -k1,13865:27415235,7427475:198387 -k1,13865:30830129,7427475:198387 -k1,13865:31384376,7427475:198387 -k1,13866:32583029,7427475:0 -) -(1,13866:6764466,8292555:25818563,513147,134348 -k1,13865:8069147,8292555:279698 -k1,13865:9516042,8292555:279699 -k1,13865:10423575,8292555:279698 -k1,13865:12304973,8292555:279698 -k1,13865:14282053,8292555:279698 -k1,13865:15580837,8292555:279699 -k1,13865:17415704,8292555:279698 -k1,13865:18354694,8292555:279698 -k1,13865:19653478,8292555:279699 -k1,13865:22223004,8292555:279698 -k1,13865:25281429,8292555:279698 -k1,13865:26322655,8292555:279698 -k1,13865:28590061,8292555:279699 -k1,13865:29557232,8292555:279698 -k1,13865:32583029,8292555:0 -) -(1,13866:6764466,9157635:25818563,513147,134348 -k1,13865:9069076,9157635:261197 -k1,13865:9946310,9157635:261196 -k1,13865:11945522,9157635:261197 -k1,13865:13600670,9157635:261197 -k1,13865:14880952,9157635:261197 -k1,13865:16880163,9157635:261196 -k1,13865:17800652,9157635:261197 -k1,13865:19080934,9157635:261197 -k1,13865:22037627,9157635:261197 -(1,13865:22244721,9157635:0,452978,115847 -r1,13940:23658122,9157635:1413401,568825,115847 -k1,13865:22244721,9157635:-1413401 -) -(1,13865:22244721,9157635:1413401,452978,115847 -k1,13865:22244721,9157635:3277 -h1,13865:23654845,9157635:0,411205,112570 -) -k1,13865:23919318,9157635:261196 -k1,13865:24796553,9157635:261197 -k1,13865:26260991,9157635:261197 -k1,13865:29390699,9157635:261197 -k1,13865:30724064,9157635:261196 -k1,13865:31516758,9157635:261197 -k1,13865:32583029,9157635:0 -) -(1,13866:6764466,10022715:25818563,513147,134348 -k1,13865:9340988,10022715:193633 -k1,13865:11102241,10022715:193632 -(1,13865:11102241,10022715:0,452978,115847 -r1,13940:13219066,10022715:2116825,568825,115847 -k1,13865:11102241,10022715:-2116825 -) -(1,13865:11102241,10022715:2116825,452978,115847 -k1,13865:11102241,10022715:3277 -h1,13865:13215789,10022715:0,411205,112570 -) -k1,13865:13586369,10022715:193633 -k1,13865:14976689,10022715:193633 -k1,13865:16986324,10022715:193632 -k1,13865:20379425,10022715:193633 -k1,13865:22429038,10022715:193633 -k1,13865:24826647,10022715:193633 -k1,13865:26672442,10022715:193632 -k1,13865:27525367,10022715:193633 -k1,13865:28738085,10022715:193633 -k1,13865:30891243,10022715:193632 -k1,13865:31767761,10022715:193633 -k1,13865:32583029,10022715:0 -) -(1,13866:6764466,10887795:25818563,513147,134348 -k1,13865:10262696,10887795:271237 -k1,13865:14335676,10887795:271237 -k1,13865:15798358,10887795:271237 -k1,13865:19497128,10887795:271237 -k1,13865:21623033,10887795:271236 -k1,13865:22703640,10887795:271237 -k1,13865:24787603,10887795:271237 -k1,13865:27903758,10887795:271237 -k1,13865:32583029,10887795:0 -) -(1,13866:6764466,11752875:25818563,513147,134348 -k1,13865:7661560,11752875:237802 -k1,13865:9596089,11752875:237802 -k1,13865:12618516,11752875:237802 -k1,13865:13847878,11752875:237802 -k1,13865:15953456,11752875:237802 -k1,13865:19553255,11752875:237802 -k1,13865:20600427,11752875:237802 -k1,13865:21857313,11752875:237801 -k1,13865:23650284,11752875:237802 -k1,13865:24547378,11752875:237802 -k1,13865:25804265,11752875:237802 -k1,13865:28029774,11752875:237802 -k1,13865:28955049,11752875:237802 -k1,13865:31326048,11752875:237802 -k1,13865:32583029,11752875:0 -) -(1,13866:6764466,12617955:25818563,505283,134348 -g1,13865:9242382,12617955 -h1,13865:10212970,12617955:0,0,0 -g1,13865:10412199,12617955 -g1,13865:11420798,12617955 -g1,13865:13118180,12617955 -h1,13865:14313557,12617955:0,0,0 -k1,13866:32583029,12617955:17929996 -g1,13866:32583029,12617955 -) -v1,13868:6764466,13302810:0,393216,0 -(1,13883:6764466,17434560:25818563,4524966,196608 -g1,13883:6764466,17434560 -g1,13883:6764466,17434560 -g1,13883:6567858,17434560 -(1,13883:6567858,17434560:0,4524966,196608 -r1,13940:32779637,17434560:26211779,4721574,196608 -k1,13883:6567857,17434560:-26211780 -) -(1,13883:6567858,17434560:26211779,4524966,196608 -[1,13883:6764466,17434560:25818563,4328358,0 -(1,13870:6764466,13537247:25818563,431045,79822 -(1,13869:6764466,13537247:0,0,0 -g1,13869:6764466,13537247 -g1,13869:6764466,13537247 -g1,13869:6436786,13537247 -(1,13869:6436786,13537247:0,0,0 -) -g1,13869:6764466,13537247 -) -k1,13870:6764466,13537247:0 -h1,13870:10084006,13537247:0,0,0 -k1,13870:32583030,13537247:22499024 -g1,13870:32583030,13537247 -) -(1,13874:6764466,14353174:25818563,424439,79822 -(1,13872:6764466,14353174:0,0,0 -g1,13872:6764466,14353174 -g1,13872:6764466,14353174 -g1,13872:6436786,14353174 -(1,13872:6436786,14353174:0,0,0 -) -g1,13872:6764466,14353174 -) -g1,13874:7760328,14353174 -g1,13874:9088144,14353174 -h1,13874:10415960,14353174:0,0,0 -k1,13874:32583028,14353174:22167068 -g1,13874:32583028,14353174 -) -(1,13876:6764466,15169101:25818563,431045,79822 -(1,13875:6764466,15169101:0,0,0 -g1,13875:6764466,15169101 -g1,13875:6764466,15169101 -g1,13875:6436786,15169101 -(1,13875:6436786,15169101:0,0,0 -) -g1,13875:6764466,15169101 -) -k1,13876:6764466,15169101:0 -h1,13876:10084006,15169101:0,0,0 -k1,13876:32583030,15169101:22499024 -g1,13876:32583030,15169101 -) -(1,13882:6764466,15985028:25818563,431045,79822 -(1,13878:6764466,15985028:0,0,0 -g1,13878:6764466,15985028 -g1,13878:6764466,15985028 -g1,13878:6436786,15985028 -(1,13878:6436786,15985028:0,0,0 -) -g1,13878:6764466,15985028 -) -g1,13882:7760328,15985028 -g1,13882:8092282,15985028 -g1,13882:9420098,15985028 -g1,13882:14399407,15985028 -g1,13882:14731361,15985028 -g1,13882:18714808,15985028 -g1,13882:19046762,15985028 -g1,13882:19378716,15985028 -g1,13882:19710670,15985028 -g1,13882:20042624,15985028 -g1,13882:23362163,15985028 -g1,13882:23694117,15985028 -g1,13882:24026071,15985028 -g1,13882:24358025,15985028 -g1,13882:24689979,15985028 -g1,13882:25021933,15985028 -g1,13882:25353887,15985028 -h1,13882:27345611,15985028:0,0,0 -k1,13882:32583029,15985028:5237418 -g1,13882:32583029,15985028 -) -(1,13882:6764466,16669883:25818563,431045,112852 -h1,13882:6764466,16669883:0,0,0 -g1,13882:7760328,16669883 -g1,13882:8092282,16669883 -g1,13882:9420098,16669883 -g1,13882:14731361,16669883 -g1,13882:17718946,16669883 -g1,13882:18050900,16669883 -g1,13882:18382854,16669883 -g1,13882:18714808,16669883 -g1,13882:19046762,16669883 -g1,13882:19378716,16669883 -g1,13882:19710670,16669883 -g1,13882:20042624,16669883 -g1,13882:21702394,16669883 -g1,13882:22034348,16669883 -g1,13882:22366302,16669883 -g1,13882:22698256,16669883 -g1,13882:23030210,16669883 -g1,13882:23362164,16669883 -g1,13882:23694118,16669883 -g1,13882:24026072,16669883 -g1,13882:24358026,16669883 -g1,13882:24689980,16669883 -g1,13882:25021934,16669883 -g1,13882:25353888,16669883 -h1,13882:29669289,16669883:0,0,0 -k1,13882:32583029,16669883:2913740 -g1,13882:32583029,16669883 -) -(1,13882:6764466,17354738:25818563,424439,79822 -h1,13882:6764466,17354738:0,0,0 -g1,13882:7760328,17354738 -g1,13882:8092282,17354738 -g1,13882:9420098,17354738 -g1,13882:12739637,17354738 -g1,13882:13071591,17354738 -g1,13882:13403545,17354738 -g1,13882:13735499,17354738 -g1,13882:14067453,17354738 -g1,13882:14399407,17354738 -g1,13882:14731361,17354738 -g1,13882:17055039,17354738 -g1,13882:17386993,17354738 -g1,13882:17718947,17354738 -g1,13882:18050901,17354738 -g1,13882:18382855,17354738 -g1,13882:18714809,17354738 -g1,13882:19046763,17354738 -g1,13882:19378717,17354738 -g1,13882:19710671,17354738 -g1,13882:20042625,17354738 -g1,13882:22698257,17354738 -g1,13882:23030211,17354738 -g1,13882:23362165,17354738 -g1,13882:23694119,17354738 -g1,13882:24026073,17354738 -g1,13882:24358027,17354738 -g1,13882:24689981,17354738 -g1,13882:25021935,17354738 -g1,13882:25353889,17354738 -h1,13882:27677567,17354738:0,0,0 -k1,13882:32583029,17354738:4905462 -g1,13882:32583029,17354738 -) -] -) -g1,13883:32583029,17434560 -g1,13883:6764466,17434560 -g1,13883:6764466,17434560 -g1,13883:32583029,17434560 -g1,13883:32583029,17434560 -) -h1,13883:6764466,17631168:0,0,0 -(1,13887:6764466,18496248:25818563,513147,134348 -h1,13886:6764466,18496248:983040,0,0 -k1,13886:9098343,18496248:154150 -k1,13886:12183918,18496248:154150 -k1,13886:12997360,18496248:154150 -k1,13886:15139217,18496248:154150 -k1,13886:15980840,18496248:154150 -k1,13886:18424818,18496248:154150 -k1,13886:19110465,18496248:154150 -k1,13886:19923907,18496248:154150 -k1,13886:22521239,18496248:154150 -k1,13886:24050990,18496248:154150 -k1,13886:25903178,18496248:154150 -k1,13886:27076413,18496248:154150 -k1,13886:29046566,18496248:154150 -k1,13886:29883601,18496248:154150 -k1,13886:32583029,18496248:0 -) -(1,13887:6764466,19361328:25818563,513147,126483 -k1,13886:10002326,19361328:212063 -k1,13886:11029658,19361328:212064 -k1,13886:12307992,19361328:212063 -k1,13886:14950131,19361328:212064 -k1,13886:16181279,19361328:212063 -k1,13886:18691691,19361328:212064 -k1,13886:22710740,19361328:212063 -k1,13886:24114249,19361328:212064 -k1,13886:28253885,19361328:212063 -k1,13886:29941164,19361328:212064 -k1,13886:30804655,19361328:212063 -k1,13886:31764485,19361328:212064 -k1,13887:32583029,19361328:0 -) -(1,13887:6764466,20226408:25818563,513147,134348 -k1,13886:9188776,20226408:164629 -k1,13886:11088798,20226408:164629 -k1,13886:14000041,20226408:164629 -(1,13886:14000041,20226408:0,452978,115847 -r1,13940:15765155,20226408:1765114,568825,115847 -k1,13886:14000041,20226408:-1765114 -) -(1,13886:14000041,20226408:1765114,452978,115847 -g1,13886:15058454,20226408 -h1,13886:15761878,20226408:0,411205,112570 -) -k1,13886:16103454,20226408:164629 -k1,13886:19303055,20226408:164629 -k1,13886:21164411,20226408:164629 -k1,13886:23618869,20226408:164630 -k1,13886:24314995,20226408:164629 -k1,13886:25765440,20226408:164629 -k1,13886:26285929,20226408:164629 -k1,13886:27688533,20226408:164629 -k1,13886:28512454,20226408:164629 -k1,13886:31278862,20226408:164629 -k1,13886:32583029,20226408:0 -) -(1,13887:6764466,21091488:25818563,513147,134348 -g1,13886:8951402,21091488 -g1,13886:11085254,21091488 -g1,13886:13211241,21091488 -g1,13886:14026508,21091488 -g1,13886:14814250,21091488 -g1,13886:15831368,21091488 -g1,13886:17424548,21091488 -g1,13886:18755584,21091488 -g1,13886:20656783,21091488 -g1,13886:23319510,21091488 -(1,13886:23319510,21091488:0,452978,115847 -r1,13940:25084623,21091488:1765113,568825,115847 -k1,13886:23319510,21091488:-1765113 -) -(1,13886:23319510,21091488:1765113,452978,115847 -k1,13886:23319510,21091488:3277 -h1,13886:25081346,21091488:0,411205,112570 -) -g1,13886:25283852,21091488 -g1,13886:27474065,21091488 -g1,13886:28692379,21091488 -k1,13887:32583029,21091488:906796 -g1,13887:32583029,21091488 -) -v1,13889:6764466,21776343:0,393216,0 -(1,13914:6764466,35260343:25818563,13877216,196608 -g1,13914:6764466,35260343 -g1,13914:6764466,35260343 -g1,13914:6567858,35260343 -(1,13914:6567858,35260343:0,13877216,196608 -r1,13940:32779637,35260343:26211779,14073824,196608 -k1,13914:6567857,35260343:-26211780 -) -(1,13914:6567858,35260343:26211779,13877216,196608 -[1,13914:6764466,35260343:25818563,13680608,0 -(1,13891:6764466,22010780:25818563,431045,112852 -(1,13890:6764466,22010780:0,0,0 -g1,13890:6764466,22010780 -g1,13890:6764466,22010780 -g1,13890:6436786,22010780 -(1,13890:6436786,22010780:0,0,0 -) -g1,13890:6764466,22010780 -) -k1,13891:6764466,22010780:0 -g1,13891:9752052,22010780 -g1,13891:12407684,22010780 -g1,13891:13071592,22010780 -g1,13891:15063316,22010780 -g1,13891:18382855,22010780 -g1,13891:19046763,22010780 -g1,13891:21370441,22010780 -g1,13891:24026073,22010780 -g1,13891:24689981,22010780 -h1,13891:25353889,22010780:0,0,0 -k1,13891:32583029,22010780:7229140 -g1,13891:32583029,22010780 -) -(1,13913:6764466,22826707:25818563,431045,79822 -(1,13893:6764466,22826707:0,0,0 -g1,13893:6764466,22826707 -g1,13893:6764466,22826707 -g1,13893:6436786,22826707 -(1,13893:6436786,22826707:0,0,0 -) -g1,13893:6764466,22826707 -) -g1,13913:7760328,22826707 -g1,13913:8092282,22826707 -g1,13913:8756190,22826707 -g1,13913:13071591,22826707 -g1,13913:13735499,22826707 -g1,13913:15727223,22826707 -g1,13913:17055039,22826707 -g1,13913:19046763,22826707 -g1,13913:21370441,22826707 -h1,13913:22698257,22826707:0,0,0 -k1,13913:32583029,22826707:9884772 -g1,13913:32583029,22826707 -) -(1,13913:6764466,23511562:25818563,431045,79822 -h1,13913:6764466,23511562:0,0,0 -g1,13913:7760328,23511562 -g1,13913:8092282,23511562 -g1,13913:8756190,23511562 -g1,13913:12075729,23511562 -g1,13913:12407683,23511562 -g1,13913:12739637,23511562 -g1,13913:13071591,23511562 -g1,13913:13735499,23511562 -g1,13913:15727223,23511562 -g1,13913:17055039,23511562 -g1,13913:19378717,23511562 -g1,13913:21038487,23511562 -g1,13913:23030211,23511562 -h1,13913:24026073,23511562:0,0,0 -k1,13913:32583029,23511562:8556956 -g1,13913:32583029,23511562 -) -(1,13913:6764466,24196417:25818563,431045,79822 -h1,13913:6764466,24196417:0,0,0 -g1,13913:7760328,24196417 -g1,13913:8092282,24196417 -g1,13913:8756190,24196417 -g1,13913:11411822,24196417 -g1,13913:11743776,24196417 -g1,13913:12075730,24196417 -g1,13913:12407684,24196417 -g1,13913:12739638,24196417 -g1,13913:13071592,24196417 -g1,13913:13735500,24196417 -g1,13913:15727224,24196417 -g1,13913:17055040,24196417 -g1,13913:19378718,24196417 -g1,13913:21038488,24196417 -g1,13913:22366304,24196417 -h1,13913:23362166,24196417:0,0,0 -k1,13913:32583029,24196417:9220863 -g1,13913:32583029,24196417 -) -(1,13913:6764466,24881272:25818563,431045,33029 -h1,13913:6764466,24881272:0,0,0 -g1,13913:7760328,24881272 -g1,13913:8092282,24881272 -g1,13913:8756190,24881272 -g1,13913:10415960,24881272 -g1,13913:10747914,24881272 -g1,13913:11079868,24881272 -g1,13913:11411822,24881272 -g1,13913:11743776,24881272 -g1,13913:12075730,24881272 -g1,13913:12407684,24881272 -g1,13913:12739638,24881272 -g1,13913:13071592,24881272 -g1,13913:13735500,24881272 -g1,13913:15063316,24881272 -h1,13913:15395270,24881272:0,0,0 -k1,13913:32583030,24881272:17187760 -g1,13913:32583030,24881272 -) -(1,13913:6764466,25566127:25818563,431045,79822 -h1,13913:6764466,25566127:0,0,0 -g1,13913:7760328,25566127 -g1,13913:8092282,25566127 -g1,13913:8756190,25566127 -g1,13913:13735499,25566127 -g1,13913:15727223,25566127 -g1,13913:17055039,25566127 -g1,13913:19378717,25566127 -g1,13913:21370441,25566127 -g1,13913:23362165,25566127 -h1,13913:24358027,25566127:0,0,0 -k1,13913:32583029,25566127:8225002 -g1,13913:32583029,25566127 -) -(1,13913:6764466,26250982:25818563,431045,112852 -h1,13913:6764466,26250982:0,0,0 -g1,13913:7760328,26250982 -g1,13913:8092282,26250982 -g1,13913:8756190,26250982 -g1,13913:11079868,26250982 -g1,13913:11411822,26250982 -g1,13913:11743776,26250982 -g1,13913:12075730,26250982 -g1,13913:12407684,26250982 -g1,13913:12739638,26250982 -g1,13913:13071592,26250982 -g1,13913:13735500,26250982 -g1,13913:15063316,26250982 -g1,13913:17055040,26250982 -g1,13913:17718948,26250982 -h1,13913:18050902,26250982:0,0,0 -k1,13913:32583029,26250982:14532127 -g1,13913:32583029,26250982 -) -(1,13913:6764466,26935837:25818563,431045,106246 -h1,13913:6764466,26935837:0,0,0 -g1,13913:7760328,26935837 -g1,13913:8092282,26935837 -g1,13913:8756190,26935837 -g1,13913:9752052,26935837 -g1,13913:10084006,26935837 -g1,13913:10415960,26935837 -g1,13913:10747914,26935837 -g1,13913:11079868,26935837 -g1,13913:11411822,26935837 -g1,13913:11743776,26935837 -g1,13913:12075730,26935837 -g1,13913:12407684,26935837 -g1,13913:12739638,26935837 -g1,13913:13071592,26935837 -g1,13913:15063316,26935837 -g1,13913:16059178,26935837 -h1,13913:16391132,26935837:0,0,0 -k1,13913:32583029,26935837:16191897 -g1,13913:32583029,26935837 -) -(1,13913:6764466,27620692:25818563,431045,106246 -h1,13913:6764466,27620692:0,0,0 -g1,13913:7760328,27620692 -g1,13913:8092282,27620692 -g1,13913:8424236,27620692 -g1,13913:9752052,27620692 -g1,13913:10747914,27620692 -g1,13913:11079868,27620692 -g1,13913:11411822,27620692 -g1,13913:12075730,27620692 -g1,13913:13403546,27620692 -g1,13913:15727224,27620692 -g1,13913:17386994,27620692 -g1,13913:19710672,27620692 -g1,13913:21702396,27620692 -h1,13913:22698258,27620692:0,0,0 -k1,13913:32583029,27620692:9884771 -g1,13913:32583029,27620692 -) -(1,13913:6764466,28305547:25818563,431045,106246 -h1,13913:6764466,28305547:0,0,0 -g1,13913:7760328,28305547 -g1,13913:8092282,28305547 -g1,13913:8424236,28305547 -g1,13913:9752052,28305547 -g1,13913:12075730,28305547 -g1,13913:13403546,28305547 -g1,13913:15395270,28305547 -g1,13913:17055040,28305547 -h1,13913:18382856,28305547:0,0,0 -k1,13913:32583029,28305547:14200173 -g1,13913:32583029,28305547 -) -(1,13913:6764466,28990402:25818563,431045,106246 -h1,13913:6764466,28990402:0,0,0 -g1,13913:7760328,28990402 -g1,13913:8092282,28990402 -g1,13913:8424236,28990402 -g1,13913:9752052,28990402 -g1,13913:12075730,28990402 -g1,13913:13403546,28990402 -g1,13913:15395270,28990402 -g1,13913:16059178,28990402 -h1,13913:16391132,28990402:0,0,0 -k1,13913:32583029,28990402:16191897 -g1,13913:32583029,28990402 -) -(1,13913:6764466,29675257:25818563,431045,33029 -h1,13913:6764466,29675257:0,0,0 -g1,13913:7760328,29675257 -g1,13913:8092282,29675257 -g1,13913:8424236,29675257 -g1,13913:9752052,29675257 -g1,13913:11079868,29675257 -g1,13913:11411822,29675257 -g1,13913:12075730,29675257 -g1,13913:13403546,29675257 -k1,13913:13403546,29675257:0 -h1,13913:15063316,29675257:0,0,0 -k1,13913:32583028,29675257:17519712 -g1,13913:32583028,29675257 -) -(1,13913:6764466,30360112:25818563,431045,33029 -h1,13913:6764466,30360112:0,0,0 -g1,13913:7760328,30360112 -g1,13913:8092282,30360112 -g1,13913:8424236,30360112 -g1,13913:9752052,30360112 -g1,13913:11411822,30360112 -g1,13913:12075730,30360112 -g1,13913:13403546,30360112 -h1,13913:13735500,30360112:0,0,0 -k1,13913:32583028,30360112:18847528 -g1,13913:32583028,30360112 -) -(1,13913:6764466,31044967:25818563,431045,33029 -h1,13913:6764466,31044967:0,0,0 -g1,13913:7760328,31044967 -g1,13913:8092282,31044967 -g1,13913:8756190,31044967 -g1,13913:12739637,31044967 -g1,13913:13071591,31044967 -g1,13913:13735499,31044967 -g1,13913:15063315,31044967 -h1,13913:15727223,31044967:0,0,0 -k1,13913:32583029,31044967:16855806 -g1,13913:32583029,31044967 -) -(1,13913:6764466,31729822:25818563,431045,79822 -h1,13913:6764466,31729822:0,0,0 -g1,13913:7760328,31729822 -g1,13913:8092282,31729822 -g1,13913:8756190,31729822 -g1,13913:11411822,31729822 -g1,13913:11743776,31729822 -g1,13913:12075730,31729822 -g1,13913:12407684,31729822 -g1,13913:12739638,31729822 -g1,13913:13071592,31729822 -g1,13913:13735500,31729822 -g1,13913:15727224,31729822 -h1,13913:17718948,31729822:0,0,0 -k1,13913:32583029,31729822:14864081 -g1,13913:32583029,31729822 -) -(1,13913:6764466,32414677:25818563,431045,112852 -h1,13913:6764466,32414677:0,0,0 -g1,13913:7760328,32414677 -g1,13913:8092282,32414677 -g1,13913:8756190,32414677 -g1,13913:10415960,32414677 -g1,13913:10747914,32414677 -g1,13913:11079868,32414677 -g1,13913:11411822,32414677 -g1,13913:11743776,32414677 -g1,13913:12075730,32414677 -g1,13913:12407684,32414677 -g1,13913:12739638,32414677 -g1,13913:13071592,32414677 -g1,13913:13735500,32414677 -g1,13913:16723085,32414677 -g1,13913:20374578,32414677 -g1,13913:21038486,32414677 -g1,13913:22698256,32414677 -g1,13913:23362164,32414677 -g1,13913:24026072,32414677 -g1,13913:24689980,32414677 -g1,13913:27013658,32414677 -g1,13913:28673428,32414677 -g1,13913:29337336,32414677 -h1,13913:30997106,32414677:0,0,0 -k1,13913:32583029,32414677:1585923 -g1,13913:32583029,32414677 -) -(1,13913:6764466,33099532:25818563,431045,112852 -h1,13913:6764466,33099532:0,0,0 -g1,13913:7760328,33099532 -g1,13913:8092282,33099532 -g1,13913:8756190,33099532 -g1,13913:10747914,33099532 -g1,13913:11079868,33099532 -g1,13913:11411822,33099532 -g1,13913:11743776,33099532 -g1,13913:12075730,33099532 -g1,13913:12407684,33099532 -g1,13913:12739638,33099532 -g1,13913:13071592,33099532 -g1,13913:16059177,33099532 -g1,13913:19046763,33099532 -g1,13913:22366303,33099532 -g1,13913:22698257,33099532 -g1,13913:25685842,33099532 -g1,13913:27345612,33099532 -g1,13913:28009520,33099532 -g1,13913:28673428,33099532 -g1,13913:29337336,33099532 -h1,13913:30997106,33099532:0,0,0 -k1,13913:32583029,33099532:1585923 -g1,13913:32583029,33099532 -) -(1,13913:6764466,33784387:25818563,431045,33029 -h1,13913:6764466,33784387:0,0,0 -g1,13913:7760328,33784387 -g1,13913:8092282,33784387 -g1,13913:8756190,33784387 -g1,13913:10747914,33784387 -g1,13913:11079868,33784387 -g1,13913:11411822,33784387 -g1,13913:11743776,33784387 -g1,13913:12075730,33784387 -g1,13913:12407684,33784387 -g1,13913:12739638,33784387 -g1,13913:13071592,33784387 -g1,13913:18050901,33784387 -g1,13913:19046763,33784387 -g1,13913:20706533,33784387 -g1,13913:21702395,33784387 -g1,13913:22034349,33784387 -g1,13913:22698257,33784387 -h1,13913:26017796,33784387:0,0,0 -k1,13913:32583029,33784387:6565233 -g1,13913:32583029,33784387 -) -(1,13913:6764466,34469242:25818563,431045,79822 -h1,13913:6764466,34469242:0,0,0 -g1,13913:7760328,34469242 -g1,13913:8092282,34469242 -g1,13913:8424236,34469242 -g1,13913:9752052,34469242 -g1,13913:11411822,34469242 -g1,13913:12075730,34469242 -g1,13913:13403546,34469242 -g1,13913:15727224,34469242 -g1,13913:16391132,34469242 -g1,13913:17386994,34469242 -g1,13913:18050902,34469242 -g1,13913:19046764,34469242 -g1,13913:20042626,34469242 -h1,13913:21038488,34469242:0,0,0 -k1,13913:32583029,34469242:11544541 -g1,13913:32583029,34469242 -) -(1,13913:6764466,35154097:25818563,431045,106246 -h1,13913:6764466,35154097:0,0,0 -g1,13913:7760328,35154097 -g1,13913:8092282,35154097 -g1,13913:8424236,35154097 -g1,13913:9752052,35154097 -g1,13913:12075730,35154097 -g1,13913:13403546,35154097 -g1,13913:15727224,35154097 -g1,13913:16391132,35154097 -g1,13913:17055040,35154097 -g1,13913:17718948,35154097 -g1,13913:18382856,35154097 -g1,13913:19046764,35154097 -h1,13913:20042626,35154097:0,0,0 -k1,13913:32583029,35154097:12540403 -g1,13913:32583029,35154097 -) -] -) -g1,13914:32583029,35260343 -g1,13914:6764466,35260343 -g1,13914:6764466,35260343 -g1,13914:32583029,35260343 -g1,13914:32583029,35260343 -) -h1,13914:6764466,35456951:0,0,0 -(1,13918:6764466,36322031:25818563,513147,134348 -h1,13917:6764466,36322031:983040,0,0 -k1,13917:10559198,36322031:244647 -(1,13917:10559198,36322031:0,452978,115847 -r1,13940:11972599,36322031:1413401,568825,115847 -k1,13917:10559198,36322031:-1413401 -) -(1,13917:10559198,36322031:1413401,452978,115847 -k1,13917:10559198,36322031:3277 -h1,13917:11969322,36322031:0,411205,112570 -) -k1,13917:12217246,36322031:244647 -k1,13917:15163943,36322031:244648 -k1,13917:16427675,36322031:244647 -k1,13917:19367818,36322031:244647 -k1,13917:20712159,36322031:244647 -k1,13917:22148251,36322031:244647 -k1,13917:25795527,36322031:244647 -k1,13917:27553401,36322031:244648 -k1,13917:28449476,36322031:244647 -k1,13917:30623503,36322031:244647 -k1,13918:32583029,36322031:0 -) -(1,13918:6764466,37187111:25818563,459977,115847 -(1,13917:6764466,37187111:0,459977,115847 -r1,13940:7826155,37187111:1061689,575824,115847 -k1,13917:6764466,37187111:-1061689 -) -(1,13917:6764466,37187111:1061689,459977,115847 -k1,13917:6764466,37187111:3277 -h1,13917:7822878,37187111:0,411205,112570 -) -k1,13918:32583029,37187111:24704446 -g1,13918:32583029,37187111 -) -v1,13920:6764466,37871966:0,393216,0 -(1,13927:6764466,39035182:25818563,1556432,196608 -g1,13927:6764466,39035182 -g1,13927:6764466,39035182 -g1,13927:6567858,39035182 -(1,13927:6567858,39035182:0,1556432,196608 -r1,13940:32779637,39035182:26211779,1753040,196608 -k1,13927:6567857,39035182:-26211780 -) -(1,13927:6567858,39035182:26211779,1556432,196608 -[1,13927:6764466,39035182:25818563,1359824,0 -(1,13922:6764466,38106403:25818563,431045,79822 -(1,13921:6764466,38106403:0,0,0 -g1,13921:6764466,38106403 -g1,13921:6764466,38106403 -g1,13921:6436786,38106403 -(1,13921:6436786,38106403:0,0,0 -) -g1,13921:6764466,38106403 -) -k1,13922:6764466,38106403:0 -h1,13922:11079868,38106403:0,0,0 -k1,13922:32583028,38106403:21503160 -g1,13922:32583028,38106403 -) -(1,13926:6764466,38922330:25818563,431045,112852 -(1,13924:6764466,38922330:0,0,0 -g1,13924:6764466,38922330 -g1,13924:6764466,38922330 -g1,13924:6436786,38922330 -(1,13924:6436786,38922330:0,0,0 -) -g1,13924:6764466,38922330 -) -g1,13926:7760328,38922330 -g1,13926:8092282,38922330 -g1,13926:11079867,38922330 -g1,13926:14731360,38922330 -g1,13926:15395268,38922330 -g1,13926:17055038,38922330 -g1,13926:17718946,38922330 -g1,13926:18382854,38922330 -g1,13926:19046762,38922330 -g1,13926:21370440,38922330 -g1,13926:23030210,38922330 -g1,13926:23694118,38922330 -h1,13926:25353888,38922330:0,0,0 -k1,13926:32583029,38922330:7229141 -g1,13926:32583029,38922330 -) -] -) -g1,13927:32583029,39035182 -g1,13927:6764466,39035182 -g1,13927:6764466,39035182 -g1,13927:32583029,39035182 -g1,13927:32583029,39035182 -) -h1,13927:6764466,39231790:0,0,0 -] -g1,13929:32583029,39231790 -) -h1,13929:6630773,39231790:0,0,0 -(1,13931:6630773,41348608:25952256,564462,139132 -(1,13931:6630773,41348608:2450326,534184,12975 -g1,13931:6630773,41348608 -g1,13931:9081099,41348608 -) -g1,13931:12446963,41348608 -g1,13931:13416569,41348608 -g1,13931:16941751,41348608 -k1,13931:32583029,41348608:12829063 -g1,13931:32583029,41348608 -) -(1,13939:6630773,42606904:25952256,505283,134348 -k1,13936:7511112,42606904:252504 -k1,13936:10198225,42606904:252450 -k1,13936:11469814,42606904:252504 -k1,13936:15488016,42606904:252503 -k1,13936:18251860,42606904:252504 -k1,13936:19035861,42606904:252504 -k1,13936:22908573,42606904:252503 -k1,13936:24352522,42606904:252504 -k1,13936:25221064,42606904:252504 -k1,13936:26062080,42606904:252503 -k1,13936:27936600,42606904:252504 -k1,13936:28936870,42606904:252504 -k1,13936:29545233,42606904:252503 -(1,13936:29545233,42606904:0,459977,115847 -r1,13940:31662058,42606904:2116825,575824,115847 -k1,13936:29545233,42606904:-2116825 -) -(1,13936:29545233,42606904:2116825,459977,115847 -k1,13936:29545233,42606904:3277 -h1,13936:31658781,42606904:0,411205,112570 -) -k1,13936:31914562,42606904:252504 -k1,13939:32583029,42606904:0 -) -(1,13939:6630773,43471984:25952256,513147,134348 -(1,13936:6630773,43471984:0,452978,115847 -r1,13940:9099310,43471984:2468537,568825,115847 -k1,13936:6630773,43471984:-2468537 -) -(1,13936:6630773,43471984:2468537,452978,115847 -k1,13936:6630773,43471984:3277 -h1,13936:9096033,43471984:0,411205,112570 -) -k1,13936:9252070,43471984:152760 -k1,13936:11298820,43471984:152760 -k1,13936:12683658,43471984:152761 -k1,13936:15115105,43471984:152760 -h1,13936:16484152,43471984:0,0,0 -k1,13936:16636912,43471984:152760 -k1,13936:17599042,43471984:152760 -k1,13936:19249955,43471984:152760 -h1,13936:20046873,43471984:0,0,0 -k1,13936:20580398,43471984:152761 -k1,13936:21551047,43471984:152760 -k1,13936:22059667,43471984:152760 -k1,13936:24025153,43471984:152760 -k1,13936:26339291,43471984:152761 -k1,13936:27511136,43471984:152760 -k1,13936:29598519,43471984:152760 -k1,13936:32583029,43471984:0 -) -(1,13939:6630773,44337064:25952256,513147,134348 -k1,13936:7350029,44337064:187759 -k1,13936:8556872,44337064:187758 -k1,13936:10398104,44337064:187759 -k1,13936:11272024,44337064:187758 -k1,13936:12407434,44337064:187759 -k1,13936:14407918,44337064:187758 -k1,13936:15787122,44337064:187759 -k1,13936:19547904,44337064:187759 -k1,13936:23052439,44337064:187758 -k1,13936:25432377,44337064:187759 -h1,13936:26402965,44337064:0,0,0 -k1,13936:26971487,44337064:187758 -k1,13937:26971487,44337064:0 -k1,13937:28355933,44337064:187759 -(1,13937:28355933,44337064:0,414482,115847 -r1,13940:32583029,44337064:4227096,530329,115847 -k1,13937:28355933,44337064:-4227096 -) -(1,13937:28355933,44337064:4227096,414482,115847 -k1,13937:28355933,44337064:3277 -h1,13937:32579752,44337064:0,411205,112570 -) -k1,13937:32583029,44337064:0 -) -] -(1,13940:32583029,45706769:0,0,0 -g1,13940:32583029,45706769 -) -) -] -(1,13940:6630773,47279633:25952256,0,0 -h1,13940:6630773,47279633:25952256,0,0 -) -] -(1,13940:4262630,4025873:0,0,0 -[1,13940:-473656,4025873:0,0,0 -(1,13940:-473656,-710413:0,0,0 -(1,13940:-473656,-710413:0,0,0 -g1,13940:-473656,-710413 -) -g1,13940:-473656,-710413 +) +) +) +] +[1,13938:3078558,4812305:0,0,0 +(1,13938:3078558,49800853:0,16384,2228224 +g1,13938:29030814,49800853 +g1,13938:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,13938:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,13938:37855564,49800853:1179648,16384,0 +) +) +k1,13938:3078556,49800853:-34777008 +) +] +g1,13938:6630773,4812305 +k1,13938:19575446,4812305:11749296 +g1,13938:21198117,4812305 +g1,13938:21985204,4812305 +g1,13938:24539797,4812305 +g1,13938:25949476,4812305 +g1,13938:28728857,4812305 +g1,13938:29852144,4812305 +) +) +] +[1,13938:6630773,45706769:25952256,40108032,0 +(1,13938:6630773,45706769:25952256,40108032,0 +(1,13938:6630773,45706769:0,0,0 +g1,13938:6630773,45706769 +) +[1,13938:6630773,45706769:25952256,40108032,0 +v1,13862:6630773,6254097:0,393216,0 +(1,13927:6630773,39231790:25952256,33370909,0 +g1,13927:6630773,39231790 +g1,13927:6237557,39231790 +r1,13938:6368629,39231790:131072,33370909,0 +g1,13927:6567858,39231790 +g1,13927:6764466,39231790 +[1,13927:6764466,39231790:25818563,33370909,0 +(1,13864:6764466,6562395:25818563,701514,196608 +(1,13862:6764466,6562395:0,701514,196608 +r1,13938:7761522,6562395:997056,898122,196608 +k1,13862:6764466,6562395:-997056 +) +(1,13862:6764466,6562395:997056,701514,196608 +) +k1,13862:7956439,6562395:194917 +k1,13862:8284119,6562395:327680 +k1,13862:8284119,6562395:0 +k1,13863:9675722,6562395:194916 +k1,13863:12160467,6562395:194917 +k1,13863:15134111,6562395:194917 +k1,13863:16090556,6562395:194917 +k1,13863:18273179,6562395:194916 +k1,13863:20402719,6562395:194917 +k1,13863:23623433,6562395:194917 +k1,13863:26190098,6562395:194917 +k1,13863:27404099,6562395:194916 +k1,13863:28688880,6562395:194917 +k1,13863:32583029,6562395:0 +) +(1,13864:6764466,7427475:25818563,513147,134348 +k1,13863:9943430,7427475:198387 +k1,13863:11160902,7427475:198387 +k1,13863:12748652,7427475:198387 +k1,13863:13598467,7427475:198387 +k1,13863:15682325,7427475:198387 +k1,13863:16899797,7427475:198387 +k1,13863:19085890,7427475:198386 +k1,13863:20491450,7427475:198387 +k1,13863:21377310,7427475:198387 +k1,13863:22400795,7427475:198387 +k1,13863:24285423,7427475:198387 +k1,13863:27415235,7427475:198387 +k1,13863:30830129,7427475:198387 +k1,13863:31384376,7427475:198387 +k1,13864:32583029,7427475:0 +) +(1,13864:6764466,8292555:25818563,513147,134348 +k1,13863:8056742,8292555:267293 +k1,13863:9491231,8292555:267293 +k1,13863:10386360,8292555:267294 +k1,13863:12255353,8292555:267293 +k1,13863:14393699,8292555:267293 +k1,13863:15680077,8292555:267293 +k1,13863:17502539,8292555:267293 +k1,13863:18429125,8292555:267294 +k1,13863:19715503,8292555:267293 +k1,13863:22272624,8292555:267293 +k1,13863:25318644,8292555:267293 +k1,13863:26347466,8292555:267294 +k1,13863:28602466,8292555:267293 +k1,13863:29557232,8292555:267293 +k1,13863:32583029,8292555:0 +) +(1,13864:6764466,9157635:25818563,513147,134348 +k1,13863:9069076,9157635:261197 +k1,13863:9946310,9157635:261196 +k1,13863:11945522,9157635:261197 +k1,13863:13600670,9157635:261197 +k1,13863:14880952,9157635:261197 +k1,13863:16880163,9157635:261196 +k1,13863:17800652,9157635:261197 +k1,13863:19080934,9157635:261197 +k1,13863:22037627,9157635:261197 +(1,13863:22244721,9157635:0,452978,115847 +r1,13938:23658122,9157635:1413401,568825,115847 +k1,13863:22244721,9157635:-1413401 +) +(1,13863:22244721,9157635:1413401,452978,115847 +k1,13863:22244721,9157635:3277 +h1,13863:23654845,9157635:0,411205,112570 +) +k1,13863:23919318,9157635:261196 +k1,13863:24796553,9157635:261197 +k1,13863:26260991,9157635:261197 +k1,13863:29390699,9157635:261197 +k1,13863:30724064,9157635:261196 +k1,13863:31516758,9157635:261197 +k1,13863:32583029,9157635:0 +) +(1,13864:6764466,10022715:25818563,513147,134348 +k1,13863:9340988,10022715:193633 +k1,13863:11102241,10022715:193632 +(1,13863:11102241,10022715:0,452978,115847 +r1,13938:13219066,10022715:2116825,568825,115847 +k1,13863:11102241,10022715:-2116825 +) +(1,13863:11102241,10022715:2116825,452978,115847 +k1,13863:11102241,10022715:3277 +h1,13863:13215789,10022715:0,411205,112570 +) +k1,13863:13586369,10022715:193633 +k1,13863:14976689,10022715:193633 +k1,13863:16986324,10022715:193632 +k1,13863:20379425,10022715:193633 +k1,13863:22429038,10022715:193633 +k1,13863:24826647,10022715:193633 +k1,13863:26672442,10022715:193632 +k1,13863:27525367,10022715:193633 +k1,13863:28738085,10022715:193633 +k1,13863:30891243,10022715:193632 +k1,13863:31767761,10022715:193633 +k1,13863:32583029,10022715:0 +) +(1,13864:6764466,10887795:25818563,513147,134348 +k1,13863:10262696,10887795:271237 +k1,13863:14335676,10887795:271237 +k1,13863:15798358,10887795:271237 +k1,13863:19497128,10887795:271237 +k1,13863:21623033,10887795:271236 +k1,13863:22703640,10887795:271237 +k1,13863:24787603,10887795:271237 +k1,13863:27903758,10887795:271237 +k1,13863:32583029,10887795:0 +) +(1,13864:6764466,11752875:25818563,513147,134348 +k1,13863:7661560,11752875:237802 +k1,13863:9596089,11752875:237802 +k1,13863:12618516,11752875:237802 +k1,13863:13847878,11752875:237802 +k1,13863:15953456,11752875:237802 +k1,13863:19553255,11752875:237802 +k1,13863:20600427,11752875:237802 +k1,13863:21857313,11752875:237801 +k1,13863:23650284,11752875:237802 +k1,13863:24547378,11752875:237802 +k1,13863:25804265,11752875:237802 +k1,13863:28029774,11752875:237802 +k1,13863:28955049,11752875:237802 +k1,13863:31326048,11752875:237802 +k1,13863:32583029,11752875:0 +) +(1,13864:6764466,12617955:25818563,505283,134348 +g1,13863:9242382,12617955 +h1,13863:10212970,12617955:0,0,0 +g1,13863:10412199,12617955 +g1,13863:11420798,12617955 +g1,13863:13118180,12617955 +h1,13863:14313557,12617955:0,0,0 +k1,13864:32583029,12617955:17929996 +g1,13864:32583029,12617955 +) +v1,13866:6764466,13302810:0,393216,0 +(1,13881:6764466,17434560:25818563,4524966,196608 +g1,13881:6764466,17434560 +g1,13881:6764466,17434560 +g1,13881:6567858,17434560 +(1,13881:6567858,17434560:0,4524966,196608 +r1,13938:32779637,17434560:26211779,4721574,196608 +k1,13881:6567857,17434560:-26211780 +) +(1,13881:6567858,17434560:26211779,4524966,196608 +[1,13881:6764466,17434560:25818563,4328358,0 +(1,13868:6764466,13537247:25818563,431045,79822 +(1,13867:6764466,13537247:0,0,0 +g1,13867:6764466,13537247 +g1,13867:6764466,13537247 +g1,13867:6436786,13537247 +(1,13867:6436786,13537247:0,0,0 +) +g1,13867:6764466,13537247 +) +k1,13868:6764466,13537247:0 +h1,13868:10084006,13537247:0,0,0 +k1,13868:32583030,13537247:22499024 +g1,13868:32583030,13537247 +) +(1,13872:6764466,14353174:25818563,424439,79822 +(1,13870:6764466,14353174:0,0,0 +g1,13870:6764466,14353174 +g1,13870:6764466,14353174 +g1,13870:6436786,14353174 +(1,13870:6436786,14353174:0,0,0 +) +g1,13870:6764466,14353174 +) +g1,13872:7760328,14353174 +g1,13872:9088144,14353174 +h1,13872:10415960,14353174:0,0,0 +k1,13872:32583028,14353174:22167068 +g1,13872:32583028,14353174 +) +(1,13874:6764466,15169101:25818563,431045,79822 +(1,13873:6764466,15169101:0,0,0 +g1,13873:6764466,15169101 +g1,13873:6764466,15169101 +g1,13873:6436786,15169101 +(1,13873:6436786,15169101:0,0,0 +) +g1,13873:6764466,15169101 +) +k1,13874:6764466,15169101:0 +h1,13874:10084006,15169101:0,0,0 +k1,13874:32583030,15169101:22499024 +g1,13874:32583030,15169101 +) +(1,13880:6764466,15985028:25818563,431045,79822 +(1,13876:6764466,15985028:0,0,0 +g1,13876:6764466,15985028 +g1,13876:6764466,15985028 +g1,13876:6436786,15985028 +(1,13876:6436786,15985028:0,0,0 +) +g1,13876:6764466,15985028 +) +g1,13880:7760328,15985028 +g1,13880:8092282,15985028 +g1,13880:9420098,15985028 +g1,13880:14399407,15985028 +g1,13880:14731361,15985028 +g1,13880:18714808,15985028 +g1,13880:19046762,15985028 +g1,13880:19378716,15985028 +g1,13880:19710670,15985028 +g1,13880:20042624,15985028 +g1,13880:23362163,15985028 +g1,13880:23694117,15985028 +g1,13880:24026071,15985028 +g1,13880:24358025,15985028 +g1,13880:24689979,15985028 +g1,13880:25021933,15985028 +g1,13880:25353887,15985028 +h1,13880:27345611,15985028:0,0,0 +k1,13880:32583029,15985028:5237418 +g1,13880:32583029,15985028 +) +(1,13880:6764466,16669883:25818563,431045,112852 +h1,13880:6764466,16669883:0,0,0 +g1,13880:7760328,16669883 +g1,13880:8092282,16669883 +g1,13880:9420098,16669883 +g1,13880:14731361,16669883 +g1,13880:17718946,16669883 +g1,13880:18050900,16669883 +g1,13880:18382854,16669883 +g1,13880:18714808,16669883 +g1,13880:19046762,16669883 +g1,13880:19378716,16669883 +g1,13880:19710670,16669883 +g1,13880:20042624,16669883 +g1,13880:21702394,16669883 +g1,13880:22034348,16669883 +g1,13880:22366302,16669883 +g1,13880:22698256,16669883 +g1,13880:23030210,16669883 +g1,13880:23362164,16669883 +g1,13880:23694118,16669883 +g1,13880:24026072,16669883 +g1,13880:24358026,16669883 +g1,13880:24689980,16669883 +g1,13880:25021934,16669883 +g1,13880:25353888,16669883 +h1,13880:29669289,16669883:0,0,0 +k1,13880:32583029,16669883:2913740 +g1,13880:32583029,16669883 +) +(1,13880:6764466,17354738:25818563,424439,79822 +h1,13880:6764466,17354738:0,0,0 +g1,13880:7760328,17354738 +g1,13880:8092282,17354738 +g1,13880:9420098,17354738 +g1,13880:12739637,17354738 +g1,13880:13071591,17354738 +g1,13880:13403545,17354738 +g1,13880:13735499,17354738 +g1,13880:14067453,17354738 +g1,13880:14399407,17354738 +g1,13880:14731361,17354738 +g1,13880:17055039,17354738 +g1,13880:17386993,17354738 +g1,13880:17718947,17354738 +g1,13880:18050901,17354738 +g1,13880:18382855,17354738 +g1,13880:18714809,17354738 +g1,13880:19046763,17354738 +g1,13880:19378717,17354738 +g1,13880:19710671,17354738 +g1,13880:20042625,17354738 +g1,13880:22698257,17354738 +g1,13880:23030211,17354738 +g1,13880:23362165,17354738 +g1,13880:23694119,17354738 +g1,13880:24026073,17354738 +g1,13880:24358027,17354738 +g1,13880:24689981,17354738 +g1,13880:25021935,17354738 +g1,13880:25353889,17354738 +h1,13880:27677567,17354738:0,0,0 +k1,13880:32583029,17354738:4905462 +g1,13880:32583029,17354738 +) +] +) +g1,13881:32583029,17434560 +g1,13881:6764466,17434560 +g1,13881:6764466,17434560 +g1,13881:32583029,17434560 +g1,13881:32583029,17434560 +) +h1,13881:6764466,17631168:0,0,0 +(1,13885:6764466,18496248:25818563,513147,134348 +h1,13884:6764466,18496248:983040,0,0 +k1,13884:9098343,18496248:154150 +k1,13884:12183918,18496248:154150 +k1,13884:12997360,18496248:154150 +k1,13884:15139217,18496248:154150 +k1,13884:15980840,18496248:154150 +k1,13884:18424818,18496248:154150 +k1,13884:19110465,18496248:154150 +k1,13884:19923907,18496248:154150 +k1,13884:22521239,18496248:154150 +k1,13884:24050990,18496248:154150 +k1,13884:25903178,18496248:154150 +k1,13884:27076413,18496248:154150 +k1,13884:29046566,18496248:154150 +k1,13884:29883601,18496248:154150 +k1,13884:32583029,18496248:0 +) +(1,13885:6764466,19361328:25818563,513147,126483 +k1,13884:10002326,19361328:212063 +k1,13884:11029658,19361328:212064 +k1,13884:12307992,19361328:212063 +k1,13884:14950131,19361328:212064 +k1,13884:16181279,19361328:212063 +k1,13884:18691691,19361328:212064 +k1,13884:22710740,19361328:212063 +k1,13884:24114249,19361328:212064 +k1,13884:28253885,19361328:212063 +k1,13884:29941164,19361328:212064 +k1,13884:30804655,19361328:212063 +k1,13884:31764485,19361328:212064 +k1,13885:32583029,19361328:0 +) +(1,13885:6764466,20226408:25818563,513147,134348 +k1,13884:9188776,20226408:164629 +k1,13884:11088798,20226408:164629 +k1,13884:14000041,20226408:164629 +(1,13884:14000041,20226408:0,452978,115847 +r1,13938:15765155,20226408:1765114,568825,115847 +k1,13884:14000041,20226408:-1765114 +) +(1,13884:14000041,20226408:1765114,452978,115847 +g1,13884:15058454,20226408 +h1,13884:15761878,20226408:0,411205,112570 +) +k1,13884:16103454,20226408:164629 +k1,13884:19303055,20226408:164629 +k1,13884:21164411,20226408:164629 +k1,13884:23618869,20226408:164630 +k1,13884:24314995,20226408:164629 +k1,13884:25765440,20226408:164629 +k1,13884:26285929,20226408:164629 +k1,13884:27688533,20226408:164629 +k1,13884:28512454,20226408:164629 +k1,13884:31278862,20226408:164629 +k1,13884:32583029,20226408:0 +) +(1,13885:6764466,21091488:25818563,513147,134348 +g1,13884:8951402,21091488 +g1,13884:11085254,21091488 +g1,13884:13211241,21091488 +g1,13884:14026508,21091488 +g1,13884:14814250,21091488 +g1,13884:15831368,21091488 +g1,13884:17424548,21091488 +g1,13884:18755584,21091488 +g1,13884:20656783,21091488 +g1,13884:23319510,21091488 +(1,13884:23319510,21091488:0,452978,115847 +r1,13938:25084623,21091488:1765113,568825,115847 +k1,13884:23319510,21091488:-1765113 +) +(1,13884:23319510,21091488:1765113,452978,115847 +k1,13884:23319510,21091488:3277 +h1,13884:25081346,21091488:0,411205,112570 +) +g1,13884:25283852,21091488 +g1,13884:27474065,21091488 +g1,13884:28692379,21091488 +k1,13885:32583029,21091488:906796 +g1,13885:32583029,21091488 +) +v1,13887:6764466,21776343:0,393216,0 +(1,13912:6764466,35260343:25818563,13877216,196608 +g1,13912:6764466,35260343 +g1,13912:6764466,35260343 +g1,13912:6567858,35260343 +(1,13912:6567858,35260343:0,13877216,196608 +r1,13938:32779637,35260343:26211779,14073824,196608 +k1,13912:6567857,35260343:-26211780 +) +(1,13912:6567858,35260343:26211779,13877216,196608 +[1,13912:6764466,35260343:25818563,13680608,0 +(1,13889:6764466,22010780:25818563,431045,112852 +(1,13888:6764466,22010780:0,0,0 +g1,13888:6764466,22010780 +g1,13888:6764466,22010780 +g1,13888:6436786,22010780 +(1,13888:6436786,22010780:0,0,0 +) +g1,13888:6764466,22010780 +) +k1,13889:6764466,22010780:0 +g1,13889:9752052,22010780 +g1,13889:12407684,22010780 +g1,13889:13071592,22010780 +g1,13889:15063316,22010780 +g1,13889:18382855,22010780 +g1,13889:19046763,22010780 +g1,13889:21370441,22010780 +g1,13889:24026073,22010780 +g1,13889:24689981,22010780 +h1,13889:25353889,22010780:0,0,0 +k1,13889:32583029,22010780:7229140 +g1,13889:32583029,22010780 +) +(1,13911:6764466,22826707:25818563,431045,79822 +(1,13891:6764466,22826707:0,0,0 +g1,13891:6764466,22826707 +g1,13891:6764466,22826707 +g1,13891:6436786,22826707 +(1,13891:6436786,22826707:0,0,0 +) +g1,13891:6764466,22826707 +) +g1,13911:7760328,22826707 +g1,13911:8092282,22826707 +g1,13911:8756190,22826707 +g1,13911:13071591,22826707 +g1,13911:13735499,22826707 +g1,13911:15727223,22826707 +g1,13911:17055039,22826707 +g1,13911:19046763,22826707 +g1,13911:21370441,22826707 +h1,13911:22698257,22826707:0,0,0 +k1,13911:32583029,22826707:9884772 +g1,13911:32583029,22826707 +) +(1,13911:6764466,23511562:25818563,431045,79822 +h1,13911:6764466,23511562:0,0,0 +g1,13911:7760328,23511562 +g1,13911:8092282,23511562 +g1,13911:8756190,23511562 +g1,13911:12075729,23511562 +g1,13911:12407683,23511562 +g1,13911:12739637,23511562 +g1,13911:13071591,23511562 +g1,13911:13735499,23511562 +g1,13911:15727223,23511562 +g1,13911:17055039,23511562 +g1,13911:19378717,23511562 +g1,13911:21038487,23511562 +g1,13911:23030211,23511562 +h1,13911:24026073,23511562:0,0,0 +k1,13911:32583029,23511562:8556956 +g1,13911:32583029,23511562 +) +(1,13911:6764466,24196417:25818563,431045,79822 +h1,13911:6764466,24196417:0,0,0 +g1,13911:7760328,24196417 +g1,13911:8092282,24196417 +g1,13911:8756190,24196417 +g1,13911:11411822,24196417 +g1,13911:11743776,24196417 +g1,13911:12075730,24196417 +g1,13911:12407684,24196417 +g1,13911:12739638,24196417 +g1,13911:13071592,24196417 +g1,13911:13735500,24196417 +g1,13911:15727224,24196417 +g1,13911:17055040,24196417 +g1,13911:19378718,24196417 +g1,13911:21038488,24196417 +g1,13911:22366304,24196417 +h1,13911:23362166,24196417:0,0,0 +k1,13911:32583029,24196417:9220863 +g1,13911:32583029,24196417 +) +(1,13911:6764466,24881272:25818563,431045,33029 +h1,13911:6764466,24881272:0,0,0 +g1,13911:7760328,24881272 +g1,13911:8092282,24881272 +g1,13911:8756190,24881272 +g1,13911:10415960,24881272 +g1,13911:10747914,24881272 +g1,13911:11079868,24881272 +g1,13911:11411822,24881272 +g1,13911:11743776,24881272 +g1,13911:12075730,24881272 +g1,13911:12407684,24881272 +g1,13911:12739638,24881272 +g1,13911:13071592,24881272 +g1,13911:13735500,24881272 +g1,13911:15063316,24881272 +h1,13911:15395270,24881272:0,0,0 +k1,13911:32583030,24881272:17187760 +g1,13911:32583030,24881272 +) +(1,13911:6764466,25566127:25818563,431045,79822 +h1,13911:6764466,25566127:0,0,0 +g1,13911:7760328,25566127 +g1,13911:8092282,25566127 +g1,13911:8756190,25566127 +g1,13911:13735499,25566127 +g1,13911:15727223,25566127 +g1,13911:17055039,25566127 +g1,13911:19378717,25566127 +g1,13911:21370441,25566127 +g1,13911:23362165,25566127 +h1,13911:24358027,25566127:0,0,0 +k1,13911:32583029,25566127:8225002 +g1,13911:32583029,25566127 +) +(1,13911:6764466,26250982:25818563,431045,112852 +h1,13911:6764466,26250982:0,0,0 +g1,13911:7760328,26250982 +g1,13911:8092282,26250982 +g1,13911:8756190,26250982 +g1,13911:11079868,26250982 +g1,13911:11411822,26250982 +g1,13911:11743776,26250982 +g1,13911:12075730,26250982 +g1,13911:12407684,26250982 +g1,13911:12739638,26250982 +g1,13911:13071592,26250982 +g1,13911:13735500,26250982 +g1,13911:15063316,26250982 +g1,13911:17055040,26250982 +g1,13911:17718948,26250982 +h1,13911:18050902,26250982:0,0,0 +k1,13911:32583029,26250982:14532127 +g1,13911:32583029,26250982 +) +(1,13911:6764466,26935837:25818563,431045,106246 +h1,13911:6764466,26935837:0,0,0 +g1,13911:7760328,26935837 +g1,13911:8092282,26935837 +g1,13911:8756190,26935837 +g1,13911:9752052,26935837 +g1,13911:10084006,26935837 +g1,13911:10415960,26935837 +g1,13911:10747914,26935837 +g1,13911:11079868,26935837 +g1,13911:11411822,26935837 +g1,13911:11743776,26935837 +g1,13911:12075730,26935837 +g1,13911:12407684,26935837 +g1,13911:12739638,26935837 +g1,13911:13071592,26935837 +g1,13911:15063316,26935837 +g1,13911:16059178,26935837 +h1,13911:16391132,26935837:0,0,0 +k1,13911:32583029,26935837:16191897 +g1,13911:32583029,26935837 +) +(1,13911:6764466,27620692:25818563,431045,106246 +h1,13911:6764466,27620692:0,0,0 +g1,13911:7760328,27620692 +g1,13911:8092282,27620692 +g1,13911:8424236,27620692 +g1,13911:9752052,27620692 +g1,13911:10747914,27620692 +g1,13911:11079868,27620692 +g1,13911:11411822,27620692 +g1,13911:12075730,27620692 +g1,13911:13403546,27620692 +g1,13911:15727224,27620692 +g1,13911:17386994,27620692 +g1,13911:19710672,27620692 +g1,13911:21702396,27620692 +h1,13911:22698258,27620692:0,0,0 +k1,13911:32583029,27620692:9884771 +g1,13911:32583029,27620692 +) +(1,13911:6764466,28305547:25818563,431045,106246 +h1,13911:6764466,28305547:0,0,0 +g1,13911:7760328,28305547 +g1,13911:8092282,28305547 +g1,13911:8424236,28305547 +g1,13911:9752052,28305547 +g1,13911:12075730,28305547 +g1,13911:13403546,28305547 +g1,13911:15395270,28305547 +g1,13911:17055040,28305547 +h1,13911:18382856,28305547:0,0,0 +k1,13911:32583029,28305547:14200173 +g1,13911:32583029,28305547 +) +(1,13911:6764466,28990402:25818563,431045,106246 +h1,13911:6764466,28990402:0,0,0 +g1,13911:7760328,28990402 +g1,13911:8092282,28990402 +g1,13911:8424236,28990402 +g1,13911:9752052,28990402 +g1,13911:12075730,28990402 +g1,13911:13403546,28990402 +g1,13911:15395270,28990402 +g1,13911:16059178,28990402 +h1,13911:16391132,28990402:0,0,0 +k1,13911:32583029,28990402:16191897 +g1,13911:32583029,28990402 +) +(1,13911:6764466,29675257:25818563,431045,33029 +h1,13911:6764466,29675257:0,0,0 +g1,13911:7760328,29675257 +g1,13911:8092282,29675257 +g1,13911:8424236,29675257 +g1,13911:9752052,29675257 +g1,13911:11079868,29675257 +g1,13911:11411822,29675257 +g1,13911:12075730,29675257 +g1,13911:13403546,29675257 +k1,13911:13403546,29675257:0 +h1,13911:15063316,29675257:0,0,0 +k1,13911:32583028,29675257:17519712 +g1,13911:32583028,29675257 +) +(1,13911:6764466,30360112:25818563,431045,33029 +h1,13911:6764466,30360112:0,0,0 +g1,13911:7760328,30360112 +g1,13911:8092282,30360112 +g1,13911:8424236,30360112 +g1,13911:9752052,30360112 +g1,13911:11411822,30360112 +g1,13911:12075730,30360112 +g1,13911:13403546,30360112 +h1,13911:13735500,30360112:0,0,0 +k1,13911:32583028,30360112:18847528 +g1,13911:32583028,30360112 +) +(1,13911:6764466,31044967:25818563,431045,33029 +h1,13911:6764466,31044967:0,0,0 +g1,13911:7760328,31044967 +g1,13911:8092282,31044967 +g1,13911:8756190,31044967 +g1,13911:12739637,31044967 +g1,13911:13071591,31044967 +g1,13911:13735499,31044967 +g1,13911:15063315,31044967 +h1,13911:15727223,31044967:0,0,0 +k1,13911:32583029,31044967:16855806 +g1,13911:32583029,31044967 +) +(1,13911:6764466,31729822:25818563,431045,79822 +h1,13911:6764466,31729822:0,0,0 +g1,13911:7760328,31729822 +g1,13911:8092282,31729822 +g1,13911:8756190,31729822 +g1,13911:11411822,31729822 +g1,13911:11743776,31729822 +g1,13911:12075730,31729822 +g1,13911:12407684,31729822 +g1,13911:12739638,31729822 +g1,13911:13071592,31729822 +g1,13911:13735500,31729822 +g1,13911:15727224,31729822 +h1,13911:17718948,31729822:0,0,0 +k1,13911:32583029,31729822:14864081 +g1,13911:32583029,31729822 +) +(1,13911:6764466,32414677:25818563,431045,112852 +h1,13911:6764466,32414677:0,0,0 +g1,13911:7760328,32414677 +g1,13911:8092282,32414677 +g1,13911:8756190,32414677 +g1,13911:10415960,32414677 +g1,13911:10747914,32414677 +g1,13911:11079868,32414677 +g1,13911:11411822,32414677 +g1,13911:11743776,32414677 +g1,13911:12075730,32414677 +g1,13911:12407684,32414677 +g1,13911:12739638,32414677 +g1,13911:13071592,32414677 +g1,13911:13735500,32414677 +g1,13911:16723085,32414677 +g1,13911:20374578,32414677 +g1,13911:21038486,32414677 +g1,13911:22698256,32414677 +g1,13911:23362164,32414677 +g1,13911:24026072,32414677 +g1,13911:24689980,32414677 +g1,13911:27013658,32414677 +g1,13911:28673428,32414677 +g1,13911:29337336,32414677 +h1,13911:30997106,32414677:0,0,0 +k1,13911:32583029,32414677:1585923 +g1,13911:32583029,32414677 +) +(1,13911:6764466,33099532:25818563,431045,112852 +h1,13911:6764466,33099532:0,0,0 +g1,13911:7760328,33099532 +g1,13911:8092282,33099532 +g1,13911:8756190,33099532 +g1,13911:10747914,33099532 +g1,13911:11079868,33099532 +g1,13911:11411822,33099532 +g1,13911:11743776,33099532 +g1,13911:12075730,33099532 +g1,13911:12407684,33099532 +g1,13911:12739638,33099532 +g1,13911:13071592,33099532 +g1,13911:16059177,33099532 +g1,13911:19046763,33099532 +g1,13911:22366303,33099532 +g1,13911:22698257,33099532 +g1,13911:25685842,33099532 +g1,13911:27345612,33099532 +g1,13911:28009520,33099532 +g1,13911:28673428,33099532 +g1,13911:29337336,33099532 +h1,13911:30997106,33099532:0,0,0 +k1,13911:32583029,33099532:1585923 +g1,13911:32583029,33099532 +) +(1,13911:6764466,33784387:25818563,431045,33029 +h1,13911:6764466,33784387:0,0,0 +g1,13911:7760328,33784387 +g1,13911:8092282,33784387 +g1,13911:8756190,33784387 +g1,13911:10747914,33784387 +g1,13911:11079868,33784387 +g1,13911:11411822,33784387 +g1,13911:11743776,33784387 +g1,13911:12075730,33784387 +g1,13911:12407684,33784387 +g1,13911:12739638,33784387 +g1,13911:13071592,33784387 +g1,13911:18050901,33784387 +g1,13911:19046763,33784387 +g1,13911:20706533,33784387 +g1,13911:21702395,33784387 +g1,13911:22034349,33784387 +g1,13911:22698257,33784387 +h1,13911:26017796,33784387:0,0,0 +k1,13911:32583029,33784387:6565233 +g1,13911:32583029,33784387 +) +(1,13911:6764466,34469242:25818563,431045,79822 +h1,13911:6764466,34469242:0,0,0 +g1,13911:7760328,34469242 +g1,13911:8092282,34469242 +g1,13911:8424236,34469242 +g1,13911:9752052,34469242 +g1,13911:11411822,34469242 +g1,13911:12075730,34469242 +g1,13911:13403546,34469242 +g1,13911:15727224,34469242 +g1,13911:16391132,34469242 +g1,13911:17386994,34469242 +g1,13911:18050902,34469242 +g1,13911:19046764,34469242 +g1,13911:20042626,34469242 +h1,13911:21038488,34469242:0,0,0 +k1,13911:32583029,34469242:11544541 +g1,13911:32583029,34469242 +) +(1,13911:6764466,35154097:25818563,431045,106246 +h1,13911:6764466,35154097:0,0,0 +g1,13911:7760328,35154097 +g1,13911:8092282,35154097 +g1,13911:8424236,35154097 +g1,13911:9752052,35154097 +g1,13911:12075730,35154097 +g1,13911:13403546,35154097 +g1,13911:15727224,35154097 +g1,13911:16391132,35154097 +g1,13911:17055040,35154097 +g1,13911:17718948,35154097 +g1,13911:18382856,35154097 +g1,13911:19046764,35154097 +h1,13911:20042626,35154097:0,0,0 +k1,13911:32583029,35154097:12540403 +g1,13911:32583029,35154097 +) +] +) +g1,13912:32583029,35260343 +g1,13912:6764466,35260343 +g1,13912:6764466,35260343 +g1,13912:32583029,35260343 +g1,13912:32583029,35260343 +) +h1,13912:6764466,35456951:0,0,0 +(1,13916:6764466,36322031:25818563,513147,134348 +h1,13915:6764466,36322031:983040,0,0 +k1,13915:10559198,36322031:244647 +(1,13915:10559198,36322031:0,452978,115847 +r1,13938:11972599,36322031:1413401,568825,115847 +k1,13915:10559198,36322031:-1413401 +) +(1,13915:10559198,36322031:1413401,452978,115847 +k1,13915:10559198,36322031:3277 +h1,13915:11969322,36322031:0,411205,112570 +) +k1,13915:12217246,36322031:244647 +k1,13915:15163943,36322031:244648 +k1,13915:16427675,36322031:244647 +k1,13915:19367818,36322031:244647 +k1,13915:20712159,36322031:244647 +k1,13915:22148251,36322031:244647 +k1,13915:25795527,36322031:244647 +k1,13915:27553401,36322031:244648 +k1,13915:28449476,36322031:244647 +k1,13915:30623503,36322031:244647 +k1,13916:32583029,36322031:0 +) +(1,13916:6764466,37187111:25818563,459977,115847 +(1,13915:6764466,37187111:0,459977,115847 +r1,13938:7826155,37187111:1061689,575824,115847 +k1,13915:6764466,37187111:-1061689 +) +(1,13915:6764466,37187111:1061689,459977,115847 +k1,13915:6764466,37187111:3277 +h1,13915:7822878,37187111:0,411205,112570 +) +k1,13916:32583029,37187111:24704446 +g1,13916:32583029,37187111 +) +v1,13918:6764466,37871966:0,393216,0 +(1,13925:6764466,39035182:25818563,1556432,196608 +g1,13925:6764466,39035182 +g1,13925:6764466,39035182 +g1,13925:6567858,39035182 +(1,13925:6567858,39035182:0,1556432,196608 +r1,13938:32779637,39035182:26211779,1753040,196608 +k1,13925:6567857,39035182:-26211780 +) +(1,13925:6567858,39035182:26211779,1556432,196608 +[1,13925:6764466,39035182:25818563,1359824,0 +(1,13920:6764466,38106403:25818563,431045,79822 +(1,13919:6764466,38106403:0,0,0 +g1,13919:6764466,38106403 +g1,13919:6764466,38106403 +g1,13919:6436786,38106403 +(1,13919:6436786,38106403:0,0,0 +) +g1,13919:6764466,38106403 +) +k1,13920:6764466,38106403:0 +h1,13920:11079868,38106403:0,0,0 +k1,13920:32583028,38106403:21503160 +g1,13920:32583028,38106403 +) +(1,13924:6764466,38922330:25818563,431045,112852 +(1,13922:6764466,38922330:0,0,0 +g1,13922:6764466,38922330 +g1,13922:6764466,38922330 +g1,13922:6436786,38922330 +(1,13922:6436786,38922330:0,0,0 +) +g1,13922:6764466,38922330 +) +g1,13924:7760328,38922330 +g1,13924:8092282,38922330 +g1,13924:11079867,38922330 +g1,13924:14731360,38922330 +g1,13924:15395268,38922330 +g1,13924:17055038,38922330 +g1,13924:17718946,38922330 +g1,13924:18382854,38922330 +g1,13924:19046762,38922330 +g1,13924:21370440,38922330 +g1,13924:23030210,38922330 +g1,13924:23694118,38922330 +h1,13924:25353888,38922330:0,0,0 +k1,13924:32583029,38922330:7229141 +g1,13924:32583029,38922330 +) +] +) +g1,13925:32583029,39035182 +g1,13925:6764466,39035182 +g1,13925:6764466,39035182 +g1,13925:32583029,39035182 +g1,13925:32583029,39035182 +) +h1,13925:6764466,39231790:0,0,0 +] +g1,13927:32583029,39231790 +) +h1,13927:6630773,39231790:0,0,0 +(1,13929:6630773,41348608:25952256,564462,139132 +(1,13929:6630773,41348608:2450326,534184,12975 +g1,13929:6630773,41348608 +g1,13929:9081099,41348608 +) +g1,13929:12446963,41348608 +g1,13929:13416569,41348608 +g1,13929:16941751,41348608 +k1,13929:32583029,41348608:12829063 +g1,13929:32583029,41348608 +) +(1,13937:6630773,42606904:25952256,505283,134348 +k1,13934:7498703,42606904:240095 +k1,13934:10347131,42606904:240095 +k1,13934:11606311,42606904:240095 +k1,13934:15612104,42606904:240094 +k1,13934:18363539,42606904:240095 +k1,13934:19135131,42606904:240095 +k1,13934:22995435,42606904:240095 +k1,13934:24426975,42606904:240095 +k1,13934:25283108,42606904:240095 +k1,13934:26111716,42606904:240095 +k1,13934:27973826,42606904:240094 +k1,13934:28961687,42606904:240095 +k1,13934:29557642,42606904:240095 +(1,13934:29557642,42606904:0,459977,115847 +r1,13938:31674467,42606904:2116825,575824,115847 +k1,13934:29557642,42606904:-2116825 +) +(1,13934:29557642,42606904:2116825,459977,115847 +k1,13934:29557642,42606904:3277 +h1,13934:31671190,42606904:0,411205,112570 +) +k1,13934:31914562,42606904:240095 +k1,13937:32583029,42606904:0 +) +(1,13937:6630773,43471984:25952256,513147,134348 +(1,13934:6630773,43471984:0,452978,115847 +r1,13938:9099310,43471984:2468537,568825,115847 +k1,13934:6630773,43471984:-2468537 +) +(1,13934:6630773,43471984:2468537,452978,115847 +k1,13934:6630773,43471984:3277 +h1,13934:9096033,43471984:0,411205,112570 +) +k1,13934:9252070,43471984:152760 +k1,13934:11298820,43471984:152760 +k1,13934:12683658,43471984:152761 +k1,13934:15115105,43471984:152760 +h1,13934:16484152,43471984:0,0,0 +k1,13934:16636912,43471984:152760 +k1,13934:17599042,43471984:152760 +k1,13934:19249955,43471984:152760 +h1,13934:20046873,43471984:0,0,0 +k1,13934:20580398,43471984:152761 +k1,13934:21551047,43471984:152760 +k1,13934:22059667,43471984:152760 +k1,13934:24025153,43471984:152760 +k1,13934:26339291,43471984:152761 +k1,13934:27511136,43471984:152760 +k1,13934:29598519,43471984:152760 +k1,13934:32583029,43471984:0 +) +(1,13937:6630773,44337064:25952256,513147,134348 +k1,13934:7350029,44337064:187759 +k1,13934:8556872,44337064:187758 +k1,13934:10398104,44337064:187759 +k1,13934:11272024,44337064:187758 +k1,13934:12407434,44337064:187759 +k1,13934:14407918,44337064:187758 +k1,13934:15787122,44337064:187759 +k1,13934:19547904,44337064:187759 +k1,13934:23052439,44337064:187758 +k1,13934:25432377,44337064:187759 +h1,13934:26402965,44337064:0,0,0 +k1,13934:26971487,44337064:187758 +k1,13935:26971487,44337064:0 +k1,13935:28355933,44337064:187759 +(1,13935:28355933,44337064:0,414482,115847 +r1,13938:32583029,44337064:4227096,530329,115847 +k1,13935:28355933,44337064:-4227096 +) +(1,13935:28355933,44337064:4227096,414482,115847 +k1,13935:28355933,44337064:3277 +h1,13935:32579752,44337064:0,411205,112570 +) +k1,13935:32583029,44337064:0 +) +] +(1,13938:32583029,45706769:0,0,0 +g1,13938:32583029,45706769 +) +) +] +(1,13938:6630773,47279633:25952256,0,0 +h1,13938:6630773,47279633:25952256,0,0 +) +] +(1,13938:4262630,4025873:0,0,0 +[1,13938:-473656,4025873:0,0,0 +(1,13938:-473656,-710413:0,0,0 +(1,13938:-473656,-710413:0,0,0 +g1,13938:-473656,-710413 +) +g1,13938:-473656,-710413 ) ] ) ] !31709 -}223 -Input:2365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}224 Input:2368:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2369:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2370:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2371:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{224 -[1,14009:4262630,47279633:28320399,43253760,0 -(1,14009:4262630,4025873:0,0,0 -[1,14009:-473656,4025873:0,0,0 -(1,14009:-473656,-710413:0,0,0 -(1,14009:-473656,-644877:0,0,0 -k1,14009:-473656,-644877:-65536 +{225 +[1,14007:4262630,47279633:28320399,43253760,0 +(1,14007:4262630,4025873:0,0,0 +[1,14007:-473656,4025873:0,0,0 +(1,14007:-473656,-710413:0,0,0 +(1,14007:-473656,-644877:0,0,0 +k1,14007:-473656,-644877:-65536 ) -(1,14009:-473656,4736287:0,0,0 -k1,14009:-473656,4736287:5209943 +(1,14007:-473656,4736287:0,0,0 +k1,14007:-473656,4736287:5209943 ) -g1,14009:-473656,-710413 +g1,14007:-473656,-710413 ) ] ) -[1,14009:6630773,47279633:25952256,43253760,0 -[1,14009:6630773,4812305:25952256,786432,0 -(1,14009:6630773,4812305:25952256,505283,134348 -(1,14009:6630773,4812305:25952256,505283,134348 -g1,14009:3078558,4812305 -[1,14009:3078558,4812305:0,0,0 -(1,14009:3078558,2439708:0,1703936,0 -k1,14009:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14009:2537886,2439708:1179648,16384,0 +[1,14007:6630773,47279633:25952256,43253760,0 +[1,14007:6630773,4812305:25952256,786432,0 +(1,14007:6630773,4812305:25952256,505283,134348 +(1,14007:6630773,4812305:25952256,505283,134348 +g1,14007:3078558,4812305 +[1,14007:3078558,4812305:0,0,0 +(1,14007:3078558,2439708:0,1703936,0 +k1,14007:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14007:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14009:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14007:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14009:3078558,4812305:0,0,0 -(1,14009:3078558,2439708:0,1703936,0 -g1,14009:29030814,2439708 -g1,14009:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14009:36151628,1915420:16384,1179648,0 +[1,14007:3078558,4812305:0,0,0 +(1,14007:3078558,2439708:0,1703936,0 +g1,14007:29030814,2439708 +g1,14007:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14007:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14009:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14007:37855564,2439708:1179648,16384,0 ) ) -k1,14009:3078556,2439708:-34777008 +k1,14007:3078556,2439708:-34777008 ) ] -[1,14009:3078558,4812305:0,0,0 -(1,14009:3078558,49800853:0,16384,2228224 -k1,14009:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14009:2537886,49800853:1179648,16384,0 +[1,14007:3078558,4812305:0,0,0 +(1,14007:3078558,49800853:0,16384,2228224 +k1,14007:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14007:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14009:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14007:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14009:3078558,4812305:0,0,0 -(1,14009:3078558,49800853:0,16384,2228224 -g1,14009:29030814,49800853 -g1,14009:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14009:36151628,51504789:16384,1179648,0 +[1,14007:3078558,4812305:0,0,0 +(1,14007:3078558,49800853:0,16384,2228224 +g1,14007:29030814,49800853 +g1,14007:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14007:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14009:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14007:37855564,49800853:1179648,16384,0 ) ) -k1,14009:3078556,49800853:-34777008 +k1,14007:3078556,49800853:-34777008 ) -] -g1,14009:6630773,4812305 -g1,14009:6630773,4812305 -g1,14009:8843268,4812305 -g1,14009:11066249,4812305 -g1,14009:13415059,4812305 -k1,14009:31387651,4812305:17972592 -) -) -] -[1,14009:6630773,45706769:25952256,40108032,0 -(1,14009:6630773,45706769:25952256,40108032,0 -(1,14009:6630773,45706769:0,0,0 -g1,14009:6630773,45706769 -) -[1,14009:6630773,45706769:25952256,40108032,0 -(1,13939:6630773,6254097:25952256,513147,134348 -k1,13937:8155187,6254097:135051 -k1,13937:9224781,6254097:135051 -k1,13937:10873058,6254097:135051 -k1,13937:11624147,6254097:135051 -k1,13937:12778283,6254097:135051 -k1,13937:14297454,6254097:135051 -k1,13937:17093922,6254097:135051 -k1,13937:18839193,6254097:135051 -k1,13937:20858404,6254097:135051 -k1,13937:23138448,6254097:135051 -k1,13937:23889537,6254097:135051 -k1,13937:25632186,6254097:135051 -k1,13937:28291684,6254097:135051 -k1,13937:29820686,6254097:135051 -k1,13937:32583029,6254097:0 -) -(1,13939:6630773,7119177:25952256,513147,115847 -g1,13937:10722185,7119177 -g1,13937:11549249,7119177 -g1,13937:13445205,7119177 -g1,13937:15207468,7119177 -(1,13937:15207468,7119177:0,414482,115847 -r1,14009:16972581,7119177:1765113,530329,115847 -k1,13937:15207468,7119177:-1765113 -) -(1,13937:15207468,7119177:1765113,414482,115847 -k1,13937:15207468,7119177:3277 -h1,13937:16969304,7119177:0,411205,112570 -) -g1,13937:17171810,7119177 -g1,13937:17902536,7119177 -g1,13937:18457625,7119177 -g1,13937:20550844,7119177 -g1,13937:22144024,7119177 -g1,13937:23239786,7119177 -k1,13939:32583029,7119177:7377163 -g1,13939:32583029,7119177 -) -(1,13941:6630773,7984257:25952256,505283,126483 -h1,13940:6630773,7984257:983040,0,0 -k1,13940:9447492,7984257:199866 -k1,13940:13221691,7984257:199865 -k1,13940:14706063,7984257:199866 -k1,13940:16109170,7984257:199866 -k1,13940:16840532,7984257:199865 -k1,13940:17811101,7984257:199866 -k1,13940:20445629,7984257:199865 -k1,13940:21176991,7984257:199865 -k1,13940:22661363,7984257:199866 -(1,13940:22661363,7984257:0,414482,115847 -r1,14009:24426476,7984257:1765113,530329,115847 -k1,13940:22661363,7984257:-1765113 -) -(1,13940:22661363,7984257:1765113,414482,115847 -k1,13940:22661363,7984257:3277 -h1,13940:24423199,7984257:0,411205,112570 -) -k1,13940:24800012,7984257:199866 -k1,13940:26018962,7984257:199865 -k1,13940:29984527,7984257:199866 -k1,13940:32583029,7984257:0 -) -(1,13941:6630773,8849337:25952256,473825,115847 -g1,13940:7361499,8849337 -g1,13940:7916588,8849337 -(1,13940:7916588,8849337:0,459977,115847 -r1,14009:10033413,8849337:2116825,575824,115847 -k1,13940:7916588,8849337:-2116825 -) -(1,13940:7916588,8849337:2116825,459977,115847 -k1,13940:7916588,8849337:3277 -h1,13940:10030136,8849337:0,411205,112570 -) -k1,13941:32583029,8849337:22497188 -g1,13941:32583029,8849337 -) -v1,13943:6630773,9534192:0,393216,0 -(1,13963:6630773,14606335:25952256,5465359,196608 -g1,13963:6630773,14606335 -g1,13963:6630773,14606335 -g1,13963:6434165,14606335 -(1,13963:6434165,14606335:0,5465359,196608 -r1,14009:32779637,14606335:26345472,5661967,196608 -k1,13963:6434165,14606335:-26345472 -) -(1,13963:6434165,14606335:26345472,5465359,196608 -[1,13963:6630773,14606335:25952256,5268751,0 -(1,13945:6630773,9762023:25952256,424439,106246 -(1,13944:6630773,9762023:0,0,0 -g1,13944:6630773,9762023 -g1,13944:6630773,9762023 -g1,13944:6303093,9762023 -(1,13944:6303093,9762023:0,0,0 -) -g1,13944:6630773,9762023 -) -k1,13945:6630773,9762023:0 -h1,13945:12605944,9762023:0,0,0 -k1,13945:32583028,9762023:19977084 -g1,13945:32583028,9762023 -) -(1,13946:6630773,10446878:25952256,431045,106246 -h1,13946:6630773,10446878:0,0,0 -k1,13946:6630773,10446878:0 -h1,13946:16589391,10446878:0,0,0 -k1,13946:32583029,10446878:15993638 -g1,13946:32583029,10446878 -) -(1,13950:6630773,11262805:25952256,424439,79822 -(1,13948:6630773,11262805:0,0,0 -g1,13948:6630773,11262805 -g1,13948:6630773,11262805 -g1,13948:6303093,11262805 -(1,13948:6303093,11262805:0,0,0 -) -g1,13948:6630773,11262805 -) -g1,13950:7626635,11262805 -g1,13950:8954451,11262805 -h1,13950:10614221,11262805:0,0,0 -k1,13950:32583029,11262805:21968808 -g1,13950:32583029,11262805 -) -(1,13952:6630773,12078732:25952256,431045,106246 -(1,13951:6630773,12078732:0,0,0 -g1,13951:6630773,12078732 -g1,13951:6630773,12078732 -g1,13951:6303093,12078732 -(1,13951:6303093,12078732:0,0,0 -) -g1,13951:6630773,12078732 -) -k1,13952:6630773,12078732:0 -h1,13952:16257437,12078732:0,0,0 -k1,13952:32583029,12078732:16325592 -g1,13952:32583029,12078732 -) -(1,13956:6630773,12894659:25952256,424439,79822 -(1,13954:6630773,12894659:0,0,0 -g1,13954:6630773,12894659 -g1,13954:6630773,12894659 -g1,13954:6303093,12894659 -(1,13954:6303093,12894659:0,0,0 -) -g1,13954:6630773,12894659 -) -g1,13956:7626635,12894659 -g1,13956:8954451,12894659 -h1,13956:10282267,12894659:0,0,0 -k1,13956:32583029,12894659:22300762 -g1,13956:32583029,12894659 -) -(1,13958:6630773,13710586:25952256,431045,106246 -(1,13957:6630773,13710586:0,0,0 -g1,13957:6630773,13710586 -g1,13957:6630773,13710586 -g1,13957:6303093,13710586 -(1,13957:6303093,13710586:0,0,0 -) -g1,13957:6630773,13710586 -) -k1,13958:6630773,13710586:0 -h1,13958:15261576,13710586:0,0,0 -k1,13958:32583028,13710586:17321452 -g1,13958:32583028,13710586 -) -(1,13962:6630773,14526513:25952256,424439,79822 -(1,13960:6630773,14526513:0,0,0 -g1,13960:6630773,14526513 -g1,13960:6630773,14526513 -g1,13960:6303093,14526513 -(1,13960:6303093,14526513:0,0,0 -) -g1,13960:6630773,14526513 -) -g1,13962:7626635,14526513 -g1,13962:8954451,14526513 -g1,13962:10282267,14526513 -g1,13962:11610083,14526513 -g1,13962:12937899,14526513 -g1,13962:14265715,14526513 -g1,13962:15593531,14526513 -h1,13962:16589393,14526513:0,0,0 -k1,13962:32583029,14526513:15993636 -g1,13962:32583029,14526513 -) -] -) -g1,13963:32583029,14606335 -g1,13963:6630773,14606335 -g1,13963:6630773,14606335 -g1,13963:32583029,14606335 -g1,13963:32583029,14606335 -) -h1,13963:6630773,14802943:0,0,0 -(1,13967:6630773,15668023:25952256,513147,134348 -h1,13966:6630773,15668023:983040,0,0 -k1,13966:8581640,15668023:207609 -k1,13966:10524642,15668023:207609 -k1,13966:11088110,15668023:207608 -k1,13966:13189709,15668023:207609 -k1,13966:15724501,15668023:207609 -k1,13966:16591402,15668023:207609 -k1,13966:17154871,15668023:207609 -k1,13966:19982608,15668023:207608 -k1,13966:22341764,15668023:207609 -k1,13966:22905233,15668023:207609 -k1,13966:25875185,15668023:207609 -k1,13966:28070500,15668023:207608 -k1,13966:30365431,15668023:207609 -k1,13966:31104537,15668023:207609 -k1,13966:32583029,15668023:0 -) -(1,13967:6630773,16533103:25952256,513147,126483 -g1,13966:8397623,16533103 -g1,13966:9367555,16533103 -g1,13966:12871765,16533103 -k1,13967:32583028,16533103:16994140 -g1,13967:32583028,16533103 -) -v1,13969:6630773,17217958:0,393216,0 -(1,13973:6630773,17558641:25952256,733899,196608 -g1,13973:6630773,17558641 -g1,13973:6630773,17558641 -g1,13973:6434165,17558641 -(1,13973:6434165,17558641:0,733899,196608 -r1,14009:32779637,17558641:26345472,930507,196608 -k1,13973:6434165,17558641:-26345472 -) -(1,13973:6434165,17558641:26345472,733899,196608 -[1,13973:6630773,17558641:25952256,537291,0 -(1,13971:6630773,17452395:25952256,431045,106246 -(1,13970:6630773,17452395:0,0,0 -g1,13970:6630773,17452395 -g1,13970:6630773,17452395 -g1,13970:6303093,17452395 -(1,13970:6303093,17452395:0,0,0 -) -g1,13970:6630773,17452395 -) -g1,13971:7958589,17452395 -g1,13971:8954451,17452395 -g1,13971:11942037,17452395 -g1,13971:12605945,17452395 -g1,13971:14929623,17452395 -g1,13971:16589393,17452395 -g1,13971:17253301,17452395 -h1,13971:21568702,17452395:0,0,0 -k1,13971:32583029,17452395:11014327 -g1,13971:32583029,17452395 -) -] -) -g1,13973:32583029,17558641 -g1,13973:6630773,17558641 -g1,13973:6630773,17558641 -g1,13973:32583029,17558641 -g1,13973:32583029,17558641 -) -h1,13973:6630773,17755249:0,0,0 -(1,13977:6630773,18620329:25952256,513147,134348 -h1,13976:6630773,18620329:983040,0,0 -k1,13976:11145951,18620329:166209 -k1,13976:12919759,18620329:166210 -k1,13976:14077528,18620329:166209 -k1,13976:17035571,18620329:166209 -k1,13976:17817819,18620329:166210 -k1,13976:19003113,18620329:166209 -k1,13976:20822795,18620329:166209 -k1,13976:22226979,18620329:166209 -k1,13976:23079351,18620329:166210 -k1,13976:24193211,18620329:166209 -k1,13976:26172146,18620329:166209 -k1,13976:29828803,18620329:166210 -k1,13976:30948561,18620329:166209 -k1,13976:32583029,18620329:0 -) -(1,13977:6630773,19485409:25952256,513147,134348 -k1,13976:8269556,19485409:263182 -k1,13976:9551822,19485409:263181 -k1,13976:15228933,19485409:263182 -k1,13976:16769411,19485409:263181 -k1,13976:17980244,19485409:263182 -k1,13976:21548406,19485409:263181 -k1,13976:22883757,19485409:263182 -k1,13976:25261129,19485409:263181 -k1,13976:26913674,19485409:263182 -k1,13976:29731448,19485409:263181 -k1,13976:30452727,19485409:263182 -k1,13976:31247405,19485409:263181 -k1,13976:32583029,19485409:0 -) -(1,13977:6630773,20350489:25952256,513147,134348 -k1,13976:10001088,20350489:161017 -k1,13976:10813533,20350489:161017 -k1,13976:12796451,20350489:161017 -k1,13976:13723583,20350489:161016 -k1,13976:14903685,20350489:161017 -k1,13976:18678357,20350489:161017 -k1,13976:20620643,20350489:161017 -k1,13976:21599549,20350489:161017 -k1,13976:23512343,20350489:161017 -k1,13976:24332651,20350489:161016 -k1,13976:25512753,20350489:161017 -k1,13976:28567840,20350489:161017 -k1,13976:31015408,20350489:161017 -k1,13976:32583029,20350489:0 -) -(1,13977:6630773,21215569:25952256,513147,7863 -k1,13976:7908271,21215569:258413 -k1,13976:11557518,21215569:258414 -k1,13976:12984438,21215569:258413 -k1,13976:14111203,21215569:258413 -k1,13976:15844832,21215569:258414 -k1,13976:16754673,21215569:258413 -k1,13976:19877665,21215569:258413 -k1,13976:21155163,21215569:258413 -k1,13976:24307647,21215569:258414 -k1,13976:25381328,21215569:258413 -k1,13976:26706012,21215569:258413 -k1,13976:28949512,21215569:258414 -k1,13976:30227010,21215569:258413 -k1,13976:32583029,21215569:0 -) -(1,13977:6630773,22080649:25952256,513147,134348 -k1,13976:10767296,22080649:181425 -k1,13976:12140166,22080649:181425 -k1,13976:12677452,22080649:181426 -k1,13976:15621220,22080649:181425 -k1,13976:18787155,22080649:181425 -k1,13976:19620008,22080649:181425 -k1,13976:21789141,22080649:181426 -k1,13976:23905189,22080649:181425 -k1,13976:26266997,22080649:181425 -k1,13976:27196188,22080649:181425 -k1,13976:28890840,22080649:181426 -k1,13976:30304342,22080649:181425 -k1,13976:32583029,22080649:0 -) -(1,13977:6630773,22945729:25952256,505283,134348 -h1,13976:7980159,22945729:0,0,0 -g1,13976:8179388,22945729 -g1,13976:9187987,22945729 -g1,13976:10885369,22945729 -h1,13976:12080746,22945729:0,0,0 -k1,13977:32583028,22945729:20242760 -g1,13977:32583028,22945729 -) -v1,13979:6630773,23630584:0,393216,0 -(1,13983:6630773,23971267:25952256,733899,196608 -g1,13983:6630773,23971267 -g1,13983:6630773,23971267 -g1,13983:6434165,23971267 -(1,13983:6434165,23971267:0,733899,196608 -r1,14009:32779637,23971267:26345472,930507,196608 -k1,13983:6434165,23971267:-26345472 -) -(1,13983:6434165,23971267:26345472,733899,196608 -[1,13983:6630773,23971267:25952256,537291,0 -(1,13981:6630773,23865021:25952256,431045,106246 -(1,13980:6630773,23865021:0,0,0 -g1,13980:6630773,23865021 -g1,13980:6630773,23865021 -g1,13980:6303093,23865021 -(1,13980:6303093,23865021:0,0,0 -) -g1,13980:6630773,23865021 -) -k1,13981:6630773,23865021:0 -g1,13981:9950313,23865021 -g1,13981:11942037,23865021 -g1,13981:12605945,23865021 -h1,13981:13269853,23865021:0,0,0 -k1,13981:32583029,23865021:19313176 -g1,13981:32583029,23865021 -) -] -) -g1,13983:32583029,23971267 -g1,13983:6630773,23971267 -g1,13983:6630773,23971267 -g1,13983:32583029,23971267 -g1,13983:32583029,23971267 -) -h1,13983:6630773,24167875:0,0,0 -(1,13986:6630773,37079515:25952256,12846104,0 -k1,13986:13183781,37079515:6553008 -h1,13985:13183781,37079515:0,0,0 -(1,13985:13183781,37079515:12846240,12846104,0 -(1,13985:13183781,37079515:12846136,12846136,0 -(1,13985:13183781,37079515:12846136,12846136,0 -(1,13985:13183781,37079515:0,12846136,0 -(1,13985:13183781,37079515:0,18945146,0 -(1,13985:13183781,37079515:18945146,18945146,0 -) -k1,13985:13183781,37079515:-18945146 -) -) -g1,13985:26029917,37079515 -) -) -) -g1,13986:26030021,37079515 -k1,13986:32583029,37079515:6553008 -) -(1,13993:6630773,37944595:25952256,513147,134348 -h1,13992:6630773,37944595:983040,0,0 -k1,13992:8453210,37944595:211562 -k1,13992:11273105,37944595:211562 -k1,13992:13086367,37944595:211562 -k1,13992:16602910,37944595:211562 -k1,13992:17833557,37944595:211562 -k1,13992:20488300,37944595:211561 -k1,13992:21231359,37944595:211562 -k1,13992:22058959,37944595:211562 -k1,13992:24452215,37944595:211562 -k1,13992:28282020,37944595:211562 -k1,13992:29887533,37944595:211562 -k1,13993:32583029,37944595:0 -) -(1,13993:6630773,38809675:25952256,513147,126483 -(1,13992:6630773,38809675:0,452978,115847 -r1,14009:9099310,38809675:2468537,568825,115847 -k1,13992:6630773,38809675:-2468537 -) -(1,13992:6630773,38809675:2468537,452978,115847 -k1,13992:6630773,38809675:3277 -h1,13992:9096033,38809675:0,411205,112570 -) -k1,13992:9569930,38809675:296950 -k1,13992:11752350,38809675:296949 -k1,13992:15813033,38809675:296950 -k1,13992:17129067,38809675:296949 -$1,13992:17129067,38809675 -$1,13992:17574056,38809675 -k1,13992:19275443,38809675:296950 -k1,13992:20520043,38809675:296949 -k1,13992:21836078,38809675:296950 -k1,13992:23724897,38809675:296949 -k1,13992:26122931,38809675:296950 -k1,13992:27079172,38809675:296949 -k1,13992:29600414,38809675:296950 -k1,13992:31088808,38809675:296949 -k1,13992:32583029,38809675:0 -) -(1,13993:6630773,39674755:25952256,505283,134348 -k1,13992:10810660,39674755:210371 -k1,13992:11648865,39674755:210370 -k1,13992:13062477,39674755:210371 -k1,13992:16107934,39674755:210370 -k1,13992:17712256,39674755:210371 -k1,13992:18278486,39674755:210370 -k1,13992:20361876,39674755:210371 -k1,13992:24337945,39674755:210370 -k1,13992:27233326,39674755:210371 -k1,13992:29098480,39674755:210370 -k1,13992:29840348,39674755:210371 -k1,13992:31426319,39674755:210370 -k1,13992:32583029,39674755:0 -) -(1,13993:6630773,40539835:25952256,513147,115847 -g1,13992:8600785,40539835 -g1,13992:9459306,40539835 -g1,13992:12275388,40539835 -g1,13992:13759123,40539835 -g1,13992:14625508,40539835 -(1,13992:14625508,40539835:0,414482,115847 -r1,14009:16742333,40539835:2116825,530329,115847 -k1,13992:14625508,40539835:-2116825 -) -(1,13992:14625508,40539835:2116825,414482,115847 -k1,13992:14625508,40539835:3277 -h1,13992:16739056,40539835:0,411205,112570 -) -k1,13993:32583029,40539835:15788268 -g1,13993:32583029,40539835 -) -v1,13995:6630773,41224690:0,393216,0 -(1,14009:6630773,45120720:25952256,4289246,196608 -g1,14009:6630773,45120720 -g1,14009:6630773,45120720 -g1,14009:6434165,45120720 -(1,14009:6434165,45120720:0,4289246,196608 -r1,14009:32779637,45120720:26345472,4485854,196608 -k1,14009:6434165,45120720:-26345472 -) -(1,14009:6434165,45120720:26345472,4289246,196608 -[1,14009:6630773,45120720:25952256,4092638,0 -(1,13997:6630773,41459127:25952256,431045,79822 -(1,13996:6630773,41459127:0,0,0 -g1,13996:6630773,41459127 -g1,13996:6630773,41459127 -g1,13996:6303093,41459127 -(1,13996:6303093,41459127:0,0,0 -) -g1,13996:6630773,41459127 -) -k1,13997:6630773,41459127:0 -h1,13997:9950313,41459127:0,0,0 -k1,13997:32583029,41459127:22632716 -g1,13997:32583029,41459127 -) -(1,14008:6630773,42275054:25952256,431045,106246 -(1,13999:6630773,42275054:0,0,0 -g1,13999:6630773,42275054 -g1,13999:6630773,42275054 -g1,13999:6303093,42275054 -(1,13999:6303093,42275054:0,0,0 -) -g1,13999:6630773,42275054 -) -g1,14008:7626635,42275054 -g1,14008:10614220,42275054 -g1,14008:11610082,42275054 -g1,14008:14597667,42275054 -h1,14008:16257437,42275054:0,0,0 -k1,14008:32583029,42275054:16325592 -g1,14008:32583029,42275054 -) -(1,14008:6630773,42959909:25952256,398014,0 -h1,14008:6630773,42959909:0,0,0 -h1,14008:7294681,42959909:0,0,0 -k1,14008:32583029,42959909:25288348 -g1,14008:32583029,42959909 -) -(1,14008:6630773,43644764:25952256,398014,106246 -h1,14008:6630773,43644764:0,0,0 -g1,14008:7626635,43644764 -g1,14008:10946174,43644764 -h1,14008:12605944,43644764:0,0,0 -k1,14008:32583028,43644764:19977084 -g1,14008:32583028,43644764 -) -(1,14008:6630773,44329619:25952256,431045,106246 -h1,14008:6630773,44329619:0,0,0 -g1,14008:7626635,44329619 -g1,14008:7958589,44329619 -g1,14008:8290543,44329619 -g1,14008:8622497,44329619 -g1,14008:8954451,44329619 -g1,14008:9286405,44329619 -g1,14008:9618359,44329619 -g1,14008:9950313,44329619 -g1,14008:10282267,44329619 -g1,14008:10614221,44329619 -g1,14008:10946175,44329619 -g1,14008:11942037,44329619 -g1,14008:13269853,44329619 -g1,14008:14265715,44329619 -g1,14008:15925485,44329619 -g1,14008:16921347,44329619 -g1,14008:17585255,44329619 -g1,14008:19576979,44329619 -g1,14008:19908933,44329619 -g1,14008:20240887,44329619 -g1,14008:20572841,44329619 -k1,14008:20572841,44329619:0 -h1,14008:22564565,44329619:0,0,0 -k1,14008:32583029,44329619:10018464 -g1,14008:32583029,44329619 -) -(1,14008:6630773,45014474:25952256,407923,106246 -h1,14008:6630773,45014474:0,0,0 -g1,14008:7626635,45014474 -g1,14008:9618359,45014474 -g1,14008:9950313,45014474 -g1,14008:10282267,45014474 -g1,14008:10614221,45014474 -g1,14008:10946175,45014474 -g1,14008:11278129,45014474 -g1,14008:11942037,45014474 -g1,14008:14265715,45014474 -g1,14008:14597669,45014474 -g1,14008:16921347,45014474 -g1,14008:17253301,45014474 -g1,14008:19576979,45014474 -g1,14008:20240887,45014474 -g1,14008:22896519,45014474 -h1,14008:23892381,45014474:0,0,0 -k1,14008:32583029,45014474:8690648 -g1,14008:32583029,45014474 -) -] -) -g1,14009:32583029,45120720 -g1,14009:6630773,45120720 -g1,14009:6630773,45120720 -g1,14009:32583029,45120720 -g1,14009:32583029,45120720 -) -] -(1,14009:32583029,45706769:0,0,0 -g1,14009:32583029,45706769 -) -) -] -(1,14009:6630773,47279633:25952256,0,0 -h1,14009:6630773,47279633:25952256,0,0 -) -] -(1,14009:4262630,4025873:0,0,0 -[1,14009:-473656,4025873:0,0,0 -(1,14009:-473656,-710413:0,0,0 -(1,14009:-473656,-710413:0,0,0 -g1,14009:-473656,-710413 -) -g1,14009:-473656,-710413 +] +g1,14007:6630773,4812305 +g1,14007:6630773,4812305 +g1,14007:8843268,4812305 +g1,14007:11066249,4812305 +g1,14007:13415059,4812305 +k1,14007:31387651,4812305:17972592 +) +) +] +[1,14007:6630773,45706769:25952256,40108032,0 +(1,14007:6630773,45706769:25952256,40108032,0 +(1,14007:6630773,45706769:0,0,0 +g1,14007:6630773,45706769 +) +[1,14007:6630773,45706769:25952256,40108032,0 +(1,13937:6630773,6254097:25952256,513147,134348 +k1,13935:8155187,6254097:135051 +k1,13935:9224781,6254097:135051 +k1,13935:10873058,6254097:135051 +k1,13935:11624147,6254097:135051 +k1,13935:12778283,6254097:135051 +k1,13935:14297454,6254097:135051 +k1,13935:17093922,6254097:135051 +k1,13935:18839193,6254097:135051 +k1,13935:20858404,6254097:135051 +k1,13935:23138448,6254097:135051 +k1,13935:23889537,6254097:135051 +k1,13935:25632186,6254097:135051 +k1,13935:28291684,6254097:135051 +k1,13935:29820686,6254097:135051 +k1,13935:32583029,6254097:0 +) +(1,13937:6630773,7119177:25952256,513147,115847 +g1,13935:10722185,7119177 +g1,13935:11549249,7119177 +g1,13935:13445205,7119177 +g1,13935:15207468,7119177 +(1,13935:15207468,7119177:0,414482,115847 +r1,14007:16972581,7119177:1765113,530329,115847 +k1,13935:15207468,7119177:-1765113 +) +(1,13935:15207468,7119177:1765113,414482,115847 +k1,13935:15207468,7119177:3277 +h1,13935:16969304,7119177:0,411205,112570 +) +g1,13935:17171810,7119177 +g1,13935:17902536,7119177 +g1,13935:18457625,7119177 +g1,13935:20550844,7119177 +g1,13935:22144024,7119177 +g1,13935:23239786,7119177 +k1,13937:32583029,7119177:7377163 +g1,13937:32583029,7119177 +) +(1,13939:6630773,7984257:25952256,505283,126483 +h1,13938:6630773,7984257:983040,0,0 +k1,13938:9447492,7984257:199866 +k1,13938:13221691,7984257:199865 +k1,13938:14706063,7984257:199866 +k1,13938:16109170,7984257:199866 +k1,13938:16840532,7984257:199865 +k1,13938:17811101,7984257:199866 +k1,13938:20445629,7984257:199865 +k1,13938:21176991,7984257:199865 +k1,13938:22661363,7984257:199866 +(1,13938:22661363,7984257:0,414482,115847 +r1,14007:24426476,7984257:1765113,530329,115847 +k1,13938:22661363,7984257:-1765113 +) +(1,13938:22661363,7984257:1765113,414482,115847 +k1,13938:22661363,7984257:3277 +h1,13938:24423199,7984257:0,411205,112570 +) +k1,13938:24800012,7984257:199866 +k1,13938:26018962,7984257:199865 +k1,13938:29984527,7984257:199866 +k1,13938:32583029,7984257:0 +) +(1,13939:6630773,8849337:25952256,473825,115847 +g1,13938:7361499,8849337 +g1,13938:7916588,8849337 +(1,13938:7916588,8849337:0,459977,115847 +r1,14007:10033413,8849337:2116825,575824,115847 +k1,13938:7916588,8849337:-2116825 +) +(1,13938:7916588,8849337:2116825,459977,115847 +k1,13938:7916588,8849337:3277 +h1,13938:10030136,8849337:0,411205,112570 +) +k1,13939:32583029,8849337:22497188 +g1,13939:32583029,8849337 +) +v1,13941:6630773,9534192:0,393216,0 +(1,13961:6630773,14606335:25952256,5465359,196608 +g1,13961:6630773,14606335 +g1,13961:6630773,14606335 +g1,13961:6434165,14606335 +(1,13961:6434165,14606335:0,5465359,196608 +r1,14007:32779637,14606335:26345472,5661967,196608 +k1,13961:6434165,14606335:-26345472 +) +(1,13961:6434165,14606335:26345472,5465359,196608 +[1,13961:6630773,14606335:25952256,5268751,0 +(1,13943:6630773,9762023:25952256,424439,106246 +(1,13942:6630773,9762023:0,0,0 +g1,13942:6630773,9762023 +g1,13942:6630773,9762023 +g1,13942:6303093,9762023 +(1,13942:6303093,9762023:0,0,0 +) +g1,13942:6630773,9762023 +) +k1,13943:6630773,9762023:0 +h1,13943:12605944,9762023:0,0,0 +k1,13943:32583028,9762023:19977084 +g1,13943:32583028,9762023 +) +(1,13944:6630773,10446878:25952256,431045,106246 +h1,13944:6630773,10446878:0,0,0 +k1,13944:6630773,10446878:0 +h1,13944:16589391,10446878:0,0,0 +k1,13944:32583029,10446878:15993638 +g1,13944:32583029,10446878 +) +(1,13948:6630773,11262805:25952256,424439,79822 +(1,13946:6630773,11262805:0,0,0 +g1,13946:6630773,11262805 +g1,13946:6630773,11262805 +g1,13946:6303093,11262805 +(1,13946:6303093,11262805:0,0,0 +) +g1,13946:6630773,11262805 +) +g1,13948:7626635,11262805 +g1,13948:8954451,11262805 +h1,13948:10614221,11262805:0,0,0 +k1,13948:32583029,11262805:21968808 +g1,13948:32583029,11262805 +) +(1,13950:6630773,12078732:25952256,431045,106246 +(1,13949:6630773,12078732:0,0,0 +g1,13949:6630773,12078732 +g1,13949:6630773,12078732 +g1,13949:6303093,12078732 +(1,13949:6303093,12078732:0,0,0 +) +g1,13949:6630773,12078732 +) +k1,13950:6630773,12078732:0 +h1,13950:16257437,12078732:0,0,0 +k1,13950:32583029,12078732:16325592 +g1,13950:32583029,12078732 +) +(1,13954:6630773,12894659:25952256,424439,79822 +(1,13952:6630773,12894659:0,0,0 +g1,13952:6630773,12894659 +g1,13952:6630773,12894659 +g1,13952:6303093,12894659 +(1,13952:6303093,12894659:0,0,0 +) +g1,13952:6630773,12894659 +) +g1,13954:7626635,12894659 +g1,13954:8954451,12894659 +h1,13954:10282267,12894659:0,0,0 +k1,13954:32583029,12894659:22300762 +g1,13954:32583029,12894659 +) +(1,13956:6630773,13710586:25952256,431045,106246 +(1,13955:6630773,13710586:0,0,0 +g1,13955:6630773,13710586 +g1,13955:6630773,13710586 +g1,13955:6303093,13710586 +(1,13955:6303093,13710586:0,0,0 +) +g1,13955:6630773,13710586 +) +k1,13956:6630773,13710586:0 +h1,13956:15261576,13710586:0,0,0 +k1,13956:32583028,13710586:17321452 +g1,13956:32583028,13710586 +) +(1,13960:6630773,14526513:25952256,424439,79822 +(1,13958:6630773,14526513:0,0,0 +g1,13958:6630773,14526513 +g1,13958:6630773,14526513 +g1,13958:6303093,14526513 +(1,13958:6303093,14526513:0,0,0 +) +g1,13958:6630773,14526513 +) +g1,13960:7626635,14526513 +g1,13960:8954451,14526513 +g1,13960:10282267,14526513 +g1,13960:11610083,14526513 +g1,13960:12937899,14526513 +g1,13960:14265715,14526513 +g1,13960:15593531,14526513 +h1,13960:16589393,14526513:0,0,0 +k1,13960:32583029,14526513:15993636 +g1,13960:32583029,14526513 +) +] +) +g1,13961:32583029,14606335 +g1,13961:6630773,14606335 +g1,13961:6630773,14606335 +g1,13961:32583029,14606335 +g1,13961:32583029,14606335 +) +h1,13961:6630773,14802943:0,0,0 +(1,13965:6630773,15668023:25952256,513147,134348 +h1,13964:6630773,15668023:983040,0,0 +k1,13964:8581640,15668023:207609 +k1,13964:10524642,15668023:207609 +k1,13964:11088110,15668023:207608 +k1,13964:13189709,15668023:207609 +k1,13964:15724501,15668023:207609 +k1,13964:16591402,15668023:207609 +k1,13964:17154871,15668023:207609 +k1,13964:19982608,15668023:207608 +k1,13964:22341764,15668023:207609 +k1,13964:22905233,15668023:207609 +k1,13964:25875185,15668023:207609 +k1,13964:28070500,15668023:207608 +k1,13964:30365431,15668023:207609 +k1,13964:31104537,15668023:207609 +k1,13964:32583029,15668023:0 +) +(1,13965:6630773,16533103:25952256,513147,126483 +g1,13964:8397623,16533103 +g1,13964:9367555,16533103 +g1,13964:12871765,16533103 +k1,13965:32583028,16533103:16994140 +g1,13965:32583028,16533103 +) +v1,13967:6630773,17217958:0,393216,0 +(1,13971:6630773,17558641:25952256,733899,196608 +g1,13971:6630773,17558641 +g1,13971:6630773,17558641 +g1,13971:6434165,17558641 +(1,13971:6434165,17558641:0,733899,196608 +r1,14007:32779637,17558641:26345472,930507,196608 +k1,13971:6434165,17558641:-26345472 +) +(1,13971:6434165,17558641:26345472,733899,196608 +[1,13971:6630773,17558641:25952256,537291,0 +(1,13969:6630773,17452395:25952256,431045,106246 +(1,13968:6630773,17452395:0,0,0 +g1,13968:6630773,17452395 +g1,13968:6630773,17452395 +g1,13968:6303093,17452395 +(1,13968:6303093,17452395:0,0,0 +) +g1,13968:6630773,17452395 +) +g1,13969:7958589,17452395 +g1,13969:8954451,17452395 +g1,13969:11942037,17452395 +g1,13969:12605945,17452395 +g1,13969:14929623,17452395 +g1,13969:16589393,17452395 +g1,13969:17253301,17452395 +h1,13969:21568702,17452395:0,0,0 +k1,13969:32583029,17452395:11014327 +g1,13969:32583029,17452395 +) +] +) +g1,13971:32583029,17558641 +g1,13971:6630773,17558641 +g1,13971:6630773,17558641 +g1,13971:32583029,17558641 +g1,13971:32583029,17558641 +) +h1,13971:6630773,17755249:0,0,0 +(1,13975:6630773,18620329:25952256,513147,134348 +h1,13974:6630773,18620329:983040,0,0 +k1,13974:11145951,18620329:166209 +k1,13974:12919759,18620329:166210 +k1,13974:14077528,18620329:166209 +k1,13974:17035571,18620329:166209 +k1,13974:17817819,18620329:166210 +k1,13974:19003113,18620329:166209 +k1,13974:20822795,18620329:166209 +k1,13974:22226979,18620329:166209 +k1,13974:23079351,18620329:166210 +k1,13974:24193211,18620329:166209 +k1,13974:26172146,18620329:166209 +k1,13974:29828803,18620329:166210 +k1,13974:30948561,18620329:166209 +k1,13974:32583029,18620329:0 +) +(1,13975:6630773,19485409:25952256,513147,134348 +k1,13974:8269556,19485409:263182 +k1,13974:9551822,19485409:263181 +k1,13974:15228933,19485409:263182 +k1,13974:16769411,19485409:263181 +k1,13974:17980244,19485409:263182 +k1,13974:21548406,19485409:263181 +k1,13974:22883757,19485409:263182 +k1,13974:25261129,19485409:263181 +k1,13974:26913674,19485409:263182 +k1,13974:29731448,19485409:263181 +k1,13974:30452727,19485409:263182 +k1,13974:31247405,19485409:263181 +k1,13974:32583029,19485409:0 +) +(1,13975:6630773,20350489:25952256,513147,134348 +k1,13974:10001088,20350489:161017 +k1,13974:10813533,20350489:161017 +k1,13974:12796451,20350489:161017 +k1,13974:13723583,20350489:161016 +k1,13974:14903685,20350489:161017 +k1,13974:18678357,20350489:161017 +k1,13974:20620643,20350489:161017 +k1,13974:21599549,20350489:161017 +k1,13974:23512343,20350489:161017 +k1,13974:24332651,20350489:161016 +k1,13974:25512753,20350489:161017 +k1,13974:28567840,20350489:161017 +k1,13974:31015408,20350489:161017 +k1,13974:32583029,20350489:0 +) +(1,13975:6630773,21215569:25952256,513147,7863 +k1,13974:7908271,21215569:258413 +k1,13974:11557518,21215569:258414 +k1,13974:12984438,21215569:258413 +k1,13974:14111203,21215569:258413 +k1,13974:15844832,21215569:258414 +k1,13974:16754673,21215569:258413 +k1,13974:19877665,21215569:258413 +k1,13974:21155163,21215569:258413 +k1,13974:24307647,21215569:258414 +k1,13974:25381328,21215569:258413 +k1,13974:26706012,21215569:258413 +k1,13974:28949512,21215569:258414 +k1,13974:30227010,21215569:258413 +k1,13974:32583029,21215569:0 +) +(1,13975:6630773,22080649:25952256,513147,134348 +k1,13974:10767296,22080649:181425 +k1,13974:12140166,22080649:181425 +k1,13974:12677452,22080649:181426 +k1,13974:15621220,22080649:181425 +k1,13974:18787155,22080649:181425 +k1,13974:19620008,22080649:181425 +k1,13974:21789141,22080649:181426 +k1,13974:23905189,22080649:181425 +k1,13974:26266997,22080649:181425 +k1,13974:27196188,22080649:181425 +k1,13974:28890840,22080649:181426 +k1,13974:30304342,22080649:181425 +k1,13974:32583029,22080649:0 +) +(1,13975:6630773,22945729:25952256,505283,134348 +h1,13974:7980159,22945729:0,0,0 +g1,13974:8179388,22945729 +g1,13974:9187987,22945729 +g1,13974:10885369,22945729 +h1,13974:12080746,22945729:0,0,0 +k1,13975:32583028,22945729:20242760 +g1,13975:32583028,22945729 +) +v1,13977:6630773,23630584:0,393216,0 +(1,13981:6630773,23971267:25952256,733899,196608 +g1,13981:6630773,23971267 +g1,13981:6630773,23971267 +g1,13981:6434165,23971267 +(1,13981:6434165,23971267:0,733899,196608 +r1,14007:32779637,23971267:26345472,930507,196608 +k1,13981:6434165,23971267:-26345472 +) +(1,13981:6434165,23971267:26345472,733899,196608 +[1,13981:6630773,23971267:25952256,537291,0 +(1,13979:6630773,23865021:25952256,431045,106246 +(1,13978:6630773,23865021:0,0,0 +g1,13978:6630773,23865021 +g1,13978:6630773,23865021 +g1,13978:6303093,23865021 +(1,13978:6303093,23865021:0,0,0 +) +g1,13978:6630773,23865021 +) +k1,13979:6630773,23865021:0 +g1,13979:9950313,23865021 +g1,13979:11942037,23865021 +g1,13979:12605945,23865021 +h1,13979:13269853,23865021:0,0,0 +k1,13979:32583029,23865021:19313176 +g1,13979:32583029,23865021 +) +] +) +g1,13981:32583029,23971267 +g1,13981:6630773,23971267 +g1,13981:6630773,23971267 +g1,13981:32583029,23971267 +g1,13981:32583029,23971267 +) +h1,13981:6630773,24167875:0,0,0 +(1,13984:6630773,37079515:25952256,12846104,0 +k1,13984:13183781,37079515:6553008 +h1,13983:13183781,37079515:0,0,0 +(1,13983:13183781,37079515:12846240,12846104,0 +(1,13983:13183781,37079515:12846136,12846136,0 +(1,13983:13183781,37079515:12846136,12846136,0 +(1,13983:13183781,37079515:0,12846136,0 +(1,13983:13183781,37079515:0,18945146,0 +(1,13983:13183781,37079515:18945146,18945146,0 +) +k1,13983:13183781,37079515:-18945146 +) +) +g1,13983:26029917,37079515 +) +) +) +g1,13984:26030021,37079515 +k1,13984:32583029,37079515:6553008 +) +(1,13991:6630773,37944595:25952256,513147,134348 +h1,13990:6630773,37944595:983040,0,0 +k1,13990:8453210,37944595:211562 +k1,13990:11273105,37944595:211562 +k1,13990:13086367,37944595:211562 +k1,13990:16602910,37944595:211562 +k1,13990:17833557,37944595:211562 +k1,13990:20488300,37944595:211561 +k1,13990:21231359,37944595:211562 +k1,13990:22058959,37944595:211562 +k1,13990:24452215,37944595:211562 +k1,13990:28282020,37944595:211562 +k1,13990:29887533,37944595:211562 +k1,13991:32583029,37944595:0 +) +(1,13991:6630773,38809675:25952256,513147,126483 +(1,13990:6630773,38809675:0,452978,115847 +r1,14007:9099310,38809675:2468537,568825,115847 +k1,13990:6630773,38809675:-2468537 +) +(1,13990:6630773,38809675:2468537,452978,115847 +k1,13990:6630773,38809675:3277 +h1,13990:9096033,38809675:0,411205,112570 +) +k1,13990:9569930,38809675:296950 +k1,13990:11752350,38809675:296949 +k1,13990:15813033,38809675:296950 +k1,13990:17129067,38809675:296949 +$1,13990:17129067,38809675 +$1,13990:17574056,38809675 +k1,13990:19275443,38809675:296950 +k1,13990:20520043,38809675:296949 +k1,13990:21836078,38809675:296950 +k1,13990:23724897,38809675:296949 +k1,13990:26122931,38809675:296950 +k1,13990:27079172,38809675:296949 +k1,13990:29600414,38809675:296950 +k1,13990:31088808,38809675:296949 +k1,13990:32583029,38809675:0 +) +(1,13991:6630773,39674755:25952256,505283,134348 +k1,13990:10810660,39674755:210371 +k1,13990:11648865,39674755:210370 +k1,13990:13062477,39674755:210371 +k1,13990:16107934,39674755:210370 +k1,13990:17712256,39674755:210371 +k1,13990:18278486,39674755:210370 +k1,13990:20361876,39674755:210371 +k1,13990:24337945,39674755:210370 +k1,13990:27233326,39674755:210371 +k1,13990:29098480,39674755:210370 +k1,13990:29840348,39674755:210371 +k1,13990:31426319,39674755:210370 +k1,13990:32583029,39674755:0 +) +(1,13991:6630773,40539835:25952256,513147,115847 +g1,13990:8600785,40539835 +g1,13990:9459306,40539835 +g1,13990:12275388,40539835 +g1,13990:13759123,40539835 +g1,13990:14625508,40539835 +(1,13990:14625508,40539835:0,414482,115847 +r1,14007:16742333,40539835:2116825,530329,115847 +k1,13990:14625508,40539835:-2116825 +) +(1,13990:14625508,40539835:2116825,414482,115847 +k1,13990:14625508,40539835:3277 +h1,13990:16739056,40539835:0,411205,112570 +) +k1,13991:32583029,40539835:15788268 +g1,13991:32583029,40539835 +) +v1,13993:6630773,41224690:0,393216,0 +(1,14007:6630773,45120720:25952256,4289246,196608 +g1,14007:6630773,45120720 +g1,14007:6630773,45120720 +g1,14007:6434165,45120720 +(1,14007:6434165,45120720:0,4289246,196608 +r1,14007:32779637,45120720:26345472,4485854,196608 +k1,14007:6434165,45120720:-26345472 +) +(1,14007:6434165,45120720:26345472,4289246,196608 +[1,14007:6630773,45120720:25952256,4092638,0 +(1,13995:6630773,41459127:25952256,431045,79822 +(1,13994:6630773,41459127:0,0,0 +g1,13994:6630773,41459127 +g1,13994:6630773,41459127 +g1,13994:6303093,41459127 +(1,13994:6303093,41459127:0,0,0 +) +g1,13994:6630773,41459127 +) +k1,13995:6630773,41459127:0 +h1,13995:9950313,41459127:0,0,0 +k1,13995:32583029,41459127:22632716 +g1,13995:32583029,41459127 +) +(1,14006:6630773,42275054:25952256,431045,106246 +(1,13997:6630773,42275054:0,0,0 +g1,13997:6630773,42275054 +g1,13997:6630773,42275054 +g1,13997:6303093,42275054 +(1,13997:6303093,42275054:0,0,0 +) +g1,13997:6630773,42275054 +) +g1,14006:7626635,42275054 +g1,14006:10614220,42275054 +g1,14006:11610082,42275054 +g1,14006:14597667,42275054 +h1,14006:16257437,42275054:0,0,0 +k1,14006:32583029,42275054:16325592 +g1,14006:32583029,42275054 +) +(1,14006:6630773,42959909:25952256,398014,0 +h1,14006:6630773,42959909:0,0,0 +h1,14006:7294681,42959909:0,0,0 +k1,14006:32583029,42959909:25288348 +g1,14006:32583029,42959909 +) +(1,14006:6630773,43644764:25952256,398014,106246 +h1,14006:6630773,43644764:0,0,0 +g1,14006:7626635,43644764 +g1,14006:10946174,43644764 +h1,14006:12605944,43644764:0,0,0 +k1,14006:32583028,43644764:19977084 +g1,14006:32583028,43644764 +) +(1,14006:6630773,44329619:25952256,431045,106246 +h1,14006:6630773,44329619:0,0,0 +g1,14006:7626635,44329619 +g1,14006:7958589,44329619 +g1,14006:8290543,44329619 +g1,14006:8622497,44329619 +g1,14006:8954451,44329619 +g1,14006:9286405,44329619 +g1,14006:9618359,44329619 +g1,14006:9950313,44329619 +g1,14006:10282267,44329619 +g1,14006:10614221,44329619 +g1,14006:10946175,44329619 +g1,14006:11942037,44329619 +g1,14006:13269853,44329619 +g1,14006:14265715,44329619 +g1,14006:15925485,44329619 +g1,14006:16921347,44329619 +g1,14006:17585255,44329619 +g1,14006:19576979,44329619 +g1,14006:19908933,44329619 +g1,14006:20240887,44329619 +g1,14006:20572841,44329619 +k1,14006:20572841,44329619:0 +h1,14006:22564565,44329619:0,0,0 +k1,14006:32583029,44329619:10018464 +g1,14006:32583029,44329619 +) +(1,14006:6630773,45014474:25952256,407923,106246 +h1,14006:6630773,45014474:0,0,0 +g1,14006:7626635,45014474 +g1,14006:9618359,45014474 +g1,14006:9950313,45014474 +g1,14006:10282267,45014474 +g1,14006:10614221,45014474 +g1,14006:10946175,45014474 +g1,14006:11278129,45014474 +g1,14006:11942037,45014474 +g1,14006:14265715,45014474 +g1,14006:14597669,45014474 +g1,14006:16921347,45014474 +g1,14006:17253301,45014474 +g1,14006:19576979,45014474 +g1,14006:20240887,45014474 +g1,14006:22896519,45014474 +h1,14006:23892381,45014474:0,0,0 +k1,14006:32583029,45014474:8690648 +g1,14006:32583029,45014474 +) +] +) +g1,14007:32583029,45120720 +g1,14007:6630773,45120720 +g1,14007:6630773,45120720 +g1,14007:32583029,45120720 +g1,14007:32583029,45120720 +) +] +(1,14007:32583029,45706769:0,0,0 +g1,14007:32583029,45706769 +) +) +] +(1,14007:6630773,47279633:25952256,0,0 +h1,14007:6630773,47279633:25952256,0,0 +) +] +(1,14007:4262630,4025873:0,0,0 +[1,14007:-473656,4025873:0,0,0 +(1,14007:-473656,-710413:0,0,0 +(1,14007:-473656,-710413:0,0,0 +g1,14007:-473656,-710413 +) +g1,14007:-473656,-710413 ) ] ) ] !20431 -}224 -Input:2369:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2370:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2371:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}225 Input:2372:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2373:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2374:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -247879,2207 +248078,2207 @@ Input:2396:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2397:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2398:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2399:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2400:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2401:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2402:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2864 -{225 -[1,14157:4262630,47279633:28320399,43253760,0 -(1,14157:4262630,4025873:0,0,0 -[1,14157:-473656,4025873:0,0,0 -(1,14157:-473656,-710413:0,0,0 -(1,14157:-473656,-644877:0,0,0 -k1,14157:-473656,-644877:-65536 +{226 +[1,14155:4262630,47279633:28320399,43253760,0 +(1,14155:4262630,4025873:0,0,0 +[1,14155:-473656,4025873:0,0,0 +(1,14155:-473656,-710413:0,0,0 +(1,14155:-473656,-644877:0,0,0 +k1,14155:-473656,-644877:-65536 ) -(1,14157:-473656,4736287:0,0,0 -k1,14157:-473656,4736287:5209943 +(1,14155:-473656,4736287:0,0,0 +k1,14155:-473656,4736287:5209943 ) -g1,14157:-473656,-710413 +g1,14155:-473656,-710413 ) ] ) -[1,14157:6630773,47279633:25952256,43253760,0 -[1,14157:6630773,4812305:25952256,786432,0 -(1,14157:6630773,4812305:25952256,513147,126483 -(1,14157:6630773,4812305:25952256,513147,126483 -g1,14157:3078558,4812305 -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,2439708:0,1703936,0 -k1,14157:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14157:2537886,2439708:1179648,16384,0 +[1,14155:6630773,47279633:25952256,43253760,0 +[1,14155:6630773,4812305:25952256,786432,0 +(1,14155:6630773,4812305:25952256,513147,126483 +(1,14155:6630773,4812305:25952256,513147,126483 +g1,14155:3078558,4812305 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,2439708:0,1703936,0 +k1,14155:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14155:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14157:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14155:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,2439708:0,1703936,0 -g1,14157:29030814,2439708 -g1,14157:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14157:36151628,1915420:16384,1179648,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,2439708:0,1703936,0 +g1,14155:29030814,2439708 +g1,14155:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14155:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14157:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14155:37855564,2439708:1179648,16384,0 ) ) -k1,14157:3078556,2439708:-34777008 +k1,14155:3078556,2439708:-34777008 ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,49800853:0,16384,2228224 -k1,14157:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14157:2537886,49800853:1179648,16384,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,49800853:0,16384,2228224 +k1,14155:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14155:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14157:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14155:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,49800853:0,16384,2228224 -g1,14157:29030814,49800853 -g1,14157:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14157:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14157:37855564,49800853:1179648,16384,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,49800853:0,16384,2228224 +g1,14155:29030814,49800853 +g1,14155:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14155:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14155:37855564,49800853:1179648,16384,0 ) -) -k1,14157:3078556,49800853:-34777008 -) -] -g1,14157:6630773,4812305 -k1,14157:19575446,4812305:11749296 -g1,14157:21198117,4812305 -g1,14157:21985204,4812305 -g1,14157:24539797,4812305 -g1,14157:25949476,4812305 -g1,14157:28728857,4812305 -g1,14157:29852144,4812305 -) -) -] -[1,14157:6630773,45706769:25952256,40108032,0 -(1,14157:6630773,45706769:25952256,40108032,0 -(1,14157:6630773,45706769:0,0,0 -g1,14157:6630773,45706769 -) -[1,14157:6630773,45706769:25952256,40108032,0 -v1,14009:6630773,6254097:0,393216,0 -(1,14009:6630773,7964490:25952256,2103609,196608 -g1,14009:6630773,7964490 -g1,14009:6630773,7964490 -g1,14009:6434165,7964490 -(1,14009:6434165,7964490:0,2103609,196608 -r1,14157:32779637,7964490:26345472,2300217,196608 -k1,14009:6434165,7964490:-26345472 -) -(1,14009:6434165,7964490:26345472,2103609,196608 -[1,14009:6630773,7964490:25952256,1907001,0 -(1,14008:6630773,6481928:25952256,424439,9908 -h1,14008:6630773,6481928:0,0,0 -g1,14008:7626635,6481928 -g1,14008:10946174,6481928 -g1,14008:11942036,6481928 -g1,14008:14265714,6481928 -g1,14008:14597668,6481928 -g1,14008:14929622,6481928 -h1,14008:16589392,6481928:0,0,0 -k1,14008:32583029,6481928:15993637 -g1,14008:32583029,6481928 -) -(1,14008:6630773,7166783:25952256,398014,0 -h1,14008:6630773,7166783:0,0,0 -g1,14008:7626635,7166783 -k1,14008:7626635,7166783:0 -h1,14008:8622497,7166783:0,0,0 -k1,14008:32583029,7166783:23960532 -g1,14008:32583029,7166783 -) -(1,14008:6630773,7851638:25952256,431045,112852 -h1,14008:6630773,7851638:0,0,0 -g1,14008:7626635,7851638 -g1,14008:10282267,7851638 -g1,14008:12605945,7851638 -g1,14008:12937899,7851638 -g1,14008:13601807,7851638 -g1,14008:15593531,7851638 -g1,14008:17585255,7851638 -g1,14008:19245025,7851638 -g1,14008:20904795,7851638 -g1,14008:22232611,7851638 -g1,14008:23892381,7851638 -g1,14008:25220197,7851638 -g1,14008:26548013,7851638 -g1,14008:27211921,7851638 -g1,14008:27875829,7851638 -h1,14008:28207783,7851638:0,0,0 -k1,14008:32583029,7851638:4375246 -g1,14008:32583029,7851638 -) -] -) -g1,14009:32583029,7964490 -g1,14009:6630773,7964490 -g1,14009:6630773,7964490 -g1,14009:32583029,7964490 -g1,14009:32583029,7964490 -) -h1,14009:6630773,8161098:0,0,0 -v1,14014:6630773,9026178:0,393216,0 -(1,14018:6630773,22501836:25952256,13868874,0 -g1,14018:6630773,22501836 -g1,14018:6237557,22501836 -r1,14157:6368629,22501836:131072,13868874,0 -g1,14018:6567858,22501836 -g1,14018:6764466,22501836 -[1,14018:6764466,22501836:25818563,13868874,0 -(1,14016:6764466,9387355:25818563,754393,260573 -(1,14014:6764466,9387355:0,754393,260573 -r1,14157:7856192,9387355:1091726,1014966,260573 -k1,14014:6764466,9387355:-1091726 -) -(1,14014:6764466,9387355:1091726,754393,260573 -) -k1,14014:8043156,9387355:186964 -k1,14014:8370836,9387355:327680 -k1,14014:11347668,9387355:186964 -(1,14014:11347668,9387355:0,452978,115847 -r1,14157:14519628,9387355:3171960,568825,115847 -k1,14014:11347668,9387355:-3171960 -) -(1,14014:11347668,9387355:3171960,452978,115847 -k1,14014:11347668,9387355:3277 -h1,14014:14516351,9387355:0,411205,112570 -) -k1,14014:14706592,9387355:186964 -k1,14014:15997838,9387355:186964 -k1,14014:16932568,9387355:186964 -k1,14014:18632759,9387355:186965 -k1,14014:19471151,9387355:186964 -k1,14014:21862091,9387355:186964 -k1,14014:25329787,9387355:186964 -k1,14014:28562864,9387355:186964 -k1,14014:31923737,9387355:186964 -k1,14014:32583029,9387355:0 -) -(1,14016:6764466,10252435:25818563,513147,134348 -k1,14014:8018876,10252435:235325 -k1,14014:9522977,10252435:235324 -k1,14014:10417594,10252435:235325 -k1,14014:11672003,10252435:235324 -k1,14014:14182083,10252435:235325 -k1,14014:15489576,10252435:235324 -k1,14014:19904132,10252435:235325 -k1,14014:21515057,10252435:235324 -k1,14014:22511910,10252435:235325 -k1,14014:24482627,10252435:235324 -k1,14014:27679524,10252435:235325 -k1,14014:30677191,10252435:235324 -k1,14014:31563944,10252435:235325 -k1,14014:32583029,10252435:0 -) -(1,14016:6764466,11117515:25818563,513147,134348 -k1,14014:9258719,11117515:228673 -k1,14014:11148073,11117515:228672 -k1,14015:11148073,11117515:0 -k1,14015:14166614,11117515:228673 -(1,14015:14166614,11117515:0,452978,115847 -r1,14157:15931727,11117515:1765113,568825,115847 -k1,14015:14166614,11117515:-1765113 -) -(1,14015:14166614,11117515:1765113,452978,115847 -k1,14015:14166614,11117515:3277 -h1,14015:15928450,11117515:0,411205,112570 -) -k1,14015:16160399,11117515:228672 -k1,14015:16920569,11117515:228673 -k1,14015:17505101,11117515:228672 -k1,14015:20376186,11117515:228673 -k1,14015:21414228,11117515:228672 -(1,14015:21414228,11117515:0,452978,115847 -r1,14157:22827629,11117515:1413401,568825,115847 -k1,14015:21414228,11117515:-1413401 -) -(1,14015:21414228,11117515:1413401,452978,115847 -k1,14015:21414228,11117515:3277 -h1,14015:22824352,11117515:0,411205,112570 -) -k1,14015:23056302,11117515:228673 -k1,14015:24569480,11117515:228672 -k1,14015:27139099,11117515:228673 -k1,14015:28138474,11117515:228672 -k1,14015:30326673,11117515:228673 -k1,14015:31839851,11117515:228672 -k1,14015:32583029,11117515:0 -) -(1,14016:6764466,11982595:25818563,513147,126483 -k1,14015:9250312,11982595:220266 -k1,14015:12095950,11982595:220266 -k1,14015:13335300,11982595:220265 -k1,14015:15714322,11982595:220266 -k1,14015:16601744,11982595:220266 -(1,14015:16601744,11982595:0,452978,115847 -r1,14157:19070281,11982595:2468537,568825,115847 -k1,14015:16601744,11982595:-2468537 -) -(1,14015:16601744,11982595:2468537,452978,115847 -k1,14015:16601744,11982595:3277 -h1,14015:19067004,11982595:0,411205,112570 -) -k1,14015:19290547,11982595:220266 -k1,14015:20796628,11982595:220265 -k1,14015:22410845,11982595:220266 -(1,14015:22410845,11982595:0,452978,115847 -r1,14157:25582805,11982595:3171960,568825,115847 -k1,14015:22410845,11982595:-3171960 -) -(1,14015:22410845,11982595:3171960,452978,115847 -k1,14015:22410845,11982595:3277 -h1,14015:25579528,11982595:0,411205,112570 -) -k1,14015:25976741,11982595:220266 -k1,14015:27269176,11982595:220266 -k1,14015:28956137,11982595:220265 -k1,14015:29792441,11982595:220266 -k1,14015:31215948,11982595:220266 -k1,14015:32583029,11982595:0 -) -(1,14016:6764466,12847675:25818563,513147,134348 -g1,14015:7421792,12847675 -g1,14015:8725303,12847675 -g1,14015:9672298,12847675 -g1,14015:13137186,12847675 -g1,14015:13987843,12847675 -g1,14015:16427748,12847675 -g1,14015:17646062,12847675 -g1,14015:20110871,12847675 -g1,14015:23271672,12847675 -g1,14015:24702978,12847675 -(1,14015:24702978,12847675:0,452978,115847 -r1,14157:27874938,12847675:3171960,568825,115847 -k1,14015:24702978,12847675:-3171960 -) -(1,14015:24702978,12847675:3171960,452978,115847 -k1,14015:24702978,12847675:3277 -h1,14015:27871661,12847675:0,411205,112570 -) -k1,14016:32583029,12847675:4448569 -g1,14016:32583029,12847675 -) -(1,14018:6764466,13712755:25818563,513147,126483 -h1,14017:6764466,13712755:983040,0,0 -k1,14017:9163855,13712755:219662 -k1,14017:12345089,13712755:219662 -k1,14017:14077977,13712755:219662 -k1,14017:16076941,13712755:219662 -k1,14017:17315688,13712755:219662 -k1,14017:20581464,13712755:219663 -k1,14017:23579853,13712755:219662 -k1,14017:24561043,13712755:219662 -(1,14017:24561043,13712755:0,459977,115847 -r1,14157:26677868,13712755:2116825,575824,115847 -k1,14017:24561043,13712755:-2116825 -) -(1,14017:24561043,13712755:2116825,459977,115847 -k1,14017:24561043,13712755:3277 -h1,14017:26674591,13712755:0,411205,112570 -) -k1,14017:26897530,13712755:219662 -k1,14017:28308637,13712755:219662 -(1,14017:28308637,13712755:0,452978,115847 -r1,14157:31480597,13712755:3171960,568825,115847 -k1,14017:28308637,13712755:-3171960 -) -(1,14017:28308637,13712755:3171960,452978,115847 -k1,14017:28308637,13712755:3277 -h1,14017:31477320,13712755:0,411205,112570 -) -k1,14017:31700259,13712755:219662 -k1,14018:32583029,13712755:0 -) -(1,14018:6764466,14577835:25818563,513147,126483 -k1,14017:8640698,14577835:281086 -k1,14017:9573212,14577835:281086 -k1,14017:10625001,14577835:281086 -k1,14017:13340668,14577835:281004 -k1,14017:15609461,14577835:281086 -k1,14017:16751690,14577835:281086 -k1,14017:18229463,14577835:281086 -k1,14017:20776130,14577835:281087 -k1,14017:22570442,14577835:281086 -k1,14017:23467566,14577835:281086 -k1,14017:24337165,14577835:281086 -(1,14017:24337165,14577835:0,452978,115847 -r1,14157:30322820,14577835:5985655,568825,115847 -k1,14017:24337165,14577835:-5985655 -) -(1,14017:24337165,14577835:5985655,452978,115847 -k1,14017:24337165,14577835:3277 -h1,14017:30319543,14577835:0,411205,112570 -) -k1,14017:30777576,14577835:281086 -k1,14017:31590159,14577835:281086 -k1,14018:32583029,14577835:0 -) -(1,14018:6764466,15442915:25818563,513147,115847 -k1,14017:8962885,15442915:278869 -k1,14017:9893183,15442915:278870 -k1,14017:11456558,15442915:278869 -k1,14017:13248653,15442915:278869 -k1,14017:14143560,15442915:278869 -k1,14017:14949339,15442915:278870 -(1,14017:14949339,15442915:0,452978,115847 -r1,14157:19528147,15442915:4578808,568825,115847 -k1,14017:14949339,15442915:-4578808 -) -(1,14017:14949339,15442915:4578808,452978,115847 -k1,14017:14949339,15442915:3277 -h1,14017:19524870,15442915:0,411205,112570 -) -k1,14017:19980686,15442915:278869 -k1,14017:21738703,15442915:278869 -(1,14017:21738703,15442915:0,414482,115847 -r1,14157:27020934,15442915:5282231,530329,115847 -k1,14017:21738703,15442915:-5282231 -) -(1,14017:21738703,15442915:5282231,414482,115847 -k1,14017:21738703,15442915:3277 -h1,14017:27017657,15442915:0,411205,112570 -) -k1,14017:27299803,15442915:278869 -k1,14017:28597758,15442915:278870 -k1,14017:30182760,15442915:278869 -k1,14017:31923737,15442915:278869 -k1,14017:32583029,15442915:0 -) -(1,14018:6764466,16307995:25818563,513147,95026 -k1,14017:8020748,16307995:237197 -k1,14017:10151934,16307995:237196 -k1,14017:13415584,16307995:237197 -k1,14017:14304208,16307995:237196 -k1,14017:15289171,16307995:237197 -k1,14017:15882228,16307995:237197 -k1,14017:18614380,16307995:237196 -k1,14017:19383074,16307995:237197 -k1,14017:21133496,16307995:237196 -k1,14017:22056855,16307995:237197 -k1,14017:22649912,16307995:237197 -k1,14017:25866375,16307995:237196 -k1,14017:27051223,16307995:237197 -k1,14017:28307504,16307995:237196 -k1,14017:31923737,16307995:237197 -k1,14017:32583029,16307995:0 -) -(1,14018:6764466,17173075:25818563,513147,134348 -k1,14017:10594152,17173075:218652 -k1,14017:11760454,17173075:218651 -k1,14017:12998191,17173075:218652 -k1,14017:16434661,17173075:218652 -k1,14017:18547302,17173075:218651 -k1,14017:20558364,17173075:218652 -k1,14017:21968460,17173075:218651 -k1,14017:24368806,17173075:218652 -k1,14017:25246750,17173075:218652 -k1,14017:26974040,17173075:218651 -k1,14017:31103881,17173075:218652 -k1,14018:32583029,17173075:0 -) -(1,14018:6764466,18038155:25818563,513147,115847 -(1,14017:6764466,18038155:0,452978,115847 -r1,14157:11343274,18038155:4578808,568825,115847 -k1,14017:6764466,18038155:-4578808 -) -(1,14017:6764466,18038155:4578808,452978,115847 -k1,14017:6764466,18038155:3277 -h1,14017:11339997,18038155:0,411205,112570 -) -k1,14017:11573875,18038155:230601 -k1,14017:12823560,18038155:230600 -k1,14017:16015733,18038155:230601 -k1,14017:17237893,18038155:230600 -k1,14017:18127786,18038155:230601 -k1,14017:19377472,18038155:230601 -k1,14017:21849403,18038155:230600 -k1,14017:23542112,18038155:230601 -k1,14017:25166664,18038155:230601 -k1,14017:26416349,18038155:230600 -k1,14017:28126753,18038155:230601 -k1,14017:29376438,18038155:230600 -k1,14017:31189078,18038155:230601 -k1,14017:32583029,18038155:0 -) -(1,14018:6764466,18903235:25818563,513147,134348 -k1,14017:8030796,18903235:247245 -k1,14017:10704185,18903235:247246 -k1,14017:11610722,18903235:247245 -k1,14017:12877052,18903235:247245 -k1,14017:14430430,18903235:247245 -k1,14017:16023786,18903235:247246 -k1,14017:17462476,18903235:247245 -k1,14017:18434549,18903235:247245 -k1,14017:19664834,18903235:247245 -k1,14017:21786410,18903235:247246 -k1,14017:24995227,18903235:247245 -k1,14017:27614220,18903235:247245 -k1,14017:28670835,18903235:247245 -k1,14017:29937166,18903235:247246 -k1,14017:31923737,18903235:247245 -k1,14017:32583029,18903235:0 -) -(1,14018:6764466,19768315:25818563,513147,115847 -k1,14017:8898165,19768315:239709 -k1,14017:11103954,19768315:239709 -k1,14017:13856313,19768315:239709 -(1,14017:13856313,19768315:0,414482,115847 -r1,14157:17028273,19768315:3171960,530329,115847 -k1,14017:13856313,19768315:-3171960 -) -(1,14017:13856313,19768315:3171960,414482,115847 -k1,14017:13856313,19768315:3277 -h1,14017:17024996,19768315:0,411205,112570 -) -k1,14017:17267983,19768315:239710 -k1,14017:18930479,19768315:239709 -k1,14017:19856350,19768315:239709 -k1,14017:23075326,19768315:239709 -k1,14017:24334120,19768315:239709 -k1,14017:26311844,19768315:239709 -k1,14017:27210846,19768315:239710 -k1,14017:28216671,19768315:239709 -k1,14017:30422460,19768315:239709 -k1,14017:31731717,19768315:239709 -k1,14018:32583029,19768315:0 -) -(1,14018:6764466,20633395:25818563,513147,134348 -k1,14017:7994930,20633395:240215 -k1,14017:8921306,20633395:240214 -k1,14017:9517381,20633395:240215 -k1,14017:12789946,20633395:240214 -k1,14017:14314667,20633395:240215 -k1,14017:15573966,20633395:240214 -k1,14017:19094913,20633395:240215 -k1,14017:22381240,20633395:240214 -k1,14017:23818798,20633395:240215 -k1,14017:24894596,20633395:240214 -k1,14017:25786239,20633395:240215 -k1,14017:27620289,20633395:240214 -k1,14017:31034413,20633395:240215 -k1,14017:32583029,20633395:0 -) -(1,14018:6764466,21498475:25818563,513147,134348 -k1,14017:8331759,21498475:181207 -k1,14017:9172258,21498475:181207 -k1,14017:11984736,21498475:181207 -k1,14017:12697440,21498475:181207 -k1,14017:14391873,21498475:181207 -k1,14017:17144057,21498475:181207 -k1,14017:18873881,21498475:181208 -k1,14017:20074173,21498475:181207 -k1,14017:23536112,21498475:181207 -k1,14017:26763432,21498475:181207 -k1,14017:29787591,21498475:181207 -k1,14017:31333913,21498475:181207 -k1,14018:32583029,21498475:0 -) -(1,14018:6764466,22363555:25818563,505283,138281 -g1,14017:10219524,22363555 -g1,14017:11749134,22363555 -g1,14017:12967448,22363555 -$1,14017:12967448,22363555 -$1,14017:13435375,22363555 -g1,14017:15858241,22363555 -g1,14017:18237853,22363555 -g1,14017:19184848,22363555 -k1,14018:32583029,22363555:9755690 -g1,14018:32583029,22363555 -) -] -g1,14018:32583029,22501836 -) -h1,14018:6630773,22501836:0,0,0 -v1,14021:6630773,23366916:0,393216,0 -(1,14022:6630773,29000042:25952256,6026342,0 -g1,14022:6630773,29000042 -g1,14022:6237557,29000042 -r1,14157:6368629,29000042:131072,6026342,0 -g1,14022:6567858,29000042 -g1,14022:6764466,29000042 -[1,14022:6764466,29000042:25818563,6026342,0 -(1,14022:6764466,23675214:25818563,701514,196608 -(1,14021:6764466,23675214:0,701514,196608 -r1,14157:7761522,23675214:997056,898122,196608 -k1,14021:6764466,23675214:-997056 -) -(1,14021:6764466,23675214:997056,701514,196608 -) -k1,14021:7970780,23675214:209258 -k1,14021:8298460,23675214:327680 -k1,14021:9704405,23675214:209258 -k1,14021:12898173,23675214:209258 -k1,14021:14620657,23675214:209258 -k1,14021:15591443,23675214:209258 -k1,14021:18066281,23675214:209258 -k1,14021:19223189,23675214:209257 -k1,14021:21420154,23675214:209258 -k1,14021:22647186,23675214:209258 -k1,14021:24047889,23675214:209258 -k1,14021:26691800,23675214:209248 -k1,14021:30702801,23675214:209258 -k1,14021:32583029,23675214:0 -) -(1,14022:6764466,24540294:25818563,513147,134348 -k1,14021:9130256,24540294:206379 -k1,14021:12582633,24540294:206379 -k1,14021:14621399,24540294:206379 -k1,14021:16328552,24540294:206379 -k1,14021:19297274,24540294:206379 -k1,14021:22309248,24540294:206378 -k1,14021:24832325,24540294:206379 -k1,14021:25697996,24540294:206379 -k1,14021:27599791,24540294:206379 -k1,14021:28465462,24540294:206379 -k1,14021:31316874,24540294:206379 -k1,14022:32583029,24540294:0 -) -(1,14022:6764466,25405374:25818563,513147,134348 -k1,14021:8074749,25405374:183064 -k1,14021:10125589,25405374:183064 -k1,14021:10695315,25405374:183064 -k1,14021:11478033,25405374:183064 -k1,14021:12852542,25405374:183064 -k1,14021:13848252,25405374:183064 -k1,14021:14659151,25405374:183064 -k1,14021:18335939,25405374:183064 -k1,14021:21111607,25405374:183064 -k1,14021:22313756,25405374:183064 -k1,14021:24521882,25405374:183064 -k1,14021:25236443,25405374:183064 -k1,14021:26078799,25405374:183064 -k1,14021:27071233,25405374:183064 -k1,14021:31510860,25405374:183064 -k1,14021:32583029,25405374:0 -) -(1,14022:6764466,26270454:25818563,513147,134348 -k1,14021:10564833,26270454:283705 -k1,14021:11952820,26270454:283705 -k1,14021:12984291,26270454:283705 -k1,14021:16477294,26270454:283705 -k1,14021:17708651,26270454:283706 -k1,14021:21655819,26270454:283705 -k1,14021:24532128,26270454:283705 -k1,14021:26282529,26270454:283705 -k1,14021:28885553,26270454:283705 -k1,14021:29820686,26270454:283705 -k1,14021:32583029,26270454:0 -) -(1,14022:6764466,27135534:25818563,513147,126483 -k1,14021:10962285,27135534:256484 -k1,14021:12137584,27135534:256484 -k1,14021:14833318,27135534:256484 -k1,14021:16475888,27135534:256484 -k1,14021:17119034,27135534:256484 -k1,14021:17907016,27135534:256485 -k1,14021:20450707,27135534:256484 -k1,14021:24206158,27135534:256484 -k1,14021:25114070,27135534:256484 -k1,14021:27237019,27135534:256484 -k1,14021:29576237,27135534:256484 -k1,14021:32583029,27135534:0 -) -(1,14022:6764466,28000614:25818563,513147,126483 -k1,14021:8388981,28000614:182068 -k1,14021:9957136,28000614:182069 -k1,14021:10951850,28000614:182068 -k1,14021:12153003,28000614:182068 -k1,14021:14600651,28000614:182068 -k1,14021:16295946,28000614:182069 -k1,14021:17239542,28000614:182068 -k1,14021:18843724,28000614:182051 -k1,14021:20217237,28000614:182068 -k1,14021:21731652,28000614:182068 -k1,14021:22541556,28000614:182069 -k1,14021:23855431,28000614:182068 -k1,14021:25578250,28000614:182068 -k1,14021:26707969,28000614:182068 -k1,14021:30553501,28000614:182069 -k1,14021:32124932,28000614:182068 -k1,14021:32583029,28000614:0 -) -(1,14022:6764466,28865694:25818563,513147,134348 -g1,14021:7495192,28865694 -g1,14021:10960080,28865694 -g1,14021:11810737,28865694 -g1,14021:13102451,28865694 -g1,14021:14320765,28865694 -g1,14021:17504504,28865694 -g1,14021:21905246,28865694 -g1,14021:22720513,28865694 -g1,14021:25499894,28865694 -k1,14022:32583029,28865694:5110503 -g1,14022:32583029,28865694 -) -] -g1,14022:32583029,29000042 -) -h1,14022:6630773,29000042:0,0,0 -v1,14025:6630773,29865122:0,393216,0 -(1,14157:6630773,45636456:25952256,16164550,0 -g1,14157:6630773,45636456 -g1,14157:6237557,45636456 -r1,14157:6368629,45636456:131072,16164550,0 -g1,14157:6567858,45636456 -g1,14157:6764466,45636456 -[1,14157:6764466,45636456:25818563,16164550,0 -(1,14026:6764466,30173420:25818563,701514,196608 -(1,14025:6764466,30173420:0,701514,196608 -r1,14157:7761522,30173420:997056,898122,196608 -k1,14025:6764466,30173420:-997056 -) -(1,14025:6764466,30173420:997056,701514,196608 -) -k1,14025:7959692,30173420:198170 -k1,14025:8287372,30173420:327680 -k1,14025:9682230,30173420:198171 -k1,14025:11482100,30173420:198170 -k1,14025:16692465,30173420:198171 -k1,14025:18128610,30173420:198170 -k1,14025:18986073,30173420:198171 -k1,14025:21365937,30173420:198170 -k1,14025:21919968,30173420:198171 -k1,14025:24880481,30173420:198170 -k1,14025:27344232,30173420:198171 -k1,14025:28490053,30173420:198170 -k1,14025:31649796,30173420:198171 -k1,14025:32583029,30173420:0 -) -(1,14026:6764466,31038500:25818563,513147,134348 -k1,14025:7336551,31038500:216225 -k1,14025:9435625,31038500:216225 -k1,14025:11496688,31038500:216225 -k1,14025:12372206,31038500:216226 -k1,14025:14576138,31038500:216225 -k1,14025:15810137,31038500:216225 -k1,14025:16557859,31038500:216225 -k1,14025:17535612,31038500:216225 -k1,14025:19933531,31038500:216225 -k1,14025:20564582,31038500:216208 -k1,14025:22863541,31038500:216225 -(1,14025:22863541,31038500:0,414482,115847 -r1,14157:26035501,31038500:3171960,530329,115847 -k1,14025:22863541,31038500:-3171960 -) -(1,14025:22863541,31038500:3171960,414482,115847 -k1,14025:22863541,31038500:3277 -h1,14025:26032224,31038500:0,411205,112570 -) -k1,14025:26425397,31038500:216226 -k1,14025:28527093,31038500:216225 -k1,14025:29611670,31038500:216225 -k1,14025:31225778,31038500:216225 -k1,14025:32583029,31038500:0 -) -(1,14026:6764466,31903580:25818563,473825,126483 -k1,14026:32583030,31903580:24184096 -g1,14026:32583030,31903580 -) -v1,14028:6764466,32588435:0,393216,0 -(1,14037:6764466,35108149:25818563,2912930,196608 -g1,14037:6764466,35108149 -g1,14037:6764466,35108149 -g1,14037:6567858,35108149 -(1,14037:6567858,35108149:0,2912930,196608 -r1,14157:32779637,35108149:26211779,3109538,196608 -k1,14037:6567857,35108149:-26211780 -) -(1,14037:6567858,35108149:26211779,2912930,196608 -[1,14037:6764466,35108149:25818563,2716322,0 -(1,14030:6764466,32816266:25818563,424439,106246 -(1,14029:6764466,32816266:0,0,0 -g1,14029:6764466,32816266 -g1,14029:6764466,32816266 -g1,14029:6436786,32816266 -(1,14029:6436786,32816266:0,0,0 -) -g1,14029:6764466,32816266 -) -k1,14030:6764466,32816266:0 -h1,14030:13403545,32816266:0,0,0 -k1,14030:32583029,32816266:19179484 -g1,14030:32583029,32816266 -) -(1,14036:6764466,33632193:25818563,431045,33029 -(1,14032:6764466,33632193:0,0,0 -g1,14032:6764466,33632193 -g1,14032:6764466,33632193 -g1,14032:6436786,33632193 -(1,14032:6436786,33632193:0,0,0 -) -g1,14032:6764466,33632193 -) -g1,14036:7760328,33632193 -h1,14036:11079867,33632193:0,0,0 -k1,14036:32583029,33632193:21503162 -g1,14036:32583029,33632193 -) -(1,14036:6764466,34317048:25818563,424439,6605 -h1,14036:6764466,34317048:0,0,0 -g1,14036:7760328,34317048 -g1,14036:8092282,34317048 -g1,14036:8424236,34317048 -g1,14036:8756190,34317048 -g1,14036:9088144,34317048 -g1,14036:9420098,34317048 -g1,14036:9752052,34317048 -g1,14036:10084006,34317048 -g1,14036:10415960,34317048 -g1,14036:13735499,34317048 -g1,14036:14067453,34317048 -g1,14036:14399407,34317048 -g1,14036:14731361,34317048 -g1,14036:15063315,34317048 -g1,14036:15395269,34317048 -g1,14036:15727223,34317048 -g1,14036:16059177,34317048 -g1,14036:16391131,34317048 -g1,14036:16723085,34317048 -g1,14036:17055039,34317048 -h1,14036:19378717,34317048:0,0,0 -k1,14036:32583029,34317048:13204312 -g1,14036:32583029,34317048 -) -(1,14036:6764466,35001903:25818563,424439,106246 -h1,14036:6764466,35001903:0,0,0 -g1,14036:7760328,35001903 -g1,14036:13735499,35001903 -g1,14036:14067453,35001903 -g1,14036:14399407,35001903 -g1,14036:14731361,35001903 -g1,14036:15063315,35001903 -g1,14036:15395269,35001903 -h1,14036:19378716,35001903:0,0,0 -k1,14036:32583029,35001903:13204313 -g1,14036:32583029,35001903 -) -] -) -g1,14037:32583029,35108149 -g1,14037:6764466,35108149 -g1,14037:6764466,35108149 -g1,14037:32583029,35108149 -g1,14037:32583029,35108149 -) -h1,14037:6764466,35304757:0,0,0 -(1,14041:6764466,36169837:25818563,513147,134348 -h1,14040:6764466,36169837:983040,0,0 -k1,14040:9108601,36169837:164408 -k1,14040:11355743,36169837:164408 -k1,14040:12051648,36169837:164408 -k1,14040:13150599,36169837:164408 -k1,14040:13966435,36169837:164408 -k1,14040:14486703,36169837:164408 -k1,14040:16809867,36169837:164408 -k1,14040:19948953,36169837:164407 -k1,14040:22091238,36169837:164408 -k1,14040:22914938,36169837:164408 -k1,14040:25092612,36169837:164408 -k1,14040:26603130,36169837:164408 -k1,14040:28161489,36169837:164408 -k1,14040:29344982,36169837:164408 -k1,14040:30815523,36169837:164408 -k1,14040:32583029,36169837:0 -) -(1,14041:6764466,37034917:25818563,513147,134348 -k1,14040:9100659,37034917:177437 -(1,14040:9100659,37034917:0,452978,115847 -r1,14157:12272619,37034917:3171960,568825,115847 -k1,14040:9100659,37034917:-3171960 -) -(1,14040:9100659,37034917:3171960,452978,115847 -k1,14040:9100659,37034917:3277 -h1,14040:12269342,37034917:0,411205,112570 -) -k1,14040:12450056,37034917:177437 -k1,14040:14550320,37034917:177438 -k1,14040:15746842,37034917:177437 -k1,14040:17662294,37034917:177437 -k1,14040:18499023,37034917:177437 -k1,14040:19695545,37034917:177437 -k1,14040:22568478,37034917:177437 -k1,14040:24259141,37034917:177437 -k1,14040:26134617,37034917:177438 -k1,14040:27331139,37034917:177437 -k1,14040:31274275,37034917:177437 -k1,14041:32583029,37034917:0 -) -(1,14041:6764466,37899997:25818563,505283,115847 -k1,14040:8265766,37899997:192546 -k1,14040:8989809,37899997:192546 -k1,14040:9953058,37899997:192546 -k1,14040:13482697,37899997:192546 -(1,14040:13482697,37899997:0,459977,115847 -r1,14157:15599522,37899997:2116825,575824,115847 -k1,14040:13482697,37899997:-2116825 -) -(1,14040:13482697,37899997:2116825,459977,115847 -k1,14040:13482697,37899997:3277 -h1,14040:15596245,37899997:0,411205,112570 -) -k1,14040:15792068,37899997:192546 -k1,14040:18541828,37899997:192545 -k1,14040:20128325,37899997:192546 -(1,14040:20128325,37899997:0,459977,115847 -r1,14157:22948574,37899997:2820249,575824,115847 -k1,14040:20128325,37899997:-2820249 -) -(1,14040:20128325,37899997:2820249,459977,115847 -k1,14040:20128325,37899997:3277 -h1,14040:22945297,37899997:0,411205,112570 -) -k1,14040:23348214,37899997:192546 -k1,14040:24732205,37899997:192546 -k1,14040:25943836,37899997:192546 -k1,14040:28377713,37899997:192546 -k1,14040:30424273,37899997:192546 -k1,14041:32583029,37899997:0 -) -(1,14041:6764466,38765077:25818563,513147,134348 -(1,14040:6764466,38765077:0,452978,115847 -r1,14157:9233003,38765077:2468537,568825,115847 -k1,14040:6764466,38765077:-2468537 -) -(1,14040:6764466,38765077:2468537,452978,115847 -k1,14040:6764466,38765077:3277 -h1,14040:9229726,38765077:0,411205,112570 -) -k1,14040:9584594,38765077:177921 -k1,14040:11685340,38765077:177920 -k1,14040:12882346,38765077:177921 -k1,14040:14798282,38765077:177921 -k1,14040:15635494,38765077:177920 -k1,14040:16832500,38765077:177921 -k1,14040:19705917,38765077:177921 -k1,14040:21397064,38765077:177921 -k1,14040:23273022,38765077:177920 -k1,14040:24470028,38765077:177921 -k1,14040:28413648,38765077:177921 -k1,14040:31102908,38765077:177920 -k1,14040:31812326,38765077:177921 -k1,14041:32583029,38765077:0 -) -(1,14041:6764466,39630157:25818563,513147,115847 -(1,14040:6764466,39630157:0,452978,115847 -r1,14157:9233003,39630157:2468537,568825,115847 -k1,14040:6764466,39630157:-2468537 -) -(1,14040:6764466,39630157:2468537,452978,115847 -k1,14040:6764466,39630157:3277 -h1,14040:9229726,39630157:0,411205,112570 -) -g1,14040:9432232,39630157 -g1,14040:11525451,39630157 -g1,14040:14281895,39630157 -g1,14040:15875075,39630157 -(1,14040:15875075,39630157:0,452978,115847 -r1,14157:19047035,39630157:3171960,568825,115847 -k1,14040:15875075,39630157:-3171960 -) -(1,14040:15875075,39630157:3171960,452978,115847 -k1,14040:15875075,39630157:3277 -h1,14040:19043758,39630157:0,411205,112570 -) -k1,14041:32583029,39630157:13276472 -g1,14041:32583029,39630157 -) -(1,14043:6764466,40495237:25818563,505283,126483 -h1,14042:6764466,40495237:983040,0,0 -g1,14042:8416628,40495237 -g1,14042:9147354,40495237 -g1,14042:10632399,40495237 -g1,14042:13461588,40495237 -g1,14042:14312245,40495237 -g1,14042:16332064,40495237 -g1,14042:17550378,40495237 -g1,14042:20380878,40495237 -g1,14042:21231535,40495237 -g1,14042:22178530,40495237 -g1,14042:23890985,40495237 -g1,14042:24706252,40495237 -g1,14042:25924566,40495237 -g1,14042:27223489,40495237 -g1,14042:28074146,40495237 -(1,14042:28074146,40495237:0,452978,115847 -r1,14157:29839259,40495237:1765113,568825,115847 -k1,14042:28074146,40495237:-1765113 -) -(1,14042:28074146,40495237:1765113,452978,115847 -k1,14042:28074146,40495237:3277 -h1,14042:29835982,40495237:0,411205,112570 -) -g1,14042:30038488,40495237 -g1,14042:30920602,40495237 -(1,14042:30920602,40495237:0,452978,115847 -r1,14157:32334003,40495237:1413401,568825,115847 -k1,14042:30920602,40495237:-1413401 -) -(1,14042:30920602,40495237:1413401,452978,115847 -k1,14042:30920602,40495237:3277 -h1,14042:32330726,40495237:0,411205,112570 -) -k1,14043:32583029,40495237:196598 -g1,14043:32583029,40495237 -) -v1,14045:6764466,41180092:0,393216,0 -(1,14052:6764466,43575340:25818563,2788464,196608 -g1,14052:6764466,43575340 -g1,14052:6764466,43575340 -g1,14052:6567858,43575340 -(1,14052:6567858,43575340:0,2788464,196608 -r1,14157:32779637,43575340:26211779,2985072,196608 -k1,14052:6567857,43575340:-26211780 -) -(1,14052:6567858,43575340:26211779,2788464,196608 -[1,14052:6764466,43575340:25818563,2591856,0 -(1,14047:6764466,41414529:25818563,431045,106246 -(1,14046:6764466,41414529:0,0,0 -g1,14046:6764466,41414529 -g1,14046:6764466,41414529 -g1,14046:6436786,41414529 -(1,14046:6436786,41414529:0,0,0 -) -g1,14046:6764466,41414529 -) -g1,14047:9420098,41414529 -g1,14047:10415960,41414529 -g1,14047:13403546,41414529 -g1,14047:14067454,41414529 -g1,14047:16391132,41414529 -g1,14047:18050902,41414529 -g1,14047:18714810,41414529 -k1,14047:18714810,41414529:0 -h1,14047:23030211,41414529:0,0,0 -k1,14047:32583029,41414529:9552818 -g1,14047:32583029,41414529 -) -(1,14048:6764466,42099384:25818563,424439,106246 -h1,14048:6764466,42099384:0,0,0 -g1,14048:7096420,42099384 -g1,14048:7428374,42099384 -g1,14048:7760328,42099384 -g1,14048:8092282,42099384 -g1,14048:8424236,42099384 -g1,14048:8756190,42099384 -g1,14048:9088144,42099384 -g1,14048:9420098,42099384 -g1,14048:9752052,42099384 -g1,14048:10084006,42099384 -g1,14048:10415960,42099384 -g1,14048:10747914,42099384 -g1,14048:11079868,42099384 -g1,14048:11411822,42099384 -g1,14048:14731361,42099384 -g1,14048:15395269,42099384 -g1,14048:19046763,42099384 -g1,14048:19710671,42099384 -h1,14048:25353888,42099384:0,0,0 -k1,14048:32583029,42099384:7229141 -g1,14048:32583029,42099384 -) -(1,14049:6764466,42784239:25818563,431045,106246 -h1,14049:6764466,42784239:0,0,0 -g1,14049:9088144,42784239 -g1,14049:9420098,42784239 -g1,14049:10415960,42784239 -g1,14049:13403546,42784239 -g1,14049:14067454,42784239 -g1,14049:16391132,42784239 -g1,14049:18050902,42784239 -g1,14049:18714810,42784239 -k1,14049:18714810,42784239:0 -h1,14049:23030211,42784239:0,0,0 -k1,14049:32583029,42784239:9552818 -g1,14049:32583029,42784239 -) -(1,14050:6764466,43469094:25818563,424439,106246 -h1,14050:6764466,43469094:0,0,0 -g1,14050:7096420,43469094 -g1,14050:7428374,43469094 -g1,14050:7760328,43469094 -g1,14050:8092282,43469094 -g1,14050:8424236,43469094 -g1,14050:8756190,43469094 -g1,14050:9088144,43469094 -g1,14050:9420098,43469094 -g1,14050:9752052,43469094 -g1,14050:10084006,43469094 -g1,14050:10415960,43469094 -g1,14050:10747914,43469094 -g1,14050:11079868,43469094 -g1,14050:11411822,43469094 -g1,14050:14731361,43469094 -g1,14050:15395269,43469094 -g1,14050:19046763,43469094 -g1,14050:19710671,43469094 -h1,14050:23362164,43469094:0,0,0 -k1,14050:32583029,43469094:9220865 -g1,14050:32583029,43469094 -) -] -) -g1,14052:32583029,43575340 -g1,14052:6764466,43575340 -g1,14052:6764466,43575340 -g1,14052:32583029,43575340 -g1,14052:32583029,43575340 -) -h1,14052:6764466,43771948:0,0,0 -(1,14056:6764466,44637028:25818563,513147,115847 -h1,14055:6764466,44637028:983040,0,0 -k1,14055:8509175,44637028:133834 -(1,14055:8509175,44637028:0,459977,115847 -r1,14157:10977712,44637028:2468537,575824,115847 -k1,14055:8509175,44637028:-2468537 -) -(1,14055:8509175,44637028:2468537,459977,115847 -k1,14055:8509175,44637028:3277 -h1,14055:10974435,44637028:0,411205,112570 -) -k1,14055:11111546,44637028:133834 -k1,14055:12113731,44637028:133833 -k1,14055:13760791,44637028:133834 -(1,14055:13760791,44637028:0,452978,115847 -r1,14157:19746446,44637028:5985655,568825,115847 -k1,14055:13760791,44637028:-5985655 -) -(1,14055:13760791,44637028:5985655,452978,115847 -k1,14055:13760791,44637028:3277 -h1,14055:19743169,44637028:0,411205,112570 -) -k1,14055:20053950,44637028:133834 -k1,14055:21604672,44637028:133834 -k1,14055:24700077,44637028:133833 -k1,14055:25781562,44637028:133834 -k1,14055:29108310,44637028:133834 -k1,14055:32583029,44637028:0 -) -(1,14056:6764466,45502108:25818563,513147,134348 -k1,14055:8002440,45502108:246414 -k1,14055:9826307,45502108:246415 -k1,14055:12361894,45502108:246414 -(1,14055:12361894,45502108:0,435480,115847 -r1,14157:14478719,45502108:2116825,551327,115847 -k1,14055:12361894,45502108:-2116825 -) -(1,14055:12361894,45502108:2116825,435480,115847 -k1,14055:12361894,45502108:3277 -h1,14055:14475442,45502108:0,411205,112570 -) -k1,14055:14725133,45502108:246414 -k1,14055:16967119,45502108:246415 -k1,14055:17671630,45502108:246414 -k1,14055:18604207,45502108:246415 -k1,14055:19869706,45502108:246414 -k1,14055:22403982,45502108:246414 -k1,14055:23333282,45502108:246415 -k1,14055:26732633,45502108:246414 -k1,14055:27665209,45502108:246414 -k1,14055:29015906,45502108:246415 -k1,14055:30010086,45502108:246414 -k1,14055:32583029,45502108:0 -) -] -g1,14157:32583029,45636456 -) -] -(1,14157:32583029,45706769:0,0,0 -g1,14157:32583029,45706769 -) -) -] -(1,14157:6630773,47279633:25952256,0,0 -h1,14157:6630773,47279633:25952256,0,0 -) -] -(1,14157:4262630,4025873:0,0,0 -[1,14157:-473656,4025873:0,0,0 -(1,14157:-473656,-710413:0,0,0 -(1,14157:-473656,-710413:0,0,0 -g1,14157:-473656,-710413 -) -g1,14157:-473656,-710413 +) +k1,14155:3078556,49800853:-34777008 +) +] +g1,14155:6630773,4812305 +k1,14155:19575446,4812305:11749296 +g1,14155:21198117,4812305 +g1,14155:21985204,4812305 +g1,14155:24539797,4812305 +g1,14155:25949476,4812305 +g1,14155:28728857,4812305 +g1,14155:29852144,4812305 +) +) +] +[1,14155:6630773,45706769:25952256,40108032,0 +(1,14155:6630773,45706769:25952256,40108032,0 +(1,14155:6630773,45706769:0,0,0 +g1,14155:6630773,45706769 +) +[1,14155:6630773,45706769:25952256,40108032,0 +v1,14007:6630773,6254097:0,393216,0 +(1,14007:6630773,7964490:25952256,2103609,196608 +g1,14007:6630773,7964490 +g1,14007:6630773,7964490 +g1,14007:6434165,7964490 +(1,14007:6434165,7964490:0,2103609,196608 +r1,14155:32779637,7964490:26345472,2300217,196608 +k1,14007:6434165,7964490:-26345472 +) +(1,14007:6434165,7964490:26345472,2103609,196608 +[1,14007:6630773,7964490:25952256,1907001,0 +(1,14006:6630773,6481928:25952256,424439,9908 +h1,14006:6630773,6481928:0,0,0 +g1,14006:7626635,6481928 +g1,14006:10946174,6481928 +g1,14006:11942036,6481928 +g1,14006:14265714,6481928 +g1,14006:14597668,6481928 +g1,14006:14929622,6481928 +h1,14006:16589392,6481928:0,0,0 +k1,14006:32583029,6481928:15993637 +g1,14006:32583029,6481928 +) +(1,14006:6630773,7166783:25952256,398014,0 +h1,14006:6630773,7166783:0,0,0 +g1,14006:7626635,7166783 +k1,14006:7626635,7166783:0 +h1,14006:8622497,7166783:0,0,0 +k1,14006:32583029,7166783:23960532 +g1,14006:32583029,7166783 +) +(1,14006:6630773,7851638:25952256,431045,112852 +h1,14006:6630773,7851638:0,0,0 +g1,14006:7626635,7851638 +g1,14006:10282267,7851638 +g1,14006:12605945,7851638 +g1,14006:12937899,7851638 +g1,14006:13601807,7851638 +g1,14006:15593531,7851638 +g1,14006:17585255,7851638 +g1,14006:19245025,7851638 +g1,14006:20904795,7851638 +g1,14006:22232611,7851638 +g1,14006:23892381,7851638 +g1,14006:25220197,7851638 +g1,14006:26548013,7851638 +g1,14006:27211921,7851638 +g1,14006:27875829,7851638 +h1,14006:28207783,7851638:0,0,0 +k1,14006:32583029,7851638:4375246 +g1,14006:32583029,7851638 +) +] +) +g1,14007:32583029,7964490 +g1,14007:6630773,7964490 +g1,14007:6630773,7964490 +g1,14007:32583029,7964490 +g1,14007:32583029,7964490 +) +h1,14007:6630773,8161098:0,0,0 +v1,14012:6630773,9026178:0,393216,0 +(1,14016:6630773,22501836:25952256,13868874,0 +g1,14016:6630773,22501836 +g1,14016:6237557,22501836 +r1,14155:6368629,22501836:131072,13868874,0 +g1,14016:6567858,22501836 +g1,14016:6764466,22501836 +[1,14016:6764466,22501836:25818563,13868874,0 +(1,14014:6764466,9387355:25818563,754393,260573 +(1,14012:6764466,9387355:0,754393,260573 +r1,14155:7856192,9387355:1091726,1014966,260573 +k1,14012:6764466,9387355:-1091726 +) +(1,14012:6764466,9387355:1091726,754393,260573 +) +k1,14012:8043156,9387355:186964 +k1,14012:8370836,9387355:327680 +k1,14012:11347668,9387355:186964 +(1,14012:11347668,9387355:0,452978,115847 +r1,14155:14519628,9387355:3171960,568825,115847 +k1,14012:11347668,9387355:-3171960 +) +(1,14012:11347668,9387355:3171960,452978,115847 +k1,14012:11347668,9387355:3277 +h1,14012:14516351,9387355:0,411205,112570 +) +k1,14012:14706592,9387355:186964 +k1,14012:15997838,9387355:186964 +k1,14012:16932568,9387355:186964 +k1,14012:18632759,9387355:186965 +k1,14012:19471151,9387355:186964 +k1,14012:21862091,9387355:186964 +k1,14012:25329787,9387355:186964 +k1,14012:28562864,9387355:186964 +k1,14012:31923737,9387355:186964 +k1,14012:32583029,9387355:0 +) +(1,14014:6764466,10252435:25818563,513147,134348 +k1,14012:8018876,10252435:235325 +k1,14012:9522977,10252435:235324 +k1,14012:10417594,10252435:235325 +k1,14012:11672003,10252435:235324 +k1,14012:14182083,10252435:235325 +k1,14012:15489576,10252435:235324 +k1,14012:19904132,10252435:235325 +k1,14012:21515057,10252435:235324 +k1,14012:22511910,10252435:235325 +k1,14012:24482627,10252435:235324 +k1,14012:27679524,10252435:235325 +k1,14012:30677191,10252435:235324 +k1,14012:31563944,10252435:235325 +k1,14012:32583029,10252435:0 +) +(1,14014:6764466,11117515:25818563,513147,134348 +k1,14012:9258719,11117515:228673 +k1,14012:11148073,11117515:228672 +k1,14013:11148073,11117515:0 +k1,14013:14166614,11117515:228673 +(1,14013:14166614,11117515:0,452978,115847 +r1,14155:15931727,11117515:1765113,568825,115847 +k1,14013:14166614,11117515:-1765113 +) +(1,14013:14166614,11117515:1765113,452978,115847 +k1,14013:14166614,11117515:3277 +h1,14013:15928450,11117515:0,411205,112570 +) +k1,14013:16160399,11117515:228672 +k1,14013:16920569,11117515:228673 +k1,14013:17505101,11117515:228672 +k1,14013:20376186,11117515:228673 +k1,14013:21414228,11117515:228672 +(1,14013:21414228,11117515:0,452978,115847 +r1,14155:22827629,11117515:1413401,568825,115847 +k1,14013:21414228,11117515:-1413401 +) +(1,14013:21414228,11117515:1413401,452978,115847 +k1,14013:21414228,11117515:3277 +h1,14013:22824352,11117515:0,411205,112570 +) +k1,14013:23056302,11117515:228673 +k1,14013:24569480,11117515:228672 +k1,14013:27139099,11117515:228673 +k1,14013:28138474,11117515:228672 +k1,14013:30326673,11117515:228673 +k1,14013:31839851,11117515:228672 +k1,14013:32583029,11117515:0 +) +(1,14014:6764466,11982595:25818563,513147,126483 +k1,14013:9250312,11982595:220266 +k1,14013:12095950,11982595:220266 +k1,14013:13335300,11982595:220265 +k1,14013:15714322,11982595:220266 +k1,14013:16601744,11982595:220266 +(1,14013:16601744,11982595:0,452978,115847 +r1,14155:19070281,11982595:2468537,568825,115847 +k1,14013:16601744,11982595:-2468537 +) +(1,14013:16601744,11982595:2468537,452978,115847 +k1,14013:16601744,11982595:3277 +h1,14013:19067004,11982595:0,411205,112570 +) +k1,14013:19290547,11982595:220266 +k1,14013:20796628,11982595:220265 +k1,14013:22410845,11982595:220266 +(1,14013:22410845,11982595:0,452978,115847 +r1,14155:25582805,11982595:3171960,568825,115847 +k1,14013:22410845,11982595:-3171960 +) +(1,14013:22410845,11982595:3171960,452978,115847 +k1,14013:22410845,11982595:3277 +h1,14013:25579528,11982595:0,411205,112570 +) +k1,14013:25976741,11982595:220266 +k1,14013:27269176,11982595:220266 +k1,14013:28956137,11982595:220265 +k1,14013:29792441,11982595:220266 +k1,14013:31215948,11982595:220266 +k1,14013:32583029,11982595:0 +) +(1,14014:6764466,12847675:25818563,513147,134348 +g1,14013:7421792,12847675 +g1,14013:8725303,12847675 +g1,14013:9672298,12847675 +g1,14013:13137186,12847675 +g1,14013:13987843,12847675 +g1,14013:16427748,12847675 +g1,14013:17646062,12847675 +g1,14013:20110871,12847675 +g1,14013:23271672,12847675 +g1,14013:24702978,12847675 +(1,14013:24702978,12847675:0,452978,115847 +r1,14155:27874938,12847675:3171960,568825,115847 +k1,14013:24702978,12847675:-3171960 +) +(1,14013:24702978,12847675:3171960,452978,115847 +k1,14013:24702978,12847675:3277 +h1,14013:27871661,12847675:0,411205,112570 +) +k1,14014:32583029,12847675:4448569 +g1,14014:32583029,12847675 +) +(1,14016:6764466,13712755:25818563,513147,126483 +h1,14015:6764466,13712755:983040,0,0 +k1,14015:9163855,13712755:219662 +k1,14015:12345089,13712755:219662 +k1,14015:14077977,13712755:219662 +k1,14015:16076941,13712755:219662 +k1,14015:17315688,13712755:219662 +k1,14015:20581464,13712755:219663 +k1,14015:23579853,13712755:219662 +k1,14015:24561043,13712755:219662 +(1,14015:24561043,13712755:0,459977,115847 +r1,14155:26677868,13712755:2116825,575824,115847 +k1,14015:24561043,13712755:-2116825 +) +(1,14015:24561043,13712755:2116825,459977,115847 +k1,14015:24561043,13712755:3277 +h1,14015:26674591,13712755:0,411205,112570 +) +k1,14015:26897530,13712755:219662 +k1,14015:28308637,13712755:219662 +(1,14015:28308637,13712755:0,452978,115847 +r1,14155:31480597,13712755:3171960,568825,115847 +k1,14015:28308637,13712755:-3171960 +) +(1,14015:28308637,13712755:3171960,452978,115847 +k1,14015:28308637,13712755:3277 +h1,14015:31477320,13712755:0,411205,112570 +) +k1,14015:31700259,13712755:219662 +k1,14016:32583029,13712755:0 +) +(1,14016:6764466,14577835:25818563,513147,126483 +k1,14015:8640698,14577835:281086 +k1,14015:9573212,14577835:281086 +k1,14015:10625001,14577835:281086 +k1,14015:13340668,14577835:281004 +k1,14015:15609461,14577835:281086 +k1,14015:16751690,14577835:281086 +k1,14015:18229463,14577835:281086 +k1,14015:20776130,14577835:281087 +k1,14015:22570442,14577835:281086 +k1,14015:23467566,14577835:281086 +k1,14015:24337165,14577835:281086 +(1,14015:24337165,14577835:0,452978,115847 +r1,14155:30322820,14577835:5985655,568825,115847 +k1,14015:24337165,14577835:-5985655 +) +(1,14015:24337165,14577835:5985655,452978,115847 +k1,14015:24337165,14577835:3277 +h1,14015:30319543,14577835:0,411205,112570 +) +k1,14015:30777576,14577835:281086 +k1,14015:31590159,14577835:281086 +k1,14016:32583029,14577835:0 +) +(1,14016:6764466,15442915:25818563,513147,115847 +k1,14015:8962885,15442915:278869 +k1,14015:9893183,15442915:278870 +k1,14015:11456558,15442915:278869 +k1,14015:13248653,15442915:278869 +k1,14015:14143560,15442915:278869 +k1,14015:14949339,15442915:278870 +(1,14015:14949339,15442915:0,452978,115847 +r1,14155:19528147,15442915:4578808,568825,115847 +k1,14015:14949339,15442915:-4578808 +) +(1,14015:14949339,15442915:4578808,452978,115847 +k1,14015:14949339,15442915:3277 +h1,14015:19524870,15442915:0,411205,112570 +) +k1,14015:19980686,15442915:278869 +k1,14015:21738703,15442915:278869 +(1,14015:21738703,15442915:0,414482,115847 +r1,14155:27020934,15442915:5282231,530329,115847 +k1,14015:21738703,15442915:-5282231 +) +(1,14015:21738703,15442915:5282231,414482,115847 +k1,14015:21738703,15442915:3277 +h1,14015:27017657,15442915:0,411205,112570 +) +k1,14015:27299803,15442915:278869 +k1,14015:28597758,15442915:278870 +k1,14015:30182760,15442915:278869 +k1,14015:31923737,15442915:278869 +k1,14015:32583029,15442915:0 +) +(1,14016:6764466,16307995:25818563,513147,95026 +k1,14015:8020748,16307995:237197 +k1,14015:10151934,16307995:237196 +k1,14015:13415584,16307995:237197 +k1,14015:14304208,16307995:237196 +k1,14015:15289171,16307995:237197 +k1,14015:15882228,16307995:237197 +k1,14015:18614380,16307995:237196 +k1,14015:19383074,16307995:237197 +k1,14015:21133496,16307995:237196 +k1,14015:22056855,16307995:237197 +k1,14015:22649912,16307995:237197 +k1,14015:25866375,16307995:237196 +k1,14015:27051223,16307995:237197 +k1,14015:28307504,16307995:237196 +k1,14015:31923737,16307995:237197 +k1,14015:32583029,16307995:0 +) +(1,14016:6764466,17173075:25818563,513147,134348 +k1,14015:10594152,17173075:218652 +k1,14015:11760454,17173075:218651 +k1,14015:12998191,17173075:218652 +k1,14015:16434661,17173075:218652 +k1,14015:18547302,17173075:218651 +k1,14015:20558364,17173075:218652 +k1,14015:21968460,17173075:218651 +k1,14015:24368806,17173075:218652 +k1,14015:25246750,17173075:218652 +k1,14015:26974040,17173075:218651 +k1,14015:31103881,17173075:218652 +k1,14016:32583029,17173075:0 +) +(1,14016:6764466,18038155:25818563,513147,115847 +(1,14015:6764466,18038155:0,452978,115847 +r1,14155:11343274,18038155:4578808,568825,115847 +k1,14015:6764466,18038155:-4578808 +) +(1,14015:6764466,18038155:4578808,452978,115847 +k1,14015:6764466,18038155:3277 +h1,14015:11339997,18038155:0,411205,112570 +) +k1,14015:11573875,18038155:230601 +k1,14015:12823560,18038155:230600 +k1,14015:16015733,18038155:230601 +k1,14015:17237893,18038155:230600 +k1,14015:18127786,18038155:230601 +k1,14015:19377472,18038155:230601 +k1,14015:21849403,18038155:230600 +k1,14015:23542112,18038155:230601 +k1,14015:25166664,18038155:230601 +k1,14015:26416349,18038155:230600 +k1,14015:28126753,18038155:230601 +k1,14015:29376438,18038155:230600 +k1,14015:31189078,18038155:230601 +k1,14015:32583029,18038155:0 +) +(1,14016:6764466,18903235:25818563,513147,134348 +k1,14015:8030796,18903235:247245 +k1,14015:10704185,18903235:247246 +k1,14015:11610722,18903235:247245 +k1,14015:12877052,18903235:247245 +k1,14015:14430430,18903235:247245 +k1,14015:16023786,18903235:247246 +k1,14015:17462476,18903235:247245 +k1,14015:18434549,18903235:247245 +k1,14015:19664834,18903235:247245 +k1,14015:21786410,18903235:247246 +k1,14015:24995227,18903235:247245 +k1,14015:27614220,18903235:247245 +k1,14015:28670835,18903235:247245 +k1,14015:29937166,18903235:247246 +k1,14015:31923737,18903235:247245 +k1,14015:32583029,18903235:0 +) +(1,14016:6764466,19768315:25818563,513147,115847 +k1,14015:8898165,19768315:239709 +k1,14015:11103954,19768315:239709 +k1,14015:13856313,19768315:239709 +(1,14015:13856313,19768315:0,414482,115847 +r1,14155:17028273,19768315:3171960,530329,115847 +k1,14015:13856313,19768315:-3171960 +) +(1,14015:13856313,19768315:3171960,414482,115847 +k1,14015:13856313,19768315:3277 +h1,14015:17024996,19768315:0,411205,112570 +) +k1,14015:17267983,19768315:239710 +k1,14015:18930479,19768315:239709 +k1,14015:19856350,19768315:239709 +k1,14015:23075326,19768315:239709 +k1,14015:24334120,19768315:239709 +k1,14015:26311844,19768315:239709 +k1,14015:27210846,19768315:239710 +k1,14015:28216671,19768315:239709 +k1,14015:30422460,19768315:239709 +k1,14015:31731717,19768315:239709 +k1,14016:32583029,19768315:0 +) +(1,14016:6764466,20633395:25818563,513147,134348 +k1,14015:7994930,20633395:240215 +k1,14015:8921306,20633395:240214 +k1,14015:9517381,20633395:240215 +k1,14015:12789946,20633395:240214 +k1,14015:14314667,20633395:240215 +k1,14015:15573966,20633395:240214 +k1,14015:19094913,20633395:240215 +k1,14015:22381240,20633395:240214 +k1,14015:23818798,20633395:240215 +k1,14015:24894596,20633395:240214 +k1,14015:25786239,20633395:240215 +k1,14015:27620289,20633395:240214 +k1,14015:31034413,20633395:240215 +k1,14015:32583029,20633395:0 +) +(1,14016:6764466,21498475:25818563,513147,134348 +k1,14015:8331759,21498475:181207 +k1,14015:9172258,21498475:181207 +k1,14015:11984736,21498475:181207 +k1,14015:12697440,21498475:181207 +k1,14015:14391873,21498475:181207 +k1,14015:17144057,21498475:181207 +k1,14015:18873881,21498475:181208 +k1,14015:20074173,21498475:181207 +k1,14015:23536112,21498475:181207 +k1,14015:26763432,21498475:181207 +k1,14015:29787591,21498475:181207 +k1,14015:31333913,21498475:181207 +k1,14016:32583029,21498475:0 +) +(1,14016:6764466,22363555:25818563,505283,138281 +g1,14015:10219524,22363555 +g1,14015:11749134,22363555 +g1,14015:12967448,22363555 +$1,14015:12967448,22363555 +$1,14015:13435375,22363555 +g1,14015:15858241,22363555 +g1,14015:18237853,22363555 +g1,14015:19184848,22363555 +k1,14016:32583029,22363555:9755690 +g1,14016:32583029,22363555 +) +] +g1,14016:32583029,22501836 +) +h1,14016:6630773,22501836:0,0,0 +v1,14019:6630773,23366916:0,393216,0 +(1,14020:6630773,29000042:25952256,6026342,0 +g1,14020:6630773,29000042 +g1,14020:6237557,29000042 +r1,14155:6368629,29000042:131072,6026342,0 +g1,14020:6567858,29000042 +g1,14020:6764466,29000042 +[1,14020:6764466,29000042:25818563,6026342,0 +(1,14020:6764466,23675214:25818563,701514,196608 +(1,14019:6764466,23675214:0,701514,196608 +r1,14155:7761522,23675214:997056,898122,196608 +k1,14019:6764466,23675214:-997056 +) +(1,14019:6764466,23675214:997056,701514,196608 +) +k1,14019:7970780,23675214:209258 +k1,14019:8298460,23675214:327680 +k1,14019:9704405,23675214:209258 +k1,14019:12898173,23675214:209258 +k1,14019:14620657,23675214:209258 +k1,14019:15591443,23675214:209258 +k1,14019:18066281,23675214:209258 +k1,14019:19223189,23675214:209257 +k1,14019:21420154,23675214:209258 +k1,14019:22647186,23675214:209258 +k1,14019:24047889,23675214:209258 +k1,14019:26691800,23675214:209248 +k1,14019:30702801,23675214:209258 +k1,14019:32583029,23675214:0 +) +(1,14020:6764466,24540294:25818563,513147,134348 +k1,14019:9130256,24540294:206379 +k1,14019:12582633,24540294:206379 +k1,14019:14621399,24540294:206379 +k1,14019:16328552,24540294:206379 +k1,14019:19297274,24540294:206379 +k1,14019:22309248,24540294:206378 +k1,14019:24832325,24540294:206379 +k1,14019:25697996,24540294:206379 +k1,14019:27599791,24540294:206379 +k1,14019:28465462,24540294:206379 +k1,14019:31316874,24540294:206379 +k1,14020:32583029,24540294:0 +) +(1,14020:6764466,25405374:25818563,513147,134348 +k1,14019:8074749,25405374:183064 +k1,14019:10125589,25405374:183064 +k1,14019:10695315,25405374:183064 +k1,14019:11478033,25405374:183064 +k1,14019:12852542,25405374:183064 +k1,14019:13848252,25405374:183064 +k1,14019:14659151,25405374:183064 +k1,14019:18335939,25405374:183064 +k1,14019:21111607,25405374:183064 +k1,14019:22313756,25405374:183064 +k1,14019:24521882,25405374:183064 +k1,14019:25236443,25405374:183064 +k1,14019:26078799,25405374:183064 +k1,14019:27071233,25405374:183064 +k1,14019:31510860,25405374:183064 +k1,14019:32583029,25405374:0 +) +(1,14020:6764466,26270454:25818563,513147,134348 +k1,14019:10564833,26270454:283705 +k1,14019:11952820,26270454:283705 +k1,14019:12984291,26270454:283705 +k1,14019:16477294,26270454:283705 +k1,14019:17708651,26270454:283706 +k1,14019:21655819,26270454:283705 +k1,14019:24532128,26270454:283705 +k1,14019:26282529,26270454:283705 +k1,14019:28885553,26270454:283705 +k1,14019:29820686,26270454:283705 +k1,14019:32583029,26270454:0 +) +(1,14020:6764466,27135534:25818563,513147,126483 +k1,14019:10962285,27135534:256484 +k1,14019:12137584,27135534:256484 +k1,14019:14833318,27135534:256484 +k1,14019:16475888,27135534:256484 +k1,14019:17119034,27135534:256484 +k1,14019:17907016,27135534:256485 +k1,14019:20450707,27135534:256484 +k1,14019:24206158,27135534:256484 +k1,14019:25114070,27135534:256484 +k1,14019:27237019,27135534:256484 +k1,14019:29576237,27135534:256484 +k1,14019:32583029,27135534:0 +) +(1,14020:6764466,28000614:25818563,513147,126483 +k1,14019:8388981,28000614:182068 +k1,14019:9957136,28000614:182069 +k1,14019:10951850,28000614:182068 +k1,14019:12153003,28000614:182068 +k1,14019:14600651,28000614:182068 +k1,14019:16295946,28000614:182069 +k1,14019:17239542,28000614:182068 +k1,14019:18843724,28000614:182051 +k1,14019:20217237,28000614:182068 +k1,14019:21731652,28000614:182068 +k1,14019:22541556,28000614:182069 +k1,14019:23855431,28000614:182068 +k1,14019:25578250,28000614:182068 +k1,14019:26707969,28000614:182068 +k1,14019:30553501,28000614:182069 +k1,14019:32124932,28000614:182068 +k1,14019:32583029,28000614:0 +) +(1,14020:6764466,28865694:25818563,513147,134348 +g1,14019:7495192,28865694 +g1,14019:10960080,28865694 +g1,14019:11810737,28865694 +g1,14019:13102451,28865694 +g1,14019:14320765,28865694 +g1,14019:17504504,28865694 +g1,14019:21905246,28865694 +g1,14019:22720513,28865694 +g1,14019:25499894,28865694 +k1,14020:32583029,28865694:5110503 +g1,14020:32583029,28865694 +) +] +g1,14020:32583029,29000042 +) +h1,14020:6630773,29000042:0,0,0 +v1,14023:6630773,29865122:0,393216,0 +(1,14155:6630773,45636456:25952256,16164550,0 +g1,14155:6630773,45636456 +g1,14155:6237557,45636456 +r1,14155:6368629,45636456:131072,16164550,0 +g1,14155:6567858,45636456 +g1,14155:6764466,45636456 +[1,14155:6764466,45636456:25818563,16164550,0 +(1,14024:6764466,30173420:25818563,701514,196608 +(1,14023:6764466,30173420:0,701514,196608 +r1,14155:7761522,30173420:997056,898122,196608 +k1,14023:6764466,30173420:-997056 +) +(1,14023:6764466,30173420:997056,701514,196608 +) +k1,14023:7959692,30173420:198170 +k1,14023:8287372,30173420:327680 +k1,14023:9682230,30173420:198171 +k1,14023:11482100,30173420:198170 +k1,14023:16692465,30173420:198171 +k1,14023:18128610,30173420:198170 +k1,14023:18986073,30173420:198171 +k1,14023:21365937,30173420:198170 +k1,14023:21919968,30173420:198171 +k1,14023:24880481,30173420:198170 +k1,14023:27344232,30173420:198171 +k1,14023:28490053,30173420:198170 +k1,14023:31649796,30173420:198171 +k1,14023:32583029,30173420:0 +) +(1,14024:6764466,31038500:25818563,513147,134348 +k1,14023:7336551,31038500:216225 +k1,14023:9435625,31038500:216225 +k1,14023:11496688,31038500:216225 +k1,14023:12372206,31038500:216226 +k1,14023:14576138,31038500:216225 +k1,14023:15810137,31038500:216225 +k1,14023:16557859,31038500:216225 +k1,14023:17535612,31038500:216225 +k1,14023:19933531,31038500:216225 +k1,14023:20564582,31038500:216208 +k1,14023:22863541,31038500:216225 +(1,14023:22863541,31038500:0,414482,115847 +r1,14155:26035501,31038500:3171960,530329,115847 +k1,14023:22863541,31038500:-3171960 +) +(1,14023:22863541,31038500:3171960,414482,115847 +k1,14023:22863541,31038500:3277 +h1,14023:26032224,31038500:0,411205,112570 +) +k1,14023:26425397,31038500:216226 +k1,14023:28527093,31038500:216225 +k1,14023:29611670,31038500:216225 +k1,14023:31225778,31038500:216225 +k1,14023:32583029,31038500:0 +) +(1,14024:6764466,31903580:25818563,473825,126483 +k1,14024:32583030,31903580:24184096 +g1,14024:32583030,31903580 +) +v1,14026:6764466,32588435:0,393216,0 +(1,14035:6764466,35108149:25818563,2912930,196608 +g1,14035:6764466,35108149 +g1,14035:6764466,35108149 +g1,14035:6567858,35108149 +(1,14035:6567858,35108149:0,2912930,196608 +r1,14155:32779637,35108149:26211779,3109538,196608 +k1,14035:6567857,35108149:-26211780 +) +(1,14035:6567858,35108149:26211779,2912930,196608 +[1,14035:6764466,35108149:25818563,2716322,0 +(1,14028:6764466,32816266:25818563,424439,106246 +(1,14027:6764466,32816266:0,0,0 +g1,14027:6764466,32816266 +g1,14027:6764466,32816266 +g1,14027:6436786,32816266 +(1,14027:6436786,32816266:0,0,0 +) +g1,14027:6764466,32816266 +) +k1,14028:6764466,32816266:0 +h1,14028:13403545,32816266:0,0,0 +k1,14028:32583029,32816266:19179484 +g1,14028:32583029,32816266 +) +(1,14034:6764466,33632193:25818563,431045,33029 +(1,14030:6764466,33632193:0,0,0 +g1,14030:6764466,33632193 +g1,14030:6764466,33632193 +g1,14030:6436786,33632193 +(1,14030:6436786,33632193:0,0,0 +) +g1,14030:6764466,33632193 +) +g1,14034:7760328,33632193 +h1,14034:11079867,33632193:0,0,0 +k1,14034:32583029,33632193:21503162 +g1,14034:32583029,33632193 +) +(1,14034:6764466,34317048:25818563,424439,6605 +h1,14034:6764466,34317048:0,0,0 +g1,14034:7760328,34317048 +g1,14034:8092282,34317048 +g1,14034:8424236,34317048 +g1,14034:8756190,34317048 +g1,14034:9088144,34317048 +g1,14034:9420098,34317048 +g1,14034:9752052,34317048 +g1,14034:10084006,34317048 +g1,14034:10415960,34317048 +g1,14034:13735499,34317048 +g1,14034:14067453,34317048 +g1,14034:14399407,34317048 +g1,14034:14731361,34317048 +g1,14034:15063315,34317048 +g1,14034:15395269,34317048 +g1,14034:15727223,34317048 +g1,14034:16059177,34317048 +g1,14034:16391131,34317048 +g1,14034:16723085,34317048 +g1,14034:17055039,34317048 +h1,14034:19378717,34317048:0,0,0 +k1,14034:32583029,34317048:13204312 +g1,14034:32583029,34317048 +) +(1,14034:6764466,35001903:25818563,424439,106246 +h1,14034:6764466,35001903:0,0,0 +g1,14034:7760328,35001903 +g1,14034:13735499,35001903 +g1,14034:14067453,35001903 +g1,14034:14399407,35001903 +g1,14034:14731361,35001903 +g1,14034:15063315,35001903 +g1,14034:15395269,35001903 +h1,14034:19378716,35001903:0,0,0 +k1,14034:32583029,35001903:13204313 +g1,14034:32583029,35001903 +) +] +) +g1,14035:32583029,35108149 +g1,14035:6764466,35108149 +g1,14035:6764466,35108149 +g1,14035:32583029,35108149 +g1,14035:32583029,35108149 +) +h1,14035:6764466,35304757:0,0,0 +(1,14039:6764466,36169837:25818563,513147,134348 +h1,14038:6764466,36169837:983040,0,0 +k1,14038:9108601,36169837:164408 +k1,14038:11355743,36169837:164408 +k1,14038:12051648,36169837:164408 +k1,14038:13150599,36169837:164408 +k1,14038:13966435,36169837:164408 +k1,14038:14486703,36169837:164408 +k1,14038:16809867,36169837:164408 +k1,14038:19948953,36169837:164407 +k1,14038:22091238,36169837:164408 +k1,14038:22914938,36169837:164408 +k1,14038:25092612,36169837:164408 +k1,14038:26603130,36169837:164408 +k1,14038:28161489,36169837:164408 +k1,14038:29344982,36169837:164408 +k1,14038:30815523,36169837:164408 +k1,14038:32583029,36169837:0 +) +(1,14039:6764466,37034917:25818563,513147,134348 +k1,14038:9100659,37034917:177437 +(1,14038:9100659,37034917:0,452978,115847 +r1,14155:12272619,37034917:3171960,568825,115847 +k1,14038:9100659,37034917:-3171960 +) +(1,14038:9100659,37034917:3171960,452978,115847 +k1,14038:9100659,37034917:3277 +h1,14038:12269342,37034917:0,411205,112570 +) +k1,14038:12450056,37034917:177437 +k1,14038:14550320,37034917:177438 +k1,14038:15746842,37034917:177437 +k1,14038:17662294,37034917:177437 +k1,14038:18499023,37034917:177437 +k1,14038:19695545,37034917:177437 +k1,14038:22568478,37034917:177437 +k1,14038:24259141,37034917:177437 +k1,14038:26134617,37034917:177438 +k1,14038:27331139,37034917:177437 +k1,14038:31274275,37034917:177437 +k1,14039:32583029,37034917:0 +) +(1,14039:6764466,37899997:25818563,505283,115847 +k1,14038:8265766,37899997:192546 +k1,14038:8989809,37899997:192546 +k1,14038:9953058,37899997:192546 +k1,14038:13482697,37899997:192546 +(1,14038:13482697,37899997:0,459977,115847 +r1,14155:15599522,37899997:2116825,575824,115847 +k1,14038:13482697,37899997:-2116825 +) +(1,14038:13482697,37899997:2116825,459977,115847 +k1,14038:13482697,37899997:3277 +h1,14038:15596245,37899997:0,411205,112570 +) +k1,14038:15792068,37899997:192546 +k1,14038:18541828,37899997:192545 +k1,14038:20128325,37899997:192546 +(1,14038:20128325,37899997:0,459977,115847 +r1,14155:22948574,37899997:2820249,575824,115847 +k1,14038:20128325,37899997:-2820249 +) +(1,14038:20128325,37899997:2820249,459977,115847 +k1,14038:20128325,37899997:3277 +h1,14038:22945297,37899997:0,411205,112570 +) +k1,14038:23348214,37899997:192546 +k1,14038:24732205,37899997:192546 +k1,14038:25943836,37899997:192546 +k1,14038:28377713,37899997:192546 +k1,14038:30424273,37899997:192546 +k1,14039:32583029,37899997:0 +) +(1,14039:6764466,38765077:25818563,513147,134348 +(1,14038:6764466,38765077:0,452978,115847 +r1,14155:9233003,38765077:2468537,568825,115847 +k1,14038:6764466,38765077:-2468537 +) +(1,14038:6764466,38765077:2468537,452978,115847 +k1,14038:6764466,38765077:3277 +h1,14038:9229726,38765077:0,411205,112570 +) +k1,14038:9584594,38765077:177921 +k1,14038:11685340,38765077:177920 +k1,14038:12882346,38765077:177921 +k1,14038:14798282,38765077:177921 +k1,14038:15635494,38765077:177920 +k1,14038:16832500,38765077:177921 +k1,14038:19705917,38765077:177921 +k1,14038:21397064,38765077:177921 +k1,14038:23273022,38765077:177920 +k1,14038:24470028,38765077:177921 +k1,14038:28413648,38765077:177921 +k1,14038:31102908,38765077:177920 +k1,14038:31812326,38765077:177921 +k1,14039:32583029,38765077:0 +) +(1,14039:6764466,39630157:25818563,513147,115847 +(1,14038:6764466,39630157:0,452978,115847 +r1,14155:9233003,39630157:2468537,568825,115847 +k1,14038:6764466,39630157:-2468537 +) +(1,14038:6764466,39630157:2468537,452978,115847 +k1,14038:6764466,39630157:3277 +h1,14038:9229726,39630157:0,411205,112570 +) +g1,14038:9432232,39630157 +g1,14038:11525451,39630157 +g1,14038:14281895,39630157 +g1,14038:15875075,39630157 +(1,14038:15875075,39630157:0,452978,115847 +r1,14155:19047035,39630157:3171960,568825,115847 +k1,14038:15875075,39630157:-3171960 +) +(1,14038:15875075,39630157:3171960,452978,115847 +k1,14038:15875075,39630157:3277 +h1,14038:19043758,39630157:0,411205,112570 +) +k1,14039:32583029,39630157:13276472 +g1,14039:32583029,39630157 +) +(1,14041:6764466,40495237:25818563,505283,126483 +h1,14040:6764466,40495237:983040,0,0 +g1,14040:8416628,40495237 +g1,14040:9147354,40495237 +g1,14040:10632399,40495237 +g1,14040:13461588,40495237 +g1,14040:14312245,40495237 +g1,14040:16332064,40495237 +g1,14040:17550378,40495237 +g1,14040:20380878,40495237 +g1,14040:21231535,40495237 +g1,14040:22178530,40495237 +g1,14040:23890985,40495237 +g1,14040:24706252,40495237 +g1,14040:25924566,40495237 +g1,14040:27223489,40495237 +g1,14040:28074146,40495237 +(1,14040:28074146,40495237:0,452978,115847 +r1,14155:29839259,40495237:1765113,568825,115847 +k1,14040:28074146,40495237:-1765113 +) +(1,14040:28074146,40495237:1765113,452978,115847 +k1,14040:28074146,40495237:3277 +h1,14040:29835982,40495237:0,411205,112570 +) +g1,14040:30038488,40495237 +g1,14040:30920602,40495237 +(1,14040:30920602,40495237:0,452978,115847 +r1,14155:32334003,40495237:1413401,568825,115847 +k1,14040:30920602,40495237:-1413401 +) +(1,14040:30920602,40495237:1413401,452978,115847 +k1,14040:30920602,40495237:3277 +h1,14040:32330726,40495237:0,411205,112570 +) +k1,14041:32583029,40495237:196598 +g1,14041:32583029,40495237 +) +v1,14043:6764466,41180092:0,393216,0 +(1,14050:6764466,43575340:25818563,2788464,196608 +g1,14050:6764466,43575340 +g1,14050:6764466,43575340 +g1,14050:6567858,43575340 +(1,14050:6567858,43575340:0,2788464,196608 +r1,14155:32779637,43575340:26211779,2985072,196608 +k1,14050:6567857,43575340:-26211780 +) +(1,14050:6567858,43575340:26211779,2788464,196608 +[1,14050:6764466,43575340:25818563,2591856,0 +(1,14045:6764466,41414529:25818563,431045,106246 +(1,14044:6764466,41414529:0,0,0 +g1,14044:6764466,41414529 +g1,14044:6764466,41414529 +g1,14044:6436786,41414529 +(1,14044:6436786,41414529:0,0,0 +) +g1,14044:6764466,41414529 +) +g1,14045:9420098,41414529 +g1,14045:10415960,41414529 +g1,14045:13403546,41414529 +g1,14045:14067454,41414529 +g1,14045:16391132,41414529 +g1,14045:18050902,41414529 +g1,14045:18714810,41414529 +k1,14045:18714810,41414529:0 +h1,14045:23030211,41414529:0,0,0 +k1,14045:32583029,41414529:9552818 +g1,14045:32583029,41414529 +) +(1,14046:6764466,42099384:25818563,424439,106246 +h1,14046:6764466,42099384:0,0,0 +g1,14046:7096420,42099384 +g1,14046:7428374,42099384 +g1,14046:7760328,42099384 +g1,14046:8092282,42099384 +g1,14046:8424236,42099384 +g1,14046:8756190,42099384 +g1,14046:9088144,42099384 +g1,14046:9420098,42099384 +g1,14046:9752052,42099384 +g1,14046:10084006,42099384 +g1,14046:10415960,42099384 +g1,14046:10747914,42099384 +g1,14046:11079868,42099384 +g1,14046:11411822,42099384 +g1,14046:14731361,42099384 +g1,14046:15395269,42099384 +g1,14046:19046763,42099384 +g1,14046:19710671,42099384 +h1,14046:25353888,42099384:0,0,0 +k1,14046:32583029,42099384:7229141 +g1,14046:32583029,42099384 +) +(1,14047:6764466,42784239:25818563,431045,106246 +h1,14047:6764466,42784239:0,0,0 +g1,14047:9088144,42784239 +g1,14047:9420098,42784239 +g1,14047:10415960,42784239 +g1,14047:13403546,42784239 +g1,14047:14067454,42784239 +g1,14047:16391132,42784239 +g1,14047:18050902,42784239 +g1,14047:18714810,42784239 +k1,14047:18714810,42784239:0 +h1,14047:23030211,42784239:0,0,0 +k1,14047:32583029,42784239:9552818 +g1,14047:32583029,42784239 +) +(1,14048:6764466,43469094:25818563,424439,106246 +h1,14048:6764466,43469094:0,0,0 +g1,14048:7096420,43469094 +g1,14048:7428374,43469094 +g1,14048:7760328,43469094 +g1,14048:8092282,43469094 +g1,14048:8424236,43469094 +g1,14048:8756190,43469094 +g1,14048:9088144,43469094 +g1,14048:9420098,43469094 +g1,14048:9752052,43469094 +g1,14048:10084006,43469094 +g1,14048:10415960,43469094 +g1,14048:10747914,43469094 +g1,14048:11079868,43469094 +g1,14048:11411822,43469094 +g1,14048:14731361,43469094 +g1,14048:15395269,43469094 +g1,14048:19046763,43469094 +g1,14048:19710671,43469094 +h1,14048:23362164,43469094:0,0,0 +k1,14048:32583029,43469094:9220865 +g1,14048:32583029,43469094 +) +] +) +g1,14050:32583029,43575340 +g1,14050:6764466,43575340 +g1,14050:6764466,43575340 +g1,14050:32583029,43575340 +g1,14050:32583029,43575340 +) +h1,14050:6764466,43771948:0,0,0 +(1,14054:6764466,44637028:25818563,513147,115847 +h1,14053:6764466,44637028:983040,0,0 +k1,14053:8509175,44637028:133834 +(1,14053:8509175,44637028:0,459977,115847 +r1,14155:10977712,44637028:2468537,575824,115847 +k1,14053:8509175,44637028:-2468537 +) +(1,14053:8509175,44637028:2468537,459977,115847 +k1,14053:8509175,44637028:3277 +h1,14053:10974435,44637028:0,411205,112570 +) +k1,14053:11111546,44637028:133834 +k1,14053:12113731,44637028:133833 +k1,14053:13760791,44637028:133834 +(1,14053:13760791,44637028:0,452978,115847 +r1,14155:19746446,44637028:5985655,568825,115847 +k1,14053:13760791,44637028:-5985655 +) +(1,14053:13760791,44637028:5985655,452978,115847 +k1,14053:13760791,44637028:3277 +h1,14053:19743169,44637028:0,411205,112570 +) +k1,14053:20053950,44637028:133834 +k1,14053:21604672,44637028:133834 +k1,14053:24700077,44637028:133833 +k1,14053:25781562,44637028:133834 +k1,14053:29108310,44637028:133834 +k1,14053:32583029,44637028:0 +) +(1,14054:6764466,45502108:25818563,513147,134348 +k1,14053:8002440,45502108:246414 +k1,14053:9826307,45502108:246415 +k1,14053:12361894,45502108:246414 +(1,14053:12361894,45502108:0,435480,115847 +r1,14155:14478719,45502108:2116825,551327,115847 +k1,14053:12361894,45502108:-2116825 +) +(1,14053:12361894,45502108:2116825,435480,115847 +k1,14053:12361894,45502108:3277 +h1,14053:14475442,45502108:0,411205,112570 +) +k1,14053:14725133,45502108:246414 +k1,14053:16967119,45502108:246415 +k1,14053:17671630,45502108:246414 +k1,14053:18604207,45502108:246415 +k1,14053:19869706,45502108:246414 +k1,14053:22403982,45502108:246414 +k1,14053:23333282,45502108:246415 +k1,14053:26732633,45502108:246414 +k1,14053:27665209,45502108:246414 +k1,14053:29015906,45502108:246415 +k1,14053:30010086,45502108:246414 +k1,14053:32583029,45502108:0 +) +] +g1,14155:32583029,45636456 +) +] +(1,14155:32583029,45706769:0,0,0 +g1,14155:32583029,45706769 +) +) +] +(1,14155:6630773,47279633:25952256,0,0 +h1,14155:6630773,47279633:25952256,0,0 +) +] +(1,14155:4262630,4025873:0,0,0 +[1,14155:-473656,4025873:0,0,0 +(1,14155:-473656,-710413:0,0,0 +(1,14155:-473656,-710413:0,0,0 +g1,14155:-473656,-710413 +) +g1,14155:-473656,-710413 ) ] ) ] !34832 -}225 +}226 !12 -{226 -[1,14157:4262630,47279633:28320399,43253760,0 -(1,14157:4262630,4025873:0,0,0 -[1,14157:-473656,4025873:0,0,0 -(1,14157:-473656,-710413:0,0,0 -(1,14157:-473656,-644877:0,0,0 -k1,14157:-473656,-644877:-65536 +{227 +[1,14155:4262630,47279633:28320399,43253760,0 +(1,14155:4262630,4025873:0,0,0 +[1,14155:-473656,4025873:0,0,0 +(1,14155:-473656,-710413:0,0,0 +(1,14155:-473656,-644877:0,0,0 +k1,14155:-473656,-644877:-65536 ) -(1,14157:-473656,4736287:0,0,0 -k1,14157:-473656,4736287:5209943 +(1,14155:-473656,4736287:0,0,0 +k1,14155:-473656,4736287:5209943 ) -g1,14157:-473656,-710413 +g1,14155:-473656,-710413 ) ] ) -[1,14157:6630773,47279633:25952256,43253760,0 -[1,14157:6630773,4812305:25952256,786432,0 -(1,14157:6630773,4812305:25952256,505283,134348 -(1,14157:6630773,4812305:25952256,505283,134348 -g1,14157:3078558,4812305 -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,2439708:0,1703936,0 -k1,14157:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14157:2537886,2439708:1179648,16384,0 +[1,14155:6630773,47279633:25952256,43253760,0 +[1,14155:6630773,4812305:25952256,786432,0 +(1,14155:6630773,4812305:25952256,505283,134348 +(1,14155:6630773,4812305:25952256,505283,134348 +g1,14155:3078558,4812305 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,2439708:0,1703936,0 +k1,14155:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14155:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14157:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14155:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,2439708:0,1703936,0 -g1,14157:29030814,2439708 -g1,14157:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14157:36151628,1915420:16384,1179648,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,2439708:0,1703936,0 +g1,14155:29030814,2439708 +g1,14155:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14155:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14157:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14155:37855564,2439708:1179648,16384,0 ) ) -k1,14157:3078556,2439708:-34777008 +k1,14155:3078556,2439708:-34777008 ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,49800853:0,16384,2228224 -k1,14157:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14157:2537886,49800853:1179648,16384,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,49800853:0,16384,2228224 +k1,14155:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14155:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14157:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14155:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14157:3078558,4812305:0,0,0 -(1,14157:3078558,49800853:0,16384,2228224 -g1,14157:29030814,49800853 -g1,14157:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14157:36151628,51504789:16384,1179648,0 +[1,14155:3078558,4812305:0,0,0 +(1,14155:3078558,49800853:0,16384,2228224 +g1,14155:29030814,49800853 +g1,14155:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14155:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14157:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14155:37855564,49800853:1179648,16384,0 ) ) -k1,14157:3078556,49800853:-34777008 +k1,14155:3078556,49800853:-34777008 ) ] -g1,14157:6630773,4812305 -g1,14157:6630773,4812305 -g1,14157:8843268,4812305 -g1,14157:11066249,4812305 -g1,14157:13415059,4812305 -k1,14157:31387651,4812305:17972592 -) -) -] -[1,14157:6630773,45706769:25952256,40108032,0 -(1,14157:6630773,45706769:25952256,40108032,0 -(1,14157:6630773,45706769:0,0,0 -g1,14157:6630773,45706769 -) -[1,14157:6630773,45706769:25952256,40108032,0 -v1,14157:6630773,6254097:0,393216,0 -(1,14157:6630773,45706769:25952256,39845888,0 -g1,14157:6630773,45706769 -g1,14157:6237557,45706769 -r1,14157:6368629,45706769:131072,39845888,0 -g1,14157:6567858,45706769 -g1,14157:6764466,45706769 -[1,14157:6764466,45706769:25818563,39845888,0 -(1,14056:6764466,6374028:25818563,513147,134348 -k1,14055:8566100,6374028:234013 -k1,14055:9819198,6374028:234013 -k1,14055:13206148,6374028:234013 -k1,14055:16401733,6374028:234013 -k1,14055:18896738,6374028:234013 -k1,14055:20172773,6374028:234013 -k1,14055:21610027,6374028:234013 -k1,14055:24148941,6374028:234013 -k1,14055:26037738,6374028:234013 -k1,14055:26803248,6374028:234013 -k1,14055:27846631,6374028:234013 -k1,14055:29284540,6374028:234013 -k1,14055:30466204,6374028:234013 -(1,14055:30466204,6374028:0,435480,115847 -r1,14157:32583029,6374028:2116825,551327,115847 -k1,14055:30466204,6374028:-2116825 -) -(1,14055:30466204,6374028:2116825,435480,115847 -k1,14055:30466204,6374028:3277 -h1,14055:32579752,6374028:0,411205,112570 -) -k1,14055:32583029,6374028:0 -) -(1,14056:6764466,7239108:25818563,513147,134348 -k1,14055:7560639,7239108:180135 -k1,14055:8759859,7239108:180135 -k1,14055:11930402,7239108:180135 -k1,14055:13849863,7239108:180135 -k1,14055:15505213,7239108:180135 -k1,14055:16344640,7239108:180135 -k1,14055:17543860,7239108:180135 -k1,14055:19258192,7239108:180134 -(1,14055:19258192,7239108:0,435480,115847 -r1,14157:21375017,7239108:2116825,551327,115847 -k1,14055:19258192,7239108:-2116825 -) -(1,14055:19258192,7239108:2116825,435480,115847 -k1,14055:19258192,7239108:3277 -h1,14055:21371740,7239108:0,411205,112570 -) -k1,14055:21555152,7239108:180135 -k1,14055:22386715,7239108:180135 -(1,14055:22386715,7239108:0,435480,115847 -r1,14157:24503540,7239108:2116825,551327,115847 -k1,14055:22386715,7239108:-2116825 -) -(1,14055:22386715,7239108:2116825,435480,115847 -k1,14055:22386715,7239108:3277 -h1,14055:24500263,7239108:0,411205,112570 -) -k1,14055:24683675,7239108:180135 -k1,14055:25395307,7239108:180135 -k1,14055:25931302,7239108:180135 -k1,14055:27302882,7239108:180135 -k1,14055:30886302,7239108:180135 -k1,14055:32583029,7239108:0 -) -(1,14056:6764466,8104188:25818563,505283,134348 -g1,14055:10438414,8104188 -g1,14055:14396788,8104188 -g1,14055:16885190,8104188 -(1,14055:16885190,8104188:0,435480,115847 -r1,14157:19002015,8104188:2116825,551327,115847 -k1,14055:16885190,8104188:-2116825 -) -(1,14055:16885190,8104188:2116825,435480,115847 -k1,14055:16885190,8104188:3277 -h1,14055:18998738,8104188:0,411205,112570 -) -k1,14056:32583029,8104188:13528586 -g1,14056:32583029,8104188 -) -v1,14058:6764466,9599741:0,393216,0 -(1,14071:6764466,14769143:25818563,5562618,196608 -g1,14071:6764466,14769143 -g1,14071:6764466,14769143 -g1,14071:6567858,14769143 -(1,14071:6567858,14769143:0,5562618,196608 -r1,14157:32779637,14769143:26211779,5759226,196608 -k1,14071:6567857,14769143:-26211780 -) -(1,14071:6567858,14769143:26211779,5562618,196608 -[1,14071:6764466,14769143:25818563,5366010,0 -(1,14060:6764466,9834178:25818563,431045,112852 -(1,14059:6764466,9834178:0,0,0 -g1,14059:6764466,9834178 -g1,14059:6764466,9834178 -g1,14059:6436786,9834178 -(1,14059:6436786,9834178:0,0,0 -) -g1,14059:6764466,9834178 -) -k1,14060:6764466,9834178:0 -k1,14060:6764466,9834178:0 -h1,14060:23694117,9834178:0,0,0 -k1,14060:32583029,9834178:8888912 -g1,14060:32583029,9834178 -) -(1,14070:6764466,10650105:25818563,407923,9908 -(1,14062:6764466,10650105:0,0,0 -g1,14062:6764466,10650105 -g1,14062:6764466,10650105 -g1,14062:6436786,10650105 -(1,14062:6436786,10650105:0,0,0 -) -g1,14062:6764466,10650105 -) -g1,14070:7760328,10650105 -g1,14070:8092282,10650105 -g1,14070:8424236,10650105 -g1,14070:9088144,10650105 -g1,14070:9752052,10650105 -g1,14070:10415960,10650105 -g1,14070:11079868,10650105 -h1,14070:11411822,10650105:0,0,0 -k1,14070:32583030,10650105:21171208 -g1,14070:32583030,10650105 -) -(1,14070:6764466,11334960:25818563,407923,9908 -h1,14070:6764466,11334960:0,0,0 -g1,14070:7760328,11334960 -g1,14070:8424236,11334960 -g1,14070:9088144,11334960 -g1,14070:9752052,11334960 -g1,14070:10415960,11334960 -g1,14070:11079868,11334960 -h1,14070:11411822,11334960:0,0,0 -k1,14070:32583030,11334960:21171208 -g1,14070:32583030,11334960 -) -(1,14070:6764466,12019815:25818563,407923,9908 -h1,14070:6764466,12019815:0,0,0 -g1,14070:7760328,12019815 -g1,14070:8424236,12019815 -g1,14070:9088144,12019815 -g1,14070:9752052,12019815 -g1,14070:10415960,12019815 -g1,14070:11079868,12019815 -h1,14070:11411822,12019815:0,0,0 -k1,14070:32583030,12019815:21171208 -g1,14070:32583030,12019815 -) -(1,14070:6764466,12704670:25818563,407923,9908 -h1,14070:6764466,12704670:0,0,0 -g1,14070:7760328,12704670 -g1,14070:8424236,12704670 -g1,14070:9088144,12704670 -g1,14070:9752052,12704670 -g1,14070:10415960,12704670 -g1,14070:11079868,12704670 -h1,14070:11411822,12704670:0,0,0 -k1,14070:32583030,12704670:21171208 -g1,14070:32583030,12704670 -) -(1,14070:6764466,13389525:25818563,407923,9908 -h1,14070:6764466,13389525:0,0,0 -g1,14070:7760328,13389525 -g1,14070:8424236,13389525 -g1,14070:9088144,13389525 -g1,14070:9752052,13389525 -g1,14070:10415960,13389525 -g1,14070:11079868,13389525 -h1,14070:11411822,13389525:0,0,0 -k1,14070:32583030,13389525:21171208 -g1,14070:32583030,13389525 -) -(1,14070:6764466,14074380:25818563,407923,9908 -h1,14070:6764466,14074380:0,0,0 -g1,14070:7760328,14074380 -g1,14070:8424236,14074380 -g1,14070:9088144,14074380 -g1,14070:9752052,14074380 -g1,14070:10415960,14074380 -g1,14070:11079868,14074380 -h1,14070:11411822,14074380:0,0,0 -k1,14070:32583030,14074380:21171208 -g1,14070:32583030,14074380 -) -(1,14070:6764466,14759235:25818563,407923,9908 -h1,14070:6764466,14759235:0,0,0 -g1,14070:7760328,14759235 -g1,14070:8424236,14759235 -g1,14070:9088144,14759235 -g1,14070:9752052,14759235 -g1,14070:10415960,14759235 -g1,14070:11079868,14759235 -h1,14070:11411822,14759235:0,0,0 -k1,14070:32583030,14759235:21171208 -g1,14070:32583030,14759235 -) -] -) -g1,14071:32583029,14769143 -g1,14071:6764466,14769143 -g1,14071:6764466,14769143 -g1,14071:32583029,14769143 -g1,14071:32583029,14769143 -) -h1,14071:6764466,14965751:0,0,0 -v1,14075:6764466,17272002:0,393216,0 -(1,14103:6764466,32810567:25818563,15931781,196608 -g1,14103:6764466,32810567 -g1,14103:6764466,32810567 -g1,14103:6567858,32810567 -(1,14103:6567858,32810567:0,15931781,196608 -r1,14157:32779637,32810567:26211779,16128389,196608 -k1,14103:6567857,32810567:-26211780 -) -(1,14103:6567858,32810567:26211779,15931781,196608 -[1,14103:6764466,32810567:25818563,15735173,0 -(1,14077:6764466,17506439:25818563,431045,106246 -(1,14076:6764466,17506439:0,0,0 -g1,14076:6764466,17506439 -g1,14076:6764466,17506439 -g1,14076:6436786,17506439 -(1,14076:6436786,17506439:0,0,0 -) -g1,14076:6764466,17506439 -) -k1,14077:6764466,17506439:0 -h1,14077:12075729,17506439:0,0,0 -k1,14077:32583029,17506439:20507300 -g1,14077:32583029,17506439 -) -(1,14102:6764466,18322366:25818563,398014,0 -(1,14079:6764466,18322366:0,0,0 -g1,14079:6764466,18322366 -g1,14079:6764466,18322366 -g1,14079:6436786,18322366 -(1,14079:6436786,18322366:0,0,0 -) -g1,14079:6764466,18322366 -) -h1,14102:7428374,18322366:0,0,0 -k1,14102:32583030,18322366:25154656 -g1,14102:32583030,18322366 -) -(1,14102:6764466,19007221:25818563,424439,8257 -h1,14102:6764466,19007221:0,0,0 -g1,14102:7760328,19007221 -h1,14102:9420098,19007221:0,0,0 -k1,14102:32583030,19007221:23162932 -g1,14102:32583030,19007221 -) -(1,14102:6764466,19692076:25818563,431045,106246 -h1,14102:6764466,19692076:0,0,0 -k1,14102:7649677,19692076:221303 -k1,14102:11190519,19692076:221303 -k1,14102:11743776,19692076:221303 -k1,14102:13624849,19692076:221303 -k1,14102:14178106,19692076:221303 -k1,14102:16391133,19692076:221303 -k1,14102:17940252,19692076:221303 -k1,14102:18493509,19692076:221303 -k1,14102:23030213,19692076:221303 -k1,14102:26239101,19692076:221303 -k1,14102:26792358,19692076:221303 -k1,14102:30333200,19692076:221303 -k1,14102:30886457,19692076:221303 -h1,14102:36529674,19692076:0,0,0 -k1,14102:36529674,19692076:0 -k1,14102:36529674,19692076:0 -) -(1,14102:6764466,20376931:25818563,398014,0 -h1,14102:6764466,20376931:0,0,0 -h1,14102:7428374,20376931:0,0,0 -k1,14102:32583030,20376931:25154656 -g1,14102:32583030,20376931 -) -(1,14102:6764466,21061786:25818563,424439,6605 -h1,14102:6764466,21061786:0,0,0 -g1,14102:7760328,21061786 -h1,14102:11079867,21061786:0,0,0 -k1,14102:32583029,21061786:21503162 -g1,14102:32583029,21061786 -) -(1,14102:6764466,21746641:25818563,424439,86428 -h1,14102:6764466,21746641:0,0,0 -g1,14102:7760328,21746641 -g1,14102:8092282,21746641 -g1,14102:8424236,21746641 -g1,14102:8756190,21746641 -g1,14102:10084006,21746641 -g1,14102:10415960,21746641 -g1,14102:10747914,21746641 -g1,14102:11079868,21746641 -g1,14102:11411822,21746641 -g1,14102:12407684,21746641 -g1,14102:14731362,21746641 -g1,14102:15063316,21746641 -g1,14102:15395270,21746641 -g1,14102:15727224,21746641 -g1,14102:16059178,21746641 -g1,14102:17055040,21746641 -g1,14102:17386994,21746641 -g1,14102:17718948,21746641 -g1,14102:18050902,21746641 -h1,14102:19046764,21746641:0,0,0 -k1,14102:32583029,21746641:13536265 -g1,14102:32583029,21746641 -) -(1,14102:6764466,22431496:25818563,407923,9908 -h1,14102:6764466,22431496:0,0,0 -g1,14102:7760328,22431496 -g1,14102:10084006,22431496 -g1,14102:12407684,22431496 -g1,14102:14731362,22431496 -g1,14102:15063316,22431496 -g1,14102:17055040,22431496 -g1,14102:17386994,22431496 -h1,14102:19046764,22431496:0,0,0 -k1,14102:32583029,22431496:13536265 -g1,14102:32583029,22431496 -) -(1,14102:6764466,23116351:25818563,398014,0 -h1,14102:6764466,23116351:0,0,0 -h1,14102:7428374,23116351:0,0,0 -k1,14102:32583030,23116351:25154656 -g1,14102:32583030,23116351 -) -(1,14102:6764466,23801206:25818563,431045,8257 -h1,14102:6764466,23801206:0,0,0 -g1,14102:7760328,23801206 -h1,14102:12075729,23801206:0,0,0 -k1,14102:32583029,23801206:20507300 -g1,14102:32583029,23801206 -) -(1,14102:6764466,24486061:25818563,424439,79822 -h1,14102:6764466,24486061:0,0,0 -g1,14102:7760328,24486061 -g1,14102:8092282,24486061 -g1,14102:8424236,24486061 -g1,14102:8756190,24486061 -g1,14102:9088144,24486061 -g1,14102:9420098,24486061 -g1,14102:9752052,24486061 -g1,14102:10084006,24486061 -g1,14102:10415960,24486061 -g1,14102:10747914,24486061 -g1,14102:11079868,24486061 -g1,14102:11411822,24486061 -g1,14102:11743776,24486061 -g1,14102:14731361,24486061 -g1,14102:16391131,24486061 -g1,14102:18382855,24486061 -g1,14102:19046763,24486061 -g1,14102:21038487,24486061 -k1,14102:21038487,24486061:0 -h1,14102:23694119,24486061:0,0,0 -k1,14102:32583029,24486061:8888910 -g1,14102:32583029,24486061 -) -(1,14102:6764466,25170916:25818563,424439,106246 -h1,14102:6764466,25170916:0,0,0 -g1,14102:7760328,25170916 -g1,14102:11743775,25170916 -g1,14102:12075729,25170916 -g1,14102:14731361,25170916 -g1,14102:15063315,25170916 -g1,14102:15395269,25170916 -g1,14102:15727223,25170916 -g1,14102:16059177,25170916 -g1,14102:18382855,25170916 -g1,14102:18714809,25170916 -g1,14102:21038487,25170916 -g1,14102:21370441,25170916 -g1,14102:22034349,25170916 -g1,14102:24026073,25170916 -h1,14102:25021935,25170916:0,0,0 -k1,14102:32583029,25170916:7561094 -g1,14102:32583029,25170916 -) -(1,14102:6764466,25855771:25818563,407923,106246 -h1,14102:6764466,25855771:0,0,0 -g1,14102:7760328,25855771 -g1,14102:10084006,25855771 -g1,14102:10415960,25855771 -g1,14102:10747914,25855771 -g1,14102:11079868,25855771 -g1,14102:11411822,25855771 -g1,14102:11743776,25855771 -g1,14102:12075730,25855771 -g1,14102:12407684,25855771 -g1,14102:14731362,25855771 -g1,14102:15063316,25855771 -g1,14102:15395270,25855771 -g1,14102:15727224,25855771 -g1,14102:16059178,25855771 -g1,14102:18382856,25855771 -g1,14102:18714810,25855771 -g1,14102:19046764,25855771 -g1,14102:21038488,25855771 -g1,14102:21370442,25855771 -g1,14102:21702396,25855771 -g1,14102:22034350,25855771 -h1,14102:23694120,25855771:0,0,0 -k1,14102:32583029,25855771:8888909 -g1,14102:32583029,25855771 -) -(1,14102:6764466,26540626:25818563,407923,106246 -h1,14102:6764466,26540626:0,0,0 -g1,14102:7760328,26540626 -g1,14102:10084006,26540626 -g1,14102:10415960,26540626 -g1,14102:10747914,26540626 -g1,14102:11079868,26540626 -g1,14102:11411822,26540626 -g1,14102:11743776,26540626 -g1,14102:14731361,26540626 -g1,14102:15063315,26540626 -g1,14102:15395269,26540626 -g1,14102:15727223,26540626 -g1,14102:16059177,26540626 -g1,14102:18382855,26540626 -g1,14102:18714809,26540626 -g1,14102:21038487,26540626 -g1,14102:24026073,26540626 -h1,14102:25021935,26540626:0,0,0 -k1,14102:32583029,26540626:7561094 -g1,14102:32583029,26540626 -) -(1,14102:6764466,27225481:25818563,407923,106246 -h1,14102:6764466,27225481:0,0,0 -g1,14102:7760328,27225481 -g1,14102:10084006,27225481 -g1,14102:10415960,27225481 -g1,14102:10747914,27225481 -g1,14102:11079868,27225481 -g1,14102:11411822,27225481 -g1,14102:11743776,27225481 -g1,14102:12075730,27225481 -g1,14102:14731362,27225481 -g1,14102:15063316,27225481 -g1,14102:15395270,27225481 -g1,14102:15727224,27225481 -g1,14102:16059178,27225481 -g1,14102:18382856,27225481 -g1,14102:18714810,27225481 -g1,14102:21038488,27225481 -g1,14102:24026074,27225481 -h1,14102:25021936,27225481:0,0,0 -k1,14102:32583029,27225481:7561093 -g1,14102:32583029,27225481 -) -(1,14102:6764466,27910336:25818563,407923,106246 -h1,14102:6764466,27910336:0,0,0 -g1,14102:7760328,27910336 -g1,14102:10084006,27910336 -g1,14102:10415960,27910336 -g1,14102:10747914,27910336 -g1,14102:11079868,27910336 -g1,14102:11411822,27910336 -g1,14102:11743776,27910336 -g1,14102:14731361,27910336 -g1,14102:15063315,27910336 -g1,14102:15395269,27910336 -g1,14102:15727223,27910336 -g1,14102:16059177,27910336 -g1,14102:18382855,27910336 -g1,14102:18714809,27910336 -g1,14102:21038487,27910336 -g1,14102:24026073,27910336 -h1,14102:25021935,27910336:0,0,0 -k1,14102:32583029,27910336:7561094 -g1,14102:32583029,27910336 -) -(1,14102:6764466,28595191:25818563,407923,106246 -h1,14102:6764466,28595191:0,0,0 -g1,14102:7760328,28595191 -g1,14102:10084006,28595191 -g1,14102:10415960,28595191 -g1,14102:10747914,28595191 -g1,14102:11079868,28595191 -g1,14102:11411822,28595191 -g1,14102:11743776,28595191 -g1,14102:12075730,28595191 -g1,14102:12407684,28595191 -g1,14102:14731362,28595191 -g1,14102:15063316,28595191 -g1,14102:15395270,28595191 -g1,14102:15727224,28595191 -g1,14102:16059178,28595191 -g1,14102:18382856,28595191 -g1,14102:18714810,28595191 -g1,14102:19046764,28595191 -g1,14102:21038488,28595191 -g1,14102:21370442,28595191 -g1,14102:21702396,28595191 -g1,14102:22034350,28595191 -h1,14102:23694120,28595191:0,0,0 -k1,14102:32583029,28595191:8888909 -g1,14102:32583029,28595191 -) -(1,14102:6764466,29280046:25818563,398014,0 -h1,14102:6764466,29280046:0,0,0 -g1,14102:7760328,29280046 -k1,14102:7760328,29280046:0 -h1,14102:8756190,29280046:0,0,0 -k1,14102:32583030,29280046:23826840 -g1,14102:32583030,29280046 -) -(1,14102:6764466,29964901:25818563,431045,112852 -h1,14102:6764466,29964901:0,0,0 -g1,14102:7760328,29964901 -g1,14102:10415960,29964901 -g1,14102:12739638,29964901 -g1,14102:13071592,29964901 -g1,14102:13735500,29964901 -g1,14102:15727224,29964901 -g1,14102:17718948,29964901 -g1,14102:19378718,29964901 -g1,14102:21038488,29964901 -g1,14102:22366304,29964901 -g1,14102:24026074,29964901 -g1,14102:25353890,29964901 -g1,14102:26681706,29964901 -g1,14102:27345614,29964901 -g1,14102:28009522,29964901 -h1,14102:28341476,29964901:0,0,0 -k1,14102:32583029,29964901:4241553 -g1,14102:32583029,29964901 -) -(1,14102:6764466,30649756:25818563,398014,0 -h1,14102:6764466,30649756:0,0,0 -h1,14102:7428374,30649756:0,0,0 -k1,14102:32583030,30649756:25154656 -g1,14102:32583030,30649756 -) -(1,14102:6764466,31334611:25818563,431045,112852 -h1,14102:6764466,31334611:0,0,0 -g1,14102:7760328,31334611 -g1,14102:10747913,31334611 -g1,14102:13735498,31334611 -g1,14102:16059176,31334611 -g1,14102:18050900,31334611 -g1,14102:19046762,31334611 -g1,14102:20042624,31334611 -g1,14102:22698256,31334611 -g1,14102:23694118,31334611 -h1,14102:26017796,31334611:0,0,0 -k1,14102:32583029,31334611:6565233 -g1,14102:32583029,31334611 -) -(1,14102:6764466,32019466:25818563,424439,112852 -h1,14102:6764466,32019466:0,0,0 -g1,14102:7760328,32019466 -g1,14102:10747913,32019466 -g1,14102:14399406,32019466 -g1,14102:14731360,32019466 -g1,14102:17386992,32019466 -g1,14102:20374577,32019466 -g1,14102:24026070,32019466 -g1,14102:24358024,32019466 -h1,14102:26349748,32019466:0,0,0 -k1,14102:32583029,32019466:6233281 -g1,14102:32583029,32019466 -) -(1,14102:6764466,32704321:25818563,424439,106246 -h1,14102:6764466,32704321:0,0,0 -g1,14102:7760328,32704321 -g1,14102:12075729,32704321 -g1,14102:12407683,32704321 -g1,14102:14067453,32704321 -g1,14102:15063315,32704321 -g1,14102:15727223,32704321 -g1,14102:17055039,32704321 -g1,14102:18050901,32704321 -g1,14102:19378717,32704321 -g1,14102:19710671,32704321 -g1,14102:22698257,32704321 -g1,14102:23362165,32704321 -k1,14102:23362165,32704321:0 -h1,14102:25685843,32704321:0,0,0 -k1,14102:32583029,32704321:6897186 -g1,14102:32583029,32704321 -) -] -) -g1,14103:32583029,32810567 -g1,14103:6764466,32810567 -g1,14103:6764466,32810567 -g1,14103:32583029,32810567 -g1,14103:32583029,32810567 -) -h1,14103:6764466,33007175:0,0,0 -(1,14107:6764466,35493651:25818563,505283,115847 -h1,14106:6764466,35493651:983040,0,0 -k1,14106:8531146,35493651:155805 -(1,14106:8531146,35493651:0,459977,115847 -r1,14157:10647971,35493651:2116825,575824,115847 -k1,14106:8531146,35493651:-2116825 -) -(1,14106:8531146,35493651:2116825,459977,115847 -k1,14106:8531146,35493651:3277 -h1,14106:10644694,35493651:0,411205,112570 -) -k1,14106:10803776,35493651:155805 -k1,14106:11827933,35493651:155805 -k1,14106:13496964,35493651:155805 -(1,14106:13496964,35493651:0,452978,115847 -r1,14157:17372348,35493651:3875384,568825,115847 -k1,14106:13496964,35493651:-3875384 -) -(1,14106:13496964,35493651:3875384,452978,115847 -k1,14106:13496964,35493651:3277 -h1,14106:17369071,35493651:0,411205,112570 -) -k1,14106:17528153,35493651:155805 -k1,14106:19077909,35493651:155805 -k1,14106:20252798,35493651:155804 -k1,14106:21773718,35493651:155805 -k1,14106:25688013,35493651:155805 -k1,14106:26495246,35493651:155805 -k1,14106:27398817,35493651:155805 -k1,14106:29148458,35493651:155805 -k1,14106:30721151,35493651:155805 -k1,14107:32583029,35493651:0 -) -(1,14107:6764466,36358731:25818563,513147,126483 -k1,14106:8268985,36358731:214115 -k1,14106:9430752,36358731:214116 -k1,14106:10663952,36358731:214115 -k1,14106:12026259,36358731:214116 -k1,14106:15384792,36358731:214116 -k1,14106:17061015,36358731:214115 -k1,14106:18266690,36358731:214115 -k1,14106:22145579,36358731:214116 -k1,14106:23121223,36358731:214116 -k1,14106:24354423,36358731:214115 -k1,14106:25933653,36358731:214115 -k1,14106:26807061,36358731:214116 -k1,14106:28040261,36358731:214115 -k1,14106:31008855,36358731:214116 -k1,14106:32583029,36358731:0 -) -(1,14107:6764466,37223811:25818563,513147,134348 -g1,14106:8155140,37223811 -g1,14106:9420640,37223811 -g1,14106:11579395,37223811 -g1,14106:12726275,37223811 -k1,14107:32583029,37223811:16066807 -g1,14107:32583029,37223811 -) -v1,14109:6764466,38719363:0,393216,0 -(1,14122:6764466,43888765:25818563,5562618,196608 -g1,14122:6764466,43888765 -g1,14122:6764466,43888765 -g1,14122:6567858,43888765 -(1,14122:6567858,43888765:0,5562618,196608 -r1,14157:32779637,43888765:26211779,5759226,196608 -k1,14122:6567857,43888765:-26211780 -) -(1,14122:6567858,43888765:26211779,5562618,196608 -[1,14122:6764466,43888765:25818563,5366010,0 -(1,14111:6764466,38953800:25818563,431045,112852 -(1,14110:6764466,38953800:0,0,0 -g1,14110:6764466,38953800 -g1,14110:6764466,38953800 -g1,14110:6436786,38953800 -(1,14110:6436786,38953800:0,0,0 -) -g1,14110:6764466,38953800 -) -k1,14111:6764466,38953800:0 -k1,14111:6764466,38953800:0 -h1,14111:21702393,38953800:0,0,0 -k1,14111:32583029,38953800:10880636 -g1,14111:32583029,38953800 -) -(1,14121:6764466,39769727:25818563,424439,86428 -(1,14113:6764466,39769727:0,0,0 -g1,14113:6764466,39769727 -g1,14113:6764466,39769727 -g1,14113:6436786,39769727 -(1,14113:6436786,39769727:0,0,0 -) -g1,14113:6764466,39769727 -) -g1,14121:7760328,39769727 -g1,14121:8092282,39769727 -g1,14121:8424236,39769727 -g1,14121:10084006,39769727 -g1,14121:11743776,39769727 -g1,14121:13403546,39769727 -g1,14121:15063316,39769727 -k1,14121:15063316,39769727:0 -h1,14121:16391132,39769727:0,0,0 -k1,14121:32583029,39769727:16191897 -g1,14121:32583029,39769727 -) -(1,14121:6764466,40454582:25818563,407923,9908 -h1,14121:6764466,40454582:0,0,0 -g1,14121:7760328,40454582 -g1,14121:8424236,40454582 -g1,14121:8756190,40454582 -g1,14121:9088144,40454582 -g1,14121:9420098,40454582 -g1,14121:10084006,40454582 -g1,14121:10415960,40454582 -g1,14121:10747914,40454582 -g1,14121:11079868,40454582 -g1,14121:11743776,40454582 -g1,14121:12075730,40454582 -g1,14121:12407684,40454582 -g1,14121:12739638,40454582 -g1,14121:13403546,40454582 -g1,14121:13735500,40454582 -g1,14121:14067454,40454582 -g1,14121:14399408,40454582 -g1,14121:15063316,40454582 -g1,14121:15395270,40454582 -g1,14121:15727224,40454582 -g1,14121:16059178,40454582 -h1,14121:16391132,40454582:0,0,0 -k1,14121:32583029,40454582:16191897 -g1,14121:32583029,40454582 -) -(1,14121:6764466,41139437:25818563,407923,9908 -h1,14121:6764466,41139437:0,0,0 -g1,14121:7760328,41139437 -g1,14121:8424236,41139437 -g1,14121:8756190,41139437 -g1,14121:9088144,41139437 -g1,14121:9420098,41139437 -g1,14121:10084006,41139437 -g1,14121:10415960,41139437 -g1,14121:10747914,41139437 -g1,14121:11079868,41139437 -g1,14121:11743776,41139437 -g1,14121:12075730,41139437 -g1,14121:12407684,41139437 -g1,14121:12739638,41139437 -g1,14121:13403546,41139437 -g1,14121:13735500,41139437 -g1,14121:14067454,41139437 -g1,14121:14399408,41139437 -g1,14121:15063316,41139437 -g1,14121:15395270,41139437 -g1,14121:15727224,41139437 -g1,14121:16059178,41139437 -h1,14121:16391132,41139437:0,0,0 -k1,14121:32583029,41139437:16191897 -g1,14121:32583029,41139437 -) -(1,14121:6764466,41824292:25818563,407923,9908 -h1,14121:6764466,41824292:0,0,0 -g1,14121:7760328,41824292 -g1,14121:8424236,41824292 -g1,14121:8756190,41824292 -g1,14121:9088144,41824292 -g1,14121:9420098,41824292 -g1,14121:10084006,41824292 -g1,14121:10415960,41824292 -g1,14121:10747914,41824292 -g1,14121:11079868,41824292 -g1,14121:11743776,41824292 -g1,14121:12075730,41824292 -g1,14121:12407684,41824292 -g1,14121:12739638,41824292 -g1,14121:13403546,41824292 -g1,14121:13735500,41824292 -g1,14121:14067454,41824292 -g1,14121:14399408,41824292 -g1,14121:15063316,41824292 -g1,14121:15395270,41824292 -g1,14121:15727224,41824292 -g1,14121:16059178,41824292 -h1,14121:16391132,41824292:0,0,0 -k1,14121:32583029,41824292:16191897 -g1,14121:32583029,41824292 -) -(1,14121:6764466,42509147:25818563,407923,9908 -h1,14121:6764466,42509147:0,0,0 -g1,14121:7760328,42509147 -g1,14121:8424236,42509147 -g1,14121:8756190,42509147 -g1,14121:9088144,42509147 -g1,14121:9420098,42509147 -g1,14121:10084006,42509147 -g1,14121:10415960,42509147 -g1,14121:10747914,42509147 -g1,14121:11079868,42509147 -g1,14121:11743776,42509147 -g1,14121:12075730,42509147 -g1,14121:12407684,42509147 -g1,14121:12739638,42509147 -g1,14121:13403546,42509147 -g1,14121:13735500,42509147 -g1,14121:14067454,42509147 -g1,14121:14399408,42509147 -g1,14121:15063316,42509147 -g1,14121:15395270,42509147 -g1,14121:15727224,42509147 -g1,14121:16059178,42509147 -h1,14121:16391132,42509147:0,0,0 -k1,14121:32583029,42509147:16191897 -g1,14121:32583029,42509147 -) -(1,14121:6764466,43194002:25818563,407923,9908 -h1,14121:6764466,43194002:0,0,0 -g1,14121:7760328,43194002 -g1,14121:8424236,43194002 -g1,14121:8756190,43194002 -g1,14121:9088144,43194002 -g1,14121:9420098,43194002 -g1,14121:10084006,43194002 -g1,14121:10415960,43194002 -g1,14121:10747914,43194002 -g1,14121:11079868,43194002 -g1,14121:11743776,43194002 -g1,14121:12075730,43194002 -g1,14121:12407684,43194002 -g1,14121:12739638,43194002 -g1,14121:13403546,43194002 -g1,14121:13735500,43194002 -g1,14121:14067454,43194002 -g1,14121:14399408,43194002 -g1,14121:15063316,43194002 -g1,14121:15395270,43194002 -g1,14121:15727224,43194002 -g1,14121:16059178,43194002 -h1,14121:16391132,43194002:0,0,0 -k1,14121:32583029,43194002:16191897 -g1,14121:32583029,43194002 -) -(1,14121:6764466,43878857:25818563,407923,9908 -h1,14121:6764466,43878857:0,0,0 -g1,14121:7760328,43878857 -g1,14121:8424236,43878857 -g1,14121:8756190,43878857 -g1,14121:9088144,43878857 -g1,14121:10084006,43878857 -g1,14121:10415960,43878857 -g1,14121:10747914,43878857 -g1,14121:11743776,43878857 -g1,14121:12075730,43878857 -g1,14121:12407684,43878857 -g1,14121:13403546,43878857 -g1,14121:13735500,43878857 -g1,14121:14067454,43878857 -g1,14121:15063316,43878857 -g1,14121:15395270,43878857 -g1,14121:15727224,43878857 -k1,14121:15727224,43878857:0 -h1,14121:16391132,43878857:0,0,0 -k1,14121:32583029,43878857:16191897 -g1,14121:32583029,43878857 -) -] -) -g1,14122:32583029,43888765 -g1,14122:6764466,43888765 -g1,14122:6764466,43888765 -g1,14122:32583029,43888765 -g1,14122:32583029,43888765 -) -h1,14122:6764466,44085373:0,0,0 -] -g1,14157:32583029,45706769 -) -] -(1,14157:32583029,45706769:0,0,0 -g1,14157:32583029,45706769 -) -) -] -(1,14157:6630773,47279633:25952256,0,0 -h1,14157:6630773,47279633:25952256,0,0 -) -] -(1,14157:4262630,4025873:0,0,0 -[1,14157:-473656,4025873:0,0,0 -(1,14157:-473656,-710413:0,0,0 -(1,14157:-473656,-710413:0,0,0 -g1,14157:-473656,-710413 -) -g1,14157:-473656,-710413 +g1,14155:6630773,4812305 +g1,14155:6630773,4812305 +g1,14155:8843268,4812305 +g1,14155:11066249,4812305 +g1,14155:13415059,4812305 +k1,14155:31387651,4812305:17972592 +) +) +] +[1,14155:6630773,45706769:25952256,40108032,0 +(1,14155:6630773,45706769:25952256,40108032,0 +(1,14155:6630773,45706769:0,0,0 +g1,14155:6630773,45706769 +) +[1,14155:6630773,45706769:25952256,40108032,0 +v1,14155:6630773,6254097:0,393216,0 +(1,14155:6630773,45706769:25952256,39845888,0 +g1,14155:6630773,45706769 +g1,14155:6237557,45706769 +r1,14155:6368629,45706769:131072,39845888,0 +g1,14155:6567858,45706769 +g1,14155:6764466,45706769 +[1,14155:6764466,45706769:25818563,39845888,0 +(1,14054:6764466,6374028:25818563,513147,134348 +k1,14053:8566100,6374028:234013 +k1,14053:9819198,6374028:234013 +k1,14053:13206148,6374028:234013 +k1,14053:16401733,6374028:234013 +k1,14053:18896738,6374028:234013 +k1,14053:20172773,6374028:234013 +k1,14053:21610027,6374028:234013 +k1,14053:24148941,6374028:234013 +k1,14053:26037738,6374028:234013 +k1,14053:26803248,6374028:234013 +k1,14053:27846631,6374028:234013 +k1,14053:29284540,6374028:234013 +k1,14053:30466204,6374028:234013 +(1,14053:30466204,6374028:0,435480,115847 +r1,14155:32583029,6374028:2116825,551327,115847 +k1,14053:30466204,6374028:-2116825 +) +(1,14053:30466204,6374028:2116825,435480,115847 +k1,14053:30466204,6374028:3277 +h1,14053:32579752,6374028:0,411205,112570 +) +k1,14053:32583029,6374028:0 +) +(1,14054:6764466,7239108:25818563,513147,134348 +k1,14053:7560639,7239108:180135 +k1,14053:8759859,7239108:180135 +k1,14053:11930402,7239108:180135 +k1,14053:13849863,7239108:180135 +k1,14053:15505213,7239108:180135 +k1,14053:16344640,7239108:180135 +k1,14053:17543860,7239108:180135 +k1,14053:19258192,7239108:180134 +(1,14053:19258192,7239108:0,435480,115847 +r1,14155:21375017,7239108:2116825,551327,115847 +k1,14053:19258192,7239108:-2116825 +) +(1,14053:19258192,7239108:2116825,435480,115847 +k1,14053:19258192,7239108:3277 +h1,14053:21371740,7239108:0,411205,112570 +) +k1,14053:21555152,7239108:180135 +k1,14053:22386715,7239108:180135 +(1,14053:22386715,7239108:0,435480,115847 +r1,14155:24503540,7239108:2116825,551327,115847 +k1,14053:22386715,7239108:-2116825 +) +(1,14053:22386715,7239108:2116825,435480,115847 +k1,14053:22386715,7239108:3277 +h1,14053:24500263,7239108:0,411205,112570 +) +k1,14053:24683675,7239108:180135 +k1,14053:25395307,7239108:180135 +k1,14053:25931302,7239108:180135 +k1,14053:27302882,7239108:180135 +k1,14053:30886302,7239108:180135 +k1,14053:32583029,7239108:0 +) +(1,14054:6764466,8104188:25818563,505283,134348 +g1,14053:10438414,8104188 +g1,14053:14396788,8104188 +g1,14053:16885190,8104188 +(1,14053:16885190,8104188:0,435480,115847 +r1,14155:19002015,8104188:2116825,551327,115847 +k1,14053:16885190,8104188:-2116825 +) +(1,14053:16885190,8104188:2116825,435480,115847 +k1,14053:16885190,8104188:3277 +h1,14053:18998738,8104188:0,411205,112570 +) +k1,14054:32583029,8104188:13528586 +g1,14054:32583029,8104188 +) +v1,14056:6764466,9599741:0,393216,0 +(1,14069:6764466,14769143:25818563,5562618,196608 +g1,14069:6764466,14769143 +g1,14069:6764466,14769143 +g1,14069:6567858,14769143 +(1,14069:6567858,14769143:0,5562618,196608 +r1,14155:32779637,14769143:26211779,5759226,196608 +k1,14069:6567857,14769143:-26211780 +) +(1,14069:6567858,14769143:26211779,5562618,196608 +[1,14069:6764466,14769143:25818563,5366010,0 +(1,14058:6764466,9834178:25818563,431045,112852 +(1,14057:6764466,9834178:0,0,0 +g1,14057:6764466,9834178 +g1,14057:6764466,9834178 +g1,14057:6436786,9834178 +(1,14057:6436786,9834178:0,0,0 +) +g1,14057:6764466,9834178 +) +k1,14058:6764466,9834178:0 +k1,14058:6764466,9834178:0 +h1,14058:23694117,9834178:0,0,0 +k1,14058:32583029,9834178:8888912 +g1,14058:32583029,9834178 +) +(1,14068:6764466,10650105:25818563,407923,9908 +(1,14060:6764466,10650105:0,0,0 +g1,14060:6764466,10650105 +g1,14060:6764466,10650105 +g1,14060:6436786,10650105 +(1,14060:6436786,10650105:0,0,0 +) +g1,14060:6764466,10650105 +) +g1,14068:7760328,10650105 +g1,14068:8092282,10650105 +g1,14068:8424236,10650105 +g1,14068:9088144,10650105 +g1,14068:9752052,10650105 +g1,14068:10415960,10650105 +g1,14068:11079868,10650105 +h1,14068:11411822,10650105:0,0,0 +k1,14068:32583030,10650105:21171208 +g1,14068:32583030,10650105 +) +(1,14068:6764466,11334960:25818563,407923,9908 +h1,14068:6764466,11334960:0,0,0 +g1,14068:7760328,11334960 +g1,14068:8424236,11334960 +g1,14068:9088144,11334960 +g1,14068:9752052,11334960 +g1,14068:10415960,11334960 +g1,14068:11079868,11334960 +h1,14068:11411822,11334960:0,0,0 +k1,14068:32583030,11334960:21171208 +g1,14068:32583030,11334960 +) +(1,14068:6764466,12019815:25818563,407923,9908 +h1,14068:6764466,12019815:0,0,0 +g1,14068:7760328,12019815 +g1,14068:8424236,12019815 +g1,14068:9088144,12019815 +g1,14068:9752052,12019815 +g1,14068:10415960,12019815 +g1,14068:11079868,12019815 +h1,14068:11411822,12019815:0,0,0 +k1,14068:32583030,12019815:21171208 +g1,14068:32583030,12019815 +) +(1,14068:6764466,12704670:25818563,407923,9908 +h1,14068:6764466,12704670:0,0,0 +g1,14068:7760328,12704670 +g1,14068:8424236,12704670 +g1,14068:9088144,12704670 +g1,14068:9752052,12704670 +g1,14068:10415960,12704670 +g1,14068:11079868,12704670 +h1,14068:11411822,12704670:0,0,0 +k1,14068:32583030,12704670:21171208 +g1,14068:32583030,12704670 +) +(1,14068:6764466,13389525:25818563,407923,9908 +h1,14068:6764466,13389525:0,0,0 +g1,14068:7760328,13389525 +g1,14068:8424236,13389525 +g1,14068:9088144,13389525 +g1,14068:9752052,13389525 +g1,14068:10415960,13389525 +g1,14068:11079868,13389525 +h1,14068:11411822,13389525:0,0,0 +k1,14068:32583030,13389525:21171208 +g1,14068:32583030,13389525 +) +(1,14068:6764466,14074380:25818563,407923,9908 +h1,14068:6764466,14074380:0,0,0 +g1,14068:7760328,14074380 +g1,14068:8424236,14074380 +g1,14068:9088144,14074380 +g1,14068:9752052,14074380 +g1,14068:10415960,14074380 +g1,14068:11079868,14074380 +h1,14068:11411822,14074380:0,0,0 +k1,14068:32583030,14074380:21171208 +g1,14068:32583030,14074380 +) +(1,14068:6764466,14759235:25818563,407923,9908 +h1,14068:6764466,14759235:0,0,0 +g1,14068:7760328,14759235 +g1,14068:8424236,14759235 +g1,14068:9088144,14759235 +g1,14068:9752052,14759235 +g1,14068:10415960,14759235 +g1,14068:11079868,14759235 +h1,14068:11411822,14759235:0,0,0 +k1,14068:32583030,14759235:21171208 +g1,14068:32583030,14759235 +) +] +) +g1,14069:32583029,14769143 +g1,14069:6764466,14769143 +g1,14069:6764466,14769143 +g1,14069:32583029,14769143 +g1,14069:32583029,14769143 +) +h1,14069:6764466,14965751:0,0,0 +v1,14073:6764466,17272002:0,393216,0 +(1,14101:6764466,32810567:25818563,15931781,196608 +g1,14101:6764466,32810567 +g1,14101:6764466,32810567 +g1,14101:6567858,32810567 +(1,14101:6567858,32810567:0,15931781,196608 +r1,14155:32779637,32810567:26211779,16128389,196608 +k1,14101:6567857,32810567:-26211780 +) +(1,14101:6567858,32810567:26211779,15931781,196608 +[1,14101:6764466,32810567:25818563,15735173,0 +(1,14075:6764466,17506439:25818563,431045,106246 +(1,14074:6764466,17506439:0,0,0 +g1,14074:6764466,17506439 +g1,14074:6764466,17506439 +g1,14074:6436786,17506439 +(1,14074:6436786,17506439:0,0,0 +) +g1,14074:6764466,17506439 +) +k1,14075:6764466,17506439:0 +h1,14075:12075729,17506439:0,0,0 +k1,14075:32583029,17506439:20507300 +g1,14075:32583029,17506439 +) +(1,14100:6764466,18322366:25818563,398014,0 +(1,14077:6764466,18322366:0,0,0 +g1,14077:6764466,18322366 +g1,14077:6764466,18322366 +g1,14077:6436786,18322366 +(1,14077:6436786,18322366:0,0,0 +) +g1,14077:6764466,18322366 +) +h1,14100:7428374,18322366:0,0,0 +k1,14100:32583030,18322366:25154656 +g1,14100:32583030,18322366 +) +(1,14100:6764466,19007221:25818563,424439,8257 +h1,14100:6764466,19007221:0,0,0 +g1,14100:7760328,19007221 +h1,14100:9420098,19007221:0,0,0 +k1,14100:32583030,19007221:23162932 +g1,14100:32583030,19007221 +) +(1,14100:6764466,19692076:25818563,431045,106246 +h1,14100:6764466,19692076:0,0,0 +k1,14100:7649677,19692076:221303 +k1,14100:11190519,19692076:221303 +k1,14100:11743776,19692076:221303 +k1,14100:13624849,19692076:221303 +k1,14100:14178106,19692076:221303 +k1,14100:16391133,19692076:221303 +k1,14100:17940252,19692076:221303 +k1,14100:18493509,19692076:221303 +k1,14100:23030213,19692076:221303 +k1,14100:26239101,19692076:221303 +k1,14100:26792358,19692076:221303 +k1,14100:30333200,19692076:221303 +k1,14100:30886457,19692076:221303 +h1,14100:36529674,19692076:0,0,0 +k1,14100:36529674,19692076:0 +k1,14100:36529674,19692076:0 +) +(1,14100:6764466,20376931:25818563,398014,0 +h1,14100:6764466,20376931:0,0,0 +h1,14100:7428374,20376931:0,0,0 +k1,14100:32583030,20376931:25154656 +g1,14100:32583030,20376931 +) +(1,14100:6764466,21061786:25818563,424439,6605 +h1,14100:6764466,21061786:0,0,0 +g1,14100:7760328,21061786 +h1,14100:11079867,21061786:0,0,0 +k1,14100:32583029,21061786:21503162 +g1,14100:32583029,21061786 +) +(1,14100:6764466,21746641:25818563,424439,86428 +h1,14100:6764466,21746641:0,0,0 +g1,14100:7760328,21746641 +g1,14100:8092282,21746641 +g1,14100:8424236,21746641 +g1,14100:8756190,21746641 +g1,14100:10084006,21746641 +g1,14100:10415960,21746641 +g1,14100:10747914,21746641 +g1,14100:11079868,21746641 +g1,14100:11411822,21746641 +g1,14100:12407684,21746641 +g1,14100:14731362,21746641 +g1,14100:15063316,21746641 +g1,14100:15395270,21746641 +g1,14100:15727224,21746641 +g1,14100:16059178,21746641 +g1,14100:17055040,21746641 +g1,14100:17386994,21746641 +g1,14100:17718948,21746641 +g1,14100:18050902,21746641 +h1,14100:19046764,21746641:0,0,0 +k1,14100:32583029,21746641:13536265 +g1,14100:32583029,21746641 +) +(1,14100:6764466,22431496:25818563,407923,9908 +h1,14100:6764466,22431496:0,0,0 +g1,14100:7760328,22431496 +g1,14100:10084006,22431496 +g1,14100:12407684,22431496 +g1,14100:14731362,22431496 +g1,14100:15063316,22431496 +g1,14100:17055040,22431496 +g1,14100:17386994,22431496 +h1,14100:19046764,22431496:0,0,0 +k1,14100:32583029,22431496:13536265 +g1,14100:32583029,22431496 +) +(1,14100:6764466,23116351:25818563,398014,0 +h1,14100:6764466,23116351:0,0,0 +h1,14100:7428374,23116351:0,0,0 +k1,14100:32583030,23116351:25154656 +g1,14100:32583030,23116351 +) +(1,14100:6764466,23801206:25818563,431045,8257 +h1,14100:6764466,23801206:0,0,0 +g1,14100:7760328,23801206 +h1,14100:12075729,23801206:0,0,0 +k1,14100:32583029,23801206:20507300 +g1,14100:32583029,23801206 +) +(1,14100:6764466,24486061:25818563,424439,79822 +h1,14100:6764466,24486061:0,0,0 +g1,14100:7760328,24486061 +g1,14100:8092282,24486061 +g1,14100:8424236,24486061 +g1,14100:8756190,24486061 +g1,14100:9088144,24486061 +g1,14100:9420098,24486061 +g1,14100:9752052,24486061 +g1,14100:10084006,24486061 +g1,14100:10415960,24486061 +g1,14100:10747914,24486061 +g1,14100:11079868,24486061 +g1,14100:11411822,24486061 +g1,14100:11743776,24486061 +g1,14100:14731361,24486061 +g1,14100:16391131,24486061 +g1,14100:18382855,24486061 +g1,14100:19046763,24486061 +g1,14100:21038487,24486061 +k1,14100:21038487,24486061:0 +h1,14100:23694119,24486061:0,0,0 +k1,14100:32583029,24486061:8888910 +g1,14100:32583029,24486061 +) +(1,14100:6764466,25170916:25818563,424439,106246 +h1,14100:6764466,25170916:0,0,0 +g1,14100:7760328,25170916 +g1,14100:11743775,25170916 +g1,14100:12075729,25170916 +g1,14100:14731361,25170916 +g1,14100:15063315,25170916 +g1,14100:15395269,25170916 +g1,14100:15727223,25170916 +g1,14100:16059177,25170916 +g1,14100:18382855,25170916 +g1,14100:18714809,25170916 +g1,14100:21038487,25170916 +g1,14100:21370441,25170916 +g1,14100:22034349,25170916 +g1,14100:24026073,25170916 +h1,14100:25021935,25170916:0,0,0 +k1,14100:32583029,25170916:7561094 +g1,14100:32583029,25170916 +) +(1,14100:6764466,25855771:25818563,407923,106246 +h1,14100:6764466,25855771:0,0,0 +g1,14100:7760328,25855771 +g1,14100:10084006,25855771 +g1,14100:10415960,25855771 +g1,14100:10747914,25855771 +g1,14100:11079868,25855771 +g1,14100:11411822,25855771 +g1,14100:11743776,25855771 +g1,14100:12075730,25855771 +g1,14100:12407684,25855771 +g1,14100:14731362,25855771 +g1,14100:15063316,25855771 +g1,14100:15395270,25855771 +g1,14100:15727224,25855771 +g1,14100:16059178,25855771 +g1,14100:18382856,25855771 +g1,14100:18714810,25855771 +g1,14100:19046764,25855771 +g1,14100:21038488,25855771 +g1,14100:21370442,25855771 +g1,14100:21702396,25855771 +g1,14100:22034350,25855771 +h1,14100:23694120,25855771:0,0,0 +k1,14100:32583029,25855771:8888909 +g1,14100:32583029,25855771 +) +(1,14100:6764466,26540626:25818563,407923,106246 +h1,14100:6764466,26540626:0,0,0 +g1,14100:7760328,26540626 +g1,14100:10084006,26540626 +g1,14100:10415960,26540626 +g1,14100:10747914,26540626 +g1,14100:11079868,26540626 +g1,14100:11411822,26540626 +g1,14100:11743776,26540626 +g1,14100:14731361,26540626 +g1,14100:15063315,26540626 +g1,14100:15395269,26540626 +g1,14100:15727223,26540626 +g1,14100:16059177,26540626 +g1,14100:18382855,26540626 +g1,14100:18714809,26540626 +g1,14100:21038487,26540626 +g1,14100:24026073,26540626 +h1,14100:25021935,26540626:0,0,0 +k1,14100:32583029,26540626:7561094 +g1,14100:32583029,26540626 +) +(1,14100:6764466,27225481:25818563,407923,106246 +h1,14100:6764466,27225481:0,0,0 +g1,14100:7760328,27225481 +g1,14100:10084006,27225481 +g1,14100:10415960,27225481 +g1,14100:10747914,27225481 +g1,14100:11079868,27225481 +g1,14100:11411822,27225481 +g1,14100:11743776,27225481 +g1,14100:12075730,27225481 +g1,14100:14731362,27225481 +g1,14100:15063316,27225481 +g1,14100:15395270,27225481 +g1,14100:15727224,27225481 +g1,14100:16059178,27225481 +g1,14100:18382856,27225481 +g1,14100:18714810,27225481 +g1,14100:21038488,27225481 +g1,14100:24026074,27225481 +h1,14100:25021936,27225481:0,0,0 +k1,14100:32583029,27225481:7561093 +g1,14100:32583029,27225481 +) +(1,14100:6764466,27910336:25818563,407923,106246 +h1,14100:6764466,27910336:0,0,0 +g1,14100:7760328,27910336 +g1,14100:10084006,27910336 +g1,14100:10415960,27910336 +g1,14100:10747914,27910336 +g1,14100:11079868,27910336 +g1,14100:11411822,27910336 +g1,14100:11743776,27910336 +g1,14100:14731361,27910336 +g1,14100:15063315,27910336 +g1,14100:15395269,27910336 +g1,14100:15727223,27910336 +g1,14100:16059177,27910336 +g1,14100:18382855,27910336 +g1,14100:18714809,27910336 +g1,14100:21038487,27910336 +g1,14100:24026073,27910336 +h1,14100:25021935,27910336:0,0,0 +k1,14100:32583029,27910336:7561094 +g1,14100:32583029,27910336 +) +(1,14100:6764466,28595191:25818563,407923,106246 +h1,14100:6764466,28595191:0,0,0 +g1,14100:7760328,28595191 +g1,14100:10084006,28595191 +g1,14100:10415960,28595191 +g1,14100:10747914,28595191 +g1,14100:11079868,28595191 +g1,14100:11411822,28595191 +g1,14100:11743776,28595191 +g1,14100:12075730,28595191 +g1,14100:12407684,28595191 +g1,14100:14731362,28595191 +g1,14100:15063316,28595191 +g1,14100:15395270,28595191 +g1,14100:15727224,28595191 +g1,14100:16059178,28595191 +g1,14100:18382856,28595191 +g1,14100:18714810,28595191 +g1,14100:19046764,28595191 +g1,14100:21038488,28595191 +g1,14100:21370442,28595191 +g1,14100:21702396,28595191 +g1,14100:22034350,28595191 +h1,14100:23694120,28595191:0,0,0 +k1,14100:32583029,28595191:8888909 +g1,14100:32583029,28595191 +) +(1,14100:6764466,29280046:25818563,398014,0 +h1,14100:6764466,29280046:0,0,0 +g1,14100:7760328,29280046 +k1,14100:7760328,29280046:0 +h1,14100:8756190,29280046:0,0,0 +k1,14100:32583030,29280046:23826840 +g1,14100:32583030,29280046 +) +(1,14100:6764466,29964901:25818563,431045,112852 +h1,14100:6764466,29964901:0,0,0 +g1,14100:7760328,29964901 +g1,14100:10415960,29964901 +g1,14100:12739638,29964901 +g1,14100:13071592,29964901 +g1,14100:13735500,29964901 +g1,14100:15727224,29964901 +g1,14100:17718948,29964901 +g1,14100:19378718,29964901 +g1,14100:21038488,29964901 +g1,14100:22366304,29964901 +g1,14100:24026074,29964901 +g1,14100:25353890,29964901 +g1,14100:26681706,29964901 +g1,14100:27345614,29964901 +g1,14100:28009522,29964901 +h1,14100:28341476,29964901:0,0,0 +k1,14100:32583029,29964901:4241553 +g1,14100:32583029,29964901 +) +(1,14100:6764466,30649756:25818563,398014,0 +h1,14100:6764466,30649756:0,0,0 +h1,14100:7428374,30649756:0,0,0 +k1,14100:32583030,30649756:25154656 +g1,14100:32583030,30649756 +) +(1,14100:6764466,31334611:25818563,431045,112852 +h1,14100:6764466,31334611:0,0,0 +g1,14100:7760328,31334611 +g1,14100:10747913,31334611 +g1,14100:13735498,31334611 +g1,14100:16059176,31334611 +g1,14100:18050900,31334611 +g1,14100:19046762,31334611 +g1,14100:20042624,31334611 +g1,14100:22698256,31334611 +g1,14100:23694118,31334611 +h1,14100:26017796,31334611:0,0,0 +k1,14100:32583029,31334611:6565233 +g1,14100:32583029,31334611 +) +(1,14100:6764466,32019466:25818563,424439,112852 +h1,14100:6764466,32019466:0,0,0 +g1,14100:7760328,32019466 +g1,14100:10747913,32019466 +g1,14100:14399406,32019466 +g1,14100:14731360,32019466 +g1,14100:17386992,32019466 +g1,14100:20374577,32019466 +g1,14100:24026070,32019466 +g1,14100:24358024,32019466 +h1,14100:26349748,32019466:0,0,0 +k1,14100:32583029,32019466:6233281 +g1,14100:32583029,32019466 +) +(1,14100:6764466,32704321:25818563,424439,106246 +h1,14100:6764466,32704321:0,0,0 +g1,14100:7760328,32704321 +g1,14100:12075729,32704321 +g1,14100:12407683,32704321 +g1,14100:14067453,32704321 +g1,14100:15063315,32704321 +g1,14100:15727223,32704321 +g1,14100:17055039,32704321 +g1,14100:18050901,32704321 +g1,14100:19378717,32704321 +g1,14100:19710671,32704321 +g1,14100:22698257,32704321 +g1,14100:23362165,32704321 +k1,14100:23362165,32704321:0 +h1,14100:25685843,32704321:0,0,0 +k1,14100:32583029,32704321:6897186 +g1,14100:32583029,32704321 +) +] +) +g1,14101:32583029,32810567 +g1,14101:6764466,32810567 +g1,14101:6764466,32810567 +g1,14101:32583029,32810567 +g1,14101:32583029,32810567 +) +h1,14101:6764466,33007175:0,0,0 +(1,14105:6764466,35493651:25818563,505283,115847 +h1,14104:6764466,35493651:983040,0,0 +k1,14104:8531146,35493651:155805 +(1,14104:8531146,35493651:0,459977,115847 +r1,14155:10647971,35493651:2116825,575824,115847 +k1,14104:8531146,35493651:-2116825 +) +(1,14104:8531146,35493651:2116825,459977,115847 +k1,14104:8531146,35493651:3277 +h1,14104:10644694,35493651:0,411205,112570 +) +k1,14104:10803776,35493651:155805 +k1,14104:11827933,35493651:155805 +k1,14104:13496964,35493651:155805 +(1,14104:13496964,35493651:0,452978,115847 +r1,14155:17372348,35493651:3875384,568825,115847 +k1,14104:13496964,35493651:-3875384 +) +(1,14104:13496964,35493651:3875384,452978,115847 +k1,14104:13496964,35493651:3277 +h1,14104:17369071,35493651:0,411205,112570 +) +k1,14104:17528153,35493651:155805 +k1,14104:19077909,35493651:155805 +k1,14104:20252798,35493651:155804 +k1,14104:21773718,35493651:155805 +k1,14104:25688013,35493651:155805 +k1,14104:26495246,35493651:155805 +k1,14104:27398817,35493651:155805 +k1,14104:29148458,35493651:155805 +k1,14104:30721151,35493651:155805 +k1,14105:32583029,35493651:0 +) +(1,14105:6764466,36358731:25818563,513147,126483 +k1,14104:8268985,36358731:214115 +k1,14104:9430752,36358731:214116 +k1,14104:10663952,36358731:214115 +k1,14104:12026259,36358731:214116 +k1,14104:15384792,36358731:214116 +k1,14104:17061015,36358731:214115 +k1,14104:18266690,36358731:214115 +k1,14104:22145579,36358731:214116 +k1,14104:23121223,36358731:214116 +k1,14104:24354423,36358731:214115 +k1,14104:25933653,36358731:214115 +k1,14104:26807061,36358731:214116 +k1,14104:28040261,36358731:214115 +k1,14104:31008855,36358731:214116 +k1,14104:32583029,36358731:0 +) +(1,14105:6764466,37223811:25818563,513147,134348 +g1,14104:8155140,37223811 +g1,14104:9420640,37223811 +g1,14104:11579395,37223811 +g1,14104:12726275,37223811 +k1,14105:32583029,37223811:16066807 +g1,14105:32583029,37223811 +) +v1,14107:6764466,38719363:0,393216,0 +(1,14120:6764466,43888765:25818563,5562618,196608 +g1,14120:6764466,43888765 +g1,14120:6764466,43888765 +g1,14120:6567858,43888765 +(1,14120:6567858,43888765:0,5562618,196608 +r1,14155:32779637,43888765:26211779,5759226,196608 +k1,14120:6567857,43888765:-26211780 +) +(1,14120:6567858,43888765:26211779,5562618,196608 +[1,14120:6764466,43888765:25818563,5366010,0 +(1,14109:6764466,38953800:25818563,431045,112852 +(1,14108:6764466,38953800:0,0,0 +g1,14108:6764466,38953800 +g1,14108:6764466,38953800 +g1,14108:6436786,38953800 +(1,14108:6436786,38953800:0,0,0 +) +g1,14108:6764466,38953800 +) +k1,14109:6764466,38953800:0 +k1,14109:6764466,38953800:0 +h1,14109:21702393,38953800:0,0,0 +k1,14109:32583029,38953800:10880636 +g1,14109:32583029,38953800 +) +(1,14119:6764466,39769727:25818563,424439,86428 +(1,14111:6764466,39769727:0,0,0 +g1,14111:6764466,39769727 +g1,14111:6764466,39769727 +g1,14111:6436786,39769727 +(1,14111:6436786,39769727:0,0,0 +) +g1,14111:6764466,39769727 +) +g1,14119:7760328,39769727 +g1,14119:8092282,39769727 +g1,14119:8424236,39769727 +g1,14119:10084006,39769727 +g1,14119:11743776,39769727 +g1,14119:13403546,39769727 +g1,14119:15063316,39769727 +k1,14119:15063316,39769727:0 +h1,14119:16391132,39769727:0,0,0 +k1,14119:32583029,39769727:16191897 +g1,14119:32583029,39769727 +) +(1,14119:6764466,40454582:25818563,407923,9908 +h1,14119:6764466,40454582:0,0,0 +g1,14119:7760328,40454582 +g1,14119:8424236,40454582 +g1,14119:8756190,40454582 +g1,14119:9088144,40454582 +g1,14119:9420098,40454582 +g1,14119:10084006,40454582 +g1,14119:10415960,40454582 +g1,14119:10747914,40454582 +g1,14119:11079868,40454582 +g1,14119:11743776,40454582 +g1,14119:12075730,40454582 +g1,14119:12407684,40454582 +g1,14119:12739638,40454582 +g1,14119:13403546,40454582 +g1,14119:13735500,40454582 +g1,14119:14067454,40454582 +g1,14119:14399408,40454582 +g1,14119:15063316,40454582 +g1,14119:15395270,40454582 +g1,14119:15727224,40454582 +g1,14119:16059178,40454582 +h1,14119:16391132,40454582:0,0,0 +k1,14119:32583029,40454582:16191897 +g1,14119:32583029,40454582 +) +(1,14119:6764466,41139437:25818563,407923,9908 +h1,14119:6764466,41139437:0,0,0 +g1,14119:7760328,41139437 +g1,14119:8424236,41139437 +g1,14119:8756190,41139437 +g1,14119:9088144,41139437 +g1,14119:9420098,41139437 +g1,14119:10084006,41139437 +g1,14119:10415960,41139437 +g1,14119:10747914,41139437 +g1,14119:11079868,41139437 +g1,14119:11743776,41139437 +g1,14119:12075730,41139437 +g1,14119:12407684,41139437 +g1,14119:12739638,41139437 +g1,14119:13403546,41139437 +g1,14119:13735500,41139437 +g1,14119:14067454,41139437 +g1,14119:14399408,41139437 +g1,14119:15063316,41139437 +g1,14119:15395270,41139437 +g1,14119:15727224,41139437 +g1,14119:16059178,41139437 +h1,14119:16391132,41139437:0,0,0 +k1,14119:32583029,41139437:16191897 +g1,14119:32583029,41139437 +) +(1,14119:6764466,41824292:25818563,407923,9908 +h1,14119:6764466,41824292:0,0,0 +g1,14119:7760328,41824292 +g1,14119:8424236,41824292 +g1,14119:8756190,41824292 +g1,14119:9088144,41824292 +g1,14119:9420098,41824292 +g1,14119:10084006,41824292 +g1,14119:10415960,41824292 +g1,14119:10747914,41824292 +g1,14119:11079868,41824292 +g1,14119:11743776,41824292 +g1,14119:12075730,41824292 +g1,14119:12407684,41824292 +g1,14119:12739638,41824292 +g1,14119:13403546,41824292 +g1,14119:13735500,41824292 +g1,14119:14067454,41824292 +g1,14119:14399408,41824292 +g1,14119:15063316,41824292 +g1,14119:15395270,41824292 +g1,14119:15727224,41824292 +g1,14119:16059178,41824292 +h1,14119:16391132,41824292:0,0,0 +k1,14119:32583029,41824292:16191897 +g1,14119:32583029,41824292 +) +(1,14119:6764466,42509147:25818563,407923,9908 +h1,14119:6764466,42509147:0,0,0 +g1,14119:7760328,42509147 +g1,14119:8424236,42509147 +g1,14119:8756190,42509147 +g1,14119:9088144,42509147 +g1,14119:9420098,42509147 +g1,14119:10084006,42509147 +g1,14119:10415960,42509147 +g1,14119:10747914,42509147 +g1,14119:11079868,42509147 +g1,14119:11743776,42509147 +g1,14119:12075730,42509147 +g1,14119:12407684,42509147 +g1,14119:12739638,42509147 +g1,14119:13403546,42509147 +g1,14119:13735500,42509147 +g1,14119:14067454,42509147 +g1,14119:14399408,42509147 +g1,14119:15063316,42509147 +g1,14119:15395270,42509147 +g1,14119:15727224,42509147 +g1,14119:16059178,42509147 +h1,14119:16391132,42509147:0,0,0 +k1,14119:32583029,42509147:16191897 +g1,14119:32583029,42509147 +) +(1,14119:6764466,43194002:25818563,407923,9908 +h1,14119:6764466,43194002:0,0,0 +g1,14119:7760328,43194002 +g1,14119:8424236,43194002 +g1,14119:8756190,43194002 +g1,14119:9088144,43194002 +g1,14119:9420098,43194002 +g1,14119:10084006,43194002 +g1,14119:10415960,43194002 +g1,14119:10747914,43194002 +g1,14119:11079868,43194002 +g1,14119:11743776,43194002 +g1,14119:12075730,43194002 +g1,14119:12407684,43194002 +g1,14119:12739638,43194002 +g1,14119:13403546,43194002 +g1,14119:13735500,43194002 +g1,14119:14067454,43194002 +g1,14119:14399408,43194002 +g1,14119:15063316,43194002 +g1,14119:15395270,43194002 +g1,14119:15727224,43194002 +g1,14119:16059178,43194002 +h1,14119:16391132,43194002:0,0,0 +k1,14119:32583029,43194002:16191897 +g1,14119:32583029,43194002 +) +(1,14119:6764466,43878857:25818563,407923,9908 +h1,14119:6764466,43878857:0,0,0 +g1,14119:7760328,43878857 +g1,14119:8424236,43878857 +g1,14119:8756190,43878857 +g1,14119:9088144,43878857 +g1,14119:10084006,43878857 +g1,14119:10415960,43878857 +g1,14119:10747914,43878857 +g1,14119:11743776,43878857 +g1,14119:12075730,43878857 +g1,14119:12407684,43878857 +g1,14119:13403546,43878857 +g1,14119:13735500,43878857 +g1,14119:14067454,43878857 +g1,14119:15063316,43878857 +g1,14119:15395270,43878857 +g1,14119:15727224,43878857 +k1,14119:15727224,43878857:0 +h1,14119:16391132,43878857:0,0,0 +k1,14119:32583029,43878857:16191897 +g1,14119:32583029,43878857 +) +] +) +g1,14120:32583029,43888765 +g1,14120:6764466,43888765 +g1,14120:6764466,43888765 +g1,14120:32583029,43888765 +g1,14120:32583029,43888765 +) +h1,14120:6764466,44085373:0,0,0 +] +g1,14155:32583029,45706769 +) +] +(1,14155:32583029,45706769:0,0,0 +g1,14155:32583029,45706769 +) +) +] +(1,14155:6630773,47279633:25952256,0,0 +h1,14155:6630773,47279633:25952256,0,0 +) +] +(1,14155:4262630,4025873:0,0,0 +[1,14155:-473656,4025873:0,0,0 +(1,14155:-473656,-710413:0,0,0 +(1,14155:-473656,-710413:0,0,0 +g1,14155:-473656,-710413 +) +g1,14155:-473656,-710413 ) ] ) ] !27951 -}226 -Input:2400:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2401:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2402:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}227 Input:2403:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2404:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2405:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -250089,1007 +250288,1007 @@ Input:2408:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2409:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2410:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2411:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2412:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{227 -[1,14182:4262630,47279633:28320399,43253760,0 -(1,14182:4262630,4025873:0,0,0 -[1,14182:-473656,4025873:0,0,0 -(1,14182:-473656,-710413:0,0,0 -(1,14182:-473656,-644877:0,0,0 -k1,14182:-473656,-644877:-65536 +{228 +[1,14180:4262630,47279633:28320399,43253760,0 +(1,14180:4262630,4025873:0,0,0 +[1,14180:-473656,4025873:0,0,0 +(1,14180:-473656,-710413:0,0,0 +(1,14180:-473656,-644877:0,0,0 +k1,14180:-473656,-644877:-65536 ) -(1,14182:-473656,4736287:0,0,0 -k1,14182:-473656,4736287:5209943 +(1,14180:-473656,4736287:0,0,0 +k1,14180:-473656,4736287:5209943 ) -g1,14182:-473656,-710413 +g1,14180:-473656,-710413 ) ] ) -[1,14182:6630773,47279633:25952256,43253760,0 -[1,14182:6630773,4812305:25952256,786432,0 -(1,14182:6630773,4812305:25952256,513147,126483 -(1,14182:6630773,4812305:25952256,513147,126483 -g1,14182:3078558,4812305 -[1,14182:3078558,4812305:0,0,0 -(1,14182:3078558,2439708:0,1703936,0 -k1,14182:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14182:2537886,2439708:1179648,16384,0 +[1,14180:6630773,47279633:25952256,43253760,0 +[1,14180:6630773,4812305:25952256,786432,0 +(1,14180:6630773,4812305:25952256,513147,126483 +(1,14180:6630773,4812305:25952256,513147,126483 +g1,14180:3078558,4812305 +[1,14180:3078558,4812305:0,0,0 +(1,14180:3078558,2439708:0,1703936,0 +k1,14180:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14180:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14182:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14180:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14182:3078558,4812305:0,0,0 -(1,14182:3078558,2439708:0,1703936,0 -g1,14182:29030814,2439708 -g1,14182:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14182:36151628,1915420:16384,1179648,0 +[1,14180:3078558,4812305:0,0,0 +(1,14180:3078558,2439708:0,1703936,0 +g1,14180:29030814,2439708 +g1,14180:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14180:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14182:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14180:37855564,2439708:1179648,16384,0 ) ) -k1,14182:3078556,2439708:-34777008 +k1,14180:3078556,2439708:-34777008 ) ] -[1,14182:3078558,4812305:0,0,0 -(1,14182:3078558,49800853:0,16384,2228224 -k1,14182:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14182:2537886,49800853:1179648,16384,0 +[1,14180:3078558,4812305:0,0,0 +(1,14180:3078558,49800853:0,16384,2228224 +k1,14180:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14180:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14182:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14180:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14182:3078558,4812305:0,0,0 -(1,14182:3078558,49800853:0,16384,2228224 -g1,14182:29030814,49800853 -g1,14182:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14182:36151628,51504789:16384,1179648,0 +[1,14180:3078558,4812305:0,0,0 +(1,14180:3078558,49800853:0,16384,2228224 +g1,14180:29030814,49800853 +g1,14180:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14180:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14182:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14180:37855564,49800853:1179648,16384,0 ) ) -k1,14182:3078556,49800853:-34777008 +k1,14180:3078556,49800853:-34777008 ) -] -g1,14182:6630773,4812305 -k1,14182:19575446,4812305:11749296 -g1,14182:21198117,4812305 -g1,14182:21985204,4812305 -g1,14182:24539797,4812305 -g1,14182:25949476,4812305 -g1,14182:28728857,4812305 -g1,14182:29852144,4812305 -) -) -] -[1,14182:6630773,45706769:25952256,40108032,0 -(1,14182:6630773,45706769:25952256,40108032,0 -(1,14182:6630773,45706769:0,0,0 -g1,14182:6630773,45706769 -) -[1,14182:6630773,45706769:25952256,40108032,0 -v1,14157:6630773,6254097:0,393216,0 -(1,14157:6630773,21989270:25952256,16128389,0 -g1,14157:6630773,21989270 -g1,14157:6237557,21989270 -r1,14182:6368629,21989270:131072,16128389,0 -g1,14157:6567858,21989270 -g1,14157:6764466,21989270 -[1,14157:6764466,21989270:25818563,16128389,0 -v1,14126:6764466,6254097:0,393216,0 -(1,14154:6764466,21792662:25818563,15931781,196608 -g1,14154:6764466,21792662 -g1,14154:6764466,21792662 -g1,14154:6567858,21792662 -(1,14154:6567858,21792662:0,15931781,196608 -r1,14182:32779637,21792662:26211779,16128389,196608 -k1,14154:6567857,21792662:-26211780 -) -(1,14154:6567858,21792662:26211779,15931781,196608 -[1,14154:6764466,21792662:25818563,15735173,0 -(1,14128:6764466,6488534:25818563,431045,106246 -(1,14127:6764466,6488534:0,0,0 -g1,14127:6764466,6488534 -g1,14127:6764466,6488534 -g1,14127:6436786,6488534 -(1,14127:6436786,6488534:0,0,0 -) -g1,14127:6764466,6488534 -) -k1,14128:6764466,6488534:0 -h1,14128:11743775,6488534:0,0,0 -k1,14128:32583029,6488534:20839254 -g1,14128:32583029,6488534 -) -(1,14153:6764466,7304461:25818563,398014,0 -(1,14130:6764466,7304461:0,0,0 -g1,14130:6764466,7304461 -g1,14130:6764466,7304461 -g1,14130:6436786,7304461 -(1,14130:6436786,7304461:0,0,0 -) -g1,14130:6764466,7304461 -) -h1,14153:7428374,7304461:0,0,0 -k1,14153:32583030,7304461:25154656 -g1,14153:32583030,7304461 -) -(1,14153:6764466,7989316:25818563,424439,8257 -h1,14153:6764466,7989316:0,0,0 -g1,14153:7760328,7989316 -h1,14153:9420098,7989316:0,0,0 -k1,14153:32583030,7989316:23162932 -g1,14153:32583030,7989316 -) -(1,14153:6764466,8674171:25818563,431045,106246 -h1,14153:6764466,8674171:0,0,0 -k1,14153:7649677,8674171:221303 -k1,14153:11190519,8674171:221303 -k1,14153:11743776,8674171:221303 -k1,14153:13624849,8674171:221303 -k1,14153:14178106,8674171:221303 -k1,14153:16391133,8674171:221303 -k1,14153:17940252,8674171:221303 -k1,14153:18493509,8674171:221303 -k1,14153:23030213,8674171:221303 -k1,14153:26239101,8674171:221303 -k1,14153:26792358,8674171:221303 -k1,14153:30333200,8674171:221303 -k1,14153:30886457,8674171:221303 -h1,14153:34537950,8674171:0,0,0 -k1,14153:34537950,8674171:0 -k1,14153:34537950,8674171:0 -) -(1,14153:6764466,9359026:25818563,398014,0 -h1,14153:6764466,9359026:0,0,0 -h1,14153:7428374,9359026:0,0,0 -k1,14153:32583030,9359026:25154656 -g1,14153:32583030,9359026 -) -(1,14153:6764466,10043881:25818563,424439,6605 -h1,14153:6764466,10043881:0,0,0 -g1,14153:7760328,10043881 -h1,14153:11079867,10043881:0,0,0 -k1,14153:32583029,10043881:21503162 -g1,14153:32583029,10043881 -) -(1,14153:6764466,10728736:25818563,424439,86428 -h1,14153:6764466,10728736:0,0,0 -g1,14153:7760328,10728736 -g1,14153:8092282,10728736 -g1,14153:8424236,10728736 -g1,14153:8756190,10728736 -g1,14153:10084006,10728736 -g1,14153:10415960,10728736 -g1,14153:10747914,10728736 -g1,14153:11079868,10728736 -g1,14153:11411822,10728736 -g1,14153:12407684,10728736 -g1,14153:14731362,10728736 -g1,14153:15063316,10728736 -g1,14153:15395270,10728736 -g1,14153:15727224,10728736 -g1,14153:16059178,10728736 -g1,14153:17055040,10728736 -g1,14153:17386994,10728736 -g1,14153:17718948,10728736 -g1,14153:18050902,10728736 -h1,14153:19046764,10728736:0,0,0 -k1,14153:32583029,10728736:13536265 -g1,14153:32583029,10728736 -) -(1,14153:6764466,11413591:25818563,407923,9908 -h1,14153:6764466,11413591:0,0,0 -g1,14153:7760328,11413591 -g1,14153:10084006,11413591 -g1,14153:12407684,11413591 -g1,14153:14731362,11413591 -g1,14153:15063316,11413591 -g1,14153:17055040,11413591 -g1,14153:17386994,11413591 -h1,14153:19046764,11413591:0,0,0 -k1,14153:32583029,11413591:13536265 -g1,14153:32583029,11413591 -) -(1,14153:6764466,12098446:25818563,398014,0 -h1,14153:6764466,12098446:0,0,0 -h1,14153:7428374,12098446:0,0,0 -k1,14153:32583030,12098446:25154656 -g1,14153:32583030,12098446 -) -(1,14153:6764466,12783301:25818563,431045,8257 -h1,14153:6764466,12783301:0,0,0 -g1,14153:7760328,12783301 -h1,14153:12075729,12783301:0,0,0 -k1,14153:32583029,12783301:20507300 -g1,14153:32583029,12783301 -) -(1,14153:6764466,13468156:25818563,424439,79822 -h1,14153:6764466,13468156:0,0,0 -g1,14153:7760328,13468156 -g1,14153:8092282,13468156 -g1,14153:8424236,13468156 -g1,14153:8756190,13468156 -g1,14153:9088144,13468156 -g1,14153:9420098,13468156 -g1,14153:9752052,13468156 -g1,14153:10084006,13468156 -g1,14153:10415960,13468156 -g1,14153:10747914,13468156 -g1,14153:11079868,13468156 -g1,14153:11411822,13468156 -g1,14153:11743776,13468156 -g1,14153:14731361,13468156 -g1,14153:16391131,13468156 -g1,14153:18382855,13468156 -g1,14153:19046763,13468156 -g1,14153:21038487,13468156 -k1,14153:21038487,13468156:0 -h1,14153:23694119,13468156:0,0,0 -k1,14153:32583029,13468156:8888910 -g1,14153:32583029,13468156 -) -(1,14153:6764466,14153011:25818563,424439,106246 -h1,14153:6764466,14153011:0,0,0 -g1,14153:7760328,14153011 -g1,14153:11743775,14153011 -g1,14153:12075729,14153011 -g1,14153:12407683,14153011 -g1,14153:14731361,14153011 -g1,14153:15063315,14153011 -g1,14153:15395269,14153011 -g1,14153:15727223,14153011 -g1,14153:16059177,14153011 -g1,14153:18382855,14153011 -g1,14153:18714809,14153011 -g1,14153:21038487,14153011 -g1,14153:21370441,14153011 -g1,14153:22034349,14153011 -g1,14153:24026073,14153011 -h1,14153:25021935,14153011:0,0,0 -k1,14153:32583029,14153011:7561094 -g1,14153:32583029,14153011 -) -(1,14153:6764466,14837866:25818563,407923,106246 -h1,14153:6764466,14837866:0,0,0 -g1,14153:7760328,14837866 -g1,14153:10084006,14837866 -g1,14153:10415960,14837866 -g1,14153:10747914,14837866 -g1,14153:11079868,14837866 -g1,14153:11411822,14837866 -g1,14153:11743776,14837866 -g1,14153:12075730,14837866 -g1,14153:12407684,14837866 -g1,14153:14731362,14837866 -g1,14153:15063316,14837866 -g1,14153:15395270,14837866 -g1,14153:15727224,14837866 -g1,14153:16059178,14837866 -g1,14153:18382856,14837866 -g1,14153:18714810,14837866 -g1,14153:19046764,14837866 -g1,14153:21038488,14837866 -g1,14153:24026074,14837866 -h1,14153:25021936,14837866:0,0,0 -k1,14153:32583029,14837866:7561093 -g1,14153:32583029,14837866 -) -(1,14153:6764466,15522721:25818563,407923,106246 -h1,14153:6764466,15522721:0,0,0 -g1,14153:7760328,15522721 -g1,14153:10084006,15522721 -g1,14153:10415960,15522721 -g1,14153:10747914,15522721 -g1,14153:11079868,15522721 -g1,14153:11411822,15522721 -g1,14153:11743776,15522721 -g1,14153:12075730,15522721 -g1,14153:12407684,15522721 -g1,14153:14731362,15522721 -g1,14153:15063316,15522721 -g1,14153:15395270,15522721 -g1,14153:15727224,15522721 -g1,14153:16059178,15522721 -g1,14153:18382856,15522721 -g1,14153:18714810,15522721 -g1,14153:19046764,15522721 -g1,14153:21038488,15522721 -g1,14153:24026074,15522721 -h1,14153:25021936,15522721:0,0,0 -k1,14153:32583029,15522721:7561093 -g1,14153:32583029,15522721 -) -(1,14153:6764466,16207576:25818563,407923,106246 -h1,14153:6764466,16207576:0,0,0 -g1,14153:7760328,16207576 -g1,14153:10084006,16207576 -g1,14153:10415960,16207576 -g1,14153:10747914,16207576 -g1,14153:11079868,16207576 -g1,14153:11411822,16207576 -g1,14153:11743776,16207576 -g1,14153:12075730,16207576 -g1,14153:14731362,16207576 -g1,14153:15063316,16207576 -g1,14153:15395270,16207576 -g1,14153:15727224,16207576 -g1,14153:16059178,16207576 -g1,14153:18382856,16207576 -g1,14153:18714810,16207576 -g1,14153:21038488,16207576 -g1,14153:24026074,16207576 -h1,14153:25021936,16207576:0,0,0 -k1,14153:32583029,16207576:7561093 -g1,14153:32583029,16207576 -) -(1,14153:6764466,16892431:25818563,407923,106246 -h1,14153:6764466,16892431:0,0,0 -g1,14153:7760328,16892431 -g1,14153:10084006,16892431 -g1,14153:10415960,16892431 -g1,14153:10747914,16892431 -g1,14153:11079868,16892431 -g1,14153:11411822,16892431 -g1,14153:11743776,16892431 -g1,14153:12075730,16892431 -g1,14153:14731362,16892431 -g1,14153:15063316,16892431 -g1,14153:15395270,16892431 -g1,14153:15727224,16892431 -g1,14153:16059178,16892431 -g1,14153:18382856,16892431 -g1,14153:18714810,16892431 -g1,14153:21038488,16892431 -g1,14153:24026074,16892431 -h1,14153:25021936,16892431:0,0,0 -k1,14153:32583029,16892431:7561093 -g1,14153:32583029,16892431 -) -(1,14153:6764466,17577286:25818563,407923,106246 -h1,14153:6764466,17577286:0,0,0 -g1,14153:7760328,17577286 -g1,14153:10084006,17577286 -g1,14153:10415960,17577286 -g1,14153:10747914,17577286 -g1,14153:11079868,17577286 -g1,14153:11411822,17577286 -g1,14153:11743776,17577286 -g1,14153:12075730,17577286 -g1,14153:14731362,17577286 -g1,14153:15063316,17577286 -g1,14153:15395270,17577286 -g1,14153:15727224,17577286 -g1,14153:16059178,17577286 -g1,14153:18382856,17577286 -g1,14153:18714810,17577286 -g1,14153:21038488,17577286 -g1,14153:24026074,17577286 -h1,14153:25021936,17577286:0,0,0 -k1,14153:32583029,17577286:7561093 -g1,14153:32583029,17577286 -) -(1,14153:6764466,18262141:25818563,398014,0 -h1,14153:6764466,18262141:0,0,0 -g1,14153:7760328,18262141 -k1,14153:7760328,18262141:0 -h1,14153:8756190,18262141:0,0,0 -k1,14153:32583030,18262141:23826840 -g1,14153:32583030,18262141 -) -(1,14153:6764466,18946996:25818563,431045,112852 -h1,14153:6764466,18946996:0,0,0 -g1,14153:7760328,18946996 -g1,14153:10415960,18946996 -g1,14153:12739638,18946996 -g1,14153:13071592,18946996 -g1,14153:13735500,18946996 -g1,14153:15727224,18946996 -g1,14153:17718948,18946996 -g1,14153:19378718,18946996 -g1,14153:21038488,18946996 -g1,14153:22366304,18946996 -g1,14153:24026074,18946996 -g1,14153:25353890,18946996 -g1,14153:26681706,18946996 -g1,14153:27345614,18946996 -g1,14153:28009522,18946996 -h1,14153:28341476,18946996:0,0,0 -k1,14153:32583029,18946996:4241553 -g1,14153:32583029,18946996 -) -(1,14153:6764466,19631851:25818563,398014,0 -h1,14153:6764466,19631851:0,0,0 -h1,14153:7428374,19631851:0,0,0 -k1,14153:32583030,19631851:25154656 -g1,14153:32583030,19631851 -) -(1,14153:6764466,20316706:25818563,431045,112852 -h1,14153:6764466,20316706:0,0,0 -g1,14153:7760328,20316706 -g1,14153:10747913,20316706 -g1,14153:13735498,20316706 -g1,14153:16059176,20316706 -g1,14153:18050900,20316706 -g1,14153:19046762,20316706 -g1,14153:20042624,20316706 -g1,14153:22698256,20316706 -g1,14153:23694118,20316706 -h1,14153:26017796,20316706:0,0,0 -k1,14153:32583029,20316706:6565233 -g1,14153:32583029,20316706 -) -(1,14153:6764466,21001561:25818563,424439,112852 -h1,14153:6764466,21001561:0,0,0 -g1,14153:7760328,21001561 -g1,14153:10747913,21001561 -g1,14153:14399406,21001561 -g1,14153:14731360,21001561 -g1,14153:17386992,21001561 -g1,14153:20374577,21001561 -g1,14153:24026070,21001561 -g1,14153:24358024,21001561 -h1,14153:26349748,21001561:0,0,0 -k1,14153:32583029,21001561:6233281 -g1,14153:32583029,21001561 -) -(1,14153:6764466,21686416:25818563,424439,106246 -h1,14153:6764466,21686416:0,0,0 -g1,14153:7760328,21686416 -g1,14153:12075729,21686416 -g1,14153:12407683,21686416 -g1,14153:14067453,21686416 -g1,14153:15063315,21686416 -g1,14153:15727223,21686416 -g1,14153:17055039,21686416 -g1,14153:18050901,21686416 -g1,14153:19378717,21686416 -g1,14153:19710671,21686416 -g1,14153:22698257,21686416 -g1,14153:23362165,21686416 -k1,14153:23362165,21686416:0 -h1,14153:25685843,21686416:0,0,0 -k1,14153:32583029,21686416:6897186 -g1,14153:32583029,21686416 -) -] -) -g1,14154:32583029,21792662 -g1,14154:6764466,21792662 -g1,14154:6764466,21792662 -g1,14154:32583029,21792662 -g1,14154:32583029,21792662 -) -h1,14154:6764466,21989270:0,0,0 -] -g1,14157:32583029,21989270 -) -h1,14157:6630773,21989270:0,0,0 -v1,14160:6630773,22854350:0,393216,0 -(1,14161:6630773,26738815:25952256,4277681,0 -g1,14161:6630773,26738815 -g1,14161:6237557,26738815 -r1,14182:6368629,26738815:131072,4277681,0 -g1,14161:6567858,26738815 -g1,14161:6764466,26738815 -[1,14161:6764466,26738815:25818563,4277681,0 -(1,14161:6764466,23162648:25818563,701514,196608 -(1,14160:6764466,23162648:0,701514,196608 -r1,14182:8471973,23162648:1707507,898122,196608 -k1,14160:6764466,23162648:-1707507 -) -(1,14160:6764466,23162648:1707507,701514,196608 -) -k1,14160:8704101,23162648:232128 -k1,14160:10430319,23162648:327680 -k1,14160:13054510,23162648:232127 -k1,14160:14617019,23162648:232128 -k1,14160:16844718,23162648:232128 -k1,14160:18095930,23162648:232127 -k1,14160:19476249,23162648:232128 -k1,14160:21170484,23162648:232127 -k1,14160:22088774,23162648:232128 -k1,14160:25300169,23162648:232128 -k1,14160:26148334,23162648:232127 -(1,14160:26148334,23162648:0,452978,115847 -r1,14182:30023718,23162648:3875384,568825,115847 -k1,14160:26148334,23162648:-3875384 -) -(1,14160:26148334,23162648:3875384,452978,115847 -k1,14160:26148334,23162648:3277 -h1,14160:30020441,23162648:0,411205,112570 -) -k1,14160:30255846,23162648:232128 -k1,14160:32583029,23162648:0 -) -(1,14161:6764466,24027728:25818563,513147,115847 -k1,14160:7648580,24027728:224822 -k1,14160:8892487,24027728:224822 -k1,14160:10423442,24027728:224822 -k1,14160:11804974,24027728:224822 -k1,14160:12715958,24027728:224822 -k1,14160:13556818,24027728:224822 -(1,14160:13556818,24027728:0,452978,115847 -r1,14182:19542473,24027728:5985655,568825,115847 -k1,14160:13556818,24027728:-5985655 -) -(1,14160:13556818,24027728:5985655,452978,115847 -k1,14160:13556818,24027728:3277 -h1,14160:19539196,24027728:0,411205,112570 -) -k1,14160:19767295,24027728:224822 -k1,14160:22101721,24027728:224822 -k1,14160:23345628,24027728:224822 -k1,14160:26790234,24027728:224822 -k1,14160:29546712,24027728:224822 -k1,14160:30790619,24027728:224822 -k1,14160:32583029,24027728:0 -) -(1,14161:6764466,24892808:25818563,513147,134348 -k1,14160:7635605,24892808:211847 -k1,14160:9741442,24892808:211847 -(1,14160:9741442,24892808:0,414482,115847 -r1,14182:11506555,24892808:1765113,530329,115847 -k1,14160:9741442,24892808:-1765113 -) -(1,14160:9741442,24892808:1765113,414482,115847 -k1,14160:9741442,24892808:3277 -h1,14160:11503278,24892808:0,411205,112570 -) -k1,14160:11718401,24892808:211846 -k1,14160:12655076,24892808:211847 -k1,14160:14151429,24892808:211847 -k1,14160:15382361,24892808:211847 -k1,14160:16785652,24892808:211846 -k1,14160:18732892,24892808:211847 -(1,14160:18732892,24892808:0,452978,115847 -r1,14182:22608276,24892808:3875384,568825,115847 -k1,14160:18732892,24892808:-3875384 -) -(1,14160:18732892,24892808:3875384,452978,115847 -k1,14160:18732892,24892808:3277 -h1,14160:22604999,24892808:0,411205,112570 -) -k1,14160:22820123,24892808:211847 -k1,14160:25805454,24892808:211847 -k1,14160:29322281,24892808:211846 -k1,14160:30185556,24892808:211847 -k1,14160:31681909,24892808:211847 -k1,14161:32583029,24892808:0 -) -(1,14161:6764466,25757888:25818563,513147,126483 -k1,14160:9008024,25757888:246676 -k1,14160:11110024,25757888:246676 -k1,14160:12750651,25757888:246676 -(1,14160:12750651,25757888:0,452978,115847 -r1,14182:18736306,25757888:5985655,568825,115847 -k1,14160:12750651,25757888:-5985655 -) -(1,14160:12750651,25757888:5985655,452978,115847 -k1,14160:12750651,25757888:3277 -h1,14160:18733029,25757888:0,411205,112570 -) -k1,14160:19156652,25757888:246676 -k1,14160:22256109,25757888:246675 -k1,14160:23799743,25757888:246676 -(1,14160:23799743,25757888:0,452978,115847 -r1,14182:28026839,25757888:4227096,568825,115847 -k1,14160:23799743,25757888:-4227096 -) -(1,14160:23799743,25757888:4227096,452978,115847 -k1,14160:23799743,25757888:3277 -h1,14160:28023562,25757888:0,411205,112570 -) -k1,14160:28273515,25757888:246676 -k1,14160:29051688,25757888:246676 -k1,14160:30317449,25757888:246676 -k1,14160:32583029,25757888:0 -) -(1,14161:6764466,26622968:25818563,513147,115847 -g1,14160:7911346,26622968 -g1,14160:10617982,26622968 -g1,14160:13041503,26622968 -g1,14160:14432177,26622968 -g1,14160:16329444,26622968 -(1,14160:16329444,26622968:0,452978,115847 -r1,14182:21611675,26622968:5282231,568825,115847 -k1,14160:16329444,26622968:-5282231 -) -(1,14160:16329444,26622968:5282231,452978,115847 -k1,14160:16329444,26622968:3277 -h1,14160:21608398,26622968:0,411205,112570 -) -g1,14160:21810904,26622968 -g1,14160:23778950,26622968 -g1,14160:24725945,26622968 -g1,14160:26526874,26622968 -k1,14161:32583029,26622968:4026505 -g1,14161:32583029,26622968 -) -] -g1,14161:32583029,26738815 -) -h1,14161:6630773,26738815:0,0,0 -(1,14164:6630773,27603895:25952256,513147,126483 -h1,14163:6630773,27603895:983040,0,0 -k1,14163:11137195,27603895:266243 -k1,14163:12212808,27603895:266243 -k1,14163:13498136,27603895:266243 -k1,14163:15466349,27603895:266243 -k1,14163:17512550,27603895:266243 -k1,14163:18594061,27603895:266243 -k1,14163:19926575,27603895:266243 -k1,14163:21972120,27603895:266243 -k1,14163:23257448,27603895:266243 -k1,14163:25089346,27603895:266243 -k1,14163:28134316,27603895:266243 -k1,14163:29162087,27603895:266243 -(1,14163:29162087,27603895:0,452978,115847 -r1,14182:31630624,27603895:2468537,568825,115847 -k1,14163:29162087,27603895:-2468537 -) -(1,14163:29162087,27603895:2468537,452978,115847 -k1,14163:29162087,27603895:3277 -h1,14163:31627347,27603895:0,411205,112570 -) -k1,14163:31896867,27603895:266243 -k1,14163:32583029,27603895:0 -) -(1,14164:6630773,28468975:25952256,513147,7863 -k1,14163:8043636,28468975:209622 -k1,14163:9818912,28468975:209621 -k1,14163:11521444,28468975:209622 -k1,14163:12797337,28468975:209622 -k1,14163:14336028,28468975:209621 -k1,14163:15939601,28468975:209622 -k1,14163:17168308,28468975:209622 -k1,14163:19479013,28468975:209621 -k1,14163:20347927,28468975:209622 -k1,14163:23750462,28468975:209621 -k1,14163:25854074,28468975:209622 -k1,14163:28029776,28468975:209622 -k1,14163:29436084,28468975:209621 -k1,14163:31799219,28468975:209622 -k1,14164:32583029,28468975:0 -) -(1,14164:6630773,29334055:25952256,513147,134348 -k1,14163:9258493,29334055:259249 -k1,14163:11593268,29334055:259250 -k1,14163:12465279,29334055:259249 -k1,14163:13743614,29334055:259250 -k1,14163:16326114,29334055:259249 -k1,14163:17244656,29334055:259250 -k1,14163:18522990,29334055:259249 -k1,14163:21772647,29334055:259249 -k1,14163:23597552,29334055:259250 -k1,14163:26084370,29334055:259249 -k1,14163:30008393,29334055:259250 -k1,14163:30895477,29334055:259249 -k1,14163:32583029,29334055:0 -) -(1,14164:6630773,30199135:25952256,513147,134348 -k1,14163:8948017,30199135:214849 -k1,14163:10860904,30199135:214849 -k1,14163:12811146,30199135:214849 -k1,14163:15788337,30199135:214848 -k1,14163:18964758,30199135:214849 -k1,14163:20728223,30199135:214849 -k1,14163:23514049,30199135:214849 -k1,14163:24260395,30199135:214849 -k1,14163:25805625,30199135:214849 -k1,14163:27039558,30199135:214848 -k1,14163:28723724,30199135:214849 -k1,14163:31764485,30199135:214849 -k1,14164:32583029,30199135:0 -) -(1,14164:6630773,31064215:25952256,513147,126483 -k1,14163:9159455,31064215:162832 -k1,14163:10083814,31064215:162831 -k1,14163:11265731,31064215:162832 -k1,14163:13141018,31064215:162831 -k1,14163:15291557,31064215:162832 -k1,14163:15985886,31064215:162832 -k1,14163:19707322,31064215:162831 -k1,14163:21137620,31064215:162832 -k1,14163:25228025,31064215:162832 -k1,14163:26042284,31064215:162831 -k1,14163:26952882,31064215:162832 -k1,14163:29075239,31064215:162831 -k1,14163:30185722,31064215:162832 -k1,14163:32583029,31064215:0 -) -(1,14164:6630773,31929295:25952256,513147,7863 -g1,14163:11132441,31929295 -g1,14163:11983098,31929295 -g1,14163:13201412,31929295 -g1,14163:15554154,31929295 -g1,14163:17741090,31929295 -k1,14164:32583029,31929295:14102038 -g1,14164:32583029,31929295 -) -v1,14166:6630773,32794375:0,393216,0 -(1,14168:6630773,41022741:25952256,8621582,0 -g1,14168:6630773,41022741 -g1,14168:6237557,41022741 -r1,14182:6368629,41022741:131072,8621582,0 -g1,14168:6567858,41022741 -g1,14168:6764466,41022741 -[1,14168:6764466,41022741:25818563,8621582,0 -(1,14168:6764466,33102673:25818563,701514,196608 -(1,14166:6764466,33102673:0,701514,196608 -r1,14182:7761522,33102673:997056,898122,196608 -k1,14166:6764466,33102673:-997056 -) -(1,14166:6764466,33102673:997056,701514,196608 -) -k1,14166:8038255,33102673:276733 -k1,14166:8365935,33102673:327680 -k1,14166:8365935,33102673:0 -k1,14167:11355859,33102673:276733 -k1,14167:13154338,33102673:276733 -k1,14167:15285740,33102673:276733 -k1,14167:16371843,33102673:276733 -k1,14167:19045883,33102673:276733 -k1,14167:22284188,33102673:276733 -k1,14167:23752366,33102673:276733 -k1,14167:26700346,33102673:276733 -k1,14167:31061283,33102673:276733 -k1,14167:32583029,33102673:0 -) -(1,14168:6764466,33967753:25818563,513147,134348 -k1,14167:7986606,33967753:230580 -k1,14167:9818886,33967753:230580 -k1,14167:13354447,33967753:230580 -k1,14167:15956775,33967753:230580 -k1,14167:17700581,33967753:230580 -k1,14167:18701864,33967753:230580 -k1,14167:21367075,33967753:230548 -k1,14167:22249083,33967753:230580 -k1,14167:23671108,33967753:230580 -k1,14167:24849339,33967753:230580 -k1,14167:28596581,33967753:230580 -k1,14167:30986572,33967753:230580 -k1,14167:32583029,33967753:0 -) -(1,14168:6764466,34832833:25818563,513147,126483 -k1,14167:7717222,34832833:293464 -k1,14167:11485404,34832833:293463 -k1,14167:12461753,34832833:293464 -k1,14167:15152523,34832833:293463 -k1,14167:19764154,34832833:293464 -k1,14167:20716909,34832833:293463 -k1,14167:24658762,34832833:293464 -k1,14167:25366974,34832833:293369 -k1,14167:28355933,34832833:293463 -(1,14167:28355933,34832833:0,452978,115847 -r1,14182:32583029,34832833:4227096,568825,115847 -k1,14167:28355933,34832833:-4227096 -) -(1,14167:28355933,34832833:4227096,452978,115847 -k1,14167:28355933,34832833:3277 -h1,14167:32579752,34832833:0,411205,112570 -) -k1,14167:32583029,34832833:0 -) -(1,14168:6764466,35697913:25818563,513147,134348 -k1,14167:10774692,35697913:246493 -k1,14167:13475509,35697913:246494 -k1,14167:15085759,35697913:246446 -k1,14167:18264333,35697913:246493 -k1,14167:21824326,35697913:246493 -k1,14167:25464274,35697913:246494 -k1,14167:26902212,35697913:246493 -k1,14167:28096357,35697913:246494 -k1,14167:31008855,35697913:246493 -k1,14167:32583029,35697913:0 -) -(1,14168:6764466,36562993:25818563,513147,126483 -k1,14167:9909999,36562993:355665 -(1,14167:9909999,36562993:0,452978,115847 -r1,14182:15895654,36562993:5985655,568825,115847 -k1,14167:9909999,36562993:-5985655 -) -(1,14167:9909999,36562993:5985655,452978,115847 -k1,14167:9909999,36562993:3277 -h1,14167:15892377,36562993:0,411205,112570 -) -k1,14167:16251319,36562993:355665 -k1,14167:19463698,36562993:355665 -k1,14167:22581706,36562993:355665 -k1,14167:26190578,36562993:355665 -k1,14167:29330868,36562993:355665 -k1,14167:30634184,36562993:355665 -k1,14167:32008934,36562993:355665 -$1,14167:32008934,36562993 -$1,14167:32476861,36562993 -k1,14168:32583029,36562993:0 -) -(1,14168:6764466,37428073:25818563,513147,134348 -k1,14167:8973852,37428073:216436 -k1,14167:10757910,37428073:216437 -k1,14167:15260401,37428073:216436 -$1,14167:15260401,37428073 -$1,14167:15580872,37428073 -k1,14167:17705717,37428073:216437 -k1,14167:20712021,37428073:216436 -(1,14167:20712021,37428073:0,452978,122846 -r1,14182:24235693,37428073:3523672,575824,122846 -k1,14167:20712021,37428073:-3523672 -) -(1,14167:20712021,37428073:3523672,452978,122846 -k1,14167:20712021,37428073:3277 -h1,14167:24232416,37428073:0,411205,112570 -) -k1,14167:24452130,37428073:216437 -k1,14167:26949874,37428073:216436 -k1,14167:31141070,37428073:216437 -k1,14167:32008934,37428073:216436 -$1,14167:32008934,37428073 -$1,14167:32476861,37428073 -k1,14168:32583029,37428073:0 -) -(1,14168:6764466,38293153:25818563,505283,126483 -k1,14167:8983890,38293153:226474 -k1,14167:10401808,38293153:226473 -k1,14167:11732564,38293153:226474 -k1,14167:12706803,38293153:226473 -k1,14167:14446503,38293153:226474 -k1,14167:16371014,38293153:226473 -k1,14167:17616573,38293153:226474 -k1,14167:19034491,38293153:226473 -k1,14167:22516794,38293153:226474 -k1,14167:24236177,38293153:226473 -k1,14167:25528922,38293153:226474 -k1,14167:27518969,38293153:226473 -k1,14167:29558169,38293153:226474 -k1,14167:30981329,38293153:226473 -k1,14167:32583029,38293153:0 -) -(1,14168:6764466,39158233:25818563,513147,134348 -k1,14167:11834250,39158233:252232 -k1,14167:17143239,39158233:252231 -k1,14167:18054763,39158233:252232 -k1,14167:20978242,39158233:252232 -k1,14167:25314678,39158233:252232 -k1,14167:26098406,39158233:252231 -k1,14167:29134607,39158233:252232 -k1,14167:30002877,39158233:252232 -k1,14167:32583029,39158233:0 -) -(1,14168:6764466,40023313:25818563,513147,134348 -k1,14167:10634220,40023313:184665 -k1,14167:13608752,40023313:184664 -(1,14167:13608752,40023313:0,452978,122846 -r1,14182:15725577,40023313:2116825,575824,122846 -k1,14167:13608752,40023313:-2116825 -) -(1,14167:13608752,40023313:2116825,452978,122846 -k1,14167:13608752,40023313:3277 -h1,14167:15722300,40023313:0,411205,112570 -) -k1,14167:15910242,40023313:184665 -k1,14167:18635082,40023313:184665 -k1,14167:20632472,40023313:184664 -k1,14167:24289234,40023313:184665 -k1,14167:26862686,40023313:184665 -k1,14167:28614971,40023313:184664 -k1,14167:30002877,40023313:184665 -k1,14167:32583029,40023313:0 -) -(1,14168:6764466,40888393:25818563,513147,134348 -g1,14167:9820409,40888393 -g1,14167:12781981,40888393 -g1,14167:15942782,40888393 -g1,14167:17333456,40888393 -g1,14167:21177142,40888393 -k1,14168:32583029,40888393:8568834 -g1,14168:32583029,40888393 -) -] -g1,14168:32583029,41022741 -) -h1,14168:6630773,41022741:0,0,0 -(1,14173:6630773,41887821:25952256,505283,126483 -h1,14170:6630773,41887821:983040,0,0 -k1,14170:11037676,41887821:340394 -k1,14170:12569515,41887821:340394 -k1,14170:14418547,41887821:340393 -k1,14170:19204248,41887821:340394 -k1,14170:20536202,41887821:340394 -k1,14170:24005940,41887821:340394 -k1,14170:24962372,41887821:340394 -k1,14170:27089932,41887821:340393 -k1,14170:28191854,41887821:340394 -k1,14170:31391584,41887821:340394 -k1,14170:32583029,41887821:0 -) -(1,14173:6630773,42752901:25952256,505283,126483 -g1,14170:8810500,42752901 -g1,14170:11017752,42752901 -g1,14170:12408426,42752901 -g1,14170:15141932,42752901 -g1,14170:17522855,42752901 -g1,14171:17522855,42752901 -k1,14173:32583029,42752901:15060174 -g1,14173:32583029,42752901 -) -] -(1,14182:32583029,45706769:0,0,0 -g1,14182:32583029,45706769 -) -) -] -(1,14182:6630773,47279633:25952256,0,0 -h1,14182:6630773,47279633:25952256,0,0 -) -] -(1,14182:4262630,4025873:0,0,0 -[1,14182:-473656,4025873:0,0,0 -(1,14182:-473656,-710413:0,0,0 -(1,14182:-473656,-710413:0,0,0 -g1,14182:-473656,-710413 -) -g1,14182:-473656,-710413 +] +g1,14180:6630773,4812305 +k1,14180:19575446,4812305:11749296 +g1,14180:21198117,4812305 +g1,14180:21985204,4812305 +g1,14180:24539797,4812305 +g1,14180:25949476,4812305 +g1,14180:28728857,4812305 +g1,14180:29852144,4812305 +) +) +] +[1,14180:6630773,45706769:25952256,40108032,0 +(1,14180:6630773,45706769:25952256,40108032,0 +(1,14180:6630773,45706769:0,0,0 +g1,14180:6630773,45706769 +) +[1,14180:6630773,45706769:25952256,40108032,0 +v1,14155:6630773,6254097:0,393216,0 +(1,14155:6630773,21989270:25952256,16128389,0 +g1,14155:6630773,21989270 +g1,14155:6237557,21989270 +r1,14180:6368629,21989270:131072,16128389,0 +g1,14155:6567858,21989270 +g1,14155:6764466,21989270 +[1,14155:6764466,21989270:25818563,16128389,0 +v1,14124:6764466,6254097:0,393216,0 +(1,14152:6764466,21792662:25818563,15931781,196608 +g1,14152:6764466,21792662 +g1,14152:6764466,21792662 +g1,14152:6567858,21792662 +(1,14152:6567858,21792662:0,15931781,196608 +r1,14180:32779637,21792662:26211779,16128389,196608 +k1,14152:6567857,21792662:-26211780 +) +(1,14152:6567858,21792662:26211779,15931781,196608 +[1,14152:6764466,21792662:25818563,15735173,0 +(1,14126:6764466,6488534:25818563,431045,106246 +(1,14125:6764466,6488534:0,0,0 +g1,14125:6764466,6488534 +g1,14125:6764466,6488534 +g1,14125:6436786,6488534 +(1,14125:6436786,6488534:0,0,0 +) +g1,14125:6764466,6488534 +) +k1,14126:6764466,6488534:0 +h1,14126:11743775,6488534:0,0,0 +k1,14126:32583029,6488534:20839254 +g1,14126:32583029,6488534 +) +(1,14151:6764466,7304461:25818563,398014,0 +(1,14128:6764466,7304461:0,0,0 +g1,14128:6764466,7304461 +g1,14128:6764466,7304461 +g1,14128:6436786,7304461 +(1,14128:6436786,7304461:0,0,0 +) +g1,14128:6764466,7304461 +) +h1,14151:7428374,7304461:0,0,0 +k1,14151:32583030,7304461:25154656 +g1,14151:32583030,7304461 +) +(1,14151:6764466,7989316:25818563,424439,8257 +h1,14151:6764466,7989316:0,0,0 +g1,14151:7760328,7989316 +h1,14151:9420098,7989316:0,0,0 +k1,14151:32583030,7989316:23162932 +g1,14151:32583030,7989316 +) +(1,14151:6764466,8674171:25818563,431045,106246 +h1,14151:6764466,8674171:0,0,0 +k1,14151:7649677,8674171:221303 +k1,14151:11190519,8674171:221303 +k1,14151:11743776,8674171:221303 +k1,14151:13624849,8674171:221303 +k1,14151:14178106,8674171:221303 +k1,14151:16391133,8674171:221303 +k1,14151:17940252,8674171:221303 +k1,14151:18493509,8674171:221303 +k1,14151:23030213,8674171:221303 +k1,14151:26239101,8674171:221303 +k1,14151:26792358,8674171:221303 +k1,14151:30333200,8674171:221303 +k1,14151:30886457,8674171:221303 +h1,14151:34537950,8674171:0,0,0 +k1,14151:34537950,8674171:0 +k1,14151:34537950,8674171:0 +) +(1,14151:6764466,9359026:25818563,398014,0 +h1,14151:6764466,9359026:0,0,0 +h1,14151:7428374,9359026:0,0,0 +k1,14151:32583030,9359026:25154656 +g1,14151:32583030,9359026 +) +(1,14151:6764466,10043881:25818563,424439,6605 +h1,14151:6764466,10043881:0,0,0 +g1,14151:7760328,10043881 +h1,14151:11079867,10043881:0,0,0 +k1,14151:32583029,10043881:21503162 +g1,14151:32583029,10043881 +) +(1,14151:6764466,10728736:25818563,424439,86428 +h1,14151:6764466,10728736:0,0,0 +g1,14151:7760328,10728736 +g1,14151:8092282,10728736 +g1,14151:8424236,10728736 +g1,14151:8756190,10728736 +g1,14151:10084006,10728736 +g1,14151:10415960,10728736 +g1,14151:10747914,10728736 +g1,14151:11079868,10728736 +g1,14151:11411822,10728736 +g1,14151:12407684,10728736 +g1,14151:14731362,10728736 +g1,14151:15063316,10728736 +g1,14151:15395270,10728736 +g1,14151:15727224,10728736 +g1,14151:16059178,10728736 +g1,14151:17055040,10728736 +g1,14151:17386994,10728736 +g1,14151:17718948,10728736 +g1,14151:18050902,10728736 +h1,14151:19046764,10728736:0,0,0 +k1,14151:32583029,10728736:13536265 +g1,14151:32583029,10728736 +) +(1,14151:6764466,11413591:25818563,407923,9908 +h1,14151:6764466,11413591:0,0,0 +g1,14151:7760328,11413591 +g1,14151:10084006,11413591 +g1,14151:12407684,11413591 +g1,14151:14731362,11413591 +g1,14151:15063316,11413591 +g1,14151:17055040,11413591 +g1,14151:17386994,11413591 +h1,14151:19046764,11413591:0,0,0 +k1,14151:32583029,11413591:13536265 +g1,14151:32583029,11413591 +) +(1,14151:6764466,12098446:25818563,398014,0 +h1,14151:6764466,12098446:0,0,0 +h1,14151:7428374,12098446:0,0,0 +k1,14151:32583030,12098446:25154656 +g1,14151:32583030,12098446 +) +(1,14151:6764466,12783301:25818563,431045,8257 +h1,14151:6764466,12783301:0,0,0 +g1,14151:7760328,12783301 +h1,14151:12075729,12783301:0,0,0 +k1,14151:32583029,12783301:20507300 +g1,14151:32583029,12783301 +) +(1,14151:6764466,13468156:25818563,424439,79822 +h1,14151:6764466,13468156:0,0,0 +g1,14151:7760328,13468156 +g1,14151:8092282,13468156 +g1,14151:8424236,13468156 +g1,14151:8756190,13468156 +g1,14151:9088144,13468156 +g1,14151:9420098,13468156 +g1,14151:9752052,13468156 +g1,14151:10084006,13468156 +g1,14151:10415960,13468156 +g1,14151:10747914,13468156 +g1,14151:11079868,13468156 +g1,14151:11411822,13468156 +g1,14151:11743776,13468156 +g1,14151:14731361,13468156 +g1,14151:16391131,13468156 +g1,14151:18382855,13468156 +g1,14151:19046763,13468156 +g1,14151:21038487,13468156 +k1,14151:21038487,13468156:0 +h1,14151:23694119,13468156:0,0,0 +k1,14151:32583029,13468156:8888910 +g1,14151:32583029,13468156 +) +(1,14151:6764466,14153011:25818563,424439,106246 +h1,14151:6764466,14153011:0,0,0 +g1,14151:7760328,14153011 +g1,14151:11743775,14153011 +g1,14151:12075729,14153011 +g1,14151:12407683,14153011 +g1,14151:14731361,14153011 +g1,14151:15063315,14153011 +g1,14151:15395269,14153011 +g1,14151:15727223,14153011 +g1,14151:16059177,14153011 +g1,14151:18382855,14153011 +g1,14151:18714809,14153011 +g1,14151:21038487,14153011 +g1,14151:21370441,14153011 +g1,14151:22034349,14153011 +g1,14151:24026073,14153011 +h1,14151:25021935,14153011:0,0,0 +k1,14151:32583029,14153011:7561094 +g1,14151:32583029,14153011 +) +(1,14151:6764466,14837866:25818563,407923,106246 +h1,14151:6764466,14837866:0,0,0 +g1,14151:7760328,14837866 +g1,14151:10084006,14837866 +g1,14151:10415960,14837866 +g1,14151:10747914,14837866 +g1,14151:11079868,14837866 +g1,14151:11411822,14837866 +g1,14151:11743776,14837866 +g1,14151:12075730,14837866 +g1,14151:12407684,14837866 +g1,14151:14731362,14837866 +g1,14151:15063316,14837866 +g1,14151:15395270,14837866 +g1,14151:15727224,14837866 +g1,14151:16059178,14837866 +g1,14151:18382856,14837866 +g1,14151:18714810,14837866 +g1,14151:19046764,14837866 +g1,14151:21038488,14837866 +g1,14151:24026074,14837866 +h1,14151:25021936,14837866:0,0,0 +k1,14151:32583029,14837866:7561093 +g1,14151:32583029,14837866 +) +(1,14151:6764466,15522721:25818563,407923,106246 +h1,14151:6764466,15522721:0,0,0 +g1,14151:7760328,15522721 +g1,14151:10084006,15522721 +g1,14151:10415960,15522721 +g1,14151:10747914,15522721 +g1,14151:11079868,15522721 +g1,14151:11411822,15522721 +g1,14151:11743776,15522721 +g1,14151:12075730,15522721 +g1,14151:12407684,15522721 +g1,14151:14731362,15522721 +g1,14151:15063316,15522721 +g1,14151:15395270,15522721 +g1,14151:15727224,15522721 +g1,14151:16059178,15522721 +g1,14151:18382856,15522721 +g1,14151:18714810,15522721 +g1,14151:19046764,15522721 +g1,14151:21038488,15522721 +g1,14151:24026074,15522721 +h1,14151:25021936,15522721:0,0,0 +k1,14151:32583029,15522721:7561093 +g1,14151:32583029,15522721 +) +(1,14151:6764466,16207576:25818563,407923,106246 +h1,14151:6764466,16207576:0,0,0 +g1,14151:7760328,16207576 +g1,14151:10084006,16207576 +g1,14151:10415960,16207576 +g1,14151:10747914,16207576 +g1,14151:11079868,16207576 +g1,14151:11411822,16207576 +g1,14151:11743776,16207576 +g1,14151:12075730,16207576 +g1,14151:14731362,16207576 +g1,14151:15063316,16207576 +g1,14151:15395270,16207576 +g1,14151:15727224,16207576 +g1,14151:16059178,16207576 +g1,14151:18382856,16207576 +g1,14151:18714810,16207576 +g1,14151:21038488,16207576 +g1,14151:24026074,16207576 +h1,14151:25021936,16207576:0,0,0 +k1,14151:32583029,16207576:7561093 +g1,14151:32583029,16207576 +) +(1,14151:6764466,16892431:25818563,407923,106246 +h1,14151:6764466,16892431:0,0,0 +g1,14151:7760328,16892431 +g1,14151:10084006,16892431 +g1,14151:10415960,16892431 +g1,14151:10747914,16892431 +g1,14151:11079868,16892431 +g1,14151:11411822,16892431 +g1,14151:11743776,16892431 +g1,14151:12075730,16892431 +g1,14151:14731362,16892431 +g1,14151:15063316,16892431 +g1,14151:15395270,16892431 +g1,14151:15727224,16892431 +g1,14151:16059178,16892431 +g1,14151:18382856,16892431 +g1,14151:18714810,16892431 +g1,14151:21038488,16892431 +g1,14151:24026074,16892431 +h1,14151:25021936,16892431:0,0,0 +k1,14151:32583029,16892431:7561093 +g1,14151:32583029,16892431 +) +(1,14151:6764466,17577286:25818563,407923,106246 +h1,14151:6764466,17577286:0,0,0 +g1,14151:7760328,17577286 +g1,14151:10084006,17577286 +g1,14151:10415960,17577286 +g1,14151:10747914,17577286 +g1,14151:11079868,17577286 +g1,14151:11411822,17577286 +g1,14151:11743776,17577286 +g1,14151:12075730,17577286 +g1,14151:14731362,17577286 +g1,14151:15063316,17577286 +g1,14151:15395270,17577286 +g1,14151:15727224,17577286 +g1,14151:16059178,17577286 +g1,14151:18382856,17577286 +g1,14151:18714810,17577286 +g1,14151:21038488,17577286 +g1,14151:24026074,17577286 +h1,14151:25021936,17577286:0,0,0 +k1,14151:32583029,17577286:7561093 +g1,14151:32583029,17577286 +) +(1,14151:6764466,18262141:25818563,398014,0 +h1,14151:6764466,18262141:0,0,0 +g1,14151:7760328,18262141 +k1,14151:7760328,18262141:0 +h1,14151:8756190,18262141:0,0,0 +k1,14151:32583030,18262141:23826840 +g1,14151:32583030,18262141 +) +(1,14151:6764466,18946996:25818563,431045,112852 +h1,14151:6764466,18946996:0,0,0 +g1,14151:7760328,18946996 +g1,14151:10415960,18946996 +g1,14151:12739638,18946996 +g1,14151:13071592,18946996 +g1,14151:13735500,18946996 +g1,14151:15727224,18946996 +g1,14151:17718948,18946996 +g1,14151:19378718,18946996 +g1,14151:21038488,18946996 +g1,14151:22366304,18946996 +g1,14151:24026074,18946996 +g1,14151:25353890,18946996 +g1,14151:26681706,18946996 +g1,14151:27345614,18946996 +g1,14151:28009522,18946996 +h1,14151:28341476,18946996:0,0,0 +k1,14151:32583029,18946996:4241553 +g1,14151:32583029,18946996 +) +(1,14151:6764466,19631851:25818563,398014,0 +h1,14151:6764466,19631851:0,0,0 +h1,14151:7428374,19631851:0,0,0 +k1,14151:32583030,19631851:25154656 +g1,14151:32583030,19631851 +) +(1,14151:6764466,20316706:25818563,431045,112852 +h1,14151:6764466,20316706:0,0,0 +g1,14151:7760328,20316706 +g1,14151:10747913,20316706 +g1,14151:13735498,20316706 +g1,14151:16059176,20316706 +g1,14151:18050900,20316706 +g1,14151:19046762,20316706 +g1,14151:20042624,20316706 +g1,14151:22698256,20316706 +g1,14151:23694118,20316706 +h1,14151:26017796,20316706:0,0,0 +k1,14151:32583029,20316706:6565233 +g1,14151:32583029,20316706 +) +(1,14151:6764466,21001561:25818563,424439,112852 +h1,14151:6764466,21001561:0,0,0 +g1,14151:7760328,21001561 +g1,14151:10747913,21001561 +g1,14151:14399406,21001561 +g1,14151:14731360,21001561 +g1,14151:17386992,21001561 +g1,14151:20374577,21001561 +g1,14151:24026070,21001561 +g1,14151:24358024,21001561 +h1,14151:26349748,21001561:0,0,0 +k1,14151:32583029,21001561:6233281 +g1,14151:32583029,21001561 +) +(1,14151:6764466,21686416:25818563,424439,106246 +h1,14151:6764466,21686416:0,0,0 +g1,14151:7760328,21686416 +g1,14151:12075729,21686416 +g1,14151:12407683,21686416 +g1,14151:14067453,21686416 +g1,14151:15063315,21686416 +g1,14151:15727223,21686416 +g1,14151:17055039,21686416 +g1,14151:18050901,21686416 +g1,14151:19378717,21686416 +g1,14151:19710671,21686416 +g1,14151:22698257,21686416 +g1,14151:23362165,21686416 +k1,14151:23362165,21686416:0 +h1,14151:25685843,21686416:0,0,0 +k1,14151:32583029,21686416:6897186 +g1,14151:32583029,21686416 +) +] +) +g1,14152:32583029,21792662 +g1,14152:6764466,21792662 +g1,14152:6764466,21792662 +g1,14152:32583029,21792662 +g1,14152:32583029,21792662 +) +h1,14152:6764466,21989270:0,0,0 +] +g1,14155:32583029,21989270 +) +h1,14155:6630773,21989270:0,0,0 +v1,14158:6630773,22854350:0,393216,0 +(1,14159:6630773,26738815:25952256,4277681,0 +g1,14159:6630773,26738815 +g1,14159:6237557,26738815 +r1,14180:6368629,26738815:131072,4277681,0 +g1,14159:6567858,26738815 +g1,14159:6764466,26738815 +[1,14159:6764466,26738815:25818563,4277681,0 +(1,14159:6764466,23162648:25818563,701514,196608 +(1,14158:6764466,23162648:0,701514,196608 +r1,14180:8471973,23162648:1707507,898122,196608 +k1,14158:6764466,23162648:-1707507 +) +(1,14158:6764466,23162648:1707507,701514,196608 +) +k1,14158:8704101,23162648:232128 +k1,14158:10430319,23162648:327680 +k1,14158:13054510,23162648:232127 +k1,14158:14617019,23162648:232128 +k1,14158:16844718,23162648:232128 +k1,14158:18095930,23162648:232127 +k1,14158:19476249,23162648:232128 +k1,14158:21170484,23162648:232127 +k1,14158:22088774,23162648:232128 +k1,14158:25300169,23162648:232128 +k1,14158:26148334,23162648:232127 +(1,14158:26148334,23162648:0,452978,115847 +r1,14180:30023718,23162648:3875384,568825,115847 +k1,14158:26148334,23162648:-3875384 +) +(1,14158:26148334,23162648:3875384,452978,115847 +k1,14158:26148334,23162648:3277 +h1,14158:30020441,23162648:0,411205,112570 +) +k1,14158:30255846,23162648:232128 +k1,14158:32583029,23162648:0 +) +(1,14159:6764466,24027728:25818563,513147,115847 +k1,14158:7648580,24027728:224822 +k1,14158:8892487,24027728:224822 +k1,14158:10423442,24027728:224822 +k1,14158:11804974,24027728:224822 +k1,14158:12715958,24027728:224822 +k1,14158:13556818,24027728:224822 +(1,14158:13556818,24027728:0,452978,115847 +r1,14180:19542473,24027728:5985655,568825,115847 +k1,14158:13556818,24027728:-5985655 +) +(1,14158:13556818,24027728:5985655,452978,115847 +k1,14158:13556818,24027728:3277 +h1,14158:19539196,24027728:0,411205,112570 +) +k1,14158:19767295,24027728:224822 +k1,14158:22101721,24027728:224822 +k1,14158:23345628,24027728:224822 +k1,14158:26790234,24027728:224822 +k1,14158:29546712,24027728:224822 +k1,14158:30790619,24027728:224822 +k1,14158:32583029,24027728:0 +) +(1,14159:6764466,24892808:25818563,513147,134348 +k1,14158:7635605,24892808:211847 +k1,14158:9741442,24892808:211847 +(1,14158:9741442,24892808:0,414482,115847 +r1,14180:11506555,24892808:1765113,530329,115847 +k1,14158:9741442,24892808:-1765113 +) +(1,14158:9741442,24892808:1765113,414482,115847 +k1,14158:9741442,24892808:3277 +h1,14158:11503278,24892808:0,411205,112570 +) +k1,14158:11718401,24892808:211846 +k1,14158:12655076,24892808:211847 +k1,14158:14151429,24892808:211847 +k1,14158:15382361,24892808:211847 +k1,14158:16785652,24892808:211846 +k1,14158:18732892,24892808:211847 +(1,14158:18732892,24892808:0,452978,115847 +r1,14180:22608276,24892808:3875384,568825,115847 +k1,14158:18732892,24892808:-3875384 +) +(1,14158:18732892,24892808:3875384,452978,115847 +k1,14158:18732892,24892808:3277 +h1,14158:22604999,24892808:0,411205,112570 +) +k1,14158:22820123,24892808:211847 +k1,14158:25805454,24892808:211847 +k1,14158:29322281,24892808:211846 +k1,14158:30185556,24892808:211847 +k1,14158:31681909,24892808:211847 +k1,14159:32583029,24892808:0 +) +(1,14159:6764466,25757888:25818563,513147,126483 +k1,14158:9008024,25757888:246676 +k1,14158:11110024,25757888:246676 +k1,14158:12750651,25757888:246676 +(1,14158:12750651,25757888:0,452978,115847 +r1,14180:18736306,25757888:5985655,568825,115847 +k1,14158:12750651,25757888:-5985655 +) +(1,14158:12750651,25757888:5985655,452978,115847 +k1,14158:12750651,25757888:3277 +h1,14158:18733029,25757888:0,411205,112570 +) +k1,14158:19156652,25757888:246676 +k1,14158:22256109,25757888:246675 +k1,14158:23799743,25757888:246676 +(1,14158:23799743,25757888:0,452978,115847 +r1,14180:28026839,25757888:4227096,568825,115847 +k1,14158:23799743,25757888:-4227096 +) +(1,14158:23799743,25757888:4227096,452978,115847 +k1,14158:23799743,25757888:3277 +h1,14158:28023562,25757888:0,411205,112570 +) +k1,14158:28273515,25757888:246676 +k1,14158:29051688,25757888:246676 +k1,14158:30317449,25757888:246676 +k1,14158:32583029,25757888:0 +) +(1,14159:6764466,26622968:25818563,513147,115847 +g1,14158:7911346,26622968 +g1,14158:10617982,26622968 +g1,14158:13041503,26622968 +g1,14158:14432177,26622968 +g1,14158:16329444,26622968 +(1,14158:16329444,26622968:0,452978,115847 +r1,14180:21611675,26622968:5282231,568825,115847 +k1,14158:16329444,26622968:-5282231 +) +(1,14158:16329444,26622968:5282231,452978,115847 +k1,14158:16329444,26622968:3277 +h1,14158:21608398,26622968:0,411205,112570 +) +g1,14158:21810904,26622968 +g1,14158:23778950,26622968 +g1,14158:24725945,26622968 +g1,14158:26526874,26622968 +k1,14159:32583029,26622968:4026505 +g1,14159:32583029,26622968 +) +] +g1,14159:32583029,26738815 +) +h1,14159:6630773,26738815:0,0,0 +(1,14162:6630773,27603895:25952256,513147,126483 +h1,14161:6630773,27603895:983040,0,0 +k1,14161:11137195,27603895:266243 +k1,14161:12212808,27603895:266243 +k1,14161:13498136,27603895:266243 +k1,14161:15466349,27603895:266243 +k1,14161:17512550,27603895:266243 +k1,14161:18594061,27603895:266243 +k1,14161:19926575,27603895:266243 +k1,14161:21972120,27603895:266243 +k1,14161:23257448,27603895:266243 +k1,14161:25089346,27603895:266243 +k1,14161:28134316,27603895:266243 +k1,14161:29162087,27603895:266243 +(1,14161:29162087,27603895:0,452978,115847 +r1,14180:31630624,27603895:2468537,568825,115847 +k1,14161:29162087,27603895:-2468537 +) +(1,14161:29162087,27603895:2468537,452978,115847 +k1,14161:29162087,27603895:3277 +h1,14161:31627347,27603895:0,411205,112570 +) +k1,14161:31896867,27603895:266243 +k1,14161:32583029,27603895:0 +) +(1,14162:6630773,28468975:25952256,513147,7863 +k1,14161:8043636,28468975:209622 +k1,14161:9818912,28468975:209621 +k1,14161:11521444,28468975:209622 +k1,14161:12797337,28468975:209622 +k1,14161:14336028,28468975:209621 +k1,14161:15939601,28468975:209622 +k1,14161:17168308,28468975:209622 +k1,14161:19479013,28468975:209621 +k1,14161:20347927,28468975:209622 +k1,14161:23750462,28468975:209621 +k1,14161:25854074,28468975:209622 +k1,14161:28029776,28468975:209622 +k1,14161:29436084,28468975:209621 +k1,14161:31799219,28468975:209622 +k1,14162:32583029,28468975:0 +) +(1,14162:6630773,29334055:25952256,513147,134348 +k1,14161:9258493,29334055:259249 +k1,14161:11593268,29334055:259250 +k1,14161:12465279,29334055:259249 +k1,14161:13743614,29334055:259250 +k1,14161:16326114,29334055:259249 +k1,14161:17244656,29334055:259250 +k1,14161:18522990,29334055:259249 +k1,14161:21772647,29334055:259249 +k1,14161:23597552,29334055:259250 +k1,14161:26084370,29334055:259249 +k1,14161:30008393,29334055:259250 +k1,14161:30895477,29334055:259249 +k1,14161:32583029,29334055:0 +) +(1,14162:6630773,30199135:25952256,513147,134348 +k1,14161:8948017,30199135:214849 +k1,14161:10860904,30199135:214849 +k1,14161:12811146,30199135:214849 +k1,14161:15788337,30199135:214848 +k1,14161:18964758,30199135:214849 +k1,14161:20728223,30199135:214849 +k1,14161:23514049,30199135:214849 +k1,14161:24260395,30199135:214849 +k1,14161:25805625,30199135:214849 +k1,14161:27039558,30199135:214848 +k1,14161:28723724,30199135:214849 +k1,14161:31764485,30199135:214849 +k1,14162:32583029,30199135:0 +) +(1,14162:6630773,31064215:25952256,513147,126483 +k1,14161:9159455,31064215:162832 +k1,14161:10083814,31064215:162831 +k1,14161:11265731,31064215:162832 +k1,14161:13141018,31064215:162831 +k1,14161:15291557,31064215:162832 +k1,14161:15985886,31064215:162832 +k1,14161:19707322,31064215:162831 +k1,14161:21137620,31064215:162832 +k1,14161:25228025,31064215:162832 +k1,14161:26042284,31064215:162831 +k1,14161:26952882,31064215:162832 +k1,14161:29075239,31064215:162831 +k1,14161:30185722,31064215:162832 +k1,14161:32583029,31064215:0 +) +(1,14162:6630773,31929295:25952256,513147,7863 +g1,14161:11132441,31929295 +g1,14161:11983098,31929295 +g1,14161:13201412,31929295 +g1,14161:15554154,31929295 +g1,14161:17741090,31929295 +k1,14162:32583029,31929295:14102038 +g1,14162:32583029,31929295 +) +v1,14164:6630773,32794375:0,393216,0 +(1,14166:6630773,41022741:25952256,8621582,0 +g1,14166:6630773,41022741 +g1,14166:6237557,41022741 +r1,14180:6368629,41022741:131072,8621582,0 +g1,14166:6567858,41022741 +g1,14166:6764466,41022741 +[1,14166:6764466,41022741:25818563,8621582,0 +(1,14166:6764466,33102673:25818563,701514,196608 +(1,14164:6764466,33102673:0,701514,196608 +r1,14180:7761522,33102673:997056,898122,196608 +k1,14164:6764466,33102673:-997056 +) +(1,14164:6764466,33102673:997056,701514,196608 +) +k1,14164:8038255,33102673:276733 +k1,14164:8365935,33102673:327680 +k1,14164:8365935,33102673:0 +k1,14165:11355859,33102673:276733 +k1,14165:13154338,33102673:276733 +k1,14165:15285740,33102673:276733 +k1,14165:16371843,33102673:276733 +k1,14165:19045883,33102673:276733 +k1,14165:22284188,33102673:276733 +k1,14165:23752366,33102673:276733 +k1,14165:26700346,33102673:276733 +k1,14165:31061283,33102673:276733 +k1,14165:32583029,33102673:0 +) +(1,14166:6764466,33967753:25818563,513147,134348 +k1,14165:7986606,33967753:230580 +k1,14165:9818886,33967753:230580 +k1,14165:13354447,33967753:230580 +k1,14165:15956775,33967753:230580 +k1,14165:17700581,33967753:230580 +k1,14165:18701864,33967753:230580 +k1,14165:21367075,33967753:230548 +k1,14165:22249083,33967753:230580 +k1,14165:23671108,33967753:230580 +k1,14165:24849339,33967753:230580 +k1,14165:28596581,33967753:230580 +k1,14165:30986572,33967753:230580 +k1,14165:32583029,33967753:0 +) +(1,14166:6764466,34832833:25818563,513147,126483 +k1,14165:7717222,34832833:293464 +k1,14165:11485404,34832833:293463 +k1,14165:12461753,34832833:293464 +k1,14165:15152523,34832833:293463 +k1,14165:19764154,34832833:293464 +k1,14165:20716909,34832833:293463 +k1,14165:24658762,34832833:293464 +k1,14165:25366974,34832833:293369 +k1,14165:28355933,34832833:293463 +(1,14165:28355933,34832833:0,452978,115847 +r1,14180:32583029,34832833:4227096,568825,115847 +k1,14165:28355933,34832833:-4227096 +) +(1,14165:28355933,34832833:4227096,452978,115847 +k1,14165:28355933,34832833:3277 +h1,14165:32579752,34832833:0,411205,112570 +) +k1,14165:32583029,34832833:0 +) +(1,14166:6764466,35697913:25818563,513147,134348 +k1,14165:10774692,35697913:246493 +k1,14165:13475509,35697913:246494 +k1,14165:15085759,35697913:246446 +k1,14165:18264333,35697913:246493 +k1,14165:21824326,35697913:246493 +k1,14165:25464274,35697913:246494 +k1,14165:26902212,35697913:246493 +k1,14165:28096357,35697913:246494 +k1,14165:31008855,35697913:246493 +k1,14165:32583029,35697913:0 +) +(1,14166:6764466,36562993:25818563,513147,126483 +k1,14165:9909999,36562993:355665 +(1,14165:9909999,36562993:0,452978,115847 +r1,14180:15895654,36562993:5985655,568825,115847 +k1,14165:9909999,36562993:-5985655 +) +(1,14165:9909999,36562993:5985655,452978,115847 +k1,14165:9909999,36562993:3277 +h1,14165:15892377,36562993:0,411205,112570 +) +k1,14165:16251319,36562993:355665 +k1,14165:19463698,36562993:355665 +k1,14165:22581706,36562993:355665 +k1,14165:26190578,36562993:355665 +k1,14165:29330868,36562993:355665 +k1,14165:30634184,36562993:355665 +k1,14165:32008934,36562993:355665 +$1,14165:32008934,36562993 +$1,14165:32476861,36562993 +k1,14166:32583029,36562993:0 +) +(1,14166:6764466,37428073:25818563,513147,134348 +k1,14165:8973852,37428073:216436 +k1,14165:10757910,37428073:216437 +k1,14165:15260401,37428073:216436 +$1,14165:15260401,37428073 +$1,14165:15580872,37428073 +k1,14165:17705717,37428073:216437 +k1,14165:20712021,37428073:216436 +(1,14165:20712021,37428073:0,452978,122846 +r1,14180:24235693,37428073:3523672,575824,122846 +k1,14165:20712021,37428073:-3523672 +) +(1,14165:20712021,37428073:3523672,452978,122846 +k1,14165:20712021,37428073:3277 +h1,14165:24232416,37428073:0,411205,112570 +) +k1,14165:24452130,37428073:216437 +k1,14165:26949874,37428073:216436 +k1,14165:31141070,37428073:216437 +k1,14165:32008934,37428073:216436 +$1,14165:32008934,37428073 +$1,14165:32476861,37428073 +k1,14166:32583029,37428073:0 +) +(1,14166:6764466,38293153:25818563,505283,126483 +k1,14165:8983890,38293153:226474 +k1,14165:10401808,38293153:226473 +k1,14165:11732564,38293153:226474 +k1,14165:12706803,38293153:226473 +k1,14165:14446503,38293153:226474 +k1,14165:16371014,38293153:226473 +k1,14165:17616573,38293153:226474 +k1,14165:19034491,38293153:226473 +k1,14165:22516794,38293153:226474 +k1,14165:24236177,38293153:226473 +k1,14165:25528922,38293153:226474 +k1,14165:27518969,38293153:226473 +k1,14165:29558169,38293153:226474 +k1,14165:30981329,38293153:226473 +k1,14165:32583029,38293153:0 +) +(1,14166:6764466,39158233:25818563,513147,134348 +k1,14165:11834250,39158233:252232 +k1,14165:17143239,39158233:252231 +k1,14165:18054763,39158233:252232 +k1,14165:20978242,39158233:252232 +k1,14165:25314678,39158233:252232 +k1,14165:26098406,39158233:252231 +k1,14165:29134607,39158233:252232 +k1,14165:30002877,39158233:252232 +k1,14165:32583029,39158233:0 +) +(1,14166:6764466,40023313:25818563,513147,134348 +k1,14165:10634220,40023313:184665 +k1,14165:13608752,40023313:184664 +(1,14165:13608752,40023313:0,452978,122846 +r1,14180:15725577,40023313:2116825,575824,122846 +k1,14165:13608752,40023313:-2116825 +) +(1,14165:13608752,40023313:2116825,452978,122846 +k1,14165:13608752,40023313:3277 +h1,14165:15722300,40023313:0,411205,112570 +) +k1,14165:15910242,40023313:184665 +k1,14165:18635082,40023313:184665 +k1,14165:20632472,40023313:184664 +k1,14165:24289234,40023313:184665 +k1,14165:26862686,40023313:184665 +k1,14165:28614971,40023313:184664 +k1,14165:30002877,40023313:184665 +k1,14165:32583029,40023313:0 +) +(1,14166:6764466,40888393:25818563,513147,134348 +g1,14165:9820409,40888393 +g1,14165:12781981,40888393 +g1,14165:15942782,40888393 +g1,14165:17333456,40888393 +g1,14165:21177142,40888393 +k1,14166:32583029,40888393:8568834 +g1,14166:32583029,40888393 +) +] +g1,14166:32583029,41022741 +) +h1,14166:6630773,41022741:0,0,0 +(1,14171:6630773,41887821:25952256,505283,126483 +h1,14168:6630773,41887821:983040,0,0 +k1,14168:11037676,41887821:340394 +k1,14168:12569515,41887821:340394 +k1,14168:14418547,41887821:340393 +k1,14168:19204248,41887821:340394 +k1,14168:20536202,41887821:340394 +k1,14168:24005940,41887821:340394 +k1,14168:24962372,41887821:340394 +k1,14168:27089932,41887821:340393 +k1,14168:28191854,41887821:340394 +k1,14168:31391584,41887821:340394 +k1,14168:32583029,41887821:0 +) +(1,14171:6630773,42752901:25952256,505283,126483 +g1,14168:8810500,42752901 +g1,14168:11017752,42752901 +g1,14168:12408426,42752901 +g1,14168:15141932,42752901 +g1,14168:17522855,42752901 +g1,14169:17522855,42752901 +k1,14171:32583029,42752901:15060174 +g1,14171:32583029,42752901 +) +] +(1,14180:32583029,45706769:0,0,0 +g1,14180:32583029,45706769 +) +) +] +(1,14180:6630773,47279633:25952256,0,0 +h1,14180:6630773,47279633:25952256,0,0 +) +] +(1,14180:4262630,4025873:0,0,0 +[1,14180:-473656,4025873:0,0,0 +(1,14180:-473656,-710413:0,0,0 +(1,14180:-473656,-710413:0,0,0 +g1,14180:-473656,-710413 +) +g1,14180:-473656,-710413 ) ] ) ] !28703 -}227 -Input:2412:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}228 Input:2415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2416:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -251105,144 +251304,184 @@ Input:2426:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2427:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2428:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2429:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2430:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{228 -[1,14245:4262630,47279633:28320399,43253760,0 -(1,14245:4262630,4025873:0,0,0 -[1,14245:-473656,4025873:0,0,0 -(1,14245:-473656,-710413:0,0,0 -(1,14245:-473656,-644877:0,0,0 -k1,14245:-473656,-644877:-65536 +{229 +[1,14243:4262630,47279633:28320399,43253760,0 +(1,14243:4262630,4025873:0,0,0 +[1,14243:-473656,4025873:0,0,0 +(1,14243:-473656,-710413:0,0,0 +(1,14243:-473656,-644877:0,0,0 +k1,14243:-473656,-644877:-65536 ) -(1,14245:-473656,4736287:0,0,0 -k1,14245:-473656,4736287:5209943 +(1,14243:-473656,4736287:0,0,0 +k1,14243:-473656,4736287:5209943 ) -g1,14245:-473656,-710413 +g1,14243:-473656,-710413 ) ] ) -[1,14245:6630773,47279633:25952256,43253760,0 -[1,14245:6630773,4812305:25952256,786432,0 -(1,14245:6630773,4812305:25952256,505283,134348 -(1,14245:6630773,4812305:25952256,505283,134348 -g1,14245:3078558,4812305 -[1,14245:3078558,4812305:0,0,0 -(1,14245:3078558,2439708:0,1703936,0 -k1,14245:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14245:2537886,2439708:1179648,16384,0 +[1,14243:6630773,47279633:25952256,43253760,0 +[1,14243:6630773,4812305:25952256,786432,0 +(1,14243:6630773,4812305:25952256,505283,134348 +(1,14243:6630773,4812305:25952256,505283,134348 +g1,14243:3078558,4812305 +[1,14243:3078558,4812305:0,0,0 +(1,14243:3078558,2439708:0,1703936,0 +k1,14243:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14243:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14245:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14243:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14245:3078558,4812305:0,0,0 -(1,14245:3078558,2439708:0,1703936,0 -g1,14245:29030814,2439708 -g1,14245:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14245:36151628,1915420:16384,1179648,0 +[1,14243:3078558,4812305:0,0,0 +(1,14243:3078558,2439708:0,1703936,0 +g1,14243:29030814,2439708 +g1,14243:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14243:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14245:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14243:37855564,2439708:1179648,16384,0 ) ) -k1,14245:3078556,2439708:-34777008 +k1,14243:3078556,2439708:-34777008 ) ] -[1,14245:3078558,4812305:0,0,0 -(1,14245:3078558,49800853:0,16384,2228224 -k1,14245:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14245:2537886,49800853:1179648,16384,0 +[1,14243:3078558,4812305:0,0,0 +(1,14243:3078558,49800853:0,16384,2228224 +k1,14243:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14243:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14245:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14243:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14245:3078558,4812305:0,0,0 -(1,14245:3078558,49800853:0,16384,2228224 -g1,14245:29030814,49800853 -g1,14245:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14245:36151628,51504789:16384,1179648,0 +[1,14243:3078558,4812305:0,0,0 +(1,14243:3078558,49800853:0,16384,2228224 +g1,14243:29030814,49800853 +g1,14243:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14243:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14245:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14243:37855564,49800853:1179648,16384,0 ) ) -k1,14245:3078556,49800853:-34777008 +k1,14243:3078556,49800853:-34777008 ) ] -g1,14245:6630773,4812305 -g1,14245:6630773,4812305 -g1,14245:8843268,4812305 -g1,14245:11066249,4812305 -g1,14245:13415059,4812305 -k1,14245:31387651,4812305:17972592 +g1,14243:6630773,4812305 +g1,14243:6630773,4812305 +g1,14243:8843268,4812305 +g1,14243:11066249,4812305 +g1,14243:13415059,4812305 +k1,14243:31387651,4812305:17972592 ) ) ] -[1,14245:6630773,45706769:25952256,40108032,0 -(1,14245:6630773,45706769:25952256,40108032,0 -(1,14245:6630773,45706769:0,0,0 -g1,14245:6630773,45706769 +[1,14243:6630773,45706769:25952256,40108032,0 +(1,14243:6630773,45706769:25952256,40108032,0 +(1,14243:6630773,45706769:0,0,0 +g1,14243:6630773,45706769 +) +[1,14243:6630773,45706769:25952256,40108032,0 +[1,14207:6630773,14342855:25952256,8744118,0 +[1,14207:6630773,14342855:25952256,8744118,0 +(1,14206:6630773,10957907:25952256,5359170,0 +k1,14206:6671566,10957907:40793 +h1,14204:6671566,10957907:0,0,0 +(1,14204:6671566,10957907:25691363,5359170,0 +g1,14204:8668427,10957907 +(1,14204:8668427,6600122:0,0,0 +(1,14204:8668427,6600122:0,0,0 +g1,14188:8668427,6600122 +(1,14189:8668427,6600122:0,0,0 +(1,14189:8668427,6600122:0,0,0 +g1,14189:8668427,6600122 +g1,14189:8668427,6600122 +g1,14189:8668427,6600122 +g1,14189:8668427,6600122 +g1,14189:8668427,6600122 +(1,14189:8668427,6600122:0,0,0 +(1,14189:8668427,6600122:1751777,454754,7077 +(1,14189:8668427,6600122:1751777,454754,7077 +) +g1,14189:10420204,6600122 +) +) +g1,14189:8668427,6600122 +g1,14189:8668427,6600122 +) +) +g1,14189:8668427,6600122 +(1,14190:8668427,6600122:0,0,0 +(1,14190:8668427,6600122:0,0,0 +g1,14190:8668427,6600122 +g1,14190:8668427,6600122 +g1,14190:8668427,6600122 +g1,14190:8668427,6600122 +g1,14190:8668427,6600122 +(1,14190:8668427,6600122:0,0,0 +(1,14190:8668427,6600122:3574334,454754,7077 +(1,14190:8668427,6600122:3574334,454754,7077 +) +g1,14190:12242761,6600122 ) -[1,14245:6630773,45706769:25952256,40108032,0 -[1,14209:6630773,14342855:25952256,8744118,0 -[1,14209:6630773,14342855:25952256,8744118,0 -(1,14208:6630773,10957907:25952256,5359170,0 -k1,14208:6671566,10957907:40793 -h1,14206:6671566,10957907:0,0,0 -(1,14206:6671566,10957907:25691363,5359170,0 -g1,14206:8668427,10957907 -(1,14206:8668427,6600122:0,0,0 -(1,14206:8668427,6600122:0,0,0 +) +g1,14190:8668427,6600122 g1,14190:8668427,6600122 +) +) (1,14191:8668427,6600122:0,0,0 (1,14191:8668427,6600122:0,0,0 g1,14191:8668427,6600122 @@ -251251,10 +251490,18 @@ g1,14191:8668427,6600122 g1,14191:8668427,6600122 g1,14191:8668427,6600122 (1,14191:8668427,6600122:0,0,0 -(1,14191:8668427,6600122:1751777,454754,7077 -(1,14191:8668427,6600122:1751777,454754,7077 +(1,14191:8668427,6600122:1272717,408008,104590 +(1,14191:8668427,6600122:1272717,408008,104590 +(1,14191:8668427,6600122:0,408008,104590 +r1,14243:9941144,6600122:1272717,512598,104590 +k1,14191:8668427,6600122:-1272717 ) -g1,14191:10420204,6600122 +(1,14191:8668427,6600122:1272717,408008,104590 +k1,14191:8668427,6600122:3277 +h1,14191:9937867,6600122:0,370085,101313 +) +) +g1,14191:9941144,6600122 ) ) g1,14191:8668427,6600122 @@ -251270,16 +251517,38 @@ g1,14192:8668427,6600122 g1,14192:8668427,6600122 g1,14192:8668427,6600122 (1,14192:8668427,6600122:0,0,0 -(1,14192:8668427,6600122:3574334,454754,7077 -(1,14192:8668427,6600122:3574334,454754,7077 +(1,14192:8668427,6600122:5422007,454754,120913 +(1,14192:8668427,6600122:5422007,454754,120913 +(1,14192:8668427,6600122:0,408008,104590 +r1,14243:9308062,6600122:639635,512598,104590 +k1,14192:8668427,6600122:-639635 +) +(1,14192:8668427,6600122:639635,408008,104590 +k1,14192:8668427,6600122:3277 +h1,14192:9304785,6600122:0,370085,101313 +) +g1,14192:9487369,6600122 +g1,14192:11397810,6600122 +$1,14192:11397810,6600122 +$1,14192:12005329,6600122 +g1,14192:12184636,6600122 +(1,14192:12184636,6600122:0,408008,110889 +r1,14243:14090434,6600122:1905798,518897,110889 +k1,14192:12184636,6600122:-1905798 ) -g1,14192:12242761,6600122 +(1,14192:12184636,6600122:1905798,408008,110889 +k1,14192:12184636,6600122:3277 +h1,14192:14087157,6600122:0,370085,101313 +) +) +g1,14192:14090434,6600122 ) ) g1,14192:8668427,6600122 g1,14192:8668427,6600122 ) ) +g1,14192:8668427,6600122 (1,14193:8668427,6600122:0,0,0 (1,14193:8668427,6600122:0,0,0 g1,14193:8668427,6600122 @@ -251288,18 +251557,18 @@ g1,14193:8668427,6600122 g1,14193:8668427,6600122 g1,14193:8668427,6600122 (1,14193:8668427,6600122:0,0,0 -(1,14193:8668427,6600122:1272717,408008,104590 -(1,14193:8668427,6600122:1272717,408008,104590 +(1,14193:8668427,6600122:2538879,408008,104590 +(1,14193:8668427,6600122:2538879,408008,104590 (1,14193:8668427,6600122:0,408008,104590 -r1,14245:9941144,6600122:1272717,512598,104590 -k1,14193:8668427,6600122:-1272717 +r1,14243:11207306,6600122:2538879,512598,104590 +k1,14193:8668427,6600122:-2538879 ) -(1,14193:8668427,6600122:1272717,408008,104590 +(1,14193:8668427,6600122:2538879,408008,104590 k1,14193:8668427,6600122:3277 -h1,14193:9937867,6600122:0,370085,101313 +h1,14193:11204029,6600122:0,370085,101313 ) ) -g1,14193:9941144,6600122 +g1,14193:11207306,6600122 ) ) g1,14193:8668427,6600122 @@ -251315,31 +251584,23 @@ g1,14194:8668427,6600122 g1,14194:8668427,6600122 g1,14194:8668427,6600122 (1,14194:8668427,6600122:0,0,0 -(1,14194:8668427,6600122:5422007,454754,120913 -(1,14194:8668427,6600122:5422007,454754,120913 -(1,14194:8668427,6600122:0,408008,104590 -r1,14245:9308062,6600122:639635,512598,104590 -k1,14194:8668427,6600122:-639635 +(1,14194:8668427,6600122:6272072,454754,104590 +(1,14194:8668427,6600122:6272072,454754,104590 +g1,14194:10000250,6600122 +g1,14194:11931334,6600122 +$1,14194:11931334,6600122 +$1,14194:12538853,6600122 +g1,14194:12718160,6600122 +(1,14194:12718160,6600122:0,414307,104590 +r1,14243:14940499,6600122:2222339,518897,104590 +k1,14194:12718160,6600122:-2222339 ) -(1,14194:8668427,6600122:639635,408008,104590 -k1,14194:8668427,6600122:3277 -h1,14194:9304785,6600122:0,370085,101313 +(1,14194:12718160,6600122:2222339,414307,104590 +k1,14194:12718160,6600122:3277 +h1,14194:14937222,6600122:0,370085,101313 ) -g1,14194:9487369,6600122 -g1,14194:11397810,6600122 -$1,14194:11397810,6600122 -$1,14194:12005329,6600122 -g1,14194:12184636,6600122 -(1,14194:12184636,6600122:0,408008,110889 -r1,14245:14090434,6600122:1905798,518897,110889 -k1,14194:12184636,6600122:-1905798 ) -(1,14194:12184636,6600122:1905798,408008,110889 -k1,14194:12184636,6600122:3277 -h1,14194:14087157,6600122:0,370085,101313 -) -) -g1,14194:14090434,6600122 +g1,14194:14940499,6600122 ) ) g1,14194:8668427,6600122 @@ -251355,18 +251616,23 @@ g1,14195:8668427,6600122 g1,14195:8668427,6600122 g1,14195:8668427,6600122 (1,14195:8668427,6600122:0,0,0 -(1,14195:8668427,6600122:2538879,408008,104590 -(1,14195:8668427,6600122:2538879,408008,104590 -(1,14195:8668427,6600122:0,408008,104590 -r1,14245:11207306,6600122:2538879,512598,104590 -k1,14195:8668427,6600122:-2538879 +(1,14195:8668427,6600122:5839726,454754,104590 +(1,14195:8668427,6600122:5839726,454754,104590 +g1,14195:10000250,6600122 +g1,14195:12448610,6600122 +$1,14195:12448610,6600122 +$1,14195:13056129,6600122 +g1,14195:13235436,6600122 +(1,14195:13235436,6600122:0,408008,104590 +r1,14243:14508153,6600122:1272717,512598,104590 +k1,14195:13235436,6600122:-1272717 ) -(1,14195:8668427,6600122:2538879,408008,104590 -k1,14195:8668427,6600122:3277 -h1,14195:11204029,6600122:0,370085,101313 +(1,14195:13235436,6600122:1272717,408008,104590 +k1,14195:13235436,6600122:3277 +h1,14195:14504876,6600122:0,370085,101313 ) ) -g1,14195:11207306,6600122 +g1,14195:14508153,6600122 ) ) g1,14195:8668427,6600122 @@ -251382,23 +251648,19 @@ g1,14196:8668427,6600122 g1,14196:8668427,6600122 g1,14196:8668427,6600122 (1,14196:8668427,6600122:0,0,0 -(1,14196:8668427,6600122:6272072,454754,104590 -(1,14196:8668427,6600122:6272072,454754,104590 -g1,14196:10000250,6600122 -g1,14196:11931334,6600122 -$1,14196:11931334,6600122 -$1,14196:12538853,6600122 -g1,14196:12718160,6600122 -(1,14196:12718160,6600122:0,414307,104590 -r1,14245:14940499,6600122:2222339,518897,104590 -k1,14196:12718160,6600122:-2222339 +(1,14196:8668427,6600122:2550076,454754,120913 +(1,14196:8668427,6600122:2550076,454754,120913 +(1,14196:8668427,6600122:0,408008,104590 +r1,14243:9308062,6600122:639635,512598,104590 +k1,14196:8668427,6600122:-639635 ) -(1,14196:12718160,6600122:2222339,414307,104590 -k1,14196:12718160,6600122:3277 -h1,14196:14937222,6600122:0,370085,101313 +(1,14196:8668427,6600122:639635,408008,104590 +k1,14196:8668427,6600122:3277 +h1,14196:9304785,6600122:0,370085,101313 ) +g1,14196:9487369,6600122 ) -g1,14196:14940499,6600122 +g1,14196:11218503,6600122 ) ) g1,14196:8668427,6600122 @@ -251406,65 +251668,17 @@ g1,14196:8668427,6600122 ) ) g1,14196:8668427,6600122 -(1,14197:8668427,6600122:0,0,0 -(1,14197:8668427,6600122:0,0,0 g1,14197:8668427,6600122 g1,14197:8668427,6600122 g1,14197:8668427,6600122 g1,14197:8668427,6600122 g1,14197:8668427,6600122 -(1,14197:8668427,6600122:0,0,0 -(1,14197:8668427,6600122:5839726,454754,104590 -(1,14197:8668427,6600122:5839726,454754,104590 -g1,14197:10000250,6600122 -g1,14197:12448610,6600122 -$1,14197:12448610,6600122 -$1,14197:13056129,6600122 -g1,14197:13235436,6600122 -(1,14197:13235436,6600122:0,408008,104590 -r1,14245:14508153,6600122:1272717,512598,104590 -k1,14197:13235436,6600122:-1272717 -) -(1,14197:13235436,6600122:1272717,408008,104590 -k1,14197:13235436,6600122:3277 -h1,14197:14504876,6600122:0,370085,101313 -) -) -g1,14197:14508153,6600122 -) -) -g1,14197:8668427,6600122 g1,14197:8668427,6600122 -) -) -g1,14197:8668427,6600122 -(1,14198:8668427,6600122:0,0,0 -(1,14198:8668427,6600122:0,0,0 g1,14198:8668427,6600122 g1,14198:8668427,6600122 g1,14198:8668427,6600122 g1,14198:8668427,6600122 g1,14198:8668427,6600122 -(1,14198:8668427,6600122:0,0,0 -(1,14198:8668427,6600122:2550076,454754,120913 -(1,14198:8668427,6600122:2550076,454754,120913 -(1,14198:8668427,6600122:0,408008,104590 -r1,14245:9308062,6600122:639635,512598,104590 -k1,14198:8668427,6600122:-639635 -) -(1,14198:8668427,6600122:639635,408008,104590 -k1,14198:8668427,6600122:3277 -h1,14198:9304785,6600122:0,370085,101313 -) -g1,14198:9487369,6600122 -) -g1,14198:11218503,6600122 -) -) -g1,14198:8668427,6600122 -g1,14198:8668427,6600122 -) -) g1,14198:8668427,6600122 g1,14199:8668427,6600122 g1,14199:8668427,6600122 @@ -251498,713 +251712,698 @@ g1,14203:8668427,6600122 g1,14203:8668427,6600122 g1,14204:8668427,6600122 g1,14204:8668427,6600122 -g1,14204:8668427,6600122 -g1,14204:8668427,6600122 -g1,14204:8668427,6600122 -g1,14204:8668427,6600122 -g1,14205:8668427,6600122 -g1,14205:8668427,6600122 -g1,14205:8668427,6600122 -g1,14205:8668427,6600122 -g1,14205:8668427,6600122 -g1,14205:8668427,6600122 -g1,14206:8668427,6600122 -g1,14206:8668427,6600122 ) -g1,14206:8668427,6600122 +g1,14204:8668427,6600122 ) ) +g1,14204:32542236,10957907 g1,14206:32542236,10957907 -g1,14208:32542236,10957907 -k1,14208:32583029,10957907:40793 -) -(1,14208:6630773,12478347:25952256,505283,134348 -h1,14208:6630773,12478347:0,0,0 -g1,14208:8923222,12478347 -k1,14208:32583029,12478347:22689874 -g1,14208:32583029,12478347 -) -(1,14208:6630773,13343427:25952256,513147,134348 -h1,14208:6630773,13343427:0,0,0 -k1,14208:9570555,13343427:241009 -k1,14208:12462494,13343427:241008 -k1,14208:13722587,13343427:241008 -k1,14208:15649182,13343427:241009 -k1,14208:16837842,13343427:241009 -k1,14208:19938186,13343427:241008 -k1,14208:20535055,13343427:241009 -k1,14208:22488519,13343427:241008 -k1,14208:24717235,13343427:241009 -k1,14208:25781375,13343427:241008 -k1,14208:27631293,13343427:241009 -k1,14208:29917024,13343427:241008 -k1,14208:32583029,13343427:0 -) -(1,14208:6630773,14208507:25952256,513147,134348 -g1,14208:8197739,14208507 -g1,14208:9416053,14208507 -g1,14208:12369760,14208507 -g1,14208:14254575,14208507 -g1,14208:15069842,14208507 -g1,14208:17707666,14208507 -g1,14208:19918195,14208507 -g1,14208:22252587,14208507 -g1,14208:23476799,14208507 -g1,14208:25661114,14208507 -h1,14208:26631702,14208507:0,0,0 -g1,14208:26830931,14208507 -g1,14208:27977811,14208507 -g1,14208:29879010,14208507 -k1,14208:32583029,14208507:534122 -g1,14208:32583029,14208507 -) -] -] -(1,14174:6630773,16308935:25952256,564462,139132 -(1,14174:6630773,16308935:2450326,534184,12975 -g1,14174:6630773,16308935 -g1,14174:9081099,16308935 -) -g1,14174:12446963,16308935 -g1,14174:13416569,16308935 -g1,14174:17776549,16308935 -k1,14174:32583029,16308935:11481708 -g1,14174:32583029,16308935 -) -(1,14182:6630773,17567231:25952256,513147,126483 -k1,14180:8524763,17567231:140902 -k1,14180:9021525,17567231:140902 -k1,14180:10975154,17567231:140903 -k1,14180:13103763,17567231:140902 -k1,14180:15912636,17567231:140902 -k1,14180:17520234,17567231:140902 -k1,14180:21426835,17567231:140902 -k1,14180:23792030,17567231:140903 -k1,14180:25124377,17567231:140902 -k1,14180:28835680,17567231:140902 -k1,14180:32583029,17567231:0 -) -(1,14182:6630773,18432311:25952256,513147,126483 -k1,14180:9764754,18432311:136365 -k1,14180:10769472,18432311:136366 -k1,14180:12242771,18432311:136365 -k1,14180:13478830,18432311:136365 -k1,14180:14073293,18432311:136366 -k1,14180:16741314,18432311:136365 -k1,14180:17493717,18432311:136365 -k1,14180:21048440,18432311:136365 -k1,14180:24662802,18432311:136366 -k1,14180:25995854,18432311:136365 -k1,14180:28675671,18432311:136365 -k1,14180:30896082,18432311:136366 -k1,14180:31563944,18432311:136365 -k1,14180:32583029,18432311:0 -) -(1,14182:6630773,19297391:25952256,513147,126483 -k1,14180:8426677,19297391:142431 -k1,14180:9516760,19297391:142432 -k1,14180:10425307,19297391:142431 -k1,14180:12380465,19297391:142432 -k1,14180:14840904,19297391:142431 -k1,14180:16348450,19297391:142431 -k1,14180:17177044,19297391:142432 -k1,14180:20737178,19297391:142431 -k1,14180:21495648,19297391:142432 -k1,14180:24392557,19297391:142431 -k1,14180:27317648,19297391:142432 -k1,14180:29008695,19297391:142431 -k1,14180:32583029,19297391:0 -) -(1,14182:6630773,20162471:25952256,513147,126483 -k1,14180:7817781,20162471:167923 -k1,14180:9371791,20162471:167924 -k1,14180:10199006,20162471:167923 -k1,14180:12921522,20162471:167923 -k1,14180:13620943,20162471:167924 -k1,14180:14807951,20162471:167923 -k1,14180:17054021,20162471:167923 -k1,14180:17881236,20162471:167923 -k1,14180:19068245,20162471:167924 -k1,14180:23001867,20162471:167923 -k1,14180:26599289,20162471:167923 -k1,14180:27585102,20162471:167924 -k1,14180:28772110,20162471:167923 -k1,14180:32583029,20162471:0 -) -(1,14182:6630773,21027551:25952256,513147,134348 -k1,14180:9386007,21027551:197364 -k1,14180:10602456,21027551:197364 -k1,14180:12626965,21027551:197365 -k1,14180:13633699,21027551:197364 -k1,14180:16228370,21027551:197364 -k1,14180:19087151,21027551:197364 -k1,14180:19816013,21027551:197365 -k1,14180:21881808,21027551:197364 -k1,14180:23275859,21027551:197364 -k1,14180:25065093,21027551:197364 -k1,14180:28107375,21027551:197364 -k1,14180:28964032,21027551:197365 -k1,14180:32051532,21027551:197362 -k1,14180:32583029,21027551:0 -) -(1,14182:6630773,21892631:25952256,513147,126483 -k1,14180:7396046,21892631:149235 -k1,14180:8564366,21892631:149235 -k1,14180:11544755,21892631:149234 -k1,14180:12353282,21892631:149235 -k1,14180:13521602,21892631:149235 -k1,14180:16561630,21892631:149235 -k1,14180:17902309,21892631:149234 -k1,14180:19070629,21892631:149235 -k1,14180:23665171,21892631:149235 -k1,14180:24473698,21892631:149235 -k1,14180:25642018,21892631:149235 -k1,14180:27964426,21892631:149234 -k1,14180:28772953,21892631:149235 -k1,14180:29941273,21892631:149235 -k1,14180:32583029,21892631:0 -) -(1,14182:6630773,22757711:25952256,513147,126483 -k1,14180:10059235,22757711:147074 -k1,14180:11904346,22757711:147073 -k1,14180:13070505,22757711:147074 -k1,14180:16108371,22757711:147073 -k1,14180:16786942,22757711:147074 -k1,14180:18000286,22757711:147073 -k1,14180:22154231,22757711:147074 -k1,14180:22960597,22757711:147074 -k1,14180:24126755,22757711:147073 -k1,14180:27418246,22757711:147074 -k1,14180:30655342,22757711:147073 -k1,14180:31563944,22757711:147074 -k1,14180:32583029,22757711:0 -) -(1,14182:6630773,23622791:25952256,513147,134348 -g1,14180:8723992,23622791 -g1,14180:10199207,23622791 -g1,14180:12246551,23622791 -g1,14180:14420380,23622791 -k1,14182:32583028,23622791:18162648 -g1,14182:32583028,23622791 -) -(1,14183:6630773,25739609:25952256,555811,139132 -(1,14183:6630773,25739609:2450326,534184,12975 -g1,14183:6630773,25739609 -g1,14183:9081099,25739609 -) -g1,14183:11511961,25739609 -g1,14183:14234786,25739609 -g1,14183:15802014,25739609 -k1,14183:32583029,25739609:13537704 -g1,14183:32583029,25739609 -) -(1,14186:6630773,26997905:25952256,513147,134348 -k1,14185:8759029,26997905:196910 -k1,14185:9643412,26997905:196910 -k1,14185:12130151,26997905:196911 -k1,14185:13431343,26997905:196910 -k1,14185:14376019,26997905:196910 -k1,14185:17383768,26997905:196910 -k1,14185:18650227,26997905:196911 -k1,14185:21855895,26997905:196910 -k1,14185:24582495,26997905:196910 -k1,14185:26159593,26997905:196910 -k1,14185:28728252,26997905:196911 -k1,14185:29991433,26997905:196910 -k1,14185:31563944,26997905:196910 -k1,14185:32583029,26997905:0 -) -(1,14186:6630773,27862985:25952256,513147,134348 -k1,14185:8986407,27862985:182460 -k1,14185:9828159,27862985:182460 -k1,14185:11029703,27862985:182459 -k1,14185:11899636,27862985:182460 -k1,14185:13154265,27862985:182460 -k1,14185:14622541,27862985:182460 -k1,14185:15824086,27862985:182460 -k1,14185:17395909,27862985:182460 -k1,14185:18229796,27862985:182459 -k1,14185:20297727,27862985:182460 -k1,14185:21499272,27862985:182460 -k1,14185:23669439,27862985:182460 -k1,14185:25059072,27862985:182460 -k1,14185:25929005,27862985:182460 -k1,14185:27343541,27862985:182459 -k1,14185:29024154,27862985:182460 -h1,14185:30219531,27862985:0,0,0 -k1,14185:30782755,27862985:182460 -k1,14185:32583029,27862985:0 -) -(1,14186:6630773,28728065:25952256,513147,102891 -k1,14185:8091440,28728065:176161 -k1,14185:9286685,28728065:176160 -k1,14185:10562540,28728065:176161 -k1,14185:11270198,28728065:176161 -k1,14185:12732174,28728065:176160 -k1,14185:15120175,28728065:176161 -k1,14185:16062452,28728065:176161 -k1,14185:17257697,28728065:176160 -k1,14185:21240844,28728065:176161 -k1,14185:23715353,28728065:176161 -k1,14185:24542941,28728065:176160 -k1,14185:28163019,28728065:176161 -k1,14185:29358265,28728065:176161 -k1,14185:31187898,28728065:176160 -k1,14185:32051532,28728065:176161 -k1,14185:32583029,28728065:0 -) -(1,14186:6630773,29593145:25952256,513147,134348 -k1,14185:9773751,29593145:185338 -k1,14185:12357051,29593145:185338 -(1,14185:12357051,29593145:0,452978,115847 -r1,14245:15177300,29593145:2820249,568825,115847 -k1,14185:12357051,29593145:-2820249 -) -(1,14185:12357051,29593145:2820249,452978,115847 -k1,14185:12357051,29593145:3277 -h1,14185:15174023,29593145:0,411205,112570 -) -k1,14185:15362638,29593145:185338 -k1,14185:17594010,29593145:185338 -k1,14185:18237445,29593145:185338 -k1,14185:21052742,29593145:185337 -k1,14185:21889508,29593145:185338 -k1,14185:25518763,29593145:185338 -k1,14185:26723186,29593145:185338 -k1,14185:27595997,29593145:185338 -k1,14185:29175286,29593145:185338 -k1,14185:31931601,29593145:185338 -k1,14185:32583029,29593145:0 -) -(1,14186:6630773,30458225:25952256,505283,134348 -k1,14185:7850194,30458225:200336 -k1,14185:9323894,30458225:200335 -k1,14185:11984452,30458225:200336 -k1,14185:14612242,30458225:200336 -k1,14185:16514547,30458225:200335 -k1,14185:17480999,30458225:200336 -k1,14185:18700420,30458225:200336 -k1,14185:22303384,30458225:200335 -k1,14185:23155148,30458225:200336 -k1,14185:23711344,30458225:200336 -k1,14185:25194874,30458225:200335 -k1,14185:26494904,30458225:200336 -k1,14185:27346668,30458225:200336 -(1,14185:27346668,30458225:0,452978,115847 -r1,14245:28760069,30458225:1413401,568825,115847 -k1,14185:27346668,30458225:-1413401 -) -(1,14185:27346668,30458225:1413401,452978,115847 -k1,14185:27346668,30458225:3277 -h1,14185:28756792,30458225:0,411205,112570 -) -k1,14185:28960404,30458225:200335 -k1,14185:31352919,30458225:200336 -h1,14185:32323507,30458225:0,0,0 -k1,14185:32583029,30458225:0 -) -(1,14186:6630773,31323305:25952256,513147,134348 -k1,14185:7716977,31323305:162802 -k1,14185:8984061,31323305:162802 -k1,14185:11409167,31323305:162803 -k1,14185:14334312,31323305:162802 -k1,14185:18073414,31323305:162802 -k1,14185:21216793,31323305:162802 -k1,14185:24190435,31323305:162803 -k1,14185:25675098,31323305:162802 -k1,14185:26497192,31323305:162802 -k1,14185:27679079,31323305:162802 -k1,14185:29231245,31323305:162803 -k1,14185:30155575,31323305:162802 -k1,14185:32583029,31323305:0 -) -(1,14186:6630773,32188385:25952256,513147,134348 -g1,14185:7185862,32188385 -g1,14185:8668286,32188385 -g1,14185:11939843,32188385 -g1,14185:12790500,32188385 -g1,14185:15118338,32188385 -g1,14185:18598299,32188385 -(1,14185:18598299,32188385:0,452978,115847 -r1,14245:20715124,32188385:2116825,568825,115847 -k1,14185:18598299,32188385:-2116825 -) -(1,14185:18598299,32188385:2116825,452978,115847 -k1,14185:18598299,32188385:3277 -h1,14185:20711847,32188385:0,411205,112570 -) -k1,14186:32583029,32188385:11815477 -g1,14186:32583029,32188385 -) -(1,14212:6630773,33053465:25952256,513147,134348 -h1,14211:6630773,33053465:983040,0,0 -k1,14211:10252865,33053465:241090 -(1,14211:10252865,33053465:0,452978,115847 -r1,14245:13073114,33053465:2820249,568825,115847 -k1,14211:10252865,33053465:-2820249 -) -(1,14211:10252865,33053465:2820249,452978,115847 -k1,14211:10252865,33053465:3277 -h1,14211:13069837,33053465:0,411205,112570 -) -k1,14211:13314204,33053465:241090 -k1,14211:16319603,33053465:241090 -k1,14211:17579778,33053465:241090 -k1,14211:18920562,33053465:241090 -k1,14211:20729273,33053465:241090 -k1,14211:21989448,33053465:241090 -k1,14211:24218245,33053465:241090 -k1,14211:25146808,33053465:241090 -k1,14211:27347424,33053465:241090 -k1,14211:29323907,33053465:241090 -(1,14211:29323907,33053465:0,452978,122846 -r1,14245:32495867,33053465:3171960,575824,122846 -k1,14211:29323907,33053465:-3171960 -) -(1,14211:29323907,33053465:3171960,452978,122846 -k1,14211:29323907,33053465:3277 -h1,14211:32492590,33053465:0,411205,112570 -) -k1,14211:32583029,33053465:0 -) -(1,14212:6630773,33918545:25952256,513147,126483 -k1,14211:9644700,33918545:269279 -k1,14211:10372076,33918545:269279 -k1,14211:12006469,33918545:269278 -k1,14211:13037276,33918545:269279 -k1,14211:15745805,33918545:269279 -k1,14211:18985831,33918545:269279 -k1,14211:19886876,33918545:269278 -k1,14211:21352842,33918545:269279 -k1,14211:23887701,33918545:269279 -(1,14211:23887701,33918545:0,452978,115847 -r1,14245:26707950,33918545:2820249,568825,115847 -k1,14211:23887701,33918545:-2820249 -) -(1,14211:23887701,33918545:2820249,452978,115847 -k1,14211:23887701,33918545:3277 -h1,14211:26704673,33918545:0,411205,112570 -) -k1,14211:26977229,33918545:269279 -k1,14211:29700830,33918545:269278 -k1,14211:31896867,33918545:269279 -k1,14211:32583029,33918545:0 -) -(1,14212:6630773,34783625:25952256,513147,134348 -k1,14211:8242824,34783625:223343 -k1,14211:9152329,34783625:223343 -k1,14211:10394756,34783625:223342 -k1,14211:13506271,34783625:223343 -k1,14211:15689140,34783625:223343 -k1,14211:18614532,34783625:223343 -k1,14211:19193734,34783625:223342 -k1,14211:22040483,34783625:223343 -k1,14211:24422582,34783625:223343 -(1,14211:24422582,34783625:0,452978,115847 -r1,14245:25835983,34783625:1413401,568825,115847 -k1,14211:24422582,34783625:-1413401 -) -(1,14211:24422582,34783625:1413401,452978,115847 -k1,14211:24422582,34783625:3277 -h1,14211:25832706,34783625:0,411205,112570 -) -k1,14211:26059326,34783625:223343 -k1,14211:26965553,34783625:223342 -k1,14211:27654857,34783625:223343 -k1,14211:28234060,34783625:223343 -k1,14211:32583029,34783625:0 -) -(1,14212:6630773,35648705:25952256,513147,122846 -k1,14211:7530561,35648705:232632 -(1,14211:7530561,35648705:0,452978,122846 -r1,14245:10702521,35648705:3171960,575824,122846 -k1,14211:7530561,35648705:-3171960 -) -(1,14211:7530561,35648705:3171960,452978,122846 -k1,14211:7530561,35648705:3277 -h1,14211:10699244,35648705:0,411205,112570 -) -k1,14211:10935153,35648705:232632 -k1,14211:11699281,35648705:232631 -k1,14211:14889553,35648705:232632 -k1,14211:16890346,35648705:232632 -k1,14211:19577301,35648705:232632 -(1,14211:19577301,35648705:0,452978,115847 -r1,14245:22397550,35648705:2820249,568825,115847 -k1,14211:19577301,35648705:-2820249 -) -(1,14211:19577301,35648705:2820249,452978,115847 -k1,14211:19577301,35648705:3277 -h1,14211:22394273,35648705:0,411205,112570 -) -k1,14211:22630181,35648705:232631 -k1,14211:23967095,35648705:232632 -k1,14211:24947493,35648705:232632 -k1,14211:26693351,35648705:232632 -k1,14211:28319933,35648705:232631 -k1,14211:30870573,35648705:232632 -k1,14211:32583029,35648705:0 -) -(1,14212:6630773,36513785:25952256,513147,115847 -g1,14211:8197739,36513785 -g1,14211:10098938,36513785 -g1,14211:13323964,36513785 -g1,14211:14139231,36513785 -g1,14211:17004465,36513785 -g1,14211:17855122,36513785 -(1,14211:17855122,36513785:0,452978,115847 -r1,14245:19268523,36513785:1413401,568825,115847 -k1,14211:17855122,36513785:-1413401 -) -(1,14211:17855122,36513785:1413401,452978,115847 -k1,14211:17855122,36513785:3277 -h1,14211:19265246,36513785:0,411205,112570 -) -k1,14212:32583029,36513785:13262078 -g1,14212:32583029,36513785 -) -(1,14214:6630773,37378865:25952256,513147,134348 -h1,14213:6630773,37378865:983040,0,0 -g1,14213:8855064,37378865 -g1,14213:10073378,37378865 -g1,14213:11656727,37378865 -g1,14213:14691043,37378865 -g1,14213:15758624,37378865 -g1,14213:18522932,37378865 -g1,14213:19741246,37378865 -g1,14213:21928182,37378865 -g1,14213:22814884,37378865 -g1,14213:24973639,37378865 -(1,14213:24973639,37378865:0,459977,115847 -r1,14245:26035328,37378865:1061689,575824,115847 -k1,14213:24973639,37378865:-1061689 -) -(1,14213:24973639,37378865:1061689,459977,115847 -k1,14213:24973639,37378865:3277 -h1,14213:26032051,37378865:0,411205,112570 -) -g1,14213:26234557,37378865 -g1,14213:28001407,37378865 -g1,14213:29698789,37378865 -h1,14213:30894166,37378865:0,0,0 -k1,14214:32583029,37378865:1636435 -g1,14214:32583029,37378865 -) -v1,14216:6630773,38063720:0,393216,0 -(1,14245:6630773,45510161:25952256,7839657,196608 -g1,14245:6630773,45510161 -g1,14245:6630773,45510161 -g1,14245:6434165,45510161 -(1,14245:6434165,45510161:0,7839657,196608 -r1,14245:32779637,45510161:26345472,8036265,196608 -k1,14245:6434165,45510161:-26345472 -) -(1,14245:6434165,45510161:26345472,7839657,196608 -[1,14245:6630773,45510161:25952256,7643049,0 -(1,14218:6630773,38298157:25952256,431045,106246 -(1,14217:6630773,38298157:0,0,0 -g1,14217:6630773,38298157 -g1,14217:6630773,38298157 -g1,14217:6303093,38298157 -(1,14217:6303093,38298157:0,0,0 -) -g1,14217:6630773,38298157 -) -g1,14218:7958589,38298157 -g1,14218:8954451,38298157 -g1,14218:11942037,38298157 -g1,14218:12605945,38298157 -g1,14218:14929623,38298157 -g1,14218:16589393,38298157 -g1,14218:17253301,38298157 -h1,14218:21568702,38298157:0,0,0 -k1,14218:32583029,38298157:11014327 -g1,14218:32583029,38298157 -) -(1,14219:6630773,38983012:25952256,431045,79822 -h1,14219:6630773,38983012:0,0,0 -k1,14219:6630773,38983012:0 -h1,14219:9950313,38983012:0,0,0 -k1,14219:32583029,38983012:22632716 -g1,14219:32583029,38983012 -) -(1,14230:6630773,39793168:25952256,431045,106246 -(1,14221:6630773,39793168:0,0,0 -g1,14221:6630773,39793168 -g1,14221:6630773,39793168 -g1,14221:6303093,39793168 -(1,14221:6303093,39793168:0,0,0 -) -g1,14221:6630773,39793168 -) -g1,14230:7626635,39793168 -g1,14230:10614220,39793168 -g1,14230:11610082,39793168 -g1,14230:14597667,39793168 -h1,14230:16257437,39793168:0,0,0 -k1,14230:32583029,39793168:16325592 -g1,14230:32583029,39793168 -) -(1,14230:6630773,40478023:25952256,398014,0 -h1,14230:6630773,40478023:0,0,0 -h1,14230:7294681,40478023:0,0,0 -k1,14230:32583029,40478023:25288348 -g1,14230:32583029,40478023 -) -(1,14230:6630773,41162878:25952256,398014,106246 -h1,14230:6630773,41162878:0,0,0 -g1,14230:7626635,41162878 -g1,14230:10946174,41162878 -h1,14230:12605944,41162878:0,0,0 -k1,14230:32583028,41162878:19977084 -g1,14230:32583028,41162878 -) -(1,14230:6630773,41847733:25952256,431045,106246 -h1,14230:6630773,41847733:0,0,0 -g1,14230:7626635,41847733 -g1,14230:7958589,41847733 -g1,14230:8290543,41847733 -g1,14230:8622497,41847733 -g1,14230:8954451,41847733 -g1,14230:9286405,41847733 -g1,14230:9618359,41847733 -g1,14230:9950313,41847733 -g1,14230:10282267,41847733 -g1,14230:10614221,41847733 -g1,14230:10946175,41847733 -g1,14230:11942037,41847733 -g1,14230:13269853,41847733 -g1,14230:14265715,41847733 -g1,14230:15925485,41847733 -g1,14230:16921347,41847733 -g1,14230:17585255,41847733 -g1,14230:19576979,41847733 -g1,14230:19908933,41847733 -g1,14230:20240887,41847733 -g1,14230:20572841,41847733 -k1,14230:20572841,41847733:0 -h1,14230:22564565,41847733:0,0,0 -k1,14230:32583029,41847733:10018464 -g1,14230:32583029,41847733 -) -(1,14230:6630773,42532588:25952256,407923,106246 -h1,14230:6630773,42532588:0,0,0 -g1,14230:7626635,42532588 -g1,14230:9618359,42532588 -g1,14230:9950313,42532588 -g1,14230:10282267,42532588 -g1,14230:10614221,42532588 -g1,14230:10946175,42532588 -g1,14230:11278129,42532588 -g1,14230:11942037,42532588 -g1,14230:14265715,42532588 -g1,14230:14597669,42532588 -g1,14230:16921347,42532588 -g1,14230:17253301,42532588 -g1,14230:19576979,42532588 -g1,14230:20240887,42532588 -g1,14230:22896519,42532588 -h1,14230:23892381,42532588:0,0,0 -k1,14230:32583029,42532588:8690648 -g1,14230:32583029,42532588 -) -(1,14230:6630773,43217443:25952256,424439,9908 -h1,14230:6630773,43217443:0,0,0 -g1,14230:7626635,43217443 -g1,14230:10946174,43217443 -g1,14230:11942036,43217443 -g1,14230:14265714,43217443 -g1,14230:14597668,43217443 -g1,14230:14929622,43217443 -h1,14230:16589392,43217443:0,0,0 -k1,14230:32583029,43217443:15993637 -g1,14230:32583029,43217443 -) -(1,14230:6630773,43902298:25952256,398014,0 -h1,14230:6630773,43902298:0,0,0 -g1,14230:7626635,43902298 -k1,14230:7626635,43902298:0 -h1,14230:8622497,43902298:0,0,0 -k1,14230:32583029,43902298:23960532 -g1,14230:32583029,43902298 -) -(1,14230:6630773,44587153:25952256,431045,112852 -h1,14230:6630773,44587153:0,0,0 -g1,14230:7626635,44587153 -g1,14230:10282267,44587153 -g1,14230:12605945,44587153 -g1,14230:12937899,44587153 -g1,14230:13601807,44587153 -g1,14230:15593531,44587153 -g1,14230:17585255,44587153 -g1,14230:19245025,44587153 -g1,14230:20904795,44587153 -g1,14230:22232611,44587153 -g1,14230:23892381,44587153 -g1,14230:25220197,44587153 -g1,14230:26548013,44587153 -g1,14230:27211921,44587153 -g1,14230:27875829,44587153 -h1,14230:28207783,44587153:0,0,0 -k1,14230:32583029,44587153:4375246 -g1,14230:32583029,44587153 -) -(1,14232:6630773,45397309:25952256,431045,112852 -(1,14231:6630773,45397309:0,0,0 -g1,14231:6630773,45397309 -g1,14231:6630773,45397309 -g1,14231:6303093,45397309 -(1,14231:6303093,45397309:0,0,0 -) -g1,14231:6630773,45397309 -) -g1,14232:8290543,45397309 -g1,14232:9286405,45397309 -g1,14232:13269853,45397309 -g1,14232:15925485,45397309 -g1,14232:16589393,45397309 -g1,14232:20572841,45397309 -g1,14232:21236749,45397309 -g1,14232:22232611,45397309 -g1,14232:22896519,45397309 -h1,14232:24888243,45397309:0,0,0 -k1,14232:32583029,45397309:7694786 -g1,14232:32583029,45397309 -) -] -) -g1,14245:32583029,45510161 -g1,14245:6630773,45510161 -g1,14245:6630773,45510161 -g1,14245:32583029,45510161 -g1,14245:32583029,45510161 -) -] -(1,14245:32583029,45706769:0,0,0 -g1,14245:32583029,45706769 -) -) -] -(1,14245:6630773,47279633:25952256,0,0 -h1,14245:6630773,47279633:25952256,0,0 -) -] -(1,14245:4262630,4025873:0,0,0 -[1,14245:-473656,4025873:0,0,0 -(1,14245:-473656,-710413:0,0,0 -(1,14245:-473656,-710413:0,0,0 -g1,14245:-473656,-710413 -) -g1,14245:-473656,-710413 +k1,14206:32583029,10957907:40793 +) +(1,14206:6630773,12478347:25952256,505283,134348 +h1,14206:6630773,12478347:0,0,0 +g1,14206:8923222,12478347 +k1,14206:32583029,12478347:22689874 +g1,14206:32583029,12478347 +) +(1,14206:6630773,13343427:25952256,513147,134348 +h1,14206:6630773,13343427:0,0,0 +k1,14206:9570555,13343427:241009 +k1,14206:12462494,13343427:241008 +k1,14206:13722587,13343427:241008 +k1,14206:15649182,13343427:241009 +k1,14206:16837842,13343427:241009 +k1,14206:19938186,13343427:241008 +k1,14206:20535055,13343427:241009 +k1,14206:22488519,13343427:241008 +k1,14206:24717235,13343427:241009 +k1,14206:25781375,13343427:241008 +k1,14206:27631293,13343427:241009 +k1,14206:29917024,13343427:241008 +k1,14206:32583029,13343427:0 +) +(1,14206:6630773,14208507:25952256,513147,134348 +g1,14206:8197739,14208507 +g1,14206:9416053,14208507 +g1,14206:12369760,14208507 +g1,14206:14254575,14208507 +g1,14206:15069842,14208507 +g1,14206:17707666,14208507 +g1,14206:19918195,14208507 +g1,14206:22252587,14208507 +g1,14206:23476799,14208507 +g1,14206:25661114,14208507 +h1,14206:26631702,14208507:0,0,0 +g1,14206:26830931,14208507 +g1,14206:27977811,14208507 +g1,14206:29879010,14208507 +k1,14206:32583029,14208507:534122 +g1,14206:32583029,14208507 +) +] +] +(1,14172:6630773,16308935:25952256,564462,139132 +(1,14172:6630773,16308935:2450326,534184,12975 +g1,14172:6630773,16308935 +g1,14172:9081099,16308935 +) +g1,14172:12446963,16308935 +g1,14172:13416569,16308935 +g1,14172:17776549,16308935 +k1,14172:32583029,16308935:11481708 +g1,14172:32583029,16308935 +) +(1,14180:6630773,17567231:25952256,513147,126483 +k1,14178:8524763,17567231:140902 +k1,14178:9021525,17567231:140902 +k1,14178:10975154,17567231:140903 +k1,14178:13103763,17567231:140902 +k1,14178:15912636,17567231:140902 +k1,14178:17520234,17567231:140902 +k1,14178:21426835,17567231:140902 +k1,14178:23792030,17567231:140903 +k1,14178:25124377,17567231:140902 +k1,14178:28835680,17567231:140902 +k1,14178:32583029,17567231:0 +) +(1,14180:6630773,18432311:25952256,513147,126483 +k1,14178:9764754,18432311:136365 +k1,14178:10769472,18432311:136366 +k1,14178:12242771,18432311:136365 +k1,14178:13478830,18432311:136365 +k1,14178:14073293,18432311:136366 +k1,14178:16741314,18432311:136365 +k1,14178:17493717,18432311:136365 +k1,14178:21048440,18432311:136365 +k1,14178:24662802,18432311:136366 +k1,14178:25995854,18432311:136365 +k1,14178:28675671,18432311:136365 +k1,14178:30896082,18432311:136366 +k1,14178:31563944,18432311:136365 +k1,14178:32583029,18432311:0 +) +(1,14180:6630773,19297391:25952256,513147,126483 +k1,14178:8426677,19297391:142431 +k1,14178:9516760,19297391:142432 +k1,14178:10425307,19297391:142431 +k1,14178:12380465,19297391:142432 +k1,14178:14840904,19297391:142431 +k1,14178:16348450,19297391:142431 +k1,14178:17177044,19297391:142432 +k1,14178:20737178,19297391:142431 +k1,14178:21495648,19297391:142432 +k1,14178:24392557,19297391:142431 +k1,14178:27317648,19297391:142432 +k1,14178:29008695,19297391:142431 +k1,14178:32583029,19297391:0 +) +(1,14180:6630773,20162471:25952256,513147,126483 +k1,14178:7817781,20162471:167923 +k1,14178:9371791,20162471:167924 +k1,14178:10199006,20162471:167923 +k1,14178:12921522,20162471:167923 +k1,14178:13620943,20162471:167924 +k1,14178:14807951,20162471:167923 +k1,14178:17054021,20162471:167923 +k1,14178:17881236,20162471:167923 +k1,14178:19068245,20162471:167924 +k1,14178:23001867,20162471:167923 +k1,14178:26599289,20162471:167923 +k1,14178:27585102,20162471:167924 +k1,14178:28772110,20162471:167923 +k1,14178:32583029,20162471:0 +) +(1,14180:6630773,21027551:25952256,513147,134348 +k1,14178:9386007,21027551:197364 +k1,14178:10602456,21027551:197364 +k1,14178:12626965,21027551:197365 +k1,14178:13633699,21027551:197364 +k1,14178:16228370,21027551:197364 +k1,14178:19087151,21027551:197364 +k1,14178:19816013,21027551:197365 +k1,14178:21881808,21027551:197364 +k1,14178:23275859,21027551:197364 +k1,14178:25065093,21027551:197364 +k1,14178:28107375,21027551:197364 +k1,14178:28964032,21027551:197365 +k1,14178:32051532,21027551:197362 +k1,14178:32583029,21027551:0 +) +(1,14180:6630773,21892631:25952256,513147,126483 +k1,14178:7396046,21892631:149235 +k1,14178:8564366,21892631:149235 +k1,14178:11544755,21892631:149234 +k1,14178:12353282,21892631:149235 +k1,14178:13521602,21892631:149235 +k1,14178:16561630,21892631:149235 +k1,14178:17902309,21892631:149234 +k1,14178:19070629,21892631:149235 +k1,14178:23665171,21892631:149235 +k1,14178:24473698,21892631:149235 +k1,14178:25642018,21892631:149235 +k1,14178:27964426,21892631:149234 +k1,14178:28772953,21892631:149235 +k1,14178:29941273,21892631:149235 +k1,14178:32583029,21892631:0 +) +(1,14180:6630773,22757711:25952256,513147,126483 +k1,14178:10059235,22757711:147074 +k1,14178:11904346,22757711:147073 +k1,14178:13070505,22757711:147074 +k1,14178:16108371,22757711:147073 +k1,14178:16786942,22757711:147074 +k1,14178:18000286,22757711:147073 +k1,14178:22154231,22757711:147074 +k1,14178:22960597,22757711:147074 +k1,14178:24126755,22757711:147073 +k1,14178:27418246,22757711:147074 +k1,14178:30655342,22757711:147073 +k1,14178:31563944,22757711:147074 +k1,14178:32583029,22757711:0 +) +(1,14180:6630773,23622791:25952256,513147,134348 +g1,14178:8723992,23622791 +g1,14178:10199207,23622791 +g1,14178:12246551,23622791 +g1,14178:14420380,23622791 +k1,14180:32583028,23622791:18162648 +g1,14180:32583028,23622791 +) +(1,14181:6630773,25739609:25952256,555811,139132 +(1,14181:6630773,25739609:2450326,534184,12975 +g1,14181:6630773,25739609 +g1,14181:9081099,25739609 +) +g1,14181:11511961,25739609 +g1,14181:14234786,25739609 +g1,14181:15802014,25739609 +k1,14181:32583029,25739609:13537704 +g1,14181:32583029,25739609 +) +(1,14184:6630773,26997905:25952256,513147,134348 +k1,14183:8759029,26997905:196910 +k1,14183:9643412,26997905:196910 +k1,14183:12130151,26997905:196911 +k1,14183:13431343,26997905:196910 +k1,14183:14376019,26997905:196910 +k1,14183:17383768,26997905:196910 +k1,14183:18650227,26997905:196911 +k1,14183:21855895,26997905:196910 +k1,14183:24582495,26997905:196910 +k1,14183:26159593,26997905:196910 +k1,14183:28728252,26997905:196911 +k1,14183:29991433,26997905:196910 +k1,14183:31563944,26997905:196910 +k1,14183:32583029,26997905:0 +) +(1,14184:6630773,27862985:25952256,513147,134348 +k1,14183:8986407,27862985:182460 +k1,14183:9828159,27862985:182460 +k1,14183:11029703,27862985:182459 +k1,14183:11899636,27862985:182460 +k1,14183:13154265,27862985:182460 +k1,14183:14622541,27862985:182460 +k1,14183:15824086,27862985:182460 +k1,14183:17395909,27862985:182460 +k1,14183:18229796,27862985:182459 +k1,14183:20297727,27862985:182460 +k1,14183:21499272,27862985:182460 +k1,14183:23669439,27862985:182460 +k1,14183:25059072,27862985:182460 +k1,14183:25929005,27862985:182460 +k1,14183:27343541,27862985:182459 +k1,14183:29024154,27862985:182460 +h1,14183:30219531,27862985:0,0,0 +k1,14183:30782755,27862985:182460 +k1,14183:32583029,27862985:0 +) +(1,14184:6630773,28728065:25952256,513147,102891 +k1,14183:8091440,28728065:176161 +k1,14183:9286685,28728065:176160 +k1,14183:10562540,28728065:176161 +k1,14183:11270198,28728065:176161 +k1,14183:12732174,28728065:176160 +k1,14183:15120175,28728065:176161 +k1,14183:16062452,28728065:176161 +k1,14183:17257697,28728065:176160 +k1,14183:21240844,28728065:176161 +k1,14183:23715353,28728065:176161 +k1,14183:24542941,28728065:176160 +k1,14183:28163019,28728065:176161 +k1,14183:29358265,28728065:176161 +k1,14183:31187898,28728065:176160 +k1,14183:32051532,28728065:176161 +k1,14183:32583029,28728065:0 +) +(1,14184:6630773,29593145:25952256,513147,134348 +k1,14183:9773751,29593145:185338 +k1,14183:12357051,29593145:185338 +(1,14183:12357051,29593145:0,452978,115847 +r1,14243:15177300,29593145:2820249,568825,115847 +k1,14183:12357051,29593145:-2820249 +) +(1,14183:12357051,29593145:2820249,452978,115847 +k1,14183:12357051,29593145:3277 +h1,14183:15174023,29593145:0,411205,112570 +) +k1,14183:15362638,29593145:185338 +k1,14183:17594010,29593145:185338 +k1,14183:18237445,29593145:185338 +k1,14183:21052742,29593145:185337 +k1,14183:21889508,29593145:185338 +k1,14183:25518763,29593145:185338 +k1,14183:26723186,29593145:185338 +k1,14183:27595997,29593145:185338 +k1,14183:29175286,29593145:185338 +k1,14183:31931601,29593145:185338 +k1,14183:32583029,29593145:0 +) +(1,14184:6630773,30458225:25952256,505283,134348 +k1,14183:7850194,30458225:200336 +k1,14183:9323894,30458225:200335 +k1,14183:11984452,30458225:200336 +k1,14183:14612242,30458225:200336 +k1,14183:16514547,30458225:200335 +k1,14183:17480999,30458225:200336 +k1,14183:18700420,30458225:200336 +k1,14183:22303384,30458225:200335 +k1,14183:23155148,30458225:200336 +k1,14183:23711344,30458225:200336 +k1,14183:25194874,30458225:200335 +k1,14183:26494904,30458225:200336 +k1,14183:27346668,30458225:200336 +(1,14183:27346668,30458225:0,452978,115847 +r1,14243:28760069,30458225:1413401,568825,115847 +k1,14183:27346668,30458225:-1413401 +) +(1,14183:27346668,30458225:1413401,452978,115847 +k1,14183:27346668,30458225:3277 +h1,14183:28756792,30458225:0,411205,112570 +) +k1,14183:28960404,30458225:200335 +k1,14183:31352919,30458225:200336 +h1,14183:32323507,30458225:0,0,0 +k1,14183:32583029,30458225:0 +) +(1,14184:6630773,31323305:25952256,513147,134348 +k1,14183:7716977,31323305:162802 +k1,14183:8984061,31323305:162802 +k1,14183:11409167,31323305:162803 +k1,14183:14334312,31323305:162802 +k1,14183:18073414,31323305:162802 +k1,14183:21216793,31323305:162802 +k1,14183:24190435,31323305:162803 +k1,14183:25675098,31323305:162802 +k1,14183:26497192,31323305:162802 +k1,14183:27679079,31323305:162802 +k1,14183:29231245,31323305:162803 +k1,14183:30155575,31323305:162802 +k1,14183:32583029,31323305:0 +) +(1,14184:6630773,32188385:25952256,513147,134348 +g1,14183:7185862,32188385 +g1,14183:8668286,32188385 +g1,14183:11939843,32188385 +g1,14183:12790500,32188385 +g1,14183:15118338,32188385 +g1,14183:18598299,32188385 +(1,14183:18598299,32188385:0,452978,115847 +r1,14243:20715124,32188385:2116825,568825,115847 +k1,14183:18598299,32188385:-2116825 +) +(1,14183:18598299,32188385:2116825,452978,115847 +k1,14183:18598299,32188385:3277 +h1,14183:20711847,32188385:0,411205,112570 +) +k1,14184:32583029,32188385:11815477 +g1,14184:32583029,32188385 +) +(1,14210:6630773,33053465:25952256,513147,134348 +h1,14209:6630773,33053465:983040,0,0 +k1,14209:10252865,33053465:241090 +(1,14209:10252865,33053465:0,452978,115847 +r1,14243:13073114,33053465:2820249,568825,115847 +k1,14209:10252865,33053465:-2820249 +) +(1,14209:10252865,33053465:2820249,452978,115847 +k1,14209:10252865,33053465:3277 +h1,14209:13069837,33053465:0,411205,112570 +) +k1,14209:13314204,33053465:241090 +k1,14209:16319603,33053465:241090 +k1,14209:17579778,33053465:241090 +k1,14209:18920562,33053465:241090 +k1,14209:20729273,33053465:241090 +k1,14209:21989448,33053465:241090 +k1,14209:24218245,33053465:241090 +k1,14209:25146808,33053465:241090 +k1,14209:27347424,33053465:241090 +k1,14209:29323907,33053465:241090 +(1,14209:29323907,33053465:0,452978,122846 +r1,14243:32495867,33053465:3171960,575824,122846 +k1,14209:29323907,33053465:-3171960 +) +(1,14209:29323907,33053465:3171960,452978,122846 +k1,14209:29323907,33053465:3277 +h1,14209:32492590,33053465:0,411205,112570 +) +k1,14209:32583029,33053465:0 +) +(1,14210:6630773,33918545:25952256,513147,126483 +k1,14209:9644700,33918545:269279 +k1,14209:10372076,33918545:269279 +k1,14209:12006469,33918545:269278 +k1,14209:13037276,33918545:269279 +k1,14209:15745805,33918545:269279 +k1,14209:18985831,33918545:269279 +k1,14209:19886876,33918545:269278 +k1,14209:21352842,33918545:269279 +k1,14209:23887701,33918545:269279 +(1,14209:23887701,33918545:0,452978,115847 +r1,14243:26707950,33918545:2820249,568825,115847 +k1,14209:23887701,33918545:-2820249 +) +(1,14209:23887701,33918545:2820249,452978,115847 +k1,14209:23887701,33918545:3277 +h1,14209:26704673,33918545:0,411205,112570 +) +k1,14209:26977229,33918545:269279 +k1,14209:29700830,33918545:269278 +k1,14209:31896867,33918545:269279 +k1,14209:32583029,33918545:0 +) +(1,14210:6630773,34783625:25952256,513147,134348 +k1,14209:8242824,34783625:223343 +k1,14209:9152329,34783625:223343 +k1,14209:10394756,34783625:223342 +k1,14209:13506271,34783625:223343 +k1,14209:15689140,34783625:223343 +k1,14209:18614532,34783625:223343 +k1,14209:19193734,34783625:223342 +k1,14209:22040483,34783625:223343 +k1,14209:24422582,34783625:223343 +(1,14209:24422582,34783625:0,452978,115847 +r1,14243:25835983,34783625:1413401,568825,115847 +k1,14209:24422582,34783625:-1413401 +) +(1,14209:24422582,34783625:1413401,452978,115847 +k1,14209:24422582,34783625:3277 +h1,14209:25832706,34783625:0,411205,112570 +) +k1,14209:26059326,34783625:223343 +k1,14209:26965553,34783625:223342 +k1,14209:27654857,34783625:223343 +k1,14209:28234060,34783625:223343 +k1,14209:32583029,34783625:0 +) +(1,14210:6630773,35648705:25952256,513147,122846 +k1,14209:7530561,35648705:232632 +(1,14209:7530561,35648705:0,452978,122846 +r1,14243:10702521,35648705:3171960,575824,122846 +k1,14209:7530561,35648705:-3171960 +) +(1,14209:7530561,35648705:3171960,452978,122846 +k1,14209:7530561,35648705:3277 +h1,14209:10699244,35648705:0,411205,112570 +) +k1,14209:10935153,35648705:232632 +k1,14209:11699281,35648705:232631 +k1,14209:14889553,35648705:232632 +k1,14209:16890346,35648705:232632 +k1,14209:19577301,35648705:232632 +(1,14209:19577301,35648705:0,452978,115847 +r1,14243:22397550,35648705:2820249,568825,115847 +k1,14209:19577301,35648705:-2820249 +) +(1,14209:19577301,35648705:2820249,452978,115847 +k1,14209:19577301,35648705:3277 +h1,14209:22394273,35648705:0,411205,112570 +) +k1,14209:22630181,35648705:232631 +k1,14209:23967095,35648705:232632 +k1,14209:24947493,35648705:232632 +k1,14209:26693351,35648705:232632 +k1,14209:28319933,35648705:232631 +k1,14209:30870573,35648705:232632 +k1,14209:32583029,35648705:0 +) +(1,14210:6630773,36513785:25952256,513147,115847 +g1,14209:8197739,36513785 +g1,14209:10098938,36513785 +g1,14209:13323964,36513785 +g1,14209:14139231,36513785 +g1,14209:17004465,36513785 +g1,14209:17855122,36513785 +(1,14209:17855122,36513785:0,452978,115847 +r1,14243:19268523,36513785:1413401,568825,115847 +k1,14209:17855122,36513785:-1413401 +) +(1,14209:17855122,36513785:1413401,452978,115847 +k1,14209:17855122,36513785:3277 +h1,14209:19265246,36513785:0,411205,112570 +) +k1,14210:32583029,36513785:13262078 +g1,14210:32583029,36513785 +) +(1,14212:6630773,37378865:25952256,513147,134348 +h1,14211:6630773,37378865:983040,0,0 +g1,14211:8855064,37378865 +g1,14211:10073378,37378865 +g1,14211:11656727,37378865 +g1,14211:14691043,37378865 +g1,14211:15758624,37378865 +g1,14211:18522932,37378865 +g1,14211:19741246,37378865 +g1,14211:21928182,37378865 +g1,14211:22814884,37378865 +g1,14211:24973639,37378865 +(1,14211:24973639,37378865:0,459977,115847 +r1,14243:26035328,37378865:1061689,575824,115847 +k1,14211:24973639,37378865:-1061689 +) +(1,14211:24973639,37378865:1061689,459977,115847 +k1,14211:24973639,37378865:3277 +h1,14211:26032051,37378865:0,411205,112570 +) +g1,14211:26234557,37378865 +g1,14211:28001407,37378865 +g1,14211:29698789,37378865 +h1,14211:30894166,37378865:0,0,0 +k1,14212:32583029,37378865:1636435 +g1,14212:32583029,37378865 +) +v1,14214:6630773,38063720:0,393216,0 +(1,14243:6630773,45510161:25952256,7839657,196608 +g1,14243:6630773,45510161 +g1,14243:6630773,45510161 +g1,14243:6434165,45510161 +(1,14243:6434165,45510161:0,7839657,196608 +r1,14243:32779637,45510161:26345472,8036265,196608 +k1,14243:6434165,45510161:-26345472 +) +(1,14243:6434165,45510161:26345472,7839657,196608 +[1,14243:6630773,45510161:25952256,7643049,0 +(1,14216:6630773,38298157:25952256,431045,106246 +(1,14215:6630773,38298157:0,0,0 +g1,14215:6630773,38298157 +g1,14215:6630773,38298157 +g1,14215:6303093,38298157 +(1,14215:6303093,38298157:0,0,0 +) +g1,14215:6630773,38298157 +) +g1,14216:7958589,38298157 +g1,14216:8954451,38298157 +g1,14216:11942037,38298157 +g1,14216:12605945,38298157 +g1,14216:14929623,38298157 +g1,14216:16589393,38298157 +g1,14216:17253301,38298157 +h1,14216:21568702,38298157:0,0,0 +k1,14216:32583029,38298157:11014327 +g1,14216:32583029,38298157 +) +(1,14217:6630773,38983012:25952256,431045,79822 +h1,14217:6630773,38983012:0,0,0 +k1,14217:6630773,38983012:0 +h1,14217:9950313,38983012:0,0,0 +k1,14217:32583029,38983012:22632716 +g1,14217:32583029,38983012 +) +(1,14228:6630773,39793168:25952256,431045,106246 +(1,14219:6630773,39793168:0,0,0 +g1,14219:6630773,39793168 +g1,14219:6630773,39793168 +g1,14219:6303093,39793168 +(1,14219:6303093,39793168:0,0,0 +) +g1,14219:6630773,39793168 +) +g1,14228:7626635,39793168 +g1,14228:10614220,39793168 +g1,14228:11610082,39793168 +g1,14228:14597667,39793168 +h1,14228:16257437,39793168:0,0,0 +k1,14228:32583029,39793168:16325592 +g1,14228:32583029,39793168 +) +(1,14228:6630773,40478023:25952256,398014,0 +h1,14228:6630773,40478023:0,0,0 +h1,14228:7294681,40478023:0,0,0 +k1,14228:32583029,40478023:25288348 +g1,14228:32583029,40478023 +) +(1,14228:6630773,41162878:25952256,398014,106246 +h1,14228:6630773,41162878:0,0,0 +g1,14228:7626635,41162878 +g1,14228:10946174,41162878 +h1,14228:12605944,41162878:0,0,0 +k1,14228:32583028,41162878:19977084 +g1,14228:32583028,41162878 +) +(1,14228:6630773,41847733:25952256,431045,106246 +h1,14228:6630773,41847733:0,0,0 +g1,14228:7626635,41847733 +g1,14228:7958589,41847733 +g1,14228:8290543,41847733 +g1,14228:8622497,41847733 +g1,14228:8954451,41847733 +g1,14228:9286405,41847733 +g1,14228:9618359,41847733 +g1,14228:9950313,41847733 +g1,14228:10282267,41847733 +g1,14228:10614221,41847733 +g1,14228:10946175,41847733 +g1,14228:11942037,41847733 +g1,14228:13269853,41847733 +g1,14228:14265715,41847733 +g1,14228:15925485,41847733 +g1,14228:16921347,41847733 +g1,14228:17585255,41847733 +g1,14228:19576979,41847733 +g1,14228:19908933,41847733 +g1,14228:20240887,41847733 +g1,14228:20572841,41847733 +k1,14228:20572841,41847733:0 +h1,14228:22564565,41847733:0,0,0 +k1,14228:32583029,41847733:10018464 +g1,14228:32583029,41847733 +) +(1,14228:6630773,42532588:25952256,407923,106246 +h1,14228:6630773,42532588:0,0,0 +g1,14228:7626635,42532588 +g1,14228:9618359,42532588 +g1,14228:9950313,42532588 +g1,14228:10282267,42532588 +g1,14228:10614221,42532588 +g1,14228:10946175,42532588 +g1,14228:11278129,42532588 +g1,14228:11942037,42532588 +g1,14228:14265715,42532588 +g1,14228:14597669,42532588 +g1,14228:16921347,42532588 +g1,14228:17253301,42532588 +g1,14228:19576979,42532588 +g1,14228:20240887,42532588 +g1,14228:22896519,42532588 +h1,14228:23892381,42532588:0,0,0 +k1,14228:32583029,42532588:8690648 +g1,14228:32583029,42532588 +) +(1,14228:6630773,43217443:25952256,424439,9908 +h1,14228:6630773,43217443:0,0,0 +g1,14228:7626635,43217443 +g1,14228:10946174,43217443 +g1,14228:11942036,43217443 +g1,14228:14265714,43217443 +g1,14228:14597668,43217443 +g1,14228:14929622,43217443 +h1,14228:16589392,43217443:0,0,0 +k1,14228:32583029,43217443:15993637 +g1,14228:32583029,43217443 +) +(1,14228:6630773,43902298:25952256,398014,0 +h1,14228:6630773,43902298:0,0,0 +g1,14228:7626635,43902298 +k1,14228:7626635,43902298:0 +h1,14228:8622497,43902298:0,0,0 +k1,14228:32583029,43902298:23960532 +g1,14228:32583029,43902298 +) +(1,14228:6630773,44587153:25952256,431045,112852 +h1,14228:6630773,44587153:0,0,0 +g1,14228:7626635,44587153 +g1,14228:10282267,44587153 +g1,14228:12605945,44587153 +g1,14228:12937899,44587153 +g1,14228:13601807,44587153 +g1,14228:15593531,44587153 +g1,14228:17585255,44587153 +g1,14228:19245025,44587153 +g1,14228:20904795,44587153 +g1,14228:22232611,44587153 +g1,14228:23892381,44587153 +g1,14228:25220197,44587153 +g1,14228:26548013,44587153 +g1,14228:27211921,44587153 +g1,14228:27875829,44587153 +h1,14228:28207783,44587153:0,0,0 +k1,14228:32583029,44587153:4375246 +g1,14228:32583029,44587153 +) +(1,14230:6630773,45397309:25952256,431045,112852 +(1,14229:6630773,45397309:0,0,0 +g1,14229:6630773,45397309 +g1,14229:6630773,45397309 +g1,14229:6303093,45397309 +(1,14229:6303093,45397309:0,0,0 +) +g1,14229:6630773,45397309 +) +g1,14230:8290543,45397309 +g1,14230:9286405,45397309 +g1,14230:13269853,45397309 +g1,14230:15925485,45397309 +g1,14230:16589393,45397309 +g1,14230:20572841,45397309 +g1,14230:21236749,45397309 +g1,14230:22232611,45397309 +g1,14230:22896519,45397309 +h1,14230:24888243,45397309:0,0,0 +k1,14230:32583029,45397309:7694786 +g1,14230:32583029,45397309 +) +] +) +g1,14243:32583029,45510161 +g1,14243:6630773,45510161 +g1,14243:6630773,45510161 +g1,14243:32583029,45510161 +g1,14243:32583029,45510161 +) +] +(1,14243:32583029,45706769:0,0,0 +g1,14243:32583029,45706769 +) +) +] +(1,14243:6630773,47279633:25952256,0,0 +h1,14243:6630773,47279633:25952256,0,0 +) +] +(1,14243:4262630,4025873:0,0,0 +[1,14243:-473656,4025873:0,0,0 +(1,14243:-473656,-710413:0,0,0 +(1,14243:-473656,-710413:0,0,0 +g1,14243:-473656,-710413 +) +g1,14243:-473656,-710413 ) ] ) ] !30519 -}228 -Input:2430:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}229 Input:2433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2434:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -252228,1234 +252427,1274 @@ Input:2452:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2453:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2454:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2455:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2456:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2457:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2458:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2404 -{229 -[1,14320:4262630,47279633:28320399,43253760,0 -(1,14320:4262630,4025873:0,0,0 -[1,14320:-473656,4025873:0,0,0 -(1,14320:-473656,-710413:0,0,0 -(1,14320:-473656,-644877:0,0,0 -k1,14320:-473656,-644877:-65536 +{230 +[1,14318:4262630,47279633:28320399,43253760,0 +(1,14318:4262630,4025873:0,0,0 +[1,14318:-473656,4025873:0,0,0 +(1,14318:-473656,-710413:0,0,0 +(1,14318:-473656,-644877:0,0,0 +k1,14318:-473656,-644877:-65536 ) -(1,14320:-473656,4736287:0,0,0 -k1,14320:-473656,4736287:5209943 +(1,14318:-473656,4736287:0,0,0 +k1,14318:-473656,4736287:5209943 ) -g1,14320:-473656,-710413 +g1,14318:-473656,-710413 ) ] ) -[1,14320:6630773,47279633:25952256,43253760,0 -[1,14320:6630773,4812305:25952256,786432,0 -(1,14320:6630773,4812305:25952256,513147,126483 -(1,14320:6630773,4812305:25952256,513147,126483 -g1,14320:3078558,4812305 -[1,14320:3078558,4812305:0,0,0 -(1,14320:3078558,2439708:0,1703936,0 -k1,14320:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14320:2537886,2439708:1179648,16384,0 +[1,14318:6630773,47279633:25952256,43253760,0 +[1,14318:6630773,4812305:25952256,786432,0 +(1,14318:6630773,4812305:25952256,513147,126483 +(1,14318:6630773,4812305:25952256,513147,126483 +g1,14318:3078558,4812305 +[1,14318:3078558,4812305:0,0,0 +(1,14318:3078558,2439708:0,1703936,0 +k1,14318:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14318:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14320:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14318:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14320:3078558,4812305:0,0,0 -(1,14320:3078558,2439708:0,1703936,0 -g1,14320:29030814,2439708 -g1,14320:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14320:36151628,1915420:16384,1179648,0 +[1,14318:3078558,4812305:0,0,0 +(1,14318:3078558,2439708:0,1703936,0 +g1,14318:29030814,2439708 +g1,14318:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14318:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14320:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14318:37855564,2439708:1179648,16384,0 ) ) -k1,14320:3078556,2439708:-34777008 +k1,14318:3078556,2439708:-34777008 ) ] -[1,14320:3078558,4812305:0,0,0 -(1,14320:3078558,49800853:0,16384,2228224 -k1,14320:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14320:2537886,49800853:1179648,16384,0 +[1,14318:3078558,4812305:0,0,0 +(1,14318:3078558,49800853:0,16384,2228224 +k1,14318:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14318:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14320:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14318:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14320:3078558,4812305:0,0,0 -(1,14320:3078558,49800853:0,16384,2228224 -g1,14320:29030814,49800853 -g1,14320:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14320:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14320:37855564,49800853:1179648,16384,0 -) -) -k1,14320:3078556,49800853:-34777008 -) -] -g1,14320:6630773,4812305 -k1,14320:19575446,4812305:11749296 -g1,14320:21198117,4812305 -g1,14320:21985204,4812305 -g1,14320:24539797,4812305 -g1,14320:25949476,4812305 -g1,14320:28728857,4812305 -g1,14320:29852144,4812305 -) -) -] -[1,14320:6630773,45706769:25952256,40108032,0 -(1,14320:6630773,45706769:25952256,40108032,0 -(1,14320:6630773,45706769:0,0,0 -g1,14320:6630773,45706769 -) -[1,14320:6630773,45706769:25952256,40108032,0 -v1,14245:6630773,6254097:0,393216,0 -(1,14245:6630773,12211298:25952256,6350417,196608 -g1,14245:6630773,12211298 -g1,14245:6630773,12211298 -g1,14245:6434165,12211298 -(1,14245:6434165,12211298:0,6350417,196608 -r1,14320:32779637,12211298:26345472,6547025,196608 -k1,14245:6434165,12211298:-26345472 -) -(1,14245:6434165,12211298:26345472,6350417,196608 -[1,14245:6630773,12211298:25952256,6153809,0 -(1,14233:6630773,6488534:25952256,431045,79822 -h1,14233:6630773,6488534:0,0,0 -k1,14233:6630773,6488534:0 -h1,14233:10282267,6488534:0,0,0 -k1,14233:32583029,6488534:22300762 -g1,14233:32583029,6488534 -) -(1,14244:6630773,7304461:25952256,431045,106246 -(1,14235:6630773,7304461:0,0,0 -g1,14235:6630773,7304461 -g1,14235:6630773,7304461 -g1,14235:6303093,7304461 -(1,14235:6303093,7304461:0,0,0 -) -g1,14235:6630773,7304461 -) -g1,14244:7626635,7304461 -g1,14244:10614220,7304461 -g1,14244:11610082,7304461 -g1,14244:14597667,7304461 -h1,14244:16257437,7304461:0,0,0 -k1,14244:32583029,7304461:16325592 -g1,14244:32583029,7304461 -) -(1,14244:6630773,7989316:25952256,398014,0 -h1,14244:6630773,7989316:0,0,0 -h1,14244:7294681,7989316:0,0,0 -k1,14244:32583029,7989316:25288348 -g1,14244:32583029,7989316 -) -(1,14244:6630773,8674171:25952256,424439,112852 -h1,14244:6630773,8674171:0,0,0 -g1,14244:7626635,8674171 -g1,14244:10946174,8674171 -g1,14244:14929621,8674171 -g1,14244:15593529,8674171 -h1,14244:16257437,8674171:0,0,0 -k1,14244:32583029,8674171:16325592 -g1,14244:32583029,8674171 -) -(1,14244:6630773,9359026:25952256,431045,106246 -h1,14244:6630773,9359026:0,0,0 -g1,14244:7626635,9359026 -g1,14244:7958589,9359026 -g1,14244:8290543,9359026 -g1,14244:8622497,9359026 -g1,14244:8954451,9359026 -g1,14244:9286405,9359026 -g1,14244:9618359,9359026 -g1,14244:9950313,9359026 -g1,14244:10282267,9359026 -g1,14244:10614221,9359026 -g1,14244:10946175,9359026 -g1,14244:11942037,9359026 -g1,14244:13269853,9359026 -g1,14244:14265715,9359026 -g1,14244:15925485,9359026 -g1,14244:16921347,9359026 -g1,14244:17585255,9359026 -g1,14244:19576979,9359026 -g1,14244:19908933,9359026 -g1,14244:20240887,9359026 -g1,14244:20572841,9359026 -k1,14244:20572841,9359026:0 -h1,14244:22564565,9359026:0,0,0 -k1,14244:32583029,9359026:10018464 -g1,14244:32583029,9359026 -) -(1,14244:6630773,10043881:25952256,407923,106246 -h1,14244:6630773,10043881:0,0,0 -g1,14244:7626635,10043881 -g1,14244:9618359,10043881 -g1,14244:9950313,10043881 -g1,14244:10282267,10043881 -g1,14244:10614221,10043881 -g1,14244:10946175,10043881 -g1,14244:11278129,10043881 -g1,14244:11942037,10043881 -g1,14244:14265715,10043881 -g1,14244:16921347,10043881 -g1,14244:17253301,10043881 -g1,14244:19576979,10043881 -g1,14244:20240887,10043881 -g1,14244:22896519,10043881 -h1,14244:23892381,10043881:0,0,0 -k1,14244:32583029,10043881:8690648 -g1,14244:32583029,10043881 -) -(1,14244:6630773,10728736:25952256,424439,9908 -h1,14244:6630773,10728736:0,0,0 -g1,14244:7626635,10728736 -g1,14244:10946174,10728736 -g1,14244:11942036,10728736 -g1,14244:14265714,10728736 -h1,14244:16589392,10728736:0,0,0 -k1,14244:32583029,10728736:15993637 -g1,14244:32583029,10728736 -) -(1,14244:6630773,11413591:25952256,398014,0 -h1,14244:6630773,11413591:0,0,0 -g1,14244:7626635,11413591 -k1,14244:7626635,11413591:0 -h1,14244:8622497,11413591:0,0,0 -k1,14244:32583029,11413591:23960532 -g1,14244:32583029,11413591 -) -(1,14244:6630773,12098446:25952256,431045,112852 -h1,14244:6630773,12098446:0,0,0 -g1,14244:7626635,12098446 -g1,14244:10282267,12098446 -g1,14244:12605945,12098446 -g1,14244:12937899,12098446 -g1,14244:13601807,12098446 -g1,14244:15593531,12098446 -g1,14244:17585255,12098446 -g1,14244:19245025,12098446 -g1,14244:20904795,12098446 -g1,14244:22232611,12098446 -g1,14244:23892381,12098446 -g1,14244:25220197,12098446 -g1,14244:26548013,12098446 -g1,14244:27211921,12098446 -g1,14244:27875829,12098446 -h1,14244:28207783,12098446:0,0,0 -k1,14244:32583029,12098446:4375246 -g1,14244:32583029,12098446 -) -] -) -g1,14245:32583029,12211298 -g1,14245:6630773,12211298 -g1,14245:6630773,12211298 -g1,14245:32583029,12211298 -g1,14245:32583029,12211298 -) -h1,14245:6630773,12407906:0,0,0 -v1,14249:6630773,13272986:0,393216,0 -(1,14250:6630773,14537026:25952256,1657256,0 -g1,14250:6630773,14537026 -g1,14250:6237557,14537026 -r1,14320:6368629,14537026:131072,1657256,0 -g1,14250:6567858,14537026 -g1,14250:6764466,14537026 -[1,14250:6764466,14537026:25818563,1657256,0 -(1,14250:6764466,13545463:25818563,665693,196608 -(1,14249:6764466,13545463:0,665693,196608 -r1,14320:7868133,13545463:1103667,862301,196608 -k1,14249:6764466,13545463:-1103667 -) -(1,14249:6764466,13545463:1103667,665693,196608 -) -k1,14249:8077769,13545463:209636 -k1,14249:9803987,13545463:327680 -k1,14249:11550442,13545463:209636 -(1,14249:11550442,13545463:0,459977,115847 -r1,14320:14370691,13545463:2820249,575824,115847 -k1,14249:11550442,13545463:-2820249 -) -(1,14249:11550442,13545463:2820249,459977,115847 -k1,14249:11550442,13545463:3277 -h1,14249:14367414,13545463:0,411205,112570 -) -k1,14249:14580327,13545463:209636 -k1,14249:15981408,13545463:209636 -(1,14249:15981408,13545463:0,459977,115847 -r1,14320:19153368,13545463:3171960,575824,115847 -k1,14249:15981408,13545463:-3171960 -) -(1,14249:15981408,13545463:3171960,459977,115847 -k1,14249:15981408,13545463:3277 -h1,14249:19150091,13545463:0,411205,112570 -) -k1,14249:19536674,13545463:209636 -k1,14249:21620641,13545463:209637 -k1,14249:23002716,13545463:209636 -k1,14249:24642348,13545463:209636 -k1,14249:26595242,13545463:209636 -k1,14249:27420916,13545463:209636 -k1,14249:28649637,13545463:209636 -k1,14249:31931601,13545463:209636 -k1,14250:32583029,13545463:0 -) -(1,14250:6764466,14410543:25818563,505283,126483 -(1,14249:6764466,14410543:0,459977,115847 -r1,14320:9233003,14410543:2468537,575824,115847 -k1,14249:6764466,14410543:-2468537 -) -(1,14249:6764466,14410543:2468537,459977,115847 -k1,14249:6764466,14410543:3277 -h1,14249:9229726,14410543:0,411205,112570 -) -g1,14249:9605902,14410543 -g1,14249:11438944,14410543 -g1,14249:13340143,14410543 -g1,14249:16493080,14410543 -g1,14249:18167524,14410543 -g1,14249:19876703,14410543 -g1,14249:22713101,14410543 -g1,14249:23528368,14410543 -(1,14249:23528368,14410543:0,459977,115847 -r1,14320:24941769,14410543:1413401,575824,115847 -k1,14249:23528368,14410543:-1413401 -) -(1,14249:23528368,14410543:1413401,459977,115847 -k1,14249:23528368,14410543:3277 -h1,14249:24938492,14410543:0,411205,112570 -) -g1,14249:25140998,14410543 -g1,14249:28521345,14410543 -g1,14249:29372002,14410543 -(1,14249:29372002,14410543:0,459977,115847 -r1,14320:30433691,14410543:1061689,575824,115847 -k1,14249:29372002,14410543:-1061689 -) -(1,14249:29372002,14410543:1061689,459977,115847 -k1,14249:29372002,14410543:3277 -h1,14249:30430414,14410543:0,411205,112570 -) -k1,14250:32583029,14410543:1855081 -g1,14250:32583029,14410543 -) -] -g1,14250:32583029,14537026 -) -h1,14250:6630773,14537026:0,0,0 -(1,14253:6630773,15402106:25952256,513147,134348 -h1,14252:6630773,15402106:983040,0,0 -k1,14252:8459055,15402106:217407 -k1,14252:9695546,15402106:217406 -k1,14252:11883621,15402106:217407 -k1,14252:13956352,15402106:217407 -k1,14252:15042111,15402106:217407 -k1,14252:17978606,15402106:217406 -k1,14252:19215098,15402106:217407 -k1,14252:22504833,15402106:217407 -k1,14252:24927526,15402106:217406 -k1,14252:25796361,15402106:217407 -(1,14252:25796361,15402106:0,459977,115847 -r1,14320:28264898,15402106:2468537,575824,115847 -k1,14252:25796361,15402106:-2468537 -) -(1,14252:25796361,15402106:2468537,459977,115847 -k1,14252:25796361,15402106:3277 -h1,14252:28261621,15402106:0,411205,112570 -) -k1,14252:28655975,15402106:217407 -k1,14252:30254226,15402106:217407 -k1,14252:31003129,15402106:217406 -k1,14252:31576396,15402106:217407 -k1,14253:32583029,15402106:0 -) -(1,14253:6630773,16267186:25952256,513147,126483 -k1,14252:8706684,16267186:237626 -k1,14252:10210465,16267186:237625 -k1,14252:11520260,16267186:237626 -k1,14252:12705537,16267186:237626 -k1,14252:15604580,16267186:237626 -k1,14252:16493633,16267186:237625 -k1,14252:17418732,16267186:237626 -k1,14252:18675443,16267186:237626 -k1,14252:20566541,16267186:237625 -k1,14252:22791874,16267186:237626 -k1,14252:23680928,16267186:237626 -k1,14252:24274413,16267186:237625 -k1,14252:26592152,16267186:237626 -k1,14252:27489070,16267186:237626 -k1,14252:28745781,16267186:237626 -k1,14252:30372769,16267186:237625 -k1,14252:31478747,16267186:237626 -k1,14252:32583029,16267186:0 -) -(1,14253:6630773,17132266:25952256,505283,134348 -g1,14252:8267207,17132266 -g1,14252:8822296,17132266 -g1,14252:11533520,17132266 -g1,14252:14805077,17132266 -g1,14252:15655734,17132266 -g1,14252:19135695,17132266 -(1,14252:19135695,17132266:0,452978,115847 -r1,14320:21252520,17132266:2116825,568825,115847 -k1,14252:19135695,17132266:-2116825 -) -(1,14252:19135695,17132266:2116825,452978,115847 -k1,14252:19135695,17132266:3277 -h1,14252:21249243,17132266:0,411205,112570 -) -k1,14253:32583029,17132266:11278081 -g1,14253:32583029,17132266 -) -v1,14255:6630773,17817121:0,393216,0 -(1,14270:6630773,24459177:25952256,7035272,196608 -g1,14270:6630773,24459177 -g1,14270:6630773,24459177 -g1,14270:6434165,24459177 -(1,14270:6434165,24459177:0,7035272,196608 -r1,14320:32779637,24459177:26345472,7231880,196608 -k1,14270:6434165,24459177:-26345472 -) -(1,14270:6434165,24459177:26345472,7035272,196608 -[1,14270:6630773,24459177:25952256,6838664,0 -(1,14257:6630773,18051558:25952256,431045,106246 -(1,14256:6630773,18051558:0,0,0 -g1,14256:6630773,18051558 -g1,14256:6630773,18051558 -g1,14256:6303093,18051558 -(1,14256:6303093,18051558:0,0,0 -) -g1,14256:6630773,18051558 -) -g1,14257:8290543,18051558 -g1,14257:9286405,18051558 -g1,14257:13269853,18051558 -g1,14257:15593531,18051558 -g1,14257:16257439,18051558 -g1,14257:18581117,18051558 -g1,14257:20240887,18051558 -g1,14257:22564565,18051558 -h1,14257:24224335,18051558:0,0,0 -k1,14257:32583029,18051558:8358694 -g1,14257:32583029,18051558 -) -(1,14258:6630773,18736413:25952256,431045,79822 -h1,14258:6630773,18736413:0,0,0 -k1,14258:6630773,18736413:0 -h1,14258:10282267,18736413:0,0,0 -k1,14258:32583029,18736413:22300762 -g1,14258:32583029,18736413 -) -(1,14269:6630773,19552340:25952256,431045,106246 -(1,14260:6630773,19552340:0,0,0 -g1,14260:6630773,19552340 -g1,14260:6630773,19552340 -g1,14260:6303093,19552340 -(1,14260:6303093,19552340:0,0,0 -) -g1,14260:6630773,19552340 -) -g1,14269:7626635,19552340 -g1,14269:10614220,19552340 -g1,14269:11610082,19552340 -g1,14269:14597667,19552340 -h1,14269:16257437,19552340:0,0,0 -k1,14269:32583029,19552340:16325592 -g1,14269:32583029,19552340 -) -(1,14269:6630773,20237195:25952256,398014,0 -h1,14269:6630773,20237195:0,0,0 -h1,14269:7294681,20237195:0,0,0 -k1,14269:32583029,20237195:25288348 -g1,14269:32583029,20237195 -) -(1,14269:6630773,20922050:25952256,398014,106246 -h1,14269:6630773,20922050:0,0,0 -g1,14269:7626635,20922050 -g1,14269:10946174,20922050 -h1,14269:12605944,20922050:0,0,0 -k1,14269:32583028,20922050:19977084 -g1,14269:32583028,20922050 -) -(1,14269:6630773,21606905:25952256,431045,106246 -h1,14269:6630773,21606905:0,0,0 -g1,14269:7626635,21606905 -g1,14269:7958589,21606905 -g1,14269:8290543,21606905 -g1,14269:8622497,21606905 -g1,14269:8954451,21606905 -g1,14269:9286405,21606905 -g1,14269:9618359,21606905 -g1,14269:9950313,21606905 -g1,14269:10282267,21606905 -g1,14269:10614221,21606905 -g1,14269:10946175,21606905 -g1,14269:11942037,21606905 -g1,14269:13269853,21606905 -g1,14269:14265715,21606905 -g1,14269:15925485,21606905 -g1,14269:16921347,21606905 -g1,14269:17585255,21606905 -g1,14269:19576979,21606905 -g1,14269:19908933,21606905 -g1,14269:20240887,21606905 -g1,14269:20572841,21606905 -k1,14269:20572841,21606905:0 -h1,14269:22564565,21606905:0,0,0 -k1,14269:32583029,21606905:10018464 -g1,14269:32583029,21606905 -) -(1,14269:6630773,22291760:25952256,407923,106246 -h1,14269:6630773,22291760:0,0,0 -g1,14269:7626635,22291760 -g1,14269:9618359,22291760 -g1,14269:9950313,22291760 -g1,14269:10282267,22291760 -g1,14269:10614221,22291760 -g1,14269:10946175,22291760 -g1,14269:11278129,22291760 -g1,14269:11942037,22291760 -g1,14269:14265715,22291760 -g1,14269:14597669,22291760 -g1,14269:16921347,22291760 -g1,14269:17253301,22291760 -g1,14269:19576979,22291760 -g1,14269:22896519,22291760 -h1,14269:23892381,22291760:0,0,0 -k1,14269:32583029,22291760:8690648 -g1,14269:32583029,22291760 -) -(1,14269:6630773,22976615:25952256,424439,9908 -h1,14269:6630773,22976615:0,0,0 -g1,14269:7626635,22976615 -g1,14269:10946174,22976615 -g1,14269:11942036,22976615 -g1,14269:12273990,22976615 -g1,14269:14265714,22976615 -g1,14269:14597668,22976615 -g1,14269:14929622,22976615 -h1,14269:16589392,22976615:0,0,0 -k1,14269:32583029,22976615:15993637 -g1,14269:32583029,22976615 -) -(1,14269:6630773,23661470:25952256,398014,0 -h1,14269:6630773,23661470:0,0,0 -g1,14269:7626635,23661470 -k1,14269:7626635,23661470:0 -h1,14269:8622497,23661470:0,0,0 -k1,14269:32583029,23661470:23960532 -g1,14269:32583029,23661470 -) -(1,14269:6630773,24346325:25952256,431045,112852 -h1,14269:6630773,24346325:0,0,0 -g1,14269:7626635,24346325 -g1,14269:10282267,24346325 -g1,14269:12605945,24346325 -g1,14269:12937899,24346325 -g1,14269:13601807,24346325 -g1,14269:15593531,24346325 -g1,14269:17585255,24346325 -g1,14269:19245025,24346325 -g1,14269:20904795,24346325 -g1,14269:22232611,24346325 -g1,14269:23892381,24346325 -g1,14269:25220197,24346325 -g1,14269:26548013,24346325 -g1,14269:27211921,24346325 -g1,14269:27875829,24346325 -h1,14269:28207783,24346325:0,0,0 -k1,14269:32583029,24346325:4375246 -g1,14269:32583029,24346325 -) -] -) -g1,14270:32583029,24459177 -g1,14270:6630773,24459177 -g1,14270:6630773,24459177 -g1,14270:32583029,24459177 -g1,14270:32583029,24459177 -) -h1,14270:6630773,24655785:0,0,0 -v1,14274:6630773,25520865:0,393216,0 -(1,14286:6630773,32726601:25952256,7598952,0 -g1,14286:6630773,32726601 -g1,14286:6237557,32726601 -r1,14320:6368629,32726601:131072,7598952,0 -g1,14286:6567858,32726601 -g1,14286:6764466,32726601 -[1,14286:6764466,32726601:25818563,7598952,0 -(1,14275:6764466,25829163:25818563,701514,196608 -(1,14274:6764466,25829163:0,701514,196608 -r1,14320:8471973,25829163:1707507,898122,196608 -k1,14274:6764466,25829163:-1707507 -) -(1,14274:6764466,25829163:1707507,701514,196608 -) -k1,14274:8668884,25829163:196911 -k1,14274:10395102,25829163:327680 -k1,14274:12375248,25829163:196911 -k1,14274:14690283,25829163:196911 -k1,14274:16638971,25829163:196911 -k1,14274:20310601,25829163:196911 -k1,14274:21901463,25829163:196911 -k1,14274:23487082,25829163:196911 -k1,14274:25925980,25829163:196911 -k1,14274:28008362,25829163:196911 -k1,14274:28736770,25829163:196911 -k1,14274:29999952,25829163:196911 -k1,14274:31215948,25829163:196911 -k1,14274:32583029,25829163:0 -) -(1,14275:6764466,26694243:25818563,513147,134348 -k1,14274:8610309,26694243:274290 -k1,14274:11211782,26694243:274290 -k1,14274:12145364,26694243:274290 -k1,14274:14403428,26694243:274289 -k1,14274:15696803,26694243:274290 -k1,14274:17865083,26694243:274290 -k1,14274:19931783,26694243:274290 -k1,14274:21153724,26694243:274290 -k1,14274:23313485,26694243:274290 -k1,14274:24239203,26694243:274290 -k1,14274:26593606,26694243:274290 -k1,14274:27886980,26694243:274289 -k1,14274:29724304,26694243:274290 -k1,14274:30456691,26694243:274290 -k1,14274:31835263,26694243:274290 -k1,14274:32583029,26694243:0 -) -(1,14275:6764466,27559323:25818563,513147,134348 -k1,14274:10519500,27559323:272451 -k1,14274:11443379,27559323:272451 -k1,14274:12808315,27559323:272451 -k1,14274:15354865,27559323:272451 -k1,14274:19397602,27559323:272451 -k1,14274:20617704,27559323:272451 -k1,14274:23231101,27559323:272451 -k1,14274:26474954,27559323:272451 -k1,14274:27979482,27559323:272451 -k1,14274:30530620,27559323:272451 -h1,14274:31501208,27559323:0,0,0 -k1,14274:31773659,27559323:272451 -k1,14274:32583029,27559323:0 -) -(1,14275:6764466,28424403:25818563,505283,134348 -k1,14274:8484146,28424403:221527 -h1,14274:9281064,28424403:0,0,0 -k1,14274:9883356,28424403:221528 -k1,14274:11379558,28424403:221527 -k1,14274:12620170,28424403:221527 -k1,14274:14337885,28424403:221528 -k1,14274:16601514,28424403:221527 -k1,14274:18014487,28424403:221528 -k1,14274:21679276,28424403:221527 -k1,14274:23197761,28424403:221527 -(1,14274:23197761,28424403:0,459977,115847 -r1,14320:27073145,28424403:3875384,575824,115847 -k1,14274:23197761,28424403:-3875384 -) -(1,14274:23197761,28424403:3875384,459977,115847 -k1,14274:23197761,28424403:3277 -h1,14274:27069868,28424403:0,411205,112570 -) -k1,14274:27294673,28424403:221528 -k1,14274:28707645,28424403:221527 -(1,14274:28707645,28424403:0,459977,115847 -r1,14320:32583029,28424403:3875384,575824,115847 -k1,14274:28707645,28424403:-3875384 -) -(1,14274:28707645,28424403:3875384,459977,115847 -k1,14274:28707645,28424403:3277 -h1,14274:32579752,28424403:0,411205,112570 -) -k1,14274:32583029,28424403:0 -) -(1,14275:6764466,29289483:25818563,513147,134348 -k1,14274:9523082,29289483:138487 -k1,14274:10680654,29289483:138487 -k1,14274:12472615,29289483:138488 -k1,14274:15045704,29289483:138426 -k1,14274:16749847,29289483:138488 -k1,14274:19710314,29289483:138487 -k1,14274:20920970,29289483:138487 -k1,14274:22078542,29289483:138487 -k1,14274:22904502,29289483:138487 -k1,14274:25030696,29289483:138487 -k1,14274:27459012,29289483:138488 -k1,14274:28589059,29289483:138487 -k1,14274:29793817,29289483:138487 -k1,14274:32583029,29289483:0 -) -(1,14275:6764466,30154563:25818563,513147,134348 -g1,14274:8195117,30154563 -g1,14274:9498628,30154563 -g1,14274:10790342,30154563 -(1,14274:10790342,30154563:0,452978,115847 -r1,14320:12555455,30154563:1765113,568825,115847 -k1,14274:10790342,30154563:-1765113 -) -(1,14274:10790342,30154563:1765113,452978,115847 -k1,14274:10790342,30154563:3277 -h1,14274:12552178,30154563:0,411205,112570 -) -g1,14274:12754684,30154563 -g1,14274:13605341,30154563 -g1,14274:16173041,30154563 -g1,14274:16838231,30154563 -g1,14274:18169267,30154563 -g1,14274:21322204,30154563 -g1,14274:23264691,30154563 -g1,14274:26099123,30154563 -g1,14274:27317437,30154563 -g1,14274:28689105,30154563 -k1,14275:32583029,30154563:1551668 -g1,14275:32583029,30154563 -) -v1,14277:6764466,30839418:0,393216,0 -(1,14283:6764466,32529993:25818563,2083791,196608 -g1,14283:6764466,32529993 -g1,14283:6764466,32529993 -g1,14283:6567858,32529993 -(1,14283:6567858,32529993:0,2083791,196608 -r1,14320:32779637,32529993:26211779,2280399,196608 -k1,14283:6567857,32529993:-26211780 -) -(1,14283:6567858,32529993:26211779,2083791,196608 -[1,14283:6764466,32529993:25818563,1887183,0 -(1,14279:6764466,31073855:25818563,431045,112852 -(1,14278:6764466,31073855:0,0,0 -g1,14278:6764466,31073855 -g1,14278:6764466,31073855 -g1,14278:6436786,31073855 -(1,14278:6436786,31073855:0,0,0 -) -g1,14278:6764466,31073855 -) -g1,14279:8424236,31073855 -g1,14279:9420098,31073855 -g1,14279:13403546,31073855 -g1,14279:15727224,31073855 -g1,14279:16391132,31073855 -g1,14279:21370442,31073855 -h1,14279:23694120,31073855:0,0,0 -k1,14279:32583029,31073855:8888909 -g1,14279:32583029,31073855 -) -(1,14280:6764466,31758710:25818563,431045,79822 -h1,14280:6764466,31758710:0,0,0 -k1,14280:6764466,31758710:0 -h1,14280:10415960,31758710:0,0,0 -k1,14280:32583028,31758710:22167068 -g1,14280:32583028,31758710 -) -(1,14281:6764466,32443565:25818563,431045,86428 -h1,14281:6764466,32443565:0,0,0 -g1,14281:12075729,32443565 -h1,14281:13735499,32443565:0,0,0 -k1,14281:32583029,32443565:18847530 -g1,14281:32583029,32443565 -) -] -) -g1,14283:32583029,32529993 -g1,14283:6764466,32529993 -g1,14283:6764466,32529993 -g1,14283:32583029,32529993 -g1,14283:32583029,32529993 -) -h1,14283:6764466,32726601:0,0,0 -] -g1,14286:32583029,32726601 -) -h1,14286:6630773,32726601:0,0,0 -v1,14289:6630773,33591681:0,393216,0 -(1,14290:6630773,38359727:25952256,5161262,0 -g1,14290:6630773,38359727 -g1,14290:6237557,38359727 -r1,14320:6368629,38359727:131072,5161262,0 -g1,14290:6567858,38359727 -g1,14290:6764466,38359727 -[1,14290:6764466,38359727:25818563,5161262,0 -(1,14290:6764466,33899979:25818563,701514,196608 -(1,14289:6764466,33899979:0,701514,196608 -r1,14320:7761522,33899979:997056,898122,196608 -k1,14289:6764466,33899979:-997056 -) -(1,14289:6764466,33899979:997056,701514,196608 -) -k1,14289:7965805,33899979:204283 -k1,14289:8293485,33899979:327680 -k1,14289:10895731,33899979:204284 -(1,14289:10895731,33899979:0,452978,115847 -r1,14320:13715980,33899979:2820249,568825,115847 -k1,14289:10895731,33899979:-2820249 -) -(1,14289:10895731,33899979:2820249,452978,115847 -k1,14289:10895731,33899979:3277 -h1,14289:13712703,33899979:0,411205,112570 -) -k1,14289:13920263,33899979:204283 -k1,14289:15797681,33899979:204284 -k1,14289:16772667,33899979:204283 -k1,14289:20203944,33899979:204284 -k1,14289:21643581,33899979:204283 -k1,14289:23545903,33899979:204284 -k1,14289:24769271,33899979:204283 -k1,14289:26908178,33899979:204284 -k1,14289:27643958,33899979:204283 -k1,14289:29425694,33899979:204284 -k1,14289:30391505,33899979:204283 -k1,14290:32583029,33899979:0 -) -(1,14290:6764466,34765059:25818563,505283,134348 -k1,14289:8032051,34765059:171823 -k1,14289:13067302,34765059:171824 -k1,14289:13925287,34765059:171823 -k1,14289:15116195,34765059:171823 -k1,14289:18608728,34765059:171824 -k1,14289:21989194,34765059:171823 -k1,14289:25207131,34765059:171824 -k1,14289:26370514,34765059:171823 -k1,14289:28055563,34765059:171823 -k1,14289:28913549,34765059:171824 -k1,14289:30104457,34765059:171823 -k1,14289:32583029,34765059:0 -) -(1,14290:6764466,35630139:25818563,513147,134348 -k1,14289:8976068,35630139:218652 -k1,14289:10142370,35630139:218651 -k1,14289:11380107,35630139:218652 -k1,14289:14779877,35630139:218652 -k1,14289:18800272,35630139:218652 -k1,14289:21731458,35630139:218651 -k1,14289:22897761,35630139:218652 -k1,14289:25051036,35630139:218652 -k1,14289:26288773,35630139:218652 -k1,14289:29144593,35630139:218651 -k1,14289:31350952,35630139:218652 -k1,14289:32583029,35630139:0 -) -(1,14290:6764466,36495219:25818563,505283,134348 -k1,14289:9267832,36495219:224679 -h1,14289:10636879,36495219:0,0,0 -k1,14289:10861558,36495219:224679 -k1,14289:11895608,36495219:224680 -k1,14289:13618440,36495219:224679 -h1,14289:14813817,36495219:0,0,0 -k1,14289:15038496,36495219:224679 -k1,14289:15949337,36495219:224679 -k1,14289:16944719,36495219:224679 -k1,14289:20211579,36495219:224679 -k1,14289:21817103,36495219:224680 -k1,14289:23146064,36495219:224679 -k1,14289:26684899,36495219:224679 -k1,14289:29680440,36495219:224679 -k1,14290:32583029,36495219:0 -) -(1,14290:6764466,37360299:25818563,513147,134348 -k1,14289:8256720,37360299:224788 -k1,14289:10080587,37360299:224789 -k1,14289:10988260,37360299:224788 -k1,14289:12679745,37360299:224789 -k1,14289:14299139,37360299:224788 -k1,14289:15543012,37360299:224788 -k1,14289:17103425,37360299:224789 -k1,14289:17987505,37360299:224788 -k1,14289:20468698,37360299:224788 -k1,14289:23205482,37360299:224789 -k1,14289:25908842,37360299:224788 -k1,14289:28144276,37360299:224789 -k1,14289:29316715,37360299:224788 -k1,14289:32583029,37360299:0 -) -(1,14290:6764466,38225379:25818563,513147,134348 -g1,14289:10009808,38225379 -g1,14289:10970565,38225379 -g1,14289:13104417,38225379 -g1,14289:17131604,38225379 -g1,14289:18981030,38225379 -g1,14289:21866580,38225379 -g1,14289:24183277,38225379 -k1,14290:32583029,38225379:6029315 -g1,14290:32583029,38225379 -) -] -g1,14290:32583029,38359727 -) -h1,14290:6630773,38359727:0,0,0 -(1,14296:6630773,39224807:25952256,505283,134348 -h1,14295:6630773,39224807:983040,0,0 -k1,14295:10280560,39224807:268785 -(1,14295:10280560,39224807:0,452978,115847 -r1,14320:13100809,39224807:2820249,568825,115847 -k1,14295:10280560,39224807:-2820249 -) -(1,14295:10280560,39224807:2820249,452978,115847 -k1,14295:10280560,39224807:3277 -h1,14295:13097532,39224807:0,411205,112570 -) -k1,14295:13369594,39224807:268785 -k1,14295:15151605,39224807:268785 -k1,14295:18100813,39224807:268785 -k1,14295:19763549,39224807:268785 -(1,14295:19763549,39224807:0,452978,115847 -r1,14320:21528662,39224807:1765113,568825,115847 -k1,14295:19763549,39224807:-1765113 -) -(1,14295:19763549,39224807:1765113,452978,115847 -k1,14295:19763549,39224807:3277 -h1,14295:21525385,39224807:0,411205,112570 -) -k1,14295:21797447,39224807:268785 -k1,14295:22956212,39224807:268786 -(1,14295:22956212,39224807:0,452978,115847 -r1,14320:25424749,39224807:2468537,568825,115847 -k1,14295:22956212,39224807:-2468537 -) -(1,14295:22956212,39224807:2468537,452978,115847 -k1,14295:22956212,39224807:3277 -h1,14295:25421472,39224807:0,411205,112570 -) -k1,14295:25900628,39224807:268785 -k1,14295:27779633,39224807:268785 -k1,14295:28793562,39224807:268785 -k1,14295:30081432,39224807:268785 -k1,14295:31931601,39224807:268785 -k1,14295:32583029,39224807:0 -) -(1,14296:6630773,40089887:25952256,513147,134348 -k1,14295:9563415,40089887:172266 -k1,14295:11853149,40089887:172266 -k1,14295:14517094,40089887:172266 -k1,14295:15880805,40089887:172266 -k1,14295:17873661,40089887:172266 -k1,14295:19202637,40089887:172266 -k1,14295:20441174,40089887:172266 -k1,14295:21272732,40089887:172266 -k1,14295:21800858,40089887:172266 -k1,14295:23865804,40089887:172266 -k1,14295:24724232,40089887:172266 -k1,14295:26972023,40089887:172266 -k1,14295:29173284,40089887:172266 -k1,14295:31128785,40089887:172266 -k1,14296:32583029,40089887:0 -) -(1,14296:6630773,40954967:25952256,505283,134348 -k1,14295:8902251,40954967:216269 -k1,14295:11350020,40954967:216268 -k1,14295:13884297,40954967:216269 -k1,14295:15906083,40954967:216269 -k1,14295:17141437,40954967:216269 -k1,14295:21441909,40954967:216268 -k1,14295:24590914,40954967:216269 -k1,14295:25338680,40954967:216269 -k1,14295:28094469,40954967:216269 -k1,14295:29502182,40954967:216268 -k1,14295:30334489,40954967:216269 -k1,14295:32583029,40954967:0 -) -(1,14296:6630773,41820047:25952256,513147,134348 -k1,14295:7471146,41820047:224335 -k1,14295:9447258,41820047:224335 -k1,14295:11368974,41820047:224334 -k1,14295:14077124,41820047:224335 -k1,14295:14952887,41820047:224335 -k1,14295:16792029,41820047:224335 -k1,14295:18512550,41820047:224334 -k1,14295:20021391,41820047:224335 -k1,14295:20777223,41820047:224335 -k1,14295:23302527,41820047:224335 -k1,14295:24416840,41820047:224334 -k1,14295:27426455,41820047:224335 -k1,14295:30185067,41820047:224335 -k1,14296:32583029,41820047:0 -) -(1,14296:6630773,42685127:25952256,513147,134348 -(1,14295:6630773,42685127:0,452978,115847 -r1,14320:8747598,42685127:2116825,568825,115847 -k1,14295:6630773,42685127:-2116825 -) -(1,14295:6630773,42685127:2116825,452978,115847 -k1,14295:6630773,42685127:3277 -h1,14295:8744321,42685127:0,411205,112570 -) -k1,14295:8896006,42685127:148408 -k1,14295:12376920,42685127:148408 -k1,14295:15280462,42685127:148408 -k1,14295:18260025,42685127:148408 -k1,14295:19067725,42685127:148408 -k1,14295:21333602,42685127:148409 -k1,14295:23800018,42685127:148408 -k1,14295:25441992,42685127:148408 -k1,14295:26276562,42685127:148408 -k1,14295:27444055,42685127:148408 -k1,14295:30423618,42685127:148408 -k1,14295:32583029,42685127:0 -) -(1,14296:6630773,43550207:25952256,513147,134348 -k1,14295:10795586,43550207:261489 -k1,14295:11716366,43550207:261488 -k1,14295:14740198,43550207:261489 -k1,14295:17457321,43550207:261489 -k1,14295:18401694,43550207:261488 -k1,14295:20548654,43550207:261489 -k1,14295:23651783,43550207:261488 -k1,14295:24564700,43550207:261489 -k1,14295:26690688,43550207:261489 -k1,14295:27568214,43550207:261488 -k1,14295:30500950,43550207:261489 -k1,14296:32583029,43550207:0 -) -(1,14296:6630773,44415287:25952256,513147,134348 -k1,14295:8371034,44415287:225724 -k1,14295:10241712,44415287:225724 -k1,14295:12402059,44415287:225724 -k1,14295:12983642,44415287:225723 -k1,14295:15370743,44415287:225724 -k1,14295:18050790,44415287:225724 -(1,14295:18050790,44415287:0,452978,115847 -r1,14320:20167615,44415287:2116825,568825,115847 -k1,14295:18050790,44415287:-2116825 -) -(1,14295:18050790,44415287:2116825,452978,115847 -k1,14295:18050790,44415287:3277 -h1,14295:20164338,44415287:0,411205,112570 -) -k1,14295:20393339,44415287:225724 -k1,14295:21150560,44415287:225724 -k1,14295:22889510,44415287:225724 -k1,14295:23766662,44415287:225724 -k1,14295:26208813,44415287:225723 -k1,14295:27637778,44415287:225724 -k1,14295:29851209,44415287:225724 -k1,14295:31812326,44415287:225724 -k1,14295:32583029,44415287:0 -) -(1,14296:6630773,45280367:25952256,505283,134348 -g1,14295:10019639,45280367 -g1,14295:13032329,45280367 -g1,14295:15957856,45280367 -g1,14295:18349264,45280367 -h1,14295:19319852,45280367:0,0,0 -k1,14296:32583029,45280367:13003655 -g1,14296:32583029,45280367 -) -] -(1,14320:32583029,45706769:0,0,0 -g1,14320:32583029,45706769 -) -) -] -(1,14320:6630773,47279633:25952256,0,0 -h1,14320:6630773,47279633:25952256,0,0 -) -] -(1,14320:4262630,4025873:0,0,0 -[1,14320:-473656,4025873:0,0,0 -(1,14320:-473656,-710413:0,0,0 -(1,14320:-473656,-710413:0,0,0 -g1,14320:-473656,-710413 -) -g1,14320:-473656,-710413 +[1,14318:3078558,4812305:0,0,0 +(1,14318:3078558,49800853:0,16384,2228224 +g1,14318:29030814,49800853 +g1,14318:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14318:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14318:37855564,49800853:1179648,16384,0 +) +) +k1,14318:3078556,49800853:-34777008 +) +] +g1,14318:6630773,4812305 +k1,14318:19575446,4812305:11749296 +g1,14318:21198117,4812305 +g1,14318:21985204,4812305 +g1,14318:24539797,4812305 +g1,14318:25949476,4812305 +g1,14318:28728857,4812305 +g1,14318:29852144,4812305 +) +) +] +[1,14318:6630773,45706769:25952256,40108032,0 +(1,14318:6630773,45706769:25952256,40108032,0 +(1,14318:6630773,45706769:0,0,0 +g1,14318:6630773,45706769 +) +[1,14318:6630773,45706769:25952256,40108032,0 +v1,14243:6630773,6254097:0,393216,0 +(1,14243:6630773,12211298:25952256,6350417,196608 +g1,14243:6630773,12211298 +g1,14243:6630773,12211298 +g1,14243:6434165,12211298 +(1,14243:6434165,12211298:0,6350417,196608 +r1,14318:32779637,12211298:26345472,6547025,196608 +k1,14243:6434165,12211298:-26345472 +) +(1,14243:6434165,12211298:26345472,6350417,196608 +[1,14243:6630773,12211298:25952256,6153809,0 +(1,14231:6630773,6488534:25952256,431045,79822 +h1,14231:6630773,6488534:0,0,0 +k1,14231:6630773,6488534:0 +h1,14231:10282267,6488534:0,0,0 +k1,14231:32583029,6488534:22300762 +g1,14231:32583029,6488534 +) +(1,14242:6630773,7304461:25952256,431045,106246 +(1,14233:6630773,7304461:0,0,0 +g1,14233:6630773,7304461 +g1,14233:6630773,7304461 +g1,14233:6303093,7304461 +(1,14233:6303093,7304461:0,0,0 +) +g1,14233:6630773,7304461 +) +g1,14242:7626635,7304461 +g1,14242:10614220,7304461 +g1,14242:11610082,7304461 +g1,14242:14597667,7304461 +h1,14242:16257437,7304461:0,0,0 +k1,14242:32583029,7304461:16325592 +g1,14242:32583029,7304461 +) +(1,14242:6630773,7989316:25952256,398014,0 +h1,14242:6630773,7989316:0,0,0 +h1,14242:7294681,7989316:0,0,0 +k1,14242:32583029,7989316:25288348 +g1,14242:32583029,7989316 +) +(1,14242:6630773,8674171:25952256,424439,112852 +h1,14242:6630773,8674171:0,0,0 +g1,14242:7626635,8674171 +g1,14242:10946174,8674171 +g1,14242:14929621,8674171 +g1,14242:15593529,8674171 +h1,14242:16257437,8674171:0,0,0 +k1,14242:32583029,8674171:16325592 +g1,14242:32583029,8674171 +) +(1,14242:6630773,9359026:25952256,431045,106246 +h1,14242:6630773,9359026:0,0,0 +g1,14242:7626635,9359026 +g1,14242:7958589,9359026 +g1,14242:8290543,9359026 +g1,14242:8622497,9359026 +g1,14242:8954451,9359026 +g1,14242:9286405,9359026 +g1,14242:9618359,9359026 +g1,14242:9950313,9359026 +g1,14242:10282267,9359026 +g1,14242:10614221,9359026 +g1,14242:10946175,9359026 +g1,14242:11942037,9359026 +g1,14242:13269853,9359026 +g1,14242:14265715,9359026 +g1,14242:15925485,9359026 +g1,14242:16921347,9359026 +g1,14242:17585255,9359026 +g1,14242:19576979,9359026 +g1,14242:19908933,9359026 +g1,14242:20240887,9359026 +g1,14242:20572841,9359026 +k1,14242:20572841,9359026:0 +h1,14242:22564565,9359026:0,0,0 +k1,14242:32583029,9359026:10018464 +g1,14242:32583029,9359026 +) +(1,14242:6630773,10043881:25952256,407923,106246 +h1,14242:6630773,10043881:0,0,0 +g1,14242:7626635,10043881 +g1,14242:9618359,10043881 +g1,14242:9950313,10043881 +g1,14242:10282267,10043881 +g1,14242:10614221,10043881 +g1,14242:10946175,10043881 +g1,14242:11278129,10043881 +g1,14242:11942037,10043881 +g1,14242:14265715,10043881 +g1,14242:16921347,10043881 +g1,14242:17253301,10043881 +g1,14242:19576979,10043881 +g1,14242:20240887,10043881 +g1,14242:22896519,10043881 +h1,14242:23892381,10043881:0,0,0 +k1,14242:32583029,10043881:8690648 +g1,14242:32583029,10043881 +) +(1,14242:6630773,10728736:25952256,424439,9908 +h1,14242:6630773,10728736:0,0,0 +g1,14242:7626635,10728736 +g1,14242:10946174,10728736 +g1,14242:11942036,10728736 +g1,14242:14265714,10728736 +h1,14242:16589392,10728736:0,0,0 +k1,14242:32583029,10728736:15993637 +g1,14242:32583029,10728736 +) +(1,14242:6630773,11413591:25952256,398014,0 +h1,14242:6630773,11413591:0,0,0 +g1,14242:7626635,11413591 +k1,14242:7626635,11413591:0 +h1,14242:8622497,11413591:0,0,0 +k1,14242:32583029,11413591:23960532 +g1,14242:32583029,11413591 +) +(1,14242:6630773,12098446:25952256,431045,112852 +h1,14242:6630773,12098446:0,0,0 +g1,14242:7626635,12098446 +g1,14242:10282267,12098446 +g1,14242:12605945,12098446 +g1,14242:12937899,12098446 +g1,14242:13601807,12098446 +g1,14242:15593531,12098446 +g1,14242:17585255,12098446 +g1,14242:19245025,12098446 +g1,14242:20904795,12098446 +g1,14242:22232611,12098446 +g1,14242:23892381,12098446 +g1,14242:25220197,12098446 +g1,14242:26548013,12098446 +g1,14242:27211921,12098446 +g1,14242:27875829,12098446 +h1,14242:28207783,12098446:0,0,0 +k1,14242:32583029,12098446:4375246 +g1,14242:32583029,12098446 +) +] +) +g1,14243:32583029,12211298 +g1,14243:6630773,12211298 +g1,14243:6630773,12211298 +g1,14243:32583029,12211298 +g1,14243:32583029,12211298 +) +h1,14243:6630773,12407906:0,0,0 +v1,14247:6630773,13272986:0,393216,0 +(1,14248:6630773,14537026:25952256,1657256,0 +g1,14248:6630773,14537026 +g1,14248:6237557,14537026 +r1,14318:6368629,14537026:131072,1657256,0 +g1,14248:6567858,14537026 +g1,14248:6764466,14537026 +[1,14248:6764466,14537026:25818563,1657256,0 +(1,14248:6764466,13545463:25818563,665693,196608 +(1,14247:6764466,13545463:0,665693,196608 +r1,14318:7868133,13545463:1103667,862301,196608 +k1,14247:6764466,13545463:-1103667 +) +(1,14247:6764466,13545463:1103667,665693,196608 +) +k1,14247:8077769,13545463:209636 +k1,14247:9803987,13545463:327680 +k1,14247:11550442,13545463:209636 +(1,14247:11550442,13545463:0,459977,115847 +r1,14318:14370691,13545463:2820249,575824,115847 +k1,14247:11550442,13545463:-2820249 +) +(1,14247:11550442,13545463:2820249,459977,115847 +k1,14247:11550442,13545463:3277 +h1,14247:14367414,13545463:0,411205,112570 +) +k1,14247:14580327,13545463:209636 +k1,14247:15981408,13545463:209636 +(1,14247:15981408,13545463:0,459977,115847 +r1,14318:19153368,13545463:3171960,575824,115847 +k1,14247:15981408,13545463:-3171960 +) +(1,14247:15981408,13545463:3171960,459977,115847 +k1,14247:15981408,13545463:3277 +h1,14247:19150091,13545463:0,411205,112570 +) +k1,14247:19536674,13545463:209636 +k1,14247:21620641,13545463:209637 +k1,14247:23002716,13545463:209636 +k1,14247:24642348,13545463:209636 +k1,14247:26595242,13545463:209636 +k1,14247:27420916,13545463:209636 +k1,14247:28649637,13545463:209636 +k1,14247:31931601,13545463:209636 +k1,14248:32583029,13545463:0 +) +(1,14248:6764466,14410543:25818563,505283,126483 +(1,14247:6764466,14410543:0,459977,115847 +r1,14318:9233003,14410543:2468537,575824,115847 +k1,14247:6764466,14410543:-2468537 +) +(1,14247:6764466,14410543:2468537,459977,115847 +k1,14247:6764466,14410543:3277 +h1,14247:9229726,14410543:0,411205,112570 +) +g1,14247:9605902,14410543 +g1,14247:11438944,14410543 +g1,14247:13340143,14410543 +g1,14247:16493080,14410543 +g1,14247:18167524,14410543 +g1,14247:19876703,14410543 +g1,14247:22713101,14410543 +g1,14247:23528368,14410543 +(1,14247:23528368,14410543:0,459977,115847 +r1,14318:24941769,14410543:1413401,575824,115847 +k1,14247:23528368,14410543:-1413401 +) +(1,14247:23528368,14410543:1413401,459977,115847 +k1,14247:23528368,14410543:3277 +h1,14247:24938492,14410543:0,411205,112570 +) +g1,14247:25140998,14410543 +g1,14247:28521345,14410543 +g1,14247:29372002,14410543 +(1,14247:29372002,14410543:0,459977,115847 +r1,14318:30433691,14410543:1061689,575824,115847 +k1,14247:29372002,14410543:-1061689 +) +(1,14247:29372002,14410543:1061689,459977,115847 +k1,14247:29372002,14410543:3277 +h1,14247:30430414,14410543:0,411205,112570 +) +k1,14248:32583029,14410543:1855081 +g1,14248:32583029,14410543 +) +] +g1,14248:32583029,14537026 +) +h1,14248:6630773,14537026:0,0,0 +(1,14251:6630773,15402106:25952256,513147,134348 +h1,14250:6630773,15402106:983040,0,0 +k1,14250:8459055,15402106:217407 +k1,14250:9695546,15402106:217406 +k1,14250:11883621,15402106:217407 +k1,14250:13956352,15402106:217407 +k1,14250:15042111,15402106:217407 +k1,14250:17978606,15402106:217406 +k1,14250:19215098,15402106:217407 +k1,14250:22504833,15402106:217407 +k1,14250:24927526,15402106:217406 +k1,14250:25796361,15402106:217407 +(1,14250:25796361,15402106:0,459977,115847 +r1,14318:28264898,15402106:2468537,575824,115847 +k1,14250:25796361,15402106:-2468537 +) +(1,14250:25796361,15402106:2468537,459977,115847 +k1,14250:25796361,15402106:3277 +h1,14250:28261621,15402106:0,411205,112570 +) +k1,14250:28655975,15402106:217407 +k1,14250:30254226,15402106:217407 +k1,14250:31003129,15402106:217406 +k1,14250:31576396,15402106:217407 +k1,14251:32583029,15402106:0 +) +(1,14251:6630773,16267186:25952256,513147,126483 +k1,14250:8676036,16267186:206978 +k1,14250:10149170,16267186:206978 +k1,14250:11601987,16267186:206978 +k1,14250:12756616,16267186:206978 +k1,14250:15798681,16267186:206978 +k1,14250:16657087,16267186:206978 +k1,14250:17551538,16267186:206978 +k1,14250:18777601,16267186:206978 +k1,14250:20638052,16267186:206978 +k1,14250:22832737,16267186:206978 +k1,14250:23691143,16267186:206978 +k1,14250:24253981,16267186:206978 +k1,14250:26541072,16267186:206978 +k1,14250:27407342,16267186:206978 +k1,14250:28633405,16267186:206978 +k1,14250:30403417,16267186:206978 +k1,14250:31478747,16267186:206978 +k1,14250:32583029,16267186:0 +) +(1,14251:6630773,17132266:25952256,505283,134348 +g1,14250:8267207,17132266 +g1,14250:8822296,17132266 +g1,14250:11533520,17132266 +g1,14250:14805077,17132266 +g1,14250:15655734,17132266 +g1,14250:19135695,17132266 +(1,14250:19135695,17132266:0,452978,115847 +r1,14318:21252520,17132266:2116825,568825,115847 +k1,14250:19135695,17132266:-2116825 +) +(1,14250:19135695,17132266:2116825,452978,115847 +k1,14250:19135695,17132266:3277 +h1,14250:21249243,17132266:0,411205,112570 +) +k1,14251:32583029,17132266:11278081 +g1,14251:32583029,17132266 +) +v1,14253:6630773,17817121:0,393216,0 +(1,14268:6630773,24459177:25952256,7035272,196608 +g1,14268:6630773,24459177 +g1,14268:6630773,24459177 +g1,14268:6434165,24459177 +(1,14268:6434165,24459177:0,7035272,196608 +r1,14318:32779637,24459177:26345472,7231880,196608 +k1,14268:6434165,24459177:-26345472 +) +(1,14268:6434165,24459177:26345472,7035272,196608 +[1,14268:6630773,24459177:25952256,6838664,0 +(1,14255:6630773,18051558:25952256,431045,106246 +(1,14254:6630773,18051558:0,0,0 +g1,14254:6630773,18051558 +g1,14254:6630773,18051558 +g1,14254:6303093,18051558 +(1,14254:6303093,18051558:0,0,0 +) +g1,14254:6630773,18051558 +) +g1,14255:8290543,18051558 +g1,14255:9286405,18051558 +g1,14255:13269853,18051558 +g1,14255:15593531,18051558 +g1,14255:16257439,18051558 +g1,14255:18581117,18051558 +g1,14255:20240887,18051558 +g1,14255:22564565,18051558 +h1,14255:24224335,18051558:0,0,0 +k1,14255:32583029,18051558:8358694 +g1,14255:32583029,18051558 +) +(1,14256:6630773,18736413:25952256,431045,79822 +h1,14256:6630773,18736413:0,0,0 +k1,14256:6630773,18736413:0 +h1,14256:10282267,18736413:0,0,0 +k1,14256:32583029,18736413:22300762 +g1,14256:32583029,18736413 +) +(1,14267:6630773,19552340:25952256,431045,106246 +(1,14258:6630773,19552340:0,0,0 +g1,14258:6630773,19552340 +g1,14258:6630773,19552340 +g1,14258:6303093,19552340 +(1,14258:6303093,19552340:0,0,0 +) +g1,14258:6630773,19552340 +) +g1,14267:7626635,19552340 +g1,14267:10614220,19552340 +g1,14267:11610082,19552340 +g1,14267:14597667,19552340 +h1,14267:16257437,19552340:0,0,0 +k1,14267:32583029,19552340:16325592 +g1,14267:32583029,19552340 +) +(1,14267:6630773,20237195:25952256,398014,0 +h1,14267:6630773,20237195:0,0,0 +h1,14267:7294681,20237195:0,0,0 +k1,14267:32583029,20237195:25288348 +g1,14267:32583029,20237195 +) +(1,14267:6630773,20922050:25952256,398014,106246 +h1,14267:6630773,20922050:0,0,0 +g1,14267:7626635,20922050 +g1,14267:10946174,20922050 +h1,14267:12605944,20922050:0,0,0 +k1,14267:32583028,20922050:19977084 +g1,14267:32583028,20922050 +) +(1,14267:6630773,21606905:25952256,431045,106246 +h1,14267:6630773,21606905:0,0,0 +g1,14267:7626635,21606905 +g1,14267:7958589,21606905 +g1,14267:8290543,21606905 +g1,14267:8622497,21606905 +g1,14267:8954451,21606905 +g1,14267:9286405,21606905 +g1,14267:9618359,21606905 +g1,14267:9950313,21606905 +g1,14267:10282267,21606905 +g1,14267:10614221,21606905 +g1,14267:10946175,21606905 +g1,14267:11942037,21606905 +g1,14267:13269853,21606905 +g1,14267:14265715,21606905 +g1,14267:15925485,21606905 +g1,14267:16921347,21606905 +g1,14267:17585255,21606905 +g1,14267:19576979,21606905 +g1,14267:19908933,21606905 +g1,14267:20240887,21606905 +g1,14267:20572841,21606905 +k1,14267:20572841,21606905:0 +h1,14267:22564565,21606905:0,0,0 +k1,14267:32583029,21606905:10018464 +g1,14267:32583029,21606905 +) +(1,14267:6630773,22291760:25952256,407923,106246 +h1,14267:6630773,22291760:0,0,0 +g1,14267:7626635,22291760 +g1,14267:9618359,22291760 +g1,14267:9950313,22291760 +g1,14267:10282267,22291760 +g1,14267:10614221,22291760 +g1,14267:10946175,22291760 +g1,14267:11278129,22291760 +g1,14267:11942037,22291760 +g1,14267:14265715,22291760 +g1,14267:14597669,22291760 +g1,14267:16921347,22291760 +g1,14267:17253301,22291760 +g1,14267:19576979,22291760 +g1,14267:22896519,22291760 +h1,14267:23892381,22291760:0,0,0 +k1,14267:32583029,22291760:8690648 +g1,14267:32583029,22291760 +) +(1,14267:6630773,22976615:25952256,424439,9908 +h1,14267:6630773,22976615:0,0,0 +g1,14267:7626635,22976615 +g1,14267:10946174,22976615 +g1,14267:11942036,22976615 +g1,14267:12273990,22976615 +g1,14267:14265714,22976615 +g1,14267:14597668,22976615 +g1,14267:14929622,22976615 +h1,14267:16589392,22976615:0,0,0 +k1,14267:32583029,22976615:15993637 +g1,14267:32583029,22976615 +) +(1,14267:6630773,23661470:25952256,398014,0 +h1,14267:6630773,23661470:0,0,0 +g1,14267:7626635,23661470 +k1,14267:7626635,23661470:0 +h1,14267:8622497,23661470:0,0,0 +k1,14267:32583029,23661470:23960532 +g1,14267:32583029,23661470 +) +(1,14267:6630773,24346325:25952256,431045,112852 +h1,14267:6630773,24346325:0,0,0 +g1,14267:7626635,24346325 +g1,14267:10282267,24346325 +g1,14267:12605945,24346325 +g1,14267:12937899,24346325 +g1,14267:13601807,24346325 +g1,14267:15593531,24346325 +g1,14267:17585255,24346325 +g1,14267:19245025,24346325 +g1,14267:20904795,24346325 +g1,14267:22232611,24346325 +g1,14267:23892381,24346325 +g1,14267:25220197,24346325 +g1,14267:26548013,24346325 +g1,14267:27211921,24346325 +g1,14267:27875829,24346325 +h1,14267:28207783,24346325:0,0,0 +k1,14267:32583029,24346325:4375246 +g1,14267:32583029,24346325 +) +] +) +g1,14268:32583029,24459177 +g1,14268:6630773,24459177 +g1,14268:6630773,24459177 +g1,14268:32583029,24459177 +g1,14268:32583029,24459177 +) +h1,14268:6630773,24655785:0,0,0 +v1,14272:6630773,25520865:0,393216,0 +(1,14284:6630773,32726601:25952256,7598952,0 +g1,14284:6630773,32726601 +g1,14284:6237557,32726601 +r1,14318:6368629,32726601:131072,7598952,0 +g1,14284:6567858,32726601 +g1,14284:6764466,32726601 +[1,14284:6764466,32726601:25818563,7598952,0 +(1,14273:6764466,25829163:25818563,701514,196608 +(1,14272:6764466,25829163:0,701514,196608 +r1,14318:8471973,25829163:1707507,898122,196608 +k1,14272:6764466,25829163:-1707507 +) +(1,14272:6764466,25829163:1707507,701514,196608 +) +k1,14272:8668884,25829163:196911 +k1,14272:10395102,25829163:327680 +k1,14272:12375248,25829163:196911 +k1,14272:14690283,25829163:196911 +k1,14272:16638971,25829163:196911 +k1,14272:20310601,25829163:196911 +k1,14272:21901463,25829163:196911 +k1,14272:23487082,25829163:196911 +k1,14272:25925980,25829163:196911 +k1,14272:28008362,25829163:196911 +k1,14272:28736770,25829163:196911 +k1,14272:29999952,25829163:196911 +k1,14272:31215948,25829163:196911 +k1,14272:32583029,25829163:0 +) +(1,14273:6764466,26694243:25818563,513147,134348 +k1,14272:8610309,26694243:274290 +k1,14272:11211782,26694243:274290 +k1,14272:12145364,26694243:274290 +k1,14272:14403428,26694243:274289 +k1,14272:15696803,26694243:274290 +k1,14272:17865083,26694243:274290 +k1,14272:19931783,26694243:274290 +k1,14272:21153724,26694243:274290 +k1,14272:23313485,26694243:274290 +k1,14272:24239203,26694243:274290 +k1,14272:26593606,26694243:274290 +k1,14272:27886980,26694243:274289 +k1,14272:29724304,26694243:274290 +k1,14272:30456691,26694243:274290 +k1,14272:31835263,26694243:274290 +k1,14272:32583029,26694243:0 +) +(1,14273:6764466,27559323:25818563,513147,134348 +k1,14272:10519500,27559323:272451 +k1,14272:11443379,27559323:272451 +k1,14272:12808315,27559323:272451 +k1,14272:15354865,27559323:272451 +k1,14272:19397602,27559323:272451 +k1,14272:20617704,27559323:272451 +k1,14272:23231101,27559323:272451 +k1,14272:26474954,27559323:272451 +k1,14272:27979482,27559323:272451 +k1,14272:30530620,27559323:272451 +h1,14272:31501208,27559323:0,0,0 +k1,14272:31773659,27559323:272451 +k1,14272:32583029,27559323:0 +) +(1,14273:6764466,28424403:25818563,505283,134348 +k1,14272:8484146,28424403:221527 +h1,14272:9281064,28424403:0,0,0 +k1,14272:9883356,28424403:221528 +k1,14272:11379558,28424403:221527 +k1,14272:12620170,28424403:221527 +k1,14272:14337885,28424403:221528 +k1,14272:16601514,28424403:221527 +k1,14272:18014487,28424403:221528 +k1,14272:21679276,28424403:221527 +k1,14272:23197761,28424403:221527 +(1,14272:23197761,28424403:0,459977,115847 +r1,14318:27073145,28424403:3875384,575824,115847 +k1,14272:23197761,28424403:-3875384 +) +(1,14272:23197761,28424403:3875384,459977,115847 +k1,14272:23197761,28424403:3277 +h1,14272:27069868,28424403:0,411205,112570 +) +k1,14272:27294673,28424403:221528 +k1,14272:28707645,28424403:221527 +(1,14272:28707645,28424403:0,459977,115847 +r1,14318:32583029,28424403:3875384,575824,115847 +k1,14272:28707645,28424403:-3875384 +) +(1,14272:28707645,28424403:3875384,459977,115847 +k1,14272:28707645,28424403:3277 +h1,14272:32579752,28424403:0,411205,112570 +) +k1,14272:32583029,28424403:0 +) +(1,14273:6764466,29289483:25818563,513147,134348 +k1,14272:9523082,29289483:138487 +k1,14272:10680654,29289483:138487 +k1,14272:12472615,29289483:138488 +k1,14272:15045704,29289483:138426 +k1,14272:16749847,29289483:138488 +k1,14272:19710314,29289483:138487 +k1,14272:20920970,29289483:138487 +k1,14272:22078542,29289483:138487 +k1,14272:22904502,29289483:138487 +k1,14272:25030696,29289483:138487 +k1,14272:27459012,29289483:138488 +k1,14272:28589059,29289483:138487 +k1,14272:29793817,29289483:138487 +k1,14272:32583029,29289483:0 +) +(1,14273:6764466,30154563:25818563,513147,134348 +g1,14272:8195117,30154563 +g1,14272:9498628,30154563 +g1,14272:10790342,30154563 +(1,14272:10790342,30154563:0,452978,115847 +r1,14318:12555455,30154563:1765113,568825,115847 +k1,14272:10790342,30154563:-1765113 +) +(1,14272:10790342,30154563:1765113,452978,115847 +k1,14272:10790342,30154563:3277 +h1,14272:12552178,30154563:0,411205,112570 +) +g1,14272:12754684,30154563 +g1,14272:13605341,30154563 +g1,14272:16173041,30154563 +g1,14272:16838231,30154563 +g1,14272:18169267,30154563 +g1,14272:21322204,30154563 +g1,14272:23264691,30154563 +g1,14272:26099123,30154563 +g1,14272:27317437,30154563 +g1,14272:28689105,30154563 +k1,14273:32583029,30154563:1551668 +g1,14273:32583029,30154563 +) +v1,14275:6764466,30839418:0,393216,0 +(1,14281:6764466,32529993:25818563,2083791,196608 +g1,14281:6764466,32529993 +g1,14281:6764466,32529993 +g1,14281:6567858,32529993 +(1,14281:6567858,32529993:0,2083791,196608 +r1,14318:32779637,32529993:26211779,2280399,196608 +k1,14281:6567857,32529993:-26211780 +) +(1,14281:6567858,32529993:26211779,2083791,196608 +[1,14281:6764466,32529993:25818563,1887183,0 +(1,14277:6764466,31073855:25818563,431045,112852 +(1,14276:6764466,31073855:0,0,0 +g1,14276:6764466,31073855 +g1,14276:6764466,31073855 +g1,14276:6436786,31073855 +(1,14276:6436786,31073855:0,0,0 +) +g1,14276:6764466,31073855 +) +g1,14277:8424236,31073855 +g1,14277:9420098,31073855 +g1,14277:13403546,31073855 +g1,14277:15727224,31073855 +g1,14277:16391132,31073855 +g1,14277:21370442,31073855 +h1,14277:23694120,31073855:0,0,0 +k1,14277:32583029,31073855:8888909 +g1,14277:32583029,31073855 +) +(1,14278:6764466,31758710:25818563,431045,79822 +h1,14278:6764466,31758710:0,0,0 +k1,14278:6764466,31758710:0 +h1,14278:10415960,31758710:0,0,0 +k1,14278:32583028,31758710:22167068 +g1,14278:32583028,31758710 +) +(1,14279:6764466,32443565:25818563,431045,86428 +h1,14279:6764466,32443565:0,0,0 +g1,14279:12075729,32443565 +h1,14279:13735499,32443565:0,0,0 +k1,14279:32583029,32443565:18847530 +g1,14279:32583029,32443565 +) +] +) +g1,14281:32583029,32529993 +g1,14281:6764466,32529993 +g1,14281:6764466,32529993 +g1,14281:32583029,32529993 +g1,14281:32583029,32529993 +) +h1,14281:6764466,32726601:0,0,0 +] +g1,14284:32583029,32726601 +) +h1,14284:6630773,32726601:0,0,0 +v1,14287:6630773,33591681:0,393216,0 +(1,14288:6630773,38359727:25952256,5161262,0 +g1,14288:6630773,38359727 +g1,14288:6237557,38359727 +r1,14318:6368629,38359727:131072,5161262,0 +g1,14288:6567858,38359727 +g1,14288:6764466,38359727 +[1,14288:6764466,38359727:25818563,5161262,0 +(1,14288:6764466,33899979:25818563,701514,196608 +(1,14287:6764466,33899979:0,701514,196608 +r1,14318:7761522,33899979:997056,898122,196608 +k1,14287:6764466,33899979:-997056 +) +(1,14287:6764466,33899979:997056,701514,196608 +) +k1,14287:7965805,33899979:204283 +k1,14287:8293485,33899979:327680 +k1,14287:10895731,33899979:204284 +(1,14287:10895731,33899979:0,452978,115847 +r1,14318:13715980,33899979:2820249,568825,115847 +k1,14287:10895731,33899979:-2820249 +) +(1,14287:10895731,33899979:2820249,452978,115847 +k1,14287:10895731,33899979:3277 +h1,14287:13712703,33899979:0,411205,112570 +) +k1,14287:13920263,33899979:204283 +k1,14287:15797681,33899979:204284 +k1,14287:16772667,33899979:204283 +k1,14287:20203944,33899979:204284 +k1,14287:21643581,33899979:204283 +k1,14287:23545903,33899979:204284 +k1,14287:24769271,33899979:204283 +k1,14287:26908178,33899979:204284 +k1,14287:27643958,33899979:204283 +k1,14287:29425694,33899979:204284 +k1,14287:30391505,33899979:204283 +k1,14288:32583029,33899979:0 +) +(1,14288:6764466,34765059:25818563,505283,134348 +k1,14287:8032051,34765059:171823 +k1,14287:13067302,34765059:171824 +k1,14287:13925287,34765059:171823 +k1,14287:15116195,34765059:171823 +k1,14287:18608728,34765059:171824 +k1,14287:21989194,34765059:171823 +k1,14287:25207131,34765059:171824 +k1,14287:26370514,34765059:171823 +k1,14287:28055563,34765059:171823 +k1,14287:28913549,34765059:171824 +k1,14287:30104457,34765059:171823 +k1,14287:32583029,34765059:0 +) +(1,14288:6764466,35630139:25818563,513147,134348 +k1,14287:8976068,35630139:218652 +k1,14287:10142370,35630139:218651 +k1,14287:11380107,35630139:218652 +k1,14287:14779877,35630139:218652 +k1,14287:18800272,35630139:218652 +k1,14287:21731458,35630139:218651 +k1,14287:22897761,35630139:218652 +k1,14287:25051036,35630139:218652 +k1,14287:26288773,35630139:218652 +k1,14287:29144593,35630139:218651 +k1,14287:31350952,35630139:218652 +k1,14287:32583029,35630139:0 +) +(1,14288:6764466,36495219:25818563,505283,134348 +k1,14287:9267832,36495219:224679 +h1,14287:10636879,36495219:0,0,0 +k1,14287:10861558,36495219:224679 +k1,14287:11895608,36495219:224680 +k1,14287:13618440,36495219:224679 +h1,14287:14813817,36495219:0,0,0 +k1,14287:15038496,36495219:224679 +k1,14287:15949337,36495219:224679 +k1,14287:16944719,36495219:224679 +k1,14287:20211579,36495219:224679 +k1,14287:21817103,36495219:224680 +k1,14287:23146064,36495219:224679 +k1,14287:26684899,36495219:224679 +k1,14287:29680440,36495219:224679 +k1,14288:32583029,36495219:0 +) +(1,14288:6764466,37360299:25818563,513147,134348 +k1,14287:8256720,37360299:224788 +k1,14287:10080587,37360299:224789 +k1,14287:10988260,37360299:224788 +k1,14287:12679745,37360299:224789 +k1,14287:14299139,37360299:224788 +k1,14287:15543012,37360299:224788 +k1,14287:17103425,37360299:224789 +k1,14287:17987505,37360299:224788 +k1,14287:20468698,37360299:224788 +k1,14287:23205482,37360299:224789 +k1,14287:25908842,37360299:224788 +k1,14287:28144276,37360299:224789 +k1,14287:29316715,37360299:224788 +k1,14287:32583029,37360299:0 +) +(1,14288:6764466,38225379:25818563,513147,134348 +g1,14287:10009808,38225379 +g1,14287:10970565,38225379 +g1,14287:13104417,38225379 +g1,14287:17131604,38225379 +g1,14287:18981030,38225379 +g1,14287:21866580,38225379 +g1,14287:24183277,38225379 +k1,14288:32583029,38225379:6029315 +g1,14288:32583029,38225379 +) +] +g1,14288:32583029,38359727 +) +h1,14288:6630773,38359727:0,0,0 +(1,14294:6630773,39224807:25952256,505283,134348 +h1,14293:6630773,39224807:983040,0,0 +k1,14293:10280560,39224807:268785 +(1,14293:10280560,39224807:0,452978,115847 +r1,14318:13100809,39224807:2820249,568825,115847 +k1,14293:10280560,39224807:-2820249 +) +(1,14293:10280560,39224807:2820249,452978,115847 +k1,14293:10280560,39224807:3277 +h1,14293:13097532,39224807:0,411205,112570 +) +k1,14293:13369594,39224807:268785 +k1,14293:15151605,39224807:268785 +k1,14293:18100813,39224807:268785 +k1,14293:19763549,39224807:268785 +(1,14293:19763549,39224807:0,452978,115847 +r1,14318:21528662,39224807:1765113,568825,115847 +k1,14293:19763549,39224807:-1765113 +) +(1,14293:19763549,39224807:1765113,452978,115847 +k1,14293:19763549,39224807:3277 +h1,14293:21525385,39224807:0,411205,112570 +) +k1,14293:21797447,39224807:268785 +k1,14293:22956212,39224807:268786 +(1,14293:22956212,39224807:0,452978,115847 +r1,14318:25424749,39224807:2468537,568825,115847 +k1,14293:22956212,39224807:-2468537 +) +(1,14293:22956212,39224807:2468537,452978,115847 +k1,14293:22956212,39224807:3277 +h1,14293:25421472,39224807:0,411205,112570 +) +k1,14293:25900628,39224807:268785 +k1,14293:27779633,39224807:268785 +k1,14293:28793562,39224807:268785 +k1,14293:30081432,39224807:268785 +k1,14293:31931601,39224807:268785 +k1,14293:32583029,39224807:0 +) +(1,14294:6630773,40089887:25952256,513147,134348 +k1,14293:9563415,40089887:172266 +k1,14293:11853149,40089887:172266 +k1,14293:14517094,40089887:172266 +k1,14293:15880805,40089887:172266 +k1,14293:17873661,40089887:172266 +k1,14293:19202637,40089887:172266 +k1,14293:20441174,40089887:172266 +k1,14293:21272732,40089887:172266 +k1,14293:21800858,40089887:172266 +k1,14293:23865804,40089887:172266 +k1,14293:24724232,40089887:172266 +k1,14293:26972023,40089887:172266 +k1,14293:29173284,40089887:172266 +k1,14293:31128785,40089887:172266 +k1,14294:32583029,40089887:0 +) +(1,14294:6630773,40954967:25952256,505283,134348 +k1,14293:8902251,40954967:216269 +k1,14293:11350020,40954967:216268 +k1,14293:13884297,40954967:216269 +k1,14293:15906083,40954967:216269 +k1,14293:17141437,40954967:216269 +k1,14293:21441909,40954967:216268 +k1,14293:24590914,40954967:216269 +k1,14293:25338680,40954967:216269 +k1,14293:28094469,40954967:216269 +k1,14293:29502182,40954967:216268 +k1,14293:30334489,40954967:216269 +k1,14293:32583029,40954967:0 +) +(1,14294:6630773,41820047:25952256,513147,134348 +k1,14293:7471146,41820047:224335 +k1,14293:9447258,41820047:224335 +k1,14293:11368974,41820047:224334 +k1,14293:14077124,41820047:224335 +k1,14293:14952887,41820047:224335 +k1,14293:16792029,41820047:224335 +k1,14293:18512550,41820047:224334 +k1,14293:20021391,41820047:224335 +k1,14293:20777223,41820047:224335 +k1,14293:23302527,41820047:224335 +k1,14293:24416840,41820047:224334 +k1,14293:27426455,41820047:224335 +k1,14293:30185067,41820047:224335 +k1,14294:32583029,41820047:0 +) +(1,14294:6630773,42685127:25952256,513147,134348 +(1,14293:6630773,42685127:0,452978,115847 +r1,14318:8747598,42685127:2116825,568825,115847 +k1,14293:6630773,42685127:-2116825 +) +(1,14293:6630773,42685127:2116825,452978,115847 +k1,14293:6630773,42685127:3277 +h1,14293:8744321,42685127:0,411205,112570 +) +k1,14293:8896006,42685127:148408 +k1,14293:12376920,42685127:148408 +k1,14293:15280462,42685127:148408 +k1,14293:18260025,42685127:148408 +k1,14293:19067725,42685127:148408 +k1,14293:21333602,42685127:148409 +k1,14293:23800018,42685127:148408 +k1,14293:25441992,42685127:148408 +k1,14293:26276562,42685127:148408 +k1,14293:27444055,42685127:148408 +k1,14293:30423618,42685127:148408 +k1,14293:32583029,42685127:0 +) +(1,14294:6630773,43550207:25952256,513147,134348 +k1,14293:10795586,43550207:261489 +k1,14293:11716366,43550207:261488 +k1,14293:14740198,43550207:261489 +k1,14293:17457321,43550207:261489 +k1,14293:18401694,43550207:261488 +k1,14293:20548654,43550207:261489 +k1,14293:23651783,43550207:261488 +k1,14293:24564700,43550207:261489 +k1,14293:26690688,43550207:261489 +k1,14293:27568214,43550207:261488 +k1,14293:30500950,43550207:261489 +k1,14294:32583029,43550207:0 +) +(1,14294:6630773,44415287:25952256,513147,134348 +k1,14293:8371034,44415287:225724 +k1,14293:10241712,44415287:225724 +k1,14293:12402059,44415287:225724 +k1,14293:12983642,44415287:225723 +k1,14293:15370743,44415287:225724 +k1,14293:18050790,44415287:225724 +(1,14293:18050790,44415287:0,452978,115847 +r1,14318:20167615,44415287:2116825,568825,115847 +k1,14293:18050790,44415287:-2116825 +) +(1,14293:18050790,44415287:2116825,452978,115847 +k1,14293:18050790,44415287:3277 +h1,14293:20164338,44415287:0,411205,112570 +) +k1,14293:20393339,44415287:225724 +k1,14293:21150560,44415287:225724 +k1,14293:22889510,44415287:225724 +k1,14293:23766662,44415287:225724 +k1,14293:26208813,44415287:225723 +k1,14293:27637778,44415287:225724 +k1,14293:29851209,44415287:225724 +k1,14293:31812326,44415287:225724 +k1,14293:32583029,44415287:0 +) +(1,14294:6630773,45280367:25952256,505283,134348 +g1,14293:10019639,45280367 +g1,14293:13032329,45280367 +g1,14293:15957856,45280367 +g1,14293:18349264,45280367 +h1,14293:19319852,45280367:0,0,0 +k1,14294:32583029,45280367:13003655 +g1,14294:32583029,45280367 +) +] +(1,14318:32583029,45706769:0,0,0 +g1,14318:32583029,45706769 +) +) +] +(1,14318:6630773,47279633:25952256,0,0 +h1,14318:6630773,47279633:25952256,0,0 +) +] +(1,14318:4262630,4025873:0,0,0 +[1,14318:-473656,4025873:0,0,0 +(1,14318:-473656,-710413:0,0,0 +(1,14318:-473656,-710413:0,0,0 +g1,14318:-473656,-710413 +) +g1,14318:-473656,-710413 ) ] ) ] !31431 -}229 -Input:2456:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2457:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2458:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}230 Input:2459:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2460:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2461:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2462:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{230 -[1,14397:4262630,47279633:28320399,43253760,0 -(1,14397:4262630,4025873:0,0,0 -[1,14397:-473656,4025873:0,0,0 -(1,14397:-473656,-710413:0,0,0 -(1,14397:-473656,-644877:0,0,0 -k1,14397:-473656,-644877:-65536 +{231 +[1,14395:4262630,47279633:28320399,43253760,0 +(1,14395:4262630,4025873:0,0,0 +[1,14395:-473656,4025873:0,0,0 +(1,14395:-473656,-710413:0,0,0 +(1,14395:-473656,-644877:0,0,0 +k1,14395:-473656,-644877:-65536 ) -(1,14397:-473656,4736287:0,0,0 -k1,14397:-473656,4736287:5209943 +(1,14395:-473656,4736287:0,0,0 +k1,14395:-473656,4736287:5209943 ) -g1,14397:-473656,-710413 +g1,14395:-473656,-710413 ) ] ) -[1,14397:6630773,47279633:25952256,43253760,0 -[1,14397:6630773,4812305:25952256,786432,0 -(1,14397:6630773,4812305:25952256,505283,134348 -(1,14397:6630773,4812305:25952256,505283,134348 -g1,14397:3078558,4812305 -[1,14397:3078558,4812305:0,0,0 -(1,14397:3078558,2439708:0,1703936,0 -k1,14397:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14397:2537886,2439708:1179648,16384,0 +[1,14395:6630773,47279633:25952256,43253760,0 +[1,14395:6630773,4812305:25952256,786432,0 +(1,14395:6630773,4812305:25952256,505283,134348 +(1,14395:6630773,4812305:25952256,505283,134348 +g1,14395:3078558,4812305 +[1,14395:3078558,4812305:0,0,0 +(1,14395:3078558,2439708:0,1703936,0 +k1,14395:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14395:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14397:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14395:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14397:3078558,4812305:0,0,0 -(1,14397:3078558,2439708:0,1703936,0 -g1,14397:29030814,2439708 -g1,14397:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14397:36151628,1915420:16384,1179648,0 +[1,14395:3078558,4812305:0,0,0 +(1,14395:3078558,2439708:0,1703936,0 +g1,14395:29030814,2439708 +g1,14395:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14395:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14397:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14395:37855564,2439708:1179648,16384,0 ) ) -k1,14397:3078556,2439708:-34777008 +k1,14395:3078556,2439708:-34777008 ) ] -[1,14397:3078558,4812305:0,0,0 -(1,14397:3078558,49800853:0,16384,2228224 -k1,14397:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14397:2537886,49800853:1179648,16384,0 +[1,14395:3078558,4812305:0,0,0 +(1,14395:3078558,49800853:0,16384,2228224 +k1,14395:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14395:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14397:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14395:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14397:3078558,4812305:0,0,0 -(1,14397:3078558,49800853:0,16384,2228224 -g1,14397:29030814,49800853 -g1,14397:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14397:36151628,51504789:16384,1179648,0 +[1,14395:3078558,4812305:0,0,0 +(1,14395:3078558,49800853:0,16384,2228224 +g1,14395:29030814,49800853 +g1,14395:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14395:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14397:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14395:37855564,49800853:1179648,16384,0 ) ) -k1,14397:3078556,49800853:-34777008 +k1,14395:3078556,49800853:-34777008 ) ] -g1,14397:6630773,4812305 -g1,14397:6630773,4812305 -g1,14397:8843268,4812305 -g1,14397:11066249,4812305 -g1,14397:13415059,4812305 -k1,14397:31387651,4812305:17972592 +g1,14395:6630773,4812305 +g1,14395:6630773,4812305 +g1,14395:8843268,4812305 +g1,14395:11066249,4812305 +g1,14395:13415059,4812305 +k1,14395:31387651,4812305:17972592 ) ) ] -[1,14397:6630773,45706769:25952256,40108032,0 -(1,14397:6630773,45706769:25952256,40108032,0 -(1,14397:6630773,45706769:0,0,0 -g1,14397:6630773,45706769 +[1,14395:6630773,45706769:25952256,40108032,0 +(1,14395:6630773,45706769:25952256,40108032,0 +(1,14395:6630773,45706769:0,0,0 +g1,14395:6630773,45706769 +) +[1,14395:6630773,45706769:25952256,40108032,0 +[1,14315:6630773,14835004:25952256,9236267,0 +[1,14315:6630773,14835004:25952256,9236267,0 +(1,14314:6630773,10584976:25952256,4986239,0 +k1,14314:6671566,10584976:40793 +h1,14312:6671566,10584976:0,0,0 +(1,14312:6671566,10584976:25691363,4986239,0 +g1,14312:8668427,10584976 +(1,14312:8668427,6600122:0,0,0 +(1,14312:8668427,6600122:0,0,0 +g1,14298:8668427,6600122 +(1,14299:8668427,6600122:0,0,0 +(1,14299:8668427,6600122:0,0,0 +g1,14299:8668427,6600122 +g1,14299:8668427,6600122 +g1,14299:8668427,6600122 +g1,14299:8668427,6600122 +g1,14299:8668427,6600122 +(1,14299:8668427,6600122:0,0,0 +(1,14299:8668427,6600122:1751777,454754,7077 +(1,14299:8668427,6600122:1751777,454754,7077 +) +g1,14299:10420204,6600122 +) ) -[1,14397:6630773,45706769:25952256,40108032,0 -[1,14317:6630773,14835004:25952256,9236267,0 -[1,14317:6630773,14835004:25952256,9236267,0 -(1,14316:6630773,10584976:25952256,4986239,0 -k1,14316:6671566,10584976:40793 -h1,14314:6671566,10584976:0,0,0 -(1,14314:6671566,10584976:25691363,4986239,0 -g1,14314:8668427,10584976 -(1,14314:8668427,6600122:0,0,0 -(1,14314:8668427,6600122:0,0,0 +g1,14299:8668427,6600122 +g1,14299:8668427,6600122 +) +) +g1,14299:8668427,6600122 +(1,14300:8668427,6600122:0,0,0 +(1,14300:8668427,6600122:0,0,0 +g1,14300:8668427,6600122 +g1,14300:8668427,6600122 +g1,14300:8668427,6600122 +g1,14300:8668427,6600122 +g1,14300:8668427,6600122 +(1,14300:8668427,6600122:0,0,0 +(1,14300:8668427,6600122:3574334,454754,7077 +(1,14300:8668427,6600122:3574334,454754,7077 +) +g1,14300:12242761,6600122 +) +) +g1,14300:8668427,6600122 g1,14300:8668427,6600122 +) +) (1,14301:8668427,6600122:0,0,0 (1,14301:8668427,6600122:0,0,0 g1,14301:8668427,6600122 @@ -253464,10 +253703,18 @@ g1,14301:8668427,6600122 g1,14301:8668427,6600122 g1,14301:8668427,6600122 (1,14301:8668427,6600122:0,0,0 -(1,14301:8668427,6600122:1751777,454754,7077 -(1,14301:8668427,6600122:1751777,454754,7077 +(1,14301:8668427,6600122:1272717,408008,104590 +(1,14301:8668427,6600122:1272717,408008,104590 +(1,14301:8668427,6600122:0,408008,104590 +r1,14395:9941144,6600122:1272717,512598,104590 +k1,14301:8668427,6600122:-1272717 +) +(1,14301:8668427,6600122:1272717,408008,104590 +k1,14301:8668427,6600122:3277 +h1,14301:9937867,6600122:0,370085,101313 +) ) -g1,14301:10420204,6600122 +g1,14301:9941144,6600122 ) ) g1,14301:8668427,6600122 @@ -253483,16 +253730,38 @@ g1,14302:8668427,6600122 g1,14302:8668427,6600122 g1,14302:8668427,6600122 (1,14302:8668427,6600122:0,0,0 -(1,14302:8668427,6600122:3574334,454754,7077 -(1,14302:8668427,6600122:3574334,454754,7077 +(1,14302:8668427,6600122:5422007,454754,120913 +(1,14302:8668427,6600122:5422007,454754,120913 +(1,14302:8668427,6600122:0,408008,104590 +r1,14395:9308062,6600122:639635,512598,104590 +k1,14302:8668427,6600122:-639635 +) +(1,14302:8668427,6600122:639635,408008,104590 +k1,14302:8668427,6600122:3277 +h1,14302:9304785,6600122:0,370085,101313 +) +g1,14302:9487369,6600122 +g1,14302:11397810,6600122 +$1,14302:11397810,6600122 +$1,14302:12005329,6600122 +g1,14302:12184636,6600122 +(1,14302:12184636,6600122:0,408008,110889 +r1,14395:14090434,6600122:1905798,518897,110889 +k1,14302:12184636,6600122:-1905798 +) +(1,14302:12184636,6600122:1905798,408008,110889 +k1,14302:12184636,6600122:3277 +h1,14302:14087157,6600122:0,370085,101313 +) ) -g1,14302:12242761,6600122 +g1,14302:14090434,6600122 ) ) g1,14302:8668427,6600122 g1,14302:8668427,6600122 ) ) +g1,14302:8668427,6600122 (1,14303:8668427,6600122:0,0,0 (1,14303:8668427,6600122:0,0,0 g1,14303:8668427,6600122 @@ -253501,18 +253770,18 @@ g1,14303:8668427,6600122 g1,14303:8668427,6600122 g1,14303:8668427,6600122 (1,14303:8668427,6600122:0,0,0 -(1,14303:8668427,6600122:1272717,408008,104590 -(1,14303:8668427,6600122:1272717,408008,104590 +(1,14303:8668427,6600122:1905798,408008,104590 +(1,14303:8668427,6600122:1905798,408008,104590 (1,14303:8668427,6600122:0,408008,104590 -r1,14397:9941144,6600122:1272717,512598,104590 -k1,14303:8668427,6600122:-1272717 +r1,14395:10574225,6600122:1905798,512598,104590 +k1,14303:8668427,6600122:-1905798 ) -(1,14303:8668427,6600122:1272717,408008,104590 +(1,14303:8668427,6600122:1905798,408008,104590 k1,14303:8668427,6600122:3277 -h1,14303:9937867,6600122:0,370085,101313 +h1,14303:10570948,6600122:0,370085,101313 ) ) -g1,14303:9941144,6600122 +g1,14303:10574225,6600122 ) ) g1,14303:8668427,6600122 @@ -253528,31 +253797,23 @@ g1,14304:8668427,6600122 g1,14304:8668427,6600122 g1,14304:8668427,6600122 (1,14304:8668427,6600122:0,0,0 -(1,14304:8668427,6600122:5422007,454754,120913 -(1,14304:8668427,6600122:5422007,454754,120913 -(1,14304:8668427,6600122:0,408008,104590 -r1,14397:9308062,6600122:639635,512598,104590 -k1,14304:8668427,6600122:-639635 -) -(1,14304:8668427,6600122:639635,408008,104590 -k1,14304:8668427,6600122:3277 -h1,14304:9304785,6600122:0,370085,101313 +(1,14304:8668427,6600122:6252997,454754,104590 +(1,14304:8668427,6600122:6252997,454754,104590 +g1,14304:10000250,6600122 +g1,14304:12545341,6600122 +$1,14304:12545341,6600122 +$1,14304:13152860,6600122 +g1,14304:13332167,6600122 +(1,14304:13332167,6600122:0,373362,104590 +r1,14395:14921424,6600122:1589257,477952,104590 +k1,14304:13332167,6600122:-1589257 ) -g1,14304:9487369,6600122 -g1,14304:11397810,6600122 -$1,14304:11397810,6600122 -$1,14304:12005329,6600122 -g1,14304:12184636,6600122 -(1,14304:12184636,6600122:0,408008,110889 -r1,14397:14090434,6600122:1905798,518897,110889 -k1,14304:12184636,6600122:-1905798 +(1,14304:13332167,6600122:1589257,373362,104590 +k1,14304:13332167,6600122:3277 +h1,14304:14918147,6600122:0,370085,101313 ) -(1,14304:12184636,6600122:1905798,408008,110889 -k1,14304:12184636,6600122:3277 -h1,14304:14087157,6600122:0,370085,101313 ) -) -g1,14304:14090434,6600122 +g1,14304:14921424,6600122 ) ) g1,14304:8668427,6600122 @@ -253568,18 +253829,19 @@ g1,14305:8668427,6600122 g1,14305:8668427,6600122 g1,14305:8668427,6600122 (1,14305:8668427,6600122:0,0,0 -(1,14305:8668427,6600122:1905798,408008,104590 -(1,14305:8668427,6600122:1905798,408008,104590 +(1,14305:8668427,6600122:2550076,454754,120913 +(1,14305:8668427,6600122:2550076,454754,120913 (1,14305:8668427,6600122:0,408008,104590 -r1,14397:10574225,6600122:1905798,512598,104590 -k1,14305:8668427,6600122:-1905798 +r1,14395:9308062,6600122:639635,512598,104590 +k1,14305:8668427,6600122:-639635 ) -(1,14305:8668427,6600122:1905798,408008,104590 +(1,14305:8668427,6600122:639635,408008,104590 k1,14305:8668427,6600122:3277 -h1,14305:10570948,6600122:0,370085,101313 +h1,14305:9304785,6600122:0,370085,101313 ) +g1,14305:9487369,6600122 ) -g1,14305:10574225,6600122 +g1,14305:11218503,6600122 ) ) g1,14305:8668427,6600122 @@ -253587,65 +253849,17 @@ g1,14305:8668427,6600122 ) ) g1,14305:8668427,6600122 -(1,14306:8668427,6600122:0,0,0 -(1,14306:8668427,6600122:0,0,0 g1,14306:8668427,6600122 g1,14306:8668427,6600122 g1,14306:8668427,6600122 g1,14306:8668427,6600122 g1,14306:8668427,6600122 -(1,14306:8668427,6600122:0,0,0 -(1,14306:8668427,6600122:6252997,454754,104590 -(1,14306:8668427,6600122:6252997,454754,104590 -g1,14306:10000250,6600122 -g1,14306:12545341,6600122 -$1,14306:12545341,6600122 -$1,14306:13152860,6600122 -g1,14306:13332167,6600122 -(1,14306:13332167,6600122:0,373362,104590 -r1,14397:14921424,6600122:1589257,477952,104590 -k1,14306:13332167,6600122:-1589257 -) -(1,14306:13332167,6600122:1589257,373362,104590 -k1,14306:13332167,6600122:3277 -h1,14306:14918147,6600122:0,370085,101313 -) -) -g1,14306:14921424,6600122 -) -) -g1,14306:8668427,6600122 g1,14306:8668427,6600122 -) -) -g1,14306:8668427,6600122 -(1,14307:8668427,6600122:0,0,0 -(1,14307:8668427,6600122:0,0,0 -g1,14307:8668427,6600122 -g1,14307:8668427,6600122 g1,14307:8668427,6600122 g1,14307:8668427,6600122 g1,14307:8668427,6600122 -(1,14307:8668427,6600122:0,0,0 -(1,14307:8668427,6600122:2550076,454754,120913 -(1,14307:8668427,6600122:2550076,454754,120913 -(1,14307:8668427,6600122:0,408008,104590 -r1,14397:9308062,6600122:639635,512598,104590 -k1,14307:8668427,6600122:-639635 -) -(1,14307:8668427,6600122:639635,408008,104590 -k1,14307:8668427,6600122:3277 -h1,14307:9304785,6600122:0,370085,101313 -) -g1,14307:9487369,6600122 -) -g1,14307:11218503,6600122 -) -) g1,14307:8668427,6600122 g1,14307:8668427,6600122 -) -) g1,14307:8668427,6600122 g1,14308:8668427,6600122 g1,14308:8668427,6600122 @@ -253673,1867 +253887,1848 @@ g1,14311:8668427,6600122 g1,14311:8668427,6600122 g1,14312:8668427,6600122 g1,14312:8668427,6600122 -g1,14312:8668427,6600122 -g1,14312:8668427,6600122 -g1,14312:8668427,6600122 -g1,14312:8668427,6600122 -g1,14313:8668427,6600122 -g1,14313:8668427,6600122 -g1,14313:8668427,6600122 -g1,14313:8668427,6600122 -g1,14313:8668427,6600122 -g1,14313:8668427,6600122 -g1,14314:8668427,6600122 -g1,14314:8668427,6600122 ) -g1,14314:8668427,6600122 +g1,14312:8668427,6600122 ) ) +g1,14312:32542236,10584976 g1,14314:32542236,10584976 -g1,14316:32542236,10584976 -k1,14316:32583029,10584976:40793 -) -(1,14316:6630773,12105416:25952256,505283,134348 -h1,14316:6630773,12105416:0,0,0 -g1,14316:8923222,12105416 -k1,14316:32583029,12105416:22669558 -g1,14316:32583029,12105416 -) -(1,14316:6630773,12970496:25952256,513147,134348 -h1,14316:6630773,12970496:0,0,0 -k1,14316:9515430,12970496:185884 -k1,14316:12352245,12970496:185884 -k1,14316:13557214,12970496:185884 -k1,14316:15428684,12970496:185884 -k1,14316:17127794,12970496:185884 -k1,14316:18261328,12970496:185883 -k1,14316:21202346,12970496:185884 -k1,14316:23375937,12970496:185884 -k1,14316:26392976,12970496:185884 -k1,14316:28738271,12970496:185884 -k1,14316:31041623,12970496:185884 -k1,14316:32583029,12970496:0 -) -(1,14316:6630773,13835576:25952256,513147,134348 -k1,14316:7745540,13835576:231997 -k1,14316:8800670,13835576:231998 -k1,14316:10641576,13835576:231997 -k1,14316:12918297,13835576:231998 -k1,14316:15830717,13835576:231997 -k1,14316:17456665,13835576:231997 -k1,14316:18707748,13835576:231998 -k1,14316:21694223,13835576:231997 -k1,14316:23611806,13835576:231997 -k1,14316:24459842,13835576:231998 -k1,14316:27130434,13835576:231997 -k1,14316:29373732,13835576:231998 -k1,14316:30802416,13835576:231997 -k1,14316:32583029,13835576:0 -) -(1,14316:6630773,14700656:25952256,513147,134348 -g1,14316:7489294,14700656 -g1,14316:10006531,14700656 -g1,14316:10857188,14700656 -g1,14316:12877007,14700656 -g1,14316:14643857,14700656 -g1,14316:15947368,14700656 -g1,14316:16894363,14700656 -g1,14316:18028135,14700656 -g1,14316:18988892,14700656 -g1,14316:20207206,14700656 -g1,14316:21960949,14700656 -g1,14316:23210065,14700656 -g1,14316:25394380,14700656 -h1,14316:26364968,14700656:0,0,0 -g1,14316:26564197,14700656 -g1,14316:27711077,14700656 -g1,14316:29612276,14700656 -k1,14316:32583029,14700656:800856 -g1,14316:32583029,14700656 -) -] -] -(1,14320:6630773,16801084:25952256,513147,126483 -h1,14319:6630773,16801084:983040,0,0 -k1,14319:10573180,16801084:179330 -k1,14319:12740218,16801084:179331 -k1,14319:15924374,16801084:179330 -k1,14319:17959684,16801084:179330 -k1,14319:18755052,16801084:179330 -k1,14319:19953468,16801084:179331 -k1,14319:22724746,16801084:179330 -k1,14319:25762756,16801084:179330 -k1,14319:27509707,16801084:179330 -k1,14319:30102074,16801084:179331 -k1,14319:30932832,16801084:179330 -k1,14319:32583029,16801084:0 -) -(1,14320:6630773,17666164:25952256,513147,126483 -k1,14319:9492135,17666164:175041 -k1,14319:12158854,17666164:175040 -k1,14319:12949933,17666164:175041 -k1,14319:14144058,17666164:175040 -k1,14319:17387495,17666164:175041 -k1,14319:20421215,17666164:175040 -k1,14319:22163877,17666164:175041 -k1,14319:23989114,17666164:175040 -k1,14319:26850476,17666164:175041 -k1,14319:27676944,17666164:175040 -k1,14319:30265021,17666164:175041 -k1,14319:32583029,17666164:0 -) -(1,14320:6630773,18531244:25952256,505283,134348 -k1,14319:7593441,18531244:279783 -k1,14319:8489262,18531244:279783 -k1,14319:10235741,18531244:279783 -k1,14319:13704506,18531244:279783 -k1,14319:14515786,18531244:279783 -k1,14319:18997083,18531244:279784 -k1,14319:19892904,18531244:279783 -k1,14319:21606615,18531244:279783 -k1,14319:22805213,18531244:279783 -k1,14319:25490167,18531244:279783 -(1,14319:25490167,18531244:0,452978,115847 -r1,14397:27606992,18531244:2116825,568825,115847 -k1,14319:25490167,18531244:-2116825 -) -(1,14319:25490167,18531244:2116825,452978,115847 -k1,14319:25490167,18531244:3277 -h1,14319:27603715,18531244:0,411205,112570 -) -k1,14319:27886775,18531244:279783 -k1,14319:29901951,18531244:279783 -k1,14319:32583029,18531244:0 -) -(1,14320:6630773,19396324:25952256,513147,115847 -k1,14319:10661893,19396324:224134 -k1,14319:13612326,19396324:224135 -k1,14319:15406678,19396324:224109 -k1,14319:16316974,19396324:224134 -k1,14319:17560193,19396324:224134 -k1,14319:20615483,19396324:224135 -k1,14319:23739585,19396324:224134 -k1,14319:25112565,19396324:224134 -k1,14319:25995991,19396324:224134 -k1,14319:28674449,19396324:224135 -(1,14319:28674449,19396324:0,452978,115847 -r1,14397:30791274,19396324:2116825,568825,115847 -k1,14319:28674449,19396324:-2116825 -) -(1,14319:28674449,19396324:2116825,452978,115847 -k1,14319:28674449,19396324:3277 -h1,14319:30787997,19396324:0,411205,112570 -) -k1,14319:31015408,19396324:224134 -k1,14320:32583029,19396324:0 -) -(1,14320:6630773,20261404:25952256,513147,134348 -g1,14319:7244845,20261404 -g1,14319:7975571,20261404 -g1,14319:10978430,20261404 -g1,14319:12125310,20261404 -g1,14319:15159626,20261404 -g1,14319:16752806,20261404 -(1,14319:16752806,20261404:0,452978,115847 -r1,14397:18166207,20261404:1413401,568825,115847 -k1,14319:16752806,20261404:-1413401 -) -(1,14319:16752806,20261404:1413401,452978,115847 -k1,14319:16752806,20261404:3277 -h1,14319:18162930,20261404:0,411205,112570 -) -g1,14319:18365436,20261404 -g1,14319:19756110,20261404 -(1,14319:19756110,20261404:0,452978,122846 -r1,14397:20817799,20261404:1061689,575824,122846 -k1,14319:19756110,20261404:-1061689 -) -(1,14319:19756110,20261404:1061689,452978,122846 -k1,14319:19756110,20261404:3277 -h1,14319:20814522,20261404:0,411205,112570 -) -g1,14319:21017028,20261404 -g1,14319:22407702,20261404 -g1,14319:23762986,20261404 -g1,14319:24493712,20261404 -g1,14319:27782964,20261404 -g1,14319:28791563,20261404 -g1,14319:30488945,20261404 -h1,14319:31684322,20261404:0,0,0 -k1,14320:32583029,20261404:846279 -g1,14320:32583029,20261404 -) -(1,14322:6630773,21126484:25952256,513147,134348 -h1,14321:6630773,21126484:983040,0,0 -k1,14321:8899061,21126484:243226 -k1,14321:10161371,21126484:243225 -k1,14321:11788717,21126484:243226 -k1,14321:14693359,21126484:243225 -k1,14321:15804937,21126484:243226 -k1,14321:17140648,21126484:243226 -(1,14321:17140648,21126484:0,459977,115847 -r1,14397:18202337,21126484:1061689,575824,115847 -k1,14321:17140648,21126484:-1061689 -) -(1,14321:17140648,21126484:1061689,459977,115847 -k1,14321:17140648,21126484:3277 -h1,14321:18199060,21126484:0,411205,112570 -) -k1,14321:18445562,21126484:243225 -k1,14321:20256409,21126484:243226 -k1,14321:21997787,21126484:243225 -h1,14321:23193164,21126484:0,0,0 -k1,14321:23610060,21126484:243226 -k1,14321:24209146,21126484:243226 -k1,14321:26265097,21126484:243225 -k1,14321:28496030,21126484:243226 -k1,14321:29686906,21126484:243225 -k1,14321:30285992,21126484:243226 -k1,14322:32583029,21126484:0 -) -(1,14322:6630773,21991564:25952256,513147,134348 -k1,14321:8178842,21991564:165915 -k1,14321:11835205,21991564:165916 -k1,14321:12478877,21991564:165915 -k1,14321:13330954,21991564:165915 -k1,14321:15572395,21991564:165916 -k1,14321:17309863,21991564:165915 -k1,14321:18285148,21991564:165915 -k1,14321:20769072,21991564:165916 -k1,14321:21926547,21991564:165915 -k1,14321:24297749,21991564:165915 -k1,14321:27022191,21991564:165916 -k1,14321:29316715,21991564:165915 -k1,14322:32583029,21991564:0 -) -(1,14322:6630773,22856644:25952256,513147,126483 -(1,14321:6630773,22856644:0,414482,115847 -r1,14397:8395886,22856644:1765113,530329,115847 -k1,14321:6630773,22856644:-1765113 -) -(1,14321:6630773,22856644:1765113,414482,115847 -k1,14321:6630773,22856644:3277 -h1,14321:8392609,22856644:0,411205,112570 -) -k1,14321:8750114,22856644:180558 -k1,14321:9949758,22856644:180559 -k1,14321:13451025,22856644:180558 -k1,14321:14319057,22856644:180559 -k1,14321:16487322,22856644:180558 -k1,14321:17800342,22856644:180558 -k1,14321:18728667,22856644:180559 -k1,14321:22260081,22856644:180558 -k1,14321:22906600,22856644:180558 -k1,14321:25890789,22856644:180559 -k1,14321:28469309,22856644:180558 -(1,14321:28469309,22856644:0,452978,115847 -r1,14397:30586134,22856644:2116825,568825,115847 -k1,14321:28469309,22856644:-2116825 -) -(1,14321:28469309,22856644:2116825,452978,115847 -k1,14321:28469309,22856644:3277 -h1,14321:30582857,22856644:0,411205,112570 -) -k1,14321:30766693,22856644:180559 -k1,14321:31708779,22856644:180558 -k1,14322:32583029,22856644:0 -) -(1,14322:6630773,23721724:25952256,513147,134348 -k1,14321:8343463,23721724:215192 -k1,14321:10470996,23721724:215192 -k1,14321:11337616,23721724:215192 -k1,14321:12571893,23721724:215192 -k1,14321:15207330,23721724:215192 -k1,14321:15778382,23721724:215192 -k1,14321:17575613,23721724:215192 -k1,14321:18450097,23721724:215192 -k1,14321:19684374,23721724:215192 -k1,14321:22217574,23721724:215192 -k1,14321:23947303,23721724:215192 -k1,14321:25353940,23721724:215192 -k1,14321:26588217,23721724:215192 -k1,14321:31426974,23721724:215192 -k1,14321:32583029,23721724:0 -) -(1,14322:6630773,24586804:25952256,473825,7863 -k1,14322:32583029,24586804:22853714 -g1,14322:32583029,24586804 -) -v1,14324:6630773,25271659:0,393216,0 -(1,14345:6630773,36016239:25952256,11137796,196608 -g1,14345:6630773,36016239 -g1,14345:6630773,36016239 -g1,14345:6434165,36016239 -(1,14345:6434165,36016239:0,11137796,196608 -r1,14397:32779637,36016239:26345472,11334404,196608 -k1,14345:6434165,36016239:-26345472 -) -(1,14345:6434165,36016239:26345472,11137796,196608 -[1,14345:6630773,36016239:25952256,10941188,0 -(1,14326:6630773,25506096:25952256,431045,106246 -(1,14325:6630773,25506096:0,0,0 -g1,14325:6630773,25506096 -g1,14325:6630773,25506096 -g1,14325:6303093,25506096 -(1,14325:6303093,25506096:0,0,0 -) -g1,14325:6630773,25506096 -) -g1,14326:7958589,25506096 -g1,14326:8954451,25506096 -g1,14326:11610083,25506096 -g1,14326:12273991,25506096 -g1,14326:14265715,25506096 -g1,14326:14929623,25506096 -g1,14326:18913071,25506096 -g1,14326:20572841,25506096 -g1,14326:21236749,25506096 -h1,14326:22896519,25506096:0,0,0 -k1,14326:32583029,25506096:9686510 -g1,14326:32583029,25506096 -) -(1,14327:6630773,26190951:25952256,431045,106246 -h1,14327:6630773,26190951:0,0,0 -g1,14327:8290543,26190951 -g1,14327:9286405,26190951 -k1,14327:9286405,26190951:0 -h1,14327:12273991,26190951:0,0,0 -k1,14327:32583029,26190951:20309038 -g1,14327:32583029,26190951 -) -(1,14344:6630773,27006878:25952256,407923,9908 -(1,14329:6630773,27006878:0,0,0 -g1,14329:6630773,27006878 -g1,14329:6630773,27006878 -g1,14329:6303093,27006878 -(1,14329:6303093,27006878:0,0,0 -) -g1,14329:6630773,27006878 -) -g1,14344:7626635,27006878 -g1,14344:9950313,27006878 -g1,14344:10282267,27006878 -h1,14344:13601806,27006878:0,0,0 -k1,14344:32583030,27006878:18981224 -g1,14344:32583030,27006878 -) -(1,14344:6630773,27691733:25952256,424439,106246 -h1,14344:6630773,27691733:0,0,0 -g1,14344:7626635,27691733 -g1,14344:9286405,27691733 -g1,14344:9950313,27691733 -g1,14344:11942037,27691733 -g1,14344:12605945,27691733 -h1,14344:15925484,27691733:0,0,0 -k1,14344:32583029,27691733:16657545 -g1,14344:32583029,27691733 -) -(1,14344:6630773,28376588:25952256,398014,0 -h1,14344:6630773,28376588:0,0,0 -h1,14344:7294681,28376588:0,0,0 -k1,14344:32583029,28376588:25288348 -g1,14344:32583029,28376588 -) -(1,14344:6630773,29061443:25952256,431045,106246 -h1,14344:6630773,29061443:0,0,0 -g1,14344:7626635,29061443 -g1,14344:7958589,29061443 -g1,14344:8290543,29061443 -g1,14344:8622497,29061443 -g1,14344:8954451,29061443 -g1,14344:9286405,29061443 -g1,14344:9618359,29061443 -g1,14344:9950313,29061443 -g1,14344:10282267,29061443 -g1,14344:10614221,29061443 -g1,14344:10946175,29061443 -g1,14344:11278129,29061443 -g1,14344:11610083,29061443 -g1,14344:11942037,29061443 -g1,14344:12937899,29061443 -g1,14344:14265715,29061443 -g1,14344:15261577,29061443 -g1,14344:16257439,29061443 -g1,14344:16589393,29061443 -g1,14344:16921347,29061443 -g1,14344:18249163,29061443 -g1,14344:18581117,29061443 -g1,14344:18913071,29061443 -g1,14344:19245025,29061443 -h1,14344:20240887,29061443:0,0,0 -k1,14344:32583029,29061443:12342142 -g1,14344:32583029,29061443 -) -(1,14344:6630773,29746298:25952256,424439,106246 -h1,14344:6630773,29746298:0,0,0 -g1,14344:7626635,29746298 -g1,14344:8290543,29746298 -g1,14344:10282267,29746298 -g1,14344:10614221,29746298 -g1,14344:10946175,29746298 -g1,14344:11278129,29746298 -g1,14344:11610083,29746298 -g1,14344:11942037,29746298 -g1,14344:12273991,29746298 -g1,14344:12937899,29746298 -g1,14344:13269853,29746298 -g1,14344:13601807,29746298 -g1,14344:13933761,29746298 -g1,14344:14265715,29746298 -g1,14344:16257439,29746298 -g1,14344:18249163,29746298 -h1,14344:20240887,29746298:0,0,0 -k1,14344:32583029,29746298:12342142 -g1,14344:32583029,29746298 -) -(1,14344:6630773,30431153:25952256,407923,9908 -h1,14344:6630773,30431153:0,0,0 -g1,14344:7626635,30431153 -g1,14344:9950313,30431153 -g1,14344:10282267,30431153 -g1,14344:10614221,30431153 -g1,14344:10946175,30431153 -g1,14344:11278129,30431153 -g1,14344:11610083,30431153 -g1,14344:11942037,30431153 -g1,14344:12273991,30431153 -g1,14344:12605945,30431153 -g1,14344:12937899,30431153 -g1,14344:13269853,30431153 -g1,14344:13601807,30431153 -g1,14344:13933761,30431153 -g1,14344:14265715,30431153 -g1,14344:14597669,30431153 -g1,14344:14929623,30431153 -g1,14344:15261577,30431153 -g1,14344:15593531,30431153 -g1,14344:15925485,30431153 -g1,14344:16257439,30431153 -g1,14344:18249163,30431153 -h1,14344:20240887,30431153:0,0,0 -k1,14344:32583029,30431153:12342142 -g1,14344:32583029,30431153 -) -(1,14344:6630773,31116008:25952256,424439,106246 -h1,14344:6630773,31116008:0,0,0 -g1,14344:7626635,31116008 -g1,14344:8290543,31116008 -g1,14344:11942036,31116008 -g1,14344:12273990,31116008 -g1,14344:12937898,31116008 -g1,14344:13269852,31116008 -g1,14344:13601806,31116008 -g1,14344:13933760,31116008 -g1,14344:16257438,31116008 -g1,14344:18249162,31116008 -h1,14344:20240886,31116008:0,0,0 -k1,14344:32583029,31116008:12342143 -g1,14344:32583029,31116008 -) -(1,14344:6630773,31800863:25952256,398014,0 -h1,14344:6630773,31800863:0,0,0 -h1,14344:7294681,31800863:0,0,0 -k1,14344:32583029,31800863:25288348 -g1,14344:32583029,31800863 -) -(1,14344:6630773,32485718:25952256,407923,106246 -h1,14344:6630773,32485718:0,0,0 -g1,14344:7626635,32485718 -g1,14344:9618359,32485718 -g1,14344:9950313,32485718 -h1,14344:13269852,32485718:0,0,0 -k1,14344:32583028,32485718:19313176 -g1,14344:32583028,32485718 -) -(1,14344:6630773,33170573:25952256,424439,106246 -h1,14344:6630773,33170573:0,0,0 -g1,14344:7626635,33170573 -g1,14344:9286405,33170573 -g1,14344:9950313,33170573 -h1,14344:13269852,33170573:0,0,0 -k1,14344:32583028,33170573:19313176 -g1,14344:32583028,33170573 -) -(1,14344:6630773,33855428:25952256,398014,0 -h1,14344:6630773,33855428:0,0,0 -h1,14344:7294681,33855428:0,0,0 -k1,14344:32583029,33855428:25288348 -g1,14344:32583029,33855428 -) -(1,14344:6630773,34540283:25952256,431045,106246 -h1,14344:6630773,34540283:0,0,0 -g1,14344:7626635,34540283 -g1,14344:7958589,34540283 -g1,14344:8290543,34540283 -g1,14344:8622497,34540283 -g1,14344:8954451,34540283 -g1,14344:9286405,34540283 -g1,14344:9618359,34540283 -g1,14344:9950313,34540283 -g1,14344:10282267,34540283 -g1,14344:10614221,34540283 -g1,14344:10946175,34540283 -g1,14344:11278129,34540283 -g1,14344:11610083,34540283 -g1,14344:11942037,34540283 -g1,14344:12937899,34540283 -g1,14344:14265715,34540283 -g1,14344:15261577,34540283 -g1,14344:16257439,34540283 -g1,14344:16589393,34540283 -g1,14344:16921347,34540283 -g1,14344:18249163,34540283 -g1,14344:18581117,34540283 -g1,14344:18913071,34540283 -g1,14344:19245025,34540283 -h1,14344:20240887,34540283:0,0,0 -k1,14344:32583029,34540283:12342142 -g1,14344:32583029,34540283 -) -(1,14344:6630773,35225138:25952256,407923,9908 -h1,14344:6630773,35225138:0,0,0 -g1,14344:7626635,35225138 -g1,14344:9950313,35225138 -g1,14344:10282267,35225138 -g1,14344:10614221,35225138 -g1,14344:10946175,35225138 -g1,14344:11278129,35225138 -g1,14344:11610083,35225138 -g1,14344:11942037,35225138 -g1,14344:12273991,35225138 -g1,14344:12605945,35225138 -g1,14344:12937899,35225138 -g1,14344:13269853,35225138 -g1,14344:13601807,35225138 -g1,14344:13933761,35225138 -g1,14344:14265715,35225138 -g1,14344:14597669,35225138 -g1,14344:14929623,35225138 -g1,14344:15261577,35225138 -g1,14344:15593531,35225138 -g1,14344:15925485,35225138 -g1,14344:16257439,35225138 -g1,14344:18249163,35225138 -h1,14344:20240887,35225138:0,0,0 -k1,14344:32583029,35225138:12342142 -g1,14344:32583029,35225138 -) -(1,14344:6630773,35909993:25952256,424439,106246 -h1,14344:6630773,35909993:0,0,0 -g1,14344:7626635,35909993 -g1,14344:8290543,35909993 -g1,14344:11942036,35909993 -g1,14344:12273990,35909993 -g1,14344:12937898,35909993 -g1,14344:13269852,35909993 -g1,14344:13601806,35909993 -g1,14344:13933760,35909993 -g1,14344:14265714,35909993 -g1,14344:16257438,35909993 -g1,14344:18249162,35909993 -h1,14344:20240886,35909993:0,0,0 -k1,14344:32583029,35909993:12342143 -g1,14344:32583029,35909993 -) -] -) -g1,14345:32583029,36016239 -g1,14345:6630773,36016239 -g1,14345:6630773,36016239 -g1,14345:32583029,36016239 -g1,14345:32583029,36016239 -) -h1,14345:6630773,36212847:0,0,0 -(1,14349:6630773,37077927:25952256,513147,134348 -h1,14348:6630773,37077927:983040,0,0 -k1,14348:10313311,37077927:301536 -(1,14348:10313311,37077927:0,452978,115847 -r1,14397:13485271,37077927:3171960,568825,115847 -k1,14348:10313311,37077927:-3171960 -) -(1,14348:10313311,37077927:3171960,452978,115847 -k1,14348:10313311,37077927:3277 -h1,14348:13481994,37077927:0,411205,112570 -) -k1,14348:13786807,37077927:301536 -k1,14348:16319845,37077927:301537 -k1,14348:17640466,37077927:301536 -k1,14348:21458664,37077927:301536 -k1,14348:24395403,37077927:301536 -k1,14348:25716025,37077927:301537 -k1,14348:28452879,37077927:301536 -k1,14348:29945860,37077927:301536 -k1,14348:32583029,37077927:0 -) -(1,14349:6630773,37943007:25952256,505283,7863 -k1,14349:32583030,37943007:23581820 -g1,14349:32583030,37943007 -) -v1,14351:6630773,38627862:0,393216,0 -(1,14397:6630773,45165323:25952256,6930677,196608 -g1,14397:6630773,45165323 -g1,14397:6630773,45165323 -g1,14397:6434165,45165323 -(1,14397:6434165,45165323:0,6930677,196608 -r1,14397:32779637,45165323:26345472,7127285,196608 -k1,14397:6434165,45165323:-26345472 -) -(1,14397:6434165,45165323:26345472,6930677,196608 -[1,14397:6630773,45165323:25952256,6734069,0 -(1,14353:6630773,38862299:25952256,431045,106246 -(1,14352:6630773,38862299:0,0,0 -g1,14352:6630773,38862299 -g1,14352:6630773,38862299 -g1,14352:6303093,38862299 -(1,14352:6303093,38862299:0,0,0 -) -g1,14352:6630773,38862299 -) -k1,14353:6630773,38862299:0 -h1,14353:10614221,38862299:0,0,0 -k1,14353:32583029,38862299:21968808 -g1,14353:32583029,38862299 -) -(1,14373:6630773,39678226:25952256,398014,0 -(1,14355:6630773,39678226:0,0,0 -g1,14355:6630773,39678226 -g1,14355:6630773,39678226 -g1,14355:6303093,39678226 -(1,14355:6303093,39678226:0,0,0 -) -g1,14355:6630773,39678226 -) -h1,14373:7294681,39678226:0,0,0 -k1,14373:32583029,39678226:25288348 -g1,14373:32583029,39678226 -) -(1,14373:6630773,40363081:25952256,424439,8257 -h1,14373:6630773,40363081:0,0,0 -g1,14373:7626635,40363081 -h1,14373:9286405,40363081:0,0,0 -k1,14373:32583029,40363081:23296624 -g1,14373:32583029,40363081 -) -(1,14373:6630773,41047936:25952256,431045,106246 -h1,14373:6630773,41047936:0,0,0 -g1,14373:7626635,41047936 -g1,14373:11278128,41047936 -g1,14373:11942036,41047936 -g1,14373:13601806,41047936 -g1,14373:14265714,41047936 -g1,14373:16257438,41047936 -g1,14373:16921346,41047936 -g1,14373:20904793,41047936 -g1,14373:22564563,41047936 -g1,14373:23228471,41047936 -h1,14373:24888241,41047936:0,0,0 -k1,14373:32583029,41047936:7694788 -g1,14373:32583029,41047936 -) -(1,14373:6630773,41732791:25952256,398014,0 -h1,14373:6630773,41732791:0,0,0 -h1,14373:7294681,41732791:0,0,0 -k1,14373:32583029,41732791:25288348 -g1,14373:32583029,41732791 -) -(1,14373:6630773,42417646:25952256,424439,6605 -h1,14373:6630773,42417646:0,0,0 -g1,14373:7626635,42417646 -h1,14373:10946174,42417646:0,0,0 -k1,14373:32583030,42417646:21636856 -g1,14373:32583030,42417646 -) -(1,14373:6630773,43102501:25952256,424439,86428 -h1,14373:6630773,43102501:0,0,0 -g1,14373:7626635,43102501 -g1,14373:7958589,43102501 -g1,14373:8290543,43102501 -g1,14373:8622497,43102501 -g1,14373:8954451,43102501 -g1,14373:10282267,43102501 -g1,14373:10614221,43102501 -g1,14373:10946175,43102501 -g1,14373:11278129,43102501 -g1,14373:11610083,43102501 -g1,14373:11942037,43102501 -g1,14373:12937899,43102501 -g1,14373:13269853,43102501 -g1,14373:15593531,43102501 -g1,14373:15925485,43102501 -g1,14373:16257439,43102501 -g1,14373:16589393,43102501 -g1,14373:16921347,43102501 -g1,14373:17253301,43102501 -g1,14373:18249163,43102501 -g1,14373:18581117,43102501 -g1,14373:18913071,43102501 -g1,14373:19245025,43102501 -g1,14373:19576979,43102501 -h1,14373:20572841,43102501:0,0,0 -k1,14373:32583029,43102501:12010188 -g1,14373:32583029,43102501 -) -(1,14373:6630773,43787356:25952256,407923,9908 -h1,14373:6630773,43787356:0,0,0 -g1,14373:7626635,43787356 -g1,14373:10282267,43787356 -g1,14373:10614221,43787356 -g1,14373:12937899,43787356 -g1,14373:13269853,43787356 -g1,14373:15593531,43787356 -g1,14373:15925485,43787356 -g1,14373:16257439,43787356 -g1,14373:18249163,43787356 -g1,14373:18581117,43787356 -h1,14373:20572841,43787356:0,0,0 -k1,14373:32583029,43787356:12010188 -g1,14373:32583029,43787356 -) -(1,14373:6630773,44472211:25952256,398014,0 -h1,14373:6630773,44472211:0,0,0 -h1,14373:7294681,44472211:0,0,0 -k1,14373:32583029,44472211:25288348 -g1,14373:32583029,44472211 -) -(1,14373:6630773,45157066:25952256,431045,8257 -h1,14373:6630773,45157066:0,0,0 -g1,14373:7626635,45157066 -h1,14373:11942036,45157066:0,0,0 -k1,14373:32583028,45157066:20640992 -g1,14373:32583028,45157066 -) -] -) -g1,14397:32583029,45165323 -g1,14397:6630773,45165323 -g1,14397:6630773,45165323 -g1,14397:32583029,45165323 -g1,14397:32583029,45165323 -) -] -(1,14397:32583029,45706769:0,0,0 -g1,14397:32583029,45706769 -) -) -] -(1,14397:6630773,47279633:25952256,0,0 -h1,14397:6630773,47279633:25952256,0,0 -) -] -(1,14397:4262630,4025873:0,0,0 -[1,14397:-473656,4025873:0,0,0 -(1,14397:-473656,-710413:0,0,0 -(1,14397:-473656,-710413:0,0,0 -g1,14397:-473656,-710413 -) -g1,14397:-473656,-710413 -) -] -) -] -!30449 -}230 -Input:2460:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2461:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2462:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,14314:32583029,10584976:40793 +) +(1,14314:6630773,12105416:25952256,505283,134348 +h1,14314:6630773,12105416:0,0,0 +g1,14314:8923222,12105416 +k1,14314:32583029,12105416:22669558 +g1,14314:32583029,12105416 +) +(1,14314:6630773,12970496:25952256,513147,134348 +h1,14314:6630773,12970496:0,0,0 +k1,14314:9515430,12970496:185884 +k1,14314:12352245,12970496:185884 +k1,14314:13557214,12970496:185884 +k1,14314:15428684,12970496:185884 +k1,14314:17127794,12970496:185884 +k1,14314:18261328,12970496:185883 +k1,14314:21202346,12970496:185884 +k1,14314:23375937,12970496:185884 +k1,14314:26392976,12970496:185884 +k1,14314:28738271,12970496:185884 +k1,14314:31041623,12970496:185884 +k1,14314:32583029,12970496:0 +) +(1,14314:6630773,13835576:25952256,513147,134348 +k1,14314:7745540,13835576:231997 +k1,14314:8800670,13835576:231998 +k1,14314:10641576,13835576:231997 +k1,14314:12918297,13835576:231998 +k1,14314:15830717,13835576:231997 +k1,14314:17456665,13835576:231997 +k1,14314:18707748,13835576:231998 +k1,14314:21694223,13835576:231997 +k1,14314:23611806,13835576:231997 +k1,14314:24459842,13835576:231998 +k1,14314:27130434,13835576:231997 +k1,14314:29373732,13835576:231998 +k1,14314:30802416,13835576:231997 +k1,14314:32583029,13835576:0 +) +(1,14314:6630773,14700656:25952256,513147,134348 +g1,14314:7489294,14700656 +g1,14314:10006531,14700656 +g1,14314:10857188,14700656 +g1,14314:12877007,14700656 +g1,14314:14643857,14700656 +g1,14314:15947368,14700656 +g1,14314:16894363,14700656 +g1,14314:18028135,14700656 +g1,14314:18988892,14700656 +g1,14314:20207206,14700656 +g1,14314:21960949,14700656 +g1,14314:23210065,14700656 +g1,14314:25394380,14700656 +h1,14314:26364968,14700656:0,0,0 +g1,14314:26564197,14700656 +g1,14314:27711077,14700656 +g1,14314:29612276,14700656 +k1,14314:32583029,14700656:800856 +g1,14314:32583029,14700656 +) +] +] +(1,14318:6630773,16801084:25952256,513147,126483 +h1,14317:6630773,16801084:983040,0,0 +k1,14317:10542944,16801084:149094 +k1,14317:12679746,16801084:149095 +k1,14317:18171335,16801084:149094 +k1,14317:18936468,16801084:149095 +k1,14317:20104647,16801084:149094 +k1,14317:22845689,16801084:149094 +k1,14317:25853464,16801084:149095 +k1,14317:27570179,16801084:149094 +k1,14317:30132310,16801084:149095 +k1,14317:30932832,16801084:149094 +k1,14317:32583029,16801084:0 +) +(1,14318:6630773,17666164:25952256,513147,126483 +k1,14317:9492135,17666164:175041 +k1,14317:12158854,17666164:175040 +k1,14317:12949933,17666164:175041 +k1,14317:14144058,17666164:175040 +k1,14317:17387495,17666164:175041 +k1,14317:20421215,17666164:175040 +k1,14317:22163877,17666164:175041 +k1,14317:23989114,17666164:175040 +k1,14317:26850476,17666164:175041 +k1,14317:27676944,17666164:175040 +k1,14317:30265021,17666164:175041 +k1,14317:32583029,17666164:0 +) +(1,14318:6630773,18531244:25952256,505283,134348 +k1,14317:7559298,18531244:245640 +k1,14317:8420975,18531244:245639 +k1,14317:10133311,18531244:245640 +k1,14317:14754790,18531244:245640 +k1,14317:19201943,18531244:245640 +k1,14317:20063620,18531244:245639 +k1,14317:21743188,18531244:245640 +k1,14317:22907643,18531244:245640 +k1,14317:25558454,18531244:245640 +(1,14317:25558454,18531244:0,452978,115847 +r1,14395:27675279,18531244:2116825,568825,115847 +k1,14317:25558454,18531244:-2116825 +) +(1,14317:25558454,18531244:2116825,452978,115847 +k1,14317:25558454,18531244:3277 +h1,14317:27672002,18531244:0,411205,112570 +) +k1,14317:27920918,18531244:245639 +k1,14317:29901951,18531244:245640 +k1,14317:32583029,18531244:0 +) +(1,14318:6630773,19396324:25952256,513147,115847 +k1,14317:10661893,19396324:224134 +k1,14317:13612326,19396324:224135 +k1,14317:15406678,19396324:224109 +k1,14317:16316974,19396324:224134 +k1,14317:17560193,19396324:224134 +k1,14317:20615483,19396324:224135 +k1,14317:23739585,19396324:224134 +k1,14317:25112565,19396324:224134 +k1,14317:25995991,19396324:224134 +k1,14317:28674449,19396324:224135 +(1,14317:28674449,19396324:0,452978,115847 +r1,14395:30791274,19396324:2116825,568825,115847 +k1,14317:28674449,19396324:-2116825 +) +(1,14317:28674449,19396324:2116825,452978,115847 +k1,14317:28674449,19396324:3277 +h1,14317:30787997,19396324:0,411205,112570 +) +k1,14317:31015408,19396324:224134 +k1,14318:32583029,19396324:0 +) +(1,14318:6630773,20261404:25952256,513147,134348 +g1,14317:7244845,20261404 +g1,14317:7975571,20261404 +g1,14317:10978430,20261404 +g1,14317:12125310,20261404 +g1,14317:15159626,20261404 +g1,14317:16752806,20261404 +(1,14317:16752806,20261404:0,452978,115847 +r1,14395:18166207,20261404:1413401,568825,115847 +k1,14317:16752806,20261404:-1413401 +) +(1,14317:16752806,20261404:1413401,452978,115847 +k1,14317:16752806,20261404:3277 +h1,14317:18162930,20261404:0,411205,112570 +) +g1,14317:18365436,20261404 +g1,14317:19756110,20261404 +(1,14317:19756110,20261404:0,452978,122846 +r1,14395:20817799,20261404:1061689,575824,122846 +k1,14317:19756110,20261404:-1061689 +) +(1,14317:19756110,20261404:1061689,452978,122846 +k1,14317:19756110,20261404:3277 +h1,14317:20814522,20261404:0,411205,112570 +) +g1,14317:21017028,20261404 +g1,14317:22407702,20261404 +g1,14317:23762986,20261404 +g1,14317:24493712,20261404 +g1,14317:27782964,20261404 +g1,14317:28791563,20261404 +g1,14317:30488945,20261404 +h1,14317:31684322,20261404:0,0,0 +k1,14318:32583029,20261404:846279 +g1,14318:32583029,20261404 +) +(1,14320:6630773,21126484:25952256,513147,134348 +h1,14319:6630773,21126484:983040,0,0 +k1,14319:8802417,21126484:146582 +k1,14319:9968084,21126484:146582 +k1,14319:11498786,21126484:146582 +k1,14319:14480454,21126484:146581 +k1,14319:15495388,21126484:146582 +k1,14319:16734455,21126484:146582 +(1,14319:16734455,21126484:0,459977,115847 +r1,14395:17796144,21126484:1061689,575824,115847 +k1,14319:16734455,21126484:-1061689 +) +(1,14319:16734455,21126484:1061689,459977,115847 +k1,14319:16734455,21126484:3277 +h1,14319:17792867,21126484:0,411205,112570 +) +k1,14319:17942726,21126484:146582 +k1,14319:19656929,21126484:146582 +k1,14319:21301664,21126484:146582 +h1,14319:22497041,21126484:0,0,0 +k1,14319:22817293,21126484:146582 +k1,14319:23319735,21126484:146582 +k1,14319:25279042,21126484:146581 +k1,14319:27413331,21126484:146582 +k1,14319:28507564,21126484:146582 +k1,14319:29010006,21126484:146582 +k1,14319:32583029,21126484:0 +) +(1,14320:6630773,21991564:25952256,513147,134348 +k1,14319:10412081,21991564:290861 +k1,14319:11354369,21991564:290860 +k1,14319:12331392,21991564:290861 +k1,14319:14697778,21991564:290861 +k1,14319:16560191,21991564:290860 +k1,14319:17660422,21991564:290861 +k1,14319:20269290,21991564:290860 +k1,14319:21551711,21991564:290861 +k1,14319:24047859,21991564:290861 +k1,14319:26897245,21991564:290860 +k1,14319:29316715,21991564:290861 +k1,14320:32583029,21991564:0 +) +(1,14320:6630773,22856644:25952256,513147,126483 +(1,14319:6630773,22856644:0,414482,115847 +r1,14395:8395886,22856644:1765113,530329,115847 +k1,14319:6630773,22856644:-1765113 +) +(1,14319:6630773,22856644:1765113,414482,115847 +k1,14319:6630773,22856644:3277 +h1,14319:8392609,22856644:0,411205,112570 +) +k1,14319:8839544,22856644:269988 +k1,14319:10128618,22856644:269989 +k1,14319:13719315,22856644:269988 +k1,14319:14676776,22856644:269988 +k1,14319:16934471,22856644:269988 +k1,14319:18336922,22856644:269989 +k1,14319:19354676,22856644:269988 +k1,14319:22975520,22856644:269988 +k1,14319:23711469,22856644:269988 +k1,14319:26785088,22856644:269989 +k1,14319:29453038,22856644:269988 +(1,14319:29453038,22856644:0,452978,115847 +r1,14395:31569863,22856644:2116825,568825,115847 +k1,14319:29453038,22856644:-2116825 +) +(1,14319:29453038,22856644:2116825,452978,115847 +k1,14319:29453038,22856644:3277 +h1,14319:31566586,22856644:0,411205,112570 +) +k1,14319:31839851,22856644:269988 +k1,14319:32583029,22856644:0 +) +(1,14320:6630773,23721724:25952256,513147,134348 +k1,14319:9157942,23721724:261589 +k1,14319:11331873,23721724:261590 +k1,14319:12244890,23721724:261589 +k1,14319:13525564,23721724:261589 +k1,14319:16207399,23721724:261590 +k1,14319:16824848,23721724:261589 +k1,14319:18668476,23721724:261589 +k1,14319:19589357,23721724:261589 +k1,14319:20870032,23721724:261590 +k1,14319:23449629,23721724:261589 +k1,14319:25225755,23721724:261589 +k1,14319:26678790,23721724:261590 +k1,14319:27959464,23721724:261589 +k1,14319:32583029,23721724:0 +) +(1,14320:6630773,24586804:25952256,485622,11795 +g1,14319:7961809,24586804 +k1,14320:32583029,24586804:21522678 +g1,14320:32583029,24586804 +) +v1,14322:6630773,25271659:0,393216,0 +(1,14343:6630773,36016239:25952256,11137796,196608 +g1,14343:6630773,36016239 +g1,14343:6630773,36016239 +g1,14343:6434165,36016239 +(1,14343:6434165,36016239:0,11137796,196608 +r1,14395:32779637,36016239:26345472,11334404,196608 +k1,14343:6434165,36016239:-26345472 +) +(1,14343:6434165,36016239:26345472,11137796,196608 +[1,14343:6630773,36016239:25952256,10941188,0 +(1,14324:6630773,25506096:25952256,431045,106246 +(1,14323:6630773,25506096:0,0,0 +g1,14323:6630773,25506096 +g1,14323:6630773,25506096 +g1,14323:6303093,25506096 +(1,14323:6303093,25506096:0,0,0 +) +g1,14323:6630773,25506096 +) +g1,14324:7958589,25506096 +g1,14324:8954451,25506096 +g1,14324:11610083,25506096 +g1,14324:12273991,25506096 +g1,14324:14265715,25506096 +g1,14324:14929623,25506096 +g1,14324:18913071,25506096 +g1,14324:20572841,25506096 +g1,14324:21236749,25506096 +h1,14324:22896519,25506096:0,0,0 +k1,14324:32583029,25506096:9686510 +g1,14324:32583029,25506096 +) +(1,14325:6630773,26190951:25952256,431045,106246 +h1,14325:6630773,26190951:0,0,0 +g1,14325:8290543,26190951 +g1,14325:9286405,26190951 +k1,14325:9286405,26190951:0 +h1,14325:12273991,26190951:0,0,0 +k1,14325:32583029,26190951:20309038 +g1,14325:32583029,26190951 +) +(1,14342:6630773,27006878:25952256,407923,9908 +(1,14327:6630773,27006878:0,0,0 +g1,14327:6630773,27006878 +g1,14327:6630773,27006878 +g1,14327:6303093,27006878 +(1,14327:6303093,27006878:0,0,0 +) +g1,14327:6630773,27006878 +) +g1,14342:7626635,27006878 +g1,14342:9950313,27006878 +g1,14342:10282267,27006878 +h1,14342:13601806,27006878:0,0,0 +k1,14342:32583030,27006878:18981224 +g1,14342:32583030,27006878 +) +(1,14342:6630773,27691733:25952256,424439,106246 +h1,14342:6630773,27691733:0,0,0 +g1,14342:7626635,27691733 +g1,14342:9286405,27691733 +g1,14342:9950313,27691733 +g1,14342:11942037,27691733 +g1,14342:12605945,27691733 +h1,14342:15925484,27691733:0,0,0 +k1,14342:32583029,27691733:16657545 +g1,14342:32583029,27691733 +) +(1,14342:6630773,28376588:25952256,398014,0 +h1,14342:6630773,28376588:0,0,0 +h1,14342:7294681,28376588:0,0,0 +k1,14342:32583029,28376588:25288348 +g1,14342:32583029,28376588 +) +(1,14342:6630773,29061443:25952256,431045,106246 +h1,14342:6630773,29061443:0,0,0 +g1,14342:7626635,29061443 +g1,14342:7958589,29061443 +g1,14342:8290543,29061443 +g1,14342:8622497,29061443 +g1,14342:8954451,29061443 +g1,14342:9286405,29061443 +g1,14342:9618359,29061443 +g1,14342:9950313,29061443 +g1,14342:10282267,29061443 +g1,14342:10614221,29061443 +g1,14342:10946175,29061443 +g1,14342:11278129,29061443 +g1,14342:11610083,29061443 +g1,14342:11942037,29061443 +g1,14342:12937899,29061443 +g1,14342:14265715,29061443 +g1,14342:15261577,29061443 +g1,14342:16257439,29061443 +g1,14342:16589393,29061443 +g1,14342:16921347,29061443 +g1,14342:18249163,29061443 +g1,14342:18581117,29061443 +g1,14342:18913071,29061443 +g1,14342:19245025,29061443 +h1,14342:20240887,29061443:0,0,0 +k1,14342:32583029,29061443:12342142 +g1,14342:32583029,29061443 +) +(1,14342:6630773,29746298:25952256,424439,106246 +h1,14342:6630773,29746298:0,0,0 +g1,14342:7626635,29746298 +g1,14342:8290543,29746298 +g1,14342:10282267,29746298 +g1,14342:10614221,29746298 +g1,14342:10946175,29746298 +g1,14342:11278129,29746298 +g1,14342:11610083,29746298 +g1,14342:11942037,29746298 +g1,14342:12273991,29746298 +g1,14342:12937899,29746298 +g1,14342:13269853,29746298 +g1,14342:13601807,29746298 +g1,14342:13933761,29746298 +g1,14342:14265715,29746298 +g1,14342:16257439,29746298 +g1,14342:18249163,29746298 +h1,14342:20240887,29746298:0,0,0 +k1,14342:32583029,29746298:12342142 +g1,14342:32583029,29746298 +) +(1,14342:6630773,30431153:25952256,407923,9908 +h1,14342:6630773,30431153:0,0,0 +g1,14342:7626635,30431153 +g1,14342:9950313,30431153 +g1,14342:10282267,30431153 +g1,14342:10614221,30431153 +g1,14342:10946175,30431153 +g1,14342:11278129,30431153 +g1,14342:11610083,30431153 +g1,14342:11942037,30431153 +g1,14342:12273991,30431153 +g1,14342:12605945,30431153 +g1,14342:12937899,30431153 +g1,14342:13269853,30431153 +g1,14342:13601807,30431153 +g1,14342:13933761,30431153 +g1,14342:14265715,30431153 +g1,14342:14597669,30431153 +g1,14342:14929623,30431153 +g1,14342:15261577,30431153 +g1,14342:15593531,30431153 +g1,14342:15925485,30431153 +g1,14342:16257439,30431153 +g1,14342:18249163,30431153 +h1,14342:20240887,30431153:0,0,0 +k1,14342:32583029,30431153:12342142 +g1,14342:32583029,30431153 +) +(1,14342:6630773,31116008:25952256,424439,106246 +h1,14342:6630773,31116008:0,0,0 +g1,14342:7626635,31116008 +g1,14342:8290543,31116008 +g1,14342:11942036,31116008 +g1,14342:12273990,31116008 +g1,14342:12937898,31116008 +g1,14342:13269852,31116008 +g1,14342:13601806,31116008 +g1,14342:13933760,31116008 +g1,14342:16257438,31116008 +g1,14342:18249162,31116008 +h1,14342:20240886,31116008:0,0,0 +k1,14342:32583029,31116008:12342143 +g1,14342:32583029,31116008 +) +(1,14342:6630773,31800863:25952256,398014,0 +h1,14342:6630773,31800863:0,0,0 +h1,14342:7294681,31800863:0,0,0 +k1,14342:32583029,31800863:25288348 +g1,14342:32583029,31800863 +) +(1,14342:6630773,32485718:25952256,407923,106246 +h1,14342:6630773,32485718:0,0,0 +g1,14342:7626635,32485718 +g1,14342:9618359,32485718 +g1,14342:9950313,32485718 +h1,14342:13269852,32485718:0,0,0 +k1,14342:32583028,32485718:19313176 +g1,14342:32583028,32485718 +) +(1,14342:6630773,33170573:25952256,424439,106246 +h1,14342:6630773,33170573:0,0,0 +g1,14342:7626635,33170573 +g1,14342:9286405,33170573 +g1,14342:9950313,33170573 +h1,14342:13269852,33170573:0,0,0 +k1,14342:32583028,33170573:19313176 +g1,14342:32583028,33170573 +) +(1,14342:6630773,33855428:25952256,398014,0 +h1,14342:6630773,33855428:0,0,0 +h1,14342:7294681,33855428:0,0,0 +k1,14342:32583029,33855428:25288348 +g1,14342:32583029,33855428 +) +(1,14342:6630773,34540283:25952256,431045,106246 +h1,14342:6630773,34540283:0,0,0 +g1,14342:7626635,34540283 +g1,14342:7958589,34540283 +g1,14342:8290543,34540283 +g1,14342:8622497,34540283 +g1,14342:8954451,34540283 +g1,14342:9286405,34540283 +g1,14342:9618359,34540283 +g1,14342:9950313,34540283 +g1,14342:10282267,34540283 +g1,14342:10614221,34540283 +g1,14342:10946175,34540283 +g1,14342:11278129,34540283 +g1,14342:11610083,34540283 +g1,14342:11942037,34540283 +g1,14342:12937899,34540283 +g1,14342:14265715,34540283 +g1,14342:15261577,34540283 +g1,14342:16257439,34540283 +g1,14342:16589393,34540283 +g1,14342:16921347,34540283 +g1,14342:18249163,34540283 +g1,14342:18581117,34540283 +g1,14342:18913071,34540283 +g1,14342:19245025,34540283 +h1,14342:20240887,34540283:0,0,0 +k1,14342:32583029,34540283:12342142 +g1,14342:32583029,34540283 +) +(1,14342:6630773,35225138:25952256,407923,9908 +h1,14342:6630773,35225138:0,0,0 +g1,14342:7626635,35225138 +g1,14342:9950313,35225138 +g1,14342:10282267,35225138 +g1,14342:10614221,35225138 +g1,14342:10946175,35225138 +g1,14342:11278129,35225138 +g1,14342:11610083,35225138 +g1,14342:11942037,35225138 +g1,14342:12273991,35225138 +g1,14342:12605945,35225138 +g1,14342:12937899,35225138 +g1,14342:13269853,35225138 +g1,14342:13601807,35225138 +g1,14342:13933761,35225138 +g1,14342:14265715,35225138 +g1,14342:14597669,35225138 +g1,14342:14929623,35225138 +g1,14342:15261577,35225138 +g1,14342:15593531,35225138 +g1,14342:15925485,35225138 +g1,14342:16257439,35225138 +g1,14342:18249163,35225138 +h1,14342:20240887,35225138:0,0,0 +k1,14342:32583029,35225138:12342142 +g1,14342:32583029,35225138 +) +(1,14342:6630773,35909993:25952256,424439,106246 +h1,14342:6630773,35909993:0,0,0 +g1,14342:7626635,35909993 +g1,14342:8290543,35909993 +g1,14342:11942036,35909993 +g1,14342:12273990,35909993 +g1,14342:12937898,35909993 +g1,14342:13269852,35909993 +g1,14342:13601806,35909993 +g1,14342:13933760,35909993 +g1,14342:14265714,35909993 +g1,14342:16257438,35909993 +g1,14342:18249162,35909993 +h1,14342:20240886,35909993:0,0,0 +k1,14342:32583029,35909993:12342143 +g1,14342:32583029,35909993 +) +] +) +g1,14343:32583029,36016239 +g1,14343:6630773,36016239 +g1,14343:6630773,36016239 +g1,14343:32583029,36016239 +g1,14343:32583029,36016239 +) +h1,14343:6630773,36212847:0,0,0 +(1,14347:6630773,37077927:25952256,513147,134348 +h1,14346:6630773,37077927:983040,0,0 +k1,14346:10313311,37077927:301536 +(1,14346:10313311,37077927:0,452978,115847 +r1,14395:13485271,37077927:3171960,568825,115847 +k1,14346:10313311,37077927:-3171960 +) +(1,14346:10313311,37077927:3171960,452978,115847 +k1,14346:10313311,37077927:3277 +h1,14346:13481994,37077927:0,411205,112570 +) +k1,14346:13786807,37077927:301536 +k1,14346:16319845,37077927:301537 +k1,14346:17640466,37077927:301536 +k1,14346:21458664,37077927:301536 +k1,14346:24395403,37077927:301536 +k1,14346:25716025,37077927:301537 +k1,14346:28452879,37077927:301536 +k1,14346:29945860,37077927:301536 +k1,14346:32583029,37077927:0 +) +(1,14347:6630773,37943007:25952256,505283,7863 +k1,14347:32583030,37943007:23581820 +g1,14347:32583030,37943007 +) +v1,14349:6630773,38627862:0,393216,0 +(1,14395:6630773,45165323:25952256,6930677,196608 +g1,14395:6630773,45165323 +g1,14395:6630773,45165323 +g1,14395:6434165,45165323 +(1,14395:6434165,45165323:0,6930677,196608 +r1,14395:32779637,45165323:26345472,7127285,196608 +k1,14395:6434165,45165323:-26345472 +) +(1,14395:6434165,45165323:26345472,6930677,196608 +[1,14395:6630773,45165323:25952256,6734069,0 +(1,14351:6630773,38862299:25952256,431045,106246 +(1,14350:6630773,38862299:0,0,0 +g1,14350:6630773,38862299 +g1,14350:6630773,38862299 +g1,14350:6303093,38862299 +(1,14350:6303093,38862299:0,0,0 +) +g1,14350:6630773,38862299 +) +k1,14351:6630773,38862299:0 +h1,14351:10614221,38862299:0,0,0 +k1,14351:32583029,38862299:21968808 +g1,14351:32583029,38862299 +) +(1,14371:6630773,39678226:25952256,398014,0 +(1,14353:6630773,39678226:0,0,0 +g1,14353:6630773,39678226 +g1,14353:6630773,39678226 +g1,14353:6303093,39678226 +(1,14353:6303093,39678226:0,0,0 +) +g1,14353:6630773,39678226 +) +h1,14371:7294681,39678226:0,0,0 +k1,14371:32583029,39678226:25288348 +g1,14371:32583029,39678226 +) +(1,14371:6630773,40363081:25952256,424439,8257 +h1,14371:6630773,40363081:0,0,0 +g1,14371:7626635,40363081 +h1,14371:9286405,40363081:0,0,0 +k1,14371:32583029,40363081:23296624 +g1,14371:32583029,40363081 +) +(1,14371:6630773,41047936:25952256,431045,106246 +h1,14371:6630773,41047936:0,0,0 +g1,14371:7626635,41047936 +g1,14371:11278128,41047936 +g1,14371:11942036,41047936 +g1,14371:13601806,41047936 +g1,14371:14265714,41047936 +g1,14371:16257438,41047936 +g1,14371:16921346,41047936 +g1,14371:20904793,41047936 +g1,14371:22564563,41047936 +g1,14371:23228471,41047936 +h1,14371:24888241,41047936:0,0,0 +k1,14371:32583029,41047936:7694788 +g1,14371:32583029,41047936 +) +(1,14371:6630773,41732791:25952256,398014,0 +h1,14371:6630773,41732791:0,0,0 +h1,14371:7294681,41732791:0,0,0 +k1,14371:32583029,41732791:25288348 +g1,14371:32583029,41732791 +) +(1,14371:6630773,42417646:25952256,424439,6605 +h1,14371:6630773,42417646:0,0,0 +g1,14371:7626635,42417646 +h1,14371:10946174,42417646:0,0,0 +k1,14371:32583030,42417646:21636856 +g1,14371:32583030,42417646 +) +(1,14371:6630773,43102501:25952256,424439,86428 +h1,14371:6630773,43102501:0,0,0 +g1,14371:7626635,43102501 +g1,14371:7958589,43102501 +g1,14371:8290543,43102501 +g1,14371:8622497,43102501 +g1,14371:8954451,43102501 +g1,14371:10282267,43102501 +g1,14371:10614221,43102501 +g1,14371:10946175,43102501 +g1,14371:11278129,43102501 +g1,14371:11610083,43102501 +g1,14371:11942037,43102501 +g1,14371:12937899,43102501 +g1,14371:13269853,43102501 +g1,14371:15593531,43102501 +g1,14371:15925485,43102501 +g1,14371:16257439,43102501 +g1,14371:16589393,43102501 +g1,14371:16921347,43102501 +g1,14371:17253301,43102501 +g1,14371:18249163,43102501 +g1,14371:18581117,43102501 +g1,14371:18913071,43102501 +g1,14371:19245025,43102501 +g1,14371:19576979,43102501 +h1,14371:20572841,43102501:0,0,0 +k1,14371:32583029,43102501:12010188 +g1,14371:32583029,43102501 +) +(1,14371:6630773,43787356:25952256,407923,9908 +h1,14371:6630773,43787356:0,0,0 +g1,14371:7626635,43787356 +g1,14371:10282267,43787356 +g1,14371:10614221,43787356 +g1,14371:12937899,43787356 +g1,14371:13269853,43787356 +g1,14371:15593531,43787356 +g1,14371:15925485,43787356 +g1,14371:16257439,43787356 +g1,14371:18249163,43787356 +g1,14371:18581117,43787356 +h1,14371:20572841,43787356:0,0,0 +k1,14371:32583029,43787356:12010188 +g1,14371:32583029,43787356 +) +(1,14371:6630773,44472211:25952256,398014,0 +h1,14371:6630773,44472211:0,0,0 +h1,14371:7294681,44472211:0,0,0 +k1,14371:32583029,44472211:25288348 +g1,14371:32583029,44472211 +) +(1,14371:6630773,45157066:25952256,431045,8257 +h1,14371:6630773,45157066:0,0,0 +g1,14371:7626635,45157066 +h1,14371:11942036,45157066:0,0,0 +k1,14371:32583028,45157066:20640992 +g1,14371:32583028,45157066 +) +] +) +g1,14395:32583029,45165323 +g1,14395:6630773,45165323 +g1,14395:6630773,45165323 +g1,14395:32583029,45165323 +g1,14395:32583029,45165323 +) +] +(1,14395:32583029,45706769:0,0,0 +g1,14395:32583029,45706769 +) +) +] +(1,14395:6630773,47279633:25952256,0,0 +h1,14395:6630773,47279633:25952256,0,0 +) +] +(1,14395:4262630,4025873:0,0,0 +[1,14395:-473656,4025873:0,0,0 +(1,14395:-473656,-710413:0,0,0 +(1,14395:-473656,-710413:0,0,0 +g1,14395:-473656,-710413 +) +g1,14395:-473656,-710413 +) +] +) +] +!30307 +}231 Input:2463:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2464:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{231 -[1,14453:4262630,47279633:28320399,43253760,0 -(1,14453:4262630,4025873:0,0,0 -[1,14453:-473656,4025873:0,0,0 -(1,14453:-473656,-710413:0,0,0 -(1,14453:-473656,-644877:0,0,0 -k1,14453:-473656,-644877:-65536 +{232 +[1,14451:4262630,47279633:28320399,43253760,0 +(1,14451:4262630,4025873:0,0,0 +[1,14451:-473656,4025873:0,0,0 +(1,14451:-473656,-710413:0,0,0 +(1,14451:-473656,-644877:0,0,0 +k1,14451:-473656,-644877:-65536 ) -(1,14453:-473656,4736287:0,0,0 -k1,14453:-473656,4736287:5209943 +(1,14451:-473656,4736287:0,0,0 +k1,14451:-473656,4736287:5209943 ) -g1,14453:-473656,-710413 +g1,14451:-473656,-710413 ) ] ) -[1,14453:6630773,47279633:25952256,43253760,0 -[1,14453:6630773,4812305:25952256,786432,0 -(1,14453:6630773,4812305:25952256,513147,126483 -(1,14453:6630773,4812305:25952256,513147,126483 -g1,14453:3078558,4812305 -[1,14453:3078558,4812305:0,0,0 -(1,14453:3078558,2439708:0,1703936,0 -k1,14453:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14453:2537886,2439708:1179648,16384,0 +[1,14451:6630773,47279633:25952256,43253760,0 +[1,14451:6630773,4812305:25952256,786432,0 +(1,14451:6630773,4812305:25952256,513147,126483 +(1,14451:6630773,4812305:25952256,513147,126483 +g1,14451:3078558,4812305 +[1,14451:3078558,4812305:0,0,0 +(1,14451:3078558,2439708:0,1703936,0 +k1,14451:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14451:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14453:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14451:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14453:3078558,4812305:0,0,0 -(1,14453:3078558,2439708:0,1703936,0 -g1,14453:29030814,2439708 -g1,14453:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14453:36151628,1915420:16384,1179648,0 +[1,14451:3078558,4812305:0,0,0 +(1,14451:3078558,2439708:0,1703936,0 +g1,14451:29030814,2439708 +g1,14451:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14451:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14453:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14451:37855564,2439708:1179648,16384,0 ) ) -k1,14453:3078556,2439708:-34777008 +k1,14451:3078556,2439708:-34777008 ) ] -[1,14453:3078558,4812305:0,0,0 -(1,14453:3078558,49800853:0,16384,2228224 -k1,14453:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14453:2537886,49800853:1179648,16384,0 +[1,14451:3078558,4812305:0,0,0 +(1,14451:3078558,49800853:0,16384,2228224 +k1,14451:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14451:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14453:3078558,51504789:16384,1179648,0 -) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,14453:3078558,4812305:0,0,0 -(1,14453:3078558,49800853:0,16384,2228224 -g1,14453:29030814,49800853 -g1,14453:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14453:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14453:37855564,49800853:1179648,16384,0 -) -) -k1,14453:3078556,49800853:-34777008 -) -] -g1,14453:6630773,4812305 -k1,14453:19575446,4812305:11749296 -g1,14453:21198117,4812305 -g1,14453:21985204,4812305 -g1,14453:24539797,4812305 -g1,14453:25949476,4812305 -g1,14453:28728857,4812305 -g1,14453:29852144,4812305 -) -) -] -[1,14453:6630773,45706769:25952256,40108032,0 -(1,14453:6630773,45706769:25952256,40108032,0 -(1,14453:6630773,45706769:0,0,0 -g1,14453:6630773,45706769 -) -[1,14453:6630773,45706769:25952256,40108032,0 -v1,14397:6630773,6254097:0,393216,0 -(1,14397:6630773,24656548:25952256,18795667,196608 -g1,14397:6630773,24656548 -g1,14397:6630773,24656548 -g1,14397:6434165,24656548 -(1,14397:6434165,24656548:0,18795667,196608 -r1,14453:32779637,24656548:26345472,18992275,196608 -k1,14397:6434165,24656548:-26345472 -) -(1,14397:6434165,24656548:26345472,18795667,196608 -[1,14397:6630773,24656548:25952256,18599059,0 -(1,14373:6630773,6481928:25952256,424439,79822 -h1,14373:6630773,6481928:0,0,0 -g1,14373:7626635,6481928 -g1,14373:7958589,6481928 -g1,14373:8290543,6481928 -g1,14373:8622497,6481928 -g1,14373:8954451,6481928 -g1,14373:9286405,6481928 -g1,14373:9618359,6481928 -g1,14373:9950313,6481928 -g1,14373:10282267,6481928 -g1,14373:10614221,6481928 -g1,14373:10946175,6481928 -g1,14373:11278129,6481928 -g1,14373:11610083,6481928 -g1,14373:14597668,6481928 -g1,14373:16257438,6481928 -g1,14373:18249162,6481928 -g1,14373:18913070,6481928 -g1,14373:20904794,6481928 -k1,14373:20904794,6481928:0 -h1,14373:23560426,6481928:0,0,0 -k1,14373:32583029,6481928:9022603 -g1,14373:32583029,6481928 -) -(1,14373:6630773,7166783:25952256,424439,106246 -h1,14373:6630773,7166783:0,0,0 -g1,14373:7626635,7166783 -g1,14373:11610082,7166783 -g1,14373:11942036,7166783 -g1,14373:14597668,7166783 -g1,14373:14929622,7166783 -g1,14373:15261576,7166783 -g1,14373:18249161,7166783 -g1,14373:18581115,7166783 -g1,14373:18913069,7166783 -g1,14373:20904793,7166783 -g1,14373:21236747,7166783 -g1,14373:21568701,7166783 -g1,14373:21900655,7166783 -h1,14373:23560425,7166783:0,0,0 -k1,14373:32583029,7166783:9022604 -g1,14373:32583029,7166783 -) -(1,14373:6630773,7851638:25952256,424439,106246 -h1,14373:6630773,7851638:0,0,0 -g1,14373:7626635,7851638 -g1,14373:9618359,7851638 -g1,14373:9950313,7851638 -g1,14373:10282267,7851638 -g1,14373:10614221,7851638 -g1,14373:10946175,7851638 -g1,14373:11278129,7851638 -g1,14373:11610083,7851638 -g1,14373:11942037,7851638 -g1,14373:14597669,7851638 -g1,14373:14929623,7851638 -g1,14373:15261577,7851638 -g1,14373:15593531,7851638 -g1,14373:18249163,7851638 -g1,14373:18581117,7851638 -g1,14373:18913071,7851638 -g1,14373:20904795,7851638 -g1,14373:21236749,7851638 -g1,14373:21568703,7851638 -g1,14373:21900657,7851638 -h1,14373:23560427,7851638:0,0,0 -k1,14373:32583029,7851638:9022602 -g1,14373:32583029,7851638 -) -(1,14373:6630773,8536493:25952256,424439,106246 -h1,14373:6630773,8536493:0,0,0 -g1,14373:7626635,8536493 -g1,14373:11278128,8536493 -g1,14373:11610082,8536493 -g1,14373:11942036,8536493 -g1,14373:14597668,8536493 -g1,14373:14929622,8536493 -g1,14373:15261576,8536493 -g1,14373:15593530,8536493 -g1,14373:18249162,8536493 -g1,14373:18581116,8536493 -g1,14373:18913070,8536493 -g1,14373:20904794,8536493 -g1,14373:21236748,8536493 -g1,14373:21568702,8536493 -g1,14373:21900656,8536493 -h1,14373:23560426,8536493:0,0,0 -k1,14373:32583029,8536493:9022603 -g1,14373:32583029,8536493 -) -(1,14373:6630773,9221348:25952256,398014,0 -h1,14373:6630773,9221348:0,0,0 -h1,14373:7294681,9221348:0,0,0 -k1,14373:32583029,9221348:25288348 -g1,14373:32583029,9221348 -) -(1,14373:6630773,9906203:25952256,431045,112852 -h1,14373:6630773,9906203:0,0,0 -g1,14373:7626635,9906203 -g1,14373:10614220,9906203 -g1,14373:13601805,9906203 -g1,14373:15925483,9906203 -g1,14373:17917207,9906203 -g1,14373:18913069,9906203 -g1,14373:19908931,9906203 -g1,14373:22564563,9906203 -g1,14373:23560425,9906203 -h1,14373:25884103,9906203:0,0,0 -k1,14373:32583029,9906203:6698926 -g1,14373:32583029,9906203 -) -(1,14373:6630773,10591058:25952256,424439,112852 -h1,14373:6630773,10591058:0,0,0 -g1,14373:7626635,10591058 -g1,14373:10614220,10591058 -g1,14373:14265713,10591058 -g1,14373:14597667,10591058 -g1,14373:17253299,10591058 -g1,14373:20240884,10591058 -g1,14373:23892377,10591058 -g1,14373:24224331,10591058 -h1,14373:26216055,10591058:0,0,0 -k1,14373:32583029,10591058:6366974 -g1,14373:32583029,10591058 -) -(1,14373:6630773,11275913:25952256,424439,106246 -h1,14373:6630773,11275913:0,0,0 -g1,14373:7626635,11275913 -g1,14373:11942036,11275913 -g1,14373:13933760,11275913 -g1,14373:14929622,11275913 -g1,14373:15593530,11275913 -g1,14373:16921346,11275913 -g1,14373:17917208,11275913 -g1,14373:19245024,11275913 -g1,14373:19576978,11275913 -g1,14373:22564564,11275913 -k1,14373:22564564,11275913:0 -h1,14373:25552150,11275913:0,0,0 -k1,14373:32583029,11275913:7030879 -g1,14373:32583029,11275913 -) -(1,14375:6630773,12091840:25952256,431045,106246 -(1,14374:6630773,12091840:0,0,0 -g1,14374:6630773,12091840 -g1,14374:6630773,12091840 -g1,14374:6303093,12091840 -(1,14374:6303093,12091840:0,0,0 -) -g1,14374:6630773,12091840 -) -k1,14375:6630773,12091840:0 -h1,14375:10946175,12091840:0,0,0 -k1,14375:32583029,12091840:21636854 -g1,14375:32583029,12091840 -) -(1,14396:6630773,12907767:25952256,398014,0 -(1,14377:6630773,12907767:0,0,0 -g1,14377:6630773,12907767 -g1,14377:6630773,12907767 -g1,14377:6303093,12907767 -(1,14377:6303093,12907767:0,0,0 -) -g1,14377:6630773,12907767 -) -h1,14396:7294681,12907767:0,0,0 -k1,14396:32583029,12907767:25288348 -g1,14396:32583029,12907767 -) -(1,14396:6630773,13592622:25952256,424439,8257 -h1,14396:6630773,13592622:0,0,0 -g1,14396:7626635,13592622 -h1,14396:9286405,13592622:0,0,0 -k1,14396:32583029,13592622:23296624 -g1,14396:32583029,13592622 -) -(1,14396:6630773,14277477:25952256,431045,106246 -h1,14396:6630773,14277477:0,0,0 -g1,14396:7626635,14277477 -g1,14396:11278128,14277477 -g1,14396:11942036,14277477 -g1,14396:13601806,14277477 -g1,14396:14265714,14277477 -g1,14396:18249161,14277477 -g1,14396:19908931,14277477 -g1,14396:20572839,14277477 -h1,14396:22232609,14277477:0,0,0 -k1,14396:32583029,14277477:10350420 -g1,14396:32583029,14277477 -) -(1,14396:6630773,14962332:25952256,398014,0 -h1,14396:6630773,14962332:0,0,0 -h1,14396:7294681,14962332:0,0,0 -k1,14396:32583029,14962332:25288348 -g1,14396:32583029,14962332 -) -(1,14396:6630773,15647187:25952256,424439,6605 -h1,14396:6630773,15647187:0,0,0 -g1,14396:7626635,15647187 -h1,14396:10946174,15647187:0,0,0 -k1,14396:32583030,15647187:21636856 -g1,14396:32583030,15647187 -) -(1,14396:6630773,16332042:25952256,424439,86428 -h1,14396:6630773,16332042:0,0,0 -g1,14396:7626635,16332042 -g1,14396:7958589,16332042 -g1,14396:8290543,16332042 -g1,14396:8622497,16332042 -g1,14396:8954451,16332042 -g1,14396:10282267,16332042 -g1,14396:10614221,16332042 -g1,14396:10946175,16332042 -g1,14396:11278129,16332042 -g1,14396:11610083,16332042 -g1,14396:11942037,16332042 -g1,14396:12937899,16332042 -g1,14396:13269853,16332042 -g1,14396:15593531,16332042 -g1,14396:15925485,16332042 -g1,14396:16257439,16332042 -g1,14396:16589393,16332042 -g1,14396:16921347,16332042 -g1,14396:17253301,16332042 -g1,14396:18249163,16332042 -g1,14396:18581117,16332042 -g1,14396:18913071,16332042 -g1,14396:19245025,16332042 -g1,14396:19576979,16332042 -h1,14396:20572841,16332042:0,0,0 -k1,14396:32583029,16332042:12010188 -g1,14396:32583029,16332042 -) -(1,14396:6630773,17016897:25952256,407923,9908 -h1,14396:6630773,17016897:0,0,0 -g1,14396:7626635,17016897 -g1,14396:10282267,17016897 -g1,14396:10614221,17016897 -g1,14396:12937899,17016897 -g1,14396:13269853,17016897 -g1,14396:15593531,17016897 -g1,14396:15925485,17016897 -g1,14396:16257439,17016897 -g1,14396:18249163,17016897 -g1,14396:18581117,17016897 -h1,14396:20572841,17016897:0,0,0 -k1,14396:32583029,17016897:12010188 -g1,14396:32583029,17016897 -) -(1,14396:6630773,17701752:25952256,398014,0 -h1,14396:6630773,17701752:0,0,0 -h1,14396:7294681,17701752:0,0,0 -k1,14396:32583029,17701752:25288348 -g1,14396:32583029,17701752 -) -(1,14396:6630773,18386607:25952256,431045,8257 -h1,14396:6630773,18386607:0,0,0 -g1,14396:7626635,18386607 -h1,14396:11942036,18386607:0,0,0 -k1,14396:32583028,18386607:20640992 -g1,14396:32583028,18386607 -) -(1,14396:6630773,19071462:25952256,424439,79822 -h1,14396:6630773,19071462:0,0,0 -g1,14396:7626635,19071462 -g1,14396:7958589,19071462 -g1,14396:8290543,19071462 -g1,14396:8622497,19071462 -g1,14396:8954451,19071462 -g1,14396:9286405,19071462 -g1,14396:9618359,19071462 -g1,14396:9950313,19071462 -g1,14396:10282267,19071462 -g1,14396:10614221,19071462 -g1,14396:10946175,19071462 -g1,14396:11278129,19071462 -g1,14396:11610083,19071462 -g1,14396:14597668,19071462 -g1,14396:16257438,19071462 -g1,14396:18249162,19071462 -g1,14396:18913070,19071462 -g1,14396:20904794,19071462 -k1,14396:20904794,19071462:0 -h1,14396:23560426,19071462:0,0,0 -k1,14396:32583029,19071462:9022603 -g1,14396:32583029,19071462 -) -(1,14396:6630773,19756317:25952256,424439,106246 -h1,14396:6630773,19756317:0,0,0 -g1,14396:7626635,19756317 -g1,14396:11610082,19756317 -g1,14396:11942036,19756317 -g1,14396:14597668,19756317 -g1,14396:14929622,19756317 -g1,14396:15261576,19756317 -g1,14396:15593530,19756317 -g1,14396:18249162,19756317 -g1,14396:18581116,19756317 -g1,14396:18913070,19756317 -g1,14396:20904794,19756317 -g1,14396:21236748,19756317 -g1,14396:21568702,19756317 -g1,14396:23892380,19756317 -h1,14396:24224334,19756317:0,0,0 -k1,14396:32583029,19756317:8358695 -g1,14396:32583029,19756317 -) -(1,14396:6630773,20441172:25952256,424439,106246 -h1,14396:6630773,20441172:0,0,0 -g1,14396:7626635,20441172 -g1,14396:11278128,20441172 -g1,14396:11610082,20441172 -g1,14396:11942036,20441172 -g1,14396:14597668,20441172 -g1,14396:14929622,20441172 -g1,14396:15261576,20441172 -g1,14396:15593530,20441172 -g1,14396:18249162,20441172 -g1,14396:18581116,20441172 -g1,14396:18913070,20441172 -g1,14396:20904794,20441172 -g1,14396:21236748,20441172 -g1,14396:23892380,20441172 -h1,14396:24888242,20441172:0,0,0 -k1,14396:32583029,20441172:7694787 -g1,14396:32583029,20441172 -) -(1,14396:6630773,21126027:25952256,398014,0 -h1,14396:6630773,21126027:0,0,0 -g1,14396:7626635,21126027 -k1,14396:7626635,21126027:0 -h1,14396:8622497,21126027:0,0,0 -k1,14396:32583029,21126027:23960532 -g1,14396:32583029,21126027 -) -(1,14396:6630773,21810882:25952256,431045,112852 -h1,14396:6630773,21810882:0,0,0 -g1,14396:7626635,21810882 -g1,14396:10282267,21810882 -g1,14396:12605945,21810882 -g1,14396:12937899,21810882 -g1,14396:13601807,21810882 -g1,14396:15593531,21810882 -g1,14396:17585255,21810882 -g1,14396:19245025,21810882 -g1,14396:20904795,21810882 -g1,14396:22232611,21810882 -g1,14396:23892381,21810882 -g1,14396:25220197,21810882 -g1,14396:26548013,21810882 -g1,14396:27211921,21810882 -g1,14396:27875829,21810882 -h1,14396:28207783,21810882:0,0,0 -k1,14396:32583029,21810882:4375246 -g1,14396:32583029,21810882 -) -(1,14396:6630773,22495737:25952256,398014,0 -h1,14396:6630773,22495737:0,0,0 -h1,14396:7294681,22495737:0,0,0 -k1,14396:32583029,22495737:25288348 -g1,14396:32583029,22495737 -) -(1,14396:6630773,23180592:25952256,431045,112852 -h1,14396:6630773,23180592:0,0,0 -g1,14396:7626635,23180592 -g1,14396:10614220,23180592 -g1,14396:13601805,23180592 -g1,14396:15925483,23180592 -g1,14396:17917207,23180592 -g1,14396:18913069,23180592 -g1,14396:19908931,23180592 -g1,14396:22564563,23180592 -g1,14396:23560425,23180592 -h1,14396:25884103,23180592:0,0,0 -k1,14396:32583029,23180592:6698926 -g1,14396:32583029,23180592 -) -(1,14396:6630773,23865447:25952256,424439,112852 -h1,14396:6630773,23865447:0,0,0 -g1,14396:7626635,23865447 -g1,14396:10614220,23865447 -g1,14396:14265713,23865447 -g1,14396:14597667,23865447 -g1,14396:17253299,23865447 -g1,14396:20240884,23865447 -g1,14396:23892377,23865447 -g1,14396:24224331,23865447 -h1,14396:26216055,23865447:0,0,0 -k1,14396:32583029,23865447:6366974 -g1,14396:32583029,23865447 -) -(1,14396:6630773,24550302:25952256,424439,106246 -h1,14396:6630773,24550302:0,0,0 -g1,14396:7626635,24550302 -g1,14396:11942036,24550302 -g1,14396:13933760,24550302 -g1,14396:14929622,24550302 -g1,14396:15593530,24550302 -g1,14396:16921346,24550302 -g1,14396:17917208,24550302 -g1,14396:19245024,24550302 -g1,14396:19576978,24550302 -g1,14396:22564564,24550302 -k1,14396:22564564,24550302:0 -h1,14396:24888242,24550302:0,0,0 -k1,14396:32583029,24550302:7694787 -g1,14396:32583029,24550302 -) -] -) -g1,14397:32583029,24656548 -g1,14397:6630773,24656548 -g1,14397:6630773,24656548 -g1,14397:32583029,24656548 -g1,14397:32583029,24656548 -) -h1,14397:6630773,24853156:0,0,0 -(1,14401:6630773,25718236:25952256,513147,134348 -h1,14400:6630773,25718236:983040,0,0 -k1,14400:8306837,25718236:215267 -k1,14400:9390455,25718236:215266 -k1,14400:11042927,25718236:215267 -k1,14400:11614054,25718236:215267 -k1,14400:13817027,25718236:215266 -k1,14400:15426245,25718236:215267 -k1,14400:18868505,25718236:215267 -k1,14400:20926643,25718236:215266 -k1,14400:23700436,25718236:215267 -k1,14400:27196435,25718236:215267 -(1,14400:27196435,25718236:0,414482,115847 -r1,14453:28961548,25718236:1765113,530329,115847 -k1,14400:27196435,25718236:-1765113 -) -(1,14400:27196435,25718236:1765113,414482,115847 -k1,14400:27196435,25718236:3277 -h1,14400:28958271,25718236:0,411205,112570 -) -k1,14400:29176814,25718236:215266 -k1,14400:30595322,25718236:215267 -k1,14400:32583029,25718236:0 -) -(1,14401:6630773,26583316:25952256,513147,126483 -k1,14400:7944683,26583316:207662 -k1,14400:8900110,26583316:207661 -k1,14400:10875278,26583316:207662 -k1,14400:11769102,26583316:207662 -k1,14400:12995849,26583316:207662 -k1,14400:14805210,26583316:207661 -k1,14400:17699193,26583316:207662 -k1,14400:19894562,26583316:207662 -k1,14400:20753652,26583316:207662 -k1,14400:21709079,26583316:207661 -k1,14400:24882900,26583316:207662 -k1,14400:25741990,26583316:207662 -k1,14400:28276835,26583316:207662 -k1,14400:29143788,26583316:207661 -k1,14400:30508160,26583316:207662 -k1,14400:32583029,26583316:0 -) -(1,14401:6630773,27448396:25952256,505283,126483 -k1,14400:7747782,27448396:274871 -k1,14400:9459858,27448396:274871 -k1,14400:10907169,27448396:274872 -k1,14400:13299508,27448396:274871 -k1,14400:15892387,27448396:274871 -k1,14400:16783296,27448396:274871 -k1,14400:17414027,27448396:274871 -k1,14400:18682425,27448396:274872 -k1,14400:20148741,27448396:274871 -k1,14400:22161627,27448396:274871 -k1,14400:24075553,27448396:274871 -(1,14400:24075553,27448396:0,452978,115847 -r1,14453:25840666,27448396:1765113,568825,115847 -k1,14400:24075553,27448396:-1765113 -) -(1,14400:24075553,27448396:1765113,452978,115847 -k1,14400:24075553,27448396:3277 -h1,14400:25837389,27448396:0,411205,112570 -) -k1,14400:26115537,27448396:274871 -k1,14400:27581854,27448396:274872 -(1,14400:27581854,27448396:0,414482,115847 -r1,14453:29346967,27448396:1765113,530329,115847 -k1,14400:27581854,27448396:-1765113 -) -(1,14400:27581854,27448396:1765113,414482,115847 -k1,14400:27581854,27448396:3277 -h1,14400:29343690,27448396:0,411205,112570 -) -k1,14400:29795508,27448396:274871 -k1,14400:31450567,27448396:274871 -k1,14400:32583029,27448396:0 -) -(1,14401:6630773,28313476:25952256,513147,126483 -k1,14400:9114631,28313476:231386 -k1,14400:10365101,28313476:231385 -k1,14400:12422975,28313476:231386 -k1,14400:13313653,28313476:231386 -k1,14400:14564124,28313476:231386 -k1,14400:17550643,28313476:231385 -k1,14400:20025982,28313476:231386 -k1,14400:20885203,28313476:231386 -k1,14400:22135674,28313476:231386 -k1,14400:23751179,28313476:231385 -k1,14400:26817652,28313476:231386 -k1,14400:27917390,28313476:231386 -k1,14400:29173759,28313476:231386 -k1,14400:30689650,28313476:231385 -k1,14400:32227169,28313476:231386 -k1,14400:32583029,28313476:0 -) -(1,14401:6630773,29178556:25952256,505283,115847 -k1,14400:9888439,29178556:189270 -k1,14400:12147992,29178556:189271 -k1,14400:12868759,29178556:189270 -k1,14400:14635482,29178556:189271 -k1,14400:16016197,29178556:189270 -k1,14400:17718039,29178556:189271 -(1,14400:17718039,29178556:0,452978,115847 -r1,14453:19483152,29178556:1765113,568825,115847 -k1,14400:17718039,29178556:-1765113 -) -(1,14400:17718039,29178556:1765113,452978,115847 -k1,14400:17718039,29178556:3277 -h1,14400:19479875,29178556:0,411205,112570 -) -k1,14400:19672422,29178556:189270 -k1,14400:20393190,29178556:189271 -k1,14400:23357910,29178556:189270 -k1,14400:26076871,29178556:189271 -k1,14400:26724238,29178556:189270 -k1,14400:29481865,29178556:189271 -k1,14400:32583029,29178556:0 -) -(1,14401:6630773,30043636:25952256,513147,126483 -k1,14400:7611429,30043636:226337 -k1,14400:11004467,30043636:226338 -k1,14400:12560530,30043636:226337 -k1,14400:17213169,30043636:226337 -k1,14400:17795367,30043636:226338 -k1,14400:20555326,30043636:226337 -k1,14400:22851946,30043636:226338 -k1,14400:23609780,30043636:226337 -k1,14400:25413569,30043636:226337 -k1,14400:30514475,30043636:226338 -k1,14400:31426974,30043636:226337 -k1,14400:32583029,30043636:0 -) -(1,14401:6630773,30908716:25952256,473825,7863 -k1,14401:32583030,30908716:22950708 -g1,14401:32583030,30908716 -) -v1,14403:6630773,31593571:0,393216,0 -(1,14453:6630773,45510161:25952256,14309806,196608 -g1,14453:6630773,45510161 -g1,14453:6630773,45510161 -g1,14453:6434165,45510161 -(1,14453:6434165,45510161:0,14309806,196608 -r1,14453:32779637,45510161:26345472,14506414,196608 -k1,14453:6434165,45510161:-26345472 -) -(1,14453:6434165,45510161:26345472,14309806,196608 -[1,14453:6630773,45510161:25952256,14113198,0 -(1,14405:6630773,31828008:25952256,431045,9908 -(1,14404:6630773,31828008:0,0,0 -g1,14404:6630773,31828008 -g1,14404:6630773,31828008 -g1,14404:6303093,31828008 -(1,14404:6303093,31828008:0,0,0 -) -g1,14404:6630773,31828008 -) -g1,14405:8290543,31828008 -k1,14405:8290543,31828008:0 -h1,14405:8954451,31828008:0,0,0 -k1,14405:32583029,31828008:23628578 -g1,14405:32583029,31828008 -) -(1,14406:6630773,32512863:25952256,431045,106246 -h1,14406:6630773,32512863:0,0,0 -g1,14406:6962727,32512863 -g1,14406:7294681,32512863 -k1,14406:7294681,32512863:0 -h1,14406:10282267,32512863:0,0,0 -k1,14406:32583029,32512863:22300762 -g1,14406:32583029,32512863 -) -(1,14407:6630773,33197718:25952256,424439,106246 -h1,14407:6630773,33197718:0,0,0 -g1,14407:6962727,33197718 -g1,14407:7294681,33197718 -g1,14407:7626635,33197718 -g1,14407:7958589,33197718 -g1,14407:8290543,33197718 -g1,14407:8622497,33197718 -g1,14407:8954451,33197718 -g1,14407:10946175,33197718 -g1,14407:11610083,33197718 -g1,14407:13269853,33197718 -g1,14407:13933761,33197718 -g1,14407:15925485,33197718 -g1,14407:16589393,33197718 -g1,14407:20240887,33197718 -g1,14407:20904795,33197718 -g1,14407:24556289,33197718 -g1,14407:25220197,33197718 -k1,14407:25220197,33197718:0 -h1,14407:28871691,33197718:0,0,0 -k1,14407:32583029,33197718:3711338 -g1,14407:32583029,33197718 -) -(1,14429:6630773,33761380:25952256,407923,9908 -(1,14409:6630773,33761380:0,0,0 -g1,14409:6630773,33761380 -g1,14409:6630773,33761380 -g1,14409:6303093,33761380 -(1,14409:6303093,33761380:0,0,0 -) -g1,14409:6630773,33761380 -) -g1,14429:7626635,33761380 -g1,14429:9950313,33761380 -g1,14429:10282267,33761380 -h1,14429:13601806,33761380:0,0,0 -k1,14429:32583030,33761380:18981224 -g1,14429:32583030,33761380 -) -(1,14429:6630773,34446235:25952256,424439,106246 -h1,14429:6630773,34446235:0,0,0 -g1,14429:7626635,34446235 -g1,14429:9286405,34446235 -g1,14429:9950313,34446235 -g1,14429:11942037,34446235 -g1,14429:12605945,34446235 -h1,14429:15925484,34446235:0,0,0 -k1,14429:32583029,34446235:16657545 -g1,14429:32583029,34446235 -) -(1,14429:6630773,35131090:25952256,398014,0 -h1,14429:6630773,35131090:0,0,0 -h1,14429:7294681,35131090:0,0,0 -k1,14429:32583029,35131090:25288348 -g1,14429:32583029,35131090 -) -(1,14429:6630773,35815945:25952256,431045,106246 -h1,14429:6630773,35815945:0,0,0 -g1,14429:7626635,35815945 -g1,14429:7958589,35815945 -g1,14429:8290543,35815945 -g1,14429:8622497,35815945 -g1,14429:8954451,35815945 -g1,14429:9286405,35815945 -g1,14429:9618359,35815945 -g1,14429:9950313,35815945 -g1,14429:10282267,35815945 -g1,14429:10614221,35815945 -g1,14429:10946175,35815945 -g1,14429:11278129,35815945 -g1,14429:11610083,35815945 -g1,14429:11942037,35815945 -g1,14429:12937899,35815945 -g1,14429:14265715,35815945 -g1,14429:15261577,35815945 -g1,14429:16257439,35815945 -g1,14429:16589393,35815945 -g1,14429:16921347,35815945 -g1,14429:18249163,35815945 -g1,14429:18581117,35815945 -g1,14429:18913071,35815945 -g1,14429:19245025,35815945 -h1,14429:20240887,35815945:0,0,0 -k1,14429:32583029,35815945:12342142 -g1,14429:32583029,35815945 -) -(1,14429:6630773,36500800:25952256,424439,106246 -h1,14429:6630773,36500800:0,0,0 -g1,14429:7626635,36500800 -g1,14429:8290543,36500800 -g1,14429:10282267,36500800 -g1,14429:10614221,36500800 -g1,14429:10946175,36500800 -g1,14429:11278129,36500800 -g1,14429:11610083,36500800 -g1,14429:11942037,36500800 -g1,14429:12273991,36500800 -g1,14429:12937899,36500800 -g1,14429:13269853,36500800 -g1,14429:13601807,36500800 -g1,14429:13933761,36500800 -g1,14429:14265715,36500800 -g1,14429:16257439,36500800 -g1,14429:18249163,36500800 -h1,14429:20240887,36500800:0,0,0 -k1,14429:32583029,36500800:12342142 -g1,14429:32583029,36500800 -) -(1,14429:6630773,37185655:25952256,407923,9908 -h1,14429:6630773,37185655:0,0,0 -g1,14429:7626635,37185655 -g1,14429:9950313,37185655 -g1,14429:10282267,37185655 -g1,14429:10614221,37185655 -g1,14429:10946175,37185655 -g1,14429:11278129,37185655 -g1,14429:11610083,37185655 -g1,14429:11942037,37185655 -g1,14429:12273991,37185655 -g1,14429:12605945,37185655 -g1,14429:12937899,37185655 -g1,14429:13269853,37185655 -g1,14429:13601807,37185655 -g1,14429:13933761,37185655 -g1,14429:14265715,37185655 -g1,14429:14597669,37185655 -g1,14429:14929623,37185655 -g1,14429:15261577,37185655 -g1,14429:15593531,37185655 -g1,14429:15925485,37185655 -g1,14429:16257439,37185655 -g1,14429:18249163,37185655 -h1,14429:20240887,37185655:0,0,0 -k1,14429:32583029,37185655:12342142 -g1,14429:32583029,37185655 -) -(1,14429:6630773,37870510:25952256,424439,106246 -h1,14429:6630773,37870510:0,0,0 -g1,14429:7626635,37870510 -g1,14429:8290543,37870510 -g1,14429:11942036,37870510 -g1,14429:12273990,37870510 -g1,14429:12937898,37870510 -g1,14429:13269852,37870510 -g1,14429:13601806,37870510 -g1,14429:13933760,37870510 -g1,14429:16257438,37870510 -g1,14429:18249162,37870510 -h1,14429:20240886,37870510:0,0,0 -k1,14429:32583029,37870510:12342143 -g1,14429:32583029,37870510 -) -(1,14429:6630773,38555365:25952256,424439,106246 -h1,14429:6630773,38555365:0,0,0 -g1,14429:7626635,38555365 -g1,14429:8290543,38555365 -g1,14429:11942036,38555365 -g1,14429:12273990,38555365 -g1,14429:12937898,38555365 -g1,14429:13269852,38555365 -g1,14429:13601806,38555365 -g1,14429:13933760,38555365 -g1,14429:16257438,38555365 -g1,14429:18249162,38555365 -h1,14429:20240886,38555365:0,0,0 -k1,14429:32583029,38555365:12342143 -g1,14429:32583029,38555365 -) -(1,14429:6630773,39240220:25952256,424439,106246 -h1,14429:6630773,39240220:0,0,0 -g1,14429:7626635,39240220 -g1,14429:8290543,39240220 -g1,14429:11942036,39240220 -g1,14429:12273990,39240220 -g1,14429:12937898,39240220 -g1,14429:13269852,39240220 -g1,14429:13601806,39240220 -g1,14429:13933760,39240220 -g1,14429:16257438,39240220 -g1,14429:18249162,39240220 -h1,14429:20240886,39240220:0,0,0 -k1,14429:32583029,39240220:12342143 -g1,14429:32583029,39240220 -) -(1,14429:6630773,39925075:25952256,398014,0 -h1,14429:6630773,39925075:0,0,0 -h1,14429:7294681,39925075:0,0,0 -k1,14429:32583029,39925075:25288348 -g1,14429:32583029,39925075 -) -(1,14429:6630773,40609930:25952256,407923,106246 -h1,14429:6630773,40609930:0,0,0 -g1,14429:7626635,40609930 -g1,14429:9618359,40609930 -g1,14429:9950313,40609930 -h1,14429:13269852,40609930:0,0,0 -k1,14429:32583028,40609930:19313176 -g1,14429:32583028,40609930 -) -(1,14429:6630773,41294785:25952256,424439,106246 -h1,14429:6630773,41294785:0,0,0 -g1,14429:7626635,41294785 -g1,14429:9286405,41294785 -g1,14429:9950313,41294785 -h1,14429:13269852,41294785:0,0,0 -k1,14429:32583028,41294785:19313176 -g1,14429:32583028,41294785 -) -(1,14429:6630773,41979640:25952256,398014,0 -h1,14429:6630773,41979640:0,0,0 -h1,14429:7294681,41979640:0,0,0 -k1,14429:32583029,41979640:25288348 -g1,14429:32583029,41979640 -) -(1,14429:6630773,42664495:25952256,431045,106246 -h1,14429:6630773,42664495:0,0,0 -g1,14429:7626635,42664495 -g1,14429:7958589,42664495 -g1,14429:8290543,42664495 -g1,14429:8622497,42664495 -g1,14429:8954451,42664495 -g1,14429:9286405,42664495 -g1,14429:9618359,42664495 -g1,14429:9950313,42664495 -g1,14429:10282267,42664495 -g1,14429:10614221,42664495 -g1,14429:10946175,42664495 -g1,14429:11278129,42664495 -g1,14429:11610083,42664495 -g1,14429:11942037,42664495 -g1,14429:12937899,42664495 -g1,14429:14265715,42664495 -g1,14429:15261577,42664495 -g1,14429:16257439,42664495 -g1,14429:16589393,42664495 -g1,14429:16921347,42664495 -g1,14429:18249163,42664495 -g1,14429:18581117,42664495 -g1,14429:18913071,42664495 -g1,14429:19245025,42664495 -h1,14429:20240887,42664495:0,0,0 -k1,14429:32583029,42664495:12342142 -g1,14429:32583029,42664495 -) -(1,14429:6630773,43349350:25952256,407923,9908 -h1,14429:6630773,43349350:0,0,0 -g1,14429:7626635,43349350 -g1,14429:9950313,43349350 -g1,14429:10282267,43349350 -g1,14429:10614221,43349350 -g1,14429:10946175,43349350 -g1,14429:11278129,43349350 -g1,14429:11610083,43349350 -g1,14429:11942037,43349350 -g1,14429:12273991,43349350 -g1,14429:12605945,43349350 -g1,14429:12937899,43349350 -g1,14429:13269853,43349350 -g1,14429:13601807,43349350 -g1,14429:13933761,43349350 -g1,14429:14265715,43349350 -g1,14429:14597669,43349350 -g1,14429:14929623,43349350 -g1,14429:15261577,43349350 -g1,14429:15593531,43349350 -g1,14429:15925485,43349350 -g1,14429:16257439,43349350 -g1,14429:18249163,43349350 -h1,14429:20240887,43349350:0,0,0 -k1,14429:32583029,43349350:12342142 -g1,14429:32583029,43349350 -) -(1,14429:6630773,44034205:25952256,424439,106246 -h1,14429:6630773,44034205:0,0,0 -g1,14429:7626635,44034205 -g1,14429:8290543,44034205 -g1,14429:10282267,44034205 -g1,14429:10614221,44034205 -g1,14429:10946175,44034205 -g1,14429:11278129,44034205 -g1,14429:11610083,44034205 -g1,14429:11942037,44034205 -g1,14429:12273991,44034205 -g1,14429:12937899,44034205 -g1,14429:13269853,44034205 -g1,14429:13601807,44034205 -g1,14429:13933761,44034205 -g1,14429:14265715,44034205 -g1,14429:14597669,44034205 -g1,14429:16257439,44034205 -g1,14429:18249163,44034205 -h1,14429:20240887,44034205:0,0,0 -k1,14429:32583029,44034205:12342142 -g1,14429:32583029,44034205 -) -(1,14429:6630773,44719060:25952256,424439,106246 -h1,14429:6630773,44719060:0,0,0 -g1,14429:7626635,44719060 -g1,14429:8290543,44719060 -g1,14429:11942036,44719060 -g1,14429:12273990,44719060 -g1,14429:12937898,44719060 -g1,14429:13269852,44719060 -g1,14429:13601806,44719060 -g1,14429:13933760,44719060 -g1,14429:14265714,44719060 -g1,14429:14597668,44719060 -g1,14429:14929622,44719060 -g1,14429:16257438,44719060 -g1,14429:18249162,44719060 -h1,14429:20240886,44719060:0,0,0 -k1,14429:32583029,44719060:12342143 -g1,14429:32583029,44719060 -) -(1,14429:6630773,45403915:25952256,424439,106246 -h1,14429:6630773,45403915:0,0,0 -g1,14429:7626635,45403915 -g1,14429:8290543,45403915 -g1,14429:11942036,45403915 -g1,14429:12273990,45403915 -g1,14429:12937898,45403915 -g1,14429:13269852,45403915 -g1,14429:13601806,45403915 -g1,14429:13933760,45403915 -g1,14429:14265714,45403915 -g1,14429:14597668,45403915 -g1,14429:14929622,45403915 -g1,14429:16257438,45403915 -g1,14429:18249162,45403915 -h1,14429:20240886,45403915:0,0,0 -k1,14429:32583029,45403915:12342143 -g1,14429:32583029,45403915 -) -] -) -g1,14453:32583029,45510161 -g1,14453:6630773,45510161 -g1,14453:6630773,45510161 -g1,14453:32583029,45510161 -g1,14453:32583029,45510161 -) -] -(1,14453:32583029,45706769:0,0,0 -g1,14453:32583029,45706769 -) -) -] -(1,14453:6630773,47279633:25952256,0,0 -h1,14453:6630773,47279633:25952256,0,0 -) -] -(1,14453:4262630,4025873:0,0,0 -[1,14453:-473656,4025873:0,0,0 -(1,14453:-473656,-710413:0,0,0 -(1,14453:-473656,-710413:0,0,0 -g1,14453:-473656,-710413 -) -g1,14453:-473656,-710413 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14451:3078558,51504789:16384,1179648,0 +) +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,14451:3078558,4812305:0,0,0 +(1,14451:3078558,49800853:0,16384,2228224 +g1,14451:29030814,49800853 +g1,14451:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14451:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14451:37855564,49800853:1179648,16384,0 +) +) +k1,14451:3078556,49800853:-34777008 +) +] +g1,14451:6630773,4812305 +k1,14451:19575446,4812305:11749296 +g1,14451:21198117,4812305 +g1,14451:21985204,4812305 +g1,14451:24539797,4812305 +g1,14451:25949476,4812305 +g1,14451:28728857,4812305 +g1,14451:29852144,4812305 +) +) +] +[1,14451:6630773,45706769:25952256,40108032,0 +(1,14451:6630773,45706769:25952256,40108032,0 +(1,14451:6630773,45706769:0,0,0 +g1,14451:6630773,45706769 +) +[1,14451:6630773,45706769:25952256,40108032,0 +v1,14395:6630773,6254097:0,393216,0 +(1,14395:6630773,24656548:25952256,18795667,196608 +g1,14395:6630773,24656548 +g1,14395:6630773,24656548 +g1,14395:6434165,24656548 +(1,14395:6434165,24656548:0,18795667,196608 +r1,14451:32779637,24656548:26345472,18992275,196608 +k1,14395:6434165,24656548:-26345472 +) +(1,14395:6434165,24656548:26345472,18795667,196608 +[1,14395:6630773,24656548:25952256,18599059,0 +(1,14371:6630773,6481928:25952256,424439,79822 +h1,14371:6630773,6481928:0,0,0 +g1,14371:7626635,6481928 +g1,14371:7958589,6481928 +g1,14371:8290543,6481928 +g1,14371:8622497,6481928 +g1,14371:8954451,6481928 +g1,14371:9286405,6481928 +g1,14371:9618359,6481928 +g1,14371:9950313,6481928 +g1,14371:10282267,6481928 +g1,14371:10614221,6481928 +g1,14371:10946175,6481928 +g1,14371:11278129,6481928 +g1,14371:11610083,6481928 +g1,14371:14597668,6481928 +g1,14371:16257438,6481928 +g1,14371:18249162,6481928 +g1,14371:18913070,6481928 +g1,14371:20904794,6481928 +k1,14371:20904794,6481928:0 +h1,14371:23560426,6481928:0,0,0 +k1,14371:32583029,6481928:9022603 +g1,14371:32583029,6481928 +) +(1,14371:6630773,7166783:25952256,424439,106246 +h1,14371:6630773,7166783:0,0,0 +g1,14371:7626635,7166783 +g1,14371:11610082,7166783 +g1,14371:11942036,7166783 +g1,14371:14597668,7166783 +g1,14371:14929622,7166783 +g1,14371:15261576,7166783 +g1,14371:18249161,7166783 +g1,14371:18581115,7166783 +g1,14371:18913069,7166783 +g1,14371:20904793,7166783 +g1,14371:21236747,7166783 +g1,14371:21568701,7166783 +g1,14371:21900655,7166783 +h1,14371:23560425,7166783:0,0,0 +k1,14371:32583029,7166783:9022604 +g1,14371:32583029,7166783 +) +(1,14371:6630773,7851638:25952256,424439,106246 +h1,14371:6630773,7851638:0,0,0 +g1,14371:7626635,7851638 +g1,14371:9618359,7851638 +g1,14371:9950313,7851638 +g1,14371:10282267,7851638 +g1,14371:10614221,7851638 +g1,14371:10946175,7851638 +g1,14371:11278129,7851638 +g1,14371:11610083,7851638 +g1,14371:11942037,7851638 +g1,14371:14597669,7851638 +g1,14371:14929623,7851638 +g1,14371:15261577,7851638 +g1,14371:15593531,7851638 +g1,14371:18249163,7851638 +g1,14371:18581117,7851638 +g1,14371:18913071,7851638 +g1,14371:20904795,7851638 +g1,14371:21236749,7851638 +g1,14371:21568703,7851638 +g1,14371:21900657,7851638 +h1,14371:23560427,7851638:0,0,0 +k1,14371:32583029,7851638:9022602 +g1,14371:32583029,7851638 +) +(1,14371:6630773,8536493:25952256,424439,106246 +h1,14371:6630773,8536493:0,0,0 +g1,14371:7626635,8536493 +g1,14371:11278128,8536493 +g1,14371:11610082,8536493 +g1,14371:11942036,8536493 +g1,14371:14597668,8536493 +g1,14371:14929622,8536493 +g1,14371:15261576,8536493 +g1,14371:15593530,8536493 +g1,14371:18249162,8536493 +g1,14371:18581116,8536493 +g1,14371:18913070,8536493 +g1,14371:20904794,8536493 +g1,14371:21236748,8536493 +g1,14371:21568702,8536493 +g1,14371:21900656,8536493 +h1,14371:23560426,8536493:0,0,0 +k1,14371:32583029,8536493:9022603 +g1,14371:32583029,8536493 +) +(1,14371:6630773,9221348:25952256,398014,0 +h1,14371:6630773,9221348:0,0,0 +h1,14371:7294681,9221348:0,0,0 +k1,14371:32583029,9221348:25288348 +g1,14371:32583029,9221348 +) +(1,14371:6630773,9906203:25952256,431045,112852 +h1,14371:6630773,9906203:0,0,0 +g1,14371:7626635,9906203 +g1,14371:10614220,9906203 +g1,14371:13601805,9906203 +g1,14371:15925483,9906203 +g1,14371:17917207,9906203 +g1,14371:18913069,9906203 +g1,14371:19908931,9906203 +g1,14371:22564563,9906203 +g1,14371:23560425,9906203 +h1,14371:25884103,9906203:0,0,0 +k1,14371:32583029,9906203:6698926 +g1,14371:32583029,9906203 +) +(1,14371:6630773,10591058:25952256,424439,112852 +h1,14371:6630773,10591058:0,0,0 +g1,14371:7626635,10591058 +g1,14371:10614220,10591058 +g1,14371:14265713,10591058 +g1,14371:14597667,10591058 +g1,14371:17253299,10591058 +g1,14371:20240884,10591058 +g1,14371:23892377,10591058 +g1,14371:24224331,10591058 +h1,14371:26216055,10591058:0,0,0 +k1,14371:32583029,10591058:6366974 +g1,14371:32583029,10591058 +) +(1,14371:6630773,11275913:25952256,424439,106246 +h1,14371:6630773,11275913:0,0,0 +g1,14371:7626635,11275913 +g1,14371:11942036,11275913 +g1,14371:13933760,11275913 +g1,14371:14929622,11275913 +g1,14371:15593530,11275913 +g1,14371:16921346,11275913 +g1,14371:17917208,11275913 +g1,14371:19245024,11275913 +g1,14371:19576978,11275913 +g1,14371:22564564,11275913 +k1,14371:22564564,11275913:0 +h1,14371:25552150,11275913:0,0,0 +k1,14371:32583029,11275913:7030879 +g1,14371:32583029,11275913 +) +(1,14373:6630773,12091840:25952256,431045,106246 +(1,14372:6630773,12091840:0,0,0 +g1,14372:6630773,12091840 +g1,14372:6630773,12091840 +g1,14372:6303093,12091840 +(1,14372:6303093,12091840:0,0,0 +) +g1,14372:6630773,12091840 +) +k1,14373:6630773,12091840:0 +h1,14373:10946175,12091840:0,0,0 +k1,14373:32583029,12091840:21636854 +g1,14373:32583029,12091840 +) +(1,14394:6630773,12907767:25952256,398014,0 +(1,14375:6630773,12907767:0,0,0 +g1,14375:6630773,12907767 +g1,14375:6630773,12907767 +g1,14375:6303093,12907767 +(1,14375:6303093,12907767:0,0,0 +) +g1,14375:6630773,12907767 +) +h1,14394:7294681,12907767:0,0,0 +k1,14394:32583029,12907767:25288348 +g1,14394:32583029,12907767 +) +(1,14394:6630773,13592622:25952256,424439,8257 +h1,14394:6630773,13592622:0,0,0 +g1,14394:7626635,13592622 +h1,14394:9286405,13592622:0,0,0 +k1,14394:32583029,13592622:23296624 +g1,14394:32583029,13592622 +) +(1,14394:6630773,14277477:25952256,431045,106246 +h1,14394:6630773,14277477:0,0,0 +g1,14394:7626635,14277477 +g1,14394:11278128,14277477 +g1,14394:11942036,14277477 +g1,14394:13601806,14277477 +g1,14394:14265714,14277477 +g1,14394:18249161,14277477 +g1,14394:19908931,14277477 +g1,14394:20572839,14277477 +h1,14394:22232609,14277477:0,0,0 +k1,14394:32583029,14277477:10350420 +g1,14394:32583029,14277477 +) +(1,14394:6630773,14962332:25952256,398014,0 +h1,14394:6630773,14962332:0,0,0 +h1,14394:7294681,14962332:0,0,0 +k1,14394:32583029,14962332:25288348 +g1,14394:32583029,14962332 +) +(1,14394:6630773,15647187:25952256,424439,6605 +h1,14394:6630773,15647187:0,0,0 +g1,14394:7626635,15647187 +h1,14394:10946174,15647187:0,0,0 +k1,14394:32583030,15647187:21636856 +g1,14394:32583030,15647187 +) +(1,14394:6630773,16332042:25952256,424439,86428 +h1,14394:6630773,16332042:0,0,0 +g1,14394:7626635,16332042 +g1,14394:7958589,16332042 +g1,14394:8290543,16332042 +g1,14394:8622497,16332042 +g1,14394:8954451,16332042 +g1,14394:10282267,16332042 +g1,14394:10614221,16332042 +g1,14394:10946175,16332042 +g1,14394:11278129,16332042 +g1,14394:11610083,16332042 +g1,14394:11942037,16332042 +g1,14394:12937899,16332042 +g1,14394:13269853,16332042 +g1,14394:15593531,16332042 +g1,14394:15925485,16332042 +g1,14394:16257439,16332042 +g1,14394:16589393,16332042 +g1,14394:16921347,16332042 +g1,14394:17253301,16332042 +g1,14394:18249163,16332042 +g1,14394:18581117,16332042 +g1,14394:18913071,16332042 +g1,14394:19245025,16332042 +g1,14394:19576979,16332042 +h1,14394:20572841,16332042:0,0,0 +k1,14394:32583029,16332042:12010188 +g1,14394:32583029,16332042 +) +(1,14394:6630773,17016897:25952256,407923,9908 +h1,14394:6630773,17016897:0,0,0 +g1,14394:7626635,17016897 +g1,14394:10282267,17016897 +g1,14394:10614221,17016897 +g1,14394:12937899,17016897 +g1,14394:13269853,17016897 +g1,14394:15593531,17016897 +g1,14394:15925485,17016897 +g1,14394:16257439,17016897 +g1,14394:18249163,17016897 +g1,14394:18581117,17016897 +h1,14394:20572841,17016897:0,0,0 +k1,14394:32583029,17016897:12010188 +g1,14394:32583029,17016897 +) +(1,14394:6630773,17701752:25952256,398014,0 +h1,14394:6630773,17701752:0,0,0 +h1,14394:7294681,17701752:0,0,0 +k1,14394:32583029,17701752:25288348 +g1,14394:32583029,17701752 +) +(1,14394:6630773,18386607:25952256,431045,8257 +h1,14394:6630773,18386607:0,0,0 +g1,14394:7626635,18386607 +h1,14394:11942036,18386607:0,0,0 +k1,14394:32583028,18386607:20640992 +g1,14394:32583028,18386607 +) +(1,14394:6630773,19071462:25952256,424439,79822 +h1,14394:6630773,19071462:0,0,0 +g1,14394:7626635,19071462 +g1,14394:7958589,19071462 +g1,14394:8290543,19071462 +g1,14394:8622497,19071462 +g1,14394:8954451,19071462 +g1,14394:9286405,19071462 +g1,14394:9618359,19071462 +g1,14394:9950313,19071462 +g1,14394:10282267,19071462 +g1,14394:10614221,19071462 +g1,14394:10946175,19071462 +g1,14394:11278129,19071462 +g1,14394:11610083,19071462 +g1,14394:14597668,19071462 +g1,14394:16257438,19071462 +g1,14394:18249162,19071462 +g1,14394:18913070,19071462 +g1,14394:20904794,19071462 +k1,14394:20904794,19071462:0 +h1,14394:23560426,19071462:0,0,0 +k1,14394:32583029,19071462:9022603 +g1,14394:32583029,19071462 +) +(1,14394:6630773,19756317:25952256,424439,106246 +h1,14394:6630773,19756317:0,0,0 +g1,14394:7626635,19756317 +g1,14394:11610082,19756317 +g1,14394:11942036,19756317 +g1,14394:14597668,19756317 +g1,14394:14929622,19756317 +g1,14394:15261576,19756317 +g1,14394:15593530,19756317 +g1,14394:18249162,19756317 +g1,14394:18581116,19756317 +g1,14394:18913070,19756317 +g1,14394:20904794,19756317 +g1,14394:21236748,19756317 +g1,14394:21568702,19756317 +g1,14394:23892380,19756317 +h1,14394:24224334,19756317:0,0,0 +k1,14394:32583029,19756317:8358695 +g1,14394:32583029,19756317 +) +(1,14394:6630773,20441172:25952256,424439,106246 +h1,14394:6630773,20441172:0,0,0 +g1,14394:7626635,20441172 +g1,14394:11278128,20441172 +g1,14394:11610082,20441172 +g1,14394:11942036,20441172 +g1,14394:14597668,20441172 +g1,14394:14929622,20441172 +g1,14394:15261576,20441172 +g1,14394:15593530,20441172 +g1,14394:18249162,20441172 +g1,14394:18581116,20441172 +g1,14394:18913070,20441172 +g1,14394:20904794,20441172 +g1,14394:21236748,20441172 +g1,14394:23892380,20441172 +h1,14394:24888242,20441172:0,0,0 +k1,14394:32583029,20441172:7694787 +g1,14394:32583029,20441172 +) +(1,14394:6630773,21126027:25952256,398014,0 +h1,14394:6630773,21126027:0,0,0 +g1,14394:7626635,21126027 +k1,14394:7626635,21126027:0 +h1,14394:8622497,21126027:0,0,0 +k1,14394:32583029,21126027:23960532 +g1,14394:32583029,21126027 +) +(1,14394:6630773,21810882:25952256,431045,112852 +h1,14394:6630773,21810882:0,0,0 +g1,14394:7626635,21810882 +g1,14394:10282267,21810882 +g1,14394:12605945,21810882 +g1,14394:12937899,21810882 +g1,14394:13601807,21810882 +g1,14394:15593531,21810882 +g1,14394:17585255,21810882 +g1,14394:19245025,21810882 +g1,14394:20904795,21810882 +g1,14394:22232611,21810882 +g1,14394:23892381,21810882 +g1,14394:25220197,21810882 +g1,14394:26548013,21810882 +g1,14394:27211921,21810882 +g1,14394:27875829,21810882 +h1,14394:28207783,21810882:0,0,0 +k1,14394:32583029,21810882:4375246 +g1,14394:32583029,21810882 +) +(1,14394:6630773,22495737:25952256,398014,0 +h1,14394:6630773,22495737:0,0,0 +h1,14394:7294681,22495737:0,0,0 +k1,14394:32583029,22495737:25288348 +g1,14394:32583029,22495737 +) +(1,14394:6630773,23180592:25952256,431045,112852 +h1,14394:6630773,23180592:0,0,0 +g1,14394:7626635,23180592 +g1,14394:10614220,23180592 +g1,14394:13601805,23180592 +g1,14394:15925483,23180592 +g1,14394:17917207,23180592 +g1,14394:18913069,23180592 +g1,14394:19908931,23180592 +g1,14394:22564563,23180592 +g1,14394:23560425,23180592 +h1,14394:25884103,23180592:0,0,0 +k1,14394:32583029,23180592:6698926 +g1,14394:32583029,23180592 +) +(1,14394:6630773,23865447:25952256,424439,112852 +h1,14394:6630773,23865447:0,0,0 +g1,14394:7626635,23865447 +g1,14394:10614220,23865447 +g1,14394:14265713,23865447 +g1,14394:14597667,23865447 +g1,14394:17253299,23865447 +g1,14394:20240884,23865447 +g1,14394:23892377,23865447 +g1,14394:24224331,23865447 +h1,14394:26216055,23865447:0,0,0 +k1,14394:32583029,23865447:6366974 +g1,14394:32583029,23865447 +) +(1,14394:6630773,24550302:25952256,424439,106246 +h1,14394:6630773,24550302:0,0,0 +g1,14394:7626635,24550302 +g1,14394:11942036,24550302 +g1,14394:13933760,24550302 +g1,14394:14929622,24550302 +g1,14394:15593530,24550302 +g1,14394:16921346,24550302 +g1,14394:17917208,24550302 +g1,14394:19245024,24550302 +g1,14394:19576978,24550302 +g1,14394:22564564,24550302 +k1,14394:22564564,24550302:0 +h1,14394:24888242,24550302:0,0,0 +k1,14394:32583029,24550302:7694787 +g1,14394:32583029,24550302 +) +] +) +g1,14395:32583029,24656548 +g1,14395:6630773,24656548 +g1,14395:6630773,24656548 +g1,14395:32583029,24656548 +g1,14395:32583029,24656548 +) +h1,14395:6630773,24853156:0,0,0 +(1,14399:6630773,25718236:25952256,513147,134348 +h1,14398:6630773,25718236:983040,0,0 +k1,14398:8306837,25718236:215267 +k1,14398:9390455,25718236:215266 +k1,14398:11042927,25718236:215267 +k1,14398:11614054,25718236:215267 +k1,14398:13817027,25718236:215266 +k1,14398:15426245,25718236:215267 +k1,14398:18868505,25718236:215267 +k1,14398:20926643,25718236:215266 +k1,14398:23700436,25718236:215267 +k1,14398:27196435,25718236:215267 +(1,14398:27196435,25718236:0,414482,115847 +r1,14451:28961548,25718236:1765113,530329,115847 +k1,14398:27196435,25718236:-1765113 +) +(1,14398:27196435,25718236:1765113,414482,115847 +k1,14398:27196435,25718236:3277 +h1,14398:28958271,25718236:0,411205,112570 +) +k1,14398:29176814,25718236:215266 +k1,14398:30595322,25718236:215267 +k1,14398:32583029,25718236:0 +) +(1,14399:6630773,26583316:25952256,513147,126483 +k1,14398:7944683,26583316:207662 +k1,14398:8900110,26583316:207661 +k1,14398:10875278,26583316:207662 +k1,14398:11769102,26583316:207662 +k1,14398:12995849,26583316:207662 +k1,14398:14805210,26583316:207661 +k1,14398:17699193,26583316:207662 +k1,14398:19894562,26583316:207662 +k1,14398:20753652,26583316:207662 +k1,14398:21709079,26583316:207661 +k1,14398:24882900,26583316:207662 +k1,14398:25741990,26583316:207662 +k1,14398:28276835,26583316:207662 +k1,14398:29143788,26583316:207661 +k1,14398:30508160,26583316:207662 +k1,14398:32583029,26583316:0 +) +(1,14399:6630773,27448396:25952256,505283,126483 +k1,14398:7747782,27448396:274871 +k1,14398:9459858,27448396:274871 +k1,14398:10907169,27448396:274872 +k1,14398:13299508,27448396:274871 +k1,14398:15892387,27448396:274871 +k1,14398:16783296,27448396:274871 +k1,14398:17414027,27448396:274871 +k1,14398:18682425,27448396:274872 +k1,14398:20148741,27448396:274871 +k1,14398:22161627,27448396:274871 +k1,14398:24075553,27448396:274871 +(1,14398:24075553,27448396:0,452978,115847 +r1,14451:25840666,27448396:1765113,568825,115847 +k1,14398:24075553,27448396:-1765113 +) +(1,14398:24075553,27448396:1765113,452978,115847 +k1,14398:24075553,27448396:3277 +h1,14398:25837389,27448396:0,411205,112570 +) +k1,14398:26115537,27448396:274871 +k1,14398:27581854,27448396:274872 +(1,14398:27581854,27448396:0,414482,115847 +r1,14451:29346967,27448396:1765113,530329,115847 +k1,14398:27581854,27448396:-1765113 +) +(1,14398:27581854,27448396:1765113,414482,115847 +k1,14398:27581854,27448396:3277 +h1,14398:29343690,27448396:0,411205,112570 +) +k1,14398:29795508,27448396:274871 +k1,14398:31450567,27448396:274871 +k1,14398:32583029,27448396:0 +) +(1,14399:6630773,28313476:25952256,513147,126483 +k1,14398:9114631,28313476:231386 +k1,14398:10365101,28313476:231385 +k1,14398:12422975,28313476:231386 +k1,14398:13313653,28313476:231386 +k1,14398:14564124,28313476:231386 +k1,14398:17550643,28313476:231385 +k1,14398:20025982,28313476:231386 +k1,14398:20885203,28313476:231386 +k1,14398:22135674,28313476:231386 +k1,14398:23751179,28313476:231385 +k1,14398:26817652,28313476:231386 +k1,14398:27917390,28313476:231386 +k1,14398:29173759,28313476:231386 +k1,14398:30689650,28313476:231385 +k1,14398:32227169,28313476:231386 +k1,14398:32583029,28313476:0 +) +(1,14399:6630773,29178556:25952256,505283,115847 +k1,14398:9888439,29178556:189270 +k1,14398:12147992,29178556:189271 +k1,14398:12868759,29178556:189270 +k1,14398:14635482,29178556:189271 +k1,14398:16016197,29178556:189270 +k1,14398:17718039,29178556:189271 +(1,14398:17718039,29178556:0,452978,115847 +r1,14451:19483152,29178556:1765113,568825,115847 +k1,14398:17718039,29178556:-1765113 +) +(1,14398:17718039,29178556:1765113,452978,115847 +k1,14398:17718039,29178556:3277 +h1,14398:19479875,29178556:0,411205,112570 +) +k1,14398:19672422,29178556:189270 +k1,14398:20393190,29178556:189271 +k1,14398:23357910,29178556:189270 +k1,14398:26076871,29178556:189271 +k1,14398:26724238,29178556:189270 +k1,14398:29481865,29178556:189271 +k1,14398:32583029,29178556:0 +) +(1,14399:6630773,30043636:25952256,513147,126483 +k1,14398:7611429,30043636:226337 +k1,14398:11004467,30043636:226338 +k1,14398:12560530,30043636:226337 +k1,14398:17213169,30043636:226337 +k1,14398:17795367,30043636:226338 +k1,14398:20555326,30043636:226337 +k1,14398:22851946,30043636:226338 +k1,14398:23609780,30043636:226337 +k1,14398:25413569,30043636:226337 +k1,14398:30514475,30043636:226338 +k1,14398:31426974,30043636:226337 +k1,14398:32583029,30043636:0 +) +(1,14399:6630773,30908716:25952256,473825,7863 +k1,14399:32583030,30908716:22950708 +g1,14399:32583030,30908716 +) +v1,14401:6630773,31593571:0,393216,0 +(1,14451:6630773,45510161:25952256,14309806,196608 +g1,14451:6630773,45510161 +g1,14451:6630773,45510161 +g1,14451:6434165,45510161 +(1,14451:6434165,45510161:0,14309806,196608 +r1,14451:32779637,45510161:26345472,14506414,196608 +k1,14451:6434165,45510161:-26345472 +) +(1,14451:6434165,45510161:26345472,14309806,196608 +[1,14451:6630773,45510161:25952256,14113198,0 +(1,14403:6630773,31828008:25952256,431045,9908 +(1,14402:6630773,31828008:0,0,0 +g1,14402:6630773,31828008 +g1,14402:6630773,31828008 +g1,14402:6303093,31828008 +(1,14402:6303093,31828008:0,0,0 +) +g1,14402:6630773,31828008 +) +g1,14403:8290543,31828008 +k1,14403:8290543,31828008:0 +h1,14403:8954451,31828008:0,0,0 +k1,14403:32583029,31828008:23628578 +g1,14403:32583029,31828008 +) +(1,14404:6630773,32512863:25952256,431045,106246 +h1,14404:6630773,32512863:0,0,0 +g1,14404:6962727,32512863 +g1,14404:7294681,32512863 +k1,14404:7294681,32512863:0 +h1,14404:10282267,32512863:0,0,0 +k1,14404:32583029,32512863:22300762 +g1,14404:32583029,32512863 +) +(1,14405:6630773,33197718:25952256,424439,106246 +h1,14405:6630773,33197718:0,0,0 +g1,14405:6962727,33197718 +g1,14405:7294681,33197718 +g1,14405:7626635,33197718 +g1,14405:7958589,33197718 +g1,14405:8290543,33197718 +g1,14405:8622497,33197718 +g1,14405:8954451,33197718 +g1,14405:10946175,33197718 +g1,14405:11610083,33197718 +g1,14405:13269853,33197718 +g1,14405:13933761,33197718 +g1,14405:15925485,33197718 +g1,14405:16589393,33197718 +g1,14405:20240887,33197718 +g1,14405:20904795,33197718 +g1,14405:24556289,33197718 +g1,14405:25220197,33197718 +k1,14405:25220197,33197718:0 +h1,14405:28871691,33197718:0,0,0 +k1,14405:32583029,33197718:3711338 +g1,14405:32583029,33197718 +) +(1,14427:6630773,33761380:25952256,407923,9908 +(1,14407:6630773,33761380:0,0,0 +g1,14407:6630773,33761380 +g1,14407:6630773,33761380 +g1,14407:6303093,33761380 +(1,14407:6303093,33761380:0,0,0 +) +g1,14407:6630773,33761380 +) +g1,14427:7626635,33761380 +g1,14427:9950313,33761380 +g1,14427:10282267,33761380 +h1,14427:13601806,33761380:0,0,0 +k1,14427:32583030,33761380:18981224 +g1,14427:32583030,33761380 +) +(1,14427:6630773,34446235:25952256,424439,106246 +h1,14427:6630773,34446235:0,0,0 +g1,14427:7626635,34446235 +g1,14427:9286405,34446235 +g1,14427:9950313,34446235 +g1,14427:11942037,34446235 +g1,14427:12605945,34446235 +h1,14427:15925484,34446235:0,0,0 +k1,14427:32583029,34446235:16657545 +g1,14427:32583029,34446235 +) +(1,14427:6630773,35131090:25952256,398014,0 +h1,14427:6630773,35131090:0,0,0 +h1,14427:7294681,35131090:0,0,0 +k1,14427:32583029,35131090:25288348 +g1,14427:32583029,35131090 +) +(1,14427:6630773,35815945:25952256,431045,106246 +h1,14427:6630773,35815945:0,0,0 +g1,14427:7626635,35815945 +g1,14427:7958589,35815945 +g1,14427:8290543,35815945 +g1,14427:8622497,35815945 +g1,14427:8954451,35815945 +g1,14427:9286405,35815945 +g1,14427:9618359,35815945 +g1,14427:9950313,35815945 +g1,14427:10282267,35815945 +g1,14427:10614221,35815945 +g1,14427:10946175,35815945 +g1,14427:11278129,35815945 +g1,14427:11610083,35815945 +g1,14427:11942037,35815945 +g1,14427:12937899,35815945 +g1,14427:14265715,35815945 +g1,14427:15261577,35815945 +g1,14427:16257439,35815945 +g1,14427:16589393,35815945 +g1,14427:16921347,35815945 +g1,14427:18249163,35815945 +g1,14427:18581117,35815945 +g1,14427:18913071,35815945 +g1,14427:19245025,35815945 +h1,14427:20240887,35815945:0,0,0 +k1,14427:32583029,35815945:12342142 +g1,14427:32583029,35815945 +) +(1,14427:6630773,36500800:25952256,424439,106246 +h1,14427:6630773,36500800:0,0,0 +g1,14427:7626635,36500800 +g1,14427:8290543,36500800 +g1,14427:10282267,36500800 +g1,14427:10614221,36500800 +g1,14427:10946175,36500800 +g1,14427:11278129,36500800 +g1,14427:11610083,36500800 +g1,14427:11942037,36500800 +g1,14427:12273991,36500800 +g1,14427:12937899,36500800 +g1,14427:13269853,36500800 +g1,14427:13601807,36500800 +g1,14427:13933761,36500800 +g1,14427:14265715,36500800 +g1,14427:16257439,36500800 +g1,14427:18249163,36500800 +h1,14427:20240887,36500800:0,0,0 +k1,14427:32583029,36500800:12342142 +g1,14427:32583029,36500800 +) +(1,14427:6630773,37185655:25952256,407923,9908 +h1,14427:6630773,37185655:0,0,0 +g1,14427:7626635,37185655 +g1,14427:9950313,37185655 +g1,14427:10282267,37185655 +g1,14427:10614221,37185655 +g1,14427:10946175,37185655 +g1,14427:11278129,37185655 +g1,14427:11610083,37185655 +g1,14427:11942037,37185655 +g1,14427:12273991,37185655 +g1,14427:12605945,37185655 +g1,14427:12937899,37185655 +g1,14427:13269853,37185655 +g1,14427:13601807,37185655 +g1,14427:13933761,37185655 +g1,14427:14265715,37185655 +g1,14427:14597669,37185655 +g1,14427:14929623,37185655 +g1,14427:15261577,37185655 +g1,14427:15593531,37185655 +g1,14427:15925485,37185655 +g1,14427:16257439,37185655 +g1,14427:18249163,37185655 +h1,14427:20240887,37185655:0,0,0 +k1,14427:32583029,37185655:12342142 +g1,14427:32583029,37185655 +) +(1,14427:6630773,37870510:25952256,424439,106246 +h1,14427:6630773,37870510:0,0,0 +g1,14427:7626635,37870510 +g1,14427:8290543,37870510 +g1,14427:11942036,37870510 +g1,14427:12273990,37870510 +g1,14427:12937898,37870510 +g1,14427:13269852,37870510 +g1,14427:13601806,37870510 +g1,14427:13933760,37870510 +g1,14427:16257438,37870510 +g1,14427:18249162,37870510 +h1,14427:20240886,37870510:0,0,0 +k1,14427:32583029,37870510:12342143 +g1,14427:32583029,37870510 +) +(1,14427:6630773,38555365:25952256,424439,106246 +h1,14427:6630773,38555365:0,0,0 +g1,14427:7626635,38555365 +g1,14427:8290543,38555365 +g1,14427:11942036,38555365 +g1,14427:12273990,38555365 +g1,14427:12937898,38555365 +g1,14427:13269852,38555365 +g1,14427:13601806,38555365 +g1,14427:13933760,38555365 +g1,14427:16257438,38555365 +g1,14427:18249162,38555365 +h1,14427:20240886,38555365:0,0,0 +k1,14427:32583029,38555365:12342143 +g1,14427:32583029,38555365 +) +(1,14427:6630773,39240220:25952256,424439,106246 +h1,14427:6630773,39240220:0,0,0 +g1,14427:7626635,39240220 +g1,14427:8290543,39240220 +g1,14427:11942036,39240220 +g1,14427:12273990,39240220 +g1,14427:12937898,39240220 +g1,14427:13269852,39240220 +g1,14427:13601806,39240220 +g1,14427:13933760,39240220 +g1,14427:16257438,39240220 +g1,14427:18249162,39240220 +h1,14427:20240886,39240220:0,0,0 +k1,14427:32583029,39240220:12342143 +g1,14427:32583029,39240220 +) +(1,14427:6630773,39925075:25952256,398014,0 +h1,14427:6630773,39925075:0,0,0 +h1,14427:7294681,39925075:0,0,0 +k1,14427:32583029,39925075:25288348 +g1,14427:32583029,39925075 +) +(1,14427:6630773,40609930:25952256,407923,106246 +h1,14427:6630773,40609930:0,0,0 +g1,14427:7626635,40609930 +g1,14427:9618359,40609930 +g1,14427:9950313,40609930 +h1,14427:13269852,40609930:0,0,0 +k1,14427:32583028,40609930:19313176 +g1,14427:32583028,40609930 +) +(1,14427:6630773,41294785:25952256,424439,106246 +h1,14427:6630773,41294785:0,0,0 +g1,14427:7626635,41294785 +g1,14427:9286405,41294785 +g1,14427:9950313,41294785 +h1,14427:13269852,41294785:0,0,0 +k1,14427:32583028,41294785:19313176 +g1,14427:32583028,41294785 +) +(1,14427:6630773,41979640:25952256,398014,0 +h1,14427:6630773,41979640:0,0,0 +h1,14427:7294681,41979640:0,0,0 +k1,14427:32583029,41979640:25288348 +g1,14427:32583029,41979640 +) +(1,14427:6630773,42664495:25952256,431045,106246 +h1,14427:6630773,42664495:0,0,0 +g1,14427:7626635,42664495 +g1,14427:7958589,42664495 +g1,14427:8290543,42664495 +g1,14427:8622497,42664495 +g1,14427:8954451,42664495 +g1,14427:9286405,42664495 +g1,14427:9618359,42664495 +g1,14427:9950313,42664495 +g1,14427:10282267,42664495 +g1,14427:10614221,42664495 +g1,14427:10946175,42664495 +g1,14427:11278129,42664495 +g1,14427:11610083,42664495 +g1,14427:11942037,42664495 +g1,14427:12937899,42664495 +g1,14427:14265715,42664495 +g1,14427:15261577,42664495 +g1,14427:16257439,42664495 +g1,14427:16589393,42664495 +g1,14427:16921347,42664495 +g1,14427:18249163,42664495 +g1,14427:18581117,42664495 +g1,14427:18913071,42664495 +g1,14427:19245025,42664495 +h1,14427:20240887,42664495:0,0,0 +k1,14427:32583029,42664495:12342142 +g1,14427:32583029,42664495 +) +(1,14427:6630773,43349350:25952256,407923,9908 +h1,14427:6630773,43349350:0,0,0 +g1,14427:7626635,43349350 +g1,14427:9950313,43349350 +g1,14427:10282267,43349350 +g1,14427:10614221,43349350 +g1,14427:10946175,43349350 +g1,14427:11278129,43349350 +g1,14427:11610083,43349350 +g1,14427:11942037,43349350 +g1,14427:12273991,43349350 +g1,14427:12605945,43349350 +g1,14427:12937899,43349350 +g1,14427:13269853,43349350 +g1,14427:13601807,43349350 +g1,14427:13933761,43349350 +g1,14427:14265715,43349350 +g1,14427:14597669,43349350 +g1,14427:14929623,43349350 +g1,14427:15261577,43349350 +g1,14427:15593531,43349350 +g1,14427:15925485,43349350 +g1,14427:16257439,43349350 +g1,14427:18249163,43349350 +h1,14427:20240887,43349350:0,0,0 +k1,14427:32583029,43349350:12342142 +g1,14427:32583029,43349350 +) +(1,14427:6630773,44034205:25952256,424439,106246 +h1,14427:6630773,44034205:0,0,0 +g1,14427:7626635,44034205 +g1,14427:8290543,44034205 +g1,14427:10282267,44034205 +g1,14427:10614221,44034205 +g1,14427:10946175,44034205 +g1,14427:11278129,44034205 +g1,14427:11610083,44034205 +g1,14427:11942037,44034205 +g1,14427:12273991,44034205 +g1,14427:12937899,44034205 +g1,14427:13269853,44034205 +g1,14427:13601807,44034205 +g1,14427:13933761,44034205 +g1,14427:14265715,44034205 +g1,14427:14597669,44034205 +g1,14427:16257439,44034205 +g1,14427:18249163,44034205 +h1,14427:20240887,44034205:0,0,0 +k1,14427:32583029,44034205:12342142 +g1,14427:32583029,44034205 +) +(1,14427:6630773,44719060:25952256,424439,106246 +h1,14427:6630773,44719060:0,0,0 +g1,14427:7626635,44719060 +g1,14427:8290543,44719060 +g1,14427:11942036,44719060 +g1,14427:12273990,44719060 +g1,14427:12937898,44719060 +g1,14427:13269852,44719060 +g1,14427:13601806,44719060 +g1,14427:13933760,44719060 +g1,14427:14265714,44719060 +g1,14427:14597668,44719060 +g1,14427:14929622,44719060 +g1,14427:16257438,44719060 +g1,14427:18249162,44719060 +h1,14427:20240886,44719060:0,0,0 +k1,14427:32583029,44719060:12342143 +g1,14427:32583029,44719060 +) +(1,14427:6630773,45403915:25952256,424439,106246 +h1,14427:6630773,45403915:0,0,0 +g1,14427:7626635,45403915 +g1,14427:8290543,45403915 +g1,14427:11942036,45403915 +g1,14427:12273990,45403915 +g1,14427:12937898,45403915 +g1,14427:13269852,45403915 +g1,14427:13601806,45403915 +g1,14427:13933760,45403915 +g1,14427:14265714,45403915 +g1,14427:14597668,45403915 +g1,14427:14929622,45403915 +g1,14427:16257438,45403915 +g1,14427:18249162,45403915 +h1,14427:20240886,45403915:0,0,0 +k1,14427:32583029,45403915:12342143 +g1,14427:32583029,45403915 +) +] +) +g1,14451:32583029,45510161 +g1,14451:6630773,45510161 +g1,14451:6630773,45510161 +g1,14451:32583029,45510161 +g1,14451:32583029,45510161 +) +] +(1,14451:32583029,45706769:0,0,0 +g1,14451:32583029,45706769 +) +) +] +(1,14451:6630773,47279633:25952256,0,0 +h1,14451:6630773,47279633:25952256,0,0 +) +] +(1,14451:4262630,4025873:0,0,0 +[1,14451:-473656,4025873:0,0,0 +(1,14451:-473656,-710413:0,0,0 +(1,14451:-473656,-710413:0,0,0 +g1,14451:-473656,-710413 +) +g1,14451:-473656,-710413 ) ] ) ] !30121 -}231 -Input:2464:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}232 Input:2467:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2468:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -255552,1076 +255747,1141 @@ Input:2481:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2482:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1944 -{232 -[1,14511:4262630,47279633:28320399,43253760,0 -(1,14511:4262630,4025873:0,0,0 -[1,14511:-473656,4025873:0,0,0 -(1,14511:-473656,-710413:0,0,0 -(1,14511:-473656,-644877:0,0,0 -k1,14511:-473656,-644877:-65536 +{233 +[1,14509:4262630,47279633:28320399,43253760,0 +(1,14509:4262630,4025873:0,0,0 +[1,14509:-473656,4025873:0,0,0 +(1,14509:-473656,-710413:0,0,0 +(1,14509:-473656,-644877:0,0,0 +k1,14509:-473656,-644877:-65536 ) -(1,14511:-473656,4736287:0,0,0 -k1,14511:-473656,4736287:5209943 +(1,14509:-473656,4736287:0,0,0 +k1,14509:-473656,4736287:5209943 ) -g1,14511:-473656,-710413 +g1,14509:-473656,-710413 ) ] ) -[1,14511:6630773,47279633:25952256,43253760,0 -[1,14511:6630773,4812305:25952256,786432,0 -(1,14511:6630773,4812305:25952256,505283,11795 -(1,14511:6630773,4812305:25952256,505283,11795 -g1,14511:3078558,4812305 -[1,14511:3078558,4812305:0,0,0 -(1,14511:3078558,2439708:0,1703936,0 -k1,14511:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14511:2537886,2439708:1179648,16384,0 +[1,14509:6630773,47279633:25952256,43253760,0 +[1,14509:6630773,4812305:25952256,786432,0 +(1,14509:6630773,4812305:25952256,505283,11795 +(1,14509:6630773,4812305:25952256,505283,11795 +g1,14509:3078558,4812305 +[1,14509:3078558,4812305:0,0,0 +(1,14509:3078558,2439708:0,1703936,0 +k1,14509:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14509:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14511:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14509:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14511:3078558,4812305:0,0,0 -(1,14511:3078558,2439708:0,1703936,0 -g1,14511:29030814,2439708 -g1,14511:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14511:36151628,1915420:16384,1179648,0 +[1,14509:3078558,4812305:0,0,0 +(1,14509:3078558,2439708:0,1703936,0 +g1,14509:29030814,2439708 +g1,14509:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14509:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14511:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14509:37855564,2439708:1179648,16384,0 ) ) -k1,14511:3078556,2439708:-34777008 +k1,14509:3078556,2439708:-34777008 ) ] -[1,14511:3078558,4812305:0,0,0 -(1,14511:3078558,49800853:0,16384,2228224 -k1,14511:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14511:2537886,49800853:1179648,16384,0 +[1,14509:3078558,4812305:0,0,0 +(1,14509:3078558,49800853:0,16384,2228224 +k1,14509:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14509:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14511:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14509:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14511:3078558,4812305:0,0,0 -(1,14511:3078558,49800853:0,16384,2228224 -g1,14511:29030814,49800853 -g1,14511:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14511:36151628,51504789:16384,1179648,0 +[1,14509:3078558,4812305:0,0,0 +(1,14509:3078558,49800853:0,16384,2228224 +g1,14509:29030814,49800853 +g1,14509:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14509:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14511:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14509:37855564,49800853:1179648,16384,0 ) ) -k1,14511:3078556,49800853:-34777008 +k1,14509:3078556,49800853:-34777008 ) ] -g1,14511:6630773,4812305 -g1,14511:6630773,4812305 -g1,14511:10529509,4812305 -g1,14511:12752490,4812305 -g1,14511:15101300,4812305 -k1,14511:31387652,4812305:16286352 -) -) -] -[1,14511:6630773,45706769:25952256,40108032,0 -(1,14511:6630773,45706769:25952256,40108032,0 -(1,14511:6630773,45706769:0,0,0 -g1,14511:6630773,45706769 -) -[1,14511:6630773,45706769:25952256,40108032,0 -v1,14453:6630773,6254097:0,393216,0 -(1,14453:6630773,19862563:25952256,14001682,196608 -g1,14453:6630773,19862563 -g1,14453:6630773,19862563 -g1,14453:6434165,19862563 -(1,14453:6434165,19862563:0,14001682,196608 -r1,14511:32779637,19862563:26345472,14198290,196608 -k1,14453:6434165,19862563:-26345472 -) -(1,14453:6434165,19862563:26345472,14001682,196608 -[1,14453:6630773,19862563:25952256,13805074,0 -(1,14429:6630773,6481928:25952256,424439,106246 -h1,14429:6630773,6481928:0,0,0 -g1,14429:7626635,6481928 -g1,14429:8290543,6481928 -g1,14429:11942036,6481928 -g1,14429:12273990,6481928 -g1,14429:12937898,6481928 -g1,14429:13269852,6481928 -g1,14429:13601806,6481928 -g1,14429:16257438,6481928 -g1,14429:18249162,6481928 -h1,14429:20240886,6481928:0,0,0 -k1,14429:32583029,6481928:12342143 -g1,14429:32583029,6481928 -) -(1,14431:6630773,7297855:25952256,431045,106246 -(1,14430:6630773,7297855:0,0,0 -g1,14430:6630773,7297855 -g1,14430:6630773,7297855 -g1,14430:6303093,7297855 -(1,14430:6303093,7297855:0,0,0 -) -g1,14430:6630773,7297855 -) -k1,14431:6630773,7297855:0 -h1,14431:10946175,7297855:0,0,0 -k1,14431:32583029,7297855:21636854 -g1,14431:32583029,7297855 -) -(1,14452:6630773,8113782:25952256,398014,0 -(1,14433:6630773,8113782:0,0,0 -g1,14433:6630773,8113782 -g1,14433:6630773,8113782 -g1,14433:6303093,8113782 -(1,14433:6303093,8113782:0,0,0 -) -g1,14433:6630773,8113782 -) -h1,14452:7294681,8113782:0,0,0 -k1,14452:32583029,8113782:25288348 -g1,14452:32583029,8113782 -) -(1,14452:6630773,8798637:25952256,424439,8257 -h1,14452:6630773,8798637:0,0,0 -g1,14452:7626635,8798637 -h1,14452:9286405,8798637:0,0,0 -k1,14452:32583029,8798637:23296624 -g1,14452:32583029,8798637 -) -(1,14452:6630773,9483492:25952256,431045,106246 -h1,14452:6630773,9483492:0,0,0 -g1,14452:7626635,9483492 -g1,14452:11278128,9483492 -g1,14452:11942036,9483492 -g1,14452:13601806,9483492 -g1,14452:14265714,9483492 -g1,14452:18249161,9483492 -g1,14452:19908931,9483492 -g1,14452:20572839,9483492 -h1,14452:22232609,9483492:0,0,0 -k1,14452:32583029,9483492:10350420 -g1,14452:32583029,9483492 -) -(1,14452:6630773,10168347:25952256,398014,0 -h1,14452:6630773,10168347:0,0,0 -h1,14452:7294681,10168347:0,0,0 -k1,14452:32583029,10168347:25288348 -g1,14452:32583029,10168347 -) -(1,14452:6630773,10853202:25952256,424439,6605 -h1,14452:6630773,10853202:0,0,0 -g1,14452:7626635,10853202 -h1,14452:10946174,10853202:0,0,0 -k1,14452:32583030,10853202:21636856 -g1,14452:32583030,10853202 -) -(1,14452:6630773,11538057:25952256,424439,86428 -h1,14452:6630773,11538057:0,0,0 -g1,14452:7626635,11538057 -g1,14452:7958589,11538057 -g1,14452:8290543,11538057 -g1,14452:8622497,11538057 -g1,14452:8954451,11538057 -g1,14452:10282267,11538057 -g1,14452:10614221,11538057 -g1,14452:10946175,11538057 -g1,14452:11278129,11538057 -g1,14452:11610083,11538057 -g1,14452:11942037,11538057 -g1,14452:12937899,11538057 -g1,14452:13269853,11538057 -g1,14452:15593531,11538057 -g1,14452:15925485,11538057 -g1,14452:16257439,11538057 -g1,14452:16589393,11538057 -g1,14452:16921347,11538057 -g1,14452:17253301,11538057 -g1,14452:18249163,11538057 -g1,14452:18581117,11538057 -g1,14452:18913071,11538057 -g1,14452:19245025,11538057 -g1,14452:19576979,11538057 -h1,14452:20572841,11538057:0,0,0 -k1,14452:32583029,11538057:12010188 -g1,14452:32583029,11538057 -) -(1,14452:6630773,12222912:25952256,407923,9908 -h1,14452:6630773,12222912:0,0,0 -g1,14452:7626635,12222912 -g1,14452:10282267,12222912 -g1,14452:10614221,12222912 -g1,14452:12937899,12222912 -g1,14452:13269853,12222912 -g1,14452:15593531,12222912 -g1,14452:15925485,12222912 -g1,14452:16257439,12222912 -g1,14452:18249163,12222912 -g1,14452:18581117,12222912 -h1,14452:20572841,12222912:0,0,0 -k1,14452:32583029,12222912:12010188 -g1,14452:32583029,12222912 -) -(1,14452:6630773,12907767:25952256,398014,0 -h1,14452:6630773,12907767:0,0,0 -h1,14452:7294681,12907767:0,0,0 -k1,14452:32583029,12907767:25288348 -g1,14452:32583029,12907767 -) -(1,14452:6630773,13592622:25952256,431045,8257 -h1,14452:6630773,13592622:0,0,0 -g1,14452:7626635,13592622 -h1,14452:11942036,13592622:0,0,0 -k1,14452:32583028,13592622:20640992 -g1,14452:32583028,13592622 -) -(1,14452:6630773,14277477:25952256,424439,79822 -h1,14452:6630773,14277477:0,0,0 -g1,14452:7626635,14277477 -g1,14452:7958589,14277477 -g1,14452:8290543,14277477 -g1,14452:8622497,14277477 -g1,14452:8954451,14277477 -g1,14452:9286405,14277477 -g1,14452:9618359,14277477 -g1,14452:9950313,14277477 -g1,14452:10282267,14277477 -g1,14452:10614221,14277477 -g1,14452:10946175,14277477 -g1,14452:11278129,14277477 -g1,14452:11610083,14277477 -g1,14452:14597668,14277477 -g1,14452:16257438,14277477 -g1,14452:18249162,14277477 -g1,14452:18913070,14277477 -g1,14452:20904794,14277477 -k1,14452:20904794,14277477:0 -h1,14452:23560426,14277477:0,0,0 -k1,14452:32583029,14277477:9022603 -g1,14452:32583029,14277477 -) -(1,14452:6630773,14962332:25952256,424439,106246 -h1,14452:6630773,14962332:0,0,0 -g1,14452:7626635,14962332 -g1,14452:11610082,14962332 -g1,14452:11942036,14962332 -g1,14452:14597668,14962332 -g1,14452:14929622,14962332 -g1,14452:15261576,14962332 -g1,14452:15593530,14962332 -g1,14452:18249162,14962332 -g1,14452:18581116,14962332 -g1,14452:18913070,14962332 -g1,14452:20904794,14962332 -g1,14452:21236748,14962332 -g1,14452:21568702,14962332 -g1,14452:23892380,14962332 -h1,14452:24224334,14962332:0,0,0 -k1,14452:32583029,14962332:8358695 -g1,14452:32583029,14962332 -) -(1,14452:6630773,15647187:25952256,424439,106246 -h1,14452:6630773,15647187:0,0,0 -g1,14452:7626635,15647187 -g1,14452:11278128,15647187 -g1,14452:11610082,15647187 -g1,14452:11942036,15647187 -g1,14452:14597668,15647187 -g1,14452:14929622,15647187 -g1,14452:15261576,15647187 -g1,14452:15593530,15647187 -g1,14452:18249162,15647187 -g1,14452:18581116,15647187 -g1,14452:18913070,15647187 -g1,14452:20904794,15647187 -g1,14452:21236748,15647187 -g1,14452:23892380,15647187 -h1,14452:24888242,15647187:0,0,0 -k1,14452:32583029,15647187:7694787 -g1,14452:32583029,15647187 -) -(1,14452:6630773,16332042:25952256,398014,0 -h1,14452:6630773,16332042:0,0,0 -g1,14452:7626635,16332042 -k1,14452:7626635,16332042:0 -h1,14452:8622497,16332042:0,0,0 -k1,14452:32583029,16332042:23960532 -g1,14452:32583029,16332042 -) -(1,14452:6630773,17016897:25952256,431045,112852 -h1,14452:6630773,17016897:0,0,0 -g1,14452:7626635,17016897 -g1,14452:10282267,17016897 -g1,14452:12605945,17016897 -g1,14452:12937899,17016897 -g1,14452:13601807,17016897 -g1,14452:15593531,17016897 -g1,14452:17585255,17016897 -g1,14452:19245025,17016897 -g1,14452:20904795,17016897 -g1,14452:22232611,17016897 -g1,14452:23892381,17016897 -g1,14452:25220197,17016897 -g1,14452:26548013,17016897 -g1,14452:27211921,17016897 -g1,14452:27875829,17016897 -h1,14452:28207783,17016897:0,0,0 -k1,14452:32583029,17016897:4375246 -g1,14452:32583029,17016897 -) -(1,14452:6630773,17701752:25952256,398014,0 -h1,14452:6630773,17701752:0,0,0 -h1,14452:7294681,17701752:0,0,0 -k1,14452:32583029,17701752:25288348 -g1,14452:32583029,17701752 -) -(1,14452:6630773,18386607:25952256,431045,112852 -h1,14452:6630773,18386607:0,0,0 -g1,14452:7626635,18386607 -g1,14452:10614220,18386607 -g1,14452:13601805,18386607 -g1,14452:15925483,18386607 -g1,14452:17917207,18386607 -g1,14452:18913069,18386607 -g1,14452:19908931,18386607 -g1,14452:22564563,18386607 -g1,14452:23560425,18386607 -h1,14452:25884103,18386607:0,0,0 -k1,14452:32583029,18386607:6698926 -g1,14452:32583029,18386607 -) -(1,14452:6630773,19071462:25952256,424439,112852 -h1,14452:6630773,19071462:0,0,0 -g1,14452:7626635,19071462 -g1,14452:10614220,19071462 -g1,14452:14265713,19071462 -g1,14452:14597667,19071462 -g1,14452:17253299,19071462 -g1,14452:20240884,19071462 -g1,14452:23892377,19071462 -g1,14452:24224331,19071462 -h1,14452:26216055,19071462:0,0,0 -k1,14452:32583029,19071462:6366974 -g1,14452:32583029,19071462 -) -(1,14452:6630773,19756317:25952256,424439,106246 -h1,14452:6630773,19756317:0,0,0 -g1,14452:7626635,19756317 -g1,14452:11942036,19756317 -g1,14452:13933760,19756317 -g1,14452:14929622,19756317 -g1,14452:15593530,19756317 -g1,14452:16921346,19756317 -g1,14452:17917208,19756317 -g1,14452:19245024,19756317 -g1,14452:19576978,19756317 -g1,14452:22564564,19756317 -k1,14452:22564564,19756317:0 -h1,14452:24888242,19756317:0,0,0 -k1,14452:32583029,19756317:7694787 -g1,14452:32583029,19756317 -) -] -) -g1,14453:32583029,19862563 -g1,14453:6630773,19862563 -g1,14453:6630773,19862563 -g1,14453:32583029,19862563 -g1,14453:32583029,19862563 -) -h1,14453:6630773,20059171:0,0,0 -v1,14457:6630773,20924251:0,393216,0 -(1,14471:6630773,26023374:25952256,5492339,0 -g1,14471:6630773,26023374 -g1,14471:6237557,26023374 -r1,14511:6368629,26023374:131072,5492339,0 -g1,14471:6567858,26023374 -g1,14471:6764466,26023374 -[1,14471:6764466,26023374:25818563,5492339,0 -(1,14458:6764466,21196728:25818563,665693,196608 -(1,14457:6764466,21196728:0,665693,196608 -r1,14511:7868133,21196728:1103667,862301,196608 -k1,14457:6764466,21196728:-1103667 -) -(1,14457:6764466,21196728:1103667,665693,196608 -) -k1,14457:8045131,21196728:176998 -k1,14457:9771349,21196728:327680 -k1,14457:12282085,21196728:176999 -k1,14457:13756041,21196728:176998 -k1,14457:14952125,21196728:176999 -k1,14457:17884257,21196728:176998 -k1,14457:20048962,21196728:176998 -k1,14457:23057116,21196728:176999 -k1,14457:23850152,21196728:176998 -k1,14457:25046236,21196728:176999 -k1,14457:26719421,21196728:176998 -k1,14457:28764851,21196728:176999 -k1,14457:31015408,21196728:176998 -k1,14457:32583029,21196728:0 -) -(1,14458:6764466,22061808:25818563,505283,126483 -g1,14457:8707608,22061808 -g1,14457:9522875,22061808 -g1,14457:10741189,22061808 -g1,14457:12112857,22061808 -g1,14457:15066564,22061808 -g1,14457:18431182,22061808 -g1,14457:21102429,22061808 -(1,14457:21102429,22061808:0,452978,115847 -r1,14511:24626101,22061808:3523672,568825,115847 -k1,14457:21102429,22061808:-3523672 -) -(1,14457:21102429,22061808:3523672,452978,115847 -k1,14457:21102429,22061808:3277 -h1,14457:24622824,22061808:0,411205,112570 -) -g1,14457:24825330,22061808 -g1,14457:25556056,22061808 -k1,14458:32583029,22061808:3865517 -g1,14458:32583029,22061808 -) -v1,14460:6764466,22746663:0,393216,0 -(1,14468:6764466,25826766:25818563,3473319,196608 -g1,14468:6764466,25826766 -g1,14468:6764466,25826766 -g1,14468:6567858,25826766 -(1,14468:6567858,25826766:0,3473319,196608 -r1,14511:32779637,25826766:26211779,3669927,196608 -k1,14468:6567857,25826766:-26211780 -) -(1,14468:6567858,25826766:26211779,3473319,196608 -[1,14468:6764466,25826766:25818563,3276711,0 -(1,14462:6764466,22981100:25818563,431045,9908 -(1,14461:6764466,22981100:0,0,0 -g1,14461:6764466,22981100 -g1,14461:6764466,22981100 -g1,14461:6436786,22981100 -(1,14461:6436786,22981100:0,0,0 -) -g1,14461:6764466,22981100 -) -g1,14462:8424236,22981100 -k1,14462:8424236,22981100:0 -h1,14462:9088144,22981100:0,0,0 -k1,14462:32583028,22981100:23494884 -g1,14462:32583028,22981100 -) -(1,14463:6764466,23665955:25818563,431045,106246 -h1,14463:6764466,23665955:0,0,0 -g1,14463:7096420,23665955 -g1,14463:7428374,23665955 -k1,14463:7428374,23665955:0 -h1,14463:10415960,23665955:0,0,0 -k1,14463:32583028,23665955:22167068 -g1,14463:32583028,23665955 -) -(1,14464:6764466,24350810:25818563,424439,106246 -h1,14464:6764466,24350810:0,0,0 -g1,14464:7096420,24350810 -g1,14464:7428374,24350810 -g1,14464:7760328,24350810 -g1,14464:8092282,24350810 -g1,14464:8424236,24350810 -g1,14464:8756190,24350810 -g1,14464:9088144,24350810 -g1,14464:11079868,24350810 -g1,14464:11743776,24350810 -g1,14464:15395270,24350810 -g1,14464:16059178,24350810 -g1,14464:17718948,24350810 -g1,14464:18382856,24350810 -k1,14464:18382856,24350810:0 -h1,14464:20374580,24350810:0,0,0 -k1,14464:32583029,24350810:12208449 -g1,14464:32583029,24350810 -) -(1,14465:6764466,25035665:25818563,424439,106246 -h1,14465:6764466,25035665:0,0,0 -k1,14465:7060763,25035665:296297 -k1,14465:7357060,25035665:296297 -k1,14465:7653357,25035665:296297 -k1,14465:7949654,25035665:296297 -k1,14465:8245951,25035665:296297 -k1,14465:8542248,25035665:296297 -k1,14465:8838545,25035665:296297 -k1,14465:9134842,25035665:296297 -k1,14465:9431139,25035665:296297 -k1,14465:9727436,25035665:296297 -k1,14465:10023733,25035665:296297 -k1,14465:10320030,25035665:296297 -k1,14465:10616327,25035665:296297 -k1,14465:10912624,25035665:296297 -k1,14465:11208920,25035665:296296 -k1,14465:11505217,25035665:296297 -k1,14465:11801514,25035665:296297 -k1,14465:12097811,25035665:296297 -k1,14465:12394108,25035665:296297 -k1,14465:12690405,25035665:296297 -k1,14465:14646472,25035665:296297 -k1,14465:15274723,25035665:296297 -k1,14465:16898836,25035665:296297 -k1,14465:17527087,25035665:296297 -k1,14465:19483154,25035665:296297 -k1,14465:20111405,25035665:296297 -k1,14465:23727242,25035665:296297 -k1,14465:24355493,25035665:296297 -k1,14465:27971330,25035665:296297 -k1,14465:28599581,25035665:296297 -k1,14465:28599581,25035665:0 -h1,14465:32583029,25035665:0,0,0 -k1,14465:32583029,25035665:0 -k1,14465:32583029,25035665:0 -) -(1,14466:6764466,25720520:25818563,431045,106246 -h1,14466:6764466,25720520:0,0,0 -k1,14466:6764466,25720520:0 -h1,14466:11079868,25720520:0,0,0 -k1,14466:32583028,25720520:21503160 -g1,14466:32583028,25720520 -) -] -) -g1,14468:32583029,25826766 -g1,14468:6764466,25826766 -g1,14468:6764466,25826766 -g1,14468:32583029,25826766 -g1,14468:32583029,25826766 -) -h1,14468:6764466,26023374:0,0,0 -] -g1,14471:32583029,26023374 -) -h1,14471:6630773,26023374:0,0,0 -(1,14475:6630773,26888454:25952256,513147,126483 -h1,14473:6630773,26888454:983040,0,0 -k1,14473:10899632,26888454:165650 -(1,14473:10899632,26888454:0,452978,115847 -r1,14511:13719881,26888454:2820249,568825,115847 -k1,14473:10899632,26888454:-2820249 -) -(1,14473:10899632,26888454:2820249,452978,115847 -k1,14473:10899632,26888454:3277 -h1,14473:13716604,26888454:0,411205,112570 -) -k1,14473:13885531,26888454:165650 -k1,14473:15242627,26888454:165651 -(1,14473:15242627,26888454:0,452978,115847 -r1,14511:17359452,26888454:2116825,568825,115847 -k1,14473:15242627,26888454:-2116825 -) -(1,14473:15242627,26888454:2116825,452978,115847 -k1,14473:15242627,26888454:3277 -h1,14473:17356175,26888454:0,411205,112570 -) -k1,14473:17525102,26888454:165650 -k1,14473:18682312,26888454:165650 -k1,14473:22667400,26888454:165650 -k1,14473:25741538,26888454:165650 -k1,14473:26593351,26888454:165651 -k1,14473:28139189,26888454:165650 -k1,14473:30734914,26888454:165650 -k1,14473:32583029,26888454:0 -) -(1,14475:6630773,27753534:25952256,513147,134348 -k1,14473:8976306,27753534:135659 -k1,14473:11525002,27753534:135660 -k1,14473:13691622,27753534:135659 -k1,14473:14478710,27753534:135660 -k1,14473:18018964,27753534:135659 -k1,14473:20938592,27753534:135659 -k1,14473:23632778,27753534:135660 -k1,14473:25470407,27753534:135659 -k1,14473:28631864,27753534:135660 -k1,14473:29450408,27753534:135659 -k1,14473:32583029,27753534:0 -) -(1,14475:6630773,28618614:25952256,513147,126483 -g1,14473:7922487,28618614 -g1,14473:8781008,28618614 -g1,14473:11651484,28618614 -g1,14473:15050181,28618614 -g1,14474:15050181,28618614 -k1,14475:32583029,28618614:17532848 -g1,14475:32583029,28618614 -) -(1,14476:6630773,31449774:25952256,32768,229376 -(1,14476:6630773,31449774:0,32768,229376 -(1,14476:6630773,31449774:5505024,32768,229376 -r1,14511:12135797,31449774:5505024,262144,229376 -) -k1,14476:6630773,31449774:-5505024 -) -(1,14476:6630773,31449774:25952256,32768,0 -r1,14511:32583029,31449774:25952256,32768,0 -) -) -(1,14476:6630773,33081626:25952256,606339,14155 -(1,14476:6630773,33081626:2464678,582746,14155 -g1,14476:6630773,33081626 -g1,14476:9095451,33081626 -) -g1,14476:14009865,33081626 -g1,14476:16726988,33081626 -k1,14476:32583029,33081626:13037469 -g1,14476:32583029,33081626 -) -(1,14481:6630773,34339922:25952256,513147,126483 -k1,14480:8752101,34339922:148694 -k1,14480:11218803,34339922:148694 -k1,14480:13083229,34339922:148693 -k1,14480:14251008,34339922:148694 -k1,14480:18139186,34339922:148694 -k1,14480:18947172,34339922:148694 -k1,14480:21940783,34339922:148693 -k1,14480:25628421,34339922:148694 -k1,14480:28844855,34339922:148694 -k1,14480:32583029,34339922:0 -) -(1,14481:6630773,35205002:25952256,513147,122846 -k1,14480:8631240,35205002:187741 -k1,14480:11310661,35205002:187742 -k1,14480:13210858,35205002:187741 -k1,14480:14792550,35205002:187741 -k1,14480:17675788,35205002:187742 -(1,14480:17675788,35205002:0,452978,122846 -r1,14511:19440901,35205002:1765113,575824,122846 -k1,14480:17675788,35205002:-1765113 -) -(1,14480:17675788,35205002:1765113,452978,122846 -k1,14480:17675788,35205002:3277 -h1,14480:19437624,35205002:0,411205,112570 -) -k1,14480:19628642,35205002:187741 -k1,14480:20807943,35205002:187741 -k1,14480:22645882,35205002:187742 -k1,14480:25308262,35205002:187741 -k1,14480:26687448,35205002:187741 -k1,14480:28556844,35205002:187742 -k1,14480:29763670,35205002:187741 -k1,14480:32583029,35205002:0 -) -(1,14481:6630773,36070082:25952256,513147,115847 -k1,14480:10686062,36070082:273862 -k1,14480:11611352,36070082:273862 -k1,14480:12632980,36070082:273862 -k1,14480:15495513,36070082:273861 -k1,14480:16455537,36070082:273862 -k1,14480:18008006,36070082:273862 -k1,14480:18968030,36070082:273862 -k1,14480:20260977,36070082:273862 -k1,14480:21748566,36070082:273862 -k1,14480:24717924,36070082:273862 -k1,14480:27794760,36070082:273861 -k1,14480:29060182,36070082:273862 -k1,14480:30020206,36070082:273862 -k1,14480:30910106,36070082:273862 -(1,14480:30910106,36070082:0,452978,115847 -r1,14511:32323507,36070082:1413401,568825,115847 -k1,14480:30910106,36070082:-1413401 -) -(1,14480:30910106,36070082:1413401,452978,115847 -k1,14480:30910106,36070082:3277 -h1,14480:32320230,36070082:0,411205,112570 -) -k1,14480:32583029,36070082:0 -) -(1,14481:6630773,36935162:25952256,513147,134348 -k1,14480:8787473,36935162:171614 -h1,14480:9758061,36935162:0,0,0 -k1,14480:9929674,36935162:171613 -k1,14480:12092272,36935162:171614 -k1,14480:13548392,36935162:171614 -k1,14480:14739090,36935162:171613 -k1,14480:16596290,36935162:171614 -k1,14480:18281130,36935162:171614 -k1,14480:19104171,36935162:171613 -k1,14480:19963258,36935162:171614 -k1,14480:20490731,36935162:171613 -k1,14480:22650052,36935162:171614 -k1,14480:24215617,36935162:171614 -(1,14480:24215617,36935162:0,452978,122846 -r1,14511:25980730,36935162:1765113,575824,122846 -k1,14480:24215617,36935162:-1765113 -) -(1,14480:24215617,36935162:1765113,452978,122846 -k1,14480:24215617,36935162:3277 -h1,14480:25977453,36935162:0,411205,112570 -) -k1,14480:26152343,36935162:171613 -k1,14480:27315517,36935162:171614 -k1,14480:28506216,36935162:171614 -k1,14480:30331302,36935162:171613 -k1,14480:31189078,36935162:171614 -k1,14481:32583029,36935162:0 -) -(1,14481:6630773,37800242:25952256,505283,126483 -(1,14480:6630773,37800242:0,452978,115847 -r1,14511:8044174,37800242:1413401,568825,115847 -k1,14480:6630773,37800242:-1413401 -) -(1,14480:6630773,37800242:1413401,452978,115847 -k1,14480:6630773,37800242:3277 -h1,14480:8040897,37800242:0,411205,112570 -) -k1,14480:8313606,37800242:269432 -k1,14480:10653975,37800242:269431 -k1,14480:12207913,37800242:269432 -k1,14480:13345696,37800242:269431 -k1,14480:14719410,37800242:269432 -k1,14480:16809431,37800242:269431 -k1,14480:18097948,37800242:269432 -k1,14480:21853239,37800242:269431 -k1,14480:25904098,37800242:269432 -k1,14480:28992888,37800242:269431 -k1,14480:29913748,37800242:269432 -k1,14480:32583029,37800242:0 -) -(1,14481:6630773,38665322:25952256,505283,134348 -k1,14480:7924945,38665322:275087 -k1,14480:11025945,38665322:275088 -k1,14480:13460443,38665322:275087 -k1,14480:17980953,38665322:275088 -k1,14480:21655392,38665322:275087 -k1,14480:23443705,38665322:275087 -k1,14480:27204653,38665322:275088 -k1,14480:31591469,38665322:275087 -k1,14480:32583029,38665322:0 -) -(1,14481:6630773,39530402:25952256,513147,115847 -g1,14480:9623146,39530402 -g1,14480:11013820,39530402 -g1,14480:13654265,39530402 -g1,14480:15085571,39530402 -(1,14480:15085571,39530402:0,459977,115847 -r1,14511:19312667,39530402:4227096,575824,115847 -k1,14480:15085571,39530402:-4227096 -) -(1,14480:15085571,39530402:4227096,459977,115847 -k1,14480:15085571,39530402:3277 -h1,14480:19309390,39530402:0,411205,112570 -) -g1,14480:19511896,39530402 -g1,14480:20658776,39530402 -g1,14480:21877090,39530402 -g1,14480:25232533,39530402 -g1,14480:26623207,39530402 -g1,14480:30049429,39530402 -k1,14481:32583029,39530402:665824 -g1,14481:32583029,39530402 -) -(1,14509:6630773,40395482:25952256,513147,126483 -h1,14508:6630773,40395482:983040,0,0 -k1,14508:8886849,40395482:231014 -k1,14508:10932556,40395482:231015 -k1,14508:12726604,40395482:231014 -k1,14508:14696288,40395482:231014 -k1,14508:15918863,40395482:231015 -k1,14508:19163222,40395482:231014 -k1,14508:20781634,40395482:231015 -k1,14508:22445265,40395482:231014 -k1,14508:23304114,40395482:231014 -k1,14508:24554214,40395482:231015 -k1,14508:27446645,40395482:231014 -k1,14508:29546090,40395482:231014 -k1,14508:30645457,40395482:231015 -k1,14508:31563944,40395482:231014 -k1,14508:32583029,40395482:0 -) -(1,14509:6630773,41260562:25952256,513147,134348 -k1,14508:8555029,41260562:270783 -k1,14508:10813519,41260562:270783 -k1,14508:11770463,41260562:270782 -k1,14508:14070241,41260562:270783 -k1,14508:15413193,41260562:270783 -k1,14508:18725502,41260562:270783 -k1,14508:19352145,41260562:270783 -k1,14508:23983694,41260562:270783 -k1,14508:28035903,41260562:270782 -k1,14508:30633869,41260562:270783 -k1,14508:31563944,41260562:270783 -k1,14508:32583029,41260562:0 -) -(1,14509:6630773,42125642:25952256,505283,134348 -k1,14508:9464876,42125642:304413 -k1,14508:10671720,42125642:304413 -k1,14508:14048462,42125642:304414 -k1,14508:16558162,42125642:304413 -k1,14508:17514003,42125642:304413 -(1,14508:17514003,42125642:0,459977,115847 -r1,14511:19630828,42125642:2116825,575824,115847 -k1,14508:17514003,42125642:-2116825 -) -(1,14508:17514003,42125642:2116825,459977,115847 -k1,14508:17514003,42125642:3277 -h1,14508:19627551,42125642:0,411205,112570 -) -k1,14508:19935241,42125642:304413 -k1,14508:22390546,42125642:304413 -k1,14508:23714045,42125642:304414 -k1,14508:26837817,42125642:304413 -k1,14508:28749173,42125642:304413 -k1,14508:32583029,42125642:0 -) -(1,14509:6630773,42990722:25952256,505283,134348 -k1,14508:8036266,42990722:230433 -(1,14508:8036266,42990722:0,414482,115847 -r1,14511:12263362,42990722:4227096,530329,115847 -k1,14508:8036266,42990722:-4227096 -) -(1,14508:8036266,42990722:4227096,414482,115847 -k1,14508:8036266,42990722:3277 -h1,14508:12260085,42990722:0,411205,112570 -) -k1,14508:12493795,42990722:230433 -k1,14508:14113591,42990722:230433 -k1,14508:15278567,42990722:230433 -k1,14508:17022226,42990722:230433 -k1,14508:17868697,42990722:230433 -k1,14508:19118215,42990722:230433 -k1,14508:20732768,42990722:230433 -k1,14508:23798288,42990722:230433 -k1,14508:25638941,42990722:230433 -k1,14508:27753534,42990722:230433 -k1,14508:30128960,42990722:230433 -k1,14508:30975431,42990722:230433 -k1,14508:32583029,42990722:0 -) -(1,14509:6630773,43855802:25952256,513147,126483 -g1,14508:9354449,43855802 -g1,14508:10947629,43855802 -g1,14508:13909201,43855802 -g1,14508:18000613,43855802 -g1,14508:18827677,43855802 -g1,14508:20723633,43855802 -g1,14508:22485896,43855802 -g1,14508:24441490,43855802 -g1,14508:25172216,43855802 -g1,14508:25727305,43855802 -g1,14508:27820524,43855802 -g1,14508:29413704,43855802 -g1,14508:30509466,43855802 -k1,14509:32583029,43855802:228725 -g1,14509:32583029,43855802 -) -] -(1,14511:32583029,45706769:0,0,0 -g1,14511:32583029,45706769 -) -) -] -(1,14511:6630773,47279633:25952256,0,0 -h1,14511:6630773,47279633:25952256,0,0 -) -] -(1,14511:4262630,4025873:0,0,0 -[1,14511:-473656,4025873:0,0,0 -(1,14511:-473656,-710413:0,0,0 -(1,14511:-473656,-710413:0,0,0 -g1,14511:-473656,-710413 -) -g1,14511:-473656,-710413 +g1,14509:6630773,4812305 +g1,14509:6630773,4812305 +g1,14509:10529509,4812305 +g1,14509:12752490,4812305 +g1,14509:15101300,4812305 +k1,14509:31387652,4812305:16286352 +) +) +] +[1,14509:6630773,45706769:25952256,40108032,0 +(1,14509:6630773,45706769:25952256,40108032,0 +(1,14509:6630773,45706769:0,0,0 +g1,14509:6630773,45706769 +) +[1,14509:6630773,45706769:25952256,40108032,0 +v1,14451:6630773,6254097:0,393216,0 +(1,14451:6630773,19862563:25952256,14001682,196608 +g1,14451:6630773,19862563 +g1,14451:6630773,19862563 +g1,14451:6434165,19862563 +(1,14451:6434165,19862563:0,14001682,196608 +r1,14509:32779637,19862563:26345472,14198290,196608 +k1,14451:6434165,19862563:-26345472 +) +(1,14451:6434165,19862563:26345472,14001682,196608 +[1,14451:6630773,19862563:25952256,13805074,0 +(1,14427:6630773,6481928:25952256,424439,106246 +h1,14427:6630773,6481928:0,0,0 +g1,14427:7626635,6481928 +g1,14427:8290543,6481928 +g1,14427:11942036,6481928 +g1,14427:12273990,6481928 +g1,14427:12937898,6481928 +g1,14427:13269852,6481928 +g1,14427:13601806,6481928 +g1,14427:16257438,6481928 +g1,14427:18249162,6481928 +h1,14427:20240886,6481928:0,0,0 +k1,14427:32583029,6481928:12342143 +g1,14427:32583029,6481928 +) +(1,14429:6630773,7297855:25952256,431045,106246 +(1,14428:6630773,7297855:0,0,0 +g1,14428:6630773,7297855 +g1,14428:6630773,7297855 +g1,14428:6303093,7297855 +(1,14428:6303093,7297855:0,0,0 +) +g1,14428:6630773,7297855 +) +k1,14429:6630773,7297855:0 +h1,14429:10946175,7297855:0,0,0 +k1,14429:32583029,7297855:21636854 +g1,14429:32583029,7297855 +) +(1,14450:6630773,8113782:25952256,398014,0 +(1,14431:6630773,8113782:0,0,0 +g1,14431:6630773,8113782 +g1,14431:6630773,8113782 +g1,14431:6303093,8113782 +(1,14431:6303093,8113782:0,0,0 +) +g1,14431:6630773,8113782 +) +h1,14450:7294681,8113782:0,0,0 +k1,14450:32583029,8113782:25288348 +g1,14450:32583029,8113782 +) +(1,14450:6630773,8798637:25952256,424439,8257 +h1,14450:6630773,8798637:0,0,0 +g1,14450:7626635,8798637 +h1,14450:9286405,8798637:0,0,0 +k1,14450:32583029,8798637:23296624 +g1,14450:32583029,8798637 +) +(1,14450:6630773,9483492:25952256,431045,106246 +h1,14450:6630773,9483492:0,0,0 +g1,14450:7626635,9483492 +g1,14450:11278128,9483492 +g1,14450:11942036,9483492 +g1,14450:13601806,9483492 +g1,14450:14265714,9483492 +g1,14450:18249161,9483492 +g1,14450:19908931,9483492 +g1,14450:20572839,9483492 +h1,14450:22232609,9483492:0,0,0 +k1,14450:32583029,9483492:10350420 +g1,14450:32583029,9483492 +) +(1,14450:6630773,10168347:25952256,398014,0 +h1,14450:6630773,10168347:0,0,0 +h1,14450:7294681,10168347:0,0,0 +k1,14450:32583029,10168347:25288348 +g1,14450:32583029,10168347 +) +(1,14450:6630773,10853202:25952256,424439,6605 +h1,14450:6630773,10853202:0,0,0 +g1,14450:7626635,10853202 +h1,14450:10946174,10853202:0,0,0 +k1,14450:32583030,10853202:21636856 +g1,14450:32583030,10853202 +) +(1,14450:6630773,11538057:25952256,424439,86428 +h1,14450:6630773,11538057:0,0,0 +g1,14450:7626635,11538057 +g1,14450:7958589,11538057 +g1,14450:8290543,11538057 +g1,14450:8622497,11538057 +g1,14450:8954451,11538057 +g1,14450:10282267,11538057 +g1,14450:10614221,11538057 +g1,14450:10946175,11538057 +g1,14450:11278129,11538057 +g1,14450:11610083,11538057 +g1,14450:11942037,11538057 +g1,14450:12937899,11538057 +g1,14450:13269853,11538057 +g1,14450:15593531,11538057 +g1,14450:15925485,11538057 +g1,14450:16257439,11538057 +g1,14450:16589393,11538057 +g1,14450:16921347,11538057 +g1,14450:17253301,11538057 +g1,14450:18249163,11538057 +g1,14450:18581117,11538057 +g1,14450:18913071,11538057 +g1,14450:19245025,11538057 +g1,14450:19576979,11538057 +h1,14450:20572841,11538057:0,0,0 +k1,14450:32583029,11538057:12010188 +g1,14450:32583029,11538057 +) +(1,14450:6630773,12222912:25952256,407923,9908 +h1,14450:6630773,12222912:0,0,0 +g1,14450:7626635,12222912 +g1,14450:10282267,12222912 +g1,14450:10614221,12222912 +g1,14450:12937899,12222912 +g1,14450:13269853,12222912 +g1,14450:15593531,12222912 +g1,14450:15925485,12222912 +g1,14450:16257439,12222912 +g1,14450:18249163,12222912 +g1,14450:18581117,12222912 +h1,14450:20572841,12222912:0,0,0 +k1,14450:32583029,12222912:12010188 +g1,14450:32583029,12222912 +) +(1,14450:6630773,12907767:25952256,398014,0 +h1,14450:6630773,12907767:0,0,0 +h1,14450:7294681,12907767:0,0,0 +k1,14450:32583029,12907767:25288348 +g1,14450:32583029,12907767 +) +(1,14450:6630773,13592622:25952256,431045,8257 +h1,14450:6630773,13592622:0,0,0 +g1,14450:7626635,13592622 +h1,14450:11942036,13592622:0,0,0 +k1,14450:32583028,13592622:20640992 +g1,14450:32583028,13592622 +) +(1,14450:6630773,14277477:25952256,424439,79822 +h1,14450:6630773,14277477:0,0,0 +g1,14450:7626635,14277477 +g1,14450:7958589,14277477 +g1,14450:8290543,14277477 +g1,14450:8622497,14277477 +g1,14450:8954451,14277477 +g1,14450:9286405,14277477 +g1,14450:9618359,14277477 +g1,14450:9950313,14277477 +g1,14450:10282267,14277477 +g1,14450:10614221,14277477 +g1,14450:10946175,14277477 +g1,14450:11278129,14277477 +g1,14450:11610083,14277477 +g1,14450:14597668,14277477 +g1,14450:16257438,14277477 +g1,14450:18249162,14277477 +g1,14450:18913070,14277477 +g1,14450:20904794,14277477 +k1,14450:20904794,14277477:0 +h1,14450:23560426,14277477:0,0,0 +k1,14450:32583029,14277477:9022603 +g1,14450:32583029,14277477 +) +(1,14450:6630773,14962332:25952256,424439,106246 +h1,14450:6630773,14962332:0,0,0 +g1,14450:7626635,14962332 +g1,14450:11610082,14962332 +g1,14450:11942036,14962332 +g1,14450:14597668,14962332 +g1,14450:14929622,14962332 +g1,14450:15261576,14962332 +g1,14450:15593530,14962332 +g1,14450:18249162,14962332 +g1,14450:18581116,14962332 +g1,14450:18913070,14962332 +g1,14450:20904794,14962332 +g1,14450:21236748,14962332 +g1,14450:21568702,14962332 +g1,14450:23892380,14962332 +h1,14450:24224334,14962332:0,0,0 +k1,14450:32583029,14962332:8358695 +g1,14450:32583029,14962332 +) +(1,14450:6630773,15647187:25952256,424439,106246 +h1,14450:6630773,15647187:0,0,0 +g1,14450:7626635,15647187 +g1,14450:11278128,15647187 +g1,14450:11610082,15647187 +g1,14450:11942036,15647187 +g1,14450:14597668,15647187 +g1,14450:14929622,15647187 +g1,14450:15261576,15647187 +g1,14450:15593530,15647187 +g1,14450:18249162,15647187 +g1,14450:18581116,15647187 +g1,14450:18913070,15647187 +g1,14450:20904794,15647187 +g1,14450:21236748,15647187 +g1,14450:23892380,15647187 +h1,14450:24888242,15647187:0,0,0 +k1,14450:32583029,15647187:7694787 +g1,14450:32583029,15647187 +) +(1,14450:6630773,16332042:25952256,398014,0 +h1,14450:6630773,16332042:0,0,0 +g1,14450:7626635,16332042 +k1,14450:7626635,16332042:0 +h1,14450:8622497,16332042:0,0,0 +k1,14450:32583029,16332042:23960532 +g1,14450:32583029,16332042 +) +(1,14450:6630773,17016897:25952256,431045,112852 +h1,14450:6630773,17016897:0,0,0 +g1,14450:7626635,17016897 +g1,14450:10282267,17016897 +g1,14450:12605945,17016897 +g1,14450:12937899,17016897 +g1,14450:13601807,17016897 +g1,14450:15593531,17016897 +g1,14450:17585255,17016897 +g1,14450:19245025,17016897 +g1,14450:20904795,17016897 +g1,14450:22232611,17016897 +g1,14450:23892381,17016897 +g1,14450:25220197,17016897 +g1,14450:26548013,17016897 +g1,14450:27211921,17016897 +g1,14450:27875829,17016897 +h1,14450:28207783,17016897:0,0,0 +k1,14450:32583029,17016897:4375246 +g1,14450:32583029,17016897 +) +(1,14450:6630773,17701752:25952256,398014,0 +h1,14450:6630773,17701752:0,0,0 +h1,14450:7294681,17701752:0,0,0 +k1,14450:32583029,17701752:25288348 +g1,14450:32583029,17701752 +) +(1,14450:6630773,18386607:25952256,431045,112852 +h1,14450:6630773,18386607:0,0,0 +g1,14450:7626635,18386607 +g1,14450:10614220,18386607 +g1,14450:13601805,18386607 +g1,14450:15925483,18386607 +g1,14450:17917207,18386607 +g1,14450:18913069,18386607 +g1,14450:19908931,18386607 +g1,14450:22564563,18386607 +g1,14450:23560425,18386607 +h1,14450:25884103,18386607:0,0,0 +k1,14450:32583029,18386607:6698926 +g1,14450:32583029,18386607 +) +(1,14450:6630773,19071462:25952256,424439,112852 +h1,14450:6630773,19071462:0,0,0 +g1,14450:7626635,19071462 +g1,14450:10614220,19071462 +g1,14450:14265713,19071462 +g1,14450:14597667,19071462 +g1,14450:17253299,19071462 +g1,14450:20240884,19071462 +g1,14450:23892377,19071462 +g1,14450:24224331,19071462 +h1,14450:26216055,19071462:0,0,0 +k1,14450:32583029,19071462:6366974 +g1,14450:32583029,19071462 +) +(1,14450:6630773,19756317:25952256,424439,106246 +h1,14450:6630773,19756317:0,0,0 +g1,14450:7626635,19756317 +g1,14450:11942036,19756317 +g1,14450:13933760,19756317 +g1,14450:14929622,19756317 +g1,14450:15593530,19756317 +g1,14450:16921346,19756317 +g1,14450:17917208,19756317 +g1,14450:19245024,19756317 +g1,14450:19576978,19756317 +g1,14450:22564564,19756317 +k1,14450:22564564,19756317:0 +h1,14450:24888242,19756317:0,0,0 +k1,14450:32583029,19756317:7694787 +g1,14450:32583029,19756317 +) +] +) +g1,14451:32583029,19862563 +g1,14451:6630773,19862563 +g1,14451:6630773,19862563 +g1,14451:32583029,19862563 +g1,14451:32583029,19862563 +) +h1,14451:6630773,20059171:0,0,0 +v1,14455:6630773,20924251:0,393216,0 +(1,14469:6630773,26023374:25952256,5492339,0 +g1,14469:6630773,26023374 +g1,14469:6237557,26023374 +r1,14509:6368629,26023374:131072,5492339,0 +g1,14469:6567858,26023374 +g1,14469:6764466,26023374 +[1,14469:6764466,26023374:25818563,5492339,0 +(1,14456:6764466,21196728:25818563,665693,196608 +(1,14455:6764466,21196728:0,665693,196608 +r1,14509:7868133,21196728:1103667,862301,196608 +k1,14455:6764466,21196728:-1103667 +) +(1,14455:6764466,21196728:1103667,665693,196608 +) +k1,14455:8045131,21196728:176998 +k1,14455:9771349,21196728:327680 +k1,14455:12282085,21196728:176999 +k1,14455:13756041,21196728:176998 +k1,14455:14952125,21196728:176999 +k1,14455:17884257,21196728:176998 +k1,14455:20048962,21196728:176998 +k1,14455:23057116,21196728:176999 +k1,14455:23850152,21196728:176998 +k1,14455:25046236,21196728:176999 +k1,14455:26719421,21196728:176998 +k1,14455:28764851,21196728:176999 +k1,14455:31015408,21196728:176998 +k1,14455:32583029,21196728:0 +) +(1,14456:6764466,22061808:25818563,505283,126483 +g1,14455:8707608,22061808 +g1,14455:9522875,22061808 +g1,14455:10741189,22061808 +g1,14455:12112857,22061808 +g1,14455:15066564,22061808 +g1,14455:18431182,22061808 +g1,14455:21102429,22061808 +(1,14455:21102429,22061808:0,452978,115847 +r1,14509:24626101,22061808:3523672,568825,115847 +k1,14455:21102429,22061808:-3523672 +) +(1,14455:21102429,22061808:3523672,452978,115847 +k1,14455:21102429,22061808:3277 +h1,14455:24622824,22061808:0,411205,112570 +) +g1,14455:24825330,22061808 +g1,14455:25556056,22061808 +k1,14456:32583029,22061808:3865517 +g1,14456:32583029,22061808 +) +v1,14458:6764466,22746663:0,393216,0 +(1,14466:6764466,25826766:25818563,3473319,196608 +g1,14466:6764466,25826766 +g1,14466:6764466,25826766 +g1,14466:6567858,25826766 +(1,14466:6567858,25826766:0,3473319,196608 +r1,14509:32779637,25826766:26211779,3669927,196608 +k1,14466:6567857,25826766:-26211780 +) +(1,14466:6567858,25826766:26211779,3473319,196608 +[1,14466:6764466,25826766:25818563,3276711,0 +(1,14460:6764466,22981100:25818563,431045,9908 +(1,14459:6764466,22981100:0,0,0 +g1,14459:6764466,22981100 +g1,14459:6764466,22981100 +g1,14459:6436786,22981100 +(1,14459:6436786,22981100:0,0,0 +) +g1,14459:6764466,22981100 +) +g1,14460:8424236,22981100 +k1,14460:8424236,22981100:0 +h1,14460:9088144,22981100:0,0,0 +k1,14460:32583028,22981100:23494884 +g1,14460:32583028,22981100 +) +(1,14461:6764466,23665955:25818563,431045,106246 +h1,14461:6764466,23665955:0,0,0 +g1,14461:7096420,23665955 +g1,14461:7428374,23665955 +k1,14461:7428374,23665955:0 +h1,14461:10415960,23665955:0,0,0 +k1,14461:32583028,23665955:22167068 +g1,14461:32583028,23665955 +) +(1,14462:6764466,24350810:25818563,424439,106246 +h1,14462:6764466,24350810:0,0,0 +g1,14462:7096420,24350810 +g1,14462:7428374,24350810 +g1,14462:7760328,24350810 +g1,14462:8092282,24350810 +g1,14462:8424236,24350810 +g1,14462:8756190,24350810 +g1,14462:9088144,24350810 +g1,14462:11079868,24350810 +g1,14462:11743776,24350810 +g1,14462:15395270,24350810 +g1,14462:16059178,24350810 +g1,14462:17718948,24350810 +g1,14462:18382856,24350810 +k1,14462:18382856,24350810:0 +h1,14462:20374580,24350810:0,0,0 +k1,14462:32583029,24350810:12208449 +g1,14462:32583029,24350810 +) +(1,14463:6764466,25035665:25818563,424439,106246 +h1,14463:6764466,25035665:0,0,0 +k1,14463:7060763,25035665:296297 +k1,14463:7357060,25035665:296297 +k1,14463:7653357,25035665:296297 +k1,14463:7949654,25035665:296297 +k1,14463:8245951,25035665:296297 +k1,14463:8542248,25035665:296297 +k1,14463:8838545,25035665:296297 +k1,14463:9134842,25035665:296297 +k1,14463:9431139,25035665:296297 +k1,14463:9727436,25035665:296297 +k1,14463:10023733,25035665:296297 +k1,14463:10320030,25035665:296297 +k1,14463:10616327,25035665:296297 +k1,14463:10912624,25035665:296297 +k1,14463:11208920,25035665:296296 +k1,14463:11505217,25035665:296297 +k1,14463:11801514,25035665:296297 +k1,14463:12097811,25035665:296297 +k1,14463:12394108,25035665:296297 +k1,14463:12690405,25035665:296297 +k1,14463:14646472,25035665:296297 +k1,14463:15274723,25035665:296297 +k1,14463:16898836,25035665:296297 +k1,14463:17527087,25035665:296297 +k1,14463:19483154,25035665:296297 +k1,14463:20111405,25035665:296297 +k1,14463:23727242,25035665:296297 +k1,14463:24355493,25035665:296297 +k1,14463:27971330,25035665:296297 +k1,14463:28599581,25035665:296297 +k1,14463:28599581,25035665:0 +h1,14463:32583029,25035665:0,0,0 +k1,14463:32583029,25035665:0 +k1,14463:32583029,25035665:0 +) +(1,14464:6764466,25720520:25818563,431045,106246 +h1,14464:6764466,25720520:0,0,0 +k1,14464:6764466,25720520:0 +h1,14464:11079868,25720520:0,0,0 +k1,14464:32583028,25720520:21503160 +g1,14464:32583028,25720520 +) +] +) +g1,14466:32583029,25826766 +g1,14466:6764466,25826766 +g1,14466:6764466,25826766 +g1,14466:32583029,25826766 +g1,14466:32583029,25826766 +) +h1,14466:6764466,26023374:0,0,0 +] +g1,14469:32583029,26023374 +) +h1,14469:6630773,26023374:0,0,0 +(1,14473:6630773,26888454:25952256,513147,126483 +h1,14471:6630773,26888454:983040,0,0 +k1,14471:10899632,26888454:165650 +(1,14471:10899632,26888454:0,452978,115847 +r1,14509:13719881,26888454:2820249,568825,115847 +k1,14471:10899632,26888454:-2820249 +) +(1,14471:10899632,26888454:2820249,452978,115847 +k1,14471:10899632,26888454:3277 +h1,14471:13716604,26888454:0,411205,112570 +) +k1,14471:13885531,26888454:165650 +k1,14471:15242627,26888454:165651 +(1,14471:15242627,26888454:0,452978,115847 +r1,14509:17359452,26888454:2116825,568825,115847 +k1,14471:15242627,26888454:-2116825 +) +(1,14471:15242627,26888454:2116825,452978,115847 +k1,14471:15242627,26888454:3277 +h1,14471:17356175,26888454:0,411205,112570 +) +k1,14471:17525102,26888454:165650 +k1,14471:18682312,26888454:165650 +k1,14471:22667400,26888454:165650 +k1,14471:25741538,26888454:165650 +k1,14471:26593351,26888454:165651 +k1,14471:28139189,26888454:165650 +k1,14471:30734914,26888454:165650 +k1,14471:32583029,26888454:0 +) +(1,14473:6630773,27753534:25952256,513147,134348 +k1,14471:8976306,27753534:135659 +k1,14471:11525002,27753534:135660 +k1,14471:13691622,27753534:135659 +k1,14471:14478710,27753534:135660 +k1,14471:18018964,27753534:135659 +k1,14471:20938592,27753534:135659 +k1,14471:23632778,27753534:135660 +k1,14471:25470407,27753534:135659 +k1,14471:28631864,27753534:135660 +k1,14471:29450408,27753534:135659 +k1,14471:32583029,27753534:0 +) +(1,14473:6630773,28618614:25952256,513147,126483 +g1,14471:7922487,28618614 +g1,14471:8781008,28618614 +g1,14471:11651484,28618614 +g1,14471:15050181,28618614 +g1,14472:15050181,28618614 +k1,14473:32583029,28618614:17532848 +g1,14473:32583029,28618614 +) +(1,14474:6630773,31449774:25952256,32768,229376 +(1,14474:6630773,31449774:0,32768,229376 +(1,14474:6630773,31449774:5505024,32768,229376 +r1,14509:12135797,31449774:5505024,262144,229376 +) +k1,14474:6630773,31449774:-5505024 +) +(1,14474:6630773,31449774:25952256,32768,0 +r1,14509:32583029,31449774:25952256,32768,0 +) +) +(1,14474:6630773,33081626:25952256,606339,14155 +(1,14474:6630773,33081626:2464678,582746,14155 +g1,14474:6630773,33081626 +g1,14474:9095451,33081626 +) +g1,14474:14009865,33081626 +g1,14474:16726988,33081626 +k1,14474:32583029,33081626:13037469 +g1,14474:32583029,33081626 +) +(1,14479:6630773,34339922:25952256,513147,126483 +k1,14478:8752101,34339922:148694 +k1,14478:11218803,34339922:148694 +k1,14478:13083229,34339922:148693 +k1,14478:14251008,34339922:148694 +k1,14478:18139186,34339922:148694 +k1,14478:18947172,34339922:148694 +k1,14478:21940783,34339922:148693 +k1,14478:25628421,34339922:148694 +k1,14478:28844855,34339922:148694 +k1,14478:32583029,34339922:0 +) +(1,14479:6630773,35205002:25952256,513147,122846 +k1,14478:8616768,35205002:173269 +k1,14478:11281716,35205002:173269 +k1,14478:13167440,35205002:173268 +k1,14478:14734660,35205002:173269 +k1,14478:17603425,35205002:173269 +(1,14478:17603425,35205002:0,452978,122846 +r1,14509:19368538,35205002:1765113,575824,122846 +k1,14478:17603425,35205002:-1765113 +) +(1,14478:17603425,35205002:1765113,452978,122846 +k1,14478:17603425,35205002:3277 +h1,14478:19365261,35205002:0,411205,112570 +) +k1,14478:19715477,35205002:173269 +k1,14478:20880306,35205002:173269 +k1,14478:22703772,35205002:173269 +k1,14478:25351679,35205002:173268 +k1,14478:26716393,35205002:173269 +k1,14478:28571316,35205002:173269 +k1,14478:29763670,35205002:173269 +k1,14478:32583029,35205002:0 +) +(1,14479:6630773,36070082:25952256,513147,115847 +k1,14478:10686062,36070082:273862 +k1,14478:11611352,36070082:273862 +k1,14478:12632980,36070082:273862 +k1,14478:15495513,36070082:273861 +k1,14478:16455537,36070082:273862 +k1,14478:18008006,36070082:273862 +k1,14478:18968030,36070082:273862 +k1,14478:20260977,36070082:273862 +k1,14478:21748566,36070082:273862 +k1,14478:24717924,36070082:273862 +k1,14478:27794760,36070082:273861 +k1,14478:29060182,36070082:273862 +k1,14478:30020206,36070082:273862 +k1,14478:30910106,36070082:273862 +(1,14478:30910106,36070082:0,452978,115847 +r1,14509:32323507,36070082:1413401,568825,115847 +k1,14478:30910106,36070082:-1413401 +) +(1,14478:30910106,36070082:1413401,452978,115847 +k1,14478:30910106,36070082:3277 +h1,14478:32320230,36070082:0,411205,112570 +) +k1,14478:32583029,36070082:0 +) +(1,14479:6630773,36935162:25952256,513147,134348 +k1,14478:8787473,36935162:171614 +h1,14478:9758061,36935162:0,0,0 +k1,14478:9929674,36935162:171613 +k1,14478:12092272,36935162:171614 +k1,14478:13548392,36935162:171614 +k1,14478:14739090,36935162:171613 +k1,14478:16596290,36935162:171614 +k1,14478:18281130,36935162:171614 +k1,14478:19104171,36935162:171613 +k1,14478:19963258,36935162:171614 +k1,14478:20490731,36935162:171613 +k1,14478:22650052,36935162:171614 +k1,14478:24215617,36935162:171614 +(1,14478:24215617,36935162:0,452978,122846 +r1,14509:25980730,36935162:1765113,575824,122846 +k1,14478:24215617,36935162:-1765113 +) +(1,14478:24215617,36935162:1765113,452978,122846 +k1,14478:24215617,36935162:3277 +h1,14478:25977453,36935162:0,411205,112570 +) +k1,14478:26152343,36935162:171613 +k1,14478:27315517,36935162:171614 +k1,14478:28506216,36935162:171614 +k1,14478:30331302,36935162:171613 +k1,14478:31189078,36935162:171614 +k1,14479:32583029,36935162:0 +) +(1,14479:6630773,37800242:25952256,505283,126483 +(1,14478:6630773,37800242:0,452978,115847 +r1,14509:8044174,37800242:1413401,568825,115847 +k1,14478:6630773,37800242:-1413401 +) +(1,14478:6630773,37800242:1413401,452978,115847 +k1,14478:6630773,37800242:3277 +h1,14478:8040897,37800242:0,411205,112570 +) +k1,14478:8313606,37800242:269432 +k1,14478:10653975,37800242:269431 +k1,14478:12207913,37800242:269432 +k1,14478:13345696,37800242:269431 +k1,14478:14719410,37800242:269432 +k1,14478:16809431,37800242:269431 +k1,14478:18097948,37800242:269432 +k1,14478:21853239,37800242:269431 +k1,14478:25904098,37800242:269432 +k1,14478:28992888,37800242:269431 +k1,14478:29913748,37800242:269432 +k1,14478:32583029,37800242:0 +) +(1,14479:6630773,38665322:25952256,505283,134348 +k1,14478:7924945,38665322:275087 +k1,14478:11025945,38665322:275088 +k1,14478:13460443,38665322:275087 +k1,14478:17980953,38665322:275088 +k1,14478:21655392,38665322:275087 +k1,14478:23443705,38665322:275087 +k1,14478:27204653,38665322:275088 +k1,14478:31591469,38665322:275087 +k1,14478:32583029,38665322:0 +) +(1,14479:6630773,39530402:25952256,513147,115847 +g1,14478:9623146,39530402 +g1,14478:11013820,39530402 +g1,14478:13654265,39530402 +g1,14478:15085571,39530402 +(1,14478:15085571,39530402:0,459977,115847 +r1,14509:19312667,39530402:4227096,575824,115847 +k1,14478:15085571,39530402:-4227096 +) +(1,14478:15085571,39530402:4227096,459977,115847 +k1,14478:15085571,39530402:3277 +h1,14478:19309390,39530402:0,411205,112570 +) +g1,14478:19511896,39530402 +g1,14478:20658776,39530402 +g1,14478:21877090,39530402 +g1,14478:25232533,39530402 +g1,14478:26623207,39530402 +g1,14478:30049429,39530402 +k1,14479:32583029,39530402:665824 +g1,14479:32583029,39530402 +) +(1,14507:6630773,40395482:25952256,513147,126483 +h1,14506:6630773,40395482:983040,0,0 +k1,14506:8874444,40395482:218609 +k1,14506:10907746,40395482:218610 +k1,14506:12689389,40395482:218609 +k1,14506:14646668,40395482:218609 +k1,14506:15856837,40395482:218609 +k1,14506:19088792,40395482:218610 +k1,14506:20694798,40395482:218609 +k1,14506:22346024,40395482:218609 +k1,14506:23192469,40395482:218610 +k1,14506:24430163,40395482:218609 +k1,14506:27310189,40395482:218609 +k1,14506:29570900,40395482:218609 +k1,14506:30657862,40395482:218610 +k1,14506:31563944,40395482:218609 +k1,14506:32583029,40395482:0 +) +(1,14507:6630773,41260562:25952256,513147,134348 +k1,14506:8555029,41260562:270783 +k1,14506:10813519,41260562:270783 +k1,14506:11770463,41260562:270782 +k1,14506:14070241,41260562:270783 +k1,14506:15413193,41260562:270783 +k1,14506:18725502,41260562:270783 +k1,14506:19352145,41260562:270783 +k1,14506:23983694,41260562:270783 +k1,14506:28035903,41260562:270782 +k1,14506:30633869,41260562:270783 +k1,14506:31563944,41260562:270783 +k1,14506:32583029,41260562:0 +) +(1,14507:6630773,42125642:25952256,505283,134348 +k1,14506:9464876,42125642:304413 +k1,14506:10671720,42125642:304413 +k1,14506:14048462,42125642:304414 +k1,14506:16558162,42125642:304413 +k1,14506:17514003,42125642:304413 +(1,14506:17514003,42125642:0,459977,115847 +r1,14509:19630828,42125642:2116825,575824,115847 +k1,14506:17514003,42125642:-2116825 +) +(1,14506:17514003,42125642:2116825,459977,115847 +k1,14506:17514003,42125642:3277 +h1,14506:19627551,42125642:0,411205,112570 +) +k1,14506:19935241,42125642:304413 +k1,14506:22390546,42125642:304413 +k1,14506:23714045,42125642:304414 +k1,14506:26837817,42125642:304413 +k1,14506:28749173,42125642:304413 +k1,14506:32583029,42125642:0 +) +(1,14507:6630773,42990722:25952256,505283,134348 +k1,14506:8036266,42990722:230433 +(1,14506:8036266,42990722:0,414482,115847 +r1,14509:12263362,42990722:4227096,530329,115847 +k1,14506:8036266,42990722:-4227096 +) +(1,14506:8036266,42990722:4227096,414482,115847 +k1,14506:8036266,42990722:3277 +h1,14506:12260085,42990722:0,411205,112570 +) +k1,14506:12493795,42990722:230433 +k1,14506:14113591,42990722:230433 +k1,14506:15278567,42990722:230433 +k1,14506:17022226,42990722:230433 +k1,14506:17868697,42990722:230433 +k1,14506:19118215,42990722:230433 +k1,14506:20732768,42990722:230433 +k1,14506:23798288,42990722:230433 +k1,14506:25638941,42990722:230433 +k1,14506:27753534,42990722:230433 +k1,14506:30128960,42990722:230433 +k1,14506:30975431,42990722:230433 +k1,14506:32583029,42990722:0 +) +(1,14507:6630773,43855802:25952256,513147,126483 +g1,14506:9354449,43855802 +g1,14506:10947629,43855802 +g1,14506:13909201,43855802 +g1,14506:18000613,43855802 +g1,14506:18827677,43855802 +g1,14506:20723633,43855802 +g1,14506:22485896,43855802 +g1,14506:24441490,43855802 +g1,14506:25172216,43855802 +g1,14506:25727305,43855802 +g1,14506:27820524,43855802 +g1,14506:29413704,43855802 +g1,14506:30509466,43855802 +k1,14507:32583029,43855802:228725 +g1,14507:32583029,43855802 +) +] +(1,14509:32583029,45706769:0,0,0 +g1,14509:32583029,45706769 +) +) +] +(1,14509:6630773,47279633:25952256,0,0 +h1,14509:6630773,47279633:25952256,0,0 +) +] +(1,14509:4262630,4025873:0,0,0 +[1,14509:-473656,4025873:0,0,0 +(1,14509:-473656,-710413:0,0,0 +(1,14509:-473656,-710413:0,0,0 +g1,14509:-473656,-710413 +) +g1,14509:-473656,-710413 ) ] ) ] !26378 -}232 -Input:2485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}233 Input:2488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{233 -[1,14537:4262630,47279633:28320399,43253760,0 -(1,14537:4262630,4025873:0,0,0 -[1,14537:-473656,4025873:0,0,0 -(1,14537:-473656,-710413:0,0,0 -(1,14537:-473656,-644877:0,0,0 -k1,14537:-473656,-644877:-65536 +{234 +[1,14535:4262630,47279633:28320399,43253760,0 +(1,14535:4262630,4025873:0,0,0 +[1,14535:-473656,4025873:0,0,0 +(1,14535:-473656,-710413:0,0,0 +(1,14535:-473656,-644877:0,0,0 +k1,14535:-473656,-644877:-65536 ) -(1,14537:-473656,4736287:0,0,0 -k1,14537:-473656,4736287:5209943 +(1,14535:-473656,4736287:0,0,0 +k1,14535:-473656,4736287:5209943 ) -g1,14537:-473656,-710413 +g1,14535:-473656,-710413 ) ] ) -[1,14537:6630773,47279633:25952256,43253760,0 -[1,14537:6630773,4812305:25952256,786432,0 -(1,14537:6630773,4812305:25952256,513147,126483 -(1,14537:6630773,4812305:25952256,513147,126483 -g1,14537:3078558,4812305 -[1,14537:3078558,4812305:0,0,0 -(1,14537:3078558,2439708:0,1703936,0 -k1,14537:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14537:2537886,2439708:1179648,16384,0 +[1,14535:6630773,47279633:25952256,43253760,0 +[1,14535:6630773,4812305:25952256,786432,0 +(1,14535:6630773,4812305:25952256,513147,126483 +(1,14535:6630773,4812305:25952256,513147,126483 +g1,14535:3078558,4812305 +[1,14535:3078558,4812305:0,0,0 +(1,14535:3078558,2439708:0,1703936,0 +k1,14535:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14535:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14537:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14535:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14537:3078558,4812305:0,0,0 -(1,14537:3078558,2439708:0,1703936,0 -g1,14537:29030814,2439708 -g1,14537:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14537:36151628,1915420:16384,1179648,0 +[1,14535:3078558,4812305:0,0,0 +(1,14535:3078558,2439708:0,1703936,0 +g1,14535:29030814,2439708 +g1,14535:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14535:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14537:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14535:37855564,2439708:1179648,16384,0 ) ) -k1,14537:3078556,2439708:-34777008 +k1,14535:3078556,2439708:-34777008 ) ] -[1,14537:3078558,4812305:0,0,0 -(1,14537:3078558,49800853:0,16384,2228224 -k1,14537:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14537:2537886,49800853:1179648,16384,0 +[1,14535:3078558,4812305:0,0,0 +(1,14535:3078558,49800853:0,16384,2228224 +k1,14535:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14535:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14537:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14535:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14537:3078558,4812305:0,0,0 -(1,14537:3078558,49800853:0,16384,2228224 -g1,14537:29030814,49800853 -g1,14537:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14537:36151628,51504789:16384,1179648,0 +[1,14535:3078558,4812305:0,0,0 +(1,14535:3078558,49800853:0,16384,2228224 +g1,14535:29030814,49800853 +g1,14535:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14535:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14537:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14535:37855564,49800853:1179648,16384,0 ) ) -k1,14537:3078556,49800853:-34777008 +k1,14535:3078556,49800853:-34777008 ) ] -g1,14537:6630773,4812305 -k1,14537:19575446,4812305:11749296 -g1,14537:21198117,4812305 -g1,14537:21985204,4812305 -g1,14537:24539797,4812305 -g1,14537:25949476,4812305 -g1,14537:28728857,4812305 -g1,14537:29852144,4812305 +g1,14535:6630773,4812305 +k1,14535:19575446,4812305:11749296 +g1,14535:21198117,4812305 +g1,14535:21985204,4812305 +g1,14535:24539797,4812305 +g1,14535:25949476,4812305 +g1,14535:28728857,4812305 +g1,14535:29852144,4812305 ) ) ] -[1,14537:6630773,45706769:25952256,40108032,0 -(1,14537:6630773,45706769:25952256,40108032,0 -(1,14537:6630773,45706769:0,0,0 -g1,14537:6630773,45706769 +[1,14535:6630773,45706769:25952256,40108032,0 +(1,14535:6630773,45706769:25952256,40108032,0 +(1,14535:6630773,45706769:0,0,0 +g1,14535:6630773,45706769 +) +[1,14535:6630773,45706769:25952256,40108032,0 +[1,14504:6630773,19287088:25952256,13688351,0 +[1,14504:6630773,19287088:25952256,13688351,0 +(1,14503:6630773,12449685:25952256,6850948,0 +k1,14503:7712309,12449685:1081536 +h1,14501:7712309,12449685:0,0,0 +(1,14501:7712309,12449685:23609877,6850948,0 +g1,14501:10984113,12449685 +(1,14501:10984113,6227191:0,0,0 +(1,14501:10984113,6227191:0,0,0 +g1,14483:10984113,6227191 +(1,14484:10984113,6227191:0,0,0 +(1,14484:10984113,6227191:0,0,0 +g1,14484:10984113,6227191 +g1,14484:10984113,6227191 +g1,14484:10984113,6227191 +g1,14484:10984113,6227191 +g1,14484:10984113,6227191 +(1,14484:10984113,6227191:0,0,0 +(1,14484:10984113,6227191:4940249,454754,104590 +(1,14484:10984113,6227191:4940249,454754,104590 +g1,14484:12915197,6227191 +$1,14484:12915197,6227191 +$1,14484:13522716,6227191 +g1,14484:13702023,6227191 +(1,14484:13702023,6227191:0,414307,104590 +r1,14535:15924362,6227191:2222339,518897,104590 +k1,14484:13702023,6227191:-2222339 +) +(1,14484:13702023,6227191:2222339,414307,104590 +k1,14484:13702023,6227191:3277 +h1,14484:15921085,6227191:0,370085,101313 +) +) +g1,14484:15924362,6227191 +) +) +g1,14484:10984113,6227191 +g1,14484:10984113,6227191 +) +) +g1,14484:10984113,6227191 +(1,14485:10984113,6227191:0,0,0 +(1,14485:10984113,6227191:0,0,0 +g1,14485:10984113,6227191 +g1,14485:10984113,6227191 +g1,14485:10984113,6227191 +g1,14485:10984113,6227191 +g1,14485:10984113,6227191 +(1,14485:10984113,6227191:0,0,0 +(1,14485:10984113,6227191:5813184,454754,104590 +(1,14485:10984113,6227191:5813184,454754,104590 +g1,14485:14737754,6227191 +$1,14485:14737754,6227191 +$1,14485:15345273,6227191 +g1,14485:15524580,6227191 +(1,14485:15524580,6227191:0,408008,104590 +r1,14535:16797297,6227191:1272717,512598,104590 +k1,14485:15524580,6227191:-1272717 +) +(1,14485:15524580,6227191:1272717,408008,104590 +k1,14485:15524580,6227191:3277 +h1,14485:16794020,6227191:0,370085,101313 +) +) +g1,14485:16797297,6227191 +) +) +g1,14485:10984113,6227191 +g1,14485:10984113,6227191 +) ) -[1,14537:6630773,45706769:25952256,40108032,0 -[1,14506:6630773,19287088:25952256,13688351,0 -[1,14506:6630773,19287088:25952256,13688351,0 -(1,14505:6630773,12449685:25952256,6850948,0 -k1,14505:7712309,12449685:1081536 -h1,14503:7712309,12449685:0,0,0 -(1,14503:7712309,12449685:23609877,6850948,0 -g1,14503:10984113,12449685 -(1,14503:10984113,6227191:0,0,0 -(1,14503:10984113,6227191:0,0,0 g1,14485:10984113,6227191 (1,14486:10984113,6227191:0,0,0 (1,14486:10984113,6227191:0,0,0 @@ -256631,22 +256891,22 @@ g1,14486:10984113,6227191 g1,14486:10984113,6227191 g1,14486:10984113,6227191 (1,14486:10984113,6227191:0,0,0 -(1,14486:10984113,6227191:4940249,454754,104590 -(1,14486:10984113,6227191:4940249,454754,104590 -g1,14486:12915197,6227191 -$1,14486:12915197,6227191 -$1,14486:13522716,6227191 -g1,14486:13702023,6227191 -(1,14486:13702023,6227191:0,414307,104590 -r1,14537:15924362,6227191:2222339,518897,104590 -k1,14486:13702023,6227191:-2222339 +(1,14486:10984113,6227191:5356075,454754,120913 +(1,14486:10984113,6227191:5356075,454754,120913 +g1,14486:13331023,6227191 +$1,14486:13331023,6227191 +$1,14486:13938542,6227191 +g1,14486:14117849,6227191 +(1,14486:14117849,6227191:0,408008,110889 +r1,14535:16340188,6227191:2222339,518897,110889 +k1,14486:14117849,6227191:-2222339 ) -(1,14486:13702023,6227191:2222339,414307,104590 -k1,14486:13702023,6227191:3277 -h1,14486:15921085,6227191:0,370085,101313 +(1,14486:14117849,6227191:2222339,408008,110889 +k1,14486:14117849,6227191:3277 +h1,14486:16336911,6227191:0,370085,101313 ) ) -g1,14486:15924362,6227191 +g1,14486:16340188,6227191 ) ) g1,14486:10984113,6227191 @@ -256662,29 +256922,28 @@ g1,14487:10984113,6227191 g1,14487:10984113,6227191 g1,14487:10984113,6227191 (1,14487:10984113,6227191:0,0,0 -(1,14487:10984113,6227191:5813184,454754,104590 -(1,14487:10984113,6227191:5813184,454754,104590 -g1,14487:14737754,6227191 -$1,14487:14737754,6227191 -$1,14487:15345273,6227191 -g1,14487:15524580,6227191 -(1,14487:15524580,6227191:0,408008,104590 -r1,14537:16797297,6227191:1272717,512598,104590 -k1,14487:15524580,6227191:-1272717 +(1,14487:10984113,6227191:6124221,454754,104590 +(1,14487:10984113,6227191:6124221,454754,104590 +g1,14487:14415710,6227191 +$1,14487:14415710,6227191 +$1,14487:15023229,6227191 +g1,14487:15202536,6227191 +(1,14487:15202536,6227191:0,414307,104590 +r1,14535:17108334,6227191:1905798,518897,104590 +k1,14487:15202536,6227191:-1905798 ) -(1,14487:15524580,6227191:1272717,408008,104590 -k1,14487:15524580,6227191:3277 -h1,14487:16794020,6227191:0,370085,101313 +(1,14487:15202536,6227191:1905798,414307,104590 +k1,14487:15202536,6227191:3277 +h1,14487:17105057,6227191:0,370085,101313 ) ) -g1,14487:16797297,6227191 +g1,14487:17108334,6227191 ) ) g1,14487:10984113,6227191 g1,14487:10984113,6227191 ) ) -g1,14487:10984113,6227191 (1,14488:10984113,6227191:0,0,0 (1,14488:10984113,6227191:0,0,0 g1,14488:10984113,6227191 @@ -256693,22 +256952,18 @@ g1,14488:10984113,6227191 g1,14488:10984113,6227191 g1,14488:10984113,6227191 (1,14488:10984113,6227191:0,0,0 -(1,14488:10984113,6227191:5356075,454754,120913 -(1,14488:10984113,6227191:5356075,454754,120913 -g1,14488:13331023,6227191 -$1,14488:13331023,6227191 -$1,14488:13938542,6227191 -g1,14488:14117849,6227191 -(1,14488:14117849,6227191:0,408008,110889 -r1,14537:16340188,6227191:2222339,518897,110889 -k1,14488:14117849,6227191:-2222339 +(1,14488:10984113,6227191:1589257,408008,110889 +(1,14488:10984113,6227191:1589257,408008,110889 +(1,14488:10984113,6227191:0,408008,110889 +r1,14535:12573370,6227191:1589257,518897,110889 +k1,14488:10984113,6227191:-1589257 ) -(1,14488:14117849,6227191:2222339,408008,110889 -k1,14488:14117849,6227191:3277 -h1,14488:16336911,6227191:0,370085,101313 +(1,14488:10984113,6227191:1589257,408008,110889 +k1,14488:10984113,6227191:3277 +h1,14488:12570093,6227191:0,370085,101313 ) ) -g1,14488:16340188,6227191 +g1,14488:12573370,6227191 ) ) g1,14488:10984113,6227191 @@ -256724,28 +256979,26 @@ g1,14489:10984113,6227191 g1,14489:10984113,6227191 g1,14489:10984113,6227191 (1,14489:10984113,6227191:0,0,0 -(1,14489:10984113,6227191:6124221,454754,104590 -(1,14489:10984113,6227191:6124221,454754,104590 -g1,14489:14415710,6227191 -$1,14489:14415710,6227191 -$1,14489:15023229,6227191 -g1,14489:15202536,6227191 -(1,14489:15202536,6227191:0,414307,104590 -r1,14537:17108334,6227191:1905798,518897,104590 -k1,14489:15202536,6227191:-1905798 +(1,14489:10984113,6227191:2866617,454754,120913 +(1,14489:10984113,6227191:2866617,454754,120913 +(1,14489:10984113,6227191:0,408008,110889 +r1,14535:11940289,6227191:956176,518897,110889 +k1,14489:10984113,6227191:-956176 ) -(1,14489:15202536,6227191:1905798,414307,104590 -k1,14489:15202536,6227191:3277 -h1,14489:17105057,6227191:0,370085,101313 +(1,14489:10984113,6227191:956176,408008,110889 +k1,14489:10984113,6227191:3277 +h1,14489:11937012,6227191:0,370085,101313 ) +g1,14489:12119596,6227191 ) -g1,14489:17108334,6227191 +g1,14489:13850730,6227191 ) ) g1,14489:10984113,6227191 g1,14489:10984113,6227191 ) ) +g1,14489:10984113,6227191 (1,14490:10984113,6227191:0,0,0 (1,14490:10984113,6227191:0,0,0 g1,14490:10984113,6227191 @@ -256754,18 +257007,18 @@ g1,14490:10984113,6227191 g1,14490:10984113,6227191 g1,14490:10984113,6227191 (1,14490:10984113,6227191:0,0,0 -(1,14490:10984113,6227191:1589257,408008,110889 -(1,14490:10984113,6227191:1589257,408008,110889 -(1,14490:10984113,6227191:0,408008,110889 -r1,14537:12573370,6227191:1589257,518897,110889 -k1,14490:10984113,6227191:-1589257 +(1,14490:10984113,6227191:2855420,408008,104590 +(1,14490:10984113,6227191:2855420,408008,104590 +(1,14490:10984113,6227191:0,408008,104590 +r1,14535:13839533,6227191:2855420,512598,104590 +k1,14490:10984113,6227191:-2855420 ) -(1,14490:10984113,6227191:1589257,408008,110889 +(1,14490:10984113,6227191:2855420,408008,104590 k1,14490:10984113,6227191:3277 -h1,14490:12570093,6227191:0,370085,101313 +h1,14490:13836256,6227191:0,370085,101313 ) ) -g1,14490:12573370,6227191 +g1,14490:13839533,6227191 ) ) g1,14490:10984113,6227191 @@ -256781,19 +257034,18 @@ g1,14491:10984113,6227191 g1,14491:10984113,6227191 g1,14491:10984113,6227191 (1,14491:10984113,6227191:0,0,0 -(1,14491:10984113,6227191:2866617,454754,120913 -(1,14491:10984113,6227191:2866617,454754,120913 -(1,14491:10984113,6227191:0,408008,110889 -r1,14537:11940289,6227191:956176,518897,110889 -k1,14491:10984113,6227191:-956176 +(1,14491:10984113,6227191:2222339,408008,104590 +(1,14491:10984113,6227191:2222339,408008,104590 +(1,14491:10984113,6227191:0,408008,104590 +r1,14535:13206452,6227191:2222339,512598,104590 +k1,14491:10984113,6227191:-2222339 ) -(1,14491:10984113,6227191:956176,408008,110889 +(1,14491:10984113,6227191:2222339,408008,104590 k1,14491:10984113,6227191:3277 -h1,14491:11937012,6227191:0,370085,101313 +h1,14491:13203175,6227191:0,370085,101313 ) -g1,14491:12119596,6227191 ) -g1,14491:13850730,6227191 +g1,14491:13206452,6227191 ) ) g1,14491:10984113,6227191 @@ -256809,18 +257061,18 @@ g1,14492:10984113,6227191 g1,14492:10984113,6227191 g1,14492:10984113,6227191 (1,14492:10984113,6227191:0,0,0 -(1,14492:10984113,6227191:2855420,408008,104590 -(1,14492:10984113,6227191:2855420,408008,104590 +(1,14492:10984113,6227191:1905798,408008,104590 +(1,14492:10984113,6227191:1905798,408008,104590 (1,14492:10984113,6227191:0,408008,104590 -r1,14537:13839533,6227191:2855420,512598,104590 -k1,14492:10984113,6227191:-2855420 +r1,14535:12889911,6227191:1905798,512598,104590 +k1,14492:10984113,6227191:-1905798 ) -(1,14492:10984113,6227191:2855420,408008,104590 +(1,14492:10984113,6227191:1905798,408008,104590 k1,14492:10984113,6227191:3277 -h1,14492:13836256,6227191:0,370085,101313 +h1,14492:12886634,6227191:0,370085,101313 ) ) -g1,14492:13839533,6227191 +g1,14492:12889911,6227191 ) ) g1,14492:10984113,6227191 @@ -256828,59 +257080,17 @@ g1,14492:10984113,6227191 ) ) g1,14492:10984113,6227191 -(1,14493:10984113,6227191:0,0,0 -(1,14493:10984113,6227191:0,0,0 -g1,14493:10984113,6227191 g1,14493:10984113,6227191 g1,14493:10984113,6227191 g1,14493:10984113,6227191 g1,14493:10984113,6227191 -(1,14493:10984113,6227191:0,0,0 -(1,14493:10984113,6227191:2222339,408008,104590 -(1,14493:10984113,6227191:2222339,408008,104590 -(1,14493:10984113,6227191:0,408008,104590 -r1,14537:13206452,6227191:2222339,512598,104590 -k1,14493:10984113,6227191:-2222339 -) -(1,14493:10984113,6227191:2222339,408008,104590 -k1,14493:10984113,6227191:3277 -h1,14493:13203175,6227191:0,370085,101313 -) -) -g1,14493:13206452,6227191 -) -) -g1,14493:10984113,6227191 g1,14493:10984113,6227191 -) -) g1,14493:10984113,6227191 -(1,14494:10984113,6227191:0,0,0 -(1,14494:10984113,6227191:0,0,0 g1,14494:10984113,6227191 g1,14494:10984113,6227191 g1,14494:10984113,6227191 g1,14494:10984113,6227191 g1,14494:10984113,6227191 -(1,14494:10984113,6227191:0,0,0 -(1,14494:10984113,6227191:1905798,408008,104590 -(1,14494:10984113,6227191:1905798,408008,104590 -(1,14494:10984113,6227191:0,408008,104590 -r1,14537:12889911,6227191:1905798,512598,104590 -k1,14494:10984113,6227191:-1905798 -) -(1,14494:10984113,6227191:1905798,408008,104590 -k1,14494:10984113,6227191:3277 -h1,14494:12886634,6227191:0,370085,101313 -) -) -g1,14494:12889911,6227191 -) -) -g1,14494:10984113,6227191 -g1,14494:10984113,6227191 -) -) g1,14494:10984113,6227191 g1,14495:10984113,6227191 g1,14495:10984113,6227191 @@ -256920,2590 +257130,2577 @@ g1,14500:10984113,6227191 g1,14500:10984113,6227191 g1,14501:10984113,6227191 g1,14501:10984113,6227191 -g1,14501:10984113,6227191 -g1,14501:10984113,6227191 -g1,14501:10984113,6227191 -g1,14501:10984113,6227191 -g1,14502:10984113,6227191 -g1,14502:10984113,6227191 -g1,14502:10984113,6227191 -g1,14502:10984113,6227191 -g1,14502:10984113,6227191 -g1,14502:10984113,6227191 -g1,14503:10984113,6227191 -g1,14503:10984113,6227191 ) -g1,14503:10984113,6227191 +g1,14501:10984113,6227191 ) ) +g1,14501:31501493,12449685 g1,14503:31501493,12449685 -g1,14505:31501493,12449685 -k1,14505:32583029,12449685:1081536 -) -(1,14505:6630773,13970125:25952256,505283,134348 -h1,14505:6630773,13970125:0,0,0 -g1,14505:8923222,13970125 -k1,14505:32583029,13970125:22669558 -g1,14505:32583029,13970125 -) -(1,14505:6630773,14835205:25952256,513147,134348 -h1,14505:6630773,14835205:0,0,0 -k1,14505:10654222,14835205:285275 -k1,14505:12752223,14835205:285275 -k1,14505:15025205,14835205:285275 -k1,14505:17245103,14835205:285275 -k1,14505:18146415,14835205:285274 -k1,14505:18846447,14835205:285189 -k1,14505:19663219,14835205:285275 -k1,14505:21525946,14835205:285275 -k1,14505:22427259,14835205:285275 -k1,14505:24398119,14835205:285274 -k1,14505:26885404,14835205:285275 -k1,14505:27822107,14835205:285275 -k1,14505:29851295,14835205:285275 -k1,14505:31649796,14835205:285275 -k1,14505:32583029,14835205:0 -) -(1,14505:6630773,15700285:25952256,513147,134348 -k1,14505:8629457,15700285:185958 -k1,14505:11307095,15700285:185959 -k1,14505:13905433,15700285:185958 -k1,14505:16707589,15700285:185959 -k1,14505:18461168,15700285:185958 -k1,14505:20632212,15700285:185958 -h1,14505:21602800,15700285:0,0,0 -k1,14505:21788759,15700285:185959 -k1,14505:24611230,15700285:185958 -k1,14505:25448617,15700285:185959 -k1,14505:27295257,15700285:185958 -k1,14505:27837076,15700285:185959 -k1,14505:31655695,15700285:185958 -k1,14505:32583029,15700285:0 -) -(1,14505:6630773,16565365:25952256,513147,134348 -k1,14505:7893954,16565365:271621 -k1,14505:10153283,16565365:271622 -k1,14505:11286047,16565365:271621 -k1,14505:14681115,16565365:271622 -k1,14505:16790366,16565365:271621 -k1,14505:18053547,16565365:271621 -k1,14505:20482614,16565365:271622 -k1,14505:22148186,16565365:271621 -k1,14505:24354431,16565365:271622 -k1,14505:25285344,16565365:271621 -k1,14505:27258935,16565365:271621 -k1,14505:29246945,16565365:271622 -k1,14505:30177858,16565365:271621 -k1,14505:32583029,16565365:0 -) -(1,14505:6630773,17430445:25952256,513147,126483 -k1,14505:8076379,17430445:254161 -k1,14505:9939449,17430445:254161 -k1,14505:11680622,17430445:254161 -k1,14505:12926343,17430445:254161 -k1,14505:15577811,17430445:254161 -k1,14505:16483400,17430445:254161 -(1,14505:16483400,17430445:0,452978,122846 -r1,14537:18248513,17430445:1765113,575824,122846 -k1,14505:16483400,17430445:-1765113 -) -(1,14505:16483400,17430445:1765113,452978,122846 -k1,14505:16483400,17430445:3277 -h1,14505:18245236,17430445:0,411205,112570 -) -k1,14505:18676345,17430445:254162 -k1,14505:20420795,17430445:254161 -k1,14505:21694041,17430445:254161 -k1,14505:23602986,17430445:254161 -k1,14505:25458847,17430445:254161 -k1,14505:29017989,17430445:254161 -k1,14505:30785376,17430445:254161 -k1,14505:32583029,17430445:0 -) -(1,14505:6630773,18295525:25952256,505283,126483 -k1,14505:9629998,18295525:214600 -k1,14505:10836159,18295525:214601 -k1,14505:13299955,18295525:214600 -k1,14505:15204073,18295525:214600 -k1,14505:16885370,18295525:214601 -k1,14505:19973724,18295525:214600 -k1,14505:21379770,18295525:214601 -k1,14505:25360069,18295525:214600 -k1,14505:28416310,18295525:214600 -k1,14505:29622471,18295525:214601 -k1,14505:31723197,18295525:214600 -k1,14505:32583029,18295525:0 -) -(1,14505:6630773,19160605:25952256,513147,126483 -g1,14505:10194620,19160605 -g1,14505:12766252,19160605 -g1,14505:14803111,19160605 -g1,14505:16193785,19160605 -g1,14505:18571431,19160605 -g1,14505:19762220,19160605 -g1,14505:22605171,19160605 -g1,14505:23490562,19160605 -g1,14505:26285672,19160605 -g1,14505:27476461,19160605 -k1,14505:32583029,19160605:2203323 -g1,14505:32583029,19160605 -) -] -] -v1,14511:6630773,21253168:0,393216,0 -(1,14515:6630773,21600457:25952256,740505,196608 -g1,14515:6630773,21600457 -g1,14515:6630773,21600457 -g1,14515:6434165,21600457 -(1,14515:6434165,21600457:0,740505,196608 -r1,14537:32779637,21600457:26345472,937113,196608 -k1,14515:6434165,21600457:-26345472 -) -(1,14515:6434165,21600457:26345472,740505,196608 -[1,14515:6630773,21600457:25952256,543897,0 -(1,14513:6630773,21487605:25952256,431045,112852 -(1,14512:6630773,21487605:0,0,0 -g1,14512:6630773,21487605 -g1,14512:6630773,21487605 -g1,14512:6303093,21487605 -(1,14512:6303093,21487605:0,0,0 -) -g1,14512:6630773,21487605 -) -g1,14513:8290543,21487605 -g1,14513:9286405,21487605 -g1,14513:12605945,21487605 -g1,14513:13269853,21487605 -g1,14513:15593531,21487605 -g1,14513:17253301,21487605 -g1,14513:17917209,21487605 -g1,14513:22564564,21487605 -g1,14513:24888242,21487605 -g1,14513:25552150,21487605 -h1,14513:29867551,21487605:0,0,0 -k1,14513:32583029,21487605:2715478 -g1,14513:32583029,21487605 -) -] -) -g1,14515:32583029,21600457 -g1,14515:6630773,21600457 -g1,14515:6630773,21600457 -g1,14515:32583029,21600457 -g1,14515:32583029,21600457 -) -h1,14515:6630773,21797065:0,0,0 -(1,14519:6630773,22662145:25952256,513147,134348 -h1,14518:6630773,22662145:983040,0,0 -k1,14518:10228757,22662145:216982 -(1,14518:10228757,22662145:0,452978,115847 -r1,14537:12345582,22662145:2116825,568825,115847 -k1,14518:10228757,22662145:-2116825 -) -(1,14518:10228757,22662145:2116825,452978,115847 -k1,14518:10228757,22662145:3277 -h1,14518:12342305,22662145:0,411205,112570 -) -k1,14518:12562565,22662145:216983 -k1,14518:13465709,22662145:216982 -k1,14518:14630342,22662145:216982 -k1,14518:18860750,22662145:216983 -k1,14518:20269177,22662145:216982 -k1,14518:23436591,22662145:216983 -k1,14518:26676749,22662145:216982 -k1,14518:28675000,22662145:216982 -k1,14518:29845532,22662145:216983 -k1,14518:31896867,22662145:216982 -k1,14518:32583029,22662145:0 -) -(1,14519:6630773,23527225:25952256,513147,126483 -k1,14518:9072790,23527225:225589 -k1,14518:10317465,23527225:225590 -k1,14518:16071671,23527225:225589 -k1,14518:17574558,23527225:225590 -k1,14518:18459439,23527225:225589 -k1,14518:21752769,23527225:225590 -k1,14518:23175045,23527225:225589 -k1,14518:25756654,23527225:225590 -k1,14518:29763670,23527225:225589 -k1,14518:32583029,23527225:0 -) -(1,14519:6630773,24392305:25952256,513147,134348 -k1,14518:8681441,24392305:195344 -k1,14518:9492823,24392305:195344 -k1,14518:10707252,24392305:195344 -k1,14518:12715322,24392305:195344 -k1,14518:14898373,24392305:195344 -k1,14518:15781190,24392305:195344 -k1,14518:17183707,24392305:195344 -k1,14518:18445322,24392305:195344 -k1,14518:18996526,24392305:195344 -k1,14518:20775875,24392305:195344 -k1,14518:25660975,24392305:195344 -k1,14518:28342100,24392305:195344 -h1,14518:29884818,24392305:0,0,0 -k1,14518:30080162,24392305:195344 -k1,14518:31084876,24392305:195344 -k1,14518:32583029,24392305:0 -) -(1,14519:6630773,25257385:25952256,513147,126483 -h1,14518:7826150,25257385:0,0,0 -k1,14518:8454125,25257385:247211 -k1,14518:9387498,25257385:247211 -k1,14518:11449401,25257385:247211 -k1,14518:13085975,25257385:247211 -k1,14518:14324746,25257385:247211 -k1,14518:16709741,25257385:247211 -k1,14518:17608380,25257385:247211 -k1,14518:19840677,25257385:247211 -k1,14518:20443748,25257385:247211 -k1,14518:23453302,25257385:247211 -k1,14518:27655611,25257385:247211 -k1,14518:29283666,25257385:247211 -k1,14518:30062374,25257385:247211 -k1,14518:31839851,25257385:247211 -k1,14518:32583029,25257385:0 -) -(1,14519:6630773,26122465:25952256,513147,134348 -k1,14518:10209744,26122465:175686 -k1,14518:11404515,26122465:175686 -k1,14518:17108818,26122465:175686 -k1,14518:18561802,26122465:175687 -k1,14518:19685139,26122465:175686 -(1,14518:19685139,26122465:0,459977,115847 -r1,14537:20746828,26122465:1061689,575824,115847 -k1,14518:19685139,26122465:-1061689 -) -(1,14518:19685139,26122465:1061689,459977,115847 -k1,14518:19685139,26122465:3277 -h1,14518:20743551,26122465:0,411205,112570 -) -k1,14518:20922514,26122465:175686 -k1,14518:22803447,26122465:175686 -h1,14518:23998824,26122465:0,0,0 -k1,14518:24381604,26122465:175686 -k1,14518:25748735,26122465:175686 -k1,14518:26943507,26122465:175687 -k1,14518:28396490,26122465:175686 -k1,14518:30440607,26122465:175686 -k1,14518:31563944,26122465:175686 -k1,14518:32583029,26122465:0 -) -(1,14519:6630773,26987545:25952256,513147,126483 -g1,14518:8817709,26987545 -g1,14518:9704411,26987545 -g1,14518:11789766,26987545 -g1,14518:13008080,26987545 -g1,14518:16946793,26987545 -g1,14518:17805314,26987545 -g1,14518:18360403,26987545 -g1,14518:23025911,26987545 -k1,14519:32583029,26987545:5723262 -g1,14519:32583029,26987545 -) -v1,14521:6630773,27672400:0,393216,0 -(1,14525:6630773,28013083:25952256,733899,196608 -g1,14525:6630773,28013083 -g1,14525:6630773,28013083 -g1,14525:6434165,28013083 -(1,14525:6434165,28013083:0,733899,196608 -r1,14537:32779637,28013083:26345472,930507,196608 -k1,14525:6434165,28013083:-26345472 -) -(1,14525:6434165,28013083:26345472,733899,196608 -[1,14525:6630773,28013083:25952256,537291,0 -(1,14523:6630773,27906837:25952256,431045,106246 -(1,14522:6630773,27906837:0,0,0 -g1,14522:6630773,27906837 -g1,14522:6630773,27906837 -g1,14522:6303093,27906837 -(1,14522:6303093,27906837:0,0,0 -) -g1,14522:6630773,27906837 -) -k1,14523:6630773,27906837:0 -g1,14523:10282267,27906837 -g1,14523:12273991,27906837 -g1,14523:12937899,27906837 -h1,14523:13601807,27906837:0,0,0 -k1,14523:32583029,27906837:18981222 -g1,14523:32583029,27906837 -) -] -) -g1,14525:32583029,28013083 -g1,14525:6630773,28013083 -g1,14525:6630773,28013083 -g1,14525:32583029,28013083 -g1,14525:32583029,28013083 -) -h1,14525:6630773,28209691:0,0,0 -(1,14528:6630773,41121331:25952256,12846104,0 -k1,14528:13183781,41121331:6553008 -h1,14527:13183781,41121331:0,0,0 -(1,14527:13183781,41121331:12846240,12846104,0 -(1,14527:13183781,41121331:12846136,12846136,0 -(1,14527:13183781,41121331:12846136,12846136,0 -(1,14527:13183781,41121331:0,12846136,0 -(1,14527:13183781,41121331:0,18945146,0 -(1,14527:13183781,41121331:18945146,18945146,0 -) -k1,14527:13183781,41121331:-18945146 -) -) -g1,14527:26029917,41121331 -) -) -) -g1,14528:26030021,41121331 -k1,14528:32583029,41121331:6553008 -) -(1,14535:6630773,41986411:25952256,513147,126483 -h1,14534:6630773,41986411:983040,0,0 -k1,14534:8963974,41986411:153474 -k1,14534:11765758,41986411:153474 -k1,14534:13486853,41986411:153474 -k1,14534:14659412,41986411:153474 -(1,14534:14659412,41986411:0,452978,115847 -r1,14537:17127949,41986411:2468537,568825,115847 -k1,14534:14659412,41986411:-2468537 -) -(1,14534:14659412,41986411:2468537,452978,115847 -k1,14534:14659412,41986411:3277 -h1,14534:17124672,41986411:0,411205,112570 -) -k1,14534:17281424,41986411:153475 -k1,14534:19889221,41986411:153474 -k1,14534:20990346,41986411:153474 -k1,14534:22552143,41986411:153428 -k1,14534:23723392,41986411:153475 -k1,14534:24977871,41986411:153474 -k1,14534:26823485,41986411:153474 -k1,14534:30493621,41986411:153474 -k1,14534:31298523,41986411:153474 -k1,14534:32583029,41986411:0 -) -(1,14535:6630773,42851491:25952256,513147,126483 -k1,14534:7781236,42851491:202812 -k1,14534:8912690,42851491:202809 -k1,14534:10306947,42851491:202812 -k1,14534:11137595,42851491:202813 -k1,14534:11755246,42851491:202808 -k1,14534:14622097,42851491:202812 -k1,14534:17579388,42851491:202813 -k1,14534:18433628,42851491:202812 -k1,14534:20179158,42851491:202812 -k1,14534:21191341,42851491:202813 -k1,14534:22585598,42851491:202812 -k1,14534:25641848,42851491:202812 -k1,14534:26527545,42851491:202812 -$1,14534:26527545,42851491 -$1,14534:26995472,42851491 -k1,14534:29421922,42851491:202813 -k1,14534:31128785,42851491:202812 -k1,14535:32583029,42851491:0 -) -(1,14535:6630773,43716571:25952256,505283,134348 -k1,14534:8624232,43716571:132892 -k1,14534:10799880,43716571:132891 -k1,14534:14090297,43716571:132892 -k1,14534:14984717,43716571:132892 -k1,14534:17545062,43716571:132891 -k1,14534:18448657,43716571:132892 -k1,14534:21653877,43716571:132892 -k1,14534:22438196,43716571:132891 -k1,14534:25851820,43716571:132892 -(1,14534:25851820,43716571:0,414482,115847 -r1,14537:27265221,43716571:1413401,530329,115847 -k1,14534:25851820,43716571:-1413401 -) -(1,14534:25851820,43716571:1413401,414482,115847 -k1,14534:25851820,43716571:3277 -h1,14534:27261944,43716571:0,411205,112570 -) -k1,14534:27571783,43716571:132892 -k1,14534:28332509,43716571:132891 -k1,14534:29918990,43716571:132892 -k1,14534:32583029,43716571:0 -) -(1,14535:6630773,44581651:25952256,513147,134348 -k1,14534:7502729,44581651:204800 -k1,14534:8296042,44581651:204800 -k1,14534:10356822,44581651:204800 -k1,14534:10917482,44581651:204800 -k1,14534:14846693,44581651:204800 -k1,14534:16242938,44581651:204800 -k1,14534:17130623,44581651:204800 -k1,14534:18106125,44581651:204799 -$1,14534:18106125,44581651 -$1,14534:18551114,44581651 -k1,14534:20160351,44581651:204800 -k1,14534:21356711,44581651:204800 -k1,14534:24770154,44581651:204800 -k1,14534:25736482,44581651:204800 -k1,14534:28206862,44581651:204800 -k1,14534:31773659,44581651:204800 -k1,14534:32583029,44581651:0 -) -] -(1,14537:32583029,45706769:0,0,0 -g1,14537:32583029,45706769 -) -) -] -(1,14537:6630773,47279633:25952256,0,0 -h1,14537:6630773,47279633:25952256,0,0 -) -] -(1,14537:4262630,4025873:0,0,0 -[1,14537:-473656,4025873:0,0,0 -(1,14537:-473656,-710413:0,0,0 -(1,14537:-473656,-710413:0,0,0 -g1,14537:-473656,-710413 -) -g1,14537:-473656,-710413 +k1,14503:32583029,12449685:1081536 +) +(1,14503:6630773,13970125:25952256,505283,134348 +h1,14503:6630773,13970125:0,0,0 +g1,14503:8923222,13970125 +k1,14503:32583029,13970125:22669558 +g1,14503:32583029,13970125 +) +(1,14503:6630773,14835205:25952256,513147,134348 +h1,14503:6630773,14835205:0,0,0 +k1,14503:10654222,14835205:285275 +k1,14503:12752223,14835205:285275 +k1,14503:15025205,14835205:285275 +k1,14503:17245103,14835205:285275 +k1,14503:18146415,14835205:285274 +k1,14503:18846447,14835205:285189 +k1,14503:19663219,14835205:285275 +k1,14503:21525946,14835205:285275 +k1,14503:22427259,14835205:285275 +k1,14503:24398119,14835205:285274 +k1,14503:26885404,14835205:285275 +k1,14503:27822107,14835205:285275 +k1,14503:29851295,14835205:285275 +k1,14503:31649796,14835205:285275 +k1,14503:32583029,14835205:0 +) +(1,14503:6630773,15700285:25952256,513147,134348 +k1,14503:8629457,15700285:185958 +k1,14503:11307095,15700285:185959 +k1,14503:13905433,15700285:185958 +k1,14503:16707589,15700285:185959 +k1,14503:18461168,15700285:185958 +k1,14503:20632212,15700285:185958 +h1,14503:21602800,15700285:0,0,0 +k1,14503:21788759,15700285:185959 +k1,14503:24611230,15700285:185958 +k1,14503:25448617,15700285:185959 +k1,14503:27295257,15700285:185958 +k1,14503:27837076,15700285:185959 +k1,14503:31655695,15700285:185958 +k1,14503:32583029,15700285:0 +) +(1,14503:6630773,16565365:25952256,513147,134348 +k1,14503:7893954,16565365:271621 +k1,14503:10153283,16565365:271622 +k1,14503:11286047,16565365:271621 +k1,14503:14681115,16565365:271622 +k1,14503:16790366,16565365:271621 +k1,14503:18053547,16565365:271621 +k1,14503:20482614,16565365:271622 +k1,14503:22148186,16565365:271621 +k1,14503:24354431,16565365:271622 +k1,14503:25285344,16565365:271621 +k1,14503:27258935,16565365:271621 +k1,14503:29246945,16565365:271622 +k1,14503:30177858,16565365:271621 +k1,14503:32583029,16565365:0 +) +(1,14503:6630773,17430445:25952256,513147,126483 +k1,14503:8076379,17430445:254161 +k1,14503:9939449,17430445:254161 +k1,14503:11680622,17430445:254161 +k1,14503:12926343,17430445:254161 +k1,14503:15577811,17430445:254161 +k1,14503:16483400,17430445:254161 +(1,14503:16483400,17430445:0,452978,122846 +r1,14535:18248513,17430445:1765113,575824,122846 +k1,14503:16483400,17430445:-1765113 +) +(1,14503:16483400,17430445:1765113,452978,122846 +k1,14503:16483400,17430445:3277 +h1,14503:18245236,17430445:0,411205,112570 +) +k1,14503:18676345,17430445:254162 +k1,14503:20420795,17430445:254161 +k1,14503:21694041,17430445:254161 +k1,14503:23602986,17430445:254161 +k1,14503:25458847,17430445:254161 +k1,14503:29017989,17430445:254161 +k1,14503:30785376,17430445:254161 +k1,14503:32583029,17430445:0 +) +(1,14503:6630773,18295525:25952256,505283,126483 +k1,14503:9629998,18295525:214600 +k1,14503:10836159,18295525:214601 +k1,14503:13299955,18295525:214600 +k1,14503:15204073,18295525:214600 +k1,14503:16885370,18295525:214601 +k1,14503:19973724,18295525:214600 +k1,14503:21379770,18295525:214601 +k1,14503:25360069,18295525:214600 +k1,14503:28416310,18295525:214600 +k1,14503:29622471,18295525:214601 +k1,14503:31723197,18295525:214600 +k1,14503:32583029,18295525:0 +) +(1,14503:6630773,19160605:25952256,513147,126483 +g1,14503:10194620,19160605 +g1,14503:12766252,19160605 +g1,14503:14803111,19160605 +g1,14503:16193785,19160605 +g1,14503:18571431,19160605 +g1,14503:19762220,19160605 +g1,14503:22605171,19160605 +g1,14503:23490562,19160605 +g1,14503:26285672,19160605 +g1,14503:27476461,19160605 +k1,14503:32583029,19160605:2203323 +g1,14503:32583029,19160605 +) +] +] +v1,14509:6630773,21253168:0,393216,0 +(1,14513:6630773,21600457:25952256,740505,196608 +g1,14513:6630773,21600457 +g1,14513:6630773,21600457 +g1,14513:6434165,21600457 +(1,14513:6434165,21600457:0,740505,196608 +r1,14535:32779637,21600457:26345472,937113,196608 +k1,14513:6434165,21600457:-26345472 +) +(1,14513:6434165,21600457:26345472,740505,196608 +[1,14513:6630773,21600457:25952256,543897,0 +(1,14511:6630773,21487605:25952256,431045,112852 +(1,14510:6630773,21487605:0,0,0 +g1,14510:6630773,21487605 +g1,14510:6630773,21487605 +g1,14510:6303093,21487605 +(1,14510:6303093,21487605:0,0,0 +) +g1,14510:6630773,21487605 +) +g1,14511:8290543,21487605 +g1,14511:9286405,21487605 +g1,14511:12605945,21487605 +g1,14511:13269853,21487605 +g1,14511:15593531,21487605 +g1,14511:17253301,21487605 +g1,14511:17917209,21487605 +g1,14511:22564564,21487605 +g1,14511:24888242,21487605 +g1,14511:25552150,21487605 +h1,14511:29867551,21487605:0,0,0 +k1,14511:32583029,21487605:2715478 +g1,14511:32583029,21487605 +) +] +) +g1,14513:32583029,21600457 +g1,14513:6630773,21600457 +g1,14513:6630773,21600457 +g1,14513:32583029,21600457 +g1,14513:32583029,21600457 +) +h1,14513:6630773,21797065:0,0,0 +(1,14517:6630773,22662145:25952256,513147,134348 +h1,14516:6630773,22662145:983040,0,0 +k1,14516:10228757,22662145:216982 +(1,14516:10228757,22662145:0,452978,115847 +r1,14535:12345582,22662145:2116825,568825,115847 +k1,14516:10228757,22662145:-2116825 +) +(1,14516:10228757,22662145:2116825,452978,115847 +k1,14516:10228757,22662145:3277 +h1,14516:12342305,22662145:0,411205,112570 +) +k1,14516:12562565,22662145:216983 +k1,14516:13465709,22662145:216982 +k1,14516:14630342,22662145:216982 +k1,14516:18860750,22662145:216983 +k1,14516:20269177,22662145:216982 +k1,14516:23436591,22662145:216983 +k1,14516:26676749,22662145:216982 +k1,14516:28675000,22662145:216982 +k1,14516:29845532,22662145:216983 +k1,14516:31896867,22662145:216982 +k1,14516:32583029,22662145:0 +) +(1,14517:6630773,23527225:25952256,513147,126483 +k1,14516:9072790,23527225:225589 +k1,14516:10317465,23527225:225590 +k1,14516:16071671,23527225:225589 +k1,14516:17574558,23527225:225590 +k1,14516:18459439,23527225:225589 +k1,14516:21752769,23527225:225590 +k1,14516:23175045,23527225:225589 +k1,14516:25756654,23527225:225590 +k1,14516:29763670,23527225:225589 +k1,14516:32583029,23527225:0 +) +(1,14517:6630773,24392305:25952256,513147,134348 +k1,14516:8681441,24392305:195344 +k1,14516:9492823,24392305:195344 +k1,14516:10707252,24392305:195344 +k1,14516:12715322,24392305:195344 +k1,14516:14898373,24392305:195344 +k1,14516:15781190,24392305:195344 +k1,14516:17183707,24392305:195344 +k1,14516:18445322,24392305:195344 +k1,14516:18996526,24392305:195344 +k1,14516:20775875,24392305:195344 +k1,14516:25660975,24392305:195344 +k1,14516:28342100,24392305:195344 +h1,14516:29884818,24392305:0,0,0 +k1,14516:30080162,24392305:195344 +k1,14516:31084876,24392305:195344 +k1,14516:32583029,24392305:0 +) +(1,14517:6630773,25257385:25952256,513147,126483 +h1,14516:7826150,25257385:0,0,0 +k1,14516:8454125,25257385:247211 +k1,14516:9387498,25257385:247211 +k1,14516:11449401,25257385:247211 +k1,14516:13085975,25257385:247211 +k1,14516:14324746,25257385:247211 +k1,14516:16709741,25257385:247211 +k1,14516:17608380,25257385:247211 +k1,14516:19840677,25257385:247211 +k1,14516:20443748,25257385:247211 +k1,14516:23453302,25257385:247211 +k1,14516:27655611,25257385:247211 +k1,14516:29283666,25257385:247211 +k1,14516:30062374,25257385:247211 +k1,14516:31839851,25257385:247211 +k1,14516:32583029,25257385:0 +) +(1,14517:6630773,26122465:25952256,513147,134348 +k1,14516:10209744,26122465:175686 +k1,14516:11404515,26122465:175686 +k1,14516:17108818,26122465:175686 +k1,14516:18561802,26122465:175687 +k1,14516:19685139,26122465:175686 +(1,14516:19685139,26122465:0,459977,115847 +r1,14535:20746828,26122465:1061689,575824,115847 +k1,14516:19685139,26122465:-1061689 +) +(1,14516:19685139,26122465:1061689,459977,115847 +k1,14516:19685139,26122465:3277 +h1,14516:20743551,26122465:0,411205,112570 +) +k1,14516:20922514,26122465:175686 +k1,14516:22803447,26122465:175686 +h1,14516:23998824,26122465:0,0,0 +k1,14516:24381604,26122465:175686 +k1,14516:25748735,26122465:175686 +k1,14516:26943507,26122465:175687 +k1,14516:28396490,26122465:175686 +k1,14516:30440607,26122465:175686 +k1,14516:31563944,26122465:175686 +k1,14516:32583029,26122465:0 +) +(1,14517:6630773,26987545:25952256,513147,126483 +g1,14516:8817709,26987545 +g1,14516:9704411,26987545 +g1,14516:11789766,26987545 +g1,14516:13008080,26987545 +g1,14516:16946793,26987545 +g1,14516:17805314,26987545 +g1,14516:18360403,26987545 +g1,14516:23025911,26987545 +k1,14517:32583029,26987545:5723262 +g1,14517:32583029,26987545 +) +v1,14519:6630773,27672400:0,393216,0 +(1,14523:6630773,28013083:25952256,733899,196608 +g1,14523:6630773,28013083 +g1,14523:6630773,28013083 +g1,14523:6434165,28013083 +(1,14523:6434165,28013083:0,733899,196608 +r1,14535:32779637,28013083:26345472,930507,196608 +k1,14523:6434165,28013083:-26345472 +) +(1,14523:6434165,28013083:26345472,733899,196608 +[1,14523:6630773,28013083:25952256,537291,0 +(1,14521:6630773,27906837:25952256,431045,106246 +(1,14520:6630773,27906837:0,0,0 +g1,14520:6630773,27906837 +g1,14520:6630773,27906837 +g1,14520:6303093,27906837 +(1,14520:6303093,27906837:0,0,0 +) +g1,14520:6630773,27906837 +) +k1,14521:6630773,27906837:0 +g1,14521:10282267,27906837 +g1,14521:12273991,27906837 +g1,14521:12937899,27906837 +h1,14521:13601807,27906837:0,0,0 +k1,14521:32583029,27906837:18981222 +g1,14521:32583029,27906837 +) +] +) +g1,14523:32583029,28013083 +g1,14523:6630773,28013083 +g1,14523:6630773,28013083 +g1,14523:32583029,28013083 +g1,14523:32583029,28013083 +) +h1,14523:6630773,28209691:0,0,0 +(1,14526:6630773,41121331:25952256,12846104,0 +k1,14526:13183781,41121331:6553008 +h1,14525:13183781,41121331:0,0,0 +(1,14525:13183781,41121331:12846240,12846104,0 +(1,14525:13183781,41121331:12846136,12846136,0 +(1,14525:13183781,41121331:12846136,12846136,0 +(1,14525:13183781,41121331:0,12846136,0 +(1,14525:13183781,41121331:0,18945146,0 +(1,14525:13183781,41121331:18945146,18945146,0 +) +k1,14525:13183781,41121331:-18945146 +) +) +g1,14525:26029917,41121331 +) +) +) +g1,14526:26030021,41121331 +k1,14526:32583029,41121331:6553008 +) +(1,14533:6630773,41986411:25952256,513147,126483 +h1,14532:6630773,41986411:983040,0,0 +k1,14532:8963974,41986411:153474 +k1,14532:11765758,41986411:153474 +k1,14532:13486853,41986411:153474 +k1,14532:14659412,41986411:153474 +(1,14532:14659412,41986411:0,452978,115847 +r1,14535:17127949,41986411:2468537,568825,115847 +k1,14532:14659412,41986411:-2468537 +) +(1,14532:14659412,41986411:2468537,452978,115847 +k1,14532:14659412,41986411:3277 +h1,14532:17124672,41986411:0,411205,112570 +) +k1,14532:17281424,41986411:153475 +k1,14532:19889221,41986411:153474 +k1,14532:20990346,41986411:153474 +k1,14532:22552143,41986411:153428 +k1,14532:23723392,41986411:153475 +k1,14532:24977871,41986411:153474 +k1,14532:26823485,41986411:153474 +k1,14532:30493621,41986411:153474 +k1,14532:31298523,41986411:153474 +k1,14532:32583029,41986411:0 +) +(1,14533:6630773,42851491:25952256,513147,126483 +k1,14532:7769659,42851491:191235 +k1,14532:8889531,42851491:191227 +k1,14532:10272211,42851491:191235 +k1,14532:11091280,42851491:191234 +k1,14532:11697350,42851491:191227 +k1,14532:14552624,42851491:191235 +k1,14532:17498337,42851491:191235 +k1,14532:18341000,42851491:191235 +k1,14532:20248623,42851491:191235 +k1,14532:21249228,42851491:191235 +k1,14532:22631908,42851491:191235 +k1,14532:25676580,42851491:191234 +k1,14532:26550700,42851491:191235 +$1,14532:26550700,42851491 +$1,14532:27018627,42851491 +k1,14532:29433499,42851491:191235 +k1,14532:31128785,42851491:191235 +k1,14533:32583029,42851491:0 +) +(1,14533:6630773,43716571:25952256,505283,134348 +k1,14532:8624232,43716571:132892 +k1,14532:10799880,43716571:132891 +k1,14532:14090297,43716571:132892 +k1,14532:14984717,43716571:132892 +k1,14532:17545062,43716571:132891 +k1,14532:18448657,43716571:132892 +k1,14532:21653877,43716571:132892 +k1,14532:22438196,43716571:132891 +k1,14532:25851820,43716571:132892 +(1,14532:25851820,43716571:0,414482,115847 +r1,14535:27265221,43716571:1413401,530329,115847 +k1,14532:25851820,43716571:-1413401 +) +(1,14532:25851820,43716571:1413401,414482,115847 +k1,14532:25851820,43716571:3277 +h1,14532:27261944,43716571:0,411205,112570 +) +k1,14532:27571783,43716571:132892 +k1,14532:28332509,43716571:132891 +k1,14532:29918990,43716571:132892 +k1,14532:32583029,43716571:0 +) +(1,14533:6630773,44581651:25952256,513147,134348 +k1,14532:7502729,44581651:204800 +k1,14532:8296042,44581651:204800 +k1,14532:10356822,44581651:204800 +k1,14532:10917482,44581651:204800 +k1,14532:14846693,44581651:204800 +k1,14532:16242938,44581651:204800 +k1,14532:17130623,44581651:204800 +k1,14532:18106125,44581651:204799 +$1,14532:18106125,44581651 +$1,14532:18551114,44581651 +k1,14532:20160351,44581651:204800 +k1,14532:21356711,44581651:204800 +k1,14532:24770154,44581651:204800 +k1,14532:25736482,44581651:204800 +k1,14532:28206862,44581651:204800 +k1,14532:31773659,44581651:204800 +k1,14532:32583029,44581651:0 +) +] +(1,14535:32583029,45706769:0,0,0 +g1,14535:32583029,45706769 +) +) +] +(1,14535:6630773,47279633:25952256,0,0 +h1,14535:6630773,47279633:25952256,0,0 +) +] +(1,14535:4262630,4025873:0,0,0 +[1,14535:-473656,4025873:0,0,0 +(1,14535:-473656,-710413:0,0,0 +(1,14535:-473656,-710413:0,0,0 +g1,14535:-473656,-710413 +) +g1,14535:-473656,-710413 ) ] ) ] !24297 -}233 -Input:2490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}234 Input:2493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{234 -[1,14654:4262630,47279633:28320399,43253760,0 -(1,14654:4262630,4025873:0,0,0 -[1,14654:-473656,4025873:0,0,0 -(1,14654:-473656,-710413:0,0,0 -(1,14654:-473656,-644877:0,0,0 -k1,14654:-473656,-644877:-65536 +{235 +[1,14652:4262630,47279633:28320399,43253760,0 +(1,14652:4262630,4025873:0,0,0 +[1,14652:-473656,4025873:0,0,0 +(1,14652:-473656,-710413:0,0,0 +(1,14652:-473656,-644877:0,0,0 +k1,14652:-473656,-644877:-65536 ) -(1,14654:-473656,4736287:0,0,0 -k1,14654:-473656,4736287:5209943 +(1,14652:-473656,4736287:0,0,0 +k1,14652:-473656,4736287:5209943 ) -g1,14654:-473656,-710413 +g1,14652:-473656,-710413 ) ] ) -[1,14654:6630773,47279633:25952256,43253760,0 -[1,14654:6630773,4812305:25952256,786432,0 -(1,14654:6630773,4812305:25952256,505283,11795 -(1,14654:6630773,4812305:25952256,505283,11795 -g1,14654:3078558,4812305 -[1,14654:3078558,4812305:0,0,0 -(1,14654:3078558,2439708:0,1703936,0 -k1,14654:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14654:2537886,2439708:1179648,16384,0 +[1,14652:6630773,47279633:25952256,43253760,0 +[1,14652:6630773,4812305:25952256,786432,0 +(1,14652:6630773,4812305:25952256,505283,11795 +(1,14652:6630773,4812305:25952256,505283,11795 +g1,14652:3078558,4812305 +[1,14652:3078558,4812305:0,0,0 +(1,14652:3078558,2439708:0,1703936,0 +k1,14652:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14652:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14654:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14652:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14654:3078558,4812305:0,0,0 -(1,14654:3078558,2439708:0,1703936,0 -g1,14654:29030814,2439708 -g1,14654:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14654:36151628,1915420:16384,1179648,0 +[1,14652:3078558,4812305:0,0,0 +(1,14652:3078558,2439708:0,1703936,0 +g1,14652:29030814,2439708 +g1,14652:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14652:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14654:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14652:37855564,2439708:1179648,16384,0 ) ) -k1,14654:3078556,2439708:-34777008 +k1,14652:3078556,2439708:-34777008 ) ] -[1,14654:3078558,4812305:0,0,0 -(1,14654:3078558,49800853:0,16384,2228224 -k1,14654:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14654:2537886,49800853:1179648,16384,0 +[1,14652:3078558,4812305:0,0,0 +(1,14652:3078558,49800853:0,16384,2228224 +k1,14652:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14652:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14654:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14652:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14654:3078558,4812305:0,0,0 -(1,14654:3078558,49800853:0,16384,2228224 -g1,14654:29030814,49800853 -g1,14654:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14654:36151628,51504789:16384,1179648,0 +[1,14652:3078558,4812305:0,0,0 +(1,14652:3078558,49800853:0,16384,2228224 +g1,14652:29030814,49800853 +g1,14652:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14652:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14654:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14652:37855564,49800853:1179648,16384,0 ) ) -k1,14654:3078556,49800853:-34777008 +k1,14652:3078556,49800853:-34777008 ) ] -g1,14654:6630773,4812305 -g1,14654:6630773,4812305 -g1,14654:10529509,4812305 -g1,14654:12752490,4812305 -g1,14654:15101300,4812305 -k1,14654:31387652,4812305:16286352 -) -) -] -[1,14654:6630773,45706769:25952256,40108032,0 -(1,14654:6630773,45706769:25952256,40108032,0 -(1,14654:6630773,45706769:0,0,0 -g1,14654:6630773,45706769 -) -[1,14654:6630773,45706769:25952256,40108032,0 -(1,14535:6630773,6254097:25952256,513147,134348 -k1,14534:9378129,6254097:182932 -k1,14534:10580147,6254097:182933 -k1,14534:14112624,6254097:182932 -k1,14534:14827053,6254097:182932 -k1,14534:16573675,6254097:182933 -k1,14534:17439492,6254097:182932 -k1,14534:19043900,6254097:182932 -k1,14534:20180382,6254097:182933 -k1,14534:21761197,6254097:182932 -k1,14534:23036614,6254097:182932 -(1,14534:23036614,6254097:0,452978,115847 -r1,14654:24098303,6254097:1061689,568825,115847 -k1,14534:23036614,6254097:-1061689 -) -(1,14534:23036614,6254097:1061689,452978,115847 -k1,14534:23036614,6254097:3277 -h1,14534:24095026,6254097:0,411205,112570 -) -k1,14534:24281236,6254097:182933 -k1,14534:25150330,6254097:182932 -k1,14534:26103965,6254097:182932 -k1,14534:29359226,6254097:182933 -k1,14534:30193586,6254097:182932 -k1,14534:32583029,6254097:0 -) -(1,14535:6630773,7119177:25952256,473825,7863 -g1,14534:7600705,7119177 -$1,14534:7600705,7119177 -$1,14534:8045694,7119177 -k1,14535:32583029,7119177:23080470 -g1,14535:32583029,7119177 -) -v1,14537:6630773,7804032:0,393216,0 -(1,14557:6630773,17870363:25952256,10459547,196608 -g1,14557:6630773,17870363 -g1,14557:6630773,17870363 -g1,14557:6434165,17870363 -(1,14557:6434165,17870363:0,10459547,196608 -r1,14654:32779637,17870363:26345472,10656155,196608 -k1,14557:6434165,17870363:-26345472 -) -(1,14557:6434165,17870363:26345472,10459547,196608 -[1,14557:6630773,17870363:25952256,10262939,0 -(1,14539:6630773,8038469:25952256,431045,86428 -(1,14538:6630773,8038469:0,0,0 -g1,14538:6630773,8038469 -g1,14538:6630773,8038469 -g1,14538:6303093,8038469 -(1,14538:6303093,8038469:0,0,0 -) -g1,14538:6630773,8038469 -) -k1,14539:6630773,8038469:0 -g1,14539:10614221,8038469 -g1,14539:12273991,8038469 -g1,14539:12937899,8038469 -h1,14539:14265715,8038469:0,0,0 -k1,14539:32583029,8038469:18317314 -g1,14539:32583029,8038469 -) -(1,14556:6630773,8854396:25952256,431045,106246 -(1,14541:6630773,8854396:0,0,0 -g1,14541:6630773,8854396 -g1,14541:6630773,8854396 -g1,14541:6303093,8854396 -(1,14541:6303093,8854396:0,0,0 -) -g1,14541:6630773,8854396 -) -g1,14556:7626635,8854396 -g1,14556:10614220,8854396 -g1,14556:11610082,8854396 -g1,14556:14597667,8854396 -h1,14556:16257437,8854396:0,0,0 -k1,14556:32583029,8854396:16325592 -g1,14556:32583029,8854396 -) -(1,14556:6630773,9539251:25952256,398014,0 -h1,14556:6630773,9539251:0,0,0 -h1,14556:7294681,9539251:0,0,0 -k1,14556:32583029,9539251:25288348 -g1,14556:32583029,9539251 -) -(1,14556:6630773,10224106:25952256,424439,112852 -h1,14556:6630773,10224106:0,0,0 -g1,14556:7626635,10224106 -g1,14556:9950313,10224106 -g1,14556:14597668,10224106 -g1,14556:16589392,10224106 -h1,14556:17585254,10224106:0,0,0 -k1,14556:32583029,10224106:14997775 -g1,14556:32583029,10224106 -) -(1,14556:6630773,10908961:25952256,398014,0 -h1,14556:6630773,10908961:0,0,0 -h1,14556:7294681,10908961:0,0,0 -k1,14556:32583029,10908961:25288348 -g1,14556:32583029,10908961 -) -(1,14556:6630773,11593816:25952256,398014,106246 -h1,14556:6630773,11593816:0,0,0 -g1,14556:7626635,11593816 -g1,14556:10946174,11593816 -h1,14556:12605944,11593816:0,0,0 -k1,14556:32583028,11593816:19977084 -g1,14556:32583028,11593816 -) -(1,14556:6630773,12278671:25952256,398014,0 -h1,14556:6630773,12278671:0,0,0 -h1,14556:7294681,12278671:0,0,0 -k1,14556:32583029,12278671:25288348 -g1,14556:32583029,12278671 -) -(1,14556:6630773,12963526:25952256,431045,106246 -h1,14556:6630773,12963526:0,0,0 -g1,14556:7626635,12963526 -g1,14556:9618359,12963526 -g1,14556:11610083,12963526 -g1,14556:15925484,12963526 -g1,14556:18249162,12963526 -g1,14556:19245024,12963526 -h1,14556:20904794,12963526:0,0,0 -k1,14556:32583029,12963526:11678235 -g1,14556:32583029,12963526 -) -(1,14556:6630773,13648381:25952256,398014,0 -h1,14556:6630773,13648381:0,0,0 -h1,14556:7294681,13648381:0,0,0 -k1,14556:32583029,13648381:25288348 -g1,14556:32583029,13648381 -) -(1,14556:6630773,14333236:25952256,398014,0 -h1,14556:6630773,14333236:0,0,0 -h1,14556:7294681,14333236:0,0,0 -k1,14556:32583029,14333236:25288348 -g1,14556:32583029,14333236 -) -(1,14556:6630773,15018091:25952256,431045,79822 -h1,14556:6630773,15018091:0,0,0 -g1,14556:7626635,15018091 -g1,14556:7958589,15018091 -g1,14556:8290543,15018091 -g1,14556:8622497,15018091 -g1,14556:8954451,15018091 -g1,14556:9286405,15018091 -g1,14556:9618359,15018091 -g1,14556:10614221,15018091 -g1,14556:13601806,15018091 -g1,14556:15925484,15018091 -g1,14556:16921346,15018091 -g1,14556:19245024,15018091 -g1,14556:20572840,15018091 -g1,14556:20904794,15018091 -g1,14556:21236748,15018091 -g1,14556:21568702,15018091 -g1,14556:21900656,15018091 -g1,14556:22232610,15018091 -g1,14556:22896518,15018091 -g1,14556:23228472,15018091 -g1,14556:23560426,15018091 -g1,14556:23892380,15018091 -k1,14556:23892380,15018091:0 -h1,14556:25884104,15018091:0,0,0 -k1,14556:32583029,15018091:6698925 -g1,14556:32583029,15018091 -) -(1,14556:6630773,15702946:25952256,407923,9908 -h1,14556:6630773,15702946:0,0,0 -g1,14556:7626635,15702946 -g1,14556:9286405,15702946 -g1,14556:9618359,15702946 -g1,14556:9950313,15702946 -g1,14556:10282267,15702946 -g1,14556:10614221,15702946 -g1,14556:10946175,15702946 -g1,14556:11278129,15702946 -g1,14556:11610083,15702946 -g1,14556:11942037,15702946 -g1,14556:12273991,15702946 -g1,14556:12605945,15702946 -g1,14556:12937899,15702946 -g1,14556:13269853,15702946 -g1,14556:13601807,15702946 -g1,14556:13933761,15702946 -g1,14556:14265715,15702946 -g1,14556:14597669,15702946 -g1,14556:14929623,15702946 -g1,14556:15261577,15702946 -g1,14556:15593531,15702946 -g1,14556:15925485,15702946 -g1,14556:16921347,15702946 -g1,14556:17253301,15702946 -g1,14556:17585255,15702946 -g1,14556:17917209,15702946 -g1,14556:18249163,15702946 -h1,14556:20240887,15702946:0,0,0 -k1,14556:32583029,15702946:12342142 -g1,14556:32583029,15702946 -) -(1,14556:6630773,16387801:25952256,407923,106246 -h1,14556:6630773,16387801:0,0,0 -g1,14556:7626635,16387801 -g1,14556:9618359,16387801 -g1,14556:9950313,16387801 -g1,14556:10614221,16387801 -g1,14556:10946175,16387801 -g1,14556:11278129,16387801 -g1,14556:13601807,16387801 -g1,14556:13933761,16387801 -g1,14556:14265715,16387801 -g1,14556:14597669,16387801 -g1,14556:14929623,16387801 -g1,14556:15261577,16387801 -g1,14556:15593531,16387801 -g1,14556:15925485,16387801 -g1,14556:16921347,16387801 -g1,14556:17253301,16387801 -g1,14556:17585255,16387801 -g1,14556:17917209,16387801 -g1,14556:18249163,16387801 -g1,14556:18581117,16387801 -g1,14556:20572841,16387801 -g1,14556:22896519,16387801 -g1,14556:23560427,16387801 -g1,14556:26216059,16387801 -h1,14556:27211921,16387801:0,0,0 -k1,14556:32583029,16387801:5371108 -g1,14556:32583029,16387801 -) -(1,14556:6630773,17072656:25952256,398014,0 -h1,14556:6630773,17072656:0,0,0 -g1,14556:7626635,17072656 -k1,14556:7626635,17072656:0 -h1,14556:8622497,17072656:0,0,0 -k1,14556:32583029,17072656:23960532 -g1,14556:32583029,17072656 -) -(1,14556:6630773,17757511:25952256,431045,112852 -h1,14556:6630773,17757511:0,0,0 -g1,14556:7626635,17757511 -g1,14556:10282267,17757511 -g1,14556:12605945,17757511 -g1,14556:12937899,17757511 -g1,14556:13601807,17757511 -g1,14556:15593531,17757511 -g1,14556:17585255,17757511 -g1,14556:19245025,17757511 -g1,14556:20904795,17757511 -g1,14556:22232611,17757511 -g1,14556:23892381,17757511 -g1,14556:25220197,17757511 -g1,14556:26548013,17757511 -g1,14556:27211921,17757511 -g1,14556:27875829,17757511 -h1,14556:28207783,17757511:0,0,0 -k1,14556:32583029,17757511:4375246 -g1,14556:32583029,17757511 -) -] -) -g1,14557:32583029,17870363 -g1,14557:6630773,17870363 -g1,14557:6630773,17870363 -g1,14557:32583029,17870363 -g1,14557:32583029,17870363 -) -h1,14557:6630773,18066971:0,0,0 -(1,14561:6630773,18932051:25952256,513147,126483 -h1,14560:6630773,18932051:983040,0,0 -k1,14560:8806830,18932051:239468 -k1,14560:10150580,18932051:239468 -k1,14560:12594025,18932051:239469 -k1,14560:15595836,18932051:239468 -k1,14560:19762877,18932051:239468 -k1,14560:22770586,18932051:239468 -k1,14560:23696216,18932051:239468 -k1,14560:27025708,18932051:239469 -k1,14560:28212827,18932051:239468 -k1,14560:30265021,18932051:239468 -k1,14560:32583029,18932051:0 -) -(1,14561:6630773,19797131:25952256,505283,134348 -g1,14560:8041107,19797131 -g1,14560:10519023,19797131 -h1,14560:11489611,19797131:0,0,0 -g1,14560:11688840,19797131 -g1,14560:12697439,19797131 -g1,14560:14394821,19797131 -h1,14560:15590198,19797131:0,0,0 -k1,14561:32583029,19797131:16733309 -g1,14561:32583029,19797131 -) -v1,14563:6630773,20481986:0,393216,0 -(1,14611:6630773,42189485:25952256,22100715,196608 -g1,14611:6630773,42189485 -g1,14611:6630773,42189485 -g1,14611:6434165,42189485 -(1,14611:6434165,42189485:0,22100715,196608 -r1,14654:32779637,42189485:26345472,22297323,196608 -k1,14611:6434165,42189485:-26345472 -) -(1,14611:6434165,42189485:26345472,22100715,196608 -[1,14611:6630773,42189485:25952256,21904107,0 -(1,14565:6630773,20716423:25952256,431045,79822 -(1,14564:6630773,20716423:0,0,0 -g1,14564:6630773,20716423 -g1,14564:6630773,20716423 -g1,14564:6303093,20716423 -(1,14564:6303093,20716423:0,0,0 -) -g1,14564:6630773,20716423 -) -k1,14565:6630773,20716423:0 -h1,14565:10282267,20716423:0,0,0 -k1,14565:32583029,20716423:22300762 -g1,14565:32583029,20716423 -) -(1,14569:6630773,21532350:25952256,424439,112852 -(1,14567:6630773,21532350:0,0,0 -g1,14567:6630773,21532350 -g1,14567:6630773,21532350 -g1,14567:6303093,21532350 -(1,14567:6303093,21532350:0,0,0 -) -g1,14567:6630773,21532350 -) -g1,14569:7626635,21532350 -g1,14569:8954451,21532350 -g1,14569:10946175,21532350 -h1,14569:12273991,21532350:0,0,0 -k1,14569:32583029,21532350:20309038 -g1,14569:32583029,21532350 -) -(1,14571:6630773,22348277:25952256,431045,106246 -(1,14570:6630773,22348277:0,0,0 -g1,14570:6630773,22348277 -g1,14570:6630773,22348277 -g1,14570:6303093,22348277 -(1,14570:6303093,22348277:0,0,0 -) -g1,14570:6630773,22348277 -) -k1,14571:6630773,22348277:0 -h1,14571:10946175,22348277:0,0,0 -k1,14571:32583029,22348277:21636854 -g1,14571:32583029,22348277 -) -(1,14596:6630773,23164204:25952256,398014,0 -(1,14573:6630773,23164204:0,0,0 -g1,14573:6630773,23164204 -g1,14573:6630773,23164204 -g1,14573:6303093,23164204 -(1,14573:6303093,23164204:0,0,0 -) -g1,14573:6630773,23164204 -) -h1,14596:7294681,23164204:0,0,0 -k1,14596:32583029,23164204:25288348 -g1,14596:32583029,23164204 -) -(1,14596:6630773,23849059:25952256,424439,8257 -h1,14596:6630773,23849059:0,0,0 -g1,14596:7626635,23849059 -h1,14596:9286405,23849059:0,0,0 -k1,14596:32583029,23849059:23296624 -g1,14596:32583029,23849059 -) -(1,14596:6630773,24533914:25952256,431045,112852 -h1,14596:6630773,24533914:0,0,0 -g1,14596:7626635,24533914 -g1,14596:11610082,24533914 -g1,14596:12273990,24533914 -g1,14596:14265714,24533914 -g1,14596:14929622,24533914 -g1,14596:17253300,24533914 -g1,14596:19576978,24533914 -g1,14596:20240886,24533914 -g1,14596:24888241,24533914 -g1,14596:26548011,24533914 -g1,14596:27211919,24533914 -h1,14596:31527320,24533914:0,0,0 -k1,14596:32583029,24533914:1055709 -g1,14596:32583029,24533914 -) -(1,14596:6630773,25218769:25952256,398014,0 -h1,14596:6630773,25218769:0,0,0 -h1,14596:7294681,25218769:0,0,0 -k1,14596:32583029,25218769:25288348 -g1,14596:32583029,25218769 -) -(1,14596:6630773,25903624:25952256,431045,8257 -h1,14596:6630773,25903624:0,0,0 -g1,14596:7626635,25903624 -h1,14596:11942036,25903624:0,0,0 -k1,14596:32583028,25903624:20640992 -g1,14596:32583028,25903624 -) -(1,14596:6630773,26588479:25952256,424439,79822 -h1,14596:6630773,26588479:0,0,0 -g1,14596:7626635,26588479 -g1,14596:7958589,26588479 -g1,14596:8290543,26588479 -g1,14596:8622497,26588479 -g1,14596:8954451,26588479 -g1,14596:9286405,26588479 -g1,14596:9618359,26588479 -g1,14596:9950313,26588479 -g1,14596:10282267,26588479 -g1,14596:10614221,26588479 -g1,14596:10946175,26588479 -g1,14596:11278129,26588479 -g1,14596:11610083,26588479 -g1,14596:14597668,26588479 -g1,14596:16257438,26588479 -g1,14596:18249162,26588479 -g1,14596:18913070,26588479 -g1,14596:20904794,26588479 -k1,14596:20904794,26588479:0 -h1,14596:23560426,26588479:0,0,0 -k1,14596:32583029,26588479:9022603 -g1,14596:32583029,26588479 -) -(1,14596:6630773,27273334:25952256,424439,106246 -h1,14596:6630773,27273334:0,0,0 -g1,14596:7626635,27273334 -g1,14596:11610082,27273334 -g1,14596:11942036,27273334 -g1,14596:14597668,27273334 -g1,14596:14929622,27273334 -g1,14596:15261576,27273334 -g1,14596:15593530,27273334 -g1,14596:18249162,27273334 -g1,14596:18581116,27273334 -g1,14596:20904794,27273334 -g1,14596:21236748,27273334 -g1,14596:21900656,27273334 -g1,14596:23892380,27273334 -h1,14596:24888242,27273334:0,0,0 -k1,14596:32583029,27273334:7694787 -g1,14596:32583029,27273334 -) -(1,14596:6630773,27958189:25952256,407923,106246 -h1,14596:6630773,27958189:0,0,0 -g1,14596:7626635,27958189 -g1,14596:9950313,27958189 -g1,14596:10282267,27958189 -g1,14596:10614221,27958189 -g1,14596:10946175,27958189 -g1,14596:11278129,27958189 -g1,14596:11610083,27958189 -g1,14596:11942037,27958189 -g1,14596:14597669,27958189 -g1,14596:14929623,27958189 -g1,14596:15261577,27958189 -g1,14596:15593531,27958189 -g1,14596:18249163,27958189 -g1,14596:18581117,27958189 -g1,14596:18913071,27958189 -g1,14596:20904795,27958189 -g1,14596:21236749,27958189 -g1,14596:21568703,27958189 -g1,14596:21900657,27958189 -h1,14596:23560427,27958189:0,0,0 -k1,14596:32583029,27958189:9022602 -g1,14596:32583029,27958189 -) -(1,14596:6630773,28643044:25952256,407923,106246 -h1,14596:6630773,28643044:0,0,0 -g1,14596:7626635,28643044 -g1,14596:9950313,28643044 -g1,14596:10282267,28643044 -g1,14596:10614221,28643044 -g1,14596:10946175,28643044 -g1,14596:11278129,28643044 -g1,14596:11610083,28643044 -g1,14596:14597668,28643044 -g1,14596:14929622,28643044 -g1,14596:15261576,28643044 -g1,14596:15593530,28643044 -g1,14596:18249162,28643044 -g1,14596:18581116,28643044 -g1,14596:20904794,28643044 -g1,14596:23892380,28643044 -h1,14596:24888242,28643044:0,0,0 -k1,14596:32583029,28643044:7694787 -g1,14596:32583029,28643044 -) -(1,14596:6630773,29327899:25952256,407923,106246 -h1,14596:6630773,29327899:0,0,0 -g1,14596:7626635,29327899 -g1,14596:9950313,29327899 -g1,14596:10282267,29327899 -g1,14596:10614221,29327899 -g1,14596:10946175,29327899 -g1,14596:11278129,29327899 -g1,14596:11610083,29327899 -g1,14596:14597668,29327899 -g1,14596:14929622,29327899 -g1,14596:15261576,29327899 -g1,14596:15593530,29327899 -g1,14596:18249162,29327899 -g1,14596:18581116,29327899 -g1,14596:20904794,29327899 -g1,14596:23892380,29327899 -h1,14596:24888242,29327899:0,0,0 -k1,14596:32583029,29327899:7694787 -g1,14596:32583029,29327899 -) -(1,14596:6630773,30012754:25952256,407923,106246 -h1,14596:6630773,30012754:0,0,0 -g1,14596:7626635,30012754 -g1,14596:9950313,30012754 -g1,14596:10282267,30012754 -g1,14596:10614221,30012754 -g1,14596:10946175,30012754 -g1,14596:11278129,30012754 -g1,14596:11610083,30012754 -g1,14596:14597668,30012754 -g1,14596:14929622,30012754 -g1,14596:15261576,30012754 -g1,14596:15593530,30012754 -g1,14596:18249162,30012754 -g1,14596:18581116,30012754 -g1,14596:20904794,30012754 -g1,14596:23892380,30012754 -h1,14596:24888242,30012754:0,0,0 -k1,14596:32583029,30012754:7694787 -g1,14596:32583029,30012754 -) -(1,14596:6630773,30697609:25952256,407923,106246 -h1,14596:6630773,30697609:0,0,0 -g1,14596:7626635,30697609 -g1,14596:9950313,30697609 -g1,14596:10282267,30697609 -g1,14596:10614221,30697609 -g1,14596:10946175,30697609 -g1,14596:11278129,30697609 -g1,14596:11610083,30697609 -g1,14596:11942037,30697609 -g1,14596:14597669,30697609 -g1,14596:14929623,30697609 -g1,14596:15261577,30697609 -g1,14596:15593531,30697609 -g1,14596:18249163,30697609 -g1,14596:18581117,30697609 -g1,14596:18913071,30697609 -g1,14596:20904795,30697609 -g1,14596:21236749,30697609 -g1,14596:21568703,30697609 -g1,14596:21900657,30697609 -h1,14596:23560427,30697609:0,0,0 -k1,14596:32583029,30697609:9022602 -g1,14596:32583029,30697609 -) -(1,14596:6630773,31382464:25952256,398014,0 -h1,14596:6630773,31382464:0,0,0 -g1,14596:7626635,31382464 -k1,14596:7626635,31382464:0 -h1,14596:8622497,31382464:0,0,0 -k1,14596:32583029,31382464:23960532 -g1,14596:32583029,31382464 -) -(1,14596:6630773,32067319:25952256,431045,112852 -h1,14596:6630773,32067319:0,0,0 -g1,14596:7626635,32067319 -g1,14596:10282267,32067319 -g1,14596:12605945,32067319 -g1,14596:12937899,32067319 -g1,14596:13601807,32067319 -g1,14596:15593531,32067319 -g1,14596:17585255,32067319 -g1,14596:19245025,32067319 -g1,14596:20904795,32067319 -g1,14596:22232611,32067319 -g1,14596:23892381,32067319 -g1,14596:25220197,32067319 -g1,14596:26548013,32067319 -g1,14596:27211921,32067319 -g1,14596:27875829,32067319 -h1,14596:28207783,32067319:0,0,0 -k1,14596:32583029,32067319:4375246 -g1,14596:32583029,32067319 -) -(1,14596:6630773,32752174:25952256,398014,0 -h1,14596:6630773,32752174:0,0,0 -h1,14596:7294681,32752174:0,0,0 -k1,14596:32583029,32752174:25288348 -g1,14596:32583029,32752174 -) -(1,14596:6630773,33437029:25952256,431045,106246 -h1,14596:6630773,33437029:0,0,0 -g1,14596:7626635,33437029 -g1,14596:11610082,33437029 -g1,14596:14929621,33437029 -g1,14596:16257437,33437029 -g1,14596:20572838,33437029 -g1,14596:22896516,33437029 -g1,14596:24888240,33437029 -g1,14596:25884102,33437029 -g1,14596:26879964,33437029 -h1,14596:29867549,33437029:0,0,0 -k1,14596:32583029,33437029:2715480 -g1,14596:32583029,33437029 -) -(1,14596:6630773,34121884:25952256,398014,0 -h1,14596:6630773,34121884:0,0,0 -h1,14596:7294681,34121884:0,0,0 -k1,14596:32583029,34121884:25288348 -g1,14596:32583029,34121884 -) -(1,14596:6630773,34806739:25952256,431045,112852 -h1,14596:6630773,34806739:0,0,0 -g1,14596:7626635,34806739 -g1,14596:7958589,34806739 -g1,14596:8290543,34806739 -g1,14596:8622497,34806739 -g1,14596:8954451,34806739 -g1,14596:10614221,34806739 -g1,14596:13933760,34806739 -g1,14596:16589392,34806739 -g1,14596:16921346,34806739 -g1,14596:17917208,34806739 -g1,14596:18913070,34806739 -g1,14596:19245024,34806739 -g1,14596:21900656,34806739 -g1,14596:22896518,34806739 -h1,14596:25220196,34806739:0,0,0 -k1,14596:32583029,34806739:7362833 -g1,14596:32583029,34806739 -) -(1,14596:6630773,35491594:25952256,431045,112852 -h1,14596:6630773,35491594:0,0,0 -g1,14596:7626635,35491594 -g1,14596:10614220,35491594 -g1,14596:13933759,35491594 -g1,14596:14265713,35491594 -g1,14596:16589391,35491594 -g1,14596:16921345,35491594 -g1,14596:17917207,35491594 -g1,14596:18913069,35491594 -g1,14596:19245023,35491594 -g1,14596:21900655,35491594 -g1,14596:22896517,35491594 -h1,14596:25220195,35491594:0,0,0 -k1,14596:32583029,35491594:7362834 -g1,14596:32583029,35491594 -) -(1,14596:6630773,36176449:25952256,398014,8257 -h1,14596:6630773,36176449:0,0,0 -g1,14596:7626635,36176449 -g1,14596:9286405,36176449 -h1,14596:9950313,36176449:0,0,0 -k1,14596:32583029,36176449:22632716 -g1,14596:32583029,36176449 -) -(1,14596:6630773,36861304:25952256,398014,0 -h1,14596:6630773,36861304:0,0,0 -h1,14596:7294681,36861304:0,0,0 -k1,14596:32583029,36861304:25288348 -g1,14596:32583029,36861304 -) -(1,14596:6630773,37546159:25952256,431045,112852 -h1,14596:6630773,37546159:0,0,0 -g1,14596:7626635,37546159 -g1,14596:9950313,37546159 -g1,14596:10946175,37546159 -g1,14596:13269853,37546159 -g1,14596:15925485,37546159 -g1,14596:19908932,37546159 -h1,14596:20240886,37546159:0,0,0 -k1,14596:32583029,37546159:12342143 -g1,14596:32583029,37546159 -) -(1,14598:6630773,38362086:25952256,431045,79822 -(1,14597:6630773,38362086:0,0,0 -g1,14597:6630773,38362086 -g1,14597:6630773,38362086 -g1,14597:6303093,38362086 -(1,14597:6303093,38362086:0,0,0 -) -g1,14597:6630773,38362086 -) -k1,14598:6630773,38362086:0 -k1,14598:6630773,38362086:0 -h1,14598:13601806,38362086:0,0,0 -k1,14598:32583030,38362086:18981224 -g1,14598:32583030,38362086 -) -(1,14603:6630773,39178013:25952256,407923,9908 -(1,14600:6630773,39178013:0,0,0 -g1,14600:6630773,39178013 -g1,14600:6630773,39178013 -g1,14600:6303093,39178013 -(1,14600:6303093,39178013:0,0,0 -) -g1,14600:6630773,39178013 -) -g1,14603:7626635,39178013 -g1,14603:7958589,39178013 -g1,14603:8290543,39178013 -g1,14603:8622497,39178013 -g1,14603:8954451,39178013 -g1,14603:9286405,39178013 -g1,14603:9618359,39178013 -g1,14603:9950313,39178013 -g1,14603:10282267,39178013 -g1,14603:10614221,39178013 -g1,14603:11278129,39178013 -g1,14603:11610083,39178013 -g1,14603:11942037,39178013 -g1,14603:12273991,39178013 -g1,14603:12605945,39178013 -g1,14603:12937899,39178013 -g1,14603:13269853,39178013 -g1,14603:13601807,39178013 -g1,14603:13933761,39178013 -g1,14603:14265715,39178013 -g1,14603:14929623,39178013 -g1,14603:15261577,39178013 -g1,14603:15593531,39178013 -g1,14603:15925485,39178013 -g1,14603:16257439,39178013 -g1,14603:16589393,39178013 -g1,14603:16921347,39178013 -g1,14603:17253301,39178013 -g1,14603:17585255,39178013 -g1,14603:17917209,39178013 -g1,14603:18581117,39178013 -g1,14603:18913071,39178013 -g1,14603:19245025,39178013 -g1,14603:19576979,39178013 -g1,14603:19908933,39178013 -g1,14603:20240887,39178013 -g1,14603:20572841,39178013 -g1,14603:20904795,39178013 -g1,14603:21236749,39178013 -g1,14603:21568703,39178013 -g1,14603:22232611,39178013 -g1,14603:22564565,39178013 -g1,14603:22896519,39178013 -g1,14603:23228473,39178013 -g1,14603:23560427,39178013 -g1,14603:23892381,39178013 -g1,14603:24224335,39178013 -g1,14603:24556289,39178013 -g1,14603:24888243,39178013 -g1,14603:25220197,39178013 -g1,14603:25884105,39178013 -g1,14603:26216059,39178013 -g1,14603:26548013,39178013 -g1,14603:26879967,39178013 -g1,14603:27211921,39178013 -g1,14603:27543875,39178013 -g1,14603:27875829,39178013 -g1,14603:28207783,39178013 -g1,14603:28539737,39178013 -g1,14603:28871691,39178013 -h1,14603:29203645,39178013:0,0,0 -k1,14603:32583029,39178013:3379384 -g1,14603:32583029,39178013 -) -(1,14603:6630773,39862868:25952256,407923,9908 -h1,14603:6630773,39862868:0,0,0 -g1,14603:7626635,39862868 -g1,14603:11278128,39862868 -g1,14603:14929621,39862868 -g1,14603:15261575,39862868 -g1,14603:18581114,39862868 -g1,14603:22232607,39862868 -g1,14603:25884100,39862868 -k1,14603:25884100,39862868:0 -h1,14603:29203639,39862868:0,0,0 -k1,14603:32583029,39862868:3379390 -g1,14603:32583029,39862868 -) -(1,14605:6630773,40678795:25952256,431045,79822 -(1,14604:6630773,40678795:0,0,0 -g1,14604:6630773,40678795 -g1,14604:6630773,40678795 -g1,14604:6303093,40678795 -(1,14604:6303093,40678795:0,0,0 -) -g1,14604:6630773,40678795 -) -k1,14605:6630773,40678795:0 -k1,14605:6630773,40678795:0 -h1,14605:12605945,40678795:0,0,0 -k1,14605:32583029,40678795:19977084 -g1,14605:32583029,40678795 -) -(1,14610:6630773,41494722:25952256,407923,9908 -(1,14607:6630773,41494722:0,0,0 -g1,14607:6630773,41494722 -g1,14607:6630773,41494722 -g1,14607:6303093,41494722 -(1,14607:6303093,41494722:0,0,0 -) -g1,14607:6630773,41494722 -) -g1,14610:7626635,41494722 -g1,14610:7958589,41494722 -g1,14610:8290543,41494722 -g1,14610:8622497,41494722 -g1,14610:9286405,41494722 -g1,14610:9618359,41494722 -g1,14610:9950313,41494722 -g1,14610:10282267,41494722 -g1,14610:10946175,41494722 -g1,14610:11278129,41494722 -g1,14610:11610083,41494722 -g1,14610:11942037,41494722 -g1,14610:12605945,41494722 -g1,14610:12937899,41494722 -g1,14610:13269853,41494722 -g1,14610:13601807,41494722 -g1,14610:14265715,41494722 -g1,14610:14597669,41494722 -g1,14610:14929623,41494722 -g1,14610:15261577,41494722 -g1,14610:15925485,41494722 -g1,14610:16257439,41494722 -g1,14610:16589393,41494722 -g1,14610:16921347,41494722 -h1,14610:17253301,41494722:0,0,0 -k1,14610:32583029,41494722:15329728 -g1,14610:32583029,41494722 -) -(1,14610:6630773,42179577:25952256,407923,9908 -h1,14610:6630773,42179577:0,0,0 -g1,14610:7626635,42179577 -g1,14610:9286405,42179577 -g1,14610:10946175,42179577 -g1,14610:12605945,42179577 -g1,14610:14265715,42179577 -g1,14610:15925485,42179577 -h1,14610:17253301,42179577:0,0,0 -k1,14610:32583029,42179577:15329728 -g1,14610:32583029,42179577 -) -] -) -g1,14611:32583029,42189485 -g1,14611:6630773,42189485 -g1,14611:6630773,42189485 -g1,14611:32583029,42189485 -g1,14611:32583029,42189485 -) -h1,14611:6630773,42386093:0,0,0 -v1,14615:6630773,43251173:0,393216,0 -(1,14654:6630773,45416114:25952256,2558157,0 -g1,14654:6630773,45416114 -g1,14654:6237557,45416114 -r1,14654:6368629,45416114:131072,2558157,0 -g1,14654:6567858,45416114 -g1,14654:6764466,45416114 -[1,14654:6764466,45416114:25818563,2558157,0 -(1,14616:6764466,43559471:25818563,701514,196608 -(1,14615:6764466,43559471:0,701514,196608 -r1,14654:7761522,43559471:997056,898122,196608 -k1,14615:6764466,43559471:-997056 -) -(1,14615:6764466,43559471:997056,701514,196608 -) -k1,14615:8002021,43559471:240499 -k1,14615:8329701,43559471:327680 -k1,14615:9047956,43559471:240498 -k1,14615:10156807,43559471:240499 -k1,14615:11489790,43559471:240498 -(1,14615:11489790,43559471:0,452978,115847 -r1,14654:13254903,43559471:1765113,568825,115847 -k1,14615:11489790,43559471:-1765113 -) -(1,14615:11489790,43559471:1765113,452978,115847 -k1,14615:11489790,43559471:3277 -h1,14615:13251626,43559471:0,411205,112570 -) -k1,14615:13495402,43559471:240499 -k1,14615:14418785,43559471:240498 -(1,14615:14418785,43559471:0,452978,115847 -r1,14654:16887322,43559471:2468537,568825,115847 -k1,14615:14418785,43559471:-2468537 -) -(1,14615:14418785,43559471:2468537,452978,115847 -k1,14615:14418785,43559471:3277 -h1,14615:16884045,43559471:0,411205,112570 -) -k1,14615:17127821,43559471:240499 -k1,14615:18236671,43559471:240498 -k1,14615:19581452,43559471:240499 -k1,14615:20846933,43559471:240498 -k1,14615:22371938,43559471:240499 -k1,14615:24267220,43559471:240498 -k1,14615:25499279,43559471:240499 -k1,14615:27431917,43559471:240498 -k1,14615:31189078,43559471:240499 -k1,14615:32583029,43559471:0 -) -(1,14616:6764466,44424551:25818563,513147,134348 -k1,14615:9243178,44424551:154150 -k1,14615:10048756,44424551:154150 -k1,14615:12015632,44424551:154150 -k1,14615:14157489,44424551:154150 -k1,14615:15503084,44424551:154150 -k1,14615:16853921,44424551:154150 -k1,14615:19786798,44424551:154150 -k1,14615:21900474,44424551:154150 -k1,14615:22586121,44424551:154150 -k1,14615:23399563,44424551:154150 -k1,14615:23909573,44424551:154150 -k1,14615:26826066,44424551:154150 -k1,14615:28535385,44424551:154150 -k1,14615:29880980,44424551:154150 -k1,14615:32583029,44424551:0 -) -(1,14616:6764466,45289631:25818563,513147,126483 -k1,14615:8722261,45289631:265655 -k1,14615:11941623,45289631:265654 -k1,14615:13273549,45289631:265655 -k1,14615:15945031,45289631:265655 -k1,14615:16826724,45289631:265655 -k1,14615:18905104,45289631:265654 -k1,14615:21662438,45289631:265655 -k1,14615:23278135,45289631:265655 -k1,14615:24203081,45289631:265654 -k1,14615:26165463,45289631:265655 -k1,14615:27906333,45289631:265655 -k1,14615:28823416,45289631:265655 -k1,14615:29904338,45289631:265654 -k1,14615:31563944,45289631:265655 -k1,14615:32583029,45289631:0 -) -] -g1,14654:32583029,45416114 -) -] -(1,14654:32583029,45706769:0,0,0 -g1,14654:32583029,45706769 -) -) -] -(1,14654:6630773,47279633:25952256,0,0 -h1,14654:6630773,47279633:25952256,0,0 -) -] -(1,14654:4262630,4025873:0,0,0 -[1,14654:-473656,4025873:0,0,0 -(1,14654:-473656,-710413:0,0,0 -(1,14654:-473656,-710413:0,0,0 -g1,14654:-473656,-710413 -) -g1,14654:-473656,-710413 +g1,14652:6630773,4812305 +g1,14652:6630773,4812305 +g1,14652:10529509,4812305 +g1,14652:12752490,4812305 +g1,14652:15101300,4812305 +k1,14652:31387652,4812305:16286352 +) +) +] +[1,14652:6630773,45706769:25952256,40108032,0 +(1,14652:6630773,45706769:25952256,40108032,0 +(1,14652:6630773,45706769:0,0,0 +g1,14652:6630773,45706769 +) +[1,14652:6630773,45706769:25952256,40108032,0 +(1,14533:6630773,6254097:25952256,513147,134348 +k1,14532:9378129,6254097:182932 +k1,14532:10580147,6254097:182933 +k1,14532:14112624,6254097:182932 +k1,14532:14827053,6254097:182932 +k1,14532:16573675,6254097:182933 +k1,14532:17439492,6254097:182932 +k1,14532:19043900,6254097:182932 +k1,14532:20180382,6254097:182933 +k1,14532:21761197,6254097:182932 +k1,14532:23036614,6254097:182932 +(1,14532:23036614,6254097:0,452978,115847 +r1,14652:24098303,6254097:1061689,568825,115847 +k1,14532:23036614,6254097:-1061689 +) +(1,14532:23036614,6254097:1061689,452978,115847 +k1,14532:23036614,6254097:3277 +h1,14532:24095026,6254097:0,411205,112570 +) +k1,14532:24281236,6254097:182933 +k1,14532:25150330,6254097:182932 +k1,14532:26103965,6254097:182932 +k1,14532:29359226,6254097:182933 +k1,14532:30193586,6254097:182932 +k1,14532:32583029,6254097:0 +) +(1,14533:6630773,7119177:25952256,473825,7863 +g1,14532:7600705,7119177 +$1,14532:7600705,7119177 +$1,14532:8045694,7119177 +k1,14533:32583029,7119177:23080470 +g1,14533:32583029,7119177 +) +v1,14535:6630773,7804032:0,393216,0 +(1,14555:6630773,17870363:25952256,10459547,196608 +g1,14555:6630773,17870363 +g1,14555:6630773,17870363 +g1,14555:6434165,17870363 +(1,14555:6434165,17870363:0,10459547,196608 +r1,14652:32779637,17870363:26345472,10656155,196608 +k1,14555:6434165,17870363:-26345472 +) +(1,14555:6434165,17870363:26345472,10459547,196608 +[1,14555:6630773,17870363:25952256,10262939,0 +(1,14537:6630773,8038469:25952256,431045,86428 +(1,14536:6630773,8038469:0,0,0 +g1,14536:6630773,8038469 +g1,14536:6630773,8038469 +g1,14536:6303093,8038469 +(1,14536:6303093,8038469:0,0,0 +) +g1,14536:6630773,8038469 +) +k1,14537:6630773,8038469:0 +g1,14537:10614221,8038469 +g1,14537:12273991,8038469 +g1,14537:12937899,8038469 +h1,14537:14265715,8038469:0,0,0 +k1,14537:32583029,8038469:18317314 +g1,14537:32583029,8038469 +) +(1,14554:6630773,8854396:25952256,431045,106246 +(1,14539:6630773,8854396:0,0,0 +g1,14539:6630773,8854396 +g1,14539:6630773,8854396 +g1,14539:6303093,8854396 +(1,14539:6303093,8854396:0,0,0 +) +g1,14539:6630773,8854396 +) +g1,14554:7626635,8854396 +g1,14554:10614220,8854396 +g1,14554:11610082,8854396 +g1,14554:14597667,8854396 +h1,14554:16257437,8854396:0,0,0 +k1,14554:32583029,8854396:16325592 +g1,14554:32583029,8854396 +) +(1,14554:6630773,9539251:25952256,398014,0 +h1,14554:6630773,9539251:0,0,0 +h1,14554:7294681,9539251:0,0,0 +k1,14554:32583029,9539251:25288348 +g1,14554:32583029,9539251 +) +(1,14554:6630773,10224106:25952256,424439,112852 +h1,14554:6630773,10224106:0,0,0 +g1,14554:7626635,10224106 +g1,14554:9950313,10224106 +g1,14554:14597668,10224106 +g1,14554:16589392,10224106 +h1,14554:17585254,10224106:0,0,0 +k1,14554:32583029,10224106:14997775 +g1,14554:32583029,10224106 +) +(1,14554:6630773,10908961:25952256,398014,0 +h1,14554:6630773,10908961:0,0,0 +h1,14554:7294681,10908961:0,0,0 +k1,14554:32583029,10908961:25288348 +g1,14554:32583029,10908961 +) +(1,14554:6630773,11593816:25952256,398014,106246 +h1,14554:6630773,11593816:0,0,0 +g1,14554:7626635,11593816 +g1,14554:10946174,11593816 +h1,14554:12605944,11593816:0,0,0 +k1,14554:32583028,11593816:19977084 +g1,14554:32583028,11593816 +) +(1,14554:6630773,12278671:25952256,398014,0 +h1,14554:6630773,12278671:0,0,0 +h1,14554:7294681,12278671:0,0,0 +k1,14554:32583029,12278671:25288348 +g1,14554:32583029,12278671 +) +(1,14554:6630773,12963526:25952256,431045,106246 +h1,14554:6630773,12963526:0,0,0 +g1,14554:7626635,12963526 +g1,14554:9618359,12963526 +g1,14554:11610083,12963526 +g1,14554:15925484,12963526 +g1,14554:18249162,12963526 +g1,14554:19245024,12963526 +h1,14554:20904794,12963526:0,0,0 +k1,14554:32583029,12963526:11678235 +g1,14554:32583029,12963526 +) +(1,14554:6630773,13648381:25952256,398014,0 +h1,14554:6630773,13648381:0,0,0 +h1,14554:7294681,13648381:0,0,0 +k1,14554:32583029,13648381:25288348 +g1,14554:32583029,13648381 +) +(1,14554:6630773,14333236:25952256,398014,0 +h1,14554:6630773,14333236:0,0,0 +h1,14554:7294681,14333236:0,0,0 +k1,14554:32583029,14333236:25288348 +g1,14554:32583029,14333236 +) +(1,14554:6630773,15018091:25952256,431045,79822 +h1,14554:6630773,15018091:0,0,0 +g1,14554:7626635,15018091 +g1,14554:7958589,15018091 +g1,14554:8290543,15018091 +g1,14554:8622497,15018091 +g1,14554:8954451,15018091 +g1,14554:9286405,15018091 +g1,14554:9618359,15018091 +g1,14554:10614221,15018091 +g1,14554:13601806,15018091 +g1,14554:15925484,15018091 +g1,14554:16921346,15018091 +g1,14554:19245024,15018091 +g1,14554:20572840,15018091 +g1,14554:20904794,15018091 +g1,14554:21236748,15018091 +g1,14554:21568702,15018091 +g1,14554:21900656,15018091 +g1,14554:22232610,15018091 +g1,14554:22896518,15018091 +g1,14554:23228472,15018091 +g1,14554:23560426,15018091 +g1,14554:23892380,15018091 +k1,14554:23892380,15018091:0 +h1,14554:25884104,15018091:0,0,0 +k1,14554:32583029,15018091:6698925 +g1,14554:32583029,15018091 +) +(1,14554:6630773,15702946:25952256,407923,9908 +h1,14554:6630773,15702946:0,0,0 +g1,14554:7626635,15702946 +g1,14554:9286405,15702946 +g1,14554:9618359,15702946 +g1,14554:9950313,15702946 +g1,14554:10282267,15702946 +g1,14554:10614221,15702946 +g1,14554:10946175,15702946 +g1,14554:11278129,15702946 +g1,14554:11610083,15702946 +g1,14554:11942037,15702946 +g1,14554:12273991,15702946 +g1,14554:12605945,15702946 +g1,14554:12937899,15702946 +g1,14554:13269853,15702946 +g1,14554:13601807,15702946 +g1,14554:13933761,15702946 +g1,14554:14265715,15702946 +g1,14554:14597669,15702946 +g1,14554:14929623,15702946 +g1,14554:15261577,15702946 +g1,14554:15593531,15702946 +g1,14554:15925485,15702946 +g1,14554:16921347,15702946 +g1,14554:17253301,15702946 +g1,14554:17585255,15702946 +g1,14554:17917209,15702946 +g1,14554:18249163,15702946 +h1,14554:20240887,15702946:0,0,0 +k1,14554:32583029,15702946:12342142 +g1,14554:32583029,15702946 +) +(1,14554:6630773,16387801:25952256,407923,106246 +h1,14554:6630773,16387801:0,0,0 +g1,14554:7626635,16387801 +g1,14554:9618359,16387801 +g1,14554:9950313,16387801 +g1,14554:10614221,16387801 +g1,14554:10946175,16387801 +g1,14554:11278129,16387801 +g1,14554:13601807,16387801 +g1,14554:13933761,16387801 +g1,14554:14265715,16387801 +g1,14554:14597669,16387801 +g1,14554:14929623,16387801 +g1,14554:15261577,16387801 +g1,14554:15593531,16387801 +g1,14554:15925485,16387801 +g1,14554:16921347,16387801 +g1,14554:17253301,16387801 +g1,14554:17585255,16387801 +g1,14554:17917209,16387801 +g1,14554:18249163,16387801 +g1,14554:18581117,16387801 +g1,14554:20572841,16387801 +g1,14554:22896519,16387801 +g1,14554:23560427,16387801 +g1,14554:26216059,16387801 +h1,14554:27211921,16387801:0,0,0 +k1,14554:32583029,16387801:5371108 +g1,14554:32583029,16387801 +) +(1,14554:6630773,17072656:25952256,398014,0 +h1,14554:6630773,17072656:0,0,0 +g1,14554:7626635,17072656 +k1,14554:7626635,17072656:0 +h1,14554:8622497,17072656:0,0,0 +k1,14554:32583029,17072656:23960532 +g1,14554:32583029,17072656 +) +(1,14554:6630773,17757511:25952256,431045,112852 +h1,14554:6630773,17757511:0,0,0 +g1,14554:7626635,17757511 +g1,14554:10282267,17757511 +g1,14554:12605945,17757511 +g1,14554:12937899,17757511 +g1,14554:13601807,17757511 +g1,14554:15593531,17757511 +g1,14554:17585255,17757511 +g1,14554:19245025,17757511 +g1,14554:20904795,17757511 +g1,14554:22232611,17757511 +g1,14554:23892381,17757511 +g1,14554:25220197,17757511 +g1,14554:26548013,17757511 +g1,14554:27211921,17757511 +g1,14554:27875829,17757511 +h1,14554:28207783,17757511:0,0,0 +k1,14554:32583029,17757511:4375246 +g1,14554:32583029,17757511 +) +] +) +g1,14555:32583029,17870363 +g1,14555:6630773,17870363 +g1,14555:6630773,17870363 +g1,14555:32583029,17870363 +g1,14555:32583029,17870363 +) +h1,14555:6630773,18066971:0,0,0 +(1,14559:6630773,18932051:25952256,513147,126483 +h1,14558:6630773,18932051:983040,0,0 +k1,14558:8806830,18932051:239468 +k1,14558:10150580,18932051:239468 +k1,14558:12594025,18932051:239469 +k1,14558:15595836,18932051:239468 +k1,14558:19762877,18932051:239468 +k1,14558:22770586,18932051:239468 +k1,14558:23696216,18932051:239468 +k1,14558:27025708,18932051:239469 +k1,14558:28212827,18932051:239468 +k1,14558:30265021,18932051:239468 +k1,14558:32583029,18932051:0 +) +(1,14559:6630773,19797131:25952256,505283,134348 +g1,14558:8041107,19797131 +g1,14558:10519023,19797131 +h1,14558:11489611,19797131:0,0,0 +g1,14558:11688840,19797131 +g1,14558:12697439,19797131 +g1,14558:14394821,19797131 +h1,14558:15590198,19797131:0,0,0 +k1,14559:32583029,19797131:16733309 +g1,14559:32583029,19797131 +) +v1,14561:6630773,20481986:0,393216,0 +(1,14609:6630773,42189485:25952256,22100715,196608 +g1,14609:6630773,42189485 +g1,14609:6630773,42189485 +g1,14609:6434165,42189485 +(1,14609:6434165,42189485:0,22100715,196608 +r1,14652:32779637,42189485:26345472,22297323,196608 +k1,14609:6434165,42189485:-26345472 +) +(1,14609:6434165,42189485:26345472,22100715,196608 +[1,14609:6630773,42189485:25952256,21904107,0 +(1,14563:6630773,20716423:25952256,431045,79822 +(1,14562:6630773,20716423:0,0,0 +g1,14562:6630773,20716423 +g1,14562:6630773,20716423 +g1,14562:6303093,20716423 +(1,14562:6303093,20716423:0,0,0 +) +g1,14562:6630773,20716423 +) +k1,14563:6630773,20716423:0 +h1,14563:10282267,20716423:0,0,0 +k1,14563:32583029,20716423:22300762 +g1,14563:32583029,20716423 +) +(1,14567:6630773,21532350:25952256,424439,112852 +(1,14565:6630773,21532350:0,0,0 +g1,14565:6630773,21532350 +g1,14565:6630773,21532350 +g1,14565:6303093,21532350 +(1,14565:6303093,21532350:0,0,0 +) +g1,14565:6630773,21532350 +) +g1,14567:7626635,21532350 +g1,14567:8954451,21532350 +g1,14567:10946175,21532350 +h1,14567:12273991,21532350:0,0,0 +k1,14567:32583029,21532350:20309038 +g1,14567:32583029,21532350 +) +(1,14569:6630773,22348277:25952256,431045,106246 +(1,14568:6630773,22348277:0,0,0 +g1,14568:6630773,22348277 +g1,14568:6630773,22348277 +g1,14568:6303093,22348277 +(1,14568:6303093,22348277:0,0,0 +) +g1,14568:6630773,22348277 +) +k1,14569:6630773,22348277:0 +h1,14569:10946175,22348277:0,0,0 +k1,14569:32583029,22348277:21636854 +g1,14569:32583029,22348277 +) +(1,14594:6630773,23164204:25952256,398014,0 +(1,14571:6630773,23164204:0,0,0 +g1,14571:6630773,23164204 +g1,14571:6630773,23164204 +g1,14571:6303093,23164204 +(1,14571:6303093,23164204:0,0,0 +) +g1,14571:6630773,23164204 +) +h1,14594:7294681,23164204:0,0,0 +k1,14594:32583029,23164204:25288348 +g1,14594:32583029,23164204 +) +(1,14594:6630773,23849059:25952256,424439,8257 +h1,14594:6630773,23849059:0,0,0 +g1,14594:7626635,23849059 +h1,14594:9286405,23849059:0,0,0 +k1,14594:32583029,23849059:23296624 +g1,14594:32583029,23849059 +) +(1,14594:6630773,24533914:25952256,431045,112852 +h1,14594:6630773,24533914:0,0,0 +g1,14594:7626635,24533914 +g1,14594:11610082,24533914 +g1,14594:12273990,24533914 +g1,14594:14265714,24533914 +g1,14594:14929622,24533914 +g1,14594:17253300,24533914 +g1,14594:19576978,24533914 +g1,14594:20240886,24533914 +g1,14594:24888241,24533914 +g1,14594:26548011,24533914 +g1,14594:27211919,24533914 +h1,14594:31527320,24533914:0,0,0 +k1,14594:32583029,24533914:1055709 +g1,14594:32583029,24533914 +) +(1,14594:6630773,25218769:25952256,398014,0 +h1,14594:6630773,25218769:0,0,0 +h1,14594:7294681,25218769:0,0,0 +k1,14594:32583029,25218769:25288348 +g1,14594:32583029,25218769 +) +(1,14594:6630773,25903624:25952256,431045,8257 +h1,14594:6630773,25903624:0,0,0 +g1,14594:7626635,25903624 +h1,14594:11942036,25903624:0,0,0 +k1,14594:32583028,25903624:20640992 +g1,14594:32583028,25903624 +) +(1,14594:6630773,26588479:25952256,424439,79822 +h1,14594:6630773,26588479:0,0,0 +g1,14594:7626635,26588479 +g1,14594:7958589,26588479 +g1,14594:8290543,26588479 +g1,14594:8622497,26588479 +g1,14594:8954451,26588479 +g1,14594:9286405,26588479 +g1,14594:9618359,26588479 +g1,14594:9950313,26588479 +g1,14594:10282267,26588479 +g1,14594:10614221,26588479 +g1,14594:10946175,26588479 +g1,14594:11278129,26588479 +g1,14594:11610083,26588479 +g1,14594:14597668,26588479 +g1,14594:16257438,26588479 +g1,14594:18249162,26588479 +g1,14594:18913070,26588479 +g1,14594:20904794,26588479 +k1,14594:20904794,26588479:0 +h1,14594:23560426,26588479:0,0,0 +k1,14594:32583029,26588479:9022603 +g1,14594:32583029,26588479 +) +(1,14594:6630773,27273334:25952256,424439,106246 +h1,14594:6630773,27273334:0,0,0 +g1,14594:7626635,27273334 +g1,14594:11610082,27273334 +g1,14594:11942036,27273334 +g1,14594:14597668,27273334 +g1,14594:14929622,27273334 +g1,14594:15261576,27273334 +g1,14594:15593530,27273334 +g1,14594:18249162,27273334 +g1,14594:18581116,27273334 +g1,14594:20904794,27273334 +g1,14594:21236748,27273334 +g1,14594:21900656,27273334 +g1,14594:23892380,27273334 +h1,14594:24888242,27273334:0,0,0 +k1,14594:32583029,27273334:7694787 +g1,14594:32583029,27273334 +) +(1,14594:6630773,27958189:25952256,407923,106246 +h1,14594:6630773,27958189:0,0,0 +g1,14594:7626635,27958189 +g1,14594:9950313,27958189 +g1,14594:10282267,27958189 +g1,14594:10614221,27958189 +g1,14594:10946175,27958189 +g1,14594:11278129,27958189 +g1,14594:11610083,27958189 +g1,14594:11942037,27958189 +g1,14594:14597669,27958189 +g1,14594:14929623,27958189 +g1,14594:15261577,27958189 +g1,14594:15593531,27958189 +g1,14594:18249163,27958189 +g1,14594:18581117,27958189 +g1,14594:18913071,27958189 +g1,14594:20904795,27958189 +g1,14594:21236749,27958189 +g1,14594:21568703,27958189 +g1,14594:21900657,27958189 +h1,14594:23560427,27958189:0,0,0 +k1,14594:32583029,27958189:9022602 +g1,14594:32583029,27958189 +) +(1,14594:6630773,28643044:25952256,407923,106246 +h1,14594:6630773,28643044:0,0,0 +g1,14594:7626635,28643044 +g1,14594:9950313,28643044 +g1,14594:10282267,28643044 +g1,14594:10614221,28643044 +g1,14594:10946175,28643044 +g1,14594:11278129,28643044 +g1,14594:11610083,28643044 +g1,14594:14597668,28643044 +g1,14594:14929622,28643044 +g1,14594:15261576,28643044 +g1,14594:15593530,28643044 +g1,14594:18249162,28643044 +g1,14594:18581116,28643044 +g1,14594:20904794,28643044 +g1,14594:23892380,28643044 +h1,14594:24888242,28643044:0,0,0 +k1,14594:32583029,28643044:7694787 +g1,14594:32583029,28643044 +) +(1,14594:6630773,29327899:25952256,407923,106246 +h1,14594:6630773,29327899:0,0,0 +g1,14594:7626635,29327899 +g1,14594:9950313,29327899 +g1,14594:10282267,29327899 +g1,14594:10614221,29327899 +g1,14594:10946175,29327899 +g1,14594:11278129,29327899 +g1,14594:11610083,29327899 +g1,14594:14597668,29327899 +g1,14594:14929622,29327899 +g1,14594:15261576,29327899 +g1,14594:15593530,29327899 +g1,14594:18249162,29327899 +g1,14594:18581116,29327899 +g1,14594:20904794,29327899 +g1,14594:23892380,29327899 +h1,14594:24888242,29327899:0,0,0 +k1,14594:32583029,29327899:7694787 +g1,14594:32583029,29327899 +) +(1,14594:6630773,30012754:25952256,407923,106246 +h1,14594:6630773,30012754:0,0,0 +g1,14594:7626635,30012754 +g1,14594:9950313,30012754 +g1,14594:10282267,30012754 +g1,14594:10614221,30012754 +g1,14594:10946175,30012754 +g1,14594:11278129,30012754 +g1,14594:11610083,30012754 +g1,14594:14597668,30012754 +g1,14594:14929622,30012754 +g1,14594:15261576,30012754 +g1,14594:15593530,30012754 +g1,14594:18249162,30012754 +g1,14594:18581116,30012754 +g1,14594:20904794,30012754 +g1,14594:23892380,30012754 +h1,14594:24888242,30012754:0,0,0 +k1,14594:32583029,30012754:7694787 +g1,14594:32583029,30012754 +) +(1,14594:6630773,30697609:25952256,407923,106246 +h1,14594:6630773,30697609:0,0,0 +g1,14594:7626635,30697609 +g1,14594:9950313,30697609 +g1,14594:10282267,30697609 +g1,14594:10614221,30697609 +g1,14594:10946175,30697609 +g1,14594:11278129,30697609 +g1,14594:11610083,30697609 +g1,14594:11942037,30697609 +g1,14594:14597669,30697609 +g1,14594:14929623,30697609 +g1,14594:15261577,30697609 +g1,14594:15593531,30697609 +g1,14594:18249163,30697609 +g1,14594:18581117,30697609 +g1,14594:18913071,30697609 +g1,14594:20904795,30697609 +g1,14594:21236749,30697609 +g1,14594:21568703,30697609 +g1,14594:21900657,30697609 +h1,14594:23560427,30697609:0,0,0 +k1,14594:32583029,30697609:9022602 +g1,14594:32583029,30697609 +) +(1,14594:6630773,31382464:25952256,398014,0 +h1,14594:6630773,31382464:0,0,0 +g1,14594:7626635,31382464 +k1,14594:7626635,31382464:0 +h1,14594:8622497,31382464:0,0,0 +k1,14594:32583029,31382464:23960532 +g1,14594:32583029,31382464 +) +(1,14594:6630773,32067319:25952256,431045,112852 +h1,14594:6630773,32067319:0,0,0 +g1,14594:7626635,32067319 +g1,14594:10282267,32067319 +g1,14594:12605945,32067319 +g1,14594:12937899,32067319 +g1,14594:13601807,32067319 +g1,14594:15593531,32067319 +g1,14594:17585255,32067319 +g1,14594:19245025,32067319 +g1,14594:20904795,32067319 +g1,14594:22232611,32067319 +g1,14594:23892381,32067319 +g1,14594:25220197,32067319 +g1,14594:26548013,32067319 +g1,14594:27211921,32067319 +g1,14594:27875829,32067319 +h1,14594:28207783,32067319:0,0,0 +k1,14594:32583029,32067319:4375246 +g1,14594:32583029,32067319 +) +(1,14594:6630773,32752174:25952256,398014,0 +h1,14594:6630773,32752174:0,0,0 +h1,14594:7294681,32752174:0,0,0 +k1,14594:32583029,32752174:25288348 +g1,14594:32583029,32752174 +) +(1,14594:6630773,33437029:25952256,431045,106246 +h1,14594:6630773,33437029:0,0,0 +g1,14594:7626635,33437029 +g1,14594:11610082,33437029 +g1,14594:14929621,33437029 +g1,14594:16257437,33437029 +g1,14594:20572838,33437029 +g1,14594:22896516,33437029 +g1,14594:24888240,33437029 +g1,14594:25884102,33437029 +g1,14594:26879964,33437029 +h1,14594:29867549,33437029:0,0,0 +k1,14594:32583029,33437029:2715480 +g1,14594:32583029,33437029 +) +(1,14594:6630773,34121884:25952256,398014,0 +h1,14594:6630773,34121884:0,0,0 +h1,14594:7294681,34121884:0,0,0 +k1,14594:32583029,34121884:25288348 +g1,14594:32583029,34121884 +) +(1,14594:6630773,34806739:25952256,431045,112852 +h1,14594:6630773,34806739:0,0,0 +g1,14594:7626635,34806739 +g1,14594:7958589,34806739 +g1,14594:8290543,34806739 +g1,14594:8622497,34806739 +g1,14594:8954451,34806739 +g1,14594:10614221,34806739 +g1,14594:13933760,34806739 +g1,14594:16589392,34806739 +g1,14594:16921346,34806739 +g1,14594:17917208,34806739 +g1,14594:18913070,34806739 +g1,14594:19245024,34806739 +g1,14594:21900656,34806739 +g1,14594:22896518,34806739 +h1,14594:25220196,34806739:0,0,0 +k1,14594:32583029,34806739:7362833 +g1,14594:32583029,34806739 +) +(1,14594:6630773,35491594:25952256,431045,112852 +h1,14594:6630773,35491594:0,0,0 +g1,14594:7626635,35491594 +g1,14594:10614220,35491594 +g1,14594:13933759,35491594 +g1,14594:14265713,35491594 +g1,14594:16589391,35491594 +g1,14594:16921345,35491594 +g1,14594:17917207,35491594 +g1,14594:18913069,35491594 +g1,14594:19245023,35491594 +g1,14594:21900655,35491594 +g1,14594:22896517,35491594 +h1,14594:25220195,35491594:0,0,0 +k1,14594:32583029,35491594:7362834 +g1,14594:32583029,35491594 +) +(1,14594:6630773,36176449:25952256,398014,8257 +h1,14594:6630773,36176449:0,0,0 +g1,14594:7626635,36176449 +g1,14594:9286405,36176449 +h1,14594:9950313,36176449:0,0,0 +k1,14594:32583029,36176449:22632716 +g1,14594:32583029,36176449 +) +(1,14594:6630773,36861304:25952256,398014,0 +h1,14594:6630773,36861304:0,0,0 +h1,14594:7294681,36861304:0,0,0 +k1,14594:32583029,36861304:25288348 +g1,14594:32583029,36861304 +) +(1,14594:6630773,37546159:25952256,431045,112852 +h1,14594:6630773,37546159:0,0,0 +g1,14594:7626635,37546159 +g1,14594:9950313,37546159 +g1,14594:10946175,37546159 +g1,14594:13269853,37546159 +g1,14594:15925485,37546159 +g1,14594:19908932,37546159 +h1,14594:20240886,37546159:0,0,0 +k1,14594:32583029,37546159:12342143 +g1,14594:32583029,37546159 +) +(1,14596:6630773,38362086:25952256,431045,79822 +(1,14595:6630773,38362086:0,0,0 +g1,14595:6630773,38362086 +g1,14595:6630773,38362086 +g1,14595:6303093,38362086 +(1,14595:6303093,38362086:0,0,0 +) +g1,14595:6630773,38362086 +) +k1,14596:6630773,38362086:0 +k1,14596:6630773,38362086:0 +h1,14596:13601806,38362086:0,0,0 +k1,14596:32583030,38362086:18981224 +g1,14596:32583030,38362086 +) +(1,14601:6630773,39178013:25952256,407923,9908 +(1,14598:6630773,39178013:0,0,0 +g1,14598:6630773,39178013 +g1,14598:6630773,39178013 +g1,14598:6303093,39178013 +(1,14598:6303093,39178013:0,0,0 +) +g1,14598:6630773,39178013 +) +g1,14601:7626635,39178013 +g1,14601:7958589,39178013 +g1,14601:8290543,39178013 +g1,14601:8622497,39178013 +g1,14601:8954451,39178013 +g1,14601:9286405,39178013 +g1,14601:9618359,39178013 +g1,14601:9950313,39178013 +g1,14601:10282267,39178013 +g1,14601:10614221,39178013 +g1,14601:11278129,39178013 +g1,14601:11610083,39178013 +g1,14601:11942037,39178013 +g1,14601:12273991,39178013 +g1,14601:12605945,39178013 +g1,14601:12937899,39178013 +g1,14601:13269853,39178013 +g1,14601:13601807,39178013 +g1,14601:13933761,39178013 +g1,14601:14265715,39178013 +g1,14601:14929623,39178013 +g1,14601:15261577,39178013 +g1,14601:15593531,39178013 +g1,14601:15925485,39178013 +g1,14601:16257439,39178013 +g1,14601:16589393,39178013 +g1,14601:16921347,39178013 +g1,14601:17253301,39178013 +g1,14601:17585255,39178013 +g1,14601:17917209,39178013 +g1,14601:18581117,39178013 +g1,14601:18913071,39178013 +g1,14601:19245025,39178013 +g1,14601:19576979,39178013 +g1,14601:19908933,39178013 +g1,14601:20240887,39178013 +g1,14601:20572841,39178013 +g1,14601:20904795,39178013 +g1,14601:21236749,39178013 +g1,14601:21568703,39178013 +g1,14601:22232611,39178013 +g1,14601:22564565,39178013 +g1,14601:22896519,39178013 +g1,14601:23228473,39178013 +g1,14601:23560427,39178013 +g1,14601:23892381,39178013 +g1,14601:24224335,39178013 +g1,14601:24556289,39178013 +g1,14601:24888243,39178013 +g1,14601:25220197,39178013 +g1,14601:25884105,39178013 +g1,14601:26216059,39178013 +g1,14601:26548013,39178013 +g1,14601:26879967,39178013 +g1,14601:27211921,39178013 +g1,14601:27543875,39178013 +g1,14601:27875829,39178013 +g1,14601:28207783,39178013 +g1,14601:28539737,39178013 +g1,14601:28871691,39178013 +h1,14601:29203645,39178013:0,0,0 +k1,14601:32583029,39178013:3379384 +g1,14601:32583029,39178013 +) +(1,14601:6630773,39862868:25952256,407923,9908 +h1,14601:6630773,39862868:0,0,0 +g1,14601:7626635,39862868 +g1,14601:11278128,39862868 +g1,14601:14929621,39862868 +g1,14601:15261575,39862868 +g1,14601:18581114,39862868 +g1,14601:22232607,39862868 +g1,14601:25884100,39862868 +k1,14601:25884100,39862868:0 +h1,14601:29203639,39862868:0,0,0 +k1,14601:32583029,39862868:3379390 +g1,14601:32583029,39862868 +) +(1,14603:6630773,40678795:25952256,431045,79822 +(1,14602:6630773,40678795:0,0,0 +g1,14602:6630773,40678795 +g1,14602:6630773,40678795 +g1,14602:6303093,40678795 +(1,14602:6303093,40678795:0,0,0 +) +g1,14602:6630773,40678795 +) +k1,14603:6630773,40678795:0 +k1,14603:6630773,40678795:0 +h1,14603:12605945,40678795:0,0,0 +k1,14603:32583029,40678795:19977084 +g1,14603:32583029,40678795 +) +(1,14608:6630773,41494722:25952256,407923,9908 +(1,14605:6630773,41494722:0,0,0 +g1,14605:6630773,41494722 +g1,14605:6630773,41494722 +g1,14605:6303093,41494722 +(1,14605:6303093,41494722:0,0,0 +) +g1,14605:6630773,41494722 +) +g1,14608:7626635,41494722 +g1,14608:7958589,41494722 +g1,14608:8290543,41494722 +g1,14608:8622497,41494722 +g1,14608:9286405,41494722 +g1,14608:9618359,41494722 +g1,14608:9950313,41494722 +g1,14608:10282267,41494722 +g1,14608:10946175,41494722 +g1,14608:11278129,41494722 +g1,14608:11610083,41494722 +g1,14608:11942037,41494722 +g1,14608:12605945,41494722 +g1,14608:12937899,41494722 +g1,14608:13269853,41494722 +g1,14608:13601807,41494722 +g1,14608:14265715,41494722 +g1,14608:14597669,41494722 +g1,14608:14929623,41494722 +g1,14608:15261577,41494722 +g1,14608:15925485,41494722 +g1,14608:16257439,41494722 +g1,14608:16589393,41494722 +g1,14608:16921347,41494722 +h1,14608:17253301,41494722:0,0,0 +k1,14608:32583029,41494722:15329728 +g1,14608:32583029,41494722 +) +(1,14608:6630773,42179577:25952256,407923,9908 +h1,14608:6630773,42179577:0,0,0 +g1,14608:7626635,42179577 +g1,14608:9286405,42179577 +g1,14608:10946175,42179577 +g1,14608:12605945,42179577 +g1,14608:14265715,42179577 +g1,14608:15925485,42179577 +h1,14608:17253301,42179577:0,0,0 +k1,14608:32583029,42179577:15329728 +g1,14608:32583029,42179577 +) +] +) +g1,14609:32583029,42189485 +g1,14609:6630773,42189485 +g1,14609:6630773,42189485 +g1,14609:32583029,42189485 +g1,14609:32583029,42189485 +) +h1,14609:6630773,42386093:0,0,0 +v1,14613:6630773,43251173:0,393216,0 +(1,14652:6630773,45416114:25952256,2558157,0 +g1,14652:6630773,45416114 +g1,14652:6237557,45416114 +r1,14652:6368629,45416114:131072,2558157,0 +g1,14652:6567858,45416114 +g1,14652:6764466,45416114 +[1,14652:6764466,45416114:25818563,2558157,0 +(1,14614:6764466,43559471:25818563,701514,196608 +(1,14613:6764466,43559471:0,701514,196608 +r1,14652:7761522,43559471:997056,898122,196608 +k1,14613:6764466,43559471:-997056 +) +(1,14613:6764466,43559471:997056,701514,196608 +) +k1,14613:8002021,43559471:240499 +k1,14613:8329701,43559471:327680 +k1,14613:9047956,43559471:240498 +k1,14613:10156807,43559471:240499 +k1,14613:11489790,43559471:240498 +(1,14613:11489790,43559471:0,452978,115847 +r1,14652:13254903,43559471:1765113,568825,115847 +k1,14613:11489790,43559471:-1765113 +) +(1,14613:11489790,43559471:1765113,452978,115847 +k1,14613:11489790,43559471:3277 +h1,14613:13251626,43559471:0,411205,112570 +) +k1,14613:13495402,43559471:240499 +k1,14613:14418785,43559471:240498 +(1,14613:14418785,43559471:0,452978,115847 +r1,14652:16887322,43559471:2468537,568825,115847 +k1,14613:14418785,43559471:-2468537 +) +(1,14613:14418785,43559471:2468537,452978,115847 +k1,14613:14418785,43559471:3277 +h1,14613:16884045,43559471:0,411205,112570 +) +k1,14613:17127821,43559471:240499 +k1,14613:18236671,43559471:240498 +k1,14613:19581452,43559471:240499 +k1,14613:20846933,43559471:240498 +k1,14613:22371938,43559471:240499 +k1,14613:24267220,43559471:240498 +k1,14613:25499279,43559471:240499 +k1,14613:27431917,43559471:240498 +k1,14613:31189078,43559471:240499 +k1,14613:32583029,43559471:0 +) +(1,14614:6764466,44424551:25818563,513147,134348 +k1,14613:9243178,44424551:154150 +k1,14613:10048756,44424551:154150 +k1,14613:12015632,44424551:154150 +k1,14613:14157489,44424551:154150 +k1,14613:15503084,44424551:154150 +k1,14613:16853921,44424551:154150 +k1,14613:19786798,44424551:154150 +k1,14613:21900474,44424551:154150 +k1,14613:22586121,44424551:154150 +k1,14613:23399563,44424551:154150 +k1,14613:23909573,44424551:154150 +k1,14613:26826066,44424551:154150 +k1,14613:28535385,44424551:154150 +k1,14613:29880980,44424551:154150 +k1,14613:32583029,44424551:0 +) +(1,14614:6764466,45289631:25818563,513147,126483 +k1,14613:8722261,45289631:265655 +k1,14613:11941623,45289631:265654 +k1,14613:13273549,45289631:265655 +k1,14613:15945031,45289631:265655 +k1,14613:16826724,45289631:265655 +k1,14613:18905104,45289631:265654 +k1,14613:21662438,45289631:265655 +k1,14613:23278135,45289631:265655 +k1,14613:24203081,45289631:265654 +k1,14613:26165463,45289631:265655 +k1,14613:27906333,45289631:265655 +k1,14613:28823416,45289631:265655 +k1,14613:29904338,45289631:265654 +k1,14613:31563944,45289631:265655 +k1,14613:32583029,45289631:0 +) +] +g1,14652:32583029,45416114 +) +] +(1,14652:32583029,45706769:0,0,0 +g1,14652:32583029,45706769 +) +) +] +(1,14652:6630773,47279633:25952256,0,0 +h1,14652:6630773,47279633:25952256,0,0 +) +] +(1,14652:4262630,4025873:0,0,0 +[1,14652:-473656,4025873:0,0,0 +(1,14652:-473656,-710413:0,0,0 +(1,14652:-473656,-710413:0,0,0 +g1,14652:-473656,-710413 +) +g1,14652:-473656,-710413 ) ] ) ] !29542 -}234 -Input:2494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}235 Input:2497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2498:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2499:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2500:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{235 -[1,14670:4262630,47279633:28320399,43253760,0 -(1,14670:4262630,4025873:0,0,0 -[1,14670:-473656,4025873:0,0,0 -(1,14670:-473656,-710413:0,0,0 -(1,14670:-473656,-644877:0,0,0 -k1,14670:-473656,-644877:-65536 +{236 +[1,14668:4262630,47279633:28320399,43253760,0 +(1,14668:4262630,4025873:0,0,0 +[1,14668:-473656,4025873:0,0,0 +(1,14668:-473656,-710413:0,0,0 +(1,14668:-473656,-644877:0,0,0 +k1,14668:-473656,-644877:-65536 ) -(1,14670:-473656,4736287:0,0,0 -k1,14670:-473656,4736287:5209943 +(1,14668:-473656,4736287:0,0,0 +k1,14668:-473656,4736287:5209943 ) -g1,14670:-473656,-710413 +g1,14668:-473656,-710413 ) ] ) -[1,14670:6630773,47279633:25952256,43253760,0 -[1,14670:6630773,4812305:25952256,786432,0 -(1,14670:6630773,4812305:25952256,513147,126483 -(1,14670:6630773,4812305:25952256,513147,126483 -g1,14670:3078558,4812305 -[1,14670:3078558,4812305:0,0,0 -(1,14670:3078558,2439708:0,1703936,0 -k1,14670:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14670:2537886,2439708:1179648,16384,0 +[1,14668:6630773,47279633:25952256,43253760,0 +[1,14668:6630773,4812305:25952256,786432,0 +(1,14668:6630773,4812305:25952256,513147,126483 +(1,14668:6630773,4812305:25952256,513147,126483 +g1,14668:3078558,4812305 +[1,14668:3078558,4812305:0,0,0 +(1,14668:3078558,2439708:0,1703936,0 +k1,14668:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14668:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14670:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14668:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14670:3078558,4812305:0,0,0 -(1,14670:3078558,2439708:0,1703936,0 -g1,14670:29030814,2439708 -g1,14670:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14670:36151628,1915420:16384,1179648,0 +[1,14668:3078558,4812305:0,0,0 +(1,14668:3078558,2439708:0,1703936,0 +g1,14668:29030814,2439708 +g1,14668:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14668:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14670:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14668:37855564,2439708:1179648,16384,0 ) ) -k1,14670:3078556,2439708:-34777008 +k1,14668:3078556,2439708:-34777008 ) ] -[1,14670:3078558,4812305:0,0,0 -(1,14670:3078558,49800853:0,16384,2228224 -k1,14670:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14670:2537886,49800853:1179648,16384,0 +[1,14668:3078558,4812305:0,0,0 +(1,14668:3078558,49800853:0,16384,2228224 +k1,14668:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14668:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14670:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14668:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14670:3078558,4812305:0,0,0 -(1,14670:3078558,49800853:0,16384,2228224 -g1,14670:29030814,49800853 -g1,14670:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14670:36151628,51504789:16384,1179648,0 +[1,14668:3078558,4812305:0,0,0 +(1,14668:3078558,49800853:0,16384,2228224 +g1,14668:29030814,49800853 +g1,14668:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14668:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14670:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14668:37855564,49800853:1179648,16384,0 ) ) -k1,14670:3078556,49800853:-34777008 +k1,14668:3078556,49800853:-34777008 ) ] -g1,14670:6630773,4812305 -k1,14670:19575446,4812305:11749296 -g1,14670:21198117,4812305 -g1,14670:21985204,4812305 -g1,14670:24539797,4812305 -g1,14670:25949476,4812305 -g1,14670:28728857,4812305 -g1,14670:29852144,4812305 -) -) -] -[1,14670:6630773,45706769:25952256,40108032,0 -(1,14670:6630773,45706769:25952256,40108032,0 -(1,14670:6630773,45706769:0,0,0 -g1,14670:6630773,45706769 -) -[1,14670:6630773,45706769:25952256,40108032,0 -v1,14654:6630773,6254097:0,393216,0 -(1,14654:6630773,20310014:25952256,14449133,0 -g1,14654:6630773,20310014 -g1,14654:6237557,20310014 -r1,14670:6368629,20310014:131072,14449133,0 -g1,14654:6567858,20310014 -g1,14654:6764466,20310014 -[1,14654:6764466,20310014:25818563,14449133,0 -(1,14616:6764466,6374028:25818563,513147,126483 -k1,14615:9530237,6374028:153506 -k1,14615:14373500,6374028:153507 -k1,14615:16981329,6374028:153506 -k1,14615:18821733,6374028:153507 -(1,14615:18821733,6374028:0,452978,115847 -r1,14670:20235134,6374028:1413401,568825,115847 -k1,14615:18821733,6374028:-1413401 -) -(1,14615:18821733,6374028:1413401,452978,115847 -k1,14615:18821733,6374028:3277 -h1,14615:20231857,6374028:0,411205,112570 -) -k1,14615:20388640,6374028:153506 -k1,14615:23244195,6374028:153506 -k1,14615:24416787,6374028:153507 -k1,14615:27056074,6374028:153506 -k1,14615:27868873,6374028:153507 -k1,14615:31069803,6374028:153506 -k1,14615:32583029,6374028:0 -) -(1,14616:6764466,7239108:25818563,513147,134348 -g1,14615:8155140,7239108 -(1,14615:8155140,7239108:0,452978,122846 -r1,14670:11327100,7239108:3171960,575824,122846 -k1,14615:8155140,7239108:-3171960 -) -(1,14615:8155140,7239108:3171960,452978,122846 -k1,14615:8155140,7239108:3277 -h1,14615:11323823,7239108:0,411205,112570 -) -g1,14615:11526329,7239108 -g1,14615:12744643,7239108 -g1,14615:15364117,7239108 -g1,14615:16246231,7239108 -g1,14615:17511731,7239108 -g1,14615:18326998,7239108 -g1,14615:20782632,7239108 -g1,14615:21337721,7239108 -k1,14616:32583029,7239108:8580615 -g1,14616:32583029,7239108 -) -v1,14618:6764466,7923963:0,393216,0 -(1,14652:6764466,20113406:25818563,12582659,196608 -g1,14652:6764466,20113406 -g1,14652:6764466,20113406 -g1,14652:6567858,20113406 -(1,14652:6567858,20113406:0,12582659,196608 -r1,14670:32779637,20113406:26211779,12779267,196608 -k1,14652:6567857,20113406:-26211780 -) -(1,14652:6567858,20113406:26211779,12582659,196608 -[1,14652:6764466,20113406:25818563,12386051,0 -(1,14620:6764466,8158400:25818563,431045,79822 -(1,14619:6764466,8158400:0,0,0 -g1,14619:6764466,8158400 -g1,14619:6764466,8158400 -g1,14619:6436786,8158400 -(1,14619:6436786,8158400:0,0,0 -) -g1,14619:6764466,8158400 -) -k1,14620:6764466,8158400:0 -h1,14620:10415960,8158400:0,0,0 -k1,14620:32583028,8158400:22167068 -g1,14620:32583028,8158400 -) -(1,14624:6764466,8974327:25818563,424439,112852 -(1,14622:6764466,8974327:0,0,0 -g1,14622:6764466,8974327 -g1,14622:6764466,8974327 -g1,14622:6436786,8974327 -(1,14622:6436786,8974327:0,0,0 -) -g1,14622:6764466,8974327 -) -g1,14624:7760328,8974327 -g1,14624:9088144,8974327 -g1,14624:11079868,8974327 -h1,14624:12407684,8974327:0,0,0 -k1,14624:32583028,8974327:20175344 -g1,14624:32583028,8974327 -) -(1,14626:6764466,9790254:25818563,431045,79822 -(1,14625:6764466,9790254:0,0,0 -g1,14625:6764466,9790254 -g1,14625:6764466,9790254 -g1,14625:6436786,9790254 -(1,14625:6436786,9790254:0,0,0 -) -g1,14625:6764466,9790254 -) -k1,14626:6764466,9790254:0 -h1,14626:10415960,9790254:0,0,0 -k1,14626:32583028,9790254:22167068 -g1,14626:32583028,9790254 -) -(1,14639:6764466,10606181:25818563,431045,79822 -(1,14628:6764466,10606181:0,0,0 -g1,14628:6764466,10606181 -g1,14628:6764466,10606181 -g1,14628:6436786,10606181 -(1,14628:6436786,10606181:0,0,0 -) -g1,14628:6764466,10606181 -) -g1,14639:7760328,10606181 -g1,14639:8092282,10606181 -g1,14639:9420098,10606181 -g1,14639:14399407,10606181 -g1,14639:14731361,10606181 -g1,14639:15063315,10606181 -g1,14639:15395269,10606181 -g1,14639:15727223,10606181 -g1,14639:16059177,10606181 -g1,14639:20042624,10606181 -g1,14639:20374578,10606181 -g1,14639:20706532,10606181 -g1,14639:21038486,10606181 -g1,14639:21370440,10606181 -g1,14639:21702394,10606181 -g1,14639:22034348,10606181 -g1,14639:22366302,10606181 -g1,14639:22698256,10606181 -h1,14639:27677565,10606181:0,0,0 -k1,14639:32583029,10606181:4905464 -g1,14639:32583029,10606181 -) -(1,14639:6764466,11291036:25818563,431045,79822 -h1,14639:6764466,11291036:0,0,0 -g1,14639:7760328,11291036 -g1,14639:8092282,11291036 -g1,14639:9420098,11291036 -g1,14639:12739637,11291036 -g1,14639:13071591,11291036 -g1,14639:13403545,11291036 -g1,14639:13735499,11291036 -g1,14639:14067453,11291036 -g1,14639:14399407,11291036 -g1,14639:14731361,11291036 -g1,14639:15063315,11291036 -g1,14639:15395269,11291036 -g1,14639:15727223,11291036 -g1,14639:16059177,11291036 -g1,14639:17386993,11291036 -g1,14639:17718947,11291036 -g1,14639:18050901,11291036 -g1,14639:18382855,11291036 -g1,14639:18714809,11291036 -g1,14639:19046763,11291036 -g1,14639:19378717,11291036 -g1,14639:19710671,11291036 -g1,14639:20042625,11291036 -g1,14639:20374579,11291036 -g1,14639:20706533,11291036 -g1,14639:21038487,11291036 -g1,14639:21370441,11291036 -g1,14639:21702395,11291036 -g1,14639:22034349,11291036 -g1,14639:22366303,11291036 -g1,14639:22698257,11291036 -h1,14639:24689981,11291036:0,0,0 -k1,14639:32583029,11291036:7893048 -g1,14639:32583029,11291036 -) -(1,14639:6764466,11975891:25818563,431045,106246 -h1,14639:6764466,11975891:0,0,0 -g1,14639:7760328,11975891 -g1,14639:8092282,11975891 -g1,14639:9420098,11975891 -g1,14639:11079868,11975891 -g1,14639:11411822,11975891 -g1,14639:11743776,11975891 -g1,14639:12075730,11975891 -g1,14639:12407684,11975891 -g1,14639:12739638,11975891 -g1,14639:13071592,11975891 -g1,14639:13403546,11975891 -g1,14639:13735500,11975891 -g1,14639:14067454,11975891 -g1,14639:14399408,11975891 -g1,14639:14731362,11975891 -g1,14639:15063316,11975891 -g1,14639:15395270,11975891 -g1,14639:15727224,11975891 -g1,14639:16059178,11975891 -g1,14639:19046763,11975891 -g1,14639:19378717,11975891 -g1,14639:19710671,11975891 -g1,14639:20042625,11975891 -g1,14639:20374579,11975891 -g1,14639:20706533,11975891 -g1,14639:21038487,11975891 -g1,14639:21370441,11975891 -g1,14639:21702395,11975891 -g1,14639:22034349,11975891 -g1,14639:22366303,11975891 -g1,14639:22698257,11975891 -h1,14639:29005381,11975891:0,0,0 -k1,14639:32583029,11975891:3577648 -g1,14639:32583029,11975891 -) -(1,14639:6764466,12660746:25818563,424439,79822 -h1,14639:6764466,12660746:0,0,0 -g1,14639:7760328,12660746 -g1,14639:9420098,12660746 -g1,14639:13071591,12660746 -g1,14639:13403545,12660746 -g1,14639:13735499,12660746 -g1,14639:14067453,12660746 -g1,14639:14399407,12660746 -g1,14639:14731361,12660746 -g1,14639:15063315,12660746 -g1,14639:15395269,12660746 -g1,14639:15727223,12660746 -g1,14639:16059177,12660746 -g1,14639:18050901,12660746 -g1,14639:18382855,12660746 -g1,14639:18714809,12660746 -g1,14639:19046763,12660746 -g1,14639:19378717,12660746 -g1,14639:19710671,12660746 -g1,14639:20042625,12660746 -g1,14639:20374579,12660746 -g1,14639:20706533,12660746 -g1,14639:21038487,12660746 -g1,14639:21370441,12660746 -g1,14639:21702395,12660746 -g1,14639:22034349,12660746 -g1,14639:22366303,12660746 -g1,14639:22698257,12660746 -h1,14639:27677566,12660746:0,0,0 -k1,14639:32583029,12660746:4905463 -g1,14639:32583029,12660746 -) -(1,14639:6764466,13345601:25818563,424439,112852 -h1,14639:6764466,13345601:0,0,0 -g1,14639:7760328,13345601 -g1,14639:9420098,13345601 -g1,14639:11743776,13345601 -g1,14639:12075730,13345601 -g1,14639:12407684,13345601 -g1,14639:12739638,13345601 -g1,14639:13071592,13345601 -g1,14639:13403546,13345601 -g1,14639:13735500,13345601 -g1,14639:14067454,13345601 -g1,14639:14399408,13345601 -g1,14639:14731362,13345601 -g1,14639:15063316,13345601 -g1,14639:15395270,13345601 -g1,14639:15727224,13345601 -g1,14639:16059178,13345601 -g1,14639:19378717,13345601 -g1,14639:19710671,13345601 -g1,14639:20042625,13345601 -g1,14639:20374579,13345601 -g1,14639:20706533,13345601 -g1,14639:21038487,13345601 -g1,14639:21370441,13345601 -g1,14639:21702395,13345601 -g1,14639:22034349,13345601 -g1,14639:22366303,13345601 -g1,14639:22698257,13345601 -h1,14639:27677566,13345601:0,0,0 -k1,14639:32583029,13345601:4905463 -g1,14639:32583029,13345601 -) -(1,14639:6764466,14030456:25818563,431045,106246 -h1,14639:6764466,14030456:0,0,0 -g1,14639:7760328,14030456 -g1,14639:9420098,14030456 -g1,14639:14067453,14030456 -g1,14639:14399407,14030456 -g1,14639:14731361,14030456 -g1,14639:15063315,14030456 -g1,14639:15395269,14030456 -g1,14639:15727223,14030456 -g1,14639:16059177,14030456 -g1,14639:19378716,14030456 -g1,14639:19710670,14030456 -g1,14639:20042624,14030456 -g1,14639:20374578,14030456 -g1,14639:20706532,14030456 -g1,14639:21038486,14030456 -g1,14639:21370440,14030456 -g1,14639:21702394,14030456 -g1,14639:22034348,14030456 -g1,14639:22366302,14030456 -g1,14639:22698256,14030456 -h1,14639:23694118,14030456:0,0,0 -k1,14639:32583029,14030456:8888911 -g1,14639:32583029,14030456 -) -(1,14639:6764466,14715311:25818563,424439,112852 -h1,14639:6764466,14715311:0,0,0 -g1,14639:7760328,14715311 -g1,14639:9420098,14715311 -g1,14639:13403545,14715311 -g1,14639:13735499,14715311 -g1,14639:14067453,14715311 -g1,14639:14399407,14715311 -g1,14639:14731361,14715311 -g1,14639:15063315,14715311 -g1,14639:15395269,14715311 -g1,14639:15727223,14715311 -g1,14639:16059177,14715311 -g1,14639:19710670,14715311 -g1,14639:20042624,14715311 -g1,14639:20374578,14715311 -g1,14639:20706532,14715311 -g1,14639:21038486,14715311 -g1,14639:21370440,14715311 -g1,14639:21702394,14715311 -g1,14639:22034348,14715311 -g1,14639:22366302,14715311 -g1,14639:22698256,14715311 -h1,14639:25021934,14715311:0,0,0 -k1,14639:32583029,14715311:7561095 -g1,14639:32583029,14715311 -) -(1,14639:6764466,15400166:25818563,431045,79822 -h1,14639:6764466,15400166:0,0,0 -g1,14639:7760328,15400166 -g1,14639:9420098,15400166 -g1,14639:11743776,15400166 -g1,14639:12075730,15400166 -g1,14639:12407684,15400166 -g1,14639:12739638,15400166 -g1,14639:13071592,15400166 -g1,14639:13403546,15400166 -g1,14639:13735500,15400166 -g1,14639:14067454,15400166 -g1,14639:14399408,15400166 -g1,14639:14731362,15400166 -g1,14639:15063316,15400166 -g1,14639:15395270,15400166 -g1,14639:15727224,15400166 -g1,14639:16059178,15400166 -g1,14639:19378717,15400166 -g1,14639:19710671,15400166 -g1,14639:20042625,15400166 -g1,14639:20374579,15400166 -g1,14639:20706533,15400166 -g1,14639:21038487,15400166 -g1,14639:21370441,15400166 -g1,14639:21702395,15400166 -g1,14639:22034349,15400166 -g1,14639:22366303,15400166 -g1,14639:22698257,15400166 -h1,14639:25021935,15400166:0,0,0 -k1,14639:32583029,15400166:7561094 -g1,14639:32583029,15400166 -) -(1,14639:6764466,16085021:25818563,431045,79822 -h1,14639:6764466,16085021:0,0,0 -g1,14639:7760328,16085021 -g1,14639:9420098,16085021 -g1,14639:11743776,16085021 -g1,14639:12075730,16085021 -g1,14639:12407684,16085021 -g1,14639:12739638,16085021 -g1,14639:13071592,16085021 -g1,14639:13403546,16085021 -g1,14639:13735500,16085021 -g1,14639:14067454,16085021 -g1,14639:14399408,16085021 -g1,14639:14731362,16085021 -g1,14639:15063316,16085021 -g1,14639:15395270,16085021 -g1,14639:15727224,16085021 -g1,14639:16059178,16085021 -g1,14639:19046763,16085021 -g1,14639:19378717,16085021 -g1,14639:19710671,16085021 -g1,14639:20042625,16085021 -g1,14639:20374579,16085021 -g1,14639:20706533,16085021 -g1,14639:21038487,16085021 -g1,14639:21370441,16085021 -g1,14639:21702395,16085021 -g1,14639:22034349,16085021 -g1,14639:22366303,16085021 -g1,14639:22698257,16085021 -h1,14639:25685842,16085021:0,0,0 -k1,14639:32583029,16085021:6897187 -g1,14639:32583029,16085021 -) -(1,14639:6764466,16769876:25818563,424439,79822 -h1,14639:6764466,16769876:0,0,0 -g1,14639:7760328,16769876 -g1,14639:9420098,16769876 -g1,14639:12407683,16769876 -g1,14639:12739637,16769876 -g1,14639:13071591,16769876 -g1,14639:13403545,16769876 -g1,14639:13735499,16769876 -g1,14639:14067453,16769876 -g1,14639:14399407,16769876 -g1,14639:14731361,16769876 -g1,14639:15063315,16769876 -g1,14639:15395269,16769876 -g1,14639:15727223,16769876 -g1,14639:16059177,16769876 -g1,14639:20042624,16769876 -g1,14639:20374578,16769876 -g1,14639:20706532,16769876 -g1,14639:21038486,16769876 -g1,14639:21370440,16769876 -g1,14639:21702394,16769876 -g1,14639:22034348,16769876 -g1,14639:22366302,16769876 -g1,14639:22698256,16769876 -h1,14639:25685841,16769876:0,0,0 -k1,14639:32583029,16769876:6897188 -g1,14639:32583029,16769876 -) -(1,14641:6764466,17585803:25818563,431045,112852 -(1,14640:6764466,17585803:0,0,0 -g1,14640:6764466,17585803 -g1,14640:6764466,17585803 -g1,14640:6436786,17585803 -(1,14640:6436786,17585803:0,0,0 -) -g1,14640:6764466,17585803 -) -h1,14641:11411821,17585803:0,0,0 -k1,14641:32583029,17585803:21171208 -g1,14641:32583029,17585803 -) -(1,14645:6764466,18401730:25818563,424439,79822 -(1,14643:6764466,18401730:0,0,0 -g1,14643:6764466,18401730 -g1,14643:6764466,18401730 -g1,14643:6436786,18401730 -(1,14643:6436786,18401730:0,0,0 -) -g1,14643:6764466,18401730 -) -g1,14645:7760328,18401730 -g1,14645:9088144,18401730 -h1,14645:10415960,18401730:0,0,0 -k1,14645:32583028,18401730:22167068 -g1,14645:32583028,18401730 -) -(1,14647:6764466,19217657:25818563,431045,33029 -(1,14646:6764466,19217657:0,0,0 -g1,14646:6764466,19217657 -g1,14646:6764466,19217657 -g1,14646:6436786,19217657 -(1,14646:6436786,19217657:0,0,0 -) -g1,14646:6764466,19217657 -) -h1,14647:9752052,19217657:0,0,0 -k1,14647:32583028,19217657:22830976 -g1,14647:32583028,19217657 -) -(1,14651:6764466,20033584:25818563,424439,79822 -(1,14649:6764466,20033584:0,0,0 -g1,14649:6764466,20033584 -g1,14649:6764466,20033584 -g1,14649:6436786,20033584 -(1,14649:6436786,20033584:0,0,0 -) -g1,14649:6764466,20033584 -) -g1,14651:7760328,20033584 -g1,14651:9088144,20033584 -h1,14651:9420098,20033584:0,0,0 -k1,14651:32583030,20033584:23162932 -g1,14651:32583030,20033584 -) -] -) -g1,14652:32583029,20113406 -g1,14652:6764466,20113406 -g1,14652:6764466,20113406 -g1,14652:32583029,20113406 -g1,14652:32583029,20113406 -) -h1,14652:6764466,20310014:0,0,0 -] -g1,14654:32583029,20310014 -) -h1,14654:6630773,20310014:0,0,0 -(1,14657:6630773,21175094:25952256,513147,134348 -h1,14656:6630773,21175094:983040,0,0 -k1,14656:10547092,21175094:205015 -(1,14656:10547092,21175094:0,452978,115847 -r1,14670:13367341,21175094:2820249,568825,115847 -k1,14656:10547092,21175094:-2820249 -) -(1,14656:10547092,21175094:2820249,452978,115847 -k1,14656:10547092,21175094:3277 -h1,14656:13364064,21175094:0,411205,112570 -) -k1,14656:13572357,21175094:205016 -k1,14656:14968817,21175094:205015 -(1,14656:14968817,21175094:0,452978,115847 -r1,14670:17085642,21175094:2116825,568825,115847 -k1,14656:14968817,21175094:-2116825 -) -(1,14656:14968817,21175094:2116825,452978,115847 -k1,14656:14968817,21175094:3277 -h1,14656:17082365,21175094:0,411205,112570 -) -k1,14656:17464327,21175094:205015 -k1,14656:20759365,21175094:205015 -k1,14656:21912032,21175094:205016 -(1,14656:21912032,21175094:0,452978,115847 -r1,14670:23325433,21175094:1413401,568825,115847 -k1,14656:21912032,21175094:-1413401 -) -(1,14656:21912032,21175094:1413401,452978,115847 -k1,14656:21912032,21175094:3277 -h1,14656:23322156,21175094:0,411205,112570 -) -k1,14656:23530448,21175094:205015 -k1,14656:24351501,21175094:205015 -k1,14656:26835203,21175094:205015 -h1,14656:28377921,21175094:0,0,0 -k1,14656:28582937,21175094:205016 -k1,14656:29597322,21175094:205015 -k1,14656:31300490,21175094:205015 -h1,14656:32495867,21175094:0,0,0 -k1,14656:32583029,21175094:0 -) -(1,14657:6630773,22040174:25952256,513147,122846 -g1,14656:7934284,22040174 -g1,14656:8881279,22040174 -g1,14656:10366324,22040174 -g1,14656:12078779,22040174 -g1,14656:13671959,22040174 -g1,14656:16189196,22040174 -g1,14656:18100881,22040174 -g1,14656:19694061,22040174 -(1,14656:19694061,22040174:0,452978,122846 -r1,14670:21459174,22040174:1765113,575824,122846 -k1,14656:19694061,22040174:-1765113 -) -(1,14656:19694061,22040174:1765113,452978,122846 -k1,14656:19694061,22040174:3277 -h1,14656:21455897,22040174:0,411205,112570 -) -k1,14657:32583029,22040174:11071427 -g1,14657:32583029,22040174 -) -(1,14660:6630773,24871334:25952256,32768,229376 -(1,14660:6630773,24871334:0,32768,229376 -(1,14660:6630773,24871334:5505024,32768,229376 -r1,14670:12135797,24871334:5505024,262144,229376 -) -k1,14660:6630773,24871334:-5505024 -) -(1,14660:6630773,24871334:25952256,32768,0 -r1,14670:32583029,24871334:25952256,32768,0 -) -) -(1,14660:6630773,26503186:25952256,606339,161218 -(1,14660:6630773,26503186:2464678,573309,0 -g1,14660:6630773,26503186 -g1,14660:9095451,26503186 -) -g1,14660:13659116,26503186 -k1,14660:32583029,26503186:14560002 -g1,14660:32583029,26503186 -) -(1,14666:6630773,27761482:25952256,505283,134348 -k1,14665:7613309,27761482:222318 -k1,14665:11129467,27761482:222318 -k1,14665:11809882,27761482:222318 -k1,14665:12563698,27761482:222319 -k1,14665:14780932,27761482:222318 -k1,14665:18253180,27761482:222318 -k1,14665:19078429,27761482:222318 -k1,14665:20286408,27761482:222318 -k1,14665:24161703,27761482:222318 -k1,14665:26392045,27761482:222319 -k1,14665:28625008,27761482:222318 -k1,14665:29838886,27761482:222318 -k1,14665:31799219,27761482:222318 -k1,14666:32583029,27761482:0 -) -(1,14666:6630773,28626562:25952256,513147,134348 -k1,14665:9253524,28626562:163840 -k1,14665:11975889,28626562:163839 -k1,14665:14074352,28626562:163840 -k1,14665:15257277,28626562:163840 -k1,14665:17408824,28626562:163840 -k1,14665:18224091,28626562:163839 -k1,14665:22633353,28626562:163840 -k1,14665:24178037,28626562:163840 -k1,14665:24873374,28626562:163840 -k1,14665:27799556,28626562:163839 -k1,14665:29531017,28626562:163840 -k1,14665:30713942,28626562:163840 -k1,14665:32583029,28626562:0 -) -(1,14666:6630773,29491642:25952256,513147,134348 -k1,14665:7465865,29491642:175800 -k1,14665:8660750,29491642:175800 -k1,14665:11532046,29491642:175800 -k1,14665:13405885,29491642:175801 -k1,14665:17608872,29491642:175800 -k1,14665:21687996,29491642:175800 -k1,14665:22523088,29491642:175800 -k1,14665:23830695,29491642:175800 -k1,14665:26131828,29491642:175800 -k1,14665:27299189,29491642:175801 -k1,14665:29287715,29491642:175800 -k1,14665:31955194,29491642:175800 -k1,14665:32583029,29491642:0 -) -(1,14666:6630773,30356722:25952256,505283,126483 -k1,14665:9586512,30356722:150798 -k1,14665:10756396,30356722:150799 -k1,14665:16418116,30356722:150798 -k1,14665:19358782,30356722:150798 -k1,14665:21022806,30356722:150798 -k1,14665:21789643,30356722:150799 -k1,14665:25094033,30356722:150798 -k1,14665:26436276,30356722:150798 -k1,14665:27606160,30356722:150799 -k1,14665:30954460,30356722:150798 -k1,14666:32583029,30356722:0 -) -(1,14666:6630773,31221802:25952256,505283,134348 -g1,14665:8097468,31221802 -g1,14665:9809923,31221802 -g1,14665:10660580,31221802 -g1,14665:13529090,31221802 -g1,14665:15978170,31221802 -g1,14665:17168959,31221802 -g1,14665:19686196,31221802 -g1,14665:23135355,31221802 -g1,14665:23950622,31221802 -g1,14665:25658490,31221802 -k1,14666:32583029,31221802:3261077 -g1,14666:32583029,31221802 -) -(1,14668:6630773,32086882:25952256,513147,134348 -h1,14667:6630773,32086882:983040,0,0 -k1,14667:9660502,32086882:271974 -k1,14667:12977935,32086882:271975 -k1,14667:16691204,32086882:271974 -k1,14667:18463952,32086882:271974 -k1,14667:19683578,32086882:271975 -k1,14667:22211957,32086882:271974 -k1,14667:25530044,32086882:271974 -k1,14667:26749669,32086882:271974 -k1,14667:28040729,32086882:271975 -k1,14667:31923737,32086882:271974 -k1,14667:32583029,32086882:0 -) -(1,14668:6630773,32951962:25952256,513147,126483 -k1,14667:8655180,32951962:211681 -k1,14667:11358540,32951962:211681 -k1,14667:12186260,32951962:211682 -k1,14667:13417026,32951962:211681 -k1,14667:14995788,32951962:211681 -k1,14667:15866761,32951962:211681 -k1,14667:19328373,32951962:211682 -k1,14667:22031733,32951962:211681 -k1,14667:23262499,32951962:211681 -k1,14667:26520293,32951962:211681 -k1,14667:27723535,32951962:211682 -k1,14667:30727050,32951962:211681 -k1,14667:31700259,32951962:211681 -k1,14668:32583029,32951962:0 -) -(1,14668:6630773,33817042:25952256,505283,126483 -k1,14667:11002534,33817042:284936 -k1,14667:12329492,33817042:284936 -k1,14667:15659886,33817042:284936 -k1,14667:19061059,33817042:284936 -k1,14667:22392107,33817042:284935 -k1,14667:23781325,33817042:284936 -k1,14667:26195526,33817042:284936 -k1,14667:27228228,33817042:284936 -k1,14667:30304998,33817042:284936 -k1,14667:32583029,33817042:0 -) -(1,14668:6630773,34682122:25952256,513147,134348 -k1,14667:7564125,34682122:317314 -k1,14667:11793937,34682122:317313 -k1,14667:13808633,34682122:317314 -k1,14667:16673330,34682122:317313 -k1,14667:17752172,34682122:317314 -k1,14667:19088570,34682122:317313 -k1,14667:22843903,34682122:317314 -k1,14667:23820508,34682122:317313 -k1,14667:26569863,34682122:317314 -k1,14667:28575384,34682122:317314 -k1,14667:31708779,34682122:317313 -k1,14668:32583029,34682122:0 -) -(1,14668:6630773,35547202:25952256,505283,134348 -k1,14667:9197360,35547202:244646 -k1,14667:10251375,35547202:244645 -k1,14667:11994174,35547202:244646 -h1,14667:12791092,35547202:0,0,0 -k1,14667:13416502,35547202:244646 -k1,14667:14703170,35547202:244646 -k1,14667:19967873,35547202:244645 -k1,14667:23004353,35547202:244646 -k1,14667:25807525,35547202:244646 -k1,14667:28942963,35547202:244645 -k1,14667:30884991,35547202:244646 -k1,14667:32583029,35547202:0 -) -(1,14668:6630773,36412282:25952256,513147,134348 -k1,14667:7921236,36412282:271378 -k1,14667:11303609,36412282:271379 -k1,14667:12932238,36412282:271378 -k1,14667:13855045,36412282:271379 -k1,14667:16973307,36412282:271378 -k1,14667:18705484,36412282:271379 -k1,14667:19747565,36412282:271378 -k1,14667:22276659,36412282:271379 -k1,14667:23539597,36412282:271378 -k1,14667:26736503,36412282:271379 -k1,14667:29958967,36412282:271378 -k1,14667:32583029,36412282:0 -) -(1,14668:6630773,37277362:25952256,513147,134348 -k1,14667:10325802,37277362:253734 -k1,14667:13094151,37277362:253733 -k1,14667:13999313,37277362:253734 -k1,14667:16882350,37277362:253733 -k1,14667:17906787,37277362:253734 -k1,14667:19996839,37277362:253733 -k1,14667:22047570,37277362:253734 -k1,14667:23248954,37277362:253733 -k1,14667:24521773,37277362:253734 -k1,14667:26786151,37277362:253733 -k1,14667:27699177,37277362:253734 -k1,14667:28971995,37277362:253733 -k1,14667:32583029,37277362:0 -) -(1,14668:6630773,38142442:25952256,513147,134348 -k1,14667:7490465,38142442:208264 -k1,14667:8446495,38142442:208264 -k1,14667:11964982,38142442:208264 -k1,14667:12529106,38142442:208264 -k1,14667:14534367,38142442:208264 -k1,14667:18047612,38142442:208264 -k1,14667:21016909,38142442:208265 -k1,14667:21986701,38142442:208264 -k1,14667:23214050,38142442:208264 -k1,14667:24976828,38142442:208264 -k1,14667:25812927,38142442:208264 -k1,14667:27472813,38142442:208264 -k1,14667:30571870,38142442:208264 -k1,14667:31799219,38142442:208264 -k1,14668:32583029,38142442:0 -) -(1,14668:6630773,39007522:25952256,505283,134348 -k1,14667:8941119,39007522:272176 -k1,14667:12005129,39007522:272176 -k1,14667:12893343,39007522:272176 -k1,14667:14184603,39007522:272175 -k1,14667:17211257,39007522:272176 -k1,14667:20200556,39007522:272176 -k1,14667:21004229,39007522:272176 -k1,14667:22789631,39007522:272176 -k1,14667:23747969,39007522:272176 -k1,14667:25039229,39007522:272175 -k1,14667:27789977,39007522:272176 -k1,14667:29916167,39007522:272176 -k1,14667:31379788,39007522:272176 -k1,14667:32583029,39007522:0 -) -(1,14668:6630773,39872602:25952256,513147,126483 -k1,14667:9323798,39872602:247877 -k1,14667:10103173,39872602:247878 -k1,14667:13135675,39872602:247877 -k1,14667:14540263,39872602:247878 -k1,14667:16213548,39872602:247877 -k1,14667:17974651,39872602:247877 -k1,14667:20868873,39872602:247878 -k1,14667:22313437,39872602:247877 -k1,14667:26255578,39872602:247877 -k1,14667:27034953,39872602:247878 -k1,14667:28567336,39872602:247877 -k1,14667:30328440,39872602:247878 -k1,14667:30932177,39872602:247877 -k1,14667:32583029,39872602:0 -) -(1,14668:6630773,40737682:25952256,513147,134348 -k1,14667:9333314,40737682:216760 -k1,14667:10209367,40737682:216761 -k1,14667:13473551,40737682:216760 -k1,14667:14709396,40737682:216760 -k1,14667:18037150,40737682:216760 -k1,14667:19386373,40737682:216761 -k1,14667:22460503,40737682:216760 -k1,14667:23944729,40737682:216760 -k1,14667:24517349,40737682:216760 -k1,14667:27346375,40737682:216761 -k1,14667:28847641,40737682:216760 -k1,14667:31835263,40737682:216760 -k1,14667:32583029,40737682:0 -) -(1,14668:6630773,41602762:25952256,513147,126483 -k1,14667:9879580,41602762:198761 -k1,14667:12527422,41602762:198762 -k1,14667:13354018,41602762:198761 -k1,14667:14749466,41602762:198761 -k1,14667:15966656,41602762:198761 -k1,14667:17033770,41602762:198762 -k1,14667:18635001,41602762:198761 -k1,14667:21550885,41602762:198761 -k1,14667:23447685,41602762:198762 -k1,14667:24665531,41602762:198761 -k1,14667:29132652,41602762:198761 -k1,14667:29947451,41602762:198761 -k1,14667:31165298,41602762:198762 -k1,14667:32051532,41602762:198761 -k1,14667:32583029,41602762:0 -) -(1,14668:6630773,42467842:25952256,513147,134348 -k1,14667:9176683,42467842:193823 -k1,14667:10812952,42467842:193822 -k1,14667:11362635,42467842:193823 -k1,14667:13754535,42467842:193822 -k1,14667:17195012,42467842:193823 -k1,14667:18071720,42467842:193823 -k1,14667:19963580,42467842:193822 -k1,14667:20966773,42467842:193823 -k1,14667:25113727,42467842:193822 -k1,14667:26408555,42467842:193823 -k1,14667:28112327,42467842:193822 -k1,14667:31084221,42467842:193823 -k1,14667:32583029,42467842:0 -) -(1,14668:6630773,43332922:25952256,513147,134348 -k1,14667:7184955,43332922:198322 -k1,14667:9581355,43332922:198322 -k1,14667:12976523,43332922:198322 -k1,14667:15660625,43332922:198321 -k1,14667:16518239,43332922:198322 -k1,14667:19937656,43332922:198322 -k1,14667:20763813,43332922:198322 -k1,14667:21981220,43332922:198322 -k1,14667:23485675,43332922:198322 -k1,14667:25224747,43332922:198321 -k1,14667:26291421,43332922:198322 -k1,14667:28776950,43332922:198322 -k1,14667:30999024,43332922:198322 -k1,14667:32583029,43332922:0 -) -(1,14668:6630773,44198002:25952256,505283,102891 -k1,14667:10043514,44198002:192957 -k1,14667:10852508,44198002:192956 -k1,14667:12064550,44198002:192957 -k1,14667:14498838,44198002:192957 -k1,14667:16232545,44198002:192956 -k1,14667:17293854,44198002:192957 -k1,14667:18302078,44198002:192956 -k1,14667:19561306,44198002:192957 -k1,14667:21778015,44198002:192957 -k1,14667:24024869,44198002:192956 -k1,14667:27263939,44198002:192957 -k1,14667:28648341,44198002:192957 -k1,14667:30371563,44198002:192956 -k1,14667:31215948,44198002:192957 -k1,14667:32583029,44198002:0 -) -(1,14668:6630773,45063082:25952256,513147,134348 -g1,14667:7777653,45063082 -g1,14667:10739225,45063082 -g1,14667:12506731,45063082 -g1,14667:13365252,45063082 -g1,14667:16578482,45063082 -k1,14668:32583029,45063082:14313063 -g1,14668:32583029,45063082 -) -] -(1,14670:32583029,45706769:0,0,0 -g1,14670:32583029,45706769 -) -) -] -(1,14670:6630773,47279633:25952256,0,0 -h1,14670:6630773,47279633:25952256,0,0 -) -] -(1,14670:4262630,4025873:0,0,0 -[1,14670:-473656,4025873:0,0,0 -(1,14670:-473656,-710413:0,0,0 -(1,14670:-473656,-710413:0,0,0 -g1,14670:-473656,-710413 -) -g1,14670:-473656,-710413 -) -] -) -] -!29355 -}235 -Input:2498:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2499:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2500:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +g1,14668:6630773,4812305 +k1,14668:19575446,4812305:11749296 +g1,14668:21198117,4812305 +g1,14668:21985204,4812305 +g1,14668:24539797,4812305 +g1,14668:25949476,4812305 +g1,14668:28728857,4812305 +g1,14668:29852144,4812305 +) +) +] +[1,14668:6630773,45706769:25952256,40108032,0 +(1,14668:6630773,45706769:25952256,40108032,0 +(1,14668:6630773,45706769:0,0,0 +g1,14668:6630773,45706769 +) +[1,14668:6630773,45706769:25952256,40108032,0 +v1,14652:6630773,6254097:0,393216,0 +(1,14652:6630773,20310014:25952256,14449133,0 +g1,14652:6630773,20310014 +g1,14652:6237557,20310014 +r1,14668:6368629,20310014:131072,14449133,0 +g1,14652:6567858,20310014 +g1,14652:6764466,20310014 +[1,14652:6764466,20310014:25818563,14449133,0 +(1,14614:6764466,6374028:25818563,513147,126483 +k1,14613:9530237,6374028:153506 +k1,14613:14373500,6374028:153507 +k1,14613:16981329,6374028:153506 +k1,14613:18821733,6374028:153507 +(1,14613:18821733,6374028:0,452978,115847 +r1,14668:20235134,6374028:1413401,568825,115847 +k1,14613:18821733,6374028:-1413401 +) +(1,14613:18821733,6374028:1413401,452978,115847 +k1,14613:18821733,6374028:3277 +h1,14613:20231857,6374028:0,411205,112570 +) +k1,14613:20388640,6374028:153506 +k1,14613:23244195,6374028:153506 +k1,14613:24416787,6374028:153507 +k1,14613:27056074,6374028:153506 +k1,14613:27868873,6374028:153507 +k1,14613:31069803,6374028:153506 +k1,14613:32583029,6374028:0 +) +(1,14614:6764466,7239108:25818563,513147,134348 +g1,14613:8155140,7239108 +(1,14613:8155140,7239108:0,452978,122846 +r1,14668:11327100,7239108:3171960,575824,122846 +k1,14613:8155140,7239108:-3171960 +) +(1,14613:8155140,7239108:3171960,452978,122846 +k1,14613:8155140,7239108:3277 +h1,14613:11323823,7239108:0,411205,112570 +) +g1,14613:11526329,7239108 +g1,14613:12744643,7239108 +g1,14613:15364117,7239108 +g1,14613:16246231,7239108 +g1,14613:17511731,7239108 +g1,14613:18326998,7239108 +g1,14613:20782632,7239108 +g1,14613:21337721,7239108 +k1,14614:32583029,7239108:8580615 +g1,14614:32583029,7239108 +) +v1,14616:6764466,7923963:0,393216,0 +(1,14650:6764466,20113406:25818563,12582659,196608 +g1,14650:6764466,20113406 +g1,14650:6764466,20113406 +g1,14650:6567858,20113406 +(1,14650:6567858,20113406:0,12582659,196608 +r1,14668:32779637,20113406:26211779,12779267,196608 +k1,14650:6567857,20113406:-26211780 +) +(1,14650:6567858,20113406:26211779,12582659,196608 +[1,14650:6764466,20113406:25818563,12386051,0 +(1,14618:6764466,8158400:25818563,431045,79822 +(1,14617:6764466,8158400:0,0,0 +g1,14617:6764466,8158400 +g1,14617:6764466,8158400 +g1,14617:6436786,8158400 +(1,14617:6436786,8158400:0,0,0 +) +g1,14617:6764466,8158400 +) +k1,14618:6764466,8158400:0 +h1,14618:10415960,8158400:0,0,0 +k1,14618:32583028,8158400:22167068 +g1,14618:32583028,8158400 +) +(1,14622:6764466,8974327:25818563,424439,112852 +(1,14620:6764466,8974327:0,0,0 +g1,14620:6764466,8974327 +g1,14620:6764466,8974327 +g1,14620:6436786,8974327 +(1,14620:6436786,8974327:0,0,0 +) +g1,14620:6764466,8974327 +) +g1,14622:7760328,8974327 +g1,14622:9088144,8974327 +g1,14622:11079868,8974327 +h1,14622:12407684,8974327:0,0,0 +k1,14622:32583028,8974327:20175344 +g1,14622:32583028,8974327 +) +(1,14624:6764466,9790254:25818563,431045,79822 +(1,14623:6764466,9790254:0,0,0 +g1,14623:6764466,9790254 +g1,14623:6764466,9790254 +g1,14623:6436786,9790254 +(1,14623:6436786,9790254:0,0,0 +) +g1,14623:6764466,9790254 +) +k1,14624:6764466,9790254:0 +h1,14624:10415960,9790254:0,0,0 +k1,14624:32583028,9790254:22167068 +g1,14624:32583028,9790254 +) +(1,14637:6764466,10606181:25818563,431045,79822 +(1,14626:6764466,10606181:0,0,0 +g1,14626:6764466,10606181 +g1,14626:6764466,10606181 +g1,14626:6436786,10606181 +(1,14626:6436786,10606181:0,0,0 +) +g1,14626:6764466,10606181 +) +g1,14637:7760328,10606181 +g1,14637:8092282,10606181 +g1,14637:9420098,10606181 +g1,14637:14399407,10606181 +g1,14637:14731361,10606181 +g1,14637:15063315,10606181 +g1,14637:15395269,10606181 +g1,14637:15727223,10606181 +g1,14637:16059177,10606181 +g1,14637:20042624,10606181 +g1,14637:20374578,10606181 +g1,14637:20706532,10606181 +g1,14637:21038486,10606181 +g1,14637:21370440,10606181 +g1,14637:21702394,10606181 +g1,14637:22034348,10606181 +g1,14637:22366302,10606181 +g1,14637:22698256,10606181 +h1,14637:27677565,10606181:0,0,0 +k1,14637:32583029,10606181:4905464 +g1,14637:32583029,10606181 +) +(1,14637:6764466,11291036:25818563,431045,79822 +h1,14637:6764466,11291036:0,0,0 +g1,14637:7760328,11291036 +g1,14637:8092282,11291036 +g1,14637:9420098,11291036 +g1,14637:12739637,11291036 +g1,14637:13071591,11291036 +g1,14637:13403545,11291036 +g1,14637:13735499,11291036 +g1,14637:14067453,11291036 +g1,14637:14399407,11291036 +g1,14637:14731361,11291036 +g1,14637:15063315,11291036 +g1,14637:15395269,11291036 +g1,14637:15727223,11291036 +g1,14637:16059177,11291036 +g1,14637:17386993,11291036 +g1,14637:17718947,11291036 +g1,14637:18050901,11291036 +g1,14637:18382855,11291036 +g1,14637:18714809,11291036 +g1,14637:19046763,11291036 +g1,14637:19378717,11291036 +g1,14637:19710671,11291036 +g1,14637:20042625,11291036 +g1,14637:20374579,11291036 +g1,14637:20706533,11291036 +g1,14637:21038487,11291036 +g1,14637:21370441,11291036 +g1,14637:21702395,11291036 +g1,14637:22034349,11291036 +g1,14637:22366303,11291036 +g1,14637:22698257,11291036 +h1,14637:24689981,11291036:0,0,0 +k1,14637:32583029,11291036:7893048 +g1,14637:32583029,11291036 +) +(1,14637:6764466,11975891:25818563,431045,106246 +h1,14637:6764466,11975891:0,0,0 +g1,14637:7760328,11975891 +g1,14637:8092282,11975891 +g1,14637:9420098,11975891 +g1,14637:11079868,11975891 +g1,14637:11411822,11975891 +g1,14637:11743776,11975891 +g1,14637:12075730,11975891 +g1,14637:12407684,11975891 +g1,14637:12739638,11975891 +g1,14637:13071592,11975891 +g1,14637:13403546,11975891 +g1,14637:13735500,11975891 +g1,14637:14067454,11975891 +g1,14637:14399408,11975891 +g1,14637:14731362,11975891 +g1,14637:15063316,11975891 +g1,14637:15395270,11975891 +g1,14637:15727224,11975891 +g1,14637:16059178,11975891 +g1,14637:19046763,11975891 +g1,14637:19378717,11975891 +g1,14637:19710671,11975891 +g1,14637:20042625,11975891 +g1,14637:20374579,11975891 +g1,14637:20706533,11975891 +g1,14637:21038487,11975891 +g1,14637:21370441,11975891 +g1,14637:21702395,11975891 +g1,14637:22034349,11975891 +g1,14637:22366303,11975891 +g1,14637:22698257,11975891 +h1,14637:29005381,11975891:0,0,0 +k1,14637:32583029,11975891:3577648 +g1,14637:32583029,11975891 +) +(1,14637:6764466,12660746:25818563,424439,79822 +h1,14637:6764466,12660746:0,0,0 +g1,14637:7760328,12660746 +g1,14637:9420098,12660746 +g1,14637:13071591,12660746 +g1,14637:13403545,12660746 +g1,14637:13735499,12660746 +g1,14637:14067453,12660746 +g1,14637:14399407,12660746 +g1,14637:14731361,12660746 +g1,14637:15063315,12660746 +g1,14637:15395269,12660746 +g1,14637:15727223,12660746 +g1,14637:16059177,12660746 +g1,14637:18050901,12660746 +g1,14637:18382855,12660746 +g1,14637:18714809,12660746 +g1,14637:19046763,12660746 +g1,14637:19378717,12660746 +g1,14637:19710671,12660746 +g1,14637:20042625,12660746 +g1,14637:20374579,12660746 +g1,14637:20706533,12660746 +g1,14637:21038487,12660746 +g1,14637:21370441,12660746 +g1,14637:21702395,12660746 +g1,14637:22034349,12660746 +g1,14637:22366303,12660746 +g1,14637:22698257,12660746 +h1,14637:27677566,12660746:0,0,0 +k1,14637:32583029,12660746:4905463 +g1,14637:32583029,12660746 +) +(1,14637:6764466,13345601:25818563,424439,112852 +h1,14637:6764466,13345601:0,0,0 +g1,14637:7760328,13345601 +g1,14637:9420098,13345601 +g1,14637:11743776,13345601 +g1,14637:12075730,13345601 +g1,14637:12407684,13345601 +g1,14637:12739638,13345601 +g1,14637:13071592,13345601 +g1,14637:13403546,13345601 +g1,14637:13735500,13345601 +g1,14637:14067454,13345601 +g1,14637:14399408,13345601 +g1,14637:14731362,13345601 +g1,14637:15063316,13345601 +g1,14637:15395270,13345601 +g1,14637:15727224,13345601 +g1,14637:16059178,13345601 +g1,14637:19378717,13345601 +g1,14637:19710671,13345601 +g1,14637:20042625,13345601 +g1,14637:20374579,13345601 +g1,14637:20706533,13345601 +g1,14637:21038487,13345601 +g1,14637:21370441,13345601 +g1,14637:21702395,13345601 +g1,14637:22034349,13345601 +g1,14637:22366303,13345601 +g1,14637:22698257,13345601 +h1,14637:27677566,13345601:0,0,0 +k1,14637:32583029,13345601:4905463 +g1,14637:32583029,13345601 +) +(1,14637:6764466,14030456:25818563,431045,106246 +h1,14637:6764466,14030456:0,0,0 +g1,14637:7760328,14030456 +g1,14637:9420098,14030456 +g1,14637:14067453,14030456 +g1,14637:14399407,14030456 +g1,14637:14731361,14030456 +g1,14637:15063315,14030456 +g1,14637:15395269,14030456 +g1,14637:15727223,14030456 +g1,14637:16059177,14030456 +g1,14637:19378716,14030456 +g1,14637:19710670,14030456 +g1,14637:20042624,14030456 +g1,14637:20374578,14030456 +g1,14637:20706532,14030456 +g1,14637:21038486,14030456 +g1,14637:21370440,14030456 +g1,14637:21702394,14030456 +g1,14637:22034348,14030456 +g1,14637:22366302,14030456 +g1,14637:22698256,14030456 +h1,14637:23694118,14030456:0,0,0 +k1,14637:32583029,14030456:8888911 +g1,14637:32583029,14030456 +) +(1,14637:6764466,14715311:25818563,424439,112852 +h1,14637:6764466,14715311:0,0,0 +g1,14637:7760328,14715311 +g1,14637:9420098,14715311 +g1,14637:13403545,14715311 +g1,14637:13735499,14715311 +g1,14637:14067453,14715311 +g1,14637:14399407,14715311 +g1,14637:14731361,14715311 +g1,14637:15063315,14715311 +g1,14637:15395269,14715311 +g1,14637:15727223,14715311 +g1,14637:16059177,14715311 +g1,14637:19710670,14715311 +g1,14637:20042624,14715311 +g1,14637:20374578,14715311 +g1,14637:20706532,14715311 +g1,14637:21038486,14715311 +g1,14637:21370440,14715311 +g1,14637:21702394,14715311 +g1,14637:22034348,14715311 +g1,14637:22366302,14715311 +g1,14637:22698256,14715311 +h1,14637:25021934,14715311:0,0,0 +k1,14637:32583029,14715311:7561095 +g1,14637:32583029,14715311 +) +(1,14637:6764466,15400166:25818563,431045,79822 +h1,14637:6764466,15400166:0,0,0 +g1,14637:7760328,15400166 +g1,14637:9420098,15400166 +g1,14637:11743776,15400166 +g1,14637:12075730,15400166 +g1,14637:12407684,15400166 +g1,14637:12739638,15400166 +g1,14637:13071592,15400166 +g1,14637:13403546,15400166 +g1,14637:13735500,15400166 +g1,14637:14067454,15400166 +g1,14637:14399408,15400166 +g1,14637:14731362,15400166 +g1,14637:15063316,15400166 +g1,14637:15395270,15400166 +g1,14637:15727224,15400166 +g1,14637:16059178,15400166 +g1,14637:19378717,15400166 +g1,14637:19710671,15400166 +g1,14637:20042625,15400166 +g1,14637:20374579,15400166 +g1,14637:20706533,15400166 +g1,14637:21038487,15400166 +g1,14637:21370441,15400166 +g1,14637:21702395,15400166 +g1,14637:22034349,15400166 +g1,14637:22366303,15400166 +g1,14637:22698257,15400166 +h1,14637:25021935,15400166:0,0,0 +k1,14637:32583029,15400166:7561094 +g1,14637:32583029,15400166 +) +(1,14637:6764466,16085021:25818563,431045,79822 +h1,14637:6764466,16085021:0,0,0 +g1,14637:7760328,16085021 +g1,14637:9420098,16085021 +g1,14637:11743776,16085021 +g1,14637:12075730,16085021 +g1,14637:12407684,16085021 +g1,14637:12739638,16085021 +g1,14637:13071592,16085021 +g1,14637:13403546,16085021 +g1,14637:13735500,16085021 +g1,14637:14067454,16085021 +g1,14637:14399408,16085021 +g1,14637:14731362,16085021 +g1,14637:15063316,16085021 +g1,14637:15395270,16085021 +g1,14637:15727224,16085021 +g1,14637:16059178,16085021 +g1,14637:19046763,16085021 +g1,14637:19378717,16085021 +g1,14637:19710671,16085021 +g1,14637:20042625,16085021 +g1,14637:20374579,16085021 +g1,14637:20706533,16085021 +g1,14637:21038487,16085021 +g1,14637:21370441,16085021 +g1,14637:21702395,16085021 +g1,14637:22034349,16085021 +g1,14637:22366303,16085021 +g1,14637:22698257,16085021 +h1,14637:25685842,16085021:0,0,0 +k1,14637:32583029,16085021:6897187 +g1,14637:32583029,16085021 +) +(1,14637:6764466,16769876:25818563,424439,79822 +h1,14637:6764466,16769876:0,0,0 +g1,14637:7760328,16769876 +g1,14637:9420098,16769876 +g1,14637:12407683,16769876 +g1,14637:12739637,16769876 +g1,14637:13071591,16769876 +g1,14637:13403545,16769876 +g1,14637:13735499,16769876 +g1,14637:14067453,16769876 +g1,14637:14399407,16769876 +g1,14637:14731361,16769876 +g1,14637:15063315,16769876 +g1,14637:15395269,16769876 +g1,14637:15727223,16769876 +g1,14637:16059177,16769876 +g1,14637:20042624,16769876 +g1,14637:20374578,16769876 +g1,14637:20706532,16769876 +g1,14637:21038486,16769876 +g1,14637:21370440,16769876 +g1,14637:21702394,16769876 +g1,14637:22034348,16769876 +g1,14637:22366302,16769876 +g1,14637:22698256,16769876 +h1,14637:25685841,16769876:0,0,0 +k1,14637:32583029,16769876:6897188 +g1,14637:32583029,16769876 +) +(1,14639:6764466,17585803:25818563,431045,112852 +(1,14638:6764466,17585803:0,0,0 +g1,14638:6764466,17585803 +g1,14638:6764466,17585803 +g1,14638:6436786,17585803 +(1,14638:6436786,17585803:0,0,0 +) +g1,14638:6764466,17585803 +) +h1,14639:11411821,17585803:0,0,0 +k1,14639:32583029,17585803:21171208 +g1,14639:32583029,17585803 +) +(1,14643:6764466,18401730:25818563,424439,79822 +(1,14641:6764466,18401730:0,0,0 +g1,14641:6764466,18401730 +g1,14641:6764466,18401730 +g1,14641:6436786,18401730 +(1,14641:6436786,18401730:0,0,0 +) +g1,14641:6764466,18401730 +) +g1,14643:7760328,18401730 +g1,14643:9088144,18401730 +h1,14643:10415960,18401730:0,0,0 +k1,14643:32583028,18401730:22167068 +g1,14643:32583028,18401730 +) +(1,14645:6764466,19217657:25818563,431045,33029 +(1,14644:6764466,19217657:0,0,0 +g1,14644:6764466,19217657 +g1,14644:6764466,19217657 +g1,14644:6436786,19217657 +(1,14644:6436786,19217657:0,0,0 +) +g1,14644:6764466,19217657 +) +h1,14645:9752052,19217657:0,0,0 +k1,14645:32583028,19217657:22830976 +g1,14645:32583028,19217657 +) +(1,14649:6764466,20033584:25818563,424439,79822 +(1,14647:6764466,20033584:0,0,0 +g1,14647:6764466,20033584 +g1,14647:6764466,20033584 +g1,14647:6436786,20033584 +(1,14647:6436786,20033584:0,0,0 +) +g1,14647:6764466,20033584 +) +g1,14649:7760328,20033584 +g1,14649:9088144,20033584 +h1,14649:9420098,20033584:0,0,0 +k1,14649:32583030,20033584:23162932 +g1,14649:32583030,20033584 +) +] +) +g1,14650:32583029,20113406 +g1,14650:6764466,20113406 +g1,14650:6764466,20113406 +g1,14650:32583029,20113406 +g1,14650:32583029,20113406 +) +h1,14650:6764466,20310014:0,0,0 +] +g1,14652:32583029,20310014 +) +h1,14652:6630773,20310014:0,0,0 +(1,14655:6630773,21175094:25952256,513147,134348 +h1,14654:6630773,21175094:983040,0,0 +k1,14654:10547092,21175094:205015 +(1,14654:10547092,21175094:0,452978,115847 +r1,14668:13367341,21175094:2820249,568825,115847 +k1,14654:10547092,21175094:-2820249 +) +(1,14654:10547092,21175094:2820249,452978,115847 +k1,14654:10547092,21175094:3277 +h1,14654:13364064,21175094:0,411205,112570 +) +k1,14654:13572357,21175094:205016 +k1,14654:14968817,21175094:205015 +(1,14654:14968817,21175094:0,452978,115847 +r1,14668:17085642,21175094:2116825,568825,115847 +k1,14654:14968817,21175094:-2116825 +) +(1,14654:14968817,21175094:2116825,452978,115847 +k1,14654:14968817,21175094:3277 +h1,14654:17082365,21175094:0,411205,112570 +) +k1,14654:17464327,21175094:205015 +k1,14654:20759365,21175094:205015 +k1,14654:21912032,21175094:205016 +(1,14654:21912032,21175094:0,452978,115847 +r1,14668:23325433,21175094:1413401,568825,115847 +k1,14654:21912032,21175094:-1413401 +) +(1,14654:21912032,21175094:1413401,452978,115847 +k1,14654:21912032,21175094:3277 +h1,14654:23322156,21175094:0,411205,112570 +) +k1,14654:23530448,21175094:205015 +k1,14654:24351501,21175094:205015 +k1,14654:26835203,21175094:205015 +h1,14654:28377921,21175094:0,0,0 +k1,14654:28582937,21175094:205016 +k1,14654:29597322,21175094:205015 +k1,14654:31300490,21175094:205015 +h1,14654:32495867,21175094:0,0,0 +k1,14654:32583029,21175094:0 +) +(1,14655:6630773,22040174:25952256,513147,122846 +g1,14654:7934284,22040174 +g1,14654:8881279,22040174 +g1,14654:10366324,22040174 +g1,14654:12078779,22040174 +g1,14654:13671959,22040174 +g1,14654:16189196,22040174 +g1,14654:18100881,22040174 +g1,14654:19694061,22040174 +(1,14654:19694061,22040174:0,452978,122846 +r1,14668:21459174,22040174:1765113,575824,122846 +k1,14654:19694061,22040174:-1765113 +) +(1,14654:19694061,22040174:1765113,452978,122846 +k1,14654:19694061,22040174:3277 +h1,14654:21455897,22040174:0,411205,112570 +) +k1,14655:32583029,22040174:11071427 +g1,14655:32583029,22040174 +) +(1,14658:6630773,24871334:25952256,32768,229376 +(1,14658:6630773,24871334:0,32768,229376 +(1,14658:6630773,24871334:5505024,32768,229376 +r1,14668:12135797,24871334:5505024,262144,229376 +) +k1,14658:6630773,24871334:-5505024 +) +(1,14658:6630773,24871334:25952256,32768,0 +r1,14668:32583029,24871334:25952256,32768,0 +) +) +(1,14658:6630773,26503186:25952256,606339,161218 +(1,14658:6630773,26503186:2464678,573309,0 +g1,14658:6630773,26503186 +g1,14658:9095451,26503186 +) +g1,14658:13659116,26503186 +k1,14658:32583029,26503186:14560002 +g1,14658:32583029,26503186 +) +(1,14664:6630773,27761482:25952256,505283,134348 +k1,14663:7613309,27761482:222318 +k1,14663:11129467,27761482:222318 +k1,14663:11809882,27761482:222318 +k1,14663:12563698,27761482:222319 +k1,14663:14780932,27761482:222318 +k1,14663:18253180,27761482:222318 +k1,14663:19078429,27761482:222318 +k1,14663:20286408,27761482:222318 +k1,14663:24161703,27761482:222318 +k1,14663:26392045,27761482:222319 +k1,14663:28625008,27761482:222318 +k1,14663:29838886,27761482:222318 +k1,14663:31799219,27761482:222318 +k1,14664:32583029,27761482:0 +) +(1,14664:6630773,28626562:25952256,513147,134348 +k1,14663:9253524,28626562:163840 +k1,14663:11975889,28626562:163839 +k1,14663:14074352,28626562:163840 +k1,14663:15257277,28626562:163840 +k1,14663:17408824,28626562:163840 +k1,14663:18224091,28626562:163839 +k1,14663:22633353,28626562:163840 +k1,14663:24178037,28626562:163840 +k1,14663:24873374,28626562:163840 +k1,14663:27799556,28626562:163839 +k1,14663:29531017,28626562:163840 +k1,14663:30713942,28626562:163840 +k1,14663:32583029,28626562:0 +) +(1,14664:6630773,29491642:25952256,513147,134348 +k1,14663:7465865,29491642:175800 +k1,14663:8660750,29491642:175800 +k1,14663:11532046,29491642:175800 +k1,14663:13405885,29491642:175801 +k1,14663:17608872,29491642:175800 +k1,14663:21687996,29491642:175800 +k1,14663:22523088,29491642:175800 +k1,14663:23830695,29491642:175800 +k1,14663:26131828,29491642:175800 +k1,14663:27299189,29491642:175801 +k1,14663:29287715,29491642:175800 +k1,14663:31955194,29491642:175800 +k1,14663:32583029,29491642:0 +) +(1,14664:6630773,30356722:25952256,505283,126483 +k1,14663:9586512,30356722:150798 +k1,14663:10756396,30356722:150799 +k1,14663:16418116,30356722:150798 +k1,14663:19358782,30356722:150798 +k1,14663:21022806,30356722:150798 +k1,14663:21789643,30356722:150799 +k1,14663:25094033,30356722:150798 +k1,14663:26436276,30356722:150798 +k1,14663:27606160,30356722:150799 +k1,14663:30954460,30356722:150798 +k1,14664:32583029,30356722:0 +) +(1,14664:6630773,31221802:25952256,505283,134348 +g1,14663:8097468,31221802 +g1,14663:9809923,31221802 +g1,14663:10660580,31221802 +g1,14663:13529090,31221802 +g1,14663:15978170,31221802 +g1,14663:17168959,31221802 +g1,14663:19686196,31221802 +g1,14663:21169931,31221802 +g1,14663:22360720,31221802 +g1,14663:25809879,31221802 +g1,14663:26625146,31221802 +g1,14663:28333014,31221802 +k1,14664:32583029,31221802:586553 +g1,14664:32583029,31221802 +) +(1,14666:6630773,32086882:25952256,513147,134348 +h1,14665:6630773,32086882:983040,0,0 +k1,14665:9660502,32086882:271974 +k1,14665:12977935,32086882:271975 +k1,14665:16691204,32086882:271974 +k1,14665:18463952,32086882:271974 +k1,14665:19683578,32086882:271975 +k1,14665:22211957,32086882:271974 +k1,14665:25530044,32086882:271974 +k1,14665:26749669,32086882:271974 +k1,14665:28040729,32086882:271975 +k1,14665:31923737,32086882:271974 +k1,14665:32583029,32086882:0 +) +(1,14666:6630773,32951962:25952256,513147,126483 +k1,14665:8655180,32951962:211681 +k1,14665:11358540,32951962:211681 +k1,14665:12186260,32951962:211682 +k1,14665:13417026,32951962:211681 +k1,14665:14995788,32951962:211681 +k1,14665:15866761,32951962:211681 +k1,14665:19328373,32951962:211682 +k1,14665:22031733,32951962:211681 +k1,14665:23262499,32951962:211681 +k1,14665:26520293,32951962:211681 +k1,14665:27723535,32951962:211682 +k1,14665:30727050,32951962:211681 +k1,14665:31700259,32951962:211681 +k1,14666:32583029,32951962:0 +) +(1,14666:6630773,33817042:25952256,505283,126483 +k1,14665:11002534,33817042:284936 +k1,14665:12329492,33817042:284936 +k1,14665:15659886,33817042:284936 +k1,14665:19061059,33817042:284936 +k1,14665:22392107,33817042:284935 +k1,14665:23781325,33817042:284936 +k1,14665:26195526,33817042:284936 +k1,14665:27228228,33817042:284936 +k1,14665:30304998,33817042:284936 +k1,14665:32583029,33817042:0 +) +(1,14666:6630773,34682122:25952256,513147,134348 +k1,14665:7564125,34682122:317314 +k1,14665:11793937,34682122:317313 +k1,14665:13808633,34682122:317314 +k1,14665:16673330,34682122:317313 +k1,14665:17752172,34682122:317314 +k1,14665:19088570,34682122:317313 +k1,14665:22843903,34682122:317314 +k1,14665:23820508,34682122:317313 +k1,14665:26569863,34682122:317314 +k1,14665:28575384,34682122:317314 +k1,14665:31708779,34682122:317313 +k1,14666:32583029,34682122:0 +) +(1,14666:6630773,35547202:25952256,505283,134348 +k1,14665:9197360,35547202:244646 +k1,14665:10251375,35547202:244645 +k1,14665:11994174,35547202:244646 +h1,14665:12791092,35547202:0,0,0 +k1,14665:13416502,35547202:244646 +k1,14665:14703170,35547202:244646 +k1,14665:19967873,35547202:244645 +k1,14665:23004353,35547202:244646 +k1,14665:25807525,35547202:244646 +k1,14665:28942963,35547202:244645 +k1,14665:30884991,35547202:244646 +k1,14665:32583029,35547202:0 +) +(1,14666:6630773,36412282:25952256,513147,134348 +k1,14665:7921236,36412282:271378 +k1,14665:11303609,36412282:271379 +k1,14665:12932238,36412282:271378 +k1,14665:13855045,36412282:271379 +k1,14665:16973307,36412282:271378 +k1,14665:18705484,36412282:271379 +k1,14665:19747565,36412282:271378 +k1,14665:22276659,36412282:271379 +k1,14665:23539597,36412282:271378 +k1,14665:26736503,36412282:271379 +k1,14665:29958967,36412282:271378 +k1,14665:32583029,36412282:0 +) +(1,14666:6630773,37277362:25952256,513147,134348 +k1,14665:10325802,37277362:253734 +k1,14665:13094151,37277362:253733 +k1,14665:13999313,37277362:253734 +k1,14665:16882350,37277362:253733 +k1,14665:17906787,37277362:253734 +k1,14665:19996839,37277362:253733 +k1,14665:22047570,37277362:253734 +k1,14665:23248954,37277362:253733 +k1,14665:24521773,37277362:253734 +k1,14665:26786151,37277362:253733 +k1,14665:27699177,37277362:253734 +k1,14665:28971995,37277362:253733 +k1,14665:32583029,37277362:0 +) +(1,14666:6630773,38142442:25952256,513147,134348 +k1,14665:7490465,38142442:208264 +k1,14665:8446495,38142442:208264 +k1,14665:11964982,38142442:208264 +k1,14665:12529106,38142442:208264 +k1,14665:14534367,38142442:208264 +k1,14665:18047612,38142442:208264 +k1,14665:21016909,38142442:208265 +k1,14665:21986701,38142442:208264 +k1,14665:23214050,38142442:208264 +k1,14665:24976828,38142442:208264 +k1,14665:25812927,38142442:208264 +k1,14665:27472813,38142442:208264 +k1,14665:30571870,38142442:208264 +k1,14665:31799219,38142442:208264 +k1,14666:32583029,38142442:0 +) +(1,14666:6630773,39007522:25952256,505283,134348 +k1,14665:8941119,39007522:272176 +k1,14665:12005129,39007522:272176 +k1,14665:12893343,39007522:272176 +k1,14665:14184603,39007522:272175 +k1,14665:17211257,39007522:272176 +k1,14665:20200556,39007522:272176 +k1,14665:21004229,39007522:272176 +k1,14665:22789631,39007522:272176 +k1,14665:23747969,39007522:272176 +k1,14665:25039229,39007522:272175 +k1,14665:27789977,39007522:272176 +k1,14665:29916167,39007522:272176 +k1,14665:31379788,39007522:272176 +k1,14665:32583029,39007522:0 +) +(1,14666:6630773,39872602:25952256,513147,126483 +k1,14665:9323798,39872602:247877 +k1,14665:10103173,39872602:247878 +k1,14665:13135675,39872602:247877 +k1,14665:14540263,39872602:247878 +k1,14665:16213548,39872602:247877 +k1,14665:17974651,39872602:247877 +k1,14665:20868873,39872602:247878 +k1,14665:22313437,39872602:247877 +k1,14665:26255578,39872602:247877 +k1,14665:27034953,39872602:247878 +k1,14665:28567336,39872602:247877 +k1,14665:30328440,39872602:247878 +k1,14665:30932177,39872602:247877 +k1,14665:32583029,39872602:0 +) +(1,14666:6630773,40737682:25952256,513147,134348 +k1,14665:9333314,40737682:216760 +k1,14665:10209367,40737682:216761 +k1,14665:13473551,40737682:216760 +k1,14665:14709396,40737682:216760 +k1,14665:18037150,40737682:216760 +k1,14665:19386373,40737682:216761 +k1,14665:22460503,40737682:216760 +k1,14665:23944729,40737682:216760 +k1,14665:24517349,40737682:216760 +k1,14665:27346375,40737682:216761 +k1,14665:28847641,40737682:216760 +k1,14665:31835263,40737682:216760 +k1,14665:32583029,40737682:0 +) +(1,14666:6630773,41602762:25952256,513147,126483 +k1,14665:9867175,41602762:186356 +k1,14665:12502611,41602762:186356 +k1,14665:13316803,41602762:186357 +k1,14665:14699846,41602762:186356 +k1,14665:16078302,41602762:186356 +k1,14665:17133010,41602762:186356 +k1,14665:18721836,41602762:186356 +k1,14665:21625316,41602762:186357 +k1,14665:23509710,41602762:186356 +k1,14665:24715151,41602762:186356 +k1,14665:29169867,41602762:186356 +k1,14665:29972262,41602762:186357 +k1,14665:31177703,41602762:186356 +k1,14665:32051532,41602762:186356 +k1,14665:32583029,41602762:0 +) +(1,14666:6630773,42467842:25952256,513147,134348 +k1,14665:9176683,42467842:193823 +k1,14665:10812952,42467842:193822 +k1,14665:11362635,42467842:193823 +k1,14665:13754535,42467842:193822 +k1,14665:17195012,42467842:193823 +k1,14665:18071720,42467842:193823 +k1,14665:19963580,42467842:193822 +k1,14665:20966773,42467842:193823 +k1,14665:25113727,42467842:193822 +k1,14665:26408555,42467842:193823 +k1,14665:28112327,42467842:193822 +k1,14665:31084221,42467842:193823 +k1,14665:32583029,42467842:0 +) +(1,14666:6630773,43332922:25952256,513147,134348 +k1,14665:7184955,43332922:198322 +k1,14665:9581355,43332922:198322 +k1,14665:12976523,43332922:198322 +k1,14665:15660625,43332922:198321 +k1,14665:16518239,43332922:198322 +k1,14665:19937656,43332922:198322 +k1,14665:20763813,43332922:198322 +k1,14665:21981220,43332922:198322 +k1,14665:23485675,43332922:198322 +k1,14665:25224747,43332922:198321 +k1,14665:26291421,43332922:198322 +k1,14665:28776950,43332922:198322 +k1,14665:30999024,43332922:198322 +k1,14665:32583029,43332922:0 +) +(1,14666:6630773,44198002:25952256,505283,102891 +k1,14665:10043514,44198002:192957 +k1,14665:10852508,44198002:192956 +k1,14665:12064550,44198002:192957 +k1,14665:14498838,44198002:192957 +k1,14665:16232545,44198002:192956 +k1,14665:17293854,44198002:192957 +k1,14665:18302078,44198002:192956 +k1,14665:19561306,44198002:192957 +k1,14665:21778015,44198002:192957 +k1,14665:24024869,44198002:192956 +k1,14665:27263939,44198002:192957 +k1,14665:28648341,44198002:192957 +k1,14665:30371563,44198002:192956 +k1,14665:31215948,44198002:192957 +k1,14665:32583029,44198002:0 +) +(1,14666:6630773,45063082:25952256,513147,134348 +g1,14665:7777653,45063082 +g1,14665:10739225,45063082 +g1,14665:12506731,45063082 +g1,14665:13365252,45063082 +g1,14665:16578482,45063082 +k1,14666:32583029,45063082:14313063 +g1,14666:32583029,45063082 +) +] +(1,14668:32583029,45706769:0,0,0 +g1,14668:32583029,45706769 +) +) +] +(1,14668:6630773,47279633:25952256,0,0 +h1,14668:6630773,47279633:25952256,0,0 +) +] +(1,14668:4262630,4025873:0,0,0 +[1,14668:-473656,4025873:0,0,0 +(1,14668:-473656,-710413:0,0,0 +(1,14668:-473656,-710413:0,0,0 +g1,14668:-473656,-710413 +) +g1,14668:-473656,-710413 +) +] +) +] +!29408 +}236 Input:2501:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2502:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2503:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -259531,142 +259728,207 @@ Input:2524:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2525:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2526:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2527:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2528:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2529:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2530:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2772 -{236 -[1,14715:4262630,47279633:28320399,43253760,0 -(1,14715:4262630,4025873:0,0,0 -[1,14715:-473656,4025873:0,0,0 -(1,14715:-473656,-710413:0,0,0 -(1,14715:-473656,-644877:0,0,0 -k1,14715:-473656,-644877:-65536 +{237 +[1,14713:4262630,47279633:28320399,43253760,0 +(1,14713:4262630,4025873:0,0,0 +[1,14713:-473656,4025873:0,0,0 +(1,14713:-473656,-710413:0,0,0 +(1,14713:-473656,-644877:0,0,0 +k1,14713:-473656,-644877:-65536 ) -(1,14715:-473656,4736287:0,0,0 -k1,14715:-473656,4736287:5209943 +(1,14713:-473656,4736287:0,0,0 +k1,14713:-473656,4736287:5209943 ) -g1,14715:-473656,-710413 +g1,14713:-473656,-710413 ) ] ) -[1,14715:6630773,47279633:25952256,43253760,0 -[1,14715:6630773,4812305:25952256,786432,0 -(1,14715:6630773,4812305:25952256,485622,134348 -(1,14715:6630773,4812305:25952256,485622,134348 -g1,14715:3078558,4812305 -[1,14715:3078558,4812305:0,0,0 -(1,14715:3078558,2439708:0,1703936,0 -k1,14715:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14715:2537886,2439708:1179648,16384,0 +[1,14713:6630773,47279633:25952256,43253760,0 +[1,14713:6630773,4812305:25952256,786432,0 +(1,14713:6630773,4812305:25952256,485622,134348 +(1,14713:6630773,4812305:25952256,485622,134348 +g1,14713:3078558,4812305 +[1,14713:3078558,4812305:0,0,0 +(1,14713:3078558,2439708:0,1703936,0 +k1,14713:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14713:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14715:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14713:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14715:3078558,4812305:0,0,0 -(1,14715:3078558,2439708:0,1703936,0 -g1,14715:29030814,2439708 -g1,14715:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14715:36151628,1915420:16384,1179648,0 +[1,14713:3078558,4812305:0,0,0 +(1,14713:3078558,2439708:0,1703936,0 +g1,14713:29030814,2439708 +g1,14713:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14713:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14715:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14713:37855564,2439708:1179648,16384,0 ) ) -k1,14715:3078556,2439708:-34777008 +k1,14713:3078556,2439708:-34777008 ) ] -[1,14715:3078558,4812305:0,0,0 -(1,14715:3078558,49800853:0,16384,2228224 -k1,14715:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14715:2537886,49800853:1179648,16384,0 +[1,14713:3078558,4812305:0,0,0 +(1,14713:3078558,49800853:0,16384,2228224 +k1,14713:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14713:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14715:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14713:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14715:3078558,4812305:0,0,0 -(1,14715:3078558,49800853:0,16384,2228224 -g1,14715:29030814,49800853 -g1,14715:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14715:36151628,51504789:16384,1179648,0 +[1,14713:3078558,4812305:0,0,0 +(1,14713:3078558,49800853:0,16384,2228224 +g1,14713:29030814,49800853 +g1,14713:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14713:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14715:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14713:37855564,49800853:1179648,16384,0 ) ) -k1,14715:3078556,49800853:-34777008 +k1,14713:3078556,49800853:-34777008 ) ] -g1,14715:6630773,4812305 -g1,14715:6630773,4812305 -g1,14715:10338800,4812305 -g1,14715:13915755,4812305 -k1,14715:31387651,4812305:17471896 +g1,14713:6630773,4812305 +g1,14713:6630773,4812305 +g1,14713:10338800,4812305 +g1,14713:13915755,4812305 +k1,14713:31387651,4812305:17471896 ) ) ] -[1,14715:6630773,45706769:25952256,40108032,0 -(1,14715:6630773,45706769:25952256,40108032,0 -(1,14715:6630773,45706769:0,0,0 -g1,14715:6630773,45706769 +[1,14713:6630773,45706769:25952256,40108032,0 +(1,14713:6630773,45706769:25952256,40108032,0 +(1,14713:6630773,45706769:0,0,0 +g1,14713:6630773,45706769 +) +[1,14713:6630773,45706769:25952256,40108032,0 +[1,14695:6630773,19287088:25952256,13688351,0 +[1,14695:6630773,19287088:25952256,13688351,0 +(1,14694:6630773,12449685:25952256,6850948,0 +k1,14694:7790068,12449685:1159295 +h1,14692:7790068,12449685:0,0,0 +(1,14692:7790068,12449685:23454359,6850948,0 +g1,14692:10906354,12449685 +(1,14692:10906354,6227191:0,0,0 +(1,14692:10906354,6227191:0,0,0 +g1,14674:10906354,6227191 +(1,14675:10906354,6227191:0,0,0 +(1,14675:10906354,6227191:0,0,0 +g1,14675:10906354,6227191 +g1,14675:10906354,6227191 +g1,14675:10906354,6227191 +g1,14675:10906354,6227191 +g1,14675:10906354,6227191 +(1,14675:10906354,6227191:0,0,0 +(1,14675:10906354,6227191:4940249,454754,104590 +(1,14675:10906354,6227191:4940249,454754,104590 +g1,14675:12837438,6227191 +$1,14675:12837438,6227191 +$1,14675:13444957,6227191 +g1,14675:13624264,6227191 +(1,14675:13624264,6227191:0,414307,104590 +r1,14713:15846603,6227191:2222339,518897,104590 +k1,14675:13624264,6227191:-2222339 +) +(1,14675:13624264,6227191:2222339,414307,104590 +k1,14675:13624264,6227191:3277 +h1,14675:15843326,6227191:0,370085,101313 +) +) +g1,14675:15846603,6227191 +) +) +g1,14675:10906354,6227191 +g1,14675:10906354,6227191 +) +) +g1,14675:10906354,6227191 +(1,14676:10906354,6227191:0,0,0 +(1,14676:10906354,6227191:0,0,0 +g1,14676:10906354,6227191 +g1,14676:10906354,6227191 +g1,14676:10906354,6227191 +g1,14676:10906354,6227191 +g1,14676:10906354,6227191 +(1,14676:10906354,6227191:0,0,0 +(1,14676:10906354,6227191:5813184,454754,104590 +(1,14676:10906354,6227191:5813184,454754,104590 +g1,14676:14659995,6227191 +$1,14676:14659995,6227191 +$1,14676:15267514,6227191 +g1,14676:15446821,6227191 +(1,14676:15446821,6227191:0,408008,104590 +r1,14713:16719538,6227191:1272717,512598,104590 +k1,14676:15446821,6227191:-1272717 +) +(1,14676:15446821,6227191:1272717,408008,104590 +k1,14676:15446821,6227191:3277 +h1,14676:16716261,6227191:0,370085,101313 +) +) +g1,14676:16719538,6227191 +) +) +g1,14676:10906354,6227191 +g1,14676:10906354,6227191 +) ) -[1,14715:6630773,45706769:25952256,40108032,0 -[1,14697:6630773,19287088:25952256,13688351,0 -[1,14697:6630773,19287088:25952256,13688351,0 -(1,14696:6630773,12449685:25952256,6850948,0 -k1,14696:7790068,12449685:1159295 -h1,14694:7790068,12449685:0,0,0 -(1,14694:7790068,12449685:23454359,6850948,0 -g1,14694:10906354,12449685 -(1,14694:10906354,6227191:0,0,0 -(1,14694:10906354,6227191:0,0,0 g1,14676:10906354,6227191 (1,14677:10906354,6227191:0,0,0 (1,14677:10906354,6227191:0,0,0 @@ -259676,22 +259938,22 @@ g1,14677:10906354,6227191 g1,14677:10906354,6227191 g1,14677:10906354,6227191 (1,14677:10906354,6227191:0,0,0 -(1,14677:10906354,6227191:4940249,454754,104590 -(1,14677:10906354,6227191:4940249,454754,104590 -g1,14677:12837438,6227191 -$1,14677:12837438,6227191 -$1,14677:13444957,6227191 -g1,14677:13624264,6227191 -(1,14677:13624264,6227191:0,414307,104590 -r1,14715:15846603,6227191:2222339,518897,104590 -k1,14677:13624264,6227191:-2222339 +(1,14677:10906354,6227191:5356075,454754,120913 +(1,14677:10906354,6227191:5356075,454754,120913 +g1,14677:13253264,6227191 +$1,14677:13253264,6227191 +$1,14677:13860783,6227191 +g1,14677:14040090,6227191 +(1,14677:14040090,6227191:0,408008,110889 +r1,14713:16262429,6227191:2222339,518897,110889 +k1,14677:14040090,6227191:-2222339 ) -(1,14677:13624264,6227191:2222339,414307,104590 -k1,14677:13624264,6227191:3277 -h1,14677:15843326,6227191:0,370085,101313 +(1,14677:14040090,6227191:2222339,408008,110889 +k1,14677:14040090,6227191:3277 +h1,14677:16259152,6227191:0,370085,101313 ) ) -g1,14677:15846603,6227191 +g1,14677:16262429,6227191 ) ) g1,14677:10906354,6227191 @@ -259707,29 +259969,28 @@ g1,14678:10906354,6227191 g1,14678:10906354,6227191 g1,14678:10906354,6227191 (1,14678:10906354,6227191:0,0,0 -(1,14678:10906354,6227191:5813184,454754,104590 -(1,14678:10906354,6227191:5813184,454754,104590 -g1,14678:14659995,6227191 -$1,14678:14659995,6227191 -$1,14678:15267514,6227191 -g1,14678:15446821,6227191 -(1,14678:15446821,6227191:0,408008,104590 -r1,14715:16719538,6227191:1272717,512598,104590 -k1,14678:15446821,6227191:-1272717 +(1,14678:10906354,6227191:4692323,373362,120913 +(1,14678:10906354,6227191:4692323,373362,120913 +g1,14678:13222594,6227191 +$1,14678:13222594,6227191 +$1,14678:13830113,6227191 +g1,14678:14009420,6227191 +(1,14678:14009420,6227191:0,373362,104590 +r1,14713:15598677,6227191:1589257,477952,104590 +k1,14678:14009420,6227191:-1589257 ) -(1,14678:15446821,6227191:1272717,408008,104590 -k1,14678:15446821,6227191:3277 -h1,14678:16716261,6227191:0,370085,101313 +(1,14678:14009420,6227191:1589257,373362,104590 +k1,14678:14009420,6227191:3277 +h1,14678:15595400,6227191:0,370085,101313 ) ) -g1,14678:16719538,6227191 +g1,14678:15598677,6227191 ) ) g1,14678:10906354,6227191 g1,14678:10906354,6227191 ) ) -g1,14678:10906354,6227191 (1,14679:10906354,6227191:0,0,0 (1,14679:10906354,6227191:0,0,0 g1,14679:10906354,6227191 @@ -259738,22 +259999,18 @@ g1,14679:10906354,6227191 g1,14679:10906354,6227191 g1,14679:10906354,6227191 (1,14679:10906354,6227191:0,0,0 -(1,14679:10906354,6227191:5356075,454754,120913 -(1,14679:10906354,6227191:5356075,454754,120913 -g1,14679:13253264,6227191 -$1,14679:13253264,6227191 -$1,14679:13860783,6227191 -g1,14679:14040090,6227191 -(1,14679:14040090,6227191:0,408008,110889 -r1,14715:16262429,6227191:2222339,518897,110889 -k1,14679:14040090,6227191:-2222339 +(1,14679:10906354,6227191:1589257,408008,104590 +(1,14679:10906354,6227191:1589257,408008,104590 +(1,14679:10906354,6227191:0,408008,104590 +r1,14713:12495611,6227191:1589257,512598,104590 +k1,14679:10906354,6227191:-1589257 ) -(1,14679:14040090,6227191:2222339,408008,110889 -k1,14679:14040090,6227191:3277 -h1,14679:16259152,6227191:0,370085,101313 +(1,14679:10906354,6227191:1589257,408008,104590 +k1,14679:10906354,6227191:3277 +h1,14679:12492334,6227191:0,370085,101313 ) ) -g1,14679:16262429,6227191 +g1,14679:12495611,6227191 ) ) g1,14679:10906354,6227191 @@ -259769,28 +260026,26 @@ g1,14680:10906354,6227191 g1,14680:10906354,6227191 g1,14680:10906354,6227191 (1,14680:10906354,6227191:0,0,0 -(1,14680:10906354,6227191:4692323,373362,120913 -(1,14680:10906354,6227191:4692323,373362,120913 -g1,14680:13222594,6227191 -$1,14680:13222594,6227191 -$1,14680:13830113,6227191 -g1,14680:14009420,6227191 -(1,14680:14009420,6227191:0,373362,104590 -r1,14715:15598677,6227191:1589257,477952,104590 -k1,14680:14009420,6227191:-1589257 +(1,14680:10906354,6227191:2866617,454754,120913 +(1,14680:10906354,6227191:2866617,454754,120913 +(1,14680:10906354,6227191:0,408008,104590 +r1,14713:11862530,6227191:956176,512598,104590 +k1,14680:10906354,6227191:-956176 ) -(1,14680:14009420,6227191:1589257,373362,104590 -k1,14680:14009420,6227191:3277 -h1,14680:15595400,6227191:0,370085,101313 +(1,14680:10906354,6227191:956176,408008,104590 +k1,14680:10906354,6227191:3277 +h1,14680:11859253,6227191:0,370085,101313 ) +g1,14680:12041837,6227191 ) -g1,14680:15598677,6227191 +g1,14680:13772971,6227191 ) ) g1,14680:10906354,6227191 g1,14680:10906354,6227191 ) ) +g1,14680:10906354,6227191 (1,14681:10906354,6227191:0,0,0 (1,14681:10906354,6227191:0,0,0 g1,14681:10906354,6227191 @@ -259799,18 +260054,18 @@ g1,14681:10906354,6227191 g1,14681:10906354,6227191 g1,14681:10906354,6227191 (1,14681:10906354,6227191:0,0,0 -(1,14681:10906354,6227191:1589257,408008,104590 -(1,14681:10906354,6227191:1589257,408008,104590 +(1,14681:10906354,6227191:2855420,408008,104590 +(1,14681:10906354,6227191:2855420,408008,104590 (1,14681:10906354,6227191:0,408008,104590 -r1,14715:12495611,6227191:1589257,512598,104590 -k1,14681:10906354,6227191:-1589257 +r1,14713:13761774,6227191:2855420,512598,104590 +k1,14681:10906354,6227191:-2855420 ) -(1,14681:10906354,6227191:1589257,408008,104590 +(1,14681:10906354,6227191:2855420,408008,104590 k1,14681:10906354,6227191:3277 -h1,14681:12492334,6227191:0,370085,101313 +h1,14681:13758497,6227191:0,370085,101313 ) ) -g1,14681:12495611,6227191 +g1,14681:13761774,6227191 ) ) g1,14681:10906354,6227191 @@ -259826,19 +260081,18 @@ g1,14682:10906354,6227191 g1,14682:10906354,6227191 g1,14682:10906354,6227191 (1,14682:10906354,6227191:0,0,0 -(1,14682:10906354,6227191:2866617,454754,120913 -(1,14682:10906354,6227191:2866617,454754,120913 +(1,14682:10906354,6227191:2222339,408008,104590 +(1,14682:10906354,6227191:2222339,408008,104590 (1,14682:10906354,6227191:0,408008,104590 -r1,14715:11862530,6227191:956176,512598,104590 -k1,14682:10906354,6227191:-956176 +r1,14713:13128693,6227191:2222339,512598,104590 +k1,14682:10906354,6227191:-2222339 ) -(1,14682:10906354,6227191:956176,408008,104590 +(1,14682:10906354,6227191:2222339,408008,104590 k1,14682:10906354,6227191:3277 -h1,14682:11859253,6227191:0,370085,101313 +h1,14682:13125416,6227191:0,370085,101313 ) -g1,14682:12041837,6227191 ) -g1,14682:13772971,6227191 +g1,14682:13128693,6227191 ) ) g1,14682:10906354,6227191 @@ -259854,18 +260108,18 @@ g1,14683:10906354,6227191 g1,14683:10906354,6227191 g1,14683:10906354,6227191 (1,14683:10906354,6227191:0,0,0 -(1,14683:10906354,6227191:2855420,408008,104590 -(1,14683:10906354,6227191:2855420,408008,104590 +(1,14683:10906354,6227191:1905798,408008,104590 +(1,14683:10906354,6227191:1905798,408008,104590 (1,14683:10906354,6227191:0,408008,104590 -r1,14715:13761774,6227191:2855420,512598,104590 -k1,14683:10906354,6227191:-2855420 +r1,14713:12812152,6227191:1905798,512598,104590 +k1,14683:10906354,6227191:-1905798 ) -(1,14683:10906354,6227191:2855420,408008,104590 +(1,14683:10906354,6227191:1905798,408008,104590 k1,14683:10906354,6227191:3277 -h1,14683:13758497,6227191:0,370085,101313 +h1,14683:12808875,6227191:0,370085,101313 ) ) -g1,14683:13761774,6227191 +g1,14683:12812152,6227191 ) ) g1,14683:10906354,6227191 @@ -259873,59 +260127,17 @@ g1,14683:10906354,6227191 ) ) g1,14683:10906354,6227191 -(1,14684:10906354,6227191:0,0,0 -(1,14684:10906354,6227191:0,0,0 -g1,14684:10906354,6227191 g1,14684:10906354,6227191 g1,14684:10906354,6227191 g1,14684:10906354,6227191 g1,14684:10906354,6227191 -(1,14684:10906354,6227191:0,0,0 -(1,14684:10906354,6227191:2222339,408008,104590 -(1,14684:10906354,6227191:2222339,408008,104590 -(1,14684:10906354,6227191:0,408008,104590 -r1,14715:13128693,6227191:2222339,512598,104590 -k1,14684:10906354,6227191:-2222339 -) -(1,14684:10906354,6227191:2222339,408008,104590 -k1,14684:10906354,6227191:3277 -h1,14684:13125416,6227191:0,370085,101313 -) -) -g1,14684:13128693,6227191 -) -) g1,14684:10906354,6227191 g1,14684:10906354,6227191 -) -) -g1,14684:10906354,6227191 -(1,14685:10906354,6227191:0,0,0 -(1,14685:10906354,6227191:0,0,0 g1,14685:10906354,6227191 g1,14685:10906354,6227191 g1,14685:10906354,6227191 g1,14685:10906354,6227191 g1,14685:10906354,6227191 -(1,14685:10906354,6227191:0,0,0 -(1,14685:10906354,6227191:1905798,408008,104590 -(1,14685:10906354,6227191:1905798,408008,104590 -(1,14685:10906354,6227191:0,408008,104590 -r1,14715:12812152,6227191:1905798,512598,104590 -k1,14685:10906354,6227191:-1905798 -) -(1,14685:10906354,6227191:1905798,408008,104590 -k1,14685:10906354,6227191:3277 -h1,14685:12808875,6227191:0,370085,101313 -) -) -g1,14685:12812152,6227191 -) -) -g1,14685:10906354,6227191 -g1,14685:10906354,6227191 -) -) g1,14685:10906354,6227191 g1,14686:10906354,6227191 g1,14686:10906354,6227191 @@ -259965,2437 +260177,2421 @@ g1,14691:10906354,6227191 g1,14691:10906354,6227191 g1,14692:10906354,6227191 g1,14692:10906354,6227191 -g1,14692:10906354,6227191 -g1,14692:10906354,6227191 -g1,14692:10906354,6227191 -g1,14692:10906354,6227191 -g1,14693:10906354,6227191 -g1,14693:10906354,6227191 -g1,14693:10906354,6227191 -g1,14693:10906354,6227191 -g1,14693:10906354,6227191 -g1,14693:10906354,6227191 -g1,14694:10906354,6227191 -g1,14694:10906354,6227191 ) -g1,14694:10906354,6227191 +g1,14692:10906354,6227191 ) ) +g1,14692:31423734,12449685 g1,14694:31423734,12449685 -g1,14696:31423734,12449685 -k1,14696:32583029,12449685:1159295 -) -(1,14696:6630773,13970125:25952256,505283,134348 -h1,14696:6630773,13970125:0,0,0 -g1,14696:8923222,13970125 -k1,14696:32583029,13970125:22689874 -g1,14696:32583029,13970125 -) -(1,14696:6630773,14835205:25952256,513147,134348 -h1,14696:6630773,14835205:0,0,0 -k1,14696:10231529,14835205:273493 -k1,14696:12492728,14835205:273492 -k1,14696:14700844,14835205:273493 -k1,14696:15590374,14835205:273492 -k1,14696:16278635,14835205:273418 -k1,14696:17083624,14835205:273492 -k1,14696:18934569,14835205:273493 -k1,14696:19824100,14835205:273493 -k1,14696:21956848,14835205:273492 -k1,14696:24642721,14835205:273493 -k1,14696:27532410,14835205:273492 -k1,14696:29373524,14835205:273493 -k1,14696:31632102,14835205:273492 -h1,14696:32602690,14835205:0,0,0 -k1,14696:32583029,14835205:0 -) -(1,14696:6630773,15700285:25952256,513147,134348 -k1,14696:9455828,15700285:188542 -k1,14696:10295798,15700285:188542 -k1,14696:12145022,15700285:188542 -k1,14696:12689424,15700285:188542 -k1,14696:16127896,15700285:188542 -k1,14696:18304145,15700285:188542 -k1,14696:19353830,15700285:188542 -k1,14696:22665818,15700285:188542 -k1,14696:24691990,15700285:188542 -k1,14696:25872092,15700285:188542 -k1,14696:28218079,15700285:188542 -k1,14696:29800572,15700285:188542 -k1,14696:31923737,15700285:188542 -k1,14696:32583029,15700285:0 -) -(1,14696:6630773,16565365:25952256,513147,126483 -k1,14696:8572073,16565365:239330 -k1,14696:10527792,16565365:239331 -k1,14696:11426414,16565365:239330 -k1,14696:14157423,16565365:239330 -k1,14696:15588199,16565365:239331 -k1,14696:17436438,16565365:239330 -k1,14696:19162781,16565365:239331 -k1,14696:20393671,16565365:239330 -k1,14696:23030308,16565365:239330 -k1,14696:23921067,16565365:239331 -(1,14696:23921067,16565365:0,452978,115847 -r1,14715:25686180,16565365:1765113,568825,115847 -k1,14696:23921067,16565365:-1765113 -) -(1,14696:23921067,16565365:1765113,452978,115847 -k1,14696:23921067,16565365:3277 -h1,14696:25682903,16565365:0,411205,112570 -) -k1,14696:26099180,16565365:239330 -k1,14696:27828799,16565365:239330 -k1,14696:29087215,16565365:239331 -k1,14696:30981329,16565365:239330 -k1,14696:32583029,16565365:0 -) -(1,14696:6630773,17430445:25952256,513147,126483 -k1,14696:10168144,17430445:232390 -k1,14696:11913761,17430445:232391 -k1,14696:13962154,17430445:232390 -k1,14696:16979169,17430445:232390 -k1,14696:18203120,17430445:232391 -k1,14696:20684706,17430445:232390 -k1,14696:22606614,17430445:232390 -k1,14696:24305700,17430445:232390 -k1,14696:27411845,17430445:232391 -k1,14696:28835680,17430445:232390 -k1,14696:32583029,17430445:0 -) -(1,14696:6630773,18295525:25952256,513147,126483 -k1,14696:9603009,18295525:148290 -k1,14696:10742859,18295525:148290 -k1,14696:12777275,18295525:148290 -k1,14696:17047779,18295525:148290 -k1,14696:19568472,18295525:148290 -k1,14696:21554392,18295525:148290 -k1,14696:22894127,18295525:148290 -k1,14696:25220834,18295525:148290 -k1,14696:26360684,18295525:148290 -k1,14696:29152696,18295525:148290 -k1,14696:29987148,18295525:148290 -k1,14696:32583029,18295525:0 -) -(1,14696:6630773,19160605:25952256,505283,126483 -g1,14696:7821562,19160605 -k1,14696:32583029,19160605:21858222 -g1,14696:32583029,19160605 -) -] -] -(1,14670:6630773,21253168:25952256,513147,134348 -h1,14669:6630773,21253168:983040,0,0 -k1,14669:9620677,21253168:223629 -k1,14669:13797437,21253168:223628 -k1,14669:15551987,21253168:223629 -k1,14669:16794701,21253168:223629 -k1,14669:18324462,21253168:223628 -k1,14669:20210084,21253168:223629 -k1,14669:21085141,21253168:223629 -k1,14669:22124038,21253168:223629 -k1,14669:22879163,21253168:223628 -k1,14669:23754220,21253168:223629 -k1,14669:24884212,21253168:223629 -k1,14669:27870183,21253168:223628 -k1,14669:30572384,21253168:223629 -k1,14669:32583029,21253168:0 -) -(1,14670:6630773,22118248:25952256,513147,134348 -k1,14669:8070381,22118248:248163 -k1,14669:8784505,22118248:248163 -k1,14669:10235909,22118248:248163 -k1,14669:11769888,22118248:248163 -k1,14669:13548972,22118248:248163 -k1,14669:15854965,22118248:248163 -k1,14669:16754555,22118248:248162 -k1,14669:17358578,22118248:248163 -k1,14669:20369084,22118248:248163 -k1,14669:25242123,22118248:248163 -k1,14669:28774950,22118248:248163 -k1,14669:30897443,22118248:248163 -k1,14669:32583029,22118248:0 -) -(1,14670:6630773,22983328:25952256,505283,134348 -k1,14669:9095582,22983328:177602 -k1,14669:10834908,22983328:177603 -k1,14669:12084679,22983328:177602 -k1,14669:13328553,22983328:177603 -k1,14669:15809090,22983328:177602 -k1,14669:17676211,22983328:177603 -k1,14669:20332385,22983328:177602 -k1,14669:22520632,22983328:177602 -k1,14669:23689795,22983328:177603 -k1,14669:24483435,22983328:177602 -k1,14669:26412815,22983328:177603 -k1,14669:28287799,22983328:177602 -k1,14669:30597944,22983328:177603 -k1,14669:31966991,22983328:177602 -k1,14669:32583029,22983328:0 -) -(1,14670:6630773,23848408:25952256,505283,134348 -k1,14669:8525002,23848408:202089 -k1,14669:10424473,23848408:202089 -k1,14669:13701512,23848408:202090 -k1,14669:15007883,23848408:202089 -k1,14669:15957738,23848408:202089 -k1,14669:18951661,23848408:202089 -k1,14669:20889143,23848408:202089 -k1,14669:22947212,23848408:202089 -k1,14669:26099077,23848408:202090 -k1,14669:26984051,23848408:202089 -k1,14669:30231598,23848408:202089 -k1,14670:32583029,23848408:0 -) -(1,14670:6630773,24713488:25952256,473825,7863 -k1,14670:32583028,24713488:23125032 -g1,14670:32583028,24713488 -) -(1,14672:6630773,25578568:25952256,513147,134348 -h1,14671:6630773,25578568:983040,0,0 -k1,14671:10690291,25578568:286610 -(1,14671:10690291,25578568:0,452978,115847 -r1,14715:12455404,25578568:1765113,568825,115847 -k1,14671:10690291,25578568:-1765113 -) -(1,14671:10690291,25578568:1765113,452978,115847 -k1,14671:10690291,25578568:3277 -h1,14671:12452127,25578568:0,411205,112570 -) -k1,14671:12742013,25578568:286609 -k1,14671:13560120,25578568:286610 -k1,14671:14765545,25578568:286610 -k1,14671:18423982,25578568:286610 -k1,14671:19658242,25578568:286609 -k1,14671:21879475,25578568:286610 -k1,14671:25416015,25578568:286610 -k1,14671:28194304,25578568:286610 -k1,14671:29677600,25578568:286609 -k1,14671:31649796,25578568:286610 -k1,14671:32583029,25578568:0 -) -(1,14672:6630773,26443648:25952256,513147,134348 -k1,14671:7698452,26443648:279281 -k1,14671:9070219,26443648:279282 -k1,14671:10341060,26443648:279281 -k1,14671:12822352,26443648:279282 -k1,14671:13753061,26443648:279281 -k1,14671:15776255,26443648:279281 -k1,14671:17003188,26443648:279282 -k1,14671:18211034,26443648:279201 -k1,14671:19681760,26443648:279281 -k1,14671:21369330,26443648:279201 -k1,14671:23840791,26443648:279282 -h1,14671:24811379,26443648:0,0,0 -k1,14671:25471424,26443648:279281 -k1,14671:27022103,26443648:279281 -k1,14671:30487745,26443648:279282 -k1,14671:31298523,26443648:279281 -k1,14671:32583029,26443648:0 -) -(1,14672:6630773,27308728:25952256,513147,134348 -k1,14671:9291675,27308728:182330 -k1,14671:11484651,27308728:182331 -k1,14671:12658541,27308728:182330 -k1,14671:15312889,27308728:182330 -k1,14671:16686665,27308728:182331 -k1,14671:19341668,27308728:182330 -k1,14671:22710358,27308728:182330 -k1,14671:23424186,27308728:182331 -k1,14671:24222554,27308728:182330 -k1,14671:25735266,27308728:182331 -k1,14671:26936681,27308728:182330 -k1,14671:29106718,27308728:182330 -k1,14671:29940477,27308728:182331 -k1,14671:30870573,27308728:182330 -k1,14671:32583029,27308728:0 -) -(1,14672:6630773,28173808:25952256,513147,126483 -k1,14671:7358676,28173808:196406 -k1,14671:10560563,28173808:196406 -k1,14671:11776055,28173808:196407 -k1,14671:13353305,28173808:196406 -k1,14671:16310087,28173808:196406 -k1,14671:17525578,28173808:196406 -k1,14671:19790301,28173808:196407 -k1,14671:20645999,28173808:196406 -k1,14671:21861490,28173808:196406 -k1,14671:25668930,28173808:196406 -k1,14671:27056782,28173808:196407 -k1,14671:27609048,28173808:196406 -k1,14671:29793161,28173808:196406 -k1,14671:32583029,28173808:0 -) -(1,14672:6630773,29038888:25952256,513147,7863 -g1,14671:8114508,29038888 -g1,14671:10981708,29038888 -g1,14671:11796975,29038888 -g1,14671:13015289,29038888 -g1,14671:14247366,29038888 -g1,14671:14802455,29038888 -g1,14671:16101378,29038888 -g1,14671:16952035,29038888 -g1,14671:17921967,29038888 -g1,14671:18536039,29038888 -k1,14672:32583029,29038888:11299066 -g1,14672:32583029,29038888 -) -(1,14700:6630773,29903968:25952256,513147,134348 -h1,14699:6630773,29903968:983040,0,0 -k1,14699:8649544,29903968:407896 -k1,14699:10754822,29903968:407896 -k1,14699:12860756,29903968:407896 -k1,14699:16709947,29903968:407896 -k1,14699:18618617,29903968:407896 -k1,14699:19974164,29903968:407896 -k1,14699:23769616,29903968:407896 -k1,14699:26689507,29903968:407896 -k1,14699:29575975,29903968:407896 -k1,14699:32168186,29903968:407896 -k1,14700:32583029,29903968:0 -) -(1,14700:6630773,30769048:25952256,513147,134348 -k1,14699:9856658,30769048:465509 -k1,14699:10678026,30769048:465508 -k1,14699:14781437,30769048:465508 -k1,14699:16194597,30769048:465509 -k1,14699:19883167,30769048:465509 -k1,14699:21367760,30769048:465508 -k1,14699:22247844,30769048:465241 -k1,14699:25408849,30769048:465509 -k1,14699:26525785,30769048:465508 -k1,14699:27739060,30769048:465509 -k1,14699:29917024,30769048:465508 -k1,14699:32583029,30769048:0 -) -(1,14700:6630773,31634128:25952256,513147,134348 -k1,14699:8327566,31634128:329056 -k1,14699:9675707,31634128:329056 -k1,14699:10419476,31634128:328926 -k1,14699:13444028,31634128:329056 -k1,14699:17148188,31634128:329056 -k1,14699:18496329,31634128:329056 -k1,14699:21303957,31634128:329056 -k1,14699:23817328,31634128:329056 -k1,14699:26020714,31634128:329056 -k1,14699:29375567,31634128:329056 -k1,14699:30473360,31634128:329056 -k1,14699:31563944,31634128:329056 -k1,14699:32583029,31634128:0 -) -(1,14700:6630773,32499208:25952256,513147,134348 -k1,14699:8685163,32499208:316375 -k1,14699:9660830,32499208:316375 -k1,14699:13706204,32499208:316375 -k1,14699:16931067,32499208:316375 -k1,14699:18438887,32499208:316375 -k1,14699:20849137,32499208:316375 -k1,14699:22184596,32499208:316374 -k1,14699:23881815,32499208:316375 -k1,14699:25765811,32499208:316375 -k1,14699:27101271,32499208:316375 -k1,14699:29704197,32499208:316375 -k1,14699:30679864,32499208:316375 -k1,14700:32583029,32499208:0 -) -(1,14700:6630773,33364288:25952256,513147,134348 -k1,14699:7910691,33364288:289669 -k1,14699:9391805,33364288:289669 -k1,14699:12824581,33364288:289669 -k1,14699:15626245,33364288:289669 -k1,14699:18394486,33364288:289669 -k1,14699:20868470,33364288:289669 -k1,14699:22354826,33364288:289669 -k1,14699:26483594,33364288:289669 -k1,14699:29799060,33364288:289669 -k1,14699:32583029,33364288:0 -) -(1,14700:6630773,34229368:25952256,473825,122846 -k1,14699:7607757,34229368:360946 -k1,14699:8383384,34229368:360784 -k1,14699:9735889,34229368:360945 -(1,14699:9735889,34229368:0,452978,115847 -r1,14715:12907849,34229368:3171960,568825,115847 -k1,14699:9735889,34229368:-3171960 -) -(1,14699:9735889,34229368:3171960,452978,115847 -k1,14699:9735889,34229368:3277 -h1,14699:12904572,34229368:0,411205,112570 -) -k1,14699:13442465,34229368:360946 -(1,14699:13442465,34229368:0,459977,115847 -r1,14715:17669561,34229368:4227096,575824,115847 -k1,14699:13442465,34229368:-4227096 -) -(1,14699:13442465,34229368:4227096,459977,115847 -k1,14699:13442465,34229368:3277 -h1,14699:17666284,34229368:0,411205,112570 -) -k1,14699:18204177,34229368:360946 -(1,14699:18204177,34229368:0,452978,122846 -r1,14715:22782985,34229368:4578808,575824,122846 -k1,14699:18204177,34229368:-4578808 -) -(1,14699:18204177,34229368:4578808,452978,122846 -k1,14699:18204177,34229368:3277 -h1,14699:22779708,34229368:0,411205,112570 -) -k1,14699:23317601,34229368:360946 -(1,14699:23317601,34229368:0,452978,115847 -r1,14715:26489561,34229368:3171960,568825,115847 -k1,14699:23317601,34229368:-3171960 -) -(1,14699:23317601,34229368:3171960,452978,115847 -k1,14699:23317601,34229368:3277 -h1,14699:26486284,34229368:0,411205,112570 -) -k1,14699:27024177,34229368:360946 -(1,14699:27024177,34229368:0,459977,115847 -r1,14715:29492714,34229368:2468537,575824,115847 -k1,14699:27024177,34229368:-2468537 -) -(1,14699:27024177,34229368:2468537,459977,115847 -k1,14699:27024177,34229368:3277 -h1,14699:29489437,34229368:0,411205,112570 -) -k1,14699:30027330,34229368:360946 -(1,14699:30027330,34229368:0,459977,115847 -r1,14715:32495867,34229368:2468537,575824,115847 -k1,14699:30027330,34229368:-2468537 -) -(1,14699:30027330,34229368:2468537,459977,115847 -k1,14699:30027330,34229368:3277 -h1,14699:32492590,34229368:0,411205,112570 -) -k1,14700:32583029,34229368:0 -) -(1,14700:6630773,35094448:25952256,505283,122846 -(1,14699:6630773,35094448:0,452978,122846 -r1,14715:10857869,35094448:4227096,575824,122846 -k1,14699:6630773,35094448:-4227096 -) -(1,14699:6630773,35094448:4227096,452978,122846 -k1,14699:6630773,35094448:3277 -h1,14699:10854592,35094448:0,411205,112570 -) -k1,14699:11245608,35094448:214069 -(1,14699:11245608,35094448:0,452978,122846 -r1,14715:14417568,35094448:3171960,575824,122846 -k1,14699:11245608,35094448:-3171960 -) -(1,14699:11245608,35094448:3171960,452978,122846 -k1,14699:11245608,35094448:3277 -h1,14699:14414291,35094448:0,411205,112570 -) -k1,14699:14805308,35094448:214070 -(1,14699:14805308,35094448:0,452978,115847 -r1,14715:18328980,35094448:3523672,568825,115847 -k1,14699:14805308,35094448:-3523672 -) -(1,14699:14805308,35094448:3523672,452978,115847 -k1,14699:14805308,35094448:3277 -h1,14699:18325703,35094448:0,411205,112570 -) -k1,14699:18716719,35094448:214069 -k1,14699:20122233,35094448:214069 -(1,14699:20122233,35094448:0,452978,115847 -r1,14715:23997617,35094448:3875384,568825,115847 -k1,14699:20122233,35094448:-3875384 -) -(1,14699:20122233,35094448:3875384,452978,115847 -k1,14699:20122233,35094448:3277 -h1,14699:23994340,35094448:0,411205,112570 -) -k1,14699:24385356,35094448:214069 -k1,14699:27389294,35094448:214070 -(1,14699:27389294,35094448:0,459977,115847 -r1,14715:31264678,35094448:3875384,575824,115847 -k1,14699:27389294,35094448:-3875384 -) -(1,14699:27389294,35094448:3875384,459977,115847 -k1,14699:27389294,35094448:3277 -h1,14699:31261401,35094448:0,411205,112570 -) -k1,14699:31478747,35094448:214069 -k1,14699:32583029,35094448:0 -) -(1,14700:6630773,35959528:25952256,513147,134348 -k1,14699:7607026,35959528:228487 -k1,14699:9348738,35959528:228486 -k1,14699:10228653,35959528:228487 -k1,14699:12417976,35959528:228486 -k1,14699:13929658,35959528:228487 -k1,14699:15818826,35959528:228486 -k1,14699:16945156,35959528:228487 -k1,14699:18870370,35959528:228487 -k1,14699:22124653,35959528:228486 -k1,14699:23457422,35959528:228487 -k1,14699:24433674,35959528:228486 -k1,14699:26175387,35959528:228487 -k1,14699:28101911,35959528:228486 -k1,14699:30265021,35959528:228487 -k1,14699:32583029,35959528:0 -) -(1,14700:6630773,36824608:25952256,513147,134348 -g1,14699:8197739,36824608 -(1,14699:8197739,36824608:0,452978,115847 -r1,14715:9259428,36824608:1061689,568825,115847 -k1,14699:8197739,36824608:-1061689 -) -(1,14699:8197739,36824608:1061689,452978,115847 -k1,14699:8197739,36824608:3277 -h1,14699:9256151,36824608:0,411205,112570 -) -g1,14699:9458657,36824608 -g1,14699:10340771,36824608 -(1,14699:10340771,36824608:0,452978,115847 -r1,14715:11754172,36824608:1413401,568825,115847 -k1,14699:10340771,36824608:-1413401 -) -(1,14699:10340771,36824608:1413401,452978,115847 -k1,14699:10340771,36824608:3277 -h1,14699:11750895,36824608:0,411205,112570 -) -g1,14699:12127071,36824608 -g1,14699:14461463,36824608 -g1,14699:16482593,36824608 -g1,14699:17700907,36824608 -g1,14699:21130406,36824608 -g1,14699:22717688,36824608 -g1,14699:24745371,36824608 -g1,14699:25892251,36824608 -k1,14700:32583029,36824608:4520881 -g1,14700:32583029,36824608 -) -v1,14702:6630773,37689688:0,393216,0 -(1,14703:6630773,39883916:25952256,2587444,0 -g1,14703:6630773,39883916 -g1,14703:6237557,39883916 -r1,14715:6368629,39883916:131072,2587444,0 -g1,14703:6567858,39883916 -g1,14703:6764466,39883916 -[1,14703:6764466,39883916:25818563,2587444,0 -(1,14703:6764466,38050865:25818563,754393,260573 -(1,14702:6764466,38050865:0,754393,260573 -r1,14715:7856192,38050865:1091726,1014966,260573 -k1,14702:6764466,38050865:-1091726 -) -(1,14702:6764466,38050865:1091726,754393,260573 -) -k1,14702:8071360,38050865:215168 -k1,14702:8399040,38050865:327680 -k1,14702:9242043,38050865:215168 -k1,14702:10887206,38050865:215167 -k1,14702:11753802,38050865:215168 -(1,14702:11753802,38050865:0,452978,115847 -r1,14715:13518915,38050865:1765113,568825,115847 -k1,14702:11753802,38050865:-1765113 -) -(1,14702:11753802,38050865:1765113,452978,115847 -k1,14702:11753802,38050865:3277 -h1,14702:13515638,38050865:0,411205,112570 -) -k1,14702:13907753,38050865:215168 -k1,14702:15142006,38050865:215168 -k1,14702:16390677,38050865:215168 -k1,14702:17265137,38050865:215168 -k1,14702:18499389,38050865:215167 -k1,14702:20702264,38050865:215168 -(1,14702:20702264,38050865:0,459977,115847 -r1,14715:23170801,38050865:2468537,575824,115847 -k1,14702:20702264,38050865:-2468537 -) -(1,14702:20702264,38050865:2468537,459977,115847 -k1,14702:20702264,38050865:3277 -h1,14702:23167524,38050865:0,411205,112570 -) -k1,14702:23385969,38050865:215168 -k1,14702:24132634,38050865:215168 -k1,14702:24703662,38050865:215168 -k1,14702:27614325,38050865:215167 -k1,14702:29102858,38050865:215168 -k1,14702:30514713,38050865:215168 -k1,14702:32583029,38050865:0 -) -(1,14703:6764466,38915945:25818563,513147,134348 -k1,14702:7624793,38915945:201035 -k1,14702:8614225,38915945:201034 -k1,14702:12217889,38915945:201035 -k1,14702:12884885,38915945:201035 -k1,14702:14152191,38915945:201035 -k1,14702:16759052,38915945:201034 -k1,14702:17576125,38915945:201035 -(1,14702:17576125,38915945:0,452978,115847 -r1,14715:18989526,38915945:1413401,568825,115847 -k1,14702:17576125,38915945:-1413401 -) -(1,14702:17576125,38915945:1413401,452978,115847 -k1,14702:17576125,38915945:3277 -h1,14702:18986249,38915945:0,411205,112570 -) -k1,14702:19190561,38915945:201035 -k1,14702:20383156,38915945:201035 -k1,14702:23403549,38915945:201034 -k1,14702:24256012,38915945:201035 -k1,14702:25204813,38915945:201035 -k1,14702:29016882,38915945:201035 -k1,14702:29869344,38915945:201034 -k1,14702:30818145,38915945:201035 -k1,14702:32583029,38915945:0 -) -(1,14703:6764466,39781025:25818563,513147,102891 -g1,14702:9004486,39781025 -g1,14702:9559575,39781025 -g1,14702:11917560,39781025 -k1,14703:32583028,39781025:17969972 -g1,14703:32583028,39781025 -) -] -g1,14703:32583029,39883916 -) -h1,14703:6630773,39883916:0,0,0 -(1,14706:6630773,40748996:25952256,505283,134348 -h1,14705:6630773,40748996:983040,0,0 -k1,14705:8661588,40748996:229886 -k1,14705:11552891,40748996:229886 -k1,14705:12801861,40748996:229885 -k1,14705:18542669,40748996:229886 -k1,14705:21562423,40748996:229886 -k1,14705:25104499,40748996:229886 -k1,14705:27926988,40748996:229885 -k1,14705:30634790,40748996:229886 -k1,14705:31480714,40748996:229886 -k1,14706:32583029,40748996:0 -) -(1,14706:6630773,41614076:25952256,513147,126483 -k1,14705:9975674,41614076:191309 -k1,14705:11358428,41614076:191309 -k1,14705:14703329,41614076:191309 -k1,14705:15426135,41614076:191309 -k1,14705:17329900,41614076:191309 -k1,14705:18172637,41614076:191309 -k1,14705:19383031,41614076:191309 -(1,14705:19383031,41614076:0,452978,115847 -r1,14715:22554991,41614076:3171960,568825,115847 -k1,14705:19383031,41614076:-3171960 -) -(1,14705:19383031,41614076:3171960,452978,115847 -k1,14705:19383031,41614076:3277 -h1,14705:22551714,41614076:0,411205,112570 -) -k1,14705:22746300,41614076:191309 -k1,14705:24326972,41614076:191309 -k1,14705:25626495,41614076:191309 -k1,14705:27014491,41614076:191309 -k1,14705:31529210,41614076:191309 -k1,14706:32583029,41614076:0 -) -(1,14706:6630773,42479156:25952256,505283,134348 -g1,14705:9693270,42479156 -g1,14705:10423996,42479156 -g1,14705:12317986,42479156 -k1,14706:32583028,42479156:19521864 -g1,14706:32583028,42479156 -) -(1,14707:6630773,43344236:25952256,0,0 -h1,14707:6630773,43344236:983040,0,0 -k1,14707:32583029,43344236:24969216 -g1,14707:32583029,43344236 +k1,14694:32583029,12449685:1159295 +) +(1,14694:6630773,13970125:25952256,505283,134348 +h1,14694:6630773,13970125:0,0,0 +g1,14694:8923222,13970125 +k1,14694:32583029,13970125:22689874 +g1,14694:32583029,13970125 +) +(1,14694:6630773,14835205:25952256,513147,134348 +h1,14694:6630773,14835205:0,0,0 +k1,14694:10231529,14835205:273493 +k1,14694:12492728,14835205:273492 +k1,14694:14700844,14835205:273493 +k1,14694:15590374,14835205:273492 +k1,14694:16278635,14835205:273418 +k1,14694:17083624,14835205:273492 +k1,14694:18934569,14835205:273493 +k1,14694:19824100,14835205:273493 +k1,14694:21956848,14835205:273492 +k1,14694:24642721,14835205:273493 +k1,14694:27532410,14835205:273492 +k1,14694:29373524,14835205:273493 +k1,14694:31632102,14835205:273492 +h1,14694:32602690,14835205:0,0,0 +k1,14694:32583029,14835205:0 +) +(1,14694:6630773,15700285:25952256,513147,134348 +k1,14694:9455828,15700285:188542 +k1,14694:10295798,15700285:188542 +k1,14694:12145022,15700285:188542 +k1,14694:12689424,15700285:188542 +k1,14694:16127896,15700285:188542 +k1,14694:18304145,15700285:188542 +k1,14694:19353830,15700285:188542 +k1,14694:22665818,15700285:188542 +k1,14694:24691990,15700285:188542 +k1,14694:25872092,15700285:188542 +k1,14694:28218079,15700285:188542 +k1,14694:29800572,15700285:188542 +k1,14694:31923737,15700285:188542 +k1,14694:32583029,15700285:0 +) +(1,14694:6630773,16565365:25952256,513147,126483 +k1,14694:8572073,16565365:239330 +k1,14694:10527792,16565365:239331 +k1,14694:11426414,16565365:239330 +k1,14694:14157423,16565365:239330 +k1,14694:15588199,16565365:239331 +k1,14694:17436438,16565365:239330 +k1,14694:19162781,16565365:239331 +k1,14694:20393671,16565365:239330 +k1,14694:23030308,16565365:239330 +k1,14694:23921067,16565365:239331 +(1,14694:23921067,16565365:0,452978,115847 +r1,14713:25686180,16565365:1765113,568825,115847 +k1,14694:23921067,16565365:-1765113 +) +(1,14694:23921067,16565365:1765113,452978,115847 +k1,14694:23921067,16565365:3277 +h1,14694:25682903,16565365:0,411205,112570 +) +k1,14694:26099180,16565365:239330 +k1,14694:27828799,16565365:239330 +k1,14694:29087215,16565365:239331 +k1,14694:30981329,16565365:239330 +k1,14694:32583029,16565365:0 +) +(1,14694:6630773,17430445:25952256,513147,126483 +k1,14694:10168144,17430445:232390 +k1,14694:11913761,17430445:232391 +k1,14694:13962154,17430445:232390 +k1,14694:16979169,17430445:232390 +k1,14694:18203120,17430445:232391 +k1,14694:20684706,17430445:232390 +k1,14694:22606614,17430445:232390 +k1,14694:24305700,17430445:232390 +k1,14694:27411845,17430445:232391 +k1,14694:28835680,17430445:232390 +k1,14694:32583029,17430445:0 +) +(1,14694:6630773,18295525:25952256,513147,126483 +k1,14694:9603009,18295525:148290 +k1,14694:10742859,18295525:148290 +k1,14694:12777275,18295525:148290 +k1,14694:17047779,18295525:148290 +k1,14694:19568472,18295525:148290 +k1,14694:21554392,18295525:148290 +k1,14694:22894127,18295525:148290 +k1,14694:25220834,18295525:148290 +k1,14694:26360684,18295525:148290 +k1,14694:29152696,18295525:148290 +k1,14694:29987148,18295525:148290 +k1,14694:32583029,18295525:0 +) +(1,14694:6630773,19160605:25952256,505283,126483 +g1,14694:7821562,19160605 +k1,14694:32583029,19160605:21858222 +g1,14694:32583029,19160605 +) +] +] +(1,14668:6630773,21253168:25952256,513147,134348 +h1,14667:6630773,21253168:983040,0,0 +k1,14667:9620677,21253168:223629 +k1,14667:13797437,21253168:223628 +k1,14667:15551987,21253168:223629 +k1,14667:16794701,21253168:223629 +k1,14667:18324462,21253168:223628 +k1,14667:20210084,21253168:223629 +k1,14667:21085141,21253168:223629 +k1,14667:22124038,21253168:223629 +k1,14667:22879163,21253168:223628 +k1,14667:23754220,21253168:223629 +k1,14667:24884212,21253168:223629 +k1,14667:27870183,21253168:223628 +k1,14667:30572384,21253168:223629 +k1,14667:32583029,21253168:0 +) +(1,14668:6630773,22118248:25952256,513147,134348 +k1,14667:8070381,22118248:248163 +k1,14667:8784505,22118248:248163 +k1,14667:10235909,22118248:248163 +k1,14667:11769888,22118248:248163 +k1,14667:13548972,22118248:248163 +k1,14667:15854965,22118248:248163 +k1,14667:16754555,22118248:248162 +k1,14667:17358578,22118248:248163 +k1,14667:20369084,22118248:248163 +k1,14667:25242123,22118248:248163 +k1,14667:28774950,22118248:248163 +k1,14667:30897443,22118248:248163 +k1,14667:32583029,22118248:0 +) +(1,14668:6630773,22983328:25952256,505283,134348 +k1,14667:9095582,22983328:177602 +k1,14667:10834908,22983328:177603 +k1,14667:12084679,22983328:177602 +k1,14667:13328553,22983328:177603 +k1,14667:15809090,22983328:177602 +k1,14667:17676211,22983328:177603 +k1,14667:20332385,22983328:177602 +k1,14667:22520632,22983328:177602 +k1,14667:23689795,22983328:177603 +k1,14667:24483435,22983328:177602 +k1,14667:26412815,22983328:177603 +k1,14667:28287799,22983328:177602 +k1,14667:30597944,22983328:177603 +k1,14667:31966991,22983328:177602 +k1,14667:32583029,22983328:0 +) +(1,14668:6630773,23848408:25952256,505283,134348 +k1,14667:8525002,23848408:202089 +k1,14667:10424473,23848408:202089 +k1,14667:13701512,23848408:202090 +k1,14667:15007883,23848408:202089 +k1,14667:15957738,23848408:202089 +k1,14667:18951661,23848408:202089 +k1,14667:20889143,23848408:202089 +k1,14667:22947212,23848408:202089 +k1,14667:26099077,23848408:202090 +k1,14667:26984051,23848408:202089 +k1,14667:30231598,23848408:202089 +k1,14668:32583029,23848408:0 +) +(1,14668:6630773,24713488:25952256,473825,7863 +k1,14668:32583028,24713488:23125032 +g1,14668:32583028,24713488 +) +(1,14670:6630773,25578568:25952256,513147,134348 +h1,14669:6630773,25578568:983040,0,0 +k1,14669:10690291,25578568:286610 +(1,14669:10690291,25578568:0,452978,115847 +r1,14713:12455404,25578568:1765113,568825,115847 +k1,14669:10690291,25578568:-1765113 +) +(1,14669:10690291,25578568:1765113,452978,115847 +k1,14669:10690291,25578568:3277 +h1,14669:12452127,25578568:0,411205,112570 +) +k1,14669:12742013,25578568:286609 +k1,14669:13560120,25578568:286610 +k1,14669:14765545,25578568:286610 +k1,14669:18423982,25578568:286610 +k1,14669:19658242,25578568:286609 +k1,14669:21879475,25578568:286610 +k1,14669:25416015,25578568:286610 +k1,14669:28194304,25578568:286610 +k1,14669:29677600,25578568:286609 +k1,14669:31649796,25578568:286610 +k1,14669:32583029,25578568:0 +) +(1,14670:6630773,26443648:25952256,513147,134348 +k1,14669:7698452,26443648:279281 +k1,14669:9070219,26443648:279282 +k1,14669:10341060,26443648:279281 +k1,14669:12822352,26443648:279282 +k1,14669:13753061,26443648:279281 +k1,14669:15776255,26443648:279281 +k1,14669:17003188,26443648:279282 +k1,14669:18211034,26443648:279201 +k1,14669:19681760,26443648:279281 +k1,14669:21369330,26443648:279201 +k1,14669:23840791,26443648:279282 +h1,14669:24811379,26443648:0,0,0 +k1,14669:25471424,26443648:279281 +k1,14669:27022103,26443648:279281 +k1,14669:30487745,26443648:279282 +k1,14669:31298523,26443648:279281 +k1,14669:32583029,26443648:0 +) +(1,14670:6630773,27308728:25952256,513147,134348 +k1,14669:9291675,27308728:182330 +k1,14669:11484651,27308728:182331 +k1,14669:12658541,27308728:182330 +k1,14669:15312889,27308728:182330 +k1,14669:16686665,27308728:182331 +k1,14669:19341668,27308728:182330 +k1,14669:22710358,27308728:182330 +k1,14669:23424186,27308728:182331 +k1,14669:24222554,27308728:182330 +k1,14669:25735266,27308728:182331 +k1,14669:26936681,27308728:182330 +k1,14669:29106718,27308728:182330 +k1,14669:29940477,27308728:182331 +k1,14669:30870573,27308728:182330 +k1,14669:32583029,27308728:0 +) +(1,14670:6630773,28173808:25952256,513147,126483 +k1,14669:7358676,28173808:196406 +k1,14669:10560563,28173808:196406 +k1,14669:11776055,28173808:196407 +k1,14669:13353305,28173808:196406 +k1,14669:16310087,28173808:196406 +k1,14669:17525578,28173808:196406 +k1,14669:19790301,28173808:196407 +k1,14669:20645999,28173808:196406 +k1,14669:21861490,28173808:196406 +k1,14669:25668930,28173808:196406 +k1,14669:27056782,28173808:196407 +k1,14669:27609048,28173808:196406 +k1,14669:29793161,28173808:196406 +k1,14669:32583029,28173808:0 +) +(1,14670:6630773,29038888:25952256,513147,7863 +g1,14669:8114508,29038888 +g1,14669:10981708,29038888 +g1,14669:11796975,29038888 +g1,14669:13015289,29038888 +g1,14669:14247366,29038888 +g1,14669:14802455,29038888 +g1,14669:16101378,29038888 +g1,14669:16952035,29038888 +g1,14669:17921967,29038888 +g1,14669:18536039,29038888 +k1,14670:32583029,29038888:11299066 +g1,14670:32583029,29038888 +) +(1,14698:6630773,29903968:25952256,513147,134348 +h1,14697:6630773,29903968:983040,0,0 +k1,14697:8649544,29903968:407896 +k1,14697:10754822,29903968:407896 +k1,14697:12860756,29903968:407896 +k1,14697:16709947,29903968:407896 +k1,14697:18618617,29903968:407896 +k1,14697:19974164,29903968:407896 +k1,14697:23769616,29903968:407896 +k1,14697:26689507,29903968:407896 +k1,14697:29575975,29903968:407896 +k1,14697:32168186,29903968:407896 +k1,14698:32583029,29903968:0 +) +(1,14698:6630773,30769048:25952256,513147,134348 +k1,14697:9856658,30769048:465509 +k1,14697:10678026,30769048:465508 +k1,14697:14781437,30769048:465508 +k1,14697:16194597,30769048:465509 +k1,14697:19883167,30769048:465509 +k1,14697:21367760,30769048:465508 +k1,14697:22247844,30769048:465241 +k1,14697:25408849,30769048:465509 +k1,14697:26525785,30769048:465508 +k1,14697:27739060,30769048:465509 +k1,14697:29917024,30769048:465508 +k1,14697:32583029,30769048:0 +) +(1,14698:6630773,31634128:25952256,513147,134348 +k1,14697:8327566,31634128:329056 +k1,14697:9675707,31634128:329056 +k1,14697:10419476,31634128:328926 +k1,14697:13444028,31634128:329056 +k1,14697:17148188,31634128:329056 +k1,14697:18496329,31634128:329056 +k1,14697:21303957,31634128:329056 +k1,14697:23817328,31634128:329056 +k1,14697:26020714,31634128:329056 +k1,14697:29375567,31634128:329056 +k1,14697:30473360,31634128:329056 +k1,14697:31563944,31634128:329056 +k1,14697:32583029,31634128:0 +) +(1,14698:6630773,32499208:25952256,513147,134348 +k1,14697:8685163,32499208:316375 +k1,14697:9660830,32499208:316375 +k1,14697:13706204,32499208:316375 +k1,14697:16931067,32499208:316375 +k1,14697:18438887,32499208:316375 +k1,14697:20849137,32499208:316375 +k1,14697:22184596,32499208:316374 +k1,14697:23881815,32499208:316375 +k1,14697:25765811,32499208:316375 +k1,14697:27101271,32499208:316375 +k1,14697:29704197,32499208:316375 +k1,14697:30679864,32499208:316375 +k1,14698:32583029,32499208:0 +) +(1,14698:6630773,33364288:25952256,513147,134348 +k1,14697:7910691,33364288:289669 +k1,14697:9391805,33364288:289669 +k1,14697:12824581,33364288:289669 +k1,14697:15626245,33364288:289669 +k1,14697:18394486,33364288:289669 +k1,14697:20868470,33364288:289669 +k1,14697:22354826,33364288:289669 +k1,14697:26483594,33364288:289669 +k1,14697:29799060,33364288:289669 +k1,14697:32583029,33364288:0 +) +(1,14698:6630773,34229368:25952256,473825,122846 +k1,14697:7607757,34229368:360946 +k1,14697:8383384,34229368:360784 +k1,14697:9735889,34229368:360945 +(1,14697:9735889,34229368:0,452978,115847 +r1,14713:12907849,34229368:3171960,568825,115847 +k1,14697:9735889,34229368:-3171960 +) +(1,14697:9735889,34229368:3171960,452978,115847 +k1,14697:9735889,34229368:3277 +h1,14697:12904572,34229368:0,411205,112570 +) +k1,14697:13442465,34229368:360946 +(1,14697:13442465,34229368:0,459977,115847 +r1,14713:17669561,34229368:4227096,575824,115847 +k1,14697:13442465,34229368:-4227096 +) +(1,14697:13442465,34229368:4227096,459977,115847 +k1,14697:13442465,34229368:3277 +h1,14697:17666284,34229368:0,411205,112570 +) +k1,14697:18204177,34229368:360946 +(1,14697:18204177,34229368:0,452978,122846 +r1,14713:22782985,34229368:4578808,575824,122846 +k1,14697:18204177,34229368:-4578808 +) +(1,14697:18204177,34229368:4578808,452978,122846 +k1,14697:18204177,34229368:3277 +h1,14697:22779708,34229368:0,411205,112570 +) +k1,14697:23317601,34229368:360946 +(1,14697:23317601,34229368:0,452978,115847 +r1,14713:26489561,34229368:3171960,568825,115847 +k1,14697:23317601,34229368:-3171960 +) +(1,14697:23317601,34229368:3171960,452978,115847 +k1,14697:23317601,34229368:3277 +h1,14697:26486284,34229368:0,411205,112570 +) +k1,14697:27024177,34229368:360946 +(1,14697:27024177,34229368:0,459977,115847 +r1,14713:29492714,34229368:2468537,575824,115847 +k1,14697:27024177,34229368:-2468537 +) +(1,14697:27024177,34229368:2468537,459977,115847 +k1,14697:27024177,34229368:3277 +h1,14697:29489437,34229368:0,411205,112570 +) +k1,14697:30027330,34229368:360946 +(1,14697:30027330,34229368:0,459977,115847 +r1,14713:32495867,34229368:2468537,575824,115847 +k1,14697:30027330,34229368:-2468537 +) +(1,14697:30027330,34229368:2468537,459977,115847 +k1,14697:30027330,34229368:3277 +h1,14697:32492590,34229368:0,411205,112570 +) +k1,14698:32583029,34229368:0 +) +(1,14698:6630773,35094448:25952256,505283,122846 +(1,14697:6630773,35094448:0,452978,122846 +r1,14713:10857869,35094448:4227096,575824,122846 +k1,14697:6630773,35094448:-4227096 +) +(1,14697:6630773,35094448:4227096,452978,122846 +k1,14697:6630773,35094448:3277 +h1,14697:10854592,35094448:0,411205,112570 +) +k1,14697:11245608,35094448:214069 +(1,14697:11245608,35094448:0,452978,122846 +r1,14713:14417568,35094448:3171960,575824,122846 +k1,14697:11245608,35094448:-3171960 +) +(1,14697:11245608,35094448:3171960,452978,122846 +k1,14697:11245608,35094448:3277 +h1,14697:14414291,35094448:0,411205,112570 +) +k1,14697:14805308,35094448:214070 +(1,14697:14805308,35094448:0,452978,115847 +r1,14713:18328980,35094448:3523672,568825,115847 +k1,14697:14805308,35094448:-3523672 +) +(1,14697:14805308,35094448:3523672,452978,115847 +k1,14697:14805308,35094448:3277 +h1,14697:18325703,35094448:0,411205,112570 +) +k1,14697:18716719,35094448:214069 +k1,14697:20122233,35094448:214069 +(1,14697:20122233,35094448:0,452978,115847 +r1,14713:23997617,35094448:3875384,568825,115847 +k1,14697:20122233,35094448:-3875384 +) +(1,14697:20122233,35094448:3875384,452978,115847 +k1,14697:20122233,35094448:3277 +h1,14697:23994340,35094448:0,411205,112570 +) +k1,14697:24385356,35094448:214069 +k1,14697:27389294,35094448:214070 +(1,14697:27389294,35094448:0,459977,115847 +r1,14713:31264678,35094448:3875384,575824,115847 +k1,14697:27389294,35094448:-3875384 +) +(1,14697:27389294,35094448:3875384,459977,115847 +k1,14697:27389294,35094448:3277 +h1,14697:31261401,35094448:0,411205,112570 +) +k1,14697:31478747,35094448:214069 +k1,14697:32583029,35094448:0 +) +(1,14698:6630773,35959528:25952256,513147,134348 +k1,14697:7607026,35959528:228487 +k1,14697:9348738,35959528:228486 +k1,14697:10228653,35959528:228487 +k1,14697:12417976,35959528:228486 +k1,14697:13929658,35959528:228487 +k1,14697:15818826,35959528:228486 +k1,14697:16945156,35959528:228487 +k1,14697:18870370,35959528:228487 +k1,14697:22124653,35959528:228486 +k1,14697:23457422,35959528:228487 +k1,14697:24433674,35959528:228486 +k1,14697:26175387,35959528:228487 +k1,14697:28101911,35959528:228486 +k1,14697:30265021,35959528:228487 +k1,14697:32583029,35959528:0 +) +(1,14698:6630773,36824608:25952256,505283,134348 +g1,14697:8197739,36824608 +(1,14697:8197739,36824608:0,452978,115847 +r1,14713:9259428,36824608:1061689,568825,115847 +k1,14697:8197739,36824608:-1061689 +) +(1,14697:8197739,36824608:1061689,452978,115847 +k1,14697:8197739,36824608:3277 +h1,14697:9256151,36824608:0,411205,112570 +) +g1,14697:9458657,36824608 +g1,14697:10340771,36824608 +(1,14697:10340771,36824608:0,452978,115847 +r1,14713:11754172,36824608:1413401,568825,115847 +k1,14697:10340771,36824608:-1413401 +) +(1,14697:10340771,36824608:1413401,452978,115847 +k1,14697:10340771,36824608:3277 +h1,14697:11750895,36824608:0,411205,112570 +) +g1,14697:12127071,36824608 +g1,14697:13522987,36824608 +g1,14697:16952486,36824608 +g1,14697:18539768,36824608 +g1,14697:20567451,36824608 +g1,14697:22046598,36824608 +g1,14697:23264912,36824608 +k1,14698:32583029,36824608:7148220 +g1,14698:32583029,36824608 +) +v1,14700:6630773,37689688:0,393216,0 +(1,14701:6630773,39883916:25952256,2587444,0 +g1,14701:6630773,39883916 +g1,14701:6237557,39883916 +r1,14713:6368629,39883916:131072,2587444,0 +g1,14701:6567858,39883916 +g1,14701:6764466,39883916 +[1,14701:6764466,39883916:25818563,2587444,0 +(1,14701:6764466,38050865:25818563,754393,260573 +(1,14700:6764466,38050865:0,754393,260573 +r1,14713:7856192,38050865:1091726,1014966,260573 +k1,14700:6764466,38050865:-1091726 +) +(1,14700:6764466,38050865:1091726,754393,260573 +) +k1,14700:8071360,38050865:215168 +k1,14700:8399040,38050865:327680 +k1,14700:9242043,38050865:215168 +k1,14700:10887206,38050865:215167 +k1,14700:11753802,38050865:215168 +(1,14700:11753802,38050865:0,452978,115847 +r1,14713:13518915,38050865:1765113,568825,115847 +k1,14700:11753802,38050865:-1765113 +) +(1,14700:11753802,38050865:1765113,452978,115847 +k1,14700:11753802,38050865:3277 +h1,14700:13515638,38050865:0,411205,112570 +) +k1,14700:13907753,38050865:215168 +k1,14700:15142006,38050865:215168 +k1,14700:16390677,38050865:215168 +k1,14700:17265137,38050865:215168 +k1,14700:18499389,38050865:215167 +k1,14700:20702264,38050865:215168 +(1,14700:20702264,38050865:0,459977,115847 +r1,14713:23170801,38050865:2468537,575824,115847 +k1,14700:20702264,38050865:-2468537 +) +(1,14700:20702264,38050865:2468537,459977,115847 +k1,14700:20702264,38050865:3277 +h1,14700:23167524,38050865:0,411205,112570 +) +k1,14700:23385969,38050865:215168 +k1,14700:24132634,38050865:215168 +k1,14700:24703662,38050865:215168 +k1,14700:27614325,38050865:215167 +k1,14700:29102858,38050865:215168 +k1,14700:30514713,38050865:215168 +k1,14700:32583029,38050865:0 +) +(1,14701:6764466,38915945:25818563,513147,134348 +k1,14700:7624793,38915945:201035 +k1,14700:8614225,38915945:201034 +k1,14700:12217889,38915945:201035 +k1,14700:12884885,38915945:201035 +k1,14700:14152191,38915945:201035 +k1,14700:16759052,38915945:201034 +k1,14700:17576125,38915945:201035 +(1,14700:17576125,38915945:0,452978,115847 +r1,14713:18989526,38915945:1413401,568825,115847 +k1,14700:17576125,38915945:-1413401 +) +(1,14700:17576125,38915945:1413401,452978,115847 +k1,14700:17576125,38915945:3277 +h1,14700:18986249,38915945:0,411205,112570 +) +k1,14700:19190561,38915945:201035 +k1,14700:20383156,38915945:201035 +k1,14700:23403549,38915945:201034 +k1,14700:24256012,38915945:201035 +k1,14700:25204813,38915945:201035 +k1,14700:29016882,38915945:201035 +k1,14700:29869344,38915945:201034 +k1,14700:30818145,38915945:201035 +k1,14700:32583029,38915945:0 +) +(1,14701:6764466,39781025:25818563,513147,102891 +g1,14700:9004486,39781025 +g1,14700:9559575,39781025 +g1,14700:11917560,39781025 +k1,14701:32583028,39781025:17969972 +g1,14701:32583028,39781025 +) +] +g1,14701:32583029,39883916 +) +h1,14701:6630773,39883916:0,0,0 +(1,14704:6630773,40748996:25952256,505283,134348 +h1,14703:6630773,40748996:983040,0,0 +k1,14703:8661588,40748996:229886 +k1,14703:11552891,40748996:229886 +k1,14703:12801861,40748996:229885 +k1,14703:18542669,40748996:229886 +k1,14703:21562423,40748996:229886 +k1,14703:25104499,40748996:229886 +k1,14703:27926988,40748996:229885 +k1,14703:30634790,40748996:229886 +k1,14703:31480714,40748996:229886 +k1,14704:32583029,40748996:0 +) +(1,14704:6630773,41614076:25952256,513147,126483 +k1,14703:9975674,41614076:191309 +k1,14703:11358428,41614076:191309 +k1,14703:14703329,41614076:191309 +k1,14703:15426135,41614076:191309 +k1,14703:17329900,41614076:191309 +k1,14703:18172637,41614076:191309 +k1,14703:19383031,41614076:191309 +(1,14703:19383031,41614076:0,452978,115847 +r1,14713:22554991,41614076:3171960,568825,115847 +k1,14703:19383031,41614076:-3171960 +) +(1,14703:19383031,41614076:3171960,452978,115847 +k1,14703:19383031,41614076:3277 +h1,14703:22551714,41614076:0,411205,112570 +) +k1,14703:22746300,41614076:191309 +k1,14703:24326972,41614076:191309 +k1,14703:25626495,41614076:191309 +k1,14703:27014491,41614076:191309 +k1,14703:31529210,41614076:191309 +k1,14704:32583029,41614076:0 +) +(1,14704:6630773,42479156:25952256,505283,134348 +g1,14703:9693270,42479156 +g1,14703:10423996,42479156 +g1,14703:12317986,42479156 +k1,14704:32583028,42479156:19521864 +g1,14704:32583028,42479156 +) +(1,14705:6630773,43344236:25952256,0,0 +h1,14705:6630773,43344236:983040,0,0 +k1,14705:32583029,43344236:24969216 +g1,14705:32583029,43344236 ) -(1,14709:16125732,44373856:16457297,964084,570224 -(1,14709:16125732,44373856:6962339,964084,570224 -h1,14709:16125732,44373856:0,0,0 -g1,14709:16759335,44373856 -g1,14709:17509592,44373856 -(1,14709:17509592,44373856:1646264,964084,479774 -(1,14709:17509592,44373856:1646264,964084,479774 -h1,14709:17509592,44373856:78643,0,0 -[1,14709:17588235,44373856:1488978,964084,479774 -(1,14709:17588235,43915055:1488978,505283,95027 +(1,14707:16125732,44373856:16457297,964084,570224 +(1,14707:16125732,44373856:6962339,964084,570224 +h1,14707:16125732,44373856:0,0,0 +g1,14707:16759335,44373856 +g1,14707:17509592,44373856 +(1,14707:17509592,44373856:1646264,964084,479774 +(1,14707:17509592,44373856:1646264,964084,479774 +h1,14707:17509592,44373856:78643,0,0 +[1,14707:17588235,44373856:1488978,964084,479774 +(1,14707:17588235,43915055:1488978,505283,95027 ) -(1,14709:17588235,44845766:1488978,505283,7864 -k1,14709:17962118,44845766:373883 -k1,14709:19077213,44845766:373883 +(1,14707:17588235,44845766:1488978,505283,7864 +k1,14707:17962118,44845766:373883 +k1,14707:19077213,44845766:373883 ) ] -h1,14709:19077213,44373856:78643,0,0 +h1,14707:19077213,44373856:78643,0,0 ) ) -g1,14709:19337916,44373856 -g1,14709:20088173,44373856 -(1,14709:20088173,44373856:2999898,964084,570224 -(1,14709:20088173,44373856:2999898,964084,570224 -h1,14709:20088173,44373856:78643,0,0 -[1,14709:20166816,44373856:2842612,964084,570224 -(1,14709:20166816,43915055:2842612,505283,103819 -k1,14709:20324523,43915055:157707 -(1,14709:20851432,44013369:971374,248644,5505 +g1,14707:19337916,44373856 +g1,14707:20088173,44373856 +(1,14707:20088173,44373856:2999898,964084,570224 +(1,14707:20088173,44373856:2999898,964084,570224 +h1,14707:20088173,44373856:78643,0,0 +[1,14707:20166816,44373856:2842612,964084,570224 +(1,14707:20166816,43915055:2842612,505283,103819 +k1,14707:20324523,43915055:157707 +(1,14707:20851432,44013369:971374,248644,5505 ) -k1,14709:23009428,43915055:157707 +k1,14707:23009428,43915055:157707 ) -(1,14709:20166816,44845766:2842612,505283,98314 -(1,14709:20693725,44944080:427295,331678,0 +(1,14707:20166816,44845766:2842612,505283,98314 +(1,14707:20693725,44944080:427295,331678,0 ) -g1,14709:21266668,44845766 -g1,14709:21980513,44845766 +g1,14707:21266668,44845766 +g1,14707:21980513,44845766 ) ] -h1,14709:23009428,44373856:78643,0,0 +h1,14707:23009428,44373856:78643,0,0 ) ) ) -(1,14709:31260513,44373856:1322516,505283,95026 -(1,14709:31260513,44373856:1322516,505283,95026 +(1,14707:31260513,44373856:1322516,505283,95026 +(1,14707:31260513,44373856:1322516,505283,95026 ) ) ) ] -(1,14715:32583029,45706769:0,0,0 -g1,14715:32583029,45706769 +(1,14713:32583029,45706769:0,0,0 +g1,14713:32583029,45706769 ) ) ] -(1,14715:6630773,47279633:25952256,0,0 -h1,14715:6630773,47279633:25952256,0,0 +(1,14713:6630773,47279633:25952256,0,0 +h1,14713:6630773,47279633:25952256,0,0 ) ] -(1,14715:4262630,4025873:0,0,0 -[1,14715:-473656,4025873:0,0,0 -(1,14715:-473656,-710413:0,0,0 -(1,14715:-473656,-710413:0,0,0 -g1,14715:-473656,-710413 +(1,14713:4262630,4025873:0,0,0 +[1,14713:-473656,4025873:0,0,0 +(1,14713:-473656,-710413:0,0,0 +(1,14713:-473656,-710413:0,0,0 +g1,14713:-473656,-710413 ) -g1,14715:-473656,-710413 +g1,14713:-473656,-710413 ) ] ) ] -!32705 -}236 -Input:2528:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2529:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2530:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!32678 +}237 Input:2531:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2532:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2533:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2534:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2535:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{237 -[1,14829:4262630,47279633:28320399,43253760,0 -(1,14829:4262630,4025873:0,0,0 -[1,14829:-473656,4025873:0,0,0 -(1,14829:-473656,-710413:0,0,0 -(1,14829:-473656,-644877:0,0,0 -k1,14829:-473656,-644877:-65536 +{238 +[1,14827:4262630,47279633:28320399,43253760,0 +(1,14827:4262630,4025873:0,0,0 +[1,14827:-473656,4025873:0,0,0 +(1,14827:-473656,-710413:0,0,0 +(1,14827:-473656,-644877:0,0,0 +k1,14827:-473656,-644877:-65536 ) -(1,14829:-473656,4736287:0,0,0 -k1,14829:-473656,4736287:5209943 +(1,14827:-473656,4736287:0,0,0 +k1,14827:-473656,4736287:5209943 ) -g1,14829:-473656,-710413 +g1,14827:-473656,-710413 ) ] ) -[1,14829:6630773,47279633:25952256,43253760,0 -[1,14829:6630773,4812305:25952256,786432,0 -(1,14829:6630773,4812305:25952256,513147,126483 -(1,14829:6630773,4812305:25952256,513147,126483 -g1,14829:3078558,4812305 -[1,14829:3078558,4812305:0,0,0 -(1,14829:3078558,2439708:0,1703936,0 -k1,14829:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14829:2537886,2439708:1179648,16384,0 +[1,14827:6630773,47279633:25952256,43253760,0 +[1,14827:6630773,4812305:25952256,786432,0 +(1,14827:6630773,4812305:25952256,513147,126483 +(1,14827:6630773,4812305:25952256,513147,126483 +g1,14827:3078558,4812305 +[1,14827:3078558,4812305:0,0,0 +(1,14827:3078558,2439708:0,1703936,0 +k1,14827:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14827:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14829:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14827:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14829:3078558,4812305:0,0,0 -(1,14829:3078558,2439708:0,1703936,0 -g1,14829:29030814,2439708 -g1,14829:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14829:36151628,1915420:16384,1179648,0 +[1,14827:3078558,4812305:0,0,0 +(1,14827:3078558,2439708:0,1703936,0 +g1,14827:29030814,2439708 +g1,14827:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14827:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14829:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14827:37855564,2439708:1179648,16384,0 ) ) -k1,14829:3078556,2439708:-34777008 +k1,14827:3078556,2439708:-34777008 ) ] -[1,14829:3078558,4812305:0,0,0 -(1,14829:3078558,49800853:0,16384,2228224 -k1,14829:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14829:2537886,49800853:1179648,16384,0 +[1,14827:3078558,4812305:0,0,0 +(1,14827:3078558,49800853:0,16384,2228224 +k1,14827:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14827:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14829:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14827:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14829:3078558,4812305:0,0,0 -(1,14829:3078558,49800853:0,16384,2228224 -g1,14829:29030814,49800853 -g1,14829:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14829:36151628,51504789:16384,1179648,0 +[1,14827:3078558,4812305:0,0,0 +(1,14827:3078558,49800853:0,16384,2228224 +g1,14827:29030814,49800853 +g1,14827:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14827:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14829:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14827:37855564,49800853:1179648,16384,0 ) ) -k1,14829:3078556,49800853:-34777008 +k1,14827:3078556,49800853:-34777008 ) ] -g1,14829:6630773,4812305 -k1,14829:19575446,4812305:11749296 -g1,14829:21198117,4812305 -g1,14829:21985204,4812305 -g1,14829:24539797,4812305 -g1,14829:25949476,4812305 -g1,14829:28728857,4812305 -g1,14829:29852144,4812305 +g1,14827:6630773,4812305 +k1,14827:19575446,4812305:11749296 +g1,14827:21198117,4812305 +g1,14827:21985204,4812305 +g1,14827:24539797,4812305 +g1,14827:25949476,4812305 +g1,14827:28728857,4812305 +g1,14827:29852144,4812305 ) ) ] -[1,14829:6630773,45706769:25952256,40108032,0 -(1,14829:6630773,45706769:25952256,40108032,0 -(1,14829:6630773,45706769:0,0,0 -g1,14829:6630773,45706769 +[1,14827:6630773,45706769:25952256,40108032,0 +(1,14827:6630773,45706769:25952256,40108032,0 +(1,14827:6630773,45706769:0,0,0 +g1,14827:6630773,45706769 ) -[1,14829:6630773,45706769:25952256,40108032,0 -(1,14713:6630773,6254097:25952256,513147,134348 -g1,14712:8021447,6254097 -g1,14712:8752173,6254097 -g1,14712:13152915,6254097 -g1,14712:13968182,6254097 -g1,14712:14582254,6254097 -g1,14712:16667609,6254097 -g1,14712:17885923,6254097 -g1,14712:19823167,6254097 -(1,14712:19823167,6254097:0,452978,115847 -r1,14829:23346839,6254097:3523672,568825,115847 -k1,14712:19823167,6254097:-3523672 -) -(1,14712:19823167,6254097:3523672,452978,115847 -k1,14712:19823167,6254097:3277 -h1,14712:23343562,6254097:0,411205,112570 -) -g1,14712:23546068,6254097 -g1,14712:24431459,6254097 -g1,14712:24986548,6254097 -g1,14712:29024876,6254097 -k1,14713:32583029,6254097:810229 -g1,14713:32583029,6254097 -) -v1,14715:6630773,6938952:0,393216,0 -(1,14723:6630773,8747387:25952256,2201651,196608 -g1,14723:6630773,8747387 -g1,14723:6630773,8747387 -g1,14723:6434165,8747387 -(1,14723:6434165,8747387:0,2201651,196608 -r1,14829:32779637,8747387:26345472,2398259,196608 -k1,14723:6434165,8747387:-26345472 -) -(1,14723:6434165,8747387:26345472,2201651,196608 -[1,14723:6630773,8747387:25952256,2005043,0 -(1,14717:6630773,7166783:25952256,424439,106246 -(1,14716:6630773,7166783:0,0,0 -g1,14716:6630773,7166783 -g1,14716:6630773,7166783 -g1,14716:6303093,7166783 -(1,14716:6303093,7166783:0,0,0 -) -g1,14716:6630773,7166783 -) -k1,14717:6630773,7166783:0 -h1,14717:11610082,7166783:0,0,0 -k1,14717:32583030,7166783:20972948 -g1,14717:32583030,7166783 -) -(1,14718:6630773,7851638:25952256,424439,106246 -h1,14718:6630773,7851638:0,0,0 -k1,14718:6630773,7851638:0 -h1,14718:11942036,7851638:0,0,0 -k1,14718:32583028,7851638:20640992 -g1,14718:32583028,7851638 -) -(1,14722:6630773,8667565:25952256,424439,79822 -(1,14720:6630773,8667565:0,0,0 -g1,14720:6630773,8667565 -g1,14720:6630773,8667565 -g1,14720:6303093,8667565 -(1,14720:6303093,8667565:0,0,0 -) -g1,14720:6630773,8667565 -) -g1,14722:7626635,8667565 -g1,14722:8954451,8667565 -g1,14722:11278129,8667565 -g1,14722:11610083,8667565 -g1,14722:13933761,8667565 -g1,14722:14265715,8667565 -h1,14722:16589393,8667565:0,0,0 -k1,14722:32583029,8667565:15993636 -g1,14722:32583029,8667565 -) -] -) -g1,14723:32583029,8747387 -g1,14723:6630773,8747387 -g1,14723:6630773,8747387 -g1,14723:32583029,8747387 -g1,14723:32583029,8747387 -) -h1,14723:6630773,8943995:0,0,0 -v1,14727:6630773,9628850:0,393216,0 -(1,14732:6630773,10627964:25952256,1392330,196608 -g1,14732:6630773,10627964 -g1,14732:6630773,10627964 -g1,14732:6434165,10627964 -(1,14732:6434165,10627964:0,1392330,196608 -r1,14829:32779637,10627964:26345472,1588938,196608 -k1,14732:6434165,10627964:-26345472 -) -(1,14732:6434165,10627964:26345472,1392330,196608 -[1,14732:6630773,10627964:25952256,1195722,0 -(1,14729:6630773,9863287:25952256,431045,106246 -(1,14728:6630773,9863287:0,0,0 -g1,14728:6630773,9863287 -g1,14728:6630773,9863287 -g1,14728:6303093,9863287 -(1,14728:6303093,9863287:0,0,0 -) -g1,14728:6630773,9863287 -) -g1,14729:8290543,9863287 -g1,14729:9286405,9863287 -g1,14729:12273991,9863287 -g1,14729:12937899,9863287 -g1,14729:17917208,9863287 -g1,14729:19245024,9863287 -g1,14729:20572840,9863287 -g1,14729:22232610,9863287 -g1,14729:22896518,9863287 -k1,14729:22896518,9863287:0 -h1,14729:26216057,9863287:0,0,0 -k1,14729:32583029,9863287:6366972 -g1,14729:32583029,9863287 -) -(1,14730:6630773,10548142:25952256,424439,79822 -h1,14730:6630773,10548142:0,0,0 -g1,14730:6962727,10548142 -g1,14730:7294681,10548142 -g1,14730:7626635,10548142 -g1,14730:7958589,10548142 -g1,14730:8290543,10548142 -g1,14730:8622497,10548142 -g1,14730:8954451,10548142 -g1,14730:9286405,10548142 -g1,14730:9618359,10548142 -g1,14730:9950313,10548142 -g1,14730:10282267,10548142 -g1,14730:10614221,10548142 -g1,14730:12937899,10548142 -g1,14730:13601807,10548142 -g1,14730:15593531,10548142 -g1,14730:16589393,10548142 -h1,14730:19908932,10548142:0,0,0 -k1,14730:32583029,10548142:12674097 -g1,14730:32583029,10548142 -) -] -) -g1,14732:32583029,10627964 -g1,14732:6630773,10627964 -g1,14732:6630773,10627964 -g1,14732:32583029,10627964 -g1,14732:32583029,10627964 -) -h1,14732:6630773,10824572:0,0,0 -(1,14736:6630773,11689652:25952256,513147,134348 -h1,14735:6630773,11689652:983040,0,0 -k1,14735:8622131,11689652:190429 -k1,14735:9760211,11689652:190429 -k1,14735:11652609,11689652:190428 -k1,14735:13555494,11689652:190429 -k1,14735:16063931,11689652:190429 -k1,14735:17122712,11689652:190429 -k1,14735:18405625,11689652:190428 -k1,14735:20412057,11689652:190429 -k1,14735:23387111,11689652:190429 -k1,14735:24809617,11689652:190429 -k1,14735:27278733,11689652:190429 -h1,14735:28249321,11689652:0,0,0 -k1,14735:28439749,11689652:190428 -k1,14735:29439548,11689652:190429 -k1,14735:31128130,11689652:190429 -h1,14735:32323507,11689652:0,0,0 -k1,14736:32583029,11689652:0 -k1,14736:32583029,11689652:0 -) -v1,14738:6630773,12374507:0,393216,0 -(1,14782:6630773,31412500:25952256,19431209,196608 -g1,14782:6630773,31412500 -g1,14782:6630773,31412500 -g1,14782:6434165,31412500 -(1,14782:6434165,31412500:0,19431209,196608 -r1,14829:32779637,31412500:26345472,19627817,196608 -k1,14782:6434165,31412500:-26345472 -) -(1,14782:6434165,31412500:26345472,19431209,196608 -[1,14782:6630773,31412500:25952256,19234601,0 -(1,14740:6630773,12608944:25952256,431045,79822 -(1,14739:6630773,12608944:0,0,0 -g1,14739:6630773,12608944 -g1,14739:6630773,12608944 -g1,14739:6303093,12608944 -(1,14739:6303093,12608944:0,0,0 -) -g1,14739:6630773,12608944 -) -k1,14740:6630773,12608944:0 -h1,14740:10282267,12608944:0,0,0 -k1,14740:32583029,12608944:22300762 -g1,14740:32583029,12608944 -) -(1,14744:6630773,13424871:25952256,424439,79822 -(1,14742:6630773,13424871:0,0,0 -g1,14742:6630773,13424871 -g1,14742:6630773,13424871 -g1,14742:6303093,13424871 -(1,14742:6303093,13424871:0,0,0 -) -g1,14742:6630773,13424871 -) -g1,14744:7626635,13424871 -g1,14744:8954451,13424871 -h1,14744:10614221,13424871:0,0,0 -k1,14744:32583029,13424871:21968808 -g1,14744:32583029,13424871 -) -(1,14746:6630773,14240798:25952256,431045,106246 -(1,14745:6630773,14240798:0,0,0 -g1,14745:6630773,14240798 -g1,14745:6630773,14240798 -g1,14745:6303093,14240798 -(1,14745:6303093,14240798:0,0,0 -) -g1,14745:6630773,14240798 -) -k1,14746:6630773,14240798:0 -h1,14746:10946175,14240798:0,0,0 -k1,14746:32583029,14240798:21636854 -g1,14746:32583029,14240798 -) -(1,14763:6630773,15056725:25952256,398014,0 -(1,14748:6630773,15056725:0,0,0 -g1,14748:6630773,15056725 -g1,14748:6630773,15056725 -g1,14748:6303093,15056725 -(1,14748:6303093,15056725:0,0,0 -) -g1,14748:6630773,15056725 -) -h1,14763:7294681,15056725:0,0,0 -k1,14763:32583029,15056725:25288348 -g1,14763:32583029,15056725 -) -(1,14763:6630773,15741580:25952256,424439,86428 -h1,14763:6630773,15741580:0,0,0 -g1,14763:7626635,15741580 -g1,14763:10614220,15741580 -g1,14763:12273990,15741580 -g1,14763:12937898,15741580 -g1,14763:17917207,15741580 -g1,14763:19245023,15741580 -h1,14763:19908931,15741580:0,0,0 -k1,14763:32583029,15741580:12674098 -g1,14763:32583029,15741580 -) -(1,14763:6630773,16426435:25952256,398014,0 -h1,14763:6630773,16426435:0,0,0 -h1,14763:7294681,16426435:0,0,0 -k1,14763:32583029,16426435:25288348 -g1,14763:32583029,16426435 -) -(1,14763:6630773,17111290:25952256,398014,6605 -h1,14763:6630773,17111290:0,0,0 -g1,14763:7626635,17111290 -h1,14763:11278128,17111290:0,0,0 -k1,14763:32583028,17111290:21304900 -g1,14763:32583028,17111290 -) -(1,14763:6630773,17796145:25952256,424439,79822 -h1,14763:6630773,17796145:0,0,0 -g1,14763:7626635,17796145 -g1,14763:7958589,17796145 -g1,14763:8290543,17796145 -g1,14763:8622497,17796145 -g1,14763:8954451,17796145 -g1,14763:11942036,17796145 -g1,14763:13601806,17796145 -g1,14763:15593530,17796145 -g1,14763:16257438,17796145 -g1,14763:18249162,17796145 -k1,14763:18249162,17796145:0 -h1,14763:20904794,17796145:0,0,0 -k1,14763:32583029,17796145:11678235 -g1,14763:32583029,17796145 -) -(1,14763:6630773,18481000:25952256,407923,9908 -h1,14763:6630773,18481000:0,0,0 -g1,14763:7626635,18481000 -g1,14763:8622497,18481000 -g1,14763:11942036,18481000 -g1,14763:12273990,18481000 -g1,14763:15593529,18481000 -g1,14763:15925483,18481000 -g1,14763:18249161,18481000 -g1,14763:21236747,18481000 -h1,14763:22232609,18481000:0,0,0 -k1,14763:32583029,18481000:10350420 -g1,14763:32583029,18481000 -) -(1,14763:6630773,19165855:25952256,407923,9908 -h1,14763:6630773,19165855:0,0,0 -g1,14763:7626635,19165855 -g1,14763:8290543,19165855 -g1,14763:8622497,19165855 -g1,14763:11942037,19165855 -g1,14763:12273991,19165855 -g1,14763:15593531,19165855 -g1,14763:15925485,19165855 -g1,14763:16257439,19165855 -g1,14763:18249163,19165855 -g1,14763:21236749,19165855 -h1,14763:22232611,19165855:0,0,0 -k1,14763:32583029,19165855:10350418 -g1,14763:32583029,19165855 -) -(1,14763:6630773,19850710:25952256,398014,0 -h1,14763:6630773,19850710:0,0,0 -g1,14763:7626635,19850710 -k1,14763:7626635,19850710:0 -h1,14763:8622497,19850710:0,0,0 -k1,14763:32583029,19850710:23960532 -g1,14763:32583029,19850710 -) -(1,14763:6630773,20535565:25952256,431045,112852 -h1,14763:6630773,20535565:0,0,0 -g1,14763:7626635,20535565 -g1,14763:10282267,20535565 -g1,14763:12605945,20535565 -g1,14763:12937899,20535565 -g1,14763:13601807,20535565 -g1,14763:15593531,20535565 -g1,14763:17585255,20535565 -g1,14763:19245025,20535565 -g1,14763:20904795,20535565 -g1,14763:22232611,20535565 -g1,14763:23892381,20535565 -g1,14763:25220197,20535565 -g1,14763:26548013,20535565 -g1,14763:27211921,20535565 -g1,14763:27875829,20535565 -h1,14763:28207783,20535565:0,0,0 -k1,14763:32583029,20535565:4375246 -g1,14763:32583029,20535565 -) -(1,14763:6630773,21220420:25952256,398014,0 -h1,14763:6630773,21220420:0,0,0 -h1,14763:7294681,21220420:0,0,0 -k1,14763:32583029,21220420:25288348 -g1,14763:32583029,21220420 -) -(1,14763:6630773,21905275:25952256,431045,112852 -h1,14763:6630773,21905275:0,0,0 -g1,14763:7626635,21905275 -g1,14763:10614220,21905275 -g1,14763:13601805,21905275 -g1,14763:15925483,21905275 -g1,14763:17917207,21905275 -g1,14763:18913069,21905275 -g1,14763:19908931,21905275 -g1,14763:22564563,21905275 -g1,14763:23560425,21905275 -h1,14763:25884103,21905275:0,0,0 -k1,14763:32583029,21905275:6698926 -g1,14763:32583029,21905275 -) -(1,14763:6630773,22590130:25952256,398014,0 -h1,14763:6630773,22590130:0,0,0 -h1,14763:7294681,22590130:0,0,0 -k1,14763:32583029,22590130:25288348 -g1,14763:32583029,22590130 -) -(1,14763:6630773,23274985:25952256,431045,112852 -h1,14763:6630773,23274985:0,0,0 -g1,14763:7626635,23274985 -g1,14763:9950313,23274985 -g1,14763:10946175,23274985 -g1,14763:14597668,23274985 -g1,14763:15593530,23274985 -g1,14763:19908931,23274985 -h1,14763:20240885,23274985:0,0,0 -k1,14763:32583029,23274985:12342144 -g1,14763:32583029,23274985 -) -(1,14763:6630773,23959840:25952256,424439,112852 -h1,14763:6630773,23959840:0,0,0 -g1,14763:7626635,23959840 -g1,14763:10614220,23959840 -g1,14763:14597667,23959840 -g1,14763:18249160,23959840 -k1,14763:18249160,23959840:0 -h1,14763:21236746,23959840:0,0,0 -k1,14763:32583029,23959840:11346283 -g1,14763:32583029,23959840 -) -(1,14765:6630773,24775767:25952256,431045,79822 -(1,14764:6630773,24775767:0,0,0 -g1,14764:6630773,24775767 -g1,14764:6630773,24775767 -g1,14764:6303093,24775767 -(1,14764:6303093,24775767:0,0,0 -) -g1,14764:6630773,24775767 -) -k1,14765:6630773,24775767:0 -h1,14765:11610082,24775767:0,0,0 -k1,14765:32583030,24775767:20972948 -g1,14765:32583030,24775767 -) -(1,14772:6630773,25591694:25952256,424439,79822 -(1,14767:6630773,25591694:0,0,0 -g1,14767:6630773,25591694 -g1,14767:6630773,25591694 -g1,14767:6303093,25591694 -(1,14767:6303093,25591694:0,0,0 -) -g1,14767:6630773,25591694 -) -k1,14772:7608495,25591694:313814 -k1,14772:7922308,25591694:313813 -k1,14772:9231984,25591694:313814 -k1,14772:9545798,25591694:313814 -k1,14772:13179151,25591694:313814 -k1,14772:13492964,25591694:313813 -k1,14772:17126317,25591694:313814 -k1,14772:17440131,25591694:313814 -k1,14772:21073484,25591694:313814 -k1,14772:21387297,25591694:313813 -k1,14772:21701111,25591694:313814 -k1,14772:25002510,25591694:313814 -k1,14772:28967817,25591694:313814 -k1,14772:29281630,25591694:313813 -k1,14772:29595444,25591694:313814 -h1,14772:32583029,25591694:0,0,0 -k1,14772:32583029,25591694:0 -k1,14772:32583029,25591694:0 -) -(1,14772:6630773,26276549:25952256,424439,79822 -h1,14772:6630773,26276549:0,0,0 -k1,14772:7608495,26276549:313814 -k1,14772:7922308,26276549:313813 -k1,14772:9231984,26276549:313814 -k1,14772:9545798,26276549:313814 -k1,14772:13179151,26276549:313814 -k1,14772:17144457,26276549:313813 -k1,14772:17458271,26276549:313814 -k1,14772:17772085,26276549:313814 -k1,14772:21073484,26276549:313814 -k1,14772:21387297,26276549:313813 -k1,14772:25020650,26276549:313814 -k1,14772:25334464,26276549:313814 -k1,14772:25648278,26276549:313814 -k1,14772:28949676,26276549:313813 -k1,14772:29263490,26276549:313814 -k1,14772:29263490,26276549:0 -h1,14772:32583029,26276549:0,0,0 -k1,14772:32583029,26276549:0 -k1,14772:32583029,26276549:0 -) -(1,14772:6630773,26961404:25952256,424439,86428 -h1,14772:6630773,26961404:0,0,0 -g1,14772:7626635,26961404 -k1,14772:7626635,26961404:0 -h1,14772:12273990,26961404:0,0,0 -k1,14772:32583030,26961404:20309040 -g1,14772:32583030,26961404 -) -(1,14772:6630773,27646259:25952256,424439,79822 -h1,14772:6630773,27646259:0,0,0 -g1,14772:7626635,27646259 -g1,14772:8954451,27646259 -h1,14772:12605944,27646259:0,0,0 -k1,14772:32583028,27646259:19977084 -g1,14772:32583028,27646259 -) -(1,14774:6630773,28462186:25952256,431045,79822 -(1,14773:6630773,28462186:0,0,0 -g1,14773:6630773,28462186 -g1,14773:6630773,28462186 -g1,14773:6303093,28462186 -(1,14773:6303093,28462186:0,0,0 -) -g1,14773:6630773,28462186 -) -k1,14774:6630773,28462186:0 -h1,14774:10614221,28462186:0,0,0 -k1,14774:32583029,28462186:21968808 -g1,14774:32583029,28462186 -) -(1,14781:6630773,29278113:25952256,424439,79822 -(1,14776:6630773,29278113:0,0,0 -g1,14776:6630773,29278113 -g1,14776:6630773,29278113 -g1,14776:6303093,29278113 -(1,14776:6303093,29278113:0,0,0 -) -g1,14776:6630773,29278113 -) -k1,14781:7603960,29278113:309279 -k1,14781:7913238,29278113:309278 -k1,14781:9218379,29278113:309279 -k1,14781:9527658,29278113:309279 -k1,14781:12160614,29278113:309278 -k1,14781:12469893,29278113:309279 -k1,14781:15102850,29278113:309279 -k1,14781:18067759,29278113:309278 -k1,14781:21032669,29278113:309279 -k1,14781:23997579,29278113:309279 -k1,14781:26962488,29278113:309278 -k1,14781:29927398,29278113:309279 -h1,14781:32583029,29278113:0,0,0 -k1,14781:32583029,29278113:0 -k1,14781:32583029,29278113:0 -) -(1,14781:6630773,29962968:25952256,424439,79822 -h1,14781:6630773,29962968:0,0,0 -g1,14781:7626635,29962968 -g1,14781:7958589,29962968 -g1,14781:9286405,29962968 -g1,14781:12273990,29962968 -g1,14781:15261575,29962968 -g1,14781:18249160,29962968 -h1,14781:20904791,29962968:0,0,0 -k1,14781:32583029,29962968:11678238 -g1,14781:32583029,29962968 -) -(1,14781:6630773,30647823:25952256,424439,86428 -h1,14781:6630773,30647823:0,0,0 -g1,14781:7626635,30647823 -k1,14781:7626635,30647823:0 -h1,14781:12273990,30647823:0,0,0 -k1,14781:32583030,30647823:20309040 -g1,14781:32583030,30647823 -) -(1,14781:6630773,31332678:25952256,424439,79822 -h1,14781:6630773,31332678:0,0,0 -g1,14781:7626635,31332678 -g1,14781:8954451,31332678 -g1,14781:11610083,31332678 -h1,14781:13933761,31332678:0,0,0 -k1,14781:32583029,31332678:18649268 -g1,14781:32583029,31332678 -) -] -) -g1,14782:32583029,31412500 -g1,14782:6630773,31412500 -g1,14782:6630773,31412500 -g1,14782:32583029,31412500 -g1,14782:32583029,31412500 -) -h1,14782:6630773,31609108:0,0,0 -v1,14786:6630773,32474188:0,393216,0 -(1,14829:6630773,41436244:25952256,9355272,0 -g1,14829:6630773,41436244 -g1,14829:6237557,41436244 -r1,14829:6368629,41436244:131072,9355272,0 -g1,14829:6567858,41436244 -g1,14829:6764466,41436244 -[1,14829:6764466,41436244:25818563,9355272,0 -(1,14787:6764466,32782486:25818563,701514,196608 -(1,14786:6764466,32782486:0,701514,196608 -r1,14829:7761522,32782486:997056,898122,196608 -k1,14786:6764466,32782486:-997056 -) -(1,14786:6764466,32782486:997056,701514,196608 -) -k1,14786:7965206,32782486:203684 -k1,14786:8292886,32782486:327680 -k1,14786:11224835,32782486:203685 -(1,14786:11224835,32782486:0,452978,115847 -r1,14829:12989948,32782486:1765113,568825,115847 -k1,14786:11224835,32782486:-1765113 -) -(1,14786:11224835,32782486:1765113,452978,115847 -k1,14786:11224835,32782486:3277 -h1,14786:12986671,32782486:0,411205,112570 -) -k1,14786:13193632,32782486:203684 -k1,14786:14588762,32782486:203685 -(1,14786:14588762,32782486:0,452978,115847 -r1,14829:17057299,32782486:2468537,568825,115847 -k1,14786:14588762,32782486:-2468537 -) -(1,14786:14588762,32782486:2468537,452978,115847 -k1,14786:14588762,32782486:3277 -h1,14786:17054022,32782486:0,411205,112570 -) -k1,14786:17260983,32782486:203684 -k1,14786:18568950,32782486:203685 -k1,14786:20673833,32782486:203684 -k1,14786:24394179,32782486:203684 -k1,14786:25991815,32782486:203685 -k1,14786:28520061,32782486:203684 -k1,14786:29375174,32782486:203685 -k1,14786:31391584,32782486:203684 -k1,14786:32583029,32782486:0 -) -(1,14787:6764466,33647566:25818563,513147,134348 -k1,14786:10648020,33647566:250893 -k1,14786:12711640,33647566:250894 -k1,14786:15454212,33647566:250893 -k1,14786:16901792,33647566:250893 -k1,14786:18865141,33647566:250893 -k1,14786:21103742,33647566:250894 -k1,14786:23314161,33647566:250893 -k1,14786:24096551,33647566:250893 -k1,14786:25006736,33647566:250893 -k1,14786:26812799,33647566:250894 -(1,14786:26812799,33647566:0,452978,115847 -r1,14829:27874488,33647566:1061689,568825,115847 -k1,14786:26812799,33647566:-1061689 -) -(1,14786:26812799,33647566:1061689,452978,115847 -k1,14786:26812799,33647566:3277 -h1,14786:27871211,33647566:0,411205,112570 -) -k1,14786:28125381,33647566:250893 -k1,14786:31078323,33647566:250893 -k1,14787:32583029,33647566:0 -) -(1,14787:6764466,34512646:25818563,505283,126483 -k1,14786:8881114,34512646:288194 -k1,14786:12123017,34512646:288195 -k1,14786:13483380,34512646:288194 -k1,14786:15389003,34512646:288194 -k1,14786:17883140,34512646:288195 -k1,14786:19521376,34512646:288194 -k1,14786:22763278,34512646:288194 -k1,14786:24043033,34512646:288195 -k1,14786:26552898,34512646:288194 -k1,14786:27492520,34512646:288194 -k1,14786:28799800,34512646:288195 -k1,14786:31700259,34512646:288194 -k1,14787:32583029,34512646:0 -) -(1,14787:6764466,35377726:25818563,505283,134348 -k1,14786:10892605,35377726:214984 -k1,14786:13561911,35377726:214983 -k1,14786:15463792,35377726:214984 -(1,14786:15463792,35377726:0,452978,115847 -r1,14829:17932329,35377726:2468537,568825,115847 -k1,14786:15463792,35377726:-2468537 -) -(1,14786:15463792,35377726:2468537,452978,115847 -k1,14786:15463792,35377726:3277 -h1,14786:17929052,35377726:0,411205,112570 -) -k1,14786:18147312,35377726:214983 -k1,14786:21724293,35377726:214984 -k1,14786:24056744,35377726:214983 -k1,14786:27225436,35377726:214984 -k1,14786:29865906,35377726:214983 -k1,14786:32583029,35377726:0 -) -(1,14787:6764466,36242806:25818563,513147,134348 -k1,14786:9712977,36242806:262846 -k1,14786:11167268,36242806:262846 -(1,14786:11167268,36242806:0,459977,115847 -r1,14829:13987517,36242806:2820249,575824,115847 -k1,14786:11167268,36242806:-2820249 -) -(1,14786:11167268,36242806:2820249,459977,115847 -k1,14786:11167268,36242806:3277 -h1,14786:13984240,36242806:0,411205,112570 -) -k1,14786:14250363,36242806:262846 -k1,14786:18673434,36242806:262846 -k1,14786:22950361,36242806:262847 -k1,14786:24607158,36242806:262846 -k1,14786:26987472,36242806:262846 -k1,14786:30204026,36242806:262846 -k1,14786:31860823,36242806:262846 -k1,14787:32583029,36242806:0 -) -(1,14787:6764466,37107886:25818563,513147,134348 -g1,14786:10154643,37107886 -g1,14786:11163242,37107886 -g1,14786:12381556,37107886 -g1,14786:15342472,37107886 -g1,14786:16200993,37107886 -g1,14786:17419307,37107886 -g1,14786:20230801,37107886 -k1,14787:32583029,37107886:9188806 -g1,14787:32583029,37107886 -) -v1,14789:6764466,37792741:0,393216,0 -(1,14803:6764466,41239636:25818563,3840111,196608 -g1,14803:6764466,41239636 -g1,14803:6764466,41239636 -g1,14803:6567858,41239636 -(1,14803:6567858,41239636:0,3840111,196608 -r1,14829:32779637,41239636:26211779,4036719,196608 -k1,14803:6567857,41239636:-26211780 -) -(1,14803:6567858,41239636:26211779,3840111,196608 -[1,14803:6764466,41239636:25818563,3643503,0 -(1,14791:6764466,38027178:25818563,431045,79822 -(1,14790:6764466,38027178:0,0,0 -g1,14790:6764466,38027178 -g1,14790:6764466,38027178 -g1,14790:6436786,38027178 -(1,14790:6436786,38027178:0,0,0 -) -g1,14790:6764466,38027178 -) -k1,14791:6764466,38027178:0 -h1,14791:10415960,38027178:0,0,0 -k1,14791:32583028,38027178:22167068 -g1,14791:32583028,38027178 -) -(1,14795:6764466,38843105:25818563,424439,79822 -(1,14793:6764466,38843105:0,0,0 -g1,14793:6764466,38843105 -g1,14793:6764466,38843105 -g1,14793:6436786,38843105 -(1,14793:6436786,38843105:0,0,0 -) -g1,14793:6764466,38843105 -) -g1,14795:7760328,38843105 -g1,14795:9088144,38843105 -h1,14795:10747914,38843105:0,0,0 -k1,14795:32583030,38843105:21835116 -g1,14795:32583030,38843105 -) -(1,14797:6764466,39659032:25818563,431045,79822 -(1,14796:6764466,39659032:0,0,0 -g1,14796:6764466,39659032 -g1,14796:6764466,39659032 -g1,14796:6436786,39659032 -(1,14796:6436786,39659032:0,0,0 -) -g1,14796:6764466,39659032 -) -k1,14797:6764466,39659032:0 -h1,14797:10415960,39659032:0,0,0 -k1,14797:32583028,39659032:22167068 -g1,14797:32583028,39659032 -) -(1,14802:6764466,40474959:25818563,431045,79822 -(1,14799:6764466,40474959:0,0,0 -g1,14799:6764466,40474959 -g1,14799:6764466,40474959 -g1,14799:6436786,40474959 -(1,14799:6436786,40474959:0,0,0 -) -g1,14799:6764466,40474959 -) -g1,14802:7760328,40474959 -g1,14802:9088144,40474959 -g1,14802:10415960,40474959 -g1,14802:10747914,40474959 -g1,14802:11079868,40474959 -g1,14802:11411822,40474959 -g1,14802:11743776,40474959 -g1,14802:12075730,40474959 -g1,14802:12407684,40474959 -g1,14802:12739638,40474959 -g1,14802:13071592,40474959 -g1,14802:13403546,40474959 -g1,14802:13735500,40474959 -g1,14802:17386993,40474959 -g1,14802:17718947,40474959 -g1,14802:18050901,40474959 -g1,14802:18382855,40474959 -g1,14802:20706533,40474959 -g1,14802:21038487,40474959 -g1,14802:21370441,40474959 -g1,14802:21702395,40474959 -g1,14802:22034349,40474959 -g1,14802:22366303,40474959 -g1,14802:22698257,40474959 -g1,14802:23030211,40474959 -g1,14802:25353889,40474959 -g1,14802:25685843,40474959 -g1,14802:26017797,40474959 -g1,14802:26349751,40474959 -g1,14802:26681705,40474959 -g1,14802:27013659,40474959 -g1,14802:27345613,40474959 -g1,14802:27677567,40474959 -h1,14802:31992968,40474959:0,0,0 -k1,14802:32583029,40474959:590061 -g1,14802:32583029,40474959 -) -(1,14802:6764466,41159814:25818563,424439,79822 -h1,14802:6764466,41159814:0,0,0 -g1,14802:7760328,41159814 -g1,14802:9088144,41159814 -h1,14802:12075729,41159814:0,0,0 -k1,14802:32583029,41159814:20507300 -g1,14802:32583029,41159814 -) -] -) -g1,14803:32583029,41239636 -g1,14803:6764466,41239636 -g1,14803:6764466,41239636 -g1,14803:32583029,41239636 -g1,14803:32583029,41239636 -) -h1,14803:6764466,41436244:0,0,0 -] -g1,14829:32583029,41436244 -) -] -(1,14829:32583029,45706769:0,0,0 -g1,14829:32583029,45706769 -) -) -] -(1,14829:6630773,47279633:25952256,0,0 -h1,14829:6630773,47279633:25952256,0,0 -) -] -(1,14829:4262630,4025873:0,0,0 -[1,14829:-473656,4025873:0,0,0 -(1,14829:-473656,-710413:0,0,0 -(1,14829:-473656,-710413:0,0,0 -g1,14829:-473656,-710413 -) -g1,14829:-473656,-710413 +[1,14827:6630773,45706769:25952256,40108032,0 +(1,14711:6630773,6254097:25952256,513147,134348 +g1,14710:8021447,6254097 +g1,14710:8752173,6254097 +g1,14710:13152915,6254097 +g1,14710:13968182,6254097 +g1,14710:14582254,6254097 +g1,14710:16667609,6254097 +g1,14710:17885923,6254097 +g1,14710:19823167,6254097 +(1,14710:19823167,6254097:0,452978,115847 +r1,14827:23346839,6254097:3523672,568825,115847 +k1,14710:19823167,6254097:-3523672 +) +(1,14710:19823167,6254097:3523672,452978,115847 +k1,14710:19823167,6254097:3277 +h1,14710:23343562,6254097:0,411205,112570 +) +g1,14710:23546068,6254097 +g1,14710:24431459,6254097 +g1,14710:24986548,6254097 +g1,14710:29024876,6254097 +k1,14711:32583029,6254097:810229 +g1,14711:32583029,6254097 +) +v1,14713:6630773,6938952:0,393216,0 +(1,14721:6630773,8747387:25952256,2201651,196608 +g1,14721:6630773,8747387 +g1,14721:6630773,8747387 +g1,14721:6434165,8747387 +(1,14721:6434165,8747387:0,2201651,196608 +r1,14827:32779637,8747387:26345472,2398259,196608 +k1,14721:6434165,8747387:-26345472 +) +(1,14721:6434165,8747387:26345472,2201651,196608 +[1,14721:6630773,8747387:25952256,2005043,0 +(1,14715:6630773,7166783:25952256,424439,106246 +(1,14714:6630773,7166783:0,0,0 +g1,14714:6630773,7166783 +g1,14714:6630773,7166783 +g1,14714:6303093,7166783 +(1,14714:6303093,7166783:0,0,0 +) +g1,14714:6630773,7166783 +) +k1,14715:6630773,7166783:0 +h1,14715:11610082,7166783:0,0,0 +k1,14715:32583030,7166783:20972948 +g1,14715:32583030,7166783 +) +(1,14716:6630773,7851638:25952256,424439,106246 +h1,14716:6630773,7851638:0,0,0 +k1,14716:6630773,7851638:0 +h1,14716:11942036,7851638:0,0,0 +k1,14716:32583028,7851638:20640992 +g1,14716:32583028,7851638 +) +(1,14720:6630773,8667565:25952256,424439,79822 +(1,14718:6630773,8667565:0,0,0 +g1,14718:6630773,8667565 +g1,14718:6630773,8667565 +g1,14718:6303093,8667565 +(1,14718:6303093,8667565:0,0,0 +) +g1,14718:6630773,8667565 +) +g1,14720:7626635,8667565 +g1,14720:8954451,8667565 +g1,14720:11278129,8667565 +g1,14720:11610083,8667565 +g1,14720:13933761,8667565 +g1,14720:14265715,8667565 +h1,14720:16589393,8667565:0,0,0 +k1,14720:32583029,8667565:15993636 +g1,14720:32583029,8667565 +) +] +) +g1,14721:32583029,8747387 +g1,14721:6630773,8747387 +g1,14721:6630773,8747387 +g1,14721:32583029,8747387 +g1,14721:32583029,8747387 +) +h1,14721:6630773,8943995:0,0,0 +v1,14725:6630773,9628850:0,393216,0 +(1,14730:6630773,10627964:25952256,1392330,196608 +g1,14730:6630773,10627964 +g1,14730:6630773,10627964 +g1,14730:6434165,10627964 +(1,14730:6434165,10627964:0,1392330,196608 +r1,14827:32779637,10627964:26345472,1588938,196608 +k1,14730:6434165,10627964:-26345472 +) +(1,14730:6434165,10627964:26345472,1392330,196608 +[1,14730:6630773,10627964:25952256,1195722,0 +(1,14727:6630773,9863287:25952256,431045,106246 +(1,14726:6630773,9863287:0,0,0 +g1,14726:6630773,9863287 +g1,14726:6630773,9863287 +g1,14726:6303093,9863287 +(1,14726:6303093,9863287:0,0,0 +) +g1,14726:6630773,9863287 +) +g1,14727:8290543,9863287 +g1,14727:9286405,9863287 +g1,14727:12273991,9863287 +g1,14727:12937899,9863287 +g1,14727:17917208,9863287 +g1,14727:19245024,9863287 +g1,14727:20572840,9863287 +g1,14727:22232610,9863287 +g1,14727:22896518,9863287 +k1,14727:22896518,9863287:0 +h1,14727:26216057,9863287:0,0,0 +k1,14727:32583029,9863287:6366972 +g1,14727:32583029,9863287 +) +(1,14728:6630773,10548142:25952256,424439,79822 +h1,14728:6630773,10548142:0,0,0 +g1,14728:6962727,10548142 +g1,14728:7294681,10548142 +g1,14728:7626635,10548142 +g1,14728:7958589,10548142 +g1,14728:8290543,10548142 +g1,14728:8622497,10548142 +g1,14728:8954451,10548142 +g1,14728:9286405,10548142 +g1,14728:9618359,10548142 +g1,14728:9950313,10548142 +g1,14728:10282267,10548142 +g1,14728:10614221,10548142 +g1,14728:12937899,10548142 +g1,14728:13601807,10548142 +g1,14728:15593531,10548142 +g1,14728:16589393,10548142 +h1,14728:19908932,10548142:0,0,0 +k1,14728:32583029,10548142:12674097 +g1,14728:32583029,10548142 +) +] +) +g1,14730:32583029,10627964 +g1,14730:6630773,10627964 +g1,14730:6630773,10627964 +g1,14730:32583029,10627964 +g1,14730:32583029,10627964 +) +h1,14730:6630773,10824572:0,0,0 +(1,14734:6630773,11689652:25952256,513147,134348 +h1,14733:6630773,11689652:983040,0,0 +k1,14733:8622131,11689652:190429 +k1,14733:9760211,11689652:190429 +k1,14733:11652609,11689652:190428 +k1,14733:13555494,11689652:190429 +k1,14733:16063931,11689652:190429 +k1,14733:17122712,11689652:190429 +k1,14733:18405625,11689652:190428 +k1,14733:20412057,11689652:190429 +k1,14733:23387111,11689652:190429 +k1,14733:24809617,11689652:190429 +k1,14733:27278733,11689652:190429 +h1,14733:28249321,11689652:0,0,0 +k1,14733:28439749,11689652:190428 +k1,14733:29439548,11689652:190429 +k1,14733:31128130,11689652:190429 +h1,14733:32323507,11689652:0,0,0 +k1,14734:32583029,11689652:0 +k1,14734:32583029,11689652:0 +) +v1,14736:6630773,12374507:0,393216,0 +(1,14780:6630773,31412500:25952256,19431209,196608 +g1,14780:6630773,31412500 +g1,14780:6630773,31412500 +g1,14780:6434165,31412500 +(1,14780:6434165,31412500:0,19431209,196608 +r1,14827:32779637,31412500:26345472,19627817,196608 +k1,14780:6434165,31412500:-26345472 +) +(1,14780:6434165,31412500:26345472,19431209,196608 +[1,14780:6630773,31412500:25952256,19234601,0 +(1,14738:6630773,12608944:25952256,431045,79822 +(1,14737:6630773,12608944:0,0,0 +g1,14737:6630773,12608944 +g1,14737:6630773,12608944 +g1,14737:6303093,12608944 +(1,14737:6303093,12608944:0,0,0 +) +g1,14737:6630773,12608944 +) +k1,14738:6630773,12608944:0 +h1,14738:10282267,12608944:0,0,0 +k1,14738:32583029,12608944:22300762 +g1,14738:32583029,12608944 +) +(1,14742:6630773,13424871:25952256,424439,79822 +(1,14740:6630773,13424871:0,0,0 +g1,14740:6630773,13424871 +g1,14740:6630773,13424871 +g1,14740:6303093,13424871 +(1,14740:6303093,13424871:0,0,0 +) +g1,14740:6630773,13424871 +) +g1,14742:7626635,13424871 +g1,14742:8954451,13424871 +h1,14742:10614221,13424871:0,0,0 +k1,14742:32583029,13424871:21968808 +g1,14742:32583029,13424871 +) +(1,14744:6630773,14240798:25952256,431045,106246 +(1,14743:6630773,14240798:0,0,0 +g1,14743:6630773,14240798 +g1,14743:6630773,14240798 +g1,14743:6303093,14240798 +(1,14743:6303093,14240798:0,0,0 +) +g1,14743:6630773,14240798 +) +k1,14744:6630773,14240798:0 +h1,14744:10946175,14240798:0,0,0 +k1,14744:32583029,14240798:21636854 +g1,14744:32583029,14240798 +) +(1,14761:6630773,15056725:25952256,398014,0 +(1,14746:6630773,15056725:0,0,0 +g1,14746:6630773,15056725 +g1,14746:6630773,15056725 +g1,14746:6303093,15056725 +(1,14746:6303093,15056725:0,0,0 +) +g1,14746:6630773,15056725 +) +h1,14761:7294681,15056725:0,0,0 +k1,14761:32583029,15056725:25288348 +g1,14761:32583029,15056725 +) +(1,14761:6630773,15741580:25952256,424439,86428 +h1,14761:6630773,15741580:0,0,0 +g1,14761:7626635,15741580 +g1,14761:10614220,15741580 +g1,14761:12273990,15741580 +g1,14761:12937898,15741580 +g1,14761:17917207,15741580 +g1,14761:19245023,15741580 +h1,14761:19908931,15741580:0,0,0 +k1,14761:32583029,15741580:12674098 +g1,14761:32583029,15741580 +) +(1,14761:6630773,16426435:25952256,398014,0 +h1,14761:6630773,16426435:0,0,0 +h1,14761:7294681,16426435:0,0,0 +k1,14761:32583029,16426435:25288348 +g1,14761:32583029,16426435 +) +(1,14761:6630773,17111290:25952256,398014,6605 +h1,14761:6630773,17111290:0,0,0 +g1,14761:7626635,17111290 +h1,14761:11278128,17111290:0,0,0 +k1,14761:32583028,17111290:21304900 +g1,14761:32583028,17111290 +) +(1,14761:6630773,17796145:25952256,424439,79822 +h1,14761:6630773,17796145:0,0,0 +g1,14761:7626635,17796145 +g1,14761:7958589,17796145 +g1,14761:8290543,17796145 +g1,14761:8622497,17796145 +g1,14761:8954451,17796145 +g1,14761:11942036,17796145 +g1,14761:13601806,17796145 +g1,14761:15593530,17796145 +g1,14761:16257438,17796145 +g1,14761:18249162,17796145 +k1,14761:18249162,17796145:0 +h1,14761:20904794,17796145:0,0,0 +k1,14761:32583029,17796145:11678235 +g1,14761:32583029,17796145 +) +(1,14761:6630773,18481000:25952256,407923,9908 +h1,14761:6630773,18481000:0,0,0 +g1,14761:7626635,18481000 +g1,14761:8622497,18481000 +g1,14761:11942036,18481000 +g1,14761:12273990,18481000 +g1,14761:15593529,18481000 +g1,14761:15925483,18481000 +g1,14761:18249161,18481000 +g1,14761:21236747,18481000 +h1,14761:22232609,18481000:0,0,0 +k1,14761:32583029,18481000:10350420 +g1,14761:32583029,18481000 +) +(1,14761:6630773,19165855:25952256,407923,9908 +h1,14761:6630773,19165855:0,0,0 +g1,14761:7626635,19165855 +g1,14761:8290543,19165855 +g1,14761:8622497,19165855 +g1,14761:11942037,19165855 +g1,14761:12273991,19165855 +g1,14761:15593531,19165855 +g1,14761:15925485,19165855 +g1,14761:16257439,19165855 +g1,14761:18249163,19165855 +g1,14761:21236749,19165855 +h1,14761:22232611,19165855:0,0,0 +k1,14761:32583029,19165855:10350418 +g1,14761:32583029,19165855 +) +(1,14761:6630773,19850710:25952256,398014,0 +h1,14761:6630773,19850710:0,0,0 +g1,14761:7626635,19850710 +k1,14761:7626635,19850710:0 +h1,14761:8622497,19850710:0,0,0 +k1,14761:32583029,19850710:23960532 +g1,14761:32583029,19850710 +) +(1,14761:6630773,20535565:25952256,431045,112852 +h1,14761:6630773,20535565:0,0,0 +g1,14761:7626635,20535565 +g1,14761:10282267,20535565 +g1,14761:12605945,20535565 +g1,14761:12937899,20535565 +g1,14761:13601807,20535565 +g1,14761:15593531,20535565 +g1,14761:17585255,20535565 +g1,14761:19245025,20535565 +g1,14761:20904795,20535565 +g1,14761:22232611,20535565 +g1,14761:23892381,20535565 +g1,14761:25220197,20535565 +g1,14761:26548013,20535565 +g1,14761:27211921,20535565 +g1,14761:27875829,20535565 +h1,14761:28207783,20535565:0,0,0 +k1,14761:32583029,20535565:4375246 +g1,14761:32583029,20535565 +) +(1,14761:6630773,21220420:25952256,398014,0 +h1,14761:6630773,21220420:0,0,0 +h1,14761:7294681,21220420:0,0,0 +k1,14761:32583029,21220420:25288348 +g1,14761:32583029,21220420 +) +(1,14761:6630773,21905275:25952256,431045,112852 +h1,14761:6630773,21905275:0,0,0 +g1,14761:7626635,21905275 +g1,14761:10614220,21905275 +g1,14761:13601805,21905275 +g1,14761:15925483,21905275 +g1,14761:17917207,21905275 +g1,14761:18913069,21905275 +g1,14761:19908931,21905275 +g1,14761:22564563,21905275 +g1,14761:23560425,21905275 +h1,14761:25884103,21905275:0,0,0 +k1,14761:32583029,21905275:6698926 +g1,14761:32583029,21905275 +) +(1,14761:6630773,22590130:25952256,398014,0 +h1,14761:6630773,22590130:0,0,0 +h1,14761:7294681,22590130:0,0,0 +k1,14761:32583029,22590130:25288348 +g1,14761:32583029,22590130 +) +(1,14761:6630773,23274985:25952256,431045,112852 +h1,14761:6630773,23274985:0,0,0 +g1,14761:7626635,23274985 +g1,14761:9950313,23274985 +g1,14761:10946175,23274985 +g1,14761:14597668,23274985 +g1,14761:15593530,23274985 +g1,14761:19908931,23274985 +h1,14761:20240885,23274985:0,0,0 +k1,14761:32583029,23274985:12342144 +g1,14761:32583029,23274985 +) +(1,14761:6630773,23959840:25952256,424439,112852 +h1,14761:6630773,23959840:0,0,0 +g1,14761:7626635,23959840 +g1,14761:10614220,23959840 +g1,14761:14597667,23959840 +g1,14761:18249160,23959840 +k1,14761:18249160,23959840:0 +h1,14761:21236746,23959840:0,0,0 +k1,14761:32583029,23959840:11346283 +g1,14761:32583029,23959840 +) +(1,14763:6630773,24775767:25952256,431045,79822 +(1,14762:6630773,24775767:0,0,0 +g1,14762:6630773,24775767 +g1,14762:6630773,24775767 +g1,14762:6303093,24775767 +(1,14762:6303093,24775767:0,0,0 +) +g1,14762:6630773,24775767 +) +k1,14763:6630773,24775767:0 +h1,14763:11610082,24775767:0,0,0 +k1,14763:32583030,24775767:20972948 +g1,14763:32583030,24775767 +) +(1,14770:6630773,25591694:25952256,424439,79822 +(1,14765:6630773,25591694:0,0,0 +g1,14765:6630773,25591694 +g1,14765:6630773,25591694 +g1,14765:6303093,25591694 +(1,14765:6303093,25591694:0,0,0 +) +g1,14765:6630773,25591694 +) +k1,14770:7608495,25591694:313814 +k1,14770:7922308,25591694:313813 +k1,14770:9231984,25591694:313814 +k1,14770:9545798,25591694:313814 +k1,14770:13179151,25591694:313814 +k1,14770:13492964,25591694:313813 +k1,14770:17126317,25591694:313814 +k1,14770:17440131,25591694:313814 +k1,14770:21073484,25591694:313814 +k1,14770:21387297,25591694:313813 +k1,14770:21701111,25591694:313814 +k1,14770:25002510,25591694:313814 +k1,14770:28967817,25591694:313814 +k1,14770:29281630,25591694:313813 +k1,14770:29595444,25591694:313814 +h1,14770:32583029,25591694:0,0,0 +k1,14770:32583029,25591694:0 +k1,14770:32583029,25591694:0 +) +(1,14770:6630773,26276549:25952256,424439,79822 +h1,14770:6630773,26276549:0,0,0 +k1,14770:7608495,26276549:313814 +k1,14770:7922308,26276549:313813 +k1,14770:9231984,26276549:313814 +k1,14770:9545798,26276549:313814 +k1,14770:13179151,26276549:313814 +k1,14770:17144457,26276549:313813 +k1,14770:17458271,26276549:313814 +k1,14770:17772085,26276549:313814 +k1,14770:21073484,26276549:313814 +k1,14770:21387297,26276549:313813 +k1,14770:25020650,26276549:313814 +k1,14770:25334464,26276549:313814 +k1,14770:25648278,26276549:313814 +k1,14770:28949676,26276549:313813 +k1,14770:29263490,26276549:313814 +k1,14770:29263490,26276549:0 +h1,14770:32583029,26276549:0,0,0 +k1,14770:32583029,26276549:0 +k1,14770:32583029,26276549:0 +) +(1,14770:6630773,26961404:25952256,424439,86428 +h1,14770:6630773,26961404:0,0,0 +g1,14770:7626635,26961404 +k1,14770:7626635,26961404:0 +h1,14770:12273990,26961404:0,0,0 +k1,14770:32583030,26961404:20309040 +g1,14770:32583030,26961404 +) +(1,14770:6630773,27646259:25952256,424439,79822 +h1,14770:6630773,27646259:0,0,0 +g1,14770:7626635,27646259 +g1,14770:8954451,27646259 +h1,14770:12605944,27646259:0,0,0 +k1,14770:32583028,27646259:19977084 +g1,14770:32583028,27646259 +) +(1,14772:6630773,28462186:25952256,431045,79822 +(1,14771:6630773,28462186:0,0,0 +g1,14771:6630773,28462186 +g1,14771:6630773,28462186 +g1,14771:6303093,28462186 +(1,14771:6303093,28462186:0,0,0 +) +g1,14771:6630773,28462186 +) +k1,14772:6630773,28462186:0 +h1,14772:10614221,28462186:0,0,0 +k1,14772:32583029,28462186:21968808 +g1,14772:32583029,28462186 +) +(1,14779:6630773,29278113:25952256,424439,79822 +(1,14774:6630773,29278113:0,0,0 +g1,14774:6630773,29278113 +g1,14774:6630773,29278113 +g1,14774:6303093,29278113 +(1,14774:6303093,29278113:0,0,0 +) +g1,14774:6630773,29278113 +) +k1,14779:7603960,29278113:309279 +k1,14779:7913238,29278113:309278 +k1,14779:9218379,29278113:309279 +k1,14779:9527658,29278113:309279 +k1,14779:12160614,29278113:309278 +k1,14779:12469893,29278113:309279 +k1,14779:15102850,29278113:309279 +k1,14779:18067759,29278113:309278 +k1,14779:21032669,29278113:309279 +k1,14779:23997579,29278113:309279 +k1,14779:26962488,29278113:309278 +k1,14779:29927398,29278113:309279 +h1,14779:32583029,29278113:0,0,0 +k1,14779:32583029,29278113:0 +k1,14779:32583029,29278113:0 +) +(1,14779:6630773,29962968:25952256,424439,79822 +h1,14779:6630773,29962968:0,0,0 +g1,14779:7626635,29962968 +g1,14779:7958589,29962968 +g1,14779:9286405,29962968 +g1,14779:12273990,29962968 +g1,14779:15261575,29962968 +g1,14779:18249160,29962968 +h1,14779:20904791,29962968:0,0,0 +k1,14779:32583029,29962968:11678238 +g1,14779:32583029,29962968 +) +(1,14779:6630773,30647823:25952256,424439,86428 +h1,14779:6630773,30647823:0,0,0 +g1,14779:7626635,30647823 +k1,14779:7626635,30647823:0 +h1,14779:12273990,30647823:0,0,0 +k1,14779:32583030,30647823:20309040 +g1,14779:32583030,30647823 +) +(1,14779:6630773,31332678:25952256,424439,79822 +h1,14779:6630773,31332678:0,0,0 +g1,14779:7626635,31332678 +g1,14779:8954451,31332678 +g1,14779:11610083,31332678 +h1,14779:13933761,31332678:0,0,0 +k1,14779:32583029,31332678:18649268 +g1,14779:32583029,31332678 +) +] +) +g1,14780:32583029,31412500 +g1,14780:6630773,31412500 +g1,14780:6630773,31412500 +g1,14780:32583029,31412500 +g1,14780:32583029,31412500 +) +h1,14780:6630773,31609108:0,0,0 +v1,14784:6630773,32474188:0,393216,0 +(1,14827:6630773,41436244:25952256,9355272,0 +g1,14827:6630773,41436244 +g1,14827:6237557,41436244 +r1,14827:6368629,41436244:131072,9355272,0 +g1,14827:6567858,41436244 +g1,14827:6764466,41436244 +[1,14827:6764466,41436244:25818563,9355272,0 +(1,14785:6764466,32782486:25818563,701514,196608 +(1,14784:6764466,32782486:0,701514,196608 +r1,14827:7761522,32782486:997056,898122,196608 +k1,14784:6764466,32782486:-997056 +) +(1,14784:6764466,32782486:997056,701514,196608 +) +k1,14784:7965206,32782486:203684 +k1,14784:8292886,32782486:327680 +k1,14784:11224835,32782486:203685 +(1,14784:11224835,32782486:0,452978,115847 +r1,14827:12989948,32782486:1765113,568825,115847 +k1,14784:11224835,32782486:-1765113 +) +(1,14784:11224835,32782486:1765113,452978,115847 +k1,14784:11224835,32782486:3277 +h1,14784:12986671,32782486:0,411205,112570 +) +k1,14784:13193632,32782486:203684 +k1,14784:14588762,32782486:203685 +(1,14784:14588762,32782486:0,452978,115847 +r1,14827:17057299,32782486:2468537,568825,115847 +k1,14784:14588762,32782486:-2468537 +) +(1,14784:14588762,32782486:2468537,452978,115847 +k1,14784:14588762,32782486:3277 +h1,14784:17054022,32782486:0,411205,112570 +) +k1,14784:17260983,32782486:203684 +k1,14784:18568950,32782486:203685 +k1,14784:20673833,32782486:203684 +k1,14784:24394179,32782486:203684 +k1,14784:25991815,32782486:203685 +k1,14784:28520061,32782486:203684 +k1,14784:29375174,32782486:203685 +k1,14784:31391584,32782486:203684 +k1,14784:32583029,32782486:0 +) +(1,14785:6764466,33647566:25818563,513147,134348 +k1,14784:10648020,33647566:250893 +k1,14784:12711640,33647566:250894 +k1,14784:15454212,33647566:250893 +k1,14784:16901792,33647566:250893 +k1,14784:18865141,33647566:250893 +k1,14784:21103742,33647566:250894 +k1,14784:23314161,33647566:250893 +k1,14784:24096551,33647566:250893 +k1,14784:25006736,33647566:250893 +k1,14784:26812799,33647566:250894 +(1,14784:26812799,33647566:0,452978,115847 +r1,14827:27874488,33647566:1061689,568825,115847 +k1,14784:26812799,33647566:-1061689 +) +(1,14784:26812799,33647566:1061689,452978,115847 +k1,14784:26812799,33647566:3277 +h1,14784:27871211,33647566:0,411205,112570 +) +k1,14784:28125381,33647566:250893 +k1,14784:31078323,33647566:250893 +k1,14785:32583029,33647566:0 +) +(1,14785:6764466,34512646:25818563,505283,126483 +k1,14784:8881114,34512646:288194 +k1,14784:12123017,34512646:288195 +k1,14784:13483380,34512646:288194 +k1,14784:15389003,34512646:288194 +k1,14784:17883140,34512646:288195 +k1,14784:19521376,34512646:288194 +k1,14784:22763278,34512646:288194 +k1,14784:24043033,34512646:288195 +k1,14784:26552898,34512646:288194 +k1,14784:27492520,34512646:288194 +k1,14784:28799800,34512646:288195 +k1,14784:31700259,34512646:288194 +k1,14785:32583029,34512646:0 +) +(1,14785:6764466,35377726:25818563,505283,134348 +k1,14784:10892605,35377726:214984 +k1,14784:13561911,35377726:214983 +k1,14784:15463792,35377726:214984 +(1,14784:15463792,35377726:0,452978,115847 +r1,14827:17932329,35377726:2468537,568825,115847 +k1,14784:15463792,35377726:-2468537 +) +(1,14784:15463792,35377726:2468537,452978,115847 +k1,14784:15463792,35377726:3277 +h1,14784:17929052,35377726:0,411205,112570 +) +k1,14784:18147312,35377726:214983 +k1,14784:21724293,35377726:214984 +k1,14784:24056744,35377726:214983 +k1,14784:27225436,35377726:214984 +k1,14784:29865906,35377726:214983 +k1,14784:32583029,35377726:0 +) +(1,14785:6764466,36242806:25818563,513147,134348 +k1,14784:9712977,36242806:262846 +k1,14784:11167268,36242806:262846 +(1,14784:11167268,36242806:0,459977,115847 +r1,14827:13987517,36242806:2820249,575824,115847 +k1,14784:11167268,36242806:-2820249 +) +(1,14784:11167268,36242806:2820249,459977,115847 +k1,14784:11167268,36242806:3277 +h1,14784:13984240,36242806:0,411205,112570 +) +k1,14784:14250363,36242806:262846 +k1,14784:18673434,36242806:262846 +k1,14784:22950361,36242806:262847 +k1,14784:24607158,36242806:262846 +k1,14784:26987472,36242806:262846 +k1,14784:30204026,36242806:262846 +k1,14784:31860823,36242806:262846 +k1,14785:32583029,36242806:0 +) +(1,14785:6764466,37107886:25818563,513147,134348 +g1,14784:10154643,37107886 +g1,14784:11163242,37107886 +g1,14784:12381556,37107886 +g1,14784:15342472,37107886 +g1,14784:16200993,37107886 +g1,14784:17419307,37107886 +g1,14784:20230801,37107886 +k1,14785:32583029,37107886:9188806 +g1,14785:32583029,37107886 +) +v1,14787:6764466,37792741:0,393216,0 +(1,14801:6764466,41239636:25818563,3840111,196608 +g1,14801:6764466,41239636 +g1,14801:6764466,41239636 +g1,14801:6567858,41239636 +(1,14801:6567858,41239636:0,3840111,196608 +r1,14827:32779637,41239636:26211779,4036719,196608 +k1,14801:6567857,41239636:-26211780 +) +(1,14801:6567858,41239636:26211779,3840111,196608 +[1,14801:6764466,41239636:25818563,3643503,0 +(1,14789:6764466,38027178:25818563,431045,79822 +(1,14788:6764466,38027178:0,0,0 +g1,14788:6764466,38027178 +g1,14788:6764466,38027178 +g1,14788:6436786,38027178 +(1,14788:6436786,38027178:0,0,0 +) +g1,14788:6764466,38027178 +) +k1,14789:6764466,38027178:0 +h1,14789:10415960,38027178:0,0,0 +k1,14789:32583028,38027178:22167068 +g1,14789:32583028,38027178 +) +(1,14793:6764466,38843105:25818563,424439,79822 +(1,14791:6764466,38843105:0,0,0 +g1,14791:6764466,38843105 +g1,14791:6764466,38843105 +g1,14791:6436786,38843105 +(1,14791:6436786,38843105:0,0,0 +) +g1,14791:6764466,38843105 +) +g1,14793:7760328,38843105 +g1,14793:9088144,38843105 +h1,14793:10747914,38843105:0,0,0 +k1,14793:32583030,38843105:21835116 +g1,14793:32583030,38843105 +) +(1,14795:6764466,39659032:25818563,431045,79822 +(1,14794:6764466,39659032:0,0,0 +g1,14794:6764466,39659032 +g1,14794:6764466,39659032 +g1,14794:6436786,39659032 +(1,14794:6436786,39659032:0,0,0 +) +g1,14794:6764466,39659032 +) +k1,14795:6764466,39659032:0 +h1,14795:10415960,39659032:0,0,0 +k1,14795:32583028,39659032:22167068 +g1,14795:32583028,39659032 +) +(1,14800:6764466,40474959:25818563,431045,79822 +(1,14797:6764466,40474959:0,0,0 +g1,14797:6764466,40474959 +g1,14797:6764466,40474959 +g1,14797:6436786,40474959 +(1,14797:6436786,40474959:0,0,0 +) +g1,14797:6764466,40474959 +) +g1,14800:7760328,40474959 +g1,14800:9088144,40474959 +g1,14800:10415960,40474959 +g1,14800:10747914,40474959 +g1,14800:11079868,40474959 +g1,14800:11411822,40474959 +g1,14800:11743776,40474959 +g1,14800:12075730,40474959 +g1,14800:12407684,40474959 +g1,14800:12739638,40474959 +g1,14800:13071592,40474959 +g1,14800:13403546,40474959 +g1,14800:13735500,40474959 +g1,14800:17386993,40474959 +g1,14800:17718947,40474959 +g1,14800:18050901,40474959 +g1,14800:18382855,40474959 +g1,14800:20706533,40474959 +g1,14800:21038487,40474959 +g1,14800:21370441,40474959 +g1,14800:21702395,40474959 +g1,14800:22034349,40474959 +g1,14800:22366303,40474959 +g1,14800:22698257,40474959 +g1,14800:23030211,40474959 +g1,14800:25353889,40474959 +g1,14800:25685843,40474959 +g1,14800:26017797,40474959 +g1,14800:26349751,40474959 +g1,14800:26681705,40474959 +g1,14800:27013659,40474959 +g1,14800:27345613,40474959 +g1,14800:27677567,40474959 +h1,14800:31992968,40474959:0,0,0 +k1,14800:32583029,40474959:590061 +g1,14800:32583029,40474959 +) +(1,14800:6764466,41159814:25818563,424439,79822 +h1,14800:6764466,41159814:0,0,0 +g1,14800:7760328,41159814 +g1,14800:9088144,41159814 +h1,14800:12075729,41159814:0,0,0 +k1,14800:32583029,41159814:20507300 +g1,14800:32583029,41159814 +) +] +) +g1,14801:32583029,41239636 +g1,14801:6764466,41239636 +g1,14801:6764466,41239636 +g1,14801:32583029,41239636 +g1,14801:32583029,41239636 +) +h1,14801:6764466,41436244:0,0,0 +] +g1,14827:32583029,41436244 +) +] +(1,14827:32583029,45706769:0,0,0 +g1,14827:32583029,45706769 +) +) +] +(1,14827:6630773,47279633:25952256,0,0 +h1,14827:6630773,47279633:25952256,0,0 +) +] +(1,14827:4262630,4025873:0,0,0 +[1,14827:-473656,4025873:0,0,0 +(1,14827:-473656,-710413:0,0,0 +(1,14827:-473656,-710413:0,0,0 +g1,14827:-473656,-710413 +) +g1,14827:-473656,-710413 ) ] ) ] !26006 -}237 -Input:2533:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2534:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2535:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}238 +Input:2536:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2538:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{238 -[1,14847:4262630,47279633:28320399,43253760,0 -(1,14847:4262630,4025873:0,0,0 -[1,14847:-473656,4025873:0,0,0 -(1,14847:-473656,-710413:0,0,0 -(1,14847:-473656,-644877:0,0,0 -k1,14847:-473656,-644877:-65536 +{239 +[1,14845:4262630,47279633:28320399,43253760,0 +(1,14845:4262630,4025873:0,0,0 +[1,14845:-473656,4025873:0,0,0 +(1,14845:-473656,-710413:0,0,0 +(1,14845:-473656,-644877:0,0,0 +k1,14845:-473656,-644877:-65536 ) -(1,14847:-473656,4736287:0,0,0 -k1,14847:-473656,4736287:5209943 +(1,14845:-473656,4736287:0,0,0 +k1,14845:-473656,4736287:5209943 ) -g1,14847:-473656,-710413 +g1,14845:-473656,-710413 ) ] ) -[1,14847:6630773,47279633:25952256,43253760,0 -[1,14847:6630773,4812305:25952256,786432,0 -(1,14847:6630773,4812305:25952256,505283,134348 -(1,14847:6630773,4812305:25952256,505283,134348 -g1,14847:3078558,4812305 -[1,14847:3078558,4812305:0,0,0 -(1,14847:3078558,2439708:0,1703936,0 -k1,14847:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14847:2537886,2439708:1179648,16384,0 +[1,14845:6630773,47279633:25952256,43253760,0 +[1,14845:6630773,4812305:25952256,786432,0 +(1,14845:6630773,4812305:25952256,505283,134348 +(1,14845:6630773,4812305:25952256,505283,134348 +g1,14845:3078558,4812305 +[1,14845:3078558,4812305:0,0,0 +(1,14845:3078558,2439708:0,1703936,0 +k1,14845:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14845:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14847:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14845:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14847:3078558,4812305:0,0,0 -(1,14847:3078558,2439708:0,1703936,0 -g1,14847:29030814,2439708 -g1,14847:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14847:36151628,1915420:16384,1179648,0 +[1,14845:3078558,4812305:0,0,0 +(1,14845:3078558,2439708:0,1703936,0 +g1,14845:29030814,2439708 +g1,14845:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14845:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14847:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14845:37855564,2439708:1179648,16384,0 ) ) -k1,14847:3078556,2439708:-34777008 +k1,14845:3078556,2439708:-34777008 ) ] -[1,14847:3078558,4812305:0,0,0 -(1,14847:3078558,49800853:0,16384,2228224 -k1,14847:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14847:2537886,49800853:1179648,16384,0 +[1,14845:3078558,4812305:0,0,0 +(1,14845:3078558,49800853:0,16384,2228224 +k1,14845:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14845:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14847:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14845:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14847:3078558,4812305:0,0,0 -(1,14847:3078558,49800853:0,16384,2228224 -g1,14847:29030814,49800853 -g1,14847:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14847:36151628,51504789:16384,1179648,0 +[1,14845:3078558,4812305:0,0,0 +(1,14845:3078558,49800853:0,16384,2228224 +g1,14845:29030814,49800853 +g1,14845:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14845:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14847:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14845:37855564,49800853:1179648,16384,0 ) ) -k1,14847:3078556,49800853:-34777008 +k1,14845:3078556,49800853:-34777008 ) ] -g1,14847:6630773,4812305 -g1,14847:6630773,4812305 -g1,14847:9008419,4812305 -g1,14847:10418098,4812305 -g1,14847:12266213,4812305 -g1,14847:15843168,4812305 -k1,14847:31387652,4812305:15544484 -) -) -] -[1,14847:6630773,45706769:25952256,40108032,0 -(1,14847:6630773,45706769:25952256,40108032,0 -(1,14847:6630773,45706769:0,0,0 -g1,14847:6630773,45706769 +g1,14845:6630773,4812305 +g1,14845:6630773,4812305 +g1,14845:9008419,4812305 +g1,14845:10418098,4812305 +g1,14845:12266213,4812305 +g1,14845:15843168,4812305 +k1,14845:31387652,4812305:15544484 +) +) +] +[1,14845:6630773,45706769:25952256,40108032,0 +(1,14845:6630773,45706769:25952256,40108032,0 +(1,14845:6630773,45706769:0,0,0 +g1,14845:6630773,45706769 ) -[1,14847:6630773,45706769:25952256,40108032,0 -v1,14829:6630773,6254097:0,393216,0 -(1,14829:6630773,16517036:25952256,10656155,0 -g1,14829:6630773,16517036 -g1,14829:6237557,16517036 -r1,14847:6368629,16517036:131072,10656155,0 -g1,14829:6567858,16517036 -g1,14829:6764466,16517036 -[1,14829:6764466,16517036:25818563,10656155,0 -v1,14807:6764466,6254097:0,393216,0 -(1,14827:6764466,16320428:25818563,10459547,196608 -g1,14827:6764466,16320428 -g1,14827:6764466,16320428 -g1,14827:6567858,16320428 -(1,14827:6567858,16320428:0,10459547,196608 -r1,14847:32779637,16320428:26211779,10656155,196608 -k1,14827:6567857,16320428:-26211780 -) -(1,14827:6567858,16320428:26211779,10459547,196608 -[1,14827:6764466,16320428:25818563,10262939,0 -(1,14809:6764466,6488534:25818563,431045,33029 -(1,14808:6764466,6488534:0,0,0 -g1,14808:6764466,6488534 -g1,14808:6764466,6488534 -g1,14808:6436786,6488534 -(1,14808:6436786,6488534:0,0,0 -) -g1,14808:6764466,6488534 -) -h1,14809:11079867,6488534:0,0,0 -k1,14809:32583029,6488534:21503162 -g1,14809:32583029,6488534 -) -(1,14826:6764466,7304461:25818563,431045,33029 -(1,14811:6764466,7304461:0,0,0 -g1,14811:6764466,7304461 -g1,14811:6764466,7304461 -g1,14811:6436786,7304461 -(1,14811:6436786,7304461:0,0,0 -) -g1,14811:6764466,7304461 -) -g1,14826:7760328,7304461 -h1,14826:10084006,7304461:0,0,0 -k1,14826:32583030,7304461:22499024 -g1,14826:32583030,7304461 -) -(1,14826:6764466,7989316:25818563,424439,79822 -h1,14826:6764466,7989316:0,0,0 -g1,14826:7760328,7989316 -g1,14826:9088144,7989316 -h1,14826:10415960,7989316:0,0,0 -k1,14826:32583028,7989316:22167068 -g1,14826:32583028,7989316 -) -(1,14826:6764466,8674171:25818563,398014,0 -h1,14826:6764466,8674171:0,0,0 -h1,14826:7428374,8674171:0,0,0 -k1,14826:32583030,8674171:25154656 -g1,14826:32583030,8674171 -) -(1,14826:6764466,9359026:25818563,431045,33029 -h1,14826:6764466,9359026:0,0,0 -g1,14826:7760328,9359026 -h1,14826:10415959,9359026:0,0,0 -k1,14826:32583029,9359026:22167070 -g1,14826:32583029,9359026 -) -(1,14826:6764466,10043881:25818563,424439,79822 -h1,14826:6764466,10043881:0,0,0 -g1,14826:7760328,10043881 -g1,14826:9088144,10043881 -h1,14826:9420098,10043881:0,0,0 -k1,14826:32583030,10043881:23162932 -g1,14826:32583030,10043881 -) -(1,14826:6764466,10728736:25818563,398014,0 -h1,14826:6764466,10728736:0,0,0 -h1,14826:7428374,10728736:0,0,0 -k1,14826:32583030,10728736:25154656 -g1,14826:32583030,10728736 -) -(1,14826:6764466,11413591:25818563,431045,33029 -h1,14826:6764466,11413591:0,0,0 -g1,14826:7760328,11413591 -h1,14826:10084006,11413591:0,0,0 -k1,14826:32583030,11413591:22499024 -g1,14826:32583030,11413591 -) -(1,14826:6764466,12098446:25818563,424439,79822 -h1,14826:6764466,12098446:0,0,0 -g1,14826:7760328,12098446 -g1,14826:9088144,12098446 -k1,14826:9088144,12098446:0 -h1,14826:13071591,12098446:0,0,0 -k1,14826:32583029,12098446:19511438 -g1,14826:32583029,12098446 -) -(1,14826:6764466,12783301:25818563,398014,0 -h1,14826:6764466,12783301:0,0,0 -h1,14826:7428374,12783301:0,0,0 -k1,14826:32583030,12783301:25154656 -g1,14826:32583030,12783301 -) -(1,14826:6764466,13468156:25818563,431045,106246 -h1,14826:6764466,13468156:0,0,0 -g1,14826:7760328,13468156 -h1,14826:10747913,13468156:0,0,0 -k1,14826:32583029,13468156:21835116 -g1,14826:32583029,13468156 -) -(1,14826:6764466,14153011:25818563,424439,79822 -h1,14826:6764466,14153011:0,0,0 -g1,14826:7760328,14153011 -g1,14826:9088144,14153011 -h1,14826:9420098,14153011:0,0,0 -k1,14826:32583030,14153011:23162932 -g1,14826:32583030,14153011 -) -(1,14826:6764466,14837866:25818563,398014,0 -h1,14826:6764466,14837866:0,0,0 -h1,14826:7428374,14837866:0,0,0 -k1,14826:32583030,14837866:25154656 -g1,14826:32583030,14837866 -) -(1,14826:6764466,15522721:25818563,431045,112852 -h1,14826:6764466,15522721:0,0,0 -g1,14826:7760328,15522721 -h1,14826:11743775,15522721:0,0,0 -k1,14826:32583029,15522721:20839254 -g1,14826:32583029,15522721 -) -(1,14826:6764466,16207576:25818563,424439,112852 -h1,14826:6764466,16207576:0,0,0 -g1,14826:7760328,16207576 -g1,14826:9088144,16207576 -h1,14826:12739637,16207576:0,0,0 -k1,14826:32583029,16207576:19843392 -g1,14826:32583029,16207576 -) -] -) -g1,14827:32583029,16320428 -g1,14827:6764466,16320428 -g1,14827:6764466,16320428 -g1,14827:32583029,16320428 -g1,14827:32583029,16320428 -) -h1,14827:6764466,16517036:0,0,0 -] -g1,14829:32583029,16517036 -) -h1,14829:6630773,16517036:0,0,0 -(1,14832:6630773,17382116:25952256,513147,134348 -h1,14831:6630773,17382116:983040,0,0 -k1,14831:10232881,17382116:221106 -(1,14831:10232881,17382116:0,452978,115847 -r1,14847:13053130,17382116:2820249,568825,115847 -k1,14831:10232881,17382116:-2820249 -) -(1,14831:10232881,17382116:2820249,452978,115847 -k1,14831:10232881,17382116:3277 -h1,14831:13049853,17382116:0,411205,112570 -) -k1,14831:13447907,17382116:221107 -k1,14831:16759036,17382116:221106 -k1,14831:17927794,17382116:221107 -(1,14831:17927794,17382116:0,452978,115847 -r1,14847:19341195,17382116:1413401,568825,115847 -k1,14831:17927794,17382116:-1413401 -) -(1,14831:17927794,17382116:1413401,452978,115847 -k1,14831:17927794,17382116:3277 -h1,14831:19337918,17382116:0,411205,112570 -) -k1,14831:19562301,17382116:221106 -k1,14831:20399445,17382116:221106 -k1,14831:22899239,17382116:221107 -h1,14831:24441957,17382116:0,0,0 -k1,14831:24663063,17382116:221106 -k1,14831:25693539,17382116:221106 -k1,14831:27412799,17382116:221107 -h1,14831:28608176,17382116:0,0,0 -k1,14831:29002952,17382116:221106 -k1,14831:30328341,17382116:221107 -k1,14831:31297213,17382116:221106 -k1,14831:32583029,17382116:0 -) -(1,14832:6630773,18247196:25952256,513147,134348 -k1,14831:8362368,18247196:218369 -k1,14831:9974687,18247196:218368 -k1,14831:12511064,18247196:218369 -k1,14831:14441888,18247196:218368 -k1,14831:16054208,18247196:218369 -(1,14831:16054208,18247196:0,452978,115847 -r1,14847:17819321,18247196:1765113,568825,115847 -k1,14831:16054208,18247196:-1765113 -) -(1,14831:16054208,18247196:1765113,452978,115847 -k1,14831:16054208,18247196:3277 -h1,14831:17816044,18247196:0,411205,112570 -) -k1,14831:18211360,18247196:218369 -k1,14831:19626415,18247196:218368 -k1,14831:20937269,18247196:218369 -k1,14831:21814930,18247196:218369 -k1,14831:24787776,18247196:218368 -k1,14831:28052258,18247196:218369 -k1,14831:28956788,18247196:218368 -k1,14831:31649796,18247196:218369 -k1,14831:32583029,18247196:0 -) -(1,14832:6630773,19112276:25952256,513147,126483 -g1,14831:9376731,19112276 -g1,14831:10107457,19112276 -g1,14831:11077389,19112276 -g1,14831:14485916,19112276 -k1,14832:32583029,19112276:15769275 -g1,14832:32583029,19112276 -) -(1,14835:6630773,21943436:25952256,32768,229376 -(1,14835:6630773,21943436:0,32768,229376 -(1,14835:6630773,21943436:5505024,32768,229376 -r1,14847:12135797,21943436:5505024,262144,229376 -) -k1,14835:6630773,21943436:-5505024 -) -(1,14835:6630773,21943436:25952256,32768,0 -r1,14847:32583029,21943436:25952256,32768,0 -) -) -(1,14835:6630773,23575288:25952256,606339,161218 -(1,14835:6630773,23575288:2464678,582746,0 -g1,14835:6630773,23575288 -g1,14835:9095451,23575288 -) -g1,14835:12170400,23575288 -g1,14835:13880103,23575288 -g1,14835:16188281,23575288 -k1,14835:32583029,23575288:12030837 -g1,14835:32583029,23575288 -) -(1,14839:6630773,24833584:25952256,513147,126483 -k1,14838:7962968,24833584:157135 -k1,14838:9858119,24833584:157136 -k1,14838:12535113,24833584:157135 -k1,14838:14984697,24833584:157135 -k1,14838:16709454,24833584:157136 -k1,14838:17885674,24833584:157135 -k1,14838:19293891,24833584:157135 -k1,14838:20964252,24833584:157135 -k1,14838:21882916,24833584:157136 -k1,14838:25339133,24833584:157135 -k1,14838:26147696,24833584:157135 -k1,14838:27890803,24833584:157136 -k1,14838:30459008,24833584:157135 -k1,14838:32583029,24833584:0 -) -(1,14839:6630773,25698664:25952256,513147,134348 -k1,14838:10200191,25698664:279511 -k1,14838:10835562,25698664:279511 -k1,14838:13034623,25698664:279511 -k1,14838:13973426,25698664:279511 -k1,14838:15499432,25698664:279511 -k1,14838:17509749,25698664:279511 -k1,14838:18996434,25698664:279512 -k1,14838:20789171,25698664:279511 -k1,14838:21754844,25698664:279511 -k1,14838:22390215,25698664:279511 -k1,14838:24970695,25698664:279511 -k1,14838:27008537,25698664:279511 -k1,14838:27939476,25698664:279511 -k1,14838:29804958,25698664:279511 -k1,14838:32583029,25698664:0 -) -(1,14839:6630773,26563744:25952256,513147,126483 -k1,14838:9129660,26563744:253624 -k1,14838:10996781,26563744:253625 -k1,14838:12269490,26563744:253624 -k1,14838:14253920,26563744:253624 -k1,14838:16757396,26563744:253625 -k1,14838:18515071,26563744:253624 -k1,14838:21487785,26563744:253625 -k1,14838:22502937,26563744:253624 -k1,14838:23112421,26563744:253624 -k1,14838:24469672,26563744:253625 -k1,14838:25382588,26563744:253624 -k1,14838:27937181,26563744:253624 -k1,14838:30149677,26563744:253625 -k1,14838:31896867,26563744:253624 -k1,14838:32583029,26563744:0 -) -(1,14839:6630773,27428824:25952256,505283,134348 -k1,14838:8279760,27428824:146246 -k1,14838:10976012,27428824:146246 -k1,14838:11738296,27428824:146246 -k1,14838:13988248,27428824:146246 -k1,14838:14817379,27428824:146246 -k1,14838:17165635,27428824:146246 -k1,14838:19942496,27428824:146246 -k1,14838:21160911,27428824:146246 -k1,14838:22326242,27428824:146246 -k1,14838:24907806,27428824:146246 -k1,14838:26792067,27428824:146246 -k1,14838:30055205,27428824:146246 -k1,14838:30829286,27428824:146246 -k1,14839:32583029,27428824:0 -) -(1,14839:6630773,28293904:25952256,513147,126483 -g1,14838:9448821,28293904 -g1,14838:11897901,28293904 -g1,14838:13088690,28293904 -g1,14838:16313716,28293904 -g1,14838:17797451,28293904 -g1,14838:20665961,28293904 -g1,14838:23276260,28293904 -g1,14838:24666934,28293904 -g1,14838:27167132,28293904 -k1,14839:32583029,28293904:3291876 -g1,14839:32583029,28293904 -) -(1,14841:6630773,29158984:25952256,513147,134348 -h1,14840:6630773,29158984:983040,0,0 -k1,14840:9440083,29158984:280931 -k1,14840:10380306,29158984:280931 -k1,14840:11680322,29158984:280931 -k1,14840:13948960,29158984:280931 -k1,14840:15247665,29158984:280931 -k1,14840:17223357,29158984:280931 -k1,14840:19359611,29158984:280930 -k1,14840:20326704,29158984:280931 -k1,14840:23599354,29158984:280931 -k1,14840:26500414,29158984:280931 -k1,14840:29827458,29158984:280931 -k1,14840:31056040,29158984:280931 -k1,14841:32583029,29158984:0 -) -(1,14841:6630773,30024064:25952256,513147,126483 -k1,14840:9023643,30024064:202657 -k1,14840:10510807,30024064:202658 -k1,14840:11705024,30024064:202657 -k1,14840:16038416,30024064:202658 -k1,14840:16857111,30024064:202657 -k1,14840:18078854,30024064:202658 -k1,14840:19478198,30024064:202657 -k1,14840:21684292,30024064:202658 -k1,14840:24301295,30024064:202657 -k1,14840:25119991,30024064:202658 -k1,14840:26341733,30024064:202657 -k1,14840:27911472,30024064:202658 -k1,14840:28773421,30024064:202657 -k1,14840:32583029,30024064:0 -) -(1,14841:6630773,30889144:25952256,513147,134348 -k1,14840:9173670,30889144:224889 -k1,14840:10544785,30889144:224890 -k1,14840:11788759,30889144:224889 -k1,14840:14729460,30889144:224889 -k1,14840:15613642,30889144:224890 -k1,14840:18431135,30889144:224889 -k1,14840:21744080,30889144:224889 -k1,14840:22651854,30889144:224889 -k1,14840:23489506,30889144:224890 -k1,14840:25209927,30889144:224889 -k1,14840:28609380,30889144:224889 -k1,14840:31260413,30889144:224890 -k1,14840:31841162,30889144:224889 -k1,14841:32583029,30889144:0 -) -(1,14841:6630773,31754224:25952256,513147,134348 -k1,14840:10091124,31754224:264816 -k1,14840:12991143,31754224:264816 -k1,14840:14428398,31754224:264816 -k1,14840:17534854,31754224:264815 -k1,14840:18485832,31754224:264816 -k1,14840:19366686,31754224:264816 -k1,14840:20650587,31754224:264816 -k1,14840:22282484,31754224:264816 -k1,14840:23206592,31754224:264816 -k1,14840:25284134,31754224:264816 -k1,14840:29039396,31754224:264815 -k1,14840:29932047,31754224:264816 -k1,14840:31215948,31754224:264816 -k1,14840:32583029,31754224:0 -) -(1,14841:6630773,32619304:25952256,513147,134348 -k1,14840:7495371,32619304:205306 -k1,14840:11604002,32619304:205307 -k1,14840:13203259,32619304:205306 -k1,14840:15533899,32619304:205307 -k1,14840:17779996,32619304:205306 -k1,14840:19427750,32619304:205307 -k1,14840:20205185,32619304:205306 -k1,14840:23691224,32619304:205307 -k1,14840:26942643,32619304:205306 -k1,14840:27957320,32619304:205307 -k1,14840:30187033,32619304:205306 -k1,14840:32583029,32619304:0 -) -(1,14841:6630773,33484384:25952256,513147,7863 -g1,14840:9499283,33484384 -g1,14840:12304223,33484384 -g1,14840:13162744,33484384 -g1,14840:14381058,33484384 -k1,14841:32583029,33484384:16760179 -g1,14841:32583029,33484384 -) -(1,14843:6630773,34349464:25952256,513147,126483 -h1,14842:6630773,34349464:983040,0,0 -k1,14842:10133127,34349464:244559 -k1,14842:11730348,34349464:244558 -k1,14842:13178148,34349464:244559 -k1,14842:13778566,34349464:244558 -k1,14842:15378410,34349464:244559 -k1,14842:17839396,34349464:244558 -k1,14842:19275400,34349464:244559 -k1,14842:22800690,34349464:244558 -k1,14842:26091362,34349464:244559 -k1,14842:27811135,34349464:244558 -k1,14842:28865064,34349464:244559 -k1,14842:31860823,34349464:244558 -k1,14843:32583029,34349464:0 -) -(1,14843:6630773,35214544:25952256,513147,126483 -k1,14842:8791092,35214544:159505 -k1,14842:10147283,35214544:159504 -k1,14842:12749970,35214544:159505 -k1,14842:15175054,35214544:159504 -k1,14842:15950597,35214544:159505 -k1,14842:17129186,35214544:159504 -k1,14842:19442204,35214544:159505 -k1,14842:21470795,35214544:159504 -k1,14842:22821745,35214544:159505 -k1,14842:25595480,35214544:159504 -k1,14842:26414277,35214544:159505 -k1,14842:27592866,35214544:159504 -k1,14842:30789309,35214544:159505 -k1,14842:32583029,35214544:0 -) -(1,14843:6630773,36079624:25952256,513147,134348 -k1,14842:9117428,36079624:211900 -k1,14842:11590974,36079624:211899 -k1,14842:12462166,36079624:211900 -k1,14842:14463198,36079624:211899 -k1,14842:15565077,36079624:211900 -k1,14842:19283153,36079624:211900 -k1,14842:21720655,36079624:211899 -k1,14842:23937957,36079624:211900 -k1,14842:24911384,36079624:211899 -k1,14842:27601856,36079624:211900 -k1,14842:28496640,36079624:211899 -k1,14842:30870573,36079624:211900 -k1,14842:32583029,36079624:0 -) -(1,14843:6630773,36944704:25952256,513147,126483 -k1,14842:8457043,36944704:153791 -k1,14842:9680382,36944704:153791 -k1,14842:11214361,36944704:153791 -k1,14842:12359712,36944704:153791 -k1,14842:15539300,36944704:153791 -k1,14842:16977597,36944704:153791 -k1,14842:18122948,36944704:153791 -k1,14842:21381179,36944704:153791 -k1,14842:22731657,36944704:153791 -k1,14842:25597328,36944704:153791 -k1,14842:28174640,36944704:153791 -k1,14842:29319991,36944704:153791 -k1,14842:32583029,36944704:0 -) -(1,14843:6630773,37809784:25952256,505283,134348 -g1,14842:8816398,37809784 -g1,14842:10710388,37809784 -g1,14842:11671145,37809784 -g1,14842:14358776,37809784 -g1,14842:17036577,37809784 -g1,14842:18404313,37809784 -g1,14842:21624752,37809784 -g1,14842:25309841,37809784 -k1,14843:32583029,37809784:5431627 -g1,14843:32583029,37809784 -) -(1,14845:6630773,38674864:25952256,513147,134348 -h1,14844:6630773,38674864:983040,0,0 -k1,14844:8458637,38674864:216989 -k1,14844:10325824,38674864:216990 -k1,14844:13229134,38674864:216989 -k1,14844:15695975,38674864:216990 -k1,14844:16932049,38674864:216989 -k1,14844:20170248,38674864:216989 -k1,14844:21378798,38674864:216990 -k1,14844:25672782,38674864:216989 -k1,14844:29194753,38674864:216990 -k1,14844:31095362,38674864:216989 -k1,14845:32583029,38674864:0 -) -(1,14845:6630773,39539944:25952256,513147,126483 -k1,14844:9521213,39539944:194944 -k1,14844:11000664,39539944:194945 -k1,14844:12716043,39539944:194944 -k1,14844:15109065,39539944:194944 -k1,14844:18881620,39539944:194945 -k1,14844:19689326,39539944:194944 -k1,14844:20903355,39539944:194944 -k1,14844:23061102,39539944:194944 -k1,14844:24298069,39539944:194945 -k1,14844:27328100,39539944:194944 -k1,14844:28807550,39539944:194944 -k1,14844:30021580,39539944:194945 -k1,14844:31914562,39539944:194944 -k1,14844:32583029,39539944:0 -) -(1,14845:6630773,40405024:25952256,513147,126483 -k1,14844:8120781,40405024:183875 -k1,14844:11437932,40405024:183875 -k1,14844:12153304,40405024:183875 -k1,14844:13356265,40405024:183876 -k1,14844:15193613,40405024:183875 -k1,14844:16325139,40405024:183875 -k1,14844:17528099,40405024:183875 -k1,14844:18884413,40405024:183875 -k1,14844:22331981,40405024:183875 -k1,14844:24257148,40405024:183875 -k1,14844:27021832,40405024:183876 -k1,14844:27818469,40405024:183875 -k1,14844:29021429,40405024:183875 -k1,14844:30664135,40405024:183875 -k1,14844:32583029,40405024:0 -) -(1,14845:6630773,41270104:25952256,505283,126483 -k1,14844:8307675,41270104:296714 -k1,14844:9595949,41270104:296714 -k1,14844:13330026,41270104:296714 -k1,14844:15007584,41270104:296714 -k1,14844:18551607,41270104:296714 -k1,14844:21321650,41270104:296714 -k1,14844:22902870,41270104:296714 -k1,14844:24218669,41270104:296714 -k1,14844:26256675,41270104:296714 -k1,14844:27084886,41270104:296714 -k1,14844:29966340,41270104:296714 -k1,14844:30890889,41270104:296714 -k1,14844:32583029,41270104:0 -) -(1,14845:6630773,42135184:25952256,513147,134348 -k1,14844:8533759,42135184:205604 -k1,14844:10941373,42135184:205604 -k1,14844:14724588,42135184:205605 -k1,14844:15921752,42135184:205604 -k1,14844:18862173,42135184:205604 -k1,14844:19877147,42135184:205604 -k1,14844:22123542,42135184:205604 -k1,14844:24068472,42135184:205604 -k1,14844:27911325,42135184:205605 -k1,14844:29064580,42135184:205604 -k1,14844:31931601,42135184:205604 -k1,14844:32583029,42135184:0 -) -(1,14845:6630773,43000264:25952256,513147,7863 -k1,14844:7819362,43000264:169504 -k1,14844:10230197,43000264:169504 -k1,14844:13532977,43000264:169504 -k1,14844:14353909,43000264:169504 -k1,14844:16666440,43000264:169504 -k1,14844:18120450,43000264:169504 -k1,14844:19309039,43000264:169504 -k1,14844:21219836,43000264:169505 -k1,14844:22048632,43000264:169504 -k1,14844:23237221,43000264:169504 -k1,14844:24712858,43000264:169504 -k1,14844:28015638,43000264:169504 -k1,14844:28716639,43000264:169504 -k1,14844:30171959,43000264:169504 -k1,14844:32583029,43000264:0 -) -(1,14845:6630773,43865344:25952256,505283,7863 -g1,14844:7442764,43865344 -g1,14844:8661078,43865344 -k1,14845:32583029,43865344:22080390 -g1,14845:32583029,43865344 -) -(1,14847:6630773,44730424:25952256,513147,134348 -h1,14846:6630773,44730424:983040,0,0 -k1,14846:10041743,44730424:153175 -k1,14846:11186479,44730424:153176 -k1,14846:12852880,44730424:153175 -k1,14846:13622094,44730424:153176 -k1,14846:16842354,44730424:153175 -k1,14846:19571750,44730424:153176 -k1,14846:21118876,44730424:153175 -k1,14846:24678613,44730424:153176 -k1,14846:25483216,44730424:153175 -k1,14846:27222363,44730424:153176 -k1,14846:30171959,44730424:153175 -k1,14846:32583029,44730424:0 -) -(1,14847:6630773,45595504:25952256,513147,126483 -k1,14846:9161937,45595504:285901 -k1,14846:11005629,45595504:285901 -k1,14846:12283089,45595504:285900 -k1,14846:13854806,45595504:285901 -k1,14846:14888473,45595504:285901 -k1,14846:16687600,45595504:285901 -k1,14846:17921151,45595504:285900 -k1,14846:22533084,45595504:285901 -k1,14846:23435023,45595504:285901 -k1,14846:25606395,45595504:285901 -k1,14846:27259376,45595504:285900 -k1,14846:31790699,45595504:285901 -k1,14847:32583029,45595504:0 -) -] -(1,14847:32583029,45706769:0,0,0 -g1,14847:32583029,45706769 -) -) -] -(1,14847:6630773,47279633:25952256,0,0 -h1,14847:6630773,47279633:25952256,0,0 -) -] -(1,14847:4262630,4025873:0,0,0 -[1,14847:-473656,4025873:0,0,0 -(1,14847:-473656,-710413:0,0,0 -(1,14847:-473656,-710413:0,0,0 -g1,14847:-473656,-710413 -) -g1,14847:-473656,-710413 +[1,14845:6630773,45706769:25952256,40108032,0 +v1,14827:6630773,6254097:0,393216,0 +(1,14827:6630773,16517036:25952256,10656155,0 +g1,14827:6630773,16517036 +g1,14827:6237557,16517036 +r1,14845:6368629,16517036:131072,10656155,0 +g1,14827:6567858,16517036 +g1,14827:6764466,16517036 +[1,14827:6764466,16517036:25818563,10656155,0 +v1,14805:6764466,6254097:0,393216,0 +(1,14825:6764466,16320428:25818563,10459547,196608 +g1,14825:6764466,16320428 +g1,14825:6764466,16320428 +g1,14825:6567858,16320428 +(1,14825:6567858,16320428:0,10459547,196608 +r1,14845:32779637,16320428:26211779,10656155,196608 +k1,14825:6567857,16320428:-26211780 +) +(1,14825:6567858,16320428:26211779,10459547,196608 +[1,14825:6764466,16320428:25818563,10262939,0 +(1,14807:6764466,6488534:25818563,431045,33029 +(1,14806:6764466,6488534:0,0,0 +g1,14806:6764466,6488534 +g1,14806:6764466,6488534 +g1,14806:6436786,6488534 +(1,14806:6436786,6488534:0,0,0 +) +g1,14806:6764466,6488534 +) +h1,14807:11079867,6488534:0,0,0 +k1,14807:32583029,6488534:21503162 +g1,14807:32583029,6488534 +) +(1,14824:6764466,7304461:25818563,431045,33029 +(1,14809:6764466,7304461:0,0,0 +g1,14809:6764466,7304461 +g1,14809:6764466,7304461 +g1,14809:6436786,7304461 +(1,14809:6436786,7304461:0,0,0 +) +g1,14809:6764466,7304461 +) +g1,14824:7760328,7304461 +h1,14824:10084006,7304461:0,0,0 +k1,14824:32583030,7304461:22499024 +g1,14824:32583030,7304461 +) +(1,14824:6764466,7989316:25818563,424439,79822 +h1,14824:6764466,7989316:0,0,0 +g1,14824:7760328,7989316 +g1,14824:9088144,7989316 +h1,14824:10415960,7989316:0,0,0 +k1,14824:32583028,7989316:22167068 +g1,14824:32583028,7989316 +) +(1,14824:6764466,8674171:25818563,398014,0 +h1,14824:6764466,8674171:0,0,0 +h1,14824:7428374,8674171:0,0,0 +k1,14824:32583030,8674171:25154656 +g1,14824:32583030,8674171 +) +(1,14824:6764466,9359026:25818563,431045,33029 +h1,14824:6764466,9359026:0,0,0 +g1,14824:7760328,9359026 +h1,14824:10415959,9359026:0,0,0 +k1,14824:32583029,9359026:22167070 +g1,14824:32583029,9359026 +) +(1,14824:6764466,10043881:25818563,424439,79822 +h1,14824:6764466,10043881:0,0,0 +g1,14824:7760328,10043881 +g1,14824:9088144,10043881 +h1,14824:9420098,10043881:0,0,0 +k1,14824:32583030,10043881:23162932 +g1,14824:32583030,10043881 +) +(1,14824:6764466,10728736:25818563,398014,0 +h1,14824:6764466,10728736:0,0,0 +h1,14824:7428374,10728736:0,0,0 +k1,14824:32583030,10728736:25154656 +g1,14824:32583030,10728736 +) +(1,14824:6764466,11413591:25818563,431045,33029 +h1,14824:6764466,11413591:0,0,0 +g1,14824:7760328,11413591 +h1,14824:10084006,11413591:0,0,0 +k1,14824:32583030,11413591:22499024 +g1,14824:32583030,11413591 +) +(1,14824:6764466,12098446:25818563,424439,79822 +h1,14824:6764466,12098446:0,0,0 +g1,14824:7760328,12098446 +g1,14824:9088144,12098446 +k1,14824:9088144,12098446:0 +h1,14824:13071591,12098446:0,0,0 +k1,14824:32583029,12098446:19511438 +g1,14824:32583029,12098446 +) +(1,14824:6764466,12783301:25818563,398014,0 +h1,14824:6764466,12783301:0,0,0 +h1,14824:7428374,12783301:0,0,0 +k1,14824:32583030,12783301:25154656 +g1,14824:32583030,12783301 +) +(1,14824:6764466,13468156:25818563,431045,106246 +h1,14824:6764466,13468156:0,0,0 +g1,14824:7760328,13468156 +h1,14824:10747913,13468156:0,0,0 +k1,14824:32583029,13468156:21835116 +g1,14824:32583029,13468156 +) +(1,14824:6764466,14153011:25818563,424439,79822 +h1,14824:6764466,14153011:0,0,0 +g1,14824:7760328,14153011 +g1,14824:9088144,14153011 +h1,14824:9420098,14153011:0,0,0 +k1,14824:32583030,14153011:23162932 +g1,14824:32583030,14153011 +) +(1,14824:6764466,14837866:25818563,398014,0 +h1,14824:6764466,14837866:0,0,0 +h1,14824:7428374,14837866:0,0,0 +k1,14824:32583030,14837866:25154656 +g1,14824:32583030,14837866 +) +(1,14824:6764466,15522721:25818563,431045,112852 +h1,14824:6764466,15522721:0,0,0 +g1,14824:7760328,15522721 +h1,14824:11743775,15522721:0,0,0 +k1,14824:32583029,15522721:20839254 +g1,14824:32583029,15522721 +) +(1,14824:6764466,16207576:25818563,424439,112852 +h1,14824:6764466,16207576:0,0,0 +g1,14824:7760328,16207576 +g1,14824:9088144,16207576 +h1,14824:12739637,16207576:0,0,0 +k1,14824:32583029,16207576:19843392 +g1,14824:32583029,16207576 +) +] +) +g1,14825:32583029,16320428 +g1,14825:6764466,16320428 +g1,14825:6764466,16320428 +g1,14825:32583029,16320428 +g1,14825:32583029,16320428 +) +h1,14825:6764466,16517036:0,0,0 +] +g1,14827:32583029,16517036 +) +h1,14827:6630773,16517036:0,0,0 +(1,14830:6630773,17382116:25952256,513147,134348 +h1,14829:6630773,17382116:983040,0,0 +k1,14829:10232881,17382116:221106 +(1,14829:10232881,17382116:0,452978,115847 +r1,14845:13053130,17382116:2820249,568825,115847 +k1,14829:10232881,17382116:-2820249 +) +(1,14829:10232881,17382116:2820249,452978,115847 +k1,14829:10232881,17382116:3277 +h1,14829:13049853,17382116:0,411205,112570 +) +k1,14829:13447907,17382116:221107 +k1,14829:16759036,17382116:221106 +k1,14829:17927794,17382116:221107 +(1,14829:17927794,17382116:0,452978,115847 +r1,14845:19341195,17382116:1413401,568825,115847 +k1,14829:17927794,17382116:-1413401 +) +(1,14829:17927794,17382116:1413401,452978,115847 +k1,14829:17927794,17382116:3277 +h1,14829:19337918,17382116:0,411205,112570 +) +k1,14829:19562301,17382116:221106 +k1,14829:20399445,17382116:221106 +k1,14829:22899239,17382116:221107 +h1,14829:24441957,17382116:0,0,0 +k1,14829:24663063,17382116:221106 +k1,14829:25693539,17382116:221106 +k1,14829:27412799,17382116:221107 +h1,14829:28608176,17382116:0,0,0 +k1,14829:29002952,17382116:221106 +k1,14829:30328341,17382116:221107 +k1,14829:31297213,17382116:221106 +k1,14829:32583029,17382116:0 +) +(1,14830:6630773,18247196:25952256,513147,134348 +k1,14829:8362368,18247196:218369 +k1,14829:9974687,18247196:218368 +k1,14829:12511064,18247196:218369 +k1,14829:14441888,18247196:218368 +k1,14829:16054208,18247196:218369 +(1,14829:16054208,18247196:0,452978,115847 +r1,14845:17819321,18247196:1765113,568825,115847 +k1,14829:16054208,18247196:-1765113 +) +(1,14829:16054208,18247196:1765113,452978,115847 +k1,14829:16054208,18247196:3277 +h1,14829:17816044,18247196:0,411205,112570 +) +k1,14829:18211360,18247196:218369 +k1,14829:19626415,18247196:218368 +k1,14829:20937269,18247196:218369 +k1,14829:21814930,18247196:218369 +k1,14829:24787776,18247196:218368 +k1,14829:28052258,18247196:218369 +k1,14829:28956788,18247196:218368 +k1,14829:31649796,18247196:218369 +k1,14829:32583029,18247196:0 +) +(1,14830:6630773,19112276:25952256,513147,126483 +g1,14829:9376731,19112276 +g1,14829:10107457,19112276 +g1,14829:11077389,19112276 +g1,14829:14485916,19112276 +k1,14830:32583029,19112276:15769275 +g1,14830:32583029,19112276 +) +(1,14833:6630773,21943436:25952256,32768,229376 +(1,14833:6630773,21943436:0,32768,229376 +(1,14833:6630773,21943436:5505024,32768,229376 +r1,14845:12135797,21943436:5505024,262144,229376 +) +k1,14833:6630773,21943436:-5505024 +) +(1,14833:6630773,21943436:25952256,32768,0 +r1,14845:32583029,21943436:25952256,32768,0 +) +) +(1,14833:6630773,23575288:25952256,606339,161218 +(1,14833:6630773,23575288:2464678,582746,0 +g1,14833:6630773,23575288 +g1,14833:9095451,23575288 +) +g1,14833:12170400,23575288 +g1,14833:13880103,23575288 +g1,14833:16188281,23575288 +k1,14833:32583029,23575288:12030837 +g1,14833:32583029,23575288 +) +(1,14837:6630773,24833584:25952256,513147,126483 +k1,14836:7962968,24833584:157135 +k1,14836:9858119,24833584:157136 +k1,14836:12535113,24833584:157135 +k1,14836:14984697,24833584:157135 +k1,14836:16709454,24833584:157136 +k1,14836:17885674,24833584:157135 +k1,14836:19293891,24833584:157135 +k1,14836:20964252,24833584:157135 +k1,14836:21882916,24833584:157136 +k1,14836:25339133,24833584:157135 +k1,14836:26147696,24833584:157135 +k1,14836:27890803,24833584:157136 +k1,14836:30459008,24833584:157135 +k1,14836:32583029,24833584:0 +) +(1,14837:6630773,25698664:25952256,513147,134348 +k1,14836:10200191,25698664:279511 +k1,14836:10835562,25698664:279511 +k1,14836:13034623,25698664:279511 +k1,14836:13973426,25698664:279511 +k1,14836:15499432,25698664:279511 +k1,14836:17509749,25698664:279511 +k1,14836:18996434,25698664:279512 +k1,14836:20789171,25698664:279511 +k1,14836:21754844,25698664:279511 +k1,14836:22390215,25698664:279511 +k1,14836:24970695,25698664:279511 +k1,14836:27008537,25698664:279511 +k1,14836:27939476,25698664:279511 +k1,14836:29804958,25698664:279511 +k1,14836:32583029,25698664:0 +) +(1,14837:6630773,26563744:25952256,513147,126483 +k1,14836:9129660,26563744:253624 +k1,14836:10996781,26563744:253625 +k1,14836:12269490,26563744:253624 +k1,14836:14253920,26563744:253624 +k1,14836:16757396,26563744:253625 +k1,14836:18515071,26563744:253624 +k1,14836:21487785,26563744:253625 +k1,14836:22502937,26563744:253624 +k1,14836:23112421,26563744:253624 +k1,14836:24469672,26563744:253625 +k1,14836:25382588,26563744:253624 +k1,14836:27937181,26563744:253624 +k1,14836:30149677,26563744:253625 +k1,14836:31896867,26563744:253624 +k1,14836:32583029,26563744:0 +) +(1,14837:6630773,27428824:25952256,505283,134348 +k1,14836:8279760,27428824:146246 +k1,14836:10976012,27428824:146246 +k1,14836:11738296,27428824:146246 +k1,14836:13988248,27428824:146246 +k1,14836:14817379,27428824:146246 +k1,14836:17165635,27428824:146246 +k1,14836:19942496,27428824:146246 +k1,14836:21160911,27428824:146246 +k1,14836:22326242,27428824:146246 +k1,14836:24907806,27428824:146246 +k1,14836:26792067,27428824:146246 +k1,14836:30055205,27428824:146246 +k1,14836:30829286,27428824:146246 +k1,14837:32583029,27428824:0 +) +(1,14837:6630773,28293904:25952256,513147,126483 +g1,14836:9448821,28293904 +g1,14836:11897901,28293904 +g1,14836:13088690,28293904 +g1,14836:16313716,28293904 +g1,14836:17797451,28293904 +g1,14836:20665961,28293904 +g1,14836:23276260,28293904 +g1,14836:24666934,28293904 +g1,14836:27167132,28293904 +k1,14837:32583029,28293904:3291876 +g1,14837:32583029,28293904 +) +(1,14839:6630773,29158984:25952256,513147,134348 +h1,14838:6630773,29158984:983040,0,0 +k1,14838:9440083,29158984:280931 +k1,14838:10380306,29158984:280931 +k1,14838:11680322,29158984:280931 +k1,14838:13948960,29158984:280931 +k1,14838:15247665,29158984:280931 +k1,14838:17223357,29158984:280931 +k1,14838:19359611,29158984:280930 +k1,14838:20326704,29158984:280931 +k1,14838:23599354,29158984:280931 +k1,14838:26500414,29158984:280931 +k1,14838:29827458,29158984:280931 +k1,14838:31056040,29158984:280931 +k1,14839:32583029,29158984:0 +) +(1,14839:6630773,30024064:25952256,513147,126483 +k1,14838:9023643,30024064:202657 +k1,14838:10510807,30024064:202658 +k1,14838:11705024,30024064:202657 +k1,14838:16038416,30024064:202658 +k1,14838:16857111,30024064:202657 +k1,14838:18078854,30024064:202658 +k1,14838:19478198,30024064:202657 +k1,14838:21684292,30024064:202658 +k1,14838:24301295,30024064:202657 +k1,14838:25119991,30024064:202658 +k1,14838:26341733,30024064:202657 +k1,14838:27911472,30024064:202658 +k1,14838:28773421,30024064:202657 +k1,14838:32583029,30024064:0 +) +(1,14839:6630773,30889144:25952256,513147,134348 +k1,14838:9173670,30889144:224889 +k1,14838:10544785,30889144:224890 +k1,14838:11788759,30889144:224889 +k1,14838:14729460,30889144:224889 +k1,14838:15613642,30889144:224890 +k1,14838:18431135,30889144:224889 +k1,14838:21744080,30889144:224889 +k1,14838:22651854,30889144:224889 +k1,14838:23489506,30889144:224890 +k1,14838:25209927,30889144:224889 +k1,14838:28609380,30889144:224889 +k1,14838:31260413,30889144:224890 +k1,14838:31841162,30889144:224889 +k1,14839:32583029,30889144:0 +) +(1,14839:6630773,31754224:25952256,513147,134348 +k1,14838:10091124,31754224:264816 +k1,14838:12991143,31754224:264816 +k1,14838:14428398,31754224:264816 +k1,14838:17534854,31754224:264815 +k1,14838:18485832,31754224:264816 +k1,14838:19366686,31754224:264816 +k1,14838:20650587,31754224:264816 +k1,14838:22282484,31754224:264816 +k1,14838:23206592,31754224:264816 +k1,14838:25284134,31754224:264816 +k1,14838:29039396,31754224:264815 +k1,14838:29932047,31754224:264816 +k1,14838:31215948,31754224:264816 +k1,14838:32583029,31754224:0 +) +(1,14839:6630773,32619304:25952256,513147,134348 +k1,14838:7495371,32619304:205306 +k1,14838:11604002,32619304:205307 +k1,14838:13203259,32619304:205306 +k1,14838:15533899,32619304:205307 +k1,14838:17779996,32619304:205306 +k1,14838:19427750,32619304:205307 +k1,14838:20205185,32619304:205306 +k1,14838:23691224,32619304:205307 +k1,14838:26942643,32619304:205306 +k1,14838:27957320,32619304:205307 +k1,14838:30187033,32619304:205306 +k1,14838:32583029,32619304:0 +) +(1,14839:6630773,33484384:25952256,513147,7863 +g1,14838:9499283,33484384 +g1,14838:12304223,33484384 +g1,14838:13162744,33484384 +g1,14838:14381058,33484384 +k1,14839:32583029,33484384:16760179 +g1,14839:32583029,33484384 +) +(1,14841:6630773,34349464:25952256,513147,126483 +h1,14840:6630773,34349464:983040,0,0 +k1,14840:10133127,34349464:244559 +k1,14840:11730348,34349464:244558 +k1,14840:13178148,34349464:244559 +k1,14840:13778566,34349464:244558 +k1,14840:15378410,34349464:244559 +k1,14840:17839396,34349464:244558 +k1,14840:19275400,34349464:244559 +k1,14840:22800690,34349464:244558 +k1,14840:26091362,34349464:244559 +k1,14840:27811135,34349464:244558 +k1,14840:28865064,34349464:244559 +k1,14840:31860823,34349464:244558 +k1,14841:32583029,34349464:0 +) +(1,14841:6630773,35214544:25952256,513147,126483 +k1,14840:8791092,35214544:159505 +k1,14840:10147283,35214544:159504 +k1,14840:12749970,35214544:159505 +k1,14840:15175054,35214544:159504 +k1,14840:15950597,35214544:159505 +k1,14840:17129186,35214544:159504 +k1,14840:19442204,35214544:159505 +k1,14840:21470795,35214544:159504 +k1,14840:22821745,35214544:159505 +k1,14840:25595480,35214544:159504 +k1,14840:26414277,35214544:159505 +k1,14840:27592866,35214544:159504 +k1,14840:30789309,35214544:159505 +k1,14840:32583029,35214544:0 +) +(1,14841:6630773,36079624:25952256,513147,134348 +k1,14840:9117428,36079624:211900 +k1,14840:11590974,36079624:211899 +k1,14840:12462166,36079624:211900 +k1,14840:14463198,36079624:211899 +k1,14840:15565077,36079624:211900 +k1,14840:19283153,36079624:211900 +k1,14840:21720655,36079624:211899 +k1,14840:23937957,36079624:211900 +k1,14840:24911384,36079624:211899 +k1,14840:27601856,36079624:211900 +k1,14840:28496640,36079624:211899 +k1,14840:30870573,36079624:211900 +k1,14840:32583029,36079624:0 +) +(1,14841:6630773,36944704:25952256,513147,126483 +k1,14840:8457043,36944704:153791 +k1,14840:9680382,36944704:153791 +k1,14840:11214361,36944704:153791 +k1,14840:12359712,36944704:153791 +k1,14840:15539300,36944704:153791 +k1,14840:16977597,36944704:153791 +k1,14840:18122948,36944704:153791 +k1,14840:21381179,36944704:153791 +k1,14840:22731657,36944704:153791 +k1,14840:25597328,36944704:153791 +k1,14840:28174640,36944704:153791 +k1,14840:29319991,36944704:153791 +k1,14840:32583029,36944704:0 +) +(1,14841:6630773,37809784:25952256,505283,134348 +g1,14840:8816398,37809784 +g1,14840:10710388,37809784 +g1,14840:11671145,37809784 +g1,14840:14358776,37809784 +g1,14840:17036577,37809784 +g1,14840:18404313,37809784 +g1,14840:21624752,37809784 +g1,14840:25309841,37809784 +k1,14841:32583029,37809784:5431627 +g1,14841:32583029,37809784 +) +(1,14843:6630773,38674864:25952256,513147,134348 +h1,14842:6630773,38674864:983040,0,0 +k1,14842:8441270,38674864:199622 +k1,14842:10291090,38674864:199623 +k1,14842:13177033,38674864:199622 +k1,14842:15800177,38674864:199623 +k1,14842:17018884,38674864:199622 +k1,14842:20239716,38674864:199622 +k1,14842:21430899,38674864:199623 +k1,14842:25707516,38674864:199622 +k1,14842:29212120,38674864:199623 +k1,14842:31095362,38674864:199622 +k1,14843:32583029,38674864:0 +) +(1,14843:6630773,39539944:25952256,513147,126483 +k1,14842:9521213,39539944:194944 +k1,14842:11000664,39539944:194945 +k1,14842:12716043,39539944:194944 +k1,14842:15109065,39539944:194944 +k1,14842:18881620,39539944:194945 +k1,14842:19689326,39539944:194944 +k1,14842:20903355,39539944:194944 +k1,14842:23061102,39539944:194944 +k1,14842:24298069,39539944:194945 +k1,14842:27328100,39539944:194944 +k1,14842:28807550,39539944:194944 +k1,14842:30021580,39539944:194945 +k1,14842:31914562,39539944:194944 +k1,14842:32583029,39539944:0 +) +(1,14843:6630773,40405024:25952256,513147,126483 +k1,14842:8120781,40405024:183875 +k1,14842:11437932,40405024:183875 +k1,14842:12153304,40405024:183875 +k1,14842:13356265,40405024:183876 +k1,14842:15193613,40405024:183875 +k1,14842:16325139,40405024:183875 +k1,14842:17528099,40405024:183875 +k1,14842:18884413,40405024:183875 +k1,14842:22331981,40405024:183875 +k1,14842:24257148,40405024:183875 +k1,14842:27021832,40405024:183876 +k1,14842:27818469,40405024:183875 +k1,14842:29021429,40405024:183875 +k1,14842:30664135,40405024:183875 +k1,14842:32583029,40405024:0 +) +(1,14843:6630773,41270104:25952256,505283,126483 +k1,14842:8307675,41270104:296714 +k1,14842:9595949,41270104:296714 +k1,14842:13330026,41270104:296714 +k1,14842:15007584,41270104:296714 +k1,14842:18551607,41270104:296714 +k1,14842:21321650,41270104:296714 +k1,14842:22902870,41270104:296714 +k1,14842:24218669,41270104:296714 +k1,14842:26256675,41270104:296714 +k1,14842:27084886,41270104:296714 +k1,14842:29966340,41270104:296714 +k1,14842:30890889,41270104:296714 +k1,14842:32583029,41270104:0 +) +(1,14843:6630773,42135184:25952256,513147,134348 +k1,14842:8675854,42135184:174028 +k1,14842:11051891,42135184:174027 +k1,14842:14803529,42135184:174028 +k1,14842:15969117,42135184:174028 +k1,14842:18877962,42135184:174028 +k1,14842:19861359,42135184:174027 +k1,14842:22076178,42135184:174028 +k1,14842:23989532,42135184:174028 +k1,14842:27800808,42135184:174028 +k1,14842:28922486,42135184:174027 +k1,14842:31931601,42135184:174028 +k1,14842:32583029,42135184:0 +) +(1,14843:6630773,43000264:25952256,513147,7863 +k1,14842:7819362,43000264:169504 +k1,14842:10230197,43000264:169504 +k1,14842:13532977,43000264:169504 +k1,14842:14353909,43000264:169504 +k1,14842:16666440,43000264:169504 +k1,14842:18120450,43000264:169504 +k1,14842:19309039,43000264:169504 +k1,14842:21219836,43000264:169505 +k1,14842:22048632,43000264:169504 +k1,14842:23237221,43000264:169504 +k1,14842:24712858,43000264:169504 +k1,14842:28015638,43000264:169504 +k1,14842:28716639,43000264:169504 +k1,14842:30171959,43000264:169504 +k1,14842:32583029,43000264:0 +) +(1,14843:6630773,43865344:25952256,505283,7863 +g1,14842:7442764,43865344 +g1,14842:8661078,43865344 +k1,14843:32583029,43865344:22080390 +g1,14843:32583029,43865344 +) +(1,14845:6630773,44730424:25952256,513147,134348 +h1,14844:6630773,44730424:983040,0,0 +k1,14844:10041743,44730424:153175 +k1,14844:11186479,44730424:153176 +k1,14844:12852880,44730424:153175 +k1,14844:13622094,44730424:153176 +k1,14844:16842354,44730424:153175 +k1,14844:19571750,44730424:153176 +k1,14844:21118876,44730424:153175 +k1,14844:24678613,44730424:153176 +k1,14844:25483216,44730424:153175 +k1,14844:27222363,44730424:153176 +k1,14844:30171959,44730424:153175 +k1,14844:32583029,44730424:0 +) +(1,14845:6630773,45595504:25952256,513147,126483 +k1,14844:9161937,45595504:285901 +k1,14844:11005629,45595504:285901 +k1,14844:12283089,45595504:285900 +k1,14844:13854806,45595504:285901 +k1,14844:14888473,45595504:285901 +k1,14844:16687600,45595504:285901 +k1,14844:17921151,45595504:285900 +k1,14844:22533084,45595504:285901 +k1,14844:23435023,45595504:285901 +k1,14844:25606395,45595504:285901 +k1,14844:27259376,45595504:285900 +k1,14844:31790699,45595504:285901 +k1,14845:32583029,45595504:0 +) +] +(1,14845:32583029,45706769:0,0,0 +g1,14845:32583029,45706769 +) +) +] +(1,14845:6630773,47279633:25952256,0,0 +h1,14845:6630773,47279633:25952256,0,0 +) +] +(1,14845:4262630,4025873:0,0,0 +[1,14845:-473656,4025873:0,0,0 +(1,14845:-473656,-710413:0,0,0 +(1,14845:-473656,-710413:0,0,0 +g1,14845:-473656,-710413 +) +g1,14845:-473656,-710413 ) ] ) ] !22312 -}238 -Input:2536:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2538:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}239 Input:2539:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2540:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2541:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -262409,146 +262605,211 @@ Input:2548:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2549:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2550:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2551:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2552:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2553:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2554:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{239 -[1,14900:4262630,47279633:28320399,43253760,0 -(1,14900:4262630,4025873:0,0,0 -[1,14900:-473656,4025873:0,0,0 -(1,14900:-473656,-710413:0,0,0 -(1,14900:-473656,-644877:0,0,0 -k1,14900:-473656,-644877:-65536 +{240 +[1,14898:4262630,47279633:28320399,43253760,0 +(1,14898:4262630,4025873:0,0,0 +[1,14898:-473656,4025873:0,0,0 +(1,14898:-473656,-710413:0,0,0 +(1,14898:-473656,-644877:0,0,0 +k1,14898:-473656,-644877:-65536 ) -(1,14900:-473656,4736287:0,0,0 -k1,14900:-473656,4736287:5209943 +(1,14898:-473656,4736287:0,0,0 +k1,14898:-473656,4736287:5209943 ) -g1,14900:-473656,-710413 +g1,14898:-473656,-710413 ) ] ) -[1,14900:6630773,47279633:25952256,43253760,0 -[1,14900:6630773,4812305:25952256,786432,0 -(1,14900:6630773,4812305:25952256,513147,126483 -(1,14900:6630773,4812305:25952256,513147,126483 -g1,14900:3078558,4812305 -[1,14900:3078558,4812305:0,0,0 -(1,14900:3078558,2439708:0,1703936,0 -k1,14900:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14900:2537886,2439708:1179648,16384,0 +[1,14898:6630773,47279633:25952256,43253760,0 +[1,14898:6630773,4812305:25952256,786432,0 +(1,14898:6630773,4812305:25952256,513147,126483 +(1,14898:6630773,4812305:25952256,513147,126483 +g1,14898:3078558,4812305 +[1,14898:3078558,4812305:0,0,0 +(1,14898:3078558,2439708:0,1703936,0 +k1,14898:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14898:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14900:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14898:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14900:3078558,4812305:0,0,0 -(1,14900:3078558,2439708:0,1703936,0 -g1,14900:29030814,2439708 -g1,14900:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14900:36151628,1915420:16384,1179648,0 +[1,14898:3078558,4812305:0,0,0 +(1,14898:3078558,2439708:0,1703936,0 +g1,14898:29030814,2439708 +g1,14898:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14898:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14900:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14898:37855564,2439708:1179648,16384,0 ) ) -k1,14900:3078556,2439708:-34777008 +k1,14898:3078556,2439708:-34777008 ) ] -[1,14900:3078558,4812305:0,0,0 -(1,14900:3078558,49800853:0,16384,2228224 -k1,14900:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14900:2537886,49800853:1179648,16384,0 +[1,14898:3078558,4812305:0,0,0 +(1,14898:3078558,49800853:0,16384,2228224 +k1,14898:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14898:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14900:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14898:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14900:3078558,4812305:0,0,0 -(1,14900:3078558,49800853:0,16384,2228224 -g1,14900:29030814,49800853 -g1,14900:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14900:36151628,51504789:16384,1179648,0 +[1,14898:3078558,4812305:0,0,0 +(1,14898:3078558,49800853:0,16384,2228224 +g1,14898:29030814,49800853 +g1,14898:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14898:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14900:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14898:37855564,49800853:1179648,16384,0 ) ) -k1,14900:3078556,49800853:-34777008 +k1,14898:3078556,49800853:-34777008 ) ] -g1,14900:6630773,4812305 -k1,14900:19575446,4812305:11749296 -g1,14900:21198117,4812305 -g1,14900:21985204,4812305 -g1,14900:24539797,4812305 -g1,14900:25949476,4812305 -g1,14900:28728857,4812305 -g1,14900:29852144,4812305 +g1,14898:6630773,4812305 +k1,14898:19575446,4812305:11749296 +g1,14898:21198117,4812305 +g1,14898:21985204,4812305 +g1,14898:24539797,4812305 +g1,14898:25949476,4812305 +g1,14898:28728857,4812305 +g1,14898:29852144,4812305 ) ) ] -[1,14900:6630773,45706769:25952256,40108032,0 -(1,14900:6630773,45706769:25952256,40108032,0 -(1,14900:6630773,45706769:0,0,0 -g1,14900:6630773,45706769 +[1,14898:6630773,45706769:25952256,40108032,0 +(1,14898:6630773,45706769:25952256,40108032,0 +(1,14898:6630773,45706769:0,0,0 +g1,14898:6630773,45706769 +) +[1,14898:6630773,45706769:25952256,40108032,0 +[1,14868:6630773,16557328:25952256,10958591,0 +[1,14868:6630773,16557328:25952256,10958591,0 +(1,14867:6630773,10585005:25952256,4986268,0 +k1,14867:7532124,10585005:901351 +h1,14865:7532124,10585005:0,0,0 +(1,14865:7532124,10585005:23970247,4986268,0 +g1,14865:9409910,10585005 +(1,14865:9409910,6786601:0,0,0 +(1,14865:9409910,6786601:0,0,0 +g1,14851:9409910,6786601 +(1,14852:9409910,6786601:0,0,0 +(1,14852:9409910,6786601:0,0,0 +g1,14852:9409910,6786601 +g1,14852:9409910,6786601 +g1,14852:9409910,6786601 +g1,14852:9409910,6786601 +g1,14852:9409910,6786601 +(1,14852:9409910,6786601:0,0,0 +(1,14852:9409910,6786601:2386891,454754,104590 +(1,14852:9409910,6786601:2386891,454754,104590 +g1,14852:10686880,6786601 +$1,14852:10686880,6786601 +$1,14852:11294399,6786601 +g1,14852:11473706,6786601 +(1,14852:11473706,6786601:0,373362,104590 +r1,14898:11796801,6786601:323095,477952,104590 +k1,14852:11473706,6786601:-323095 +) +(1,14852:11473706,6786601:323095,373362,104590 +k1,14852:11473706,6786601:3277 +h1,14852:11793524,6786601:0,370085,101313 +) +) +g1,14852:11796801,6786601 +) +) +g1,14852:9409910,6786601 +g1,14852:9409910,6786601 +) ) -[1,14900:6630773,45706769:25952256,40108032,0 -[1,14870:6630773,16557328:25952256,10958591,0 -[1,14870:6630773,16557328:25952256,10958591,0 -(1,14869:6630773,10585005:25952256,4986268,0 -k1,14869:7532124,10585005:901351 -h1,14867:7532124,10585005:0,0,0 -(1,14867:7532124,10585005:23970247,4986268,0 -g1,14867:9409910,10585005 -(1,14867:9409910,6786601:0,0,0 -(1,14867:9409910,6786601:0,0,0 +g1,14852:9409910,6786601 g1,14853:9409910,6786601 +(1,14853:9409910,6786601:0,0,0 +(1,14853:9409910,6786601:0,0,0 +g1,14853:9409910,6786601 +g1,14853:9409910,6786601 +g1,14853:9409910,6786601 +g1,14853:9409910,6786601 +g1,14853:9409910,6786601 +(1,14853:9409910,6786601:0,0,0 +(1,14853:9409910,6786601:2386891,454754,104590 +(1,14853:9409910,6786601:2386891,454754,104590 +g1,14853:10686880,6786601 +$1,14853:10686880,6786601 +$1,14853:11294399,6786601 +g1,14853:11473706,6786601 +(1,14853:11473706,6786601:0,373362,104590 +r1,14898:11796801,6786601:323095,477952,104590 +k1,14853:11473706,6786601:-323095 +) +(1,14853:11473706,6786601:323095,373362,104590 +k1,14853:11473706,6786601:3277 +h1,14853:11793524,6786601:0,370085,101313 +) +) +g1,14853:11796801,6786601 +) +) +g1,14853:9409910,6786601 +g1,14853:9409910,6786601 +) +) (1,14854:9409910,6786601:0,0,0 (1,14854:9409910,6786601:0,0,0 g1,14854:9409910,6786601 @@ -262557,22 +262818,18 @@ g1,14854:9409910,6786601 g1,14854:9409910,6786601 g1,14854:9409910,6786601 (1,14854:9409910,6786601:0,0,0 -(1,14854:9409910,6786601:2386891,454754,104590 -(1,14854:9409910,6786601:2386891,454754,104590 -g1,14854:10686880,6786601 -$1,14854:10686880,6786601 -$1,14854:11294399,6786601 -g1,14854:11473706,6786601 -(1,14854:11473706,6786601:0,373362,104590 -r1,14900:11796801,6786601:323095,477952,104590 -k1,14854:11473706,6786601:-323095 +(1,14854:9409910,6786601:4754664,408008,104590 +(1,14854:9409910,6786601:4754664,408008,104590 +(1,14854:9409910,6786601:0,408008,104590 +r1,14898:14164574,6786601:4754664,512598,104590 +k1,14854:9409910,6786601:-4754664 ) -(1,14854:11473706,6786601:323095,373362,104590 -k1,14854:11473706,6786601:3277 -h1,14854:11793524,6786601:0,370085,101313 +(1,14854:9409910,6786601:4754664,408008,104590 +k1,14854:9409910,6786601:3277 +h1,14854:14161297,6786601:0,370085,101313 ) ) -g1,14854:11796801,6786601 +g1,14854:14164574,6786601 ) ) g1,14854:9409910,6786601 @@ -262580,7 +262837,6 @@ g1,14854:9409910,6786601 ) ) g1,14854:9409910,6786601 -g1,14855:9409910,6786601 (1,14855:9409910,6786601:0,0,0 (1,14855:9409910,6786601:0,0,0 g1,14855:9409910,6786601 @@ -262589,28 +262845,26 @@ g1,14855:9409910,6786601 g1,14855:9409910,6786601 g1,14855:9409910,6786601 (1,14855:9409910,6786601:0,0,0 -(1,14855:9409910,6786601:2386891,454754,104590 -(1,14855:9409910,6786601:2386891,454754,104590 -g1,14855:10686880,6786601 -$1,14855:10686880,6786601 -$1,14855:11294399,6786601 -g1,14855:11473706,6786601 -(1,14855:11473706,6786601:0,373362,104590 -r1,14900:11796801,6786601:323095,477952,104590 -k1,14855:11473706,6786601:-323095 +(1,14855:9409910,6786601:5341339,454754,120913 +(1,14855:9409910,6786601:5341339,454754,120913 +(1,14855:9409910,6786601:0,408008,104590 +r1,14898:13531492,6786601:4121582,512598,104590 +k1,14855:9409910,6786601:-4121582 ) -(1,14855:11473706,6786601:323095,373362,104590 -k1,14855:11473706,6786601:3277 -h1,14855:11793524,6786601:0,370085,101313 +(1,14855:9409910,6786601:4121582,408008,104590 +k1,14855:9409910,6786601:3277 +h1,14855:13528215,6786601:0,370085,101313 ) +g1,14855:13710799,6786601 ) -g1,14855:11796801,6786601 +g1,14855:14751249,6786601 ) ) g1,14855:9409910,6786601 g1,14855:9409910,6786601 ) ) +g1,14855:9409910,6786601 (1,14856:9409910,6786601:0,0,0 (1,14856:9409910,6786601:0,0,0 g1,14856:9409910,6786601 @@ -262619,18 +262873,18 @@ g1,14856:9409910,6786601 g1,14856:9409910,6786601 g1,14856:9409910,6786601 (1,14856:9409910,6786601:0,0,0 -(1,14856:9409910,6786601:4754664,408008,104590 -(1,14856:9409910,6786601:4754664,408008,104590 +(1,14856:9409910,6786601:2855420,408008,104590 +(1,14856:9409910,6786601:2855420,408008,104590 (1,14856:9409910,6786601:0,408008,104590 -r1,14900:14164574,6786601:4754664,512598,104590 -k1,14856:9409910,6786601:-4754664 +r1,14898:12265330,6786601:2855420,512598,104590 +k1,14856:9409910,6786601:-2855420 ) -(1,14856:9409910,6786601:4754664,408008,104590 +(1,14856:9409910,6786601:2855420,408008,104590 k1,14856:9409910,6786601:3277 -h1,14856:14161297,6786601:0,370085,101313 +h1,14856:12262053,6786601:0,370085,101313 ) ) -g1,14856:14164574,6786601 +g1,14856:12265330,6786601 ) ) g1,14856:9409910,6786601 @@ -262646,26 +262900,24 @@ g1,14857:9409910,6786601 g1,14857:9409910,6786601 g1,14857:9409910,6786601 (1,14857:9409910,6786601:0,0,0 -(1,14857:9409910,6786601:5341339,454754,120913 -(1,14857:9409910,6786601:5341339,454754,120913 -(1,14857:9409910,6786601:0,408008,104590 -r1,14900:13531492,6786601:4121582,512598,104590 -k1,14857:9409910,6786601:-4121582 +(1,14857:9409910,6786601:2538879,414307,104590 +(1,14857:9409910,6786601:2538879,414307,104590 +(1,14857:9409910,6786601:0,414307,104590 +r1,14898:11948789,6786601:2538879,518897,104590 +k1,14857:9409910,6786601:-2538879 ) -(1,14857:9409910,6786601:4121582,408008,104590 +(1,14857:9409910,6786601:2538879,414307,104590 k1,14857:9409910,6786601:3277 -h1,14857:13528215,6786601:0,370085,101313 +h1,14857:11945512,6786601:0,370085,101313 ) -g1,14857:13710799,6786601 ) -g1,14857:14751249,6786601 +g1,14857:11948789,6786601 ) ) g1,14857:9409910,6786601 g1,14857:9409910,6786601 ) ) -g1,14857:9409910,6786601 (1,14858:9409910,6786601:0,0,0 (1,14858:9409910,6786601:0,0,0 g1,14858:9409910,6786601 @@ -262674,18 +262926,18 @@ g1,14858:9409910,6786601 g1,14858:9409910,6786601 g1,14858:9409910,6786601 (1,14858:9409910,6786601:0,0,0 -(1,14858:9409910,6786601:2855420,408008,104590 -(1,14858:9409910,6786601:2855420,408008,104590 +(1,14858:9409910,6786601:3488501,408008,104590 +(1,14858:9409910,6786601:3488501,408008,104590 (1,14858:9409910,6786601:0,408008,104590 -r1,14900:12265330,6786601:2855420,512598,104590 -k1,14858:9409910,6786601:-2855420 +r1,14898:12898411,6786601:3488501,512598,104590 +k1,14858:9409910,6786601:-3488501 ) -(1,14858:9409910,6786601:2855420,408008,104590 +(1,14858:9409910,6786601:3488501,408008,104590 k1,14858:9409910,6786601:3277 -h1,14858:12262053,6786601:0,370085,101313 +h1,14858:12895134,6786601:0,370085,101313 ) ) -g1,14858:12265330,6786601 +g1,14858:12898411,6786601 ) ) g1,14858:9409910,6786601 @@ -262693,58 +262945,17 @@ g1,14858:9409910,6786601 ) ) g1,14858:9409910,6786601 -(1,14859:9409910,6786601:0,0,0 -(1,14859:9409910,6786601:0,0,0 g1,14859:9409910,6786601 g1,14859:9409910,6786601 g1,14859:9409910,6786601 g1,14859:9409910,6786601 g1,14859:9409910,6786601 -(1,14859:9409910,6786601:0,0,0 -(1,14859:9409910,6786601:2538879,414307,104590 -(1,14859:9409910,6786601:2538879,414307,104590 -(1,14859:9409910,6786601:0,414307,104590 -r1,14900:11948789,6786601:2538879,518897,104590 -k1,14859:9409910,6786601:-2538879 -) -(1,14859:9409910,6786601:2538879,414307,104590 -k1,14859:9409910,6786601:3277 -h1,14859:11945512,6786601:0,370085,101313 -) -) -g1,14859:11948789,6786601 -) -) -g1,14859:9409910,6786601 g1,14859:9409910,6786601 -) -) -(1,14860:9409910,6786601:0,0,0 -(1,14860:9409910,6786601:0,0,0 g1,14860:9409910,6786601 g1,14860:9409910,6786601 g1,14860:9409910,6786601 g1,14860:9409910,6786601 g1,14860:9409910,6786601 -(1,14860:9409910,6786601:0,0,0 -(1,14860:9409910,6786601:3488501,408008,104590 -(1,14860:9409910,6786601:3488501,408008,104590 -(1,14860:9409910,6786601:0,408008,104590 -r1,14900:12898411,6786601:3488501,512598,104590 -k1,14860:9409910,6786601:-3488501 -) -(1,14860:9409910,6786601:3488501,408008,104590 -k1,14860:9409910,6786601:3277 -h1,14860:12895134,6786601:0,370085,101313 -) -) -g1,14860:12898411,6786601 -) -) -g1,14860:9409910,6786601 -g1,14860:9409910,6786601 -) -) g1,14860:9409910,6786601 g1,14861:9409910,6786601 g1,14861:9409910,6786601 @@ -262772,598 +262983,583 @@ g1,14864:9409910,6786601 g1,14864:9409910,6786601 g1,14865:9409910,6786601 g1,14865:9409910,6786601 -g1,14865:9409910,6786601 -g1,14865:9409910,6786601 -g1,14865:9409910,6786601 -g1,14865:9409910,6786601 -g1,14866:9409910,6786601 -g1,14866:9409910,6786601 -g1,14866:9409910,6786601 -g1,14866:9409910,6786601 -g1,14866:9409910,6786601 -g1,14866:9409910,6786601 -g1,14867:9409910,6786601 -g1,14867:9409910,6786601 ) -g1,14867:9409910,6786601 +g1,14865:9409910,6786601 ) ) +g1,14865:31681678,10585005 g1,14867:31681678,10585005 -g1,14869:31681678,10585005 -k1,14869:32583029,10585005:901351 -) -(1,14869:6630773,12105445:25952256,505283,134348 -h1,14869:6630773,12105445:0,0,0 -g1,14869:8923222,12105445 -k1,14869:32583029,12105445:22669558 -g1,14869:32583029,12105445 -) -(1,14869:6630773,12970525:25952256,513147,134348 -h1,14869:6630773,12970525:0,0,0 -k1,14869:8917374,12970525:222217 -k1,14869:9798884,12970525:222218 -k1,14869:12432171,12970525:222217 -k1,14869:14904240,12970525:222218 -k1,14869:15742495,12970525:222217 -k1,14869:16553226,12970525:222218 -k1,14869:19187823,12970525:222217 -k1,14869:22026238,12970525:222218 -k1,14869:23816076,12970525:222217 -k1,14869:26023380,12970525:222218 -h1,14869:26993968,12970525:0,0,0 -k1,14869:27216185,12970525:222217 -k1,14869:30074916,12970525:222218 -k1,14869:30948561,12970525:222217 -k1,14869:32583029,12970525:0 -) -(1,14869:6630773,13835605:25952256,513147,134348 -k1,14869:7937561,13835605:287703 -k1,14869:10159887,13835605:287703 -k1,14869:11106882,13835605:287703 -k1,14869:13818106,13835605:287703 -k1,14869:17229255,13835605:287703 -k1,14869:19354588,13835605:287703 -k1,14869:20633850,13835605:287702 -k1,14869:23078998,13835605:287703 -k1,14869:24760652,13835605:287703 -k1,14869:26982978,13835605:287703 -k1,14869:27929973,13835605:287703 -k1,14869:29919646,13835605:287703 -k1,14869:31923737,13835605:287703 -k1,14869:32583029,13835605:0 -) -(1,14869:6630773,14700685:25952256,513147,126483 -k1,14869:9364496,14700685:242044 -k1,14869:10797984,14700685:242043 -k1,14869:12648937,14700685:242044 -k1,14869:14377993,14700685:242044 -k1,14869:15611596,14700685:242043 -k1,14869:18250947,14700685:242044 -k1,14869:19144419,14700685:242044 -(1,14869:19144419,14700685:0,452978,115847 -r1,14900:24426650,14700685:5282231,568825,115847 -k1,14869:19144419,14700685:-5282231 -) -(1,14869:19144419,14700685:5282231,452978,115847 -k1,14869:19144419,14700685:3277 -h1,14869:24423373,14700685:0,411205,112570 -) -k1,14869:24842363,14700685:242043 -k1,14869:26574696,14700685:242044 -k1,14869:27835825,14700685:242044 -k1,14869:29732652,14700685:242043 -k1,14869:31576396,14700685:242044 -k1,14869:32583029,14700685:0 -) -(1,14869:6630773,15565765:25952256,505283,126483 -k1,14869:9218396,15565765:183107 -k1,14869:10914730,15565765:183108 -k1,14869:12913840,15565765:183107 -k1,14869:15881572,15565765:183107 -k1,14869:17056239,15565765:183107 -k1,14869:19488543,15565765:183108 -k1,14869:21361168,15565765:183107 -k1,14869:24418029,15565765:183107 -k1,14869:25792582,15565765:183108 -k1,14869:29741388,15565765:183107 -k1,14869:32583029,15565765:0 -) -(1,14869:6630773,16430845:25952256,505283,126483 -g1,14869:7821562,16430845 -g1,14869:10226078,16430845 -g1,14869:13694243,16430845 -g1,14869:14544900,16430845 -g1,14869:15108510,16430845 -g1,14869:16499184,16430845 -k1,14869:32583029,16430845:15665726 -g1,14869:32583029,16430845 -) -] -] -(1,14847:6630773,18523408:25952256,513147,126483 -k1,14846:9009075,18523408:245105 -k1,14846:9905607,18523408:245104 -k1,14846:10898478,18523408:245105 -k1,14846:14384993,18523408:245104 -k1,14846:17073280,18523408:245105 -k1,14846:18337469,18523408:245104 -k1,14846:20371707,18523408:245105 -k1,14846:21276103,18523408:245104 -k1,14846:21877068,18523408:245105 -k1,14846:24041722,18523408:245104 -k1,14846:25800053,18523408:245105 -k1,14846:26696586,18523408:245105 -k1,14846:30968222,18523408:245104 -k1,14847:32583029,18523408:0 -) -(1,14847:6630773,19388488:25952256,513147,126483 -k1,14846:9450384,19388488:270260 -k1,14846:11904959,19388488:270260 -k1,14846:14451285,19388488:270261 -k1,14846:16971396,19388488:270260 -k1,14846:18345938,19388488:270260 -k1,14846:19363964,19388488:270260 -k1,14846:21147451,19388488:270261 -k1,14846:22103873,19388488:270260 -k1,14846:24692141,19388488:270260 -k1,14846:25613829,19388488:270260 -k1,14846:26631856,19388488:270261 -k1,14846:27589589,19388488:270260 -k1,14846:28511277,19388488:270260 -k1,14846:32583029,19388488:0 -) -(1,14847:6630773,20253568:25952256,513147,134348 -k1,14846:9156764,20253568:215847 -k1,14846:10024040,20253568:215848 -k1,14846:12734187,20253568:215847 -k1,14846:15949618,20253568:215848 -k1,14846:16793300,20253568:215847 -k1,14846:18212389,20253568:215848 -k1,14846:19795317,20253568:215847 -k1,14846:22261015,20253568:215847 -k1,14846:23997298,20253568:215848 -k1,14846:25232230,20253568:215847 -k1,14846:26683432,20253568:215848 -k1,14846:27558571,20253568:215847 -k1,14846:31325160,20253568:215848 -k1,14846:32227169,20253568:215847 -k1,14846:32583029,20253568:0 -) -(1,14847:6630773,21118648:25952256,505283,134348 -g1,14846:8571294,21118648 -g1,14846:10055029,21118648 -g1,14846:12680401,21118648 -g1,14846:15879213,21118648 -g1,14846:16434302,21118648 -g1,14846:20464766,21118648 -g1,14846:22823406,21118648 -k1,14847:32583029,21118648:6865554 -g1,14847:32583029,21118648 -) -(1,14849:6630773,21983728:25952256,513147,126483 -h1,14848:6630773,21983728:983040,0,0 -k1,14848:10220453,21983728:331885 -k1,14848:11543898,21983728:331885 -k1,14848:15180764,21983728:331885 -k1,14848:17025875,21983728:331885 -k1,14848:18043922,21983728:331885 -k1,14848:20786878,21983728:331886 -k1,14848:23190356,21983728:331885 -k1,14848:24138279,21983728:331885 -k1,14848:26077762,21983728:331885 -k1,14848:27095809,21983728:331885 -k1,14848:30517717,21983728:331885 -k1,14848:31465640,21983728:331885 -k1,14849:32583029,21983728:0 -) -(1,14849:6630773,22848808:25952256,513147,134348 -k1,14848:8133548,22848808:235309 -h1,14848:9676266,22848808:0,0,0 -k1,14848:9911575,22848808:235309 -k1,14848:10956254,22848808:235309 -k1,14848:12689716,22848808:235309 -h1,14848:13885093,22848808:0,0,0 -k1,14848:14294072,22848808:235309 -k1,14848:17319250,22848808:235310 -(1,14848:17319250,22848808:0,452978,115847 -r1,14900:20139499,22848808:2820249,568825,115847 -k1,14848:17319250,22848808:-2820249 -) -(1,14848:17319250,22848808:2820249,452978,115847 -k1,14848:17319250,22848808:3277 -h1,14848:20136222,22848808:0,411205,112570 -) -k1,14848:20374808,22848808:235309 -k1,14848:21141614,22848808:235309 -k1,14848:22890149,22848808:235309 -k1,14848:24073109,22848808:235309 -k1,14848:28460779,22848808:235309 -k1,14848:29887533,22848808:235309 -k1,14849:32583029,22848808:0 -) -(1,14849:6630773,23713888:25952256,513147,134348 -(1,14848:6630773,23713888:0,452978,115847 -r1,14900:11913004,23713888:5282231,568825,115847 -k1,14848:6630773,23713888:-5282231 -) -(1,14848:6630773,23713888:5282231,452978,115847 -k1,14848:6630773,23713888:3277 -h1,14848:11909727,23713888:0,411205,112570 -) -k1,14848:12117692,23713888:204688 -k1,14848:13270031,23713888:204688 -k1,14848:16876039,23713888:204689 -k1,14848:17842255,23713888:204688 -k1,14848:19981566,23713888:204688 -k1,14848:20542114,23713888:204688 -k1,14848:22430422,23713888:204688 -k1,14848:24554660,23713888:204688 -k1,14848:25322303,23713888:204689 -k1,14848:27446541,23713888:204688 -k1,14848:29570123,23713888:204688 -k1,14848:30793896,23713888:204688 -k1,14848:32583029,23713888:0 -) -(1,14849:6630773,24578968:25952256,513147,134348 -k1,14848:7778895,24578968:156562 -k1,14848:11199151,24578968:156563 -k1,14848:12117241,24578968:156562 -k1,14848:13855843,24578968:156563 -k1,14848:16137738,24578968:156562 -k1,14848:20578389,24578968:156562 -k1,14848:23524820,24578968:156563 -(1,14848:23524820,24578968:0,452978,115847 -r1,14900:28807051,24578968:5282231,568825,115847 -k1,14848:23524820,24578968:-5282231 -) -(1,14848:23524820,24578968:5282231,452978,115847 -k1,14848:23524820,24578968:3277 -h1,14848:28803774,24578968:0,411205,112570 -) -k1,14848:28963613,24578968:156562 -k1,14848:30221181,24578968:156563 -k1,14848:30733603,24578968:156562 -k1,14849:32583029,24578968:0 -) -(1,14849:6630773,25444048:25952256,513147,102891 -k1,14848:7844266,25444048:194408 -k1,14848:9419517,25444048:194407 -k1,14848:12424109,25444048:194408 -k1,14848:14060964,25444048:194408 -k1,14848:15539877,25444048:194407 -k1,14848:16602637,25444048:194408 -k1,14848:18310270,25444048:194407 -k1,14848:19452329,25444048:194408 -k1,14848:21634444,25444048:194408 -k1,14848:22516324,25444048:194407 -k1,14848:25736529,25444048:194408 -k1,14848:29020960,25444048:194408 -k1,14848:31244362,25444048:194407 -k1,14848:32124932,25444048:194408 -k1,14848:32583029,25444048:0 -) -(1,14849:6630773,26309128:25952256,505283,134348 -k1,14848:8206711,26309128:200337 -k1,14848:10785350,26309128:200337 -(1,14848:10785350,26309128:0,452978,115847 -r1,14900:13253887,26309128:2468537,568825,115847 -k1,14848:10785350,26309128:-2468537 -) -(1,14848:10785350,26309128:2468537,452978,115847 -k1,14848:10785350,26309128:3277 -h1,14848:13250610,26309128:0,411205,112570 -) -k1,14848:13454224,26309128:200337 -k1,14848:15962739,26309128:200337 -k1,14848:16849238,26309128:200337 -k1,14848:20452204,26309128:200337 -k1,14848:21303968,26309128:200336 -k1,14848:25115339,26309128:200337 -(1,14848:25115339,26309128:0,414482,115847 -r1,14900:25473605,26309128:358266,530329,115847 -k1,14848:25115339,26309128:-358266 -) -(1,14848:25115339,26309128:358266,414482,115847 -k1,14848:25115339,26309128:3277 -h1,14848:25470328,26309128:0,411205,112570 -) -k1,14848:25673942,26309128:200337 -k1,14848:27065724,26309128:200337 -(1,14848:27065724,26309128:0,414482,115847 -r1,14900:27423990,26309128:358266,530329,115847 -k1,14848:27065724,26309128:-358266 -) -(1,14848:27065724,26309128:358266,414482,115847 -k1,14848:27065724,26309128:3277 -h1,14848:27420713,26309128:0,411205,112570 -) -k1,14848:27624327,26309128:200337 -k1,14848:30016843,26309128:200337 -h1,14848:30987431,26309128:0,0,0 -k1,14848:31568532,26309128:200337 -k1,14849:32583029,26309128:0 -) -(1,14849:6630773,27174208:25952256,513147,126483 -k1,14848:9272310,27174208:191146 -k1,14848:13074491,27174208:191147 -k1,14848:14981370,27174208:191146 -k1,14848:15630614,27174208:191147 -k1,14848:18451720,27174208:191146 -k1,14848:19294294,27174208:191146 -k1,14848:22130474,27174208:191147 -k1,14848:23340705,27174208:191146 -k1,14848:26127733,27174208:191147 -k1,14848:27266530,27174208:191146 -k1,14848:29943458,27174208:191147 -k1,14848:30793896,27174208:191146 -k1,14848:32583029,27174208:0 -) -(1,14849:6630773,28039288:25952256,513147,134348 -k1,14848:8067868,28039288:245650 -k1,14848:10318919,28039288:245649 -k1,14848:11583654,28039288:245650 -k1,14848:14526111,28039288:245650 -k1,14848:15454645,28039288:245649 -k1,14848:18596986,28039288:245650 -k1,14848:21410337,28039288:245650 -k1,14848:22011846,28039288:245649 -k1,14848:24736068,28039288:245650 -k1,14848:26323895,28039288:245650 -k1,14848:27766231,28039288:245649 -(1,14848:27766231,28039288:0,452978,115847 -r1,14900:29883056,28039288:2116825,568825,115847 -k1,14848:27766231,28039288:-2116825 -) -(1,14848:27766231,28039288:2116825,452978,115847 -k1,14848:27766231,28039288:3277 -h1,14848:29879779,28039288:0,411205,112570 -) -k1,14848:30128706,28039288:245650 -k1,14848:32583029,28039288:0 -) -(1,14849:6630773,28904368:25952256,513147,126483 -k1,14848:7810572,28904368:232148 -k1,14848:10466242,28904368:232149 -k1,14848:14026964,28904368:232148 -k1,14848:14910541,28904368:232149 -k1,14848:16161774,28904368:232148 -k1,14848:19178548,28904368:232149 -k1,14848:20358347,28904368:232148 -k1,14848:22292466,28904368:232149 -k1,14848:23212087,28904368:232148 -k1,14848:26643704,28904368:232149 -k1,14848:29826283,28904368:232148 -k1,14848:30414292,28904368:232149 -k1,14848:31923737,28904368:232148 -k1,14848:32583029,28904368:0 -) -(1,14849:6630773,29769448:25952256,513147,126483 -k1,14848:7848227,29769448:198369 -k1,14848:11499688,29769448:198369 -k1,14848:12515947,29769448:198370 -k1,14848:13523686,29769448:198369 -k1,14848:15709762,29769448:198369 -k1,14848:18451583,29769448:198369 -k1,14848:19181449,29769448:198369 -k1,14848:20893044,29769448:198369 -k1,14848:22467015,29769448:198370 -k1,14848:23822094,29769448:198369 -k1,14848:25761755,29769448:198369 -k1,14848:26572886,29769448:198369 -k1,14848:27127115,29769448:198369 -k1,14848:28750893,29769448:198370 -k1,14848:29480759,29769448:198369 -k1,14848:31391584,29769448:198369 -k1,14848:32583029,29769448:0 -) -(1,14849:6630773,30634528:25952256,505283,134348 -k1,14848:7635202,30634528:195059 -k1,14848:10914385,30634528:195059 -k1,14848:12631190,30634528:195059 -k1,14848:15746533,30634528:195059 -k1,14848:18164573,30634528:195059 -k1,14848:19351191,30634528:195058 -k1,14848:22349880,30634528:195059 -k1,14848:23741626,30634528:195059 -k1,14848:25538385,30634528:195059 -k1,14848:29077091,30634528:195059 -k1,14848:30785376,30634528:195059 -k1,14848:32583029,30634528:0 -) -(1,14849:6630773,31499608:25952256,513147,7863 -g1,14848:9855799,31499608 -g1,14848:11046588,31499608 -g1,14848:12662705,31499608 -g1,14848:13928205,31499608 -g1,14848:15146519,31499608 -g1,14848:16999221,31499608 -g1,14848:17884612,31499608 -g1,14848:19031492,31499608 -g1,14848:21043447,31499608 -g1,14848:22434121,31499608 -g1,14848:25883280,31499608 -k1,14849:32583029,31499608:4329312 -g1,14849:32583029,31499608 -) -v1,14873:6630773,32184463:0,393216,0 -(1,14891:6630773,39635840:25952256,7844593,196608 -g1,14891:6630773,39635840 -g1,14891:6630773,39635840 -g1,14891:6434165,39635840 -(1,14891:6434165,39635840:0,7844593,196608 -r1,14900:32779637,39635840:26345472,8041201,196608 -k1,14891:6434165,39635840:-26345472 -) -(1,14891:6434165,39635840:26345472,7844593,196608 -[1,14891:6630773,39635840:25952256,7647985,0 -(1,14875:6630773,32418900:25952256,431045,106246 -(1,14874:6630773,32418900:0,0,0 -g1,14874:6630773,32418900 -g1,14874:6630773,32418900 -g1,14874:6303093,32418900 -(1,14874:6303093,32418900:0,0,0 -) -g1,14874:6630773,32418900 -) -g1,14875:7958589,32418900 -g1,14875:8954451,32418900 -g1,14875:14265714,32418900 -g1,14875:14929622,32418900 -g1,14875:18913070,32418900 -g1,14875:19576978,32418900 -g1,14875:20240886,32418900 -h1,14875:23560426,32418900:0,0,0 -k1,14875:32583029,32418900:9022603 -g1,14875:32583029,32418900 -) -(1,14876:6630773,33103755:25952256,431045,106246 -h1,14876:6630773,33103755:0,0,0 -k1,14876:6630773,33103755:0 -h1,14876:9950313,33103755:0,0,0 -k1,14876:32583029,33103755:22632716 -g1,14876:32583029,33103755 -) -(1,14886:6630773,33919682:25952256,424439,8257 -(1,14878:6630773,33919682:0,0,0 -g1,14878:6630773,33919682 -g1,14878:6630773,33919682 -g1,14878:6303093,33919682 -(1,14878:6303093,33919682:0,0,0 -) -g1,14878:6630773,33919682 -) -g1,14886:7626635,33919682 -h1,14886:9286405,33919682:0,0,0 -k1,14886:32583029,33919682:23296624 -g1,14886:32583029,33919682 -) -(1,14886:6630773,34604537:25952256,431045,106246 -h1,14886:6630773,34604537:0,0,0 -g1,14886:7626635,34604537 -g1,14886:12937898,34604537 -g1,14886:13601806,34604537 -g1,14886:17585253,34604537 -g1,14886:18249161,34604537 -g1,14886:18913069,34604537 -h1,14886:22232608,34604537:0,0,0 -k1,14886:32583029,34604537:10350421 -g1,14886:32583029,34604537 -) -(1,14886:6630773,35289392:25952256,398014,0 -h1,14886:6630773,35289392:0,0,0 -h1,14886:7294681,35289392:0,0,0 -k1,14886:32583029,35289392:25288348 -g1,14886:32583029,35289392 -) -(1,14886:6630773,35974247:25952256,424439,112852 -h1,14886:6630773,35974247:0,0,0 -g1,14886:7626635,35974247 -g1,14886:10946174,35974247 -g1,14886:14265713,35974247 -g1,14886:14597667,35974247 -g1,14886:16589391,35974247 -g1,14886:19908930,35974247 -g1,14886:20240884,35974247 -g1,14886:22896516,35974247 -g1,14886:26216055,35974247 -g1,14886:27543871,35974247 -h1,14886:31195364,35974247:0,0,0 -k1,14886:32583029,35974247:1387665 -g1,14886:32583029,35974247 -) -(1,14886:6630773,36659102:25952256,431045,112852 -h1,14886:6630773,36659102:0,0,0 -g1,14886:7626635,36659102 -g1,14886:11278128,36659102 -g1,14886:13933760,36659102 -g1,14886:14929622,36659102 -g1,14886:17585254,36659102 -g1,14886:19576978,36659102 -h1,14886:22232609,36659102:0,0,0 -k1,14886:32583029,36659102:10350420 -g1,14886:32583029,36659102 -) -(1,14886:6630773,37343957:25952256,424439,79822 -h1,14886:6630773,37343957:0,0,0 -g1,14886:7626635,37343957 -g1,14886:10946174,37343957 -g1,14886:14265713,37343957 -g1,14886:16589391,37343957 -h1,14886:19245022,37343957:0,0,0 -k1,14886:32583029,37343957:13338007 -g1,14886:32583029,37343957 -) -(1,14886:6630773,38028812:25952256,407923,9908 -h1,14886:6630773,38028812:0,0,0 -g1,14886:7626635,38028812 -g1,14886:9286405,38028812 -h1,14886:11942036,38028812:0,0,0 -k1,14886:32583028,38028812:20640992 -g1,14886:32583028,38028812 -) -(1,14888:6630773,38844739:25952256,431045,106246 -(1,14887:6630773,38844739:0,0,0 -g1,14887:6630773,38844739 -g1,14887:6630773,38844739 -g1,14887:6303093,38844739 -(1,14887:6303093,38844739:0,0,0 -) -g1,14887:6630773,38844739 -) -k1,14888:6630773,38844739:0 -g1,14888:9950313,38844739 -g1,14888:11610083,38844739 -g1,14888:12273991,38844739 -h1,14888:13601807,38844739:0,0,0 -k1,14888:32583029,38844739:18981222 -g1,14888:32583029,38844739 -) -(1,14889:6630773,39529594:25952256,431045,106246 -h1,14889:6630773,39529594:0,0,0 -g1,14889:9618359,39529594 -g1,14889:10282267,39529594 -g1,14889:14265715,39529594 -g1,14889:14929623,39529594 -g1,14889:15593531,39529594 -h1,14889:18913071,39529594:0,0,0 -k1,14889:32583029,39529594:13669958 -g1,14889:32583029,39529594 -) -] -) -g1,14891:32583029,39635840 -g1,14891:6630773,39635840 -g1,14891:6630773,39635840 -g1,14891:32583029,39635840 -g1,14891:32583029,39635840 -) -h1,14891:6630773,39832448:0,0,0 -] -(1,14900:32583029,45706769:0,0,0 -g1,14900:32583029,45706769 -) -) -] -(1,14900:6630773,47279633:25952256,0,0 -h1,14900:6630773,47279633:25952256,0,0 -) -] -(1,14900:4262630,4025873:0,0,0 -[1,14900:-473656,4025873:0,0,0 -(1,14900:-473656,-710413:0,0,0 -(1,14900:-473656,-710413:0,0,0 -g1,14900:-473656,-710413 -) -g1,14900:-473656,-710413 +k1,14867:32583029,10585005:901351 +) +(1,14867:6630773,12105445:25952256,505283,134348 +h1,14867:6630773,12105445:0,0,0 +g1,14867:8923222,12105445 +k1,14867:32583029,12105445:22669558 +g1,14867:32583029,12105445 +) +(1,14867:6630773,12970525:25952256,513147,134348 +h1,14867:6630773,12970525:0,0,0 +k1,14867:8917374,12970525:222217 +k1,14867:9798884,12970525:222218 +k1,14867:12432171,12970525:222217 +k1,14867:14904240,12970525:222218 +k1,14867:15742495,12970525:222217 +k1,14867:16553226,12970525:222218 +k1,14867:19187823,12970525:222217 +k1,14867:22026238,12970525:222218 +k1,14867:23816076,12970525:222217 +k1,14867:26023380,12970525:222218 +h1,14867:26993968,12970525:0,0,0 +k1,14867:27216185,12970525:222217 +k1,14867:30074916,12970525:222218 +k1,14867:30948561,12970525:222217 +k1,14867:32583029,12970525:0 +) +(1,14867:6630773,13835605:25952256,513147,134348 +k1,14867:7937561,13835605:287703 +k1,14867:10159887,13835605:287703 +k1,14867:11106882,13835605:287703 +k1,14867:13818106,13835605:287703 +k1,14867:17229255,13835605:287703 +k1,14867:19354588,13835605:287703 +k1,14867:20633850,13835605:287702 +k1,14867:23078998,13835605:287703 +k1,14867:24760652,13835605:287703 +k1,14867:26982978,13835605:287703 +k1,14867:27929973,13835605:287703 +k1,14867:29919646,13835605:287703 +k1,14867:31923737,13835605:287703 +k1,14867:32583029,13835605:0 +) +(1,14867:6630773,14700685:25952256,513147,126483 +k1,14867:9364496,14700685:242044 +k1,14867:10797984,14700685:242043 +k1,14867:12648937,14700685:242044 +k1,14867:14377993,14700685:242044 +k1,14867:15611596,14700685:242043 +k1,14867:18250947,14700685:242044 +k1,14867:19144419,14700685:242044 +(1,14867:19144419,14700685:0,452978,115847 +r1,14898:24426650,14700685:5282231,568825,115847 +k1,14867:19144419,14700685:-5282231 +) +(1,14867:19144419,14700685:5282231,452978,115847 +k1,14867:19144419,14700685:3277 +h1,14867:24423373,14700685:0,411205,112570 +) +k1,14867:24842363,14700685:242043 +k1,14867:26574696,14700685:242044 +k1,14867:27835825,14700685:242044 +k1,14867:29732652,14700685:242043 +k1,14867:31576396,14700685:242044 +k1,14867:32583029,14700685:0 +) +(1,14867:6630773,15565765:25952256,505283,126483 +k1,14867:9218396,15565765:183107 +k1,14867:10914730,15565765:183108 +k1,14867:12913840,15565765:183107 +k1,14867:15881572,15565765:183107 +k1,14867:17056239,15565765:183107 +k1,14867:19488543,15565765:183108 +k1,14867:21361168,15565765:183107 +k1,14867:24418029,15565765:183107 +k1,14867:25792582,15565765:183108 +k1,14867:29741388,15565765:183107 +k1,14867:32583029,15565765:0 +) +(1,14867:6630773,16430845:25952256,505283,126483 +g1,14867:7821562,16430845 +g1,14867:10226078,16430845 +g1,14867:13694243,16430845 +g1,14867:14544900,16430845 +g1,14867:15108510,16430845 +g1,14867:16499184,16430845 +k1,14867:32583029,16430845:15665726 +g1,14867:32583029,16430845 +) +] +] +(1,14845:6630773,18523408:25952256,513147,126483 +k1,14844:9009075,18523408:245105 +k1,14844:9905607,18523408:245104 +k1,14844:10898478,18523408:245105 +k1,14844:14384993,18523408:245104 +k1,14844:17073280,18523408:245105 +k1,14844:18337469,18523408:245104 +k1,14844:20371707,18523408:245105 +k1,14844:21276103,18523408:245104 +k1,14844:21877068,18523408:245105 +k1,14844:24041722,18523408:245104 +k1,14844:25800053,18523408:245105 +k1,14844:26696586,18523408:245105 +k1,14844:30968222,18523408:245104 +k1,14845:32583029,18523408:0 +) +(1,14845:6630773,19388488:25952256,513147,126483 +k1,14844:9450384,19388488:270260 +k1,14844:11904959,19388488:270260 +k1,14844:14451285,19388488:270261 +k1,14844:16971396,19388488:270260 +k1,14844:18345938,19388488:270260 +k1,14844:19363964,19388488:270260 +k1,14844:21147451,19388488:270261 +k1,14844:22103873,19388488:270260 +k1,14844:24692141,19388488:270260 +k1,14844:25613829,19388488:270260 +k1,14844:26631856,19388488:270261 +k1,14844:27589589,19388488:270260 +k1,14844:28511277,19388488:270260 +k1,14844:32583029,19388488:0 +) +(1,14845:6630773,20253568:25952256,513147,134348 +k1,14844:9156764,20253568:215847 +k1,14844:10024040,20253568:215848 +k1,14844:12734187,20253568:215847 +k1,14844:15949618,20253568:215848 +k1,14844:16793300,20253568:215847 +k1,14844:18212389,20253568:215848 +k1,14844:19795317,20253568:215847 +k1,14844:22261015,20253568:215847 +k1,14844:23997298,20253568:215848 +k1,14844:25232230,20253568:215847 +k1,14844:26683432,20253568:215848 +k1,14844:27558571,20253568:215847 +k1,14844:31325160,20253568:215848 +k1,14844:32227169,20253568:215847 +k1,14844:32583029,20253568:0 +) +(1,14845:6630773,21118648:25952256,505283,134348 +g1,14844:8571294,21118648 +g1,14844:10055029,21118648 +g1,14844:12680401,21118648 +g1,14844:15879213,21118648 +g1,14844:16434302,21118648 +g1,14844:20464766,21118648 +g1,14844:22823406,21118648 +k1,14845:32583029,21118648:6865554 +g1,14845:32583029,21118648 +) +(1,14847:6630773,21983728:25952256,513147,126483 +h1,14846:6630773,21983728:983040,0,0 +k1,14846:10220453,21983728:331885 +k1,14846:11543898,21983728:331885 +k1,14846:15180764,21983728:331885 +k1,14846:17025875,21983728:331885 +k1,14846:18043922,21983728:331885 +k1,14846:20786878,21983728:331886 +k1,14846:23190356,21983728:331885 +k1,14846:24138279,21983728:331885 +k1,14846:26077762,21983728:331885 +k1,14846:27095809,21983728:331885 +k1,14846:30517717,21983728:331885 +k1,14846:31465640,21983728:331885 +k1,14847:32583029,21983728:0 +) +(1,14847:6630773,22848808:25952256,513147,134348 +k1,14846:8133548,22848808:235309 +h1,14846:9676266,22848808:0,0,0 +k1,14846:9911575,22848808:235309 +k1,14846:10956254,22848808:235309 +k1,14846:12689716,22848808:235309 +h1,14846:13885093,22848808:0,0,0 +k1,14846:14294072,22848808:235309 +k1,14846:17319250,22848808:235310 +(1,14846:17319250,22848808:0,452978,115847 +r1,14898:20139499,22848808:2820249,568825,115847 +k1,14846:17319250,22848808:-2820249 +) +(1,14846:17319250,22848808:2820249,452978,115847 +k1,14846:17319250,22848808:3277 +h1,14846:20136222,22848808:0,411205,112570 +) +k1,14846:20374808,22848808:235309 +k1,14846:21141614,22848808:235309 +k1,14846:22890149,22848808:235309 +k1,14846:24073109,22848808:235309 +k1,14846:28460779,22848808:235309 +k1,14846:29887533,22848808:235309 +k1,14847:32583029,22848808:0 +) +(1,14847:6630773,23713888:25952256,513147,134348 +(1,14846:6630773,23713888:0,452978,115847 +r1,14898:11913004,23713888:5282231,568825,115847 +k1,14846:6630773,23713888:-5282231 +) +(1,14846:6630773,23713888:5282231,452978,115847 +k1,14846:6630773,23713888:3277 +h1,14846:11909727,23713888:0,411205,112570 +) +k1,14846:12117692,23713888:204688 +k1,14846:13270031,23713888:204688 +k1,14846:16876039,23713888:204689 +k1,14846:17842255,23713888:204688 +k1,14846:19981566,23713888:204688 +k1,14846:20542114,23713888:204688 +k1,14846:22430422,23713888:204688 +k1,14846:24554660,23713888:204688 +k1,14846:25322303,23713888:204689 +k1,14846:27446541,23713888:204688 +k1,14846:29570123,23713888:204688 +k1,14846:30793896,23713888:204688 +k1,14846:32583029,23713888:0 +) +(1,14847:6630773,24578968:25952256,513147,134348 +k1,14846:7778895,24578968:156562 +k1,14846:11199151,24578968:156563 +k1,14846:12117241,24578968:156562 +k1,14846:13855843,24578968:156563 +k1,14846:16137738,24578968:156562 +k1,14846:20578389,24578968:156562 +k1,14846:23524820,24578968:156563 +(1,14846:23524820,24578968:0,452978,115847 +r1,14898:28807051,24578968:5282231,568825,115847 +k1,14846:23524820,24578968:-5282231 +) +(1,14846:23524820,24578968:5282231,452978,115847 +k1,14846:23524820,24578968:3277 +h1,14846:28803774,24578968:0,411205,112570 +) +k1,14846:28963613,24578968:156562 +k1,14846:30221181,24578968:156563 +k1,14846:30733603,24578968:156562 +k1,14847:32583029,24578968:0 +) +(1,14847:6630773,25444048:25952256,513147,102891 +k1,14846:7844266,25444048:194408 +k1,14846:9419517,25444048:194407 +k1,14846:12424109,25444048:194408 +k1,14846:14060964,25444048:194408 +k1,14846:15539877,25444048:194407 +k1,14846:16602637,25444048:194408 +k1,14846:18310270,25444048:194407 +k1,14846:19452329,25444048:194408 +k1,14846:21634444,25444048:194408 +k1,14846:22516324,25444048:194407 +k1,14846:25736529,25444048:194408 +k1,14846:29020960,25444048:194408 +k1,14846:31244362,25444048:194407 +k1,14846:32124932,25444048:194408 +k1,14846:32583029,25444048:0 +) +(1,14847:6630773,26309128:25952256,505283,134348 +k1,14846:8206711,26309128:200337 +k1,14846:10785350,26309128:200337 +(1,14846:10785350,26309128:0,452978,115847 +r1,14898:13253887,26309128:2468537,568825,115847 +k1,14846:10785350,26309128:-2468537 +) +(1,14846:10785350,26309128:2468537,452978,115847 +k1,14846:10785350,26309128:3277 +h1,14846:13250610,26309128:0,411205,112570 +) +k1,14846:13454224,26309128:200337 +k1,14846:15962739,26309128:200337 +k1,14846:16849238,26309128:200337 +k1,14846:20452204,26309128:200337 +k1,14846:21303968,26309128:200336 +k1,14846:25115339,26309128:200337 +(1,14846:25115339,26309128:0,414482,115847 +r1,14898:25473605,26309128:358266,530329,115847 +k1,14846:25115339,26309128:-358266 +) +(1,14846:25115339,26309128:358266,414482,115847 +k1,14846:25115339,26309128:3277 +h1,14846:25470328,26309128:0,411205,112570 +) +k1,14846:25673942,26309128:200337 +k1,14846:27065724,26309128:200337 +(1,14846:27065724,26309128:0,414482,115847 +r1,14898:27423990,26309128:358266,530329,115847 +k1,14846:27065724,26309128:-358266 +) +(1,14846:27065724,26309128:358266,414482,115847 +k1,14846:27065724,26309128:3277 +h1,14846:27420713,26309128:0,411205,112570 +) +k1,14846:27624327,26309128:200337 +k1,14846:30016843,26309128:200337 +h1,14846:30987431,26309128:0,0,0 +k1,14846:31568532,26309128:200337 +k1,14847:32583029,26309128:0 +) +(1,14847:6630773,27174208:25952256,513147,126483 +k1,14846:9272310,27174208:191146 +k1,14846:13074491,27174208:191147 +k1,14846:14981370,27174208:191146 +k1,14846:15630614,27174208:191147 +k1,14846:18451720,27174208:191146 +k1,14846:19294294,27174208:191146 +k1,14846:22130474,27174208:191147 +k1,14846:23340705,27174208:191146 +k1,14846:26127733,27174208:191147 +k1,14846:27266530,27174208:191146 +k1,14846:29943458,27174208:191147 +k1,14846:30793896,27174208:191146 +k1,14846:32583029,27174208:0 +) +(1,14847:6630773,28039288:25952256,513147,134348 +k1,14846:8067868,28039288:245650 +k1,14846:10318919,28039288:245649 +k1,14846:11583654,28039288:245650 +k1,14846:14526111,28039288:245650 +k1,14846:15454645,28039288:245649 +k1,14846:18596986,28039288:245650 +k1,14846:21410337,28039288:245650 +k1,14846:22011846,28039288:245649 +k1,14846:24736068,28039288:245650 +k1,14846:26323895,28039288:245650 +k1,14846:27766231,28039288:245649 +(1,14846:27766231,28039288:0,452978,115847 +r1,14898:29883056,28039288:2116825,568825,115847 +k1,14846:27766231,28039288:-2116825 +) +(1,14846:27766231,28039288:2116825,452978,115847 +k1,14846:27766231,28039288:3277 +h1,14846:29879779,28039288:0,411205,112570 +) +k1,14846:30128706,28039288:245650 +k1,14846:32583029,28039288:0 +) +(1,14847:6630773,28904368:25952256,513147,126483 +k1,14846:7810572,28904368:232148 +k1,14846:10466242,28904368:232149 +k1,14846:14026964,28904368:232148 +k1,14846:14910541,28904368:232149 +k1,14846:16161774,28904368:232148 +k1,14846:19178548,28904368:232149 +k1,14846:20358347,28904368:232148 +k1,14846:22292466,28904368:232149 +k1,14846:23212087,28904368:232148 +k1,14846:26643704,28904368:232149 +k1,14846:29826283,28904368:232148 +k1,14846:30414292,28904368:232149 +k1,14846:31923737,28904368:232148 +k1,14846:32583029,28904368:0 +) +(1,14847:6630773,29769448:25952256,513147,126483 +k1,14846:7837373,29769448:187515 +k1,14846:11477979,29769448:187514 +k1,14846:12483383,29769448:187515 +k1,14846:13480268,29769448:187515 +k1,14846:15655490,29769448:187515 +k1,14846:18386456,29769448:187514 +k1,14846:19105468,29769448:187515 +k1,14846:20979880,29769448:187515 +k1,14846:22542996,29769448:187515 +k1,14846:23887220,29769448:187514 +k1,14846:25816027,29769448:187515 +k1,14846:26616304,29769448:187515 +k1,14846:27159679,29769448:187515 +k1,14846:28772601,29769448:187514 +k1,14846:29491613,29769448:187515 +k1,14846:31391584,29769448:187515 +k1,14846:32583029,29769448:0 +) +(1,14847:6630773,30634528:25952256,505283,134348 +k1,14846:7635202,30634528:195059 +k1,14846:10914385,30634528:195059 +k1,14846:12631190,30634528:195059 +k1,14846:15746533,30634528:195059 +k1,14846:18164573,30634528:195059 +k1,14846:19351191,30634528:195058 +k1,14846:22349880,30634528:195059 +k1,14846:23741626,30634528:195059 +k1,14846:25538385,30634528:195059 +k1,14846:29077091,30634528:195059 +k1,14846:30785376,30634528:195059 +k1,14846:32583029,30634528:0 +) +(1,14847:6630773,31499608:25952256,513147,7863 +g1,14846:9855799,31499608 +g1,14846:11046588,31499608 +g1,14846:12662705,31499608 +g1,14846:13928205,31499608 +g1,14846:15146519,31499608 +g1,14846:16999221,31499608 +g1,14846:17884612,31499608 +g1,14846:19031492,31499608 +g1,14846:21043447,31499608 +g1,14846:22434121,31499608 +g1,14846:25883280,31499608 +k1,14847:32583029,31499608:4329312 +g1,14847:32583029,31499608 +) +v1,14871:6630773,32184463:0,393216,0 +(1,14889:6630773,39635840:25952256,7844593,196608 +g1,14889:6630773,39635840 +g1,14889:6630773,39635840 +g1,14889:6434165,39635840 +(1,14889:6434165,39635840:0,7844593,196608 +r1,14898:32779637,39635840:26345472,8041201,196608 +k1,14889:6434165,39635840:-26345472 +) +(1,14889:6434165,39635840:26345472,7844593,196608 +[1,14889:6630773,39635840:25952256,7647985,0 +(1,14873:6630773,32418900:25952256,431045,106246 +(1,14872:6630773,32418900:0,0,0 +g1,14872:6630773,32418900 +g1,14872:6630773,32418900 +g1,14872:6303093,32418900 +(1,14872:6303093,32418900:0,0,0 +) +g1,14872:6630773,32418900 +) +g1,14873:7958589,32418900 +g1,14873:8954451,32418900 +g1,14873:14265714,32418900 +g1,14873:14929622,32418900 +g1,14873:18913070,32418900 +g1,14873:19576978,32418900 +g1,14873:20240886,32418900 +h1,14873:23560426,32418900:0,0,0 +k1,14873:32583029,32418900:9022603 +g1,14873:32583029,32418900 +) +(1,14874:6630773,33103755:25952256,431045,106246 +h1,14874:6630773,33103755:0,0,0 +k1,14874:6630773,33103755:0 +h1,14874:9950313,33103755:0,0,0 +k1,14874:32583029,33103755:22632716 +g1,14874:32583029,33103755 +) +(1,14884:6630773,33919682:25952256,424439,8257 +(1,14876:6630773,33919682:0,0,0 +g1,14876:6630773,33919682 +g1,14876:6630773,33919682 +g1,14876:6303093,33919682 +(1,14876:6303093,33919682:0,0,0 +) +g1,14876:6630773,33919682 +) +g1,14884:7626635,33919682 +h1,14884:9286405,33919682:0,0,0 +k1,14884:32583029,33919682:23296624 +g1,14884:32583029,33919682 +) +(1,14884:6630773,34604537:25952256,431045,106246 +h1,14884:6630773,34604537:0,0,0 +g1,14884:7626635,34604537 +g1,14884:12937898,34604537 +g1,14884:13601806,34604537 +g1,14884:17585253,34604537 +g1,14884:18249161,34604537 +g1,14884:18913069,34604537 +h1,14884:22232608,34604537:0,0,0 +k1,14884:32583029,34604537:10350421 +g1,14884:32583029,34604537 +) +(1,14884:6630773,35289392:25952256,398014,0 +h1,14884:6630773,35289392:0,0,0 +h1,14884:7294681,35289392:0,0,0 +k1,14884:32583029,35289392:25288348 +g1,14884:32583029,35289392 +) +(1,14884:6630773,35974247:25952256,424439,112852 +h1,14884:6630773,35974247:0,0,0 +g1,14884:7626635,35974247 +g1,14884:10946174,35974247 +g1,14884:14265713,35974247 +g1,14884:14597667,35974247 +g1,14884:16589391,35974247 +g1,14884:19908930,35974247 +g1,14884:20240884,35974247 +g1,14884:22896516,35974247 +g1,14884:26216055,35974247 +g1,14884:27543871,35974247 +h1,14884:31195364,35974247:0,0,0 +k1,14884:32583029,35974247:1387665 +g1,14884:32583029,35974247 +) +(1,14884:6630773,36659102:25952256,431045,112852 +h1,14884:6630773,36659102:0,0,0 +g1,14884:7626635,36659102 +g1,14884:11278128,36659102 +g1,14884:13933760,36659102 +g1,14884:14929622,36659102 +g1,14884:17585254,36659102 +g1,14884:19576978,36659102 +h1,14884:22232609,36659102:0,0,0 +k1,14884:32583029,36659102:10350420 +g1,14884:32583029,36659102 +) +(1,14884:6630773,37343957:25952256,424439,79822 +h1,14884:6630773,37343957:0,0,0 +g1,14884:7626635,37343957 +g1,14884:10946174,37343957 +g1,14884:14265713,37343957 +g1,14884:16589391,37343957 +h1,14884:19245022,37343957:0,0,0 +k1,14884:32583029,37343957:13338007 +g1,14884:32583029,37343957 +) +(1,14884:6630773,38028812:25952256,407923,9908 +h1,14884:6630773,38028812:0,0,0 +g1,14884:7626635,38028812 +g1,14884:9286405,38028812 +h1,14884:11942036,38028812:0,0,0 +k1,14884:32583028,38028812:20640992 +g1,14884:32583028,38028812 +) +(1,14886:6630773,38844739:25952256,431045,106246 +(1,14885:6630773,38844739:0,0,0 +g1,14885:6630773,38844739 +g1,14885:6630773,38844739 +g1,14885:6303093,38844739 +(1,14885:6303093,38844739:0,0,0 +) +g1,14885:6630773,38844739 +) +k1,14886:6630773,38844739:0 +g1,14886:9950313,38844739 +g1,14886:11610083,38844739 +g1,14886:12273991,38844739 +h1,14886:13601807,38844739:0,0,0 +k1,14886:32583029,38844739:18981222 +g1,14886:32583029,38844739 +) +(1,14887:6630773,39529594:25952256,431045,106246 +h1,14887:6630773,39529594:0,0,0 +g1,14887:9618359,39529594 +g1,14887:10282267,39529594 +g1,14887:14265715,39529594 +g1,14887:14929623,39529594 +g1,14887:15593531,39529594 +h1,14887:18913071,39529594:0,0,0 +k1,14887:32583029,39529594:13669958 +g1,14887:32583029,39529594 +) +] +) +g1,14889:32583029,39635840 +g1,14889:6630773,39635840 +g1,14889:6630773,39635840 +g1,14889:32583029,39635840 +g1,14889:32583029,39635840 +) +h1,14889:6630773,39832448:0,0,0 +] +(1,14898:32583029,45706769:0,0,0 +g1,14898:32583029,45706769 +) +) +] +(1,14898:6630773,47279633:25952256,0,0 +h1,14898:6630773,47279633:25952256,0,0 +) +] +(1,14898:4262630,4025873:0,0,0 +[1,14898:-473656,4025873:0,0,0 +(1,14898:-473656,-710413:0,0,0 +(1,14898:-473656,-710413:0,0,0 +g1,14898:-473656,-710413 +) +g1,14898:-473656,-710413 ) ] ) ] !26566 -}239 -Input:2552:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2553:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2554:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}240 Input:2555:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2556:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2557:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -263378,144 +263574,209 @@ Input:2565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2568:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2569:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2570:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2571:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{240 -[1,14958:4262630,47279633:28320399,43253760,0 -(1,14958:4262630,4025873:0,0,0 -[1,14958:-473656,4025873:0,0,0 -(1,14958:-473656,-710413:0,0,0 -(1,14958:-473656,-644877:0,0,0 -k1,14958:-473656,-644877:-65536 +{241 +[1,14956:4262630,47279633:28320399,43253760,0 +(1,14956:4262630,4025873:0,0,0 +[1,14956:-473656,4025873:0,0,0 +(1,14956:-473656,-710413:0,0,0 +(1,14956:-473656,-644877:0,0,0 +k1,14956:-473656,-644877:-65536 ) -(1,14958:-473656,4736287:0,0,0 -k1,14958:-473656,4736287:5209943 +(1,14956:-473656,4736287:0,0,0 +k1,14956:-473656,4736287:5209943 ) -g1,14958:-473656,-710413 +g1,14956:-473656,-710413 ) ] ) -[1,14958:6630773,47279633:25952256,43253760,0 -[1,14958:6630773,4812305:25952256,786432,0 -(1,14958:6630773,4812305:25952256,505283,134348 -(1,14958:6630773,4812305:25952256,505283,134348 -g1,14958:3078558,4812305 -[1,14958:3078558,4812305:0,0,0 -(1,14958:3078558,2439708:0,1703936,0 -k1,14958:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,14958:2537886,2439708:1179648,16384,0 +[1,14956:6630773,47279633:25952256,43253760,0 +[1,14956:6630773,4812305:25952256,786432,0 +(1,14956:6630773,4812305:25952256,505283,134348 +(1,14956:6630773,4812305:25952256,505283,134348 +g1,14956:3078558,4812305 +[1,14956:3078558,4812305:0,0,0 +(1,14956:3078558,2439708:0,1703936,0 +k1,14956:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,14956:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,14958:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,14956:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,14958:3078558,4812305:0,0,0 -(1,14958:3078558,2439708:0,1703936,0 -g1,14958:29030814,2439708 -g1,14958:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,14958:36151628,1915420:16384,1179648,0 +[1,14956:3078558,4812305:0,0,0 +(1,14956:3078558,2439708:0,1703936,0 +g1,14956:29030814,2439708 +g1,14956:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,14956:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,14958:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,14956:37855564,2439708:1179648,16384,0 ) ) -k1,14958:3078556,2439708:-34777008 +k1,14956:3078556,2439708:-34777008 ) ] -[1,14958:3078558,4812305:0,0,0 -(1,14958:3078558,49800853:0,16384,2228224 -k1,14958:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,14958:2537886,49800853:1179648,16384,0 +[1,14956:3078558,4812305:0,0,0 +(1,14956:3078558,49800853:0,16384,2228224 +k1,14956:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,14956:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,14958:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,14956:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,14958:3078558,4812305:0,0,0 -(1,14958:3078558,49800853:0,16384,2228224 -g1,14958:29030814,49800853 -g1,14958:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,14958:36151628,51504789:16384,1179648,0 +[1,14956:3078558,4812305:0,0,0 +(1,14956:3078558,49800853:0,16384,2228224 +g1,14956:29030814,49800853 +g1,14956:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,14956:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,14958:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,14956:37855564,49800853:1179648,16384,0 ) ) -k1,14958:3078556,49800853:-34777008 +k1,14956:3078556,49800853:-34777008 ) ] -g1,14958:6630773,4812305 -g1,14958:6630773,4812305 -g1,14958:9008419,4812305 -g1,14958:10418098,4812305 -g1,14958:12266213,4812305 -g1,14958:15843168,4812305 -k1,14958:31387652,4812305:15544484 +g1,14956:6630773,4812305 +g1,14956:6630773,4812305 +g1,14956:9008419,4812305 +g1,14956:10418098,4812305 +g1,14956:12266213,4812305 +g1,14956:15843168,4812305 +k1,14956:31387652,4812305:15544484 ) ) ] -[1,14958:6630773,45706769:25952256,40108032,0 -(1,14958:6630773,45706769:25952256,40108032,0 -(1,14958:6630773,45706769:0,0,0 -g1,14958:6630773,45706769 +[1,14956:6630773,45706769:25952256,40108032,0 +(1,14956:6630773,45706769:25952256,40108032,0 +(1,14956:6630773,45706769:0,0,0 +g1,14956:6630773,45706769 +) +[1,14956:6630773,45706769:25952256,40108032,0 +[1,14924:6630773,19287088:25952256,13688351,0 +[1,14924:6630773,19287088:25952256,13688351,0 +(1,14923:6630773,12449685:25952256,6850948,0 +k1,14923:7674230,12449685:1043457 +h1,14921:7674230,12449685:0,0,0 +(1,14921:7674230,12449685:23686035,6850948,0 +g1,14921:10946034,12449685 +(1,14921:10946034,6227191:0,0,0 +(1,14921:10946034,6227191:0,0,0 +g1,14903:10946034,6227191 +(1,14904:10946034,6227191:0,0,0 +(1,14904:10946034,6227191:0,0,0 +g1,14904:10946034,6227191 +g1,14904:10946034,6227191 +g1,14904:10946034,6227191 +g1,14904:10946034,6227191 +g1,14904:10946034,6227191 +(1,14904:10946034,6227191:0,0,0 +(1,14904:10946034,6227191:4940249,454754,104590 +(1,14904:10946034,6227191:4940249,454754,104590 +g1,14904:12877118,6227191 +$1,14904:12877118,6227191 +$1,14904:13484637,6227191 +g1,14904:13663944,6227191 +(1,14904:13663944,6227191:0,414307,104590 +r1,14956:15886283,6227191:2222339,518897,104590 +k1,14904:13663944,6227191:-2222339 +) +(1,14904:13663944,6227191:2222339,414307,104590 +k1,14904:13663944,6227191:3277 +h1,14904:15883006,6227191:0,370085,101313 +) +) +g1,14904:15886283,6227191 +) +) +g1,14904:10946034,6227191 +g1,14904:10946034,6227191 +) +) +g1,14904:10946034,6227191 +(1,14905:10946034,6227191:0,0,0 +(1,14905:10946034,6227191:0,0,0 +g1,14905:10946034,6227191 +g1,14905:10946034,6227191 +g1,14905:10946034,6227191 +g1,14905:10946034,6227191 +g1,14905:10946034,6227191 +(1,14905:10946034,6227191:0,0,0 +(1,14905:10946034,6227191:5813184,454754,104590 +(1,14905:10946034,6227191:5813184,454754,104590 +g1,14905:14699675,6227191 +$1,14905:14699675,6227191 +$1,14905:15307194,6227191 +g1,14905:15486501,6227191 +(1,14905:15486501,6227191:0,408008,104590 +r1,14956:16759218,6227191:1272717,512598,104590 +k1,14905:15486501,6227191:-1272717 +) +(1,14905:15486501,6227191:1272717,408008,104590 +k1,14905:15486501,6227191:3277 +h1,14905:16755941,6227191:0,370085,101313 +) +) +g1,14905:16759218,6227191 +) +) +g1,14905:10946034,6227191 +g1,14905:10946034,6227191 +) ) -[1,14958:6630773,45706769:25952256,40108032,0 -[1,14926:6630773,19287088:25952256,13688351,0 -[1,14926:6630773,19287088:25952256,13688351,0 -(1,14925:6630773,12449685:25952256,6850948,0 -k1,14925:7674230,12449685:1043457 -h1,14923:7674230,12449685:0,0,0 -(1,14923:7674230,12449685:23686035,6850948,0 -g1,14923:10946034,12449685 -(1,14923:10946034,6227191:0,0,0 -(1,14923:10946034,6227191:0,0,0 g1,14905:10946034,6227191 (1,14906:10946034,6227191:0,0,0 (1,14906:10946034,6227191:0,0,0 @@ -263525,22 +263786,22 @@ g1,14906:10946034,6227191 g1,14906:10946034,6227191 g1,14906:10946034,6227191 (1,14906:10946034,6227191:0,0,0 -(1,14906:10946034,6227191:4940249,454754,104590 -(1,14906:10946034,6227191:4940249,454754,104590 -g1,14906:12877118,6227191 -$1,14906:12877118,6227191 -$1,14906:13484637,6227191 -g1,14906:13663944,6227191 -(1,14906:13663944,6227191:0,414307,104590 -r1,14958:15886283,6227191:2222339,518897,104590 -k1,14906:13663944,6227191:-2222339 +(1,14906:10946034,6227191:5356075,454754,120913 +(1,14906:10946034,6227191:5356075,454754,120913 +g1,14906:13292944,6227191 +$1,14906:13292944,6227191 +$1,14906:13900463,6227191 +g1,14906:14079770,6227191 +(1,14906:14079770,6227191:0,408008,110889 +r1,14956:16302109,6227191:2222339,518897,110889 +k1,14906:14079770,6227191:-2222339 ) -(1,14906:13663944,6227191:2222339,414307,104590 -k1,14906:13663944,6227191:3277 -h1,14906:15883006,6227191:0,370085,101313 +(1,14906:14079770,6227191:2222339,408008,110889 +k1,14906:14079770,6227191:3277 +h1,14906:16298832,6227191:0,370085,101313 ) ) -g1,14906:15886283,6227191 +g1,14906:16302109,6227191 ) ) g1,14906:10946034,6227191 @@ -263556,29 +263817,28 @@ g1,14907:10946034,6227191 g1,14907:10946034,6227191 g1,14907:10946034,6227191 (1,14907:10946034,6227191:0,0,0 -(1,14907:10946034,6227191:5813184,454754,104590 -(1,14907:10946034,6227191:5813184,454754,104590 -g1,14907:14699675,6227191 -$1,14907:14699675,6227191 -$1,14907:15307194,6227191 -g1,14907:15486501,6227191 -(1,14907:15486501,6227191:0,408008,104590 -r1,14958:16759218,6227191:1272717,512598,104590 -k1,14907:15486501,6227191:-1272717 +(1,14907:10946034,6227191:6124221,454754,104590 +(1,14907:10946034,6227191:6124221,454754,104590 +g1,14907:14377631,6227191 +$1,14907:14377631,6227191 +$1,14907:14985150,6227191 +g1,14907:15164457,6227191 +(1,14907:15164457,6227191:0,414307,104590 +r1,14956:17070255,6227191:1905798,518897,104590 +k1,14907:15164457,6227191:-1905798 ) -(1,14907:15486501,6227191:1272717,408008,104590 -k1,14907:15486501,6227191:3277 -h1,14907:16755941,6227191:0,370085,101313 +(1,14907:15164457,6227191:1905798,414307,104590 +k1,14907:15164457,6227191:3277 +h1,14907:17066978,6227191:0,370085,101313 ) ) -g1,14907:16759218,6227191 +g1,14907:17070255,6227191 ) ) g1,14907:10946034,6227191 g1,14907:10946034,6227191 ) ) -g1,14907:10946034,6227191 (1,14908:10946034,6227191:0,0,0 (1,14908:10946034,6227191:0,0,0 g1,14908:10946034,6227191 @@ -263587,22 +263847,18 @@ g1,14908:10946034,6227191 g1,14908:10946034,6227191 g1,14908:10946034,6227191 (1,14908:10946034,6227191:0,0,0 -(1,14908:10946034,6227191:5356075,454754,120913 -(1,14908:10946034,6227191:5356075,454754,120913 -g1,14908:13292944,6227191 -$1,14908:13292944,6227191 -$1,14908:13900463,6227191 -g1,14908:14079770,6227191 -(1,14908:14079770,6227191:0,408008,110889 -r1,14958:16302109,6227191:2222339,518897,110889 -k1,14908:14079770,6227191:-2222339 +(1,14908:10946034,6227191:2222339,408008,104590 +(1,14908:10946034,6227191:2222339,408008,104590 +(1,14908:10946034,6227191:0,408008,104590 +r1,14956:13168373,6227191:2222339,512598,104590 +k1,14908:10946034,6227191:-2222339 ) -(1,14908:14079770,6227191:2222339,408008,110889 -k1,14908:14079770,6227191:3277 -h1,14908:16298832,6227191:0,370085,101313 +(1,14908:10946034,6227191:2222339,408008,104590 +k1,14908:10946034,6227191:3277 +h1,14908:13165096,6227191:0,370085,101313 ) ) -g1,14908:16302109,6227191 +g1,14908:13168373,6227191 ) ) g1,14908:10946034,6227191 @@ -263618,28 +263874,26 @@ g1,14909:10946034,6227191 g1,14909:10946034,6227191 g1,14909:10946034,6227191 (1,14909:10946034,6227191:0,0,0 -(1,14909:10946034,6227191:6124221,454754,104590 -(1,14909:10946034,6227191:6124221,454754,104590 -g1,14909:14377631,6227191 -$1,14909:14377631,6227191 -$1,14909:14985150,6227191 -g1,14909:15164457,6227191 -(1,14909:15164457,6227191:0,414307,104590 -r1,14958:17070255,6227191:1905798,518897,104590 -k1,14909:15164457,6227191:-1905798 +(1,14909:10946034,6227191:3499698,454754,120913 +(1,14909:10946034,6227191:3499698,454754,120913 +(1,14909:10946034,6227191:0,408008,104590 +r1,14956:12535291,6227191:1589257,512598,104590 +k1,14909:10946034,6227191:-1589257 ) -(1,14909:15164457,6227191:1905798,414307,104590 -k1,14909:15164457,6227191:3277 -h1,14909:17066978,6227191:0,370085,101313 +(1,14909:10946034,6227191:1589257,408008,104590 +k1,14909:10946034,6227191:3277 +h1,14909:12532014,6227191:0,370085,101313 ) +g1,14909:12714598,6227191 ) -g1,14909:17070255,6227191 +g1,14909:14445732,6227191 ) ) g1,14909:10946034,6227191 g1,14909:10946034,6227191 ) ) +g1,14909:10946034,6227191 (1,14910:10946034,6227191:0,0,0 (1,14910:10946034,6227191:0,0,0 g1,14910:10946034,6227191 @@ -263648,18 +263902,18 @@ g1,14910:10946034,6227191 g1,14910:10946034,6227191 g1,14910:10946034,6227191 (1,14910:10946034,6227191:0,0,0 -(1,14910:10946034,6227191:2222339,408008,104590 -(1,14910:10946034,6227191:2222339,408008,104590 +(1,14910:10946034,6227191:2855420,408008,104590 +(1,14910:10946034,6227191:2855420,408008,104590 (1,14910:10946034,6227191:0,408008,104590 -r1,14958:13168373,6227191:2222339,512598,104590 -k1,14910:10946034,6227191:-2222339 +r1,14956:13801454,6227191:2855420,512598,104590 +k1,14910:10946034,6227191:-2855420 ) -(1,14910:10946034,6227191:2222339,408008,104590 +(1,14910:10946034,6227191:2855420,408008,104590 k1,14910:10946034,6227191:3277 -h1,14910:13165096,6227191:0,370085,101313 +h1,14910:13798177,6227191:0,370085,101313 ) ) -g1,14910:13168373,6227191 +g1,14910:13801454,6227191 ) ) g1,14910:10946034,6227191 @@ -263675,26 +263929,24 @@ g1,14911:10946034,6227191 g1,14911:10946034,6227191 g1,14911:10946034,6227191 (1,14911:10946034,6227191:0,0,0 -(1,14911:10946034,6227191:3499698,454754,120913 -(1,14911:10946034,6227191:3499698,454754,120913 -(1,14911:10946034,6227191:0,408008,104590 -r1,14958:12535291,6227191:1589257,512598,104590 -k1,14911:10946034,6227191:-1589257 +(1,14911:10946034,6227191:2538879,414307,104590 +(1,14911:10946034,6227191:2538879,414307,104590 +(1,14911:10946034,6227191:0,414307,104590 +r1,14956:13484913,6227191:2538879,518897,104590 +k1,14911:10946034,6227191:-2538879 ) -(1,14911:10946034,6227191:1589257,408008,104590 +(1,14911:10946034,6227191:2538879,414307,104590 k1,14911:10946034,6227191:3277 -h1,14911:12532014,6227191:0,370085,101313 +h1,14911:13481636,6227191:0,370085,101313 ) -g1,14911:12714598,6227191 ) -g1,14911:14445732,6227191 +g1,14911:13484913,6227191 ) ) g1,14911:10946034,6227191 g1,14911:10946034,6227191 ) ) -g1,14911:10946034,6227191 (1,14912:10946034,6227191:0,0,0 (1,14912:10946034,6227191:0,0,0 g1,14912:10946034,6227191 @@ -263703,18 +263955,18 @@ g1,14912:10946034,6227191 g1,14912:10946034,6227191 g1,14912:10946034,6227191 (1,14912:10946034,6227191:0,0,0 -(1,14912:10946034,6227191:2855420,408008,104590 -(1,14912:10946034,6227191:2855420,408008,104590 +(1,14912:10946034,6227191:3488501,408008,104590 +(1,14912:10946034,6227191:3488501,408008,104590 (1,14912:10946034,6227191:0,408008,104590 -r1,14958:13801454,6227191:2855420,512598,104590 -k1,14912:10946034,6227191:-2855420 +r1,14956:14434535,6227191:3488501,512598,104590 +k1,14912:10946034,6227191:-3488501 ) -(1,14912:10946034,6227191:2855420,408008,104590 +(1,14912:10946034,6227191:3488501,408008,104590 k1,14912:10946034,6227191:3277 -h1,14912:13798177,6227191:0,370085,101313 +h1,14912:14431258,6227191:0,370085,101313 ) ) -g1,14912:13801454,6227191 +g1,14912:14434535,6227191 ) ) g1,14912:10946034,6227191 @@ -263722,59 +263974,18 @@ g1,14912:10946034,6227191 ) ) g1,14912:10946034,6227191 -(1,14913:10946034,6227191:0,0,0 -(1,14913:10946034,6227191:0,0,0 -g1,14913:10946034,6227191 g1,14913:10946034,6227191 g1,14913:10946034,6227191 g1,14913:10946034,6227191 g1,14913:10946034,6227191 -(1,14913:10946034,6227191:0,0,0 -(1,14913:10946034,6227191:2538879,414307,104590 -(1,14913:10946034,6227191:2538879,414307,104590 -(1,14913:10946034,6227191:0,414307,104590 -r1,14958:13484913,6227191:2538879,518897,104590 -k1,14913:10946034,6227191:-2538879 -) -(1,14913:10946034,6227191:2538879,414307,104590 -k1,14913:10946034,6227191:3277 -h1,14913:13481636,6227191:0,370085,101313 -) -) -g1,14913:13484913,6227191 -) -) g1,14913:10946034,6227191 g1,14913:10946034,6227191 -) -) -(1,14914:10946034,6227191:0,0,0 -(1,14914:10946034,6227191:0,0,0 -g1,14914:10946034,6227191 g1,14914:10946034,6227191 g1,14914:10946034,6227191 g1,14914:10946034,6227191 g1,14914:10946034,6227191 -(1,14914:10946034,6227191:0,0,0 -(1,14914:10946034,6227191:3488501,408008,104590 -(1,14914:10946034,6227191:3488501,408008,104590 -(1,14914:10946034,6227191:0,408008,104590 -r1,14958:14434535,6227191:3488501,512598,104590 -k1,14914:10946034,6227191:-3488501 -) -(1,14914:10946034,6227191:3488501,408008,104590 -k1,14914:10946034,6227191:3277 -h1,14914:14431258,6227191:0,370085,101313 -) -) -g1,14914:14434535,6227191 -) -) g1,14914:10946034,6227191 g1,14914:10946034,6227191 -) -) -g1,14914:10946034,6227191 g1,14915:10946034,6227191 g1,14915:10946034,6227191 g1,14915:10946034,6227191 @@ -263813,1314 +264024,1300 @@ g1,14920:10946034,6227191 g1,14920:10946034,6227191 g1,14921:10946034,6227191 g1,14921:10946034,6227191 -g1,14921:10946034,6227191 -g1,14921:10946034,6227191 -g1,14921:10946034,6227191 -g1,14921:10946034,6227191 -g1,14922:10946034,6227191 -g1,14922:10946034,6227191 -g1,14922:10946034,6227191 -g1,14922:10946034,6227191 -g1,14922:10946034,6227191 -g1,14922:10946034,6227191 -g1,14923:10946034,6227191 -g1,14923:10946034,6227191 ) -g1,14923:10946034,6227191 +g1,14921:10946034,6227191 ) ) +g1,14921:31539572,12449685 g1,14923:31539572,12449685 -g1,14925:31539572,12449685 -k1,14925:32583029,12449685:1043457 -) -(1,14925:6630773,13970125:25952256,505283,134348 -h1,14925:6630773,13970125:0,0,0 -g1,14925:8923222,13970125 -k1,14925:32583029,13970125:22669558 -g1,14925:32583029,13970125 -) -(1,14925:6630773,14835205:25952256,513147,134348 -h1,14925:6630773,14835205:0,0,0 -k1,14925:8573917,14835205:175638 -k1,14925:10737262,14835205:175638 -k1,14925:12847524,14835205:175639 -k1,14925:13639200,14835205:175638 -k1,14925:14229657,14835205:175614 -k1,14925:14936793,14835205:175639 -k1,14925:16689883,14835205:175638 -k1,14925:17481559,14835205:175638 -k1,14925:19516453,14835205:175638 -k1,14925:22104471,14835205:175638 -k1,14925:24896306,14835205:175638 -k1,14925:26639566,14835205:175639 -k1,14925:28800290,14835205:175638 -h1,14925:29770878,14835205:0,0,0 -k1,14925:29946516,14835205:175638 -k1,14925:32583029,14835205:0 -) -(1,14925:6630773,15700285:25952256,513147,134348 -k1,14925:7432755,15700285:150554 -k1,14925:9243991,15700285:150554 -k1,14925:10888766,15700285:150554 -k1,14925:14612343,15700285:150554 -k1,14925:18079674,15700285:150554 -k1,14925:20217934,15700285:150553 -k1,14925:22476781,15700285:150554 -k1,14925:25750781,15700285:150554 -k1,14925:27738965,15700285:150554 -k1,14925:28881079,15700285:150554 -k1,14925:31189078,15700285:150554 -k1,14925:32583029,15700285:0 -) -(1,14925:6630773,16565365:25952256,513147,134348 -k1,14925:8801808,16565365:236412 -k1,14925:9697512,16565365:236412 -k1,14925:11635894,16565365:236412 -k1,14925:13588695,16565365:236413 -k1,14925:14484399,16565365:236412 -k1,14925:17212490,16565365:236412 -k1,14925:18640347,16565365:236412 -k1,14925:20485668,16565365:236412 -k1,14925:22209092,16565365:236412 -k1,14925:23437064,16565365:236412 -k1,14925:26070784,16565365:236413 -k1,14925:26958624,16565365:236412 -(1,14925:26958624,16565365:0,452978,115847 -r1,14958:29427161,16565365:2468537,568825,115847 -k1,14925:26958624,16565365:-2468537 -) -(1,14925:26958624,16565365:2468537,452978,115847 -k1,14925:26958624,16565365:3277 -h1,14925:29423884,16565365:0,411205,112570 -) -k1,14925:29837243,16565365:236412 -k1,14925:31563944,16565365:236412 -k1,14925:32583029,16565365:0 -) -(1,14925:6630773,17430445:25952256,513147,126483 -k1,14925:8451909,17430445:166352 -k1,14925:10219961,17430445:166352 -k1,14925:13691294,17430445:166352 -k1,14925:15370872,17430445:166352 -k1,14925:17353227,17430445:166352 -k1,14925:20304204,17430445:166352 -k1,14925:21462116,17430445:166352 -k1,14925:23877664,17430445:166352 -k1,14925:25733534,17430445:166352 -k1,14925:27366582,17430445:166352 -k1,14925:30406688,17430445:166352 -k1,14925:31764485,17430445:166352 -k1,14925:32583029,17430445:0 -) -(1,14925:6630773,18295525:25952256,505283,126483 -k1,14925:9868317,18295525:184222 -k1,14925:12894179,18295525:184221 -k1,14925:14069961,18295525:184222 -k1,14925:16140308,18295525:184221 -k1,14925:20446744,18295525:184222 -k1,14925:23003369,18295525:184222 -k1,14925:25025220,18295525:184221 -k1,14925:26400887,18295525:184222 -k1,14925:28763525,18295525:184221 -k1,14925:29939307,18295525:184222 -k1,14925:32583029,18295525:0 -) -(1,14925:6630773,19160605:25952256,513147,126483 -g1,14925:7516164,19160605 -g1,14925:10311274,19160605 -g1,14925:11502063,19160605 -k1,14925:32583028,19160605:18177720 -g1,14925:32583028,19160605 -) -] -] -(1,14894:6630773,33443912:25952256,12846104,0 -k1,14894:13183781,33443912:6553008 -h1,14893:13183781,33443912:0,0,0 -(1,14893:13183781,33443912:12846240,12846104,0 -(1,14893:13183781,33443912:12846136,12846136,0 -(1,14893:13183781,33443912:12846136,12846136,0 -(1,14893:13183781,33443912:0,12846136,0 -(1,14893:13183781,33443912:0,18945146,0 -(1,14893:13183781,33443912:18945146,18945146,0 -) -k1,14893:13183781,33443912:-18945146 -) -) -g1,14893:26029917,33443912 -) -) -) -g1,14894:26030021,33443912 -k1,14894:32583029,33443912:6553008 -) -(1,14901:6630773,34308992:25952256,513147,134348 -h1,14900:6630773,34308992:983040,0,0 -k1,14900:10721869,34308992:318188 -(1,14900:10721869,34308992:0,452978,115847 -r1,14958:12486982,34308992:1765113,568825,115847 -k1,14900:10721869,34308992:-1765113 -) -(1,14900:10721869,34308992:1765113,452978,115847 -k1,14900:10721869,34308992:3277 -h1,14900:12483705,34308992:0,411205,112570 -) -k1,14900:12805170,34308992:318188 -k1,14900:16887092,34308992:318189 -k1,14900:18668699,34308992:318188 -k1,14900:22483888,34308992:318188 -k1,14900:26211914,34308992:318188 -k1,14900:26999996,34308992:318189 -k1,14900:28335958,34308992:318188 -k1,14900:29010006,34308992:318188 -k1,14900:32583029,34308992:0 -) -(1,14901:6630773,35174072:25952256,513147,126483 -k1,14900:8613943,35174072:241878 -k1,14900:9538706,35174072:241878 -k1,14900:12115632,35174072:241878 -k1,14900:13634152,35174072:241879 -k1,14900:15526227,35174072:241878 -k1,14900:17210552,35174072:241878 -k1,14900:18609140,35174072:241878 -k1,14900:22616717,35174072:241878 -k1,14900:25369935,35174072:241878 -k1,14900:26716096,35174072:241879 -k1,14900:27705740,35174072:241878 -k1,14900:30706028,35174072:241878 -k1,14900:31563944,35174072:241878 -k1,14900:32583029,35174072:0 -) -(1,14901:6630773,36039152:25952256,513147,134348 -k1,14900:8841362,36039152:222882 -k1,14900:11814790,36039152:222882 -k1,14900:13773064,36039152:222881 -k1,14900:18586743,36039152:222882 -k1,14900:20917918,36039152:222882 -k1,14900:21940995,36039152:222882 -k1,14900:23544721,36039152:222882 -k1,14900:26577787,36039152:222882 -k1,14900:27332165,36039152:222881 -k1,14900:29506709,36039152:222882 -k1,14900:31931601,36039152:222882 -k1,14900:32583029,36039152:0 -) -(1,14901:6630773,36904232:25952256,513147,134348 -k1,14900:8128449,36904232:213170 -k1,14900:9008776,36904232:213171 -(1,14900:9008776,36904232:0,452978,122846 -r1,14958:10773889,36904232:1765113,575824,122846 -k1,14900:9008776,36904232:-1765113 -) -(1,14900:9008776,36904232:1765113,452978,122846 -k1,14900:9008776,36904232:3277 -h1,14900:10770612,36904232:0,411205,112570 -) -k1,14900:10987059,36904232:213170 -k1,14900:12594180,36904232:213170 -(1,14900:12594180,36904232:0,459977,115847 -r1,14958:15062717,36904232:2468537,575824,115847 -k1,14900:12594180,36904232:-2468537 -) -(1,14900:12594180,36904232:2468537,459977,115847 -k1,14900:12594180,36904232:3277 -h1,14900:15059440,36904232:0,411205,112570 -) -k1,14900:15449558,36904232:213171 -(1,14900:15449558,36904232:0,459977,115847 -r1,14958:17566383,36904232:2116825,575824,115847 -k1,14900:15449558,36904232:-2116825 -) -(1,14900:15449558,36904232:2116825,459977,115847 -k1,14900:15449558,36904232:3277 -h1,14900:17563106,36904232:0,411205,112570 -) -k1,14900:17779553,36904232:213170 -k1,14900:19184168,36904232:213170 -(1,14900:19184168,36904232:0,452978,115847 -r1,14958:20597569,36904232:1413401,568825,115847 -k1,14900:19184168,36904232:-1413401 -) -(1,14900:19184168,36904232:1413401,452978,115847 -k1,14900:19184168,36904232:3277 -h1,14900:20594292,36904232:0,411205,112570 -) -k1,14900:20810740,36904232:213171 -k1,14900:23152519,36904232:213170 -k1,14900:26976723,36904232:213170 -k1,14900:29382073,36904232:213171 -h1,14900:30352661,36904232:0,0,0 -k1,14900:30946595,36904232:213170 -k1,14901:32583029,36904232:0 -) -(1,14901:6630773,37769312:25952256,513147,134348 -k1,14900:8634611,37769312:175384 -k1,14900:12421030,37769312:175385 -k1,14900:14884276,37769312:175384 -k1,14900:18356777,37769312:175385 -k1,14900:19215046,37769312:175384 -k1,14900:20409515,37769312:175384 -k1,14900:22573262,37769312:175385 -k1,14900:23407938,37769312:175384 -k1,14900:24602407,37769312:175384 -k1,14900:26272013,37769312:175385 -k1,14900:27836760,37769312:175384 -k1,14900:29525371,37769312:175385 -k1,14900:30648406,37769312:175384 -k1,14900:32583029,37769312:0 -) -(1,14901:6630773,38634392:25952256,513147,134348 -k1,14900:8412193,38634392:264917 -k1,14900:10460344,38634392:264916 -k1,14900:12840763,38634392:264917 -k1,14900:13637176,38634392:264916 -k1,14900:15596854,38634392:264917 -k1,14900:16513199,38634392:264917 -k1,14900:20849867,38634392:264916 -k1,14900:21800946,38634392:264917 -k1,14900:22421723,38634392:264917 -k1,14900:25382135,38634392:264916 -k1,14900:26306344,38634392:264917 -k1,14900:28079899,38634392:264916 -k1,14900:31386342,38634392:264917 -k1,14900:32583029,38634392:0 -) -(1,14901:6630773,39499472:25952256,513147,126483 -k1,14900:8216996,39499472:200137 -k1,14900:9076425,39499472:200137 -k1,14900:9964034,39499472:200136 -k1,14900:11658392,39499472:200137 -k1,14900:12541414,39499472:200137 -k1,14900:13807822,39499472:200137 -k1,14900:15521184,39499472:200136 -k1,14900:16668972,39499472:200137 -k1,14900:20062023,39499472:200137 -k1,14900:24027859,39499472:200137 -k1,14900:27069636,39499472:200136 -k1,14900:28374055,39499472:200137 -k1,14900:29321958,39499472:200137 -k1,14900:32583029,39499472:0 -) -(1,14901:6630773,40364552:25952256,505283,134348 -g1,14900:9388528,40364552 -g1,14900:12868489,40364552 -(1,14900:12868489,40364552:0,452978,115847 -r1,14958:16392161,40364552:3523672,568825,115847 -k1,14900:12868489,40364552:-3523672 -) -(1,14900:12868489,40364552:3523672,452978,115847 -k1,14900:12868489,40364552:3277 -h1,14900:16388884,40364552:0,411205,112570 -) -k1,14901:32583029,40364552:16138440 -g1,14901:32583029,40364552 -) -v1,14929:6630773,41049407:0,393216,0 -(1,14958:6630773,45510161:25952256,4853970,196608 -g1,14958:6630773,45510161 -g1,14958:6630773,45510161 -g1,14958:6434165,45510161 -(1,14958:6434165,45510161:0,4853970,196608 -r1,14958:32779637,45510161:26345472,5050578,196608 -k1,14958:6434165,45510161:-26345472 -) -(1,14958:6434165,45510161:26345472,4853970,196608 -[1,14958:6630773,45510161:25952256,4657362,0 -(1,14931:6630773,41283844:25952256,431045,106246 -(1,14930:6630773,41283844:0,0,0 -g1,14930:6630773,41283844 -g1,14930:6630773,41283844 -g1,14930:6303093,41283844 -(1,14930:6303093,41283844:0,0,0 -) -g1,14930:6630773,41283844 -) -g1,14931:8290543,41283844 -g1,14931:9286405,41283844 -g1,14931:12937899,41283844 -g1,14931:13601807,41283844 -g1,14931:15925485,41283844 -g1,14931:17585255,41283844 -g1,14931:18249163,41283844 -h1,14931:19908933,41283844:0,0,0 -k1,14931:32583029,41283844:12674096 -g1,14931:32583029,41283844 -) -(1,14932:6630773,41968699:25952256,431045,79822 -h1,14932:6630773,41968699:0,0,0 -k1,14932:6630773,41968699:0 -h1,14932:10282267,41968699:0,0,0 -k1,14932:32583029,41968699:22300762 -g1,14932:32583029,41968699 -) -(1,14936:6630773,42692616:25952256,424439,79822 -(1,14934:6630773,42692616:0,0,0 -g1,14934:6630773,42692616 -g1,14934:6630773,42692616 -g1,14934:6303093,42692616 -(1,14934:6303093,42692616:0,0,0 -) -g1,14934:6630773,42692616 -) -g1,14936:7626635,42692616 -g1,14936:8954451,42692616 -h1,14936:11278129,42692616:0,0,0 -k1,14936:32583029,42692616:21304900 -g1,14936:32583029,42692616 -) -(1,14938:6630773,43416534:25952256,431045,106246 -(1,14937:6630773,43416534:0,0,0 -g1,14937:6630773,43416534 -g1,14937:6630773,43416534 -g1,14937:6303093,43416534 -(1,14937:6303093,43416534:0,0,0 -) -g1,14937:6630773,43416534 -) -k1,14938:6630773,43416534:0 -h1,14938:10946175,43416534:0,0,0 -k1,14938:32583029,43416534:21636854 -g1,14938:32583029,43416534 -) -(1,14957:6630773,44140451:25952256,424439,8257 -(1,14940:6630773,44140451:0,0,0 -g1,14940:6630773,44140451 -g1,14940:6630773,44140451 -g1,14940:6303093,44140451 -(1,14940:6303093,44140451:0,0,0 -) -g1,14940:6630773,44140451 -) -g1,14957:7626635,44140451 -h1,14957:9286405,44140451:0,0,0 -k1,14957:32583029,44140451:23296624 -g1,14957:32583029,44140451 -) -(1,14957:6630773,44825306:25952256,431045,106246 -h1,14957:6630773,44825306:0,0,0 -g1,14957:7626635,44825306 -g1,14957:12273990,44825306 -g1,14957:12937898,44825306 -g1,14957:14597668,44825306 -g1,14957:15261576,44825306 -g1,14957:17585254,44825306 -g1,14957:19245024,44825306 -g1,14957:19908932,44825306 -h1,14957:21568702,44825306:0,0,0 -k1,14957:32583029,44825306:11014327 -g1,14957:32583029,44825306 -) -(1,14957:6630773,45510161:25952256,398014,0 -h1,14957:6630773,45510161:0,0,0 -h1,14957:7294681,45510161:0,0,0 -k1,14957:32583029,45510161:25288348 -g1,14957:32583029,45510161 -) -] -) -g1,14958:32583029,45510161 -g1,14958:6630773,45510161 -g1,14958:6630773,45510161 -g1,14958:32583029,45510161 -g1,14958:32583029,45510161 +k1,14923:32583029,12449685:1043457 +) +(1,14923:6630773,13970125:25952256,505283,134348 +h1,14923:6630773,13970125:0,0,0 +g1,14923:8923222,13970125 +k1,14923:32583029,13970125:22669558 +g1,14923:32583029,13970125 +) +(1,14923:6630773,14835205:25952256,513147,134348 +h1,14923:6630773,14835205:0,0,0 +k1,14923:8573917,14835205:175638 +k1,14923:10737262,14835205:175638 +k1,14923:12847524,14835205:175639 +k1,14923:13639200,14835205:175638 +k1,14923:14229657,14835205:175614 +k1,14923:14936793,14835205:175639 +k1,14923:16689883,14835205:175638 +k1,14923:17481559,14835205:175638 +k1,14923:19516453,14835205:175638 +k1,14923:22104471,14835205:175638 +k1,14923:24896306,14835205:175638 +k1,14923:26639566,14835205:175639 +k1,14923:28800290,14835205:175638 +h1,14923:29770878,14835205:0,0,0 +k1,14923:29946516,14835205:175638 +k1,14923:32583029,14835205:0 +) +(1,14923:6630773,15700285:25952256,513147,134348 +k1,14923:7432755,15700285:150554 +k1,14923:9243991,15700285:150554 +k1,14923:10888766,15700285:150554 +k1,14923:14612343,15700285:150554 +k1,14923:18079674,15700285:150554 +k1,14923:20217934,15700285:150553 +k1,14923:22476781,15700285:150554 +k1,14923:25750781,15700285:150554 +k1,14923:27738965,15700285:150554 +k1,14923:28881079,15700285:150554 +k1,14923:31189078,15700285:150554 +k1,14923:32583029,15700285:0 +) +(1,14923:6630773,16565365:25952256,513147,134348 +k1,14923:8801808,16565365:236412 +k1,14923:9697512,16565365:236412 +k1,14923:11635894,16565365:236412 +k1,14923:13588695,16565365:236413 +k1,14923:14484399,16565365:236412 +k1,14923:17212490,16565365:236412 +k1,14923:18640347,16565365:236412 +k1,14923:20485668,16565365:236412 +k1,14923:22209092,16565365:236412 +k1,14923:23437064,16565365:236412 +k1,14923:26070784,16565365:236413 +k1,14923:26958624,16565365:236412 +(1,14923:26958624,16565365:0,452978,115847 +r1,14956:29427161,16565365:2468537,568825,115847 +k1,14923:26958624,16565365:-2468537 +) +(1,14923:26958624,16565365:2468537,452978,115847 +k1,14923:26958624,16565365:3277 +h1,14923:29423884,16565365:0,411205,112570 +) +k1,14923:29837243,16565365:236412 +k1,14923:31563944,16565365:236412 +k1,14923:32583029,16565365:0 +) +(1,14923:6630773,17430445:25952256,513147,126483 +k1,14923:8451909,17430445:166352 +k1,14923:10219961,17430445:166352 +k1,14923:13691294,17430445:166352 +k1,14923:15370872,17430445:166352 +k1,14923:17353227,17430445:166352 +k1,14923:20304204,17430445:166352 +k1,14923:21462116,17430445:166352 +k1,14923:23877664,17430445:166352 +k1,14923:25733534,17430445:166352 +k1,14923:27366582,17430445:166352 +k1,14923:30406688,17430445:166352 +k1,14923:31764485,17430445:166352 +k1,14923:32583029,17430445:0 +) +(1,14923:6630773,18295525:25952256,505283,126483 +k1,14923:9868317,18295525:184222 +k1,14923:12894179,18295525:184221 +k1,14923:14069961,18295525:184222 +k1,14923:16140308,18295525:184221 +k1,14923:20446744,18295525:184222 +k1,14923:23003369,18295525:184222 +k1,14923:25025220,18295525:184221 +k1,14923:26400887,18295525:184222 +k1,14923:28763525,18295525:184221 +k1,14923:29939307,18295525:184222 +k1,14923:32583029,18295525:0 +) +(1,14923:6630773,19160605:25952256,513147,126483 +g1,14923:7516164,19160605 +g1,14923:10311274,19160605 +g1,14923:11502063,19160605 +k1,14923:32583028,19160605:18177720 +g1,14923:32583028,19160605 +) +] +] +(1,14892:6630773,33443912:25952256,12846104,0 +k1,14892:13183781,33443912:6553008 +h1,14891:13183781,33443912:0,0,0 +(1,14891:13183781,33443912:12846240,12846104,0 +(1,14891:13183781,33443912:12846136,12846136,0 +(1,14891:13183781,33443912:12846136,12846136,0 +(1,14891:13183781,33443912:0,12846136,0 +(1,14891:13183781,33443912:0,18945146,0 +(1,14891:13183781,33443912:18945146,18945146,0 +) +k1,14891:13183781,33443912:-18945146 +) +) +g1,14891:26029917,33443912 +) +) +) +g1,14892:26030021,33443912 +k1,14892:32583029,33443912:6553008 +) +(1,14899:6630773,34308992:25952256,513147,134348 +h1,14898:6630773,34308992:983040,0,0 +k1,14898:10721869,34308992:318188 +(1,14898:10721869,34308992:0,452978,115847 +r1,14956:12486982,34308992:1765113,568825,115847 +k1,14898:10721869,34308992:-1765113 +) +(1,14898:10721869,34308992:1765113,452978,115847 +k1,14898:10721869,34308992:3277 +h1,14898:12483705,34308992:0,411205,112570 +) +k1,14898:12805170,34308992:318188 +k1,14898:16887092,34308992:318189 +k1,14898:18668699,34308992:318188 +k1,14898:22483888,34308992:318188 +k1,14898:26211914,34308992:318188 +k1,14898:26999996,34308992:318189 +k1,14898:28335958,34308992:318188 +k1,14898:29010006,34308992:318188 +k1,14898:32583029,34308992:0 +) +(1,14899:6630773,35174072:25952256,513147,126483 +k1,14898:8613943,35174072:241878 +k1,14898:9538706,35174072:241878 +k1,14898:12115632,35174072:241878 +k1,14898:13634152,35174072:241879 +k1,14898:15526227,35174072:241878 +k1,14898:17210552,35174072:241878 +k1,14898:18609140,35174072:241878 +k1,14898:22616717,35174072:241878 +k1,14898:25369935,35174072:241878 +k1,14898:26716096,35174072:241879 +k1,14898:27705740,35174072:241878 +k1,14898:30706028,35174072:241878 +k1,14898:31563944,35174072:241878 +k1,14898:32583029,35174072:0 +) +(1,14899:6630773,36039152:25952256,513147,134348 +k1,14898:8841362,36039152:222882 +k1,14898:11814790,36039152:222882 +k1,14898:13773064,36039152:222881 +k1,14898:18586743,36039152:222882 +k1,14898:20917918,36039152:222882 +k1,14898:21940995,36039152:222882 +k1,14898:23544721,36039152:222882 +k1,14898:26577787,36039152:222882 +k1,14898:27332165,36039152:222881 +k1,14898:29506709,36039152:222882 +k1,14898:31931601,36039152:222882 +k1,14898:32583029,36039152:0 +) +(1,14899:6630773,36904232:25952256,513147,134348 +k1,14898:8128449,36904232:213170 +k1,14898:9008776,36904232:213171 +(1,14898:9008776,36904232:0,452978,122846 +r1,14956:10773889,36904232:1765113,575824,122846 +k1,14898:9008776,36904232:-1765113 +) +(1,14898:9008776,36904232:1765113,452978,122846 +k1,14898:9008776,36904232:3277 +h1,14898:10770612,36904232:0,411205,112570 +) +k1,14898:10987059,36904232:213170 +k1,14898:12594180,36904232:213170 +(1,14898:12594180,36904232:0,459977,115847 +r1,14956:15062717,36904232:2468537,575824,115847 +k1,14898:12594180,36904232:-2468537 +) +(1,14898:12594180,36904232:2468537,459977,115847 +k1,14898:12594180,36904232:3277 +h1,14898:15059440,36904232:0,411205,112570 +) +k1,14898:15449558,36904232:213171 +(1,14898:15449558,36904232:0,459977,115847 +r1,14956:17566383,36904232:2116825,575824,115847 +k1,14898:15449558,36904232:-2116825 +) +(1,14898:15449558,36904232:2116825,459977,115847 +k1,14898:15449558,36904232:3277 +h1,14898:17563106,36904232:0,411205,112570 +) +k1,14898:17779553,36904232:213170 +k1,14898:19184168,36904232:213170 +(1,14898:19184168,36904232:0,452978,115847 +r1,14956:20597569,36904232:1413401,568825,115847 +k1,14898:19184168,36904232:-1413401 +) +(1,14898:19184168,36904232:1413401,452978,115847 +k1,14898:19184168,36904232:3277 +h1,14898:20594292,36904232:0,411205,112570 +) +k1,14898:20810740,36904232:213171 +k1,14898:23152519,36904232:213170 +k1,14898:26976723,36904232:213170 +k1,14898:29382073,36904232:213171 +h1,14898:30352661,36904232:0,0,0 +k1,14898:30946595,36904232:213170 +k1,14899:32583029,36904232:0 +) +(1,14899:6630773,37769312:25952256,513147,134348 +k1,14898:8634611,37769312:175384 +k1,14898:12421030,37769312:175385 +k1,14898:14884276,37769312:175384 +k1,14898:18356777,37769312:175385 +k1,14898:19215046,37769312:175384 +k1,14898:20409515,37769312:175384 +k1,14898:22573262,37769312:175385 +k1,14898:23407938,37769312:175384 +k1,14898:24602407,37769312:175384 +k1,14898:26272013,37769312:175385 +k1,14898:27836760,37769312:175384 +k1,14898:29525371,37769312:175385 +k1,14898:30648406,37769312:175384 +k1,14898:32583029,37769312:0 +) +(1,14899:6630773,38634392:25952256,513147,134348 +k1,14898:8412193,38634392:264917 +k1,14898:10460344,38634392:264916 +k1,14898:12840763,38634392:264917 +k1,14898:13637176,38634392:264916 +k1,14898:15596854,38634392:264917 +k1,14898:16513199,38634392:264917 +k1,14898:20849867,38634392:264916 +k1,14898:21800946,38634392:264917 +k1,14898:22421723,38634392:264917 +k1,14898:25382135,38634392:264916 +k1,14898:26306344,38634392:264917 +k1,14898:28079899,38634392:264916 +k1,14898:31386342,38634392:264917 +k1,14898:32583029,38634392:0 +) +(1,14899:6630773,39499472:25952256,513147,126483 +k1,14898:8216996,39499472:200137 +k1,14898:9076425,39499472:200137 +k1,14898:9964034,39499472:200136 +k1,14898:11658392,39499472:200137 +k1,14898:12541414,39499472:200137 +k1,14898:13807822,39499472:200137 +k1,14898:15521184,39499472:200136 +k1,14898:16668972,39499472:200137 +k1,14898:20062023,39499472:200137 +k1,14898:24027859,39499472:200137 +k1,14898:27069636,39499472:200136 +k1,14898:28374055,39499472:200137 +k1,14898:29321958,39499472:200137 +k1,14898:32583029,39499472:0 +) +(1,14899:6630773,40364552:25952256,505283,134348 +g1,14898:9388528,40364552 +g1,14898:12868489,40364552 +(1,14898:12868489,40364552:0,452978,115847 +r1,14956:16392161,40364552:3523672,568825,115847 +k1,14898:12868489,40364552:-3523672 +) +(1,14898:12868489,40364552:3523672,452978,115847 +k1,14898:12868489,40364552:3277 +h1,14898:16388884,40364552:0,411205,112570 +) +k1,14899:32583029,40364552:16138440 +g1,14899:32583029,40364552 +) +v1,14927:6630773,41049407:0,393216,0 +(1,14956:6630773,45510161:25952256,4853970,196608 +g1,14956:6630773,45510161 +g1,14956:6630773,45510161 +g1,14956:6434165,45510161 +(1,14956:6434165,45510161:0,4853970,196608 +r1,14956:32779637,45510161:26345472,5050578,196608 +k1,14956:6434165,45510161:-26345472 +) +(1,14956:6434165,45510161:26345472,4853970,196608 +[1,14956:6630773,45510161:25952256,4657362,0 +(1,14929:6630773,41283844:25952256,431045,106246 +(1,14928:6630773,41283844:0,0,0 +g1,14928:6630773,41283844 +g1,14928:6630773,41283844 +g1,14928:6303093,41283844 +(1,14928:6303093,41283844:0,0,0 +) +g1,14928:6630773,41283844 +) +g1,14929:8290543,41283844 +g1,14929:9286405,41283844 +g1,14929:12937899,41283844 +g1,14929:13601807,41283844 +g1,14929:15925485,41283844 +g1,14929:17585255,41283844 +g1,14929:18249163,41283844 +h1,14929:19908933,41283844:0,0,0 +k1,14929:32583029,41283844:12674096 +g1,14929:32583029,41283844 +) +(1,14930:6630773,41968699:25952256,431045,79822 +h1,14930:6630773,41968699:0,0,0 +k1,14930:6630773,41968699:0 +h1,14930:10282267,41968699:0,0,0 +k1,14930:32583029,41968699:22300762 +g1,14930:32583029,41968699 +) +(1,14934:6630773,42692616:25952256,424439,79822 +(1,14932:6630773,42692616:0,0,0 +g1,14932:6630773,42692616 +g1,14932:6630773,42692616 +g1,14932:6303093,42692616 +(1,14932:6303093,42692616:0,0,0 +) +g1,14932:6630773,42692616 +) +g1,14934:7626635,42692616 +g1,14934:8954451,42692616 +h1,14934:11278129,42692616:0,0,0 +k1,14934:32583029,42692616:21304900 +g1,14934:32583029,42692616 +) +(1,14936:6630773,43416534:25952256,431045,106246 +(1,14935:6630773,43416534:0,0,0 +g1,14935:6630773,43416534 +g1,14935:6630773,43416534 +g1,14935:6303093,43416534 +(1,14935:6303093,43416534:0,0,0 +) +g1,14935:6630773,43416534 +) +k1,14936:6630773,43416534:0 +h1,14936:10946175,43416534:0,0,0 +k1,14936:32583029,43416534:21636854 +g1,14936:32583029,43416534 +) +(1,14955:6630773,44140451:25952256,424439,8257 +(1,14938:6630773,44140451:0,0,0 +g1,14938:6630773,44140451 +g1,14938:6630773,44140451 +g1,14938:6303093,44140451 +(1,14938:6303093,44140451:0,0,0 +) +g1,14938:6630773,44140451 +) +g1,14955:7626635,44140451 +h1,14955:9286405,44140451:0,0,0 +k1,14955:32583029,44140451:23296624 +g1,14955:32583029,44140451 +) +(1,14955:6630773,44825306:25952256,431045,106246 +h1,14955:6630773,44825306:0,0,0 +g1,14955:7626635,44825306 +g1,14955:12273990,44825306 +g1,14955:12937898,44825306 +g1,14955:14597668,44825306 +g1,14955:15261576,44825306 +g1,14955:17585254,44825306 +g1,14955:19245024,44825306 +g1,14955:19908932,44825306 +h1,14955:21568702,44825306:0,0,0 +k1,14955:32583029,44825306:11014327 +g1,14955:32583029,44825306 +) +(1,14955:6630773,45510161:25952256,398014,0 +h1,14955:6630773,45510161:0,0,0 +h1,14955:7294681,45510161:0,0,0 +k1,14955:32583029,45510161:25288348 +g1,14955:32583029,45510161 +) +] +) +g1,14956:32583029,45510161 +g1,14956:6630773,45510161 +g1,14956:6630773,45510161 +g1,14956:32583029,45510161 +g1,14956:32583029,45510161 ) -] -(1,14958:32583029,45706769:0,0,0 -g1,14958:32583029,45706769 +] +(1,14956:32583029,45706769:0,0,0 +g1,14956:32583029,45706769 ) ) ] -(1,14958:6630773,47279633:25952256,0,0 -h1,14958:6630773,47279633:25952256,0,0 +(1,14956:6630773,47279633:25952256,0,0 +h1,14956:6630773,47279633:25952256,0,0 ) ] -(1,14958:4262630,4025873:0,0,0 -[1,14958:-473656,4025873:0,0,0 -(1,14958:-473656,-710413:0,0,0 -(1,14958:-473656,-710413:0,0,0 -g1,14958:-473656,-710413 +(1,14956:4262630,4025873:0,0,0 +[1,14956:-473656,4025873:0,0,0 +(1,14956:-473656,-710413:0,0,0 +(1,14956:-473656,-710413:0,0,0 +g1,14956:-473656,-710413 ) -g1,14958:-473656,-710413 +g1,14956:-473656,-710413 ) ] ) ] !23652 -}240 -Input:2569:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2570:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2571:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}241 Input:2572:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2573:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2574:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2577:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2578:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{241 -[1,15007:4262630,47279633:28320399,43253760,0 -(1,15007:4262630,4025873:0,0,0 -[1,15007:-473656,4025873:0,0,0 -(1,15007:-473656,-710413:0,0,0 -(1,15007:-473656,-644877:0,0,0 -k1,15007:-473656,-644877:-65536 +{242 +[1,15005:4262630,47279633:28320399,43253760,0 +(1,15005:4262630,4025873:0,0,0 +[1,15005:-473656,4025873:0,0,0 +(1,15005:-473656,-710413:0,0,0 +(1,15005:-473656,-644877:0,0,0 +k1,15005:-473656,-644877:-65536 ) -(1,15007:-473656,4736287:0,0,0 -k1,15007:-473656,4736287:5209943 +(1,15005:-473656,4736287:0,0,0 +k1,15005:-473656,4736287:5209943 ) -g1,15007:-473656,-710413 +g1,15005:-473656,-710413 ) ] ) -[1,15007:6630773,47279633:25952256,43253760,0 -[1,15007:6630773,4812305:25952256,786432,0 -(1,15007:6630773,4812305:25952256,513147,126483 -(1,15007:6630773,4812305:25952256,513147,126483 -g1,15007:3078558,4812305 -[1,15007:3078558,4812305:0,0,0 -(1,15007:3078558,2439708:0,1703936,0 -k1,15007:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15007:2537886,2439708:1179648,16384,0 +[1,15005:6630773,47279633:25952256,43253760,0 +[1,15005:6630773,4812305:25952256,786432,0 +(1,15005:6630773,4812305:25952256,513147,126483 +(1,15005:6630773,4812305:25952256,513147,126483 +g1,15005:3078558,4812305 +[1,15005:3078558,4812305:0,0,0 +(1,15005:3078558,2439708:0,1703936,0 +k1,15005:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15005:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15007:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15005:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15007:3078558,4812305:0,0,0 -(1,15007:3078558,2439708:0,1703936,0 -g1,15007:29030814,2439708 -g1,15007:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15007:36151628,1915420:16384,1179648,0 +[1,15005:3078558,4812305:0,0,0 +(1,15005:3078558,2439708:0,1703936,0 +g1,15005:29030814,2439708 +g1,15005:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15005:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15007:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15005:37855564,2439708:1179648,16384,0 ) ) -k1,15007:3078556,2439708:-34777008 +k1,15005:3078556,2439708:-34777008 ) ] -[1,15007:3078558,4812305:0,0,0 -(1,15007:3078558,49800853:0,16384,2228224 -k1,15007:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15007:2537886,49800853:1179648,16384,0 +[1,15005:3078558,4812305:0,0,0 +(1,15005:3078558,49800853:0,16384,2228224 +k1,15005:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15005:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15007:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15005:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15007:3078558,4812305:0,0,0 -(1,15007:3078558,49800853:0,16384,2228224 -g1,15007:29030814,49800853 -g1,15007:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15007:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15007:37855564,49800853:1179648,16384,0 -) -) -k1,15007:3078556,49800853:-34777008 -) -] -g1,15007:6630773,4812305 -k1,15007:19575446,4812305:11749296 -g1,15007:21198117,4812305 -g1,15007:21985204,4812305 -g1,15007:24539797,4812305 -g1,15007:25949476,4812305 -g1,15007:28728857,4812305 -g1,15007:29852144,4812305 -) -) -] -[1,15007:6630773,45706769:25952256,40108032,0 -(1,15007:6630773,45706769:25952256,40108032,0 -(1,15007:6630773,45706769:0,0,0 -g1,15007:6630773,45706769 -) -[1,15007:6630773,45706769:25952256,40108032,0 -v1,14958:6630773,6254097:0,393216,0 -(1,14958:6630773,14813040:25952256,8952159,196608 -g1,14958:6630773,14813040 -g1,14958:6630773,14813040 -g1,14958:6434165,14813040 -(1,14958:6434165,14813040:0,8952159,196608 -r1,15007:32779637,14813040:26345472,9148767,196608 -k1,14958:6434165,14813040:-26345472 -) -(1,14958:6434165,14813040:26345472,8952159,196608 -[1,14958:6630773,14813040:25952256,8755551,0 -(1,14957:6630773,6488534:25952256,431045,9908 -h1,14957:6630773,6488534:0,0,0 -g1,14957:7626635,6488534 -g1,14957:9950313,6488534 -g1,14957:10946175,6488534 -g1,14957:15593530,6488534 -h1,14957:16257438,6488534:0,0,0 -k1,14957:32583029,6488534:16325591 -g1,14957:32583029,6488534 -) -(1,14957:6630773,7173389:25952256,431045,106246 -h1,14957:6630773,7173389:0,0,0 -g1,14957:7626635,7173389 -g1,14957:11278128,7173389 -g1,14957:13601806,7173389 -g1,14957:14597668,7173389 -g1,14957:18581115,7173389 -h1,14957:19908931,7173389:0,0,0 -k1,14957:32583029,7173389:12674098 -g1,14957:32583029,7173389 -) -(1,14957:6630773,7858244:25952256,424439,9908 -h1,14957:6630773,7858244:0,0,0 -g1,14957:7626635,7858244 -g1,14957:10614220,7858244 -g1,14957:13601805,7858244 -g1,14957:15925483,7858244 -h1,14957:17585253,7858244:0,0,0 -k1,14957:32583029,7858244:14997776 -g1,14957:32583029,7858244 -) -(1,14957:6630773,8543099:25952256,431045,79822 -h1,14957:6630773,8543099:0,0,0 -g1,14957:7626635,8543099 -g1,14957:9618359,8543099 -g1,14957:10614221,8543099 -g1,14957:13601806,8543099 -g1,14957:16257438,8543099 -g1,14957:17917208,8543099 -g1,14957:18249162,8543099 -h1,14957:20572840,8543099:0,0,0 -k1,14957:32583029,8543099:12010189 -g1,14957:32583029,8543099 -) -(1,14957:6630773,9227954:25952256,398014,0 -h1,14957:6630773,9227954:0,0,0 -h1,14957:7294681,9227954:0,0,0 -k1,14957:32583029,9227954:25288348 -g1,14957:32583029,9227954 -) -(1,14957:6630773,9912809:25952256,424439,112852 -h1,14957:6630773,9912809:0,0,0 -g1,14957:7626635,9912809 -g1,14957:10282267,9912809 -h1,14957:13269852,9912809:0,0,0 -k1,14957:32583028,9912809:19313176 -g1,14957:32583028,9912809 -) -(1,14957:6630773,10597664:25952256,407923,106246 -h1,14957:6630773,10597664:0,0,0 -g1,14957:7626635,10597664 -g1,14957:7958589,10597664 -g1,14957:8290543,10597664 -g1,14957:9950313,10597664 -g1,14957:10282267,10597664 -g1,14957:10614221,10597664 -g1,14957:10946175,10597664 -g1,14957:11278129,10597664 -g1,14957:11942037,10597664 -g1,14957:12273991,10597664 -h1,14957:13601807,10597664:0,0,0 -k1,14957:32583029,10597664:18981222 -g1,14957:32583029,10597664 -) -(1,14957:6630773,11282519:25952256,424439,112852 -h1,14957:6630773,11282519:0,0,0 -g1,14957:7626635,11282519 -g1,14957:7958589,11282519 -g1,14957:8290543,11282519 -g1,14957:10614221,11282519 -g1,14957:10946175,11282519 -g1,14957:11278129,11282519 -g1,14957:11942037,11282519 -g1,14957:12273991,11282519 -h1,14957:12605945,11282519:0,0,0 -k1,14957:32583029,11282519:19977084 -g1,14957:32583029,11282519 -) -(1,14957:6630773,11967374:25952256,431045,112852 -h1,14957:6630773,11967374:0,0,0 -g1,14957:7626635,11967374 -g1,14957:7958589,11967374 -g1,14957:8290543,11967374 -g1,14957:10614221,11967374 -g1,14957:10946175,11967374 -g1,14957:11278129,11967374 -g1,14957:11942037,11967374 -g1,14957:12273991,11967374 -h1,14957:14929622,11967374:0,0,0 -k1,14957:32583030,11967374:17653408 -g1,14957:32583030,11967374 -) -(1,14957:6630773,12652229:25952256,431045,106246 -h1,14957:6630773,12652229:0,0,0 -g1,14957:7626635,12652229 -g1,14957:7958589,12652229 -g1,14957:8290543,12652229 -g1,14957:10946175,12652229 -g1,14957:11278129,12652229 -g1,14957:11942037,12652229 -g1,14957:12273991,12652229 -g1,14957:16257438,12652229 -g1,14957:16589392,12652229 -g1,14957:16921346,12652229 -g1,14957:18581116,12652229 -g1,14957:19245024,12652229 -h1,14957:20240886,12652229:0,0,0 -k1,14957:32583029,12652229:12342143 -g1,14957:32583029,12652229 -) -(1,14957:6630773,13337084:25952256,424439,8257 -h1,14957:6630773,13337084:0,0,0 -g1,14957:7626635,13337084 -g1,14957:7958589,13337084 -g1,14957:8290543,13337084 -g1,14957:11942036,13337084 -g1,14957:12273990,13337084 -h1,14957:13601806,13337084:0,0,0 -k1,14957:32583030,13337084:18981224 -g1,14957:32583030,13337084 -) -(1,14957:6630773,14021939:25952256,424439,106246 -h1,14957:6630773,14021939:0,0,0 -g1,14957:7626635,14021939 -g1,14957:7958589,14021939 -g1,14957:11942036,14021939 -g1,14957:12273990,14021939 -h1,14957:13933760,14021939:0,0,0 -k1,14957:32583028,14021939:18649268 -g1,14957:32583028,14021939 -) -(1,14957:6630773,14706794:25952256,424439,106246 -h1,14957:6630773,14706794:0,0,0 -g1,14957:7626635,14706794 -g1,14957:11942036,14706794 -g1,14957:12273990,14706794 -h1,14957:13933760,14706794:0,0,0 -k1,14957:32583028,14706794:18649268 -g1,14957:32583028,14706794 -) -] -) -g1,14958:32583029,14813040 -g1,14958:6630773,14813040 -g1,14958:6630773,14813040 -g1,14958:32583029,14813040 -g1,14958:32583029,14813040 -) -h1,14958:6630773,15009648:0,0,0 -v1,14962:6630773,15874728:0,393216,0 -(1,14963:6630773,17235333:25952256,1753821,0 -g1,14963:6630773,17235333 -g1,14963:6237557,17235333 -r1,15007:6368629,17235333:131072,1753821,0 -g1,14963:6567858,17235333 -g1,14963:6764466,17235333 -[1,14963:6764466,17235333:25818563,1753821,0 -(1,14963:6764466,16235905:25818563,754393,260573 -(1,14962:6764466,16235905:0,754393,260573 -r1,15007:7856192,16235905:1091726,1014966,260573 -k1,14962:6764466,16235905:-1091726 -) -(1,14962:6764466,16235905:1091726,754393,260573 -) -k1,14962:8063612,16235905:207420 -k1,14962:8391292,16235905:327680 -k1,14962:11388580,16235905:207420 -(1,14962:11388580,16235905:0,452978,115847 -r1,15007:13857117,16235905:2468537,568825,115847 -k1,14962:11388580,16235905:-2468537 -) -(1,14962:11388580,16235905:2468537,452978,115847 -k1,14962:11388580,16235905:3277 -h1,14962:13853840,16235905:0,411205,112570 -) -k1,14962:14064537,16235905:207420 -k1,14962:15376239,16235905:207420 -k1,14962:16331425,16235905:207420 -k1,14962:18052071,16235905:207420 -k1,14962:18910919,16235905:207420 -k1,14962:21878715,16235905:207420 -k1,14962:23258574,16235905:207420 -k1,14962:24148879,16235905:207420 -k1,14962:26006496,16235905:207420 -k1,14962:27821514,16235905:207420 -k1,14962:29220379,16235905:207420 -k1,14962:30499968,16235905:207420 -k1,14962:31773659,16235905:207420 -k1,14962:32583029,16235905:0 -) -(1,14963:6764466,17100985:25818563,505283,134348 -g1,14962:7319555,17100985 -g1,14962:9391803,17100985 -k1,14963:32583030,17100985:21982088 -g1,14963:32583030,17100985 -) -] -g1,14963:32583029,17235333 -) -h1,14963:6630773,17235333:0,0,0 -v1,14966:6630773,18100413:0,393216,0 -(1,14967:6630773,22860594:25952256,5153397,0 -g1,14967:6630773,22860594 -g1,14967:6237557,22860594 -r1,15007:6368629,22860594:131072,5153397,0 -g1,14967:6567858,22860594 -g1,14967:6764466,22860594 -[1,14967:6764466,22860594:25818563,5153397,0 -(1,14967:6764466,18408711:25818563,701514,196608 -(1,14966:6764466,18408711:0,701514,196608 -r1,15007:7761522,18408711:997056,898122,196608 -k1,14966:6764466,18408711:-997056 -) -(1,14966:6764466,18408711:997056,701514,196608 -) -k1,14966:7987360,18408711:225838 -k1,14966:8315040,18408711:327680 -k1,14966:10797282,18408711:225837 -k1,14966:13508901,18408711:225838 -k1,14966:17396891,18408711:225838 -k1,14966:18274157,18408711:225838 -k1,14966:19889357,18408711:225837 -k1,14966:22843459,18408711:225838 -k1,14966:24954768,18408711:225838 -k1,14966:25995874,18408711:225838 -k1,14966:28651786,18408711:225837 -k1,14966:31923737,18408711:225838 -k1,14966:32583029,18408711:0 -) -(1,14967:6764466,19273791:25818563,513147,134348 -k1,14966:9259516,19273791:220295 -k1,14966:13217328,19273791:220294 -k1,14966:14629068,19273791:220295 -k1,14966:16622111,19273791:220294 -k1,14966:17833966,19273791:220295 -k1,14966:19908929,19273791:220294 -k1,14966:20938594,19273791:220295 -k1,14966:22177973,19273791:220294 -k1,14966:23490753,19273791:220295 -k1,14966:24370339,19273791:220294 -k1,14966:26840485,19273791:220295 -k1,14966:27712207,19273791:220294 -k1,14966:30601783,19273791:220295 -k1,14966:31841162,19273791:220294 -k1,14967:32583029,19273791:0 -) -(1,14967:6764466,20138871:25818563,505283,134348 -k1,14966:9511233,20138871:178411 -k1,14966:10881088,20138871:178410 -k1,14966:12526195,20138871:178411 -k1,14966:15532484,20138871:178410 -k1,14966:18002034,20138871:178411 -k1,14966:19819500,20138871:178411 -k1,14966:20989470,20138871:178410 -k1,14966:23729028,20138871:178411 -k1,14966:26225446,20138871:178410 -k1,14966:27897423,20138871:178411 -k1,14966:28761995,20138871:178410 -k1,14966:30471306,20138871:178390 -k1,14966:31841162,20138871:178411 -k1,14967:32583029,20138871:0 -) -(1,14967:6764466,21003951:25818563,513147,126483 -k1,14966:8524467,21003951:174030 -k1,14966:11483122,21003951:174030 -k1,14966:12889229,21003951:174030 -k1,14966:14879262,21003951:174030 -k1,14966:16854221,21003951:174030 -k1,14966:18219697,21003951:174031 -k1,14966:21650211,21003951:174030 -k1,14966:23213604,21003951:174030 -k1,14966:25942227,21003951:174030 -k1,14966:27880461,21003951:174005 -k1,14966:30729671,21003951:174030 -k1,14966:32583029,21003951:0 -) -(1,14967:6764466,21869031:25818563,513147,134348 -k1,14966:8867254,21869031:250085 -k1,14966:11901965,21869031:250086 -k1,14966:13143610,21869031:250085 -k1,14966:17595208,21869031:250085 -k1,14966:18461331,21869031:250085 -k1,14966:22205141,21869031:250086 -k1,14966:25527554,21869031:250085 -k1,14966:28688093,21869031:250085 -k1,14966:30129624,21869031:250086 -k1,14966:31410590,21869031:250085 -k1,14967:32583029,21869031:0 -) -(1,14967:6764466,22734111:25818563,513147,126483 -g1,14966:8263274,22734111 -g1,14966:9481588,22734111 -g1,14966:11507305,22734111 -g1,14966:12365826,22734111 -g1,14966:13768296,22734111 -k1,14967:32583028,22734111:17180264 -g1,14967:32583028,22734111 -) -] -g1,14967:32583029,22860594 -) -h1,14967:6630773,22860594:0,0,0 -(1,14970:6630773,25691754:25952256,32768,229376 -(1,14970:6630773,25691754:0,32768,229376 -(1,14970:6630773,25691754:5505024,32768,229376 -r1,15007:12135797,25691754:5505024,262144,229376 -) -k1,14970:6630773,25691754:-5505024 -) -(1,14970:6630773,25691754:25952256,32768,0 -r1,15007:32583029,25691754:25952256,32768,0 -) -) -(1,14970:6630773,27323606:25952256,606339,14155 -(1,14970:6630773,27323606:2464678,582746,14155 -g1,14970:6630773,27323606 -g1,14970:9095451,27323606 -) -g1,14970:11747300,27323606 -k1,14970:32583028,27323606:17148148 -g1,14970:32583028,27323606 -) -(1,14973:6630773,28581902:25952256,513147,134348 -k1,14972:8726626,28581902:164507 -k1,14972:11938556,28581902:164506 -k1,14972:13596629,28581902:164507 -k1,14972:14447298,28581902:164507 -(1,14972:14447298,28581902:0,414482,115847 -r1,15007:15703452,28581902:1256154,530329,115847 -k1,14972:14447298,28581902:-1256154 -) -(1,14972:14447298,28581902:1256154,414482,115847 -k1,14972:14447298,28581902:97232 -h1,14972:15700175,28581902:0,411205,112570 -) -k1,14972:15867959,28581902:164507 -k1,14972:17024025,28581902:164506 -k1,14972:19245052,28581902:164507 -k1,14972:20922785,28581902:164507 -k1,14972:21703330,28581902:164507 -k1,14972:22456349,28581902:164506 -k1,14972:24087552,28581902:164507 -k1,14972:24868097,28581902:164507 -k1,14972:27020311,28581902:164507 -k1,14972:29119440,28581902:164506 -k1,14972:29970109,28581902:164507 -k1,14973:32583029,28581902:0 -) -(1,14973:6630773,29446982:25952256,513147,134348 -k1,14972:8026783,29446982:197356 -k1,14972:8840177,29446982:197356 -k1,14972:11792012,29446982:197357 -k1,14972:14598356,29446982:197356 -k1,14972:15455004,29446982:197356 -k1,14972:16855601,29446982:197356 -k1,14972:19470580,29446982:197356 -k1,14972:20859382,29446982:197357 -k1,14972:21672776,29446982:197356 -k1,14972:24394579,29446982:197356 -k1,14972:26289973,29446982:197356 -k1,14972:28222722,29446982:197356 -k1,14972:29854007,29446982:197357 -k1,14972:30466204,29446982:197354 -(1,14972:30466204,29446982:0,452978,115847 -r1,15007:32583029,29446982:2116825,568825,115847 -k1,14972:30466204,29446982:-2116825 -) -(1,14972:30466204,29446982:2116825,452978,115847 -k1,14972:30466204,29446982:3277 -h1,14972:32579752,29446982:0,411205,112570 -) -k1,14972:32583029,29446982:0 -) -(1,14973:6630773,30312062:25952256,505283,7863 -k1,14973:32583030,30312062:23115204 -g1,14973:32583030,30312062 -) -(1,14975:6630773,31177142:25952256,513147,134348 -h1,14974:6630773,31177142:983040,0,0 -k1,14974:8188921,31177142:160265 -k1,14974:8880721,31177142:160303 -k1,14974:12321757,31177142:160304 -k1,14974:13673506,31177142:160304 -k1,14974:16134778,31177142:160303 -k1,14974:16911120,31177142:160304 -k1,14974:18401804,31177142:160303 -k1,14974:19020205,31177142:160304 -k1,14974:21016172,31177142:160304 -k1,14974:23518732,31177142:160303 -k1,14974:26142534,31177142:160304 -k1,14974:26954265,31177142:160303 -k1,14974:27885272,31177142:160304 -k1,14974:30033937,31177142:160303 -k1,14974:31478747,31177142:160304 -k1,14974:32583029,31177142:0 -) -(1,14975:6630773,32042222:25952256,513147,134348 -k1,14974:7651431,32042222:272892 -k1,14974:11188671,32042222:272892 -k1,14974:12112990,32042222:272891 -k1,14974:14129795,32042222:272892 -k1,14974:16895021,32042222:272892 -k1,14974:18561864,32042222:272892 -k1,14974:20536726,32042222:272892 -k1,14974:23885877,32042222:272891 -k1,14974:27505037,32042222:272892 -k1,14974:29709275,32042222:272892 -k1,14974:32583029,32042222:0 -) -(1,14975:6630773,32907302:25952256,513147,134348 -k1,14974:7877249,32907302:254916 -k1,14974:10421994,32907302:254917 -k1,14974:11336202,32907302:254916 -k1,14974:13146287,32907302:254916 -(1,14974:13146287,32907302:0,459977,115847 -r1,15007:15614824,32907302:2468537,575824,115847 -k1,14974:13146287,32907302:-2468537 -) -(1,14974:13146287,32907302:2468537,459977,115847 -k1,14974:13146287,32907302:3277 -h1,14974:15611547,32907302:0,411205,112570 -) -k1,14974:15869741,32907302:254917 -k1,14974:17316102,32907302:254916 -k1,14974:19353597,32907302:254916 -(1,14974:19353597,32907302:0,452978,115847 -r1,15007:20766998,32907302:1413401,568825,115847 -k1,14974:19353597,32907302:-1413401 -) -(1,14974:19353597,32907302:1413401,452978,115847 -k1,14974:19353597,32907302:3277 -h1,14974:20763721,32907302:0,411205,112570 -) -k1,14974:21021914,32907302:254916 -k1,14974:22468276,32907302:254917 -k1,14974:23827474,32907302:254916 -k1,14974:24830156,32907302:254916 -k1,14974:29098498,32907302:254917 -k1,14974:30544859,32907302:254916 -k1,14974:32583029,32907302:0 -) -(1,14975:6630773,33772382:25952256,513147,134348 -g1,14974:9598243,33772382 -g1,14974:10448900,33772382 -g1,14974:12937957,33772382 -g1,14974:13796478,33772382 -g1,14974:15697677,33772382 -k1,14975:32583029,33772382:14600112 -g1,14975:32583029,33772382 -) -v1,14977:6630773,34457237:0,393216,0 -(1,14990:6630773,37212671:25952256,3148650,196608 -g1,14990:6630773,37212671 -g1,14990:6630773,37212671 -g1,14990:6434165,37212671 -(1,14990:6434165,37212671:0,3148650,196608 -r1,15007:32779637,37212671:26345472,3345258,196608 -k1,14990:6434165,37212671:-26345472 -) -(1,14990:6434165,37212671:26345472,3148650,196608 -[1,14990:6630773,37212671:25952256,2952042,0 -(1,14979:6630773,34685068:25952256,424439,106246 -(1,14978:6630773,34685068:0,0,0 -g1,14978:6630773,34685068 -g1,14978:6630773,34685068 -g1,14978:6303093,34685068 -(1,14978:6303093,34685068:0,0,0 -) -g1,14978:6630773,34685068 -) -k1,14979:6630773,34685068:0 -g1,14979:9286405,34685068 -g1,14979:9950313,34685068 -h1,14979:10614221,34685068:0,0,0 -k1,14979:32583029,34685068:21968808 -g1,14979:32583029,34685068 -) -(1,14983:6630773,35500995:25952256,431045,79822 -(1,14981:6630773,35500995:0,0,0 -g1,14981:6630773,35500995 -g1,14981:6630773,35500995 -g1,14981:6303093,35500995 -(1,14981:6303093,35500995:0,0,0 -) -g1,14981:6630773,35500995 -) -g1,14983:7626635,35500995 -g1,14983:8954451,35500995 -h1,14983:11942036,35500995:0,0,0 -k1,14983:32583028,35500995:20640992 -g1,14983:32583028,35500995 -) -(1,14985:6630773,36316922:25952256,424439,106246 -(1,14984:6630773,36316922:0,0,0 -g1,14984:6630773,36316922 -g1,14984:6630773,36316922 -g1,14984:6303093,36316922 -(1,14984:6303093,36316922:0,0,0 -) -g1,14984:6630773,36316922 -) -k1,14985:6630773,36316922:0 -g1,14985:8954451,36316922 -g1,14985:9618359,36316922 -h1,14985:10282267,36316922:0,0,0 -k1,14985:32583029,36316922:22300762 -g1,14985:32583029,36316922 -) -(1,14989:6630773,37132849:25952256,424439,79822 -(1,14987:6630773,37132849:0,0,0 -g1,14987:6630773,37132849 -g1,14987:6630773,37132849 -g1,14987:6303093,37132849 -(1,14987:6303093,37132849:0,0,0 -) -g1,14987:6630773,37132849 -) -g1,14989:7626635,37132849 -g1,14989:8954451,37132849 -h1,14989:10946175,37132849:0,0,0 -k1,14989:32583029,37132849:21636854 -g1,14989:32583029,37132849 -) -] -) -g1,14990:32583029,37212671 -g1,14990:6630773,37212671 -g1,14990:6630773,37212671 -g1,14990:32583029,37212671 -g1,14990:32583029,37212671 -) -h1,14990:6630773,37409279:0,0,0 -(1,14994:6630773,38274359:25952256,513147,134348 -h1,14993:6630773,38274359:983040,0,0 -k1,14993:9117512,38274359:197566 -k1,14993:10446884,38274359:197565 -k1,14993:12346420,38274359:197566 -k1,14993:12958827,38274359:197564 -k1,14993:15115919,38274359:197566 -k1,14993:18187239,38274359:197566 -k1,14993:19489087,38274359:197566 -k1,14993:20434418,38274359:197565 -k1,14993:23406778,38274359:197566 -k1,14993:24255772,38274359:197566 -k1,14993:27294979,38274359:197566 -k1,14993:28683989,38274359:197565 -k1,14993:29629321,38274359:197566 -k1,14993:32583029,38274359:0 -) -(1,14994:6630773,39139439:25952256,513147,134348 -k1,14993:7446948,39139439:156883 -k1,14993:8927658,39139439:156883 -k1,14993:10275986,39139439:156883 -k1,14993:12914717,39139439:156883 -k1,14993:17592274,39139439:156883 -k1,14993:18768242,39139439:156883 -k1,14993:20231257,39139439:156882 -k1,14993:22200866,39139439:156883 -k1,14993:24345456,39139439:156883 -k1,14993:25189812,39139439:156883 -k1,14993:28008112,39139439:156883 -k1,14993:29732616,39139439:156883 -k1,14993:31387652,39139439:156883 -h1,14993:32583029,39139439:0,0,0 -k1,14993:32583029,39139439:0 -) -(1,14994:6630773,40004519:25952256,513147,7863 -g1,14993:7934284,40004519 -g1,14993:8881279,40004519 -g1,14993:12002758,40004519 -g1,14993:12888149,40004519 -k1,14994:32583028,40004519:17327064 -g1,14994:32583028,40004519 -) -v1,14996:6630773,40689374:0,393216,0 -(1,15001:6630773,41714912:25952256,1418754,196608 -g1,15001:6630773,41714912 -g1,15001:6630773,41714912 -g1,15001:6434165,41714912 -(1,15001:6434165,41714912:0,1418754,196608 -r1,15007:32779637,41714912:26345472,1615362,196608 -k1,15001:6434165,41714912:-26345472 -) -(1,15001:6434165,41714912:26345472,1418754,196608 -[1,15001:6630773,41714912:25952256,1222146,0 -(1,14998:6630773,40923811:25952256,431045,106246 -(1,14997:6630773,40923811:0,0,0 -g1,14997:6630773,40923811 -g1,14997:6630773,40923811 -g1,14997:6303093,40923811 -(1,14997:6303093,40923811:0,0,0 -) -g1,14997:6630773,40923811 -) -g1,14998:10282266,40923811 -g1,14998:11278128,40923811 -g1,14998:12937898,40923811 -g1,14998:13601806,40923811 -g1,14998:14265714,40923811 -g1,14998:14929622,40923811 -h1,14998:16589392,40923811:0,0,0 -k1,14998:32583029,40923811:15993637 -g1,14998:32583029,40923811 -) -(1,14999:6630773,41608666:25952256,431045,106246 -h1,14999:6630773,41608666:0,0,0 -g1,14999:7958589,41608666 -g1,14999:8954451,41608666 -g1,14999:13933760,41608666 -h1,14999:17253300,41608666:0,0,0 -k1,14999:32583029,41608666:15329729 -g1,14999:32583029,41608666 -) -] -) -g1,15001:32583029,41714912 -g1,15001:6630773,41714912 -g1,15001:6630773,41714912 -g1,15001:32583029,41714912 -g1,15001:32583029,41714912 -) -h1,15001:6630773,41911520:0,0,0 -(1,15005:6630773,42776600:25952256,513147,134348 -h1,15004:6630773,42776600:983040,0,0 -k1,15004:8409966,42776600:168318 -k1,15004:10270424,42776600:168318 -k1,15004:13769282,42776600:168318 -k1,15004:15180164,42776600:168319 -k1,15004:18819924,42776600:168318 -k1,15004:19647534,42776600:168318 -k1,15004:23800441,42776600:168318 -k1,15004:26286767,42776600:168318 -k1,15004:28732461,42776600:168318 -k1,15004:29256640,42776600:168319 -k1,15004:30339186,42776600:168318 -k1,15004:32020075,42776600:168318 -k1,15004:32583029,42776600:0 -) -(1,15005:6630773,43641680:25952256,513147,126483 -k1,15004:8319389,43641680:176045 -k1,15004:9304804,43641680:176045 -k1,15004:10499934,43641680:176045 -k1,15004:13569394,43641680:176045 -k1,15004:15045018,43641680:176045 -k1,15004:15888219,43641680:176045 -(1,15004:15888219,43641680:0,414482,115847 -r1,15007:16440949,43641680:552730,530329,115847 -k1,15004:15888219,43641680:-552730 -) -(1,15004:15888219,43641680:552730,414482,115847 -k1,15004:15888219,43641680:97232 -h1,15004:16437672,43641680:0,411205,112570 -) -k1,15004:16824088,43641680:176045 -k1,15004:17991693,43641680:176045 -k1,15004:19854635,43641680:176045 -k1,15004:20775169,43641680:176045 -k1,15004:22446746,43641680:176045 -k1,15004:23779501,43641680:176045 -k1,15004:25468117,43641680:176045 -k1,15004:27266178,43641680:176045 -k1,15004:28189989,43641680:176045 -k1,15004:30771861,43641680:176045 -k1,15004:31563944,43641680:176045 -k1,15004:32583029,43641680:0 -) -(1,15005:6630773,44506760:25952256,513147,134348 -g1,15004:7862850,44506760 -g1,15004:8721371,44506760 -g1,15004:10908307,44506760 -g1,15004:14154960,44506760 -g1,15004:15040351,44506760 -g1,15004:16010283,44506760 -g1,15004:19649497,44506760 -g1,15004:22021900,44506760 -g1,15004:22837167,44506760 -(1,15004:22837167,44506760:0,414482,115847 -r1,15007:23389897,44506760:552730,530329,115847 -k1,15004:22837167,44506760:-552730 -) -(1,15004:22837167,44506760:552730,414482,115847 -k1,15004:22837167,44506760:97232 -h1,15004:23386620,44506760:0,411205,112570 -) -g1,15004:23589126,44506760 -g1,15004:24319852,44506760 -g1,15004:28490563,44506760 -k1,15005:32583029,44506760:498472 -g1,15005:32583029,44506760 -) -] -(1,15007:32583029,45706769:0,0,0 -g1,15007:32583029,45706769 -) -) -] -(1,15007:6630773,47279633:25952256,0,0 -h1,15007:6630773,47279633:25952256,0,0 -) -] -(1,15007:4262630,4025873:0,0,0 -[1,15007:-473656,4025873:0,0,0 -(1,15007:-473656,-710413:0,0,0 -(1,15007:-473656,-710413:0,0,0 -g1,15007:-473656,-710413 -) -g1,15007:-473656,-710413 -) -] -) -] -!24599 -}241 -Input:2576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2577:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2578:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,15005:3078558,4812305:0,0,0 +(1,15005:3078558,49800853:0,16384,2228224 +g1,15005:29030814,49800853 +g1,15005:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15005:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15005:37855564,49800853:1179648,16384,0 +) +) +k1,15005:3078556,49800853:-34777008 +) +] +g1,15005:6630773,4812305 +k1,15005:19575446,4812305:11749296 +g1,15005:21198117,4812305 +g1,15005:21985204,4812305 +g1,15005:24539797,4812305 +g1,15005:25949476,4812305 +g1,15005:28728857,4812305 +g1,15005:29852144,4812305 +) +) +] +[1,15005:6630773,45706769:25952256,40108032,0 +(1,15005:6630773,45706769:25952256,40108032,0 +(1,15005:6630773,45706769:0,0,0 +g1,15005:6630773,45706769 +) +[1,15005:6630773,45706769:25952256,40108032,0 +v1,14956:6630773,6254097:0,393216,0 +(1,14956:6630773,14813040:25952256,8952159,196608 +g1,14956:6630773,14813040 +g1,14956:6630773,14813040 +g1,14956:6434165,14813040 +(1,14956:6434165,14813040:0,8952159,196608 +r1,15005:32779637,14813040:26345472,9148767,196608 +k1,14956:6434165,14813040:-26345472 +) +(1,14956:6434165,14813040:26345472,8952159,196608 +[1,14956:6630773,14813040:25952256,8755551,0 +(1,14955:6630773,6488534:25952256,431045,9908 +h1,14955:6630773,6488534:0,0,0 +g1,14955:7626635,6488534 +g1,14955:9950313,6488534 +g1,14955:10946175,6488534 +g1,14955:15593530,6488534 +h1,14955:16257438,6488534:0,0,0 +k1,14955:32583029,6488534:16325591 +g1,14955:32583029,6488534 +) +(1,14955:6630773,7173389:25952256,431045,106246 +h1,14955:6630773,7173389:0,0,0 +g1,14955:7626635,7173389 +g1,14955:11278128,7173389 +g1,14955:13601806,7173389 +g1,14955:14597668,7173389 +g1,14955:18581115,7173389 +h1,14955:19908931,7173389:0,0,0 +k1,14955:32583029,7173389:12674098 +g1,14955:32583029,7173389 +) +(1,14955:6630773,7858244:25952256,424439,9908 +h1,14955:6630773,7858244:0,0,0 +g1,14955:7626635,7858244 +g1,14955:10614220,7858244 +g1,14955:13601805,7858244 +g1,14955:15925483,7858244 +h1,14955:17585253,7858244:0,0,0 +k1,14955:32583029,7858244:14997776 +g1,14955:32583029,7858244 +) +(1,14955:6630773,8543099:25952256,431045,79822 +h1,14955:6630773,8543099:0,0,0 +g1,14955:7626635,8543099 +g1,14955:9618359,8543099 +g1,14955:10614221,8543099 +g1,14955:13601806,8543099 +g1,14955:16257438,8543099 +g1,14955:17917208,8543099 +g1,14955:18249162,8543099 +h1,14955:20572840,8543099:0,0,0 +k1,14955:32583029,8543099:12010189 +g1,14955:32583029,8543099 +) +(1,14955:6630773,9227954:25952256,398014,0 +h1,14955:6630773,9227954:0,0,0 +h1,14955:7294681,9227954:0,0,0 +k1,14955:32583029,9227954:25288348 +g1,14955:32583029,9227954 +) +(1,14955:6630773,9912809:25952256,424439,112852 +h1,14955:6630773,9912809:0,0,0 +g1,14955:7626635,9912809 +g1,14955:10282267,9912809 +h1,14955:13269852,9912809:0,0,0 +k1,14955:32583028,9912809:19313176 +g1,14955:32583028,9912809 +) +(1,14955:6630773,10597664:25952256,407923,106246 +h1,14955:6630773,10597664:0,0,0 +g1,14955:7626635,10597664 +g1,14955:7958589,10597664 +g1,14955:8290543,10597664 +g1,14955:9950313,10597664 +g1,14955:10282267,10597664 +g1,14955:10614221,10597664 +g1,14955:10946175,10597664 +g1,14955:11278129,10597664 +g1,14955:11942037,10597664 +g1,14955:12273991,10597664 +h1,14955:13601807,10597664:0,0,0 +k1,14955:32583029,10597664:18981222 +g1,14955:32583029,10597664 +) +(1,14955:6630773,11282519:25952256,424439,112852 +h1,14955:6630773,11282519:0,0,0 +g1,14955:7626635,11282519 +g1,14955:7958589,11282519 +g1,14955:8290543,11282519 +g1,14955:10614221,11282519 +g1,14955:10946175,11282519 +g1,14955:11278129,11282519 +g1,14955:11942037,11282519 +g1,14955:12273991,11282519 +h1,14955:12605945,11282519:0,0,0 +k1,14955:32583029,11282519:19977084 +g1,14955:32583029,11282519 +) +(1,14955:6630773,11967374:25952256,431045,112852 +h1,14955:6630773,11967374:0,0,0 +g1,14955:7626635,11967374 +g1,14955:7958589,11967374 +g1,14955:8290543,11967374 +g1,14955:10614221,11967374 +g1,14955:10946175,11967374 +g1,14955:11278129,11967374 +g1,14955:11942037,11967374 +g1,14955:12273991,11967374 +h1,14955:14929622,11967374:0,0,0 +k1,14955:32583030,11967374:17653408 +g1,14955:32583030,11967374 +) +(1,14955:6630773,12652229:25952256,431045,106246 +h1,14955:6630773,12652229:0,0,0 +g1,14955:7626635,12652229 +g1,14955:7958589,12652229 +g1,14955:8290543,12652229 +g1,14955:10946175,12652229 +g1,14955:11278129,12652229 +g1,14955:11942037,12652229 +g1,14955:12273991,12652229 +g1,14955:16257438,12652229 +g1,14955:16589392,12652229 +g1,14955:16921346,12652229 +g1,14955:18581116,12652229 +g1,14955:19245024,12652229 +h1,14955:20240886,12652229:0,0,0 +k1,14955:32583029,12652229:12342143 +g1,14955:32583029,12652229 +) +(1,14955:6630773,13337084:25952256,424439,8257 +h1,14955:6630773,13337084:0,0,0 +g1,14955:7626635,13337084 +g1,14955:7958589,13337084 +g1,14955:8290543,13337084 +g1,14955:11942036,13337084 +g1,14955:12273990,13337084 +h1,14955:13601806,13337084:0,0,0 +k1,14955:32583030,13337084:18981224 +g1,14955:32583030,13337084 +) +(1,14955:6630773,14021939:25952256,424439,106246 +h1,14955:6630773,14021939:0,0,0 +g1,14955:7626635,14021939 +g1,14955:7958589,14021939 +g1,14955:11942036,14021939 +g1,14955:12273990,14021939 +h1,14955:13933760,14021939:0,0,0 +k1,14955:32583028,14021939:18649268 +g1,14955:32583028,14021939 +) +(1,14955:6630773,14706794:25952256,424439,106246 +h1,14955:6630773,14706794:0,0,0 +g1,14955:7626635,14706794 +g1,14955:11942036,14706794 +g1,14955:12273990,14706794 +h1,14955:13933760,14706794:0,0,0 +k1,14955:32583028,14706794:18649268 +g1,14955:32583028,14706794 +) +] +) +g1,14956:32583029,14813040 +g1,14956:6630773,14813040 +g1,14956:6630773,14813040 +g1,14956:32583029,14813040 +g1,14956:32583029,14813040 +) +h1,14956:6630773,15009648:0,0,0 +v1,14960:6630773,15874728:0,393216,0 +(1,14961:6630773,17235333:25952256,1753821,0 +g1,14961:6630773,17235333 +g1,14961:6237557,17235333 +r1,15005:6368629,17235333:131072,1753821,0 +g1,14961:6567858,17235333 +g1,14961:6764466,17235333 +[1,14961:6764466,17235333:25818563,1753821,0 +(1,14961:6764466,16235905:25818563,754393,260573 +(1,14960:6764466,16235905:0,754393,260573 +r1,15005:7856192,16235905:1091726,1014966,260573 +k1,14960:6764466,16235905:-1091726 +) +(1,14960:6764466,16235905:1091726,754393,260573 +) +k1,14960:8063612,16235905:207420 +k1,14960:8391292,16235905:327680 +k1,14960:11388580,16235905:207420 +(1,14960:11388580,16235905:0,452978,115847 +r1,15005:13857117,16235905:2468537,568825,115847 +k1,14960:11388580,16235905:-2468537 +) +(1,14960:11388580,16235905:2468537,452978,115847 +k1,14960:11388580,16235905:3277 +h1,14960:13853840,16235905:0,411205,112570 +) +k1,14960:14064537,16235905:207420 +k1,14960:15376239,16235905:207420 +k1,14960:16331425,16235905:207420 +k1,14960:18052071,16235905:207420 +k1,14960:18910919,16235905:207420 +k1,14960:21878715,16235905:207420 +k1,14960:23258574,16235905:207420 +k1,14960:24148879,16235905:207420 +k1,14960:26006496,16235905:207420 +k1,14960:27821514,16235905:207420 +k1,14960:29220379,16235905:207420 +k1,14960:30499968,16235905:207420 +k1,14960:31773659,16235905:207420 +k1,14960:32583029,16235905:0 +) +(1,14961:6764466,17100985:25818563,505283,134348 +g1,14960:7319555,17100985 +g1,14960:9391803,17100985 +k1,14961:32583030,17100985:21982088 +g1,14961:32583030,17100985 +) +] +g1,14961:32583029,17235333 +) +h1,14961:6630773,17235333:0,0,0 +v1,14964:6630773,18100413:0,393216,0 +(1,14965:6630773,22860594:25952256,5153397,0 +g1,14965:6630773,22860594 +g1,14965:6237557,22860594 +r1,15005:6368629,22860594:131072,5153397,0 +g1,14965:6567858,22860594 +g1,14965:6764466,22860594 +[1,14965:6764466,22860594:25818563,5153397,0 +(1,14965:6764466,18408711:25818563,701514,196608 +(1,14964:6764466,18408711:0,701514,196608 +r1,15005:7761522,18408711:997056,898122,196608 +k1,14964:6764466,18408711:-997056 +) +(1,14964:6764466,18408711:997056,701514,196608 +) +k1,14964:7987360,18408711:225838 +k1,14964:8315040,18408711:327680 +k1,14964:10797282,18408711:225837 +k1,14964:13508901,18408711:225838 +k1,14964:17396891,18408711:225838 +k1,14964:18274157,18408711:225838 +k1,14964:19889357,18408711:225837 +k1,14964:22843459,18408711:225838 +k1,14964:24954768,18408711:225838 +k1,14964:25995874,18408711:225838 +k1,14964:28651786,18408711:225837 +k1,14964:31923737,18408711:225838 +k1,14964:32583029,18408711:0 +) +(1,14965:6764466,19273791:25818563,513147,134348 +k1,14964:9259516,19273791:220295 +k1,14964:13217328,19273791:220294 +k1,14964:14629068,19273791:220295 +k1,14964:16622111,19273791:220294 +k1,14964:17833966,19273791:220295 +k1,14964:19908929,19273791:220294 +k1,14964:20938594,19273791:220295 +k1,14964:22177973,19273791:220294 +k1,14964:23490753,19273791:220295 +k1,14964:24370339,19273791:220294 +k1,14964:26840485,19273791:220295 +k1,14964:27712207,19273791:220294 +k1,14964:30601783,19273791:220295 +k1,14964:31841162,19273791:220294 +k1,14965:32583029,19273791:0 +) +(1,14965:6764466,20138871:25818563,505283,134348 +k1,14964:9511233,20138871:178411 +k1,14964:10881088,20138871:178410 +k1,14964:12526195,20138871:178411 +k1,14964:15532484,20138871:178410 +k1,14964:18002034,20138871:178411 +k1,14964:19819500,20138871:178411 +k1,14964:20989470,20138871:178410 +k1,14964:23729028,20138871:178411 +k1,14964:26225446,20138871:178410 +k1,14964:27897423,20138871:178411 +k1,14964:28761995,20138871:178410 +k1,14964:30471306,20138871:178390 +k1,14964:31841162,20138871:178411 +k1,14965:32583029,20138871:0 +) +(1,14965:6764466,21003951:25818563,513147,126483 +k1,14964:8524467,21003951:174030 +k1,14964:11483122,21003951:174030 +k1,14964:12889229,21003951:174030 +k1,14964:14879262,21003951:174030 +k1,14964:16854221,21003951:174030 +k1,14964:18219697,21003951:174031 +k1,14964:21650211,21003951:174030 +k1,14964:23213604,21003951:174030 +k1,14964:25942227,21003951:174030 +k1,14964:27880461,21003951:174005 +k1,14964:30729671,21003951:174030 +k1,14964:32583029,21003951:0 +) +(1,14965:6764466,21869031:25818563,513147,134348 +k1,14964:8867254,21869031:250085 +k1,14964:11901965,21869031:250086 +k1,14964:13143610,21869031:250085 +k1,14964:17595208,21869031:250085 +k1,14964:18461331,21869031:250085 +k1,14964:22205141,21869031:250086 +k1,14964:25527554,21869031:250085 +k1,14964:28688093,21869031:250085 +k1,14964:30129624,21869031:250086 +k1,14964:31410590,21869031:250085 +k1,14965:32583029,21869031:0 +) +(1,14965:6764466,22734111:25818563,513147,126483 +g1,14964:8263274,22734111 +g1,14964:9481588,22734111 +g1,14964:11507305,22734111 +g1,14964:12365826,22734111 +g1,14964:13768296,22734111 +k1,14965:32583028,22734111:17180264 +g1,14965:32583028,22734111 +) +] +g1,14965:32583029,22860594 +) +h1,14965:6630773,22860594:0,0,0 +(1,14968:6630773,25691754:25952256,32768,229376 +(1,14968:6630773,25691754:0,32768,229376 +(1,14968:6630773,25691754:5505024,32768,229376 +r1,15005:12135797,25691754:5505024,262144,229376 +) +k1,14968:6630773,25691754:-5505024 +) +(1,14968:6630773,25691754:25952256,32768,0 +r1,15005:32583029,25691754:25952256,32768,0 +) +) +(1,14968:6630773,27323606:25952256,606339,14155 +(1,14968:6630773,27323606:2464678,582746,14155 +g1,14968:6630773,27323606 +g1,14968:9095451,27323606 +) +g1,14968:11747300,27323606 +k1,14968:32583028,27323606:17148148 +g1,14968:32583028,27323606 +) +(1,14971:6630773,28581902:25952256,513147,134348 +k1,14970:8726626,28581902:164507 +k1,14970:11938556,28581902:164506 +k1,14970:13596629,28581902:164507 +k1,14970:14447298,28581902:164507 +(1,14970:14447298,28581902:0,414482,115847 +r1,15005:15703452,28581902:1256154,530329,115847 +k1,14970:14447298,28581902:-1256154 +) +(1,14970:14447298,28581902:1256154,414482,115847 +k1,14970:14447298,28581902:97232 +h1,14970:15700175,28581902:0,411205,112570 +) +k1,14970:15867959,28581902:164507 +k1,14970:17024025,28581902:164506 +k1,14970:19245052,28581902:164507 +k1,14970:20922785,28581902:164507 +k1,14970:21703330,28581902:164507 +k1,14970:22456349,28581902:164506 +k1,14970:24087552,28581902:164507 +k1,14970:24868097,28581902:164507 +k1,14970:27020311,28581902:164507 +k1,14970:29119440,28581902:164506 +k1,14970:29970109,28581902:164507 +k1,14971:32583029,28581902:0 +) +(1,14971:6630773,29446982:25952256,513147,134348 +k1,14970:8026783,29446982:197356 +k1,14970:8840177,29446982:197356 +k1,14970:11792012,29446982:197357 +k1,14970:14598356,29446982:197356 +k1,14970:15455004,29446982:197356 +k1,14970:16855601,29446982:197356 +k1,14970:19470580,29446982:197356 +k1,14970:20859382,29446982:197357 +k1,14970:21672776,29446982:197356 +k1,14970:24394579,29446982:197356 +k1,14970:26289973,29446982:197356 +k1,14970:28222722,29446982:197356 +k1,14970:29854007,29446982:197357 +k1,14970:30466204,29446982:197354 +(1,14970:30466204,29446982:0,452978,115847 +r1,15005:32583029,29446982:2116825,568825,115847 +k1,14970:30466204,29446982:-2116825 +) +(1,14970:30466204,29446982:2116825,452978,115847 +k1,14970:30466204,29446982:3277 +h1,14970:32579752,29446982:0,411205,112570 +) +k1,14970:32583029,29446982:0 +) +(1,14971:6630773,30312062:25952256,505283,7863 +k1,14971:32583030,30312062:23115204 +g1,14971:32583030,30312062 +) +(1,14973:6630773,31177142:25952256,513147,134348 +h1,14972:6630773,31177142:983040,0,0 +k1,14972:8188921,31177142:160265 +k1,14972:8880721,31177142:160303 +k1,14972:12321757,31177142:160304 +k1,14972:13673506,31177142:160304 +k1,14972:16134778,31177142:160303 +k1,14972:16911120,31177142:160304 +k1,14972:18401804,31177142:160303 +k1,14972:19020205,31177142:160304 +k1,14972:21016172,31177142:160304 +k1,14972:23518732,31177142:160303 +k1,14972:26142534,31177142:160304 +k1,14972:26954265,31177142:160303 +k1,14972:27885272,31177142:160304 +k1,14972:30033937,31177142:160303 +k1,14972:31478747,31177142:160304 +k1,14972:32583029,31177142:0 +) +(1,14973:6630773,32042222:25952256,513147,134348 +k1,14972:7651431,32042222:272892 +k1,14972:11188671,32042222:272892 +k1,14972:12112990,32042222:272891 +k1,14972:14129795,32042222:272892 +k1,14972:16895021,32042222:272892 +k1,14972:18561864,32042222:272892 +k1,14972:20536726,32042222:272892 +k1,14972:23885877,32042222:272891 +k1,14972:27505037,32042222:272892 +k1,14972:29709275,32042222:272892 +k1,14972:32583029,32042222:0 +) +(1,14973:6630773,32907302:25952256,513147,134348 +k1,14972:7877249,32907302:254916 +k1,14972:10421994,32907302:254917 +k1,14972:11336202,32907302:254916 +k1,14972:13146287,32907302:254916 +(1,14972:13146287,32907302:0,459977,115847 +r1,15005:15614824,32907302:2468537,575824,115847 +k1,14972:13146287,32907302:-2468537 +) +(1,14972:13146287,32907302:2468537,459977,115847 +k1,14972:13146287,32907302:3277 +h1,14972:15611547,32907302:0,411205,112570 +) +k1,14972:15869741,32907302:254917 +k1,14972:17316102,32907302:254916 +k1,14972:19353597,32907302:254916 +(1,14972:19353597,32907302:0,452978,115847 +r1,15005:20766998,32907302:1413401,568825,115847 +k1,14972:19353597,32907302:-1413401 +) +(1,14972:19353597,32907302:1413401,452978,115847 +k1,14972:19353597,32907302:3277 +h1,14972:20763721,32907302:0,411205,112570 +) +k1,14972:21021914,32907302:254916 +k1,14972:22468276,32907302:254917 +k1,14972:23827474,32907302:254916 +k1,14972:24830156,32907302:254916 +k1,14972:29098498,32907302:254917 +k1,14972:30544859,32907302:254916 +k1,14972:32583029,32907302:0 +) +(1,14973:6630773,33772382:25952256,513147,134348 +g1,14972:9598243,33772382 +g1,14972:10448900,33772382 +g1,14972:12937957,33772382 +g1,14972:13796478,33772382 +g1,14972:15697677,33772382 +g1,14972:16311749,33772382 +k1,14973:32583029,33772382:13986040 +g1,14973:32583029,33772382 +) +v1,14975:6630773,34457237:0,393216,0 +(1,14988:6630773,37212671:25952256,3148650,196608 +g1,14988:6630773,37212671 +g1,14988:6630773,37212671 +g1,14988:6434165,37212671 +(1,14988:6434165,37212671:0,3148650,196608 +r1,15005:32779637,37212671:26345472,3345258,196608 +k1,14988:6434165,37212671:-26345472 +) +(1,14988:6434165,37212671:26345472,3148650,196608 +[1,14988:6630773,37212671:25952256,2952042,0 +(1,14977:6630773,34685068:25952256,424439,106246 +(1,14976:6630773,34685068:0,0,0 +g1,14976:6630773,34685068 +g1,14976:6630773,34685068 +g1,14976:6303093,34685068 +(1,14976:6303093,34685068:0,0,0 +) +g1,14976:6630773,34685068 +) +k1,14977:6630773,34685068:0 +g1,14977:9286405,34685068 +g1,14977:9950313,34685068 +h1,14977:10614221,34685068:0,0,0 +k1,14977:32583029,34685068:21968808 +g1,14977:32583029,34685068 +) +(1,14981:6630773,35500995:25952256,431045,79822 +(1,14979:6630773,35500995:0,0,0 +g1,14979:6630773,35500995 +g1,14979:6630773,35500995 +g1,14979:6303093,35500995 +(1,14979:6303093,35500995:0,0,0 +) +g1,14979:6630773,35500995 +) +g1,14981:7626635,35500995 +g1,14981:8954451,35500995 +h1,14981:11942036,35500995:0,0,0 +k1,14981:32583028,35500995:20640992 +g1,14981:32583028,35500995 +) +(1,14983:6630773,36316922:25952256,424439,106246 +(1,14982:6630773,36316922:0,0,0 +g1,14982:6630773,36316922 +g1,14982:6630773,36316922 +g1,14982:6303093,36316922 +(1,14982:6303093,36316922:0,0,0 +) +g1,14982:6630773,36316922 +) +k1,14983:6630773,36316922:0 +g1,14983:8954451,36316922 +g1,14983:9618359,36316922 +h1,14983:10282267,36316922:0,0,0 +k1,14983:32583029,36316922:22300762 +g1,14983:32583029,36316922 +) +(1,14987:6630773,37132849:25952256,424439,79822 +(1,14985:6630773,37132849:0,0,0 +g1,14985:6630773,37132849 +g1,14985:6630773,37132849 +g1,14985:6303093,37132849 +(1,14985:6303093,37132849:0,0,0 +) +g1,14985:6630773,37132849 +) +g1,14987:7626635,37132849 +g1,14987:8954451,37132849 +h1,14987:10946175,37132849:0,0,0 +k1,14987:32583029,37132849:21636854 +g1,14987:32583029,37132849 +) +] +) +g1,14988:32583029,37212671 +g1,14988:6630773,37212671 +g1,14988:6630773,37212671 +g1,14988:32583029,37212671 +g1,14988:32583029,37212671 +) +h1,14988:6630773,37409279:0,0,0 +(1,14992:6630773,38274359:25952256,513147,134348 +h1,14991:6630773,38274359:983040,0,0 +k1,14991:9117512,38274359:197566 +k1,14991:10446884,38274359:197565 +k1,14991:12346420,38274359:197566 +k1,14991:12958827,38274359:197564 +k1,14991:15115919,38274359:197566 +k1,14991:18187239,38274359:197566 +k1,14991:19489087,38274359:197566 +k1,14991:20434418,38274359:197565 +k1,14991:23406778,38274359:197566 +k1,14991:24255772,38274359:197566 +k1,14991:27294979,38274359:197566 +k1,14991:28683989,38274359:197565 +k1,14991:29629321,38274359:197566 +k1,14991:32583029,38274359:0 +) +(1,14992:6630773,39139439:25952256,513147,134348 +k1,14991:7446948,39139439:156883 +k1,14991:8927658,39139439:156883 +k1,14991:10275986,39139439:156883 +k1,14991:12914717,39139439:156883 +k1,14991:17592274,39139439:156883 +k1,14991:18768242,39139439:156883 +k1,14991:20231257,39139439:156882 +k1,14991:22200866,39139439:156883 +k1,14991:24345456,39139439:156883 +k1,14991:25189812,39139439:156883 +k1,14991:28008112,39139439:156883 +k1,14991:29732616,39139439:156883 +k1,14991:31387652,39139439:156883 +h1,14991:32583029,39139439:0,0,0 +k1,14991:32583029,39139439:0 +) +(1,14992:6630773,40004519:25952256,513147,7863 +g1,14991:7934284,40004519 +g1,14991:8881279,40004519 +g1,14991:12002758,40004519 +g1,14991:12888149,40004519 +k1,14992:32583028,40004519:17327064 +g1,14992:32583028,40004519 +) +v1,14994:6630773,40689374:0,393216,0 +(1,14999:6630773,41714912:25952256,1418754,196608 +g1,14999:6630773,41714912 +g1,14999:6630773,41714912 +g1,14999:6434165,41714912 +(1,14999:6434165,41714912:0,1418754,196608 +r1,15005:32779637,41714912:26345472,1615362,196608 +k1,14999:6434165,41714912:-26345472 +) +(1,14999:6434165,41714912:26345472,1418754,196608 +[1,14999:6630773,41714912:25952256,1222146,0 +(1,14996:6630773,40923811:25952256,431045,106246 +(1,14995:6630773,40923811:0,0,0 +g1,14995:6630773,40923811 +g1,14995:6630773,40923811 +g1,14995:6303093,40923811 +(1,14995:6303093,40923811:0,0,0 +) +g1,14995:6630773,40923811 +) +g1,14996:10282266,40923811 +g1,14996:11278128,40923811 +g1,14996:12937898,40923811 +g1,14996:13601806,40923811 +g1,14996:14265714,40923811 +g1,14996:14929622,40923811 +h1,14996:16589392,40923811:0,0,0 +k1,14996:32583029,40923811:15993637 +g1,14996:32583029,40923811 +) +(1,14997:6630773,41608666:25952256,431045,106246 +h1,14997:6630773,41608666:0,0,0 +g1,14997:7958589,41608666 +g1,14997:8954451,41608666 +g1,14997:13933760,41608666 +h1,14997:17253300,41608666:0,0,0 +k1,14997:32583029,41608666:15329729 +g1,14997:32583029,41608666 +) +] +) +g1,14999:32583029,41714912 +g1,14999:6630773,41714912 +g1,14999:6630773,41714912 +g1,14999:32583029,41714912 +g1,14999:32583029,41714912 +) +h1,14999:6630773,41911520:0,0,0 +(1,15003:6630773,42776600:25952256,513147,134348 +h1,15002:6630773,42776600:983040,0,0 +k1,15002:8409966,42776600:168318 +k1,15002:10270424,42776600:168318 +k1,15002:13769282,42776600:168318 +k1,15002:15180164,42776600:168319 +k1,15002:18819924,42776600:168318 +k1,15002:19647534,42776600:168318 +k1,15002:23800441,42776600:168318 +k1,15002:26286767,42776600:168318 +k1,15002:28732461,42776600:168318 +k1,15002:29256640,42776600:168319 +k1,15002:30339186,42776600:168318 +k1,15002:32020075,42776600:168318 +k1,15002:32583029,42776600:0 +) +(1,15003:6630773,43641680:25952256,513147,126483 +k1,15002:8319389,43641680:176045 +k1,15002:9304804,43641680:176045 +k1,15002:10499934,43641680:176045 +k1,15002:13569394,43641680:176045 +k1,15002:15045018,43641680:176045 +k1,15002:15888219,43641680:176045 +(1,15002:15888219,43641680:0,414482,115847 +r1,15005:16440949,43641680:552730,530329,115847 +k1,15002:15888219,43641680:-552730 +) +(1,15002:15888219,43641680:552730,414482,115847 +k1,15002:15888219,43641680:97232 +h1,15002:16437672,43641680:0,411205,112570 +) +k1,15002:16824088,43641680:176045 +k1,15002:17991693,43641680:176045 +k1,15002:19854635,43641680:176045 +k1,15002:20775169,43641680:176045 +k1,15002:22446746,43641680:176045 +k1,15002:23779501,43641680:176045 +k1,15002:25468117,43641680:176045 +k1,15002:27266178,43641680:176045 +k1,15002:28189989,43641680:176045 +k1,15002:30771861,43641680:176045 +k1,15002:31563944,43641680:176045 +k1,15002:32583029,43641680:0 +) +(1,15003:6630773,44506760:25952256,513147,134348 +g1,15002:7862850,44506760 +g1,15002:8721371,44506760 +g1,15002:10908307,44506760 +g1,15002:14154960,44506760 +g1,15002:15040351,44506760 +g1,15002:16010283,44506760 +g1,15002:19649497,44506760 +g1,15002:22021900,44506760 +g1,15002:22837167,44506760 +(1,15002:22837167,44506760:0,414482,115847 +r1,15005:23389897,44506760:552730,530329,115847 +k1,15002:22837167,44506760:-552730 +) +(1,15002:22837167,44506760:552730,414482,115847 +k1,15002:22837167,44506760:97232 +h1,15002:23386620,44506760:0,411205,112570 +) +g1,15002:23589126,44506760 +g1,15002:24319852,44506760 +g1,15002:28490563,44506760 +k1,15003:32583029,44506760:498472 +g1,15003:32583029,44506760 +) +] +(1,15005:32583029,45706769:0,0,0 +g1,15005:32583029,45706769 +) +) +] +(1,15005:6630773,47279633:25952256,0,0 +h1,15005:6630773,47279633:25952256,0,0 +) +] +(1,15005:4262630,4025873:0,0,0 +[1,15005:-473656,4025873:0,0,0 +(1,15005:-473656,-710413:0,0,0 +(1,15005:-473656,-710413:0,0,0 +g1,15005:-473656,-710413 +) +g1,15005:-473656,-710413 +) +] +) +] +!24626 +}242 Input:2579:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2580:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -265136,3183 +265333,3184 @@ Input:2590:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2591:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{242 -[1,15165:4262630,47279633:28320399,43253760,0 -(1,15165:4262630,4025873:0,0,0 -[1,15165:-473656,4025873:0,0,0 -(1,15165:-473656,-710413:0,0,0 -(1,15165:-473656,-644877:0,0,0 -k1,15165:-473656,-644877:-65536 +{243 +[1,15163:4262630,47279633:28320399,43253760,0 +(1,15163:4262630,4025873:0,0,0 +[1,15163:-473656,4025873:0,0,0 +(1,15163:-473656,-710413:0,0,0 +(1,15163:-473656,-644877:0,0,0 +k1,15163:-473656,-644877:-65536 ) -(1,15165:-473656,4736287:0,0,0 -k1,15165:-473656,4736287:5209943 +(1,15163:-473656,4736287:0,0,0 +k1,15163:-473656,4736287:5209943 ) -g1,15165:-473656,-710413 +g1,15163:-473656,-710413 ) ] ) -[1,15165:6630773,47279633:25952256,43253760,0 -[1,15165:6630773,4812305:25952256,786432,0 -(1,15165:6630773,4812305:25952256,505283,7863 -(1,15165:6630773,4812305:25952256,505283,7863 -g1,15165:3078558,4812305 -[1,15165:3078558,4812305:0,0,0 -(1,15165:3078558,2439708:0,1703936,0 -k1,15165:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15165:2537886,2439708:1179648,16384,0 +[1,15163:6630773,47279633:25952256,43253760,0 +[1,15163:6630773,4812305:25952256,786432,0 +(1,15163:6630773,4812305:25952256,505283,7863 +(1,15163:6630773,4812305:25952256,505283,7863 +g1,15163:3078558,4812305 +[1,15163:3078558,4812305:0,0,0 +(1,15163:3078558,2439708:0,1703936,0 +k1,15163:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15163:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15165:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15163:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15165:3078558,4812305:0,0,0 -(1,15165:3078558,2439708:0,1703936,0 -g1,15165:29030814,2439708 -g1,15165:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15165:36151628,1915420:16384,1179648,0 +[1,15163:3078558,4812305:0,0,0 +(1,15163:3078558,2439708:0,1703936,0 +g1,15163:29030814,2439708 +g1,15163:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15163:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15165:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15163:37855564,2439708:1179648,16384,0 ) ) -k1,15165:3078556,2439708:-34777008 +k1,15163:3078556,2439708:-34777008 ) ] -[1,15165:3078558,4812305:0,0,0 -(1,15165:3078558,49800853:0,16384,2228224 -k1,15165:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15165:2537886,49800853:1179648,16384,0 +[1,15163:3078558,4812305:0,0,0 +(1,15163:3078558,49800853:0,16384,2228224 +k1,15163:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15163:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15165:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15163:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15165:3078558,4812305:0,0,0 -(1,15165:3078558,49800853:0,16384,2228224 -g1,15165:29030814,49800853 -g1,15165:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15165:36151628,51504789:16384,1179648,0 +[1,15163:3078558,4812305:0,0,0 +(1,15163:3078558,49800853:0,16384,2228224 +g1,15163:29030814,49800853 +g1,15163:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15163:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15165:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15163:37855564,49800853:1179648,16384,0 ) ) -k1,15165:3078556,49800853:-34777008 +k1,15163:3078556,49800853:-34777008 ) ] -g1,15165:6630773,4812305 -g1,15165:6630773,4812305 -g1,15165:8691224,4812305 -g1,15165:11834330,4812305 -k1,15165:31387652,4812305:19553322 +g1,15163:6630773,4812305 +g1,15163:6630773,4812305 +g1,15163:8691224,4812305 +g1,15163:11834330,4812305 +k1,15163:31387652,4812305:19553322 ) ) ] -[1,15165:6630773,45706769:25952256,40108032,0 -(1,15165:6630773,45706769:25952256,40108032,0 -(1,15165:6630773,45706769:0,0,0 -g1,15165:6630773,45706769 +[1,15163:6630773,45706769:25952256,40108032,0 +(1,15163:6630773,45706769:25952256,40108032,0 +(1,15163:6630773,45706769:0,0,0 +g1,15163:6630773,45706769 ) -[1,15165:6630773,45706769:25952256,40108032,0 -v1,15007:6630773,6254097:0,393216,0 -(1,15026:6630773,10641385:25952256,4780504,196608 -g1,15026:6630773,10641385 -g1,15026:6630773,10641385 -g1,15026:6434165,10641385 -(1,15026:6434165,10641385:0,4780504,196608 -r1,15165:32779637,10641385:26345472,4977112,196608 -k1,15026:6434165,10641385:-26345472 +[1,15163:6630773,45706769:25952256,40108032,0 +v1,15005:6630773,6254097:0,393216,0 +(1,15024:6630773,10641385:25952256,4780504,196608 +g1,15024:6630773,10641385 +g1,15024:6630773,10641385 +g1,15024:6434165,10641385 +(1,15024:6434165,10641385:0,4780504,196608 +r1,15163:32779637,10641385:26345472,4977112,196608 +k1,15024:6434165,10641385:-26345472 ) -(1,15026:6434165,10641385:26345472,4780504,196608 -[1,15026:6630773,10641385:25952256,4583896,0 -(1,15009:6630773,6481928:25952256,424439,106246 -(1,15008:6630773,6481928:0,0,0 -g1,15008:6630773,6481928 -g1,15008:6630773,6481928 -g1,15008:6303093,6481928 -(1,15008:6303093,6481928:0,0,0 +(1,15024:6434165,10641385:26345472,4780504,196608 +[1,15024:6630773,10641385:25952256,4583896,0 +(1,15007:6630773,6481928:25952256,424439,106246 +(1,15006:6630773,6481928:0,0,0 +g1,15006:6630773,6481928 +g1,15006:6630773,6481928 +g1,15006:6303093,6481928 +(1,15006:6303093,6481928:0,0,0 ) -g1,15008:6630773,6481928 +g1,15006:6630773,6481928 ) -k1,15009:6630773,6481928:0 -g1,15009:9286405,6481928 -g1,15009:9950313,6481928 -g1,15009:10614221,6481928 -h1,15009:11278129,6481928:0,0,0 -k1,15009:32583029,6481928:21304900 -g1,15009:32583029,6481928 -) -(1,15013:6630773,7297855:25952256,431045,79822 -(1,15011:6630773,7297855:0,0,0 -g1,15011:6630773,7297855 -g1,15011:6630773,7297855 -g1,15011:6303093,7297855 -(1,15011:6303093,7297855:0,0,0 -) -g1,15011:6630773,7297855 -) -g1,15013:7626635,7297855 -g1,15013:8954451,7297855 -h1,15013:11942036,7297855:0,0,0 -k1,15013:32583028,7297855:20640992 -g1,15013:32583028,7297855 -) -(1,15015:6630773,8113782:25952256,424439,106246 -(1,15014:6630773,8113782:0,0,0 -g1,15014:6630773,8113782 -g1,15014:6630773,8113782 -g1,15014:6303093,8113782 -(1,15014:6303093,8113782:0,0,0 -) -g1,15014:6630773,8113782 -) -k1,15015:6630773,8113782:0 -g1,15015:8954451,8113782 -g1,15015:9618359,8113782 -g1,15015:10282267,8113782 -h1,15015:10946175,8113782:0,0,0 -k1,15015:32583029,8113782:21636854 -g1,15015:32583029,8113782 -) -(1,15019:6630773,8929709:25952256,424439,79822 -(1,15017:6630773,8929709:0,0,0 -g1,15017:6630773,8929709 -g1,15017:6630773,8929709 -g1,15017:6303093,8929709 -(1,15017:6303093,8929709:0,0,0 -) -g1,15017:6630773,8929709 -) -g1,15019:7626635,8929709 -g1,15019:8954451,8929709 -h1,15019:10946175,8929709:0,0,0 -k1,15019:32583029,8929709:21636854 -g1,15019:32583029,8929709 -) -(1,15021:6630773,9745636:25952256,424439,106246 -(1,15020:6630773,9745636:0,0,0 -g1,15020:6630773,9745636 -g1,15020:6630773,9745636 -g1,15020:6303093,9745636 -(1,15020:6303093,9745636:0,0,0 -) -g1,15020:6630773,9745636 -) -k1,15021:6630773,9745636:0 -g1,15021:12273990,9745636 -g1,15021:12937898,9745636 -g1,15021:13601806,9745636 -h1,15021:14265714,9745636:0,0,0 -k1,15021:32583030,9745636:18317316 -g1,15021:32583030,9745636 -) -(1,15025:6630773,10561563:25952256,424439,79822 -(1,15023:6630773,10561563:0,0,0 -g1,15023:6630773,10561563 -g1,15023:6630773,10561563 -g1,15023:6303093,10561563 -(1,15023:6303093,10561563:0,0,0 -) -g1,15023:6630773,10561563 -) -g1,15025:7626635,10561563 -g1,15025:8954451,10561563 -h1,15025:10614221,10561563:0,0,0 -k1,15025:32583029,10561563:21968808 -g1,15025:32583029,10561563 -) -] -) -g1,15026:32583029,10641385 -g1,15026:6630773,10641385 -g1,15026:6630773,10641385 -g1,15026:32583029,10641385 -g1,15026:32583029,10641385 -) -h1,15026:6630773,10837993:0,0,0 -v1,15030:6630773,11703073:0,393216,0 -(1,15165:6630773,43224541:25952256,31914684,0 -g1,15165:6630773,43224541 -g1,15165:6237557,43224541 -r1,15165:6368629,43224541:131072,31914684,0 -g1,15165:6567858,43224541 -g1,15165:6764466,43224541 -[1,15165:6764466,43224541:25818563,31914684,0 -(1,15031:6764466,12011371:25818563,701514,196608 -(1,15030:6764466,12011371:0,701514,196608 -r1,15165:7761522,12011371:997056,898122,196608 -k1,15030:6764466,12011371:-997056 -) -(1,15030:6764466,12011371:997056,701514,196608 -) -k1,15030:7959623,12011371:198101 -k1,15030:8287303,12011371:327680 -k1,15030:10202447,12011371:198101 -k1,15030:12518016,12011371:198101 -k1,15030:13383273,12011371:198101 -k1,15030:13996216,12011371:198100 -k1,15030:17068070,12011371:198100 -k1,15030:18370453,12011371:198101 -k1,15030:19316320,12011371:198101 -k1,15030:22723719,12011371:198101 -k1,15030:23537858,12011371:198101 -k1,15030:26742095,12011371:198101 -k1,15030:29275244,12011371:198101 -k1,15030:30823387,12011371:198101 -k1,15030:32583029,12011371:0 -) -(1,15031:6764466,12876451:25818563,513147,134348 -k1,15030:7622823,12876451:199065 -k1,15030:11691135,12876451:199066 -k1,15030:12881760,12876451:199065 -k1,15030:15710786,12876451:199066 -k1,15030:16857502,12876451:199065 -k1,15030:20103992,12876451:199066 -k1,15030:21120946,12876451:199065 -k1,15030:22713963,12876451:199066 -k1,15030:24614998,12876451:199065 -k1,15030:27220546,12876451:199066 -k1,15030:29425668,12876451:199065 -k1,15030:31914562,12876451:199066 -k1,15030:32583029,12876451:0 -) -(1,15031:6764466,13741531:25818563,513147,134348 -k1,15030:9271639,13741531:216690 -k1,15030:10147621,13741531:216690 -k1,15030:12377577,13741531:216690 -k1,15030:14014432,13741531:216690 -k1,15030:15222682,13741531:216690 -k1,15030:16979468,13741531:216690 -k1,15030:18387603,13741531:216690 -k1,15030:19708575,13741531:216690 -k1,15030:20673031,13741531:216690 -k1,15030:23239842,13741531:216690 -k1,15030:24850483,13741531:216690 -k1,15030:26086258,13741531:216690 -k1,15030:27858117,13741531:216690 -k1,15030:31955194,13741531:216690 -k1,15030:32583029,13741531:0 -) -(1,15031:6764466,14606611:25818563,513147,134348 -k1,15030:7935292,14606611:151741 -k1,15030:9454114,14606611:151741 -k1,15030:10265147,14606611:151741 -k1,15030:13290642,14606611:151741 -k1,15030:15097167,14606611:151741 -k1,15030:15780405,14606611:151741 -k1,15030:16702850,14606611:151742 -k1,15030:20081584,14606611:151741 -k1,15030:21662665,14606611:151741 -k1,15030:22473698,14606611:151741 -k1,15030:26068045,14606611:151741 -k1,15030:26575646,14606611:151741 -k1,15030:29270839,14606611:151741 -k1,15030:32583029,14606611:0 -) -(1,15031:6764466,15471691:25818563,505283,126483 -g1,15030:7319555,15471691 -g1,15030:9506491,15471691 -g1,15030:11099671,15471691 -g1,15030:12108270,15471691 -g1,15030:16073198,15471691 -g1,15030:18115299,15471691 -g1,15030:19123898,15471691 -g1,15030:20111525,15471691 -k1,15031:32583029,15471691:11409166 -g1,15031:32583029,15471691 -) -(1,15033:6764466,16336771:25818563,513147,134348 -h1,15032:6764466,16336771:983040,0,0 -k1,15032:8867624,16336771:217687 -k1,15032:11691677,16336771:217686 -k1,15032:13868890,16336771:217687 -k1,15032:14745868,16336771:217686 -k1,15032:16518724,16336771:217687 -(1,15032:16518724,16336771:0,459977,115847 -r1,15165:18987261,16336771:2468537,575824,115847 -k1,15032:16518724,16336771:-2468537 -) -(1,15032:16518724,16336771:2468537,459977,115847 -k1,15032:16518724,16336771:3277 -h1,15032:18983984,16336771:0,411205,112570 -) -k1,15032:19204947,16336771:217686 -k1,15032:20526916,16336771:217687 -k1,15032:21492368,16336771:217686 -k1,15032:24060176,16336771:217687 -k1,15032:25039390,16336771:217686 -k1,15032:25612937,16336771:217687 -k1,15032:26930317,16336771:217686 -k1,15032:27799432,16336771:217687 -(1,15032:27799432,16336771:0,459977,115847 -r1,15165:30971392,16336771:3171960,575824,115847 -k1,15032:27799432,16336771:-3171960 -) -(1,15032:27799432,16336771:3171960,459977,115847 -k1,15032:27799432,16336771:3277 -h1,15032:30968115,16336771:0,411205,112570 -) -k1,15032:31189078,16336771:217686 -k1,15032:32583029,16336771:0 -) -(1,15033:6764466,17201851:25818563,513147,134348 -k1,15032:7800263,17201851:226427 -k1,15032:11602990,17201851:226427 -k1,15032:14597658,17201851:226427 -k1,15032:15510246,17201851:226426 -k1,15032:16092533,17201851:226427 -k1,15032:18939089,17201851:226427 -k1,15032:21143393,17201851:226427 -k1,15032:22029112,17201851:226427 -k1,15032:24268805,17201851:226427 -k1,15032:25915397,17201851:226427 -k1,15032:26673320,17201851:226426 -k1,15032:29249868,17201851:226427 -k1,15032:30237823,17201851:226427 -k1,15032:31483335,17201851:226427 -k1,15033:32583029,17201851:0 -) -(1,15033:6764466,18066931:25818563,505283,134348 -(1,15032:6764466,18066931:0,452978,115847 -r1,15165:9936426,18066931:3171960,568825,115847 -k1,15032:6764466,18066931:-3171960 -) -(1,15032:6764466,18066931:3171960,452978,115847 -k1,15032:6764466,18066931:3277 -h1,15032:9933149,18066931:0,411205,112570 -) -k1,15032:10272515,18066931:162419 -k1,15032:11631620,18066931:162418 -k1,15032:13115900,18066931:162419 -k1,15032:17033532,18066931:162419 -k1,15032:18435892,18066931:162419 -k1,15032:21784671,18066931:162419 -k1,15032:22563127,18066931:162418 -k1,15032:23744631,18066931:162419 -k1,15032:25403237,18066931:162419 -k1,15032:27434087,18066931:162419 -k1,15032:30057382,18066931:162418 -k1,15032:30990504,18066931:162419 -k1,15032:32583029,18066931:0 -) -(1,15033:6764466,18932011:25818563,513147,134348 -k1,15032:7723751,18932011:273123 -k1,15032:9015960,18932011:273124 -k1,15032:12361411,18932011:273123 -k1,15032:14839821,18932011:273123 -k1,15032:15764372,18932011:273123 -(1,15032:15764372,18932011:0,452978,115847 -r1,15165:21398315,18932011:5633943,568825,115847 -k1,15032:15764372,18932011:-5633943 -) -(1,15032:15764372,18932011:5633943,452978,115847 -k1,15032:15764372,18932011:3277 -h1,15032:21395038,18932011:0,411205,112570 -) -k1,15032:21671439,18932011:273124 -k1,15032:22476059,18932011:273123 -k1,15032:23408474,18932011:273123 -k1,15032:25694863,18932011:273123 -k1,15032:27561823,18932011:273124 -k1,15032:29422883,18932011:273123 -k1,15032:32583029,18932011:0 -) -(1,15033:6764466,19797091:25818563,513147,134348 -k1,15032:7539773,19797091:243810 -k1,15032:8849853,19797091:243809 -k1,15032:12374395,19797091:243810 -k1,15032:14012155,19797091:243809 -(1,15032:14012155,19797091:0,452978,115847 -r1,15165:16480692,19797091:2468537,568825,115847 -k1,15032:14012155,19797091:-2468537 -) -(1,15032:14012155,19797091:2468537,452978,115847 -k1,15032:14012155,19797091:3277 -h1,15032:16477415,19797091:0,411205,112570 -) -k1,15032:16724502,19797091:243810 -k1,15032:19276489,19797091:243809 -k1,15032:20179591,19797091:243810 -k1,15032:22436666,19797091:243809 -k1,15032:24274312,19797091:243810 -k1,15032:25543104,19797091:243809 -k1,15032:26734565,19797091:243810 -k1,15032:29639791,19797091:243809 -k1,15032:30902686,19797091:243810 -k1,15032:32583029,19797091:0 -) -(1,15033:6764466,20662171:25818563,505283,126483 -g1,15032:9742422,20662171 -g1,15032:10703179,20662171 -(1,15032:10703179,20662171:0,459977,115847 -r1,15165:17743970,20662171:7040791,575824,115847 -k1,15032:10703179,20662171:-7040791 -) -(1,15032:10703179,20662171:7040791,459977,115847 -k1,15032:10703179,20662171:3277 -h1,15032:17740693,20662171:0,411205,112570 -) -k1,15033:32583029,20662171:14499583 -g1,15033:32583029,20662171 -) -v1,15035:6764466,21347026:0,393216,0 -(1,15057:6764466,26583271:25818563,5629461,196608 -g1,15057:6764466,26583271 -g1,15057:6764466,26583271 -g1,15057:6567858,26583271 -(1,15057:6567858,26583271:0,5629461,196608 -r1,15165:32779637,26583271:26211779,5826069,196608 -k1,15057:6567857,26583271:-26211780 -) -(1,15057:6567858,26583271:26211779,5629461,196608 -[1,15057:6764466,26583271:25818563,5432853,0 -(1,15037:6764466,21581463:25818563,431045,79822 -(1,15036:6764466,21581463:0,0,0 -g1,15036:6764466,21581463 -g1,15036:6764466,21581463 -g1,15036:6436786,21581463 -(1,15036:6436786,21581463:0,0,0 -) -g1,15036:6764466,21581463 -) -k1,15037:6764466,21581463:0 -k1,15037:6764466,21581463:0 -h1,15037:12075730,21581463:0,0,0 -k1,15037:32583030,21581463:20507300 -g1,15037:32583030,21581463 -) -(1,15041:6764466,22397390:25818563,431045,79822 -(1,15039:6764466,22397390:0,0,0 -g1,15039:6764466,22397390 -g1,15039:6764466,22397390 -g1,15039:6436786,22397390 -(1,15039:6436786,22397390:0,0,0 -) -g1,15039:6764466,22397390 -) -g1,15041:7760328,22397390 -g1,15041:9088144,22397390 -h1,15041:12075729,22397390:0,0,0 -k1,15041:32583029,22397390:20507300 -g1,15041:32583029,22397390 -) -(1,15043:6764466,23213317:25818563,431045,79822 -(1,15042:6764466,23213317:0,0,0 -g1,15042:6764466,23213317 -g1,15042:6764466,23213317 -g1,15042:6436786,23213317 -(1,15042:6436786,23213317:0,0,0 -) -g1,15042:6764466,23213317 -) -k1,15043:6764466,23213317:0 -k1,15043:6764466,23213317:0 -h1,15043:11743776,23213317:0,0,0 -k1,15043:32583028,23213317:20839252 -g1,15043:32583028,23213317 -) -(1,15047:6764466,24029244:25818563,424439,79822 -(1,15045:6764466,24029244:0,0,0 -g1,15045:6764466,24029244 -g1,15045:6764466,24029244 -g1,15045:6436786,24029244 -(1,15045:6436786,24029244:0,0,0 -) -g1,15045:6764466,24029244 -) -g1,15047:7760328,24029244 -g1,15047:9088144,24029244 -h1,15047:11079868,24029244:0,0,0 -k1,15047:32583028,24029244:21503160 -g1,15047:32583028,24029244 -) -(1,15049:6764466,24845171:25818563,431045,112852 -(1,15048:6764466,24845171:0,0,0 -g1,15048:6764466,24845171 -g1,15048:6764466,24845171 -g1,15048:6436786,24845171 -(1,15048:6436786,24845171:0,0,0 -) -g1,15048:6764466,24845171 -) -k1,15049:6764466,24845171:0 -k1,15049:6764466,24845171:0 -h1,15049:12407684,24845171:0,0,0 -k1,15049:32583028,24845171:20175344 -g1,15049:32583028,24845171 -) -(1,15053:6764466,25661098:25818563,424439,79822 -(1,15051:6764466,25661098:0,0,0 -g1,15051:6764466,25661098 -g1,15051:6764466,25661098 -g1,15051:6436786,25661098 -(1,15051:6436786,25661098:0,0,0 -) -g1,15051:6764466,25661098 -) -g1,15053:7760328,25661098 -g1,15053:9088144,25661098 -h1,15053:9420098,25661098:0,0,0 -k1,15053:32583030,25661098:23162932 -g1,15053:32583030,25661098 -) -(1,15055:6764466,26477025:25818563,431045,106246 -(1,15054:6764466,26477025:0,0,0 -g1,15054:6764466,26477025 -g1,15054:6764466,26477025 -g1,15054:6436786,26477025 -(1,15054:6436786,26477025:0,0,0 -) -g1,15054:6764466,26477025 -) -g1,15055:7428374,26477025 -k1,15055:7428374,26477025:0 -h1,15055:15727222,26477025:0,0,0 -k1,15055:32583030,26477025:16855808 -g1,15055:32583030,26477025 -) -] -) -g1,15057:32583029,26583271 -g1,15057:6764466,26583271 -g1,15057:6764466,26583271 -g1,15057:32583029,26583271 -g1,15057:32583029,26583271 -) -h1,15057:6764466,26779879:0,0,0 -(1,15061:6764466,27644959:25818563,513147,134348 -h1,15060:6764466,27644959:983040,0,0 -k1,15060:8449080,27644959:213986 -k1,15060:10650789,27644959:214002 -k1,15060:13408242,27644959:214001 -k1,15060:16934433,27644959:214001 -k1,15060:17504295,27644959:214002 -k1,15060:19706003,27644959:214001 -k1,15060:21313955,27644959:214001 -k1,15060:22337327,27644959:214002 -k1,15060:26317027,27644959:214001 -k1,15060:28373900,27644959:214001 -k1,15060:29397271,27644959:214001 -k1,15060:30630358,27644959:214002 -k1,15060:32051532,27644959:214001 -k1,15060:32583029,27644959:0 -) -(1,15061:6764466,28510039:25818563,513147,134348 -k1,15060:10417194,28510039:153761 -k1,15060:12577012,28510039:153761 -k1,15060:14197469,28510039:153761 -k1,15060:14817192,28510039:153762 -k1,15060:15429050,28510039:153761 -k1,15060:16114308,28510039:153761 -k1,15060:16623929,28510039:153761 -k1,15060:18317786,28510039:153761 -k1,15060:20431073,28510039:153761 -k1,15060:21244126,28510039:153761 -k1,15060:22953056,28510039:153761 -(1,15060:22953056,28510039:0,459977,115847 -r1,15165:25421593,28510039:2468537,575824,115847 -k1,15060:22953056,28510039:-2468537 -) -(1,15060:22953056,28510039:2468537,459977,115847 -k1,15060:22953056,28510039:3277 -h1,15060:25418316,28510039:0,411205,112570 -) -k1,15060:25575355,28510039:153762 -k1,15060:27094231,28510039:153761 -k1,15060:28838551,28510039:153761 -k1,15060:30058583,28510039:153761 -k1,15060:32583029,28510039:0 -) -(1,15061:6764466,29375119:25818563,505283,134348 -k1,15060:8699072,29375119:190038 -(1,15060:8699072,29375119:0,435480,115847 -r1,15165:10464186,29375119:1765114,551327,115847 -k1,15060:8699072,29375119:-1765114 -) -(1,15060:8699072,29375119:1765114,435480,115847 -g1,15060:9405773,29375119 -g1,15060:10109197,29375119 -h1,15060:10460909,29375119:0,411205,112570 -) -k1,15060:10654224,29375119:190038 -k1,15060:13843845,29375119:190038 -k1,15060:14389743,29375119:190038 -k1,15060:16567488,29375119:190038 -k1,15060:18151477,29375119:190038 -k1,15060:19717115,29375119:190037 -k1,15060:20677856,29375119:190038 -k1,15060:23735094,29375119:190038 -k1,15060:27490946,29375119:190038 -$1,15060:27490946,29375119 -k1,15060:28135690,29375119:182060 -k1,15060:28885947,29375119:182060 -[1,15060:28885947,29375119:502661,458096,7864 -(1,15060:29356494,29367255:0,450232,0 -) -(1,15060:28885947,29375119:502661,355205,7864 -) -] -$1,15060:29388608,29375119 -k1,15060:29959410,29375119:190038 -(1,15060:29959410,29375119:0,435480,115847 -r1,15165:31724524,29375119:1765114,551327,115847 -k1,15060:29959410,29375119:-1765114 -) -(1,15060:29959410,29375119:1765114,435480,115847 -g1,15060:30666111,29375119 -g1,15060:31369535,29375119 -h1,15060:31721247,29375119:0,411205,112570 -) -k1,15060:31914562,29375119:190038 -k1,15060:32583029,29375119:0 -) -(1,15061:6764466,30240199:25818563,513147,126483 -g1,15060:7752093,30240199 -g1,15060:11256303,30240199 -(1,15060:11256303,30240199:0,435480,115847 -r1,15165:13373129,30240199:2116826,551327,115847 -k1,15060:11256303,30240199:-2116826 -) -(1,15060:11256303,30240199:2116826,435480,115847 -g1,15060:11963004,30240199 -g1,15060:12666428,30240199 -h1,15060:13369852,30240199:0,411205,112570 -) -g1,15060:13746028,30240199 -g1,15060:16944840,30240199 -g1,15060:17914772,30240199 -g1,15060:20120058,30240199 -g1,15060:22306994,30240199 -g1,15060:23790729,30240199 -g1,15060:26160510,30240199 -g1,15060:27107505,30240199 -g1,15060:29019190,30240199 -g1,15060:29869847,30240199 -k1,15061:32583029,30240199:1271390 -g1,15061:32583029,30240199 -) -v1,15063:6764466,30925054:0,393216,0 -(1,15094:6764466,38576050:25818563,8044212,196608 -g1,15094:6764466,38576050 -g1,15094:6764466,38576050 -g1,15094:6567858,38576050 -(1,15094:6567858,38576050:0,8044212,196608 -r1,15165:32779637,38576050:26211779,8240820,196608 -k1,15094:6567857,38576050:-26211780 -) -(1,15094:6567858,38576050:26211779,8044212,196608 -[1,15094:6764466,38576050:25818563,7847604,0 -(1,15065:6764466,31152885:25818563,424439,106246 -(1,15064:6764466,31152885:0,0,0 -g1,15064:6764466,31152885 -g1,15064:6764466,31152885 -g1,15064:6436786,31152885 -(1,15064:6436786,31152885:0,0,0 -) -g1,15064:6764466,31152885 -) -k1,15065:6764466,31152885:0 -g1,15065:9420098,31152885 -g1,15065:10084006,31152885 -h1,15065:10747914,31152885:0,0,0 -k1,15065:32583030,31152885:21835116 -g1,15065:32583030,31152885 -) -(1,15069:6764466,31968812:25818563,431045,79822 -(1,15067:6764466,31968812:0,0,0 -g1,15067:6764466,31968812 -g1,15067:6764466,31968812 -g1,15067:6436786,31968812 -(1,15067:6436786,31968812:0,0,0 -) -g1,15067:6764466,31968812 -) -g1,15069:7760328,31968812 -g1,15069:9088144,31968812 -h1,15069:12075729,31968812:0,0,0 -k1,15069:32583029,31968812:20507300 -g1,15069:32583029,31968812 -) -(1,15071:6764466,32784739:25818563,424439,106246 -(1,15070:6764466,32784739:0,0,0 -g1,15070:6764466,32784739 -g1,15070:6764466,32784739 -g1,15070:6436786,32784739 -(1,15070:6436786,32784739:0,0,0 -) -g1,15070:6764466,32784739 -) -k1,15071:6764466,32784739:0 -g1,15071:9088144,32784739 -g1,15071:9752052,32784739 -h1,15071:10415960,32784739:0,0,0 -k1,15071:32583028,32784739:22167068 -g1,15071:32583028,32784739 -) -(1,15075:6764466,33600666:25818563,424439,79822 -(1,15073:6764466,33600666:0,0,0 -g1,15073:6764466,33600666 -g1,15073:6764466,33600666 -g1,15073:6436786,33600666 -(1,15073:6436786,33600666:0,0,0 -) -g1,15073:6764466,33600666 -) -g1,15075:7760328,33600666 -g1,15075:9088144,33600666 -h1,15075:11079868,33600666:0,0,0 -k1,15075:32583028,33600666:21503160 -g1,15075:32583028,33600666 -) -(1,15077:6764466,34416593:25818563,424439,106246 -(1,15076:6764466,34416593:0,0,0 -g1,15076:6764466,34416593 -g1,15076:6764466,34416593 -g1,15076:6436786,34416593 -(1,15076:6436786,34416593:0,0,0 -) -g1,15076:6764466,34416593 -) -k1,15077:6764466,34416593:0 -g1,15077:12407683,34416593 -g1,15077:13071591,34416593 -h1,15077:13735499,34416593:0,0,0 -k1,15077:32583029,34416593:18847530 -g1,15077:32583029,34416593 -) -(1,15081:6764466,35232520:25818563,424439,79822 -(1,15079:6764466,35232520:0,0,0 -g1,15079:6764466,35232520 -g1,15079:6764466,35232520 -g1,15079:6436786,35232520 -(1,15079:6436786,35232520:0,0,0 -) -g1,15079:6764466,35232520 -) -g1,15081:7760328,35232520 -g1,15081:9088144,35232520 -h1,15081:10415960,35232520:0,0,0 -k1,15081:32583028,35232520:22167068 -g1,15081:32583028,35232520 -) -(1,15083:6764466,36048447:25818563,424439,106246 -(1,15082:6764466,36048447:0,0,0 -g1,15082:6764466,36048447 -g1,15082:6764466,36048447 -g1,15082:6436786,36048447 -(1,15082:6436786,36048447:0,0,0 -) -g1,15082:6764466,36048447 -) -k1,15083:6764466,36048447:0 -g1,15083:12407683,36048447 -g1,15083:13071591,36048447 -h1,15083:13735499,36048447:0,0,0 -k1,15083:32583029,36048447:18847530 -g1,15083:32583029,36048447 -) -(1,15087:6764466,36864374:25818563,424439,79822 -(1,15085:6764466,36864374:0,0,0 -g1,15085:6764466,36864374 -g1,15085:6764466,36864374 -g1,15085:6436786,36864374 -(1,15085:6436786,36864374:0,0,0 -) -g1,15085:6764466,36864374 -) -g1,15087:7760328,36864374 -g1,15087:9088144,36864374 -h1,15087:10747914,36864374:0,0,0 -k1,15087:32583030,36864374:21835116 -g1,15087:32583030,36864374 -) -(1,15089:6764466,37680301:25818563,424439,106246 -(1,15088:6764466,37680301:0,0,0 -g1,15088:6764466,37680301 -g1,15088:6764466,37680301 -g1,15088:6436786,37680301 -(1,15088:6436786,37680301:0,0,0 -) -g1,15088:6764466,37680301 -) -k1,15089:6764466,37680301:0 -g1,15089:12407683,37680301 -g1,15089:13071591,37680301 -h1,15089:13735499,37680301:0,0,0 -k1,15089:32583029,37680301:18847530 -g1,15089:32583029,37680301 -) -(1,15093:6764466,38496228:25818563,424439,79822 -(1,15091:6764466,38496228:0,0,0 -g1,15091:6764466,38496228 -g1,15091:6764466,38496228 -g1,15091:6436786,38496228 -(1,15091:6436786,38496228:0,0,0 -) -g1,15091:6764466,38496228 -) -g1,15093:7760328,38496228 -g1,15093:9088144,38496228 -h1,15093:10747914,38496228:0,0,0 -k1,15093:32583030,38496228:21835116 -g1,15093:32583030,38496228 -) -] -) -g1,15094:32583029,38576050 -g1,15094:6764466,38576050 -g1,15094:6764466,38576050 -g1,15094:32583029,38576050 -g1,15094:32583029,38576050 -) -h1,15094:6764466,38772658:0,0,0 -(1,15098:6764466,39637738:25818563,513147,134348 -h1,15097:6764466,39637738:983040,0,0 -k1,15097:9103241,39637738:159048 -k1,15097:10942633,39637738:159049 -k1,15097:13880408,39637738:159048 -k1,15097:14800985,39637738:159049 -(1,15097:14800985,39637738:0,452978,122846 -r1,15165:17621234,39637738:2820249,575824,122846 -k1,15097:14800985,39637738:-2820249 -) -(1,15097:14800985,39637738:2820249,452978,122846 -k1,15097:14800985,39637738:3277 -h1,15097:17617957,39637738:0,411205,112570 -) -k1,15097:17780282,39637738:159048 -k1,15097:18748701,39637738:159049 -k1,15097:19263609,39637738:159048 -k1,15097:21295676,39637738:159048 -k1,15097:23998177,39637738:159049 -k1,15097:24688722,39637738:159048 -k1,15097:25914042,39637738:159049 -k1,15097:28202355,39637738:159048 -k1,15097:28933533,39637738:159049 -k1,15097:30111666,39637738:159048 -k1,15097:32583029,39637738:0 -) -(1,15098:6764466,40502818:25818563,513147,126483 -k1,15097:7643656,40502818:219898 -k1,15097:10737309,40502818:219899 -k1,15097:11573245,40502818:219898 -k1,15097:12812229,40502818:219899 -k1,15097:15010004,40502818:219898 -k1,15097:15889195,40502818:219899 -k1,15097:19156517,40502818:219898 -k1,15097:20448585,40502818:219899 -k1,15097:22995666,40502818:219898 -k1,15097:24234650,40502818:219899 -k1,15097:26940329,40502818:219898 -k1,15097:27819520,40502818:219899 -k1,15097:31966991,40502818:219898 -k1,15097:32583029,40502818:0 -) -(1,15098:6764466,41367898:25818563,513147,134348 -k1,15097:8020354,41367898:236803 -k1,15097:10974281,41367898:236804 -k1,15097:12253106,41367898:236803 -k1,15097:14514317,41367898:236804 -k1,15097:17232968,41367898:236803 -k1,15097:17927869,41367898:236804 -k1,15097:19657582,41367898:236803 -k1,15097:21905030,41367898:236803 -k1,15097:23160919,41367898:236804 -k1,15097:25883503,41367898:236803 -k1,15097:26779599,41367898:236804 -k1,15097:29639808,41367898:236803 -k1,15097:32583029,41367898:0 -) -(1,15098:6764466,42232978:25818563,513147,134348 -k1,15097:9510220,42232978:217375 -k1,15097:10386887,42232978:217375 -k1,15097:11981173,42232978:217375 -k1,15097:12656646,42232978:217376 -k1,15097:13405518,42232978:217375 -k1,15097:15520160,42232978:217375 -k1,15097:16388963,42232978:217375 -k1,15097:18223767,42232978:217375 -k1,15097:20428849,42232978:217375 -k1,15097:23519978,42232978:217375 -k1,15097:24353391,42232978:217375 -k1,15097:26860595,42232978:217376 -k1,15097:27737262,42232978:217375 -k1,15097:29509806,42232978:217375 -(1,15097:29509806,42232978:0,452978,115847 -r1,15165:30923207,42232978:1413401,568825,115847 -k1,15097:29509806,42232978:-1413401 -) -(1,15097:29509806,42232978:1413401,452978,115847 -k1,15097:29509806,42232978:3277 -h1,15097:30919930,42232978:0,411205,112570 -) -k1,15097:31140582,42232978:217375 -k1,15097:32583029,42232978:0 -) -(1,15098:6764466,43098058:25818563,505283,126483 -g1,15097:7579733,43098058 -g1,15097:10260810,43098058 -g1,15097:11146201,43098058 -(1,15097:11146201,43098058:0,452978,122846 -r1,15165:13966450,43098058:2820249,575824,122846 -k1,15097:11146201,43098058:-2820249 -) -(1,15097:11146201,43098058:2820249,452978,122846 -k1,15097:11146201,43098058:3277 -h1,15097:13963173,43098058:0,411205,112570 -) -g1,15097:14165679,43098058 -g1,15097:18211871,43098058 -g1,15097:20752046,43098058 -g1,15097:21970360,43098058 -g1,15097:25008609,43098058 -g1,15097:26888181,43098058 -g1,15097:27896780,43098058 -k1,15098:32583029,43098058:3309993 -g1,15098:32583029,43098058 -) -] -g1,15165:32583029,43224541 -) -] -(1,15165:32583029,45706769:0,0,0 -g1,15165:32583029,45706769 -) -) -] -(1,15165:6630773,47279633:25952256,0,0 -h1,15165:6630773,47279633:25952256,0,0 -) -] -(1,15165:4262630,4025873:0,0,0 -[1,15165:-473656,4025873:0,0,0 -(1,15165:-473656,-710413:0,0,0 -(1,15165:-473656,-710413:0,0,0 -g1,15165:-473656,-710413 -) -g1,15165:-473656,-710413 +k1,15007:6630773,6481928:0 +g1,15007:9286405,6481928 +g1,15007:9950313,6481928 +g1,15007:10614221,6481928 +h1,15007:11278129,6481928:0,0,0 +k1,15007:32583029,6481928:21304900 +g1,15007:32583029,6481928 +) +(1,15011:6630773,7297855:25952256,431045,79822 +(1,15009:6630773,7297855:0,0,0 +g1,15009:6630773,7297855 +g1,15009:6630773,7297855 +g1,15009:6303093,7297855 +(1,15009:6303093,7297855:0,0,0 +) +g1,15009:6630773,7297855 +) +g1,15011:7626635,7297855 +g1,15011:8954451,7297855 +h1,15011:11942036,7297855:0,0,0 +k1,15011:32583028,7297855:20640992 +g1,15011:32583028,7297855 +) +(1,15013:6630773,8113782:25952256,424439,106246 +(1,15012:6630773,8113782:0,0,0 +g1,15012:6630773,8113782 +g1,15012:6630773,8113782 +g1,15012:6303093,8113782 +(1,15012:6303093,8113782:0,0,0 +) +g1,15012:6630773,8113782 +) +k1,15013:6630773,8113782:0 +g1,15013:8954451,8113782 +g1,15013:9618359,8113782 +g1,15013:10282267,8113782 +h1,15013:10946175,8113782:0,0,0 +k1,15013:32583029,8113782:21636854 +g1,15013:32583029,8113782 +) +(1,15017:6630773,8929709:25952256,424439,79822 +(1,15015:6630773,8929709:0,0,0 +g1,15015:6630773,8929709 +g1,15015:6630773,8929709 +g1,15015:6303093,8929709 +(1,15015:6303093,8929709:0,0,0 +) +g1,15015:6630773,8929709 +) +g1,15017:7626635,8929709 +g1,15017:8954451,8929709 +h1,15017:10946175,8929709:0,0,0 +k1,15017:32583029,8929709:21636854 +g1,15017:32583029,8929709 +) +(1,15019:6630773,9745636:25952256,424439,106246 +(1,15018:6630773,9745636:0,0,0 +g1,15018:6630773,9745636 +g1,15018:6630773,9745636 +g1,15018:6303093,9745636 +(1,15018:6303093,9745636:0,0,0 +) +g1,15018:6630773,9745636 +) +k1,15019:6630773,9745636:0 +g1,15019:12273990,9745636 +g1,15019:12937898,9745636 +g1,15019:13601806,9745636 +h1,15019:14265714,9745636:0,0,0 +k1,15019:32583030,9745636:18317316 +g1,15019:32583030,9745636 +) +(1,15023:6630773,10561563:25952256,424439,79822 +(1,15021:6630773,10561563:0,0,0 +g1,15021:6630773,10561563 +g1,15021:6630773,10561563 +g1,15021:6303093,10561563 +(1,15021:6303093,10561563:0,0,0 +) +g1,15021:6630773,10561563 +) +g1,15023:7626635,10561563 +g1,15023:8954451,10561563 +h1,15023:10614221,10561563:0,0,0 +k1,15023:32583029,10561563:21968808 +g1,15023:32583029,10561563 +) +] +) +g1,15024:32583029,10641385 +g1,15024:6630773,10641385 +g1,15024:6630773,10641385 +g1,15024:32583029,10641385 +g1,15024:32583029,10641385 +) +h1,15024:6630773,10837993:0,0,0 +v1,15028:6630773,11703073:0,393216,0 +(1,15163:6630773,43224541:25952256,31914684,0 +g1,15163:6630773,43224541 +g1,15163:6237557,43224541 +r1,15163:6368629,43224541:131072,31914684,0 +g1,15163:6567858,43224541 +g1,15163:6764466,43224541 +[1,15163:6764466,43224541:25818563,31914684,0 +(1,15029:6764466,12011371:25818563,701514,196608 +(1,15028:6764466,12011371:0,701514,196608 +r1,15163:7761522,12011371:997056,898122,196608 +k1,15028:6764466,12011371:-997056 +) +(1,15028:6764466,12011371:997056,701514,196608 +) +k1,15028:7959623,12011371:198101 +k1,15028:8287303,12011371:327680 +k1,15028:10202447,12011371:198101 +k1,15028:12518016,12011371:198101 +k1,15028:13383273,12011371:198101 +k1,15028:13996216,12011371:198100 +k1,15028:17068070,12011371:198100 +k1,15028:18370453,12011371:198101 +k1,15028:19316320,12011371:198101 +k1,15028:22723719,12011371:198101 +k1,15028:23537858,12011371:198101 +k1,15028:26742095,12011371:198101 +k1,15028:29275244,12011371:198101 +k1,15028:30823387,12011371:198101 +k1,15028:32583029,12011371:0 +) +(1,15029:6764466,12876451:25818563,513147,134348 +k1,15028:7622823,12876451:199065 +k1,15028:11691135,12876451:199066 +k1,15028:12881760,12876451:199065 +k1,15028:15710786,12876451:199066 +k1,15028:16857502,12876451:199065 +k1,15028:20103992,12876451:199066 +k1,15028:21120946,12876451:199065 +k1,15028:22713963,12876451:199066 +k1,15028:24614998,12876451:199065 +k1,15028:27220546,12876451:199066 +k1,15028:29425668,12876451:199065 +k1,15028:31914562,12876451:199066 +k1,15028:32583029,12876451:0 +) +(1,15029:6764466,13741531:25818563,513147,134348 +k1,15028:9271639,13741531:216690 +k1,15028:10147621,13741531:216690 +k1,15028:12377577,13741531:216690 +k1,15028:14014432,13741531:216690 +k1,15028:15222682,13741531:216690 +k1,15028:16979468,13741531:216690 +k1,15028:18387603,13741531:216690 +k1,15028:19708575,13741531:216690 +k1,15028:20673031,13741531:216690 +k1,15028:23239842,13741531:216690 +k1,15028:24850483,13741531:216690 +k1,15028:26086258,13741531:216690 +k1,15028:27858117,13741531:216690 +k1,15028:31955194,13741531:216690 +k1,15028:32583029,13741531:0 +) +(1,15029:6764466,14606611:25818563,513147,134348 +k1,15028:7921933,14606611:138382 +k1,15028:9427396,14606611:138382 +k1,15028:10225070,14606611:138382 +k1,15028:13410875,14606611:138381 +k1,15028:15204041,14606611:138382 +k1,15028:15873920,14606611:138382 +k1,15028:16783005,14606611:138382 +k1,15028:20148380,14606611:138382 +k1,15028:21716102,14606611:138382 +k1,15028:22513775,14606611:138381 +k1,15028:26094763,14606611:138382 +k1,15028:26589005,14606611:138382 +k1,15028:29270839,14606611:138382 +k1,15028:32583029,14606611:0 +) +(1,15029:6764466,15471691:25818563,505283,126483 +g1,15028:7319555,15471691 +g1,15028:9506491,15471691 +g1,15028:11099671,15471691 +g1,15028:12108270,15471691 +g1,15028:16073198,15471691 +g1,15028:18115299,15471691 +g1,15028:19123898,15471691 +g1,15028:20111525,15471691 +k1,15029:32583029,15471691:11409166 +g1,15029:32583029,15471691 +) +(1,15031:6764466,16336771:25818563,513147,134348 +h1,15030:6764466,16336771:983040,0,0 +k1,15030:8867624,16336771:217687 +k1,15030:11691677,16336771:217686 +k1,15030:13868890,16336771:217687 +k1,15030:14745868,16336771:217686 +k1,15030:16518724,16336771:217687 +(1,15030:16518724,16336771:0,459977,115847 +r1,15163:18987261,16336771:2468537,575824,115847 +k1,15030:16518724,16336771:-2468537 +) +(1,15030:16518724,16336771:2468537,459977,115847 +k1,15030:16518724,16336771:3277 +h1,15030:18983984,16336771:0,411205,112570 +) +k1,15030:19204947,16336771:217686 +k1,15030:20526916,16336771:217687 +k1,15030:21492368,16336771:217686 +k1,15030:24060176,16336771:217687 +k1,15030:25039390,16336771:217686 +k1,15030:25612937,16336771:217687 +k1,15030:26930317,16336771:217686 +k1,15030:27799432,16336771:217687 +(1,15030:27799432,16336771:0,459977,115847 +r1,15163:30971392,16336771:3171960,575824,115847 +k1,15030:27799432,16336771:-3171960 +) +(1,15030:27799432,16336771:3171960,459977,115847 +k1,15030:27799432,16336771:3277 +h1,15030:30968115,16336771:0,411205,112570 +) +k1,15030:31189078,16336771:217686 +k1,15030:32583029,16336771:0 +) +(1,15031:6764466,17201851:25818563,513147,134348 +k1,15030:7800263,17201851:226427 +k1,15030:11602990,17201851:226427 +k1,15030:14597658,17201851:226427 +k1,15030:15510246,17201851:226426 +k1,15030:16092533,17201851:226427 +k1,15030:18939089,17201851:226427 +k1,15030:21143393,17201851:226427 +k1,15030:22029112,17201851:226427 +k1,15030:24268805,17201851:226427 +k1,15030:25915397,17201851:226427 +k1,15030:26673320,17201851:226426 +k1,15030:29249868,17201851:226427 +k1,15030:30237823,17201851:226427 +k1,15030:31483335,17201851:226427 +k1,15031:32583029,17201851:0 +) +(1,15031:6764466,18066931:25818563,505283,134348 +(1,15030:6764466,18066931:0,452978,115847 +r1,15163:9936426,18066931:3171960,568825,115847 +k1,15030:6764466,18066931:-3171960 +) +(1,15030:6764466,18066931:3171960,452978,115847 +k1,15030:6764466,18066931:3277 +h1,15030:9933149,18066931:0,411205,112570 +) +k1,15030:10272515,18066931:162419 +k1,15030:11631620,18066931:162418 +k1,15030:13115900,18066931:162419 +k1,15030:17033532,18066931:162419 +k1,15030:18435892,18066931:162419 +k1,15030:21784671,18066931:162419 +k1,15030:22563127,18066931:162418 +k1,15030:23744631,18066931:162419 +k1,15030:25403237,18066931:162419 +k1,15030:27434087,18066931:162419 +k1,15030:30057382,18066931:162418 +k1,15030:30990504,18066931:162419 +k1,15030:32583029,18066931:0 +) +(1,15031:6764466,18932011:25818563,513147,134348 +k1,15030:7723751,18932011:273123 +k1,15030:9015960,18932011:273124 +k1,15030:12361411,18932011:273123 +k1,15030:14839821,18932011:273123 +k1,15030:15764372,18932011:273123 +(1,15030:15764372,18932011:0,452978,115847 +r1,15163:21398315,18932011:5633943,568825,115847 +k1,15030:15764372,18932011:-5633943 +) +(1,15030:15764372,18932011:5633943,452978,115847 +k1,15030:15764372,18932011:3277 +h1,15030:21395038,18932011:0,411205,112570 +) +k1,15030:21671439,18932011:273124 +k1,15030:22476059,18932011:273123 +k1,15030:23408474,18932011:273123 +k1,15030:25694863,18932011:273123 +k1,15030:27561823,18932011:273124 +k1,15030:29422883,18932011:273123 +k1,15030:32583029,18932011:0 +) +(1,15031:6764466,19797091:25818563,513147,134348 +k1,15030:7539773,19797091:243810 +k1,15030:8849853,19797091:243809 +k1,15030:12374395,19797091:243810 +k1,15030:14012155,19797091:243809 +(1,15030:14012155,19797091:0,452978,115847 +r1,15163:16480692,19797091:2468537,568825,115847 +k1,15030:14012155,19797091:-2468537 +) +(1,15030:14012155,19797091:2468537,452978,115847 +k1,15030:14012155,19797091:3277 +h1,15030:16477415,19797091:0,411205,112570 +) +k1,15030:16724502,19797091:243810 +k1,15030:19276489,19797091:243809 +k1,15030:20179591,19797091:243810 +k1,15030:22436666,19797091:243809 +k1,15030:24274312,19797091:243810 +k1,15030:25543104,19797091:243809 +k1,15030:26734565,19797091:243810 +k1,15030:29639791,19797091:243809 +k1,15030:30902686,19797091:243810 +k1,15030:32583029,19797091:0 +) +(1,15031:6764466,20662171:25818563,505283,126483 +g1,15030:9742422,20662171 +g1,15030:10703179,20662171 +(1,15030:10703179,20662171:0,459977,115847 +r1,15163:17743970,20662171:7040791,575824,115847 +k1,15030:10703179,20662171:-7040791 +) +(1,15030:10703179,20662171:7040791,459977,115847 +k1,15030:10703179,20662171:3277 +h1,15030:17740693,20662171:0,411205,112570 +) +k1,15031:32583029,20662171:14499583 +g1,15031:32583029,20662171 +) +v1,15033:6764466,21347026:0,393216,0 +(1,15055:6764466,26583271:25818563,5629461,196608 +g1,15055:6764466,26583271 +g1,15055:6764466,26583271 +g1,15055:6567858,26583271 +(1,15055:6567858,26583271:0,5629461,196608 +r1,15163:32779637,26583271:26211779,5826069,196608 +k1,15055:6567857,26583271:-26211780 +) +(1,15055:6567858,26583271:26211779,5629461,196608 +[1,15055:6764466,26583271:25818563,5432853,0 +(1,15035:6764466,21581463:25818563,431045,79822 +(1,15034:6764466,21581463:0,0,0 +g1,15034:6764466,21581463 +g1,15034:6764466,21581463 +g1,15034:6436786,21581463 +(1,15034:6436786,21581463:0,0,0 +) +g1,15034:6764466,21581463 +) +k1,15035:6764466,21581463:0 +k1,15035:6764466,21581463:0 +h1,15035:12075730,21581463:0,0,0 +k1,15035:32583030,21581463:20507300 +g1,15035:32583030,21581463 +) +(1,15039:6764466,22397390:25818563,431045,79822 +(1,15037:6764466,22397390:0,0,0 +g1,15037:6764466,22397390 +g1,15037:6764466,22397390 +g1,15037:6436786,22397390 +(1,15037:6436786,22397390:0,0,0 +) +g1,15037:6764466,22397390 +) +g1,15039:7760328,22397390 +g1,15039:9088144,22397390 +h1,15039:12075729,22397390:0,0,0 +k1,15039:32583029,22397390:20507300 +g1,15039:32583029,22397390 +) +(1,15041:6764466,23213317:25818563,431045,79822 +(1,15040:6764466,23213317:0,0,0 +g1,15040:6764466,23213317 +g1,15040:6764466,23213317 +g1,15040:6436786,23213317 +(1,15040:6436786,23213317:0,0,0 +) +g1,15040:6764466,23213317 +) +k1,15041:6764466,23213317:0 +k1,15041:6764466,23213317:0 +h1,15041:11743776,23213317:0,0,0 +k1,15041:32583028,23213317:20839252 +g1,15041:32583028,23213317 +) +(1,15045:6764466,24029244:25818563,424439,79822 +(1,15043:6764466,24029244:0,0,0 +g1,15043:6764466,24029244 +g1,15043:6764466,24029244 +g1,15043:6436786,24029244 +(1,15043:6436786,24029244:0,0,0 +) +g1,15043:6764466,24029244 +) +g1,15045:7760328,24029244 +g1,15045:9088144,24029244 +h1,15045:11079868,24029244:0,0,0 +k1,15045:32583028,24029244:21503160 +g1,15045:32583028,24029244 +) +(1,15047:6764466,24845171:25818563,431045,112852 +(1,15046:6764466,24845171:0,0,0 +g1,15046:6764466,24845171 +g1,15046:6764466,24845171 +g1,15046:6436786,24845171 +(1,15046:6436786,24845171:0,0,0 +) +g1,15046:6764466,24845171 +) +k1,15047:6764466,24845171:0 +k1,15047:6764466,24845171:0 +h1,15047:12407684,24845171:0,0,0 +k1,15047:32583028,24845171:20175344 +g1,15047:32583028,24845171 +) +(1,15051:6764466,25661098:25818563,424439,79822 +(1,15049:6764466,25661098:0,0,0 +g1,15049:6764466,25661098 +g1,15049:6764466,25661098 +g1,15049:6436786,25661098 +(1,15049:6436786,25661098:0,0,0 +) +g1,15049:6764466,25661098 +) +g1,15051:7760328,25661098 +g1,15051:9088144,25661098 +h1,15051:9420098,25661098:0,0,0 +k1,15051:32583030,25661098:23162932 +g1,15051:32583030,25661098 +) +(1,15053:6764466,26477025:25818563,431045,106246 +(1,15052:6764466,26477025:0,0,0 +g1,15052:6764466,26477025 +g1,15052:6764466,26477025 +g1,15052:6436786,26477025 +(1,15052:6436786,26477025:0,0,0 +) +g1,15052:6764466,26477025 +) +g1,15053:7428374,26477025 +k1,15053:7428374,26477025:0 +h1,15053:15727222,26477025:0,0,0 +k1,15053:32583030,26477025:16855808 +g1,15053:32583030,26477025 +) +] +) +g1,15055:32583029,26583271 +g1,15055:6764466,26583271 +g1,15055:6764466,26583271 +g1,15055:32583029,26583271 +g1,15055:32583029,26583271 +) +h1,15055:6764466,26779879:0,0,0 +(1,15059:6764466,27644959:25818563,513147,134348 +h1,15058:6764466,27644959:983040,0,0 +k1,15058:8449080,27644959:213986 +k1,15058:10650789,27644959:214002 +k1,15058:13408242,27644959:214001 +k1,15058:16934433,27644959:214001 +k1,15058:17504295,27644959:214002 +k1,15058:19706003,27644959:214001 +k1,15058:21313955,27644959:214001 +k1,15058:22337327,27644959:214002 +k1,15058:26317027,27644959:214001 +k1,15058:28373900,27644959:214001 +k1,15058:29397271,27644959:214001 +k1,15058:30630358,27644959:214002 +k1,15058:32051532,27644959:214001 +k1,15058:32583029,27644959:0 +) +(1,15059:6764466,28510039:25818563,513147,134348 +k1,15058:10417194,28510039:153761 +k1,15058:12577012,28510039:153761 +k1,15058:14197469,28510039:153761 +k1,15058:14817192,28510039:153762 +k1,15058:15429050,28510039:153761 +k1,15058:16114308,28510039:153761 +k1,15058:16623929,28510039:153761 +k1,15058:18317786,28510039:153761 +k1,15058:20431073,28510039:153761 +k1,15058:21244126,28510039:153761 +k1,15058:22953056,28510039:153761 +(1,15058:22953056,28510039:0,459977,115847 +r1,15163:25421593,28510039:2468537,575824,115847 +k1,15058:22953056,28510039:-2468537 +) +(1,15058:22953056,28510039:2468537,459977,115847 +k1,15058:22953056,28510039:3277 +h1,15058:25418316,28510039:0,411205,112570 +) +k1,15058:25575355,28510039:153762 +k1,15058:27094231,28510039:153761 +k1,15058:28838551,28510039:153761 +k1,15058:30058583,28510039:153761 +k1,15058:32583029,28510039:0 +) +(1,15059:6764466,29375119:25818563,505283,134348 +k1,15058:8699072,29375119:190038 +(1,15058:8699072,29375119:0,435480,115847 +r1,15163:10464186,29375119:1765114,551327,115847 +k1,15058:8699072,29375119:-1765114 +) +(1,15058:8699072,29375119:1765114,435480,115847 +g1,15058:9405773,29375119 +g1,15058:10109197,29375119 +h1,15058:10460909,29375119:0,411205,112570 +) +k1,15058:10654224,29375119:190038 +k1,15058:13843845,29375119:190038 +k1,15058:14389743,29375119:190038 +k1,15058:16567488,29375119:190038 +k1,15058:18151477,29375119:190038 +k1,15058:19717115,29375119:190037 +k1,15058:20677856,29375119:190038 +k1,15058:23735094,29375119:190038 +k1,15058:27490946,29375119:190038 +$1,15058:27490946,29375119 +k1,15058:28135690,29375119:182060 +k1,15058:28885947,29375119:182060 +[1,15058:28885947,29375119:502661,458096,7864 +(1,15058:29356494,29367255:0,450232,0 +) +(1,15058:28885947,29375119:502661,355205,7864 +) +] +$1,15058:29388608,29375119 +k1,15058:29959410,29375119:190038 +(1,15058:29959410,29375119:0,435480,115847 +r1,15163:31724524,29375119:1765114,551327,115847 +k1,15058:29959410,29375119:-1765114 +) +(1,15058:29959410,29375119:1765114,435480,115847 +g1,15058:30666111,29375119 +g1,15058:31369535,29375119 +h1,15058:31721247,29375119:0,411205,112570 +) +k1,15058:31914562,29375119:190038 +k1,15058:32583029,29375119:0 +) +(1,15059:6764466,30240199:25818563,513147,126483 +g1,15058:7752093,30240199 +g1,15058:11256303,30240199 +(1,15058:11256303,30240199:0,435480,115847 +r1,15163:13373129,30240199:2116826,551327,115847 +k1,15058:11256303,30240199:-2116826 +) +(1,15058:11256303,30240199:2116826,435480,115847 +g1,15058:11963004,30240199 +g1,15058:12666428,30240199 +h1,15058:13369852,30240199:0,411205,112570 +) +g1,15058:13746028,30240199 +g1,15058:16944840,30240199 +g1,15058:17914772,30240199 +g1,15058:20120058,30240199 +g1,15058:22306994,30240199 +g1,15058:23790729,30240199 +g1,15058:26160510,30240199 +g1,15058:27107505,30240199 +g1,15058:29019190,30240199 +g1,15058:29869847,30240199 +k1,15059:32583029,30240199:1271390 +g1,15059:32583029,30240199 +) +v1,15061:6764466,30925054:0,393216,0 +(1,15092:6764466,38576050:25818563,8044212,196608 +g1,15092:6764466,38576050 +g1,15092:6764466,38576050 +g1,15092:6567858,38576050 +(1,15092:6567858,38576050:0,8044212,196608 +r1,15163:32779637,38576050:26211779,8240820,196608 +k1,15092:6567857,38576050:-26211780 +) +(1,15092:6567858,38576050:26211779,8044212,196608 +[1,15092:6764466,38576050:25818563,7847604,0 +(1,15063:6764466,31152885:25818563,424439,106246 +(1,15062:6764466,31152885:0,0,0 +g1,15062:6764466,31152885 +g1,15062:6764466,31152885 +g1,15062:6436786,31152885 +(1,15062:6436786,31152885:0,0,0 +) +g1,15062:6764466,31152885 +) +k1,15063:6764466,31152885:0 +g1,15063:9420098,31152885 +g1,15063:10084006,31152885 +h1,15063:10747914,31152885:0,0,0 +k1,15063:32583030,31152885:21835116 +g1,15063:32583030,31152885 +) +(1,15067:6764466,31968812:25818563,431045,79822 +(1,15065:6764466,31968812:0,0,0 +g1,15065:6764466,31968812 +g1,15065:6764466,31968812 +g1,15065:6436786,31968812 +(1,15065:6436786,31968812:0,0,0 +) +g1,15065:6764466,31968812 +) +g1,15067:7760328,31968812 +g1,15067:9088144,31968812 +h1,15067:12075729,31968812:0,0,0 +k1,15067:32583029,31968812:20507300 +g1,15067:32583029,31968812 +) +(1,15069:6764466,32784739:25818563,424439,106246 +(1,15068:6764466,32784739:0,0,0 +g1,15068:6764466,32784739 +g1,15068:6764466,32784739 +g1,15068:6436786,32784739 +(1,15068:6436786,32784739:0,0,0 +) +g1,15068:6764466,32784739 +) +k1,15069:6764466,32784739:0 +g1,15069:9088144,32784739 +g1,15069:9752052,32784739 +h1,15069:10415960,32784739:0,0,0 +k1,15069:32583028,32784739:22167068 +g1,15069:32583028,32784739 +) +(1,15073:6764466,33600666:25818563,424439,79822 +(1,15071:6764466,33600666:0,0,0 +g1,15071:6764466,33600666 +g1,15071:6764466,33600666 +g1,15071:6436786,33600666 +(1,15071:6436786,33600666:0,0,0 +) +g1,15071:6764466,33600666 +) +g1,15073:7760328,33600666 +g1,15073:9088144,33600666 +h1,15073:11079868,33600666:0,0,0 +k1,15073:32583028,33600666:21503160 +g1,15073:32583028,33600666 +) +(1,15075:6764466,34416593:25818563,424439,106246 +(1,15074:6764466,34416593:0,0,0 +g1,15074:6764466,34416593 +g1,15074:6764466,34416593 +g1,15074:6436786,34416593 +(1,15074:6436786,34416593:0,0,0 +) +g1,15074:6764466,34416593 +) +k1,15075:6764466,34416593:0 +g1,15075:12407683,34416593 +g1,15075:13071591,34416593 +h1,15075:13735499,34416593:0,0,0 +k1,15075:32583029,34416593:18847530 +g1,15075:32583029,34416593 +) +(1,15079:6764466,35232520:25818563,424439,79822 +(1,15077:6764466,35232520:0,0,0 +g1,15077:6764466,35232520 +g1,15077:6764466,35232520 +g1,15077:6436786,35232520 +(1,15077:6436786,35232520:0,0,0 +) +g1,15077:6764466,35232520 +) +g1,15079:7760328,35232520 +g1,15079:9088144,35232520 +h1,15079:10415960,35232520:0,0,0 +k1,15079:32583028,35232520:22167068 +g1,15079:32583028,35232520 +) +(1,15081:6764466,36048447:25818563,424439,106246 +(1,15080:6764466,36048447:0,0,0 +g1,15080:6764466,36048447 +g1,15080:6764466,36048447 +g1,15080:6436786,36048447 +(1,15080:6436786,36048447:0,0,0 +) +g1,15080:6764466,36048447 +) +k1,15081:6764466,36048447:0 +g1,15081:12407683,36048447 +g1,15081:13071591,36048447 +h1,15081:13735499,36048447:0,0,0 +k1,15081:32583029,36048447:18847530 +g1,15081:32583029,36048447 +) +(1,15085:6764466,36864374:25818563,424439,79822 +(1,15083:6764466,36864374:0,0,0 +g1,15083:6764466,36864374 +g1,15083:6764466,36864374 +g1,15083:6436786,36864374 +(1,15083:6436786,36864374:0,0,0 +) +g1,15083:6764466,36864374 +) +g1,15085:7760328,36864374 +g1,15085:9088144,36864374 +h1,15085:10747914,36864374:0,0,0 +k1,15085:32583030,36864374:21835116 +g1,15085:32583030,36864374 +) +(1,15087:6764466,37680301:25818563,424439,106246 +(1,15086:6764466,37680301:0,0,0 +g1,15086:6764466,37680301 +g1,15086:6764466,37680301 +g1,15086:6436786,37680301 +(1,15086:6436786,37680301:0,0,0 +) +g1,15086:6764466,37680301 +) +k1,15087:6764466,37680301:0 +g1,15087:12407683,37680301 +g1,15087:13071591,37680301 +h1,15087:13735499,37680301:0,0,0 +k1,15087:32583029,37680301:18847530 +g1,15087:32583029,37680301 +) +(1,15091:6764466,38496228:25818563,424439,79822 +(1,15089:6764466,38496228:0,0,0 +g1,15089:6764466,38496228 +g1,15089:6764466,38496228 +g1,15089:6436786,38496228 +(1,15089:6436786,38496228:0,0,0 +) +g1,15089:6764466,38496228 +) +g1,15091:7760328,38496228 +g1,15091:9088144,38496228 +h1,15091:10747914,38496228:0,0,0 +k1,15091:32583030,38496228:21835116 +g1,15091:32583030,38496228 +) +] +) +g1,15092:32583029,38576050 +g1,15092:6764466,38576050 +g1,15092:6764466,38576050 +g1,15092:32583029,38576050 +g1,15092:32583029,38576050 +) +h1,15092:6764466,38772658:0,0,0 +(1,15096:6764466,39637738:25818563,513147,134348 +h1,15095:6764466,39637738:983040,0,0 +k1,15095:9103241,39637738:159048 +k1,15095:10942633,39637738:159049 +k1,15095:13880408,39637738:159048 +k1,15095:14800985,39637738:159049 +(1,15095:14800985,39637738:0,452978,122846 +r1,15163:17621234,39637738:2820249,575824,122846 +k1,15095:14800985,39637738:-2820249 +) +(1,15095:14800985,39637738:2820249,452978,122846 +k1,15095:14800985,39637738:3277 +h1,15095:17617957,39637738:0,411205,112570 +) +k1,15095:17780282,39637738:159048 +k1,15095:18748701,39637738:159049 +k1,15095:19263609,39637738:159048 +k1,15095:21295676,39637738:159048 +k1,15095:23998177,39637738:159049 +k1,15095:24688722,39637738:159048 +k1,15095:25914042,39637738:159049 +k1,15095:28202355,39637738:159048 +k1,15095:28933533,39637738:159049 +k1,15095:30111666,39637738:159048 +k1,15095:32583029,39637738:0 +) +(1,15096:6764466,40502818:25818563,513147,126483 +k1,15095:7643656,40502818:219898 +k1,15095:10737309,40502818:219899 +k1,15095:11573245,40502818:219898 +k1,15095:12812229,40502818:219899 +k1,15095:15010004,40502818:219898 +k1,15095:15889195,40502818:219899 +k1,15095:19156517,40502818:219898 +k1,15095:20448585,40502818:219899 +k1,15095:22995666,40502818:219898 +k1,15095:24234650,40502818:219899 +k1,15095:26940329,40502818:219898 +k1,15095:27819520,40502818:219899 +k1,15095:31966991,40502818:219898 +k1,15095:32583029,40502818:0 +) +(1,15096:6764466,41367898:25818563,513147,134348 +k1,15095:8020354,41367898:236803 +k1,15095:10974281,41367898:236804 +k1,15095:12253106,41367898:236803 +k1,15095:14514317,41367898:236804 +k1,15095:17232968,41367898:236803 +k1,15095:17927869,41367898:236804 +k1,15095:19657582,41367898:236803 +k1,15095:21905030,41367898:236803 +k1,15095:23160919,41367898:236804 +k1,15095:25883503,41367898:236803 +k1,15095:26779599,41367898:236804 +k1,15095:29639808,41367898:236803 +k1,15095:32583029,41367898:0 +) +(1,15096:6764466,42232978:25818563,513147,134348 +k1,15095:9510220,42232978:217375 +k1,15095:10386887,42232978:217375 +k1,15095:11981173,42232978:217375 +k1,15095:12656646,42232978:217376 +k1,15095:13405518,42232978:217375 +k1,15095:15520160,42232978:217375 +k1,15095:16388963,42232978:217375 +k1,15095:18223767,42232978:217375 +k1,15095:20428849,42232978:217375 +k1,15095:23519978,42232978:217375 +k1,15095:24353391,42232978:217375 +k1,15095:26860595,42232978:217376 +k1,15095:27737262,42232978:217375 +k1,15095:29509806,42232978:217375 +(1,15095:29509806,42232978:0,452978,115847 +r1,15163:30923207,42232978:1413401,568825,115847 +k1,15095:29509806,42232978:-1413401 +) +(1,15095:29509806,42232978:1413401,452978,115847 +k1,15095:29509806,42232978:3277 +h1,15095:30919930,42232978:0,411205,112570 +) +k1,15095:31140582,42232978:217375 +k1,15095:32583029,42232978:0 +) +(1,15096:6764466,43098058:25818563,505283,126483 +g1,15095:7579733,43098058 +g1,15095:10260810,43098058 +g1,15095:11146201,43098058 +(1,15095:11146201,43098058:0,452978,122846 +r1,15163:13966450,43098058:2820249,575824,122846 +k1,15095:11146201,43098058:-2820249 +) +(1,15095:11146201,43098058:2820249,452978,122846 +k1,15095:11146201,43098058:3277 +h1,15095:13963173,43098058:0,411205,112570 +) +g1,15095:14165679,43098058 +g1,15095:18211871,43098058 +g1,15095:20752046,43098058 +g1,15095:21970360,43098058 +g1,15095:25008609,43098058 +g1,15095:26888181,43098058 +g1,15095:27896780,43098058 +k1,15096:32583029,43098058:3309993 +g1,15096:32583029,43098058 +) +] +g1,15163:32583029,43224541 +) +] +(1,15163:32583029,45706769:0,0,0 +g1,15163:32583029,45706769 +) +) +] +(1,15163:6630773,47279633:25952256,0,0 +h1,15163:6630773,47279633:25952256,0,0 +) +] +(1,15163:4262630,4025873:0,0,0 +[1,15163:-473656,4025873:0,0,0 +(1,15163:-473656,-710413:0,0,0 +(1,15163:-473656,-710413:0,0,0 +g1,15163:-473656,-710413 +) +g1,15163:-473656,-710413 ) ] ) ] !27973 -}242 -Input:2594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}243 Input:2597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2599:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2600:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{243 -[1,15183:4262630,47279633:28320399,43253760,0 -(1,15183:4262630,4025873:0,0,0 -[1,15183:-473656,4025873:0,0,0 -(1,15183:-473656,-710413:0,0,0 -(1,15183:-473656,-644877:0,0,0 -k1,15183:-473656,-644877:-65536 +{244 +[1,15181:4262630,47279633:28320399,43253760,0 +(1,15181:4262630,4025873:0,0,0 +[1,15181:-473656,4025873:0,0,0 +(1,15181:-473656,-710413:0,0,0 +(1,15181:-473656,-644877:0,0,0 +k1,15181:-473656,-644877:-65536 ) -(1,15183:-473656,4736287:0,0,0 -k1,15183:-473656,4736287:5209943 +(1,15181:-473656,4736287:0,0,0 +k1,15181:-473656,4736287:5209943 ) -g1,15183:-473656,-710413 +g1,15181:-473656,-710413 ) ] ) -[1,15183:6630773,47279633:25952256,43253760,0 -[1,15183:6630773,4812305:25952256,786432,0 -(1,15183:6630773,4812305:25952256,513147,126483 -(1,15183:6630773,4812305:25952256,513147,126483 -g1,15183:3078558,4812305 -[1,15183:3078558,4812305:0,0,0 -(1,15183:3078558,2439708:0,1703936,0 -k1,15183:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15183:2537886,2439708:1179648,16384,0 +[1,15181:6630773,47279633:25952256,43253760,0 +[1,15181:6630773,4812305:25952256,786432,0 +(1,15181:6630773,4812305:25952256,513147,126483 +(1,15181:6630773,4812305:25952256,513147,126483 +g1,15181:3078558,4812305 +[1,15181:3078558,4812305:0,0,0 +(1,15181:3078558,2439708:0,1703936,0 +k1,15181:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15181:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15183:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15181:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15183:3078558,4812305:0,0,0 -(1,15183:3078558,2439708:0,1703936,0 -g1,15183:29030814,2439708 -g1,15183:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15183:36151628,1915420:16384,1179648,0 +[1,15181:3078558,4812305:0,0,0 +(1,15181:3078558,2439708:0,1703936,0 +g1,15181:29030814,2439708 +g1,15181:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15181:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15183:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15181:37855564,2439708:1179648,16384,0 ) ) -k1,15183:3078556,2439708:-34777008 +k1,15181:3078556,2439708:-34777008 ) ] -[1,15183:3078558,4812305:0,0,0 -(1,15183:3078558,49800853:0,16384,2228224 -k1,15183:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15183:2537886,49800853:1179648,16384,0 +[1,15181:3078558,4812305:0,0,0 +(1,15181:3078558,49800853:0,16384,2228224 +k1,15181:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15181:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15183:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15181:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15183:3078558,4812305:0,0,0 -(1,15183:3078558,49800853:0,16384,2228224 -g1,15183:29030814,49800853 -g1,15183:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15183:36151628,51504789:16384,1179648,0 +[1,15181:3078558,4812305:0,0,0 +(1,15181:3078558,49800853:0,16384,2228224 +g1,15181:29030814,49800853 +g1,15181:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15181:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15183:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15181:37855564,49800853:1179648,16384,0 ) ) -k1,15183:3078556,49800853:-34777008 +k1,15181:3078556,49800853:-34777008 ) ] -g1,15183:6630773,4812305 -k1,15183:19575446,4812305:11749296 -g1,15183:21198117,4812305 -g1,15183:21985204,4812305 -g1,15183:24539797,4812305 -g1,15183:25949476,4812305 -g1,15183:28728857,4812305 -g1,15183:29852144,4812305 +g1,15181:6630773,4812305 +k1,15181:19575446,4812305:11749296 +g1,15181:21198117,4812305 +g1,15181:21985204,4812305 +g1,15181:24539797,4812305 +g1,15181:25949476,4812305 +g1,15181:28728857,4812305 +g1,15181:29852144,4812305 ) ) ] -[1,15183:6630773,45706769:25952256,40108032,0 -(1,15183:6630773,45706769:25952256,40108032,0 -(1,15183:6630773,45706769:0,0,0 -g1,15183:6630773,45706769 +[1,15181:6630773,45706769:25952256,40108032,0 +(1,15181:6630773,45706769:25952256,40108032,0 +(1,15181:6630773,45706769:0,0,0 +g1,15181:6630773,45706769 ) -[1,15183:6630773,45706769:25952256,40108032,0 -v1,15165:6630773,6254097:0,393216,0 -(1,15165:6630773,24469232:25952256,18608351,0 -g1,15165:6630773,24469232 -g1,15165:6237557,24469232 -r1,15183:6368629,24469232:131072,18608351,0 -g1,15165:6567858,24469232 -g1,15165:6764466,24469232 -[1,15165:6764466,24469232:25818563,18608351,0 -v1,15100:6764466,6254097:0,393216,0 -(1,15143:6764466,17175407:25818563,11314526,196608 -g1,15143:6764466,17175407 -g1,15143:6764466,17175407 -g1,15143:6567858,17175407 -(1,15143:6567858,17175407:0,11314526,196608 -r1,15183:32779637,17175407:26211779,11511134,196608 -k1,15143:6567857,17175407:-26211780 -) -(1,15143:6567858,17175407:26211779,11314526,196608 -[1,15143:6764466,17175407:25818563,11117918,0 -(1,15102:6764466,6488534:25818563,431045,112852 -(1,15101:6764466,6488534:0,0,0 -g1,15101:6764466,6488534 -g1,15101:6764466,6488534 -g1,15101:6436786,6488534 -(1,15101:6436786,6488534:0,0,0 -) -g1,15101:6764466,6488534 -) -k1,15102:6764466,6488534:0 -k1,15102:6764466,6488534:0 -h1,15102:12407684,6488534:0,0,0 -k1,15102:32583028,6488534:20175344 -g1,15102:32583028,6488534 -) -(1,15106:6764466,7304461:25818563,424439,79822 -(1,15104:6764466,7304461:0,0,0 -g1,15104:6764466,7304461 -g1,15104:6764466,7304461 -g1,15104:6436786,7304461 -(1,15104:6436786,7304461:0,0,0 -) -g1,15104:6764466,7304461 -) -g1,15106:7760328,7304461 -g1,15106:9088144,7304461 -h1,15106:9420098,7304461:0,0,0 -k1,15106:32583030,7304461:23162932 -g1,15106:32583030,7304461 -) -(1,15108:6764466,8120388:25818563,424439,112852 -(1,15107:6764466,8120388:0,0,0 -g1,15107:6764466,8120388 -g1,15107:6764466,8120388 -g1,15107:6436786,8120388 -(1,15107:6436786,8120388:0,0,0 -) -g1,15107:6764466,8120388 -) -k1,15108:6764466,8120388:0 -g1,15108:9752052,8120388 -g1,15108:10415960,8120388 -h1,15108:11079868,8120388:0,0,0 -k1,15108:32583028,8120388:21503160 -g1,15108:32583028,8120388 -) -(1,15112:6764466,8936315:25818563,424439,79822 -(1,15110:6764466,8936315:0,0,0 -g1,15110:6764466,8936315 -g1,15110:6764466,8936315 -g1,15110:6436786,8936315 -(1,15110:6436786,8936315:0,0,0 -) -g1,15110:6764466,8936315 -) -g1,15112:7760328,8936315 -g1,15112:9088144,8936315 -h1,15112:9420098,8936315:0,0,0 -k1,15112:32583030,8936315:23162932 -g1,15112:32583030,8936315 -) -(1,15114:6764466,9752242:25818563,424439,112852 -(1,15113:6764466,9752242:0,0,0 -g1,15113:6764466,9752242 -g1,15113:6764466,9752242 -g1,15113:6436786,9752242 -(1,15113:6436786,9752242:0,0,0 -) -g1,15113:6764466,9752242 -) -k1,15114:6764466,9752242:0 -g1,15114:9752052,9752242 -g1,15114:10415960,9752242 -h1,15114:11079868,9752242:0,0,0 -k1,15114:32583028,9752242:21503160 -g1,15114:32583028,9752242 -) -(1,15118:6764466,10568169:25818563,424439,79822 -(1,15116:6764466,10568169:0,0,0 -g1,15116:6764466,10568169 -g1,15116:6764466,10568169 -g1,15116:6436786,10568169 -(1,15116:6436786,10568169:0,0,0 -) -g1,15116:6764466,10568169 -) -g1,15118:7760328,10568169 -g1,15118:9088144,10568169 -h1,15118:9420098,10568169:0,0,0 -k1,15118:32583030,10568169:23162932 -g1,15118:32583030,10568169 -) -(1,15120:6764466,11384096:25818563,424439,112852 -(1,15119:6764466,11384096:0,0,0 -g1,15119:6764466,11384096 -g1,15119:6764466,11384096 -g1,15119:6436786,11384096 -(1,15119:6436786,11384096:0,0,0 -) -g1,15119:6764466,11384096 -) -k1,15120:6764466,11384096:0 -g1,15120:9752052,11384096 -g1,15120:10415960,11384096 -h1,15120:11079868,11384096:0,0,0 -k1,15120:32583028,11384096:21503160 -g1,15120:32583028,11384096 -) -(1,15124:6764466,12200023:25818563,424439,79822 -(1,15122:6764466,12200023:0,0,0 -g1,15122:6764466,12200023 -g1,15122:6764466,12200023 -g1,15122:6436786,12200023 -(1,15122:6436786,12200023:0,0,0 -) -g1,15122:6764466,12200023 -) -g1,15124:7760328,12200023 -g1,15124:9088144,12200023 -h1,15124:9420098,12200023:0,0,0 -k1,15124:32583030,12200023:23162932 -g1,15124:32583030,12200023 -) -(1,15126:6764466,13015950:25818563,424439,112852 -(1,15125:6764466,13015950:0,0,0 -g1,15125:6764466,13015950 -g1,15125:6764466,13015950 -g1,15125:6436786,13015950 -(1,15125:6436786,13015950:0,0,0 -) -g1,15125:6764466,13015950 -) -k1,15126:6764466,13015950:0 -g1,15126:10415960,13015950 -g1,15126:11079868,13015950 -g1,15126:12075730,13015950 -g1,15126:12739638,13015950 -g1,15126:13403546,13015950 -h1,15126:14399408,13015950:0,0,0 -k1,15126:32583028,13015950:18183620 -g1,15126:32583028,13015950 -) -(1,15130:6764466,13831877:25818563,424439,79822 -(1,15128:6764466,13831877:0,0,0 -g1,15128:6764466,13831877 -g1,15128:6764466,13831877 -g1,15128:6436786,13831877 -(1,15128:6436786,13831877:0,0,0 -) -g1,15128:6764466,13831877 -) -g1,15130:7760328,13831877 -g1,15130:9088144,13831877 -h1,15130:9420098,13831877:0,0,0 -k1,15130:32583030,13831877:23162932 -g1,15130:32583030,13831877 -) -(1,15132:6764466,14647804:25818563,424439,112852 -(1,15131:6764466,14647804:0,0,0 -g1,15131:6764466,14647804 -g1,15131:6764466,14647804 -g1,15131:6436786,14647804 -(1,15131:6436786,14647804:0,0,0 -) -g1,15131:6764466,14647804 -) -k1,15132:6764466,14647804:0 -g1,15132:11411822,14647804 -g1,15132:12075730,14647804 -h1,15132:13071592,14647804:0,0,0 -k1,15132:32583028,14647804:19511436 -g1,15132:32583028,14647804 -) -(1,15136:6764466,15463731:25818563,424439,79822 -(1,15134:6764466,15463731:0,0,0 -g1,15134:6764466,15463731 -g1,15134:6764466,15463731 -g1,15134:6436786,15463731 -(1,15134:6436786,15463731:0,0,0 -) -g1,15134:6764466,15463731 -) -g1,15136:7760328,15463731 -g1,15136:9088144,15463731 -h1,15136:9420098,15463731:0,0,0 -k1,15136:32583030,15463731:23162932 -g1,15136:32583030,15463731 -) -(1,15138:6764466,16279658:25818563,424439,112852 -(1,15137:6764466,16279658:0,0,0 -g1,15137:6764466,16279658 -g1,15137:6764466,16279658 -g1,15137:6436786,16279658 -(1,15137:6436786,16279658:0,0,0 -) -g1,15137:6764466,16279658 -) -k1,15138:6764466,16279658:0 -g1,15138:11411822,16279658 -g1,15138:12075730,16279658 -g1,15138:13071592,16279658 -g1,15138:13735500,16279658 -g1,15138:14399408,16279658 -h1,15138:15395270,16279658:0,0,0 -k1,15138:32583030,16279658:17187760 -g1,15138:32583030,16279658 -) -(1,15142:6764466,17095585:25818563,424439,79822 -(1,15140:6764466,17095585:0,0,0 -g1,15140:6764466,17095585 -g1,15140:6764466,17095585 -g1,15140:6436786,17095585 -(1,15140:6436786,17095585:0,0,0 -) -g1,15140:6764466,17095585 -) -g1,15142:7760328,17095585 -g1,15142:9088144,17095585 -h1,15142:9420098,17095585:0,0,0 -k1,15142:32583030,17095585:23162932 -g1,15142:32583030,17095585 -) -] -) -g1,15143:32583029,17175407 -g1,15143:6764466,17175407 -g1,15143:6764466,17175407 -g1,15143:32583029,17175407 -g1,15143:32583029,17175407 -) -h1,15143:6764466,17372015:0,0,0 -(1,15147:6764466,18237095:25818563,513147,134348 -h1,15146:6764466,18237095:983040,0,0 -k1,15146:8806644,18237095:241249 -k1,15146:12137917,18237095:241250 -k1,15146:14408161,18237095:241249 -(1,15146:14408161,18237095:0,452978,122846 -r1,15183:17228410,18237095:2820249,575824,122846 -k1,15146:14408161,18237095:-2820249 -) -(1,15146:14408161,18237095:2820249,452978,122846 -k1,15146:14408161,18237095:3277 -h1,15146:17225133,18237095:0,411205,112570 -) -k1,15146:17469659,18237095:241249 -k1,15146:20082656,18237095:241249 -k1,15146:20975334,18237095:241250 -k1,15146:21572443,18237095:241249 -k1,15146:23686711,18237095:241249 -k1,15146:26471413,18237095:241250 -k1,15146:27904107,18237095:241249 -k1,15146:28796784,18237095:241249 -k1,15146:29393893,18237095:241249 -k1,15146:30628669,18237095:241250 -k1,15146:31529210,18237095:241249 -k1,15147:32583029,18237095:0 -) -(1,15147:6764466,19102175:25818563,513147,126483 -k1,15146:8888621,19102175:198052 -k1,15146:11639956,19102175:198052 -k1,15146:15340252,19102175:198052 -k1,15146:16367334,19102175:198052 -k1,15146:17665080,19102175:198052 -(1,15146:17665080,19102175:0,452978,122846 -r1,15183:20485329,19102175:2820249,575824,122846 -k1,15146:17665080,19102175:-2820249 -) -(1,15146:17665080,19102175:2820249,452978,122846 -k1,15146:17665080,19102175:3277 -h1,15146:20482052,19102175:0,411205,112570 -) -k1,15146:20683381,19102175:198052 -k1,15146:21690803,19102175:198052 -k1,15146:23340477,19102175:198052 -k1,15146:26161935,19102175:198052 -k1,15146:27019279,19102175:198052 -k1,15146:27573191,19102175:198052 -k1,15146:28764769,19102175:198052 -k1,15146:29622113,19102175:198052 -k1,15146:32583029,19102175:0 -) -(1,15147:6764466,19967255:25818563,513147,134348 -k1,15146:7810526,19967255:203922 -k1,15146:9118730,19967255:203922 -k1,15146:10415137,19967255:203922 -(1,15146:10415137,19967255:0,452978,115847 -r1,15183:13235386,19967255:2820249,568825,115847 -k1,15146:10415137,19967255:-2820249 -) -(1,15146:10415137,19967255:2820249,452978,115847 -k1,15146:10415137,19967255:3277 -h1,15146:13232109,19967255:0,411205,112570 -) -k1,15146:13439308,19967255:203922 -k1,15146:14875307,19967255:203922 -k1,15146:17357917,19967255:203923 -h1,15146:18328505,19967255:0,0,0 -k1,15146:18532427,19967255:203922 -k1,15146:19545719,19967255:203922 -k1,15146:21247794,19967255:203922 -h1,15146:22443171,19967255:0,0,0 -k1,15146:23027857,19967255:203922 -k1,15146:24049668,19967255:203922 -k1,15146:26949086,19967255:203922 -(1,15146:26949086,19967255:0,452978,115847 -r1,15183:32583029,19967255:5633943,568825,115847 -k1,15146:26949086,19967255:-5633943 -) -(1,15146:26949086,19967255:5633943,452978,115847 -k1,15146:26949086,19967255:3277 -h1,15146:32579752,19967255:0,411205,112570 -) -k1,15146:32583029,19967255:0 -) -(1,15147:6764466,20832335:25818563,513147,115847 -g1,15146:7495192,20832335 -g1,15146:8760692,20832335 -g1,15146:12411047,20832335 -g1,15146:13478628,20832335 -g1,15146:14963673,20832335 -g1,15146:16638117,20832335 -g1,15146:17488774,20832335 -g1,15146:18780488,20832335 -(1,15146:18780488,20832335:0,452978,115847 -r1,15183:21600737,20832335:2820249,568825,115847 -k1,15146:18780488,20832335:-2820249 -) -(1,15146:18780488,20832335:2820249,452978,115847 -k1,15146:18780488,20832335:3277 -h1,15146:21597460,20832335:0,411205,112570 -) -g1,15146:21799966,20832335 -g1,15146:23393146,20832335 -g1,15146:23948235,20832335 -g1,15146:25140990,20832335 -g1,15146:25999511,20832335 -k1,15147:32583029,20832335:3657336 -g1,15147:32583029,20832335 -) -v1,15149:6764466,21517190:0,393216,0 -(1,15162:6764466,24272624:25818563,3148650,196608 -g1,15162:6764466,24272624 -g1,15162:6764466,24272624 -g1,15162:6567858,24272624 -(1,15162:6567858,24272624:0,3148650,196608 -r1,15183:32779637,24272624:26211779,3345258,196608 -k1,15162:6567857,24272624:-26211780 -) -(1,15162:6567858,24272624:26211779,3148650,196608 -[1,15162:6764466,24272624:25818563,2952042,0 -(1,15151:6764466,21745021:25818563,424439,112852 -(1,15150:6764466,21745021:0,0,0 -g1,15150:6764466,21745021 -g1,15150:6764466,21745021 -g1,15150:6436786,21745021 -(1,15150:6436786,21745021:0,0,0 -) -g1,15150:6764466,21745021 -) -k1,15151:6764466,21745021:0 -g1,15151:11411822,21745021 -g1,15151:12075730,21745021 -g1,15151:13071592,21745021 -g1,15151:13735500,21745021 -g1,15151:14399408,21745021 -g1,15151:15395270,21745021 -g1,15151:16059178,21745021 -g1,15151:16723086,21745021 -g1,15151:18050902,21745021 -h1,15151:20374580,21745021:0,0,0 -k1,15151:32583029,21745021:12208449 -g1,15151:32583029,21745021 -) -(1,15155:6764466,22560948:25818563,424439,79822 -(1,15153:6764466,22560948:0,0,0 -g1,15153:6764466,22560948 -g1,15153:6764466,22560948 -g1,15153:6436786,22560948 -(1,15153:6436786,22560948:0,0,0 -) -g1,15153:6764466,22560948 -) -g1,15155:7760328,22560948 -g1,15155:9088144,22560948 -g1,15155:9752052,22560948 -g1,15155:10415960,22560948 -h1,15155:10747914,22560948:0,0,0 -k1,15155:32583030,22560948:21835116 -g1,15155:32583030,22560948 -) -(1,15157:6764466,23376875:25818563,424439,106246 -(1,15156:6764466,23376875:0,0,0 -g1,15156:6764466,23376875 -g1,15156:6764466,23376875 -g1,15156:6436786,23376875 -(1,15156:6436786,23376875:0,0,0 -) -g1,15156:6764466,23376875 -) -k1,15157:6764466,23376875:0 -g1,15157:11411822,23376875 -g1,15157:12075730,23376875 -g1,15157:13071592,23376875 -g1,15157:13735500,23376875 -g1,15157:14399408,23376875 -g1,15157:15395270,23376875 -g1,15157:16059178,23376875 -g1,15157:16723086,23376875 -g1,15157:18050902,23376875 -h1,15157:23030211,23376875:0,0,0 -k1,15157:32583029,23376875:9552818 -g1,15157:32583029,23376875 -) -(1,15161:6764466,24192802:25818563,424439,79822 -(1,15159:6764466,24192802:0,0,0 -g1,15159:6764466,24192802 -g1,15159:6764466,24192802 -g1,15159:6436786,24192802 -(1,15159:6436786,24192802:0,0,0 -) -g1,15159:6764466,24192802 -) -g1,15161:7760328,24192802 -g1,15161:9088144,24192802 -g1,15161:9420098,24192802 -g1,15161:11079868,24192802 -g1,15161:13071592,24192802 -h1,15161:14731362,24192802:0,0,0 -k1,15161:32583030,24192802:17851668 -g1,15161:32583030,24192802 -) -] -) -g1,15162:32583029,24272624 -g1,15162:6764466,24272624 -g1,15162:6764466,24272624 -g1,15162:32583029,24272624 -g1,15162:32583029,24272624 -) -h1,15162:6764466,24469232:0,0,0 -] -g1,15165:32583029,24469232 -) -h1,15165:6630773,24469232:0,0,0 -(1,15168:6630773,25334312:25952256,513147,126483 -h1,15167:6630773,25334312:983040,0,0 -k1,15167:8504566,25334312:262918 -k1,15167:9786570,25334312:262919 -k1,15167:13041207,25334312:262918 -k1,15167:13920163,25334312:262918 -k1,15167:16937560,25334312:262919 -k1,15167:19809466,25334312:262918 -k1,15167:20940737,25334312:262919 -k1,15167:22916111,25334312:262918 -k1,15167:25303706,25334312:262918 -k1,15167:28058304,25334312:262919 -k1,15167:29915058,25334312:262918 -k1,15167:32583029,25334312:0 -) -(1,15168:6630773,26199392:25952256,513147,134348 -k1,15167:8371550,26199392:253765 -k1,15167:9729597,26199392:253765 -k1,15167:10731127,26199392:253764 -k1,15167:12785821,26199392:253765 -k1,15167:16608021,26199392:253765 -k1,15167:18597179,26199392:253765 -k1,15167:19870029,26199392:253765 -k1,15167:21777266,26199392:253764 -k1,15167:24288746,26199392:253765 -k1,15167:25978405,26199392:253765 -k1,15167:26891462,26199392:253765 -k1,15167:28085012,26199392:253764 -k1,15167:29495487,26199392:253765 -k1,15167:30853534,26199392:253765 -k1,15167:32583029,26199392:0 -) -(1,15168:6630773,27064472:25952256,513147,134348 -k1,15167:8619699,27064472:253533 -k1,15167:9532524,27064472:253533 -k1,15167:12532671,27064472:253533 -(1,15167:12532671,27064472:0,414482,115847 -r1,15183:12890937,27064472:358266,530329,115847 -k1,15167:12532671,27064472:-358266 -) -(1,15167:12532671,27064472:358266,414482,115847 -k1,15167:12532671,27064472:3277 -h1,15167:12887660,27064472:0,411205,112570 -) -k1,15167:13144470,27064472:253533 -k1,15167:14159531,27064472:253533 -k1,15167:17310411,27064472:253533 -k1,15167:20167689,27064472:253533 -k1,15167:21187338,27064472:253533 -k1,15167:24633785,27064472:253533 -k1,15167:26479188,27064472:253533 -k1,15167:28833805,27064472:253533 -k1,15167:30278783,27064472:253533 -k1,15168:32583029,27064472:0 -) -(1,15168:6630773,27929552:25952256,505283,134348 -k1,15167:8421568,27929552:193027 -k1,15167:10349988,27929552:193027 -k1,15167:13619930,27929552:193027 -(1,15167:13619930,27929552:0,414482,115847 -r1,15183:13978196,27929552:358266,530329,115847 -k1,15167:13619930,27929552:-358266 -) -(1,15167:13619930,27929552:358266,414482,115847 -k1,15167:13619930,27929552:3277 -h1,15167:13974919,27929552:0,411205,112570 -) -k1,15167:14171223,27929552:193027 -k1,15167:15555695,27929552:193027 -(1,15167:15555695,27929552:0,414482,115847 -r1,15183:15913961,27929552:358266,530329,115847 -k1,15167:15555695,27929552:-358266 -) -(1,15167:15555695,27929552:358266,414482,115847 -k1,15167:15555695,27929552:3277 -h1,15167:15910684,27929552:0,411205,112570 -) -k1,15167:16389908,27929552:193027 -k1,15167:17779622,27929552:193027 -k1,15167:20056694,27929552:193027 -k1,15167:24451234,27929552:193027 -k1,15167:25260299,27929552:193027 -k1,15167:26887254,27929552:193027 -k1,15167:27495118,27929552:193021 -k1,15167:29700100,27929552:193027 -k1,15167:32583029,27929552:0 -) -(1,15168:6630773,28794632:25952256,513147,126483 -k1,15167:7660646,28794632:268345 -k1,15167:9997306,28794632:268344 -k1,15167:10924943,28794632:268345 -k1,15167:15221131,28794632:268345 -k1,15167:16214303,28794632:268344 -k1,15167:16940745,28794632:268345 -k1,15167:17740587,28794632:268345 -k1,15167:19294748,28794632:268345 -k1,15167:22193052,28794632:268344 -k1,15167:23112825,28794632:268345 -k1,15167:25815177,28794632:268345 -k1,15167:27775661,28794632:268344 -k1,15167:31839851,28794632:268345 -k1,15167:32583029,28794632:0 -) -(1,15168:6630773,29659712:25952256,513147,134348 -g1,15167:10184790,29659712 -g1,15167:11403104,29659712 -g1,15167:12694818,29659712 -g1,15167:13561203,29659712 -(1,15167:13561203,29659712:0,414482,115847 -r1,15183:13919469,29659712:358266,530329,115847 -k1,15167:13561203,29659712:-358266 -) -(1,15167:13561203,29659712:358266,414482,115847 -k1,15167:13561203,29659712:3277 -h1,15167:13916192,29659712:0,411205,112570 -) -g1,15167:14118698,29659712 -g1,15167:15509372,29659712 -k1,15168:32583029,29659712:13167056 -g1,15168:32583029,29659712 -) -(1,15170:6630773,30524792:25952256,513147,126483 -h1,15169:6630773,30524792:983040,0,0 -k1,15169:9094509,30524792:284009 -k1,15169:11031991,30524792:284009 -k1,15169:13957757,30524792:284010 -k1,15169:14927928,30524792:284009 -k1,15169:16159588,30524792:284009 -k1,15169:19719742,30524792:284009 -k1,15169:23080666,30524792:284009 -k1,15169:24356236,30524792:284010 -k1,15169:26153471,30524792:284009 -k1,15169:27385131,30524792:284009 -k1,15169:29656847,30524792:284009 -k1,15169:32583029,30524792:0 -) -(1,15170:6630773,31389872:25952256,513147,134348 -k1,15169:8911247,31389872:215435 -k1,15169:9482541,31389872:215434 -k1,15169:12415099,31389872:215435 -k1,15169:15272290,31389872:215435 -k1,15169:16479285,31389872:215435 -k1,15169:20284781,31389872:215434 -k1,15169:23617108,31389872:215435 -k1,15169:24483971,31389872:215435 -k1,15169:27242858,31389872:215435 -k1,15169:29716007,31389872:215434 -k1,15169:31714677,31389872:215435 -k1,15169:32583029,31389872:0 -) -(1,15170:6630773,32254952:25952256,513147,134348 -k1,15169:8544928,32254952:176140 -k1,15169:9491772,32254952:176141 -k1,15169:12944057,32254952:176140 -k1,15169:16194492,32254952:176141 -k1,15169:17655138,32254952:176140 -k1,15169:19600096,32254952:176141 -k1,15169:20524002,32254952:176140 -k1,15169:24290205,32254952:176141 -k1,15169:25152507,32254952:176140 -k1,15169:27066663,32254952:176141 -k1,15169:28564664,32254952:176140 -k1,15169:29400097,32254952:176141 -k1,15169:30595322,32254952:176140 -k1,15169:32583029,32254952:0 -) -(1,15170:6630773,33120032:25952256,513147,126483 -k1,15169:9330856,33120032:156631 -k1,15169:10355838,33120032:156630 -k1,15169:12042735,33120032:156631 -k1,15169:12850794,33120032:156631 -k1,15169:15906081,33120032:156630 -k1,15169:16520809,33120032:156631 -k1,15169:17438968,33120032:156631 -k1,15169:19663914,33120032:156630 -k1,15169:20479837,33120032:156631 -k1,15169:21655553,33120032:156631 -k1,15169:24272405,33120032:156630 -k1,15169:27124532,33120032:156631 -(1,15169:27124532,33120032:0,452978,115847 -r1,15183:28186221,33120032:1061689,568825,115847 -k1,15169:27124532,33120032:-1061689 -) -(1,15169:27124532,33120032:1061689,452978,115847 -k1,15169:27124532,33120032:3277 -h1,15169:28182944,33120032:0,411205,112570 -) -k1,15169:28516522,33120032:156631 -k1,15169:29869839,33120032:156630 -k1,15169:31410590,33120032:156631 -k1,15169:32583029,33120032:0 -) -(1,15170:6630773,33985112:25952256,513147,126483 -k1,15169:9799796,33985112:177304 -k1,15169:11937938,33985112:177305 -k1,15169:14988996,33985112:177304 -k1,15169:16113952,33985112:177305 -k1,15169:18609264,33985112:177304 -k1,15169:20180520,33985112:177305 -k1,15169:21733425,33985112:177304 -k1,15169:23067440,33985112:177305 -k1,15169:27010443,33985112:177304 -k1,15169:29872758,33985112:177305 -k1,15169:31529210,33985112:177304 -k1,15170:32583029,33985112:0 -) -(1,15170:6630773,34850192:25952256,513147,134348 -k1,15169:8739015,34850192:182139 -k1,15169:10067380,34850192:182140 -k1,15169:12119917,34850192:182139 -k1,15169:13321142,34850192:182140 -k1,15169:17268980,34850192:182139 -k1,15169:19962459,34850192:182139 -k1,15169:21277061,34850192:182140 -k1,15169:22206966,34850192:182139 -k1,15169:25597748,34850192:182139 -k1,15169:26589258,34850192:182140 -k1,15169:27790482,34850192:182139 -k1,15169:28768229,34850192:182140 -k1,15169:30648406,34850192:182139 -k1,15169:32583029,34850192:0 -) -(1,15170:6630773,35715272:25952256,513147,126483 -k1,15169:7823965,35715272:174107 -k1,15169:9985779,35715272:174107 -k1,15169:10811314,35715272:174107 -k1,15169:12548455,35715272:174107 -k1,15169:13350397,35715272:174107 -k1,15169:14543589,35715272:174107 -k1,15169:16023829,35715272:174107 -k1,15169:17565018,35715272:174108 -k1,15169:19607556,35715272:174107 -k1,15169:20650015,35715272:174107 -k1,15169:22354388,35715272:174107 -k1,15169:23179923,35715272:174107 -k1,15169:26251377,35715272:174107 -k1,15169:28723832,35715272:174107 -k1,15169:29917024,35715272:174107 -k1,15169:32583029,35715272:0 -) -(1,15170:6630773,36580352:25952256,513147,126483 -k1,15169:7440294,36580352:150229 -k1,15169:8609607,36580352:150228 -k1,15169:9932275,36580352:150229 -k1,15169:12924144,36580352:150228 -k1,15169:14341839,36580352:150229 -k1,15169:16000707,36580352:150229 -k1,15169:17689720,36580352:150228 -k1,15169:20369639,36580352:150229 -k1,15169:23621687,36580352:150229 -k1,15169:25152103,36580352:150228 -k1,15169:27258582,36580352:150229 -k1,15169:28156576,36580352:150228 -k1,15169:31896867,36580352:150229 -k1,15169:32583029,36580352:0 -) -(1,15170:6630773,37445432:25952256,505283,126483 -k1,15169:7995596,37445432:192384 -k1,15169:10890684,37445432:192383 -k1,15169:14848767,37445432:192384 -k1,15169:17882792,37445432:192384 -k1,15169:18691214,37445432:192384 -k1,15169:19902682,37445432:192383 -k1,15169:22256443,37445432:192384 -k1,15169:23076662,37445432:192384 -k1,15169:24288131,37445432:192384 -k1,15169:26721845,37445432:192383 -k1,15169:28454980,37445432:192384 -(1,15169:28454980,37445432:0,452978,122846 -r1,15183:30220093,37445432:1765113,575824,122846 -k1,15169:28454980,37445432:-1765113 -) -(1,15169:28454980,37445432:1765113,452978,122846 -k1,15169:28454980,37445432:3277 -h1,15169:30216816,37445432:0,411205,112570 -) -k1,15169:30412477,37445432:192384 -k1,15169:32583029,37445432:0 -) -(1,15170:6630773,38310512:25952256,513147,126483 -k1,15169:7624845,38310512:246306 -k1,15169:11461213,38310512:246306 -k1,15169:12393681,38310512:246306 -k1,15169:13961848,38310512:246306 -k1,15169:14867446,38310512:246306 -k1,15169:16132837,38310512:246306 -k1,15169:18366850,38310512:246306 -k1,15169:21330279,38310512:246306 -k1,15169:22768030,38310512:246306 -k1,15169:27239442,38310512:246306 -k1,15169:28978658,38310512:246306 -k1,15169:30291235,38310512:246306 -k1,15169:32583029,38310512:0 -) -(1,15170:6630773,39175592:25952256,505283,134348 -g1,15169:10056995,39175592 -g1,15169:13738807,39175592 -g1,15169:16208859,39175592 -g1,15169:17900998,39175592 -g1,15169:19119312,39175592 -g1,15169:22758526,39175592 -g1,15169:25163042,39175592 -g1,15169:26048433,39175592 -g1,15169:27036060,39175592 -k1,15170:32583029,39175592:2422213 -g1,15170:32583029,39175592 -) -v1,15172:6630773,39860447:0,393216,0 -(1,15177:6630773,40885985:25952256,1418754,196608 -g1,15177:6630773,40885985 -g1,15177:6630773,40885985 -g1,15177:6434165,40885985 -(1,15177:6434165,40885985:0,1418754,196608 -r1,15183:32779637,40885985:26345472,1615362,196608 -k1,15177:6434165,40885985:-26345472 -) -(1,15177:6434165,40885985:26345472,1418754,196608 -[1,15177:6630773,40885985:25952256,1222146,0 -(1,15174:6630773,40088278:25952256,424439,106246 -(1,15173:6630773,40088278:0,0,0 -g1,15173:6630773,40088278 -g1,15173:6630773,40088278 -g1,15173:6303093,40088278 -(1,15173:6303093,40088278:0,0,0 -) -g1,15173:6630773,40088278 -) -g1,15174:7294681,40088278 -g1,15174:7958589,40088278 -g1,15174:9618359,40088278 -g1,15174:10282267,40088278 -h1,15174:11278129,40088278:0,0,0 -k1,15174:32583029,40088278:21304900 -g1,15174:32583029,40088278 -) -(1,15175:6630773,40773133:25952256,424439,112852 -h1,15175:6630773,40773133:0,0,0 -g1,15175:7294681,40773133 -g1,15175:7958589,40773133 -g1,15175:10282267,40773133 -g1,15175:10946175,40773133 -h1,15175:11942037,40773133:0,0,0 -k1,15175:32583029,40773133:20640992 -g1,15175:32583029,40773133 -) -] -) -g1,15177:32583029,40885985 -g1,15177:6630773,40885985 -g1,15177:6630773,40885985 -g1,15177:32583029,40885985 -g1,15177:32583029,40885985 -) -h1,15177:6630773,41082593:0,0,0 -(1,15181:6630773,41947673:25952256,513147,134348 -h1,15180:6630773,41947673:983040,0,0 -k1,15180:8202762,41947673:174106 -k1,15180:10920346,41947673:174132 -k1,15180:13178522,41947673:174131 -k1,15180:15364609,41947673:174132 -k1,15180:18925641,41947673:174131 -k1,15180:20668049,41947673:174131 -k1,15180:21789832,41947673:174132 -k1,15180:25213238,41947673:174131 -k1,15180:28852914,41947673:174132 -k1,15180:31043588,41947673:174131 -k1,15180:32583029,41947673:0 -) -(1,15181:6630773,42812753:25952256,513147,134348 -k1,15180:8571221,42812753:258794 -k1,15180:13161945,42812753:258794 -k1,15180:14989016,42812753:258794 -k1,15180:15907102,42812753:258794 -k1,15180:18810930,42812753:258795 -k1,15180:22117148,42812753:258794 -k1,15180:24261413,42812753:258794 -k1,15180:25467858,42812753:258794 -k1,15180:28412973,42812753:258794 -k1,15180:32583029,42812753:0 -) -(1,15181:6630773,43677833:25952256,505283,134348 -k1,15180:9267001,43677833:217294 -k1,15180:11205269,43677833:217293 -k1,15180:13451558,43677833:217294 -k1,15180:14860296,43677833:217293 -k1,15180:16181872,43677833:217294 -k1,15180:19028470,43677833:217294 -k1,15180:21421558,43677833:217293 -k1,15180:22456741,43677833:217294 -k1,15180:24113861,43677833:217294 -k1,15180:26360149,43677833:217293 -k1,15180:29324057,43677833:217294 -(1,15180:29324057,43677833:0,414482,115847 -r1,15183:29682323,43677833:358266,530329,115847 -k1,15180:29324057,43677833:-358266 -) -(1,15180:29324057,43677833:358266,414482,115847 -k1,15180:29324057,43677833:3277 -h1,15180:29679046,43677833:0,411205,112570 -) -k1,15180:29899616,43677833:217293 -k1,15180:31837885,43677833:217294 -k1,15180:32583029,43677833:0 -) -(1,15181:6630773,44542913:25952256,513147,134348 -k1,15180:8377963,44542913:179569 -k1,15180:10675655,44542913:179568 -k1,15180:11506652,44542913:179569 -k1,15180:14583567,44542913:179568 -k1,15180:17294792,44542913:179569 -k1,15180:18240477,44542913:179569 -k1,15180:19439130,44542913:179568 -k1,15180:23084243,44542913:179569 -k1,15180:25106684,44542913:179569 -k1,15180:25902290,44542913:179568 -k1,15180:26437719,44542913:179569 -k1,15180:27707151,44542913:179568 -k1,15180:30542894,44542913:179569 -k1,15181:32583029,44542913:0 -k1,15181:32583029,44542913:0 -) -] -(1,15183:32583029,45706769:0,0,0 -g1,15183:32583029,45706769 -) -) -] -(1,15183:6630773,47279633:25952256,0,0 -h1,15183:6630773,47279633:25952256,0,0 -) -] -(1,15183:4262630,4025873:0,0,0 -[1,15183:-473656,4025873:0,0,0 -(1,15183:-473656,-710413:0,0,0 -(1,15183:-473656,-710413:0,0,0 -g1,15183:-473656,-710413 -) -g1,15183:-473656,-710413 -) -] -) -] -!29261 -}243 -Input:2601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,15181:6630773,45706769:25952256,40108032,0 +v1,15163:6630773,6254097:0,393216,0 +(1,15163:6630773,24469232:25952256,18608351,0 +g1,15163:6630773,24469232 +g1,15163:6237557,24469232 +r1,15181:6368629,24469232:131072,18608351,0 +g1,15163:6567858,24469232 +g1,15163:6764466,24469232 +[1,15163:6764466,24469232:25818563,18608351,0 +v1,15098:6764466,6254097:0,393216,0 +(1,15141:6764466,17175407:25818563,11314526,196608 +g1,15141:6764466,17175407 +g1,15141:6764466,17175407 +g1,15141:6567858,17175407 +(1,15141:6567858,17175407:0,11314526,196608 +r1,15181:32779637,17175407:26211779,11511134,196608 +k1,15141:6567857,17175407:-26211780 +) +(1,15141:6567858,17175407:26211779,11314526,196608 +[1,15141:6764466,17175407:25818563,11117918,0 +(1,15100:6764466,6488534:25818563,431045,112852 +(1,15099:6764466,6488534:0,0,0 +g1,15099:6764466,6488534 +g1,15099:6764466,6488534 +g1,15099:6436786,6488534 +(1,15099:6436786,6488534:0,0,0 +) +g1,15099:6764466,6488534 +) +k1,15100:6764466,6488534:0 +k1,15100:6764466,6488534:0 +h1,15100:12407684,6488534:0,0,0 +k1,15100:32583028,6488534:20175344 +g1,15100:32583028,6488534 +) +(1,15104:6764466,7304461:25818563,424439,79822 +(1,15102:6764466,7304461:0,0,0 +g1,15102:6764466,7304461 +g1,15102:6764466,7304461 +g1,15102:6436786,7304461 +(1,15102:6436786,7304461:0,0,0 +) +g1,15102:6764466,7304461 +) +g1,15104:7760328,7304461 +g1,15104:9088144,7304461 +h1,15104:9420098,7304461:0,0,0 +k1,15104:32583030,7304461:23162932 +g1,15104:32583030,7304461 +) +(1,15106:6764466,8120388:25818563,424439,112852 +(1,15105:6764466,8120388:0,0,0 +g1,15105:6764466,8120388 +g1,15105:6764466,8120388 +g1,15105:6436786,8120388 +(1,15105:6436786,8120388:0,0,0 +) +g1,15105:6764466,8120388 +) +k1,15106:6764466,8120388:0 +g1,15106:9752052,8120388 +g1,15106:10415960,8120388 +h1,15106:11079868,8120388:0,0,0 +k1,15106:32583028,8120388:21503160 +g1,15106:32583028,8120388 +) +(1,15110:6764466,8936315:25818563,424439,79822 +(1,15108:6764466,8936315:0,0,0 +g1,15108:6764466,8936315 +g1,15108:6764466,8936315 +g1,15108:6436786,8936315 +(1,15108:6436786,8936315:0,0,0 +) +g1,15108:6764466,8936315 +) +g1,15110:7760328,8936315 +g1,15110:9088144,8936315 +h1,15110:9420098,8936315:0,0,0 +k1,15110:32583030,8936315:23162932 +g1,15110:32583030,8936315 +) +(1,15112:6764466,9752242:25818563,424439,112852 +(1,15111:6764466,9752242:0,0,0 +g1,15111:6764466,9752242 +g1,15111:6764466,9752242 +g1,15111:6436786,9752242 +(1,15111:6436786,9752242:0,0,0 +) +g1,15111:6764466,9752242 +) +k1,15112:6764466,9752242:0 +g1,15112:9752052,9752242 +g1,15112:10415960,9752242 +h1,15112:11079868,9752242:0,0,0 +k1,15112:32583028,9752242:21503160 +g1,15112:32583028,9752242 +) +(1,15116:6764466,10568169:25818563,424439,79822 +(1,15114:6764466,10568169:0,0,0 +g1,15114:6764466,10568169 +g1,15114:6764466,10568169 +g1,15114:6436786,10568169 +(1,15114:6436786,10568169:0,0,0 +) +g1,15114:6764466,10568169 +) +g1,15116:7760328,10568169 +g1,15116:9088144,10568169 +h1,15116:9420098,10568169:0,0,0 +k1,15116:32583030,10568169:23162932 +g1,15116:32583030,10568169 +) +(1,15118:6764466,11384096:25818563,424439,112852 +(1,15117:6764466,11384096:0,0,0 +g1,15117:6764466,11384096 +g1,15117:6764466,11384096 +g1,15117:6436786,11384096 +(1,15117:6436786,11384096:0,0,0 +) +g1,15117:6764466,11384096 +) +k1,15118:6764466,11384096:0 +g1,15118:9752052,11384096 +g1,15118:10415960,11384096 +h1,15118:11079868,11384096:0,0,0 +k1,15118:32583028,11384096:21503160 +g1,15118:32583028,11384096 +) +(1,15122:6764466,12200023:25818563,424439,79822 +(1,15120:6764466,12200023:0,0,0 +g1,15120:6764466,12200023 +g1,15120:6764466,12200023 +g1,15120:6436786,12200023 +(1,15120:6436786,12200023:0,0,0 +) +g1,15120:6764466,12200023 +) +g1,15122:7760328,12200023 +g1,15122:9088144,12200023 +h1,15122:9420098,12200023:0,0,0 +k1,15122:32583030,12200023:23162932 +g1,15122:32583030,12200023 +) +(1,15124:6764466,13015950:25818563,424439,112852 +(1,15123:6764466,13015950:0,0,0 +g1,15123:6764466,13015950 +g1,15123:6764466,13015950 +g1,15123:6436786,13015950 +(1,15123:6436786,13015950:0,0,0 +) +g1,15123:6764466,13015950 +) +k1,15124:6764466,13015950:0 +g1,15124:10415960,13015950 +g1,15124:11079868,13015950 +g1,15124:12075730,13015950 +g1,15124:12739638,13015950 +g1,15124:13403546,13015950 +h1,15124:14399408,13015950:0,0,0 +k1,15124:32583028,13015950:18183620 +g1,15124:32583028,13015950 +) +(1,15128:6764466,13831877:25818563,424439,79822 +(1,15126:6764466,13831877:0,0,0 +g1,15126:6764466,13831877 +g1,15126:6764466,13831877 +g1,15126:6436786,13831877 +(1,15126:6436786,13831877:0,0,0 +) +g1,15126:6764466,13831877 +) +g1,15128:7760328,13831877 +g1,15128:9088144,13831877 +h1,15128:9420098,13831877:0,0,0 +k1,15128:32583030,13831877:23162932 +g1,15128:32583030,13831877 +) +(1,15130:6764466,14647804:25818563,424439,112852 +(1,15129:6764466,14647804:0,0,0 +g1,15129:6764466,14647804 +g1,15129:6764466,14647804 +g1,15129:6436786,14647804 +(1,15129:6436786,14647804:0,0,0 +) +g1,15129:6764466,14647804 +) +k1,15130:6764466,14647804:0 +g1,15130:11411822,14647804 +g1,15130:12075730,14647804 +h1,15130:13071592,14647804:0,0,0 +k1,15130:32583028,14647804:19511436 +g1,15130:32583028,14647804 +) +(1,15134:6764466,15463731:25818563,424439,79822 +(1,15132:6764466,15463731:0,0,0 +g1,15132:6764466,15463731 +g1,15132:6764466,15463731 +g1,15132:6436786,15463731 +(1,15132:6436786,15463731:0,0,0 +) +g1,15132:6764466,15463731 +) +g1,15134:7760328,15463731 +g1,15134:9088144,15463731 +h1,15134:9420098,15463731:0,0,0 +k1,15134:32583030,15463731:23162932 +g1,15134:32583030,15463731 +) +(1,15136:6764466,16279658:25818563,424439,112852 +(1,15135:6764466,16279658:0,0,0 +g1,15135:6764466,16279658 +g1,15135:6764466,16279658 +g1,15135:6436786,16279658 +(1,15135:6436786,16279658:0,0,0 +) +g1,15135:6764466,16279658 +) +k1,15136:6764466,16279658:0 +g1,15136:11411822,16279658 +g1,15136:12075730,16279658 +g1,15136:13071592,16279658 +g1,15136:13735500,16279658 +g1,15136:14399408,16279658 +h1,15136:15395270,16279658:0,0,0 +k1,15136:32583030,16279658:17187760 +g1,15136:32583030,16279658 +) +(1,15140:6764466,17095585:25818563,424439,79822 +(1,15138:6764466,17095585:0,0,0 +g1,15138:6764466,17095585 +g1,15138:6764466,17095585 +g1,15138:6436786,17095585 +(1,15138:6436786,17095585:0,0,0 +) +g1,15138:6764466,17095585 +) +g1,15140:7760328,17095585 +g1,15140:9088144,17095585 +h1,15140:9420098,17095585:0,0,0 +k1,15140:32583030,17095585:23162932 +g1,15140:32583030,17095585 +) +] +) +g1,15141:32583029,17175407 +g1,15141:6764466,17175407 +g1,15141:6764466,17175407 +g1,15141:32583029,17175407 +g1,15141:32583029,17175407 +) +h1,15141:6764466,17372015:0,0,0 +(1,15145:6764466,18237095:25818563,513147,134348 +h1,15144:6764466,18237095:983040,0,0 +k1,15144:8806644,18237095:241249 +k1,15144:12137917,18237095:241250 +k1,15144:14408161,18237095:241249 +(1,15144:14408161,18237095:0,452978,122846 +r1,15181:17228410,18237095:2820249,575824,122846 +k1,15144:14408161,18237095:-2820249 +) +(1,15144:14408161,18237095:2820249,452978,122846 +k1,15144:14408161,18237095:3277 +h1,15144:17225133,18237095:0,411205,112570 +) +k1,15144:17469659,18237095:241249 +k1,15144:20082656,18237095:241249 +k1,15144:20975334,18237095:241250 +k1,15144:21572443,18237095:241249 +k1,15144:23686711,18237095:241249 +k1,15144:26471413,18237095:241250 +k1,15144:27904107,18237095:241249 +k1,15144:28796784,18237095:241249 +k1,15144:29393893,18237095:241249 +k1,15144:30628669,18237095:241250 +k1,15144:31529210,18237095:241249 +k1,15145:32583029,18237095:0 +) +(1,15145:6764466,19102175:25818563,513147,126483 +k1,15144:8888621,19102175:198052 +k1,15144:11639956,19102175:198052 +k1,15144:15340252,19102175:198052 +k1,15144:16367334,19102175:198052 +k1,15144:17665080,19102175:198052 +(1,15144:17665080,19102175:0,452978,122846 +r1,15181:20485329,19102175:2820249,575824,122846 +k1,15144:17665080,19102175:-2820249 +) +(1,15144:17665080,19102175:2820249,452978,122846 +k1,15144:17665080,19102175:3277 +h1,15144:20482052,19102175:0,411205,112570 +) +k1,15144:20683381,19102175:198052 +k1,15144:21690803,19102175:198052 +k1,15144:23340477,19102175:198052 +k1,15144:26161935,19102175:198052 +k1,15144:27019279,19102175:198052 +k1,15144:27573191,19102175:198052 +k1,15144:28764769,19102175:198052 +k1,15144:29622113,19102175:198052 +k1,15144:32583029,19102175:0 +) +(1,15145:6764466,19967255:25818563,513147,134348 +k1,15144:7810526,19967255:203922 +k1,15144:9118730,19967255:203922 +k1,15144:10415137,19967255:203922 +(1,15144:10415137,19967255:0,452978,115847 +r1,15181:13235386,19967255:2820249,568825,115847 +k1,15144:10415137,19967255:-2820249 +) +(1,15144:10415137,19967255:2820249,452978,115847 +k1,15144:10415137,19967255:3277 +h1,15144:13232109,19967255:0,411205,112570 +) +k1,15144:13439308,19967255:203922 +k1,15144:14875307,19967255:203922 +k1,15144:17357917,19967255:203923 +h1,15144:18328505,19967255:0,0,0 +k1,15144:18532427,19967255:203922 +k1,15144:19545719,19967255:203922 +k1,15144:21247794,19967255:203922 +h1,15144:22443171,19967255:0,0,0 +k1,15144:23027857,19967255:203922 +k1,15144:24049668,19967255:203922 +k1,15144:26949086,19967255:203922 +(1,15144:26949086,19967255:0,452978,115847 +r1,15181:32583029,19967255:5633943,568825,115847 +k1,15144:26949086,19967255:-5633943 +) +(1,15144:26949086,19967255:5633943,452978,115847 +k1,15144:26949086,19967255:3277 +h1,15144:32579752,19967255:0,411205,112570 +) +k1,15144:32583029,19967255:0 +) +(1,15145:6764466,20832335:25818563,513147,115847 +g1,15144:7495192,20832335 +g1,15144:8760692,20832335 +g1,15144:12411047,20832335 +g1,15144:13478628,20832335 +g1,15144:14963673,20832335 +g1,15144:16638117,20832335 +g1,15144:17488774,20832335 +g1,15144:18780488,20832335 +(1,15144:18780488,20832335:0,452978,115847 +r1,15181:21600737,20832335:2820249,568825,115847 +k1,15144:18780488,20832335:-2820249 +) +(1,15144:18780488,20832335:2820249,452978,115847 +k1,15144:18780488,20832335:3277 +h1,15144:21597460,20832335:0,411205,112570 +) +g1,15144:21799966,20832335 +g1,15144:23393146,20832335 +g1,15144:23948235,20832335 +g1,15144:25140990,20832335 +g1,15144:25999511,20832335 +k1,15145:32583029,20832335:3657336 +g1,15145:32583029,20832335 +) +v1,15147:6764466,21517190:0,393216,0 +(1,15160:6764466,24272624:25818563,3148650,196608 +g1,15160:6764466,24272624 +g1,15160:6764466,24272624 +g1,15160:6567858,24272624 +(1,15160:6567858,24272624:0,3148650,196608 +r1,15181:32779637,24272624:26211779,3345258,196608 +k1,15160:6567857,24272624:-26211780 +) +(1,15160:6567858,24272624:26211779,3148650,196608 +[1,15160:6764466,24272624:25818563,2952042,0 +(1,15149:6764466,21745021:25818563,424439,112852 +(1,15148:6764466,21745021:0,0,0 +g1,15148:6764466,21745021 +g1,15148:6764466,21745021 +g1,15148:6436786,21745021 +(1,15148:6436786,21745021:0,0,0 +) +g1,15148:6764466,21745021 +) +k1,15149:6764466,21745021:0 +g1,15149:11411822,21745021 +g1,15149:12075730,21745021 +g1,15149:13071592,21745021 +g1,15149:13735500,21745021 +g1,15149:14399408,21745021 +g1,15149:15395270,21745021 +g1,15149:16059178,21745021 +g1,15149:16723086,21745021 +g1,15149:18050902,21745021 +h1,15149:20374580,21745021:0,0,0 +k1,15149:32583029,21745021:12208449 +g1,15149:32583029,21745021 +) +(1,15153:6764466,22560948:25818563,424439,79822 +(1,15151:6764466,22560948:0,0,0 +g1,15151:6764466,22560948 +g1,15151:6764466,22560948 +g1,15151:6436786,22560948 +(1,15151:6436786,22560948:0,0,0 +) +g1,15151:6764466,22560948 +) +g1,15153:7760328,22560948 +g1,15153:9088144,22560948 +g1,15153:9752052,22560948 +g1,15153:10415960,22560948 +h1,15153:10747914,22560948:0,0,0 +k1,15153:32583030,22560948:21835116 +g1,15153:32583030,22560948 +) +(1,15155:6764466,23376875:25818563,424439,106246 +(1,15154:6764466,23376875:0,0,0 +g1,15154:6764466,23376875 +g1,15154:6764466,23376875 +g1,15154:6436786,23376875 +(1,15154:6436786,23376875:0,0,0 +) +g1,15154:6764466,23376875 +) +k1,15155:6764466,23376875:0 +g1,15155:11411822,23376875 +g1,15155:12075730,23376875 +g1,15155:13071592,23376875 +g1,15155:13735500,23376875 +g1,15155:14399408,23376875 +g1,15155:15395270,23376875 +g1,15155:16059178,23376875 +g1,15155:16723086,23376875 +g1,15155:18050902,23376875 +h1,15155:23030211,23376875:0,0,0 +k1,15155:32583029,23376875:9552818 +g1,15155:32583029,23376875 +) +(1,15159:6764466,24192802:25818563,424439,79822 +(1,15157:6764466,24192802:0,0,0 +g1,15157:6764466,24192802 +g1,15157:6764466,24192802 +g1,15157:6436786,24192802 +(1,15157:6436786,24192802:0,0,0 +) +g1,15157:6764466,24192802 +) +g1,15159:7760328,24192802 +g1,15159:9088144,24192802 +g1,15159:9420098,24192802 +g1,15159:11079868,24192802 +g1,15159:13071592,24192802 +h1,15159:14731362,24192802:0,0,0 +k1,15159:32583030,24192802:17851668 +g1,15159:32583030,24192802 +) +] +) +g1,15160:32583029,24272624 +g1,15160:6764466,24272624 +g1,15160:6764466,24272624 +g1,15160:32583029,24272624 +g1,15160:32583029,24272624 +) +h1,15160:6764466,24469232:0,0,0 +] +g1,15163:32583029,24469232 +) +h1,15163:6630773,24469232:0,0,0 +(1,15166:6630773,25334312:25952256,513147,126483 +h1,15165:6630773,25334312:983040,0,0 +k1,15165:8488778,25334312:247130 +k1,15165:9754993,25334312:247130 +k1,15165:12993842,25334312:247130 +k1,15165:13857010,25334312:247130 +k1,15165:16858618,25334312:247130 +k1,15165:19888408,25334312:247131 +k1,15165:21003890,25334312:247130 +k1,15165:22963476,25334312:247130 +k1,15165:25335283,25334312:247130 +k1,15165:28074092,25334312:247130 +k1,15165:29915058,25334312:247130 +k1,15165:32583029,25334312:0 +) +(1,15166:6630773,26199392:25952256,513147,134348 +k1,15165:8371550,26199392:253765 +k1,15165:9729597,26199392:253765 +k1,15165:10731127,26199392:253764 +k1,15165:12785821,26199392:253765 +k1,15165:16608021,26199392:253765 +k1,15165:18597179,26199392:253765 +k1,15165:19870029,26199392:253765 +k1,15165:21777266,26199392:253764 +k1,15165:24288746,26199392:253765 +k1,15165:25978405,26199392:253765 +k1,15165:26891462,26199392:253765 +k1,15165:28085012,26199392:253764 +k1,15165:29495487,26199392:253765 +k1,15165:30853534,26199392:253765 +k1,15165:32583029,26199392:0 +) +(1,15166:6630773,27064472:25952256,513147,134348 +k1,15165:8619699,27064472:253533 +k1,15165:9532524,27064472:253533 +k1,15165:12532671,27064472:253533 +(1,15165:12532671,27064472:0,414482,115847 +r1,15181:12890937,27064472:358266,530329,115847 +k1,15165:12532671,27064472:-358266 +) +(1,15165:12532671,27064472:358266,414482,115847 +k1,15165:12532671,27064472:3277 +h1,15165:12887660,27064472:0,411205,112570 +) +k1,15165:13144470,27064472:253533 +k1,15165:14159531,27064472:253533 +k1,15165:17310411,27064472:253533 +k1,15165:20167689,27064472:253533 +k1,15165:21187338,27064472:253533 +k1,15165:24633785,27064472:253533 +k1,15165:26479188,27064472:253533 +k1,15165:28833805,27064472:253533 +k1,15165:30278783,27064472:253533 +k1,15166:32583029,27064472:0 +) +(1,15166:6630773,27929552:25952256,505283,134348 +k1,15165:8421568,27929552:193027 +k1,15165:10349988,27929552:193027 +k1,15165:13619930,27929552:193027 +(1,15165:13619930,27929552:0,414482,115847 +r1,15181:13978196,27929552:358266,530329,115847 +k1,15165:13619930,27929552:-358266 +) +(1,15165:13619930,27929552:358266,414482,115847 +k1,15165:13619930,27929552:3277 +h1,15165:13974919,27929552:0,411205,112570 +) +k1,15165:14171223,27929552:193027 +k1,15165:15555695,27929552:193027 +(1,15165:15555695,27929552:0,414482,115847 +r1,15181:15913961,27929552:358266,530329,115847 +k1,15165:15555695,27929552:-358266 +) +(1,15165:15555695,27929552:358266,414482,115847 +k1,15165:15555695,27929552:3277 +h1,15165:15910684,27929552:0,411205,112570 +) +k1,15165:16389908,27929552:193027 +k1,15165:17779622,27929552:193027 +k1,15165:20056694,27929552:193027 +k1,15165:24451234,27929552:193027 +k1,15165:25260299,27929552:193027 +k1,15165:26887254,27929552:193027 +k1,15165:27495118,27929552:193021 +k1,15165:29700100,27929552:193027 +k1,15165:32583029,27929552:0 +) +(1,15166:6630773,28794632:25952256,513147,126483 +k1,15165:7660646,28794632:268345 +k1,15165:9997306,28794632:268344 +k1,15165:10924943,28794632:268345 +k1,15165:15221131,28794632:268345 +k1,15165:16214303,28794632:268344 +k1,15165:16940745,28794632:268345 +k1,15165:17740587,28794632:268345 +k1,15165:19294748,28794632:268345 +k1,15165:22193052,28794632:268344 +k1,15165:23112825,28794632:268345 +k1,15165:25815177,28794632:268345 +k1,15165:27775661,28794632:268344 +k1,15165:31839851,28794632:268345 +k1,15165:32583029,28794632:0 +) +(1,15166:6630773,29659712:25952256,513147,134348 +g1,15165:10184790,29659712 +g1,15165:11403104,29659712 +g1,15165:12694818,29659712 +g1,15165:13561203,29659712 +(1,15165:13561203,29659712:0,414482,115847 +r1,15181:13919469,29659712:358266,530329,115847 +k1,15165:13561203,29659712:-358266 +) +(1,15165:13561203,29659712:358266,414482,115847 +k1,15165:13561203,29659712:3277 +h1,15165:13916192,29659712:0,411205,112570 +) +g1,15165:14118698,29659712 +g1,15165:15509372,29659712 +k1,15166:32583029,29659712:13167056 +g1,15166:32583029,29659712 +) +(1,15168:6630773,30524792:25952256,513147,126483 +h1,15167:6630773,30524792:983040,0,0 +k1,15167:9094509,30524792:284009 +k1,15167:11031991,30524792:284009 +k1,15167:13957757,30524792:284010 +k1,15167:14927928,30524792:284009 +k1,15167:16159588,30524792:284009 +k1,15167:19719742,30524792:284009 +k1,15167:23080666,30524792:284009 +k1,15167:24356236,30524792:284010 +k1,15167:26153471,30524792:284009 +k1,15167:27385131,30524792:284009 +k1,15167:29656847,30524792:284009 +k1,15167:32583029,30524792:0 +) +(1,15168:6630773,31389872:25952256,513147,134348 +k1,15167:8911247,31389872:215435 +k1,15167:9482541,31389872:215434 +k1,15167:12415099,31389872:215435 +k1,15167:15272290,31389872:215435 +k1,15167:16479285,31389872:215435 +k1,15167:20284781,31389872:215434 +k1,15167:23617108,31389872:215435 +k1,15167:24483971,31389872:215435 +k1,15167:27242858,31389872:215435 +k1,15167:29716007,31389872:215434 +k1,15167:31714677,31389872:215435 +k1,15167:32583029,31389872:0 +) +(1,15168:6630773,32254952:25952256,513147,134348 +k1,15167:8544928,32254952:176140 +k1,15167:9491772,32254952:176141 +k1,15167:12944057,32254952:176140 +k1,15167:16194492,32254952:176141 +k1,15167:17655138,32254952:176140 +k1,15167:19600096,32254952:176141 +k1,15167:20524002,32254952:176140 +k1,15167:24290205,32254952:176141 +k1,15167:25152507,32254952:176140 +k1,15167:27066663,32254952:176141 +k1,15167:28564664,32254952:176140 +k1,15167:29400097,32254952:176141 +k1,15167:30595322,32254952:176140 +k1,15167:32583029,32254952:0 +) +(1,15168:6630773,33120032:25952256,513147,126483 +k1,15167:9425789,33120032:251564 +k1,15167:10545705,33120032:251564 +k1,15167:12327536,33120032:251565 +k1,15167:13230528,33120032:251564 +k1,15167:16380749,33120032:251564 +k1,15167:17090410,33120032:251564 +k1,15167:18103503,33120032:251565 +k1,15167:20423383,33120032:251564 +k1,15167:21334239,33120032:251564 +k1,15167:22604888,33120032:251564 +k1,15167:25316674,33120032:251564 +k1,15167:28263735,33120032:251565 +(1,15167:28263735,33120032:0,452978,115847 +r1,15181:29325424,33120032:1061689,568825,115847 +k1,15167:28263735,33120032:-1061689 +) +(1,15167:28263735,33120032:1061689,452978,115847 +k1,15167:28263735,33120032:3277 +h1,15167:29322147,33120032:0,411205,112570 +) +k1,15167:29750658,33120032:251564 +k1,15167:31198909,33120032:251564 +k1,15167:32583029,33120032:0 +) +(1,15168:6630773,33985112:25952256,513147,126483 +k1,15167:7969733,33985112:166521 +k1,15167:11127973,33985112:166521 +k1,15167:13255330,33985112:166520 +k1,15167:16295605,33985112:166521 +k1,15167:17409777,33985112:166521 +k1,15167:19894306,33985112:166521 +k1,15167:21454778,33985112:166521 +k1,15167:22996900,33985112:166521 +k1,15167:24320130,33985112:166520 +k1,15167:28252350,33985112:166521 +k1,15167:31103881,33985112:166521 +k1,15167:32583029,33985112:0 +) +(1,15168:6630773,34850192:25952256,513147,126483 +k1,15167:9784092,34850192:279565 +k1,15167:11209883,34850192:279566 +k1,15167:13359846,34850192:279565 +k1,15167:14658496,34850192:279565 +k1,15167:18703761,34850192:279566 +k1,15167:21494666,34850192:279565 +k1,15167:22906693,34850192:279565 +k1,15167:23934025,34850192:279566 +k1,15167:27422233,34850192:279565 +k1,15167:28511168,34850192:279565 +k1,15167:29809819,34850192:279566 +k1,15167:30884991,34850192:279565 +k1,15167:32583029,34850192:0 +) +(1,15168:6630773,35715272:25952256,513147,134348 +k1,15167:8864568,35715272:299172 +k1,15167:10182824,35715272:299171 +k1,15167:12469703,35715272:299172 +k1,15167:13420302,35715272:299171 +k1,15167:15282508,35715272:299172 +k1,15167:16209514,35715272:299171 +k1,15167:17527771,35715272:299172 +k1,15167:19133076,35715272:299172 +k1,15167:20799328,35715272:299171 +k1,15167:23140602,35715272:299172 +k1,15167:24308125,35715272:299171 +k1,15167:26137563,35715272:299172 +k1,15167:27088162,35715272:299171 +k1,15167:30284681,35715272:299172 +k1,15167:32583029,35715272:0 +) +(1,15168:6630773,36580352:25952256,513147,126483 +k1,15167:7924181,36580352:274323 +k1,15167:10864508,36580352:274322 +k1,15167:11798123,36580352:274323 +k1,15167:13091531,36580352:274323 +k1,15167:14538292,36580352:274322 +k1,15167:17654256,36580352:274323 +k1,15167:19196045,36580352:274323 +k1,15167:20979006,36580352:274322 +k1,15167:22792114,36580352:274323 +k1,15167:25596127,36580352:274323 +k1,15167:28972268,36580352:274322 +k1,15167:30626779,36580352:274323 +k1,15167:32583029,36580352:0 +) +(1,15168:6630773,37445432:25952256,505283,126483 +k1,15167:7608625,37445432:230086 +k1,15167:11428773,37445432:230086 +k1,15167:12345021,37445432:230086 +k1,15167:13747546,37445432:230086 +k1,15167:16680337,37445432:230086 +k1,15167:20676122,37445432:230086 +k1,15167:23747848,37445432:230085 +k1,15167:24593972,37445432:230086 +k1,15167:25843143,37445432:230086 +k1,15167:28234606,37445432:230086 +k1,15167:29092527,37445432:230086 +k1,15167:30341698,37445432:230086 +k1,15167:32583029,37445432:0 +) +(1,15168:6630773,38310512:25952256,513147,126483 +k1,15167:8367239,38310512:195715 +(1,15167:8367239,38310512:0,452978,122846 +r1,15181:10132352,38310512:1765113,575824,122846 +k1,15167:8367239,38310512:-1765113 +) +(1,15167:8367239,38310512:1765113,452978,122846 +k1,15167:8367239,38310512:3277 +h1,15167:10129075,38310512:0,411205,112570 +) +k1,15167:10328067,38310512:195715 +k1,15167:12694334,38310512:195715 +k1,15167:13637815,38310512:195715 +k1,15167:17423592,38310512:195715 +k1,15167:18305469,38310512:195715 +k1,15167:19823046,38310512:195716 +k1,15167:20678053,38310512:195715 +k1,15167:21892853,38310512:195715 +k1,15167:24076275,38310512:195715 +k1,15167:26989113,38310512:195715 +k1,15167:28376273,38310512:195715 +k1,15167:32583029,38310512:0 +) +(1,15168:6630773,39175592:25952256,505283,126483 +k1,15167:8349961,39175592:226278 +k1,15167:9642509,39175592:226277 +k1,15167:12160581,39175592:226278 +k1,15167:15613852,39175592:226278 +k1,15167:19322713,39175592:226278 +k1,15167:21819813,39175592:226277 +k1,15167:23539001,39175592:226278 +k1,15167:24784364,39175592:226278 +k1,15167:28450627,39175592:226278 +k1,15167:30882191,39175592:226277 +k1,15167:31794631,39175592:226278 +k1,15167:32583029,39175592:0 +) +(1,15168:6630773,40040672:25952256,426639,134348 +k1,15168:32583029,40040672:22827500 +g1,15168:32583029,40040672 +) +v1,15170:6630773,40725527:0,393216,0 +(1,15175:6630773,41751065:25952256,1418754,196608 +g1,15175:6630773,41751065 +g1,15175:6630773,41751065 +g1,15175:6434165,41751065 +(1,15175:6434165,41751065:0,1418754,196608 +r1,15181:32779637,41751065:26345472,1615362,196608 +k1,15175:6434165,41751065:-26345472 +) +(1,15175:6434165,41751065:26345472,1418754,196608 +[1,15175:6630773,41751065:25952256,1222146,0 +(1,15172:6630773,40953358:25952256,424439,106246 +(1,15171:6630773,40953358:0,0,0 +g1,15171:6630773,40953358 +g1,15171:6630773,40953358 +g1,15171:6303093,40953358 +(1,15171:6303093,40953358:0,0,0 +) +g1,15171:6630773,40953358 +) +g1,15172:7294681,40953358 +g1,15172:7958589,40953358 +g1,15172:9618359,40953358 +g1,15172:10282267,40953358 +h1,15172:11278129,40953358:0,0,0 +k1,15172:32583029,40953358:21304900 +g1,15172:32583029,40953358 +) +(1,15173:6630773,41638213:25952256,424439,112852 +h1,15173:6630773,41638213:0,0,0 +g1,15173:7294681,41638213 +g1,15173:7958589,41638213 +g1,15173:10282267,41638213 +g1,15173:10946175,41638213 +h1,15173:11942037,41638213:0,0,0 +k1,15173:32583029,41638213:20640992 +g1,15173:32583029,41638213 +) +] +) +g1,15175:32583029,41751065 +g1,15175:6630773,41751065 +g1,15175:6630773,41751065 +g1,15175:32583029,41751065 +g1,15175:32583029,41751065 +) +h1,15175:6630773,41947673:0,0,0 +(1,15179:6630773,42812753:25952256,513147,134348 +h1,15178:6630773,42812753:983040,0,0 +k1,15178:8202762,42812753:174106 +k1,15178:10920346,42812753:174132 +k1,15178:13178522,42812753:174131 +k1,15178:15364609,42812753:174132 +k1,15178:18925641,42812753:174131 +k1,15178:20668049,42812753:174131 +k1,15178:21789832,42812753:174132 +k1,15178:25213238,42812753:174131 +k1,15178:28852914,42812753:174132 +k1,15178:31043588,42812753:174131 +k1,15178:32583029,42812753:0 +) +(1,15179:6630773,43677833:25952256,513147,134348 +k1,15178:8571221,43677833:258794 +k1,15178:13161945,43677833:258794 +k1,15178:14989016,43677833:258794 +k1,15178:15907102,43677833:258794 +k1,15178:18810930,43677833:258795 +k1,15178:22117148,43677833:258794 +k1,15178:24261413,43677833:258794 +k1,15178:25467858,43677833:258794 +k1,15178:28412973,43677833:258794 +k1,15178:32583029,43677833:0 +) +(1,15179:6630773,44542913:25952256,505283,134348 +k1,15178:9267001,44542913:217294 +k1,15178:11205269,44542913:217293 +k1,15178:13451558,44542913:217294 +k1,15178:14860296,44542913:217293 +k1,15178:16181872,44542913:217294 +k1,15178:19028470,44542913:217294 +k1,15178:21421558,44542913:217293 +k1,15178:22456741,44542913:217294 +k1,15178:24113861,44542913:217294 +k1,15178:26360149,44542913:217293 +k1,15178:29324057,44542913:217294 +(1,15178:29324057,44542913:0,414482,115847 +r1,15181:29682323,44542913:358266,530329,115847 +k1,15178:29324057,44542913:-358266 +) +(1,15178:29324057,44542913:358266,414482,115847 +k1,15178:29324057,44542913:3277 +h1,15178:29679046,44542913:0,411205,112570 +) +k1,15178:29899616,44542913:217293 +k1,15178:31837885,44542913:217294 +k1,15178:32583029,44542913:0 +) +(1,15179:6630773,45407993:25952256,513147,134348 +k1,15178:8377963,45407993:179569 +k1,15178:10675655,45407993:179568 +k1,15178:11506652,45407993:179569 +k1,15178:14583567,45407993:179568 +k1,15178:17294792,45407993:179569 +k1,15178:18240477,45407993:179569 +k1,15178:19439130,45407993:179568 +k1,15178:23084243,45407993:179569 +k1,15178:25106684,45407993:179569 +k1,15178:25902290,45407993:179568 +k1,15178:26437719,45407993:179569 +k1,15178:27707151,45407993:179568 +k1,15178:30542894,45407993:179569 +k1,15179:32583029,45407993:0 +k1,15179:32583029,45407993:0 +) +] +(1,15181:32583029,45706769:0,0,0 +g1,15181:32583029,45706769 +) +) +] +(1,15181:6630773,47279633:25952256,0,0 +h1,15181:6630773,47279633:25952256,0,0 +) +] +(1,15181:4262630,4025873:0,0,0 +[1,15181:-473656,4025873:0,0,0 +(1,15181:-473656,-710413:0,0,0 +(1,15181:-473656,-710413:0,0,0 +g1,15181:-473656,-710413 +) +g1,15181:-473656,-710413 +) +] +) +] +!29334 +}244 Input:2604:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2605:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2606:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2607:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{244 -[1,15288:4262630,47279633:28320399,43253760,0 -(1,15288:4262630,4025873:0,0,0 -[1,15288:-473656,4025873:0,0,0 -(1,15288:-473656,-710413:0,0,0 -(1,15288:-473656,-644877:0,0,0 -k1,15288:-473656,-644877:-65536 +{245 +[1,15286:4262630,47279633:28320399,43253760,0 +(1,15286:4262630,4025873:0,0,0 +[1,15286:-473656,4025873:0,0,0 +(1,15286:-473656,-710413:0,0,0 +(1,15286:-473656,-644877:0,0,0 +k1,15286:-473656,-644877:-65536 ) -(1,15288:-473656,4736287:0,0,0 -k1,15288:-473656,4736287:5209943 +(1,15286:-473656,4736287:0,0,0 +k1,15286:-473656,4736287:5209943 ) -g1,15288:-473656,-710413 +g1,15286:-473656,-710413 ) ] ) -[1,15288:6630773,47279633:25952256,43253760,0 -[1,15288:6630773,4812305:25952256,786432,0 -(1,15288:6630773,4812305:25952256,505283,11795 -(1,15288:6630773,4812305:25952256,505283,11795 -g1,15288:3078558,4812305 -[1,15288:3078558,4812305:0,0,0 -(1,15288:3078558,2439708:0,1703936,0 -k1,15288:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15288:2537886,2439708:1179648,16384,0 +[1,15286:6630773,47279633:25952256,43253760,0 +[1,15286:6630773,4812305:25952256,786432,0 +(1,15286:6630773,4812305:25952256,505283,11795 +(1,15286:6630773,4812305:25952256,505283,11795 +g1,15286:3078558,4812305 +[1,15286:3078558,4812305:0,0,0 +(1,15286:3078558,2439708:0,1703936,0 +k1,15286:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15286:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15288:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15286:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15288:3078558,4812305:0,0,0 -(1,15288:3078558,2439708:0,1703936,0 -g1,15288:29030814,2439708 -g1,15288:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15288:36151628,1915420:16384,1179648,0 +[1,15286:3078558,4812305:0,0,0 +(1,15286:3078558,2439708:0,1703936,0 +g1,15286:29030814,2439708 +g1,15286:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15286:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15288:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15286:37855564,2439708:1179648,16384,0 ) ) -k1,15288:3078556,2439708:-34777008 +k1,15286:3078556,2439708:-34777008 ) ] -[1,15288:3078558,4812305:0,0,0 -(1,15288:3078558,49800853:0,16384,2228224 -k1,15288:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15288:2537886,49800853:1179648,16384,0 +[1,15286:3078558,4812305:0,0,0 +(1,15286:3078558,49800853:0,16384,2228224 +k1,15286:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15286:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15288:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15286:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15288:3078558,4812305:0,0,0 -(1,15288:3078558,49800853:0,16384,2228224 -g1,15288:29030814,49800853 -g1,15288:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15288:36151628,51504789:16384,1179648,0 +[1,15286:3078558,4812305:0,0,0 +(1,15286:3078558,49800853:0,16384,2228224 +g1,15286:29030814,49800853 +g1,15286:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15286:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15288:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15286:37855564,49800853:1179648,16384,0 ) ) -k1,15288:3078556,49800853:-34777008 +k1,15286:3078556,49800853:-34777008 ) ] -g1,15288:6630773,4812305 -g1,15288:6630773,4812305 -g1,15288:8691224,4812305 -g1,15288:11834330,4812305 -k1,15288:31387652,4812305:19553322 +g1,15286:6630773,4812305 +g1,15286:6630773,4812305 +g1,15286:8691224,4812305 +g1,15286:11834330,4812305 +k1,15286:31387652,4812305:19553322 ) ) ] -[1,15288:6630773,45706769:25952256,40108032,0 -(1,15288:6630773,45706769:25952256,40108032,0 -(1,15288:6630773,45706769:0,0,0 -g1,15288:6630773,45706769 +[1,15286:6630773,45706769:25952256,40108032,0 +(1,15286:6630773,45706769:25952256,40108032,0 +(1,15286:6630773,45706769:0,0,0 +g1,15286:6630773,45706769 ) -[1,15288:6630773,45706769:25952256,40108032,0 -v1,15183:6630773,6254097:0,393216,0 -(1,15187:6630773,6571658:25952256,710777,196608 -g1,15187:6630773,6571658 -g1,15187:6630773,6571658 -g1,15187:6434165,6571658 -(1,15187:6434165,6571658:0,710777,196608 -r1,15288:32779637,6571658:26345472,907385,196608 -k1,15187:6434165,6571658:-26345472 -) -(1,15187:6434165,6571658:26345472,710777,196608 -[1,15187:6630773,6571658:25952256,514169,0 -(1,15185:6630773,6465412:25952256,407923,106246 -(1,15184:6630773,6465412:0,0,0 -g1,15184:6630773,6465412 -g1,15184:6630773,6465412 -g1,15184:6303093,6465412 -(1,15184:6303093,6465412:0,0,0 -) -g1,15184:6630773,6465412 -) -g1,15185:7294681,6465412 -g1,15185:7958589,6465412 -g1,15185:8954451,6465412 -g1,15185:9618359,6465412 -g1,15185:10614221,6465412 -g1,15185:11278129,6465412 -g1,15185:12273991,6465412 -g1,15185:12937899,6465412 -g1,15185:14929623,6465412 -g1,15185:15593531,6465412 -g1,15185:17585255,6465412 -g1,15185:18249163,6465412 -g1,15185:20240887,6465412 -g1,15185:20904795,6465412 -h1,15185:23560427,6465412:0,0,0 -k1,15185:32583029,6465412:9022602 -g1,15185:32583029,6465412 -) -] -) -g1,15187:32583029,6571658 -g1,15187:6630773,6571658 -g1,15187:6630773,6571658 -g1,15187:32583029,6571658 -g1,15187:32583029,6571658 -) -h1,15187:6630773,6768266:0,0,0 -(1,15191:6630773,7633346:25952256,505283,126483 -h1,15190:6630773,7633346:983040,0,0 -g1,15190:9039221,7633346 -g1,15190:9986216,7633346 -g1,15190:12904534,7633346 -g1,15190:13865291,7633346 -g1,15190:14420380,7633346 -g1,15190:16974973,7633346 -k1,15191:32583029,7633346:12250647 -g1,15191:32583029,7633346 -) -v1,15193:6630773,8318201:0,393216,0 -(1,15197:6630773,8635762:25952256,710777,196608 -g1,15197:6630773,8635762 -g1,15197:6630773,8635762 -g1,15197:6434165,8635762 -(1,15197:6434165,8635762:0,710777,196608 -r1,15288:32779637,8635762:26345472,907385,196608 -k1,15197:6434165,8635762:-26345472 -) -(1,15197:6434165,8635762:26345472,710777,196608 -[1,15197:6630773,8635762:25952256,514169,0 -(1,15195:6630773,8529516:25952256,407923,106246 -(1,15194:6630773,8529516:0,0,0 -g1,15194:6630773,8529516 -g1,15194:6630773,8529516 -g1,15194:6303093,8529516 -(1,15194:6303093,8529516:0,0,0 -) -g1,15194:6630773,8529516 -) -g1,15195:7294681,8529516 -g1,15195:7958589,8529516 -g1,15195:8954451,8529516 -g1,15195:9618359,8529516 -g1,15195:10614221,8529516 -g1,15195:11278129,8529516 -h1,15195:11942037,8529516:0,0,0 -k1,15195:32583029,8529516:20640992 -g1,15195:32583029,8529516 -) -] -) -g1,15197:32583029,8635762 -g1,15197:6630773,8635762 -g1,15197:6630773,8635762 -g1,15197:32583029,8635762 -g1,15197:32583029,8635762 -) -h1,15197:6630773,8832370:0,0,0 -(1,15201:6630773,9697450:25952256,513147,126483 -h1,15200:6630773,9697450:983040,0,0 -k1,15200:9585355,9697450:188307 -k1,15200:10792746,9697450:188306 -k1,15200:12968760,9697450:188307 -k1,15200:13808494,9697450:188306 -k1,15200:14744567,9697450:188307 -k1,15200:17764684,9697450:188306 -k1,15200:19445901,9697450:188307 -k1,15200:20700479,9697450:188307 -k1,15200:23226454,9697450:188306 -k1,15200:24180877,9697450:188307 -k1,15200:26999143,9697450:188306 -k1,15200:30652994,9697450:188307 -k1,15200:32583029,9697450:0 -) -(1,15201:6630773,10562530:25952256,513147,126483 -k1,15200:7631770,10562530:158859 -k1,15200:8894911,10562530:158859 -k1,15200:11765650,10562530:158859 -k1,15200:12943594,10562530:158859 -k1,15200:15457816,10562530:158858 -k1,15200:18306273,10562530:158859 -k1,15200:19859083,10562530:158859 -k1,15200:24045785,10562530:158859 -k1,15200:26245435,10562530:158859 -k1,15200:29709275,10562530:158859 -k1,15200:32583029,10562530:0 -) -(1,15201:6630773,11427610:25952256,505283,134348 -g1,15200:7821562,11427610 -g1,15200:10096316,11427610 -g1,15200:12030938,11427610 -g1,15200:14585531,11427610 -g1,15200:15976205,11427610 -g1,15200:18640898,11427610 -k1,15201:32583029,11427610:11200105 -g1,15201:32583029,11427610 -) -v1,15203:6630773,12112465:0,393216,0 -(1,15208:6630773,13131397:25952256,1412148,196608 -g1,15208:6630773,13131397 -g1,15208:6630773,13131397 -g1,15208:6434165,13131397 -(1,15208:6434165,13131397:0,1412148,196608 -r1,15288:32779637,13131397:26345472,1608756,196608 -k1,15208:6434165,13131397:-26345472 -) -(1,15208:6434165,13131397:26345472,1412148,196608 -[1,15208:6630773,13131397:25952256,1215540,0 -(1,15205:6630773,12340296:25952256,424439,106246 -(1,15204:6630773,12340296:0,0,0 -g1,15204:6630773,12340296 -g1,15204:6630773,12340296 -g1,15204:6303093,12340296 -(1,15204:6303093,12340296:0,0,0 -) -g1,15204:6630773,12340296 -) -g1,15205:7294681,12340296 -g1,15205:7958589,12340296 -g1,15205:8954451,12340296 -g1,15205:9618359,12340296 -g1,15205:10946175,12340296 -g1,15205:11610083,12340296 -h1,15205:12605945,12340296:0,0,0 -k1,15205:32583029,12340296:19977084 -g1,15205:32583029,12340296 -) -(1,15206:6630773,13025151:25952256,407923,106246 -h1,15206:6630773,13025151:0,0,0 -g1,15206:7294681,13025151 -g1,15206:7958589,13025151 -g1,15206:8954451,13025151 -g1,15206:9618359,13025151 -g1,15206:10614221,13025151 -g1,15206:11278129,13025151 -g1,15206:12273991,13025151 -g1,15206:12937899,13025151 -h1,15206:14597669,13025151:0,0,0 -k1,15206:32583029,13025151:17985360 -g1,15206:32583029,13025151 -) -] -) -g1,15208:32583029,13131397 -g1,15208:6630773,13131397 -g1,15208:6630773,13131397 -g1,15208:32583029,13131397 -g1,15208:32583029,13131397 -) -h1,15208:6630773,13328005:0,0,0 -v1,15212:6630773,14012860:0,393216,0 -(1,15217:6630773,15031792:25952256,1412148,196608 -g1,15217:6630773,15031792 -g1,15217:6630773,15031792 -g1,15217:6434165,15031792 -(1,15217:6434165,15031792:0,1412148,196608 -r1,15288:32779637,15031792:26345472,1608756,196608 -k1,15217:6434165,15031792:-26345472 -) -(1,15217:6434165,15031792:26345472,1412148,196608 -[1,15217:6630773,15031792:25952256,1215540,0 -(1,15214:6630773,14240691:25952256,424439,106246 -(1,15213:6630773,14240691:0,0,0 -g1,15213:6630773,14240691 -g1,15213:6630773,14240691 -g1,15213:6303093,14240691 -(1,15213:6303093,14240691:0,0,0 -) -g1,15213:6630773,14240691 -) -g1,15214:7294681,14240691 -g1,15214:7958589,14240691 -g1,15214:8954451,14240691 -g1,15214:9618359,14240691 -g1,15214:10946175,14240691 -g1,15214:11610083,14240691 -h1,15214:12605945,14240691:0,0,0 -k1,15214:32583029,14240691:19977084 -g1,15214:32583029,14240691 -) -(1,15215:6630773,14925546:25952256,407923,106246 -h1,15215:6630773,14925546:0,0,0 -g1,15215:7294681,14925546 -g1,15215:7958589,14925546 -g1,15215:8954451,14925546 -g1,15215:9618359,14925546 -g1,15215:10614221,14925546 -g1,15215:11278129,14925546 -g1,15215:12273991,14925546 -g1,15215:12937899,14925546 -g1,15215:14929623,14925546 -g1,15215:15593531,14925546 -h1,15215:17253301,14925546:0,0,0 -k1,15215:32583029,14925546:15329728 -g1,15215:32583029,14925546 -) -] -) -g1,15217:32583029,15031792 -g1,15217:6630773,15031792 -g1,15217:6630773,15031792 -g1,15217:32583029,15031792 -g1,15217:32583029,15031792 -) -h1,15217:6630773,15228400:0,0,0 -(1,15221:6630773,16093480:25952256,513147,126483 -h1,15220:6630773,16093480:983040,0,0 -k1,15220:9000369,16093480:189869 -(1,15220:9000369,16093480:0,424981,115847 -r1,15288:9358635,16093480:358266,540828,115847 -k1,15220:9000369,16093480:-358266 -) -(1,15220:9000369,16093480:358266,424981,115847 -k1,15220:9000369,16093480:3277 -h1,15220:9355358,16093480:0,411205,112570 -) -k1,15220:9548505,16093480:189870 -k1,15220:12484988,16093480:189869 -k1,15220:15435233,16093480:189869 -k1,15220:15980963,16093480:189870 -k1,15220:18526196,16093480:189869 -k1,15220:21405663,16093480:189869 -k1,15220:22246960,16093480:189869 -k1,15220:23921220,16093480:189870 -k1,15220:25130174,16093480:189869 -k1,15220:27059369,16093480:189869 -k1,15220:27908531,16093480:189870 -k1,15220:29117485,16093480:189869 -k1,15220:32583029,16093480:0 -) -(1,15221:6630773,16958560:25952256,513147,7863 -g1,15220:8672874,16958560 -g1,15220:11630513,16958560 -g1,15220:12445780,16958560 -g1,15220:13000869,16958560 -k1,15221:32583030,16958560:16986280 -g1,15221:32583030,16958560 -) -v1,15223:6630773,17643415:0,393216,0 -(1,15228:6630773,18662347:25952256,1412148,196608 -g1,15228:6630773,18662347 -g1,15228:6630773,18662347 -g1,15228:6434165,18662347 -(1,15228:6434165,18662347:0,1412148,196608 -r1,15288:32779637,18662347:26345472,1608756,196608 -k1,15228:6434165,18662347:-26345472 -) -(1,15228:6434165,18662347:26345472,1412148,196608 -[1,15228:6630773,18662347:25952256,1215540,0 -(1,15225:6630773,17871246:25952256,424439,106246 -(1,15224:6630773,17871246:0,0,0 -g1,15224:6630773,17871246 -g1,15224:6630773,17871246 -g1,15224:6303093,17871246 -(1,15224:6303093,17871246:0,0,0 -) -g1,15224:6630773,17871246 -) -g1,15225:7294681,17871246 -g1,15225:7958589,17871246 -g1,15225:9286405,17871246 -g1,15225:9950313,17871246 -g1,15225:10946175,17871246 -g1,15225:11610083,17871246 -h1,15225:13269853,17871246:0,0,0 -k1,15225:32583029,17871246:19313176 -g1,15225:32583029,17871246 -) -(1,15226:6630773,18556101:25952256,407923,106246 -h1,15226:6630773,18556101:0,0,0 -g1,15226:7294681,18556101 -g1,15226:7958589,18556101 -g1,15226:8954451,18556101 -g1,15226:9618359,18556101 -g1,15226:10614221,18556101 -g1,15226:11278129,18556101 -g1,15226:12273991,18556101 -g1,15226:12937899,18556101 -g1,15226:14929623,18556101 -g1,15226:15593531,18556101 -g1,15226:17585255,18556101 -g1,15226:18249163,18556101 -h1,15226:19908933,18556101:0,0,0 -k1,15226:32583029,18556101:12674096 -g1,15226:32583029,18556101 -) -] -) -g1,15228:32583029,18662347 -g1,15228:6630773,18662347 -g1,15228:6630773,18662347 -g1,15228:32583029,18662347 -g1,15228:32583029,18662347 -) -h1,15228:6630773,18858955:0,0,0 -(1,15232:6630773,19724035:25952256,513147,134348 -h1,15231:6630773,19724035:983040,0,0 -k1,15231:10666494,19724035:191379 -(1,15231:10666494,19724035:0,452978,115847 -r1,15288:12079895,19724035:1413401,568825,115847 -k1,15231:10666494,19724035:-1413401 -) -(1,15231:10666494,19724035:1413401,452978,115847 -k1,15231:10666494,19724035:3277 -h1,15231:12076618,19724035:0,411205,112570 -) -k1,15231:12271274,19724035:191379 -k1,15231:13566935,19724035:191379 -k1,15231:15044130,19724035:191379 -k1,15231:15983275,19724035:191379 -k1,15231:17687880,19724035:191379 -k1,15231:18565421,19724035:191379 -k1,15231:19112661,19724035:191380 -k1,15231:21994293,19724035:191379 -k1,15231:23133323,19724035:191379 -k1,15231:26305279,19724035:191379 -k1,15231:27872259,19724035:191379 -k1,15231:29755778,19724035:191379 -k1,15231:30606449,19724035:191379 -k1,15231:31563944,19724035:191379 -k1,15231:32583029,19724035:0 -) -(1,15232:6630773,20589115:25952256,513147,126483 -g1,15231:9459962,20589115 -g1,15231:13124735,20589115 -g1,15231:15166836,20589115 -g1,15231:15982103,20589115 -g1,15231:16537192,20589115 -k1,15232:32583029,20589115:13449956 -g1,15232:32583029,20589115 -) -v1,15234:6630773,21273970:0,393216,0 -(1,15238:6630773,21608047:25952256,727293,196608 -g1,15238:6630773,21608047 -g1,15238:6630773,21608047 -g1,15238:6434165,21608047 -(1,15238:6434165,21608047:0,727293,196608 -r1,15288:32779637,21608047:26345472,923901,196608 -k1,15238:6434165,21608047:-26345472 -) -(1,15238:6434165,21608047:26345472,727293,196608 -[1,15238:6630773,21608047:25952256,530685,0 -(1,15236:6630773,21501801:25952256,424439,106246 -(1,15235:6630773,21501801:0,0,0 -g1,15235:6630773,21501801 -g1,15235:6630773,21501801 -g1,15235:6303093,21501801 -(1,15235:6303093,21501801:0,0,0 -) -g1,15235:6630773,21501801 -) -g1,15236:7294681,21501801 -g1,15236:7958589,21501801 -g1,15236:8954451,21501801 -g1,15236:9618359,21501801 -g1,15236:10614221,21501801 -g1,15236:11278129,21501801 -g1,15236:12273991,21501801 -g1,15236:13933761,21501801 -h1,15236:14597669,21501801:0,0,0 -k1,15236:32583029,21501801:17985360 -g1,15236:32583029,21501801 -) -] -) -g1,15238:32583029,21608047 -g1,15238:6630773,21608047 -g1,15238:6630773,21608047 -g1,15238:32583029,21608047 -g1,15238:32583029,21608047 -) -h1,15238:6630773,21804655:0,0,0 -v1,15242:6630773,22669735:0,393216,0 -(1,15255:6630773,27077397:25952256,4800878,0 -g1,15255:6630773,27077397 -g1,15255:6237557,27077397 -r1,15288:6368629,27077397:131072,4800878,0 -g1,15255:6567858,27077397 -g1,15255:6764466,27077397 -[1,15255:6764466,27077397:25818563,4800878,0 -(1,15243:6764466,22942212:25818563,665693,196608 -(1,15242:6764466,22942212:0,665693,196608 -r1,15288:7868133,22942212:1103667,862301,196608 -k1,15242:6764466,22942212:-1103667 -) -(1,15242:6764466,22942212:1103667,665693,196608 -) -k1,15242:8145893,22942212:277760 -k1,15242:9872111,22942212:327680 -k1,15242:12825706,22942212:277760 -k1,15242:14122551,22942212:277760 -k1,15242:15572750,22942212:277760 -k1,15242:17838217,22942212:277760 -k1,15242:20989731,22942212:277760 -k1,15242:23122814,22942212:277759 -k1,15242:24392134,22942212:277760 -k1,15242:27974875,22942212:277760 -k1,15242:28935520,22942212:277760 -k1,15242:30453221,22942212:277760 -k1,15242:31835263,22942212:277760 -k1,15242:32583029,22942212:0 -) -(1,15243:6764466,23807292:25818563,513147,134348 -g1,15242:10827698,23807292 -g1,15242:12762320,23807292 -g1,15242:15657045,23807292 -(1,15242:15657045,23807292:0,452978,115847 -r1,15288:18125582,23807292:2468537,568825,115847 -k1,15242:15657045,23807292:-2468537 -) -(1,15242:15657045,23807292:2468537,452978,115847 -k1,15242:15657045,23807292:3277 -h1,15242:18122305,23807292:0,411205,112570 -) -k1,15243:32583029,23807292:14405019 -g1,15243:32583029,23807292 -) -v1,15246:6764466,24492147:0,393216,0 -(1,15253:6764466,26880789:25818563,2781858,196608 -g1,15253:6764466,26880789 -g1,15253:6764466,26880789 -g1,15253:6567858,26880789 -(1,15253:6567858,26880789:0,2781858,196608 -r1,15288:32779637,26880789:26211779,2978466,196608 -k1,15253:6567857,26880789:-26211780 -) -(1,15253:6567858,26880789:26211779,2781858,196608 -[1,15253:6764466,26880789:25818563,2585250,0 -(1,15248:6764466,24719978:25818563,424439,106246 -(1,15247:6764466,24719978:0,0,0 -g1,15247:6764466,24719978 -g1,15247:6764466,24719978 -g1,15247:6436786,24719978 -(1,15247:6436786,24719978:0,0,0 -) -g1,15247:6764466,24719978 -) -k1,15248:6764466,24719978:0 -g1,15248:9420098,24719978 -g1,15248:10084006,24719978 -g1,15248:11079868,24719978 -g1,15248:11743776,24719978 -g1,15248:13071592,24719978 -g1,15248:13735500,24719978 -h1,15248:15063316,24719978:0,0,0 -k1,15248:32583028,24719978:17519712 -g1,15248:32583028,24719978 -) -(1,15249:6764466,25404833:25818563,424439,106246 -h1,15249:6764466,25404833:0,0,0 -g1,15249:9420098,25404833 -g1,15249:10084006,25404833 -g1,15249:11079868,25404833 -g1,15249:11743776,25404833 -g1,15249:13071592,25404833 -g1,15249:13735500,25404833 -h1,15249:15063316,25404833:0,0,0 -k1,15249:32583028,25404833:17519712 -g1,15249:32583028,25404833 -) -(1,15250:6764466,26089688:25818563,424439,106246 -h1,15250:6764466,26089688:0,0,0 -g1,15250:9420098,26089688 -g1,15250:10084006,26089688 -g1,15250:11411822,26089688 -g1,15250:12075730,26089688 -g1,15250:13071592,26089688 -g1,15250:13735500,26089688 -h1,15250:15727224,26089688:0,0,0 -k1,15250:32583028,26089688:16855804 -g1,15250:32583028,26089688 -) -(1,15251:6764466,26774543:25818563,424439,106246 -h1,15251:6764466,26774543:0,0,0 -g1,15251:9420098,26774543 -g1,15251:10084006,26774543 -g1,15251:11079868,26774543 -g1,15251:11743776,26774543 -g1,15251:12739638,26774543 -g1,15251:13403546,26774543 -g1,15251:14399408,26774543 -g1,15251:16059178,26774543 -h1,15251:17055040,26774543:0,0,0 -k1,15251:32583029,26774543:15527989 -g1,15251:32583029,26774543 -) -] -) -g1,15253:32583029,26880789 -g1,15253:6764466,26880789 -g1,15253:6764466,26880789 -g1,15253:32583029,26880789 -g1,15253:32583029,26880789 -) -h1,15253:6764466,27077397:0,0,0 -] -g1,15255:32583029,27077397 -) -h1,15255:6630773,27077397:0,0,0 -v1,15258:6630773,27942477:0,393216,0 -(1,15268:6630773,31881330:25952256,4332069,0 -g1,15268:6630773,31881330 -g1,15268:6237557,31881330 -r1,15288:6368629,31881330:131072,4332069,0 -g1,15268:6567858,31881330 -g1,15268:6764466,31881330 -[1,15268:6764466,31881330:25818563,4332069,0 -(1,15259:6764466,28250775:25818563,701514,196608 -(1,15258:6764466,28250775:0,701514,196608 -r1,15288:8471973,28250775:1707507,898122,196608 -k1,15258:6764466,28250775:-1707507 -) -(1,15258:6764466,28250775:1707507,701514,196608 -) -k1,15258:8752259,28250775:280286 -k1,15258:10478477,28250775:327680 -k1,15258:11800786,28250775:280287 -k1,15258:14827686,28250775:280286 -(1,15258:14827686,28250775:0,424981,115847 -r1,15288:15185952,28250775:358266,540828,115847 -k1,15258:14827686,28250775:-358266 -) -(1,15258:14827686,28250775:358266,424981,115847 -k1,15258:14827686,28250775:3277 -h1,15258:15182675,28250775:0,411205,112570 -) -k1,15258:15466239,28250775:280287 -k1,15258:16397953,28250775:280286 -k1,15258:18901220,28250775:280286 -k1,15258:19867669,28250775:280287 -k1,15258:23160645,28250775:280286 -k1,15258:24229330,28250775:280287 -k1,15258:25815749,28250775:280286 -k1,15258:28738447,28250775:280286 -k1,15258:31199117,28250775:280287 -k1,15258:32227169,28250775:280286 -k1,15258:32583029,28250775:0 -) -(1,15259:6764466,29115855:25818563,513147,134348 -k1,15258:9457102,29115855:149184 -k1,15258:11000236,29115855:149183 -k1,15258:11958790,29115855:149184 -k1,15258:16077490,29115855:149184 -k1,15258:19108947,29115855:149184 -k1,15258:20277215,29115855:149183 -k1,15258:22269271,29115855:149184 -k1,15258:23077747,29115855:149184 -k1,15258:26541742,29115855:149184 -k1,15258:28387652,29115855:149183 -k1,15258:29709275,29115855:149184 -k1,15258:32583029,29115855:0 -) -(1,15259:6764466,29980935:25818563,505283,115847 -g1,15258:8331432,29980935 -(1,15258:8331432,29980935:0,452978,115847 -r1,15288:10799969,29980935:2468537,568825,115847 -k1,15258:8331432,29980935:-2468537 -) -(1,15258:8331432,29980935:2468537,452978,115847 -k1,15258:8331432,29980935:3277 -h1,15258:10796692,29980935:0,411205,112570 -) -k1,15259:32583029,29980935:21730632 -g1,15259:32583029,29980935 -) -v1,15261:6764466,30665790:0,393216,0 -(1,15266:6764466,31684722:25818563,1412148,196608 -g1,15266:6764466,31684722 -g1,15266:6764466,31684722 -g1,15266:6567858,31684722 -(1,15266:6567858,31684722:0,1412148,196608 -r1,15288:32779637,31684722:26211779,1608756,196608 -k1,15266:6567857,31684722:-26211780 -) -(1,15266:6567858,31684722:26211779,1412148,196608 -[1,15266:6764466,31684722:25818563,1215540,0 -(1,15263:6764466,30893621:25818563,424439,106246 -(1,15262:6764466,30893621:0,0,0 -g1,15262:6764466,30893621 -g1,15262:6764466,30893621 -g1,15262:6436786,30893621 -(1,15262:6436786,30893621:0,0,0 -) -g1,15262:6764466,30893621 -) -g1,15263:7428374,30893621 -g1,15263:8092282,30893621 -g1,15263:9420098,30893621 -g1,15263:10084006,30893621 -g1,15263:11079868,30893621 -g1,15263:11743776,30893621 -h1,15263:13403546,30893621:0,0,0 -k1,15263:32583030,30893621:19179484 -g1,15263:32583030,30893621 -) -(1,15264:6764466,31578476:25818563,424439,106246 -h1,15264:6764466,31578476:0,0,0 -g1,15264:7428374,31578476 -g1,15264:8092282,31578476 -g1,15264:9420098,31578476 -g1,15264:10084006,31578476 -g1,15264:11079868,31578476 -g1,15264:11743776,31578476 -h1,15264:13403546,31578476:0,0,0 -k1,15264:32583030,31578476:19179484 -g1,15264:32583030,31578476 -) -] -) -g1,15266:32583029,31684722 -g1,15266:6764466,31684722 -g1,15266:6764466,31684722 -g1,15266:32583029,31684722 -g1,15266:32583029,31684722 -) -h1,15266:6764466,31881330:0,0,0 -] -g1,15268:32583029,31881330 -) -h1,15268:6630773,31881330:0,0,0 -v1,15271:6630773,32746410:0,393216,0 -(1,15285:6630773,42200148:25952256,9846954,0 -g1,15285:6630773,42200148 -g1,15285:6237557,42200148 -r1,15288:6368629,42200148:131072,9846954,0 -g1,15285:6567858,42200148 -g1,15285:6764466,42200148 -[1,15285:6764466,42200148:25818563,9846954,0 -(1,15272:6764466,33054708:25818563,701514,196608 -(1,15271:6764466,33054708:0,701514,196608 -r1,15288:8471973,33054708:1707507,898122,196608 -k1,15271:6764466,33054708:-1707507 -) -(1,15271:6764466,33054708:1707507,701514,196608 -) -k1,15271:8771903,33054708:299930 -k1,15271:10498121,33054708:327680 -k1,15271:12072726,33054708:299930 -k1,15271:13391742,33054708:299931 -k1,15271:15187859,33054708:299930 -k1,15271:18479508,33054708:299930 -k1,15271:20647869,33054708:299930 -k1,15271:22683193,33054708:299931 -k1,15271:24002208,33054708:299930 -(1,15271:24002208,33054708:0,452978,115847 -r1,15288:25063897,33054708:1061689,568825,115847 -k1,15271:24002208,33054708:-1061689 -) -(1,15271:24002208,33054708:1061689,452978,115847 -k1,15271:24002208,33054708:3277 -h1,15271:25060620,33054708:0,411205,112570 -) -k1,15271:25363827,33054708:299930 -k1,15271:27053120,33054708:299930 -k1,15271:28287594,33054708:299931 -k1,15271:30155145,33054708:299930 -k1,15271:31043588,33054708:299930 -k1,15271:32583029,33054708:0 -) -(1,15272:6764466,33919788:25818563,513147,126483 -k1,15271:11009293,33919788:211741 -k1,15271:12240118,33919788:211740 -k1,15271:13544344,33919788:211741 -k1,15271:14415377,33919788:211741 -k1,15271:17389461,33919788:211741 -k1,15271:19588908,33919788:211740 -k1,15271:22674403,33919788:211741 -k1,15271:23502182,33919788:211741 -k1,15271:26322256,33919788:211741 -k1,15271:27682842,33919788:211740 -k1,15271:29591310,33919788:211741 -k1,15271:32583029,33919788:0 -) -(1,15272:6764466,34784868:25818563,513147,134348 -k1,15271:8362234,34784868:226755 -k1,15271:10047819,34784868:226754 -k1,15271:11604955,34784868:226755 -k1,15271:14987923,34784868:226754 -k1,15271:16024048,34784868:226755 -k1,15271:17269888,34784868:226755 -k1,15271:19150115,34784868:226754 -k1,15271:21363266,34784868:226755 -k1,15271:22241449,34784868:226755 -k1,15271:24110535,34784868:226754 -k1,15271:25796121,34784868:226755 -k1,15271:30677897,34784868:226754 -k1,15271:31563944,34784868:226755 -k1,15271:32583029,34784868:0 -) -(1,15272:6764466,35649948:25818563,513147,126483 -k1,15271:9131797,35649948:283286 -k1,15271:10074376,35649948:283287 -k1,15271:12345369,35649948:283286 -k1,15271:15676079,35649948:283286 -k1,15271:17812724,35649948:283287 -k1,15271:18905380,35649948:283286 -k1,15271:20207752,35649948:283287 -k1,15271:22333910,35649948:283286 -k1,15271:25680349,35649948:283286 -k1,15271:26579674,35649948:283287 -k1,15271:27882045,35649948:283286 -k1,15271:30599910,35649948:283202 -k1,15271:32583029,35649948:0 -) -(1,15272:6764466,36515028:25818563,513147,134348 -k1,15271:8308189,36515028:237590 -k1,15271:10142236,36515028:237590 -k1,15271:11446097,36515028:237590 -k1,15271:13232302,36515028:237589 -k1,15271:15787900,36515028:237590 -k1,15271:17017050,36515028:237590 -k1,15271:18992655,36515028:237590 -k1,15271:20942701,36515028:237590 -k1,15271:21796329,36515028:237590 -k1,15271:23485541,36515028:237590 -k1,15271:25263882,36515028:237590 -k1,15271:26129306,36515028:237589 -k1,15271:26722756,36515028:237590 -k1,15271:29201677,36515028:237590 -k1,15271:30968222,36515028:237590 -k1,15271:32583029,36515028:0 -) -(1,15272:6764466,37380108:25818563,513147,126483 -k1,15271:8066249,37380108:282698 -k1,15271:12672358,37380108:282699 -k1,15271:16765975,37380108:282698 -k1,15271:17707966,37380108:282699 -k1,15271:19442286,37380108:282698 -k1,15271:20384277,37380108:282699 -k1,15271:21686060,37380108:282698 -k1,15271:24460438,37380108:282699 -k1,15271:27019201,37380108:282698 -k1,15271:28982243,37380108:282699 -k1,15271:30595322,37380108:282698 -k1,15271:32583029,37380108:0 -) -(1,15272:6764466,38245188:25818563,513147,126483 -g1,15271:8988757,38245188 -g1,15271:10524920,38245188 -g1,15271:12503451,38245188 -g1,15271:13721765,38245188 -g1,15271:17688659,38245188 -g1,15271:19455509,38245188 -g1,15271:20425441,38245188 -g1,15271:23179263,38245188 -g1,15271:24037784,38245188 -k1,15272:32583029,38245188:5838608 -g1,15272:32583029,38245188 -) -v1,15275:6764466,38930043:0,393216,0 -(1,15283:6764466,42003540:25818563,3466713,196608 -g1,15283:6764466,42003540 -g1,15283:6764466,42003540 -g1,15283:6567858,42003540 -(1,15283:6567858,42003540:0,3466713,196608 -r1,15288:32779637,42003540:26211779,3663321,196608 -k1,15283:6567857,42003540:-26211780 -) -(1,15283:6567858,42003540:26211779,3466713,196608 -[1,15283:6764466,42003540:25818563,3270105,0 -(1,15277:6764466,39157874:25818563,424439,106246 -(1,15276:6764466,39157874:0,0,0 -g1,15276:6764466,39157874 -g1,15276:6764466,39157874 -g1,15276:6436786,39157874 -(1,15276:6436786,39157874:0,0,0 -) -g1,15276:6764466,39157874 -) -k1,15277:6764466,39157874:0 -h1,15277:9752052,39157874:0,0,0 -k1,15277:32583028,39157874:22830976 -g1,15277:32583028,39157874 -) -(1,15278:6764466,39842729:25818563,424439,106246 -h1,15278:6764466,39842729:0,0,0 -g1,15278:11743776,39842729 -g1,15278:12407684,39842729 -g1,15278:13071592,39842729 -g1,15278:13735500,39842729 -g1,15278:14399408,39842729 -g1,15278:15063316,39842729 -g1,15278:16059178,39842729 -g1,15278:17718948,39842729 -g1,15278:18382856,39842729 -h1,15278:20042626,39842729:0,0,0 -k1,15278:32583029,39842729:12540403 -g1,15278:32583029,39842729 -) -(1,15279:6764466,40527584:25818563,424439,106246 -h1,15279:6764466,40527584:0,0,0 -g1,15279:11743776,40527584 -g1,15279:12407684,40527584 -g1,15279:13403546,40527584 -g1,15279:14067454,40527584 -g1,15279:14731362,40527584 -g1,15279:15395270,40527584 -g1,15279:17386994,40527584 -g1,15279:19046764,40527584 -g1,15279:19710672,40527584 -h1,15279:21370442,40527584:0,0,0 -k1,15279:32583029,40527584:11212587 -g1,15279:32583029,40527584 -) -(1,15280:6764466,41212439:25818563,424439,106246 -h1,15280:6764466,41212439:0,0,0 -g1,15280:11743776,41212439 -g1,15280:12407684,41212439 -g1,15280:13071592,41212439 -g1,15280:13735500,41212439 -g1,15280:14399408,41212439 -g1,15280:15063316,41212439 -g1,15280:15727224,41212439 -g1,15280:16391132,41212439 -g1,15280:17055040,41212439 -g1,15280:18714810,41212439 -g1,15280:19378718,41212439 -g1,15280:20042626,41212439 -g1,15280:20706534,41212439 -g1,15280:22366304,41212439 -g1,15280:23362166,41212439 -g1,15280:25021936,41212439 -g1,15280:25685844,41212439 -h1,15280:27345614,41212439:0,0,0 -k1,15280:32583029,41212439:5237415 -g1,15280:32583029,41212439 -) -(1,15281:6764466,41897294:25818563,424439,106246 -h1,15281:6764466,41897294:0,0,0 -g1,15281:11743776,41897294 -g1,15281:12407684,41897294 -g1,15281:13071592,41897294 -g1,15281:13735500,41897294 -g1,15281:14399408,41897294 -g1,15281:15063316,41897294 -g1,15281:15727224,41897294 -g1,15281:16391132,41897294 -g1,15281:17055040,41897294 -g1,15281:18714810,41897294 -g1,15281:19378718,41897294 -g1,15281:20042626,41897294 -g1,15281:20706534,41897294 -g1,15281:22366304,41897294 -g1,15281:23362166,41897294 -g1,15281:25021936,41897294 -g1,15281:25685844,41897294 -h1,15281:27345614,41897294:0,0,0 -k1,15281:32583029,41897294:5237415 -g1,15281:32583029,41897294 -) -] -) -g1,15283:32583029,42003540 -g1,15283:6764466,42003540 -g1,15283:6764466,42003540 -g1,15283:32583029,42003540 -g1,15283:32583029,42003540 -) -h1,15283:6764466,42200148:0,0,0 -] -g1,15285:32583029,42200148 -) -h1,15285:6630773,42200148:0,0,0 -(1,15288:6630773,43065228:25952256,513147,134348 -h1,15287:6630773,43065228:983040,0,0 -k1,15287:10211202,43065228:180421 -k1,15287:11050914,43065228:180420 -k1,15287:13455627,43065228:180421 -k1,15287:14252085,43065228:180420 -k1,15287:18371875,43065228:180421 -k1,15287:20287688,43065228:180420 -k1,15287:24208248,43065228:180420 -k1,15287:26807603,43065228:180421 -k1,15287:28481590,43065228:180421 -k1,15287:29348172,43065228:180420 -k1,15287:32583029,43065228:0 -) -(1,15288:6630773,43930308:25952256,513147,126483 -k1,15287:7534951,43930308:221293 -k1,15287:10540869,43930308:221293 -k1,15287:13970149,43930308:221293 -k1,15287:16364616,43930308:221293 -k1,15287:17201947,43930308:221293 -k1,15287:18442326,43930308:221294 -k1,15287:20193885,43930308:221293 -k1,15287:21066606,43930308:221293 -k1,15287:24075801,43930308:221293 -k1,15287:27524087,43930308:221293 -k1,15287:29352323,43930308:221293 -k1,15287:31590159,43930308:221293 -k1,15288:32583029,43930308:0 -) -(1,15288:6630773,44795388:25952256,513147,134348 -k1,15287:8696515,44795388:175028 -k1,15287:9487581,44795388:175028 -k1,15287:11171248,44795388:175028 -k1,15287:13801910,44795388:175028 -k1,15287:14636230,44795388:175028 -k1,15287:17667972,44795388:175028 -k1,15287:18470834,44795388:175027 -k1,15287:19001722,44795388:175028 -k1,15287:21294218,44795388:175028 -k1,15287:23557878,44795388:175028 -k1,15287:25126857,44795388:175028 -k1,15287:26865574,44795388:175028 -k1,15287:29315357,44795388:175028 -k1,15287:31591469,44795388:175028 -k1,15287:32583029,44795388:0 -) -(1,15288:6630773,45660468:25952256,513147,134348 -k1,15287:8816234,45660468:225935 -k1,15287:10896839,45660468:225936 -k1,15287:11932144,45660468:225935 -k1,15287:14920422,45660468:225935 -k1,15287:16753301,45660468:225936 -k1,15287:18822108,45660468:225935 -k1,15287:22410040,45660468:225935 -k1,15287:23445346,45660468:225936 -k1,15287:24690366,45660468:225935 -k1,15287:27004933,45660468:225935 -k1,15287:27890161,45660468:225936 -k1,15287:28886799,45660468:225935 -k1,15287:32583029,45660468:0 -) -] -(1,15288:32583029,45706769:0,0,0 -g1,15288:32583029,45706769 -) -) -] -(1,15288:6630773,47279633:25952256,0,0 -h1,15288:6630773,47279633:25952256,0,0 -) -] -(1,15288:4262630,4025873:0,0,0 -[1,15288:-473656,4025873:0,0,0 -(1,15288:-473656,-710413:0,0,0 -(1,15288:-473656,-710413:0,0,0 -g1,15288:-473656,-710413 -) -g1,15288:-473656,-710413 +[1,15286:6630773,45706769:25952256,40108032,0 +v1,15181:6630773,6254097:0,393216,0 +(1,15185:6630773,6571658:25952256,710777,196608 +g1,15185:6630773,6571658 +g1,15185:6630773,6571658 +g1,15185:6434165,6571658 +(1,15185:6434165,6571658:0,710777,196608 +r1,15286:32779637,6571658:26345472,907385,196608 +k1,15185:6434165,6571658:-26345472 +) +(1,15185:6434165,6571658:26345472,710777,196608 +[1,15185:6630773,6571658:25952256,514169,0 +(1,15183:6630773,6465412:25952256,407923,106246 +(1,15182:6630773,6465412:0,0,0 +g1,15182:6630773,6465412 +g1,15182:6630773,6465412 +g1,15182:6303093,6465412 +(1,15182:6303093,6465412:0,0,0 +) +g1,15182:6630773,6465412 +) +g1,15183:7294681,6465412 +g1,15183:7958589,6465412 +g1,15183:8954451,6465412 +g1,15183:9618359,6465412 +g1,15183:10614221,6465412 +g1,15183:11278129,6465412 +g1,15183:12273991,6465412 +g1,15183:12937899,6465412 +g1,15183:14929623,6465412 +g1,15183:15593531,6465412 +g1,15183:17585255,6465412 +g1,15183:18249163,6465412 +g1,15183:20240887,6465412 +g1,15183:20904795,6465412 +h1,15183:23560427,6465412:0,0,0 +k1,15183:32583029,6465412:9022602 +g1,15183:32583029,6465412 +) +] +) +g1,15185:32583029,6571658 +g1,15185:6630773,6571658 +g1,15185:6630773,6571658 +g1,15185:32583029,6571658 +g1,15185:32583029,6571658 +) +h1,15185:6630773,6768266:0,0,0 +(1,15189:6630773,7633346:25952256,505283,126483 +h1,15188:6630773,7633346:983040,0,0 +g1,15188:9039221,7633346 +g1,15188:9986216,7633346 +g1,15188:12904534,7633346 +g1,15188:13865291,7633346 +g1,15188:14420380,7633346 +g1,15188:16974973,7633346 +k1,15189:32583029,7633346:12250647 +g1,15189:32583029,7633346 +) +v1,15191:6630773,8318201:0,393216,0 +(1,15195:6630773,8635762:25952256,710777,196608 +g1,15195:6630773,8635762 +g1,15195:6630773,8635762 +g1,15195:6434165,8635762 +(1,15195:6434165,8635762:0,710777,196608 +r1,15286:32779637,8635762:26345472,907385,196608 +k1,15195:6434165,8635762:-26345472 +) +(1,15195:6434165,8635762:26345472,710777,196608 +[1,15195:6630773,8635762:25952256,514169,0 +(1,15193:6630773,8529516:25952256,407923,106246 +(1,15192:6630773,8529516:0,0,0 +g1,15192:6630773,8529516 +g1,15192:6630773,8529516 +g1,15192:6303093,8529516 +(1,15192:6303093,8529516:0,0,0 +) +g1,15192:6630773,8529516 +) +g1,15193:7294681,8529516 +g1,15193:7958589,8529516 +g1,15193:8954451,8529516 +g1,15193:9618359,8529516 +g1,15193:10614221,8529516 +g1,15193:11278129,8529516 +h1,15193:11942037,8529516:0,0,0 +k1,15193:32583029,8529516:20640992 +g1,15193:32583029,8529516 +) +] +) +g1,15195:32583029,8635762 +g1,15195:6630773,8635762 +g1,15195:6630773,8635762 +g1,15195:32583029,8635762 +g1,15195:32583029,8635762 +) +h1,15195:6630773,8832370:0,0,0 +(1,15199:6630773,9697450:25952256,513147,126483 +h1,15198:6630773,9697450:983040,0,0 +k1,15198:9585355,9697450:188307 +k1,15198:10792746,9697450:188306 +k1,15198:12968760,9697450:188307 +k1,15198:13808494,9697450:188306 +k1,15198:14744567,9697450:188307 +k1,15198:17764684,9697450:188306 +k1,15198:19445901,9697450:188307 +k1,15198:20700479,9697450:188307 +k1,15198:23226454,9697450:188306 +k1,15198:24180877,9697450:188307 +k1,15198:26999143,9697450:188306 +k1,15198:30652994,9697450:188307 +k1,15198:32583029,9697450:0 +) +(1,15199:6630773,10562530:25952256,513147,126483 +k1,15198:7631770,10562530:158859 +k1,15198:8894911,10562530:158859 +k1,15198:11765650,10562530:158859 +k1,15198:12943594,10562530:158859 +k1,15198:15457816,10562530:158858 +k1,15198:18306273,10562530:158859 +k1,15198:19859083,10562530:158859 +k1,15198:24045785,10562530:158859 +k1,15198:26245435,10562530:158859 +k1,15198:29709275,10562530:158859 +k1,15198:32583029,10562530:0 +) +(1,15199:6630773,11427610:25952256,505283,134348 +g1,15198:7821562,11427610 +g1,15198:10096316,11427610 +g1,15198:12030938,11427610 +g1,15198:14585531,11427610 +g1,15198:15976205,11427610 +g1,15198:18640898,11427610 +k1,15199:32583029,11427610:11200105 +g1,15199:32583029,11427610 +) +v1,15201:6630773,12112465:0,393216,0 +(1,15206:6630773,13131397:25952256,1412148,196608 +g1,15206:6630773,13131397 +g1,15206:6630773,13131397 +g1,15206:6434165,13131397 +(1,15206:6434165,13131397:0,1412148,196608 +r1,15286:32779637,13131397:26345472,1608756,196608 +k1,15206:6434165,13131397:-26345472 +) +(1,15206:6434165,13131397:26345472,1412148,196608 +[1,15206:6630773,13131397:25952256,1215540,0 +(1,15203:6630773,12340296:25952256,424439,106246 +(1,15202:6630773,12340296:0,0,0 +g1,15202:6630773,12340296 +g1,15202:6630773,12340296 +g1,15202:6303093,12340296 +(1,15202:6303093,12340296:0,0,0 +) +g1,15202:6630773,12340296 +) +g1,15203:7294681,12340296 +g1,15203:7958589,12340296 +g1,15203:8954451,12340296 +g1,15203:9618359,12340296 +g1,15203:10946175,12340296 +g1,15203:11610083,12340296 +h1,15203:12605945,12340296:0,0,0 +k1,15203:32583029,12340296:19977084 +g1,15203:32583029,12340296 +) +(1,15204:6630773,13025151:25952256,407923,106246 +h1,15204:6630773,13025151:0,0,0 +g1,15204:7294681,13025151 +g1,15204:7958589,13025151 +g1,15204:8954451,13025151 +g1,15204:9618359,13025151 +g1,15204:10614221,13025151 +g1,15204:11278129,13025151 +g1,15204:12273991,13025151 +g1,15204:12937899,13025151 +h1,15204:14597669,13025151:0,0,0 +k1,15204:32583029,13025151:17985360 +g1,15204:32583029,13025151 +) +] +) +g1,15206:32583029,13131397 +g1,15206:6630773,13131397 +g1,15206:6630773,13131397 +g1,15206:32583029,13131397 +g1,15206:32583029,13131397 +) +h1,15206:6630773,13328005:0,0,0 +v1,15210:6630773,14012860:0,393216,0 +(1,15215:6630773,15031792:25952256,1412148,196608 +g1,15215:6630773,15031792 +g1,15215:6630773,15031792 +g1,15215:6434165,15031792 +(1,15215:6434165,15031792:0,1412148,196608 +r1,15286:32779637,15031792:26345472,1608756,196608 +k1,15215:6434165,15031792:-26345472 +) +(1,15215:6434165,15031792:26345472,1412148,196608 +[1,15215:6630773,15031792:25952256,1215540,0 +(1,15212:6630773,14240691:25952256,424439,106246 +(1,15211:6630773,14240691:0,0,0 +g1,15211:6630773,14240691 +g1,15211:6630773,14240691 +g1,15211:6303093,14240691 +(1,15211:6303093,14240691:0,0,0 +) +g1,15211:6630773,14240691 +) +g1,15212:7294681,14240691 +g1,15212:7958589,14240691 +g1,15212:8954451,14240691 +g1,15212:9618359,14240691 +g1,15212:10946175,14240691 +g1,15212:11610083,14240691 +h1,15212:12605945,14240691:0,0,0 +k1,15212:32583029,14240691:19977084 +g1,15212:32583029,14240691 +) +(1,15213:6630773,14925546:25952256,407923,106246 +h1,15213:6630773,14925546:0,0,0 +g1,15213:7294681,14925546 +g1,15213:7958589,14925546 +g1,15213:8954451,14925546 +g1,15213:9618359,14925546 +g1,15213:10614221,14925546 +g1,15213:11278129,14925546 +g1,15213:12273991,14925546 +g1,15213:12937899,14925546 +g1,15213:14929623,14925546 +g1,15213:15593531,14925546 +h1,15213:17253301,14925546:0,0,0 +k1,15213:32583029,14925546:15329728 +g1,15213:32583029,14925546 +) +] +) +g1,15215:32583029,15031792 +g1,15215:6630773,15031792 +g1,15215:6630773,15031792 +g1,15215:32583029,15031792 +g1,15215:32583029,15031792 +) +h1,15215:6630773,15228400:0,0,0 +(1,15219:6630773,16093480:25952256,513147,126483 +h1,15218:6630773,16093480:983040,0,0 +k1,15218:9000369,16093480:189869 +(1,15218:9000369,16093480:0,424981,115847 +r1,15286:9358635,16093480:358266,540828,115847 +k1,15218:9000369,16093480:-358266 +) +(1,15218:9000369,16093480:358266,424981,115847 +k1,15218:9000369,16093480:3277 +h1,15218:9355358,16093480:0,411205,112570 +) +k1,15218:9548505,16093480:189870 +k1,15218:12484988,16093480:189869 +k1,15218:15435233,16093480:189869 +k1,15218:15980963,16093480:189870 +k1,15218:18526196,16093480:189869 +k1,15218:21405663,16093480:189869 +k1,15218:22246960,16093480:189869 +k1,15218:23921220,16093480:189870 +k1,15218:25130174,16093480:189869 +k1,15218:27059369,16093480:189869 +k1,15218:27908531,16093480:189870 +k1,15218:29117485,16093480:189869 +k1,15218:32583029,16093480:0 +) +(1,15219:6630773,16958560:25952256,513147,7863 +g1,15218:8672874,16958560 +g1,15218:11630513,16958560 +g1,15218:12445780,16958560 +g1,15218:13000869,16958560 +k1,15219:32583030,16958560:16986280 +g1,15219:32583030,16958560 +) +v1,15221:6630773,17643415:0,393216,0 +(1,15226:6630773,18662347:25952256,1412148,196608 +g1,15226:6630773,18662347 +g1,15226:6630773,18662347 +g1,15226:6434165,18662347 +(1,15226:6434165,18662347:0,1412148,196608 +r1,15286:32779637,18662347:26345472,1608756,196608 +k1,15226:6434165,18662347:-26345472 +) +(1,15226:6434165,18662347:26345472,1412148,196608 +[1,15226:6630773,18662347:25952256,1215540,0 +(1,15223:6630773,17871246:25952256,424439,106246 +(1,15222:6630773,17871246:0,0,0 +g1,15222:6630773,17871246 +g1,15222:6630773,17871246 +g1,15222:6303093,17871246 +(1,15222:6303093,17871246:0,0,0 +) +g1,15222:6630773,17871246 +) +g1,15223:7294681,17871246 +g1,15223:7958589,17871246 +g1,15223:9286405,17871246 +g1,15223:9950313,17871246 +g1,15223:10946175,17871246 +g1,15223:11610083,17871246 +h1,15223:13269853,17871246:0,0,0 +k1,15223:32583029,17871246:19313176 +g1,15223:32583029,17871246 +) +(1,15224:6630773,18556101:25952256,407923,106246 +h1,15224:6630773,18556101:0,0,0 +g1,15224:7294681,18556101 +g1,15224:7958589,18556101 +g1,15224:8954451,18556101 +g1,15224:9618359,18556101 +g1,15224:10614221,18556101 +g1,15224:11278129,18556101 +g1,15224:12273991,18556101 +g1,15224:12937899,18556101 +g1,15224:14929623,18556101 +g1,15224:15593531,18556101 +g1,15224:17585255,18556101 +g1,15224:18249163,18556101 +h1,15224:19908933,18556101:0,0,0 +k1,15224:32583029,18556101:12674096 +g1,15224:32583029,18556101 +) +] +) +g1,15226:32583029,18662347 +g1,15226:6630773,18662347 +g1,15226:6630773,18662347 +g1,15226:32583029,18662347 +g1,15226:32583029,18662347 +) +h1,15226:6630773,18858955:0,0,0 +(1,15230:6630773,19724035:25952256,513147,134348 +h1,15229:6630773,19724035:983040,0,0 +k1,15229:10666494,19724035:191379 +(1,15229:10666494,19724035:0,452978,115847 +r1,15286:12079895,19724035:1413401,568825,115847 +k1,15229:10666494,19724035:-1413401 +) +(1,15229:10666494,19724035:1413401,452978,115847 +k1,15229:10666494,19724035:3277 +h1,15229:12076618,19724035:0,411205,112570 +) +k1,15229:12271274,19724035:191379 +k1,15229:13566935,19724035:191379 +k1,15229:15044130,19724035:191379 +k1,15229:15983275,19724035:191379 +k1,15229:17687880,19724035:191379 +k1,15229:18565421,19724035:191379 +k1,15229:19112661,19724035:191380 +k1,15229:21994293,19724035:191379 +k1,15229:23133323,19724035:191379 +k1,15229:26305279,19724035:191379 +k1,15229:27872259,19724035:191379 +k1,15229:29755778,19724035:191379 +k1,15229:30606449,19724035:191379 +k1,15229:31563944,19724035:191379 +k1,15229:32583029,19724035:0 +) +(1,15230:6630773,20589115:25952256,513147,126483 +g1,15229:9459962,20589115 +g1,15229:13124735,20589115 +g1,15229:15166836,20589115 +g1,15229:15982103,20589115 +g1,15229:16537192,20589115 +k1,15230:32583029,20589115:13449956 +g1,15230:32583029,20589115 +) +v1,15232:6630773,21273970:0,393216,0 +(1,15236:6630773,21608047:25952256,727293,196608 +g1,15236:6630773,21608047 +g1,15236:6630773,21608047 +g1,15236:6434165,21608047 +(1,15236:6434165,21608047:0,727293,196608 +r1,15286:32779637,21608047:26345472,923901,196608 +k1,15236:6434165,21608047:-26345472 +) +(1,15236:6434165,21608047:26345472,727293,196608 +[1,15236:6630773,21608047:25952256,530685,0 +(1,15234:6630773,21501801:25952256,424439,106246 +(1,15233:6630773,21501801:0,0,0 +g1,15233:6630773,21501801 +g1,15233:6630773,21501801 +g1,15233:6303093,21501801 +(1,15233:6303093,21501801:0,0,0 +) +g1,15233:6630773,21501801 +) +g1,15234:7294681,21501801 +g1,15234:7958589,21501801 +g1,15234:8954451,21501801 +g1,15234:9618359,21501801 +g1,15234:10614221,21501801 +g1,15234:11278129,21501801 +g1,15234:12273991,21501801 +g1,15234:13933761,21501801 +h1,15234:14597669,21501801:0,0,0 +k1,15234:32583029,21501801:17985360 +g1,15234:32583029,21501801 +) +] +) +g1,15236:32583029,21608047 +g1,15236:6630773,21608047 +g1,15236:6630773,21608047 +g1,15236:32583029,21608047 +g1,15236:32583029,21608047 +) +h1,15236:6630773,21804655:0,0,0 +v1,15240:6630773,22669735:0,393216,0 +(1,15253:6630773,27077397:25952256,4800878,0 +g1,15253:6630773,27077397 +g1,15253:6237557,27077397 +r1,15286:6368629,27077397:131072,4800878,0 +g1,15253:6567858,27077397 +g1,15253:6764466,27077397 +[1,15253:6764466,27077397:25818563,4800878,0 +(1,15241:6764466,22942212:25818563,665693,196608 +(1,15240:6764466,22942212:0,665693,196608 +r1,15286:7868133,22942212:1103667,862301,196608 +k1,15240:6764466,22942212:-1103667 +) +(1,15240:6764466,22942212:1103667,665693,196608 +) +k1,15240:8145893,22942212:277760 +k1,15240:9872111,22942212:327680 +k1,15240:12825706,22942212:277760 +k1,15240:14122551,22942212:277760 +k1,15240:15572750,22942212:277760 +k1,15240:17838217,22942212:277760 +k1,15240:20989731,22942212:277760 +k1,15240:23122814,22942212:277759 +k1,15240:24392134,22942212:277760 +k1,15240:27974875,22942212:277760 +k1,15240:28935520,22942212:277760 +k1,15240:30453221,22942212:277760 +k1,15240:31835263,22942212:277760 +k1,15240:32583029,22942212:0 +) +(1,15241:6764466,23807292:25818563,513147,134348 +g1,15240:10827698,23807292 +g1,15240:12762320,23807292 +g1,15240:15657045,23807292 +(1,15240:15657045,23807292:0,452978,115847 +r1,15286:18125582,23807292:2468537,568825,115847 +k1,15240:15657045,23807292:-2468537 +) +(1,15240:15657045,23807292:2468537,452978,115847 +k1,15240:15657045,23807292:3277 +h1,15240:18122305,23807292:0,411205,112570 +) +k1,15241:32583029,23807292:14405019 +g1,15241:32583029,23807292 +) +v1,15244:6764466,24492147:0,393216,0 +(1,15251:6764466,26880789:25818563,2781858,196608 +g1,15251:6764466,26880789 +g1,15251:6764466,26880789 +g1,15251:6567858,26880789 +(1,15251:6567858,26880789:0,2781858,196608 +r1,15286:32779637,26880789:26211779,2978466,196608 +k1,15251:6567857,26880789:-26211780 +) +(1,15251:6567858,26880789:26211779,2781858,196608 +[1,15251:6764466,26880789:25818563,2585250,0 +(1,15246:6764466,24719978:25818563,424439,106246 +(1,15245:6764466,24719978:0,0,0 +g1,15245:6764466,24719978 +g1,15245:6764466,24719978 +g1,15245:6436786,24719978 +(1,15245:6436786,24719978:0,0,0 +) +g1,15245:6764466,24719978 +) +k1,15246:6764466,24719978:0 +g1,15246:9420098,24719978 +g1,15246:10084006,24719978 +g1,15246:11079868,24719978 +g1,15246:11743776,24719978 +g1,15246:13071592,24719978 +g1,15246:13735500,24719978 +h1,15246:15063316,24719978:0,0,0 +k1,15246:32583028,24719978:17519712 +g1,15246:32583028,24719978 +) +(1,15247:6764466,25404833:25818563,424439,106246 +h1,15247:6764466,25404833:0,0,0 +g1,15247:9420098,25404833 +g1,15247:10084006,25404833 +g1,15247:11079868,25404833 +g1,15247:11743776,25404833 +g1,15247:13071592,25404833 +g1,15247:13735500,25404833 +h1,15247:15063316,25404833:0,0,0 +k1,15247:32583028,25404833:17519712 +g1,15247:32583028,25404833 +) +(1,15248:6764466,26089688:25818563,424439,106246 +h1,15248:6764466,26089688:0,0,0 +g1,15248:9420098,26089688 +g1,15248:10084006,26089688 +g1,15248:11411822,26089688 +g1,15248:12075730,26089688 +g1,15248:13071592,26089688 +g1,15248:13735500,26089688 +h1,15248:15727224,26089688:0,0,0 +k1,15248:32583028,26089688:16855804 +g1,15248:32583028,26089688 +) +(1,15249:6764466,26774543:25818563,424439,106246 +h1,15249:6764466,26774543:0,0,0 +g1,15249:9420098,26774543 +g1,15249:10084006,26774543 +g1,15249:11079868,26774543 +g1,15249:11743776,26774543 +g1,15249:12739638,26774543 +g1,15249:13403546,26774543 +g1,15249:14399408,26774543 +g1,15249:16059178,26774543 +h1,15249:17055040,26774543:0,0,0 +k1,15249:32583029,26774543:15527989 +g1,15249:32583029,26774543 +) +] +) +g1,15251:32583029,26880789 +g1,15251:6764466,26880789 +g1,15251:6764466,26880789 +g1,15251:32583029,26880789 +g1,15251:32583029,26880789 +) +h1,15251:6764466,27077397:0,0,0 +] +g1,15253:32583029,27077397 +) +h1,15253:6630773,27077397:0,0,0 +v1,15256:6630773,27942477:0,393216,0 +(1,15266:6630773,31881330:25952256,4332069,0 +g1,15266:6630773,31881330 +g1,15266:6237557,31881330 +r1,15286:6368629,31881330:131072,4332069,0 +g1,15266:6567858,31881330 +g1,15266:6764466,31881330 +[1,15266:6764466,31881330:25818563,4332069,0 +(1,15257:6764466,28250775:25818563,701514,196608 +(1,15256:6764466,28250775:0,701514,196608 +r1,15286:8471973,28250775:1707507,898122,196608 +k1,15256:6764466,28250775:-1707507 +) +(1,15256:6764466,28250775:1707507,701514,196608 +) +k1,15256:8752259,28250775:280286 +k1,15256:10478477,28250775:327680 +k1,15256:11800786,28250775:280287 +k1,15256:14827686,28250775:280286 +(1,15256:14827686,28250775:0,424981,115847 +r1,15286:15185952,28250775:358266,540828,115847 +k1,15256:14827686,28250775:-358266 +) +(1,15256:14827686,28250775:358266,424981,115847 +k1,15256:14827686,28250775:3277 +h1,15256:15182675,28250775:0,411205,112570 +) +k1,15256:15466239,28250775:280287 +k1,15256:16397953,28250775:280286 +k1,15256:18901220,28250775:280286 +k1,15256:19867669,28250775:280287 +k1,15256:23160645,28250775:280286 +k1,15256:24229330,28250775:280287 +k1,15256:25815749,28250775:280286 +k1,15256:28738447,28250775:280286 +k1,15256:31199117,28250775:280287 +k1,15256:32227169,28250775:280286 +k1,15256:32583029,28250775:0 +) +(1,15257:6764466,29115855:25818563,513147,134348 +k1,15256:9457102,29115855:149184 +k1,15256:11000236,29115855:149183 +k1,15256:11958790,29115855:149184 +k1,15256:16077490,29115855:149184 +k1,15256:19108947,29115855:149184 +k1,15256:20277215,29115855:149183 +k1,15256:22269271,29115855:149184 +k1,15256:23077747,29115855:149184 +k1,15256:26541742,29115855:149184 +k1,15256:28387652,29115855:149183 +k1,15256:29709275,29115855:149184 +k1,15256:32583029,29115855:0 +) +(1,15257:6764466,29980935:25818563,505283,115847 +g1,15256:8331432,29980935 +(1,15256:8331432,29980935:0,452978,115847 +r1,15286:10799969,29980935:2468537,568825,115847 +k1,15256:8331432,29980935:-2468537 +) +(1,15256:8331432,29980935:2468537,452978,115847 +k1,15256:8331432,29980935:3277 +h1,15256:10796692,29980935:0,411205,112570 +) +k1,15257:32583029,29980935:21730632 +g1,15257:32583029,29980935 +) +v1,15259:6764466,30665790:0,393216,0 +(1,15264:6764466,31684722:25818563,1412148,196608 +g1,15264:6764466,31684722 +g1,15264:6764466,31684722 +g1,15264:6567858,31684722 +(1,15264:6567858,31684722:0,1412148,196608 +r1,15286:32779637,31684722:26211779,1608756,196608 +k1,15264:6567857,31684722:-26211780 +) +(1,15264:6567858,31684722:26211779,1412148,196608 +[1,15264:6764466,31684722:25818563,1215540,0 +(1,15261:6764466,30893621:25818563,424439,106246 +(1,15260:6764466,30893621:0,0,0 +g1,15260:6764466,30893621 +g1,15260:6764466,30893621 +g1,15260:6436786,30893621 +(1,15260:6436786,30893621:0,0,0 +) +g1,15260:6764466,30893621 +) +g1,15261:7428374,30893621 +g1,15261:8092282,30893621 +g1,15261:9420098,30893621 +g1,15261:10084006,30893621 +g1,15261:11079868,30893621 +g1,15261:11743776,30893621 +h1,15261:13403546,30893621:0,0,0 +k1,15261:32583030,30893621:19179484 +g1,15261:32583030,30893621 +) +(1,15262:6764466,31578476:25818563,424439,106246 +h1,15262:6764466,31578476:0,0,0 +g1,15262:7428374,31578476 +g1,15262:8092282,31578476 +g1,15262:9420098,31578476 +g1,15262:10084006,31578476 +g1,15262:11079868,31578476 +g1,15262:11743776,31578476 +h1,15262:13403546,31578476:0,0,0 +k1,15262:32583030,31578476:19179484 +g1,15262:32583030,31578476 +) +] +) +g1,15264:32583029,31684722 +g1,15264:6764466,31684722 +g1,15264:6764466,31684722 +g1,15264:32583029,31684722 +g1,15264:32583029,31684722 +) +h1,15264:6764466,31881330:0,0,0 +] +g1,15266:32583029,31881330 +) +h1,15266:6630773,31881330:0,0,0 +v1,15269:6630773,32746410:0,393216,0 +(1,15283:6630773,42200148:25952256,9846954,0 +g1,15283:6630773,42200148 +g1,15283:6237557,42200148 +r1,15286:6368629,42200148:131072,9846954,0 +g1,15283:6567858,42200148 +g1,15283:6764466,42200148 +[1,15283:6764466,42200148:25818563,9846954,0 +(1,15270:6764466,33054708:25818563,701514,196608 +(1,15269:6764466,33054708:0,701514,196608 +r1,15286:8471973,33054708:1707507,898122,196608 +k1,15269:6764466,33054708:-1707507 +) +(1,15269:6764466,33054708:1707507,701514,196608 +) +k1,15269:8771903,33054708:299930 +k1,15269:10498121,33054708:327680 +k1,15269:12072726,33054708:299930 +k1,15269:13391742,33054708:299931 +k1,15269:15187859,33054708:299930 +k1,15269:18479508,33054708:299930 +k1,15269:20647869,33054708:299930 +k1,15269:22683193,33054708:299931 +k1,15269:24002208,33054708:299930 +(1,15269:24002208,33054708:0,452978,115847 +r1,15286:25063897,33054708:1061689,568825,115847 +k1,15269:24002208,33054708:-1061689 +) +(1,15269:24002208,33054708:1061689,452978,115847 +k1,15269:24002208,33054708:3277 +h1,15269:25060620,33054708:0,411205,112570 +) +k1,15269:25363827,33054708:299930 +k1,15269:27053120,33054708:299930 +k1,15269:28287594,33054708:299931 +k1,15269:30155145,33054708:299930 +k1,15269:31043588,33054708:299930 +k1,15269:32583029,33054708:0 +) +(1,15270:6764466,33919788:25818563,513147,126483 +k1,15269:11009293,33919788:211741 +k1,15269:12240118,33919788:211740 +k1,15269:13544344,33919788:211741 +k1,15269:14415377,33919788:211741 +k1,15269:17389461,33919788:211741 +k1,15269:19588908,33919788:211740 +k1,15269:22674403,33919788:211741 +k1,15269:23502182,33919788:211741 +k1,15269:26322256,33919788:211741 +k1,15269:27682842,33919788:211740 +k1,15269:29591310,33919788:211741 +k1,15269:32583029,33919788:0 +) +(1,15270:6764466,34784868:25818563,513147,134348 +k1,15269:8362234,34784868:226755 +k1,15269:10047819,34784868:226754 +k1,15269:11604955,34784868:226755 +k1,15269:14987923,34784868:226754 +k1,15269:16024048,34784868:226755 +k1,15269:17269888,34784868:226755 +k1,15269:19150115,34784868:226754 +k1,15269:21363266,34784868:226755 +k1,15269:22241449,34784868:226755 +k1,15269:24110535,34784868:226754 +k1,15269:25796121,34784868:226755 +k1,15269:30677897,34784868:226754 +k1,15269:31563944,34784868:226755 +k1,15269:32583029,34784868:0 +) +(1,15270:6764466,35649948:25818563,513147,126483 +k1,15269:9131797,35649948:283286 +k1,15269:10074376,35649948:283287 +k1,15269:12345369,35649948:283286 +k1,15269:15676079,35649948:283286 +k1,15269:17812724,35649948:283287 +k1,15269:18905380,35649948:283286 +k1,15269:20207752,35649948:283287 +k1,15269:22333910,35649948:283286 +k1,15269:25680349,35649948:283286 +k1,15269:26579674,35649948:283287 +k1,15269:27882045,35649948:283286 +k1,15269:30599910,35649948:283202 +k1,15269:32583029,35649948:0 +) +(1,15270:6764466,36515028:25818563,513147,134348 +k1,15269:8308189,36515028:237590 +k1,15269:10142236,36515028:237590 +k1,15269:11446097,36515028:237590 +k1,15269:13232302,36515028:237589 +k1,15269:15787900,36515028:237590 +k1,15269:17017050,36515028:237590 +k1,15269:18992655,36515028:237590 +k1,15269:20942701,36515028:237590 +k1,15269:21796329,36515028:237590 +k1,15269:23485541,36515028:237590 +k1,15269:25263882,36515028:237590 +k1,15269:26129306,36515028:237589 +k1,15269:26722756,36515028:237590 +k1,15269:29201677,36515028:237590 +k1,15269:30968222,36515028:237590 +k1,15269:32583029,36515028:0 +) +(1,15270:6764466,37380108:25818563,513147,126483 +k1,15269:8066249,37380108:282698 +k1,15269:12672358,37380108:282699 +k1,15269:16765975,37380108:282698 +k1,15269:17707966,37380108:282699 +k1,15269:19442286,37380108:282698 +k1,15269:20384277,37380108:282699 +k1,15269:21686060,37380108:282698 +k1,15269:24460438,37380108:282699 +k1,15269:27019201,37380108:282698 +k1,15269:28982243,37380108:282699 +k1,15269:30595322,37380108:282698 +k1,15269:32583029,37380108:0 +) +(1,15270:6764466,38245188:25818563,513147,126483 +g1,15269:8988757,38245188 +g1,15269:10524920,38245188 +g1,15269:12503451,38245188 +g1,15269:13721765,38245188 +g1,15269:17688659,38245188 +g1,15269:19455509,38245188 +g1,15269:20425441,38245188 +g1,15269:23179263,38245188 +g1,15269:24037784,38245188 +k1,15270:32583029,38245188:5838608 +g1,15270:32583029,38245188 +) +v1,15273:6764466,38930043:0,393216,0 +(1,15281:6764466,42003540:25818563,3466713,196608 +g1,15281:6764466,42003540 +g1,15281:6764466,42003540 +g1,15281:6567858,42003540 +(1,15281:6567858,42003540:0,3466713,196608 +r1,15286:32779637,42003540:26211779,3663321,196608 +k1,15281:6567857,42003540:-26211780 +) +(1,15281:6567858,42003540:26211779,3466713,196608 +[1,15281:6764466,42003540:25818563,3270105,0 +(1,15275:6764466,39157874:25818563,424439,106246 +(1,15274:6764466,39157874:0,0,0 +g1,15274:6764466,39157874 +g1,15274:6764466,39157874 +g1,15274:6436786,39157874 +(1,15274:6436786,39157874:0,0,0 +) +g1,15274:6764466,39157874 +) +k1,15275:6764466,39157874:0 +h1,15275:9752052,39157874:0,0,0 +k1,15275:32583028,39157874:22830976 +g1,15275:32583028,39157874 +) +(1,15276:6764466,39842729:25818563,424439,106246 +h1,15276:6764466,39842729:0,0,0 +g1,15276:11743776,39842729 +g1,15276:12407684,39842729 +g1,15276:13071592,39842729 +g1,15276:13735500,39842729 +g1,15276:14399408,39842729 +g1,15276:15063316,39842729 +g1,15276:16059178,39842729 +g1,15276:17718948,39842729 +g1,15276:18382856,39842729 +h1,15276:20042626,39842729:0,0,0 +k1,15276:32583029,39842729:12540403 +g1,15276:32583029,39842729 +) +(1,15277:6764466,40527584:25818563,424439,106246 +h1,15277:6764466,40527584:0,0,0 +g1,15277:11743776,40527584 +g1,15277:12407684,40527584 +g1,15277:13403546,40527584 +g1,15277:14067454,40527584 +g1,15277:14731362,40527584 +g1,15277:15395270,40527584 +g1,15277:17386994,40527584 +g1,15277:19046764,40527584 +g1,15277:19710672,40527584 +h1,15277:21370442,40527584:0,0,0 +k1,15277:32583029,40527584:11212587 +g1,15277:32583029,40527584 +) +(1,15278:6764466,41212439:25818563,424439,106246 +h1,15278:6764466,41212439:0,0,0 +g1,15278:11743776,41212439 +g1,15278:12407684,41212439 +g1,15278:13071592,41212439 +g1,15278:13735500,41212439 +g1,15278:14399408,41212439 +g1,15278:15063316,41212439 +g1,15278:15727224,41212439 +g1,15278:16391132,41212439 +g1,15278:17055040,41212439 +g1,15278:18714810,41212439 +g1,15278:19378718,41212439 +g1,15278:20042626,41212439 +g1,15278:20706534,41212439 +g1,15278:22366304,41212439 +g1,15278:23362166,41212439 +g1,15278:25021936,41212439 +g1,15278:25685844,41212439 +h1,15278:27345614,41212439:0,0,0 +k1,15278:32583029,41212439:5237415 +g1,15278:32583029,41212439 +) +(1,15279:6764466,41897294:25818563,424439,106246 +h1,15279:6764466,41897294:0,0,0 +g1,15279:11743776,41897294 +g1,15279:12407684,41897294 +g1,15279:13071592,41897294 +g1,15279:13735500,41897294 +g1,15279:14399408,41897294 +g1,15279:15063316,41897294 +g1,15279:15727224,41897294 +g1,15279:16391132,41897294 +g1,15279:17055040,41897294 +g1,15279:18714810,41897294 +g1,15279:19378718,41897294 +g1,15279:20042626,41897294 +g1,15279:20706534,41897294 +g1,15279:22366304,41897294 +g1,15279:23362166,41897294 +g1,15279:25021936,41897294 +g1,15279:25685844,41897294 +h1,15279:27345614,41897294:0,0,0 +k1,15279:32583029,41897294:5237415 +g1,15279:32583029,41897294 +) +] +) +g1,15281:32583029,42003540 +g1,15281:6764466,42003540 +g1,15281:6764466,42003540 +g1,15281:32583029,42003540 +g1,15281:32583029,42003540 +) +h1,15281:6764466,42200148:0,0,0 +] +g1,15283:32583029,42200148 +) +h1,15283:6630773,42200148:0,0,0 +(1,15286:6630773,43065228:25952256,513147,134348 +h1,15285:6630773,43065228:983040,0,0 +k1,15285:10211202,43065228:180421 +k1,15285:11050914,43065228:180420 +k1,15285:13455627,43065228:180421 +k1,15285:14252085,43065228:180420 +k1,15285:18371875,43065228:180421 +k1,15285:20287688,43065228:180420 +k1,15285:24208248,43065228:180420 +k1,15285:26807603,43065228:180421 +k1,15285:28481590,43065228:180421 +k1,15285:29348172,43065228:180420 +k1,15285:32583029,43065228:0 +) +(1,15286:6630773,43930308:25952256,513147,126483 +k1,15285:7534951,43930308:221293 +k1,15285:10540869,43930308:221293 +k1,15285:13970149,43930308:221293 +k1,15285:16364616,43930308:221293 +k1,15285:17201947,43930308:221293 +k1,15285:18442326,43930308:221294 +k1,15285:20193885,43930308:221293 +k1,15285:21066606,43930308:221293 +k1,15285:24075801,43930308:221293 +k1,15285:27524087,43930308:221293 +k1,15285:29352323,43930308:221293 +k1,15285:31590159,43930308:221293 +k1,15286:32583029,43930308:0 +) +(1,15286:6630773,44795388:25952256,513147,134348 +k1,15285:8696515,44795388:175028 +k1,15285:9487581,44795388:175028 +k1,15285:11171248,44795388:175028 +k1,15285:13801910,44795388:175028 +k1,15285:14636230,44795388:175028 +k1,15285:17667972,44795388:175028 +k1,15285:18470834,44795388:175027 +k1,15285:19001722,44795388:175028 +k1,15285:21294218,44795388:175028 +k1,15285:23557878,44795388:175028 +k1,15285:25126857,44795388:175028 +k1,15285:26865574,44795388:175028 +k1,15285:29315357,44795388:175028 +k1,15285:31591469,44795388:175028 +k1,15285:32583029,44795388:0 +) +(1,15286:6630773,45660468:25952256,513147,134348 +k1,15285:8816234,45660468:225935 +k1,15285:10896839,45660468:225936 +k1,15285:11932144,45660468:225935 +k1,15285:14920422,45660468:225935 +k1,15285:16753301,45660468:225936 +k1,15285:18822108,45660468:225935 +k1,15285:22410040,45660468:225935 +k1,15285:23445346,45660468:225936 +k1,15285:24690366,45660468:225935 +k1,15285:27004933,45660468:225935 +k1,15285:27890161,45660468:225936 +k1,15285:28886799,45660468:225935 +k1,15285:32583029,45660468:0 +) +] +(1,15286:32583029,45706769:0,0,0 +g1,15286:32583029,45706769 +) +) +] +(1,15286:6630773,47279633:25952256,0,0 +h1,15286:6630773,47279633:25952256,0,0 +) +] +(1,15286:4262630,4025873:0,0,0 +[1,15286:-473656,4025873:0,0,0 +(1,15286:-473656,-710413:0,0,0 +(1,15286:-473656,-710413:0,0,0 +g1,15286:-473656,-710413 +) +g1,15286:-473656,-710413 ) ] ) ] !31307 -}244 -Input:2608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}245 Input:2611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2612:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2613:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -268324,1957 +268522,1953 @@ Input:2618:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2619:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2620:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2621:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2622:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2623:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2624:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{245 -[1,15420:4262630,47279633:28320399,43253760,0 -(1,15420:4262630,4025873:0,0,0 -[1,15420:-473656,4025873:0,0,0 -(1,15420:-473656,-710413:0,0,0 -(1,15420:-473656,-644877:0,0,0 -k1,15420:-473656,-644877:-65536 +{246 +[1,15418:4262630,47279633:28320399,43253760,0 +(1,15418:4262630,4025873:0,0,0 +[1,15418:-473656,4025873:0,0,0 +(1,15418:-473656,-710413:0,0,0 +(1,15418:-473656,-644877:0,0,0 +k1,15418:-473656,-644877:-65536 ) -(1,15420:-473656,4736287:0,0,0 -k1,15420:-473656,4736287:5209943 +(1,15418:-473656,4736287:0,0,0 +k1,15418:-473656,4736287:5209943 ) -g1,15420:-473656,-710413 +g1,15418:-473656,-710413 ) ] ) -[1,15420:6630773,47279633:25952256,43253760,0 -[1,15420:6630773,4812305:25952256,786432,0 -(1,15420:6630773,4812305:25952256,513147,126483 -(1,15420:6630773,4812305:25952256,513147,126483 -g1,15420:3078558,4812305 -[1,15420:3078558,4812305:0,0,0 -(1,15420:3078558,2439708:0,1703936,0 -k1,15420:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15420:2537886,2439708:1179648,16384,0 +[1,15418:6630773,47279633:25952256,43253760,0 +[1,15418:6630773,4812305:25952256,786432,0 +(1,15418:6630773,4812305:25952256,513147,126483 +(1,15418:6630773,4812305:25952256,513147,126483 +g1,15418:3078558,4812305 +[1,15418:3078558,4812305:0,0,0 +(1,15418:3078558,2439708:0,1703936,0 +k1,15418:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15418:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15420:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15418:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15420:3078558,4812305:0,0,0 -(1,15420:3078558,2439708:0,1703936,0 -g1,15420:29030814,2439708 -g1,15420:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15420:36151628,1915420:16384,1179648,0 +[1,15418:3078558,4812305:0,0,0 +(1,15418:3078558,2439708:0,1703936,0 +g1,15418:29030814,2439708 +g1,15418:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15418:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15420:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15418:37855564,2439708:1179648,16384,0 ) ) -k1,15420:3078556,2439708:-34777008 +k1,15418:3078556,2439708:-34777008 ) ] -[1,15420:3078558,4812305:0,0,0 -(1,15420:3078558,49800853:0,16384,2228224 -k1,15420:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15420:2537886,49800853:1179648,16384,0 +[1,15418:3078558,4812305:0,0,0 +(1,15418:3078558,49800853:0,16384,2228224 +k1,15418:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15418:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15420:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15418:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15420:3078558,4812305:0,0,0 -(1,15420:3078558,49800853:0,16384,2228224 -g1,15420:29030814,49800853 -g1,15420:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15420:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15420:37855564,49800853:1179648,16384,0 -) -) -k1,15420:3078556,49800853:-34777008 -) -] -g1,15420:6630773,4812305 -k1,15420:19575446,4812305:11749296 -g1,15420:21198117,4812305 -g1,15420:21985204,4812305 -g1,15420:24539797,4812305 -g1,15420:25949476,4812305 -g1,15420:28728857,4812305 -g1,15420:29852144,4812305 -) -) -] -[1,15420:6630773,45706769:25952256,40108032,0 -(1,15420:6630773,45706769:25952256,40108032,0 -(1,15420:6630773,45706769:0,0,0 -g1,15420:6630773,45706769 -) -[1,15420:6630773,45706769:25952256,40108032,0 -(1,15288:6630773,6254097:25952256,513147,134348 -k1,15287:7960082,6254097:259761 -k1,15287:11581839,6254097:259760 -k1,15287:12650970,6254097:259761 -k1,15287:13929816,6254097:259761 -k1,15287:18838701,6254097:259761 -k1,15287:19757753,6254097:259760 -k1,15287:21036599,6254097:259761 -k1,15287:24942128,6254097:259761 -k1,15287:25861181,6254097:259761 -k1,15287:29595660,6254097:259760 -k1,15287:30506849,6254097:259761 -k1,15288:32583029,6254097:0 -) -(1,15288:6630773,7119177:25952256,513147,134348 -k1,15287:9019496,7119177:188679 -k1,15287:10999929,7119177:188679 -k1,15287:11816443,7119177:188679 -k1,15287:14066875,7119177:188669 -k1,15287:19503677,7119177:188679 -k1,15287:22031991,7119177:188679 -k1,15287:22752167,7119177:188679 -k1,15287:26030869,7119177:188679 -k1,15287:26981076,7119177:188679 -k1,15287:29500871,7119177:188679 -k1,15287:32583029,7119177:0 -) -(1,15288:6630773,7984257:25952256,513147,126483 -g1,15287:7489294,7984257 -g1,15287:9295466,7984257 -g1,15287:11337567,7984257 -g1,15287:12298324,7984257 -g1,15287:14565869,7984257 -g1,15287:15432254,7984257 -(1,15287:15432254,7984257:0,452978,115847 -r1,15420:17900791,7984257:2468537,568825,115847 -k1,15287:15432254,7984257:-2468537 -) -(1,15287:15432254,7984257:2468537,452978,115847 -k1,15287:15432254,7984257:3277 -h1,15287:17897514,7984257:0,411205,112570 -) -g1,15287:18100020,7984257 -g1,15287:20309238,7984257 -g1,15287:21527552,7984257 -k1,15288:32583029,7984257:8459596 -g1,15288:32583029,7984257 -) -(1,15290:6630773,8849337:25952256,505283,126483 -h1,15289:6630773,8849337:983040,0,0 -k1,15289:9098793,8849337:288293 -k1,15289:11471131,8849337:288293 -k1,15289:14849446,8849337:288292 -k1,15289:16993063,8849337:288293 -k1,15289:18774266,8849337:288293 -k1,15289:20128830,8849337:288293 -k1,15289:22943536,8849337:288293 -k1,15289:25918149,8849337:288292 -k1,15289:29290566,8849337:288293 -k1,15289:31896867,8849337:288293 -k1,15289:32583029,8849337:0 -) -(1,15290:6630773,9714417:25952256,513147,134348 -k1,15289:11042074,9714417:209788 -k1,15289:11867900,9714417:209788 -k1,15289:15150016,9714417:209788 -k1,15289:18443928,9714417:209788 -k1,15289:19695738,9714417:209788 -k1,15289:22740613,9714417:209788 -k1,15289:26355652,9714417:209788 -k1,15289:28500063,9714417:209788 -k1,15289:30522577,9714417:209788 -k1,15290:32583029,9714417:0 -) -(1,15290:6630773,10579497:25952256,513147,126483 -k1,15289:8905580,10579497:173723 -k1,15289:10793043,10579497:173697 -k1,15289:13284774,10579497:173723 -k1,15289:13989994,10579497:173723 -k1,15289:15182802,10579497:173723 -k1,15289:18369869,10579497:173722 -k1,15289:21528102,10579497:173723 -k1,15289:22649476,10579497:173723 -k1,15289:23842284,10579497:173723 -k1,15289:26570600,10579497:173723 -k1,15289:27403614,10579497:173722 -k1,15289:28966700,10579497:173723 -k1,15289:30708044,10579497:173723 -k1,15290:32583029,10579497:0 -) -(1,15290:6630773,11444577:25952256,505283,134348 -k1,15289:9024409,11444577:223084 -k1,15289:10438939,11444577:223085 -k1,15289:13091443,11444577:223084 -k1,15289:15169196,11444577:223084 -k1,15289:16201651,11444577:223085 -k1,15289:20164875,11444577:223084 -k1,15289:22980563,11444577:223084 -k1,15289:25077977,11444577:223084 -k1,15289:28085687,11444577:223085 -k1,15289:29300331,11444577:223084 -k1,15290:32583029,11444577:0 -) -(1,15290:6630773,12309657:25952256,505283,134348 -k1,15289:7835228,12309657:179472 -k1,15289:8630738,12309657:179472 -k1,15289:11720665,12309657:179473 -k1,15289:13820341,12309657:179472 -k1,15289:16844731,12309657:179472 -k1,15289:18215648,12309657:179472 -k1,15289:20084638,12309657:179472 -k1,15289:22065039,12309657:179472 -k1,15289:23435957,12309657:179473 -k1,15289:25544153,12309657:179472 -k1,15289:27620237,12309657:179472 -k1,15289:28403951,12309657:179472 -k1,15289:29318122,12309657:179512 -k1,15289:31298523,12309657:179472 -k1,15289:32583029,12309657:0 -) -(1,15290:6630773,13174737:25952256,513147,126483 -k1,15289:8764516,13174737:172906 -k1,15289:12340050,13174737:172905 -k1,15289:13164384,13174737:172906 -k1,15289:14356375,13174737:172906 -k1,15289:16516988,13174737:172906 -k1,15289:19233345,13174737:172905 -k1,15289:21663966,13174737:172906 -k1,15289:23033559,13174737:172906 -k1,15289:26609094,13174737:172906 -k1,15289:28497732,13174737:172905 -k1,15289:29128735,13174737:172906 -k1,15289:31931601,13174737:172906 -k1,15289:32583029,13174737:0 -) -(1,15290:6630773,14039817:25952256,513147,134348 -k1,15289:9453190,14039817:153136 -k1,15289:11945960,14039817:153135 -k1,15289:13290541,14039817:153136 -k1,15289:17004248,14039817:153136 -k1,15289:18721072,14039817:153135 -k1,15289:20065653,14039817:153136 -k1,15289:22713089,14039817:153136 -k1,15289:25140979,14039817:153135 -k1,15289:28159349,14039817:153136 -k1,15289:32583029,14039817:0 -) -(1,15290:6630773,14904897:25952256,513147,134348 -k1,15289:8741633,14904897:176237 -k1,15289:9577162,14904897:176237 -k1,15289:12314547,14904897:176238 -k1,15289:14808792,14904897:176237 -k1,15289:16460244,14904897:176237 -k1,15289:18934829,14904897:176237 -k1,15289:20813037,14904897:176238 -k1,15289:24391903,14904897:176237 -k1,15289:25219568,14904897:176237 -k1,15289:26414891,14904897:176238 -k1,15289:29134580,14904897:176237 -k1,15289:31568532,14904897:176237 -k1,15290:32583029,14904897:0 -) -(1,15290:6630773,15769977:25952256,505283,134348 -k1,15289:8568672,15769977:153354 -k1,15289:10709733,15769977:153354 -k1,15289:13647712,15769977:153354 -k1,15289:14792626,15769977:153354 -k1,15289:18036003,15769977:153354 -k1,15289:18950885,15769977:153354 -k1,15289:20920242,15769977:153354 -k1,15289:23081619,15769977:153354 -k1,15289:24426418,15769977:153354 -k1,15289:26112659,15769977:153354 -k1,15289:28447707,15769977:153354 -k1,15289:31563944,15769977:153354 -k1,15289:32583029,15769977:0 -) -(1,15290:6630773,16635057:25952256,513147,134348 -k1,15289:8984302,16635057:200016 -k1,15289:12168827,16635057:200015 -k1,15289:13560288,16635057:200016 -k1,15289:15844349,16635057:200016 -k1,15289:17035925,16635057:200016 -k1,15289:19989107,16635057:200015 -k1,15289:20805161,16635057:200016 -k1,15289:22606877,16635057:200016 -k1,15289:26536546,16635057:200015 -k1,15289:29820686,16635057:200016 -k1,15289:32583029,16635057:0 -) -(1,15290:6630773,17500137:25952256,513147,134348 -k1,15289:9801470,17500137:260243 -k1,15289:11536929,17500137:260244 -k1,15289:14717456,17500137:260243 -k1,15289:15996785,17500137:260244 -k1,15289:18800480,17500137:260243 -k1,15289:21144768,17500137:260243 -k1,15289:22021050,17500137:260244 -k1,15289:25043636,17500137:260243 -k1,15289:27045827,17500137:260244 -k1,15289:29180400,17500137:260243 -k1,15289:32583029,17500137:0 -) -(1,15290:6630773,18365217:25952256,513147,126483 -g1,15289:7860883,18365217 -g1,15289:10425962,18365217 -g1,15289:11644276,18365217 -g1,15289:13669993,18365217 -g1,15289:14528514,18365217 -g1,15289:15930984,18365217 -k1,15290:32583029,18365217:15017577 -g1,15290:32583029,18365217 -) -v1,15292:6630773,19230297:0,393216,0 -(1,15318:6630773,34135824:25952256,15298743,0 -g1,15318:6630773,34135824 -g1,15318:6237557,34135824 -r1,15420:6368629,34135824:131072,15298743,0 -g1,15318:6567858,34135824 -g1,15318:6764466,34135824 -[1,15318:6764466,34135824:25818563,15298743,0 -(1,15293:6764466,19591474:25818563,754393,260573 -(1,15292:6764466,19591474:0,754393,260573 -r1,15420:7856192,19591474:1091726,1014966,260573 -k1,15292:6764466,19591474:-1091726 -) -(1,15292:6764466,19591474:1091726,754393,260573 -) -k1,15292:8055867,19591474:199675 -k1,15292:8383547,19591474:327680 -k1,15292:8998064,19591474:199674 -k1,15292:10330201,19591474:199675 -k1,15292:12577876,19591474:199675 -k1,15292:13909358,19591474:199675 -k1,15292:18080515,19591474:199675 -k1,15292:20522832,19591474:199675 -k1,15292:22710214,19591474:199675 -k1,15292:25627011,19591474:199674 -k1,15292:27293382,19591474:199675 -k1,15292:29191095,19591474:199675 -k1,15292:30409855,19591474:199675 -k1,15292:32583029,19591474:0 -) -(1,15293:6764466,20456554:25818563,513147,126483 -k1,15292:7692062,20456554:268304 -k1,15292:8979452,20456554:268305 -k1,15292:9935229,20456554:268304 -k1,15292:11195093,20456554:268304 -k1,15292:12529669,20456554:268305 -k1,15292:17102378,20456554:268304 -k1,15292:17840575,20456554:268304 -k1,15292:18640377,20456554:268305 -k1,15292:19894342,20456554:268304 -k1,15292:24312386,20456554:268304 -k1,15292:25196729,20456554:268305 -k1,15292:26450694,20456554:268304 -k1,15292:28067729,20456554:268304 -k1,15292:28935688,20456554:268305 -k1,15292:31305732,20456554:268304 -k1,15292:32583029,20456554:0 -) -(1,15293:6764466,21321634:25818563,513147,134348 -k1,15292:9166295,21321634:200475 -k1,15292:10412724,21321634:200474 -k1,15292:14439190,21321634:200475 -k1,15292:15836351,21321634:200474 -k1,15292:17638526,21321634:200475 -k1,15292:20790087,21321634:200475 -k1,15292:22182006,21321634:200474 -k1,15292:25897177,21321634:200475 -k1,15292:28601782,21321634:200474 -k1,15292:29333754,21321634:200475 -k1,15292:32583029,21321634:0 -) -(1,15293:6764466,22186714:25818563,513147,134348 -g1,15292:7911346,22186714 -g1,15292:10766749,22186714 -g1,15292:15079017,22186714 -g1,15292:17596254,22186714 -g1,15292:19079989,22186714 -g1,15292:20270778,22186714 -g1,15292:22942025,22186714 -g1,15292:26849936,22186714 -k1,15293:32583029,22186714:3837792 -g1,15293:32583029,22186714 -) -(1,15295:6764466,23051794:25818563,513147,134348 -h1,15294:6764466,23051794:983040,0,0 -k1,15294:10036931,23051794:225041 -k1,15294:12579979,23051794:225040 -k1,15294:13951245,23051794:225041 -k1,15294:15920198,23051794:225040 -k1,15294:18013670,23051794:225041 -k1,15294:18890139,23051794:225041 -k1,15294:20504542,23051794:225040 -k1,15294:22297204,23051794:225041 -k1,15294:23292948,23051794:225041 -k1,15294:27127056,23051794:225040 -k1,15294:29206766,23051794:225041 -k1,15294:30241176,23051794:225040 -k1,15294:30822077,23051794:225041 -k1,15295:32583029,23051794:0 -) -(1,15295:6764466,23916874:25818563,513147,134348 -k1,15294:8198230,23916874:222003 -k1,15294:11076408,23916874:222004 -k1,15294:13387043,23916874:222003 -k1,15294:15789429,23916874:222003 -k1,15294:16759198,23916874:222003 -k1,15294:19652449,23916874:222004 -k1,15294:20502287,23916874:222003 -k1,15294:22190986,23916874:222003 -k1,15294:24110371,23916874:222003 -k1,15294:26745411,23916874:222004 -k1,15294:28810286,23916874:222003 -k1,15294:30023849,23916874:222003 -k1,15294:32583029,23916874:0 -) -(1,15295:6764466,24781954:25818563,505283,134348 -k1,15294:8604240,24781954:176470 -k1,15294:12773820,24781954:176471 -k1,15294:17160323,24781954:176470 -k1,15294:18621300,24781954:176471 -k1,15294:21135439,24781954:176470 -k1,15294:22330995,24781954:176471 -k1,15294:24979483,24781954:176470 -k1,15294:26668525,24781954:176471 -k1,15294:27836555,24781954:176470 -k1,15294:30771436,24781954:176471 -k1,15294:31563944,24781954:176470 -k1,15294:32583029,24781954:0 -) -(1,15295:6764466,25647034:25818563,513147,134348 -k1,15294:9063578,25647034:137735 -k1,15294:10719782,25647034:137735 -k1,15294:13175524,25647034:137734 -k1,15294:14304819,25647034:137735 -k1,15294:15508825,25647034:137735 -k1,15294:19950965,25647034:137735 -k1,15294:20774862,25647034:137735 -k1,15294:21931682,25647034:137735 -k1,15294:24895328,25647034:137734 -k1,15294:26600684,25647034:137735 -k1,15294:27757504,25647034:137735 -k1,15294:30367257,25647034:137735 -k1,15294:32583029,25647034:0 -) -(1,15295:6764466,26512114:25818563,505283,134348 -k1,15294:8491929,26512114:214237 -k1,15294:10444181,26512114:214237 -k1,15294:14299598,26512114:214237 -k1,15294:16523824,26512114:214237 -k1,15294:17757146,26512114:214237 -k1,15294:21189201,26512114:214237 -k1,15294:23419981,26512114:214237 -k1,15294:26773393,26512114:214237 -k1,15294:28496269,26512114:214237 -k1,15294:31571153,26512114:214237 -k1,15295:32583029,26512114:0 -) -(1,15295:6764466,27377194:25818563,513147,126483 -g1,15294:9795506,27377194 -g1,15294:11186180,27377194 -g1,15294:14666141,27377194 -k1,15295:32583029,27377194:14818346 -g1,15295:32583029,27377194 -) -v1,15297:6764466,28062049:0,393216,0 -(1,15302:6764466,29009966:25818563,1341133,196608 -g1,15302:6764466,29009966 -g1,15302:6764466,29009966 -g1,15302:6567858,29009966 -(1,15302:6567858,29009966:0,1341133,196608 -r1,15420:32779637,29009966:26211779,1537741,196608 -k1,15302:6567857,29009966:-26211780 -) -(1,15302:6567858,29009966:26211779,1341133,196608 -[1,15302:6764466,29009966:25818563,1144525,0 -(1,15299:6764466,28218865:25818563,353424,106246 -(1,15298:6764466,28218865:0,0,0 -g1,15298:6764466,28218865 -g1,15298:6764466,28218865 -g1,15298:6436786,28218865 -(1,15298:6436786,28218865:0,0,0 -) -g1,15298:6764466,28218865 -) -g1,15299:7428374,28218865 -g1,15299:8092282,28218865 -g1,15299:8756190,28218865 -g1,15299:9420098,28218865 -g1,15299:10084006,28218865 -g1,15299:10747914,28218865 -g1,15299:12075730,28218865 -g1,15299:12739638,28218865 -g1,15299:14067454,28218865 -g1,15299:14731362,28218865 -h1,15299:15727224,28218865:0,0,0 -k1,15299:32583028,28218865:16855804 -g1,15299:32583028,28218865 -) -(1,15300:6764466,28903720:25818563,353424,106246 -h1,15300:6764466,28903720:0,0,0 -g1,15300:7428374,28903720 -g1,15300:8092282,28903720 -g1,15300:8756190,28903720 -g1,15300:9420098,28903720 -g1,15300:10084006,28903720 -g1,15300:10747914,28903720 -g1,15300:11411822,28903720 -g1,15300:12075730,28903720 -g1,15300:13403546,28903720 -g1,15300:14067454,28903720 -g1,15300:15395270,28903720 -g1,15300:16059178,28903720 -h1,15300:17718948,28903720:0,0,0 -k1,15300:32583029,28903720:14864081 -g1,15300:32583029,28903720 -) -] -) -g1,15302:32583029,29009966 -g1,15302:6764466,29009966 -g1,15302:6764466,29009966 -g1,15302:32583029,29009966 -g1,15302:32583029,29009966 -) -h1,15302:6764466,29206574:0,0,0 -(1,15306:6764466,30071654:25818563,513147,126483 -h1,15305:6764466,30071654:983040,0,0 -k1,15305:8533131,30071654:157790 -k1,15305:11322193,30071654:157791 -k1,15305:12131411,30071654:157790 -k1,15305:14033114,30071654:157790 -k1,15305:16219900,30071654:157791 -k1,15305:17396775,30071654:157790 -k1,15305:19872573,30071654:157790 -k1,15305:21898794,30071654:157790 -k1,15305:23048145,30071654:157791 -k1,15305:27510340,30071654:157790 -k1,15305:29134826,30071654:157790 -k1,15305:29758578,30071654:157791 -k1,15305:30982639,30071654:157790 -k1,15305:32583029,30071654:0 -) -(1,15306:6764466,30936734:25818563,505283,134348 -g1,15305:9281703,30936734 -g1,15305:10754297,30936734 -g1,15305:13934103,30936734 -g1,15305:14899448,30936734 -g1,15305:17728637,30936734 -k1,15306:32583029,30936734:10799025 -g1,15306:32583029,30936734 -) -v1,15308:6764466,31621589:0,393216,0 -(1,15315:6764466,33939216:25818563,2710843,196608 -g1,15315:6764466,33939216 -g1,15315:6764466,33939216 -g1,15315:6567858,33939216 -(1,15315:6567858,33939216:0,2710843,196608 -r1,15420:32779637,33939216:26211779,2907451,196608 -k1,15315:6567857,33939216:-26211780 -) -(1,15315:6567858,33939216:26211779,2710843,196608 -[1,15315:6764466,33939216:25818563,2514235,0 -(1,15310:6764466,31778405:25818563,353424,106246 -(1,15309:6764466,31778405:0,0,0 -g1,15309:6764466,31778405 -g1,15309:6764466,31778405 -g1,15309:6436786,31778405 -(1,15309:6436786,31778405:0,0,0 -) -g1,15309:6764466,31778405 -) -g1,15310:7428374,31778405 -g1,15310:8092282,31778405 -g1,15310:8756190,31778405 -g1,15310:9420098,31778405 -g1,15310:10084006,31778405 -g1,15310:10747914,31778405 -g1,15310:11411822,31778405 -g1,15310:12075730,31778405 -g1,15310:13403546,31778405 -g1,15310:14067454,31778405 -g1,15310:15395270,31778405 -g1,15310:16059178,31778405 -h1,15310:17055040,31778405:0,0,0 -k1,15310:32583029,31778405:15527989 -g1,15310:32583029,31778405 -) -(1,15311:6764466,32463260:25818563,424439,106246 -h1,15311:6764466,32463260:0,0,0 -g1,15311:7428374,32463260 -g1,15311:8092282,32463260 -g1,15311:9088144,32463260 -g1,15311:9752052,32463260 -g1,15311:10415960,32463260 -g1,15311:11079868,32463260 -h1,15311:12407684,32463260:0,0,0 -k1,15311:32583028,32463260:20175344 -g1,15311:32583028,32463260 -) -(1,15312:6764466,33148115:25818563,353424,106246 -h1,15312:6764466,33148115:0,0,0 -g1,15312:7428374,33148115 -g1,15312:8092282,33148115 -g1,15312:8756190,33148115 -g1,15312:9420098,33148115 -g1,15312:10084006,33148115 -g1,15312:10747914,33148115 -g1,15312:11411822,33148115 -g1,15312:12075730,33148115 -h1,15312:13071592,33148115:0,0,0 -k1,15312:32583028,33148115:19511436 -g1,15312:32583028,33148115 -) -(1,15313:6764466,33832970:25818563,353424,106246 -h1,15313:6764466,33832970:0,0,0 -g1,15313:7428374,33832970 -g1,15313:8092282,33832970 -g1,15313:8756190,33832970 -g1,15313:9420098,33832970 -g1,15313:10084006,33832970 -g1,15313:10747914,33832970 -h1,15313:11079868,33832970:0,0,0 -k1,15313:32583028,33832970:21503160 -g1,15313:32583028,33832970 -) -] -) -g1,15315:32583029,33939216 -g1,15315:6764466,33939216 -g1,15315:6764466,33939216 -g1,15315:32583029,33939216 -g1,15315:32583029,33939216 -) -h1,15315:6764466,34135824:0,0,0 -] -g1,15318:32583029,34135824 -) -h1,15318:6630773,34135824:0,0,0 -v1,15321:6630773,35000904:0,393216,0 -(1,15420:6630773,44959430:25952256,10351742,0 -g1,15420:6630773,44959430 -g1,15420:6237557,44959430 -r1,15420:6368629,44959430:131072,10351742,0 -g1,15420:6567858,44959430 -g1,15420:6764466,44959430 -[1,15420:6764466,44959430:25818563,10351742,0 -(1,15322:6764466,35309202:25818563,701514,196608 -(1,15321:6764466,35309202:0,701514,196608 -r1,15420:7761522,35309202:997056,898122,196608 -k1,15321:6764466,35309202:-997056 -) -(1,15321:6764466,35309202:997056,701514,196608 -) -k1,15321:7907872,35309202:146350 -k1,15321:8235552,35309202:327680 -k1,15321:8235552,35309202:0 -k1,15321:12718339,35309202:150202 -k1,15321:13545527,35309202:150201 -k1,15321:15742417,35309202:150201 -k1,15321:19025321,35309202:146351 -k1,15321:21700050,35309202:146350 -k1,15321:23049641,35309202:146350 -k1,15321:23727488,35309202:146350 -k1,15321:24229699,35309202:146351 -k1,15321:25958088,35309202:146350 -k1,15321:27926994,35309202:146350 -k1,15321:29092429,35309202:146350 -k1,15321:29653570,35309202:146298 -k1,15321:32583029,35309202:0 -) -(1,15322:6764466,36174282:25818563,513147,126483 -k1,15321:7503822,36174282:281259 -k1,15321:8316577,36174282:281258 -k1,15321:11546301,36174282:281259 -k1,15321:12478987,36174282:281258 -k1,15321:15429527,36174282:281259 -k1,15321:17041166,36174282:281258 -k1,15321:20196179,36174282:281259 -k1,15321:21581719,36174282:281258 -k1,15321:22610744,36174282:281259 -k1,15321:27079097,36174282:281258 -k1,15321:30502152,36174282:281259 -k1,15321:31469572,36174282:281258 -k1,15321:32583029,36174282:0 -) -(1,15322:6764466,37039362:25818563,513147,134348 -k1,15321:8694316,37039362:227880 -k1,15321:9337010,37039362:227851 -k1,15321:12028389,37039362:227881 -k1,15321:13360551,37039362:227880 -k1,15321:14336197,37039362:227880 -k1,15321:16375492,37039362:227880 -k1,15321:17219410,37039362:227880 -k1,15321:20288931,37039362:227880 -k1,15321:23497388,37039362:227880 -k1,15321:25222767,37039362:227881 -k1,15321:26832801,37039362:227880 -k1,15321:27592178,37039362:227880 -k1,15321:29023299,37039362:227880 -k1,15321:31555425,37039362:227880 -k1,15321:32583029,37039362:0 -) -(1,15322:6764466,37904442:25818563,513147,126483 -k1,15321:9797909,37904442:198356 -k1,15321:10462225,37904442:198355 -k1,15321:11528933,37904442:198356 -k1,15321:13275904,37904442:198355 -k1,15321:14125688,37904442:198356 -k1,15321:15011516,37904442:198355 -k1,15321:17441373,37904442:198356 -k1,15321:20402071,37904442:198355 -k1,15321:22918435,37904442:198356 -k1,15321:23768218,37904442:198355 -k1,15321:24985659,37904442:198356 -k1,15321:26837487,37904442:198355 -k1,15321:28598877,37904442:198356 -k1,15321:29665584,37904442:198355 -k1,15321:30968222,37904442:198356 -k1,15321:32583029,37904442:0 -) -(1,15322:6764466,38769522:25818563,513147,134348 -k1,15321:7339041,38769522:218715 -(1,15321:7339041,38769522:0,459977,115847 -r1,15420:8400730,38769522:1061689,575824,115847 -k1,15321:7339041,38769522:-1061689 -) -(1,15321:7339041,38769522:1061689,459977,115847 -k1,15321:7339041,38769522:3277 -h1,15321:8397453,38769522:0,411205,112570 -) -k1,15321:8619445,38769522:218715 -k1,15321:10253082,38769522:218715 -k1,15321:11756303,38769522:218715 -k1,15321:13779880,38769522:218715 -k1,15321:16557121,38769522:218715 -k1,15321:17131696,38769522:218715 -k1,15321:18343937,38769522:218715 -k1,15321:19221944,38769522:218715 -k1,15321:21428366,38769522:218715 -k1,15321:24520835,38769522:218715 -k1,15321:25971627,38769522:218715 -k1,15321:28469029,38769522:218715 -h1,15321:29838076,38769522:0,0,0 -k1,15321:30056791,38769522:218715 -k1,15321:31084876,38769522:218715 -k1,15321:32583029,38769522:0 -) -(1,15322:6764466,39634602:25818563,513147,134348 -h1,15321:7940182,39634602:0,0,0 -k1,15321:8490836,39634602:169890 -k1,15321:12008306,39634602:169891 -k1,15321:16153610,39634602:169890 -k1,15321:19349297,39634602:169890 -k1,15321:20623469,39634602:169890 -k1,15321:22841360,39634602:169891 -k1,15321:25885004,39634602:169890 -k1,15321:26741056,39634602:169890 -k1,15321:30313576,39634602:169891 -k1,15321:31169628,39634602:169890 -(1,15321:31169628,39634602:0,452978,115847 -r1,15420:32583029,39634602:1413401,568825,115847 -k1,15321:31169628,39634602:-1413401 -) -(1,15321:31169628,39634602:1413401,452978,115847 -k1,15321:31169628,39634602:3277 -h1,15321:32579752,39634602:0,411205,112570 -) -k1,15321:32583029,39634602:0 -) -(1,15322:6764466,40499682:25818563,513147,134348 -k1,15321:8202053,40499682:246142 -k1,15321:10150165,40499682:246142 -k1,15321:14531630,40499682:246143 -k1,15321:17803569,40499682:246142 -k1,15321:19038649,40499682:246142 -k1,15321:19912626,40499682:246142 -k1,15321:22998443,40499682:246142 -k1,15321:23702682,40499682:246142 -k1,15321:24480322,40499682:246143 -k1,15321:27651991,40499682:246142 -k1,15321:30022810,40499682:246142 -k1,15321:31216603,40499682:246142 -k1,15321:32583029,40499682:0 -) -(1,15322:6764466,41364762:25818563,513147,134348 -k1,15321:8413456,41364762:152803 -k1,15321:9217687,41364762:152803 -k1,15321:15007242,41364762:152803 -k1,15321:17089426,41364762:152804 -k1,15321:18433674,41364762:152803 -k1,15321:19812656,41364762:152803 -k1,15321:20380256,41364762:152757 -k1,15321:23580483,41364762:152803 -k1,15321:24349324,41364762:152803 -k1,15321:25521212,41364762:152803 -k1,15321:27327489,41364762:152804 -k1,15321:28718267,41364762:152803 -k1,15321:29557232,41364762:152803 -k1,15322:32583029,41364762:0 -) -(1,15322:6764466,42229842:25818563,505283,115847 -(1,15321:6764466,42229842:0,452978,115847 -r1,15420:9584715,42229842:2820249,568825,115847 -k1,15321:6764466,42229842:-2820249 -) -(1,15321:6764466,42229842:2820249,452978,115847 -k1,15321:6764466,42229842:3277 -h1,15321:9581438,42229842:0,411205,112570 -) -g1,15321:9783944,42229842 -g1,15321:11174618,42229842 -(1,15321:11174618,42229842:0,452978,115847 -r1,15420:13291443,42229842:2116825,568825,115847 -k1,15321:11174618,42229842:-2116825 -) -(1,15321:11174618,42229842:2116825,452978,115847 -k1,15321:11174618,42229842:3277 -h1,15321:13288166,42229842:0,411205,112570 -) -g1,15321:13490672,42229842 -g1,15321:14505169,42229842 -g1,15321:16590524,42229842 -g1,15321:17808838,42229842 -k1,15322:32583029,42229842:13097125 -g1,15322:32583029,42229842 -) -(1,15324:6764466,43094922:25818563,513147,115847 -h1,15323:6764466,43094922:983040,0,0 -k1,15323:8401106,43094922:166012 -k1,15323:12043837,43094922:166046 -k1,15323:15916598,43094922:166045 -k1,15323:16614140,43094922:166045 -k1,15323:19564154,43094922:166045 -k1,15323:21616326,43094922:166046 -k1,15323:22801456,43094922:166045 -k1,15323:24705516,43094922:166045 -(1,15323:24705516,43094922:0,459977,115847 -r1,15420:28932612,43094922:4227096,575824,115847 -k1,15323:24705516,43094922:-4227096 -) -(1,15323:24705516,43094922:4227096,459977,115847 -k1,15323:24705516,43094922:3277 -h1,15323:28929335,43094922:0,411205,112570 -) -k1,15323:29272327,43094922:166045 -k1,15323:29908266,43094922:166046 -k1,15323:30605808,43094922:166045 -k1,15323:32583029,43094922:0 -) -(1,15324:6764466,43960002:25818563,513147,126483 -k1,15323:8715473,43960002:279183 -k1,15323:11868410,43960002:279183 -k1,15323:13139153,43960002:279183 -k1,15323:15126861,43960002:279184 -k1,15323:19332961,43960002:279183 -k1,15323:20373672,43960002:279183 -k1,15323:21671940,43960002:279183 -k1,15323:23331967,43960002:279183 -k1,15323:24294035,43960002:279183 -k1,15323:25985520,43960002:279184 -k1,15323:27832324,43960002:279183 -k1,15323:29337686,43960002:279183 -k1,15323:31103881,43960002:279183 -k1,15324:32583029,43960002:0 -) -(1,15324:6764466,44825082:25818563,513147,134348 -(1,15323:6764466,44825082:0,459977,115847 -r1,15420:10991562,44825082:4227096,575824,115847 -k1,15323:6764466,44825082:-4227096 -) -(1,15323:6764466,44825082:4227096,459977,115847 -k1,15323:6764466,44825082:3277 -h1,15323:10988285,44825082:0,411205,112570 -) -g1,15323:11190791,44825082 -g1,15323:12258372,44825082 -g1,15323:13561883,44825082 -g1,15323:16153831,44825082 -g1,15323:16708920,44825082 -g1,15323:19882828,44825082 -g1,15323:21947867,44825082 -g1,15323:23414562,44825082 -g1,15323:23969651,44825082 -k1,15324:32583029,44825082:6017497 -g1,15324:32583029,44825082 -) -] -g1,15420:32583029,44959430 -) -] -(1,15420:32583029,45706769:0,0,0 -g1,15420:32583029,45706769 -) -) -] -(1,15420:6630773,47279633:25952256,0,0 -h1,15420:6630773,47279633:25952256,0,0 -) -] -(1,15420:4262630,4025873:0,0,0 -[1,15420:-473656,4025873:0,0,0 -(1,15420:-473656,-710413:0,0,0 -(1,15420:-473656,-710413:0,0,0 -g1,15420:-473656,-710413 -) -g1,15420:-473656,-710413 +[1,15418:3078558,4812305:0,0,0 +(1,15418:3078558,49800853:0,16384,2228224 +g1,15418:29030814,49800853 +g1,15418:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15418:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15418:37855564,49800853:1179648,16384,0 +) +) +k1,15418:3078556,49800853:-34777008 +) +] +g1,15418:6630773,4812305 +k1,15418:19575446,4812305:11749296 +g1,15418:21198117,4812305 +g1,15418:21985204,4812305 +g1,15418:24539797,4812305 +g1,15418:25949476,4812305 +g1,15418:28728857,4812305 +g1,15418:29852144,4812305 +) +) +] +[1,15418:6630773,45706769:25952256,40108032,0 +(1,15418:6630773,45706769:25952256,40108032,0 +(1,15418:6630773,45706769:0,0,0 +g1,15418:6630773,45706769 +) +[1,15418:6630773,45706769:25952256,40108032,0 +(1,15286:6630773,6254097:25952256,513147,134348 +k1,15285:7960082,6254097:259761 +k1,15285:11581839,6254097:259760 +k1,15285:12650970,6254097:259761 +k1,15285:13929816,6254097:259761 +k1,15285:18838701,6254097:259761 +k1,15285:19757753,6254097:259760 +k1,15285:21036599,6254097:259761 +k1,15285:24942128,6254097:259761 +k1,15285:25861181,6254097:259761 +k1,15285:29595660,6254097:259760 +k1,15285:30506849,6254097:259761 +k1,15286:32583029,6254097:0 +) +(1,15286:6630773,7119177:25952256,513147,134348 +k1,15285:9019496,7119177:188679 +k1,15285:10999929,7119177:188679 +k1,15285:11816443,7119177:188679 +k1,15285:14066875,7119177:188669 +k1,15285:19503677,7119177:188679 +k1,15285:22031991,7119177:188679 +k1,15285:22752167,7119177:188679 +k1,15285:26030869,7119177:188679 +k1,15285:26981076,7119177:188679 +k1,15285:29500871,7119177:188679 +k1,15285:32583029,7119177:0 +) +(1,15286:6630773,7984257:25952256,513147,126483 +g1,15285:7489294,7984257 +g1,15285:9295466,7984257 +g1,15285:11337567,7984257 +g1,15285:12298324,7984257 +g1,15285:14565869,7984257 +g1,15285:15432254,7984257 +(1,15285:15432254,7984257:0,452978,115847 +r1,15418:17900791,7984257:2468537,568825,115847 +k1,15285:15432254,7984257:-2468537 +) +(1,15285:15432254,7984257:2468537,452978,115847 +k1,15285:15432254,7984257:3277 +h1,15285:17897514,7984257:0,411205,112570 +) +g1,15285:18100020,7984257 +g1,15285:20309238,7984257 +g1,15285:21527552,7984257 +k1,15286:32583029,7984257:8459596 +g1,15286:32583029,7984257 +) +(1,15288:6630773,8849337:25952256,505283,126483 +h1,15287:6630773,8849337:983040,0,0 +k1,15287:9098793,8849337:288293 +k1,15287:11471131,8849337:288293 +k1,15287:14849446,8849337:288292 +k1,15287:16993063,8849337:288293 +k1,15287:18774266,8849337:288293 +k1,15287:20128830,8849337:288293 +k1,15287:22943536,8849337:288293 +k1,15287:25918149,8849337:288292 +k1,15287:29290566,8849337:288293 +k1,15287:31896867,8849337:288293 +k1,15287:32583029,8849337:0 +) +(1,15288:6630773,9714417:25952256,513147,134348 +k1,15287:11042074,9714417:209788 +k1,15287:11867900,9714417:209788 +k1,15287:15150016,9714417:209788 +k1,15287:18443928,9714417:209788 +k1,15287:19695738,9714417:209788 +k1,15287:22740613,9714417:209788 +k1,15287:26355652,9714417:209788 +k1,15287:28500063,9714417:209788 +k1,15287:30522577,9714417:209788 +k1,15288:32583029,9714417:0 +) +(1,15288:6630773,10579497:25952256,513147,126483 +k1,15287:8905580,10579497:173723 +k1,15287:10793043,10579497:173697 +k1,15287:13284774,10579497:173723 +k1,15287:13989994,10579497:173723 +k1,15287:15182802,10579497:173723 +k1,15287:18369869,10579497:173722 +k1,15287:21528102,10579497:173723 +k1,15287:22649476,10579497:173723 +k1,15287:23842284,10579497:173723 +k1,15287:26570600,10579497:173723 +k1,15287:27403614,10579497:173722 +k1,15287:28966700,10579497:173723 +k1,15287:30708044,10579497:173723 +k1,15288:32583029,10579497:0 +) +(1,15288:6630773,11444577:25952256,505283,134348 +k1,15287:9024409,11444577:223084 +k1,15287:10438939,11444577:223085 +k1,15287:13091443,11444577:223084 +k1,15287:15169196,11444577:223084 +k1,15287:16201651,11444577:223085 +k1,15287:20164875,11444577:223084 +k1,15287:22980563,11444577:223084 +k1,15287:25077977,11444577:223084 +k1,15287:28085687,11444577:223085 +k1,15287:29300331,11444577:223084 +k1,15288:32583029,11444577:0 +) +(1,15288:6630773,12309657:25952256,505283,134348 +k1,15287:7835228,12309657:179472 +k1,15287:8630738,12309657:179472 +k1,15287:11720665,12309657:179473 +k1,15287:13820341,12309657:179472 +k1,15287:16844731,12309657:179472 +k1,15287:18215648,12309657:179472 +k1,15287:20084638,12309657:179472 +k1,15287:22065039,12309657:179472 +k1,15287:23435957,12309657:179473 +k1,15287:25544153,12309657:179472 +k1,15287:27620237,12309657:179472 +k1,15287:28403951,12309657:179472 +k1,15287:29318122,12309657:179512 +k1,15287:31298523,12309657:179472 +k1,15287:32583029,12309657:0 +) +(1,15288:6630773,13174737:25952256,513147,126483 +k1,15287:8764516,13174737:172906 +k1,15287:12340050,13174737:172905 +k1,15287:13164384,13174737:172906 +k1,15287:14356375,13174737:172906 +k1,15287:16516988,13174737:172906 +k1,15287:19233345,13174737:172905 +k1,15287:21663966,13174737:172906 +k1,15287:23033559,13174737:172906 +k1,15287:26609094,13174737:172906 +k1,15287:28497732,13174737:172905 +k1,15287:29128735,13174737:172906 +k1,15287:31931601,13174737:172906 +k1,15287:32583029,13174737:0 +) +(1,15288:6630773,14039817:25952256,513147,134348 +k1,15287:9453190,14039817:153136 +k1,15287:11945960,14039817:153135 +k1,15287:13290541,14039817:153136 +k1,15287:17004248,14039817:153136 +k1,15287:18721072,14039817:153135 +k1,15287:20065653,14039817:153136 +k1,15287:22713089,14039817:153136 +k1,15287:25140979,14039817:153135 +k1,15287:28159349,14039817:153136 +k1,15287:32583029,14039817:0 +) +(1,15288:6630773,14904897:25952256,513147,134348 +k1,15287:8741633,14904897:176237 +k1,15287:9577162,14904897:176237 +k1,15287:12314547,14904897:176238 +k1,15287:14808792,14904897:176237 +k1,15287:16460244,14904897:176237 +k1,15287:18934829,14904897:176237 +k1,15287:20813037,14904897:176238 +k1,15287:24391903,14904897:176237 +k1,15287:25219568,14904897:176237 +k1,15287:26414891,14904897:176238 +k1,15287:29134580,14904897:176237 +k1,15287:31568532,14904897:176237 +k1,15288:32583029,14904897:0 +) +(1,15288:6630773,15769977:25952256,505283,134348 +k1,15287:8568672,15769977:153354 +k1,15287:10709733,15769977:153354 +k1,15287:13647712,15769977:153354 +k1,15287:14792626,15769977:153354 +k1,15287:18036003,15769977:153354 +k1,15287:18950885,15769977:153354 +k1,15287:20920242,15769977:153354 +k1,15287:23081619,15769977:153354 +k1,15287:24426418,15769977:153354 +k1,15287:26112659,15769977:153354 +k1,15287:28447707,15769977:153354 +k1,15287:31563944,15769977:153354 +k1,15287:32583029,15769977:0 +) +(1,15288:6630773,16635057:25952256,513147,134348 +k1,15287:8984302,16635057:200016 +k1,15287:12168827,16635057:200015 +k1,15287:13560288,16635057:200016 +k1,15287:15844349,16635057:200016 +k1,15287:17035925,16635057:200016 +k1,15287:19989107,16635057:200015 +k1,15287:20805161,16635057:200016 +k1,15287:22606877,16635057:200016 +k1,15287:26536546,16635057:200015 +k1,15287:29820686,16635057:200016 +k1,15287:32583029,16635057:0 +) +(1,15288:6630773,17500137:25952256,513147,134348 +k1,15287:9801470,17500137:260243 +k1,15287:11536929,17500137:260244 +k1,15287:14717456,17500137:260243 +k1,15287:15996785,17500137:260244 +k1,15287:18800480,17500137:260243 +k1,15287:21144768,17500137:260243 +k1,15287:22021050,17500137:260244 +k1,15287:25043636,17500137:260243 +k1,15287:27045827,17500137:260244 +k1,15287:29180400,17500137:260243 +k1,15287:32583029,17500137:0 +) +(1,15288:6630773,18365217:25952256,513147,126483 +g1,15287:7860883,18365217 +g1,15287:10425962,18365217 +g1,15287:11644276,18365217 +g1,15287:13669993,18365217 +g1,15287:14528514,18365217 +g1,15287:15930984,18365217 +k1,15288:32583029,18365217:15017577 +g1,15288:32583029,18365217 +) +v1,15290:6630773,19230297:0,393216,0 +(1,15316:6630773,34135824:25952256,15298743,0 +g1,15316:6630773,34135824 +g1,15316:6237557,34135824 +r1,15418:6368629,34135824:131072,15298743,0 +g1,15316:6567858,34135824 +g1,15316:6764466,34135824 +[1,15316:6764466,34135824:25818563,15298743,0 +(1,15291:6764466,19591474:25818563,754393,260573 +(1,15290:6764466,19591474:0,754393,260573 +r1,15418:7856192,19591474:1091726,1014966,260573 +k1,15290:6764466,19591474:-1091726 +) +(1,15290:6764466,19591474:1091726,754393,260573 +) +k1,15290:8055867,19591474:199675 +k1,15290:8383547,19591474:327680 +k1,15290:8998064,19591474:199674 +k1,15290:10330201,19591474:199675 +k1,15290:12577876,19591474:199675 +k1,15290:13909358,19591474:199675 +k1,15290:18080515,19591474:199675 +k1,15290:20522832,19591474:199675 +k1,15290:22710214,19591474:199675 +k1,15290:25627011,19591474:199674 +k1,15290:27293382,19591474:199675 +k1,15290:29191095,19591474:199675 +k1,15290:30409855,19591474:199675 +k1,15290:32583029,19591474:0 +) +(1,15291:6764466,20456554:25818563,513147,126483 +k1,15290:7692062,20456554:268304 +k1,15290:8979452,20456554:268305 +k1,15290:9935229,20456554:268304 +k1,15290:11195093,20456554:268304 +k1,15290:12529669,20456554:268305 +k1,15290:17102378,20456554:268304 +k1,15290:17840575,20456554:268304 +k1,15290:18640377,20456554:268305 +k1,15290:19894342,20456554:268304 +k1,15290:24312386,20456554:268304 +k1,15290:25196729,20456554:268305 +k1,15290:26450694,20456554:268304 +k1,15290:28067729,20456554:268304 +k1,15290:28935688,20456554:268305 +k1,15290:31305732,20456554:268304 +k1,15290:32583029,20456554:0 +) +(1,15291:6764466,21321634:25818563,513147,134348 +k1,15290:9166295,21321634:200475 +k1,15290:10412724,21321634:200474 +k1,15290:14439190,21321634:200475 +k1,15290:15836351,21321634:200474 +k1,15290:17638526,21321634:200475 +k1,15290:20790087,21321634:200475 +k1,15290:22182006,21321634:200474 +k1,15290:25897177,21321634:200475 +k1,15290:28601782,21321634:200474 +k1,15290:29333754,21321634:200475 +k1,15290:32583029,21321634:0 +) +(1,15291:6764466,22186714:25818563,513147,134348 +g1,15290:7911346,22186714 +g1,15290:10766749,22186714 +g1,15290:15079017,22186714 +g1,15290:17596254,22186714 +g1,15290:19079989,22186714 +g1,15290:20270778,22186714 +g1,15290:22942025,22186714 +g1,15290:26849936,22186714 +k1,15291:32583029,22186714:3837792 +g1,15291:32583029,22186714 +) +(1,15293:6764466,23051794:25818563,513147,134348 +h1,15292:6764466,23051794:983040,0,0 +k1,15292:10036931,23051794:225041 +k1,15292:12579979,23051794:225040 +k1,15292:13951245,23051794:225041 +k1,15292:15920198,23051794:225040 +k1,15292:18013670,23051794:225041 +k1,15292:18890139,23051794:225041 +k1,15292:20504542,23051794:225040 +k1,15292:22297204,23051794:225041 +k1,15292:23292948,23051794:225041 +k1,15292:27127056,23051794:225040 +k1,15292:29206766,23051794:225041 +k1,15292:30241176,23051794:225040 +k1,15292:30822077,23051794:225041 +k1,15293:32583029,23051794:0 +) +(1,15293:6764466,23916874:25818563,513147,134348 +k1,15292:8183758,23916874:207531 +k1,15292:11047462,23916874:207530 +k1,15292:13343625,23916874:207531 +k1,15292:15731539,23916874:207531 +k1,15292:16686835,23916874:207530 +k1,15292:19565613,23916874:207531 +k1,15292:20400979,23916874:207531 +k1,15292:22075205,23916874:207530 +k1,15292:24153789,23916874:207531 +k1,15292:26774356,23916874:207531 +k1,15292:28824758,23916874:207530 +k1,15292:30023849,23916874:207531 +k1,15292:32583029,23916874:0 +) +(1,15293:6764466,24781954:25818563,505283,134348 +k1,15292:8604240,24781954:176470 +k1,15292:12773820,24781954:176471 +k1,15292:17160323,24781954:176470 +k1,15292:18621300,24781954:176471 +k1,15292:21135439,24781954:176470 +k1,15292:22330995,24781954:176471 +k1,15292:24979483,24781954:176470 +k1,15292:26668525,24781954:176471 +k1,15292:27836555,24781954:176470 +k1,15292:30771436,24781954:176471 +k1,15292:31563944,24781954:176470 +k1,15292:32583029,24781954:0 +) +(1,15293:6764466,25647034:25818563,513147,134348 +k1,15292:9063578,25647034:137735 +k1,15292:10719782,25647034:137735 +k1,15292:13175524,25647034:137734 +k1,15292:14304819,25647034:137735 +k1,15292:15508825,25647034:137735 +k1,15292:19950965,25647034:137735 +k1,15292:20774862,25647034:137735 +k1,15292:21931682,25647034:137735 +k1,15292:24895328,25647034:137734 +k1,15292:26600684,25647034:137735 +k1,15292:27757504,25647034:137735 +k1,15292:30367257,25647034:137735 +k1,15292:32583029,25647034:0 +) +(1,15293:6764466,26512114:25818563,505283,134348 +k1,15292:8491929,26512114:214237 +k1,15292:10444181,26512114:214237 +k1,15292:14299598,26512114:214237 +k1,15292:16523824,26512114:214237 +k1,15292:17757146,26512114:214237 +k1,15292:21189201,26512114:214237 +k1,15292:23419981,26512114:214237 +k1,15292:26773393,26512114:214237 +k1,15292:28496269,26512114:214237 +k1,15292:31571153,26512114:214237 +k1,15293:32583029,26512114:0 +) +(1,15293:6764466,27377194:25818563,513147,126483 +g1,15292:9795506,27377194 +g1,15292:11186180,27377194 +g1,15292:14666141,27377194 +k1,15293:32583029,27377194:14818346 +g1,15293:32583029,27377194 +) +v1,15295:6764466,28062049:0,393216,0 +(1,15300:6764466,29009966:25818563,1341133,196608 +g1,15300:6764466,29009966 +g1,15300:6764466,29009966 +g1,15300:6567858,29009966 +(1,15300:6567858,29009966:0,1341133,196608 +r1,15418:32779637,29009966:26211779,1537741,196608 +k1,15300:6567857,29009966:-26211780 +) +(1,15300:6567858,29009966:26211779,1341133,196608 +[1,15300:6764466,29009966:25818563,1144525,0 +(1,15297:6764466,28218865:25818563,353424,106246 +(1,15296:6764466,28218865:0,0,0 +g1,15296:6764466,28218865 +g1,15296:6764466,28218865 +g1,15296:6436786,28218865 +(1,15296:6436786,28218865:0,0,0 +) +g1,15296:6764466,28218865 +) +g1,15297:7428374,28218865 +g1,15297:8092282,28218865 +g1,15297:8756190,28218865 +g1,15297:9420098,28218865 +g1,15297:10084006,28218865 +g1,15297:10747914,28218865 +g1,15297:12075730,28218865 +g1,15297:12739638,28218865 +g1,15297:14067454,28218865 +g1,15297:14731362,28218865 +h1,15297:15727224,28218865:0,0,0 +k1,15297:32583028,28218865:16855804 +g1,15297:32583028,28218865 +) +(1,15298:6764466,28903720:25818563,353424,106246 +h1,15298:6764466,28903720:0,0,0 +g1,15298:7428374,28903720 +g1,15298:8092282,28903720 +g1,15298:8756190,28903720 +g1,15298:9420098,28903720 +g1,15298:10084006,28903720 +g1,15298:10747914,28903720 +g1,15298:11411822,28903720 +g1,15298:12075730,28903720 +g1,15298:13403546,28903720 +g1,15298:14067454,28903720 +g1,15298:15395270,28903720 +g1,15298:16059178,28903720 +h1,15298:17718948,28903720:0,0,0 +k1,15298:32583029,28903720:14864081 +g1,15298:32583029,28903720 +) +] +) +g1,15300:32583029,29009966 +g1,15300:6764466,29009966 +g1,15300:6764466,29009966 +g1,15300:32583029,29009966 +g1,15300:32583029,29009966 +) +h1,15300:6764466,29206574:0,0,0 +(1,15304:6764466,30071654:25818563,513147,126483 +h1,15303:6764466,30071654:983040,0,0 +k1,15303:8533131,30071654:157790 +k1,15303:11322193,30071654:157791 +k1,15303:12131411,30071654:157790 +k1,15303:14033114,30071654:157790 +k1,15303:16219900,30071654:157791 +k1,15303:17396775,30071654:157790 +k1,15303:19872573,30071654:157790 +k1,15303:21898794,30071654:157790 +k1,15303:23048145,30071654:157791 +k1,15303:27510340,30071654:157790 +k1,15303:29134826,30071654:157790 +k1,15303:29758578,30071654:157791 +k1,15303:30982639,30071654:157790 +k1,15303:32583029,30071654:0 +) +(1,15304:6764466,30936734:25818563,505283,134348 +g1,15303:9281703,30936734 +g1,15303:10754297,30936734 +g1,15303:13934103,30936734 +g1,15303:14899448,30936734 +g1,15303:17728637,30936734 +k1,15304:32583029,30936734:10799025 +g1,15304:32583029,30936734 +) +v1,15306:6764466,31621589:0,393216,0 +(1,15313:6764466,33939216:25818563,2710843,196608 +g1,15313:6764466,33939216 +g1,15313:6764466,33939216 +g1,15313:6567858,33939216 +(1,15313:6567858,33939216:0,2710843,196608 +r1,15418:32779637,33939216:26211779,2907451,196608 +k1,15313:6567857,33939216:-26211780 +) +(1,15313:6567858,33939216:26211779,2710843,196608 +[1,15313:6764466,33939216:25818563,2514235,0 +(1,15308:6764466,31778405:25818563,353424,106246 +(1,15307:6764466,31778405:0,0,0 +g1,15307:6764466,31778405 +g1,15307:6764466,31778405 +g1,15307:6436786,31778405 +(1,15307:6436786,31778405:0,0,0 +) +g1,15307:6764466,31778405 +) +g1,15308:7428374,31778405 +g1,15308:8092282,31778405 +g1,15308:8756190,31778405 +g1,15308:9420098,31778405 +g1,15308:10084006,31778405 +g1,15308:10747914,31778405 +g1,15308:11411822,31778405 +g1,15308:12075730,31778405 +g1,15308:13403546,31778405 +g1,15308:14067454,31778405 +g1,15308:15395270,31778405 +g1,15308:16059178,31778405 +h1,15308:17055040,31778405:0,0,0 +k1,15308:32583029,31778405:15527989 +g1,15308:32583029,31778405 +) +(1,15309:6764466,32463260:25818563,424439,106246 +h1,15309:6764466,32463260:0,0,0 +g1,15309:7428374,32463260 +g1,15309:8092282,32463260 +g1,15309:9088144,32463260 +g1,15309:9752052,32463260 +g1,15309:10415960,32463260 +g1,15309:11079868,32463260 +h1,15309:12407684,32463260:0,0,0 +k1,15309:32583028,32463260:20175344 +g1,15309:32583028,32463260 +) +(1,15310:6764466,33148115:25818563,353424,106246 +h1,15310:6764466,33148115:0,0,0 +g1,15310:7428374,33148115 +g1,15310:8092282,33148115 +g1,15310:8756190,33148115 +g1,15310:9420098,33148115 +g1,15310:10084006,33148115 +g1,15310:10747914,33148115 +g1,15310:11411822,33148115 +g1,15310:12075730,33148115 +h1,15310:13071592,33148115:0,0,0 +k1,15310:32583028,33148115:19511436 +g1,15310:32583028,33148115 +) +(1,15311:6764466,33832970:25818563,353424,106246 +h1,15311:6764466,33832970:0,0,0 +g1,15311:7428374,33832970 +g1,15311:8092282,33832970 +g1,15311:8756190,33832970 +g1,15311:9420098,33832970 +g1,15311:10084006,33832970 +g1,15311:10747914,33832970 +h1,15311:11079868,33832970:0,0,0 +k1,15311:32583028,33832970:21503160 +g1,15311:32583028,33832970 +) +] +) +g1,15313:32583029,33939216 +g1,15313:6764466,33939216 +g1,15313:6764466,33939216 +g1,15313:32583029,33939216 +g1,15313:32583029,33939216 +) +h1,15313:6764466,34135824:0,0,0 +] +g1,15316:32583029,34135824 +) +h1,15316:6630773,34135824:0,0,0 +v1,15319:6630773,35000904:0,393216,0 +(1,15418:6630773,44959430:25952256,10351742,0 +g1,15418:6630773,44959430 +g1,15418:6237557,44959430 +r1,15418:6368629,44959430:131072,10351742,0 +g1,15418:6567858,44959430 +g1,15418:6764466,44959430 +[1,15418:6764466,44959430:25818563,10351742,0 +(1,15320:6764466,35309202:25818563,701514,196608 +(1,15319:6764466,35309202:0,701514,196608 +r1,15418:7761522,35309202:997056,898122,196608 +k1,15319:6764466,35309202:-997056 +) +(1,15319:6764466,35309202:997056,701514,196608 +) +k1,15319:7907872,35309202:146350 +k1,15319:8235552,35309202:327680 +k1,15319:8235552,35309202:0 +k1,15319:12718339,35309202:150202 +k1,15319:13545527,35309202:150201 +k1,15319:15742417,35309202:150201 +k1,15319:19025321,35309202:146351 +k1,15319:21700050,35309202:146350 +k1,15319:23049641,35309202:146350 +k1,15319:23727488,35309202:146350 +k1,15319:24229699,35309202:146351 +k1,15319:25958088,35309202:146350 +k1,15319:27926994,35309202:146350 +k1,15319:29092429,35309202:146350 +k1,15319:29653570,35309202:146298 +k1,15319:32583029,35309202:0 +) +(1,15320:6764466,36174282:25818563,513147,126483 +k1,15319:7503822,36174282:281259 +k1,15319:8316577,36174282:281258 +k1,15319:11546301,36174282:281259 +k1,15319:12478987,36174282:281258 +k1,15319:15429527,36174282:281259 +k1,15319:17041166,36174282:281258 +k1,15319:20196179,36174282:281259 +k1,15319:21581719,36174282:281258 +k1,15319:22610744,36174282:281259 +k1,15319:27079097,36174282:281258 +k1,15319:30502152,36174282:281259 +k1,15319:31469572,36174282:281258 +k1,15319:32583029,36174282:0 +) +(1,15320:6764466,37039362:25818563,513147,134348 +k1,15319:8694316,37039362:227880 +k1,15319:9337010,37039362:227851 +k1,15319:12028389,37039362:227881 +k1,15319:13360551,37039362:227880 +k1,15319:14336197,37039362:227880 +k1,15319:16375492,37039362:227880 +k1,15319:17219410,37039362:227880 +k1,15319:20288931,37039362:227880 +k1,15319:23497388,37039362:227880 +k1,15319:25222767,37039362:227881 +k1,15319:26832801,37039362:227880 +k1,15319:27592178,37039362:227880 +k1,15319:29023299,37039362:227880 +k1,15319:31555425,37039362:227880 +k1,15319:32583029,37039362:0 +) +(1,15320:6764466,37904442:25818563,513147,126483 +k1,15319:9797909,37904442:198356 +k1,15319:10462225,37904442:198355 +k1,15319:11528933,37904442:198356 +k1,15319:13275904,37904442:198355 +k1,15319:14125688,37904442:198356 +k1,15319:15011516,37904442:198355 +k1,15319:17441373,37904442:198356 +k1,15319:20402071,37904442:198355 +k1,15319:22918435,37904442:198356 +k1,15319:23768218,37904442:198355 +k1,15319:24985659,37904442:198356 +k1,15319:26837487,37904442:198355 +k1,15319:28598877,37904442:198356 +k1,15319:29665584,37904442:198355 +k1,15319:30968222,37904442:198356 +k1,15319:32583029,37904442:0 +) +(1,15320:6764466,38769522:25818563,513147,134348 +k1,15319:7339041,38769522:218715 +(1,15319:7339041,38769522:0,459977,115847 +r1,15418:8400730,38769522:1061689,575824,115847 +k1,15319:7339041,38769522:-1061689 +) +(1,15319:7339041,38769522:1061689,459977,115847 +k1,15319:7339041,38769522:3277 +h1,15319:8397453,38769522:0,411205,112570 +) +k1,15319:8619445,38769522:218715 +k1,15319:10253082,38769522:218715 +k1,15319:11756303,38769522:218715 +k1,15319:13779880,38769522:218715 +k1,15319:16557121,38769522:218715 +k1,15319:17131696,38769522:218715 +k1,15319:18343937,38769522:218715 +k1,15319:19221944,38769522:218715 +k1,15319:21428366,38769522:218715 +k1,15319:24520835,38769522:218715 +k1,15319:25971627,38769522:218715 +k1,15319:28469029,38769522:218715 +h1,15319:29838076,38769522:0,0,0 +k1,15319:30056791,38769522:218715 +k1,15319:31084876,38769522:218715 +k1,15319:32583029,38769522:0 +) +(1,15320:6764466,39634602:25818563,513147,134348 +h1,15319:7940182,39634602:0,0,0 +k1,15319:8490836,39634602:169890 +k1,15319:12008306,39634602:169891 +k1,15319:16153610,39634602:169890 +k1,15319:19349297,39634602:169890 +k1,15319:20623469,39634602:169890 +k1,15319:22841360,39634602:169891 +k1,15319:25885004,39634602:169890 +k1,15319:26741056,39634602:169890 +k1,15319:30313576,39634602:169891 +k1,15319:31169628,39634602:169890 +(1,15319:31169628,39634602:0,452978,115847 +r1,15418:32583029,39634602:1413401,568825,115847 +k1,15319:31169628,39634602:-1413401 +) +(1,15319:31169628,39634602:1413401,452978,115847 +k1,15319:31169628,39634602:3277 +h1,15319:32579752,39634602:0,411205,112570 +) +k1,15319:32583029,39634602:0 +) +(1,15320:6764466,40499682:25818563,513147,134348 +k1,15319:8202053,40499682:246142 +k1,15319:10150165,40499682:246142 +k1,15319:14531630,40499682:246143 +k1,15319:17803569,40499682:246142 +k1,15319:19038649,40499682:246142 +k1,15319:19912626,40499682:246142 +k1,15319:22998443,40499682:246142 +k1,15319:23702682,40499682:246142 +k1,15319:24480322,40499682:246143 +k1,15319:27651991,40499682:246142 +k1,15319:30022810,40499682:246142 +k1,15319:31216603,40499682:246142 +k1,15319:32583029,40499682:0 +) +(1,15320:6764466,41364762:25818563,513147,134348 +k1,15319:8413456,41364762:152803 +k1,15319:9217687,41364762:152803 +k1,15319:15007242,41364762:152803 +k1,15319:17089426,41364762:152804 +k1,15319:18433674,41364762:152803 +k1,15319:19812656,41364762:152803 +k1,15319:20380256,41364762:152757 +k1,15319:23580483,41364762:152803 +k1,15319:24349324,41364762:152803 +k1,15319:25521212,41364762:152803 +k1,15319:27327489,41364762:152804 +k1,15319:28718267,41364762:152803 +k1,15319:29557232,41364762:152803 +k1,15320:32583029,41364762:0 +) +(1,15320:6764466,42229842:25818563,505283,115847 +(1,15319:6764466,42229842:0,452978,115847 +r1,15418:9584715,42229842:2820249,568825,115847 +k1,15319:6764466,42229842:-2820249 +) +(1,15319:6764466,42229842:2820249,452978,115847 +k1,15319:6764466,42229842:3277 +h1,15319:9581438,42229842:0,411205,112570 +) +g1,15319:9783944,42229842 +g1,15319:11174618,42229842 +(1,15319:11174618,42229842:0,452978,115847 +r1,15418:13291443,42229842:2116825,568825,115847 +k1,15319:11174618,42229842:-2116825 +) +(1,15319:11174618,42229842:2116825,452978,115847 +k1,15319:11174618,42229842:3277 +h1,15319:13288166,42229842:0,411205,112570 +) +g1,15319:13490672,42229842 +g1,15319:14505169,42229842 +g1,15319:16590524,42229842 +g1,15319:17808838,42229842 +k1,15320:32583029,42229842:13097125 +g1,15320:32583029,42229842 +) +(1,15322:6764466,43094922:25818563,513147,115847 +h1,15321:6764466,43094922:983040,0,0 +k1,15321:8401106,43094922:166012 +k1,15321:12043837,43094922:166046 +k1,15321:15916598,43094922:166045 +k1,15321:16614140,43094922:166045 +k1,15321:19564154,43094922:166045 +k1,15321:21616326,43094922:166046 +k1,15321:22801456,43094922:166045 +k1,15321:24705516,43094922:166045 +(1,15321:24705516,43094922:0,459977,115847 +r1,15418:28932612,43094922:4227096,575824,115847 +k1,15321:24705516,43094922:-4227096 +) +(1,15321:24705516,43094922:4227096,459977,115847 +k1,15321:24705516,43094922:3277 +h1,15321:28929335,43094922:0,411205,112570 +) +k1,15321:29272327,43094922:166045 +k1,15321:29908266,43094922:166046 +k1,15321:30605808,43094922:166045 +k1,15321:32583029,43094922:0 +) +(1,15322:6764466,43960002:25818563,513147,126483 +k1,15321:8715473,43960002:279183 +k1,15321:11868410,43960002:279183 +k1,15321:13139153,43960002:279183 +k1,15321:15126861,43960002:279184 +k1,15321:19332961,43960002:279183 +k1,15321:20373672,43960002:279183 +k1,15321:21671940,43960002:279183 +k1,15321:23331967,43960002:279183 +k1,15321:24294035,43960002:279183 +k1,15321:25985520,43960002:279184 +k1,15321:27832324,43960002:279183 +k1,15321:29337686,43960002:279183 +k1,15321:31103881,43960002:279183 +k1,15322:32583029,43960002:0 +) +(1,15322:6764466,44825082:25818563,513147,134348 +(1,15321:6764466,44825082:0,459977,115847 +r1,15418:10991562,44825082:4227096,575824,115847 +k1,15321:6764466,44825082:-4227096 +) +(1,15321:6764466,44825082:4227096,459977,115847 +k1,15321:6764466,44825082:3277 +h1,15321:10988285,44825082:0,411205,112570 +) +g1,15321:11190791,44825082 +g1,15321:12258372,44825082 +g1,15321:13561883,44825082 +g1,15321:16153831,44825082 +g1,15321:16708920,44825082 +g1,15321:19882828,44825082 +g1,15321:21947867,44825082 +g1,15321:23414562,44825082 +g1,15321:23969651,44825082 +k1,15322:32583029,44825082:6017497 +g1,15322:32583029,44825082 +) +] +g1,15418:32583029,44959430 +) +] +(1,15418:32583029,45706769:0,0,0 +g1,15418:32583029,45706769 +) +) +] +(1,15418:6630773,47279633:25952256,0,0 +h1,15418:6630773,47279633:25952256,0,0 +) +] +(1,15418:4262630,4025873:0,0,0 +[1,15418:-473656,4025873:0,0,0 +(1,15418:-473656,-710413:0,0,0 +(1,15418:-473656,-710413:0,0,0 +g1,15418:-473656,-710413 +) +g1,15418:-473656,-710413 ) ] ) ] !27937 -}245 -Input:2622:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}246 +Input:2625:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{246 -[1,15428:4262630,47279633:28320399,43253760,0 -(1,15428:4262630,4025873:0,0,0 -[1,15428:-473656,4025873:0,0,0 -(1,15428:-473656,-710413:0,0,0 -(1,15428:-473656,-644877:0,0,0 -k1,15428:-473656,-644877:-65536 +{247 +[1,15426:4262630,47279633:28320399,43253760,0 +(1,15426:4262630,4025873:0,0,0 +[1,15426:-473656,4025873:0,0,0 +(1,15426:-473656,-710413:0,0,0 +(1,15426:-473656,-644877:0,0,0 +k1,15426:-473656,-644877:-65536 ) -(1,15428:-473656,4736287:0,0,0 -k1,15428:-473656,4736287:5209943 +(1,15426:-473656,4736287:0,0,0 +k1,15426:-473656,4736287:5209943 ) -g1,15428:-473656,-710413 +g1,15426:-473656,-710413 ) ] ) -[1,15428:6630773,47279633:25952256,43253760,0 -[1,15428:6630773,4812305:25952256,786432,0 -(1,15428:6630773,4812305:25952256,505283,11795 -(1,15428:6630773,4812305:25952256,505283,11795 -g1,15428:3078558,4812305 -[1,15428:3078558,4812305:0,0,0 -(1,15428:3078558,2439708:0,1703936,0 -k1,15428:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15428:2537886,2439708:1179648,16384,0 +[1,15426:6630773,47279633:25952256,43253760,0 +[1,15426:6630773,4812305:25952256,786432,0 +(1,15426:6630773,4812305:25952256,505283,11795 +(1,15426:6630773,4812305:25952256,505283,11795 +g1,15426:3078558,4812305 +[1,15426:3078558,4812305:0,0,0 +(1,15426:3078558,2439708:0,1703936,0 +k1,15426:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15426:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15428:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15426:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15428:3078558,4812305:0,0,0 -(1,15428:3078558,2439708:0,1703936,0 -g1,15428:29030814,2439708 -g1,15428:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15428:36151628,1915420:16384,1179648,0 +[1,15426:3078558,4812305:0,0,0 +(1,15426:3078558,2439708:0,1703936,0 +g1,15426:29030814,2439708 +g1,15426:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15426:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15428:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15426:37855564,2439708:1179648,16384,0 ) ) -k1,15428:3078556,2439708:-34777008 +k1,15426:3078556,2439708:-34777008 ) ] -[1,15428:3078558,4812305:0,0,0 -(1,15428:3078558,49800853:0,16384,2228224 -k1,15428:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15428:2537886,49800853:1179648,16384,0 +[1,15426:3078558,4812305:0,0,0 +(1,15426:3078558,49800853:0,16384,2228224 +k1,15426:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15426:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15428:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15426:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15428:3078558,4812305:0,0,0 -(1,15428:3078558,49800853:0,16384,2228224 -g1,15428:29030814,49800853 -g1,15428:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15428:36151628,51504789:16384,1179648,0 +[1,15426:3078558,4812305:0,0,0 +(1,15426:3078558,49800853:0,16384,2228224 +g1,15426:29030814,49800853 +g1,15426:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15426:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15428:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15426:37855564,49800853:1179648,16384,0 ) ) -k1,15428:3078556,49800853:-34777008 +k1,15426:3078556,49800853:-34777008 ) ] -g1,15428:6630773,4812305 -g1,15428:6630773,4812305 -g1,15428:8691224,4812305 -g1,15428:11834330,4812305 -k1,15428:31387652,4812305:19553322 -) -) -] -[1,15428:6630773,45706769:25952256,40108032,0 -(1,15428:6630773,45706769:25952256,40108032,0 -(1,15428:6630773,45706769:0,0,0 -g1,15428:6630773,45706769 +g1,15426:6630773,4812305 +g1,15426:6630773,4812305 +g1,15426:8691224,4812305 +g1,15426:11834330,4812305 +k1,15426:31387652,4812305:19553322 +) +) +] +[1,15426:6630773,45706769:25952256,40108032,0 +(1,15426:6630773,45706769:25952256,40108032,0 +(1,15426:6630773,45706769:0,0,0 +g1,15426:6630773,45706769 ) -[1,15428:6630773,45706769:25952256,40108032,0 -v1,15420:6630773,6254097:0,393216,0 -(1,15420:6630773,40302914:25952256,34442033,0 -g1,15420:6630773,40302914 -g1,15420:6237557,40302914 -r1,15428:6368629,40302914:131072,34442033,0 -g1,15420:6567858,40302914 -g1,15420:6764466,40302914 -[1,15420:6764466,40302914:25818563,34442033,0 -v1,15326:6764466,6254097:0,393216,0 -(1,15333:6764466,7410707:25818563,1549826,196608 -g1,15333:6764466,7410707 -g1,15333:6764466,7410707 -g1,15333:6567858,7410707 -(1,15333:6567858,7410707:0,1549826,196608 -r1,15428:32779637,7410707:26211779,1746434,196608 -k1,15333:6567857,7410707:-26211780 -) -(1,15333:6567858,7410707:26211779,1549826,196608 -[1,15333:6764466,7410707:25818563,1353218,0 -(1,15328:6764466,6488534:25818563,431045,106246 -(1,15327:6764466,6488534:0,0,0 -g1,15327:6764466,6488534 -g1,15327:6764466,6488534 -g1,15327:6436786,6488534 -(1,15327:6436786,6488534:0,0,0 -) -g1,15327:6764466,6488534 -) -k1,15328:6764466,6488534:0 -g1,15328:11411821,6488534 -g1,15328:12075729,6488534 -h1,15328:13071591,6488534:0,0,0 -k1,15328:32583029,6488534:19511438 -g1,15328:32583029,6488534 -) -(1,15332:6764466,7304461:25818563,398014,106246 -(1,15330:6764466,7304461:0,0,0 -g1,15330:6764466,7304461 -g1,15330:6764466,7304461 -g1,15330:6436786,7304461 -(1,15330:6436786,7304461:0,0,0 -) -g1,15330:6764466,7304461 -) -g1,15332:7760328,7304461 -g1,15332:8424236,7304461 -g1,15332:9088144,7304461 -h1,15332:9420098,7304461:0,0,0 -k1,15332:32583030,7304461:23162932 -g1,15332:32583030,7304461 -) -] -) -g1,15333:32583029,7410707 -g1,15333:6764466,7410707 -g1,15333:6764466,7410707 -g1,15333:32583029,7410707 -g1,15333:32583029,7410707 -) -h1,15333:6764466,7607315:0,0,0 -(1,15337:6764466,8472395:25818563,513147,134348 -h1,15336:6764466,8472395:983040,0,0 -k1,15336:8706475,8472395:141080 -k1,15336:10502338,8472395:141079 -k1,15336:11634978,8472395:141080 -k1,15336:13527835,8472395:141080 -k1,15336:16694711,8472395:141079 -k1,15336:17783442,8472395:141080 -k1,15336:18943606,8472395:141079 -k1,15336:23340594,8472395:141080 -k1,15336:24148830,8472395:141080 -(1,15336:24148830,8472395:0,452978,115847 -r1,15428:27320790,8472395:3171960,568825,115847 -k1,15336:24148830,8472395:-3171960 -) -(1,15336:24148830,8472395:3171960,452978,115847 -k1,15336:24148830,8472395:3277 -h1,15336:27317513,8472395:0,411205,112570 -) -k1,15336:27461869,8472395:141079 -k1,15336:29799060,8472395:141080 -k1,15336:32583029,8472395:0 -) -(1,15337:6764466,9337475:25818563,513147,134348 -k1,15336:7621528,9337475:241024 -k1,15336:9296481,9337475:241025 -k1,15336:9952306,9337475:240982 -k1,15336:11384775,9337475:241024 -k1,15336:14184326,9337475:241025 -k1,15336:17497678,9337475:241024 -k1,15336:20822826,9337475:241024 -k1,15336:21521947,9337475:241024 -k1,15336:22294469,9337475:241025 -k1,15336:24704735,9337475:241024 -k1,15336:25597187,9337475:241024 -k1,15336:27480544,9337475:241025 -k1,15336:29709275,9337475:241024 -k1,15336:32583029,9337475:0 -) -(1,15337:6764466,10202555:25818563,513147,134348 -k1,15336:7679691,10202555:229063 -k1,15336:10278536,10202555:229063 -k1,15336:11461148,10202555:229063 -k1,15336:12794492,10202555:229062 -k1,15336:14116040,10202555:229063 -k1,15336:17370900,10202555:229063 -k1,15336:18746188,10202555:229063 -(1,15336:18746188,10202555:0,452978,115847 -r1,15428:21214725,10202555:2468537,568825,115847 -k1,15336:18746188,10202555:-2468537 -) -(1,15336:18746188,10202555:2468537,452978,115847 -k1,15336:18746188,10202555:3277 -h1,15336:21211448,10202555:0,411205,112570 -) -k1,15336:21443788,10202555:229063 -k1,15336:22324279,10202555:229063 -k1,15336:25490010,10202555:229063 -k1,15336:26074932,10202555:229062 -k1,15336:28847447,10202555:229063 -k1,15336:29762672,10202555:229063 -k1,15336:31391584,10202555:229063 -k1,15336:32583029,10202555:0 -) -(1,15337:6764466,11067635:25818563,513147,134348 -k1,15336:8368988,11067635:170594 -k1,15336:9632067,11067635:170594 -(1,15336:9632067,11067635:0,459977,115847 -r1,15428:13859163,11067635:4227096,575824,115847 -k1,15336:9632067,11067635:-4227096 -) -(1,15336:9632067,11067635:4227096,459977,115847 -k1,15336:9632067,11067635:3277 -h1,15336:13855886,11067635:0,411205,112570 -) -k1,15336:14029756,11067635:170593 -k1,15336:14851778,11067635:170594 -k1,15336:17415091,11067635:170594 -k1,15336:18043782,11067635:170594 -k1,15336:18865803,11067635:170593 -k1,15336:19807100,11067635:170594 -k1,15336:21937220,11067635:170594 -k1,15336:22767106,11067635:170594 -k1,15336:24492869,11067635:170594 -(1,15336:24492869,11067635:0,459977,115847 -r1,15428:26961406,11067635:2468537,575824,115847 -k1,15336:24492869,11067635:-2468537 -) -(1,15336:24492869,11067635:2468537,459977,115847 -k1,15336:24492869,11067635:3277 -h1,15336:26958129,11067635:0,411205,112570 -) -k1,15336:27305669,11067635:170593 -k1,15336:29530161,11067635:170594 -k1,15336:30648406,11067635:170594 -k1,15336:32583029,11067635:0 -) -(1,15337:6764466,11932715:25818563,505283,7863 -g1,15336:7319555,11932715 -k1,15337:32583030,11932715:23223340 -g1,15337:32583030,11932715 -) -v1,15339:6764466,12617570:0,393216,0 -(1,15346:6764466,13774180:25818563,1549826,196608 -g1,15346:6764466,13774180 -g1,15346:6764466,13774180 -g1,15346:6567858,13774180 -(1,15346:6567858,13774180:0,1549826,196608 -r1,15428:32779637,13774180:26211779,1746434,196608 -k1,15346:6567857,13774180:-26211780 -) -(1,15346:6567858,13774180:26211779,1549826,196608 -[1,15346:6764466,13774180:25818563,1353218,0 -(1,15341:6764466,12852007:25818563,431045,106246 -(1,15340:6764466,12852007:0,0,0 -g1,15340:6764466,12852007 -g1,15340:6764466,12852007 -g1,15340:6436786,12852007 -(1,15340:6436786,12852007:0,0,0 -) -g1,15340:6764466,12852007 -) -k1,15341:6764466,12852007:0 -g1,15341:10415960,12852007 -g1,15341:12075730,12852007 -g1,15341:13403546,12852007 -g1,15341:14067454,12852007 -g1,15341:15727224,12852007 -g1,15341:16723086,12852007 -k1,15341:16723086,12852007:0 -h1,15341:20706533,12852007:0,0,0 -k1,15341:32583029,12852007:11876496 -g1,15341:32583029,12852007 -) -(1,15345:6764466,13667934:25818563,398014,106246 -(1,15343:6764466,13667934:0,0,0 -g1,15343:6764466,13667934 -g1,15343:6764466,13667934 -g1,15343:6436786,13667934 -(1,15343:6436786,13667934:0,0,0 -) -g1,15343:6764466,13667934 -) -g1,15345:7760328,13667934 -g1,15345:8424236,13667934 -g1,15345:9088144,13667934 -h1,15345:9420098,13667934:0,0,0 -k1,15345:32583030,13667934:23162932 -g1,15345:32583030,13667934 -) -] -) -g1,15346:32583029,13774180 -g1,15346:6764466,13774180 -g1,15346:6764466,13774180 -g1,15346:32583029,13774180 -g1,15346:32583029,13774180 -) -h1,15346:6764466,13970788:0,0,0 -(1,15350:6764466,14835868:25818563,513147,134348 -h1,15349:6764466,14835868:983040,0,0 -k1,15349:9009880,14835868:220352 -k1,15349:10249318,14835868:220353 -k1,15349:12775882,14835868:220352 -k1,15349:16070529,14835868:220353 -k1,15349:16950173,14835868:220352 -k1,15349:20553494,14835868:220353 -k1,15349:21129706,14835868:220352 -k1,15349:23893511,14835868:220353 -k1,15349:25381329,14835868:220352 -k1,15349:25957542,14835868:220353 -k1,15349:28217374,14835868:220352 -k1,15349:29306079,14835868:220353 -k1,15349:31001646,14835868:220352 -k1,15350:32583029,14835868:0 -) -(1,15350:6764466,15700948:25818563,513147,115847 -k1,15349:8279495,15700948:206275 -k1,15349:11270396,15700948:206276 -(1,15349:11270396,15700948:0,452978,115847 -r1,15428:16200916,15700948:4930520,568825,115847 -k1,15349:11270396,15700948:-4930520 -) -(1,15349:11270396,15700948:4930520,452978,115847 -k1,15349:11270396,15700948:3277 -h1,15349:16197639,15700948:0,411205,112570 -) -k1,15349:16407191,15700948:206275 -k1,15349:17804912,15700948:206276 -(1,15349:17804912,15700948:0,459977,115847 -r1,15428:20625161,15700948:2820249,575824,115847 -k1,15349:17804912,15700948:-2820249 -) -(1,15349:17804912,15700948:2820249,459977,115847 -k1,15349:17804912,15700948:3277 -h1,15349:20621884,15700948:0,411205,112570 -) -k1,15349:21005106,15700948:206275 -k1,15349:22408069,15700948:206276 -k1,15349:23920477,15700948:206275 -k1,15349:24786045,15700948:206276 -k1,15349:26689047,15700948:206275 -k1,15349:29679948,15700948:206276 -k1,15349:32227169,15700948:206275 -k1,15349:32583029,15700948:0 -) -(1,15350:6764466,16566028:25818563,513147,134348 -k1,15349:9956462,16566028:217317 -k1,15349:12151657,16566028:217318 -k1,15349:15730971,16566028:217317 -k1,15349:16967373,16566028:217317 -k1,15349:21112264,16566028:217318 -k1,15349:21988873,16566028:217317 -k1,15349:23225275,16566028:217317 -k1,15349:25986044,16566028:217317 -k1,15349:26889524,16566028:217318 -k1,15349:30299755,16566028:217317 -k1,15349:32583029,16566028:0 -) -(1,15350:6764466,17431108:25818563,513147,134348 -k1,15349:8685007,17431108:257237 -(1,15349:8685007,17431108:0,459977,115847 -r1,15428:11505256,17431108:2820249,575824,115847 -k1,15349:8685007,17431108:-2820249 -) -(1,15349:8685007,17431108:2820249,459977,115847 -k1,15349:8685007,17431108:3277 -h1,15349:11501979,17431108:0,411205,112570 -) -k1,15349:11762493,17431108:257237 -k1,15349:14360677,17431108:257238 -k1,15349:14973774,17431108:257237 -k1,15349:17104030,17431108:257237 -k1,15349:20335946,17431108:257237 -k1,15349:22458993,17431108:257237 -k1,15349:24110181,17431108:257237 -k1,15349:25386504,17431108:257238 -k1,15349:28187193,17431108:257237 -k1,15349:31649796,17431108:257237 -k1,15349:32583029,17431108:0 -) -(1,15350:6764466,18296188:25818563,473825,134348 -k1,15350:32583029,18296188:23193846 -g1,15350:32583029,18296188 -) -v1,15352:6764466,18981043:0,393216,0 -(1,15365:6764466,21762901:25818563,3175074,196608 -g1,15365:6764466,21762901 -g1,15365:6764466,21762901 -g1,15365:6567858,21762901 -(1,15365:6567858,21762901:0,3175074,196608 -r1,15428:32779637,21762901:26211779,3371682,196608 -k1,15365:6567857,21762901:-26211780 -) -(1,15365:6567858,21762901:26211779,3175074,196608 -[1,15365:6764466,21762901:25818563,2978466,0 -(1,15354:6764466,19208874:25818563,424439,106246 -(1,15353:6764466,19208874:0,0,0 -g1,15353:6764466,19208874 -g1,15353:6764466,19208874 -g1,15353:6436786,19208874 -(1,15353:6436786,19208874:0,0,0 -) -g1,15353:6764466,19208874 -) -k1,15354:6764466,19208874:0 -g1,15354:11743775,19208874 -g1,15354:12407683,19208874 -h1,15354:13071591,19208874:0,0,0 -k1,15354:32583029,19208874:19511438 -g1,15354:32583029,19208874 -) -(1,15358:6764466,20024801:25818563,424439,106246 -(1,15356:6764466,20024801:0,0,0 -g1,15356:6764466,20024801 -g1,15356:6764466,20024801 -g1,15356:6436786,20024801 -(1,15356:6436786,20024801:0,0,0 -) -g1,15356:6764466,20024801 -) -g1,15358:7760328,20024801 -g1,15358:9088144,20024801 -g1,15358:10415960,20024801 -g1,15358:11743776,20024801 -h1,15358:12739638,20024801:0,0,0 -k1,15358:32583030,20024801:19843392 -g1,15358:32583030,20024801 -) -(1,15360:6764466,20840728:25818563,431045,106246 -(1,15359:6764466,20840728:0,0,0 -g1,15359:6764466,20840728 -g1,15359:6764466,20840728 -g1,15359:6436786,20840728 -(1,15359:6436786,20840728:0,0,0 -) -g1,15359:6764466,20840728 -) -k1,15360:6764466,20840728:0 -g1,15360:9752052,20840728 -g1,15360:10415960,20840728 -h1,15360:11079868,20840728:0,0,0 -k1,15360:32583028,20840728:21503160 -g1,15360:32583028,20840728 -) -(1,15364:6764466,21656655:25818563,424439,106246 -(1,15362:6764466,21656655:0,0,0 -g1,15362:6764466,21656655 -g1,15362:6764466,21656655 -g1,15362:6436786,21656655 -(1,15362:6436786,21656655:0,0,0 -) -g1,15362:6764466,21656655 -) -g1,15364:7760328,21656655 -g1,15364:9088144,21656655 -g1,15364:10084006,21656655 -g1,15364:10747914,21656655 -h1,15364:11411822,21656655:0,0,0 -k1,15364:32583030,21656655:21171208 -g1,15364:32583030,21656655 -) -] -) -g1,15365:32583029,21762901 -g1,15365:6764466,21762901 -g1,15365:6764466,21762901 -g1,15365:32583029,21762901 -g1,15365:32583029,21762901 -) -h1,15365:6764466,21959509:0,0,0 -(1,15369:6764466,22824589:25818563,513147,134348 -h1,15368:6764466,22824589:983040,0,0 -g1,15368:9327579,22824589 -g1,15368:13003493,22824589 -g1,15368:15248756,22824589 -g1,15368:15906082,22824589 -g1,15368:18735271,22824589 -g1,15368:19585928,22824589 -g1,15368:21011336,22824589 -g1,15368:21566425,22824589 -g1,15368:24309106,22824589 -g1,15368:25194497,22824589 -g1,15368:25749586,22824589 -g1,15368:28923494,22824589 -k1,15369:32583029,22824589:1741297 -g1,15369:32583029,22824589 -) -v1,15371:6764466,23509444:0,393216,0 -(1,15378:6764466,24666054:25818563,1549826,196608 -g1,15378:6764466,24666054 -g1,15378:6764466,24666054 -g1,15378:6567858,24666054 -(1,15378:6567858,24666054:0,1549826,196608 -r1,15428:32779637,24666054:26211779,1746434,196608 -k1,15378:6567857,24666054:-26211780 -) -(1,15378:6567858,24666054:26211779,1549826,196608 -[1,15378:6764466,24666054:25818563,1353218,0 -(1,15373:6764466,23743881:25818563,431045,112852 -(1,15372:6764466,23743881:0,0,0 -g1,15372:6764466,23743881 -g1,15372:6764466,23743881 -g1,15372:6436786,23743881 -(1,15372:6436786,23743881:0,0,0 -) -g1,15372:6764466,23743881 -) -k1,15373:6764466,23743881:0 -g1,15373:9752052,23743881 -g1,15373:10415960,23743881 -g1,15373:11411822,23743881 -g1,15373:12407684,23743881 -g1,15373:15727224,23743881 -g1,15373:16723086,23743881 -g1,15373:17386994,23743881 -g1,15373:18714810,23743881 -g1,15373:19378718,23743881 -g1,15373:20042626,23743881 -g1,15373:21038488,23743881 -g1,15373:22034350,23743881 -k1,15373:22034350,23743881:0 -h1,15373:26017797,23743881:0,0,0 -k1,15373:32583029,23743881:6565232 -g1,15373:32583029,23743881 -) -(1,15377:6764466,24559808:25818563,398014,106246 -(1,15375:6764466,24559808:0,0,0 -g1,15375:6764466,24559808 -g1,15375:6764466,24559808 -g1,15375:6436786,24559808 -(1,15375:6436786,24559808:0,0,0 -) -g1,15375:6764466,24559808 -) -g1,15377:7760328,24559808 -g1,15377:8424236,24559808 -g1,15377:9088144,24559808 -g1,15377:9752052,24559808 -g1,15377:10415960,24559808 -h1,15377:10747914,24559808:0,0,0 -k1,15377:32583030,24559808:21835116 -g1,15377:32583030,24559808 -) -] -) -g1,15378:32583029,24666054 -g1,15378:6764466,24666054 -g1,15378:6764466,24666054 -g1,15378:32583029,24666054 -g1,15378:32583029,24666054 -) -h1,15378:6764466,24862662:0,0,0 -(1,15382:6764466,25727742:25818563,513147,134348 -h1,15381:6764466,25727742:983040,0,0 -k1,15381:8396647,25727742:179248 -k1,15381:9107392,25727742:179248 -k1,15381:10572456,25727742:179248 -k1,15381:13381665,25727742:179249 -k1,15381:14212341,25727742:179248 -k1,15381:15601383,25727742:179248 -k1,15381:18324083,25727742:179248 -k1,15381:20793159,25727742:179248 -k1,15381:22366358,25727742:179248 -k1,15381:24999930,25727742:179249 -(1,15381:24999930,25727742:0,452978,115847 -r1,15428:27820179,25727742:2820249,568825,115847 -k1,15381:24999930,25727742:-2820249 -) -(1,15381:24999930,25727742:2820249,452978,115847 -k1,15381:24999930,25727742:3277 -h1,15381:27816902,25727742:0,411205,112570 -) -k1,15381:28173097,25727742:179248 -k1,15381:28980180,25727742:179248 -k1,15381:30178513,25727742:179248 -k1,15382:32583029,25727742:0 -) -(1,15382:6764466,26592822:25818563,513147,134348 -k1,15381:8645248,26592822:241727 -k1,15381:11604098,26592822:241727 -k1,15381:12201685,26592822:241727 -k1,15381:13515580,26592822:241726 -k1,15381:14861589,26592822:241727 -k1,15381:17401664,26592822:241727 -k1,15381:19499371,26592822:241727 -k1,15381:20760183,26592822:241727 -k1,15381:23895325,26592822:241727 -k1,15381:25436630,26592822:241726 -k1,15381:27042817,26592822:241727 -k1,15381:27967429,26592822:241727 -k1,15381:29228241,26592822:241727 -k1,15381:32583029,26592822:0 -) -(1,15382:6764466,27457902:25818563,513147,134348 -k1,15381:8246386,27457902:182341 -k1,15381:9876418,27457902:182342 -k1,15381:10718051,27457902:182341 -k1,15381:11919477,27457902:182341 -k1,15381:14592842,27457902:182342 -k1,15381:17318635,27457902:182341 -k1,15381:18117014,27457902:182341 -k1,15381:19318440,27457902:182341 -k1,15381:23438185,27457902:182342 -k1,15381:26337649,27457902:182341 -k1,15381:27473539,27457902:182341 -k1,15381:28760163,27457902:182342 -k1,15381:30228320,27457902:182341 -k1,15381:32583029,27457902:0 -) -(1,15382:6764466,28322982:25818563,505283,134348 -k1,15381:8840559,28322982:233221 -k1,15381:9759941,28322982:233220 -k1,15381:11097444,28322982:233221 -k1,15381:12078431,28322982:233221 -k1,15381:13751477,28322982:233220 -k1,15381:16026800,28322982:233221 -k1,15381:16887856,28322982:233221 -k1,15381:18813216,28322982:233220 -k1,15381:20743819,28322982:233221 -k1,15381:21996125,28322982:233221 -k1,15381:23301514,28322982:233220 -k1,15381:28158300,28322982:233221 -k1,15381:29042949,28322982:233221 -k1,15381:30295254,28322982:233220 -k1,15381:31478747,28322982:233221 -k1,15381:32583029,28322982:0 -) -(1,15382:6764466,29188062:25818563,505283,134348 -g1,15381:7711461,29188062 -g1,15381:10581937,29188062 -g1,15381:11853335,29188062 -g1,15381:15033141,29188062 -g1,15381:15690467,29188062 -g1,15381:17935730,29188062 -g1,15381:19154044,29188062 -g1,15381:21437318,29188062 -k1,15382:32583029,29188062:8927318 -g1,15382:32583029,29188062 -) -v1,15384:6764466,29872917:0,393216,0 -(1,15416:6764466,38241798:25818563,8762097,196608 -g1,15416:6764466,38241798 -g1,15416:6764466,38241798 -g1,15416:6567858,38241798 -(1,15416:6567858,38241798:0,8762097,196608 -r1,15428:32779637,38241798:26211779,8958705,196608 -k1,15416:6567857,38241798:-26211780 -) -(1,15416:6567858,38241798:26211779,8762097,196608 -[1,15416:6764466,38241798:25818563,8565489,0 -(1,15386:6764466,30107354:25818563,431045,106246 -(1,15385:6764466,30107354:0,0,0 -g1,15385:6764466,30107354 -g1,15385:6764466,30107354 -g1,15385:6436786,30107354 -(1,15385:6436786,30107354:0,0,0 -) -g1,15385:6764466,30107354 -) -g1,15386:10415959,30107354 -g1,15386:11411821,30107354 -g1,15386:12075729,30107354 -g1,15386:12739637,30107354 -g1,15386:13735499,30107354 -g1,15386:14399407,30107354 -h1,15386:15063315,30107354:0,0,0 -k1,15386:32583029,30107354:17519714 -g1,15386:32583029,30107354 -) -(1,15387:6764466,30792209:25818563,431045,106246 -h1,15387:6764466,30792209:0,0,0 -g1,15387:13071591,30792209 -g1,15387:13735499,30792209 -g1,15387:14399407,30792209 -g1,15387:15063315,30792209 -g1,15387:15727223,30792209 -h1,15387:16723085,30792209:0,0,0 -k1,15387:32583029,30792209:15859944 -g1,15387:32583029,30792209 -) -(1,15391:6764466,31608136:25818563,407923,106246 -(1,15389:6764466,31608136:0,0,0 -g1,15389:6764466,31608136 -g1,15389:6764466,31608136 -g1,15389:6436786,31608136 -(1,15389:6436786,31608136:0,0,0 -) -g1,15389:6764466,31608136 -) -g1,15391:7760328,31608136 -g1,15391:8424236,31608136 -g1,15391:9088144,31608136 -g1,15391:10084006,31608136 -g1,15391:10747914,31608136 -g1,15391:11743776,31608136 -g1,15391:12407684,31608136 -h1,15391:13071592,31608136:0,0,0 -k1,15391:32583028,31608136:19511436 -g1,15391:32583028,31608136 -) -(1,15393:6764466,32424063:25818563,431045,106246 -(1,15392:6764466,32424063:0,0,0 -g1,15392:6764466,32424063 -g1,15392:6764466,32424063 -g1,15392:6436786,32424063 -(1,15392:6436786,32424063:0,0,0 -) -g1,15392:6764466,32424063 -) -k1,15393:6764466,32424063:0 -g1,15393:13071591,32424063 -g1,15393:13735499,32424063 -g1,15393:14399407,32424063 -g1,15393:15063315,32424063 -g1,15393:15727223,32424063 -h1,15393:16723085,32424063:0,0,0 -k1,15393:32583029,32424063:15859944 -g1,15393:32583029,32424063 -) -(1,15397:6764466,33239990:25818563,407923,106246 -(1,15395:6764466,33239990:0,0,0 -g1,15395:6764466,33239990 -g1,15395:6764466,33239990 -g1,15395:6436786,33239990 -(1,15395:6436786,33239990:0,0,0 -) -g1,15395:6764466,33239990 -) -g1,15397:7760328,33239990 -g1,15397:8424236,33239990 -g1,15397:9088144,33239990 -h1,15397:9752052,33239990:0,0,0 -k1,15397:32583028,33239990:22830976 -g1,15397:32583028,33239990 -) -(1,15399:6764466,34055917:25818563,431045,106246 -(1,15398:6764466,34055917:0,0,0 -g1,15398:6764466,34055917 -g1,15398:6764466,34055917 -g1,15398:6436786,34055917 -(1,15398:6436786,34055917:0,0,0 -) -g1,15398:6764466,34055917 -) -k1,15399:6764466,34055917:0 -g1,15399:13071591,34055917 -g1,15399:13735499,34055917 -g1,15399:14399407,34055917 -h1,15399:15395269,34055917:0,0,0 -k1,15399:32583029,34055917:17187760 -g1,15399:32583029,34055917 -) -(1,15403:6764466,34871844:25818563,407923,106246 -(1,15401:6764466,34871844:0,0,0 -g1,15401:6764466,34871844 -g1,15401:6764466,34871844 -g1,15401:6436786,34871844 -(1,15401:6436786,34871844:0,0,0 -) -g1,15401:6764466,34871844 -) -g1,15403:7760328,34871844 -g1,15403:8424236,34871844 -g1,15403:9088144,34871844 -h1,15403:9752052,34871844:0,0,0 -k1,15403:32583028,34871844:22830976 -g1,15403:32583028,34871844 -) -(1,15405:6764466,35687771:25818563,431045,106246 -(1,15404:6764466,35687771:0,0,0 -g1,15404:6764466,35687771 -g1,15404:6764466,35687771 -g1,15404:6436786,35687771 -(1,15404:6436786,35687771:0,0,0 -) -g1,15404:6764466,35687771 -) -k1,15405:6764466,35687771:0 -g1,15405:13071591,35687771 -g1,15405:13735499,35687771 -g1,15405:14399407,35687771 -h1,15405:15063315,35687771:0,0,0 -k1,15405:32583029,35687771:17519714 -g1,15405:32583029,35687771 -) -(1,15409:6764466,36503698:25818563,407923,0 -(1,15407:6764466,36503698:0,0,0 -g1,15407:6764466,36503698 -g1,15407:6764466,36503698 -g1,15407:6436786,36503698 -(1,15407:6436786,36503698:0,0,0 -) -g1,15407:6764466,36503698 -) -g1,15409:7760328,36503698 -g1,15409:8424236,36503698 -g1,15409:9088144,36503698 -g1,15409:10084006,36503698 -g1,15409:10747914,36503698 -h1,15409:11411822,36503698:0,0,0 -k1,15409:32583030,36503698:21171208 -g1,15409:32583030,36503698 -) -(1,15411:6764466,37319625:25818563,431045,106246 -(1,15410:6764466,37319625:0,0,0 -g1,15410:6764466,37319625 -g1,15410:6764466,37319625 -g1,15410:6436786,37319625 -(1,15410:6436786,37319625:0,0,0 -) -g1,15410:6764466,37319625 -) -k1,15411:6764466,37319625:0 -g1,15411:13071591,37319625 -g1,15411:13735499,37319625 -g1,15411:14399407,37319625 -g1,15411:15063315,37319625 -g1,15411:15727223,37319625 -h1,15411:16391131,37319625:0,0,0 -k1,15411:32583029,37319625:16191898 -g1,15411:32583029,37319625 -) -(1,15415:6764466,38135552:25818563,407923,106246 -(1,15413:6764466,38135552:0,0,0 -g1,15413:6764466,38135552 -g1,15413:6764466,38135552 -g1,15413:6436786,38135552 -(1,15413:6436786,38135552:0,0,0 -) -g1,15413:6764466,38135552 -) -g1,15415:7760328,38135552 -g1,15415:8424236,38135552 -g1,15415:9088144,38135552 -g1,15415:9752052,38135552 -g1,15415:10415960,38135552 -g1,15415:11411822,38135552 -g1,15415:12075730,38135552 -h1,15415:12739638,38135552:0,0,0 -k1,15415:32583030,38135552:19843392 -g1,15415:32583030,38135552 -) -] -) -g1,15416:32583029,38241798 -g1,15416:6764466,38241798 -g1,15416:6764466,38241798 -g1,15416:32583029,38241798 -g1,15416:32583029,38241798 -) -h1,15416:6764466,38438406:0,0,0 -(1,15420:6764466,39303486:25818563,513147,134348 -h1,15419:6764466,39303486:983040,0,0 -k1,15419:8754598,39303486:189203 -k1,15419:9358635,39303486:189194 -k1,15419:12308214,39303486:189203 -k1,15419:15577610,39303486:189204 -k1,15419:18792610,39303486:189203 -k1,15419:19929464,39303486:189203 -k1,15419:22106375,39303486:189204 -k1,15419:25126733,39303486:189203 -k1,15419:27532365,39303486:189204 -k1,15419:29709275,39303486:189203 -k1,15419:32583029,39303486:0 -) -(1,15420:6764466,40168566:25818563,513147,134348 -g1,15419:7495192,40168566 -g1,15419:8760692,40168566 -g1,15419:10313895,40168566 -g1,15419:13818105,40168566 -g1,15419:16315682,40168566 -g1,15419:17462562,40168566 -g1,15419:19649498,40168566 -k1,15420:32583029,40168566:10946480 -g1,15420:32583029,40168566 -) -] -g1,15420:32583029,40302914 -) -h1,15420:6630773,40302914:0,0,0 -(1,15424:6630773,41167994:25952256,513147,126483 -h1,15422:6630773,41167994:983040,0,0 -k1,15422:8280460,41167994:179059 -k1,15422:10447245,41167994:179078 -k1,15422:12713646,41167994:179079 -k1,15422:13552017,41167994:179079 -k1,15422:16167724,41167994:179078 -k1,15422:19957837,41167994:179079 -k1,15422:20668413,41167994:179079 -k1,15422:22360717,41167994:179078 -k1,15422:23155834,41167994:179079 -k1,15422:24353998,41167994:179079 -k1,15422:26455247,41167994:179078 -k1,15422:31202185,41167994:179079 -k1,15422:32583029,41167994:0 -) -(1,15424:6630773,42033074:25952256,513147,102891 -k1,15422:8887178,42033074:169083 -k1,15422:10160542,42033074:169082 -k1,15422:11077391,42033074:169083 -k1,15422:13629363,42033074:169083 -k1,15422:15366067,42033074:169083 -k1,15422:15891009,42033074:169082 -k1,15422:18047799,42033074:169083 -k1,15422:20934005,42033074:169083 -k1,15422:21458948,42033074:169083 -k1,15422:24259301,42033074:169082 -k1,15422:26340069,42033074:169083 -k1,15422:27700597,42033074:169083 -k1,15422:28888765,42033074:169083 -k1,15422:30447210,42033074:169082 -k1,15422:31563944,42033074:169083 -k1,15422:32583029,42033074:0 -) -(1,15424:6630773,42898154:25952256,513147,134348 -g1,15422:10595701,42898154 -g1,15422:13636571,42898154 -g1,15422:15571193,42898154 -g1,15422:18465918,42898154 -(1,15422:18465918,42898154:0,452978,115847 -r1,15428:23396438,42898154:4930520,568825,115847 -k1,15422:18465918,42898154:-4930520 -) -(1,15422:18465918,42898154:4930520,452978,115847 -k1,15422:18465918,42898154:3277 -h1,15422:23393161,42898154:0,411205,112570 -) -g1,15422:23769337,42898154 -k1,15424:32583029,42898154:8813692 -g1,15424:32583029,42898154 -) -] -(1,15428:32583029,45706769:0,0,0 -g1,15428:32583029,45706769 -) -) -] -(1,15428:6630773,47279633:25952256,0,0 -h1,15428:6630773,47279633:25952256,0,0 -) -] -(1,15428:4262630,4025873:0,0,0 -[1,15428:-473656,4025873:0,0,0 -(1,15428:-473656,-710413:0,0,0 -(1,15428:-473656,-710413:0,0,0 -g1,15428:-473656,-710413 -) -g1,15428:-473656,-710413 -) -] -) -] -!27643 -}246 -Input:2623:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2624:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2625:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,15426:6630773,45706769:25952256,40108032,0 +v1,15418:6630773,6254097:0,393216,0 +(1,15418:6630773,40302914:25952256,34442033,0 +g1,15418:6630773,40302914 +g1,15418:6237557,40302914 +r1,15426:6368629,40302914:131072,34442033,0 +g1,15418:6567858,40302914 +g1,15418:6764466,40302914 +[1,15418:6764466,40302914:25818563,34442033,0 +v1,15324:6764466,6254097:0,393216,0 +(1,15331:6764466,7410707:25818563,1549826,196608 +g1,15331:6764466,7410707 +g1,15331:6764466,7410707 +g1,15331:6567858,7410707 +(1,15331:6567858,7410707:0,1549826,196608 +r1,15426:32779637,7410707:26211779,1746434,196608 +k1,15331:6567857,7410707:-26211780 +) +(1,15331:6567858,7410707:26211779,1549826,196608 +[1,15331:6764466,7410707:25818563,1353218,0 +(1,15326:6764466,6488534:25818563,431045,106246 +(1,15325:6764466,6488534:0,0,0 +g1,15325:6764466,6488534 +g1,15325:6764466,6488534 +g1,15325:6436786,6488534 +(1,15325:6436786,6488534:0,0,0 +) +g1,15325:6764466,6488534 +) +k1,15326:6764466,6488534:0 +g1,15326:11411821,6488534 +g1,15326:12075729,6488534 +h1,15326:13071591,6488534:0,0,0 +k1,15326:32583029,6488534:19511438 +g1,15326:32583029,6488534 +) +(1,15330:6764466,7304461:25818563,398014,106246 +(1,15328:6764466,7304461:0,0,0 +g1,15328:6764466,7304461 +g1,15328:6764466,7304461 +g1,15328:6436786,7304461 +(1,15328:6436786,7304461:0,0,0 +) +g1,15328:6764466,7304461 +) +g1,15330:7760328,7304461 +g1,15330:8424236,7304461 +g1,15330:9088144,7304461 +h1,15330:9420098,7304461:0,0,0 +k1,15330:32583030,7304461:23162932 +g1,15330:32583030,7304461 +) +] +) +g1,15331:32583029,7410707 +g1,15331:6764466,7410707 +g1,15331:6764466,7410707 +g1,15331:32583029,7410707 +g1,15331:32583029,7410707 +) +h1,15331:6764466,7607315:0,0,0 +(1,15335:6764466,8472395:25818563,513147,134348 +h1,15334:6764466,8472395:983040,0,0 +k1,15334:8706475,8472395:141080 +k1,15334:10502338,8472395:141079 +k1,15334:11634978,8472395:141080 +k1,15334:13527835,8472395:141080 +k1,15334:16694711,8472395:141079 +k1,15334:17783442,8472395:141080 +k1,15334:18943606,8472395:141079 +k1,15334:23340594,8472395:141080 +k1,15334:24148830,8472395:141080 +(1,15334:24148830,8472395:0,452978,115847 +r1,15426:27320790,8472395:3171960,568825,115847 +k1,15334:24148830,8472395:-3171960 +) +(1,15334:24148830,8472395:3171960,452978,115847 +k1,15334:24148830,8472395:3277 +h1,15334:27317513,8472395:0,411205,112570 +) +k1,15334:27461869,8472395:141079 +k1,15334:29799060,8472395:141080 +k1,15334:32583029,8472395:0 +) +(1,15335:6764466,9337475:25818563,513147,134348 +k1,15334:7621528,9337475:241024 +k1,15334:9296481,9337475:241025 +k1,15334:9952306,9337475:240982 +k1,15334:11384775,9337475:241024 +k1,15334:14184326,9337475:241025 +k1,15334:17497678,9337475:241024 +k1,15334:20822826,9337475:241024 +k1,15334:21521947,9337475:241024 +k1,15334:22294469,9337475:241025 +k1,15334:24704735,9337475:241024 +k1,15334:25597187,9337475:241024 +k1,15334:27480544,9337475:241025 +k1,15334:29709275,9337475:241024 +k1,15334:32583029,9337475:0 +) +(1,15335:6764466,10202555:25818563,513147,134348 +k1,15334:7679691,10202555:229063 +k1,15334:10278536,10202555:229063 +k1,15334:11461148,10202555:229063 +k1,15334:12794492,10202555:229062 +k1,15334:14116040,10202555:229063 +k1,15334:17370900,10202555:229063 +k1,15334:18746188,10202555:229063 +(1,15334:18746188,10202555:0,452978,115847 +r1,15426:21214725,10202555:2468537,568825,115847 +k1,15334:18746188,10202555:-2468537 +) +(1,15334:18746188,10202555:2468537,452978,115847 +k1,15334:18746188,10202555:3277 +h1,15334:21211448,10202555:0,411205,112570 +) +k1,15334:21443788,10202555:229063 +k1,15334:22324279,10202555:229063 +k1,15334:25490010,10202555:229063 +k1,15334:26074932,10202555:229062 +k1,15334:28847447,10202555:229063 +k1,15334:29762672,10202555:229063 +k1,15334:31391584,10202555:229063 +k1,15334:32583029,10202555:0 +) +(1,15335:6764466,11067635:25818563,513147,134348 +k1,15334:8368988,11067635:170594 +k1,15334:9632067,11067635:170594 +(1,15334:9632067,11067635:0,459977,115847 +r1,15426:13859163,11067635:4227096,575824,115847 +k1,15334:9632067,11067635:-4227096 +) +(1,15334:9632067,11067635:4227096,459977,115847 +k1,15334:9632067,11067635:3277 +h1,15334:13855886,11067635:0,411205,112570 +) +k1,15334:14029756,11067635:170593 +k1,15334:14851778,11067635:170594 +k1,15334:17415091,11067635:170594 +k1,15334:18043782,11067635:170594 +k1,15334:18865803,11067635:170593 +k1,15334:19807100,11067635:170594 +k1,15334:21937220,11067635:170594 +k1,15334:22767106,11067635:170594 +k1,15334:24492869,11067635:170594 +(1,15334:24492869,11067635:0,459977,115847 +r1,15426:26961406,11067635:2468537,575824,115847 +k1,15334:24492869,11067635:-2468537 +) +(1,15334:24492869,11067635:2468537,459977,115847 +k1,15334:24492869,11067635:3277 +h1,15334:26958129,11067635:0,411205,112570 +) +k1,15334:27305669,11067635:170593 +k1,15334:29530161,11067635:170594 +k1,15334:30648406,11067635:170594 +k1,15334:32583029,11067635:0 +) +(1,15335:6764466,11932715:25818563,505283,7863 +g1,15334:7319555,11932715 +k1,15335:32583030,11932715:23223340 +g1,15335:32583030,11932715 +) +v1,15337:6764466,12617570:0,393216,0 +(1,15344:6764466,13774180:25818563,1549826,196608 +g1,15344:6764466,13774180 +g1,15344:6764466,13774180 +g1,15344:6567858,13774180 +(1,15344:6567858,13774180:0,1549826,196608 +r1,15426:32779637,13774180:26211779,1746434,196608 +k1,15344:6567857,13774180:-26211780 +) +(1,15344:6567858,13774180:26211779,1549826,196608 +[1,15344:6764466,13774180:25818563,1353218,0 +(1,15339:6764466,12852007:25818563,431045,106246 +(1,15338:6764466,12852007:0,0,0 +g1,15338:6764466,12852007 +g1,15338:6764466,12852007 +g1,15338:6436786,12852007 +(1,15338:6436786,12852007:0,0,0 +) +g1,15338:6764466,12852007 +) +k1,15339:6764466,12852007:0 +g1,15339:10415960,12852007 +g1,15339:12075730,12852007 +g1,15339:13403546,12852007 +g1,15339:14067454,12852007 +g1,15339:15727224,12852007 +g1,15339:16723086,12852007 +k1,15339:16723086,12852007:0 +h1,15339:20706533,12852007:0,0,0 +k1,15339:32583029,12852007:11876496 +g1,15339:32583029,12852007 +) +(1,15343:6764466,13667934:25818563,398014,106246 +(1,15341:6764466,13667934:0,0,0 +g1,15341:6764466,13667934 +g1,15341:6764466,13667934 +g1,15341:6436786,13667934 +(1,15341:6436786,13667934:0,0,0 +) +g1,15341:6764466,13667934 +) +g1,15343:7760328,13667934 +g1,15343:8424236,13667934 +g1,15343:9088144,13667934 +h1,15343:9420098,13667934:0,0,0 +k1,15343:32583030,13667934:23162932 +g1,15343:32583030,13667934 +) +] +) +g1,15344:32583029,13774180 +g1,15344:6764466,13774180 +g1,15344:6764466,13774180 +g1,15344:32583029,13774180 +g1,15344:32583029,13774180 +) +h1,15344:6764466,13970788:0,0,0 +(1,15348:6764466,14835868:25818563,513147,134348 +h1,15347:6764466,14835868:983040,0,0 +k1,15347:9009880,14835868:220352 +k1,15347:10249318,14835868:220353 +k1,15347:12775882,14835868:220352 +k1,15347:16070529,14835868:220353 +k1,15347:16950173,14835868:220352 +k1,15347:20553494,14835868:220353 +k1,15347:21129706,14835868:220352 +k1,15347:23893511,14835868:220353 +k1,15347:25381329,14835868:220352 +k1,15347:25957542,14835868:220353 +k1,15347:28217374,14835868:220352 +k1,15347:29306079,14835868:220353 +k1,15347:31001646,14835868:220352 +k1,15348:32583029,14835868:0 +) +(1,15348:6764466,15700948:25818563,513147,115847 +k1,15347:8279495,15700948:206275 +k1,15347:11270396,15700948:206276 +(1,15347:11270396,15700948:0,452978,115847 +r1,15426:16200916,15700948:4930520,568825,115847 +k1,15347:11270396,15700948:-4930520 +) +(1,15347:11270396,15700948:4930520,452978,115847 +k1,15347:11270396,15700948:3277 +h1,15347:16197639,15700948:0,411205,112570 +) +k1,15347:16407191,15700948:206275 +k1,15347:17804912,15700948:206276 +(1,15347:17804912,15700948:0,459977,115847 +r1,15426:20625161,15700948:2820249,575824,115847 +k1,15347:17804912,15700948:-2820249 +) +(1,15347:17804912,15700948:2820249,459977,115847 +k1,15347:17804912,15700948:3277 +h1,15347:20621884,15700948:0,411205,112570 +) +k1,15347:21005106,15700948:206275 +k1,15347:22408069,15700948:206276 +k1,15347:23920477,15700948:206275 +k1,15347:24786045,15700948:206276 +k1,15347:26689047,15700948:206275 +k1,15347:29679948,15700948:206276 +k1,15347:32227169,15700948:206275 +k1,15347:32583029,15700948:0 +) +(1,15348:6764466,16566028:25818563,513147,134348 +k1,15347:9956462,16566028:217317 +k1,15347:12151657,16566028:217318 +k1,15347:15730971,16566028:217317 +k1,15347:16967373,16566028:217317 +k1,15347:21112264,16566028:217318 +k1,15347:21988873,16566028:217317 +k1,15347:23225275,16566028:217317 +k1,15347:25986044,16566028:217317 +k1,15347:26889524,16566028:217318 +k1,15347:30299755,16566028:217317 +k1,15347:32583029,16566028:0 +) +(1,15348:6764466,17431108:25818563,513147,134348 +k1,15347:8685007,17431108:257237 +(1,15347:8685007,17431108:0,459977,115847 +r1,15426:11505256,17431108:2820249,575824,115847 +k1,15347:8685007,17431108:-2820249 +) +(1,15347:8685007,17431108:2820249,459977,115847 +k1,15347:8685007,17431108:3277 +h1,15347:11501979,17431108:0,411205,112570 +) +k1,15347:11762493,17431108:257237 +k1,15347:14360677,17431108:257238 +k1,15347:14973774,17431108:257237 +k1,15347:17104030,17431108:257237 +k1,15347:20335946,17431108:257237 +k1,15347:22458993,17431108:257237 +k1,15347:24110181,17431108:257237 +k1,15347:25386504,17431108:257238 +k1,15347:28187193,17431108:257237 +k1,15347:31649796,17431108:257237 +k1,15347:32583029,17431108:0 +) +(1,15348:6764466,18296188:25818563,473825,134348 +k1,15348:32583029,18296188:23193846 +g1,15348:32583029,18296188 +) +v1,15350:6764466,18981043:0,393216,0 +(1,15363:6764466,21762901:25818563,3175074,196608 +g1,15363:6764466,21762901 +g1,15363:6764466,21762901 +g1,15363:6567858,21762901 +(1,15363:6567858,21762901:0,3175074,196608 +r1,15426:32779637,21762901:26211779,3371682,196608 +k1,15363:6567857,21762901:-26211780 +) +(1,15363:6567858,21762901:26211779,3175074,196608 +[1,15363:6764466,21762901:25818563,2978466,0 +(1,15352:6764466,19208874:25818563,424439,106246 +(1,15351:6764466,19208874:0,0,0 +g1,15351:6764466,19208874 +g1,15351:6764466,19208874 +g1,15351:6436786,19208874 +(1,15351:6436786,19208874:0,0,0 +) +g1,15351:6764466,19208874 +) +k1,15352:6764466,19208874:0 +g1,15352:11743775,19208874 +g1,15352:12407683,19208874 +h1,15352:13071591,19208874:0,0,0 +k1,15352:32583029,19208874:19511438 +g1,15352:32583029,19208874 +) +(1,15356:6764466,20024801:25818563,424439,106246 +(1,15354:6764466,20024801:0,0,0 +g1,15354:6764466,20024801 +g1,15354:6764466,20024801 +g1,15354:6436786,20024801 +(1,15354:6436786,20024801:0,0,0 +) +g1,15354:6764466,20024801 +) +g1,15356:7760328,20024801 +g1,15356:9088144,20024801 +g1,15356:10415960,20024801 +g1,15356:11743776,20024801 +h1,15356:12739638,20024801:0,0,0 +k1,15356:32583030,20024801:19843392 +g1,15356:32583030,20024801 +) +(1,15358:6764466,20840728:25818563,431045,106246 +(1,15357:6764466,20840728:0,0,0 +g1,15357:6764466,20840728 +g1,15357:6764466,20840728 +g1,15357:6436786,20840728 +(1,15357:6436786,20840728:0,0,0 +) +g1,15357:6764466,20840728 +) +k1,15358:6764466,20840728:0 +g1,15358:9752052,20840728 +g1,15358:10415960,20840728 +h1,15358:11079868,20840728:0,0,0 +k1,15358:32583028,20840728:21503160 +g1,15358:32583028,20840728 +) +(1,15362:6764466,21656655:25818563,424439,106246 +(1,15360:6764466,21656655:0,0,0 +g1,15360:6764466,21656655 +g1,15360:6764466,21656655 +g1,15360:6436786,21656655 +(1,15360:6436786,21656655:0,0,0 +) +g1,15360:6764466,21656655 +) +g1,15362:7760328,21656655 +g1,15362:9088144,21656655 +g1,15362:10084006,21656655 +g1,15362:10747914,21656655 +h1,15362:11411822,21656655:0,0,0 +k1,15362:32583030,21656655:21171208 +g1,15362:32583030,21656655 +) +] +) +g1,15363:32583029,21762901 +g1,15363:6764466,21762901 +g1,15363:6764466,21762901 +g1,15363:32583029,21762901 +g1,15363:32583029,21762901 +) +h1,15363:6764466,21959509:0,0,0 +(1,15367:6764466,22824589:25818563,513147,134348 +h1,15366:6764466,22824589:983040,0,0 +g1,15366:9327579,22824589 +g1,15366:13003493,22824589 +g1,15366:15248756,22824589 +g1,15366:15906082,22824589 +g1,15366:18735271,22824589 +g1,15366:19585928,22824589 +g1,15366:21011336,22824589 +g1,15366:21566425,22824589 +g1,15366:24309106,22824589 +g1,15366:25194497,22824589 +g1,15366:25749586,22824589 +g1,15366:28923494,22824589 +k1,15367:32583029,22824589:1741297 +g1,15367:32583029,22824589 +) +v1,15369:6764466,23509444:0,393216,0 +(1,15376:6764466,24666054:25818563,1549826,196608 +g1,15376:6764466,24666054 +g1,15376:6764466,24666054 +g1,15376:6567858,24666054 +(1,15376:6567858,24666054:0,1549826,196608 +r1,15426:32779637,24666054:26211779,1746434,196608 +k1,15376:6567857,24666054:-26211780 +) +(1,15376:6567858,24666054:26211779,1549826,196608 +[1,15376:6764466,24666054:25818563,1353218,0 +(1,15371:6764466,23743881:25818563,431045,112852 +(1,15370:6764466,23743881:0,0,0 +g1,15370:6764466,23743881 +g1,15370:6764466,23743881 +g1,15370:6436786,23743881 +(1,15370:6436786,23743881:0,0,0 +) +g1,15370:6764466,23743881 +) +k1,15371:6764466,23743881:0 +g1,15371:9752052,23743881 +g1,15371:10415960,23743881 +g1,15371:11411822,23743881 +g1,15371:12407684,23743881 +g1,15371:15727224,23743881 +g1,15371:16723086,23743881 +g1,15371:17386994,23743881 +g1,15371:18714810,23743881 +g1,15371:19378718,23743881 +g1,15371:20042626,23743881 +g1,15371:21038488,23743881 +g1,15371:22034350,23743881 +k1,15371:22034350,23743881:0 +h1,15371:26017797,23743881:0,0,0 +k1,15371:32583029,23743881:6565232 +g1,15371:32583029,23743881 +) +(1,15375:6764466,24559808:25818563,398014,106246 +(1,15373:6764466,24559808:0,0,0 +g1,15373:6764466,24559808 +g1,15373:6764466,24559808 +g1,15373:6436786,24559808 +(1,15373:6436786,24559808:0,0,0 +) +g1,15373:6764466,24559808 +) +g1,15375:7760328,24559808 +g1,15375:8424236,24559808 +g1,15375:9088144,24559808 +g1,15375:9752052,24559808 +g1,15375:10415960,24559808 +h1,15375:10747914,24559808:0,0,0 +k1,15375:32583030,24559808:21835116 +g1,15375:32583030,24559808 +) +] +) +g1,15376:32583029,24666054 +g1,15376:6764466,24666054 +g1,15376:6764466,24666054 +g1,15376:32583029,24666054 +g1,15376:32583029,24666054 +) +h1,15376:6764466,24862662:0,0,0 +(1,15380:6764466,25727742:25818563,513147,134348 +h1,15379:6764466,25727742:983040,0,0 +k1,15379:8396647,25727742:179248 +k1,15379:9107392,25727742:179248 +k1,15379:10572456,25727742:179248 +k1,15379:13381665,25727742:179249 +k1,15379:14212341,25727742:179248 +k1,15379:15601383,25727742:179248 +k1,15379:18324083,25727742:179248 +k1,15379:20793159,25727742:179248 +k1,15379:22366358,25727742:179248 +k1,15379:24999930,25727742:179249 +(1,15379:24999930,25727742:0,452978,115847 +r1,15426:27820179,25727742:2820249,568825,115847 +k1,15379:24999930,25727742:-2820249 +) +(1,15379:24999930,25727742:2820249,452978,115847 +k1,15379:24999930,25727742:3277 +h1,15379:27816902,25727742:0,411205,112570 +) +k1,15379:28173097,25727742:179248 +k1,15379:28980180,25727742:179248 +k1,15379:30178513,25727742:179248 +k1,15380:32583029,25727742:0 +) +(1,15380:6764466,26592822:25818563,513147,134348 +k1,15379:8645248,26592822:241727 +k1,15379:11604098,26592822:241727 +k1,15379:12201685,26592822:241727 +k1,15379:13515580,26592822:241726 +k1,15379:14861589,26592822:241727 +k1,15379:17401664,26592822:241727 +k1,15379:19499371,26592822:241727 +k1,15379:20760183,26592822:241727 +k1,15379:23895325,26592822:241727 +k1,15379:25436630,26592822:241726 +k1,15379:27042817,26592822:241727 +k1,15379:27967429,26592822:241727 +k1,15379:29228241,26592822:241727 +k1,15379:32583029,26592822:0 +) +(1,15380:6764466,27457902:25818563,513147,134348 +k1,15379:8247021,27457902:182976 +k1,15379:9877688,27457902:182977 +k1,15379:10719956,27457902:182976 +k1,15379:11922018,27457902:182977 +k1,15379:14596017,27457902:182976 +k1,15379:17496117,27457902:182977 +k1,15379:18632642,27457902:182976 +k1,15379:19919901,27457902:182977 +k1,15379:21388693,27457902:182976 +k1,15379:23926379,27457902:182977 +k1,15379:25952227,27457902:182976 +k1,15379:26821366,27457902:182977 +k1,15379:28108624,27457902:182976 +k1,15379:29039367,27457902:182977 +k1,15379:30662169,27457902:182976 +k1,15379:32583029,27457902:0 +) +(1,15380:6764466,28322982:25818563,505283,134348 +k1,15379:7625001,28322982:232700 +k1,15379:9549840,28322982:232699 +k1,15379:11653593,28322982:232700 +k1,15379:12905377,28322982:232699 +k1,15379:14210246,28322982:232700 +k1,15379:19066510,28322982:232699 +k1,15379:19950638,28322982:232700 +k1,15379:21202422,28322982:232699 +k1,15379:22385394,28322982:232700 +k1,15379:23722375,28322982:232699 +k1,15379:24702841,28322982:232700 +k1,15379:27606787,28322982:232699 +k1,15379:28911656,28322982:232700 +k1,15379:32124932,28322982:232699 +k1,15379:32583029,28322982:0 +) +(1,15380:6764466,29188062:25818563,505283,126483 +g1,15379:9009729,29188062 +g1,15379:10228043,29188062 +g1,15379:12511317,29188062 +k1,15380:32583030,29188062:17853320 +g1,15380:32583030,29188062 +) +v1,15382:6764466,29872917:0,393216,0 +(1,15414:6764466,38241798:25818563,8762097,196608 +g1,15414:6764466,38241798 +g1,15414:6764466,38241798 +g1,15414:6567858,38241798 +(1,15414:6567858,38241798:0,8762097,196608 +r1,15426:32779637,38241798:26211779,8958705,196608 +k1,15414:6567857,38241798:-26211780 +) +(1,15414:6567858,38241798:26211779,8762097,196608 +[1,15414:6764466,38241798:25818563,8565489,0 +(1,15384:6764466,30107354:25818563,431045,106246 +(1,15383:6764466,30107354:0,0,0 +g1,15383:6764466,30107354 +g1,15383:6764466,30107354 +g1,15383:6436786,30107354 +(1,15383:6436786,30107354:0,0,0 +) +g1,15383:6764466,30107354 +) +g1,15384:10415959,30107354 +g1,15384:11411821,30107354 +g1,15384:12075729,30107354 +g1,15384:12739637,30107354 +g1,15384:13735499,30107354 +g1,15384:14399407,30107354 +h1,15384:15063315,30107354:0,0,0 +k1,15384:32583029,30107354:17519714 +g1,15384:32583029,30107354 +) +(1,15385:6764466,30792209:25818563,431045,106246 +h1,15385:6764466,30792209:0,0,0 +g1,15385:13071591,30792209 +g1,15385:13735499,30792209 +g1,15385:14399407,30792209 +g1,15385:15063315,30792209 +g1,15385:15727223,30792209 +h1,15385:16723085,30792209:0,0,0 +k1,15385:32583029,30792209:15859944 +g1,15385:32583029,30792209 +) +(1,15389:6764466,31608136:25818563,407923,106246 +(1,15387:6764466,31608136:0,0,0 +g1,15387:6764466,31608136 +g1,15387:6764466,31608136 +g1,15387:6436786,31608136 +(1,15387:6436786,31608136:0,0,0 +) +g1,15387:6764466,31608136 +) +g1,15389:7760328,31608136 +g1,15389:8424236,31608136 +g1,15389:9088144,31608136 +g1,15389:10084006,31608136 +g1,15389:10747914,31608136 +g1,15389:11743776,31608136 +g1,15389:12407684,31608136 +h1,15389:13071592,31608136:0,0,0 +k1,15389:32583028,31608136:19511436 +g1,15389:32583028,31608136 +) +(1,15391:6764466,32424063:25818563,431045,106246 +(1,15390:6764466,32424063:0,0,0 +g1,15390:6764466,32424063 +g1,15390:6764466,32424063 +g1,15390:6436786,32424063 +(1,15390:6436786,32424063:0,0,0 +) +g1,15390:6764466,32424063 +) +k1,15391:6764466,32424063:0 +g1,15391:13071591,32424063 +g1,15391:13735499,32424063 +g1,15391:14399407,32424063 +g1,15391:15063315,32424063 +g1,15391:15727223,32424063 +h1,15391:16723085,32424063:0,0,0 +k1,15391:32583029,32424063:15859944 +g1,15391:32583029,32424063 +) +(1,15395:6764466,33239990:25818563,407923,106246 +(1,15393:6764466,33239990:0,0,0 +g1,15393:6764466,33239990 +g1,15393:6764466,33239990 +g1,15393:6436786,33239990 +(1,15393:6436786,33239990:0,0,0 +) +g1,15393:6764466,33239990 +) +g1,15395:7760328,33239990 +g1,15395:8424236,33239990 +g1,15395:9088144,33239990 +h1,15395:9752052,33239990:0,0,0 +k1,15395:32583028,33239990:22830976 +g1,15395:32583028,33239990 +) +(1,15397:6764466,34055917:25818563,431045,106246 +(1,15396:6764466,34055917:0,0,0 +g1,15396:6764466,34055917 +g1,15396:6764466,34055917 +g1,15396:6436786,34055917 +(1,15396:6436786,34055917:0,0,0 +) +g1,15396:6764466,34055917 +) +k1,15397:6764466,34055917:0 +g1,15397:13071591,34055917 +g1,15397:13735499,34055917 +g1,15397:14399407,34055917 +h1,15397:15395269,34055917:0,0,0 +k1,15397:32583029,34055917:17187760 +g1,15397:32583029,34055917 +) +(1,15401:6764466,34871844:25818563,407923,106246 +(1,15399:6764466,34871844:0,0,0 +g1,15399:6764466,34871844 +g1,15399:6764466,34871844 +g1,15399:6436786,34871844 +(1,15399:6436786,34871844:0,0,0 +) +g1,15399:6764466,34871844 +) +g1,15401:7760328,34871844 +g1,15401:8424236,34871844 +g1,15401:9088144,34871844 +h1,15401:9752052,34871844:0,0,0 +k1,15401:32583028,34871844:22830976 +g1,15401:32583028,34871844 +) +(1,15403:6764466,35687771:25818563,431045,106246 +(1,15402:6764466,35687771:0,0,0 +g1,15402:6764466,35687771 +g1,15402:6764466,35687771 +g1,15402:6436786,35687771 +(1,15402:6436786,35687771:0,0,0 +) +g1,15402:6764466,35687771 +) +k1,15403:6764466,35687771:0 +g1,15403:13071591,35687771 +g1,15403:13735499,35687771 +g1,15403:14399407,35687771 +h1,15403:15063315,35687771:0,0,0 +k1,15403:32583029,35687771:17519714 +g1,15403:32583029,35687771 +) +(1,15407:6764466,36503698:25818563,407923,0 +(1,15405:6764466,36503698:0,0,0 +g1,15405:6764466,36503698 +g1,15405:6764466,36503698 +g1,15405:6436786,36503698 +(1,15405:6436786,36503698:0,0,0 +) +g1,15405:6764466,36503698 +) +g1,15407:7760328,36503698 +g1,15407:8424236,36503698 +g1,15407:9088144,36503698 +g1,15407:10084006,36503698 +g1,15407:10747914,36503698 +h1,15407:11411822,36503698:0,0,0 +k1,15407:32583030,36503698:21171208 +g1,15407:32583030,36503698 +) +(1,15409:6764466,37319625:25818563,431045,106246 +(1,15408:6764466,37319625:0,0,0 +g1,15408:6764466,37319625 +g1,15408:6764466,37319625 +g1,15408:6436786,37319625 +(1,15408:6436786,37319625:0,0,0 +) +g1,15408:6764466,37319625 +) +k1,15409:6764466,37319625:0 +g1,15409:13071591,37319625 +g1,15409:13735499,37319625 +g1,15409:14399407,37319625 +g1,15409:15063315,37319625 +g1,15409:15727223,37319625 +h1,15409:16391131,37319625:0,0,0 +k1,15409:32583029,37319625:16191898 +g1,15409:32583029,37319625 +) +(1,15413:6764466,38135552:25818563,407923,106246 +(1,15411:6764466,38135552:0,0,0 +g1,15411:6764466,38135552 +g1,15411:6764466,38135552 +g1,15411:6436786,38135552 +(1,15411:6436786,38135552:0,0,0 +) +g1,15411:6764466,38135552 +) +g1,15413:7760328,38135552 +g1,15413:8424236,38135552 +g1,15413:9088144,38135552 +g1,15413:9752052,38135552 +g1,15413:10415960,38135552 +g1,15413:11411822,38135552 +g1,15413:12075730,38135552 +h1,15413:12739638,38135552:0,0,0 +k1,15413:32583030,38135552:19843392 +g1,15413:32583030,38135552 +) +] +) +g1,15414:32583029,38241798 +g1,15414:6764466,38241798 +g1,15414:6764466,38241798 +g1,15414:32583029,38241798 +g1,15414:32583029,38241798 +) +h1,15414:6764466,38438406:0,0,0 +(1,15418:6764466,39303486:25818563,513147,134348 +h1,15417:6764466,39303486:983040,0,0 +k1,15417:8754598,39303486:189203 +k1,15417:9358635,39303486:189194 +k1,15417:12308214,39303486:189203 +k1,15417:15577610,39303486:189204 +k1,15417:18792610,39303486:189203 +k1,15417:19929464,39303486:189203 +k1,15417:22106375,39303486:189204 +k1,15417:25126733,39303486:189203 +k1,15417:27532365,39303486:189204 +k1,15417:29709275,39303486:189203 +k1,15417:32583029,39303486:0 +) +(1,15418:6764466,40168566:25818563,513147,134348 +g1,15417:7495192,40168566 +g1,15417:8760692,40168566 +g1,15417:10313895,40168566 +g1,15417:13818105,40168566 +g1,15417:16315682,40168566 +g1,15417:17462562,40168566 +g1,15417:19649498,40168566 +k1,15418:32583029,40168566:10946480 +g1,15418:32583029,40168566 +) +] +g1,15418:32583029,40302914 +) +h1,15418:6630773,40302914:0,0,0 +(1,15422:6630773,41167994:25952256,513147,126483 +h1,15420:6630773,41167994:983040,0,0 +k1,15420:8280460,41167994:179059 +k1,15420:10447245,41167994:179078 +k1,15420:12713646,41167994:179079 +k1,15420:13552017,41167994:179079 +k1,15420:16167724,41167994:179078 +k1,15420:19957837,41167994:179079 +k1,15420:20668413,41167994:179079 +k1,15420:22360717,41167994:179078 +k1,15420:23155834,41167994:179079 +k1,15420:24353998,41167994:179079 +k1,15420:26455247,41167994:179078 +k1,15420:31202185,41167994:179079 +k1,15420:32583029,41167994:0 +) +(1,15422:6630773,42033074:25952256,513147,102891 +k1,15420:8887178,42033074:169083 +k1,15420:10160542,42033074:169082 +k1,15420:11077391,42033074:169083 +k1,15420:13629363,42033074:169083 +k1,15420:15366067,42033074:169083 +k1,15420:15891009,42033074:169082 +k1,15420:18047799,42033074:169083 +k1,15420:20934005,42033074:169083 +k1,15420:21458948,42033074:169083 +k1,15420:24259301,42033074:169082 +k1,15420:26340069,42033074:169083 +k1,15420:27700597,42033074:169083 +k1,15420:28888765,42033074:169083 +k1,15420:30447210,42033074:169082 +k1,15420:31563944,42033074:169083 +k1,15420:32583029,42033074:0 +) +(1,15422:6630773,42898154:25952256,513147,134348 +g1,15420:10595701,42898154 +g1,15420:13636571,42898154 +g1,15420:15571193,42898154 +g1,15420:18465918,42898154 +(1,15420:18465918,42898154:0,452978,115847 +r1,15426:23396438,42898154:4930520,568825,115847 +k1,15420:18465918,42898154:-4930520 +) +(1,15420:18465918,42898154:4930520,452978,115847 +k1,15420:18465918,42898154:3277 +h1,15420:23393161,42898154:0,411205,112570 +) +g1,15420:23769337,42898154 +k1,15422:32583029,42898154:8813692 +g1,15422:32583029,42898154 +) +] +(1,15426:32583029,45706769:0,0,0 +g1,15426:32583029,45706769 +) +) +] +(1,15426:6630773,47279633:25952256,0,0 +h1,15426:6630773,47279633:25952256,0,0 +) +] +(1,15426:4262630,4025873:0,0,0 +[1,15426:-473656,4025873:0,0,0 +(1,15426:-473656,-710413:0,0,0 +(1,15426:-473656,-710413:0,0,0 +g1,15426:-473656,-710413 +) +g1,15426:-473656,-710413 +) +] +) +] +!27543 +}247 Input:2626:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2627:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2628:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -270286,3350 +270480,3359 @@ Input:2633:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2634:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2635:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2636:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1300 -{247 -[1,15497:4262630,47279633:28320399,43253760,0 -(1,15497:4262630,4025873:0,0,0 -[1,15497:-473656,4025873:0,0,0 -(1,15497:-473656,-710413:0,0,0 -(1,15497:-473656,-644877:0,0,0 -k1,15497:-473656,-644877:-65536 +Input:2637:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2638:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2639:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2640:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 +{248 +[1,15495:4262630,47279633:28320399,43253760,0 +(1,15495:4262630,4025873:0,0,0 +[1,15495:-473656,4025873:0,0,0 +(1,15495:-473656,-710413:0,0,0 +(1,15495:-473656,-644877:0,0,0 +k1,15495:-473656,-644877:-65536 ) -(1,15497:-473656,4736287:0,0,0 -k1,15497:-473656,4736287:5209943 +(1,15495:-473656,4736287:0,0,0 +k1,15495:-473656,4736287:5209943 ) -g1,15497:-473656,-710413 +g1,15495:-473656,-710413 ) ] ) -[1,15497:6630773,47279633:25952256,43253760,0 -[1,15497:6630773,4812305:25952256,786432,0 -(1,15497:6630773,4812305:25952256,513147,126483 -(1,15497:6630773,4812305:25952256,513147,126483 -g1,15497:3078558,4812305 -[1,15497:3078558,4812305:0,0,0 -(1,15497:3078558,2439708:0,1703936,0 -k1,15497:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15497:2537886,2439708:1179648,16384,0 +[1,15495:6630773,47279633:25952256,43253760,0 +[1,15495:6630773,4812305:25952256,786432,0 +(1,15495:6630773,4812305:25952256,513147,126483 +(1,15495:6630773,4812305:25952256,513147,126483 +g1,15495:3078558,4812305 +[1,15495:3078558,4812305:0,0,0 +(1,15495:3078558,2439708:0,1703936,0 +k1,15495:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15495:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15497:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15495:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15497:3078558,4812305:0,0,0 -(1,15497:3078558,2439708:0,1703936,0 -g1,15497:29030814,2439708 -g1,15497:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15497:36151628,1915420:16384,1179648,0 +[1,15495:3078558,4812305:0,0,0 +(1,15495:3078558,2439708:0,1703936,0 +g1,15495:29030814,2439708 +g1,15495:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15495:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15497:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15495:37855564,2439708:1179648,16384,0 ) ) -k1,15497:3078556,2439708:-34777008 +k1,15495:3078556,2439708:-34777008 ) ] -[1,15497:3078558,4812305:0,0,0 -(1,15497:3078558,49800853:0,16384,2228224 -k1,15497:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15497:2537886,49800853:1179648,16384,0 +[1,15495:3078558,4812305:0,0,0 +(1,15495:3078558,49800853:0,16384,2228224 +k1,15495:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15495:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15497:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15495:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15497:3078558,4812305:0,0,0 -(1,15497:3078558,49800853:0,16384,2228224 -g1,15497:29030814,49800853 -g1,15497:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15497:36151628,51504789:16384,1179648,0 +[1,15495:3078558,4812305:0,0,0 +(1,15495:3078558,49800853:0,16384,2228224 +g1,15495:29030814,49800853 +g1,15495:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15495:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15497:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15495:37855564,49800853:1179648,16384,0 ) ) -k1,15497:3078556,49800853:-34777008 +k1,15495:3078556,49800853:-34777008 ) -] -g1,15497:6630773,4812305 -k1,15497:19575446,4812305:11749296 -g1,15497:21198117,4812305 -g1,15497:21985204,4812305 -g1,15497:24539797,4812305 -g1,15497:25949476,4812305 -g1,15497:28728857,4812305 -g1,15497:29852144,4812305 -) -) -] -[1,15497:6630773,45706769:25952256,40108032,0 -(1,15497:6630773,45706769:25952256,40108032,0 -(1,15497:6630773,45706769:0,0,0 -g1,15497:6630773,45706769 -) -[1,15497:6630773,45706769:25952256,40108032,0 -(1,15425:6630773,6254097:25952256,32768,229376 -(1,15425:6630773,6254097:0,32768,229376 -(1,15425:6630773,6254097:5505024,32768,229376 -r1,15497:12135797,6254097:5505024,262144,229376 -) -k1,15425:6630773,6254097:-5505024 -) -(1,15425:6630773,6254097:25952256,32768,0 -r1,15497:32583029,6254097:25952256,32768,0 -) -) -(1,15425:6630773,7885949:25952256,606339,14155 -(1,15425:6630773,7885949:2464678,575668,0 -g1,15425:6630773,7885949 -g1,15425:9095451,7885949 -) -g1,15425:11360375,7885949 -k1,15425:32583029,7885949:18870436 -g1,15425:32583029,7885949 -) -(1,15428:6630773,9144245:25952256,513147,134348 -k1,15427:10883142,9144245:233046 -k1,15427:12505551,9144245:233046 -k1,15427:15000244,9144245:233046 -k1,15427:15892582,9144245:233046 -k1,15427:18910253,9144245:233046 -k1,15427:23990341,9144245:233045 -k1,15427:26510594,9144245:233046 -k1,15427:28321092,9144245:233046 -k1,15427:29941535,9144245:233046 -k1,15427:31773659,9144245:233046 -k1,15427:32583029,9144245:0 -) -(1,15428:6630773,10009325:25952256,505283,134348 -k1,15427:7844303,10009325:194445 -k1,15427:9692221,10009325:194445 -k1,15427:14056723,10009325:194446 -k1,15427:16042922,10009325:194445 -k1,15427:20256690,10009325:194445 -k1,15427:22014169,10009325:194445 -k1,15427:23906652,10009325:194445 -k1,15427:27278283,10009325:194446 -k1,15427:28282098,10009325:194445 -k1,15427:30708044,10009325:194445 -k1,15428:32583029,10009325:0 -) -(1,15428:6630773,10874405:25952256,505283,126483 -k1,15427:9277712,10874405:245700 -k1,15427:11141497,10874405:245701 -k1,15427:11999959,10874405:245700 -k1,15427:13697281,10874405:245700 -k1,15427:15368389,10874405:245700 -k1,15427:17475968,10874405:245701 -k1,15427:18713228,10874405:245700 -k1,15427:20826704,10874405:245700 -k1,15427:23857029,10874405:245700 -k1,15427:28949773,10874405:245701 -k1,15427:30884991,10874405:245700 -k1,15427:32583029,10874405:0 -) -(1,15428:6630773,11739485:25952256,513147,126483 -k1,15427:7893703,11739485:196659 -k1,15427:11441217,11739485:196658 -k1,15427:13018064,11739485:196659 -k1,15427:14206282,11739485:196658 -k1,15427:16270717,11739485:196659 -k1,15427:17892783,11739485:196658 -k1,15427:20107951,11739485:196659 -k1,15427:21737226,11739485:196658 -k1,15427:22348725,11739485:196656 -k1,15427:25305759,11739485:196658 -k1,15427:27696563,11739485:196659 -k1,15427:30419634,11739485:196658 -k1,15427:31563944,11739485:196659 -k1,15427:32583029,11739485:0 -) -(1,15428:6630773,12604565:25952256,513147,126483 -k1,15427:9432675,12604565:247309 -k1,15427:10339276,12604565:247309 -k1,15427:12011993,12604565:247309 -k1,15427:14104140,12604565:247309 -k1,15427:15914483,12604565:247309 -k1,15427:17851310,12604565:247309 -k1,15427:20883244,12604565:247309 -k1,15427:25803925,12604565:247309 -k1,15427:27155516,12604565:247309 -k1,15427:28150591,12604565:247309 -k1,15427:31189078,12604565:247309 -k1,15427:32583029,12604565:0 -) -(1,15428:6630773,13469645:25952256,513147,102891 -g1,15427:8947470,13469645 -g1,15427:10959425,13469645 -g1,15427:13650333,13469645 -g1,15427:18117922,13469645 -g1,15427:20808830,13469645 -g1,15427:22199504,13469645 -g1,15427:24959880,13469645 -k1,15428:32583029,13469645:5252712 -g1,15428:32583029,13469645 -) -(1,15430:6630773,14334725:25952256,505283,126483 -h1,15429:6630773,14334725:983040,0,0 -k1,15429:9391499,14334725:174675 -k1,15429:11411013,14334725:174676 -k1,15429:12975051,14334725:174675 -k1,15429:14141286,14334725:174675 -k1,15429:15705324,14334725:174675 -k1,15429:18724263,14334725:174676 -k1,15429:19514976,14334725:174675 -k1,15429:21183217,14334725:174675 -k1,15429:21713752,14334725:174675 -k1,15429:23126403,14334725:174676 -k1,15429:24585584,14334725:174675 -k1,15429:26415043,14334725:174675 -k1,15429:27121215,14334725:174675 -k1,15429:28671492,14334725:174676 -k1,15429:30002877,14334725:174675 -k1,15430:32583029,14334725:0 -) -(1,15430:6630773,15199805:25952256,513147,126483 -k1,15429:8284953,15199805:213043 -k1,15429:11141717,15199805:213042 -k1,15429:12014052,15199805:213043 -k1,15429:14898341,15199805:213042 -k1,15429:18126695,15199805:213043 -k1,15429:21123706,15199805:213042 -k1,15429:21949511,15199805:213043 -k1,15429:23614175,15199805:213042 -k1,15429:25515425,15199805:213043 -k1,15429:26344505,15199805:213042 -k1,15429:28156626,15199805:213043 -k1,15429:29750512,15199805:213042 -k1,15429:31465640,15199805:213043 -k1,15430:32583029,15199805:0 -) -(1,15430:6630773,16064885:25952256,513147,126483 -k1,15429:8105879,16064885:207640 -k1,15429:11716148,16064885:207640 -k1,15429:13299388,16064885:207639 -k1,15429:14526113,16064885:207640 -k1,15429:16335453,16064885:207640 -k1,15429:18164454,16064885:207640 -k1,15429:20747118,16064885:207639 -k1,15429:21614050,16064885:207640 -k1,15429:25304929,16064885:207640 -k1,15429:28240833,16064885:207640 -k1,15429:29076307,16064885:207639 -k1,15429:30885647,16064885:207640 -k1,15429:32583029,16064885:0 -) -(1,15430:6630773,16929965:25952256,513147,134348 -k1,15429:8206204,16929965:150023 -k1,15429:10041812,16929965:150022 -k1,15429:11183395,16929965:150023 -k1,15429:11992710,16929965:150023 -k1,15429:14741235,16929965:150022 -k1,15429:17638527,16929965:150023 -k1,15429:18979995,16929965:150023 -k1,15429:20894902,16929965:150022 -k1,15429:24058926,16929965:150023 -k1,15429:26094420,16929965:150023 -k1,15429:29331188,16929965:150022 -k1,15429:30870574,16929965:150023 -k1,15430:32583029,16929965:0 -) -(1,15430:6630773,17795045:25952256,513147,134348 -k1,15429:7981121,17795045:154971 -k1,15429:9327536,17795045:154970 -k1,15429:12003677,17795045:154971 -k1,15429:12573446,17795045:154926 -k1,15429:13794688,17795045:154971 -k1,15429:15325260,17795045:154971 -k1,15429:18240606,17795045:154970 -k1,15429:21180202,17795045:154971 -k1,15429:22282824,17795045:154971 -k1,15429:23456879,17795045:154970 -k1,15429:26166443,17795045:154971 -k1,15429:27512858,17795045:154970 -k1,15429:31923737,17795045:154971 -k1,15429:32583029,17795045:0 -) -(1,15430:6630773,18660125:25952256,513147,134348 -k1,15429:10489878,18660125:202196 -k1,15429:11764243,18660125:202196 -k1,15429:13252256,18660125:202197 -k1,15429:13810312,18660125:202196 -k1,15429:17506232,18660125:202196 -k1,15429:19263597,18660125:202196 -k1,15429:20413444,18660125:202196 -k1,15429:22124279,18660125:202196 -k1,15429:24847646,18660125:202197 -(1,15429:24847646,18660125:0,452978,115847 -r1,15497:26261047,18660125:1413401,568825,115847 -k1,15429:24847646,18660125:-1413401 -) -(1,15429:24847646,18660125:1413401,452978,115847 -k1,15429:24847646,18660125:3277 -h1,15429:26257770,18660125:0,411205,112570 -) -k1,15429:26636913,18660125:202196 -k1,15429:29269839,18660125:202196 -k1,15429:30897443,18660125:202196 -k1,15429:32583029,18660125:0 -) -(1,15430:6630773,19525205:25952256,505283,134348 -k1,15429:8530897,19525205:218470 -k1,15429:10399563,19525205:218469 -k1,15429:13333190,19525205:218470 -k1,15429:17797081,19525205:218469 -k1,15429:18371411,19525205:218470 -(1,15429:18371411,19525205:0,414482,115847 -r1,15497:19081389,19525205:709978,530329,115847 -k1,15429:18371411,19525205:-709978 -) -(1,15429:18371411,19525205:709978,414482,115847 -k1,15429:18371411,19525205:3277 -h1,15429:19078112,19525205:0,411205,112570 -) -k1,15429:19299859,19525205:218470 -k1,15429:21477854,19525205:218469 -k1,15429:23189234,19525205:218470 -k1,15429:24473975,19525205:218470 -k1,15429:26222710,19525205:218469 -k1,15429:27092608,19525205:218470 -k1,15429:28928506,19525205:218469 -k1,15429:30572384,19525205:218470 -k1,15429:32583029,19525205:0 -) -(1,15430:6630773,20390285:25952256,513147,126483 -k1,15429:7769461,20390285:191037 -k1,15429:9412121,20390285:191038 -k1,15429:13344608,20390285:191037 -k1,15429:14607815,20390285:191038 -k1,15429:17126035,20390285:191037 -k1,15429:17672933,20390285:191038 -k1,15429:21851836,20390285:191037 -k1,15429:22702165,20390285:191037 -k1,15429:24065642,20390285:191038 -k1,15429:24915971,20390285:191037 -k1,15429:26595332,20390285:191038 -k1,15429:28385447,20390285:191037 -k1,15429:29931770,20390285:191038 -k1,15429:31391584,20390285:191037 -k1,15429:32583029,20390285:0 -) -(1,15430:6630773,21255365:25952256,513147,134348 -k1,15429:8091273,21255365:277575 -k1,15429:9967925,21255365:277574 -k1,15429:12028735,21255365:277575 -k1,15429:15319655,21255365:277575 -k1,15429:19080468,21255365:277574 -k1,15429:20747406,21255365:277575 -k1,15429:21483077,21255365:277574 -k1,15429:22292149,21255365:277575 -k1,15429:25874705,21255365:277575 -k1,15429:29261307,21255365:277574 -k1,15429:30190310,21255365:277575 -k1,15429:32583029,21255365:0 -) -(1,15430:6630773,22120445:25952256,513147,126483 -k1,15429:8277956,22120445:221775 -k1,15429:9889094,22120445:221775 -k1,15429:12149040,22120445:221776 -k1,15429:12986853,22120445:221775 -k1,15429:14365338,22120445:221775 -k1,15429:15246405,22120445:221775 -k1,15429:16487266,22120445:221776 -k1,15429:18903186,22120445:221775 -k1,15429:19539782,22120445:221753 -k1,15429:21994369,22120445:221775 -k1,15429:23163795,22120445:221775 -k1,15429:26274397,22120445:221775 -k1,15429:27885536,22120445:221776 -k1,15429:29298756,22120445:221775 -k1,15429:30171959,22120445:221775 -k1,15429:32583029,22120445:0 -) -(1,15430:6630773,22985525:25952256,505283,134348 -g1,15429:8197739,22985525 -g1,15429:10036023,22985525 -g1,15429:11467329,22985525 -g1,15429:13945245,22985525 -h1,15429:14915833,22985525:0,0,0 -g1,15429:15115062,22985525 -g1,15429:16123661,22985525 -g1,15429:17821043,22985525 -h1,15429:19016420,22985525:0,0,0 -k1,15430:32583029,22985525:13307087 -g1,15430:32583029,22985525 -) -(1,15432:6630773,23850605:25952256,513147,134348 -h1,15431:6630773,23850605:983040,0,0 -k1,15431:8582712,23850605:208681 -k1,15431:10295443,23850605:208680 -k1,15431:11674597,23850605:208681 -k1,15431:13830353,23850605:208681 -k1,15431:16604112,23850605:208680 -k1,15431:18097299,23850605:208681 -k1,15431:18957408,23850605:208681 -k1,15431:21095468,23850605:208680 -k1,15431:22074852,23850605:208681 -k1,15431:24243059,23850605:208681 -k1,15431:25111031,23850605:208680 -k1,15431:26874881,23850605:208681 -(1,15431:26874881,23850605:0,452978,115847 -r1,15497:28288282,23850605:1413401,568825,115847 -k1,15431:26874881,23850605:-1413401 -) -(1,15431:26874881,23850605:1413401,452978,115847 -k1,15431:26874881,23850605:3277 -h1,15431:28285005,23850605:0,411205,112570 -) -k1,15431:28496963,23850605:208681 -k1,15431:29862353,23850605:208680 -k1,15431:31931601,23850605:208681 -k1,15431:32583029,23850605:0 -) -(1,15432:6630773,24715685:25952256,505283,115847 -k1,15431:7930059,24715685:206801 -k1,15431:8492719,24715685:206800 -k1,15431:12406236,24715685:206801 -k1,15431:14480813,24715685:206801 -(1,15431:14480813,24715685:0,452978,115847 -r1,15497:15894214,24715685:1413401,568825,115847 -k1,15431:14480813,24715685:-1413401 -) -(1,15431:14480813,24715685:1413401,452978,115847 -k1,15431:14480813,24715685:3277 -h1,15431:15890937,24715685:0,411205,112570 -) -k1,15431:16101014,24715685:206800 -k1,15431:16990700,24715685:206801 -k1,15431:17553361,24715685:206801 -k1,15431:21236846,24715685:206800 -k1,15431:25150363,24715685:206801 -k1,15431:27224940,24715685:206801 -(1,15431:27224940,24715685:0,452978,115847 -r1,15497:29693477,24715685:2468537,568825,115847 -k1,15431:27224940,24715685:-2468537 -) -(1,15431:27224940,24715685:2468537,452978,115847 -k1,15431:27224940,24715685:3277 -h1,15431:29690200,24715685:0,411205,112570 -) -k1,15431:29900277,24715685:206800 -k1,15431:31298523,24715685:206801 -k1,15431:32583029,24715685:0 -) -(1,15432:6630773,25580765:25952256,505283,134348 -g1,15431:8000475,25580765 -g1,15431:9303986,25580765 -g1,15431:10889957,25580765 -g1,15431:11924770,25580765 -g1,15431:13143084,25580765 -g1,15431:16744942,25580765 -g1,15431:18324359,25580765 -g1,15431:20571588,25580765 -g1,15431:21532345,25580765 -g1,15431:25071944,25580765 -g1,15431:26659226,25580765 -g1,15431:28593848,25580765 -(1,15431:28593848,25580765:0,452978,115847 -r1,15497:31414097,25580765:2820249,568825,115847 -k1,15431:28593848,25580765:-2820249 -) -(1,15431:28593848,25580765:2820249,452978,115847 -k1,15431:28593848,25580765:3277 -h1,15431:31410820,25580765:0,411205,112570 -) -k1,15432:32583029,25580765:1116504 -g1,15432:32583029,25580765 -) -v1,15434:6630773,26265620:0,393216,0 -(1,15438:6630773,26599697:25952256,727293,196608 -g1,15438:6630773,26599697 -g1,15438:6630773,26599697 -g1,15438:6434165,26599697 -(1,15438:6434165,26599697:0,727293,196608 -r1,15497:32779637,26599697:26345472,923901,196608 -k1,15438:6434165,26599697:-26345472 -) -(1,15438:6434165,26599697:26345472,727293,196608 -[1,15438:6630773,26599697:25952256,530685,0 -(1,15436:6630773,26493451:25952256,424439,106246 -(1,15435:6630773,26493451:0,0,0 -g1,15435:6630773,26493451 -g1,15435:6630773,26493451 -g1,15435:6303093,26493451 -(1,15435:6303093,26493451:0,0,0 -) -g1,15435:6630773,26493451 -) -g1,15436:8622497,26493451 -g1,15436:9618359,26493451 -g1,15436:12605945,26493451 -g1,15436:14597669,26493451 -g1,15436:15261577,26493451 -g1,15436:17253301,26493451 -g1,15436:19576979,26493451 -g1,15436:20240887,26493451 -h1,15436:21900657,26493451:0,0,0 -k1,15436:32583029,26493451:10682372 -g1,15436:32583029,26493451 -) -] -) -g1,15438:32583029,26599697 -g1,15438:6630773,26599697 -g1,15438:6630773,26599697 -g1,15438:32583029,26599697 -g1,15438:32583029,26599697 -) -h1,15438:6630773,26796305:0,0,0 -(1,15442:6630773,27661385:25952256,513147,134348 -h1,15441:6630773,27661385:983040,0,0 -k1,15441:8951455,27661385:140955 -(1,15441:8951455,27661385:0,452978,115847 -r1,15497:11419992,27661385:2468537,568825,115847 -k1,15441:8951455,27661385:-2468537 -) -(1,15441:8951455,27661385:2468537,452978,115847 -k1,15441:8951455,27661385:3277 -h1,15441:11416715,27661385:0,411205,112570 -) -k1,15441:11560948,27661385:140956 -k1,15441:14156226,27661385:140955 -k1,15441:15244832,27661385:140955 -(1,15441:15244832,27661385:0,414482,115847 -r1,15497:15954810,27661385:709978,530329,115847 -k1,15441:15244832,27661385:-709978 -) -(1,15441:15244832,27661385:709978,414482,115847 -k1,15441:15244832,27661385:3277 -h1,15441:15951533,27661385:0,411205,112570 -) -k1,15441:16095766,27661385:140956 -k1,15441:18526549,27661385:140955 -k1,15441:19199001,27661385:140955 -k1,15441:21707773,27661385:140956 -k1,15441:23040173,27661385:140955 -k1,15441:25516831,27661385:140955 -k1,15441:26676872,27661385:140956 -k1,15441:29466137,27661385:140955 -k1,15441:32583029,27661385:0 -) -(1,15442:6630773,28526465:25952256,513147,126483 -g1,15441:7481430,28526465 -g1,15441:8699744,28526465 -g1,15441:10324381,28526465 -g1,15441:11878895,28526465 -g1,15441:12761009,28526465 -(1,15441:12761009,28526465:0,452978,115847 -r1,15497:14877834,28526465:2116825,568825,115847 -k1,15441:12761009,28526465:-2116825 -) -(1,15441:12761009,28526465:2116825,452978,115847 -k1,15441:12761009,28526465:3277 -h1,15441:14874557,28526465:0,411205,112570 -) -g1,15441:15077063,28526465 -g1,15441:15935584,28526465 -g1,15441:17153898,28526465 -k1,15442:32583029,28526465:13531864 -g1,15442:32583029,28526465 -) -v1,15444:6630773,29211320:0,393216,0 -(1,15452:6630773,30949841:25952256,2131737,196608 -g1,15452:6630773,30949841 -g1,15452:6630773,30949841 -g1,15452:6434165,30949841 -(1,15452:6434165,30949841:0,2131737,196608 -r1,15497:32779637,30949841:26345472,2328345,196608 -k1,15452:6434165,30949841:-26345472 -) -(1,15452:6434165,30949841:26345472,2131737,196608 -[1,15452:6630773,30949841:25952256,1935129,0 -(1,15446:6630773,29439151:25952256,424439,106246 -(1,15445:6630773,29439151:0,0,0 -g1,15445:6630773,29439151 -g1,15445:6630773,29439151 -g1,15445:6303093,29439151 -(1,15445:6303093,29439151:0,0,0 -) -g1,15445:6630773,29439151 -) -k1,15446:6630773,29439151:0 -h1,15446:10614221,29439151:0,0,0 -k1,15446:32583029,29439151:21968808 -g1,15446:32583029,29439151 -) -(1,15451:6630773,30255078:25952256,424439,112852 -(1,15448:6630773,30255078:0,0,0 -g1,15448:6630773,30255078 -g1,15448:6630773,30255078 -g1,15448:6303093,30255078 -(1,15448:6303093,30255078:0,0,0 -) -g1,15448:6630773,30255078 -) -g1,15451:7626635,30255078 -g1,15451:7958589,30255078 -g1,15451:8290543,30255078 -g1,15451:8622497,30255078 -g1,15451:8954451,30255078 -g1,15451:9286405,30255078 -g1,15451:10614221,30255078 -g1,15451:11942037,30255078 -g1,15451:13269853,30255078 -g1,15451:14597669,30255078 -g1,15451:15925485,30255078 -g1,15451:17253301,30255078 -g1,15451:18581117,30255078 -g1,15451:19908933,30255078 -g1,15451:21236749,30255078 -h1,15451:22232611,30255078:0,0,0 -k1,15451:32583029,30255078:10350418 -g1,15451:32583029,30255078 -) -(1,15451:6630773,30939933:25952256,407923,9908 -h1,15451:6630773,30939933:0,0,0 -g1,15451:7626635,30939933 -g1,15451:9286405,30939933 -g1,15451:9618359,30939933 -g1,15451:9950313,30939933 -g1,15451:10614221,30939933 -g1,15451:10946175,30939933 -g1,15451:11278129,30939933 -g1,15451:11942037,30939933 -g1,15451:12273991,30939933 -g1,15451:12605945,30939933 -g1,15451:13269853,30939933 -g1,15451:13601807,30939933 -g1,15451:13933761,30939933 -g1,15451:14597669,30939933 -g1,15451:14929623,30939933 -g1,15451:15261577,30939933 -g1,15451:15925485,30939933 -g1,15451:16257439,30939933 -g1,15451:16589393,30939933 -g1,15451:17253301,30939933 -g1,15451:17585255,30939933 -g1,15451:17917209,30939933 -g1,15451:18581117,30939933 -g1,15451:18913071,30939933 -g1,15451:19245025,30939933 -g1,15451:19908933,30939933 -g1,15451:20240887,30939933 -g1,15451:20572841,30939933 -g1,15451:21236749,30939933 -g1,15451:21568703,30939933 -h1,15451:22232611,30939933:0,0,0 -k1,15451:32583029,30939933:10350418 -g1,15451:32583029,30939933 -) -] -) -g1,15452:32583029,30949841 -g1,15452:6630773,30949841 -g1,15452:6630773,30949841 -g1,15452:32583029,30949841 -g1,15452:32583029,30949841 -) -h1,15452:6630773,31146449:0,0,0 -(1,15456:6630773,32011529:25952256,513147,134348 -h1,15455:6630773,32011529:983040,0,0 -k1,15455:9086056,32011529:275556 -k1,15455:12293037,32011529:275556 -k1,15455:13227884,32011529:275555 -k1,15455:14522525,32011529:275556 -(1,15455:14522525,32011529:0,414482,115847 -r1,15497:15232503,32011529:709978,530329,115847 -k1,15455:14522525,32011529:-709978 -) -(1,15455:14522525,32011529:709978,414482,115847 -k1,15455:14522525,32011529:3277 -h1,15455:15229226,32011529:0,411205,112570 -) -k1,15455:15508059,32011529:275556 -k1,15455:17743141,32011529:275556 -k1,15455:18550194,32011529:275556 -k1,15455:21124097,32011529:275555 -k1,15455:22199848,32011529:275556 -k1,15455:24257983,32011529:275556 -k1,15455:25065036,32011529:275556 -(1,15455:25065036,32011529:0,452978,115847 -r1,15497:27533573,32011529:2468537,568825,115847 -k1,15455:25065036,32011529:-2468537 -) -(1,15455:25065036,32011529:2468537,452978,115847 -k1,15455:25065036,32011529:3277 -h1,15455:27530296,32011529:0,411205,112570 -) -k1,15455:27809129,32011529:275556 -k1,15455:29156853,32011529:275555 -k1,15455:30220807,32011529:275556 -k1,15455:32051532,32011529:275556 -k1,15456:32583029,32011529:0 -) -(1,15456:6630773,32876609:25952256,513147,115847 -(1,15455:6630773,32876609:0,414482,115847 -r1,15497:7340751,32876609:709978,530329,115847 -k1,15455:6630773,32876609:-709978 -) -(1,15455:6630773,32876609:709978,414482,115847 -k1,15455:6630773,32876609:3277 -h1,15455:7337474,32876609:0,411205,112570 -) -k1,15455:7738801,32876609:224380 -k1,15455:8433074,32876609:224380 -k1,15455:9188951,32876609:224380 -k1,15455:11615341,32876609:224380 -k1,15455:12491149,32876609:224380 -k1,15455:13071389,32876609:224380 -k1,15455:15915898,32876609:224380 -k1,15455:18118154,32876609:224379 -k1,15455:19736485,32876609:224380 -k1,15455:20979950,32876609:224380 -k1,15455:23870335,32876609:224380 -k1,15455:24754007,32876609:224380 -k1,15455:26135097,32876609:224380 -k1,15455:29138204,32876609:224380 -k1,15455:31521340,32876609:224380 -(1,15455:31521340,32876609:0,414482,115847 -r1,15497:32583029,32876609:1061689,530329,115847 -k1,15455:31521340,32876609:-1061689 -) -(1,15455:31521340,32876609:1061689,414482,115847 -k1,15455:31521340,32876609:3277 -h1,15455:32579752,32876609:0,411205,112570 -) -k1,15455:32583029,32876609:0 -) -(1,15456:6630773,33741689:25952256,513147,134348 -k1,15455:10204826,33741689:261863 -k1,15455:11485774,33741689:261863 -k1,15455:13173045,33741689:261863 -k1,15455:15294164,33741689:261863 -k1,15455:16242189,33741689:261863 -k1,15455:16859912,33741689:261863 -k1,15455:19741904,33741689:261863 -k1,15455:21981645,33741689:261864 -k1,15455:22902800,33741689:261863 -k1,15455:25177929,33741689:261863 -k1,15455:26011921,33741689:261863 -k1,15455:28196610,33741689:261863 -k1,15455:29946796,33741689:261863 -k1,15455:31400104,33741689:261863 -k1,15455:32583029,33741689:0 -) -(1,15456:6630773,34606769:25952256,513147,126483 -g1,15455:8255410,34606769 -g1,15455:9646084,34606769 -g1,15455:10864398,34606769 -g1,15455:12332404,34606769 -g1,15455:13190925,34606769 -g1,15455:14409239,34606769 -k1,15456:32583029,34606769:16435776 -g1,15456:32583029,34606769 -) -v1,15458:6630773,35291624:0,393216,0 -(1,15493:6630773,45510161:25952256,10611753,196608 -g1,15493:6630773,45510161 -g1,15493:6630773,45510161 -g1,15493:6434165,45510161 -(1,15493:6434165,45510161:0,10611753,196608 -r1,15497:32779637,45510161:26345472,10808361,196608 -k1,15493:6434165,45510161:-26345472 -) -(1,15493:6434165,45510161:26345472,10611753,196608 -[1,15493:6630773,45510161:25952256,10415145,0 -(1,15460:6630773,35519455:25952256,424439,106246 -(1,15459:6630773,35519455:0,0,0 -g1,15459:6630773,35519455 -g1,15459:6630773,35519455 -g1,15459:6303093,35519455 -(1,15459:6303093,35519455:0,0,0 -) -g1,15459:6630773,35519455 -) -k1,15460:6630773,35519455:0 -h1,15460:10282267,35519455:0,0,0 -k1,15460:32583029,35519455:22300762 -g1,15460:32583029,35519455 -) -(1,15464:6630773,36316284:25952256,424439,79822 -(1,15462:6630773,36316284:0,0,0 -g1,15462:6630773,36316284 -g1,15462:6630773,36316284 -g1,15462:6303093,36316284 -(1,15462:6303093,36316284:0,0,0 -) -g1,15462:6630773,36316284 -) -g1,15464:7626635,36316284 -g1,15464:8954451,36316284 -h1,15464:11942036,36316284:0,0,0 -k1,15464:32583028,36316284:20640992 -g1,15464:32583028,36316284 -) -(1,15466:6630773,37113114:25952256,424439,106246 -(1,15465:6630773,37113114:0,0,0 -g1,15465:6630773,37113114 -g1,15465:6630773,37113114 -g1,15465:6303093,37113114 -(1,15465:6303093,37113114:0,0,0 -) -g1,15465:6630773,37113114 -) -k1,15466:6630773,37113114:0 -h1,15466:10614221,37113114:0,0,0 -k1,15466:32583029,37113114:21968808 -g1,15466:32583029,37113114 -) -(1,15470:6630773,37909943:25952256,424439,79822 -(1,15468:6630773,37909943:0,0,0 -g1,15468:6630773,37909943 -g1,15468:6630773,37909943 -g1,15468:6303093,37909943 -(1,15468:6303093,37909943:0,0,0 -) -g1,15468:6630773,37909943 -) -g1,15470:7626635,37909943 -g1,15470:8954451,37909943 -h1,15470:10282267,37909943:0,0,0 -k1,15470:32583029,37909943:22300762 -g1,15470:32583029,37909943 -) -(1,15472:6630773,38706772:25952256,424439,106246 -(1,15471:6630773,38706772:0,0,0 -g1,15471:6630773,38706772 -g1,15471:6630773,38706772 -g1,15471:6303093,38706772 -(1,15471:6303093,38706772:0,0,0 -) -g1,15471:6630773,38706772 -) -k1,15472:6630773,38706772:0 -h1,15472:10614221,38706772:0,0,0 -k1,15472:32583029,38706772:21968808 -g1,15472:32583029,38706772 -) -(1,15476:6630773,39503602:25952256,424439,79822 -(1,15474:6630773,39503602:0,0,0 -g1,15474:6630773,39503602 -g1,15474:6630773,39503602 -g1,15474:6303093,39503602 -(1,15474:6303093,39503602:0,0,0 -) -g1,15474:6630773,39503602 -) -g1,15476:7626635,39503602 -g1,15476:8954451,39503602 -h1,15476:10282267,39503602:0,0,0 -k1,15476:32583029,39503602:22300762 -g1,15476:32583029,39503602 -) -(1,15478:6630773,40300431:25952256,424439,106246 -(1,15477:6630773,40300431:0,0,0 -g1,15477:6630773,40300431 -g1,15477:6630773,40300431 -g1,15477:6303093,40300431 -(1,15477:6303093,40300431:0,0,0 -) -g1,15477:6630773,40300431 -) -k1,15478:6630773,40300431:0 -h1,15478:9950313,40300431:0,0,0 -k1,15478:32583029,40300431:22632716 -g1,15478:32583029,40300431 -) -(1,15482:6630773,41097260:25952256,431045,79822 -(1,15480:6630773,41097260:0,0,0 -g1,15480:6630773,41097260 -g1,15480:6630773,41097260 -g1,15480:6303093,41097260 -(1,15480:6303093,41097260:0,0,0 -) -g1,15480:6630773,41097260 -) -g1,15482:7626635,41097260 -g1,15482:7958589,41097260 -g1,15482:11942037,41097260 -g1,15482:14265715,41097260 -g1,15482:15925485,41097260 -g1,15482:17585255,41097260 -g1,15482:18581117,41097260 -g1,15482:20572841,41097260 -g1,15482:21236749,41097260 -g1,15482:21900657,41097260 -g1,15482:22564565,41097260 -g1,15482:23228473,41097260 -g1,15482:23892381,41097260 -g1,15482:24556289,41097260 -g1,15482:25220197,41097260 -g1,15482:25884105,41097260 -g1,15482:26548013,41097260 -h1,15482:27211921,41097260:0,0,0 -k1,15482:32583029,41097260:5371108 -g1,15482:32583029,41097260 -) -(1,15484:6630773,41894090:25952256,424439,106246 -(1,15483:6630773,41894090:0,0,0 -g1,15483:6630773,41894090 -g1,15483:6630773,41894090 -g1,15483:6303093,41894090 -(1,15483:6303093,41894090:0,0,0 -) -g1,15483:6630773,41894090 -) -k1,15484:6630773,41894090:0 -h1,15484:12273990,41894090:0,0,0 -k1,15484:32583030,41894090:20309040 -g1,15484:32583030,41894090 -) -(1,15492:6630773,42690919:25952256,431045,106246 -(1,15486:6630773,42690919:0,0,0 -g1,15486:6630773,42690919 -g1,15486:6630773,42690919 -g1,15486:6303093,42690919 -(1,15486:6303093,42690919:0,0,0 -) -g1,15486:6630773,42690919 -) -g1,15492:7626635,42690919 -h1,15492:8954451,42690919:0,0,0 -k1,15492:32583029,42690919:23628578 -g1,15492:32583029,42690919 -) -(1,15492:6630773,43375774:25952256,424439,79822 -h1,15492:6630773,43375774:0,0,0 -g1,15492:7626635,43375774 -g1,15492:8954451,43375774 -g1,15492:11610083,43375774 -g1,15492:14265715,43375774 -g1,15492:14597669,43375774 -g1,15492:14929623,43375774 -h1,15492:16589393,43375774:0,0,0 -k1,15492:32583029,43375774:15993636 -g1,15492:32583029,43375774 -) -(1,15492:6630773,44060629:25952256,398014,0 -h1,15492:6630773,44060629:0,0,0 -h1,15492:7294681,44060629:0,0,0 -k1,15492:32583029,44060629:25288348 -g1,15492:32583029,44060629 -) -(1,15492:6630773,44745484:25952256,431045,33029 -h1,15492:6630773,44745484:0,0,0 -g1,15492:7626635,44745484 -h1,15492:9618359,44745484:0,0,0 -k1,15492:32583029,44745484:22964670 -g1,15492:32583029,44745484 -) -(1,15492:6630773,45430339:25952256,424439,79822 -h1,15492:6630773,45430339:0,0,0 -g1,15492:7626635,45430339 -g1,15492:8954451,45430339 -h1,15492:10282267,45430339:0,0,0 -k1,15492:32583029,45430339:22300762 -g1,15492:32583029,45430339 -) -] -) -g1,15493:32583029,45510161 -g1,15493:6630773,45510161 -g1,15493:6630773,45510161 -g1,15493:32583029,45510161 -g1,15493:32583029,45510161 -) -h1,15493:6630773,45706769:0,0,0 -] -(1,15497:32583029,45706769:0,0,0 -g1,15497:32583029,45706769 -) -) -] -(1,15497:6630773,47279633:25952256,0,0 -h1,15497:6630773,47279633:25952256,0,0 -) -] -(1,15497:4262630,4025873:0,0,0 -[1,15497:-473656,4025873:0,0,0 -(1,15497:-473656,-710413:0,0,0 -(1,15497:-473656,-710413:0,0,0 -g1,15497:-473656,-710413 -) -g1,15497:-473656,-710413 -) -] +] +g1,15495:6630773,4812305 +k1,15495:19575446,4812305:11749296 +g1,15495:21198117,4812305 +g1,15495:21985204,4812305 +g1,15495:24539797,4812305 +g1,15495:25949476,4812305 +g1,15495:28728857,4812305 +g1,15495:29852144,4812305 +) +) +] +[1,15495:6630773,45706769:25952256,40108032,0 +(1,15495:6630773,45706769:25952256,40108032,0 +(1,15495:6630773,45706769:0,0,0 +g1,15495:6630773,45706769 +) +[1,15495:6630773,45706769:25952256,40108032,0 +(1,15423:6630773,6254097:25952256,32768,229376 +(1,15423:6630773,6254097:0,32768,229376 +(1,15423:6630773,6254097:5505024,32768,229376 +r1,15495:12135797,6254097:5505024,262144,229376 +) +k1,15423:6630773,6254097:-5505024 +) +(1,15423:6630773,6254097:25952256,32768,0 +r1,15495:32583029,6254097:25952256,32768,0 +) +) +(1,15423:6630773,7885949:25952256,606339,14155 +(1,15423:6630773,7885949:2464678,575668,0 +g1,15423:6630773,7885949 +g1,15423:9095451,7885949 +) +g1,15423:11360375,7885949 +k1,15423:32583029,7885949:18870436 +g1,15423:32583029,7885949 +) +(1,15426:6630773,9144245:25952256,513147,134348 +k1,15425:10883142,9144245:233046 +k1,15425:12505551,9144245:233046 +k1,15425:15000244,9144245:233046 +k1,15425:15892582,9144245:233046 +k1,15425:18910253,9144245:233046 +k1,15425:23990341,9144245:233045 +k1,15425:26510594,9144245:233046 +k1,15425:28321092,9144245:233046 +k1,15425:29941535,9144245:233046 +k1,15425:31773659,9144245:233046 +k1,15425:32583029,9144245:0 +) +(1,15426:6630773,10009325:25952256,505283,134348 +k1,15425:7844303,10009325:194445 +k1,15425:9692221,10009325:194445 +k1,15425:14056723,10009325:194446 +k1,15425:16042922,10009325:194445 +k1,15425:20256690,10009325:194445 +k1,15425:22014169,10009325:194445 +k1,15425:23906652,10009325:194445 +k1,15425:27278283,10009325:194446 +k1,15425:28282098,10009325:194445 +k1,15425:30708044,10009325:194445 +k1,15426:32583029,10009325:0 +) +(1,15426:6630773,10874405:25952256,505283,126483 +k1,15425:9277712,10874405:245700 +k1,15425:11141497,10874405:245701 +k1,15425:11999959,10874405:245700 +k1,15425:13697281,10874405:245700 +k1,15425:15368389,10874405:245700 +k1,15425:17475968,10874405:245701 +k1,15425:18713228,10874405:245700 +k1,15425:20826704,10874405:245700 +k1,15425:23857029,10874405:245700 +k1,15425:28949773,10874405:245701 +k1,15425:30884991,10874405:245700 +k1,15425:32583029,10874405:0 +) +(1,15426:6630773,11739485:25952256,513147,126483 +k1,15425:7893703,11739485:196659 +k1,15425:11441217,11739485:196658 +k1,15425:13018064,11739485:196659 +k1,15425:14206282,11739485:196658 +k1,15425:16270717,11739485:196659 +k1,15425:17892783,11739485:196658 +k1,15425:20107951,11739485:196659 +k1,15425:21737226,11739485:196658 +k1,15425:22348725,11739485:196656 +k1,15425:25305759,11739485:196658 +k1,15425:27696563,11739485:196659 +k1,15425:30419634,11739485:196658 +k1,15425:31563944,11739485:196659 +k1,15425:32583029,11739485:0 +) +(1,15426:6630773,12604565:25952256,513147,126483 +k1,15425:9432675,12604565:247309 +k1,15425:10339276,12604565:247309 +k1,15425:12011993,12604565:247309 +k1,15425:14104140,12604565:247309 +k1,15425:15914483,12604565:247309 +k1,15425:17851310,12604565:247309 +k1,15425:20883244,12604565:247309 +k1,15425:25803925,12604565:247309 +k1,15425:27155516,12604565:247309 +k1,15425:28150591,12604565:247309 +k1,15425:31189078,12604565:247309 +k1,15425:32583029,12604565:0 +) +(1,15426:6630773,13469645:25952256,513147,102891 +g1,15425:8947470,13469645 +g1,15425:10959425,13469645 +g1,15425:13650333,13469645 +g1,15425:18117922,13469645 +g1,15425:20808830,13469645 +g1,15425:22199504,13469645 +g1,15425:24959880,13469645 +k1,15426:32583029,13469645:5252712 +g1,15426:32583029,13469645 +) +(1,15428:6630773,14334725:25952256,505283,126483 +h1,15427:6630773,14334725:983040,0,0 +k1,15427:9391499,14334725:174675 +k1,15427:11411013,14334725:174676 +k1,15427:12975051,14334725:174675 +k1,15427:14141286,14334725:174675 +k1,15427:15705324,14334725:174675 +k1,15427:18724263,14334725:174676 +k1,15427:19514976,14334725:174675 +k1,15427:21183217,14334725:174675 +k1,15427:21713752,14334725:174675 +k1,15427:23126403,14334725:174676 +k1,15427:24585584,14334725:174675 +k1,15427:26415043,14334725:174675 +k1,15427:27121215,14334725:174675 +k1,15427:28671492,14334725:174676 +k1,15427:30002877,14334725:174675 +k1,15428:32583029,14334725:0 +) +(1,15428:6630773,15199805:25952256,513147,126483 +k1,15427:8284953,15199805:213043 +k1,15427:11141717,15199805:213042 +k1,15427:12014052,15199805:213043 +k1,15427:14898341,15199805:213042 +k1,15427:18126695,15199805:213043 +k1,15427:21123706,15199805:213042 +k1,15427:21949511,15199805:213043 +k1,15427:23614175,15199805:213042 +k1,15427:25515425,15199805:213043 +k1,15427:26344505,15199805:213042 +k1,15427:28156626,15199805:213043 +k1,15427:29750512,15199805:213042 +k1,15427:31465640,15199805:213043 +k1,15428:32583029,15199805:0 +) +(1,15428:6630773,16064885:25952256,513147,126483 +k1,15427:8098615,16064885:200376 +k1,15427:11701620,16064885:200376 +k1,15427:13277597,16064885:200376 +k1,15427:14497059,16064885:200377 +k1,15427:16299135,16064885:200376 +k1,15427:18120872,16064885:200376 +k1,15427:20696273,16064885:200376 +k1,15427:21555941,16064885:200376 +k1,15427:25239557,16064885:200377 +k1,15427:28168197,16064885:200376 +k1,15427:28996408,16064885:200376 +k1,15427:30798484,16064885:200376 +k1,15427:32583029,16064885:0 +) +(1,15428:6630773,16929965:25952256,513147,134348 +k1,15427:8206204,16929965:150023 +k1,15427:10041812,16929965:150022 +k1,15427:11183395,16929965:150023 +k1,15427:11992710,16929965:150023 +k1,15427:14741235,16929965:150022 +k1,15427:17638527,16929965:150023 +k1,15427:18979995,16929965:150023 +k1,15427:20894902,16929965:150022 +k1,15427:24058926,16929965:150023 +k1,15427:26094420,16929965:150023 +k1,15427:29331188,16929965:150022 +k1,15427:30870574,16929965:150023 +k1,15428:32583029,16929965:0 +) +(1,15428:6630773,17795045:25952256,513147,134348 +k1,15427:8048974,17795045:222824 +k1,15427:9463243,17795045:222824 +k1,15427:12207237,17795045:222824 +k1,15427:12844881,17795045:222801 +k1,15427:14133976,17795045:222824 +k1,15427:15732401,17795045:222824 +k1,15427:18715601,17795045:222824 +k1,15427:21723050,17795045:222824 +k1,15427:22893526,17795045:222825 +k1,15427:24135435,17795045:222824 +k1,15427:26912852,17795045:222824 +k1,15427:28327121,17795045:222824 +k1,15427:32583029,17795045:0 +) +(1,15428:6630773,18660125:25952256,513147,134348 +k1,15427:7577786,18660125:287721 +k1,15427:11522415,18660125:287720 +k1,15427:12882305,18660125:287721 +k1,15427:14455842,18660125:287721 +k1,15427:15099422,18660125:287720 +k1,15427:18880867,18660125:287721 +k1,15427:20723757,18660125:287721 +k1,15427:21959128,18660125:287720 +k1,15427:23755488,18660125:287721 +k1,15427:26564379,18660125:287721 +(1,15427:26564379,18660125:0,452978,115847 +r1,15495:27977780,18660125:1413401,568825,115847 +k1,15427:26564379,18660125:-1413401 +) +(1,15427:26564379,18660125:1413401,452978,115847 +k1,15427:26564379,18660125:3277 +h1,15427:27974503,18660125:0,411205,112570 +) +k1,15427:28439170,18660125:287720 +k1,15427:31157621,18660125:287721 +k1,15427:32583029,18660125:0 +) +(1,15428:6630773,19525205:25952256,505283,134348 +k1,15427:8559833,19525205:243474 +k1,15427:10484961,19525205:243474 +k1,15427:12378632,19525205:243474 +k1,15427:15337264,19525205:243475 +k1,15427:19826160,19525205:243474 +k1,15427:20425494,19525205:243474 +(1,15427:20425494,19525205:0,414482,115847 +r1,15495:21135472,19525205:709978,530329,115847 +k1,15427:20425494,19525205:-709978 +) +(1,15427:20425494,19525205:709978,414482,115847 +k1,15427:20425494,19525205:3277 +h1,15427:21132195,19525205:0,411205,112570 +) +k1,15427:21378946,19525205:243474 +k1,15427:23581946,19525205:243474 +k1,15427:25318330,19525205:243474 +k1,15427:26628076,19525205:243475 +k1,15427:28401816,19525205:243474 +k1,15427:29296718,19525205:243474 +k1,15427:31157621,19525205:243474 +k1,15427:32583029,19525205:0 +) +(1,15428:6630773,20390285:25952256,513147,126483 +k1,15427:8865400,20390285:241677 +k1,15427:10054727,20390285:241676 +k1,15427:11748026,20390285:241677 +k1,15427:15731152,20390285:241676 +k1,15427:17044998,20390285:241677 +k1,15427:19613858,20390285:241677 +k1,15427:20211394,20390285:241676 +k1,15427:24440937,20390285:241677 +k1,15427:25341906,20390285:241677 +k1,15427:26756021,20390285:241676 +k1,15427:27656990,20390285:241677 +k1,15427:29386989,20390285:241676 +k1,15427:31227744,20390285:241677 +k1,15427:32583029,20390285:0 +) +(1,15428:6630773,21255365:25952256,513147,134348 +k1,15427:8133896,21255365:234346 +k1,15427:9559686,21255365:234345 +k1,15427:10976957,21255365:234346 +k1,15427:12810380,21255365:234345 +k1,15427:14827961,21255365:234346 +k1,15427:18075652,21255365:234346 +k1,15427:21793236,21255365:234345 +k1,15427:23590616,21255365:234346 +k1,15427:24283058,21255365:234345 +k1,15427:25048901,21255365:234346 +k1,15427:28588227,21255365:234345 +k1,15427:31931601,21255365:234346 +k1,15427:32583029,21255365:0 +) +(1,15428:6630773,22120445:25952256,513147,134348 +k1,15427:9216419,22120445:192927 +k1,15427:10834754,22120445:192927 +k1,15427:12417044,22120445:192927 +k1,15427:15245174,22120445:192927 +k1,15427:16594811,22120445:192927 +k1,15427:17447030,22120445:192927 +k1,15427:18659042,22120445:192927 +k1,15427:21046114,22120445:192927 +k1,15427:21653877,22120445:192920 +k1,15427:24079616,22120445:192927 +k1,15427:25463988,22120445:192927 +(1,15427:25463988,22120445:0,452978,115847 +r1,15495:28635948,22120445:3171960,568825,115847 +k1,15427:25463988,22120445:-3171960 +) +(1,15427:25463988,22120445:3171960,452978,115847 +k1,15427:25463988,22120445:3277 +h1,15427:28632671,22120445:0,411205,112570 +) +k1,15427:28828875,22120445:192927 +k1,15427:31391584,22120445:192927 +k1,15427:32583029,22120445:0 +) +(1,15428:6630773,22985525:25952256,505283,134348 +g1,15427:7481430,22985525 +g1,15427:10091729,22985525 +g1,15427:11100328,22985525 +g1,15427:13010702,22985525 +g1,15427:14401376,22985525 +g1,15427:16356315,22985525 +g1,15427:17787621,22985525 +g1,15427:20265537,22985525 +h1,15427:21236125,22985525:0,0,0 +g1,15427:21435354,22985525 +g1,15427:22443953,22985525 +g1,15427:24141335,22985525 +h1,15427:25336712,22985525:0,0,0 +k1,15428:32583029,22985525:6986795 +g1,15428:32583029,22985525 +) +(1,15430:6630773,23850605:25952256,513147,134348 +h1,15429:6630773,23850605:983040,0,0 +k1,15429:8582712,23850605:208681 +k1,15429:10295443,23850605:208680 +k1,15429:11674597,23850605:208681 +k1,15429:13830353,23850605:208681 +k1,15429:16604112,23850605:208680 +k1,15429:18097299,23850605:208681 +k1,15429:18957408,23850605:208681 +k1,15429:21095468,23850605:208680 +k1,15429:22074852,23850605:208681 +k1,15429:24243059,23850605:208681 +k1,15429:25111031,23850605:208680 +k1,15429:26874881,23850605:208681 +(1,15429:26874881,23850605:0,452978,115847 +r1,15495:28288282,23850605:1413401,568825,115847 +k1,15429:26874881,23850605:-1413401 +) +(1,15429:26874881,23850605:1413401,452978,115847 +k1,15429:26874881,23850605:3277 +h1,15429:28285005,23850605:0,411205,112570 +) +k1,15429:28496963,23850605:208681 +k1,15429:29862353,23850605:208680 +k1,15429:31931601,23850605:208681 +k1,15429:32583029,23850605:0 +) +(1,15430:6630773,24715685:25952256,505283,115847 +k1,15429:7930059,24715685:206801 +k1,15429:8492719,24715685:206800 +k1,15429:12406236,24715685:206801 +k1,15429:14480813,24715685:206801 +(1,15429:14480813,24715685:0,452978,115847 +r1,15495:15894214,24715685:1413401,568825,115847 +k1,15429:14480813,24715685:-1413401 +) +(1,15429:14480813,24715685:1413401,452978,115847 +k1,15429:14480813,24715685:3277 +h1,15429:15890937,24715685:0,411205,112570 +) +k1,15429:16101014,24715685:206800 +k1,15429:16990700,24715685:206801 +k1,15429:17553361,24715685:206801 +k1,15429:21236846,24715685:206800 +k1,15429:25150363,24715685:206801 +k1,15429:27224940,24715685:206801 +(1,15429:27224940,24715685:0,452978,115847 +r1,15495:29693477,24715685:2468537,568825,115847 +k1,15429:27224940,24715685:-2468537 +) +(1,15429:27224940,24715685:2468537,452978,115847 +k1,15429:27224940,24715685:3277 +h1,15429:29690200,24715685:0,411205,112570 +) +k1,15429:29900277,24715685:206800 +k1,15429:31298523,24715685:206801 +k1,15429:32583029,24715685:0 +) +(1,15430:6630773,25580765:25952256,505283,134348 +g1,15429:8000475,25580765 +g1,15429:9303986,25580765 +g1,15429:10889957,25580765 +g1,15429:11924770,25580765 +g1,15429:13143084,25580765 +g1,15429:16744942,25580765 +g1,15429:18324359,25580765 +g1,15429:20571588,25580765 +g1,15429:21532345,25580765 +g1,15429:25071944,25580765 +g1,15429:26659226,25580765 +g1,15429:28593848,25580765 +(1,15429:28593848,25580765:0,452978,115847 +r1,15495:31414097,25580765:2820249,568825,115847 +k1,15429:28593848,25580765:-2820249 +) +(1,15429:28593848,25580765:2820249,452978,115847 +k1,15429:28593848,25580765:3277 +h1,15429:31410820,25580765:0,411205,112570 +) +k1,15430:32583029,25580765:1116504 +g1,15430:32583029,25580765 +) +v1,15432:6630773,26265620:0,393216,0 +(1,15436:6630773,26599697:25952256,727293,196608 +g1,15436:6630773,26599697 +g1,15436:6630773,26599697 +g1,15436:6434165,26599697 +(1,15436:6434165,26599697:0,727293,196608 +r1,15495:32779637,26599697:26345472,923901,196608 +k1,15436:6434165,26599697:-26345472 +) +(1,15436:6434165,26599697:26345472,727293,196608 +[1,15436:6630773,26599697:25952256,530685,0 +(1,15434:6630773,26493451:25952256,424439,106246 +(1,15433:6630773,26493451:0,0,0 +g1,15433:6630773,26493451 +g1,15433:6630773,26493451 +g1,15433:6303093,26493451 +(1,15433:6303093,26493451:0,0,0 +) +g1,15433:6630773,26493451 +) +g1,15434:8622497,26493451 +g1,15434:9618359,26493451 +g1,15434:12605945,26493451 +g1,15434:14597669,26493451 +g1,15434:15261577,26493451 +g1,15434:17253301,26493451 +g1,15434:19576979,26493451 +g1,15434:20240887,26493451 +h1,15434:21900657,26493451:0,0,0 +k1,15434:32583029,26493451:10682372 +g1,15434:32583029,26493451 +) +] +) +g1,15436:32583029,26599697 +g1,15436:6630773,26599697 +g1,15436:6630773,26599697 +g1,15436:32583029,26599697 +g1,15436:32583029,26599697 +) +h1,15436:6630773,26796305:0,0,0 +(1,15440:6630773,27661385:25952256,513147,134348 +h1,15439:6630773,27661385:983040,0,0 +k1,15439:8951455,27661385:140955 +(1,15439:8951455,27661385:0,452978,115847 +r1,15495:11419992,27661385:2468537,568825,115847 +k1,15439:8951455,27661385:-2468537 +) +(1,15439:8951455,27661385:2468537,452978,115847 +k1,15439:8951455,27661385:3277 +h1,15439:11416715,27661385:0,411205,112570 +) +k1,15439:11560948,27661385:140956 +k1,15439:14156226,27661385:140955 +k1,15439:15244832,27661385:140955 +(1,15439:15244832,27661385:0,414482,115847 +r1,15495:15954810,27661385:709978,530329,115847 +k1,15439:15244832,27661385:-709978 +) +(1,15439:15244832,27661385:709978,414482,115847 +k1,15439:15244832,27661385:3277 +h1,15439:15951533,27661385:0,411205,112570 +) +k1,15439:16095766,27661385:140956 +k1,15439:18526549,27661385:140955 +k1,15439:19199001,27661385:140955 +k1,15439:21707773,27661385:140956 +k1,15439:23040173,27661385:140955 +k1,15439:25516831,27661385:140955 +k1,15439:26676872,27661385:140956 +k1,15439:29466137,27661385:140955 +k1,15439:32583029,27661385:0 +) +(1,15440:6630773,28526465:25952256,513147,126483 +g1,15439:7481430,28526465 +g1,15439:8699744,28526465 +g1,15439:10324381,28526465 +g1,15439:11878895,28526465 +g1,15439:12761009,28526465 +(1,15439:12761009,28526465:0,452978,115847 +r1,15495:14877834,28526465:2116825,568825,115847 +k1,15439:12761009,28526465:-2116825 +) +(1,15439:12761009,28526465:2116825,452978,115847 +k1,15439:12761009,28526465:3277 +h1,15439:14874557,28526465:0,411205,112570 +) +g1,15439:15077063,28526465 +g1,15439:15935584,28526465 +g1,15439:17153898,28526465 +k1,15440:32583029,28526465:13531864 +g1,15440:32583029,28526465 +) +v1,15442:6630773,29211320:0,393216,0 +(1,15450:6630773,30949841:25952256,2131737,196608 +g1,15450:6630773,30949841 +g1,15450:6630773,30949841 +g1,15450:6434165,30949841 +(1,15450:6434165,30949841:0,2131737,196608 +r1,15495:32779637,30949841:26345472,2328345,196608 +k1,15450:6434165,30949841:-26345472 +) +(1,15450:6434165,30949841:26345472,2131737,196608 +[1,15450:6630773,30949841:25952256,1935129,0 +(1,15444:6630773,29439151:25952256,424439,106246 +(1,15443:6630773,29439151:0,0,0 +g1,15443:6630773,29439151 +g1,15443:6630773,29439151 +g1,15443:6303093,29439151 +(1,15443:6303093,29439151:0,0,0 +) +g1,15443:6630773,29439151 +) +k1,15444:6630773,29439151:0 +h1,15444:10614221,29439151:0,0,0 +k1,15444:32583029,29439151:21968808 +g1,15444:32583029,29439151 +) +(1,15449:6630773,30255078:25952256,424439,112852 +(1,15446:6630773,30255078:0,0,0 +g1,15446:6630773,30255078 +g1,15446:6630773,30255078 +g1,15446:6303093,30255078 +(1,15446:6303093,30255078:0,0,0 +) +g1,15446:6630773,30255078 +) +g1,15449:7626635,30255078 +g1,15449:7958589,30255078 +g1,15449:8290543,30255078 +g1,15449:8622497,30255078 +g1,15449:8954451,30255078 +g1,15449:9286405,30255078 +g1,15449:10614221,30255078 +g1,15449:11942037,30255078 +g1,15449:13269853,30255078 +g1,15449:14597669,30255078 +g1,15449:15925485,30255078 +g1,15449:17253301,30255078 +g1,15449:18581117,30255078 +g1,15449:19908933,30255078 +g1,15449:21236749,30255078 +h1,15449:22232611,30255078:0,0,0 +k1,15449:32583029,30255078:10350418 +g1,15449:32583029,30255078 +) +(1,15449:6630773,30939933:25952256,407923,9908 +h1,15449:6630773,30939933:0,0,0 +g1,15449:7626635,30939933 +g1,15449:9286405,30939933 +g1,15449:9618359,30939933 +g1,15449:9950313,30939933 +g1,15449:10614221,30939933 +g1,15449:10946175,30939933 +g1,15449:11278129,30939933 +g1,15449:11942037,30939933 +g1,15449:12273991,30939933 +g1,15449:12605945,30939933 +g1,15449:13269853,30939933 +g1,15449:13601807,30939933 +g1,15449:13933761,30939933 +g1,15449:14597669,30939933 +g1,15449:14929623,30939933 +g1,15449:15261577,30939933 +g1,15449:15925485,30939933 +g1,15449:16257439,30939933 +g1,15449:16589393,30939933 +g1,15449:17253301,30939933 +g1,15449:17585255,30939933 +g1,15449:17917209,30939933 +g1,15449:18581117,30939933 +g1,15449:18913071,30939933 +g1,15449:19245025,30939933 +g1,15449:19908933,30939933 +g1,15449:20240887,30939933 +g1,15449:20572841,30939933 +g1,15449:21236749,30939933 +g1,15449:21568703,30939933 +h1,15449:22232611,30939933:0,0,0 +k1,15449:32583029,30939933:10350418 +g1,15449:32583029,30939933 +) +] +) +g1,15450:32583029,30949841 +g1,15450:6630773,30949841 +g1,15450:6630773,30949841 +g1,15450:32583029,30949841 +g1,15450:32583029,30949841 +) +h1,15450:6630773,31146449:0,0,0 +(1,15454:6630773,32011529:25952256,513147,134348 +h1,15453:6630773,32011529:983040,0,0 +k1,15453:9086056,32011529:275556 +k1,15453:12293037,32011529:275556 +k1,15453:13227884,32011529:275555 +k1,15453:14522525,32011529:275556 +(1,15453:14522525,32011529:0,414482,115847 +r1,15495:15232503,32011529:709978,530329,115847 +k1,15453:14522525,32011529:-709978 +) +(1,15453:14522525,32011529:709978,414482,115847 +k1,15453:14522525,32011529:3277 +h1,15453:15229226,32011529:0,411205,112570 +) +k1,15453:15508059,32011529:275556 +k1,15453:17743141,32011529:275556 +k1,15453:18550194,32011529:275556 +k1,15453:21124097,32011529:275555 +k1,15453:22199848,32011529:275556 +k1,15453:24257983,32011529:275556 +k1,15453:25065036,32011529:275556 +(1,15453:25065036,32011529:0,452978,115847 +r1,15495:27533573,32011529:2468537,568825,115847 +k1,15453:25065036,32011529:-2468537 +) +(1,15453:25065036,32011529:2468537,452978,115847 +k1,15453:25065036,32011529:3277 +h1,15453:27530296,32011529:0,411205,112570 +) +k1,15453:27809129,32011529:275556 +k1,15453:29156853,32011529:275555 +k1,15453:30220807,32011529:275556 +k1,15453:32051532,32011529:275556 +k1,15454:32583029,32011529:0 +) +(1,15454:6630773,32876609:25952256,513147,115847 +(1,15453:6630773,32876609:0,414482,115847 +r1,15495:7340751,32876609:709978,530329,115847 +k1,15453:6630773,32876609:-709978 +) +(1,15453:6630773,32876609:709978,414482,115847 +k1,15453:6630773,32876609:3277 +h1,15453:7337474,32876609:0,411205,112570 +) +k1,15453:7738801,32876609:224380 +k1,15453:8433074,32876609:224380 +k1,15453:9188951,32876609:224380 +k1,15453:11615341,32876609:224380 +k1,15453:12491149,32876609:224380 +k1,15453:13071389,32876609:224380 +k1,15453:15915898,32876609:224380 +k1,15453:18118154,32876609:224379 +k1,15453:19736485,32876609:224380 +k1,15453:20979950,32876609:224380 +k1,15453:23870335,32876609:224380 +k1,15453:24754007,32876609:224380 +k1,15453:26135097,32876609:224380 +k1,15453:29138204,32876609:224380 +k1,15453:31521340,32876609:224380 +(1,15453:31521340,32876609:0,414482,115847 +r1,15495:32583029,32876609:1061689,530329,115847 +k1,15453:31521340,32876609:-1061689 +) +(1,15453:31521340,32876609:1061689,414482,115847 +k1,15453:31521340,32876609:3277 +h1,15453:32579752,32876609:0,411205,112570 +) +k1,15453:32583029,32876609:0 +) +(1,15454:6630773,33741689:25952256,513147,134348 +k1,15453:10204826,33741689:261863 +k1,15453:11485774,33741689:261863 +k1,15453:13173045,33741689:261863 +k1,15453:15294164,33741689:261863 +k1,15453:16242189,33741689:261863 +k1,15453:16859912,33741689:261863 +k1,15453:19741904,33741689:261863 +k1,15453:21981645,33741689:261864 +k1,15453:22902800,33741689:261863 +k1,15453:25177929,33741689:261863 +k1,15453:26011921,33741689:261863 +k1,15453:28196610,33741689:261863 +k1,15453:29946796,33741689:261863 +k1,15453:31400104,33741689:261863 +k1,15453:32583029,33741689:0 +) +(1,15454:6630773,34606769:25952256,513147,126483 +g1,15453:8255410,34606769 +g1,15453:9646084,34606769 +g1,15453:10864398,34606769 +g1,15453:12332404,34606769 +g1,15453:13190925,34606769 +g1,15453:14409239,34606769 +k1,15454:32583029,34606769:16435776 +g1,15454:32583029,34606769 +) +v1,15456:6630773,35291624:0,393216,0 +(1,15491:6630773,45510161:25952256,10611753,196608 +g1,15491:6630773,45510161 +g1,15491:6630773,45510161 +g1,15491:6434165,45510161 +(1,15491:6434165,45510161:0,10611753,196608 +r1,15495:32779637,45510161:26345472,10808361,196608 +k1,15491:6434165,45510161:-26345472 +) +(1,15491:6434165,45510161:26345472,10611753,196608 +[1,15491:6630773,45510161:25952256,10415145,0 +(1,15458:6630773,35519455:25952256,424439,106246 +(1,15457:6630773,35519455:0,0,0 +g1,15457:6630773,35519455 +g1,15457:6630773,35519455 +g1,15457:6303093,35519455 +(1,15457:6303093,35519455:0,0,0 +) +g1,15457:6630773,35519455 +) +k1,15458:6630773,35519455:0 +h1,15458:10282267,35519455:0,0,0 +k1,15458:32583029,35519455:22300762 +g1,15458:32583029,35519455 +) +(1,15462:6630773,36316284:25952256,424439,79822 +(1,15460:6630773,36316284:0,0,0 +g1,15460:6630773,36316284 +g1,15460:6630773,36316284 +g1,15460:6303093,36316284 +(1,15460:6303093,36316284:0,0,0 +) +g1,15460:6630773,36316284 +) +g1,15462:7626635,36316284 +g1,15462:8954451,36316284 +h1,15462:11942036,36316284:0,0,0 +k1,15462:32583028,36316284:20640992 +g1,15462:32583028,36316284 +) +(1,15464:6630773,37113114:25952256,424439,106246 +(1,15463:6630773,37113114:0,0,0 +g1,15463:6630773,37113114 +g1,15463:6630773,37113114 +g1,15463:6303093,37113114 +(1,15463:6303093,37113114:0,0,0 +) +g1,15463:6630773,37113114 +) +k1,15464:6630773,37113114:0 +h1,15464:10614221,37113114:0,0,0 +k1,15464:32583029,37113114:21968808 +g1,15464:32583029,37113114 +) +(1,15468:6630773,37909943:25952256,424439,79822 +(1,15466:6630773,37909943:0,0,0 +g1,15466:6630773,37909943 +g1,15466:6630773,37909943 +g1,15466:6303093,37909943 +(1,15466:6303093,37909943:0,0,0 +) +g1,15466:6630773,37909943 +) +g1,15468:7626635,37909943 +g1,15468:8954451,37909943 +h1,15468:10282267,37909943:0,0,0 +k1,15468:32583029,37909943:22300762 +g1,15468:32583029,37909943 +) +(1,15470:6630773,38706772:25952256,424439,106246 +(1,15469:6630773,38706772:0,0,0 +g1,15469:6630773,38706772 +g1,15469:6630773,38706772 +g1,15469:6303093,38706772 +(1,15469:6303093,38706772:0,0,0 +) +g1,15469:6630773,38706772 +) +k1,15470:6630773,38706772:0 +h1,15470:10614221,38706772:0,0,0 +k1,15470:32583029,38706772:21968808 +g1,15470:32583029,38706772 +) +(1,15474:6630773,39503602:25952256,424439,79822 +(1,15472:6630773,39503602:0,0,0 +g1,15472:6630773,39503602 +g1,15472:6630773,39503602 +g1,15472:6303093,39503602 +(1,15472:6303093,39503602:0,0,0 +) +g1,15472:6630773,39503602 +) +g1,15474:7626635,39503602 +g1,15474:8954451,39503602 +h1,15474:10282267,39503602:0,0,0 +k1,15474:32583029,39503602:22300762 +g1,15474:32583029,39503602 +) +(1,15476:6630773,40300431:25952256,424439,106246 +(1,15475:6630773,40300431:0,0,0 +g1,15475:6630773,40300431 +g1,15475:6630773,40300431 +g1,15475:6303093,40300431 +(1,15475:6303093,40300431:0,0,0 +) +g1,15475:6630773,40300431 +) +k1,15476:6630773,40300431:0 +h1,15476:9950313,40300431:0,0,0 +k1,15476:32583029,40300431:22632716 +g1,15476:32583029,40300431 +) +(1,15480:6630773,41097260:25952256,431045,79822 +(1,15478:6630773,41097260:0,0,0 +g1,15478:6630773,41097260 +g1,15478:6630773,41097260 +g1,15478:6303093,41097260 +(1,15478:6303093,41097260:0,0,0 +) +g1,15478:6630773,41097260 +) +g1,15480:7626635,41097260 +g1,15480:7958589,41097260 +g1,15480:11942037,41097260 +g1,15480:14265715,41097260 +g1,15480:15925485,41097260 +g1,15480:17585255,41097260 +g1,15480:18581117,41097260 +g1,15480:20572841,41097260 +g1,15480:21236749,41097260 +g1,15480:21900657,41097260 +g1,15480:22564565,41097260 +g1,15480:23228473,41097260 +g1,15480:23892381,41097260 +g1,15480:24556289,41097260 +g1,15480:25220197,41097260 +g1,15480:25884105,41097260 +g1,15480:26548013,41097260 +h1,15480:27211921,41097260:0,0,0 +k1,15480:32583029,41097260:5371108 +g1,15480:32583029,41097260 +) +(1,15482:6630773,41894090:25952256,424439,106246 +(1,15481:6630773,41894090:0,0,0 +g1,15481:6630773,41894090 +g1,15481:6630773,41894090 +g1,15481:6303093,41894090 +(1,15481:6303093,41894090:0,0,0 +) +g1,15481:6630773,41894090 +) +k1,15482:6630773,41894090:0 +h1,15482:12273990,41894090:0,0,0 +k1,15482:32583030,41894090:20309040 +g1,15482:32583030,41894090 +) +(1,15490:6630773,42690919:25952256,431045,106246 +(1,15484:6630773,42690919:0,0,0 +g1,15484:6630773,42690919 +g1,15484:6630773,42690919 +g1,15484:6303093,42690919 +(1,15484:6303093,42690919:0,0,0 +) +g1,15484:6630773,42690919 +) +g1,15490:7626635,42690919 +h1,15490:8954451,42690919:0,0,0 +k1,15490:32583029,42690919:23628578 +g1,15490:32583029,42690919 +) +(1,15490:6630773,43375774:25952256,424439,79822 +h1,15490:6630773,43375774:0,0,0 +g1,15490:7626635,43375774 +g1,15490:8954451,43375774 +g1,15490:11610083,43375774 +g1,15490:14265715,43375774 +g1,15490:14597669,43375774 +g1,15490:14929623,43375774 +h1,15490:16589393,43375774:0,0,0 +k1,15490:32583029,43375774:15993636 +g1,15490:32583029,43375774 +) +(1,15490:6630773,44060629:25952256,398014,0 +h1,15490:6630773,44060629:0,0,0 +h1,15490:7294681,44060629:0,0,0 +k1,15490:32583029,44060629:25288348 +g1,15490:32583029,44060629 +) +(1,15490:6630773,44745484:25952256,431045,33029 +h1,15490:6630773,44745484:0,0,0 +g1,15490:7626635,44745484 +h1,15490:9618359,44745484:0,0,0 +k1,15490:32583029,44745484:22964670 +g1,15490:32583029,44745484 +) +(1,15490:6630773,45430339:25952256,424439,79822 +h1,15490:6630773,45430339:0,0,0 +g1,15490:7626635,45430339 +g1,15490:8954451,45430339 +h1,15490:10282267,45430339:0,0,0 +k1,15490:32583029,45430339:22300762 +g1,15490:32583029,45430339 +) +] +) +g1,15491:32583029,45510161 +g1,15491:6630773,45510161 +g1,15491:6630773,45510161 +g1,15491:32583029,45510161 +g1,15491:32583029,45510161 +) +h1,15491:6630773,45706769:0,0,0 +] +(1,15495:32583029,45706769:0,0,0 +g1,15495:32583029,45706769 +) +) +] +(1,15495:6630773,47279633:25952256,0,0 +h1,15495:6630773,47279633:25952256,0,0 +) +] +(1,15495:4262630,4025873:0,0,0 +[1,15495:-473656,4025873:0,0,0 +(1,15495:-473656,-710413:0,0,0 +(1,15495:-473656,-710413:0,0,0 +g1,15495:-473656,-710413 +) +g1,15495:-473656,-710413 +) +] ) ] -!29232 -}247 -Input:2637:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2638:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2639:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2640:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!29494 +}248 Input:2641:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2642:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2643:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2644:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2645:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{248 -[1,15572:4262630,47279633:28320399,43253760,0 -(1,15572:4262630,4025873:0,0,0 -[1,15572:-473656,4025873:0,0,0 -(1,15572:-473656,-710413:0,0,0 -(1,15572:-473656,-644877:0,0,0 -k1,15572:-473656,-644877:-65536 +{249 +[1,15570:4262630,47279633:28320399,43253760,0 +(1,15570:4262630,4025873:0,0,0 +[1,15570:-473656,4025873:0,0,0 +(1,15570:-473656,-710413:0,0,0 +(1,15570:-473656,-644877:0,0,0 +k1,15570:-473656,-644877:-65536 ) -(1,15572:-473656,4736287:0,0,0 -k1,15572:-473656,4736287:5209943 +(1,15570:-473656,4736287:0,0,0 +k1,15570:-473656,4736287:5209943 ) -g1,15572:-473656,-710413 +g1,15570:-473656,-710413 ) ] ) -[1,15572:6630773,47279633:25952256,43253760,0 -[1,15572:6630773,4812305:25952256,786432,0 -(1,15572:6630773,4812305:25952256,485622,11795 -(1,15572:6630773,4812305:25952256,485622,11795 -g1,15572:3078558,4812305 -[1,15572:3078558,4812305:0,0,0 -(1,15572:3078558,2439708:0,1703936,0 -k1,15572:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15572:2537886,2439708:1179648,16384,0 +[1,15570:6630773,47279633:25952256,43253760,0 +[1,15570:6630773,4812305:25952256,786432,0 +(1,15570:6630773,4812305:25952256,485622,11795 +(1,15570:6630773,4812305:25952256,485622,11795 +g1,15570:3078558,4812305 +[1,15570:3078558,4812305:0,0,0 +(1,15570:3078558,2439708:0,1703936,0 +k1,15570:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15570:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15572:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15570:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15572:3078558,4812305:0,0,0 -(1,15572:3078558,2439708:0,1703936,0 -g1,15572:29030814,2439708 -g1,15572:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15572:36151628,1915420:16384,1179648,0 +[1,15570:3078558,4812305:0,0,0 +(1,15570:3078558,2439708:0,1703936,0 +g1,15570:29030814,2439708 +g1,15570:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15570:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15572:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15570:37855564,2439708:1179648,16384,0 ) ) -k1,15572:3078556,2439708:-34777008 +k1,15570:3078556,2439708:-34777008 ) ] -[1,15572:3078558,4812305:0,0,0 -(1,15572:3078558,49800853:0,16384,2228224 -k1,15572:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15572:2537886,49800853:1179648,16384,0 +[1,15570:3078558,4812305:0,0,0 +(1,15570:3078558,49800853:0,16384,2228224 +k1,15570:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15570:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15572:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15570:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15572:3078558,4812305:0,0,0 -(1,15572:3078558,49800853:0,16384,2228224 -g1,15572:29030814,49800853 -g1,15572:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15572:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15572:37855564,49800853:1179648,16384,0 -) -) -k1,15572:3078556,49800853:-34777008 -) -] -g1,15572:6630773,4812305 -g1,15572:6630773,4812305 -g1,15572:8412041,4812305 -g1,15572:10435792,4812305 -k1,15572:31387652,4812305:20951860 -) -) -] -[1,15572:6630773,45706769:25952256,40108032,0 -(1,15572:6630773,45706769:25952256,40108032,0 -(1,15572:6630773,45706769:0,0,0 -g1,15572:6630773,45706769 -) -[1,15572:6630773,45706769:25952256,40108032,0 -(1,15497:6630773,6254097:25952256,513147,134348 -h1,15496:6630773,6254097:983040,0,0 -k1,15496:9357529,6254097:271777 -k1,15496:10563848,6254097:271776 -(1,15496:10563848,6254097:0,414482,115847 -r1,15572:12680673,6254097:2116825,530329,115847 -k1,15496:10563848,6254097:-2116825 -) -(1,15496:10563848,6254097:2116825,414482,115847 -k1,15496:10563848,6254097:3277 -h1,15496:12677396,6254097:0,411205,112570 -) -k1,15496:13126120,6254097:271777 -k1,15496:16156307,6254097:271777 -k1,15496:17044122,6254097:271777 -k1,15496:17904411,6254097:271776 -k1,15496:20878237,6254097:271777 -k1,15496:25868606,6254097:271777 -k1,15496:27529745,6254097:271776 -k1,15496:28749173,6254097:271777 -k1,15496:32583029,6254097:0 -) -(1,15497:6630773,7119177:25952256,513147,134348 -k1,15496:8011364,7119177:205531 -k1,15496:10378272,7119177:205531 -k1,15496:12164531,7119177:205531 -k1,15496:13029354,7119177:205531 -k1,15496:14972900,7119177:205531 -k1,15496:16023845,7119177:205531 -k1,15496:20503635,7119177:205532 -k1,15496:21532298,7119177:205531 -k1,15496:24193463,7119177:205531 -k1,15496:28006751,7119177:205531 -k1,15496:28898444,7119177:205531 -k1,15496:30382582,7119177:205531 -k1,15496:31274275,7119177:205531 -k1,15497:32583029,7119177:0 -) -(1,15497:6630773,7984257:25952256,505283,134348 -g1,15496:8453329,7984257 -g1,15496:10811969,7984257 -g1,15496:12694163,7984257 -g1,15496:13884952,7984257 -g1,15496:15614447,7984257 -g1,15496:17511714,7984257 -g1,15496:19100306,7984257 -g1,15496:20291095,7984257 -k1,15497:32583029,7984257:9937226 -g1,15497:32583029,7984257 -) -v1,15499:6630773,8849337:0,393216,0 -(1,15508:6630773,12076911:25952256,3620790,0 -g1,15508:6630773,12076911 -g1,15508:6237557,12076911 -r1,15572:6368629,12076911:131072,3620790,0 -g1,15508:6567858,12076911 -g1,15508:6764466,12076911 -[1,15508:6764466,12076911:25818563,3620790,0 -(1,15500:6764466,9157635:25818563,701514,196608 -(1,15499:6764466,9157635:0,701514,196608 -r1,15572:7761522,9157635:997056,898122,196608 -k1,15499:6764466,9157635:-997056 -) -(1,15499:6764466,9157635:997056,701514,196608 -) -k1,15499:7938182,9157635:176660 -k1,15499:8265862,9157635:327680 -k1,15499:12674836,9157635:176659 -k1,15499:13510788,9157635:176660 -k1,15499:14706533,9157635:176660 -k1,15499:19157451,9157635:176660 -k1,15499:19950148,9157635:176659 -k1,15499:21145893,9157635:176660 -k1,15499:24805792,9157635:176660 -k1,15499:26550072,9157635:176659 -k1,15499:29182366,9157635:176660 -k1,15499:32583029,9157635:0 -) -(1,15500:6764466,10022715:25818563,505283,134348 -k1,15499:8237405,10022715:205473 -k1,15499:10898511,10022715:205472 -k1,15499:13388569,10022715:205473 -k1,15499:14698323,10022715:205472 -k1,15499:15651562,10022715:205473 -k1,15499:18635105,10022715:205472 -k1,15499:19526740,10022715:205473 -k1,15499:20348250,10022715:205472 -(1,15499:20348250,10022715:0,452978,115847 -r1,15572:22816787,10022715:2468537,568825,115847 -k1,15499:20348250,10022715:-2468537 -) -(1,15499:20348250,10022715:2468537,452978,115847 -k1,15499:20348250,10022715:3277 -h1,15499:22813510,10022715:0,411205,112570 -) -k1,15499:23022260,10022715:205473 -k1,15499:25535910,10022715:205472 -k1,15499:27476776,10022715:205473 -k1,15499:30959703,10022715:205472 -k1,15500:32583029,10022715:0 -) -(1,15500:6764466,10887795:25818563,505283,134348 -g1,15499:8722681,10887795 -g1,15499:10113355,10887795 -k1,15500:32583029,10887795:19557910 -g1,15500:32583029,10887795 -) -v1,15502:6764466,11572650:0,393216,0 -(1,15506:6764466,11880303:25818563,700869,196608 -g1,15506:6764466,11880303 -g1,15506:6764466,11880303 -g1,15506:6567858,11880303 -(1,15506:6567858,11880303:0,700869,196608 -r1,15572:32779637,11880303:26211779,897477,196608 -k1,15506:6567857,11880303:-26211780 -) -(1,15506:6567858,11880303:26211779,700869,196608 -[1,15506:6764466,11880303:25818563,504261,0 -(1,15504:6764466,11800481:25818563,424439,79822 -(1,15503:6764466,11800481:0,0,0 -g1,15503:6764466,11800481 -g1,15503:6764466,11800481 -g1,15503:6436786,11800481 -(1,15503:6436786,11800481:0,0,0 -) -g1,15503:6764466,11800481 -) -g1,15504:11743775,11800481 -g1,15504:12739637,11800481 -g1,15504:15395269,11800481 -g1,15504:16059177,11800481 -g1,15504:17386993,11800481 -g1,15504:18050901,11800481 -g1,15504:18714809,11800481 -g1,15504:19378717,11800481 -h1,15504:19710671,11800481:0,0,0 -k1,15504:32583029,11800481:12872358 -g1,15504:32583029,11800481 -) -] -) -g1,15506:32583029,11880303 -g1,15506:6764466,11880303 -g1,15506:6764466,11880303 -g1,15506:32583029,11880303 -g1,15506:32583029,11880303 -) -h1,15506:6764466,12076911:0,0,0 -] -g1,15508:32583029,12076911 -) -h1,15508:6630773,12076911:0,0,0 -v1,15511:6630773,12761766:0,393216,0 -(1,15518:6630773,13885346:25952256,1516796,196608 -g1,15518:6630773,13885346 -g1,15518:6630773,13885346 -g1,15518:6434165,13885346 -(1,15518:6434165,13885346:0,1516796,196608 -r1,15572:32779637,13885346:26345472,1713404,196608 -k1,15518:6434165,13885346:-26345472 -) -(1,15518:6434165,13885346:26345472,1516796,196608 -[1,15518:6630773,13885346:25952256,1320188,0 -(1,15513:6630773,12989597:25952256,424439,79822 -(1,15512:6630773,12989597:0,0,0 -g1,15512:6630773,12989597 -g1,15512:6630773,12989597 -g1,15512:6303093,12989597 -(1,15512:6303093,12989597:0,0,0 -) -g1,15512:6630773,12989597 -) -k1,15513:6630773,12989597:0 -h1,15513:13601806,12989597:0,0,0 -k1,15513:32583030,12989597:18981224 -g1,15513:32583030,12989597 -) -(1,15517:6630773,13805524:25952256,424439,79822 -(1,15515:6630773,13805524:0,0,0 -g1,15515:6630773,13805524 -g1,15515:6630773,13805524 -g1,15515:6303093,13805524 -(1,15515:6303093,13805524:0,0,0 -) -g1,15515:6630773,13805524 -) -g1,15517:7626635,13805524 -g1,15517:8954451,13805524 -h1,15517:10282267,13805524:0,0,0 -k1,15517:32583029,13805524:22300762 -g1,15517:32583029,13805524 -) -] -) -g1,15518:32583029,13885346 -g1,15518:6630773,13885346 -g1,15518:6630773,13885346 -g1,15518:32583029,13885346 -g1,15518:32583029,13885346 -) -h1,15518:6630773,14081954:0,0,0 -v1,15524:6630773,14766809:0,393216,0 -(1,15528:6630773,15100886:25952256,727293,196608 -g1,15528:6630773,15100886 -g1,15528:6630773,15100886 -g1,15528:6434165,15100886 -(1,15528:6434165,15100886:0,727293,196608 -r1,15572:32779637,15100886:26345472,923901,196608 -k1,15528:6434165,15100886:-26345472 -) -(1,15528:6434165,15100886:26345472,727293,196608 -[1,15528:6630773,15100886:25952256,530685,0 -(1,15526:6630773,14994640:25952256,424439,106246 -(1,15525:6630773,14994640:0,0,0 -g1,15525:6630773,14994640 -g1,15525:6630773,14994640 -g1,15525:6303093,14994640 -(1,15525:6303093,14994640:0,0,0 -) -g1,15525:6630773,14994640 -) -k1,15526:6630773,14994640:0 -h1,15526:13269852,14994640:0,0,0 -k1,15526:32583028,14994640:19313176 -g1,15526:32583028,14994640 -) -] -) -g1,15528:32583029,15100886 -g1,15528:6630773,15100886 -g1,15528:6630773,15100886 -g1,15528:32583029,15100886 -g1,15528:32583029,15100886 -) -h1,15528:6630773,15297494:0,0,0 -(1,15531:6630773,24446696:25952256,9083666,0 -k1,15531:10523651,24446696:3892878 -h1,15530:10523651,24446696:0,0,0 -(1,15530:10523651,24446696:18166500,9083666,0 -(1,15530:10523651,24446696:18167376,9083688,0 -(1,15530:10523651,24446696:18167376,9083688,0 -(1,15530:10523651,24446696:0,9083688,0 -(1,15530:10523651,24446696:0,14208860,0 -(1,15530:10523651,24446696:28417720,14208860,0 -) -k1,15530:10523651,24446696:-28417720 -) -) -g1,15530:28691027,24446696 -) -) -) -g1,15531:28690151,24446696 -k1,15531:32583029,24446696:3892878 -) -v1,15538:6630773,25311776:0,393216,0 -(1,15549:6630773,30053464:25952256,5134904,0 -g1,15549:6630773,30053464 -g1,15549:6237557,30053464 -r1,15572:6368629,30053464:131072,5134904,0 -g1,15549:6567858,30053464 -g1,15549:6764466,30053464 -[1,15549:6764466,30053464:25818563,5134904,0 -(1,15539:6764466,25584253:25818563,665693,196608 -(1,15538:6764466,25584253:0,665693,196608 -r1,15572:7868133,25584253:1103667,862301,196608 -k1,15538:6764466,25584253:-1103667 -) -(1,15538:6764466,25584253:1103667,665693,196608 -) -k1,15538:8031588,25584253:163455 -k1,15538:9757806,25584253:327680 -k1,15538:12313326,25584253:163456 -k1,15538:13495866,25584253:163455 -k1,15538:16590746,25584253:163455 -k1,15538:17413494,25584253:163456 -k1,15538:18596034,25584253:163455 -(1,15538:18596034,25584253:0,452978,115847 -r1,15572:23526554,25584253:4930520,568825,115847 -k1,15538:18596034,25584253:-4930520 -) -(1,15538:18596034,25584253:4930520,452978,115847 -k1,15538:18596034,25584253:3277 -h1,15538:23523277,25584253:0,411205,112570 -) -k1,15538:23690010,25584253:163456 -k1,15538:25812991,25584253:163455 -k1,15538:26866425,25584253:163455 -k1,15538:28048966,25584253:163456 -(1,15538:28048966,25584253:0,414482,115847 -r1,15572:30165791,25584253:2116825,530329,115847 -k1,15538:28048966,25584253:-2116825 -) -(1,15538:28048966,25584253:2116825,414482,115847 -k1,15538:28048966,25584253:3277 -h1,15538:30162514,25584253:0,411205,112570 -) -k1,15538:30329246,25584253:163455 -k1,15538:32583029,25584253:0 -) -(1,15539:6764466,26449333:25818563,513147,134348 -k1,15538:8239710,26449333:283799 -k1,15538:11254394,26449333:283799 -k1,15538:12868575,26449333:283800 -k1,15538:14343819,26449333:283799 -k1,15538:15924576,26449333:283799 -k1,15538:16666472,26449333:283799 -k1,15538:19023830,26449333:283799 -k1,15538:19990515,26449333:283800 -k1,15538:21340585,26449333:283799 -k1,15538:23192005,26449333:283799 -k1,15538:24760310,26449333:283799 -k1,15538:25703401,26449333:283799 -k1,15538:27006286,26449333:283800 -k1,15538:29249611,26449333:283799 -(1,15538:29249611,26449333:0,414482,115847 -r1,15572:31014724,26449333:1765113,530329,115847 -k1,15538:29249611,26449333:-1765113 -) -(1,15538:29249611,26449333:1765113,414482,115847 -k1,15538:29249611,26449333:3277 -h1,15538:31011447,26449333:0,411205,112570 -) -k1,15538:31298523,26449333:283799 -k1,15538:32583029,26449333:0 -) -(1,15539:6764466,27314413:25818563,513147,126483 -k1,15538:7862412,27314413:255808 -k1,15538:10468341,27314413:255808 -k1,15538:12753144,27314413:255808 -k1,15538:15802096,27314413:255808 -k1,15538:18426375,27314413:255808 -k1,15538:20107591,27314413:255808 -k1,15538:22208236,27314413:255807 -(1,15538:22208236,27314413:0,414482,115847 -r1,15572:24325061,27314413:2116825,530329,115847 -k1,15538:22208236,27314413:-2116825 -) -(1,15538:22208236,27314413:2116825,414482,115847 -k1,15538:22208236,27314413:3277 -h1,15538:24321784,27314413:0,411205,112570 -) -k1,15538:24754539,27314413:255808 -k1,15538:27483020,27314413:255808 -k1,15538:28398120,27314413:255808 -k1,15538:29673013,27314413:255808 -k1,15538:31318184,27314413:255808 -k1,15538:32583029,27314413:0 -) -(1,15539:6764466,28179493:25818563,505283,7863 -g1,15538:9722105,28179493 -g1,15538:10537372,28179493 -k1,15539:32583029,28179493:21578386 -g1,15539:32583029,28179493 -) -v1,15541:6764466,28864348:0,393216,0 -(1,15546:6764466,29856856:25818563,1385724,196608 -g1,15546:6764466,29856856 -g1,15546:6764466,29856856 -g1,15546:6567858,29856856 -(1,15546:6567858,29856856:0,1385724,196608 -r1,15572:32779637,29856856:26211779,1582332,196608 -k1,15546:6567857,29856856:-26211780 -) -(1,15546:6567858,29856856:26211779,1385724,196608 -[1,15546:6764466,29856856:25818563,1189116,0 -(1,15543:6764466,29092179:25818563,424439,79822 -(1,15542:6764466,29092179:0,0,0 -g1,15542:6764466,29092179 -g1,15542:6764466,29092179 -g1,15542:6436786,29092179 -(1,15542:6436786,29092179:0,0,0 -) -g1,15542:6764466,29092179 -) -k1,15543:6764466,29092179:0 -h1,15543:13071591,29092179:0,0,0 -k1,15543:32583029,29092179:19511438 -g1,15543:32583029,29092179 -) -(1,15544:6764466,29777034:25818563,424439,79822 -h1,15544:6764466,29777034:0,0,0 -k1,15544:6764466,29777034:0 -h1,15544:15395268,29777034:0,0,0 -k1,15544:32583028,29777034:17187760 -g1,15544:32583028,29777034 -) -] -) -g1,15546:32583029,29856856 -g1,15546:6764466,29856856 -g1,15546:6764466,29856856 -g1,15546:32583029,29856856 -g1,15546:32583029,29856856 -) -h1,15546:6764466,30053464:0,0,0 -] -g1,15549:32583029,30053464 -) -h1,15549:6630773,30053464:0,0,0 -(1,15552:6630773,30918544:25952256,513147,126483 -h1,15551:6630773,30918544:983040,0,0 -k1,15551:9709392,30918544:400163 -k1,15551:11534963,30918544:400163 -k1,15551:13779963,30918544:400162 -k1,15551:14839418,30918544:400163 -k1,15551:19311333,30918544:400163 -k1,15551:22006567,30918544:400163 -k1,15551:24174891,30918544:400163 -k1,15551:27400966,30918544:400163 -k1,15551:28413890,30918544:400162 -k1,15551:31576396,30918544:400163 -k1,15552:32583029,30918544:0 -) -(1,15552:6630773,31783624:25952256,505283,134348 -k1,15551:9840136,31783624:241893 -k1,15551:13265113,31783624:241893 -k1,15551:14352420,31783624:241893 -k1,15551:18538270,31783624:241893 -k1,15551:20660392,31783624:241894 -k1,15551:23797666,31783624:241893 -k1,15551:26674762,31783624:241893 -k1,15551:28054360,31783624:241893 -k1,15551:29487698,31783624:241893 -k1,15551:31391584,31783624:241893 -k1,15551:32583029,31783624:0 -) -(1,15552:6630773,32648704:25952256,513147,134348 -k1,15551:10423396,32648704:167827 -k1,15551:11610307,32648704:167826 -k1,15551:13304468,32648704:167827 -k1,15551:18033600,32648704:167826 -k1,15551:19010797,32648704:167827 -k1,15551:20875350,32648704:167826 -k1,15551:23317276,32648704:167827 -k1,15551:25396133,32648704:167827 -k1,15551:27218743,32648704:167826 -k1,15551:28490852,32648704:167827 -k1,15551:29406444,32648704:167826 -k1,15551:31417799,32648704:167827 -k1,15552:32583029,32648704:0 -) -(1,15552:6630773,33513784:25952256,513147,134348 -k1,15551:8294568,33513784:228557 -k1,15551:11349037,33513784:228557 -k1,15551:12769039,33513784:228557 -k1,15551:16111866,33513784:228556 -k1,15551:18572579,33513784:228557 -k1,15551:20072534,33513784:228557 -k1,15551:23285601,33513784:228557 -k1,15551:24165586,33513784:228557 -k1,15551:25413228,33513784:228557 -k1,15551:28196377,33513784:228556 -k1,15551:29084226,33513784:228557 -k1,15551:30738191,33513784:228557 -k1,15551:32583029,33513784:0 -) -(1,15552:6630773,34378864:25952256,513147,126483 -g1,15551:8219365,34378864 -g1,15551:8950091,34378864 -g1,15551:9800748,34378864 -g1,15551:12715789,34378864 -g1,15551:13934103,34378864 -g1,15551:16836037,34378864 -g1,15551:21007403,34378864 -g1,15551:21865924,34378864 -g1,15551:23761880,34378864 -k1,15552:32583029,34378864:4841148 -g1,15552:32583029,34378864 -) -(1,15554:6630773,35243944:25952256,513147,126483 -h1,15553:6630773,35243944:983040,0,0 -k1,15553:8659296,35243944:143052 -k1,15553:11354975,35243944:143052 -k1,15553:14482537,35243944:143052 -k1,15553:15277018,35243944:143053 -k1,15553:16845478,35243944:143052 -k1,15553:18833368,35243944:143052 -k1,15553:23880479,35243944:143052 -k1,15553:25878200,35243944:143052 -k1,15553:26830622,35243944:143052 -k1,15553:28929213,35243944:142997 -k1,15553:30304342,35243944:143052 -k1,15553:32583029,35243944:0 -) -(1,15554:6630773,36109024:25952256,505283,134348 -h1,15553:7980159,36109024:0,0,0 -k1,15553:8182615,36109024:202456 -k1,15553:9194442,36109024:202457 -h1,15553:10389819,36109024:0,0,0 -k1,15553:10973039,36109024:202456 -k1,15553:11706992,36109024:202456 -k1,15553:13064189,36109024:202453 -k1,15553:16232804,36109024:202456 -k1,15553:17626706,36109024:202457 -k1,15553:19734949,36109024:202456 -k1,15553:24667794,36109024:202456 -k1,15553:26605643,36109024:202456 -k1,15553:28956370,36109024:202457 -k1,15553:28956370,36109024:0 -k1,15553:29158826,36109024:202456 -k1,15553:29848867,36109024:202453 -k1,15553:32583029,36109024:0 -) -(1,15554:6630773,36974104:25952256,513147,126483 -k1,15553:9299236,36974104:221348 -k1,15553:10179876,36974104:221348 -k1,15553:10799682,36974104:221347 -k1,15553:13626086,36974104:221348 -k1,15553:14866519,36974104:221348 -k1,15553:18179856,36974104:221348 -k1,15553:21390955,36974104:221347 -k1,15553:23624258,36974104:221348 -k1,15553:24864691,36974104:221348 -k1,15553:28300580,36974104:221348 -k1,15553:29181219,36974104:221347 -k1,15553:30421652,36974104:221348 -k1,15553:32583029,36974104:0 -) -(1,15554:6630773,37839184:25952256,505283,134348 -k1,15553:8777375,37839184:235572 -k1,15553:10204392,37839184:235572 -k1,15553:10795824,37839184:235572 -k1,15553:14145667,37839184:235572 -k1,15553:16109423,37839184:235572 -k1,15553:18600745,37839184:235573 -k1,15553:19522479,37839184:235572 -k1,15553:20113911,37839184:235572 -k1,15553:23633492,37839184:235572 -k1,15553:25561204,37839184:235572 -k1,15553:29704688,37839184:235572 -k1,15553:32583029,37839184:0 -) -(1,15554:6630773,38704264:25952256,513147,126483 -k1,15553:7437726,38704264:179118 -k1,15553:8635929,38704264:179118 -k1,15553:10092344,38704264:179118 -k1,15553:10802959,38704264:179118 -k1,15553:14191375,38704264:179118 -k1,15553:15021921,38704264:179118 -k1,15553:15948805,38704264:179118 -k1,15553:17996353,38704264:179117 -k1,15553:19459977,38704264:179118 -k1,15553:20658180,38704264:179118 -k1,15553:22409507,38704264:179118 -k1,15553:24403317,38704264:179118 -k1,15553:25198473,38704264:179118 -k1,15553:26396676,38704264:179118 -k1,15553:29338137,38704264:179118 -k1,15553:31591469,38704264:179118 -k1,15553:32583029,38704264:0 -) -(1,15554:6630773,39569344:25952256,513147,126483 -g1,15553:9766015,39569344 -g1,15553:11156689,39569344 -g1,15553:13139153,39569344 -g1,15553:14286033,39569344 -g1,15553:15936884,39569344 -k1,15554:32583029,39569344:15316420 -g1,15554:32583029,39569344 -) -v1,15558:6630773,40254199:0,393216,0 -(1,15563:6630773,41273131:25952256,1412148,196608 -g1,15563:6630773,41273131 -g1,15563:6630773,41273131 -g1,15563:6434165,41273131 -(1,15563:6434165,41273131:0,1412148,196608 -r1,15572:32779637,41273131:26345472,1608756,196608 -k1,15563:6434165,41273131:-26345472 -) -(1,15563:6434165,41273131:26345472,1412148,196608 -[1,15563:6630773,41273131:25952256,1215540,0 -(1,15560:6630773,40482030:25952256,424439,86428 -(1,15559:6630773,40482030:0,0,0 -g1,15559:6630773,40482030 -g1,15559:6630773,40482030 -g1,15559:6303093,40482030 -(1,15559:6303093,40482030:0,0,0 -) -g1,15559:6630773,40482030 -) -g1,15560:10282266,40482030 -g1,15560:11278128,40482030 -g1,15560:17917207,40482030 -g1,15560:20904792,40482030 -g1,15560:21568700,40482030 -h1,15560:22232608,40482030:0,0,0 -k1,15560:32583029,40482030:10350421 -g1,15560:32583029,40482030 -) -(1,15561:6630773,41166885:25952256,424439,106246 -h1,15561:6630773,41166885:0,0,0 -k1,15561:6630773,41166885:0 -h1,15561:11942036,41166885:0,0,0 -k1,15561:32583028,41166885:20640992 -g1,15561:32583028,41166885 -) -] -) -g1,15563:32583029,41273131 -g1,15563:6630773,41273131 -g1,15563:6630773,41273131 -g1,15563:32583029,41273131 -g1,15563:32583029,41273131 -) -h1,15563:6630773,41469739:0,0,0 -] -(1,15572:32583029,45706769:0,0,0 -g1,15572:32583029,45706769 -) -) -] -(1,15572:6630773,47279633:25952256,0,0 -h1,15572:6630773,47279633:25952256,0,0 -) -] -(1,15572:4262630,4025873:0,0,0 -[1,15572:-473656,4025873:0,0,0 -(1,15572:-473656,-710413:0,0,0 -(1,15572:-473656,-710413:0,0,0 -g1,15572:-473656,-710413 -) -g1,15572:-473656,-710413 +[1,15570:3078558,4812305:0,0,0 +(1,15570:3078558,49800853:0,16384,2228224 +g1,15570:29030814,49800853 +g1,15570:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15570:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15570:37855564,49800853:1179648,16384,0 +) +) +k1,15570:3078556,49800853:-34777008 +) +] +g1,15570:6630773,4812305 +g1,15570:6630773,4812305 +g1,15570:8412041,4812305 +g1,15570:10435792,4812305 +k1,15570:31387652,4812305:20951860 +) +) +] +[1,15570:6630773,45706769:25952256,40108032,0 +(1,15570:6630773,45706769:25952256,40108032,0 +(1,15570:6630773,45706769:0,0,0 +g1,15570:6630773,45706769 +) +[1,15570:6630773,45706769:25952256,40108032,0 +(1,15495:6630773,6254097:25952256,513147,134348 +h1,15494:6630773,6254097:983040,0,0 +k1,15494:9357529,6254097:271777 +k1,15494:10563848,6254097:271776 +(1,15494:10563848,6254097:0,414482,115847 +r1,15570:12680673,6254097:2116825,530329,115847 +k1,15494:10563848,6254097:-2116825 +) +(1,15494:10563848,6254097:2116825,414482,115847 +k1,15494:10563848,6254097:3277 +h1,15494:12677396,6254097:0,411205,112570 +) +k1,15494:13126120,6254097:271777 +k1,15494:16156307,6254097:271777 +k1,15494:17044122,6254097:271777 +k1,15494:17904411,6254097:271776 +k1,15494:20878237,6254097:271777 +k1,15494:25868606,6254097:271777 +k1,15494:27529745,6254097:271776 +k1,15494:28749173,6254097:271777 +k1,15494:32583029,6254097:0 +) +(1,15495:6630773,7119177:25952256,513147,134348 +k1,15494:8011364,7119177:205531 +k1,15494:10378272,7119177:205531 +k1,15494:12164531,7119177:205531 +k1,15494:13029354,7119177:205531 +k1,15494:14972900,7119177:205531 +k1,15494:16023845,7119177:205531 +k1,15494:20503635,7119177:205532 +k1,15494:21532298,7119177:205531 +k1,15494:24193463,7119177:205531 +k1,15494:28006751,7119177:205531 +k1,15494:28898444,7119177:205531 +k1,15494:30382582,7119177:205531 +k1,15494:31274275,7119177:205531 +k1,15495:32583029,7119177:0 +) +(1,15495:6630773,7984257:25952256,505283,134348 +g1,15494:8453329,7984257 +g1,15494:10811969,7984257 +g1,15494:12694163,7984257 +g1,15494:13884952,7984257 +g1,15494:15614447,7984257 +g1,15494:17511714,7984257 +g1,15494:19100306,7984257 +g1,15494:20291095,7984257 +k1,15495:32583029,7984257:9937226 +g1,15495:32583029,7984257 +) +v1,15497:6630773,8849337:0,393216,0 +(1,15506:6630773,12076911:25952256,3620790,0 +g1,15506:6630773,12076911 +g1,15506:6237557,12076911 +r1,15570:6368629,12076911:131072,3620790,0 +g1,15506:6567858,12076911 +g1,15506:6764466,12076911 +[1,15506:6764466,12076911:25818563,3620790,0 +(1,15498:6764466,9157635:25818563,701514,196608 +(1,15497:6764466,9157635:0,701514,196608 +r1,15570:7761522,9157635:997056,898122,196608 +k1,15497:6764466,9157635:-997056 +) +(1,15497:6764466,9157635:997056,701514,196608 +) +k1,15497:7938182,9157635:176660 +k1,15497:8265862,9157635:327680 +k1,15497:12674836,9157635:176659 +k1,15497:13510788,9157635:176660 +k1,15497:14706533,9157635:176660 +k1,15497:19157451,9157635:176660 +k1,15497:19950148,9157635:176659 +k1,15497:21145893,9157635:176660 +k1,15497:24805792,9157635:176660 +k1,15497:26550072,9157635:176659 +k1,15497:29182366,9157635:176660 +k1,15497:32583029,9157635:0 +) +(1,15498:6764466,10022715:25818563,505283,134348 +k1,15497:8237405,10022715:205473 +k1,15497:10898511,10022715:205472 +k1,15497:13388569,10022715:205473 +k1,15497:14698323,10022715:205472 +k1,15497:15651562,10022715:205473 +k1,15497:18635105,10022715:205472 +k1,15497:19526740,10022715:205473 +k1,15497:20348250,10022715:205472 +(1,15497:20348250,10022715:0,452978,115847 +r1,15570:22816787,10022715:2468537,568825,115847 +k1,15497:20348250,10022715:-2468537 +) +(1,15497:20348250,10022715:2468537,452978,115847 +k1,15497:20348250,10022715:3277 +h1,15497:22813510,10022715:0,411205,112570 +) +k1,15497:23022260,10022715:205473 +k1,15497:25535910,10022715:205472 +k1,15497:27476776,10022715:205473 +k1,15497:30959703,10022715:205472 +k1,15498:32583029,10022715:0 +) +(1,15498:6764466,10887795:25818563,505283,134348 +g1,15497:8722681,10887795 +g1,15497:10113355,10887795 +k1,15498:32583029,10887795:19557910 +g1,15498:32583029,10887795 +) +v1,15500:6764466,11572650:0,393216,0 +(1,15504:6764466,11880303:25818563,700869,196608 +g1,15504:6764466,11880303 +g1,15504:6764466,11880303 +g1,15504:6567858,11880303 +(1,15504:6567858,11880303:0,700869,196608 +r1,15570:32779637,11880303:26211779,897477,196608 +k1,15504:6567857,11880303:-26211780 +) +(1,15504:6567858,11880303:26211779,700869,196608 +[1,15504:6764466,11880303:25818563,504261,0 +(1,15502:6764466,11800481:25818563,424439,79822 +(1,15501:6764466,11800481:0,0,0 +g1,15501:6764466,11800481 +g1,15501:6764466,11800481 +g1,15501:6436786,11800481 +(1,15501:6436786,11800481:0,0,0 +) +g1,15501:6764466,11800481 +) +g1,15502:11743775,11800481 +g1,15502:12739637,11800481 +g1,15502:15395269,11800481 +g1,15502:16059177,11800481 +g1,15502:17386993,11800481 +g1,15502:18050901,11800481 +g1,15502:18714809,11800481 +g1,15502:19378717,11800481 +h1,15502:19710671,11800481:0,0,0 +k1,15502:32583029,11800481:12872358 +g1,15502:32583029,11800481 +) +] +) +g1,15504:32583029,11880303 +g1,15504:6764466,11880303 +g1,15504:6764466,11880303 +g1,15504:32583029,11880303 +g1,15504:32583029,11880303 +) +h1,15504:6764466,12076911:0,0,0 +] +g1,15506:32583029,12076911 +) +h1,15506:6630773,12076911:0,0,0 +v1,15509:6630773,12761766:0,393216,0 +(1,15516:6630773,13885346:25952256,1516796,196608 +g1,15516:6630773,13885346 +g1,15516:6630773,13885346 +g1,15516:6434165,13885346 +(1,15516:6434165,13885346:0,1516796,196608 +r1,15570:32779637,13885346:26345472,1713404,196608 +k1,15516:6434165,13885346:-26345472 +) +(1,15516:6434165,13885346:26345472,1516796,196608 +[1,15516:6630773,13885346:25952256,1320188,0 +(1,15511:6630773,12989597:25952256,424439,79822 +(1,15510:6630773,12989597:0,0,0 +g1,15510:6630773,12989597 +g1,15510:6630773,12989597 +g1,15510:6303093,12989597 +(1,15510:6303093,12989597:0,0,0 +) +g1,15510:6630773,12989597 +) +k1,15511:6630773,12989597:0 +h1,15511:13601806,12989597:0,0,0 +k1,15511:32583030,12989597:18981224 +g1,15511:32583030,12989597 +) +(1,15515:6630773,13805524:25952256,424439,79822 +(1,15513:6630773,13805524:0,0,0 +g1,15513:6630773,13805524 +g1,15513:6630773,13805524 +g1,15513:6303093,13805524 +(1,15513:6303093,13805524:0,0,0 +) +g1,15513:6630773,13805524 +) +g1,15515:7626635,13805524 +g1,15515:8954451,13805524 +h1,15515:10282267,13805524:0,0,0 +k1,15515:32583029,13805524:22300762 +g1,15515:32583029,13805524 +) +] +) +g1,15516:32583029,13885346 +g1,15516:6630773,13885346 +g1,15516:6630773,13885346 +g1,15516:32583029,13885346 +g1,15516:32583029,13885346 +) +h1,15516:6630773,14081954:0,0,0 +v1,15522:6630773,14766809:0,393216,0 +(1,15526:6630773,15100886:25952256,727293,196608 +g1,15526:6630773,15100886 +g1,15526:6630773,15100886 +g1,15526:6434165,15100886 +(1,15526:6434165,15100886:0,727293,196608 +r1,15570:32779637,15100886:26345472,923901,196608 +k1,15526:6434165,15100886:-26345472 +) +(1,15526:6434165,15100886:26345472,727293,196608 +[1,15526:6630773,15100886:25952256,530685,0 +(1,15524:6630773,14994640:25952256,424439,106246 +(1,15523:6630773,14994640:0,0,0 +g1,15523:6630773,14994640 +g1,15523:6630773,14994640 +g1,15523:6303093,14994640 +(1,15523:6303093,14994640:0,0,0 +) +g1,15523:6630773,14994640 +) +k1,15524:6630773,14994640:0 +h1,15524:13269852,14994640:0,0,0 +k1,15524:32583028,14994640:19313176 +g1,15524:32583028,14994640 +) +] +) +g1,15526:32583029,15100886 +g1,15526:6630773,15100886 +g1,15526:6630773,15100886 +g1,15526:32583029,15100886 +g1,15526:32583029,15100886 +) +h1,15526:6630773,15297494:0,0,0 +(1,15529:6630773,24446696:25952256,9083666,0 +k1,15529:10523651,24446696:3892878 +h1,15528:10523651,24446696:0,0,0 +(1,15528:10523651,24446696:18166500,9083666,0 +(1,15528:10523651,24446696:18167376,9083688,0 +(1,15528:10523651,24446696:18167376,9083688,0 +(1,15528:10523651,24446696:0,9083688,0 +(1,15528:10523651,24446696:0,14208860,0 +(1,15528:10523651,24446696:28417720,14208860,0 +) +k1,15528:10523651,24446696:-28417720 +) +) +g1,15528:28691027,24446696 +) +) +) +g1,15529:28690151,24446696 +k1,15529:32583029,24446696:3892878 +) +v1,15536:6630773,25311776:0,393216,0 +(1,15547:6630773,30053464:25952256,5134904,0 +g1,15547:6630773,30053464 +g1,15547:6237557,30053464 +r1,15570:6368629,30053464:131072,5134904,0 +g1,15547:6567858,30053464 +g1,15547:6764466,30053464 +[1,15547:6764466,30053464:25818563,5134904,0 +(1,15537:6764466,25584253:25818563,665693,196608 +(1,15536:6764466,25584253:0,665693,196608 +r1,15570:7868133,25584253:1103667,862301,196608 +k1,15536:6764466,25584253:-1103667 +) +(1,15536:6764466,25584253:1103667,665693,196608 +) +k1,15536:8031588,25584253:163455 +k1,15536:9757806,25584253:327680 +k1,15536:12313326,25584253:163456 +k1,15536:13495866,25584253:163455 +k1,15536:16590746,25584253:163455 +k1,15536:17413494,25584253:163456 +k1,15536:18596034,25584253:163455 +(1,15536:18596034,25584253:0,452978,115847 +r1,15570:23526554,25584253:4930520,568825,115847 +k1,15536:18596034,25584253:-4930520 +) +(1,15536:18596034,25584253:4930520,452978,115847 +k1,15536:18596034,25584253:3277 +h1,15536:23523277,25584253:0,411205,112570 +) +k1,15536:23690010,25584253:163456 +k1,15536:25812991,25584253:163455 +k1,15536:26866425,25584253:163455 +k1,15536:28048966,25584253:163456 +(1,15536:28048966,25584253:0,414482,115847 +r1,15570:30165791,25584253:2116825,530329,115847 +k1,15536:28048966,25584253:-2116825 +) +(1,15536:28048966,25584253:2116825,414482,115847 +k1,15536:28048966,25584253:3277 +h1,15536:30162514,25584253:0,411205,112570 +) +k1,15536:30329246,25584253:163455 +k1,15536:32583029,25584253:0 +) +(1,15537:6764466,26449333:25818563,513147,134348 +k1,15536:8239710,26449333:283799 +k1,15536:11254394,26449333:283799 +k1,15536:12868575,26449333:283800 +k1,15536:14343819,26449333:283799 +k1,15536:15924576,26449333:283799 +k1,15536:16666472,26449333:283799 +k1,15536:19023830,26449333:283799 +k1,15536:19990515,26449333:283800 +k1,15536:21340585,26449333:283799 +k1,15536:23192005,26449333:283799 +k1,15536:24760310,26449333:283799 +k1,15536:25703401,26449333:283799 +k1,15536:27006286,26449333:283800 +k1,15536:29249611,26449333:283799 +(1,15536:29249611,26449333:0,414482,115847 +r1,15570:31014724,26449333:1765113,530329,115847 +k1,15536:29249611,26449333:-1765113 +) +(1,15536:29249611,26449333:1765113,414482,115847 +k1,15536:29249611,26449333:3277 +h1,15536:31011447,26449333:0,411205,112570 +) +k1,15536:31298523,26449333:283799 +k1,15536:32583029,26449333:0 +) +(1,15537:6764466,27314413:25818563,513147,126483 +k1,15536:7862412,27314413:255808 +k1,15536:10468341,27314413:255808 +k1,15536:12753144,27314413:255808 +k1,15536:15802096,27314413:255808 +k1,15536:18426375,27314413:255808 +k1,15536:20107591,27314413:255808 +k1,15536:22208236,27314413:255807 +(1,15536:22208236,27314413:0,414482,115847 +r1,15570:24325061,27314413:2116825,530329,115847 +k1,15536:22208236,27314413:-2116825 +) +(1,15536:22208236,27314413:2116825,414482,115847 +k1,15536:22208236,27314413:3277 +h1,15536:24321784,27314413:0,411205,112570 +) +k1,15536:24754539,27314413:255808 +k1,15536:27483020,27314413:255808 +k1,15536:28398120,27314413:255808 +k1,15536:29673013,27314413:255808 +k1,15536:31318184,27314413:255808 +k1,15536:32583029,27314413:0 +) +(1,15537:6764466,28179493:25818563,505283,7863 +g1,15536:9722105,28179493 +g1,15536:10537372,28179493 +k1,15537:32583029,28179493:21578386 +g1,15537:32583029,28179493 +) +v1,15539:6764466,28864348:0,393216,0 +(1,15544:6764466,29856856:25818563,1385724,196608 +g1,15544:6764466,29856856 +g1,15544:6764466,29856856 +g1,15544:6567858,29856856 +(1,15544:6567858,29856856:0,1385724,196608 +r1,15570:32779637,29856856:26211779,1582332,196608 +k1,15544:6567857,29856856:-26211780 +) +(1,15544:6567858,29856856:26211779,1385724,196608 +[1,15544:6764466,29856856:25818563,1189116,0 +(1,15541:6764466,29092179:25818563,424439,79822 +(1,15540:6764466,29092179:0,0,0 +g1,15540:6764466,29092179 +g1,15540:6764466,29092179 +g1,15540:6436786,29092179 +(1,15540:6436786,29092179:0,0,0 +) +g1,15540:6764466,29092179 +) +k1,15541:6764466,29092179:0 +h1,15541:13071591,29092179:0,0,0 +k1,15541:32583029,29092179:19511438 +g1,15541:32583029,29092179 +) +(1,15542:6764466,29777034:25818563,424439,79822 +h1,15542:6764466,29777034:0,0,0 +k1,15542:6764466,29777034:0 +h1,15542:15395268,29777034:0,0,0 +k1,15542:32583028,29777034:17187760 +g1,15542:32583028,29777034 +) +] +) +g1,15544:32583029,29856856 +g1,15544:6764466,29856856 +g1,15544:6764466,29856856 +g1,15544:32583029,29856856 +g1,15544:32583029,29856856 +) +h1,15544:6764466,30053464:0,0,0 +] +g1,15547:32583029,30053464 +) +h1,15547:6630773,30053464:0,0,0 +(1,15550:6630773,30918544:25952256,513147,126483 +h1,15549:6630773,30918544:983040,0,0 +k1,15549:9709392,30918544:400163 +k1,15549:11534963,30918544:400163 +k1,15549:13779963,30918544:400162 +k1,15549:14839418,30918544:400163 +k1,15549:19311333,30918544:400163 +k1,15549:22006567,30918544:400163 +k1,15549:24174891,30918544:400163 +k1,15549:27400966,30918544:400163 +k1,15549:28413890,30918544:400162 +k1,15549:31576396,30918544:400163 +k1,15550:32583029,30918544:0 +) +(1,15550:6630773,31783624:25952256,505283,134348 +k1,15549:9840136,31783624:241893 +k1,15549:13265113,31783624:241893 +k1,15549:14352420,31783624:241893 +k1,15549:18538270,31783624:241893 +k1,15549:20660392,31783624:241894 +k1,15549:23797666,31783624:241893 +k1,15549:26674762,31783624:241893 +k1,15549:28054360,31783624:241893 +k1,15549:29487698,31783624:241893 +k1,15549:31391584,31783624:241893 +k1,15549:32583029,31783624:0 +) +(1,15550:6630773,32648704:25952256,513147,134348 +k1,15549:10423396,32648704:167827 +k1,15549:11610307,32648704:167826 +k1,15549:13304468,32648704:167827 +k1,15549:18033600,32648704:167826 +k1,15549:19010797,32648704:167827 +k1,15549:20875350,32648704:167826 +k1,15549:23317276,32648704:167827 +k1,15549:25396133,32648704:167827 +k1,15549:27218743,32648704:167826 +k1,15549:28490852,32648704:167827 +k1,15549:29406444,32648704:167826 +k1,15549:31417799,32648704:167827 +k1,15550:32583029,32648704:0 +) +(1,15550:6630773,33513784:25952256,513147,134348 +k1,15549:8294568,33513784:228557 +k1,15549:11349037,33513784:228557 +k1,15549:12769039,33513784:228557 +k1,15549:16111866,33513784:228556 +k1,15549:18572579,33513784:228557 +k1,15549:20072534,33513784:228557 +k1,15549:23285601,33513784:228557 +k1,15549:24165586,33513784:228557 +k1,15549:25413228,33513784:228557 +k1,15549:28196377,33513784:228556 +k1,15549:29084226,33513784:228557 +k1,15549:30738191,33513784:228557 +k1,15549:32583029,33513784:0 +) +(1,15550:6630773,34378864:25952256,513147,126483 +g1,15549:8219365,34378864 +g1,15549:8950091,34378864 +g1,15549:9800748,34378864 +g1,15549:12715789,34378864 +g1,15549:13934103,34378864 +g1,15549:16836037,34378864 +g1,15549:21007403,34378864 +g1,15549:21865924,34378864 +g1,15549:23761880,34378864 +k1,15550:32583029,34378864:4841148 +g1,15550:32583029,34378864 +) +(1,15552:6630773,35243944:25952256,513147,126483 +h1,15551:6630773,35243944:983040,0,0 +k1,15551:8659296,35243944:143052 +k1,15551:11354975,35243944:143052 +k1,15551:14482537,35243944:143052 +k1,15551:15277018,35243944:143053 +k1,15551:16845478,35243944:143052 +k1,15551:18833368,35243944:143052 +k1,15551:23880479,35243944:143052 +k1,15551:25878200,35243944:143052 +k1,15551:26830622,35243944:143052 +k1,15551:28929213,35243944:142997 +k1,15551:30304342,35243944:143052 +k1,15551:32583029,35243944:0 +) +(1,15552:6630773,36109024:25952256,505283,134348 +h1,15551:7980159,36109024:0,0,0 +k1,15551:8182615,36109024:202456 +k1,15551:9194442,36109024:202457 +h1,15551:10389819,36109024:0,0,0 +k1,15551:10973039,36109024:202456 +k1,15551:11706992,36109024:202456 +k1,15551:13064189,36109024:202453 +k1,15551:16232804,36109024:202456 +k1,15551:17626706,36109024:202457 +k1,15551:19734949,36109024:202456 +k1,15551:24667794,36109024:202456 +k1,15551:26605643,36109024:202456 +k1,15551:28956370,36109024:202457 +k1,15551:28956370,36109024:0 +k1,15551:29158826,36109024:202456 +k1,15551:29848867,36109024:202453 +k1,15551:32583029,36109024:0 +) +(1,15552:6630773,36974104:25952256,513147,126483 +k1,15551:9299236,36974104:221348 +k1,15551:10179876,36974104:221348 +k1,15551:10799682,36974104:221347 +k1,15551:13626086,36974104:221348 +k1,15551:14866519,36974104:221348 +k1,15551:18179856,36974104:221348 +k1,15551:21390955,36974104:221347 +k1,15551:23624258,36974104:221348 +k1,15551:24864691,36974104:221348 +k1,15551:28300580,36974104:221348 +k1,15551:29181219,36974104:221347 +k1,15551:30421652,36974104:221348 +k1,15551:32583029,36974104:0 +) +(1,15552:6630773,37839184:25952256,505283,134348 +k1,15551:8777375,37839184:235572 +k1,15551:10204392,37839184:235572 +k1,15551:10795824,37839184:235572 +k1,15551:14145667,37839184:235572 +k1,15551:16109423,37839184:235572 +k1,15551:18600745,37839184:235573 +k1,15551:19522479,37839184:235572 +k1,15551:20113911,37839184:235572 +k1,15551:23633492,37839184:235572 +k1,15551:25561204,37839184:235572 +k1,15551:29704688,37839184:235572 +k1,15551:32583029,37839184:0 +) +(1,15552:6630773,38704264:25952256,513147,126483 +k1,15551:7426872,38704264:168264 +k1,15551:8614220,38704264:168263 +k1,15551:10233451,38704264:168264 +k1,15551:10933211,38704264:168263 +k1,15551:14310773,38704264:168264 +k1,15551:15130464,38704264:168263 +k1,15551:16046494,38704264:168264 +k1,15551:18083188,38704264:168263 +k1,15551:19535958,38704264:168264 +k1,15551:20723307,38704264:168264 +k1,15551:22463779,38704264:168263 +k1,15551:24446735,38704264:168264 +k1,15551:25231036,38704264:168263 +k1,15551:26418385,38704264:168264 +k1,15551:29348991,38704264:168263 +k1,15551:31591469,38704264:168264 +k1,15551:32583029,38704264:0 +) +(1,15552:6630773,39569344:25952256,513147,126483 +g1,15551:9766015,39569344 +g1,15551:11156689,39569344 +g1,15551:13139153,39569344 +g1,15551:14286033,39569344 +g1,15551:15936884,39569344 +k1,15552:32583029,39569344:15316420 +g1,15552:32583029,39569344 +) +v1,15556:6630773,40254199:0,393216,0 +(1,15561:6630773,41273131:25952256,1412148,196608 +g1,15561:6630773,41273131 +g1,15561:6630773,41273131 +g1,15561:6434165,41273131 +(1,15561:6434165,41273131:0,1412148,196608 +r1,15570:32779637,41273131:26345472,1608756,196608 +k1,15561:6434165,41273131:-26345472 +) +(1,15561:6434165,41273131:26345472,1412148,196608 +[1,15561:6630773,41273131:25952256,1215540,0 +(1,15558:6630773,40482030:25952256,424439,86428 +(1,15557:6630773,40482030:0,0,0 +g1,15557:6630773,40482030 +g1,15557:6630773,40482030 +g1,15557:6303093,40482030 +(1,15557:6303093,40482030:0,0,0 +) +g1,15557:6630773,40482030 +) +g1,15558:10282266,40482030 +g1,15558:11278128,40482030 +g1,15558:17917207,40482030 +g1,15558:20904792,40482030 +g1,15558:21568700,40482030 +h1,15558:22232608,40482030:0,0,0 +k1,15558:32583029,40482030:10350421 +g1,15558:32583029,40482030 +) +(1,15559:6630773,41166885:25952256,424439,106246 +h1,15559:6630773,41166885:0,0,0 +k1,15559:6630773,41166885:0 +h1,15559:11942036,41166885:0,0,0 +k1,15559:32583028,41166885:20640992 +g1,15559:32583028,41166885 +) +] +) +g1,15561:32583029,41273131 +g1,15561:6630773,41273131 +g1,15561:6630773,41273131 +g1,15561:32583029,41273131 +g1,15561:32583029,41273131 +) +h1,15561:6630773,41469739:0,0,0 +] +(1,15570:32583029,45706769:0,0,0 +g1,15570:32583029,45706769 +) +) +] +(1,15570:6630773,47279633:25952256,0,0 +h1,15570:6630773,47279633:25952256,0,0 +) +] +(1,15570:4262630,4025873:0,0,0 +[1,15570:-473656,4025873:0,0,0 +(1,15570:-473656,-710413:0,0,0 +(1,15570:-473656,-710413:0,0,0 +g1,15570:-473656,-710413 +) +g1,15570:-473656,-710413 ) ] ) ] !21405 -}248 -Input:2642:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2643:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2644:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2645:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}249 Input:2646:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2647:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2648:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2649:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2650:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2651:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2652:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2653:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{249 -[1,15631:4262630,47279633:28320399,43253760,0 -(1,15631:4262630,4025873:0,0,0 -[1,15631:-473656,4025873:0,0,0 -(1,15631:-473656,-710413:0,0,0 -(1,15631:-473656,-644877:0,0,0 -k1,15631:-473656,-644877:-65536 +{250 +[1,15629:4262630,47279633:28320399,43253760,0 +(1,15629:4262630,4025873:0,0,0 +[1,15629:-473656,4025873:0,0,0 +(1,15629:-473656,-710413:0,0,0 +(1,15629:-473656,-644877:0,0,0 +k1,15629:-473656,-644877:-65536 ) -(1,15631:-473656,4736287:0,0,0 -k1,15631:-473656,4736287:5209943 +(1,15629:-473656,4736287:0,0,0 +k1,15629:-473656,4736287:5209943 ) -g1,15631:-473656,-710413 +g1,15629:-473656,-710413 ) ] ) -[1,15631:6630773,47279633:25952256,43253760,0 -[1,15631:6630773,4812305:25952256,786432,0 -(1,15631:6630773,4812305:25952256,513147,126483 -(1,15631:6630773,4812305:25952256,513147,126483 -g1,15631:3078558,4812305 -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,2439708:0,1703936,0 -k1,15631:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15631:2537886,2439708:1179648,16384,0 +[1,15629:6630773,47279633:25952256,43253760,0 +[1,15629:6630773,4812305:25952256,786432,0 +(1,15629:6630773,4812305:25952256,513147,126483 +(1,15629:6630773,4812305:25952256,513147,126483 +g1,15629:3078558,4812305 +[1,15629:3078558,4812305:0,0,0 +(1,15629:3078558,2439708:0,1703936,0 +k1,15629:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15629:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15631:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15629:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,2439708:0,1703936,0 -g1,15631:29030814,2439708 -g1,15631:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15631:36151628,1915420:16384,1179648,0 +[1,15629:3078558,4812305:0,0,0 +(1,15629:3078558,2439708:0,1703936,0 +g1,15629:29030814,2439708 +g1,15629:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15629:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15631:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15629:37855564,2439708:1179648,16384,0 ) ) -k1,15631:3078556,2439708:-34777008 +k1,15629:3078556,2439708:-34777008 ) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,49800853:0,16384,2228224 -k1,15631:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15631:2537886,49800853:1179648,16384,0 +[1,15629:3078558,4812305:0,0,0 +(1,15629:3078558,49800853:0,16384,2228224 +k1,15629:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15629:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15631:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15629:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,49800853:0,16384,2228224 -g1,15631:29030814,49800853 -g1,15631:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15631:36151628,51504789:16384,1179648,0 +[1,15629:3078558,4812305:0,0,0 +(1,15629:3078558,49800853:0,16384,2228224 +g1,15629:29030814,49800853 +g1,15629:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15629:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15631:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15629:37855564,49800853:1179648,16384,0 ) ) -k1,15631:3078556,49800853:-34777008 +k1,15629:3078556,49800853:-34777008 ) ] -g1,15631:6630773,4812305 -k1,15631:19575446,4812305:11749296 -g1,15631:21198117,4812305 -g1,15631:21985204,4812305 -g1,15631:24539797,4812305 -g1,15631:25949476,4812305 -g1,15631:28728857,4812305 -g1,15631:29852144,4812305 +g1,15629:6630773,4812305 +k1,15629:19575446,4812305:11749296 +g1,15629:21198117,4812305 +g1,15629:21985204,4812305 +g1,15629:24539797,4812305 +g1,15629:25949476,4812305 +g1,15629:28728857,4812305 +g1,15629:29852144,4812305 ) ) ] -[1,15631:6630773,45706769:25952256,40108032,0 -(1,15631:6630773,45706769:25952256,40108032,0 -(1,15631:6630773,45706769:0,0,0 -g1,15631:6630773,45706769 +[1,15629:6630773,45706769:25952256,40108032,0 +(1,15629:6630773,45706769:25952256,40108032,0 +(1,15629:6630773,45706769:0,0,0 +g1,15629:6630773,45706769 ) -[1,15631:6630773,45706769:25952256,40108032,0 -(1,15566:6630773,20738181:25952256,15139444,0 -k1,15566:10523651,20738181:3892878 -h1,15565:10523651,20738181:0,0,0 -(1,15565:10523651,20738181:18166500,15139444,0 -(1,15565:10523651,20738181:18167376,15139481,0 -(1,15565:10523651,20738181:18167376,15139481,0 -(1,15565:10523651,20738181:0,15139481,0 -(1,15565:10523651,20738181:0,23681434,0 -(1,15565:10523651,20738181:28417720,23681434,0 -) -k1,15565:10523651,20738181:-28417720 -) -) -g1,15565:28691027,20738181 -) -) -) -g1,15566:28690151,20738181 -k1,15566:32583029,20738181:3892878 -) -(1,15573:6630773,21603261:25952256,513147,134348 -h1,15572:6630773,21603261:983040,0,0 -k1,15572:8365057,21603261:281351 -k1,15572:9177905,21603261:281351 -k1,15572:12892687,21603261:281351 -k1,15572:13825466,21603261:281351 -k1,15572:16475288,21603261:281351 -k1,15572:17775724,21603261:281351 -k1,15572:19612245,21603261:281352 -k1,15572:21085041,21603261:281351 -k1,15572:24297817,21603261:281351 -k1,15572:25238460,21603261:281351 -k1,15572:26538896,21603261:281351 -k1,15572:28779773,21603261:281351 -k1,15572:31839851,21603261:281351 -k1,15573:32583029,21603261:0 -) -(1,15573:6630773,22468341:25952256,513147,126483 -(1,15572:6630773,22468341:0,452978,115847 -r1,15631:8395886,22468341:1765113,568825,115847 -k1,15572:6630773,22468341:-1765113 -) -(1,15572:6630773,22468341:1765113,452978,115847 -k1,15572:6630773,22468341:3277 -h1,15572:8392609,22468341:0,411205,112570 -) -k1,15572:8829530,22468341:259974 -k1,15572:9775667,22468341:259975 -k1,15572:10903993,22468341:259974 -k1,15572:12500901,22468341:259974 -k1,15572:14309491,22468341:259974 -k1,15572:15220894,22468341:259975 -k1,15572:17684844,22468341:259974 -k1,15572:22046061,22468341:259974 -k1,15572:23259585,22468341:259975 -k1,15572:24623841,22468341:259974 -k1,15572:25908798,22468341:259974 -k1,15572:27453278,22468341:259974 -k1,15572:28732338,22468341:259975 -k1,15572:31923737,22468341:259974 -k1,15572:32583029,22468341:0 -) -(1,15573:6630773,23333421:25952256,513147,134348 -g1,15572:8033243,23333421 -g1,15572:10191998,23333421 -g1,15572:10922724,23333421 -g1,15572:13073615,23333421 -g1,15572:15474854,23333421 -g1,15572:16325511,23333421 -g1,15572:19412912,23333421 -g1,15572:21901969,23333421 -g1,15572:22760490,23333421 -g1,15572:25192531,23333421 -(1,15572:25192531,23333421:0,452978,115847 -r1,15631:25902509,23333421:709978,568825,115847 -k1,15572:25192531,23333421:-709978 -) -(1,15572:25192531,23333421:709978,452978,115847 -k1,15572:25192531,23333421:3277 -h1,15572:25899232,23333421:0,411205,112570 -) -g1,15572:26101738,23333421 -g1,15572:27492412,23333421 -(1,15572:27492412,23333421:0,452978,122846 -r1,15631:28554101,23333421:1061689,575824,122846 -k1,15572:27492412,23333421:-1061689 -) -(1,15572:27492412,23333421:1061689,452978,122846 -k1,15572:27492412,23333421:3277 -h1,15572:28550824,23333421:0,411205,112570 -) -k1,15573:32583029,23333421:3976500 -g1,15573:32583029,23333421 -) -v1,15575:6630773,24018276:0,393216,0 -(1,15595:6630773,31520902:25952256,7895842,196608 -g1,15595:6630773,31520902 -g1,15595:6630773,31520902 -g1,15595:6434165,31520902 -(1,15595:6434165,31520902:0,7895842,196608 -r1,15631:32779637,31520902:26345472,8092450,196608 -k1,15595:6434165,31520902:-26345472 -) -(1,15595:6434165,31520902:26345472,7895842,196608 -[1,15595:6630773,31520902:25952256,7699234,0 -(1,15577:6630773,24246107:25952256,424439,79822 -(1,15576:6630773,24246107:0,0,0 -g1,15576:6630773,24246107 -g1,15576:6630773,24246107 -g1,15576:6303093,24246107 -(1,15576:6303093,24246107:0,0,0 -) -g1,15576:6630773,24246107 -) -k1,15577:6630773,24246107:0 -h1,15577:12273990,24246107:0,0,0 -k1,15577:32583030,24246107:20309040 -g1,15577:32583030,24246107 -) -(1,15581:6630773,25062034:25952256,424439,79822 -(1,15579:6630773,25062034:0,0,0 -g1,15579:6630773,25062034 -g1,15579:6630773,25062034 -g1,15579:6303093,25062034 -(1,15579:6303093,25062034:0,0,0 -) -g1,15579:6630773,25062034 -) -g1,15581:7626635,25062034 -g1,15581:8954451,25062034 -h1,15581:10614221,25062034:0,0,0 -k1,15581:32583029,25062034:21968808 -g1,15581:32583029,25062034 -) -(1,15583:6630773,25877961:25952256,424439,112852 -(1,15582:6630773,25877961:0,0,0 -g1,15582:6630773,25877961 -g1,15582:6630773,25877961 -g1,15582:6303093,25877961 -(1,15582:6303093,25877961:0,0,0 -) -g1,15582:6630773,25877961 -) -k1,15583:6630773,25877961:0 -g1,15583:11942036,25877961 -g1,15583:14597668,25877961 -g1,15583:15261576,25877961 -g1,15583:17253300,25877961 -g1,15583:20572839,25877961 -g1,15583:21236747,25877961 -g1,15583:23560425,25877961 -g1,15583:26216057,25877961 -g1,15583:26879965,25877961 -h1,15583:27543873,25877961:0,0,0 -k1,15583:32583029,25877961:5039156 -g1,15583:32583029,25877961 -) -(1,15594:6630773,26693888:25952256,431045,86428 -(1,15585:6630773,26693888:0,0,0 -g1,15585:6630773,26693888 -g1,15585:6630773,26693888 -g1,15585:6303093,26693888 -(1,15585:6303093,26693888:0,0,0 -) -g1,15585:6630773,26693888 -) -g1,15594:7626635,26693888 -g1,15594:7958589,26693888 -g1,15594:8622497,26693888 -g1,15594:12937898,26693888 -g1,15594:16921346,26693888 -g1,15594:19576978,26693888 -g1,15594:21236748,26693888 -g1,15594:22896518,26693888 -g1,15594:24556288,26693888 -g1,15594:25552150,26693888 -g1,15594:27543874,26693888 -g1,15594:29203644,26693888 -g1,15594:31195368,26693888 -h1,15594:32191230,26693888:0,0,0 -k1,15594:32583029,26693888:391799 -g1,15594:32583029,26693888 -) -(1,15594:6630773,27378743:25952256,431045,112852 -h1,15594:6630773,27378743:0,0,0 -g1,15594:7626635,27378743 -g1,15594:7958589,27378743 -g1,15594:8622497,27378743 -g1,15594:11278129,27378743 -g1,15594:11610083,27378743 -g1,15594:11942037,27378743 -g1,15594:12273991,27378743 -g1,15594:12937899,27378743 -g1,15594:14265715,27378743 -g1,15594:16921347,27378743 -g1,15594:17585255,27378743 -g1,15594:18249163,27378743 -g1,15594:18913071,27378743 -g1,15594:19576979,27378743 -g1,15594:20240887,27378743 -h1,15594:21236749,27378743:0,0,0 -k1,15594:32583029,27378743:11346280 -g1,15594:32583029,27378743 -) -(1,15594:6630773,28063598:25952256,431045,112852 -h1,15594:6630773,28063598:0,0,0 -g1,15594:7626635,28063598 -g1,15594:7958589,28063598 -g1,15594:8622497,28063598 -g1,15594:10282267,28063598 -g1,15594:10614221,28063598 -g1,15594:10946175,28063598 -g1,15594:11278129,28063598 -g1,15594:11610083,28063598 -g1,15594:11942037,28063598 -g1,15594:12273991,28063598 -g1,15594:12937899,28063598 -g1,15594:15925484,28063598 -g1,15594:17917208,28063598 -g1,15594:18581116,28063598 -g1,15594:23892379,28063598 -g1,15594:26879964,28063598 -g1,15594:27543872,28063598 -h1,15594:28207780,28063598:0,0,0 -k1,15594:32583029,28063598:4375249 -g1,15594:32583029,28063598 -) -(1,15594:6630773,28748453:25952256,431045,79822 -h1,15594:6630773,28748453:0,0,0 -g1,15594:7626635,28748453 -g1,15594:7958589,28748453 -g1,15594:8622497,28748453 -g1,15594:9950313,28748453 -g1,15594:10282267,28748453 -g1,15594:10614221,28748453 -g1,15594:10946175,28748453 -g1,15594:11278129,28748453 -g1,15594:11610083,28748453 -g1,15594:11942037,28748453 -g1,15594:12273991,28748453 -g1,15594:12937899,28748453 -g1,15594:14929623,28748453 -g1,15594:16257439,28748453 -g1,15594:18249163,28748453 -g1,15594:18913071,28748453 -g1,15594:19908933,28748453 -h1,15594:20572841,28748453:0,0,0 -k1,15594:32583029,28748453:12010188 -g1,15594:32583029,28748453 -) -(1,15594:6630773,29433308:25952256,431045,112852 -h1,15594:6630773,29433308:0,0,0 -g1,15594:7626635,29433308 -g1,15594:7958589,29433308 -g1,15594:8622497,29433308 -g1,15594:9950313,29433308 -g1,15594:10282267,29433308 -g1,15594:10614221,29433308 -g1,15594:10946175,29433308 -g1,15594:11278129,29433308 -g1,15594:11610083,29433308 -g1,15594:11942037,29433308 -g1,15594:12273991,29433308 -g1,15594:12937899,29433308 -g1,15594:14929623,29433308 -g1,15594:16257439,29433308 -g1,15594:18249163,29433308 -g1,15594:18913071,29433308 -g1,15594:19576979,29433308 -h1,15594:19908933,29433308:0,0,0 -k1,15594:32583029,29433308:12674096 -g1,15594:32583029,29433308 -) -(1,15594:6630773,30118163:25952256,431045,112852 -h1,15594:6630773,30118163:0,0,0 -g1,15594:7626635,30118163 -g1,15594:7958589,30118163 -g1,15594:8622497,30118163 -g1,15594:10282267,30118163 -g1,15594:10614221,30118163 -g1,15594:10946175,30118163 -g1,15594:11278129,30118163 -g1,15594:11610083,30118163 -g1,15594:11942037,30118163 -g1,15594:12273991,30118163 -g1,15594:12937899,30118163 -g1,15594:14929623,30118163 -g1,15594:16257439,30118163 -g1,15594:18249163,30118163 -g1,15594:18913071,30118163 -g1,15594:19576979,30118163 -h1,15594:19908933,30118163:0,0,0 -k1,15594:32583029,30118163:12674096 -g1,15594:32583029,30118163 -) -(1,15594:6630773,30803018:25952256,431045,33029 -h1,15594:6630773,30803018:0,0,0 -g1,15594:7626635,30803018 -g1,15594:7958589,30803018 -g1,15594:8622497,30803018 -g1,15594:10614221,30803018 -g1,15594:10946175,30803018 -g1,15594:11278129,30803018 -g1,15594:11610083,30803018 -g1,15594:11942037,30803018 -g1,15594:12273991,30803018 -g1,15594:12937899,30803018 -g1,15594:14265715,30803018 -h1,15594:14597669,30803018:0,0,0 -k1,15594:32583029,30803018:17985360 -g1,15594:32583029,30803018 -) -(1,15594:6630773,31487873:25952256,431045,33029 -h1,15594:6630773,31487873:0,0,0 -g1,15594:7626635,31487873 -g1,15594:7958589,31487873 -g1,15594:8622497,31487873 -g1,15594:10614221,31487873 -g1,15594:10946175,31487873 -g1,15594:11278129,31487873 -g1,15594:11610083,31487873 -g1,15594:11942037,31487873 -g1,15594:12273991,31487873 -g1,15594:12937899,31487873 -g1,15594:14265715,31487873 -h1,15594:14597669,31487873:0,0,0 -k1,15594:32583029,31487873:17985360 -g1,15594:32583029,31487873 -) -] -) -g1,15595:32583029,31520902 -g1,15595:6630773,31520902 -g1,15595:6630773,31520902 -g1,15595:32583029,31520902 -g1,15595:32583029,31520902 -) -h1,15595:6630773,31717510:0,0,0 -(1,15599:6630773,32582590:25952256,513147,115847 -h1,15598:6630773,32582590:983040,0,0 -k1,15598:8586425,32582590:154723 -k1,15598:10135099,32582590:154723 -k1,15598:11991792,32582590:154723 -k1,15598:12833988,32582590:154723 -k1,15598:15947006,32582590:154723 -k1,15598:18556051,32582590:154722 -(1,15598:18556051,32582590:0,452978,115847 -r1,15631:21728011,32582590:3171960,568825,115847 -k1,15598:18556051,32582590:-3171960 -) -(1,15598:18556051,32582590:3171960,452978,115847 -k1,15598:18556051,32582590:3277 -h1,15598:21724734,32582590:0,411205,112570 -) -k1,15598:21882734,32582590:154723 -k1,15598:22568954,32582590:154723 -k1,15598:25681317,32582590:154723 -k1,15598:28770742,32582590:154723 -k1,15598:30128706,32582590:154723 -k1,15598:32583029,32582590:0 -) -(1,15599:6630773,33447670:25952256,513147,134348 -k1,15598:7816369,33447670:237945 -k1,15598:9609483,33447670:237945 -(1,15598:9609483,33447670:0,452978,115847 -r1,15631:10671172,33447670:1061689,568825,115847 -k1,15598:9609483,33447670:-1061689 -) -(1,15598:9609483,33447670:1061689,452978,115847 -k1,15598:9609483,33447670:3277 -h1,15598:10667895,33447670:0,411205,112570 -) -k1,15598:10909117,33447670:237945 -k1,15598:13488009,33447670:237946 -k1,15598:17217057,33447670:237945 -k1,15598:18474087,33447670:237945 -(1,15598:18474087,33447670:0,452978,115847 -r1,15631:19535776,33447670:1061689,568825,115847 -k1,15598:18474087,33447670:-1061689 -) -(1,15598:18474087,33447670:1061689,452978,115847 -k1,15598:18474087,33447670:3277 -h1,15598:19532499,33447670:0,411205,112570 -) -k1,15598:19773721,33447670:237945 -k1,15598:21971192,33447670:237945 -k1,15598:24852204,33447670:237945 -k1,15598:25776312,33447670:237946 -k1,15598:26784960,33447670:237945 -k1,15598:30095233,33447670:237945 -k1,15598:31524623,33447670:237945 -k1,15599:32583029,33447670:0 -) -(1,15599:6630773,34312750:25952256,505283,126483 -k1,15598:8572458,34312750:268551 -k1,15598:9196868,34312750:268550 -k1,15598:12629497,34312750:268551 -k1,15598:13525883,34312750:268551 -k1,15598:15496403,34312750:268550 -k1,15598:17893563,34312750:268551 -k1,15598:18620211,34312750:268551 -k1,15598:21442044,34312750:268550 -k1,15598:24478836,34312750:268551 -k1,15598:25398815,34312750:268551 -(1,15598:25398815,34312750:0,452978,115847 -r1,15631:27867352,34312750:2468537,568825,115847 -k1,15598:25398815,34312750:-2468537 -) -(1,15598:25398815,34312750:2468537,452978,115847 -k1,15598:25398815,34312750:3277 -h1,15598:27864075,34312750:0,411205,112570 -) -k1,15598:28135902,34312750:268550 -k1,15598:31189078,34312750:268551 -k1,15598:32583029,34312750:0 -) -(1,15599:6630773,35177830:25952256,513147,134348 -k1,15598:9176918,35177830:221583 -k1,15598:10049929,35177830:221583 -k1,15598:11290598,35177830:221584 -k1,15598:14290908,35177830:221583 -k1,15598:16645688,35177830:221583 -k1,15598:17939440,35177830:221583 -k1,15598:21111454,35177830:221583 -k1,15598:21688897,35177830:221583 -k1,15598:24672824,35177830:221584 -k1,15598:27542717,35177830:221583 -k1,15598:29206747,35177830:221583 -(1,15598:29206747,35177830:0,452978,115847 -r1,15631:31675284,35177830:2468537,568825,115847 -k1,15598:29206747,35177830:-2468537 -) -(1,15598:29206747,35177830:2468537,452978,115847 -k1,15598:29206747,35177830:3277 -h1,15598:31672007,35177830:0,411205,112570 -) -k1,15598:31896867,35177830:221583 -k1,15598:32583029,35177830:0 -) -(1,15599:6630773,36042910:25952256,513147,7863 -g1,15598:7618400,36042910 -g1,15598:9117208,36042910 -k1,15599:32583029,36042910:21642610 -g1,15599:32583029,36042910 -) -v1,15601:6630773,36727765:0,393216,0 -(1,15631:6630773,45391356:25952256,9056807,196608 -g1,15631:6630773,45391356 -g1,15631:6630773,45391356 -g1,15631:6434165,45391356 -(1,15631:6434165,45391356:0,9056807,196608 -r1,15631:32779637,45391356:26345472,9253415,196608 -k1,15631:6434165,45391356:-26345472 -) -(1,15631:6434165,45391356:26345472,9056807,196608 -[1,15631:6630773,45391356:25952256,8860199,0 -(1,15603:6630773,36955596:25952256,424439,106246 -(1,15602:6630773,36955596:0,0,0 -g1,15602:6630773,36955596 -g1,15602:6630773,36955596 -g1,15602:6303093,36955596 -(1,15602:6303093,36955596:0,0,0 -) -g1,15602:6630773,36955596 -) -k1,15603:6630773,36955596:0 -h1,15603:12937898,36955596:0,0,0 -k1,15603:32583030,36955596:19645132 -g1,15603:32583030,36955596 -) -(1,15630:6630773,37771523:25952256,424439,8257 -(1,15605:6630773,37771523:0,0,0 -g1,15605:6630773,37771523 -g1,15605:6630773,37771523 -g1,15605:6303093,37771523 -(1,15605:6303093,37771523:0,0,0 -) -g1,15605:6630773,37771523 -) -g1,15630:7626635,37771523 -g1,15630:7958589,37771523 -h1,15630:9618359,37771523:0,0,0 -k1,15630:32583029,37771523:22964670 -g1,15630:32583029,37771523 -) -(1,15630:6630773,38456378:25952256,424439,86428 -h1,15630:6630773,38456378:0,0,0 -g1,15630:7626635,38456378 -g1,15630:7958589,38456378 -g1,15630:9950313,38456378 -g1,15630:10614221,38456378 -g1,15630:15925484,38456378 -g1,15630:18913069,38456378 -g1,15630:19576977,38456378 -h1,15630:20240885,38456378:0,0,0 -k1,15630:32583029,38456378:12342144 -g1,15630:32583029,38456378 -) -(1,15630:6630773,39141233:25952256,398014,0 -h1,15630:6630773,39141233:0,0,0 -h1,15630:7294681,39141233:0,0,0 -k1,15630:32583029,39141233:25288348 -g1,15630:32583029,39141233 -) -(1,15630:6630773,39826088:25952256,424439,106246 -h1,15630:6630773,39826088:0,0,0 -g1,15630:7626635,39826088 -g1,15630:7958589,39826088 -g1,15630:11942036,39826088 -h1,15630:15593529,39826088:0,0,0 -k1,15630:32583029,39826088:16989500 -g1,15630:32583029,39826088 -) -(1,15630:6630773,40510943:25952256,424439,6605 -h1,15630:6630773,40510943:0,0,0 -g1,15630:7626635,40510943 -g1,15630:7958589,40510943 -g1,15630:8290543,40510943 -g1,15630:8622497,40510943 -g1,15630:8954451,40510943 -g1,15630:11942036,40510943 -g1,15630:12273990,40510943 -g1,15630:12605944,40510943 -g1,15630:12937898,40510943 -g1,15630:13269852,40510943 -g1,15630:13601806,40510943 -g1,15630:13933760,40510943 -g1,15630:14265714,40510943 -g1,15630:14597668,40510943 -g1,15630:14929622,40510943 -g1,15630:15261576,40510943 -g1,15630:15593530,40510943 -g1,15630:15925484,40510943 -g1,15630:17917208,40510943 -g1,15630:18249162,40510943 -g1,15630:18581116,40510943 -g1,15630:18913070,40510943 -g1,15630:19245024,40510943 -g1,15630:19576978,40510943 -g1,15630:19908932,40510943 -g1,15630:20240886,40510943 -g1,15630:20572840,40510943 -g1,15630:20904794,40510943 -g1,15630:21236748,40510943 -g1,15630:21568702,40510943 -g1,15630:21900656,40510943 -h1,15630:24888241,40510943:0,0,0 -k1,15630:32583029,40510943:7694788 -g1,15630:32583029,40510943 -) -(1,15630:6630773,41195798:25952256,424439,9908 -h1,15630:6630773,41195798:0,0,0 -g1,15630:7626635,41195798 -g1,15630:7958589,41195798 -g1,15630:9618359,41195798 -g1,15630:9950313,41195798 -g1,15630:10282267,41195798 -g1,15630:13933760,41195798 -g1,15630:14265714,41195798 -g1,15630:14597668,41195798 -g1,15630:16257438,41195798 -g1,15630:16589392,41195798 -g1,15630:16921346,41195798 -g1,15630:17585254,41195798 -g1,15630:20572839,41195798 -g1,15630:20904793,41195798 -g1,15630:21236747,41195798 -g1,15630:22896517,41195798 -g1,15630:23228471,41195798 -g1,15630:23560425,41195798 -k1,15630:23560425,41195798:0 -h1,15630:27211918,41195798:0,0,0 -k1,15630:32583029,41195798:5371111 -g1,15630:32583029,41195798 -) -(1,15630:6630773,41880653:25952256,407923,86428 -h1,15630:6630773,41880653:0,0,0 -g1,15630:7626635,41880653 -g1,15630:7958589,41880653 -g1,15630:9286405,41880653 -g1,15630:13933760,41880653 -g1,15630:14265714,41880653 -g1,15630:14597668,41880653 -g1,15630:15925484,41880653 -g1,15630:17585254,41880653 -g1,15630:20572839,41880653 -g1,15630:20904793,41880653 -g1,15630:21236747,41880653 -g1,15630:22564563,41880653 -k1,15630:22564563,41880653:0 -h1,15630:27211918,41880653:0,0,0 -k1,15630:32583029,41880653:5371111 -g1,15630:32583029,41880653 -) -(1,15630:6630773,42565508:25952256,424439,9908 -h1,15630:6630773,42565508:0,0,0 -g1,15630:7626635,42565508 -g1,15630:7958589,42565508 -g1,15630:10282267,42565508 -g1,15630:13933760,42565508 -g1,15630:14265714,42565508 -g1,15630:14597668,42565508 -g1,15630:16921346,42565508 -g1,15630:17585254,42565508 -g1,15630:20572839,42565508 -g1,15630:20904793,42565508 -g1,15630:21236747,42565508 -g1,15630:23560425,42565508 -g1,15630:24224333,42565508 -h1,15630:27211918,42565508:0,0,0 -k1,15630:32583029,42565508:5371111 -g1,15630:32583029,42565508 -) -(1,15630:6630773,43250363:25952256,407923,9908 -h1,15630:6630773,43250363:0,0,0 -g1,15630:7626635,43250363 -g1,15630:7958589,43250363 -g1,15630:9618359,43250363 -g1,15630:9950313,43250363 -g1,15630:10282267,43250363 -g1,15630:10946175,43250363 -g1,15630:13933760,43250363 -g1,15630:14265714,43250363 -g1,15630:14597668,43250363 -g1,15630:16257438,43250363 -g1,15630:16589392,43250363 -g1,15630:16921346,43250363 -g1,15630:17585254,43250363 -g1,15630:20572839,43250363 -g1,15630:20904793,43250363 -g1,15630:21236747,43250363 -g1,15630:22896517,43250363 -g1,15630:23228471,43250363 -g1,15630:23560425,43250363 -g1,15630:24224333,43250363 -h1,15630:27211918,43250363:0,0,0 -k1,15630:32583029,43250363:5371111 -g1,15630:32583029,43250363 -) -(1,15630:6630773,43935218:25952256,424439,86428 -h1,15630:6630773,43935218:0,0,0 -g1,15630:7626635,43935218 -g1,15630:7958589,43935218 -g1,15630:9286405,43935218 -g1,15630:10946175,43935218 -g1,15630:13933760,43935218 -g1,15630:14265714,43935218 -g1,15630:14597668,43935218 -g1,15630:15925484,43935218 -g1,15630:17585254,43935218 -g1,15630:20572839,43935218 -g1,15630:20904793,43935218 -g1,15630:21236747,43935218 -g1,15630:22564563,43935218 -g1,15630:24224333,43935218 -h1,15630:27211918,43935218:0,0,0 -k1,15630:32583029,43935218:5371111 -g1,15630:32583029,43935218 -) -(1,15630:6630773,44620073:25952256,407923,9908 -h1,15630:6630773,44620073:0,0,0 -g1,15630:7626635,44620073 -g1,15630:7958589,44620073 -g1,15630:9618359,44620073 -g1,15630:9950313,44620073 -g1,15630:10282267,44620073 -g1,15630:10946175,44620073 -g1,15630:13933760,44620073 -g1,15630:14265714,44620073 -g1,15630:14597668,44620073 -g1,15630:16257438,44620073 -g1,15630:16589392,44620073 -g1,15630:16921346,44620073 -g1,15630:20572839,44620073 -g1,15630:20904793,44620073 -g1,15630:21236747,44620073 -g1,15630:22896517,44620073 -g1,15630:23228471,44620073 -g1,15630:23560425,44620073 -g1,15630:24224333,44620073 -h1,15630:27211918,44620073:0,0,0 -k1,15630:32583029,44620073:5371111 -g1,15630:32583029,44620073 -) -(1,15630:6630773,45304928:25952256,398014,86428 -h1,15630:6630773,45304928:0,0,0 -g1,15630:7626635,45304928 -g1,15630:7958589,45304928 -h1,15630:9286405,45304928:0,0,0 -k1,15630:32583029,45304928:23296624 -g1,15630:32583029,45304928 -) -] -) -g1,15631:32583029,45391356 -g1,15631:6630773,45391356 -g1,15631:6630773,45391356 -g1,15631:32583029,45391356 -g1,15631:32583029,45391356 -) -] -(1,15631:32583029,45706769:0,0,0 -g1,15631:32583029,45706769 -) -) -] -(1,15631:6630773,47279633:25952256,0,0 -h1,15631:6630773,47279633:25952256,0,0 -) -] -(1,15631:4262630,4025873:0,0,0 -[1,15631:-473656,4025873:0,0,0 -(1,15631:-473656,-710413:0,0,0 -(1,15631:-473656,-710413:0,0,0 -g1,15631:-473656,-710413 -) -g1,15631:-473656,-710413 +[1,15629:6630773,45706769:25952256,40108032,0 +(1,15564:6630773,20738181:25952256,15139444,0 +k1,15564:10523651,20738181:3892878 +h1,15563:10523651,20738181:0,0,0 +(1,15563:10523651,20738181:18166500,15139444,0 +(1,15563:10523651,20738181:18167376,15139481,0 +(1,15563:10523651,20738181:18167376,15139481,0 +(1,15563:10523651,20738181:0,15139481,0 +(1,15563:10523651,20738181:0,23681434,0 +(1,15563:10523651,20738181:28417720,23681434,0 +) +k1,15563:10523651,20738181:-28417720 +) +) +g1,15563:28691027,20738181 +) +) +) +g1,15564:28690151,20738181 +k1,15564:32583029,20738181:3892878 +) +(1,15571:6630773,21603261:25952256,513147,134348 +h1,15570:6630773,21603261:983040,0,0 +k1,15570:8365057,21603261:281351 +k1,15570:9177905,21603261:281351 +k1,15570:12892687,21603261:281351 +k1,15570:13825466,21603261:281351 +k1,15570:16475288,21603261:281351 +k1,15570:17775724,21603261:281351 +k1,15570:19612245,21603261:281352 +k1,15570:21085041,21603261:281351 +k1,15570:24297817,21603261:281351 +k1,15570:25238460,21603261:281351 +k1,15570:26538896,21603261:281351 +k1,15570:28779773,21603261:281351 +k1,15570:31839851,21603261:281351 +k1,15571:32583029,21603261:0 +) +(1,15571:6630773,22468341:25952256,513147,126483 +(1,15570:6630773,22468341:0,452978,115847 +r1,15629:8395886,22468341:1765113,568825,115847 +k1,15570:6630773,22468341:-1765113 +) +(1,15570:6630773,22468341:1765113,452978,115847 +k1,15570:6630773,22468341:3277 +h1,15570:8392609,22468341:0,411205,112570 +) +k1,15570:8829530,22468341:259974 +k1,15570:9775667,22468341:259975 +k1,15570:10903993,22468341:259974 +k1,15570:12500901,22468341:259974 +k1,15570:14309491,22468341:259974 +k1,15570:15220894,22468341:259975 +k1,15570:17684844,22468341:259974 +k1,15570:22046061,22468341:259974 +k1,15570:23259585,22468341:259975 +k1,15570:24623841,22468341:259974 +k1,15570:25908798,22468341:259974 +k1,15570:27453278,22468341:259974 +k1,15570:28732338,22468341:259975 +k1,15570:31923737,22468341:259974 +k1,15570:32583029,22468341:0 +) +(1,15571:6630773,23333421:25952256,513147,134348 +g1,15570:8033243,23333421 +g1,15570:10191998,23333421 +g1,15570:10922724,23333421 +g1,15570:13073615,23333421 +g1,15570:15474854,23333421 +g1,15570:16325511,23333421 +g1,15570:19412912,23333421 +g1,15570:21901969,23333421 +g1,15570:22760490,23333421 +g1,15570:25192531,23333421 +(1,15570:25192531,23333421:0,452978,115847 +r1,15629:25902509,23333421:709978,568825,115847 +k1,15570:25192531,23333421:-709978 +) +(1,15570:25192531,23333421:709978,452978,115847 +k1,15570:25192531,23333421:3277 +h1,15570:25899232,23333421:0,411205,112570 +) +g1,15570:26101738,23333421 +g1,15570:27492412,23333421 +(1,15570:27492412,23333421:0,452978,122846 +r1,15629:28554101,23333421:1061689,575824,122846 +k1,15570:27492412,23333421:-1061689 +) +(1,15570:27492412,23333421:1061689,452978,122846 +k1,15570:27492412,23333421:3277 +h1,15570:28550824,23333421:0,411205,112570 +) +k1,15571:32583029,23333421:3976500 +g1,15571:32583029,23333421 +) +v1,15573:6630773,24018276:0,393216,0 +(1,15593:6630773,31520902:25952256,7895842,196608 +g1,15593:6630773,31520902 +g1,15593:6630773,31520902 +g1,15593:6434165,31520902 +(1,15593:6434165,31520902:0,7895842,196608 +r1,15629:32779637,31520902:26345472,8092450,196608 +k1,15593:6434165,31520902:-26345472 +) +(1,15593:6434165,31520902:26345472,7895842,196608 +[1,15593:6630773,31520902:25952256,7699234,0 +(1,15575:6630773,24246107:25952256,424439,79822 +(1,15574:6630773,24246107:0,0,0 +g1,15574:6630773,24246107 +g1,15574:6630773,24246107 +g1,15574:6303093,24246107 +(1,15574:6303093,24246107:0,0,0 +) +g1,15574:6630773,24246107 +) +k1,15575:6630773,24246107:0 +h1,15575:12273990,24246107:0,0,0 +k1,15575:32583030,24246107:20309040 +g1,15575:32583030,24246107 +) +(1,15579:6630773,25062034:25952256,424439,79822 +(1,15577:6630773,25062034:0,0,0 +g1,15577:6630773,25062034 +g1,15577:6630773,25062034 +g1,15577:6303093,25062034 +(1,15577:6303093,25062034:0,0,0 +) +g1,15577:6630773,25062034 +) +g1,15579:7626635,25062034 +g1,15579:8954451,25062034 +h1,15579:10614221,25062034:0,0,0 +k1,15579:32583029,25062034:21968808 +g1,15579:32583029,25062034 +) +(1,15581:6630773,25877961:25952256,424439,112852 +(1,15580:6630773,25877961:0,0,0 +g1,15580:6630773,25877961 +g1,15580:6630773,25877961 +g1,15580:6303093,25877961 +(1,15580:6303093,25877961:0,0,0 +) +g1,15580:6630773,25877961 +) +k1,15581:6630773,25877961:0 +g1,15581:11942036,25877961 +g1,15581:14597668,25877961 +g1,15581:15261576,25877961 +g1,15581:17253300,25877961 +g1,15581:20572839,25877961 +g1,15581:21236747,25877961 +g1,15581:23560425,25877961 +g1,15581:26216057,25877961 +g1,15581:26879965,25877961 +h1,15581:27543873,25877961:0,0,0 +k1,15581:32583029,25877961:5039156 +g1,15581:32583029,25877961 +) +(1,15592:6630773,26693888:25952256,431045,86428 +(1,15583:6630773,26693888:0,0,0 +g1,15583:6630773,26693888 +g1,15583:6630773,26693888 +g1,15583:6303093,26693888 +(1,15583:6303093,26693888:0,0,0 +) +g1,15583:6630773,26693888 +) +g1,15592:7626635,26693888 +g1,15592:7958589,26693888 +g1,15592:8622497,26693888 +g1,15592:12937898,26693888 +g1,15592:16921346,26693888 +g1,15592:19576978,26693888 +g1,15592:21236748,26693888 +g1,15592:22896518,26693888 +g1,15592:24556288,26693888 +g1,15592:25552150,26693888 +g1,15592:27543874,26693888 +g1,15592:29203644,26693888 +g1,15592:31195368,26693888 +h1,15592:32191230,26693888:0,0,0 +k1,15592:32583029,26693888:391799 +g1,15592:32583029,26693888 +) +(1,15592:6630773,27378743:25952256,431045,112852 +h1,15592:6630773,27378743:0,0,0 +g1,15592:7626635,27378743 +g1,15592:7958589,27378743 +g1,15592:8622497,27378743 +g1,15592:11278129,27378743 +g1,15592:11610083,27378743 +g1,15592:11942037,27378743 +g1,15592:12273991,27378743 +g1,15592:12937899,27378743 +g1,15592:14265715,27378743 +g1,15592:16921347,27378743 +g1,15592:17585255,27378743 +g1,15592:18249163,27378743 +g1,15592:18913071,27378743 +g1,15592:19576979,27378743 +g1,15592:20240887,27378743 +h1,15592:21236749,27378743:0,0,0 +k1,15592:32583029,27378743:11346280 +g1,15592:32583029,27378743 +) +(1,15592:6630773,28063598:25952256,431045,112852 +h1,15592:6630773,28063598:0,0,0 +g1,15592:7626635,28063598 +g1,15592:7958589,28063598 +g1,15592:8622497,28063598 +g1,15592:10282267,28063598 +g1,15592:10614221,28063598 +g1,15592:10946175,28063598 +g1,15592:11278129,28063598 +g1,15592:11610083,28063598 +g1,15592:11942037,28063598 +g1,15592:12273991,28063598 +g1,15592:12937899,28063598 +g1,15592:15925484,28063598 +g1,15592:17917208,28063598 +g1,15592:18581116,28063598 +g1,15592:23892379,28063598 +g1,15592:26879964,28063598 +g1,15592:27543872,28063598 +h1,15592:28207780,28063598:0,0,0 +k1,15592:32583029,28063598:4375249 +g1,15592:32583029,28063598 +) +(1,15592:6630773,28748453:25952256,431045,79822 +h1,15592:6630773,28748453:0,0,0 +g1,15592:7626635,28748453 +g1,15592:7958589,28748453 +g1,15592:8622497,28748453 +g1,15592:9950313,28748453 +g1,15592:10282267,28748453 +g1,15592:10614221,28748453 +g1,15592:10946175,28748453 +g1,15592:11278129,28748453 +g1,15592:11610083,28748453 +g1,15592:11942037,28748453 +g1,15592:12273991,28748453 +g1,15592:12937899,28748453 +g1,15592:14929623,28748453 +g1,15592:16257439,28748453 +g1,15592:18249163,28748453 +g1,15592:18913071,28748453 +g1,15592:19908933,28748453 +h1,15592:20572841,28748453:0,0,0 +k1,15592:32583029,28748453:12010188 +g1,15592:32583029,28748453 +) +(1,15592:6630773,29433308:25952256,431045,112852 +h1,15592:6630773,29433308:0,0,0 +g1,15592:7626635,29433308 +g1,15592:7958589,29433308 +g1,15592:8622497,29433308 +g1,15592:9950313,29433308 +g1,15592:10282267,29433308 +g1,15592:10614221,29433308 +g1,15592:10946175,29433308 +g1,15592:11278129,29433308 +g1,15592:11610083,29433308 +g1,15592:11942037,29433308 +g1,15592:12273991,29433308 +g1,15592:12937899,29433308 +g1,15592:14929623,29433308 +g1,15592:16257439,29433308 +g1,15592:18249163,29433308 +g1,15592:18913071,29433308 +g1,15592:19576979,29433308 +h1,15592:19908933,29433308:0,0,0 +k1,15592:32583029,29433308:12674096 +g1,15592:32583029,29433308 +) +(1,15592:6630773,30118163:25952256,431045,112852 +h1,15592:6630773,30118163:0,0,0 +g1,15592:7626635,30118163 +g1,15592:7958589,30118163 +g1,15592:8622497,30118163 +g1,15592:10282267,30118163 +g1,15592:10614221,30118163 +g1,15592:10946175,30118163 +g1,15592:11278129,30118163 +g1,15592:11610083,30118163 +g1,15592:11942037,30118163 +g1,15592:12273991,30118163 +g1,15592:12937899,30118163 +g1,15592:14929623,30118163 +g1,15592:16257439,30118163 +g1,15592:18249163,30118163 +g1,15592:18913071,30118163 +g1,15592:19576979,30118163 +h1,15592:19908933,30118163:0,0,0 +k1,15592:32583029,30118163:12674096 +g1,15592:32583029,30118163 +) +(1,15592:6630773,30803018:25952256,431045,33029 +h1,15592:6630773,30803018:0,0,0 +g1,15592:7626635,30803018 +g1,15592:7958589,30803018 +g1,15592:8622497,30803018 +g1,15592:10614221,30803018 +g1,15592:10946175,30803018 +g1,15592:11278129,30803018 +g1,15592:11610083,30803018 +g1,15592:11942037,30803018 +g1,15592:12273991,30803018 +g1,15592:12937899,30803018 +g1,15592:14265715,30803018 +h1,15592:14597669,30803018:0,0,0 +k1,15592:32583029,30803018:17985360 +g1,15592:32583029,30803018 +) +(1,15592:6630773,31487873:25952256,431045,33029 +h1,15592:6630773,31487873:0,0,0 +g1,15592:7626635,31487873 +g1,15592:7958589,31487873 +g1,15592:8622497,31487873 +g1,15592:10614221,31487873 +g1,15592:10946175,31487873 +g1,15592:11278129,31487873 +g1,15592:11610083,31487873 +g1,15592:11942037,31487873 +g1,15592:12273991,31487873 +g1,15592:12937899,31487873 +g1,15592:14265715,31487873 +h1,15592:14597669,31487873:0,0,0 +k1,15592:32583029,31487873:17985360 +g1,15592:32583029,31487873 +) +] +) +g1,15593:32583029,31520902 +g1,15593:6630773,31520902 +g1,15593:6630773,31520902 +g1,15593:32583029,31520902 +g1,15593:32583029,31520902 +) +h1,15593:6630773,31717510:0,0,0 +(1,15597:6630773,32582590:25952256,513147,115847 +h1,15596:6630773,32582590:983040,0,0 +k1,15596:8586425,32582590:154723 +k1,15596:10135099,32582590:154723 +k1,15596:11991792,32582590:154723 +k1,15596:12833988,32582590:154723 +k1,15596:15947006,32582590:154723 +k1,15596:18556051,32582590:154722 +(1,15596:18556051,32582590:0,452978,115847 +r1,15629:21728011,32582590:3171960,568825,115847 +k1,15596:18556051,32582590:-3171960 +) +(1,15596:18556051,32582590:3171960,452978,115847 +k1,15596:18556051,32582590:3277 +h1,15596:21724734,32582590:0,411205,112570 +) +k1,15596:21882734,32582590:154723 +k1,15596:22568954,32582590:154723 +k1,15596:25681317,32582590:154723 +k1,15596:28770742,32582590:154723 +k1,15596:30128706,32582590:154723 +k1,15596:32583029,32582590:0 +) +(1,15597:6630773,33447670:25952256,513147,134348 +k1,15596:7816369,33447670:237945 +k1,15596:9609483,33447670:237945 +(1,15596:9609483,33447670:0,452978,115847 +r1,15629:10671172,33447670:1061689,568825,115847 +k1,15596:9609483,33447670:-1061689 +) +(1,15596:9609483,33447670:1061689,452978,115847 +k1,15596:9609483,33447670:3277 +h1,15596:10667895,33447670:0,411205,112570 +) +k1,15596:10909117,33447670:237945 +k1,15596:13488009,33447670:237946 +k1,15596:17217057,33447670:237945 +k1,15596:18474087,33447670:237945 +(1,15596:18474087,33447670:0,452978,115847 +r1,15629:19535776,33447670:1061689,568825,115847 +k1,15596:18474087,33447670:-1061689 +) +(1,15596:18474087,33447670:1061689,452978,115847 +k1,15596:18474087,33447670:3277 +h1,15596:19532499,33447670:0,411205,112570 +) +k1,15596:19773721,33447670:237945 +k1,15596:21971192,33447670:237945 +k1,15596:24852204,33447670:237945 +k1,15596:25776312,33447670:237946 +k1,15596:26784960,33447670:237945 +k1,15596:30095233,33447670:237945 +k1,15596:31524623,33447670:237945 +k1,15597:32583029,33447670:0 +) +(1,15597:6630773,34312750:25952256,505283,126483 +k1,15596:8572458,34312750:268551 +k1,15596:9196868,34312750:268550 +k1,15596:12629497,34312750:268551 +k1,15596:13525883,34312750:268551 +k1,15596:15496403,34312750:268550 +k1,15596:17893563,34312750:268551 +k1,15596:18620211,34312750:268551 +k1,15596:21442044,34312750:268550 +k1,15596:24478836,34312750:268551 +k1,15596:25398815,34312750:268551 +(1,15596:25398815,34312750:0,452978,115847 +r1,15629:27867352,34312750:2468537,568825,115847 +k1,15596:25398815,34312750:-2468537 +) +(1,15596:25398815,34312750:2468537,452978,115847 +k1,15596:25398815,34312750:3277 +h1,15596:27864075,34312750:0,411205,112570 +) +k1,15596:28135902,34312750:268550 +k1,15596:31189078,34312750:268551 +k1,15596:32583029,34312750:0 +) +(1,15597:6630773,35177830:25952256,513147,134348 +k1,15596:9176918,35177830:221583 +k1,15596:10049929,35177830:221583 +k1,15596:11290598,35177830:221584 +k1,15596:14290908,35177830:221583 +k1,15596:16645688,35177830:221583 +k1,15596:17939440,35177830:221583 +k1,15596:21111454,35177830:221583 +k1,15596:21688897,35177830:221583 +k1,15596:24672824,35177830:221584 +k1,15596:27542717,35177830:221583 +k1,15596:29206747,35177830:221583 +(1,15596:29206747,35177830:0,452978,115847 +r1,15629:31675284,35177830:2468537,568825,115847 +k1,15596:29206747,35177830:-2468537 +) +(1,15596:29206747,35177830:2468537,452978,115847 +k1,15596:29206747,35177830:3277 +h1,15596:31672007,35177830:0,411205,112570 +) +k1,15596:31896867,35177830:221583 +k1,15596:32583029,35177830:0 +) +(1,15597:6630773,36042910:25952256,513147,7863 +g1,15596:7618400,36042910 +g1,15596:9117208,36042910 +k1,15597:32583029,36042910:21642610 +g1,15597:32583029,36042910 +) +v1,15599:6630773,36727765:0,393216,0 +(1,15629:6630773,45391356:25952256,9056807,196608 +g1,15629:6630773,45391356 +g1,15629:6630773,45391356 +g1,15629:6434165,45391356 +(1,15629:6434165,45391356:0,9056807,196608 +r1,15629:32779637,45391356:26345472,9253415,196608 +k1,15629:6434165,45391356:-26345472 +) +(1,15629:6434165,45391356:26345472,9056807,196608 +[1,15629:6630773,45391356:25952256,8860199,0 +(1,15601:6630773,36955596:25952256,424439,106246 +(1,15600:6630773,36955596:0,0,0 +g1,15600:6630773,36955596 +g1,15600:6630773,36955596 +g1,15600:6303093,36955596 +(1,15600:6303093,36955596:0,0,0 +) +g1,15600:6630773,36955596 +) +k1,15601:6630773,36955596:0 +h1,15601:12937898,36955596:0,0,0 +k1,15601:32583030,36955596:19645132 +g1,15601:32583030,36955596 +) +(1,15628:6630773,37771523:25952256,424439,8257 +(1,15603:6630773,37771523:0,0,0 +g1,15603:6630773,37771523 +g1,15603:6630773,37771523 +g1,15603:6303093,37771523 +(1,15603:6303093,37771523:0,0,0 +) +g1,15603:6630773,37771523 +) +g1,15628:7626635,37771523 +g1,15628:7958589,37771523 +h1,15628:9618359,37771523:0,0,0 +k1,15628:32583029,37771523:22964670 +g1,15628:32583029,37771523 +) +(1,15628:6630773,38456378:25952256,424439,86428 +h1,15628:6630773,38456378:0,0,0 +g1,15628:7626635,38456378 +g1,15628:7958589,38456378 +g1,15628:9950313,38456378 +g1,15628:10614221,38456378 +g1,15628:15925484,38456378 +g1,15628:18913069,38456378 +g1,15628:19576977,38456378 +h1,15628:20240885,38456378:0,0,0 +k1,15628:32583029,38456378:12342144 +g1,15628:32583029,38456378 +) +(1,15628:6630773,39141233:25952256,398014,0 +h1,15628:6630773,39141233:0,0,0 +h1,15628:7294681,39141233:0,0,0 +k1,15628:32583029,39141233:25288348 +g1,15628:32583029,39141233 +) +(1,15628:6630773,39826088:25952256,424439,106246 +h1,15628:6630773,39826088:0,0,0 +g1,15628:7626635,39826088 +g1,15628:7958589,39826088 +g1,15628:11942036,39826088 +h1,15628:15593529,39826088:0,0,0 +k1,15628:32583029,39826088:16989500 +g1,15628:32583029,39826088 +) +(1,15628:6630773,40510943:25952256,424439,6605 +h1,15628:6630773,40510943:0,0,0 +g1,15628:7626635,40510943 +g1,15628:7958589,40510943 +g1,15628:8290543,40510943 +g1,15628:8622497,40510943 +g1,15628:8954451,40510943 +g1,15628:11942036,40510943 +g1,15628:12273990,40510943 +g1,15628:12605944,40510943 +g1,15628:12937898,40510943 +g1,15628:13269852,40510943 +g1,15628:13601806,40510943 +g1,15628:13933760,40510943 +g1,15628:14265714,40510943 +g1,15628:14597668,40510943 +g1,15628:14929622,40510943 +g1,15628:15261576,40510943 +g1,15628:15593530,40510943 +g1,15628:15925484,40510943 +g1,15628:17917208,40510943 +g1,15628:18249162,40510943 +g1,15628:18581116,40510943 +g1,15628:18913070,40510943 +g1,15628:19245024,40510943 +g1,15628:19576978,40510943 +g1,15628:19908932,40510943 +g1,15628:20240886,40510943 +g1,15628:20572840,40510943 +g1,15628:20904794,40510943 +g1,15628:21236748,40510943 +g1,15628:21568702,40510943 +g1,15628:21900656,40510943 +h1,15628:24888241,40510943:0,0,0 +k1,15628:32583029,40510943:7694788 +g1,15628:32583029,40510943 +) +(1,15628:6630773,41195798:25952256,424439,9908 +h1,15628:6630773,41195798:0,0,0 +g1,15628:7626635,41195798 +g1,15628:7958589,41195798 +g1,15628:9618359,41195798 +g1,15628:9950313,41195798 +g1,15628:10282267,41195798 +g1,15628:13933760,41195798 +g1,15628:14265714,41195798 +g1,15628:14597668,41195798 +g1,15628:16257438,41195798 +g1,15628:16589392,41195798 +g1,15628:16921346,41195798 +g1,15628:17585254,41195798 +g1,15628:20572839,41195798 +g1,15628:20904793,41195798 +g1,15628:21236747,41195798 +g1,15628:22896517,41195798 +g1,15628:23228471,41195798 +g1,15628:23560425,41195798 +k1,15628:23560425,41195798:0 +h1,15628:27211918,41195798:0,0,0 +k1,15628:32583029,41195798:5371111 +g1,15628:32583029,41195798 +) +(1,15628:6630773,41880653:25952256,407923,86428 +h1,15628:6630773,41880653:0,0,0 +g1,15628:7626635,41880653 +g1,15628:7958589,41880653 +g1,15628:9286405,41880653 +g1,15628:13933760,41880653 +g1,15628:14265714,41880653 +g1,15628:14597668,41880653 +g1,15628:15925484,41880653 +g1,15628:17585254,41880653 +g1,15628:20572839,41880653 +g1,15628:20904793,41880653 +g1,15628:21236747,41880653 +g1,15628:22564563,41880653 +k1,15628:22564563,41880653:0 +h1,15628:27211918,41880653:0,0,0 +k1,15628:32583029,41880653:5371111 +g1,15628:32583029,41880653 +) +(1,15628:6630773,42565508:25952256,424439,9908 +h1,15628:6630773,42565508:0,0,0 +g1,15628:7626635,42565508 +g1,15628:7958589,42565508 +g1,15628:10282267,42565508 +g1,15628:13933760,42565508 +g1,15628:14265714,42565508 +g1,15628:14597668,42565508 +g1,15628:16921346,42565508 +g1,15628:17585254,42565508 +g1,15628:20572839,42565508 +g1,15628:20904793,42565508 +g1,15628:21236747,42565508 +g1,15628:23560425,42565508 +g1,15628:24224333,42565508 +h1,15628:27211918,42565508:0,0,0 +k1,15628:32583029,42565508:5371111 +g1,15628:32583029,42565508 +) +(1,15628:6630773,43250363:25952256,407923,9908 +h1,15628:6630773,43250363:0,0,0 +g1,15628:7626635,43250363 +g1,15628:7958589,43250363 +g1,15628:9618359,43250363 +g1,15628:9950313,43250363 +g1,15628:10282267,43250363 +g1,15628:10946175,43250363 +g1,15628:13933760,43250363 +g1,15628:14265714,43250363 +g1,15628:14597668,43250363 +g1,15628:16257438,43250363 +g1,15628:16589392,43250363 +g1,15628:16921346,43250363 +g1,15628:17585254,43250363 +g1,15628:20572839,43250363 +g1,15628:20904793,43250363 +g1,15628:21236747,43250363 +g1,15628:22896517,43250363 +g1,15628:23228471,43250363 +g1,15628:23560425,43250363 +g1,15628:24224333,43250363 +h1,15628:27211918,43250363:0,0,0 +k1,15628:32583029,43250363:5371111 +g1,15628:32583029,43250363 +) +(1,15628:6630773,43935218:25952256,424439,86428 +h1,15628:6630773,43935218:0,0,0 +g1,15628:7626635,43935218 +g1,15628:7958589,43935218 +g1,15628:9286405,43935218 +g1,15628:10946175,43935218 +g1,15628:13933760,43935218 +g1,15628:14265714,43935218 +g1,15628:14597668,43935218 +g1,15628:15925484,43935218 +g1,15628:17585254,43935218 +g1,15628:20572839,43935218 +g1,15628:20904793,43935218 +g1,15628:21236747,43935218 +g1,15628:22564563,43935218 +g1,15628:24224333,43935218 +h1,15628:27211918,43935218:0,0,0 +k1,15628:32583029,43935218:5371111 +g1,15628:32583029,43935218 +) +(1,15628:6630773,44620073:25952256,407923,9908 +h1,15628:6630773,44620073:0,0,0 +g1,15628:7626635,44620073 +g1,15628:7958589,44620073 +g1,15628:9618359,44620073 +g1,15628:9950313,44620073 +g1,15628:10282267,44620073 +g1,15628:10946175,44620073 +g1,15628:13933760,44620073 +g1,15628:14265714,44620073 +g1,15628:14597668,44620073 +g1,15628:16257438,44620073 +g1,15628:16589392,44620073 +g1,15628:16921346,44620073 +g1,15628:20572839,44620073 +g1,15628:20904793,44620073 +g1,15628:21236747,44620073 +g1,15628:22896517,44620073 +g1,15628:23228471,44620073 +g1,15628:23560425,44620073 +g1,15628:24224333,44620073 +h1,15628:27211918,44620073:0,0,0 +k1,15628:32583029,44620073:5371111 +g1,15628:32583029,44620073 +) +(1,15628:6630773,45304928:25952256,398014,86428 +h1,15628:6630773,45304928:0,0,0 +g1,15628:7626635,45304928 +g1,15628:7958589,45304928 +h1,15628:9286405,45304928:0,0,0 +k1,15628:32583029,45304928:23296624 +g1,15628:32583029,45304928 +) +] +) +g1,15629:32583029,45391356 +g1,15629:6630773,45391356 +g1,15629:6630773,45391356 +g1,15629:32583029,45391356 +g1,15629:32583029,45391356 +) +] +(1,15629:32583029,45706769:0,0,0 +g1,15629:32583029,45706769 +) +) +] +(1,15629:6630773,47279633:25952256,0,0 +h1,15629:6630773,47279633:25952256,0,0 +) +] +(1,15629:4262630,4025873:0,0,0 +[1,15629:-473656,4025873:0,0,0 +(1,15629:-473656,-710413:0,0,0 +(1,15629:-473656,-710413:0,0,0 +g1,15629:-473656,-710413 +) +g1,15629:-473656,-710413 ) ] ) ] !23386 -}249 -Input:2650:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2651:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2652:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2653:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}250 +Input:2654:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{250 -[1,15664:4262630,47279633:28320399,43253760,0 -(1,15664:4262630,4025873:0,0,0 -[1,15664:-473656,4025873:0,0,0 -(1,15664:-473656,-710413:0,0,0 -(1,15664:-473656,-644877:0,0,0 -k1,15664:-473656,-644877:-65536 +{251 +[1,15662:4262630,47279633:28320399,43253760,0 +(1,15662:4262630,4025873:0,0,0 +[1,15662:-473656,4025873:0,0,0 +(1,15662:-473656,-710413:0,0,0 +(1,15662:-473656,-644877:0,0,0 +k1,15662:-473656,-644877:-65536 ) -(1,15664:-473656,4736287:0,0,0 -k1,15664:-473656,4736287:5209943 +(1,15662:-473656,4736287:0,0,0 +k1,15662:-473656,4736287:5209943 ) -g1,15664:-473656,-710413 +g1,15662:-473656,-710413 ) ] ) -[1,15664:6630773,47279633:25952256,43253760,0 -[1,15664:6630773,4812305:25952256,786432,0 -(1,15664:6630773,4812305:25952256,485622,11795 -(1,15664:6630773,4812305:25952256,485622,11795 -g1,15664:3078558,4812305 -[1,15664:3078558,4812305:0,0,0 -(1,15664:3078558,2439708:0,1703936,0 -k1,15664:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15664:2537886,2439708:1179648,16384,0 +[1,15662:6630773,47279633:25952256,43253760,0 +[1,15662:6630773,4812305:25952256,786432,0 +(1,15662:6630773,4812305:25952256,485622,11795 +(1,15662:6630773,4812305:25952256,485622,11795 +g1,15662:3078558,4812305 +[1,15662:3078558,4812305:0,0,0 +(1,15662:3078558,2439708:0,1703936,0 +k1,15662:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15662:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15664:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15662:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15664:3078558,4812305:0,0,0 -(1,15664:3078558,2439708:0,1703936,0 -g1,15664:29030814,2439708 -g1,15664:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15664:36151628,1915420:16384,1179648,0 +[1,15662:3078558,4812305:0,0,0 +(1,15662:3078558,2439708:0,1703936,0 +g1,15662:29030814,2439708 +g1,15662:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15662:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15664:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15662:37855564,2439708:1179648,16384,0 ) ) -k1,15664:3078556,2439708:-34777008 +k1,15662:3078556,2439708:-34777008 ) ] -[1,15664:3078558,4812305:0,0,0 -(1,15664:3078558,49800853:0,16384,2228224 -k1,15664:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15664:2537886,49800853:1179648,16384,0 +[1,15662:3078558,4812305:0,0,0 +(1,15662:3078558,49800853:0,16384,2228224 +k1,15662:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15662:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15664:3078558,51504789:16384,1179648,0 -) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 -) -] -) -) -) -] -[1,15664:3078558,4812305:0,0,0 -(1,15664:3078558,49800853:0,16384,2228224 -g1,15664:29030814,49800853 -g1,15664:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15664:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15664:37855564,49800853:1179648,16384,0 -) -) -k1,15664:3078556,49800853:-34777008 -) -] -g1,15664:6630773,4812305 -g1,15664:6630773,4812305 -g1,15664:8412041,4812305 -g1,15664:10435792,4812305 -k1,15664:31387652,4812305:20951860 -) -) -] -[1,15664:6630773,45706769:25952256,40108032,0 -(1,15664:6630773,45706769:25952256,40108032,0 -(1,15664:6630773,45706769:0,0,0 -g1,15664:6630773,45706769 -) -[1,15664:6630773,45706769:25952256,40108032,0 -v1,15631:6630773,6254097:0,393216,0 -(1,15631:6630773,14048362:25952256,8187481,196608 -g1,15631:6630773,14048362 -g1,15631:6630773,14048362 -g1,15631:6434165,14048362 -(1,15631:6434165,14048362:0,8187481,196608 -r1,15664:32779637,14048362:26345472,8384089,196608 -k1,15631:6434165,14048362:-26345472 -) -(1,15631:6434165,14048362:26345472,8187481,196608 -[1,15631:6630773,14048362:25952256,7990873,0 -(1,15630:6630773,6481928:25952256,424439,8257 -h1,15630:6630773,6481928:0,0,0 -g1,15630:7626635,6481928 -g1,15630:7958589,6481928 -g1,15630:8290543,6481928 -g1,15630:8622497,6481928 -g1,15630:8954451,6481928 -g1,15630:9286405,6481928 -g1,15630:13601806,6481928 -g1,15630:16921345,6481928 -g1,15630:21568700,6481928 -h1,15630:22896516,6481928:0,0,0 -k1,15630:32583029,6481928:9686513 -g1,15630:32583029,6481928 -) -(1,15630:6630773,7166783:25952256,407923,9908 -h1,15630:6630773,7166783:0,0,0 -g1,15630:7626635,7166783 -g1,15630:7958589,7166783 -g1,15630:8290543,7166783 -g1,15630:8622497,7166783 -g1,15630:8954451,7166783 -g1,15630:9286405,7166783 -g1,15630:11610083,7166783 -g1,15630:11942037,7166783 -g1,15630:12273991,7166783 -g1,15630:12605945,7166783 -g1,15630:12937899,7166783 -g1,15630:13269853,7166783 -g1,15630:13601807,7166783 -g1,15630:15925485,7166783 -g1,15630:16257439,7166783 -g1,15630:16589393,7166783 -g1,15630:16921347,7166783 -g1,15630:19245025,7166783 -g1,15630:19576979,7166783 -g1,15630:19908933,7166783 -g1,15630:20240887,7166783 -g1,15630:20572841,7166783 -g1,15630:20904795,7166783 -g1,15630:21236749,7166783 -g1,15630:21568703,7166783 -h1,15630:23560427,7166783:0,0,0 -k1,15630:32583029,7166783:9022602 -g1,15630:32583029,7166783 -) -(1,15630:6630773,7851638:25952256,407923,9908 -h1,15630:6630773,7851638:0,0,0 -g1,15630:7626635,7851638 -g1,15630:7958589,7851638 -g1,15630:8290543,7851638 -g1,15630:8622497,7851638 -g1,15630:9286405,7851638 -g1,15630:11278129,7851638 -g1,15630:11610083,7851638 -g1,15630:11942037,7851638 -g1,15630:12273991,7851638 -g1,15630:12605945,7851638 -g1,15630:12937899,7851638 -g1,15630:13269853,7851638 -g1,15630:13601807,7851638 -g1,15630:13933761,7851638 -g1,15630:14265715,7851638 -g1,15630:15593531,7851638 -g1,15630:15925485,7851638 -g1,15630:16257439,7851638 -g1,15630:16589393,7851638 -g1,15630:16921347,7851638 -g1,15630:17253301,7851638 -g1,15630:18913071,7851638 -g1,15630:19245025,7851638 -g1,15630:19576979,7851638 -g1,15630:19908933,7851638 -g1,15630:20240887,7851638 -g1,15630:20572841,7851638 -g1,15630:20904795,7851638 -g1,15630:21236749,7851638 -g1,15630:21568703,7851638 -h1,15630:23228473,7851638:0,0,0 -k1,15630:32583029,7851638:9354556 -g1,15630:32583029,7851638 -) -(1,15630:6630773,8536493:25952256,398014,0 -h1,15630:6630773,8536493:0,0,0 -h1,15630:7294681,8536493:0,0,0 -k1,15630:32583029,8536493:25288348 -g1,15630:32583029,8536493 -) -(1,15630:6630773,9221348:25952256,424439,112852 -h1,15630:6630773,9221348:0,0,0 -g1,15630:7626635,9221348 -g1,15630:7958589,9221348 -g1,15630:10946174,9221348 -g1,15630:12273990,9221348 -g1,15630:13269852,9221348 -h1,15630:13601806,9221348:0,0,0 -k1,15630:32583030,9221348:18981224 -g1,15630:32583030,9221348 -) -(1,15630:6630773,9906203:25952256,398014,0 -h1,15630:6630773,9906203:0,0,0 -h1,15630:7294681,9906203:0,0,0 -k1,15630:32583029,9906203:25288348 -g1,15630:32583029,9906203 -) -(1,15630:6630773,10591058:25952256,431045,106246 -h1,15630:6630773,10591058:0,0,0 -g1,15630:7626635,10591058 -g1,15630:7958589,10591058 -g1,15630:9950313,10591058 -g1,15630:13933760,10591058 -g1,15630:15593530,10591058 -g1,15630:16589392,10591058 -h1,15630:16921346,10591058:0,0,0 -k1,15630:32583029,10591058:15661683 -g1,15630:32583029,10591058 -) -(1,15630:6630773,11275913:25952256,431045,79822 -h1,15630:6630773,11275913:0,0,0 -g1,15630:7626635,11275913 -g1,15630:7958589,11275913 -g1,15630:8622497,11275913 -g1,15630:9950313,11275913 -g1,15630:10282267,11275913 -g1,15630:10946175,11275913 -g1,15630:12937899,11275913 -g1,15630:14265715,11275913 -g1,15630:16257439,11275913 -g1,15630:16921347,11275913 -g1,15630:17917209,11275913 -h1,15630:18581117,11275913:0,0,0 -k1,15630:32583029,11275913:14001912 -g1,15630:32583029,11275913 -) -(1,15630:6630773,11960768:25952256,431045,112852 -h1,15630:6630773,11960768:0,0,0 -g1,15630:7626635,11960768 -g1,15630:7958589,11960768 -g1,15630:8622497,11960768 -g1,15630:9950313,11960768 -g1,15630:10282267,11960768 -g1,15630:10946175,11960768 -g1,15630:12937899,11960768 -g1,15630:14265715,11960768 -g1,15630:16257439,11960768 -g1,15630:16921347,11960768 -g1,15630:17585255,11960768 -h1,15630:17917209,11960768:0,0,0 -k1,15630:32583029,11960768:14665820 -g1,15630:32583029,11960768 -) -(1,15630:6630773,12645623:25952256,431045,112852 -h1,15630:6630773,12645623:0,0,0 -g1,15630:7626635,12645623 -g1,15630:7958589,12645623 -g1,15630:8622497,12645623 -g1,15630:10282267,12645623 -g1,15630:10946175,12645623 -g1,15630:12937899,12645623 -g1,15630:14265715,12645623 -g1,15630:16257439,12645623 -g1,15630:16921347,12645623 -g1,15630:17585255,12645623 -h1,15630:17917209,12645623:0,0,0 -k1,15630:32583029,12645623:14665820 -g1,15630:32583029,12645623 -) -(1,15630:6630773,13330478:25952256,431045,33029 -h1,15630:6630773,13330478:0,0,0 -g1,15630:7626635,13330478 -g1,15630:7958589,13330478 -g1,15630:8622497,13330478 -g1,15630:10946175,13330478 -g1,15630:12273991,13330478 -h1,15630:12605945,13330478:0,0,0 -k1,15630:32583029,13330478:19977084 -g1,15630:32583029,13330478 -) -(1,15630:6630773,14015333:25952256,431045,33029 -h1,15630:6630773,14015333:0,0,0 -g1,15630:7626635,14015333 -g1,15630:7958589,14015333 -g1,15630:8622497,14015333 -g1,15630:10946175,14015333 -g1,15630:12273991,14015333 -h1,15630:12605945,14015333:0,0,0 -k1,15630:32583029,14015333:19977084 -g1,15630:32583029,14015333 -) -] -) -g1,15631:32583029,14048362 -g1,15631:6630773,14048362 -g1,15631:6630773,14048362 -g1,15631:32583029,14048362 -g1,15631:32583029,14048362 -) -h1,15631:6630773,14244970:0,0,0 -v1,15635:6630773,15110050:0,393216,0 -(1,15638:6630773,18977195:25952256,4260361,0 -g1,15638:6630773,18977195 -g1,15638:6237557,18977195 -r1,15664:6368629,18977195:131072,4260361,0 -g1,15638:6567858,18977195 -g1,15638:6764466,18977195 -[1,15638:6764466,18977195:25818563,4260361,0 -(1,15636:6764466,15382527:25818563,665693,196608 -(1,15635:6764466,15382527:0,665693,196608 -r1,15664:7868133,15382527:1103667,862301,196608 -k1,15635:6764466,15382527:-1103667 -) -(1,15635:6764466,15382527:1103667,665693,196608 -) -k1,15635:8150413,15382527:282280 -k1,15635:9876631,15382527:327680 -k1,15635:12630930,15382527:282281 -(1,15635:12630930,15382527:0,452978,115847 -r1,15664:15802890,15382527:3171960,568825,115847 -k1,15635:12630930,15382527:-3171960 -) -(1,15635:12630930,15382527:3171960,452978,115847 -k1,15635:12630930,15382527:3277 -h1,15635:15799613,15382527:0,411205,112570 -) -k1,15635:16085170,15382527:282280 -k1,15635:17558896,15382527:282281 -(1,15635:17558896,15382527:0,452978,115847 -r1,15664:22489416,15382527:4930520,568825,115847 -k1,15635:17558896,15382527:-4930520 -) -(1,15635:17558896,15382527:4930520,452978,115847 -k1,15635:17558896,15382527:3277 -h1,15635:22486139,15382527:0,411205,112570 -) -k1,15635:22771696,15382527:282280 -k1,15635:24245422,15382527:282281 -k1,15635:26457082,15382527:282280 -k1,15635:29501706,15382527:282281 -k1,15635:31391584,15382527:282280 -k1,15635:32583029,15382527:0 -) -(1,15636:6764466,16247607:25818563,513147,134348 -k1,15635:11988930,16247607:163774 -k1,15635:12914233,16247607:163775 -k1,15635:15505461,16247607:163774 -k1,15635:18431579,16247607:163775 -k1,15635:21997982,16247607:163774 -k1,15635:22813184,16247607:163774 -k1,15635:23996044,16247607:163775 -k1,15635:26288427,16247607:163774 -k1,15635:30063236,16247607:163775 -k1,15635:30886302,16247607:163774 -k1,15635:32583029,16247607:0 -) -(1,15636:6764466,17112687:25818563,505283,7863 -k1,15636:32583029,17112687:22981510 -g1,15636:32583029,17112687 -) -(1,15638:6764466,17977767:25818563,513147,126483 -h1,15637:6764466,17977767:983040,0,0 -k1,15637:10304379,17977767:158911 -(1,15637:10304379,17977767:0,452978,115847 -r1,15664:12772916,17977767:2468537,568825,115847 -k1,15637:10304379,17977767:-2468537 -) -(1,15637:10304379,17977767:2468537,452978,115847 -k1,15637:10304379,17977767:3277 -h1,15637:12769639,17977767:0,411205,112570 -) -k1,15637:12931827,17977767:158911 -k1,15637:15081722,17977767:158911 -k1,15637:16259718,17977767:158911 -k1,15637:19180972,17977767:158911 -k1,15637:23441126,17977767:158911 -k1,15637:25827606,17977767:158911 -k1,15637:27005602,17977767:158911 -k1,15637:29898675,17977767:158911 -k1,15638:32583029,17977767:0 -) -(1,15638:6764466,18842847:25818563,505283,134348 -g1,15637:7982780,18842847 -g1,15637:9373454,18842847 -g1,15637:10849980,18842847 -g1,15637:11580706,18842847 -g1,15637:12589305,18842847 -g1,15637:13576932,18842847 -g1,15637:15106542,18842847 -g1,15637:17594944,18842847 -k1,15638:32583029,18842847:13510249 -g1,15638:32583029,18842847 -) -] -g1,15638:32583029,18977195 -) -h1,15638:6630773,18977195:0,0,0 -(1,15641:6630773,19842275:25952256,513147,134348 -h1,15640:6630773,19842275:983040,0,0 -k1,15640:8418377,19842275:176729 -k1,15640:9614190,19842275:176728 -k1,15640:13572346,19842275:176729 -k1,15640:17693032,19842275:176729 -k1,15640:19295168,19842275:176728 -k1,15640:21316735,19842275:176729 -k1,15640:22512549,19842275:176729 -k1,15640:24762181,19842275:176728 -k1,15640:25598202,19842275:176729 -k1,15640:26794016,19842275:176729 -k1,15640:29796656,19842275:176728 -k1,15640:30504882,19842275:176729 -k1,15640:32583029,19842275:0 -) -(1,15641:6630773,20707355:25952256,513147,134348 -k1,15640:9245605,20707355:279784 -k1,15640:10597558,20707355:279784 -k1,15640:11824993,20707355:279784 -k1,15640:13856554,20707355:279784 -k1,15640:15838308,20707355:279784 -k1,15640:17543501,20707355:279785 -k1,15640:19668123,20707355:279784 -k1,15640:20718610,20707355:279784 -k1,15640:24431825,20707355:279784 -k1,15640:26987019,20707355:279784 -k1,15640:27918231,20707355:279784 -k1,15640:32051532,20707355:279784 -k1,15640:32583029,20707355:0 -) -(1,15641:6630773,21572435:25952256,505283,126483 -k1,15640:11778472,21572435:244951 -k1,15640:13214867,21572435:244950 -k1,15640:14248216,21572435:244951 -k1,15640:18093714,21572435:244950 -k1,15640:21128533,21572435:244951 -(1,15640:21128533,21572435:0,459977,115847 -r1,15664:22893646,21572435:1765113,575824,115847 -k1,15640:21128533,21572435:-1765113 -) -(1,15640:21128533,21572435:1765113,459977,115847 -k1,15640:21128533,21572435:3277 -h1,15640:22890369,21572435:0,411205,112570 -) -k1,15640:23138597,21572435:244951 -k1,15640:26501750,21572435:244950 -k1,15640:27938146,21572435:244951 -k1,15640:29790694,21572435:244950 -k1,15640:31054730,21572435:244951 -k1,15641:32583029,21572435:0 -) -(1,15641:6630773,22437515:25952256,513147,134348 -k1,15640:10308603,22437515:197213 -k1,15640:13201312,22437515:197213 -k1,15640:15114911,22437515:197211 -k1,15640:16173267,22437515:197213 -k1,15640:17389565,22437515:197213 -k1,15640:18695647,22437515:197213 -k1,15640:20089548,22437515:197214 -k1,15640:21712169,22437515:197213 -k1,15640:23754220,22437515:197213 -k1,15640:25052438,22437515:197213 -k1,15640:27916966,22437515:197213 -k1,15640:29677213,22437515:197213 -k1,15640:31563944,22437515:197213 -k1,15640:32583029,22437515:0 -) -(1,15641:6630773,23302595:25952256,513147,134348 -k1,15640:8444810,23302595:241828 -k1,15640:9634289,23302595:241828 -k1,15640:10811316,23302595:241828 -k1,15640:11669182,23302595:241828 -k1,15640:12930094,23302595:241827 -k1,15640:14449219,23302595:241828 -k1,15640:16559478,23302595:241828 -k1,15640:17332803,23302595:241828 -k1,15640:18190669,23302595:241828 -k1,15640:20289132,23302595:241828 -k1,15640:21727647,23302595:241828 -k1,15640:26872222,23302595:241827 -k1,15640:27645547,23302595:241828 -k1,15640:29044085,23302595:241828 -k1,15640:29898675,23302595:241828 -k1,15640:31560668,23302595:241828 -k1,15640:32583029,23302595:0 -) -(1,15641:6630773,24167675:25952256,513147,134348 -k1,15640:8065619,24167675:243401 -k1,15640:10657829,24167675:243400 -k1,15640:12114301,24167675:243401 -k1,15640:13751653,24167675:243401 -k1,15640:14350913,24167675:243400 -k1,15640:15529513,24167675:243401 -k1,15640:16432206,24167675:243401 -k1,15640:17832316,24167675:243400 -k1,15640:19602051,24167675:243401 -k1,15640:21534970,24167675:243401 -k1,15640:22566768,24167675:243400 -k1,15640:23341666,24167675:243401 -k1,15640:26239930,24167675:243401 -k1,15640:29118533,24167675:243400 -k1,15640:31391584,24167675:243401 -k1,15640:32583029,24167675:0 -) -(1,15641:6630773,25032755:25952256,426639,126483 -g1,15640:9450787,25032755 -k1,15641:32583030,25032755:18805556 -g1,15641:32583030,25032755 -) -v1,15645:6630773,25717610:0,393216,0 -(1,15649:6630773,26031869:25952256,707475,196608 -g1,15649:6630773,26031869 -g1,15649:6630773,26031869 -g1,15649:6434165,26031869 -(1,15649:6434165,26031869:0,707475,196608 -r1,15664:32779637,26031869:26345472,904083,196608 -k1,15649:6434165,26031869:-26345472 -) -(1,15649:6434165,26031869:26345472,707475,196608 -[1,15649:6630773,26031869:25952256,510867,0 -(1,15647:6630773,25952047:25952256,431045,79822 -(1,15646:6630773,25952047:0,0,0 -g1,15646:6630773,25952047 -g1,15646:6630773,25952047 -g1,15646:6303093,25952047 -(1,15646:6303093,25952047:0,0,0 -) -g1,15646:6630773,25952047 -) -k1,15647:6630773,25952047:0 -h1,15647:10282266,25952047:0,0,0 -k1,15647:32583030,25952047:22300764 -g1,15647:32583030,25952047 -) -] -) -g1,15649:32583029,26031869 -g1,15649:6630773,26031869 -g1,15649:6630773,26031869 -g1,15649:32583029,26031869 -g1,15649:32583029,26031869 -) -h1,15649:6630773,26228477:0,0,0 -(1,15652:6630773,35928591:25952256,9634578,0 -k1,15652:13183781,35928591:6553008 -h1,15651:13183781,35928591:0,0,0 -(1,15651:13183781,35928591:12846240,9634578,0 -(1,15651:13183781,35928591:12846136,9634602,0 -(1,15651:13183781,35928591:12846136,9634602,0 -(1,15651:13183781,35928591:0,9634602,0 -(1,15651:13183781,35928591:0,14208860,0 -(1,15651:13183781,35928591:18945146,14208860,0 -) -k1,15651:13183781,35928591:-18945146 -) -) -g1,15651:26029917,35928591 -) -) -) -g1,15652:26030021,35928591 -k1,15652:32583029,35928591:6553008 -) -(1,15660:6630773,36793671:25952256,513147,134348 -h1,15658:6630773,36793671:983040,0,0 -k1,15658:9407697,36793671:200048 -k1,15658:12613882,36793671:200049 -k1,15658:16297169,36793671:200048 -k1,15658:19051811,36793671:200049 -k1,15658:20443304,36793671:200048 -k1,15658:24205234,36793671:200048 -k1,15658:27189908,36793671:200049 -k1,15658:28381516,36793671:200048 -k1,15658:32583029,36793671:0 -) -(1,15660:6630773,37658751:25952256,513147,134348 -k1,15658:7413071,37658751:166260 -k1,15658:11308985,37658751:166260 -k1,15658:14385698,37658751:166259 -k1,15658:15743403,37658751:166260 -k1,15658:16940544,37658751:166260 -k1,15658:19472654,37658751:166260 -k1,15658:20657998,37658751:166259 -k1,15658:22650746,37658751:166260 -k1,15658:23476298,37658751:166260 -k1,15658:24845799,37658751:166260 -k1,15658:26767768,37658751:166259 -k1,15658:28130715,37658751:166260 -k1,15658:31105193,37658751:166260 -k1,15660:32583029,37658751:0 -) -(1,15660:6630773,38523831:25952256,505283,134348 -k1,15658:9299298,38523831:258766 -k1,15658:12572424,38523831:258470 -k1,15658:14041344,38523831:258470 -k1,15658:16785595,38523831:258470 -k1,15658:20343803,38523831:258470 -k1,15658:21793718,38523831:258470 -k1,15658:27222979,38523831:258470 -k1,15658:29282378,38523831:258470 -k1,15658:30072345,38523831:258470 -k1,15660:32583029,38523831:0 -) -(1,15660:6630773,39388911:25952256,505283,134348 -k1,15658:9411415,39388911:193936 -k1,15658:12083923,39388911:193936 -k1,15658:13671810,39388911:193936 -k1,15658:14636449,39388911:193936 -k1,15658:18822838,39388911:193936 -k1,15658:19668202,39388911:193936 -k1,15658:21287547,39388911:193937 -k1,15658:23326321,39388911:193936 -k1,15658:24711702,39388911:193936 -k1,15658:28326617,39388911:193936 -k1,15658:29286669,39388911:193936 -k1,15658:30499690,39388911:193936 -k1,15658:31931601,39388911:193936 -k1,15658:32583029,39388911:0 -) -(1,15660:6630773,40253991:25952256,513147,134348 -g1,15658:7849087,40253991 -g1,15658:11658039,40253991 -g1,15658:12516560,40253991 -g1,15658:15201570,40253991 -g1,15658:18962681,40253991 -g1,15658:22120205,40253991 -g1,15658:24054827,40253991 -g1,15658:24668899,40253991 -g1,15658:28666595,40253991 -k1,15660:32583029,40253991:3916434 -g1,15660:32583029,40253991 -) -] -(1,15664:32583029,45706769:0,0,0 -g1,15664:32583029,45706769 -) -) -] -(1,15664:6630773,47279633:25952256,0,0 -h1,15664:6630773,47279633:25952256,0,0 -) -] -(1,15664:4262630,4025873:0,0,0 -[1,15664:-473656,4025873:0,0,0 -(1,15664:-473656,-710413:0,0,0 -(1,15664:-473656,-710413:0,0,0 -g1,15664:-473656,-710413 -) -g1,15664:-473656,-710413 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15662:3078558,51504789:16384,1179648,0 +) +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 +) +] +) +) +) +] +[1,15662:3078558,4812305:0,0,0 +(1,15662:3078558,49800853:0,16384,2228224 +g1,15662:29030814,49800853 +g1,15662:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15662:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15662:37855564,49800853:1179648,16384,0 +) +) +k1,15662:3078556,49800853:-34777008 +) +] +g1,15662:6630773,4812305 +g1,15662:6630773,4812305 +g1,15662:8412041,4812305 +g1,15662:10435792,4812305 +k1,15662:31387652,4812305:20951860 +) +) +] +[1,15662:6630773,45706769:25952256,40108032,0 +(1,15662:6630773,45706769:25952256,40108032,0 +(1,15662:6630773,45706769:0,0,0 +g1,15662:6630773,45706769 +) +[1,15662:6630773,45706769:25952256,40108032,0 +v1,15629:6630773,6254097:0,393216,0 +(1,15629:6630773,14048362:25952256,8187481,196608 +g1,15629:6630773,14048362 +g1,15629:6630773,14048362 +g1,15629:6434165,14048362 +(1,15629:6434165,14048362:0,8187481,196608 +r1,15662:32779637,14048362:26345472,8384089,196608 +k1,15629:6434165,14048362:-26345472 +) +(1,15629:6434165,14048362:26345472,8187481,196608 +[1,15629:6630773,14048362:25952256,7990873,0 +(1,15628:6630773,6481928:25952256,424439,8257 +h1,15628:6630773,6481928:0,0,0 +g1,15628:7626635,6481928 +g1,15628:7958589,6481928 +g1,15628:8290543,6481928 +g1,15628:8622497,6481928 +g1,15628:8954451,6481928 +g1,15628:9286405,6481928 +g1,15628:13601806,6481928 +g1,15628:16921345,6481928 +g1,15628:21568700,6481928 +h1,15628:22896516,6481928:0,0,0 +k1,15628:32583029,6481928:9686513 +g1,15628:32583029,6481928 +) +(1,15628:6630773,7166783:25952256,407923,9908 +h1,15628:6630773,7166783:0,0,0 +g1,15628:7626635,7166783 +g1,15628:7958589,7166783 +g1,15628:8290543,7166783 +g1,15628:8622497,7166783 +g1,15628:8954451,7166783 +g1,15628:9286405,7166783 +g1,15628:11610083,7166783 +g1,15628:11942037,7166783 +g1,15628:12273991,7166783 +g1,15628:12605945,7166783 +g1,15628:12937899,7166783 +g1,15628:13269853,7166783 +g1,15628:13601807,7166783 +g1,15628:15925485,7166783 +g1,15628:16257439,7166783 +g1,15628:16589393,7166783 +g1,15628:16921347,7166783 +g1,15628:19245025,7166783 +g1,15628:19576979,7166783 +g1,15628:19908933,7166783 +g1,15628:20240887,7166783 +g1,15628:20572841,7166783 +g1,15628:20904795,7166783 +g1,15628:21236749,7166783 +g1,15628:21568703,7166783 +h1,15628:23560427,7166783:0,0,0 +k1,15628:32583029,7166783:9022602 +g1,15628:32583029,7166783 +) +(1,15628:6630773,7851638:25952256,407923,9908 +h1,15628:6630773,7851638:0,0,0 +g1,15628:7626635,7851638 +g1,15628:7958589,7851638 +g1,15628:8290543,7851638 +g1,15628:8622497,7851638 +g1,15628:9286405,7851638 +g1,15628:11278129,7851638 +g1,15628:11610083,7851638 +g1,15628:11942037,7851638 +g1,15628:12273991,7851638 +g1,15628:12605945,7851638 +g1,15628:12937899,7851638 +g1,15628:13269853,7851638 +g1,15628:13601807,7851638 +g1,15628:13933761,7851638 +g1,15628:14265715,7851638 +g1,15628:15593531,7851638 +g1,15628:15925485,7851638 +g1,15628:16257439,7851638 +g1,15628:16589393,7851638 +g1,15628:16921347,7851638 +g1,15628:17253301,7851638 +g1,15628:18913071,7851638 +g1,15628:19245025,7851638 +g1,15628:19576979,7851638 +g1,15628:19908933,7851638 +g1,15628:20240887,7851638 +g1,15628:20572841,7851638 +g1,15628:20904795,7851638 +g1,15628:21236749,7851638 +g1,15628:21568703,7851638 +h1,15628:23228473,7851638:0,0,0 +k1,15628:32583029,7851638:9354556 +g1,15628:32583029,7851638 +) +(1,15628:6630773,8536493:25952256,398014,0 +h1,15628:6630773,8536493:0,0,0 +h1,15628:7294681,8536493:0,0,0 +k1,15628:32583029,8536493:25288348 +g1,15628:32583029,8536493 +) +(1,15628:6630773,9221348:25952256,424439,112852 +h1,15628:6630773,9221348:0,0,0 +g1,15628:7626635,9221348 +g1,15628:7958589,9221348 +g1,15628:10946174,9221348 +g1,15628:12273990,9221348 +g1,15628:13269852,9221348 +h1,15628:13601806,9221348:0,0,0 +k1,15628:32583030,9221348:18981224 +g1,15628:32583030,9221348 +) +(1,15628:6630773,9906203:25952256,398014,0 +h1,15628:6630773,9906203:0,0,0 +h1,15628:7294681,9906203:0,0,0 +k1,15628:32583029,9906203:25288348 +g1,15628:32583029,9906203 +) +(1,15628:6630773,10591058:25952256,431045,106246 +h1,15628:6630773,10591058:0,0,0 +g1,15628:7626635,10591058 +g1,15628:7958589,10591058 +g1,15628:9950313,10591058 +g1,15628:13933760,10591058 +g1,15628:15593530,10591058 +g1,15628:16589392,10591058 +h1,15628:16921346,10591058:0,0,0 +k1,15628:32583029,10591058:15661683 +g1,15628:32583029,10591058 +) +(1,15628:6630773,11275913:25952256,431045,79822 +h1,15628:6630773,11275913:0,0,0 +g1,15628:7626635,11275913 +g1,15628:7958589,11275913 +g1,15628:8622497,11275913 +g1,15628:9950313,11275913 +g1,15628:10282267,11275913 +g1,15628:10946175,11275913 +g1,15628:12937899,11275913 +g1,15628:14265715,11275913 +g1,15628:16257439,11275913 +g1,15628:16921347,11275913 +g1,15628:17917209,11275913 +h1,15628:18581117,11275913:0,0,0 +k1,15628:32583029,11275913:14001912 +g1,15628:32583029,11275913 +) +(1,15628:6630773,11960768:25952256,431045,112852 +h1,15628:6630773,11960768:0,0,0 +g1,15628:7626635,11960768 +g1,15628:7958589,11960768 +g1,15628:8622497,11960768 +g1,15628:9950313,11960768 +g1,15628:10282267,11960768 +g1,15628:10946175,11960768 +g1,15628:12937899,11960768 +g1,15628:14265715,11960768 +g1,15628:16257439,11960768 +g1,15628:16921347,11960768 +g1,15628:17585255,11960768 +h1,15628:17917209,11960768:0,0,0 +k1,15628:32583029,11960768:14665820 +g1,15628:32583029,11960768 +) +(1,15628:6630773,12645623:25952256,431045,112852 +h1,15628:6630773,12645623:0,0,0 +g1,15628:7626635,12645623 +g1,15628:7958589,12645623 +g1,15628:8622497,12645623 +g1,15628:10282267,12645623 +g1,15628:10946175,12645623 +g1,15628:12937899,12645623 +g1,15628:14265715,12645623 +g1,15628:16257439,12645623 +g1,15628:16921347,12645623 +g1,15628:17585255,12645623 +h1,15628:17917209,12645623:0,0,0 +k1,15628:32583029,12645623:14665820 +g1,15628:32583029,12645623 +) +(1,15628:6630773,13330478:25952256,431045,33029 +h1,15628:6630773,13330478:0,0,0 +g1,15628:7626635,13330478 +g1,15628:7958589,13330478 +g1,15628:8622497,13330478 +g1,15628:10946175,13330478 +g1,15628:12273991,13330478 +h1,15628:12605945,13330478:0,0,0 +k1,15628:32583029,13330478:19977084 +g1,15628:32583029,13330478 +) +(1,15628:6630773,14015333:25952256,431045,33029 +h1,15628:6630773,14015333:0,0,0 +g1,15628:7626635,14015333 +g1,15628:7958589,14015333 +g1,15628:8622497,14015333 +g1,15628:10946175,14015333 +g1,15628:12273991,14015333 +h1,15628:12605945,14015333:0,0,0 +k1,15628:32583029,14015333:19977084 +g1,15628:32583029,14015333 +) +] +) +g1,15629:32583029,14048362 +g1,15629:6630773,14048362 +g1,15629:6630773,14048362 +g1,15629:32583029,14048362 +g1,15629:32583029,14048362 +) +h1,15629:6630773,14244970:0,0,0 +v1,15633:6630773,15110050:0,393216,0 +(1,15636:6630773,18977195:25952256,4260361,0 +g1,15636:6630773,18977195 +g1,15636:6237557,18977195 +r1,15662:6368629,18977195:131072,4260361,0 +g1,15636:6567858,18977195 +g1,15636:6764466,18977195 +[1,15636:6764466,18977195:25818563,4260361,0 +(1,15634:6764466,15382527:25818563,665693,196608 +(1,15633:6764466,15382527:0,665693,196608 +r1,15662:7868133,15382527:1103667,862301,196608 +k1,15633:6764466,15382527:-1103667 +) +(1,15633:6764466,15382527:1103667,665693,196608 +) +k1,15633:8150413,15382527:282280 +k1,15633:9876631,15382527:327680 +k1,15633:12630930,15382527:282281 +(1,15633:12630930,15382527:0,452978,115847 +r1,15662:15802890,15382527:3171960,568825,115847 +k1,15633:12630930,15382527:-3171960 +) +(1,15633:12630930,15382527:3171960,452978,115847 +k1,15633:12630930,15382527:3277 +h1,15633:15799613,15382527:0,411205,112570 +) +k1,15633:16085170,15382527:282280 +k1,15633:17558896,15382527:282281 +(1,15633:17558896,15382527:0,452978,115847 +r1,15662:22489416,15382527:4930520,568825,115847 +k1,15633:17558896,15382527:-4930520 +) +(1,15633:17558896,15382527:4930520,452978,115847 +k1,15633:17558896,15382527:3277 +h1,15633:22486139,15382527:0,411205,112570 +) +k1,15633:22771696,15382527:282280 +k1,15633:24245422,15382527:282281 +k1,15633:26457082,15382527:282280 +k1,15633:29501706,15382527:282281 +k1,15633:31391584,15382527:282280 +k1,15633:32583029,15382527:0 +) +(1,15634:6764466,16247607:25818563,513147,134348 +k1,15633:11988930,16247607:163774 +k1,15633:12914233,16247607:163775 +k1,15633:15505461,16247607:163774 +k1,15633:18431579,16247607:163775 +k1,15633:21997982,16247607:163774 +k1,15633:22813184,16247607:163774 +k1,15633:23996044,16247607:163775 +k1,15633:26288427,16247607:163774 +k1,15633:30063236,16247607:163775 +k1,15633:30886302,16247607:163774 +k1,15633:32583029,16247607:0 +) +(1,15634:6764466,17112687:25818563,505283,7863 +k1,15634:32583029,17112687:22981510 +g1,15634:32583029,17112687 +) +(1,15636:6764466,17977767:25818563,513147,126483 +h1,15635:6764466,17977767:983040,0,0 +k1,15635:10304379,17977767:158911 +(1,15635:10304379,17977767:0,452978,115847 +r1,15662:12772916,17977767:2468537,568825,115847 +k1,15635:10304379,17977767:-2468537 +) +(1,15635:10304379,17977767:2468537,452978,115847 +k1,15635:10304379,17977767:3277 +h1,15635:12769639,17977767:0,411205,112570 +) +k1,15635:12931827,17977767:158911 +k1,15635:15081722,17977767:158911 +k1,15635:16259718,17977767:158911 +k1,15635:19180972,17977767:158911 +k1,15635:23441126,17977767:158911 +k1,15635:25827606,17977767:158911 +k1,15635:27005602,17977767:158911 +k1,15635:29898675,17977767:158911 +k1,15636:32583029,17977767:0 +) +(1,15636:6764466,18842847:25818563,505283,134348 +g1,15635:7982780,18842847 +g1,15635:9373454,18842847 +g1,15635:10849980,18842847 +g1,15635:11580706,18842847 +g1,15635:12589305,18842847 +g1,15635:13576932,18842847 +g1,15635:15106542,18842847 +g1,15635:17594944,18842847 +k1,15636:32583029,18842847:13510249 +g1,15636:32583029,18842847 +) +] +g1,15636:32583029,18977195 +) +h1,15636:6630773,18977195:0,0,0 +(1,15639:6630773,19842275:25952256,513147,134348 +h1,15638:6630773,19842275:983040,0,0 +k1,15638:8403904,19842275:162256 +k1,15638:9585245,19842275:162256 +k1,15638:13528928,19842275:162256 +k1,15638:17635141,19842275:162256 +k1,15638:19222805,19842275:162256 +k1,15638:21403570,19842275:162256 +k1,15638:22584912,19842275:162257 +k1,15638:24820072,19842275:162256 +k1,15638:25641620,19842275:162256 +k1,15638:26822961,19842275:162256 +k1,15638:29811129,19842275:162256 +k1,15638:30504882,19842275:162256 +k1,15638:32583029,19842275:0 +) +(1,15639:6630773,20707355:25952256,513147,134348 +k1,15638:9245605,20707355:279784 +k1,15638:10597558,20707355:279784 +k1,15638:11824993,20707355:279784 +k1,15638:13856554,20707355:279784 +k1,15638:15838308,20707355:279784 +k1,15638:17543501,20707355:279785 +k1,15638:19668123,20707355:279784 +k1,15638:20718610,20707355:279784 +k1,15638:24431825,20707355:279784 +k1,15638:26987019,20707355:279784 +k1,15638:27918231,20707355:279784 +k1,15638:32051532,20707355:279784 +k1,15638:32583029,20707355:0 +) +(1,15639:6630773,21572435:25952256,505283,126483 +k1,15638:11778472,21572435:244951 +k1,15638:13214867,21572435:244950 +k1,15638:14248216,21572435:244951 +k1,15638:18093714,21572435:244950 +k1,15638:21128533,21572435:244951 +(1,15638:21128533,21572435:0,459977,115847 +r1,15662:22893646,21572435:1765113,575824,115847 +k1,15638:21128533,21572435:-1765113 +) +(1,15638:21128533,21572435:1765113,459977,115847 +k1,15638:21128533,21572435:3277 +h1,15638:22890369,21572435:0,411205,112570 +) +k1,15638:23138597,21572435:244951 +k1,15638:26501750,21572435:244950 +k1,15638:27938146,21572435:244951 +k1,15638:29790694,21572435:244950 +k1,15638:31054730,21572435:244951 +k1,15639:32583029,21572435:0 +) +(1,15639:6630773,22437515:25952256,513147,134348 +k1,15638:10308603,22437515:197213 +k1,15638:13201312,22437515:197213 +k1,15638:15114911,22437515:197211 +k1,15638:16173267,22437515:197213 +k1,15638:17389565,22437515:197213 +k1,15638:18695647,22437515:197213 +k1,15638:20089548,22437515:197214 +k1,15638:21712169,22437515:197213 +k1,15638:23754220,22437515:197213 +k1,15638:25052438,22437515:197213 +k1,15638:27916966,22437515:197213 +k1,15638:29677213,22437515:197213 +k1,15638:31563944,22437515:197213 +k1,15638:32583029,22437515:0 +) +(1,15639:6630773,23302595:25952256,513147,134348 +k1,15638:8444810,23302595:241828 +k1,15638:9634289,23302595:241828 +k1,15638:10811316,23302595:241828 +k1,15638:11669182,23302595:241828 +k1,15638:12930094,23302595:241827 +k1,15638:14449219,23302595:241828 +k1,15638:16559478,23302595:241828 +k1,15638:17332803,23302595:241828 +k1,15638:18190669,23302595:241828 +k1,15638:20289132,23302595:241828 +k1,15638:21727647,23302595:241828 +k1,15638:26872222,23302595:241827 +k1,15638:27645547,23302595:241828 +k1,15638:29044085,23302595:241828 +k1,15638:29898675,23302595:241828 +k1,15638:31560668,23302595:241828 +k1,15638:32583029,23302595:0 +) +(1,15639:6630773,24167675:25952256,513147,134348 +k1,15638:8065619,24167675:243401 +k1,15638:10657829,24167675:243400 +k1,15638:12114301,24167675:243401 +k1,15638:13751653,24167675:243401 +k1,15638:14350913,24167675:243400 +k1,15638:15529513,24167675:243401 +k1,15638:16432206,24167675:243401 +k1,15638:17832316,24167675:243400 +k1,15638:19602051,24167675:243401 +k1,15638:21534970,24167675:243401 +k1,15638:22566768,24167675:243400 +k1,15638:23341666,24167675:243401 +k1,15638:26239930,24167675:243401 +k1,15638:29118533,24167675:243400 +k1,15638:31391584,24167675:243401 +k1,15638:32583029,24167675:0 +) +(1,15639:6630773,25032755:25952256,426639,126483 +g1,15638:9450787,25032755 +k1,15639:32583030,25032755:18805556 +g1,15639:32583030,25032755 +) +v1,15643:6630773,25717610:0,393216,0 +(1,15647:6630773,26031869:25952256,707475,196608 +g1,15647:6630773,26031869 +g1,15647:6630773,26031869 +g1,15647:6434165,26031869 +(1,15647:6434165,26031869:0,707475,196608 +r1,15662:32779637,26031869:26345472,904083,196608 +k1,15647:6434165,26031869:-26345472 +) +(1,15647:6434165,26031869:26345472,707475,196608 +[1,15647:6630773,26031869:25952256,510867,0 +(1,15645:6630773,25952047:25952256,431045,79822 +(1,15644:6630773,25952047:0,0,0 +g1,15644:6630773,25952047 +g1,15644:6630773,25952047 +g1,15644:6303093,25952047 +(1,15644:6303093,25952047:0,0,0 +) +g1,15644:6630773,25952047 +) +k1,15645:6630773,25952047:0 +h1,15645:10282266,25952047:0,0,0 +k1,15645:32583030,25952047:22300764 +g1,15645:32583030,25952047 +) +] +) +g1,15647:32583029,26031869 +g1,15647:6630773,26031869 +g1,15647:6630773,26031869 +g1,15647:32583029,26031869 +g1,15647:32583029,26031869 +) +h1,15647:6630773,26228477:0,0,0 +(1,15650:6630773,35928591:25952256,9634578,0 +k1,15650:13183781,35928591:6553008 +h1,15649:13183781,35928591:0,0,0 +(1,15649:13183781,35928591:12846240,9634578,0 +(1,15649:13183781,35928591:12846136,9634602,0 +(1,15649:13183781,35928591:12846136,9634602,0 +(1,15649:13183781,35928591:0,9634602,0 +(1,15649:13183781,35928591:0,14208860,0 +(1,15649:13183781,35928591:18945146,14208860,0 +) +k1,15649:13183781,35928591:-18945146 +) +) +g1,15649:26029917,35928591 +) +) +) +g1,15650:26030021,35928591 +k1,15650:32583029,35928591:6553008 +) +(1,15658:6630773,36793671:25952256,513147,134348 +h1,15656:6630773,36793671:983040,0,0 +k1,15656:9407697,36793671:200048 +k1,15656:12613882,36793671:200049 +k1,15656:16297169,36793671:200048 +k1,15656:19051811,36793671:200049 +k1,15656:20443304,36793671:200048 +k1,15656:24205234,36793671:200048 +k1,15656:27189908,36793671:200049 +k1,15656:28381516,36793671:200048 +k1,15656:32583029,36793671:0 +) +(1,15658:6630773,37658751:25952256,513147,134348 +k1,15656:7413071,37658751:166260 +k1,15656:11308985,37658751:166260 +k1,15656:14385698,37658751:166259 +k1,15656:15743403,37658751:166260 +k1,15656:16940544,37658751:166260 +k1,15656:19472654,37658751:166260 +k1,15656:20657998,37658751:166259 +k1,15656:22650746,37658751:166260 +k1,15656:23476298,37658751:166260 +k1,15656:24845799,37658751:166260 +k1,15656:26767768,37658751:166259 +k1,15656:28130715,37658751:166260 +k1,15656:31105193,37658751:166260 +k1,15658:32583029,37658751:0 +) +(1,15658:6630773,38523831:25952256,505283,134348 +k1,15656:9299298,38523831:258766 +k1,15656:12572424,38523831:258470 +k1,15656:14041344,38523831:258470 +k1,15656:16785595,38523831:258470 +k1,15656:20343803,38523831:258470 +k1,15656:21793718,38523831:258470 +k1,15656:27222979,38523831:258470 +k1,15656:29282378,38523831:258470 +k1,15656:30072345,38523831:258470 +k1,15658:32583029,38523831:0 +) +(1,15658:6630773,39388911:25952256,505283,134348 +k1,15656:9411415,39388911:193936 +k1,15656:12083923,39388911:193936 +k1,15656:13671810,39388911:193936 +k1,15656:14636449,39388911:193936 +k1,15656:18822838,39388911:193936 +k1,15656:19668202,39388911:193936 +k1,15656:21287547,39388911:193937 +k1,15656:23326321,39388911:193936 +k1,15656:24711702,39388911:193936 +k1,15656:28326617,39388911:193936 +k1,15656:29286669,39388911:193936 +k1,15656:30499690,39388911:193936 +k1,15656:31931601,39388911:193936 +k1,15656:32583029,39388911:0 +) +(1,15658:6630773,40253991:25952256,513147,134348 +g1,15656:7849087,40253991 +g1,15656:11658039,40253991 +g1,15656:12516560,40253991 +g1,15656:15201570,40253991 +g1,15656:18962681,40253991 +g1,15656:22120205,40253991 +g1,15656:24054827,40253991 +g1,15656:24668899,40253991 +g1,15656:28666595,40253991 +k1,15658:32583029,40253991:3916434 +g1,15658:32583029,40253991 +) +] +(1,15662:32583029,45706769:0,0,0 +g1,15662:32583029,45706769 +) +) +] +(1,15662:6630773,47279633:25952256,0,0 +h1,15662:6630773,47279633:25952256,0,0 +) +] +(1,15662:4262630,4025873:0,0,0 +[1,15662:-473656,4025873:0,0,0 +(1,15662:-473656,-710413:0,0,0 +(1,15662:-473656,-710413:0,0,0 +g1,15662:-473656,-710413 +) +g1,15662:-473656,-710413 ) ] ) ] !19361 -}250 -Input:2654:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}251 Input:2658:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2659:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2660:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -273643,9062 +273846,9063 @@ Input:2667:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2668:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2669:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2670:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2671:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2672:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2674:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{251 -[1,15714:4262630,47279633:28320399,43253760,0 -(1,15714:4262630,4025873:0,0,0 -[1,15714:-473656,4025873:0,0,0 -(1,15714:-473656,-710413:0,0,0 -(1,15714:-473656,-644877:0,0,0 -k1,15714:-473656,-644877:-65536 +{252 +[1,15712:4262630,47279633:28320399,43253760,0 +(1,15712:4262630,4025873:0,0,0 +[1,15712:-473656,4025873:0,0,0 +(1,15712:-473656,-710413:0,0,0 +(1,15712:-473656,-644877:0,0,0 +k1,15712:-473656,-644877:-65536 ) -(1,15714:-473656,4736287:0,0,0 -k1,15714:-473656,4736287:5209943 +(1,15712:-473656,4736287:0,0,0 +k1,15712:-473656,4736287:5209943 ) -g1,15714:-473656,-710413 +g1,15712:-473656,-710413 ) ] ) -[1,15714:6630773,47279633:25952256,43253760,0 -[1,15714:6630773,4812305:25952256,786432,0 -(1,15714:6630773,4812305:25952256,513147,126483 -(1,15714:6630773,4812305:25952256,513147,126483 -g1,15714:3078558,4812305 -[1,15714:3078558,4812305:0,0,0 -(1,15714:3078558,2439708:0,1703936,0 -k1,15714:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15714:2537886,2439708:1179648,16384,0 +[1,15712:6630773,47279633:25952256,43253760,0 +[1,15712:6630773,4812305:25952256,786432,0 +(1,15712:6630773,4812305:25952256,513147,126483 +(1,15712:6630773,4812305:25952256,513147,126483 +g1,15712:3078558,4812305 +[1,15712:3078558,4812305:0,0,0 +(1,15712:3078558,2439708:0,1703936,0 +k1,15712:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15712:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15714:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15712:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15714:3078558,4812305:0,0,0 -(1,15714:3078558,2439708:0,1703936,0 -g1,15714:29030814,2439708 -g1,15714:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15714:36151628,1915420:16384,1179648,0 +[1,15712:3078558,4812305:0,0,0 +(1,15712:3078558,2439708:0,1703936,0 +g1,15712:29030814,2439708 +g1,15712:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15712:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15714:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15712:37855564,2439708:1179648,16384,0 ) ) -k1,15714:3078556,2439708:-34777008 +k1,15712:3078556,2439708:-34777008 ) ] -[1,15714:3078558,4812305:0,0,0 -(1,15714:3078558,49800853:0,16384,2228224 -k1,15714:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15714:2537886,49800853:1179648,16384,0 +[1,15712:3078558,4812305:0,0,0 +(1,15712:3078558,49800853:0,16384,2228224 +k1,15712:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15712:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15714:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15712:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15714:3078558,4812305:0,0,0 -(1,15714:3078558,49800853:0,16384,2228224 -g1,15714:29030814,49800853 -g1,15714:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15714:36151628,51504789:16384,1179648,0 +[1,15712:3078558,4812305:0,0,0 +(1,15712:3078558,49800853:0,16384,2228224 +g1,15712:29030814,49800853 +g1,15712:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15712:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15714:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15712:37855564,49800853:1179648,16384,0 ) -) -k1,15714:3078556,49800853:-34777008 -) -] -g1,15714:6630773,4812305 -k1,15714:19575446,4812305:11749296 -g1,15714:21198117,4812305 -g1,15714:21985204,4812305 -g1,15714:24539797,4812305 -g1,15714:25949476,4812305 -g1,15714:28728857,4812305 -g1,15714:29852144,4812305 -) -) -] -[1,15714:6630773,45706769:25952256,40108032,0 -(1,15714:6630773,45706769:25952256,40108032,0 -(1,15714:6630773,45706769:0,0,0 -g1,15714:6630773,45706769 -) -[1,15714:6630773,45706769:25952256,40108032,0 -(1,15661:6630773,6254097:25952256,32768,229376 -(1,15661:6630773,6254097:0,32768,229376 -(1,15661:6630773,6254097:5505024,32768,229376 -r1,15714:12135797,6254097:5505024,262144,229376 -) -k1,15661:6630773,6254097:-5505024 -) -(1,15661:6630773,6254097:25952256,32768,0 -r1,15714:32583029,6254097:25952256,32768,0 -) -) -(1,15661:6630773,7885949:25952256,606339,14155 -(1,15661:6630773,7885949:2464678,573309,14155 -g1,15661:6630773,7885949 -g1,15661:9095451,7885949 -) -g1,15661:14141199,7885949 -k1,15661:32583029,7885949:14888730 -g1,15661:32583029,7885949 -) -(1,15664:6630773,9144245:25952256,513147,126483 -k1,15663:7729016,9144245:224648 -k1,15663:8972749,9144245:224648 -k1,15663:11982022,9144245:224648 -k1,15663:15380579,9144245:224648 -k1,15663:17460551,9144245:224648 -k1,15663:18676759,9144245:224648 -k1,15663:22268647,9144245:224648 -k1,15663:23179456,9144245:224647 -k1,15663:24870800,9144245:224648 -k1,15663:25561409,9144245:224648 -k1,15663:26402095,9144245:224648 -k1,15663:28318883,9144245:224648 -k1,15663:30240913,9144245:224648 -k1,15663:31333913,9144245:224648 -k1,15664:32583029,9144245:0 -) -(1,15664:6630773,10009325:25952256,513147,126483 -k1,15663:9198692,10009325:211900 -k1,15663:12081838,10009325:211899 -k1,15663:16059437,10009325:211900 -k1,15663:19112978,10009325:211900 -k1,15663:20134247,10009325:211899 -k1,15663:21365232,10009325:211900 -k1,15663:22610635,10009325:211900 -k1,15663:23481826,10009325:211899 -k1,15663:25681433,10009325:211900 -k1,15663:28940757,10009325:211900 -k1,15663:30171741,10009325:211899 -k1,15663:31333913,10009325:211900 -k1,15664:32583029,10009325:0 -) -(1,15664:6630773,10874405:25952256,513147,126483 -k1,15663:8816875,10874405:189220 -k1,15663:9618857,10874405:189220 -k1,15663:11409778,10874405:189221 -k1,15663:12755708,10874405:189220 -k1,15663:15818682,10874405:189220 -k1,15663:18692912,10874405:189220 -k1,15663:20714519,10874405:189220 -k1,15663:21895299,10874405:189220 -k1,15663:23836297,10874405:189221 -k1,15663:26787860,10874405:189220 -k1,15663:30837806,10874405:189220 -k1,15664:32583029,10874405:0 -) -(1,15664:6630773,11739485:25952256,513147,126483 -k1,15663:7952916,11739485:176574 -k1,15663:11087131,11739485:176575 -k1,15663:12455150,11739485:176574 -k1,15663:12987584,11739485:176574 -k1,15663:14297276,11739485:176574 -k1,15663:15133143,11739485:176575 -k1,15663:16948772,11739485:176574 -k1,15663:18116906,11739485:176574 -k1,15663:22494993,11739485:176574 -k1,15663:23287606,11739485:176575 -k1,15663:24898108,11739485:176574 -k1,15663:25489502,11739485:176551 -k1,15663:28865545,11739485:176575 -k1,15663:30238806,11739485:176574 -k1,15663:32583029,11739485:0 -) -(1,15664:6630773,12604565:25952256,513147,126483 -k1,15663:9148364,12604565:238904 -k1,15663:10880178,12604565:238904 -k1,15663:12185353,12604565:238904 -k1,15663:15093537,12604565:238903 -k1,15663:17029168,12604565:238904 -k1,15663:20052697,12604565:238904 -k1,15663:20907639,12604565:238904 -k1,15663:23180781,12604565:238904 -k1,15663:23877782,12604565:238904 -k1,15663:25492286,12604565:238903 -k1,15663:28491566,12604565:238904 -k1,15663:29086330,12604565:238904 -k1,15663:30458352,12604565:238904 -k1,15663:32583029,12604565:0 -) -(1,15664:6630773,13469645:25952256,513147,126483 -g1,15663:9821721,13469645 -g1,15663:10968601,13469645 -g1,15663:12859970,13469645 -g1,15663:13718491,13469645 -g1,15663:14936805,13469645 -g1,15663:18441015,13469645 -g1,15663:20153470,13469645 -k1,15664:32583029,13469645:10890119 -g1,15664:32583029,13469645 -) -(1,15665:6630773,15586463:25952256,564462,139132 -(1,15665:6630773,15586463:2899444,525533,12975 -g1,15665:6630773,15586463 -g1,15665:9530217,15586463 -) -g1,15665:14155486,15586463 -g1,15665:17349056,15586463 -g1,15665:18318662,15586463 -k1,15665:32583029,15586463:11155142 -g1,15665:32583029,15586463 -) -(1,15669:6630773,16844759:25952256,505283,126483 -k1,15668:10604221,16844759:169083 -k1,15668:13557928,16844759:169082 -k1,15668:15079674,16844759:169083 -k1,15668:16516223,16844759:169083 -k1,15668:19189437,16844759:169083 -k1,15668:21590020,16844759:169082 -k1,15668:24632857,16844759:169083 -k1,15668:27643581,16844759:169083 -k1,15668:32583029,16844759:0 -) -(1,15669:6630773,17709839:25952256,513147,134348 -k1,15668:7595089,17709839:278154 -k1,15668:9195103,17709839:278153 -k1,15668:10132548,17709839:278153 -k1,15668:10766562,17709839:278154 -k1,15668:12917735,17709839:278154 -k1,15668:15924152,17709839:278153 -k1,15668:16830141,17709839:278154 -k1,15668:19819518,17709839:278153 -k1,15668:20555769,17709839:278154 -k1,15668:21365419,17709839:278153 -k1,15668:23364548,17709839:278154 -k1,15668:24294129,17709839:278153 -k1,15668:25664767,17709839:278153 -k1,15668:29672575,17709839:278154 -k1,15668:32583029,17709839:0 -) -(1,15669:6630773,18574919:25952256,513147,126483 -k1,15668:7834810,18574919:256386 -k1,15668:11951922,18574919:256386 -k1,15668:13597671,18574919:256386 -k1,15668:16408650,18574919:256386 -k1,15668:17281074,18574919:256386 -k1,15668:18125973,18574919:256386 -k1,15668:20453298,18574919:256387 -k1,15668:21657335,18574919:256386 -k1,15668:24038398,18574919:256386 -k1,15668:26165837,18574919:256386 -k1,15668:27375772,18574919:256386 -k1,15668:28764620,18574919:256386 -k1,15668:30407748,18574919:256386 -k1,15668:31970267,18574919:256386 -k1,15668:32583029,18574919:0 -) -(1,15669:6630773,19439999:25952256,505283,126483 -k1,15668:10688841,19439999:182924 -k1,15668:13306411,19439999:182907 -k1,15668:14172220,19439999:182924 -k1,15668:17527087,19439999:182924 -k1,15668:18337845,19439999:182923 -k1,15668:19539854,19439999:182924 -k1,15668:21376251,19439999:182924 -k1,15668:22797150,19439999:182924 -k1,15668:23666235,19439999:182923 -(1,15668:23666235,19439999:0,452978,115847 -r1,15714:25431348,19439999:1765113,568825,115847 -k1,15668:23666235,19439999:-1765113 -) -(1,15668:23666235,19439999:1765113,452978,115847 -k1,15668:23666235,19439999:3277 -h1,15668:25428071,19439999:0,411205,112570 -) -k1,15668:25614272,19439999:182924 -k1,15668:26328693,19439999:182924 -k1,15668:26867477,19439999:182924 -k1,15668:29692812,19439999:182923 -k1,15668:31160242,19439999:182924 -k1,15668:32583029,19439999:0 -) -(1,15669:6630773,20305079:25952256,505283,126483 -g1,15668:9880703,20305079 -(1,15668:9880703,20305079:0,452978,115847 -r1,15714:11294104,20305079:1413401,568825,115847 -k1,15668:9880703,20305079:-1413401 -) -(1,15668:9880703,20305079:1413401,452978,115847 -k1,15668:9880703,20305079:3277 -h1,15668:11290827,20305079:0,411205,112570 -) -g1,15668:11667003,20305079 -(1,15668:11667003,20305079:0,452978,115847 -r1,15714:14487252,20305079:2820249,568825,115847 -k1,15668:11667003,20305079:-2820249 -) -(1,15668:11667003,20305079:2820249,452978,115847 -k1,15668:11667003,20305079:3277 -h1,15668:14483975,20305079:0,411205,112570 -) -g1,15668:14686481,20305079 -g1,15668:15417207,20305079 -g1,15668:15972296,20305079 -g1,15668:18813937,20305079 -g1,15668:20297672,20305079 -g1,15668:21919688,20305079 -g1,15668:25169618,20305079 -(1,15668:25169618,20305079:0,452978,115847 -r1,15714:26934731,20305079:1765113,568825,115847 -k1,15668:25169618,20305079:-1765113 -) -(1,15668:25169618,20305079:1765113,452978,115847 -k1,15668:25169618,20305079:3277 -h1,15668:26931454,20305079:0,411205,112570 -) -k1,15669:32583029,20305079:5595870 -g1,15669:32583029,20305079 -) -(1,15671:6630773,21170159:25952256,513147,134348 -h1,15670:6630773,21170159:983040,0,0 -k1,15670:11778700,21170159:360522 -k1,15670:14126929,21170159:360522 -k1,15670:17361206,21170159:360523 -k1,15670:18337766,21170159:360522 -k1,15670:20132216,21170159:360522 -k1,15670:20907419,21170159:360360 -k1,15670:23559735,21170159:360522 -k1,15670:24939343,21170159:360523 -k1,15670:26392350,21170159:360522 -k1,15670:27412164,21170159:360522 -k1,15670:30155575,21170159:360522 -k1,15670:32583029,21170159:0 -) -(1,15671:6630773,22035239:25952256,513147,115847 -(1,15670:6816895,22035239:0,452978,115847 -r1,15714:9285432,22035239:2468537,568825,115847 -k1,15670:6816895,22035239:-2468537 -) -(1,15670:6816895,22035239:2468537,452978,115847 -k1,15670:6816895,22035239:3277 -h1,15670:9282155,22035239:0,411205,112570 -) -k1,15670:9749352,22035239:256826 -k1,15670:10815549,22035239:256827 -k1,15670:12091460,22035239:256826 -k1,15670:15241701,22035239:256826 -k1,15670:16798106,22035239:256826 -k1,15670:18419393,22035239:256827 -k1,15670:19335511,22035239:256826 -k1,15670:20611422,22035239:256826 -k1,15670:22855955,22035239:256826 -k1,15670:25829905,22035239:256827 -k1,15670:27283418,22035239:256826 -k1,15670:31169628,22035239:256826 -(1,15670:31169628,22035239:0,452978,115847 -r1,15714:32583029,22035239:1413401,568825,115847 -k1,15670:31169628,22035239:-1413401 -) -(1,15670:31169628,22035239:1413401,452978,115847 -k1,15670:31169628,22035239:3277 -h1,15670:32579752,22035239:0,411205,112570 -) -k1,15670:32583029,22035239:0 -) -(1,15671:6630773,22900319:25952256,513147,134348 -k1,15670:8203637,22900319:183501 -k1,15670:9495352,22900319:183501 -k1,15670:13040850,22900319:183501 -k1,15670:14493127,22900319:183500 -k1,15670:19350000,22900319:183501 -k1,15670:20481152,22900319:183501 -k1,15670:22980695,22900319:183501 -k1,15670:23823488,22900319:183501 -k1,15670:25661773,22900319:183501 -k1,15670:28156072,22900319:183500 -k1,15670:28998865,22900319:183501 -k1,15670:30354805,22900319:183501 -k1,15670:31069803,22900319:183501 -k1,15670:32583029,22900319:0 -) -(1,15671:6630773,23765399:25952256,505283,126483 -g1,15670:7446040,23765399 -g1,15670:8664354,23765399 -g1,15670:11855302,23765399 -k1,15671:32583030,23765399:18806868 -g1,15671:32583030,23765399 -) -v1,15673:6630773,24450254:0,393216,0 -(1,15698:6630773,35463584:25952256,11406546,196608 -g1,15698:6630773,35463584 -g1,15698:6630773,35463584 -g1,15698:6434165,35463584 -(1,15698:6434165,35463584:0,11406546,196608 -r1,15714:32779637,35463584:26345472,11603154,196608 -k1,15698:6434165,35463584:-26345472 -) -(1,15698:6434165,35463584:26345472,11406546,196608 -[1,15698:6630773,35463584:25952256,11209938,0 -(1,15675:6630773,24684691:25952256,431045,112852 -(1,15674:6630773,24684691:0,0,0 -g1,15674:6630773,24684691 -g1,15674:6630773,24684691 -g1,15674:6303093,24684691 -(1,15674:6303093,24684691:0,0,0 -) -g1,15674:6630773,24684691 -) -g1,15675:8290543,24684691 -g1,15675:9286405,24684691 -g1,15675:18249162,24684691 -g1,15675:22564563,24684691 -g1,15675:23228471,24684691 -g1,15675:23560425,24684691 -g1,15675:26548011,24684691 -g1,15675:28207781,24684691 -g1,15675:28871689,24684691 -h1,15675:30531459,24684691:0,0,0 -k1,15675:32583029,24684691:2051570 -g1,15675:32583029,24684691 -) -(1,15676:6630773,25369546:25952256,431045,79822 -h1,15676:6630773,25369546:0,0,0 -k1,15676:6630773,25369546:0 -h1,15676:10282267,25369546:0,0,0 -k1,15676:32583029,25369546:22300762 -g1,15676:32583029,25369546 -) -(1,15687:6630773,26185473:25952256,431045,106246 -(1,15678:6630773,26185473:0,0,0 -g1,15678:6630773,26185473 -g1,15678:6630773,26185473 -g1,15678:6303093,26185473 -(1,15678:6303093,26185473:0,0,0 -) -g1,15678:6630773,26185473 -) -g1,15687:7626635,26185473 -g1,15687:10614220,26185473 -g1,15687:11610082,26185473 -g1,15687:14597667,26185473 -h1,15687:16257437,26185473:0,0,0 -k1,15687:32583029,26185473:16325592 -g1,15687:32583029,26185473 -) -(1,15687:6630773,26870328:25952256,398014,0 -h1,15687:6630773,26870328:0,0,0 -h1,15687:7294681,26870328:0,0,0 -k1,15687:32583029,26870328:25288348 -g1,15687:32583029,26870328 -) -(1,15687:6630773,27555183:25952256,431045,106246 -h1,15687:6630773,27555183:0,0,0 -g1,15687:7626635,27555183 -g1,15687:7958589,27555183 -g1,15687:8290543,27555183 -g1,15687:8622497,27555183 -g1,15687:8954451,27555183 -g1,15687:9286405,27555183 -g1,15687:9618359,27555183 -g1,15687:9950313,27555183 -g1,15687:10282267,27555183 -g1,15687:10614221,27555183 -g1,15687:10946175,27555183 -g1,15687:11278129,27555183 -g1,15687:11610083,27555183 -g1,15687:11942037,27555183 -g1,15687:12937899,27555183 -g1,15687:13269853,27555183 -g1,15687:15593531,27555183 -g1,15687:17917209,27555183 -g1,15687:18581117,27555183 -g1,15687:19908933,27555183 -g1,15687:20904795,27555183 -g1,15687:22232611,27555183 -g1,15687:23228473,27555183 -g1,15687:23560427,27555183 -g1,15687:23892381,27555183 -g1,15687:24224335,27555183 -k1,15687:24224335,27555183:0 -h1,15687:26216059,27555183:0,0,0 -k1,15687:32583029,27555183:6366970 -g1,15687:32583029,27555183 -) -(1,15687:6630773,28240038:25952256,424439,106246 -h1,15687:6630773,28240038:0,0,0 -g1,15687:7626635,28240038 -g1,15687:11610082,28240038 -g1,15687:11942036,28240038 -g1,15687:12273990,28240038 -g1,15687:12937898,28240038 -g1,15687:15593530,28240038 -g1,15687:15925484,28240038 -g1,15687:16257438,28240038 -g1,15687:18581116,28240038 -g1,15687:18913070,28240038 -g1,15687:19245024,28240038 -g1,15687:19576978,28240038 -g1,15687:19908932,28240038 -g1,15687:20240886,28240038 -g1,15687:20904794,28240038 -g1,15687:21236748,28240038 -g1,15687:21568702,28240038 -g1,15687:21900656,28240038 -g1,15687:23228472,28240038 -g1,15687:23892380,28240038 -g1,15687:26548012,28240038 -h1,15687:27543874,28240038:0,0,0 -k1,15687:32583029,28240038:5039155 -g1,15687:32583029,28240038 -) -(1,15687:6630773,28924893:25952256,424439,106246 -h1,15687:6630773,28924893:0,0,0 -g1,15687:7626635,28924893 -g1,15687:10282267,28924893 -g1,15687:10614221,28924893 -g1,15687:10946175,28924893 -g1,15687:11278129,28924893 -g1,15687:11610083,28924893 -g1,15687:11942037,28924893 -g1,15687:12273991,28924893 -g1,15687:12937899,28924893 -g1,15687:15593531,28924893 -g1,15687:15925485,28924893 -g1,15687:16257439,28924893 -g1,15687:16589393,28924893 -g1,15687:16921347,28924893 -g1,15687:18581117,28924893 -g1,15687:18913071,28924893 -g1,15687:19245025,28924893 -g1,15687:19576979,28924893 -g1,15687:19908933,28924893 -g1,15687:20240887,28924893 -g1,15687:20904795,28924893 -g1,15687:21236749,28924893 -g1,15687:21568703,28924893 -g1,15687:21900657,28924893 -g1,15687:23228473,28924893 -g1,15687:23892381,28924893 -g1,15687:26548013,28924893 -h1,15687:27543875,28924893:0,0,0 -k1,15687:32583029,28924893:5039154 -g1,15687:32583029,28924893 -) -(1,15687:6630773,29609748:25952256,424439,6605 -h1,15687:6630773,29609748:0,0,0 -g1,15687:7626635,29609748 -g1,15687:10946174,29609748 -g1,15687:11278128,29609748 -g1,15687:11610082,29609748 -h1,15687:12605944,29609748:0,0,0 -k1,15687:32583028,29609748:19977084 -g1,15687:32583028,29609748 -) -(1,15687:6630773,30294603:25952256,398014,0 -h1,15687:6630773,30294603:0,0,0 -g1,15687:7626635,30294603 -k1,15687:7626635,30294603:0 -h1,15687:8622497,30294603:0,0,0 -k1,15687:32583029,30294603:23960532 -g1,15687:32583029,30294603 -) -(1,15687:6630773,30979458:25952256,431045,112852 -h1,15687:6630773,30979458:0,0,0 -g1,15687:7626635,30979458 -g1,15687:10282267,30979458 -g1,15687:12605945,30979458 -g1,15687:12937899,30979458 -g1,15687:13601807,30979458 -g1,15687:15593531,30979458 -g1,15687:17585255,30979458 -g1,15687:19245025,30979458 -g1,15687:20904795,30979458 -g1,15687:22232611,30979458 -g1,15687:23892381,30979458 -g1,15687:25220197,30979458 -g1,15687:26548013,30979458 -g1,15687:27211921,30979458 -g1,15687:27875829,30979458 -h1,15687:28207783,30979458:0,0,0 -k1,15687:32583029,30979458:4375246 -g1,15687:32583029,30979458 -) -(1,15689:6630773,31795385:25952256,431045,106246 -(1,15688:6630773,31795385:0,0,0 -g1,15688:6630773,31795385 -g1,15688:6630773,31795385 -g1,15688:6303093,31795385 -(1,15688:6303093,31795385:0,0,0 -) -g1,15688:6630773,31795385 -) -k1,15689:6630773,31795385:0 -h1,15689:10946175,31795385:0,0,0 -k1,15689:32583029,31795385:21636854 -g1,15689:32583029,31795385 -) -(1,15697:6630773,32611312:25952256,431045,106246 -(1,15691:6630773,32611312:0,0,0 -g1,15691:6630773,32611312 -g1,15691:6630773,32611312 -g1,15691:6303093,32611312 -(1,15691:6303093,32611312:0,0,0 -) -g1,15691:6630773,32611312 -) -g1,15697:7626635,32611312 -g1,15697:7958589,32611312 -g1,15697:8290543,32611312 -g1,15697:8622497,32611312 -g1,15697:8954451,32611312 -g1,15697:9286405,32611312 -g1,15697:9618359,32611312 -g1,15697:9950313,32611312 -g1,15697:10282267,32611312 -g1,15697:10614221,32611312 -g1,15697:10946175,32611312 -g1,15697:11278129,32611312 -g1,15697:12273991,32611312 -g1,15697:14597669,32611312 -g1,15697:16921347,32611312 -g1,15697:17585255,32611312 -g1,15697:18913071,32611312 -g1,15697:19908933,32611312 -g1,15697:21236749,32611312 -g1,15697:22232611,32611312 -g1,15697:22564565,32611312 -g1,15697:22896519,32611312 -g1,15697:23228473,32611312 -k1,15697:23228473,32611312:0 -h1,15697:25220197,32611312:0,0,0 -k1,15697:32583029,32611312:7362832 -g1,15697:32583029,32611312 -) -(1,15697:6630773,33296167:25952256,424439,106246 -h1,15697:6630773,33296167:0,0,0 -g1,15697:7626635,33296167 -g1,15697:10282267,33296167 -g1,15697:10614221,33296167 -g1,15697:10946175,33296167 -g1,15697:11278129,33296167 -g1,15697:11610083,33296167 -g1,15697:12273991,33296167 -g1,15697:14597669,33296167 -g1,15697:14929623,33296167 -g1,15697:15261577,33296167 -g1,15697:17585255,33296167 -g1,15697:17917209,33296167 -g1,15697:18249163,33296167 -g1,15697:18581117,33296167 -g1,15697:18913071,33296167 -g1,15697:19245025,33296167 -g1,15697:19908933,33296167 -g1,15697:20240887,33296167 -g1,15697:20572841,33296167 -g1,15697:20904795,33296167 -g1,15697:22232611,33296167 -g1,15697:22896519,33296167 -g1,15697:25552151,33296167 -h1,15697:26548013,33296167:0,0,0 -k1,15697:32583029,33296167:6035016 -g1,15697:32583029,33296167 -) -(1,15697:6630773,33981022:25952256,424439,6605 -h1,15697:6630773,33981022:0,0,0 -g1,15697:7626635,33981022 -g1,15697:10946174,33981022 -h1,15697:11942036,33981022:0,0,0 -k1,15697:32583028,33981022:20640992 -g1,15697:32583028,33981022 -) -(1,15697:6630773,34665877:25952256,398014,0 -h1,15697:6630773,34665877:0,0,0 -g1,15697:7626635,34665877 -k1,15697:7626635,34665877:0 -h1,15697:8622497,34665877:0,0,0 -k1,15697:32583029,34665877:23960532 -g1,15697:32583029,34665877 -) -(1,15697:6630773,35350732:25952256,431045,112852 -h1,15697:6630773,35350732:0,0,0 -g1,15697:7626635,35350732 -g1,15697:10282267,35350732 -g1,15697:12605945,35350732 -g1,15697:12937899,35350732 -g1,15697:13601807,35350732 -g1,15697:15593531,35350732 -g1,15697:17585255,35350732 -g1,15697:19245025,35350732 -g1,15697:20904795,35350732 -g1,15697:22232611,35350732 -g1,15697:23892381,35350732 -g1,15697:25220197,35350732 -g1,15697:26548013,35350732 -g1,15697:27211921,35350732 -g1,15697:27875829,35350732 -h1,15697:28207783,35350732:0,0,0 -k1,15697:32583029,35350732:4375246 -g1,15697:32583029,35350732 -) -] -) -g1,15698:32583029,35463584 -g1,15698:6630773,35463584 -g1,15698:6630773,35463584 -g1,15698:32583029,35463584 -g1,15698:32583029,35463584 -) -h1,15698:6630773,35660192:0,0,0 -v1,15702:6630773,36525272:0,393216,0 -(1,15704:6630773,38698078:25952256,2566022,0 -g1,15704:6630773,38698078 -g1,15704:6237557,38698078 -r1,15714:6368629,38698078:131072,2566022,0 -g1,15704:6567858,38698078 -g1,15704:6764466,38698078 -[1,15704:6764466,38698078:25818563,2566022,0 -(1,15704:6764466,36833570:25818563,701514,196608 -(1,15702:6764466,36833570:0,701514,196608 -r1,15714:8471973,36833570:1707507,898122,196608 -k1,15702:6764466,36833570:-1707507 -) -(1,15702:6764466,36833570:1707507,701514,196608 -) -k1,15702:8700084,36833570:228111 -k1,15702:10426302,36833570:327680 -k1,15702:12860356,36833570:228112 -k1,15702:14107552,36833570:228111 -k1,15702:16997081,36833570:228112 -k1,15702:19080516,36833570:228111 -k1,15702:19960056,36833570:228112 -k1,15702:21280652,36833570:228111 -(1,15702:21280652,36833570:0,452978,115847 -r1,15714:23045765,36833570:1765113,568825,115847 -k1,15702:21280652,36833570:-1765113 -) -(1,15702:21280652,36833570:1765113,452978,115847 -k1,15702:21280652,36833570:3277 -h1,15702:23042488,36833570:0,411205,112570 -) -k1,15702:23273876,36833570:228111 -k1,15702:25829171,36833570:228112 -k1,15702:26724438,36833570:228111 -(1,15702:26724438,36833570:0,452978,115847 -r1,15714:29544687,36833570:2820249,568825,115847 -k1,15702:26724438,36833570:-2820249 -) -(1,15702:26724438,36833570:2820249,452978,115847 -k1,15702:26724438,36833570:3277 -h1,15702:29541410,36833570:0,411205,112570 -) -k1,15702:29772799,36833570:228112 -k1,15702:31192355,36833570:228111 -k1,15702:32583029,36833570:0 -) -(1,15704:6764466,37698650:25818563,505283,115847 -k1,15702:7942015,37698650:158464 -k1,15702:9943351,37698650:158464 -k1,15702:10753243,37698650:158464 -k1,15702:11267567,37698650:158464 -k1,15702:13937371,37698650:158464 -k1,15702:16254591,37698650:158464 -(1,15702:16254591,37698650:0,459977,115847 -r1,15714:17667992,37698650:1413401,575824,115847 -k1,15702:16254591,37698650:-1413401 -) -(1,15702:16254591,37698650:1413401,459977,115847 -k1,15702:16254591,37698650:3277 -h1,15702:17664715,37698650:0,411205,112570 -) -k1,15702:18000125,37698650:158463 -k1,15703:18000125,37698650:0 -k1,15703:19307435,37698650:158464 -(1,15703:19307435,37698650:0,452978,115847 -r1,15714:21775972,37698650:2468537,568825,115847 -k1,15703:19307435,37698650:-2468537 -) -(1,15703:19307435,37698650:2468537,452978,115847 -k1,15703:19307435,37698650:3277 -h1,15703:21772695,37698650:0,411205,112570 -) -k1,15703:22108106,37698650:158464 -(1,15703:22108106,37698650:0,452978,115847 -r1,15714:26335202,37698650:4227096,568825,115847 -k1,15703:22108106,37698650:-4227096 -) -(1,15703:22108106,37698650:4227096,452978,115847 -k1,15703:22108106,37698650:3277 -h1,15703:26331925,37698650:0,411205,112570 -) -k1,15703:26667336,37698650:158464 -(1,15703:26667336,37698650:0,452978,115847 -r1,15714:29135873,37698650:2468537,568825,115847 -k1,15703:26667336,37698650:-2468537 -) -(1,15703:26667336,37698650:2468537,452978,115847 -k1,15703:26667336,37698650:3277 -h1,15703:29132596,37698650:0,411205,112570 -) -k1,15703:29468007,37698650:158464 -(1,15703:29468007,37698650:0,452978,115847 -r1,15714:31233120,37698650:1765113,568825,115847 -k1,15703:29468007,37698650:-1765113 -) -(1,15703:29468007,37698650:1765113,452978,115847 -k1,15703:29468007,37698650:3277 -h1,15703:31229843,37698650:0,411205,112570 -) -k1,15703:31391584,37698650:158464 -k1,15703:32583029,37698650:0 -) -(1,15704:6764466,38563730:25818563,513147,134348 -k1,15703:10174193,38563730:195186 -k1,15703:11028671,38563730:195186 -k1,15703:14177565,38563730:195186 -k1,15703:15024179,38563730:195186 -k1,15703:17587836,38563730:195186 -k1,15703:20072850,38563730:195186 -(1,15703:20072850,38563730:0,459977,115847 -r1,15714:21486251,38563730:1413401,575824,115847 -k1,15703:20072850,38563730:-1413401 -) -(1,15703:20072850,38563730:1413401,459977,115847 -k1,15703:20072850,38563730:3277 -h1,15703:21482974,38563730:0,411205,112570 -) -k1,15703:21855108,38563730:195187 -(1,15703:21855108,38563730:0,459977,115847 -r1,15714:23268509,38563730:1413401,575824,115847 -k1,15703:21855108,38563730:-1413401 -) -(1,15703:21855108,38563730:1413401,459977,115847 -k1,15703:21855108,38563730:3277 -h1,15703:23265232,38563730:0,411205,112570 -) -k1,15703:23463695,38563730:195186 -k1,15703:24850326,38563730:195186 -(1,15703:24850326,38563730:0,459977,115847 -r1,15714:26263727,38563730:1413401,575824,115847 -k1,15703:24850326,38563730:-1413401 -) -(1,15703:24850326,38563730:1413401,459977,115847 -k1,15703:24850326,38563730:3277 -h1,15703:26260450,38563730:0,411205,112570 -) -k1,15703:26632583,38563730:195186 -k1,15703:27951056,38563730:195186 -k1,15703:29526430,38563730:195186 -k1,15704:32583029,38563730:0 -k1,15704:32583029,38563730:0 -) -] -g1,15704:32583029,38698078 -) -h1,15704:6630773,38698078:0,0,0 -(1,15708:6630773,40814896:25952256,555811,139132 -(1,15708:6630773,40814896:2899444,534184,12975 -g1,15708:6630773,40814896 -g1,15708:9530217,40814896 -) -g1,15708:12966008,40814896 -g1,15708:17643903,40814896 -k1,15708:32583029,40814896:11970476 -g1,15708:32583029,40814896 -) -(1,15712:6630773,42073192:25952256,513147,134348 -k1,15711:9664219,42073192:237025 -k1,15711:13828817,42073192:237025 -k1,15711:16620435,42073192:237025 -k1,15711:18590194,42073192:236987 -k1,15711:19358716,42073192:237025 -k1,15711:21108968,42073192:237026 -k1,15711:21997421,42073192:237025 -k1,15711:24838847,42073192:237025 -k1,15711:25431732,42073192:237025 -k1,15711:27058120,42073192:237025 -k1,15711:28229688,42073192:237025 -k1,15711:29228241,42073192:237025 -k1,15711:32583029,42073192:0 -) -(1,15712:6630773,42938272:25952256,505283,126483 -k1,15711:9612482,42938272:157763 -k1,15711:11164196,42938272:157763 -k1,15711:13523969,42938272:157763 -k1,15711:14873177,42938272:157763 -k1,15711:17712018,42938272:157763 -k1,15711:21044344,42938272:157762 -k1,15711:22469573,42938272:157763 -k1,15711:25468977,42938272:157763 -k1,15711:29727983,42938272:157763 -k1,15711:30630235,42938272:157763 -k1,15711:31143858,42938272:157763 -k1,15711:32583029,42938272:0 -) -(1,15712:6630773,43803352:25952256,513147,134348 -k1,15711:8625034,43803352:155976 -k1,15711:9649361,43803352:155975 -k1,15711:13110318,43803352:155976 -k1,15711:14172656,43803352:155975 -k1,15711:14980060,43803352:155976 -k1,15711:17958015,43803352:155975 -k1,15711:19810718,43803352:155976 -k1,15711:23894267,43803352:155976 -k1,15711:24666280,43803352:155975 -k1,15711:27286410,43803352:155976 -k1,15711:28093813,43803352:155975 -k1,15711:30387573,43803352:155976 -k1,15711:32583029,43803352:0 -) -(1,15712:6630773,44668432:25952256,513147,126483 -k1,15711:9590644,44668432:140512 -k1,15711:13738027,44668432:140512 -k1,15711:16893850,44668432:140512 -k1,15711:18466979,44668432:140512 -k1,15711:19526307,44668432:140513 -k1,15711:22362315,44668432:140512 -(1,15711:22362315,44668432:0,452978,115847 -r1,15714:25182564,44668432:2820249,568825,115847 -k1,15711:22362315,44668432:-2820249 -) -(1,15711:22362315,44668432:2820249,452978,115847 -k1,15711:22362315,44668432:3277 -h1,15711:25179287,44668432:0,411205,112570 -) -k1,15711:25323076,44668432:140512 -k1,15711:28581791,44668432:140512 -k1,15711:29741388,44668432:140512 -k1,15711:32583029,44668432:0 -) -(1,15712:6630773,45533512:25952256,513147,134348 -g1,15711:10757575,45533512 -g1,15711:12148249,45533512 -g1,15711:14725780,45533512 -g1,15711:18152002,45533512 -g1,15711:21753860,45533512 -g1,15711:22900740,45533512 -g1,15711:25731240,45533512 -g1,15711:27121914,45533512 -k1,15712:32583029,45533512:3193570 -g1,15712:32583029,45533512 -) -] -(1,15714:32583029,45706769:0,0,0 -g1,15714:32583029,45706769 -) -) -] -(1,15714:6630773,47279633:25952256,0,0 -h1,15714:6630773,47279633:25952256,0,0 -) -] -(1,15714:4262630,4025873:0,0,0 -[1,15714:-473656,4025873:0,0,0 -(1,15714:-473656,-710413:0,0,0 -(1,15714:-473656,-710413:0,0,0 -g1,15714:-473656,-710413 -) -g1,15714:-473656,-710413 +) +k1,15712:3078556,49800853:-34777008 +) +] +g1,15712:6630773,4812305 +k1,15712:19575446,4812305:11749296 +g1,15712:21198117,4812305 +g1,15712:21985204,4812305 +g1,15712:24539797,4812305 +g1,15712:25949476,4812305 +g1,15712:28728857,4812305 +g1,15712:29852144,4812305 +) +) +] +[1,15712:6630773,45706769:25952256,40108032,0 +(1,15712:6630773,45706769:25952256,40108032,0 +(1,15712:6630773,45706769:0,0,0 +g1,15712:6630773,45706769 +) +[1,15712:6630773,45706769:25952256,40108032,0 +(1,15659:6630773,6254097:25952256,32768,229376 +(1,15659:6630773,6254097:0,32768,229376 +(1,15659:6630773,6254097:5505024,32768,229376 +r1,15712:12135797,6254097:5505024,262144,229376 +) +k1,15659:6630773,6254097:-5505024 +) +(1,15659:6630773,6254097:25952256,32768,0 +r1,15712:32583029,6254097:25952256,32768,0 +) +) +(1,15659:6630773,7885949:25952256,606339,14155 +(1,15659:6630773,7885949:2464678,573309,14155 +g1,15659:6630773,7885949 +g1,15659:9095451,7885949 +) +g1,15659:14141199,7885949 +k1,15659:32583029,7885949:14888730 +g1,15659:32583029,7885949 +) +(1,15662:6630773,9144245:25952256,513147,126483 +k1,15661:7729016,9144245:224648 +k1,15661:8972749,9144245:224648 +k1,15661:11982022,9144245:224648 +k1,15661:15380579,9144245:224648 +k1,15661:17460551,9144245:224648 +k1,15661:18676759,9144245:224648 +k1,15661:22268647,9144245:224648 +k1,15661:23179456,9144245:224647 +k1,15661:24870800,9144245:224648 +k1,15661:25561409,9144245:224648 +k1,15661:26402095,9144245:224648 +k1,15661:28318883,9144245:224648 +k1,15661:30240913,9144245:224648 +k1,15661:31333913,9144245:224648 +k1,15662:32583029,9144245:0 +) +(1,15662:6630773,10009325:25952256,513147,126483 +k1,15661:9198692,10009325:211900 +k1,15661:12081838,10009325:211899 +k1,15661:16059437,10009325:211900 +k1,15661:19112978,10009325:211900 +k1,15661:20134247,10009325:211899 +k1,15661:21365232,10009325:211900 +k1,15661:22610635,10009325:211900 +k1,15661:23481826,10009325:211899 +k1,15661:25681433,10009325:211900 +k1,15661:28940757,10009325:211900 +k1,15661:30171741,10009325:211899 +k1,15661:31333913,10009325:211900 +k1,15662:32583029,10009325:0 +) +(1,15662:6630773,10874405:25952256,513147,126483 +k1,15661:8816875,10874405:189220 +k1,15661:9618857,10874405:189220 +k1,15661:11409778,10874405:189221 +k1,15661:12755708,10874405:189220 +k1,15661:15818682,10874405:189220 +k1,15661:18692912,10874405:189220 +k1,15661:20714519,10874405:189220 +k1,15661:21895299,10874405:189220 +k1,15661:23836297,10874405:189221 +k1,15661:26787860,10874405:189220 +k1,15661:30837806,10874405:189220 +k1,15662:32583029,10874405:0 +) +(1,15662:6630773,11739485:25952256,513147,126483 +k1,15661:7952916,11739485:176574 +k1,15661:11087131,11739485:176575 +k1,15661:12455150,11739485:176574 +k1,15661:12987584,11739485:176574 +k1,15661:14297276,11739485:176574 +k1,15661:15133143,11739485:176575 +k1,15661:16948772,11739485:176574 +k1,15661:18116906,11739485:176574 +k1,15661:22494993,11739485:176574 +k1,15661:23287606,11739485:176575 +k1,15661:24898108,11739485:176574 +k1,15661:25489502,11739485:176551 +k1,15661:28865545,11739485:176575 +k1,15661:30238806,11739485:176574 +k1,15661:32583029,11739485:0 +) +(1,15662:6630773,12604565:25952256,513147,126483 +k1,15661:9148364,12604565:238904 +k1,15661:10880178,12604565:238904 +k1,15661:12185353,12604565:238904 +k1,15661:15093537,12604565:238903 +k1,15661:17029168,12604565:238904 +k1,15661:20052697,12604565:238904 +k1,15661:20907639,12604565:238904 +k1,15661:23180781,12604565:238904 +k1,15661:23877782,12604565:238904 +k1,15661:25492286,12604565:238903 +k1,15661:28491566,12604565:238904 +k1,15661:29086330,12604565:238904 +k1,15661:30458352,12604565:238904 +k1,15661:32583029,12604565:0 +) +(1,15662:6630773,13469645:25952256,513147,126483 +g1,15661:9821721,13469645 +g1,15661:10968601,13469645 +g1,15661:12859970,13469645 +g1,15661:13718491,13469645 +g1,15661:14936805,13469645 +g1,15661:18441015,13469645 +g1,15661:20153470,13469645 +k1,15662:32583029,13469645:10890119 +g1,15662:32583029,13469645 +) +(1,15663:6630773,15586463:25952256,564462,139132 +(1,15663:6630773,15586463:2899444,525533,12975 +g1,15663:6630773,15586463 +g1,15663:9530217,15586463 +) +g1,15663:14155486,15586463 +g1,15663:17349056,15586463 +g1,15663:18318662,15586463 +k1,15663:32583029,15586463:11155142 +g1,15663:32583029,15586463 +) +(1,15667:6630773,16844759:25952256,505283,126483 +k1,15666:10604221,16844759:169083 +k1,15666:13557928,16844759:169082 +k1,15666:15079674,16844759:169083 +k1,15666:16516223,16844759:169083 +k1,15666:19189437,16844759:169083 +k1,15666:21590020,16844759:169082 +k1,15666:24632857,16844759:169083 +k1,15666:27643581,16844759:169083 +k1,15666:32583029,16844759:0 +) +(1,15667:6630773,17709839:25952256,513147,134348 +k1,15666:7595089,17709839:278154 +k1,15666:9195103,17709839:278153 +k1,15666:10132548,17709839:278153 +k1,15666:10766562,17709839:278154 +k1,15666:12917735,17709839:278154 +k1,15666:15924152,17709839:278153 +k1,15666:16830141,17709839:278154 +k1,15666:19819518,17709839:278153 +k1,15666:20555769,17709839:278154 +k1,15666:21365419,17709839:278153 +k1,15666:23364548,17709839:278154 +k1,15666:24294129,17709839:278153 +k1,15666:25664767,17709839:278153 +k1,15666:29672575,17709839:278154 +k1,15666:32583029,17709839:0 +) +(1,15667:6630773,18574919:25952256,513147,126483 +k1,15666:7834810,18574919:256386 +k1,15666:11951922,18574919:256386 +k1,15666:13597671,18574919:256386 +k1,15666:16408650,18574919:256386 +k1,15666:17281074,18574919:256386 +k1,15666:18125973,18574919:256386 +k1,15666:20453298,18574919:256387 +k1,15666:21657335,18574919:256386 +k1,15666:24038398,18574919:256386 +k1,15666:26165837,18574919:256386 +k1,15666:27375772,18574919:256386 +k1,15666:28764620,18574919:256386 +k1,15666:30407748,18574919:256386 +k1,15666:31970267,18574919:256386 +k1,15666:32583029,18574919:0 +) +(1,15667:6630773,19439999:25952256,505283,126483 +k1,15666:10688841,19439999:182924 +k1,15666:13306411,19439999:182907 +k1,15666:14172220,19439999:182924 +k1,15666:17527087,19439999:182924 +k1,15666:18337845,19439999:182923 +k1,15666:19539854,19439999:182924 +k1,15666:21376251,19439999:182924 +k1,15666:22797150,19439999:182924 +k1,15666:23666235,19439999:182923 +(1,15666:23666235,19439999:0,452978,115847 +r1,15712:25431348,19439999:1765113,568825,115847 +k1,15666:23666235,19439999:-1765113 +) +(1,15666:23666235,19439999:1765113,452978,115847 +k1,15666:23666235,19439999:3277 +h1,15666:25428071,19439999:0,411205,112570 +) +k1,15666:25614272,19439999:182924 +k1,15666:26328693,19439999:182924 +k1,15666:26867477,19439999:182924 +k1,15666:29692812,19439999:182923 +k1,15666:31160242,19439999:182924 +k1,15666:32583029,19439999:0 +) +(1,15667:6630773,20305079:25952256,505283,126483 +g1,15666:9880703,20305079 +(1,15666:9880703,20305079:0,452978,115847 +r1,15712:11294104,20305079:1413401,568825,115847 +k1,15666:9880703,20305079:-1413401 +) +(1,15666:9880703,20305079:1413401,452978,115847 +k1,15666:9880703,20305079:3277 +h1,15666:11290827,20305079:0,411205,112570 +) +g1,15666:11667003,20305079 +(1,15666:11667003,20305079:0,452978,115847 +r1,15712:14487252,20305079:2820249,568825,115847 +k1,15666:11667003,20305079:-2820249 +) +(1,15666:11667003,20305079:2820249,452978,115847 +k1,15666:11667003,20305079:3277 +h1,15666:14483975,20305079:0,411205,112570 +) +g1,15666:14686481,20305079 +g1,15666:15417207,20305079 +g1,15666:15972296,20305079 +g1,15666:18813937,20305079 +g1,15666:20297672,20305079 +g1,15666:21919688,20305079 +g1,15666:25169618,20305079 +(1,15666:25169618,20305079:0,452978,115847 +r1,15712:26934731,20305079:1765113,568825,115847 +k1,15666:25169618,20305079:-1765113 +) +(1,15666:25169618,20305079:1765113,452978,115847 +k1,15666:25169618,20305079:3277 +h1,15666:26931454,20305079:0,411205,112570 +) +k1,15667:32583029,20305079:5595870 +g1,15667:32583029,20305079 +) +(1,15669:6630773,21170159:25952256,513147,134348 +h1,15668:6630773,21170159:983040,0,0 +k1,15668:11778700,21170159:360522 +k1,15668:14126929,21170159:360522 +k1,15668:17361206,21170159:360523 +k1,15668:18337766,21170159:360522 +k1,15668:20132216,21170159:360522 +k1,15668:20907419,21170159:360360 +k1,15668:23559735,21170159:360522 +k1,15668:24939343,21170159:360523 +k1,15668:26392350,21170159:360522 +k1,15668:27412164,21170159:360522 +k1,15668:30155575,21170159:360522 +k1,15668:32583029,21170159:0 +) +(1,15669:6630773,22035239:25952256,513147,115847 +(1,15668:6816895,22035239:0,452978,115847 +r1,15712:9285432,22035239:2468537,568825,115847 +k1,15668:6816895,22035239:-2468537 +) +(1,15668:6816895,22035239:2468537,452978,115847 +k1,15668:6816895,22035239:3277 +h1,15668:9282155,22035239:0,411205,112570 +) +k1,15668:9749352,22035239:256826 +k1,15668:10815549,22035239:256827 +k1,15668:12091460,22035239:256826 +k1,15668:15241701,22035239:256826 +k1,15668:16798106,22035239:256826 +k1,15668:18419393,22035239:256827 +k1,15668:19335511,22035239:256826 +k1,15668:20611422,22035239:256826 +k1,15668:22855955,22035239:256826 +k1,15668:25829905,22035239:256827 +k1,15668:27283418,22035239:256826 +k1,15668:31169628,22035239:256826 +(1,15668:31169628,22035239:0,452978,115847 +r1,15712:32583029,22035239:1413401,568825,115847 +k1,15668:31169628,22035239:-1413401 +) +(1,15668:31169628,22035239:1413401,452978,115847 +k1,15668:31169628,22035239:3277 +h1,15668:32579752,22035239:0,411205,112570 +) +k1,15668:32583029,22035239:0 +) +(1,15669:6630773,22900319:25952256,513147,134348 +k1,15668:8203637,22900319:183501 +k1,15668:9495352,22900319:183501 +k1,15668:13040850,22900319:183501 +k1,15668:14493127,22900319:183500 +k1,15668:19350000,22900319:183501 +k1,15668:20481152,22900319:183501 +k1,15668:22980695,22900319:183501 +k1,15668:23823488,22900319:183501 +k1,15668:25661773,22900319:183501 +k1,15668:28156072,22900319:183500 +k1,15668:28998865,22900319:183501 +k1,15668:30354805,22900319:183501 +k1,15668:31069803,22900319:183501 +k1,15668:32583029,22900319:0 +) +(1,15669:6630773,23765399:25952256,505283,126483 +g1,15668:7446040,23765399 +g1,15668:8664354,23765399 +g1,15668:11855302,23765399 +k1,15669:32583030,23765399:18806868 +g1,15669:32583030,23765399 +) +v1,15671:6630773,24450254:0,393216,0 +(1,15696:6630773,35463584:25952256,11406546,196608 +g1,15696:6630773,35463584 +g1,15696:6630773,35463584 +g1,15696:6434165,35463584 +(1,15696:6434165,35463584:0,11406546,196608 +r1,15712:32779637,35463584:26345472,11603154,196608 +k1,15696:6434165,35463584:-26345472 +) +(1,15696:6434165,35463584:26345472,11406546,196608 +[1,15696:6630773,35463584:25952256,11209938,0 +(1,15673:6630773,24684691:25952256,431045,112852 +(1,15672:6630773,24684691:0,0,0 +g1,15672:6630773,24684691 +g1,15672:6630773,24684691 +g1,15672:6303093,24684691 +(1,15672:6303093,24684691:0,0,0 +) +g1,15672:6630773,24684691 +) +g1,15673:8290543,24684691 +g1,15673:9286405,24684691 +g1,15673:18249162,24684691 +g1,15673:22564563,24684691 +g1,15673:23228471,24684691 +g1,15673:23560425,24684691 +g1,15673:26548011,24684691 +g1,15673:28207781,24684691 +g1,15673:28871689,24684691 +h1,15673:30531459,24684691:0,0,0 +k1,15673:32583029,24684691:2051570 +g1,15673:32583029,24684691 +) +(1,15674:6630773,25369546:25952256,431045,79822 +h1,15674:6630773,25369546:0,0,0 +k1,15674:6630773,25369546:0 +h1,15674:10282267,25369546:0,0,0 +k1,15674:32583029,25369546:22300762 +g1,15674:32583029,25369546 +) +(1,15685:6630773,26185473:25952256,431045,106246 +(1,15676:6630773,26185473:0,0,0 +g1,15676:6630773,26185473 +g1,15676:6630773,26185473 +g1,15676:6303093,26185473 +(1,15676:6303093,26185473:0,0,0 +) +g1,15676:6630773,26185473 +) +g1,15685:7626635,26185473 +g1,15685:10614220,26185473 +g1,15685:11610082,26185473 +g1,15685:14597667,26185473 +h1,15685:16257437,26185473:0,0,0 +k1,15685:32583029,26185473:16325592 +g1,15685:32583029,26185473 +) +(1,15685:6630773,26870328:25952256,398014,0 +h1,15685:6630773,26870328:0,0,0 +h1,15685:7294681,26870328:0,0,0 +k1,15685:32583029,26870328:25288348 +g1,15685:32583029,26870328 +) +(1,15685:6630773,27555183:25952256,431045,106246 +h1,15685:6630773,27555183:0,0,0 +g1,15685:7626635,27555183 +g1,15685:7958589,27555183 +g1,15685:8290543,27555183 +g1,15685:8622497,27555183 +g1,15685:8954451,27555183 +g1,15685:9286405,27555183 +g1,15685:9618359,27555183 +g1,15685:9950313,27555183 +g1,15685:10282267,27555183 +g1,15685:10614221,27555183 +g1,15685:10946175,27555183 +g1,15685:11278129,27555183 +g1,15685:11610083,27555183 +g1,15685:11942037,27555183 +g1,15685:12937899,27555183 +g1,15685:13269853,27555183 +g1,15685:15593531,27555183 +g1,15685:17917209,27555183 +g1,15685:18581117,27555183 +g1,15685:19908933,27555183 +g1,15685:20904795,27555183 +g1,15685:22232611,27555183 +g1,15685:23228473,27555183 +g1,15685:23560427,27555183 +g1,15685:23892381,27555183 +g1,15685:24224335,27555183 +k1,15685:24224335,27555183:0 +h1,15685:26216059,27555183:0,0,0 +k1,15685:32583029,27555183:6366970 +g1,15685:32583029,27555183 +) +(1,15685:6630773,28240038:25952256,424439,106246 +h1,15685:6630773,28240038:0,0,0 +g1,15685:7626635,28240038 +g1,15685:11610082,28240038 +g1,15685:11942036,28240038 +g1,15685:12273990,28240038 +g1,15685:12937898,28240038 +g1,15685:15593530,28240038 +g1,15685:15925484,28240038 +g1,15685:16257438,28240038 +g1,15685:18581116,28240038 +g1,15685:18913070,28240038 +g1,15685:19245024,28240038 +g1,15685:19576978,28240038 +g1,15685:19908932,28240038 +g1,15685:20240886,28240038 +g1,15685:20904794,28240038 +g1,15685:21236748,28240038 +g1,15685:21568702,28240038 +g1,15685:21900656,28240038 +g1,15685:23228472,28240038 +g1,15685:23892380,28240038 +g1,15685:26548012,28240038 +h1,15685:27543874,28240038:0,0,0 +k1,15685:32583029,28240038:5039155 +g1,15685:32583029,28240038 +) +(1,15685:6630773,28924893:25952256,424439,106246 +h1,15685:6630773,28924893:0,0,0 +g1,15685:7626635,28924893 +g1,15685:10282267,28924893 +g1,15685:10614221,28924893 +g1,15685:10946175,28924893 +g1,15685:11278129,28924893 +g1,15685:11610083,28924893 +g1,15685:11942037,28924893 +g1,15685:12273991,28924893 +g1,15685:12937899,28924893 +g1,15685:15593531,28924893 +g1,15685:15925485,28924893 +g1,15685:16257439,28924893 +g1,15685:16589393,28924893 +g1,15685:16921347,28924893 +g1,15685:18581117,28924893 +g1,15685:18913071,28924893 +g1,15685:19245025,28924893 +g1,15685:19576979,28924893 +g1,15685:19908933,28924893 +g1,15685:20240887,28924893 +g1,15685:20904795,28924893 +g1,15685:21236749,28924893 +g1,15685:21568703,28924893 +g1,15685:21900657,28924893 +g1,15685:23228473,28924893 +g1,15685:23892381,28924893 +g1,15685:26548013,28924893 +h1,15685:27543875,28924893:0,0,0 +k1,15685:32583029,28924893:5039154 +g1,15685:32583029,28924893 +) +(1,15685:6630773,29609748:25952256,424439,6605 +h1,15685:6630773,29609748:0,0,0 +g1,15685:7626635,29609748 +g1,15685:10946174,29609748 +g1,15685:11278128,29609748 +g1,15685:11610082,29609748 +h1,15685:12605944,29609748:0,0,0 +k1,15685:32583028,29609748:19977084 +g1,15685:32583028,29609748 +) +(1,15685:6630773,30294603:25952256,398014,0 +h1,15685:6630773,30294603:0,0,0 +g1,15685:7626635,30294603 +k1,15685:7626635,30294603:0 +h1,15685:8622497,30294603:0,0,0 +k1,15685:32583029,30294603:23960532 +g1,15685:32583029,30294603 +) +(1,15685:6630773,30979458:25952256,431045,112852 +h1,15685:6630773,30979458:0,0,0 +g1,15685:7626635,30979458 +g1,15685:10282267,30979458 +g1,15685:12605945,30979458 +g1,15685:12937899,30979458 +g1,15685:13601807,30979458 +g1,15685:15593531,30979458 +g1,15685:17585255,30979458 +g1,15685:19245025,30979458 +g1,15685:20904795,30979458 +g1,15685:22232611,30979458 +g1,15685:23892381,30979458 +g1,15685:25220197,30979458 +g1,15685:26548013,30979458 +g1,15685:27211921,30979458 +g1,15685:27875829,30979458 +h1,15685:28207783,30979458:0,0,0 +k1,15685:32583029,30979458:4375246 +g1,15685:32583029,30979458 +) +(1,15687:6630773,31795385:25952256,431045,106246 +(1,15686:6630773,31795385:0,0,0 +g1,15686:6630773,31795385 +g1,15686:6630773,31795385 +g1,15686:6303093,31795385 +(1,15686:6303093,31795385:0,0,0 +) +g1,15686:6630773,31795385 +) +k1,15687:6630773,31795385:0 +h1,15687:10946175,31795385:0,0,0 +k1,15687:32583029,31795385:21636854 +g1,15687:32583029,31795385 +) +(1,15695:6630773,32611312:25952256,431045,106246 +(1,15689:6630773,32611312:0,0,0 +g1,15689:6630773,32611312 +g1,15689:6630773,32611312 +g1,15689:6303093,32611312 +(1,15689:6303093,32611312:0,0,0 +) +g1,15689:6630773,32611312 +) +g1,15695:7626635,32611312 +g1,15695:7958589,32611312 +g1,15695:8290543,32611312 +g1,15695:8622497,32611312 +g1,15695:8954451,32611312 +g1,15695:9286405,32611312 +g1,15695:9618359,32611312 +g1,15695:9950313,32611312 +g1,15695:10282267,32611312 +g1,15695:10614221,32611312 +g1,15695:10946175,32611312 +g1,15695:11278129,32611312 +g1,15695:12273991,32611312 +g1,15695:14597669,32611312 +g1,15695:16921347,32611312 +g1,15695:17585255,32611312 +g1,15695:18913071,32611312 +g1,15695:19908933,32611312 +g1,15695:21236749,32611312 +g1,15695:22232611,32611312 +g1,15695:22564565,32611312 +g1,15695:22896519,32611312 +g1,15695:23228473,32611312 +k1,15695:23228473,32611312:0 +h1,15695:25220197,32611312:0,0,0 +k1,15695:32583029,32611312:7362832 +g1,15695:32583029,32611312 +) +(1,15695:6630773,33296167:25952256,424439,106246 +h1,15695:6630773,33296167:0,0,0 +g1,15695:7626635,33296167 +g1,15695:10282267,33296167 +g1,15695:10614221,33296167 +g1,15695:10946175,33296167 +g1,15695:11278129,33296167 +g1,15695:11610083,33296167 +g1,15695:12273991,33296167 +g1,15695:14597669,33296167 +g1,15695:14929623,33296167 +g1,15695:15261577,33296167 +g1,15695:17585255,33296167 +g1,15695:17917209,33296167 +g1,15695:18249163,33296167 +g1,15695:18581117,33296167 +g1,15695:18913071,33296167 +g1,15695:19245025,33296167 +g1,15695:19908933,33296167 +g1,15695:20240887,33296167 +g1,15695:20572841,33296167 +g1,15695:20904795,33296167 +g1,15695:22232611,33296167 +g1,15695:22896519,33296167 +g1,15695:25552151,33296167 +h1,15695:26548013,33296167:0,0,0 +k1,15695:32583029,33296167:6035016 +g1,15695:32583029,33296167 +) +(1,15695:6630773,33981022:25952256,424439,6605 +h1,15695:6630773,33981022:0,0,0 +g1,15695:7626635,33981022 +g1,15695:10946174,33981022 +h1,15695:11942036,33981022:0,0,0 +k1,15695:32583028,33981022:20640992 +g1,15695:32583028,33981022 +) +(1,15695:6630773,34665877:25952256,398014,0 +h1,15695:6630773,34665877:0,0,0 +g1,15695:7626635,34665877 +k1,15695:7626635,34665877:0 +h1,15695:8622497,34665877:0,0,0 +k1,15695:32583029,34665877:23960532 +g1,15695:32583029,34665877 +) +(1,15695:6630773,35350732:25952256,431045,112852 +h1,15695:6630773,35350732:0,0,0 +g1,15695:7626635,35350732 +g1,15695:10282267,35350732 +g1,15695:12605945,35350732 +g1,15695:12937899,35350732 +g1,15695:13601807,35350732 +g1,15695:15593531,35350732 +g1,15695:17585255,35350732 +g1,15695:19245025,35350732 +g1,15695:20904795,35350732 +g1,15695:22232611,35350732 +g1,15695:23892381,35350732 +g1,15695:25220197,35350732 +g1,15695:26548013,35350732 +g1,15695:27211921,35350732 +g1,15695:27875829,35350732 +h1,15695:28207783,35350732:0,0,0 +k1,15695:32583029,35350732:4375246 +g1,15695:32583029,35350732 +) +] +) +g1,15696:32583029,35463584 +g1,15696:6630773,35463584 +g1,15696:6630773,35463584 +g1,15696:32583029,35463584 +g1,15696:32583029,35463584 +) +h1,15696:6630773,35660192:0,0,0 +v1,15700:6630773,36525272:0,393216,0 +(1,15702:6630773,38698078:25952256,2566022,0 +g1,15702:6630773,38698078 +g1,15702:6237557,38698078 +r1,15712:6368629,38698078:131072,2566022,0 +g1,15702:6567858,38698078 +g1,15702:6764466,38698078 +[1,15702:6764466,38698078:25818563,2566022,0 +(1,15702:6764466,36833570:25818563,701514,196608 +(1,15700:6764466,36833570:0,701514,196608 +r1,15712:8471973,36833570:1707507,898122,196608 +k1,15700:6764466,36833570:-1707507 +) +(1,15700:6764466,36833570:1707507,701514,196608 +) +k1,15700:8700084,36833570:228111 +k1,15700:10426302,36833570:327680 +k1,15700:12860356,36833570:228112 +k1,15700:14107552,36833570:228111 +k1,15700:16997081,36833570:228112 +k1,15700:19080516,36833570:228111 +k1,15700:19960056,36833570:228112 +k1,15700:21280652,36833570:228111 +(1,15700:21280652,36833570:0,452978,115847 +r1,15712:23045765,36833570:1765113,568825,115847 +k1,15700:21280652,36833570:-1765113 +) +(1,15700:21280652,36833570:1765113,452978,115847 +k1,15700:21280652,36833570:3277 +h1,15700:23042488,36833570:0,411205,112570 +) +k1,15700:23273876,36833570:228111 +k1,15700:25829171,36833570:228112 +k1,15700:26724438,36833570:228111 +(1,15700:26724438,36833570:0,452978,115847 +r1,15712:29544687,36833570:2820249,568825,115847 +k1,15700:26724438,36833570:-2820249 +) +(1,15700:26724438,36833570:2820249,452978,115847 +k1,15700:26724438,36833570:3277 +h1,15700:29541410,36833570:0,411205,112570 +) +k1,15700:29772799,36833570:228112 +k1,15700:31192355,36833570:228111 +k1,15700:32583029,36833570:0 +) +(1,15702:6764466,37698650:25818563,505283,115847 +k1,15700:7942015,37698650:158464 +k1,15700:9943351,37698650:158464 +k1,15700:10753243,37698650:158464 +k1,15700:11267567,37698650:158464 +k1,15700:13937371,37698650:158464 +k1,15700:16254591,37698650:158464 +(1,15700:16254591,37698650:0,459977,115847 +r1,15712:17667992,37698650:1413401,575824,115847 +k1,15700:16254591,37698650:-1413401 +) +(1,15700:16254591,37698650:1413401,459977,115847 +k1,15700:16254591,37698650:3277 +h1,15700:17664715,37698650:0,411205,112570 +) +k1,15700:18000125,37698650:158463 +k1,15701:18000125,37698650:0 +k1,15701:19307435,37698650:158464 +(1,15701:19307435,37698650:0,452978,115847 +r1,15712:21775972,37698650:2468537,568825,115847 +k1,15701:19307435,37698650:-2468537 +) +(1,15701:19307435,37698650:2468537,452978,115847 +k1,15701:19307435,37698650:3277 +h1,15701:21772695,37698650:0,411205,112570 +) +k1,15701:22108106,37698650:158464 +(1,15701:22108106,37698650:0,452978,115847 +r1,15712:26335202,37698650:4227096,568825,115847 +k1,15701:22108106,37698650:-4227096 +) +(1,15701:22108106,37698650:4227096,452978,115847 +k1,15701:22108106,37698650:3277 +h1,15701:26331925,37698650:0,411205,112570 +) +k1,15701:26667336,37698650:158464 +(1,15701:26667336,37698650:0,452978,115847 +r1,15712:29135873,37698650:2468537,568825,115847 +k1,15701:26667336,37698650:-2468537 +) +(1,15701:26667336,37698650:2468537,452978,115847 +k1,15701:26667336,37698650:3277 +h1,15701:29132596,37698650:0,411205,112570 +) +k1,15701:29468007,37698650:158464 +(1,15701:29468007,37698650:0,452978,115847 +r1,15712:31233120,37698650:1765113,568825,115847 +k1,15701:29468007,37698650:-1765113 +) +(1,15701:29468007,37698650:1765113,452978,115847 +k1,15701:29468007,37698650:3277 +h1,15701:31229843,37698650:0,411205,112570 +) +k1,15701:31391584,37698650:158464 +k1,15701:32583029,37698650:0 +) +(1,15702:6764466,38563730:25818563,513147,134348 +k1,15701:10174193,38563730:195186 +k1,15701:11028671,38563730:195186 +k1,15701:14177565,38563730:195186 +k1,15701:15024179,38563730:195186 +k1,15701:17587836,38563730:195186 +k1,15701:20072850,38563730:195186 +(1,15701:20072850,38563730:0,459977,115847 +r1,15712:21486251,38563730:1413401,575824,115847 +k1,15701:20072850,38563730:-1413401 +) +(1,15701:20072850,38563730:1413401,459977,115847 +k1,15701:20072850,38563730:3277 +h1,15701:21482974,38563730:0,411205,112570 +) +k1,15701:21855108,38563730:195187 +(1,15701:21855108,38563730:0,459977,115847 +r1,15712:23268509,38563730:1413401,575824,115847 +k1,15701:21855108,38563730:-1413401 +) +(1,15701:21855108,38563730:1413401,459977,115847 +k1,15701:21855108,38563730:3277 +h1,15701:23265232,38563730:0,411205,112570 +) +k1,15701:23463695,38563730:195186 +k1,15701:24850326,38563730:195186 +(1,15701:24850326,38563730:0,459977,115847 +r1,15712:26263727,38563730:1413401,575824,115847 +k1,15701:24850326,38563730:-1413401 +) +(1,15701:24850326,38563730:1413401,459977,115847 +k1,15701:24850326,38563730:3277 +h1,15701:26260450,38563730:0,411205,112570 +) +k1,15701:26632583,38563730:195186 +k1,15701:27951056,38563730:195186 +k1,15701:29526430,38563730:195186 +k1,15702:32583029,38563730:0 +k1,15702:32583029,38563730:0 +) +] +g1,15702:32583029,38698078 +) +h1,15702:6630773,38698078:0,0,0 +(1,15706:6630773,40814896:25952256,555811,139132 +(1,15706:6630773,40814896:2899444,534184,12975 +g1,15706:6630773,40814896 +g1,15706:9530217,40814896 +) +g1,15706:12966008,40814896 +g1,15706:17643903,40814896 +k1,15706:32583029,40814896:11970476 +g1,15706:32583029,40814896 +) +(1,15710:6630773,42073192:25952256,513147,134348 +k1,15709:9664219,42073192:237025 +k1,15709:13828817,42073192:237025 +k1,15709:16620435,42073192:237025 +k1,15709:18590194,42073192:236987 +k1,15709:19358716,42073192:237025 +k1,15709:21108968,42073192:237026 +k1,15709:21997421,42073192:237025 +k1,15709:24838847,42073192:237025 +k1,15709:25431732,42073192:237025 +k1,15709:27058120,42073192:237025 +k1,15709:28229688,42073192:237025 +k1,15709:29228241,42073192:237025 +k1,15709:32583029,42073192:0 +) +(1,15710:6630773,42938272:25952256,505283,126483 +k1,15709:9612482,42938272:157763 +k1,15709:11164196,42938272:157763 +k1,15709:13523969,42938272:157763 +k1,15709:14873177,42938272:157763 +k1,15709:17712018,42938272:157763 +k1,15709:21044344,42938272:157762 +k1,15709:22469573,42938272:157763 +k1,15709:25468977,42938272:157763 +k1,15709:29727983,42938272:157763 +k1,15709:30630235,42938272:157763 +k1,15709:31143858,42938272:157763 +k1,15709:32583029,42938272:0 +) +(1,15710:6630773,43803352:25952256,513147,134348 +k1,15709:8625034,43803352:155976 +k1,15709:9649361,43803352:155975 +k1,15709:13110318,43803352:155976 +k1,15709:14172656,43803352:155975 +k1,15709:14980060,43803352:155976 +k1,15709:17958015,43803352:155975 +k1,15709:19810718,43803352:155976 +k1,15709:23894267,43803352:155976 +k1,15709:24666280,43803352:155975 +k1,15709:27286410,43803352:155976 +k1,15709:28093813,43803352:155975 +k1,15709:30387573,43803352:155976 +k1,15709:32583029,43803352:0 +) +(1,15710:6630773,44668432:25952256,513147,126483 +k1,15709:9590644,44668432:140512 +k1,15709:13738027,44668432:140512 +k1,15709:16893850,44668432:140512 +k1,15709:18466979,44668432:140512 +k1,15709:19526307,44668432:140513 +k1,15709:22362315,44668432:140512 +(1,15709:22362315,44668432:0,452978,115847 +r1,15712:25182564,44668432:2820249,568825,115847 +k1,15709:22362315,44668432:-2820249 +) +(1,15709:22362315,44668432:2820249,452978,115847 +k1,15709:22362315,44668432:3277 +h1,15709:25179287,44668432:0,411205,112570 +) +k1,15709:25323076,44668432:140512 +k1,15709:28581791,44668432:140512 +k1,15709:29741388,44668432:140512 +k1,15709:32583029,44668432:0 +) +(1,15710:6630773,45533512:25952256,513147,134348 +g1,15709:10757575,45533512 +g1,15709:12148249,45533512 +g1,15709:14725780,45533512 +g1,15709:18152002,45533512 +g1,15709:21753860,45533512 +g1,15709:22900740,45533512 +g1,15709:25731240,45533512 +g1,15709:27121914,45533512 +k1,15710:32583029,45533512:3193570 +g1,15710:32583029,45533512 +) +] +(1,15712:32583029,45706769:0,0,0 +g1,15712:32583029,45706769 +) +) +] +(1,15712:6630773,47279633:25952256,0,0 +h1,15712:6630773,47279633:25952256,0,0 +) +] +(1,15712:4262630,4025873:0,0,0 +[1,15712:-473656,4025873:0,0,0 +(1,15712:-473656,-710413:0,0,0 +(1,15712:-473656,-710413:0,0,0 +g1,15712:-473656,-710413 +) +g1,15712:-473656,-710413 ) ] ) ] !28898 -}251 -Input:2671:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2672:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2674:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}252 +Input:2675:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2676:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2677:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2678:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{252 -[1,15803:4262630,47279633:28320399,43253760,0 -(1,15803:4262630,4025873:0,0,0 -[1,15803:-473656,4025873:0,0,0 -(1,15803:-473656,-710413:0,0,0 -(1,15803:-473656,-644877:0,0,0 -k1,15803:-473656,-644877:-65536 +{253 +[1,15801:4262630,47279633:28320399,43253760,0 +(1,15801:4262630,4025873:0,0,0 +[1,15801:-473656,4025873:0,0,0 +(1,15801:-473656,-710413:0,0,0 +(1,15801:-473656,-644877:0,0,0 +k1,15801:-473656,-644877:-65536 ) -(1,15803:-473656,4736287:0,0,0 -k1,15803:-473656,4736287:5209943 +(1,15801:-473656,4736287:0,0,0 +k1,15801:-473656,4736287:5209943 ) -g1,15803:-473656,-710413 +g1,15801:-473656,-710413 ) ] ) -[1,15803:6630773,47279633:25952256,43253760,0 -[1,15803:6630773,4812305:25952256,786432,0 -(1,15803:6630773,4812305:25952256,505283,11795 -(1,15803:6630773,4812305:25952256,505283,11795 -g1,15803:3078558,4812305 -[1,15803:3078558,4812305:0,0,0 -(1,15803:3078558,2439708:0,1703936,0 -k1,15803:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15803:2537886,2439708:1179648,16384,0 +[1,15801:6630773,47279633:25952256,43253760,0 +[1,15801:6630773,4812305:25952256,786432,0 +(1,15801:6630773,4812305:25952256,505283,11795 +(1,15801:6630773,4812305:25952256,505283,11795 +g1,15801:3078558,4812305 +[1,15801:3078558,4812305:0,0,0 +(1,15801:3078558,2439708:0,1703936,0 +k1,15801:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15801:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15803:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15801:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15803:3078558,4812305:0,0,0 -(1,15803:3078558,2439708:0,1703936,0 -g1,15803:29030814,2439708 -g1,15803:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15803:36151628,1915420:16384,1179648,0 +[1,15801:3078558,4812305:0,0,0 +(1,15801:3078558,2439708:0,1703936,0 +g1,15801:29030814,2439708 +g1,15801:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15801:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15803:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15801:37855564,2439708:1179648,16384,0 ) ) -k1,15803:3078556,2439708:-34777008 +k1,15801:3078556,2439708:-34777008 ) ] -[1,15803:3078558,4812305:0,0,0 -(1,15803:3078558,49800853:0,16384,2228224 -k1,15803:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15803:2537886,49800853:1179648,16384,0 +[1,15801:3078558,4812305:0,0,0 +(1,15801:3078558,49800853:0,16384,2228224 +k1,15801:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15801:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15803:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15801:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15803:3078558,4812305:0,0,0 -(1,15803:3078558,49800853:0,16384,2228224 -g1,15803:29030814,49800853 -g1,15803:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15803:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15803:37855564,49800853:1179648,16384,0 -) -) -k1,15803:3078556,49800853:-34777008 -) -] -g1,15803:6630773,4812305 -g1,15803:6630773,4812305 -g1,15803:10653372,4812305 -g1,15803:13583486,4812305 -k1,15803:31387652,4812305:17804166 -) -) -] -[1,15803:6630773,45706769:25952256,40108032,0 -(1,15803:6630773,45706769:25952256,40108032,0 -(1,15803:6630773,45706769:0,0,0 -g1,15803:6630773,45706769 -) -[1,15803:6630773,45706769:25952256,40108032,0 -v1,15714:6630773,6254097:0,393216,0 -(1,15721:6630773,8616315:25952256,2755434,196608 -g1,15721:6630773,8616315 -g1,15721:6630773,8616315 -g1,15721:6434165,8616315 -(1,15721:6434165,8616315:0,2755434,196608 -r1,15803:32779637,8616315:26345472,2952042,196608 -k1,15721:6434165,8616315:-26345472 -) -(1,15721:6434165,8616315:26345472,2755434,196608 -[1,15721:6630773,8616315:25952256,2558826,0 -(1,15716:6630773,6481928:25952256,424439,112852 -(1,15715:6630773,6481928:0,0,0 -g1,15715:6630773,6481928 -g1,15715:6630773,6481928 -g1,15715:6303093,6481928 -(1,15715:6303093,6481928:0,0,0 -) -g1,15715:6630773,6481928 -) -g1,15716:7626635,6481928 -g1,15716:8622497,6481928 -g1,15716:18581116,6481928 -k1,15716:18581116,6481928:0 -h1,15716:23228471,6481928:0,0,0 -k1,15716:32583029,6481928:9354558 -g1,15716:32583029,6481928 -) -(1,15717:6630773,7166783:25952256,424439,112852 -h1,15717:6630773,7166783:0,0,0 -g1,15717:6962727,7166783 -g1,15717:7294681,7166783 -g1,15717:7626635,7166783 -g1,15717:7958589,7166783 -g1,15717:8290543,7166783 -g1,15717:8622497,7166783 -g1,15717:8954451,7166783 -g1,15717:9286405,7166783 -g1,15717:9618359,7166783 -g1,15717:9950313,7166783 -g1,15717:10282267,7166783 -g1,15717:10614221,7166783 -g1,15717:10946175,7166783 -g1,15717:11278129,7166783 -g1,15717:11610083,7166783 -g1,15717:11942037,7166783 -g1,15717:12273991,7166783 -g1,15717:12605945,7166783 -g1,15717:12937899,7166783 -g1,15717:13269853,7166783 -g1,15717:18581116,7166783 -k1,15717:18581116,7166783:0 -h1,15717:23892379,7166783:0,0,0 -k1,15717:32583029,7166783:8690650 -g1,15717:32583029,7166783 -) -(1,15718:6630773,7851638:25952256,388105,86428 -h1,15718:6630773,7851638:0,0,0 -g1,15718:6962727,7851638 -g1,15718:7294681,7851638 -g1,15718:7626635,7851638 -g1,15718:7958589,7851638 -g1,15718:8290543,7851638 -g1,15718:8622497,7851638 -g1,15718:8954451,7851638 -g1,15718:9286405,7851638 -g1,15718:9618359,7851638 -g1,15718:9950313,7851638 -g1,15718:10282267,7851638 -g1,15718:10614221,7851638 -g1,15718:10946175,7851638 -g1,15718:13269853,7851638 -g1,15718:13933761,7851638 -k1,15718:13933761,7851638:0 -h1,15718:15593531,7851638:0,0,0 -k1,15718:32583029,7851638:16989498 -g1,15718:32583029,7851638 -) -(1,15719:6630773,8536493:25952256,424439,79822 -h1,15719:6630773,8536493:0,0,0 -g1,15719:6962727,8536493 -g1,15719:7294681,8536493 -g1,15719:7626635,8536493 -g1,15719:7958589,8536493 -g1,15719:8290543,8536493 -g1,15719:8622497,8536493 -g1,15719:8954451,8536493 -g1,15719:9286405,8536493 -g1,15719:9618359,8536493 -g1,15719:9950313,8536493 -g1,15719:10282267,8536493 -g1,15719:10614221,8536493 -g1,15719:10946175,8536493 -g1,15719:12937899,8536493 -g1,15719:13601807,8536493 -h1,15719:15261577,8536493:0,0,0 -k1,15719:32583029,8536493:17321452 -g1,15719:32583029,8536493 -) -] -) -g1,15721:32583029,8616315 -g1,15721:6630773,8616315 -g1,15721:6630773,8616315 -g1,15721:32583029,8616315 -g1,15721:32583029,8616315 -) -h1,15721:6630773,8812923:0,0,0 -(1,15726:6630773,9497778:25952256,513147,134348 -h1,15724:6630773,9497778:983040,0,0 -k1,15724:8581780,9497778:207749 -k1,15724:11361817,9497778:207749 -k1,15724:12588651,9497778:207749 -k1,15724:15575127,9497778:207749 -k1,15724:17742402,9497778:207749 -k1,15724:18818503,9497778:207749 -k1,15724:20130534,9497778:207749 -k1,15724:21363266,9497778:207749 -k1,15724:22590100,9497778:207749 -k1,15724:25494656,9497778:207749 -k1,15724:26361697,9497778:207749 -k1,15724:28021068,9497778:207749 -k1,15724:30740157,9497778:207749 -k1,15724:31563944,9497778:207749 -k1,15724:32583029,9497778:0 -) -(1,15726:6630773,10182633:25952256,505283,126483 -g1,15724:9671643,10182633 -g1,15724:13798445,10182633 -(1,15724:13798445,10182633:0,435480,115847 -r1,15803:14508423,10182633:709978,551327,115847 -k1,15724:13798445,10182633:-709978 -) -(1,15724:13798445,10182633:709978,435480,115847 -k1,15724:13798445,10182633:3277 -h1,15724:14505146,10182633:0,411205,112570 -) -g1,15724:14707652,10182633 -g1,15724:15558309,10182633 -(1,15724:15558309,10182633:0,424981,115847 -r1,15803:16268287,10182633:709978,540828,115847 -k1,15724:15558309,10182633:-709978 -) -(1,15724:15558309,10182633:709978,424981,115847 -k1,15724:15558309,10182633:3277 -h1,15724:16265010,10182633:0,411205,112570 -) -g1,15724:16641186,10182633 -k1,15726:32583029,10182633:15941843 -g1,15726:32583029,10182633 -) -v1,15726:6630773,10867488:0,393216,0 -(1,15747:6630773,19031848:25952256,8557576,196608 -g1,15747:6630773,19031848 -g1,15747:6630773,19031848 -g1,15747:6434165,19031848 -(1,15747:6434165,19031848:0,8557576,196608 -r1,15803:32779637,19031848:26345472,8754184,196608 -k1,15747:6434165,19031848:-26345472 -) -(1,15747:6434165,19031848:26345472,8557576,196608 -[1,15747:6630773,19031848:25952256,8360968,0 -(1,15728:6630773,11095319:25952256,424439,106246 -(1,15727:6630773,11095319:0,0,0 -g1,15727:6630773,11095319 -g1,15727:6630773,11095319 -g1,15727:6303093,11095319 -(1,15727:6303093,11095319:0,0,0 -) -g1,15727:6630773,11095319 -) -k1,15728:6630773,11095319:0 -h1,15728:9618359,11095319:0,0,0 -k1,15728:32583029,11095319:22964670 -g1,15728:32583029,11095319 -) -(1,15732:6630773,11911246:25952256,424439,106246 -(1,15730:6630773,11911246:0,0,0 -g1,15730:6630773,11911246 -g1,15730:6630773,11911246 -g1,15730:6303093,11911246 -(1,15730:6303093,11911246:0,0,0 -) -g1,15730:6630773,11911246 -) -g1,15732:7626635,11911246 -g1,15732:8954451,11911246 -h1,15732:11610082,11911246:0,0,0 -k1,15732:32583030,11911246:20972948 -g1,15732:32583030,11911246 -) -(1,15734:6630773,12727173:25952256,298373,106246 -(1,15733:6630773,12727173:0,0,0 -g1,15733:6630773,12727173 -g1,15733:6630773,12727173 -g1,15733:6303093,12727173 -(1,15733:6303093,12727173:0,0,0 -) -g1,15733:6630773,12727173 -) -h1,15734:7294681,12727173:0,0,0 -k1,15734:32583029,12727173:25288348 -g1,15734:32583029,12727173 -) -(1,15746:6630773,13543100:25952256,424439,106246 -(1,15736:6630773,13543100:0,0,0 -g1,15736:6630773,13543100 -g1,15736:6630773,13543100 -g1,15736:6303093,13543100 -(1,15736:6303093,13543100:0,0,0 -) -g1,15736:6630773,13543100 -) -g1,15746:7626635,13543100 -g1,15746:10614220,13543100 -g1,15746:14265713,13543100 -g1,15746:15593529,13543100 -g1,15746:16921345,13543100 -h1,15746:18581115,13543100:0,0,0 -k1,15746:32583029,13543100:14001914 -g1,15746:32583029,13543100 -) -(1,15746:6630773,14227955:25952256,424439,79822 -h1,15746:6630773,14227955:0,0,0 -g1,15746:7626635,14227955 -g1,15746:8954451,14227955 -g1,15746:12273990,14227955 -g1,15746:15593529,14227955 -g1,15746:18913068,14227955 -h1,15746:21900653,14227955:0,0,0 -k1,15746:32583029,14227955:10682376 -g1,15746:32583029,14227955 -) -(1,15746:6630773,14912810:25952256,398014,0 -h1,15746:6630773,14912810:0,0,0 -h1,15746:7294681,14912810:0,0,0 -k1,15746:32583029,14912810:25288348 -g1,15746:32583029,14912810 -) -(1,15746:6630773,15597665:25952256,424439,79822 -h1,15746:6630773,15597665:0,0,0 -g1,15746:7626635,15597665 -g1,15746:10614220,15597665 -g1,15746:11610082,15597665 -g1,15746:12273990,15597665 -g1,15746:13269852,15597665 -g1,15746:13933760,15597665 -g1,15746:14929622,15597665 -g1,15746:15593530,15597665 -h1,15746:16589392,15597665:0,0,0 -k1,15746:32583029,15597665:15993637 -g1,15746:32583029,15597665 -) -(1,15746:6630773,16282520:25952256,407923,9908 -h1,15746:6630773,16282520:0,0,0 -g1,15746:7626635,16282520 -g1,15746:7958589,16282520 -g1,15746:8290543,16282520 -g1,15746:8622497,16282520 -g1,15746:8954451,16282520 -g1,15746:9286405,16282520 -g1,15746:9618359,16282520 -g1,15746:9950313,16282520 -g1,15746:10282267,16282520 -g1,15746:10614221,16282520 -g1,15746:10946175,16282520 -g1,15746:11278129,16282520 -g1,15746:11610083,16282520 -g1,15746:11942037,16282520 -g1,15746:12273991,16282520 -g1,15746:12605945,16282520 -g1,15746:12937899,16282520 -g1,15746:13269853,16282520 -g1,15746:13601807,16282520 -g1,15746:13933761,16282520 -g1,15746:14265715,16282520 -g1,15746:15593531,16282520 -g1,15746:15925485,16282520 -g1,15746:16257439,16282520 -g1,15746:16589393,16282520 -g1,15746:16921347,16282520 -g1,15746:17253301,16282520 -g1,15746:17585255,16282520 -g1,15746:17917209,16282520 -g1,15746:18249163,16282520 -g1,15746:19576979,16282520 -g1,15746:19908933,16282520 -g1,15746:20240887,16282520 -g1,15746:20572841,16282520 -g1,15746:20904795,16282520 -g1,15746:21236749,16282520 -g1,15746:21568703,16282520 -g1,15746:21900657,16282520 -g1,15746:23228473,16282520 -g1,15746:23560427,16282520 -g1,15746:23892381,16282520 -g1,15746:24224335,16282520 -g1,15746:24556289,16282520 -g1,15746:24888243,16282520 -g1,15746:25220197,16282520 -g1,15746:25552151,16282520 -h1,15746:26548013,16282520:0,0,0 -k1,15746:32583029,16282520:6035016 -g1,15746:32583029,16282520 -) -(1,15746:6630773,16967375:25952256,424439,112852 -h1,15746:6630773,16967375:0,0,0 -g1,15746:7626635,16967375 -g1,15746:11942036,16967375 -g1,15746:12273990,16967375 -g1,15746:15593529,16967375 -g1,15746:19576976,16967375 -g1,15746:19908930,16967375 -g1,15746:23228469,16967375 -g1,15746:23560423,16967375 -h1,15746:26548008,16967375:0,0,0 -k1,15746:32583029,16967375:6035021 -g1,15746:32583029,16967375 -) -(1,15746:6630773,17652230:25952256,424439,106246 -h1,15746:6630773,17652230:0,0,0 -g1,15746:7626635,17652230 -g1,15746:11610082,17652230 -g1,15746:11942036,17652230 -g1,15746:15593529,17652230 -g1,15746:19576976,17652230 -g1,15746:23228469,17652230 -k1,15746:23228469,17652230:0 -h1,15746:26548008,17652230:0,0,0 -k1,15746:32583029,17652230:6035021 -g1,15746:32583029,17652230 -) -(1,15746:6630773,18337085:25952256,424439,112852 -h1,15746:6630773,18337085:0,0,0 -g1,15746:7626635,18337085 -g1,15746:11942036,18337085 -g1,15746:12273990,18337085 -g1,15746:15593529,18337085 -g1,15746:19576976,18337085 -g1,15746:23228469,18337085 -k1,15746:23228469,18337085:0 -h1,15746:26548008,18337085:0,0,0 -k1,15746:32583029,18337085:6035021 -g1,15746:32583029,18337085 -) -(1,15746:6630773,19021940:25952256,424439,9908 -h1,15746:6630773,19021940:0,0,0 -g1,15746:7626635,19021940 -g1,15746:11610082,19021940 -g1,15746:11942036,19021940 -g1,15746:12273990,19021940 -g1,15746:15593529,19021940 -g1,15746:19576976,19021940 -g1,15746:23228469,19021940 -g1,15746:23560423,19021940 -h1,15746:26548008,19021940:0,0,0 -k1,15746:32583029,19021940:6035021 -g1,15746:32583029,19021940 -) -] -) -g1,15747:32583029,19031848 -g1,15747:6630773,19031848 -g1,15747:6630773,19031848 -g1,15747:32583029,19031848 -g1,15747:32583029,19031848 -) -h1,15747:6630773,19228456:0,0,0 -(1,15751:6630773,20093536:25952256,513147,126483 -h1,15750:6630773,20093536:983040,0,0 -k1,15750:8518865,20093536:277217 -k1,15750:9815167,20093536:277217 -k1,15750:13256463,20093536:277218 -k1,15750:14552765,20093536:277217 -k1,15750:16364180,20093536:277217 -k1,15750:20371051,20093536:277217 -k1,15750:21307560,20093536:277217 -k1,15750:24640066,20093536:277218 -k1,15750:26108728,20093536:277217 -k1,15750:30314828,20093536:277217 -k1,15751:32583029,20093536:0 -) -(1,15751:6630773,20958616:25952256,513147,126483 -k1,15750:8442486,20958616:244092 -k1,15750:9678138,20958616:244092 -k1,15750:11523929,20958616:244091 -k1,15750:15470150,20958616:244092 -k1,15750:16373534,20958616:244092 -k1,15750:17636711,20958616:244092 -k1,15750:21852940,20958616:244092 -k1,15750:22756324,20958616:244092 -k1,15750:24452037,20958616:244091 -k1,15750:27537770,20958616:244092 -k1,15750:31379133,20958616:244092 -k1,15750:32583029,20958616:0 -) -(1,15751:6630773,21823696:25952256,505283,134348 -g1,15750:7481430,21823696 -g1,15750:10981052,21823696 -g1,15750:12199366,21823696 -g1,15750:15224507,21823696 -g1,15750:17583147,21823696 -k1,15751:32583029,21823696:10875702 -g1,15751:32583029,21823696 -) -v1,15753:6630773,22508551:0,393216,0 -(1,15764:6630773,26397975:25952256,4282640,196608 -g1,15764:6630773,26397975 -g1,15764:6630773,26397975 -g1,15764:6434165,26397975 -(1,15764:6434165,26397975:0,4282640,196608 -r1,15803:32779637,26397975:26345472,4479248,196608 -k1,15764:6434165,26397975:-26345472 -) -(1,15764:6434165,26397975:26345472,4282640,196608 -[1,15764:6630773,26397975:25952256,4086032,0 -(1,15755:6630773,22736382:25952256,424439,106246 -(1,15754:6630773,22736382:0,0,0 -g1,15754:6630773,22736382 -g1,15754:6630773,22736382 -g1,15754:6303093,22736382 -(1,15754:6303093,22736382:0,0,0 -) -g1,15754:6630773,22736382 -) -k1,15755:6630773,22736382:0 -h1,15755:10282267,22736382:0,0,0 -k1,15755:32583029,22736382:22300762 -g1,15755:32583029,22736382 -) -(1,15763:6630773,23552309:25952256,431045,106246 -(1,15757:6630773,23552309:0,0,0 -g1,15757:6630773,23552309 -g1,15757:6630773,23552309 -g1,15757:6303093,23552309 -(1,15757:6303093,23552309:0,0,0 -) -g1,15757:6630773,23552309 -) -g1,15763:7626635,23552309 -g1,15763:11278128,23552309 -g1,15763:12273990,23552309 -h1,15763:15925483,23552309:0,0,0 -k1,15763:32583029,23552309:16657546 -g1,15763:32583029,23552309 -) -(1,15763:6630773,24237164:25952256,407923,9908 -h1,15763:6630773,24237164:0,0,0 -g1,15763:7626635,24237164 -g1,15763:7958589,24237164 -g1,15763:8290543,24237164 -g1,15763:8622497,24237164 -g1,15763:8954451,24237164 -g1,15763:9286405,24237164 -g1,15763:9618359,24237164 -g1,15763:9950313,24237164 -g1,15763:10282267,24237164 -g1,15763:10614221,24237164 -g1,15763:10946175,24237164 -g1,15763:11278129,24237164 -g1,15763:11610083,24237164 -g1,15763:11942037,24237164 -g1,15763:12273991,24237164 -g1,15763:12605945,24237164 -g1,15763:12937899,24237164 -g1,15763:13269853,24237164 -g1,15763:13601807,24237164 -g1,15763:13933761,24237164 -g1,15763:14265715,24237164 -g1,15763:14597669,24237164 -g1,15763:14929623,24237164 -g1,15763:15261577,24237164 -g1,15763:15593531,24237164 -g1,15763:15925485,24237164 -g1,15763:16257439,24237164 -g1,15763:17585255,24237164 -g1,15763:17917209,24237164 -g1,15763:18249163,24237164 -g1,15763:18581117,24237164 -g1,15763:19908933,24237164 -g1,15763:20240887,24237164 -g1,15763:20572841,24237164 -g1,15763:20904795,24237164 -g1,15763:21236749,24237164 -g1,15763:22564565,24237164 -g1,15763:22896519,24237164 -g1,15763:23228473,24237164 -g1,15763:23560427,24237164 -g1,15763:23892381,24237164 -h1,15763:24888243,24237164:0,0,0 -k1,15763:32583029,24237164:7694786 -g1,15763:32583029,24237164 -) -(1,15763:6630773,24922019:25952256,424439,9908 -h1,15763:6630773,24922019:0,0,0 -g1,15763:7626635,24922019 -g1,15763:10614220,24922019 -g1,15763:13933759,24922019 -g1,15763:14265713,24922019 -g1,15763:14597667,24922019 -g1,15763:14929621,24922019 -g1,15763:15261575,24922019 -g1,15763:17585253,24922019 -g1,15763:19908931,24922019 -g1,15763:22564563,24922019 -h1,15763:24888241,24922019:0,0,0 -k1,15763:32583029,24922019:7694788 -g1,15763:32583029,24922019 -) -(1,15763:6630773,25606874:25952256,431045,106246 -h1,15763:6630773,25606874:0,0,0 -g1,15763:7626635,25606874 -g1,15763:11278128,25606874 -g1,15763:12273990,25606874 -g1,15763:15261575,25606874 -g1,15763:17585253,25606874 -g1,15763:19908931,25606874 -g1,15763:22564563,25606874 -h1,15763:24888241,25606874:0,0,0 -k1,15763:32583029,25606874:7694788 -g1,15763:32583029,25606874 -) -(1,15763:6630773,26291729:25952256,424439,106246 -h1,15763:6630773,26291729:0,0,0 -g1,15763:7626635,26291729 -g1,15763:11278128,26291729 -g1,15763:14929621,26291729 -g1,15763:15261575,26291729 -g1,15763:17585253,26291729 -g1,15763:19908931,26291729 -g1,15763:22564563,26291729 -h1,15763:24888241,26291729:0,0,0 -k1,15763:32583029,26291729:7694788 -g1,15763:32583029,26291729 -) -] -) -g1,15764:32583029,26397975 -g1,15764:6630773,26397975 -g1,15764:6630773,26397975 -g1,15764:32583029,26397975 -g1,15764:32583029,26397975 -) -h1,15764:6630773,26594583:0,0,0 -(1,15768:6630773,27459663:25952256,513147,134348 -h1,15767:6630773,27459663:983040,0,0 -k1,15767:10194858,27459663:183083 -(1,15767:10194858,27459663:0,452978,115847 -r1,15803:12311683,27459663:2116825,568825,115847 -k1,15767:10194858,27459663:-2116825 -) -(1,15767:10194858,27459663:2116825,452978,115847 -k1,15767:10194858,27459663:3277 -h1,15767:12308406,27459663:0,411205,112570 -) -k1,15767:12494765,27459663:183082 -k1,15767:15740345,27459663:183083 -k1,15767:16279287,27459663:183082 -k1,15767:17507014,27459663:183083 -k1,15767:18967393,27459663:183082 -k1,15767:19809768,27459663:183083 -k1,15767:22977360,27459663:183082 -k1,15767:27784008,27459663:183083 -k1,15767:28618518,27459663:183082 -k1,15767:29820686,27459663:183083 -k1,15767:32583029,27459663:0 -) -(1,15768:6630773,28324743:25952256,426639,126483 -k1,15768:32583030,28324743:21972256 -g1,15768:32583030,28324743 -) -v1,15770:6630773,29009598:0,393216,0 -(1,15774:6630773,29343675:25952256,727293,196608 -g1,15774:6630773,29343675 -g1,15774:6630773,29343675 -g1,15774:6434165,29343675 -(1,15774:6434165,29343675:0,727293,196608 -r1,15803:32779637,29343675:26345472,923901,196608 -k1,15774:6434165,29343675:-26345472 -) -(1,15774:6434165,29343675:26345472,727293,196608 -[1,15774:6630773,29343675:25952256,530685,0 -(1,15772:6630773,29237429:25952256,424439,106246 -(1,15771:6630773,29237429:0,0,0 -g1,15771:6630773,29237429 -g1,15771:6630773,29237429 -g1,15771:6303093,29237429 -(1,15771:6303093,29237429:0,0,0 -) -g1,15771:6630773,29237429 -) -k1,15772:6630773,29237429:0 -h1,15772:9286405,29237429:0,0,0 -k1,15772:32583029,29237429:23296624 -g1,15772:32583029,29237429 -) -] -) -g1,15774:32583029,29343675 -g1,15774:6630773,29343675 -g1,15774:6630773,29343675 -g1,15774:32583029,29343675 -g1,15774:32583029,29343675 -) -h1,15774:6630773,29540283:0,0,0 -(1,15777:6630773,39240397:25952256,9634578,0 -k1,15777:13183781,39240397:6553008 -h1,15776:13183781,39240397:0,0,0 -(1,15776:13183781,39240397:12846240,9634578,0 -(1,15776:13183781,39240397:12846136,9634602,0 -(1,15776:13183781,39240397:12846136,9634602,0 -(1,15776:13183781,39240397:0,9634602,0 -(1,15776:13183781,39240397:0,14208860,0 -(1,15776:13183781,39240397:18945146,14208860,0 -) -k1,15776:13183781,39240397:-18945146 -) -) -g1,15776:26029917,39240397 -) -) -) -g1,15777:26030021,39240397 -k1,15777:32583029,39240397:6553008 -) -(1,15786:6630773,40105477:25952256,505283,126483 -h1,15785:6630773,40105477:983040,0,0 -k1,15785:10254658,40105477:242883 -(1,15785:10254658,40105477:0,452978,115847 -r1,15803:13074907,40105477:2820249,568825,115847 -k1,15785:10254658,40105477:-2820249 -) -(1,15785:10254658,40105477:2820249,452978,115847 -k1,15785:10254658,40105477:3277 -h1,15785:13071630,40105477:0,411205,112570 -) -k1,15785:13317790,40105477:242883 -k1,15785:16511104,40105477:242883 -k1,15785:17109847,40105477:242883 -k1,15785:18630026,40105477:242882 -k1,15785:20266860,40105477:242883 -k1,15785:21666453,40105477:242883 -k1,15785:24750977,40105477:242883 -k1,15785:28591131,40105477:242883 -k1,15785:30079154,40105477:242839 -k1,15785:31131407,40105477:242883 -k1,15785:32583029,40105477:0 -) -(1,15786:6630773,40970557:25952256,513147,134348 -g1,15785:8256065,40970557 -g1,15785:9826307,40970557 -g1,15785:12203953,40970557 -g1,15785:13350833,40970557 -g1,15785:14569147,40970557 -k1,15786:32583029,40970557:15264647 -g1,15786:32583029,40970557 -) -v1,15788:6630773,41655412:0,393216,0 -(1,15792:6630773,41989489:25952256,727293,196608 -g1,15792:6630773,41989489 -g1,15792:6630773,41989489 -g1,15792:6434165,41989489 -(1,15792:6434165,41989489:0,727293,196608 -r1,15803:32779637,41989489:26345472,923901,196608 -k1,15792:6434165,41989489:-26345472 +[1,15801:3078558,4812305:0,0,0 +(1,15801:3078558,49800853:0,16384,2228224 +g1,15801:29030814,49800853 +g1,15801:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15801:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15801:37855564,49800853:1179648,16384,0 +) +) +k1,15801:3078556,49800853:-34777008 +) +] +g1,15801:6630773,4812305 +g1,15801:6630773,4812305 +g1,15801:10653372,4812305 +g1,15801:13583486,4812305 +k1,15801:31387652,4812305:17804166 +) +) +] +[1,15801:6630773,45706769:25952256,40108032,0 +(1,15801:6630773,45706769:25952256,40108032,0 +(1,15801:6630773,45706769:0,0,0 +g1,15801:6630773,45706769 +) +[1,15801:6630773,45706769:25952256,40108032,0 +v1,15712:6630773,6254097:0,393216,0 +(1,15719:6630773,8616315:25952256,2755434,196608 +g1,15719:6630773,8616315 +g1,15719:6630773,8616315 +g1,15719:6434165,8616315 +(1,15719:6434165,8616315:0,2755434,196608 +r1,15801:32779637,8616315:26345472,2952042,196608 +k1,15719:6434165,8616315:-26345472 +) +(1,15719:6434165,8616315:26345472,2755434,196608 +[1,15719:6630773,8616315:25952256,2558826,0 +(1,15714:6630773,6481928:25952256,424439,112852 +(1,15713:6630773,6481928:0,0,0 +g1,15713:6630773,6481928 +g1,15713:6630773,6481928 +g1,15713:6303093,6481928 +(1,15713:6303093,6481928:0,0,0 +) +g1,15713:6630773,6481928 +) +g1,15714:7626635,6481928 +g1,15714:8622497,6481928 +g1,15714:18581116,6481928 +k1,15714:18581116,6481928:0 +h1,15714:23228471,6481928:0,0,0 +k1,15714:32583029,6481928:9354558 +g1,15714:32583029,6481928 +) +(1,15715:6630773,7166783:25952256,424439,112852 +h1,15715:6630773,7166783:0,0,0 +g1,15715:6962727,7166783 +g1,15715:7294681,7166783 +g1,15715:7626635,7166783 +g1,15715:7958589,7166783 +g1,15715:8290543,7166783 +g1,15715:8622497,7166783 +g1,15715:8954451,7166783 +g1,15715:9286405,7166783 +g1,15715:9618359,7166783 +g1,15715:9950313,7166783 +g1,15715:10282267,7166783 +g1,15715:10614221,7166783 +g1,15715:10946175,7166783 +g1,15715:11278129,7166783 +g1,15715:11610083,7166783 +g1,15715:11942037,7166783 +g1,15715:12273991,7166783 +g1,15715:12605945,7166783 +g1,15715:12937899,7166783 +g1,15715:13269853,7166783 +g1,15715:18581116,7166783 +k1,15715:18581116,7166783:0 +h1,15715:23892379,7166783:0,0,0 +k1,15715:32583029,7166783:8690650 +g1,15715:32583029,7166783 +) +(1,15716:6630773,7851638:25952256,388105,86428 +h1,15716:6630773,7851638:0,0,0 +g1,15716:6962727,7851638 +g1,15716:7294681,7851638 +g1,15716:7626635,7851638 +g1,15716:7958589,7851638 +g1,15716:8290543,7851638 +g1,15716:8622497,7851638 +g1,15716:8954451,7851638 +g1,15716:9286405,7851638 +g1,15716:9618359,7851638 +g1,15716:9950313,7851638 +g1,15716:10282267,7851638 +g1,15716:10614221,7851638 +g1,15716:10946175,7851638 +g1,15716:13269853,7851638 +g1,15716:13933761,7851638 +k1,15716:13933761,7851638:0 +h1,15716:15593531,7851638:0,0,0 +k1,15716:32583029,7851638:16989498 +g1,15716:32583029,7851638 +) +(1,15717:6630773,8536493:25952256,424439,79822 +h1,15717:6630773,8536493:0,0,0 +g1,15717:6962727,8536493 +g1,15717:7294681,8536493 +g1,15717:7626635,8536493 +g1,15717:7958589,8536493 +g1,15717:8290543,8536493 +g1,15717:8622497,8536493 +g1,15717:8954451,8536493 +g1,15717:9286405,8536493 +g1,15717:9618359,8536493 +g1,15717:9950313,8536493 +g1,15717:10282267,8536493 +g1,15717:10614221,8536493 +g1,15717:10946175,8536493 +g1,15717:12937899,8536493 +g1,15717:13601807,8536493 +h1,15717:15261577,8536493:0,0,0 +k1,15717:32583029,8536493:17321452 +g1,15717:32583029,8536493 +) +] +) +g1,15719:32583029,8616315 +g1,15719:6630773,8616315 +g1,15719:6630773,8616315 +g1,15719:32583029,8616315 +g1,15719:32583029,8616315 +) +h1,15719:6630773,8812923:0,0,0 +(1,15724:6630773,9497778:25952256,513147,134348 +h1,15722:6630773,9497778:983040,0,0 +k1,15722:8569375,9497778:195344 +k1,15722:11337007,9497778:195344 +k1,15722:12551436,9497778:195344 +k1,15722:15525507,9497778:195344 +k1,15722:17854048,9497778:195344 +k1,15722:18917744,9497778:195344 +k1,15722:20217369,9497778:195343 +k1,15722:21437696,9497778:195344 +k1,15722:22652125,9497778:195344 +k1,15722:25544276,9497778:195344 +k1,15722:26398912,9497778:195344 +k1,15722:28045878,9497778:195344 +k1,15722:30752562,9497778:195344 +k1,15722:31563944,9497778:195344 +k1,15722:32583029,9497778:0 +) +(1,15724:6630773,10182633:25952256,505283,126483 +g1,15722:9671643,10182633 +g1,15722:13798445,10182633 +(1,15722:13798445,10182633:0,435480,115847 +r1,15801:14508423,10182633:709978,551327,115847 +k1,15722:13798445,10182633:-709978 +) +(1,15722:13798445,10182633:709978,435480,115847 +k1,15722:13798445,10182633:3277 +h1,15722:14505146,10182633:0,411205,112570 +) +g1,15722:14707652,10182633 +g1,15722:15558309,10182633 +(1,15722:15558309,10182633:0,424981,115847 +r1,15801:16268287,10182633:709978,540828,115847 +k1,15722:15558309,10182633:-709978 +) +(1,15722:15558309,10182633:709978,424981,115847 +k1,15722:15558309,10182633:3277 +h1,15722:16265010,10182633:0,411205,112570 +) +g1,15722:16641186,10182633 +k1,15724:32583029,10182633:15941843 +g1,15724:32583029,10182633 +) +v1,15724:6630773,10867488:0,393216,0 +(1,15745:6630773,19031848:25952256,8557576,196608 +g1,15745:6630773,19031848 +g1,15745:6630773,19031848 +g1,15745:6434165,19031848 +(1,15745:6434165,19031848:0,8557576,196608 +r1,15801:32779637,19031848:26345472,8754184,196608 +k1,15745:6434165,19031848:-26345472 +) +(1,15745:6434165,19031848:26345472,8557576,196608 +[1,15745:6630773,19031848:25952256,8360968,0 +(1,15726:6630773,11095319:25952256,424439,106246 +(1,15725:6630773,11095319:0,0,0 +g1,15725:6630773,11095319 +g1,15725:6630773,11095319 +g1,15725:6303093,11095319 +(1,15725:6303093,11095319:0,0,0 +) +g1,15725:6630773,11095319 +) +k1,15726:6630773,11095319:0 +h1,15726:9618359,11095319:0,0,0 +k1,15726:32583029,11095319:22964670 +g1,15726:32583029,11095319 +) +(1,15730:6630773,11911246:25952256,424439,106246 +(1,15728:6630773,11911246:0,0,0 +g1,15728:6630773,11911246 +g1,15728:6630773,11911246 +g1,15728:6303093,11911246 +(1,15728:6303093,11911246:0,0,0 +) +g1,15728:6630773,11911246 +) +g1,15730:7626635,11911246 +g1,15730:8954451,11911246 +h1,15730:11610082,11911246:0,0,0 +k1,15730:32583030,11911246:20972948 +g1,15730:32583030,11911246 +) +(1,15732:6630773,12727173:25952256,298373,106246 +(1,15731:6630773,12727173:0,0,0 +g1,15731:6630773,12727173 +g1,15731:6630773,12727173 +g1,15731:6303093,12727173 +(1,15731:6303093,12727173:0,0,0 +) +g1,15731:6630773,12727173 +) +h1,15732:7294681,12727173:0,0,0 +k1,15732:32583029,12727173:25288348 +g1,15732:32583029,12727173 +) +(1,15744:6630773,13543100:25952256,424439,106246 +(1,15734:6630773,13543100:0,0,0 +g1,15734:6630773,13543100 +g1,15734:6630773,13543100 +g1,15734:6303093,13543100 +(1,15734:6303093,13543100:0,0,0 +) +g1,15734:6630773,13543100 +) +g1,15744:7626635,13543100 +g1,15744:10614220,13543100 +g1,15744:14265713,13543100 +g1,15744:15593529,13543100 +g1,15744:16921345,13543100 +h1,15744:18581115,13543100:0,0,0 +k1,15744:32583029,13543100:14001914 +g1,15744:32583029,13543100 +) +(1,15744:6630773,14227955:25952256,424439,79822 +h1,15744:6630773,14227955:0,0,0 +g1,15744:7626635,14227955 +g1,15744:8954451,14227955 +g1,15744:12273990,14227955 +g1,15744:15593529,14227955 +g1,15744:18913068,14227955 +h1,15744:21900653,14227955:0,0,0 +k1,15744:32583029,14227955:10682376 +g1,15744:32583029,14227955 +) +(1,15744:6630773,14912810:25952256,398014,0 +h1,15744:6630773,14912810:0,0,0 +h1,15744:7294681,14912810:0,0,0 +k1,15744:32583029,14912810:25288348 +g1,15744:32583029,14912810 +) +(1,15744:6630773,15597665:25952256,424439,79822 +h1,15744:6630773,15597665:0,0,0 +g1,15744:7626635,15597665 +g1,15744:10614220,15597665 +g1,15744:11610082,15597665 +g1,15744:12273990,15597665 +g1,15744:13269852,15597665 +g1,15744:13933760,15597665 +g1,15744:14929622,15597665 +g1,15744:15593530,15597665 +h1,15744:16589392,15597665:0,0,0 +k1,15744:32583029,15597665:15993637 +g1,15744:32583029,15597665 +) +(1,15744:6630773,16282520:25952256,407923,9908 +h1,15744:6630773,16282520:0,0,0 +g1,15744:7626635,16282520 +g1,15744:7958589,16282520 +g1,15744:8290543,16282520 +g1,15744:8622497,16282520 +g1,15744:8954451,16282520 +g1,15744:9286405,16282520 +g1,15744:9618359,16282520 +g1,15744:9950313,16282520 +g1,15744:10282267,16282520 +g1,15744:10614221,16282520 +g1,15744:10946175,16282520 +g1,15744:11278129,16282520 +g1,15744:11610083,16282520 +g1,15744:11942037,16282520 +g1,15744:12273991,16282520 +g1,15744:12605945,16282520 +g1,15744:12937899,16282520 +g1,15744:13269853,16282520 +g1,15744:13601807,16282520 +g1,15744:13933761,16282520 +g1,15744:14265715,16282520 +g1,15744:15593531,16282520 +g1,15744:15925485,16282520 +g1,15744:16257439,16282520 +g1,15744:16589393,16282520 +g1,15744:16921347,16282520 +g1,15744:17253301,16282520 +g1,15744:17585255,16282520 +g1,15744:17917209,16282520 +g1,15744:18249163,16282520 +g1,15744:19576979,16282520 +g1,15744:19908933,16282520 +g1,15744:20240887,16282520 +g1,15744:20572841,16282520 +g1,15744:20904795,16282520 +g1,15744:21236749,16282520 +g1,15744:21568703,16282520 +g1,15744:21900657,16282520 +g1,15744:23228473,16282520 +g1,15744:23560427,16282520 +g1,15744:23892381,16282520 +g1,15744:24224335,16282520 +g1,15744:24556289,16282520 +g1,15744:24888243,16282520 +g1,15744:25220197,16282520 +g1,15744:25552151,16282520 +h1,15744:26548013,16282520:0,0,0 +k1,15744:32583029,16282520:6035016 +g1,15744:32583029,16282520 +) +(1,15744:6630773,16967375:25952256,424439,112852 +h1,15744:6630773,16967375:0,0,0 +g1,15744:7626635,16967375 +g1,15744:11942036,16967375 +g1,15744:12273990,16967375 +g1,15744:15593529,16967375 +g1,15744:19576976,16967375 +g1,15744:19908930,16967375 +g1,15744:23228469,16967375 +g1,15744:23560423,16967375 +h1,15744:26548008,16967375:0,0,0 +k1,15744:32583029,16967375:6035021 +g1,15744:32583029,16967375 +) +(1,15744:6630773,17652230:25952256,424439,106246 +h1,15744:6630773,17652230:0,0,0 +g1,15744:7626635,17652230 +g1,15744:11610082,17652230 +g1,15744:11942036,17652230 +g1,15744:15593529,17652230 +g1,15744:19576976,17652230 +g1,15744:23228469,17652230 +k1,15744:23228469,17652230:0 +h1,15744:26548008,17652230:0,0,0 +k1,15744:32583029,17652230:6035021 +g1,15744:32583029,17652230 +) +(1,15744:6630773,18337085:25952256,424439,112852 +h1,15744:6630773,18337085:0,0,0 +g1,15744:7626635,18337085 +g1,15744:11942036,18337085 +g1,15744:12273990,18337085 +g1,15744:15593529,18337085 +g1,15744:19576976,18337085 +g1,15744:23228469,18337085 +k1,15744:23228469,18337085:0 +h1,15744:26548008,18337085:0,0,0 +k1,15744:32583029,18337085:6035021 +g1,15744:32583029,18337085 +) +(1,15744:6630773,19021940:25952256,424439,9908 +h1,15744:6630773,19021940:0,0,0 +g1,15744:7626635,19021940 +g1,15744:11610082,19021940 +g1,15744:11942036,19021940 +g1,15744:12273990,19021940 +g1,15744:15593529,19021940 +g1,15744:19576976,19021940 +g1,15744:23228469,19021940 +g1,15744:23560423,19021940 +h1,15744:26548008,19021940:0,0,0 +k1,15744:32583029,19021940:6035021 +g1,15744:32583029,19021940 +) +] +) +g1,15745:32583029,19031848 +g1,15745:6630773,19031848 +g1,15745:6630773,19031848 +g1,15745:32583029,19031848 +g1,15745:32583029,19031848 +) +h1,15745:6630773,19228456:0,0,0 +(1,15749:6630773,20093536:25952256,513147,126483 +h1,15748:6630773,20093536:983040,0,0 +k1,15748:8518865,20093536:277217 +k1,15748:9815167,20093536:277217 +k1,15748:13256463,20093536:277218 +k1,15748:14552765,20093536:277217 +k1,15748:16364180,20093536:277217 +k1,15748:20371051,20093536:277217 +k1,15748:21307560,20093536:277217 +k1,15748:24640066,20093536:277218 +k1,15748:26108728,20093536:277217 +k1,15748:30314828,20093536:277217 +k1,15749:32583029,20093536:0 +) +(1,15749:6630773,20958616:25952256,513147,126483 +k1,15748:8442486,20958616:244092 +k1,15748:9678138,20958616:244092 +k1,15748:11523929,20958616:244091 +k1,15748:15470150,20958616:244092 +k1,15748:16373534,20958616:244092 +k1,15748:17636711,20958616:244092 +k1,15748:21852940,20958616:244092 +k1,15748:22756324,20958616:244092 +k1,15748:24452037,20958616:244091 +k1,15748:27537770,20958616:244092 +k1,15748:31379133,20958616:244092 +k1,15748:32583029,20958616:0 +) +(1,15749:6630773,21823696:25952256,505283,134348 +g1,15748:7481430,21823696 +g1,15748:10981052,21823696 +g1,15748:12199366,21823696 +g1,15748:15224507,21823696 +g1,15748:17583147,21823696 +k1,15749:32583029,21823696:10875702 +g1,15749:32583029,21823696 +) +v1,15751:6630773,22508551:0,393216,0 +(1,15762:6630773,26397975:25952256,4282640,196608 +g1,15762:6630773,26397975 +g1,15762:6630773,26397975 +g1,15762:6434165,26397975 +(1,15762:6434165,26397975:0,4282640,196608 +r1,15801:32779637,26397975:26345472,4479248,196608 +k1,15762:6434165,26397975:-26345472 +) +(1,15762:6434165,26397975:26345472,4282640,196608 +[1,15762:6630773,26397975:25952256,4086032,0 +(1,15753:6630773,22736382:25952256,424439,106246 +(1,15752:6630773,22736382:0,0,0 +g1,15752:6630773,22736382 +g1,15752:6630773,22736382 +g1,15752:6303093,22736382 +(1,15752:6303093,22736382:0,0,0 +) +g1,15752:6630773,22736382 +) +k1,15753:6630773,22736382:0 +h1,15753:10282267,22736382:0,0,0 +k1,15753:32583029,22736382:22300762 +g1,15753:32583029,22736382 +) +(1,15761:6630773,23552309:25952256,431045,106246 +(1,15755:6630773,23552309:0,0,0 +g1,15755:6630773,23552309 +g1,15755:6630773,23552309 +g1,15755:6303093,23552309 +(1,15755:6303093,23552309:0,0,0 +) +g1,15755:6630773,23552309 +) +g1,15761:7626635,23552309 +g1,15761:11278128,23552309 +g1,15761:12273990,23552309 +h1,15761:15925483,23552309:0,0,0 +k1,15761:32583029,23552309:16657546 +g1,15761:32583029,23552309 +) +(1,15761:6630773,24237164:25952256,407923,9908 +h1,15761:6630773,24237164:0,0,0 +g1,15761:7626635,24237164 +g1,15761:7958589,24237164 +g1,15761:8290543,24237164 +g1,15761:8622497,24237164 +g1,15761:8954451,24237164 +g1,15761:9286405,24237164 +g1,15761:9618359,24237164 +g1,15761:9950313,24237164 +g1,15761:10282267,24237164 +g1,15761:10614221,24237164 +g1,15761:10946175,24237164 +g1,15761:11278129,24237164 +g1,15761:11610083,24237164 +g1,15761:11942037,24237164 +g1,15761:12273991,24237164 +g1,15761:12605945,24237164 +g1,15761:12937899,24237164 +g1,15761:13269853,24237164 +g1,15761:13601807,24237164 +g1,15761:13933761,24237164 +g1,15761:14265715,24237164 +g1,15761:14597669,24237164 +g1,15761:14929623,24237164 +g1,15761:15261577,24237164 +g1,15761:15593531,24237164 +g1,15761:15925485,24237164 +g1,15761:16257439,24237164 +g1,15761:17585255,24237164 +g1,15761:17917209,24237164 +g1,15761:18249163,24237164 +g1,15761:18581117,24237164 +g1,15761:19908933,24237164 +g1,15761:20240887,24237164 +g1,15761:20572841,24237164 +g1,15761:20904795,24237164 +g1,15761:21236749,24237164 +g1,15761:22564565,24237164 +g1,15761:22896519,24237164 +g1,15761:23228473,24237164 +g1,15761:23560427,24237164 +g1,15761:23892381,24237164 +h1,15761:24888243,24237164:0,0,0 +k1,15761:32583029,24237164:7694786 +g1,15761:32583029,24237164 +) +(1,15761:6630773,24922019:25952256,424439,9908 +h1,15761:6630773,24922019:0,0,0 +g1,15761:7626635,24922019 +g1,15761:10614220,24922019 +g1,15761:13933759,24922019 +g1,15761:14265713,24922019 +g1,15761:14597667,24922019 +g1,15761:14929621,24922019 +g1,15761:15261575,24922019 +g1,15761:17585253,24922019 +g1,15761:19908931,24922019 +g1,15761:22564563,24922019 +h1,15761:24888241,24922019:0,0,0 +k1,15761:32583029,24922019:7694788 +g1,15761:32583029,24922019 +) +(1,15761:6630773,25606874:25952256,431045,106246 +h1,15761:6630773,25606874:0,0,0 +g1,15761:7626635,25606874 +g1,15761:11278128,25606874 +g1,15761:12273990,25606874 +g1,15761:15261575,25606874 +g1,15761:17585253,25606874 +g1,15761:19908931,25606874 +g1,15761:22564563,25606874 +h1,15761:24888241,25606874:0,0,0 +k1,15761:32583029,25606874:7694788 +g1,15761:32583029,25606874 +) +(1,15761:6630773,26291729:25952256,424439,106246 +h1,15761:6630773,26291729:0,0,0 +g1,15761:7626635,26291729 +g1,15761:11278128,26291729 +g1,15761:14929621,26291729 +g1,15761:15261575,26291729 +g1,15761:17585253,26291729 +g1,15761:19908931,26291729 +g1,15761:22564563,26291729 +h1,15761:24888241,26291729:0,0,0 +k1,15761:32583029,26291729:7694788 +g1,15761:32583029,26291729 +) +] +) +g1,15762:32583029,26397975 +g1,15762:6630773,26397975 +g1,15762:6630773,26397975 +g1,15762:32583029,26397975 +g1,15762:32583029,26397975 +) +h1,15762:6630773,26594583:0,0,0 +(1,15766:6630773,27459663:25952256,513147,134348 +h1,15765:6630773,27459663:983040,0,0 +k1,15765:10194858,27459663:183083 +(1,15765:10194858,27459663:0,452978,115847 +r1,15801:12311683,27459663:2116825,568825,115847 +k1,15765:10194858,27459663:-2116825 +) +(1,15765:10194858,27459663:2116825,452978,115847 +k1,15765:10194858,27459663:3277 +h1,15765:12308406,27459663:0,411205,112570 +) +k1,15765:12494765,27459663:183082 +k1,15765:15740345,27459663:183083 +k1,15765:16279287,27459663:183082 +k1,15765:17507014,27459663:183083 +k1,15765:18967393,27459663:183082 +k1,15765:19809768,27459663:183083 +k1,15765:22977360,27459663:183082 +k1,15765:27784008,27459663:183083 +k1,15765:28618518,27459663:183082 +k1,15765:29820686,27459663:183083 +k1,15765:32583029,27459663:0 +) +(1,15766:6630773,28324743:25952256,426639,126483 +k1,15766:32583030,28324743:21972256 +g1,15766:32583030,28324743 +) +v1,15768:6630773,29009598:0,393216,0 +(1,15772:6630773,29343675:25952256,727293,196608 +g1,15772:6630773,29343675 +g1,15772:6630773,29343675 +g1,15772:6434165,29343675 +(1,15772:6434165,29343675:0,727293,196608 +r1,15801:32779637,29343675:26345472,923901,196608 +k1,15772:6434165,29343675:-26345472 +) +(1,15772:6434165,29343675:26345472,727293,196608 +[1,15772:6630773,29343675:25952256,530685,0 +(1,15770:6630773,29237429:25952256,424439,106246 +(1,15769:6630773,29237429:0,0,0 +g1,15769:6630773,29237429 +g1,15769:6630773,29237429 +g1,15769:6303093,29237429 +(1,15769:6303093,29237429:0,0,0 +) +g1,15769:6630773,29237429 +) +k1,15770:6630773,29237429:0 +h1,15770:9286405,29237429:0,0,0 +k1,15770:32583029,29237429:23296624 +g1,15770:32583029,29237429 +) +] +) +g1,15772:32583029,29343675 +g1,15772:6630773,29343675 +g1,15772:6630773,29343675 +g1,15772:32583029,29343675 +g1,15772:32583029,29343675 +) +h1,15772:6630773,29540283:0,0,0 +(1,15775:6630773,39240397:25952256,9634578,0 +k1,15775:13183781,39240397:6553008 +h1,15774:13183781,39240397:0,0,0 +(1,15774:13183781,39240397:12846240,9634578,0 +(1,15774:13183781,39240397:12846136,9634602,0 +(1,15774:13183781,39240397:12846136,9634602,0 +(1,15774:13183781,39240397:0,9634602,0 +(1,15774:13183781,39240397:0,14208860,0 +(1,15774:13183781,39240397:18945146,14208860,0 +) +k1,15774:13183781,39240397:-18945146 +) +) +g1,15774:26029917,39240397 +) +) +) +g1,15775:26030021,39240397 +k1,15775:32583029,39240397:6553008 +) +(1,15784:6630773,40105477:25952256,505283,126483 +h1,15783:6630773,40105477:983040,0,0 +k1,15783:10254658,40105477:242883 +(1,15783:10254658,40105477:0,452978,115847 +r1,15801:13074907,40105477:2820249,568825,115847 +k1,15783:10254658,40105477:-2820249 +) +(1,15783:10254658,40105477:2820249,452978,115847 +k1,15783:10254658,40105477:3277 +h1,15783:13071630,40105477:0,411205,112570 +) +k1,15783:13317790,40105477:242883 +k1,15783:16511104,40105477:242883 +k1,15783:17109847,40105477:242883 +k1,15783:18630026,40105477:242882 +k1,15783:20266860,40105477:242883 +k1,15783:21666453,40105477:242883 +k1,15783:24750977,40105477:242883 +k1,15783:28591131,40105477:242883 +k1,15783:30079154,40105477:242839 +k1,15783:31131407,40105477:242883 +k1,15783:32583029,40105477:0 +) +(1,15784:6630773,40970557:25952256,513147,134348 +g1,15783:8256065,40970557 +g1,15783:9826307,40970557 +g1,15783:12203953,40970557 +g1,15783:13350833,40970557 +g1,15783:14569147,40970557 +k1,15784:32583029,40970557:15264647 +g1,15784:32583029,40970557 +) +v1,15786:6630773,41655412:0,393216,0 +(1,15790:6630773,41989489:25952256,727293,196608 +g1,15790:6630773,41989489 +g1,15790:6630773,41989489 +g1,15790:6434165,41989489 +(1,15790:6434165,41989489:0,727293,196608 +r1,15801:32779637,41989489:26345472,923901,196608 +k1,15790:6434165,41989489:-26345472 ) -(1,15792:6434165,41989489:26345472,727293,196608 -[1,15792:6630773,41989489:25952256,530685,0 -(1,15790:6630773,41883243:25952256,424439,106246 -(1,15789:6630773,41883243:0,0,0 -g1,15789:6630773,41883243 -g1,15789:6630773,41883243 -g1,15789:6303093,41883243 -(1,15789:6303093,41883243:0,0,0 +(1,15790:6434165,41989489:26345472,727293,196608 +[1,15790:6630773,41989489:25952256,530685,0 +(1,15788:6630773,41883243:25952256,424439,106246 +(1,15787:6630773,41883243:0,0,0 +g1,15787:6630773,41883243 +g1,15787:6630773,41883243 +g1,15787:6303093,41883243 +(1,15787:6303093,41883243:0,0,0 ) -g1,15789:6630773,41883243 +g1,15787:6630773,41883243 ) -k1,15790:6630773,41883243:0 -h1,15790:9950313,41883243:0,0,0 -k1,15790:32583029,41883243:22632716 -g1,15790:32583029,41883243 +k1,15788:6630773,41883243:0 +h1,15788:9950313,41883243:0,0,0 +k1,15788:32583029,41883243:22632716 +g1,15788:32583029,41883243 ) ] ) -g1,15792:32583029,41989489 -g1,15792:6630773,41989489 -g1,15792:6630773,41989489 -g1,15792:32583029,41989489 -g1,15792:32583029,41989489 +g1,15790:32583029,41989489 +g1,15790:6630773,41989489 +g1,15790:6630773,41989489 +g1,15790:32583029,41989489 +g1,15790:32583029,41989489 ) -h1,15792:6630773,42186097:0,0,0 +h1,15790:6630773,42186097:0,0,0 ] -(1,15803:32583029,45706769:0,0,0 -g1,15803:32583029,45706769 +(1,15801:32583029,45706769:0,0,0 +g1,15801:32583029,45706769 ) ) ] -(1,15803:6630773,47279633:25952256,0,0 -h1,15803:6630773,47279633:25952256,0,0 +(1,15801:6630773,47279633:25952256,0,0 +h1,15801:6630773,47279633:25952256,0,0 ) ] -(1,15803:4262630,4025873:0,0,0 -[1,15803:-473656,4025873:0,0,0 -(1,15803:-473656,-710413:0,0,0 -(1,15803:-473656,-710413:0,0,0 -g1,15803:-473656,-710413 +(1,15801:4262630,4025873:0,0,0 +[1,15801:-473656,4025873:0,0,0 +(1,15801:-473656,-710413:0,0,0 +(1,15801:-473656,-710413:0,0,0 +g1,15801:-473656,-710413 ) -g1,15803:-473656,-710413 +g1,15801:-473656,-710413 ) ] ) ] !22635 -}252 -Input:2675:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2676:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2677:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}253 +Input:2679:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2680:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2681:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{253 -[1,15831:4262630,47279633:28320399,43253760,0 -(1,15831:4262630,4025873:0,0,0 -[1,15831:-473656,4025873:0,0,0 -(1,15831:-473656,-710413:0,0,0 -(1,15831:-473656,-644877:0,0,0 -k1,15831:-473656,-644877:-65536 +{254 +[1,15829:4262630,47279633:28320399,43253760,0 +(1,15829:4262630,4025873:0,0,0 +[1,15829:-473656,4025873:0,0,0 +(1,15829:-473656,-710413:0,0,0 +(1,15829:-473656,-644877:0,0,0 +k1,15829:-473656,-644877:-65536 ) -(1,15831:-473656,4736287:0,0,0 -k1,15831:-473656,4736287:5209943 +(1,15829:-473656,4736287:0,0,0 +k1,15829:-473656,4736287:5209943 ) -g1,15831:-473656,-710413 +g1,15829:-473656,-710413 ) ] ) -[1,15831:6630773,47279633:25952256,43253760,0 -[1,15831:6630773,4812305:25952256,786432,0 -(1,15831:6630773,4812305:25952256,513147,126483 -(1,15831:6630773,4812305:25952256,513147,126483 -g1,15831:3078558,4812305 -[1,15831:3078558,4812305:0,0,0 -(1,15831:3078558,2439708:0,1703936,0 -k1,15831:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15831:2537886,2439708:1179648,16384,0 +[1,15829:6630773,47279633:25952256,43253760,0 +[1,15829:6630773,4812305:25952256,786432,0 +(1,15829:6630773,4812305:25952256,513147,126483 +(1,15829:6630773,4812305:25952256,513147,126483 +g1,15829:3078558,4812305 +[1,15829:3078558,4812305:0,0,0 +(1,15829:3078558,2439708:0,1703936,0 +k1,15829:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15829:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15831:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15829:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15831:3078558,4812305:0,0,0 -(1,15831:3078558,2439708:0,1703936,0 -g1,15831:29030814,2439708 -g1,15831:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15831:36151628,1915420:16384,1179648,0 +[1,15829:3078558,4812305:0,0,0 +(1,15829:3078558,2439708:0,1703936,0 +g1,15829:29030814,2439708 +g1,15829:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15829:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15831:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15829:37855564,2439708:1179648,16384,0 ) ) -k1,15831:3078556,2439708:-34777008 +k1,15829:3078556,2439708:-34777008 ) ] -[1,15831:3078558,4812305:0,0,0 -(1,15831:3078558,49800853:0,16384,2228224 -k1,15831:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15831:2537886,49800853:1179648,16384,0 +[1,15829:3078558,4812305:0,0,0 +(1,15829:3078558,49800853:0,16384,2228224 +k1,15829:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15829:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15831:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15829:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15831:3078558,4812305:0,0,0 -(1,15831:3078558,49800853:0,16384,2228224 -g1,15831:29030814,49800853 -g1,15831:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15831:36151628,51504789:16384,1179648,0 +[1,15829:3078558,4812305:0,0,0 +(1,15829:3078558,49800853:0,16384,2228224 +g1,15829:29030814,49800853 +g1,15829:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15829:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15831:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15829:37855564,49800853:1179648,16384,0 ) ) -k1,15831:3078556,49800853:-34777008 +k1,15829:3078556,49800853:-34777008 ) ] -g1,15831:6630773,4812305 -k1,15831:19575446,4812305:11749296 -g1,15831:21198117,4812305 -g1,15831:21985204,4812305 -g1,15831:24539797,4812305 -g1,15831:25949476,4812305 -g1,15831:28728857,4812305 -g1,15831:29852144,4812305 -) -) -] -[1,15831:6630773,45706769:25952256,40108032,0 -(1,15831:6630773,45706769:25952256,40108032,0 -(1,15831:6630773,45706769:0,0,0 -g1,15831:6630773,45706769 -) -[1,15831:6630773,45706769:25952256,40108032,0 -(1,15795:6630773,23766069:25952256,18167332,0 -k1,15795:10523651,23766069:3892878 -h1,15794:10523651,23766069:0,0,0 -(1,15794:10523651,23766069:18166500,18167332,0 -(1,15794:10523651,23766069:18167376,18167376,0 -(1,15794:10523651,23766069:18167376,18167376,0 -(1,15794:10523651,23766069:0,18167376,0 -(1,15794:10523651,23766069:0,28417720,0 -(1,15794:10523651,23766069:28417720,28417720,0 -) -k1,15794:10523651,23766069:-28417720 -) -) -g1,15794:28691027,23766069 -) -) -) -g1,15795:28690151,23766069 -k1,15795:32583029,23766069:3892878 -) -(1,15804:6630773,24631149:25952256,513147,134348 -h1,15803:6630773,24631149:983040,0,0 -k1,15803:10383823,24631149:238354 -k1,15803:12272374,24631149:238354 -k1,15803:15462470,24631149:238354 -k1,15803:17308422,24631149:238354 -k1,15803:18206069,24631149:238355 -k1,15803:19463508,24631149:238354 -k1,15803:22543503,24631149:238354 -k1,15803:26709430,24631149:238354 -k1,15803:28139229,24631149:238354 -k1,15803:29886222,24631149:238354 -k1,15803:32583029,24631149:0 -) -(1,15804:6630773,25496229:25952256,505283,134348 -k1,15803:7877016,25496229:141961 -k1,15803:8766743,25496229:141961 -k1,15803:11700538,25496229:141961 -k1,15803:13577892,25496229:141961 -k1,15803:16300005,25496229:141961 -k1,15803:18855656,25496229:141961 -k1,15803:22087640,25496229:141961 -k1,15803:22845639,25496229:141961 -k1,15803:25405223,25496229:141961 -h1,15803:25803682,25496229:0,0,0 -k1,15803:25945643,25496229:141961 -k1,15803:26896974,25496229:141961 -k1,15803:28537088,25496229:141961 -h1,15803:29732465,25496229:0,0,0 -k1,15803:30048096,25496229:141961 -k1,15803:32583029,25496229:0 -) -(1,15804:6630773,26361309:25952256,513147,134348 -k1,15803:9862958,26361309:191970 -k1,15803:12537432,26361309:191970 -k1,15803:15143092,26361309:191970 -k1,15803:16059890,26361309:191970 -k1,15803:16938022,26361309:191970 -k1,15803:17781420,26361309:191970 -k1,15803:19689122,26361309:191969 -k1,15803:20339189,26361309:191970 -k1,15803:21925765,26361309:191970 -k1,15803:22769163,26361309:191970 -k1,15803:24238430,26361309:191970 -k1,15803:27272041,26361309:191970 -k1,15803:31391584,26361309:191970 -k1,15803:32583029,26361309:0 -) -(1,15804:6630773,27226389:25952256,505283,134348 -g1,15803:8338641,27226389 -k1,15804:32583028,27226389:21495152 -g1,15804:32583028,27226389 -) -v1,15806:6630773,28091469:0,393216,0 -(1,15807:6630773,31958614:25952256,4260361,0 -g1,15807:6630773,31958614 -g1,15807:6237557,31958614 -r1,15831:6368629,31958614:131072,4260361,0 -g1,15807:6567858,31958614 -g1,15807:6764466,31958614 -[1,15807:6764466,31958614:25818563,4260361,0 -(1,15807:6764466,28363946:25818563,665693,196608 -(1,15806:6764466,28363946:0,665693,196608 -r1,15831:7868133,28363946:1103667,862301,196608 -k1,15806:6764466,28363946:-1103667 -) -(1,15806:6764466,28363946:1103667,665693,196608 -) -k1,15806:8027709,28363946:159576 -k1,15806:9753927,28363946:327680 -k1,15806:10955525,28363946:159576 -k1,15806:13364952,28363946:159576 -k1,15806:14715973,28363946:159576 -k1,15806:19478143,28363946:159576 -k1,15806:21200753,28363946:159576 -k1,15806:21716189,28363946:159576 -k1,15806:27899834,28363946:159576 -k1,15806:29163692,28363946:159576 -k1,15806:30071034,28363946:159576 -k1,15806:32583029,28363946:0 -) -(1,15807:6764466,29229026:25818563,513147,134348 -k1,15806:8608212,29229026:148985 -k1,15806:10041703,29229026:148985 -k1,15806:12844896,29229026:148985 -k1,15806:13525378,29229026:148985 -k1,15806:16979344,29229026:148985 -k1,15806:21164036,29229026:148985 -k1,15806:21964450,29229026:148986 -k1,15806:23132520,29229026:148985 -k1,15806:26687411,29229026:148985 -k1,15806:27495688,29229026:148985 -k1,15806:28663758,29229026:148985 -k1,15806:30823388,29229026:148985 -k1,15807:32583029,29229026:0 -) -(1,15807:6764466,30094106:25818563,513147,134348 -k1,15806:8664607,30094106:255187 -k1,15806:9873343,30094106:255187 -k1,15806:11741371,30094106:255187 -k1,15806:12454655,30094106:255187 -k1,15806:13396004,30094106:255187 -k1,15806:14421894,30094106:255187 -k1,15806:17237574,30094106:255188 -k1,15806:18144189,30094106:255187 -k1,15806:20415919,30094106:255187 -k1,15806:21690191,30094106:255187 -k1,15806:23800702,30094106:255187 -k1,15806:26610482,30094106:255187 -k1,15806:28601062,30094106:255187 -k1,15806:32583029,30094106:0 -) -(1,15807:6764466,30959186:25818563,513147,126483 -k1,15806:8974059,30959186:216643 -k1,15806:10138353,30959186:216643 -k1,15806:11374082,30959186:216644 -k1,15806:15265984,30959186:216643 -k1,15806:16141919,30959186:216643 -k1,15806:18274835,30959186:216643 -k1,15806:19682924,30959186:216644 -k1,15806:22062910,30959186:216643 -k1,15806:23700374,30959186:216643 -k1,15806:25700252,30959186:216643 -k1,15806:27409805,30959186:216643 -k1,15806:28645534,30959186:216644 -k1,15806:29954662,30959186:216643 -k1,15806:30830597,30959186:216643 -k1,15807:32583029,30959186:0 -) -(1,15807:6764466,31824266:25818563,513147,134348 -g1,15806:10484944,31824266 -g1,15806:12924849,31824266 -g1,15806:14143163,31824266 -g1,15806:17104079,31824266 -g1,15806:17962600,31824266 -g1,15806:19180914,31824266 -k1,15807:32583029,31824266:10553265 -g1,15807:32583029,31824266 -) -] -g1,15807:32583029,31958614 -) -h1,15807:6630773,31958614:0,0,0 -v1,15810:6630773,32823694:0,393216,0 -(1,15820:6630773,36762547:25952256,4332069,0 -g1,15820:6630773,36762547 -g1,15820:6237557,36762547 -r1,15831:6368629,36762547:131072,4332069,0 -g1,15820:6567858,36762547 -g1,15820:6764466,36762547 -[1,15820:6764466,36762547:25818563,4332069,0 -(1,15811:6764466,33131992:25818563,701514,196608 -(1,15810:6764466,33131992:0,701514,196608 -r1,15831:8471973,33131992:1707507,898122,196608 -k1,15810:6764466,33131992:-1707507 -) -(1,15810:6764466,33131992:1707507,701514,196608 -) -k1,15810:8650897,33131992:178924 -k1,15810:10377115,33131992:327680 -k1,15810:11373927,33131992:178923 -k1,15810:12500502,33131992:178924 -k1,15810:14381396,33131992:178924 -k1,15810:16272776,33131992:178924 -k1,15810:18943379,33131992:178924 -k1,15810:20141387,33131992:178923 -k1,15810:22279837,33131992:178924 -k1,15810:25237488,33131992:178924 -k1,15810:26177939,33131992:178923 -k1,15810:29052359,33131992:178924 -(1,15810:29052359,33131992:0,452978,115847 -r1,15831:31872608,33131992:2820249,568825,115847 -k1,15810:29052359,33131992:-2820249 -) -(1,15810:29052359,33131992:2820249,452978,115847 -k1,15810:29052359,33131992:3277 -h1,15810:31869331,33131992:0,411205,112570 -) -k1,15810:32051532,33131992:178924 -k1,15810:32583029,33131992:0 -) -(1,15811:6764466,33997072:25818563,513147,134348 -k1,15810:9294156,33997072:176947 -k1,15810:10865054,33997072:176947 -k1,15810:13713248,33997072:176947 -k1,15810:17817769,33997072:176948 -k1,15810:19186161,33997072:176947 -k1,15810:21829883,33997072:176947 -k1,15810:22658258,33997072:176947 -k1,15810:23191065,33997072:176947 -k1,15810:24923181,33997072:176947 -k1,15810:25759420,33997072:176947 -k1,15810:26955453,33997072:176948 -k1,15810:28785873,33997072:176947 -k1,15810:30700835,33997072:176947 -k1,15810:31563944,33997072:176947 -k1,15810:32583029,33997072:0 -) -(1,15811:6764466,34862152:25818563,513147,115847 -g1,15810:9832861,34862152 -g1,15810:11098361,34862152 -g1,15810:13680479,34862152 -g1,15810:15447329,34862152 -g1,15810:17201727,34862152 -(1,15810:17201727,34862152:0,452978,115847 -r1,15831:19318552,34862152:2116825,568825,115847 -k1,15810:17201727,34862152:-2116825 -) -(1,15810:17201727,34862152:2116825,452978,115847 -k1,15810:17201727,34862152:3277 -h1,15810:19315275,34862152:0,411205,112570 -) -k1,15811:32583029,34862152:13212049 -g1,15811:32583029,34862152 -) -v1,15813:6764466,35547007:0,393216,0 -(1,15818:6764466,36565939:25818563,1412148,196608 -g1,15818:6764466,36565939 -g1,15818:6764466,36565939 -g1,15818:6567858,36565939 -(1,15818:6567858,36565939:0,1412148,196608 -r1,15831:32779637,36565939:26211779,1608756,196608 -k1,15818:6567857,36565939:-26211780 -) -(1,15818:6567858,36565939:26211779,1412148,196608 -[1,15818:6764466,36565939:25818563,1215540,0 -(1,15815:6764466,35774838:25818563,424439,106246 -(1,15814:6764466,35774838:0,0,0 -g1,15814:6764466,35774838 -g1,15814:6764466,35774838 -g1,15814:6436786,35774838 -(1,15814:6436786,35774838:0,0,0 -) -g1,15814:6764466,35774838 -) -k1,15815:6764466,35774838:0 -h1,15815:9752052,35774838:0,0,0 -k1,15815:32583028,35774838:22830976 -g1,15815:32583028,35774838 -) -(1,15816:6764466,36459693:25818563,424439,106246 -h1,15816:6764466,36459693:0,0,0 -g1,15816:9420098,36459693 -g1,15816:12739637,36459693 -g1,15816:13403545,36459693 -h1,15816:14067453,36459693:0,0,0 -k1,15816:32583029,36459693:18515576 -g1,15816:32583029,36459693 -) -] -) -g1,15818:32583029,36565939 -g1,15818:6764466,36565939 -g1,15818:6764466,36565939 -g1,15818:32583029,36565939 -g1,15818:32583029,36565939 -) -h1,15818:6764466,36762547:0,0,0 -] -g1,15820:32583029,36762547 -) -h1,15820:6630773,36762547:0,0,0 -(1,15824:6630773,38879365:25952256,555811,147783 -(1,15824:6630773,38879365:2899444,534184,12975 -g1,15824:6630773,38879365 -g1,15824:9530217,38879365 -) -g1,15824:16068744,38879365 -k1,15824:32583029,38879365:13973847 -g1,15824:32583029,38879365 -) -(1,15829:6630773,40137661:25952256,513147,134348 -k1,15827:7962118,40137661:156285 -k1,15827:9295429,40137661:156284 -k1,15827:10111006,40137661:156285 -k1,15827:15871275,40137661:156285 -k1,15827:18242676,40137661:156284 -k1,15827:20235237,40137661:156242 -k1,15827:20923019,40137661:156285 -k1,15827:21730731,40137661:156284 -k1,15827:24630353,40137661:156285 -k1,15827:25402676,40137661:156285 -k1,15827:26460693,40137661:156242 -k1,15827:28404799,40137661:156284 -k1,15827:29580169,40137661:156285 -k1,15827:32583029,40137661:0 -) -(1,15829:6630773,41002741:25952256,513147,126483 -k1,15827:9461273,41002741:195297 -k1,15827:11253027,41002741:195297 -k1,15827:12107616,41002741:195297 -k1,15827:16548335,41002741:195297 -k1,15827:17940319,41002741:195297 -k1,15827:20146261,41002741:195297 -k1,15827:21289210,41002741:195298 -k1,15827:22503592,41002741:195297 -k1,15827:25585095,41002741:195297 -k1,15827:29036221,41002741:195297 -k1,15827:30223078,41002741:195297 -k1,15827:31931601,41002741:195297 -k1,15827:32583029,41002741:0 -) -(1,15829:6630773,41867821:25952256,513147,134348 -k1,15827:9682894,41867821:264219 -k1,15827:10302974,41867821:264220 -k1,15827:13271208,41867821:264219 -k1,15827:14194719,41867821:264219 -k1,15827:17119701,41867821:264220 -k1,15827:19543331,41867821:264219 -k1,15827:21404007,41867821:264219 -k1,15827:22327519,41867821:264220 -k1,15827:26837160,41867821:264219 -k1,15827:28298066,41867821:264219 -k1,15827:30640433,41867821:264220 -k1,15827:31563944,41867821:264219 -k1,15827:32583029,41867821:0 -) -(1,15829:6630773,42732901:25952256,513147,11795 -k1,15827:8306426,42732901:286290 -k1,15827:9725179,42732901:286291 -k1,15827:12919957,42732901:286290 -k1,15827:14754863,42732901:286290 -k1,15827:17701915,42732901:286290 -k1,15827:20035551,42732901:286291 -k1,15827:20853338,42732901:286290 -k1,15827:22741328,42732901:286290 -k1,15827:26903418,42732901:286291 -k1,15828:28231730,42732901:286290 -k1,15828:29940064,42732901:286203 -k1,15828:31094706,42732901:286290 -k1,15828:32583029,42732901:0 -) -(1,15829:6630773,43597981:25952256,513147,134348 -k1,15828:8175760,43597981:177250 -k1,15828:8708869,43597981:177249 -k1,15828:10973441,43597981:177250 -k1,15828:11809982,43597981:177249 -k1,15828:14978295,43597981:177250 -k1,15828:17314956,43597981:177250 -k1,15828:21737627,43597981:177249 -k1,15828:22868426,43597981:177250 -k1,15828:24178138,43597981:177250 -k1,15828:25621543,43597981:177249 -k1,15828:26746444,43597981:177250 -k1,15828:27942778,43597981:177249 -k1,15828:29504148,43597981:177250 -k1,15828:32583029,43597981:0 -) -(1,15829:6630773,44463061:25952256,513147,134348 -k1,15828:9819219,44463061:197383 -k1,15828:10632639,44463061:197382 -k1,15828:14213646,44463061:197383 -k1,15828:17046231,44463061:197382 -k1,15828:20748479,44463061:197383 -k1,15828:23832722,44463061:197382 -k1,15828:24646143,44463061:197383 -k1,15828:27080269,44463061:197382 -k1,15828:28845273,44463061:197383 -k1,15828:30061740,44463061:197382 -k1,15828:31648486,44463061:197383 -k1,15829:32583029,44463061:0 -) -(1,15829:6630773,45328141:25952256,452978,115847 -(1,15828:6630773,45328141:0,452978,115847 -r1,15831:9451022,45328141:2820249,568825,115847 -k1,15828:6630773,45328141:-2820249 -) -(1,15828:6630773,45328141:2820249,452978,115847 -k1,15828:6630773,45328141:3277 -h1,15828:9447745,45328141:0,411205,112570 -) -k1,15829:32583030,45328141:23079580 -g1,15829:32583030,45328141 -) -] -(1,15831:32583029,45706769:0,0,0 -g1,15831:32583029,45706769 -) -) -] -(1,15831:6630773,47279633:25952256,0,0 -h1,15831:6630773,47279633:25952256,0,0 -) -] -(1,15831:4262630,4025873:0,0,0 -[1,15831:-473656,4025873:0,0,0 -(1,15831:-473656,-710413:0,0,0 -(1,15831:-473656,-710413:0,0,0 -g1,15831:-473656,-710413 -) -g1,15831:-473656,-710413 +g1,15829:6630773,4812305 +k1,15829:19575446,4812305:11749296 +g1,15829:21198117,4812305 +g1,15829:21985204,4812305 +g1,15829:24539797,4812305 +g1,15829:25949476,4812305 +g1,15829:28728857,4812305 +g1,15829:29852144,4812305 +) +) +] +[1,15829:6630773,45706769:25952256,40108032,0 +(1,15829:6630773,45706769:25952256,40108032,0 +(1,15829:6630773,45706769:0,0,0 +g1,15829:6630773,45706769 +) +[1,15829:6630773,45706769:25952256,40108032,0 +(1,15793:6630773,23766069:25952256,18167332,0 +k1,15793:10523651,23766069:3892878 +h1,15792:10523651,23766069:0,0,0 +(1,15792:10523651,23766069:18166500,18167332,0 +(1,15792:10523651,23766069:18167376,18167376,0 +(1,15792:10523651,23766069:18167376,18167376,0 +(1,15792:10523651,23766069:0,18167376,0 +(1,15792:10523651,23766069:0,28417720,0 +(1,15792:10523651,23766069:28417720,28417720,0 +) +k1,15792:10523651,23766069:-28417720 +) +) +g1,15792:28691027,23766069 +) +) +) +g1,15793:28690151,23766069 +k1,15793:32583029,23766069:3892878 +) +(1,15802:6630773,24631149:25952256,513147,134348 +h1,15801:6630773,24631149:983040,0,0 +k1,15801:10383823,24631149:238354 +k1,15801:12272374,24631149:238354 +k1,15801:15462470,24631149:238354 +k1,15801:17308422,24631149:238354 +k1,15801:18206069,24631149:238355 +k1,15801:19463508,24631149:238354 +k1,15801:22543503,24631149:238354 +k1,15801:26709430,24631149:238354 +k1,15801:28139229,24631149:238354 +k1,15801:29886222,24631149:238354 +k1,15801:32583029,24631149:0 +) +(1,15802:6630773,25496229:25952256,505283,134348 +k1,15801:7877016,25496229:141961 +k1,15801:8766743,25496229:141961 +k1,15801:11700538,25496229:141961 +k1,15801:13577892,25496229:141961 +k1,15801:16300005,25496229:141961 +k1,15801:18855656,25496229:141961 +k1,15801:22087640,25496229:141961 +k1,15801:22845639,25496229:141961 +k1,15801:25405223,25496229:141961 +h1,15801:25803682,25496229:0,0,0 +k1,15801:25945643,25496229:141961 +k1,15801:26896974,25496229:141961 +k1,15801:28537088,25496229:141961 +h1,15801:29732465,25496229:0,0,0 +k1,15801:30048096,25496229:141961 +k1,15801:32583029,25496229:0 +) +(1,15802:6630773,26361309:25952256,513147,134348 +k1,15801:9862958,26361309:191970 +k1,15801:12537432,26361309:191970 +k1,15801:15143092,26361309:191970 +k1,15801:16059890,26361309:191970 +k1,15801:16938022,26361309:191970 +k1,15801:17781420,26361309:191970 +k1,15801:19689122,26361309:191969 +k1,15801:20339189,26361309:191970 +k1,15801:21925765,26361309:191970 +k1,15801:22769163,26361309:191970 +k1,15801:24238430,26361309:191970 +k1,15801:27272041,26361309:191970 +k1,15801:31391584,26361309:191970 +k1,15801:32583029,26361309:0 +) +(1,15802:6630773,27226389:25952256,505283,134348 +g1,15801:8338641,27226389 +k1,15802:32583028,27226389:21495152 +g1,15802:32583028,27226389 +) +v1,15804:6630773,28091469:0,393216,0 +(1,15805:6630773,31958614:25952256,4260361,0 +g1,15805:6630773,31958614 +g1,15805:6237557,31958614 +r1,15829:6368629,31958614:131072,4260361,0 +g1,15805:6567858,31958614 +g1,15805:6764466,31958614 +[1,15805:6764466,31958614:25818563,4260361,0 +(1,15805:6764466,28363946:25818563,665693,196608 +(1,15804:6764466,28363946:0,665693,196608 +r1,15829:7868133,28363946:1103667,862301,196608 +k1,15804:6764466,28363946:-1103667 +) +(1,15804:6764466,28363946:1103667,665693,196608 +) +k1,15804:8027709,28363946:159576 +k1,15804:9753927,28363946:327680 +k1,15804:10955525,28363946:159576 +k1,15804:13364952,28363946:159576 +k1,15804:14715973,28363946:159576 +k1,15804:19478143,28363946:159576 +k1,15804:21200753,28363946:159576 +k1,15804:21716189,28363946:159576 +k1,15804:27899834,28363946:159576 +k1,15804:29163692,28363946:159576 +k1,15804:30071034,28363946:159576 +k1,15804:32583029,28363946:0 +) +(1,15805:6764466,29229026:25818563,513147,134348 +k1,15804:8608212,29229026:148985 +k1,15804:10041703,29229026:148985 +k1,15804:12844896,29229026:148985 +k1,15804:13525378,29229026:148985 +k1,15804:16979344,29229026:148985 +k1,15804:21164036,29229026:148985 +k1,15804:21964450,29229026:148986 +k1,15804:23132520,29229026:148985 +k1,15804:26687411,29229026:148985 +k1,15804:27495688,29229026:148985 +k1,15804:28663758,29229026:148985 +k1,15804:30823388,29229026:148985 +k1,15805:32583029,29229026:0 +) +(1,15805:6764466,30094106:25818563,513147,134348 +k1,15804:8664607,30094106:255187 +k1,15804:9873343,30094106:255187 +k1,15804:11741371,30094106:255187 +k1,15804:12454655,30094106:255187 +k1,15804:13396004,30094106:255187 +k1,15804:14421894,30094106:255187 +k1,15804:17237574,30094106:255188 +k1,15804:18144189,30094106:255187 +k1,15804:20415919,30094106:255187 +k1,15804:21690191,30094106:255187 +k1,15804:23800702,30094106:255187 +k1,15804:26610482,30094106:255187 +k1,15804:28601062,30094106:255187 +k1,15804:32583029,30094106:0 +) +(1,15805:6764466,30959186:25818563,513147,126483 +k1,15804:8974059,30959186:216643 +k1,15804:10138353,30959186:216643 +k1,15804:11374082,30959186:216644 +k1,15804:15265984,30959186:216643 +k1,15804:16141919,30959186:216643 +k1,15804:18274835,30959186:216643 +k1,15804:19682924,30959186:216644 +k1,15804:22062910,30959186:216643 +k1,15804:23700374,30959186:216643 +k1,15804:25700252,30959186:216643 +k1,15804:27409805,30959186:216643 +k1,15804:28645534,30959186:216644 +k1,15804:29954662,30959186:216643 +k1,15804:30830597,30959186:216643 +k1,15805:32583029,30959186:0 +) +(1,15805:6764466,31824266:25818563,513147,134348 +g1,15804:10484944,31824266 +g1,15804:12924849,31824266 +g1,15804:14143163,31824266 +g1,15804:17104079,31824266 +g1,15804:17962600,31824266 +g1,15804:19180914,31824266 +k1,15805:32583029,31824266:10553265 +g1,15805:32583029,31824266 +) +] +g1,15805:32583029,31958614 +) +h1,15805:6630773,31958614:0,0,0 +v1,15808:6630773,32823694:0,393216,0 +(1,15818:6630773,36762547:25952256,4332069,0 +g1,15818:6630773,36762547 +g1,15818:6237557,36762547 +r1,15829:6368629,36762547:131072,4332069,0 +g1,15818:6567858,36762547 +g1,15818:6764466,36762547 +[1,15818:6764466,36762547:25818563,4332069,0 +(1,15809:6764466,33131992:25818563,701514,196608 +(1,15808:6764466,33131992:0,701514,196608 +r1,15829:8471973,33131992:1707507,898122,196608 +k1,15808:6764466,33131992:-1707507 +) +(1,15808:6764466,33131992:1707507,701514,196608 +) +k1,15808:8650897,33131992:178924 +k1,15808:10377115,33131992:327680 +k1,15808:11373927,33131992:178923 +k1,15808:12500502,33131992:178924 +k1,15808:14381396,33131992:178924 +k1,15808:16272776,33131992:178924 +k1,15808:18943379,33131992:178924 +k1,15808:20141387,33131992:178923 +k1,15808:22279837,33131992:178924 +k1,15808:25237488,33131992:178924 +k1,15808:26177939,33131992:178923 +k1,15808:29052359,33131992:178924 +(1,15808:29052359,33131992:0,452978,115847 +r1,15829:31872608,33131992:2820249,568825,115847 +k1,15808:29052359,33131992:-2820249 +) +(1,15808:29052359,33131992:2820249,452978,115847 +k1,15808:29052359,33131992:3277 +h1,15808:31869331,33131992:0,411205,112570 +) +k1,15808:32051532,33131992:178924 +k1,15808:32583029,33131992:0 +) +(1,15809:6764466,33997072:25818563,513147,134348 +k1,15808:9294156,33997072:176947 +k1,15808:10865054,33997072:176947 +k1,15808:13713248,33997072:176947 +k1,15808:17817769,33997072:176948 +k1,15808:19186161,33997072:176947 +k1,15808:21829883,33997072:176947 +k1,15808:22658258,33997072:176947 +k1,15808:23191065,33997072:176947 +k1,15808:24923181,33997072:176947 +k1,15808:25759420,33997072:176947 +k1,15808:26955453,33997072:176948 +k1,15808:28785873,33997072:176947 +k1,15808:30700835,33997072:176947 +k1,15808:31563944,33997072:176947 +k1,15808:32583029,33997072:0 +) +(1,15809:6764466,34862152:25818563,513147,115847 +g1,15808:9832861,34862152 +g1,15808:11098361,34862152 +g1,15808:13680479,34862152 +g1,15808:15447329,34862152 +g1,15808:17201727,34862152 +(1,15808:17201727,34862152:0,452978,115847 +r1,15829:19318552,34862152:2116825,568825,115847 +k1,15808:17201727,34862152:-2116825 +) +(1,15808:17201727,34862152:2116825,452978,115847 +k1,15808:17201727,34862152:3277 +h1,15808:19315275,34862152:0,411205,112570 +) +k1,15809:32583029,34862152:13212049 +g1,15809:32583029,34862152 +) +v1,15811:6764466,35547007:0,393216,0 +(1,15816:6764466,36565939:25818563,1412148,196608 +g1,15816:6764466,36565939 +g1,15816:6764466,36565939 +g1,15816:6567858,36565939 +(1,15816:6567858,36565939:0,1412148,196608 +r1,15829:32779637,36565939:26211779,1608756,196608 +k1,15816:6567857,36565939:-26211780 +) +(1,15816:6567858,36565939:26211779,1412148,196608 +[1,15816:6764466,36565939:25818563,1215540,0 +(1,15813:6764466,35774838:25818563,424439,106246 +(1,15812:6764466,35774838:0,0,0 +g1,15812:6764466,35774838 +g1,15812:6764466,35774838 +g1,15812:6436786,35774838 +(1,15812:6436786,35774838:0,0,0 +) +g1,15812:6764466,35774838 +) +k1,15813:6764466,35774838:0 +h1,15813:9752052,35774838:0,0,0 +k1,15813:32583028,35774838:22830976 +g1,15813:32583028,35774838 +) +(1,15814:6764466,36459693:25818563,424439,106246 +h1,15814:6764466,36459693:0,0,0 +g1,15814:9420098,36459693 +g1,15814:12739637,36459693 +g1,15814:13403545,36459693 +h1,15814:14067453,36459693:0,0,0 +k1,15814:32583029,36459693:18515576 +g1,15814:32583029,36459693 +) +] +) +g1,15816:32583029,36565939 +g1,15816:6764466,36565939 +g1,15816:6764466,36565939 +g1,15816:32583029,36565939 +g1,15816:32583029,36565939 +) +h1,15816:6764466,36762547:0,0,0 +] +g1,15818:32583029,36762547 +) +h1,15818:6630773,36762547:0,0,0 +(1,15822:6630773,38879365:25952256,555811,147783 +(1,15822:6630773,38879365:2899444,534184,12975 +g1,15822:6630773,38879365 +g1,15822:9530217,38879365 +) +g1,15822:16068744,38879365 +k1,15822:32583029,38879365:13973847 +g1,15822:32583029,38879365 +) +(1,15827:6630773,40137661:25952256,513147,134348 +k1,15825:7962118,40137661:156285 +k1,15825:9295429,40137661:156284 +k1,15825:10111006,40137661:156285 +k1,15825:15871275,40137661:156285 +k1,15825:18242676,40137661:156284 +k1,15825:20235237,40137661:156242 +k1,15825:20923019,40137661:156285 +k1,15825:21730731,40137661:156284 +k1,15825:24630353,40137661:156285 +k1,15825:25402676,40137661:156285 +k1,15825:26460693,40137661:156242 +k1,15825:28404799,40137661:156284 +k1,15825:29580169,40137661:156285 +k1,15825:32583029,40137661:0 +) +(1,15827:6630773,41002741:25952256,513147,126483 +k1,15825:9461273,41002741:195297 +k1,15825:11253027,41002741:195297 +k1,15825:12107616,41002741:195297 +k1,15825:16548335,41002741:195297 +k1,15825:17940319,41002741:195297 +k1,15825:20146261,41002741:195297 +k1,15825:21289210,41002741:195298 +k1,15825:22503592,41002741:195297 +k1,15825:25585095,41002741:195297 +k1,15825:29036221,41002741:195297 +k1,15825:30223078,41002741:195297 +k1,15825:31931601,41002741:195297 +k1,15825:32583029,41002741:0 +) +(1,15827:6630773,41867821:25952256,513147,134348 +k1,15825:9682894,41867821:264219 +k1,15825:10302974,41867821:264220 +k1,15825:13271208,41867821:264219 +k1,15825:14194719,41867821:264219 +k1,15825:17119701,41867821:264220 +k1,15825:19543331,41867821:264219 +k1,15825:21404007,41867821:264219 +k1,15825:22327519,41867821:264220 +k1,15825:26837160,41867821:264219 +k1,15825:28298066,41867821:264219 +k1,15825:30640433,41867821:264220 +k1,15825:31563944,41867821:264219 +k1,15825:32583029,41867821:0 +) +(1,15827:6630773,42732901:25952256,513147,11795 +k1,15825:8306426,42732901:286290 +k1,15825:9725179,42732901:286291 +k1,15825:12919957,42732901:286290 +k1,15825:14754863,42732901:286290 +k1,15825:17701915,42732901:286290 +k1,15825:20035551,42732901:286291 +k1,15825:20853338,42732901:286290 +k1,15825:22741328,42732901:286290 +k1,15825:26903418,42732901:286291 +k1,15826:28231730,42732901:286290 +k1,15826:29940064,42732901:286203 +k1,15826:31094706,42732901:286290 +k1,15826:32583029,42732901:0 +) +(1,15827:6630773,43597981:25952256,513147,134348 +k1,15826:8175760,43597981:177250 +k1,15826:8708869,43597981:177249 +k1,15826:10973441,43597981:177250 +k1,15826:11809982,43597981:177249 +k1,15826:14978295,43597981:177250 +k1,15826:17314956,43597981:177250 +k1,15826:21737627,43597981:177249 +k1,15826:22868426,43597981:177250 +k1,15826:24178138,43597981:177250 +k1,15826:25621543,43597981:177249 +k1,15826:26746444,43597981:177250 +k1,15826:27942778,43597981:177249 +k1,15826:29504148,43597981:177250 +k1,15826:32583029,43597981:0 +) +(1,15827:6630773,44463061:25952256,513147,134348 +k1,15826:9819219,44463061:197383 +k1,15826:10632639,44463061:197382 +k1,15826:14213646,44463061:197383 +k1,15826:17046231,44463061:197382 +k1,15826:20748479,44463061:197383 +k1,15826:23832722,44463061:197382 +k1,15826:24646143,44463061:197383 +k1,15826:27080269,44463061:197382 +k1,15826:28845273,44463061:197383 +k1,15826:30061740,44463061:197382 +k1,15826:31648486,44463061:197383 +k1,15827:32583029,44463061:0 +) +(1,15827:6630773,45328141:25952256,452978,115847 +(1,15826:6630773,45328141:0,452978,115847 +r1,15829:9451022,45328141:2820249,568825,115847 +k1,15826:6630773,45328141:-2820249 +) +(1,15826:6630773,45328141:2820249,452978,115847 +k1,15826:6630773,45328141:3277 +h1,15826:9447745,45328141:0,411205,112570 +) +k1,15827:32583030,45328141:23079580 +g1,15827:32583030,45328141 +) +] +(1,15829:32583029,45706769:0,0,0 +g1,15829:32583029,45706769 +) +) +] +(1,15829:6630773,47279633:25952256,0,0 +h1,15829:6630773,47279633:25952256,0,0 +) +] +(1,15829:4262630,4025873:0,0,0 +[1,15829:-473656,4025873:0,0,0 +(1,15829:-473656,-710413:0,0,0 +(1,15829:-473656,-710413:0,0,0 +g1,15829:-473656,-710413 +) +g1,15829:-473656,-710413 ) ] ) ] !15709 -}253 -Input:2678:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2679:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2680:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2681:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}254 +Input:2682:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2683:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2684:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2685:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{254 -[1,15893:4262630,47279633:28320399,43253760,0 -(1,15893:4262630,4025873:0,0,0 -[1,15893:-473656,4025873:0,0,0 -(1,15893:-473656,-710413:0,0,0 -(1,15893:-473656,-644877:0,0,0 -k1,15893:-473656,-644877:-65536 +{255 +[1,15891:4262630,47279633:28320399,43253760,0 +(1,15891:4262630,4025873:0,0,0 +[1,15891:-473656,4025873:0,0,0 +(1,15891:-473656,-710413:0,0,0 +(1,15891:-473656,-644877:0,0,0 +k1,15891:-473656,-644877:-65536 ) -(1,15893:-473656,4736287:0,0,0 -k1,15893:-473656,4736287:5209943 +(1,15891:-473656,4736287:0,0,0 +k1,15891:-473656,4736287:5209943 ) -g1,15893:-473656,-710413 +g1,15891:-473656,-710413 ) ] ) -[1,15893:6630773,47279633:25952256,43253760,0 -[1,15893:6630773,4812305:25952256,786432,0 -(1,15893:6630773,4812305:25952256,505283,11795 -(1,15893:6630773,4812305:25952256,505283,11795 -g1,15893:3078558,4812305 -[1,15893:3078558,4812305:0,0,0 -(1,15893:3078558,2439708:0,1703936,0 -k1,15893:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15893:2537886,2439708:1179648,16384,0 +[1,15891:6630773,47279633:25952256,43253760,0 +[1,15891:6630773,4812305:25952256,786432,0 +(1,15891:6630773,4812305:25952256,505283,11795 +(1,15891:6630773,4812305:25952256,505283,11795 +g1,15891:3078558,4812305 +[1,15891:3078558,4812305:0,0,0 +(1,15891:3078558,2439708:0,1703936,0 +k1,15891:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15891:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15893:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15891:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15893:3078558,4812305:0,0,0 -(1,15893:3078558,2439708:0,1703936,0 -g1,15893:29030814,2439708 -g1,15893:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15893:36151628,1915420:16384,1179648,0 +[1,15891:3078558,4812305:0,0,0 +(1,15891:3078558,2439708:0,1703936,0 +g1,15891:29030814,2439708 +g1,15891:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15891:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15893:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15891:37855564,2439708:1179648,16384,0 ) ) -k1,15893:3078556,2439708:-34777008 +k1,15891:3078556,2439708:-34777008 ) ] -[1,15893:3078558,4812305:0,0,0 -(1,15893:3078558,49800853:0,16384,2228224 -k1,15893:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15893:2537886,49800853:1179648,16384,0 +[1,15891:3078558,4812305:0,0,0 +(1,15891:3078558,49800853:0,16384,2228224 +k1,15891:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15891:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15893:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15891:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15893:3078558,4812305:0,0,0 -(1,15893:3078558,49800853:0,16384,2228224 -g1,15893:29030814,49800853 -g1,15893:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15893:36151628,51504789:16384,1179648,0 +[1,15891:3078558,4812305:0,0,0 +(1,15891:3078558,49800853:0,16384,2228224 +g1,15891:29030814,49800853 +g1,15891:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15891:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15893:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15891:37855564,49800853:1179648,16384,0 ) ) -k1,15893:3078556,49800853:-34777008 +k1,15891:3078556,49800853:-34777008 ) ] -g1,15893:6630773,4812305 -g1,15893:6630773,4812305 -g1,15893:10653372,4812305 -g1,15893:13583486,4812305 -k1,15893:31387652,4812305:17804166 +g1,15891:6630773,4812305 +g1,15891:6630773,4812305 +g1,15891:10653372,4812305 +g1,15891:13583486,4812305 +k1,15891:31387652,4812305:17804166 ) ) ] -[1,15893:6630773,45706769:25952256,40108032,0 -(1,15893:6630773,45706769:25952256,40108032,0 -(1,15893:6630773,45706769:0,0,0 -g1,15893:6630773,45706769 +[1,15891:6630773,45706769:25952256,40108032,0 +(1,15891:6630773,45706769:25952256,40108032,0 +(1,15891:6630773,45706769:0,0,0 +g1,15891:6630773,45706769 ) -[1,15893:6630773,45706769:25952256,40108032,0 -v1,15831:6630773,6254097:0,393216,0 -(1,15835:6630773,6561750:25952256,700869,196608 -g1,15835:6630773,6561750 -g1,15835:6630773,6561750 -g1,15835:6434165,6561750 -(1,15835:6434165,6561750:0,700869,196608 -r1,15893:32779637,6561750:26345472,897477,196608 -k1,15835:6434165,6561750:-26345472 +[1,15891:6630773,45706769:25952256,40108032,0 +v1,15829:6630773,6254097:0,393216,0 +(1,15833:6630773,6561750:25952256,700869,196608 +g1,15833:6630773,6561750 +g1,15833:6630773,6561750 +g1,15833:6434165,6561750 +(1,15833:6434165,6561750:0,700869,196608 +r1,15891:32779637,6561750:26345472,897477,196608 +k1,15833:6434165,6561750:-26345472 ) -(1,15835:6434165,6561750:26345472,700869,196608 -[1,15835:6630773,6561750:25952256,504261,0 -(1,15833:6630773,6481928:25952256,424439,79822 -(1,15832:6630773,6481928:0,0,0 -g1,15832:6630773,6481928 -g1,15832:6630773,6481928 -g1,15832:6303093,6481928 -(1,15832:6303093,6481928:0,0,0 -) -g1,15832:6630773,6481928 -) -g1,15833:7958589,6481928 -g1,15833:8954451,6481928 -k1,15833:8954451,6481928:0 -h1,15833:14929621,6481928:0,0,0 -k1,15833:32583029,6481928:17653408 -g1,15833:32583029,6481928 +(1,15833:6434165,6561750:26345472,700869,196608 +[1,15833:6630773,6561750:25952256,504261,0 +(1,15831:6630773,6481928:25952256,424439,79822 +(1,15830:6630773,6481928:0,0,0 +g1,15830:6630773,6481928 +g1,15830:6630773,6481928 +g1,15830:6303093,6481928 +(1,15830:6303093,6481928:0,0,0 +) +g1,15830:6630773,6481928 +) +g1,15831:7958589,6481928 +g1,15831:8954451,6481928 +k1,15831:8954451,6481928:0 +h1,15831:14929621,6481928:0,0,0 +k1,15831:32583029,6481928:17653408 +g1,15831:32583029,6481928 ) -] -) -g1,15835:32583029,6561750 -g1,15835:6630773,6561750 -g1,15835:6630773,6561750 -g1,15835:32583029,6561750 -g1,15835:32583029,6561750 -) -h1,15835:6630773,6758358:0,0,0 -(1,15839:6630773,7623438:25952256,513147,134348 -h1,15838:6630773,7623438:983040,0,0 -k1,15838:8777363,7623438:210001 -k1,15838:10091646,7623438:210001 -k1,15838:11326629,7623438:210000 -k1,15838:12821136,7623438:210001 -k1,15838:14050222,7623438:210001 -k1,15838:17038950,7623438:210001 -k1,15838:19208476,7623438:210000 -(1,15838:19208476,7623438:0,452978,115847 -r1,15893:20270165,7623438:1061689,568825,115847 -k1,15838:19208476,7623438:-1061689 -) -(1,15838:19208476,7623438:1061689,452978,115847 -k1,15838:19208476,7623438:3277 -h1,15838:20266888,7623438:0,411205,112570 -) -k1,15838:20480166,7623438:210001 -k1,15838:21221664,7623438:210001 -k1,15838:21787525,7623438:210001 -(1,15838:21787525,7623438:0,452978,115847 -r1,15893:23904350,7623438:2116825,568825,115847 -k1,15838:21787525,7623438:-2116825 -) -(1,15838:21787525,7623438:2116825,452978,115847 -k1,15838:21787525,7623438:3277 -h1,15838:23901073,7623438:0,411205,112570 -) -k1,15838:24288020,7623438:210000 -k1,15838:25891972,7623438:210001 -k1,15838:28170289,7623438:210001 -k1,15838:29327941,7623438:210001 -k1,15838:30694651,7623438:210000 -k1,15838:31563944,7623438:210001 -k1,15838:32583029,7623438:0 -) -(1,15839:6630773,8488518:25952256,505283,7863 -k1,15839:32583028,8488518:22224568 -g1,15839:32583028,8488518 -) -v1,15841:6630773,9173373:0,393216,0 -(1,15868:6630773,18969587:25952256,10189430,196608 -g1,15868:6630773,18969587 -g1,15868:6630773,18969587 -g1,15868:6434165,18969587 -(1,15868:6434165,18969587:0,10189430,196608 -r1,15893:32779637,18969587:26345472,10386038,196608 -k1,15868:6434165,18969587:-26345472 -) -(1,15868:6434165,18969587:26345472,10189430,196608 -[1,15868:6630773,18969587:25952256,9992822,0 -(1,15843:6630773,9401204:25952256,424439,79822 -(1,15842:6630773,9401204:0,0,0 -g1,15842:6630773,9401204 -g1,15842:6630773,9401204 -g1,15842:6303093,9401204 -(1,15842:6303093,9401204:0,0,0 -) -g1,15842:6630773,9401204 -) -k1,15843:6630773,9401204:0 -h1,15843:9950313,9401204:0,0,0 -k1,15843:32583029,9401204:22632716 -g1,15843:32583029,9401204 -) -(1,15847:6630773,10217131:25952256,424439,106246 -(1,15845:6630773,10217131:0,0,0 -g1,15845:6630773,10217131 -g1,15845:6630773,10217131 -g1,15845:6303093,10217131 -(1,15845:6303093,10217131:0,0,0 -) -g1,15845:6630773,10217131 -) -g1,15847:7626635,10217131 -g1,15847:8954451,10217131 -g1,15847:11942036,10217131 -h1,15847:14265714,10217131:0,0,0 -k1,15847:32583030,10217131:18317316 -g1,15847:32583030,10217131 -) -(1,15849:6630773,11033058:25952256,424439,79822 -(1,15848:6630773,11033058:0,0,0 -g1,15848:6630773,11033058 -g1,15848:6630773,11033058 -g1,15848:6303093,11033058 -(1,15848:6303093,11033058:0,0,0 -) -g1,15848:6630773,11033058 -) -k1,15849:6630773,11033058:0 -h1,15849:9286405,11033058:0,0,0 -k1,15849:32583029,11033058:23296624 -g1,15849:32583029,11033058 -) -(1,15853:6630773,11848985:25952256,424439,79822 -(1,15851:6630773,11848985:0,0,0 -g1,15851:6630773,11848985 -g1,15851:6630773,11848985 -g1,15851:6303093,11848985 -(1,15851:6303093,11848985:0,0,0 -) -g1,15851:6630773,11848985 -) -g1,15853:7626635,11848985 -g1,15853:8954451,11848985 -g1,15853:9950313,11848985 -g1,15853:10282267,11848985 -h1,15853:10614221,11848985:0,0,0 -k1,15853:32583029,11848985:21968808 -g1,15853:32583029,11848985 -) -(1,15855:6630773,12664912:25952256,424439,86428 -(1,15854:6630773,12664912:0,0,0 -g1,15854:6630773,12664912 -g1,15854:6630773,12664912 -g1,15854:6303093,12664912 -(1,15854:6303093,12664912:0,0,0 -) -g1,15854:6630773,12664912 -) -k1,15855:6630773,12664912:0 -g1,15855:9950313,12664912 -h1,15855:10614221,12664912:0,0,0 -k1,15855:32583029,12664912:21968808 -g1,15855:32583029,12664912 -) -(1,15867:6630773,13480839:25952256,424439,86428 -(1,15857:6630773,13480839:0,0,0 -g1,15857:6630773,13480839 -g1,15857:6630773,13480839 -g1,15857:6303093,13480839 -(1,15857:6303093,13480839:0,0,0 -) -g1,15857:6630773,13480839 -) -g1,15867:7626635,13480839 -g1,15867:7958589,13480839 -g1,15867:8290543,13480839 -g1,15867:8622497,13480839 -g1,15867:8954451,13480839 -g1,15867:9286405,13480839 -g1,15867:9618359,13480839 -g1,15867:9950313,13480839 -g1,15867:10282267,13480839 -g1,15867:10614221,13480839 -g1,15867:10946175,13480839 -g1,15867:11278129,13480839 -g1,15867:11610083,13480839 -g1,15867:11942037,13480839 -g1,15867:12273991,13480839 -g1,15867:12605945,13480839 -g1,15867:12937899,13480839 -g1,15867:13269853,13480839 -g1,15867:13601807,13480839 -g1,15867:15261577,13480839 -g1,15867:15593531,13480839 -g1,15867:15925485,13480839 -g1,15867:16257439,13480839 -g1,15867:16589393,13480839 -g1,15867:16921347,13480839 -g1,15867:17253301,13480839 -k1,15867:17253301,13480839:0 -h1,15867:18581117,13480839:0,0,0 -k1,15867:32583029,13480839:14001912 -g1,15867:32583029,13480839 -) -(1,15867:6630773,14165694:25952256,424439,9908 -h1,15867:6630773,14165694:0,0,0 -g1,15867:7626635,14165694 -g1,15867:9950313,14165694 -g1,15867:10282267,14165694 -g1,15867:10614221,14165694 -g1,15867:10946175,14165694 -g1,15867:11278129,14165694 -g1,15867:15261576,14165694 -g1,15867:15593530,14165694 -h1,15867:18581115,14165694:0,0,0 -k1,15867:32583029,14165694:14001914 -g1,15867:32583029,14165694 -) -(1,15867:6630773,14850549:25952256,424439,9908 -h1,15867:6630773,14850549:0,0,0 -g1,15867:7626635,14850549 -g1,15867:10946174,14850549 -g1,15867:11278128,14850549 -g1,15867:15261575,14850549 -g1,15867:15593529,14850549 -g1,15867:15925483,14850549 -h1,15867:18581114,14850549:0,0,0 -k1,15867:32583029,14850549:14001915 -g1,15867:32583029,14850549 -) -(1,15867:6630773,15535404:25952256,424439,9908 -h1,15867:6630773,15535404:0,0,0 -g1,15867:7626635,15535404 -g1,15867:10614220,15535404 -g1,15867:10946174,15535404 -g1,15867:11278128,15535404 -g1,15867:11610082,15535404 -g1,15867:11942036,15535404 -g1,15867:15261575,15535404 -g1,15867:15593529,15535404 -k1,15867:15593529,15535404:0 -h1,15867:18581114,15535404:0,0,0 -k1,15867:32583029,15535404:14001915 -g1,15867:32583029,15535404 -) -(1,15867:6630773,16220259:25952256,424439,9908 -h1,15867:6630773,16220259:0,0,0 -g1,15867:7626635,16220259 -g1,15867:9950313,16220259 -g1,15867:10282267,16220259 -g1,15867:10614221,16220259 -g1,15867:10946175,16220259 -g1,15867:11278129,16220259 -g1,15867:11610083,16220259 -g1,15867:15261576,16220259 -g1,15867:15593530,16220259 -k1,15867:15593530,16220259:0 -h1,15867:18581115,16220259:0,0,0 -k1,15867:32583029,16220259:14001914 -g1,15867:32583029,16220259 -) -(1,15867:6630773,16905114:25952256,424439,112852 -h1,15867:6630773,16905114:0,0,0 -g1,15867:7626635,16905114 -g1,15867:10946174,16905114 -g1,15867:11278128,16905114 -g1,15867:15261575,16905114 -g1,15867:15593529,16905114 -k1,15867:15593529,16905114:0 -h1,15867:18581114,16905114:0,0,0 -k1,15867:32583029,16905114:14001915 -g1,15867:32583029,16905114 -) -(1,15867:6630773,17589969:25952256,424439,112852 -h1,15867:6630773,17589969:0,0,0 -g1,15867:7626635,17589969 -g1,15867:10282267,17589969 -g1,15867:10614221,17589969 -g1,15867:10946175,17589969 -g1,15867:11278129,17589969 -g1,15867:11610083,17589969 -g1,15867:15261576,17589969 -g1,15867:15593530,17589969 -k1,15867:15593530,17589969:0 -h1,15867:18581115,17589969:0,0,0 -k1,15867:32583029,17589969:14001914 -g1,15867:32583029,17589969 -) -(1,15867:6630773,18274824:25952256,424439,112852 -h1,15867:6630773,18274824:0,0,0 -g1,15867:7626635,18274824 -g1,15867:11278128,18274824 -g1,15867:11610082,18274824 -g1,15867:15261575,18274824 -k1,15867:15261575,18274824:0 -h1,15867:18581114,18274824:0,0,0 -k1,15867:32583029,18274824:14001915 -g1,15867:32583029,18274824 -) -(1,15867:6630773,18959679:25952256,407923,9908 -h1,15867:6630773,18959679:0,0,0 -g1,15867:7626635,18959679 -g1,15867:9950313,18959679 -g1,15867:10282267,18959679 -g1,15867:10614221,18959679 -g1,15867:10946175,18959679 -g1,15867:11278129,18959679 -g1,15867:11610083,18959679 -g1,15867:11942037,18959679 -g1,15867:15261576,18959679 -g1,15867:15593530,18959679 -g1,15867:15925484,18959679 -h1,15867:18581115,18959679:0,0,0 -k1,15867:32583029,18959679:14001914 -g1,15867:32583029,18959679 -) -] -) -g1,15868:32583029,18969587 -g1,15868:6630773,18969587 -g1,15868:6630773,18969587 -g1,15868:32583029,18969587 -g1,15868:32583029,18969587 -) -h1,15868:6630773,19166195:0,0,0 -(1,15872:6630773,20031275:25952256,513147,102891 -h1,15871:6630773,20031275:983040,0,0 -k1,15871:8613939,20031275:171096 -k1,15871:10500767,20031275:171095 -k1,15871:11690948,20031275:171096 -k1,15871:13358230,20031275:171095 -k1,15871:15399724,20031275:171096 -k1,15871:16222247,20031275:171095 -k1,15871:17979314,20031275:171096 -k1,15871:19322849,20031275:171096 -k1,15871:21802122,20031275:171095 -k1,15871:22964778,20031275:171096 -k1,15871:24442006,20031275:171095 -k1,15871:27585160,20031275:171096 -k1,15871:29323876,20031275:171095 -k1,15871:30514057,20031275:171096 -k1,15871:32583029,20031275:0 -) -(1,15872:6630773,20896355:25952256,513147,126483 -k1,15871:8011521,20896355:189303 -k1,15871:10359580,20896355:189303 -(1,15871:10359580,20896355:0,414482,115847 -r1,15893:10717846,20896355:358266,530329,115847 -k1,15871:10359580,20896355:-358266 -) -(1,15871:10359580,20896355:358266,414482,115847 -k1,15871:10359580,20896355:3277 -h1,15871:10714569,20896355:0,411205,112570 -) -k1,15871:10907149,20896355:189303 -k1,15871:12287897,20896355:189303 -(1,15871:12287897,20896355:0,414482,115847 -r1,15893:12646163,20896355:358266,530329,115847 -k1,15871:12287897,20896355:-358266 -) -(1,15871:12287897,20896355:358266,414482,115847 -k1,15871:12287897,20896355:3277 -h1,15871:12642886,20896355:0,411205,112570 -) -k1,15871:13009136,20896355:189303 -k1,15871:14151988,20896355:189303 -k1,15871:15969861,20896355:189303 -k1,15871:18203887,20896355:189303 -k1,15871:19044618,20896355:189303 -k1,15871:21780650,20896355:189303 -k1,15871:22694781,20896355:189303 -k1,15871:24168590,20896355:189303 -k1,15871:27348956,20896355:189303 -k1,15871:28347629,20896355:189303 -k1,15871:30003628,20896355:189303 -k1,15871:31591469,20896355:189303 -k1,15871:32583029,20896355:0 -) -(1,15872:6630773,21761435:25952256,505283,126483 -k1,15872:32583029,21761435:22178038 -g1,15872:32583029,21761435 -) -v1,15876:6630773,22446290:0,393216,0 -(1,15884:6630773,25519787:25952256,3466713,196608 -g1,15884:6630773,25519787 -g1,15884:6630773,25519787 -g1,15884:6434165,25519787 -(1,15884:6434165,25519787:0,3466713,196608 -r1,15893:32779637,25519787:26345472,3663321,196608 -k1,15884:6434165,25519787:-26345472 -) -(1,15884:6434165,25519787:26345472,3466713,196608 -[1,15884:6630773,25519787:25952256,3270105,0 -(1,15878:6630773,22674121:25952256,424439,86428 -(1,15877:6630773,22674121:0,0,0 -g1,15877:6630773,22674121 -g1,15877:6630773,22674121 -g1,15877:6303093,22674121 -(1,15877:6303093,22674121:0,0,0 -) -g1,15877:6630773,22674121 -) -g1,15878:7294681,22674121 -g1,15878:8290543,22674121 -g1,15878:10282267,22674121 -h1,15878:10946175,22674121:0,0,0 -k1,15878:32583029,22674121:21636854 -g1,15878:32583029,22674121 -) -(1,15879:6630773,23358976:25952256,424439,112852 -h1,15879:6630773,23358976:0,0,0 -g1,15879:7294681,23358976 -g1,15879:8290543,23358976 -g1,15879:10614221,23358976 -g1,15879:11610083,23358976 -g1,15879:12273991,23358976 -g1,15879:14597669,23358976 -g1,15879:16257439,23358976 -g1,15879:17253301,23358976 -g1,15879:19245025,23358976 -g1,15879:20240887,23358976 -g1,15879:21236749,23358976 -g1,15879:22564565,23358976 -k1,15879:22564565,23358976:9909 -h1,15879:23570336,23358976:0,0,0 -k1,15879:32583029,23358976:9012693 -g1,15879:32583029,23358976 -) -(1,15880:6630773,24043831:25952256,424439,106246 -h1,15880:6630773,24043831:0,0,0 -g1,15880:9286405,24043831 -g1,15880:10282267,24043831 -g1,15880:11942037,24043831 -g1,15880:12605945,24043831 -g1,15880:14265715,24043831 -g1,15880:15593531,24043831 -g1,15880:16257439,24043831 -k1,15880:16257439,24043831:0 -h1,15880:16921347,24043831:0,0,0 -k1,15880:32583029,24043831:15661682 -g1,15880:32583029,24043831 -) -(1,15881:6630773,24728686:25952256,424439,79822 -h1,15881:6630773,24728686:0,0,0 -g1,15881:6962727,24728686 -g1,15881:7294681,24728686 -g1,15881:7626635,24728686 -g1,15881:7958589,24728686 -g1,15881:8290543,24728686 -g1,15881:9950313,24728686 -g1,15881:10614221,24728686 -h1,15881:17585254,24728686:0,0,0 -k1,15881:32583029,24728686:14997775 -g1,15881:32583029,24728686 -) -(1,15882:6630773,25413541:25952256,424439,106246 -h1,15882:6630773,25413541:0,0,0 -g1,15882:9286405,25413541 -g1,15882:10282267,25413541 -g1,15882:15261576,25413541 -g1,15882:16589392,25413541 -g1,15882:17253300,25413541 -h1,15882:18581116,25413541:0,0,0 -k1,15882:32583029,25413541:14001913 -g1,15882:32583029,25413541 -) -] -) -g1,15884:32583029,25519787 -g1,15884:6630773,25519787 -g1,15884:6630773,25519787 -g1,15884:32583029,25519787 -g1,15884:32583029,25519787 -) -h1,15884:6630773,25716395:0,0,0 -(1,15887:6630773,43949263:25952256,18167332,0 -k1,15887:10523651,43949263:3892878 -h1,15886:10523651,43949263:0,0,0 -(1,15886:10523651,43949263:18166500,18167332,0 -(1,15886:10523651,43949263:18167376,18167376,0 -(1,15886:10523651,43949263:18167376,18167376,0 -(1,15886:10523651,43949263:0,18167376,0 -(1,15886:10523651,43949263:0,28417720,0 -(1,15886:10523651,43949263:28417720,28417720,0 -) -k1,15886:10523651,43949263:-28417720 -) -) -g1,15886:28691027,43949263 -) -) -) -g1,15887:28690151,43949263 -k1,15887:32583029,43949263:3892878 -) -] -(1,15893:32583029,45706769:0,0,0 -g1,15893:32583029,45706769 -) -) -] -(1,15893:6630773,47279633:25952256,0,0 -h1,15893:6630773,47279633:25952256,0,0 -) -] -(1,15893:4262630,4025873:0,0,0 -[1,15893:-473656,4025873:0,0,0 -(1,15893:-473656,-710413:0,0,0 -(1,15893:-473656,-710413:0,0,0 -g1,15893:-473656,-710413 -) -g1,15893:-473656,-710413 +] +) +g1,15833:32583029,6561750 +g1,15833:6630773,6561750 +g1,15833:6630773,6561750 +g1,15833:32583029,6561750 +g1,15833:32583029,6561750 +) +h1,15833:6630773,6758358:0,0,0 +(1,15837:6630773,7623438:25952256,513147,134348 +h1,15836:6630773,7623438:983040,0,0 +k1,15836:8777363,7623438:210001 +k1,15836:10091646,7623438:210001 +k1,15836:11326629,7623438:210000 +k1,15836:12821136,7623438:210001 +k1,15836:14050222,7623438:210001 +k1,15836:17038950,7623438:210001 +k1,15836:19208476,7623438:210000 +(1,15836:19208476,7623438:0,452978,115847 +r1,15891:20270165,7623438:1061689,568825,115847 +k1,15836:19208476,7623438:-1061689 +) +(1,15836:19208476,7623438:1061689,452978,115847 +k1,15836:19208476,7623438:3277 +h1,15836:20266888,7623438:0,411205,112570 +) +k1,15836:20480166,7623438:210001 +k1,15836:21221664,7623438:210001 +k1,15836:21787525,7623438:210001 +(1,15836:21787525,7623438:0,452978,115847 +r1,15891:23904350,7623438:2116825,568825,115847 +k1,15836:21787525,7623438:-2116825 +) +(1,15836:21787525,7623438:2116825,452978,115847 +k1,15836:21787525,7623438:3277 +h1,15836:23901073,7623438:0,411205,112570 +) +k1,15836:24288020,7623438:210000 +k1,15836:25891972,7623438:210001 +k1,15836:28170289,7623438:210001 +k1,15836:29327941,7623438:210001 +k1,15836:30694651,7623438:210000 +k1,15836:31563944,7623438:210001 +k1,15836:32583029,7623438:0 +) +(1,15837:6630773,8488518:25952256,505283,7863 +k1,15837:32583028,8488518:22224568 +g1,15837:32583028,8488518 +) +v1,15839:6630773,9173373:0,393216,0 +(1,15866:6630773,18969587:25952256,10189430,196608 +g1,15866:6630773,18969587 +g1,15866:6630773,18969587 +g1,15866:6434165,18969587 +(1,15866:6434165,18969587:0,10189430,196608 +r1,15891:32779637,18969587:26345472,10386038,196608 +k1,15866:6434165,18969587:-26345472 +) +(1,15866:6434165,18969587:26345472,10189430,196608 +[1,15866:6630773,18969587:25952256,9992822,0 +(1,15841:6630773,9401204:25952256,424439,79822 +(1,15840:6630773,9401204:0,0,0 +g1,15840:6630773,9401204 +g1,15840:6630773,9401204 +g1,15840:6303093,9401204 +(1,15840:6303093,9401204:0,0,0 +) +g1,15840:6630773,9401204 +) +k1,15841:6630773,9401204:0 +h1,15841:9950313,9401204:0,0,0 +k1,15841:32583029,9401204:22632716 +g1,15841:32583029,9401204 +) +(1,15845:6630773,10217131:25952256,424439,106246 +(1,15843:6630773,10217131:0,0,0 +g1,15843:6630773,10217131 +g1,15843:6630773,10217131 +g1,15843:6303093,10217131 +(1,15843:6303093,10217131:0,0,0 +) +g1,15843:6630773,10217131 +) +g1,15845:7626635,10217131 +g1,15845:8954451,10217131 +g1,15845:11942036,10217131 +h1,15845:14265714,10217131:0,0,0 +k1,15845:32583030,10217131:18317316 +g1,15845:32583030,10217131 +) +(1,15847:6630773,11033058:25952256,424439,79822 +(1,15846:6630773,11033058:0,0,0 +g1,15846:6630773,11033058 +g1,15846:6630773,11033058 +g1,15846:6303093,11033058 +(1,15846:6303093,11033058:0,0,0 +) +g1,15846:6630773,11033058 +) +k1,15847:6630773,11033058:0 +h1,15847:9286405,11033058:0,0,0 +k1,15847:32583029,11033058:23296624 +g1,15847:32583029,11033058 +) +(1,15851:6630773,11848985:25952256,424439,79822 +(1,15849:6630773,11848985:0,0,0 +g1,15849:6630773,11848985 +g1,15849:6630773,11848985 +g1,15849:6303093,11848985 +(1,15849:6303093,11848985:0,0,0 +) +g1,15849:6630773,11848985 +) +g1,15851:7626635,11848985 +g1,15851:8954451,11848985 +g1,15851:9950313,11848985 +g1,15851:10282267,11848985 +h1,15851:10614221,11848985:0,0,0 +k1,15851:32583029,11848985:21968808 +g1,15851:32583029,11848985 +) +(1,15853:6630773,12664912:25952256,424439,86428 +(1,15852:6630773,12664912:0,0,0 +g1,15852:6630773,12664912 +g1,15852:6630773,12664912 +g1,15852:6303093,12664912 +(1,15852:6303093,12664912:0,0,0 +) +g1,15852:6630773,12664912 +) +k1,15853:6630773,12664912:0 +g1,15853:9950313,12664912 +h1,15853:10614221,12664912:0,0,0 +k1,15853:32583029,12664912:21968808 +g1,15853:32583029,12664912 +) +(1,15865:6630773,13480839:25952256,424439,86428 +(1,15855:6630773,13480839:0,0,0 +g1,15855:6630773,13480839 +g1,15855:6630773,13480839 +g1,15855:6303093,13480839 +(1,15855:6303093,13480839:0,0,0 +) +g1,15855:6630773,13480839 +) +g1,15865:7626635,13480839 +g1,15865:7958589,13480839 +g1,15865:8290543,13480839 +g1,15865:8622497,13480839 +g1,15865:8954451,13480839 +g1,15865:9286405,13480839 +g1,15865:9618359,13480839 +g1,15865:9950313,13480839 +g1,15865:10282267,13480839 +g1,15865:10614221,13480839 +g1,15865:10946175,13480839 +g1,15865:11278129,13480839 +g1,15865:11610083,13480839 +g1,15865:11942037,13480839 +g1,15865:12273991,13480839 +g1,15865:12605945,13480839 +g1,15865:12937899,13480839 +g1,15865:13269853,13480839 +g1,15865:13601807,13480839 +g1,15865:15261577,13480839 +g1,15865:15593531,13480839 +g1,15865:15925485,13480839 +g1,15865:16257439,13480839 +g1,15865:16589393,13480839 +g1,15865:16921347,13480839 +g1,15865:17253301,13480839 +k1,15865:17253301,13480839:0 +h1,15865:18581117,13480839:0,0,0 +k1,15865:32583029,13480839:14001912 +g1,15865:32583029,13480839 +) +(1,15865:6630773,14165694:25952256,424439,9908 +h1,15865:6630773,14165694:0,0,0 +g1,15865:7626635,14165694 +g1,15865:9950313,14165694 +g1,15865:10282267,14165694 +g1,15865:10614221,14165694 +g1,15865:10946175,14165694 +g1,15865:11278129,14165694 +g1,15865:15261576,14165694 +g1,15865:15593530,14165694 +h1,15865:18581115,14165694:0,0,0 +k1,15865:32583029,14165694:14001914 +g1,15865:32583029,14165694 +) +(1,15865:6630773,14850549:25952256,424439,9908 +h1,15865:6630773,14850549:0,0,0 +g1,15865:7626635,14850549 +g1,15865:10946174,14850549 +g1,15865:11278128,14850549 +g1,15865:15261575,14850549 +g1,15865:15593529,14850549 +g1,15865:15925483,14850549 +h1,15865:18581114,14850549:0,0,0 +k1,15865:32583029,14850549:14001915 +g1,15865:32583029,14850549 +) +(1,15865:6630773,15535404:25952256,424439,9908 +h1,15865:6630773,15535404:0,0,0 +g1,15865:7626635,15535404 +g1,15865:10614220,15535404 +g1,15865:10946174,15535404 +g1,15865:11278128,15535404 +g1,15865:11610082,15535404 +g1,15865:11942036,15535404 +g1,15865:15261575,15535404 +g1,15865:15593529,15535404 +k1,15865:15593529,15535404:0 +h1,15865:18581114,15535404:0,0,0 +k1,15865:32583029,15535404:14001915 +g1,15865:32583029,15535404 +) +(1,15865:6630773,16220259:25952256,424439,9908 +h1,15865:6630773,16220259:0,0,0 +g1,15865:7626635,16220259 +g1,15865:9950313,16220259 +g1,15865:10282267,16220259 +g1,15865:10614221,16220259 +g1,15865:10946175,16220259 +g1,15865:11278129,16220259 +g1,15865:11610083,16220259 +g1,15865:15261576,16220259 +g1,15865:15593530,16220259 +k1,15865:15593530,16220259:0 +h1,15865:18581115,16220259:0,0,0 +k1,15865:32583029,16220259:14001914 +g1,15865:32583029,16220259 +) +(1,15865:6630773,16905114:25952256,424439,112852 +h1,15865:6630773,16905114:0,0,0 +g1,15865:7626635,16905114 +g1,15865:10946174,16905114 +g1,15865:11278128,16905114 +g1,15865:15261575,16905114 +g1,15865:15593529,16905114 +k1,15865:15593529,16905114:0 +h1,15865:18581114,16905114:0,0,0 +k1,15865:32583029,16905114:14001915 +g1,15865:32583029,16905114 +) +(1,15865:6630773,17589969:25952256,424439,112852 +h1,15865:6630773,17589969:0,0,0 +g1,15865:7626635,17589969 +g1,15865:10282267,17589969 +g1,15865:10614221,17589969 +g1,15865:10946175,17589969 +g1,15865:11278129,17589969 +g1,15865:11610083,17589969 +g1,15865:15261576,17589969 +g1,15865:15593530,17589969 +k1,15865:15593530,17589969:0 +h1,15865:18581115,17589969:0,0,0 +k1,15865:32583029,17589969:14001914 +g1,15865:32583029,17589969 +) +(1,15865:6630773,18274824:25952256,424439,112852 +h1,15865:6630773,18274824:0,0,0 +g1,15865:7626635,18274824 +g1,15865:11278128,18274824 +g1,15865:11610082,18274824 +g1,15865:15261575,18274824 +k1,15865:15261575,18274824:0 +h1,15865:18581114,18274824:0,0,0 +k1,15865:32583029,18274824:14001915 +g1,15865:32583029,18274824 +) +(1,15865:6630773,18959679:25952256,407923,9908 +h1,15865:6630773,18959679:0,0,0 +g1,15865:7626635,18959679 +g1,15865:9950313,18959679 +g1,15865:10282267,18959679 +g1,15865:10614221,18959679 +g1,15865:10946175,18959679 +g1,15865:11278129,18959679 +g1,15865:11610083,18959679 +g1,15865:11942037,18959679 +g1,15865:15261576,18959679 +g1,15865:15593530,18959679 +g1,15865:15925484,18959679 +h1,15865:18581115,18959679:0,0,0 +k1,15865:32583029,18959679:14001914 +g1,15865:32583029,18959679 +) +] +) +g1,15866:32583029,18969587 +g1,15866:6630773,18969587 +g1,15866:6630773,18969587 +g1,15866:32583029,18969587 +g1,15866:32583029,18969587 +) +h1,15866:6630773,19166195:0,0,0 +(1,15870:6630773,20031275:25952256,513147,102891 +h1,15869:6630773,20031275:983040,0,0 +k1,15869:8613939,20031275:171096 +k1,15869:10500767,20031275:171095 +k1,15869:11690948,20031275:171096 +k1,15869:13358230,20031275:171095 +k1,15869:15399724,20031275:171096 +k1,15869:16222247,20031275:171095 +k1,15869:17979314,20031275:171096 +k1,15869:19322849,20031275:171096 +k1,15869:21802122,20031275:171095 +k1,15869:22964778,20031275:171096 +k1,15869:24442006,20031275:171095 +k1,15869:27585160,20031275:171096 +k1,15869:29323876,20031275:171095 +k1,15869:30514057,20031275:171096 +k1,15869:32583029,20031275:0 +) +(1,15870:6630773,20896355:25952256,513147,126483 +k1,15869:8011521,20896355:189303 +k1,15869:10359580,20896355:189303 +(1,15869:10359580,20896355:0,414482,115847 +r1,15891:10717846,20896355:358266,530329,115847 +k1,15869:10359580,20896355:-358266 +) +(1,15869:10359580,20896355:358266,414482,115847 +k1,15869:10359580,20896355:3277 +h1,15869:10714569,20896355:0,411205,112570 +) +k1,15869:10907149,20896355:189303 +k1,15869:12287897,20896355:189303 +(1,15869:12287897,20896355:0,414482,115847 +r1,15891:12646163,20896355:358266,530329,115847 +k1,15869:12287897,20896355:-358266 +) +(1,15869:12287897,20896355:358266,414482,115847 +k1,15869:12287897,20896355:3277 +h1,15869:12642886,20896355:0,411205,112570 +) +k1,15869:13009136,20896355:189303 +k1,15869:14151988,20896355:189303 +k1,15869:15969861,20896355:189303 +k1,15869:18203887,20896355:189303 +k1,15869:19044618,20896355:189303 +k1,15869:21780650,20896355:189303 +k1,15869:22694781,20896355:189303 +k1,15869:24168590,20896355:189303 +k1,15869:27348956,20896355:189303 +k1,15869:28347629,20896355:189303 +k1,15869:30003628,20896355:189303 +k1,15869:31591469,20896355:189303 +k1,15869:32583029,20896355:0 +) +(1,15870:6630773,21761435:25952256,505283,126483 +k1,15870:32583029,21761435:22178038 +g1,15870:32583029,21761435 +) +v1,15874:6630773,22446290:0,393216,0 +(1,15882:6630773,25519787:25952256,3466713,196608 +g1,15882:6630773,25519787 +g1,15882:6630773,25519787 +g1,15882:6434165,25519787 +(1,15882:6434165,25519787:0,3466713,196608 +r1,15891:32779637,25519787:26345472,3663321,196608 +k1,15882:6434165,25519787:-26345472 +) +(1,15882:6434165,25519787:26345472,3466713,196608 +[1,15882:6630773,25519787:25952256,3270105,0 +(1,15876:6630773,22674121:25952256,424439,86428 +(1,15875:6630773,22674121:0,0,0 +g1,15875:6630773,22674121 +g1,15875:6630773,22674121 +g1,15875:6303093,22674121 +(1,15875:6303093,22674121:0,0,0 +) +g1,15875:6630773,22674121 +) +g1,15876:7294681,22674121 +g1,15876:8290543,22674121 +g1,15876:10282267,22674121 +h1,15876:10946175,22674121:0,0,0 +k1,15876:32583029,22674121:21636854 +g1,15876:32583029,22674121 +) +(1,15877:6630773,23358976:25952256,424439,112852 +h1,15877:6630773,23358976:0,0,0 +g1,15877:7294681,23358976 +g1,15877:8290543,23358976 +g1,15877:10614221,23358976 +g1,15877:11610083,23358976 +g1,15877:12273991,23358976 +g1,15877:14597669,23358976 +g1,15877:16257439,23358976 +g1,15877:17253301,23358976 +g1,15877:19245025,23358976 +g1,15877:20240887,23358976 +g1,15877:21236749,23358976 +g1,15877:22564565,23358976 +k1,15877:22564565,23358976:9909 +h1,15877:23570336,23358976:0,0,0 +k1,15877:32583029,23358976:9012693 +g1,15877:32583029,23358976 +) +(1,15878:6630773,24043831:25952256,424439,106246 +h1,15878:6630773,24043831:0,0,0 +g1,15878:9286405,24043831 +g1,15878:10282267,24043831 +g1,15878:11942037,24043831 +g1,15878:12605945,24043831 +g1,15878:14265715,24043831 +g1,15878:15593531,24043831 +g1,15878:16257439,24043831 +k1,15878:16257439,24043831:0 +h1,15878:16921347,24043831:0,0,0 +k1,15878:32583029,24043831:15661682 +g1,15878:32583029,24043831 +) +(1,15879:6630773,24728686:25952256,424439,79822 +h1,15879:6630773,24728686:0,0,0 +g1,15879:6962727,24728686 +g1,15879:7294681,24728686 +g1,15879:7626635,24728686 +g1,15879:7958589,24728686 +g1,15879:8290543,24728686 +g1,15879:9950313,24728686 +g1,15879:10614221,24728686 +h1,15879:17585254,24728686:0,0,0 +k1,15879:32583029,24728686:14997775 +g1,15879:32583029,24728686 +) +(1,15880:6630773,25413541:25952256,424439,106246 +h1,15880:6630773,25413541:0,0,0 +g1,15880:9286405,25413541 +g1,15880:10282267,25413541 +g1,15880:15261576,25413541 +g1,15880:16589392,25413541 +g1,15880:17253300,25413541 +h1,15880:18581116,25413541:0,0,0 +k1,15880:32583029,25413541:14001913 +g1,15880:32583029,25413541 +) +] +) +g1,15882:32583029,25519787 +g1,15882:6630773,25519787 +g1,15882:6630773,25519787 +g1,15882:32583029,25519787 +g1,15882:32583029,25519787 +) +h1,15882:6630773,25716395:0,0,0 +(1,15885:6630773,43949263:25952256,18167332,0 +k1,15885:10523651,43949263:3892878 +h1,15884:10523651,43949263:0,0,0 +(1,15884:10523651,43949263:18166500,18167332,0 +(1,15884:10523651,43949263:18167376,18167376,0 +(1,15884:10523651,43949263:18167376,18167376,0 +(1,15884:10523651,43949263:0,18167376,0 +(1,15884:10523651,43949263:0,28417720,0 +(1,15884:10523651,43949263:28417720,28417720,0 +) +k1,15884:10523651,43949263:-28417720 +) +) +g1,15884:28691027,43949263 +) +) +) +g1,15885:28690151,43949263 +k1,15885:32583029,43949263:3892878 +) +] +(1,15891:32583029,45706769:0,0,0 +g1,15891:32583029,45706769 +) +) +] +(1,15891:6630773,47279633:25952256,0,0 +h1,15891:6630773,47279633:25952256,0,0 +) +] +(1,15891:4262630,4025873:0,0,0 +[1,15891:-473656,4025873:0,0,0 +(1,15891:-473656,-710413:0,0,0 +(1,15891:-473656,-710413:0,0,0 +g1,15891:-473656,-710413 +) +g1,15891:-473656,-710413 ) ] ) ] !17246 -}254 -Input:2682:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2683:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2684:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2685:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}255 Input:2686:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2687:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2688:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2689:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2690:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2691:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{255 -[1,15939:4262630,47279633:28320399,43253760,0 -(1,15939:4262630,4025873:0,0,0 -[1,15939:-473656,4025873:0,0,0 -(1,15939:-473656,-710413:0,0,0 -(1,15939:-473656,-644877:0,0,0 -k1,15939:-473656,-644877:-65536 +{256 +[1,15937:4262630,47279633:28320399,43253760,0 +(1,15937:4262630,4025873:0,0,0 +[1,15937:-473656,4025873:0,0,0 +(1,15937:-473656,-710413:0,0,0 +(1,15937:-473656,-644877:0,0,0 +k1,15937:-473656,-644877:-65536 ) -(1,15939:-473656,4736287:0,0,0 -k1,15939:-473656,4736287:5209943 +(1,15937:-473656,4736287:0,0,0 +k1,15937:-473656,4736287:5209943 ) -g1,15939:-473656,-710413 +g1,15937:-473656,-710413 ) ] ) -[1,15939:6630773,47279633:25952256,43253760,0 -[1,15939:6630773,4812305:25952256,786432,0 -(1,15939:6630773,4812305:25952256,513147,126483 -(1,15939:6630773,4812305:25952256,513147,126483 -g1,15939:3078558,4812305 -[1,15939:3078558,4812305:0,0,0 -(1,15939:3078558,2439708:0,1703936,0 -k1,15939:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15939:2537886,2439708:1179648,16384,0 +[1,15937:6630773,47279633:25952256,43253760,0 +[1,15937:6630773,4812305:25952256,786432,0 +(1,15937:6630773,4812305:25952256,513147,126483 +(1,15937:6630773,4812305:25952256,513147,126483 +g1,15937:3078558,4812305 +[1,15937:3078558,4812305:0,0,0 +(1,15937:3078558,2439708:0,1703936,0 +k1,15937:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15937:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15939:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15937:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15939:3078558,4812305:0,0,0 -(1,15939:3078558,2439708:0,1703936,0 -g1,15939:29030814,2439708 -g1,15939:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15939:36151628,1915420:16384,1179648,0 +[1,15937:3078558,4812305:0,0,0 +(1,15937:3078558,2439708:0,1703936,0 +g1,15937:29030814,2439708 +g1,15937:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15937:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15939:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15937:37855564,2439708:1179648,16384,0 ) ) -k1,15939:3078556,2439708:-34777008 +k1,15937:3078556,2439708:-34777008 ) ] -[1,15939:3078558,4812305:0,0,0 -(1,15939:3078558,49800853:0,16384,2228224 -k1,15939:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15939:2537886,49800853:1179648,16384,0 +[1,15937:3078558,4812305:0,0,0 +(1,15937:3078558,49800853:0,16384,2228224 +k1,15937:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15937:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15939:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15937:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15939:3078558,4812305:0,0,0 -(1,15939:3078558,49800853:0,16384,2228224 -g1,15939:29030814,49800853 -g1,15939:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15939:36151628,51504789:16384,1179648,0 -) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15939:37855564,49800853:1179648,16384,0 +[1,15937:3078558,4812305:0,0,0 +(1,15937:3078558,49800853:0,16384,2228224 +g1,15937:29030814,49800853 +g1,15937:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15937:36151628,51504789:16384,1179648,0 +) +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15937:37855564,49800853:1179648,16384,0 ) ) -k1,15939:3078556,49800853:-34777008 -) -] -g1,15939:6630773,4812305 -k1,15939:19575446,4812305:11749296 -g1,15939:21198117,4812305 -g1,15939:21985204,4812305 -g1,15939:24539797,4812305 -g1,15939:25949476,4812305 -g1,15939:28728857,4812305 -g1,15939:29852144,4812305 -) -) -] -[1,15939:6630773,45706769:25952256,40108032,0 -(1,15939:6630773,45706769:25952256,40108032,0 -(1,15939:6630773,45706769:0,0,0 -g1,15939:6630773,45706769 -) -[1,15939:6630773,45706769:25952256,40108032,0 -v1,15895:6630773,6254097:0,393216,0 -(1,15896:6630773,10899590:25952256,5038709,0 -g1,15896:6630773,10899590 -g1,15896:6237557,10899590 -r1,15939:6368629,10899590:131072,5038709,0 -g1,15896:6567858,10899590 -g1,15896:6764466,10899590 -[1,15896:6764466,10899590:25818563,5038709,0 -(1,15896:6764466,6562395:25818563,701514,196608 -(1,15895:6764466,6562395:0,701514,196608 -r1,15939:8471973,6562395:1707507,898122,196608 -k1,15895:6764466,6562395:-1707507 -) -(1,15895:6764466,6562395:1707507,701514,196608 -) -k1,15895:8687619,6562395:215646 -k1,15895:10413837,6562395:327680 -k1,15895:12025400,6562395:215646 -k1,15895:13630410,6562395:215647 -k1,15895:14655426,6562395:215646 -k1,15895:15890157,6562395:215646 -k1,15895:17843818,6562395:215646 -k1,15895:20220841,6562395:215646 -k1,15895:24554114,6562395:215646 -k1,15895:26507776,6562395:215647 -k1,15895:28884799,6562395:215646 -k1,15895:31391584,6562395:215646 -k1,15895:32583029,6562395:0 -) -(1,15896:6764466,7427475:25818563,513147,126483 -k1,15895:8662504,7427475:160023 -k1,15895:11308309,7427475:160024 -k1,15895:12127624,7427475:160023 -k1,15895:14223581,7427475:160023 -k1,15895:15851610,7427475:160023 -k1,15895:16624396,7427475:160024 -k1,15895:18236041,7427475:160023 -k1,15895:19055356,7427475:160023 -k1,15895:20234464,7427475:160023 -k1,15895:23281349,7427475:160024 -k1,15895:24057410,7427475:160023 -k1,15895:25236518,7427475:160023 -(1,15895:25236518,7427475:0,452978,115847 -r1,15939:28056767,7427475:2820249,568825,115847 -k1,15895:25236518,7427475:-2820249 -) -(1,15895:25236518,7427475:2820249,452978,115847 -k1,15895:25236518,7427475:3277 -h1,15895:28053490,7427475:0,411205,112570 -) -k1,15895:28216790,7427475:160023 -k1,15895:29766177,7427475:160024 -k1,15895:31034414,7427475:160023 -k1,15895:32583029,7427475:0 -) -(1,15896:6764466,8292555:25818563,513147,134348 -k1,15895:9766102,8292555:213734 -k1,15895:12491831,8292555:213734 -k1,15895:15366327,8292555:213734 -k1,15895:18131378,8292555:213734 -k1,15895:19292763,8292555:213734 -k1,15895:22341583,8292555:213733 -k1,15895:24290710,8292555:213734 -k1,15895:27199940,8292555:213734 -(1,15895:27199940,8292555:0,452978,115847 -r1,15939:28613341,8292555:1413401,568825,115847 -k1,15895:27199940,8292555:-1413401 -) -(1,15895:27199940,8292555:1413401,452978,115847 -k1,15895:27199940,8292555:3277 -h1,15895:28610064,8292555:0,411205,112570 -) -k1,15895:29000745,8292555:213734 -k1,15895:31490544,8292555:213734 -k1,15895:32583029,8292555:0 -) -(1,15896:6764466,9157635:25818563,513147,126483 -k1,15895:8430630,9157635:244033 -k1,15895:9326136,9157635:244078 -k1,15895:12313551,9157635:244078 -k1,15895:13888010,9157635:244078 -k1,15895:16334098,9157635:244078 -k1,15895:17597261,9157635:244078 -k1,15895:20728199,9157635:244077 -k1,15895:21963837,9157635:244078 -k1,15895:23601866,9157635:244078 -k1,15895:26170506,9157635:244078 -k1,15895:27066012,9157635:244078 -k1,15895:28761712,9157635:244078 -k1,15895:29665082,9157635:244078 -k1,15895:30928245,9157635:244078 -k1,15895:32583029,9157635:0 -) -(1,15896:6764466,10022715:25818563,513147,7863 -k1,15895:9980535,10022715:218453 -k1,15895:12285655,10022715:218454 -k1,15895:12859968,10022715:218453 -k1,15895:15782436,10022715:218453 -k1,15895:16660182,10022715:218454 -k1,15895:19539397,10022715:218453 -k1,15895:21042356,10022715:218453 -k1,15895:22943775,10022715:218454 -k1,15895:24429694,10022715:218453 -k1,15895:27152278,10022715:218453 -k1,15895:28389817,10022715:218454 -k1,15895:30263054,10022715:218453 -k1,15895:32583029,10022715:0 -) -(1,15896:6764466,10887795:25818563,513147,11795 -g1,15895:9787641,10887795 -g1,15895:11178315,10887795 -g1,15895:12470029,10887795 -g1,15895:14091389,10887795 -g1,15895:14942046,10887795 -g1,15895:16407431,10887795 -g1,15895:17937041,10887795 -g1,15895:20373014,10887795 -g1,15895:21591328,10887795 -g1,15895:24552900,10887795 -g1,15895:27638990,10887795 -k1,15896:32583029,10887795:3900051 -g1,15896:32583029,10887795 -) -] -g1,15896:32583029,10899590 -) -h1,15896:6630773,10899590:0,0,0 -(1,15900:6630773,13016408:25952256,555811,139132 -(1,15900:6630773,13016408:2899444,527696,12975 -g1,15900:6630773,13016408 -g1,15900:9530217,13016408 -) -g1,15900:12369827,13016408 -k1,15900:32583029,13016408:17244552 -g1,15900:32583029,13016408 -) -(1,15904:6630773,14274704:25952256,505283,134348 -k1,15903:7564115,14274704:305507 -k1,15903:10046073,14274704:305507 -k1,15903:13079843,14274704:305506 -k1,15903:14404435,14274704:305507 -k1,15903:15886969,14274704:305507 -k1,15903:16723973,14274704:305507 -k1,15903:17680907,14274704:305506 -k1,15903:19879094,14274704:305507 -k1,15903:24256353,14274704:305507 -k1,15903:25829326,14274704:305507 -k1,15903:28660590,14274704:305506 -k1,15903:31189078,14274704:305507 -k1,15903:32583029,14274704:0 -) -(1,15904:6630773,15139784:25952256,513147,134348 -k1,15903:9607500,15139784:253706 -k1,15903:12345676,15139784:253706 -k1,15903:16726184,15139784:253706 -k1,15903:18171336,15139784:253707 -k1,15903:21621888,15139784:253706 -k1,15903:26738365,15139784:253706 -k1,15903:30682403,15139784:253706 -k1,15903:31563944,15139784:253706 -k1,15903:32583029,15139784:0 -) -(1,15904:6630773,16004864:25952256,513147,134348 -k1,15903:8188396,16004864:173503 -k1,15903:11023316,16004864:173503 -k1,15903:12065171,16004864:173503 -k1,15903:13331159,16004864:173503 -k1,15903:16200158,16004864:173503 -(1,15903:16200158,16004864:0,452978,115847 -r1,15939:19020407,16004864:2820249,568825,115847 -k1,15903:16200158,16004864:-2820249 -) -(1,15903:16200158,16004864:2820249,452978,115847 -k1,15903:16200158,16004864:3277 -h1,15903:19017130,16004864:0,411205,112570 -) -k1,15903:19193910,16004864:173503 -k1,15903:20935034,16004864:173503 -k1,15903:22127622,16004864:173503 -k1,15903:24362863,16004864:173478 -k1,15903:27116518,16004864:173503 -k1,15903:29330156,16004864:173503 -k1,15903:30457208,16004864:173503 -k1,15903:31896867,16004864:173503 -k1,15903:32583029,16004864:0 -) -(1,15904:6630773,16869944:25952256,505283,126483 -k1,15903:8888742,16869944:228974 -k1,15903:10136801,16869944:228974 -(1,15903:10136801,16869944:0,452978,115847 -r1,15939:12957050,16869944:2820249,568825,115847 -k1,15903:10136801,16869944:-2820249 -) -(1,15903:10136801,16869944:2820249,452978,115847 -k1,15903:10136801,16869944:3277 -h1,15903:12953773,16869944:0,411205,112570 -) -k1,15903:13186025,16869944:228975 -k1,15903:14804362,16869944:228974 -k1,15903:16918807,16869944:228974 -k1,15903:19562127,16869944:228974 -k1,15903:22551477,16869944:228974 -k1,15903:25945185,16869944:228974 -k1,15903:26801995,16869944:228975 -k1,15903:28732939,16869944:228974 -k1,15903:30659295,16869944:228974 -k1,15903:31244129,16869944:228974 -k1,15904:32583029,16869944:0 -) -(1,15904:6630773,17735024:25952256,513147,126483 -k1,15903:7760012,17735024:274650 -k1,15903:8693955,17735024:274651 -k1,15903:11959668,17735024:274650 -k1,15903:14869521,17735024:274650 -k1,15903:16740629,17735024:274651 -k1,15903:17674571,17735024:274650 -k1,15903:22020973,17735024:274650 -k1,15903:24156191,17735024:274651 -k1,15903:25082269,17735024:274650 -k1,15903:26104685,17735024:274650 -k1,15903:27685469,17735024:274651 -k1,15903:31189078,17735024:274650 -k1,15903:32583029,17735024:0 -) -(1,15904:6630773,18600104:25952256,513147,126483 -g1,15903:9525498,18600104 -(1,15903:9525498,18600104:0,452978,115847 -r1,15939:10938899,18600104:1413401,568825,115847 -k1,15903:9525498,18600104:-1413401 -) -(1,15903:9525498,18600104:1413401,452978,115847 -k1,15903:9525498,18600104:3277 -h1,15903:10935622,18600104:0,411205,112570 -) -g1,15903:11138128,18600104 -g1,15903:13222828,18600104 -g1,15903:16278771,18600104 -g1,15903:18709501,18600104 -k1,15904:32583029,18600104:11036475 -g1,15904:32583029,18600104 -) -v1,15906:6630773,19284959:0,393216,0 -(1,15919:6630773,24550699:25952256,5658956,196608 -g1,15919:6630773,24550699 -g1,15919:6630773,24550699 -g1,15919:6434165,24550699 -(1,15919:6434165,24550699:0,5658956,196608 -r1,15939:32779637,24550699:26345472,5855564,196608 -k1,15919:6434165,24550699:-26345472 -) -(1,15919:6434165,24550699:26345472,5658956,196608 -[1,15919:6630773,24550699:25952256,5462348,0 -(1,15908:6630773,19512790:25952256,424439,79822 -(1,15907:6630773,19512790:0,0,0 -g1,15907:6630773,19512790 -g1,15907:6630773,19512790 -g1,15907:6303093,19512790 -(1,15907:6303093,19512790:0,0,0 -) -g1,15907:6630773,19512790 -) -g1,15908:7626635,19512790 -g1,15908:8622497,19512790 -k1,15908:8622497,19512790:0 -h1,15908:13933760,19512790:0,0,0 -k1,15908:32583028,19512790:18649268 -g1,15908:32583028,19512790 -) -(1,15909:6630773,20197645:25952256,424439,106246 -h1,15909:6630773,20197645:0,0,0 -k1,15909:6630773,20197645:0 -h1,15909:9618359,20197645:0,0,0 -k1,15909:32583029,20197645:22964670 -g1,15909:32583029,20197645 -) -(1,15918:6630773,21013572:25952256,398014,0 -(1,15911:6630773,21013572:0,0,0 -g1,15911:6630773,21013572 -g1,15911:6630773,21013572 -g1,15911:6303093,21013572 -(1,15911:6303093,21013572:0,0,0 -) -g1,15911:6630773,21013572 -) -h1,15918:7294681,21013572:0,0,0 -k1,15918:32583029,21013572:25288348 -g1,15918:32583029,21013572 -) -(1,15918:6630773,21698427:25952256,424439,8257 -h1,15918:6630773,21698427:0,0,0 -g1,15918:7626635,21698427 -h1,15918:9286405,21698427:0,0,0 -k1,15918:32583029,21698427:23296624 -g1,15918:32583029,21698427 -) -(1,15918:6630773,22383282:25952256,424439,79822 -h1,15918:6630773,22383282:0,0,0 -g1,15918:7626635,22383282 -g1,15918:10614220,22383282 -g1,15918:11278128,22383282 -h1,15918:14265713,22383282:0,0,0 -k1,15918:32583029,22383282:18317316 -g1,15918:32583029,22383282 -) -(1,15918:6630773,23068137:25952256,398014,0 -h1,15918:6630773,23068137:0,0,0 -h1,15918:7294681,23068137:0,0,0 -k1,15918:32583029,23068137:25288348 -g1,15918:32583029,23068137 -) -(1,15918:6630773,23752992:25952256,424439,106246 -h1,15918:6630773,23752992:0,0,0 -g1,15918:7626635,23752992 -g1,15918:10282267,23752992 -g1,15918:12605945,23752992 -g1,15918:12937899,23752992 -g1,15918:13269853,23752992 -g1,15918:13933761,23752992 -h1,15918:16589392,23752992:0,0,0 -k1,15918:32583029,23752992:15993637 -g1,15918:32583029,23752992 -) -(1,15918:6630773,24437847:25952256,431045,112852 -h1,15918:6630773,24437847:0,0,0 -g1,15918:7626635,24437847 -g1,15918:9950313,24437847 -g1,15918:10946175,24437847 -g1,15918:13933760,24437847 -h1,15918:14597668,24437847:0,0,0 -k1,15918:32583028,24437847:17985360 -g1,15918:32583028,24437847 -) -] -) -g1,15919:32583029,24550699 -g1,15919:6630773,24550699 -g1,15919:6630773,24550699 -g1,15919:32583029,24550699 -g1,15919:32583029,24550699 -) -h1,15919:6630773,24747307:0,0,0 -v1,15923:6630773,25432162:0,393216,0 -(1,15927:6630773,25766239:25952256,727293,196608 -g1,15927:6630773,25766239 -g1,15927:6630773,25766239 -g1,15927:6434165,25766239 -(1,15927:6434165,25766239:0,727293,196608 -r1,15939:32779637,25766239:26345472,923901,196608 -k1,15927:6434165,25766239:-26345472 -) -(1,15927:6434165,25766239:26345472,727293,196608 -[1,15927:6630773,25766239:25952256,530685,0 -(1,15925:6630773,25659993:25952256,424439,106246 -(1,15924:6630773,25659993:0,0,0 -g1,15924:6630773,25659993 -g1,15924:6630773,25659993 -g1,15924:6303093,25659993 -(1,15924:6303093,25659993:0,0,0 -) -g1,15924:6630773,25659993 +k1,15937:3078556,49800853:-34777008 +) +] +g1,15937:6630773,4812305 +k1,15937:19575446,4812305:11749296 +g1,15937:21198117,4812305 +g1,15937:21985204,4812305 +g1,15937:24539797,4812305 +g1,15937:25949476,4812305 +g1,15937:28728857,4812305 +g1,15937:29852144,4812305 +) +) +] +[1,15937:6630773,45706769:25952256,40108032,0 +(1,15937:6630773,45706769:25952256,40108032,0 +(1,15937:6630773,45706769:0,0,0 +g1,15937:6630773,45706769 +) +[1,15937:6630773,45706769:25952256,40108032,0 +v1,15893:6630773,6254097:0,393216,0 +(1,15894:6630773,10899590:25952256,5038709,0 +g1,15894:6630773,10899590 +g1,15894:6237557,10899590 +r1,15937:6368629,10899590:131072,5038709,0 +g1,15894:6567858,10899590 +g1,15894:6764466,10899590 +[1,15894:6764466,10899590:25818563,5038709,0 +(1,15894:6764466,6562395:25818563,701514,196608 +(1,15893:6764466,6562395:0,701514,196608 +r1,15937:8471973,6562395:1707507,898122,196608 +k1,15893:6764466,6562395:-1707507 +) +(1,15893:6764466,6562395:1707507,701514,196608 +) +k1,15893:8687619,6562395:215646 +k1,15893:10413837,6562395:327680 +k1,15893:12025400,6562395:215646 +k1,15893:13630410,6562395:215647 +k1,15893:14655426,6562395:215646 +k1,15893:15890157,6562395:215646 +k1,15893:17843818,6562395:215646 +k1,15893:20220841,6562395:215646 +k1,15893:24554114,6562395:215646 +k1,15893:26507776,6562395:215647 +k1,15893:28884799,6562395:215646 +k1,15893:31391584,6562395:215646 +k1,15893:32583029,6562395:0 +) +(1,15894:6764466,7427475:25818563,513147,126483 +k1,15893:8662504,7427475:160023 +k1,15893:11308309,7427475:160024 +k1,15893:12127624,7427475:160023 +k1,15893:14223581,7427475:160023 +k1,15893:15851610,7427475:160023 +k1,15893:16624396,7427475:160024 +k1,15893:18236041,7427475:160023 +k1,15893:19055356,7427475:160023 +k1,15893:20234464,7427475:160023 +k1,15893:23281349,7427475:160024 +k1,15893:24057410,7427475:160023 +k1,15893:25236518,7427475:160023 +(1,15893:25236518,7427475:0,452978,115847 +r1,15937:28056767,7427475:2820249,568825,115847 +k1,15893:25236518,7427475:-2820249 +) +(1,15893:25236518,7427475:2820249,452978,115847 +k1,15893:25236518,7427475:3277 +h1,15893:28053490,7427475:0,411205,112570 +) +k1,15893:28216790,7427475:160023 +k1,15893:29766177,7427475:160024 +k1,15893:31034414,7427475:160023 +k1,15893:32583029,7427475:0 +) +(1,15894:6764466,8292555:25818563,513147,134348 +k1,15893:9766102,8292555:213734 +k1,15893:12491831,8292555:213734 +k1,15893:15366327,8292555:213734 +k1,15893:18131378,8292555:213734 +k1,15893:19292763,8292555:213734 +k1,15893:22341583,8292555:213733 +k1,15893:24290710,8292555:213734 +k1,15893:27199940,8292555:213734 +(1,15893:27199940,8292555:0,452978,115847 +r1,15937:28613341,8292555:1413401,568825,115847 +k1,15893:27199940,8292555:-1413401 +) +(1,15893:27199940,8292555:1413401,452978,115847 +k1,15893:27199940,8292555:3277 +h1,15893:28610064,8292555:0,411205,112570 +) +k1,15893:29000745,8292555:213734 +k1,15893:31490544,8292555:213734 +k1,15893:32583029,8292555:0 +) +(1,15894:6764466,9157635:25818563,513147,126483 +k1,15893:8430630,9157635:244033 +k1,15893:9326136,9157635:244078 +k1,15893:12313551,9157635:244078 +k1,15893:13888010,9157635:244078 +k1,15893:16334098,9157635:244078 +k1,15893:17597261,9157635:244078 +k1,15893:20728199,9157635:244077 +k1,15893:21963837,9157635:244078 +k1,15893:23601866,9157635:244078 +k1,15893:26170506,9157635:244078 +k1,15893:27066012,9157635:244078 +k1,15893:28761712,9157635:244078 +k1,15893:29665082,9157635:244078 +k1,15893:30928245,9157635:244078 +k1,15893:32583029,9157635:0 +) +(1,15894:6764466,10022715:25818563,513147,7863 +k1,15893:9980535,10022715:218453 +k1,15893:12285655,10022715:218454 +k1,15893:12859968,10022715:218453 +k1,15893:15782436,10022715:218453 +k1,15893:16660182,10022715:218454 +k1,15893:19539397,10022715:218453 +k1,15893:21042356,10022715:218453 +k1,15893:22943775,10022715:218454 +k1,15893:24429694,10022715:218453 +k1,15893:27152278,10022715:218453 +k1,15893:28389817,10022715:218454 +k1,15893:30263054,10022715:218453 +k1,15893:32583029,10022715:0 +) +(1,15894:6764466,10887795:25818563,513147,11795 +g1,15893:9787641,10887795 +g1,15893:11178315,10887795 +g1,15893:12470029,10887795 +g1,15893:14091389,10887795 +g1,15893:14942046,10887795 +g1,15893:16407431,10887795 +g1,15893:17937041,10887795 +g1,15893:20373014,10887795 +g1,15893:21591328,10887795 +g1,15893:24552900,10887795 +g1,15893:27638990,10887795 +k1,15894:32583029,10887795:3900051 +g1,15894:32583029,10887795 +) +] +g1,15894:32583029,10899590 +) +h1,15894:6630773,10899590:0,0,0 +(1,15898:6630773,13016408:25952256,555811,139132 +(1,15898:6630773,13016408:2899444,527696,12975 +g1,15898:6630773,13016408 +g1,15898:9530217,13016408 +) +g1,15898:12369827,13016408 +k1,15898:32583029,13016408:17244552 +g1,15898:32583029,13016408 +) +(1,15902:6630773,14274704:25952256,505283,134348 +k1,15901:7429304,14274704:170696 +k1,15901:9776451,14274704:170696 +k1,15901:12675411,14274704:170696 +k1,15901:13865191,14274704:170695 +k1,15901:15212914,14274704:170696 +k1,15901:15915107,14274704:170696 +k1,15901:16737231,14274704:170696 +k1,15901:18800607,14274704:170696 +k1,15901:23043055,14274704:170696 +k1,15901:24481216,14274704:170695 +k1,15901:27177670,14274704:170696 +k1,15901:29571347,14274704:170696 +k1,15901:31135994,14274704:170696 +k1,15902:32583029,14274704:0 +) +(1,15902:6630773,15139784:25952256,513147,134348 +k1,15901:8233638,15139784:220711 +k1,15901:10938818,15139784:220710 +k1,15901:15286331,15139784:220711 +k1,15901:16698487,15139784:220711 +k1,15901:20116043,15139784:220710 +k1,15901:25199525,15139784:220711 +k1,15901:29110568,15139784:220711 +k1,15901:29959113,15139784:220710 +k1,15901:31198909,15139784:220711 +k1,15901:32583029,15139784:0 +) +(1,15902:6630773,16004864:25952256,513147,134348 +k1,15901:9754698,16004864:288838 +k1,15901:10911888,16004864:288838 +k1,15901:12293211,16004864:288838 +k1,15901:15277544,16004864:288837 +(1,15901:15277544,16004864:0,452978,115847 +r1,15937:18097793,16004864:2820249,568825,115847 +k1,15901:15277544,16004864:-2820249 +) +(1,15901:15277544,16004864:2820249,452978,115847 +k1,15901:15277544,16004864:3277 +h1,15901:18094516,16004864:0,411205,112570 +) +k1,15901:18386631,16004864:288838 +k1,15901:20243090,16004864:288838 +k1,15901:21551013,16004864:288838 +k1,15901:23901524,16004864:288748 +k1,15901:26770514,16004864:288838 +k1,15901:29099486,16004864:288837 +k1,15901:30341873,16004864:288838 +k1,15901:31896867,16004864:288838 +k1,15901:32583029,16004864:0 +) +(1,15902:6630773,16869944:25952256,505283,126483 +k1,15901:8874270,16869944:214502 +k1,15901:10107856,16869944:214501 +(1,15901:10107856,16869944:0,452978,115847 +r1,15937:12928105,16869944:2820249,568825,115847 +k1,15901:10107856,16869944:-2820249 +) +(1,15901:10107856,16869944:2820249,452978,115847 +k1,15901:10107856,16869944:3277 +h1,15901:12924828,16869944:0,411205,112570 +) +k1,15901:13142607,16869944:214502 +k1,15901:14746471,16869944:214501 +k1,15901:16846444,16869944:214502 +k1,15901:19475292,16869944:214502 +k1,15901:22450169,16869944:214501 +k1,15901:25829405,16869944:214502 +k1,15901:26671741,16869944:214501 +k1,15901:28588213,16869944:214502 +k1,15901:30673767,16869944:214501 +k1,15901:31244129,16869944:214502 +k1,15902:32583029,16869944:0 +) +(1,15902:6630773,17735024:25952256,513147,126483 +k1,15901:7760012,17735024:274650 +k1,15901:8693955,17735024:274651 +k1,15901:11959668,17735024:274650 +k1,15901:14869521,17735024:274650 +k1,15901:16740629,17735024:274651 +k1,15901:17674571,17735024:274650 +k1,15901:22020973,17735024:274650 +k1,15901:24156191,17735024:274651 +k1,15901:25082269,17735024:274650 +k1,15901:26104685,17735024:274650 +k1,15901:27685469,17735024:274651 +k1,15901:31189078,17735024:274650 +k1,15901:32583029,17735024:0 +) +(1,15902:6630773,18600104:25952256,513147,126483 +g1,15901:9525498,18600104 +(1,15901:9525498,18600104:0,452978,115847 +r1,15937:10938899,18600104:1413401,568825,115847 +k1,15901:9525498,18600104:-1413401 +) +(1,15901:9525498,18600104:1413401,452978,115847 +k1,15901:9525498,18600104:3277 +h1,15901:10935622,18600104:0,411205,112570 +) +g1,15901:11138128,18600104 +g1,15901:13222828,18600104 +g1,15901:16278771,18600104 +g1,15901:18709501,18600104 +k1,15902:32583029,18600104:11036475 +g1,15902:32583029,18600104 +) +v1,15904:6630773,19284959:0,393216,0 +(1,15917:6630773,24550699:25952256,5658956,196608 +g1,15917:6630773,24550699 +g1,15917:6630773,24550699 +g1,15917:6434165,24550699 +(1,15917:6434165,24550699:0,5658956,196608 +r1,15937:32779637,24550699:26345472,5855564,196608 +k1,15917:6434165,24550699:-26345472 +) +(1,15917:6434165,24550699:26345472,5658956,196608 +[1,15917:6630773,24550699:25952256,5462348,0 +(1,15906:6630773,19512790:25952256,424439,79822 +(1,15905:6630773,19512790:0,0,0 +g1,15905:6630773,19512790 +g1,15905:6630773,19512790 +g1,15905:6303093,19512790 +(1,15905:6303093,19512790:0,0,0 +) +g1,15905:6630773,19512790 +) +g1,15906:7626635,19512790 +g1,15906:8622497,19512790 +k1,15906:8622497,19512790:0 +h1,15906:13933760,19512790:0,0,0 +k1,15906:32583028,19512790:18649268 +g1,15906:32583028,19512790 +) +(1,15907:6630773,20197645:25952256,424439,106246 +h1,15907:6630773,20197645:0,0,0 +k1,15907:6630773,20197645:0 +h1,15907:9618359,20197645:0,0,0 +k1,15907:32583029,20197645:22964670 +g1,15907:32583029,20197645 +) +(1,15916:6630773,21013572:25952256,398014,0 +(1,15909:6630773,21013572:0,0,0 +g1,15909:6630773,21013572 +g1,15909:6630773,21013572 +g1,15909:6303093,21013572 +(1,15909:6303093,21013572:0,0,0 +) +g1,15909:6630773,21013572 +) +h1,15916:7294681,21013572:0,0,0 +k1,15916:32583029,21013572:25288348 +g1,15916:32583029,21013572 +) +(1,15916:6630773,21698427:25952256,424439,8257 +h1,15916:6630773,21698427:0,0,0 +g1,15916:7626635,21698427 +h1,15916:9286405,21698427:0,0,0 +k1,15916:32583029,21698427:23296624 +g1,15916:32583029,21698427 +) +(1,15916:6630773,22383282:25952256,424439,79822 +h1,15916:6630773,22383282:0,0,0 +g1,15916:7626635,22383282 +g1,15916:10614220,22383282 +g1,15916:11278128,22383282 +h1,15916:14265713,22383282:0,0,0 +k1,15916:32583029,22383282:18317316 +g1,15916:32583029,22383282 +) +(1,15916:6630773,23068137:25952256,398014,0 +h1,15916:6630773,23068137:0,0,0 +h1,15916:7294681,23068137:0,0,0 +k1,15916:32583029,23068137:25288348 +g1,15916:32583029,23068137 +) +(1,15916:6630773,23752992:25952256,424439,106246 +h1,15916:6630773,23752992:0,0,0 +g1,15916:7626635,23752992 +g1,15916:10282267,23752992 +g1,15916:12605945,23752992 +g1,15916:12937899,23752992 +g1,15916:13269853,23752992 +g1,15916:13933761,23752992 +h1,15916:16589392,23752992:0,0,0 +k1,15916:32583029,23752992:15993637 +g1,15916:32583029,23752992 +) +(1,15916:6630773,24437847:25952256,431045,112852 +h1,15916:6630773,24437847:0,0,0 +g1,15916:7626635,24437847 +g1,15916:9950313,24437847 +g1,15916:10946175,24437847 +g1,15916:13933760,24437847 +h1,15916:14597668,24437847:0,0,0 +k1,15916:32583028,24437847:17985360 +g1,15916:32583028,24437847 +) +] +) +g1,15917:32583029,24550699 +g1,15917:6630773,24550699 +g1,15917:6630773,24550699 +g1,15917:32583029,24550699 +g1,15917:32583029,24550699 +) +h1,15917:6630773,24747307:0,0,0 +v1,15921:6630773,25432162:0,393216,0 +(1,15925:6630773,25766239:25952256,727293,196608 +g1,15925:6630773,25766239 +g1,15925:6630773,25766239 +g1,15925:6434165,25766239 +(1,15925:6434165,25766239:0,727293,196608 +r1,15937:32779637,25766239:26345472,923901,196608 +k1,15925:6434165,25766239:-26345472 +) +(1,15925:6434165,25766239:26345472,727293,196608 +[1,15925:6630773,25766239:25952256,530685,0 +(1,15923:6630773,25659993:25952256,424439,106246 +(1,15922:6630773,25659993:0,0,0 +g1,15922:6630773,25659993 +g1,15922:6630773,25659993 +g1,15922:6303093,25659993 +(1,15922:6303093,25659993:0,0,0 +) +g1,15922:6630773,25659993 ) -k1,15925:6630773,25659993:0 -h1,15925:9286405,25659993:0,0,0 -k1,15925:32583029,25659993:23296624 -g1,15925:32583029,25659993 +k1,15923:6630773,25659993:0 +h1,15923:9286405,25659993:0,0,0 +k1,15923:32583029,25659993:23296624 +g1,15923:32583029,25659993 ) ] ) -g1,15927:32583029,25766239 -g1,15927:6630773,25766239 -g1,15927:6630773,25766239 -g1,15927:32583029,25766239 -g1,15927:32583029,25766239 +g1,15925:32583029,25766239 +g1,15925:6630773,25766239 +g1,15925:6630773,25766239 +g1,15925:32583029,25766239 +g1,15925:32583029,25766239 ) -h1,15927:6630773,25962847:0,0,0 -(1,15930:6630773,44195715:25952256,18167332,0 -k1,15930:10523651,44195715:3892878 -h1,15929:10523651,44195715:0,0,0 -(1,15929:10523651,44195715:18166500,18167332,0 -(1,15929:10523651,44195715:18167376,18167376,0 -(1,15929:10523651,44195715:18167376,18167376,0 -(1,15929:10523651,44195715:0,18167376,0 -(1,15929:10523651,44195715:0,28417720,0 -(1,15929:10523651,44195715:28417720,28417720,0 +h1,15925:6630773,25962847:0,0,0 +(1,15928:6630773,44195715:25952256,18167332,0 +k1,15928:10523651,44195715:3892878 +h1,15927:10523651,44195715:0,0,0 +(1,15927:10523651,44195715:18166500,18167332,0 +(1,15927:10523651,44195715:18167376,18167376,0 +(1,15927:10523651,44195715:18167376,18167376,0 +(1,15927:10523651,44195715:0,18167376,0 +(1,15927:10523651,44195715:0,28417720,0 +(1,15927:10523651,44195715:28417720,28417720,0 ) -k1,15929:10523651,44195715:-28417720 +k1,15927:10523651,44195715:-28417720 ) ) -g1,15929:28691027,44195715 +g1,15927:28691027,44195715 ) ) ) -g1,15930:28690151,44195715 -k1,15930:32583029,44195715:3892878 +g1,15928:28690151,44195715 +k1,15928:32583029,44195715:3892878 ) ] -(1,15939:32583029,45706769:0,0,0 -g1,15939:32583029,45706769 +(1,15937:32583029,45706769:0,0,0 +g1,15937:32583029,45706769 ) ) ] -(1,15939:6630773,47279633:25952256,0,0 -h1,15939:6630773,47279633:25952256,0,0 +(1,15937:6630773,47279633:25952256,0,0 +h1,15937:6630773,47279633:25952256,0,0 ) ] -(1,15939:4262630,4025873:0,0,0 -[1,15939:-473656,4025873:0,0,0 -(1,15939:-473656,-710413:0,0,0 -(1,15939:-473656,-710413:0,0,0 -g1,15939:-473656,-710413 +(1,15937:4262630,4025873:0,0,0 +[1,15937:-473656,4025873:0,0,0 +(1,15937:-473656,-710413:0,0,0 +(1,15937:-473656,-710413:0,0,0 +g1,15937:-473656,-710413 ) -g1,15939:-473656,-710413 +g1,15937:-473656,-710413 ) ] ) ] -!15245 -}255 -Input:2688:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!15278 +}256 +Input:2692:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{256 -[1,15992:4262630,47279633:28320399,43253760,0 -(1,15992:4262630,4025873:0,0,0 -[1,15992:-473656,4025873:0,0,0 -(1,15992:-473656,-710413:0,0,0 -(1,15992:-473656,-644877:0,0,0 -k1,15992:-473656,-644877:-65536 +{257 +[1,15990:4262630,47279633:28320399,43253760,0 +(1,15990:4262630,4025873:0,0,0 +[1,15990:-473656,4025873:0,0,0 +(1,15990:-473656,-710413:0,0,0 +(1,15990:-473656,-644877:0,0,0 +k1,15990:-473656,-644877:-65536 ) -(1,15992:-473656,4736287:0,0,0 -k1,15992:-473656,4736287:5209943 +(1,15990:-473656,4736287:0,0,0 +k1,15990:-473656,4736287:5209943 ) -g1,15992:-473656,-710413 +g1,15990:-473656,-710413 ) ] ) -[1,15992:6630773,47279633:25952256,43253760,0 -[1,15992:6630773,4812305:25952256,786432,0 -(1,15992:6630773,4812305:25952256,505283,134348 -(1,15992:6630773,4812305:25952256,505283,134348 -g1,15992:3078558,4812305 -[1,15992:3078558,4812305:0,0,0 -(1,15992:3078558,2439708:0,1703936,0 -k1,15992:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,15992:2537886,2439708:1179648,16384,0 +[1,15990:6630773,47279633:25952256,43253760,0 +[1,15990:6630773,4812305:25952256,786432,0 +(1,15990:6630773,4812305:25952256,505283,134348 +(1,15990:6630773,4812305:25952256,505283,134348 +g1,15990:3078558,4812305 +[1,15990:3078558,4812305:0,0,0 +(1,15990:3078558,2439708:0,1703936,0 +k1,15990:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15990:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,15992:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15990:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,15992:3078558,4812305:0,0,0 -(1,15992:3078558,2439708:0,1703936,0 -g1,15992:29030814,2439708 -g1,15992:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,15992:36151628,1915420:16384,1179648,0 +[1,15990:3078558,4812305:0,0,0 +(1,15990:3078558,2439708:0,1703936,0 +g1,15990:29030814,2439708 +g1,15990:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15990:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,15992:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15990:37855564,2439708:1179648,16384,0 ) ) -k1,15992:3078556,2439708:-34777008 +k1,15990:3078556,2439708:-34777008 ) ] -[1,15992:3078558,4812305:0,0,0 -(1,15992:3078558,49800853:0,16384,2228224 -k1,15992:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,15992:2537886,49800853:1179648,16384,0 +[1,15990:3078558,4812305:0,0,0 +(1,15990:3078558,49800853:0,16384,2228224 +k1,15990:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15990:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,15992:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15990:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,15992:3078558,4812305:0,0,0 -(1,15992:3078558,49800853:0,16384,2228224 -g1,15992:29030814,49800853 -g1,15992:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,15992:36151628,51504789:16384,1179648,0 +[1,15990:3078558,4812305:0,0,0 +(1,15990:3078558,49800853:0,16384,2228224 +g1,15990:29030814,49800853 +g1,15990:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15990:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 -) -] -) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,15992:37855564,49800853:1179648,16384,0 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 +) +] +) +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15990:37855564,49800853:1179648,16384,0 ) ) -k1,15992:3078556,49800853:-34777008 +k1,15990:3078556,49800853:-34777008 ) -] -g1,15992:6630773,4812305 -g1,15992:6630773,4812305 -g1,15992:9205682,4812305 -g1,15992:11988340,4812305 -k1,15992:31387652,4812305:19399312 -) -) -] -[1,15992:6630773,45706769:25952256,40108032,0 -(1,15992:6630773,45706769:25952256,40108032,0 -(1,15992:6630773,45706769:0,0,0 -g1,15992:6630773,45706769 -) -[1,15992:6630773,45706769:25952256,40108032,0 -(1,15937:6630773,6254097:25952256,513147,134348 -h1,15936:6630773,6254097:983040,0,0 -k1,15936:8791057,6254097:223695 -k1,15936:10119034,6254097:223695 -k1,15936:11435214,6254097:223695 -(1,15936:11435214,6254097:0,452978,115847 -r1,15992:14255463,6254097:2820249,568825,115847 -k1,15936:11435214,6254097:-2820249 -) -(1,15936:11435214,6254097:2820249,452978,115847 -k1,15936:11435214,6254097:3277 -h1,15936:14252186,6254097:0,411205,112570 -) -k1,15936:14479158,6254097:223695 -k1,15936:15354281,6254097:223695 -k1,15936:17062366,6254097:223695 -k1,15936:18305146,6254097:223695 -k1,15936:21014622,6254097:223695 -k1,15936:21897609,6254097:223695 -k1,15936:24628056,6254097:223695 -k1,15936:25613279,6254097:223695 -k1,15936:28251320,6254097:223695 -k1,15936:30902469,6254097:223695 -k1,15936:31812326,6254097:223695 -k1,15936:32583029,6254097:0 -) -(1,15937:6630773,7119177:25952256,513147,134348 -g1,15936:9902330,7119177 -g1,15936:11120644,7119177 -g1,15936:13675892,7119177 -g1,15936:16360902,7119177 -g1,15936:17219423,7119177 -g1,15936:19925404,7119177 -g1,15936:20807518,7119177 -g1,15936:22025832,7119177 -g1,15936:24234395,7119177 -g1,15936:25046386,7119177 -g1,15936:27131086,7119177 -g1,15936:27981743,7119177 -g1,15936:29186294,7119177 -g1,15936:30404608,7119177 -k1,15937:32583029,7119177:886051 -g1,15937:32583029,7119177 -) -v1,15939:6630773,7804032:0,393216,0 -(1,15955:6630773,15021393:25952256,7610577,196608 -g1,15955:6630773,15021393 -g1,15955:6630773,15021393 -g1,15955:6434165,15021393 -(1,15955:6434165,15021393:0,7610577,196608 -r1,15992:32779637,15021393:26345472,7807185,196608 -k1,15955:6434165,15021393:-26345472 -) -(1,15955:6434165,15021393:26345472,7610577,196608 -[1,15955:6630773,15021393:25952256,7413969,0 -(1,15941:6630773,8031863:25952256,424439,86428 -(1,15940:6630773,8031863:0,0,0 -g1,15940:6630773,8031863 -g1,15940:6630773,8031863 -g1,15940:6303093,8031863 -(1,15940:6303093,8031863:0,0,0 -) -g1,15940:6630773,8031863 -) -k1,15941:6630773,8031863:0 -g1,15941:10282267,8031863 -g1,15941:10946175,8031863 -g1,15941:11610083,8031863 -h1,15941:12273991,8031863:0,0,0 -k1,15941:32583029,8031863:20309038 -g1,15941:32583029,8031863 -) -(1,15954:6630773,8847790:25952256,424439,112852 -(1,15943:6630773,8847790:0,0,0 -g1,15943:6630773,8847790 -g1,15943:6630773,8847790 -g1,15943:6303093,8847790 -(1,15943:6303093,8847790:0,0,0 -) -g1,15943:6630773,8847790 -) -k1,15954:7596445,8847790:301764 -k1,15954:7898210,8847790:301765 -k1,15954:8199974,8847790:301764 -k1,15954:8501738,8847790:301764 -k1,15954:8803502,8847790:301764 -k1,15954:9105267,8847790:301765 -k1,15954:9407031,8847790:301764 -k1,15954:9708795,8847790:301764 -k1,15954:10010559,8847790:301764 -k1,15954:10312324,8847790:301765 -k1,15954:12605812,8847790:301764 -k1,15954:12907576,8847790:301764 -k1,15954:13209340,8847790:301764 -k1,15954:13511105,8847790:301765 -k1,15954:13812869,8847790:301764 -k1,15954:14114633,8847790:301764 -k1,15954:14416397,8847790:301764 -k1,15954:17705747,8847790:301765 -k1,15954:18007511,8847790:301764 -k1,15954:18309275,8847790:301764 -k1,15954:18611039,8847790:301764 -k1,15954:18912804,8847790:301765 -k1,15954:19214568,8847790:301764 -k1,15954:19516332,8847790:301764 -k1,15954:19818097,8847790:301765 -k1,15954:22775492,8847790:301764 -k1,15954:23077256,8847790:301764 -k1,15954:23379020,8847790:301764 -k1,15954:23680785,8847790:301765 -k1,15954:23982549,8847790:301764 -k1,15954:24284313,8847790:301764 -k1,15954:24586077,8847790:301764 -k1,15954:24887842,8847790:301765 -k1,15954:25189606,8847790:301764 -k1,15954:25491370,8847790:301764 -k1,15954:27784858,8847790:301764 -k1,15954:28086623,8847790:301765 -k1,15954:28388387,8847790:301764 -k1,15954:28690151,8847790:301764 -k1,15954:28991915,8847790:301764 -k1,15954:29293680,8847790:301765 -k1,15954:29595444,8847790:301764 -h1,15954:32583029,8847790:0,0,0 -k1,15954:32583029,8847790:0 -k1,15954:32583029,8847790:0 -) -(1,15954:6630773,9532645:25952256,407923,9908 -h1,15954:6630773,9532645:0,0,0 -k1,15954:7609729,9532645:315048 -k1,15954:7924776,9532645:315047 -k1,15954:8239824,9532645:315048 -k1,15954:8554872,9532645:315048 -k1,15954:8869920,9532645:315048 -k1,15954:9184967,9532645:315047 -k1,15954:9500015,9532645:315048 -k1,15954:9815063,9532645:315048 -k1,15954:10130110,9532645:315047 -k1,15954:10445158,9532645:315048 -k1,15954:10760206,9532645:315048 -k1,15954:11075253,9532645:315047 -k1,15954:11390301,9532645:315048 -k1,15954:11705349,9532645:315048 -k1,15954:12020397,9532645:315048 -k1,15954:12667398,9532645:315047 -k1,15954:12982446,9532645:315048 -k1,15954:13297494,9532645:315048 -k1,15954:13612541,9532645:315047 -k1,15954:13927589,9532645:315048 -k1,15954:14242637,9532645:315048 -k1,15954:14557685,9532645:315048 -k1,15954:14872732,9532645:315047 -k1,15954:15187780,9532645:315048 -k1,15954:15502828,9532645:315048 -k1,15954:15817875,9532645:315047 -k1,15954:16132923,9532645:315048 -k1,15954:16447971,9532645:315048 -k1,15954:16763018,9532645:315047 -k1,15954:17078066,9532645:315048 -k1,15954:17725068,9532645:315048 -k1,15954:18040116,9532645:315048 -k1,15954:18355163,9532645:315047 -k1,15954:18670211,9532645:315048 -k1,15954:18985259,9532645:315048 -k1,15954:19300306,9532645:315047 -k1,15954:19615354,9532645:315048 -k1,15954:19930402,9532645:315048 -k1,15954:20245450,9532645:315048 -k1,15954:20560497,9532645:315047 -k1,15954:20875545,9532645:315048 -k1,15954:21190593,9532645:315048 -k1,15954:21505640,9532645:315047 -k1,15954:21820688,9532645:315048 -k1,15954:22135736,9532645:315048 -k1,15954:22782737,9532645:315047 -k1,15954:23097785,9532645:315048 -k1,15954:23412833,9532645:315048 -k1,15954:23727881,9532645:315048 -k1,15954:24042928,9532645:315047 -k1,15954:24357976,9532645:315048 -k1,15954:24673024,9532645:315048 -k1,15954:24988071,9532645:315047 -k1,15954:25303119,9532645:315048 -k1,15954:25618167,9532645:315048 -k1,15954:25933215,9532645:315048 -k1,15954:26248262,9532645:315047 -k1,15954:26563310,9532645:315048 -k1,15954:26878358,9532645:315048 -k1,15954:27193405,9532645:315047 -k1,15954:27840407,9532645:315048 -k1,15954:28155455,9532645:315048 -k1,15954:28470502,9532645:315047 -k1,15954:28785550,9532645:315048 -k1,15954:29100598,9532645:315048 -k1,15954:29415646,9532645:315048 -k1,15954:29730693,9532645:315047 -k1,15954:30045741,9532645:315048 -k1,15954:30360789,9532645:315048 -k1,15954:30675836,9532645:315047 -k1,15954:30990884,9532645:315048 -k1,15954:31305932,9532645:315048 -k1,15954:31620980,9532645:315048 -k1,15954:31936027,9532645:315047 -k1,15954:32251075,9532645:315048 -h1,15954:32583029,9532645:0,0,0 -k1,15954:32583029,9532645:0 -k1,15954:32583029,9532645:0 -) -(1,15954:6630773,10217500:25952256,424439,112852 -h1,15954:6630773,10217500:0,0,0 -k1,15954:7595709,10217500:301028 -k1,15954:7896737,10217500:301028 -k1,15954:8197765,10217500:301028 -k1,15954:8498793,10217500:301028 -k1,15954:8799821,10217500:301028 -k1,15954:9100848,10217500:301027 -k1,15954:9401876,10217500:301028 -k1,15954:9702904,10217500:301028 -k1,15954:10003932,10217500:301028 -k1,15954:12628638,10217500:301028 -k1,15954:12929666,10217500:301028 -k1,15954:13230694,10217500:301028 -k1,15954:13531722,10217500:301028 -k1,15954:13832750,10217500:301028 -k1,15954:14133778,10217500:301028 -k1,15954:17754344,10217500:301027 -k1,15954:18055372,10217500:301028 -k1,15954:18356400,10217500:301028 -k1,15954:18657428,10217500:301028 -k1,15954:18958456,10217500:301028 -k1,15954:19259484,10217500:301028 -k1,15954:19560512,10217500:301028 -k1,15954:19861540,10217500:301028 -k1,15954:20162568,10217500:301028 -k1,15954:20463596,10217500:301028 -k1,15954:22756347,10217500:301027 -k1,15954:23057375,10217500:301028 -k1,15954:23358403,10217500:301028 -k1,15954:23659431,10217500:301028 -k1,15954:23960459,10217500:301028 -k1,15954:24261487,10217500:301028 -k1,15954:24562515,10217500:301028 -k1,15954:27851128,10217500:301028 -k1,15954:28152156,10217500:301028 -k1,15954:28453184,10217500:301028 -k1,15954:28754211,10217500:301027 -k1,15954:29055239,10217500:301028 -k1,15954:29356267,10217500:301028 -k1,15954:29657295,10217500:301028 -k1,15954:29958323,10217500:301028 -k1,15954:30259351,10217500:301028 -h1,15954:32583029,10217500:0,0,0 -k1,15954:32583029,10217500:0 -k1,15954:32583029,10217500:0 -) -(1,15954:6630773,10902355:25952256,407923,9908 -h1,15954:6630773,10902355:0,0,0 -k1,15954:7609729,10902355:315048 -k1,15954:7924776,10902355:315047 -k1,15954:8239824,10902355:315048 -k1,15954:8554872,10902355:315048 -k1,15954:8869920,10902355:315048 -k1,15954:9184967,10902355:315047 -k1,15954:9500015,10902355:315048 -k1,15954:9815063,10902355:315048 -k1,15954:10130110,10902355:315047 -k1,15954:10445158,10902355:315048 -k1,15954:10760206,10902355:315048 -k1,15954:11075253,10902355:315047 -k1,15954:11390301,10902355:315048 -k1,15954:11705349,10902355:315048 -k1,15954:12020397,10902355:315048 -k1,15954:12667398,10902355:315047 -k1,15954:12982446,10902355:315048 -k1,15954:13297494,10902355:315048 -k1,15954:13612541,10902355:315047 -k1,15954:13927589,10902355:315048 -k1,15954:14242637,10902355:315048 -k1,15954:14557685,10902355:315048 -k1,15954:14872732,10902355:315047 -k1,15954:15187780,10902355:315048 -k1,15954:15502828,10902355:315048 -k1,15954:15817875,10902355:315047 -k1,15954:16132923,10902355:315048 -k1,15954:16447971,10902355:315048 -k1,15954:16763018,10902355:315047 -k1,15954:17078066,10902355:315048 -k1,15954:17725068,10902355:315048 -k1,15954:18040116,10902355:315048 -k1,15954:18355163,10902355:315047 -k1,15954:18670211,10902355:315048 -k1,15954:18985259,10902355:315048 -k1,15954:19300306,10902355:315047 -k1,15954:19615354,10902355:315048 -k1,15954:19930402,10902355:315048 -k1,15954:20245450,10902355:315048 -k1,15954:20560497,10902355:315047 -k1,15954:20875545,10902355:315048 -k1,15954:21190593,10902355:315048 -k1,15954:21505640,10902355:315047 -k1,15954:21820688,10902355:315048 -k1,15954:22135736,10902355:315048 -k1,15954:22782737,10902355:315047 -k1,15954:23097785,10902355:315048 -k1,15954:23412833,10902355:315048 -k1,15954:23727881,10902355:315048 -k1,15954:24042928,10902355:315047 -k1,15954:24357976,10902355:315048 -k1,15954:24673024,10902355:315048 -k1,15954:24988071,10902355:315047 -k1,15954:25303119,10902355:315048 -k1,15954:25618167,10902355:315048 -k1,15954:25933215,10902355:315048 -k1,15954:26248262,10902355:315047 -k1,15954:26563310,10902355:315048 -k1,15954:26878358,10902355:315048 -k1,15954:27193405,10902355:315047 -k1,15954:27840407,10902355:315048 -k1,15954:28155455,10902355:315048 -k1,15954:28470502,10902355:315047 -k1,15954:28785550,10902355:315048 -k1,15954:29100598,10902355:315048 -k1,15954:29415646,10902355:315048 -k1,15954:29730693,10902355:315047 -k1,15954:30045741,10902355:315048 -k1,15954:30360789,10902355:315048 -k1,15954:30675836,10902355:315047 -k1,15954:30990884,10902355:315048 -k1,15954:31305932,10902355:315048 -k1,15954:31620980,10902355:315048 -k1,15954:31936027,10902355:315047 -k1,15954:32251075,10902355:315048 -h1,15954:32583029,10902355:0,0,0 -k1,15954:32583029,10902355:0 -k1,15954:32583029,10902355:0 -) -(1,15954:6630773,11587210:25952256,431045,106246 -h1,15954:6630773,11587210:0,0,0 -k1,15954:7594936,11587210:300255 -k1,15954:9223006,11587210:300254 -k1,15954:10187169,11587210:300255 -k1,15954:12811102,11587210:300255 -k1,15954:13111357,11587210:300255 -k1,15954:13411611,11587210:300254 -k1,15954:13711866,11587210:300255 -k1,15954:14012121,11587210:300255 -k1,15954:14312375,11587210:300254 -k1,15954:14612630,11587210:300255 -k1,15954:14912885,11587210:300255 -k1,15954:15213140,11587210:300255 -k1,15954:15513394,11587210:300254 -k1,15954:17805373,11587210:300255 -k1,15954:18105628,11587210:300255 -k1,15954:18405883,11587210:300255 -k1,15954:18706137,11587210:300254 -k1,15954:19006392,11587210:300255 -k1,15954:19306647,11587210:300255 -k1,15954:19606901,11587210:300254 -k1,15954:19907156,11587210:300255 -k1,15954:20207411,11587210:300255 -k1,15954:20507666,11587210:300255 -k1,15954:20807920,11587210:300254 -k1,15954:22767945,11587210:300255 -k1,15954:23068200,11587210:300255 -k1,15954:23368455,11587210:300255 -k1,15954:23668709,11587210:300254 -k1,15954:23968964,11587210:300255 -k1,15954:24269219,11587210:300255 -k1,15954:24569473,11587210:300254 -k1,15954:24869728,11587210:300255 -k1,15954:25169983,11587210:300255 -k1,15954:25470238,11587210:300255 -k1,15954:27762216,11587210:300254 -k1,15954:28062471,11587210:300255 -k1,15954:28362726,11587210:300255 -k1,15954:28662980,11587210:300254 -k1,15954:28963235,11587210:300255 -k1,15954:29263490,11587210:300255 -h1,15954:32583029,11587210:0,0,0 -k1,15954:32583029,11587210:0 -k1,15954:32583029,11587210:0 -) -(1,15954:6630773,12272065:25952256,407923,9908 -h1,15954:6630773,12272065:0,0,0 -k1,15954:7609729,12272065:315048 -k1,15954:7924776,12272065:315047 -k1,15954:8239824,12272065:315048 -k1,15954:8554872,12272065:315048 -k1,15954:8869920,12272065:315048 -k1,15954:9184967,12272065:315047 -k1,15954:9500015,12272065:315048 -k1,15954:9815063,12272065:315048 -k1,15954:10130110,12272065:315047 -k1,15954:10445158,12272065:315048 -k1,15954:10760206,12272065:315048 -k1,15954:11075253,12272065:315047 -k1,15954:11390301,12272065:315048 -k1,15954:11705349,12272065:315048 -k1,15954:12020397,12272065:315048 -k1,15954:12667398,12272065:315047 -k1,15954:12982446,12272065:315048 -k1,15954:13297494,12272065:315048 -k1,15954:13612541,12272065:315047 -k1,15954:13927589,12272065:315048 -k1,15954:14242637,12272065:315048 -k1,15954:14557685,12272065:315048 -k1,15954:14872732,12272065:315047 -k1,15954:15187780,12272065:315048 -k1,15954:15502828,12272065:315048 -k1,15954:15817875,12272065:315047 -k1,15954:16132923,12272065:315048 -k1,15954:16447971,12272065:315048 -k1,15954:16763018,12272065:315047 -k1,15954:17078066,12272065:315048 -k1,15954:17725068,12272065:315048 -k1,15954:18040116,12272065:315048 -k1,15954:18355163,12272065:315047 -k1,15954:18670211,12272065:315048 -k1,15954:18985259,12272065:315048 -k1,15954:19300306,12272065:315047 -k1,15954:19615354,12272065:315048 -k1,15954:19930402,12272065:315048 -k1,15954:20245450,12272065:315048 -k1,15954:20560497,12272065:315047 -k1,15954:20875545,12272065:315048 -k1,15954:21190593,12272065:315048 -k1,15954:21505640,12272065:315047 -k1,15954:21820688,12272065:315048 -k1,15954:22135736,12272065:315048 -k1,15954:22782737,12272065:315047 -k1,15954:23097785,12272065:315048 -k1,15954:23412833,12272065:315048 -k1,15954:23727881,12272065:315048 -k1,15954:24042928,12272065:315047 -k1,15954:24357976,12272065:315048 -k1,15954:24673024,12272065:315048 -k1,15954:24988071,12272065:315047 -k1,15954:25303119,12272065:315048 -k1,15954:25618167,12272065:315048 -k1,15954:25933215,12272065:315048 -k1,15954:26248262,12272065:315047 -k1,15954:26563310,12272065:315048 -k1,15954:26878358,12272065:315048 -k1,15954:27193405,12272065:315047 -k1,15954:27840407,12272065:315048 -k1,15954:28155455,12272065:315048 -k1,15954:28470502,12272065:315047 -k1,15954:28785550,12272065:315048 -k1,15954:29100598,12272065:315048 -k1,15954:29415646,12272065:315048 -k1,15954:29730693,12272065:315047 -k1,15954:30045741,12272065:315048 -k1,15954:30360789,12272065:315048 -k1,15954:30675836,12272065:315047 -k1,15954:30990884,12272065:315048 -k1,15954:31305932,12272065:315048 -k1,15954:31620980,12272065:315048 -k1,15954:31936027,12272065:315047 -k1,15954:32251075,12272065:315048 -h1,15954:32583029,12272065:0,0,0 -k1,15954:32583029,12272065:0 -k1,15954:32583029,12272065:0 -) -(1,15954:6630773,12956920:25952256,424439,8257 -h1,15954:6630773,12956920:0,0,0 -k1,15954:7601773,12956920:307092 -k1,15954:7908865,12956920:307092 -k1,15954:8215956,12956920:307091 -k1,15954:8523048,12956920:307092 -k1,15954:8830140,12956920:307092 -k1,15954:9137232,12956920:307092 -k1,15954:9444324,12956920:307092 -k1,15954:9751416,12956920:307092 -k1,15954:10058507,12956920:307091 -k1,15954:10365599,12956920:307092 -k1,15954:10672691,12956920:307092 -k1,15954:12639553,12956920:307092 -k1,15954:12946645,12956920:307092 -k1,15954:13253737,12956920:307092 -k1,15954:13560828,12956920:307091 -k1,15954:13867920,12956920:307092 -k1,15954:14175012,12956920:307092 -k1,15954:14482104,12956920:307092 -k1,15954:14789196,12956920:307092 -k1,15954:15096287,12956920:307091 -k1,15954:15403379,12956920:307092 -k1,15954:17702195,12956920:307092 -k1,15954:18009287,12956920:307092 -k1,15954:18316379,12956920:307092 -k1,15954:18623471,12956920:307092 -k1,15954:18930562,12956920:307091 -k1,15954:19237654,12956920:307092 -k1,15954:19544746,12956920:307092 -k1,15954:19851838,12956920:307092 -k1,15954:20158930,12956920:307092 -k1,15954:20466021,12956920:307091 -k1,15954:20773113,12956920:307092 -k1,15954:22739975,12956920:307092 -k1,15954:23047067,12956920:307092 -k1,15954:23354159,12956920:307092 -k1,15954:23661251,12956920:307092 -k1,15954:23968342,12956920:307091 -k1,15954:24275434,12956920:307092 -k1,15954:24582526,12956920:307092 -k1,15954:24889618,12956920:307092 -k1,15954:25196710,12956920:307092 -k1,15954:25503802,12956920:307092 -k1,15954:25810893,12956920:307091 -k1,15954:26117985,12956920:307092 -k1,15954:27752893,12956920:307092 -k1,15954:28059985,12956920:307092 -k1,15954:28367077,12956920:307092 -k1,15954:28674168,12956920:307091 -k1,15954:28981260,12956920:307092 -k1,15954:29288352,12956920:307092 -k1,15954:29595444,12956920:307092 -h1,15954:32583029,12956920:0,0,0 -k1,15954:32583029,12956920:0 -k1,15954:32583029,12956920:0 -) -(1,15954:6630773,13641775:25952256,407923,9908 -h1,15954:6630773,13641775:0,0,0 -k1,15954:7609729,13641775:315048 -k1,15954:7924776,13641775:315047 -k1,15954:8239824,13641775:315048 -k1,15954:8554872,13641775:315048 -k1,15954:8869920,13641775:315048 -k1,15954:9184967,13641775:315047 -k1,15954:9500015,13641775:315048 -k1,15954:9815063,13641775:315048 -k1,15954:10130110,13641775:315047 -k1,15954:10445158,13641775:315048 -k1,15954:10760206,13641775:315048 -k1,15954:11075253,13641775:315047 -k1,15954:11390301,13641775:315048 -k1,15954:11705349,13641775:315048 -k1,15954:12020397,13641775:315048 -k1,15954:12667398,13641775:315047 -k1,15954:12982446,13641775:315048 -k1,15954:13297494,13641775:315048 -k1,15954:13612541,13641775:315047 -k1,15954:13927589,13641775:315048 -k1,15954:14242637,13641775:315048 -k1,15954:14557685,13641775:315048 -k1,15954:14872732,13641775:315047 -k1,15954:15187780,13641775:315048 -k1,15954:15502828,13641775:315048 -k1,15954:15817875,13641775:315047 -k1,15954:16132923,13641775:315048 -k1,15954:16447971,13641775:315048 -k1,15954:16763018,13641775:315047 -k1,15954:17078066,13641775:315048 -k1,15954:17725068,13641775:315048 -k1,15954:18040116,13641775:315048 -k1,15954:18355163,13641775:315047 -k1,15954:18670211,13641775:315048 -k1,15954:18985259,13641775:315048 -k1,15954:19300306,13641775:315047 -k1,15954:19615354,13641775:315048 -k1,15954:19930402,13641775:315048 -k1,15954:20245450,13641775:315048 -k1,15954:20560497,13641775:315047 -k1,15954:20875545,13641775:315048 -k1,15954:21190593,13641775:315048 -k1,15954:21505640,13641775:315047 -k1,15954:21820688,13641775:315048 -k1,15954:22135736,13641775:315048 -k1,15954:22782737,13641775:315047 -k1,15954:23097785,13641775:315048 -k1,15954:23412833,13641775:315048 -k1,15954:23727881,13641775:315048 -k1,15954:24042928,13641775:315047 -k1,15954:24357976,13641775:315048 -k1,15954:24673024,13641775:315048 -k1,15954:24988071,13641775:315047 -k1,15954:25303119,13641775:315048 -k1,15954:25618167,13641775:315048 -k1,15954:25933215,13641775:315048 -k1,15954:26248262,13641775:315047 -k1,15954:26563310,13641775:315048 -k1,15954:26878358,13641775:315048 -k1,15954:27193405,13641775:315047 -k1,15954:27840407,13641775:315048 -k1,15954:28155455,13641775:315048 -k1,15954:28470502,13641775:315047 -k1,15954:28785550,13641775:315048 -k1,15954:29100598,13641775:315048 -k1,15954:29415646,13641775:315048 -k1,15954:29730693,13641775:315047 -k1,15954:30045741,13641775:315048 -k1,15954:30360789,13641775:315048 -k1,15954:30675836,13641775:315047 -k1,15954:30990884,13641775:315048 -k1,15954:31305932,13641775:315048 -k1,15954:31620980,13641775:315048 -k1,15954:31936027,13641775:315047 -k1,15954:32251075,13641775:315048 -h1,15954:32583029,13641775:0,0,0 -k1,15954:32583029,13641775:0 -k1,15954:32583029,13641775:0 -) -(1,15954:6630773,14326630:25952256,424439,6605 -h1,15954:6630773,14326630:0,0,0 -g1,15954:7626635,14326630 -g1,15954:7958589,14326630 -g1,15954:8290543,14326630 -g1,15954:8622497,14326630 -g1,15954:8954451,14326630 -g1,15954:9286405,14326630 -g1,15954:9618359,14326630 -g1,15954:9950313,14326630 -g1,15954:10282267,14326630 -g1,15954:10614221,14326630 -h1,15954:12605945,14326630:0,0,0 -k1,15954:32583029,14326630:19977084 -g1,15954:32583029,14326630 -) -(1,15954:6630773,15011485:25952256,407923,9908 -h1,15954:6630773,15011485:0,0,0 -g1,15954:7626635,15011485 -g1,15954:7958589,15011485 -g1,15954:8290543,15011485 -g1,15954:8622497,15011485 -g1,15954:8954451,15011485 -g1,15954:9286405,15011485 -g1,15954:9618359,15011485 -g1,15954:9950313,15011485 -g1,15954:10282267,15011485 -g1,15954:10614221,15011485 -g1,15954:10946175,15011485 -g1,15954:11278129,15011485 -g1,15954:11610083,15011485 -g1,15954:11942037,15011485 -g1,15954:12273991,15011485 -h1,15954:12605945,15011485:0,0,0 -k1,15954:32583029,15011485:19977084 -g1,15954:32583029,15011485 -) -] -) -g1,15955:32583029,15021393 -g1,15955:6630773,15021393 -g1,15955:6630773,15021393 -g1,15955:32583029,15021393 -g1,15955:32583029,15021393 -) -h1,15955:6630773,15218001:0,0,0 -(1,15960:6630773,15902856:25952256,513147,134348 -h1,15958:6630773,15902856:983040,0,0 -k1,15958:8992124,15902856:181624 -k1,15958:11133275,15902856:181625 -k1,15958:14093626,15902856:181624 -k1,15958:15036779,15902856:181625 -(1,15958:15036779,15902856:0,452978,115847 -r1,15992:17857028,15902856:2820249,568825,115847 -k1,15958:15036779,15902856:-2820249 -) -(1,15958:15036779,15902856:2820249,452978,115847 -k1,15958:15036779,15902856:3277 -h1,15958:17853751,15902856:0,411205,112570 -) -k1,15958:18038652,15902856:181624 -k1,15958:20922326,15902856:181625 -k1,15958:23221418,15902856:181624 -k1,15958:24062335,15902856:181625 -k1,15958:25263044,15902856:181624 -k1,15958:27287541,15902856:181625 -k1,15958:28128457,15902856:181624 -k1,15958:29329167,15902856:181625 -k1,15958:32583029,15902856:0 -) -(1,15960:6630773,16587711:25952256,513147,134348 -g1,15958:8689259,16587711 -g1,15958:10900443,16587711 -g1,15958:13375082,16587711 -g1,15958:17830219,16587711 -g1,15958:19220893,16587711 -g1,15958:22118239,16587711 -k1,15960:32583029,16587711:10464790 -g1,15960:32583029,16587711 -) -v1,15960:6630773,17272566:0,393216,0 -(1,15975:6630773,23881592:25952256,7002242,196608 -g1,15975:6630773,23881592 -g1,15975:6630773,23881592 -g1,15975:6434165,23881592 -(1,15975:6434165,23881592:0,7002242,196608 -r1,15992:32779637,23881592:26345472,7198850,196608 -k1,15975:6434165,23881592:-26345472 -) -(1,15975:6434165,23881592:26345472,7002242,196608 -[1,15975:6630773,23881592:25952256,6805634,0 -(1,15962:6630773,17500397:25952256,424439,79822 -(1,15961:6630773,17500397:0,0,0 -g1,15961:6630773,17500397 -g1,15961:6630773,17500397 -g1,15961:6303093,17500397 -(1,15961:6303093,17500397:0,0,0 -) -g1,15961:6630773,17500397 -) -k1,15962:6630773,17500397:0 -h1,15962:8954451,17500397:0,0,0 -k1,15962:32583029,17500397:23628578 -g1,15962:32583029,17500397 -) -(1,15974:6630773,18316324:25952256,431045,6605 -(1,15964:6630773,18316324:0,0,0 -g1,15964:6630773,18316324 -g1,15964:6630773,18316324 -g1,15964:6303093,18316324 -(1,15964:6303093,18316324:0,0,0 -) -g1,15964:6630773,18316324 -) -g1,15974:7626635,18316324 -g1,15974:9286405,18316324 -g1,15974:10282267,18316324 -h1,15974:10614221,18316324:0,0,0 -k1,15974:32583029,18316324:21968808 -g1,15974:32583029,18316324 -) -(1,15974:6630773,19001179:25952256,431045,112852 -h1,15974:6630773,19001179:0,0,0 -g1,15974:7626635,19001179 -g1,15974:7958589,19001179 -g1,15974:8622497,19001179 -g1,15974:10614221,19001179 -g1,15974:10946175,19001179 -g1,15974:11278129,19001179 -g1,15974:11610083,19001179 -g1,15974:11942037,19001179 -g1,15974:12273991,19001179 -g1,15974:12937899,19001179 -g1,15974:14265715,19001179 -g1,15974:16589393,19001179 -g1,15974:18249163,19001179 -g1,15974:19245025,19001179 -g1,15974:20240887,19001179 -g1,15974:21236749,19001179 -g1,15974:22232611,19001179 -g1,15974:23560427,19001179 -g1,15974:24888243,19001179 -g1,15974:25884105,19001179 -g1,15974:26879967,19001179 -g1,15974:27875829,19001179 -g1,15974:29203645,19001179 -h1,15974:30199507,19001179:0,0,0 -k1,15974:32583029,19001179:2383522 -g1,15974:32583029,19001179 -) -(1,15974:6630773,19686034:25952256,431045,112852 -h1,15974:6630773,19686034:0,0,0 -g1,15974:7626635,19686034 -g1,15974:7958589,19686034 -g1,15974:8622497,19686034 -g1,15974:10946175,19686034 -g1,15974:11278129,19686034 -g1,15974:11610083,19686034 -g1,15974:11942037,19686034 -g1,15974:12273991,19686034 -g1,15974:12937899,19686034 -g1,15974:14265715,19686034 -g1,15974:16589393,19686034 -g1,15974:17917209,19686034 -g1,15974:19245025,19686034 -g1,15974:20572841,19686034 -g1,15974:21900657,19686034 -g1,15974:23228473,19686034 -g1,15974:24556289,19686034 -g1,15974:25884105,19686034 -g1,15974:27211921,19686034 -g1,15974:28539737,19686034 -g1,15974:29867553,19686034 -h1,15974:30863415,19686034:0,0,0 -k1,15974:32583029,19686034:1719614 -g1,15974:32583029,19686034 -) -(1,15974:6630773,20370889:25952256,431045,79822 -h1,15974:6630773,20370889:0,0,0 -g1,15974:7626635,20370889 -g1,15974:7958589,20370889 -g1,15974:8622497,20370889 -g1,15974:10614221,20370889 -g1,15974:10946175,20370889 -g1,15974:11278129,20370889 -g1,15974:11610083,20370889 -g1,15974:11942037,20370889 -g1,15974:12273991,20370889 -g1,15974:12937899,20370889 -g1,15974:14265715,20370889 -g1,15974:16589393,20370889 -g1,15974:17253301,20370889 -g1,15974:18249163,20370889 -g1,15974:18913071,20370889 -g1,15974:19908933,20370889 -g1,15974:20904795,20370889 -g1,15974:21900657,20370889 -g1,15974:22564565,20370889 -g1,15974:23560427,20370889 -g1,15974:24556289,20370889 -g1,15974:25220197,20370889 -h1,15974:26216059,20370889:0,0,0 -k1,15974:32583029,20370889:6366970 -g1,15974:32583029,20370889 -) -(1,15974:6630773,21055744:25952256,431045,79822 -h1,15974:6630773,21055744:0,0,0 -g1,15974:7626635,21055744 -g1,15974:7958589,21055744 -g1,15974:8622497,21055744 -g1,15974:10946175,21055744 -g1,15974:11278129,21055744 -g1,15974:11610083,21055744 -g1,15974:11942037,21055744 -g1,15974:12273991,21055744 -g1,15974:12937899,21055744 -g1,15974:14265715,21055744 -g1,15974:16589393,21055744 -g1,15974:19576978,21055744 -g1,15974:23560425,21055744 -g1,15974:27211918,21055744 -g1,15974:30199503,21055744 -h1,15974:31195365,21055744:0,0,0 -k1,15974:32583029,21055744:1387664 -g1,15974:32583029,21055744 -) -(1,15974:6630773,21740599:25952256,431045,106246 -h1,15974:6630773,21740599:0,0,0 -g1,15974:7626635,21740599 -g1,15974:7958589,21740599 -g1,15974:8622497,21740599 -g1,15974:10946175,21740599 -g1,15974:11278129,21740599 -g1,15974:11610083,21740599 -g1,15974:11942037,21740599 -g1,15974:12273991,21740599 -g1,15974:12937899,21740599 -g1,15974:14265715,21740599 -h1,15974:17585254,21740599:0,0,0 -k1,15974:32583029,21740599:14997775 -g1,15974:32583029,21740599 -) -(1,15974:6630773,22425454:25952256,431045,112852 -h1,15974:6630773,22425454:0,0,0 -g1,15974:7626635,22425454 -g1,15974:7958589,22425454 -g1,15974:8622497,22425454 -g1,15974:10282267,22425454 -g1,15974:10614221,22425454 -g1,15974:10946175,22425454 -g1,15974:11278129,22425454 -g1,15974:11610083,22425454 -g1,15974:11942037,22425454 -g1,15974:12273991,22425454 -g1,15974:12937899,22425454 -g1,15974:15925484,22425454 -g1,15974:18913069,22425454 -g1,15974:19576977,22425454 -h1,15974:22564562,22425454:0,0,0 -k1,15974:32583029,22425454:10018467 -g1,15974:32583029,22425454 -) -(1,15974:6630773,23110309:25952256,431045,33029 -h1,15974:6630773,23110309:0,0,0 -g1,15974:7626635,23110309 -g1,15974:7958589,23110309 -g1,15974:8622497,23110309 -g1,15974:12937898,23110309 -h1,15974:14265714,23110309:0,0,0 -k1,15974:32583030,23110309:18317316 -g1,15974:32583030,23110309 -) -(1,15974:6630773,23795164:25952256,424439,86428 -h1,15974:6630773,23795164:0,0,0 -g1,15974:7626635,23795164 -g1,15974:7958589,23795164 -g1,15974:8622497,23795164 -g1,15974:11278129,23795164 -g1,15974:14597668,23795164 -g1,15974:15925484,23795164 -h1,15974:18581115,23795164:0,0,0 -k1,15974:32583029,23795164:14001914 -g1,15974:32583029,23795164 -) -] -) -g1,15975:32583029,23881592 -g1,15975:6630773,23881592 -g1,15975:6630773,23881592 -g1,15975:32583029,23881592 -g1,15975:32583029,23881592 -) -h1,15975:6630773,24078200:0,0,0 -(1,15989:6630773,26909360:25952256,32768,229376 -(1,15989:6630773,26909360:0,32768,229376 -(1,15989:6630773,26909360:5505024,32768,229376 -r1,15992:12135797,26909360:5505024,262144,229376 -) -k1,15989:6630773,26909360:-5505024 -) -(1,15989:6630773,26909360:25952256,32768,0 -r1,15992:32583029,26909360:25952256,32768,0 -) -) -(1,15989:6630773,28541212:25952256,606339,161218 -(1,15989:6630773,28541212:2464678,582746,14155 -g1,15989:6630773,28541212 -g1,15989:9095451,28541212 -) -g1,15989:12303307,28541212 -k1,15989:32583029,28541212:17080516 -g1,15989:32583029,28541212 -) -(1,15992:6630773,29799508:25952256,513147,134348 -k1,15991:7273066,29799508:227450 -k1,15991:7273066,29799508:0 -k1,15991:8691989,29799508:227478 -k1,15991:9707865,29799508:227478 -k1,15991:13007672,29799508:227479 -k1,15991:16145604,29799508:227478 -k1,15991:18803157,29799508:227478 -k1,15991:24417694,29799508:227478 -k1,15991:25304465,29799508:227479 -k1,15991:27133643,29799508:227478 -k1,15991:29498905,29799508:227478 -k1,15991:32583029,29799508:0 -) -(1,15992:6630773,30664588:25952256,513147,126483 -k1,15991:9834974,30664588:245906 -k1,15991:11122901,30664588:245905 -k1,15991:13060947,30664588:245906 -k1,15991:16091477,30664588:245905 -k1,15991:19724284,30664588:245906 -k1,15991:25357248,30664588:245905 -k1,15991:27103928,30664588:245906 -k1,15991:27965871,30664588:245905 -k1,15991:30974120,30664588:245906 -k1,15992:32583029,30664588:0 -) -(1,15992:6630773,31529668:25952256,513147,134348 -k1,15991:8383609,31529668:171452 -k1,15991:9751748,31529668:171452 -k1,15991:12329027,31529668:171452 -k1,15991:14918102,31529668:171452 -k1,15991:16465155,31529668:171452 -k1,15991:19481525,31529668:171452 -k1,15991:20304406,31529668:171453 -k1,15991:22136540,31529668:171452 -k1,15991:23638373,31529668:171452 -k1,15991:25501965,31529668:171452 -k1,15991:26332709,31529668:171452 -k1,15991:27523246,31529668:171452 -k1,15991:29296398,31529668:171452 -k1,15991:32583029,31529668:0 -) -(1,15992:6630773,32394748:25952256,513147,134348 -k1,15991:8330955,32394748:186956 -k1,15991:13904970,32394748:186956 -k1,15991:15083487,32394748:186957 -k1,15991:16957340,32394748:186956 -k1,15991:17830458,32394748:186956 -k1,15991:19220655,32394748:186956 -k1,15991:22825314,32394748:186956 -k1,15991:23543767,32394748:186956 -k1,15991:27035705,32394748:186957 -k1,15991:28990167,32394748:186956 -k1,15991:30124774,32394748:186956 -k1,15991:32583029,32394748:0 -) -(1,15992:6630773,33259828:25952256,513147,126483 -k1,15991:7387905,33259828:141094 -k1,15991:11022722,33259828:141093 -k1,15991:13249827,33259828:141094 -k1,15991:15622422,33259828:141094 -k1,15991:16422807,33259828:141093 -k1,15991:18449372,33259828:141094 -k1,15991:18803400,33259828:141036 -k1,15991:19938020,33259828:141094 -k1,15991:21650666,33259828:141093 -k1,15991:23141802,33259828:141094 -k1,15991:25271258,33259828:141094 -k1,15991:26638531,33259828:141094 -k1,15991:28691965,33259828:141093 -k1,15991:29642429,33259828:141094 -k1,15991:32583029,33259828:0 -) -(1,15992:6630773,34124908:25952256,513147,134348 -k1,15991:9842577,34124908:236469 -k1,15991:10434906,34124908:236469 -k1,15991:13157156,34124908:236469 -k1,15991:16551805,34124908:236469 -k1,15991:17979719,34124908:236469 -k1,15991:19951581,34124908:236469 -k1,15991:20602856,34124908:236432 -k1,15991:21786976,34124908:236469 -k1,15991:25188834,34124908:236469 -k1,15991:26416863,34124908:236469 -k1,15991:29852144,34124908:236469 -k1,15992:32583029,34124908:0 -) -(1,15992:6630773,34989988:25952256,513147,134348 -k1,15991:8550034,34989988:291347 -k1,15991:9445622,34989988:291346 -k1,15991:10471812,34989988:291531 -k1,15991:12564087,34989988:291346 -k1,15991:14046879,34989988:291347 -k1,15991:16731601,34989988:291347 -k1,15991:19753832,34989988:291346 -k1,15991:20969237,34989988:291347 -k1,15991:23653958,34989988:291346 -k1,15991:26257415,34989988:291347 -k1,15991:29158405,34989988:291346 -k1,15991:30641197,34989988:291347 -k1,15991:32583029,34989988:0 -) -(1,15992:6630773,35855068:25952256,513147,134348 -k1,15991:8792870,35855068:187497 -k1,15991:10538088,35855068:187427 -k1,15991:12468773,35855068:187427 -k1,15991:13272238,35855068:187427 -k1,15991:14478750,35855068:187427 -k1,15991:17306623,35855068:187427 -k1,15991:21456357,35855068:187427 -k1,15991:23037735,35855068:187427 -k1,15991:24244246,35855068:187426 -k1,15991:26673004,35855068:187427 -k1,15991:28017141,35855068:187427 -k1,15991:30932832,35855068:187427 -k1,15991:32583029,35855068:0 -) -(1,15992:6630773,36720148:25952256,513147,134348 -k1,15991:7621284,36720148:181141 -k1,15991:10077835,36720148:181141 -k1,15991:11450422,36720148:181142 -k1,15991:14796297,36720148:181141 -k1,15991:17482224,36720148:181141 -k1,15991:19495752,36720148:181141 -k1,15991:22668612,36720148:181141 -k1,15991:23509046,36720148:181142 -k1,15991:25602528,36720148:181141 -k1,15991:29498905,36720148:181141 -k1,15991:32583029,36720148:0 -) -(1,15992:6630773,37585228:25952256,513147,134348 -k1,15991:11166346,37585228:141384 -k1,15991:11923768,37585228:141384 -k1,15991:12479938,37585228:141327 -k1,15991:13612882,37585228:141384 -k1,15991:17692324,37585228:141384 -k1,15991:20564594,37585228:141385 -k1,15991:22069127,37585228:141384 -k1,15991:22660088,37585228:141384 -k1,15991:25867902,37585228:141384 -k1,15991:27984060,37585228:141558 -k1,15991:28614998,37585228:141384 -k1,15991:31966991,37585228:141384 -k1,15991:32583029,37585228:0 -) -(1,15992:6630773,38450308:25952256,505283,134348 -k1,15991:9823777,38450308:162619 -k1,15991:12759223,38450308:162618 -k1,15991:14684105,38450308:162619 -k1,15991:15296301,38450308:162619 -k1,15991:16238872,38450308:162692 -k1,15991:16930440,38450308:162692 -k1,15991:19171861,38450308:162619 -k1,15991:20525924,38450308:162618 -k1,15991:23357824,38450308:162619 -k1,15991:25321372,38450308:162619 -k1,15991:26675436,38450308:162619 -k1,15991:27327608,38450308:162618 -k1,15991:30747366,38450308:162619 -k1,15991:32583029,38450308:0 -) -(1,15992:6630773,39315388:25952256,513147,126483 -k1,15991:7375277,39315388:144850 -k1,15991:7969705,39315388:144851 -k1,15991:9854536,39315388:144850 -k1,15991:10603628,39315388:144850 -k1,15991:11483246,39315388:144959 -k1,15991:13603022,39315388:145176 -k1,15991:14944559,39315388:144850 -k1,15991:16671448,39315388:144850 -k1,15991:19634347,39315388:144851 -k1,15991:20703255,39315388:144850 -k1,15991:23418427,39315388:144850 -k1,15991:24773727,39315388:144850 -k1,15991:29540832,39315388:144851 -k1,15991:31219880,39315388:144850 -k1,15991:32583029,39315388:0 -) -(1,15992:6630773,40180468:25952256,505283,126483 -k1,15991:9761155,40180468:190437 -k1,15991:10554522,40180468:190436 -k1,15991:11194536,40180468:190437 -k1,15991:14743037,40180468:190436 -k1,15991:16124919,40180468:190437 -k1,15991:18078929,40180468:190436 -k1,15991:20070295,40180468:190437 -k1,15991:22996860,40180468:190437 -k1,15991:24653992,40180468:190436 -k1,15991:25863514,40180468:190437 -k1,15991:29138074,40180468:190436 -k1,15991:31391584,40180468:190437 -k1,15991:32583029,40180468:0 -) -(1,15992:6630773,41045548:25952256,513147,126483 -k1,15991:8316086,41045548:189126 -k1,15991:11670601,41045548:189126 -k1,15991:13056414,41045548:189126 -k1,15991:18063092,41045548:189126 -k1,15991:19439730,41045548:189126 -k1,15991:20078432,41045548:189125 -k1,15991:21787993,41045548:189126 -k1,15991:24718490,41045548:189126 -k1,15991:26708545,41045548:189126 -k1,15991:28089116,41045548:189126 -k1,15991:29297327,41045548:189126 -k1,15991:31576396,41045548:189126 -k1,15992:32583029,41045548:0 -) -(1,15992:6630773,41910628:25952256,505283,126483 -k1,15991:8951403,41910628:241828 -k1,15991:11586605,41910628:241827 -k1,15991:14231638,41910628:241828 -k1,15991:17204351,41910628:241828 -k1,15991:18809327,41910628:241827 -k1,15991:19462066,41910628:241828 -k1,15991:22770323,41910628:241827 -k1,15991:24203596,41910628:241828 -k1,15991:26425922,41910628:241828 -k1,15991:28468678,41910628:241827 -k1,15991:30177202,41910628:241828 -k1,15991:32583029,41910628:0 -) -(1,15992:6630773,42775708:25952256,513147,126483 -k1,15991:9879143,42775708:164246 -k1,15991:12106462,42775708:164246 -k1,15991:12886746,42775708:164246 -k1,15991:15434536,42775708:164246 -k1,15991:16992733,42775708:164246 -k1,15991:18176063,42775708:164245 -k1,15991:18755118,42775708:164212 -k1,15991:20415550,42775708:164245 -k1,15991:23745185,42775708:164246 -k1,15991:25503267,42775708:164246 -k1,15991:28064820,42775708:164246 -k1,15991:30141407,42775708:164246 -k1,15991:31297213,42775708:164246 -k1,15991:32583029,42775708:0 -) -(1,15992:6630773,43640788:25952256,513147,134348 -k1,15991:9620580,43640788:205838 -k1,15991:11394038,43640788:205837 -k1,15991:13485347,43640788:205838 -k1,15991:14047045,43640788:205838 -k1,15991:15386000,43640788:205837 -k1,15991:19360813,43640788:205838 -k1,15991:20514302,43640788:205838 -k1,15991:22995549,43640788:205837 -k1,15991:25603937,43640788:205838 -k1,15991:26801335,43640788:205838 -k1,15991:27910258,43640788:205837 -k1,15991:31983375,43640788:205838 -k1,15991:32583029,43640788:0 -) -(1,15992:6630773,44505868:25952256,505283,126483 -k1,15991:9297155,44505868:287425 -k1,15991:13407949,44505868:287424 -k1,15991:16318125,44505868:287425 -k1,15991:17968698,44505868:287424 -k1,15991:18705700,44505868:287425 -k1,15991:19773179,44505868:287600 -k1,15991:22139406,44505868:287425 -k1,15991:23618276,44505868:287425 -k1,15991:26574981,44505868:287424 -k1,15991:28837270,44505868:287689 -k1,15991:31148446,44505868:287424 -k1,15992:32583029,44505868:0 -) -(1,15992:6630773,45370948:25952256,505283,134348 -k1,15991:7675016,45370948:227009 -k1,15991:9265174,45370948:227009 -k1,15991:9941760,45370948:227009 -k1,15991:12973055,45370948:227009 -k1,15991:15174748,45370948:227093 -k1,15991:18490469,45370948:227009 -k1,15991:19703139,45370948:227009 -k1,15991:21953900,45370948:227009 -k1,15991:24042131,45370948:227009 -k1,15991:25632289,45370948:227009 -k1,15991:26482684,45370948:227148 -k1,15991:30472115,45370948:227009 -k1,15991:32583029,45370948:0 -) -] -(1,15992:32583029,45706769:0,0,0 -g1,15992:32583029,45706769 -) -) -] -(1,15992:6630773,47279633:25952256,0,0 -h1,15992:6630773,47279633:25952256,0,0 -) -] -(1,15992:4262630,4025873:0,0,0 -[1,15992:-473656,4025873:0,0,0 -(1,15992:-473656,-710413:0,0,0 -(1,15992:-473656,-710413:0,0,0 -g1,15992:-473656,-710413 -) -g1,15992:-473656,-710413 +] +g1,15990:6630773,4812305 +g1,15990:6630773,4812305 +g1,15990:9205682,4812305 +g1,15990:11988340,4812305 +k1,15990:31387652,4812305:19399312 +) +) +] +[1,15990:6630773,45706769:25952256,40108032,0 +(1,15990:6630773,45706769:25952256,40108032,0 +(1,15990:6630773,45706769:0,0,0 +g1,15990:6630773,45706769 +) +[1,15990:6630773,45706769:25952256,40108032,0 +(1,15935:6630773,6254097:25952256,513147,134348 +h1,15934:6630773,6254097:983040,0,0 +k1,15934:8791057,6254097:223695 +k1,15934:10119034,6254097:223695 +k1,15934:11435214,6254097:223695 +(1,15934:11435214,6254097:0,452978,115847 +r1,15990:14255463,6254097:2820249,568825,115847 +k1,15934:11435214,6254097:-2820249 +) +(1,15934:11435214,6254097:2820249,452978,115847 +k1,15934:11435214,6254097:3277 +h1,15934:14252186,6254097:0,411205,112570 +) +k1,15934:14479158,6254097:223695 +k1,15934:15354281,6254097:223695 +k1,15934:17062366,6254097:223695 +k1,15934:18305146,6254097:223695 +k1,15934:21014622,6254097:223695 +k1,15934:21897609,6254097:223695 +k1,15934:24628056,6254097:223695 +k1,15934:25613279,6254097:223695 +k1,15934:28251320,6254097:223695 +k1,15934:30902469,6254097:223695 +k1,15934:31812326,6254097:223695 +k1,15934:32583029,6254097:0 +) +(1,15935:6630773,7119177:25952256,513147,134348 +g1,15934:9902330,7119177 +g1,15934:11120644,7119177 +g1,15934:13675892,7119177 +g1,15934:16360902,7119177 +g1,15934:17219423,7119177 +g1,15934:19925404,7119177 +g1,15934:20807518,7119177 +g1,15934:22025832,7119177 +g1,15934:24234395,7119177 +g1,15934:25046386,7119177 +g1,15934:27131086,7119177 +g1,15934:27981743,7119177 +g1,15934:29186294,7119177 +g1,15934:30404608,7119177 +k1,15935:32583029,7119177:886051 +g1,15935:32583029,7119177 +) +v1,15937:6630773,7804032:0,393216,0 +(1,15953:6630773,15021393:25952256,7610577,196608 +g1,15953:6630773,15021393 +g1,15953:6630773,15021393 +g1,15953:6434165,15021393 +(1,15953:6434165,15021393:0,7610577,196608 +r1,15990:32779637,15021393:26345472,7807185,196608 +k1,15953:6434165,15021393:-26345472 +) +(1,15953:6434165,15021393:26345472,7610577,196608 +[1,15953:6630773,15021393:25952256,7413969,0 +(1,15939:6630773,8031863:25952256,424439,86428 +(1,15938:6630773,8031863:0,0,0 +g1,15938:6630773,8031863 +g1,15938:6630773,8031863 +g1,15938:6303093,8031863 +(1,15938:6303093,8031863:0,0,0 +) +g1,15938:6630773,8031863 +) +k1,15939:6630773,8031863:0 +g1,15939:10282267,8031863 +g1,15939:10946175,8031863 +g1,15939:11610083,8031863 +h1,15939:12273991,8031863:0,0,0 +k1,15939:32583029,8031863:20309038 +g1,15939:32583029,8031863 +) +(1,15952:6630773,8847790:25952256,424439,112852 +(1,15941:6630773,8847790:0,0,0 +g1,15941:6630773,8847790 +g1,15941:6630773,8847790 +g1,15941:6303093,8847790 +(1,15941:6303093,8847790:0,0,0 +) +g1,15941:6630773,8847790 +) +k1,15952:7596445,8847790:301764 +k1,15952:7898210,8847790:301765 +k1,15952:8199974,8847790:301764 +k1,15952:8501738,8847790:301764 +k1,15952:8803502,8847790:301764 +k1,15952:9105267,8847790:301765 +k1,15952:9407031,8847790:301764 +k1,15952:9708795,8847790:301764 +k1,15952:10010559,8847790:301764 +k1,15952:10312324,8847790:301765 +k1,15952:12605812,8847790:301764 +k1,15952:12907576,8847790:301764 +k1,15952:13209340,8847790:301764 +k1,15952:13511105,8847790:301765 +k1,15952:13812869,8847790:301764 +k1,15952:14114633,8847790:301764 +k1,15952:14416397,8847790:301764 +k1,15952:17705747,8847790:301765 +k1,15952:18007511,8847790:301764 +k1,15952:18309275,8847790:301764 +k1,15952:18611039,8847790:301764 +k1,15952:18912804,8847790:301765 +k1,15952:19214568,8847790:301764 +k1,15952:19516332,8847790:301764 +k1,15952:19818097,8847790:301765 +k1,15952:22775492,8847790:301764 +k1,15952:23077256,8847790:301764 +k1,15952:23379020,8847790:301764 +k1,15952:23680785,8847790:301765 +k1,15952:23982549,8847790:301764 +k1,15952:24284313,8847790:301764 +k1,15952:24586077,8847790:301764 +k1,15952:24887842,8847790:301765 +k1,15952:25189606,8847790:301764 +k1,15952:25491370,8847790:301764 +k1,15952:27784858,8847790:301764 +k1,15952:28086623,8847790:301765 +k1,15952:28388387,8847790:301764 +k1,15952:28690151,8847790:301764 +k1,15952:28991915,8847790:301764 +k1,15952:29293680,8847790:301765 +k1,15952:29595444,8847790:301764 +h1,15952:32583029,8847790:0,0,0 +k1,15952:32583029,8847790:0 +k1,15952:32583029,8847790:0 +) +(1,15952:6630773,9532645:25952256,407923,9908 +h1,15952:6630773,9532645:0,0,0 +k1,15952:7609729,9532645:315048 +k1,15952:7924776,9532645:315047 +k1,15952:8239824,9532645:315048 +k1,15952:8554872,9532645:315048 +k1,15952:8869920,9532645:315048 +k1,15952:9184967,9532645:315047 +k1,15952:9500015,9532645:315048 +k1,15952:9815063,9532645:315048 +k1,15952:10130110,9532645:315047 +k1,15952:10445158,9532645:315048 +k1,15952:10760206,9532645:315048 +k1,15952:11075253,9532645:315047 +k1,15952:11390301,9532645:315048 +k1,15952:11705349,9532645:315048 +k1,15952:12020397,9532645:315048 +k1,15952:12667398,9532645:315047 +k1,15952:12982446,9532645:315048 +k1,15952:13297494,9532645:315048 +k1,15952:13612541,9532645:315047 +k1,15952:13927589,9532645:315048 +k1,15952:14242637,9532645:315048 +k1,15952:14557685,9532645:315048 +k1,15952:14872732,9532645:315047 +k1,15952:15187780,9532645:315048 +k1,15952:15502828,9532645:315048 +k1,15952:15817875,9532645:315047 +k1,15952:16132923,9532645:315048 +k1,15952:16447971,9532645:315048 +k1,15952:16763018,9532645:315047 +k1,15952:17078066,9532645:315048 +k1,15952:17725068,9532645:315048 +k1,15952:18040116,9532645:315048 +k1,15952:18355163,9532645:315047 +k1,15952:18670211,9532645:315048 +k1,15952:18985259,9532645:315048 +k1,15952:19300306,9532645:315047 +k1,15952:19615354,9532645:315048 +k1,15952:19930402,9532645:315048 +k1,15952:20245450,9532645:315048 +k1,15952:20560497,9532645:315047 +k1,15952:20875545,9532645:315048 +k1,15952:21190593,9532645:315048 +k1,15952:21505640,9532645:315047 +k1,15952:21820688,9532645:315048 +k1,15952:22135736,9532645:315048 +k1,15952:22782737,9532645:315047 +k1,15952:23097785,9532645:315048 +k1,15952:23412833,9532645:315048 +k1,15952:23727881,9532645:315048 +k1,15952:24042928,9532645:315047 +k1,15952:24357976,9532645:315048 +k1,15952:24673024,9532645:315048 +k1,15952:24988071,9532645:315047 +k1,15952:25303119,9532645:315048 +k1,15952:25618167,9532645:315048 +k1,15952:25933215,9532645:315048 +k1,15952:26248262,9532645:315047 +k1,15952:26563310,9532645:315048 +k1,15952:26878358,9532645:315048 +k1,15952:27193405,9532645:315047 +k1,15952:27840407,9532645:315048 +k1,15952:28155455,9532645:315048 +k1,15952:28470502,9532645:315047 +k1,15952:28785550,9532645:315048 +k1,15952:29100598,9532645:315048 +k1,15952:29415646,9532645:315048 +k1,15952:29730693,9532645:315047 +k1,15952:30045741,9532645:315048 +k1,15952:30360789,9532645:315048 +k1,15952:30675836,9532645:315047 +k1,15952:30990884,9532645:315048 +k1,15952:31305932,9532645:315048 +k1,15952:31620980,9532645:315048 +k1,15952:31936027,9532645:315047 +k1,15952:32251075,9532645:315048 +h1,15952:32583029,9532645:0,0,0 +k1,15952:32583029,9532645:0 +k1,15952:32583029,9532645:0 +) +(1,15952:6630773,10217500:25952256,424439,112852 +h1,15952:6630773,10217500:0,0,0 +k1,15952:7595709,10217500:301028 +k1,15952:7896737,10217500:301028 +k1,15952:8197765,10217500:301028 +k1,15952:8498793,10217500:301028 +k1,15952:8799821,10217500:301028 +k1,15952:9100848,10217500:301027 +k1,15952:9401876,10217500:301028 +k1,15952:9702904,10217500:301028 +k1,15952:10003932,10217500:301028 +k1,15952:12628638,10217500:301028 +k1,15952:12929666,10217500:301028 +k1,15952:13230694,10217500:301028 +k1,15952:13531722,10217500:301028 +k1,15952:13832750,10217500:301028 +k1,15952:14133778,10217500:301028 +k1,15952:17754344,10217500:301027 +k1,15952:18055372,10217500:301028 +k1,15952:18356400,10217500:301028 +k1,15952:18657428,10217500:301028 +k1,15952:18958456,10217500:301028 +k1,15952:19259484,10217500:301028 +k1,15952:19560512,10217500:301028 +k1,15952:19861540,10217500:301028 +k1,15952:20162568,10217500:301028 +k1,15952:20463596,10217500:301028 +k1,15952:22756347,10217500:301027 +k1,15952:23057375,10217500:301028 +k1,15952:23358403,10217500:301028 +k1,15952:23659431,10217500:301028 +k1,15952:23960459,10217500:301028 +k1,15952:24261487,10217500:301028 +k1,15952:24562515,10217500:301028 +k1,15952:27851128,10217500:301028 +k1,15952:28152156,10217500:301028 +k1,15952:28453184,10217500:301028 +k1,15952:28754211,10217500:301027 +k1,15952:29055239,10217500:301028 +k1,15952:29356267,10217500:301028 +k1,15952:29657295,10217500:301028 +k1,15952:29958323,10217500:301028 +k1,15952:30259351,10217500:301028 +h1,15952:32583029,10217500:0,0,0 +k1,15952:32583029,10217500:0 +k1,15952:32583029,10217500:0 +) +(1,15952:6630773,10902355:25952256,407923,9908 +h1,15952:6630773,10902355:0,0,0 +k1,15952:7609729,10902355:315048 +k1,15952:7924776,10902355:315047 +k1,15952:8239824,10902355:315048 +k1,15952:8554872,10902355:315048 +k1,15952:8869920,10902355:315048 +k1,15952:9184967,10902355:315047 +k1,15952:9500015,10902355:315048 +k1,15952:9815063,10902355:315048 +k1,15952:10130110,10902355:315047 +k1,15952:10445158,10902355:315048 +k1,15952:10760206,10902355:315048 +k1,15952:11075253,10902355:315047 +k1,15952:11390301,10902355:315048 +k1,15952:11705349,10902355:315048 +k1,15952:12020397,10902355:315048 +k1,15952:12667398,10902355:315047 +k1,15952:12982446,10902355:315048 +k1,15952:13297494,10902355:315048 +k1,15952:13612541,10902355:315047 +k1,15952:13927589,10902355:315048 +k1,15952:14242637,10902355:315048 +k1,15952:14557685,10902355:315048 +k1,15952:14872732,10902355:315047 +k1,15952:15187780,10902355:315048 +k1,15952:15502828,10902355:315048 +k1,15952:15817875,10902355:315047 +k1,15952:16132923,10902355:315048 +k1,15952:16447971,10902355:315048 +k1,15952:16763018,10902355:315047 +k1,15952:17078066,10902355:315048 +k1,15952:17725068,10902355:315048 +k1,15952:18040116,10902355:315048 +k1,15952:18355163,10902355:315047 +k1,15952:18670211,10902355:315048 +k1,15952:18985259,10902355:315048 +k1,15952:19300306,10902355:315047 +k1,15952:19615354,10902355:315048 +k1,15952:19930402,10902355:315048 +k1,15952:20245450,10902355:315048 +k1,15952:20560497,10902355:315047 +k1,15952:20875545,10902355:315048 +k1,15952:21190593,10902355:315048 +k1,15952:21505640,10902355:315047 +k1,15952:21820688,10902355:315048 +k1,15952:22135736,10902355:315048 +k1,15952:22782737,10902355:315047 +k1,15952:23097785,10902355:315048 +k1,15952:23412833,10902355:315048 +k1,15952:23727881,10902355:315048 +k1,15952:24042928,10902355:315047 +k1,15952:24357976,10902355:315048 +k1,15952:24673024,10902355:315048 +k1,15952:24988071,10902355:315047 +k1,15952:25303119,10902355:315048 +k1,15952:25618167,10902355:315048 +k1,15952:25933215,10902355:315048 +k1,15952:26248262,10902355:315047 +k1,15952:26563310,10902355:315048 +k1,15952:26878358,10902355:315048 +k1,15952:27193405,10902355:315047 +k1,15952:27840407,10902355:315048 +k1,15952:28155455,10902355:315048 +k1,15952:28470502,10902355:315047 +k1,15952:28785550,10902355:315048 +k1,15952:29100598,10902355:315048 +k1,15952:29415646,10902355:315048 +k1,15952:29730693,10902355:315047 +k1,15952:30045741,10902355:315048 +k1,15952:30360789,10902355:315048 +k1,15952:30675836,10902355:315047 +k1,15952:30990884,10902355:315048 +k1,15952:31305932,10902355:315048 +k1,15952:31620980,10902355:315048 +k1,15952:31936027,10902355:315047 +k1,15952:32251075,10902355:315048 +h1,15952:32583029,10902355:0,0,0 +k1,15952:32583029,10902355:0 +k1,15952:32583029,10902355:0 +) +(1,15952:6630773,11587210:25952256,431045,106246 +h1,15952:6630773,11587210:0,0,0 +k1,15952:7594936,11587210:300255 +k1,15952:9223006,11587210:300254 +k1,15952:10187169,11587210:300255 +k1,15952:12811102,11587210:300255 +k1,15952:13111357,11587210:300255 +k1,15952:13411611,11587210:300254 +k1,15952:13711866,11587210:300255 +k1,15952:14012121,11587210:300255 +k1,15952:14312375,11587210:300254 +k1,15952:14612630,11587210:300255 +k1,15952:14912885,11587210:300255 +k1,15952:15213140,11587210:300255 +k1,15952:15513394,11587210:300254 +k1,15952:17805373,11587210:300255 +k1,15952:18105628,11587210:300255 +k1,15952:18405883,11587210:300255 +k1,15952:18706137,11587210:300254 +k1,15952:19006392,11587210:300255 +k1,15952:19306647,11587210:300255 +k1,15952:19606901,11587210:300254 +k1,15952:19907156,11587210:300255 +k1,15952:20207411,11587210:300255 +k1,15952:20507666,11587210:300255 +k1,15952:20807920,11587210:300254 +k1,15952:22767945,11587210:300255 +k1,15952:23068200,11587210:300255 +k1,15952:23368455,11587210:300255 +k1,15952:23668709,11587210:300254 +k1,15952:23968964,11587210:300255 +k1,15952:24269219,11587210:300255 +k1,15952:24569473,11587210:300254 +k1,15952:24869728,11587210:300255 +k1,15952:25169983,11587210:300255 +k1,15952:25470238,11587210:300255 +k1,15952:27762216,11587210:300254 +k1,15952:28062471,11587210:300255 +k1,15952:28362726,11587210:300255 +k1,15952:28662980,11587210:300254 +k1,15952:28963235,11587210:300255 +k1,15952:29263490,11587210:300255 +h1,15952:32583029,11587210:0,0,0 +k1,15952:32583029,11587210:0 +k1,15952:32583029,11587210:0 +) +(1,15952:6630773,12272065:25952256,407923,9908 +h1,15952:6630773,12272065:0,0,0 +k1,15952:7609729,12272065:315048 +k1,15952:7924776,12272065:315047 +k1,15952:8239824,12272065:315048 +k1,15952:8554872,12272065:315048 +k1,15952:8869920,12272065:315048 +k1,15952:9184967,12272065:315047 +k1,15952:9500015,12272065:315048 +k1,15952:9815063,12272065:315048 +k1,15952:10130110,12272065:315047 +k1,15952:10445158,12272065:315048 +k1,15952:10760206,12272065:315048 +k1,15952:11075253,12272065:315047 +k1,15952:11390301,12272065:315048 +k1,15952:11705349,12272065:315048 +k1,15952:12020397,12272065:315048 +k1,15952:12667398,12272065:315047 +k1,15952:12982446,12272065:315048 +k1,15952:13297494,12272065:315048 +k1,15952:13612541,12272065:315047 +k1,15952:13927589,12272065:315048 +k1,15952:14242637,12272065:315048 +k1,15952:14557685,12272065:315048 +k1,15952:14872732,12272065:315047 +k1,15952:15187780,12272065:315048 +k1,15952:15502828,12272065:315048 +k1,15952:15817875,12272065:315047 +k1,15952:16132923,12272065:315048 +k1,15952:16447971,12272065:315048 +k1,15952:16763018,12272065:315047 +k1,15952:17078066,12272065:315048 +k1,15952:17725068,12272065:315048 +k1,15952:18040116,12272065:315048 +k1,15952:18355163,12272065:315047 +k1,15952:18670211,12272065:315048 +k1,15952:18985259,12272065:315048 +k1,15952:19300306,12272065:315047 +k1,15952:19615354,12272065:315048 +k1,15952:19930402,12272065:315048 +k1,15952:20245450,12272065:315048 +k1,15952:20560497,12272065:315047 +k1,15952:20875545,12272065:315048 +k1,15952:21190593,12272065:315048 +k1,15952:21505640,12272065:315047 +k1,15952:21820688,12272065:315048 +k1,15952:22135736,12272065:315048 +k1,15952:22782737,12272065:315047 +k1,15952:23097785,12272065:315048 +k1,15952:23412833,12272065:315048 +k1,15952:23727881,12272065:315048 +k1,15952:24042928,12272065:315047 +k1,15952:24357976,12272065:315048 +k1,15952:24673024,12272065:315048 +k1,15952:24988071,12272065:315047 +k1,15952:25303119,12272065:315048 +k1,15952:25618167,12272065:315048 +k1,15952:25933215,12272065:315048 +k1,15952:26248262,12272065:315047 +k1,15952:26563310,12272065:315048 +k1,15952:26878358,12272065:315048 +k1,15952:27193405,12272065:315047 +k1,15952:27840407,12272065:315048 +k1,15952:28155455,12272065:315048 +k1,15952:28470502,12272065:315047 +k1,15952:28785550,12272065:315048 +k1,15952:29100598,12272065:315048 +k1,15952:29415646,12272065:315048 +k1,15952:29730693,12272065:315047 +k1,15952:30045741,12272065:315048 +k1,15952:30360789,12272065:315048 +k1,15952:30675836,12272065:315047 +k1,15952:30990884,12272065:315048 +k1,15952:31305932,12272065:315048 +k1,15952:31620980,12272065:315048 +k1,15952:31936027,12272065:315047 +k1,15952:32251075,12272065:315048 +h1,15952:32583029,12272065:0,0,0 +k1,15952:32583029,12272065:0 +k1,15952:32583029,12272065:0 +) +(1,15952:6630773,12956920:25952256,424439,8257 +h1,15952:6630773,12956920:0,0,0 +k1,15952:7601773,12956920:307092 +k1,15952:7908865,12956920:307092 +k1,15952:8215956,12956920:307091 +k1,15952:8523048,12956920:307092 +k1,15952:8830140,12956920:307092 +k1,15952:9137232,12956920:307092 +k1,15952:9444324,12956920:307092 +k1,15952:9751416,12956920:307092 +k1,15952:10058507,12956920:307091 +k1,15952:10365599,12956920:307092 +k1,15952:10672691,12956920:307092 +k1,15952:12639553,12956920:307092 +k1,15952:12946645,12956920:307092 +k1,15952:13253737,12956920:307092 +k1,15952:13560828,12956920:307091 +k1,15952:13867920,12956920:307092 +k1,15952:14175012,12956920:307092 +k1,15952:14482104,12956920:307092 +k1,15952:14789196,12956920:307092 +k1,15952:15096287,12956920:307091 +k1,15952:15403379,12956920:307092 +k1,15952:17702195,12956920:307092 +k1,15952:18009287,12956920:307092 +k1,15952:18316379,12956920:307092 +k1,15952:18623471,12956920:307092 +k1,15952:18930562,12956920:307091 +k1,15952:19237654,12956920:307092 +k1,15952:19544746,12956920:307092 +k1,15952:19851838,12956920:307092 +k1,15952:20158930,12956920:307092 +k1,15952:20466021,12956920:307091 +k1,15952:20773113,12956920:307092 +k1,15952:22739975,12956920:307092 +k1,15952:23047067,12956920:307092 +k1,15952:23354159,12956920:307092 +k1,15952:23661251,12956920:307092 +k1,15952:23968342,12956920:307091 +k1,15952:24275434,12956920:307092 +k1,15952:24582526,12956920:307092 +k1,15952:24889618,12956920:307092 +k1,15952:25196710,12956920:307092 +k1,15952:25503802,12956920:307092 +k1,15952:25810893,12956920:307091 +k1,15952:26117985,12956920:307092 +k1,15952:27752893,12956920:307092 +k1,15952:28059985,12956920:307092 +k1,15952:28367077,12956920:307092 +k1,15952:28674168,12956920:307091 +k1,15952:28981260,12956920:307092 +k1,15952:29288352,12956920:307092 +k1,15952:29595444,12956920:307092 +h1,15952:32583029,12956920:0,0,0 +k1,15952:32583029,12956920:0 +k1,15952:32583029,12956920:0 +) +(1,15952:6630773,13641775:25952256,407923,9908 +h1,15952:6630773,13641775:0,0,0 +k1,15952:7609729,13641775:315048 +k1,15952:7924776,13641775:315047 +k1,15952:8239824,13641775:315048 +k1,15952:8554872,13641775:315048 +k1,15952:8869920,13641775:315048 +k1,15952:9184967,13641775:315047 +k1,15952:9500015,13641775:315048 +k1,15952:9815063,13641775:315048 +k1,15952:10130110,13641775:315047 +k1,15952:10445158,13641775:315048 +k1,15952:10760206,13641775:315048 +k1,15952:11075253,13641775:315047 +k1,15952:11390301,13641775:315048 +k1,15952:11705349,13641775:315048 +k1,15952:12020397,13641775:315048 +k1,15952:12667398,13641775:315047 +k1,15952:12982446,13641775:315048 +k1,15952:13297494,13641775:315048 +k1,15952:13612541,13641775:315047 +k1,15952:13927589,13641775:315048 +k1,15952:14242637,13641775:315048 +k1,15952:14557685,13641775:315048 +k1,15952:14872732,13641775:315047 +k1,15952:15187780,13641775:315048 +k1,15952:15502828,13641775:315048 +k1,15952:15817875,13641775:315047 +k1,15952:16132923,13641775:315048 +k1,15952:16447971,13641775:315048 +k1,15952:16763018,13641775:315047 +k1,15952:17078066,13641775:315048 +k1,15952:17725068,13641775:315048 +k1,15952:18040116,13641775:315048 +k1,15952:18355163,13641775:315047 +k1,15952:18670211,13641775:315048 +k1,15952:18985259,13641775:315048 +k1,15952:19300306,13641775:315047 +k1,15952:19615354,13641775:315048 +k1,15952:19930402,13641775:315048 +k1,15952:20245450,13641775:315048 +k1,15952:20560497,13641775:315047 +k1,15952:20875545,13641775:315048 +k1,15952:21190593,13641775:315048 +k1,15952:21505640,13641775:315047 +k1,15952:21820688,13641775:315048 +k1,15952:22135736,13641775:315048 +k1,15952:22782737,13641775:315047 +k1,15952:23097785,13641775:315048 +k1,15952:23412833,13641775:315048 +k1,15952:23727881,13641775:315048 +k1,15952:24042928,13641775:315047 +k1,15952:24357976,13641775:315048 +k1,15952:24673024,13641775:315048 +k1,15952:24988071,13641775:315047 +k1,15952:25303119,13641775:315048 +k1,15952:25618167,13641775:315048 +k1,15952:25933215,13641775:315048 +k1,15952:26248262,13641775:315047 +k1,15952:26563310,13641775:315048 +k1,15952:26878358,13641775:315048 +k1,15952:27193405,13641775:315047 +k1,15952:27840407,13641775:315048 +k1,15952:28155455,13641775:315048 +k1,15952:28470502,13641775:315047 +k1,15952:28785550,13641775:315048 +k1,15952:29100598,13641775:315048 +k1,15952:29415646,13641775:315048 +k1,15952:29730693,13641775:315047 +k1,15952:30045741,13641775:315048 +k1,15952:30360789,13641775:315048 +k1,15952:30675836,13641775:315047 +k1,15952:30990884,13641775:315048 +k1,15952:31305932,13641775:315048 +k1,15952:31620980,13641775:315048 +k1,15952:31936027,13641775:315047 +k1,15952:32251075,13641775:315048 +h1,15952:32583029,13641775:0,0,0 +k1,15952:32583029,13641775:0 +k1,15952:32583029,13641775:0 +) +(1,15952:6630773,14326630:25952256,424439,6605 +h1,15952:6630773,14326630:0,0,0 +g1,15952:7626635,14326630 +g1,15952:7958589,14326630 +g1,15952:8290543,14326630 +g1,15952:8622497,14326630 +g1,15952:8954451,14326630 +g1,15952:9286405,14326630 +g1,15952:9618359,14326630 +g1,15952:9950313,14326630 +g1,15952:10282267,14326630 +g1,15952:10614221,14326630 +h1,15952:12605945,14326630:0,0,0 +k1,15952:32583029,14326630:19977084 +g1,15952:32583029,14326630 +) +(1,15952:6630773,15011485:25952256,407923,9908 +h1,15952:6630773,15011485:0,0,0 +g1,15952:7626635,15011485 +g1,15952:7958589,15011485 +g1,15952:8290543,15011485 +g1,15952:8622497,15011485 +g1,15952:8954451,15011485 +g1,15952:9286405,15011485 +g1,15952:9618359,15011485 +g1,15952:9950313,15011485 +g1,15952:10282267,15011485 +g1,15952:10614221,15011485 +g1,15952:10946175,15011485 +g1,15952:11278129,15011485 +g1,15952:11610083,15011485 +g1,15952:11942037,15011485 +g1,15952:12273991,15011485 +h1,15952:12605945,15011485:0,0,0 +k1,15952:32583029,15011485:19977084 +g1,15952:32583029,15011485 +) +] +) +g1,15953:32583029,15021393 +g1,15953:6630773,15021393 +g1,15953:6630773,15021393 +g1,15953:32583029,15021393 +g1,15953:32583029,15021393 +) +h1,15953:6630773,15218001:0,0,0 +(1,15958:6630773,15902856:25952256,513147,134348 +h1,15956:6630773,15902856:983040,0,0 +k1,15956:8992124,15902856:181624 +k1,15956:11133275,15902856:181625 +k1,15956:14093626,15902856:181624 +k1,15956:15036779,15902856:181625 +(1,15956:15036779,15902856:0,452978,115847 +r1,15990:17857028,15902856:2820249,568825,115847 +k1,15956:15036779,15902856:-2820249 +) +(1,15956:15036779,15902856:2820249,452978,115847 +k1,15956:15036779,15902856:3277 +h1,15956:17853751,15902856:0,411205,112570 +) +k1,15956:18038652,15902856:181624 +k1,15956:20922326,15902856:181625 +k1,15956:23221418,15902856:181624 +k1,15956:24062335,15902856:181625 +k1,15956:25263044,15902856:181624 +k1,15956:27287541,15902856:181625 +k1,15956:28128457,15902856:181624 +k1,15956:29329167,15902856:181625 +k1,15956:32583029,15902856:0 +) +(1,15958:6630773,16587711:25952256,513147,134348 +g1,15956:8689259,16587711 +g1,15956:10900443,16587711 +g1,15956:13375082,16587711 +g1,15956:17830219,16587711 +g1,15956:19220893,16587711 +g1,15956:22118239,16587711 +k1,15958:32583029,16587711:10464790 +g1,15958:32583029,16587711 +) +v1,15958:6630773,17272566:0,393216,0 +(1,15973:6630773,23881592:25952256,7002242,196608 +g1,15973:6630773,23881592 +g1,15973:6630773,23881592 +g1,15973:6434165,23881592 +(1,15973:6434165,23881592:0,7002242,196608 +r1,15990:32779637,23881592:26345472,7198850,196608 +k1,15973:6434165,23881592:-26345472 +) +(1,15973:6434165,23881592:26345472,7002242,196608 +[1,15973:6630773,23881592:25952256,6805634,0 +(1,15960:6630773,17500397:25952256,424439,79822 +(1,15959:6630773,17500397:0,0,0 +g1,15959:6630773,17500397 +g1,15959:6630773,17500397 +g1,15959:6303093,17500397 +(1,15959:6303093,17500397:0,0,0 +) +g1,15959:6630773,17500397 +) +k1,15960:6630773,17500397:0 +h1,15960:8954451,17500397:0,0,0 +k1,15960:32583029,17500397:23628578 +g1,15960:32583029,17500397 +) +(1,15972:6630773,18316324:25952256,431045,6605 +(1,15962:6630773,18316324:0,0,0 +g1,15962:6630773,18316324 +g1,15962:6630773,18316324 +g1,15962:6303093,18316324 +(1,15962:6303093,18316324:0,0,0 +) +g1,15962:6630773,18316324 +) +g1,15972:7626635,18316324 +g1,15972:9286405,18316324 +g1,15972:10282267,18316324 +h1,15972:10614221,18316324:0,0,0 +k1,15972:32583029,18316324:21968808 +g1,15972:32583029,18316324 +) +(1,15972:6630773,19001179:25952256,431045,112852 +h1,15972:6630773,19001179:0,0,0 +g1,15972:7626635,19001179 +g1,15972:7958589,19001179 +g1,15972:8622497,19001179 +g1,15972:10614221,19001179 +g1,15972:10946175,19001179 +g1,15972:11278129,19001179 +g1,15972:11610083,19001179 +g1,15972:11942037,19001179 +g1,15972:12273991,19001179 +g1,15972:12937899,19001179 +g1,15972:14265715,19001179 +g1,15972:16589393,19001179 +g1,15972:18249163,19001179 +g1,15972:19245025,19001179 +g1,15972:20240887,19001179 +g1,15972:21236749,19001179 +g1,15972:22232611,19001179 +g1,15972:23560427,19001179 +g1,15972:24888243,19001179 +g1,15972:25884105,19001179 +g1,15972:26879967,19001179 +g1,15972:27875829,19001179 +g1,15972:29203645,19001179 +h1,15972:30199507,19001179:0,0,0 +k1,15972:32583029,19001179:2383522 +g1,15972:32583029,19001179 +) +(1,15972:6630773,19686034:25952256,431045,112852 +h1,15972:6630773,19686034:0,0,0 +g1,15972:7626635,19686034 +g1,15972:7958589,19686034 +g1,15972:8622497,19686034 +g1,15972:10946175,19686034 +g1,15972:11278129,19686034 +g1,15972:11610083,19686034 +g1,15972:11942037,19686034 +g1,15972:12273991,19686034 +g1,15972:12937899,19686034 +g1,15972:14265715,19686034 +g1,15972:16589393,19686034 +g1,15972:17917209,19686034 +g1,15972:19245025,19686034 +g1,15972:20572841,19686034 +g1,15972:21900657,19686034 +g1,15972:23228473,19686034 +g1,15972:24556289,19686034 +g1,15972:25884105,19686034 +g1,15972:27211921,19686034 +g1,15972:28539737,19686034 +g1,15972:29867553,19686034 +h1,15972:30863415,19686034:0,0,0 +k1,15972:32583029,19686034:1719614 +g1,15972:32583029,19686034 +) +(1,15972:6630773,20370889:25952256,431045,79822 +h1,15972:6630773,20370889:0,0,0 +g1,15972:7626635,20370889 +g1,15972:7958589,20370889 +g1,15972:8622497,20370889 +g1,15972:10614221,20370889 +g1,15972:10946175,20370889 +g1,15972:11278129,20370889 +g1,15972:11610083,20370889 +g1,15972:11942037,20370889 +g1,15972:12273991,20370889 +g1,15972:12937899,20370889 +g1,15972:14265715,20370889 +g1,15972:16589393,20370889 +g1,15972:17253301,20370889 +g1,15972:18249163,20370889 +g1,15972:18913071,20370889 +g1,15972:19908933,20370889 +g1,15972:20904795,20370889 +g1,15972:21900657,20370889 +g1,15972:22564565,20370889 +g1,15972:23560427,20370889 +g1,15972:24556289,20370889 +g1,15972:25220197,20370889 +h1,15972:26216059,20370889:0,0,0 +k1,15972:32583029,20370889:6366970 +g1,15972:32583029,20370889 +) +(1,15972:6630773,21055744:25952256,431045,79822 +h1,15972:6630773,21055744:0,0,0 +g1,15972:7626635,21055744 +g1,15972:7958589,21055744 +g1,15972:8622497,21055744 +g1,15972:10946175,21055744 +g1,15972:11278129,21055744 +g1,15972:11610083,21055744 +g1,15972:11942037,21055744 +g1,15972:12273991,21055744 +g1,15972:12937899,21055744 +g1,15972:14265715,21055744 +g1,15972:16589393,21055744 +g1,15972:19576978,21055744 +g1,15972:23560425,21055744 +g1,15972:27211918,21055744 +g1,15972:30199503,21055744 +h1,15972:31195365,21055744:0,0,0 +k1,15972:32583029,21055744:1387664 +g1,15972:32583029,21055744 +) +(1,15972:6630773,21740599:25952256,431045,106246 +h1,15972:6630773,21740599:0,0,0 +g1,15972:7626635,21740599 +g1,15972:7958589,21740599 +g1,15972:8622497,21740599 +g1,15972:10946175,21740599 +g1,15972:11278129,21740599 +g1,15972:11610083,21740599 +g1,15972:11942037,21740599 +g1,15972:12273991,21740599 +g1,15972:12937899,21740599 +g1,15972:14265715,21740599 +h1,15972:17585254,21740599:0,0,0 +k1,15972:32583029,21740599:14997775 +g1,15972:32583029,21740599 +) +(1,15972:6630773,22425454:25952256,431045,112852 +h1,15972:6630773,22425454:0,0,0 +g1,15972:7626635,22425454 +g1,15972:7958589,22425454 +g1,15972:8622497,22425454 +g1,15972:10282267,22425454 +g1,15972:10614221,22425454 +g1,15972:10946175,22425454 +g1,15972:11278129,22425454 +g1,15972:11610083,22425454 +g1,15972:11942037,22425454 +g1,15972:12273991,22425454 +g1,15972:12937899,22425454 +g1,15972:15925484,22425454 +g1,15972:18913069,22425454 +g1,15972:19576977,22425454 +h1,15972:22564562,22425454:0,0,0 +k1,15972:32583029,22425454:10018467 +g1,15972:32583029,22425454 +) +(1,15972:6630773,23110309:25952256,431045,33029 +h1,15972:6630773,23110309:0,0,0 +g1,15972:7626635,23110309 +g1,15972:7958589,23110309 +g1,15972:8622497,23110309 +g1,15972:12937898,23110309 +h1,15972:14265714,23110309:0,0,0 +k1,15972:32583030,23110309:18317316 +g1,15972:32583030,23110309 +) +(1,15972:6630773,23795164:25952256,424439,86428 +h1,15972:6630773,23795164:0,0,0 +g1,15972:7626635,23795164 +g1,15972:7958589,23795164 +g1,15972:8622497,23795164 +g1,15972:11278129,23795164 +g1,15972:14597668,23795164 +g1,15972:15925484,23795164 +h1,15972:18581115,23795164:0,0,0 +k1,15972:32583029,23795164:14001914 +g1,15972:32583029,23795164 +) +] +) +g1,15973:32583029,23881592 +g1,15973:6630773,23881592 +g1,15973:6630773,23881592 +g1,15973:32583029,23881592 +g1,15973:32583029,23881592 +) +h1,15973:6630773,24078200:0,0,0 +(1,15987:6630773,26909360:25952256,32768,229376 +(1,15987:6630773,26909360:0,32768,229376 +(1,15987:6630773,26909360:5505024,32768,229376 +r1,15990:12135797,26909360:5505024,262144,229376 +) +k1,15987:6630773,26909360:-5505024 +) +(1,15987:6630773,26909360:25952256,32768,0 +r1,15990:32583029,26909360:25952256,32768,0 +) +) +(1,15987:6630773,28541212:25952256,606339,161218 +(1,15987:6630773,28541212:2464678,582746,14155 +g1,15987:6630773,28541212 +g1,15987:9095451,28541212 +) +g1,15987:12303307,28541212 +k1,15987:32583029,28541212:17080516 +g1,15987:32583029,28541212 +) +(1,15990:6630773,29799508:25952256,513147,134348 +k1,15989:7273066,29799508:227450 +k1,15989:7273066,29799508:0 +k1,15989:8691989,29799508:227478 +k1,15989:9707865,29799508:227478 +k1,15989:13007672,29799508:227479 +k1,15989:16145604,29799508:227478 +k1,15989:18803157,29799508:227478 +k1,15989:24417694,29799508:227478 +k1,15989:25304465,29799508:227479 +k1,15989:27133643,29799508:227478 +k1,15989:29498905,29799508:227478 +k1,15989:32583029,29799508:0 +) +(1,15990:6630773,30664588:25952256,513147,126483 +k1,15989:9815677,30664588:226609 +k1,15989:11084308,30664588:226609 +k1,15989:13003057,30664588:226609 +k1,15989:16187961,30664588:226609 +k1,15989:19801470,30664588:226608 +k1,15989:25415138,30664588:226609 +k1,15989:27142521,30664588:226609 +k1,15989:27985168,30664588:226609 +k1,15989:30974120,30664588:226609 +k1,15990:32583029,30664588:0 +) +(1,15990:6630773,31529668:25952256,513147,134348 +k1,15989:8383609,31529668:171452 +k1,15989:9751748,31529668:171452 +k1,15989:12329027,31529668:171452 +k1,15989:14918102,31529668:171452 +k1,15989:16465155,31529668:171452 +k1,15989:19481525,31529668:171452 +k1,15989:20304406,31529668:171453 +k1,15989:22136540,31529668:171452 +k1,15989:23638373,31529668:171452 +k1,15989:25501965,31529668:171452 +k1,15989:26332709,31529668:171452 +k1,15989:27523246,31529668:171452 +k1,15989:29296398,31529668:171452 +k1,15989:32583029,31529668:0 +) +(1,15990:6630773,32394748:25952256,513147,134348 +k1,15989:8330955,32394748:186956 +k1,15989:13904970,32394748:186956 +k1,15989:15083487,32394748:186957 +k1,15989:16957340,32394748:186956 +k1,15989:17830458,32394748:186956 +k1,15989:19220655,32394748:186956 +k1,15989:22825314,32394748:186956 +k1,15989:23543767,32394748:186956 +k1,15989:27035705,32394748:186957 +k1,15989:28990167,32394748:186956 +k1,15989:30124774,32394748:186956 +k1,15989:32583029,32394748:0 +) +(1,15990:6630773,33259828:25952256,513147,126483 +k1,15989:7387905,33259828:141094 +k1,15989:11022722,33259828:141093 +k1,15989:13249827,33259828:141094 +k1,15989:15622422,33259828:141094 +k1,15989:16422807,33259828:141093 +k1,15989:18449372,33259828:141094 +k1,15989:18803400,33259828:141036 +k1,15989:19938020,33259828:141094 +k1,15989:21650666,33259828:141093 +k1,15989:23141802,33259828:141094 +k1,15989:25271258,33259828:141094 +k1,15989:26638531,33259828:141094 +k1,15989:28691965,33259828:141093 +k1,15989:29642429,33259828:141094 +k1,15989:32583029,33259828:0 +) +(1,15990:6630773,34124908:25952256,513147,134348 +k1,15989:9842577,34124908:236469 +k1,15989:10434906,34124908:236469 +k1,15989:13157156,34124908:236469 +k1,15989:16551805,34124908:236469 +k1,15989:17979719,34124908:236469 +k1,15989:19951581,34124908:236469 +k1,15989:20602856,34124908:236432 +k1,15989:21786976,34124908:236469 +k1,15989:25188834,34124908:236469 +k1,15989:26416863,34124908:236469 +k1,15989:29852144,34124908:236469 +k1,15990:32583029,34124908:0 +) +(1,15990:6630773,34989988:25952256,513147,134348 +k1,15989:8550034,34989988:291347 +k1,15989:9445622,34989988:291346 +k1,15989:10471812,34989988:291531 +k1,15989:12564087,34989988:291346 +k1,15989:14046879,34989988:291347 +k1,15989:16731601,34989988:291347 +k1,15989:19753832,34989988:291346 +k1,15989:20969237,34989988:291347 +k1,15989:23653958,34989988:291346 +k1,15989:26257415,34989988:291347 +k1,15989:29158405,34989988:291346 +k1,15989:30641197,34989988:291347 +k1,15989:32583029,34989988:0 +) +(1,15990:6630773,35855068:25952256,513147,134348 +k1,15989:8792870,35855068:187497 +k1,15989:10538088,35855068:187427 +k1,15989:12468773,35855068:187427 +k1,15989:13272238,35855068:187427 +k1,15989:14478750,35855068:187427 +k1,15989:17306623,35855068:187427 +k1,15989:21456357,35855068:187427 +k1,15989:23037735,35855068:187427 +k1,15989:24244246,35855068:187426 +k1,15989:26673004,35855068:187427 +k1,15989:28017141,35855068:187427 +k1,15989:30932832,35855068:187427 +k1,15989:32583029,35855068:0 +) +(1,15990:6630773,36720148:25952256,513147,134348 +k1,15989:7621284,36720148:181141 +k1,15989:10077835,36720148:181141 +k1,15989:11450422,36720148:181142 +k1,15989:14796297,36720148:181141 +k1,15989:17482224,36720148:181141 +k1,15989:19495752,36720148:181141 +k1,15989:22668612,36720148:181141 +k1,15989:23509046,36720148:181142 +k1,15989:25602528,36720148:181141 +k1,15989:29498905,36720148:181141 +k1,15989:32583029,36720148:0 +) +(1,15990:6630773,37585228:25952256,513147,134348 +k1,15989:11166346,37585228:141384 +k1,15989:11923768,37585228:141384 +k1,15989:12479938,37585228:141327 +k1,15989:13612882,37585228:141384 +k1,15989:17692324,37585228:141384 +k1,15989:20564594,37585228:141385 +k1,15989:22069127,37585228:141384 +k1,15989:22660088,37585228:141384 +k1,15989:25867902,37585228:141384 +k1,15989:27984060,37585228:141558 +k1,15989:28614998,37585228:141384 +k1,15989:31966991,37585228:141384 +k1,15989:32583029,37585228:0 +) +(1,15990:6630773,38450308:25952256,505283,134348 +k1,15989:9823777,38450308:162619 +k1,15989:12759223,38450308:162618 +k1,15989:14684105,38450308:162619 +k1,15989:15296301,38450308:162619 +k1,15989:16238872,38450308:162692 +k1,15989:16930440,38450308:162692 +k1,15989:19171861,38450308:162619 +k1,15989:20525924,38450308:162618 +k1,15989:23357824,38450308:162619 +k1,15989:25321372,38450308:162619 +k1,15989:26675436,38450308:162619 +k1,15989:27327608,38450308:162618 +k1,15989:30747366,38450308:162619 +k1,15989:32583029,38450308:0 +) +(1,15990:6630773,39315388:25952256,513147,126483 +k1,15989:7375277,39315388:144850 +k1,15989:7969705,39315388:144851 +k1,15989:9854536,39315388:144850 +k1,15989:10603628,39315388:144850 +k1,15989:11483246,39315388:144959 +k1,15989:13603022,39315388:145176 +k1,15989:14944559,39315388:144850 +k1,15989:16671448,39315388:144850 +k1,15989:19634347,39315388:144851 +k1,15989:20703255,39315388:144850 +k1,15989:23418427,39315388:144850 +k1,15989:24773727,39315388:144850 +k1,15989:29540832,39315388:144851 +k1,15989:31219880,39315388:144850 +k1,15989:32583029,39315388:0 +) +(1,15990:6630773,40180468:25952256,505283,126483 +k1,15989:9761155,40180468:190437 +k1,15989:10554522,40180468:190436 +k1,15989:11194536,40180468:190437 +k1,15989:14743037,40180468:190436 +k1,15989:16124919,40180468:190437 +k1,15989:18078929,40180468:190436 +k1,15989:20070295,40180468:190437 +k1,15989:22996860,40180468:190437 +k1,15989:24653992,40180468:190436 +k1,15989:25863514,40180468:190437 +k1,15989:29138074,40180468:190436 +k1,15989:31391584,40180468:190437 +k1,15989:32583029,40180468:0 +) +(1,15990:6630773,41045548:25952256,513147,126483 +k1,15989:8316086,41045548:189126 +k1,15989:11670601,41045548:189126 +k1,15989:13056414,41045548:189126 +k1,15989:18063092,41045548:189126 +k1,15989:19439730,41045548:189126 +k1,15989:20078432,41045548:189125 +k1,15989:21787993,41045548:189126 +k1,15989:24718490,41045548:189126 +k1,15989:26708545,41045548:189126 +k1,15989:28089116,41045548:189126 +k1,15989:29297327,41045548:189126 +k1,15989:31576396,41045548:189126 +k1,15990:32583029,41045548:0 +) +(1,15990:6630773,41910628:25952256,505283,126483 +k1,15989:8951403,41910628:241828 +k1,15989:11586605,41910628:241827 +k1,15989:14231638,41910628:241828 +k1,15989:17204351,41910628:241828 +k1,15989:18809327,41910628:241827 +k1,15989:19462066,41910628:241828 +k1,15989:22770323,41910628:241827 +k1,15989:24203596,41910628:241828 +k1,15989:26425922,41910628:241828 +k1,15989:28468678,41910628:241827 +k1,15989:30177202,41910628:241828 +k1,15989:32583029,41910628:0 +) +(1,15990:6630773,42775708:25952256,513147,126483 +k1,15989:9879143,42775708:164246 +k1,15989:12106462,42775708:164246 +k1,15989:12886746,42775708:164246 +k1,15989:15434536,42775708:164246 +k1,15989:16992733,42775708:164246 +k1,15989:18176063,42775708:164245 +k1,15989:18755118,42775708:164212 +k1,15989:20415550,42775708:164245 +k1,15989:23745185,42775708:164246 +k1,15989:25503267,42775708:164246 +k1,15989:28064820,42775708:164246 +k1,15989:30141407,42775708:164246 +k1,15989:31297213,42775708:164246 +k1,15989:32583029,42775708:0 +) +(1,15990:6630773,43640788:25952256,513147,134348 +k1,15989:9620580,43640788:205838 +k1,15989:11394038,43640788:205837 +k1,15989:13485347,43640788:205838 +k1,15989:14047045,43640788:205838 +k1,15989:15386000,43640788:205837 +k1,15989:19360813,43640788:205838 +k1,15989:20514302,43640788:205838 +k1,15989:22995549,43640788:205837 +k1,15989:25603937,43640788:205838 +k1,15989:26801335,43640788:205838 +k1,15989:27910258,43640788:205837 +k1,15989:31983375,43640788:205838 +k1,15989:32583029,43640788:0 +) +(1,15990:6630773,44505868:25952256,505283,126483 +k1,15989:9297155,44505868:287425 +k1,15989:13407949,44505868:287424 +k1,15989:16318125,44505868:287425 +k1,15989:17968698,44505868:287424 +k1,15989:18705700,44505868:287425 +k1,15989:19773179,44505868:287600 +k1,15989:22139406,44505868:287425 +k1,15989:23618276,44505868:287425 +k1,15989:26574981,44505868:287424 +k1,15989:28837270,44505868:287689 +k1,15989:31148446,44505868:287424 +k1,15990:32583029,44505868:0 +) +(1,15990:6630773,45370948:25952256,505283,134348 +k1,15989:7675016,45370948:227009 +k1,15989:9265174,45370948:227009 +k1,15989:9941760,45370948:227009 +k1,15989:12973055,45370948:227009 +k1,15989:15174748,45370948:227093 +k1,15989:18490469,45370948:227009 +k1,15989:19703139,45370948:227009 +k1,15989:21953900,45370948:227009 +k1,15989:24042131,45370948:227009 +k1,15989:25632289,45370948:227009 +k1,15989:26482684,45370948:227148 +k1,15989:30472115,45370948:227009 +k1,15989:32583029,45370948:0 +) +] +(1,15990:32583029,45706769:0,0,0 +g1,15990:32583029,45706769 +) +) +] +(1,15990:6630773,47279633:25952256,0,0 +h1,15990:6630773,47279633:25952256,0,0 +) +] +(1,15990:4262630,4025873:0,0,0 +[1,15990:-473656,4025873:0,0,0 +(1,15990:-473656,-710413:0,0,0 +(1,15990:-473656,-710413:0,0,0 +g1,15990:-473656,-710413 +) +g1,15990:-473656,-710413 ) ] ) ] !40815 -}256 +}257 !12 -{257 -[1,16000:4262630,47279633:28320399,43253760,0 -(1,16000:4262630,4025873:0,0,0 -[1,16000:-473656,4025873:0,0,0 -(1,16000:-473656,-710413:0,0,0 -(1,16000:-473656,-644877:0,0,0 -k1,16000:-473656,-644877:-65536 +{258 +[1,15998:4262630,47279633:28320399,43253760,0 +(1,15998:4262630,4025873:0,0,0 +[1,15998:-473656,4025873:0,0,0 +(1,15998:-473656,-710413:0,0,0 +(1,15998:-473656,-644877:0,0,0 +k1,15998:-473656,-644877:-65536 ) -(1,16000:-473656,4736287:0,0,0 -k1,16000:-473656,4736287:5209943 +(1,15998:-473656,4736287:0,0,0 +k1,15998:-473656,4736287:5209943 ) -g1,16000:-473656,-710413 +g1,15998:-473656,-710413 ) ] ) -[1,16000:6630773,47279633:25952256,43253760,0 -[1,16000:6630773,4812305:25952256,786432,0 -(1,16000:6630773,4812305:25952256,513147,126483 -(1,16000:6630773,4812305:25952256,513147,126483 -g1,16000:3078558,4812305 -[1,16000:3078558,4812305:0,0,0 -(1,16000:3078558,2439708:0,1703936,0 -k1,16000:1358238,2439708:-1720320 -(1,12676:1358238,2439708:1720320,1703936,0 -(1,12676:1358238,2439708:1179648,16384,0 -r1,16000:2537886,2439708:1179648,16384,0 +[1,15998:6630773,47279633:25952256,43253760,0 +[1,15998:6630773,4812305:25952256,786432,0 +(1,15998:6630773,4812305:25952256,513147,126483 +(1,15998:6630773,4812305:25952256,513147,126483 +g1,15998:3078558,4812305 +[1,15998:3078558,4812305:0,0,0 +(1,15998:3078558,2439708:0,1703936,0 +k1,15998:1358238,2439708:-1720320 +(1,12674:1358238,2439708:1720320,1703936,0 +(1,12674:1358238,2439708:1179648,16384,0 +r1,15998:2537886,2439708:1179648,16384,0 ) -g1,12676:3062174,2439708 -(1,12676:3062174,2439708:16384,1703936,0 -[1,12676:3062174,2439708:25952256,1703936,0 -(1,12676:3062174,1915420:25952256,1179648,0 -(1,12676:3062174,1915420:16384,1179648,0 -r1,16000:3078558,1915420:16384,1179648,0 +g1,12674:3062174,2439708 +(1,12674:3062174,2439708:16384,1703936,0 +[1,12674:3062174,2439708:25952256,1703936,0 +(1,12674:3062174,1915420:25952256,1179648,0 +(1,12674:3062174,1915420:16384,1179648,0 +r1,15998:3078558,1915420:16384,1179648,0 ) -k1,12676:29014430,1915420:25935872 -g1,12676:29014430,1915420 +k1,12674:29014430,1915420:25935872 +g1,12674:29014430,1915420 ) ] ) ) ) ] -[1,16000:3078558,4812305:0,0,0 -(1,16000:3078558,2439708:0,1703936,0 -g1,16000:29030814,2439708 -g1,16000:36135244,2439708 -(1,12676:36135244,2439708:1720320,1703936,0 -(1,12676:36135244,2439708:16384,1703936,0 -[1,12676:36135244,2439708:25952256,1703936,0 -(1,12676:36135244,1915420:25952256,1179648,0 -(1,12676:36135244,1915420:16384,1179648,0 -r1,16000:36151628,1915420:16384,1179648,0 +[1,15998:3078558,4812305:0,0,0 +(1,15998:3078558,2439708:0,1703936,0 +g1,15998:29030814,2439708 +g1,15998:36135244,2439708 +(1,12674:36135244,2439708:1720320,1703936,0 +(1,12674:36135244,2439708:16384,1703936,0 +[1,12674:36135244,2439708:25952256,1703936,0 +(1,12674:36135244,1915420:25952256,1179648,0 +(1,12674:36135244,1915420:16384,1179648,0 +r1,15998:36151628,1915420:16384,1179648,0 ) -k1,12676:62087500,1915420:25935872 -g1,12676:62087500,1915420 +k1,12674:62087500,1915420:25935872 +g1,12674:62087500,1915420 ) ] ) -g1,12676:36675916,2439708 -(1,12676:36675916,2439708:1179648,16384,0 -r1,16000:37855564,2439708:1179648,16384,0 +g1,12674:36675916,2439708 +(1,12674:36675916,2439708:1179648,16384,0 +r1,15998:37855564,2439708:1179648,16384,0 ) ) -k1,16000:3078556,2439708:-34777008 +k1,15998:3078556,2439708:-34777008 ) ] -[1,16000:3078558,4812305:0,0,0 -(1,16000:3078558,49800853:0,16384,2228224 -k1,16000:1358238,49800853:-1720320 -(1,12676:1358238,49800853:1720320,16384,2228224 -(1,12676:1358238,49800853:1179648,16384,0 -r1,16000:2537886,49800853:1179648,16384,0 +[1,15998:3078558,4812305:0,0,0 +(1,15998:3078558,49800853:0,16384,2228224 +k1,15998:1358238,49800853:-1720320 +(1,12674:1358238,49800853:1720320,16384,2228224 +(1,12674:1358238,49800853:1179648,16384,0 +r1,15998:2537886,49800853:1179648,16384,0 ) -g1,12676:3062174,49800853 -(1,12676:3062174,52029077:16384,1703936,0 -[1,12676:3062174,52029077:25952256,1703936,0 -(1,12676:3062174,51504789:25952256,1179648,0 -(1,12676:3062174,51504789:16384,1179648,0 -r1,16000:3078558,51504789:16384,1179648,0 +g1,12674:3062174,49800853 +(1,12674:3062174,52029077:16384,1703936,0 +[1,12674:3062174,52029077:25952256,1703936,0 +(1,12674:3062174,51504789:25952256,1179648,0 +(1,12674:3062174,51504789:16384,1179648,0 +r1,15998:3078558,51504789:16384,1179648,0 ) -k1,12676:29014430,51504789:25935872 -g1,12676:29014430,51504789 +k1,12674:29014430,51504789:25935872 +g1,12674:29014430,51504789 ) ] ) ) ) ] -[1,16000:3078558,4812305:0,0,0 -(1,16000:3078558,49800853:0,16384,2228224 -g1,16000:29030814,49800853 -g1,16000:36135244,49800853 -(1,12676:36135244,49800853:1720320,16384,2228224 -(1,12676:36135244,52029077:16384,1703936,0 -[1,12676:36135244,52029077:25952256,1703936,0 -(1,12676:36135244,51504789:25952256,1179648,0 -(1,12676:36135244,51504789:16384,1179648,0 -r1,16000:36151628,51504789:16384,1179648,0 +[1,15998:3078558,4812305:0,0,0 +(1,15998:3078558,49800853:0,16384,2228224 +g1,15998:29030814,49800853 +g1,15998:36135244,49800853 +(1,12674:36135244,49800853:1720320,16384,2228224 +(1,12674:36135244,52029077:16384,1703936,0 +[1,12674:36135244,52029077:25952256,1703936,0 +(1,12674:36135244,51504789:25952256,1179648,0 +(1,12674:36135244,51504789:16384,1179648,0 +r1,15998:36151628,51504789:16384,1179648,0 ) -k1,12676:62087500,51504789:25935872 -g1,12676:62087500,51504789 +k1,12674:62087500,51504789:25935872 +g1,12674:62087500,51504789 ) ] ) -g1,12676:36675916,49800853 -(1,12676:36675916,49800853:1179648,16384,0 -r1,16000:37855564,49800853:1179648,16384,0 +g1,12674:36675916,49800853 +(1,12674:36675916,49800853:1179648,16384,0 +r1,15998:37855564,49800853:1179648,16384,0 ) ) -k1,16000:3078556,49800853:-34777008 +k1,15998:3078556,49800853:-34777008 ) ] -g1,16000:6630773,4812305 -k1,16000:19575446,4812305:11749296 -g1,16000:21198117,4812305 -g1,16000:21985204,4812305 -g1,16000:24539797,4812305 -g1,16000:25949476,4812305 -g1,16000:28728857,4812305 -g1,16000:29852144,4812305 +g1,15998:6630773,4812305 +k1,15998:19575446,4812305:11749296 +g1,15998:21198117,4812305 +g1,15998:21985204,4812305 +g1,15998:24539797,4812305 +g1,15998:25949476,4812305 +g1,15998:28728857,4812305 +g1,15998:29852144,4812305 ) ) ] -[1,16000:6630773,45706769:25952256,40108032,0 -(1,16000:6630773,45706769:25952256,40108032,0 -(1,16000:6630773,45706769:0,0,0 -g1,16000:6630773,45706769 +[1,15998:6630773,45706769:25952256,40108032,0 +(1,15998:6630773,45706769:25952256,40108032,0 +(1,15998:6630773,45706769:0,0,0 +g1,15998:6630773,45706769 ) -[1,16000:6630773,45706769:25952256,40108032,0 -(1,15992:6630773,6254097:25952256,513147,134348 -k1,15991:8718236,6254097:259009 -k1,15991:10999685,6254097:259008 -k1,15991:12469144,6254097:259009 -k1,15991:17518834,6254097:259008 -k1,15991:21155569,6254097:259009 -k1,15991:23587096,6254097:259008 -k1,15991:26650391,6254097:259009 -k1,15991:28884178,6254097:259187 -k1,15991:32583029,6254097:0 +[1,15998:6630773,45706769:25952256,40108032,0 +(1,15990:6630773,6254097:25952256,513147,134348 +k1,15989:8718236,6254097:259009 +k1,15989:10999685,6254097:259008 +k1,15989:12469144,6254097:259009 +k1,15989:17518834,6254097:259008 +k1,15989:21155569,6254097:259009 +k1,15989:23587096,6254097:259008 +k1,15989:26650391,6254097:259009 +k1,15989:28884178,6254097:259187 +k1,15989:32583029,6254097:0 ) -(1,15992:6630773,7119177:25952256,505283,126483 -k1,15991:9893721,7119177:248292 -k1,15991:11352463,7119177:248292 -k1,15991:14086536,7119177:248292 -k1,15991:17634567,7119177:248293 -k1,15991:19074304,7119177:248292 -k1,15991:24493387,7119177:248292 -k1,15991:26716426,7119177:248439 -k1,15991:27867804,7119177:248292 -k1,15991:31983375,7119177:248292 -k1,15991:32583029,7119177:0 +(1,15990:6630773,7119177:25952256,505283,126483 +k1,15989:9893721,7119177:248292 +k1,15989:11352463,7119177:248292 +k1,15989:14086536,7119177:248292 +k1,15989:17634567,7119177:248293 +k1,15989:19074304,7119177:248292 +k1,15989:24493387,7119177:248292 +k1,15989:26716426,7119177:248439 +k1,15989:27867804,7119177:248292 +k1,15989:31983375,7119177:248292 +k1,15989:32583029,7119177:0 ) -(1,15992:6630773,7984257:25952256,513147,134348 -k1,15991:9840291,7984257:179133 -k1,15991:13025006,7984257:179234 -k1,15991:14567288,7984257:179133 -k1,15991:18620254,7984257:179133 -k1,15991:19402318,7984257:179133 -k1,15991:20031028,7984257:179133 -k1,15991:22347291,7984257:179134 -k1,15991:23130666,7984257:179133 -k1,15991:24044498,7984257:179173 -k1,15991:26198292,7984257:179194 -k1,15991:30433448,7984257:179133 -k1,15991:32583029,7984257:0 +(1,15990:6630773,7984257:25952256,513147,134348 +k1,15989:9840291,7984257:179133 +k1,15989:13025006,7984257:179234 +k1,15989:14567288,7984257:179133 +k1,15989:18620254,7984257:179133 +k1,15989:19402318,7984257:179133 +k1,15989:20031028,7984257:179133 +k1,15989:22347291,7984257:179134 +k1,15989:23130666,7984257:179133 +k1,15989:24044498,7984257:179173 +k1,15989:26198292,7984257:179194 +k1,15989:30433448,7984257:179133 +k1,15989:32583029,7984257:0 ) -(1,15992:6630773,8849337:25952256,505283,95026 -k1,15991:7453850,8849337:220146 -k1,15991:8033789,8849337:220146 -k1,15991:9464385,8849337:220146 -k1,15991:11542477,8849337:220146 -k1,15991:14607541,8849337:220146 -k1,15991:16019133,8849337:220147 -k1,15991:17928797,8849337:220146 -k1,15991:19949872,8849337:220146 -k1,15991:21361463,8849337:220146 -k1,15991:25344031,8849337:220146 -k1,15991:28167267,8849337:220146 -k1,15991:30559932,8849337:220146 -k1,15991:32583029,8849337:0 +(1,15990:6630773,8849337:25952256,505283,95026 +k1,15989:7453850,8849337:220146 +k1,15989:8033789,8849337:220146 +k1,15989:9464385,8849337:220146 +k1,15989:11542477,8849337:220146 +k1,15989:14607541,8849337:220146 +k1,15989:16019133,8849337:220147 +k1,15989:17928797,8849337:220146 +k1,15989:19949872,8849337:220146 +k1,15989:21361463,8849337:220146 +k1,15989:25344031,8849337:220146 +k1,15989:28167267,8849337:220146 +k1,15989:30559932,8849337:220146 +k1,15989:32583029,8849337:0 ) -(1,15992:6630773,9714417:25952256,505283,95026 -k1,15992:32583029,9714417:24098898 -g1,15992:32583029,9714417 +(1,15990:6630773,9714417:25952256,505283,95026 +k1,15990:32583029,9714417:24098898 +g1,15990:32583029,9714417 ) ] -(1,16000:32583029,45706769:0,0,0 -g1,16000:32583029,45706769 -) -) -] -(1,16000:6630773,47279633:25952256,0,0 -h1,16000:6630773,47279633:25952256,0,0 +(1,15998:32583029,45706769:0,0,0 +g1,15998:32583029,45706769 +) +) +] +(1,15998:6630773,47279633:25952256,0,0 +h1,15998:6630773,47279633:25952256,0,0 ) ] -(1,16000:4262630,4025873:0,0,0 -[1,16000:-473656,4025873:0,0,0 -(1,16000:-473656,-710413:0,0,0 -(1,16000:-473656,-710413:0,0,0 -g1,16000:-473656,-710413 +(1,15998:4262630,4025873:0,0,0 +[1,15998:-473656,4025873:0,0,0 +(1,15998:-473656,-710413:0,0,0 +(1,15998:-473656,-710413:0,0,0 +g1,15998:-473656,-710413 ) -g1,16000:-473656,-710413 +g1,15998:-473656,-710413 ) ] ) ] !5337 -}257 +}258 !11 -{258 -[1,16015:4262630,47279633:28320399,43253760,11795 -(1,16015:4262630,4025873:0,0,0 -[1,16015:-473656,4025873:0,0,0 -(1,16015:-473656,-710413:0,0,0 -(1,16015:-473656,-644877:0,0,0 -k1,16015:-473656,-644877:-65536 +{259 +[1,16013:4262630,47279633:28320399,43253760,11795 +(1,16013:4262630,4025873:0,0,0 +[1,16013:-473656,4025873:0,0,0 +(1,16013:-473656,-710413:0,0,0 +(1,16013:-473656,-644877:0,0,0 +k1,16013:-473656,-644877:-65536 ) -(1,16015:-473656,4736287:0,0,0 -k1,16015:-473656,4736287:5209943 +(1,16013:-473656,4736287:0,0,0 +k1,16013:-473656,4736287:5209943 ) -g1,16015:-473656,-710413 +g1,16013:-473656,-710413 ) ] ) -[1,16015:6630773,47279633:25952256,43253760,11795 -[1,16015:6630773,4812305:25952256,786432,0 -(1,16015:6630773,4812305:25952256,0,0 -(1,16015:6630773,4812305:25952256,0,0 -g1,16015:3078558,4812305 -[1,16015:3078558,4812305:0,0,0 -(1,16015:3078558,2439708:0,1703936,0 -k1,16015:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16015:2537886,2439708:1179648,16384,0 +[1,16013:6630773,47279633:25952256,43253760,11795 +[1,16013:6630773,4812305:25952256,786432,0 +(1,16013:6630773,4812305:25952256,0,0 +(1,16013:6630773,4812305:25952256,0,0 +g1,16013:3078558,4812305 +[1,16013:3078558,4812305:0,0,0 +(1,16013:3078558,2439708:0,1703936,0 +k1,16013:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16013:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16015:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16013:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16015:3078558,4812305:0,0,0 -(1,16015:3078558,2439708:0,1703936,0 -g1,16015:29030814,2439708 -g1,16015:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16015:36151628,1915420:16384,1179648,0 +[1,16013:3078558,4812305:0,0,0 +(1,16013:3078558,2439708:0,1703936,0 +g1,16013:29030814,2439708 +g1,16013:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16013:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16015:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16013:37855564,2439708:1179648,16384,0 ) ) -k1,16015:3078556,2439708:-34777008 +k1,16013:3078556,2439708:-34777008 ) ] -[1,16015:3078558,4812305:0,0,0 -(1,16015:3078558,49800853:0,16384,2228224 -k1,16015:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16015:2537886,49800853:1179648,16384,0 +[1,16013:3078558,4812305:0,0,0 +(1,16013:3078558,49800853:0,16384,2228224 +k1,16013:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16013:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16015:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16013:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16015:3078558,4812305:0,0,0 -(1,16015:3078558,49800853:0,16384,2228224 -g1,16015:29030814,49800853 -g1,16015:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16015:36151628,51504789:16384,1179648,0 +[1,16013:3078558,4812305:0,0,0 +(1,16013:3078558,49800853:0,16384,2228224 +g1,16013:29030814,49800853 +g1,16013:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16013:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16015:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16013:37855564,49800853:1179648,16384,0 ) ) -k1,16015:3078556,49800853:-34777008 +k1,16013:3078556,49800853:-34777008 ) ] -g1,16015:6630773,4812305 +g1,16013:6630773,4812305 ) ) ] -[1,16015:6630773,45706769:25952256,40108032,0 -(1,16015:6630773,45706769:25952256,40108032,0 -(1,16015:6630773,45706769:0,0,0 -g1,16015:6630773,45706769 +[1,16013:6630773,45706769:25952256,40108032,0 +(1,16013:6630773,45706769:25952256,40108032,0 +(1,16013:6630773,45706769:0,0,0 +g1,16013:6630773,45706769 ) -[1,16015:6630773,45706769:25952256,40108032,0 -[1,16000:6630773,11797421:25952256,6198684,0 -(1,16000:6630773,6633157:25952256,1165492,28311 -h1,16000:6630773,6633157:0,0,0 -k1,16000:20096848,6633157:12486181 -k1,16000:32583029,6633157:12486181 +[1,16013:6630773,45706769:25952256,40108032,0 +[1,15998:6630773,11797421:25952256,6198684,0 +(1,15998:6630773,6633157:25952256,1165492,28311 +h1,15998:6630773,6633157:0,0,0 +k1,15998:20096848,6633157:12486181 +k1,15998:32583029,6633157:12486181 ) -(1,16000:6630773,7380277:25952256,32768,229376 -(1,16000:6630773,7380277:0,32768,229376 -(1,16000:6630773,7380277:5505024,32768,229376 -r1,16015:12135797,7380277:5505024,262144,229376 +(1,15998:6630773,7380277:25952256,32768,229376 +(1,15998:6630773,7380277:0,32768,229376 +(1,15998:6630773,7380277:5505024,32768,229376 +r1,16013:12135797,7380277:5505024,262144,229376 ) -k1,16000:6630773,7380277:-5505024 +k1,15998:6630773,7380277:-5505024 ) -(1,16000:6630773,7380277:25952256,32768,0 -r1,16015:32583029,7380277:25952256,32768,0 +(1,15998:6630773,7380277:25952256,32768,0 +r1,16013:32583029,7380277:25952256,32768,0 ) ) -(1,16000:6630773,9215293:25952256,909509,241827 -h1,16000:6630773,9215293:0,0,0 -g1,16000:7734924,9215293 -g1,16000:14237144,9215293 -g1,16000:17357313,9215293 -k1,16000:27919291,9215293:4663738 -k1,16000:32583029,9215293:4663738 -) -(1,16000:6630773,9962413:25952256,32768,0 -(1,16000:6630773,9962413:5505024,32768,0 -r1,16015:12135797,9962413:5505024,32768,0 -) -k1,16000:22359413,9962413:10223616 -k1,16000:32583029,9962413:10223616 +(1,15998:6630773,9215293:25952256,909509,241827 +h1,15998:6630773,9215293:0,0,0 +g1,15998:7734924,9215293 +g1,15998:14237144,9215293 +g1,15998:17357313,9215293 +k1,15998:27919291,9215293:4663738 +k1,15998:32583029,9215293:4663738 +) +(1,15998:6630773,9962413:25952256,32768,0 +(1,15998:6630773,9962413:5505024,32768,0 +r1,16013:12135797,9962413:5505024,32768,0 +) +k1,15998:22359413,9962413:10223616 +k1,15998:32583029,9962413:10223616 ) ] -(1,16002:6630773,14713778:25952256,131072,0 -r1,16015:32583029,14713778:25952256,131072,0 -g1,16002:32583029,14713778 -g1,16002:32583029,14713778 -) -(1,16004:6630773,16057271:25952256,513147,134348 -k1,16004:8596853,16057271:1966080 -k1,16003:12214495,16057271:238606 -k1,16003:15816408,16057271:238605 -k1,16003:16671052,16057271:238606 -k1,16003:18297711,16057271:238606 -k1,16003:19483967,16057271:238605 -k1,16003:22551107,16057271:238606 -k1,16003:23145573,16057271:238606 -k1,16003:24483872,16057271:238605 -k1,16003:25373906,16057271:238606 -k1,16003:25968372,16057271:238606 -k1,16003:29076143,16057271:238605 -k1,16003:29846246,16057271:238606 -k1,16003:32583029,16057271:1966080 -) -(1,16004:6630773,16922351:25952256,513147,134348 -k1,16004:8596853,16922351:1966080 -k1,16003:10068024,16922351:256789 -k1,16003:12458069,16922351:256848 -k1,16003:13986314,16922351:256847 -k1,16003:17358087,16922351:256847 -k1,16003:18146431,16922351:256847 -k1,16003:19687784,16922351:256847 -k1,16003:21158956,16922351:256790 -k1,16003:22516808,16922351:256847 -k1,16003:27725555,16922351:256847 -k1,16003:29363246,16922351:256847 -k1,16004:32583029,16922351:1966080 -) -(1,16004:6630773,17787431:25952256,513147,134348 -k1,16004:8596853,17787431:1966080 -k1,16003:12096728,17787431:208657 -k1,16003:14351420,17787431:208658 -k1,16003:14915937,17787431:208657 -k1,16003:15981150,17787431:208657 -k1,16003:16849099,17787431:208657 -k1,16003:19050051,17787431:208658 -k1,16003:21888668,17787431:208657 -k1,16003:22713363,17787431:208657 -k1,16003:24136393,17787431:208648 -k1,16003:25629556,17787431:208657 -k1,16003:26829773,17787431:208657 -k1,16003:28104702,17787431:208658 -k1,16003:28929397,17787431:208657 -k1,16003:32583029,17787431:1966080 -) -(1,16004:6630773,18652511:25952256,505283,134348 -g1,16004:8596853,18652511 -k1,16004:30616949,18652511:18795070 -g1,16004:32583029,18652511 -) -(1,16005:6630773,20304023:25952256,505283,95026 -k1,16005:25716823,20304023:19086050 -h1,16005:25716823,20304023:0,0,0 -g1,16005:28120028,20304023 -g1,16005:28769489,20304023 -g1,16005:30616949,20304023 -g1,16005:32583029,20304023 -) -(1,16006:6630773,21169103:25952256,485622,126483 -k1,16006:26098897,21169103:19468124 -h1,16005:26098897,21169103:0,0,0 -g1,16005:26657919,21169103 -g1,16005:29023112,21169103 -g1,16006:30616948,21169103 -g1,16006:32583028,21169103 -) -(1,16006:6630773,22427399:25952256,131072,0 -r1,16015:32583029,22427399:25952256,131072,0 -g1,16006:32583029,22427399 -g1,16006:34549109,22427399 -) -(1,16008:6630773,25258559:25952256,32768,229376 -(1,16008:6630773,25258559:0,32768,229376 -(1,16008:6630773,25258559:5505024,32768,229376 -r1,16015:12135797,25258559:5505024,262144,229376 -) -k1,16008:6630773,25258559:-5505024 -) -(1,16008:6630773,25258559:25952256,32768,0 -r1,16015:32583029,25258559:25952256,32768,0 -) -) -(1,16008:6630773,26890411:25952256,615776,151780 -(1,16008:6630773,26890411:1974731,582746,14155 -g1,16008:6630773,26890411 -g1,16008:8605504,26890411 -) -g1,16008:10904245,26890411 -g1,16008:11961996,26890411 -g1,16008:13950883,26890411 -k1,16008:32583029,26890411:15515516 -g1,16008:32583029,26890411 -) -(1,16011:6630773,28148707:25952256,513147,134348 -k1,16010:8347431,28148707:284041 -k1,16010:9046231,28148707:283957 -k1,16010:10521717,28148707:284041 -k1,16010:11824844,28148707:284042 -k1,16010:16663637,28148707:284041 -k1,16010:20020006,28148707:284041 -k1,16010:23214502,28148707:284042 -k1,16010:26443076,28148707:284041 -k1,16010:27488646,28148707:284042 -k1,16010:30245360,28148707:284041 -k1,16010:32583029,28148707:0 -) -(1,16011:6630773,29013787:25952256,513147,134348 -k1,16010:8690908,29013787:308358 -k1,16010:12025063,29013787:308358 -k1,16010:13281072,29013787:308358 -k1,16010:17825021,29013787:308357 -k1,16010:19696413,29013787:308358 -k1,16010:21201458,29013787:308358 -k1,16010:21924549,29013787:308248 -k1,16010:26014334,29013787:308358 -k1,16010:28993284,29013787:308358 -k1,16010:29657502,29013787:308358 -k1,16010:32583029,29013787:0 -) -(1,16011:6630773,29878867:25952256,513147,126483 -k1,16010:7818121,29878867:252805 -k1,16010:8730218,29878867:252805 -k1,16010:12008820,29878867:252805 -k1,16010:13453070,29878867:252805 -k1,16010:16782790,29878867:252805 -k1,16010:18320102,29878867:252806 -k1,16010:20254561,29878867:252805 -k1,16010:21273482,29878867:252805 -k1,16010:22545372,29878867:252805 -k1,16010:24519152,29878867:252805 -k1,16010:26161320,29878867:252805 -k1,16010:30670033,29878867:252805 -k1,16011:32583029,29878867:0 -) -(1,16011:6630773,30743947:25952256,513147,126483 -k1,16010:8670611,30743947:268400 -k1,16010:10813340,30743947:268399 -k1,16010:14107537,30743947:268400 -k1,16010:15851152,30743947:268400 -k1,16010:18015509,30743947:268400 -k1,16010:19475353,30743947:268399 -k1,16010:24325375,30743947:268400 -k1,16010:27942009,30743947:268400 -k1,16010:28935237,30743947:268400 -k1,16010:29819674,30743947:268399 -k1,16010:31069148,30743947:268400 -k1,16010:32583029,30743947:0 -) -(1,16011:6630773,31609027:25952256,513147,134348 -k1,16010:8202377,31609027:191416 -k1,16010:10574175,31609027:191415 -k1,16010:11513357,31609027:191416 -k1,16010:14718117,31609027:191415 -k1,16010:16952290,31609027:191416 -k1,16010:18835845,31609027:191415 -k1,16010:19686553,31609027:191416 -k1,16010:21386607,31609027:191415 -k1,16010:25016042,31609027:191416 -k1,16010:27263321,31609027:191415 -k1,16010:28473822,31609027:191416 -k1,16010:29757722,31609027:191415 -k1,16010:30608430,31609027:191416 -k1,16011:32583029,31609027:0 -) -(1,16011:6630773,32474107:25952256,513147,134348 -k1,16010:8701494,32474107:221950 -k1,16010:11305023,32474107:221951 -k1,16010:12143011,32474107:221950 -k1,16010:16094616,32474107:221951 -k1,16010:19400690,32474107:221950 -k1,16010:20250475,32474107:221950 -k1,16010:21491511,32474107:221951 -k1,16010:24119288,32474107:221950 -k1,16010:26758862,32474107:221951 -k1,16010:27193781,32474107:221927 -k1,16010:30085013,32474107:221951 -k1,16010:31326048,32474107:221950 -k1,16010:32583029,32474107:0 -) -(1,16011:6630773,33339187:25952256,505283,134348 -k1,16010:8858942,33339187:144124 -k1,16010:12496136,33339187:144125 -k1,16010:13401788,33339187:144124 -k1,16010:14564997,33339187:144124 -k1,16010:16310822,33339187:144125 -k1,16010:18955145,33339187:144124 -k1,16010:22828923,33339187:144124 -k1,16010:23387836,33339187:144070 -k1,16010:26604288,33339187:144124 -k1,16010:29658867,33339187:144125 -k1,16010:31970267,33339187:144124 -k1,16010:32583029,33339187:0 -) -(1,16011:6630773,34204267:25952256,513147,134348 -k1,16010:9683549,34204267:169192 -k1,16010:12347041,34204267:169192 -k1,16010:15788446,34204267:169192 -k1,16010:17114348,34204267:169192 -k1,16010:19328263,34204267:169192 -k1,16010:20110217,34204267:169192 -k1,16010:21298495,34204267:169193 -k1,16010:24040630,34204267:169192 -k1,16010:24869114,34204267:169192 -k1,16010:27718073,34204267:169192 -k1,16010:28503303,34204267:169192 -k1,16010:31014752,34204267:169192 -k1,16010:32583029,34204267:0 -) -(1,16011:6630773,35069347:25952256,505283,134348 -k1,16010:8114925,35069347:153771 -k1,16010:9137049,35069347:153772 -k1,16010:10395102,35069347:153771 -k1,16010:14141557,35069347:153771 -k1,16010:15684691,35069347:153771 -k1,16010:16454501,35069347:153772 -k1,16010:17196785,35069347:153771 -k1,16010:19224886,35069347:153771 -k1,16010:23951759,35069347:153771 -k1,16010:27366602,35069347:153772 -k1,16010:30430827,35069347:153771 -k1,16010:32583029,35069347:0 -) -(1,16011:6630773,35934427:25952256,513147,134348 -k1,16010:7804608,35934427:154750 -k1,16010:8374156,35934427:154705 -k1,16010:11371201,35934427:154749 -k1,16010:12592222,35934427:154750 -k1,16010:14122572,35934427:154749 -k1,16010:15038850,35934427:154750 -k1,16010:17381191,35934427:154749 -k1,16010:18819136,35934427:154750 -k1,16010:21529134,35934427:154749 -k1,16010:22335312,35934427:154750 -k1,16010:22948158,35934427:154749 -k1,16010:24175077,35934427:154750 -k1,16010:25091354,35934427:154749 -k1,16010:28762766,35934427:154750 -k1,16010:30200710,35934427:154749 -k1,16010:31923737,35934427:154750 -k1,16010:32583029,35934427:0 -) -(1,16011:6630773,36799507:25952256,513147,134348 -k1,16010:10980234,36799507:170230 -k1,16010:14636323,36799507:170229 -k1,16010:19086709,36799507:170230 -k1,16010:22329921,36799507:170229 -k1,16010:23783346,36799507:170230 -k1,16010:27786777,36799507:170230 -k1,16010:28904657,36799507:170229 -k1,16010:30464250,36799507:170230 -k1,16011:32583029,36799507:0 -) -(1,16011:6630773,37664587:25952256,513147,134348 -k1,16010:9239157,37664587:191416 -k1,16010:11205288,37664587:191416 -k1,16010:12009466,37664587:191416 -k1,16010:13219967,37664587:191416 -k1,16010:15755606,37664587:191416 -k1,16010:17611636,37664587:191416 -k1,16010:18462344,37664587:191416 -k1,16010:22785805,37664587:191416 -k1,16010:23636514,37664587:191417 -k1,16010:25261858,37664587:191416 -k1,16010:25868109,37664587:191408 -k1,16010:27125796,37664587:191416 -k1,16010:30092006,37664587:191416 -k1,16010:32583029,37664587:0 -) -(1,16011:6630773,38529667:25952256,513147,134348 -k1,16010:8343733,38529667:216773 -k1,16010:9661511,38529667:216773 -k1,16010:11388233,38529667:216772 -k1,16010:12624091,38529667:216773 -k1,16010:15426915,38529667:216773 -k1,16010:17875189,38529667:216773 -k1,16010:18751253,38529667:216772 -k1,16010:19987111,38529667:216773 -k1,16010:21402538,38529667:216773 -k1,16010:24179147,38529667:216773 -k1,16010:27306373,38529667:216772 -k1,16010:28139184,38529667:216773 -k1,16010:29375042,38529667:216773 -k1,16010:32583029,38529667:0 -) -(1,16011:6630773,39394747:25952256,513147,126483 -k1,16010:8302350,39394747:196362 -k1,16010:11849569,39394747:196363 -k1,16010:17278325,39394747:196362 -k1,16010:18868638,39394747:196362 -k1,16010:22114391,39394747:196363 -k1,16010:24916464,39394747:196362 -k1,16010:26500224,39394747:196363 -k1,16010:30095283,39394747:196362 -k1,16011:32583029,39394747:0 -) -(1,16011:6630773,40259827:25952256,513147,134348 -k1,16010:8786776,40259827:155189 -k1,16010:10138653,40259827:155190 -k1,16010:14425887,40259827:155189 -k1,16010:15240368,40259827:155189 -k1,16010:18603544,40259827:155189 -k1,16010:21669188,40259827:155190 -k1,16010:23799632,40259827:155189 -k1,16010:24606249,40259827:155189 -k1,16010:26236654,40259827:155190 -k1,16010:28794393,40259827:155189 -k1,16010:32583029,40259827:0 -) -(1,16011:6630773,41124907:25952256,513147,134348 -k1,16010:8750789,41124907:235201 -k1,16010:12892592,41124907:235202 -k1,16010:14777990,41124907:235201 -k1,16010:16455639,41124907:235202 -k1,16010:20604650,41124907:235201 -k1,16010:25541405,41124907:235202 -k1,16010:27157450,41124907:235201 -k1,16010:29062509,41124907:235202 -k1,16010:30494397,41124907:235201 -k1,16010:32583029,41124907:0 -) -(1,16011:6630773,41989987:25952256,513147,134348 -k1,16010:7507754,41989987:217689 -k1,16010:10305595,41989987:217689 -k1,16010:14033391,41989987:217689 -k1,16010:15352084,41989987:217688 -k1,16010:18920629,41989987:217689 -k1,16010:23214002,41989987:217689 -k1,16010:24044453,41989987:217689 -k1,16010:25281227,41989987:217689 -k1,16010:28071859,41989987:217689 -k1,16010:28948839,41989987:217688 -k1,16010:30561134,41989987:217689 -k1,16010:31438115,41989987:217689 -k1,16010:32583029,41989987:0 -) -(1,16011:6630773,42855067:25952256,513147,126483 -k1,16010:7036183,42855067:192418 -k1,16010:8043875,42855067:192424 -k1,16010:9302570,42855067:192424 -k1,16010:12164275,42855067:192424 -k1,16010:12972738,42855067:192425 -k1,16010:15025729,42855067:192424 -k1,16010:16914880,42855067:192424 -k1,16010:18390500,42855067:192425 -k1,16010:22245076,42855067:192424 -k1,16010:23509669,42855067:192424 -k1,16010:26029276,42855067:192424 -k1,16010:27597302,42855067:192425 -k1,16010:29822653,42855067:192424 -k1,16010:32583029,42855067:0 -) -(1,16011:6630773,43720147:25952256,513147,134348 -g1,16010:8469057,43720147 -g1,16010:9319714,43720147 -g1,16010:10952871,43720147 -g1,16010:11566943,43720147 -g1,16010:15613791,43720147 -g1,16010:16832105,43720147 -g1,16010:18633034,43720147 -g1,16010:22041561,43720147 -k1,16011:32583029,43720147:6972378 -g1,16011:32583029,43720147 -) -] -(1,16015:32583029,45706769:0,0,0 -g1,16015:32583029,45706769 -) -) -] -(1,16015:6630773,47279633:25952256,485622,11795 -(1,16015:6630773,47279633:25952256,485622,11795 -(1,16015:6630773,47279633:0,0,0 -v1,16015:6630773,47279633:0,0,0 -) -g1,16015:6830002,47279633 -k1,16015:31387652,47279633:24557650 -) -) -] -(1,16015:4262630,4025873:0,0,0 -[1,16015:-473656,4025873:0,0,0 -(1,16015:-473656,-710413:0,0,0 -(1,16015:-473656,-710413:0,0,0 -g1,16015:-473656,-710413 -) -g1,16015:-473656,-710413 +(1,16000:6630773,14713778:25952256,131072,0 +r1,16013:32583029,14713778:25952256,131072,0 +g1,16000:32583029,14713778 +g1,16000:32583029,14713778 +) +(1,16002:6630773,16057271:25952256,513147,134348 +k1,16002:8596853,16057271:1966080 +k1,16001:12214495,16057271:238606 +k1,16001:15816408,16057271:238605 +k1,16001:16671052,16057271:238606 +k1,16001:18297711,16057271:238606 +k1,16001:19483967,16057271:238605 +k1,16001:22551107,16057271:238606 +k1,16001:23145573,16057271:238606 +k1,16001:24483872,16057271:238605 +k1,16001:25373906,16057271:238606 +k1,16001:25968372,16057271:238606 +k1,16001:29076143,16057271:238605 +k1,16001:29846246,16057271:238606 +k1,16001:32583029,16057271:1966080 +) +(1,16002:6630773,16922351:25952256,513147,134348 +k1,16002:8596853,16922351:1966080 +k1,16001:10068024,16922351:256789 +k1,16001:12458069,16922351:256848 +k1,16001:13986314,16922351:256847 +k1,16001:17358087,16922351:256847 +k1,16001:18146431,16922351:256847 +k1,16001:19687784,16922351:256847 +k1,16001:21158956,16922351:256790 +k1,16001:22516808,16922351:256847 +k1,16001:27725555,16922351:256847 +k1,16001:29363246,16922351:256847 +k1,16002:32583029,16922351:1966080 +) +(1,16002:6630773,17787431:25952256,513147,134348 +k1,16002:8596853,17787431:1966080 +k1,16001:12096728,17787431:208657 +k1,16001:14351420,17787431:208658 +k1,16001:14915937,17787431:208657 +k1,16001:15981150,17787431:208657 +k1,16001:16849099,17787431:208657 +k1,16001:19050051,17787431:208658 +k1,16001:21888668,17787431:208657 +k1,16001:22713363,17787431:208657 +k1,16001:24136393,17787431:208648 +k1,16001:25629556,17787431:208657 +k1,16001:26829773,17787431:208657 +k1,16001:28104702,17787431:208658 +k1,16001:28929397,17787431:208657 +k1,16001:32583029,17787431:1966080 +) +(1,16002:6630773,18652511:25952256,505283,134348 +g1,16002:8596853,18652511 +k1,16002:30616949,18652511:18795070 +g1,16002:32583029,18652511 +) +(1,16003:6630773,20304023:25952256,505283,95026 +k1,16003:25716823,20304023:19086050 +h1,16003:25716823,20304023:0,0,0 +g1,16003:28120028,20304023 +g1,16003:28769489,20304023 +g1,16003:30616949,20304023 +g1,16003:32583029,20304023 +) +(1,16004:6630773,21169103:25952256,485622,126483 +k1,16004:26098897,21169103:19468124 +h1,16003:26098897,21169103:0,0,0 +g1,16003:26657919,21169103 +g1,16003:29023112,21169103 +g1,16004:30616948,21169103 +g1,16004:32583028,21169103 +) +(1,16004:6630773,22427399:25952256,131072,0 +r1,16013:32583029,22427399:25952256,131072,0 +g1,16004:32583029,22427399 +g1,16004:34549109,22427399 +) +(1,16006:6630773,25258559:25952256,32768,229376 +(1,16006:6630773,25258559:0,32768,229376 +(1,16006:6630773,25258559:5505024,32768,229376 +r1,16013:12135797,25258559:5505024,262144,229376 +) +k1,16006:6630773,25258559:-5505024 +) +(1,16006:6630773,25258559:25952256,32768,0 +r1,16013:32583029,25258559:25952256,32768,0 +) +) +(1,16006:6630773,26890411:25952256,615776,151780 +(1,16006:6630773,26890411:1974731,582746,14155 +g1,16006:6630773,26890411 +g1,16006:8605504,26890411 +) +g1,16006:10904245,26890411 +g1,16006:11961996,26890411 +g1,16006:13950883,26890411 +k1,16006:32583029,26890411:15515516 +g1,16006:32583029,26890411 +) +(1,16009:6630773,28148707:25952256,513147,134348 +k1,16008:8347431,28148707:284041 +k1,16008:9046231,28148707:283957 +k1,16008:10521717,28148707:284041 +k1,16008:11824844,28148707:284042 +k1,16008:16663637,28148707:284041 +k1,16008:20020006,28148707:284041 +k1,16008:23214502,28148707:284042 +k1,16008:26443076,28148707:284041 +k1,16008:27488646,28148707:284042 +k1,16008:30245360,28148707:284041 +k1,16008:32583029,28148707:0 +) +(1,16009:6630773,29013787:25952256,513147,134348 +k1,16008:8690908,29013787:308358 +k1,16008:12025063,29013787:308358 +k1,16008:13281072,29013787:308358 +k1,16008:17825021,29013787:308357 +k1,16008:19696413,29013787:308358 +k1,16008:21201458,29013787:308358 +k1,16008:21924549,29013787:308248 +k1,16008:26014334,29013787:308358 +k1,16008:28993284,29013787:308358 +k1,16008:29657502,29013787:308358 +k1,16008:32583029,29013787:0 +) +(1,16009:6630773,29878867:25952256,513147,126483 +k1,16008:7818121,29878867:252805 +k1,16008:8730218,29878867:252805 +k1,16008:12008820,29878867:252805 +k1,16008:13453070,29878867:252805 +k1,16008:16782790,29878867:252805 +k1,16008:18320102,29878867:252806 +k1,16008:20254561,29878867:252805 +k1,16008:21273482,29878867:252805 +k1,16008:22545372,29878867:252805 +k1,16008:24519152,29878867:252805 +k1,16008:26161320,29878867:252805 +k1,16008:30670033,29878867:252805 +k1,16009:32583029,29878867:0 +) +(1,16009:6630773,30743947:25952256,513147,126483 +k1,16008:8670611,30743947:268400 +k1,16008:10813340,30743947:268399 +k1,16008:14107537,30743947:268400 +k1,16008:15851152,30743947:268400 +k1,16008:18015509,30743947:268400 +k1,16008:19475353,30743947:268399 +k1,16008:24325375,30743947:268400 +k1,16008:27942009,30743947:268400 +k1,16008:28935237,30743947:268400 +k1,16008:29819674,30743947:268399 +k1,16008:31069148,30743947:268400 +k1,16008:32583029,30743947:0 +) +(1,16009:6630773,31609027:25952256,513147,134348 +k1,16008:8202377,31609027:191416 +k1,16008:10574175,31609027:191415 +k1,16008:11513357,31609027:191416 +k1,16008:14718117,31609027:191415 +k1,16008:16952290,31609027:191416 +k1,16008:18835845,31609027:191415 +k1,16008:19686553,31609027:191416 +k1,16008:21386607,31609027:191415 +k1,16008:25016042,31609027:191416 +k1,16008:27263321,31609027:191415 +k1,16008:28473822,31609027:191416 +k1,16008:29757722,31609027:191415 +k1,16008:30608430,31609027:191416 +k1,16009:32583029,31609027:0 +) +(1,16009:6630773,32474107:25952256,513147,134348 +k1,16008:8701494,32474107:221950 +k1,16008:11305023,32474107:221951 +k1,16008:12143011,32474107:221950 +k1,16008:16094616,32474107:221951 +k1,16008:19400690,32474107:221950 +k1,16008:20250475,32474107:221950 +k1,16008:21491511,32474107:221951 +k1,16008:24119288,32474107:221950 +k1,16008:26758862,32474107:221951 +k1,16008:27193781,32474107:221927 +k1,16008:30085013,32474107:221951 +k1,16008:31326048,32474107:221950 +k1,16008:32583029,32474107:0 +) +(1,16009:6630773,33339187:25952256,505283,134348 +k1,16008:8858942,33339187:144124 +k1,16008:12496136,33339187:144125 +k1,16008:13401788,33339187:144124 +k1,16008:14564997,33339187:144124 +k1,16008:16310822,33339187:144125 +k1,16008:18955145,33339187:144124 +k1,16008:22828923,33339187:144124 +k1,16008:23387836,33339187:144070 +k1,16008:26604288,33339187:144124 +k1,16008:29658867,33339187:144125 +k1,16008:31970267,33339187:144124 +k1,16008:32583029,33339187:0 +) +(1,16009:6630773,34204267:25952256,513147,134348 +k1,16008:9683549,34204267:169192 +k1,16008:12347041,34204267:169192 +k1,16008:15788446,34204267:169192 +k1,16008:17114348,34204267:169192 +k1,16008:19328263,34204267:169192 +k1,16008:20110217,34204267:169192 +k1,16008:21298495,34204267:169193 +k1,16008:24040630,34204267:169192 +k1,16008:24869114,34204267:169192 +k1,16008:27718073,34204267:169192 +k1,16008:28503303,34204267:169192 +k1,16008:31014752,34204267:169192 +k1,16008:32583029,34204267:0 +) +(1,16009:6630773,35069347:25952256,505283,134348 +k1,16008:8114925,35069347:153771 +k1,16008:9137049,35069347:153772 +k1,16008:10395102,35069347:153771 +k1,16008:14141557,35069347:153771 +k1,16008:15684691,35069347:153771 +k1,16008:16454501,35069347:153772 +k1,16008:17196785,35069347:153771 +k1,16008:19224886,35069347:153771 +k1,16008:23951759,35069347:153771 +k1,16008:27366602,35069347:153772 +k1,16008:30430827,35069347:153771 +k1,16008:32583029,35069347:0 +) +(1,16009:6630773,35934427:25952256,513147,134348 +k1,16008:7804608,35934427:154750 +k1,16008:8374156,35934427:154705 +k1,16008:11371201,35934427:154749 +k1,16008:12592222,35934427:154750 +k1,16008:14122572,35934427:154749 +k1,16008:15038850,35934427:154750 +k1,16008:17381191,35934427:154749 +k1,16008:18819136,35934427:154750 +k1,16008:21529134,35934427:154749 +k1,16008:22335312,35934427:154750 +k1,16008:22948158,35934427:154749 +k1,16008:24175077,35934427:154750 +k1,16008:25091354,35934427:154749 +k1,16008:28762766,35934427:154750 +k1,16008:30200710,35934427:154749 +k1,16008:31923737,35934427:154750 +k1,16008:32583029,35934427:0 +) +(1,16009:6630773,36799507:25952256,513147,134348 +k1,16008:10980234,36799507:170230 +k1,16008:14636323,36799507:170229 +k1,16008:19086709,36799507:170230 +k1,16008:22329921,36799507:170229 +k1,16008:23783346,36799507:170230 +k1,16008:27786777,36799507:170230 +k1,16008:28904657,36799507:170229 +k1,16008:30464250,36799507:170230 +k1,16009:32583029,36799507:0 +) +(1,16009:6630773,37664587:25952256,513147,134348 +k1,16008:9239157,37664587:191416 +k1,16008:11205288,37664587:191416 +k1,16008:12009466,37664587:191416 +k1,16008:13219967,37664587:191416 +k1,16008:15755606,37664587:191416 +k1,16008:17611636,37664587:191416 +k1,16008:18462344,37664587:191416 +k1,16008:22785805,37664587:191416 +k1,16008:23636514,37664587:191417 +k1,16008:25261858,37664587:191416 +k1,16008:25868109,37664587:191408 +k1,16008:27125796,37664587:191416 +k1,16008:30092006,37664587:191416 +k1,16008:32583029,37664587:0 +) +(1,16009:6630773,38529667:25952256,513147,134348 +k1,16008:8343733,38529667:216773 +k1,16008:9661511,38529667:216773 +k1,16008:11388233,38529667:216772 +k1,16008:12624091,38529667:216773 +k1,16008:15426915,38529667:216773 +k1,16008:17875189,38529667:216773 +k1,16008:18751253,38529667:216772 +k1,16008:19987111,38529667:216773 +k1,16008:21402538,38529667:216773 +k1,16008:24179147,38529667:216773 +k1,16008:27306373,38529667:216772 +k1,16008:28139184,38529667:216773 +k1,16008:29375042,38529667:216773 +k1,16008:32583029,38529667:0 +) +(1,16009:6630773,39394747:25952256,513147,126483 +k1,16008:8302350,39394747:196362 +k1,16008:11849569,39394747:196363 +k1,16008:17278325,39394747:196362 +k1,16008:18868638,39394747:196362 +k1,16008:22114391,39394747:196363 +k1,16008:24916464,39394747:196362 +k1,16008:26500224,39394747:196363 +k1,16008:30095283,39394747:196362 +k1,16009:32583029,39394747:0 +) +(1,16009:6630773,40259827:25952256,513147,134348 +k1,16008:8786776,40259827:155189 +k1,16008:10138653,40259827:155190 +k1,16008:14425887,40259827:155189 +k1,16008:15240368,40259827:155189 +k1,16008:18603544,40259827:155189 +k1,16008:21669188,40259827:155190 +k1,16008:23799632,40259827:155189 +k1,16008:24606249,40259827:155189 +k1,16008:26236654,40259827:155190 +k1,16008:28794393,40259827:155189 +k1,16008:32583029,40259827:0 +) +(1,16009:6630773,41124907:25952256,513147,134348 +k1,16008:8750789,41124907:235201 +k1,16008:12892592,41124907:235202 +k1,16008:14777990,41124907:235201 +k1,16008:16455639,41124907:235202 +k1,16008:20604650,41124907:235201 +k1,16008:25541405,41124907:235202 +k1,16008:27157450,41124907:235201 +k1,16008:29062509,41124907:235202 +k1,16008:30494397,41124907:235201 +k1,16008:32583029,41124907:0 +) +(1,16009:6630773,41989987:25952256,513147,134348 +k1,16008:7507754,41989987:217689 +k1,16008:10305595,41989987:217689 +k1,16008:14033391,41989987:217689 +k1,16008:15352084,41989987:217688 +k1,16008:18920629,41989987:217689 +k1,16008:23214002,41989987:217689 +k1,16008:24044453,41989987:217689 +k1,16008:25281227,41989987:217689 +k1,16008:28071859,41989987:217689 +k1,16008:28948839,41989987:217688 +k1,16008:30561134,41989987:217689 +k1,16008:31438115,41989987:217689 +k1,16008:32583029,41989987:0 +) +(1,16009:6630773,42855067:25952256,513147,126483 +k1,16008:7036183,42855067:192418 +k1,16008:8043875,42855067:192424 +k1,16008:9302570,42855067:192424 +k1,16008:12164275,42855067:192424 +k1,16008:12972738,42855067:192425 +k1,16008:15025729,42855067:192424 +k1,16008:16914880,42855067:192424 +k1,16008:18390500,42855067:192425 +k1,16008:22245076,42855067:192424 +k1,16008:23509669,42855067:192424 +k1,16008:26029276,42855067:192424 +k1,16008:27597302,42855067:192425 +k1,16008:29822653,42855067:192424 +k1,16008:32583029,42855067:0 +) +(1,16009:6630773,43720147:25952256,513147,134348 +g1,16008:8469057,43720147 +g1,16008:9319714,43720147 +g1,16008:10952871,43720147 +g1,16008:11566943,43720147 +g1,16008:15613791,43720147 +g1,16008:16832105,43720147 +g1,16008:18633034,43720147 +g1,16008:22041561,43720147 +k1,16009:32583029,43720147:6972378 +g1,16009:32583029,43720147 +) +] +(1,16013:32583029,45706769:0,0,0 +g1,16013:32583029,45706769 +) +) +] +(1,16013:6630773,47279633:25952256,485622,11795 +(1,16013:6630773,47279633:25952256,485622,11795 +(1,16013:6630773,47279633:0,0,0 +v1,16013:6630773,47279633:0,0,0 +) +g1,16013:6830002,47279633 +k1,16013:31387652,47279633:24557650 +) +) +] +(1,16013:4262630,4025873:0,0,0 +[1,16013:-473656,4025873:0,0,0 +(1,16013:-473656,-710413:0,0,0 +(1,16013:-473656,-710413:0,0,0 +g1,16013:-473656,-710413 +) +g1,16013:-473656,-710413 ) ] ) ] !16203 -}258 +}259 !12 -{259 -[1,16022:4262630,47279633:28320399,43253760,0 -(1,16022:4262630,4025873:0,0,0 -[1,16022:-473656,4025873:0,0,0 -(1,16022:-473656,-710413:0,0,0 -(1,16022:-473656,-644877:0,0,0 -k1,16022:-473656,-644877:-65536 +{260 +[1,16020:4262630,47279633:28320399,43253760,0 +(1,16020:4262630,4025873:0,0,0 +[1,16020:-473656,4025873:0,0,0 +(1,16020:-473656,-710413:0,0,0 +(1,16020:-473656,-644877:0,0,0 +k1,16020:-473656,-644877:-65536 ) -(1,16022:-473656,4736287:0,0,0 -k1,16022:-473656,4736287:5209943 +(1,16020:-473656,4736287:0,0,0 +k1,16020:-473656,4736287:5209943 ) -g1,16022:-473656,-710413 +g1,16020:-473656,-710413 ) ] ) -[1,16022:6630773,47279633:25952256,43253760,0 -[1,16022:6630773,4812305:25952256,786432,0 -(1,16022:6630773,4812305:25952256,505283,134348 -(1,16022:6630773,4812305:25952256,505283,134348 -g1,16022:3078558,4812305 -[1,16022:3078558,4812305:0,0,0 -(1,16022:3078558,2439708:0,1703936,0 -k1,16022:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16022:2537886,2439708:1179648,16384,0 +[1,16020:6630773,47279633:25952256,43253760,0 +[1,16020:6630773,4812305:25952256,786432,0 +(1,16020:6630773,4812305:25952256,505283,134348 +(1,16020:6630773,4812305:25952256,505283,134348 +g1,16020:3078558,4812305 +[1,16020:3078558,4812305:0,0,0 +(1,16020:3078558,2439708:0,1703936,0 +k1,16020:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16020:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16022:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16020:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16022:3078558,4812305:0,0,0 -(1,16022:3078558,2439708:0,1703936,0 -g1,16022:29030814,2439708 -g1,16022:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16022:36151628,1915420:16384,1179648,0 +[1,16020:3078558,4812305:0,0,0 +(1,16020:3078558,2439708:0,1703936,0 +g1,16020:29030814,2439708 +g1,16020:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16020:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16022:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16020:37855564,2439708:1179648,16384,0 ) ) -k1,16022:3078556,2439708:-34777008 +k1,16020:3078556,2439708:-34777008 ) ] -[1,16022:3078558,4812305:0,0,0 -(1,16022:3078558,49800853:0,16384,2228224 -k1,16022:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16022:2537886,49800853:1179648,16384,0 +[1,16020:3078558,4812305:0,0,0 +(1,16020:3078558,49800853:0,16384,2228224 +k1,16020:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16020:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16022:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16020:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16022:3078558,4812305:0,0,0 -(1,16022:3078558,49800853:0,16384,2228224 -g1,16022:29030814,49800853 -g1,16022:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16022:36151628,51504789:16384,1179648,0 +[1,16020:3078558,4812305:0,0,0 +(1,16020:3078558,49800853:0,16384,2228224 +g1,16020:29030814,49800853 +g1,16020:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16020:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16022:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16020:37855564,49800853:1179648,16384,0 ) ) -k1,16022:3078556,49800853:-34777008 +k1,16020:3078556,49800853:-34777008 ) -] -g1,16022:6630773,4812305 -k1,16022:23347041,4812305:15520891 -g1,16022:23960458,4812305 -g1,16022:27572802,4812305 -g1,16022:29306229,4812305 -) -) -] -[1,16022:6630773,45706769:25952256,40108032,0 -(1,16022:6630773,45706769:25952256,40108032,0 -(1,16022:6630773,45706769:0,0,0 -g1,16022:6630773,45706769 -) -[1,16022:6630773,45706769:25952256,40108032,0 -(1,16012:6630773,6254097:25952256,32768,229376 -(1,16012:6630773,6254097:0,32768,229376 -(1,16012:6630773,6254097:5505024,32768,229376 -r1,16022:12135797,6254097:5505024,262144,229376 -) -k1,16012:6630773,6254097:-5505024 -) -(1,16012:6630773,6254097:25952256,32768,0 -r1,16022:32583029,6254097:25952256,32768,0 -) -) -(1,16012:6630773,7885949:25952256,606339,14155 -(1,16012:6630773,7885949:1974731,582746,14155 -g1,16012:6630773,7885949 -g1,16012:8605504,7885949 -) -k1,16012:32583029,7885949:19020644 -g1,16012:32583029,7885949 -) -(1,16015:6630773,9144245:25952256,513147,134348 -k1,16014:7527256,9144245:136265 -k1,16014:10066072,9144245:136266 -k1,16014:12956815,9144245:136265 -k1,16014:16014676,9144245:136266 -k1,16014:17321414,9144245:136265 -k1,16014:18932895,9144245:136266 -k1,16014:21403552,9144245:136265 -k1,16014:23983000,9144245:136266 -k1,16014:26611599,9144245:136265 -k1,16014:28141816,9144245:136266 -k1,16014:29712009,9144245:136265 -k1,16014:30263055,9144245:136203 -k1,16014:32583029,9144245:0 -) -(1,16015:6630773,10009325:25952256,513147,134348 -k1,16014:9734558,10009325:145490 -k1,16014:12905844,10009325:145489 -k1,16014:14242779,10009325:145490 -k1,16014:17465184,10009325:145490 -k1,16014:18558325,10009325:145490 -k1,16014:20964151,10009325:145489 -k1,16014:22301086,10009325:145490 -k1,16014:26682168,10009325:145490 -k1,16014:28390692,10009325:145490 -k1,16014:30081520,10009325:145489 -k1,16014:30886302,10009325:145490 -k1,16014:32583029,10009325:0 -) -(1,16015:6630773,10874405:25952256,513147,134348 -k1,16014:8049955,10874405:227737 -k1,16014:9787643,10874405:227738 -k1,16014:13016929,10874405:227737 -k1,16014:16101381,10874405:227738 -k1,16014:16980546,10874405:227737 -k1,16014:19832345,10874405:227737 -k1,16014:23080637,10874405:227738 -k1,16014:24117744,10874405:227737 -k1,16014:26297144,10874405:227738 -k1,16014:28241269,10874405:227737 -k1,16014:29858370,10874405:227738 -k1,16014:31350952,10874405:227737 -k1,16014:32583029,10874405:0 -) -(1,16015:6630773,11739485:25952256,513147,134348 -k1,16014:9058206,11739485:165786 -k1,16014:11198792,11739485:165986 -k1,16014:12561265,11739485:165786 -k1,16014:16802735,11739485:165786 -k1,16014:17627813,11739485:165786 -k1,16014:19490327,11739485:165787 -k1,16014:22681910,11739485:165786 -k1,16014:23948701,11739485:165786 -k1,16014:27164533,11739485:165786 -k1,16014:31210050,11739485:165786 -k1,16014:32583029,11739485:0 -) -(1,16015:6630773,12604565:25952256,505283,134348 -k1,16014:7858066,12604565:208208 -k1,16014:9749238,12604565:208207 -k1,16014:11148891,12604565:208208 -k1,16014:16095352,12604565:208208 -k1,16014:18934831,12604565:208208 -k1,16014:19759076,12604565:208207 -k1,16014:23373845,12604565:208208 -k1,16014:24683058,12604565:208208 -k1,16014:27334447,12604565:208207 -k1,16014:30224388,12604565:208208 -k1,16014:32583029,12604565:0 -) -(1,16015:6630773,13469645:25952256,513147,134348 -k1,16014:10443257,13469645:234874 -k1,16014:13412948,13469645:234874 -k1,16014:14409349,13469645:234873 -k1,16014:15663308,13469645:234874 -k1,16014:18333500,13469645:234874 -k1,16014:20657006,13469645:234874 -k1,16014:21559035,13469645:234873 -k1,16014:22208716,13469645:234838 -k1,16014:23656661,13469645:234874 -k1,16014:26539845,13469645:234874 -k1,16014:27698777,13469645:234874 -k1,16014:28952735,13469645:234873 -k1,16014:30889579,13469645:234874 -k1,16014:32583029,13469645:0 -) -(1,16015:6630773,14334725:25952256,513147,7863 -g1,16014:7849087,14334725 -g1,16014:9317093,14334725 -g1,16014:10175614,14334725 -g1,16014:11764206,14334725 -g1,16014:13228280,14334725 -g1,16014:14528514,14334725 -g1,16014:16013559,14334725 -k1,16015:32583029,14334725:13477482 -g1,16015:32583029,14334725 -) -(1,16018:6630773,15199805:25952256,513147,134348 -h1,16016:6630773,15199805:983040,0,0 -k1,16016:9477656,15199805:146800 -k1,16016:13354111,15199805:146801 -k1,16016:16411365,15199805:146800 -k1,16016:18033381,15199805:146801 -k1,16016:20125290,15199805:146800 -k1,16016:20884853,15199805:146801 -k1,16016:24303866,15199805:146800 -k1,16016:28526351,15199805:146801 -k1,16016:29434679,15199805:146800 -k1,16016:31773659,15199805:146801 -k1,16016:32583029,15199805:0 -) -(1,16018:6630773,16064885:25952256,513147,126483 -k1,16016:9588544,16064885:195428 -k1,16016:14064784,16064885:195428 -k1,16016:16895416,16064885:195429 -k1,16016:19991467,16064885:195428 -k1,16016:22053360,16064885:195428 -k1,16016:23440233,16064885:195428 -k1,16016:26659492,16064885:195428 -k1,16016:28297368,16064885:195429 -k1,16016:30006022,16064885:195428 -k1,16016:31149101,16064885:195428 -k1,16018:32583029,16064885:0 -) -(1,16018:6630773,16929965:25952256,513147,134348 -k1,16016:7373405,16929965:154119 -k1,16017:10062457,16929965:154119 -k1,16017:13726683,16929965:154119 -k1,16017:14412299,16929965:154119 -k1,16017:15585503,16929965:154119 -k1,16017:17074589,16929965:154118 -k1,16017:19890125,16929965:154119 -k1,16017:20703536,16929965:154119 -k1,16017:21628358,16929965:154119 -k1,16017:25169378,16929965:154119 -k1,16017:30380255,16929965:154119 -k1,16017:31193666,16929965:154119 -k1,16017:32583029,16929965:0 -) -(1,16018:6630773,17795045:25952256,513147,134348 -k1,16017:9215871,17795045:237598 -k1,16017:10644913,17795045:237597 -k1,16017:15138419,17795045:237598 -k1,16017:16660523,17795045:237598 -k1,16017:20269292,17795045:237597 -k1,16017:21525975,17795045:237598 -k1,16017:23630037,17795045:237597 -k1,16017:24526927,17795045:237598 -k1,16017:28199922,17795045:237598 -k1,16017:29385170,17795045:237597 -k1,16017:31193666,17795045:237598 -k1,16017:32583029,17795045:0 -) -(1,16018:6630773,18660125:25952256,505283,134348 -k1,16017:8141097,18660125:245479 -k1,16017:10121969,18660125:245479 -k1,16017:10723308,18660125:245479 -k1,16017:12251982,18660125:245479 -k1,16017:15687754,18660125:245479 -k1,16017:17124678,18660125:245479 -k1,16017:20304860,18660125:245480 -k1,16017:20906199,18660125:245479 -k1,16017:22434873,18660125:245479 -k1,16017:24938067,18660125:245479 -k1,16017:26137095,18660125:245479 -k1,16017:28151391,18660125:245479 -k1,16017:29444135,18660125:245479 -k1,16017:30974120,18660125:245479 -k1,16018:32583029,18660125:0 -) -(1,16018:6630773,19525205:25952256,513147,134348 -k1,16017:7954546,19525205:246361 -k1,16017:11711014,19525205:246361 -k1,16017:12488871,19525205:246360 -k1,16017:14589901,19525205:246361 -k1,16017:15645632,19525205:246361 -k1,16017:16247853,19525205:246361 -k1,16017:19896187,19525205:246360 -k1,16017:23904970,19525205:246361 -k1,16017:24834216,19525205:246361 -k1,16017:28283321,19525205:246361 -k1,16017:29188973,19525205:246360 -k1,16017:31298523,19525205:246361 -k1,16017:32583029,19525205:0 -) -(1,16018:6630773,20390285:25952256,513147,134348 -k1,16017:7433407,20390285:271137 -k1,16017:10466887,20390285:271137 -k1,16017:12305645,20390285:271137 -k1,16017:13861288,20390285:271137 -k1,16017:14748462,20390285:271136 -k1,16017:16038684,20390285:271137 -k1,16017:16724592,20390285:271065 -k1,16017:20011696,20390285:271137 -k1,16017:21479520,20390285:271137 -k1,16017:25701167,20390285:271137 -k1,16017:26588341,20390285:271136 -k1,16017:28062719,20390285:271137 -k1,16017:29700937,20390285:271137 -k1,16017:31073079,20390285:271137 -k1,16017:32583029,20390285:0 -) -(1,16018:6630773,21255365:25952256,513147,134348 -k1,16017:7881621,21255365:231763 -k1,16017:9205870,21255365:231764 -k1,16017:10096925,21255365:231763 -k1,16017:10684548,21255365:231763 -k1,16017:12129383,21255365:231764 -k1,16017:15012733,21255365:231763 -k1,16017:17502212,21255365:231764 -k1,16017:18925420,21255365:231763 -k1,16017:19918711,21255365:231763 -k1,16017:23406304,21255365:231764 -k1,16017:24289495,21255365:231763 -k1,16017:26948712,21255365:231763 -k1,16017:30583105,21255365:231764 -k1,16017:31576396,21255365:231763 -k1,16018:32583029,21255365:0 -) -(1,16018:6630773,22120445:25952256,513147,134348 -k1,16017:8969813,22120445:260238 -k1,16017:11557233,22120445:260237 -k1,16017:12476763,22120445:260238 -k1,16017:13498528,22120445:260237 -k1,16017:15442386,22120445:260238 -k1,16017:18964350,22120445:260237 -k1,16017:20243673,22120445:260238 -k1,16017:25457776,22120445:260237 -k1,16017:26377306,22120445:260238 -k1,16017:27656629,22120445:260238 -k1,16017:31914562,22120445:260237 -k1,16017:32583029,22120445:0 -) -(1,16018:6630773,22985525:25952256,513147,134348 -k1,16017:8210694,22985525:190558 -k1,16017:10681251,22985525:190559 -k1,16017:12265760,22985525:190558 -k1,16017:14780881,22985525:190559 -k1,16017:15622867,22985525:190558 -k1,16017:16879696,22985525:190558 -k1,16017:20715367,22985525:190559 -k1,16017:21588810,22985525:190558 -k1,16017:25166924,22985525:190558 -k1,16017:26920517,22985525:190559 -k1,16017:28491919,22985525:190558 -k1,16017:30420493,22985525:190559 -k1,16017:31420421,22985525:190558 -k1,16018:32583029,22985525:0 -) -(1,16018:6630773,23850605:25952256,513147,126483 -k1,16017:9821900,23850605:171883 -k1,16017:11094788,23850605:171883 -k1,16017:13010583,23850605:171882 -k1,16017:15675456,23850605:171883 -k1,16017:16866424,23850605:171883 -k1,16017:21113991,23850605:171883 -k1,16017:24965721,23850605:171883 -k1,16017:27543431,23850605:171883 -k1,16017:28331351,23850605:171882 -k1,16017:29937162,23850605:171883 -k1,16017:30697558,23850605:171883 -k1,16017:32583029,23850605:0 -) -(1,16018:6630773,24715685:25952256,513147,134348 -k1,16017:8311689,24715685:205701 -k1,16017:10027340,24715685:205701 -k1,16017:14460769,24715685:205701 -k1,16017:17719137,24715685:205701 -k1,16017:19614355,24715685:205700 -k1,16017:23630975,24715685:205701 -k1,16017:27235373,24715685:205701 -k1,16017:31649796,24715685:205701 -k1,16017:32583029,24715685:0 -) -(1,16018:6630773,25580765:25952256,505283,7863 -g1,16017:8714817,25580765 -k1,16018:32583028,25580765:22319596 -g1,16018:32583028,25580765 -) -(1,16020:6630773,26445845:25952256,513147,126483 -h1,16019:6630773,26445845:983040,0,0 -k1,16019:10456110,26445845:237896 -k1,16019:12682367,26445845:237895 -k1,16019:17052308,26445845:237896 -k1,16019:17821701,26445845:237896 -k1,16019:19078681,26445845:237895 -k1,16019:22698234,26445845:237896 -k1,16019:24821600,26445845:237895 -k1,16019:25590993,26445845:237896 -k1,16019:26184749,26445845:237896 -k1,16019:29920956,26445845:237895 -k1,16019:31931601,26445845:237896 -k1,16019:32583029,26445845:0 -) -(1,16020:6630773,27310925:25952256,513147,126483 -k1,16019:9386766,27310925:159457 -k1,16019:10876604,27310925:159457 -k1,16019:12425424,27310925:159457 -k1,16019:15139474,27310925:159457 -k1,16019:18703527,27310925:159458 -k1,16019:19854544,27310925:159457 -k1,16019:23211503,27310925:159457 -k1,16019:23986998,27310925:159457 -k1,16019:24561258,27310925:159417 -k1,16019:26216903,27310925:159458 -k1,16019:27567805,27310925:159457 -k1,16019:30062310,27310925:159457 -k1,16019:30849602,27310925:159457 -k1,16019:32583029,27310925:0 -) -(1,16020:6630773,28176005:25952256,513147,134348 -k1,16019:8384910,28176005:212074 -k1,16019:9055082,28176005:212075 -k1,16019:9798653,28176005:212074 -k1,16019:11296544,28176005:212075 -k1,16019:11864478,28176005:212074 -k1,16019:13359747,28176005:212074 -k1,16019:17334244,28176005:212075 -k1,16019:18229203,28176005:212074 -k1,16019:21644022,28176005:212075 -k1,16019:22515388,28176005:212074 -k1,16019:24590651,28176005:212074 -k1,16019:26281874,28176005:212075 -k1,16019:28818510,28176005:212074 -k1,16019:29682013,28176005:212075 -k1,16019:30682485,28176005:212074 -k1,16020:32583029,28176005:0 -) -(1,16020:6630773,29041085:25952256,513147,134348 -k1,16019:10264376,29041085:197550 -k1,16019:10920023,29041085:197550 -k1,16019:12221855,29041085:197550 -k1,16019:13705221,29041085:197550 -k1,16019:14650538,29041085:197551 -k1,16019:16287914,29041085:197550 -k1,16019:17171626,29041085:197550 -k1,16019:17725036,29041085:197550 -k1,16019:19205781,29041085:197550 -k1,16019:22245627,29041085:197550 -k1,16019:23921669,29041085:197550 -k1,16019:26213750,29041085:197550 -k1,16019:27070592,29041085:197550 -k1,16019:28287227,29041085:197550 -k1,16019:28899619,29041085:197549 -k1,16019:32113136,29041085:197550 -k1,16019:32583029,29041085:0 -) -(1,16020:6630773,29906165:25952256,513147,134348 -k1,16019:7408194,29906165:245924 -k1,16019:8852771,29906165:245923 -k1,16019:11058221,29906165:245924 -k1,16019:12495590,29906165:245924 -k1,16019:15566770,29906165:245923 -k1,16019:17004139,29906165:245924 -k1,16019:18269148,29906165:245924 -k1,16019:21974061,29906165:245923 -k1,16019:23787606,29906165:245924 -k1,16019:25591976,29906165:245924 -k1,16019:27036553,29906165:245923 -k1,16019:29510046,29906165:245924 -k1,16019:32583029,29906165:0 -) -(1,16020:6630773,30771245:25952256,513147,134348 -k1,16019:8698652,30771245:245323 -k1,16019:10729831,30771245:245323 -k1,16019:12523770,30771245:245323 -k1,16019:14149281,30771245:245323 -k1,16019:17125489,30771245:245323 -k1,16019:19404395,30771245:245324 -k1,16019:22980258,30771245:245323 -k1,16019:26199605,30771245:245323 -k1,16019:27060966,30771245:245323 -k1,16019:28325374,30771245:245323 -k1,16019:30659329,30771245:245323 -k1,16019:31563944,30771245:245323 -k1,16019:32583029,30771245:0 -) -(1,16020:6630773,31636325:25952256,513147,134348 -k1,16019:9729416,31636325:188189 -k1,16019:13496526,31636325:188189 -k1,16019:14703800,31636325:188189 -k1,16019:18273646,31636325:188189 -k1,16019:19842679,31636325:188189 -k1,16019:20562365,31636325:188189 -k1,16019:21106415,31636325:188190 -k1,16019:22694453,31636325:188189 -k1,16019:25526364,31636325:188189 -k1,16019:26662204,31636325:188189 -k1,16019:27869478,31636325:188189 -k1,16019:30218389,31636325:188189 -k1,16019:31478747,31636325:188189 -k1,16019:32583029,31636325:0 -) -(1,16020:6630773,32501405:25952256,513147,134348 -k1,16019:7609413,32501405:230874 -k1,16019:10771712,32501405:230874 -k1,16019:11654014,32501405:230874 -k1,16019:15204287,32501405:230874 -k1,16019:17146306,32501405:230874 -k1,16019:18707561,32501405:230874 -k1,16019:20275368,32501405:230873 -k1,16019:21572513,32501405:230874 -k1,16019:22551153,32501405:230874 -k1,16019:24650458,32501405:230874 -k1,16019:25540624,32501405:230874 -k1,16019:26790583,32501405:230874 -k1,16019:29592434,32501405:230874 -k1,16019:31107814,32501405:230874 -k1,16019:32583029,32501405:0 -) -(1,16020:6630773,33366485:25952256,505283,134348 -k1,16019:8660428,33366485:262149 -k1,16019:10585225,33366485:262149 -k1,16019:13482577,33366485:262149 -k1,16019:15341182,33366485:262148 -k1,16019:16421220,33366485:262149 -k1,16019:17039229,33366485:262149 -k1,16019:18682222,33366485:262149 -k1,16019:19157300,33366485:262086 -k1,16019:21390772,33366485:262149 -k1,16019:23333263,33366485:262148 -k1,16019:26709683,33366485:262149 -k1,16019:29540843,33366485:262149 -k1,16019:30994437,33366485:262149 -k1,16020:32583029,33366485:0 -) -(1,16020:6630773,34231565:25952256,513147,126483 -k1,16019:8733006,34231565:212174 -k1,16019:13153901,34231565:212173 -k1,16019:14025367,34231565:212174 -k1,16019:17170277,34231565:212174 -k1,16019:19153234,34231565:212174 -k1,16019:21941627,34231565:212173 -k1,16019:23300026,34231565:212174 -k1,16019:24946128,34231565:212174 -k1,16019:25573132,34231565:212161 -k1,16019:28215380,34231565:212173 -k1,16019:29804465,34231565:212174 -k1,16019:31088808,34231565:212174 -k1,16019:32583029,34231565:0 -) -(1,16020:6630773,35096645:25952256,505283,134348 -k1,16019:8210125,35096645:190644 -k1,16019:12532814,35096645:190644 -k1,16019:14970688,35096645:190644 -k1,16019:17152316,35096645:190644 -k1,16019:18178543,35096645:190643 -k1,16019:19055349,35096645:190644 -k1,16019:22565392,35096645:190644 -k1,16019:27608322,35096645:190644 -k1,16019:28990411,35096645:190644 -k1,16019:31386342,35096645:190644 -k1,16019:32583029,35096645:0 -) -(1,16020:6630773,35961725:25952256,505283,134348 -k1,16019:10016363,35961725:229376 -k1,16019:10931901,35961725:229376 -k1,16019:11517137,35961725:229376 -k1,16019:14783451,35961725:229376 -k1,16019:15544324,35961725:229376 -k1,16019:18927948,35961725:229376 -k1,16019:21657523,35961725:229376 -k1,16019:24046310,35961725:229376 -k1,16019:25665049,35961725:229376 -k1,16019:28504724,35961725:229376 -k1,16019:30423618,35961725:229376 -k1,16019:32583029,35961725:0 -) -(1,16020:6630773,36826805:25952256,513147,126483 -k1,16019:8574876,36826805:232958 -k1,16019:9755486,36826805:232959 -k1,16019:11938795,36826805:232958 -k1,16019:13561117,36826805:232959 -k1,16019:16348668,36826805:232958 -k1,16019:17113124,36826805:232959 -k1,16019:18412353,36826805:232958 -k1,16019:19664397,36826805:232959 -k1,16019:21489225,36826805:232958 -k1,16019:23633869,36826805:232959 -k1,16019:24324924,36826805:232958 -k1,16019:25089380,36826805:232959 -k1,16019:26972535,36826805:232958 -k1,16019:29982910,36826805:232959 -k1,16019:30867296,36826805:232958 -k1,16019:32583029,36826805:0 -) -(1,16020:6630773,37691885:25952256,513147,134348 -k1,16019:7976378,37691885:253120 -k1,16019:8888790,37691885:253120 -k1,16019:10517511,37691885:253120 -k1,16019:13963545,37691885:253120 -k1,16019:17127119,37691885:253120 -k1,16019:18066401,37691885:253120 -k1,16019:19338606,37691885:253120 -k1,16019:21121992,37691885:253120 -k1,16019:23402141,37691885:253120 -k1,16019:24897824,37691885:253120 -k1,16019:26886337,37691885:253120 -k1,16019:28158542,37691885:253120 -k1,16019:29694857,37691885:253120 -k1,16019:32583029,37691885:0 -) -(1,16020:6630773,38556965:25952256,513147,134348 -g1,16019:8205603,38556965 -g1,16019:9352483,38556965 -g1,16019:11243852,38556965 -g1,16019:13437997,38556965 -g1,16019:14296518,38556965 -g1,16019:15514832,38556965 -g1,16019:17103424,38556965 -g1,16019:19857246,38556965 -k1,16020:32583029,38556965:9726856 -g1,16020:32583029,38556965 -) -(1,16022:6630773,39422045:25952256,513147,126483 -h1,16021:6630773,39422045:983040,0,0 -k1,16021:9558761,39422045:161713 -k1,16021:10076335,39422045:161714 -k1,16021:14301935,39422045:161713 -k1,16021:17222058,39422045:161713 -k1,16021:17739631,39422045:161713 -k1,16021:19621665,39422045:161714 -k1,16021:20442670,39422045:161713 -k1,16021:23882494,39422045:161713 -k1,16021:27622473,39422045:161713 -k1,16021:29277097,39422045:161714 -k1,16021:29853616,39422045:161676 -k1,16021:31731717,39422045:161713 -k1,16022:32583029,39422045:0 -) -(1,16022:6630773,40287125:25952256,513147,134348 -k1,16021:7777088,40287125:156066 -k1,16021:9367082,40287125:156066 -k1,16021:9937947,40287125:156022 -k1,16021:10855541,40287125:156066 -k1,16021:12617239,40287125:156066 -k1,16021:13641657,40287125:156066 -k1,16021:15566540,40287125:156066 -k1,16021:17578585,40287125:156065 -k1,16021:19352080,40287125:156066 -k1,16021:20527231,40287125:156066 -k1,16021:23462024,40287125:156066 -k1,16021:25298433,40287125:156066 -k1,16021:26070536,40287125:156065 -k1,16021:26582462,40287125:156066 -k1,16021:30071689,40287125:156066 -k1,16021:32583029,40287125:0 -) -(1,16022:6630773,41152205:25952256,513147,126483 -k1,16021:7410450,41152205:166915 -k1,16021:9028987,41152205:166915 -k1,16021:10551187,41152205:166915 -k1,16021:11334140,41152205:166915 -k1,16021:12520140,41152205:166915 -k1,16021:16924613,41152205:166915 -k1,16021:17774414,41152205:166916 -k1,16021:19290715,41152205:166915 -k1,16021:22128877,41152205:166915 -k1,16021:24991288,41152205:166915 -k1,16021:26761869,41152205:166915 -k1,16021:28125471,41152205:166915 -k1,16021:29598519,41152205:166915 -k1,16021:32583029,41152205:0 -) -(1,16022:6630773,42017285:25952256,513147,126483 -k1,16021:7345989,42017285:183719 -k1,16021:10168843,42017285:183719 -k1,16021:11424731,42017285:183719 -k1,16021:13620406,42017285:183720 -k1,16021:16525180,42017285:183719 -k1,16021:19043947,42017285:183719 -k1,16021:22335383,42017285:183719 -k1,16021:22985063,42017285:183719 -k1,16021:24187867,42017285:183719 -k1,16021:26439903,42017285:183720 -k1,16021:28136848,42017285:183719 -k1,16021:29268218,42017285:183719 -k1,16021:32583029,42017285:0 -) -(1,16022:6630773,42882365:25952256,513147,126483 -k1,16021:9696904,42882365:242185 -k1,16021:10930649,42882365:242185 -k1,16021:13138915,42882365:242186 -k1,16021:15790203,42882365:242185 -k1,16021:17229075,42882365:242185 -k1,16021:19712591,42882365:242185 -k1,16021:22939286,42882365:242185 -k1,16021:25954955,42882365:242185 -k1,16021:27551115,42882365:242186 -k1,16021:30277115,42882365:242185 -k1,16021:31170728,42882365:242185 -k1,16021:32583029,42882365:0 -) -(1,16022:6630773,43747445:25952256,513147,134348 -k1,16021:7572853,43747445:255918 -k1,16021:9362969,43747445:255918 -k1,16021:10305049,43747445:255918 -k1,16021:12215751,43747445:255918 -k1,16021:13003166,43747445:255918 -k1,16021:14909281,43747445:255918 -k1,16021:16607646,43747445:255918 -k1,16021:18020274,43747445:255918 -k1,16021:20615827,43747445:255918 -k1,16021:22507524,43747445:255918 -k1,16021:25740087,43747445:255918 -k1,16021:26647433,43747445:255918 -k1,16021:28169507,43747445:255918 -k1,16021:29196128,43747445:255918 -k1,16021:32583029,43747445:0 -) -(1,16022:6630773,44612525:25952256,513147,134348 -k1,16021:8914757,44612525:199939 -k1,16021:10589912,44612525:199940 -k1,16021:13845139,44612525:199939 -k1,16021:15064163,44612525:199939 -k1,16021:17765612,44612525:199940 -k1,16021:18624843,44612525:199939 -k1,16021:20214145,44612525:199939 -k1,16021:22051175,44612525:199940 -k1,16021:23818735,44612525:199939 -k1,16021:25470952,44612525:199939 -k1,16021:27503934,44612525:199940 -k1,16021:31391584,44612525:199939 -k1,16021:32583029,44612525:0 -) -(1,16022:6630773,45477605:25952256,513147,134348 -k1,16021:9160829,45477605:168794 -k1,16021:11304406,45477605:168977 -k1,16021:15658329,45477605:168794 -k1,16021:17111630,45477605:168795 -k1,16021:17738521,45477605:168794 -k1,16021:19008320,45477605:168794 -k1,16021:20687065,45477605:168795 -k1,16021:23485819,45477605:168794 -k1,16021:24306042,45477605:168795 -k1,16021:26089643,45477605:168794 -k1,16021:29168892,45477605:168795 -k1,16021:30622192,45477605:168794 -k1,16021:32583029,45477605:0 -) -] -(1,16022:32583029,45706769:0,0,0 -g1,16022:32583029,45706769 -) -) -] -(1,16022:6630773,47279633:25952256,0,0 -h1,16022:6630773,47279633:25952256,0,0 -) -] -(1,16022:4262630,4025873:0,0,0 -[1,16022:-473656,4025873:0,0,0 -(1,16022:-473656,-710413:0,0,0 -(1,16022:-473656,-710413:0,0,0 -g1,16022:-473656,-710413 -) -g1,16022:-473656,-710413 +] +g1,16020:6630773,4812305 +k1,16020:23347041,4812305:15520891 +g1,16020:23960458,4812305 +g1,16020:27572802,4812305 +g1,16020:29306229,4812305 +) +) +] +[1,16020:6630773,45706769:25952256,40108032,0 +(1,16020:6630773,45706769:25952256,40108032,0 +(1,16020:6630773,45706769:0,0,0 +g1,16020:6630773,45706769 +) +[1,16020:6630773,45706769:25952256,40108032,0 +(1,16010:6630773,6254097:25952256,32768,229376 +(1,16010:6630773,6254097:0,32768,229376 +(1,16010:6630773,6254097:5505024,32768,229376 +r1,16020:12135797,6254097:5505024,262144,229376 +) +k1,16010:6630773,6254097:-5505024 +) +(1,16010:6630773,6254097:25952256,32768,0 +r1,16020:32583029,6254097:25952256,32768,0 +) +) +(1,16010:6630773,7885949:25952256,606339,14155 +(1,16010:6630773,7885949:1974731,582746,14155 +g1,16010:6630773,7885949 +g1,16010:8605504,7885949 +) +k1,16010:32583029,7885949:19020644 +g1,16010:32583029,7885949 +) +(1,16013:6630773,9144245:25952256,513147,134348 +k1,16012:7527256,9144245:136265 +k1,16012:10066072,9144245:136266 +k1,16012:12956815,9144245:136265 +k1,16012:16014676,9144245:136266 +k1,16012:17321414,9144245:136265 +k1,16012:18932895,9144245:136266 +k1,16012:21403552,9144245:136265 +k1,16012:23983000,9144245:136266 +k1,16012:26611599,9144245:136265 +k1,16012:28141816,9144245:136266 +k1,16012:29712009,9144245:136265 +k1,16012:30263055,9144245:136203 +k1,16012:32583029,9144245:0 +) +(1,16013:6630773,10009325:25952256,513147,134348 +k1,16012:9734558,10009325:145490 +k1,16012:12905844,10009325:145489 +k1,16012:14242779,10009325:145490 +k1,16012:17465184,10009325:145490 +k1,16012:18558325,10009325:145490 +k1,16012:20964151,10009325:145489 +k1,16012:22301086,10009325:145490 +k1,16012:26682168,10009325:145490 +k1,16012:28390692,10009325:145490 +k1,16012:30081520,10009325:145489 +k1,16012:30886302,10009325:145490 +k1,16012:32583029,10009325:0 +) +(1,16013:6630773,10874405:25952256,513147,134348 +k1,16012:8049955,10874405:227737 +k1,16012:9787643,10874405:227738 +k1,16012:13016929,10874405:227737 +k1,16012:16101381,10874405:227738 +k1,16012:16980546,10874405:227737 +k1,16012:19832345,10874405:227737 +k1,16012:23080637,10874405:227738 +k1,16012:24117744,10874405:227737 +k1,16012:26297144,10874405:227738 +k1,16012:28241269,10874405:227737 +k1,16012:29858370,10874405:227738 +k1,16012:31350952,10874405:227737 +k1,16012:32583029,10874405:0 +) +(1,16013:6630773,11739485:25952256,513147,134348 +k1,16012:9058206,11739485:165786 +k1,16012:11198792,11739485:165986 +k1,16012:12561265,11739485:165786 +k1,16012:16802735,11739485:165786 +k1,16012:17627813,11739485:165786 +k1,16012:19490327,11739485:165787 +k1,16012:22681910,11739485:165786 +k1,16012:23948701,11739485:165786 +k1,16012:27164533,11739485:165786 +k1,16012:31210050,11739485:165786 +k1,16012:32583029,11739485:0 +) +(1,16013:6630773,12604565:25952256,505283,134348 +k1,16012:7858066,12604565:208208 +k1,16012:9749238,12604565:208207 +k1,16012:11148891,12604565:208208 +k1,16012:16095352,12604565:208208 +k1,16012:18934831,12604565:208208 +k1,16012:19759076,12604565:208207 +k1,16012:23373845,12604565:208208 +k1,16012:24683058,12604565:208208 +k1,16012:27334447,12604565:208207 +k1,16012:30224388,12604565:208208 +k1,16012:32583029,12604565:0 +) +(1,16013:6630773,13469645:25952256,513147,134348 +k1,16012:10443257,13469645:234874 +k1,16012:13412948,13469645:234874 +k1,16012:14409349,13469645:234873 +k1,16012:15663308,13469645:234874 +k1,16012:18333500,13469645:234874 +k1,16012:20657006,13469645:234874 +k1,16012:21559035,13469645:234873 +k1,16012:22208716,13469645:234838 +k1,16012:23656661,13469645:234874 +k1,16012:26539845,13469645:234874 +k1,16012:27698777,13469645:234874 +k1,16012:28952735,13469645:234873 +k1,16012:30889579,13469645:234874 +k1,16012:32583029,13469645:0 +) +(1,16013:6630773,14334725:25952256,513147,7863 +g1,16012:7849087,14334725 +g1,16012:9317093,14334725 +g1,16012:10175614,14334725 +g1,16012:11764206,14334725 +g1,16012:13228280,14334725 +g1,16012:14528514,14334725 +g1,16012:16013559,14334725 +k1,16013:32583029,14334725:13477482 +g1,16013:32583029,14334725 +) +(1,16016:6630773,15199805:25952256,513147,134348 +h1,16014:6630773,15199805:983040,0,0 +k1,16014:9477656,15199805:146800 +k1,16014:13354111,15199805:146801 +k1,16014:16411365,15199805:146800 +k1,16014:18033381,15199805:146801 +k1,16014:20125290,15199805:146800 +k1,16014:20884853,15199805:146801 +k1,16014:24303866,15199805:146800 +k1,16014:28526351,15199805:146801 +k1,16014:29434679,15199805:146800 +k1,16014:31773659,15199805:146801 +k1,16014:32583029,15199805:0 +) +(1,16016:6630773,16064885:25952256,513147,126483 +k1,16014:9588544,16064885:195428 +k1,16014:14064784,16064885:195428 +k1,16014:16895416,16064885:195429 +k1,16014:19991467,16064885:195428 +k1,16014:22053360,16064885:195428 +k1,16014:23440233,16064885:195428 +k1,16014:26659492,16064885:195428 +k1,16014:28297368,16064885:195429 +k1,16014:30006022,16064885:195428 +k1,16014:31149101,16064885:195428 +k1,16016:32583029,16064885:0 +) +(1,16016:6630773,16929965:25952256,513147,134348 +k1,16014:7373405,16929965:154119 +k1,16015:10062457,16929965:154119 +k1,16015:13726683,16929965:154119 +k1,16015:14412299,16929965:154119 +k1,16015:15585503,16929965:154119 +k1,16015:17074589,16929965:154118 +k1,16015:19890125,16929965:154119 +k1,16015:20703536,16929965:154119 +k1,16015:21628358,16929965:154119 +k1,16015:25169378,16929965:154119 +k1,16015:30380255,16929965:154119 +k1,16015:31193666,16929965:154119 +k1,16015:32583029,16929965:0 +) +(1,16016:6630773,17795045:25952256,513147,134348 +k1,16015:9215871,17795045:237598 +k1,16015:10644913,17795045:237597 +k1,16015:15138419,17795045:237598 +k1,16015:16660523,17795045:237598 +k1,16015:20269292,17795045:237597 +k1,16015:21525975,17795045:237598 +k1,16015:23630037,17795045:237597 +k1,16015:24526927,17795045:237598 +k1,16015:28199922,17795045:237598 +k1,16015:29385170,17795045:237597 +k1,16015:31193666,17795045:237598 +k1,16015:32583029,17795045:0 +) +(1,16016:6630773,18660125:25952256,505283,134348 +k1,16015:8141097,18660125:245479 +k1,16015:10121969,18660125:245479 +k1,16015:10723308,18660125:245479 +k1,16015:12251982,18660125:245479 +k1,16015:15687754,18660125:245479 +k1,16015:17124678,18660125:245479 +k1,16015:20304860,18660125:245480 +k1,16015:20906199,18660125:245479 +k1,16015:22434873,18660125:245479 +k1,16015:24938067,18660125:245479 +k1,16015:26137095,18660125:245479 +k1,16015:28151391,18660125:245479 +k1,16015:29444135,18660125:245479 +k1,16015:30974120,18660125:245479 +k1,16016:32583029,18660125:0 +) +(1,16016:6630773,19525205:25952256,513147,134348 +k1,16015:7954546,19525205:246361 +k1,16015:11711014,19525205:246361 +k1,16015:12488871,19525205:246360 +k1,16015:14589901,19525205:246361 +k1,16015:15645632,19525205:246361 +k1,16015:16247853,19525205:246361 +k1,16015:19896187,19525205:246360 +k1,16015:23904970,19525205:246361 +k1,16015:24834216,19525205:246361 +k1,16015:28283321,19525205:246361 +k1,16015:29188973,19525205:246360 +k1,16015:31298523,19525205:246361 +k1,16015:32583029,19525205:0 +) +(1,16016:6630773,20390285:25952256,513147,134348 +k1,16015:7433407,20390285:271137 +k1,16015:10466887,20390285:271137 +k1,16015:12305645,20390285:271137 +k1,16015:13861288,20390285:271137 +k1,16015:14748462,20390285:271136 +k1,16015:16038684,20390285:271137 +k1,16015:16724592,20390285:271065 +k1,16015:20011696,20390285:271137 +k1,16015:21479520,20390285:271137 +k1,16015:25701167,20390285:271137 +k1,16015:26588341,20390285:271136 +k1,16015:28062719,20390285:271137 +k1,16015:29700937,20390285:271137 +k1,16015:31073079,20390285:271137 +k1,16015:32583029,20390285:0 +) +(1,16016:6630773,21255365:25952256,513147,134348 +k1,16015:7881621,21255365:231763 +k1,16015:9205870,21255365:231764 +k1,16015:10096925,21255365:231763 +k1,16015:10684548,21255365:231763 +k1,16015:12129383,21255365:231764 +k1,16015:15012733,21255365:231763 +k1,16015:17502212,21255365:231764 +k1,16015:18925420,21255365:231763 +k1,16015:19918711,21255365:231763 +k1,16015:23406304,21255365:231764 +k1,16015:24289495,21255365:231763 +k1,16015:26948712,21255365:231763 +k1,16015:30583105,21255365:231764 +k1,16015:31576396,21255365:231763 +k1,16016:32583029,21255365:0 +) +(1,16016:6630773,22120445:25952256,513147,134348 +k1,16015:8969813,22120445:260238 +k1,16015:11557233,22120445:260237 +k1,16015:12476763,22120445:260238 +k1,16015:13498528,22120445:260237 +k1,16015:15442386,22120445:260238 +k1,16015:18964350,22120445:260237 +k1,16015:20243673,22120445:260238 +k1,16015:25457776,22120445:260237 +k1,16015:26377306,22120445:260238 +k1,16015:27656629,22120445:260238 +k1,16015:31914562,22120445:260237 +k1,16015:32583029,22120445:0 +) +(1,16016:6630773,22985525:25952256,513147,134348 +k1,16015:8210694,22985525:190558 +k1,16015:10681251,22985525:190559 +k1,16015:12265760,22985525:190558 +k1,16015:14780881,22985525:190559 +k1,16015:15622867,22985525:190558 +k1,16015:16879696,22985525:190558 +k1,16015:20715367,22985525:190559 +k1,16015:21588810,22985525:190558 +k1,16015:25166924,22985525:190558 +k1,16015:26920517,22985525:190559 +k1,16015:28491919,22985525:190558 +k1,16015:30420493,22985525:190559 +k1,16015:31420421,22985525:190558 +k1,16016:32583029,22985525:0 +) +(1,16016:6630773,23850605:25952256,513147,126483 +k1,16015:9821900,23850605:171883 +k1,16015:11094788,23850605:171883 +k1,16015:13010583,23850605:171882 +k1,16015:15675456,23850605:171883 +k1,16015:16866424,23850605:171883 +k1,16015:21113991,23850605:171883 +k1,16015:24965721,23850605:171883 +k1,16015:27543431,23850605:171883 +k1,16015:28331351,23850605:171882 +k1,16015:29937162,23850605:171883 +k1,16015:30697558,23850605:171883 +k1,16015:32583029,23850605:0 +) +(1,16016:6630773,24715685:25952256,513147,134348 +k1,16015:8311689,24715685:205701 +k1,16015:10027340,24715685:205701 +k1,16015:14460769,24715685:205701 +k1,16015:17719137,24715685:205701 +k1,16015:19614355,24715685:205700 +k1,16015:23630975,24715685:205701 +k1,16015:27235373,24715685:205701 +k1,16015:31649796,24715685:205701 +k1,16015:32583029,24715685:0 +) +(1,16016:6630773,25580765:25952256,505283,7863 +g1,16015:8714817,25580765 +k1,16016:32583028,25580765:22319596 +g1,16016:32583028,25580765 +) +(1,16018:6630773,26445845:25952256,513147,126483 +h1,16017:6630773,26445845:983040,0,0 +k1,16017:10456110,26445845:237896 +k1,16017:12682367,26445845:237895 +k1,16017:17052308,26445845:237896 +k1,16017:17821701,26445845:237896 +k1,16017:19078681,26445845:237895 +k1,16017:22698234,26445845:237896 +k1,16017:24821600,26445845:237895 +k1,16017:25590993,26445845:237896 +k1,16017:26184749,26445845:237896 +k1,16017:29920956,26445845:237895 +k1,16017:31931601,26445845:237896 +k1,16017:32583029,26445845:0 +) +(1,16018:6630773,27310925:25952256,513147,126483 +k1,16017:9386766,27310925:159457 +k1,16017:10876604,27310925:159457 +k1,16017:12425424,27310925:159457 +k1,16017:15139474,27310925:159457 +k1,16017:18703527,27310925:159458 +k1,16017:19854544,27310925:159457 +k1,16017:23211503,27310925:159457 +k1,16017:23986998,27310925:159457 +k1,16017:24561258,27310925:159417 +k1,16017:26216903,27310925:159458 +k1,16017:27567805,27310925:159457 +k1,16017:30062310,27310925:159457 +k1,16017:30849602,27310925:159457 +k1,16017:32583029,27310925:0 +) +(1,16018:6630773,28176005:25952256,513147,134348 +k1,16017:8384910,28176005:212074 +k1,16017:9055082,28176005:212075 +k1,16017:9798653,28176005:212074 +k1,16017:11296544,28176005:212075 +k1,16017:11864478,28176005:212074 +k1,16017:13359747,28176005:212074 +k1,16017:17334244,28176005:212075 +k1,16017:18229203,28176005:212074 +k1,16017:21644022,28176005:212075 +k1,16017:22515388,28176005:212074 +k1,16017:24590651,28176005:212074 +k1,16017:26281874,28176005:212075 +k1,16017:28818510,28176005:212074 +k1,16017:29682013,28176005:212075 +k1,16017:30682485,28176005:212074 +k1,16018:32583029,28176005:0 +) +(1,16018:6630773,29041085:25952256,513147,134348 +k1,16017:10264376,29041085:197550 +k1,16017:10920023,29041085:197550 +k1,16017:12221855,29041085:197550 +k1,16017:13705221,29041085:197550 +k1,16017:14650538,29041085:197551 +k1,16017:16287914,29041085:197550 +k1,16017:17171626,29041085:197550 +k1,16017:17725036,29041085:197550 +k1,16017:19205781,29041085:197550 +k1,16017:22245627,29041085:197550 +k1,16017:23921669,29041085:197550 +k1,16017:26213750,29041085:197550 +k1,16017:27070592,29041085:197550 +k1,16017:28287227,29041085:197550 +k1,16017:28899619,29041085:197549 +k1,16017:32113136,29041085:197550 +k1,16017:32583029,29041085:0 +) +(1,16018:6630773,29906165:25952256,513147,134348 +k1,16017:7408194,29906165:245924 +k1,16017:8852771,29906165:245923 +k1,16017:11058221,29906165:245924 +k1,16017:12495590,29906165:245924 +k1,16017:15566770,29906165:245923 +k1,16017:17004139,29906165:245924 +k1,16017:18269148,29906165:245924 +k1,16017:21974061,29906165:245923 +k1,16017:23787606,29906165:245924 +k1,16017:25591976,29906165:245924 +k1,16017:27036553,29906165:245923 +k1,16017:29510046,29906165:245924 +k1,16017:32583029,29906165:0 +) +(1,16018:6630773,30771245:25952256,513147,134348 +k1,16017:8698652,30771245:245323 +k1,16017:10729831,30771245:245323 +k1,16017:12523770,30771245:245323 +k1,16017:14149281,30771245:245323 +k1,16017:17125489,30771245:245323 +k1,16017:19404395,30771245:245324 +k1,16017:22980258,30771245:245323 +k1,16017:26199605,30771245:245323 +k1,16017:27060966,30771245:245323 +k1,16017:28325374,30771245:245323 +k1,16017:30659329,30771245:245323 +k1,16017:31563944,30771245:245323 +k1,16017:32583029,30771245:0 +) +(1,16018:6630773,31636325:25952256,513147,134348 +k1,16017:9729416,31636325:188189 +k1,16017:13496526,31636325:188189 +k1,16017:14703800,31636325:188189 +k1,16017:18273646,31636325:188189 +k1,16017:19842679,31636325:188189 +k1,16017:20562365,31636325:188189 +k1,16017:21106415,31636325:188190 +k1,16017:22694453,31636325:188189 +k1,16017:25526364,31636325:188189 +k1,16017:26662204,31636325:188189 +k1,16017:27869478,31636325:188189 +k1,16017:30218389,31636325:188189 +k1,16017:31478747,31636325:188189 +k1,16017:32583029,31636325:0 +) +(1,16018:6630773,32501405:25952256,513147,134348 +k1,16017:7609413,32501405:230874 +k1,16017:10771712,32501405:230874 +k1,16017:11654014,32501405:230874 +k1,16017:15204287,32501405:230874 +k1,16017:17146306,32501405:230874 +k1,16017:18707561,32501405:230874 +k1,16017:20275368,32501405:230873 +k1,16017:21572513,32501405:230874 +k1,16017:22551153,32501405:230874 +k1,16017:24650458,32501405:230874 +k1,16017:25540624,32501405:230874 +k1,16017:26790583,32501405:230874 +k1,16017:29592434,32501405:230874 +k1,16017:31107814,32501405:230874 +k1,16017:32583029,32501405:0 +) +(1,16018:6630773,33366485:25952256,505283,134348 +k1,16017:8660428,33366485:262149 +k1,16017:10585225,33366485:262149 +k1,16017:13482577,33366485:262149 +k1,16017:15341182,33366485:262148 +k1,16017:16421220,33366485:262149 +k1,16017:17039229,33366485:262149 +k1,16017:18682222,33366485:262149 +k1,16017:19157300,33366485:262086 +k1,16017:21390772,33366485:262149 +k1,16017:23333263,33366485:262148 +k1,16017:26709683,33366485:262149 +k1,16017:29540843,33366485:262149 +k1,16017:30994437,33366485:262149 +k1,16018:32583029,33366485:0 +) +(1,16018:6630773,34231565:25952256,513147,126483 +k1,16017:8733006,34231565:212174 +k1,16017:13153901,34231565:212173 +k1,16017:14025367,34231565:212174 +k1,16017:17170277,34231565:212174 +k1,16017:19153234,34231565:212174 +k1,16017:21941627,34231565:212173 +k1,16017:23300026,34231565:212174 +k1,16017:24946128,34231565:212174 +k1,16017:25573132,34231565:212161 +k1,16017:28215380,34231565:212173 +k1,16017:29804465,34231565:212174 +k1,16017:31088808,34231565:212174 +k1,16017:32583029,34231565:0 +) +(1,16018:6630773,35096645:25952256,505283,134348 +k1,16017:8210125,35096645:190644 +k1,16017:12532814,35096645:190644 +k1,16017:14970688,35096645:190644 +k1,16017:17152316,35096645:190644 +k1,16017:18178543,35096645:190643 +k1,16017:19055349,35096645:190644 +k1,16017:22565392,35096645:190644 +k1,16017:27608322,35096645:190644 +k1,16017:28990411,35096645:190644 +k1,16017:31386342,35096645:190644 +k1,16017:32583029,35096645:0 +) +(1,16018:6630773,35961725:25952256,505283,134348 +k1,16017:10016363,35961725:229376 +k1,16017:10931901,35961725:229376 +k1,16017:11517137,35961725:229376 +k1,16017:14783451,35961725:229376 +k1,16017:15544324,35961725:229376 +k1,16017:18927948,35961725:229376 +k1,16017:21657523,35961725:229376 +k1,16017:24046310,35961725:229376 +k1,16017:25665049,35961725:229376 +k1,16017:28504724,35961725:229376 +k1,16017:30423618,35961725:229376 +k1,16017:32583029,35961725:0 +) +(1,16018:6630773,36826805:25952256,513147,126483 +k1,16017:8574876,36826805:232958 +k1,16017:9755486,36826805:232959 +k1,16017:11938795,36826805:232958 +k1,16017:13561117,36826805:232959 +k1,16017:16348668,36826805:232958 +k1,16017:17113124,36826805:232959 +k1,16017:18412353,36826805:232958 +k1,16017:19664397,36826805:232959 +k1,16017:21489225,36826805:232958 +k1,16017:23633869,36826805:232959 +k1,16017:24324924,36826805:232958 +k1,16017:25089380,36826805:232959 +k1,16017:26972535,36826805:232958 +k1,16017:29982910,36826805:232959 +k1,16017:30867296,36826805:232958 +k1,16017:32583029,36826805:0 +) +(1,16018:6630773,37691885:25952256,513147,134348 +k1,16017:7976378,37691885:253120 +k1,16017:8888790,37691885:253120 +k1,16017:10517511,37691885:253120 +k1,16017:13963545,37691885:253120 +k1,16017:17127119,37691885:253120 +k1,16017:18066401,37691885:253120 +k1,16017:19338606,37691885:253120 +k1,16017:21121992,37691885:253120 +k1,16017:23402141,37691885:253120 +k1,16017:24897824,37691885:253120 +k1,16017:26886337,37691885:253120 +k1,16017:28158542,37691885:253120 +k1,16017:29694857,37691885:253120 +k1,16017:32583029,37691885:0 +) +(1,16018:6630773,38556965:25952256,513147,134348 +g1,16017:8205603,38556965 +g1,16017:9352483,38556965 +g1,16017:11243852,38556965 +g1,16017:13437997,38556965 +g1,16017:14296518,38556965 +g1,16017:15514832,38556965 +g1,16017:17103424,38556965 +g1,16017:19857246,38556965 +k1,16018:32583029,38556965:9726856 +g1,16018:32583029,38556965 +) +(1,16020:6630773,39422045:25952256,513147,126483 +h1,16019:6630773,39422045:983040,0,0 +k1,16019:9558761,39422045:161713 +k1,16019:10076335,39422045:161714 +k1,16019:14301935,39422045:161713 +k1,16019:17222058,39422045:161713 +k1,16019:17739631,39422045:161713 +k1,16019:19621665,39422045:161714 +k1,16019:20442670,39422045:161713 +k1,16019:23882494,39422045:161713 +k1,16019:27622473,39422045:161713 +k1,16019:29277097,39422045:161714 +k1,16019:29853616,39422045:161676 +k1,16019:31731717,39422045:161713 +k1,16020:32583029,39422045:0 +) +(1,16020:6630773,40287125:25952256,513147,134348 +k1,16019:7777088,40287125:156066 +k1,16019:9367082,40287125:156066 +k1,16019:9937947,40287125:156022 +k1,16019:10855541,40287125:156066 +k1,16019:12617239,40287125:156066 +k1,16019:13641657,40287125:156066 +k1,16019:15566540,40287125:156066 +k1,16019:17578585,40287125:156065 +k1,16019:19352080,40287125:156066 +k1,16019:20527231,40287125:156066 +k1,16019:23462024,40287125:156066 +k1,16019:25298433,40287125:156066 +k1,16019:26070536,40287125:156065 +k1,16019:26582462,40287125:156066 +k1,16019:30071689,40287125:156066 +k1,16019:32583029,40287125:0 +) +(1,16020:6630773,41152205:25952256,513147,126483 +k1,16019:7410450,41152205:166915 +k1,16019:9028987,41152205:166915 +k1,16019:10551187,41152205:166915 +k1,16019:11334140,41152205:166915 +k1,16019:12520140,41152205:166915 +k1,16019:16924613,41152205:166915 +k1,16019:17774414,41152205:166916 +k1,16019:19290715,41152205:166915 +k1,16019:22128877,41152205:166915 +k1,16019:24991288,41152205:166915 +k1,16019:26761869,41152205:166915 +k1,16019:28125471,41152205:166915 +k1,16019:29598519,41152205:166915 +k1,16019:32583029,41152205:0 +) +(1,16020:6630773,42017285:25952256,513147,126483 +k1,16019:7345989,42017285:183719 +k1,16019:10168843,42017285:183719 +k1,16019:11424731,42017285:183719 +k1,16019:13620406,42017285:183720 +k1,16019:16525180,42017285:183719 +k1,16019:19043947,42017285:183719 +k1,16019:22335383,42017285:183719 +k1,16019:22985063,42017285:183719 +k1,16019:24187867,42017285:183719 +k1,16019:26439903,42017285:183720 +k1,16019:28136848,42017285:183719 +k1,16019:29268218,42017285:183719 +k1,16019:32583029,42017285:0 +) +(1,16020:6630773,42882365:25952256,513147,126483 +k1,16019:9696904,42882365:242185 +k1,16019:10930649,42882365:242185 +k1,16019:13138915,42882365:242186 +k1,16019:15790203,42882365:242185 +k1,16019:17229075,42882365:242185 +k1,16019:19712591,42882365:242185 +k1,16019:22939286,42882365:242185 +k1,16019:25954955,42882365:242185 +k1,16019:27551115,42882365:242186 +k1,16019:30277115,42882365:242185 +k1,16019:31170728,42882365:242185 +k1,16019:32583029,42882365:0 +) +(1,16020:6630773,43747445:25952256,513147,134348 +k1,16019:7572853,43747445:255918 +k1,16019:9362969,43747445:255918 +k1,16019:10305049,43747445:255918 +k1,16019:12215751,43747445:255918 +k1,16019:13003166,43747445:255918 +k1,16019:14909281,43747445:255918 +k1,16019:16607646,43747445:255918 +k1,16019:18020274,43747445:255918 +k1,16019:20615827,43747445:255918 +k1,16019:22507524,43747445:255918 +k1,16019:25740087,43747445:255918 +k1,16019:26647433,43747445:255918 +k1,16019:28169507,43747445:255918 +k1,16019:29196128,43747445:255918 +k1,16019:32583029,43747445:0 +) +(1,16020:6630773,44612525:25952256,513147,134348 +k1,16019:8914757,44612525:199939 +k1,16019:10589912,44612525:199940 +k1,16019:13845139,44612525:199939 +k1,16019:15064163,44612525:199939 +k1,16019:17765612,44612525:199940 +k1,16019:18624843,44612525:199939 +k1,16019:20214145,44612525:199939 +k1,16019:22051175,44612525:199940 +k1,16019:23818735,44612525:199939 +k1,16019:25470952,44612525:199939 +k1,16019:27503934,44612525:199940 +k1,16019:31391584,44612525:199939 +k1,16019:32583029,44612525:0 +) +(1,16020:6630773,45477605:25952256,513147,134348 +k1,16019:9160829,45477605:168794 +k1,16019:11304406,45477605:168977 +k1,16019:15658329,45477605:168794 +k1,16019:17111630,45477605:168795 +k1,16019:17738521,45477605:168794 +k1,16019:19008320,45477605:168794 +k1,16019:20687065,45477605:168795 +k1,16019:23485819,45477605:168794 +k1,16019:24306042,45477605:168795 +k1,16019:26089643,45477605:168794 +k1,16019:29168892,45477605:168795 +k1,16019:30622192,45477605:168794 +k1,16019:32583029,45477605:0 +) +] +(1,16020:32583029,45706769:0,0,0 +g1,16020:32583029,45706769 +) +) +] +(1,16020:6630773,47279633:25952256,0,0 +h1,16020:6630773,47279633:25952256,0,0 +) +] +(1,16020:4262630,4025873:0,0,0 +[1,16020:-473656,4025873:0,0,0 +(1,16020:-473656,-710413:0,0,0 +(1,16020:-473656,-710413:0,0,0 +g1,16020:-473656,-710413 +) +g1,16020:-473656,-710413 ) ] ) ] !24679 -}259 -Input:2689:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2690:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2691:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2692:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}260 Input:2693:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2694:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2695:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2696:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2697:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{260 -[1,16051:4262630,47279633:28320399,43253760,0 -(1,16051:4262630,4025873:0,0,0 -[1,16051:-473656,4025873:0,0,0 -(1,16051:-473656,-710413:0,0,0 -(1,16051:-473656,-644877:0,0,0 -k1,16051:-473656,-644877:-65536 +{261 +[1,16049:4262630,47279633:28320399,43253760,0 +(1,16049:4262630,4025873:0,0,0 +[1,16049:-473656,4025873:0,0,0 +(1,16049:-473656,-710413:0,0,0 +(1,16049:-473656,-644877:0,0,0 +k1,16049:-473656,-644877:-65536 ) -(1,16051:-473656,4736287:0,0,0 -k1,16051:-473656,4736287:5209943 +(1,16049:-473656,4736287:0,0,0 +k1,16049:-473656,4736287:5209943 ) -g1,16051:-473656,-710413 +g1,16049:-473656,-710413 ) ] ) -[1,16051:6630773,47279633:25952256,43253760,0 -[1,16051:6630773,4812305:25952256,786432,0 -(1,16051:6630773,4812305:25952256,505283,11795 -(1,16051:6630773,4812305:25952256,505283,11795 -g1,16051:3078558,4812305 -[1,16051:3078558,4812305:0,0,0 -(1,16051:3078558,2439708:0,1703936,0 -k1,16051:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16051:2537886,2439708:1179648,16384,0 +[1,16049:6630773,47279633:25952256,43253760,0 +[1,16049:6630773,4812305:25952256,786432,0 +(1,16049:6630773,4812305:25952256,505283,11795 +(1,16049:6630773,4812305:25952256,505283,11795 +g1,16049:3078558,4812305 +[1,16049:3078558,4812305:0,0,0 +(1,16049:3078558,2439708:0,1703936,0 +k1,16049:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16049:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16051:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16049:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16051:3078558,4812305:0,0,0 -(1,16051:3078558,2439708:0,1703936,0 -g1,16051:29030814,2439708 -g1,16051:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16051:36151628,1915420:16384,1179648,0 +[1,16049:3078558,4812305:0,0,0 +(1,16049:3078558,2439708:0,1703936,0 +g1,16049:29030814,2439708 +g1,16049:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16049:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16051:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16049:37855564,2439708:1179648,16384,0 ) ) -k1,16051:3078556,2439708:-34777008 +k1,16049:3078556,2439708:-34777008 ) ] -[1,16051:3078558,4812305:0,0,0 -(1,16051:3078558,49800853:0,16384,2228224 -k1,16051:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16051:2537886,49800853:1179648,16384,0 +[1,16049:3078558,4812305:0,0,0 +(1,16049:3078558,49800853:0,16384,2228224 +k1,16049:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16049:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16051:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16049:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] -) -) -) -] -[1,16051:3078558,4812305:0,0,0 -(1,16051:3078558,49800853:0,16384,2228224 -g1,16051:29030814,49800853 -g1,16051:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16051:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16051:37855564,49800853:1179648,16384,0 -) -) -k1,16051:3078556,49800853:-34777008 -) -] -g1,16051:6630773,4812305 -g1,16051:6630773,4812305 -g1,16051:10697281,4812305 -k1,16051:31387653,4812305:20690372 -) -) -] -[1,16051:6630773,45706769:25952256,40108032,0 -(1,16051:6630773,45706769:25952256,40108032,0 -(1,16051:6630773,45706769:0,0,0 -g1,16051:6630773,45706769 -) -[1,16051:6630773,45706769:25952256,40108032,0 -(1,16022:6630773,6254097:25952256,513147,126483 -k1,16021:7850267,6254097:200409 -k1,16021:11127591,6254097:200409 -k1,16021:13626348,6254097:200409 -k1,16021:14478185,6254097:200409 -k1,16021:16476247,6254097:200409 -k1,16021:17879897,6254097:200409 -k1,16021:19363501,6254097:200409 -k1,16021:21647955,6254097:200409 -k1,16021:22499792,6254097:200409 -k1,16021:23115043,6254097:200408 -k1,16021:23846949,6254097:200409 -k1,16021:24403218,6254097:200409 -k1,16021:27786711,6254097:200409 -k1,16021:28638548,6254097:200409 -k1,16021:29627355,6254097:200409 -k1,16021:32583029,6254097:0 -) -(1,16022:6630773,7119177:25952256,513147,134348 -k1,16021:8053167,7119177:230949 -k1,16021:12346693,7119177:230949 -k1,16021:13927684,7119177:230949 -k1,16021:17242757,7119177:230949 -k1,16021:20418893,7119177:230949 -k1,16021:21841286,7119177:230948 -k1,16021:24408592,7119177:230949 -k1,16021:26600378,7119177:230949 -k1,16021:29908242,7119177:230949 -k1,16021:31086842,7119177:230949 -k1,16022:32583029,7119177:0 -) -(1,16022:6630773,7984257:25952256,513147,134348 -k1,16021:8677157,7984257:191715 -k1,16021:11126587,7984257:191715 -k1,16021:11946137,7984257:191715 -k1,16021:13490515,7984257:191715 -k1,16021:15276066,7984257:191715 -k1,16021:15823641,7984257:191715 -k1,16021:17405375,7984257:191715 -k1,16021:20343704,7984257:191715 -k1,16021:21742592,7984257:191715 -k1,16021:23899732,7984257:191715 -k1,16021:24742875,7984257:191715 -k1,16021:25953675,7984257:191715 -k1,16021:26560226,7984257:191708 -k1,16021:29594237,7984257:191715 -k1,16021:31391584,7984257:191715 -k1,16021:32583029,7984257:0 -) -(1,16022:6630773,8849337:25952256,513147,126483 -g1,16021:8480199,8849337 -g1,16021:11234021,8849337 -g1,16021:12221648,8849337 -g1,16021:15026588,8849337 -k1,16022:32583029,8849337:14454622 -g1,16022:32583029,8849337 -) -(1,16024:6630773,9714417:25952256,513147,134348 -h1,16023:6630773,9714417:983040,0,0 -k1,16023:8418597,9714417:176949 -k1,16023:10378781,9714417:176949 -k1,16023:11215022,9714417:176949 -k1,16023:12373045,9714417:176949 -k1,16023:14146451,9714417:176949 -k1,16023:14536370,9714417:176927 -k1,16023:18081214,9714417:176949 -k1,16023:22993795,9714417:176949 -k1,16023:24362189,9714417:176949 -k1,16023:27736640,9714417:176949 -k1,16023:31149101,9714417:176949 -k1,16024:32583029,9714417:0 -) -(1,16024:6630773,10579497:25952256,513147,134348 -k1,16023:7287702,10579497:242086 -k1,16023:8917229,10579497:242130 -k1,16023:12231687,10579497:242130 -k1,16023:15557940,10579497:242129 -k1,16023:17871008,10579497:242130 -k1,16023:19060788,10579497:242129 -k1,16023:22001035,10579497:242130 -k1,16023:25281413,10579497:242129 -k1,16023:28448415,10579497:242130 -k1,16023:29732566,10579497:242129 -k1,16023:31092740,10579497:242130 -k1,16023:32583029,10579497:0 -) -(1,16024:6630773,11444577:25952256,505283,126483 -k1,16023:8064377,11444577:242159 -k1,16023:10231328,11444577:242159 -k1,16023:11156372,11444577:242159 -k1,16023:16290794,11444577:242159 -k1,16023:17922316,11444577:242159 -k1,16023:20865215,11444577:242160 -k1,16023:21320323,11444577:242116 -k1,16023:23002308,11444577:242159 -k1,16023:23895895,11444577:242159 -k1,16023:25230539,11444577:242159 -k1,16023:26491783,11444577:242159 -k1,16023:29734835,11444577:242159 -k1,16023:32583029,11444577:0 -) -(1,16024:6630773,12309657:25952256,513147,134348 -k1,16023:8284443,12309657:285933 -k1,16023:11056158,12309657:285934 -k1,16023:14748652,12309657:285933 -k1,16023:16226030,12309657:285933 -k1,16023:18204104,12309657:285934 -k1,16023:23145059,12309657:285933 -k1,16023:24090284,12309657:285933 -k1,16023:25924833,12309657:285933 -k1,16023:27202327,12309657:285934 -k1,16023:28507345,12309657:285933 -k1,16023:32583029,12309657:0 -) -(1,16024:6630773,13174737:25952256,513147,126483 -k1,16023:10534850,13174737:224230 -k1,16023:11375118,13174737:224230 -k1,16023:12014167,13174737:224206 -k1,16023:13908254,13174737:224230 -k1,16023:14345451,13174737:224205 -k1,16023:16044896,13174737:224230 -k1,16023:18115275,13174737:224230 -k1,16023:20249225,13174737:224231 -k1,16023:20931552,13174737:224230 -k1,16023:24720941,13174737:224230 -k1,16023:25964256,13174737:224230 -k1,16023:27961236,13174737:224231 -k1,16023:30483814,13174737:224230 -k1,16023:31655695,13174737:224230 -k1,16024:32583029,13174737:0 -) -(1,16024:6630773,14039817:25952256,513147,134348 -k1,16023:9135952,14039817:276300 -k1,16023:13487936,14039817:276300 -k1,16023:14525763,14039817:276299 -k1,16023:16537456,14039817:276300 -k1,16023:19886084,14039817:276300 -k1,16023:23246508,14039817:276300 -k1,16023:24719495,14039817:276300 -k1,16023:27193216,14039817:276299 -k1,16023:28120944,14039817:276300 -k1,16023:30169993,14039817:276300 -k1,16023:32583029,14039817:0 -) -(1,16024:6630773,14904897:25952256,513147,134348 -g1,16023:7936250,14904897 -g1,16023:8883245,14904897 -g1,16023:11844817,14904897 -g1,16023:12991697,14904897 -g1,16023:14934839,14904897 -g1,16023:17512370,14904897 -g1,16023:19041980,14904897 -g1,16023:21611646,14904897 -g1,16023:23362112,14904897 -g1,16023:24950704,14904897 -k1,16024:32583029,14904897:6315052 -g1,16024:32583029,14904897 -) -(1,16026:6630773,15769977:25952256,513147,134348 -h1,16025:6630773,15769977:983040,0,0 -k1,16025:9002684,15769977:192184 -k1,16025:12277027,15769977:192185 -k1,16025:13128503,15769977:192184 -k1,16025:14339772,15769977:192184 -k1,16025:17359180,15769977:192185 -k1,16025:18082861,15769977:192184 -k1,16025:20226707,15769977:192184 -k1,16025:22441988,15769977:192185 -k1,16025:23320334,15769977:192184 -k1,16025:26092670,15769977:192184 -k1,16025:29492842,15769977:192185 -k1,16025:31391584,15769977:192184 -k1,16025:32583029,15769977:0 -) -(1,16026:6630773,16635057:25952256,513147,134348 -k1,16025:9448210,16635057:165850 -k1,16025:9969919,16635057:165849 -k1,16025:11070312,16635057:165850 -k1,16025:11895454,16635057:165850 -k1,16025:14971758,16635057:165850 -k1,16025:15796899,16635057:165849 -k1,16025:17848220,16635057:165850 -k1,16025:19615770,16635057:165850 -k1,16025:20853789,16635057:165850 -k1,16025:22085909,16635057:165849 -k1,16025:23017875,16635057:165850 -k1,16025:25168811,16635057:165850 -k1,16025:25690521,16635057:165850 -k1,16025:29137102,16635057:165849 -k1,16025:31391584,16635057:165850 -k1,16025:32583029,16635057:0 -) -(1,16026:6630773,17500137:25952256,505283,134348 -k1,16025:9356118,17500137:198932 -k1,16025:10758290,17500137:198931 -k1,16025:12240417,17500137:198932 -k1,16025:15515608,17500137:198931 -k1,16025:16911227,17500137:198932 -k1,16025:20020612,17500137:198931 -k1,16025:21504050,17500137:198932 -k1,16025:22694541,17500137:198931 -k1,16025:25635499,17500137:198932 -k1,16025:26595958,17500137:198931 -k1,16025:29375042,17500137:198932 -k1,16025:32583029,17500137:0 -) -(1,16026:6630773,18365217:25952256,513147,134348 -k1,16025:7958294,18365217:226516 -k1,16025:10846227,18365217:226516 -k1,16025:12460141,18365217:226517 -k1,16025:14285735,18365217:226516 -k1,16025:17047184,18365217:226516 -k1,16025:20655357,18365217:226516 -k1,16025:23726136,18365217:226516 -k1,16025:26243791,18365217:226516 -k1,16025:26826168,18365217:226517 -k1,16025:29748180,18365217:226516 -k1,16025:31259202,18365217:226516 -k1,16025:32583029,18365217:0 -) -(1,16026:6630773,19230297:25952256,505283,7863 -k1,16026:32583029,19230297:24260772 -g1,16026:32583029,19230297 -) -v1,16028:6630773,19915152:0,393216,0 -(1,16042:6630773,25859141:25952256,6337205,196608 -g1,16042:6630773,25859141 -g1,16042:6630773,25859141 -g1,16042:6434165,25859141 -(1,16042:6434165,25859141:0,6337205,196608 -r1,16051:32779637,25859141:26345472,6533813,196608 -k1,16042:6434165,25859141:-26345472 -) -(1,16042:6434165,25859141:26345472,6337205,196608 -[1,16042:6630773,25859141:25952256,6140597,0 -(1,16030:6630773,20142983:25952256,424439,112852 -(1,16029:6630773,20142983:0,0,0 -g1,16029:6630773,20142983 -g1,16029:6630773,20142983 -g1,16029:6303093,20142983 -(1,16029:6303093,20142983:0,0,0 -) -g1,16029:6630773,20142983 -) -k1,16030:6630773,20142983:0 -h1,16030:16921345,20142983:0,0,0 -k1,16030:32583029,20142983:15661684 -g1,16030:32583029,20142983 -) -(1,16041:6630773,20958910:25952256,431045,106246 -(1,16032:6630773,20958910:0,0,0 -g1,16032:6630773,20958910 -g1,16032:6630773,20958910 -g1,16032:6303093,20958910 -(1,16032:6303093,20958910:0,0,0 -) -g1,16032:6630773,20958910 -) -g1,16041:7626635,20958910 -g1,16041:7958589,20958910 -g1,16041:9286405,20958910 -g1,16041:11942037,20958910 -g1,16041:12273991,20958910 -g1,16041:12605945,20958910 -g1,16041:12937899,20958910 -g1,16041:13269853,20958910 -g1,16041:13601807,20958910 -g1,16041:13933761,20958910 -g1,16041:14265715,20958910 -g1,16041:14597669,20958910 -g1,16041:18913070,20958910 -g1,16041:19245024,20958910 -g1,16041:19576978,20958910 -g1,16041:19908932,20958910 -g1,16041:21900656,20958910 -g1,16041:22232610,20958910 -g1,16041:22564564,20958910 -g1,16041:22896518,20958910 -g1,16041:23228472,20958910 -g1,16041:23560426,20958910 -g1,16041:23892380,20958910 -g1,16041:24224334,20958910 -g1,16041:24556288,20958910 -g1,16041:24888242,20958910 -g1,16041:25220196,20958910 -h1,16041:27875827,20958910:0,0,0 -k1,16041:32583029,20958910:4707202 -g1,16041:32583029,20958910 -) -(1,16041:6630773,21643765:25952256,431045,112852 -h1,16041:6630773,21643765:0,0,0 -g1,16041:7626635,21643765 -g1,16041:7958589,21643765 -g1,16041:9286405,21643765 -g1,16041:11942037,21643765 -g1,16041:12273991,21643765 -g1,16041:12605945,21643765 -g1,16041:12937899,21643765 -g1,16041:13269853,21643765 -g1,16041:13601807,21643765 -g1,16041:13933761,21643765 -g1,16041:14265715,21643765 -g1,16041:14597669,21643765 -g1,16041:17585254,21643765 -g1,16041:17917208,21643765 -g1,16041:18249162,21643765 -g1,16041:18581116,21643765 -g1,16041:18913070,21643765 -g1,16041:19245024,21643765 -g1,16041:19576978,21643765 -g1,16041:19908932,21643765 -g1,16041:23228471,21643765 -g1,16041:23560425,21643765 -g1,16041:23892379,21643765 -g1,16041:24224333,21643765 -g1,16041:24556287,21643765 -g1,16041:24888241,21643765 -g1,16041:25220195,21643765 -h1,16041:28207780,21643765:0,0,0 -k1,16041:32583029,21643765:4375249 -g1,16041:32583029,21643765 -) -(1,16041:6630773,22328620:25952256,424439,112852 -h1,16041:6630773,22328620:0,0,0 -g1,16041:7626635,22328620 -g1,16041:7958589,22328620 -g1,16041:9286405,22328620 -g1,16041:13933760,22328620 -g1,16041:14265714,22328620 -g1,16041:14597668,22328620 -g1,16041:19908931,22328620 -g1,16041:22564563,22328620 -g1,16041:22896517,22328620 -g1,16041:23228471,22328620 -g1,16041:23560425,22328620 -g1,16041:23892379,22328620 -g1,16041:24224333,22328620 -g1,16041:24556287,22328620 -g1,16041:24888241,22328620 -g1,16041:25220195,22328620 -h1,16041:26879965,22328620:0,0,0 -k1,16041:32583029,22328620:5703064 -g1,16041:32583029,22328620 -) -(1,16041:6630773,23013475:25952256,424439,112852 -h1,16041:6630773,23013475:0,0,0 -g1,16041:7626635,23013475 -g1,16041:9286405,23013475 -g1,16041:11610083,23013475 -g1,16041:11942037,23013475 -g1,16041:12273991,23013475 -g1,16041:12605945,23013475 -g1,16041:12937899,23013475 -g1,16041:13269853,23013475 -g1,16041:13601807,23013475 -g1,16041:13933761,23013475 -g1,16041:14265715,23013475 -g1,16041:14597669,23013475 -g1,16041:18249162,23013475 -g1,16041:18581116,23013475 -g1,16041:18913070,23013475 -g1,16041:19245024,23013475 -g1,16041:19576978,23013475 -g1,16041:19908932,23013475 -g1,16041:23892379,23013475 -g1,16041:24224333,23013475 -g1,16041:24556287,23013475 -g1,16041:24888241,23013475 -g1,16041:25220195,23013475 -h1,16041:28539734,23013475:0,0,0 -k1,16041:32583029,23013475:4043295 -g1,16041:32583029,23013475 -) -(1,16041:6630773,23698330:25952256,424439,112852 -h1,16041:6630773,23698330:0,0,0 -g1,16041:7626635,23698330 -g1,16041:9286405,23698330 -g1,16041:12273990,23698330 -g1,16041:12605944,23698330 -g1,16041:12937898,23698330 -g1,16041:13269852,23698330 -g1,16041:13601806,23698330 -g1,16041:13933760,23698330 -g1,16041:14265714,23698330 -g1,16041:14597668,23698330 -g1,16041:17585253,23698330 -g1,16041:17917207,23698330 -g1,16041:18249161,23698330 -g1,16041:18581115,23698330 -g1,16041:18913069,23698330 -g1,16041:19245023,23698330 -g1,16041:19576977,23698330 -g1,16041:19908931,23698330 -g1,16041:22564563,23698330 -g1,16041:22896517,23698330 -g1,16041:23228471,23698330 -g1,16041:23560425,23698330 -g1,16041:23892379,23698330 -g1,16041:24224333,23698330 -g1,16041:24556287,23698330 -g1,16041:24888241,23698330 -g1,16041:25220195,23698330 -h1,16041:27211919,23698330:0,0,0 -k1,16041:32583029,23698330:5371110 -g1,16041:32583029,23698330 -) -(1,16041:6630773,24383185:25952256,424439,112852 -h1,16041:6630773,24383185:0,0,0 -g1,16041:7626635,24383185 -g1,16041:9286405,24383185 -g1,16041:11942037,24383185 -g1,16041:12273991,24383185 -g1,16041:12605945,24383185 -g1,16041:12937899,24383185 -g1,16041:13269853,24383185 -g1,16041:13601807,24383185 -g1,16041:13933761,24383185 -g1,16041:14265715,24383185 -g1,16041:14597669,24383185 -g1,16041:17585254,24383185 -g1,16041:17917208,24383185 -g1,16041:18249162,24383185 -g1,16041:18581116,24383185 -g1,16041:18913070,24383185 -g1,16041:19245024,24383185 -g1,16041:19576978,24383185 -g1,16041:19908932,24383185 -g1,16041:22896517,24383185 -g1,16041:23228471,24383185 -g1,16041:23560425,24383185 -g1,16041:23892379,24383185 -g1,16041:24224333,24383185 -g1,16041:24556287,24383185 -g1,16041:24888241,24383185 -g1,16041:25220195,24383185 -h1,16041:27543873,24383185:0,0,0 -k1,16041:32583029,24383185:5039156 -g1,16041:32583029,24383185 -) -(1,16041:6630773,25068040:25952256,424439,112852 -h1,16041:6630773,25068040:0,0,0 -g1,16041:7626635,25068040 -g1,16041:9286405,25068040 -g1,16041:13601806,25068040 -g1,16041:13933760,25068040 -g1,16041:14265714,25068040 -g1,16041:14597668,25068040 -g1,16041:17253300,25068040 -g1,16041:17585254,25068040 -g1,16041:17917208,25068040 -g1,16041:18249162,25068040 -g1,16041:18581116,25068040 -g1,16041:18913070,25068040 -g1,16041:19245024,25068040 -g1,16041:19576978,25068040 -g1,16041:19908932,25068040 -g1,16041:23228471,25068040 -g1,16041:23560425,25068040 -g1,16041:23892379,25068040 -g1,16041:24224333,25068040 -g1,16041:24556287,25068040 -g1,16041:24888241,25068040 -g1,16041:25220195,25068040 -h1,16041:27875826,25068040:0,0,0 -k1,16041:32583029,25068040:4707203 -g1,16041:32583029,25068040 -) -(1,16041:6630773,25752895:25952256,424439,106246 -h1,16041:6630773,25752895:0,0,0 -g1,16041:7626635,25752895 -g1,16041:9286405,25752895 -g1,16041:11942037,25752895 -g1,16041:12273991,25752895 -g1,16041:12605945,25752895 -g1,16041:12937899,25752895 -g1,16041:13269853,25752895 -g1,16041:13601807,25752895 -g1,16041:13933761,25752895 -g1,16041:14265715,25752895 -g1,16041:14597669,25752895 -g1,16041:16921347,25752895 -g1,16041:17253301,25752895 -g1,16041:17585255,25752895 -g1,16041:17917209,25752895 -g1,16041:18249163,25752895 -g1,16041:18581117,25752895 -g1,16041:18913071,25752895 -g1,16041:19245025,25752895 -g1,16041:19576979,25752895 -g1,16041:19908933,25752895 -h1,16041:23560426,25752895:0,0,0 -k1,16041:32583029,25752895:9022603 -g1,16041:32583029,25752895 -) -] -) -g1,16042:32583029,25859141 -g1,16042:6630773,25859141 -g1,16042:6630773,25859141 -g1,16042:32583029,25859141 -g1,16042:32583029,25859141 -) -h1,16042:6630773,26055749:0,0,0 -(1,16046:6630773,26920829:25952256,513147,134348 -h1,16045:6630773,26920829:983040,0,0 -k1,16045:8480735,26920829:239087 -k1,16045:9923064,26920829:239088 -k1,16045:12753445,26920829:239087 -k1,16045:14163006,26920829:239088 -k1,16045:15534555,26920829:239087 -k1,16045:18216825,26920829:239088 -k1,16045:20948246,26920829:239087 -k1,16045:22581285,26920829:239088 -k1,16045:25730826,26920829:239087 -k1,16045:28305616,26920829:239088 -k1,16045:30691006,26920829:239087 -k1,16045:32583029,26920829:0 -) -(1,16046:6630773,27785909:25952256,505283,134348 -k1,16045:8048481,27785909:226263 -k1,16045:11646570,27785909:226263 -k1,16045:14407766,27785909:226263 -k1,16045:17462562,27785909:226263 -k1,16045:18821287,27785909:226263 -k1,16045:19795316,27785909:226263 -k1,16045:23111602,27785909:226263 -k1,16045:23953903,27785909:226263 -k1,16045:26597789,27785909:226263 -h1,16045:26996248,27785909:0,0,0 -k1,16045:27222511,27785909:226263 -k1,16045:28134936,27785909:226263 -k1,16045:28819296,27785909:226263 -k1,16045:32583029,27785909:0 -) -(1,16046:6630773,28650989:25952256,513147,134348 -k1,16045:7939527,28650989:289669 -k1,16045:11131786,28650989:289669 -k1,16045:12080747,28650989:289669 -k1,16045:15089505,28650989:289669 -k1,16045:16570619,28650989:289669 -k1,16045:17961293,28650989:289669 -k1,16045:19723555,28650989:289668 -k1,16045:20629262,28650989:289669 -k1,16045:23696347,28650989:289669 -k1,16045:25379967,28650989:289669 -k1,16045:27371606,28650989:289669 -k1,16045:30614983,28650989:289669 -k1,16045:31563944,28650989:289669 -k1,16045:32583029,28650989:0 -) -(1,16046:6630773,29516069:25952256,513147,126483 -k1,16045:10194116,29516069:233459 -k1,16045:11245465,29516069:233460 -k1,16045:13230701,29516069:233459 -k1,16045:14123453,29516069:233460 -k1,16045:15375997,29516069:233459 -k1,16045:18635254,29516069:233460 -k1,16045:19484751,29516069:233459 -k1,16045:20737296,29516069:233460 -k1,16045:23797978,29516069:233459 -k1,16045:25135720,29516069:233460 -k1,16045:26116945,29516069:233459 -k1,16045:29981100,29516069:233460 -k1,16045:30976087,29516069:233459 -k1,16046:32583029,29516069:0 -) -(1,16046:6630773,30381149:25952256,513147,134348 -k1,16045:7882713,30381149:261691 -k1,16045:9578333,30381149:261692 -k1,16045:10254804,30381149:261628 -k1,16045:13715963,30381149:261691 -k1,16045:17652259,30381149:261692 -k1,16045:21452894,30381149:261691 -k1,16045:22906030,30381149:261691 -k1,16045:26684383,30381149:261691 -k1,16045:29581278,30381149:261692 -k1,16045:31482024,30381149:261691 -k1,16045:32583029,30381149:0 -) -(1,16046:6630773,31246229:25952256,513147,126483 -k1,16045:9263413,31246229:189458 -k1,16045:12662170,31246229:189459 -k1,16045:14478887,31246229:189458 -k1,16045:16135041,31246229:189458 -k1,16045:19986652,31246229:189459 -k1,16045:21167670,31246229:189458 -k1,16045:22687510,31246229:189459 -k1,16045:23493006,31246229:189458 -k1,16045:26459880,31246229:189458 -k1,16045:27915495,31246229:189459 -k1,16045:29296398,31246229:189458 -k1,16045:32583029,31246229:0 -) -(1,16046:6630773,32111309:25952256,505283,126483 -g1,16045:8296698,32111309 -g1,16045:10724806,32111309 -g1,16045:12934024,32111309 -g1,16045:13548096,32111309 -k1,16046:32583030,32111309:16821128 -g1,16046:32583030,32111309 -) -v1,16048:6630773,32976389:0,393216,0 -(1,16051:6630773,45522290:25952256,12939117,0 -g1,16051:6630773,45522290 -g1,16051:6237557,45522290 -r1,16051:6368629,45522290:131072,12939117,0 -g1,16051:6567858,45522290 -g1,16051:6764466,45522290 -[1,16051:6764466,45522290:25818563,12939117,0 -(1,16049:6764466,33284687:25818563,701514,196608 -(1,16048:6764466,33284687:0,701514,196608 -r1,16051:7761522,33284687:997056,898122,196608 -k1,16048:6764466,33284687:-997056 -) -(1,16048:6764466,33284687:997056,701514,196608 -) -k1,16048:7934800,33284687:173278 -k1,16048:8262480,33284687:327680 -k1,16048:9063593,33284687:173278 -k1,16048:10368677,33284687:173277 -k1,16048:12804258,33284687:173278 -k1,16048:14632320,33284687:173278 -k1,16048:15337095,33284687:173278 -k1,16048:15866232,33284687:173277 -k1,16048:18399461,33284687:173278 -k1,16048:21207942,33284687:173278 -k1,16048:24332306,33284687:173278 -k1,16048:26339281,33284687:173278 -k1,16048:27140393,33284687:173277 -k1,16048:30072737,33284687:173278 -k1,16048:31193666,33284687:173278 -k1,16048:32583029,33284687:0 -) -(1,16049:6764466,34149767:25818563,513147,134348 -k1,16048:9540462,34149767:221403 -k1,16048:10117724,34149767:221402 -k1,16048:11440132,34149767:221403 -k1,16048:12927690,34149767:221402 -k1,16048:13808385,34149767:221403 -k1,16048:16758706,34149767:221402 -k1,16048:18640136,34149767:221403 -k1,16048:19853098,34149767:221402 -k1,16048:22975124,34149767:221403 -k1,16048:26177103,34149767:221402 -k1,16048:28753870,34149767:221403 -k1,16048:30047441,34149767:221402 -k1,16049:32583029,34149767:0 -) -(1,16049:6764466,35014847:25818563,513147,134348 -k1,16048:7925695,35014847:255521 -k1,16048:9851073,35014847:255521 -k1,16048:11298039,35014847:255521 -k1,16048:14734678,35014847:255521 -k1,16048:15649490,35014847:255520 -k1,16048:19264386,35014847:255521 -k1,16048:20952524,35014847:255521 -k1,16048:21622832,35014847:255465 -k1,16048:24573848,35014847:255520 -(1,16048:24573848,35014847:0,452978,115847 -r1,16051:27394097,35014847:2820249,568825,115847 -k1,16048:24573848,35014847:-2820249 -) -(1,16048:24573848,35014847:2820249,452978,115847 -k1,16048:24573848,35014847:3277 -h1,16048:27390820,35014847:0,411205,112570 -) -k1,16048:27649618,35014847:255521 -k1,16048:29006144,35014847:255521 -k1,16048:30032368,35014847:255521 -k1,16048:32583029,35014847:0 -) -(1,16049:6764466,35879927:25818563,505283,134348 -k1,16048:9249973,35879927:227792 -k1,16048:10163927,35879927:227792 -k1,16048:10849816,35879927:227792 -k1,16048:14048355,35879927:227792 -k1,16048:15295232,35879927:227792 -k1,16048:18963010,35879927:227793 -k1,16048:21396089,35879927:227792 -k1,16048:22310043,35879927:227792 -k1,16048:23556920,35879927:227792 -k1,16048:26026043,35879927:227792 -k1,16048:29326163,35879927:227792 -k1,16048:31563944,35879927:227792 -k1,16048:32583029,35879927:0 -) -(1,16049:6764466,36745007:25818563,513147,134348 -k1,16048:10553959,36745007:263656 -k1,16048:11476907,36745007:263656 -k1,16048:12759648,36745007:263656 -k1,16048:14412668,36745007:263657 -k1,16048:16552620,36745007:263656 -k1,16048:19021563,36745007:263656 -k1,16048:19971381,36745007:263656 -k1,16048:21023435,36745007:263656 -k1,16048:22593224,36745007:263656 -k1,16048:25929209,36745007:263657 -k1,16048:27424942,36745007:263656 -k1,16048:29967285,36745007:263656 -h1,16048:31510003,36745007:0,0,0 -k1,16048:31773659,36745007:263656 -k1,16048:32583029,36745007:0 -) -(1,16049:6764466,37610087:25818563,513147,134348 -k1,16048:8548237,37610087:285618 -h1,16048:9743614,37610087:0,0,0 -k1,16048:10409996,37610087:285618 -k1,16048:12076457,37610087:285617 -k1,16048:14083050,37610087:285618 -k1,16048:16571333,37610087:285618 -k1,16048:20128508,37610087:285618 -k1,16048:23314749,37610087:285618 -k1,16048:24213129,37610087:285618 -k1,16048:25517831,37610087:285617 -k1,16048:28376392,37610087:285618 -k1,16048:29321302,37610087:285618 -k1,16048:32583029,37610087:0 -) -(1,16049:6764466,38475167:25818563,513147,134348 -k1,16048:8024642,38475167:241091 -k1,16048:9478148,38475167:241090 -k1,16048:10378531,38475167:241091 -k1,16048:12313071,38475167:241090 -k1,16048:13240324,38475167:241091 -k1,16048:14242942,38475167:241090 -k1,16048:16886583,38475167:241091 -k1,16048:18146758,38475167:241090 -k1,16048:19487543,38475167:241091 -k1,16048:20380061,38475167:241090 -k1,16048:22874935,38475167:241091 -k1,16048:23574122,38475167:241090 -k1,16048:24346710,38475167:241091 -k1,16048:25654071,38475167:241090 -k1,16048:28388152,38475167:241091 -k1,16048:30514713,38475167:241090 -k1,16048:32583029,38475167:0 -) -(1,16049:6764466,39340247:25818563,513147,115847 -k1,16048:7958281,39340247:202255 -k1,16048:10851445,39340247:202256 -k1,16048:11669738,39340247:202255 -k1,16048:12891078,39340247:202255 -k1,16048:17150668,39340247:202256 -k1,16048:18012215,39340247:202255 -k1,16048:19233556,39340247:202256 -k1,16048:20535505,39340247:202255 -k1,16048:21389188,39340247:202255 -(1,16048:21389188,39340247:0,452978,115847 -r1,16051:24209437,39340247:2820249,568825,115847 -k1,16048:21389188,39340247:-2820249 -) -(1,16048:21389188,39340247:2820249,452978,115847 -k1,16048:21389188,39340247:3277 -h1,16048:24206160,39340247:0,411205,112570 -) -k1,16048:24411693,39340247:202256 -k1,16048:25805393,39340247:202255 -k1,16048:27893119,39340247:202255 -k1,16048:29582387,39340247:202256 -k1,16048:31794631,39340247:202255 -k1,16048:32583029,39340247:0 -) -(1,16049:6764466,40205327:25818563,513147,134348 -k1,16048:8247983,40205327:177384 -k1,16048:13222602,40205327:177384 -k1,16048:14086148,40205327:177384 -k1,16048:16646422,40205327:177385 -k1,16048:18892122,40205327:177384 -k1,16048:19685544,40205327:177384 -k1,16048:20882013,40205327:177384 -k1,16048:22448760,40205327:177384 -k1,16048:24676110,40205327:177384 -k1,16048:25481330,40205327:177385 -k1,16048:28498389,40205327:177384 -k1,16048:31246750,40205327:177384 -k1,16049:32583029,40205327:0 -) -(1,16049:6764466,41070407:25818563,505283,134348 -k1,16048:8815661,41070407:158515 -k1,16048:9590214,41070407:158515 -k1,16048:10104589,41070407:158515 -k1,16048:12094181,41070407:158516 -k1,16048:13356978,41070407:158515 -k1,16048:15756169,41070407:158515 -k1,16048:17245065,41070407:158515 -k1,16048:17759440,41070407:158515 -k1,16048:19017649,41070407:158515 -k1,16048:19827592,41070407:158515 -k1,16048:22066220,41070407:158515 -k1,16048:22756233,41070407:158516 -k1,16048:26678481,41070407:158515 -k1,16048:27464831,41070407:158515 -k1,16048:29812904,41070407:158515 -k1,16048:32051532,41070407:158515 -k1,16048:32583029,41070407:0 -) -(1,16049:6764466,41935487:25818563,513147,126483 -k1,16048:7289923,41935487:169597 -k1,16048:10101932,41935487:169597 -k1,16048:12967026,41935487:169598 -k1,16048:14615115,41935487:169597 -k1,16048:15594082,41935487:169597 -k1,16048:16835848,41935487:169597 -k1,16048:17664737,41935487:169597 -k1,16048:18853420,41935487:169598 -k1,16048:22237558,41935487:169597 -k1,16048:25153769,41935487:169597 -(1,16048:25153769,41935487:0,452978,115847 -r1,16051:26215459,41935487:1061690,568825,115847 -k1,16048:25153769,41935487:-1061690 -) -(1,16048:25153769,41935487:1061690,452978,115847 -g1,16048:25860470,41935487 -h1,16048:26212182,41935487:0,411205,112570 -) -k1,16048:26385056,41935487:169597 -k1,16048:27786731,41935487:169598 -k1,16048:30235015,41935487:169597 -h1,16048:31604062,41935487:0,0,0 -k1,16048:31773659,41935487:169597 -k1,16048:32583029,41935487:0 -) -(1,16049:6764466,42800567:25818563,513147,134348 -k1,16048:8474488,42800567:211869 -h1,16048:9271406,42800567:0,0,0 -k1,16048:9864038,42800567:211868 -k1,16048:10545800,42800567:211869 -k1,16048:11289165,42800567:211868 -k1,16048:11856894,42800567:211869 -k1,16048:15975363,42800567:211868 -k1,16048:19056398,42800567:211869 -k1,16048:21436198,42800567:211869 -k1,16048:24472012,42800567:211868 -k1,16048:25335309,42800567:211869 -k1,16048:26294943,42800567:211868 -k1,16048:28020038,42800567:211869 -k1,16048:28844668,42800567:211868 -k1,16048:30075622,42800567:211869 -k1,16048:32583029,42800567:0 -) -(1,16049:6764466,43665647:25818563,513147,134348 -k1,16048:8961701,43665647:245573 -k1,16048:10649721,43665647:245573 -k1,16048:11511332,43665647:245573 -k1,16048:13918282,43665647:245573 -k1,16048:14846740,43665647:245573 -k1,16048:17672465,43665647:245573 -k1,16048:19587895,43665647:245573 -k1,16048:20662497,43665647:245572 -k1,16048:23112046,43665647:245573 -k1,16048:26070810,43665647:245573 -k1,16048:26999268,43665647:245573 -k1,16048:28779039,43665647:245573 -k1,16048:30592233,43665647:245573 -k1,16048:31193666,43665647:245573 -k1,16048:32583029,43665647:0 -) -(1,16049:6764466,44530727:25818563,513147,126483 -k1,16048:8804983,44530727:164221 -k1,16048:9427301,44530727:164221 -k1,16048:10123018,44530727:164220 -k1,16048:12416504,44530727:164221 -k1,16048:14167352,44530727:164221 -k1,16048:14983001,44530727:164221 -k1,16048:16239707,44530727:164221 -k1,16048:17423012,44530727:164220 -(1,16048:17423012,44530727:0,452978,115847 -r1,16051:19188126,44530727:1765114,568825,115847 -k1,16048:17423012,44530727:-1765114 -) -(1,16048:17423012,44530727:1765114,452978,115847 -g1,16048:18129713,44530727 -g1,16048:18833137,44530727 -h1,16048:19184849,44530727:0,411205,112570 -) -k1,16048:19352347,44530727:164221 -k1,16048:20199453,44530727:164221 -(1,16048:20199453,44530727:0,452978,115847 -r1,16051:21964567,44530727:1765114,568825,115847 -k1,16048:20199453,44530727:-1765114 -) -(1,16048:20199453,44530727:1765114,452978,115847 -g1,16048:21257866,44530727 -h1,16048:21961290,44530727:0,411205,112570 -) -k1,16048:22128788,44530727:164221 -k1,16048:25369924,44530727:164221 -k1,16048:26146907,44530727:164221 -k1,16048:27330212,44530727:164220 -k1,16048:30067376,44530727:164221 -k1,16048:30890889,44530727:164221 -k1,16048:32583029,44530727:0 -) -(1,16049:6764466,45395807:25818563,505283,126483 -k1,16049:32583029,45395807:22846506 -g1,16049:32583029,45395807 -) -] -g1,16051:32583029,45522290 -) -] -(1,16051:32583029,45706769:0,0,0 -g1,16051:32583029,45706769 -) -) -] -(1,16051:6630773,47279633:25952256,0,0 -h1,16051:6630773,47279633:25952256,0,0 -) -] -(1,16051:4262630,4025873:0,0,0 -[1,16051:-473656,4025873:0,0,0 -(1,16051:-473656,-710413:0,0,0 -(1,16051:-473656,-710413:0,0,0 -g1,16051:-473656,-710413 -) -g1,16051:-473656,-710413 +) +) +) +] +[1,16049:3078558,4812305:0,0,0 +(1,16049:3078558,49800853:0,16384,2228224 +g1,16049:29030814,49800853 +g1,16049:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16049:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16049:37855564,49800853:1179648,16384,0 +) +) +k1,16049:3078556,49800853:-34777008 +) +] +g1,16049:6630773,4812305 +g1,16049:6630773,4812305 +g1,16049:10697281,4812305 +k1,16049:31387653,4812305:20690372 +) +) +] +[1,16049:6630773,45706769:25952256,40108032,0 +(1,16049:6630773,45706769:25952256,40108032,0 +(1,16049:6630773,45706769:0,0,0 +g1,16049:6630773,45706769 +) +[1,16049:6630773,45706769:25952256,40108032,0 +(1,16020:6630773,6254097:25952256,513147,126483 +k1,16019:7850267,6254097:200409 +k1,16019:11127591,6254097:200409 +k1,16019:13626348,6254097:200409 +k1,16019:14478185,6254097:200409 +k1,16019:16476247,6254097:200409 +k1,16019:17879897,6254097:200409 +k1,16019:19363501,6254097:200409 +k1,16019:21647955,6254097:200409 +k1,16019:22499792,6254097:200409 +k1,16019:23115043,6254097:200408 +k1,16019:23846949,6254097:200409 +k1,16019:24403218,6254097:200409 +k1,16019:27786711,6254097:200409 +k1,16019:28638548,6254097:200409 +k1,16019:29627355,6254097:200409 +k1,16019:32583029,6254097:0 +) +(1,16020:6630773,7119177:25952256,513147,134348 +k1,16019:8053167,7119177:230949 +k1,16019:12346693,7119177:230949 +k1,16019:13927684,7119177:230949 +k1,16019:17242757,7119177:230949 +k1,16019:20418893,7119177:230949 +k1,16019:21841286,7119177:230948 +k1,16019:24408592,7119177:230949 +k1,16019:26600378,7119177:230949 +k1,16019:29908242,7119177:230949 +k1,16019:31086842,7119177:230949 +k1,16020:32583029,7119177:0 +) +(1,16020:6630773,7984257:25952256,513147,134348 +k1,16019:8677157,7984257:191715 +k1,16019:11126587,7984257:191715 +k1,16019:11946137,7984257:191715 +k1,16019:13490515,7984257:191715 +k1,16019:15276066,7984257:191715 +k1,16019:15823641,7984257:191715 +k1,16019:17405375,7984257:191715 +k1,16019:20343704,7984257:191715 +k1,16019:21742592,7984257:191715 +k1,16019:23899732,7984257:191715 +k1,16019:24742875,7984257:191715 +k1,16019:25953675,7984257:191715 +k1,16019:26560226,7984257:191708 +k1,16019:29594237,7984257:191715 +k1,16019:31391584,7984257:191715 +k1,16019:32583029,7984257:0 +) +(1,16020:6630773,8849337:25952256,513147,126483 +g1,16019:8480199,8849337 +g1,16019:11234021,8849337 +g1,16019:12221648,8849337 +g1,16019:15026588,8849337 +k1,16020:32583029,8849337:14454622 +g1,16020:32583029,8849337 +) +(1,16022:6630773,9714417:25952256,513147,134348 +h1,16021:6630773,9714417:983040,0,0 +k1,16021:8418597,9714417:176949 +k1,16021:10378781,9714417:176949 +k1,16021:11215022,9714417:176949 +k1,16021:12373045,9714417:176949 +k1,16021:14146451,9714417:176949 +k1,16021:14536370,9714417:176927 +k1,16021:18081214,9714417:176949 +k1,16021:22993795,9714417:176949 +k1,16021:24362189,9714417:176949 +k1,16021:27736640,9714417:176949 +k1,16021:31149101,9714417:176949 +k1,16022:32583029,9714417:0 +) +(1,16022:6630773,10579497:25952256,513147,134348 +k1,16021:7287702,10579497:242086 +k1,16021:8917229,10579497:242130 +k1,16021:12231687,10579497:242130 +k1,16021:15557940,10579497:242129 +k1,16021:17871008,10579497:242130 +k1,16021:19060788,10579497:242129 +k1,16021:22001035,10579497:242130 +k1,16021:25281413,10579497:242129 +k1,16021:28448415,10579497:242130 +k1,16021:29732566,10579497:242129 +k1,16021:31092740,10579497:242130 +k1,16021:32583029,10579497:0 +) +(1,16022:6630773,11444577:25952256,505283,126483 +k1,16021:8064377,11444577:242159 +k1,16021:10231328,11444577:242159 +k1,16021:11156372,11444577:242159 +k1,16021:16290794,11444577:242159 +k1,16021:17922316,11444577:242159 +k1,16021:20865215,11444577:242160 +k1,16021:21320323,11444577:242116 +k1,16021:23002308,11444577:242159 +k1,16021:23895895,11444577:242159 +k1,16021:25230539,11444577:242159 +k1,16021:26491783,11444577:242159 +k1,16021:29734835,11444577:242159 +k1,16021:32583029,11444577:0 +) +(1,16022:6630773,12309657:25952256,513147,134348 +k1,16021:8284443,12309657:285933 +k1,16021:11056158,12309657:285934 +k1,16021:14748652,12309657:285933 +k1,16021:16226030,12309657:285933 +k1,16021:18204104,12309657:285934 +k1,16021:23145059,12309657:285933 +k1,16021:24090284,12309657:285933 +k1,16021:25924833,12309657:285933 +k1,16021:27202327,12309657:285934 +k1,16021:28507345,12309657:285933 +k1,16021:32583029,12309657:0 +) +(1,16022:6630773,13174737:25952256,513147,126483 +k1,16021:10534850,13174737:224230 +k1,16021:11375118,13174737:224230 +k1,16021:12014167,13174737:224206 +k1,16021:13908254,13174737:224230 +k1,16021:14345451,13174737:224205 +k1,16021:16044896,13174737:224230 +k1,16021:18115275,13174737:224230 +k1,16021:20249225,13174737:224231 +k1,16021:20931552,13174737:224230 +k1,16021:24720941,13174737:224230 +k1,16021:25964256,13174737:224230 +k1,16021:27961236,13174737:224231 +k1,16021:30483814,13174737:224230 +k1,16021:31655695,13174737:224230 +k1,16022:32583029,13174737:0 +) +(1,16022:6630773,14039817:25952256,513147,134348 +k1,16021:9135952,14039817:276300 +k1,16021:13487936,14039817:276300 +k1,16021:14525763,14039817:276299 +k1,16021:16537456,14039817:276300 +k1,16021:19886084,14039817:276300 +k1,16021:23246508,14039817:276300 +k1,16021:24719495,14039817:276300 +k1,16021:27193216,14039817:276299 +k1,16021:28120944,14039817:276300 +k1,16021:30169993,14039817:276300 +k1,16021:32583029,14039817:0 +) +(1,16022:6630773,14904897:25952256,513147,134348 +g1,16021:7936250,14904897 +g1,16021:8883245,14904897 +g1,16021:11844817,14904897 +g1,16021:12991697,14904897 +g1,16021:14934839,14904897 +g1,16021:17512370,14904897 +g1,16021:19041980,14904897 +g1,16021:21611646,14904897 +g1,16021:23362112,14904897 +g1,16021:24950704,14904897 +k1,16022:32583029,14904897:6315052 +g1,16022:32583029,14904897 +) +(1,16024:6630773,15769977:25952256,513147,134348 +h1,16023:6630773,15769977:983040,0,0 +k1,16023:9002684,15769977:192184 +k1,16023:12277027,15769977:192185 +k1,16023:13128503,15769977:192184 +k1,16023:14339772,15769977:192184 +k1,16023:17359180,15769977:192185 +k1,16023:18082861,15769977:192184 +k1,16023:20226707,15769977:192184 +k1,16023:22441988,15769977:192185 +k1,16023:23320334,15769977:192184 +k1,16023:26092670,15769977:192184 +k1,16023:29492842,15769977:192185 +k1,16023:31391584,15769977:192184 +k1,16023:32583029,15769977:0 +) +(1,16024:6630773,16635057:25952256,513147,134348 +k1,16023:9448210,16635057:165850 +k1,16023:9969919,16635057:165849 +k1,16023:11070312,16635057:165850 +k1,16023:11895454,16635057:165850 +k1,16023:14971758,16635057:165850 +k1,16023:15796899,16635057:165849 +k1,16023:17848220,16635057:165850 +k1,16023:19615770,16635057:165850 +k1,16023:20853789,16635057:165850 +k1,16023:22085909,16635057:165849 +k1,16023:23017875,16635057:165850 +k1,16023:25168811,16635057:165850 +k1,16023:25690521,16635057:165850 +k1,16023:29137102,16635057:165849 +k1,16023:31391584,16635057:165850 +k1,16023:32583029,16635057:0 +) +(1,16024:6630773,17500137:25952256,505283,134348 +k1,16023:9356118,17500137:198932 +k1,16023:10758290,17500137:198931 +k1,16023:12240417,17500137:198932 +k1,16023:15515608,17500137:198931 +k1,16023:16911227,17500137:198932 +k1,16023:20020612,17500137:198931 +k1,16023:21504050,17500137:198932 +k1,16023:22694541,17500137:198931 +k1,16023:25635499,17500137:198932 +k1,16023:26595958,17500137:198931 +k1,16023:29375042,17500137:198932 +k1,16023:32583029,17500137:0 +) +(1,16024:6630773,18365217:25952256,513147,134348 +k1,16023:7958294,18365217:226516 +k1,16023:10846227,18365217:226516 +k1,16023:12460141,18365217:226517 +k1,16023:14285735,18365217:226516 +k1,16023:17047184,18365217:226516 +k1,16023:20655357,18365217:226516 +k1,16023:23726136,18365217:226516 +k1,16023:26243791,18365217:226516 +k1,16023:26826168,18365217:226517 +k1,16023:29748180,18365217:226516 +k1,16023:31259202,18365217:226516 +k1,16023:32583029,18365217:0 +) +(1,16024:6630773,19230297:25952256,505283,7863 +k1,16024:32583029,19230297:24260772 +g1,16024:32583029,19230297 +) +v1,16026:6630773,19915152:0,393216,0 +(1,16040:6630773,25859141:25952256,6337205,196608 +g1,16040:6630773,25859141 +g1,16040:6630773,25859141 +g1,16040:6434165,25859141 +(1,16040:6434165,25859141:0,6337205,196608 +r1,16049:32779637,25859141:26345472,6533813,196608 +k1,16040:6434165,25859141:-26345472 +) +(1,16040:6434165,25859141:26345472,6337205,196608 +[1,16040:6630773,25859141:25952256,6140597,0 +(1,16028:6630773,20142983:25952256,424439,112852 +(1,16027:6630773,20142983:0,0,0 +g1,16027:6630773,20142983 +g1,16027:6630773,20142983 +g1,16027:6303093,20142983 +(1,16027:6303093,20142983:0,0,0 +) +g1,16027:6630773,20142983 +) +k1,16028:6630773,20142983:0 +h1,16028:16921345,20142983:0,0,0 +k1,16028:32583029,20142983:15661684 +g1,16028:32583029,20142983 +) +(1,16039:6630773,20958910:25952256,431045,106246 +(1,16030:6630773,20958910:0,0,0 +g1,16030:6630773,20958910 +g1,16030:6630773,20958910 +g1,16030:6303093,20958910 +(1,16030:6303093,20958910:0,0,0 +) +g1,16030:6630773,20958910 +) +g1,16039:7626635,20958910 +g1,16039:7958589,20958910 +g1,16039:9286405,20958910 +g1,16039:11942037,20958910 +g1,16039:12273991,20958910 +g1,16039:12605945,20958910 +g1,16039:12937899,20958910 +g1,16039:13269853,20958910 +g1,16039:13601807,20958910 +g1,16039:13933761,20958910 +g1,16039:14265715,20958910 +g1,16039:14597669,20958910 +g1,16039:18913070,20958910 +g1,16039:19245024,20958910 +g1,16039:19576978,20958910 +g1,16039:19908932,20958910 +g1,16039:21900656,20958910 +g1,16039:22232610,20958910 +g1,16039:22564564,20958910 +g1,16039:22896518,20958910 +g1,16039:23228472,20958910 +g1,16039:23560426,20958910 +g1,16039:23892380,20958910 +g1,16039:24224334,20958910 +g1,16039:24556288,20958910 +g1,16039:24888242,20958910 +g1,16039:25220196,20958910 +h1,16039:27875827,20958910:0,0,0 +k1,16039:32583029,20958910:4707202 +g1,16039:32583029,20958910 +) +(1,16039:6630773,21643765:25952256,431045,112852 +h1,16039:6630773,21643765:0,0,0 +g1,16039:7626635,21643765 +g1,16039:7958589,21643765 +g1,16039:9286405,21643765 +g1,16039:11942037,21643765 +g1,16039:12273991,21643765 +g1,16039:12605945,21643765 +g1,16039:12937899,21643765 +g1,16039:13269853,21643765 +g1,16039:13601807,21643765 +g1,16039:13933761,21643765 +g1,16039:14265715,21643765 +g1,16039:14597669,21643765 +g1,16039:17585254,21643765 +g1,16039:17917208,21643765 +g1,16039:18249162,21643765 +g1,16039:18581116,21643765 +g1,16039:18913070,21643765 +g1,16039:19245024,21643765 +g1,16039:19576978,21643765 +g1,16039:19908932,21643765 +g1,16039:23228471,21643765 +g1,16039:23560425,21643765 +g1,16039:23892379,21643765 +g1,16039:24224333,21643765 +g1,16039:24556287,21643765 +g1,16039:24888241,21643765 +g1,16039:25220195,21643765 +h1,16039:28207780,21643765:0,0,0 +k1,16039:32583029,21643765:4375249 +g1,16039:32583029,21643765 +) +(1,16039:6630773,22328620:25952256,424439,112852 +h1,16039:6630773,22328620:0,0,0 +g1,16039:7626635,22328620 +g1,16039:7958589,22328620 +g1,16039:9286405,22328620 +g1,16039:13933760,22328620 +g1,16039:14265714,22328620 +g1,16039:14597668,22328620 +g1,16039:19908931,22328620 +g1,16039:22564563,22328620 +g1,16039:22896517,22328620 +g1,16039:23228471,22328620 +g1,16039:23560425,22328620 +g1,16039:23892379,22328620 +g1,16039:24224333,22328620 +g1,16039:24556287,22328620 +g1,16039:24888241,22328620 +g1,16039:25220195,22328620 +h1,16039:26879965,22328620:0,0,0 +k1,16039:32583029,22328620:5703064 +g1,16039:32583029,22328620 +) +(1,16039:6630773,23013475:25952256,424439,112852 +h1,16039:6630773,23013475:0,0,0 +g1,16039:7626635,23013475 +g1,16039:9286405,23013475 +g1,16039:11610083,23013475 +g1,16039:11942037,23013475 +g1,16039:12273991,23013475 +g1,16039:12605945,23013475 +g1,16039:12937899,23013475 +g1,16039:13269853,23013475 +g1,16039:13601807,23013475 +g1,16039:13933761,23013475 +g1,16039:14265715,23013475 +g1,16039:14597669,23013475 +g1,16039:18249162,23013475 +g1,16039:18581116,23013475 +g1,16039:18913070,23013475 +g1,16039:19245024,23013475 +g1,16039:19576978,23013475 +g1,16039:19908932,23013475 +g1,16039:23892379,23013475 +g1,16039:24224333,23013475 +g1,16039:24556287,23013475 +g1,16039:24888241,23013475 +g1,16039:25220195,23013475 +h1,16039:28539734,23013475:0,0,0 +k1,16039:32583029,23013475:4043295 +g1,16039:32583029,23013475 +) +(1,16039:6630773,23698330:25952256,424439,112852 +h1,16039:6630773,23698330:0,0,0 +g1,16039:7626635,23698330 +g1,16039:9286405,23698330 +g1,16039:12273990,23698330 +g1,16039:12605944,23698330 +g1,16039:12937898,23698330 +g1,16039:13269852,23698330 +g1,16039:13601806,23698330 +g1,16039:13933760,23698330 +g1,16039:14265714,23698330 +g1,16039:14597668,23698330 +g1,16039:17585253,23698330 +g1,16039:17917207,23698330 +g1,16039:18249161,23698330 +g1,16039:18581115,23698330 +g1,16039:18913069,23698330 +g1,16039:19245023,23698330 +g1,16039:19576977,23698330 +g1,16039:19908931,23698330 +g1,16039:22564563,23698330 +g1,16039:22896517,23698330 +g1,16039:23228471,23698330 +g1,16039:23560425,23698330 +g1,16039:23892379,23698330 +g1,16039:24224333,23698330 +g1,16039:24556287,23698330 +g1,16039:24888241,23698330 +g1,16039:25220195,23698330 +h1,16039:27211919,23698330:0,0,0 +k1,16039:32583029,23698330:5371110 +g1,16039:32583029,23698330 +) +(1,16039:6630773,24383185:25952256,424439,112852 +h1,16039:6630773,24383185:0,0,0 +g1,16039:7626635,24383185 +g1,16039:9286405,24383185 +g1,16039:11942037,24383185 +g1,16039:12273991,24383185 +g1,16039:12605945,24383185 +g1,16039:12937899,24383185 +g1,16039:13269853,24383185 +g1,16039:13601807,24383185 +g1,16039:13933761,24383185 +g1,16039:14265715,24383185 +g1,16039:14597669,24383185 +g1,16039:17585254,24383185 +g1,16039:17917208,24383185 +g1,16039:18249162,24383185 +g1,16039:18581116,24383185 +g1,16039:18913070,24383185 +g1,16039:19245024,24383185 +g1,16039:19576978,24383185 +g1,16039:19908932,24383185 +g1,16039:22896517,24383185 +g1,16039:23228471,24383185 +g1,16039:23560425,24383185 +g1,16039:23892379,24383185 +g1,16039:24224333,24383185 +g1,16039:24556287,24383185 +g1,16039:24888241,24383185 +g1,16039:25220195,24383185 +h1,16039:27543873,24383185:0,0,0 +k1,16039:32583029,24383185:5039156 +g1,16039:32583029,24383185 +) +(1,16039:6630773,25068040:25952256,424439,112852 +h1,16039:6630773,25068040:0,0,0 +g1,16039:7626635,25068040 +g1,16039:9286405,25068040 +g1,16039:13601806,25068040 +g1,16039:13933760,25068040 +g1,16039:14265714,25068040 +g1,16039:14597668,25068040 +g1,16039:17253300,25068040 +g1,16039:17585254,25068040 +g1,16039:17917208,25068040 +g1,16039:18249162,25068040 +g1,16039:18581116,25068040 +g1,16039:18913070,25068040 +g1,16039:19245024,25068040 +g1,16039:19576978,25068040 +g1,16039:19908932,25068040 +g1,16039:23228471,25068040 +g1,16039:23560425,25068040 +g1,16039:23892379,25068040 +g1,16039:24224333,25068040 +g1,16039:24556287,25068040 +g1,16039:24888241,25068040 +g1,16039:25220195,25068040 +h1,16039:27875826,25068040:0,0,0 +k1,16039:32583029,25068040:4707203 +g1,16039:32583029,25068040 +) +(1,16039:6630773,25752895:25952256,424439,106246 +h1,16039:6630773,25752895:0,0,0 +g1,16039:7626635,25752895 +g1,16039:9286405,25752895 +g1,16039:11942037,25752895 +g1,16039:12273991,25752895 +g1,16039:12605945,25752895 +g1,16039:12937899,25752895 +g1,16039:13269853,25752895 +g1,16039:13601807,25752895 +g1,16039:13933761,25752895 +g1,16039:14265715,25752895 +g1,16039:14597669,25752895 +g1,16039:16921347,25752895 +g1,16039:17253301,25752895 +g1,16039:17585255,25752895 +g1,16039:17917209,25752895 +g1,16039:18249163,25752895 +g1,16039:18581117,25752895 +g1,16039:18913071,25752895 +g1,16039:19245025,25752895 +g1,16039:19576979,25752895 +g1,16039:19908933,25752895 +h1,16039:23560426,25752895:0,0,0 +k1,16039:32583029,25752895:9022603 +g1,16039:32583029,25752895 +) +] +) +g1,16040:32583029,25859141 +g1,16040:6630773,25859141 +g1,16040:6630773,25859141 +g1,16040:32583029,25859141 +g1,16040:32583029,25859141 +) +h1,16040:6630773,26055749:0,0,0 +(1,16044:6630773,26920829:25952256,513147,134348 +h1,16043:6630773,26920829:983040,0,0 +k1,16043:8480735,26920829:239087 +k1,16043:9923064,26920829:239088 +k1,16043:12753445,26920829:239087 +k1,16043:14163006,26920829:239088 +k1,16043:15534555,26920829:239087 +k1,16043:18216825,26920829:239088 +k1,16043:20948246,26920829:239087 +k1,16043:22581285,26920829:239088 +k1,16043:25730826,26920829:239087 +k1,16043:28305616,26920829:239088 +k1,16043:30691006,26920829:239087 +k1,16043:32583029,26920829:0 +) +(1,16044:6630773,27785909:25952256,505283,134348 +k1,16043:8048481,27785909:226263 +k1,16043:11646570,27785909:226263 +k1,16043:14407766,27785909:226263 +k1,16043:17462562,27785909:226263 +k1,16043:18821287,27785909:226263 +k1,16043:19795316,27785909:226263 +k1,16043:23111602,27785909:226263 +k1,16043:23953903,27785909:226263 +k1,16043:26597789,27785909:226263 +h1,16043:26996248,27785909:0,0,0 +k1,16043:27222511,27785909:226263 +k1,16043:28134936,27785909:226263 +k1,16043:28819296,27785909:226263 +k1,16043:32583029,27785909:0 +) +(1,16044:6630773,28650989:25952256,513147,134348 +k1,16043:7939527,28650989:289669 +k1,16043:11131786,28650989:289669 +k1,16043:12080747,28650989:289669 +k1,16043:15089505,28650989:289669 +k1,16043:16570619,28650989:289669 +k1,16043:17961293,28650989:289669 +k1,16043:19723555,28650989:289668 +k1,16043:20629262,28650989:289669 +k1,16043:23696347,28650989:289669 +k1,16043:25379967,28650989:289669 +k1,16043:27371606,28650989:289669 +k1,16043:30614983,28650989:289669 +k1,16043:31563944,28650989:289669 +k1,16043:32583029,28650989:0 +) +(1,16044:6630773,29516069:25952256,513147,126483 +k1,16043:10194116,29516069:233459 +k1,16043:11245465,29516069:233460 +k1,16043:13230701,29516069:233459 +k1,16043:14123453,29516069:233460 +k1,16043:15375997,29516069:233459 +k1,16043:18635254,29516069:233460 +k1,16043:19484751,29516069:233459 +k1,16043:20737296,29516069:233460 +k1,16043:23797978,29516069:233459 +k1,16043:25135720,29516069:233460 +k1,16043:26116945,29516069:233459 +k1,16043:29981100,29516069:233460 +k1,16043:30976087,29516069:233459 +k1,16044:32583029,29516069:0 +) +(1,16044:6630773,30381149:25952256,513147,134348 +k1,16043:7882713,30381149:261691 +k1,16043:9578333,30381149:261692 +k1,16043:10254804,30381149:261628 +k1,16043:13715963,30381149:261691 +k1,16043:17652259,30381149:261692 +k1,16043:21452894,30381149:261691 +k1,16043:22906030,30381149:261691 +k1,16043:26684383,30381149:261691 +k1,16043:29581278,30381149:261692 +k1,16043:31482024,30381149:261691 +k1,16043:32583029,30381149:0 +) +(1,16044:6630773,31246229:25952256,513147,126483 +k1,16043:9263413,31246229:189458 +k1,16043:12662170,31246229:189459 +k1,16043:14478887,31246229:189458 +k1,16043:16135041,31246229:189458 +k1,16043:19986652,31246229:189459 +k1,16043:21167670,31246229:189458 +k1,16043:22687510,31246229:189459 +k1,16043:23493006,31246229:189458 +k1,16043:26459880,31246229:189458 +k1,16043:27915495,31246229:189459 +k1,16043:29296398,31246229:189458 +k1,16043:32583029,31246229:0 +) +(1,16044:6630773,32111309:25952256,505283,126483 +g1,16043:8296698,32111309 +g1,16043:10724806,32111309 +g1,16043:12934024,32111309 +g1,16043:13548096,32111309 +k1,16044:32583030,32111309:16821128 +g1,16044:32583030,32111309 +) +v1,16046:6630773,32976389:0,393216,0 +(1,16049:6630773,45522290:25952256,12939117,0 +g1,16049:6630773,45522290 +g1,16049:6237557,45522290 +r1,16049:6368629,45522290:131072,12939117,0 +g1,16049:6567858,45522290 +g1,16049:6764466,45522290 +[1,16049:6764466,45522290:25818563,12939117,0 +(1,16047:6764466,33284687:25818563,701514,196608 +(1,16046:6764466,33284687:0,701514,196608 +r1,16049:7761522,33284687:997056,898122,196608 +k1,16046:6764466,33284687:-997056 +) +(1,16046:6764466,33284687:997056,701514,196608 +) +k1,16046:7934800,33284687:173278 +k1,16046:8262480,33284687:327680 +k1,16046:9063593,33284687:173278 +k1,16046:10368677,33284687:173277 +k1,16046:12804258,33284687:173278 +k1,16046:14632320,33284687:173278 +k1,16046:15337095,33284687:173278 +k1,16046:15866232,33284687:173277 +k1,16046:18399461,33284687:173278 +k1,16046:21207942,33284687:173278 +k1,16046:24332306,33284687:173278 +k1,16046:26339281,33284687:173278 +k1,16046:27140393,33284687:173277 +k1,16046:30072737,33284687:173278 +k1,16046:31193666,33284687:173278 +k1,16046:32583029,33284687:0 +) +(1,16047:6764466,34149767:25818563,513147,134348 +k1,16046:9540462,34149767:221403 +k1,16046:10117724,34149767:221402 +k1,16046:11440132,34149767:221403 +k1,16046:12927690,34149767:221402 +k1,16046:13808385,34149767:221403 +k1,16046:16758706,34149767:221402 +k1,16046:18640136,34149767:221403 +k1,16046:19853098,34149767:221402 +k1,16046:22975124,34149767:221403 +k1,16046:26177103,34149767:221402 +k1,16046:28753870,34149767:221403 +k1,16046:30047441,34149767:221402 +k1,16047:32583029,34149767:0 +) +(1,16047:6764466,35014847:25818563,513147,134348 +k1,16046:7925695,35014847:255521 +k1,16046:9851073,35014847:255521 +k1,16046:11298039,35014847:255521 +k1,16046:14734678,35014847:255521 +k1,16046:15649490,35014847:255520 +k1,16046:19264386,35014847:255521 +k1,16046:20952524,35014847:255521 +k1,16046:21622832,35014847:255465 +k1,16046:24573848,35014847:255520 +(1,16046:24573848,35014847:0,452978,115847 +r1,16049:27394097,35014847:2820249,568825,115847 +k1,16046:24573848,35014847:-2820249 +) +(1,16046:24573848,35014847:2820249,452978,115847 +k1,16046:24573848,35014847:3277 +h1,16046:27390820,35014847:0,411205,112570 +) +k1,16046:27649618,35014847:255521 +k1,16046:29006144,35014847:255521 +k1,16046:30032368,35014847:255521 +k1,16046:32583029,35014847:0 +) +(1,16047:6764466,35879927:25818563,505283,134348 +k1,16046:9249973,35879927:227792 +k1,16046:10163927,35879927:227792 +k1,16046:10849816,35879927:227792 +k1,16046:14048355,35879927:227792 +k1,16046:15295232,35879927:227792 +k1,16046:18963010,35879927:227793 +k1,16046:21396089,35879927:227792 +k1,16046:22310043,35879927:227792 +k1,16046:23556920,35879927:227792 +k1,16046:26026043,35879927:227792 +k1,16046:29326163,35879927:227792 +k1,16046:31563944,35879927:227792 +k1,16046:32583029,35879927:0 +) +(1,16047:6764466,36745007:25818563,513147,134348 +k1,16046:10553959,36745007:263656 +k1,16046:11476907,36745007:263656 +k1,16046:12759648,36745007:263656 +k1,16046:14412668,36745007:263657 +k1,16046:16552620,36745007:263656 +k1,16046:19021563,36745007:263656 +k1,16046:19971381,36745007:263656 +k1,16046:21023435,36745007:263656 +k1,16046:22593224,36745007:263656 +k1,16046:25929209,36745007:263657 +k1,16046:27424942,36745007:263656 +k1,16046:29967285,36745007:263656 +h1,16046:31510003,36745007:0,0,0 +k1,16046:31773659,36745007:263656 +k1,16046:32583029,36745007:0 +) +(1,16047:6764466,37610087:25818563,513147,134348 +k1,16046:8548237,37610087:285618 +h1,16046:9743614,37610087:0,0,0 +k1,16046:10409996,37610087:285618 +k1,16046:12076457,37610087:285617 +k1,16046:14083050,37610087:285618 +k1,16046:16571333,37610087:285618 +k1,16046:20128508,37610087:285618 +k1,16046:23314749,37610087:285618 +k1,16046:24213129,37610087:285618 +k1,16046:25517831,37610087:285617 +k1,16046:28376392,37610087:285618 +k1,16046:29321302,37610087:285618 +k1,16046:32583029,37610087:0 +) +(1,16047:6764466,38475167:25818563,513147,134348 +k1,16046:8024642,38475167:241091 +k1,16046:9478148,38475167:241090 +k1,16046:10378531,38475167:241091 +k1,16046:12313071,38475167:241090 +k1,16046:13240324,38475167:241091 +k1,16046:14242942,38475167:241090 +k1,16046:16886583,38475167:241091 +k1,16046:18146758,38475167:241090 +k1,16046:19487543,38475167:241091 +k1,16046:20380061,38475167:241090 +k1,16046:22874935,38475167:241091 +k1,16046:23574122,38475167:241090 +k1,16046:24346710,38475167:241091 +k1,16046:25654071,38475167:241090 +k1,16046:28388152,38475167:241091 +k1,16046:30514713,38475167:241090 +k1,16046:32583029,38475167:0 +) +(1,16047:6764466,39340247:25818563,513147,115847 +k1,16046:7958281,39340247:202255 +k1,16046:10851445,39340247:202256 +k1,16046:11669738,39340247:202255 +k1,16046:12891078,39340247:202255 +k1,16046:17150668,39340247:202256 +k1,16046:18012215,39340247:202255 +k1,16046:19233556,39340247:202256 +k1,16046:20535505,39340247:202255 +k1,16046:21389188,39340247:202255 +(1,16046:21389188,39340247:0,452978,115847 +r1,16049:24209437,39340247:2820249,568825,115847 +k1,16046:21389188,39340247:-2820249 +) +(1,16046:21389188,39340247:2820249,452978,115847 +k1,16046:21389188,39340247:3277 +h1,16046:24206160,39340247:0,411205,112570 +) +k1,16046:24411693,39340247:202256 +k1,16046:25805393,39340247:202255 +k1,16046:27893119,39340247:202255 +k1,16046:29582387,39340247:202256 +k1,16046:31794631,39340247:202255 +k1,16046:32583029,39340247:0 +) +(1,16047:6764466,40205327:25818563,513147,134348 +k1,16046:8247983,40205327:177384 +k1,16046:13222602,40205327:177384 +k1,16046:14086148,40205327:177384 +k1,16046:16646422,40205327:177385 +k1,16046:18892122,40205327:177384 +k1,16046:19685544,40205327:177384 +k1,16046:20882013,40205327:177384 +k1,16046:22448760,40205327:177384 +k1,16046:24676110,40205327:177384 +k1,16046:25481330,40205327:177385 +k1,16046:28498389,40205327:177384 +k1,16046:31246750,40205327:177384 +k1,16047:32583029,40205327:0 +) +(1,16047:6764466,41070407:25818563,505283,134348 +k1,16046:8815661,41070407:158515 +k1,16046:9590214,41070407:158515 +k1,16046:10104589,41070407:158515 +k1,16046:12094181,41070407:158516 +k1,16046:13356978,41070407:158515 +k1,16046:15756169,41070407:158515 +k1,16046:17245065,41070407:158515 +k1,16046:17759440,41070407:158515 +k1,16046:19017649,41070407:158515 +k1,16046:19827592,41070407:158515 +k1,16046:22066220,41070407:158515 +k1,16046:22756233,41070407:158516 +k1,16046:26678481,41070407:158515 +k1,16046:27464831,41070407:158515 +k1,16046:29812904,41070407:158515 +k1,16046:32051532,41070407:158515 +k1,16046:32583029,41070407:0 +) +(1,16047:6764466,41935487:25818563,513147,126483 +k1,16046:7289923,41935487:169597 +k1,16046:10101932,41935487:169597 +k1,16046:12967026,41935487:169598 +k1,16046:14615115,41935487:169597 +k1,16046:15594082,41935487:169597 +k1,16046:16835848,41935487:169597 +k1,16046:17664737,41935487:169597 +k1,16046:18853420,41935487:169598 +k1,16046:22237558,41935487:169597 +k1,16046:25153769,41935487:169597 +(1,16046:25153769,41935487:0,452978,115847 +r1,16049:26215459,41935487:1061690,568825,115847 +k1,16046:25153769,41935487:-1061690 +) +(1,16046:25153769,41935487:1061690,452978,115847 +g1,16046:25860470,41935487 +h1,16046:26212182,41935487:0,411205,112570 +) +k1,16046:26385056,41935487:169597 +k1,16046:27786731,41935487:169598 +k1,16046:30235015,41935487:169597 +h1,16046:31604062,41935487:0,0,0 +k1,16046:31773659,41935487:169597 +k1,16046:32583029,41935487:0 +) +(1,16047:6764466,42800567:25818563,513147,134348 +k1,16046:8474488,42800567:211869 +h1,16046:9271406,42800567:0,0,0 +k1,16046:9864038,42800567:211868 +k1,16046:10545800,42800567:211869 +k1,16046:11289165,42800567:211868 +k1,16046:11856894,42800567:211869 +k1,16046:15975363,42800567:211868 +k1,16046:19056398,42800567:211869 +k1,16046:21436198,42800567:211869 +k1,16046:24472012,42800567:211868 +k1,16046:25335309,42800567:211869 +k1,16046:26294943,42800567:211868 +k1,16046:28020038,42800567:211869 +k1,16046:28844668,42800567:211868 +k1,16046:30075622,42800567:211869 +k1,16046:32583029,42800567:0 +) +(1,16047:6764466,43665647:25818563,513147,134348 +k1,16046:8961701,43665647:245573 +k1,16046:10649721,43665647:245573 +k1,16046:11511332,43665647:245573 +k1,16046:13918282,43665647:245573 +k1,16046:14846740,43665647:245573 +k1,16046:17672465,43665647:245573 +k1,16046:19587895,43665647:245573 +k1,16046:20662497,43665647:245572 +k1,16046:23112046,43665647:245573 +k1,16046:26070810,43665647:245573 +k1,16046:26999268,43665647:245573 +k1,16046:28779039,43665647:245573 +k1,16046:30592233,43665647:245573 +k1,16046:31193666,43665647:245573 +k1,16046:32583029,43665647:0 +) +(1,16047:6764466,44530727:25818563,513147,126483 +k1,16046:8804983,44530727:164221 +k1,16046:9427301,44530727:164221 +k1,16046:10123018,44530727:164220 +k1,16046:12416504,44530727:164221 +k1,16046:14167352,44530727:164221 +k1,16046:14983001,44530727:164221 +k1,16046:16239707,44530727:164221 +k1,16046:17423012,44530727:164220 +(1,16046:17423012,44530727:0,452978,115847 +r1,16049:19188126,44530727:1765114,568825,115847 +k1,16046:17423012,44530727:-1765114 +) +(1,16046:17423012,44530727:1765114,452978,115847 +g1,16046:18129713,44530727 +g1,16046:18833137,44530727 +h1,16046:19184849,44530727:0,411205,112570 +) +k1,16046:19352347,44530727:164221 +k1,16046:20199453,44530727:164221 +(1,16046:20199453,44530727:0,452978,115847 +r1,16049:21964567,44530727:1765114,568825,115847 +k1,16046:20199453,44530727:-1765114 +) +(1,16046:20199453,44530727:1765114,452978,115847 +g1,16046:21257866,44530727 +h1,16046:21961290,44530727:0,411205,112570 +) +k1,16046:22128788,44530727:164221 +k1,16046:25369924,44530727:164221 +k1,16046:26146907,44530727:164221 +k1,16046:27330212,44530727:164220 +k1,16046:30067376,44530727:164221 +k1,16046:30890889,44530727:164221 +k1,16046:32583029,44530727:0 +) +(1,16047:6764466,45395807:25818563,505283,126483 +k1,16047:32583029,45395807:22846506 +g1,16047:32583029,45395807 +) +] +g1,16049:32583029,45522290 +) +] +(1,16049:32583029,45706769:0,0,0 +g1,16049:32583029,45706769 +) +) +] +(1,16049:6630773,47279633:25952256,0,0 +h1,16049:6630773,47279633:25952256,0,0 +) +] +(1,16049:4262630,4025873:0,0,0 +[1,16049:-473656,4025873:0,0,0 +(1,16049:-473656,-710413:0,0,0 +(1,16049:-473656,-710413:0,0,0 +g1,16049:-473656,-710413 +) +g1,16049:-473656,-710413 ) ] ) ] !30922 -}260 -Input:2694:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}261 +Input:2698:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{261 -[1,16086:4262630,47279633:28320399,43253760,0 -(1,16086:4262630,4025873:0,0,0 -[1,16086:-473656,4025873:0,0,0 -(1,16086:-473656,-710413:0,0,0 -(1,16086:-473656,-644877:0,0,0 -k1,16086:-473656,-644877:-65536 +{262 +[1,16084:4262630,47279633:28320399,43253760,0 +(1,16084:4262630,4025873:0,0,0 +[1,16084:-473656,4025873:0,0,0 +(1,16084:-473656,-710413:0,0,0 +(1,16084:-473656,-644877:0,0,0 +k1,16084:-473656,-644877:-65536 ) -(1,16086:-473656,4736287:0,0,0 -k1,16086:-473656,4736287:5209943 +(1,16084:-473656,4736287:0,0,0 +k1,16084:-473656,4736287:5209943 ) -g1,16086:-473656,-710413 +g1,16084:-473656,-710413 ) ] ) -[1,16086:6630773,47279633:25952256,43253760,0 -[1,16086:6630773,4812305:25952256,786432,0 -(1,16086:6630773,4812305:25952256,505283,134348 -(1,16086:6630773,4812305:25952256,505283,134348 -g1,16086:3078558,4812305 -[1,16086:3078558,4812305:0,0,0 -(1,16086:3078558,2439708:0,1703936,0 -k1,16086:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16086:2537886,2439708:1179648,16384,0 +[1,16084:6630773,47279633:25952256,43253760,0 +[1,16084:6630773,4812305:25952256,786432,0 +(1,16084:6630773,4812305:25952256,505283,134348 +(1,16084:6630773,4812305:25952256,505283,134348 +g1,16084:3078558,4812305 +[1,16084:3078558,4812305:0,0,0 +(1,16084:3078558,2439708:0,1703936,0 +k1,16084:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16084:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16086:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16084:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16086:3078558,4812305:0,0,0 -(1,16086:3078558,2439708:0,1703936,0 -g1,16086:29030814,2439708 -g1,16086:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16086:36151628,1915420:16384,1179648,0 +[1,16084:3078558,4812305:0,0,0 +(1,16084:3078558,2439708:0,1703936,0 +g1,16084:29030814,2439708 +g1,16084:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16084:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16086:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16084:37855564,2439708:1179648,16384,0 ) ) -k1,16086:3078556,2439708:-34777008 +k1,16084:3078556,2439708:-34777008 ) ] -[1,16086:3078558,4812305:0,0,0 -(1,16086:3078558,49800853:0,16384,2228224 -k1,16086:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16086:2537886,49800853:1179648,16384,0 +[1,16084:3078558,4812305:0,0,0 +(1,16084:3078558,49800853:0,16384,2228224 +k1,16084:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16084:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16086:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16084:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 -) -] -) -) -) -] -[1,16086:3078558,4812305:0,0,0 -(1,16086:3078558,49800853:0,16384,2228224 -g1,16086:29030814,49800853 -g1,16086:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16086:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16086:37855564,49800853:1179648,16384,0 -) -) -k1,16086:3078556,49800853:-34777008 -) -] -g1,16086:6630773,4812305 -k1,16086:23347041,4812305:15520891 -g1,16086:23960458,4812305 -g1,16086:27572802,4812305 -g1,16086:29306229,4812305 -) -) -] -[1,16086:6630773,45706769:25952256,40108032,0 -(1,16086:6630773,45706769:25952256,40108032,0 -(1,16086:6630773,45706769:0,0,0 -g1,16086:6630773,45706769 -) -[1,16086:6630773,45706769:25952256,40108032,0 -v1,16051:6630773,6254097:0,393216,0 -(1,16051:6630773,20349656:25952256,14488775,0 -g1,16051:6630773,20349656 -g1,16051:6237557,20349656 -r1,16086:6368629,20349656:131072,14488775,0 -g1,16051:6567858,20349656 -g1,16051:6764466,20349656 -[1,16051:6764466,20349656:25818563,14488775,0 -(1,16051:6764466,6374028:25818563,513147,134348 -h1,16050:6764466,6374028:983040,0,0 -k1,16050:10562605,6374028:280166 -k1,16050:12989075,6374028:280167 -k1,16050:14460686,6374028:280166 -k1,16050:16524087,6374028:280166 -k1,16050:17463546,6374028:280167 -k1,16050:18762797,6374028:280166 -k1,16050:22424620,6374028:280166 -k1,16050:24424452,6374028:280167 -k1,16050:25513988,6374028:280166 -k1,16050:26150014,6374028:280166 -k1,16050:28632191,6374028:280167 -k1,16050:31896867,6374028:280166 -k1,16050:32583029,6374028:0 -) -(1,16051:6764466,7239108:25818563,513147,134348 -k1,16050:9091828,7239108:247249 -k1,16050:9990506,7239108:247250 -k1,16050:12866404,7239108:247249 -k1,16050:17020255,7239108:247250 -k1,16050:17880266,7239108:247249 -k1,16050:19146601,7239108:247250 -k1,16050:21966793,7239108:247249 -k1,16050:22873335,7239108:247250 -k1,16050:26479959,7239108:247249 -k1,16050:29262142,7239108:247250 -k1,16050:31482024,7239108:247249 -k1,16050:32583029,7239108:0 -) -(1,16051:6764466,8104188:25818563,505283,134348 -k1,16050:10418229,8104188:236716 -k1,16050:12279583,8104188:236716 -k1,16050:14703235,8104188:236716 -k1,16050:17510928,8104188:236716 -k1,16050:19861835,8104188:236716 -k1,16050:20886949,8104188:236716 -k1,16050:25255710,8104188:236716 -k1,16050:27739656,8104188:236716 -k1,16050:29370323,8104188:236716 -k1,16050:31931601,8104188:236716 -k1,16050:32583029,8104188:0 -) -(1,16051:6764466,8969268:25818563,513147,134348 -k1,16050:8246017,8969268:151170 -k1,16050:9048614,8969268:151169 -k1,16050:11358540,8969268:151170 -k1,16050:12528795,8969268:151170 -k1,16050:15450171,8969268:151169 -k1,16050:17804006,8969268:151170 -k1,16050:18716704,8969268:151170 -k1,16050:22255429,8969268:151169 -k1,16050:23065891,8969268:151170 -k1,16050:24236146,8969268:151170 -k1,16050:28444649,8969268:151169 -k1,16050:30514713,8969268:151170 -k1,16050:32583029,8969268:0 -) -(1,16051:6764466,9834348:25818563,513147,126483 -k1,16050:9167390,9834348:222541 -k1,16050:10137698,9834348:222542 -k1,16050:12515063,9834348:222541 -k1,16050:13746859,9834348:222542 -k1,16050:15801787,9834348:222541 -k1,16050:16555826,9834348:222542 -k1,16050:17587737,9834348:222541 -k1,16050:19204884,9834348:222541 -k1,16050:21858812,9834348:222542 -k1,16050:22437213,9834348:222541 -k1,16050:25836940,9834348:222542 -k1,16050:28143526,9834348:222541 -k1,16050:30025440,9834348:222542 -k1,16050:30899409,9834348:222541 -k1,16051:32583029,9834348:0 -) -(1,16051:6764466,10699428:25818563,513147,134348 -k1,16050:8789629,10699428:243239 -k1,16050:10224314,10699428:243240 -k1,16050:10823413,10699428:243239 -k1,16050:12517620,10699428:243240 -k1,16050:15592670,10699428:243239 -k1,16050:17919954,10699428:243239 -k1,16050:18694691,10699428:243240 -k1,16050:21577065,10699428:243239 -k1,16050:23965297,10699428:243239 -k1,16050:26872576,10699428:243240 -k1,16050:27775107,10699428:243239 -k1,16050:29037432,10699428:243240 -k1,16050:31860823,10699428:243239 -k1,16051:32583029,10699428:0 -) -(1,16051:6764466,11564508:25818563,513147,134348 -k1,16050:9875226,11564508:233729 -k1,16050:10464816,11564508:233730 -k1,16050:12268788,11564508:233729 -k1,16050:14586563,11564508:233730 -k1,16050:15471720,11564508:233729 -k1,16050:18062780,11564508:233730 -k1,16050:18652369,11564508:233729 -k1,16050:21241462,11564508:233729 -k1,16050:22713167,11564508:233730 -k1,16050:23606188,11564508:233729 -k1,16050:27089193,11564508:233730 -k1,16050:29241816,11564508:233729 -k1,16050:30126974,11564508:233730 -k1,16050:31747445,11564508:233729 -k1,16050:32583029,11564508:0 -) -(1,16051:6764466,12429588:25818563,513147,134348 -k1,16050:9159155,12429588:152702 -k1,16050:9524803,12429588:152656 -k1,16050:10492774,12429588:152703 -k1,16050:13973394,12429588:152702 -k1,16050:15145181,12429588:152702 -k1,16050:18866975,12429588:152703 -k1,16050:19678969,12429588:152702 -k1,16050:20850756,12429588:152702 -k1,16050:23906049,12429588:152703 -k1,16050:24718043,12429588:152702 -k1,16050:26260108,12429588:152702 -k1,16050:27697317,12429588:152703 -k1,16050:28381516,12429588:152702 -k1,16050:32583029,12429588:0 -) -(1,16051:6764466,13294668:25818563,505283,134348 -k1,16050:7623381,13294668:242877 -k1,16050:8885342,13294668:242876 -k1,16050:12509876,13294668:242877 -k1,16050:15687454,13294668:242876 -k1,16050:16949416,13294668:242877 -k1,16050:19114464,13294668:242877 -k1,16050:24587768,13294668:242876 -k1,16050:25934927,13294668:242877 -k1,16050:28020675,13294668:242876 -k1,16050:28879590,13294668:242877 -k1,16050:32583029,13294668:0 -) -(1,16051:6764466,14159748:25818563,513147,126483 -k1,16050:8161366,14159748:205455 -k1,16050:11457499,14159748:205455 -k1,16050:12947460,14159748:205455 -k1,16050:14144475,14159748:205455 -k1,16050:15816626,14159748:205455 -k1,16050:17672279,14159748:205456 -k1,16050:20361549,14159748:205455 -k1,16050:21218432,14159748:205455 -k1,16050:22752957,14159748:205455 -k1,16050:23719940,14159748:205455 -k1,16050:28375290,14159748:205455 -k1,16050:29263630,14159748:205455 -k1,16050:32583029,14159748:0 -) -(1,16051:6764466,15024828:25818563,513147,126483 -k1,16050:8678445,15024828:202834 -k1,16050:10323726,15024828:202834 -k1,16050:12270473,15024828:202834 -k1,16050:14675972,15024828:202834 -k1,16050:15640334,15024828:202834 -k1,16050:20695454,15024828:202834 -k1,16050:21514326,15024828:202834 -k1,16050:23151087,15024828:202833 -k1,16050:23942434,15024828:202834 -k1,16050:25069981,15024828:202834 -k1,16050:27714686,15024828:202834 -k1,16050:28449017,15024828:202834 -k1,16050:29936357,15024828:202834 -k1,16050:31086842,15024828:202834 -k1,16050:32583029,15024828:0 -) -(1,16051:6764466,15889908:25818563,513147,134348 -k1,16050:8221332,15889908:172360 -k1,16050:10254258,15889908:172359 -k1,16050:11078046,15889908:172360 -k1,16050:11998171,15889908:172359 -k1,16050:14141854,15889908:172360 -k1,16050:16664990,15889908:172360 -k1,16050:18028794,15889908:172359 -k1,16050:20821283,15889908:172360 -k1,16050:25056220,15889908:172360 -k1,16050:27401753,15889908:172359 -k1,16050:28190151,15889908:172360 -k1,16050:29381595,15889908:172359 -k1,16050:31714677,15889908:172360 -k1,16050:32583029,15889908:0 -) -(1,16051:6764466,16754988:25818563,513147,134348 -k1,16050:9205380,16754988:260531 -k1,16050:10413563,16754988:260532 -k1,16050:11693179,16754988:260531 -k1,16050:13379119,16754988:260532 -k1,16050:15377665,16754988:260531 -k1,16050:17595102,16754988:260532 -k1,16050:19289561,16754988:260531 -k1,16050:19964874,16754988:260470 -k1,16050:23753208,16754988:260531 -k1,16050:25055762,16754988:260532 -k1,16050:26812480,16754988:260531 -k1,16050:28357518,16754988:260532 -k1,16050:29149546,16754988:260531 -k1,16050:30061506,16754988:260532 -k1,16050:31069803,16754988:260531 -k1,16050:32583029,16754988:0 -) -(1,16051:6764466,17620068:25818563,513147,126483 -k1,16050:8605023,17620068:176598 -k1,16050:9464505,17620068:176597 -k1,16050:10588754,17620068:176598 -k1,16050:12650822,17620068:176597 -k1,16050:17563052,17620068:176598 -k1,16050:18843932,17620068:176598 -k1,16050:21392277,17620068:176597 -k1,16050:22378245,17620068:176598 -k1,16050:23573927,17620068:176597 -k1,16050:24843010,17620068:176598 -k1,16050:25678900,17620068:176598 -k1,16050:26211357,17620068:176597 -k1,16050:28785262,17620068:176598 -k1,16050:30189348,17620068:176597 -k1,16050:31048831,17620068:176598 -k1,16050:32583029,17620068:0 -) -(1,16051:6764466,18485148:25818563,513147,134348 -k1,16050:7641207,18485148:225313 -k1,16050:10309702,18485148:225313 -k1,16050:11762504,18485148:225313 -k1,16050:14321553,18485148:225312 -k1,16050:15206158,18485148:225313 -k1,16050:18341925,18485148:225313 -k1,16050:19713463,18485148:225313 -k1,16050:22085079,18485148:225313 -k1,16050:22993277,18485148:225313 -k1,16050:25104061,18485148:225313 -k1,16050:25860871,18485148:225313 -k1,16050:27152454,18485148:225312 -k1,16050:27733627,18485148:225313 -k1,16050:30245491,18485148:225313 -k1,16050:31122232,18485148:225313 -k1,16051:32583029,18485148:0 -) -(1,16051:6764466,19350228:25818563,513147,134348 -k1,16050:9183509,19350228:254389 -k1,16050:10629342,19350228:254388 -k1,16050:12075176,19350228:254389 -k1,16050:14545993,19350228:254389 -k1,16050:17814382,19350228:254388 -k1,16050:19087856,19350228:254389 -k1,16050:23120396,19350228:254389 -k1,16050:24566229,19350228:254388 -k1,16050:26792596,19350228:254389 -k1,16050:27706277,19350228:254389 -k1,16050:28979750,19350228:254388 -k1,16050:30517334,19350228:254389 -k1,16050:32583029,19350228:0 -) -(1,16051:6764466,20215308:25818563,505283,134348 -g1,16050:8067977,20215308 -g1,16050:9014972,20215308 -g1,16050:9984904,20215308 -k1,16051:32583030,20215308:19306908 -g1,16051:32583030,20215308 -) -] -g1,16051:32583029,20349656 -) -h1,16051:6630773,20349656:0,0,0 -(1,16054:6630773,21214736:25952256,513147,134348 -h1,16053:6630773,21214736:983040,0,0 -k1,16053:10413273,21214736:264527 -k1,16053:13891029,21214736:264527 -k1,16053:18767981,21214736:264528 -k1,16053:20784285,21214736:264527 -k1,16053:21708104,21214736:264527 -k1,16053:22991716,21214736:264527 -k1,16053:26282040,21214736:264527 -k1,16053:27162605,21214736:264527 -k1,16053:29399766,21214736:264528 -k1,16053:30855738,21214736:264527 -k1,16053:31476125,21214736:264527 -k1,16053:32583029,21214736:0 -) -(1,16054:6630773,22079816:25952256,513147,134348 -k1,16053:8404131,22079816:205737 -k1,16053:10414728,22079816:205736 -k1,16053:12355858,22079816:205737 -k1,16053:14032878,22079816:205737 -k1,16053:14653451,22079816:205730 -k1,16053:16355375,22079816:205737 -k1,16053:18888294,22079816:205736 -k1,16053:19753323,22079816:205737 -k1,16053:22902282,22079816:205737 -k1,16053:24391213,22079816:205736 -k1,16053:26093137,22079816:205737 -k1,16053:27490319,22079816:205737 -k1,16053:29090006,22079816:205736 -k1,16053:30105113,22079816:205737 -k1,16054:32583029,22079816:0 -) -(1,16054:6630773,22944896:25952256,513147,134348 -k1,16053:8754139,22944896:148766 -k1,16053:9712276,22944896:148767 -k1,16053:11563012,22944896:148766 -k1,16053:14784107,22944896:148767 -k1,16053:18016997,22944896:148766 -k1,16053:19546608,22944896:148767 -k1,16053:23476146,22944896:148766 -k1,16053:26609423,22944896:148767 -k1,16053:27862471,22944896:148766 -k1,16053:28759004,22944896:148767 -k1,16053:30884991,22944896:148766 -k1,16054:32583029,22944896:0 -) -(1,16054:6630773,23809976:25952256,513147,126483 -k1,16053:7784371,23809976:234783 -k1,16053:9408516,23809976:234782 -k1,16053:11849896,23809976:234783 -k1,16053:14036341,23809976:234783 -k1,16053:15713570,23809976:234782 -k1,16053:18090070,23809976:234783 -k1,16053:19316413,23809976:234783 -k1,16053:22564540,23809976:234782 -k1,16053:23482208,23809976:234783 -k1,16053:25415029,23809976:234783 -k1,16053:26668896,23809976:234782 -k1,16053:29533639,23809976:234783 -k1,16053:32583029,23809976:0 -) -(1,16054:6630773,24675056:25952256,513147,134348 -g1,16053:10905686,24675056 -g1,16053:12498866,24675056 -g1,16053:14268993,24675056 -g1,16053:15857585,24675056 -g1,16053:17321659,24675056 -g1,16053:18052385,24675056 -g1,16053:19317885,24675056 -k1,16054:32583029,24675056:10914368 -g1,16054:32583029,24675056 -) -(1,16055:6630773,27506216:25952256,32768,229376 -(1,16055:6630773,27506216:0,32768,229376 -(1,16055:6630773,27506216:5505024,32768,229376 -r1,16086:12135797,27506216:5505024,262144,229376 -) -k1,16055:6630773,27506216:-5505024 -) -(1,16055:6630773,27506216:25952256,32768,0 -r1,16086:32583029,27506216:25952256,32768,0 -) -) -(1,16055:6630773,29138068:25952256,606339,161218 -(1,16055:6630773,29138068:1974731,582746,14155 -g1,16055:6630773,29138068 -g1,16055:8605504,29138068 -) -g1,16055:12473177,29138068 -g1,16055:14672828,29138068 -g1,16055:15688112,29138068 -g1,16055:17676999,29138068 -k1,16055:32583029,29138068:11789400 -g1,16055:32583029,29138068 -) -v1,16058:6630773,30216139:0,393216,0 -(1,16062:6630773,30556822:25952256,733899,196608 -g1,16062:6630773,30556822 -g1,16062:6630773,30556822 -g1,16062:6434165,30556822 -(1,16062:6434165,30556822:0,733899,196608 -r1,16086:32779637,30556822:26345472,930507,196608 -k1,16062:6434165,30556822:-26345472 -) -(1,16062:6434165,30556822:26345472,733899,196608 -[1,16062:6630773,30556822:25952256,537291,0 -(1,16060:6630773,30443970:25952256,424439,112852 -(1,16059:6630773,30443970:0,0,0 -g1,16059:6630773,30443970 -g1,16059:6630773,30443970 -g1,16059:6303093,30443970 -(1,16059:6303093,30443970:0,0,0 -) -g1,16059:6630773,30443970 -) -k1,16060:6630773,30443970:0 -h1,16060:20572838,30443970:0,0,0 -k1,16060:32583029,30443970:12010191 -g1,16060:32583029,30443970 -) -] -) -g1,16062:32583029,30556822 -g1,16062:6630773,30556822 -g1,16062:6630773,30556822 -g1,16062:32583029,30556822 -g1,16062:32583029,30556822 -) -h1,16062:6630773,30753430:0,0,0 -(1,16066:6630773,31618510:25952256,513147,126483 -h1,16065:6630773,31618510:983040,0,0 -k1,16065:8631587,31618510:188744 -k1,16065:9938374,31618510:188743 -k1,16065:11146203,31618510:188744 -k1,16065:14326665,31618510:188743 -k1,16065:17273819,31618510:188744 -k1,16065:18078600,31618510:188743 -k1,16065:19470585,31618510:188744 -k1,16065:22250623,31618510:188744 -k1,16065:23609839,31618510:188743 -k1,16065:25328849,31618510:188744 -k1,16065:26823725,31618510:188743 -k1,16065:27663897,31618510:188744 -k1,16065:29228896,31618510:188743 -k1,16065:30609085,31618510:188744 -k1,16065:32583029,31618510:0 -) -(1,16066:6630773,32483590:25952256,513147,134348 -k1,16065:8502394,32483590:179481 -k1,16065:11592329,32483590:179481 -k1,16065:13339431,32483590:179481 -k1,16065:14537997,32483590:179481 -k1,16065:16817907,32483590:179481 -k1,16065:18229465,32483590:179481 -k1,16065:20687633,32483590:179481 -h1,16065:21658221,32483590:0,0,0 -k1,16065:21837703,32483590:179482 -k1,16065:22826554,32483590:179481 -k1,16065:24504188,32483590:179481 -h1,16065:25699565,32483590:0,0,0 -k1,16065:25879046,32483590:179481 -k1,16065:27006178,32483590:179481 -k1,16065:29303127,32483590:179481 -k1,16065:30291978,32483590:179481 -k1,16065:31490544,32483590:179481 -k1,16065:32583029,32483590:0 -) -(1,16066:6630773,33348670:25952256,513147,134348 -g1,16065:7489294,33348670 -k1,16066:32583030,33348670:21923760 -g1,16066:32583030,33348670 -) -v1,16068:6630773,34033525:0,393216,0 -(1,16079:6630773,39161587:25952256,5521278,196608 -g1,16079:6630773,39161587 -g1,16079:6630773,39161587 -g1,16079:6434165,39161587 -(1,16079:6434165,39161587:0,5521278,196608 -r1,16086:32779637,39161587:26345472,5717886,196608 -k1,16079:6434165,39161587:-26345472 -) -(1,16079:6434165,39161587:26345472,5521278,196608 -[1,16079:6630773,39161587:25952256,5324670,0 -(1,16070:6630773,34261356:25952256,424439,106246 -(1,16069:6630773,34261356:0,0,0 -g1,16069:6630773,34261356 -g1,16069:6630773,34261356 -g1,16069:6303093,34261356 -(1,16069:6303093,34261356:0,0,0 -) -g1,16069:6630773,34261356 -) -k1,16070:6630773,34261356:0 -h1,16070:12937898,34261356:0,0,0 -k1,16070:32583030,34261356:19645132 -g1,16070:32583030,34261356 -) -(1,16071:6630773,34946211:25952256,424439,106246 -h1,16071:6630773,34946211:0,0,0 -k1,16071:6630773,34946211:0 -h1,16071:11610082,34946211:0,0,0 -k1,16071:32583030,34946211:20972948 -g1,16071:32583030,34946211 -) -(1,16072:6630773,35631066:25952256,424439,112852 -h1,16072:6630773,35631066:0,0,0 -k1,16072:6630773,35631066:0 -h1,16072:12273990,35631066:0,0,0 -k1,16072:32583030,35631066:20309040 -g1,16072:32583030,35631066 -) -(1,16073:6630773,36315921:25952256,424439,106246 -h1,16073:6630773,36315921:0,0,0 -k1,16073:6630773,36315921:0 -h1,16073:11278129,36315921:0,0,0 -k1,16073:32583029,36315921:21304900 -g1,16073:32583029,36315921 -) -(1,16074:6630773,37000776:25952256,424439,112852 -h1,16074:6630773,37000776:0,0,0 -k1,16074:6630773,37000776:0 -h1,16074:11942036,37000776:0,0,0 -k1,16074:32583028,37000776:20640992 -g1,16074:32583028,37000776 -) -(1,16075:6630773,37685631:25952256,424439,106246 -h1,16075:6630773,37685631:0,0,0 -k1,16075:6630773,37685631:0 -h1,16075:11278129,37685631:0,0,0 -k1,16075:32583029,37685631:21304900 -g1,16075:32583029,37685631 -) -(1,16076:6630773,38370486:25952256,424439,106246 -h1,16076:6630773,38370486:0,0,0 -k1,16076:6630773,38370486:0 -h1,16076:11278129,38370486:0,0,0 -k1,16076:32583029,38370486:21304900 -g1,16076:32583029,38370486 -) -(1,16077:6630773,39055341:25952256,424439,106246 -h1,16077:6630773,39055341:0,0,0 -k1,16077:6630773,39055341:0 -h1,16077:12605944,39055341:0,0,0 -k1,16077:32583028,39055341:19977084 -g1,16077:32583028,39055341 -) -] -) -g1,16079:32583029,39161587 -g1,16079:6630773,39161587 -g1,16079:6630773,39161587 -g1,16079:32583029,39161587 -g1,16079:32583029,39161587 -) -h1,16079:6630773,39358195:0,0,0 -] -(1,16086:32583029,45706769:0,0,0 -g1,16086:32583029,45706769 -) -) -] -(1,16086:6630773,47279633:25952256,0,0 -h1,16086:6630773,47279633:25952256,0,0 -) -] -(1,16086:4262630,4025873:0,0,0 -[1,16086:-473656,4025873:0,0,0 -(1,16086:-473656,-710413:0,0,0 -(1,16086:-473656,-710413:0,0,0 -g1,16086:-473656,-710413 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 +) +] +) +) +) +] +[1,16084:3078558,4812305:0,0,0 +(1,16084:3078558,49800853:0,16384,2228224 +g1,16084:29030814,49800853 +g1,16084:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16084:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16084:37855564,49800853:1179648,16384,0 +) +) +k1,16084:3078556,49800853:-34777008 +) +] +g1,16084:6630773,4812305 +k1,16084:23347041,4812305:15520891 +g1,16084:23960458,4812305 +g1,16084:27572802,4812305 +g1,16084:29306229,4812305 +) +) +] +[1,16084:6630773,45706769:25952256,40108032,0 +(1,16084:6630773,45706769:25952256,40108032,0 +(1,16084:6630773,45706769:0,0,0 +g1,16084:6630773,45706769 +) +[1,16084:6630773,45706769:25952256,40108032,0 +v1,16049:6630773,6254097:0,393216,0 +(1,16049:6630773,20349656:25952256,14488775,0 +g1,16049:6630773,20349656 +g1,16049:6237557,20349656 +r1,16084:6368629,20349656:131072,14488775,0 +g1,16049:6567858,20349656 +g1,16049:6764466,20349656 +[1,16049:6764466,20349656:25818563,14488775,0 +(1,16049:6764466,6374028:25818563,513147,134348 +h1,16048:6764466,6374028:983040,0,0 +k1,16048:10562605,6374028:280166 +k1,16048:12989075,6374028:280167 +k1,16048:14460686,6374028:280166 +k1,16048:16524087,6374028:280166 +k1,16048:17463546,6374028:280167 +k1,16048:18762797,6374028:280166 +k1,16048:22424620,6374028:280166 +k1,16048:24424452,6374028:280167 +k1,16048:25513988,6374028:280166 +k1,16048:26150014,6374028:280166 +k1,16048:28632191,6374028:280167 +k1,16048:31896867,6374028:280166 +k1,16048:32583029,6374028:0 +) +(1,16049:6764466,7239108:25818563,513147,134348 +k1,16048:9091828,7239108:247249 +k1,16048:9990506,7239108:247250 +k1,16048:12866404,7239108:247249 +k1,16048:17020255,7239108:247250 +k1,16048:17880266,7239108:247249 +k1,16048:19146601,7239108:247250 +k1,16048:21966793,7239108:247249 +k1,16048:22873335,7239108:247250 +k1,16048:26479959,7239108:247249 +k1,16048:29262142,7239108:247250 +k1,16048:31482024,7239108:247249 +k1,16048:32583029,7239108:0 +) +(1,16049:6764466,8104188:25818563,505283,134348 +k1,16048:10418229,8104188:236716 +k1,16048:12279583,8104188:236716 +k1,16048:14703235,8104188:236716 +k1,16048:17510928,8104188:236716 +k1,16048:19861835,8104188:236716 +k1,16048:20886949,8104188:236716 +k1,16048:25255710,8104188:236716 +k1,16048:27739656,8104188:236716 +k1,16048:29370323,8104188:236716 +k1,16048:31931601,8104188:236716 +k1,16048:32583029,8104188:0 +) +(1,16049:6764466,8969268:25818563,513147,134348 +k1,16048:8246017,8969268:151170 +k1,16048:9048614,8969268:151169 +k1,16048:11358540,8969268:151170 +k1,16048:12528795,8969268:151170 +k1,16048:15450171,8969268:151169 +k1,16048:17804006,8969268:151170 +k1,16048:18716704,8969268:151170 +k1,16048:22255429,8969268:151169 +k1,16048:23065891,8969268:151170 +k1,16048:24236146,8969268:151170 +k1,16048:28444649,8969268:151169 +k1,16048:30514713,8969268:151170 +k1,16048:32583029,8969268:0 +) +(1,16049:6764466,9834348:25818563,513147,126483 +k1,16048:9167390,9834348:222541 +k1,16048:10137698,9834348:222542 +k1,16048:12515063,9834348:222541 +k1,16048:13746859,9834348:222542 +k1,16048:15801787,9834348:222541 +k1,16048:16555826,9834348:222542 +k1,16048:17587737,9834348:222541 +k1,16048:19204884,9834348:222541 +k1,16048:21858812,9834348:222542 +k1,16048:22437213,9834348:222541 +k1,16048:25836940,9834348:222542 +k1,16048:28143526,9834348:222541 +k1,16048:30025440,9834348:222542 +k1,16048:30899409,9834348:222541 +k1,16049:32583029,9834348:0 +) +(1,16049:6764466,10699428:25818563,513147,134348 +k1,16048:8789629,10699428:243239 +k1,16048:10224314,10699428:243240 +k1,16048:10823413,10699428:243239 +k1,16048:12517620,10699428:243240 +k1,16048:15592670,10699428:243239 +k1,16048:17919954,10699428:243239 +k1,16048:18694691,10699428:243240 +k1,16048:21577065,10699428:243239 +k1,16048:23965297,10699428:243239 +k1,16048:26872576,10699428:243240 +k1,16048:27775107,10699428:243239 +k1,16048:29037432,10699428:243240 +k1,16048:31860823,10699428:243239 +k1,16049:32583029,10699428:0 +) +(1,16049:6764466,11564508:25818563,513147,134348 +k1,16048:9875226,11564508:233729 +k1,16048:10464816,11564508:233730 +k1,16048:12268788,11564508:233729 +k1,16048:14586563,11564508:233730 +k1,16048:15471720,11564508:233729 +k1,16048:18062780,11564508:233730 +k1,16048:18652369,11564508:233729 +k1,16048:21241462,11564508:233729 +k1,16048:22713167,11564508:233730 +k1,16048:23606188,11564508:233729 +k1,16048:27089193,11564508:233730 +k1,16048:29241816,11564508:233729 +k1,16048:30126974,11564508:233730 +k1,16048:31747445,11564508:233729 +k1,16048:32583029,11564508:0 +) +(1,16049:6764466,12429588:25818563,513147,134348 +k1,16048:9159155,12429588:152702 +k1,16048:9524803,12429588:152656 +k1,16048:10492774,12429588:152703 +k1,16048:13973394,12429588:152702 +k1,16048:15145181,12429588:152702 +k1,16048:18866975,12429588:152703 +k1,16048:19678969,12429588:152702 +k1,16048:20850756,12429588:152702 +k1,16048:23906049,12429588:152703 +k1,16048:24718043,12429588:152702 +k1,16048:26260108,12429588:152702 +k1,16048:27697317,12429588:152703 +k1,16048:28381516,12429588:152702 +k1,16048:32583029,12429588:0 +) +(1,16049:6764466,13294668:25818563,505283,134348 +k1,16048:7623381,13294668:242877 +k1,16048:8885342,13294668:242876 +k1,16048:12509876,13294668:242877 +k1,16048:15687454,13294668:242876 +k1,16048:16949416,13294668:242877 +k1,16048:19114464,13294668:242877 +k1,16048:24587768,13294668:242876 +k1,16048:25934927,13294668:242877 +k1,16048:28020675,13294668:242876 +k1,16048:28879590,13294668:242877 +k1,16048:32583029,13294668:0 +) +(1,16049:6764466,14159748:25818563,513147,126483 +k1,16048:8161366,14159748:205455 +k1,16048:11457499,14159748:205455 +k1,16048:12947460,14159748:205455 +k1,16048:14144475,14159748:205455 +k1,16048:15816626,14159748:205455 +k1,16048:17672279,14159748:205456 +k1,16048:20361549,14159748:205455 +k1,16048:21218432,14159748:205455 +k1,16048:22752957,14159748:205455 +k1,16048:23719940,14159748:205455 +k1,16048:28375290,14159748:205455 +k1,16048:29263630,14159748:205455 +k1,16048:32583029,14159748:0 +) +(1,16049:6764466,15024828:25818563,513147,126483 +k1,16048:8678445,15024828:202834 +k1,16048:10323726,15024828:202834 +k1,16048:12270473,15024828:202834 +k1,16048:14675972,15024828:202834 +k1,16048:15640334,15024828:202834 +k1,16048:20695454,15024828:202834 +k1,16048:21514326,15024828:202834 +k1,16048:23151087,15024828:202833 +k1,16048:23942434,15024828:202834 +k1,16048:25069981,15024828:202834 +k1,16048:27714686,15024828:202834 +k1,16048:28449017,15024828:202834 +k1,16048:29936357,15024828:202834 +k1,16048:31086842,15024828:202834 +k1,16048:32583029,15024828:0 +) +(1,16049:6764466,15889908:25818563,513147,134348 +k1,16048:8221332,15889908:172360 +k1,16048:10254258,15889908:172359 +k1,16048:11078046,15889908:172360 +k1,16048:11998171,15889908:172359 +k1,16048:14141854,15889908:172360 +k1,16048:16664990,15889908:172360 +k1,16048:18028794,15889908:172359 +k1,16048:20821283,15889908:172360 +k1,16048:25056220,15889908:172360 +k1,16048:27401753,15889908:172359 +k1,16048:28190151,15889908:172360 +k1,16048:29381595,15889908:172359 +k1,16048:31714677,15889908:172360 +k1,16048:32583029,15889908:0 +) +(1,16049:6764466,16754988:25818563,513147,134348 +k1,16048:9205380,16754988:260531 +k1,16048:10413563,16754988:260532 +k1,16048:11693179,16754988:260531 +k1,16048:13379119,16754988:260532 +k1,16048:15377665,16754988:260531 +k1,16048:17595102,16754988:260532 +k1,16048:19289561,16754988:260531 +k1,16048:19964874,16754988:260470 +k1,16048:23753208,16754988:260531 +k1,16048:25055762,16754988:260532 +k1,16048:26812480,16754988:260531 +k1,16048:28357518,16754988:260532 +k1,16048:29149546,16754988:260531 +k1,16048:30061506,16754988:260532 +k1,16048:31069803,16754988:260531 +k1,16048:32583029,16754988:0 +) +(1,16049:6764466,17620068:25818563,513147,126483 +k1,16048:8605023,17620068:176598 +k1,16048:9464505,17620068:176597 +k1,16048:10588754,17620068:176598 +k1,16048:12650822,17620068:176597 +k1,16048:17563052,17620068:176598 +k1,16048:18843932,17620068:176598 +k1,16048:21392277,17620068:176597 +k1,16048:22378245,17620068:176598 +k1,16048:23573927,17620068:176597 +k1,16048:24843010,17620068:176598 +k1,16048:25678900,17620068:176598 +k1,16048:26211357,17620068:176597 +k1,16048:28785262,17620068:176598 +k1,16048:30189348,17620068:176597 +k1,16048:31048831,17620068:176598 +k1,16048:32583029,17620068:0 +) +(1,16049:6764466,18485148:25818563,513147,134348 +k1,16048:7641207,18485148:225313 +k1,16048:10309702,18485148:225313 +k1,16048:11762504,18485148:225313 +k1,16048:14321553,18485148:225312 +k1,16048:15206158,18485148:225313 +k1,16048:18341925,18485148:225313 +k1,16048:19713463,18485148:225313 +k1,16048:22085079,18485148:225313 +k1,16048:22993277,18485148:225313 +k1,16048:25104061,18485148:225313 +k1,16048:25860871,18485148:225313 +k1,16048:27152454,18485148:225312 +k1,16048:27733627,18485148:225313 +k1,16048:30245491,18485148:225313 +k1,16048:31122232,18485148:225313 +k1,16049:32583029,18485148:0 +) +(1,16049:6764466,19350228:25818563,513147,134348 +k1,16048:9183509,19350228:254389 +k1,16048:10629342,19350228:254388 +k1,16048:12075176,19350228:254389 +k1,16048:14545993,19350228:254389 +k1,16048:17814382,19350228:254388 +k1,16048:19087856,19350228:254389 +k1,16048:23120396,19350228:254389 +k1,16048:24566229,19350228:254388 +k1,16048:26792596,19350228:254389 +k1,16048:27706277,19350228:254389 +k1,16048:28979750,19350228:254388 +k1,16048:30517334,19350228:254389 +k1,16048:32583029,19350228:0 +) +(1,16049:6764466,20215308:25818563,505283,134348 +g1,16048:8067977,20215308 +g1,16048:9014972,20215308 +g1,16048:9984904,20215308 +k1,16049:32583030,20215308:19306908 +g1,16049:32583030,20215308 +) +] +g1,16049:32583029,20349656 +) +h1,16049:6630773,20349656:0,0,0 +(1,16052:6630773,21214736:25952256,513147,134348 +h1,16051:6630773,21214736:983040,0,0 +k1,16051:10413273,21214736:264527 +k1,16051:13891029,21214736:264527 +k1,16051:18767981,21214736:264528 +k1,16051:20784285,21214736:264527 +k1,16051:21708104,21214736:264527 +k1,16051:22991716,21214736:264527 +k1,16051:26282040,21214736:264527 +k1,16051:27162605,21214736:264527 +k1,16051:29399766,21214736:264528 +k1,16051:30855738,21214736:264527 +k1,16051:31476125,21214736:264527 +k1,16051:32583029,21214736:0 +) +(1,16052:6630773,22079816:25952256,513147,134348 +k1,16051:8404131,22079816:205737 +k1,16051:10414728,22079816:205736 +k1,16051:12355858,22079816:205737 +k1,16051:14032878,22079816:205737 +k1,16051:14653451,22079816:205730 +k1,16051:16355375,22079816:205737 +k1,16051:18888294,22079816:205736 +k1,16051:19753323,22079816:205737 +k1,16051:22902282,22079816:205737 +k1,16051:24391213,22079816:205736 +k1,16051:26093137,22079816:205737 +k1,16051:27490319,22079816:205737 +k1,16051:29090006,22079816:205736 +k1,16051:30105113,22079816:205737 +k1,16052:32583029,22079816:0 +) +(1,16052:6630773,22944896:25952256,513147,134348 +k1,16051:8754139,22944896:148766 +k1,16051:9712276,22944896:148767 +k1,16051:11563012,22944896:148766 +k1,16051:14784107,22944896:148767 +k1,16051:18016997,22944896:148766 +k1,16051:19546608,22944896:148767 +k1,16051:23476146,22944896:148766 +k1,16051:26609423,22944896:148767 +k1,16051:27862471,22944896:148766 +k1,16051:28759004,22944896:148767 +k1,16051:30884991,22944896:148766 +k1,16052:32583029,22944896:0 +) +(1,16052:6630773,23809976:25952256,513147,126483 +k1,16051:7784371,23809976:234783 +k1,16051:9408516,23809976:234782 +k1,16051:11849896,23809976:234783 +k1,16051:14036341,23809976:234783 +k1,16051:15713570,23809976:234782 +k1,16051:18090070,23809976:234783 +k1,16051:19316413,23809976:234783 +k1,16051:22564540,23809976:234782 +k1,16051:23482208,23809976:234783 +k1,16051:25415029,23809976:234783 +k1,16051:26668896,23809976:234782 +k1,16051:29533639,23809976:234783 +k1,16051:32583029,23809976:0 +) +(1,16052:6630773,24675056:25952256,513147,134348 +g1,16051:10905686,24675056 +g1,16051:12498866,24675056 +g1,16051:14268993,24675056 +g1,16051:15857585,24675056 +g1,16051:17321659,24675056 +g1,16051:18052385,24675056 +g1,16051:19317885,24675056 +k1,16052:32583029,24675056:10914368 +g1,16052:32583029,24675056 +) +(1,16053:6630773,27506216:25952256,32768,229376 +(1,16053:6630773,27506216:0,32768,229376 +(1,16053:6630773,27506216:5505024,32768,229376 +r1,16084:12135797,27506216:5505024,262144,229376 +) +k1,16053:6630773,27506216:-5505024 +) +(1,16053:6630773,27506216:25952256,32768,0 +r1,16084:32583029,27506216:25952256,32768,0 +) +) +(1,16053:6630773,29138068:25952256,606339,161218 +(1,16053:6630773,29138068:1974731,582746,14155 +g1,16053:6630773,29138068 +g1,16053:8605504,29138068 +) +g1,16053:12473177,29138068 +g1,16053:14672828,29138068 +g1,16053:15688112,29138068 +g1,16053:17676999,29138068 +k1,16053:32583029,29138068:11789400 +g1,16053:32583029,29138068 +) +v1,16056:6630773,30216139:0,393216,0 +(1,16060:6630773,30556822:25952256,733899,196608 +g1,16060:6630773,30556822 +g1,16060:6630773,30556822 +g1,16060:6434165,30556822 +(1,16060:6434165,30556822:0,733899,196608 +r1,16084:32779637,30556822:26345472,930507,196608 +k1,16060:6434165,30556822:-26345472 +) +(1,16060:6434165,30556822:26345472,733899,196608 +[1,16060:6630773,30556822:25952256,537291,0 +(1,16058:6630773,30443970:25952256,424439,112852 +(1,16057:6630773,30443970:0,0,0 +g1,16057:6630773,30443970 +g1,16057:6630773,30443970 +g1,16057:6303093,30443970 +(1,16057:6303093,30443970:0,0,0 +) +g1,16057:6630773,30443970 +) +k1,16058:6630773,30443970:0 +h1,16058:20572838,30443970:0,0,0 +k1,16058:32583029,30443970:12010191 +g1,16058:32583029,30443970 +) +] +) +g1,16060:32583029,30556822 +g1,16060:6630773,30556822 +g1,16060:6630773,30556822 +g1,16060:32583029,30556822 +g1,16060:32583029,30556822 +) +h1,16060:6630773,30753430:0,0,0 +(1,16064:6630773,31618510:25952256,513147,126483 +h1,16063:6630773,31618510:983040,0,0 +k1,16063:8631587,31618510:188744 +k1,16063:9938374,31618510:188743 +k1,16063:11146203,31618510:188744 +k1,16063:14326665,31618510:188743 +k1,16063:17273819,31618510:188744 +k1,16063:18078600,31618510:188743 +k1,16063:19470585,31618510:188744 +k1,16063:22250623,31618510:188744 +k1,16063:23609839,31618510:188743 +k1,16063:25328849,31618510:188744 +k1,16063:26823725,31618510:188743 +k1,16063:27663897,31618510:188744 +k1,16063:29228896,31618510:188743 +k1,16063:30609085,31618510:188744 +k1,16063:32583029,31618510:0 +) +(1,16064:6630773,32483590:25952256,513147,134348 +k1,16063:8502394,32483590:179481 +k1,16063:11592329,32483590:179481 +k1,16063:13339431,32483590:179481 +k1,16063:14537997,32483590:179481 +k1,16063:16817907,32483590:179481 +k1,16063:18229465,32483590:179481 +k1,16063:20687633,32483590:179481 +h1,16063:21658221,32483590:0,0,0 +k1,16063:21837703,32483590:179482 +k1,16063:22826554,32483590:179481 +k1,16063:24504188,32483590:179481 +h1,16063:25699565,32483590:0,0,0 +k1,16063:25879046,32483590:179481 +k1,16063:27006178,32483590:179481 +k1,16063:29303127,32483590:179481 +k1,16063:30291978,32483590:179481 +k1,16063:31490544,32483590:179481 +k1,16063:32583029,32483590:0 +) +(1,16064:6630773,33348670:25952256,513147,134348 +g1,16063:7489294,33348670 +k1,16064:32583030,33348670:21923760 +g1,16064:32583030,33348670 +) +v1,16066:6630773,34033525:0,393216,0 +(1,16077:6630773,39161587:25952256,5521278,196608 +g1,16077:6630773,39161587 +g1,16077:6630773,39161587 +g1,16077:6434165,39161587 +(1,16077:6434165,39161587:0,5521278,196608 +r1,16084:32779637,39161587:26345472,5717886,196608 +k1,16077:6434165,39161587:-26345472 +) +(1,16077:6434165,39161587:26345472,5521278,196608 +[1,16077:6630773,39161587:25952256,5324670,0 +(1,16068:6630773,34261356:25952256,424439,106246 +(1,16067:6630773,34261356:0,0,0 +g1,16067:6630773,34261356 +g1,16067:6630773,34261356 +g1,16067:6303093,34261356 +(1,16067:6303093,34261356:0,0,0 +) +g1,16067:6630773,34261356 +) +k1,16068:6630773,34261356:0 +h1,16068:12937898,34261356:0,0,0 +k1,16068:32583030,34261356:19645132 +g1,16068:32583030,34261356 +) +(1,16069:6630773,34946211:25952256,424439,106246 +h1,16069:6630773,34946211:0,0,0 +k1,16069:6630773,34946211:0 +h1,16069:11610082,34946211:0,0,0 +k1,16069:32583030,34946211:20972948 +g1,16069:32583030,34946211 +) +(1,16070:6630773,35631066:25952256,424439,112852 +h1,16070:6630773,35631066:0,0,0 +k1,16070:6630773,35631066:0 +h1,16070:12273990,35631066:0,0,0 +k1,16070:32583030,35631066:20309040 +g1,16070:32583030,35631066 +) +(1,16071:6630773,36315921:25952256,424439,106246 +h1,16071:6630773,36315921:0,0,0 +k1,16071:6630773,36315921:0 +h1,16071:11278129,36315921:0,0,0 +k1,16071:32583029,36315921:21304900 +g1,16071:32583029,36315921 +) +(1,16072:6630773,37000776:25952256,424439,112852 +h1,16072:6630773,37000776:0,0,0 +k1,16072:6630773,37000776:0 +h1,16072:11942036,37000776:0,0,0 +k1,16072:32583028,37000776:20640992 +g1,16072:32583028,37000776 +) +(1,16073:6630773,37685631:25952256,424439,106246 +h1,16073:6630773,37685631:0,0,0 +k1,16073:6630773,37685631:0 +h1,16073:11278129,37685631:0,0,0 +k1,16073:32583029,37685631:21304900 +g1,16073:32583029,37685631 +) +(1,16074:6630773,38370486:25952256,424439,106246 +h1,16074:6630773,38370486:0,0,0 +k1,16074:6630773,38370486:0 +h1,16074:11278129,38370486:0,0,0 +k1,16074:32583029,38370486:21304900 +g1,16074:32583029,38370486 +) +(1,16075:6630773,39055341:25952256,424439,106246 +h1,16075:6630773,39055341:0,0,0 +k1,16075:6630773,39055341:0 +h1,16075:12605944,39055341:0,0,0 +k1,16075:32583028,39055341:19977084 +g1,16075:32583028,39055341 +) +] +) +g1,16077:32583029,39161587 +g1,16077:6630773,39161587 +g1,16077:6630773,39161587 +g1,16077:32583029,39161587 +g1,16077:32583029,39161587 +) +h1,16077:6630773,39358195:0,0,0 +] +(1,16084:32583029,45706769:0,0,0 +g1,16084:32583029,45706769 +) +) +] +(1,16084:6630773,47279633:25952256,0,0 +h1,16084:6630773,47279633:25952256,0,0 +) +] +(1,16084:4262630,4025873:0,0,0 +[1,16084:-473656,4025873:0,0,0 +(1,16084:-473656,-710413:0,0,0 +(1,16084:-473656,-710413:0,0,0 +g1,16084:-473656,-710413 ) -g1,16086:-473656,-710413 +g1,16084:-473656,-710413 ) ] ) ] !19829 -}261 -Input:2695:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2696:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2697:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2698:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}262 Input:2699:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2700:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2701:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2702:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2703:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2704:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2705:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2706:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{262 -[1,16100:4262630,47279633:28320399,43253760,0 -(1,16100:4262630,4025873:0,0,0 -[1,16100:-473656,4025873:0,0,0 -(1,16100:-473656,-710413:0,0,0 -(1,16100:-473656,-644877:0,0,0 -k1,16100:-473656,-644877:-65536 +{263 +[1,16098:4262630,47279633:28320399,43253760,0 +(1,16098:4262630,4025873:0,0,0 +[1,16098:-473656,4025873:0,0,0 +(1,16098:-473656,-710413:0,0,0 +(1,16098:-473656,-644877:0,0,0 +k1,16098:-473656,-644877:-65536 ) -(1,16100:-473656,4736287:0,0,0 -k1,16100:-473656,4736287:5209943 +(1,16098:-473656,4736287:0,0,0 +k1,16098:-473656,4736287:5209943 ) -g1,16100:-473656,-710413 +g1,16098:-473656,-710413 ) ] ) -[1,16100:6630773,47279633:25952256,43253760,0 -[1,16100:6630773,4812305:25952256,786432,0 -(1,16100:6630773,4812305:25952256,538806,132808 -(1,16100:6630773,4812305:25952256,538806,132808 -g1,16100:3078558,4812305 -[1,16100:3078558,4812305:0,0,0 -(1,16100:3078558,2439708:0,1703936,0 -k1,16100:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16100:2537886,2439708:1179648,16384,0 +[1,16098:6630773,47279633:25952256,43253760,0 +[1,16098:6630773,4812305:25952256,786432,0 +(1,16098:6630773,4812305:25952256,538806,132808 +(1,16098:6630773,4812305:25952256,538806,132808 +g1,16098:3078558,4812305 +[1,16098:3078558,4812305:0,0,0 +(1,16098:3078558,2439708:0,1703936,0 +k1,16098:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16098:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16100:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16098:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16100:3078558,4812305:0,0,0 -(1,16100:3078558,2439708:0,1703936,0 -g1,16100:29030814,2439708 -g1,16100:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16100:36151628,1915420:16384,1179648,0 +[1,16098:3078558,4812305:0,0,0 +(1,16098:3078558,2439708:0,1703936,0 +g1,16098:29030814,2439708 +g1,16098:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16098:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16100:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16098:37855564,2439708:1179648,16384,0 ) ) -k1,16100:3078556,2439708:-34777008 +k1,16098:3078556,2439708:-34777008 ) ] -[1,16100:3078558,4812305:0,0,0 -(1,16100:3078558,49800853:0,16384,2228224 -k1,16100:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16100:2537886,49800853:1179648,16384,0 +[1,16098:3078558,4812305:0,0,0 +(1,16098:3078558,49800853:0,16384,2228224 +k1,16098:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16098:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16100:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16098:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16100:3078558,4812305:0,0,0 -(1,16100:3078558,49800853:0,16384,2228224 -g1,16100:29030814,49800853 -g1,16100:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16100:36151628,51504789:16384,1179648,0 +[1,16098:3078558,4812305:0,0,0 +(1,16098:3078558,49800853:0,16384,2228224 +g1,16098:29030814,49800853 +g1,16098:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16098:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16100:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16098:37855564,49800853:1179648,16384,0 ) ) -k1,16100:3078556,49800853:-34777008 +k1,16098:3078556,49800853:-34777008 ) ] -g1,16100:6630773,4812305 -g1,16100:6630773,4812305 -g1,16100:11156689,4812305 -g1,16100:12279976,4812305 -g1,16100:16628629,4812305 -k1,16100:31387652,4812305:14759023 -) -) -] -[1,16100:6630773,45706769:25952256,40108032,0 -(1,16100:6630773,45706769:25952256,40108032,0 -(1,16100:6630773,45706769:0,0,0 -g1,16100:6630773,45706769 -) -[1,16100:6630773,45706769:25952256,40108032,0 -(1,16082:6630773,6254097:25952256,32768,229376 -(1,16082:6630773,6254097:0,32768,229376 -(1,16082:6630773,6254097:5505024,32768,229376 -r1,16100:12135797,6254097:5505024,262144,229376 -) -k1,16082:6630773,6254097:-5505024 -) -(1,16082:6630773,6254097:25952256,32768,0 -r1,16100:32583029,6254097:25952256,32768,0 -) -) -(1,16082:6630773,7885949:25952256,615776,151780 -(1,16082:6630773,7885949:1974731,582746,14155 -g1,16082:6630773,7885949 -g1,16082:8605504,7885949 -) -g1,16082:14366905,7885949 -g1,16082:15787988,7885949 -(1,16082:15787988,7885949:0,551318,138361 -r1,16100:20015084,7885949:4227096,689679,138361 -k1,16082:15787988,7885949:-4227096 -) -(1,16082:15787988,7885949:4227096,551318,138361 -k1,16082:15787988,7885949:3277 -h1,16082:20011807,7885949:0,493446,135084 -) -k1,16082:32583029,7885949:12567945 -g1,16082:32583029,7885949 -) -(1,16084:6630773,9216335:25952256,555811,147783 -(1,16084:6630773,9216335:2450326,534184,12975 -g1,16084:6630773,9216335 -g1,16084:9081099,9216335 -) -g1,16084:12248717,9216335 -k1,16084:32583029,9216335:16305946 -g1,16084:32583029,9216335 -) -(1,16086:6630773,10474631:25952256,513147,134348 -k1,16085:7966914,10474631:161081 -k1,16085:10823490,10474631:161080 -k1,16085:12084265,10474631:161081 -k1,16085:15435639,10474631:161081 -k1,16085:16256012,10474631:161081 -k1,16085:17436177,10474631:161080 -k1,16085:18012063,10474631:161043 -k1,16085:21015440,10474631:161081 -k1,16085:21708017,10474631:161080 -k1,16085:23153604,10474631:161081 -k1,16085:26717314,10474631:161081 -k1,16085:27869955,10474631:161081 -k1,16085:30236322,10474631:161080 -k1,16085:31048831,10474631:161081 -k1,16086:32583029,10474631:0 -) -(1,16086:6630773,11339711:25952256,513147,134348 -k1,16085:8418847,11339711:190306 -k1,16085:9370682,11339711:190307 -k1,16085:11070938,11339711:190306 -k1,16085:12493321,11339711:190306 -k1,16085:14962315,11339711:190307 -h1,16085:15932903,11339711:0,0,0 -k1,16085:16123209,11339711:190306 -k1,16085:17122885,11339711:190306 -k1,16085:18811344,11339711:190306 -h1,16085:20006721,11339711:0,0,0 -k1,16085:20577792,11339711:190307 -k1,16085:23888267,11339711:190306 -k1,16085:25270018,11339711:190306 -k1,16085:28244950,11339711:190307 -k1,16085:30002877,11339711:190306 -k1,16085:32583029,11339711:0 -) -(1,16086:6630773,12204791:25952256,513147,134348 -k1,16085:10282820,12204791:193713 -k1,16085:11913739,12204791:193714 -k1,16085:15510081,12204791:193713 -k1,16085:16465323,12204791:193714 -k1,16085:19811973,12204791:193713 -k1,16085:22725431,12204791:193714 -k1,16085:25277785,12204791:193713 -k1,16085:27672853,12204791:193714 -k1,16085:28494401,12204791:193713 -k1,16085:30122043,12204791:193714 -k1,16085:30904269,12204791:193713 -k1,16085:31563944,12204791:193714 -k1,16085:32583029,12204791:0 -) -(1,16086:6630773,13069871:25952256,513147,134348 -k1,16085:10257132,13069871:223730 -k1,16085:11472422,13069871:223730 -k1,16085:14531239,13069871:223730 -k1,16085:16764957,13069871:223729 -k1,16085:18007772,13069871:223730 -k1,16085:19727689,13069871:223730 -k1,16085:20610711,13069871:223730 -k1,16085:21190301,13069871:223730 -k1,16085:24283197,13069871:223730 -k1,16085:26203653,13069871:223729 -k1,16085:28998360,13069871:223730 -k1,16085:30213650,13069871:223730 -k1,16085:31931601,13069871:223730 -k1,16085:32583029,13069871:0 -) -(1,16086:6630773,13934951:25952256,513147,134348 -k1,16085:7810749,13934951:160891 -k1,16085:10840806,13934951:160891 -k1,16085:13936398,13934951:160890 -k1,16085:15229096,13934951:160891 -k1,16085:19366056,13934951:160891 -k1,16085:21536936,13934951:160891 -k1,16085:22716912,13934951:160891 -k1,16085:25903599,13934951:160890 -k1,16085:27255935,13934951:160891 -k1,16085:30201451,13934951:160891 -k1,16085:32583029,13934951:0 -) -(1,16086:6630773,14800031:25952256,513147,134348 -g1,16085:7446040,14800031 -g1,16085:10225421,14800031 -g1,16085:13934757,14800031 -g1,16085:16396289,14800031 -g1,16085:17614603,14800031 -g1,16085:20655473,14800031 -g1,16085:23059989,14800031 -g1,16085:23945380,14800031 -g1,16085:25653248,14800031 -k1,16086:32583029,14800031:3474723 -g1,16086:32583029,14800031 -) -(1,16088:6630773,15665111:25952256,513147,134348 -h1,16087:6630773,15665111:983040,0,0 -k1,16087:8245331,15665111:153761 -k1,16087:12600605,15665111:153761 -k1,16087:15170678,15665111:153761 -k1,16087:16343524,15665111:153761 -k1,16087:18007235,15665111:153761 -k1,16087:21351289,15665111:153761 -k1,16087:23018276,15665111:153761 -k1,16087:23788075,15665111:153761 -k1,16087:25375764,15665111:153761 -k1,16087:25944323,15665111:153716 -k1,16087:28054334,15665111:153761 -k1,16087:30522171,15665111:153761 -k1,16087:31031792,15665111:153761 -k1,16087:32583029,15665111:0 -) -(1,16088:6630773,16530191:25952256,513147,126483 -k1,16087:7891786,16530191:199330 -k1,16087:8900486,16530191:199330 -k1,16087:13349171,16530191:199331 -k1,16087:16483203,16530191:199330 -k1,16087:17097376,16530191:199330 -k1,16087:17912744,16530191:199330 -k1,16087:19713775,16530191:199331 -k1,16087:23069974,16530191:199330 -k1,16087:24644905,16530191:199330 -k1,16087:26890269,16530191:199330 -k1,16087:27445460,16530191:199331 -k1,16087:29154740,16530191:199330 -k1,16087:29970108,16530191:199330 -k1,16087:32583029,16530191:0 -) -(1,16088:6630773,17395271:25952256,513147,134348 -k1,16087:7294854,17395271:198120 -k1,16087:8684419,17395271:198120 -k1,16087:10580577,17395271:198120 -k1,16087:11797783,17395271:198121 -k1,16087:13676246,17395271:198120 -k1,16087:16619014,17395271:198120 -k1,16087:21337808,17395271:198120 -k1,16087:22483579,17395271:198120 -k1,16087:25167480,17395271:198120 -k1,16087:28029640,17395271:198121 -k1,16087:28894916,17395271:198120 -k1,16087:29507878,17395271:198119 -k1,16087:31591469,17395271:198120 -k1,16087:32583029,17395271:0 -) -(1,16088:6630773,18260351:25952256,513147,134348 -k1,16087:8390853,18260351:176075 -k1,16087:9179690,18260351:176075 -k1,16087:12075509,18260351:176075 -k1,16087:16190298,18260351:176075 -k1,16087:18866572,18260351:176075 -k1,16087:19701939,18260351:176075 -k1,16087:22341513,18260351:176076 -k1,16087:23536673,18260351:176075 -k1,16087:25991435,18260351:176075 -k1,16087:26582330,18260351:176052 -k1,16087:29948698,18260351:176075 -k1,16087:31225778,18260351:176075 -k1,16087:32583029,18260351:0 -) -(1,16088:6630773,19125431:25952256,513147,134348 -k1,16087:7230864,19125431:244231 -k1,16087:10506135,19125431:244231 -k1,16087:13405229,19125431:244231 -k1,16087:15837706,19125431:244230 -k1,16087:16891307,19125431:244231 -k1,16087:21384892,19125431:244231 -k1,16087:24563825,19125431:244231 -k1,16087:26011297,19125431:244231 -k1,16087:28443775,19125431:244231 -k1,16087:29792287,19125431:244230 -k1,16087:31235172,19125431:244231 -k1,16087:32227169,19125431:244231 -k1,16087:32583029,19125431:0 -) -(1,16088:6630773,19990511:25952256,513147,134348 -k1,16087:9554501,19990511:247238 -k1,16087:10487902,19990511:247239 -k1,16087:14759051,19990511:247238 -k1,16087:15537786,19990511:247238 -k1,16087:18515910,19990511:247239 -k1,16087:19375910,19990511:247238 -k1,16087:20642233,19990511:247238 -k1,16087:22848998,19990511:247239 -k1,16087:24732015,19990511:247238 -k1,16087:26170699,19990511:247239 -k1,16087:30816714,19990511:247238 -k1,16087:31478747,19990511:247190 -k1,16087:32583029,19990511:0 -) -(1,16088:6630773,20855591:25952256,513147,134348 -k1,16087:8609742,20855591:263236 -k1,16087:10900662,20855591:263236 -k1,16087:11823191,20855591:263237 -k1,16087:13657325,20855591:263236 -k1,16087:16210389,20855591:263236 -k1,16087:17967191,20855591:263236 -k1,16087:18916589,20855591:263236 -k1,16087:19535686,20855591:263237 -k1,16087:21681771,20855591:263236 -k1,16087:23334370,20855591:263236 -k1,16087:25473902,20855591:263236 -k1,16087:27435176,20855591:263236 -k1,16087:29074014,20855591:263237 -k1,16087:31347895,20855591:263236 -k1,16087:32227169,20855591:263236 -k1,16087:32583029,20855591:0 -) -(1,16088:6630773,21720671:25952256,505283,134348 -g1,16087:8703021,21720671 -g1,16087:11285139,21720671 -g1,16087:12167253,21720671 -g1,16087:13833178,21720671 -g1,16087:15261207,21720671 -g1,16087:16231139,21720671 -g1,16087:19209095,21720671 -g1,16087:20883539,21720671 -k1,16088:32583029,21720671:8985645 -g1,16088:32583029,21720671 -) -(1,16090:6630773,22585751:25952256,513147,134348 -h1,16089:6630773,22585751:983040,0,0 -k1,16089:10231846,22585751:235799 -k1,16089:13870273,22585751:235798 -k1,16089:14867600,22585751:235799 -k1,16089:18256335,22585751:235798 -k1,16089:19178296,22585751:235799 -k1,16089:20030133,22585751:235799 -k1,16089:23949708,22585751:235798 -k1,16089:27272253,22585751:235799 -k1,16089:28527136,22585751:235798 -k1,16089:31061283,22585751:235799 -k1,16089:32583029,22585751:0 -) -(1,16090:6630773,23450831:25952256,513147,134348 -k1,16089:7860065,23450831:281641 -k1,16089:10599961,23450831:281641 -k1,16089:13381800,23450831:281640 -k1,16089:14854886,23450831:281641 -k1,16089:15898055,23450831:281641 -k1,16089:18899440,23450831:281641 -k1,16089:20200165,23450831:281640 -k1,16089:22012072,23450831:281641 -k1,16089:22945141,23450831:281641 -k1,16089:24736732,23450831:281641 -k1,16089:28594672,23450831:281640 -k1,16089:31563944,23450831:281641 -k1,16089:32583029,23450831:0 -) -(1,16090:6630773,24315911:25952256,513147,134348 -k1,16089:8286540,24315911:320799 -k1,16089:11237299,24315911:320799 -k1,16089:15807451,24315911:320798 -k1,16089:17509094,24315911:320799 -k1,16089:18361390,24315911:320799 -k1,16089:19038049,24315911:320799 -k1,16089:22852572,24315911:320799 -k1,16089:25753522,24315911:320798 -k1,16089:27146490,24315911:320799 -k1,16089:30605808,24315911:320799 -k1,16089:32583029,24315911:0 -) -(1,16090:6630773,25180991:25952256,505283,134348 -k1,16089:8572756,25180991:270159 -k1,16089:11162235,25180991:270160 -k1,16089:12826345,25180991:270159 -k1,16089:14450479,25180991:270160 -k1,16089:16291536,25180991:270159 -k1,16089:17951058,25180991:270159 -k1,16089:19659733,25180991:270160 -k1,16089:22272804,25180991:270159 -k1,16089:23923807,25180991:270159 -k1,16089:25863824,25180991:270160 -k1,16089:27627549,25180991:270159 -k1,16089:28583871,25180991:270160 -k1,16089:31189078,25180991:270159 -k1,16089:32583029,25180991:0 -) -(1,16090:6630773,26046071:25952256,513147,134348 -k1,16089:10268530,26046071:179423 -k1,16089:13070048,26046071:179423 -k1,16089:13605331,26046071:179423 -k1,16089:15368759,26046071:179423 -k1,16089:20203205,26046071:179424 -k1,16089:21041920,26046071:179423 -k1,16089:22240428,26046071:179423 -k1,16089:28023835,26046071:179423 -k1,16089:31567221,26046071:179423 -k1,16090:32583029,26046071:0 -) -(1,16090:6630773,26911151:25952256,505283,134348 -k1,16089:9324084,26911151:273067 -k1,16089:12177303,26911151:273067 -k1,16089:15960476,26911151:273066 -k1,16089:18279577,26911151:273067 -k1,16089:19362014,26911151:273067 -k1,16089:22149697,26911151:273067 -k1,16089:23035525,26911151:273066 -k1,16089:26707289,26911151:273067 -k1,16089:31189078,26911151:273067 -k1,16089:32583029,26911151:0 -) -(1,16090:6630773,27776231:25952256,505283,115847 -g1,16089:8891765,27776231 -(1,16089:8891765,27776231:0,459977,115847 -r1,16100:12415437,27776231:3523672,575824,115847 -k1,16089:8891765,27776231:-3523672 -) -(1,16089:8891765,27776231:3523672,459977,115847 -k1,16089:8891765,27776231:3277 -h1,16089:12412160,27776231:0,411205,112570 -) -k1,16090:32583029,27776231:20115164 -g1,16090:32583029,27776231 -) -(1,16092:6630773,28641311:25952256,513147,134348 -h1,16091:6630773,28641311:983040,0,0 -k1,16091:8461093,28641311:219445 -k1,16091:11311809,28641311:219445 -k1,16091:12182682,28641311:219445 -k1,16091:13421211,28641311:219444 -k1,16091:15729288,28641311:219445 -k1,16091:16608025,28641311:219445 -k1,16091:19407622,28641311:219445 -k1,16091:23310844,28641311:219445 -k1,16091:24549374,28641311:219445 -k1,16091:26506833,28641311:219444 -k1,16091:27385570,28641311:219445 -k1,16091:28624100,28641311:219445 -k1,16091:32051532,28641311:219445 -k1,16091:32583029,28641311:0 -) -(1,16092:6630773,29506391:25952256,513147,134348 -k1,16091:7928446,29506391:231402 -k1,16091:9535448,29506391:231401 -k1,16091:14016204,29506391:231402 -k1,16091:15444293,29506391:231402 -k1,16091:17764327,29506391:231402 -k1,16091:18655020,29506391:231401 -k1,16091:20089663,29506391:231402 -k1,16091:23223655,29506391:231402 -k1,16091:24556062,29506391:231402 -k1,16091:26073279,29506391:231401 -k1,16091:29803648,29506391:231402 -k1,16091:32583029,29506391:0 -) -(1,16092:6630773,30371471:25952256,513147,134348 -k1,16091:9019741,30371471:217760 -k1,16091:13518313,30371471:217760 -k1,16091:15211288,30371471:217760 -k1,16091:16938998,30371471:217760 -k1,16091:19847666,30371471:217760 -k1,16091:23394000,30371471:217760 -k1,16091:25054207,30371471:217760 -k1,16091:25888005,30371471:217760 -k1,16091:27539693,30371471:217760 -k1,16091:28172277,30371471:217741 -k1,16091:29072922,30371471:217760 -k1,16091:32583029,30371471:0 -) -(1,16092:6630773,31236551:25952256,513147,134348 -k1,16091:8130137,31236551:307919 -k1,16091:9054094,31236551:307919 -k1,16091:11054153,31236551:307919 -k1,16091:13059454,31236551:307919 -k1,16091:14863560,31236551:307919 -k1,16091:17458030,31236551:307919 -k1,16091:19501342,31236551:307919 -k1,16091:21243189,31236551:307919 -k1,16091:21965842,31236551:307810 -k1,16091:23378043,31236551:307919 -k1,16091:27565693,31236551:307919 -k1,16091:31563944,31236551:307919 -k1,16091:32583029,31236551:0 -) -(1,16092:6630773,32101631:25952256,505283,134348 -k1,16091:9984906,32101631:197919 -k1,16091:11374269,32101631:197918 -k1,16091:12811474,32101631:197919 -k1,16091:14862095,32101631:197918 -k1,16091:16892401,32101631:197919 -k1,16091:18591093,32101631:197918 -k1,16091:21699466,32101631:197919 -k1,16091:23181890,32101631:197918 -k1,16091:26813240,32101631:197919 -k1,16091:27367018,32101631:197918 -k1,16091:31039656,32101631:197919 -k1,16091:32583029,32101631:0 -) -(1,16092:6630773,32966711:25952256,513147,126483 -k1,16091:8460265,32966711:261871 -k1,16091:9741221,32966711:261871 -k1,16091:12087137,32966711:261871 -k1,16091:13008300,32966711:261871 -k1,16091:14289256,32966711:261871 -k1,16091:17759114,32966711:261871 -k1,16091:19288451,32966711:261871 -k1,16091:20834828,32966711:261871 -k1,16091:21755991,32966711:261871 -k1,16091:25527969,32966711:261871 -k1,16091:26472725,32966711:261871 -k1,16091:29759738,32966711:261871 -k1,16091:32583029,32966711:0 -) -(1,16092:6630773,33831791:25952256,473825,126483 -k1,16092:32583030,33831791:23566092 -g1,16092:32583030,33831791 -) -(1,16093:6630773,35948609:25952256,555811,147783 -(1,16093:6630773,35948609:2450326,534184,12975 -g1,16093:6630773,35948609 -g1,16093:9081099,35948609 -) -g1,16093:12248717,35948609 -k1,16093:32583030,35948609:17813340 -g1,16093:32583030,35948609 -) -(1,16097:6630773,37206905:25952256,513147,134348 -k1,16096:9420105,37206905:254399 -k1,16096:11836536,37206905:254399 -k1,16096:14036043,37206905:254398 -k1,16096:14903204,37206905:254399 -k1,16096:18206993,37206905:254399 -k1,16096:22710746,37206905:254399 -k1,16096:24111370,37206905:254399 -k1,16096:28049546,37206905:254399 -k1,16096:29376113,37206905:254398 -k1,16096:30696783,37206905:254399 -k1,16096:31563944,37206905:254399 -k1,16096:32583029,37206905:0 -) -(1,16097:6630773,38071985:25952256,513147,126483 -k1,16096:9346954,38071985:143238 -k1,16096:10149484,38071985:143238 -k1,16096:13193346,38071985:143239 -k1,16096:14533271,38071985:143238 -(1,16096:14533271,38071985:0,452978,115847 -r1,16100:17353520,38071985:2820249,568825,115847 -k1,16096:14533271,38071985:-2820249 -) -(1,16096:14533271,38071985:2820249,452978,115847 -k1,16096:14533271,38071985:3277 -h1,16096:17350243,38071985:0,411205,112570 -) -k1,16096:17496758,38071985:143238 -k1,16096:21346712,38071985:143238 -k1,16096:24346664,38071985:143238 -k1,16096:27680196,38071985:143239 -k1,16096:29107940,38071985:143238 -k1,16096:30932832,38071985:143238 -k1,16096:32583029,38071985:0 -) -(1,16097:6630773,38937065:25952256,513147,126483 -k1,16096:9195018,38937065:208881 -k1,16096:10900086,38937065:208881 -k1,16096:14290085,38937065:208881 -k1,16096:15150394,38937065:208881 -k1,16096:16378361,38937065:208882 -(1,16096:16378361,38937065:0,459977,115847 -r1,16100:20605457,38937065:4227096,575824,115847 -k1,16096:16378361,38937065:-4227096 -) -(1,16096:16378361,38937065:4227096,459977,115847 -k1,16096:16378361,38937065:3277 -h1,16096:20602180,38937065:0,411205,112570 -) -k1,16096:20814338,38937065:208881 -k1,16096:24903606,38937065:208881 -k1,16096:26309174,38937065:208881 -(1,16096:26309174,38937065:0,452978,115847 -r1,16100:28777711,38937065:2468537,568825,115847 -k1,16096:26309174,38937065:-2468537 -) -(1,16096:26309174,38937065:2468537,452978,115847 -k1,16096:26309174,38937065:3277 -h1,16096:28774434,38937065:0,411205,112570 -) -k1,16096:28986592,38937065:208881 -k1,16096:31649796,38937065:208881 -k1,16096:32583029,38937065:0 -) -(1,16097:6630773,39802145:25952256,513147,126483 -k1,16096:9024658,39802145:252168 -k1,16096:11902198,39802145:252168 -k1,16096:13793420,39802145:252167 -k1,16096:16967183,39802145:252168 -k1,16096:18410796,39802145:252168 -k1,16096:21423340,39802145:252168 -k1,16096:24902500,39802145:252167 -k1,16096:29135325,39802145:252168 -k1,16096:30866641,39802145:252168 -k1,16096:32583029,39802145:0 -) -(1,16097:6630773,40667225:25952256,513147,134348 -k1,16096:8155850,40667225:135714 -k1,16096:9730079,40667225:135714 -k1,16096:13382455,40667225:135714 -k1,16096:14134208,40667225:135715 -k1,16096:18345606,40667225:135714 -k1,16096:19472880,40667225:135714 -k1,16096:20224632,40667225:135714 -k1,16096:21962046,40667225:135714 -k1,16096:23795142,40667225:135714 -k1,16096:27167025,40667225:135715 -k1,16096:28884123,40667225:135714 -k1,16096:30002877,40667225:135714 -k1,16097:32583029,40667225:0 -) -(1,16097:6630773,41532305:25952256,513147,126483 -(1,16096:6630773,41532305:0,452978,115847 -r1,16100:9451022,41532305:2820249,568825,115847 -k1,16096:6630773,41532305:-2820249 -) -(1,16096:6630773,41532305:2820249,452978,115847 -k1,16096:6630773,41532305:3277 -h1,16096:9447745,41532305:0,411205,112570 -) -k1,16096:9646628,41532305:195606 -k1,16096:11049406,41532305:195605 -k1,16096:15091975,41532305:195606 -k1,16096:17131109,41532305:195606 -k1,16096:18769161,41532305:195605 -k1,16096:20398695,41532305:195606 -k1,16096:21009140,41532305:195602 -k1,16096:22594108,41532305:195605 -k1,16096:25169982,41532305:195606 -k1,16096:26437757,41532305:195606 -k1,16096:27652447,41532305:195605 -k1,16096:31923737,41532305:195606 -k1,16097:32583029,41532305:0 -) -(1,16097:6630773,42397385:25952256,505283,126483 -k1,16096:7275619,42397385:230003 -k1,16096:8606657,42397385:230033 -k1,16096:11886737,42397385:230034 -k1,16096:13504168,42397385:230034 -k1,16096:14753286,42397385:230033 -k1,16096:16839955,42397385:230034 -k1,16096:20475239,42397385:230033 -k1,16096:22360057,42397385:230034 -k1,16096:23121588,42397385:230034 -k1,16096:24160991,42397385:230033 -k1,16096:25921291,42397385:230034 -k1,16096:28512586,42397385:230033 -k1,16096:29939307,42397385:230034 -k1,16096:32583029,42397385:0 -) -(1,16097:6630773,43262465:25952256,505283,134348 -k1,16096:7476113,43262465:193912 -k1,16096:8762511,43262465:193913 -k1,16096:11536575,43262465:193912 -(1,16096:11536575,43262465:0,452978,115847 -r1,16100:14356824,43262465:2820249,568825,115847 -k1,16096:11536575,43262465:-2820249 -) -(1,16096:11536575,43262465:2820249,452978,115847 -k1,16096:11536575,43262465:3277 -h1,16096:14353547,43262465:0,411205,112570 -) -k1,16096:14550736,43262465:193912 -k1,16096:17446698,43262465:193913 -k1,16096:19808541,43262465:193912 -k1,16096:20811823,43262465:193912 -k1,16096:23596374,43262465:193913 -k1,16096:24946996,43262465:193912 -k1,16096:26563695,43262465:193912 -k1,16096:27776693,43262465:193913 -k1,16096:29672575,43262465:193912 -k1,16096:32583029,43262465:0 -) -(1,16097:6630773,44127545:25952256,513147,126483 -g1,16096:8397623,44127545 -g1,16096:9615937,44127545 -g1,16096:13196823,44127545 -g1,16096:15554153,44127545 -g1,16096:17726015,44127545 -g1,16096:19116689,44127545 -g1,16096:21294449,44127545 -g1,16096:22176563,44127545 -k1,16097:32583029,44127545:9287767 -g1,16097:32583029,44127545 -) -(1,16099:6630773,44992625:25952256,513147,134348 -h1,16098:6630773,44992625:983040,0,0 -k1,16098:8944575,44992625:134075 -k1,16098:11534285,44992625:134076 -k1,16098:12327652,44992625:134075 -k1,16098:15041879,44992625:134075 -k1,16098:17337987,44992625:134076 -k1,16098:20141343,44992625:134075 -k1,16098:21784057,44992625:134075 -(1,16098:21784057,44992625:0,452978,115847 -r1,16100:22845746,44992625:1061689,568825,115847 -k1,16098:21784057,44992625:-1061689 -) -(1,16098:21784057,44992625:1061689,452978,115847 -k1,16098:21784057,44992625:3277 -h1,16098:22842469,44992625:0,411205,112570 -) -k1,16098:22979822,44992625:134076 -k1,16098:24669066,44992625:134075 -k1,16098:25489303,44992625:134075 -k1,16098:27596013,44992625:134076 -k1,16098:31128785,44992625:134075 -k1,16099:32583029,44992625:0 -) -] -(1,16100:32583029,45706769:0,0,0 -g1,16100:32583029,45706769 -) -) -] -(1,16100:6630773,47279633:25952256,0,0 -h1,16100:6630773,47279633:25952256,0,0 -) -] -(1,16100:4262630,4025873:0,0,0 -[1,16100:-473656,4025873:0,0,0 -(1,16100:-473656,-710413:0,0,0 -(1,16100:-473656,-710413:0,0,0 -g1,16100:-473656,-710413 -) -g1,16100:-473656,-710413 +g1,16098:6630773,4812305 +g1,16098:6630773,4812305 +g1,16098:11156689,4812305 +g1,16098:12279976,4812305 +g1,16098:16628629,4812305 +k1,16098:31387652,4812305:14759023 +) +) +] +[1,16098:6630773,45706769:25952256,40108032,0 +(1,16098:6630773,45706769:25952256,40108032,0 +(1,16098:6630773,45706769:0,0,0 +g1,16098:6630773,45706769 +) +[1,16098:6630773,45706769:25952256,40108032,0 +(1,16080:6630773,6254097:25952256,32768,229376 +(1,16080:6630773,6254097:0,32768,229376 +(1,16080:6630773,6254097:5505024,32768,229376 +r1,16098:12135797,6254097:5505024,262144,229376 +) +k1,16080:6630773,6254097:-5505024 +) +(1,16080:6630773,6254097:25952256,32768,0 +r1,16098:32583029,6254097:25952256,32768,0 +) +) +(1,16080:6630773,7885949:25952256,615776,151780 +(1,16080:6630773,7885949:1974731,582746,14155 +g1,16080:6630773,7885949 +g1,16080:8605504,7885949 +) +g1,16080:14366905,7885949 +g1,16080:15787988,7885949 +(1,16080:15787988,7885949:0,551318,138361 +r1,16098:20015084,7885949:4227096,689679,138361 +k1,16080:15787988,7885949:-4227096 +) +(1,16080:15787988,7885949:4227096,551318,138361 +k1,16080:15787988,7885949:3277 +h1,16080:20011807,7885949:0,493446,135084 +) +k1,16080:32583029,7885949:12567945 +g1,16080:32583029,7885949 +) +(1,16082:6630773,9216335:25952256,555811,147783 +(1,16082:6630773,9216335:2450326,534184,12975 +g1,16082:6630773,9216335 +g1,16082:9081099,9216335 +) +g1,16082:12248717,9216335 +k1,16082:32583029,9216335:16305946 +g1,16082:32583029,9216335 +) +(1,16084:6630773,10474631:25952256,513147,134348 +k1,16083:7966914,10474631:161081 +k1,16083:10823490,10474631:161080 +k1,16083:12084265,10474631:161081 +k1,16083:15435639,10474631:161081 +k1,16083:16256012,10474631:161081 +k1,16083:17436177,10474631:161080 +k1,16083:18012063,10474631:161043 +k1,16083:21015440,10474631:161081 +k1,16083:21708017,10474631:161080 +k1,16083:23153604,10474631:161081 +k1,16083:26717314,10474631:161081 +k1,16083:27869955,10474631:161081 +k1,16083:30236322,10474631:161080 +k1,16083:31048831,10474631:161081 +k1,16084:32583029,10474631:0 +) +(1,16084:6630773,11339711:25952256,513147,134348 +k1,16083:8418847,11339711:190306 +k1,16083:9370682,11339711:190307 +k1,16083:11070938,11339711:190306 +k1,16083:12493321,11339711:190306 +k1,16083:14962315,11339711:190307 +h1,16083:15932903,11339711:0,0,0 +k1,16083:16123209,11339711:190306 +k1,16083:17122885,11339711:190306 +k1,16083:18811344,11339711:190306 +h1,16083:20006721,11339711:0,0,0 +k1,16083:20577792,11339711:190307 +k1,16083:23888267,11339711:190306 +k1,16083:25270018,11339711:190306 +k1,16083:28244950,11339711:190307 +k1,16083:30002877,11339711:190306 +k1,16083:32583029,11339711:0 +) +(1,16084:6630773,12204791:25952256,513147,134348 +k1,16083:10282820,12204791:193713 +k1,16083:11913739,12204791:193714 +k1,16083:15510081,12204791:193713 +k1,16083:16465323,12204791:193714 +k1,16083:19811973,12204791:193713 +k1,16083:22725431,12204791:193714 +k1,16083:25277785,12204791:193713 +k1,16083:27672853,12204791:193714 +k1,16083:28494401,12204791:193713 +k1,16083:30122043,12204791:193714 +k1,16083:30904269,12204791:193713 +k1,16083:31563944,12204791:193714 +k1,16083:32583029,12204791:0 +) +(1,16084:6630773,13069871:25952256,513147,134348 +k1,16083:10257132,13069871:223730 +k1,16083:11472422,13069871:223730 +k1,16083:14531239,13069871:223730 +k1,16083:16764957,13069871:223729 +k1,16083:18007772,13069871:223730 +k1,16083:19727689,13069871:223730 +k1,16083:20610711,13069871:223730 +k1,16083:21190301,13069871:223730 +k1,16083:24283197,13069871:223730 +k1,16083:26203653,13069871:223729 +k1,16083:28998360,13069871:223730 +k1,16083:30213650,13069871:223730 +k1,16083:31931601,13069871:223730 +k1,16083:32583029,13069871:0 +) +(1,16084:6630773,13934951:25952256,513147,134348 +k1,16083:7810749,13934951:160891 +k1,16083:10840806,13934951:160891 +k1,16083:13936398,13934951:160890 +k1,16083:15229096,13934951:160891 +k1,16083:19366056,13934951:160891 +k1,16083:21536936,13934951:160891 +k1,16083:22716912,13934951:160891 +k1,16083:25903599,13934951:160890 +k1,16083:27255935,13934951:160891 +k1,16083:30201451,13934951:160891 +k1,16083:32583029,13934951:0 +) +(1,16084:6630773,14800031:25952256,513147,134348 +g1,16083:7446040,14800031 +g1,16083:10225421,14800031 +g1,16083:13934757,14800031 +g1,16083:16396289,14800031 +g1,16083:17614603,14800031 +g1,16083:20655473,14800031 +g1,16083:23059989,14800031 +g1,16083:23945380,14800031 +g1,16083:25653248,14800031 +k1,16084:32583029,14800031:3474723 +g1,16084:32583029,14800031 +) +(1,16086:6630773,15665111:25952256,513147,134348 +h1,16085:6630773,15665111:983040,0,0 +k1,16085:8245331,15665111:153761 +k1,16085:12600605,15665111:153761 +k1,16085:15170678,15665111:153761 +k1,16085:16343524,15665111:153761 +k1,16085:18007235,15665111:153761 +k1,16085:21351289,15665111:153761 +k1,16085:23018276,15665111:153761 +k1,16085:23788075,15665111:153761 +k1,16085:25375764,15665111:153761 +k1,16085:25944323,15665111:153716 +k1,16085:28054334,15665111:153761 +k1,16085:30522171,15665111:153761 +k1,16085:31031792,15665111:153761 +k1,16085:32583029,15665111:0 +) +(1,16086:6630773,16530191:25952256,513147,126483 +k1,16085:7891786,16530191:199330 +k1,16085:8900486,16530191:199330 +k1,16085:13349171,16530191:199331 +k1,16085:16483203,16530191:199330 +k1,16085:17097376,16530191:199330 +k1,16085:17912744,16530191:199330 +k1,16085:19713775,16530191:199331 +k1,16085:23069974,16530191:199330 +k1,16085:24644905,16530191:199330 +k1,16085:26890269,16530191:199330 +k1,16085:27445460,16530191:199331 +k1,16085:29154740,16530191:199330 +k1,16085:29970108,16530191:199330 +k1,16085:32583029,16530191:0 +) +(1,16086:6630773,17395271:25952256,513147,134348 +k1,16085:7294854,17395271:198120 +k1,16085:8684419,17395271:198120 +k1,16085:10580577,17395271:198120 +k1,16085:11797783,17395271:198121 +k1,16085:13676246,17395271:198120 +k1,16085:16619014,17395271:198120 +k1,16085:21337808,17395271:198120 +k1,16085:22483579,17395271:198120 +k1,16085:25167480,17395271:198120 +k1,16085:28029640,17395271:198121 +k1,16085:28894916,17395271:198120 +k1,16085:29507878,17395271:198119 +k1,16085:31591469,17395271:198120 +k1,16085:32583029,17395271:0 +) +(1,16086:6630773,18260351:25952256,513147,134348 +k1,16085:8390853,18260351:176075 +k1,16085:9179690,18260351:176075 +k1,16085:12075509,18260351:176075 +k1,16085:16190298,18260351:176075 +k1,16085:18866572,18260351:176075 +k1,16085:19701939,18260351:176075 +k1,16085:22341513,18260351:176076 +k1,16085:23536673,18260351:176075 +k1,16085:25991435,18260351:176075 +k1,16085:26582330,18260351:176052 +k1,16085:29948698,18260351:176075 +k1,16085:31225778,18260351:176075 +k1,16085:32583029,18260351:0 +) +(1,16086:6630773,19125431:25952256,513147,134348 +k1,16085:7230864,19125431:244231 +k1,16085:10506135,19125431:244231 +k1,16085:13405229,19125431:244231 +k1,16085:15837706,19125431:244230 +k1,16085:16891307,19125431:244231 +k1,16085:21384892,19125431:244231 +k1,16085:24563825,19125431:244231 +k1,16085:26011297,19125431:244231 +k1,16085:28443775,19125431:244231 +k1,16085:29792287,19125431:244230 +k1,16085:31235172,19125431:244231 +k1,16085:32227169,19125431:244231 +k1,16085:32583029,19125431:0 +) +(1,16086:6630773,19990511:25952256,513147,134348 +k1,16085:9554501,19990511:247238 +k1,16085:10487902,19990511:247239 +k1,16085:14759051,19990511:247238 +k1,16085:15537786,19990511:247238 +k1,16085:18515910,19990511:247239 +k1,16085:19375910,19990511:247238 +k1,16085:20642233,19990511:247238 +k1,16085:22848998,19990511:247239 +k1,16085:24732015,19990511:247238 +k1,16085:26170699,19990511:247239 +k1,16085:30816714,19990511:247238 +k1,16085:31478747,19990511:247190 +k1,16085:32583029,19990511:0 +) +(1,16086:6630773,20855591:25952256,513147,134348 +k1,16085:8609742,20855591:263236 +k1,16085:10900662,20855591:263236 +k1,16085:11823191,20855591:263237 +k1,16085:13657325,20855591:263236 +k1,16085:16210389,20855591:263236 +k1,16085:17967191,20855591:263236 +k1,16085:18916589,20855591:263236 +k1,16085:19535686,20855591:263237 +k1,16085:21681771,20855591:263236 +k1,16085:23334370,20855591:263236 +k1,16085:25473902,20855591:263236 +k1,16085:27435176,20855591:263236 +k1,16085:29074014,20855591:263237 +k1,16085:31347895,20855591:263236 +k1,16085:32227169,20855591:263236 +k1,16085:32583029,20855591:0 +) +(1,16086:6630773,21720671:25952256,505283,134348 +g1,16085:8703021,21720671 +g1,16085:11285139,21720671 +g1,16085:12167253,21720671 +g1,16085:13833178,21720671 +g1,16085:15261207,21720671 +g1,16085:16231139,21720671 +g1,16085:19209095,21720671 +g1,16085:20883539,21720671 +k1,16086:32583029,21720671:8985645 +g1,16086:32583029,21720671 +) +(1,16088:6630773,22585751:25952256,513147,134348 +h1,16087:6630773,22585751:983040,0,0 +k1,16087:10231846,22585751:235799 +k1,16087:13870273,22585751:235798 +k1,16087:14867600,22585751:235799 +k1,16087:18256335,22585751:235798 +k1,16087:19178296,22585751:235799 +k1,16087:20030133,22585751:235799 +k1,16087:23949708,22585751:235798 +k1,16087:27272253,22585751:235799 +k1,16087:28527136,22585751:235798 +k1,16087:31061283,22585751:235799 +k1,16087:32583029,22585751:0 +) +(1,16088:6630773,23450831:25952256,513147,134348 +k1,16087:7860065,23450831:281641 +k1,16087:10599961,23450831:281641 +k1,16087:13381800,23450831:281640 +k1,16087:14854886,23450831:281641 +k1,16087:15898055,23450831:281641 +k1,16087:18899440,23450831:281641 +k1,16087:20200165,23450831:281640 +k1,16087:22012072,23450831:281641 +k1,16087:22945141,23450831:281641 +k1,16087:24736732,23450831:281641 +k1,16087:28594672,23450831:281640 +k1,16087:31563944,23450831:281641 +k1,16087:32583029,23450831:0 +) +(1,16088:6630773,24315911:25952256,513147,134348 +k1,16087:8286540,24315911:320799 +k1,16087:11237299,24315911:320799 +k1,16087:15807451,24315911:320798 +k1,16087:17509094,24315911:320799 +k1,16087:18361390,24315911:320799 +k1,16087:19038049,24315911:320799 +k1,16087:22852572,24315911:320799 +k1,16087:25753522,24315911:320798 +k1,16087:27146490,24315911:320799 +k1,16087:30605808,24315911:320799 +k1,16087:32583029,24315911:0 +) +(1,16088:6630773,25180991:25952256,505283,134348 +k1,16087:8572756,25180991:270159 +k1,16087:11162235,25180991:270160 +k1,16087:12826345,25180991:270159 +k1,16087:14450479,25180991:270160 +k1,16087:16291536,25180991:270159 +k1,16087:17951058,25180991:270159 +k1,16087:19659733,25180991:270160 +k1,16087:22272804,25180991:270159 +k1,16087:23923807,25180991:270159 +k1,16087:25863824,25180991:270160 +k1,16087:27627549,25180991:270159 +k1,16087:28583871,25180991:270160 +k1,16087:31189078,25180991:270159 +k1,16087:32583029,25180991:0 +) +(1,16088:6630773,26046071:25952256,513147,134348 +k1,16087:10268530,26046071:179423 +k1,16087:13070048,26046071:179423 +k1,16087:13605331,26046071:179423 +k1,16087:15368759,26046071:179423 +k1,16087:20203205,26046071:179424 +k1,16087:21041920,26046071:179423 +k1,16087:22240428,26046071:179423 +k1,16087:28023835,26046071:179423 +k1,16087:31567221,26046071:179423 +k1,16088:32583029,26046071:0 +) +(1,16088:6630773,26911151:25952256,505283,134348 +k1,16087:9324084,26911151:273067 +k1,16087:12177303,26911151:273067 +k1,16087:15960476,26911151:273066 +k1,16087:18279577,26911151:273067 +k1,16087:19362014,26911151:273067 +k1,16087:22149697,26911151:273067 +k1,16087:23035525,26911151:273066 +k1,16087:26707289,26911151:273067 +k1,16087:31189078,26911151:273067 +k1,16087:32583029,26911151:0 +) +(1,16088:6630773,27776231:25952256,505283,115847 +g1,16087:8891765,27776231 +(1,16087:8891765,27776231:0,459977,115847 +r1,16098:12415437,27776231:3523672,575824,115847 +k1,16087:8891765,27776231:-3523672 +) +(1,16087:8891765,27776231:3523672,459977,115847 +k1,16087:8891765,27776231:3277 +h1,16087:12412160,27776231:0,411205,112570 +) +k1,16088:32583029,27776231:20115164 +g1,16088:32583029,27776231 +) +(1,16090:6630773,28641311:25952256,513147,134348 +h1,16089:6630773,28641311:983040,0,0 +k1,16089:8461093,28641311:219445 +k1,16089:11311809,28641311:219445 +k1,16089:12182682,28641311:219445 +k1,16089:13421211,28641311:219444 +k1,16089:15729288,28641311:219445 +k1,16089:16608025,28641311:219445 +k1,16089:19407622,28641311:219445 +k1,16089:23310844,28641311:219445 +k1,16089:24549374,28641311:219445 +k1,16089:26506833,28641311:219444 +k1,16089:27385570,28641311:219445 +k1,16089:28624100,28641311:219445 +k1,16089:32051532,28641311:219445 +k1,16089:32583029,28641311:0 +) +(1,16090:6630773,29506391:25952256,513147,134348 +k1,16089:7928446,29506391:231402 +k1,16089:9535448,29506391:231401 +k1,16089:14016204,29506391:231402 +k1,16089:15444293,29506391:231402 +k1,16089:17764327,29506391:231402 +k1,16089:18655020,29506391:231401 +k1,16089:20089663,29506391:231402 +k1,16089:23223655,29506391:231402 +k1,16089:24556062,29506391:231402 +k1,16089:26073279,29506391:231401 +k1,16089:29803648,29506391:231402 +k1,16089:32583029,29506391:0 +) +(1,16090:6630773,30371471:25952256,513147,134348 +k1,16089:9019741,30371471:217760 +k1,16089:13518313,30371471:217760 +k1,16089:15211288,30371471:217760 +k1,16089:16938998,30371471:217760 +k1,16089:19847666,30371471:217760 +k1,16089:23394000,30371471:217760 +k1,16089:25054207,30371471:217760 +k1,16089:25888005,30371471:217760 +k1,16089:27539693,30371471:217760 +k1,16089:28172277,30371471:217741 +k1,16089:29072922,30371471:217760 +k1,16089:32583029,30371471:0 +) +(1,16090:6630773,31236551:25952256,513147,134348 +k1,16089:8130137,31236551:307919 +k1,16089:9054094,31236551:307919 +k1,16089:11054153,31236551:307919 +k1,16089:13059454,31236551:307919 +k1,16089:14863560,31236551:307919 +k1,16089:17458030,31236551:307919 +k1,16089:19501342,31236551:307919 +k1,16089:21243189,31236551:307919 +k1,16089:21965842,31236551:307810 +k1,16089:23378043,31236551:307919 +k1,16089:27565693,31236551:307919 +k1,16089:31563944,31236551:307919 +k1,16089:32583029,31236551:0 +) +(1,16090:6630773,32101631:25952256,505283,134348 +k1,16089:9984906,32101631:197919 +k1,16089:11374269,32101631:197918 +k1,16089:12811474,32101631:197919 +k1,16089:14862095,32101631:197918 +k1,16089:16892401,32101631:197919 +k1,16089:18591093,32101631:197918 +k1,16089:21699466,32101631:197919 +k1,16089:23181890,32101631:197918 +k1,16089:26813240,32101631:197919 +k1,16089:27367018,32101631:197918 +k1,16089:31039656,32101631:197919 +k1,16089:32583029,32101631:0 +) +(1,16090:6630773,32966711:25952256,513147,126483 +k1,16089:8460265,32966711:261871 +k1,16089:9741221,32966711:261871 +k1,16089:12087137,32966711:261871 +k1,16089:13008300,32966711:261871 +k1,16089:14289256,32966711:261871 +k1,16089:17759114,32966711:261871 +k1,16089:19288451,32966711:261871 +k1,16089:20834828,32966711:261871 +k1,16089:21755991,32966711:261871 +k1,16089:25527969,32966711:261871 +k1,16089:26472725,32966711:261871 +k1,16089:29759738,32966711:261871 +k1,16089:32583029,32966711:0 +) +(1,16090:6630773,33831791:25952256,473825,126483 +k1,16090:32583030,33831791:23566092 +g1,16090:32583030,33831791 +) +(1,16091:6630773,35948609:25952256,555811,147783 +(1,16091:6630773,35948609:2450326,534184,12975 +g1,16091:6630773,35948609 +g1,16091:9081099,35948609 +) +g1,16091:12248717,35948609 +k1,16091:32583030,35948609:17813340 +g1,16091:32583030,35948609 +) +(1,16095:6630773,37206905:25952256,513147,134348 +k1,16094:9420105,37206905:254399 +k1,16094:11836536,37206905:254399 +k1,16094:14036043,37206905:254398 +k1,16094:14903204,37206905:254399 +k1,16094:18206993,37206905:254399 +k1,16094:22710746,37206905:254399 +k1,16094:24111370,37206905:254399 +k1,16094:28049546,37206905:254399 +k1,16094:29376113,37206905:254398 +k1,16094:30696783,37206905:254399 +k1,16094:31563944,37206905:254399 +k1,16094:32583029,37206905:0 +) +(1,16095:6630773,38071985:25952256,513147,126483 +k1,16094:9346954,38071985:143238 +k1,16094:10149484,38071985:143238 +k1,16094:13193346,38071985:143239 +k1,16094:14533271,38071985:143238 +(1,16094:14533271,38071985:0,452978,115847 +r1,16098:17353520,38071985:2820249,568825,115847 +k1,16094:14533271,38071985:-2820249 +) +(1,16094:14533271,38071985:2820249,452978,115847 +k1,16094:14533271,38071985:3277 +h1,16094:17350243,38071985:0,411205,112570 +) +k1,16094:17496758,38071985:143238 +k1,16094:21346712,38071985:143238 +k1,16094:24346664,38071985:143238 +k1,16094:27680196,38071985:143239 +k1,16094:29107940,38071985:143238 +k1,16094:30932832,38071985:143238 +k1,16094:32583029,38071985:0 +) +(1,16095:6630773,38937065:25952256,513147,126483 +k1,16094:9195018,38937065:208881 +k1,16094:10900086,38937065:208881 +k1,16094:14290085,38937065:208881 +k1,16094:15150394,38937065:208881 +k1,16094:16378361,38937065:208882 +(1,16094:16378361,38937065:0,459977,115847 +r1,16098:20605457,38937065:4227096,575824,115847 +k1,16094:16378361,38937065:-4227096 +) +(1,16094:16378361,38937065:4227096,459977,115847 +k1,16094:16378361,38937065:3277 +h1,16094:20602180,38937065:0,411205,112570 +) +k1,16094:20814338,38937065:208881 +k1,16094:24903606,38937065:208881 +k1,16094:26309174,38937065:208881 +(1,16094:26309174,38937065:0,452978,115847 +r1,16098:28777711,38937065:2468537,568825,115847 +k1,16094:26309174,38937065:-2468537 +) +(1,16094:26309174,38937065:2468537,452978,115847 +k1,16094:26309174,38937065:3277 +h1,16094:28774434,38937065:0,411205,112570 +) +k1,16094:28986592,38937065:208881 +k1,16094:31649796,38937065:208881 +k1,16094:32583029,38937065:0 +) +(1,16095:6630773,39802145:25952256,513147,126483 +k1,16094:9024658,39802145:252168 +k1,16094:11902198,39802145:252168 +k1,16094:13793420,39802145:252167 +k1,16094:16967183,39802145:252168 +k1,16094:18410796,39802145:252168 +k1,16094:21423340,39802145:252168 +k1,16094:24902500,39802145:252167 +k1,16094:29135325,39802145:252168 +k1,16094:30866641,39802145:252168 +k1,16094:32583029,39802145:0 +) +(1,16095:6630773,40667225:25952256,513147,134348 +k1,16094:8155850,40667225:135714 +k1,16094:9730079,40667225:135714 +k1,16094:13382455,40667225:135714 +k1,16094:14134208,40667225:135715 +k1,16094:18345606,40667225:135714 +k1,16094:19472880,40667225:135714 +k1,16094:20224632,40667225:135714 +k1,16094:21962046,40667225:135714 +k1,16094:23795142,40667225:135714 +k1,16094:27167025,40667225:135715 +k1,16094:28884123,40667225:135714 +k1,16094:30002877,40667225:135714 +k1,16095:32583029,40667225:0 +) +(1,16095:6630773,41532305:25952256,513147,126483 +(1,16094:6630773,41532305:0,452978,115847 +r1,16098:9451022,41532305:2820249,568825,115847 +k1,16094:6630773,41532305:-2820249 +) +(1,16094:6630773,41532305:2820249,452978,115847 +k1,16094:6630773,41532305:3277 +h1,16094:9447745,41532305:0,411205,112570 +) +k1,16094:9646628,41532305:195606 +k1,16094:11049406,41532305:195605 +k1,16094:15091975,41532305:195606 +k1,16094:17131109,41532305:195606 +k1,16094:18769161,41532305:195605 +k1,16094:20398695,41532305:195606 +k1,16094:21009140,41532305:195602 +k1,16094:22594108,41532305:195605 +k1,16094:25169982,41532305:195606 +k1,16094:26437757,41532305:195606 +k1,16094:27652447,41532305:195605 +k1,16094:31923737,41532305:195606 +k1,16095:32583029,41532305:0 +) +(1,16095:6630773,42397385:25952256,505283,126483 +k1,16094:7275619,42397385:230003 +k1,16094:8606657,42397385:230033 +k1,16094:11886737,42397385:230034 +k1,16094:13504168,42397385:230034 +k1,16094:14753286,42397385:230033 +k1,16094:16839955,42397385:230034 +k1,16094:20475239,42397385:230033 +k1,16094:22360057,42397385:230034 +k1,16094:23121588,42397385:230034 +k1,16094:24160991,42397385:230033 +k1,16094:25921291,42397385:230034 +k1,16094:28512586,42397385:230033 +k1,16094:29939307,42397385:230034 +k1,16094:32583029,42397385:0 +) +(1,16095:6630773,43262465:25952256,505283,134348 +k1,16094:7476113,43262465:193912 +k1,16094:8762511,43262465:193913 +k1,16094:11536575,43262465:193912 +(1,16094:11536575,43262465:0,452978,115847 +r1,16098:14356824,43262465:2820249,568825,115847 +k1,16094:11536575,43262465:-2820249 +) +(1,16094:11536575,43262465:2820249,452978,115847 +k1,16094:11536575,43262465:3277 +h1,16094:14353547,43262465:0,411205,112570 +) +k1,16094:14550736,43262465:193912 +k1,16094:17446698,43262465:193913 +k1,16094:19808541,43262465:193912 +k1,16094:20811823,43262465:193912 +k1,16094:23596374,43262465:193913 +k1,16094:24946996,43262465:193912 +k1,16094:26563695,43262465:193912 +k1,16094:27776693,43262465:193913 +k1,16094:29672575,43262465:193912 +k1,16094:32583029,43262465:0 +) +(1,16095:6630773,44127545:25952256,513147,126483 +g1,16094:8397623,44127545 +g1,16094:9615937,44127545 +g1,16094:13196823,44127545 +g1,16094:15554153,44127545 +g1,16094:17726015,44127545 +g1,16094:19116689,44127545 +g1,16094:21294449,44127545 +g1,16094:22176563,44127545 +k1,16095:32583029,44127545:9287767 +g1,16095:32583029,44127545 +) +(1,16097:6630773,44992625:25952256,513147,134348 +h1,16096:6630773,44992625:983040,0,0 +k1,16096:8944575,44992625:134075 +k1,16096:11534285,44992625:134076 +k1,16096:12327652,44992625:134075 +k1,16096:15041879,44992625:134075 +k1,16096:17337987,44992625:134076 +k1,16096:20141343,44992625:134075 +k1,16096:21784057,44992625:134075 +(1,16096:21784057,44992625:0,452978,115847 +r1,16098:22845746,44992625:1061689,568825,115847 +k1,16096:21784057,44992625:-1061689 +) +(1,16096:21784057,44992625:1061689,452978,115847 +k1,16096:21784057,44992625:3277 +h1,16096:22842469,44992625:0,411205,112570 +) +k1,16096:22979822,44992625:134076 +k1,16096:24669066,44992625:134075 +k1,16096:25489303,44992625:134075 +k1,16096:27596013,44992625:134076 +k1,16096:31128785,44992625:134075 +k1,16097:32583029,44992625:0 +) +] +(1,16098:32583029,45706769:0,0,0 +g1,16098:32583029,45706769 +) +) +] +(1,16098:6630773,47279633:25952256,0,0 +h1,16098:6630773,47279633:25952256,0,0 +) +] +(1,16098:4262630,4025873:0,0,0 +[1,16098:-473656,4025873:0,0,0 +(1,16098:-473656,-710413:0,0,0 +(1,16098:-473656,-710413:0,0,0 +g1,16098:-473656,-710413 +) +g1,16098:-473656,-710413 ) ] ) ] !23831 -}262 -Input:2703:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2704:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2705:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2706:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}263 Input:2707:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2708:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -282709,1042 +282913,1042 @@ Input:2713:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2714:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2715:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2716:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2717:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2718:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2719:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2720:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{263 -[1,16157:4262630,47279633:28320399,43253760,0 -(1,16157:4262630,4025873:0,0,0 -[1,16157:-473656,4025873:0,0,0 -(1,16157:-473656,-710413:0,0,0 -(1,16157:-473656,-644877:0,0,0 -k1,16157:-473656,-644877:-65536 +{264 +[1,16155:4262630,47279633:28320399,43253760,0 +(1,16155:4262630,4025873:0,0,0 +[1,16155:-473656,4025873:0,0,0 +(1,16155:-473656,-710413:0,0,0 +(1,16155:-473656,-644877:0,0,0 +k1,16155:-473656,-644877:-65536 ) -(1,16157:-473656,4736287:0,0,0 -k1,16157:-473656,4736287:5209943 +(1,16155:-473656,4736287:0,0,0 +k1,16155:-473656,4736287:5209943 ) -g1,16157:-473656,-710413 +g1,16155:-473656,-710413 ) ] ) -[1,16157:6630773,47279633:25952256,43253760,0 -[1,16157:6630773,4812305:25952256,786432,0 -(1,16157:6630773,4812305:25952256,505283,134348 -(1,16157:6630773,4812305:25952256,505283,134348 -g1,16157:3078558,4812305 -[1,16157:3078558,4812305:0,0,0 -(1,16157:3078558,2439708:0,1703936,0 -k1,16157:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16157:2537886,2439708:1179648,16384,0 +[1,16155:6630773,47279633:25952256,43253760,0 +[1,16155:6630773,4812305:25952256,786432,0 +(1,16155:6630773,4812305:25952256,505283,134348 +(1,16155:6630773,4812305:25952256,505283,134348 +g1,16155:3078558,4812305 +[1,16155:3078558,4812305:0,0,0 +(1,16155:3078558,2439708:0,1703936,0 +k1,16155:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16155:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16157:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16155:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16157:3078558,4812305:0,0,0 -(1,16157:3078558,2439708:0,1703936,0 -g1,16157:29030814,2439708 -g1,16157:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16157:36151628,1915420:16384,1179648,0 +[1,16155:3078558,4812305:0,0,0 +(1,16155:3078558,2439708:0,1703936,0 +g1,16155:29030814,2439708 +g1,16155:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16155:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16157:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16155:37855564,2439708:1179648,16384,0 ) ) -k1,16157:3078556,2439708:-34777008 +k1,16155:3078556,2439708:-34777008 ) ] -[1,16157:3078558,4812305:0,0,0 -(1,16157:3078558,49800853:0,16384,2228224 -k1,16157:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16157:2537886,49800853:1179648,16384,0 +[1,16155:3078558,4812305:0,0,0 +(1,16155:3078558,49800853:0,16384,2228224 +k1,16155:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16155:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16157:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16155:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16157:3078558,4812305:0,0,0 -(1,16157:3078558,49800853:0,16384,2228224 -g1,16157:29030814,49800853 -g1,16157:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16157:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16157:37855564,49800853:1179648,16384,0 -) -) -k1,16157:3078556,49800853:-34777008 -) -] -g1,16157:6630773,4812305 -k1,16157:23347041,4812305:15520891 -g1,16157:23960458,4812305 -g1,16157:27572802,4812305 -g1,16157:29306229,4812305 -) -) -] -[1,16157:6630773,45706769:25952256,40108032,0 -(1,16157:6630773,45706769:25952256,40108032,0 -(1,16157:6630773,45706769:0,0,0 -g1,16157:6630773,45706769 -) -[1,16157:6630773,45706769:25952256,40108032,0 -(1,16099:6630773,6254097:25952256,505283,126483 -k1,16098:9004207,6254097:185842 -k1,16098:10584000,6254097:185842 -(1,16098:10584000,6254097:0,459977,115847 -r1,16157:14107672,6254097:3523672,575824,115847 -k1,16098:10584000,6254097:-3523672 -) -(1,16098:10584000,6254097:3523672,459977,115847 -k1,16098:10584000,6254097:3277 -h1,16098:14104395,6254097:0,411205,112570 -) -k1,16098:14293515,6254097:185843 -k1,16098:15670802,6254097:185842 -k1,16098:17572377,6254097:185842 -k1,16098:18216316,6254097:185842 -k1,16098:18758018,6254097:185842 -k1,16098:21326749,6254097:185842 -k1,16098:23241432,6254097:185843 -k1,16098:24808118,6254097:185842 -k1,16098:28392657,6254097:185842 -k1,16098:32583029,6254097:0 -) -(1,16099:6630773,7119177:25952256,513147,126483 -g1,16098:7361499,7119177 -g1,16098:8936329,7119177 -g1,16098:11219603,7119177 -g1,16098:12143660,7119177 -g1,16098:12958927,7119177 -g1,16098:14850296,7119177 -g1,16098:18206394,7119177 -g1,16098:19794986,7119177 -g1,16098:22200812,7119177 -g1,16098:23591486,7119177 -g1,16098:25932432,7119177 -g1,16098:27123221,7119177 -g1,16098:28388721,7119177 -k1,16099:32583029,7119177:836899 -g1,16099:32583029,7119177 -) -(1,16101:6630773,7984257:25952256,513147,134348 -h1,16100:6630773,7984257:983040,0,0 -k1,16100:8975596,7984257:165096 -k1,16100:10695861,7984257:165096 -k1,16100:12052402,7984257:165096 -k1,16100:15002123,7984257:165096 -k1,16100:16451725,7984257:165096 -k1,16100:19196973,7984257:165096 -k1,16100:21524101,7984257:165096 -k1,16100:23980336,7984257:165096 -k1,16100:25073422,7984257:165096 -k1,16100:26930658,7984257:165096 -k1,16100:27755046,7984257:165096 -k1,16100:28939227,7984257:165096 -k1,16100:32583029,7984257:0 -) -(1,16101:6630773,8849337:25952256,513147,134348 -k1,16100:9585792,8849337:220202 -k1,16100:10567523,8849337:220203 -k1,16100:11806810,8849337:220202 -k1,16100:14115644,8849337:220202 -k1,16100:14995139,8849337:220203 -k1,16100:16649269,8849337:220202 -k1,16100:17284293,8849337:220181 -k1,16100:18893859,8849337:220203 -k1,16100:21320658,8849337:220202 -k1,16100:22153622,8849337:220202 -k1,16100:23392910,8849337:220203 -k1,16100:24928420,8849337:220202 -k1,16100:25807914,8849337:220202 -k1,16100:28600405,8849337:220203 -k1,16100:30512747,8849337:220202 -k1,16101:32583029,8849337:0 -) -(1,16101:6630773,9714417:25952256,513147,134348 -k1,16100:10208514,9714417:199360 -k1,16100:11590800,9714417:199361 -k1,16100:12441588,9714417:199360 -k1,16100:15302366,9714417:199361 -k1,16100:18965959,9714417:199360 -k1,16100:21249364,9714417:199360 -k1,16100:22396376,9714417:199361 -k1,16100:25219142,9714417:199360 -k1,16100:28806714,9714417:199361 -k1,16100:31325393,9714417:199360 -k1,16101:32583029,9714417:0 -) -(1,16101:6630773,10579497:25952256,513147,126483 -k1,16100:8306343,10579497:222637 -k1,16100:9548065,10579497:222637 -k1,16100:12363306,10579497:222637 -k1,16100:13245234,10579497:222636 -k1,16100:16781371,10579497:222637 -k1,16100:17663300,10579497:222637 -k1,16100:19441106,10579497:222637 -(1,16100:19441106,10579497:0,452978,115847 -r1,16157:20854507,10579497:1413401,568825,115847 -k1,16100:19441106,10579497:-1413401 -) -(1,16100:19441106,10579497:1413401,452978,115847 -k1,16100:19441106,10579497:3277 -h1,16100:20851230,10579497:0,411205,112570 -) -k1,16100:21077144,10579497:222637 -k1,16100:22491226,10579497:222637 -k1,16100:25068571,10579497:222636 -k1,16100:27817621,10579497:222637 -k1,16100:28987909,10579497:222637 -k1,16100:31923737,10579497:222637 -k1,16100:32583029,10579497:0 -) -(1,16101:6630773,11444577:25952256,513147,134348 -k1,16100:8378919,11444577:192977 -(1,16100:8378919,11444577:0,452978,115847 -r1,16157:10495744,11444577:2116825,568825,115847 -k1,16100:8378919,11444577:-2116825 -) -(1,16100:8378919,11444577:2116825,452978,115847 -k1,16100:8378919,11444577:3277 -h1,16100:10492467,11444577:0,411205,112570 -) -k1,16100:10862392,11444577:192978 -k1,16100:13947473,11444577:192977 -k1,16100:14799743,11444577:192978 -k1,16100:18101748,11444577:192977 -k1,16100:18826222,11444577:192977 -k1,16100:20305016,11444577:192978 -k1,16100:23434006,11444577:192977 -k1,16100:25020934,11444577:192977 -k1,16100:26023282,11444577:192978 -k1,16100:27420155,11444577:192977 -k1,16100:29681449,11444577:192978 -k1,16100:31839851,11444577:192977 -k1,16100:32583029,11444577:0 -) -(1,16101:6630773,12309657:25952256,513147,7863 -k1,16100:9295109,12309657:225086 -k1,16100:11352582,12309657:225086 -k1,16100:12569229,12309657:225087 -k1,16100:14080131,12309657:225086 -k1,16100:17821879,12309657:225086 -k1,16100:18663003,12309657:225086 -k1,16100:21153669,12309657:225086 -k1,16100:24553319,12309657:225086 -k1,16100:25437698,12309657:225087 -k1,16100:27129480,12309657:225086 -k1,16100:31391584,12309657:225086 -k1,16100:32583029,12309657:0 -) -(1,16101:6630773,13174737:25952256,505283,7863 -k1,16101:32583030,13174737:23115204 -g1,16101:32583030,13174737 -) -(1,16103:6630773,14039817:25952256,513147,134348 -h1,16102:6630773,14039817:983040,0,0 -k1,16102:10836470,14039817:135911 -k1,16102:13134414,14039817:135911 -k1,16102:13886363,14039817:135911 -k1,16102:15506010,14039817:135912 -(1,16102:15506010,14039817:0,452978,115847 -r1,16157:16567699,14039817:1061689,568825,115847 -k1,16102:15506010,14039817:-1061689 -) -(1,16102:15506010,14039817:1061689,452978,115847 -k1,16102:15506010,14039817:3277 -h1,16102:16564422,14039817:0,411205,112570 -) -k1,16102:16703610,14039817:135911 -k1,16102:17970672,14039817:135911 -k1,16102:18836654,14039817:135911 -k1,16102:21084135,14039817:135911 -k1,16102:21906863,14039817:135911 -k1,16102:25449336,14039817:135912 -k1,16102:26184901,14039817:135911 -k1,16102:29206362,14039817:135911 -k1,16102:30619570,14039817:135911 -k1,16102:32583029,14039817:0 -) -(1,16103:6630773,14904897:25952256,513147,134348 -k1,16102:8337113,14904897:278310 -k1,16102:10817432,14904897:278309 -k1,16102:11782559,14904897:278310 -k1,16102:13881458,14904897:278309 -k1,16102:15773264,14904897:278310 -k1,16102:18937123,14904897:278309 -k1,16102:20261388,14904897:278310 -k1,16102:21552884,14904897:278309 -k1,16102:25467131,14904897:278310 -k1,16102:26345094,14904897:278309 -k1,16102:28192991,14904897:278310 -k1,16102:31219880,14904897:278309 -k1,16102:32583029,14904897:0 -) -(1,16103:6630773,15769977:25952256,513147,126483 -g1,16102:8850477,15769977 -g1,16102:9736523,15769977 -g1,16102:10334211,15769977 -g1,16102:12304223,15769977 -g1,16102:13119490,15769977 -g1,16102:14304380,15769977 -g1,16102:17908860,15769977 -g1,16102:18711020,15769977 -g1,16102:20943176,15769977 -g1,16102:21758443,15769977 -g1,16102:23571168,15769977 -k1,16103:32583029,15769977:6301292 -g1,16103:32583029,15769977 -) -v1,16105:6630773,16635057:0,393216,0 -(1,16106:6630773,20583037:25952256,4341196,0 -g1,16106:6630773,20583037 -g1,16106:6237557,20583037 -r1,16157:6368629,20583037:131072,4341196,0 -g1,16106:6567858,20583037 -g1,16106:6764466,20583037 -[1,16106:6764466,20583037:25818563,4341196,0 -(1,16106:6764466,16996234:25818563,754393,260573 -(1,16105:6764466,16996234:0,754393,260573 -r1,16157:7856192,16996234:1091726,1014966,260573 -k1,16105:6764466,16996234:-1091726 -) -(1,16105:6764466,16996234:1091726,754393,260573 -) -k1,16105:8107551,16996234:251359 -k1,16105:8435231,16996234:327680 -k1,16105:9156484,16996234:251360 -k1,16105:9939340,16996234:251359 -k1,16105:11585305,16996234:251359 -k1,16105:12488092,16996234:251359 -k1,16105:14354259,16996234:251360 -k1,16105:16101805,16996234:251359 -k1,16105:17637670,16996234:251359 -k1,16105:19021491,16996234:251359 -k1,16105:20869308,16996234:251360 -k1,16105:23929540,16996234:251359 -k1,16105:25647595,16996234:251359 -k1,16105:27292906,16996234:251360 -k1,16105:28933628,16996234:251359 -k1,16105:31391584,16996234:251359 -k1,16105:32583029,16996234:0 -) -(1,16106:6764466,17861314:25818563,513147,134348 -k1,16105:9121856,17861314:215673 -k1,16105:10099057,17861314:215673 -k1,16105:13034474,17861314:215673 -k1,16105:16604280,17861314:215673 -k1,16105:18104459,17861314:215673 -k1,16105:20543112,17861314:215672 -k1,16105:24261029,17861314:215673 -k1,16105:27411404,17861314:215673 -k1,16105:29123264,17861314:215673 -k1,16105:30623443,17861314:215673 -k1,16105:31370613,17861314:215673 -k1,16106:32583029,17861314:0 -) -(1,16106:6764466,18726394:25818563,513147,134348 -k1,16105:9894517,18726394:264817 -k1,16105:12401976,18726394:264817 -k1,16105:15783685,18726394:264817 -k1,16105:16699930,18726394:264817 -k1,16105:17983832,18726394:264817 -k1,16105:18663426,18726394:264751 -k1,16105:21770539,18726394:264817 -k1,16105:23372290,18726394:264817 -k1,16105:24664056,18726394:264817 -k1,16105:25580301,18726394:264817 -k1,16105:27441575,18726394:264817 -k1,16105:28392554,18726394:264817 -k1,16105:31496391,18726394:264817 -k1,16105:32227169,18726394:264817 -k1,16105:32583029,18726394:0 -) -(1,16106:6764466,19591474:25818563,513147,126483 -k1,16105:8841255,19591474:265374 -k1,16105:9638126,19591474:265374 -k1,16105:11416726,19591474:265374 -k1,16105:12298139,19591474:265375 -k1,16105:14226161,19591474:265374 -k1,16105:15150827,19591474:265374 -k1,16105:15772061,19591474:265374 -k1,16105:17426798,19591474:265374 -k1,16105:19742138,19591474:265374 -k1,16105:21497801,19591474:265374 -k1,16105:24788973,19591474:265375 -k1,16105:27013873,19591474:265374 -k1,16105:27930675,19591474:265374 -k1,16105:29792506,19591474:265374 -k1,16105:32583029,19591474:0 -) -(1,16106:6764466,20456554:25818563,513147,126483 -g1,16105:8331432,20456554 -g1,16105:9997357,20456554 -g1,16105:12338303,20456554 -g1,16105:13728977,20456554 -g1,16105:15317569,20456554 -g1,16105:17723395,20456554 -g1,16105:19026906,20456554 -g1,16105:19973901,20456554 -g1,16105:21983234,20456554 -g1,16105:23827417,20456554 -g1,16105:24712808,20456554 -k1,16106:32583029,20456554:4282125 -g1,16106:32583029,20456554 -) -] -g1,16106:32583029,20583037 -) -h1,16106:6630773,20583037:0,0,0 -v1,16109:6630773,21448117:0,393216,0 -(1,16110:6630773,27081243:25952256,6026342,0 -g1,16110:6630773,27081243 -g1,16110:6237557,27081243 -r1,16157:6368629,27081243:131072,6026342,0 -g1,16110:6567858,27081243 -g1,16110:6764466,27081243 -[1,16110:6764466,27081243:25818563,6026342,0 -(1,16110:6764466,21756415:25818563,701514,196608 -(1,16109:6764466,21756415:0,701514,196608 -r1,16157:7761522,21756415:997056,898122,196608 -k1,16109:6764466,21756415:-997056 -) -(1,16109:6764466,21756415:997056,701514,196608 -) -k1,16109:7966982,21756415:205460 -k1,16109:8294662,21756415:327680 -k1,16109:9962231,21756415:205461 -k1,16109:10625788,21756415:205460 -k1,16109:11932253,21756415:205460 -k1,16109:13647663,21756415:205460 -k1,16109:16483084,21756415:205461 -k1,16109:17339972,21756415:205460 -k1,16109:19506269,21756415:205460 -k1,16109:21853446,21756415:205460 -k1,16109:22745069,21756415:205461 -k1,16109:25240357,21756415:205460 -k1,16109:26105109,21756415:205460 -k1,16109:26666429,21756415:205460 -k1,16109:28427059,21756415:205461 -k1,16109:31015408,21756415:205460 -k1,16110:32583029,21756415:0 -) -(1,16110:6764466,22621495:25818563,513147,126483 -(1,16109:6764466,22621495:0,459977,115847 -r1,16157:10288138,22621495:3523672,575824,115847 -k1,16109:6764466,22621495:-3523672 -) -(1,16109:6764466,22621495:3523672,459977,115847 -k1,16109:6764466,22621495:3277 -h1,16109:10284861,22621495:0,411205,112570 -) -k1,16109:10509448,22621495:221310 -k1,16109:12962259,22621495:221310 -k1,16109:14340279,22621495:221310 -k1,16109:15220880,22621495:221309 -k1,16109:16461275,22621495:221310 -k1,16109:20081282,22621495:221310 -k1,16109:20961884,22621495:221310 -k1,16109:22202279,22621495:221310 -k1,16109:24548266,22621495:221310 -k1,16109:29826333,22621495:221309 -k1,16109:30706935,22621495:221310 -k1,16109:31681909,22621495:221310 -k1,16110:32583029,22621495:0 -) -(1,16110:6764466,23486575:25818563,513147,134348 -k1,16109:8141378,23486575:212337 -k1,16109:10586526,23486575:212336 -k1,16109:11414901,23486575:212337 -k1,16109:12215750,23486575:212336 -k1,16109:15231717,23486575:212337 -k1,16109:16647295,23486575:212337 -k1,16109:17391128,23486575:212336 -k1,16109:21427491,23486575:212337 -k1,16109:24169517,23486575:212336 -k1,16109:25400939,23486575:212337 -k1,16109:28215710,23486575:212336 -k1,16109:29087339,23486575:212337 -k1,16110:32583029,23486575:0 -) -(1,16110:6764466,24351655:25818563,513147,126483 -k1,16109:7793545,24351655:209879 -k1,16109:10443329,24351655:209879 -k1,16109:11269247,24351655:209880 -k1,16109:11834986,24351655:209879 -k1,16109:14427754,24351655:209879 -k1,16109:16192802,24351655:209879 -k1,16109:16934178,24351655:209879 -k1,16109:18210328,24351655:209879 -k1,16109:20549473,24351655:209880 -k1,16109:23426667,24351655:209879 -k1,16109:24538977,24351655:209879 -k1,16109:29321958,24351655:209879 -k1,16109:32583029,24351655:0 -) -(1,16110:6764466,25216735:25818563,513147,134348 -k1,16109:9420759,25216735:201970 -k1,16109:12479443,25216735:201970 -k1,16109:13629064,25216735:201970 -k1,16109:15220397,25216735:201970 -k1,16109:17628964,25216735:201970 -k1,16109:18963397,25216735:201971 -k1,16109:20231638,25216735:201970 -k1,16109:23948959,25216735:201970 -k1,16109:25747386,25216735:201970 -k1,16109:28758229,25216735:201970 -k1,16109:30354150,25216735:201970 -k1,16109:32583029,25216735:0 -) -(1,16110:6764466,26081815:25818563,513147,126483 -k1,16109:8036801,26081815:200166 -k1,16109:8853004,26081815:200165 -k1,16109:10072255,26081815:200166 -k1,16109:12802111,26081815:200166 -k1,16109:13661569,26081815:200166 -k1,16109:14217594,26081815:200165 -k1,16109:17911484,26081815:200166 -k1,16109:20565973,26081815:200166 -k1,16109:21713789,26081815:200165 -k1,16109:24055672,26081815:200166 -k1,16109:24713935,26081815:200166 -k1,16109:26046563,26081815:200166 -k1,16109:26994494,26081815:200165 -k1,16109:28707886,26081815:200166 -k1,16109:32583029,26081815:0 -) -(1,16110:6764466,26946895:25818563,505283,134348 -g1,16109:8635519,26946895 -g1,16109:9853833,26946895 -g1,16109:12359929,26946895 -g1,16109:15013481,26946895 -g1,16109:15744207,26946895 -g1,16109:17811212,26946895 -g1,16109:19404392,26946895 -g1,16109:19959481,26946895 -g1,16109:21970125,26946895 -g1,16109:22855516,26946895 -k1,16110:32583029,26946895:6602757 -g1,16110:32583029,26946895 -) -] -g1,16110:32583029,27081243 -) -h1,16110:6630773,27081243:0,0,0 -v1,16113:6630773,27946323:0,393216,0 -(1,16140:6630773,40432513:25952256,12879406,0 -g1,16140:6630773,40432513 -g1,16140:6237557,40432513 -r1,16157:6368629,40432513:131072,12879406,0 -g1,16140:6567858,40432513 -g1,16140:6764466,40432513 -[1,16140:6764466,40432513:25818563,12879406,0 -(1,16114:6764466,28307500:25818563,754393,260573 -(1,16113:6764466,28307500:0,754393,260573 -r1,16157:7856192,28307500:1091726,1014966,260573 -k1,16113:6764466,28307500:-1091726 -) -(1,16113:6764466,28307500:1091726,754393,260573 -) -k1,16113:8038132,28307500:181940 -k1,16113:8365812,28307500:327680 -k1,16113:9819150,28307500:181940 -k1,16113:12181472,28307500:181939 -k1,16113:13111178,28307500:181940 -k1,16113:15161549,28307500:181940 -k1,16113:16627995,28307500:181940 -k1,16113:19641090,28307500:181940 -k1,16113:20842115,28307500:181940 -k1,16113:24730770,28307500:181939 -(1,16113:24730770,28307500:0,452978,115847 -r1,16157:27551019,28307500:2820249,568825,115847 -k1,16113:24730770,28307500:-2820249 -) -(1,16113:24730770,28307500:2820249,452978,115847 -k1,16113:24730770,28307500:3277 -h1,16113:27547742,28307500:0,411205,112570 -) -k1,16113:27732959,28307500:181940 -k1,16113:29106344,28307500:181940 -k1,16113:32583029,28307500:0 -) -(1,16114:6764466,29172580:25818563,513147,115847 -k1,16113:9724796,29172580:264834 -(1,16113:9724796,29172580:0,452978,115847 -r1,16157:13600180,29172580:3875384,568825,115847 -k1,16113:9724796,29172580:-3875384 -) -(1,16113:9724796,29172580:3875384,452978,115847 -k1,16113:9724796,29172580:3277 -h1,16113:13596903,29172580:0,411205,112570 -) -k1,16113:14038683,29172580:264833 -k1,16113:14989679,29172580:264834 -k1,16113:16533119,29172580:264833 -k1,16113:17484115,29172580:264834 -k1,16113:18768034,29172580:264834 -k1,16113:20224312,29172580:264833 -(1,16113:20224312,29172580:0,452978,115847 -r1,16157:24099696,29172580:3875384,568825,115847 -k1,16113:20224312,29172580:-3875384 -) -(1,16113:20224312,29172580:3875384,452978,115847 -k1,16113:20224312,29172580:3277 -h1,16113:24096419,29172580:0,411205,112570 -) -k1,16113:24364530,29172580:264834 -k1,16113:25721848,29172580:264833 -k1,16113:27005767,29172580:264834 -k1,16113:29008615,29172580:264833 -(1,16113:29008615,29172580:0,452978,115847 -r1,16157:31125440,29172580:2116825,568825,115847 -k1,16113:29008615,29172580:-2116825 -) -(1,16113:29008615,29172580:2116825,452978,115847 -k1,16113:29008615,29172580:3277 -h1,16113:31122163,29172580:0,411205,112570 -) -k1,16113:31563944,29172580:264834 -k1,16113:32583029,29172580:0 -) -(1,16114:6764466,30037660:25818563,505283,115847 -k1,16113:8519472,30037660:199837 -k1,16113:11498037,30037660:199838 -k1,16113:12229371,30037660:199837 -k1,16113:14587965,30037660:199838 -(1,16113:14587965,30037660:0,452978,115847 -r1,16157:15649654,30037660:1061689,568825,115847 -k1,16113:14587965,30037660:-1061689 -) -(1,16113:14587965,30037660:1061689,452978,115847 -k1,16113:14587965,30037660:3277 -h1,16113:15646377,30037660:0,411205,112570 -) -k1,16113:16023161,30037660:199837 -k1,16113:17603843,30037660:199838 -k1,16113:18335177,30037660:199837 -k1,16113:22431786,30037660:199838 -k1,16113:24025574,30037660:199837 -k1,16113:25659340,30037660:199838 -k1,16113:26274020,30037660:199837 -k1,16113:30507598,30037660:199837 -k1,16113:31393598,30037660:199838 -k1,16113:32051532,30037660:199837 -k1,16113:32583029,30037660:0 -) -(1,16114:6764466,30902740:25818563,513147,7863 -g1,16113:7982780,30902740 -g1,16113:9274494,30902740 -g1,16113:10133015,30902740 -g1,16113:11102947,30902740 -g1,16113:14882408,30902740 -g1,16113:17408820,30902740 -g1,16113:18267341,30902740 -g1,16113:18822430,30902740 -g1,16113:20093828,30902740 -g1,16113:20909095,30902740 -g1,16113:22127409,30902740 -g1,16113:24064653,30902740 -g1,16113:24923174,30902740 -g1,16113:26819130,30902740 -k1,16114:32583029,30902740:2926846 -g1,16114:32583029,30902740 -) -v1,16116:6764466,31587595:0,393216,0 -(1,16136:6764466,36659738:25818563,5465359,196608 -g1,16136:6764466,36659738 -g1,16136:6764466,36659738 -g1,16136:6567858,36659738 -(1,16136:6567858,36659738:0,5465359,196608 -r1,16157:32779637,36659738:26211779,5661967,196608 -k1,16136:6567857,36659738:-26211780 -) -(1,16136:6567858,36659738:26211779,5465359,196608 -[1,16136:6764466,36659738:25818563,5268751,0 -(1,16118:6764466,31815426:25818563,424439,106246 -(1,16117:6764466,31815426:0,0,0 -g1,16117:6764466,31815426 -g1,16117:6764466,31815426 -g1,16117:6436786,31815426 -(1,16117:6436786,31815426:0,0,0 -) -g1,16117:6764466,31815426 -) -g1,16118:8756190,31815426 -g1,16118:9752052,31815426 -g1,16118:14731362,31815426 -g1,16118:15395270,31815426 -h1,16118:16723086,31815426:0,0,0 -k1,16118:32583029,31815426:15859943 -g1,16118:32583029,31815426 -) -(1,16119:6764466,32500281:25818563,424439,106246 -h1,16119:6764466,32500281:0,0,0 -k1,16119:6764466,32500281:0 -h1,16119:12075729,32500281:0,0,0 -k1,16119:32583029,32500281:20507300 -g1,16119:32583029,32500281 -) -(1,16123:6764466,33316208:25818563,424439,79822 -(1,16121:6764466,33316208:0,0,0 -g1,16121:6764466,33316208 -g1,16121:6764466,33316208 -g1,16121:6436786,33316208 -(1,16121:6436786,33316208:0,0,0 -) -g1,16121:6764466,33316208 -) -g1,16123:7760328,33316208 -g1,16123:9088144,33316208 -h1,16123:10415960,33316208:0,0,0 -k1,16123:32583028,33316208:22167068 -g1,16123:32583028,33316208 -) -(1,16125:6764466,34132135:25818563,424439,106246 -(1,16124:6764466,34132135:0,0,0 -g1,16124:6764466,34132135 -g1,16124:6764466,34132135 -g1,16124:6436786,34132135 -(1,16124:6436786,34132135:0,0,0 -) -g1,16124:6764466,34132135 -) -k1,16125:6764466,34132135:0 -g1,16125:12075729,34132135 -h1,16125:15063314,34132135:0,0,0 -k1,16125:32583030,34132135:17519716 -g1,16125:32583030,34132135 -) -(1,16129:6764466,34948062:25818563,424439,79822 -(1,16127:6764466,34948062:0,0,0 -g1,16127:6764466,34948062 -g1,16127:6764466,34948062 -g1,16127:6436786,34948062 -(1,16127:6436786,34948062:0,0,0 -) -g1,16127:6764466,34948062 -) -g1,16129:7760328,34948062 -g1,16129:9088144,34948062 -h1,16129:10747914,34948062:0,0,0 -k1,16129:32583030,34948062:21835116 -g1,16129:32583030,34948062 -) -(1,16131:6764466,35763989:25818563,424439,106246 -(1,16130:6764466,35763989:0,0,0 -g1,16130:6764466,35763989 -g1,16130:6764466,35763989 -g1,16130:6436786,35763989 -(1,16130:6436786,35763989:0,0,0 -) -g1,16130:6764466,35763989 -) -k1,16131:6764466,35763989:0 -h1,16131:10747914,35763989:0,0,0 -k1,16131:32583030,35763989:21835116 -g1,16131:32583030,35763989 -) -(1,16135:6764466,36579916:25818563,431045,79822 -(1,16133:6764466,36579916:0,0,0 -g1,16133:6764466,36579916 -g1,16133:6764466,36579916 -g1,16133:6436786,36579916 -(1,16133:6436786,36579916:0,0,0 -) -g1,16133:6764466,36579916 -) -g1,16135:7760328,36579916 -g1,16135:9088144,36579916 -g1,16135:12075729,36579916 -g1,16135:12407683,36579916 -g1,16135:12739637,36579916 -g1,16135:13071591,36579916 -g1,16135:13403545,36579916 -g1,16135:15395269,36579916 -g1,16135:15727223,36579916 -g1,16135:16059177,36579916 -g1,16135:16391131,36579916 -g1,16135:16723085,36579916 -g1,16135:17055039,36579916 -g1,16135:17386993,36579916 -g1,16135:17718947,36579916 -h1,16135:21702394,36579916:0,0,0 -k1,16135:32583029,36579916:10880635 -g1,16135:32583029,36579916 -) -] -) -g1,16136:32583029,36659738 -g1,16136:6764466,36659738 -g1,16136:6764466,36659738 -g1,16136:32583029,36659738 -g1,16136:32583029,36659738 -) -h1,16136:6764466,36856346:0,0,0 -(1,16140:6764466,37721426:25818563,513147,134348 -h1,16139:6764466,37721426:983040,0,0 -k1,16139:12232790,37721426:291635 -k1,16139:13175853,37721426:291635 -k1,16139:15993901,37721426:291635 -k1,16139:18427253,37721426:291635 -k1,16139:20573557,37721426:291635 -k1,16139:21674562,37721426:291635 -k1,16139:24728540,37721426:291635 -k1,16139:28462781,37721426:291635 -k1,16139:30143779,37721426:291635 -k1,16139:32583029,37721426:0 -) -(1,16140:6764466,38586506:25818563,513147,134348 -k1,16139:8452740,38586506:194708 -k1,16139:9333609,38586506:194707 -(1,16139:9333609,38586506:0,452978,115847 -r1,16157:12857281,38586506:3523672,568825,115847 -k1,16139:9333609,38586506:-3523672 -) -(1,16139:9333609,38586506:3523672,452978,115847 -k1,16139:9333609,38586506:3277 -h1,16139:12854004,38586506:0,411205,112570 -) -k1,16139:13051989,38586506:194708 -k1,16139:15536524,38586506:194707 -k1,16139:16414117,38586506:194708 -k1,16139:19936088,38586506:194708 -k1,16139:20486655,38586506:194707 -k1,16139:22956773,38586506:194708 -k1,16139:25534370,38586506:194708 -k1,16139:27284246,38586506:194707 -k1,16139:28010451,38586506:194708 -k1,16139:30677176,38586506:194707 -k1,16139:31499719,38586506:194708 -k1,16139:32583029,38586506:0 -) -(1,16140:6764466,39451586:25818563,505283,134348 -k1,16139:9788095,39451586:188542 -k1,16139:10662799,39451586:188542 -k1,16139:11949069,39451586:188542 -k1,16139:13949025,39451586:188541 -k1,16139:15238572,39451586:188542 -k1,16139:16197817,39451586:188542 -k1,16139:19828965,39451586:188542 -(1,16139:19828965,39451586:0,459977,115847 -r1,16157:23352637,39451586:3523672,575824,115847 -k1,16139:19828965,39451586:-3523672 -) -(1,16139:19828965,39451586:3523672,459977,115847 -k1,16139:19828965,39451586:3277 -h1,16139:23349360,39451586:0,411205,112570 -) -k1,16139:23541179,39451586:188542 -k1,16139:25458560,39451586:188541 -k1,16139:26666187,39451586:188542 -k1,16139:28456429,39451586:188542 -k1,16139:31027860,39451586:188542 -k1,16139:32583029,39451586:0 -) -(1,16140:6764466,40316666:25818563,513147,115847 -g1,16139:7630851,40316666 -(1,16139:7630851,40316666:0,452978,115847 -r1,16157:9395964,40316666:1765113,568825,115847 -k1,16139:7630851,40316666:-1765113 -) -(1,16139:7630851,40316666:1765113,452978,115847 -k1,16139:7630851,40316666:3277 -h1,16139:9392687,40316666:0,411205,112570 -) -g1,16139:9595193,40316666 -g1,16139:10325919,40316666 -(1,16139:10325919,40316666:0,459977,115847 -r1,16157:12442744,40316666:2116825,575824,115847 -k1,16139:10325919,40316666:-2116825 -) -(1,16139:10325919,40316666:2116825,459977,115847 -k1,16139:10325919,40316666:3277 -h1,16139:12439467,40316666:0,411205,112570 -) -k1,16140:32583028,40316666:20087856 -g1,16140:32583028,40316666 -) -] -g1,16140:32583029,40432513 -) -h1,16140:6630773,40432513:0,0,0 -(1,16143:6630773,41297593:25952256,513147,126483 -h1,16142:6630773,41297593:983040,0,0 -k1,16142:10628641,41297593:224960 -(1,16142:10628641,41297593:0,452978,115847 -r1,16157:15559161,41297593:4930520,568825,115847 -k1,16142:10628641,41297593:-4930520 -) -(1,16142:10628641,41297593:4930520,452978,115847 -k1,16142:10628641,41297593:3277 -h1,16142:15555884,41297593:0,411205,112570 -) -k1,16142:15957792,41297593:224961 -k1,16142:18564330,41297593:224960 -k1,16142:20831393,41297593:224961 -k1,16142:23977948,41297593:224960 -k1,16142:26529436,41297593:224960 -k1,16142:27773482,41297593:224961 -k1,16142:29553611,41297593:224960 -k1,16142:30437864,41297593:224961 -k1,16142:31681909,41297593:224960 -k1,16143:32583029,41297593:0 -) -(1,16143:6630773,42162673:25952256,513147,134348 -k1,16142:8005920,42162673:210572 -k1,16142:10421779,42162673:210572 -k1,16142:11318513,42162673:210572 -k1,16142:12299788,42162673:210572 -k1,16142:15582688,42162673:210572 -k1,16142:16984705,42162673:210572 -k1,16142:17854569,42162673:210572 -k1,16142:18853539,42162673:210572 -k1,16142:22017819,42162673:210572 -k1,16142:24227895,42162673:210572 -k1,16142:27464264,42162673:210572 -k1,16142:28666396,42162673:210572 -k1,16142:31966991,42162673:210572 -k1,16142:32583029,42162673:0 -) -(1,16143:6630773,43027753:25952256,505283,134348 -g1,16142:9108689,43027753 -h1,16142:10079277,43027753:0,0,0 -g1,16142:10278506,43027753 -g1,16142:11287105,43027753 -g1,16142:12984487,43027753 -h1,16142:14179864,43027753:0,0,0 -k1,16143:32583030,43027753:18143644 -g1,16143:32583030,43027753 -) -v1,16145:6630773,43712608:0,393216,0 -(1,16157:6630773,45423001:25952256,2103609,196608 -g1,16157:6630773,45423001 -g1,16157:6630773,45423001 -g1,16157:6434165,45423001 -(1,16157:6434165,45423001:0,2103609,196608 -r1,16157:32779637,45423001:26345472,2300217,196608 -k1,16157:6434165,45423001:-26345472 -) -(1,16157:6434165,45423001:26345472,2103609,196608 -[1,16157:6630773,45423001:25952256,1907001,0 -(1,16147:6630773,43947045:25952256,431045,79822 -(1,16146:6630773,43947045:0,0,0 -g1,16146:6630773,43947045 -g1,16146:6630773,43947045 -g1,16146:6303093,43947045 -(1,16146:6303093,43947045:0,0,0 -) -g1,16146:6630773,43947045 -) -g1,16147:10946174,43947045 -g1,16147:11942036,43947045 -g1,16147:15925483,43947045 -h1,16147:16257437,43947045:0,0,0 -k1,16147:32583029,43947045:16325592 -g1,16147:32583029,43947045 -) -(1,16148:6630773,44631900:25952256,424439,79822 -h1,16148:6630773,44631900:0,0,0 -g1,16148:6962727,44631900 -g1,16148:7294681,44631900 -k1,16148:7294681,44631900:0 -h1,16148:8622497,44631900:0,0,0 -k1,16148:32583029,44631900:23960532 -g1,16148:32583029,44631900 -) -(1,16149:6630773,45316755:25952256,424439,106246 -h1,16149:6630773,45316755:0,0,0 -g1,16149:6962727,45316755 -g1,16149:7294681,45316755 -g1,16149:7626635,45316755 -g1,16149:7958589,45316755 -k1,16149:7958589,45316755:0 -h1,16149:15925485,45316755:0,0,0 -k1,16149:32583029,45316755:16657544 -g1,16149:32583029,45316755 -) -] -) -g1,16157:32583029,45423001 -g1,16157:6630773,45423001 -g1,16157:6630773,45423001 -g1,16157:32583029,45423001 -g1,16157:32583029,45423001 -) -] -(1,16157:32583029,45706769:0,0,0 -g1,16157:32583029,45706769 -) -) -] -(1,16157:6630773,47279633:25952256,0,0 -h1,16157:6630773,47279633:25952256,0,0 -) -] -(1,16157:4262630,4025873:0,0,0 -[1,16157:-473656,4025873:0,0,0 -(1,16157:-473656,-710413:0,0,0 -(1,16157:-473656,-710413:0,0,0 -g1,16157:-473656,-710413 -) -g1,16157:-473656,-710413 +[1,16155:3078558,4812305:0,0,0 +(1,16155:3078558,49800853:0,16384,2228224 +g1,16155:29030814,49800853 +g1,16155:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16155:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16155:37855564,49800853:1179648,16384,0 +) +) +k1,16155:3078556,49800853:-34777008 +) +] +g1,16155:6630773,4812305 +k1,16155:23347041,4812305:15520891 +g1,16155:23960458,4812305 +g1,16155:27572802,4812305 +g1,16155:29306229,4812305 +) +) +] +[1,16155:6630773,45706769:25952256,40108032,0 +(1,16155:6630773,45706769:25952256,40108032,0 +(1,16155:6630773,45706769:0,0,0 +g1,16155:6630773,45706769 +) +[1,16155:6630773,45706769:25952256,40108032,0 +(1,16097:6630773,6254097:25952256,505283,126483 +k1,16096:9004207,6254097:185842 +k1,16096:10584000,6254097:185842 +(1,16096:10584000,6254097:0,459977,115847 +r1,16155:14107672,6254097:3523672,575824,115847 +k1,16096:10584000,6254097:-3523672 +) +(1,16096:10584000,6254097:3523672,459977,115847 +k1,16096:10584000,6254097:3277 +h1,16096:14104395,6254097:0,411205,112570 +) +k1,16096:14293515,6254097:185843 +k1,16096:15670802,6254097:185842 +k1,16096:17572377,6254097:185842 +k1,16096:18216316,6254097:185842 +k1,16096:18758018,6254097:185842 +k1,16096:21326749,6254097:185842 +k1,16096:23241432,6254097:185843 +k1,16096:24808118,6254097:185842 +k1,16096:28392657,6254097:185842 +k1,16096:32583029,6254097:0 +) +(1,16097:6630773,7119177:25952256,513147,126483 +g1,16096:7361499,7119177 +g1,16096:8936329,7119177 +g1,16096:11219603,7119177 +g1,16096:12143660,7119177 +g1,16096:12958927,7119177 +g1,16096:14850296,7119177 +g1,16096:18206394,7119177 +g1,16096:19794986,7119177 +g1,16096:22200812,7119177 +g1,16096:23591486,7119177 +g1,16096:25932432,7119177 +g1,16096:27123221,7119177 +g1,16096:28388721,7119177 +k1,16097:32583029,7119177:836899 +g1,16097:32583029,7119177 +) +(1,16099:6630773,7984257:25952256,513147,134348 +h1,16098:6630773,7984257:983040,0,0 +k1,16098:8975596,7984257:165096 +k1,16098:10695861,7984257:165096 +k1,16098:12052402,7984257:165096 +k1,16098:15002123,7984257:165096 +k1,16098:16451725,7984257:165096 +k1,16098:19196973,7984257:165096 +k1,16098:21524101,7984257:165096 +k1,16098:23980336,7984257:165096 +k1,16098:25073422,7984257:165096 +k1,16098:26930658,7984257:165096 +k1,16098:27755046,7984257:165096 +k1,16098:28939227,7984257:165096 +k1,16098:32583029,7984257:0 +) +(1,16099:6630773,8849337:25952256,513147,134348 +k1,16098:9585792,8849337:220202 +k1,16098:10567523,8849337:220203 +k1,16098:11806810,8849337:220202 +k1,16098:14115644,8849337:220202 +k1,16098:14995139,8849337:220203 +k1,16098:16649269,8849337:220202 +k1,16098:17284293,8849337:220181 +k1,16098:18893859,8849337:220203 +k1,16098:21320658,8849337:220202 +k1,16098:22153622,8849337:220202 +k1,16098:23392910,8849337:220203 +k1,16098:24928420,8849337:220202 +k1,16098:25807914,8849337:220202 +k1,16098:28600405,8849337:220203 +k1,16098:30512747,8849337:220202 +k1,16099:32583029,8849337:0 +) +(1,16099:6630773,9714417:25952256,513147,134348 +k1,16098:10208514,9714417:199360 +k1,16098:11590800,9714417:199361 +k1,16098:12441588,9714417:199360 +k1,16098:15302366,9714417:199361 +k1,16098:18965959,9714417:199360 +k1,16098:21249364,9714417:199360 +k1,16098:22396376,9714417:199361 +k1,16098:25219142,9714417:199360 +k1,16098:28806714,9714417:199361 +k1,16098:31325393,9714417:199360 +k1,16099:32583029,9714417:0 +) +(1,16099:6630773,10579497:25952256,513147,126483 +k1,16098:8306343,10579497:222637 +k1,16098:9548065,10579497:222637 +k1,16098:12363306,10579497:222637 +k1,16098:13245234,10579497:222636 +k1,16098:16781371,10579497:222637 +k1,16098:17663300,10579497:222637 +k1,16098:19441106,10579497:222637 +(1,16098:19441106,10579497:0,452978,115847 +r1,16155:20854507,10579497:1413401,568825,115847 +k1,16098:19441106,10579497:-1413401 +) +(1,16098:19441106,10579497:1413401,452978,115847 +k1,16098:19441106,10579497:3277 +h1,16098:20851230,10579497:0,411205,112570 +) +k1,16098:21077144,10579497:222637 +k1,16098:22491226,10579497:222637 +k1,16098:25068571,10579497:222636 +k1,16098:27817621,10579497:222637 +k1,16098:28987909,10579497:222637 +k1,16098:31923737,10579497:222637 +k1,16098:32583029,10579497:0 +) +(1,16099:6630773,11444577:25952256,513147,134348 +k1,16098:8378919,11444577:192977 +(1,16098:8378919,11444577:0,452978,115847 +r1,16155:10495744,11444577:2116825,568825,115847 +k1,16098:8378919,11444577:-2116825 +) +(1,16098:8378919,11444577:2116825,452978,115847 +k1,16098:8378919,11444577:3277 +h1,16098:10492467,11444577:0,411205,112570 +) +k1,16098:10862392,11444577:192978 +k1,16098:13947473,11444577:192977 +k1,16098:14799743,11444577:192978 +k1,16098:18101748,11444577:192977 +k1,16098:18826222,11444577:192977 +k1,16098:20305016,11444577:192978 +k1,16098:23434006,11444577:192977 +k1,16098:25020934,11444577:192977 +k1,16098:26023282,11444577:192978 +k1,16098:27420155,11444577:192977 +k1,16098:29681449,11444577:192978 +k1,16098:31839851,11444577:192977 +k1,16098:32583029,11444577:0 +) +(1,16099:6630773,12309657:25952256,513147,7863 +k1,16098:9295109,12309657:225086 +k1,16098:11352582,12309657:225086 +k1,16098:12569229,12309657:225087 +k1,16098:14080131,12309657:225086 +k1,16098:17821879,12309657:225086 +k1,16098:18663003,12309657:225086 +k1,16098:21153669,12309657:225086 +k1,16098:24553319,12309657:225086 +k1,16098:25437698,12309657:225087 +k1,16098:27129480,12309657:225086 +k1,16098:31391584,12309657:225086 +k1,16098:32583029,12309657:0 +) +(1,16099:6630773,13174737:25952256,505283,7863 +k1,16099:32583030,13174737:23115204 +g1,16099:32583030,13174737 +) +(1,16101:6630773,14039817:25952256,513147,134348 +h1,16100:6630773,14039817:983040,0,0 +k1,16100:10836470,14039817:135911 +k1,16100:13134414,14039817:135911 +k1,16100:13886363,14039817:135911 +k1,16100:15506010,14039817:135912 +(1,16100:15506010,14039817:0,452978,115847 +r1,16155:16567699,14039817:1061689,568825,115847 +k1,16100:15506010,14039817:-1061689 +) +(1,16100:15506010,14039817:1061689,452978,115847 +k1,16100:15506010,14039817:3277 +h1,16100:16564422,14039817:0,411205,112570 +) +k1,16100:16703610,14039817:135911 +k1,16100:17970672,14039817:135911 +k1,16100:18836654,14039817:135911 +k1,16100:21084135,14039817:135911 +k1,16100:21906863,14039817:135911 +k1,16100:25449336,14039817:135912 +k1,16100:26184901,14039817:135911 +k1,16100:29206362,14039817:135911 +k1,16100:30619570,14039817:135911 +k1,16100:32583029,14039817:0 +) +(1,16101:6630773,14904897:25952256,513147,134348 +k1,16100:8337113,14904897:278310 +k1,16100:10817432,14904897:278309 +k1,16100:11782559,14904897:278310 +k1,16100:13881458,14904897:278309 +k1,16100:15773264,14904897:278310 +k1,16100:18937123,14904897:278309 +k1,16100:20261388,14904897:278310 +k1,16100:21552884,14904897:278309 +k1,16100:25467131,14904897:278310 +k1,16100:26345094,14904897:278309 +k1,16100:28192991,14904897:278310 +k1,16100:31219880,14904897:278309 +k1,16100:32583029,14904897:0 +) +(1,16101:6630773,15769977:25952256,513147,126483 +g1,16100:8850477,15769977 +g1,16100:9736523,15769977 +g1,16100:10334211,15769977 +g1,16100:12304223,15769977 +g1,16100:13119490,15769977 +g1,16100:14304380,15769977 +g1,16100:17908860,15769977 +g1,16100:18711020,15769977 +g1,16100:20943176,15769977 +g1,16100:21758443,15769977 +g1,16100:23571168,15769977 +k1,16101:32583029,15769977:6301292 +g1,16101:32583029,15769977 +) +v1,16103:6630773,16635057:0,393216,0 +(1,16104:6630773,20583037:25952256,4341196,0 +g1,16104:6630773,20583037 +g1,16104:6237557,20583037 +r1,16155:6368629,20583037:131072,4341196,0 +g1,16104:6567858,20583037 +g1,16104:6764466,20583037 +[1,16104:6764466,20583037:25818563,4341196,0 +(1,16104:6764466,16996234:25818563,754393,260573 +(1,16103:6764466,16996234:0,754393,260573 +r1,16155:7856192,16996234:1091726,1014966,260573 +k1,16103:6764466,16996234:-1091726 +) +(1,16103:6764466,16996234:1091726,754393,260573 +) +k1,16103:8107551,16996234:251359 +k1,16103:8435231,16996234:327680 +k1,16103:9156484,16996234:251360 +k1,16103:9939340,16996234:251359 +k1,16103:11585305,16996234:251359 +k1,16103:12488092,16996234:251359 +k1,16103:14354259,16996234:251360 +k1,16103:16101805,16996234:251359 +k1,16103:17637670,16996234:251359 +k1,16103:19021491,16996234:251359 +k1,16103:20869308,16996234:251360 +k1,16103:23929540,16996234:251359 +k1,16103:25647595,16996234:251359 +k1,16103:27292906,16996234:251360 +k1,16103:28933628,16996234:251359 +k1,16103:31391584,16996234:251359 +k1,16103:32583029,16996234:0 +) +(1,16104:6764466,17861314:25818563,513147,134348 +k1,16103:9121856,17861314:215673 +k1,16103:10099057,17861314:215673 +k1,16103:13034474,17861314:215673 +k1,16103:16604280,17861314:215673 +k1,16103:18104459,17861314:215673 +k1,16103:20543112,17861314:215672 +k1,16103:24261029,17861314:215673 +k1,16103:27411404,17861314:215673 +k1,16103:29123264,17861314:215673 +k1,16103:30623443,17861314:215673 +k1,16103:31370613,17861314:215673 +k1,16104:32583029,17861314:0 +) +(1,16104:6764466,18726394:25818563,513147,134348 +k1,16103:9894517,18726394:264817 +k1,16103:12401976,18726394:264817 +k1,16103:15783685,18726394:264817 +k1,16103:16699930,18726394:264817 +k1,16103:17983832,18726394:264817 +k1,16103:18663426,18726394:264751 +k1,16103:21770539,18726394:264817 +k1,16103:23372290,18726394:264817 +k1,16103:24664056,18726394:264817 +k1,16103:25580301,18726394:264817 +k1,16103:27441575,18726394:264817 +k1,16103:28392554,18726394:264817 +k1,16103:31496391,18726394:264817 +k1,16103:32227169,18726394:264817 +k1,16103:32583029,18726394:0 +) +(1,16104:6764466,19591474:25818563,513147,126483 +k1,16103:8841255,19591474:265374 +k1,16103:9638126,19591474:265374 +k1,16103:11416726,19591474:265374 +k1,16103:12298139,19591474:265375 +k1,16103:14226161,19591474:265374 +k1,16103:15150827,19591474:265374 +k1,16103:15772061,19591474:265374 +k1,16103:17426798,19591474:265374 +k1,16103:19742138,19591474:265374 +k1,16103:21497801,19591474:265374 +k1,16103:24788973,19591474:265375 +k1,16103:27013873,19591474:265374 +k1,16103:27930675,19591474:265374 +k1,16103:29792506,19591474:265374 +k1,16103:32583029,19591474:0 +) +(1,16104:6764466,20456554:25818563,513147,126483 +g1,16103:8331432,20456554 +g1,16103:9997357,20456554 +g1,16103:12338303,20456554 +g1,16103:13728977,20456554 +g1,16103:15317569,20456554 +g1,16103:17723395,20456554 +g1,16103:19026906,20456554 +g1,16103:19973901,20456554 +g1,16103:21983234,20456554 +g1,16103:23827417,20456554 +g1,16103:24712808,20456554 +k1,16104:32583029,20456554:4282125 +g1,16104:32583029,20456554 +) +] +g1,16104:32583029,20583037 +) +h1,16104:6630773,20583037:0,0,0 +v1,16107:6630773,21448117:0,393216,0 +(1,16108:6630773,27081243:25952256,6026342,0 +g1,16108:6630773,27081243 +g1,16108:6237557,27081243 +r1,16155:6368629,27081243:131072,6026342,0 +g1,16108:6567858,27081243 +g1,16108:6764466,27081243 +[1,16108:6764466,27081243:25818563,6026342,0 +(1,16108:6764466,21756415:25818563,701514,196608 +(1,16107:6764466,21756415:0,701514,196608 +r1,16155:7761522,21756415:997056,898122,196608 +k1,16107:6764466,21756415:-997056 +) +(1,16107:6764466,21756415:997056,701514,196608 +) +k1,16107:7966982,21756415:205460 +k1,16107:8294662,21756415:327680 +k1,16107:9962231,21756415:205461 +k1,16107:10625788,21756415:205460 +k1,16107:11932253,21756415:205460 +k1,16107:13647663,21756415:205460 +k1,16107:16483084,21756415:205461 +k1,16107:17339972,21756415:205460 +k1,16107:19506269,21756415:205460 +k1,16107:21853446,21756415:205460 +k1,16107:22745069,21756415:205461 +k1,16107:25240357,21756415:205460 +k1,16107:26105109,21756415:205460 +k1,16107:26666429,21756415:205460 +k1,16107:28427059,21756415:205461 +k1,16107:31015408,21756415:205460 +k1,16108:32583029,21756415:0 +) +(1,16108:6764466,22621495:25818563,513147,126483 +(1,16107:6764466,22621495:0,459977,115847 +r1,16155:10288138,22621495:3523672,575824,115847 +k1,16107:6764466,22621495:-3523672 +) +(1,16107:6764466,22621495:3523672,459977,115847 +k1,16107:6764466,22621495:3277 +h1,16107:10284861,22621495:0,411205,112570 +) +k1,16107:10509448,22621495:221310 +k1,16107:12962259,22621495:221310 +k1,16107:14340279,22621495:221310 +k1,16107:15220880,22621495:221309 +k1,16107:16461275,22621495:221310 +k1,16107:20081282,22621495:221310 +k1,16107:20961884,22621495:221310 +k1,16107:22202279,22621495:221310 +k1,16107:24548266,22621495:221310 +k1,16107:29826333,22621495:221309 +k1,16107:30706935,22621495:221310 +k1,16107:31681909,22621495:221310 +k1,16108:32583029,22621495:0 +) +(1,16108:6764466,23486575:25818563,513147,134348 +k1,16107:8141378,23486575:212337 +k1,16107:10586526,23486575:212336 +k1,16107:11414901,23486575:212337 +k1,16107:12215750,23486575:212336 +k1,16107:15231717,23486575:212337 +k1,16107:16647295,23486575:212337 +k1,16107:17391128,23486575:212336 +k1,16107:21427491,23486575:212337 +k1,16107:24169517,23486575:212336 +k1,16107:25400939,23486575:212337 +k1,16107:28215710,23486575:212336 +k1,16107:29087339,23486575:212337 +k1,16108:32583029,23486575:0 +) +(1,16108:6764466,24351655:25818563,513147,126483 +k1,16107:7793545,24351655:209879 +k1,16107:10443329,24351655:209879 +k1,16107:11269247,24351655:209880 +k1,16107:11834986,24351655:209879 +k1,16107:14427754,24351655:209879 +k1,16107:16192802,24351655:209879 +k1,16107:16934178,24351655:209879 +k1,16107:18210328,24351655:209879 +k1,16107:20549473,24351655:209880 +k1,16107:23426667,24351655:209879 +k1,16107:24538977,24351655:209879 +k1,16107:29321958,24351655:209879 +k1,16107:32583029,24351655:0 +) +(1,16108:6764466,25216735:25818563,513147,134348 +k1,16107:9420759,25216735:201970 +k1,16107:12479443,25216735:201970 +k1,16107:13629064,25216735:201970 +k1,16107:15220397,25216735:201970 +k1,16107:17628964,25216735:201970 +k1,16107:18963397,25216735:201971 +k1,16107:20231638,25216735:201970 +k1,16107:23948959,25216735:201970 +k1,16107:25747386,25216735:201970 +k1,16107:28758229,25216735:201970 +k1,16107:30354150,25216735:201970 +k1,16107:32583029,25216735:0 +) +(1,16108:6764466,26081815:25818563,513147,126483 +k1,16107:8036801,26081815:200166 +k1,16107:8853004,26081815:200165 +k1,16107:10072255,26081815:200166 +k1,16107:12802111,26081815:200166 +k1,16107:13661569,26081815:200166 +k1,16107:14217594,26081815:200165 +k1,16107:17911484,26081815:200166 +k1,16107:20565973,26081815:200166 +k1,16107:21713789,26081815:200165 +k1,16107:24055672,26081815:200166 +k1,16107:24713935,26081815:200166 +k1,16107:26046563,26081815:200166 +k1,16107:26994494,26081815:200165 +k1,16107:28707886,26081815:200166 +k1,16107:32583029,26081815:0 +) +(1,16108:6764466,26946895:25818563,505283,134348 +g1,16107:8635519,26946895 +g1,16107:9853833,26946895 +g1,16107:12359929,26946895 +g1,16107:15013481,26946895 +g1,16107:15744207,26946895 +g1,16107:17811212,26946895 +g1,16107:19404392,26946895 +g1,16107:19959481,26946895 +g1,16107:21970125,26946895 +g1,16107:22855516,26946895 +k1,16108:32583029,26946895:6602757 +g1,16108:32583029,26946895 +) +] +g1,16108:32583029,27081243 +) +h1,16108:6630773,27081243:0,0,0 +v1,16111:6630773,27946323:0,393216,0 +(1,16138:6630773,40432513:25952256,12879406,0 +g1,16138:6630773,40432513 +g1,16138:6237557,40432513 +r1,16155:6368629,40432513:131072,12879406,0 +g1,16138:6567858,40432513 +g1,16138:6764466,40432513 +[1,16138:6764466,40432513:25818563,12879406,0 +(1,16112:6764466,28307500:25818563,754393,260573 +(1,16111:6764466,28307500:0,754393,260573 +r1,16155:7856192,28307500:1091726,1014966,260573 +k1,16111:6764466,28307500:-1091726 +) +(1,16111:6764466,28307500:1091726,754393,260573 +) +k1,16111:8038132,28307500:181940 +k1,16111:8365812,28307500:327680 +k1,16111:9819150,28307500:181940 +k1,16111:12181472,28307500:181939 +k1,16111:13111178,28307500:181940 +k1,16111:15161549,28307500:181940 +k1,16111:16627995,28307500:181940 +k1,16111:19641090,28307500:181940 +k1,16111:20842115,28307500:181940 +k1,16111:24730770,28307500:181939 +(1,16111:24730770,28307500:0,452978,115847 +r1,16155:27551019,28307500:2820249,568825,115847 +k1,16111:24730770,28307500:-2820249 +) +(1,16111:24730770,28307500:2820249,452978,115847 +k1,16111:24730770,28307500:3277 +h1,16111:27547742,28307500:0,411205,112570 +) +k1,16111:27732959,28307500:181940 +k1,16111:29106344,28307500:181940 +k1,16111:32583029,28307500:0 +) +(1,16112:6764466,29172580:25818563,513147,115847 +k1,16111:9724796,29172580:264834 +(1,16111:9724796,29172580:0,452978,115847 +r1,16155:13600180,29172580:3875384,568825,115847 +k1,16111:9724796,29172580:-3875384 +) +(1,16111:9724796,29172580:3875384,452978,115847 +k1,16111:9724796,29172580:3277 +h1,16111:13596903,29172580:0,411205,112570 +) +k1,16111:14038683,29172580:264833 +k1,16111:14989679,29172580:264834 +k1,16111:16533119,29172580:264833 +k1,16111:17484115,29172580:264834 +k1,16111:18768034,29172580:264834 +k1,16111:20224312,29172580:264833 +(1,16111:20224312,29172580:0,452978,115847 +r1,16155:24099696,29172580:3875384,568825,115847 +k1,16111:20224312,29172580:-3875384 +) +(1,16111:20224312,29172580:3875384,452978,115847 +k1,16111:20224312,29172580:3277 +h1,16111:24096419,29172580:0,411205,112570 +) +k1,16111:24364530,29172580:264834 +k1,16111:25721848,29172580:264833 +k1,16111:27005767,29172580:264834 +k1,16111:29008615,29172580:264833 +(1,16111:29008615,29172580:0,452978,115847 +r1,16155:31125440,29172580:2116825,568825,115847 +k1,16111:29008615,29172580:-2116825 +) +(1,16111:29008615,29172580:2116825,452978,115847 +k1,16111:29008615,29172580:3277 +h1,16111:31122163,29172580:0,411205,112570 +) +k1,16111:31563944,29172580:264834 +k1,16111:32583029,29172580:0 +) +(1,16112:6764466,30037660:25818563,505283,115847 +k1,16111:8519472,30037660:199837 +k1,16111:11498037,30037660:199838 +k1,16111:12229371,30037660:199837 +k1,16111:14587965,30037660:199838 +(1,16111:14587965,30037660:0,452978,115847 +r1,16155:15649654,30037660:1061689,568825,115847 +k1,16111:14587965,30037660:-1061689 +) +(1,16111:14587965,30037660:1061689,452978,115847 +k1,16111:14587965,30037660:3277 +h1,16111:15646377,30037660:0,411205,112570 +) +k1,16111:16023161,30037660:199837 +k1,16111:17603843,30037660:199838 +k1,16111:18335177,30037660:199837 +k1,16111:22431786,30037660:199838 +k1,16111:24025574,30037660:199837 +k1,16111:25659340,30037660:199838 +k1,16111:26274020,30037660:199837 +k1,16111:30507598,30037660:199837 +k1,16111:31393598,30037660:199838 +k1,16111:32051532,30037660:199837 +k1,16111:32583029,30037660:0 +) +(1,16112:6764466,30902740:25818563,513147,7863 +g1,16111:7982780,30902740 +g1,16111:9274494,30902740 +g1,16111:10133015,30902740 +g1,16111:11102947,30902740 +g1,16111:14882408,30902740 +g1,16111:17408820,30902740 +g1,16111:18267341,30902740 +g1,16111:18822430,30902740 +g1,16111:20093828,30902740 +g1,16111:20909095,30902740 +g1,16111:22127409,30902740 +g1,16111:24064653,30902740 +g1,16111:24923174,30902740 +g1,16111:26819130,30902740 +k1,16112:32583029,30902740:2926846 +g1,16112:32583029,30902740 +) +v1,16114:6764466,31587595:0,393216,0 +(1,16134:6764466,36659738:25818563,5465359,196608 +g1,16134:6764466,36659738 +g1,16134:6764466,36659738 +g1,16134:6567858,36659738 +(1,16134:6567858,36659738:0,5465359,196608 +r1,16155:32779637,36659738:26211779,5661967,196608 +k1,16134:6567857,36659738:-26211780 +) +(1,16134:6567858,36659738:26211779,5465359,196608 +[1,16134:6764466,36659738:25818563,5268751,0 +(1,16116:6764466,31815426:25818563,424439,106246 +(1,16115:6764466,31815426:0,0,0 +g1,16115:6764466,31815426 +g1,16115:6764466,31815426 +g1,16115:6436786,31815426 +(1,16115:6436786,31815426:0,0,0 +) +g1,16115:6764466,31815426 +) +g1,16116:8756190,31815426 +g1,16116:9752052,31815426 +g1,16116:14731362,31815426 +g1,16116:15395270,31815426 +h1,16116:16723086,31815426:0,0,0 +k1,16116:32583029,31815426:15859943 +g1,16116:32583029,31815426 +) +(1,16117:6764466,32500281:25818563,424439,106246 +h1,16117:6764466,32500281:0,0,0 +k1,16117:6764466,32500281:0 +h1,16117:12075729,32500281:0,0,0 +k1,16117:32583029,32500281:20507300 +g1,16117:32583029,32500281 +) +(1,16121:6764466,33316208:25818563,424439,79822 +(1,16119:6764466,33316208:0,0,0 +g1,16119:6764466,33316208 +g1,16119:6764466,33316208 +g1,16119:6436786,33316208 +(1,16119:6436786,33316208:0,0,0 +) +g1,16119:6764466,33316208 +) +g1,16121:7760328,33316208 +g1,16121:9088144,33316208 +h1,16121:10415960,33316208:0,0,0 +k1,16121:32583028,33316208:22167068 +g1,16121:32583028,33316208 +) +(1,16123:6764466,34132135:25818563,424439,106246 +(1,16122:6764466,34132135:0,0,0 +g1,16122:6764466,34132135 +g1,16122:6764466,34132135 +g1,16122:6436786,34132135 +(1,16122:6436786,34132135:0,0,0 +) +g1,16122:6764466,34132135 +) +k1,16123:6764466,34132135:0 +g1,16123:12075729,34132135 +h1,16123:15063314,34132135:0,0,0 +k1,16123:32583030,34132135:17519716 +g1,16123:32583030,34132135 +) +(1,16127:6764466,34948062:25818563,424439,79822 +(1,16125:6764466,34948062:0,0,0 +g1,16125:6764466,34948062 +g1,16125:6764466,34948062 +g1,16125:6436786,34948062 +(1,16125:6436786,34948062:0,0,0 +) +g1,16125:6764466,34948062 +) +g1,16127:7760328,34948062 +g1,16127:9088144,34948062 +h1,16127:10747914,34948062:0,0,0 +k1,16127:32583030,34948062:21835116 +g1,16127:32583030,34948062 +) +(1,16129:6764466,35763989:25818563,424439,106246 +(1,16128:6764466,35763989:0,0,0 +g1,16128:6764466,35763989 +g1,16128:6764466,35763989 +g1,16128:6436786,35763989 +(1,16128:6436786,35763989:0,0,0 +) +g1,16128:6764466,35763989 +) +k1,16129:6764466,35763989:0 +h1,16129:10747914,35763989:0,0,0 +k1,16129:32583030,35763989:21835116 +g1,16129:32583030,35763989 +) +(1,16133:6764466,36579916:25818563,431045,79822 +(1,16131:6764466,36579916:0,0,0 +g1,16131:6764466,36579916 +g1,16131:6764466,36579916 +g1,16131:6436786,36579916 +(1,16131:6436786,36579916:0,0,0 +) +g1,16131:6764466,36579916 +) +g1,16133:7760328,36579916 +g1,16133:9088144,36579916 +g1,16133:12075729,36579916 +g1,16133:12407683,36579916 +g1,16133:12739637,36579916 +g1,16133:13071591,36579916 +g1,16133:13403545,36579916 +g1,16133:15395269,36579916 +g1,16133:15727223,36579916 +g1,16133:16059177,36579916 +g1,16133:16391131,36579916 +g1,16133:16723085,36579916 +g1,16133:17055039,36579916 +g1,16133:17386993,36579916 +g1,16133:17718947,36579916 +h1,16133:21702394,36579916:0,0,0 +k1,16133:32583029,36579916:10880635 +g1,16133:32583029,36579916 +) +] +) +g1,16134:32583029,36659738 +g1,16134:6764466,36659738 +g1,16134:6764466,36659738 +g1,16134:32583029,36659738 +g1,16134:32583029,36659738 +) +h1,16134:6764466,36856346:0,0,0 +(1,16138:6764466,37721426:25818563,513147,134348 +h1,16137:6764466,37721426:983040,0,0 +k1,16137:12232790,37721426:291635 +k1,16137:13175853,37721426:291635 +k1,16137:15993901,37721426:291635 +k1,16137:18427253,37721426:291635 +k1,16137:20573557,37721426:291635 +k1,16137:21674562,37721426:291635 +k1,16137:24728540,37721426:291635 +k1,16137:28462781,37721426:291635 +k1,16137:30143779,37721426:291635 +k1,16137:32583029,37721426:0 +) +(1,16138:6764466,38586506:25818563,513147,134348 +k1,16137:8452740,38586506:194708 +k1,16137:9333609,38586506:194707 +(1,16137:9333609,38586506:0,452978,115847 +r1,16155:12857281,38586506:3523672,568825,115847 +k1,16137:9333609,38586506:-3523672 +) +(1,16137:9333609,38586506:3523672,452978,115847 +k1,16137:9333609,38586506:3277 +h1,16137:12854004,38586506:0,411205,112570 +) +k1,16137:13051989,38586506:194708 +k1,16137:15536524,38586506:194707 +k1,16137:16414117,38586506:194708 +k1,16137:19936088,38586506:194708 +k1,16137:20486655,38586506:194707 +k1,16137:22956773,38586506:194708 +k1,16137:25534370,38586506:194708 +k1,16137:27284246,38586506:194707 +k1,16137:28010451,38586506:194708 +k1,16137:30677176,38586506:194707 +k1,16137:31499719,38586506:194708 +k1,16137:32583029,38586506:0 +) +(1,16138:6764466,39451586:25818563,505283,134348 +k1,16137:9788095,39451586:188542 +k1,16137:10662799,39451586:188542 +k1,16137:11949069,39451586:188542 +k1,16137:13949025,39451586:188541 +k1,16137:15238572,39451586:188542 +k1,16137:16197817,39451586:188542 +k1,16137:19828965,39451586:188542 +(1,16137:19828965,39451586:0,459977,115847 +r1,16155:23352637,39451586:3523672,575824,115847 +k1,16137:19828965,39451586:-3523672 +) +(1,16137:19828965,39451586:3523672,459977,115847 +k1,16137:19828965,39451586:3277 +h1,16137:23349360,39451586:0,411205,112570 +) +k1,16137:23541179,39451586:188542 +k1,16137:25458560,39451586:188541 +k1,16137:26666187,39451586:188542 +k1,16137:28456429,39451586:188542 +k1,16137:31027860,39451586:188542 +k1,16137:32583029,39451586:0 +) +(1,16138:6764466,40316666:25818563,513147,115847 +g1,16137:7630851,40316666 +(1,16137:7630851,40316666:0,452978,115847 +r1,16155:9395964,40316666:1765113,568825,115847 +k1,16137:7630851,40316666:-1765113 +) +(1,16137:7630851,40316666:1765113,452978,115847 +k1,16137:7630851,40316666:3277 +h1,16137:9392687,40316666:0,411205,112570 +) +g1,16137:9595193,40316666 +g1,16137:10325919,40316666 +(1,16137:10325919,40316666:0,459977,115847 +r1,16155:12442744,40316666:2116825,575824,115847 +k1,16137:10325919,40316666:-2116825 +) +(1,16137:10325919,40316666:2116825,459977,115847 +k1,16137:10325919,40316666:3277 +h1,16137:12439467,40316666:0,411205,112570 +) +k1,16138:32583028,40316666:20087856 +g1,16138:32583028,40316666 +) +] +g1,16138:32583029,40432513 +) +h1,16138:6630773,40432513:0,0,0 +(1,16141:6630773,41297593:25952256,513147,126483 +h1,16140:6630773,41297593:983040,0,0 +k1,16140:10628641,41297593:224960 +(1,16140:10628641,41297593:0,452978,115847 +r1,16155:15559161,41297593:4930520,568825,115847 +k1,16140:10628641,41297593:-4930520 +) +(1,16140:10628641,41297593:4930520,452978,115847 +k1,16140:10628641,41297593:3277 +h1,16140:15555884,41297593:0,411205,112570 +) +k1,16140:15957792,41297593:224961 +k1,16140:18564330,41297593:224960 +k1,16140:20831393,41297593:224961 +k1,16140:23977948,41297593:224960 +k1,16140:26529436,41297593:224960 +k1,16140:27773482,41297593:224961 +k1,16140:29553611,41297593:224960 +k1,16140:30437864,41297593:224961 +k1,16140:31681909,41297593:224960 +k1,16141:32583029,41297593:0 +) +(1,16141:6630773,42162673:25952256,513147,134348 +k1,16140:8005920,42162673:210572 +k1,16140:10421779,42162673:210572 +k1,16140:11318513,42162673:210572 +k1,16140:12299788,42162673:210572 +k1,16140:15582688,42162673:210572 +k1,16140:16984705,42162673:210572 +k1,16140:17854569,42162673:210572 +k1,16140:18853539,42162673:210572 +k1,16140:22017819,42162673:210572 +k1,16140:24227895,42162673:210572 +k1,16140:27464264,42162673:210572 +k1,16140:28666396,42162673:210572 +k1,16140:31966991,42162673:210572 +k1,16140:32583029,42162673:0 +) +(1,16141:6630773,43027753:25952256,505283,134348 +g1,16140:9108689,43027753 +h1,16140:10079277,43027753:0,0,0 +g1,16140:10278506,43027753 +g1,16140:11287105,43027753 +g1,16140:12984487,43027753 +h1,16140:14179864,43027753:0,0,0 +k1,16141:32583030,43027753:18143644 +g1,16141:32583030,43027753 +) +v1,16143:6630773,43712608:0,393216,0 +(1,16155:6630773,45423001:25952256,2103609,196608 +g1,16155:6630773,45423001 +g1,16155:6630773,45423001 +g1,16155:6434165,45423001 +(1,16155:6434165,45423001:0,2103609,196608 +r1,16155:32779637,45423001:26345472,2300217,196608 +k1,16155:6434165,45423001:-26345472 +) +(1,16155:6434165,45423001:26345472,2103609,196608 +[1,16155:6630773,45423001:25952256,1907001,0 +(1,16145:6630773,43947045:25952256,431045,79822 +(1,16144:6630773,43947045:0,0,0 +g1,16144:6630773,43947045 +g1,16144:6630773,43947045 +g1,16144:6303093,43947045 +(1,16144:6303093,43947045:0,0,0 +) +g1,16144:6630773,43947045 +) +g1,16145:10946174,43947045 +g1,16145:11942036,43947045 +g1,16145:15925483,43947045 +h1,16145:16257437,43947045:0,0,0 +k1,16145:32583029,43947045:16325592 +g1,16145:32583029,43947045 +) +(1,16146:6630773,44631900:25952256,424439,79822 +h1,16146:6630773,44631900:0,0,0 +g1,16146:6962727,44631900 +g1,16146:7294681,44631900 +k1,16146:7294681,44631900:0 +h1,16146:8622497,44631900:0,0,0 +k1,16146:32583029,44631900:23960532 +g1,16146:32583029,44631900 +) +(1,16147:6630773,45316755:25952256,424439,106246 +h1,16147:6630773,45316755:0,0,0 +g1,16147:6962727,45316755 +g1,16147:7294681,45316755 +g1,16147:7626635,45316755 +g1,16147:7958589,45316755 +k1,16147:7958589,45316755:0 +h1,16147:15925485,45316755:0,0,0 +k1,16147:32583029,45316755:16657544 +g1,16147:32583029,45316755 +) +] +) +g1,16155:32583029,45423001 +g1,16155:6630773,45423001 +g1,16155:6630773,45423001 +g1,16155:32583029,45423001 +g1,16155:32583029,45423001 +) +] +(1,16155:32583029,45706769:0,0,0 +g1,16155:32583029,45706769 +) +) +] +(1,16155:6630773,47279633:25952256,0,0 +h1,16155:6630773,47279633:25952256,0,0 +) +] +(1,16155:4262630,4025873:0,0,0 +[1,16155:-473656,4025873:0,0,0 +(1,16155:-473656,-710413:0,0,0 +(1,16155:-473656,-710413:0,0,0 +g1,16155:-473656,-710413 +) +g1,16155:-473656,-710413 ) ] ) ] !30152 -}263 -Input:2717:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2718:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2719:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2720:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}264 Input:2721:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2722:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2723:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -283752,1061 +283956,1061 @@ Input:2724:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2725:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2727:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2729:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2730:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2731:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{264 -[1,16251:4262630,47279633:28320399,43253760,0 -(1,16251:4262630,4025873:0,0,0 -[1,16251:-473656,4025873:0,0,0 -(1,16251:-473656,-710413:0,0,0 -(1,16251:-473656,-644877:0,0,0 -k1,16251:-473656,-644877:-65536 +{265 +[1,16249:4262630,47279633:28320399,43253760,0 +(1,16249:4262630,4025873:0,0,0 +[1,16249:-473656,4025873:0,0,0 +(1,16249:-473656,-710413:0,0,0 +(1,16249:-473656,-644877:0,0,0 +k1,16249:-473656,-644877:-65536 ) -(1,16251:-473656,4736287:0,0,0 -k1,16251:-473656,4736287:5209943 +(1,16249:-473656,4736287:0,0,0 +k1,16249:-473656,4736287:5209943 ) -g1,16251:-473656,-710413 +g1,16249:-473656,-710413 ) ] ) -[1,16251:6630773,47279633:25952256,43253760,0 -[1,16251:6630773,4812305:25952256,786432,0 -(1,16251:6630773,4812305:25952256,538806,132808 -(1,16251:6630773,4812305:25952256,538806,132808 -g1,16251:3078558,4812305 -[1,16251:3078558,4812305:0,0,0 -(1,16251:3078558,2439708:0,1703936,0 -k1,16251:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16251:2537886,2439708:1179648,16384,0 +[1,16249:6630773,47279633:25952256,43253760,0 +[1,16249:6630773,4812305:25952256,786432,0 +(1,16249:6630773,4812305:25952256,538806,132808 +(1,16249:6630773,4812305:25952256,538806,132808 +g1,16249:3078558,4812305 +[1,16249:3078558,4812305:0,0,0 +(1,16249:3078558,2439708:0,1703936,0 +k1,16249:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16249:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16251:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16249:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16251:3078558,4812305:0,0,0 -(1,16251:3078558,2439708:0,1703936,0 -g1,16251:29030814,2439708 -g1,16251:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16251:36151628,1915420:16384,1179648,0 +[1,16249:3078558,4812305:0,0,0 +(1,16249:3078558,2439708:0,1703936,0 +g1,16249:29030814,2439708 +g1,16249:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16249:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16251:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16249:37855564,2439708:1179648,16384,0 ) ) -k1,16251:3078556,2439708:-34777008 +k1,16249:3078556,2439708:-34777008 ) ] -[1,16251:3078558,4812305:0,0,0 -(1,16251:3078558,49800853:0,16384,2228224 -k1,16251:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16251:2537886,49800853:1179648,16384,0 +[1,16249:3078558,4812305:0,0,0 +(1,16249:3078558,49800853:0,16384,2228224 +k1,16249:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16249:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16251:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16249:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 -) -] -) -) -) -] -[1,16251:3078558,4812305:0,0,0 -(1,16251:3078558,49800853:0,16384,2228224 -g1,16251:29030814,49800853 -g1,16251:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16251:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16251:37855564,49800853:1179648,16384,0 -) -) -k1,16251:3078556,49800853:-34777008 -) -] -g1,16251:6630773,4812305 -g1,16251:6630773,4812305 -g1,16251:11156689,4812305 -g1,16251:12279976,4812305 -g1,16251:16628629,4812305 -k1,16251:31387652,4812305:14759023 -) -) -] -[1,16251:6630773,45706769:25952256,40108032,0 -(1,16251:6630773,45706769:25952256,40108032,0 -(1,16251:6630773,45706769:0,0,0 -g1,16251:6630773,45706769 -) -[1,16251:6630773,45706769:25952256,40108032,0 -v1,16157:6630773,6254097:0,393216,0 -(1,16157:6630773,9986025:25952256,4125144,196608 -g1,16157:6630773,9986025 -g1,16157:6630773,9986025 -g1,16157:6434165,9986025 -(1,16157:6434165,9986025:0,4125144,196608 -r1,16251:32779637,9986025:26345472,4321752,196608 -k1,16157:6434165,9986025:-26345472 -) -(1,16157:6434165,9986025:26345472,4125144,196608 -[1,16157:6630773,9986025:25952256,3928536,0 -(1,16150:6630773,6481928:25952256,424439,112852 -h1,16150:6630773,6481928:0,0,0 -g1,16150:6962727,6481928 -g1,16150:7294681,6481928 -g1,16150:7626635,6481928 -g1,16150:7958589,6481928 -k1,16150:7958589,6481928:0 -h1,16150:12937898,6481928:0,0,0 -k1,16150:32583030,6481928:19645132 -g1,16150:32583030,6481928 -) -(1,16151:6630773,7166783:25952256,424439,106246 -h1,16151:6630773,7166783:0,0,0 -g1,16151:6962727,7166783 -g1,16151:7294681,7166783 -g1,16151:7626635,7166783 -g1,16151:7958589,7166783 -k1,16151:7958589,7166783:0 -h1,16151:12937899,7166783:0,0,0 -k1,16151:32583029,7166783:19645130 -g1,16151:32583029,7166783 -) -(1,16152:6630773,7851638:25952256,424439,106246 -h1,16152:6630773,7851638:0,0,0 -g1,16152:6962727,7851638 -g1,16152:7294681,7851638 -g1,16152:7626635,7851638 -g1,16152:7958589,7851638 -g1,16152:8290543,7851638 -g1,16152:8622497,7851638 -g1,16152:8954451,7851638 -g1,16152:9286405,7851638 -g1,16152:9618359,7851638 -g1,16152:9950313,7851638 -g1,16152:13269853,7851638 -g1,16152:15925485,7851638 -g1,16152:18913070,7851638 -g1,16152:19576978,7851638 -g1,16152:20572840,7851638 -g1,16152:21568702,7851638 -g1,16152:22896518,7851638 -g1,16152:23560426,7851638 -g1,16152:24556288,7851638 -k1,16152:24556288,7851638:0 -h1,16152:25552150,7851638:0,0,0 -k1,16152:32583029,7851638:7030879 -g1,16152:32583029,7851638 -) -(1,16153:6630773,8536493:25952256,424439,106246 -h1,16153:6630773,8536493:0,0,0 -g1,16153:6962727,8536493 -g1,16153:7294681,8536493 -g1,16153:7626635,8536493 -g1,16153:7958589,8536493 -g1,16153:9286405,8536493 -g1,16153:9950313,8536493 -h1,16153:11610083,8536493:0,0,0 -k1,16153:32583029,8536493:20972946 -g1,16153:32583029,8536493 -) -(1,16154:6630773,9221348:25952256,424439,79822 -h1,16154:6630773,9221348:0,0,0 -g1,16154:6962727,9221348 -g1,16154:7294681,9221348 -g1,16154:7626635,9221348 -g1,16154:7958589,9221348 -h1,16154:8290543,9221348:0,0,0 -k1,16154:32583029,9221348:24292486 -g1,16154:32583029,9221348 -) -(1,16155:6630773,9906203:25952256,424439,79822 -h1,16155:6630773,9906203:0,0,0 -h1,16155:6962727,9906203:0,0,0 -k1,16155:32583029,9906203:25620302 -g1,16155:32583029,9906203 -) -] -) -g1,16157:32583029,9986025 -g1,16157:6630773,9986025 -g1,16157:6630773,9986025 -g1,16157:32583029,9986025 -g1,16157:32583029,9986025 -) -h1,16157:6630773,10182633:0,0,0 -(1,16161:6630773,11047713:25952256,513147,126483 -h1,16160:6630773,11047713:983040,0,0 -k1,16160:9174005,11047713:363505 -(1,16160:9174005,11047713:0,452978,115847 -r1,16251:11994254,11047713:2820249,568825,115847 -k1,16160:9174005,11047713:-2820249 -) -(1,16160:9174005,11047713:2820249,452978,115847 -k1,16160:9174005,11047713:3277 -h1,16160:11990977,11047713:0,411205,112570 -) -k1,16160:12357759,11047713:363505 -k1,16160:16427979,11047713:363504 -k1,16160:17553012,11047713:363505 -k1,16160:20182097,11047713:363505 -k1,16160:22038512,11047713:363505 -k1,16160:23468288,11047713:363505 -k1,16160:26224512,11047713:363505 -k1,16160:29562695,11047713:363504 -k1,16160:31315563,11047713:363505 -k1,16160:32583029,11047713:0 -) -(1,16161:6630773,11912793:25952256,513147,115847 -k1,16160:9201393,11912793:172658 -k1,16160:11063569,11912793:172658 -k1,16160:12255311,11912793:172657 -(1,16160:12255311,11912793:0,459977,115847 -r1,16251:16482407,11912793:4227096,575824,115847 -k1,16160:12255311,11912793:-4227096 -) -(1,16160:12255311,11912793:4227096,459977,115847 -k1,16160:12255311,11912793:3277 -h1,16160:16479130,11912793:0,411205,112570 -) -k1,16160:16655065,11912793:172658 -k1,16160:20534439,11912793:172658 -k1,16160:21749775,11912793:172658 -k1,16160:23965189,11912793:172657 -k1,16160:24552664,11912793:172632 -k1,16160:27059058,11912793:172657 -k1,16160:28948104,11912793:172658 -k1,16160:30317449,11912793:172658 -k1,16160:32583029,11912793:0 -) -(1,16161:6630773,12777873:25952256,505283,134348 -k1,16160:7954000,12777873:218945 -k1,16160:8920710,12777873:218944 -k1,16160:12620272,12777873:218945 -k1,16160:15397743,12777873:218945 -k1,16160:16387390,12777873:218944 -k1,16160:19678663,12777873:218945 -k1,16160:22102895,12777873:218945 -k1,16160:22973267,12777873:218944 -k1,16160:24888939,12777873:218945 -k1,16160:29318572,12777873:218945 -k1,16160:30728961,12777873:218944 -k1,16160:31563944,12777873:218945 -k1,16160:32583029,12777873:0 -) -(1,16161:6630773,13642953:25952256,513147,134348 -k1,16160:8232272,13642953:234418 -k1,16160:9133846,13642953:234418 -(1,16160:9133846,13642953:0,459977,115847 -r1,16251:13360942,13642953:4227096,575824,115847 -k1,16160:9133846,13642953:-4227096 -) -(1,16160:9133846,13642953:4227096,459977,115847 -k1,16160:9133846,13642953:3277 -h1,16160:13357665,13642953:0,411205,112570 -) -k1,16160:13595360,13642953:234418 -k1,16160:15115594,13642953:234418 -k1,16160:16111540,13642953:234418 -k1,16160:18527652,13642953:234418 -k1,16160:19532773,13642953:234418 -k1,16160:20181999,13642953:234383 -k1,16160:22672822,13642953:234418 -k1,16160:24288084,13642953:234418 -k1,16160:25805697,13642953:234418 -k1,16160:29214679,13642953:234418 -k1,16160:31931601,13642953:234418 -k1,16160:32583029,13642953:0 -) -(1,16161:6630773,14508033:25952256,513147,134348 -g1,16160:9525498,14508033 -(1,16160:9525498,14508033:0,452978,115847 -r1,16251:13752594,14508033:4227096,568825,115847 -k1,16160:9525498,14508033:-4227096 -) -(1,16160:9525498,14508033:4227096,452978,115847 -k1,16160:9525498,14508033:3277 -h1,16160:13749317,14508033:0,411205,112570 -) -g1,16160:13951823,14508033 -g1,16160:15342497,14508033 -g1,16160:16330124,14508033 -g1,16160:19502066,14508033 -g1,16160:20933372,14508033 -g1,16160:23411288,14508033 -h1,16160:24780335,14508033:0,0,0 -g1,16160:24979564,14508033 -g1,16160:25988163,14508033 -g1,16160:27685545,14508033 -h1,16160:28880922,14508033:0,0,0 -k1,16161:32583029,14508033:3442585 -g1,16161:32583029,14508033 -) -v1,16163:6630773,15192888:0,393216,0 -(1,16184:6630773,20989522:25952256,6189850,196608 -g1,16184:6630773,20989522 -g1,16184:6630773,20989522 -g1,16184:6434165,20989522 -(1,16184:6434165,20989522:0,6189850,196608 -r1,16251:32779637,20989522:26345472,6386458,196608 -k1,16184:6434165,20989522:-26345472 -) -(1,16184:6434165,20989522:26345472,6189850,196608 -[1,16184:6630773,20989522:25952256,5993242,0 -(1,16165:6630773,15427325:25952256,431045,112852 -(1,16164:6630773,15427325:0,0,0 -g1,16164:6630773,15427325 -g1,16164:6630773,15427325 -g1,16164:6303093,15427325 -(1,16164:6303093,15427325:0,0,0 -) -g1,16164:6630773,15427325 -) -k1,16165:8599821,15427325:309278 -k1,16165:9573008,15427325:309279 -k1,16165:15193549,15427325:309278 -k1,16165:15834781,15427325:309278 -k1,16165:18135784,15427325:309279 -k1,16165:19772878,15427325:309278 -k1,16165:21741926,15427325:309278 -k1,16165:24374883,15427325:309279 -k1,16165:25016115,15427325:309278 -k1,16165:26985163,15427325:309278 -k1,16165:29950073,15427325:309279 -k1,16165:30591305,15427325:309278 -h1,16165:32583029,15427325:0,0,0 -k1,16165:32583029,15427325:0 -k1,16165:32583029,15427325:0 -) -(1,16166:6630773,16112180:25952256,431045,106246 -h1,16166:6630773,16112180:0,0,0 -k1,16166:6630773,16112180:0 -h1,16166:13269852,16112180:0,0,0 -k1,16166:32583028,16112180:19313176 -g1,16166:32583028,16112180 -) -(1,16170:6630773,16928107:25952256,424439,79822 -(1,16168:6630773,16928107:0,0,0 -g1,16168:6630773,16928107 -g1,16168:6630773,16928107 -g1,16168:6303093,16928107 -(1,16168:6303093,16928107:0,0,0 -) -g1,16168:6630773,16928107 -) -g1,16170:7626635,16928107 -g1,16170:8954451,16928107 -h1,16170:10282267,16928107:0,0,0 -k1,16170:32583029,16928107:22300762 -g1,16170:32583029,16928107 -) -(1,16172:6630773,17744034:25952256,431045,106246 -(1,16171:6630773,17744034:0,0,0 -g1,16171:6630773,17744034 -g1,16171:6630773,17744034 -g1,16171:6303093,17744034 -(1,16171:6303093,17744034:0,0,0 -) -g1,16171:6630773,17744034 -) -k1,16172:6630773,17744034:0 -h1,16172:11942036,17744034:0,0,0 -k1,16172:32583028,17744034:20640992 -g1,16172:32583028,17744034 -) -(1,16176:6630773,18559961:25952256,424439,79822 -(1,16174:6630773,18559961:0,0,0 -g1,16174:6630773,18559961 -g1,16174:6630773,18559961 -g1,16174:6303093,18559961 -(1,16174:6303093,18559961:0,0,0 -) -g1,16174:6630773,18559961 -) -g1,16176:7626635,18559961 -g1,16176:8954451,18559961 -h1,16176:10614221,18559961:0,0,0 -k1,16176:32583029,18559961:21968808 -g1,16176:32583029,18559961 -) -(1,16178:6630773,19375888:25952256,431045,106246 -(1,16177:6630773,19375888:0,0,0 -g1,16177:6630773,19375888 -g1,16177:6630773,19375888 -g1,16177:6303093,19375888 -(1,16177:6303093,19375888:0,0,0 -) -g1,16177:6630773,19375888 -) -k1,16178:6630773,19375888:0 -h1,16178:12937898,19375888:0,0,0 -k1,16178:32583030,19375888:19645132 -g1,16178:32583030,19375888 -) -(1,16183:6630773,20191815:25952256,431045,112852 -(1,16180:6630773,20191815:0,0,0 -g1,16180:6630773,20191815 -g1,16180:6630773,20191815 -g1,16180:6303093,20191815 -(1,16180:6303093,20191815:0,0,0 -) -g1,16180:6630773,20191815 -) -g1,16183:7626635,20191815 -g1,16183:11278128,20191815 -h1,16183:14929621,20191815:0,0,0 -k1,16183:32583029,20191815:17653408 -g1,16183:32583029,20191815 -) -(1,16183:6630773,20876670:25952256,424439,112852 -h1,16183:6630773,20876670:0,0,0 -g1,16183:7626635,20876670 -g1,16183:9950313,20876670 -g1,16183:13601806,20876670 -g1,16183:16589391,20876670 -g1,16183:19576977,20876670 -g1,16183:22896516,20876670 -h1,16183:25220194,20876670:0,0,0 -k1,16183:32583029,20876670:7362835 -g1,16183:32583029,20876670 -) -] -) -g1,16184:32583029,20989522 -g1,16184:6630773,20989522 -g1,16184:6630773,20989522 -g1,16184:32583029,20989522 -g1,16184:32583029,20989522 -) -h1,16184:6630773,21186130:0,0,0 -(1,16188:6630773,22051210:25952256,513147,126483 -h1,16187:6630773,22051210:983040,0,0 -k1,16187:10150111,22051210:216979 -k1,16187:11532320,22051210:216979 -k1,16187:12432184,22051210:216979 -k1,16187:15145428,22051210:216978 -k1,16187:16013835,22051210:216979 -k1,16187:16978580,22051210:216979 -k1,16187:18427636,22051210:216979 -k1,16187:20880703,22051210:216979 -k1,16187:22487045,22051210:216979 -k1,16187:26248865,22051210:216978 -k1,16187:28116041,22051210:216979 -k1,16187:31027860,22051210:216979 -k1,16188:32583029,22051210:0 -) -(1,16188:6630773,22916290:25952256,513147,115847 -(1,16187:6630773,22916290:0,452978,115847 -r1,16251:8747598,22916290:2116825,568825,115847 -k1,16187:6630773,22916290:-2116825 -) -(1,16187:6630773,22916290:2116825,452978,115847 -k1,16187:6630773,22916290:3277 -h1,16187:8744321,22916290:0,411205,112570 -) -g1,16187:8946827,22916290 -g1,16187:9677553,22916290 -g1,16187:12259671,22916290 -g1,16187:14026521,22916290 -g1,16187:15780919,22916290 -(1,16187:15780919,22916290:0,459977,115847 -r1,16251:19304591,22916290:3523672,575824,115847 -k1,16187:15780919,22916290:-3523672 -) -(1,16187:15780919,22916290:3523672,459977,115847 -k1,16187:15780919,22916290:3277 -h1,16187:19301314,22916290:0,411205,112570 -) -g1,16187:19677490,22916290 -g1,16187:22811421,22916290 -g1,16187:24400013,22916290 -g1,16187:26805839,22916290 -g1,16187:27996628,22916290 -g1,16187:29262128,22916290 -k1,16188:32583029,22916290:1126756 -g1,16188:32583029,22916290 -) -v1,16190:6630773,23601145:0,393216,0 -(1,16211:6630773,29391173:25952256,6183244,196608 -g1,16211:6630773,29391173 -g1,16211:6630773,29391173 -g1,16211:6434165,29391173 -(1,16211:6434165,29391173:0,6183244,196608 -r1,16251:32779637,29391173:26345472,6379852,196608 -k1,16211:6434165,29391173:-26345472 -) -(1,16211:6434165,29391173:26345472,6183244,196608 -[1,16211:6630773,29391173:25952256,5986636,0 -(1,16192:6630773,23828976:25952256,424439,112852 -(1,16191:6630773,23828976:0,0,0 -g1,16191:6630773,23828976 -g1,16191:6630773,23828976 -g1,16191:6303093,23828976 -(1,16191:6303093,23828976:0,0,0 -) -g1,16191:6630773,23828976 -) -g1,16192:8622497,23828976 -g1,16192:9618359,23828976 -g1,16192:13933761,23828976 -g1,16192:14597669,23828976 -g1,16192:16921347,23828976 -g1,16192:18581117,23828976 -g1,16192:20572841,23828976 -g1,16192:23228473,23828976 -g1,16192:23892381,23828976 -g1,16192:25884105,23828976 -g1,16192:28871690,23828976 -g1,16192:29535598,23828976 -h1,16192:31527322,23828976:0,0,0 -k1,16192:32583029,23828976:1055707 -g1,16192:32583029,23828976 -) -(1,16193:6630773,24513831:25952256,431045,106246 -h1,16193:6630773,24513831:0,0,0 -k1,16193:6630773,24513831:0 -h1,16193:13269852,24513831:0,0,0 -k1,16193:32583028,24513831:19313176 -g1,16193:32583028,24513831 -) -(1,16197:6630773,25329758:25952256,424439,79822 -(1,16195:6630773,25329758:0,0,0 -g1,16195:6630773,25329758 -g1,16195:6630773,25329758 -g1,16195:6303093,25329758 -(1,16195:6303093,25329758:0,0,0 -) -g1,16195:6630773,25329758 -) -g1,16197:7626635,25329758 -g1,16197:8954451,25329758 -h1,16197:10282267,25329758:0,0,0 -k1,16197:32583029,25329758:22300762 -g1,16197:32583029,25329758 -) -(1,16199:6630773,26145685:25952256,424439,106246 -(1,16198:6630773,26145685:0,0,0 -g1,16198:6630773,26145685 -g1,16198:6630773,26145685 -g1,16198:6303093,26145685 -(1,16198:6303093,26145685:0,0,0 -) -g1,16198:6630773,26145685 -) -k1,16199:6630773,26145685:0 -h1,16199:11942036,26145685:0,0,0 -k1,16199:32583028,26145685:20640992 -g1,16199:32583028,26145685 -) -(1,16203:6630773,26961612:25952256,424439,79822 -(1,16201:6630773,26961612:0,0,0 -g1,16201:6630773,26961612 -g1,16201:6630773,26961612 -g1,16201:6303093,26961612 -(1,16201:6303093,26961612:0,0,0 -) -g1,16201:6630773,26961612 -) -g1,16203:7626635,26961612 -g1,16203:8954451,26961612 -h1,16203:10282267,26961612:0,0,0 -k1,16203:32583029,26961612:22300762 -g1,16203:32583029,26961612 -) -(1,16205:6630773,27777539:25952256,424439,106246 -(1,16204:6630773,27777539:0,0,0 -g1,16204:6630773,27777539 -g1,16204:6630773,27777539 -g1,16204:6303093,27777539 -(1,16204:6303093,27777539:0,0,0 -) -g1,16204:6630773,27777539 -) -k1,16205:6630773,27777539:0 -h1,16205:12937898,27777539:0,0,0 -k1,16205:32583030,27777539:19645132 -g1,16205:32583030,27777539 -) -(1,16210:6630773,28593466:25952256,431045,112852 -(1,16207:6630773,28593466:0,0,0 -g1,16207:6630773,28593466 -g1,16207:6630773,28593466 -g1,16207:6303093,28593466 -(1,16207:6303093,28593466:0,0,0 -) -g1,16207:6630773,28593466 -) -g1,16210:7626635,28593466 -g1,16210:9950313,28593466 -h1,16210:13601806,28593466:0,0,0 -k1,16210:32583030,28593466:18981224 -g1,16210:32583030,28593466 -) -(1,16210:6630773,29278321:25952256,424439,112852 -h1,16210:6630773,29278321:0,0,0 -g1,16210:7626635,29278321 -g1,16210:9950313,29278321 -g1,16210:13601806,29278321 -g1,16210:16589391,29278321 -g1,16210:19576977,29278321 -g1,16210:22896516,29278321 -h1,16210:25220194,29278321:0,0,0 -k1,16210:32583029,29278321:7362835 -g1,16210:32583029,29278321 -) -] -) -g1,16211:32583029,29391173 -g1,16211:6630773,29391173 -g1,16211:6630773,29391173 -g1,16211:32583029,29391173 -g1,16211:32583029,29391173 -) -h1,16211:6630773,29587781:0,0,0 -(1,16215:6630773,30452861:25952256,513147,115847 -h1,16214:6630773,30452861:983040,0,0 -k1,16214:9007637,30452861:197137 -(1,16214:9007637,30452861:0,452978,115847 -r1,16251:11476174,30452861:2468537,568825,115847 -k1,16214:9007637,30452861:-2468537 -) -(1,16214:9007637,30452861:2468537,452978,115847 -k1,16214:9007637,30452861:3277 -h1,16214:11472897,30452861:0,411205,112570 -) -k1,16214:11673312,30452861:197138 -k1,16214:14324772,30452861:197137 -k1,16214:15469561,30452861:197138 -k1,16214:17808415,30452861:197137 -k1,16214:20079112,30452861:197138 -k1,16214:21843870,30452861:197137 -k1,16214:23325513,30452861:197137 -k1,16214:24470302,30452861:197138 -k1,16214:26056802,30452861:197137 -k1,16214:28460537,30452861:197138 -k1,16214:29273712,30452861:197137 -k1,16214:30755356,30452861:197138 -k1,16214:31410590,30452861:197137 -k1,16215:32583029,30452861:0 -) -(1,16215:6630773,31317941:25952256,513147,126483 -k1,16214:8340161,31317941:286601 -k1,16214:8982621,31317941:286600 -k1,16214:11443707,31317941:286601 -k1,16214:13124259,31317941:286601 -k1,16214:14429944,31317941:286600 -k1,16214:15942724,31317941:286601 -k1,16214:17016980,31317941:286513 -k1,16214:19588821,31317941:286601 -k1,16214:22628588,31317941:286600 -k1,16214:23676717,31317941:286601 -k1,16214:24982403,31317941:286601 -k1,16214:28944262,31317941:286600 -k1,16214:31923737,31317941:286601 -k1,16214:32583029,31317941:0 -) -(1,16215:6630773,32183021:25952256,513147,102891 -k1,16214:8352051,32183021:187080 -$1,16214:8352051,32183021 -$1,16214:8920248,32183021 -k1,16214:9107328,32183021:187080 -k1,16214:11780189,32183021:187080 -k1,16214:12626561,32183021:187080 -k1,16214:15907596,32183021:187080 -k1,16214:17622320,32183021:187080 -k1,16214:19695527,32183021:187081 -k1,16214:21334229,32183021:187080 -k1,16214:23904198,32183021:187080 -k1,16214:25829293,32183021:187080 -k1,16214:26787076,32183021:187080 -k1,16214:30948259,32183021:187080 -k1,16214:31794631,32183021:187080 -k1,16214:32583029,32183021:0 -) -(1,16215:6630773,33048101:25952256,513147,134348 -k1,16214:8391959,33048101:206017 -k1,16214:9789421,33048101:206017 -k1,16214:12322621,33048101:206017 -k1,16214:13187930,33048101:206017 -k1,16214:15966235,33048101:206017 -k1,16214:16938368,33048101:206017 -k1,16214:18678584,33048101:206018 -k1,16214:20076046,33048101:206017 -k1,16214:23168924,33048101:206017 -k1,16214:23730801,33048101:206017 -k1,16214:26189290,33048101:206017 -k1,16214:28881088,33048101:206017 -k1,16214:29746397,33048101:206017 -k1,16214:31591469,33048101:206017 -k1,16214:32583029,33048101:0 -) -(1,16215:6630773,33913181:25952256,513147,134348 -k1,16214:10066497,33913181:198901 -k1,16214:10893234,33913181:198902 -k1,16214:13931811,33913181:198902 -k1,16214:17323626,33913181:198901 -k1,16214:19533173,33913181:198902 -k1,16214:20723634,33913181:198901 -k1,16214:24127901,33913181:198901 -k1,16214:25977000,33913181:198902 -k1,16214:29457290,33913181:198902 -k1,16214:30847636,33913181:198901 -k1,16214:32583029,33913181:0 -) -(1,16215:6630773,34778261:25952256,513147,134348 -g1,16214:8860963,34778261 -g1,16214:9711620,34778261 -g1,16214:12941889,34778261 -g1,16214:14088769,34778261 -g1,16214:17123085,34778261 -g1,16214:19977177,34778261 -g1,16214:22992488,34778261 -g1,16214:23807755,34778261 -k1,16215:32583029,34778261:7666405 -g1,16215:32583029,34778261 -) -v1,16217:6630773,35463116:0,393216,0 -(1,16238:6630773,43634082:25952256,8564182,196608 -g1,16238:6630773,43634082 -g1,16238:6630773,43634082 -g1,16238:6434165,43634082 -(1,16238:6434165,43634082:0,8564182,196608 -r1,16251:32779637,43634082:26345472,8760790,196608 -k1,16238:6434165,43634082:-26345472 -) -(1,16238:6434165,43634082:26345472,8564182,196608 -[1,16238:6630773,43634082:25952256,8367574,0 -(1,16219:6630773,35697553:25952256,431045,106246 -(1,16218:6630773,35697553:0,0,0 -g1,16218:6630773,35697553 -g1,16218:6630773,35697553 -g1,16218:6303093,35697553 -(1,16218:6303093,35697553:0,0,0 -) -g1,16218:6630773,35697553 -) -k1,16219:6630773,35697553:0 -h1,16219:10614221,35697553:0,0,0 -k1,16219:32583029,35697553:21968808 -g1,16219:32583029,35697553 -) -(1,16226:6630773,36513480:25952256,424439,112852 -(1,16221:6630773,36513480:0,0,0 -g1,16221:6630773,36513480 -g1,16221:6630773,36513480 -g1,16221:6303093,36513480 -(1,16221:6303093,36513480:0,0,0 -) -g1,16221:6630773,36513480 -) -g1,16226:7626635,36513480 -g1,16226:7958589,36513480 -g1,16226:8290543,36513480 -g1,16226:10282267,36513480 -g1,16226:12937899,36513480 -h1,16226:15593530,36513480:0,0,0 -k1,16226:32583030,36513480:16989500 -g1,16226:32583030,36513480 -) -(1,16226:6630773,37198335:25952256,407923,0 -h1,16226:6630773,37198335:0,0,0 -g1,16226:7626635,37198335 -g1,16226:8290543,37198335 -g1,16226:8622497,37198335 -g1,16226:8954451,37198335 -g1,16226:9286405,37198335 -g1,16226:9618359,37198335 -g1,16226:10282267,37198335 -g1,16226:10614221,37198335 -g1,16226:10946175,37198335 -g1,16226:11278129,37198335 -g1,16226:11610083,37198335 -g1,16226:11942037,37198335 -g1,16226:12937899,37198335 -g1,16226:13269853,37198335 -g1,16226:13601807,37198335 -g1,16226:13933761,37198335 -g1,16226:14265715,37198335 -g1,16226:14597669,37198335 -g1,16226:14929623,37198335 -g1,16226:15261577,37198335 -h1,16226:15593531,37198335:0,0,0 -k1,16226:32583029,37198335:16989498 -g1,16226:32583029,37198335 -) -(1,16226:6630773,37883190:25952256,407923,9908 -h1,16226:6630773,37883190:0,0,0 -g1,16226:7626635,37883190 -g1,16226:8290543,37883190 -g1,16226:8622497,37883190 -g1,16226:8954451,37883190 -g1,16226:9286405,37883190 -g1,16226:9618359,37883190 -g1,16226:10282267,37883190 -g1,16226:10614221,37883190 -g1,16226:10946175,37883190 -g1,16226:11278129,37883190 -g1,16226:11610083,37883190 -g1,16226:11942037,37883190 -g1,16226:12273991,37883190 -g1,16226:12937899,37883190 -g1,16226:13269853,37883190 -g1,16226:13601807,37883190 -g1,16226:13933761,37883190 -g1,16226:14265715,37883190 -g1,16226:14597669,37883190 -g1,16226:14929623,37883190 -g1,16226:15261577,37883190 -h1,16226:15593531,37883190:0,0,0 -k1,16226:32583029,37883190:16989498 -g1,16226:32583029,37883190 -) -(1,16226:6630773,38568045:25952256,407923,9908 -h1,16226:6630773,38568045:0,0,0 -g1,16226:7626635,38568045 -g1,16226:8290543,38568045 -g1,16226:8622497,38568045 -g1,16226:8954451,38568045 -g1,16226:9286405,38568045 -g1,16226:9618359,38568045 -g1,16226:10282267,38568045 -g1,16226:10614221,38568045 -g1,16226:10946175,38568045 -g1,16226:11278129,38568045 -g1,16226:11610083,38568045 -g1,16226:11942037,38568045 -g1,16226:12273991,38568045 -g1,16226:12937899,38568045 -g1,16226:13269853,38568045 -g1,16226:13601807,38568045 -g1,16226:13933761,38568045 -g1,16226:14265715,38568045 -g1,16226:14597669,38568045 -g1,16226:14929623,38568045 -g1,16226:15261577,38568045 -h1,16226:15593531,38568045:0,0,0 -k1,16226:32583029,38568045:16989498 -g1,16226:32583029,38568045 -) -(1,16228:6630773,39383972:25952256,424439,106246 -(1,16227:6630773,39383972:0,0,0 -g1,16227:6630773,39383972 -g1,16227:6630773,39383972 -g1,16227:6303093,39383972 -(1,16227:6303093,39383972:0,0,0 -) -g1,16227:6630773,39383972 -) -k1,16228:6630773,39383972:0 -h1,16228:10614221,39383972:0,0,0 -k1,16228:32583029,39383972:21968808 -g1,16228:32583029,39383972 -) -(1,16237:6630773,40199899:25952256,424439,9908 -(1,16230:6630773,40199899:0,0,0 -g1,16230:6630773,40199899 -g1,16230:6630773,40199899 -g1,16230:6303093,40199899 -(1,16230:6303093,40199899:0,0,0 -) -g1,16230:6630773,40199899 -) -g1,16237:7626635,40199899 -g1,16237:8290543,40199899 -g1,16237:8954451,40199899 -g1,16237:11610083,40199899 -g1,16237:12273991,40199899 -g1,16237:12937899,40199899 -h1,16237:13269853,40199899:0,0,0 -k1,16237:32583029,40199899:19313176 -g1,16237:32583029,40199899 -) -(1,16237:6630773,40884754:25952256,424439,112852 -h1,16237:6630773,40884754:0,0,0 -g1,16237:7626635,40884754 -g1,16237:7958589,40884754 -g1,16237:8290543,40884754 -g1,16237:10282267,40884754 -g1,16237:12937899,40884754 -h1,16237:15593530,40884754:0,0,0 -k1,16237:32583030,40884754:16989500 -g1,16237:32583030,40884754 -) -(1,16237:6630773,41569609:25952256,424439,6605 -h1,16237:6630773,41569609:0,0,0 -g1,16237:7626635,41569609 -g1,16237:7958589,41569609 -g1,16237:8290543,41569609 -g1,16237:10282267,41569609 -g1,16237:10614221,41569609 -g1,16237:10946175,41569609 -g1,16237:12937899,41569609 -g1,16237:13269853,41569609 -g1,16237:13601807,41569609 -g1,16237:13933761,41569609 -k1,16237:13933761,41569609:0 -h1,16237:15593531,41569609:0,0,0 -k1,16237:32583029,41569609:16989498 -g1,16237:32583029,41569609 -) -(1,16237:6630773,42254464:25952256,407923,0 -h1,16237:6630773,42254464:0,0,0 -g1,16237:7626635,42254464 -g1,16237:8290543,42254464 -g1,16237:8954451,42254464 -g1,16237:9286405,42254464 -g1,16237:9618359,42254464 -g1,16237:9950313,42254464 -g1,16237:10282267,42254464 -g1,16237:10614221,42254464 -g1,16237:10946175,42254464 -g1,16237:11278129,42254464 -g1,16237:11610083,42254464 -g1,16237:11942037,42254464 -g1,16237:12937899,42254464 -g1,16237:13269853,42254464 -g1,16237:13601807,42254464 -g1,16237:13933761,42254464 -g1,16237:14265715,42254464 -g1,16237:14597669,42254464 -g1,16237:14929623,42254464 -g1,16237:15261577,42254464 -h1,16237:15593531,42254464:0,0,0 -k1,16237:32583029,42254464:16989498 -g1,16237:32583029,42254464 -) -(1,16237:6630773,42939319:25952256,407923,9908 -h1,16237:6630773,42939319:0,0,0 -g1,16237:7626635,42939319 -g1,16237:8290543,42939319 -g1,16237:8954451,42939319 -g1,16237:9286405,42939319 -g1,16237:9618359,42939319 -g1,16237:9950313,42939319 -g1,16237:10282267,42939319 -g1,16237:10614221,42939319 -g1,16237:10946175,42939319 -g1,16237:11278129,42939319 -g1,16237:11610083,42939319 -g1,16237:11942037,42939319 -g1,16237:12273991,42939319 -g1,16237:12937899,42939319 -g1,16237:13269853,42939319 -g1,16237:13601807,42939319 -g1,16237:13933761,42939319 -g1,16237:14265715,42939319 -g1,16237:14597669,42939319 -g1,16237:14929623,42939319 -g1,16237:15261577,42939319 -h1,16237:15593531,42939319:0,0,0 -k1,16237:32583029,42939319:16989498 -g1,16237:32583029,42939319 -) -(1,16237:6630773,43624174:25952256,407923,9908 -h1,16237:6630773,43624174:0,0,0 -g1,16237:7626635,43624174 -g1,16237:8290543,43624174 -g1,16237:8954451,43624174 -g1,16237:9286405,43624174 -g1,16237:9618359,43624174 -g1,16237:9950313,43624174 -g1,16237:10282267,43624174 -g1,16237:10614221,43624174 -g1,16237:10946175,43624174 -g1,16237:11278129,43624174 -g1,16237:11610083,43624174 -g1,16237:11942037,43624174 -g1,16237:12273991,43624174 -g1,16237:12937899,43624174 -g1,16237:13269853,43624174 -g1,16237:13601807,43624174 -g1,16237:13933761,43624174 -g1,16237:14265715,43624174 -g1,16237:14597669,43624174 -g1,16237:14929623,43624174 -g1,16237:15261577,43624174 -h1,16237:15593531,43624174:0,0,0 -k1,16237:32583029,43624174:16989498 -g1,16237:32583029,43624174 -) -] -) -g1,16238:32583029,43634082 -g1,16238:6630773,43634082 -g1,16238:6630773,43634082 -g1,16238:32583029,43634082 -g1,16238:32583029,43634082 -) -h1,16238:6630773,43830690:0,0,0 -v1,16242:6630773,44695770:0,393216,0 -] -(1,16251:32583029,45706769:0,0,0 -g1,16251:32583029,45706769 -) -) -] -(1,16251:6630773,47279633:25952256,0,0 -h1,16251:6630773,47279633:25952256,0,0 -) -] -(1,16251:4262630,4025873:0,0,0 -[1,16251:-473656,4025873:0,0,0 -(1,16251:-473656,-710413:0,0,0 -(1,16251:-473656,-710413:0,0,0 -g1,16251:-473656,-710413 -) -g1,16251:-473656,-710413 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 +) +] +) +) +) +] +[1,16249:3078558,4812305:0,0,0 +(1,16249:3078558,49800853:0,16384,2228224 +g1,16249:29030814,49800853 +g1,16249:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16249:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16249:37855564,49800853:1179648,16384,0 +) +) +k1,16249:3078556,49800853:-34777008 +) +] +g1,16249:6630773,4812305 +g1,16249:6630773,4812305 +g1,16249:11156689,4812305 +g1,16249:12279976,4812305 +g1,16249:16628629,4812305 +k1,16249:31387652,4812305:14759023 +) +) +] +[1,16249:6630773,45706769:25952256,40108032,0 +(1,16249:6630773,45706769:25952256,40108032,0 +(1,16249:6630773,45706769:0,0,0 +g1,16249:6630773,45706769 +) +[1,16249:6630773,45706769:25952256,40108032,0 +v1,16155:6630773,6254097:0,393216,0 +(1,16155:6630773,9986025:25952256,4125144,196608 +g1,16155:6630773,9986025 +g1,16155:6630773,9986025 +g1,16155:6434165,9986025 +(1,16155:6434165,9986025:0,4125144,196608 +r1,16249:32779637,9986025:26345472,4321752,196608 +k1,16155:6434165,9986025:-26345472 +) +(1,16155:6434165,9986025:26345472,4125144,196608 +[1,16155:6630773,9986025:25952256,3928536,0 +(1,16148:6630773,6481928:25952256,424439,112852 +h1,16148:6630773,6481928:0,0,0 +g1,16148:6962727,6481928 +g1,16148:7294681,6481928 +g1,16148:7626635,6481928 +g1,16148:7958589,6481928 +k1,16148:7958589,6481928:0 +h1,16148:12937898,6481928:0,0,0 +k1,16148:32583030,6481928:19645132 +g1,16148:32583030,6481928 +) +(1,16149:6630773,7166783:25952256,424439,106246 +h1,16149:6630773,7166783:0,0,0 +g1,16149:6962727,7166783 +g1,16149:7294681,7166783 +g1,16149:7626635,7166783 +g1,16149:7958589,7166783 +k1,16149:7958589,7166783:0 +h1,16149:12937899,7166783:0,0,0 +k1,16149:32583029,7166783:19645130 +g1,16149:32583029,7166783 +) +(1,16150:6630773,7851638:25952256,424439,106246 +h1,16150:6630773,7851638:0,0,0 +g1,16150:6962727,7851638 +g1,16150:7294681,7851638 +g1,16150:7626635,7851638 +g1,16150:7958589,7851638 +g1,16150:8290543,7851638 +g1,16150:8622497,7851638 +g1,16150:8954451,7851638 +g1,16150:9286405,7851638 +g1,16150:9618359,7851638 +g1,16150:9950313,7851638 +g1,16150:13269853,7851638 +g1,16150:15925485,7851638 +g1,16150:18913070,7851638 +g1,16150:19576978,7851638 +g1,16150:20572840,7851638 +g1,16150:21568702,7851638 +g1,16150:22896518,7851638 +g1,16150:23560426,7851638 +g1,16150:24556288,7851638 +k1,16150:24556288,7851638:0 +h1,16150:25552150,7851638:0,0,0 +k1,16150:32583029,7851638:7030879 +g1,16150:32583029,7851638 +) +(1,16151:6630773,8536493:25952256,424439,106246 +h1,16151:6630773,8536493:0,0,0 +g1,16151:6962727,8536493 +g1,16151:7294681,8536493 +g1,16151:7626635,8536493 +g1,16151:7958589,8536493 +g1,16151:9286405,8536493 +g1,16151:9950313,8536493 +h1,16151:11610083,8536493:0,0,0 +k1,16151:32583029,8536493:20972946 +g1,16151:32583029,8536493 +) +(1,16152:6630773,9221348:25952256,424439,79822 +h1,16152:6630773,9221348:0,0,0 +g1,16152:6962727,9221348 +g1,16152:7294681,9221348 +g1,16152:7626635,9221348 +g1,16152:7958589,9221348 +h1,16152:8290543,9221348:0,0,0 +k1,16152:32583029,9221348:24292486 +g1,16152:32583029,9221348 +) +(1,16153:6630773,9906203:25952256,424439,79822 +h1,16153:6630773,9906203:0,0,0 +h1,16153:6962727,9906203:0,0,0 +k1,16153:32583029,9906203:25620302 +g1,16153:32583029,9906203 +) +] +) +g1,16155:32583029,9986025 +g1,16155:6630773,9986025 +g1,16155:6630773,9986025 +g1,16155:32583029,9986025 +g1,16155:32583029,9986025 +) +h1,16155:6630773,10182633:0,0,0 +(1,16159:6630773,11047713:25952256,513147,126483 +h1,16158:6630773,11047713:983040,0,0 +k1,16158:9174005,11047713:363505 +(1,16158:9174005,11047713:0,452978,115847 +r1,16249:11994254,11047713:2820249,568825,115847 +k1,16158:9174005,11047713:-2820249 +) +(1,16158:9174005,11047713:2820249,452978,115847 +k1,16158:9174005,11047713:3277 +h1,16158:11990977,11047713:0,411205,112570 +) +k1,16158:12357759,11047713:363505 +k1,16158:16427979,11047713:363504 +k1,16158:17553012,11047713:363505 +k1,16158:20182097,11047713:363505 +k1,16158:22038512,11047713:363505 +k1,16158:23468288,11047713:363505 +k1,16158:26224512,11047713:363505 +k1,16158:29562695,11047713:363504 +k1,16158:31315563,11047713:363505 +k1,16158:32583029,11047713:0 +) +(1,16159:6630773,11912793:25952256,513147,115847 +k1,16158:9201393,11912793:172658 +k1,16158:11063569,11912793:172658 +k1,16158:12255311,11912793:172657 +(1,16158:12255311,11912793:0,459977,115847 +r1,16249:16482407,11912793:4227096,575824,115847 +k1,16158:12255311,11912793:-4227096 +) +(1,16158:12255311,11912793:4227096,459977,115847 +k1,16158:12255311,11912793:3277 +h1,16158:16479130,11912793:0,411205,112570 +) +k1,16158:16655065,11912793:172658 +k1,16158:20534439,11912793:172658 +k1,16158:21749775,11912793:172658 +k1,16158:23965189,11912793:172657 +k1,16158:24552664,11912793:172632 +k1,16158:27059058,11912793:172657 +k1,16158:28948104,11912793:172658 +k1,16158:30317449,11912793:172658 +k1,16158:32583029,11912793:0 +) +(1,16159:6630773,12777873:25952256,505283,134348 +k1,16158:7954000,12777873:218945 +k1,16158:8920710,12777873:218944 +k1,16158:12620272,12777873:218945 +k1,16158:15397743,12777873:218945 +k1,16158:16387390,12777873:218944 +k1,16158:19678663,12777873:218945 +k1,16158:22102895,12777873:218945 +k1,16158:22973267,12777873:218944 +k1,16158:24888939,12777873:218945 +k1,16158:29318572,12777873:218945 +k1,16158:30728961,12777873:218944 +k1,16158:31563944,12777873:218945 +k1,16158:32583029,12777873:0 +) +(1,16159:6630773,13642953:25952256,513147,134348 +k1,16158:8232272,13642953:234418 +k1,16158:9133846,13642953:234418 +(1,16158:9133846,13642953:0,459977,115847 +r1,16249:13360942,13642953:4227096,575824,115847 +k1,16158:9133846,13642953:-4227096 +) +(1,16158:9133846,13642953:4227096,459977,115847 +k1,16158:9133846,13642953:3277 +h1,16158:13357665,13642953:0,411205,112570 +) +k1,16158:13595360,13642953:234418 +k1,16158:15115594,13642953:234418 +k1,16158:16111540,13642953:234418 +k1,16158:18527652,13642953:234418 +k1,16158:19532773,13642953:234418 +k1,16158:20181999,13642953:234383 +k1,16158:22672822,13642953:234418 +k1,16158:24288084,13642953:234418 +k1,16158:25805697,13642953:234418 +k1,16158:29214679,13642953:234418 +k1,16158:31931601,13642953:234418 +k1,16158:32583029,13642953:0 +) +(1,16159:6630773,14508033:25952256,513147,134348 +g1,16158:9525498,14508033 +(1,16158:9525498,14508033:0,452978,115847 +r1,16249:13752594,14508033:4227096,568825,115847 +k1,16158:9525498,14508033:-4227096 +) +(1,16158:9525498,14508033:4227096,452978,115847 +k1,16158:9525498,14508033:3277 +h1,16158:13749317,14508033:0,411205,112570 +) +g1,16158:13951823,14508033 +g1,16158:15342497,14508033 +g1,16158:16330124,14508033 +g1,16158:19502066,14508033 +g1,16158:20933372,14508033 +g1,16158:23411288,14508033 +h1,16158:24780335,14508033:0,0,0 +g1,16158:24979564,14508033 +g1,16158:25988163,14508033 +g1,16158:27685545,14508033 +h1,16158:28880922,14508033:0,0,0 +k1,16159:32583029,14508033:3442585 +g1,16159:32583029,14508033 +) +v1,16161:6630773,15192888:0,393216,0 +(1,16182:6630773,20989522:25952256,6189850,196608 +g1,16182:6630773,20989522 +g1,16182:6630773,20989522 +g1,16182:6434165,20989522 +(1,16182:6434165,20989522:0,6189850,196608 +r1,16249:32779637,20989522:26345472,6386458,196608 +k1,16182:6434165,20989522:-26345472 +) +(1,16182:6434165,20989522:26345472,6189850,196608 +[1,16182:6630773,20989522:25952256,5993242,0 +(1,16163:6630773,15427325:25952256,431045,112852 +(1,16162:6630773,15427325:0,0,0 +g1,16162:6630773,15427325 +g1,16162:6630773,15427325 +g1,16162:6303093,15427325 +(1,16162:6303093,15427325:0,0,0 +) +g1,16162:6630773,15427325 +) +k1,16163:8599821,15427325:309278 +k1,16163:9573008,15427325:309279 +k1,16163:15193549,15427325:309278 +k1,16163:15834781,15427325:309278 +k1,16163:18135784,15427325:309279 +k1,16163:19772878,15427325:309278 +k1,16163:21741926,15427325:309278 +k1,16163:24374883,15427325:309279 +k1,16163:25016115,15427325:309278 +k1,16163:26985163,15427325:309278 +k1,16163:29950073,15427325:309279 +k1,16163:30591305,15427325:309278 +h1,16163:32583029,15427325:0,0,0 +k1,16163:32583029,15427325:0 +k1,16163:32583029,15427325:0 +) +(1,16164:6630773,16112180:25952256,431045,106246 +h1,16164:6630773,16112180:0,0,0 +k1,16164:6630773,16112180:0 +h1,16164:13269852,16112180:0,0,0 +k1,16164:32583028,16112180:19313176 +g1,16164:32583028,16112180 +) +(1,16168:6630773,16928107:25952256,424439,79822 +(1,16166:6630773,16928107:0,0,0 +g1,16166:6630773,16928107 +g1,16166:6630773,16928107 +g1,16166:6303093,16928107 +(1,16166:6303093,16928107:0,0,0 +) +g1,16166:6630773,16928107 +) +g1,16168:7626635,16928107 +g1,16168:8954451,16928107 +h1,16168:10282267,16928107:0,0,0 +k1,16168:32583029,16928107:22300762 +g1,16168:32583029,16928107 +) +(1,16170:6630773,17744034:25952256,431045,106246 +(1,16169:6630773,17744034:0,0,0 +g1,16169:6630773,17744034 +g1,16169:6630773,17744034 +g1,16169:6303093,17744034 +(1,16169:6303093,17744034:0,0,0 +) +g1,16169:6630773,17744034 +) +k1,16170:6630773,17744034:0 +h1,16170:11942036,17744034:0,0,0 +k1,16170:32583028,17744034:20640992 +g1,16170:32583028,17744034 +) +(1,16174:6630773,18559961:25952256,424439,79822 +(1,16172:6630773,18559961:0,0,0 +g1,16172:6630773,18559961 +g1,16172:6630773,18559961 +g1,16172:6303093,18559961 +(1,16172:6303093,18559961:0,0,0 +) +g1,16172:6630773,18559961 +) +g1,16174:7626635,18559961 +g1,16174:8954451,18559961 +h1,16174:10614221,18559961:0,0,0 +k1,16174:32583029,18559961:21968808 +g1,16174:32583029,18559961 +) +(1,16176:6630773,19375888:25952256,431045,106246 +(1,16175:6630773,19375888:0,0,0 +g1,16175:6630773,19375888 +g1,16175:6630773,19375888 +g1,16175:6303093,19375888 +(1,16175:6303093,19375888:0,0,0 +) +g1,16175:6630773,19375888 +) +k1,16176:6630773,19375888:0 +h1,16176:12937898,19375888:0,0,0 +k1,16176:32583030,19375888:19645132 +g1,16176:32583030,19375888 +) +(1,16181:6630773,20191815:25952256,431045,112852 +(1,16178:6630773,20191815:0,0,0 +g1,16178:6630773,20191815 +g1,16178:6630773,20191815 +g1,16178:6303093,20191815 +(1,16178:6303093,20191815:0,0,0 +) +g1,16178:6630773,20191815 +) +g1,16181:7626635,20191815 +g1,16181:11278128,20191815 +h1,16181:14929621,20191815:0,0,0 +k1,16181:32583029,20191815:17653408 +g1,16181:32583029,20191815 +) +(1,16181:6630773,20876670:25952256,424439,112852 +h1,16181:6630773,20876670:0,0,0 +g1,16181:7626635,20876670 +g1,16181:9950313,20876670 +g1,16181:13601806,20876670 +g1,16181:16589391,20876670 +g1,16181:19576977,20876670 +g1,16181:22896516,20876670 +h1,16181:25220194,20876670:0,0,0 +k1,16181:32583029,20876670:7362835 +g1,16181:32583029,20876670 +) +] +) +g1,16182:32583029,20989522 +g1,16182:6630773,20989522 +g1,16182:6630773,20989522 +g1,16182:32583029,20989522 +g1,16182:32583029,20989522 +) +h1,16182:6630773,21186130:0,0,0 +(1,16186:6630773,22051210:25952256,513147,126483 +h1,16185:6630773,22051210:983040,0,0 +k1,16185:10150111,22051210:216979 +k1,16185:11532320,22051210:216979 +k1,16185:12432184,22051210:216979 +k1,16185:15145428,22051210:216978 +k1,16185:16013835,22051210:216979 +k1,16185:16978580,22051210:216979 +k1,16185:18427636,22051210:216979 +k1,16185:20880703,22051210:216979 +k1,16185:22487045,22051210:216979 +k1,16185:26248865,22051210:216978 +k1,16185:28116041,22051210:216979 +k1,16185:31027860,22051210:216979 +k1,16186:32583029,22051210:0 +) +(1,16186:6630773,22916290:25952256,513147,115847 +(1,16185:6630773,22916290:0,452978,115847 +r1,16249:8747598,22916290:2116825,568825,115847 +k1,16185:6630773,22916290:-2116825 +) +(1,16185:6630773,22916290:2116825,452978,115847 +k1,16185:6630773,22916290:3277 +h1,16185:8744321,22916290:0,411205,112570 +) +g1,16185:8946827,22916290 +g1,16185:9677553,22916290 +g1,16185:12259671,22916290 +g1,16185:14026521,22916290 +g1,16185:15780919,22916290 +(1,16185:15780919,22916290:0,459977,115847 +r1,16249:19304591,22916290:3523672,575824,115847 +k1,16185:15780919,22916290:-3523672 +) +(1,16185:15780919,22916290:3523672,459977,115847 +k1,16185:15780919,22916290:3277 +h1,16185:19301314,22916290:0,411205,112570 +) +g1,16185:19677490,22916290 +g1,16185:22811421,22916290 +g1,16185:24400013,22916290 +g1,16185:26805839,22916290 +g1,16185:27996628,22916290 +g1,16185:29262128,22916290 +k1,16186:32583029,22916290:1126756 +g1,16186:32583029,22916290 +) +v1,16188:6630773,23601145:0,393216,0 +(1,16209:6630773,29391173:25952256,6183244,196608 +g1,16209:6630773,29391173 +g1,16209:6630773,29391173 +g1,16209:6434165,29391173 +(1,16209:6434165,29391173:0,6183244,196608 +r1,16249:32779637,29391173:26345472,6379852,196608 +k1,16209:6434165,29391173:-26345472 +) +(1,16209:6434165,29391173:26345472,6183244,196608 +[1,16209:6630773,29391173:25952256,5986636,0 +(1,16190:6630773,23828976:25952256,424439,112852 +(1,16189:6630773,23828976:0,0,0 +g1,16189:6630773,23828976 +g1,16189:6630773,23828976 +g1,16189:6303093,23828976 +(1,16189:6303093,23828976:0,0,0 +) +g1,16189:6630773,23828976 +) +g1,16190:8622497,23828976 +g1,16190:9618359,23828976 +g1,16190:13933761,23828976 +g1,16190:14597669,23828976 +g1,16190:16921347,23828976 +g1,16190:18581117,23828976 +g1,16190:20572841,23828976 +g1,16190:23228473,23828976 +g1,16190:23892381,23828976 +g1,16190:25884105,23828976 +g1,16190:28871690,23828976 +g1,16190:29535598,23828976 +h1,16190:31527322,23828976:0,0,0 +k1,16190:32583029,23828976:1055707 +g1,16190:32583029,23828976 +) +(1,16191:6630773,24513831:25952256,431045,106246 +h1,16191:6630773,24513831:0,0,0 +k1,16191:6630773,24513831:0 +h1,16191:13269852,24513831:0,0,0 +k1,16191:32583028,24513831:19313176 +g1,16191:32583028,24513831 +) +(1,16195:6630773,25329758:25952256,424439,79822 +(1,16193:6630773,25329758:0,0,0 +g1,16193:6630773,25329758 +g1,16193:6630773,25329758 +g1,16193:6303093,25329758 +(1,16193:6303093,25329758:0,0,0 +) +g1,16193:6630773,25329758 +) +g1,16195:7626635,25329758 +g1,16195:8954451,25329758 +h1,16195:10282267,25329758:0,0,0 +k1,16195:32583029,25329758:22300762 +g1,16195:32583029,25329758 +) +(1,16197:6630773,26145685:25952256,424439,106246 +(1,16196:6630773,26145685:0,0,0 +g1,16196:6630773,26145685 +g1,16196:6630773,26145685 +g1,16196:6303093,26145685 +(1,16196:6303093,26145685:0,0,0 +) +g1,16196:6630773,26145685 +) +k1,16197:6630773,26145685:0 +h1,16197:11942036,26145685:0,0,0 +k1,16197:32583028,26145685:20640992 +g1,16197:32583028,26145685 +) +(1,16201:6630773,26961612:25952256,424439,79822 +(1,16199:6630773,26961612:0,0,0 +g1,16199:6630773,26961612 +g1,16199:6630773,26961612 +g1,16199:6303093,26961612 +(1,16199:6303093,26961612:0,0,0 +) +g1,16199:6630773,26961612 +) +g1,16201:7626635,26961612 +g1,16201:8954451,26961612 +h1,16201:10282267,26961612:0,0,0 +k1,16201:32583029,26961612:22300762 +g1,16201:32583029,26961612 +) +(1,16203:6630773,27777539:25952256,424439,106246 +(1,16202:6630773,27777539:0,0,0 +g1,16202:6630773,27777539 +g1,16202:6630773,27777539 +g1,16202:6303093,27777539 +(1,16202:6303093,27777539:0,0,0 +) +g1,16202:6630773,27777539 +) +k1,16203:6630773,27777539:0 +h1,16203:12937898,27777539:0,0,0 +k1,16203:32583030,27777539:19645132 +g1,16203:32583030,27777539 +) +(1,16208:6630773,28593466:25952256,431045,112852 +(1,16205:6630773,28593466:0,0,0 +g1,16205:6630773,28593466 +g1,16205:6630773,28593466 +g1,16205:6303093,28593466 +(1,16205:6303093,28593466:0,0,0 +) +g1,16205:6630773,28593466 +) +g1,16208:7626635,28593466 +g1,16208:9950313,28593466 +h1,16208:13601806,28593466:0,0,0 +k1,16208:32583030,28593466:18981224 +g1,16208:32583030,28593466 +) +(1,16208:6630773,29278321:25952256,424439,112852 +h1,16208:6630773,29278321:0,0,0 +g1,16208:7626635,29278321 +g1,16208:9950313,29278321 +g1,16208:13601806,29278321 +g1,16208:16589391,29278321 +g1,16208:19576977,29278321 +g1,16208:22896516,29278321 +h1,16208:25220194,29278321:0,0,0 +k1,16208:32583029,29278321:7362835 +g1,16208:32583029,29278321 +) +] +) +g1,16209:32583029,29391173 +g1,16209:6630773,29391173 +g1,16209:6630773,29391173 +g1,16209:32583029,29391173 +g1,16209:32583029,29391173 +) +h1,16209:6630773,29587781:0,0,0 +(1,16213:6630773,30452861:25952256,513147,115847 +h1,16212:6630773,30452861:983040,0,0 +k1,16212:9007637,30452861:197137 +(1,16212:9007637,30452861:0,452978,115847 +r1,16249:11476174,30452861:2468537,568825,115847 +k1,16212:9007637,30452861:-2468537 +) +(1,16212:9007637,30452861:2468537,452978,115847 +k1,16212:9007637,30452861:3277 +h1,16212:11472897,30452861:0,411205,112570 +) +k1,16212:11673312,30452861:197138 +k1,16212:14324772,30452861:197137 +k1,16212:15469561,30452861:197138 +k1,16212:17808415,30452861:197137 +k1,16212:20079112,30452861:197138 +k1,16212:21843870,30452861:197137 +k1,16212:23325513,30452861:197137 +k1,16212:24470302,30452861:197138 +k1,16212:26056802,30452861:197137 +k1,16212:28460537,30452861:197138 +k1,16212:29273712,30452861:197137 +k1,16212:30755356,30452861:197138 +k1,16212:31410590,30452861:197137 +k1,16213:32583029,30452861:0 +) +(1,16213:6630773,31317941:25952256,513147,126483 +k1,16212:8340161,31317941:286601 +k1,16212:8982621,31317941:286600 +k1,16212:11443707,31317941:286601 +k1,16212:13124259,31317941:286601 +k1,16212:14429944,31317941:286600 +k1,16212:15942724,31317941:286601 +k1,16212:17016980,31317941:286513 +k1,16212:19588821,31317941:286601 +k1,16212:22628588,31317941:286600 +k1,16212:23676717,31317941:286601 +k1,16212:24982403,31317941:286601 +k1,16212:28944262,31317941:286600 +k1,16212:31923737,31317941:286601 +k1,16212:32583029,31317941:0 +) +(1,16213:6630773,32183021:25952256,513147,102891 +k1,16212:8352051,32183021:187080 +$1,16212:8352051,32183021 +$1,16212:8920248,32183021 +k1,16212:9107328,32183021:187080 +k1,16212:11780189,32183021:187080 +k1,16212:12626561,32183021:187080 +k1,16212:15907596,32183021:187080 +k1,16212:17622320,32183021:187080 +k1,16212:19695527,32183021:187081 +k1,16212:21334229,32183021:187080 +k1,16212:23904198,32183021:187080 +k1,16212:25829293,32183021:187080 +k1,16212:26787076,32183021:187080 +k1,16212:30948259,32183021:187080 +k1,16212:31794631,32183021:187080 +k1,16212:32583029,32183021:0 +) +(1,16213:6630773,33048101:25952256,513147,134348 +k1,16212:8391959,33048101:206017 +k1,16212:9789421,33048101:206017 +k1,16212:12322621,33048101:206017 +k1,16212:13187930,33048101:206017 +k1,16212:15966235,33048101:206017 +k1,16212:16938368,33048101:206017 +k1,16212:18678584,33048101:206018 +k1,16212:20076046,33048101:206017 +k1,16212:23168924,33048101:206017 +k1,16212:23730801,33048101:206017 +k1,16212:26189290,33048101:206017 +k1,16212:28881088,33048101:206017 +k1,16212:29746397,33048101:206017 +k1,16212:31591469,33048101:206017 +k1,16212:32583029,33048101:0 +) +(1,16213:6630773,33913181:25952256,513147,134348 +k1,16212:10066497,33913181:198901 +k1,16212:10893234,33913181:198902 +k1,16212:13931811,33913181:198902 +k1,16212:17323626,33913181:198901 +k1,16212:19533173,33913181:198902 +k1,16212:20723634,33913181:198901 +k1,16212:24127901,33913181:198901 +k1,16212:25977000,33913181:198902 +k1,16212:29457290,33913181:198902 +k1,16212:30847636,33913181:198901 +k1,16212:32583029,33913181:0 +) +(1,16213:6630773,34778261:25952256,513147,134348 +g1,16212:8860963,34778261 +g1,16212:9711620,34778261 +g1,16212:12941889,34778261 +g1,16212:14088769,34778261 +g1,16212:17123085,34778261 +g1,16212:19977177,34778261 +g1,16212:22992488,34778261 +g1,16212:23807755,34778261 +k1,16213:32583029,34778261:7666405 +g1,16213:32583029,34778261 +) +v1,16215:6630773,35463116:0,393216,0 +(1,16236:6630773,43634082:25952256,8564182,196608 +g1,16236:6630773,43634082 +g1,16236:6630773,43634082 +g1,16236:6434165,43634082 +(1,16236:6434165,43634082:0,8564182,196608 +r1,16249:32779637,43634082:26345472,8760790,196608 +k1,16236:6434165,43634082:-26345472 +) +(1,16236:6434165,43634082:26345472,8564182,196608 +[1,16236:6630773,43634082:25952256,8367574,0 +(1,16217:6630773,35697553:25952256,431045,106246 +(1,16216:6630773,35697553:0,0,0 +g1,16216:6630773,35697553 +g1,16216:6630773,35697553 +g1,16216:6303093,35697553 +(1,16216:6303093,35697553:0,0,0 +) +g1,16216:6630773,35697553 +) +k1,16217:6630773,35697553:0 +h1,16217:10614221,35697553:0,0,0 +k1,16217:32583029,35697553:21968808 +g1,16217:32583029,35697553 +) +(1,16224:6630773,36513480:25952256,424439,112852 +(1,16219:6630773,36513480:0,0,0 +g1,16219:6630773,36513480 +g1,16219:6630773,36513480 +g1,16219:6303093,36513480 +(1,16219:6303093,36513480:0,0,0 +) +g1,16219:6630773,36513480 +) +g1,16224:7626635,36513480 +g1,16224:7958589,36513480 +g1,16224:8290543,36513480 +g1,16224:10282267,36513480 +g1,16224:12937899,36513480 +h1,16224:15593530,36513480:0,0,0 +k1,16224:32583030,36513480:16989500 +g1,16224:32583030,36513480 +) +(1,16224:6630773,37198335:25952256,407923,0 +h1,16224:6630773,37198335:0,0,0 +g1,16224:7626635,37198335 +g1,16224:8290543,37198335 +g1,16224:8622497,37198335 +g1,16224:8954451,37198335 +g1,16224:9286405,37198335 +g1,16224:9618359,37198335 +g1,16224:10282267,37198335 +g1,16224:10614221,37198335 +g1,16224:10946175,37198335 +g1,16224:11278129,37198335 +g1,16224:11610083,37198335 +g1,16224:11942037,37198335 +g1,16224:12937899,37198335 +g1,16224:13269853,37198335 +g1,16224:13601807,37198335 +g1,16224:13933761,37198335 +g1,16224:14265715,37198335 +g1,16224:14597669,37198335 +g1,16224:14929623,37198335 +g1,16224:15261577,37198335 +h1,16224:15593531,37198335:0,0,0 +k1,16224:32583029,37198335:16989498 +g1,16224:32583029,37198335 +) +(1,16224:6630773,37883190:25952256,407923,9908 +h1,16224:6630773,37883190:0,0,0 +g1,16224:7626635,37883190 +g1,16224:8290543,37883190 +g1,16224:8622497,37883190 +g1,16224:8954451,37883190 +g1,16224:9286405,37883190 +g1,16224:9618359,37883190 +g1,16224:10282267,37883190 +g1,16224:10614221,37883190 +g1,16224:10946175,37883190 +g1,16224:11278129,37883190 +g1,16224:11610083,37883190 +g1,16224:11942037,37883190 +g1,16224:12273991,37883190 +g1,16224:12937899,37883190 +g1,16224:13269853,37883190 +g1,16224:13601807,37883190 +g1,16224:13933761,37883190 +g1,16224:14265715,37883190 +g1,16224:14597669,37883190 +g1,16224:14929623,37883190 +g1,16224:15261577,37883190 +h1,16224:15593531,37883190:0,0,0 +k1,16224:32583029,37883190:16989498 +g1,16224:32583029,37883190 +) +(1,16224:6630773,38568045:25952256,407923,9908 +h1,16224:6630773,38568045:0,0,0 +g1,16224:7626635,38568045 +g1,16224:8290543,38568045 +g1,16224:8622497,38568045 +g1,16224:8954451,38568045 +g1,16224:9286405,38568045 +g1,16224:9618359,38568045 +g1,16224:10282267,38568045 +g1,16224:10614221,38568045 +g1,16224:10946175,38568045 +g1,16224:11278129,38568045 +g1,16224:11610083,38568045 +g1,16224:11942037,38568045 +g1,16224:12273991,38568045 +g1,16224:12937899,38568045 +g1,16224:13269853,38568045 +g1,16224:13601807,38568045 +g1,16224:13933761,38568045 +g1,16224:14265715,38568045 +g1,16224:14597669,38568045 +g1,16224:14929623,38568045 +g1,16224:15261577,38568045 +h1,16224:15593531,38568045:0,0,0 +k1,16224:32583029,38568045:16989498 +g1,16224:32583029,38568045 +) +(1,16226:6630773,39383972:25952256,424439,106246 +(1,16225:6630773,39383972:0,0,0 +g1,16225:6630773,39383972 +g1,16225:6630773,39383972 +g1,16225:6303093,39383972 +(1,16225:6303093,39383972:0,0,0 +) +g1,16225:6630773,39383972 +) +k1,16226:6630773,39383972:0 +h1,16226:10614221,39383972:0,0,0 +k1,16226:32583029,39383972:21968808 +g1,16226:32583029,39383972 +) +(1,16235:6630773,40199899:25952256,424439,9908 +(1,16228:6630773,40199899:0,0,0 +g1,16228:6630773,40199899 +g1,16228:6630773,40199899 +g1,16228:6303093,40199899 +(1,16228:6303093,40199899:0,0,0 +) +g1,16228:6630773,40199899 +) +g1,16235:7626635,40199899 +g1,16235:8290543,40199899 +g1,16235:8954451,40199899 +g1,16235:11610083,40199899 +g1,16235:12273991,40199899 +g1,16235:12937899,40199899 +h1,16235:13269853,40199899:0,0,0 +k1,16235:32583029,40199899:19313176 +g1,16235:32583029,40199899 +) +(1,16235:6630773,40884754:25952256,424439,112852 +h1,16235:6630773,40884754:0,0,0 +g1,16235:7626635,40884754 +g1,16235:7958589,40884754 +g1,16235:8290543,40884754 +g1,16235:10282267,40884754 +g1,16235:12937899,40884754 +h1,16235:15593530,40884754:0,0,0 +k1,16235:32583030,40884754:16989500 +g1,16235:32583030,40884754 +) +(1,16235:6630773,41569609:25952256,424439,6605 +h1,16235:6630773,41569609:0,0,0 +g1,16235:7626635,41569609 +g1,16235:7958589,41569609 +g1,16235:8290543,41569609 +g1,16235:10282267,41569609 +g1,16235:10614221,41569609 +g1,16235:10946175,41569609 +g1,16235:12937899,41569609 +g1,16235:13269853,41569609 +g1,16235:13601807,41569609 +g1,16235:13933761,41569609 +k1,16235:13933761,41569609:0 +h1,16235:15593531,41569609:0,0,0 +k1,16235:32583029,41569609:16989498 +g1,16235:32583029,41569609 +) +(1,16235:6630773,42254464:25952256,407923,0 +h1,16235:6630773,42254464:0,0,0 +g1,16235:7626635,42254464 +g1,16235:8290543,42254464 +g1,16235:8954451,42254464 +g1,16235:9286405,42254464 +g1,16235:9618359,42254464 +g1,16235:9950313,42254464 +g1,16235:10282267,42254464 +g1,16235:10614221,42254464 +g1,16235:10946175,42254464 +g1,16235:11278129,42254464 +g1,16235:11610083,42254464 +g1,16235:11942037,42254464 +g1,16235:12937899,42254464 +g1,16235:13269853,42254464 +g1,16235:13601807,42254464 +g1,16235:13933761,42254464 +g1,16235:14265715,42254464 +g1,16235:14597669,42254464 +g1,16235:14929623,42254464 +g1,16235:15261577,42254464 +h1,16235:15593531,42254464:0,0,0 +k1,16235:32583029,42254464:16989498 +g1,16235:32583029,42254464 +) +(1,16235:6630773,42939319:25952256,407923,9908 +h1,16235:6630773,42939319:0,0,0 +g1,16235:7626635,42939319 +g1,16235:8290543,42939319 +g1,16235:8954451,42939319 +g1,16235:9286405,42939319 +g1,16235:9618359,42939319 +g1,16235:9950313,42939319 +g1,16235:10282267,42939319 +g1,16235:10614221,42939319 +g1,16235:10946175,42939319 +g1,16235:11278129,42939319 +g1,16235:11610083,42939319 +g1,16235:11942037,42939319 +g1,16235:12273991,42939319 +g1,16235:12937899,42939319 +g1,16235:13269853,42939319 +g1,16235:13601807,42939319 +g1,16235:13933761,42939319 +g1,16235:14265715,42939319 +g1,16235:14597669,42939319 +g1,16235:14929623,42939319 +g1,16235:15261577,42939319 +h1,16235:15593531,42939319:0,0,0 +k1,16235:32583029,42939319:16989498 +g1,16235:32583029,42939319 +) +(1,16235:6630773,43624174:25952256,407923,9908 +h1,16235:6630773,43624174:0,0,0 +g1,16235:7626635,43624174 +g1,16235:8290543,43624174 +g1,16235:8954451,43624174 +g1,16235:9286405,43624174 +g1,16235:9618359,43624174 +g1,16235:9950313,43624174 +g1,16235:10282267,43624174 +g1,16235:10614221,43624174 +g1,16235:10946175,43624174 +g1,16235:11278129,43624174 +g1,16235:11610083,43624174 +g1,16235:11942037,43624174 +g1,16235:12273991,43624174 +g1,16235:12937899,43624174 +g1,16235:13269853,43624174 +g1,16235:13601807,43624174 +g1,16235:13933761,43624174 +g1,16235:14265715,43624174 +g1,16235:14597669,43624174 +g1,16235:14929623,43624174 +g1,16235:15261577,43624174 +h1,16235:15593531,43624174:0,0,0 +k1,16235:32583029,43624174:16989498 +g1,16235:32583029,43624174 +) +] +) +g1,16236:32583029,43634082 +g1,16236:6630773,43634082 +g1,16236:6630773,43634082 +g1,16236:32583029,43634082 +g1,16236:32583029,43634082 +) +h1,16236:6630773,43830690:0,0,0 +v1,16240:6630773,44695770:0,393216,0 +] +(1,16249:32583029,45706769:0,0,0 +g1,16249:32583029,45706769 +) +) +] +(1,16249:6630773,47279633:25952256,0,0 +h1,16249:6630773,47279633:25952256,0,0 +) +] +(1,16249:4262630,4025873:0,0,0 +[1,16249:-473656,4025873:0,0,0 +(1,16249:-473656,-710413:0,0,0 +(1,16249:-473656,-710413:0,0,0 +g1,16249:-473656,-710413 +) +g1,16249:-473656,-710413 ) ] ) ] !28765 -}264 -Input:2728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2729:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2730:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2731:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}265 Input:2732:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2733:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2734:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -284816,2031 +285020,2031 @@ Input:2737:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2738:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2739:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2740:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2741:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2742:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2743:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2744:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{265 -[1,16449:4262630,47279633:28320399,43253760,0 -(1,16449:4262630,4025873:0,0,0 -[1,16449:-473656,4025873:0,0,0 -(1,16449:-473656,-710413:0,0,0 -(1,16449:-473656,-644877:0,0,0 -k1,16449:-473656,-644877:-65536 +{266 +[1,16447:4262630,47279633:28320399,43253760,0 +(1,16447:4262630,4025873:0,0,0 +[1,16447:-473656,4025873:0,0,0 +(1,16447:-473656,-710413:0,0,0 +(1,16447:-473656,-644877:0,0,0 +k1,16447:-473656,-644877:-65536 ) -(1,16449:-473656,4736287:0,0,0 -k1,16449:-473656,4736287:5209943 +(1,16447:-473656,4736287:0,0,0 +k1,16447:-473656,4736287:5209943 ) -g1,16449:-473656,-710413 +g1,16447:-473656,-710413 ) ] ) -[1,16449:6630773,47279633:25952256,43253760,0 -[1,16449:6630773,4812305:25952256,786432,0 -(1,16449:6630773,4812305:25952256,505283,134348 -(1,16449:6630773,4812305:25952256,505283,134348 -g1,16449:3078558,4812305 -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,2439708:0,1703936,0 -k1,16449:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16449:2537886,2439708:1179648,16384,0 +[1,16447:6630773,47279633:25952256,43253760,0 +[1,16447:6630773,4812305:25952256,786432,0 +(1,16447:6630773,4812305:25952256,505283,134348 +(1,16447:6630773,4812305:25952256,505283,134348 +g1,16447:3078558,4812305 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,2439708:0,1703936,0 +k1,16447:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16447:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16449:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16447:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,2439708:0,1703936,0 -g1,16449:29030814,2439708 -g1,16449:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16449:36151628,1915420:16384,1179648,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,2439708:0,1703936,0 +g1,16447:29030814,2439708 +g1,16447:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16447:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16449:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16447:37855564,2439708:1179648,16384,0 ) ) -k1,16449:3078556,2439708:-34777008 +k1,16447:3078556,2439708:-34777008 ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,49800853:0,16384,2228224 -k1,16449:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16449:2537886,49800853:1179648,16384,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,49800853:0,16384,2228224 +k1,16447:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16447:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16449:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16447:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,49800853:0,16384,2228224 -g1,16449:29030814,49800853 -g1,16449:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16449:36151628,51504789:16384,1179648,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,49800853:0,16384,2228224 +g1,16447:29030814,49800853 +g1,16447:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16447:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16449:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16447:37855564,49800853:1179648,16384,0 ) ) -k1,16449:3078556,49800853:-34777008 +k1,16447:3078556,49800853:-34777008 ) ] -g1,16449:6630773,4812305 -k1,16449:23347041,4812305:15520891 -g1,16449:23960458,4812305 -g1,16449:27572802,4812305 -g1,16449:29306229,4812305 -) -) -] -[1,16449:6630773,45706769:25952256,40108032,0 -(1,16449:6630773,45706769:25952256,40108032,0 -(1,16449:6630773,45706769:0,0,0 -g1,16449:6630773,45706769 -) -[1,16449:6630773,45706769:25952256,40108032,0 -v1,16251:6630773,6254097:0,393216,0 -(1,16251:6630773,9508095:25952256,3647214,0 -g1,16251:6630773,9508095 -g1,16251:6237557,9508095 -r1,16449:6368629,9508095:131072,3647214,0 -g1,16251:6567858,9508095 -g1,16251:6764466,9508095 -[1,16251:6764466,9508095:25818563,3647214,0 -(1,16243:6764466,6562395:25818563,701514,196608 -(1,16242:6764466,6562395:0,701514,196608 -r1,16449:7761522,6562395:997056,898122,196608 -k1,16242:6764466,6562395:-997056 -) -(1,16242:6764466,6562395:997056,701514,196608 -) -k1,16242:7975999,6562395:214477 -k1,16242:8303679,6562395:327680 -k1,16242:9714843,6562395:214477 -k1,16242:12194899,6562395:214476 -k1,16242:14895157,6562395:214477 -k1,16242:15768926,6562395:214477 -k1,16242:17517601,6562395:214477 -k1,16242:20082198,6562395:214476 -k1,16242:22998724,6562395:214477 -k1,16242:24022571,6562395:214477 -k1,16242:24651875,6562395:214461 -k1,16242:26949086,6562395:214477 -(1,16242:26949086,6562395:0,452978,115847 -r1,16449:32583029,6562395:5633943,568825,115847 -k1,16242:26949086,6562395:-5633943 -) -(1,16242:26949086,6562395:5633943,452978,115847 -k1,16242:26949086,6562395:3277 -h1,16242:32579752,6562395:0,411205,112570 -) -k1,16242:32583029,6562395:0 -) -(1,16243:6764466,7427475:25818563,513147,126483 -k1,16242:8229072,7427475:180100 -k1,16242:9513454,7427475:180100 -k1,16242:10441320,7427475:180100 -k1,16242:11555963,7427475:180100 -k1,16242:13130014,7427475:180100 -k1,16242:13665974,7427475:180100 -k1,16242:14945768,7427475:180100 -k1,16242:15777295,7427475:180099 -(1,16242:15777295,7427475:0,452978,115847 -r1,16449:18949255,7427475:3171960,568825,115847 -k1,16242:15777295,7427475:-3171960 -) -(1,16242:15777295,7427475:3171960,452978,115847 -k1,16242:15777295,7427475:3277 -h1,16242:18945978,7427475:0,411205,112570 -) -k1,16242:19303025,7427475:180100 -k1,16242:20863969,7427475:180100 -k1,16242:23126803,7427475:180100 -k1,16242:24980037,7427475:180100 -k1,16242:26107788,7427475:180100 -k1,16242:28429605,7427475:180100 -k1,16242:28965565,7427475:180100 -k1,16242:31347675,7427475:180100 -k1,16242:32583029,7427475:0 -) -(1,16243:6764466,8292555:25818563,513147,126483 -g1,16242:7649857,8292555 -g1,16242:9931820,8292555 -(1,16242:9931820,8292555:0,452978,115847 -r1,16449:13103780,8292555:3171960,568825,115847 -k1,16242:9931820,8292555:-3171960 -) -(1,16242:9931820,8292555:3171960,452978,115847 -k1,16242:9931820,8292555:3277 -h1,16242:13100503,8292555:0,411205,112570 -) -g1,16242:13303009,8292555 -g1,16242:15175372,8292555 -g1,16242:16322252,8292555 -g1,16242:17955409,8292555 -g1,16242:18569481,8292555 -(1,16242:18569481,8292555:0,452978,115847 -r1,16449:21038018,8292555:2468537,568825,115847 -k1,16242:18569481,8292555:-2468537 -) -(1,16242:18569481,8292555:2468537,452978,115847 -k1,16242:18569481,8292555:3277 -h1,16242:21034741,8292555:0,411205,112570 -) -g1,16242:21237247,8292555 -k1,16243:32583029,8292555:8508729 -g1,16243:32583029,8292555 -) -v1,16245:6764466,8977410:0,393216,0 -(1,16249:6764466,9311487:25818563,727293,196608 -g1,16249:6764466,9311487 -g1,16249:6764466,9311487 -g1,16249:6567858,9311487 -(1,16249:6567858,9311487:0,727293,196608 -r1,16449:32779637,9311487:26211779,923901,196608 -k1,16249:6567857,9311487:-26211780 -) -(1,16249:6567858,9311487:26211779,727293,196608 -[1,16249:6764466,9311487:25818563,530685,0 -(1,16247:6764466,9205241:25818563,424439,106246 -(1,16246:6764466,9205241:0,0,0 -g1,16246:6764466,9205241 -g1,16246:6764466,9205241 -g1,16246:6436786,9205241 -(1,16246:6436786,9205241:0,0,0 -) -g1,16246:6764466,9205241 -) -k1,16247:6764466,9205241:0 -g1,16247:15063315,9205241 -g1,16247:15727223,9205241 -g1,16247:16723085,9205241 -g1,16247:22366302,9205241 -g1,16247:23030210,9205241 -h1,16247:23694118,9205241:0,0,0 -k1,16247:32583029,9205241:8888911 -g1,16247:32583029,9205241 -) -] -) -g1,16249:32583029,9311487 -g1,16249:6764466,9311487 -g1,16249:6764466,9311487 -g1,16249:32583029,9311487 -g1,16249:32583029,9311487 -) -h1,16249:6764466,9508095:0,0,0 -] -g1,16251:32583029,9508095 -) -h1,16251:6630773,9508095:0,0,0 -v1,16254:6630773,10373175:0,393216,0 -(1,16255:6630773,15097535:25952256,5117576,0 -g1,16255:6630773,15097535 -g1,16255:6237557,15097535 -r1,16449:6368629,15097535:131072,5117576,0 -g1,16255:6567858,15097535 -g1,16255:6764466,15097535 -[1,16255:6764466,15097535:25818563,5117576,0 -(1,16255:6764466,10645652:25818563,665693,196608 -(1,16254:6764466,10645652:0,665693,196608 -r1,16449:7868133,10645652:1103667,862301,196608 -k1,16254:6764466,10645652:-1103667 -) -(1,16254:6764466,10645652:1103667,665693,196608 -) -k1,16254:8072984,10645652:204851 -k1,16254:9390913,10645652:327680 -k1,16254:11132583,10645652:204851 -k1,16254:14122059,10645652:204851 -k1,16254:15274561,10645652:204851 -k1,16254:17621129,10645652:204851 -k1,16254:19017426,10645652:204852 -k1,16254:20611640,10645652:204851 -k1,16254:23023088,10645652:204851 -k1,16254:24971197,10645652:204851 -k1,16254:25792086,10645652:204851 -k1,16254:27505576,10645652:204851 -k1,16254:30884991,10645652:204851 -k1,16254:32583029,10645652:0 -) -(1,16255:6764466,11510732:25818563,513147,126483 -k1,16254:8049496,11510732:218759 -k1,16254:9034371,11510732:218759 -k1,16254:11966321,11510732:218759 -k1,16254:12872554,11510732:218760 -k1,16254:13707351,11510732:218759 -k1,16254:14281970,11510732:218759 -k1,16254:16850850,11510732:218759 -k1,16254:18411786,11510732:218759 -k1,16254:19236098,11510732:218759 -k1,16254:22600585,11510732:218759 -k1,16254:23175204,11510732:218759 -k1,16254:24783327,11510732:218760 -k1,16254:26878382,11510732:218759 -k1,16254:28288586,11510732:218759 -k1,16254:29278048,11510732:218759 -k1,16254:32583029,11510732:0 -) -(1,16255:6764466,12375812:25818563,505283,126483 -k1,16254:8846676,12375812:270795 -k1,16254:10511421,12375812:270794 -k1,16254:11394978,12375812:270795 -k1,16254:13161304,12375812:270794 -k1,16254:14229017,12375812:270795 -k1,16254:16034009,12375812:270794 -k1,16254:17496249,12375812:270795 -k1,16254:19200971,12375812:270794 -k1,16254:20663211,12375812:270795 -k1,16254:22264386,12375812:270794 -k1,16254:23554266,12375812:270795 -k1,16254:25983816,12375812:270794 -k1,16254:27971654,12375812:270795 -k1,16254:29940487,12375812:270795 -k1,16254:31591469,12375812:270794 -k1,16254:32583029,12375812:0 -) -(1,16255:6764466,13240892:25818563,513147,126483 -k1,16254:9545431,13240892:257174 -k1,16254:10408158,13240892:257174 -k1,16254:13811060,13240892:257174 -k1,16254:14424094,13240892:257174 -k1,16254:16070631,13240892:257174 -k1,16254:18204101,13240892:257174 -k1,16254:19652721,13240892:257175 -k1,16254:20680598,13240892:257174 -k1,16254:24242753,13240892:257174 -k1,16254:26311342,13240892:257174 -k1,16254:27962467,13240892:257174 -k1,16254:29869838,13240892:257174 -k1,16254:32583029,13240892:0 -) -(1,16255:6764466,14105972:25818563,513147,126483 -k1,16254:8374725,14105972:167812 -k1,16254:9675000,14105972:167813 -k1,16254:10530285,14105972:167812 -k1,16254:11314136,14105972:167813 -k1,16254:12501033,14105972:167812 -k1,16254:14483538,14105972:167813 -k1,16254:15310642,14105972:167812 -k1,16254:16497539,14105972:167812 -k1,16254:17080164,14105972:167782 -k1,16254:19668221,14105972:167812 -k1,16254:21027478,14105972:167812 -k1,16254:22629219,14105972:167813 -k1,16254:23988476,14105972:167812 -k1,16254:25486670,14105972:167813 -k1,16254:26673567,14105972:167812 -k1,16254:29000136,14105972:167813 -k1,16254:30884991,14105972:167812 -k1,16254:32583029,14105972:0 -) -(1,16255:6764466,14971052:25818563,505283,126483 -g1,16254:8343883,14971052 -g1,16254:9534672,14971052 -k1,16255:32583029,14971052:20645808 -g1,16255:32583029,14971052 -) -] -g1,16255:32583029,15097535 -) -h1,16255:6630773,15097535:0,0,0 -(1,16258:6630773,15962615:25952256,513147,115847 -h1,16257:6630773,15962615:983040,0,0 -g1,16257:9284981,15962615 -g1,16257:11690807,15962615 -g1,16257:12994318,15962615 -g1,16257:13941313,15962615 -g1,16257:17301343,15962615 -g1,16257:18768038,15962615 -g1,16257:21108984,15962615 -g1,16257:22702164,15962615 -(1,16257:22702164,15962615:0,452978,115847 -r1,16449:26577548,15962615:3875384,568825,115847 -k1,16257:22702164,15962615:-3875384 -) -(1,16257:22702164,15962615:3875384,452978,115847 -k1,16257:22702164,15962615:3277 -h1,16257:26574271,15962615:0,411205,112570 -) -k1,16258:32583029,15962615:5953053 -g1,16258:32583029,15962615 -) -v1,16260:6630773,16647470:0,393216,0 -(1,16281:6630773,22444104:25952256,6189850,196608 -g1,16281:6630773,22444104 -g1,16281:6630773,22444104 -g1,16281:6434165,22444104 -(1,16281:6434165,22444104:0,6189850,196608 -r1,16449:32779637,22444104:26345472,6386458,196608 -k1,16281:6434165,22444104:-26345472 -) -(1,16281:6434165,22444104:26345472,6189850,196608 -[1,16281:6630773,22444104:25952256,5993242,0 -(1,16262:6630773,16881907:25952256,431045,106246 -(1,16261:6630773,16881907:0,0,0 -g1,16261:6630773,16881907 -g1,16261:6630773,16881907 -g1,16261:6303093,16881907 -(1,16261:6303093,16881907:0,0,0 -) -g1,16261:6630773,16881907 -) -g1,16262:10282266,16881907 -g1,16262:11278128,16881907 -k1,16262:11278128,16881907:0 -h1,16262:16589391,16881907:0,0,0 -k1,16262:32583029,16881907:15993638 -g1,16262:32583029,16881907 -) -(1,16263:6630773,17566762:25952256,431045,106246 -h1,16263:6630773,17566762:0,0,0 -k1,16263:6630773,17566762:0 -h1,16263:14929621,17566762:0,0,0 -k1,16263:32583029,17566762:17653408 -g1,16263:32583029,17566762 -) -(1,16267:6630773,18382689:25952256,424439,79822 -(1,16265:6630773,18382689:0,0,0 -g1,16265:6630773,18382689 -g1,16265:6630773,18382689 -g1,16265:6303093,18382689 -(1,16265:6303093,18382689:0,0,0 -) -g1,16265:6630773,18382689 -) -g1,16267:7626635,18382689 -g1,16267:8954451,18382689 -h1,16267:10282267,18382689:0,0,0 -k1,16267:32583029,18382689:22300762 -g1,16267:32583029,18382689 -) -(1,16269:6630773,19198616:25952256,424439,106246 -(1,16268:6630773,19198616:0,0,0 -g1,16268:6630773,19198616 -g1,16268:6630773,19198616 -g1,16268:6303093,19198616 -(1,16268:6303093,19198616:0,0,0 -) -g1,16268:6630773,19198616 -) -k1,16269:6630773,19198616:0 -h1,16269:13601805,19198616:0,0,0 -k1,16269:32583029,19198616:18981224 -g1,16269:32583029,19198616 -) -(1,16273:6630773,20014543:25952256,424439,79822 -(1,16271:6630773,20014543:0,0,0 -g1,16271:6630773,20014543 -g1,16271:6630773,20014543 -g1,16271:6303093,20014543 -(1,16271:6303093,20014543:0,0,0 -) -g1,16271:6630773,20014543 -) -g1,16273:7626635,20014543 -g1,16273:8954451,20014543 -h1,16273:10282267,20014543:0,0,0 -k1,16273:32583029,20014543:22300762 -g1,16273:32583029,20014543 -) -(1,16275:6630773,20830470:25952256,424439,106246 -(1,16274:6630773,20830470:0,0,0 -g1,16274:6630773,20830470 -g1,16274:6630773,20830470 -g1,16274:6303093,20830470 -(1,16274:6303093,20830470:0,0,0 -) -g1,16274:6630773,20830470 -) -k1,16275:6630773,20830470:0 -h1,16275:14597667,20830470:0,0,0 -k1,16275:32583029,20830470:17985362 -g1,16275:32583029,20830470 -) -(1,16280:6630773,21646397:25952256,431045,112852 -(1,16277:6630773,21646397:0,0,0 -g1,16277:6630773,21646397 -g1,16277:6630773,21646397 -g1,16277:6303093,21646397 -(1,16277:6303093,21646397:0,0,0 -) -g1,16277:6630773,21646397 -) -g1,16280:7626635,21646397 -g1,16280:9950313,21646397 -h1,16280:13601806,21646397:0,0,0 -k1,16280:32583030,21646397:18981224 -g1,16280:32583030,21646397 -) -(1,16280:6630773,22331252:25952256,424439,112852 -h1,16280:6630773,22331252:0,0,0 -g1,16280:7626635,22331252 -g1,16280:9950313,22331252 -g1,16280:13601806,22331252 -g1,16280:16589391,22331252 -g1,16280:19576977,22331252 -g1,16280:22896516,22331252 -h1,16280:25220194,22331252:0,0,0 -k1,16280:32583029,22331252:7362835 -g1,16280:32583029,22331252 -) -] -) -g1,16281:32583029,22444104 -g1,16281:6630773,22444104 -g1,16281:6630773,22444104 -g1,16281:32583029,22444104 -g1,16281:32583029,22444104 -) -h1,16281:6630773,22640712:0,0,0 -(1,16285:6630773,23505792:25952256,513147,115847 -h1,16284:6630773,23505792:983040,0,0 -g1,16284:10132361,23505792 -g1,16284:11435872,23505792 -g1,16284:12382867,23505792 -g1,16284:15742897,23505792 -g1,16284:17209592,23505792 -g1,16284:19205818,23505792 -g1,16284:23174678,23505792 -g1,16284:24767858,23505792 -(1,16284:24767858,23505792:0,459977,115847 -r1,16449:30050089,23505792:5282231,575824,115847 -k1,16284:24767858,23505792:-5282231 -) -(1,16284:24767858,23505792:5282231,459977,115847 -k1,16284:24767858,23505792:3277 -h1,16284:30046812,23505792:0,411205,112570 -) -k1,16285:32583029,23505792:2480512 -g1,16285:32583029,23505792 -) -v1,16287:6630773,24190647:0,393216,0 -(1,16308:6630773,29987281:25952256,6189850,196608 -g1,16308:6630773,29987281 -g1,16308:6630773,29987281 -g1,16308:6434165,29987281 -(1,16308:6434165,29987281:0,6189850,196608 -r1,16449:32779637,29987281:26345472,6386458,196608 -k1,16308:6434165,29987281:-26345472 -) -(1,16308:6434165,29987281:26345472,6189850,196608 -[1,16308:6630773,29987281:25952256,5993242,0 -(1,16289:6630773,24425084:25952256,431045,106246 -(1,16288:6630773,24425084:0,0,0 -g1,16288:6630773,24425084 -g1,16288:6630773,24425084 -g1,16288:6303093,24425084 -(1,16288:6303093,24425084:0,0,0 -) -g1,16288:6630773,24425084 -) -g1,16289:10282266,24425084 -g1,16289:11278128,24425084 -k1,16289:11278128,24425084:0 -h1,16289:17917207,24425084:0,0,0 -k1,16289:32583029,24425084:14665822 -g1,16289:32583029,24425084 -) -(1,16290:6630773,25109939:25952256,431045,106246 -h1,16290:6630773,25109939:0,0,0 -k1,16290:6630773,25109939:0 -h1,16290:14929621,25109939:0,0,0 -k1,16290:32583029,25109939:17653408 -g1,16290:32583029,25109939 -) -(1,16294:6630773,25925866:25952256,424439,79822 -(1,16292:6630773,25925866:0,0,0 -g1,16292:6630773,25925866 -g1,16292:6630773,25925866 -g1,16292:6303093,25925866 -(1,16292:6303093,25925866:0,0,0 -) -g1,16292:6630773,25925866 -) -g1,16294:7626635,25925866 -g1,16294:8954451,25925866 -h1,16294:10282267,25925866:0,0,0 -k1,16294:32583029,25925866:22300762 -g1,16294:32583029,25925866 -) -(1,16296:6630773,26741793:25952256,431045,106246 -(1,16295:6630773,26741793:0,0,0 -g1,16295:6630773,26741793 -g1,16295:6630773,26741793 -g1,16295:6303093,26741793 -(1,16295:6303093,26741793:0,0,0 -) -g1,16295:6630773,26741793 -) -k1,16296:6630773,26741793:0 -h1,16296:13601805,26741793:0,0,0 -k1,16296:32583029,26741793:18981224 -g1,16296:32583029,26741793 -) -(1,16300:6630773,27557720:25952256,424439,79822 -(1,16298:6630773,27557720:0,0,0 -g1,16298:6630773,27557720 -g1,16298:6630773,27557720 -g1,16298:6303093,27557720 -(1,16298:6303093,27557720:0,0,0 -) -g1,16298:6630773,27557720 -) -g1,16300:7626635,27557720 -g1,16300:8954451,27557720 -h1,16300:10614221,27557720:0,0,0 -k1,16300:32583029,27557720:21968808 -g1,16300:32583029,27557720 -) -(1,16302:6630773,28373647:25952256,431045,106246 -(1,16301:6630773,28373647:0,0,0 -g1,16301:6630773,28373647 -g1,16301:6630773,28373647 -g1,16301:6303093,28373647 -(1,16301:6303093,28373647:0,0,0 -) -g1,16301:6630773,28373647 -) -k1,16302:6630773,28373647:0 -h1,16302:14597667,28373647:0,0,0 -k1,16302:32583029,28373647:17985362 -g1,16302:32583029,28373647 -) -(1,16307:6630773,29189574:25952256,431045,112852 -(1,16304:6630773,29189574:0,0,0 -g1,16304:6630773,29189574 -g1,16304:6630773,29189574 -g1,16304:6303093,29189574 -(1,16304:6303093,29189574:0,0,0 -) -g1,16304:6630773,29189574 -) -g1,16307:7626635,29189574 -g1,16307:11278128,29189574 -h1,16307:14929621,29189574:0,0,0 -k1,16307:32583029,29189574:17653408 -g1,16307:32583029,29189574 -) -(1,16307:6630773,29874429:25952256,424439,112852 -h1,16307:6630773,29874429:0,0,0 -g1,16307:7626635,29874429 -g1,16307:9950313,29874429 -g1,16307:13601806,29874429 -g1,16307:16589391,29874429 -g1,16307:19576977,29874429 -g1,16307:22896516,29874429 -h1,16307:25220194,29874429:0,0,0 -k1,16307:32583029,29874429:7362835 -g1,16307:32583029,29874429 -) -] -) -g1,16308:32583029,29987281 -g1,16308:6630773,29987281 -g1,16308:6630773,29987281 -g1,16308:32583029,29987281 -g1,16308:32583029,29987281 -) -h1,16308:6630773,30183889:0,0,0 -v1,16312:6630773,31048969:0,393216,0 -(1,16313:6630773,33266789:25952256,2611036,0 -g1,16313:6630773,33266789 -g1,16313:6237557,33266789 -r1,16449:6368629,33266789:131072,2611036,0 -g1,16313:6567858,33266789 -g1,16313:6764466,33266789 -[1,16313:6764466,33266789:25818563,2611036,0 -(1,16313:6764466,31410146:25818563,754393,260573 -(1,16312:6764466,31410146:0,754393,260573 -r1,16449:7856192,31410146:1091726,1014966,260573 -k1,16312:6764466,31410146:-1091726 -) -(1,16312:6764466,31410146:1091726,754393,260573 -) -k1,16312:8128612,31410146:272420 -k1,16312:8456292,31410146:327680 -k1,16312:10511947,31410146:272420 -k1,16312:13103685,31410146:272419 -k1,16312:14770056,31410146:272420 -k1,16312:17357863,31410146:272420 -k1,16312:20226164,31410146:272420 -k1,16312:21690028,31410146:272419 -k1,16312:23166344,31410146:272420 -k1,16312:25866218,31410146:272420 -k1,16312:28319021,31410146:272420 -k1,16312:29339206,31410146:272419 -k1,16312:31189078,31410146:272420 -k1,16312:32583029,31410146:0 -) -(1,16313:6764466,32275226:25818563,513147,126483 -k1,16312:10032716,32275226:242453 -(1,16312:10032716,32275226:0,452978,115847 -r1,16449:13908100,32275226:3875384,568825,115847 -k1,16312:10032716,32275226:-3875384 -) -(1,16312:10032716,32275226:3875384,452978,115847 -k1,16312:10032716,32275226:3277 -h1,16312:13904823,32275226:0,411205,112570 -) -k1,16312:14150552,32275226:242452 -k1,16312:15584450,32275226:242453 -(1,16312:15584450,32275226:0,452978,115847 -r1,16449:19459834,32275226:3875384,568825,115847 -k1,16312:15584450,32275226:-3875384 -) -(1,16312:15584450,32275226:3875384,452978,115847 -k1,16312:15584450,32275226:3277 -h1,16312:19456557,32275226:0,411205,112570 -) -k1,16312:19702286,32275226:242452 -k1,16312:21512360,32275226:242453 -k1,16312:23901115,32275226:242452 -k1,16312:25209839,32275226:242453 -k1,16312:26846242,32275226:242452 -k1,16312:30114492,32275226:242453 -(1,16312:30114492,32275226:0,452978,115847 -r1,16449:32583029,32275226:2468537,568825,115847 -k1,16312:30114492,32275226:-2468537 -) -(1,16312:30114492,32275226:2468537,452978,115847 -k1,16312:30114492,32275226:3277 -h1,16312:32579752,32275226:0,411205,112570 -) -k1,16312:32583029,32275226:0 -) -(1,16313:6764466,33140306:25818563,513147,126483 -g1,16312:8155140,33140306 -(1,16312:8155140,33140306:0,452978,115847 -r1,16449:10623677,33140306:2468537,568825,115847 -k1,16312:8155140,33140306:-2468537 -) -(1,16312:8155140,33140306:2468537,452978,115847 -k1,16312:8155140,33140306:3277 -h1,16312:10620400,33140306:0,411205,112570 -) -g1,16312:10822906,33140306 -g1,16312:12589756,33140306 -g1,16312:13377498,33140306 -g1,16312:14626614,33140306 -g1,16312:18558118,33140306 -k1,16313:32583029,33140306:12104051 -g1,16313:32583029,33140306 -) -] -g1,16313:32583029,33266789 -) -h1,16313:6630773,33266789:0,0,0 -v1,16316:6630773,34131869:0,393216,0 -(1,16449:6630773,43225315:25952256,9486662,0 -g1,16449:6630773,43225315 -g1,16449:6237557,43225315 -r1,16449:6368629,43225315:131072,9486662,0 -g1,16449:6567858,43225315 -g1,16449:6764466,43225315 -[1,16449:6764466,43225315:25818563,9486662,0 -(1,16317:6764466,34440167:25818563,701514,196608 -(1,16316:6764466,34440167:0,701514,196608 -r1,16449:7761522,34440167:997056,898122,196608 -k1,16316:6764466,34440167:-997056 -) -(1,16316:6764466,34440167:997056,701514,196608 -) -k1,16316:8012383,34440167:250861 -k1,16316:8340063,34440167:327680 -k1,16316:9734527,34440167:250861 -k1,16316:10751503,34440167:250860 -k1,16316:14479049,34440167:250861 -k1,16316:17755707,34440167:250861 -k1,16316:19603025,34440167:250861 -k1,16316:23700849,34440167:250861 -k1,16316:25649748,34440167:250861 -k1,16316:29283576,34440167:250860 -k1,16316:31102058,34440167:250861 -k1,16316:31708779,34440167:250861 -k1,16317:32583029,34440167:0 -) -(1,16317:6764466,35305247:25818563,513147,134348 -k1,16316:8623395,35305247:244122 -k1,16316:10422685,35305247:244121 -k1,16316:11934273,35305247:244122 -k1,16316:12966792,35305247:244121 -k1,16316:15468629,35305247:244122 -k1,16316:16909438,35305247:244122 -k1,16316:19284790,35305247:244121 -k1,16316:20476563,35305247:244122 -k1,16316:21923925,35305247:244121 -k1,16316:22699544,35305247:244122 -k1,16316:27248070,35305247:244121 -k1,16316:30127395,35305247:244122 -k1,16316:32583029,35305247:0 -) -(1,16317:6764466,36170327:25818563,505283,134348 -k1,16316:7788226,36170327:214390 -k1,16316:9551232,36170327:214390 -k1,16316:10784707,36170327:214390 -k1,16316:13242393,36170327:214389 -k1,16316:16631347,36170327:214390 -k1,16316:17377234,36170327:214390 -k1,16316:19446293,36170327:214390 -k1,16316:20470053,36170327:214390 -k1,16316:22193082,36170327:214390 -k1,16316:23598917,36170327:214390 -k1,16316:26050051,36170327:214390 -k1,16316:27518144,36170327:214389 -k1,16316:28724094,36170327:214390 -k1,16316:30004755,36170327:214390 -k1,16316:31931601,36170327:214390 -k1,16316:32583029,36170327:0 -) -(1,16317:6764466,37035407:25818563,513147,134348 -g1,16316:7711461,37035407 -g1,16316:8783630,37035407 -g1,16316:9744387,37035407 -g1,16316:11146857,37035407 -g1,16316:14022576,37035407 -g1,16316:17700456,37035407 -g1,16316:18971854,37035407 -g1,16316:19629180,37035407 -g1,16316:20932691,37035407 -g1,16316:21879686,37035407 -g1,16316:24562730,37035407 -g1,16316:25413387,37035407 -k1,16317:32583029,37035407:4278194 -g1,16317:32583029,37035407 -) -(1,16319:6764466,37900487:25818563,505283,134348 -h1,16318:6764466,37900487:983040,0,0 -k1,16318:8848509,37900487:147454 -k1,16318:10471177,37900487:147453 -k1,16318:12953023,37900487:147454 -k1,16318:14540302,37900487:147453 -k1,16318:15972262,37900487:147454 -k1,16318:18209658,37900487:147453 -(1,16318:18209658,37900487:0,459977,115847 -r1,16449:23491889,37900487:5282231,575824,115847 -k1,16318:18209658,37900487:-5282231 -) -(1,16318:18209658,37900487:5282231,459977,115847 -k1,16318:18209658,37900487:3277 -h1,16318:23488612,37900487:0,411205,112570 -) -k1,16318:23639343,37900487:147454 -k1,16318:24596167,37900487:147454 -k1,16318:25099480,37900487:147453 -k1,16318:27058349,37900487:147454 -k1,16318:29033601,37900487:147453 -k1,16318:30200140,37900487:147454 -k1,16318:32583029,37900487:0 -) -(1,16319:6764466,38765567:25818563,513147,134348 -k1,16318:8493406,38765567:173771 -k1,16318:11949875,38765567:173771 -k1,16318:15124541,38765567:173772 -k1,16318:15654172,38765567:173771 -k1,16318:17217306,38765567:173771 -k1,16318:19441043,38765567:173771 -k1,16318:20568364,38765567:173772 -k1,16318:21874597,38765567:173771 -k1,16318:23435110,38765567:173771 -k1,16318:24221643,38765567:173771 -k1,16318:25414500,38765567:173772 -k1,16318:27471120,38765567:173771 -k1,16318:30619570,38765567:173771 -k1,16318:32583029,38765567:0 -) -(1,16319:6764466,39630647:25818563,513147,115847 -k1,16318:9084676,39630647:282040 -k1,16318:9982754,39630647:282040 -k1,16318:11283879,39630647:282040 -(1,16318:11283879,39630647:0,452978,115847 -r1,16449:13752416,39630647:2468537,568825,115847 -k1,16318:11283879,39630647:-2468537 -) -(1,16318:11283879,39630647:2468537,452978,115847 -k1,16318:11283879,39630647:3277 -h1,16318:13749139,39630647:0,411205,112570 -) -k1,16318:14034456,39630647:282040 -k1,16318:17095223,39630647:282040 -k1,16318:18028692,39630647:282041 -k1,16318:22343818,39630647:282040 -k1,16318:23644943,39630647:282040 -k1,16318:27287014,39630647:282040 -k1,16318:28522603,39630647:282040 -k1,16318:30090459,39630647:282040 -k1,16318:31563944,39630647:282040 -k1,16318:32583029,39630647:0 -) -(1,16319:6764466,40495727:25818563,513147,134348 -k1,16318:8219449,40495727:282544 -k1,16318:10791821,40495727:282544 -k1,16318:12022015,40495727:282543 -k1,16318:15024958,40495727:282544 -k1,16318:15923540,40495727:282544 -k1,16318:17378523,40495727:282544 -k1,16318:20423409,40495727:282543 -k1,16318:22447900,40495727:282544 -k1,16318:24522198,40495727:282544 -k1,16318:25823827,40495727:282544 -k1,16318:28852985,40495727:282544 -(1,16318:28852985,40495727:0,414482,115847 -r1,16449:29562963,40495727:709978,530329,115847 -k1,16318:28852985,40495727:-709978 -) -(1,16318:28852985,40495727:709978,414482,115847 -k1,16318:28852985,40495727:3277 -h1,16318:29559686,40495727:0,411205,112570 -) -k1,16318:29845506,40495727:282543 -k1,16318:31649796,40495727:282544 -k1,16318:32583029,40495727:0 -) -(1,16319:6764466,41360807:25818563,505283,134348 -k1,16318:10325931,41360807:256484 -k1,16318:13045913,41360807:256484 -k1,16318:15706912,41360807:256483 -k1,16318:17247902,41360807:256484 -k1,16318:19876134,41360807:256484 -k1,16318:21151703,41360807:256484 -k1,16318:23061660,41360807:256484 -k1,16318:24881177,41360807:256483 -k1,16318:26929415,41360807:256484 -(1,16318:26929415,41360807:0,452978,115847 -r1,16449:30804799,41360807:3875384,568825,115847 -k1,16318:26929415,41360807:-3875384 -) -(1,16318:26929415,41360807:3875384,452978,115847 -k1,16318:26929415,41360807:3277 -h1,16318:30801522,41360807:0,411205,112570 -) -k1,16318:31061283,41360807:256484 -k1,16318:32583029,41360807:0 -) -(1,16319:6764466,42225887:25818563,505283,134348 -k1,16318:8258650,42225887:209678 -k1,16318:10758155,42225887:209677 -k1,16318:11959393,42225887:209678 -k1,16318:14394017,42225887:209677 -k1,16318:15622780,42225887:209678 -k1,16318:17659601,42225887:209677 -k1,16318:20849856,42225887:209678 -k1,16318:24168561,42225887:209677 -k1,16318:25871805,42225887:209678 -k1,16318:26767644,42225887:209677 -(1,16318:26767644,42225887:0,452978,115847 -r1,16449:29236181,42225887:2468537,568825,115847 -k1,16318:26767644,42225887:-2468537 -) -(1,16318:26767644,42225887:2468537,452978,115847 -k1,16318:26767644,42225887:3277 -h1,16318:29232904,42225887:0,411205,112570 -) -k1,16318:29619529,42225887:209678 -k1,16318:31714677,42225887:209677 -k1,16318:32583029,42225887:0 -) -(1,16319:6764466,43090967:25818563,473825,134348 -g1,16318:9397702,43090967 -g1,16318:11332324,43090967 -(1,16318:11332324,43090967:0,452978,115847 -r1,16449:13800861,43090967:2468537,568825,115847 -k1,16318:11332324,43090967:-2468537 -) -(1,16318:11332324,43090967:2468537,452978,115847 -k1,16318:11332324,43090967:3277 -h1,16318:13797584,43090967:0,411205,112570 -) -k1,16319:32583029,43090967:18729740 -g1,16319:32583029,43090967 -) -] -g1,16449:32583029,43225315 -) -] -(1,16449:32583029,45706769:0,0,0 -g1,16449:32583029,45706769 -) -) -] -(1,16449:6630773,47279633:25952256,0,0 -h1,16449:6630773,47279633:25952256,0,0 -) -] -(1,16449:4262630,4025873:0,0,0 -[1,16449:-473656,4025873:0,0,0 -(1,16449:-473656,-710413:0,0,0 -(1,16449:-473656,-710413:0,0,0 -g1,16449:-473656,-710413 -) -g1,16449:-473656,-710413 +g1,16447:6630773,4812305 +k1,16447:23347041,4812305:15520891 +g1,16447:23960458,4812305 +g1,16447:27572802,4812305 +g1,16447:29306229,4812305 +) +) +] +[1,16447:6630773,45706769:25952256,40108032,0 +(1,16447:6630773,45706769:25952256,40108032,0 +(1,16447:6630773,45706769:0,0,0 +g1,16447:6630773,45706769 +) +[1,16447:6630773,45706769:25952256,40108032,0 +v1,16249:6630773,6254097:0,393216,0 +(1,16249:6630773,9508095:25952256,3647214,0 +g1,16249:6630773,9508095 +g1,16249:6237557,9508095 +r1,16447:6368629,9508095:131072,3647214,0 +g1,16249:6567858,9508095 +g1,16249:6764466,9508095 +[1,16249:6764466,9508095:25818563,3647214,0 +(1,16241:6764466,6562395:25818563,701514,196608 +(1,16240:6764466,6562395:0,701514,196608 +r1,16447:7761522,6562395:997056,898122,196608 +k1,16240:6764466,6562395:-997056 +) +(1,16240:6764466,6562395:997056,701514,196608 +) +k1,16240:7975999,6562395:214477 +k1,16240:8303679,6562395:327680 +k1,16240:9714843,6562395:214477 +k1,16240:12194899,6562395:214476 +k1,16240:14895157,6562395:214477 +k1,16240:15768926,6562395:214477 +k1,16240:17517601,6562395:214477 +k1,16240:20082198,6562395:214476 +k1,16240:22998724,6562395:214477 +k1,16240:24022571,6562395:214477 +k1,16240:24651875,6562395:214461 +k1,16240:26949086,6562395:214477 +(1,16240:26949086,6562395:0,452978,115847 +r1,16447:32583029,6562395:5633943,568825,115847 +k1,16240:26949086,6562395:-5633943 +) +(1,16240:26949086,6562395:5633943,452978,115847 +k1,16240:26949086,6562395:3277 +h1,16240:32579752,6562395:0,411205,112570 +) +k1,16240:32583029,6562395:0 +) +(1,16241:6764466,7427475:25818563,513147,126483 +k1,16240:8229072,7427475:180100 +k1,16240:9513454,7427475:180100 +k1,16240:10441320,7427475:180100 +k1,16240:11555963,7427475:180100 +k1,16240:13130014,7427475:180100 +k1,16240:13665974,7427475:180100 +k1,16240:14945768,7427475:180100 +k1,16240:15777295,7427475:180099 +(1,16240:15777295,7427475:0,452978,115847 +r1,16447:18949255,7427475:3171960,568825,115847 +k1,16240:15777295,7427475:-3171960 +) +(1,16240:15777295,7427475:3171960,452978,115847 +k1,16240:15777295,7427475:3277 +h1,16240:18945978,7427475:0,411205,112570 +) +k1,16240:19303025,7427475:180100 +k1,16240:20863969,7427475:180100 +k1,16240:23126803,7427475:180100 +k1,16240:24980037,7427475:180100 +k1,16240:26107788,7427475:180100 +k1,16240:28429605,7427475:180100 +k1,16240:28965565,7427475:180100 +k1,16240:31347675,7427475:180100 +k1,16240:32583029,7427475:0 +) +(1,16241:6764466,8292555:25818563,513147,126483 +g1,16240:7649857,8292555 +g1,16240:9931820,8292555 +(1,16240:9931820,8292555:0,452978,115847 +r1,16447:13103780,8292555:3171960,568825,115847 +k1,16240:9931820,8292555:-3171960 +) +(1,16240:9931820,8292555:3171960,452978,115847 +k1,16240:9931820,8292555:3277 +h1,16240:13100503,8292555:0,411205,112570 +) +g1,16240:13303009,8292555 +g1,16240:15175372,8292555 +g1,16240:16322252,8292555 +g1,16240:17955409,8292555 +g1,16240:18569481,8292555 +(1,16240:18569481,8292555:0,452978,115847 +r1,16447:21038018,8292555:2468537,568825,115847 +k1,16240:18569481,8292555:-2468537 +) +(1,16240:18569481,8292555:2468537,452978,115847 +k1,16240:18569481,8292555:3277 +h1,16240:21034741,8292555:0,411205,112570 +) +g1,16240:21237247,8292555 +k1,16241:32583029,8292555:8508729 +g1,16241:32583029,8292555 +) +v1,16243:6764466,8977410:0,393216,0 +(1,16247:6764466,9311487:25818563,727293,196608 +g1,16247:6764466,9311487 +g1,16247:6764466,9311487 +g1,16247:6567858,9311487 +(1,16247:6567858,9311487:0,727293,196608 +r1,16447:32779637,9311487:26211779,923901,196608 +k1,16247:6567857,9311487:-26211780 +) +(1,16247:6567858,9311487:26211779,727293,196608 +[1,16247:6764466,9311487:25818563,530685,0 +(1,16245:6764466,9205241:25818563,424439,106246 +(1,16244:6764466,9205241:0,0,0 +g1,16244:6764466,9205241 +g1,16244:6764466,9205241 +g1,16244:6436786,9205241 +(1,16244:6436786,9205241:0,0,0 +) +g1,16244:6764466,9205241 +) +k1,16245:6764466,9205241:0 +g1,16245:15063315,9205241 +g1,16245:15727223,9205241 +g1,16245:16723085,9205241 +g1,16245:22366302,9205241 +g1,16245:23030210,9205241 +h1,16245:23694118,9205241:0,0,0 +k1,16245:32583029,9205241:8888911 +g1,16245:32583029,9205241 +) +] +) +g1,16247:32583029,9311487 +g1,16247:6764466,9311487 +g1,16247:6764466,9311487 +g1,16247:32583029,9311487 +g1,16247:32583029,9311487 +) +h1,16247:6764466,9508095:0,0,0 +] +g1,16249:32583029,9508095 +) +h1,16249:6630773,9508095:0,0,0 +v1,16252:6630773,10373175:0,393216,0 +(1,16253:6630773,15097535:25952256,5117576,0 +g1,16253:6630773,15097535 +g1,16253:6237557,15097535 +r1,16447:6368629,15097535:131072,5117576,0 +g1,16253:6567858,15097535 +g1,16253:6764466,15097535 +[1,16253:6764466,15097535:25818563,5117576,0 +(1,16253:6764466,10645652:25818563,665693,196608 +(1,16252:6764466,10645652:0,665693,196608 +r1,16447:7868133,10645652:1103667,862301,196608 +k1,16252:6764466,10645652:-1103667 +) +(1,16252:6764466,10645652:1103667,665693,196608 +) +k1,16252:8072984,10645652:204851 +k1,16252:9390913,10645652:327680 +k1,16252:11132583,10645652:204851 +k1,16252:14122059,10645652:204851 +k1,16252:15274561,10645652:204851 +k1,16252:17621129,10645652:204851 +k1,16252:19017426,10645652:204852 +k1,16252:20611640,10645652:204851 +k1,16252:23023088,10645652:204851 +k1,16252:24971197,10645652:204851 +k1,16252:25792086,10645652:204851 +k1,16252:27505576,10645652:204851 +k1,16252:30884991,10645652:204851 +k1,16252:32583029,10645652:0 +) +(1,16253:6764466,11510732:25818563,513147,126483 +k1,16252:8049496,11510732:218759 +k1,16252:9034371,11510732:218759 +k1,16252:11966321,11510732:218759 +k1,16252:12872554,11510732:218760 +k1,16252:13707351,11510732:218759 +k1,16252:14281970,11510732:218759 +k1,16252:16850850,11510732:218759 +k1,16252:18411786,11510732:218759 +k1,16252:19236098,11510732:218759 +k1,16252:22600585,11510732:218759 +k1,16252:23175204,11510732:218759 +k1,16252:24783327,11510732:218760 +k1,16252:26878382,11510732:218759 +k1,16252:28288586,11510732:218759 +k1,16252:29278048,11510732:218759 +k1,16252:32583029,11510732:0 +) +(1,16253:6764466,12375812:25818563,505283,126483 +k1,16252:8846676,12375812:270795 +k1,16252:10511421,12375812:270794 +k1,16252:11394978,12375812:270795 +k1,16252:13161304,12375812:270794 +k1,16252:14229017,12375812:270795 +k1,16252:16034009,12375812:270794 +k1,16252:17496249,12375812:270795 +k1,16252:19200971,12375812:270794 +k1,16252:20663211,12375812:270795 +k1,16252:22264386,12375812:270794 +k1,16252:23554266,12375812:270795 +k1,16252:25983816,12375812:270794 +k1,16252:27971654,12375812:270795 +k1,16252:29940487,12375812:270795 +k1,16252:31591469,12375812:270794 +k1,16252:32583029,12375812:0 +) +(1,16253:6764466,13240892:25818563,513147,126483 +k1,16252:9545431,13240892:257174 +k1,16252:10408158,13240892:257174 +k1,16252:13811060,13240892:257174 +k1,16252:14424094,13240892:257174 +k1,16252:16070631,13240892:257174 +k1,16252:18204101,13240892:257174 +k1,16252:19652721,13240892:257175 +k1,16252:20680598,13240892:257174 +k1,16252:24242753,13240892:257174 +k1,16252:26311342,13240892:257174 +k1,16252:27962467,13240892:257174 +k1,16252:29869838,13240892:257174 +k1,16252:32583029,13240892:0 +) +(1,16253:6764466,14105972:25818563,513147,126483 +k1,16252:8374725,14105972:167812 +k1,16252:9675000,14105972:167813 +k1,16252:10530285,14105972:167812 +k1,16252:11314136,14105972:167813 +k1,16252:12501033,14105972:167812 +k1,16252:14483538,14105972:167813 +k1,16252:15310642,14105972:167812 +k1,16252:16497539,14105972:167812 +k1,16252:17080164,14105972:167782 +k1,16252:19668221,14105972:167812 +k1,16252:21027478,14105972:167812 +k1,16252:22629219,14105972:167813 +k1,16252:23988476,14105972:167812 +k1,16252:25486670,14105972:167813 +k1,16252:26673567,14105972:167812 +k1,16252:29000136,14105972:167813 +k1,16252:30884991,14105972:167812 +k1,16252:32583029,14105972:0 +) +(1,16253:6764466,14971052:25818563,505283,126483 +g1,16252:8343883,14971052 +g1,16252:9534672,14971052 +k1,16253:32583029,14971052:20645808 +g1,16253:32583029,14971052 +) +] +g1,16253:32583029,15097535 +) +h1,16253:6630773,15097535:0,0,0 +(1,16256:6630773,15962615:25952256,513147,115847 +h1,16255:6630773,15962615:983040,0,0 +g1,16255:9284981,15962615 +g1,16255:11690807,15962615 +g1,16255:12994318,15962615 +g1,16255:13941313,15962615 +g1,16255:17301343,15962615 +g1,16255:18768038,15962615 +g1,16255:21108984,15962615 +g1,16255:22702164,15962615 +(1,16255:22702164,15962615:0,452978,115847 +r1,16447:26577548,15962615:3875384,568825,115847 +k1,16255:22702164,15962615:-3875384 +) +(1,16255:22702164,15962615:3875384,452978,115847 +k1,16255:22702164,15962615:3277 +h1,16255:26574271,15962615:0,411205,112570 +) +k1,16256:32583029,15962615:5953053 +g1,16256:32583029,15962615 +) +v1,16258:6630773,16647470:0,393216,0 +(1,16279:6630773,22444104:25952256,6189850,196608 +g1,16279:6630773,22444104 +g1,16279:6630773,22444104 +g1,16279:6434165,22444104 +(1,16279:6434165,22444104:0,6189850,196608 +r1,16447:32779637,22444104:26345472,6386458,196608 +k1,16279:6434165,22444104:-26345472 +) +(1,16279:6434165,22444104:26345472,6189850,196608 +[1,16279:6630773,22444104:25952256,5993242,0 +(1,16260:6630773,16881907:25952256,431045,106246 +(1,16259:6630773,16881907:0,0,0 +g1,16259:6630773,16881907 +g1,16259:6630773,16881907 +g1,16259:6303093,16881907 +(1,16259:6303093,16881907:0,0,0 +) +g1,16259:6630773,16881907 +) +g1,16260:10282266,16881907 +g1,16260:11278128,16881907 +k1,16260:11278128,16881907:0 +h1,16260:16589391,16881907:0,0,0 +k1,16260:32583029,16881907:15993638 +g1,16260:32583029,16881907 +) +(1,16261:6630773,17566762:25952256,431045,106246 +h1,16261:6630773,17566762:0,0,0 +k1,16261:6630773,17566762:0 +h1,16261:14929621,17566762:0,0,0 +k1,16261:32583029,17566762:17653408 +g1,16261:32583029,17566762 +) +(1,16265:6630773,18382689:25952256,424439,79822 +(1,16263:6630773,18382689:0,0,0 +g1,16263:6630773,18382689 +g1,16263:6630773,18382689 +g1,16263:6303093,18382689 +(1,16263:6303093,18382689:0,0,0 +) +g1,16263:6630773,18382689 +) +g1,16265:7626635,18382689 +g1,16265:8954451,18382689 +h1,16265:10282267,18382689:0,0,0 +k1,16265:32583029,18382689:22300762 +g1,16265:32583029,18382689 +) +(1,16267:6630773,19198616:25952256,424439,106246 +(1,16266:6630773,19198616:0,0,0 +g1,16266:6630773,19198616 +g1,16266:6630773,19198616 +g1,16266:6303093,19198616 +(1,16266:6303093,19198616:0,0,0 +) +g1,16266:6630773,19198616 +) +k1,16267:6630773,19198616:0 +h1,16267:13601805,19198616:0,0,0 +k1,16267:32583029,19198616:18981224 +g1,16267:32583029,19198616 +) +(1,16271:6630773,20014543:25952256,424439,79822 +(1,16269:6630773,20014543:0,0,0 +g1,16269:6630773,20014543 +g1,16269:6630773,20014543 +g1,16269:6303093,20014543 +(1,16269:6303093,20014543:0,0,0 +) +g1,16269:6630773,20014543 +) +g1,16271:7626635,20014543 +g1,16271:8954451,20014543 +h1,16271:10282267,20014543:0,0,0 +k1,16271:32583029,20014543:22300762 +g1,16271:32583029,20014543 +) +(1,16273:6630773,20830470:25952256,424439,106246 +(1,16272:6630773,20830470:0,0,0 +g1,16272:6630773,20830470 +g1,16272:6630773,20830470 +g1,16272:6303093,20830470 +(1,16272:6303093,20830470:0,0,0 +) +g1,16272:6630773,20830470 +) +k1,16273:6630773,20830470:0 +h1,16273:14597667,20830470:0,0,0 +k1,16273:32583029,20830470:17985362 +g1,16273:32583029,20830470 +) +(1,16278:6630773,21646397:25952256,431045,112852 +(1,16275:6630773,21646397:0,0,0 +g1,16275:6630773,21646397 +g1,16275:6630773,21646397 +g1,16275:6303093,21646397 +(1,16275:6303093,21646397:0,0,0 +) +g1,16275:6630773,21646397 +) +g1,16278:7626635,21646397 +g1,16278:9950313,21646397 +h1,16278:13601806,21646397:0,0,0 +k1,16278:32583030,21646397:18981224 +g1,16278:32583030,21646397 +) +(1,16278:6630773,22331252:25952256,424439,112852 +h1,16278:6630773,22331252:0,0,0 +g1,16278:7626635,22331252 +g1,16278:9950313,22331252 +g1,16278:13601806,22331252 +g1,16278:16589391,22331252 +g1,16278:19576977,22331252 +g1,16278:22896516,22331252 +h1,16278:25220194,22331252:0,0,0 +k1,16278:32583029,22331252:7362835 +g1,16278:32583029,22331252 +) +] +) +g1,16279:32583029,22444104 +g1,16279:6630773,22444104 +g1,16279:6630773,22444104 +g1,16279:32583029,22444104 +g1,16279:32583029,22444104 +) +h1,16279:6630773,22640712:0,0,0 +(1,16283:6630773,23505792:25952256,513147,115847 +h1,16282:6630773,23505792:983040,0,0 +g1,16282:10132361,23505792 +g1,16282:11435872,23505792 +g1,16282:12382867,23505792 +g1,16282:15742897,23505792 +g1,16282:17209592,23505792 +g1,16282:19205818,23505792 +g1,16282:23174678,23505792 +g1,16282:24767858,23505792 +(1,16282:24767858,23505792:0,459977,115847 +r1,16447:30050089,23505792:5282231,575824,115847 +k1,16282:24767858,23505792:-5282231 +) +(1,16282:24767858,23505792:5282231,459977,115847 +k1,16282:24767858,23505792:3277 +h1,16282:30046812,23505792:0,411205,112570 +) +k1,16283:32583029,23505792:2480512 +g1,16283:32583029,23505792 +) +v1,16285:6630773,24190647:0,393216,0 +(1,16306:6630773,29987281:25952256,6189850,196608 +g1,16306:6630773,29987281 +g1,16306:6630773,29987281 +g1,16306:6434165,29987281 +(1,16306:6434165,29987281:0,6189850,196608 +r1,16447:32779637,29987281:26345472,6386458,196608 +k1,16306:6434165,29987281:-26345472 +) +(1,16306:6434165,29987281:26345472,6189850,196608 +[1,16306:6630773,29987281:25952256,5993242,0 +(1,16287:6630773,24425084:25952256,431045,106246 +(1,16286:6630773,24425084:0,0,0 +g1,16286:6630773,24425084 +g1,16286:6630773,24425084 +g1,16286:6303093,24425084 +(1,16286:6303093,24425084:0,0,0 +) +g1,16286:6630773,24425084 +) +g1,16287:10282266,24425084 +g1,16287:11278128,24425084 +k1,16287:11278128,24425084:0 +h1,16287:17917207,24425084:0,0,0 +k1,16287:32583029,24425084:14665822 +g1,16287:32583029,24425084 +) +(1,16288:6630773,25109939:25952256,431045,106246 +h1,16288:6630773,25109939:0,0,0 +k1,16288:6630773,25109939:0 +h1,16288:14929621,25109939:0,0,0 +k1,16288:32583029,25109939:17653408 +g1,16288:32583029,25109939 +) +(1,16292:6630773,25925866:25952256,424439,79822 +(1,16290:6630773,25925866:0,0,0 +g1,16290:6630773,25925866 +g1,16290:6630773,25925866 +g1,16290:6303093,25925866 +(1,16290:6303093,25925866:0,0,0 +) +g1,16290:6630773,25925866 +) +g1,16292:7626635,25925866 +g1,16292:8954451,25925866 +h1,16292:10282267,25925866:0,0,0 +k1,16292:32583029,25925866:22300762 +g1,16292:32583029,25925866 +) +(1,16294:6630773,26741793:25952256,431045,106246 +(1,16293:6630773,26741793:0,0,0 +g1,16293:6630773,26741793 +g1,16293:6630773,26741793 +g1,16293:6303093,26741793 +(1,16293:6303093,26741793:0,0,0 +) +g1,16293:6630773,26741793 +) +k1,16294:6630773,26741793:0 +h1,16294:13601805,26741793:0,0,0 +k1,16294:32583029,26741793:18981224 +g1,16294:32583029,26741793 +) +(1,16298:6630773,27557720:25952256,424439,79822 +(1,16296:6630773,27557720:0,0,0 +g1,16296:6630773,27557720 +g1,16296:6630773,27557720 +g1,16296:6303093,27557720 +(1,16296:6303093,27557720:0,0,0 +) +g1,16296:6630773,27557720 +) +g1,16298:7626635,27557720 +g1,16298:8954451,27557720 +h1,16298:10614221,27557720:0,0,0 +k1,16298:32583029,27557720:21968808 +g1,16298:32583029,27557720 +) +(1,16300:6630773,28373647:25952256,431045,106246 +(1,16299:6630773,28373647:0,0,0 +g1,16299:6630773,28373647 +g1,16299:6630773,28373647 +g1,16299:6303093,28373647 +(1,16299:6303093,28373647:0,0,0 +) +g1,16299:6630773,28373647 +) +k1,16300:6630773,28373647:0 +h1,16300:14597667,28373647:0,0,0 +k1,16300:32583029,28373647:17985362 +g1,16300:32583029,28373647 +) +(1,16305:6630773,29189574:25952256,431045,112852 +(1,16302:6630773,29189574:0,0,0 +g1,16302:6630773,29189574 +g1,16302:6630773,29189574 +g1,16302:6303093,29189574 +(1,16302:6303093,29189574:0,0,0 +) +g1,16302:6630773,29189574 +) +g1,16305:7626635,29189574 +g1,16305:11278128,29189574 +h1,16305:14929621,29189574:0,0,0 +k1,16305:32583029,29189574:17653408 +g1,16305:32583029,29189574 +) +(1,16305:6630773,29874429:25952256,424439,112852 +h1,16305:6630773,29874429:0,0,0 +g1,16305:7626635,29874429 +g1,16305:9950313,29874429 +g1,16305:13601806,29874429 +g1,16305:16589391,29874429 +g1,16305:19576977,29874429 +g1,16305:22896516,29874429 +h1,16305:25220194,29874429:0,0,0 +k1,16305:32583029,29874429:7362835 +g1,16305:32583029,29874429 +) +] +) +g1,16306:32583029,29987281 +g1,16306:6630773,29987281 +g1,16306:6630773,29987281 +g1,16306:32583029,29987281 +g1,16306:32583029,29987281 +) +h1,16306:6630773,30183889:0,0,0 +v1,16310:6630773,31048969:0,393216,0 +(1,16311:6630773,33266789:25952256,2611036,0 +g1,16311:6630773,33266789 +g1,16311:6237557,33266789 +r1,16447:6368629,33266789:131072,2611036,0 +g1,16311:6567858,33266789 +g1,16311:6764466,33266789 +[1,16311:6764466,33266789:25818563,2611036,0 +(1,16311:6764466,31410146:25818563,754393,260573 +(1,16310:6764466,31410146:0,754393,260573 +r1,16447:7856192,31410146:1091726,1014966,260573 +k1,16310:6764466,31410146:-1091726 +) +(1,16310:6764466,31410146:1091726,754393,260573 +) +k1,16310:8128612,31410146:272420 +k1,16310:8456292,31410146:327680 +k1,16310:10511947,31410146:272420 +k1,16310:13103685,31410146:272419 +k1,16310:14770056,31410146:272420 +k1,16310:17357863,31410146:272420 +k1,16310:20226164,31410146:272420 +k1,16310:21690028,31410146:272419 +k1,16310:23166344,31410146:272420 +k1,16310:25866218,31410146:272420 +k1,16310:28319021,31410146:272420 +k1,16310:29339206,31410146:272419 +k1,16310:31189078,31410146:272420 +k1,16310:32583029,31410146:0 +) +(1,16311:6764466,32275226:25818563,513147,126483 +k1,16310:10032716,32275226:242453 +(1,16310:10032716,32275226:0,452978,115847 +r1,16447:13908100,32275226:3875384,568825,115847 +k1,16310:10032716,32275226:-3875384 +) +(1,16310:10032716,32275226:3875384,452978,115847 +k1,16310:10032716,32275226:3277 +h1,16310:13904823,32275226:0,411205,112570 +) +k1,16310:14150552,32275226:242452 +k1,16310:15584450,32275226:242453 +(1,16310:15584450,32275226:0,452978,115847 +r1,16447:19459834,32275226:3875384,568825,115847 +k1,16310:15584450,32275226:-3875384 +) +(1,16310:15584450,32275226:3875384,452978,115847 +k1,16310:15584450,32275226:3277 +h1,16310:19456557,32275226:0,411205,112570 +) +k1,16310:19702286,32275226:242452 +k1,16310:21512360,32275226:242453 +k1,16310:23901115,32275226:242452 +k1,16310:25209839,32275226:242453 +k1,16310:26846242,32275226:242452 +k1,16310:30114492,32275226:242453 +(1,16310:30114492,32275226:0,452978,115847 +r1,16447:32583029,32275226:2468537,568825,115847 +k1,16310:30114492,32275226:-2468537 +) +(1,16310:30114492,32275226:2468537,452978,115847 +k1,16310:30114492,32275226:3277 +h1,16310:32579752,32275226:0,411205,112570 +) +k1,16310:32583029,32275226:0 +) +(1,16311:6764466,33140306:25818563,513147,126483 +g1,16310:8155140,33140306 +(1,16310:8155140,33140306:0,452978,115847 +r1,16447:10623677,33140306:2468537,568825,115847 +k1,16310:8155140,33140306:-2468537 +) +(1,16310:8155140,33140306:2468537,452978,115847 +k1,16310:8155140,33140306:3277 +h1,16310:10620400,33140306:0,411205,112570 +) +g1,16310:10822906,33140306 +g1,16310:12589756,33140306 +g1,16310:13377498,33140306 +g1,16310:14626614,33140306 +g1,16310:18558118,33140306 +k1,16311:32583029,33140306:12104051 +g1,16311:32583029,33140306 +) +] +g1,16311:32583029,33266789 +) +h1,16311:6630773,33266789:0,0,0 +v1,16314:6630773,34131869:0,393216,0 +(1,16447:6630773,43225315:25952256,9486662,0 +g1,16447:6630773,43225315 +g1,16447:6237557,43225315 +r1,16447:6368629,43225315:131072,9486662,0 +g1,16447:6567858,43225315 +g1,16447:6764466,43225315 +[1,16447:6764466,43225315:25818563,9486662,0 +(1,16315:6764466,34440167:25818563,701514,196608 +(1,16314:6764466,34440167:0,701514,196608 +r1,16447:7761522,34440167:997056,898122,196608 +k1,16314:6764466,34440167:-997056 +) +(1,16314:6764466,34440167:997056,701514,196608 +) +k1,16314:8012383,34440167:250861 +k1,16314:8340063,34440167:327680 +k1,16314:9734527,34440167:250861 +k1,16314:10751503,34440167:250860 +k1,16314:14479049,34440167:250861 +k1,16314:17755707,34440167:250861 +k1,16314:19603025,34440167:250861 +k1,16314:23700849,34440167:250861 +k1,16314:25649748,34440167:250861 +k1,16314:29283576,34440167:250860 +k1,16314:31102058,34440167:250861 +k1,16314:31708779,34440167:250861 +k1,16315:32583029,34440167:0 +) +(1,16315:6764466,35305247:25818563,513147,134348 +k1,16314:8623395,35305247:244122 +k1,16314:10422685,35305247:244121 +k1,16314:11934273,35305247:244122 +k1,16314:12966792,35305247:244121 +k1,16314:15468629,35305247:244122 +k1,16314:16909438,35305247:244122 +k1,16314:19284790,35305247:244121 +k1,16314:20476563,35305247:244122 +k1,16314:21923925,35305247:244121 +k1,16314:22699544,35305247:244122 +k1,16314:27248070,35305247:244121 +k1,16314:30127395,35305247:244122 +k1,16314:32583029,35305247:0 +) +(1,16315:6764466,36170327:25818563,505283,134348 +k1,16314:7788226,36170327:214390 +k1,16314:9551232,36170327:214390 +k1,16314:10784707,36170327:214390 +k1,16314:13242393,36170327:214389 +k1,16314:16631347,36170327:214390 +k1,16314:17377234,36170327:214390 +k1,16314:19446293,36170327:214390 +k1,16314:20470053,36170327:214390 +k1,16314:22193082,36170327:214390 +k1,16314:23598917,36170327:214390 +k1,16314:26050051,36170327:214390 +k1,16314:27518144,36170327:214389 +k1,16314:28724094,36170327:214390 +k1,16314:30004755,36170327:214390 +k1,16314:31931601,36170327:214390 +k1,16314:32583029,36170327:0 +) +(1,16315:6764466,37035407:25818563,513147,134348 +g1,16314:7711461,37035407 +g1,16314:8783630,37035407 +g1,16314:9744387,37035407 +g1,16314:11146857,37035407 +g1,16314:14022576,37035407 +g1,16314:17700456,37035407 +g1,16314:18971854,37035407 +g1,16314:19629180,37035407 +g1,16314:20932691,37035407 +g1,16314:21879686,37035407 +g1,16314:24562730,37035407 +g1,16314:25413387,37035407 +k1,16315:32583029,37035407:4278194 +g1,16315:32583029,37035407 +) +(1,16317:6764466,37900487:25818563,505283,134348 +h1,16316:6764466,37900487:983040,0,0 +k1,16316:8848509,37900487:147454 +k1,16316:10471177,37900487:147453 +k1,16316:12953023,37900487:147454 +k1,16316:14540302,37900487:147453 +k1,16316:15972262,37900487:147454 +k1,16316:18209658,37900487:147453 +(1,16316:18209658,37900487:0,459977,115847 +r1,16447:23491889,37900487:5282231,575824,115847 +k1,16316:18209658,37900487:-5282231 +) +(1,16316:18209658,37900487:5282231,459977,115847 +k1,16316:18209658,37900487:3277 +h1,16316:23488612,37900487:0,411205,112570 +) +k1,16316:23639343,37900487:147454 +k1,16316:24596167,37900487:147454 +k1,16316:25099480,37900487:147453 +k1,16316:27058349,37900487:147454 +k1,16316:29033601,37900487:147453 +k1,16316:30200140,37900487:147454 +k1,16316:32583029,37900487:0 +) +(1,16317:6764466,38765567:25818563,513147,134348 +k1,16316:8493406,38765567:173771 +k1,16316:11949875,38765567:173771 +k1,16316:15124541,38765567:173772 +k1,16316:15654172,38765567:173771 +k1,16316:17217306,38765567:173771 +k1,16316:19441043,38765567:173771 +k1,16316:20568364,38765567:173772 +k1,16316:21874597,38765567:173771 +k1,16316:23435110,38765567:173771 +k1,16316:24221643,38765567:173771 +k1,16316:25414500,38765567:173772 +k1,16316:27471120,38765567:173771 +k1,16316:30619570,38765567:173771 +k1,16316:32583029,38765567:0 +) +(1,16317:6764466,39630647:25818563,513147,115847 +k1,16316:9084676,39630647:282040 +k1,16316:9982754,39630647:282040 +k1,16316:11283879,39630647:282040 +(1,16316:11283879,39630647:0,452978,115847 +r1,16447:13752416,39630647:2468537,568825,115847 +k1,16316:11283879,39630647:-2468537 +) +(1,16316:11283879,39630647:2468537,452978,115847 +k1,16316:11283879,39630647:3277 +h1,16316:13749139,39630647:0,411205,112570 +) +k1,16316:14034456,39630647:282040 +k1,16316:17095223,39630647:282040 +k1,16316:18028692,39630647:282041 +k1,16316:22343818,39630647:282040 +k1,16316:23644943,39630647:282040 +k1,16316:27287014,39630647:282040 +k1,16316:28522603,39630647:282040 +k1,16316:30090459,39630647:282040 +k1,16316:31563944,39630647:282040 +k1,16316:32583029,39630647:0 +) +(1,16317:6764466,40495727:25818563,513147,134348 +k1,16316:8219449,40495727:282544 +k1,16316:10791821,40495727:282544 +k1,16316:12022015,40495727:282543 +k1,16316:15024958,40495727:282544 +k1,16316:15923540,40495727:282544 +k1,16316:17378523,40495727:282544 +k1,16316:20423409,40495727:282543 +k1,16316:22447900,40495727:282544 +k1,16316:24522198,40495727:282544 +k1,16316:25823827,40495727:282544 +k1,16316:28852985,40495727:282544 +(1,16316:28852985,40495727:0,414482,115847 +r1,16447:29562963,40495727:709978,530329,115847 +k1,16316:28852985,40495727:-709978 +) +(1,16316:28852985,40495727:709978,414482,115847 +k1,16316:28852985,40495727:3277 +h1,16316:29559686,40495727:0,411205,112570 +) +k1,16316:29845506,40495727:282543 +k1,16316:31649796,40495727:282544 +k1,16316:32583029,40495727:0 +) +(1,16317:6764466,41360807:25818563,505283,134348 +k1,16316:10325931,41360807:256484 +k1,16316:13045913,41360807:256484 +k1,16316:15706912,41360807:256483 +k1,16316:17247902,41360807:256484 +k1,16316:19876134,41360807:256484 +k1,16316:21151703,41360807:256484 +k1,16316:23061660,41360807:256484 +k1,16316:24881177,41360807:256483 +k1,16316:26929415,41360807:256484 +(1,16316:26929415,41360807:0,452978,115847 +r1,16447:30804799,41360807:3875384,568825,115847 +k1,16316:26929415,41360807:-3875384 +) +(1,16316:26929415,41360807:3875384,452978,115847 +k1,16316:26929415,41360807:3277 +h1,16316:30801522,41360807:0,411205,112570 +) +k1,16316:31061283,41360807:256484 +k1,16316:32583029,41360807:0 +) +(1,16317:6764466,42225887:25818563,505283,134348 +k1,16316:8258650,42225887:209678 +k1,16316:10758155,42225887:209677 +k1,16316:11959393,42225887:209678 +k1,16316:14394017,42225887:209677 +k1,16316:15622780,42225887:209678 +k1,16316:17659601,42225887:209677 +k1,16316:20849856,42225887:209678 +k1,16316:24168561,42225887:209677 +k1,16316:25871805,42225887:209678 +k1,16316:26767644,42225887:209677 +(1,16316:26767644,42225887:0,452978,115847 +r1,16447:29236181,42225887:2468537,568825,115847 +k1,16316:26767644,42225887:-2468537 +) +(1,16316:26767644,42225887:2468537,452978,115847 +k1,16316:26767644,42225887:3277 +h1,16316:29232904,42225887:0,411205,112570 +) +k1,16316:29619529,42225887:209678 +k1,16316:31714677,42225887:209677 +k1,16316:32583029,42225887:0 +) +(1,16317:6764466,43090967:25818563,473825,134348 +g1,16316:9397702,43090967 +g1,16316:11332324,43090967 +(1,16316:11332324,43090967:0,452978,115847 +r1,16447:13800861,43090967:2468537,568825,115847 +k1,16316:11332324,43090967:-2468537 +) +(1,16316:11332324,43090967:2468537,452978,115847 +k1,16316:11332324,43090967:3277 +h1,16316:13797584,43090967:0,411205,112570 +) +k1,16317:32583029,43090967:18729740 +g1,16317:32583029,43090967 +) +] +g1,16447:32583029,43225315 +) +] +(1,16447:32583029,45706769:0,0,0 +g1,16447:32583029,45706769 +) +) +] +(1,16447:6630773,47279633:25952256,0,0 +h1,16447:6630773,47279633:25952256,0,0 +) +] +(1,16447:4262630,4025873:0,0,0 +[1,16447:-473656,4025873:0,0,0 +(1,16447:-473656,-710413:0,0,0 +(1,16447:-473656,-710413:0,0,0 +g1,16447:-473656,-710413 +) +g1,16447:-473656,-710413 ) ] ) ] !28659 -}265 +}266 !12 -{266 -[1,16449:4262630,47279633:28320399,43253760,0 -(1,16449:4262630,4025873:0,0,0 -[1,16449:-473656,4025873:0,0,0 -(1,16449:-473656,-710413:0,0,0 -(1,16449:-473656,-644877:0,0,0 -k1,16449:-473656,-644877:-65536 +{267 +[1,16447:4262630,47279633:28320399,43253760,0 +(1,16447:4262630,4025873:0,0,0 +[1,16447:-473656,4025873:0,0,0 +(1,16447:-473656,-710413:0,0,0 +(1,16447:-473656,-644877:0,0,0 +k1,16447:-473656,-644877:-65536 ) -(1,16449:-473656,4736287:0,0,0 -k1,16449:-473656,4736287:5209943 +(1,16447:-473656,4736287:0,0,0 +k1,16447:-473656,4736287:5209943 ) -g1,16449:-473656,-710413 +g1,16447:-473656,-710413 ) ] ) -[1,16449:6630773,47279633:25952256,43253760,0 -[1,16449:6630773,4812305:25952256,786432,0 -(1,16449:6630773,4812305:25952256,538806,132808 -(1,16449:6630773,4812305:25952256,538806,132808 -g1,16449:3078558,4812305 -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,2439708:0,1703936,0 -k1,16449:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16449:2537886,2439708:1179648,16384,0 +[1,16447:6630773,47279633:25952256,43253760,0 +[1,16447:6630773,4812305:25952256,786432,0 +(1,16447:6630773,4812305:25952256,538806,132808 +(1,16447:6630773,4812305:25952256,538806,132808 +g1,16447:3078558,4812305 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,2439708:0,1703936,0 +k1,16447:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16447:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16449:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16447:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,2439708:0,1703936,0 -g1,16449:29030814,2439708 -g1,16449:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16449:36151628,1915420:16384,1179648,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,2439708:0,1703936,0 +g1,16447:29030814,2439708 +g1,16447:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16447:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16449:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16447:37855564,2439708:1179648,16384,0 ) ) -k1,16449:3078556,2439708:-34777008 +k1,16447:3078556,2439708:-34777008 ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,49800853:0,16384,2228224 -k1,16449:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16449:2537886,49800853:1179648,16384,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,49800853:0,16384,2228224 +k1,16447:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16447:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16449:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16447:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16449:3078558,4812305:0,0,0 -(1,16449:3078558,49800853:0,16384,2228224 -g1,16449:29030814,49800853 -g1,16449:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16449:36151628,51504789:16384,1179648,0 +[1,16447:3078558,4812305:0,0,0 +(1,16447:3078558,49800853:0,16384,2228224 +g1,16447:29030814,49800853 +g1,16447:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16447:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16449:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16447:37855564,49800853:1179648,16384,0 ) ) -k1,16449:3078556,49800853:-34777008 +k1,16447:3078556,49800853:-34777008 ) ] -g1,16449:6630773,4812305 -g1,16449:6630773,4812305 -g1,16449:11156689,4812305 -g1,16449:12279976,4812305 -g1,16449:16628629,4812305 -k1,16449:31387652,4812305:14759023 -) -) -] -[1,16449:6630773,45706769:25952256,40108032,0 -(1,16449:6630773,45706769:25952256,40108032,0 -(1,16449:6630773,45706769:0,0,0 -g1,16449:6630773,45706769 +g1,16447:6630773,4812305 +g1,16447:6630773,4812305 +g1,16447:11156689,4812305 +g1,16447:12279976,4812305 +g1,16447:16628629,4812305 +k1,16447:31387652,4812305:14759023 +) +) +] +[1,16447:6630773,45706769:25952256,40108032,0 +(1,16447:6630773,45706769:25952256,40108032,0 +(1,16447:6630773,45706769:0,0,0 +g1,16447:6630773,45706769 ) -[1,16449:6630773,45706769:25952256,40108032,0 -v1,16449:6630773,6254097:0,393216,0 -(1,16449:6630773,45706769:25952256,39845888,0 -g1,16449:6630773,45706769 -g1,16449:6237557,45706769 -r1,16449:6368629,45706769:131072,39845888,0 -g1,16449:6567858,45706769 -g1,16449:6764466,45706769 -[1,16449:6764466,45706769:25818563,39845888,0 -v1,16321:6764466,6254097:0,393216,0 -(1,16349:6764466,14327804:25818563,8466923,196608 -g1,16349:6764466,14327804 -g1,16349:6764466,14327804 -g1,16349:6567858,14327804 -(1,16349:6567858,14327804:0,8466923,196608 -r1,16449:32779637,14327804:26211779,8663531,196608 -k1,16349:6567857,14327804:-26211780 -) -(1,16349:6567858,14327804:26211779,8466923,196608 -[1,16349:6764466,14327804:25818563,8270315,0 -(1,16323:6764466,6481928:25818563,424439,106246 -(1,16322:6764466,6481928:0,0,0 -g1,16322:6764466,6481928 -g1,16322:6764466,6481928 -g1,16322:6436786,6481928 -(1,16322:6436786,6481928:0,0,0 -) -g1,16322:6764466,6481928 -) -k1,16323:6764466,6481928:0 -h1,16323:10747914,6481928:0,0,0 -k1,16323:32583030,6481928:21835116 -g1,16323:32583030,6481928 -) -(1,16327:6764466,7297855:25818563,431045,79822 -(1,16325:6764466,7297855:0,0,0 -g1,16325:6764466,7297855 -g1,16325:6764466,7297855 -g1,16325:6436786,7297855 -(1,16325:6436786,7297855:0,0,0 -) -g1,16325:6764466,7297855 -) -g1,16327:7760328,7297855 -g1,16327:9088144,7297855 -g1,16327:12075729,7297855 -g1,16327:12407683,7297855 -g1,16327:12739637,7297855 -g1,16327:13071591,7297855 -g1,16327:13403545,7297855 -g1,16327:15395269,7297855 -g1,16327:15727223,7297855 -g1,16327:16059177,7297855 -g1,16327:16391131,7297855 -g1,16327:16723085,7297855 -g1,16327:17055039,7297855 -g1,16327:17386993,7297855 -g1,16327:17718947,7297855 -h1,16327:21702394,7297855:0,0,0 -k1,16327:32583029,7297855:10880635 -g1,16327:32583029,7297855 -) -(1,16329:6764466,8113782:25818563,431045,106246 -(1,16328:6764466,8113782:0,0,0 -g1,16328:6764466,8113782 -g1,16328:6764466,8113782 -g1,16328:6436786,8113782 -(1,16328:6436786,8113782:0,0,0 -) -g1,16328:6764466,8113782 -) -k1,16329:6764466,8113782:0 -h1,16329:12407683,8113782:0,0,0 -k1,16329:32583029,8113782:20175346 -g1,16329:32583029,8113782 -) -(1,16333:6764466,8929709:25818563,431045,79822 -(1,16331:6764466,8929709:0,0,0 -g1,16331:6764466,8929709 -g1,16331:6764466,8929709 -g1,16331:6436786,8929709 -(1,16331:6436786,8929709:0,0,0 -) -g1,16331:6764466,8929709 -) -g1,16333:7760328,8929709 -g1,16333:9088144,8929709 -h1,16333:13071591,8929709:0,0,0 -k1,16333:32583029,8929709:19511438 -g1,16333:32583029,8929709 -) -(1,16335:6764466,9745636:25818563,431045,106246 -(1,16334:6764466,9745636:0,0,0 -g1,16334:6764466,9745636 -g1,16334:6764466,9745636 -g1,16334:6436786,9745636 -(1,16334:6436786,9745636:0,0,0 -) -g1,16334:6764466,9745636 -) -g1,16335:8756190,9745636 -g1,16335:9752052,9745636 -h1,16335:13071591,9745636:0,0,0 -k1,16335:32583029,9745636:19511438 -g1,16335:32583029,9745636 -) -(1,16342:6764466,10561563:25818563,424439,112852 -(1,16337:6764466,10561563:0,0,0 -g1,16337:6764466,10561563 -g1,16337:6764466,10561563 -g1,16337:6436786,10561563 -(1,16337:6436786,10561563:0,0,0 -) -g1,16337:6764466,10561563 -) -g1,16342:7760328,10561563 -g1,16342:8092282,10561563 -g1,16342:8424236,10561563 -g1,16342:8756190,10561563 -g1,16342:9088144,10561563 -g1,16342:9420098,10561563 -g1,16342:11411822,10561563 -g1,16342:14067454,10561563 -h1,16342:16723085,10561563:0,0,0 -k1,16342:32583029,10561563:15859944 -g1,16342:32583029,10561563 -) -(1,16342:6764466,11246418:25818563,424439,86428 -h1,16342:6764466,11246418:0,0,0 -g1,16342:7760328,11246418 -g1,16342:9420098,11246418 -g1,16342:9752052,11246418 -g1,16342:11411822,11246418 -g1,16342:11743776,11246418 -g1,16342:12075730,11246418 -g1,16342:12407684,11246418 -g1,16342:14067454,11246418 -g1,16342:14399408,11246418 -g1,16342:14731362,11246418 -g1,16342:15063316,11246418 -g1,16342:15395270,11246418 -h1,16342:16723086,11246418:0,0,0 -k1,16342:32583029,11246418:15859943 -g1,16342:32583029,11246418 -) -(1,16342:6764466,11931273:25818563,424439,86428 -h1,16342:6764466,11931273:0,0,0 -g1,16342:7760328,11931273 -g1,16342:9420098,11931273 -g1,16342:9752052,11931273 -g1,16342:11411822,11931273 -g1,16342:11743776,11931273 -g1,16342:12075730,11931273 -g1,16342:12407684,11931273 -g1,16342:14067454,11931273 -g1,16342:14399408,11931273 -g1,16342:14731362,11931273 -g1,16342:15063316,11931273 -g1,16342:15395270,11931273 -h1,16342:16723086,11931273:0,0,0 -k1,16342:32583029,11931273:15859943 -g1,16342:32583029,11931273 -) -(1,16342:6764466,12616128:25818563,424439,86428 -h1,16342:6764466,12616128:0,0,0 -g1,16342:7760328,12616128 -g1,16342:9420098,12616128 -g1,16342:9752052,12616128 -g1,16342:11411822,12616128 -g1,16342:11743776,12616128 -g1,16342:12075730,12616128 -g1,16342:12407684,12616128 -g1,16342:14067454,12616128 -g1,16342:14399408,12616128 -g1,16342:14731362,12616128 -g1,16342:15063316,12616128 -g1,16342:15395270,12616128 -h1,16342:16723086,12616128:0,0,0 -k1,16342:32583029,12616128:15859943 -g1,16342:32583029,12616128 -) -(1,16344:6764466,13432055:25818563,431045,106246 -(1,16343:6764466,13432055:0,0,0 -g1,16343:6764466,13432055 -g1,16343:6764466,13432055 -g1,16343:6436786,13432055 -(1,16343:6436786,13432055:0,0,0 -) -g1,16343:6764466,13432055 -) -k1,16344:6764466,13432055:0 -g1,16344:12407683,13432055 -h1,16344:16059176,13432055:0,0,0 -k1,16344:32583029,13432055:16523853 -g1,16344:32583029,13432055 -) -(1,16348:6764466,14247982:25818563,424439,79822 -(1,16346:6764466,14247982:0,0,0 -g1,16346:6764466,14247982 -g1,16346:6764466,14247982 -g1,16346:6436786,14247982 -(1,16346:6436786,14247982:0,0,0 -) -g1,16346:6764466,14247982 -) -g1,16348:7760328,14247982 -g1,16348:9088144,14247982 -h1,16348:10747914,14247982:0,0,0 -k1,16348:32583030,14247982:21835116 -g1,16348:32583030,14247982 -) -] -) -g1,16349:32583029,14327804 -g1,16349:6764466,14327804 -g1,16349:6764466,14327804 -g1,16349:32583029,14327804 -g1,16349:32583029,14327804 -) -h1,16349:6764466,14524412:0,0,0 -(1,16353:6764466,15691057:25818563,513147,126483 -h1,16352:6764466,15691057:983040,0,0 -k1,16352:9351406,15691057:196187 -k1,16352:10415945,15691057:196187 -k1,16352:12574279,15691057:196186 -k1,16352:14338087,15691057:196187 -k1,16352:14890134,15691057:196187 -k1,16352:17071407,15691057:196187 -k1,16352:18459038,15691057:196186 -k1,16352:20089153,15691057:196187 -k1,16352:22799956,15691057:196187 -k1,16352:23352003,15691057:196187 -k1,16352:27024875,15691057:196187 -k1,16352:28703485,15691057:196186 -k1,16352:30167138,15691057:196187 -k1,16352:30719185,15691057:196187 -k1,16353:32583029,15691057:0 -k1,16353:32583029,15691057:0 -) -v1,16355:6764466,16526695:0,393216,0 -(1,16386:6764466,26654967:25818563,10521488,196608 -g1,16386:6764466,26654967 -g1,16386:6764466,26654967 -g1,16386:6567858,26654967 -(1,16386:6567858,26654967:0,10521488,196608 -r1,16449:32779637,26654967:26211779,10718096,196608 -k1,16386:6567857,26654967:-26211780 -) -(1,16386:6567858,26654967:26211779,10521488,196608 -[1,16386:6764466,26654967:25818563,10324880,0 -(1,16357:6764466,16754526:25818563,424439,106246 -(1,16356:6764466,16754526:0,0,0 -g1,16356:6764466,16754526 -g1,16356:6764466,16754526 -g1,16356:6436786,16754526 -(1,16356:6436786,16754526:0,0,0 -) -g1,16356:6764466,16754526 -) -g1,16357:9088144,16754526 -g1,16357:10084006,16754526 -h1,16357:11743776,16754526:0,0,0 -k1,16357:32583028,16754526:20839252 -g1,16357:32583028,16754526 -) -(1,16358:6764466,17439381:25818563,424439,106246 -h1,16358:6764466,17439381:0,0,0 -g1,16358:11411821,17439381 -g1,16358:12407683,17439381 -g1,16358:15395269,17439381 -k1,16358:15395269,17439381:0 -h1,16358:20042624,17439381:0,0,0 -k1,16358:32583029,17439381:12540405 -g1,16358:32583029,17439381 -) -(1,16359:6764466,18124236:25818563,424439,106246 -h1,16359:6764466,18124236:0,0,0 -k1,16359:6764466,18124236:0 -h1,16359:11079867,18124236:0,0,0 -k1,16359:32583029,18124236:21503162 -g1,16359:32583029,18124236 -) -(1,16363:6764466,18940163:25818563,431045,79822 -(1,16361:6764466,18940163:0,0,0 -g1,16361:6764466,18940163 -g1,16361:6764466,18940163 -g1,16361:6436786,18940163 -(1,16361:6436786,18940163:0,0,0 -) -g1,16361:6764466,18940163 -) -g1,16363:7760328,18940163 -g1,16363:9088144,18940163 -g1,16363:11079868,18940163 -g1,16363:11411822,18940163 -g1,16363:11743776,18940163 -g1,16363:12075730,18940163 -g1,16363:12407684,18940163 -g1,16363:12739638,18940163 -g1,16363:13071592,18940163 -g1,16363:13403546,18940163 -g1,16363:16391131,18940163 -g1,16363:16723085,18940163 -g1,16363:17055039,18940163 -g1,16363:17386993,18940163 -g1,16363:17718947,18940163 -g1,16363:19710671,18940163 -g1,16363:20042625,18940163 -g1,16363:20374579,18940163 -g1,16363:20706533,18940163 -g1,16363:21038487,18940163 -g1,16363:21370441,18940163 -g1,16363:21702395,18940163 -g1,16363:22034349,18940163 -h1,16363:26017796,18940163:0,0,0 -k1,16363:32583029,18940163:6565233 -g1,16363:32583029,18940163 -) -(1,16365:6764466,19756090:25818563,424439,106246 -(1,16364:6764466,19756090:0,0,0 -g1,16364:6764466,19756090 -g1,16364:6764466,19756090 -g1,16364:6436786,19756090 -(1,16364:6436786,19756090:0,0,0 -) -g1,16364:6764466,19756090 -) -g1,16365:11079867,19756090 -g1,16365:12075729,19756090 -k1,16365:12075729,19756090:0 -h1,16365:17718945,19756090:0,0,0 -k1,16365:32583029,19756090:14864084 -g1,16365:32583029,19756090 -) -(1,16366:6764466,20440945:25818563,424439,106246 -h1,16366:6764466,20440945:0,0,0 -k1,16366:6764466,20440945:0 -h1,16366:13071591,20440945:0,0,0 -k1,16366:32583029,20440945:19511438 -g1,16366:32583029,20440945 -) -(1,16370:6764466,21256872:25818563,431045,79822 -(1,16368:6764466,21256872:0,0,0 -g1,16368:6764466,21256872 -g1,16368:6764466,21256872 -g1,16368:6436786,21256872 -(1,16368:6436786,21256872:0,0,0 -) -g1,16368:6764466,21256872 -) -g1,16370:7760328,21256872 -g1,16370:9088144,21256872 -g1,16370:12075729,21256872 -g1,16370:12407683,21256872 -g1,16370:12739637,21256872 -g1,16370:13071591,21256872 -g1,16370:13403545,21256872 -g1,16370:15395269,21256872 -g1,16370:15727223,21256872 -g1,16370:16059177,21256872 -g1,16370:16391131,21256872 -g1,16370:16723085,21256872 -g1,16370:17055039,21256872 -g1,16370:17386993,21256872 -g1,16370:17718947,21256872 -h1,16370:21702394,21256872:0,0,0 -k1,16370:32583029,21256872:10880635 -g1,16370:32583029,21256872 -) -(1,16372:6764466,22072799:25818563,424439,106246 -(1,16371:6764466,22072799:0,0,0 -g1,16371:6764466,22072799 -g1,16371:6764466,22072799 -g1,16371:6436786,22072799 -(1,16371:6436786,22072799:0,0,0 -) -g1,16371:6764466,22072799 -) -g1,16372:9088144,22072799 -g1,16372:10084006,22072799 -h1,16372:14067453,22072799:0,0,0 -k1,16372:32583029,22072799:18515576 -g1,16372:32583029,22072799 -) -(1,16379:6764466,22888726:25818563,424439,112852 -(1,16374:6764466,22888726:0,0,0 -g1,16374:6764466,22888726 -g1,16374:6764466,22888726 -g1,16374:6436786,22888726 -(1,16374:6436786,22888726:0,0,0 -) -g1,16374:6764466,22888726 -) -g1,16379:7760328,22888726 -g1,16379:8092282,22888726 -g1,16379:8424236,22888726 -g1,16379:8756190,22888726 -g1,16379:9088144,22888726 -g1,16379:9420098,22888726 -g1,16379:11411822,22888726 -g1,16379:14067454,22888726 -h1,16379:16723085,22888726:0,0,0 -k1,16379:32583029,22888726:15859944 -g1,16379:32583029,22888726 -) -(1,16379:6764466,23573581:25818563,424439,86428 -h1,16379:6764466,23573581:0,0,0 -g1,16379:7760328,23573581 -g1,16379:9420098,23573581 -g1,16379:9752052,23573581 -g1,16379:11411822,23573581 -g1,16379:11743776,23573581 -g1,16379:12075730,23573581 -g1,16379:12407684,23573581 -g1,16379:14067454,23573581 -g1,16379:14399408,23573581 -g1,16379:14731362,23573581 -g1,16379:15063316,23573581 -g1,16379:15395270,23573581 -h1,16379:16723086,23573581:0,0,0 -k1,16379:32583029,23573581:15859943 -g1,16379:32583029,23573581 -) -(1,16379:6764466,24258436:25818563,424439,86428 -h1,16379:6764466,24258436:0,0,0 -g1,16379:7760328,24258436 -g1,16379:9420098,24258436 -g1,16379:9752052,24258436 -g1,16379:11411822,24258436 -g1,16379:11743776,24258436 -g1,16379:12075730,24258436 -g1,16379:12407684,24258436 -g1,16379:14067454,24258436 -g1,16379:14399408,24258436 -g1,16379:14731362,24258436 -g1,16379:15063316,24258436 -g1,16379:15395270,24258436 -h1,16379:16723086,24258436:0,0,0 -k1,16379:32583029,24258436:15859943 -g1,16379:32583029,24258436 -) -(1,16379:6764466,24943291:25818563,424439,86428 -h1,16379:6764466,24943291:0,0,0 -g1,16379:7760328,24943291 -g1,16379:9420098,24943291 -g1,16379:9752052,24943291 -g1,16379:11411822,24943291 -g1,16379:11743776,24943291 -g1,16379:12075730,24943291 -g1,16379:12407684,24943291 -g1,16379:14067454,24943291 -g1,16379:14399408,24943291 -g1,16379:14731362,24943291 -g1,16379:15063316,24943291 -g1,16379:15395270,24943291 -h1,16379:16723086,24943291:0,0,0 -k1,16379:32583029,24943291:15859943 -g1,16379:32583029,24943291 -) -(1,16381:6764466,25759218:25818563,424439,106246 -(1,16380:6764466,25759218:0,0,0 -g1,16380:6764466,25759218 -g1,16380:6764466,25759218 -g1,16380:6436786,25759218 -(1,16380:6436786,25759218:0,0,0 -) -g1,16380:6764466,25759218 -) -k1,16381:6764466,25759218:0 -g1,16381:12739637,25759218 -h1,16381:17055038,25759218:0,0,0 -k1,16381:32583029,25759218:15527991 -g1,16381:32583029,25759218 -) -(1,16385:6764466,26575145:25818563,424439,79822 -(1,16383:6764466,26575145:0,0,0 -g1,16383:6764466,26575145 -g1,16383:6764466,26575145 -g1,16383:6436786,26575145 -(1,16383:6436786,26575145:0,0,0 -) -g1,16383:6764466,26575145 -) -g1,16385:7760328,26575145 -g1,16385:9088144,26575145 -h1,16385:10747914,26575145:0,0,0 -k1,16385:32583030,26575145:21835116 -g1,16385:32583030,26575145 -) -] -) -g1,16386:32583029,26654967 -g1,16386:6764466,26654967 -g1,16386:6764466,26654967 -g1,16386:32583029,26654967 -g1,16386:32583029,26654967 -) -h1,16386:6764466,26851575:0,0,0 -(1,16390:6764466,28018220:25818563,513147,134348 -h1,16389:6764466,28018220:983040,0,0 -k1,16389:9214499,28018220:270306 -k1,16389:10657244,28018220:270306 -k1,16389:14372779,28018220:270307 -k1,16389:15452455,28018220:270306 -k1,16389:19199446,28018220:270306 -k1,16389:22495549,28018220:270306 -k1,16389:23757415,28018220:270306 -k1,16389:24713883,28018220:270306 -k1,16389:27473247,28018220:270307 -k1,16389:28221310,28018220:270306 -k1,16389:29510701,28018220:270306 -k1,16389:32583029,28018220:0 -) -(1,16390:6764466,28883300:25818563,513147,134348 -k1,16389:9239980,28883300:270227 -k1,16389:10161634,28883300:270226 -k1,16389:10787721,28883300:270227 -k1,16389:14534633,28883300:270227 -k1,16389:17500356,28883300:270227 -k1,16389:18302079,28883300:270226 -k1,16389:19343009,28883300:270227 -k1,16389:21572762,28883300:270227 -k1,16389:22502281,28883300:270227 -k1,16389:23128367,28883300:270226 -k1,16389:25781483,28883300:270227 -k1,16389:27780550,28883300:270227 -k1,16389:28656330,28883300:270227 -k1,16389:29384653,28883300:270226 -k1,16389:31835263,28883300:270227 -k1,16389:32583029,28883300:0 -) -(1,16390:6764466,29748380:25818563,513147,134348 -k1,16389:9699075,29748380:155882 -k1,16389:11368183,29748380:155882 -k1,16389:14432553,29748380:155882 -k1,16389:15607519,29748380:155881 -k1,16389:18146290,29748380:155882 -k1,16389:20031012,29748380:155882 -k1,16389:20869779,29748380:155882 -k1,16389:21631214,29748380:155882 -k1,16389:22245193,29748380:155882 -k1,16389:24581458,29748380:155882 -k1,16389:25485105,29748380:155881 -k1,16389:28419714,29748380:155882 -k1,16389:29261758,29748380:155882 -k1,16389:30122807,29748380:155882 -k1,16389:32583029,29748380:0 -) -(1,16390:6764466,30613460:25818563,513147,134348 -k1,16389:9876280,30613460:203326 -k1,16389:11098691,30613460:203326 -k1,16389:13684906,30613460:203326 -k1,16389:15617072,30613460:203326 -k1,16389:17253015,30613460:203326 -k1,16389:17871180,30613460:203322 -k1,16389:20563563,30613460:203326 -k1,16389:21453051,30613460:203326 -k1,16389:22565360,30613460:203325 -k1,16389:23454848,30613460:203326 -k1,16389:23871162,30613460:203322 -k1,16389:25549703,30613460:203326 -k1,16389:27262979,30613460:203326 -k1,16389:28775059,30613460:203326 -k1,16389:29629813,30613460:203326 -k1,16389:31429596,30613460:203326 -k1,16389:32583029,30613460:0 -) -(1,16390:6764466,31478540:25818563,513147,134348 -k1,16389:9936826,31478540:187850 -k1,16389:10903899,31478540:187850 -k1,16389:12808792,31478540:187850 -k1,16389:15907096,31478540:187850 -k1,16389:16710984,31478540:187850 -k1,16389:17917920,31478540:187851 -k1,16389:21313757,31478540:187850 -k1,16389:24949456,31478540:187850 -k1,16389:27296062,31478540:187850 -k1,16389:28166797,31478540:187850 -k1,16389:29829862,31478540:187850 -k1,16389:32583029,31478540:0 -) -(1,16390:6764466,32343620:25818563,513147,126483 -k1,16389:7611238,32343620:230734 -k1,16389:8861056,32343620:230733 -k1,16389:10629265,32343620:230734 -k1,16389:13844508,32343620:230733 -k1,16389:14854465,32343620:230734 -k1,16389:15562955,32343620:230733 -k1,16389:16409727,32343620:230734 -k1,16389:18527897,32343620:230733 -k1,16389:20581187,32343620:230734 -k1,16389:21831005,32343620:230733 -k1,16389:25236303,32343620:230734 -k1,16389:26126328,32343620:230733 -k1,16389:28049202,32343620:230734 -k1,16389:31149101,32343620:230733 -k1,16389:32583029,32343620:0 -) -(1,16390:6764466,33208700:25818563,505283,126483 -g1,16389:8134168,33208700 -g1,16389:9465859,33208700 -g1,16389:11195354,33208700 -g1,16389:12046011,33208700 -g1,16389:13060508,33208700 -g1,16389:13615597,33208700 -g1,16389:15006271,33208700 -g1,16389:17407510,33208700 -g1,16389:18258167,33208700 -g1,16389:19476481,33208700 -g1,16389:20832420,33208700 -g1,16389:22544875,33208700 -k1,16390:32583029,33208700:8130401 -g1,16390:32583029,33208700 -) -(1,16392:6764466,34224563:25818563,513147,115847 -h1,16391:6764466,34224563:983040,0,0 -k1,16391:8816524,34224563:251129 -k1,16391:11209370,34224563:251129 -k1,16391:12935713,34224563:251128 -k1,16391:14696792,34224563:251129 -k1,16391:17329499,34224563:251129 -k1,16391:18266790,34224563:251129 -k1,16391:18873778,34224563:251128 -k1,16391:20680076,34224563:251129 -k1,16391:23314094,34224563:251129 -k1,16391:25132844,34224563:251129 -(1,16391:25132844,34224563:0,459977,115847 -r1,16449:28656516,34224563:3523672,575824,115847 -k1,16391:25132844,34224563:-3523672 -) -(1,16391:25132844,34224563:3523672,459977,115847 -k1,16391:25132844,34224563:3277 -h1,16391:28653239,34224563:0,411205,112570 -) -k1,16391:29081314,34224563:251128 -k1,16391:29798404,34224563:251129 -k1,16391:32583029,34224563:0 -) -(1,16392:6764466,35089643:25818563,513147,126483 -k1,16391:8447703,35089643:208022 -k1,16391:9721996,35089643:208022 -k1,16391:11439968,35089643:208022 -k1,16391:14545337,35089643:208022 -k1,16391:17134937,35089643:208022 -k1,16391:18290610,35089643:208022 -k1,16391:20814020,35089643:208023 -k1,16391:22041127,35089643:208022 -k1,16391:25033774,35089643:208022 -k1,16391:27623374,35089643:208022 -k1,16391:28779047,35089643:208022 -k1,16391:30376432,35089643:208022 -k1,16391:32583029,35089643:0 -) -(1,16392:6764466,35954723:25818563,513147,126483 -k1,16391:7964062,35954723:208036 -k1,16391:10213544,35954723:208036 -k1,16391:11613024,35954723:208035 -k1,16391:13517787,35954723:208036 -k1,16391:14717383,35954723:208036 -k1,16391:16637875,35954723:208036 -k1,16391:17497339,35954723:208036 -k1,16391:19716020,35954723:208036 -k1,16391:20279915,35954723:208035 -k1,16391:21877314,35954723:208036 -k1,16391:23961646,35954723:208036 -k1,16391:26121344,35954723:208036 -k1,16391:27771827,35954723:208036 -k1,16391:28335722,35954723:208035 -k1,16391:30528844,35954723:208036 -k1,16391:32227169,35954723:208036 -k1,16391:32583029,35954723:0 -) -(1,16392:6764466,36819803:25818563,513147,134348 -g1,16391:9702445,36819803 -g1,16391:12975968,36819803 -g1,16391:14321422,36819803 -g1,16391:16903540,36819803 -g1,16391:19530223,36819803 -g1,16391:20260949,36819803 -g1,16391:23181233,36819803 -g1,16391:23993224,36819803 -g1,16391:25687985,36819803 -g1,16391:26499976,36819803 -g1,16391:27718290,36819803 -g1,16391:29342927,36819803 -g1,16391:30201448,36819803 -k1,16392:32583029,36819803:71437 -g1,16392:32583029,36819803 -) -v1,16394:6764466,37655440:0,393216,0 -(1,16407:6764466,40417480:25818563,3155256,196608 -g1,16407:6764466,40417480 -g1,16407:6764466,40417480 -g1,16407:6567858,40417480 -(1,16407:6567858,40417480:0,3155256,196608 -r1,16449:32779637,40417480:26211779,3351864,196608 -k1,16407:6567857,40417480:-26211780 -) -(1,16407:6567858,40417480:26211779,3155256,196608 -[1,16407:6764466,40417480:25818563,2958648,0 -(1,16396:6764466,37889877:25818563,431045,106246 -(1,16395:6764466,37889877:0,0,0 -g1,16395:6764466,37889877 -g1,16395:6764466,37889877 -g1,16395:6436786,37889877 -(1,16395:6436786,37889877:0,0,0 -) -g1,16395:6764466,37889877 -) -k1,16396:6764466,37889877:0 -h1,16396:10747914,37889877:0,0,0 -k1,16396:32583030,37889877:21835116 -g1,16396:32583030,37889877 -) -(1,16400:6764466,38705804:25818563,431045,79822 -(1,16398:6764466,38705804:0,0,0 -g1,16398:6764466,38705804 -g1,16398:6764466,38705804 -g1,16398:6436786,38705804 -(1,16398:6436786,38705804:0,0,0 -) -g1,16398:6764466,38705804 -) -g1,16400:7760328,38705804 -g1,16400:9088144,38705804 -h1,16400:13071591,38705804:0,0,0 -k1,16400:32583029,38705804:19511438 -g1,16400:32583029,38705804 -) -(1,16402:6764466,39521731:25818563,424439,106246 -(1,16401:6764466,39521731:0,0,0 -g1,16401:6764466,39521731 -g1,16401:6764466,39521731 -g1,16401:6436786,39521731 -(1,16401:6436786,39521731:0,0,0 -) -g1,16401:6764466,39521731 -) -k1,16402:6764466,39521731:0 -h1,16402:10747914,39521731:0,0,0 -k1,16402:32583030,39521731:21835116 -g1,16402:32583030,39521731 -) -(1,16406:6764466,40337658:25818563,431045,79822 -(1,16404:6764466,40337658:0,0,0 -g1,16404:6764466,40337658 -g1,16404:6764466,40337658 -g1,16404:6436786,40337658 -(1,16404:6436786,40337658:0,0,0 -) -g1,16404:6764466,40337658 -) -g1,16406:7760328,40337658 -g1,16406:9088144,40337658 -g1,16406:12075729,40337658 -g1,16406:12407683,40337658 -g1,16406:12739637,40337658 -g1,16406:13071591,40337658 -g1,16406:13403545,40337658 -g1,16406:15395269,40337658 -g1,16406:15727223,40337658 -g1,16406:16059177,40337658 -g1,16406:16391131,40337658 -g1,16406:16723085,40337658 -g1,16406:17055039,40337658 -g1,16406:17386993,40337658 -g1,16406:17718947,40337658 -h1,16406:21702394,40337658:0,0,0 -k1,16406:32583029,40337658:10880635 -g1,16406:32583029,40337658 -) -] -) -g1,16407:32583029,40417480 -g1,16407:6764466,40417480 -g1,16407:6764466,40417480 -g1,16407:32583029,40417480 -g1,16407:32583029,40417480 -) -h1,16407:6764466,40614088:0,0,0 -v1,16411:6764466,41600509:0,393216,0 -(1,16424:6764466,44362549:25818563,3155256,196608 -g1,16424:6764466,44362549 -g1,16424:6764466,44362549 -g1,16424:6567858,44362549 -(1,16424:6567858,44362549:0,3155256,196608 -r1,16449:32779637,44362549:26211779,3351864,196608 -k1,16424:6567857,44362549:-26211780 -) -(1,16424:6567858,44362549:26211779,3155256,196608 -[1,16424:6764466,44362549:25818563,2958648,0 -(1,16413:6764466,41834946:25818563,431045,106246 -(1,16412:6764466,41834946:0,0,0 -g1,16412:6764466,41834946 -g1,16412:6764466,41834946 -g1,16412:6436786,41834946 -(1,16412:6436786,41834946:0,0,0 -) -g1,16412:6764466,41834946 -) -k1,16413:6764466,41834946:0 -g1,16413:13071592,41834946 -h1,16413:15395270,41834946:0,0,0 -k1,16413:32583030,41834946:17187760 -g1,16413:32583030,41834946 +[1,16447:6630773,45706769:25952256,40108032,0 +v1,16447:6630773,6254097:0,393216,0 +(1,16447:6630773,45706769:25952256,39845888,0 +g1,16447:6630773,45706769 +g1,16447:6237557,45706769 +r1,16447:6368629,45706769:131072,39845888,0 +g1,16447:6567858,45706769 +g1,16447:6764466,45706769 +[1,16447:6764466,45706769:25818563,39845888,0 +v1,16319:6764466,6254097:0,393216,0 +(1,16347:6764466,14327804:25818563,8466923,196608 +g1,16347:6764466,14327804 +g1,16347:6764466,14327804 +g1,16347:6567858,14327804 +(1,16347:6567858,14327804:0,8466923,196608 +r1,16447:32779637,14327804:26211779,8663531,196608 +k1,16347:6567857,14327804:-26211780 +) +(1,16347:6567858,14327804:26211779,8466923,196608 +[1,16347:6764466,14327804:25818563,8270315,0 +(1,16321:6764466,6481928:25818563,424439,106246 +(1,16320:6764466,6481928:0,0,0 +g1,16320:6764466,6481928 +g1,16320:6764466,6481928 +g1,16320:6436786,6481928 +(1,16320:6436786,6481928:0,0,0 +) +g1,16320:6764466,6481928 +) +k1,16321:6764466,6481928:0 +h1,16321:10747914,6481928:0,0,0 +k1,16321:32583030,6481928:21835116 +g1,16321:32583030,6481928 +) +(1,16325:6764466,7297855:25818563,431045,79822 +(1,16323:6764466,7297855:0,0,0 +g1,16323:6764466,7297855 +g1,16323:6764466,7297855 +g1,16323:6436786,7297855 +(1,16323:6436786,7297855:0,0,0 +) +g1,16323:6764466,7297855 +) +g1,16325:7760328,7297855 +g1,16325:9088144,7297855 +g1,16325:12075729,7297855 +g1,16325:12407683,7297855 +g1,16325:12739637,7297855 +g1,16325:13071591,7297855 +g1,16325:13403545,7297855 +g1,16325:15395269,7297855 +g1,16325:15727223,7297855 +g1,16325:16059177,7297855 +g1,16325:16391131,7297855 +g1,16325:16723085,7297855 +g1,16325:17055039,7297855 +g1,16325:17386993,7297855 +g1,16325:17718947,7297855 +h1,16325:21702394,7297855:0,0,0 +k1,16325:32583029,7297855:10880635 +g1,16325:32583029,7297855 +) +(1,16327:6764466,8113782:25818563,431045,106246 +(1,16326:6764466,8113782:0,0,0 +g1,16326:6764466,8113782 +g1,16326:6764466,8113782 +g1,16326:6436786,8113782 +(1,16326:6436786,8113782:0,0,0 +) +g1,16326:6764466,8113782 +) +k1,16327:6764466,8113782:0 +h1,16327:12407683,8113782:0,0,0 +k1,16327:32583029,8113782:20175346 +g1,16327:32583029,8113782 +) +(1,16331:6764466,8929709:25818563,431045,79822 +(1,16329:6764466,8929709:0,0,0 +g1,16329:6764466,8929709 +g1,16329:6764466,8929709 +g1,16329:6436786,8929709 +(1,16329:6436786,8929709:0,0,0 +) +g1,16329:6764466,8929709 +) +g1,16331:7760328,8929709 +g1,16331:9088144,8929709 +h1,16331:13071591,8929709:0,0,0 +k1,16331:32583029,8929709:19511438 +g1,16331:32583029,8929709 +) +(1,16333:6764466,9745636:25818563,431045,106246 +(1,16332:6764466,9745636:0,0,0 +g1,16332:6764466,9745636 +g1,16332:6764466,9745636 +g1,16332:6436786,9745636 +(1,16332:6436786,9745636:0,0,0 +) +g1,16332:6764466,9745636 +) +g1,16333:8756190,9745636 +g1,16333:9752052,9745636 +h1,16333:13071591,9745636:0,0,0 +k1,16333:32583029,9745636:19511438 +g1,16333:32583029,9745636 +) +(1,16340:6764466,10561563:25818563,424439,112852 +(1,16335:6764466,10561563:0,0,0 +g1,16335:6764466,10561563 +g1,16335:6764466,10561563 +g1,16335:6436786,10561563 +(1,16335:6436786,10561563:0,0,0 +) +g1,16335:6764466,10561563 +) +g1,16340:7760328,10561563 +g1,16340:8092282,10561563 +g1,16340:8424236,10561563 +g1,16340:8756190,10561563 +g1,16340:9088144,10561563 +g1,16340:9420098,10561563 +g1,16340:11411822,10561563 +g1,16340:14067454,10561563 +h1,16340:16723085,10561563:0,0,0 +k1,16340:32583029,10561563:15859944 +g1,16340:32583029,10561563 +) +(1,16340:6764466,11246418:25818563,424439,86428 +h1,16340:6764466,11246418:0,0,0 +g1,16340:7760328,11246418 +g1,16340:9420098,11246418 +g1,16340:9752052,11246418 +g1,16340:11411822,11246418 +g1,16340:11743776,11246418 +g1,16340:12075730,11246418 +g1,16340:12407684,11246418 +g1,16340:14067454,11246418 +g1,16340:14399408,11246418 +g1,16340:14731362,11246418 +g1,16340:15063316,11246418 +g1,16340:15395270,11246418 +h1,16340:16723086,11246418:0,0,0 +k1,16340:32583029,11246418:15859943 +g1,16340:32583029,11246418 +) +(1,16340:6764466,11931273:25818563,424439,86428 +h1,16340:6764466,11931273:0,0,0 +g1,16340:7760328,11931273 +g1,16340:9420098,11931273 +g1,16340:9752052,11931273 +g1,16340:11411822,11931273 +g1,16340:11743776,11931273 +g1,16340:12075730,11931273 +g1,16340:12407684,11931273 +g1,16340:14067454,11931273 +g1,16340:14399408,11931273 +g1,16340:14731362,11931273 +g1,16340:15063316,11931273 +g1,16340:15395270,11931273 +h1,16340:16723086,11931273:0,0,0 +k1,16340:32583029,11931273:15859943 +g1,16340:32583029,11931273 +) +(1,16340:6764466,12616128:25818563,424439,86428 +h1,16340:6764466,12616128:0,0,0 +g1,16340:7760328,12616128 +g1,16340:9420098,12616128 +g1,16340:9752052,12616128 +g1,16340:11411822,12616128 +g1,16340:11743776,12616128 +g1,16340:12075730,12616128 +g1,16340:12407684,12616128 +g1,16340:14067454,12616128 +g1,16340:14399408,12616128 +g1,16340:14731362,12616128 +g1,16340:15063316,12616128 +g1,16340:15395270,12616128 +h1,16340:16723086,12616128:0,0,0 +k1,16340:32583029,12616128:15859943 +g1,16340:32583029,12616128 +) +(1,16342:6764466,13432055:25818563,431045,106246 +(1,16341:6764466,13432055:0,0,0 +g1,16341:6764466,13432055 +g1,16341:6764466,13432055 +g1,16341:6436786,13432055 +(1,16341:6436786,13432055:0,0,0 +) +g1,16341:6764466,13432055 +) +k1,16342:6764466,13432055:0 +g1,16342:12407683,13432055 +h1,16342:16059176,13432055:0,0,0 +k1,16342:32583029,13432055:16523853 +g1,16342:32583029,13432055 +) +(1,16346:6764466,14247982:25818563,424439,79822 +(1,16344:6764466,14247982:0,0,0 +g1,16344:6764466,14247982 +g1,16344:6764466,14247982 +g1,16344:6436786,14247982 +(1,16344:6436786,14247982:0,0,0 +) +g1,16344:6764466,14247982 +) +g1,16346:7760328,14247982 +g1,16346:9088144,14247982 +h1,16346:10747914,14247982:0,0,0 +k1,16346:32583030,14247982:21835116 +g1,16346:32583030,14247982 +) +] +) +g1,16347:32583029,14327804 +g1,16347:6764466,14327804 +g1,16347:6764466,14327804 +g1,16347:32583029,14327804 +g1,16347:32583029,14327804 +) +h1,16347:6764466,14524412:0,0,0 +(1,16351:6764466,15691057:25818563,513147,126483 +h1,16350:6764466,15691057:983040,0,0 +k1,16350:9351406,15691057:196187 +k1,16350:10415945,15691057:196187 +k1,16350:12574279,15691057:196186 +k1,16350:14338087,15691057:196187 +k1,16350:14890134,15691057:196187 +k1,16350:17071407,15691057:196187 +k1,16350:18459038,15691057:196186 +k1,16350:20089153,15691057:196187 +k1,16350:22799956,15691057:196187 +k1,16350:23352003,15691057:196187 +k1,16350:27024875,15691057:196187 +k1,16350:28703485,15691057:196186 +k1,16350:30167138,15691057:196187 +k1,16350:30719185,15691057:196187 +k1,16351:32583029,15691057:0 +k1,16351:32583029,15691057:0 +) +v1,16353:6764466,16526695:0,393216,0 +(1,16384:6764466,26654967:25818563,10521488,196608 +g1,16384:6764466,26654967 +g1,16384:6764466,26654967 +g1,16384:6567858,26654967 +(1,16384:6567858,26654967:0,10521488,196608 +r1,16447:32779637,26654967:26211779,10718096,196608 +k1,16384:6567857,26654967:-26211780 +) +(1,16384:6567858,26654967:26211779,10521488,196608 +[1,16384:6764466,26654967:25818563,10324880,0 +(1,16355:6764466,16754526:25818563,424439,106246 +(1,16354:6764466,16754526:0,0,0 +g1,16354:6764466,16754526 +g1,16354:6764466,16754526 +g1,16354:6436786,16754526 +(1,16354:6436786,16754526:0,0,0 +) +g1,16354:6764466,16754526 +) +g1,16355:9088144,16754526 +g1,16355:10084006,16754526 +h1,16355:11743776,16754526:0,0,0 +k1,16355:32583028,16754526:20839252 +g1,16355:32583028,16754526 +) +(1,16356:6764466,17439381:25818563,424439,106246 +h1,16356:6764466,17439381:0,0,0 +g1,16356:11411821,17439381 +g1,16356:12407683,17439381 +g1,16356:15395269,17439381 +k1,16356:15395269,17439381:0 +h1,16356:20042624,17439381:0,0,0 +k1,16356:32583029,17439381:12540405 +g1,16356:32583029,17439381 +) +(1,16357:6764466,18124236:25818563,424439,106246 +h1,16357:6764466,18124236:0,0,0 +k1,16357:6764466,18124236:0 +h1,16357:11079867,18124236:0,0,0 +k1,16357:32583029,18124236:21503162 +g1,16357:32583029,18124236 +) +(1,16361:6764466,18940163:25818563,431045,79822 +(1,16359:6764466,18940163:0,0,0 +g1,16359:6764466,18940163 +g1,16359:6764466,18940163 +g1,16359:6436786,18940163 +(1,16359:6436786,18940163:0,0,0 +) +g1,16359:6764466,18940163 +) +g1,16361:7760328,18940163 +g1,16361:9088144,18940163 +g1,16361:11079868,18940163 +g1,16361:11411822,18940163 +g1,16361:11743776,18940163 +g1,16361:12075730,18940163 +g1,16361:12407684,18940163 +g1,16361:12739638,18940163 +g1,16361:13071592,18940163 +g1,16361:13403546,18940163 +g1,16361:16391131,18940163 +g1,16361:16723085,18940163 +g1,16361:17055039,18940163 +g1,16361:17386993,18940163 +g1,16361:17718947,18940163 +g1,16361:19710671,18940163 +g1,16361:20042625,18940163 +g1,16361:20374579,18940163 +g1,16361:20706533,18940163 +g1,16361:21038487,18940163 +g1,16361:21370441,18940163 +g1,16361:21702395,18940163 +g1,16361:22034349,18940163 +h1,16361:26017796,18940163:0,0,0 +k1,16361:32583029,18940163:6565233 +g1,16361:32583029,18940163 +) +(1,16363:6764466,19756090:25818563,424439,106246 +(1,16362:6764466,19756090:0,0,0 +g1,16362:6764466,19756090 +g1,16362:6764466,19756090 +g1,16362:6436786,19756090 +(1,16362:6436786,19756090:0,0,0 +) +g1,16362:6764466,19756090 +) +g1,16363:11079867,19756090 +g1,16363:12075729,19756090 +k1,16363:12075729,19756090:0 +h1,16363:17718945,19756090:0,0,0 +k1,16363:32583029,19756090:14864084 +g1,16363:32583029,19756090 +) +(1,16364:6764466,20440945:25818563,424439,106246 +h1,16364:6764466,20440945:0,0,0 +k1,16364:6764466,20440945:0 +h1,16364:13071591,20440945:0,0,0 +k1,16364:32583029,20440945:19511438 +g1,16364:32583029,20440945 +) +(1,16368:6764466,21256872:25818563,431045,79822 +(1,16366:6764466,21256872:0,0,0 +g1,16366:6764466,21256872 +g1,16366:6764466,21256872 +g1,16366:6436786,21256872 +(1,16366:6436786,21256872:0,0,0 +) +g1,16366:6764466,21256872 +) +g1,16368:7760328,21256872 +g1,16368:9088144,21256872 +g1,16368:12075729,21256872 +g1,16368:12407683,21256872 +g1,16368:12739637,21256872 +g1,16368:13071591,21256872 +g1,16368:13403545,21256872 +g1,16368:15395269,21256872 +g1,16368:15727223,21256872 +g1,16368:16059177,21256872 +g1,16368:16391131,21256872 +g1,16368:16723085,21256872 +g1,16368:17055039,21256872 +g1,16368:17386993,21256872 +g1,16368:17718947,21256872 +h1,16368:21702394,21256872:0,0,0 +k1,16368:32583029,21256872:10880635 +g1,16368:32583029,21256872 +) +(1,16370:6764466,22072799:25818563,424439,106246 +(1,16369:6764466,22072799:0,0,0 +g1,16369:6764466,22072799 +g1,16369:6764466,22072799 +g1,16369:6436786,22072799 +(1,16369:6436786,22072799:0,0,0 +) +g1,16369:6764466,22072799 +) +g1,16370:9088144,22072799 +g1,16370:10084006,22072799 +h1,16370:14067453,22072799:0,0,0 +k1,16370:32583029,22072799:18515576 +g1,16370:32583029,22072799 +) +(1,16377:6764466,22888726:25818563,424439,112852 +(1,16372:6764466,22888726:0,0,0 +g1,16372:6764466,22888726 +g1,16372:6764466,22888726 +g1,16372:6436786,22888726 +(1,16372:6436786,22888726:0,0,0 +) +g1,16372:6764466,22888726 +) +g1,16377:7760328,22888726 +g1,16377:8092282,22888726 +g1,16377:8424236,22888726 +g1,16377:8756190,22888726 +g1,16377:9088144,22888726 +g1,16377:9420098,22888726 +g1,16377:11411822,22888726 +g1,16377:14067454,22888726 +h1,16377:16723085,22888726:0,0,0 +k1,16377:32583029,22888726:15859944 +g1,16377:32583029,22888726 +) +(1,16377:6764466,23573581:25818563,424439,86428 +h1,16377:6764466,23573581:0,0,0 +g1,16377:7760328,23573581 +g1,16377:9420098,23573581 +g1,16377:9752052,23573581 +g1,16377:11411822,23573581 +g1,16377:11743776,23573581 +g1,16377:12075730,23573581 +g1,16377:12407684,23573581 +g1,16377:14067454,23573581 +g1,16377:14399408,23573581 +g1,16377:14731362,23573581 +g1,16377:15063316,23573581 +g1,16377:15395270,23573581 +h1,16377:16723086,23573581:0,0,0 +k1,16377:32583029,23573581:15859943 +g1,16377:32583029,23573581 +) +(1,16377:6764466,24258436:25818563,424439,86428 +h1,16377:6764466,24258436:0,0,0 +g1,16377:7760328,24258436 +g1,16377:9420098,24258436 +g1,16377:9752052,24258436 +g1,16377:11411822,24258436 +g1,16377:11743776,24258436 +g1,16377:12075730,24258436 +g1,16377:12407684,24258436 +g1,16377:14067454,24258436 +g1,16377:14399408,24258436 +g1,16377:14731362,24258436 +g1,16377:15063316,24258436 +g1,16377:15395270,24258436 +h1,16377:16723086,24258436:0,0,0 +k1,16377:32583029,24258436:15859943 +g1,16377:32583029,24258436 +) +(1,16377:6764466,24943291:25818563,424439,86428 +h1,16377:6764466,24943291:0,0,0 +g1,16377:7760328,24943291 +g1,16377:9420098,24943291 +g1,16377:9752052,24943291 +g1,16377:11411822,24943291 +g1,16377:11743776,24943291 +g1,16377:12075730,24943291 +g1,16377:12407684,24943291 +g1,16377:14067454,24943291 +g1,16377:14399408,24943291 +g1,16377:14731362,24943291 +g1,16377:15063316,24943291 +g1,16377:15395270,24943291 +h1,16377:16723086,24943291:0,0,0 +k1,16377:32583029,24943291:15859943 +g1,16377:32583029,24943291 +) +(1,16379:6764466,25759218:25818563,424439,106246 +(1,16378:6764466,25759218:0,0,0 +g1,16378:6764466,25759218 +g1,16378:6764466,25759218 +g1,16378:6436786,25759218 +(1,16378:6436786,25759218:0,0,0 +) +g1,16378:6764466,25759218 +) +k1,16379:6764466,25759218:0 +g1,16379:12739637,25759218 +h1,16379:17055038,25759218:0,0,0 +k1,16379:32583029,25759218:15527991 +g1,16379:32583029,25759218 +) +(1,16383:6764466,26575145:25818563,424439,79822 +(1,16381:6764466,26575145:0,0,0 +g1,16381:6764466,26575145 +g1,16381:6764466,26575145 +g1,16381:6436786,26575145 +(1,16381:6436786,26575145:0,0,0 +) +g1,16381:6764466,26575145 +) +g1,16383:7760328,26575145 +g1,16383:9088144,26575145 +h1,16383:10747914,26575145:0,0,0 +k1,16383:32583030,26575145:21835116 +g1,16383:32583030,26575145 +) +] +) +g1,16384:32583029,26654967 +g1,16384:6764466,26654967 +g1,16384:6764466,26654967 +g1,16384:32583029,26654967 +g1,16384:32583029,26654967 +) +h1,16384:6764466,26851575:0,0,0 +(1,16388:6764466,28018220:25818563,513147,134348 +h1,16387:6764466,28018220:983040,0,0 +k1,16387:9214499,28018220:270306 +k1,16387:10657244,28018220:270306 +k1,16387:14372779,28018220:270307 +k1,16387:15452455,28018220:270306 +k1,16387:19199446,28018220:270306 +k1,16387:22495549,28018220:270306 +k1,16387:23757415,28018220:270306 +k1,16387:24713883,28018220:270306 +k1,16387:27473247,28018220:270307 +k1,16387:28221310,28018220:270306 +k1,16387:29510701,28018220:270306 +k1,16387:32583029,28018220:0 +) +(1,16388:6764466,28883300:25818563,513147,134348 +k1,16387:9239980,28883300:270227 +k1,16387:10161634,28883300:270226 +k1,16387:10787721,28883300:270227 +k1,16387:14534633,28883300:270227 +k1,16387:17500356,28883300:270227 +k1,16387:18302079,28883300:270226 +k1,16387:19343009,28883300:270227 +k1,16387:21572762,28883300:270227 +k1,16387:22502281,28883300:270227 +k1,16387:23128367,28883300:270226 +k1,16387:25781483,28883300:270227 +k1,16387:27780550,28883300:270227 +k1,16387:28656330,28883300:270227 +k1,16387:29384653,28883300:270226 +k1,16387:31835263,28883300:270227 +k1,16387:32583029,28883300:0 +) +(1,16388:6764466,29748380:25818563,513147,134348 +k1,16387:9699075,29748380:155882 +k1,16387:11368183,29748380:155882 +k1,16387:14432553,29748380:155882 +k1,16387:15607519,29748380:155881 +k1,16387:18146290,29748380:155882 +k1,16387:20031012,29748380:155882 +k1,16387:20869779,29748380:155882 +k1,16387:21631214,29748380:155882 +k1,16387:22245193,29748380:155882 +k1,16387:24581458,29748380:155882 +k1,16387:25485105,29748380:155881 +k1,16387:28419714,29748380:155882 +k1,16387:29261758,29748380:155882 +k1,16387:30122807,29748380:155882 +k1,16387:32583029,29748380:0 +) +(1,16388:6764466,30613460:25818563,513147,134348 +k1,16387:9876280,30613460:203326 +k1,16387:11098691,30613460:203326 +k1,16387:13684906,30613460:203326 +k1,16387:15617072,30613460:203326 +k1,16387:17253015,30613460:203326 +k1,16387:17871180,30613460:203322 +k1,16387:20563563,30613460:203326 +k1,16387:21453051,30613460:203326 +k1,16387:22565360,30613460:203325 +k1,16387:23454848,30613460:203326 +k1,16387:23871162,30613460:203322 +k1,16387:25549703,30613460:203326 +k1,16387:27262979,30613460:203326 +k1,16387:28775059,30613460:203326 +k1,16387:29629813,30613460:203326 +k1,16387:31429596,30613460:203326 +k1,16387:32583029,30613460:0 +) +(1,16388:6764466,31478540:25818563,513147,134348 +k1,16387:9936826,31478540:187850 +k1,16387:10903899,31478540:187850 +k1,16387:12808792,31478540:187850 +k1,16387:15907096,31478540:187850 +k1,16387:16710984,31478540:187850 +k1,16387:17917920,31478540:187851 +k1,16387:21313757,31478540:187850 +k1,16387:24949456,31478540:187850 +k1,16387:27296062,31478540:187850 +k1,16387:28166797,31478540:187850 +k1,16387:29829862,31478540:187850 +k1,16387:32583029,31478540:0 +) +(1,16388:6764466,32343620:25818563,513147,126483 +k1,16387:7611238,32343620:230734 +k1,16387:8861056,32343620:230733 +k1,16387:10629265,32343620:230734 +k1,16387:13844508,32343620:230733 +k1,16387:14854465,32343620:230734 +k1,16387:15562955,32343620:230733 +k1,16387:16409727,32343620:230734 +k1,16387:18527897,32343620:230733 +k1,16387:20581187,32343620:230734 +k1,16387:21831005,32343620:230733 +k1,16387:25236303,32343620:230734 +k1,16387:26126328,32343620:230733 +k1,16387:28049202,32343620:230734 +k1,16387:31149101,32343620:230733 +k1,16387:32583029,32343620:0 +) +(1,16388:6764466,33208700:25818563,505283,126483 +g1,16387:8134168,33208700 +g1,16387:9465859,33208700 +g1,16387:11195354,33208700 +g1,16387:12046011,33208700 +g1,16387:13060508,33208700 +g1,16387:13615597,33208700 +g1,16387:15006271,33208700 +g1,16387:17407510,33208700 +g1,16387:18258167,33208700 +g1,16387:19476481,33208700 +g1,16387:20832420,33208700 +g1,16387:22544875,33208700 +k1,16388:32583029,33208700:8130401 +g1,16388:32583029,33208700 +) +(1,16390:6764466,34224563:25818563,513147,115847 +h1,16389:6764466,34224563:983040,0,0 +k1,16389:8816524,34224563:251129 +k1,16389:11209370,34224563:251129 +k1,16389:12935713,34224563:251128 +k1,16389:14696792,34224563:251129 +k1,16389:17329499,34224563:251129 +k1,16389:18266790,34224563:251129 +k1,16389:18873778,34224563:251128 +k1,16389:20680076,34224563:251129 +k1,16389:23314094,34224563:251129 +k1,16389:25132844,34224563:251129 +(1,16389:25132844,34224563:0,459977,115847 +r1,16447:28656516,34224563:3523672,575824,115847 +k1,16389:25132844,34224563:-3523672 +) +(1,16389:25132844,34224563:3523672,459977,115847 +k1,16389:25132844,34224563:3277 +h1,16389:28653239,34224563:0,411205,112570 +) +k1,16389:29081314,34224563:251128 +k1,16389:29798404,34224563:251129 +k1,16389:32583029,34224563:0 +) +(1,16390:6764466,35089643:25818563,513147,126483 +k1,16389:8447703,35089643:208022 +k1,16389:9721996,35089643:208022 +k1,16389:11439968,35089643:208022 +k1,16389:14545337,35089643:208022 +k1,16389:17134937,35089643:208022 +k1,16389:18290610,35089643:208022 +k1,16389:20814020,35089643:208023 +k1,16389:22041127,35089643:208022 +k1,16389:25033774,35089643:208022 +k1,16389:27623374,35089643:208022 +k1,16389:28779047,35089643:208022 +k1,16389:30376432,35089643:208022 +k1,16389:32583029,35089643:0 +) +(1,16390:6764466,35954723:25818563,513147,126483 +k1,16389:7964062,35954723:208036 +k1,16389:10213544,35954723:208036 +k1,16389:11613024,35954723:208035 +k1,16389:13517787,35954723:208036 +k1,16389:14717383,35954723:208036 +k1,16389:16637875,35954723:208036 +k1,16389:17497339,35954723:208036 +k1,16389:19716020,35954723:208036 +k1,16389:20279915,35954723:208035 +k1,16389:21877314,35954723:208036 +k1,16389:23961646,35954723:208036 +k1,16389:26121344,35954723:208036 +k1,16389:27771827,35954723:208036 +k1,16389:28335722,35954723:208035 +k1,16389:30528844,35954723:208036 +k1,16389:32227169,35954723:208036 +k1,16389:32583029,35954723:0 +) +(1,16390:6764466,36819803:25818563,513147,134348 +g1,16389:9702445,36819803 +g1,16389:12975968,36819803 +g1,16389:14321422,36819803 +g1,16389:16903540,36819803 +g1,16389:19530223,36819803 +g1,16389:20260949,36819803 +g1,16389:23181233,36819803 +g1,16389:23993224,36819803 +g1,16389:25687985,36819803 +g1,16389:26499976,36819803 +g1,16389:27718290,36819803 +g1,16389:29342927,36819803 +g1,16389:30201448,36819803 +k1,16390:32583029,36819803:71437 +g1,16390:32583029,36819803 +) +v1,16392:6764466,37655440:0,393216,0 +(1,16405:6764466,40417480:25818563,3155256,196608 +g1,16405:6764466,40417480 +g1,16405:6764466,40417480 +g1,16405:6567858,40417480 +(1,16405:6567858,40417480:0,3155256,196608 +r1,16447:32779637,40417480:26211779,3351864,196608 +k1,16405:6567857,40417480:-26211780 +) +(1,16405:6567858,40417480:26211779,3155256,196608 +[1,16405:6764466,40417480:25818563,2958648,0 +(1,16394:6764466,37889877:25818563,431045,106246 +(1,16393:6764466,37889877:0,0,0 +g1,16393:6764466,37889877 +g1,16393:6764466,37889877 +g1,16393:6436786,37889877 +(1,16393:6436786,37889877:0,0,0 +) +g1,16393:6764466,37889877 +) +k1,16394:6764466,37889877:0 +h1,16394:10747914,37889877:0,0,0 +k1,16394:32583030,37889877:21835116 +g1,16394:32583030,37889877 +) +(1,16398:6764466,38705804:25818563,431045,79822 +(1,16396:6764466,38705804:0,0,0 +g1,16396:6764466,38705804 +g1,16396:6764466,38705804 +g1,16396:6436786,38705804 +(1,16396:6436786,38705804:0,0,0 +) +g1,16396:6764466,38705804 +) +g1,16398:7760328,38705804 +g1,16398:9088144,38705804 +h1,16398:13071591,38705804:0,0,0 +k1,16398:32583029,38705804:19511438 +g1,16398:32583029,38705804 +) +(1,16400:6764466,39521731:25818563,424439,106246 +(1,16399:6764466,39521731:0,0,0 +g1,16399:6764466,39521731 +g1,16399:6764466,39521731 +g1,16399:6436786,39521731 +(1,16399:6436786,39521731:0,0,0 +) +g1,16399:6764466,39521731 +) +k1,16400:6764466,39521731:0 +h1,16400:10747914,39521731:0,0,0 +k1,16400:32583030,39521731:21835116 +g1,16400:32583030,39521731 +) +(1,16404:6764466,40337658:25818563,431045,79822 +(1,16402:6764466,40337658:0,0,0 +g1,16402:6764466,40337658 +g1,16402:6764466,40337658 +g1,16402:6436786,40337658 +(1,16402:6436786,40337658:0,0,0 +) +g1,16402:6764466,40337658 +) +g1,16404:7760328,40337658 +g1,16404:9088144,40337658 +g1,16404:12075729,40337658 +g1,16404:12407683,40337658 +g1,16404:12739637,40337658 +g1,16404:13071591,40337658 +g1,16404:13403545,40337658 +g1,16404:15395269,40337658 +g1,16404:15727223,40337658 +g1,16404:16059177,40337658 +g1,16404:16391131,40337658 +g1,16404:16723085,40337658 +g1,16404:17055039,40337658 +g1,16404:17386993,40337658 +g1,16404:17718947,40337658 +h1,16404:21702394,40337658:0,0,0 +k1,16404:32583029,40337658:10880635 +g1,16404:32583029,40337658 +) +] +) +g1,16405:32583029,40417480 +g1,16405:6764466,40417480 +g1,16405:6764466,40417480 +g1,16405:32583029,40417480 +g1,16405:32583029,40417480 +) +h1,16405:6764466,40614088:0,0,0 +v1,16409:6764466,41600509:0,393216,0 +(1,16422:6764466,44362549:25818563,3155256,196608 +g1,16422:6764466,44362549 +g1,16422:6764466,44362549 +g1,16422:6567858,44362549 +(1,16422:6567858,44362549:0,3155256,196608 +r1,16447:32779637,44362549:26211779,3351864,196608 +k1,16422:6567857,44362549:-26211780 +) +(1,16422:6567858,44362549:26211779,3155256,196608 +[1,16422:6764466,44362549:25818563,2958648,0 +(1,16411:6764466,41834946:25818563,431045,106246 +(1,16410:6764466,41834946:0,0,0 +g1,16410:6764466,41834946 +g1,16410:6764466,41834946 +g1,16410:6436786,41834946 +(1,16410:6436786,41834946:0,0,0 +) +g1,16410:6764466,41834946 +) +k1,16411:6764466,41834946:0 +g1,16411:13071592,41834946 +h1,16411:15395270,41834946:0,0,0 +k1,16411:32583030,41834946:17187760 +g1,16411:32583030,41834946 ) -(1,16417:6764466,42650873:25818563,431045,79822 -(1,16415:6764466,42650873:0,0,0 -g1,16415:6764466,42650873 -g1,16415:6764466,42650873 -g1,16415:6436786,42650873 -(1,16415:6436786,42650873:0,0,0 -) -g1,16415:6764466,42650873 -) -g1,16417:7760328,42650873 -g1,16417:9088144,42650873 -h1,16417:13071591,42650873:0,0,0 -k1,16417:32583029,42650873:19511438 -g1,16417:32583029,42650873 +(1,16415:6764466,42650873:25818563,431045,79822 +(1,16413:6764466,42650873:0,0,0 +g1,16413:6764466,42650873 +g1,16413:6764466,42650873 +g1,16413:6436786,42650873 +(1,16413:6436786,42650873:0,0,0 +) +g1,16413:6764466,42650873 +) +g1,16415:7760328,42650873 +g1,16415:9088144,42650873 +h1,16415:13071591,42650873:0,0,0 +k1,16415:32583029,42650873:19511438 +g1,16415:32583029,42650873 ) -(1,16419:6764466,43466800:25818563,431045,106246 -(1,16418:6764466,43466800:0,0,0 -g1,16418:6764466,43466800 -g1,16418:6764466,43466800 -g1,16418:6436786,43466800 -(1,16418:6436786,43466800:0,0,0 +(1,16417:6764466,43466800:25818563,431045,106246 +(1,16416:6764466,43466800:0,0,0 +g1,16416:6764466,43466800 +g1,16416:6764466,43466800 +g1,16416:6436786,43466800 +(1,16416:6436786,43466800:0,0,0 ) -g1,16418:6764466,43466800 +g1,16416:6764466,43466800 ) -k1,16419:6764466,43466800:0 -g1,16419:13071592,43466800 -h1,16419:15395270,43466800:0,0,0 -k1,16419:32583030,43466800:17187760 -g1,16419:32583030,43466800 +k1,16417:6764466,43466800:0 +g1,16417:13071592,43466800 +h1,16417:15395270,43466800:0,0,0 +k1,16417:32583030,43466800:17187760 +g1,16417:32583030,43466800 ) -(1,16423:6764466,44282727:25818563,431045,79822 -(1,16421:6764466,44282727:0,0,0 -g1,16421:6764466,44282727 -g1,16421:6764466,44282727 -g1,16421:6436786,44282727 -(1,16421:6436786,44282727:0,0,0 +(1,16421:6764466,44282727:25818563,431045,79822 +(1,16419:6764466,44282727:0,0,0 +g1,16419:6764466,44282727 +g1,16419:6764466,44282727 +g1,16419:6436786,44282727 +(1,16419:6436786,44282727:0,0,0 ) -g1,16421:6764466,44282727 +g1,16419:6764466,44282727 ) -g1,16423:7760328,44282727 -g1,16423:9088144,44282727 -h1,16423:13071591,44282727:0,0,0 -k1,16423:32583029,44282727:19511438 -g1,16423:32583029,44282727 +g1,16421:7760328,44282727 +g1,16421:9088144,44282727 +h1,16421:13071591,44282727:0,0,0 +k1,16421:32583029,44282727:19511438 +g1,16421:32583029,44282727 ) ] ) -g1,16424:32583029,44362549 -g1,16424:6764466,44362549 -g1,16424:6764466,44362549 -g1,16424:32583029,44362549 -g1,16424:32583029,44362549 +g1,16422:32583029,44362549 +g1,16422:6764466,44362549 +g1,16422:6764466,44362549 +g1,16422:32583029,44362549 +g1,16422:32583029,44362549 ) -h1,16424:6764466,44559157:0,0,0 +h1,16422:6764466,44559157:0,0,0 ] -g1,16449:32583029,45706769 +g1,16447:32583029,45706769 ) ] -(1,16449:32583029,45706769:0,0,0 -g1,16449:32583029,45706769 +(1,16447:32583029,45706769:0,0,0 +g1,16447:32583029,45706769 ) ) ] -(1,16449:6630773,47279633:25952256,0,0 -h1,16449:6630773,47279633:25952256,0,0 +(1,16447:6630773,47279633:25952256,0,0 +h1,16447:6630773,47279633:25952256,0,0 ) ] -(1,16449:4262630,4025873:0,0,0 -[1,16449:-473656,4025873:0,0,0 -(1,16449:-473656,-710413:0,0,0 -(1,16449:-473656,-710413:0,0,0 -g1,16449:-473656,-710413 +(1,16447:4262630,4025873:0,0,0 +[1,16447:-473656,4025873:0,0,0 +(1,16447:-473656,-710413:0,0,0 +(1,16447:-473656,-710413:0,0,0 +g1,16447:-473656,-710413 ) -g1,16449:-473656,-710413 +g1,16447:-473656,-710413 ) ] ) ] !27186 -}266 -Input:2741:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2742:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2743:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2744:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}267 Input:2745:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2746:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2747:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -286849,1166 +287053,1166 @@ Input:2749:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2751:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2752:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2753:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2754:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2755:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2756:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{267 -[1,16520:4262630,47279633:28320399,43253760,0 -(1,16520:4262630,4025873:0,0,0 -[1,16520:-473656,4025873:0,0,0 -(1,16520:-473656,-710413:0,0,0 -(1,16520:-473656,-644877:0,0,0 -k1,16520:-473656,-644877:-65536 +{268 +[1,16518:4262630,47279633:28320399,43253760,0 +(1,16518:4262630,4025873:0,0,0 +[1,16518:-473656,4025873:0,0,0 +(1,16518:-473656,-710413:0,0,0 +(1,16518:-473656,-644877:0,0,0 +k1,16518:-473656,-644877:-65536 ) -(1,16520:-473656,4736287:0,0,0 -k1,16520:-473656,4736287:5209943 +(1,16518:-473656,4736287:0,0,0 +k1,16518:-473656,4736287:5209943 ) -g1,16520:-473656,-710413 +g1,16518:-473656,-710413 ) ] ) -[1,16520:6630773,47279633:25952256,43253760,0 -[1,16520:6630773,4812305:25952256,786432,0 -(1,16520:6630773,4812305:25952256,505283,134348 -(1,16520:6630773,4812305:25952256,505283,134348 -g1,16520:3078558,4812305 -[1,16520:3078558,4812305:0,0,0 -(1,16520:3078558,2439708:0,1703936,0 -k1,16520:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16520:2537886,2439708:1179648,16384,0 +[1,16518:6630773,47279633:25952256,43253760,0 +[1,16518:6630773,4812305:25952256,786432,0 +(1,16518:6630773,4812305:25952256,505283,134348 +(1,16518:6630773,4812305:25952256,505283,134348 +g1,16518:3078558,4812305 +[1,16518:3078558,4812305:0,0,0 +(1,16518:3078558,2439708:0,1703936,0 +k1,16518:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16518:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16520:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16518:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16520:3078558,4812305:0,0,0 -(1,16520:3078558,2439708:0,1703936,0 -g1,16520:29030814,2439708 -g1,16520:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16520:36151628,1915420:16384,1179648,0 +[1,16518:3078558,4812305:0,0,0 +(1,16518:3078558,2439708:0,1703936,0 +g1,16518:29030814,2439708 +g1,16518:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16518:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16520:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16518:37855564,2439708:1179648,16384,0 ) ) -k1,16520:3078556,2439708:-34777008 +k1,16518:3078556,2439708:-34777008 ) ] -[1,16520:3078558,4812305:0,0,0 -(1,16520:3078558,49800853:0,16384,2228224 -k1,16520:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16520:2537886,49800853:1179648,16384,0 +[1,16518:3078558,4812305:0,0,0 +(1,16518:3078558,49800853:0,16384,2228224 +k1,16518:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16518:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16520:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16518:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16520:3078558,4812305:0,0,0 -(1,16520:3078558,49800853:0,16384,2228224 -g1,16520:29030814,49800853 -g1,16520:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16520:36151628,51504789:16384,1179648,0 +[1,16518:3078558,4812305:0,0,0 +(1,16518:3078558,49800853:0,16384,2228224 +g1,16518:29030814,49800853 +g1,16518:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16518:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16520:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16518:37855564,49800853:1179648,16384,0 ) ) -k1,16520:3078556,49800853:-34777008 +k1,16518:3078556,49800853:-34777008 ) ] -g1,16520:6630773,4812305 -k1,16520:23347041,4812305:15520891 -g1,16520:23960458,4812305 -g1,16520:27572802,4812305 -g1,16520:29306229,4812305 +g1,16518:6630773,4812305 +k1,16518:23347041,4812305:15520891 +g1,16518:23960458,4812305 +g1,16518:27572802,4812305 +g1,16518:29306229,4812305 ) ) ] -[1,16520:6630773,45706769:25952256,40108032,0 -(1,16520:6630773,45706769:25952256,40108032,0 -(1,16520:6630773,45706769:0,0,0 -g1,16520:6630773,45706769 +[1,16518:6630773,45706769:25952256,40108032,0 +(1,16518:6630773,45706769:25952256,40108032,0 +(1,16518:6630773,45706769:0,0,0 +g1,16518:6630773,45706769 ) -[1,16520:6630773,45706769:25952256,40108032,0 -v1,16449:6630773,6254097:0,393216,0 -(1,16449:6630773,10844599:25952256,4983718,0 -g1,16449:6630773,10844599 -g1,16449:6237557,10844599 -r1,16520:6368629,10844599:131072,4983718,0 -g1,16449:6567858,10844599 -g1,16449:6764466,10844599 -[1,16449:6764466,10844599:25818563,4983718,0 -v1,16428:6764466,6254097:0,393216,0 -(1,16447:6764466,10647991:25818563,4787110,196608 -g1,16447:6764466,10647991 -g1,16447:6764466,10647991 -g1,16447:6567858,10647991 -(1,16447:6567858,10647991:0,4787110,196608 -r1,16520:32779637,10647991:26211779,4983718,196608 -k1,16447:6567857,10647991:-26211780 -) -(1,16447:6567858,10647991:26211779,4787110,196608 -[1,16447:6764466,10647991:25818563,4590502,0 -(1,16430:6764466,6488534:25818563,431045,106246 -(1,16429:6764466,6488534:0,0,0 -g1,16429:6764466,6488534 -g1,16429:6764466,6488534 -g1,16429:6436786,6488534 -(1,16429:6436786,6488534:0,0,0 -) -g1,16429:6764466,6488534 -) -k1,16430:6764466,6488534:0 -g1,16430:13071592,6488534 -g1,16430:15063316,6488534 -g1,16430:15727224,6488534 -k1,16430:15727224,6488534:0 -h1,16430:18050902,6488534:0,0,0 -k1,16430:32583029,6488534:14532127 -g1,16430:32583029,6488534 -) -(1,16434:6764466,7304461:25818563,431045,79822 -(1,16432:6764466,7304461:0,0,0 -g1,16432:6764466,7304461 -g1,16432:6764466,7304461 -g1,16432:6436786,7304461 -(1,16432:6436786,7304461:0,0,0 -) -g1,16432:6764466,7304461 -) -g1,16434:7760328,7304461 -g1,16434:9088144,7304461 -h1,16434:13071591,7304461:0,0,0 -k1,16434:32583029,7304461:19511438 -g1,16434:32583029,7304461 -) -(1,16436:6764466,8120388:25818563,424439,106246 -(1,16435:6764466,8120388:0,0,0 -g1,16435:6764466,8120388 -g1,16435:6764466,8120388 -g1,16435:6436786,8120388 -(1,16435:6436786,8120388:0,0,0 -) -g1,16435:6764466,8120388 -) -k1,16436:6764466,8120388:0 -g1,16436:13071592,8120388 -g1,16436:15063316,8120388 -g1,16436:15727224,8120388 -k1,16436:15727224,8120388:0 -h1,16436:18050902,8120388:0,0,0 -k1,16436:32583029,8120388:14532127 -g1,16436:32583029,8120388 -) -(1,16440:6764466,8936315:25818563,431045,79822 -(1,16438:6764466,8936315:0,0,0 -g1,16438:6764466,8936315 -g1,16438:6764466,8936315 -g1,16438:6436786,8936315 -(1,16438:6436786,8936315:0,0,0 -) -g1,16438:6764466,8936315 -) -g1,16440:7760328,8936315 -g1,16440:9088144,8936315 -h1,16440:13071591,8936315:0,0,0 -k1,16440:32583029,8936315:19511438 -g1,16440:32583029,8936315 -) -(1,16442:6764466,9752242:25818563,431045,106246 -(1,16441:6764466,9752242:0,0,0 -g1,16441:6764466,9752242 -g1,16441:6764466,9752242 -g1,16441:6436786,9752242 -(1,16441:6436786,9752242:0,0,0 -) -g1,16441:6764466,9752242 -) -k1,16442:6764466,9752242:0 -g1,16442:14399407,9752242 -g1,16442:16391131,9752242 -g1,16442:17055039,9752242 -g1,16442:19710671,9752242 -g1,16442:24026073,9752242 -g1,16442:26017797,9752242 -g1,16442:26681705,9752242 -k1,16442:26681705,9752242:0 -h1,16442:29005383,9752242:0,0,0 -k1,16442:32583029,9752242:3577646 -g1,16442:32583029,9752242 -) -(1,16446:6764466,10568169:25818563,424439,79822 -(1,16444:6764466,10568169:0,0,0 -g1,16444:6764466,10568169 -g1,16444:6764466,10568169 -g1,16444:6436786,10568169 -(1,16444:6436786,10568169:0,0,0 -) -g1,16444:6764466,10568169 -) -g1,16446:7760328,10568169 -g1,16446:9088144,10568169 -h1,16446:10415960,10568169:0,0,0 -k1,16446:32583028,10568169:22167068 -g1,16446:32583028,10568169 -) -] -) -g1,16447:32583029,10647991 -g1,16447:6764466,10647991 -g1,16447:6764466,10647991 -g1,16447:32583029,10647991 -g1,16447:32583029,10647991 -) -h1,16447:6764466,10844599:0,0,0 -] -g1,16449:32583029,10844599 -) -h1,16449:6630773,10844599:0,0,0 -(1,16452:6630773,11709679:25952256,513147,126483 -h1,16451:6630773,11709679:983040,0,0 -k1,16451:9656295,11709679:210095 -k1,16451:10857950,11709679:210095 -k1,16451:14295038,11709679:210095 -k1,16451:17714432,11709679:210096 -k1,16451:21441189,11709679:210095 -k1,16451:24286487,11709679:210095 -k1,16451:25515667,11709679:210095 -k1,16451:29762780,11709679:210095 -(1,16451:29762780,11709679:0,452978,115847 -r1,16520:32583029,11709679:2820249,568825,115847 -k1,16451:29762780,11709679:-2820249 -) -(1,16451:29762780,11709679:2820249,452978,115847 -k1,16451:29762780,11709679:3277 -h1,16451:32579752,11709679:0,411205,112570 -) -k1,16451:32583029,11709679:0 -) -(1,16452:6630773,12574759:25952256,513147,115847 -k1,16451:8113934,12574759:291716 -(1,16451:8113934,12574759:0,459977,115847 -r1,16520:12341030,12574759:4227096,575824,115847 -k1,16451:8113934,12574759:-4227096 -) -(1,16451:8113934,12574759:4227096,459977,115847 -k1,16451:8113934,12574759:3277 -h1,16451:12337753,12574759:0,411205,112570 -) -k1,16451:12806416,12574759:291716 -k1,16451:14369531,12574759:291717 -k1,16451:15320539,12574759:291716 -k1,16451:17251310,12574759:291716 -k1,16451:18074523,12574759:291716 -k1,16451:19650746,12574759:291717 -k1,16451:20558500,12574759:291716 -k1,16451:21206076,12574759:291716 -k1,16451:22597486,12574759:291716 -k1,16451:23540631,12574759:291717 -(1,16451:23540631,12574759:0,452978,115847 -r1,16520:26360880,12574759:2820249,568825,115847 -k1,16451:23540631,12574759:-2820249 -) -(1,16451:23540631,12574759:2820249,452978,115847 -k1,16451:23540631,12574759:3277 -h1,16451:26357603,12574759:0,411205,112570 -) -k1,16451:26826266,12574759:291716 -k1,16451:29741388,12574759:291716 -k1,16451:32583029,12574759:0 -) -(1,16452:6630773,13439839:25952256,513147,134348 -k1,16451:10620545,13439839:283056 -k1,16451:12641616,13439839:283056 -k1,16451:15306250,13439839:283056 -k1,16451:16693588,13439839:283056 -k1,16451:17724410,13439839:283056 -k1,16451:19520692,13439839:283056 -k1,16451:20419786,13439839:283056 -k1,16451:21721927,13439839:283056 -k1,16451:25087141,13439839:283056 -k1,16451:26029489,13439839:283056 -k1,16451:29974041,13439839:283056 -k1,16451:32583029,13439839:0 -) -(1,16452:6630773,14304919:25952256,505283,7863 -k1,16452:32583029,14304919:23075882 -g1,16452:32583029,14304919 -) -v1,16454:6630773,14989774:0,393216,0 -(1,16467:6630773,20149267:25952256,5552709,196608 -g1,16467:6630773,20149267 -g1,16467:6630773,20149267 -g1,16467:6434165,20149267 -(1,16467:6434165,20149267:0,5552709,196608 -r1,16520:32779637,20149267:26345472,5749317,196608 -k1,16467:6434165,20149267:-26345472 -) -(1,16467:6434165,20149267:26345472,5552709,196608 -[1,16467:6630773,20149267:25952256,5356101,0 -(1,16456:6630773,15217605:25952256,424439,86428 -(1,16455:6630773,15217605:0,0,0 -g1,16455:6630773,15217605 -g1,16455:6630773,15217605 -g1,16455:6303093,15217605 -(1,16455:6303093,15217605:0,0,0 -) -g1,16455:6630773,15217605 -) -k1,16456:6630773,15217605:0 -g1,16456:9618359,15217605 -g1,16456:10282267,15217605 -g1,16456:11942037,15217605 -g1,16456:12605945,15217605 -g1,16456:13269853,15217605 -g1,16456:14929623,15217605 -g1,16456:15593531,15217605 -g1,16456:16257439,15217605 -g1,16456:16921347,15217605 -g1,16456:17585255,15217605 -g1,16456:18581117,15217605 -g1,16456:19245025,15217605 -g1,16456:19908933,15217605 -g1,16456:23228472,15217605 -g1,16456:23892380,15217605 -h1,16456:24888242,15217605:0,0,0 -k1,16456:32583029,15217605:7694787 -g1,16456:32583029,15217605 -) -(1,16466:6630773,16033532:25952256,424439,9908 -(1,16458:6630773,16033532:0,0,0 -g1,16458:6630773,16033532 -g1,16458:6630773,16033532 -g1,16458:6303093,16033532 -(1,16458:6303093,16033532:0,0,0 -) -g1,16458:6630773,16033532 -) -g1,16466:7626635,16033532 -g1,16466:8290543,16033532 -g1,16466:8954451,16033532 -g1,16466:11610083,16033532 -g1,16466:12273991,16033532 -g1,16466:12937899,16033532 -h1,16466:13269853,16033532:0,0,0 -k1,16466:32583029,16033532:19313176 -g1,16466:32583029,16033532 -) -(1,16466:6630773,16718387:25952256,424439,6605 -h1,16466:6630773,16718387:0,0,0 -g1,16466:7626635,16718387 -g1,16466:7958589,16718387 -g1,16466:8290543,16718387 -g1,16466:8622497,16718387 -g1,16466:8954451,16718387 -g1,16466:9286405,16718387 -g1,16466:9618359,16718387 -g1,16466:10282267,16718387 -g1,16466:10614221,16718387 -g1,16466:10946175,16718387 -g1,16466:11278129,16718387 -g1,16466:11610083,16718387 -g1,16466:12273991,16718387 -g1,16466:12605945,16718387 -g1,16466:12937899,16718387 -g1,16466:13269853,16718387 -g1,16466:13601807,16718387 -g1,16466:14265715,16718387 -h1,16466:14597669,16718387:0,0,0 -k1,16466:32583029,16718387:17985360 -g1,16466:32583029,16718387 -) -(1,16466:6630773,17403242:25952256,424439,6605 -h1,16466:6630773,17403242:0,0,0 -g1,16466:7626635,17403242 -g1,16466:7958589,17403242 -g1,16466:8290543,17403242 -g1,16466:10282267,17403242 -g1,16466:12273991,17403242 -g1,16466:14265715,17403242 -k1,16466:14265715,17403242:0 -h1,16466:15925485,17403242:0,0,0 -k1,16466:32583029,17403242:16657544 -g1,16466:32583029,17403242 -) -(1,16466:6630773,18088097:25952256,424439,9908 -h1,16466:6630773,18088097:0,0,0 -g1,16466:7626635,18088097 -g1,16466:8290543,18088097 -g1,16466:8622497,18088097 -g1,16466:8954451,18088097 -g1,16466:9286405,18088097 -g1,16466:9618359,18088097 -g1,16466:10282267,18088097 -g1,16466:10614221,18088097 -g1,16466:10946175,18088097 -g1,16466:11278129,18088097 -g1,16466:11610083,18088097 -g1,16466:12273991,18088097 -g1,16466:12605945,18088097 -g1,16466:12937899,18088097 -g1,16466:13269853,18088097 -g1,16466:13601807,18088097 -g1,16466:14265715,18088097 -h1,16466:14597669,18088097:0,0,0 -k1,16466:32583029,18088097:17985360 -g1,16466:32583029,18088097 -) -(1,16466:6630773,18772952:25952256,407923,9908 -h1,16466:6630773,18772952:0,0,0 -g1,16466:7626635,18772952 -g1,16466:8290543,18772952 -g1,16466:8622497,18772952 -g1,16466:8954451,18772952 -g1,16466:9286405,18772952 -g1,16466:9618359,18772952 -g1,16466:10282267,18772952 -g1,16466:10614221,18772952 -g1,16466:10946175,18772952 -g1,16466:11278129,18772952 -g1,16466:11610083,18772952 -g1,16466:12273991,18772952 -g1,16466:12605945,18772952 -g1,16466:12937899,18772952 -g1,16466:13269853,18772952 -g1,16466:13601807,18772952 -g1,16466:14265715,18772952 -h1,16466:14597669,18772952:0,0,0 -k1,16466:32583029,18772952:17985360 -g1,16466:32583029,18772952 -) -(1,16466:6630773,19457807:25952256,424439,9908 -h1,16466:6630773,19457807:0,0,0 -g1,16466:7626635,19457807 -g1,16466:8290543,19457807 -g1,16466:8622497,19457807 -g1,16466:8954451,19457807 -g1,16466:9286405,19457807 -g1,16466:9618359,19457807 -g1,16466:10282267,19457807 -g1,16466:10614221,19457807 -g1,16466:10946175,19457807 -g1,16466:11278129,19457807 -g1,16466:11610083,19457807 -g1,16466:12273991,19457807 -g1,16466:12605945,19457807 -g1,16466:12937899,19457807 -g1,16466:13269853,19457807 -g1,16466:13601807,19457807 -g1,16466:14265715,19457807 -h1,16466:14597669,19457807:0,0,0 -k1,16466:32583029,19457807:17985360 -g1,16466:32583029,19457807 -) -(1,16466:6630773,20142662:25952256,424439,6605 -h1,16466:6630773,20142662:0,0,0 -g1,16466:7626635,20142662 -g1,16466:8290543,20142662 -g1,16466:8954451,20142662 -g1,16466:9618359,20142662 -g1,16466:11278129,20142662 -h1,16466:12605945,20142662:0,0,0 -k1,16466:32583029,20142662:19977084 -g1,16466:32583029,20142662 -) -] -) -g1,16467:32583029,20149267 -g1,16467:6630773,20149267 -g1,16467:6630773,20149267 -g1,16467:32583029,20149267 -g1,16467:32583029,20149267 -) -h1,16467:6630773,20345875:0,0,0 -v1,16471:6630773,21210955:0,393216,0 -(1,16472:6630773,22356375:25952256,1538636,0 -g1,16472:6630773,22356375 -g1,16472:6237557,22356375 -r1,16520:6368629,22356375:131072,1538636,0 -g1,16472:6567858,22356375 -g1,16472:6764466,22356375 -[1,16472:6764466,22356375:25818563,1538636,0 -(1,16472:6764466,21483432:25818563,665693,196608 -(1,16471:6764466,21483432:0,665693,196608 -r1,16520:7868133,21483432:1103667,862301,196608 -k1,16471:6764466,21483432:-1103667 -) -(1,16471:6764466,21483432:1103667,665693,196608 -) -k1,16471:8022422,21483432:154289 -k1,16471:9340351,21483432:327680 -k1,16471:11128453,21483432:154289 -k1,16471:11814239,21483432:154289 -k1,16471:12987613,21483432:154289 -k1,16471:16316466,21483432:154289 -k1,16471:16936716,21483432:154289 -k1,16471:18261478,21483432:154289 -k1,16471:20714115,21483432:154289 -(1,16471:20714115,21483432:0,452978,115847 -r1,16520:23534364,21483432:2820249,568825,115847 -k1,16471:20714115,21483432:-2820249 -) -(1,16471:20714115,21483432:2820249,452978,115847 -k1,16471:20714115,21483432:3277 -h1,16471:23531087,21483432:0,411205,112570 -) -k1,16471:23688653,21483432:154289 -k1,16471:24604470,21483432:154289 -(1,16471:24604470,21483432:0,459977,115847 -r1,16520:28831566,21483432:4227096,575824,115847 -k1,16471:24604470,21483432:-4227096 -) -(1,16471:24604470,21483432:4227096,459977,115847 -k1,16471:24604470,21483432:3277 -h1,16471:28828289,21483432:0,411205,112570 -) -k1,16471:28985855,21483432:154289 -k1,16471:29756182,21483432:154289 -k1,16471:30929556,21483432:154289 -k1,16472:32583029,21483432:0 -) -(1,16472:6764466,22348512:25818563,505283,7863 -g1,16471:8602750,22348512 -k1,16472:32583029,22348512:21830698 -g1,16472:32583029,22348512 -) -] -g1,16472:32583029,22356375 -) -h1,16472:6630773,22356375:0,0,0 -v1,16475:6630773,23221455:0,393216,0 -(1,16512:6630773,43450264:25952256,20622025,0 -g1,16512:6630773,43450264 -g1,16512:6237557,43450264 -r1,16520:6368629,43450264:131072,20622025,0 -g1,16512:6567858,43450264 -g1,16512:6764466,43450264 -[1,16512:6764466,43450264:25818563,20622025,0 -(1,16476:6764466,23582632:25818563,754393,260573 -(1,16475:6764466,23582632:0,754393,260573 -r1,16520:7856192,23582632:1091726,1014966,260573 -k1,16475:6764466,23582632:-1091726 -) -(1,16475:6764466,23582632:1091726,754393,260573 -) -k1,16475:8059820,23582632:203628 -k1,16475:8387500,23582632:327680 -k1,16475:10365844,23582632:203629 -k1,16475:12859300,23582632:203628 -k1,16475:15268215,23582632:203628 -k1,16475:17886190,23582632:203629 -k1,16475:18775980,23582632:203628 -k1,16475:22382237,23582632:203628 -k1,16475:23237293,23582632:203628 -k1,16475:24460007,23582632:203629 -(1,16475:24460007,23582632:0,459977,115847 -r1,16520:28687103,23582632:4227096,575824,115847 -k1,16475:24460007,23582632:-4227096 -) -(1,16475:24460007,23582632:4227096,459977,115847 -k1,16475:24460007,23582632:3277 -h1,16475:28683826,23582632:0,411205,112570 -) -k1,16475:28890731,23582632:203628 -k1,16475:32583029,23582632:0 -) -(1,16476:6764466,24447712:25818563,513147,102891 -k1,16475:7678441,24447712:262547 -k1,16475:8688754,24447712:262547 -k1,16475:11709712,24447712:262548 -k1,16475:12658421,24447712:262547 -k1,16475:16234468,24447712:262547 -k1,16475:17601297,24447712:262547 -k1,16475:18611611,24447712:262548 -k1,16475:21272120,24447712:262547 -k1,16475:23842845,24447712:262547 -k1,16475:24788277,24447712:262547 -k1,16475:27784332,24447712:262548 -k1,16475:29647924,24447712:262547 -k1,16475:30929556,24447712:262547 -k1,16475:32583029,24447712:0 -) -(1,16476:6764466,25312792:25818563,513147,134348 -k1,16475:9416634,25312792:166387 -k1,16475:10242313,25312792:166387 -k1,16475:11942898,25312792:166387 -k1,16475:12795448,25312792:166388 -k1,16475:13980920,25312792:166387 -k1,16475:15536670,25312792:166387 -k1,16475:17960117,25312792:166387 -k1,16475:21529133,25312792:166387 -k1,16475:23900807,25312792:166387 -k1,16475:24718623,25312792:166388 -k1,16475:25904095,25312792:166387 -(1,16475:25904095,25312792:0,452978,115847 -r1,16520:28724344,25312792:2820249,568825,115847 -k1,16475:25904095,25312792:-2820249 -) -(1,16475:25904095,25312792:2820249,452978,115847 -k1,16475:25904095,25312792:3277 -h1,16475:28721067,25312792:0,411205,112570 -) -k1,16475:28890731,25312792:166387 -k1,16475:32583029,25312792:0 -) -(1,16476:6764466,26177872:25818563,513147,102891 -k1,16475:8070468,26177872:201720 -k1,16475:9019953,26177872:201719 -k1,16475:11619635,26177872:201720 -k1,16475:14129533,26177872:201720 -k1,16475:15014138,26177872:201720 -k1,16475:16539684,26177872:201719 -k1,16475:18342449,26177872:201720 -k1,16475:19563254,26177872:201720 -k1,16475:21418447,26177872:201720 -k1,16475:24105947,26177872:201719 -k1,16475:24966959,26177872:201720 -k1,16475:28122387,26177872:201720 -k1,16475:29010269,26177872:201720 -k1,16475:30746186,26177872:201719 -k1,16475:31563944,26177872:201720 -k1,16475:32583029,26177872:0 -) -(1,16476:6764466,27042952:25818563,513147,134348 -k1,16475:9234299,27042952:277654 -k1,16475:10329842,27042952:277654 -k1,16475:11475849,27042952:277655 -k1,16475:12960676,27042952:277654 -k1,16475:13854368,27042952:277654 -k1,16475:16410709,27042952:277654 -h1,16475:17381297,27042952:0,0,0 -k1,16475:17658951,27042952:277654 -k1,16475:18745976,27042952:277655 -k1,16475:20521783,27042952:277654 -h1,16475:21318701,27042952:0,0,0 -k1,16475:21770025,27042952:277654 -k1,16475:23481607,27042952:277654 -k1,16475:24678076,27042952:277654 -k1,16475:26345094,27042952:277655 -k1,16475:28829345,27042952:277654 -k1,16475:30211281,27042952:277654 -k1,16475:32583029,27042952:0 -) -(1,16476:6764466,27908032:25818563,513147,115847 -k1,16475:9693633,27908032:215976 -k1,16475:10568901,27908032:215976 -k1,16475:13017688,27908032:215975 -(1,16475:13017688,27908032:0,452978,115847 -r1,16520:14431089,27908032:1413401,568825,115847 -k1,16475:13017688,27908032:-1413401 -) -(1,16475:13017688,27908032:1413401,452978,115847 -k1,16475:13017688,27908032:3277 -h1,16475:14427812,27908032:0,411205,112570 -) -k1,16475:14647065,27908032:215976 -k1,16475:16054486,27908032:215976 -(1,16475:16054486,27908032:0,452978,115847 -r1,16520:18171311,27908032:2116825,568825,115847 -k1,16475:16054486,27908032:-2116825 -) -(1,16475:16054486,27908032:2116825,452978,115847 -k1,16475:16054486,27908032:3277 -h1,16475:18168034,27908032:0,411205,112570 -) -k1,16475:18560957,27908032:215976 -k1,16475:19973620,27908032:215976 -k1,16475:23375955,27908032:215975 -k1,16475:24123428,27908032:215976 -k1,16475:24955442,27908032:215976 -k1,16475:26190503,27908032:215976 -k1,16475:27936745,27908032:215976 -k1,16475:28804148,27908032:215975 -k1,16475:30112609,27908032:215976 -(1,16475:30112609,27908032:0,452978,115847 -r1,16520:31174298,27908032:1061689,568825,115847 -k1,16475:30112609,27908032:-1061689 -) -(1,16475:30112609,27908032:1061689,452978,115847 -k1,16475:30112609,27908032:3277 -h1,16475:31171021,27908032:0,411205,112570 -) -k1,16475:31563944,27908032:215976 -k1,16475:32583029,27908032:0 -) -(1,16476:6764466,28773112:25818563,513147,134348 -k1,16475:9448603,28773112:223915 -k1,16475:12541683,28773112:223914 -k1,16475:13417026,28773112:223915 -k1,16475:15939288,28773112:223914 -k1,16475:17859930,28773112:223915 -k1,16475:20925485,28773112:223914 -k1,16475:23263591,28773112:223915 -k1,16475:27521901,28773112:223914 -k1,16475:28937261,28773112:223915 -k1,16475:32583029,28773112:0 -) -(1,16476:6764466,29638192:25818563,505283,134348 -k1,16475:7619127,29638192:203233 -k1,16475:9129802,29638192:203232 -(1,16475:9129802,29638192:0,459977,115847 -r1,16520:12653474,29638192:3523672,575824,115847 -k1,16475:9129802,29638192:-3523672 -) -(1,16475:9129802,29638192:3523672,459977,115847 -k1,16475:9129802,29638192:3277 -h1,16475:12650197,29638192:0,411205,112570 -) -k1,16475:12856707,29638192:203233 -k1,16475:15349767,29638192:203232 -k1,16475:16239162,29638192:203233 -k1,16475:19544213,29638192:203232 -k1,16475:20740972,29638192:203233 -k1,16475:23897913,29638192:203233 -k1,16475:25292590,29638192:203232 -k1,16475:27583145,29638192:203233 -k1,16475:30499568,29638192:203232 -k1,16475:31835263,29638192:203233 -k1,16475:32583029,29638192:0 -) -(1,16476:6764466,30503272:25818563,513147,134348 -g1,16475:9738489,30503272 -g1,16475:10589146,30503272 -g1,16475:13459622,30503272 -g1,16475:16851765,30503272 -g1,16475:19764185,30503272 -g1,16475:20579452,30503272 -g1,16475:21797766,30503272 -g1,16475:23386358,30503272 -k1,16476:32583029,30503272:7267947 -g1,16476:32583029,30503272 -) -v1,16478:6764466,31188127:0,393216,0 -(1,16491:6764466,36347620:25818563,5552709,196608 -g1,16491:6764466,36347620 -g1,16491:6764466,36347620 -g1,16491:6567858,36347620 -(1,16491:6567858,36347620:0,5552709,196608 -r1,16520:32779637,36347620:26211779,5749317,196608 -k1,16491:6567857,36347620:-26211780 -) -(1,16491:6567858,36347620:26211779,5552709,196608 -[1,16491:6764466,36347620:25818563,5356101,0 -(1,16480:6764466,31415958:25818563,424439,86428 -(1,16479:6764466,31415958:0,0,0 -g1,16479:6764466,31415958 -g1,16479:6764466,31415958 -g1,16479:6436786,31415958 -(1,16479:6436786,31415958:0,0,0 -) -g1,16479:6764466,31415958 -) -k1,16480:6764466,31415958:0 -g1,16480:9752052,31415958 -g1,16480:10415960,31415958 -g1,16480:12075730,31415958 -g1,16480:12739638,31415958 -g1,16480:13403546,31415958 -g1,16480:15063316,31415958 -g1,16480:15727224,31415958 -g1,16480:16391132,31415958 -g1,16480:19710672,31415958 -g1,16480:20706534,31415958 -g1,16480:21702396,31415958 -g1,16480:22698258,31415958 -h1,16480:23694120,31415958:0,0,0 -k1,16480:32583029,31415958:8888909 -g1,16480:32583029,31415958 -) -(1,16490:6764466,32231885:25818563,424439,9908 -(1,16482:6764466,32231885:0,0,0 -g1,16482:6764466,32231885 -g1,16482:6764466,32231885 -g1,16482:6436786,32231885 -(1,16482:6436786,32231885:0,0,0 -) -g1,16482:6764466,32231885 -) -g1,16490:7760328,32231885 -g1,16490:8424236,32231885 -g1,16490:9088144,32231885 -g1,16490:11743776,32231885 -g1,16490:12407684,32231885 -g1,16490:13071592,32231885 -h1,16490:13403546,32231885:0,0,0 -k1,16490:32583030,32231885:19179484 -g1,16490:32583030,32231885 -) -(1,16490:6764466,32916740:25818563,424439,6605 -h1,16490:6764466,32916740:0,0,0 -g1,16490:7760328,32916740 -g1,16490:8092282,32916740 -g1,16490:8424236,32916740 -g1,16490:8756190,32916740 -g1,16490:9088144,32916740 -g1,16490:9420098,32916740 -g1,16490:9752052,32916740 -g1,16490:10415960,32916740 -g1,16490:10747914,32916740 -g1,16490:11079868,32916740 -g1,16490:11411822,32916740 -g1,16490:11743776,32916740 -g1,16490:12407684,32916740 -h1,16490:12739638,32916740:0,0,0 -k1,16490:32583030,32916740:19843392 -g1,16490:32583030,32916740 -) -(1,16490:6764466,33601595:25818563,424439,6605 -h1,16490:6764466,33601595:0,0,0 -g1,16490:7760328,33601595 -g1,16490:8092282,33601595 -g1,16490:8424236,33601595 -g1,16490:10415960,33601595 -g1,16490:12407684,33601595 -k1,16490:12407684,33601595:0 -h1,16490:14399408,33601595:0,0,0 -k1,16490:32583028,33601595:18183620 -g1,16490:32583028,33601595 -) -(1,16490:6764466,34286450:25818563,424439,79822 -h1,16490:6764466,34286450:0,0,0 -g1,16490:7760328,34286450 -g1,16490:8424236,34286450 -g1,16490:8756190,34286450 -g1,16490:9088144,34286450 -g1,16490:9420098,34286450 -g1,16490:9752052,34286450 -g1,16490:10415960,34286450 -g1,16490:10747914,34286450 -g1,16490:11079868,34286450 -g1,16490:11411822,34286450 -g1,16490:11743776,34286450 -g1,16490:12407684,34286450 -g1,16490:14067454,34286450 -k1,16490:14067454,34286450:0 -h1,16490:15395270,34286450:0,0,0 -k1,16490:32583030,34286450:17187760 -g1,16490:32583030,34286450 -) -(1,16490:6764466,34971305:25818563,424439,79822 -h1,16490:6764466,34971305:0,0,0 -g1,16490:7760328,34971305 -g1,16490:8424236,34971305 -g1,16490:8756190,34971305 -g1,16490:9088144,34971305 -g1,16490:9420098,34971305 -g1,16490:9752052,34971305 -g1,16490:10415960,34971305 -g1,16490:10747914,34971305 -g1,16490:11079868,34971305 -g1,16490:11411822,34971305 -g1,16490:11743776,34971305 -g1,16490:12407684,34971305 -g1,16490:14067454,34971305 -k1,16490:14067454,34971305:0 -h1,16490:15395270,34971305:0,0,0 -k1,16490:32583030,34971305:17187760 -g1,16490:32583030,34971305 -) -(1,16490:6764466,35656160:25818563,424439,79822 -h1,16490:6764466,35656160:0,0,0 -g1,16490:7760328,35656160 -g1,16490:8424236,35656160 -g1,16490:8756190,35656160 -g1,16490:9088144,35656160 -g1,16490:9420098,35656160 -g1,16490:9752052,35656160 -g1,16490:10415960,35656160 -g1,16490:10747914,35656160 -g1,16490:11079868,35656160 -g1,16490:11411822,35656160 -g1,16490:11743776,35656160 -g1,16490:12407684,35656160 -g1,16490:14067454,35656160 -k1,16490:14067454,35656160:0 -h1,16490:15395270,35656160:0,0,0 -k1,16490:32583030,35656160:17187760 -g1,16490:32583030,35656160 -) -(1,16490:6764466,36341015:25818563,424439,6605 -h1,16490:6764466,36341015:0,0,0 -g1,16490:7760328,36341015 -g1,16490:8424236,36341015 -g1,16490:9088144,36341015 -g1,16490:9752052,36341015 -g1,16490:11411822,36341015 -h1,16490:12739638,36341015:0,0,0 -k1,16490:32583030,36341015:19843392 -g1,16490:32583030,36341015 -) -] -) -g1,16491:32583029,36347620 -g1,16491:6764466,36347620 -g1,16491:6764466,36347620 -g1,16491:32583029,36347620 -g1,16491:32583029,36347620 -) -h1,16491:6764466,36544228:0,0,0 -(1,16495:6764466,37409308:25818563,513147,126483 -h1,16494:6764466,37409308:983040,0,0 -g1,16494:8434323,37409308 -g1,16494:9627078,37409308 -g1,16494:10485599,37409308 -g1,16494:12008655,37409308 -g1,16494:12890769,37409308 -g1,16494:13445858,37409308 -g1,16494:14638613,37409308 -g1,16494:15497134,37409308 -g1,16494:18004541,37409308 -g1,16494:19308052,37409308 -g1,16494:20255047,37409308 -g1,16494:22868622,37409308 -g1,16494:25273138,37409308 -g1,16494:26123795,37409308 -g1,16494:27342109,37409308 -k1,16495:32583029,37409308:1481775 -g1,16495:32583029,37409308 -) -v1,16497:6764466,38094163:0,393216,0 -(1,16510:6764466,43253656:25818563,5552709,196608 -g1,16510:6764466,43253656 -g1,16510:6764466,43253656 -g1,16510:6567858,43253656 -(1,16510:6567858,43253656:0,5552709,196608 -r1,16520:32779637,43253656:26211779,5749317,196608 -k1,16510:6567857,43253656:-26211780 -) -(1,16510:6567858,43253656:26211779,5552709,196608 -[1,16510:6764466,43253656:25818563,5356101,0 -(1,16499:6764466,38321994:25818563,424439,86428 -(1,16498:6764466,38321994:0,0,0 -g1,16498:6764466,38321994 -g1,16498:6764466,38321994 -g1,16498:6436786,38321994 -(1,16498:6436786,38321994:0,0,0 -) -g1,16498:6764466,38321994 -) -k1,16499:6764466,38321994:0 -g1,16499:9752052,38321994 -g1,16499:10415960,38321994 -g1,16499:12075730,38321994 -g1,16499:12739638,38321994 -g1,16499:13403546,38321994 -g1,16499:15063316,38321994 -g1,16499:15727224,38321994 -g1,16499:16391132,38321994 -g1,16499:19710672,38321994 -g1,16499:21370442,38321994 -g1,16499:23030212,38321994 -g1,16499:27677567,38321994 -h1,16499:32324922,38321994:0,0,0 -k1,16499:32583029,38321994:258107 -g1,16499:32583029,38321994 -) -(1,16509:6764466,39137921:25818563,424439,9908 -(1,16501:6764466,39137921:0,0,0 -g1,16501:6764466,39137921 -g1,16501:6764466,39137921 -g1,16501:6436786,39137921 -(1,16501:6436786,39137921:0,0,0 -) -g1,16501:6764466,39137921 -) -g1,16509:7760328,39137921 -g1,16509:8424236,39137921 -g1,16509:9088144,39137921 -g1,16509:11743776,39137921 -g1,16509:12407684,39137921 -g1,16509:13071592,39137921 -h1,16509:13403546,39137921:0,0,0 -k1,16509:32583030,39137921:19179484 -g1,16509:32583030,39137921 -) -(1,16509:6764466,39822776:25818563,424439,6605 -h1,16509:6764466,39822776:0,0,0 -g1,16509:7760328,39822776 -g1,16509:8092282,39822776 -g1,16509:8424236,39822776 -g1,16509:8756190,39822776 -g1,16509:9088144,39822776 -g1,16509:9420098,39822776 -g1,16509:9752052,39822776 -g1,16509:10415960,39822776 -g1,16509:10747914,39822776 -g1,16509:11079868,39822776 -g1,16509:11411822,39822776 -g1,16509:11743776,39822776 -g1,16509:12407684,39822776 -h1,16509:12739638,39822776:0,0,0 -k1,16509:32583030,39822776:19843392 -g1,16509:32583030,39822776 -) -(1,16509:6764466,40507631:25818563,424439,6605 -h1,16509:6764466,40507631:0,0,0 -g1,16509:7760328,40507631 -g1,16509:8092282,40507631 -g1,16509:8424236,40507631 -g1,16509:10415960,40507631 -g1,16509:12407684,40507631 -k1,16509:12407684,40507631:0 -h1,16509:14399408,40507631:0,0,0 -k1,16509:32583028,40507631:18183620 -g1,16509:32583028,40507631 -) -(1,16509:6764466,41192486:25818563,424439,79822 -h1,16509:6764466,41192486:0,0,0 -g1,16509:7760328,41192486 -g1,16509:8424236,41192486 -g1,16509:8756190,41192486 -g1,16509:9088144,41192486 -g1,16509:9420098,41192486 -g1,16509:9752052,41192486 -g1,16509:10415960,41192486 -g1,16509:10747914,41192486 -g1,16509:11079868,41192486 -g1,16509:11411822,41192486 -g1,16509:11743776,41192486 -g1,16509:12407684,41192486 -g1,16509:14067454,41192486 -k1,16509:14067454,41192486:0 -h1,16509:15395270,41192486:0,0,0 -k1,16509:32583030,41192486:17187760 -g1,16509:32583030,41192486 -) -(1,16509:6764466,41877341:25818563,424439,79822 -h1,16509:6764466,41877341:0,0,0 -g1,16509:7760328,41877341 -g1,16509:8424236,41877341 -g1,16509:8756190,41877341 -g1,16509:9088144,41877341 -g1,16509:9420098,41877341 -g1,16509:9752052,41877341 -g1,16509:10415960,41877341 -g1,16509:10747914,41877341 -g1,16509:11079868,41877341 -g1,16509:11411822,41877341 -g1,16509:11743776,41877341 -g1,16509:12407684,41877341 -g1,16509:14067454,41877341 -k1,16509:14067454,41877341:0 -h1,16509:15395270,41877341:0,0,0 -k1,16509:32583030,41877341:17187760 -g1,16509:32583030,41877341 -) -(1,16509:6764466,42562196:25818563,424439,79822 -h1,16509:6764466,42562196:0,0,0 -g1,16509:7760328,42562196 -g1,16509:8424236,42562196 -g1,16509:8756190,42562196 -g1,16509:9088144,42562196 -g1,16509:9420098,42562196 -g1,16509:9752052,42562196 -g1,16509:10415960,42562196 -g1,16509:10747914,42562196 -g1,16509:11079868,42562196 -g1,16509:11411822,42562196 -g1,16509:11743776,42562196 -g1,16509:12407684,42562196 -g1,16509:14067454,42562196 -k1,16509:14067454,42562196:0 -h1,16509:15395270,42562196:0,0,0 -k1,16509:32583030,42562196:17187760 -g1,16509:32583030,42562196 -) -(1,16509:6764466,43247051:25818563,424439,6605 -h1,16509:6764466,43247051:0,0,0 -g1,16509:7760328,43247051 -g1,16509:8424236,43247051 -g1,16509:9088144,43247051 -g1,16509:9752052,43247051 -g1,16509:11411822,43247051 -h1,16509:12739638,43247051:0,0,0 -k1,16509:32583030,43247051:19843392 -g1,16509:32583030,43247051 -) -] -) -g1,16510:32583029,43253656 -g1,16510:6764466,43253656 -g1,16510:6764466,43253656 -g1,16510:32583029,43253656 -g1,16510:32583029,43253656 -) -h1,16510:6764466,43450264:0,0,0 -] -g1,16512:32583029,43450264 -) -h1,16512:6630773,43450264:0,0,0 -] -(1,16520:32583029,45706769:0,0,0 -g1,16520:32583029,45706769 -) -) -] -(1,16520:6630773,47279633:25952256,0,0 -h1,16520:6630773,47279633:25952256,0,0 -) -] -(1,16520:4262630,4025873:0,0,0 -[1,16520:-473656,4025873:0,0,0 -(1,16520:-473656,-710413:0,0,0 -(1,16520:-473656,-710413:0,0,0 -g1,16520:-473656,-710413 -) -g1,16520:-473656,-710413 +[1,16518:6630773,45706769:25952256,40108032,0 +v1,16447:6630773,6254097:0,393216,0 +(1,16447:6630773,10844599:25952256,4983718,0 +g1,16447:6630773,10844599 +g1,16447:6237557,10844599 +r1,16518:6368629,10844599:131072,4983718,0 +g1,16447:6567858,10844599 +g1,16447:6764466,10844599 +[1,16447:6764466,10844599:25818563,4983718,0 +v1,16426:6764466,6254097:0,393216,0 +(1,16445:6764466,10647991:25818563,4787110,196608 +g1,16445:6764466,10647991 +g1,16445:6764466,10647991 +g1,16445:6567858,10647991 +(1,16445:6567858,10647991:0,4787110,196608 +r1,16518:32779637,10647991:26211779,4983718,196608 +k1,16445:6567857,10647991:-26211780 +) +(1,16445:6567858,10647991:26211779,4787110,196608 +[1,16445:6764466,10647991:25818563,4590502,0 +(1,16428:6764466,6488534:25818563,431045,106246 +(1,16427:6764466,6488534:0,0,0 +g1,16427:6764466,6488534 +g1,16427:6764466,6488534 +g1,16427:6436786,6488534 +(1,16427:6436786,6488534:0,0,0 +) +g1,16427:6764466,6488534 +) +k1,16428:6764466,6488534:0 +g1,16428:13071592,6488534 +g1,16428:15063316,6488534 +g1,16428:15727224,6488534 +k1,16428:15727224,6488534:0 +h1,16428:18050902,6488534:0,0,0 +k1,16428:32583029,6488534:14532127 +g1,16428:32583029,6488534 +) +(1,16432:6764466,7304461:25818563,431045,79822 +(1,16430:6764466,7304461:0,0,0 +g1,16430:6764466,7304461 +g1,16430:6764466,7304461 +g1,16430:6436786,7304461 +(1,16430:6436786,7304461:0,0,0 +) +g1,16430:6764466,7304461 +) +g1,16432:7760328,7304461 +g1,16432:9088144,7304461 +h1,16432:13071591,7304461:0,0,0 +k1,16432:32583029,7304461:19511438 +g1,16432:32583029,7304461 +) +(1,16434:6764466,8120388:25818563,424439,106246 +(1,16433:6764466,8120388:0,0,0 +g1,16433:6764466,8120388 +g1,16433:6764466,8120388 +g1,16433:6436786,8120388 +(1,16433:6436786,8120388:0,0,0 +) +g1,16433:6764466,8120388 +) +k1,16434:6764466,8120388:0 +g1,16434:13071592,8120388 +g1,16434:15063316,8120388 +g1,16434:15727224,8120388 +k1,16434:15727224,8120388:0 +h1,16434:18050902,8120388:0,0,0 +k1,16434:32583029,8120388:14532127 +g1,16434:32583029,8120388 +) +(1,16438:6764466,8936315:25818563,431045,79822 +(1,16436:6764466,8936315:0,0,0 +g1,16436:6764466,8936315 +g1,16436:6764466,8936315 +g1,16436:6436786,8936315 +(1,16436:6436786,8936315:0,0,0 +) +g1,16436:6764466,8936315 +) +g1,16438:7760328,8936315 +g1,16438:9088144,8936315 +h1,16438:13071591,8936315:0,0,0 +k1,16438:32583029,8936315:19511438 +g1,16438:32583029,8936315 +) +(1,16440:6764466,9752242:25818563,431045,106246 +(1,16439:6764466,9752242:0,0,0 +g1,16439:6764466,9752242 +g1,16439:6764466,9752242 +g1,16439:6436786,9752242 +(1,16439:6436786,9752242:0,0,0 +) +g1,16439:6764466,9752242 +) +k1,16440:6764466,9752242:0 +g1,16440:14399407,9752242 +g1,16440:16391131,9752242 +g1,16440:17055039,9752242 +g1,16440:19710671,9752242 +g1,16440:24026073,9752242 +g1,16440:26017797,9752242 +g1,16440:26681705,9752242 +k1,16440:26681705,9752242:0 +h1,16440:29005383,9752242:0,0,0 +k1,16440:32583029,9752242:3577646 +g1,16440:32583029,9752242 +) +(1,16444:6764466,10568169:25818563,424439,79822 +(1,16442:6764466,10568169:0,0,0 +g1,16442:6764466,10568169 +g1,16442:6764466,10568169 +g1,16442:6436786,10568169 +(1,16442:6436786,10568169:0,0,0 +) +g1,16442:6764466,10568169 +) +g1,16444:7760328,10568169 +g1,16444:9088144,10568169 +h1,16444:10415960,10568169:0,0,0 +k1,16444:32583028,10568169:22167068 +g1,16444:32583028,10568169 +) +] +) +g1,16445:32583029,10647991 +g1,16445:6764466,10647991 +g1,16445:6764466,10647991 +g1,16445:32583029,10647991 +g1,16445:32583029,10647991 +) +h1,16445:6764466,10844599:0,0,0 +] +g1,16447:32583029,10844599 +) +h1,16447:6630773,10844599:0,0,0 +(1,16450:6630773,11709679:25952256,513147,126483 +h1,16449:6630773,11709679:983040,0,0 +k1,16449:9656295,11709679:210095 +k1,16449:10857950,11709679:210095 +k1,16449:14295038,11709679:210095 +k1,16449:17714432,11709679:210096 +k1,16449:21441189,11709679:210095 +k1,16449:24286487,11709679:210095 +k1,16449:25515667,11709679:210095 +k1,16449:29762780,11709679:210095 +(1,16449:29762780,11709679:0,452978,115847 +r1,16518:32583029,11709679:2820249,568825,115847 +k1,16449:29762780,11709679:-2820249 +) +(1,16449:29762780,11709679:2820249,452978,115847 +k1,16449:29762780,11709679:3277 +h1,16449:32579752,11709679:0,411205,112570 +) +k1,16449:32583029,11709679:0 +) +(1,16450:6630773,12574759:25952256,513147,115847 +k1,16449:8113934,12574759:291716 +(1,16449:8113934,12574759:0,459977,115847 +r1,16518:12341030,12574759:4227096,575824,115847 +k1,16449:8113934,12574759:-4227096 +) +(1,16449:8113934,12574759:4227096,459977,115847 +k1,16449:8113934,12574759:3277 +h1,16449:12337753,12574759:0,411205,112570 +) +k1,16449:12806416,12574759:291716 +k1,16449:14369531,12574759:291717 +k1,16449:15320539,12574759:291716 +k1,16449:17251310,12574759:291716 +k1,16449:18074523,12574759:291716 +k1,16449:19650746,12574759:291717 +k1,16449:20558500,12574759:291716 +k1,16449:21206076,12574759:291716 +k1,16449:22597486,12574759:291716 +k1,16449:23540631,12574759:291717 +(1,16449:23540631,12574759:0,452978,115847 +r1,16518:26360880,12574759:2820249,568825,115847 +k1,16449:23540631,12574759:-2820249 +) +(1,16449:23540631,12574759:2820249,452978,115847 +k1,16449:23540631,12574759:3277 +h1,16449:26357603,12574759:0,411205,112570 +) +k1,16449:26826266,12574759:291716 +k1,16449:29741388,12574759:291716 +k1,16449:32583029,12574759:0 +) +(1,16450:6630773,13439839:25952256,513147,134348 +k1,16449:10620545,13439839:283056 +k1,16449:12641616,13439839:283056 +k1,16449:15306250,13439839:283056 +k1,16449:16693588,13439839:283056 +k1,16449:17724410,13439839:283056 +k1,16449:19520692,13439839:283056 +k1,16449:20419786,13439839:283056 +k1,16449:21721927,13439839:283056 +k1,16449:25087141,13439839:283056 +k1,16449:26029489,13439839:283056 +k1,16449:29974041,13439839:283056 +k1,16449:32583029,13439839:0 +) +(1,16450:6630773,14304919:25952256,505283,7863 +k1,16450:32583029,14304919:23075882 +g1,16450:32583029,14304919 +) +v1,16452:6630773,14989774:0,393216,0 +(1,16465:6630773,20149267:25952256,5552709,196608 +g1,16465:6630773,20149267 +g1,16465:6630773,20149267 +g1,16465:6434165,20149267 +(1,16465:6434165,20149267:0,5552709,196608 +r1,16518:32779637,20149267:26345472,5749317,196608 +k1,16465:6434165,20149267:-26345472 +) +(1,16465:6434165,20149267:26345472,5552709,196608 +[1,16465:6630773,20149267:25952256,5356101,0 +(1,16454:6630773,15217605:25952256,424439,86428 +(1,16453:6630773,15217605:0,0,0 +g1,16453:6630773,15217605 +g1,16453:6630773,15217605 +g1,16453:6303093,15217605 +(1,16453:6303093,15217605:0,0,0 +) +g1,16453:6630773,15217605 +) +k1,16454:6630773,15217605:0 +g1,16454:9618359,15217605 +g1,16454:10282267,15217605 +g1,16454:11942037,15217605 +g1,16454:12605945,15217605 +g1,16454:13269853,15217605 +g1,16454:14929623,15217605 +g1,16454:15593531,15217605 +g1,16454:16257439,15217605 +g1,16454:16921347,15217605 +g1,16454:17585255,15217605 +g1,16454:18581117,15217605 +g1,16454:19245025,15217605 +g1,16454:19908933,15217605 +g1,16454:23228472,15217605 +g1,16454:23892380,15217605 +h1,16454:24888242,15217605:0,0,0 +k1,16454:32583029,15217605:7694787 +g1,16454:32583029,15217605 +) +(1,16464:6630773,16033532:25952256,424439,9908 +(1,16456:6630773,16033532:0,0,0 +g1,16456:6630773,16033532 +g1,16456:6630773,16033532 +g1,16456:6303093,16033532 +(1,16456:6303093,16033532:0,0,0 +) +g1,16456:6630773,16033532 +) +g1,16464:7626635,16033532 +g1,16464:8290543,16033532 +g1,16464:8954451,16033532 +g1,16464:11610083,16033532 +g1,16464:12273991,16033532 +g1,16464:12937899,16033532 +h1,16464:13269853,16033532:0,0,0 +k1,16464:32583029,16033532:19313176 +g1,16464:32583029,16033532 +) +(1,16464:6630773,16718387:25952256,424439,6605 +h1,16464:6630773,16718387:0,0,0 +g1,16464:7626635,16718387 +g1,16464:7958589,16718387 +g1,16464:8290543,16718387 +g1,16464:8622497,16718387 +g1,16464:8954451,16718387 +g1,16464:9286405,16718387 +g1,16464:9618359,16718387 +g1,16464:10282267,16718387 +g1,16464:10614221,16718387 +g1,16464:10946175,16718387 +g1,16464:11278129,16718387 +g1,16464:11610083,16718387 +g1,16464:12273991,16718387 +g1,16464:12605945,16718387 +g1,16464:12937899,16718387 +g1,16464:13269853,16718387 +g1,16464:13601807,16718387 +g1,16464:14265715,16718387 +h1,16464:14597669,16718387:0,0,0 +k1,16464:32583029,16718387:17985360 +g1,16464:32583029,16718387 +) +(1,16464:6630773,17403242:25952256,424439,6605 +h1,16464:6630773,17403242:0,0,0 +g1,16464:7626635,17403242 +g1,16464:7958589,17403242 +g1,16464:8290543,17403242 +g1,16464:10282267,17403242 +g1,16464:12273991,17403242 +g1,16464:14265715,17403242 +k1,16464:14265715,17403242:0 +h1,16464:15925485,17403242:0,0,0 +k1,16464:32583029,17403242:16657544 +g1,16464:32583029,17403242 +) +(1,16464:6630773,18088097:25952256,424439,9908 +h1,16464:6630773,18088097:0,0,0 +g1,16464:7626635,18088097 +g1,16464:8290543,18088097 +g1,16464:8622497,18088097 +g1,16464:8954451,18088097 +g1,16464:9286405,18088097 +g1,16464:9618359,18088097 +g1,16464:10282267,18088097 +g1,16464:10614221,18088097 +g1,16464:10946175,18088097 +g1,16464:11278129,18088097 +g1,16464:11610083,18088097 +g1,16464:12273991,18088097 +g1,16464:12605945,18088097 +g1,16464:12937899,18088097 +g1,16464:13269853,18088097 +g1,16464:13601807,18088097 +g1,16464:14265715,18088097 +h1,16464:14597669,18088097:0,0,0 +k1,16464:32583029,18088097:17985360 +g1,16464:32583029,18088097 +) +(1,16464:6630773,18772952:25952256,407923,9908 +h1,16464:6630773,18772952:0,0,0 +g1,16464:7626635,18772952 +g1,16464:8290543,18772952 +g1,16464:8622497,18772952 +g1,16464:8954451,18772952 +g1,16464:9286405,18772952 +g1,16464:9618359,18772952 +g1,16464:10282267,18772952 +g1,16464:10614221,18772952 +g1,16464:10946175,18772952 +g1,16464:11278129,18772952 +g1,16464:11610083,18772952 +g1,16464:12273991,18772952 +g1,16464:12605945,18772952 +g1,16464:12937899,18772952 +g1,16464:13269853,18772952 +g1,16464:13601807,18772952 +g1,16464:14265715,18772952 +h1,16464:14597669,18772952:0,0,0 +k1,16464:32583029,18772952:17985360 +g1,16464:32583029,18772952 +) +(1,16464:6630773,19457807:25952256,424439,9908 +h1,16464:6630773,19457807:0,0,0 +g1,16464:7626635,19457807 +g1,16464:8290543,19457807 +g1,16464:8622497,19457807 +g1,16464:8954451,19457807 +g1,16464:9286405,19457807 +g1,16464:9618359,19457807 +g1,16464:10282267,19457807 +g1,16464:10614221,19457807 +g1,16464:10946175,19457807 +g1,16464:11278129,19457807 +g1,16464:11610083,19457807 +g1,16464:12273991,19457807 +g1,16464:12605945,19457807 +g1,16464:12937899,19457807 +g1,16464:13269853,19457807 +g1,16464:13601807,19457807 +g1,16464:14265715,19457807 +h1,16464:14597669,19457807:0,0,0 +k1,16464:32583029,19457807:17985360 +g1,16464:32583029,19457807 +) +(1,16464:6630773,20142662:25952256,424439,6605 +h1,16464:6630773,20142662:0,0,0 +g1,16464:7626635,20142662 +g1,16464:8290543,20142662 +g1,16464:8954451,20142662 +g1,16464:9618359,20142662 +g1,16464:11278129,20142662 +h1,16464:12605945,20142662:0,0,0 +k1,16464:32583029,20142662:19977084 +g1,16464:32583029,20142662 +) +] +) +g1,16465:32583029,20149267 +g1,16465:6630773,20149267 +g1,16465:6630773,20149267 +g1,16465:32583029,20149267 +g1,16465:32583029,20149267 +) +h1,16465:6630773,20345875:0,0,0 +v1,16469:6630773,21210955:0,393216,0 +(1,16470:6630773,22356375:25952256,1538636,0 +g1,16470:6630773,22356375 +g1,16470:6237557,22356375 +r1,16518:6368629,22356375:131072,1538636,0 +g1,16470:6567858,22356375 +g1,16470:6764466,22356375 +[1,16470:6764466,22356375:25818563,1538636,0 +(1,16470:6764466,21483432:25818563,665693,196608 +(1,16469:6764466,21483432:0,665693,196608 +r1,16518:7868133,21483432:1103667,862301,196608 +k1,16469:6764466,21483432:-1103667 +) +(1,16469:6764466,21483432:1103667,665693,196608 +) +k1,16469:8022422,21483432:154289 +k1,16469:9340351,21483432:327680 +k1,16469:11128453,21483432:154289 +k1,16469:11814239,21483432:154289 +k1,16469:12987613,21483432:154289 +k1,16469:16316466,21483432:154289 +k1,16469:16936716,21483432:154289 +k1,16469:18261478,21483432:154289 +k1,16469:20714115,21483432:154289 +(1,16469:20714115,21483432:0,452978,115847 +r1,16518:23534364,21483432:2820249,568825,115847 +k1,16469:20714115,21483432:-2820249 +) +(1,16469:20714115,21483432:2820249,452978,115847 +k1,16469:20714115,21483432:3277 +h1,16469:23531087,21483432:0,411205,112570 +) +k1,16469:23688653,21483432:154289 +k1,16469:24604470,21483432:154289 +(1,16469:24604470,21483432:0,459977,115847 +r1,16518:28831566,21483432:4227096,575824,115847 +k1,16469:24604470,21483432:-4227096 +) +(1,16469:24604470,21483432:4227096,459977,115847 +k1,16469:24604470,21483432:3277 +h1,16469:28828289,21483432:0,411205,112570 +) +k1,16469:28985855,21483432:154289 +k1,16469:29756182,21483432:154289 +k1,16469:30929556,21483432:154289 +k1,16470:32583029,21483432:0 +) +(1,16470:6764466,22348512:25818563,505283,7863 +g1,16469:8602750,22348512 +k1,16470:32583029,22348512:21830698 +g1,16470:32583029,22348512 +) +] +g1,16470:32583029,22356375 +) +h1,16470:6630773,22356375:0,0,0 +v1,16473:6630773,23221455:0,393216,0 +(1,16510:6630773,43450264:25952256,20622025,0 +g1,16510:6630773,43450264 +g1,16510:6237557,43450264 +r1,16518:6368629,43450264:131072,20622025,0 +g1,16510:6567858,43450264 +g1,16510:6764466,43450264 +[1,16510:6764466,43450264:25818563,20622025,0 +(1,16474:6764466,23582632:25818563,754393,260573 +(1,16473:6764466,23582632:0,754393,260573 +r1,16518:7856192,23582632:1091726,1014966,260573 +k1,16473:6764466,23582632:-1091726 +) +(1,16473:6764466,23582632:1091726,754393,260573 +) +k1,16473:8059820,23582632:203628 +k1,16473:8387500,23582632:327680 +k1,16473:10365844,23582632:203629 +k1,16473:12859300,23582632:203628 +k1,16473:15268215,23582632:203628 +k1,16473:17886190,23582632:203629 +k1,16473:18775980,23582632:203628 +k1,16473:22382237,23582632:203628 +k1,16473:23237293,23582632:203628 +k1,16473:24460007,23582632:203629 +(1,16473:24460007,23582632:0,459977,115847 +r1,16518:28687103,23582632:4227096,575824,115847 +k1,16473:24460007,23582632:-4227096 +) +(1,16473:24460007,23582632:4227096,459977,115847 +k1,16473:24460007,23582632:3277 +h1,16473:28683826,23582632:0,411205,112570 +) +k1,16473:28890731,23582632:203628 +k1,16473:32583029,23582632:0 +) +(1,16474:6764466,24447712:25818563,513147,102891 +k1,16473:7678441,24447712:262547 +k1,16473:8688754,24447712:262547 +k1,16473:11709712,24447712:262548 +k1,16473:12658421,24447712:262547 +k1,16473:16234468,24447712:262547 +k1,16473:17601297,24447712:262547 +k1,16473:18611611,24447712:262548 +k1,16473:21272120,24447712:262547 +k1,16473:23842845,24447712:262547 +k1,16473:24788277,24447712:262547 +k1,16473:27784332,24447712:262548 +k1,16473:29647924,24447712:262547 +k1,16473:30929556,24447712:262547 +k1,16473:32583029,24447712:0 +) +(1,16474:6764466,25312792:25818563,513147,134348 +k1,16473:9416634,25312792:166387 +k1,16473:10242313,25312792:166387 +k1,16473:11942898,25312792:166387 +k1,16473:12795448,25312792:166388 +k1,16473:13980920,25312792:166387 +k1,16473:15536670,25312792:166387 +k1,16473:17960117,25312792:166387 +k1,16473:21529133,25312792:166387 +k1,16473:23900807,25312792:166387 +k1,16473:24718623,25312792:166388 +k1,16473:25904095,25312792:166387 +(1,16473:25904095,25312792:0,452978,115847 +r1,16518:28724344,25312792:2820249,568825,115847 +k1,16473:25904095,25312792:-2820249 +) +(1,16473:25904095,25312792:2820249,452978,115847 +k1,16473:25904095,25312792:3277 +h1,16473:28721067,25312792:0,411205,112570 +) +k1,16473:28890731,25312792:166387 +k1,16473:32583029,25312792:0 +) +(1,16474:6764466,26177872:25818563,513147,102891 +k1,16473:8070468,26177872:201720 +k1,16473:9019953,26177872:201719 +k1,16473:11619635,26177872:201720 +k1,16473:14129533,26177872:201720 +k1,16473:15014138,26177872:201720 +k1,16473:16539684,26177872:201719 +k1,16473:18342449,26177872:201720 +k1,16473:19563254,26177872:201720 +k1,16473:21418447,26177872:201720 +k1,16473:24105947,26177872:201719 +k1,16473:24966959,26177872:201720 +k1,16473:28122387,26177872:201720 +k1,16473:29010269,26177872:201720 +k1,16473:30746186,26177872:201719 +k1,16473:31563944,26177872:201720 +k1,16473:32583029,26177872:0 +) +(1,16474:6764466,27042952:25818563,513147,134348 +k1,16473:9234299,27042952:277654 +k1,16473:10329842,27042952:277654 +k1,16473:11475849,27042952:277655 +k1,16473:12960676,27042952:277654 +k1,16473:13854368,27042952:277654 +k1,16473:16410709,27042952:277654 +h1,16473:17381297,27042952:0,0,0 +k1,16473:17658951,27042952:277654 +k1,16473:18745976,27042952:277655 +k1,16473:20521783,27042952:277654 +h1,16473:21318701,27042952:0,0,0 +k1,16473:21770025,27042952:277654 +k1,16473:23481607,27042952:277654 +k1,16473:24678076,27042952:277654 +k1,16473:26345094,27042952:277655 +k1,16473:28829345,27042952:277654 +k1,16473:30211281,27042952:277654 +k1,16473:32583029,27042952:0 +) +(1,16474:6764466,27908032:25818563,513147,115847 +k1,16473:9693633,27908032:215976 +k1,16473:10568901,27908032:215976 +k1,16473:13017688,27908032:215975 +(1,16473:13017688,27908032:0,452978,115847 +r1,16518:14431089,27908032:1413401,568825,115847 +k1,16473:13017688,27908032:-1413401 +) +(1,16473:13017688,27908032:1413401,452978,115847 +k1,16473:13017688,27908032:3277 +h1,16473:14427812,27908032:0,411205,112570 +) +k1,16473:14647065,27908032:215976 +k1,16473:16054486,27908032:215976 +(1,16473:16054486,27908032:0,452978,115847 +r1,16518:18171311,27908032:2116825,568825,115847 +k1,16473:16054486,27908032:-2116825 +) +(1,16473:16054486,27908032:2116825,452978,115847 +k1,16473:16054486,27908032:3277 +h1,16473:18168034,27908032:0,411205,112570 +) +k1,16473:18560957,27908032:215976 +k1,16473:19973620,27908032:215976 +k1,16473:23375955,27908032:215975 +k1,16473:24123428,27908032:215976 +k1,16473:24955442,27908032:215976 +k1,16473:26190503,27908032:215976 +k1,16473:27936745,27908032:215976 +k1,16473:28804148,27908032:215975 +k1,16473:30112609,27908032:215976 +(1,16473:30112609,27908032:0,452978,115847 +r1,16518:31174298,27908032:1061689,568825,115847 +k1,16473:30112609,27908032:-1061689 +) +(1,16473:30112609,27908032:1061689,452978,115847 +k1,16473:30112609,27908032:3277 +h1,16473:31171021,27908032:0,411205,112570 +) +k1,16473:31563944,27908032:215976 +k1,16473:32583029,27908032:0 +) +(1,16474:6764466,28773112:25818563,513147,134348 +k1,16473:9448603,28773112:223915 +k1,16473:12541683,28773112:223914 +k1,16473:13417026,28773112:223915 +k1,16473:15939288,28773112:223914 +k1,16473:17859930,28773112:223915 +k1,16473:20925485,28773112:223914 +k1,16473:23263591,28773112:223915 +k1,16473:27521901,28773112:223914 +k1,16473:28937261,28773112:223915 +k1,16473:32583029,28773112:0 +) +(1,16474:6764466,29638192:25818563,505283,134348 +k1,16473:7619127,29638192:203233 +k1,16473:9129802,29638192:203232 +(1,16473:9129802,29638192:0,459977,115847 +r1,16518:12653474,29638192:3523672,575824,115847 +k1,16473:9129802,29638192:-3523672 +) +(1,16473:9129802,29638192:3523672,459977,115847 +k1,16473:9129802,29638192:3277 +h1,16473:12650197,29638192:0,411205,112570 +) +k1,16473:12856707,29638192:203233 +k1,16473:15349767,29638192:203232 +k1,16473:16239162,29638192:203233 +k1,16473:19544213,29638192:203232 +k1,16473:20740972,29638192:203233 +k1,16473:23897913,29638192:203233 +k1,16473:25292590,29638192:203232 +k1,16473:27583145,29638192:203233 +k1,16473:30499568,29638192:203232 +k1,16473:31835263,29638192:203233 +k1,16473:32583029,29638192:0 +) +(1,16474:6764466,30503272:25818563,513147,134348 +g1,16473:9738489,30503272 +g1,16473:10589146,30503272 +g1,16473:13459622,30503272 +g1,16473:16851765,30503272 +g1,16473:19764185,30503272 +g1,16473:20579452,30503272 +g1,16473:21797766,30503272 +g1,16473:23386358,30503272 +k1,16474:32583029,30503272:7267947 +g1,16474:32583029,30503272 +) +v1,16476:6764466,31188127:0,393216,0 +(1,16489:6764466,36347620:25818563,5552709,196608 +g1,16489:6764466,36347620 +g1,16489:6764466,36347620 +g1,16489:6567858,36347620 +(1,16489:6567858,36347620:0,5552709,196608 +r1,16518:32779637,36347620:26211779,5749317,196608 +k1,16489:6567857,36347620:-26211780 +) +(1,16489:6567858,36347620:26211779,5552709,196608 +[1,16489:6764466,36347620:25818563,5356101,0 +(1,16478:6764466,31415958:25818563,424439,86428 +(1,16477:6764466,31415958:0,0,0 +g1,16477:6764466,31415958 +g1,16477:6764466,31415958 +g1,16477:6436786,31415958 +(1,16477:6436786,31415958:0,0,0 +) +g1,16477:6764466,31415958 +) +k1,16478:6764466,31415958:0 +g1,16478:9752052,31415958 +g1,16478:10415960,31415958 +g1,16478:12075730,31415958 +g1,16478:12739638,31415958 +g1,16478:13403546,31415958 +g1,16478:15063316,31415958 +g1,16478:15727224,31415958 +g1,16478:16391132,31415958 +g1,16478:19710672,31415958 +g1,16478:20706534,31415958 +g1,16478:21702396,31415958 +g1,16478:22698258,31415958 +h1,16478:23694120,31415958:0,0,0 +k1,16478:32583029,31415958:8888909 +g1,16478:32583029,31415958 +) +(1,16488:6764466,32231885:25818563,424439,9908 +(1,16480:6764466,32231885:0,0,0 +g1,16480:6764466,32231885 +g1,16480:6764466,32231885 +g1,16480:6436786,32231885 +(1,16480:6436786,32231885:0,0,0 +) +g1,16480:6764466,32231885 +) +g1,16488:7760328,32231885 +g1,16488:8424236,32231885 +g1,16488:9088144,32231885 +g1,16488:11743776,32231885 +g1,16488:12407684,32231885 +g1,16488:13071592,32231885 +h1,16488:13403546,32231885:0,0,0 +k1,16488:32583030,32231885:19179484 +g1,16488:32583030,32231885 +) +(1,16488:6764466,32916740:25818563,424439,6605 +h1,16488:6764466,32916740:0,0,0 +g1,16488:7760328,32916740 +g1,16488:8092282,32916740 +g1,16488:8424236,32916740 +g1,16488:8756190,32916740 +g1,16488:9088144,32916740 +g1,16488:9420098,32916740 +g1,16488:9752052,32916740 +g1,16488:10415960,32916740 +g1,16488:10747914,32916740 +g1,16488:11079868,32916740 +g1,16488:11411822,32916740 +g1,16488:11743776,32916740 +g1,16488:12407684,32916740 +h1,16488:12739638,32916740:0,0,0 +k1,16488:32583030,32916740:19843392 +g1,16488:32583030,32916740 +) +(1,16488:6764466,33601595:25818563,424439,6605 +h1,16488:6764466,33601595:0,0,0 +g1,16488:7760328,33601595 +g1,16488:8092282,33601595 +g1,16488:8424236,33601595 +g1,16488:10415960,33601595 +g1,16488:12407684,33601595 +k1,16488:12407684,33601595:0 +h1,16488:14399408,33601595:0,0,0 +k1,16488:32583028,33601595:18183620 +g1,16488:32583028,33601595 +) +(1,16488:6764466,34286450:25818563,424439,79822 +h1,16488:6764466,34286450:0,0,0 +g1,16488:7760328,34286450 +g1,16488:8424236,34286450 +g1,16488:8756190,34286450 +g1,16488:9088144,34286450 +g1,16488:9420098,34286450 +g1,16488:9752052,34286450 +g1,16488:10415960,34286450 +g1,16488:10747914,34286450 +g1,16488:11079868,34286450 +g1,16488:11411822,34286450 +g1,16488:11743776,34286450 +g1,16488:12407684,34286450 +g1,16488:14067454,34286450 +k1,16488:14067454,34286450:0 +h1,16488:15395270,34286450:0,0,0 +k1,16488:32583030,34286450:17187760 +g1,16488:32583030,34286450 +) +(1,16488:6764466,34971305:25818563,424439,79822 +h1,16488:6764466,34971305:0,0,0 +g1,16488:7760328,34971305 +g1,16488:8424236,34971305 +g1,16488:8756190,34971305 +g1,16488:9088144,34971305 +g1,16488:9420098,34971305 +g1,16488:9752052,34971305 +g1,16488:10415960,34971305 +g1,16488:10747914,34971305 +g1,16488:11079868,34971305 +g1,16488:11411822,34971305 +g1,16488:11743776,34971305 +g1,16488:12407684,34971305 +g1,16488:14067454,34971305 +k1,16488:14067454,34971305:0 +h1,16488:15395270,34971305:0,0,0 +k1,16488:32583030,34971305:17187760 +g1,16488:32583030,34971305 +) +(1,16488:6764466,35656160:25818563,424439,79822 +h1,16488:6764466,35656160:0,0,0 +g1,16488:7760328,35656160 +g1,16488:8424236,35656160 +g1,16488:8756190,35656160 +g1,16488:9088144,35656160 +g1,16488:9420098,35656160 +g1,16488:9752052,35656160 +g1,16488:10415960,35656160 +g1,16488:10747914,35656160 +g1,16488:11079868,35656160 +g1,16488:11411822,35656160 +g1,16488:11743776,35656160 +g1,16488:12407684,35656160 +g1,16488:14067454,35656160 +k1,16488:14067454,35656160:0 +h1,16488:15395270,35656160:0,0,0 +k1,16488:32583030,35656160:17187760 +g1,16488:32583030,35656160 +) +(1,16488:6764466,36341015:25818563,424439,6605 +h1,16488:6764466,36341015:0,0,0 +g1,16488:7760328,36341015 +g1,16488:8424236,36341015 +g1,16488:9088144,36341015 +g1,16488:9752052,36341015 +g1,16488:11411822,36341015 +h1,16488:12739638,36341015:0,0,0 +k1,16488:32583030,36341015:19843392 +g1,16488:32583030,36341015 +) +] +) +g1,16489:32583029,36347620 +g1,16489:6764466,36347620 +g1,16489:6764466,36347620 +g1,16489:32583029,36347620 +g1,16489:32583029,36347620 +) +h1,16489:6764466,36544228:0,0,0 +(1,16493:6764466,37409308:25818563,513147,126483 +h1,16492:6764466,37409308:983040,0,0 +g1,16492:8434323,37409308 +g1,16492:9627078,37409308 +g1,16492:10485599,37409308 +g1,16492:12008655,37409308 +g1,16492:12890769,37409308 +g1,16492:13445858,37409308 +g1,16492:14638613,37409308 +g1,16492:15497134,37409308 +g1,16492:18004541,37409308 +g1,16492:19308052,37409308 +g1,16492:20255047,37409308 +g1,16492:22868622,37409308 +g1,16492:25273138,37409308 +g1,16492:26123795,37409308 +g1,16492:27342109,37409308 +k1,16493:32583029,37409308:1481775 +g1,16493:32583029,37409308 +) +v1,16495:6764466,38094163:0,393216,0 +(1,16508:6764466,43253656:25818563,5552709,196608 +g1,16508:6764466,43253656 +g1,16508:6764466,43253656 +g1,16508:6567858,43253656 +(1,16508:6567858,43253656:0,5552709,196608 +r1,16518:32779637,43253656:26211779,5749317,196608 +k1,16508:6567857,43253656:-26211780 +) +(1,16508:6567858,43253656:26211779,5552709,196608 +[1,16508:6764466,43253656:25818563,5356101,0 +(1,16497:6764466,38321994:25818563,424439,86428 +(1,16496:6764466,38321994:0,0,0 +g1,16496:6764466,38321994 +g1,16496:6764466,38321994 +g1,16496:6436786,38321994 +(1,16496:6436786,38321994:0,0,0 +) +g1,16496:6764466,38321994 +) +k1,16497:6764466,38321994:0 +g1,16497:9752052,38321994 +g1,16497:10415960,38321994 +g1,16497:12075730,38321994 +g1,16497:12739638,38321994 +g1,16497:13403546,38321994 +g1,16497:15063316,38321994 +g1,16497:15727224,38321994 +g1,16497:16391132,38321994 +g1,16497:19710672,38321994 +g1,16497:21370442,38321994 +g1,16497:23030212,38321994 +g1,16497:27677567,38321994 +h1,16497:32324922,38321994:0,0,0 +k1,16497:32583029,38321994:258107 +g1,16497:32583029,38321994 +) +(1,16507:6764466,39137921:25818563,424439,9908 +(1,16499:6764466,39137921:0,0,0 +g1,16499:6764466,39137921 +g1,16499:6764466,39137921 +g1,16499:6436786,39137921 +(1,16499:6436786,39137921:0,0,0 +) +g1,16499:6764466,39137921 +) +g1,16507:7760328,39137921 +g1,16507:8424236,39137921 +g1,16507:9088144,39137921 +g1,16507:11743776,39137921 +g1,16507:12407684,39137921 +g1,16507:13071592,39137921 +h1,16507:13403546,39137921:0,0,0 +k1,16507:32583030,39137921:19179484 +g1,16507:32583030,39137921 +) +(1,16507:6764466,39822776:25818563,424439,6605 +h1,16507:6764466,39822776:0,0,0 +g1,16507:7760328,39822776 +g1,16507:8092282,39822776 +g1,16507:8424236,39822776 +g1,16507:8756190,39822776 +g1,16507:9088144,39822776 +g1,16507:9420098,39822776 +g1,16507:9752052,39822776 +g1,16507:10415960,39822776 +g1,16507:10747914,39822776 +g1,16507:11079868,39822776 +g1,16507:11411822,39822776 +g1,16507:11743776,39822776 +g1,16507:12407684,39822776 +h1,16507:12739638,39822776:0,0,0 +k1,16507:32583030,39822776:19843392 +g1,16507:32583030,39822776 +) +(1,16507:6764466,40507631:25818563,424439,6605 +h1,16507:6764466,40507631:0,0,0 +g1,16507:7760328,40507631 +g1,16507:8092282,40507631 +g1,16507:8424236,40507631 +g1,16507:10415960,40507631 +g1,16507:12407684,40507631 +k1,16507:12407684,40507631:0 +h1,16507:14399408,40507631:0,0,0 +k1,16507:32583028,40507631:18183620 +g1,16507:32583028,40507631 +) +(1,16507:6764466,41192486:25818563,424439,79822 +h1,16507:6764466,41192486:0,0,0 +g1,16507:7760328,41192486 +g1,16507:8424236,41192486 +g1,16507:8756190,41192486 +g1,16507:9088144,41192486 +g1,16507:9420098,41192486 +g1,16507:9752052,41192486 +g1,16507:10415960,41192486 +g1,16507:10747914,41192486 +g1,16507:11079868,41192486 +g1,16507:11411822,41192486 +g1,16507:11743776,41192486 +g1,16507:12407684,41192486 +g1,16507:14067454,41192486 +k1,16507:14067454,41192486:0 +h1,16507:15395270,41192486:0,0,0 +k1,16507:32583030,41192486:17187760 +g1,16507:32583030,41192486 +) +(1,16507:6764466,41877341:25818563,424439,79822 +h1,16507:6764466,41877341:0,0,0 +g1,16507:7760328,41877341 +g1,16507:8424236,41877341 +g1,16507:8756190,41877341 +g1,16507:9088144,41877341 +g1,16507:9420098,41877341 +g1,16507:9752052,41877341 +g1,16507:10415960,41877341 +g1,16507:10747914,41877341 +g1,16507:11079868,41877341 +g1,16507:11411822,41877341 +g1,16507:11743776,41877341 +g1,16507:12407684,41877341 +g1,16507:14067454,41877341 +k1,16507:14067454,41877341:0 +h1,16507:15395270,41877341:0,0,0 +k1,16507:32583030,41877341:17187760 +g1,16507:32583030,41877341 +) +(1,16507:6764466,42562196:25818563,424439,79822 +h1,16507:6764466,42562196:0,0,0 +g1,16507:7760328,42562196 +g1,16507:8424236,42562196 +g1,16507:8756190,42562196 +g1,16507:9088144,42562196 +g1,16507:9420098,42562196 +g1,16507:9752052,42562196 +g1,16507:10415960,42562196 +g1,16507:10747914,42562196 +g1,16507:11079868,42562196 +g1,16507:11411822,42562196 +g1,16507:11743776,42562196 +g1,16507:12407684,42562196 +g1,16507:14067454,42562196 +k1,16507:14067454,42562196:0 +h1,16507:15395270,42562196:0,0,0 +k1,16507:32583030,42562196:17187760 +g1,16507:32583030,42562196 +) +(1,16507:6764466,43247051:25818563,424439,6605 +h1,16507:6764466,43247051:0,0,0 +g1,16507:7760328,43247051 +g1,16507:8424236,43247051 +g1,16507:9088144,43247051 +g1,16507:9752052,43247051 +g1,16507:11411822,43247051 +h1,16507:12739638,43247051:0,0,0 +k1,16507:32583030,43247051:19843392 +g1,16507:32583030,43247051 +) +] +) +g1,16508:32583029,43253656 +g1,16508:6764466,43253656 +g1,16508:6764466,43253656 +g1,16508:32583029,43253656 +g1,16508:32583029,43253656 +) +h1,16508:6764466,43450264:0,0,0 +] +g1,16510:32583029,43450264 +) +h1,16510:6630773,43450264:0,0,0 +] +(1,16518:32583029,45706769:0,0,0 +g1,16518:32583029,45706769 +) +) +] +(1,16518:6630773,47279633:25952256,0,0 +h1,16518:6630773,47279633:25952256,0,0 +) +] +(1,16518:4262630,4025873:0,0,0 +[1,16518:-473656,4025873:0,0,0 +(1,16518:-473656,-710413:0,0,0 +(1,16518:-473656,-710413:0,0,0 +g1,16518:-473656,-710413 +) +g1,16518:-473656,-710413 ) ] ) ] !32055 -}267 -Input:2753:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2754:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2755:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2756:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}268 Input:2757:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2758:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2759:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -288016,919 +288220,919 @@ Input:2760:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2761:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2762:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2763:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2764:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2765:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2766:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2767:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{268 -[1,16591:4262630,47279633:28320399,43253760,0 -(1,16591:4262630,4025873:0,0,0 -[1,16591:-473656,4025873:0,0,0 -(1,16591:-473656,-710413:0,0,0 -(1,16591:-473656,-644877:0,0,0 -k1,16591:-473656,-644877:-65536 +{269 +[1,16589:4262630,47279633:28320399,43253760,0 +(1,16589:4262630,4025873:0,0,0 +[1,16589:-473656,4025873:0,0,0 +(1,16589:-473656,-710413:0,0,0 +(1,16589:-473656,-644877:0,0,0 +k1,16589:-473656,-644877:-65536 ) -(1,16591:-473656,4736287:0,0,0 -k1,16591:-473656,4736287:5209943 +(1,16589:-473656,4736287:0,0,0 +k1,16589:-473656,4736287:5209943 ) -g1,16591:-473656,-710413 +g1,16589:-473656,-710413 ) ] ) -[1,16591:6630773,47279633:25952256,43253760,0 -[1,16591:6630773,4812305:25952256,786432,0 -(1,16591:6630773,4812305:25952256,485622,126483 -(1,16591:6630773,4812305:25952256,485622,126483 -g1,16591:3078558,4812305 -[1,16591:3078558,4812305:0,0,0 -(1,16591:3078558,2439708:0,1703936,0 -k1,16591:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16591:2537886,2439708:1179648,16384,0 +[1,16589:6630773,47279633:25952256,43253760,0 +[1,16589:6630773,4812305:25952256,786432,0 +(1,16589:6630773,4812305:25952256,485622,126483 +(1,16589:6630773,4812305:25952256,485622,126483 +g1,16589:3078558,4812305 +[1,16589:3078558,4812305:0,0,0 +(1,16589:3078558,2439708:0,1703936,0 +k1,16589:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16589:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16591:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16589:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16591:3078558,4812305:0,0,0 -(1,16591:3078558,2439708:0,1703936,0 -g1,16591:29030814,2439708 -g1,16591:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16591:36151628,1915420:16384,1179648,0 +[1,16589:3078558,4812305:0,0,0 +(1,16589:3078558,2439708:0,1703936,0 +g1,16589:29030814,2439708 +g1,16589:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16589:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16591:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16589:37855564,2439708:1179648,16384,0 ) ) -k1,16591:3078556,2439708:-34777008 +k1,16589:3078556,2439708:-34777008 ) ] -[1,16591:3078558,4812305:0,0,0 -(1,16591:3078558,49800853:0,16384,2228224 -k1,16591:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16591:2537886,49800853:1179648,16384,0 +[1,16589:3078558,4812305:0,0,0 +(1,16589:3078558,49800853:0,16384,2228224 +k1,16589:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16589:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16591:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16589:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16591:3078558,4812305:0,0,0 -(1,16591:3078558,49800853:0,16384,2228224 -g1,16591:29030814,49800853 -g1,16591:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16591:36151628,51504789:16384,1179648,0 +[1,16589:3078558,4812305:0,0,0 +(1,16589:3078558,49800853:0,16384,2228224 +g1,16589:29030814,49800853 +g1,16589:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16589:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16591:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16589:37855564,49800853:1179648,16384,0 ) ) -k1,16591:3078556,49800853:-34777008 +k1,16589:3078556,49800853:-34777008 ) ] -g1,16591:6630773,4812305 -g1,16591:6630773,4812305 -g1,16591:8364200,4812305 -g1,16591:10158575,4812305 -k1,16591:31387651,4812305:21229076 -) -) -] -[1,16591:6630773,45706769:25952256,40108032,0 -(1,16591:6630773,45706769:25952256,40108032,0 -(1,16591:6630773,45706769:0,0,0 -g1,16591:6630773,45706769 -) -[1,16591:6630773,45706769:25952256,40108032,0 -(1,16517:6630773,6254097:25952256,32768,229376 -(1,16517:6630773,6254097:0,32768,229376 -(1,16517:6630773,6254097:5505024,32768,229376 -r1,16591:12135797,6254097:5505024,262144,229376 -) -k1,16517:6630773,6254097:-5505024 -) -(1,16517:6630773,6254097:25952256,32768,0 -r1,16591:32583029,6254097:25952256,32768,0 -) -) -(1,16517:6630773,7885949:25952256,606339,151780 -(1,16517:6630773,7885949:1974731,582746,14155 -g1,16517:6630773,7885949 -g1,16517:8605504,7885949 -) -g1,16517:10655733,7885949 -k1,16517:32583028,7885949:19822016 -g1,16517:32583028,7885949 -) -(1,16520:6630773,9144245:25952256,513147,134348 -k1,16519:8040750,9144245:234917 -k1,16519:9581799,9144245:234916 -k1,16519:12309706,9144245:234917 -k1,16519:15730983,9144245:234917 -k1,16519:18601103,9144245:234917 -k1,16519:20997396,9144245:234916 -k1,16519:22967706,9144245:234917 -k1,16519:26410610,9144245:234917 -k1,16519:29555981,9144245:234917 -k1,16519:30322394,9144245:234916 -k1,16519:31576396,9144245:234917 -k1,16520:32583029,9144245:0 -) -(1,16520:6630773,10009325:25952256,513147,126483 -k1,16519:8729538,10009325:260480 -k1,16519:10082504,10009325:260481 -k1,16519:11002276,10009325:260480 -k1,16519:13050578,10009325:260480 -k1,16519:14691903,10009325:260481 -k1,16519:15657550,10009325:260480 -k1,16519:18762293,10009325:260480 -k1,16519:21190704,10009325:260480 -k1,16519:21807045,10009325:260481 -k1,16519:24831834,10009325:260480 -k1,16519:25751606,10009325:260480 -k1,16519:29916067,10009325:260481 -k1,16519:30862709,10009325:260480 -k1,16519:32583029,10009325:0 -) -(1,16520:6630773,10874405:25952256,513147,102891 -k1,16519:7969678,10874405:234623 -k1,16519:8952068,10874405:234624 -k1,16519:9872853,10874405:234623 -k1,16519:11386084,10874405:234624 -k1,16519:13133933,10874405:234623 -k1,16519:14762508,10874405:234624 -k1,16519:16431059,10874405:234623 -k1,16519:17080490,10874405:234588 -k1,16519:20514582,10874405:234624 -k1,16519:21377040,10874405:234623 -k1,16519:24451339,10874405:234624 -k1,16519:26313221,10874405:234623 -k1,16519:28881582,10874405:234624 -k1,16519:30832593,10874405:234623 -k1,16519:31482024,10874405:234588 -k1,16519:32583029,10874405:0 -) -(1,16520:6630773,11739485:25952256,505283,134348 -k1,16519:7246659,11739485:260026 -k1,16519:9439997,11739485:260026 -k1,16519:11090042,11739485:260026 -k1,16519:14096681,11739485:260025 -(1,16519:14096681,11739485:0,452978,115847 -r1,16591:14806659,11739485:709978,568825,115847 -k1,16519:14096681,11739485:-709978 -) -(1,16519:14096681,11739485:709978,452978,115847 -k1,16519:14096681,11739485:3277 -h1,16519:14803382,11739485:0,411205,112570 -) -k1,16519:15240355,11739485:260026 -k1,16519:18590404,11739485:260026 -k1,16519:19466468,11739485:260026 -k1,16519:22005181,11739485:260026 -h1,16519:22975769,11739485:0,0,0 -k1,16519:23235795,11739485:260026 -k1,16519:24305191,11739485:260026 -k1,16519:26063369,11739485:260025 -h1,16519:27258746,11739485:0,0,0 -k1,16519:27692442,11739485:260026 -k1,16519:29440791,11739485:260026 -k1,16519:29913748,11739485:259965 -k1,16519:32583029,11739485:0 -) -(1,16520:6630773,12604565:25952256,513147,134348 -k1,16519:8567541,12604565:234798 -k1,16519:10835920,12604565:234797 -k1,16519:16457777,12604565:234798 -k1,16519:17351866,12604565:234797 -k1,16519:19480654,12604565:234798 -k1,16519:20906896,12604565:234797 -k1,16519:22160779,12604565:234798 -k1,16519:25912238,12604565:234797 -k1,16519:28306447,12604565:234798 -k1,16519:30237971,12604565:234797 -k1,16519:31664214,12604565:234798 -k1,16519:32583029,12604565:0 -) -(1,16520:6630773,13469645:25952256,473825,126483 -g1,16519:8220021,13469645 -k1,16520:32583029,13469645:21563966 -g1,16520:32583029,13469645 -) -(1,16521:6630773,15586463:25952256,555811,147783 -(1,16521:6630773,15586463:2450326,534184,12975 -g1,16521:6630773,15586463 -g1,16521:9081099,15586463 -) -k1,16521:32583029,15586463:20048118 -g1,16521:32583029,15586463 -) -(1,16525:6630773,16844759:25952256,513147,134348 -k1,16524:7255552,16844759:161439 -k1,16524:8351571,16844759:161476 -k1,16524:9172340,16844759:161477 -k1,16524:12410731,16844759:161476 -k1,16524:13519859,16844759:161477 -k1,16524:17695415,16844759:161476 -k1,16524:19577212,16844759:161477 -k1,16524:20405844,16844759:161476 -k1,16524:20982126,16844759:161439 -k1,16524:24169400,16844759:161477 -k1,16524:24862373,16844759:161476 -k1,16524:29225363,16844759:161477 -k1,16524:30002877,16844759:161476 -k1,16524:32583029,16844759:0 -) -(1,16525:6630773,17709839:25952256,513147,134348 -k1,16524:9864573,17709839:166716 -k1,16524:10501182,17709839:166716 -k1,16524:13594081,17709839:166716 -k1,16524:14779882,17709839:166716 -k1,16524:16879910,17709839:166716 -k1,16524:17461436,17709839:166683 -k1,16524:19018171,17709839:166716 -k1,16524:19946415,17709839:166716 -k1,16524:22344632,17709839:166716 -k1,16524:24367983,17709839:166716 -k1,16524:25731386,17709839:166716 -k1,16524:27288121,17709839:166716 -k1,16524:30201451,17709839:166716 -k1,16524:32583029,17709839:0 -) -(1,16525:6630773,18574919:25952256,505283,134348 -k1,16524:7417641,18574919:170830 -k1,16524:10168624,18574919:170831 -k1,16524:13458311,18574919:170830 -(1,16524:13458311,18574919:0,435480,115847 -r1,16591:14520000,18574919:1061689,551327,115847 -k1,16524:13458311,18574919:-1061689 -) -(1,16524:13458311,18574919:1061689,435480,115847 -k1,16524:13458311,18574919:3277 -h1,16524:14516723,18574919:0,411205,112570 -) -k1,16524:14864500,18574919:170830 -k1,16524:15566828,18574919:170831 -k1,16524:18687433,18574919:170830 -k1,16524:20049708,18574919:170830 -k1,16524:23910216,18574919:170831 -k1,16524:24842574,18574919:170830 -k1,16524:27593556,18574919:170830 -k1,16524:29910690,18574919:170831 -k1,16524:31966991,18574919:170830 -k1,16524:32583029,18574919:0 -) -(1,16525:6630773,19439999:25952256,513147,126483 -g1,16524:8204947,19439999 -g1,16524:10695315,19439999 -g1,16524:13920341,19439999 -g1,16524:15404076,19439999 -g1,16524:17199762,19439999 -g1,16524:18677598,19439999 -g1,16524:19492865,19439999 -g1,16524:21081457,19439999 -k1,16525:32583029,19439999:9728824 -g1,16525:32583029,19439999 -) -(1,16527:6630773,20305079:25952256,505283,126483 -h1,16526:6630773,20305079:983040,0,0 -g1,16526:10674344,20305079 -(1,16526:10674344,20305079:0,435480,115847 -r1,16591:11736033,20305079:1061689,551327,115847 -k1,16526:10674344,20305079:-1061689 -) -(1,16526:10674344,20305079:1061689,435480,115847 -k1,16526:10674344,20305079:3277 -h1,16526:11732756,20305079:0,411205,112570 -) -g1,16526:11935262,20305079 -g1,16526:13807625,20305079 -g1,16526:14362714,20305079 -g1,16526:16763953,20305079 -g1,16526:18198536,20305079 -g1,16526:19083927,20305079 -g1,16526:20201971,20305079 -(1,16526:20201971,20305079:0,452978,115847 -r1,16591:20911949,20305079:709978,568825,115847 -k1,16526:20201971,20305079:-709978 -) -(1,16526:20201971,20305079:709978,452978,115847 -k1,16526:20201971,20305079:3277 -h1,16526:20908672,20305079:0,411205,112570 -) -k1,16527:32583029,20305079:11618652 -g1,16527:32583029,20305079 -) -v1,16529:6630773,20989934:0,393216,0 -(1,16533:6630773,21227673:25952256,630955,196608 -g1,16533:6630773,21227673 -g1,16533:6630773,21227673 -g1,16533:6434165,21227673 -(1,16533:6434165,21227673:0,630955,196608 -r1,16591:32779637,21227673:26345472,827563,196608 -k1,16533:6434165,21227673:-26345472 -) -(1,16533:6434165,21227673:26345472,630955,196608 -[1,16533:6630773,21227673:25952256,434347,0 -(1,16531:6630773,21217765:25952256,424439,9908 -(1,16530:6630773,21217765:0,0,0 -g1,16530:6630773,21217765 -g1,16530:6630773,21217765 -g1,16530:6303093,21217765 -(1,16530:6303093,21217765:0,0,0 -) -g1,16530:6630773,21217765 -) -g1,16531:9286405,21217765 -g1,16531:10282267,21217765 -h1,16531:11610083,21217765:0,0,0 -k1,16531:32583029,21217765:20972946 -g1,16531:32583029,21217765 -) -] -) -g1,16533:32583029,21227673 -g1,16533:6630773,21227673 -g1,16533:6630773,21227673 -g1,16533:32583029,21227673 -g1,16533:32583029,21227673 -) -h1,16533:6630773,21424281:0,0,0 -v1,16537:6630773,22109136:0,393216,0 -(1,16541:6630773,22443213:25952256,727293,196608 -g1,16541:6630773,22443213 -g1,16541:6630773,22443213 -g1,16541:6434165,22443213 -(1,16541:6434165,22443213:0,727293,196608 -r1,16591:32779637,22443213:26345472,923901,196608 -k1,16541:6434165,22443213:-26345472 -) -(1,16541:6434165,22443213:26345472,727293,196608 -[1,16541:6630773,22443213:25952256,530685,0 -(1,16539:6630773,22336967:25952256,424439,106246 -(1,16538:6630773,22336967:0,0,0 -g1,16538:6630773,22336967 -g1,16538:6630773,22336967 -g1,16538:6303093,22336967 -(1,16538:6303093,22336967:0,0,0 -) -g1,16538:6630773,22336967 -) -g1,16539:9286405,22336967 -g1,16539:10614221,22336967 -g1,16539:12937899,22336967 -g1,16539:14265715,22336967 -g1,16539:16257439,22336967 -g1,16539:17253301,22336967 -h1,16539:20240886,22336967:0,0,0 -k1,16539:32583029,22336967:12342143 -g1,16539:32583029,22336967 -) -] -) -g1,16541:32583029,22443213 -g1,16541:6630773,22443213 -g1,16541:6630773,22443213 -g1,16541:32583029,22443213 -g1,16541:32583029,22443213 -) -h1,16541:6630773,22639821:0,0,0 -(1,16545:6630773,23504901:25952256,505283,134348 -h1,16544:6630773,23504901:983040,0,0 -k1,16544:9004393,23504901:193893 -k1,16544:10878629,23504901:193893 -k1,16544:13277809,23504901:193893 -k1,16544:14575983,23504901:193892 -k1,16544:15517642,23504901:193893 -k1,16544:17455448,23504901:193893 -k1,16544:19980457,23504901:193893 -k1,16544:21909743,23504901:193893 -k1,16544:22459496,23504901:193893 -k1,16544:23725558,23504901:193893 -k1,16544:24605612,23504901:193892 -k1,16544:28533091,23504901:193893 -k1,16544:30932271,23504901:193893 -k1,16544:31812326,23504901:193893 -k1,16544:32583029,23504901:0 -) -(1,16545:6630773,24369981:25952256,513147,134348 -k1,16544:9906218,24369981:203117 -k1,16544:10870864,24369981:203118 -k1,16544:12811996,24369981:203117 -k1,16544:14206559,24369981:203118 -k1,16544:15171204,24369981:203117 -k1,16544:17988552,24369981:203117 -k1,16544:18843098,24369981:203118 -k1,16544:20065300,24369981:203117 -k1,16544:22963914,24369981:203118 -k1,16544:23976401,24369981:203117 -k1,16544:25198603,24369981:203117 -k1,16544:26434569,24369981:203118 -k1,16544:27296978,24369981:203117 -k1,16544:28519181,24369981:203118 -(1,16544:28519181,24369981:0,435480,115847 -r1,16591:29580870,24369981:1061689,551327,115847 -k1,16544:28519181,24369981:-1061689 -) -(1,16544:28519181,24369981:1061689,435480,115847 -k1,16544:28519181,24369981:3277 -h1,16544:29577593,24369981:0,411205,112570 -) -k1,16544:29783987,24369981:203117 -k1,16544:32583029,24369981:0 -) -(1,16545:6630773,25235061:25952256,505283,134348 -g1,16544:8402866,25235061 -(1,16544:8402866,25235061:0,414482,115847 -r1,16591:8761132,25235061:358266,530329,115847 -k1,16544:8402866,25235061:-358266 -) -(1,16544:8402866,25235061:358266,414482,115847 -k1,16544:8402866,25235061:3277 -h1,16544:8757855,25235061:0,411205,112570 -) -g1,16544:8960361,25235061 -g1,16544:9775628,25235061 -g1,16544:12920044,25235061 -g1,16544:14792407,25235061 -g1,16544:15347496,25235061 -g1,16544:17748735,25235061 -g1,16544:19020133,25235061 -g1,16544:20285633,25235061 -g1,16544:23221645,25235061 -g1,16544:24656228,25235061 -g1,16544:25541619,25235061 -(1,16544:25541619,25235061:0,414482,115847 -r1,16591:25899885,25235061:358266,530329,115847 -k1,16544:25541619,25235061:-358266 -) -(1,16544:25541619,25235061:358266,414482,115847 -k1,16544:25541619,25235061:3277 -h1,16544:25896608,25235061:0,411205,112570 -) -g1,16544:26099114,25235061 -g1,16544:26914381,25235061 -g1,16544:28547538,25235061 -g1,16544:29161610,25235061 -k1,16545:32583029,25235061:1648671 -g1,16545:32583029,25235061 -) -v1,16547:6630773,25919916:0,393216,0 -(1,16555:6630773,27728351:25952256,2201651,196608 -g1,16555:6630773,27728351 -g1,16555:6630773,27728351 -g1,16555:6434165,27728351 -(1,16555:6434165,27728351:0,2201651,196608 -r1,16591:32779637,27728351:26345472,2398259,196608 -k1,16555:6434165,27728351:-26345472 -) -(1,16555:6434165,27728351:26345472,2201651,196608 -[1,16555:6630773,27728351:25952256,2005043,0 -(1,16549:6630773,26147747:25952256,424439,106246 -(1,16548:6630773,26147747:0,0,0 -g1,16548:6630773,26147747 -g1,16548:6630773,26147747 -g1,16548:6303093,26147747 -(1,16548:6303093,26147747:0,0,0 -) -g1,16548:6630773,26147747 -) -g1,16549:9286405,26147747 -g1,16549:10614221,26147747 -g1,16549:12937899,26147747 -g1,16549:13601807,26147747 -g1,16549:14597669,26147747 -g1,16549:15925485,26147747 -g1,16549:18249163,26147747 -g1,16549:19245025,26147747 -h1,16549:22232610,26147747:0,0,0 -k1,16549:32583029,26147747:10350419 -g1,16549:32583029,26147747 -) -(1,16550:6630773,26832602:25952256,424439,106246 -h1,16550:6630773,26832602:0,0,0 -g1,16550:13601805,26832602 -h1,16550:16921344,26832602:0,0,0 -k1,16550:32583029,26832602:15661685 -g1,16550:32583029,26832602 -) -(1,16554:6630773,27648529:25952256,424439,79822 -(1,16552:6630773,27648529:0,0,0 -g1,16552:6630773,27648529 -g1,16552:6630773,27648529 -g1,16552:6303093,27648529 -(1,16552:6303093,27648529:0,0,0 -) -g1,16552:6630773,27648529 -) -g1,16554:7626635,27648529 -g1,16554:8954451,27648529 -h1,16554:10282267,27648529:0,0,0 -k1,16554:32583029,27648529:22300762 -g1,16554:32583029,27648529 -) -] -) -g1,16555:32583029,27728351 -g1,16555:6630773,27728351 -g1,16555:6630773,27728351 -g1,16555:32583029,27728351 -g1,16555:32583029,27728351 -) -h1,16555:6630773,27924959:0,0,0 -(1,16559:6630773,28790039:25952256,505283,126483 -h1,16558:6630773,28790039:983040,0,0 -k1,16558:8823616,28790039:290988 -k1,16558:11047916,28790039:290988 -k1,16558:12728923,28790039:290988 -k1,16558:15766525,28790039:290988 -k1,16558:18853280,28790039:290989 -k1,16558:22991231,28790039:290988 -k1,16558:24676170,28790039:290988 -k1,16558:25381909,28790039:290896 -k1,16558:26288935,28790039:290988 -k1,16558:27346039,28790039:290988 -k1,16558:29338997,28790039:290988 -k1,16558:32583029,28790039:0 -) -(1,16559:6630773,29655119:25952256,513147,134348 -k1,16558:8098070,29655119:182791 -k1,16558:11306657,29655119:182790 -k1,16558:12773954,29655119:182791 -k1,16558:13948305,29655119:182791 -k1,16558:14782524,29655119:182791 -k1,16558:15713080,29655119:182790 -k1,16558:18957058,29655119:182791 -k1,16558:20232334,29655119:182791 -k1,16558:21434210,29655119:182791 -k1,16558:25325027,29655119:182790 -k1,16558:27765533,29655119:182791 -k1,16558:29637842,29655119:182791 -k1,16558:32583029,29655119:0 -) -(1,16559:6630773,30520199:25952256,505283,134348 -k1,16558:8912938,30520199:270210 -k1,16558:10202233,30520199:270210 -k1,16558:14326615,30520199:270210 -k1,16558:15248252,30520199:270209 -k1,16558:16266228,30520199:270210 -k1,16558:19008456,30520199:270210 -k1,16558:20976704,30520199:270210 -k1,16558:22265999,30520199:270210 -k1,16558:24346969,30520199:270210 -k1,16558:27689506,30520199:270209 -k1,16558:28491213,30520199:270210 -k1,16558:29780508,30520199:270210 -k1,16558:31426319,30520199:270210 -k1,16558:32583029,30520199:0 -) -(1,16559:6630773,31385279:25952256,513147,126483 -g1,16558:9035289,31385279 -g1,16558:9885946,31385279 -g1,16558:11104260,31385279 -g1,16558:13998985,31385279 -g1,16558:15297908,31385279 -g1,16558:16306507,31385279 -k1,16559:32583029,31385279:15214184 -g1,16559:32583029,31385279 -) -v1,16561:6630773,32070134:0,393216,0 -(1,16569:6630773,33878569:25952256,2201651,196608 -g1,16569:6630773,33878569 -g1,16569:6630773,33878569 -g1,16569:6434165,33878569 -(1,16569:6434165,33878569:0,2201651,196608 -r1,16591:32779637,33878569:26345472,2398259,196608 -k1,16569:6434165,33878569:-26345472 -) -(1,16569:6434165,33878569:26345472,2201651,196608 -[1,16569:6630773,33878569:25952256,2005043,0 -(1,16563:6630773,32297965:25952256,424439,106246 -(1,16562:6630773,32297965:0,0,0 -g1,16562:6630773,32297965 -g1,16562:6630773,32297965 -g1,16562:6303093,32297965 -(1,16562:6303093,32297965:0,0,0 -) -g1,16562:6630773,32297965 -) -g1,16563:9286405,32297965 -g1,16563:10614221,32297965 -g1,16563:12273991,32297965 -g1,16563:13601807,32297965 -g1,16563:14929623,32297965 -g1,16563:15925485,32297965 -h1,16563:18913070,32297965:0,0,0 -k1,16563:32583029,32297965:13669959 -g1,16563:32583029,32297965 -) -(1,16564:6630773,32982820:25952256,424439,106246 -h1,16564:6630773,32982820:0,0,0 -g1,16564:13601805,32982820 -h1,16564:16921344,32982820:0,0,0 -k1,16564:32583029,32982820:15661685 -g1,16564:32583029,32982820 -) -(1,16568:6630773,33798747:25952256,424439,79822 -(1,16566:6630773,33798747:0,0,0 -g1,16566:6630773,33798747 -g1,16566:6630773,33798747 -g1,16566:6303093,33798747 -(1,16566:6303093,33798747:0,0,0 -) -g1,16566:6630773,33798747 -) -g1,16568:7626635,33798747 -g1,16568:8954451,33798747 -h1,16568:10282267,33798747:0,0,0 -k1,16568:32583029,33798747:22300762 -g1,16568:32583029,33798747 -) -] -) -g1,16569:32583029,33878569 -g1,16569:6630773,33878569 -g1,16569:6630773,33878569 -g1,16569:32583029,33878569 -g1,16569:32583029,33878569 -) -h1,16569:6630773,34075177:0,0,0 -(1,16574:6630773,34940257:25952256,505283,134348 -h1,16572:6630773,34940257:983040,0,0 -k1,16572:10291931,34940257:143185 -k1,16572:13380304,34940257:143186 -k1,16572:16283865,34940257:143185 -k1,16572:19654043,34940257:143185 -k1,16572:21187247,34940257:143185 -k1,16572:24581019,34940257:143186 -k1,16572:26217770,34940257:143185 -k1,16572:27047117,34940257:143185 -k1,16572:28742195,34940257:143185 -(1,16572:28949289,34940257:0,435480,115847 -r1,16591:30362690,34940257:1413401,551327,115847 -k1,16572:28949289,34940257:-1413401 -) -(1,16572:28949289,34940257:1413401,435480,115847 -k1,16572:28949289,34940257:3277 -h1,16572:30359413,34940257:0,411205,112570 -) -k1,16572:30712970,34940257:143186 -k1,16572:31507583,34940257:143185 -k1,16574:32583029,34940257:0 -) -(1,16574:6630773,35805337:25952256,513147,126483 -k1,16572:7786536,35805337:195661 -k1,16572:8338057,35805337:195661 -k1,16572:10741625,35805337:195660 -k1,16572:11553324,35805337:195661 -k1,16572:12768070,35805337:195661 -k1,16572:14527420,35805337:195661 -k1,16572:15914526,35805337:195661 -(1,16572:15914526,35805337:0,435480,115847 -r1,16591:17327927,35805337:1413401,551327,115847 -k1,16572:15914526,35805337:-1413401 -) -(1,16572:15914526,35805337:1413401,435480,115847 -k1,16572:15914526,35805337:3277 -h1,16572:17324650,35805337:0,411205,112570 -) -k1,16572:17523587,35805337:195660 -k1,16572:18370676,35805337:195661 -k1,16572:20329911,35805337:195661 -k1,16572:21544657,35805337:195661 -k1,16572:23130337,35805337:195661 -k1,16572:24087525,35805337:195660 -k1,16572:27436123,35805337:195661 -k1,16572:29506114,35805337:195661 -k1,16572:32583029,35805337:0 -) -(1,16574:6630773,36670417:25952256,513147,126483 -g1,16572:7821562,36670417 -g1,16572:9804026,36670417 -g1,16572:11216326,36670417 -g1,16572:14720536,36670417 -g1,16572:16432991,36670417 -g1,16572:18074667,36670417 -(1,16572:18074667,36670417:0,435480,115847 -r1,16591:19136356,36670417:1061689,551327,115847 -k1,16572:18074667,36670417:-1061689 -) -(1,16572:18074667,36670417:1061689,435480,115847 -k1,16572:18074667,36670417:3277 -h1,16572:19133079,36670417:0,411205,112570 -) -g1,16572:19509255,36670417 -k1,16574:32583029,36670417:13073774 -g1,16574:32583029,36670417 -) -(1,16575:6630773,38787235:25952256,555811,139132 -(1,16575:6630773,38787235:2450326,534184,12975 -g1,16575:6630773,38787235 -g1,16575:9081099,38787235 -) -k1,16575:32583029,38787235:20941308 -g1,16575:32583029,38787235 -) -(1,16579:6630773,40045531:25952256,513147,134348 -k1,16578:8063673,40045531:257840 -(1,16578:8063673,40045531:0,435480,115847 -r1,16591:9477074,40045531:1413401,551327,115847 -k1,16578:8063673,40045531:-1413401 -) -(1,16578:8063673,40045531:1413401,435480,115847 -k1,16578:8063673,40045531:3277 -h1,16578:9473797,40045531:0,411205,112570 -) -k1,16578:9908584,40045531:257840 -k1,16578:10849309,40045531:257840 -k1,16578:14556309,40045531:257840 -k1,16578:17560763,40045531:257840 -k1,16578:19386223,40045531:257839 -k1,16578:22224215,40045531:257840 -k1,16578:24818412,40045531:257840 -k1,16578:27088207,40045531:257840 -k1,16578:31116333,40045531:257840 -k1,16578:32583029,40045531:0 -) -(1,16579:6630773,40910611:25952256,513147,126483 -k1,16578:7624851,40910611:184708 -k1,16578:8828645,40910611:184709 -k1,16578:10046856,40910611:184708 -k1,16578:11423010,40910611:184709 -k1,16578:12731660,40910611:184708 -k1,16578:14107814,40910611:184709 -k1,16578:16916584,40910611:184708 -k1,16578:18086954,40910611:184709 -k1,16578:19312374,40910611:184708 -k1,16578:20113121,40910611:184709 -k1,16578:21283490,40910611:184708 -k1,16578:22516119,40910611:184709 -(1,16578:22723213,40910611:0,414482,115847 -r1,16591:23081479,40910611:358266,530329,115847 -k1,16578:22723213,40910611:-358266 -) -(1,16578:22723213,40910611:358266,414482,115847 -k1,16578:22723213,40910611:3277 -h1,16578:23078202,40910611:0,411205,112570 -) -k1,16578:23646951,40910611:184708 -k1,16578:24517822,40910611:184709 -k1,16578:28436116,40910611:184708 -k1,16578:29568476,40910611:184709 -k1,16578:30772269,40910611:184708 -k1,16578:32583029,40910611:0 -) -(1,16579:6630773,41775691:25952256,513147,134348 -k1,16578:8994711,41775691:230741 -k1,16578:11025726,41775691:230741 -k1,16578:12275553,41775691:230742 -k1,16578:15825693,41775691:230741 -k1,16578:16715726,41775691:230741 -k1,16578:18919101,41775691:230742 -k1,16578:20168927,41775691:230741 -k1,16578:21789687,41775691:230741 -k1,16578:24767042,41775691:230741 -k1,16578:26565405,41775691:230742 -k1,16578:29741333,41775691:230741 -k1,16578:31073079,41775691:230741 -k1,16578:32583029,41775691:0 -) -(1,16579:6630773,42640771:25952256,505283,7863 -g1,16578:7849087,42640771 -g1,16578:9650016,42640771 -k1,16579:32583029,42640771:21367358 -g1,16579:32583029,42640771 -) -(1,16581:6630773,43505851:25952256,505283,134348 -h1,16580:6630773,43505851:983040,0,0 -k1,16580:10874288,43505851:181594 -k1,16580:12791275,43505851:181594 -k1,16580:13991955,43505851:181595 -k1,16580:16848729,43505851:181594 -k1,16580:19950607,43505851:181594 -k1,16580:21151286,43505851:181594 -k1,16580:22722899,43505851:181594 -k1,16580:23520531,43505851:181594 -k1,16580:24721211,43505851:181595 -k1,16580:27657283,43505851:181594 -k1,16580:29809545,43505851:181594 -k1,16581:32583029,43505851:0 -k1,16581:32583029,43505851:0 -) -v1,16583:6630773,44190706:0,393216,0 -(1,16591:6630773,45103392:25952256,1305902,196608 -g1,16591:6630773,45103392 -g1,16591:6630773,45103392 -g1,16591:6434165,45103392 -(1,16591:6434165,45103392:0,1305902,196608 -r1,16591:32779637,45103392:26345472,1502510,196608 -k1,16591:6434165,45103392:-26345472 -) -(1,16591:6434165,45103392:26345472,1305902,196608 -[1,16591:6630773,45103392:25952256,1109294,0 -(1,16585:6630773,44418537:25952256,424439,106246 -(1,16584:6630773,44418537:0,0,0 -g1,16584:6630773,44418537 -g1,16584:6630773,44418537 -g1,16584:6303093,44418537 -(1,16584:6303093,44418537:0,0,0 -) -g1,16584:6630773,44418537 -) -g1,16585:9286405,44418537 -g1,16585:10946175,44418537 -g1,16585:13601807,44418537 -g1,16585:15261577,44418537 -g1,16585:17585255,44418537 -g1,16585:18581117,44418537 -h1,16585:21568702,44418537:0,0,0 -k1,16585:32583029,44418537:11014327 -g1,16585:32583029,44418537 -) -(1,16586:6630773,45103392:25952256,424439,106246 -h1,16586:6630773,45103392:0,0,0 -g1,16586:13601805,45103392 -h1,16586:16921344,45103392:0,0,0 -k1,16586:32583029,45103392:15661685 -g1,16586:32583029,45103392 -) -] -) -g1,16591:32583029,45103392 -g1,16591:6630773,45103392 -g1,16591:6630773,45103392 -g1,16591:32583029,45103392 -g1,16591:32583029,45103392 -) -] -(1,16591:32583029,45706769:0,0,0 -g1,16591:32583029,45706769 -) -) -] -(1,16591:6630773,47279633:25952256,0,0 -h1,16591:6630773,47279633:25952256,0,0 -) -] -(1,16591:4262630,4025873:0,0,0 -[1,16591:-473656,4025873:0,0,0 -(1,16591:-473656,-710413:0,0,0 -(1,16591:-473656,-710413:0,0,0 -g1,16591:-473656,-710413 -) -g1,16591:-473656,-710413 +g1,16589:6630773,4812305 +g1,16589:6630773,4812305 +g1,16589:8364200,4812305 +g1,16589:10158575,4812305 +k1,16589:31387651,4812305:21229076 +) +) +] +[1,16589:6630773,45706769:25952256,40108032,0 +(1,16589:6630773,45706769:25952256,40108032,0 +(1,16589:6630773,45706769:0,0,0 +g1,16589:6630773,45706769 +) +[1,16589:6630773,45706769:25952256,40108032,0 +(1,16515:6630773,6254097:25952256,32768,229376 +(1,16515:6630773,6254097:0,32768,229376 +(1,16515:6630773,6254097:5505024,32768,229376 +r1,16589:12135797,6254097:5505024,262144,229376 +) +k1,16515:6630773,6254097:-5505024 +) +(1,16515:6630773,6254097:25952256,32768,0 +r1,16589:32583029,6254097:25952256,32768,0 +) +) +(1,16515:6630773,7885949:25952256,606339,151780 +(1,16515:6630773,7885949:1974731,582746,14155 +g1,16515:6630773,7885949 +g1,16515:8605504,7885949 +) +g1,16515:10655733,7885949 +k1,16515:32583028,7885949:19822016 +g1,16515:32583028,7885949 +) +(1,16518:6630773,9144245:25952256,513147,134348 +k1,16517:8040750,9144245:234917 +k1,16517:9581799,9144245:234916 +k1,16517:12309706,9144245:234917 +k1,16517:15730983,9144245:234917 +k1,16517:18601103,9144245:234917 +k1,16517:20997396,9144245:234916 +k1,16517:22967706,9144245:234917 +k1,16517:26410610,9144245:234917 +k1,16517:29555981,9144245:234917 +k1,16517:30322394,9144245:234916 +k1,16517:31576396,9144245:234917 +k1,16518:32583029,9144245:0 +) +(1,16518:6630773,10009325:25952256,513147,126483 +k1,16517:8729538,10009325:260480 +k1,16517:10082504,10009325:260481 +k1,16517:11002276,10009325:260480 +k1,16517:13050578,10009325:260480 +k1,16517:14691903,10009325:260481 +k1,16517:15657550,10009325:260480 +k1,16517:18762293,10009325:260480 +k1,16517:21190704,10009325:260480 +k1,16517:21807045,10009325:260481 +k1,16517:24831834,10009325:260480 +k1,16517:25751606,10009325:260480 +k1,16517:29916067,10009325:260481 +k1,16517:30862709,10009325:260480 +k1,16517:32583029,10009325:0 +) +(1,16518:6630773,10874405:25952256,513147,102891 +k1,16517:7969678,10874405:234623 +k1,16517:8952068,10874405:234624 +k1,16517:9872853,10874405:234623 +k1,16517:11386084,10874405:234624 +k1,16517:13133933,10874405:234623 +k1,16517:14762508,10874405:234624 +k1,16517:16431059,10874405:234623 +k1,16517:17080490,10874405:234588 +k1,16517:20514582,10874405:234624 +k1,16517:21377040,10874405:234623 +k1,16517:24451339,10874405:234624 +k1,16517:26313221,10874405:234623 +k1,16517:28881582,10874405:234624 +k1,16517:30832593,10874405:234623 +k1,16517:31482024,10874405:234588 +k1,16517:32583029,10874405:0 +) +(1,16518:6630773,11739485:25952256,505283,134348 +k1,16517:7246659,11739485:260026 +k1,16517:9439997,11739485:260026 +k1,16517:11090042,11739485:260026 +k1,16517:14096681,11739485:260025 +(1,16517:14096681,11739485:0,452978,115847 +r1,16589:14806659,11739485:709978,568825,115847 +k1,16517:14096681,11739485:-709978 +) +(1,16517:14096681,11739485:709978,452978,115847 +k1,16517:14096681,11739485:3277 +h1,16517:14803382,11739485:0,411205,112570 +) +k1,16517:15240355,11739485:260026 +k1,16517:18590404,11739485:260026 +k1,16517:19466468,11739485:260026 +k1,16517:22005181,11739485:260026 +h1,16517:22975769,11739485:0,0,0 +k1,16517:23235795,11739485:260026 +k1,16517:24305191,11739485:260026 +k1,16517:26063369,11739485:260025 +h1,16517:27258746,11739485:0,0,0 +k1,16517:27692442,11739485:260026 +k1,16517:29440791,11739485:260026 +k1,16517:29913748,11739485:259965 +k1,16517:32583029,11739485:0 +) +(1,16518:6630773,12604565:25952256,513147,134348 +k1,16517:8567541,12604565:234798 +k1,16517:10835920,12604565:234797 +k1,16517:16457777,12604565:234798 +k1,16517:17351866,12604565:234797 +k1,16517:19480654,12604565:234798 +k1,16517:20906896,12604565:234797 +k1,16517:22160779,12604565:234798 +k1,16517:25912238,12604565:234797 +k1,16517:28306447,12604565:234798 +k1,16517:30237971,12604565:234797 +k1,16517:31664214,12604565:234798 +k1,16517:32583029,12604565:0 +) +(1,16518:6630773,13469645:25952256,473825,126483 +g1,16517:8220021,13469645 +k1,16518:32583029,13469645:21563966 +g1,16518:32583029,13469645 +) +(1,16519:6630773,15586463:25952256,555811,147783 +(1,16519:6630773,15586463:2450326,534184,12975 +g1,16519:6630773,15586463 +g1,16519:9081099,15586463 +) +k1,16519:32583029,15586463:20048118 +g1,16519:32583029,15586463 +) +(1,16523:6630773,16844759:25952256,513147,134348 +k1,16522:7255552,16844759:161439 +k1,16522:8351571,16844759:161476 +k1,16522:9172340,16844759:161477 +k1,16522:12410731,16844759:161476 +k1,16522:13519859,16844759:161477 +k1,16522:17695415,16844759:161476 +k1,16522:19577212,16844759:161477 +k1,16522:20405844,16844759:161476 +k1,16522:20982126,16844759:161439 +k1,16522:24169400,16844759:161477 +k1,16522:24862373,16844759:161476 +k1,16522:29225363,16844759:161477 +k1,16522:30002877,16844759:161476 +k1,16522:32583029,16844759:0 +) +(1,16523:6630773,17709839:25952256,513147,134348 +k1,16522:9864573,17709839:166716 +k1,16522:10501182,17709839:166716 +k1,16522:13594081,17709839:166716 +k1,16522:14779882,17709839:166716 +k1,16522:16879910,17709839:166716 +k1,16522:17461436,17709839:166683 +k1,16522:19018171,17709839:166716 +k1,16522:19946415,17709839:166716 +k1,16522:22344632,17709839:166716 +k1,16522:24367983,17709839:166716 +k1,16522:25731386,17709839:166716 +k1,16522:27288121,17709839:166716 +k1,16522:30201451,17709839:166716 +k1,16522:32583029,17709839:0 +) +(1,16523:6630773,18574919:25952256,505283,134348 +k1,16522:7417641,18574919:170830 +k1,16522:10168624,18574919:170831 +k1,16522:13458311,18574919:170830 +(1,16522:13458311,18574919:0,435480,115847 +r1,16589:14520000,18574919:1061689,551327,115847 +k1,16522:13458311,18574919:-1061689 +) +(1,16522:13458311,18574919:1061689,435480,115847 +k1,16522:13458311,18574919:3277 +h1,16522:14516723,18574919:0,411205,112570 +) +k1,16522:14864500,18574919:170830 +k1,16522:15566828,18574919:170831 +k1,16522:18687433,18574919:170830 +k1,16522:20049708,18574919:170830 +k1,16522:23910216,18574919:170831 +k1,16522:24842574,18574919:170830 +k1,16522:27593556,18574919:170830 +k1,16522:29910690,18574919:170831 +k1,16522:31966991,18574919:170830 +k1,16522:32583029,18574919:0 +) +(1,16523:6630773,19439999:25952256,513147,126483 +g1,16522:8204947,19439999 +g1,16522:10695315,19439999 +g1,16522:13920341,19439999 +g1,16522:15404076,19439999 +g1,16522:17199762,19439999 +g1,16522:18677598,19439999 +g1,16522:19492865,19439999 +g1,16522:21081457,19439999 +k1,16523:32583029,19439999:9728824 +g1,16523:32583029,19439999 +) +(1,16525:6630773,20305079:25952256,505283,126483 +h1,16524:6630773,20305079:983040,0,0 +g1,16524:10674344,20305079 +(1,16524:10674344,20305079:0,435480,115847 +r1,16589:11736033,20305079:1061689,551327,115847 +k1,16524:10674344,20305079:-1061689 +) +(1,16524:10674344,20305079:1061689,435480,115847 +k1,16524:10674344,20305079:3277 +h1,16524:11732756,20305079:0,411205,112570 +) +g1,16524:11935262,20305079 +g1,16524:13807625,20305079 +g1,16524:14362714,20305079 +g1,16524:16763953,20305079 +g1,16524:18198536,20305079 +g1,16524:19083927,20305079 +g1,16524:20201971,20305079 +(1,16524:20201971,20305079:0,452978,115847 +r1,16589:20911949,20305079:709978,568825,115847 +k1,16524:20201971,20305079:-709978 +) +(1,16524:20201971,20305079:709978,452978,115847 +k1,16524:20201971,20305079:3277 +h1,16524:20908672,20305079:0,411205,112570 +) +k1,16525:32583029,20305079:11618652 +g1,16525:32583029,20305079 +) +v1,16527:6630773,20989934:0,393216,0 +(1,16531:6630773,21227673:25952256,630955,196608 +g1,16531:6630773,21227673 +g1,16531:6630773,21227673 +g1,16531:6434165,21227673 +(1,16531:6434165,21227673:0,630955,196608 +r1,16589:32779637,21227673:26345472,827563,196608 +k1,16531:6434165,21227673:-26345472 +) +(1,16531:6434165,21227673:26345472,630955,196608 +[1,16531:6630773,21227673:25952256,434347,0 +(1,16529:6630773,21217765:25952256,424439,9908 +(1,16528:6630773,21217765:0,0,0 +g1,16528:6630773,21217765 +g1,16528:6630773,21217765 +g1,16528:6303093,21217765 +(1,16528:6303093,21217765:0,0,0 +) +g1,16528:6630773,21217765 +) +g1,16529:9286405,21217765 +g1,16529:10282267,21217765 +h1,16529:11610083,21217765:0,0,0 +k1,16529:32583029,21217765:20972946 +g1,16529:32583029,21217765 +) +] +) +g1,16531:32583029,21227673 +g1,16531:6630773,21227673 +g1,16531:6630773,21227673 +g1,16531:32583029,21227673 +g1,16531:32583029,21227673 +) +h1,16531:6630773,21424281:0,0,0 +v1,16535:6630773,22109136:0,393216,0 +(1,16539:6630773,22443213:25952256,727293,196608 +g1,16539:6630773,22443213 +g1,16539:6630773,22443213 +g1,16539:6434165,22443213 +(1,16539:6434165,22443213:0,727293,196608 +r1,16589:32779637,22443213:26345472,923901,196608 +k1,16539:6434165,22443213:-26345472 +) +(1,16539:6434165,22443213:26345472,727293,196608 +[1,16539:6630773,22443213:25952256,530685,0 +(1,16537:6630773,22336967:25952256,424439,106246 +(1,16536:6630773,22336967:0,0,0 +g1,16536:6630773,22336967 +g1,16536:6630773,22336967 +g1,16536:6303093,22336967 +(1,16536:6303093,22336967:0,0,0 +) +g1,16536:6630773,22336967 +) +g1,16537:9286405,22336967 +g1,16537:10614221,22336967 +g1,16537:12937899,22336967 +g1,16537:14265715,22336967 +g1,16537:16257439,22336967 +g1,16537:17253301,22336967 +h1,16537:20240886,22336967:0,0,0 +k1,16537:32583029,22336967:12342143 +g1,16537:32583029,22336967 +) +] +) +g1,16539:32583029,22443213 +g1,16539:6630773,22443213 +g1,16539:6630773,22443213 +g1,16539:32583029,22443213 +g1,16539:32583029,22443213 +) +h1,16539:6630773,22639821:0,0,0 +(1,16543:6630773,23504901:25952256,505283,134348 +h1,16542:6630773,23504901:983040,0,0 +k1,16542:9004393,23504901:193893 +k1,16542:10878629,23504901:193893 +k1,16542:13277809,23504901:193893 +k1,16542:14575983,23504901:193892 +k1,16542:15517642,23504901:193893 +k1,16542:17455448,23504901:193893 +k1,16542:19980457,23504901:193893 +k1,16542:21909743,23504901:193893 +k1,16542:22459496,23504901:193893 +k1,16542:23725558,23504901:193893 +k1,16542:24605612,23504901:193892 +k1,16542:28533091,23504901:193893 +k1,16542:30932271,23504901:193893 +k1,16542:31812326,23504901:193893 +k1,16542:32583029,23504901:0 +) +(1,16543:6630773,24369981:25952256,513147,134348 +k1,16542:9906218,24369981:203117 +k1,16542:10870864,24369981:203118 +k1,16542:12811996,24369981:203117 +k1,16542:14206559,24369981:203118 +k1,16542:15171204,24369981:203117 +k1,16542:17988552,24369981:203117 +k1,16542:18843098,24369981:203118 +k1,16542:20065300,24369981:203117 +k1,16542:22963914,24369981:203118 +k1,16542:23976401,24369981:203117 +k1,16542:25198603,24369981:203117 +k1,16542:26434569,24369981:203118 +k1,16542:27296978,24369981:203117 +k1,16542:28519181,24369981:203118 +(1,16542:28519181,24369981:0,435480,115847 +r1,16589:29580870,24369981:1061689,551327,115847 +k1,16542:28519181,24369981:-1061689 +) +(1,16542:28519181,24369981:1061689,435480,115847 +k1,16542:28519181,24369981:3277 +h1,16542:29577593,24369981:0,411205,112570 +) +k1,16542:29783987,24369981:203117 +k1,16542:32583029,24369981:0 +) +(1,16543:6630773,25235061:25952256,505283,134348 +g1,16542:8402866,25235061 +(1,16542:8402866,25235061:0,414482,115847 +r1,16589:8761132,25235061:358266,530329,115847 +k1,16542:8402866,25235061:-358266 +) +(1,16542:8402866,25235061:358266,414482,115847 +k1,16542:8402866,25235061:3277 +h1,16542:8757855,25235061:0,411205,112570 +) +g1,16542:8960361,25235061 +g1,16542:9775628,25235061 +g1,16542:12920044,25235061 +g1,16542:14792407,25235061 +g1,16542:15347496,25235061 +g1,16542:17748735,25235061 +g1,16542:19020133,25235061 +g1,16542:20285633,25235061 +g1,16542:23221645,25235061 +g1,16542:24656228,25235061 +g1,16542:25541619,25235061 +(1,16542:25541619,25235061:0,414482,115847 +r1,16589:25899885,25235061:358266,530329,115847 +k1,16542:25541619,25235061:-358266 +) +(1,16542:25541619,25235061:358266,414482,115847 +k1,16542:25541619,25235061:3277 +h1,16542:25896608,25235061:0,411205,112570 +) +g1,16542:26099114,25235061 +g1,16542:26914381,25235061 +g1,16542:28547538,25235061 +g1,16542:29161610,25235061 +k1,16543:32583029,25235061:1648671 +g1,16543:32583029,25235061 +) +v1,16545:6630773,25919916:0,393216,0 +(1,16553:6630773,27728351:25952256,2201651,196608 +g1,16553:6630773,27728351 +g1,16553:6630773,27728351 +g1,16553:6434165,27728351 +(1,16553:6434165,27728351:0,2201651,196608 +r1,16589:32779637,27728351:26345472,2398259,196608 +k1,16553:6434165,27728351:-26345472 +) +(1,16553:6434165,27728351:26345472,2201651,196608 +[1,16553:6630773,27728351:25952256,2005043,0 +(1,16547:6630773,26147747:25952256,424439,106246 +(1,16546:6630773,26147747:0,0,0 +g1,16546:6630773,26147747 +g1,16546:6630773,26147747 +g1,16546:6303093,26147747 +(1,16546:6303093,26147747:0,0,0 +) +g1,16546:6630773,26147747 +) +g1,16547:9286405,26147747 +g1,16547:10614221,26147747 +g1,16547:12937899,26147747 +g1,16547:13601807,26147747 +g1,16547:14597669,26147747 +g1,16547:15925485,26147747 +g1,16547:18249163,26147747 +g1,16547:19245025,26147747 +h1,16547:22232610,26147747:0,0,0 +k1,16547:32583029,26147747:10350419 +g1,16547:32583029,26147747 +) +(1,16548:6630773,26832602:25952256,424439,106246 +h1,16548:6630773,26832602:0,0,0 +g1,16548:13601805,26832602 +h1,16548:16921344,26832602:0,0,0 +k1,16548:32583029,26832602:15661685 +g1,16548:32583029,26832602 +) +(1,16552:6630773,27648529:25952256,424439,79822 +(1,16550:6630773,27648529:0,0,0 +g1,16550:6630773,27648529 +g1,16550:6630773,27648529 +g1,16550:6303093,27648529 +(1,16550:6303093,27648529:0,0,0 +) +g1,16550:6630773,27648529 +) +g1,16552:7626635,27648529 +g1,16552:8954451,27648529 +h1,16552:10282267,27648529:0,0,0 +k1,16552:32583029,27648529:22300762 +g1,16552:32583029,27648529 +) +] +) +g1,16553:32583029,27728351 +g1,16553:6630773,27728351 +g1,16553:6630773,27728351 +g1,16553:32583029,27728351 +g1,16553:32583029,27728351 +) +h1,16553:6630773,27924959:0,0,0 +(1,16557:6630773,28790039:25952256,505283,126483 +h1,16556:6630773,28790039:983040,0,0 +k1,16556:8823616,28790039:290988 +k1,16556:11047916,28790039:290988 +k1,16556:12728923,28790039:290988 +k1,16556:15766525,28790039:290988 +k1,16556:18853280,28790039:290989 +k1,16556:22991231,28790039:290988 +k1,16556:24676170,28790039:290988 +k1,16556:25381909,28790039:290896 +k1,16556:26288935,28790039:290988 +k1,16556:27346039,28790039:290988 +k1,16556:29338997,28790039:290988 +k1,16556:32583029,28790039:0 +) +(1,16557:6630773,29655119:25952256,513147,134348 +k1,16556:8098070,29655119:182791 +k1,16556:11306657,29655119:182790 +k1,16556:12773954,29655119:182791 +k1,16556:13948305,29655119:182791 +k1,16556:14782524,29655119:182791 +k1,16556:15713080,29655119:182790 +k1,16556:18957058,29655119:182791 +k1,16556:20232334,29655119:182791 +k1,16556:21434210,29655119:182791 +k1,16556:25325027,29655119:182790 +k1,16556:27765533,29655119:182791 +k1,16556:29637842,29655119:182791 +k1,16556:32583029,29655119:0 +) +(1,16557:6630773,30520199:25952256,505283,134348 +k1,16556:8912938,30520199:270210 +k1,16556:10202233,30520199:270210 +k1,16556:14326615,30520199:270210 +k1,16556:15248252,30520199:270209 +k1,16556:16266228,30520199:270210 +k1,16556:19008456,30520199:270210 +k1,16556:20976704,30520199:270210 +k1,16556:22265999,30520199:270210 +k1,16556:24346969,30520199:270210 +k1,16556:27689506,30520199:270209 +k1,16556:28491213,30520199:270210 +k1,16556:29780508,30520199:270210 +k1,16556:31426319,30520199:270210 +k1,16556:32583029,30520199:0 +) +(1,16557:6630773,31385279:25952256,513147,126483 +g1,16556:9035289,31385279 +g1,16556:9885946,31385279 +g1,16556:11104260,31385279 +g1,16556:13998985,31385279 +g1,16556:15297908,31385279 +g1,16556:16306507,31385279 +k1,16557:32583029,31385279:15214184 +g1,16557:32583029,31385279 +) +v1,16559:6630773,32070134:0,393216,0 +(1,16567:6630773,33878569:25952256,2201651,196608 +g1,16567:6630773,33878569 +g1,16567:6630773,33878569 +g1,16567:6434165,33878569 +(1,16567:6434165,33878569:0,2201651,196608 +r1,16589:32779637,33878569:26345472,2398259,196608 +k1,16567:6434165,33878569:-26345472 +) +(1,16567:6434165,33878569:26345472,2201651,196608 +[1,16567:6630773,33878569:25952256,2005043,0 +(1,16561:6630773,32297965:25952256,424439,106246 +(1,16560:6630773,32297965:0,0,0 +g1,16560:6630773,32297965 +g1,16560:6630773,32297965 +g1,16560:6303093,32297965 +(1,16560:6303093,32297965:0,0,0 +) +g1,16560:6630773,32297965 +) +g1,16561:9286405,32297965 +g1,16561:10614221,32297965 +g1,16561:12273991,32297965 +g1,16561:13601807,32297965 +g1,16561:14929623,32297965 +g1,16561:15925485,32297965 +h1,16561:18913070,32297965:0,0,0 +k1,16561:32583029,32297965:13669959 +g1,16561:32583029,32297965 +) +(1,16562:6630773,32982820:25952256,424439,106246 +h1,16562:6630773,32982820:0,0,0 +g1,16562:13601805,32982820 +h1,16562:16921344,32982820:0,0,0 +k1,16562:32583029,32982820:15661685 +g1,16562:32583029,32982820 +) +(1,16566:6630773,33798747:25952256,424439,79822 +(1,16564:6630773,33798747:0,0,0 +g1,16564:6630773,33798747 +g1,16564:6630773,33798747 +g1,16564:6303093,33798747 +(1,16564:6303093,33798747:0,0,0 +) +g1,16564:6630773,33798747 +) +g1,16566:7626635,33798747 +g1,16566:8954451,33798747 +h1,16566:10282267,33798747:0,0,0 +k1,16566:32583029,33798747:22300762 +g1,16566:32583029,33798747 +) +] +) +g1,16567:32583029,33878569 +g1,16567:6630773,33878569 +g1,16567:6630773,33878569 +g1,16567:32583029,33878569 +g1,16567:32583029,33878569 +) +h1,16567:6630773,34075177:0,0,0 +(1,16572:6630773,34940257:25952256,505283,134348 +h1,16570:6630773,34940257:983040,0,0 +k1,16570:10291931,34940257:143185 +k1,16570:13380304,34940257:143186 +k1,16570:16283865,34940257:143185 +k1,16570:19654043,34940257:143185 +k1,16570:21187247,34940257:143185 +k1,16570:24581019,34940257:143186 +k1,16570:26217770,34940257:143185 +k1,16570:27047117,34940257:143185 +k1,16570:28742195,34940257:143185 +(1,16570:28949289,34940257:0,435480,115847 +r1,16589:30362690,34940257:1413401,551327,115847 +k1,16570:28949289,34940257:-1413401 +) +(1,16570:28949289,34940257:1413401,435480,115847 +k1,16570:28949289,34940257:3277 +h1,16570:30359413,34940257:0,411205,112570 +) +k1,16570:30712970,34940257:143186 +k1,16570:31507583,34940257:143185 +k1,16572:32583029,34940257:0 +) +(1,16572:6630773,35805337:25952256,513147,126483 +k1,16570:7786536,35805337:195661 +k1,16570:8338057,35805337:195661 +k1,16570:10741625,35805337:195660 +k1,16570:11553324,35805337:195661 +k1,16570:12768070,35805337:195661 +k1,16570:14527420,35805337:195661 +k1,16570:15914526,35805337:195661 +(1,16570:15914526,35805337:0,435480,115847 +r1,16589:17327927,35805337:1413401,551327,115847 +k1,16570:15914526,35805337:-1413401 +) +(1,16570:15914526,35805337:1413401,435480,115847 +k1,16570:15914526,35805337:3277 +h1,16570:17324650,35805337:0,411205,112570 +) +k1,16570:17523587,35805337:195660 +k1,16570:18370676,35805337:195661 +k1,16570:20329911,35805337:195661 +k1,16570:21544657,35805337:195661 +k1,16570:23130337,35805337:195661 +k1,16570:24087525,35805337:195660 +k1,16570:27436123,35805337:195661 +k1,16570:29506114,35805337:195661 +k1,16570:32583029,35805337:0 +) +(1,16572:6630773,36670417:25952256,513147,126483 +g1,16570:7821562,36670417 +g1,16570:9804026,36670417 +g1,16570:11216326,36670417 +g1,16570:14720536,36670417 +g1,16570:16432991,36670417 +g1,16570:18074667,36670417 +(1,16570:18074667,36670417:0,435480,115847 +r1,16589:19136356,36670417:1061689,551327,115847 +k1,16570:18074667,36670417:-1061689 +) +(1,16570:18074667,36670417:1061689,435480,115847 +k1,16570:18074667,36670417:3277 +h1,16570:19133079,36670417:0,411205,112570 +) +g1,16570:19509255,36670417 +k1,16572:32583029,36670417:13073774 +g1,16572:32583029,36670417 +) +(1,16573:6630773,38787235:25952256,555811,139132 +(1,16573:6630773,38787235:2450326,534184,12975 +g1,16573:6630773,38787235 +g1,16573:9081099,38787235 +) +k1,16573:32583029,38787235:20941308 +g1,16573:32583029,38787235 +) +(1,16577:6630773,40045531:25952256,513147,134348 +k1,16576:8063673,40045531:257840 +(1,16576:8063673,40045531:0,435480,115847 +r1,16589:9477074,40045531:1413401,551327,115847 +k1,16576:8063673,40045531:-1413401 +) +(1,16576:8063673,40045531:1413401,435480,115847 +k1,16576:8063673,40045531:3277 +h1,16576:9473797,40045531:0,411205,112570 +) +k1,16576:9908584,40045531:257840 +k1,16576:10849309,40045531:257840 +k1,16576:14556309,40045531:257840 +k1,16576:17560763,40045531:257840 +k1,16576:19386223,40045531:257839 +k1,16576:22224215,40045531:257840 +k1,16576:24818412,40045531:257840 +k1,16576:27088207,40045531:257840 +k1,16576:31116333,40045531:257840 +k1,16576:32583029,40045531:0 +) +(1,16577:6630773,40910611:25952256,513147,126483 +k1,16576:7624851,40910611:184708 +k1,16576:8828645,40910611:184709 +k1,16576:10046856,40910611:184708 +k1,16576:11423010,40910611:184709 +k1,16576:12731660,40910611:184708 +k1,16576:14107814,40910611:184709 +k1,16576:16916584,40910611:184708 +k1,16576:18086954,40910611:184709 +k1,16576:19312374,40910611:184708 +k1,16576:20113121,40910611:184709 +k1,16576:21283490,40910611:184708 +k1,16576:22516119,40910611:184709 +(1,16576:22723213,40910611:0,414482,115847 +r1,16589:23081479,40910611:358266,530329,115847 +k1,16576:22723213,40910611:-358266 +) +(1,16576:22723213,40910611:358266,414482,115847 +k1,16576:22723213,40910611:3277 +h1,16576:23078202,40910611:0,411205,112570 +) +k1,16576:23646951,40910611:184708 +k1,16576:24517822,40910611:184709 +k1,16576:28436116,40910611:184708 +k1,16576:29568476,40910611:184709 +k1,16576:30772269,40910611:184708 +k1,16576:32583029,40910611:0 +) +(1,16577:6630773,41775691:25952256,513147,134348 +k1,16576:8994711,41775691:230741 +k1,16576:11025726,41775691:230741 +k1,16576:12275553,41775691:230742 +k1,16576:15825693,41775691:230741 +k1,16576:16715726,41775691:230741 +k1,16576:18919101,41775691:230742 +k1,16576:20168927,41775691:230741 +k1,16576:21789687,41775691:230741 +k1,16576:24767042,41775691:230741 +k1,16576:26565405,41775691:230742 +k1,16576:29741333,41775691:230741 +k1,16576:31073079,41775691:230741 +k1,16576:32583029,41775691:0 +) +(1,16577:6630773,42640771:25952256,505283,7863 +g1,16576:7849087,42640771 +g1,16576:9650016,42640771 +k1,16577:32583029,42640771:21367358 +g1,16577:32583029,42640771 +) +(1,16579:6630773,43505851:25952256,505283,134348 +h1,16578:6630773,43505851:983040,0,0 +k1,16578:10874288,43505851:181594 +k1,16578:12791275,43505851:181594 +k1,16578:13991955,43505851:181595 +k1,16578:16848729,43505851:181594 +k1,16578:19950607,43505851:181594 +k1,16578:21151286,43505851:181594 +k1,16578:22722899,43505851:181594 +k1,16578:23520531,43505851:181594 +k1,16578:24721211,43505851:181595 +k1,16578:27657283,43505851:181594 +k1,16578:29809545,43505851:181594 +k1,16579:32583029,43505851:0 +k1,16579:32583029,43505851:0 +) +v1,16581:6630773,44190706:0,393216,0 +(1,16589:6630773,45103392:25952256,1305902,196608 +g1,16589:6630773,45103392 +g1,16589:6630773,45103392 +g1,16589:6434165,45103392 +(1,16589:6434165,45103392:0,1305902,196608 +r1,16589:32779637,45103392:26345472,1502510,196608 +k1,16589:6434165,45103392:-26345472 +) +(1,16589:6434165,45103392:26345472,1305902,196608 +[1,16589:6630773,45103392:25952256,1109294,0 +(1,16583:6630773,44418537:25952256,424439,106246 +(1,16582:6630773,44418537:0,0,0 +g1,16582:6630773,44418537 +g1,16582:6630773,44418537 +g1,16582:6303093,44418537 +(1,16582:6303093,44418537:0,0,0 +) +g1,16582:6630773,44418537 +) +g1,16583:9286405,44418537 +g1,16583:10946175,44418537 +g1,16583:13601807,44418537 +g1,16583:15261577,44418537 +g1,16583:17585255,44418537 +g1,16583:18581117,44418537 +h1,16583:21568702,44418537:0,0,0 +k1,16583:32583029,44418537:11014327 +g1,16583:32583029,44418537 +) +(1,16584:6630773,45103392:25952256,424439,106246 +h1,16584:6630773,45103392:0,0,0 +g1,16584:13601805,45103392 +h1,16584:16921344,45103392:0,0,0 +k1,16584:32583029,45103392:15661685 +g1,16584:32583029,45103392 +) +] +) +g1,16589:32583029,45103392 +g1,16589:6630773,45103392 +g1,16589:6630773,45103392 +g1,16589:32583029,45103392 +g1,16589:32583029,45103392 +) +] +(1,16589:32583029,45706769:0,0,0 +g1,16589:32583029,45706769 +) +) +] +(1,16589:6630773,47279633:25952256,0,0 +h1,16589:6630773,47279633:25952256,0,0 +) +] +(1,16589:4262630,4025873:0,0,0 +[1,16589:-473656,4025873:0,0,0 +(1,16589:-473656,-710413:0,0,0 +(1,16589:-473656,-710413:0,0,0 +g1,16589:-473656,-710413 +) +g1,16589:-473656,-710413 ) ] ) ] !26119 -}268 -Input:2764:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2765:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2766:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2767:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}269 Input:2768:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2769:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2770:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -288946,1079 +289150,1079 @@ Input:2781:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2782:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2783:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2784:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2785:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2786:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2787:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2788:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1944 -{269 -[1,16679:4262630,47279633:28320399,43253760,0 -(1,16679:4262630,4025873:0,0,0 -[1,16679:-473656,4025873:0,0,0 -(1,16679:-473656,-710413:0,0,0 -(1,16679:-473656,-644877:0,0,0 -k1,16679:-473656,-644877:-65536 +{270 +[1,16677:4262630,47279633:28320399,43253760,0 +(1,16677:4262630,4025873:0,0,0 +[1,16677:-473656,4025873:0,0,0 +(1,16677:-473656,-710413:0,0,0 +(1,16677:-473656,-644877:0,0,0 +k1,16677:-473656,-644877:-65536 ) -(1,16679:-473656,4736287:0,0,0 -k1,16679:-473656,4736287:5209943 +(1,16677:-473656,4736287:0,0,0 +k1,16677:-473656,4736287:5209943 ) -g1,16679:-473656,-710413 +g1,16677:-473656,-710413 ) ] ) -[1,16679:6630773,47279633:25952256,43253760,0 -[1,16679:6630773,4812305:25952256,786432,0 -(1,16679:6630773,4812305:25952256,505283,134348 -(1,16679:6630773,4812305:25952256,505283,134348 -g1,16679:3078558,4812305 -[1,16679:3078558,4812305:0,0,0 -(1,16679:3078558,2439708:0,1703936,0 -k1,16679:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16679:2537886,2439708:1179648,16384,0 +[1,16677:6630773,47279633:25952256,43253760,0 +[1,16677:6630773,4812305:25952256,786432,0 +(1,16677:6630773,4812305:25952256,505283,134348 +(1,16677:6630773,4812305:25952256,505283,134348 +g1,16677:3078558,4812305 +[1,16677:3078558,4812305:0,0,0 +(1,16677:3078558,2439708:0,1703936,0 +k1,16677:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16677:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16679:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16677:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16679:3078558,4812305:0,0,0 -(1,16679:3078558,2439708:0,1703936,0 -g1,16679:29030814,2439708 -g1,16679:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16679:36151628,1915420:16384,1179648,0 +[1,16677:3078558,4812305:0,0,0 +(1,16677:3078558,2439708:0,1703936,0 +g1,16677:29030814,2439708 +g1,16677:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16677:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16679:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16677:37855564,2439708:1179648,16384,0 ) ) -k1,16679:3078556,2439708:-34777008 +k1,16677:3078556,2439708:-34777008 ) ] -[1,16679:3078558,4812305:0,0,0 -(1,16679:3078558,49800853:0,16384,2228224 -k1,16679:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16679:2537886,49800853:1179648,16384,0 +[1,16677:3078558,4812305:0,0,0 +(1,16677:3078558,49800853:0,16384,2228224 +k1,16677:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16677:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16679:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16677:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16679:3078558,4812305:0,0,0 -(1,16679:3078558,49800853:0,16384,2228224 -g1,16679:29030814,49800853 -g1,16679:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16679:36151628,51504789:16384,1179648,0 +[1,16677:3078558,4812305:0,0,0 +(1,16677:3078558,49800853:0,16384,2228224 +g1,16677:29030814,49800853 +g1,16677:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16677:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16679:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16677:37855564,49800853:1179648,16384,0 ) ) -k1,16679:3078556,49800853:-34777008 +k1,16677:3078556,49800853:-34777008 ) ] -g1,16679:6630773,4812305 -k1,16679:23347041,4812305:15520891 -g1,16679:23960458,4812305 -g1,16679:27572802,4812305 -g1,16679:29306229,4812305 +g1,16677:6630773,4812305 +k1,16677:23347041,4812305:15520891 +g1,16677:23960458,4812305 +g1,16677:27572802,4812305 +g1,16677:29306229,4812305 ) ) ] -[1,16679:6630773,45706769:25952256,40108032,0 -(1,16679:6630773,45706769:25952256,40108032,0 -(1,16679:6630773,45706769:0,0,0 -g1,16679:6630773,45706769 +[1,16677:6630773,45706769:25952256,40108032,0 +(1,16677:6630773,45706769:25952256,40108032,0 +(1,16677:6630773,45706769:0,0,0 +g1,16677:6630773,45706769 ) -[1,16679:6630773,45706769:25952256,40108032,0 -v1,16591:6630773,6254097:0,393216,0 -(1,16591:6630773,6561750:25952256,700869,196608 -g1,16591:6630773,6561750 -g1,16591:6630773,6561750 -g1,16591:6434165,6561750 -(1,16591:6434165,6561750:0,700869,196608 -r1,16679:32779637,6561750:26345472,897477,196608 -k1,16591:6434165,6561750:-26345472 +[1,16677:6630773,45706769:25952256,40108032,0 +v1,16589:6630773,6254097:0,393216,0 +(1,16589:6630773,6561750:25952256,700869,196608 +g1,16589:6630773,6561750 +g1,16589:6630773,6561750 +g1,16589:6434165,6561750 +(1,16589:6434165,6561750:0,700869,196608 +r1,16677:32779637,6561750:26345472,897477,196608 +k1,16589:6434165,6561750:-26345472 ) -(1,16591:6434165,6561750:26345472,700869,196608 -[1,16591:6630773,6561750:25952256,504261,0 -(1,16590:6630773,6481928:25952256,424439,79822 -(1,16588:6630773,6481928:0,0,0 -g1,16588:6630773,6481928 -g1,16588:6630773,6481928 -g1,16588:6303093,6481928 -(1,16588:6303093,6481928:0,0,0 -) -g1,16588:6630773,6481928 -) -g1,16590:7626635,6481928 -g1,16590:8954451,6481928 -h1,16590:10282267,6481928:0,0,0 -k1,16590:32583029,6481928:22300762 -g1,16590:32583029,6481928 -) -] -) -g1,16591:32583029,6561750 -g1,16591:6630773,6561750 -g1,16591:6630773,6561750 -g1,16591:32583029,6561750 -g1,16591:32583029,6561750 -) -h1,16591:6630773,6758358:0,0,0 -(1,16595:6630773,7623438:25952256,513147,134348 -h1,16594:6630773,7623438:983040,0,0 -k1,16594:10757924,7623438:209409 -k1,16594:11653494,7623438:209408 -k1,16594:14609517,7623438:209409 -(1,16594:14609517,7623438:0,435480,115847 -r1,16679:15671206,7623438:1061689,551327,115847 -k1,16594:14609517,7623438:-1061689 -) -(1,16594:14609517,7623438:1061689,435480,115847 -k1,16594:14609517,7623438:3277 -h1,16594:15667929,7623438:0,411205,112570 -) -k1,16594:15880614,7623438:209408 -k1,16594:17657644,7623438:209409 -k1,16594:20812239,7623438:209408 -k1,16594:24383645,7623438:209409 -k1,16594:25612138,7623438:209408 -(1,16594:25612138,7623438:0,414482,115847 -r1,16679:25970404,7623438:358266,530329,115847 -k1,16594:25612138,7623438:-358266 -) -(1,16594:25612138,7623438:358266,414482,115847 -k1,16594:25612138,7623438:3277 -h1,16594:25967127,7623438:0,411205,112570 -) -k1,16594:26179813,7623438:209409 -k1,16594:30122807,7623438:209408 -k1,16594:32583029,7623438:0 -) -(1,16595:6630773,8488518:25952256,513147,134348 -k1,16594:9883059,8488518:218624 -k1,16594:10890081,8488518:218624 -k1,16594:12374861,8488518:218624 -k1,16594:13612570,8488518:218624 -k1,16594:15327381,8488518:218624 -k1,16594:17414436,8488518:218624 -k1,16594:19551954,8488518:218624 -(1,16594:19551954,8488518:0,435480,115847 -r1,16679:20965355,8488518:1413401,551327,115847 -k1,16594:19551954,8488518:-1413401 -) -(1,16594:19551954,8488518:1413401,435480,115847 -k1,16594:19551954,8488518:3277 -h1,16594:20962078,8488518:0,411205,112570 -) -k1,16594:21183978,8488518:218623 -k1,16594:21934099,8488518:218624 -k1,16594:24871812,8488518:218624 -k1,16594:25851964,8488518:218624 -(1,16594:25851964,8488518:0,435480,115847 -r1,16679:26913653,8488518:1061689,551327,115847 -k1,16594:25851964,8488518:-1061689 -) -(1,16594:25851964,8488518:1061689,435480,115847 -k1,16594:25851964,8488518:3277 -h1,16594:26910376,8488518:0,411205,112570 -) -k1,16594:27132277,8488518:218624 -k1,16594:29691847,8488518:218624 -k1,16594:30929556,8488518:218624 -k1,16594:32583029,8488518:0 -) -(1,16595:6630773,9353598:25952256,505283,7863 -g1,16594:8492650,9353598 -g1,16594:9378041,9353598 -g1,16594:10861776,9353598 -k1,16595:32583029,9353598:19813500 -g1,16595:32583029,9353598 -) -v1,16597:6630773,10038453:0,393216,0 -(1,16605:6630773,11846888:25952256,2201651,196608 -g1,16605:6630773,11846888 -g1,16605:6630773,11846888 -g1,16605:6434165,11846888 -(1,16605:6434165,11846888:0,2201651,196608 -r1,16679:32779637,11846888:26345472,2398259,196608 -k1,16605:6434165,11846888:-26345472 -) -(1,16605:6434165,11846888:26345472,2201651,196608 -[1,16605:6630773,11846888:25952256,2005043,0 -(1,16599:6630773,10266284:25952256,424439,106246 -(1,16598:6630773,10266284:0,0,0 -g1,16598:6630773,10266284 -g1,16598:6630773,10266284 -g1,16598:6303093,10266284 -(1,16598:6303093,10266284:0,0,0 -) -g1,16598:6630773,10266284 -) -g1,16599:9286405,10266284 -g1,16599:10614221,10266284 -g1,16599:13269853,10266284 -g1,16599:14597669,10266284 -g1,16599:16921347,10266284 -g1,16599:17917209,10266284 -h1,16599:20904794,10266284:0,0,0 -k1,16599:32583029,10266284:11678235 -g1,16599:32583029,10266284 -) -(1,16600:6630773,10951139:25952256,424439,106246 -h1,16600:6630773,10951139:0,0,0 -g1,16600:13601805,10951139 -h1,16600:16921344,10951139:0,0,0 -k1,16600:32583029,10951139:15661685 -g1,16600:32583029,10951139 -) -(1,16604:6630773,11767066:25952256,424439,79822 -(1,16602:6630773,11767066:0,0,0 -g1,16602:6630773,11767066 -g1,16602:6630773,11767066 -g1,16602:6303093,11767066 -(1,16602:6303093,11767066:0,0,0 -) -g1,16602:6630773,11767066 -) -g1,16604:7626635,11767066 -g1,16604:8954451,11767066 -h1,16604:10282267,11767066:0,0,0 -k1,16604:32583029,11767066:22300762 -g1,16604:32583029,11767066 -) -] -) -g1,16605:32583029,11846888 -g1,16605:6630773,11846888 -g1,16605:6630773,11846888 -g1,16605:32583029,11846888 -g1,16605:32583029,11846888 -) -h1,16605:6630773,12043496:0,0,0 -(1,16609:6630773,12908576:25952256,513147,134348 -h1,16608:6630773,12908576:983040,0,0 -k1,16608:8691530,12908576:248687 -k1,16608:10032701,12908576:248686 -k1,16608:13028002,12908576:248687 -(1,16608:13028002,12908576:0,452978,115847 -r1,16679:13737980,12908576:709978,568825,115847 -k1,16608:13028002,12908576:-709978 -) -(1,16608:13028002,12908576:709978,452978,115847 -k1,16608:13028002,12908576:3277 -h1,16608:13734703,12908576:0,411205,112570 -) -k1,16608:13986667,12908576:248687 -k1,16608:15802975,12908576:248687 -k1,16608:16640174,12908576:248686 -k1,16608:17757213,12908576:248687 -k1,16608:19536166,12908576:248687 -k1,16608:20436281,12908576:248687 -k1,16608:21911146,12908576:248686 -k1,16608:23178918,12908576:248687 -k1,16608:24923792,12908576:248687 -k1,16608:26907872,12908576:248687 -(1,16608:27114966,12908576:0,414482,115847 -r1,16679:27473232,12908576:358266,530329,115847 -k1,16608:27114966,12908576:-358266 -) -(1,16608:27114966,12908576:358266,414482,115847 -k1,16608:27114966,12908576:3277 -h1,16608:27469955,12908576:0,411205,112570 -) -k1,16608:27929012,12908576:248686 -k1,16608:28863861,12908576:248687 -k1,16608:32583029,12908576:0 -) -(1,16609:6630773,13773656:25952256,513147,134348 -k1,16608:8021884,13773656:199666 -k1,16608:10649004,13773656:199666 -k1,16608:11306767,13773656:199666 -k1,16608:12192596,13773656:199667 -k1,16608:13162965,13773656:199666 -k1,16608:16434959,13773656:199666 -k1,16608:17286053,13773656:199666 -k1,16608:21096753,13773656:199666 -k1,16608:22057947,13773656:199666 -k1,16608:23995628,13773656:199666 -k1,16608:24811332,13773656:199666 -k1,16608:26030084,13773656:199667 -k1,16608:28925246,13773656:199666 -k1,16608:30554908,13773656:199666 -k1,16608:31563944,13773656:199666 -k1,16608:32583029,13773656:0 -) -(1,16609:6630773,14638736:25952256,505283,7863 -k1,16609:32583029,14638736:24889918 -g1,16609:32583029,14638736 -) -v1,16611:6630773,15323591:0,393216,0 -(1,16619:6630773,17132026:25952256,2201651,196608 -g1,16619:6630773,17132026 -g1,16619:6630773,17132026 -g1,16619:6434165,17132026 -(1,16619:6434165,17132026:0,2201651,196608 -r1,16679:32779637,17132026:26345472,2398259,196608 -k1,16619:6434165,17132026:-26345472 -) -(1,16619:6434165,17132026:26345472,2201651,196608 -[1,16619:6630773,17132026:25952256,2005043,0 -(1,16613:6630773,15551422:25952256,424439,106246 -(1,16612:6630773,15551422:0,0,0 -g1,16612:6630773,15551422 -g1,16612:6630773,15551422 -g1,16612:6303093,15551422 -(1,16612:6303093,15551422:0,0,0 -) -g1,16612:6630773,15551422 -) -g1,16613:9286405,15551422 -g1,16613:10282267,15551422 -g1,16613:12605945,15551422 -g1,16613:13269853,15551422 -g1,16613:14265715,15551422 -g1,16613:15261577,15551422 -g1,16613:17253301,15551422 -g1,16613:17917209,15551422 -g1,16613:18913071,15551422 -g1,16613:19908933,15551422 -h1,16613:22896518,15551422:0,0,0 -k1,16613:32583029,15551422:9686511 -g1,16613:32583029,15551422 -) -(1,16614:6630773,16236277:25952256,424439,106246 -h1,16614:6630773,16236277:0,0,0 -g1,16614:13601805,16236277 -h1,16614:16921344,16236277:0,0,0 -k1,16614:32583029,16236277:15661685 -g1,16614:32583029,16236277 -) -(1,16618:6630773,17052204:25952256,424439,79822 -(1,16616:6630773,17052204:0,0,0 -g1,16616:6630773,17052204 -g1,16616:6630773,17052204 -g1,16616:6303093,17052204 -(1,16616:6303093,17052204:0,0,0 -) -g1,16616:6630773,17052204 -) -g1,16618:7626635,17052204 -g1,16618:8954451,17052204 -h1,16618:10282267,17052204:0,0,0 -k1,16618:32583029,17052204:22300762 -g1,16618:32583029,17052204 -) -] -) -g1,16619:32583029,17132026 -g1,16619:6630773,17132026 -g1,16619:6630773,17132026 -g1,16619:32583029,17132026 -g1,16619:32583029,17132026 -) -h1,16619:6630773,17328634:0,0,0 -(1,16623:6630773,18193714:25952256,505283,134348 -h1,16622:6630773,18193714:983040,0,0 -k1,16622:8847100,18193714:279738 -k1,16622:10404790,18193714:279738 -k1,16622:11300566,18193714:279738 -k1,16622:12783544,18193714:279737 -k1,16622:14604033,18193714:279738 -k1,16622:17022211,18193714:279738 -k1,16622:18394434,18193714:279738 -k1,16622:19483542,18193714:279738 -k1,16622:23670536,18193714:279738 -k1,16622:25141719,18193714:279738 -k1,16622:26858661,18193714:279737 -k1,16622:28157484,18193714:279738 -k1,16622:31839851,18193714:279738 -k1,16622:32583029,18193714:0 -) -(1,16623:6630773,19058794:25952256,513147,126483 -g1,16622:9444233,19058794 -g1,16622:10294890,19058794 -g1,16622:11513204,19058794 -g1,16622:13018566,19058794 -g1,16622:16498527,19058794 -g1,16622:17357048,19058794 -g1,16622:18575362,19058794 -k1,16623:32583029,19058794:10929441 -g1,16623:32583029,19058794 -) -v1,16625:6630773,19743649:0,393216,0 -(1,16633:6630773,21552084:25952256,2201651,196608 -g1,16633:6630773,21552084 -g1,16633:6630773,21552084 -g1,16633:6434165,21552084 -(1,16633:6434165,21552084:0,2201651,196608 -r1,16679:32779637,21552084:26345472,2398259,196608 -k1,16633:6434165,21552084:-26345472 -) -(1,16633:6434165,21552084:26345472,2201651,196608 -[1,16633:6630773,21552084:25952256,2005043,0 -(1,16627:6630773,19971480:25952256,424439,106246 -(1,16626:6630773,19971480:0,0,0 -g1,16626:6630773,19971480 -g1,16626:6630773,19971480 -g1,16626:6303093,19971480 -(1,16626:6303093,19971480:0,0,0 -) -g1,16626:6630773,19971480 -) -g1,16627:9286405,19971480 -g1,16627:10282267,19971480 -g1,16627:12605945,19971480 -g1,16627:13601807,19971480 -g1,16627:15593531,19971480 -g1,16627:16589393,19971480 -h1,16627:19576978,19971480:0,0,0 -k1,16627:32583029,19971480:13006051 -g1,16627:32583029,19971480 -) -(1,16628:6630773,20656335:25952256,424439,106246 -h1,16628:6630773,20656335:0,0,0 -g1,16628:13601805,20656335 -h1,16628:16921344,20656335:0,0,0 -k1,16628:32583029,20656335:15661685 -g1,16628:32583029,20656335 -) -(1,16632:6630773,21472262:25952256,424439,79822 -(1,16630:6630773,21472262:0,0,0 -g1,16630:6630773,21472262 -g1,16630:6630773,21472262 -g1,16630:6303093,21472262 -(1,16630:6303093,21472262:0,0,0 -) -g1,16630:6630773,21472262 -) -g1,16632:7626635,21472262 -g1,16632:8954451,21472262 -h1,16632:10282267,21472262:0,0,0 -k1,16632:32583029,21472262:22300762 -g1,16632:32583029,21472262 -) -] -) -g1,16633:32583029,21552084 -g1,16633:6630773,21552084 -g1,16633:6630773,21552084 -g1,16633:32583029,21552084 -g1,16633:32583029,21552084 -) -h1,16633:6630773,21748692:0,0,0 -(1,16637:6630773,22613772:25952256,513147,126483 -h1,16636:6630773,22613772:983040,0,0 -k1,16636:9039657,22613772:229157 -k1,16636:9039657,22613772:0 -k1,16636:11943994,22613772:229157 -k1,16636:14919765,22613772:229157 -(1,16636:14919765,22613772:0,435480,115847 -r1,16679:16333166,22613772:1413401,551327,115847 -k1,16636:14919765,22613772:-1413401 -) -(1,16636:14919765,22613772:1413401,435480,115847 -k1,16636:14919765,22613772:3277 -h1,16636:16329889,22613772:0,411205,112570 -) -k1,16636:16562322,22613772:229156 -k1,16636:18359100,22613772:229157 -k1,16636:20750944,22613772:229157 -k1,16636:22992056,22613772:229157 -k1,16636:23966357,22613772:229157 -k1,16636:24846942,22613772:229157 -k1,16636:26168583,22613772:229156 -k1,16636:27416825,22613772:229157 -k1,16636:31379568,22613772:229157 -(1,16636:31379568,22613772:0,414482,115847 -r1,16679:31737834,22613772:358266,530329,115847 -k1,16636:31379568,22613772:-358266 -) -(1,16636:31379568,22613772:358266,414482,115847 -k1,16636:31379568,22613772:3277 -h1,16636:31734557,22613772:0,411205,112570 -) -k1,16636:31966991,22613772:229157 -k1,16636:32583029,22613772:0 -) -(1,16637:6630773,23478852:25952256,513147,126483 -g1,16636:10600288,23478852 -g1,16636:11608887,23478852 -g1,16636:12827201,23478852 -g1,16636:14059278,23478852 -g1,16636:14917799,23478852 -g1,16636:18193943,23478852 -g1,16636:19009210,23478852 -g1,16636:21874444,23478852 -g1,16636:22725101,23478852 -g1,16636:23540368,23478852 -g1,16636:26435093,23478852 -k1,16637:32583029,23478852:4665512 -g1,16637:32583029,23478852 -) -v1,16639:6630773,24163707:0,393216,0 -(1,16643:6630773,24471360:25952256,700869,196608 -g1,16643:6630773,24471360 -g1,16643:6630773,24471360 -g1,16643:6434165,24471360 -(1,16643:6434165,24471360:0,700869,196608 -r1,16679:32779637,24471360:26345472,897477,196608 -k1,16643:6434165,24471360:-26345472 -) -(1,16643:6434165,24471360:26345472,700869,196608 -[1,16643:6630773,24471360:25952256,504261,0 -(1,16641:6630773,24391538:25952256,424439,79822 -(1,16640:6630773,24391538:0,0,0 -g1,16640:6630773,24391538 -g1,16640:6630773,24391538 -g1,16640:6303093,24391538 -(1,16640:6303093,24391538:0,0,0 -) -g1,16640:6630773,24391538 -) -g1,16641:9286405,24391538 -g1,16641:10946175,24391538 -g1,16641:12937899,24391538 -g1,16641:13933761,24391538 -h1,16641:16921346,24391538:0,0,0 -k1,16641:32583029,24391538:15661683 -g1,16641:32583029,24391538 -) -] -) -g1,16643:32583029,24471360 -g1,16643:6630773,24471360 -g1,16643:6630773,24471360 -g1,16643:32583029,24471360 -g1,16643:32583029,24471360 -) -h1,16643:6630773,24667968:0,0,0 -(1,16647:6630773,25533048:25952256,513147,126483 -h1,16646:6630773,25533048:983040,0,0 -k1,16646:8374566,25533048:132918 -k1,16646:11312425,25533048:132918 -k1,16646:14191958,25533048:132919 -(1,16646:14191958,25533048:0,435480,115847 -r1,16679:15253647,25533048:1061689,551327,115847 -k1,16646:14191958,25533048:-1061689 -) -(1,16646:14191958,25533048:1061689,435480,115847 -k1,16646:14191958,25533048:3277 -h1,16646:15250370,25533048:0,411205,112570 -) -k1,16646:15386565,25533048:132918 -k1,16646:17012393,25533048:132918 -k1,16646:18211582,25533048:132918 -k1,16646:20870913,25533048:132918 -k1,16646:24947788,25533048:132918 -k1,16646:26456308,25533048:132919 -k1,16646:29284722,25533048:132918 -k1,16646:30517334,25533048:132918 -k1,16646:32583029,25533048:0 -) -(1,16647:6630773,26398128:25952256,513147,134348 -g1,16646:7639372,26398128 -g1,16646:8857686,26398128 -g1,16646:10240495,26398128 -g1,16646:12711202,26398128 -g1,16646:15000374,26398128 -g1,16646:15858895,26398128 -g1,16646:19135039,26398128 -g1,16646:20728219,26398128 -g1,16646:24635475,26398128 -k1,16647:32583029,26398128:5881859 -g1,16647:32583029,26398128 -) -v1,16649:6630773,27082983:0,393216,0 -(1,16657:6630773,28898024:25952256,2208257,196608 -g1,16657:6630773,28898024 -g1,16657:6630773,28898024 -g1,16657:6434165,28898024 -(1,16657:6434165,28898024:0,2208257,196608 -r1,16679:32779637,28898024:26345472,2404865,196608 -k1,16657:6434165,28898024:-26345472 -) -(1,16657:6434165,28898024:26345472,2208257,196608 -[1,16657:6630773,28898024:25952256,2011649,0 -(1,16651:6630773,27317420:25952256,431045,86428 -(1,16650:6630773,27317420:0,0,0 -g1,16650:6630773,27317420 -g1,16650:6630773,27317420 -g1,16650:6303093,27317420 -(1,16650:6303093,27317420:0,0,0 -) -g1,16650:6630773,27317420 -) -g1,16651:9286405,27317420 -g1,16651:10614221,27317420 -g1,16651:12937899,27317420 -g1,16651:13601807,27317420 -g1,16651:14597669,27317420 -g1,16651:15593531,27317420 -g1,16651:16257439,27317420 -g1,16651:17253301,27317420 -g1,16651:18249163,27317420 -h1,16651:21236748,27317420:0,0,0 -k1,16651:32583029,27317420:11346281 -g1,16651:32583029,27317420 -) -(1,16652:6630773,28002275:25952256,424439,106246 -h1,16652:6630773,28002275:0,0,0 -g1,16652:13601805,28002275 -h1,16652:16921344,28002275:0,0,0 -k1,16652:32583029,28002275:15661685 -g1,16652:32583029,28002275 -) -(1,16656:6630773,28818202:25952256,424439,79822 -(1,16654:6630773,28818202:0,0,0 -g1,16654:6630773,28818202 -g1,16654:6630773,28818202 -g1,16654:6303093,28818202 -(1,16654:6303093,28818202:0,0,0 -) -g1,16654:6630773,28818202 -) -g1,16656:7626635,28818202 -g1,16656:8954451,28818202 -h1,16656:10282267,28818202:0,0,0 -k1,16656:32583029,28818202:22300762 -g1,16656:32583029,28818202 -) -] -) -g1,16657:32583029,28898024 -g1,16657:6630773,28898024 -g1,16657:6630773,28898024 -g1,16657:32583029,28898024 -g1,16657:32583029,28898024 -) -h1,16657:6630773,29094632:0,0,0 -(1,16661:6630773,29959712:25952256,513147,134348 -h1,16660:6630773,29959712:983040,0,0 -k1,16660:8487710,29959712:246062 -k1,16660:12344806,29959712:246062 -k1,16660:13005664,29959712:246015 -k1,16660:15335771,29959712:246062 -k1,16660:16529484,29959712:246062 -k1,16660:20545832,29959712:246062 -k1,16660:21323391,29959712:246062 -k1,16660:24717147,29959712:246062 -k1,16660:26661247,29959712:246062 -k1,16660:28642702,29959712:246062 -k1,16660:29907849,29959712:246062 -k1,16660:32583029,29959712:0 -) -(1,16661:6630773,30824792:25952256,513147,134348 -k1,16660:9575033,30824792:197646 -k1,16660:11340299,30824792:197645 -k1,16660:13874302,30824792:197646 -k1,16660:15465899,30824792:197646 -k1,16660:16682629,30824792:197645 -k1,16660:18255876,30824792:197646 -k1,16660:20460234,30824792:197646 -k1,16660:21942385,30824792:197645 -k1,16660:24669721,30824792:197646 -k1,16660:25526659,30824792:197646 -k1,16660:26743389,30824792:197645 -k1,16660:28981826,30824792:197646 -k1,16660:32583029,30824792:0 -) -(1,16661:6630773,31689872:25952256,513147,134348 -k1,16660:7474075,31689872:184010 -k1,16660:8677170,31689872:184010 -(1,16660:8677170,31689872:0,435480,115847 -r1,16679:10090571,31689872:1413401,551327,115847 -k1,16660:8677170,31689872:-1413401 -) -(1,16660:8677170,31689872:1413401,435480,115847 -k1,16660:8677170,31689872:3277 -h1,16660:10087294,31689872:0,411205,112570 -) -k1,16660:10274580,31689872:184009 -k1,16660:13378874,31689872:184010 -k1,16660:14431236,31689872:184010 -k1,16660:16145512,31689872:184010 -k1,16660:16980950,31689872:184010 -k1,16660:20063617,31689872:184010 -k1,16660:21639611,31689872:184009 -k1,16660:25593907,31689872:184010 -k1,16660:29139914,31689872:184010 -k1,16660:31025894,31689872:184010 -k1,16661:32583029,31689872:0 -) -(1,16661:6630773,32554952:25952256,505283,134348 -k1,16660:8410126,32554952:153405 -k1,16660:9325058,32554952:153404 -k1,16660:12494430,32554952:153405 -k1,16660:14286890,32554952:153405 -k1,16660:15056332,32554952:153404 -k1,16660:19237580,32554952:153405 -k1,16660:20018820,32554952:153405 -k1,16660:21191310,32554952:153405 -k1,16660:24336433,32554952:153404 -k1,16660:26345162,32554952:153405 -k1,16660:27366919,32554952:153405 -k1,16660:29949087,32554952:153404 -k1,16660:30458352,32554952:153405 -k1,16660:32583029,32554952:0 -) -(1,16661:6630773,33420032:25952256,513147,126483 -k1,16660:10316673,33420032:245915 -k1,16660:11287417,33420032:245916 -k1,16660:12817838,33420032:245915 -k1,16660:13521851,33420032:245916 -k1,16660:15536583,33420032:245915 -k1,16660:16530265,33420032:245916 -k1,16660:18577109,33420032:245915 -k1,16660:21983825,33420032:245915 -k1,16660:23497207,33420032:245916 -k1,16660:24098982,33420032:245915 -k1,16660:27040394,33420032:245916 -k1,16660:28559674,33420032:245915 -k1,16660:30002277,33420032:245916 -(1,16660:30002277,33420032:0,435480,115847 -r1,16679:31415678,33420032:1413401,551327,115847 -k1,16660:30002277,33420032:-1413401 -) -(1,16660:30002277,33420032:1413401,435480,115847 -k1,16660:30002277,33420032:3277 -h1,16660:31412401,33420032:0,411205,112570 -) -k1,16660:31661593,33420032:245915 -k1,16661:32583029,33420032:0 -) -(1,16661:6630773,34285112:25952256,513147,126483 -k1,16660:8831651,34285112:269532 -k1,16660:11957896,34285112:269531 -k1,16660:13513244,34285112:269532 -k1,16660:15432972,34285112:269531 -k1,16660:18388825,34285112:269532 -k1,16660:22602313,34285112:269531 -k1,16660:24338541,34285112:269532 -k1,16660:26002023,34285112:269531 -k1,16660:28942802,34285112:269532 -k1,16660:30635120,34285112:269531 -k1,16660:31563944,34285112:269532 -k1,16660:32583029,34285112:0 -) -(1,16661:6630773,35150192:25952256,505283,126483 -k1,16661:32583029,35150192:22166242 -g1,16661:32583029,35150192 -) -v1,16663:6630773,35835047:0,393216,0 -(1,16671:6630773,37643482:25952256,2201651,196608 -g1,16671:6630773,37643482 -g1,16671:6630773,37643482 -g1,16671:6434165,37643482 -(1,16671:6434165,37643482:0,2201651,196608 -r1,16679:32779637,37643482:26345472,2398259,196608 -k1,16671:6434165,37643482:-26345472 -) -(1,16671:6434165,37643482:26345472,2201651,196608 -[1,16671:6630773,37643482:25952256,2005043,0 -(1,16665:6630773,36062878:25952256,424439,106246 -(1,16664:6630773,36062878:0,0,0 -g1,16664:6630773,36062878 -g1,16664:6630773,36062878 -g1,16664:6303093,36062878 -(1,16664:6303093,36062878:0,0,0 -) -g1,16664:6630773,36062878 -) -g1,16665:9286405,36062878 -g1,16665:10946175,36062878 -g1,16665:12605945,36062878 -g1,16665:13269853,36062878 -g1,16665:15593531,36062878 -g1,16665:16257439,36062878 -h1,16665:17253301,36062878:0,0,0 -k1,16665:32583029,36062878:15329728 -g1,16665:32583029,36062878 -) -(1,16670:6630773,36878805:25952256,424439,79822 -(1,16667:6630773,36878805:0,0,0 -g1,16667:6630773,36878805 -g1,16667:6630773,36878805 -g1,16667:6303093,36878805 -(1,16667:6303093,36878805:0,0,0 -) -g1,16667:6630773,36878805 -) -g1,16670:7626635,36878805 -g1,16670:7958589,36878805 -g1,16670:9286405,36878805 -g1,16670:9618359,36878805 -g1,16670:9950313,36878805 -g1,16670:12937898,36878805 -g1,16670:13269852,36878805 -g1,16670:13601806,36878805 -g1,16670:16589391,36878805 -g1,16670:16921345,36878805 -g1,16670:20240884,36878805 -g1,16670:20572838,36878805 -g1,16670:23892377,36878805 -g1,16670:24224331,36878805 -g1,16670:27543870,36878805 -g1,16670:27875824,36878805 -h1,16670:30863409,36878805:0,0,0 -k1,16670:32583029,36878805:1719620 -g1,16670:32583029,36878805 -) -(1,16670:6630773,37563660:25952256,424439,79822 -h1,16670:6630773,37563660:0,0,0 -g1,16670:7626635,37563660 -g1,16670:7958589,37563660 -g1,16670:9286405,37563660 -g1,16670:9618359,37563660 -g1,16670:12937898,37563660 -g1,16670:13269852,37563660 -g1,16670:16589391,37563660 -g1,16670:16921345,37563660 -g1,16670:20240884,37563660 -h1,16670:23560423,37563660:0,0,0 -k1,16670:32583029,37563660:9022606 -g1,16670:32583029,37563660 -) -] -) -g1,16671:32583029,37643482 -g1,16671:6630773,37643482 -g1,16671:6630773,37643482 -g1,16671:32583029,37643482 -g1,16671:32583029,37643482 -) -h1,16671:6630773,37840090:0,0,0 -(1,16674:6630773,39956908:25952256,555811,147783 -(1,16674:6630773,39956908:2450326,534184,12975 -g1,16674:6630773,39956908 -g1,16674:9081099,39956908 -) -g1,16674:13301946,39956908 -k1,16674:32583029,39956908:17323850 -g1,16674:32583029,39956908 -) -(1,16677:6630773,41215204:25952256,513147,126483 -k1,16676:12039916,41215204:223279 -k1,16676:13282281,41215204:223280 -k1,16676:18892619,41215204:223279 -k1,16676:19775190,41215204:223279 -k1,16676:23075385,41215204:223280 -(1,16676:23075385,41215204:0,452978,115847 -r1,16679:23785363,41215204:709978,568825,115847 -k1,16676:23075385,41215204:-709978 -) -(1,16676:23075385,41215204:709978,452978,115847 -k1,16676:23075385,41215204:3277 -h1,16676:23782086,41215204:0,411205,112570 -) -k1,16676:24182312,41215204:223279 -(1,16676:24182312,41215204:0,435480,115847 -r1,16679:25244001,41215204:1061689,551327,115847 -k1,16676:24182312,41215204:-1061689 -) -(1,16676:24182312,41215204:1061689,435480,115847 -k1,16676:24182312,41215204:3277 -h1,16676:25240724,41215204:0,411205,112570 -) -k1,16676:25467280,41215204:223279 -k1,16676:26882004,41215204:223279 -(1,16676:26882004,41215204:0,435480,115847 -r1,16679:28295405,41215204:1413401,551327,115847 -k1,16676:26882004,41215204:-1413401 -) -(1,16676:26882004,41215204:1413401,435480,115847 -k1,16676:26882004,41215204:3277 -h1,16676:28292128,41215204:0,411205,112570 -) -k1,16676:28518685,41215204:223280 -k1,16676:29733524,41215204:223279 -k1,16676:32583029,41215204:0 -) -(1,16677:6630773,42080284:25952256,513147,134348 -k1,16676:8258989,42080284:260479 -(1,16676:8258989,42080284:0,452978,115847 -r1,16679:8968967,42080284:709978,568825,115847 -k1,16676:8258989,42080284:-709978 -) -(1,16676:8258989,42080284:709978,452978,115847 -k1,16676:8258989,42080284:3277 -h1,16676:8965690,42080284:0,411205,112570 -) -k1,16676:9229446,42080284:260479 -k1,16676:12328945,42080284:260479 -k1,16676:13240852,42080284:260479 -k1,16676:14976546,42080284:260479 -k1,16676:16256110,42080284:260479 -k1,16676:17851556,42080284:260478 -k1,16676:22361389,42080284:260479 -k1,16676:25375035,42080284:260479 -k1,16676:26397042,42080284:260479 -(1,16676:26397042,42080284:0,435480,115847 -r1,16679:27810443,42080284:1413401,551327,115847 -k1,16676:26397042,42080284:-1413401 -) -(1,16676:26397042,42080284:1413401,435480,115847 -k1,16676:26397042,42080284:3277 -h1,16676:27807166,42080284:0,411205,112570 -) -k1,16676:28070922,42080284:260479 -k1,16676:29522846,42080284:260479 -(1,16676:29522846,42080284:0,435480,115847 -r1,16679:30584535,42080284:1061689,551327,115847 -k1,16676:29522846,42080284:-1061689 -) -(1,16676:29522846,42080284:1061689,435480,115847 -k1,16676:29522846,42080284:3277 -h1,16676:30581258,42080284:0,411205,112570 -) -k1,16676:30845014,42080284:260479 -k1,16676:32583029,42080284:0 -) -(1,16677:6630773,42945364:25952256,513147,134348 -k1,16676:9379571,42945364:189617 -k1,16676:10387078,42945364:189618 -k1,16676:15963754,42945364:189617 -k1,16676:18335721,42945364:189618 -k1,16676:22601022,42945364:189617 -k1,16676:24127574,42945364:189618 -k1,16676:25679685,42945364:189617 -k1,16676:28028714,42945364:189618 -k1,16676:31056040,42945364:189617 -k1,16677:32583029,42945364:0 -) -(1,16677:6630773,43810444:25952256,513147,134348 -g1,16676:8343884,43810444 -(1,16676:8343884,43810444:0,452978,115847 -r1,16679:9053862,43810444:709978,568825,115847 -k1,16676:8343884,43810444:-709978 -) -(1,16676:8343884,43810444:709978,452978,115847 -k1,16676:8343884,43810444:3277 -h1,16676:9050585,43810444:0,411205,112570 -) -g1,16676:9253091,43810444 -g1,16676:11190335,43810444 -g1,16676:12711425,43810444 -g1,16676:13577810,43810444 -g1,16676:14191882,43810444 -g1,16676:14922608,43810444 -g1,16676:16834293,43810444 -g1,16676:17684950,43810444 -g1,16676:20111748,43810444 -g1,16676:21330062,43810444 -k1,16677:32583029,43810444:9058167 -g1,16677:32583029,43810444 -) -(1,16679:6630773,44675524:25952256,513147,134348 -h1,16678:6630773,44675524:983040,0,0 -k1,16678:9533909,44675524:183392 -k1,16678:11039163,44675524:183393 -k1,16678:11881847,44675524:183392 -k1,16678:13084324,44675524:183392 -k1,16678:13682544,44675524:183377 -k1,16678:16881903,44675524:183392 -(1,16678:16881903,44675524:0,452978,115847 -r1,16679:17591881,44675524:709978,568825,115847 -k1,16678:16881903,44675524:-709978 -) -(1,16678:16881903,44675524:709978,452978,115847 -k1,16678:16881903,44675524:3277 -h1,16678:17588604,44675524:0,411205,112570 -) -k1,16678:17775274,44675524:183393 -k1,16678:19091128,44675524:183392 -k1,16678:21502089,44675524:183392 -k1,16678:24469451,44675524:183393 -k1,16678:25844288,44675524:183392 -k1,16678:27629380,44675524:183392 -k1,16678:29525229,44675524:183393 -k1,16678:30994437,44675524:183392 -k1,16679:32583029,44675524:0 -) -(1,16679:6630773,45540604:25952256,505283,134348 -k1,16678:8663343,45540604:142511 -k1,16678:12515191,45540604:142510 -k1,16678:14347220,45540604:142511 -k1,16678:17400185,45540604:142511 -k1,16678:19311513,45540604:142511 -k1,16678:20201789,45540604:142510 -k1,16678:23869482,45540604:142511 -k1,16678:24694878,45540604:142511 -k1,16678:28329803,45540604:142511 -k1,16678:29233841,45540604:142510 -k1,16678:30884991,45540604:142511 -k1,16679:32583029,45540604:0 -) -] -(1,16679:32583029,45706769:0,0,0 -g1,16679:32583029,45706769 -) -) -] -(1,16679:6630773,47279633:25952256,0,0 -h1,16679:6630773,47279633:25952256,0,0 -) -] -(1,16679:4262630,4025873:0,0,0 -[1,16679:-473656,4025873:0,0,0 -(1,16679:-473656,-710413:0,0,0 -(1,16679:-473656,-710413:0,0,0 -g1,16679:-473656,-710413 -) -g1,16679:-473656,-710413 +(1,16589:6434165,6561750:26345472,700869,196608 +[1,16589:6630773,6561750:25952256,504261,0 +(1,16588:6630773,6481928:25952256,424439,79822 +(1,16586:6630773,6481928:0,0,0 +g1,16586:6630773,6481928 +g1,16586:6630773,6481928 +g1,16586:6303093,6481928 +(1,16586:6303093,6481928:0,0,0 +) +g1,16586:6630773,6481928 +) +g1,16588:7626635,6481928 +g1,16588:8954451,6481928 +h1,16588:10282267,6481928:0,0,0 +k1,16588:32583029,6481928:22300762 +g1,16588:32583029,6481928 +) +] +) +g1,16589:32583029,6561750 +g1,16589:6630773,6561750 +g1,16589:6630773,6561750 +g1,16589:32583029,6561750 +g1,16589:32583029,6561750 +) +h1,16589:6630773,6758358:0,0,0 +(1,16593:6630773,7623438:25952256,513147,134348 +h1,16592:6630773,7623438:983040,0,0 +k1,16592:10757924,7623438:209409 +k1,16592:11653494,7623438:209408 +k1,16592:14609517,7623438:209409 +(1,16592:14609517,7623438:0,435480,115847 +r1,16677:15671206,7623438:1061689,551327,115847 +k1,16592:14609517,7623438:-1061689 +) +(1,16592:14609517,7623438:1061689,435480,115847 +k1,16592:14609517,7623438:3277 +h1,16592:15667929,7623438:0,411205,112570 +) +k1,16592:15880614,7623438:209408 +k1,16592:17657644,7623438:209409 +k1,16592:20812239,7623438:209408 +k1,16592:24383645,7623438:209409 +k1,16592:25612138,7623438:209408 +(1,16592:25612138,7623438:0,414482,115847 +r1,16677:25970404,7623438:358266,530329,115847 +k1,16592:25612138,7623438:-358266 +) +(1,16592:25612138,7623438:358266,414482,115847 +k1,16592:25612138,7623438:3277 +h1,16592:25967127,7623438:0,411205,112570 +) +k1,16592:26179813,7623438:209409 +k1,16592:30122807,7623438:209408 +k1,16592:32583029,7623438:0 +) +(1,16593:6630773,8488518:25952256,513147,134348 +k1,16592:9883059,8488518:218624 +k1,16592:10890081,8488518:218624 +k1,16592:12374861,8488518:218624 +k1,16592:13612570,8488518:218624 +k1,16592:15327381,8488518:218624 +k1,16592:17414436,8488518:218624 +k1,16592:19551954,8488518:218624 +(1,16592:19551954,8488518:0,435480,115847 +r1,16677:20965355,8488518:1413401,551327,115847 +k1,16592:19551954,8488518:-1413401 +) +(1,16592:19551954,8488518:1413401,435480,115847 +k1,16592:19551954,8488518:3277 +h1,16592:20962078,8488518:0,411205,112570 +) +k1,16592:21183978,8488518:218623 +k1,16592:21934099,8488518:218624 +k1,16592:24871812,8488518:218624 +k1,16592:25851964,8488518:218624 +(1,16592:25851964,8488518:0,435480,115847 +r1,16677:26913653,8488518:1061689,551327,115847 +k1,16592:25851964,8488518:-1061689 +) +(1,16592:25851964,8488518:1061689,435480,115847 +k1,16592:25851964,8488518:3277 +h1,16592:26910376,8488518:0,411205,112570 +) +k1,16592:27132277,8488518:218624 +k1,16592:29691847,8488518:218624 +k1,16592:30929556,8488518:218624 +k1,16592:32583029,8488518:0 +) +(1,16593:6630773,9353598:25952256,505283,7863 +g1,16592:8492650,9353598 +g1,16592:9378041,9353598 +g1,16592:10861776,9353598 +k1,16593:32583029,9353598:19813500 +g1,16593:32583029,9353598 +) +v1,16595:6630773,10038453:0,393216,0 +(1,16603:6630773,11846888:25952256,2201651,196608 +g1,16603:6630773,11846888 +g1,16603:6630773,11846888 +g1,16603:6434165,11846888 +(1,16603:6434165,11846888:0,2201651,196608 +r1,16677:32779637,11846888:26345472,2398259,196608 +k1,16603:6434165,11846888:-26345472 +) +(1,16603:6434165,11846888:26345472,2201651,196608 +[1,16603:6630773,11846888:25952256,2005043,0 +(1,16597:6630773,10266284:25952256,424439,106246 +(1,16596:6630773,10266284:0,0,0 +g1,16596:6630773,10266284 +g1,16596:6630773,10266284 +g1,16596:6303093,10266284 +(1,16596:6303093,10266284:0,0,0 +) +g1,16596:6630773,10266284 +) +g1,16597:9286405,10266284 +g1,16597:10614221,10266284 +g1,16597:13269853,10266284 +g1,16597:14597669,10266284 +g1,16597:16921347,10266284 +g1,16597:17917209,10266284 +h1,16597:20904794,10266284:0,0,0 +k1,16597:32583029,10266284:11678235 +g1,16597:32583029,10266284 +) +(1,16598:6630773,10951139:25952256,424439,106246 +h1,16598:6630773,10951139:0,0,0 +g1,16598:13601805,10951139 +h1,16598:16921344,10951139:0,0,0 +k1,16598:32583029,10951139:15661685 +g1,16598:32583029,10951139 +) +(1,16602:6630773,11767066:25952256,424439,79822 +(1,16600:6630773,11767066:0,0,0 +g1,16600:6630773,11767066 +g1,16600:6630773,11767066 +g1,16600:6303093,11767066 +(1,16600:6303093,11767066:0,0,0 +) +g1,16600:6630773,11767066 +) +g1,16602:7626635,11767066 +g1,16602:8954451,11767066 +h1,16602:10282267,11767066:0,0,0 +k1,16602:32583029,11767066:22300762 +g1,16602:32583029,11767066 +) +] +) +g1,16603:32583029,11846888 +g1,16603:6630773,11846888 +g1,16603:6630773,11846888 +g1,16603:32583029,11846888 +g1,16603:32583029,11846888 +) +h1,16603:6630773,12043496:0,0,0 +(1,16607:6630773,12908576:25952256,513147,134348 +h1,16606:6630773,12908576:983040,0,0 +k1,16606:8691530,12908576:248687 +k1,16606:10032701,12908576:248686 +k1,16606:13028002,12908576:248687 +(1,16606:13028002,12908576:0,452978,115847 +r1,16677:13737980,12908576:709978,568825,115847 +k1,16606:13028002,12908576:-709978 +) +(1,16606:13028002,12908576:709978,452978,115847 +k1,16606:13028002,12908576:3277 +h1,16606:13734703,12908576:0,411205,112570 +) +k1,16606:13986667,12908576:248687 +k1,16606:15802975,12908576:248687 +k1,16606:16640174,12908576:248686 +k1,16606:17757213,12908576:248687 +k1,16606:19536166,12908576:248687 +k1,16606:20436281,12908576:248687 +k1,16606:21911146,12908576:248686 +k1,16606:23178918,12908576:248687 +k1,16606:24923792,12908576:248687 +k1,16606:26907872,12908576:248687 +(1,16606:27114966,12908576:0,414482,115847 +r1,16677:27473232,12908576:358266,530329,115847 +k1,16606:27114966,12908576:-358266 +) +(1,16606:27114966,12908576:358266,414482,115847 +k1,16606:27114966,12908576:3277 +h1,16606:27469955,12908576:0,411205,112570 +) +k1,16606:27929012,12908576:248686 +k1,16606:28863861,12908576:248687 +k1,16606:32583029,12908576:0 +) +(1,16607:6630773,13773656:25952256,513147,134348 +k1,16606:8021884,13773656:199666 +k1,16606:10649004,13773656:199666 +k1,16606:11306767,13773656:199666 +k1,16606:12192596,13773656:199667 +k1,16606:13162965,13773656:199666 +k1,16606:16434959,13773656:199666 +k1,16606:17286053,13773656:199666 +k1,16606:21096753,13773656:199666 +k1,16606:22057947,13773656:199666 +k1,16606:23995628,13773656:199666 +k1,16606:24811332,13773656:199666 +k1,16606:26030084,13773656:199667 +k1,16606:28925246,13773656:199666 +k1,16606:30554908,13773656:199666 +k1,16606:31563944,13773656:199666 +k1,16606:32583029,13773656:0 +) +(1,16607:6630773,14638736:25952256,505283,7863 +k1,16607:32583029,14638736:24889918 +g1,16607:32583029,14638736 +) +v1,16609:6630773,15323591:0,393216,0 +(1,16617:6630773,17132026:25952256,2201651,196608 +g1,16617:6630773,17132026 +g1,16617:6630773,17132026 +g1,16617:6434165,17132026 +(1,16617:6434165,17132026:0,2201651,196608 +r1,16677:32779637,17132026:26345472,2398259,196608 +k1,16617:6434165,17132026:-26345472 +) +(1,16617:6434165,17132026:26345472,2201651,196608 +[1,16617:6630773,17132026:25952256,2005043,0 +(1,16611:6630773,15551422:25952256,424439,106246 +(1,16610:6630773,15551422:0,0,0 +g1,16610:6630773,15551422 +g1,16610:6630773,15551422 +g1,16610:6303093,15551422 +(1,16610:6303093,15551422:0,0,0 +) +g1,16610:6630773,15551422 +) +g1,16611:9286405,15551422 +g1,16611:10282267,15551422 +g1,16611:12605945,15551422 +g1,16611:13269853,15551422 +g1,16611:14265715,15551422 +g1,16611:15261577,15551422 +g1,16611:17253301,15551422 +g1,16611:17917209,15551422 +g1,16611:18913071,15551422 +g1,16611:19908933,15551422 +h1,16611:22896518,15551422:0,0,0 +k1,16611:32583029,15551422:9686511 +g1,16611:32583029,15551422 +) +(1,16612:6630773,16236277:25952256,424439,106246 +h1,16612:6630773,16236277:0,0,0 +g1,16612:13601805,16236277 +h1,16612:16921344,16236277:0,0,0 +k1,16612:32583029,16236277:15661685 +g1,16612:32583029,16236277 +) +(1,16616:6630773,17052204:25952256,424439,79822 +(1,16614:6630773,17052204:0,0,0 +g1,16614:6630773,17052204 +g1,16614:6630773,17052204 +g1,16614:6303093,17052204 +(1,16614:6303093,17052204:0,0,0 +) +g1,16614:6630773,17052204 +) +g1,16616:7626635,17052204 +g1,16616:8954451,17052204 +h1,16616:10282267,17052204:0,0,0 +k1,16616:32583029,17052204:22300762 +g1,16616:32583029,17052204 +) +] +) +g1,16617:32583029,17132026 +g1,16617:6630773,17132026 +g1,16617:6630773,17132026 +g1,16617:32583029,17132026 +g1,16617:32583029,17132026 +) +h1,16617:6630773,17328634:0,0,0 +(1,16621:6630773,18193714:25952256,505283,134348 +h1,16620:6630773,18193714:983040,0,0 +k1,16620:8847100,18193714:279738 +k1,16620:10404790,18193714:279738 +k1,16620:11300566,18193714:279738 +k1,16620:12783544,18193714:279737 +k1,16620:14604033,18193714:279738 +k1,16620:17022211,18193714:279738 +k1,16620:18394434,18193714:279738 +k1,16620:19483542,18193714:279738 +k1,16620:23670536,18193714:279738 +k1,16620:25141719,18193714:279738 +k1,16620:26858661,18193714:279737 +k1,16620:28157484,18193714:279738 +k1,16620:31839851,18193714:279738 +k1,16620:32583029,18193714:0 +) +(1,16621:6630773,19058794:25952256,513147,126483 +g1,16620:9444233,19058794 +g1,16620:10294890,19058794 +g1,16620:11513204,19058794 +g1,16620:13018566,19058794 +g1,16620:16498527,19058794 +g1,16620:17357048,19058794 +g1,16620:18575362,19058794 +k1,16621:32583029,19058794:10929441 +g1,16621:32583029,19058794 +) +v1,16623:6630773,19743649:0,393216,0 +(1,16631:6630773,21552084:25952256,2201651,196608 +g1,16631:6630773,21552084 +g1,16631:6630773,21552084 +g1,16631:6434165,21552084 +(1,16631:6434165,21552084:0,2201651,196608 +r1,16677:32779637,21552084:26345472,2398259,196608 +k1,16631:6434165,21552084:-26345472 +) +(1,16631:6434165,21552084:26345472,2201651,196608 +[1,16631:6630773,21552084:25952256,2005043,0 +(1,16625:6630773,19971480:25952256,424439,106246 +(1,16624:6630773,19971480:0,0,0 +g1,16624:6630773,19971480 +g1,16624:6630773,19971480 +g1,16624:6303093,19971480 +(1,16624:6303093,19971480:0,0,0 +) +g1,16624:6630773,19971480 +) +g1,16625:9286405,19971480 +g1,16625:10282267,19971480 +g1,16625:12605945,19971480 +g1,16625:13601807,19971480 +g1,16625:15593531,19971480 +g1,16625:16589393,19971480 +h1,16625:19576978,19971480:0,0,0 +k1,16625:32583029,19971480:13006051 +g1,16625:32583029,19971480 +) +(1,16626:6630773,20656335:25952256,424439,106246 +h1,16626:6630773,20656335:0,0,0 +g1,16626:13601805,20656335 +h1,16626:16921344,20656335:0,0,0 +k1,16626:32583029,20656335:15661685 +g1,16626:32583029,20656335 +) +(1,16630:6630773,21472262:25952256,424439,79822 +(1,16628:6630773,21472262:0,0,0 +g1,16628:6630773,21472262 +g1,16628:6630773,21472262 +g1,16628:6303093,21472262 +(1,16628:6303093,21472262:0,0,0 +) +g1,16628:6630773,21472262 +) +g1,16630:7626635,21472262 +g1,16630:8954451,21472262 +h1,16630:10282267,21472262:0,0,0 +k1,16630:32583029,21472262:22300762 +g1,16630:32583029,21472262 +) +] +) +g1,16631:32583029,21552084 +g1,16631:6630773,21552084 +g1,16631:6630773,21552084 +g1,16631:32583029,21552084 +g1,16631:32583029,21552084 +) +h1,16631:6630773,21748692:0,0,0 +(1,16635:6630773,22613772:25952256,513147,126483 +h1,16634:6630773,22613772:983040,0,0 +k1,16634:9039657,22613772:229157 +k1,16634:9039657,22613772:0 +k1,16634:11943994,22613772:229157 +k1,16634:14919765,22613772:229157 +(1,16634:14919765,22613772:0,435480,115847 +r1,16677:16333166,22613772:1413401,551327,115847 +k1,16634:14919765,22613772:-1413401 +) +(1,16634:14919765,22613772:1413401,435480,115847 +k1,16634:14919765,22613772:3277 +h1,16634:16329889,22613772:0,411205,112570 +) +k1,16634:16562322,22613772:229156 +k1,16634:18359100,22613772:229157 +k1,16634:20750944,22613772:229157 +k1,16634:22992056,22613772:229157 +k1,16634:23966357,22613772:229157 +k1,16634:24846942,22613772:229157 +k1,16634:26168583,22613772:229156 +k1,16634:27416825,22613772:229157 +k1,16634:31379568,22613772:229157 +(1,16634:31379568,22613772:0,414482,115847 +r1,16677:31737834,22613772:358266,530329,115847 +k1,16634:31379568,22613772:-358266 +) +(1,16634:31379568,22613772:358266,414482,115847 +k1,16634:31379568,22613772:3277 +h1,16634:31734557,22613772:0,411205,112570 +) +k1,16634:31966991,22613772:229157 +k1,16634:32583029,22613772:0 +) +(1,16635:6630773,23478852:25952256,513147,126483 +g1,16634:10600288,23478852 +g1,16634:11608887,23478852 +g1,16634:12827201,23478852 +g1,16634:14059278,23478852 +g1,16634:14917799,23478852 +g1,16634:18193943,23478852 +g1,16634:19009210,23478852 +g1,16634:21874444,23478852 +g1,16634:22725101,23478852 +g1,16634:23540368,23478852 +g1,16634:26435093,23478852 +k1,16635:32583029,23478852:4665512 +g1,16635:32583029,23478852 +) +v1,16637:6630773,24163707:0,393216,0 +(1,16641:6630773,24471360:25952256,700869,196608 +g1,16641:6630773,24471360 +g1,16641:6630773,24471360 +g1,16641:6434165,24471360 +(1,16641:6434165,24471360:0,700869,196608 +r1,16677:32779637,24471360:26345472,897477,196608 +k1,16641:6434165,24471360:-26345472 +) +(1,16641:6434165,24471360:26345472,700869,196608 +[1,16641:6630773,24471360:25952256,504261,0 +(1,16639:6630773,24391538:25952256,424439,79822 +(1,16638:6630773,24391538:0,0,0 +g1,16638:6630773,24391538 +g1,16638:6630773,24391538 +g1,16638:6303093,24391538 +(1,16638:6303093,24391538:0,0,0 +) +g1,16638:6630773,24391538 +) +g1,16639:9286405,24391538 +g1,16639:10946175,24391538 +g1,16639:12937899,24391538 +g1,16639:13933761,24391538 +h1,16639:16921346,24391538:0,0,0 +k1,16639:32583029,24391538:15661683 +g1,16639:32583029,24391538 +) +] +) +g1,16641:32583029,24471360 +g1,16641:6630773,24471360 +g1,16641:6630773,24471360 +g1,16641:32583029,24471360 +g1,16641:32583029,24471360 +) +h1,16641:6630773,24667968:0,0,0 +(1,16645:6630773,25533048:25952256,513147,126483 +h1,16644:6630773,25533048:983040,0,0 +k1,16644:8374566,25533048:132918 +k1,16644:11312425,25533048:132918 +k1,16644:14191958,25533048:132919 +(1,16644:14191958,25533048:0,435480,115847 +r1,16677:15253647,25533048:1061689,551327,115847 +k1,16644:14191958,25533048:-1061689 +) +(1,16644:14191958,25533048:1061689,435480,115847 +k1,16644:14191958,25533048:3277 +h1,16644:15250370,25533048:0,411205,112570 +) +k1,16644:15386565,25533048:132918 +k1,16644:17012393,25533048:132918 +k1,16644:18211582,25533048:132918 +k1,16644:20870913,25533048:132918 +k1,16644:24947788,25533048:132918 +k1,16644:26456308,25533048:132919 +k1,16644:29284722,25533048:132918 +k1,16644:30517334,25533048:132918 +k1,16644:32583029,25533048:0 +) +(1,16645:6630773,26398128:25952256,513147,134348 +g1,16644:7639372,26398128 +g1,16644:8857686,26398128 +g1,16644:10240495,26398128 +g1,16644:12711202,26398128 +g1,16644:15000374,26398128 +g1,16644:15858895,26398128 +g1,16644:19135039,26398128 +g1,16644:20728219,26398128 +g1,16644:24635475,26398128 +k1,16645:32583029,26398128:5881859 +g1,16645:32583029,26398128 +) +v1,16647:6630773,27082983:0,393216,0 +(1,16655:6630773,28898024:25952256,2208257,196608 +g1,16655:6630773,28898024 +g1,16655:6630773,28898024 +g1,16655:6434165,28898024 +(1,16655:6434165,28898024:0,2208257,196608 +r1,16677:32779637,28898024:26345472,2404865,196608 +k1,16655:6434165,28898024:-26345472 +) +(1,16655:6434165,28898024:26345472,2208257,196608 +[1,16655:6630773,28898024:25952256,2011649,0 +(1,16649:6630773,27317420:25952256,431045,86428 +(1,16648:6630773,27317420:0,0,0 +g1,16648:6630773,27317420 +g1,16648:6630773,27317420 +g1,16648:6303093,27317420 +(1,16648:6303093,27317420:0,0,0 +) +g1,16648:6630773,27317420 +) +g1,16649:9286405,27317420 +g1,16649:10614221,27317420 +g1,16649:12937899,27317420 +g1,16649:13601807,27317420 +g1,16649:14597669,27317420 +g1,16649:15593531,27317420 +g1,16649:16257439,27317420 +g1,16649:17253301,27317420 +g1,16649:18249163,27317420 +h1,16649:21236748,27317420:0,0,0 +k1,16649:32583029,27317420:11346281 +g1,16649:32583029,27317420 +) +(1,16650:6630773,28002275:25952256,424439,106246 +h1,16650:6630773,28002275:0,0,0 +g1,16650:13601805,28002275 +h1,16650:16921344,28002275:0,0,0 +k1,16650:32583029,28002275:15661685 +g1,16650:32583029,28002275 +) +(1,16654:6630773,28818202:25952256,424439,79822 +(1,16652:6630773,28818202:0,0,0 +g1,16652:6630773,28818202 +g1,16652:6630773,28818202 +g1,16652:6303093,28818202 +(1,16652:6303093,28818202:0,0,0 +) +g1,16652:6630773,28818202 +) +g1,16654:7626635,28818202 +g1,16654:8954451,28818202 +h1,16654:10282267,28818202:0,0,0 +k1,16654:32583029,28818202:22300762 +g1,16654:32583029,28818202 +) +] +) +g1,16655:32583029,28898024 +g1,16655:6630773,28898024 +g1,16655:6630773,28898024 +g1,16655:32583029,28898024 +g1,16655:32583029,28898024 +) +h1,16655:6630773,29094632:0,0,0 +(1,16659:6630773,29959712:25952256,513147,134348 +h1,16658:6630773,29959712:983040,0,0 +k1,16658:8487710,29959712:246062 +k1,16658:12344806,29959712:246062 +k1,16658:13005664,29959712:246015 +k1,16658:15335771,29959712:246062 +k1,16658:16529484,29959712:246062 +k1,16658:20545832,29959712:246062 +k1,16658:21323391,29959712:246062 +k1,16658:24717147,29959712:246062 +k1,16658:26661247,29959712:246062 +k1,16658:28642702,29959712:246062 +k1,16658:29907849,29959712:246062 +k1,16658:32583029,29959712:0 +) +(1,16659:6630773,30824792:25952256,513147,134348 +k1,16658:9575033,30824792:197646 +k1,16658:11340299,30824792:197645 +k1,16658:13874302,30824792:197646 +k1,16658:15465899,30824792:197646 +k1,16658:16682629,30824792:197645 +k1,16658:18255876,30824792:197646 +k1,16658:20460234,30824792:197646 +k1,16658:21942385,30824792:197645 +k1,16658:24669721,30824792:197646 +k1,16658:25526659,30824792:197646 +k1,16658:26743389,30824792:197645 +k1,16658:28981826,30824792:197646 +k1,16658:32583029,30824792:0 +) +(1,16659:6630773,31689872:25952256,513147,134348 +k1,16658:7474075,31689872:184010 +k1,16658:8677170,31689872:184010 +(1,16658:8677170,31689872:0,435480,115847 +r1,16677:10090571,31689872:1413401,551327,115847 +k1,16658:8677170,31689872:-1413401 +) +(1,16658:8677170,31689872:1413401,435480,115847 +k1,16658:8677170,31689872:3277 +h1,16658:10087294,31689872:0,411205,112570 +) +k1,16658:10274580,31689872:184009 +k1,16658:13378874,31689872:184010 +k1,16658:14431236,31689872:184010 +k1,16658:16145512,31689872:184010 +k1,16658:16980950,31689872:184010 +k1,16658:20063617,31689872:184010 +k1,16658:21639611,31689872:184009 +k1,16658:25593907,31689872:184010 +k1,16658:29139914,31689872:184010 +k1,16658:31025894,31689872:184010 +k1,16659:32583029,31689872:0 +) +(1,16659:6630773,32554952:25952256,505283,134348 +k1,16658:8410126,32554952:153405 +k1,16658:9325058,32554952:153404 +k1,16658:12494430,32554952:153405 +k1,16658:14286890,32554952:153405 +k1,16658:15056332,32554952:153404 +k1,16658:19237580,32554952:153405 +k1,16658:20018820,32554952:153405 +k1,16658:21191310,32554952:153405 +k1,16658:24336433,32554952:153404 +k1,16658:26345162,32554952:153405 +k1,16658:27366919,32554952:153405 +k1,16658:29949087,32554952:153404 +k1,16658:30458352,32554952:153405 +k1,16658:32583029,32554952:0 +) +(1,16659:6630773,33420032:25952256,513147,126483 +k1,16658:10316673,33420032:245915 +k1,16658:11287417,33420032:245916 +k1,16658:12817838,33420032:245915 +k1,16658:13521851,33420032:245916 +k1,16658:15536583,33420032:245915 +k1,16658:16530265,33420032:245916 +k1,16658:18577109,33420032:245915 +k1,16658:21983825,33420032:245915 +k1,16658:23497207,33420032:245916 +k1,16658:24098982,33420032:245915 +k1,16658:27040394,33420032:245916 +k1,16658:28559674,33420032:245915 +k1,16658:30002277,33420032:245916 +(1,16658:30002277,33420032:0,435480,115847 +r1,16677:31415678,33420032:1413401,551327,115847 +k1,16658:30002277,33420032:-1413401 +) +(1,16658:30002277,33420032:1413401,435480,115847 +k1,16658:30002277,33420032:3277 +h1,16658:31412401,33420032:0,411205,112570 +) +k1,16658:31661593,33420032:245915 +k1,16659:32583029,33420032:0 +) +(1,16659:6630773,34285112:25952256,513147,126483 +k1,16658:8831651,34285112:269532 +k1,16658:11957896,34285112:269531 +k1,16658:13513244,34285112:269532 +k1,16658:15432972,34285112:269531 +k1,16658:18388825,34285112:269532 +k1,16658:22602313,34285112:269531 +k1,16658:24338541,34285112:269532 +k1,16658:26002023,34285112:269531 +k1,16658:28942802,34285112:269532 +k1,16658:30635120,34285112:269531 +k1,16658:31563944,34285112:269532 +k1,16658:32583029,34285112:0 +) +(1,16659:6630773,35150192:25952256,505283,126483 +k1,16659:32583029,35150192:22166242 +g1,16659:32583029,35150192 +) +v1,16661:6630773,35835047:0,393216,0 +(1,16669:6630773,37643482:25952256,2201651,196608 +g1,16669:6630773,37643482 +g1,16669:6630773,37643482 +g1,16669:6434165,37643482 +(1,16669:6434165,37643482:0,2201651,196608 +r1,16677:32779637,37643482:26345472,2398259,196608 +k1,16669:6434165,37643482:-26345472 +) +(1,16669:6434165,37643482:26345472,2201651,196608 +[1,16669:6630773,37643482:25952256,2005043,0 +(1,16663:6630773,36062878:25952256,424439,106246 +(1,16662:6630773,36062878:0,0,0 +g1,16662:6630773,36062878 +g1,16662:6630773,36062878 +g1,16662:6303093,36062878 +(1,16662:6303093,36062878:0,0,0 +) +g1,16662:6630773,36062878 +) +g1,16663:9286405,36062878 +g1,16663:10946175,36062878 +g1,16663:12605945,36062878 +g1,16663:13269853,36062878 +g1,16663:15593531,36062878 +g1,16663:16257439,36062878 +h1,16663:17253301,36062878:0,0,0 +k1,16663:32583029,36062878:15329728 +g1,16663:32583029,36062878 +) +(1,16668:6630773,36878805:25952256,424439,79822 +(1,16665:6630773,36878805:0,0,0 +g1,16665:6630773,36878805 +g1,16665:6630773,36878805 +g1,16665:6303093,36878805 +(1,16665:6303093,36878805:0,0,0 +) +g1,16665:6630773,36878805 +) +g1,16668:7626635,36878805 +g1,16668:7958589,36878805 +g1,16668:9286405,36878805 +g1,16668:9618359,36878805 +g1,16668:9950313,36878805 +g1,16668:12937898,36878805 +g1,16668:13269852,36878805 +g1,16668:13601806,36878805 +g1,16668:16589391,36878805 +g1,16668:16921345,36878805 +g1,16668:20240884,36878805 +g1,16668:20572838,36878805 +g1,16668:23892377,36878805 +g1,16668:24224331,36878805 +g1,16668:27543870,36878805 +g1,16668:27875824,36878805 +h1,16668:30863409,36878805:0,0,0 +k1,16668:32583029,36878805:1719620 +g1,16668:32583029,36878805 +) +(1,16668:6630773,37563660:25952256,424439,79822 +h1,16668:6630773,37563660:0,0,0 +g1,16668:7626635,37563660 +g1,16668:7958589,37563660 +g1,16668:9286405,37563660 +g1,16668:9618359,37563660 +g1,16668:12937898,37563660 +g1,16668:13269852,37563660 +g1,16668:16589391,37563660 +g1,16668:16921345,37563660 +g1,16668:20240884,37563660 +h1,16668:23560423,37563660:0,0,0 +k1,16668:32583029,37563660:9022606 +g1,16668:32583029,37563660 +) +] +) +g1,16669:32583029,37643482 +g1,16669:6630773,37643482 +g1,16669:6630773,37643482 +g1,16669:32583029,37643482 +g1,16669:32583029,37643482 +) +h1,16669:6630773,37840090:0,0,0 +(1,16672:6630773,39956908:25952256,555811,147783 +(1,16672:6630773,39956908:2450326,534184,12975 +g1,16672:6630773,39956908 +g1,16672:9081099,39956908 +) +g1,16672:13301946,39956908 +k1,16672:32583029,39956908:17323850 +g1,16672:32583029,39956908 +) +(1,16675:6630773,41215204:25952256,513147,126483 +k1,16674:12039916,41215204:223279 +k1,16674:13282281,41215204:223280 +k1,16674:18892619,41215204:223279 +k1,16674:19775190,41215204:223279 +k1,16674:23075385,41215204:223280 +(1,16674:23075385,41215204:0,452978,115847 +r1,16677:23785363,41215204:709978,568825,115847 +k1,16674:23075385,41215204:-709978 +) +(1,16674:23075385,41215204:709978,452978,115847 +k1,16674:23075385,41215204:3277 +h1,16674:23782086,41215204:0,411205,112570 +) +k1,16674:24182312,41215204:223279 +(1,16674:24182312,41215204:0,435480,115847 +r1,16677:25244001,41215204:1061689,551327,115847 +k1,16674:24182312,41215204:-1061689 +) +(1,16674:24182312,41215204:1061689,435480,115847 +k1,16674:24182312,41215204:3277 +h1,16674:25240724,41215204:0,411205,112570 +) +k1,16674:25467280,41215204:223279 +k1,16674:26882004,41215204:223279 +(1,16674:26882004,41215204:0,435480,115847 +r1,16677:28295405,41215204:1413401,551327,115847 +k1,16674:26882004,41215204:-1413401 +) +(1,16674:26882004,41215204:1413401,435480,115847 +k1,16674:26882004,41215204:3277 +h1,16674:28292128,41215204:0,411205,112570 +) +k1,16674:28518685,41215204:223280 +k1,16674:29733524,41215204:223279 +k1,16674:32583029,41215204:0 +) +(1,16675:6630773,42080284:25952256,513147,134348 +k1,16674:8258989,42080284:260479 +(1,16674:8258989,42080284:0,452978,115847 +r1,16677:8968967,42080284:709978,568825,115847 +k1,16674:8258989,42080284:-709978 +) +(1,16674:8258989,42080284:709978,452978,115847 +k1,16674:8258989,42080284:3277 +h1,16674:8965690,42080284:0,411205,112570 +) +k1,16674:9229446,42080284:260479 +k1,16674:12328945,42080284:260479 +k1,16674:13240852,42080284:260479 +k1,16674:14976546,42080284:260479 +k1,16674:16256110,42080284:260479 +k1,16674:17851556,42080284:260478 +k1,16674:22361389,42080284:260479 +k1,16674:25375035,42080284:260479 +k1,16674:26397042,42080284:260479 +(1,16674:26397042,42080284:0,435480,115847 +r1,16677:27810443,42080284:1413401,551327,115847 +k1,16674:26397042,42080284:-1413401 +) +(1,16674:26397042,42080284:1413401,435480,115847 +k1,16674:26397042,42080284:3277 +h1,16674:27807166,42080284:0,411205,112570 +) +k1,16674:28070922,42080284:260479 +k1,16674:29522846,42080284:260479 +(1,16674:29522846,42080284:0,435480,115847 +r1,16677:30584535,42080284:1061689,551327,115847 +k1,16674:29522846,42080284:-1061689 +) +(1,16674:29522846,42080284:1061689,435480,115847 +k1,16674:29522846,42080284:3277 +h1,16674:30581258,42080284:0,411205,112570 +) +k1,16674:30845014,42080284:260479 +k1,16674:32583029,42080284:0 +) +(1,16675:6630773,42945364:25952256,513147,134348 +k1,16674:9379571,42945364:189617 +k1,16674:10387078,42945364:189618 +k1,16674:15963754,42945364:189617 +k1,16674:18335721,42945364:189618 +k1,16674:22601022,42945364:189617 +k1,16674:24127574,42945364:189618 +k1,16674:25679685,42945364:189617 +k1,16674:28028714,42945364:189618 +k1,16674:31056040,42945364:189617 +k1,16675:32583029,42945364:0 +) +(1,16675:6630773,43810444:25952256,513147,134348 +g1,16674:8343884,43810444 +(1,16674:8343884,43810444:0,452978,115847 +r1,16677:9053862,43810444:709978,568825,115847 +k1,16674:8343884,43810444:-709978 +) +(1,16674:8343884,43810444:709978,452978,115847 +k1,16674:8343884,43810444:3277 +h1,16674:9050585,43810444:0,411205,112570 +) +g1,16674:9253091,43810444 +g1,16674:11190335,43810444 +g1,16674:12711425,43810444 +g1,16674:13577810,43810444 +g1,16674:14191882,43810444 +g1,16674:14922608,43810444 +g1,16674:16834293,43810444 +g1,16674:17684950,43810444 +g1,16674:20111748,43810444 +g1,16674:21330062,43810444 +k1,16675:32583029,43810444:9058167 +g1,16675:32583029,43810444 +) +(1,16677:6630773,44675524:25952256,513147,134348 +h1,16676:6630773,44675524:983040,0,0 +k1,16676:9533909,44675524:183392 +k1,16676:11039163,44675524:183393 +k1,16676:11881847,44675524:183392 +k1,16676:13084324,44675524:183392 +k1,16676:13682544,44675524:183377 +k1,16676:16881903,44675524:183392 +(1,16676:16881903,44675524:0,452978,115847 +r1,16677:17591881,44675524:709978,568825,115847 +k1,16676:16881903,44675524:-709978 +) +(1,16676:16881903,44675524:709978,452978,115847 +k1,16676:16881903,44675524:3277 +h1,16676:17588604,44675524:0,411205,112570 +) +k1,16676:17775274,44675524:183393 +k1,16676:19091128,44675524:183392 +k1,16676:21502089,44675524:183392 +k1,16676:24469451,44675524:183393 +k1,16676:25844288,44675524:183392 +k1,16676:27629380,44675524:183392 +k1,16676:29525229,44675524:183393 +k1,16676:30994437,44675524:183392 +k1,16677:32583029,44675524:0 +) +(1,16677:6630773,45540604:25952256,505283,134348 +k1,16676:8663343,45540604:142511 +k1,16676:12515191,45540604:142510 +k1,16676:14347220,45540604:142511 +k1,16676:17400185,45540604:142511 +k1,16676:19311513,45540604:142511 +k1,16676:20201789,45540604:142510 +k1,16676:23869482,45540604:142511 +k1,16676:24694878,45540604:142511 +k1,16676:28329803,45540604:142511 +k1,16676:29233841,45540604:142510 +k1,16676:30884991,45540604:142511 +k1,16677:32583029,45540604:0 +) +] +(1,16677:32583029,45706769:0,0,0 +g1,16677:32583029,45706769 +) +) +] +(1,16677:6630773,47279633:25952256,0,0 +h1,16677:6630773,47279633:25952256,0,0 +) +] +(1,16677:4262630,4025873:0,0,0 +[1,16677:-473656,4025873:0,0,0 +(1,16677:-473656,-710413:0,0,0 +(1,16677:-473656,-710413:0,0,0 +g1,16677:-473656,-710413 +) +g1,16677:-473656,-710413 ) ] ) ] !30396 -}269 -Input:2785:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2786:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2787:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2788:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}270 Input:2789:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2790:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2791:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -290027,3184 +290231,3184 @@ Input:2793:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2794:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2795:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2796:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2797:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2799:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{270 -[1,16714:4262630,47279633:28320399,43253760,0 -(1,16714:4262630,4025873:0,0,0 -[1,16714:-473656,4025873:0,0,0 -(1,16714:-473656,-710413:0,0,0 -(1,16714:-473656,-644877:0,0,0 -k1,16714:-473656,-644877:-65536 +{271 +[1,16712:4262630,47279633:28320399,43253760,0 +(1,16712:4262630,4025873:0,0,0 +[1,16712:-473656,4025873:0,0,0 +(1,16712:-473656,-710413:0,0,0 +(1,16712:-473656,-644877:0,0,0 +k1,16712:-473656,-644877:-65536 ) -(1,16714:-473656,4736287:0,0,0 -k1,16714:-473656,4736287:5209943 +(1,16712:-473656,4736287:0,0,0 +k1,16712:-473656,4736287:5209943 ) -g1,16714:-473656,-710413 +g1,16712:-473656,-710413 ) ] ) -[1,16714:6630773,47279633:25952256,43253760,0 -[1,16714:6630773,4812305:25952256,786432,0 -(1,16714:6630773,4812305:25952256,485622,126483 -(1,16714:6630773,4812305:25952256,485622,126483 -g1,16714:3078558,4812305 -[1,16714:3078558,4812305:0,0,0 -(1,16714:3078558,2439708:0,1703936,0 -k1,16714:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16714:2537886,2439708:1179648,16384,0 +[1,16712:6630773,47279633:25952256,43253760,0 +[1,16712:6630773,4812305:25952256,786432,0 +(1,16712:6630773,4812305:25952256,485622,126483 +(1,16712:6630773,4812305:25952256,485622,126483 +g1,16712:3078558,4812305 +[1,16712:3078558,4812305:0,0,0 +(1,16712:3078558,2439708:0,1703936,0 +k1,16712:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16712:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16714:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16712:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16714:3078558,4812305:0,0,0 -(1,16714:3078558,2439708:0,1703936,0 -g1,16714:29030814,2439708 -g1,16714:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16714:36151628,1915420:16384,1179648,0 +[1,16712:3078558,4812305:0,0,0 +(1,16712:3078558,2439708:0,1703936,0 +g1,16712:29030814,2439708 +g1,16712:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16712:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16714:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16712:37855564,2439708:1179648,16384,0 ) ) -k1,16714:3078556,2439708:-34777008 +k1,16712:3078556,2439708:-34777008 ) ] -[1,16714:3078558,4812305:0,0,0 -(1,16714:3078558,49800853:0,16384,2228224 -k1,16714:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16714:2537886,49800853:1179648,16384,0 +[1,16712:3078558,4812305:0,0,0 +(1,16712:3078558,49800853:0,16384,2228224 +k1,16712:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16712:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16714:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16712:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16714:3078558,4812305:0,0,0 -(1,16714:3078558,49800853:0,16384,2228224 -g1,16714:29030814,49800853 -g1,16714:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16714:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16714:37855564,49800853:1179648,16384,0 -) -) -k1,16714:3078556,49800853:-34777008 -) -] -g1,16714:6630773,4812305 -g1,16714:6630773,4812305 -g1,16714:8364200,4812305 -g1,16714:10158575,4812305 -k1,16714:31387651,4812305:21229076 -) -) -] -[1,16714:6630773,45706769:25952256,40108032,0 -(1,16714:6630773,45706769:25952256,40108032,0 -(1,16714:6630773,45706769:0,0,0 -g1,16714:6630773,45706769 -) -[1,16714:6630773,45706769:25952256,40108032,0 -(1,16679:6630773,6254097:25952256,513147,126483 -k1,16678:9177898,6254097:178654 -k1,16678:10398573,6254097:178653 -k1,16678:11780468,6254097:178654 -k1,16678:14264022,6254097:178653 -k1,16678:14900773,6254097:178654 -k1,16678:15610923,6254097:178653 -k1,16678:19055236,6254097:178654 -k1,16678:19885317,6254097:178653 -k1,16678:21156456,6254097:178654 -k1,16678:22354195,6254097:178654 -(1,16678:22354195,6254097:0,452978,115847 -r1,16714:23064173,6254097:709978,568825,115847 -k1,16678:22354195,6254097:-709978 -) -(1,16678:22354195,6254097:709978,452978,115847 -k1,16678:22354195,6254097:3277 -h1,16678:23060896,6254097:0,411205,112570 -) -k1,16678:23242826,6254097:178653 -k1,16678:24037518,6254097:178654 -k1,16678:26377548,6254097:178653 -k1,16678:27239087,6254097:178654 -k1,16678:28913927,6254097:178653 -k1,16678:31931601,6254097:178654 -k1,16678:32583029,6254097:0 -) -(1,16679:6630773,7119177:25952256,505283,126483 -k1,16678:7609829,7119177:231290 -k1,16678:10163715,7119177:231290 -k1,16678:12437762,7119177:231290 -k1,16678:16877774,7119177:231290 -k1,16678:18503015,7119177:231290 -k1,16678:19149116,7119177:231258 -k1,16678:22044445,7119177:231290 -k1,16678:24309317,7119177:231290 -k1,16678:25983054,7119177:231290 -k1,16678:27757062,7119177:231290 -k1,16678:28519849,7119177:231290 -k1,16678:31223157,7119177:231290 -k1,16679:32583029,7119177:0 -) -(1,16679:6630773,7984257:25952256,505283,126483 -g1,16678:8722682,7984257 -g1,16678:9537949,7984257 -g1,16678:10756263,7984257 -g1,16678:12537531,7984257 -g1,16678:12949752,7984257 -g1,16678:14624196,7984257 -g1,16678:16336651,7984257 -g1,16678:17454695,7984257 -g1,16678:19043943,7984257 -g1,16678:21989786,7984257 -(1,16678:21989786,7984257:0,452978,115847 -r1,16714:22699764,7984257:709978,568825,115847 -k1,16678:21989786,7984257:-709978 -) -(1,16678:21989786,7984257:709978,452978,115847 -k1,16678:21989786,7984257:3277 -h1,16678:22696487,7984257:0,411205,112570 -) -k1,16679:32583029,7984257:9830837 -g1,16679:32583029,7984257 -) -(1,16681:6630773,8849337:25952256,513147,134348 -h1,16680:6630773,8849337:983040,0,0 -k1,16680:9439562,8849337:150649 -k1,16680:10694492,8849337:150648 -k1,16680:11592907,8849337:150649 -k1,16680:13256781,8849337:150648 -k1,16680:14801381,8849337:150649 -k1,16680:16083836,8849337:150648 -k1,16680:16649280,8849337:150601 -k1,16680:19669094,8849337:150648 -k1,16680:20891912,8849337:150649 -k1,16680:22372941,8849337:150648 -k1,16680:24825214,8849337:150649 -k1,16680:26080144,8849337:150648 -k1,16680:26978559,8849337:150649 -k1,16680:28637846,8849337:150648 -k1,16680:29880980,8849337:150649 -k1,16680:32583029,8849337:0 -) -(1,16681:6630773,9714417:25952256,513147,134348 -k1,16680:7650967,9714417:210824 -k1,16680:8880876,9714417:210824 -k1,16680:10831026,9714417:210824 -k1,16680:11701143,9714417:210825 -k1,16680:14040576,9714417:210824 -k1,16680:18036104,9714417:210824 -k1,16680:19627772,9714417:210824 -k1,16680:20370093,9714417:210824 -k1,16680:23688634,9714417:210824 -k1,16680:24918544,9714417:210825 -k1,16680:26496449,9714417:210824 -k1,16680:28405311,9714417:210824 -k1,16680:31043589,9714417:210824 -k1,16681:32583029,9714417:0 -) -(1,16681:6630773,10579497:25952256,513147,126483 -k1,16680:8842894,10579497:242764 -k1,16680:12091794,10579497:242764 -k1,16680:12985986,10579497:242764 -k1,16680:14247835,10579497:242764 -k1,16680:15796732,10579497:242764 -k1,16680:19320228,10579497:242764 -k1,16680:20222284,10579497:242764 -k1,16680:21484132,10579497:242763 -k1,16680:24422392,10579497:242764 -k1,16680:25474526,10579497:242764 -k1,16680:26736375,10579497:242764 -k1,16680:28162719,10579497:242764 -k1,16680:30661888,10579497:242764 -k1,16680:31563944,10579497:242764 -k1,16680:32583029,10579497:0 -) -(1,16681:6630773,11444577:25952256,513147,134348 -k1,16680:9903859,11444577:247289 -k1,16680:11342593,11444577:247289 -k1,16680:14374507,11444577:247289 -k1,16680:17003374,11444577:247289 -k1,16680:17866701,11444577:247289 -k1,16680:20092523,11444577:247290 -k1,16680:22486116,11444577:247289 -k1,16680:23924850,11444577:247289 -k1,16680:24527999,11444577:247289 -k1,16680:25908406,11444577:247289 -k1,16680:27857665,11444577:247289 -k1,16680:31015408,11444577:247289 -k1,16680:32583029,11444577:0 -) -(1,16681:6630773,12309657:25952256,513147,126483 -g1,16680:7849087,12309657 -g1,16680:11256303,12309657 -g1,16680:12143005,12309657 -g1,16680:13545475,12309657 -k1,16681:32583029,12309657:17454860 -g1,16681:32583029,12309657 -) -(1,16683:6630773,13174737:25952256,513147,134348 -h1,16682:6630773,13174737:983040,0,0 -k1,16682:10242986,13174737:286261 -k1,16682:10885108,13174737:286262 -k1,16682:13016207,13174737:286261 -k1,16682:13961760,13174737:286261 -k1,16682:17764684,13174737:286262 -k1,16682:19242390,13174737:286261 -k1,16682:21562233,13174737:286261 -k1,16682:25906483,13174737:286261 -k1,16682:28365919,13174737:286262 -k1,16682:29268218,13174737:286261 -k1,16682:32583029,13174737:0 -) -(1,16683:6630773,14039817:25952256,505283,134348 -k1,16682:9644882,14039817:190163 -k1,16682:11881080,14039817:190164 -k1,16682:15393263,14039817:190163 -k1,16682:17926339,14039817:190164 -k1,16682:21521097,14039817:190163 -k1,16682:23431581,14039817:190164 -k1,16682:24153241,14039817:190163 -k1,16682:25409676,14039817:190164 -k1,16682:26286001,14039817:190163 -k1,16682:28044442,14039817:190164 -k1,16682:28920767,14039817:190163 -k1,16682:30314172,14039817:190164 -k1,16682:32583029,14039817:0 -) -(1,16683:6630773,14904897:25952256,513147,134348 -k1,16682:9457248,14904897:204380 -k1,16682:12323045,14904897:204380 -k1,16682:14340151,14904897:204380 -k1,16682:15938482,14904897:204380 -k1,16682:17299572,14904897:204380 -k1,16682:20488463,14904897:204381 -k1,16682:22430858,14904897:204380 -k1,16682:23654323,14904897:204380 -k1,16682:26708208,14904897:204380 -k1,16682:27571880,14904897:204380 -k1,16682:29206256,14904897:204380 -k1,16682:30062064,14904897:204380 -(1,16682:30062064,14904897:0,452978,115847 -r1,16714:32530601,14904897:2468537,568825,115847 -k1,16682:30062064,14904897:-2468537 -) -(1,16682:30062064,14904897:2468537,452978,115847 -k1,16682:30062064,14904897:3277 -h1,16682:32527324,14904897:0,411205,112570 -) -k1,16682:32583029,14904897:0 -) -(1,16683:6630773,15769977:25952256,505283,126483 -k1,16682:8191202,15769977:201212 -k1,16682:8923912,15769977:201213 -k1,16682:11928754,15769977:201212 -k1,16682:14659657,15769977:201213 -(1,16682:14659657,15769977:0,452978,115847 -r1,16714:17128194,15769977:2468537,568825,115847 -k1,16682:14659657,15769977:-2468537 -) -(1,16682:14659657,15769977:2468537,452978,115847 -k1,16682:14659657,15769977:3277 -h1,16682:17124917,15769977:0,411205,112570 -) -k1,16682:17329406,15769977:201212 -k1,16682:19871565,15769977:201213 -k1,16682:20861175,15769977:201212 -k1,16682:22770911,15769977:201212 -k1,16682:25644682,15769977:201213 -k1,16682:26461932,15769977:201212 -k1,16682:29329150,15769977:201213 -k1,16682:30181790,15769977:201212 -k1,16683:32583029,15769977:0 -) -(1,16683:6630773,16635057:25952256,473825,134348 -g1,16682:7820251,16635057 -k1,16683:32583028,16635057:24252252 -g1,16683:32583028,16635057 -) -v1,16685:6630773,17319912:0,393216,0 -(1,16701:6630773,22129911:25952256,5203215,196608 -g1,16701:6630773,22129911 -g1,16701:6630773,22129911 -g1,16701:6434165,22129911 -(1,16701:6434165,22129911:0,5203215,196608 -r1,16714:32779637,22129911:26345472,5399823,196608 -k1,16701:6434165,22129911:-26345472 -) -(1,16701:6434165,22129911:26345472,5203215,196608 -[1,16701:6630773,22129911:25952256,5006607,0 -(1,16687:6630773,17547743:25952256,424439,106246 -(1,16686:6630773,17547743:0,0,0 -g1,16686:6630773,17547743 -g1,16686:6630773,17547743 -g1,16686:6303093,17547743 -(1,16686:6303093,17547743:0,0,0 -) -g1,16686:6630773,17547743 -) -g1,16687:9286405,17547743 -g1,16687:10282267,17547743 -g1,16687:12937899,17547743 -g1,16687:13933761,17547743 -g1,16687:16257439,17547743 -g1,16687:17253301,17547743 -g1,16687:19908933,17547743 -g1,16687:20904795,17547743 -g1,16687:22896519,17547743 -g1,16687:23892381,17547743 -g1,16687:26548013,17547743 -g1,16687:27543875,17547743 -h1,16687:30863414,17547743:0,0,0 -k1,16687:32583029,17547743:1719615 -g1,16687:32583029,17547743 -) -(1,16694:6630773,18363670:25952256,424439,79822 -(1,16689:6630773,18363670:0,0,0 -g1,16689:6630773,18363670 -g1,16689:6630773,18363670 -g1,16689:6303093,18363670 -(1,16689:6303093,18363670:0,0,0 -) -g1,16689:6630773,18363670 -) -g1,16694:7626635,18363670 -g1,16694:7958589,18363670 -g1,16694:9286405,18363670 -g1,16694:9618359,18363670 -g1,16694:10282267,18363670 -g1,16694:10614221,18363670 -g1,16694:11278129,18363670 -g1,16694:11610083,18363670 -g1,16694:12273991,18363670 -g1,16694:12605945,18363670 -g1,16694:13269853,18363670 -g1,16694:13601807,18363670 -g1,16694:14265715,18363670 -g1,16694:14597669,18363670 -g1,16694:15261577,18363670 -g1,16694:15593531,18363670 -g1,16694:16257439,18363670 -g1,16694:16589393,18363670 -g1,16694:17253301,18363670 -g1,16694:17585255,18363670 -g1,16694:18249163,18363670 -h1,16694:18913071,18363670:0,0,0 -k1,16694:32583029,18363670:13669958 -g1,16694:32583029,18363670 -) -(1,16694:6630773,19048525:25952256,424439,79822 -h1,16694:6630773,19048525:0,0,0 -k1,16694:7599425,19048525:304744 -k1,16694:7904169,19048525:304744 -k1,16694:9204774,19048525:304743 -k1,16694:12165149,19048525:304744 -k1,16694:15125524,19048525:304744 -k1,16694:18085899,19048525:304744 -k1,16694:21046274,19048525:304744 -k1,16694:24006648,19048525:304743 -k1,16694:26967023,19048525:304744 -k1,16694:29927398,19048525:304744 -h1,16694:32583029,19048525:0,0,0 -k1,16694:32583029,19048525:0 -k1,16694:32583029,19048525:0 -) -(1,16694:6630773,19733380:25952256,424439,79822 -h1,16694:6630773,19733380:0,0,0 -g1,16694:7626635,19733380 -g1,16694:7958589,19733380 -g1,16694:9286405,19733380 -g1,16694:12273990,19733380 -h1,16694:14929621,19733380:0,0,0 -k1,16694:32583029,19733380:17653408 -g1,16694:32583029,19733380 -) -(1,16694:6630773,20418235:25952256,424439,79822 -h1,16694:6630773,20418235:0,0,0 -g1,16694:7626635,20418235 -g1,16694:8954451,20418235 -h1,16694:11610082,20418235:0,0,0 -k1,16694:32583030,20418235:20972948 -g1,16694:32583030,20418235 -) -(1,16696:6630773,21234162:25952256,424439,9908 -(1,16695:6630773,21234162:0,0,0 -g1,16695:6630773,21234162 -g1,16695:6630773,21234162 -g1,16695:6303093,21234162 -(1,16695:6303093,21234162:0,0,0 -) -g1,16695:6630773,21234162 -) -h1,16696:9950312,21234162:0,0,0 -k1,16696:32583028,21234162:22632716 -g1,16696:32583028,21234162 -) -(1,16700:6630773,22050089:25952256,424439,79822 -(1,16698:6630773,22050089:0,0,0 -g1,16698:6630773,22050089 -g1,16698:6630773,22050089 -g1,16698:6303093,22050089 -(1,16698:6303093,22050089:0,0,0 -) -g1,16698:6630773,22050089 -) -g1,16700:7626635,22050089 -g1,16700:8954451,22050089 -h1,16700:11610082,22050089:0,0,0 -k1,16700:32583030,22050089:20972948 -g1,16700:32583030,22050089 -) -] -) -g1,16701:32583029,22129911 -g1,16701:6630773,22129911 -g1,16701:6630773,22129911 -g1,16701:32583029,22129911 -g1,16701:32583029,22129911 -) -h1,16701:6630773,22326519:0,0,0 -(1,16705:6630773,23191599:25952256,513147,134348 -h1,16704:6630773,23191599:983040,0,0 -k1,16704:11178971,23191599:160563 -k1,16704:13457002,23191599:160563 -k1,16704:16313061,23191599:160563 -k1,16704:17903621,23191599:160564 -k1,16704:18595681,23191599:160563 -k1,16704:21413729,23191599:160563 -k1,16704:22497694,23191599:160563 -k1,16704:23274295,23191599:160563 -k1,16704:25941610,23191599:160563 -k1,16704:26560271,23191599:160564 -k1,16704:27252331,23191599:160563 -k1,16704:30678553,23191599:160563 -k1,16704:31490544,23191599:160563 -k1,16704:32583029,23191599:0 -) -(1,16705:6630773,24056679:25952256,513147,134348 -k1,16704:8518491,24056679:167398 -k1,16704:11013071,24056679:167397 -k1,16704:11839761,24056679:167398 -k1,16704:14109554,24056679:167398 -k1,16704:16394419,24056679:167397 -k1,16704:19257313,24056679:167398 -k1,16704:21028376,24056679:167397 -k1,16704:24130476,24056679:167398 -k1,16704:24755971,24056679:167398 -k1,16704:25454865,24056679:167397 -k1,16704:26957231,24056679:167398 -k1,16704:27776057,24056679:167398 -k1,16704:29672949,24056679:167397 -k1,16704:31194321,24056679:167398 -k1,16704:32583029,24056679:0 -) -(1,16705:6630773,24921759:25952256,505283,134348 -k1,16704:8697879,24921759:173116 -k1,16704:11793245,24921759:173116 -k1,16704:13655879,24921759:173116 -k1,16704:16086710,24921759:173116 -k1,16704:18421203,24921759:173116 -k1,16704:19277204,24921759:173116 -k1,16704:22463664,24921759:173115 -k1,16704:24026143,24921759:173116 -k1,16704:24657356,24921759:173116 -k1,16704:25361969,24921759:173116 -k1,16704:28744383,24921759:173116 -k1,16704:29568927,24921759:173116 -k1,16704:31563944,24921759:173116 -k1,16704:32583029,24921759:0 -) -(1,16705:6630773,25786839:25952256,513147,134348 -k1,16704:10481232,25786839:185030 -k1,16704:11325554,25786839:185030 -k1,16704:15568573,25786839:185030 -k1,16704:18100447,25786839:185030 -k1,16704:19010305,25786839:185030 -k1,16704:21228916,25786839:185029 -k1,16704:23053001,25786839:185030 -k1,16704:23889459,25786839:185030 -k1,16704:26916130,25786839:185030 -k1,16704:28205442,25786839:185030 -k1,16704:29781146,25786839:185030 -k1,16704:31391584,25786839:185030 -k1,16704:32583029,25786839:0 -) -(1,16705:6630773,26651919:25952256,513147,7863 -k1,16705:32583030,26651919:24127080 -g1,16705:32583030,26651919 -) -v1,16707:6630773,27516999:0,393216,0 -(1,16710:6630773,42658140:25952256,15534357,0 -g1,16710:6630773,42658140 -g1,16710:6237557,42658140 -r1,16714:6368629,42658140:131072,15534357,0 -g1,16710:6567858,42658140 -g1,16710:6764466,42658140 -[1,16710:6764466,42658140:25818563,15534357,0 -(1,16708:6764466,27825297:25818563,701514,196608 -(1,16707:6764466,27825297:0,701514,196608 -r1,16714:7761522,27825297:997056,898122,196608 -k1,16707:6764466,27825297:-997056 -) -(1,16707:6764466,27825297:997056,701514,196608 -) -k1,16707:8019604,27825297:258082 -k1,16707:8347284,27825297:327680 -k1,16707:9802052,27825297:258081 -k1,16707:12148766,27825297:258082 -k1,16707:13074003,27825297:258081 -k1,16707:14250900,27825297:258082 -k1,16707:16442294,27825297:258082 -k1,16707:18420695,27825297:258081 -k1,16707:19779782,27825297:258082 -k1,16707:23003367,27825297:258081 -k1,16707:24829070,27825297:258082 -k1,16707:26106236,27825297:258081 -k1,16707:29777433,27825297:258082 -k1,16707:32583029,27825297:0 -) -(1,16708:6764466,28690377:25818563,513147,134348 -k1,16707:7802392,28690377:276398 -k1,16707:10112372,28690377:276398 -k1,16707:15775829,28690377:276398 -k1,16707:17243672,28690377:276398 -k1,16707:19258085,28690377:276398 -k1,16707:20864864,28690377:276398 -k1,16707:22463123,28690377:276398 -k1,16707:23398813,28690377:276398 -k1,16707:24694296,28690377:276398 -k1,16707:27986661,28690377:276398 -k1,16707:29131411,28690377:276398 -k1,16707:30512091,28690377:276398 -k1,16707:32583029,28690377:0 -) -(1,16708:6764466,29555457:25818563,513147,134348 -k1,16707:7466138,29555457:243575 -k1,16707:8361142,29555457:243576 -k1,16707:11047899,29555457:243575 -k1,16707:12310560,29555457:243576 -k1,16707:15533402,29555457:243575 -k1,16707:16933688,29555457:243576 -k1,16707:18667552,29555457:243575 -k1,16707:19699525,29555457:243575 -k1,16707:24999859,29555457:243576 -k1,16707:25774931,29555457:243575 -k1,16707:28088134,29555457:243576 -k1,16707:29528396,29555457:243575 -k1,16707:32583029,29555457:0 -) -(1,16708:6764466,30420537:25818563,513147,134348 -k1,16707:7683554,30420537:259796 -k1,16707:8962435,30420537:259796 -k1,16707:10877014,30420537:259795 -k1,16707:16523869,30420537:259796 -k1,16707:18258880,30420537:259796 -k1,16707:19170104,30420537:259796 -k1,16707:21122039,30420537:259795 -k1,16707:23370197,30420537:259796 -k1,16707:26716083,30420537:259796 -k1,16707:27591917,30420537:259796 -k1,16707:29360351,30420537:259795 -k1,16707:31708779,30420537:259796 -k1,16708:32583029,30420537:0 -) -(1,16708:6764466,31285617:25818563,513147,126483 -k1,16707:9346167,31285617:202089 -k1,16707:14068931,31285617:202090 -k1,16707:15963160,31285617:202089 -k1,16707:19681911,31285617:202089 -k1,16707:20875560,31285617:202089 -k1,16707:22727847,31285617:202090 -k1,16707:24372383,31285617:202089 -k1,16707:27592405,31285617:202089 -k1,16707:28209334,31285617:202086 -k1,16707:30131744,31285617:202090 -k1,16707:31325393,31285617:202089 -k1,16708:32583029,31285617:0 -) -(1,16708:6764466,32150697:25818563,513147,134348 -k1,16707:8412321,32150697:212617 -k1,16707:10495337,32150697:212618 -k1,16707:11359382,32150697:212617 -k1,16707:12664485,32150697:212618 -k1,16707:14068547,32150697:212617 -k1,16707:17120185,32150697:212618 -k1,16707:17984230,32150697:212617 -k1,16707:18944613,32150697:212617 -k1,16707:21473273,32150697:212618 -k1,16707:23607406,32150697:212617 -k1,16707:25387645,32150697:212618 -k1,16707:28545449,32150697:212617 -k1,16707:29749627,32150697:212618 -k1,16707:30981329,32150697:212617 -k1,16707:32583029,32150697:0 -) -(1,16708:6764466,33015777:25818563,513147,134348 -k1,16707:9239386,33015777:199510 -k1,16707:10850542,33015777:199510 -k1,16707:12122221,33015777:199510 -k1,16707:13388003,33015777:199511 -k1,16707:14273675,33015777:199510 -k1,16707:15771453,33015777:199510 -k1,16707:16622391,33015777:199510 -k1,16707:18088057,33015777:199510 -k1,16707:19479012,33015777:199510 -k1,16707:23497305,33015777:199510 -k1,16707:25391577,33015777:199511 -k1,16707:25946947,33015777:199510 -k1,16707:27796654,33015777:199510 -k1,16707:30682485,33015777:199510 -k1,16708:32583029,33015777:0 -) -(1,16708:6764466,33880857:25818563,505283,134348 -k1,16707:10392182,33880857:191663 -k1,16707:11602930,33880857:191663 -k1,16707:14353774,33880857:191663 -k1,16707:17080370,33880857:191663 -k1,16707:19434720,33880857:191663 -k1,16707:20157880,33880857:191663 -k1,16707:21120246,33880857:191663 -k1,16707:23826525,33880857:191663 -k1,16707:24669616,33880857:191663 -k1,16707:27489928,33880857:191663 -k1,16707:29401911,33880857:191663 -k1,16707:32583029,33880857:0 -) -(1,16708:6764466,34745937:25818563,513147,134348 -k1,16707:7596336,34745937:180442 -k1,16707:10721965,34745937:180442 -k1,16707:13630671,34745937:180442 -k1,16707:14427151,34745937:180442 -k1,16707:17451856,34745937:180442 -k1,16707:20763608,34745937:180442 -k1,16707:22135495,34745937:180442 -k1,16707:26565291,34745937:180442 -k1,16707:27664548,34745937:180442 -(1,16707:27664548,34745937:0,452978,115847 -r1,16714:28374526,34745937:709978,568825,115847 -k1,16707:27664548,34745937:-709978 -) -(1,16707:27664548,34745937:709978,452978,115847 -k1,16707:27664548,34745937:3277 -h1,16707:28371249,34745937:0,411205,112570 -) -k1,16707:28554968,34745937:180442 -k1,16707:31482024,34745937:180442 -k1,16707:32583029,34745937:0 -) -(1,16708:6764466,35611017:25818563,505283,134348 -k1,16707:8536511,35611017:262095 -k1,16707:11847995,35611017:262094 -k1,16707:13737349,35611017:262095 -k1,16707:14787841,35611017:262094 -k1,16707:17715941,35611017:262095 -k1,16707:18594073,35611017:262094 -k1,16707:19270947,35611017:262031 -k1,16707:20908643,35611017:262095 -k1,16707:22343177,35611017:262095 -k1,16707:24288236,35611017:262094 -k1,16707:25848599,35611017:262095 -k1,16707:27985023,35611017:262094 -k1,16707:32583029,35611017:0 -) -(1,16708:6764466,36476097:25818563,505283,126483 -g1,16707:8438910,36476097 -g1,16707:9404255,36476097 -g1,16707:11113434,36476097 -g1,16707:14711360,36476097 -k1,16708:32583029,36476097:14283573 -g1,16708:32583029,36476097 -) -(1,16710:6764466,37341177:25818563,513147,126483 -h1,16709:6764466,37341177:983040,0,0 -k1,16709:9090970,37341177:146777 -k1,16709:11321792,37341177:146777 -k1,16709:12127861,37341177:146777 -k1,16709:15351553,37341177:146777 -(1,16709:15351553,37341177:0,452978,115847 -r1,16714:16061531,37341177:709978,568825,115847 -k1,16709:15351553,37341177:-709978 -) -(1,16709:15351553,37341177:709978,452978,115847 -k1,16709:15351553,37341177:3277 -h1,16709:16058254,37341177:0,411205,112570 -) -k1,16709:16208308,37341177:146777 -k1,16709:17546530,37341177:146777 -(1,16709:17546530,37341177:0,435480,115847 -r1,16714:18608219,37341177:1061689,551327,115847 -k1,16709:17546530,37341177:-1061689 -) -(1,16709:17546530,37341177:1061689,435480,115847 -k1,16709:17546530,37341177:3277 -h1,16709:18604942,37341177:0,411205,112570 -) -k1,16709:18754996,37341177:146777 -k1,16709:19433271,37341177:146778 -k1,16709:20646319,37341177:146777 -k1,16709:23703550,37341177:146777 -k1,16709:25329475,37341177:146777 -k1,16709:26395067,37341177:146777 -(1,16709:26395067,37341177:0,452978,115847 -r1,16714:27105045,37341177:709978,568825,115847 -k1,16709:26395067,37341177:-709978 -) -(1,16709:26395067,37341177:709978,452978,115847 -k1,16709:26395067,37341177:3277 -h1,16709:27101768,37341177:0,411205,112570 -) -k1,16709:27251822,37341177:146777 -k1,16709:28291855,37341177:146777 -k1,16709:29105788,37341177:146777 -k1,16709:29667356,37341177:146725 -k1,16709:31563944,37341177:146777 -k1,16709:32583029,37341177:0 -) -(1,16710:6764466,38206257:25818563,505283,134348 -k1,16709:10733508,38206257:235456 -(1,16709:10733508,38206257:0,414482,115847 -r1,16714:11091774,38206257:358266,530329,115847 -k1,16709:10733508,38206257:-358266 -) -(1,16709:10733508,38206257:358266,414482,115847 -k1,16709:10733508,38206257:3277 -h1,16709:11088497,38206257:0,411205,112570 -) -k1,16709:11327230,38206257:235456 -k1,16709:12666968,38206257:235456 -k1,16709:13650190,38206257:235456 -k1,16709:15261247,38206257:235456 -k1,16709:17701990,38206257:235456 -k1,16709:18588874,38206257:235456 -k1,16709:22435364,38206257:235456 -k1,16709:23432348,38206257:235456 -k1,16709:25579489,38206257:235456 -k1,16709:27504463,38206257:235456 -k1,16709:29133870,38206257:235456 -k1,16710:32583029,38206257:0 -) -(1,16710:6764466,39071337:25818563,505283,134348 -(1,16709:6764466,39071337:0,435480,115847 -r1,16714:7826155,39071337:1061689,551327,115847 -k1,16709:6764466,39071337:-1061689 -) -(1,16709:6764466,39071337:1061689,435480,115847 -k1,16709:6764466,39071337:3277 -h1,16709:7822878,39071337:0,411205,112570 -) -k1,16709:7973057,39071337:146902 -k1,16709:9139044,39071337:146902 -k1,16709:13019532,39071337:146902 -(1,16709:13019532,39071337:0,414482,115847 -r1,16714:13377798,39071337:358266,530329,115847 -k1,16709:13019532,39071337:-358266 -) -(1,16709:13019532,39071337:358266,414482,115847 -k1,16709:13019532,39071337:3277 -h1,16709:13374521,39071337:0,411205,112570 -) -k1,16709:13524700,39071337:146902 -k1,16709:14775884,39071337:146902 -k1,16709:15670552,39071337:146902 -k1,16709:17330680,39071337:146902 -k1,16709:18129009,39071337:146901 -k1,16709:19713116,39071337:146902 -k1,16709:23262647,39071337:146902 -k1,16709:24876245,39071337:146902 -k1,16709:25784675,39071337:146902 -k1,16709:27669592,39071337:146902 -k1,16709:29007939,39071337:146902 -k1,16709:29916369,39071337:146902 -k1,16709:32583029,39071337:0 -) -(1,16710:6764466,39936417:25818563,513147,126483 -k1,16709:8376636,39936417:163169 -k1,16709:11286419,39936417:163169 -(1,16709:11286419,39936417:0,435480,115847 -r1,16714:12699820,39936417:1413401,551327,115847 -k1,16709:11286419,39936417:-1413401 -) -(1,16709:11286419,39936417:1413401,435480,115847 -k1,16709:11286419,39936417:3277 -h1,16709:12696543,39936417:0,411205,112570 -) -k1,16709:12862990,39936417:163170 -k1,16709:14045244,39936417:163169 -k1,16709:15300898,39936417:163169 -k1,16709:16123359,39936417:163169 -k1,16709:17305613,39936417:163169 -k1,16709:21202369,39936417:163170 -(1,16709:21202369,39936417:0,414482,115847 -r1,16714:21560635,39936417:358266,530329,115847 -k1,16709:21202369,39936417:-358266 -) -(1,16709:21202369,39936417:358266,414482,115847 -k1,16709:21202369,39936417:3277 -h1,16709:21557358,39936417:0,411205,112570 -) -k1,16709:21723804,39936417:163169 -k1,16709:22418470,39936417:163169 -k1,16709:26223475,39936417:163169 -k1,16709:27578089,39936417:163169 -k1,16709:28199356,39936417:163170 -k1,16709:29466807,39936417:163169 -k1,16709:30377742,39936417:163169 -k1,16709:32583029,39936417:0 -) -(1,16710:6764466,40801497:25818563,513147,126483 -k1,16709:7679348,40801497:153354 -k1,16709:9570717,40801497:153354 -k1,16709:10406957,40801497:153355 -k1,16709:11321839,40801497:153354 -k1,16709:14089424,40801497:153354 -k1,16709:14894206,40801497:153354 -k1,16709:16066645,40801497:153354 -k1,16709:18915496,40801497:153355 -k1,16709:20168544,40801497:153354 -k1,16709:21131268,40801497:153354 -k1,16709:22303707,40801497:153354 -k1,16709:23640641,40801497:153354 -k1,16709:25610654,40801497:153355 -k1,16709:29280670,40801497:153354 -k1,16709:30425584,40801497:153354 -k1,16709:32583029,40801497:0 -) -(1,16710:6764466,41666577:25818563,513147,126483 -k1,16709:8078053,41666577:167362 -k1,16709:9989329,41666577:167363 -k1,16709:12378362,41666577:167362 -k1,16709:13197153,41666577:167363 -k1,16709:14383600,41666577:167362 -k1,16709:15643448,41666577:167363 -k1,16709:16426848,41666577:167362 -k1,16709:17613295,41666577:167362 -k1,16709:18813506,41666577:167363 -k1,16709:19640160,41666577:167362 -k1,16709:20826608,41666577:167363 -k1,16709:24208511,41666577:167362 -k1,16709:27122488,41666577:167363 -k1,16709:27972735,41666577:167362 -k1,16709:30666511,41666577:167363 -k1,16709:31516758,41666577:167362 -k1,16709:32583029,41666577:0 -) -(1,16710:6764466,42531657:25818563,513147,126483 -g1,16709:7911346,42531657 -g1,16709:11880861,42531657 -g1,16709:13364596,42531657 -g1,16709:14555385,42531657 -g1,16709:15820885,42531657 -g1,16709:18351230,42531657 -g1,16709:21245955,42531657 -k1,16710:32583029,42531657:9854650 -g1,16710:32583029,42531657 -) -] -g1,16710:32583029,42658140 -) -h1,16710:6630773,42658140:0,0,0 -(1,16713:6630773,43523220:25952256,513147,126483 -h1,16712:6630773,43523220:983040,0,0 -k1,16712:8491371,43523220:249723 -k1,16712:9760179,43523220:249723 -k1,16712:11376983,43523220:249723 -k1,16712:12293862,43523220:249723 -k1,16712:13132098,43523220:249723 -k1,16712:14400906,43523220:249723 -(1,16712:14400906,43523220:0,452978,115847 -r1,16714:15110884,43523220:709978,568825,115847 -k1,16712:14400906,43523220:-709978 -) -(1,16712:14400906,43523220:709978,452978,115847 -k1,16712:14400906,43523220:3277 -h1,16712:15107607,43523220:0,411205,112570 -) -k1,16712:15360607,43523220:249723 -k1,16712:17000349,43523220:249723 -k1,16712:17781569,43523220:249723 -k1,16712:22074863,43523220:249723 -k1,16712:22680446,43523220:249723 -k1,16712:26803347,43523220:249723 -k1,16712:28447021,43523220:249723 -k1,16712:29506114,43523220:249723 -k1,16712:32583029,43523220:0 -) -(1,16713:6630773,44388300:25952256,513147,134348 -k1,16712:7537627,44388300:247562 -k1,16712:8804274,44388300:247562 -k1,16712:11135881,44388300:247562 -k1,16712:12066328,44388300:247562 -k1,16712:15617560,44388300:247562 -k1,16712:17778118,44388300:247562 -k1,16712:19406524,44388300:247562 -k1,16712:21713883,44388300:247562 -k1,16712:25162223,44388300:247562 -k1,16712:26428870,44388300:247562 -k1,16712:28057276,44388300:247562 -k1,16712:29496283,44388300:247562 -k1,16712:32583029,44388300:0 -) -] -(1,16714:32583029,45706769:0,0,0 -g1,16714:32583029,45706769 -) -) -] -(1,16714:6630773,47279633:25952256,0,0 -h1,16714:6630773,47279633:25952256,0,0 -) -] -(1,16714:4262630,4025873:0,0,0 -[1,16714:-473656,4025873:0,0,0 -(1,16714:-473656,-710413:0,0,0 -(1,16714:-473656,-710413:0,0,0 -g1,16714:-473656,-710413 -) -g1,16714:-473656,-710413 +[1,16712:3078558,4812305:0,0,0 +(1,16712:3078558,49800853:0,16384,2228224 +g1,16712:29030814,49800853 +g1,16712:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16712:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16712:37855564,49800853:1179648,16384,0 +) +) +k1,16712:3078556,49800853:-34777008 +) +] +g1,16712:6630773,4812305 +g1,16712:6630773,4812305 +g1,16712:8364200,4812305 +g1,16712:10158575,4812305 +k1,16712:31387651,4812305:21229076 +) +) +] +[1,16712:6630773,45706769:25952256,40108032,0 +(1,16712:6630773,45706769:25952256,40108032,0 +(1,16712:6630773,45706769:0,0,0 +g1,16712:6630773,45706769 +) +[1,16712:6630773,45706769:25952256,40108032,0 +(1,16677:6630773,6254097:25952256,513147,126483 +k1,16676:9177898,6254097:178654 +k1,16676:10398573,6254097:178653 +k1,16676:11780468,6254097:178654 +k1,16676:14264022,6254097:178653 +k1,16676:14900773,6254097:178654 +k1,16676:15610923,6254097:178653 +k1,16676:19055236,6254097:178654 +k1,16676:19885317,6254097:178653 +k1,16676:21156456,6254097:178654 +k1,16676:22354195,6254097:178654 +(1,16676:22354195,6254097:0,452978,115847 +r1,16712:23064173,6254097:709978,568825,115847 +k1,16676:22354195,6254097:-709978 +) +(1,16676:22354195,6254097:709978,452978,115847 +k1,16676:22354195,6254097:3277 +h1,16676:23060896,6254097:0,411205,112570 +) +k1,16676:23242826,6254097:178653 +k1,16676:24037518,6254097:178654 +k1,16676:26377548,6254097:178653 +k1,16676:27239087,6254097:178654 +k1,16676:28913927,6254097:178653 +k1,16676:31931601,6254097:178654 +k1,16676:32583029,6254097:0 +) +(1,16677:6630773,7119177:25952256,505283,126483 +k1,16676:7609829,7119177:231290 +k1,16676:10163715,7119177:231290 +k1,16676:12437762,7119177:231290 +k1,16676:16877774,7119177:231290 +k1,16676:18503015,7119177:231290 +k1,16676:19149116,7119177:231258 +k1,16676:22044445,7119177:231290 +k1,16676:24309317,7119177:231290 +k1,16676:25983054,7119177:231290 +k1,16676:27757062,7119177:231290 +k1,16676:28519849,7119177:231290 +k1,16676:31223157,7119177:231290 +k1,16677:32583029,7119177:0 +) +(1,16677:6630773,7984257:25952256,505283,126483 +g1,16676:8722682,7984257 +g1,16676:9537949,7984257 +g1,16676:10756263,7984257 +g1,16676:12537531,7984257 +g1,16676:12949752,7984257 +g1,16676:14624196,7984257 +g1,16676:16336651,7984257 +g1,16676:17454695,7984257 +g1,16676:19043943,7984257 +g1,16676:21989786,7984257 +(1,16676:21989786,7984257:0,452978,115847 +r1,16712:22699764,7984257:709978,568825,115847 +k1,16676:21989786,7984257:-709978 +) +(1,16676:21989786,7984257:709978,452978,115847 +k1,16676:21989786,7984257:3277 +h1,16676:22696487,7984257:0,411205,112570 +) +k1,16677:32583029,7984257:9830837 +g1,16677:32583029,7984257 +) +(1,16679:6630773,8849337:25952256,513147,134348 +h1,16678:6630773,8849337:983040,0,0 +k1,16678:9439562,8849337:150649 +k1,16678:10694492,8849337:150648 +k1,16678:11592907,8849337:150649 +k1,16678:13256781,8849337:150648 +k1,16678:14801381,8849337:150649 +k1,16678:16083836,8849337:150648 +k1,16678:16649280,8849337:150601 +k1,16678:19669094,8849337:150648 +k1,16678:20891912,8849337:150649 +k1,16678:22372941,8849337:150648 +k1,16678:24825214,8849337:150649 +k1,16678:26080144,8849337:150648 +k1,16678:26978559,8849337:150649 +k1,16678:28637846,8849337:150648 +k1,16678:29880980,8849337:150649 +k1,16678:32583029,8849337:0 +) +(1,16679:6630773,9714417:25952256,513147,134348 +k1,16678:7650967,9714417:210824 +k1,16678:8880876,9714417:210824 +k1,16678:10831026,9714417:210824 +k1,16678:11701143,9714417:210825 +k1,16678:14040576,9714417:210824 +k1,16678:18036104,9714417:210824 +k1,16678:19627772,9714417:210824 +k1,16678:20370093,9714417:210824 +k1,16678:23688634,9714417:210824 +k1,16678:24918544,9714417:210825 +k1,16678:26496449,9714417:210824 +k1,16678:28405311,9714417:210824 +k1,16678:31043589,9714417:210824 +k1,16679:32583029,9714417:0 +) +(1,16679:6630773,10579497:25952256,513147,126483 +k1,16678:8842894,10579497:242764 +k1,16678:12091794,10579497:242764 +k1,16678:12985986,10579497:242764 +k1,16678:14247835,10579497:242764 +k1,16678:15796732,10579497:242764 +k1,16678:19320228,10579497:242764 +k1,16678:20222284,10579497:242764 +k1,16678:21484132,10579497:242763 +k1,16678:24422392,10579497:242764 +k1,16678:25474526,10579497:242764 +k1,16678:26736375,10579497:242764 +k1,16678:28162719,10579497:242764 +k1,16678:30661888,10579497:242764 +k1,16678:31563944,10579497:242764 +k1,16678:32583029,10579497:0 +) +(1,16679:6630773,11444577:25952256,513147,134348 +k1,16678:9903859,11444577:247289 +k1,16678:11342593,11444577:247289 +k1,16678:14374507,11444577:247289 +k1,16678:17003374,11444577:247289 +k1,16678:17866701,11444577:247289 +k1,16678:20092523,11444577:247290 +k1,16678:22486116,11444577:247289 +k1,16678:23924850,11444577:247289 +k1,16678:24527999,11444577:247289 +k1,16678:25908406,11444577:247289 +k1,16678:27857665,11444577:247289 +k1,16678:31015408,11444577:247289 +k1,16678:32583029,11444577:0 +) +(1,16679:6630773,12309657:25952256,513147,126483 +g1,16678:7849087,12309657 +g1,16678:11256303,12309657 +g1,16678:12143005,12309657 +g1,16678:13545475,12309657 +k1,16679:32583029,12309657:17454860 +g1,16679:32583029,12309657 +) +(1,16681:6630773,13174737:25952256,513147,134348 +h1,16680:6630773,13174737:983040,0,0 +k1,16680:10242986,13174737:286261 +k1,16680:10885108,13174737:286262 +k1,16680:13016207,13174737:286261 +k1,16680:13961760,13174737:286261 +k1,16680:17764684,13174737:286262 +k1,16680:19242390,13174737:286261 +k1,16680:21562233,13174737:286261 +k1,16680:25906483,13174737:286261 +k1,16680:28365919,13174737:286262 +k1,16680:29268218,13174737:286261 +k1,16680:32583029,13174737:0 +) +(1,16681:6630773,14039817:25952256,505283,134348 +k1,16680:9644882,14039817:190163 +k1,16680:11881080,14039817:190164 +k1,16680:15393263,14039817:190163 +k1,16680:17926339,14039817:190164 +k1,16680:21521097,14039817:190163 +k1,16680:23431581,14039817:190164 +k1,16680:24153241,14039817:190163 +k1,16680:25409676,14039817:190164 +k1,16680:26286001,14039817:190163 +k1,16680:28044442,14039817:190164 +k1,16680:28920767,14039817:190163 +k1,16680:30314172,14039817:190164 +k1,16680:32583029,14039817:0 +) +(1,16681:6630773,14904897:25952256,513147,134348 +k1,16680:9457248,14904897:204380 +k1,16680:12323045,14904897:204380 +k1,16680:14340151,14904897:204380 +k1,16680:15938482,14904897:204380 +k1,16680:17299572,14904897:204380 +k1,16680:20488463,14904897:204381 +k1,16680:22430858,14904897:204380 +k1,16680:23654323,14904897:204380 +k1,16680:26708208,14904897:204380 +k1,16680:27571880,14904897:204380 +k1,16680:29206256,14904897:204380 +k1,16680:30062064,14904897:204380 +(1,16680:30062064,14904897:0,452978,115847 +r1,16712:32530601,14904897:2468537,568825,115847 +k1,16680:30062064,14904897:-2468537 +) +(1,16680:30062064,14904897:2468537,452978,115847 +k1,16680:30062064,14904897:3277 +h1,16680:32527324,14904897:0,411205,112570 +) +k1,16680:32583029,14904897:0 +) +(1,16681:6630773,15769977:25952256,505283,126483 +k1,16680:8191202,15769977:201212 +k1,16680:8923912,15769977:201213 +k1,16680:11928754,15769977:201212 +k1,16680:14659657,15769977:201213 +(1,16680:14659657,15769977:0,452978,115847 +r1,16712:17128194,15769977:2468537,568825,115847 +k1,16680:14659657,15769977:-2468537 +) +(1,16680:14659657,15769977:2468537,452978,115847 +k1,16680:14659657,15769977:3277 +h1,16680:17124917,15769977:0,411205,112570 +) +k1,16680:17329406,15769977:201212 +k1,16680:19871565,15769977:201213 +k1,16680:20861175,15769977:201212 +k1,16680:22770911,15769977:201212 +k1,16680:25644682,15769977:201213 +k1,16680:26461932,15769977:201212 +k1,16680:29329150,15769977:201213 +k1,16680:30181790,15769977:201212 +k1,16681:32583029,15769977:0 +) +(1,16681:6630773,16635057:25952256,473825,134348 +g1,16680:7820251,16635057 +k1,16681:32583028,16635057:24252252 +g1,16681:32583028,16635057 +) +v1,16683:6630773,17319912:0,393216,0 +(1,16699:6630773,22129911:25952256,5203215,196608 +g1,16699:6630773,22129911 +g1,16699:6630773,22129911 +g1,16699:6434165,22129911 +(1,16699:6434165,22129911:0,5203215,196608 +r1,16712:32779637,22129911:26345472,5399823,196608 +k1,16699:6434165,22129911:-26345472 +) +(1,16699:6434165,22129911:26345472,5203215,196608 +[1,16699:6630773,22129911:25952256,5006607,0 +(1,16685:6630773,17547743:25952256,424439,106246 +(1,16684:6630773,17547743:0,0,0 +g1,16684:6630773,17547743 +g1,16684:6630773,17547743 +g1,16684:6303093,17547743 +(1,16684:6303093,17547743:0,0,0 +) +g1,16684:6630773,17547743 +) +g1,16685:9286405,17547743 +g1,16685:10282267,17547743 +g1,16685:12937899,17547743 +g1,16685:13933761,17547743 +g1,16685:16257439,17547743 +g1,16685:17253301,17547743 +g1,16685:19908933,17547743 +g1,16685:20904795,17547743 +g1,16685:22896519,17547743 +g1,16685:23892381,17547743 +g1,16685:26548013,17547743 +g1,16685:27543875,17547743 +h1,16685:30863414,17547743:0,0,0 +k1,16685:32583029,17547743:1719615 +g1,16685:32583029,17547743 +) +(1,16692:6630773,18363670:25952256,424439,79822 +(1,16687:6630773,18363670:0,0,0 +g1,16687:6630773,18363670 +g1,16687:6630773,18363670 +g1,16687:6303093,18363670 +(1,16687:6303093,18363670:0,0,0 +) +g1,16687:6630773,18363670 +) +g1,16692:7626635,18363670 +g1,16692:7958589,18363670 +g1,16692:9286405,18363670 +g1,16692:9618359,18363670 +g1,16692:10282267,18363670 +g1,16692:10614221,18363670 +g1,16692:11278129,18363670 +g1,16692:11610083,18363670 +g1,16692:12273991,18363670 +g1,16692:12605945,18363670 +g1,16692:13269853,18363670 +g1,16692:13601807,18363670 +g1,16692:14265715,18363670 +g1,16692:14597669,18363670 +g1,16692:15261577,18363670 +g1,16692:15593531,18363670 +g1,16692:16257439,18363670 +g1,16692:16589393,18363670 +g1,16692:17253301,18363670 +g1,16692:17585255,18363670 +g1,16692:18249163,18363670 +h1,16692:18913071,18363670:0,0,0 +k1,16692:32583029,18363670:13669958 +g1,16692:32583029,18363670 +) +(1,16692:6630773,19048525:25952256,424439,79822 +h1,16692:6630773,19048525:0,0,0 +k1,16692:7599425,19048525:304744 +k1,16692:7904169,19048525:304744 +k1,16692:9204774,19048525:304743 +k1,16692:12165149,19048525:304744 +k1,16692:15125524,19048525:304744 +k1,16692:18085899,19048525:304744 +k1,16692:21046274,19048525:304744 +k1,16692:24006648,19048525:304743 +k1,16692:26967023,19048525:304744 +k1,16692:29927398,19048525:304744 +h1,16692:32583029,19048525:0,0,0 +k1,16692:32583029,19048525:0 +k1,16692:32583029,19048525:0 +) +(1,16692:6630773,19733380:25952256,424439,79822 +h1,16692:6630773,19733380:0,0,0 +g1,16692:7626635,19733380 +g1,16692:7958589,19733380 +g1,16692:9286405,19733380 +g1,16692:12273990,19733380 +h1,16692:14929621,19733380:0,0,0 +k1,16692:32583029,19733380:17653408 +g1,16692:32583029,19733380 +) +(1,16692:6630773,20418235:25952256,424439,79822 +h1,16692:6630773,20418235:0,0,0 +g1,16692:7626635,20418235 +g1,16692:8954451,20418235 +h1,16692:11610082,20418235:0,0,0 +k1,16692:32583030,20418235:20972948 +g1,16692:32583030,20418235 +) +(1,16694:6630773,21234162:25952256,424439,9908 +(1,16693:6630773,21234162:0,0,0 +g1,16693:6630773,21234162 +g1,16693:6630773,21234162 +g1,16693:6303093,21234162 +(1,16693:6303093,21234162:0,0,0 +) +g1,16693:6630773,21234162 +) +h1,16694:9950312,21234162:0,0,0 +k1,16694:32583028,21234162:22632716 +g1,16694:32583028,21234162 +) +(1,16698:6630773,22050089:25952256,424439,79822 +(1,16696:6630773,22050089:0,0,0 +g1,16696:6630773,22050089 +g1,16696:6630773,22050089 +g1,16696:6303093,22050089 +(1,16696:6303093,22050089:0,0,0 +) +g1,16696:6630773,22050089 +) +g1,16698:7626635,22050089 +g1,16698:8954451,22050089 +h1,16698:11610082,22050089:0,0,0 +k1,16698:32583030,22050089:20972948 +g1,16698:32583030,22050089 +) +] +) +g1,16699:32583029,22129911 +g1,16699:6630773,22129911 +g1,16699:6630773,22129911 +g1,16699:32583029,22129911 +g1,16699:32583029,22129911 +) +h1,16699:6630773,22326519:0,0,0 +(1,16703:6630773,23191599:25952256,513147,134348 +h1,16702:6630773,23191599:983040,0,0 +k1,16702:11178971,23191599:160563 +k1,16702:13457002,23191599:160563 +k1,16702:16313061,23191599:160563 +k1,16702:17903621,23191599:160564 +k1,16702:18595681,23191599:160563 +k1,16702:21413729,23191599:160563 +k1,16702:22497694,23191599:160563 +k1,16702:23274295,23191599:160563 +k1,16702:25941610,23191599:160563 +k1,16702:26560271,23191599:160564 +k1,16702:27252331,23191599:160563 +k1,16702:30678553,23191599:160563 +k1,16702:31490544,23191599:160563 +k1,16702:32583029,23191599:0 +) +(1,16703:6630773,24056679:25952256,513147,134348 +k1,16702:8518491,24056679:167398 +k1,16702:11013071,24056679:167397 +k1,16702:11839761,24056679:167398 +k1,16702:14109554,24056679:167398 +k1,16702:16394419,24056679:167397 +k1,16702:19257313,24056679:167398 +k1,16702:21028376,24056679:167397 +k1,16702:24130476,24056679:167398 +k1,16702:24755971,24056679:167398 +k1,16702:25454865,24056679:167397 +k1,16702:26957231,24056679:167398 +k1,16702:27776057,24056679:167398 +k1,16702:29672949,24056679:167397 +k1,16702:31194321,24056679:167398 +k1,16702:32583029,24056679:0 +) +(1,16703:6630773,24921759:25952256,505283,134348 +k1,16702:8697879,24921759:173116 +k1,16702:11793245,24921759:173116 +k1,16702:13655879,24921759:173116 +k1,16702:16086710,24921759:173116 +k1,16702:18421203,24921759:173116 +k1,16702:19277204,24921759:173116 +k1,16702:22463664,24921759:173115 +k1,16702:24026143,24921759:173116 +k1,16702:24657356,24921759:173116 +k1,16702:25361969,24921759:173116 +k1,16702:28744383,24921759:173116 +k1,16702:29568927,24921759:173116 +k1,16702:31563944,24921759:173116 +k1,16702:32583029,24921759:0 +) +(1,16703:6630773,25786839:25952256,513147,134348 +k1,16702:10481232,25786839:185030 +k1,16702:11325554,25786839:185030 +k1,16702:15568573,25786839:185030 +k1,16702:18100447,25786839:185030 +k1,16702:19010305,25786839:185030 +k1,16702:21228916,25786839:185029 +k1,16702:23053001,25786839:185030 +k1,16702:23889459,25786839:185030 +k1,16702:26916130,25786839:185030 +k1,16702:28205442,25786839:185030 +k1,16702:29781146,25786839:185030 +k1,16702:31391584,25786839:185030 +k1,16702:32583029,25786839:0 +) +(1,16703:6630773,26651919:25952256,513147,7863 +k1,16703:32583030,26651919:24127080 +g1,16703:32583030,26651919 +) +v1,16705:6630773,27516999:0,393216,0 +(1,16708:6630773,42658140:25952256,15534357,0 +g1,16708:6630773,42658140 +g1,16708:6237557,42658140 +r1,16712:6368629,42658140:131072,15534357,0 +g1,16708:6567858,42658140 +g1,16708:6764466,42658140 +[1,16708:6764466,42658140:25818563,15534357,0 +(1,16706:6764466,27825297:25818563,701514,196608 +(1,16705:6764466,27825297:0,701514,196608 +r1,16712:7761522,27825297:997056,898122,196608 +k1,16705:6764466,27825297:-997056 +) +(1,16705:6764466,27825297:997056,701514,196608 +) +k1,16705:8019604,27825297:258082 +k1,16705:8347284,27825297:327680 +k1,16705:9802052,27825297:258081 +k1,16705:12148766,27825297:258082 +k1,16705:13074003,27825297:258081 +k1,16705:14250900,27825297:258082 +k1,16705:16442294,27825297:258082 +k1,16705:18420695,27825297:258081 +k1,16705:19779782,27825297:258082 +k1,16705:23003367,27825297:258081 +k1,16705:24829070,27825297:258082 +k1,16705:26106236,27825297:258081 +k1,16705:29777433,27825297:258082 +k1,16705:32583029,27825297:0 +) +(1,16706:6764466,28690377:25818563,513147,134348 +k1,16705:7802392,28690377:276398 +k1,16705:10112372,28690377:276398 +k1,16705:15775829,28690377:276398 +k1,16705:17243672,28690377:276398 +k1,16705:19258085,28690377:276398 +k1,16705:20864864,28690377:276398 +k1,16705:22463123,28690377:276398 +k1,16705:23398813,28690377:276398 +k1,16705:24694296,28690377:276398 +k1,16705:27986661,28690377:276398 +k1,16705:29131411,28690377:276398 +k1,16705:30512091,28690377:276398 +k1,16705:32583029,28690377:0 +) +(1,16706:6764466,29555457:25818563,513147,134348 +k1,16705:7466138,29555457:243575 +k1,16705:8361142,29555457:243576 +k1,16705:11047899,29555457:243575 +k1,16705:12310560,29555457:243576 +k1,16705:15533402,29555457:243575 +k1,16705:16933688,29555457:243576 +k1,16705:18667552,29555457:243575 +k1,16705:19699525,29555457:243575 +k1,16705:24999859,29555457:243576 +k1,16705:25774931,29555457:243575 +k1,16705:28088134,29555457:243576 +k1,16705:29528396,29555457:243575 +k1,16705:32583029,29555457:0 +) +(1,16706:6764466,30420537:25818563,513147,134348 +k1,16705:7683554,30420537:259796 +k1,16705:8962435,30420537:259796 +k1,16705:10877014,30420537:259795 +k1,16705:16523869,30420537:259796 +k1,16705:18258880,30420537:259796 +k1,16705:19170104,30420537:259796 +k1,16705:21122039,30420537:259795 +k1,16705:23370197,30420537:259796 +k1,16705:26716083,30420537:259796 +k1,16705:27591917,30420537:259796 +k1,16705:29360351,30420537:259795 +k1,16705:31708779,30420537:259796 +k1,16706:32583029,30420537:0 +) +(1,16706:6764466,31285617:25818563,513147,126483 +k1,16705:9346167,31285617:202089 +k1,16705:14068931,31285617:202090 +k1,16705:15963160,31285617:202089 +k1,16705:19681911,31285617:202089 +k1,16705:20875560,31285617:202089 +k1,16705:22727847,31285617:202090 +k1,16705:24372383,31285617:202089 +k1,16705:27592405,31285617:202089 +k1,16705:28209334,31285617:202086 +k1,16705:30131744,31285617:202090 +k1,16705:31325393,31285617:202089 +k1,16706:32583029,31285617:0 +) +(1,16706:6764466,32150697:25818563,513147,134348 +k1,16705:8412321,32150697:212617 +k1,16705:10495337,32150697:212618 +k1,16705:11359382,32150697:212617 +k1,16705:12664485,32150697:212618 +k1,16705:14068547,32150697:212617 +k1,16705:17120185,32150697:212618 +k1,16705:17984230,32150697:212617 +k1,16705:18944613,32150697:212617 +k1,16705:21473273,32150697:212618 +k1,16705:23607406,32150697:212617 +k1,16705:25387645,32150697:212618 +k1,16705:28545449,32150697:212617 +k1,16705:29749627,32150697:212618 +k1,16705:30981329,32150697:212617 +k1,16705:32583029,32150697:0 +) +(1,16706:6764466,33015777:25818563,513147,134348 +k1,16705:9239386,33015777:199510 +k1,16705:10850542,33015777:199510 +k1,16705:12122221,33015777:199510 +k1,16705:13388003,33015777:199511 +k1,16705:14273675,33015777:199510 +k1,16705:15771453,33015777:199510 +k1,16705:16622391,33015777:199510 +k1,16705:18088057,33015777:199510 +k1,16705:19479012,33015777:199510 +k1,16705:23497305,33015777:199510 +k1,16705:25391577,33015777:199511 +k1,16705:25946947,33015777:199510 +k1,16705:27796654,33015777:199510 +k1,16705:30682485,33015777:199510 +k1,16706:32583029,33015777:0 +) +(1,16706:6764466,33880857:25818563,505283,134348 +k1,16705:10392182,33880857:191663 +k1,16705:11602930,33880857:191663 +k1,16705:14353774,33880857:191663 +k1,16705:17080370,33880857:191663 +k1,16705:19434720,33880857:191663 +k1,16705:20157880,33880857:191663 +k1,16705:21120246,33880857:191663 +k1,16705:23826525,33880857:191663 +k1,16705:24669616,33880857:191663 +k1,16705:27489928,33880857:191663 +k1,16705:29401911,33880857:191663 +k1,16705:32583029,33880857:0 +) +(1,16706:6764466,34745937:25818563,513147,134348 +k1,16705:7596336,34745937:180442 +k1,16705:10721965,34745937:180442 +k1,16705:13630671,34745937:180442 +k1,16705:14427151,34745937:180442 +k1,16705:17451856,34745937:180442 +k1,16705:20763608,34745937:180442 +k1,16705:22135495,34745937:180442 +k1,16705:26565291,34745937:180442 +k1,16705:27664548,34745937:180442 +(1,16705:27664548,34745937:0,452978,115847 +r1,16712:28374526,34745937:709978,568825,115847 +k1,16705:27664548,34745937:-709978 +) +(1,16705:27664548,34745937:709978,452978,115847 +k1,16705:27664548,34745937:3277 +h1,16705:28371249,34745937:0,411205,112570 +) +k1,16705:28554968,34745937:180442 +k1,16705:31482024,34745937:180442 +k1,16705:32583029,34745937:0 +) +(1,16706:6764466,35611017:25818563,505283,134348 +k1,16705:8536511,35611017:262095 +k1,16705:11847995,35611017:262094 +k1,16705:13737349,35611017:262095 +k1,16705:14787841,35611017:262094 +k1,16705:17715941,35611017:262095 +k1,16705:18594073,35611017:262094 +k1,16705:19270947,35611017:262031 +k1,16705:20908643,35611017:262095 +k1,16705:22343177,35611017:262095 +k1,16705:24288236,35611017:262094 +k1,16705:25848599,35611017:262095 +k1,16705:27985023,35611017:262094 +k1,16705:32583029,35611017:0 +) +(1,16706:6764466,36476097:25818563,505283,126483 +g1,16705:8438910,36476097 +g1,16705:9404255,36476097 +g1,16705:11113434,36476097 +g1,16705:14711360,36476097 +k1,16706:32583029,36476097:14283573 +g1,16706:32583029,36476097 +) +(1,16708:6764466,37341177:25818563,513147,126483 +h1,16707:6764466,37341177:983040,0,0 +k1,16707:9090970,37341177:146777 +k1,16707:11321792,37341177:146777 +k1,16707:12127861,37341177:146777 +k1,16707:15351553,37341177:146777 +(1,16707:15351553,37341177:0,452978,115847 +r1,16712:16061531,37341177:709978,568825,115847 +k1,16707:15351553,37341177:-709978 +) +(1,16707:15351553,37341177:709978,452978,115847 +k1,16707:15351553,37341177:3277 +h1,16707:16058254,37341177:0,411205,112570 +) +k1,16707:16208308,37341177:146777 +k1,16707:17546530,37341177:146777 +(1,16707:17546530,37341177:0,435480,115847 +r1,16712:18608219,37341177:1061689,551327,115847 +k1,16707:17546530,37341177:-1061689 +) +(1,16707:17546530,37341177:1061689,435480,115847 +k1,16707:17546530,37341177:3277 +h1,16707:18604942,37341177:0,411205,112570 +) +k1,16707:18754996,37341177:146777 +k1,16707:19433271,37341177:146778 +k1,16707:20646319,37341177:146777 +k1,16707:23703550,37341177:146777 +k1,16707:25329475,37341177:146777 +k1,16707:26395067,37341177:146777 +(1,16707:26395067,37341177:0,452978,115847 +r1,16712:27105045,37341177:709978,568825,115847 +k1,16707:26395067,37341177:-709978 +) +(1,16707:26395067,37341177:709978,452978,115847 +k1,16707:26395067,37341177:3277 +h1,16707:27101768,37341177:0,411205,112570 +) +k1,16707:27251822,37341177:146777 +k1,16707:28291855,37341177:146777 +k1,16707:29105788,37341177:146777 +k1,16707:29667356,37341177:146725 +k1,16707:31563944,37341177:146777 +k1,16707:32583029,37341177:0 +) +(1,16708:6764466,38206257:25818563,505283,134348 +k1,16707:10733508,38206257:235456 +(1,16707:10733508,38206257:0,414482,115847 +r1,16712:11091774,38206257:358266,530329,115847 +k1,16707:10733508,38206257:-358266 +) +(1,16707:10733508,38206257:358266,414482,115847 +k1,16707:10733508,38206257:3277 +h1,16707:11088497,38206257:0,411205,112570 +) +k1,16707:11327230,38206257:235456 +k1,16707:12666968,38206257:235456 +k1,16707:13650190,38206257:235456 +k1,16707:15261247,38206257:235456 +k1,16707:17701990,38206257:235456 +k1,16707:18588874,38206257:235456 +k1,16707:22435364,38206257:235456 +k1,16707:23432348,38206257:235456 +k1,16707:25579489,38206257:235456 +k1,16707:27504463,38206257:235456 +k1,16707:29133870,38206257:235456 +k1,16708:32583029,38206257:0 +) +(1,16708:6764466,39071337:25818563,505283,134348 +(1,16707:6764466,39071337:0,435480,115847 +r1,16712:7826155,39071337:1061689,551327,115847 +k1,16707:6764466,39071337:-1061689 +) +(1,16707:6764466,39071337:1061689,435480,115847 +k1,16707:6764466,39071337:3277 +h1,16707:7822878,39071337:0,411205,112570 +) +k1,16707:7973057,39071337:146902 +k1,16707:9139044,39071337:146902 +k1,16707:13019532,39071337:146902 +(1,16707:13019532,39071337:0,414482,115847 +r1,16712:13377798,39071337:358266,530329,115847 +k1,16707:13019532,39071337:-358266 +) +(1,16707:13019532,39071337:358266,414482,115847 +k1,16707:13019532,39071337:3277 +h1,16707:13374521,39071337:0,411205,112570 +) +k1,16707:13524700,39071337:146902 +k1,16707:14775884,39071337:146902 +k1,16707:15670552,39071337:146902 +k1,16707:17330680,39071337:146902 +k1,16707:18129009,39071337:146901 +k1,16707:19713116,39071337:146902 +k1,16707:23262647,39071337:146902 +k1,16707:24876245,39071337:146902 +k1,16707:25784675,39071337:146902 +k1,16707:27669592,39071337:146902 +k1,16707:29007939,39071337:146902 +k1,16707:29916369,39071337:146902 +k1,16707:32583029,39071337:0 +) +(1,16708:6764466,39936417:25818563,513147,126483 +k1,16707:8376636,39936417:163169 +k1,16707:11286419,39936417:163169 +(1,16707:11286419,39936417:0,435480,115847 +r1,16712:12699820,39936417:1413401,551327,115847 +k1,16707:11286419,39936417:-1413401 +) +(1,16707:11286419,39936417:1413401,435480,115847 +k1,16707:11286419,39936417:3277 +h1,16707:12696543,39936417:0,411205,112570 +) +k1,16707:12862990,39936417:163170 +k1,16707:14045244,39936417:163169 +k1,16707:15300898,39936417:163169 +k1,16707:16123359,39936417:163169 +k1,16707:17305613,39936417:163169 +k1,16707:21202369,39936417:163170 +(1,16707:21202369,39936417:0,414482,115847 +r1,16712:21560635,39936417:358266,530329,115847 +k1,16707:21202369,39936417:-358266 +) +(1,16707:21202369,39936417:358266,414482,115847 +k1,16707:21202369,39936417:3277 +h1,16707:21557358,39936417:0,411205,112570 +) +k1,16707:21723804,39936417:163169 +k1,16707:22418470,39936417:163169 +k1,16707:26223475,39936417:163169 +k1,16707:27578089,39936417:163169 +k1,16707:28199356,39936417:163170 +k1,16707:29466807,39936417:163169 +k1,16707:30377742,39936417:163169 +k1,16707:32583029,39936417:0 +) +(1,16708:6764466,40801497:25818563,513147,126483 +k1,16707:7679348,40801497:153354 +k1,16707:9570717,40801497:153354 +k1,16707:10406957,40801497:153355 +k1,16707:11321839,40801497:153354 +k1,16707:14089424,40801497:153354 +k1,16707:14894206,40801497:153354 +k1,16707:16066645,40801497:153354 +k1,16707:18915496,40801497:153355 +k1,16707:20168544,40801497:153354 +k1,16707:21131268,40801497:153354 +k1,16707:22303707,40801497:153354 +k1,16707:23640641,40801497:153354 +k1,16707:25610654,40801497:153355 +k1,16707:29280670,40801497:153354 +k1,16707:30425584,40801497:153354 +k1,16707:32583029,40801497:0 +) +(1,16708:6764466,41666577:25818563,513147,126483 +k1,16707:8078053,41666577:167362 +k1,16707:9989329,41666577:167363 +k1,16707:12378362,41666577:167362 +k1,16707:13197153,41666577:167363 +k1,16707:14383600,41666577:167362 +k1,16707:15643448,41666577:167363 +k1,16707:16426848,41666577:167362 +k1,16707:17613295,41666577:167362 +k1,16707:18813506,41666577:167363 +k1,16707:19640160,41666577:167362 +k1,16707:20826608,41666577:167363 +k1,16707:24208511,41666577:167362 +k1,16707:27122488,41666577:167363 +k1,16707:27972735,41666577:167362 +k1,16707:30666511,41666577:167363 +k1,16707:31516758,41666577:167362 +k1,16707:32583029,41666577:0 +) +(1,16708:6764466,42531657:25818563,513147,126483 +g1,16707:7911346,42531657 +g1,16707:11880861,42531657 +g1,16707:13364596,42531657 +g1,16707:14555385,42531657 +g1,16707:15820885,42531657 +g1,16707:18351230,42531657 +g1,16707:21245955,42531657 +k1,16708:32583029,42531657:9854650 +g1,16708:32583029,42531657 +) +] +g1,16708:32583029,42658140 +) +h1,16708:6630773,42658140:0,0,0 +(1,16711:6630773,43523220:25952256,513147,126483 +h1,16710:6630773,43523220:983040,0,0 +k1,16710:8491371,43523220:249723 +k1,16710:9760179,43523220:249723 +k1,16710:11376983,43523220:249723 +k1,16710:12293862,43523220:249723 +k1,16710:13132098,43523220:249723 +k1,16710:14400906,43523220:249723 +(1,16710:14400906,43523220:0,452978,115847 +r1,16712:15110884,43523220:709978,568825,115847 +k1,16710:14400906,43523220:-709978 +) +(1,16710:14400906,43523220:709978,452978,115847 +k1,16710:14400906,43523220:3277 +h1,16710:15107607,43523220:0,411205,112570 +) +k1,16710:15360607,43523220:249723 +k1,16710:17000349,43523220:249723 +k1,16710:17781569,43523220:249723 +k1,16710:22074863,43523220:249723 +k1,16710:22680446,43523220:249723 +k1,16710:26803347,43523220:249723 +k1,16710:28447021,43523220:249723 +k1,16710:29506114,43523220:249723 +k1,16710:32583029,43523220:0 +) +(1,16711:6630773,44388300:25952256,513147,134348 +k1,16710:7537627,44388300:247562 +k1,16710:8804274,44388300:247562 +k1,16710:11135881,44388300:247562 +k1,16710:12066328,44388300:247562 +k1,16710:15617560,44388300:247562 +k1,16710:17778118,44388300:247562 +k1,16710:19406524,44388300:247562 +k1,16710:21713883,44388300:247562 +k1,16710:25162223,44388300:247562 +k1,16710:26428870,44388300:247562 +k1,16710:28057276,44388300:247562 +k1,16710:29496283,44388300:247562 +k1,16710:32583029,44388300:0 +) +] +(1,16712:32583029,45706769:0,0,0 +g1,16712:32583029,45706769 +) +) +] +(1,16712:6630773,47279633:25952256,0,0 +h1,16712:6630773,47279633:25952256,0,0 +) +] +(1,16712:4262630,4025873:0,0,0 +[1,16712:-473656,4025873:0,0,0 +(1,16712:-473656,-710413:0,0,0 +(1,16712:-473656,-710413:0,0,0 +g1,16712:-473656,-710413 +) +g1,16712:-473656,-710413 ) ] ) ] !29587 -}270 -Input:2797:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2799:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}271 Input:2801:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2802:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2803:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{271 -[1,16779:4262630,47279633:28320399,43253760,0 -(1,16779:4262630,4025873:0,0,0 -[1,16779:-473656,4025873:0,0,0 -(1,16779:-473656,-710413:0,0,0 -(1,16779:-473656,-644877:0,0,0 -k1,16779:-473656,-644877:-65536 +{272 +[1,16777:4262630,47279633:28320399,43253760,0 +(1,16777:4262630,4025873:0,0,0 +[1,16777:-473656,4025873:0,0,0 +(1,16777:-473656,-710413:0,0,0 +(1,16777:-473656,-644877:0,0,0 +k1,16777:-473656,-644877:-65536 ) -(1,16779:-473656,4736287:0,0,0 -k1,16779:-473656,4736287:5209943 +(1,16777:-473656,4736287:0,0,0 +k1,16777:-473656,4736287:5209943 ) -g1,16779:-473656,-710413 +g1,16777:-473656,-710413 ) ] ) -[1,16779:6630773,47279633:25952256,43253760,0 -[1,16779:6630773,4812305:25952256,786432,0 -(1,16779:6630773,4812305:25952256,505283,134348 -(1,16779:6630773,4812305:25952256,505283,134348 -g1,16779:3078558,4812305 -[1,16779:3078558,4812305:0,0,0 -(1,16779:3078558,2439708:0,1703936,0 -k1,16779:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16779:2537886,2439708:1179648,16384,0 +[1,16777:6630773,47279633:25952256,43253760,0 +[1,16777:6630773,4812305:25952256,786432,0 +(1,16777:6630773,4812305:25952256,505283,134348 +(1,16777:6630773,4812305:25952256,505283,134348 +g1,16777:3078558,4812305 +[1,16777:3078558,4812305:0,0,0 +(1,16777:3078558,2439708:0,1703936,0 +k1,16777:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16777:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16779:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16777:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16779:3078558,4812305:0,0,0 -(1,16779:3078558,2439708:0,1703936,0 -g1,16779:29030814,2439708 -g1,16779:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16779:36151628,1915420:16384,1179648,0 +[1,16777:3078558,4812305:0,0,0 +(1,16777:3078558,2439708:0,1703936,0 +g1,16777:29030814,2439708 +g1,16777:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16777:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16779:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16777:37855564,2439708:1179648,16384,0 ) ) -k1,16779:3078556,2439708:-34777008 +k1,16777:3078556,2439708:-34777008 ) ] -[1,16779:3078558,4812305:0,0,0 -(1,16779:3078558,49800853:0,16384,2228224 -k1,16779:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16779:2537886,49800853:1179648,16384,0 +[1,16777:3078558,4812305:0,0,0 +(1,16777:3078558,49800853:0,16384,2228224 +k1,16777:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16777:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16779:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16777:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16779:3078558,4812305:0,0,0 -(1,16779:3078558,49800853:0,16384,2228224 -g1,16779:29030814,49800853 -g1,16779:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16779:36151628,51504789:16384,1179648,0 +[1,16777:3078558,4812305:0,0,0 +(1,16777:3078558,49800853:0,16384,2228224 +g1,16777:29030814,49800853 +g1,16777:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16777:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16779:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16777:37855564,49800853:1179648,16384,0 ) ) -k1,16779:3078556,49800853:-34777008 +k1,16777:3078556,49800853:-34777008 ) -] -g1,16779:6630773,4812305 -k1,16779:23347041,4812305:15520891 -g1,16779:23960458,4812305 -g1,16779:27572802,4812305 -g1,16779:29306229,4812305 -) -) -] -[1,16779:6630773,45706769:25952256,40108032,0 -(1,16779:6630773,45706769:25952256,40108032,0 -(1,16779:6630773,45706769:0,0,0 -g1,16779:6630773,45706769 -) -[1,16779:6630773,45706769:25952256,40108032,0 -(1,16713:6630773,6254097:25952256,513147,134348 -k1,16712:12086756,6254097:225555 -k1,16712:12940147,6254097:225556 -k1,16712:14867672,6254097:225555 -k1,16712:17221836,6254097:225555 -k1,16712:17862208,6254097:225529 -k1,16712:19808083,6254097:225555 -k1,16712:21025199,6254097:225556 -k1,16712:22021457,6254097:225555 -k1,16712:25633913,6254097:225555 -k1,16712:27097443,6254097:225555 -k1,16712:27982291,6254097:225556 -k1,16712:30465561,6254097:225555 -k1,16712:32583029,6254097:0 -) -(1,16713:6630773,7119177:25952256,513147,134348 -g1,16712:9525498,7119177 -g1,16712:11328393,7119177 -g1,16712:14094012,7119177 -g1,16712:14708084,7119177 -k1,16713:32583029,7119177:12961711 -g1,16713:32583029,7119177 -) -(1,16716:7202902,8639617:24807998,513147,126483 -(1,16714:7202902,8639617:983040,0,0 -g1,16714:8185942,8639617 -g1,16714:6875222,8639617 -g1,16714:6547542,8639617 -(1,16714:6547542,8639617:1310720,0,0 -k1,16714:7858262,8639617:1310720 -) -g1,16714:8185942,8639617 -) -k1,16715:11613229,8639617:221266 -k1,16715:13224514,8639617:221266 -k1,16715:16850375,8639617:221266 -k1,16715:18063201,8639617:221266 -k1,16715:22485979,8639617:221265 -k1,16715:23393407,8639617:221266 -k1,16715:25698718,8639617:221266 -k1,16715:31261168,8639617:221266 -k1,16715:32010900,8639617:0 -) -(1,16716:7202902,9504697:24807998,505283,126483 -k1,16715:8220036,9504697:246431 -k1,16715:11906452,9504697:246431 -k1,16715:14439434,9504697:246431 -k1,16715:15372027,9504697:246431 -(1,16715:15372027,9504697:0,459977,115847 -r1,16779:18543988,9504697:3171961,575824,115847 -k1,16715:15372027,9504697:-3171961 -) -(1,16715:15372027,9504697:3171961,459977,115847 -g1,16715:16078728,9504697 -g1,16715:17133864,9504697 -h1,16715:18540711,9504697:0,411205,112570 -) -k1,16715:18790419,9504697:246431 -k1,16715:19568347,9504697:246431 -k1,16715:21978121,9504697:246431 -k1,16715:22910714,9504697:246431 -(1,16715:22910714,9504697:0,459977,115847 -r1,16779:25379251,9504697:2468537,575824,115847 -k1,16715:22910714,9504697:-2468537 -) -(1,16715:22910714,9504697:2468537,459977,115847 -g1,16715:24672550,9504697 -h1,16715:25375974,9504697:0,411205,112570 -) -k1,16715:25799352,9504697:246431 -k1,16715:26515676,9504697:246431 -k1,16715:27293604,9504697:246431 -k1,16715:29415675,9504697:246431 -k1,16716:32010900,9504697:0 -) -(1,16716:7202902,10369777:24807998,505283,134348 -k1,16715:9029096,10369777:304448 -k1,16715:10618050,10369777:304448 -k1,16715:12612016,10369777:304448 -k1,16715:13935550,10369777:304449 -k1,16715:15736185,10369777:304448 -k1,16715:16656671,10369777:304448 -k1,16715:17316979,10369777:304448 -k1,16715:20179953,10369777:304448 -k1,16715:21015898,10369777:304448 -k1,16715:23606897,10369777:304448 -k1,16715:27929357,10369777:304448 -k1,16715:30507905,10369777:304449 -k1,16715:31227090,10369777:304342 -k1,16716:32010900,10369777:0 -) -(1,16716:7202902,11234857:24807998,513147,126483 -k1,16715:9941413,11234857:225861 -k1,16715:11114924,11234857:225860 -k1,16715:14644455,11234857:225861 -k1,16715:16633890,11234857:225861 -k1,16715:18051196,11234857:225861 -k1,16715:19001884,11234857:225860 -k1,16715:21038505,11234857:225861 -k1,16715:25034652,11234857:225861 -k1,16715:26392975,11234857:225861 -k1,16715:27366601,11234857:225860 -k1,16715:30653649,11234857:225861 -k1,16715:32010900,11234857:0 -) -(1,16716:7202902,12099937:24807998,513147,126483 -g1,16715:9073955,12099937 -g1,16715:10579317,12099937 -g1,16715:12291772,12099937 -g1,16715:13107039,12099937 -g1,16715:14325353,12099937 -g1,16715:15558085,12099937 -k1,16716:32010900,12099937:12960402 -g1,16716:32010900,12099937 -) -v1,16719:6630773,13620377:0,393216,0 -(1,16770:6630773,33575816:25952256,20348655,0 -g1,16770:6630773,33575816 -g1,16770:6237557,33575816 -r1,16779:6368629,33575816:131072,20348655,0 -g1,16770:6567858,33575816 -g1,16770:6764466,33575816 -[1,16770:6764466,33575816:25818563,20348655,0 -(1,16720:6764466,13981554:25818563,754393,260573 -(1,16719:6764466,13981554:0,754393,260573 -r1,16779:7856192,13981554:1091726,1014966,260573 -k1,16719:6764466,13981554:-1091726 -) -(1,16719:6764466,13981554:1091726,754393,260573 -) -k1,16719:8098923,13981554:242731 -k1,16719:8426603,13981554:327680 -k1,16719:10444049,13981554:242731 -k1,16719:13991760,13981554:242730 -k1,16719:15253576,13981554:242731 -k1,16719:18258650,13981554:242731 -k1,16719:19891400,13981554:242731 -k1,16719:23211046,13981554:242731 -k1,16719:24558059,13981554:242731 -k1,16719:28010742,13981554:242730 -k1,16719:29201124,13981554:242731 -k1,16719:30895477,13981554:242731 -k1,16719:32583029,13981554:0 -) -(1,16720:6764466,14846634:25818563,513147,134348 -k1,16719:7763285,14846634:237291 -k1,16719:10996227,14846634:237291 -k1,16719:12252602,14846634:237290 -k1,16719:14747608,14846634:237291 -k1,16719:15600937,14846634:237291 -k1,16719:17530368,14846634:237291 -k1,16719:19465040,14846634:237290 -k1,16719:20721416,14846634:237291 -k1,16719:24475369,14846634:237291 -k1,16719:26872071,14846634:237291 -k1,16719:28748416,14846634:237290 -k1,16719:29601745,14846634:237291 -k1,16719:30858121,14846634:237291 -k1,16719:32583029,14846634:0 -) -(1,16720:6764466,15711714:25818563,513147,134348 -g1,16719:8155140,15711714 -g1,16719:10422685,15711714 -g1,16719:11281206,15711714 -g1,16719:14784105,15711714 -g1,16719:15642626,15711714 -g1,16719:16860940,15711714 -g1,16719:18903041,15711714 -g1,16719:20962837,15711714 -g1,16719:21813494,15711714 -g1,16719:22760489,15711714 -g1,16719:24727224,15711714 -g1,16719:26193919,15711714 -k1,16720:32583029,15711714:3832551 -g1,16720:32583029,15711714 -) -(1,16722:6764466,16576794:25818563,513147,134348 -h1,16721:6764466,16576794:983040,0,0 -k1,16721:8596000,16576794:220659 -k1,16721:10508799,16576794:220659 -k1,16721:14059999,16576794:220660 -k1,16721:17027272,16576794:220659 -(1,16721:17027272,16576794:0,435480,115847 -r1,16779:18088961,16576794:1061689,551327,115847 -k1,16721:17027272,16576794:-1061689 -) -(1,16721:17027272,16576794:1061689,435480,115847 -k1,16721:17027272,16576794:3277 -h1,16721:18085684,16576794:0,411205,112570 -) -k1,16721:18309620,16576794:220659 -k1,16721:20097900,16576794:220659 -k1,16721:22898711,16576794:220659 -k1,16721:26064558,16576794:220660 -k1,16721:27389499,16576794:220659 -k1,16721:29833139,16576794:220659 -k1,16722:32583029,16576794:0 -) -(1,16722:6764466,17441874:25818563,513147,134348 -k1,16721:8761842,17441874:232491 -k1,16721:10265732,17441874:232492 -k1,16721:13159640,17441874:232491 -k1,16721:13923628,17441874:232491 -k1,16721:15175204,17441874:232491 -k1,16721:16500181,17441874:232492 -k1,16721:17399828,17441874:232491 -(1,16721:17399828,17441874:0,452978,122846 -r1,16779:20220077,17441874:2820249,575824,122846 -k1,16721:17399828,17441874:-2820249 -) -(1,16721:17399828,17441874:2820249,452978,122846 -k1,16721:17399828,17441874:3277 -h1,16721:20216800,17441874:0,411205,112570 -) -k1,16721:20452568,17441874:232491 -k1,16721:21301097,17441874:232491 -k1,16721:21889449,17441874:232492 -k1,16721:23685629,17441874:232491 -k1,16721:25397268,17441874:232491 -k1,16721:26548574,17441874:232491 -k1,16721:29527680,17441874:232492 -(1,16721:29527680,17441874:0,452978,115847 -r1,16779:30237658,17441874:709978,568825,115847 -k1,16721:29527680,17441874:-709978 -) -(1,16721:29527680,17441874:709978,452978,115847 -k1,16721:29527680,17441874:3277 -h1,16721:30234381,17441874:0,411205,112570 -) -k1,16721:30470149,17441874:232491 -k1,16722:32583029,17441874:0 -) -(1,16722:6764466,18306954:25818563,505283,126483 -g1,16721:8602750,18306954 -g1,16721:10484944,18306954 -g1,16721:12346821,18306954 -g1,16721:13232212,18306954 -k1,16722:32583029,18306954:16459369 -g1,16722:32583029,18306954 -) -v1,16726:6764466,18991809:0,393216,0 -(1,16734:6764466,20800244:25818563,2201651,196608 -g1,16734:6764466,20800244 -g1,16734:6764466,20800244 -g1,16734:6567858,20800244 -(1,16734:6567858,20800244:0,2201651,196608 -r1,16779:32779637,20800244:26211779,2398259,196608 -k1,16734:6567857,20800244:-26211780 -) -(1,16734:6567858,20800244:26211779,2201651,196608 -[1,16734:6764466,20800244:25818563,2005043,0 -(1,16728:6764466,19219640:25818563,424439,112852 -(1,16727:6764466,19219640:0,0,0 -g1,16727:6764466,19219640 -g1,16727:6764466,19219640 -g1,16727:6436786,19219640 -(1,16727:6436786,19219640:0,0,0 -) -g1,16727:6764466,19219640 -) -g1,16728:9420098,19219640 -g1,16728:10415960,19219640 -g1,16728:13403546,19219640 -g1,16728:14067454,19219640 -g1,16728:18382855,19219640 -g1,16728:20374579,19219640 -g1,16728:21038487,19219640 -h1,16728:21702395,19219640:0,0,0 -k1,16728:32583029,19219640:10880634 -g1,16728:32583029,19219640 -) -(1,16729:6764466,19904495:25818563,424439,106246 -h1,16729:6764466,19904495:0,0,0 -g1,16729:13071590,19904495 -h1,16729:16391129,19904495:0,0,0 -k1,16729:32583029,19904495:16191900 -g1,16729:32583029,19904495 -) -(1,16733:6764466,20720422:25818563,424439,79822 -(1,16731:6764466,20720422:0,0,0 -g1,16731:6764466,20720422 -g1,16731:6764466,20720422 -g1,16731:6436786,20720422 -(1,16731:6436786,20720422:0,0,0 -) -g1,16731:6764466,20720422 -) -g1,16733:7760328,20720422 -g1,16733:9088144,20720422 -h1,16733:10415960,20720422:0,0,0 -k1,16733:32583028,20720422:22167068 -g1,16733:32583028,20720422 -) -] -) -g1,16734:32583029,20800244 -g1,16734:6764466,20800244 -g1,16734:6764466,20800244 -g1,16734:32583029,20800244 -g1,16734:32583029,20800244 -) -h1,16734:6764466,20996852:0,0,0 -(1,16738:6764466,21861932:25818563,513147,134348 -h1,16737:6764466,21861932:983040,0,0 -g1,16737:10182823,21861932 -g1,16737:13784681,21861932 -g1,16737:14975470,21861932 -g1,16737:16460515,21861932 -g1,16737:19954239,21861932 -g1,16737:21547419,21861932 -g1,16737:22765733,21861932 -g1,16737:25640142,21861932 -g1,16737:28585985,21861932 -g1,16737:30352835,21861932 -k1,16738:32583029,21861932:15079 -g1,16738:32583029,21861932 -) -v1,16740:6764466,22546787:0,393216,0 -(1,16748:6764466,24355222:25818563,2201651,196608 -g1,16748:6764466,24355222 -g1,16748:6764466,24355222 -g1,16748:6567858,24355222 -(1,16748:6567858,24355222:0,2201651,196608 -r1,16779:32779637,24355222:26211779,2398259,196608 -k1,16748:6567857,24355222:-26211780 -) -(1,16748:6567858,24355222:26211779,2201651,196608 -[1,16748:6764466,24355222:25818563,2005043,0 -(1,16742:6764466,22774618:25818563,424439,112852 -(1,16741:6764466,22774618:0,0,0 -g1,16741:6764466,22774618 -g1,16741:6764466,22774618 -g1,16741:6436786,22774618 -(1,16741:6436786,22774618:0,0,0 -) -g1,16741:6764466,22774618 -) -g1,16742:9420098,22774618 -g1,16742:11079868,22774618 -g1,16742:14067454,22774618 -g1,16742:14731362,22774618 -g1,16742:19046763,22774618 -g1,16742:21038487,22774618 -g1,16742:21702395,22774618 -h1,16742:22366303,22774618:0,0,0 -k1,16742:32583029,22774618:10216726 -g1,16742:32583029,22774618 -) -(1,16743:6764466,23459473:25818563,424439,106246 -h1,16743:6764466,23459473:0,0,0 -g1,16743:13071590,23459473 -h1,16743:16391129,23459473:0,0,0 -k1,16743:32583029,23459473:16191900 -g1,16743:32583029,23459473 -) -(1,16747:6764466,24275400:25818563,424439,79822 -(1,16745:6764466,24275400:0,0,0 -g1,16745:6764466,24275400 -g1,16745:6764466,24275400 -g1,16745:6436786,24275400 -(1,16745:6436786,24275400:0,0,0 -) -g1,16745:6764466,24275400 -) -g1,16747:7760328,24275400 -g1,16747:9088144,24275400 -h1,16747:10415960,24275400:0,0,0 -k1,16747:32583028,24275400:22167068 -g1,16747:32583028,24275400 -) -] -) -g1,16748:32583029,24355222 -g1,16748:6764466,24355222 -g1,16748:6764466,24355222 -g1,16748:32583029,24355222 -g1,16748:32583029,24355222 -) -h1,16748:6764466,24551830:0,0,0 -(1,16752:6764466,25416910:25818563,513147,134348 -h1,16751:6764466,25416910:983040,0,0 -k1,16751:10873507,25416910:191299 -k1,16751:12083891,25416910:191299 -k1,16751:13665209,25416910:191299 -k1,16751:16603122,25416910:191299 -(1,16751:16810216,25416910:0,435480,115847 -r1,16779:17871905,25416910:1061689,551327,115847 -k1,16751:16810216,25416910:-1061689 -) -(1,16751:16810216,25416910:1061689,435480,115847 -k1,16751:16810216,25416910:3277 -h1,16751:17868628,25416910:0,411205,112570 -) -k1,16751:18270298,25416910:191299 -k1,16751:20029218,25416910:191299 -k1,16751:22800669,25416910:191299 -k1,16751:25937155,25416910:191299 -k1,16751:28450395,25416910:191299 -k1,16751:29833139,25416910:191299 -k1,16752:32583029,25416910:0 -) -(1,16752:6764466,26281990:25818563,513147,134348 -g1,16751:8554909,26281990 -g1,16751:10111389,26281990 -g1,16751:10962046,26281990 -g1,16751:13167987,26281990 -g1,16751:14386301,26281990 -g1,16751:16265873,26281990 -g1,16751:17116530,26281990 -g1,16751:18334844,26281990 -k1,16752:32583029,26281990:12457742 -g1,16752:32583029,26281990 -) -v1,16754:6764466,26966845:0,393216,0 -(1,16766:6764466,31514700:25818563,4941071,196608 -g1,16766:6764466,31514700 -g1,16766:6764466,31514700 -g1,16766:6567858,31514700 -(1,16766:6567858,31514700:0,4941071,196608 -r1,16779:32779637,31514700:26211779,5137679,196608 -k1,16766:6567857,31514700:-26211780 -) -(1,16766:6567858,31514700:26211779,4941071,196608 -[1,16766:6764466,31514700:25818563,4744463,0 -(1,16756:6764466,27194676:25818563,424439,112852 -(1,16755:6764466,27194676:0,0,0 -g1,16755:6764466,27194676 -g1,16755:6764466,27194676 -g1,16755:6436786,27194676 -(1,16755:6436786,27194676:0,0,0 -) -g1,16755:6764466,27194676 -) -g1,16756:9420098,27194676 -g1,16756:10747914,27194676 -g1,16756:13735500,27194676 -g1,16756:14399408,27194676 -g1,16756:18714809,27194676 -g1,16756:20706533,27194676 -g1,16756:21370441,27194676 -h1,16756:22034349,27194676:0,0,0 -k1,16756:32583029,27194676:10548680 -g1,16756:32583029,27194676 -) -(1,16757:6764466,27879531:25818563,431045,79822 -h1,16757:6764466,27879531:0,0,0 -g1,16757:7760328,27879531 -g1,16757:15063315,27879531 -h1,16757:15395269,27879531:0,0,0 -k1,16757:32583029,27879531:17187760 -g1,16757:32583029,27879531 -) -(1,16758:6764466,28564386:25818563,424439,106246 -h1,16758:6764466,28564386:0,0,0 -g1,16758:7096420,28564386 -g1,16758:7428374,28564386 -g1,16758:13735498,28564386 -h1,16758:17055037,28564386:0,0,0 -k1,16758:32583029,28564386:15527992 -g1,16758:32583029,28564386 -) -(1,16759:6764466,29249241:25818563,424439,79822 -h1,16759:6764466,29249241:0,0,0 -g1,16759:7428374,29249241 -g1,16759:9088144,29249241 -h1,16759:9420098,29249241:0,0,0 -k1,16759:32583030,29249241:23162932 -g1,16759:32583030,29249241 -) -(1,16760:6764466,29934096:25818563,431045,106246 -h1,16760:6764466,29934096:0,0,0 -g1,16760:7096420,29934096 -g1,16760:7428374,29934096 -g1,16760:13735499,29934096 -g1,16760:15063315,29934096 -h1,16760:17718947,29934096:0,0,0 -k1,16760:32583029,29934096:14864082 -g1,16760:32583029,29934096 -) -(1,16761:6764466,30618951:25818563,424439,79822 -h1,16761:6764466,30618951:0,0,0 -h1,16761:7096420,30618951:0,0,0 -k1,16761:32583028,30618951:25486608 -g1,16761:32583028,30618951 -) -(1,16765:6764466,31434878:25818563,431045,79822 -(1,16763:6764466,31434878:0,0,0 -g1,16763:6764466,31434878 -g1,16763:6764466,31434878 -g1,16763:6436786,31434878 -(1,16763:6436786,31434878:0,0,0 -) -g1,16763:6764466,31434878 -) -g1,16765:7760328,31434878 -g1,16765:9088144,31434878 -g1,16765:13403545,31434878 -g1,16765:14731361,31434878 -h1,16765:17055039,31434878:0,0,0 -k1,16765:32583029,31434878:15527990 -g1,16765:32583029,31434878 -) -] -) -g1,16766:32583029,31514700 -g1,16766:6764466,31514700 -g1,16766:6764466,31514700 -g1,16766:32583029,31514700 -g1,16766:32583029,31514700 -) -h1,16766:6764466,31711308:0,0,0 -(1,16770:6764466,32576388:25818563,505283,134348 -h1,16769:6764466,32576388:983040,0,0 -k1,16769:10880913,32576388:170524 -k1,16769:12706222,32576388:170525 -k1,16769:13868306,32576388:170524 -k1,16769:16326038,32576388:170525 -k1,16769:20213764,32576388:170524 -k1,16769:21035717,32576388:170525 -k1,16769:22184694,32576388:170524 -k1,16769:23374304,32576388:170525 -k1,16769:27939017,32576388:170524 -k1,16769:29686994,32576388:170525 -k1,16769:32583029,32576388:0 -) -(1,16770:6764466,33441468:25818563,513147,134348 -g1,16769:10632400,33441468 -g1,16769:12587339,33441468 -g1,16769:15961132,33441468 -g1,16769:17264643,33441468 -g1,16769:18211638,33441468 -k1,16770:32583029,33441468:11175856 -g1,16770:32583029,33441468 -) -] -g1,16770:32583029,33575816 -) -h1,16770:6630773,33575816:0,0,0 -(1,16775:6630773,36406976:25952256,32768,229376 -(1,16775:6630773,36406976:0,32768,229376 -(1,16775:6630773,36406976:5505024,32768,229376 -r1,16779:12135797,36406976:5505024,262144,229376 -) -k1,16775:6630773,36406976:-5505024 -) -(1,16775:6630773,36406976:25952256,32768,0 -r1,16779:32583029,36406976:25952256,32768,0 -) -) -(1,16775:6630773,38038828:25952256,606339,161218 -(1,16775:6630773,38038828:1974731,582746,14155 -g1,16775:6630773,38038828 -g1,16775:8605504,38038828 -) -g1,16775:12976493,38038828 -g1,16775:14989759,38038828 -k1,16775:32583029,38038828:15265432 -g1,16775:32583029,38038828 -) -(1,16779:6630773,39297124:25952256,513147,134348 -k1,16778:8295186,39297124:192474 -k1,16778:10525830,39297124:192474 -k1,16778:11334342,39297124:192474 -k1,16778:14451688,39297124:192474 -k1,16778:17154846,39297124:192474 -k1,16778:18451602,39297124:192474 -k1,16778:19391842,39297124:192474 -k1,16778:22429889,39297124:192474 -k1,16778:23238401,39297124:192474 -k1,16778:26193218,39297124:192474 -k1,16778:28127639,39297124:192474 -k1,16778:29810402,39297124:192474 -k1,16778:31194321,39297124:192474 -k1,16778:32583029,39297124:0 -) -(1,16779:6630773,40162204:25952256,513147,134348 -k1,16778:9023997,40162204:222017 -h1,16778:9994585,40162204:0,0,0 -k1,16778:10597365,40162204:222016 -k1,16778:11447217,40162204:222017 -k1,16778:13103161,40162204:222016 -k1,16778:13739998,40162204:221994 -k1,16778:15563715,40162204:222017 -k1,16778:17773438,40162204:222016 -k1,16778:19930078,40162204:222017 -k1,16778:23177892,40162204:222017 -k1,16778:24591353,40162204:222016 -k1,16778:25832455,40162204:222017 -(1,16778:25832455,40162204:0,452978,115847 -r1,16779:27949280,40162204:2116825,568825,115847 -k1,16778:25832455,40162204:-2116825 -) -(1,16778:25832455,40162204:2116825,452978,115847 -k1,16778:25832455,40162204:3277 -h1,16778:27946003,40162204:0,411205,112570 -) -k1,16778:28171296,40162204:222016 -k1,16778:30847636,40162204:222017 -k1,16778:32583029,40162204:0 -) -(1,16779:6630773,41027284:25952256,513147,134348 -k1,16778:9212324,41027284:200628 -k1,16778:12460375,41027284:200627 -k1,16778:14731941,41027284:200628 -k1,16778:16321931,41027284:200627 -k1,16778:17173987,41027284:200628 -k1,16778:18122381,41027284:200628 -k1,16778:21168581,41027284:200627 -k1,16778:21985247,41027284:200628 -k1,16778:23874737,41027284:200627 -k1,16778:25943141,41027284:200628 -k1,16778:26868597,41027284:200628 -k1,16778:28353730,41027284:200627 -k1,16778:30005980,41027284:200628 -k1,16778:31410503,41027284:200627 -k1,16778:32227169,41027284:200628 -k1,16778:32583029,41027284:0 -) -(1,16779:6630773,41892364:25952256,513147,134348 -k1,16778:8230179,41892364:210043 -k1,16778:10316518,41892364:210043 -k1,16778:14490178,41892364:210043 -k1,16778:15351649,41892364:210043 -k1,16778:15917552,41892364:210043 -k1,16778:18000614,41892364:210043 -k1,16778:21952106,41892364:210042 -k1,16778:23052128,41892364:210043 -k1,16778:27812336,41892364:210043 -k1,16778:29745976,41892364:210043 -k1,16778:30765389,41892364:210043 -k1,16778:31331292,41892364:210043 -k1,16779:32583029,41892364:0 -) -(1,16779:6630773,42757444:25952256,513147,134348 -k1,16778:8128568,42757444:159550 -k1,16778:9763334,42757444:159551 -k1,16778:12305773,42757444:159550 -k1,16778:16428940,42757444:159550 -k1,16778:17239919,42757444:159551 -k1,16778:17755329,42757444:159550 -k1,16778:20677223,42757444:159551 -k1,16778:23961530,42757444:159550 -k1,16778:26570160,42757444:159550 -k1,16778:27412596,42757444:159551 -k1,16778:30293201,42757444:159550 -k1,16779:32583029,42757444:0 -) -(1,16779:6630773,43622524:25952256,513147,134348 -k1,16778:8477679,43622524:223579 -k1,16778:9847482,43622524:223578 -k1,16778:11090146,43622524:223579 -k1,16778:12739133,43622524:223579 -k1,16778:13622003,43622524:223578 -k1,16778:18362323,43622524:223579 -k1,16778:19268787,43622524:223579 -k1,16778:19848226,43622524:223579 -k1,16778:21965794,43622524:223578 -k1,16778:25501563,43622524:223579 -k1,16778:26081002,43622524:223579 -k1,16778:30448421,43622524:223578 -k1,16778:31331292,43622524:223579 -k1,16779:32583029,43622524:0 -) -(1,16779:6630773,44487604:25952256,513147,134348 -k1,16778:8327738,44487604:202089 -k1,16778:11646720,44487604:202090 -k1,16778:12500237,44487604:202089 -k1,16778:16177045,44487604:202089 -k1,16778:17062019,44487604:202089 -k1,16778:19869820,44487604:202090 -k1,16778:20731201,44487604:202089 -k1,16778:21952375,44487604:202089 -k1,16778:26324520,44487604:202089 -k1,16778:28615242,44487604:202090 -k1,16778:30266987,44487604:202089 -k1,16778:32583029,44487604:0 -) -(1,16779:6630773,45352684:25952256,505283,134348 -k1,16778:10200565,45352684:226801 -k1,16778:13552124,45352684:226802 -k1,16778:14588295,45352684:226801 -k1,16778:15834182,45352684:226802 -k1,16778:17714456,45352684:226801 -k1,16778:20251402,45352684:226802 -k1,16778:21090965,45352684:226801 -k1,16778:22088469,45352684:226801 -k1,16778:24348853,45352684:226802 -k1,16778:26263861,45352684:226801 -k1,16778:27106701,45352684:226802 -k1,16778:28758910,45352684:226801 -k1,16778:30322646,45352684:226802 -k1,16778:31835263,45352684:226801 -k1,16778:32583029,45352684:0 -) -] -(1,16779:32583029,45706769:0,0,0 -g1,16779:32583029,45706769 -) -) -] -(1,16779:6630773,47279633:25952256,0,0 -h1,16779:6630773,47279633:25952256,0,0 -) -] -(1,16779:4262630,4025873:0,0,0 -[1,16779:-473656,4025873:0,0,0 -(1,16779:-473656,-710413:0,0,0 -(1,16779:-473656,-710413:0,0,0 -g1,16779:-473656,-710413 -) -g1,16779:-473656,-710413 +] +g1,16777:6630773,4812305 +k1,16777:23347041,4812305:15520891 +g1,16777:23960458,4812305 +g1,16777:27572802,4812305 +g1,16777:29306229,4812305 +) +) +] +[1,16777:6630773,45706769:25952256,40108032,0 +(1,16777:6630773,45706769:25952256,40108032,0 +(1,16777:6630773,45706769:0,0,0 +g1,16777:6630773,45706769 +) +[1,16777:6630773,45706769:25952256,40108032,0 +(1,16711:6630773,6254097:25952256,513147,134348 +k1,16710:12086756,6254097:225555 +k1,16710:12940147,6254097:225556 +k1,16710:14867672,6254097:225555 +k1,16710:17221836,6254097:225555 +k1,16710:17862208,6254097:225529 +k1,16710:19808083,6254097:225555 +k1,16710:21025199,6254097:225556 +k1,16710:22021457,6254097:225555 +k1,16710:25633913,6254097:225555 +k1,16710:27097443,6254097:225555 +k1,16710:27982291,6254097:225556 +k1,16710:30465561,6254097:225555 +k1,16710:32583029,6254097:0 +) +(1,16711:6630773,7119177:25952256,513147,134348 +g1,16710:9525498,7119177 +g1,16710:11328393,7119177 +g1,16710:14094012,7119177 +g1,16710:14708084,7119177 +k1,16711:32583029,7119177:12961711 +g1,16711:32583029,7119177 +) +(1,16714:7202902,8639617:24807998,513147,126483 +(1,16712:7202902,8639617:983040,0,0 +g1,16712:8185942,8639617 +g1,16712:6875222,8639617 +g1,16712:6547542,8639617 +(1,16712:6547542,8639617:1310720,0,0 +k1,16712:7858262,8639617:1310720 +) +g1,16712:8185942,8639617 +) +k1,16713:11613229,8639617:221266 +k1,16713:13224514,8639617:221266 +k1,16713:16850375,8639617:221266 +k1,16713:18063201,8639617:221266 +k1,16713:22485979,8639617:221265 +k1,16713:23393407,8639617:221266 +k1,16713:25698718,8639617:221266 +k1,16713:31261168,8639617:221266 +k1,16713:32010900,8639617:0 +) +(1,16714:7202902,9504697:24807998,505283,126483 +k1,16713:8220036,9504697:246431 +k1,16713:11906452,9504697:246431 +k1,16713:14439434,9504697:246431 +k1,16713:15372027,9504697:246431 +(1,16713:15372027,9504697:0,459977,115847 +r1,16777:18543988,9504697:3171961,575824,115847 +k1,16713:15372027,9504697:-3171961 +) +(1,16713:15372027,9504697:3171961,459977,115847 +g1,16713:16078728,9504697 +g1,16713:17133864,9504697 +h1,16713:18540711,9504697:0,411205,112570 +) +k1,16713:18790419,9504697:246431 +k1,16713:19568347,9504697:246431 +k1,16713:21978121,9504697:246431 +k1,16713:22910714,9504697:246431 +(1,16713:22910714,9504697:0,459977,115847 +r1,16777:25379251,9504697:2468537,575824,115847 +k1,16713:22910714,9504697:-2468537 +) +(1,16713:22910714,9504697:2468537,459977,115847 +g1,16713:24672550,9504697 +h1,16713:25375974,9504697:0,411205,112570 +) +k1,16713:25799352,9504697:246431 +k1,16713:26515676,9504697:246431 +k1,16713:27293604,9504697:246431 +k1,16713:29415675,9504697:246431 +k1,16714:32010900,9504697:0 +) +(1,16714:7202902,10369777:24807998,505283,134348 +k1,16713:9029096,10369777:304448 +k1,16713:10618050,10369777:304448 +k1,16713:12612016,10369777:304448 +k1,16713:13935550,10369777:304449 +k1,16713:15736185,10369777:304448 +k1,16713:16656671,10369777:304448 +k1,16713:17316979,10369777:304448 +k1,16713:20179953,10369777:304448 +k1,16713:21015898,10369777:304448 +k1,16713:23606897,10369777:304448 +k1,16713:27929357,10369777:304448 +k1,16713:30507905,10369777:304449 +k1,16713:31227090,10369777:304342 +k1,16714:32010900,10369777:0 +) +(1,16714:7202902,11234857:24807998,513147,126483 +k1,16713:9941413,11234857:225861 +k1,16713:11114924,11234857:225860 +k1,16713:14644455,11234857:225861 +k1,16713:16633890,11234857:225861 +k1,16713:18051196,11234857:225861 +k1,16713:19001884,11234857:225860 +k1,16713:21038505,11234857:225861 +k1,16713:25034652,11234857:225861 +k1,16713:26392975,11234857:225861 +k1,16713:27366601,11234857:225860 +k1,16713:30653649,11234857:225861 +k1,16713:32010900,11234857:0 +) +(1,16714:7202902,12099937:24807998,513147,126483 +g1,16713:9073955,12099937 +g1,16713:10579317,12099937 +g1,16713:12291772,12099937 +g1,16713:13107039,12099937 +g1,16713:14325353,12099937 +g1,16713:15558085,12099937 +k1,16714:32010900,12099937:12960402 +g1,16714:32010900,12099937 +) +v1,16717:6630773,13620377:0,393216,0 +(1,16768:6630773,33575816:25952256,20348655,0 +g1,16768:6630773,33575816 +g1,16768:6237557,33575816 +r1,16777:6368629,33575816:131072,20348655,0 +g1,16768:6567858,33575816 +g1,16768:6764466,33575816 +[1,16768:6764466,33575816:25818563,20348655,0 +(1,16718:6764466,13981554:25818563,754393,260573 +(1,16717:6764466,13981554:0,754393,260573 +r1,16777:7856192,13981554:1091726,1014966,260573 +k1,16717:6764466,13981554:-1091726 +) +(1,16717:6764466,13981554:1091726,754393,260573 +) +k1,16717:8098923,13981554:242731 +k1,16717:8426603,13981554:327680 +k1,16717:10444049,13981554:242731 +k1,16717:13991760,13981554:242730 +k1,16717:15253576,13981554:242731 +k1,16717:18258650,13981554:242731 +k1,16717:19891400,13981554:242731 +k1,16717:23211046,13981554:242731 +k1,16717:24558059,13981554:242731 +k1,16717:28010742,13981554:242730 +k1,16717:29201124,13981554:242731 +k1,16717:30895477,13981554:242731 +k1,16717:32583029,13981554:0 +) +(1,16718:6764466,14846634:25818563,513147,134348 +k1,16717:7763285,14846634:237291 +k1,16717:10996227,14846634:237291 +k1,16717:12252602,14846634:237290 +k1,16717:14747608,14846634:237291 +k1,16717:15600937,14846634:237291 +k1,16717:17530368,14846634:237291 +k1,16717:19465040,14846634:237290 +k1,16717:20721416,14846634:237291 +k1,16717:24475369,14846634:237291 +k1,16717:26872071,14846634:237291 +k1,16717:28748416,14846634:237290 +k1,16717:29601745,14846634:237291 +k1,16717:30858121,14846634:237291 +k1,16717:32583029,14846634:0 +) +(1,16718:6764466,15711714:25818563,513147,134348 +g1,16717:8155140,15711714 +g1,16717:10422685,15711714 +g1,16717:11281206,15711714 +g1,16717:14784105,15711714 +g1,16717:15642626,15711714 +g1,16717:16860940,15711714 +g1,16717:18903041,15711714 +g1,16717:20962837,15711714 +g1,16717:21813494,15711714 +g1,16717:22760489,15711714 +g1,16717:24727224,15711714 +g1,16717:26193919,15711714 +k1,16718:32583029,15711714:3832551 +g1,16718:32583029,15711714 +) +(1,16720:6764466,16576794:25818563,513147,134348 +h1,16719:6764466,16576794:983040,0,0 +k1,16719:8596000,16576794:220659 +k1,16719:10508799,16576794:220659 +k1,16719:14059999,16576794:220660 +k1,16719:17027272,16576794:220659 +(1,16719:17027272,16576794:0,435480,115847 +r1,16777:18088961,16576794:1061689,551327,115847 +k1,16719:17027272,16576794:-1061689 +) +(1,16719:17027272,16576794:1061689,435480,115847 +k1,16719:17027272,16576794:3277 +h1,16719:18085684,16576794:0,411205,112570 +) +k1,16719:18309620,16576794:220659 +k1,16719:20097900,16576794:220659 +k1,16719:22898711,16576794:220659 +k1,16719:26064558,16576794:220660 +k1,16719:27389499,16576794:220659 +k1,16719:29833139,16576794:220659 +k1,16720:32583029,16576794:0 +) +(1,16720:6764466,17441874:25818563,513147,134348 +k1,16719:8761842,17441874:232491 +k1,16719:10265732,17441874:232492 +k1,16719:13159640,17441874:232491 +k1,16719:13923628,17441874:232491 +k1,16719:15175204,17441874:232491 +k1,16719:16500181,17441874:232492 +k1,16719:17399828,17441874:232491 +(1,16719:17399828,17441874:0,452978,122846 +r1,16777:20220077,17441874:2820249,575824,122846 +k1,16719:17399828,17441874:-2820249 +) +(1,16719:17399828,17441874:2820249,452978,122846 +k1,16719:17399828,17441874:3277 +h1,16719:20216800,17441874:0,411205,112570 +) +k1,16719:20452568,17441874:232491 +k1,16719:21301097,17441874:232491 +k1,16719:21889449,17441874:232492 +k1,16719:23685629,17441874:232491 +k1,16719:25397268,17441874:232491 +k1,16719:26548574,17441874:232491 +k1,16719:29527680,17441874:232492 +(1,16719:29527680,17441874:0,452978,115847 +r1,16777:30237658,17441874:709978,568825,115847 +k1,16719:29527680,17441874:-709978 +) +(1,16719:29527680,17441874:709978,452978,115847 +k1,16719:29527680,17441874:3277 +h1,16719:30234381,17441874:0,411205,112570 +) +k1,16719:30470149,17441874:232491 +k1,16720:32583029,17441874:0 +) +(1,16720:6764466,18306954:25818563,505283,126483 +g1,16719:8602750,18306954 +g1,16719:10484944,18306954 +g1,16719:12346821,18306954 +g1,16719:13232212,18306954 +k1,16720:32583029,18306954:16459369 +g1,16720:32583029,18306954 +) +v1,16724:6764466,18991809:0,393216,0 +(1,16732:6764466,20800244:25818563,2201651,196608 +g1,16732:6764466,20800244 +g1,16732:6764466,20800244 +g1,16732:6567858,20800244 +(1,16732:6567858,20800244:0,2201651,196608 +r1,16777:32779637,20800244:26211779,2398259,196608 +k1,16732:6567857,20800244:-26211780 +) +(1,16732:6567858,20800244:26211779,2201651,196608 +[1,16732:6764466,20800244:25818563,2005043,0 +(1,16726:6764466,19219640:25818563,424439,112852 +(1,16725:6764466,19219640:0,0,0 +g1,16725:6764466,19219640 +g1,16725:6764466,19219640 +g1,16725:6436786,19219640 +(1,16725:6436786,19219640:0,0,0 +) +g1,16725:6764466,19219640 +) +g1,16726:9420098,19219640 +g1,16726:10415960,19219640 +g1,16726:13403546,19219640 +g1,16726:14067454,19219640 +g1,16726:18382855,19219640 +g1,16726:20374579,19219640 +g1,16726:21038487,19219640 +h1,16726:21702395,19219640:0,0,0 +k1,16726:32583029,19219640:10880634 +g1,16726:32583029,19219640 +) +(1,16727:6764466,19904495:25818563,424439,106246 +h1,16727:6764466,19904495:0,0,0 +g1,16727:13071590,19904495 +h1,16727:16391129,19904495:0,0,0 +k1,16727:32583029,19904495:16191900 +g1,16727:32583029,19904495 +) +(1,16731:6764466,20720422:25818563,424439,79822 +(1,16729:6764466,20720422:0,0,0 +g1,16729:6764466,20720422 +g1,16729:6764466,20720422 +g1,16729:6436786,20720422 +(1,16729:6436786,20720422:0,0,0 +) +g1,16729:6764466,20720422 +) +g1,16731:7760328,20720422 +g1,16731:9088144,20720422 +h1,16731:10415960,20720422:0,0,0 +k1,16731:32583028,20720422:22167068 +g1,16731:32583028,20720422 +) +] +) +g1,16732:32583029,20800244 +g1,16732:6764466,20800244 +g1,16732:6764466,20800244 +g1,16732:32583029,20800244 +g1,16732:32583029,20800244 +) +h1,16732:6764466,20996852:0,0,0 +(1,16736:6764466,21861932:25818563,513147,134348 +h1,16735:6764466,21861932:983040,0,0 +g1,16735:10182823,21861932 +g1,16735:13784681,21861932 +g1,16735:14975470,21861932 +g1,16735:16460515,21861932 +g1,16735:19954239,21861932 +g1,16735:21547419,21861932 +g1,16735:22765733,21861932 +g1,16735:25640142,21861932 +g1,16735:28585985,21861932 +g1,16735:30352835,21861932 +k1,16736:32583029,21861932:15079 +g1,16736:32583029,21861932 +) +v1,16738:6764466,22546787:0,393216,0 +(1,16746:6764466,24355222:25818563,2201651,196608 +g1,16746:6764466,24355222 +g1,16746:6764466,24355222 +g1,16746:6567858,24355222 +(1,16746:6567858,24355222:0,2201651,196608 +r1,16777:32779637,24355222:26211779,2398259,196608 +k1,16746:6567857,24355222:-26211780 +) +(1,16746:6567858,24355222:26211779,2201651,196608 +[1,16746:6764466,24355222:25818563,2005043,0 +(1,16740:6764466,22774618:25818563,424439,112852 +(1,16739:6764466,22774618:0,0,0 +g1,16739:6764466,22774618 +g1,16739:6764466,22774618 +g1,16739:6436786,22774618 +(1,16739:6436786,22774618:0,0,0 +) +g1,16739:6764466,22774618 +) +g1,16740:9420098,22774618 +g1,16740:11079868,22774618 +g1,16740:14067454,22774618 +g1,16740:14731362,22774618 +g1,16740:19046763,22774618 +g1,16740:21038487,22774618 +g1,16740:21702395,22774618 +h1,16740:22366303,22774618:0,0,0 +k1,16740:32583029,22774618:10216726 +g1,16740:32583029,22774618 +) +(1,16741:6764466,23459473:25818563,424439,106246 +h1,16741:6764466,23459473:0,0,0 +g1,16741:13071590,23459473 +h1,16741:16391129,23459473:0,0,0 +k1,16741:32583029,23459473:16191900 +g1,16741:32583029,23459473 +) +(1,16745:6764466,24275400:25818563,424439,79822 +(1,16743:6764466,24275400:0,0,0 +g1,16743:6764466,24275400 +g1,16743:6764466,24275400 +g1,16743:6436786,24275400 +(1,16743:6436786,24275400:0,0,0 +) +g1,16743:6764466,24275400 +) +g1,16745:7760328,24275400 +g1,16745:9088144,24275400 +h1,16745:10415960,24275400:0,0,0 +k1,16745:32583028,24275400:22167068 +g1,16745:32583028,24275400 +) +] +) +g1,16746:32583029,24355222 +g1,16746:6764466,24355222 +g1,16746:6764466,24355222 +g1,16746:32583029,24355222 +g1,16746:32583029,24355222 +) +h1,16746:6764466,24551830:0,0,0 +(1,16750:6764466,25416910:25818563,513147,134348 +h1,16749:6764466,25416910:983040,0,0 +k1,16749:10873507,25416910:191299 +k1,16749:12083891,25416910:191299 +k1,16749:13665209,25416910:191299 +k1,16749:16603122,25416910:191299 +(1,16749:16810216,25416910:0,435480,115847 +r1,16777:17871905,25416910:1061689,551327,115847 +k1,16749:16810216,25416910:-1061689 +) +(1,16749:16810216,25416910:1061689,435480,115847 +k1,16749:16810216,25416910:3277 +h1,16749:17868628,25416910:0,411205,112570 +) +k1,16749:18270298,25416910:191299 +k1,16749:20029218,25416910:191299 +k1,16749:22800669,25416910:191299 +k1,16749:25937155,25416910:191299 +k1,16749:28450395,25416910:191299 +k1,16749:29833139,25416910:191299 +k1,16750:32583029,25416910:0 +) +(1,16750:6764466,26281990:25818563,513147,134348 +g1,16749:8554909,26281990 +g1,16749:10111389,26281990 +g1,16749:10962046,26281990 +g1,16749:13167987,26281990 +g1,16749:14386301,26281990 +g1,16749:16265873,26281990 +g1,16749:17116530,26281990 +g1,16749:18334844,26281990 +k1,16750:32583029,26281990:12457742 +g1,16750:32583029,26281990 +) +v1,16752:6764466,26966845:0,393216,0 +(1,16764:6764466,31514700:25818563,4941071,196608 +g1,16764:6764466,31514700 +g1,16764:6764466,31514700 +g1,16764:6567858,31514700 +(1,16764:6567858,31514700:0,4941071,196608 +r1,16777:32779637,31514700:26211779,5137679,196608 +k1,16764:6567857,31514700:-26211780 +) +(1,16764:6567858,31514700:26211779,4941071,196608 +[1,16764:6764466,31514700:25818563,4744463,0 +(1,16754:6764466,27194676:25818563,424439,112852 +(1,16753:6764466,27194676:0,0,0 +g1,16753:6764466,27194676 +g1,16753:6764466,27194676 +g1,16753:6436786,27194676 +(1,16753:6436786,27194676:0,0,0 +) +g1,16753:6764466,27194676 +) +g1,16754:9420098,27194676 +g1,16754:10747914,27194676 +g1,16754:13735500,27194676 +g1,16754:14399408,27194676 +g1,16754:18714809,27194676 +g1,16754:20706533,27194676 +g1,16754:21370441,27194676 +h1,16754:22034349,27194676:0,0,0 +k1,16754:32583029,27194676:10548680 +g1,16754:32583029,27194676 +) +(1,16755:6764466,27879531:25818563,431045,79822 +h1,16755:6764466,27879531:0,0,0 +g1,16755:7760328,27879531 +g1,16755:15063315,27879531 +h1,16755:15395269,27879531:0,0,0 +k1,16755:32583029,27879531:17187760 +g1,16755:32583029,27879531 +) +(1,16756:6764466,28564386:25818563,424439,106246 +h1,16756:6764466,28564386:0,0,0 +g1,16756:7096420,28564386 +g1,16756:7428374,28564386 +g1,16756:13735498,28564386 +h1,16756:17055037,28564386:0,0,0 +k1,16756:32583029,28564386:15527992 +g1,16756:32583029,28564386 +) +(1,16757:6764466,29249241:25818563,424439,79822 +h1,16757:6764466,29249241:0,0,0 +g1,16757:7428374,29249241 +g1,16757:9088144,29249241 +h1,16757:9420098,29249241:0,0,0 +k1,16757:32583030,29249241:23162932 +g1,16757:32583030,29249241 +) +(1,16758:6764466,29934096:25818563,431045,106246 +h1,16758:6764466,29934096:0,0,0 +g1,16758:7096420,29934096 +g1,16758:7428374,29934096 +g1,16758:13735499,29934096 +g1,16758:15063315,29934096 +h1,16758:17718947,29934096:0,0,0 +k1,16758:32583029,29934096:14864082 +g1,16758:32583029,29934096 +) +(1,16759:6764466,30618951:25818563,424439,79822 +h1,16759:6764466,30618951:0,0,0 +h1,16759:7096420,30618951:0,0,0 +k1,16759:32583028,30618951:25486608 +g1,16759:32583028,30618951 +) +(1,16763:6764466,31434878:25818563,431045,79822 +(1,16761:6764466,31434878:0,0,0 +g1,16761:6764466,31434878 +g1,16761:6764466,31434878 +g1,16761:6436786,31434878 +(1,16761:6436786,31434878:0,0,0 +) +g1,16761:6764466,31434878 +) +g1,16763:7760328,31434878 +g1,16763:9088144,31434878 +g1,16763:13403545,31434878 +g1,16763:14731361,31434878 +h1,16763:17055039,31434878:0,0,0 +k1,16763:32583029,31434878:15527990 +g1,16763:32583029,31434878 +) +] +) +g1,16764:32583029,31514700 +g1,16764:6764466,31514700 +g1,16764:6764466,31514700 +g1,16764:32583029,31514700 +g1,16764:32583029,31514700 +) +h1,16764:6764466,31711308:0,0,0 +(1,16768:6764466,32576388:25818563,505283,134348 +h1,16767:6764466,32576388:983040,0,0 +k1,16767:10880913,32576388:170524 +k1,16767:12706222,32576388:170525 +k1,16767:13868306,32576388:170524 +k1,16767:16326038,32576388:170525 +k1,16767:20213764,32576388:170524 +k1,16767:21035717,32576388:170525 +k1,16767:22184694,32576388:170524 +k1,16767:23374304,32576388:170525 +k1,16767:27939017,32576388:170524 +k1,16767:29686994,32576388:170525 +k1,16767:32583029,32576388:0 +) +(1,16768:6764466,33441468:25818563,513147,134348 +g1,16767:10632400,33441468 +g1,16767:12587339,33441468 +g1,16767:15961132,33441468 +g1,16767:17264643,33441468 +g1,16767:18211638,33441468 +k1,16768:32583029,33441468:11175856 +g1,16768:32583029,33441468 +) +] +g1,16768:32583029,33575816 +) +h1,16768:6630773,33575816:0,0,0 +(1,16773:6630773,36406976:25952256,32768,229376 +(1,16773:6630773,36406976:0,32768,229376 +(1,16773:6630773,36406976:5505024,32768,229376 +r1,16777:12135797,36406976:5505024,262144,229376 +) +k1,16773:6630773,36406976:-5505024 +) +(1,16773:6630773,36406976:25952256,32768,0 +r1,16777:32583029,36406976:25952256,32768,0 +) +) +(1,16773:6630773,38038828:25952256,606339,161218 +(1,16773:6630773,38038828:1974731,582746,14155 +g1,16773:6630773,38038828 +g1,16773:8605504,38038828 +) +g1,16773:12976493,38038828 +g1,16773:14989759,38038828 +k1,16773:32583029,38038828:15265432 +g1,16773:32583029,38038828 +) +(1,16777:6630773,39297124:25952256,513147,134348 +k1,16776:8295186,39297124:192474 +k1,16776:10525830,39297124:192474 +k1,16776:11334342,39297124:192474 +k1,16776:14451688,39297124:192474 +k1,16776:17154846,39297124:192474 +k1,16776:18451602,39297124:192474 +k1,16776:19391842,39297124:192474 +k1,16776:22429889,39297124:192474 +k1,16776:23238401,39297124:192474 +k1,16776:26193218,39297124:192474 +k1,16776:28127639,39297124:192474 +k1,16776:29810402,39297124:192474 +k1,16776:31194321,39297124:192474 +k1,16776:32583029,39297124:0 +) +(1,16777:6630773,40162204:25952256,513147,134348 +k1,16776:9023997,40162204:222017 +h1,16776:9994585,40162204:0,0,0 +k1,16776:10597365,40162204:222016 +k1,16776:11447217,40162204:222017 +k1,16776:13103161,40162204:222016 +k1,16776:13739998,40162204:221994 +k1,16776:15563715,40162204:222017 +k1,16776:17773438,40162204:222016 +k1,16776:19930078,40162204:222017 +k1,16776:23177892,40162204:222017 +k1,16776:24591353,40162204:222016 +k1,16776:25832455,40162204:222017 +(1,16776:25832455,40162204:0,452978,115847 +r1,16777:27949280,40162204:2116825,568825,115847 +k1,16776:25832455,40162204:-2116825 +) +(1,16776:25832455,40162204:2116825,452978,115847 +k1,16776:25832455,40162204:3277 +h1,16776:27946003,40162204:0,411205,112570 +) +k1,16776:28171296,40162204:222016 +k1,16776:30847636,40162204:222017 +k1,16776:32583029,40162204:0 +) +(1,16777:6630773,41027284:25952256,513147,134348 +k1,16776:9212324,41027284:200628 +k1,16776:12460375,41027284:200627 +k1,16776:14731941,41027284:200628 +k1,16776:16321931,41027284:200627 +k1,16776:17173987,41027284:200628 +k1,16776:18122381,41027284:200628 +k1,16776:21168581,41027284:200627 +k1,16776:21985247,41027284:200628 +k1,16776:23874737,41027284:200627 +k1,16776:25943141,41027284:200628 +k1,16776:26868597,41027284:200628 +k1,16776:28353730,41027284:200627 +k1,16776:30005980,41027284:200628 +k1,16776:31410503,41027284:200627 +k1,16776:32227169,41027284:200628 +k1,16776:32583029,41027284:0 +) +(1,16777:6630773,41892364:25952256,513147,134348 +k1,16776:8230179,41892364:210043 +k1,16776:10316518,41892364:210043 +k1,16776:14490178,41892364:210043 +k1,16776:15351649,41892364:210043 +k1,16776:15917552,41892364:210043 +k1,16776:18000614,41892364:210043 +k1,16776:21952106,41892364:210042 +k1,16776:23052128,41892364:210043 +k1,16776:27812336,41892364:210043 +k1,16776:29745976,41892364:210043 +k1,16776:30765389,41892364:210043 +k1,16776:31331292,41892364:210043 +k1,16777:32583029,41892364:0 +) +(1,16777:6630773,42757444:25952256,513147,134348 +k1,16776:8128568,42757444:159550 +k1,16776:9763334,42757444:159551 +k1,16776:12305773,42757444:159550 +k1,16776:16428940,42757444:159550 +k1,16776:17239919,42757444:159551 +k1,16776:17755329,42757444:159550 +k1,16776:20677223,42757444:159551 +k1,16776:23961530,42757444:159550 +k1,16776:26570160,42757444:159550 +k1,16776:27412596,42757444:159551 +k1,16776:30293201,42757444:159550 +k1,16777:32583029,42757444:0 +) +(1,16777:6630773,43622524:25952256,513147,134348 +k1,16776:8477679,43622524:223579 +k1,16776:9847482,43622524:223578 +k1,16776:11090146,43622524:223579 +k1,16776:12739133,43622524:223579 +k1,16776:13622003,43622524:223578 +k1,16776:18362323,43622524:223579 +k1,16776:19268787,43622524:223579 +k1,16776:19848226,43622524:223579 +k1,16776:21965794,43622524:223578 +k1,16776:25501563,43622524:223579 +k1,16776:26081002,43622524:223579 +k1,16776:30448421,43622524:223578 +k1,16776:31331292,43622524:223579 +k1,16777:32583029,43622524:0 +) +(1,16777:6630773,44487604:25952256,513147,134348 +k1,16776:8327738,44487604:202089 +k1,16776:11646720,44487604:202090 +k1,16776:12500237,44487604:202089 +k1,16776:16177045,44487604:202089 +k1,16776:17062019,44487604:202089 +k1,16776:19869820,44487604:202090 +k1,16776:20731201,44487604:202089 +k1,16776:21952375,44487604:202089 +k1,16776:26324520,44487604:202089 +k1,16776:28615242,44487604:202090 +k1,16776:30266987,44487604:202089 +k1,16776:32583029,44487604:0 +) +(1,16777:6630773,45352684:25952256,505283,134348 +k1,16776:10200565,45352684:226801 +k1,16776:13552124,45352684:226802 +k1,16776:14588295,45352684:226801 +k1,16776:15834182,45352684:226802 +k1,16776:17714456,45352684:226801 +k1,16776:20251402,45352684:226802 +k1,16776:21090965,45352684:226801 +k1,16776:22088469,45352684:226801 +k1,16776:24348853,45352684:226802 +k1,16776:26263861,45352684:226801 +k1,16776:27106701,45352684:226802 +k1,16776:28758910,45352684:226801 +k1,16776:30322646,45352684:226802 +k1,16776:31835263,45352684:226801 +k1,16776:32583029,45352684:0 +) +] +(1,16777:32583029,45706769:0,0,0 +g1,16777:32583029,45706769 +) +) +] +(1,16777:6630773,47279633:25952256,0,0 +h1,16777:6630773,47279633:25952256,0,0 +) +] +(1,16777:4262630,4025873:0,0,0 +[1,16777:-473656,4025873:0,0,0 +(1,16777:-473656,-710413:0,0,0 +(1,16777:-473656,-710413:0,0,0 +g1,16777:-473656,-710413 +) +g1,16777:-473656,-710413 ) ] ) ] !24098 -}271 -Input:2804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}272 Input:2808:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2809:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2810:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2811:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2812:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{272 -[1,16833:4262630,47279633:28320399,43253760,0 -(1,16833:4262630,4025873:0,0,0 -[1,16833:-473656,4025873:0,0,0 -(1,16833:-473656,-710413:0,0,0 -(1,16833:-473656,-644877:0,0,0 -k1,16833:-473656,-644877:-65536 +{273 +[1,16831:4262630,47279633:28320399,43253760,0 +(1,16831:4262630,4025873:0,0,0 +[1,16831:-473656,4025873:0,0,0 +(1,16831:-473656,-710413:0,0,0 +(1,16831:-473656,-644877:0,0,0 +k1,16831:-473656,-644877:-65536 ) -(1,16833:-473656,4736287:0,0,0 -k1,16833:-473656,4736287:5209943 +(1,16831:-473656,4736287:0,0,0 +k1,16831:-473656,4736287:5209943 ) -g1,16833:-473656,-710413 +g1,16831:-473656,-710413 ) ] ) -[1,16833:6630773,47279633:25952256,43253760,0 -[1,16833:6630773,4812305:25952256,786432,0 -(1,16833:6630773,4812305:25952256,505283,134348 -(1,16833:6630773,4812305:25952256,505283,134348 -g1,16833:3078558,4812305 -[1,16833:3078558,4812305:0,0,0 -(1,16833:3078558,2439708:0,1703936,0 -k1,16833:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16833:2537886,2439708:1179648,16384,0 +[1,16831:6630773,47279633:25952256,43253760,0 +[1,16831:6630773,4812305:25952256,786432,0 +(1,16831:6630773,4812305:25952256,505283,134348 +(1,16831:6630773,4812305:25952256,505283,134348 +g1,16831:3078558,4812305 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,2439708:0,1703936,0 +k1,16831:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16831:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16833:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16831:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16833:3078558,4812305:0,0,0 -(1,16833:3078558,2439708:0,1703936,0 -g1,16833:29030814,2439708 -g1,16833:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16833:36151628,1915420:16384,1179648,0 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,2439708:0,1703936,0 +g1,16831:29030814,2439708 +g1,16831:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16831:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16833:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16831:37855564,2439708:1179648,16384,0 ) ) -k1,16833:3078556,2439708:-34777008 +k1,16831:3078556,2439708:-34777008 ) ] -[1,16833:3078558,4812305:0,0,0 -(1,16833:3078558,49800853:0,16384,2228224 -k1,16833:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16833:2537886,49800853:1179648,16384,0 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,49800853:0,16384,2228224 +k1,16831:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16831:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16833:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16831:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16833:3078558,4812305:0,0,0 -(1,16833:3078558,49800853:0,16384,2228224 -g1,16833:29030814,49800853 -g1,16833:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16833:36151628,51504789:16384,1179648,0 +[1,16831:3078558,4812305:0,0,0 +(1,16831:3078558,49800853:0,16384,2228224 +g1,16831:29030814,49800853 +g1,16831:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16831:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16833:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16831:37855564,49800853:1179648,16384,0 ) ) -k1,16833:3078556,49800853:-34777008 +k1,16831:3078556,49800853:-34777008 ) ] -g1,16833:6630773,4812305 -g1,16833:6630773,4812305 -g1,16833:10115322,4812305 -g1,16833:11677700,4812305 -g1,16833:13736840,4812305 -g1,16833:13936069,4812305 -k1,16833:31387653,4812305:17451584 +g1,16831:6630773,4812305 +g1,16831:6630773,4812305 +g1,16831:10115322,4812305 +g1,16831:11677700,4812305 +g1,16831:13736840,4812305 +g1,16831:13936069,4812305 +k1,16831:31387653,4812305:17451584 ) ) ] -[1,16833:6630773,45706769:25952256,40108032,0 -(1,16833:6630773,45706769:25952256,40108032,0 -(1,16833:6630773,45706769:0,0,0 -g1,16833:6630773,45706769 +[1,16831:6630773,45706769:25952256,40108032,0 +(1,16831:6630773,45706769:25952256,40108032,0 +(1,16831:6630773,45706769:0,0,0 +g1,16831:6630773,45706769 ) -[1,16833:6630773,45706769:25952256,40108032,0 -[1,16811:6630773,15160662:25952256,9561925,0 -[1,16811:6630773,15160662:25952256,9561925,0 -(1,16810:6630773,9431016:25952256,3832279,3504039 -h1,16791:6630773,9431016:0,0,0 -$1,16791:6630773,9431016 -[1,16791:6630773,9431016:14273820,2291352,1963111 -(1,16791:6630773,11394127:14273820,4254463,0 -h1,16791:6630773,11394127:0,0,0 -k1,16791:7946978,11394127:1316205 -[1,16791:7946978,11394127:11641410,4254463,0 -(1,16791:7946978,7205200:11641410,65536,0 -g1,16791:7946978,7205200 -(1,16791:7946978,7205200:11641410,65536,0 -r1,16833:19588388,7205200:11641410,65536,0 -) -g1,16791:19588388,7205200 -) -(1,16791:7946978,9398248:11641410,2127512,1799271 -g1,16791:7946978,9398248 -(1,16791:7946978,9398248:11641410,2127512,1799271 -g1,16791:8106362,9398248 -$1,16791:8106362,9398248 -[1,16791:8106362,9398248:11482026,2127512,1799271 -(1,16791:8106362,7946211:11482026,439448,873192 -g1,16791:8106362,7946211 -(1,16791:8106362,7946211:2523399,439448,873192 -r1,16833:8106362,7946211:0,627785,188337 -g1,16791:8434042,7946211 -g1,16791:8434043,7946211 -g1,16791:10302081,7946211 -g1,16791:10629761,7946211 -) -g1,16791:10629761,7946211 -(1,16791:10629761,7946211:2986209,439448,873192 -g1,16791:10957441,7946211 -[1,16791:10957441,7946211:2330849,404226,873192 -(1,16791:10957441,7946211:2330849,404226,107478 -h1,16791:10957441,7946211:0,0,0 -g1,16791:12637260,7946211 -) -(1,16791:10957441,8631066:2330849,379060,188337 -r1,16833:12920375,8631066:0,188337,188337 -k1,16791:13288290,8631066:367915 -g1,16791:13288290,8631066 -) -] -g1,16791:13288290,7946211 -g1,16791:13615970,7946211 -) -g1,16791:13615970,7946211 -(1,16791:13615970,7946211:2986209,439448,873192 -g1,16791:13943650,7946211 -[1,16791:13943650,7946211:2330849,404226,873192 -(1,16791:13943650,7946211:2330849,404226,107478 -h1,16791:13943650,7946211:0,0,0 -g1,16791:15623469,7946211 -) -(1,16791:13943650,8631066:2330849,404226,188337 -r1,16833:16195991,8631066:0,188337,188337 -k1,16791:16274499,8631066:78508 -g1,16791:16274499,8631066 -) -] -g1,16791:16274499,7946211 -g1,16791:16602179,7946211 -) -g1,16791:16602179,7946211 -(1,16791:16602179,7946211:2986209,439448,873192 -g1,16791:16929859,7946211 -[1,16791:16929859,7946211:2330849,404226,873192 -(1,16791:16929859,7946211:2330849,404226,107478 -h1,16791:16929859,7946211:0,0,0 -g1,16791:18609678,7946211 -) -(1,16791:16929859,8631066:2330849,404226,188337 -r1,16833:18494859,8631066:0,188337,188337 -k1,16791:19260708,8631066:765849 -g1,16791:19260708,8631066 -) -] -g1,16791:19260708,7946211 -g1,16791:19588388,7946211 -) -g1,16791:19588388,7946211 -) -(1,16791:8106362,9588200:11482026,439448,188337 -g1,16791:8106362,9588200 -(1,16791:8106362,9588200:2523399,439448,188337 -r1,16833:8106362,9588200:0,627785,188337 -g1,16791:8434042,9588200 -g1,16791:8434043,9588200 -k1,16791:10302081,9588200:1477968 -g1,16791:10629761,9588200 -) -g1,16791:10629761,9588200 -(1,16791:10629761,9588200:2986209,439448,188337 -g1,16791:10957441,9588200 -[1,16791:10957441,9588200:2330849,379060,188337 -(1,16791:10957441,9588200:2330849,379060,188337 -h1,16791:10957441,9588200:0,0,0 -r1,16833:11276208,9588200:0,188337,188337 -k1,16791:13288290,9588200:2012082 -g1,16791:13288290,9588200 -) -] -g1,16791:13288290,9588200 -g1,16791:13615970,9588200 -) -g1,16791:13615970,9588200 -(1,16791:13615970,9588200:2986209,439448,188337 -g1,16791:13943650,9588200 -[1,16791:13943650,9588200:2330849,379060,188337 -(1,16791:13943650,9588200:2330849,379060,188337 -h1,16791:13927921,9588200:0,0,0 -r1,16833:14246688,9588200:0,188337,188337 -k1,16791:16274499,9588200:2027811 -g1,16791:16274499,9588200 -) -] -g1,16791:16274499,9588200 -g1,16791:16602179,9588200 -) -g1,16791:16602179,9588200 -(1,16791:16602179,9588200:2986209,439448,188337 -g1,16791:16929859,9588200 -[1,16791:16929859,9588200:2330849,388497,188337 -(1,16791:16929859,9588200:2330849,388497,188337 -h1,16791:16929859,9588200:0,0,0 -r1,16833:17248626,9588200:0,188337,188337 -k1,16791:19260708,9588200:2012082 -g1,16791:19260708,9588200 -) -] -g1,16791:19260708,9588200 -g1,16791:19588388,9588200 -) -g1,16791:19588388,9588200 -) -(1,16791:8106362,10215985:11482026,439448,188337 -g1,16791:8106362,10215985 -(1,16791:8106362,10215985:2523399,439448,188337 -r1,16833:8106362,10215985:0,627785,188337 -g1,16791:8434042,10215985 -g1,16791:8434043,10215985 -k1,16791:10302081,10215985:1548747 -g1,16791:10629761,10215985 -) -g1,16791:10629761,10215985 -(1,16791:10629761,10215985:2986209,439448,188337 -g1,16791:10957441,10215985 -[1,16791:10957441,10215985:2330849,385352,188337 -(1,16791:10957441,10215985:2330849,385352,188337 -h1,16791:10941712,10215985:0,0,0 -r1,16833:11260479,10215985:0,188337,188337 -k1,16791:13288290,10215985:2027811 -g1,16791:13288290,10215985 -) -] -g1,16791:13288290,10215985 -g1,16791:13615970,10215985 -) -g1,16791:13615970,10215985 -(1,16791:13615970,10215985:2986209,439448,188337 -g1,16791:13943650,10215985 -[1,16791:13943650,10215985:2330849,379060,188337 -(1,16791:13943650,10215985:2330849,379060,188337 -h1,16791:13927921,10215985:0,0,0 -r1,16833:14246688,10215985:0,188337,188337 -k1,16791:16274499,10215985:2027811 -g1,16791:16274499,10215985 -) -] -g1,16791:16274499,10215985 -g1,16791:16602179,10215985 -) -g1,16791:16602179,10215985 -(1,16791:16602179,10215985:2986209,439448,188337 -g1,16791:16929859,10215985 -[1,16791:16929859,10215985:2330849,388497,188337 -(1,16791:16929859,10215985:2330849,388497,188337 -h1,16791:16929859,10215985:0,0,0 -r1,16833:17248626,10215985:0,188337,188337 -k1,16791:19260708,10215985:2012082 -g1,16791:19260708,10215985 -) -] -g1,16791:19260708,10215985 -g1,16791:19588388,10215985 -) -g1,16791:19588388,10215985 -) -(1,16791:8106362,10843770:11482026,439448,188337 -g1,16791:8106362,10843770 -(1,16791:8106362,10843770:2523399,439448,188337 -r1,16833:8106362,10843770:0,627785,188337 -g1,16791:8434042,10843770 -g1,16791:8434043,10843770 -k1,16791:10302081,10843770:1503658 -g1,16791:10629761,10843770 -) -g1,16791:10629761,10843770 -(1,16791:10629761,10843770:2986209,439448,188337 -g1,16791:10957441,10843770 -[1,16791:10957441,10843770:2330849,388497,188337 -(1,16791:10957441,10843770:2330849,388497,188337 -h1,16791:10957441,10843770:0,0,0 -r1,16833:11276208,10843770:0,188337,188337 -k1,16791:13288290,10843770:2012082 -g1,16791:13288290,10843770 -) -] -g1,16791:13288290,10843770 -g1,16791:13615970,10843770 -) -g1,16791:13615970,10843770 -(1,16791:13615970,10843770:2986209,439448,188337 -g1,16791:13943650,10843770 -[1,16791:13943650,10843770:2330849,379060,188337 -(1,16791:13943650,10843770:2330849,379060,188337 -h1,16791:13927921,10843770:0,0,0 -r1,16833:14246688,10843770:0,188337,188337 -k1,16791:16274499,10843770:2027811 -g1,16791:16274499,10843770 -) -] -g1,16791:16274499,10843770 -g1,16791:16602179,10843770 -) -g1,16791:16602179,10843770 -(1,16791:16602179,10843770:2986209,439448,188337 -g1,16791:16929859,10843770 -[1,16791:16929859,10843770:2330849,388497,188337 -(1,16791:16929859,10843770:2330849,388497,188337 -h1,16791:16929859,10843770:0,0,0 -r1,16833:17248626,10843770:0,188337,188337 -k1,16791:19260708,10843770:2012082 -g1,16791:19260708,10843770 -) -] -g1,16791:19260708,10843770 -g1,16791:19588388,10843770 -) -g1,16791:19588388,10843770 -) -] -$1,16791:19588388,9398248 -) -g1,16791:19588388,9398248 -) -(1,16791:7946978,11394127:11641410,65536,0 -g1,16791:7946978,11394127 -(1,16791:7946978,11394127:11641410,65536,0 -r1,16833:19588388,11394127:11641410,65536,0 -) -g1,16791:19588388,11394127 -) -] -k1,16791:20904593,11394127:1316205 -g1,16791:20904593,11394127 -) -] -$1,16791:20904593,9431016 -g1,16791:21063977,9431016 -k1,16792:22042901,9431016:978924 -$1,16808:22042901,9431016 -[1,16808:22042901,9431016:10380744,3832279,3504039 -(1,16808:22042901,12935055:10380744,7336318,0 -h1,16808:22042901,12935055:0,0,0 -k1,16808:23270441,12935055:1227540 -[1,16808:23270441,12935055:7925665,7336318,0 -(1,16808:23270441,5664273:7925665,65536,0 -g1,16808:23270441,5664273 -(1,16808:23270441,5664273:7925665,65536,0 -r1,16833:31196106,5664273:7925665,65536,0 -) -g1,16808:31196106,5664273 -) -(1,16808:23270441,9398248:7925665,3668439,3340199 -g1,16808:23270441,9398248 -(1,16808:23270441,9398248:7925665,3668439,3340199 -g1,16808:23429825,9398248 -$1,16808:23429825,9398248 -[1,16808:23429825,9398248:7766281,3668439,3340199 -(1,16808:23429825,6405284:7766281,439448,188337 -g1,16808:23429825,6405284 -(1,16808:23429825,6405284:2523399,439448,188337 -r1,16833:23429825,6405284:0,627785,188337 -g1,16808:23757505,6405284 -g1,16808:23757506,6405284 -g1,16808:25625544,6405284 -g1,16808:25953224,6405284 -) -g1,16808:25953224,6405284 -(1,16808:25953224,6405284:2907702,439448,188337 -g1,16808:26280904,6405284 -g1,16808:26280905,6405284 -k1,16808:28533246,6405284:1081606 -g1,16808:28860926,6405284 -) -g1,16808:28860926,6405284 -(1,16808:28860926,6405284:2335180,439448,188337 -g1,16808:29188606,6405284 -g1,16808:29188607,6405284 -g1,16808:30868426,6405284 -g1,16808:31196106,6405284 -) -g1,16808:31196106,6405284 -) -(1,16808:23429825,7362418:7766281,439448,188337 -g1,16808:23429825,7362418 -(1,16808:23429825,7362418:2523399,439448,188337 -r1,16833:23429825,7362418:0,627785,188337 -g1,16808:23757505,7362418 -g1,16808:23757506,7362418 -k1,16808:25625544,7362418:1477968 -g1,16808:25953224,7362418 -) -g1,16808:25953224,7362418 -(1,16808:25953224,7362418:2907702,439448,188337 -g1,16808:26280904,7362418 -g1,16808:26280905,7362418 -k1,16808:28533246,7362418:278397 -g1,16808:28860926,7362418 -) -g1,16808:28860926,7362418 -(1,16808:28860926,7362418:2335180,439448,188337 -g1,16808:29188606,7362418 -g1,16808:29188607,7362418 -k1,16808:30868426,7362418:1361052 -g1,16808:31196106,7362418 -) -g1,16808:31196106,7362418 -) -(1,16808:23429825,7990203:7766281,439448,188337 -g1,16808:23429825,7990203 -(1,16808:23429825,7990203:2523399,439448,188337 -r1,16833:23429825,7990203:0,627785,188337 -g1,16808:23757505,7990203 -g1,16808:23757506,7990203 -k1,16808:25625544,7990203:1548747 -g1,16808:25953224,7990203 -) -g1,16808:25953224,7990203 -(1,16808:25953224,7990203:2907702,439448,188337 -g1,16808:26280904,7990203 -g1,16808:26280905,7990203 -k1,16808:28533246,7990203:278397 -g1,16808:28860926,7990203 -) -g1,16808:28860926,7990203 -(1,16808:28860926,7990203:2335180,439448,188337 -g1,16808:29188606,7990203 -g1,16808:29188607,7990203 -k1,16808:30868426,7990203:1361052 -g1,16808:31196106,7990203 -) -g1,16808:31196106,7990203 -) -(1,16808:23429825,8617988:7766281,439448,188337 -g1,16808:23429825,8617988 -(1,16808:23429825,8617988:2523399,439448,188337 -r1,16833:23429825,8617988:0,627785,188337 -g1,16808:23757505,8617988 -g1,16808:23757506,8617988 -k1,16808:25625544,8617988:1503658 -g1,16808:25953224,8617988 -) -g1,16808:25953224,8617988 -(1,16808:25953224,8617988:2907702,439448,188337 -g1,16808:26280904,8617988 -g1,16808:26280905,8617988 -k1,16808:28533246,8617988:278397 -g1,16808:28860926,8617988 -) -g1,16808:28860926,8617988 -(1,16808:28860926,8617988:2335180,439448,188337 -g1,16808:29188606,8617988 -g1,16808:29188607,8617988 -k1,16808:30868426,8617988:1361052 -g1,16808:31196106,8617988 -) -g1,16808:31196106,8617988 -) -(1,16808:23429825,9245773:7766281,439448,188337 -g1,16808:23429825,9245773 -(1,16808:23429825,9245773:2523399,439448,188337 -r1,16833:23429825,9245773:0,627785,188337 -g1,16808:23757505,9245773 -g1,16808:23757506,9245773 -k1,16808:25625544,9245773:1477968 -g1,16808:25953224,9245773 -) -g1,16808:25953224,9245773 -(1,16808:25953224,9245773:2907702,439448,188337 -g1,16808:26280904,9245773 -g1,16808:26280905,9245773 -g1,16808:28533246,9245773 -g1,16808:28860926,9245773 -) -g1,16808:28860926,9245773 -(1,16808:28860926,9245773:2335180,439448,188337 -g1,16808:29188606,9245773 -g1,16808:29188607,9245773 -k1,16808:30868426,9245773:1361052 -g1,16808:31196106,9245773 -) -g1,16808:31196106,9245773 -) -(1,16808:23429825,9873558:7766281,439448,188337 -g1,16808:23429825,9873558 -(1,16808:23429825,9873558:2523399,439448,188337 -r1,16833:23429825,9873558:0,627785,188337 -g1,16808:23757505,9873558 -g1,16808:23757506,9873558 -k1,16808:25625544,9873558:1548747 -g1,16808:25953224,9873558 -) -g1,16808:25953224,9873558 -(1,16808:25953224,9873558:2907702,439448,188337 -g1,16808:26280904,9873558 -g1,16808:26280905,9873558 -g1,16808:28533246,9873558 -g1,16808:28860926,9873558 -) -g1,16808:28860926,9873558 -(1,16808:28860926,9873558:2335180,439448,188337 -g1,16808:29188606,9873558 -g1,16808:29188607,9873558 -k1,16808:30868426,9873558:1361052 -g1,16808:31196106,9873558 -) -g1,16808:31196106,9873558 -) -(1,16808:23429825,10501343:7766281,439448,188337 -g1,16808:23429825,10501343 -(1,16808:23429825,10501343:2523399,439448,188337 -r1,16833:23429825,10501343:0,627785,188337 -g1,16808:23757505,10501343 -g1,16808:23757506,10501343 -k1,16808:25625544,10501343:1503658 -g1,16808:25953224,10501343 -) -g1,16808:25953224,10501343 -(1,16808:25953224,10501343:2907702,439448,188337 -g1,16808:26280904,10501343 -g1,16808:26280905,10501343 -g1,16808:28533246,10501343 -g1,16808:28860926,10501343 -) -g1,16808:28860926,10501343 -(1,16808:28860926,10501343:2335180,439448,188337 -g1,16808:29188606,10501343 -g1,16808:29188607,10501343 -k1,16808:30868426,10501343:1361052 -g1,16808:31196106,10501343 -) -g1,16808:31196106,10501343 -) -(1,16808:23429825,11129128:7766281,439448,188337 -g1,16808:23429825,11129128 -(1,16808:23429825,11129128:2523399,439448,188337 -r1,16833:23429825,11129128:0,627785,188337 -g1,16808:23757505,11129128 -g1,16808:23757506,11129128 -k1,16808:25625544,11129128:1477968 -g1,16808:25953224,11129128 -) -g1,16808:25953224,11129128 -(1,16808:25953224,11129128:2907702,439448,188337 -g1,16808:26280904,11129128 -g1,16808:26280905,11129128 -k1,16808:28533246,11129128:687341 -g1,16808:28860926,11129128 -) -g1,16808:28860926,11129128 -(1,16808:28860926,11129128:2335180,439448,188337 -g1,16808:29188606,11129128 -g1,16808:29188607,11129128 -k1,16808:30868426,11129128:1361052 -g1,16808:31196106,11129128 -) -g1,16808:31196106,11129128 -) -(1,16808:23429825,11756913:7766281,439448,188337 -g1,16808:23429825,11756913 -(1,16808:23429825,11756913:2523399,439448,188337 -r1,16833:23429825,11756913:0,627785,188337 -g1,16808:23757505,11756913 -g1,16808:23757506,11756913 -k1,16808:25625544,11756913:1548747 -g1,16808:25953224,11756913 -) -g1,16808:25953224,11756913 -(1,16808:25953224,11756913:2907702,439448,188337 -g1,16808:26280904,11756913 -g1,16808:26280905,11756913 -k1,16808:28533246,11756913:687341 -g1,16808:28860926,11756913 -) -g1,16808:28860926,11756913 -(1,16808:28860926,11756913:2335180,439448,188337 -g1,16808:29188606,11756913 -g1,16808:29188607,11756913 -k1,16808:30868426,11756913:1361052 -g1,16808:31196106,11756913 -) -g1,16808:31196106,11756913 -) -(1,16808:23429825,12384698:7766281,439448,188337 -g1,16808:23429825,12384698 -(1,16808:23429825,12384698:2523399,439448,188337 -r1,16833:23429825,12384698:0,627785,188337 -g1,16808:23757505,12384698 -g1,16808:23757506,12384698 -k1,16808:25625544,12384698:1503658 -g1,16808:25953224,12384698 -) -g1,16808:25953224,12384698 -(1,16808:25953224,12384698:2907702,439448,188337 -g1,16808:26280904,12384698 -g1,16808:26280905,12384698 -k1,16808:28533246,12384698:687341 -g1,16808:28860926,12384698 -) -g1,16808:28860926,12384698 -(1,16808:28860926,12384698:2335180,439448,188337 -g1,16808:29188606,12384698 -g1,16808:29188607,12384698 -k1,16808:30868426,12384698:1361052 -g1,16808:31196106,12384698 -) -g1,16808:31196106,12384698 -) -] -$1,16808:31196106,9398248 -) -g1,16808:31196106,9398248 -) -(1,16808:23270441,12935055:7925665,65536,0 -g1,16808:23270441,12935055 -(1,16808:23270441,12935055:7925665,65536,0 -r1,16833:31196106,12935055:7925665,65536,0 -) -g1,16808:31196106,12935055 -) -] -k1,16808:32423645,12935055:1227539 -g1,16808:32423645,12935055 -) -] -$1,16808:32423645,9431016 +[1,16831:6630773,45706769:25952256,40108032,0 +[1,16809:6630773,15160662:25952256,9561925,0 +[1,16809:6630773,15160662:25952256,9561925,0 +(1,16808:6630773,9431016:25952256,3832279,3504039 +h1,16789:6630773,9431016:0,0,0 +$1,16789:6630773,9431016 +[1,16789:6630773,9431016:14273820,2291352,1963111 +(1,16789:6630773,11394127:14273820,4254463,0 +h1,16789:6630773,11394127:0,0,0 +k1,16789:7946978,11394127:1316205 +[1,16789:7946978,11394127:11641410,4254463,0 +(1,16789:7946978,7205200:11641410,65536,0 +g1,16789:7946978,7205200 +(1,16789:7946978,7205200:11641410,65536,0 +r1,16831:19588388,7205200:11641410,65536,0 +) +g1,16789:19588388,7205200 +) +(1,16789:7946978,9398248:11641410,2127512,1799271 +g1,16789:7946978,9398248 +(1,16789:7946978,9398248:11641410,2127512,1799271 +g1,16789:8106362,9398248 +$1,16789:8106362,9398248 +[1,16789:8106362,9398248:11482026,2127512,1799271 +(1,16789:8106362,7946211:11482026,439448,873192 +g1,16789:8106362,7946211 +(1,16789:8106362,7946211:2523399,439448,873192 +r1,16831:8106362,7946211:0,627785,188337 +g1,16789:8434042,7946211 +g1,16789:8434043,7946211 +g1,16789:10302081,7946211 +g1,16789:10629761,7946211 +) +g1,16789:10629761,7946211 +(1,16789:10629761,7946211:2986209,439448,873192 +g1,16789:10957441,7946211 +[1,16789:10957441,7946211:2330849,404226,873192 +(1,16789:10957441,7946211:2330849,404226,107478 +h1,16789:10957441,7946211:0,0,0 +g1,16789:12637260,7946211 +) +(1,16789:10957441,8631066:2330849,379060,188337 +r1,16831:12920375,8631066:0,188337,188337 +k1,16789:13288290,8631066:367915 +g1,16789:13288290,8631066 +) +] +g1,16789:13288290,7946211 +g1,16789:13615970,7946211 +) +g1,16789:13615970,7946211 +(1,16789:13615970,7946211:2986209,439448,873192 +g1,16789:13943650,7946211 +[1,16789:13943650,7946211:2330849,404226,873192 +(1,16789:13943650,7946211:2330849,404226,107478 +h1,16789:13943650,7946211:0,0,0 +g1,16789:15623469,7946211 +) +(1,16789:13943650,8631066:2330849,404226,188337 +r1,16831:16195991,8631066:0,188337,188337 +k1,16789:16274499,8631066:78508 +g1,16789:16274499,8631066 +) +] +g1,16789:16274499,7946211 +g1,16789:16602179,7946211 +) +g1,16789:16602179,7946211 +(1,16789:16602179,7946211:2986209,439448,873192 +g1,16789:16929859,7946211 +[1,16789:16929859,7946211:2330849,404226,873192 +(1,16789:16929859,7946211:2330849,404226,107478 +h1,16789:16929859,7946211:0,0,0 +g1,16789:18609678,7946211 +) +(1,16789:16929859,8631066:2330849,404226,188337 +r1,16831:18494859,8631066:0,188337,188337 +k1,16789:19260708,8631066:765849 +g1,16789:19260708,8631066 +) +] +g1,16789:19260708,7946211 +g1,16789:19588388,7946211 +) +g1,16789:19588388,7946211 +) +(1,16789:8106362,9588200:11482026,439448,188337 +g1,16789:8106362,9588200 +(1,16789:8106362,9588200:2523399,439448,188337 +r1,16831:8106362,9588200:0,627785,188337 +g1,16789:8434042,9588200 +g1,16789:8434043,9588200 +k1,16789:10302081,9588200:1477968 +g1,16789:10629761,9588200 +) +g1,16789:10629761,9588200 +(1,16789:10629761,9588200:2986209,439448,188337 +g1,16789:10957441,9588200 +[1,16789:10957441,9588200:2330849,379060,188337 +(1,16789:10957441,9588200:2330849,379060,188337 +h1,16789:10957441,9588200:0,0,0 +r1,16831:11276208,9588200:0,188337,188337 +k1,16789:13288290,9588200:2012082 +g1,16789:13288290,9588200 +) +] +g1,16789:13288290,9588200 +g1,16789:13615970,9588200 +) +g1,16789:13615970,9588200 +(1,16789:13615970,9588200:2986209,439448,188337 +g1,16789:13943650,9588200 +[1,16789:13943650,9588200:2330849,379060,188337 +(1,16789:13943650,9588200:2330849,379060,188337 +h1,16789:13927921,9588200:0,0,0 +r1,16831:14246688,9588200:0,188337,188337 +k1,16789:16274499,9588200:2027811 +g1,16789:16274499,9588200 +) +] +g1,16789:16274499,9588200 +g1,16789:16602179,9588200 +) +g1,16789:16602179,9588200 +(1,16789:16602179,9588200:2986209,439448,188337 +g1,16789:16929859,9588200 +[1,16789:16929859,9588200:2330849,388497,188337 +(1,16789:16929859,9588200:2330849,388497,188337 +h1,16789:16929859,9588200:0,0,0 +r1,16831:17248626,9588200:0,188337,188337 +k1,16789:19260708,9588200:2012082 +g1,16789:19260708,9588200 +) +] +g1,16789:19260708,9588200 +g1,16789:19588388,9588200 +) +g1,16789:19588388,9588200 +) +(1,16789:8106362,10215985:11482026,439448,188337 +g1,16789:8106362,10215985 +(1,16789:8106362,10215985:2523399,439448,188337 +r1,16831:8106362,10215985:0,627785,188337 +g1,16789:8434042,10215985 +g1,16789:8434043,10215985 +k1,16789:10302081,10215985:1548747 +g1,16789:10629761,10215985 +) +g1,16789:10629761,10215985 +(1,16789:10629761,10215985:2986209,439448,188337 +g1,16789:10957441,10215985 +[1,16789:10957441,10215985:2330849,385352,188337 +(1,16789:10957441,10215985:2330849,385352,188337 +h1,16789:10941712,10215985:0,0,0 +r1,16831:11260479,10215985:0,188337,188337 +k1,16789:13288290,10215985:2027811 +g1,16789:13288290,10215985 +) +] +g1,16789:13288290,10215985 +g1,16789:13615970,10215985 +) +g1,16789:13615970,10215985 +(1,16789:13615970,10215985:2986209,439448,188337 +g1,16789:13943650,10215985 +[1,16789:13943650,10215985:2330849,379060,188337 +(1,16789:13943650,10215985:2330849,379060,188337 +h1,16789:13927921,10215985:0,0,0 +r1,16831:14246688,10215985:0,188337,188337 +k1,16789:16274499,10215985:2027811 +g1,16789:16274499,10215985 +) +] +g1,16789:16274499,10215985 +g1,16789:16602179,10215985 +) +g1,16789:16602179,10215985 +(1,16789:16602179,10215985:2986209,439448,188337 +g1,16789:16929859,10215985 +[1,16789:16929859,10215985:2330849,388497,188337 +(1,16789:16929859,10215985:2330849,388497,188337 +h1,16789:16929859,10215985:0,0,0 +r1,16831:17248626,10215985:0,188337,188337 +k1,16789:19260708,10215985:2012082 +g1,16789:19260708,10215985 +) +] +g1,16789:19260708,10215985 +g1,16789:19588388,10215985 +) +g1,16789:19588388,10215985 +) +(1,16789:8106362,10843770:11482026,439448,188337 +g1,16789:8106362,10843770 +(1,16789:8106362,10843770:2523399,439448,188337 +r1,16831:8106362,10843770:0,627785,188337 +g1,16789:8434042,10843770 +g1,16789:8434043,10843770 +k1,16789:10302081,10843770:1503658 +g1,16789:10629761,10843770 +) +g1,16789:10629761,10843770 +(1,16789:10629761,10843770:2986209,439448,188337 +g1,16789:10957441,10843770 +[1,16789:10957441,10843770:2330849,388497,188337 +(1,16789:10957441,10843770:2330849,388497,188337 +h1,16789:10957441,10843770:0,0,0 +r1,16831:11276208,10843770:0,188337,188337 +k1,16789:13288290,10843770:2012082 +g1,16789:13288290,10843770 +) +] +g1,16789:13288290,10843770 +g1,16789:13615970,10843770 +) +g1,16789:13615970,10843770 +(1,16789:13615970,10843770:2986209,439448,188337 +g1,16789:13943650,10843770 +[1,16789:13943650,10843770:2330849,379060,188337 +(1,16789:13943650,10843770:2330849,379060,188337 +h1,16789:13927921,10843770:0,0,0 +r1,16831:14246688,10843770:0,188337,188337 +k1,16789:16274499,10843770:2027811 +g1,16789:16274499,10843770 +) +] +g1,16789:16274499,10843770 +g1,16789:16602179,10843770 +) +g1,16789:16602179,10843770 +(1,16789:16602179,10843770:2986209,439448,188337 +g1,16789:16929859,10843770 +[1,16789:16929859,10843770:2330849,388497,188337 +(1,16789:16929859,10843770:2330849,388497,188337 +h1,16789:16929859,10843770:0,0,0 +r1,16831:17248626,10843770:0,188337,188337 +k1,16789:19260708,10843770:2012082 +g1,16789:19260708,10843770 +) +] +g1,16789:19260708,10843770 +g1,16789:19588388,10843770 +) +g1,16789:19588388,10843770 +) +] +$1,16789:19588388,9398248 +) +g1,16789:19588388,9398248 +) +(1,16789:7946978,11394127:11641410,65536,0 +g1,16789:7946978,11394127 +(1,16789:7946978,11394127:11641410,65536,0 +r1,16831:19588388,11394127:11641410,65536,0 +) +g1,16789:19588388,11394127 +) +] +k1,16789:20904593,11394127:1316205 +g1,16789:20904593,11394127 +) +] +$1,16789:20904593,9431016 +g1,16789:21063977,9431016 +k1,16790:22042901,9431016:978924 +$1,16806:22042901,9431016 +[1,16806:22042901,9431016:10380744,3832279,3504039 +(1,16806:22042901,12935055:10380744,7336318,0 +h1,16806:22042901,12935055:0,0,0 +k1,16806:23270441,12935055:1227540 +[1,16806:23270441,12935055:7925665,7336318,0 +(1,16806:23270441,5664273:7925665,65536,0 +g1,16806:23270441,5664273 +(1,16806:23270441,5664273:7925665,65536,0 +r1,16831:31196106,5664273:7925665,65536,0 +) +g1,16806:31196106,5664273 +) +(1,16806:23270441,9398248:7925665,3668439,3340199 +g1,16806:23270441,9398248 +(1,16806:23270441,9398248:7925665,3668439,3340199 +g1,16806:23429825,9398248 +$1,16806:23429825,9398248 +[1,16806:23429825,9398248:7766281,3668439,3340199 +(1,16806:23429825,6405284:7766281,439448,188337 +g1,16806:23429825,6405284 +(1,16806:23429825,6405284:2523399,439448,188337 +r1,16831:23429825,6405284:0,627785,188337 +g1,16806:23757505,6405284 +g1,16806:23757506,6405284 +g1,16806:25625544,6405284 +g1,16806:25953224,6405284 +) +g1,16806:25953224,6405284 +(1,16806:25953224,6405284:2907702,439448,188337 +g1,16806:26280904,6405284 +g1,16806:26280905,6405284 +k1,16806:28533246,6405284:1081606 +g1,16806:28860926,6405284 +) +g1,16806:28860926,6405284 +(1,16806:28860926,6405284:2335180,439448,188337 +g1,16806:29188606,6405284 +g1,16806:29188607,6405284 +g1,16806:30868426,6405284 +g1,16806:31196106,6405284 +) +g1,16806:31196106,6405284 +) +(1,16806:23429825,7362418:7766281,439448,188337 +g1,16806:23429825,7362418 +(1,16806:23429825,7362418:2523399,439448,188337 +r1,16831:23429825,7362418:0,627785,188337 +g1,16806:23757505,7362418 +g1,16806:23757506,7362418 +k1,16806:25625544,7362418:1477968 +g1,16806:25953224,7362418 +) +g1,16806:25953224,7362418 +(1,16806:25953224,7362418:2907702,439448,188337 +g1,16806:26280904,7362418 +g1,16806:26280905,7362418 +k1,16806:28533246,7362418:278397 +g1,16806:28860926,7362418 +) +g1,16806:28860926,7362418 +(1,16806:28860926,7362418:2335180,439448,188337 +g1,16806:29188606,7362418 +g1,16806:29188607,7362418 +k1,16806:30868426,7362418:1361052 +g1,16806:31196106,7362418 +) +g1,16806:31196106,7362418 +) +(1,16806:23429825,7990203:7766281,439448,188337 +g1,16806:23429825,7990203 +(1,16806:23429825,7990203:2523399,439448,188337 +r1,16831:23429825,7990203:0,627785,188337 +g1,16806:23757505,7990203 +g1,16806:23757506,7990203 +k1,16806:25625544,7990203:1548747 +g1,16806:25953224,7990203 +) +g1,16806:25953224,7990203 +(1,16806:25953224,7990203:2907702,439448,188337 +g1,16806:26280904,7990203 +g1,16806:26280905,7990203 +k1,16806:28533246,7990203:278397 +g1,16806:28860926,7990203 +) +g1,16806:28860926,7990203 +(1,16806:28860926,7990203:2335180,439448,188337 +g1,16806:29188606,7990203 +g1,16806:29188607,7990203 +k1,16806:30868426,7990203:1361052 +g1,16806:31196106,7990203 +) +g1,16806:31196106,7990203 +) +(1,16806:23429825,8617988:7766281,439448,188337 +g1,16806:23429825,8617988 +(1,16806:23429825,8617988:2523399,439448,188337 +r1,16831:23429825,8617988:0,627785,188337 +g1,16806:23757505,8617988 +g1,16806:23757506,8617988 +k1,16806:25625544,8617988:1503658 +g1,16806:25953224,8617988 +) +g1,16806:25953224,8617988 +(1,16806:25953224,8617988:2907702,439448,188337 +g1,16806:26280904,8617988 +g1,16806:26280905,8617988 +k1,16806:28533246,8617988:278397 +g1,16806:28860926,8617988 +) +g1,16806:28860926,8617988 +(1,16806:28860926,8617988:2335180,439448,188337 +g1,16806:29188606,8617988 +g1,16806:29188607,8617988 +k1,16806:30868426,8617988:1361052 +g1,16806:31196106,8617988 +) +g1,16806:31196106,8617988 +) +(1,16806:23429825,9245773:7766281,439448,188337 +g1,16806:23429825,9245773 +(1,16806:23429825,9245773:2523399,439448,188337 +r1,16831:23429825,9245773:0,627785,188337 +g1,16806:23757505,9245773 +g1,16806:23757506,9245773 +k1,16806:25625544,9245773:1477968 +g1,16806:25953224,9245773 +) +g1,16806:25953224,9245773 +(1,16806:25953224,9245773:2907702,439448,188337 +g1,16806:26280904,9245773 +g1,16806:26280905,9245773 +g1,16806:28533246,9245773 +g1,16806:28860926,9245773 +) +g1,16806:28860926,9245773 +(1,16806:28860926,9245773:2335180,439448,188337 +g1,16806:29188606,9245773 +g1,16806:29188607,9245773 +k1,16806:30868426,9245773:1361052 +g1,16806:31196106,9245773 +) +g1,16806:31196106,9245773 +) +(1,16806:23429825,9873558:7766281,439448,188337 +g1,16806:23429825,9873558 +(1,16806:23429825,9873558:2523399,439448,188337 +r1,16831:23429825,9873558:0,627785,188337 +g1,16806:23757505,9873558 +g1,16806:23757506,9873558 +k1,16806:25625544,9873558:1548747 +g1,16806:25953224,9873558 +) +g1,16806:25953224,9873558 +(1,16806:25953224,9873558:2907702,439448,188337 +g1,16806:26280904,9873558 +g1,16806:26280905,9873558 +g1,16806:28533246,9873558 +g1,16806:28860926,9873558 +) +g1,16806:28860926,9873558 +(1,16806:28860926,9873558:2335180,439448,188337 +g1,16806:29188606,9873558 +g1,16806:29188607,9873558 +k1,16806:30868426,9873558:1361052 +g1,16806:31196106,9873558 +) +g1,16806:31196106,9873558 +) +(1,16806:23429825,10501343:7766281,439448,188337 +g1,16806:23429825,10501343 +(1,16806:23429825,10501343:2523399,439448,188337 +r1,16831:23429825,10501343:0,627785,188337 +g1,16806:23757505,10501343 +g1,16806:23757506,10501343 +k1,16806:25625544,10501343:1503658 +g1,16806:25953224,10501343 +) +g1,16806:25953224,10501343 +(1,16806:25953224,10501343:2907702,439448,188337 +g1,16806:26280904,10501343 +g1,16806:26280905,10501343 +g1,16806:28533246,10501343 +g1,16806:28860926,10501343 +) +g1,16806:28860926,10501343 +(1,16806:28860926,10501343:2335180,439448,188337 +g1,16806:29188606,10501343 +g1,16806:29188607,10501343 +k1,16806:30868426,10501343:1361052 +g1,16806:31196106,10501343 +) +g1,16806:31196106,10501343 +) +(1,16806:23429825,11129128:7766281,439448,188337 +g1,16806:23429825,11129128 +(1,16806:23429825,11129128:2523399,439448,188337 +r1,16831:23429825,11129128:0,627785,188337 +g1,16806:23757505,11129128 +g1,16806:23757506,11129128 +k1,16806:25625544,11129128:1477968 +g1,16806:25953224,11129128 +) +g1,16806:25953224,11129128 +(1,16806:25953224,11129128:2907702,439448,188337 +g1,16806:26280904,11129128 +g1,16806:26280905,11129128 +k1,16806:28533246,11129128:687341 +g1,16806:28860926,11129128 +) +g1,16806:28860926,11129128 +(1,16806:28860926,11129128:2335180,439448,188337 +g1,16806:29188606,11129128 +g1,16806:29188607,11129128 +k1,16806:30868426,11129128:1361052 +g1,16806:31196106,11129128 +) +g1,16806:31196106,11129128 +) +(1,16806:23429825,11756913:7766281,439448,188337 +g1,16806:23429825,11756913 +(1,16806:23429825,11756913:2523399,439448,188337 +r1,16831:23429825,11756913:0,627785,188337 +g1,16806:23757505,11756913 +g1,16806:23757506,11756913 +k1,16806:25625544,11756913:1548747 +g1,16806:25953224,11756913 +) +g1,16806:25953224,11756913 +(1,16806:25953224,11756913:2907702,439448,188337 +g1,16806:26280904,11756913 +g1,16806:26280905,11756913 +k1,16806:28533246,11756913:687341 +g1,16806:28860926,11756913 +) +g1,16806:28860926,11756913 +(1,16806:28860926,11756913:2335180,439448,188337 +g1,16806:29188606,11756913 +g1,16806:29188607,11756913 +k1,16806:30868426,11756913:1361052 +g1,16806:31196106,11756913 +) +g1,16806:31196106,11756913 +) +(1,16806:23429825,12384698:7766281,439448,188337 +g1,16806:23429825,12384698 +(1,16806:23429825,12384698:2523399,439448,188337 +r1,16831:23429825,12384698:0,627785,188337 +g1,16806:23757505,12384698 +g1,16806:23757506,12384698 +k1,16806:25625544,12384698:1503658 +g1,16806:25953224,12384698 +) +g1,16806:25953224,12384698 +(1,16806:25953224,12384698:2907702,439448,188337 +g1,16806:26280904,12384698 +g1,16806:26280905,12384698 +k1,16806:28533246,12384698:687341 +g1,16806:28860926,12384698 +) +g1,16806:28860926,12384698 +(1,16806:28860926,12384698:2335180,439448,188337 +g1,16806:29188606,12384698 +g1,16806:29188607,12384698 +k1,16806:30868426,12384698:1361052 +g1,16806:31196106,12384698 +) +g1,16806:31196106,12384698 +) +] +$1,16806:31196106,9398248 +) +g1,16806:31196106,9398248 +) +(1,16806:23270441,12935055:7925665,65536,0 +g1,16806:23270441,12935055 +(1,16806:23270441,12935055:7925665,65536,0 +r1,16831:31196106,12935055:7925665,65536,0 +) +g1,16806:31196106,12935055 +) +] +k1,16806:32423645,12935055:1227539 +g1,16806:32423645,12935055 +) +] +$1,16806:32423645,9431016 +g1,16806:32583029,9431016 g1,16808:32583029,9431016 -g1,16810:32583029,9431016 -g1,16810:32583029,9431016 -) -(1,16810:6630773,14161234:25952256,505283,134348 -h1,16810:6630773,14161234:0,0,0 -g1,16810:8923222,14161234 -k1,16810:32583029,14161234:22689874 -g1,16810:32583029,14161234 -) -(1,16810:6630773,15026314:25952256,513147,134348 -h1,16810:6600626,15026314:0,0,0 -g1,16810:8375341,15026314 -g1,16810:10062893,15026314 -g1,16810:11453567,15026314 -g1,16810:13041504,15026314 -g1,16810:15190429,15026314 -g1,16810:16779021,15026314 -k1,16810:32583029,15026314:13240895 -g1,16810:32583029,15026314 -) -] -] -(1,16779:6630773,17126742:25952256,513147,134348 -k1,16778:8862789,17126742:193846 -k1,16778:9672673,17126742:193846 -k1,16778:10222379,17126742:193846 -k1,16778:12972784,17126742:193846 -k1,16778:14638569,17126742:193846 -k1,16778:17677988,17126742:193846 -k1,16778:18487872,17126742:193846 -k1,16778:20046178,17126742:193846 -k1,16778:21784053,17126742:193846 -k1,16778:23078904,17126742:193846 -k1,16778:24782700,17126742:193846 -k1,16778:28477479,17126742:193846 -k1,16778:29357487,17126742:193846 -k1,16778:31391584,17126742:193846 -k1,16778:32583029,17126742:0 -) -(1,16779:6630773,17991822:25952256,513147,134348 -k1,16778:8091923,17991822:257909 -k1,16778:8881330,17991822:257910 -k1,16778:11915344,17991822:257909 -k1,16778:12789292,17991822:257910 -k1,16778:14066286,17991822:257909 -k1,16778:16062210,17991822:257909 -k1,16778:18014881,17991822:257910 -k1,16778:18924218,17991822:257909 -k1,16778:20201213,17991822:257910 -k1,16778:23667109,17991822:257909 -k1,16778:25475600,17991822:257909 -k1,16778:26392802,17991822:257910 -k1,16778:29734835,17991822:257909 -k1,16778:32583029,17991822:0 -) -(1,16779:6630773,18856902:25952256,513147,134348 -k1,16778:8049409,18856902:215395 -k1,16778:12124219,18856902:215395 -k1,16778:16403501,18856902:215395 -k1,16778:17278188,18856902:215395 -k1,16778:18882946,18856902:215395 -k1,16778:20199346,18856902:215395 -k1,16778:21924691,18856902:215395 -k1,16778:23159171,18856902:215395 -k1,16778:26387911,18856902:215395 -k1,16778:28783689,18856902:215395 -k1,16778:30626343,18856902:215395 -k1,16778:31860823,18856902:215395 -k1,16779:32583029,18856902:0 -) -(1,16779:6630773,19721982:25952256,513147,126483 -k1,16778:9221665,19721982:221765 -k1,16778:10110587,19721982:221766 -k1,16778:10685568,19721982:221742 -k1,16778:12098779,19721982:221766 -k1,16778:12909057,19721982:221765 -k1,16778:14602762,19721982:221766 -k1,16778:15440565,19721982:221765 -k1,16778:17547801,19721982:221765 -k1,16778:20482758,19721982:221766 -k1,16778:24337839,19721982:221765 -k1,16778:25211032,19721982:221765 -k1,16778:29775869,19721982:221766 -k1,16778:32051532,19721982:221765 -k1,16778:32583029,19721982:0 -) -(1,16779:6630773,20587062:25952256,513147,134348 -g1,16778:9920025,20587062 -g1,16778:10805416,20587062 -g1,16778:12742660,20587062 -g1,16778:13557927,20587062 -g1,16778:14113016,20587062 -g1,16778:15767144,20587062 -k1,16779:32583029,20587062:15220739 -g1,16779:32583029,20587062 -) -(1,16814:6630773,21452142:25952256,513147,134348 -h1,16813:6630773,21452142:983040,0,0 -k1,16813:8305218,21452142:221512 -k1,16813:9058226,21452142:221511 -k1,16813:11231400,21452142:221512 -k1,16813:14757893,21452142:221512 -k1,16813:16492630,21452142:221511 -k1,16813:18412180,21452142:221512 -k1,16813:22705444,21452142:221512 -k1,16813:23542993,21452142:221511 -k1,16813:25216127,21452142:221512 -k1,16813:27747783,21452142:221512 -k1,16813:28960854,21452142:221511 -k1,16813:31966991,21452142:221512 -k1,16813:32583029,21452142:0 -) -(1,16814:6630773,22317222:25952256,513147,134348 -k1,16813:8437251,22317222:207400 -k1,16813:9272485,22317222:207399 -k1,16813:10683126,22317222:207400 -k1,16813:12431277,22317222:207400 -k1,16813:14293461,22317222:207400 -k1,16813:15032357,22317222:207399 -k1,16813:16396467,22317222:207400 -k1,16813:17807763,22317222:207400 -k1,16813:19071603,22317222:207400 -k1,16813:21589146,22317222:207399 -k1,16813:22987991,22317222:207400 -k1,16813:24352101,22317222:207400 -k1,16813:26942390,22317222:207400 -k1,16813:28097440,22317222:207399 -k1,16813:29756462,22317222:207400 -k1,16814:32583029,22317222:0 -) -(1,16814:6630773,23182302:25952256,513147,126483 -k1,16813:8078665,23182302:180426 -k1,16813:8918382,23182302:180425 -k1,16813:11972562,23182302:180426 -k1,16813:14664327,23182302:180425 -k1,16813:16036198,23182302:180426 -k1,16813:17642031,23182302:180425 -k1,16813:18481749,23182302:180426 -k1,16813:23178915,23182302:180425 -k1,16813:26755417,23182302:180426 -k1,16813:28325205,23182302:180425 -k1,16813:29118393,23182302:180426 -k1,16813:30317903,23182302:180425 -k1,16813:31923737,23182302:180426 -k1,16813:32583029,23182302:0 -) -(1,16814:6630773,24047382:25952256,513147,126483 -k1,16813:10363351,24047382:223780 -k1,16813:11118628,24047382:223780 -k1,16813:13294070,24047382:223780 -k1,16813:16822831,24047382:223780 -k1,16813:19084781,24047382:223780 -k1,16813:19924599,24047382:223780 -k1,16813:21167465,24047382:223781 -k1,16813:22881534,24047382:223780 -k1,16813:25459367,24047382:223780 -k1,16813:26366032,24047382:223780 -k1,16813:28056508,24047382:223780 -k1,16813:28896326,24047382:223780 -k1,16813:31252648,24047382:223780 -k1,16814:32583029,24047382:0 -) -(1,16814:6630773,24912462:25952256,513147,134348 -k1,16813:10475630,24912462:209575 -k1,16813:13369560,24912462:209575 -k1,16813:14303962,24912462:209574 -k1,16813:15129575,24912462:209575 -k1,16813:17090927,24912462:209575 -k1,16813:18997884,24912462:209575 -k1,16813:20226544,24912462:209575 -k1,16813:21742251,24912462:209574 -k1,16813:23287450,24912462:209575 -k1,16813:24113063,24912462:209575 -k1,16813:25712001,24912462:209575 -k1,16813:28476168,24912462:209574 -k1,16813:29217240,24912462:209575 -k1,16813:30078243,24912462:209575 -k1,16813:32583029,24912462:0 -) -(1,16814:6630773,25777542:25952256,513147,134348 -k1,16813:7871643,25777542:221785 -k1,16813:9656461,25777542:221784 -k1,16813:12413179,25777542:221785 -k1,16813:14439825,25777542:221785 -k1,16813:17421985,25777542:221784 -k1,16813:20669567,25777542:221785 -k1,16813:21839003,25777542:221785 -k1,16813:25208481,25777542:221784 -k1,16813:26819629,25777542:221785 -k1,16813:28609035,25777542:221785 -k1,16813:30321108,25777542:221784 -k1,16813:31194321,25777542:221785 -k1,16813:32583029,25777542:0 -) -(1,16814:6630773,26642622:25952256,513147,7863 -g1,16813:8397623,26642622 -g1,16813:9788297,26642622 -g1,16813:11201253,26642622 -k1,16814:32583029,26642622:19629344 -g1,16814:32583029,26642622 -) -v1,16816:6630773,27507702:0,393216,0 -(1,16817:6630773,37392622:25952256,10278136,0 -g1,16817:6630773,37392622 -g1,16817:6237557,37392622 -r1,16833:6368629,37392622:131072,10278136,0 -g1,16817:6567858,37392622 -g1,16817:6764466,37392622 -[1,16817:6764466,37392622:25818563,10278136,0 -(1,16817:6764466,27868879:25818563,754393,260573 -(1,16816:6764466,27868879:0,754393,260573 -r1,16833:7856192,27868879:1091726,1014966,260573 -k1,16816:6764466,27868879:-1091726 -) -(1,16816:6764466,27868879:1091726,754393,260573 -) -k1,16816:8087151,27868879:230959 -k1,16816:8414831,27868879:327680 -k1,16816:11180724,27868879:230960 -k1,16816:13216544,27868879:230959 -k1,16816:16166593,27868879:230960 -k1,16816:18977704,27868879:230959 -k1,16816:22483496,27868879:230959 -k1,16816:24599927,27868879:230960 -k1,16816:25446924,27868879:230959 -k1,16816:27052829,27868879:230960 -k1,16816:30002877,27868879:230959 -k1,16816:32583029,27868879:0 -) -(1,16817:6764466,28733959:25818563,513147,126483 -k1,16816:10042314,28733959:295961 -k1,16816:12027793,28733959:295961 -k1,16816:16116977,28733959:295960 -k1,16816:17432023,28733959:295961 -k1,16816:20753781,28733959:295961 -k1,16816:25251255,28733959:295961 -k1,16816:26163254,28733959:295961 -k1,16816:28264075,28733959:295960 -k1,16816:30035251,28733959:295961 -k1,16816:31841162,28733959:295961 -k1,16817:32583029,28733959:0 -) -(1,16817:6764466,29599039:25818563,513147,126483 -k1,16816:8824306,29599039:140946 -k1,16816:11684341,29599039:140946 -k1,16816:12586815,29599039:140946 -k1,16816:14010956,29599039:140946 -k1,16816:15638914,29599039:140946 -k1,16816:17173811,29599039:140946 -k1,16816:20077100,29599039:140946 -k1,16816:22302092,29599039:140947 -k1,16816:23634483,29599039:140946 -k1,16816:25687114,29599039:140946 -k1,16816:26305817,29599039:140946 -k1,16816:27603473,29599039:140946 -k1,16816:28275916,29599039:140946 -k1,16816:28772722,29599039:140946 -k1,16816:30303031,29599039:140946 -k1,16816:32583029,29599039:0 -) -(1,16817:6764466,30464119:25818563,513147,126483 -k1,16816:8153010,30464119:197099 -k1,16816:9772897,30464119:197100 -k1,16816:11666723,30464119:197099 -k1,16816:14889619,30464119:197099 -k1,16816:16788034,30464119:197100 -k1,16816:18296508,30464119:197099 -k1,16816:19927535,30464119:197099 -k1,16816:21143720,30464119:197100 -k1,16816:22656127,30464119:197099 -k1,16816:25551343,30464119:197099 -k1,16816:26279940,30464119:197100 -k1,16816:29782020,30464119:197099 -k1,16816:32583029,30464119:0 -) -(1,16817:6764466,31329199:25818563,513147,134348 -k1,16816:7653080,31329199:205729 -k1,16816:9325505,31329199:205729 -k1,16816:12427925,31329199:205729 -k1,16816:14328415,31329199:205729 -k1,16816:15553229,31329199:205729 -k1,16816:20531290,31329199:205729 -k1,16816:23671721,31329199:205729 -k1,16816:24825101,31329199:205729 -k1,16816:25445666,31329199:205722 -k1,16816:27362540,31329199:205729 -k1,16816:28184307,31329199:205729 -k1,16816:30761784,31329199:205729 -k1,16816:32583029,31329199:0 -) -(1,16817:6764466,32194279:25818563,513147,134348 -k1,16816:7582495,32194279:166601 -k1,16816:9699446,32194279:166600 -k1,16816:11069288,32194279:166601 -k1,16816:12817928,32194279:166601 -k1,16816:13516025,32194279:166600 -k1,16816:16503951,32194279:166601 -k1,16816:17286589,32194279:166600 -k1,16816:18472275,32194279:166601 -k1,16816:20027584,32194279:166601 -k1,16816:21312228,32194279:166600 -k1,16816:23214222,32194279:166601 -k1,16816:26076319,32194279:166601 -(1,16816:26076319,32194279:0,452978,115847 -r1,16833:29248279,32194279:3171960,568825,115847 -k1,16816:26076319,32194279:-3171960 -) -(1,16816:26076319,32194279:3171960,452978,115847 -k1,16816:26076319,32194279:3277 -h1,16816:29245002,32194279:0,411205,112570 -) -k1,16816:29414879,32194279:166600 -k1,16816:31149101,32194279:166601 -k1,16817:32583029,32194279:0 -) -(1,16817:6764466,33059359:25818563,513147,134348 -k1,16816:7369748,33059359:190439 -k1,16816:8664478,33059359:190448 -k1,16816:9602692,33059359:190448 -k1,16816:11864078,33059359:190448 -k1,16816:13521222,33059359:190448 -k1,16816:15409708,33059359:190448 -k1,16816:16388554,33059359:190448 -k1,16816:18663047,33059359:190448 -k1,16816:19384992,33059359:190448 -k1,16816:20641711,33059359:190448 -k1,16816:21518321,33059359:190448 -k1,16816:26720963,33059359:190448 -k1,16816:28143488,33059359:190448 -k1,16816:30612623,33059359:190448 -h1,16816:31583211,33059359:0,0,0 -k1,16816:31773659,33059359:190448 -k1,16816:32583029,33059359:0 -) -(1,16817:6764466,33924439:25818563,513147,134348 -k1,16816:8507824,33924439:245205 -h1,16816:9703201,33924439:0,0,0 -k1,16816:10329171,33924439:245206 -k1,16816:11955220,33924439:245205 -k1,16816:13693336,33924439:245206 -k1,16816:15004812,33924439:245205 -k1,16816:17509698,33924439:245205 -k1,16816:19322525,33924439:245206 -k1,16816:20586815,33924439:245205 -k1,16816:24401111,33924439:245205 -k1,16816:25305609,33924439:245206 -k1,16816:27286207,33924439:245205 -k1,16816:27887273,33924439:245206 -k1,16816:29662744,33924439:245205 -k1,16816:32583029,33924439:0 -) -(1,16817:6764466,34789519:25818563,513147,126483 -k1,16816:7647236,34789519:196608 -k1,16816:11632480,34789519:196608 -k1,16816:12590617,34789519:196609 -k1,16816:13806310,34789519:196608 -k1,16816:17686041,34789519:196608 -k1,16816:18541941,34789519:196608 -k1,16816:19757634,34789519:196608 -k1,16816:22955136,34789519:196609 -k1,16816:24640067,34789519:196608 -k1,16816:25049664,34789519:196605 -k1,16816:26621874,34789519:196609 -k1,16816:28367098,34789519:196608 -k1,16816:29215134,34789519:196608 -k1,16816:32583029,34789519:0 -) -(1,16817:6764466,35654599:25818563,513147,134348 -k1,16816:8233783,35654599:184811 -k1,16816:10153988,35654599:184812 -k1,16816:12030939,35654599:184811 -k1,16816:12875043,35654599:184812 -k1,16816:14078939,35654599:184811 -k1,16816:17174205,35654599:184812 -k1,16816:18926637,35654599:184811 -k1,16816:20130533,35654599:184811 -k1,16816:23523332,35654599:184812 -k1,16816:24394305,35654599:184811 -k1,16816:25973068,35654599:184812 -k1,16816:27289686,35654599:184811 -k1,16816:30233564,35654599:184812 -k1,16816:31812326,35654599:184811 -k1,16816:32583029,35654599:0 -) -(1,16817:6764466,36519679:25818563,513147,134348 -k1,16816:9625419,36519679:209366 -k1,16816:11215628,36519679:209365 -k1,16816:14235178,36519679:209366 -k1,16816:15548825,36519679:209365 -k1,16816:17233406,36519679:209366 -k1,16816:18058810,36519679:209366 -k1,16816:19960315,36519679:209365 -k1,16816:21867063,36519679:209366 -k1,16816:22432288,36519679:209365 -k1,16816:23956962,36519679:209366 -k1,16816:25450834,36519679:209366 -k1,16816:27520766,36519679:209365 -k1,16816:28381560,36519679:209366 -k1,16816:29338691,36519679:209365 -k1,16816:31315563,36519679:209366 -k1,16816:32583029,36519679:0 -) -(1,16817:6764466,37384759:25818563,505283,7863 -k1,16817:32583030,37384759:21411924 -g1,16817:32583030,37384759 -) -] -g1,16817:32583029,37392622 -) -h1,16817:6630773,37392622:0,0,0 -(1,16821:6630773,38257702:25952256,505283,126483 -h1,16820:6630773,38257702:983040,0,0 -k1,16820:7966968,38257702:140163 -k1,16820:9199674,38257702:140221 -k1,16820:9955933,38257702:140221 -k1,16820:13087874,38257702:140222 -k1,16820:15096526,38257702:140221 -k1,16820:16255833,38257702:140222 -(1,16820:16255833,38257702:0,452978,115847 -r1,16833:17669234,38257702:1413401,568825,115847 -k1,16820:16255833,38257702:-1413401 -) -(1,16820:16255833,38257702:1413401,452978,115847 -k1,16820:16255833,38257702:3277 -h1,16820:17665957,38257702:0,411205,112570 -) -k1,16820:17809455,38257702:140221 -k1,16820:19339039,38257702:140221 -k1,16820:20413804,38257702:140222 -k1,16820:23312435,38257702:140221 -k1,16820:24068694,38257702:140221 -k1,16820:25642844,38257702:140222 -k1,16820:26371578,38257702:140221 -k1,16820:28228843,38257702:140222 -k1,16820:31773659,38257702:140221 -k1,16821:32583029,38257702:0 -) -(1,16821:6630773,39122782:25952256,513147,134348 -k1,16820:7278651,39122782:233035 -(1,16820:7278651,39122782:0,459977,115847 -r1,16833:10802323,39122782:3523672,575824,115847 -k1,16820:7278651,39122782:-3523672 -) -(1,16820:7278651,39122782:3523672,459977,115847 -k1,16820:7278651,39122782:3277 -h1,16820:10799046,39122782:0,411205,112570 -) -k1,16820:11035392,39122782:233069 -k1,16820:13558290,39122782:233070 -k1,16820:15185310,39122782:233069 -k1,16820:18444176,39122782:233069 -k1,16820:19868690,39122782:233069 -k1,16820:23178674,39122782:233069 -k1,16820:24979365,39122782:233070 -k1,16820:26231519,39122782:233069 -k1,16820:29672575,39122782:233069 -k1,16820:32583029,39122782:0 -) -(1,16821:6630773,39987862:25952256,505283,134348 -k1,16820:7990490,39987862:253469 -k1,16820:10254603,39987862:253468 -(1,16820:10254603,39987862:0,459977,115847 -r1,16833:13778275,39987862:3523672,575824,115847 -k1,16820:10254603,39987862:-3523672 -) -(1,16820:10254603,39987862:3523672,459977,115847 -k1,16820:10254603,39987862:3277 -h1,16820:13774998,39987862:0,411205,112570 -) -k1,16820:14031744,39987862:253469 -k1,16820:16575040,39987862:253468 -k1,16820:18518027,39987862:253469 -k1,16820:20803767,39987862:253469 -k1,16820:22189697,39987862:253468 -k1,16820:24453811,39987862:253469 -k1,16820:28573903,39987862:253468 -(1,16820:28573903,39987862:0,452978,115847 -r1,16833:29987304,39987862:1413401,568825,115847 -k1,16820:28573903,39987862:-1413401 -) -(1,16820:28573903,39987862:1413401,452978,115847 -k1,16820:28573903,39987862:3277 -h1,16820:29984027,39987862:0,411205,112570 -) -k1,16820:30240773,39987862:253469 -k1,16820:32583029,39987862:0 -) -(1,16821:6630773,40852942:25952256,513147,126483 -k1,16820:11358822,40852942:207375 -k1,16820:12024293,40852942:207374 -k1,16820:12763165,40852942:207375 -k1,16820:14557166,40852942:207374 -k1,16820:15415969,40852942:207375 -k1,16820:16929476,40852942:207374 -k1,16820:19529570,40852942:207375 -k1,16820:21004410,40852942:207374 -k1,16820:23353502,40852942:207375 -k1,16820:24579961,40852942:207374 -k1,16820:26176699,40852942:207375 -k1,16820:28590670,40852942:207374 -k1,16820:29666397,40852942:207375 -k1,16820:31006233,40852942:207374 -k1,16820:32583029,40852942:0 -) -(1,16821:6630773,41718022:25952256,505283,7863 -k1,16821:32583030,41718022:24532092 -g1,16821:32583030,41718022 -) -v1,16823:6630773,42402877:0,393216,0 -(1,16827:6630773,42710530:25952256,700869,196608 -g1,16827:6630773,42710530 -g1,16827:6630773,42710530 -g1,16827:6434165,42710530 -(1,16827:6434165,42710530:0,700869,196608 -r1,16833:32779637,42710530:26345472,897477,196608 -k1,16827:6434165,42710530:-26345472 -) -(1,16827:6434165,42710530:26345472,700869,196608 -[1,16827:6630773,42710530:25952256,504261,0 -(1,16825:6630773,42630708:25952256,424439,79822 -(1,16824:6630773,42630708:0,0,0 -g1,16824:6630773,42630708 -g1,16824:6630773,42630708 -g1,16824:6303093,42630708 -(1,16824:6303093,42630708:0,0,0 -) -g1,16824:6630773,42630708 -) -g1,16825:9286405,42630708 -g1,16825:10282267,42630708 -k1,16825:10282267,42630708:0 -h1,16825:15261576,42630708:0,0,0 -k1,16825:32583028,42630708:17321452 -g1,16825:32583028,42630708 -) -] -) -g1,16827:32583029,42710530 -g1,16827:6630773,42710530 -g1,16827:6630773,42710530 -g1,16827:32583029,42710530 -g1,16827:32583029,42710530 -) -h1,16827:6630773,42907138:0,0,0 -(1,16831:6630773,43772218:25952256,513147,134348 -h1,16830:6630773,43772218:983040,0,0 -k1,16830:10651907,43772218:248226 -(1,16830:10651907,43772218:0,452978,122846 -r1,16833:15582427,43772218:4930520,575824,122846 -k1,16830:10651907,43772218:-4930520 -) -(1,16830:10651907,43772218:4930520,452978,122846 -k1,16830:10651907,43772218:3277 -h1,16830:15579150,43772218:0,411205,112570 -) -k1,16830:15830652,43772218:248225 -k1,16830:17646499,43772218:248226 -k1,16830:19699586,43772218:248226 -k1,16830:22670833,43772218:248226 -k1,16830:24308421,43772218:248225 -k1,16830:26124268,43772218:248226 -k1,16830:27862783,43772218:248226 -k1,16830:29678629,43772218:248225 -k1,16830:31194321,43772218:248226 -k1,16830:32583029,43772218:0 -) -(1,16831:6630773,44637298:25952256,513147,134348 -k1,16830:8380833,44637298:182439 -k1,16830:9453250,44637298:182438 -k1,16830:11856704,44637298:182439 -k1,16830:12992691,44637298:182438 -k1,16830:14267615,44637298:182439 -k1,16830:14908150,44637298:182438 -k1,16830:16488472,44637298:182439 -k1,16830:17322339,44637298:182439 -k1,16830:19528529,44637298:182438 -k1,16830:20066828,44637298:182439 -k1,16830:23418587,44637298:182438 -k1,16830:25586112,44637298:182439 -k1,16830:26528768,44637298:182438 -k1,16830:30114492,44637298:182439 -(1,16830:30114492,44637298:0,452978,115847 -r1,16833:32583029,44637298:2468537,568825,115847 -k1,16830:30114492,44637298:-2468537 -) -(1,16830:30114492,44637298:2468537,452978,115847 -k1,16830:30114492,44637298:3277 -h1,16830:32579752,44637298:0,411205,112570 -) -k1,16830:32583029,44637298:0 -) -(1,16831:6630773,45502378:25952256,505283,126483 -g1,16830:8197739,45502378 -(1,16830:8197739,45502378:0,452978,122846 -r1,16833:12424835,45502378:4227096,575824,122846 -k1,16830:8197739,45502378:-4227096 -) -(1,16830:8197739,45502378:4227096,452978,122846 -k1,16830:8197739,45502378:3277 -h1,16830:12421558,45502378:0,411205,112570 -) -g1,16830:12624064,45502378 -g1,16830:13691645,45502378 -g1,16830:14995156,45502378 -g1,16830:18522303,45502378 -g1,16830:20051913,45502378 -(1,16830:20051913,45502378:0,452978,122846 -r1,16833:24982433,45502378:4930520,575824,122846 -k1,16830:20051913,45502378:-4930520 -) -(1,16830:20051913,45502378:4930520,452978,122846 -k1,16830:20051913,45502378:3277 -h1,16830:24979156,45502378:0,411205,112570 -) -g1,16830:25181662,45502378 -g1,16830:28306418,45502378 -g1,16830:29294045,45502378 -k1,16831:32583029,45502378:1528032 -g1,16831:32583029,45502378 -) -] -(1,16833:32583029,45706769:0,0,0 -g1,16833:32583029,45706769 -) -) -] -(1,16833:6630773,47279633:25952256,0,0 -h1,16833:6630773,47279633:25952256,0,0 -) -] -(1,16833:4262630,4025873:0,0,0 -[1,16833:-473656,4025873:0,0,0 -(1,16833:-473656,-710413:0,0,0 -(1,16833:-473656,-710413:0,0,0 -g1,16833:-473656,-710413 -) -g1,16833:-473656,-710413 +g1,16808:32583029,9431016 +) +(1,16808:6630773,14161234:25952256,505283,134348 +h1,16808:6630773,14161234:0,0,0 +g1,16808:8923222,14161234 +k1,16808:32583029,14161234:22689874 +g1,16808:32583029,14161234 +) +(1,16808:6630773,15026314:25952256,513147,134348 +h1,16808:6600626,15026314:0,0,0 +g1,16808:8375341,15026314 +g1,16808:10062893,15026314 +g1,16808:11453567,15026314 +g1,16808:13041504,15026314 +g1,16808:15190429,15026314 +g1,16808:16779021,15026314 +k1,16808:32583029,15026314:13240895 +g1,16808:32583029,15026314 +) +] +] +(1,16777:6630773,17126742:25952256,513147,134348 +k1,16776:8862789,17126742:193846 +k1,16776:9672673,17126742:193846 +k1,16776:10222379,17126742:193846 +k1,16776:12972784,17126742:193846 +k1,16776:14638569,17126742:193846 +k1,16776:17677988,17126742:193846 +k1,16776:18487872,17126742:193846 +k1,16776:20046178,17126742:193846 +k1,16776:21784053,17126742:193846 +k1,16776:23078904,17126742:193846 +k1,16776:24782700,17126742:193846 +k1,16776:28477479,17126742:193846 +k1,16776:29357487,17126742:193846 +k1,16776:31391584,17126742:193846 +k1,16776:32583029,17126742:0 +) +(1,16777:6630773,17991822:25952256,513147,134348 +k1,16776:8091923,17991822:257909 +k1,16776:8881330,17991822:257910 +k1,16776:11915344,17991822:257909 +k1,16776:12789292,17991822:257910 +k1,16776:14066286,17991822:257909 +k1,16776:16062210,17991822:257909 +k1,16776:18014881,17991822:257910 +k1,16776:18924218,17991822:257909 +k1,16776:20201213,17991822:257910 +k1,16776:23667109,17991822:257909 +k1,16776:25475600,17991822:257909 +k1,16776:26392802,17991822:257910 +k1,16776:29734835,17991822:257909 +k1,16776:32583029,17991822:0 +) +(1,16777:6630773,18856902:25952256,513147,134348 +k1,16776:8049409,18856902:215395 +k1,16776:12124219,18856902:215395 +k1,16776:16403501,18856902:215395 +k1,16776:17278188,18856902:215395 +k1,16776:18882946,18856902:215395 +k1,16776:20199346,18856902:215395 +k1,16776:21924691,18856902:215395 +k1,16776:23159171,18856902:215395 +k1,16776:26387911,18856902:215395 +k1,16776:28783689,18856902:215395 +k1,16776:30626343,18856902:215395 +k1,16776:31860823,18856902:215395 +k1,16777:32583029,18856902:0 +) +(1,16777:6630773,19721982:25952256,513147,126483 +k1,16776:9221665,19721982:221765 +k1,16776:10110587,19721982:221766 +k1,16776:10685568,19721982:221742 +k1,16776:12098779,19721982:221766 +k1,16776:12909057,19721982:221765 +k1,16776:14602762,19721982:221766 +k1,16776:15440565,19721982:221765 +k1,16776:17547801,19721982:221765 +k1,16776:20482758,19721982:221766 +k1,16776:24337839,19721982:221765 +k1,16776:25211032,19721982:221765 +k1,16776:29775869,19721982:221766 +k1,16776:32051532,19721982:221765 +k1,16776:32583029,19721982:0 +) +(1,16777:6630773,20587062:25952256,513147,134348 +g1,16776:9920025,20587062 +g1,16776:10805416,20587062 +g1,16776:12742660,20587062 +g1,16776:13557927,20587062 +g1,16776:14113016,20587062 +g1,16776:15767144,20587062 +k1,16777:32583029,20587062:15220739 +g1,16777:32583029,20587062 +) +(1,16812:6630773,21452142:25952256,513147,134348 +h1,16811:6630773,21452142:983040,0,0 +k1,16811:8305218,21452142:221512 +k1,16811:9058226,21452142:221511 +k1,16811:11231400,21452142:221512 +k1,16811:14757893,21452142:221512 +k1,16811:16492630,21452142:221511 +k1,16811:18412180,21452142:221512 +k1,16811:22705444,21452142:221512 +k1,16811:23542993,21452142:221511 +k1,16811:25216127,21452142:221512 +k1,16811:27747783,21452142:221512 +k1,16811:28960854,21452142:221511 +k1,16811:31966991,21452142:221512 +k1,16811:32583029,21452142:0 +) +(1,16812:6630773,22317222:25952256,513147,134348 +k1,16811:8437251,22317222:207400 +k1,16811:9272485,22317222:207399 +k1,16811:10683126,22317222:207400 +k1,16811:12431277,22317222:207400 +k1,16811:14293461,22317222:207400 +k1,16811:15032357,22317222:207399 +k1,16811:16396467,22317222:207400 +k1,16811:17807763,22317222:207400 +k1,16811:19071603,22317222:207400 +k1,16811:21589146,22317222:207399 +k1,16811:22987991,22317222:207400 +k1,16811:24352101,22317222:207400 +k1,16811:26942390,22317222:207400 +k1,16811:28097440,22317222:207399 +k1,16811:29756462,22317222:207400 +k1,16812:32583029,22317222:0 +) +(1,16812:6630773,23182302:25952256,513147,126483 +k1,16811:8078665,23182302:180426 +k1,16811:8918382,23182302:180425 +k1,16811:11972562,23182302:180426 +k1,16811:14664327,23182302:180425 +k1,16811:16036198,23182302:180426 +k1,16811:17642031,23182302:180425 +k1,16811:18481749,23182302:180426 +k1,16811:23178915,23182302:180425 +k1,16811:26755417,23182302:180426 +k1,16811:28325205,23182302:180425 +k1,16811:29118393,23182302:180426 +k1,16811:30317903,23182302:180425 +k1,16811:31923737,23182302:180426 +k1,16811:32583029,23182302:0 +) +(1,16812:6630773,24047382:25952256,513147,126483 +k1,16811:10363351,24047382:223780 +k1,16811:11118628,24047382:223780 +k1,16811:13294070,24047382:223780 +k1,16811:16822831,24047382:223780 +k1,16811:19084781,24047382:223780 +k1,16811:19924599,24047382:223780 +k1,16811:21167465,24047382:223781 +k1,16811:22881534,24047382:223780 +k1,16811:25459367,24047382:223780 +k1,16811:26366032,24047382:223780 +k1,16811:28056508,24047382:223780 +k1,16811:28896326,24047382:223780 +k1,16811:31252648,24047382:223780 +k1,16812:32583029,24047382:0 +) +(1,16812:6630773,24912462:25952256,513147,134348 +k1,16811:10475630,24912462:209575 +k1,16811:13369560,24912462:209575 +k1,16811:14303962,24912462:209574 +k1,16811:15129575,24912462:209575 +k1,16811:17090927,24912462:209575 +k1,16811:18997884,24912462:209575 +k1,16811:20226544,24912462:209575 +k1,16811:21742251,24912462:209574 +k1,16811:23287450,24912462:209575 +k1,16811:24113063,24912462:209575 +k1,16811:25712001,24912462:209575 +k1,16811:28476168,24912462:209574 +k1,16811:29217240,24912462:209575 +k1,16811:30078243,24912462:209575 +k1,16811:32583029,24912462:0 +) +(1,16812:6630773,25777542:25952256,513147,134348 +k1,16811:7871643,25777542:221785 +k1,16811:9656461,25777542:221784 +k1,16811:12413179,25777542:221785 +k1,16811:14439825,25777542:221785 +k1,16811:17421985,25777542:221784 +k1,16811:20669567,25777542:221785 +k1,16811:21839003,25777542:221785 +k1,16811:25208481,25777542:221784 +k1,16811:26819629,25777542:221785 +k1,16811:28609035,25777542:221785 +k1,16811:30321108,25777542:221784 +k1,16811:31194321,25777542:221785 +k1,16811:32583029,25777542:0 +) +(1,16812:6630773,26642622:25952256,513147,7863 +g1,16811:8397623,26642622 +g1,16811:9788297,26642622 +g1,16811:11201253,26642622 +k1,16812:32583029,26642622:19629344 +g1,16812:32583029,26642622 +) +v1,16814:6630773,27507702:0,393216,0 +(1,16815:6630773,37392622:25952256,10278136,0 +g1,16815:6630773,37392622 +g1,16815:6237557,37392622 +r1,16831:6368629,37392622:131072,10278136,0 +g1,16815:6567858,37392622 +g1,16815:6764466,37392622 +[1,16815:6764466,37392622:25818563,10278136,0 +(1,16815:6764466,27868879:25818563,754393,260573 +(1,16814:6764466,27868879:0,754393,260573 +r1,16831:7856192,27868879:1091726,1014966,260573 +k1,16814:6764466,27868879:-1091726 +) +(1,16814:6764466,27868879:1091726,754393,260573 +) +k1,16814:8087151,27868879:230959 +k1,16814:8414831,27868879:327680 +k1,16814:11180724,27868879:230960 +k1,16814:13216544,27868879:230959 +k1,16814:16166593,27868879:230960 +k1,16814:18977704,27868879:230959 +k1,16814:22483496,27868879:230959 +k1,16814:24599927,27868879:230960 +k1,16814:25446924,27868879:230959 +k1,16814:27052829,27868879:230960 +k1,16814:30002877,27868879:230959 +k1,16814:32583029,27868879:0 +) +(1,16815:6764466,28733959:25818563,513147,126483 +k1,16814:10042314,28733959:295961 +k1,16814:12027793,28733959:295961 +k1,16814:16116977,28733959:295960 +k1,16814:17432023,28733959:295961 +k1,16814:20753781,28733959:295961 +k1,16814:25251255,28733959:295961 +k1,16814:26163254,28733959:295961 +k1,16814:28264075,28733959:295960 +k1,16814:30035251,28733959:295961 +k1,16814:31841162,28733959:295961 +k1,16815:32583029,28733959:0 +) +(1,16815:6764466,29599039:25818563,513147,126483 +k1,16814:8824306,29599039:140946 +k1,16814:11684341,29599039:140946 +k1,16814:12586815,29599039:140946 +k1,16814:14010956,29599039:140946 +k1,16814:15638914,29599039:140946 +k1,16814:17173811,29599039:140946 +k1,16814:20077100,29599039:140946 +k1,16814:22302092,29599039:140947 +k1,16814:23634483,29599039:140946 +k1,16814:25687114,29599039:140946 +k1,16814:26305817,29599039:140946 +k1,16814:27603473,29599039:140946 +k1,16814:28275916,29599039:140946 +k1,16814:28772722,29599039:140946 +k1,16814:30303031,29599039:140946 +k1,16814:32583029,29599039:0 +) +(1,16815:6764466,30464119:25818563,513147,126483 +k1,16814:8153010,30464119:197099 +k1,16814:9772897,30464119:197100 +k1,16814:11666723,30464119:197099 +k1,16814:14889619,30464119:197099 +k1,16814:16788034,30464119:197100 +k1,16814:18296508,30464119:197099 +k1,16814:19927535,30464119:197099 +k1,16814:21143720,30464119:197100 +k1,16814:22656127,30464119:197099 +k1,16814:25551343,30464119:197099 +k1,16814:26279940,30464119:197100 +k1,16814:29782020,30464119:197099 +k1,16814:32583029,30464119:0 +) +(1,16815:6764466,31329199:25818563,513147,134348 +k1,16814:7653080,31329199:205729 +k1,16814:9325505,31329199:205729 +k1,16814:12427925,31329199:205729 +k1,16814:14328415,31329199:205729 +k1,16814:15553229,31329199:205729 +k1,16814:20531290,31329199:205729 +k1,16814:23671721,31329199:205729 +k1,16814:24825101,31329199:205729 +k1,16814:25445666,31329199:205722 +k1,16814:27362540,31329199:205729 +k1,16814:28184307,31329199:205729 +k1,16814:30761784,31329199:205729 +k1,16814:32583029,31329199:0 +) +(1,16815:6764466,32194279:25818563,513147,134348 +k1,16814:7582495,32194279:166601 +k1,16814:9699446,32194279:166600 +k1,16814:11069288,32194279:166601 +k1,16814:12817928,32194279:166601 +k1,16814:13516025,32194279:166600 +k1,16814:16503951,32194279:166601 +k1,16814:17286589,32194279:166600 +k1,16814:18472275,32194279:166601 +k1,16814:20027584,32194279:166601 +k1,16814:21312228,32194279:166600 +k1,16814:23214222,32194279:166601 +k1,16814:26076319,32194279:166601 +(1,16814:26076319,32194279:0,452978,115847 +r1,16831:29248279,32194279:3171960,568825,115847 +k1,16814:26076319,32194279:-3171960 +) +(1,16814:26076319,32194279:3171960,452978,115847 +k1,16814:26076319,32194279:3277 +h1,16814:29245002,32194279:0,411205,112570 +) +k1,16814:29414879,32194279:166600 +k1,16814:31149101,32194279:166601 +k1,16815:32583029,32194279:0 +) +(1,16815:6764466,33059359:25818563,513147,134348 +k1,16814:7369748,33059359:190439 +k1,16814:8664478,33059359:190448 +k1,16814:9602692,33059359:190448 +k1,16814:11864078,33059359:190448 +k1,16814:13521222,33059359:190448 +k1,16814:15409708,33059359:190448 +k1,16814:16388554,33059359:190448 +k1,16814:18663047,33059359:190448 +k1,16814:19384992,33059359:190448 +k1,16814:20641711,33059359:190448 +k1,16814:21518321,33059359:190448 +k1,16814:26720963,33059359:190448 +k1,16814:28143488,33059359:190448 +k1,16814:30612623,33059359:190448 +h1,16814:31583211,33059359:0,0,0 +k1,16814:31773659,33059359:190448 +k1,16814:32583029,33059359:0 +) +(1,16815:6764466,33924439:25818563,513147,134348 +k1,16814:8507824,33924439:245205 +h1,16814:9703201,33924439:0,0,0 +k1,16814:10329171,33924439:245206 +k1,16814:11955220,33924439:245205 +k1,16814:13693336,33924439:245206 +k1,16814:15004812,33924439:245205 +k1,16814:17509698,33924439:245205 +k1,16814:19322525,33924439:245206 +k1,16814:20586815,33924439:245205 +k1,16814:24401111,33924439:245205 +k1,16814:25305609,33924439:245206 +k1,16814:27286207,33924439:245205 +k1,16814:27887273,33924439:245206 +k1,16814:29662744,33924439:245205 +k1,16814:32583029,33924439:0 +) +(1,16815:6764466,34789519:25818563,513147,126483 +k1,16814:7647236,34789519:196608 +k1,16814:11632480,34789519:196608 +k1,16814:12590617,34789519:196609 +k1,16814:13806310,34789519:196608 +k1,16814:17686041,34789519:196608 +k1,16814:18541941,34789519:196608 +k1,16814:19757634,34789519:196608 +k1,16814:22955136,34789519:196609 +k1,16814:24640067,34789519:196608 +k1,16814:25049664,34789519:196605 +k1,16814:26621874,34789519:196609 +k1,16814:28367098,34789519:196608 +k1,16814:29215134,34789519:196608 +k1,16814:32583029,34789519:0 +) +(1,16815:6764466,35654599:25818563,513147,134348 +k1,16814:8233783,35654599:184811 +k1,16814:10153988,35654599:184812 +k1,16814:12030939,35654599:184811 +k1,16814:12875043,35654599:184812 +k1,16814:14078939,35654599:184811 +k1,16814:17174205,35654599:184812 +k1,16814:18926637,35654599:184811 +k1,16814:20130533,35654599:184811 +k1,16814:23523332,35654599:184812 +k1,16814:24394305,35654599:184811 +k1,16814:25973068,35654599:184812 +k1,16814:27289686,35654599:184811 +k1,16814:30233564,35654599:184812 +k1,16814:31812326,35654599:184811 +k1,16814:32583029,35654599:0 +) +(1,16815:6764466,36519679:25818563,513147,134348 +k1,16814:9625419,36519679:209366 +k1,16814:11215628,36519679:209365 +k1,16814:14235178,36519679:209366 +k1,16814:15548825,36519679:209365 +k1,16814:17233406,36519679:209366 +k1,16814:18058810,36519679:209366 +k1,16814:19960315,36519679:209365 +k1,16814:21867063,36519679:209366 +k1,16814:22432288,36519679:209365 +k1,16814:23956962,36519679:209366 +k1,16814:25450834,36519679:209366 +k1,16814:27520766,36519679:209365 +k1,16814:28381560,36519679:209366 +k1,16814:29338691,36519679:209365 +k1,16814:31315563,36519679:209366 +k1,16814:32583029,36519679:0 +) +(1,16815:6764466,37384759:25818563,505283,7863 +k1,16815:32583030,37384759:21411924 +g1,16815:32583030,37384759 +) +] +g1,16815:32583029,37392622 +) +h1,16815:6630773,37392622:0,0,0 +(1,16819:6630773,38257702:25952256,505283,126483 +h1,16818:6630773,38257702:983040,0,0 +k1,16818:7966968,38257702:140163 +k1,16818:9199674,38257702:140221 +k1,16818:9955933,38257702:140221 +k1,16818:13087874,38257702:140222 +k1,16818:15096526,38257702:140221 +k1,16818:16255833,38257702:140222 +(1,16818:16255833,38257702:0,452978,115847 +r1,16831:17669234,38257702:1413401,568825,115847 +k1,16818:16255833,38257702:-1413401 +) +(1,16818:16255833,38257702:1413401,452978,115847 +k1,16818:16255833,38257702:3277 +h1,16818:17665957,38257702:0,411205,112570 +) +k1,16818:17809455,38257702:140221 +k1,16818:19339039,38257702:140221 +k1,16818:20413804,38257702:140222 +k1,16818:23312435,38257702:140221 +k1,16818:24068694,38257702:140221 +k1,16818:25642844,38257702:140222 +k1,16818:26371578,38257702:140221 +k1,16818:28228843,38257702:140222 +k1,16818:31773659,38257702:140221 +k1,16819:32583029,38257702:0 +) +(1,16819:6630773,39122782:25952256,513147,134348 +k1,16818:7278651,39122782:233035 +(1,16818:7278651,39122782:0,459977,115847 +r1,16831:10802323,39122782:3523672,575824,115847 +k1,16818:7278651,39122782:-3523672 +) +(1,16818:7278651,39122782:3523672,459977,115847 +k1,16818:7278651,39122782:3277 +h1,16818:10799046,39122782:0,411205,112570 +) +k1,16818:11035392,39122782:233069 +k1,16818:13558290,39122782:233070 +k1,16818:15185310,39122782:233069 +k1,16818:18444176,39122782:233069 +k1,16818:19868690,39122782:233069 +k1,16818:23178674,39122782:233069 +k1,16818:24979365,39122782:233070 +k1,16818:26231519,39122782:233069 +k1,16818:29672575,39122782:233069 +k1,16818:32583029,39122782:0 +) +(1,16819:6630773,39987862:25952256,505283,134348 +k1,16818:7990490,39987862:253469 +k1,16818:10254603,39987862:253468 +(1,16818:10254603,39987862:0,459977,115847 +r1,16831:13778275,39987862:3523672,575824,115847 +k1,16818:10254603,39987862:-3523672 +) +(1,16818:10254603,39987862:3523672,459977,115847 +k1,16818:10254603,39987862:3277 +h1,16818:13774998,39987862:0,411205,112570 +) +k1,16818:14031744,39987862:253469 +k1,16818:16575040,39987862:253468 +k1,16818:18518027,39987862:253469 +k1,16818:20803767,39987862:253469 +k1,16818:22189697,39987862:253468 +k1,16818:24453811,39987862:253469 +k1,16818:28573903,39987862:253468 +(1,16818:28573903,39987862:0,452978,115847 +r1,16831:29987304,39987862:1413401,568825,115847 +k1,16818:28573903,39987862:-1413401 +) +(1,16818:28573903,39987862:1413401,452978,115847 +k1,16818:28573903,39987862:3277 +h1,16818:29984027,39987862:0,411205,112570 +) +k1,16818:30240773,39987862:253469 +k1,16818:32583029,39987862:0 +) +(1,16819:6630773,40852942:25952256,513147,126483 +k1,16818:11358822,40852942:207375 +k1,16818:12024293,40852942:207374 +k1,16818:12763165,40852942:207375 +k1,16818:14557166,40852942:207374 +k1,16818:15415969,40852942:207375 +k1,16818:16929476,40852942:207374 +k1,16818:19529570,40852942:207375 +k1,16818:21004410,40852942:207374 +k1,16818:23353502,40852942:207375 +k1,16818:24579961,40852942:207374 +k1,16818:26176699,40852942:207375 +k1,16818:28590670,40852942:207374 +k1,16818:29666397,40852942:207375 +k1,16818:31006233,40852942:207374 +k1,16818:32583029,40852942:0 +) +(1,16819:6630773,41718022:25952256,505283,7863 +k1,16819:32583030,41718022:24532092 +g1,16819:32583030,41718022 +) +v1,16821:6630773,42402877:0,393216,0 +(1,16825:6630773,42710530:25952256,700869,196608 +g1,16825:6630773,42710530 +g1,16825:6630773,42710530 +g1,16825:6434165,42710530 +(1,16825:6434165,42710530:0,700869,196608 +r1,16831:32779637,42710530:26345472,897477,196608 +k1,16825:6434165,42710530:-26345472 +) +(1,16825:6434165,42710530:26345472,700869,196608 +[1,16825:6630773,42710530:25952256,504261,0 +(1,16823:6630773,42630708:25952256,424439,79822 +(1,16822:6630773,42630708:0,0,0 +g1,16822:6630773,42630708 +g1,16822:6630773,42630708 +g1,16822:6303093,42630708 +(1,16822:6303093,42630708:0,0,0 +) +g1,16822:6630773,42630708 +) +g1,16823:9286405,42630708 +g1,16823:10282267,42630708 +k1,16823:10282267,42630708:0 +h1,16823:15261576,42630708:0,0,0 +k1,16823:32583028,42630708:17321452 +g1,16823:32583028,42630708 +) +] +) +g1,16825:32583029,42710530 +g1,16825:6630773,42710530 +g1,16825:6630773,42710530 +g1,16825:32583029,42710530 +g1,16825:32583029,42710530 +) +h1,16825:6630773,42907138:0,0,0 +(1,16829:6630773,43772218:25952256,513147,134348 +h1,16828:6630773,43772218:983040,0,0 +k1,16828:10651907,43772218:248226 +(1,16828:10651907,43772218:0,452978,122846 +r1,16831:15582427,43772218:4930520,575824,122846 +k1,16828:10651907,43772218:-4930520 +) +(1,16828:10651907,43772218:4930520,452978,122846 +k1,16828:10651907,43772218:3277 +h1,16828:15579150,43772218:0,411205,112570 +) +k1,16828:15830652,43772218:248225 +k1,16828:17646499,43772218:248226 +k1,16828:19699586,43772218:248226 +k1,16828:22670833,43772218:248226 +k1,16828:24308421,43772218:248225 +k1,16828:26124268,43772218:248226 +k1,16828:27862783,43772218:248226 +k1,16828:29678629,43772218:248225 +k1,16828:31194321,43772218:248226 +k1,16828:32583029,43772218:0 +) +(1,16829:6630773,44637298:25952256,513147,134348 +k1,16828:8380833,44637298:182439 +k1,16828:9453250,44637298:182438 +k1,16828:11856704,44637298:182439 +k1,16828:12992691,44637298:182438 +k1,16828:14267615,44637298:182439 +k1,16828:14908150,44637298:182438 +k1,16828:16488472,44637298:182439 +k1,16828:17322339,44637298:182439 +k1,16828:19528529,44637298:182438 +k1,16828:20066828,44637298:182439 +k1,16828:23418587,44637298:182438 +k1,16828:25586112,44637298:182439 +k1,16828:26528768,44637298:182438 +k1,16828:30114492,44637298:182439 +(1,16828:30114492,44637298:0,452978,115847 +r1,16831:32583029,44637298:2468537,568825,115847 +k1,16828:30114492,44637298:-2468537 +) +(1,16828:30114492,44637298:2468537,452978,115847 +k1,16828:30114492,44637298:3277 +h1,16828:32579752,44637298:0,411205,112570 +) +k1,16828:32583029,44637298:0 +) +(1,16829:6630773,45502378:25952256,505283,126483 +g1,16828:8197739,45502378 +(1,16828:8197739,45502378:0,452978,122846 +r1,16831:12424835,45502378:4227096,575824,122846 +k1,16828:8197739,45502378:-4227096 +) +(1,16828:8197739,45502378:4227096,452978,122846 +k1,16828:8197739,45502378:3277 +h1,16828:12421558,45502378:0,411205,112570 +) +g1,16828:12624064,45502378 +g1,16828:13691645,45502378 +g1,16828:14995156,45502378 +g1,16828:18522303,45502378 +g1,16828:20051913,45502378 +(1,16828:20051913,45502378:0,452978,122846 +r1,16831:24982433,45502378:4930520,575824,122846 +k1,16828:20051913,45502378:-4930520 +) +(1,16828:20051913,45502378:4930520,452978,122846 +k1,16828:20051913,45502378:3277 +h1,16828:24979156,45502378:0,411205,112570 +) +g1,16828:25181662,45502378 +g1,16828:28306418,45502378 +g1,16828:29294045,45502378 +k1,16829:32583029,45502378:1528032 +g1,16829:32583029,45502378 +) +] +(1,16831:32583029,45706769:0,0,0 +g1,16831:32583029,45706769 +) +) +] +(1,16831:6630773,47279633:25952256,0,0 +h1,16831:6630773,47279633:25952256,0,0 +) +] +(1,16831:4262630,4025873:0,0,0 +[1,16831:-473656,4025873:0,0,0 +(1,16831:-473656,-710413:0,0,0 +(1,16831:-473656,-710413:0,0,0 +g1,16831:-473656,-710413 +) +g1,16831:-473656,-710413 ) ] ) ] !38297 -}272 -Input:2813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}273 Input:2817:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2818:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2819:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -293213,2004 +293417,2004 @@ Input:2821:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2822:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2823:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2824:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2825:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2826:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2827:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2828:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{273 -[1,16927:4262630,47279633:28320399,43253760,0 -(1,16927:4262630,4025873:0,0,0 -[1,16927:-473656,4025873:0,0,0 -(1,16927:-473656,-710413:0,0,0 -(1,16927:-473656,-644877:0,0,0 -k1,16927:-473656,-644877:-65536 +{274 +[1,16925:4262630,47279633:28320399,43253760,0 +(1,16925:4262630,4025873:0,0,0 +[1,16925:-473656,4025873:0,0,0 +(1,16925:-473656,-710413:0,0,0 +(1,16925:-473656,-644877:0,0,0 +k1,16925:-473656,-644877:-65536 ) -(1,16927:-473656,4736287:0,0,0 -k1,16927:-473656,4736287:5209943 +(1,16925:-473656,4736287:0,0,0 +k1,16925:-473656,4736287:5209943 ) -g1,16927:-473656,-710413 +g1,16925:-473656,-710413 ) ] ) -[1,16927:6630773,47279633:25952256,43253760,0 -[1,16927:6630773,4812305:25952256,786432,0 -(1,16927:6630773,4812305:25952256,505283,134348 -(1,16927:6630773,4812305:25952256,505283,134348 -g1,16927:3078558,4812305 -[1,16927:3078558,4812305:0,0,0 -(1,16927:3078558,2439708:0,1703936,0 -k1,16927:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16927:2537886,2439708:1179648,16384,0 +[1,16925:6630773,47279633:25952256,43253760,0 +[1,16925:6630773,4812305:25952256,786432,0 +(1,16925:6630773,4812305:25952256,505283,134348 +(1,16925:6630773,4812305:25952256,505283,134348 +g1,16925:3078558,4812305 +[1,16925:3078558,4812305:0,0,0 +(1,16925:3078558,2439708:0,1703936,0 +k1,16925:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16925:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16927:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16925:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16927:3078558,4812305:0,0,0 -(1,16927:3078558,2439708:0,1703936,0 -g1,16927:29030814,2439708 -g1,16927:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16927:36151628,1915420:16384,1179648,0 +[1,16925:3078558,4812305:0,0,0 +(1,16925:3078558,2439708:0,1703936,0 +g1,16925:29030814,2439708 +g1,16925:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16925:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16927:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16925:37855564,2439708:1179648,16384,0 ) ) -k1,16927:3078556,2439708:-34777008 +k1,16925:3078556,2439708:-34777008 ) ] -[1,16927:3078558,4812305:0,0,0 -(1,16927:3078558,49800853:0,16384,2228224 -k1,16927:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16927:2537886,49800853:1179648,16384,0 +[1,16925:3078558,4812305:0,0,0 +(1,16925:3078558,49800853:0,16384,2228224 +k1,16925:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16925:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16927:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16925:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16927:3078558,4812305:0,0,0 -(1,16927:3078558,49800853:0,16384,2228224 -g1,16927:29030814,49800853 -g1,16927:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16927:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16927:37855564,49800853:1179648,16384,0 -) -) -k1,16927:3078556,49800853:-34777008 -) -] -g1,16927:6630773,4812305 -k1,16927:23347041,4812305:15520891 -g1,16927:23960458,4812305 -g1,16927:27572802,4812305 -g1,16927:29306229,4812305 -) -) -] -[1,16927:6630773,45706769:25952256,40108032,0 -(1,16927:6630773,45706769:25952256,40108032,0 -(1,16927:6630773,45706769:0,0,0 -g1,16927:6630773,45706769 -) -[1,16927:6630773,45706769:25952256,40108032,0 -v1,16833:6630773,6254097:0,393216,0 -(1,16851:6630773,14841168:25952256,8980287,196608 -g1,16851:6630773,14841168 -g1,16851:6630773,14841168 -g1,16851:6434165,14841168 -(1,16851:6434165,14841168:0,8980287,196608 -r1,16927:32779637,14841168:26345472,9176895,196608 -k1,16851:6434165,14841168:-26345472 -) -(1,16851:6434165,14841168:26345472,8980287,196608 -[1,16851:6630773,14841168:25952256,8783679,0 -(1,16835:6630773,6481928:25952256,424439,112852 -(1,16834:6630773,6481928:0,0,0 -g1,16834:6630773,6481928 -g1,16834:6630773,6481928 -g1,16834:6303093,6481928 -(1,16834:6303093,6481928:0,0,0 -) -g1,16834:6630773,6481928 -) -g1,16835:10946174,6481928 -k1,16835:10946174,6481928:0 -h1,16835:11610082,6481928:0,0,0 -k1,16835:32583030,6481928:20972948 -g1,16835:32583030,6481928 -) -(1,16836:6630773,7166783:25952256,424439,112852 -h1,16836:6630773,7166783:0,0,0 -g1,16836:6962727,7166783 -g1,16836:7294681,7166783 -k1,16836:7294681,7166783:0 -h1,16836:14265713,7166783:0,0,0 -k1,16836:32583029,7166783:18317316 -g1,16836:32583029,7166783 -) -(1,16837:6630773,7851638:25952256,424439,106246 -h1,16837:6630773,7851638:0,0,0 -g1,16837:6962727,7851638 -g1,16837:7294681,7851638 -g1,16837:7626635,7851638 -g1,16837:7958589,7851638 -g1,16837:8290543,7851638 -g1,16837:8622497,7851638 -g1,16837:8954451,7851638 -g1,16837:9286405,7851638 -g1,16837:9618359,7851638 -g1,16837:9950313,7851638 -g1,16837:10282267,7851638 -g1,16837:10614221,7851638 -g1,16837:10946175,7851638 -g1,16837:11278129,7851638 -g1,16837:11610083,7851638 -g1,16837:13269853,7851638 -g1,16837:13933761,7851638 -k1,16837:13933761,7851638:0 -h1,16837:16921347,7851638:0,0,0 -k1,16837:32583029,7851638:15661682 -g1,16837:32583029,7851638 -) -(1,16838:6630773,8536493:25952256,424439,106246 -h1,16838:6630773,8536493:0,0,0 -g1,16838:6962727,8536493 -g1,16838:7294681,8536493 -g1,16838:7626635,8536493 -g1,16838:7958589,8536493 -g1,16838:8290543,8536493 -g1,16838:8622497,8536493 -g1,16838:8954451,8536493 -g1,16838:9286405,8536493 -g1,16838:9618359,8536493 -g1,16838:9950313,8536493 -g1,16838:10282267,8536493 -g1,16838:10614221,8536493 -g1,16838:10946175,8536493 -g1,16838:11278129,8536493 -g1,16838:11610083,8536493 -g1,16838:14597668,8536493 -g1,16838:15261576,8536493 -k1,16838:15261576,8536493:0 -h1,16838:17585254,8536493:0,0,0 -k1,16838:32583029,8536493:14997775 -g1,16838:32583029,8536493 -) -(1,16839:6630773,9221348:25952256,424439,79822 -h1,16839:6630773,9221348:0,0,0 -g1,16839:6962727,9221348 -g1,16839:7294681,9221348 -g1,16839:7626635,9221348 -g1,16839:7958589,9221348 -g1,16839:8290543,9221348 -g1,16839:8622497,9221348 -g1,16839:8954451,9221348 -g1,16839:9286405,9221348 -g1,16839:9618359,9221348 -g1,16839:9950313,9221348 -g1,16839:10282267,9221348 -g1,16839:10614221,9221348 -g1,16839:10946175,9221348 -g1,16839:11278129,9221348 -g1,16839:11610083,9221348 -g1,16839:14929622,9221348 -g1,16839:15593530,9221348 -h1,16839:19576977,9221348:0,0,0 -k1,16839:32583029,9221348:13006052 -g1,16839:32583029,9221348 -) -(1,16840:6630773,9906203:25952256,424439,112852 -h1,16840:6630773,9906203:0,0,0 -h1,16840:10614220,9906203:0,0,0 -k1,16840:32583028,9906203:21968808 -g1,16840:32583028,9906203 -) -(1,16850:6630773,10722130:25952256,424439,9908 -(1,16842:6630773,10722130:0,0,0 -g1,16842:6630773,10722130 -g1,16842:6630773,10722130 -g1,16842:6303093,10722130 -(1,16842:6303093,10722130:0,0,0 -) -g1,16842:6630773,10722130 -) -g1,16850:7626635,10722130 -g1,16850:8290543,10722130 -g1,16850:8954451,10722130 -g1,16850:11610083,10722130 -g1,16850:12937899,10722130 -g1,16850:13601807,10722130 -h1,16850:13933761,10722130:0,0,0 -k1,16850:32583029,10722130:18649268 -g1,16850:32583029,10722130 -) -(1,16850:6630773,11406985:25952256,424439,106246 -h1,16850:6630773,11406985:0,0,0 -g1,16850:7626635,11406985 -g1,16850:7958589,11406985 -g1,16850:8290543,11406985 -g1,16850:10946175,11406985 -g1,16850:12605945,11406985 -g1,16850:12937899,11406985 -g1,16850:13269853,11406985 -g1,16850:13601807,11406985 -g1,16850:13933761,11406985 -g1,16850:14265715,11406985 -g1,16850:14597669,11406985 -g1,16850:14929623,11406985 -g1,16850:15261577,11406985 -h1,16850:18249162,11406985:0,0,0 -k1,16850:32583029,11406985:14333867 -g1,16850:32583029,11406985 -) -(1,16850:6630773,12091840:25952256,431045,6605 -h1,16850:6630773,12091840:0,0,0 -g1,16850:7626635,12091840 -g1,16850:7958589,12091840 -g1,16850:8290543,12091840 -g1,16850:10282267,12091840 -g1,16850:10614221,12091840 -g1,16850:10946175,12091840 -g1,16850:12937899,12091840 -g1,16850:13269853,12091840 -g1,16850:13601807,12091840 -g1,16850:13933761,12091840 -g1,16850:14265715,12091840 -g1,16850:14597669,12091840 -g1,16850:14929623,12091840 -g1,16850:15261577,12091840 -g1,16850:15593531,12091840 -g1,16850:15925485,12091840 -g1,16850:16257439,12091840 -g1,16850:16589393,12091840 -k1,16850:16589393,12091840:0 -h1,16850:18249163,12091840:0,0,0 -k1,16850:32583029,12091840:14333866 -g1,16850:32583029,12091840 -) -(1,16850:6630773,12776695:25952256,424439,112852 -h1,16850:6630773,12776695:0,0,0 -g1,16850:7626635,12776695 -g1,16850:8290543,12776695 -g1,16850:10614221,12776695 -g1,16850:10946175,12776695 -g1,16850:15261576,12776695 -g1,16850:15593530,12776695 -g1,16850:15925484,12776695 -g1,16850:16257438,12776695 -g1,16850:16589392,12776695 -g1,16850:16921346,12776695 -g1,16850:17253300,12776695 -h1,16850:18249162,12776695:0,0,0 -k1,16850:32583029,12776695:14333867 -g1,16850:32583029,12776695 -) -(1,16850:6630773,13461550:25952256,424439,106246 -h1,16850:6630773,13461550:0,0,0 -g1,16850:7626635,13461550 -g1,16850:8290543,13461550 -g1,16850:10614221,13461550 -g1,16850:10946175,13461550 -g1,16850:14929622,13461550 -g1,16850:15261576,13461550 -g1,16850:15593530,13461550 -g1,16850:15925484,13461550 -g1,16850:16257438,13461550 -g1,16850:16589392,13461550 -g1,16850:16921346,13461550 -g1,16850:17253300,13461550 -h1,16850:18249162,13461550:0,0,0 -k1,16850:32583029,13461550:14333867 -g1,16850:32583029,13461550 -) -(1,16850:6630773,14146405:25952256,424439,112852 -h1,16850:6630773,14146405:0,0,0 -g1,16850:7626635,14146405 -g1,16850:8290543,14146405 -g1,16850:10614221,14146405 -g1,16850:10946175,14146405 -g1,16850:15261576,14146405 -g1,16850:15593530,14146405 -g1,16850:15925484,14146405 -g1,16850:16257438,14146405 -g1,16850:16589392,14146405 -g1,16850:16921346,14146405 -g1,16850:17253300,14146405 -h1,16850:18249162,14146405:0,0,0 -k1,16850:32583029,14146405:14333867 -g1,16850:32583029,14146405 -) -(1,16850:6630773,14831260:25952256,424439,9908 -h1,16850:6630773,14831260:0,0,0 -g1,16850:7626635,14831260 -g1,16850:8290543,14831260 -g1,16850:8954451,14831260 -g1,16850:10282267,14831260 -g1,16850:11942037,14831260 -h1,16850:13269853,14831260:0,0,0 -k1,16850:32583029,14831260:19313176 -g1,16850:32583029,14831260 -) -] -) -g1,16851:32583029,14841168 -g1,16851:6630773,14841168 -g1,16851:6630773,14841168 -g1,16851:32583029,14841168 -g1,16851:32583029,14841168 -) -h1,16851:6630773,15037776:0,0,0 -v1,16855:6630773,15902856:0,393216,0 -(1,16856:6630773,17263461:25952256,1753821,0 -g1,16856:6630773,17263461 -g1,16856:6237557,17263461 -r1,16927:6368629,17263461:131072,1753821,0 -g1,16856:6567858,17263461 -g1,16856:6764466,17263461 -[1,16856:6764466,17263461:25818563,1753821,0 -(1,16856:6764466,16264033:25818563,754393,260573 -(1,16855:6764466,16264033:0,754393,260573 -r1,16927:7856192,16264033:1091726,1014966,260573 -k1,16855:6764466,16264033:-1091726 -) -(1,16855:6764466,16264033:1091726,754393,260573 -) -k1,16855:8040255,16264033:184063 -k1,16855:8367935,16264033:327680 -k1,16855:11963148,16264033:184064 -k1,16855:12798639,16264033:184063 -k1,16855:14416630,16264033:184063 -k1,16855:15189207,16264033:184064 -k1,16855:15989308,16264033:184063 -k1,16855:17775071,16264033:184063 -k1,16855:20984931,16264033:184063 -k1,16855:22736616,16264033:184064 -k1,16855:23939764,16264033:184063 -k1,16855:27331814,16264033:184063 -k1,16855:30426332,16264033:184064 -k1,16855:31478747,16264033:184063 -k1,16855:32583029,16264033:0 -) -(1,16856:6764466,17129113:25818563,513147,134348 -g1,16855:8056180,17129113 -g1,16855:9647394,17129113 -g1,16855:12229512,17129113 -g1,16855:14497057,17129113 -g1,16855:17622469,17129113 -g1,16855:18583226,17129113 -g1,16855:19138315,17129113 -g1,16855:21318697,17129113 -g1,16855:22838476,17129113 -g1,16855:23689133,17129113 -g1,16855:26035977,17129113 -g1,16855:27301477,17129113 -g1,16855:29202676,17129113 -k1,16856:32583029,17129113:314579 -g1,16856:32583029,17129113 -) -] -g1,16856:32583029,17263461 -) -h1,16856:6630773,17263461:0,0,0 -(1,16859:6630773,18128541:25952256,505283,126483 -h1,16858:6630773,18128541:983040,0,0 -k1,16858:10661040,18128541:257359 -(1,16858:10661040,18128541:0,452978,115847 -r1,16927:15239848,18128541:4578808,568825,115847 -k1,16858:10661040,18128541:-4578808 -) -(1,16858:10661040,18128541:4578808,452978,115847 -k1,16858:10661040,18128541:3277 -h1,16858:15236571,18128541:0,411205,112570 -) -k1,16858:15497208,18128541:257360 -k1,16858:17247477,18128541:257359 -k1,16858:18571107,18128541:257359 -k1,16858:21242813,18128541:257360 -k1,16858:24933603,18128541:257359 -k1,16858:26210047,18128541:257359 -k1,16858:28126123,18128541:257360 -k1,16858:30670033,18128541:257359 -k1,16859:32583029,18128541:0 -) -(1,16859:6630773,18993621:25952256,513147,126483 -k1,16858:8116273,18993621:218034 -k1,16858:9001462,18993621:218033 -(1,16858:9001462,18993621:0,452978,122846 -r1,16927:13931982,18993621:4930520,575824,122846 -k1,16858:9001462,18993621:-4930520 -) -(1,16858:9001462,18993621:4930520,452978,122846 -k1,16858:9001462,18993621:3277 -h1,16858:13928705,18993621:0,411205,112570 -) -k1,16858:14323686,18993621:218034 -k1,16858:16020868,18993621:218034 -k1,16858:18910149,18993621:218034 -k1,16858:20662380,18993621:218033 -k1,16858:22274365,18993621:218034 -k1,16858:24649844,18993621:218034 -k1,16858:26868037,18993621:218034 -k1,16858:28155618,18993621:218033 -k1,16858:31966991,18993621:218034 -k1,16858:32583029,18993621:0 -) -(1,16859:6630773,19858701:25952256,513147,126483 -k1,16858:7908069,19858701:179568 -k1,16858:9454719,19858701:179569 -k1,16858:11644276,19858701:179568 -k1,16858:13275467,19858701:179569 -k1,16858:15765834,19858701:179568 -k1,16858:17136848,19858701:179569 -k1,16858:19302157,19858701:179568 -k1,16858:20977258,19858701:179569 -k1,16858:22175911,19858701:179568 -k1,16858:25134207,19858701:179569 -k1,16858:27125190,19858701:179568 -k1,16858:28405764,19858701:179569 -k1,16858:31298523,19858701:179568 -k1,16858:32583029,19858701:0 -) -(1,16859:6630773,20723781:25952256,513147,126483 -k1,16858:7818362,20723781:196029 -k1,16858:9338219,20723781:196030 -k1,16858:10193540,20723781:196029 -k1,16858:12871418,20723781:196030 -k1,16858:14020996,20723781:196029 -k1,16858:15747292,20723781:196030 -k1,16858:16594749,20723781:196029 -k1,16858:19115340,20723781:196029 -k1,16858:21008097,20723781:196030 -k1,16858:23917317,20723781:196029 -k1,16858:25507298,20723781:196030 -k1,16858:28398823,20723781:196029 -(1,16858:28398823,20723781:0,452978,115847 -r1,16927:31219072,20723781:2820249,568825,115847 -k1,16858:28398823,20723781:-2820249 -) -(1,16858:28398823,20723781:2820249,452978,115847 -k1,16858:28398823,20723781:3277 -h1,16858:31215795,20723781:0,411205,112570 -) -k1,16858:31415102,20723781:196030 -k1,16858:32227169,20723781:196029 -k1,16858:32583029,20723781:0 -) -(1,16859:6630773,21588861:25952256,505283,126483 -g1,16858:9071333,21588861 -k1,16859:32583030,21588861:22103984 -g1,16859:32583030,21588861 -) -v1,16861:6630773,22273716:0,393216,0 -(1,16880:6630773,31542339:25952256,9661839,196608 -g1,16880:6630773,31542339 -g1,16880:6630773,31542339 -g1,16880:6434165,31542339 -(1,16880:6434165,31542339:0,9661839,196608 -r1,16927:32779637,31542339:26345472,9858447,196608 -k1,16880:6434165,31542339:-26345472 -) -(1,16880:6434165,31542339:26345472,9661839,196608 -[1,16880:6630773,31542339:25952256,9465231,0 -(1,16863:6630773,22501547:25952256,424439,52847 -(1,16862:6630773,22501547:0,0,0 -g1,16862:6630773,22501547 -g1,16862:6630773,22501547 -g1,16862:6303093,22501547 -(1,16862:6303093,22501547:0,0,0 -) -g1,16862:6630773,22501547 -) -g1,16863:10946174,22501547 -k1,16863:10946174,22501547:0 -h1,16863:11610082,22501547:0,0,0 -k1,16863:32583030,22501547:20972948 -g1,16863:32583030,22501547 -) -(1,16864:6630773,23186402:25952256,424439,112852 -h1,16864:6630773,23186402:0,0,0 -g1,16864:6962727,23186402 -g1,16864:7294681,23186402 -k1,16864:7294681,23186402:0 -h1,16864:15593529,23186402:0,0,0 -k1,16864:32583029,23186402:16989500 -g1,16864:32583029,23186402 -) -(1,16865:6630773,23871257:25952256,431045,106246 -h1,16865:6630773,23871257:0,0,0 -g1,16865:6962727,23871257 -g1,16865:7294681,23871257 -g1,16865:7626635,23871257 -g1,16865:7958589,23871257 -g1,16865:8290543,23871257 -g1,16865:8622497,23871257 -g1,16865:8954451,23871257 -g1,16865:9286405,23871257 -g1,16865:9618359,23871257 -g1,16865:9950313,23871257 -g1,16865:10282267,23871257 -g1,16865:10614221,23871257 -g1,16865:10946175,23871257 -g1,16865:11278129,23871257 -g1,16865:14929622,23871257 -g1,16865:15593530,23871257 -k1,16865:15593530,23871257:0 -h1,16865:17917208,23871257:0,0,0 -k1,16865:32583029,23871257:14665821 -g1,16865:32583029,23871257 -) -(1,16866:6630773,24556112:25952256,431045,86428 -h1,16866:6630773,24556112:0,0,0 -g1,16866:6962727,24556112 -g1,16866:7294681,24556112 -g1,16866:7626635,24556112 -g1,16866:7958589,24556112 -g1,16866:8290543,24556112 -g1,16866:8622497,24556112 -g1,16866:8954451,24556112 -g1,16866:9286405,24556112 -g1,16866:9618359,24556112 -g1,16866:9950313,24556112 -g1,16866:10282267,24556112 -g1,16866:10614221,24556112 -g1,16866:10946175,24556112 -g1,16866:11278129,24556112 -g1,16866:15261576,24556112 -g1,16866:15925484,24556112 -k1,16866:15925484,24556112:0 -h1,16866:19908931,24556112:0,0,0 -k1,16866:32583029,24556112:12674098 -g1,16866:32583029,24556112 -) -(1,16867:6630773,25240967:25952256,431045,79822 -h1,16867:6630773,25240967:0,0,0 -g1,16867:6962727,25240967 -g1,16867:7294681,25240967 -g1,16867:7626635,25240967 -g1,16867:7958589,25240967 -g1,16867:8290543,25240967 -g1,16867:8622497,25240967 -g1,16867:8954451,25240967 -g1,16867:9286405,25240967 -g1,16867:9618359,25240967 -g1,16867:9950313,25240967 -g1,16867:10282267,25240967 -g1,16867:10614221,25240967 -g1,16867:10946175,25240967 -g1,16867:11278129,25240967 -g1,16867:14597668,25240967 -g1,16867:15261576,25240967 -g1,16867:17253300,25240967 -k1,16867:17253300,25240967:0 -h1,16867:17917208,25240967:0,0,0 -k1,16867:32583029,25240967:14665821 -g1,16867:32583029,25240967 -) -(1,16868:6630773,25925822:25952256,424439,106246 -h1,16868:6630773,25925822:0,0,0 -g1,16868:6962727,25925822 -g1,16868:7294681,25925822 -g1,16868:11278129,25925822 -g1,16868:11942037,25925822 -k1,16868:11942037,25925822:0 -h1,16868:14929622,25925822:0,0,0 -k1,16868:32583030,25925822:17653408 -g1,16868:32583030,25925822 -) -(1,16869:6630773,26610677:25952256,424439,52847 -h1,16869:6630773,26610677:0,0,0 -h1,16869:10614220,26610677:0,0,0 -k1,16869:32583028,26610677:21968808 -g1,16869:32583028,26610677 -) -(1,16879:6630773,27426604:25952256,424439,9908 -(1,16871:6630773,27426604:0,0,0 -g1,16871:6630773,27426604 -g1,16871:6630773,27426604 -g1,16871:6303093,27426604 -(1,16871:6303093,27426604:0,0,0 -) -g1,16871:6630773,27426604 -) -g1,16879:7626635,27426604 -g1,16879:8290543,27426604 -g1,16879:8954451,27426604 -g1,16879:11610083,27426604 -g1,16879:12937899,27426604 -g1,16879:13601807,27426604 -h1,16879:13933761,27426604:0,0,0 -k1,16879:32583029,27426604:18649268 -g1,16879:32583029,27426604 -) -(1,16879:6630773,28111459:25952256,424439,112852 -h1,16879:6630773,28111459:0,0,0 -g1,16879:7626635,28111459 -g1,16879:7958589,28111459 -g1,16879:8290543,28111459 -g1,16879:10946175,28111459 -g1,16879:15261576,28111459 -g1,16879:19245023,28111459 -g1,16879:23560424,28111459 -h1,16879:27211917,28111459:0,0,0 -k1,16879:32583029,28111459:5371112 -g1,16879:32583029,28111459 -) -(1,16879:6630773,28796314:25952256,431045,6605 -h1,16879:6630773,28796314:0,0,0 -g1,16879:7626635,28796314 -g1,16879:7958589,28796314 -g1,16879:8290543,28796314 -g1,16879:10282267,28796314 -g1,16879:10614221,28796314 -g1,16879:10946175,28796314 -g1,16879:11278129,28796314 -g1,16879:11610083,28796314 -g1,16879:11942037,28796314 -g1,16879:12273991,28796314 -g1,16879:12605945,28796314 -g1,16879:12937899,28796314 -g1,16879:13269853,28796314 -g1,16879:15261577,28796314 -g1,16879:15593531,28796314 -g1,16879:15925485,28796314 -g1,16879:16257439,28796314 -g1,16879:16589393,28796314 -g1,16879:16921347,28796314 -g1,16879:17253301,28796314 -g1,16879:19245025,28796314 -g1,16879:19576979,28796314 -g1,16879:19908933,28796314 -g1,16879:20240887,28796314 -g1,16879:20572841,28796314 -g1,16879:20904795,28796314 -g1,16879:21236749,28796314 -g1,16879:21568703,28796314 -g1,16879:23560427,28796314 -g1,16879:23892381,28796314 -g1,16879:24224335,28796314 -g1,16879:24556289,28796314 -g1,16879:24888243,28796314 -g1,16879:25220197,28796314 -g1,16879:25552151,28796314 -k1,16879:25552151,28796314:0 -h1,16879:27211921,28796314:0,0,0 -k1,16879:32583029,28796314:5371108 -g1,16879:32583029,28796314 -) -(1,16879:6630773,29481169:25952256,407923,9908 -h1,16879:6630773,29481169:0,0,0 -g1,16879:7626635,29481169 -g1,16879:8290543,29481169 -g1,16879:10614221,29481169 -g1,16879:10946175,29481169 -g1,16879:11278129,29481169 -g1,16879:11610083,29481169 -g1,16879:11942037,29481169 -g1,16879:12273991,29481169 -g1,16879:12605945,29481169 -g1,16879:12937899,29481169 -g1,16879:13269853,29481169 -g1,16879:13601807,29481169 -g1,16879:13933761,29481169 -g1,16879:15261577,29481169 -g1,16879:15593531,29481169 -g1,16879:15925485,29481169 -g1,16879:16257439,29481169 -g1,16879:16589393,29481169 -g1,16879:16921347,29481169 -g1,16879:17253301,29481169 -g1,16879:17585255,29481169 -g1,16879:17917209,29481169 -g1,16879:19245025,29481169 -g1,16879:19576979,29481169 -g1,16879:19908933,29481169 -g1,16879:20240887,29481169 -g1,16879:20572841,29481169 -g1,16879:20904795,29481169 -g1,16879:21236749,29481169 -g1,16879:21568703,29481169 -g1,16879:21900657,29481169 -g1,16879:22232611,29481169 -g1,16879:23560427,29481169 -g1,16879:23892381,29481169 -g1,16879:24224335,29481169 -g1,16879:24556289,29481169 -g1,16879:24888243,29481169 -g1,16879:25220197,29481169 -g1,16879:25552151,29481169 -g1,16879:25884105,29481169 -g1,16879:26216059,29481169 -h1,16879:27211921,29481169:0,0,0 -k1,16879:32583029,29481169:5371108 -g1,16879:32583029,29481169 -) -(1,16879:6630773,30166024:25952256,407923,9908 -h1,16879:6630773,30166024:0,0,0 -g1,16879:7626635,30166024 -g1,16879:8290543,30166024 -g1,16879:10614221,30166024 -g1,16879:10946175,30166024 -g1,16879:11278129,30166024 -g1,16879:11610083,30166024 -g1,16879:11942037,30166024 -g1,16879:12273991,30166024 -g1,16879:12605945,30166024 -g1,16879:12937899,30166024 -g1,16879:13269853,30166024 -g1,16879:13601807,30166024 -g1,16879:13933761,30166024 -g1,16879:15261577,30166024 -g1,16879:15593531,30166024 -g1,16879:15925485,30166024 -g1,16879:16257439,30166024 -g1,16879:16589393,30166024 -g1,16879:16921347,30166024 -g1,16879:17253301,30166024 -g1,16879:17585255,30166024 -g1,16879:17917209,30166024 -g1,16879:18581117,30166024 -g1,16879:18913071,30166024 -g1,16879:19245025,30166024 -g1,16879:19576979,30166024 -g1,16879:19908933,30166024 -g1,16879:20240887,30166024 -g1,16879:20572841,30166024 -g1,16879:20904795,30166024 -g1,16879:21236749,30166024 -g1,16879:21568703,30166024 -g1,16879:21900657,30166024 -g1,16879:22232611,30166024 -g1,16879:23560427,30166024 -g1,16879:23892381,30166024 -g1,16879:24224335,30166024 -g1,16879:24556289,30166024 -g1,16879:24888243,30166024 -g1,16879:25220197,30166024 -g1,16879:25552151,30166024 -g1,16879:25884105,30166024 -g1,16879:26216059,30166024 -h1,16879:27211921,30166024:0,0,0 -k1,16879:32583029,30166024:5371108 -g1,16879:32583029,30166024 -) -(1,16879:6630773,30850879:25952256,407923,9908 -h1,16879:6630773,30850879:0,0,0 -g1,16879:7626635,30850879 -g1,16879:8290543,30850879 -g1,16879:10614221,30850879 -g1,16879:10946175,30850879 -g1,16879:11278129,30850879 -g1,16879:11610083,30850879 -g1,16879:11942037,30850879 -g1,16879:12273991,30850879 -g1,16879:12605945,30850879 -g1,16879:12937899,30850879 -g1,16879:13269853,30850879 -g1,16879:13601807,30850879 -g1,16879:13933761,30850879 -g1,16879:15261577,30850879 -g1,16879:15593531,30850879 -g1,16879:15925485,30850879 -g1,16879:16257439,30850879 -g1,16879:16589393,30850879 -g1,16879:16921347,30850879 -g1,16879:17253301,30850879 -g1,16879:17585255,30850879 -g1,16879:17917209,30850879 -g1,16879:19245025,30850879 -g1,16879:19576979,30850879 -g1,16879:19908933,30850879 -g1,16879:20240887,30850879 -g1,16879:20572841,30850879 -g1,16879:20904795,30850879 -g1,16879:21236749,30850879 -g1,16879:21568703,30850879 -g1,16879:21900657,30850879 -g1,16879:22232611,30850879 -g1,16879:23560427,30850879 -g1,16879:23892381,30850879 -g1,16879:24224335,30850879 -g1,16879:24556289,30850879 -g1,16879:24888243,30850879 -g1,16879:25220197,30850879 -g1,16879:25552151,30850879 -g1,16879:25884105,30850879 -g1,16879:26216059,30850879 -h1,16879:27211921,30850879:0,0,0 -k1,16879:32583029,30850879:5371108 -g1,16879:32583029,30850879 -) -(1,16879:6630773,31535734:25952256,424439,6605 -h1,16879:6630773,31535734:0,0,0 -g1,16879:7626635,31535734 -g1,16879:8290543,31535734 -g1,16879:8954451,31535734 -g1,16879:10282267,31535734 -g1,16879:11942037,31535734 -h1,16879:13269853,31535734:0,0,0 -k1,16879:32583029,31535734:19313176 -g1,16879:32583029,31535734 -) -] -) -g1,16880:32583029,31542339 -g1,16880:6630773,31542339 -g1,16880:6630773,31542339 -g1,16880:32583029,31542339 -g1,16880:32583029,31542339 -) -h1,16880:6630773,31738947:0,0,0 -v1,16884:6630773,32604027:0,393216,0 -(1,16898:6630773,39056422:25952256,6845611,0 -g1,16898:6630773,39056422 -g1,16898:6237557,39056422 -r1,16927:6368629,39056422:131072,6845611,0 -g1,16898:6567858,39056422 -g1,16898:6764466,39056422 -[1,16898:6764466,39056422:25818563,6845611,0 -(1,16885:6764466,32876504:25818563,665693,196608 -(1,16884:6764466,32876504:0,665693,196608 -r1,16927:7868133,32876504:1103667,862301,196608 -k1,16884:6764466,32876504:-1103667 -) -(1,16884:6764466,32876504:1103667,665693,196608 -) -k1,16884:8053175,32876504:185042 -k1,16884:9371104,32876504:327680 -k1,16884:10099438,32876504:185041 -(1,16884:10099438,32876504:0,452978,115847 -r1,16927:14326534,32876504:4227096,568825,115847 -k1,16884:10099438,32876504:-4227096 -) -(1,16884:10099438,32876504:4227096,452978,115847 -k1,16884:10099438,32876504:3277 -h1,16884:14323257,32876504:0,411205,112570 -) -k1,16884:14511576,32876504:185042 -k1,16884:16424147,32876504:185042 -k1,16884:17260616,32876504:185041 -(1,16884:17260616,32876504:0,452978,115847 -r1,16927:19729153,32876504:2468537,568825,115847 -k1,16884:17260616,32876504:-2468537 -) -(1,16884:17260616,32876504:2468537,452978,115847 -k1,16884:17260616,32876504:3277 -h1,16884:19725876,32876504:0,411205,112570 -) -k1,16884:20087865,32876504:185042 -k1,16884:21291992,32876504:185042 -k1,16884:23288448,32876504:185041 -k1,16884:24341842,32876504:185042 -k1,16884:27687685,32876504:185042 -k1,16884:29140192,32876504:185041 -k1,16884:30713942,32876504:185042 -k1,16884:32583029,32876504:0 -) -(1,16885:6764466,33741584:25818563,505283,126483 -k1,16884:8200915,33741584:245004 -k1,16884:9928342,33741584:245003 -k1,16884:11440812,33741584:245004 -k1,16884:13176105,33741584:245004 -k1,16884:15617219,33741584:245003 -k1,16884:17136898,33741584:245004 -k1,16884:18400987,33741584:245004 -k1,16884:22730195,33741584:245004 -k1,16884:25017300,33741584:245003 -k1,16884:26453749,33741584:245004 -k1,16884:28280792,33741584:245004 -k1,16884:29544880,33741584:245003 -k1,16884:31931601,33741584:245004 -k1,16884:32583029,33741584:0 -) -(1,16885:6764466,34606664:25818563,513147,7863 -g1,16884:8229851,34606664 -k1,16885:32583030,34606664:23234480 -g1,16885:32583030,34606664 -) -v1,16887:6764466,35291519:0,393216,0 -(1,16893:6764466,36995306:25818563,2097003,196608 -g1,16893:6764466,36995306 -g1,16893:6764466,36995306 -g1,16893:6567858,36995306 -(1,16893:6567858,36995306:0,2097003,196608 -r1,16927:32779637,36995306:26211779,2293611,196608 -k1,16893:6567857,36995306:-26211780 -) -(1,16893:6567858,36995306:26211779,2097003,196608 -[1,16893:6764466,36995306:25818563,1900395,0 -(1,16889:6764466,35519350:25818563,424439,86428 -(1,16888:6764466,35519350:0,0,0 -g1,16888:6764466,35519350 -g1,16888:6764466,35519350 -g1,16888:6436786,35519350 -(1,16888:6436786,35519350:0,0,0 -) -g1,16888:6764466,35519350 -) -k1,16889:6764466,35519350:0 -g1,16889:13071590,35519350 -h1,16889:17386991,35519350:0,0,0 -k1,16889:32583029,35519350:15196038 -g1,16889:32583029,35519350 -) -(1,16890:6764466,36204205:25818563,424439,106246 -h1,16890:6764466,36204205:0,0,0 -g1,16890:13071590,36204205 -h1,16890:17386991,36204205:0,0,0 -k1,16890:32583029,36204205:15196038 -g1,16890:32583029,36204205 -) -(1,16891:6764466,36889060:25818563,424439,106246 -h1,16891:6764466,36889060:0,0,0 -g1,16891:13071590,36889060 -g1,16891:17718945,36889060 -g1,16891:18382853,36889060 -k1,16891:18382853,36889060:0 -h1,16891:24689977,36889060:0,0,0 -k1,16891:32583029,36889060:7893052 -g1,16891:32583029,36889060 -) -] -) -g1,16893:32583029,36995306 -g1,16893:6764466,36995306 -g1,16893:6764466,36995306 -g1,16893:32583029,36995306 -g1,16893:32583029,36995306 -) -h1,16893:6764466,37191914:0,0,0 -(1,16897:6764466,38056994:25818563,513147,134348 -h1,16896:6764466,38056994:983040,0,0 -k1,16896:9597084,38056994:215765 -k1,16896:10913853,38056994:215764 -k1,16896:14118060,38056994:215765 -k1,16896:16375270,38056994:215764 -k1,16896:17049132,38056994:215765 -k1,16896:19390230,38056994:215765 -k1,16896:20071955,38056994:215764 -k1,16896:21385448,38056994:215765 -k1,16896:23097400,38056994:215765 -k1,16896:24826390,38056994:215764 -k1,16896:27781560,38056994:215765 -k1,16896:29391275,38056994:215764 -k1,16896:29962900,38056994:215765 -k1,16896:32583029,38056994:0 -) -(1,16897:6764466,38922074:25818563,513147,134348 -g1,16896:8923877,38922074 -g1,16896:9774534,38922074 -g1,16896:12177739,38922074 -g1,16896:15417183,38922074 -g1,16896:16299297,38922074 -g1,16896:16964487,38922074 -g1,16896:17621813,38922074 -g1,16896:19334268,38922074 -g1,16896:21916386,38922074 -g1,16896:24183931,38922074 -g1,16896:25069322,38922074 -g1,16896:28243230,38922074 -k1,16897:32583029,38922074:1849431 -g1,16897:32583029,38922074 -) -] -g1,16898:32583029,39056422 -) -h1,16898:6630773,39056422:0,0,0 -v1,16901:6630773,39921502:0,393216,0 -(1,16902:6630773,42139322:25952256,2611036,0 -g1,16902:6630773,42139322 -g1,16902:6237557,42139322 -r1,16927:6368629,42139322:131072,2611036,0 -g1,16902:6567858,42139322 -g1,16902:6764466,42139322 -[1,16902:6764466,42139322:25818563,2611036,0 -(1,16902:6764466,40282679:25818563,754393,260573 -(1,16901:6764466,40282679:0,754393,260573 -r1,16927:7856192,40282679:1091726,1014966,260573 -k1,16901:6764466,40282679:-1091726 -) -(1,16901:6764466,40282679:1091726,754393,260573 -) -k1,16901:8125690,40282679:269498 -k1,16901:8453370,40282679:327680 -k1,16901:11226344,40282679:269499 -k1,16901:13063463,40282679:269498 -k1,16901:15666699,40282679:269499 -k1,16901:17478915,40282679:269498 -k1,16901:18407706,40282679:269499 -k1,16901:20655735,40282679:269498 -k1,16901:23951031,40282679:269499 -(1,16901:23951031,40282679:0,452978,122846 -r1,16927:26771280,40282679:2820249,575824,122846 -k1,16901:23951031,40282679:-2820249 -) -(1,16901:23951031,40282679:2820249,452978,122846 -k1,16901:23951031,40282679:3277 -h1,16901:26768003,40282679:0,411205,112570 -) -k1,16901:27040778,40282679:269498 -k1,16901:28501722,40282679:269499 -(1,16901:28501722,40282679:0,452978,115847 -r1,16927:31321971,40282679:2820249,568825,115847 -k1,16901:28501722,40282679:-2820249 -) -(1,16901:28501722,40282679:2820249,452978,115847 -k1,16901:28501722,40282679:3277 -h1,16901:31318694,40282679:0,411205,112570 -) -k1,16901:31591469,40282679:269498 -k1,16901:32583029,40282679:0 -) -(1,16902:6764466,41147759:25818563,513147,126483 -k1,16901:10532533,41147759:229123 -k1,16901:11953102,41147759:229124 -k1,16901:14901314,41147759:229123 -k1,16901:15891966,41147759:229124 -k1,16901:19146886,41147759:229123 -(1,16901:19146886,41147759:0,452978,122846 -r1,16927:24077406,41147759:4930520,575824,122846 -k1,16901:19146886,41147759:-4930520 -) -(1,16901:19146886,41147759:4930520,452978,122846 -k1,16901:19146886,41147759:3277 -h1,16901:24074129,41147759:0,411205,112570 -) -k1,16901:24306529,41147759:229123 -k1,16901:25727098,41147759:229124 -(1,16901:25727098,41147759:0,452978,115847 -r1,16927:30305906,41147759:4578808,568825,115847 -k1,16901:25727098,41147759:-4578808 -) -(1,16901:25727098,41147759:4578808,452978,115847 -k1,16901:25727098,41147759:3277 -h1,16901:30302629,41147759:0,411205,112570 -) -k1,16901:30708699,41147759:229123 -k1,16901:32583029,41147759:0 -) -(1,16902:6764466,42012839:25818563,513147,126483 -g1,16901:8246890,42012839 -g1,16901:11645587,42012839 -g1,16901:14934839,42012839 -g1,16901:17163063,42012839 -g1,16901:18454777,42012839 -g1,16901:19009866,42012839 -g1,16901:21971438,42012839 -g1,16901:24254712,42012839 -g1,16901:25896388,42012839 -g1,16901:27114702,42012839 -g1,16901:28334327,42012839 -k1,16902:32583029,42012839:2709262 -g1,16902:32583029,42012839 -) -] -g1,16902:32583029,42139322 -) -h1,16902:6630773,42139322:0,0,0 -v1,16907:6630773,43004402:0,393216,0 -(1,16927:6630773,45177208:25952256,2566022,0 -g1,16927:6630773,45177208 -g1,16927:6237557,45177208 -r1,16927:6368629,45177208:131072,2566022,0 -g1,16927:6567858,45177208 -g1,16927:6764466,45177208 -[1,16927:6764466,45177208:25818563,2566022,0 -(1,16908:6764466,43312700:25818563,701514,196608 -(1,16907:6764466,43312700:0,701514,196608 -r1,16927:8471973,43312700:1707507,898122,196608 -k1,16907:6764466,43312700:-1707507 -) -(1,16907:6764466,43312700:1707507,701514,196608 -) -k1,16907:8702142,43312700:230169 -k1,16907:10020071,43312700:327680 -k1,16907:13370409,43312700:230169 -(1,16907:13370409,43312700:0,452978,122846 -r1,16927:18300929,43312700:4930520,575824,122846 -k1,16907:13370409,43312700:-4930520 -) -(1,16907:13370409,43312700:4930520,452978,122846 -k1,16907:13370409,43312700:3277 -h1,16907:18297652,43312700:0,411205,112570 -) -k1,16907:18531098,43312700:230169 -k1,16907:19952712,43312700:230169 -(1,16907:19952712,43312700:0,452978,115847 -r1,16927:24531520,43312700:4578808,568825,115847 -k1,16907:19952712,43312700:-4578808 -) -(1,16907:19952712,43312700:4578808,452978,115847 -k1,16907:19952712,43312700:3277 -h1,16907:24528243,43312700:0,411205,112570 -) -k1,16907:24761689,43312700:230169 -k1,16907:26559479,43312700:230169 -k1,16907:29369800,43312700:230169 -k1,16907:32583029,43312700:0 -) -(1,16908:6764466,44177780:25818563,513147,134348 -k1,16907:9412557,44177780:133475 -k1,16907:10197460,44177780:133475 -k1,16907:13087379,44177780:133475 -k1,16907:14239940,44177780:133476 -k1,16907:17547979,44177780:133475 -k1,16907:18340746,44177780:133475 -k1,16907:19493306,44177780:133475 -k1,16907:21280254,44177780:133475 -k1,16907:23151744,44177780:133475 -k1,16907:26311017,44177780:133476 -k1,16907:28012113,44177780:133475 -k1,16907:30725740,44177780:133475 -k1,16907:32583029,44177780:0 -) -(1,16908:6764466,45042860:25818563,513147,134348 -k1,16907:7535684,45042860:143383 -k1,16907:9371208,45042860:143384 -k1,16907:11004224,45042860:143383 -k1,16907:13018660,45042860:143383 -k1,16907:14181128,45042860:143383 -k1,16907:17499076,45042860:143384 -k1,16907:19889689,45042860:143383 -k1,16907:21402119,45042860:143383 -k1,16907:22011464,45042860:143384 -k1,16907:23173932,45042860:143383 -k1,16907:24489754,45042860:143383 -k1,16907:26129324,45042860:143383 -k1,16907:28573677,45042860:143384 -k1,16907:30572384,45042860:143383 -k1,16907:32583029,45042860:0 -) -] -g1,16927:32583029,45177208 -) -] -(1,16927:32583029,45706769:0,0,0 -g1,16927:32583029,45706769 -) -) -] -(1,16927:6630773,47279633:25952256,0,0 -h1,16927:6630773,47279633:25952256,0,0 -) -] -(1,16927:4262630,4025873:0,0,0 -[1,16927:-473656,4025873:0,0,0 -(1,16927:-473656,-710413:0,0,0 -(1,16927:-473656,-710413:0,0,0 -g1,16927:-473656,-710413 -) -g1,16927:-473656,-710413 +[1,16925:3078558,4812305:0,0,0 +(1,16925:3078558,49800853:0,16384,2228224 +g1,16925:29030814,49800853 +g1,16925:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16925:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16925:37855564,49800853:1179648,16384,0 +) +) +k1,16925:3078556,49800853:-34777008 +) +] +g1,16925:6630773,4812305 +k1,16925:23347041,4812305:15520891 +g1,16925:23960458,4812305 +g1,16925:27572802,4812305 +g1,16925:29306229,4812305 +) +) +] +[1,16925:6630773,45706769:25952256,40108032,0 +(1,16925:6630773,45706769:25952256,40108032,0 +(1,16925:6630773,45706769:0,0,0 +g1,16925:6630773,45706769 +) +[1,16925:6630773,45706769:25952256,40108032,0 +v1,16831:6630773,6254097:0,393216,0 +(1,16849:6630773,14841168:25952256,8980287,196608 +g1,16849:6630773,14841168 +g1,16849:6630773,14841168 +g1,16849:6434165,14841168 +(1,16849:6434165,14841168:0,8980287,196608 +r1,16925:32779637,14841168:26345472,9176895,196608 +k1,16849:6434165,14841168:-26345472 +) +(1,16849:6434165,14841168:26345472,8980287,196608 +[1,16849:6630773,14841168:25952256,8783679,0 +(1,16833:6630773,6481928:25952256,424439,112852 +(1,16832:6630773,6481928:0,0,0 +g1,16832:6630773,6481928 +g1,16832:6630773,6481928 +g1,16832:6303093,6481928 +(1,16832:6303093,6481928:0,0,0 +) +g1,16832:6630773,6481928 +) +g1,16833:10946174,6481928 +k1,16833:10946174,6481928:0 +h1,16833:11610082,6481928:0,0,0 +k1,16833:32583030,6481928:20972948 +g1,16833:32583030,6481928 +) +(1,16834:6630773,7166783:25952256,424439,112852 +h1,16834:6630773,7166783:0,0,0 +g1,16834:6962727,7166783 +g1,16834:7294681,7166783 +k1,16834:7294681,7166783:0 +h1,16834:14265713,7166783:0,0,0 +k1,16834:32583029,7166783:18317316 +g1,16834:32583029,7166783 +) +(1,16835:6630773,7851638:25952256,424439,106246 +h1,16835:6630773,7851638:0,0,0 +g1,16835:6962727,7851638 +g1,16835:7294681,7851638 +g1,16835:7626635,7851638 +g1,16835:7958589,7851638 +g1,16835:8290543,7851638 +g1,16835:8622497,7851638 +g1,16835:8954451,7851638 +g1,16835:9286405,7851638 +g1,16835:9618359,7851638 +g1,16835:9950313,7851638 +g1,16835:10282267,7851638 +g1,16835:10614221,7851638 +g1,16835:10946175,7851638 +g1,16835:11278129,7851638 +g1,16835:11610083,7851638 +g1,16835:13269853,7851638 +g1,16835:13933761,7851638 +k1,16835:13933761,7851638:0 +h1,16835:16921347,7851638:0,0,0 +k1,16835:32583029,7851638:15661682 +g1,16835:32583029,7851638 +) +(1,16836:6630773,8536493:25952256,424439,106246 +h1,16836:6630773,8536493:0,0,0 +g1,16836:6962727,8536493 +g1,16836:7294681,8536493 +g1,16836:7626635,8536493 +g1,16836:7958589,8536493 +g1,16836:8290543,8536493 +g1,16836:8622497,8536493 +g1,16836:8954451,8536493 +g1,16836:9286405,8536493 +g1,16836:9618359,8536493 +g1,16836:9950313,8536493 +g1,16836:10282267,8536493 +g1,16836:10614221,8536493 +g1,16836:10946175,8536493 +g1,16836:11278129,8536493 +g1,16836:11610083,8536493 +g1,16836:14597668,8536493 +g1,16836:15261576,8536493 +k1,16836:15261576,8536493:0 +h1,16836:17585254,8536493:0,0,0 +k1,16836:32583029,8536493:14997775 +g1,16836:32583029,8536493 +) +(1,16837:6630773,9221348:25952256,424439,79822 +h1,16837:6630773,9221348:0,0,0 +g1,16837:6962727,9221348 +g1,16837:7294681,9221348 +g1,16837:7626635,9221348 +g1,16837:7958589,9221348 +g1,16837:8290543,9221348 +g1,16837:8622497,9221348 +g1,16837:8954451,9221348 +g1,16837:9286405,9221348 +g1,16837:9618359,9221348 +g1,16837:9950313,9221348 +g1,16837:10282267,9221348 +g1,16837:10614221,9221348 +g1,16837:10946175,9221348 +g1,16837:11278129,9221348 +g1,16837:11610083,9221348 +g1,16837:14929622,9221348 +g1,16837:15593530,9221348 +h1,16837:19576977,9221348:0,0,0 +k1,16837:32583029,9221348:13006052 +g1,16837:32583029,9221348 +) +(1,16838:6630773,9906203:25952256,424439,112852 +h1,16838:6630773,9906203:0,0,0 +h1,16838:10614220,9906203:0,0,0 +k1,16838:32583028,9906203:21968808 +g1,16838:32583028,9906203 +) +(1,16848:6630773,10722130:25952256,424439,9908 +(1,16840:6630773,10722130:0,0,0 +g1,16840:6630773,10722130 +g1,16840:6630773,10722130 +g1,16840:6303093,10722130 +(1,16840:6303093,10722130:0,0,0 +) +g1,16840:6630773,10722130 +) +g1,16848:7626635,10722130 +g1,16848:8290543,10722130 +g1,16848:8954451,10722130 +g1,16848:11610083,10722130 +g1,16848:12937899,10722130 +g1,16848:13601807,10722130 +h1,16848:13933761,10722130:0,0,0 +k1,16848:32583029,10722130:18649268 +g1,16848:32583029,10722130 +) +(1,16848:6630773,11406985:25952256,424439,106246 +h1,16848:6630773,11406985:0,0,0 +g1,16848:7626635,11406985 +g1,16848:7958589,11406985 +g1,16848:8290543,11406985 +g1,16848:10946175,11406985 +g1,16848:12605945,11406985 +g1,16848:12937899,11406985 +g1,16848:13269853,11406985 +g1,16848:13601807,11406985 +g1,16848:13933761,11406985 +g1,16848:14265715,11406985 +g1,16848:14597669,11406985 +g1,16848:14929623,11406985 +g1,16848:15261577,11406985 +h1,16848:18249162,11406985:0,0,0 +k1,16848:32583029,11406985:14333867 +g1,16848:32583029,11406985 +) +(1,16848:6630773,12091840:25952256,431045,6605 +h1,16848:6630773,12091840:0,0,0 +g1,16848:7626635,12091840 +g1,16848:7958589,12091840 +g1,16848:8290543,12091840 +g1,16848:10282267,12091840 +g1,16848:10614221,12091840 +g1,16848:10946175,12091840 +g1,16848:12937899,12091840 +g1,16848:13269853,12091840 +g1,16848:13601807,12091840 +g1,16848:13933761,12091840 +g1,16848:14265715,12091840 +g1,16848:14597669,12091840 +g1,16848:14929623,12091840 +g1,16848:15261577,12091840 +g1,16848:15593531,12091840 +g1,16848:15925485,12091840 +g1,16848:16257439,12091840 +g1,16848:16589393,12091840 +k1,16848:16589393,12091840:0 +h1,16848:18249163,12091840:0,0,0 +k1,16848:32583029,12091840:14333866 +g1,16848:32583029,12091840 +) +(1,16848:6630773,12776695:25952256,424439,112852 +h1,16848:6630773,12776695:0,0,0 +g1,16848:7626635,12776695 +g1,16848:8290543,12776695 +g1,16848:10614221,12776695 +g1,16848:10946175,12776695 +g1,16848:15261576,12776695 +g1,16848:15593530,12776695 +g1,16848:15925484,12776695 +g1,16848:16257438,12776695 +g1,16848:16589392,12776695 +g1,16848:16921346,12776695 +g1,16848:17253300,12776695 +h1,16848:18249162,12776695:0,0,0 +k1,16848:32583029,12776695:14333867 +g1,16848:32583029,12776695 +) +(1,16848:6630773,13461550:25952256,424439,106246 +h1,16848:6630773,13461550:0,0,0 +g1,16848:7626635,13461550 +g1,16848:8290543,13461550 +g1,16848:10614221,13461550 +g1,16848:10946175,13461550 +g1,16848:14929622,13461550 +g1,16848:15261576,13461550 +g1,16848:15593530,13461550 +g1,16848:15925484,13461550 +g1,16848:16257438,13461550 +g1,16848:16589392,13461550 +g1,16848:16921346,13461550 +g1,16848:17253300,13461550 +h1,16848:18249162,13461550:0,0,0 +k1,16848:32583029,13461550:14333867 +g1,16848:32583029,13461550 +) +(1,16848:6630773,14146405:25952256,424439,112852 +h1,16848:6630773,14146405:0,0,0 +g1,16848:7626635,14146405 +g1,16848:8290543,14146405 +g1,16848:10614221,14146405 +g1,16848:10946175,14146405 +g1,16848:15261576,14146405 +g1,16848:15593530,14146405 +g1,16848:15925484,14146405 +g1,16848:16257438,14146405 +g1,16848:16589392,14146405 +g1,16848:16921346,14146405 +g1,16848:17253300,14146405 +h1,16848:18249162,14146405:0,0,0 +k1,16848:32583029,14146405:14333867 +g1,16848:32583029,14146405 +) +(1,16848:6630773,14831260:25952256,424439,9908 +h1,16848:6630773,14831260:0,0,0 +g1,16848:7626635,14831260 +g1,16848:8290543,14831260 +g1,16848:8954451,14831260 +g1,16848:10282267,14831260 +g1,16848:11942037,14831260 +h1,16848:13269853,14831260:0,0,0 +k1,16848:32583029,14831260:19313176 +g1,16848:32583029,14831260 +) +] +) +g1,16849:32583029,14841168 +g1,16849:6630773,14841168 +g1,16849:6630773,14841168 +g1,16849:32583029,14841168 +g1,16849:32583029,14841168 +) +h1,16849:6630773,15037776:0,0,0 +v1,16853:6630773,15902856:0,393216,0 +(1,16854:6630773,17263461:25952256,1753821,0 +g1,16854:6630773,17263461 +g1,16854:6237557,17263461 +r1,16925:6368629,17263461:131072,1753821,0 +g1,16854:6567858,17263461 +g1,16854:6764466,17263461 +[1,16854:6764466,17263461:25818563,1753821,0 +(1,16854:6764466,16264033:25818563,754393,260573 +(1,16853:6764466,16264033:0,754393,260573 +r1,16925:7856192,16264033:1091726,1014966,260573 +k1,16853:6764466,16264033:-1091726 +) +(1,16853:6764466,16264033:1091726,754393,260573 +) +k1,16853:8040255,16264033:184063 +k1,16853:8367935,16264033:327680 +k1,16853:11963148,16264033:184064 +k1,16853:12798639,16264033:184063 +k1,16853:14416630,16264033:184063 +k1,16853:15189207,16264033:184064 +k1,16853:15989308,16264033:184063 +k1,16853:17775071,16264033:184063 +k1,16853:20984931,16264033:184063 +k1,16853:22736616,16264033:184064 +k1,16853:23939764,16264033:184063 +k1,16853:27331814,16264033:184063 +k1,16853:30426332,16264033:184064 +k1,16853:31478747,16264033:184063 +k1,16853:32583029,16264033:0 +) +(1,16854:6764466,17129113:25818563,513147,134348 +g1,16853:8056180,17129113 +g1,16853:9647394,17129113 +g1,16853:12229512,17129113 +g1,16853:14497057,17129113 +g1,16853:17622469,17129113 +g1,16853:18583226,17129113 +g1,16853:19138315,17129113 +g1,16853:21318697,17129113 +g1,16853:22838476,17129113 +g1,16853:23689133,17129113 +g1,16853:26035977,17129113 +g1,16853:27301477,17129113 +g1,16853:29202676,17129113 +k1,16854:32583029,17129113:314579 +g1,16854:32583029,17129113 +) +] +g1,16854:32583029,17263461 +) +h1,16854:6630773,17263461:0,0,0 +(1,16857:6630773,18128541:25952256,505283,126483 +h1,16856:6630773,18128541:983040,0,0 +k1,16856:10661040,18128541:257359 +(1,16856:10661040,18128541:0,452978,115847 +r1,16925:15239848,18128541:4578808,568825,115847 +k1,16856:10661040,18128541:-4578808 +) +(1,16856:10661040,18128541:4578808,452978,115847 +k1,16856:10661040,18128541:3277 +h1,16856:15236571,18128541:0,411205,112570 +) +k1,16856:15497208,18128541:257360 +k1,16856:17247477,18128541:257359 +k1,16856:18571107,18128541:257359 +k1,16856:21242813,18128541:257360 +k1,16856:24933603,18128541:257359 +k1,16856:26210047,18128541:257359 +k1,16856:28126123,18128541:257360 +k1,16856:30670033,18128541:257359 +k1,16857:32583029,18128541:0 +) +(1,16857:6630773,18993621:25952256,513147,126483 +k1,16856:8116273,18993621:218034 +k1,16856:9001462,18993621:218033 +(1,16856:9001462,18993621:0,452978,122846 +r1,16925:13931982,18993621:4930520,575824,122846 +k1,16856:9001462,18993621:-4930520 +) +(1,16856:9001462,18993621:4930520,452978,122846 +k1,16856:9001462,18993621:3277 +h1,16856:13928705,18993621:0,411205,112570 +) +k1,16856:14323686,18993621:218034 +k1,16856:16020868,18993621:218034 +k1,16856:18910149,18993621:218034 +k1,16856:20662380,18993621:218033 +k1,16856:22274365,18993621:218034 +k1,16856:24649844,18993621:218034 +k1,16856:26868037,18993621:218034 +k1,16856:28155618,18993621:218033 +k1,16856:31966991,18993621:218034 +k1,16856:32583029,18993621:0 +) +(1,16857:6630773,19858701:25952256,513147,126483 +k1,16856:7908069,19858701:179568 +k1,16856:9454719,19858701:179569 +k1,16856:11644276,19858701:179568 +k1,16856:13275467,19858701:179569 +k1,16856:15765834,19858701:179568 +k1,16856:17136848,19858701:179569 +k1,16856:19302157,19858701:179568 +k1,16856:20977258,19858701:179569 +k1,16856:22175911,19858701:179568 +k1,16856:25134207,19858701:179569 +k1,16856:27125190,19858701:179568 +k1,16856:28405764,19858701:179569 +k1,16856:31298523,19858701:179568 +k1,16856:32583029,19858701:0 +) +(1,16857:6630773,20723781:25952256,513147,126483 +k1,16856:7818362,20723781:196029 +k1,16856:9338219,20723781:196030 +k1,16856:10193540,20723781:196029 +k1,16856:12871418,20723781:196030 +k1,16856:14020996,20723781:196029 +k1,16856:15747292,20723781:196030 +k1,16856:16594749,20723781:196029 +k1,16856:19115340,20723781:196029 +k1,16856:21008097,20723781:196030 +k1,16856:23917317,20723781:196029 +k1,16856:25507298,20723781:196030 +k1,16856:28398823,20723781:196029 +(1,16856:28398823,20723781:0,452978,115847 +r1,16925:31219072,20723781:2820249,568825,115847 +k1,16856:28398823,20723781:-2820249 +) +(1,16856:28398823,20723781:2820249,452978,115847 +k1,16856:28398823,20723781:3277 +h1,16856:31215795,20723781:0,411205,112570 +) +k1,16856:31415102,20723781:196030 +k1,16856:32227169,20723781:196029 +k1,16856:32583029,20723781:0 +) +(1,16857:6630773,21588861:25952256,505283,126483 +g1,16856:9071333,21588861 +k1,16857:32583030,21588861:22103984 +g1,16857:32583030,21588861 +) +v1,16859:6630773,22273716:0,393216,0 +(1,16878:6630773,31542339:25952256,9661839,196608 +g1,16878:6630773,31542339 +g1,16878:6630773,31542339 +g1,16878:6434165,31542339 +(1,16878:6434165,31542339:0,9661839,196608 +r1,16925:32779637,31542339:26345472,9858447,196608 +k1,16878:6434165,31542339:-26345472 +) +(1,16878:6434165,31542339:26345472,9661839,196608 +[1,16878:6630773,31542339:25952256,9465231,0 +(1,16861:6630773,22501547:25952256,424439,52847 +(1,16860:6630773,22501547:0,0,0 +g1,16860:6630773,22501547 +g1,16860:6630773,22501547 +g1,16860:6303093,22501547 +(1,16860:6303093,22501547:0,0,0 +) +g1,16860:6630773,22501547 +) +g1,16861:10946174,22501547 +k1,16861:10946174,22501547:0 +h1,16861:11610082,22501547:0,0,0 +k1,16861:32583030,22501547:20972948 +g1,16861:32583030,22501547 +) +(1,16862:6630773,23186402:25952256,424439,112852 +h1,16862:6630773,23186402:0,0,0 +g1,16862:6962727,23186402 +g1,16862:7294681,23186402 +k1,16862:7294681,23186402:0 +h1,16862:15593529,23186402:0,0,0 +k1,16862:32583029,23186402:16989500 +g1,16862:32583029,23186402 +) +(1,16863:6630773,23871257:25952256,431045,106246 +h1,16863:6630773,23871257:0,0,0 +g1,16863:6962727,23871257 +g1,16863:7294681,23871257 +g1,16863:7626635,23871257 +g1,16863:7958589,23871257 +g1,16863:8290543,23871257 +g1,16863:8622497,23871257 +g1,16863:8954451,23871257 +g1,16863:9286405,23871257 +g1,16863:9618359,23871257 +g1,16863:9950313,23871257 +g1,16863:10282267,23871257 +g1,16863:10614221,23871257 +g1,16863:10946175,23871257 +g1,16863:11278129,23871257 +g1,16863:14929622,23871257 +g1,16863:15593530,23871257 +k1,16863:15593530,23871257:0 +h1,16863:17917208,23871257:0,0,0 +k1,16863:32583029,23871257:14665821 +g1,16863:32583029,23871257 +) +(1,16864:6630773,24556112:25952256,431045,86428 +h1,16864:6630773,24556112:0,0,0 +g1,16864:6962727,24556112 +g1,16864:7294681,24556112 +g1,16864:7626635,24556112 +g1,16864:7958589,24556112 +g1,16864:8290543,24556112 +g1,16864:8622497,24556112 +g1,16864:8954451,24556112 +g1,16864:9286405,24556112 +g1,16864:9618359,24556112 +g1,16864:9950313,24556112 +g1,16864:10282267,24556112 +g1,16864:10614221,24556112 +g1,16864:10946175,24556112 +g1,16864:11278129,24556112 +g1,16864:15261576,24556112 +g1,16864:15925484,24556112 +k1,16864:15925484,24556112:0 +h1,16864:19908931,24556112:0,0,0 +k1,16864:32583029,24556112:12674098 +g1,16864:32583029,24556112 +) +(1,16865:6630773,25240967:25952256,431045,79822 +h1,16865:6630773,25240967:0,0,0 +g1,16865:6962727,25240967 +g1,16865:7294681,25240967 +g1,16865:7626635,25240967 +g1,16865:7958589,25240967 +g1,16865:8290543,25240967 +g1,16865:8622497,25240967 +g1,16865:8954451,25240967 +g1,16865:9286405,25240967 +g1,16865:9618359,25240967 +g1,16865:9950313,25240967 +g1,16865:10282267,25240967 +g1,16865:10614221,25240967 +g1,16865:10946175,25240967 +g1,16865:11278129,25240967 +g1,16865:14597668,25240967 +g1,16865:15261576,25240967 +g1,16865:17253300,25240967 +k1,16865:17253300,25240967:0 +h1,16865:17917208,25240967:0,0,0 +k1,16865:32583029,25240967:14665821 +g1,16865:32583029,25240967 +) +(1,16866:6630773,25925822:25952256,424439,106246 +h1,16866:6630773,25925822:0,0,0 +g1,16866:6962727,25925822 +g1,16866:7294681,25925822 +g1,16866:11278129,25925822 +g1,16866:11942037,25925822 +k1,16866:11942037,25925822:0 +h1,16866:14929622,25925822:0,0,0 +k1,16866:32583030,25925822:17653408 +g1,16866:32583030,25925822 +) +(1,16867:6630773,26610677:25952256,424439,52847 +h1,16867:6630773,26610677:0,0,0 +h1,16867:10614220,26610677:0,0,0 +k1,16867:32583028,26610677:21968808 +g1,16867:32583028,26610677 +) +(1,16877:6630773,27426604:25952256,424439,9908 +(1,16869:6630773,27426604:0,0,0 +g1,16869:6630773,27426604 +g1,16869:6630773,27426604 +g1,16869:6303093,27426604 +(1,16869:6303093,27426604:0,0,0 +) +g1,16869:6630773,27426604 +) +g1,16877:7626635,27426604 +g1,16877:8290543,27426604 +g1,16877:8954451,27426604 +g1,16877:11610083,27426604 +g1,16877:12937899,27426604 +g1,16877:13601807,27426604 +h1,16877:13933761,27426604:0,0,0 +k1,16877:32583029,27426604:18649268 +g1,16877:32583029,27426604 +) +(1,16877:6630773,28111459:25952256,424439,112852 +h1,16877:6630773,28111459:0,0,0 +g1,16877:7626635,28111459 +g1,16877:7958589,28111459 +g1,16877:8290543,28111459 +g1,16877:10946175,28111459 +g1,16877:15261576,28111459 +g1,16877:19245023,28111459 +g1,16877:23560424,28111459 +h1,16877:27211917,28111459:0,0,0 +k1,16877:32583029,28111459:5371112 +g1,16877:32583029,28111459 +) +(1,16877:6630773,28796314:25952256,431045,6605 +h1,16877:6630773,28796314:0,0,0 +g1,16877:7626635,28796314 +g1,16877:7958589,28796314 +g1,16877:8290543,28796314 +g1,16877:10282267,28796314 +g1,16877:10614221,28796314 +g1,16877:10946175,28796314 +g1,16877:11278129,28796314 +g1,16877:11610083,28796314 +g1,16877:11942037,28796314 +g1,16877:12273991,28796314 +g1,16877:12605945,28796314 +g1,16877:12937899,28796314 +g1,16877:13269853,28796314 +g1,16877:15261577,28796314 +g1,16877:15593531,28796314 +g1,16877:15925485,28796314 +g1,16877:16257439,28796314 +g1,16877:16589393,28796314 +g1,16877:16921347,28796314 +g1,16877:17253301,28796314 +g1,16877:19245025,28796314 +g1,16877:19576979,28796314 +g1,16877:19908933,28796314 +g1,16877:20240887,28796314 +g1,16877:20572841,28796314 +g1,16877:20904795,28796314 +g1,16877:21236749,28796314 +g1,16877:21568703,28796314 +g1,16877:23560427,28796314 +g1,16877:23892381,28796314 +g1,16877:24224335,28796314 +g1,16877:24556289,28796314 +g1,16877:24888243,28796314 +g1,16877:25220197,28796314 +g1,16877:25552151,28796314 +k1,16877:25552151,28796314:0 +h1,16877:27211921,28796314:0,0,0 +k1,16877:32583029,28796314:5371108 +g1,16877:32583029,28796314 +) +(1,16877:6630773,29481169:25952256,407923,9908 +h1,16877:6630773,29481169:0,0,0 +g1,16877:7626635,29481169 +g1,16877:8290543,29481169 +g1,16877:10614221,29481169 +g1,16877:10946175,29481169 +g1,16877:11278129,29481169 +g1,16877:11610083,29481169 +g1,16877:11942037,29481169 +g1,16877:12273991,29481169 +g1,16877:12605945,29481169 +g1,16877:12937899,29481169 +g1,16877:13269853,29481169 +g1,16877:13601807,29481169 +g1,16877:13933761,29481169 +g1,16877:15261577,29481169 +g1,16877:15593531,29481169 +g1,16877:15925485,29481169 +g1,16877:16257439,29481169 +g1,16877:16589393,29481169 +g1,16877:16921347,29481169 +g1,16877:17253301,29481169 +g1,16877:17585255,29481169 +g1,16877:17917209,29481169 +g1,16877:19245025,29481169 +g1,16877:19576979,29481169 +g1,16877:19908933,29481169 +g1,16877:20240887,29481169 +g1,16877:20572841,29481169 +g1,16877:20904795,29481169 +g1,16877:21236749,29481169 +g1,16877:21568703,29481169 +g1,16877:21900657,29481169 +g1,16877:22232611,29481169 +g1,16877:23560427,29481169 +g1,16877:23892381,29481169 +g1,16877:24224335,29481169 +g1,16877:24556289,29481169 +g1,16877:24888243,29481169 +g1,16877:25220197,29481169 +g1,16877:25552151,29481169 +g1,16877:25884105,29481169 +g1,16877:26216059,29481169 +h1,16877:27211921,29481169:0,0,0 +k1,16877:32583029,29481169:5371108 +g1,16877:32583029,29481169 +) +(1,16877:6630773,30166024:25952256,407923,9908 +h1,16877:6630773,30166024:0,0,0 +g1,16877:7626635,30166024 +g1,16877:8290543,30166024 +g1,16877:10614221,30166024 +g1,16877:10946175,30166024 +g1,16877:11278129,30166024 +g1,16877:11610083,30166024 +g1,16877:11942037,30166024 +g1,16877:12273991,30166024 +g1,16877:12605945,30166024 +g1,16877:12937899,30166024 +g1,16877:13269853,30166024 +g1,16877:13601807,30166024 +g1,16877:13933761,30166024 +g1,16877:15261577,30166024 +g1,16877:15593531,30166024 +g1,16877:15925485,30166024 +g1,16877:16257439,30166024 +g1,16877:16589393,30166024 +g1,16877:16921347,30166024 +g1,16877:17253301,30166024 +g1,16877:17585255,30166024 +g1,16877:17917209,30166024 +g1,16877:18581117,30166024 +g1,16877:18913071,30166024 +g1,16877:19245025,30166024 +g1,16877:19576979,30166024 +g1,16877:19908933,30166024 +g1,16877:20240887,30166024 +g1,16877:20572841,30166024 +g1,16877:20904795,30166024 +g1,16877:21236749,30166024 +g1,16877:21568703,30166024 +g1,16877:21900657,30166024 +g1,16877:22232611,30166024 +g1,16877:23560427,30166024 +g1,16877:23892381,30166024 +g1,16877:24224335,30166024 +g1,16877:24556289,30166024 +g1,16877:24888243,30166024 +g1,16877:25220197,30166024 +g1,16877:25552151,30166024 +g1,16877:25884105,30166024 +g1,16877:26216059,30166024 +h1,16877:27211921,30166024:0,0,0 +k1,16877:32583029,30166024:5371108 +g1,16877:32583029,30166024 +) +(1,16877:6630773,30850879:25952256,407923,9908 +h1,16877:6630773,30850879:0,0,0 +g1,16877:7626635,30850879 +g1,16877:8290543,30850879 +g1,16877:10614221,30850879 +g1,16877:10946175,30850879 +g1,16877:11278129,30850879 +g1,16877:11610083,30850879 +g1,16877:11942037,30850879 +g1,16877:12273991,30850879 +g1,16877:12605945,30850879 +g1,16877:12937899,30850879 +g1,16877:13269853,30850879 +g1,16877:13601807,30850879 +g1,16877:13933761,30850879 +g1,16877:15261577,30850879 +g1,16877:15593531,30850879 +g1,16877:15925485,30850879 +g1,16877:16257439,30850879 +g1,16877:16589393,30850879 +g1,16877:16921347,30850879 +g1,16877:17253301,30850879 +g1,16877:17585255,30850879 +g1,16877:17917209,30850879 +g1,16877:19245025,30850879 +g1,16877:19576979,30850879 +g1,16877:19908933,30850879 +g1,16877:20240887,30850879 +g1,16877:20572841,30850879 +g1,16877:20904795,30850879 +g1,16877:21236749,30850879 +g1,16877:21568703,30850879 +g1,16877:21900657,30850879 +g1,16877:22232611,30850879 +g1,16877:23560427,30850879 +g1,16877:23892381,30850879 +g1,16877:24224335,30850879 +g1,16877:24556289,30850879 +g1,16877:24888243,30850879 +g1,16877:25220197,30850879 +g1,16877:25552151,30850879 +g1,16877:25884105,30850879 +g1,16877:26216059,30850879 +h1,16877:27211921,30850879:0,0,0 +k1,16877:32583029,30850879:5371108 +g1,16877:32583029,30850879 +) +(1,16877:6630773,31535734:25952256,424439,6605 +h1,16877:6630773,31535734:0,0,0 +g1,16877:7626635,31535734 +g1,16877:8290543,31535734 +g1,16877:8954451,31535734 +g1,16877:10282267,31535734 +g1,16877:11942037,31535734 +h1,16877:13269853,31535734:0,0,0 +k1,16877:32583029,31535734:19313176 +g1,16877:32583029,31535734 +) +] +) +g1,16878:32583029,31542339 +g1,16878:6630773,31542339 +g1,16878:6630773,31542339 +g1,16878:32583029,31542339 +g1,16878:32583029,31542339 +) +h1,16878:6630773,31738947:0,0,0 +v1,16882:6630773,32604027:0,393216,0 +(1,16896:6630773,39056422:25952256,6845611,0 +g1,16896:6630773,39056422 +g1,16896:6237557,39056422 +r1,16925:6368629,39056422:131072,6845611,0 +g1,16896:6567858,39056422 +g1,16896:6764466,39056422 +[1,16896:6764466,39056422:25818563,6845611,0 +(1,16883:6764466,32876504:25818563,665693,196608 +(1,16882:6764466,32876504:0,665693,196608 +r1,16925:7868133,32876504:1103667,862301,196608 +k1,16882:6764466,32876504:-1103667 +) +(1,16882:6764466,32876504:1103667,665693,196608 +) +k1,16882:8053175,32876504:185042 +k1,16882:9371104,32876504:327680 +k1,16882:10099438,32876504:185041 +(1,16882:10099438,32876504:0,452978,115847 +r1,16925:14326534,32876504:4227096,568825,115847 +k1,16882:10099438,32876504:-4227096 +) +(1,16882:10099438,32876504:4227096,452978,115847 +k1,16882:10099438,32876504:3277 +h1,16882:14323257,32876504:0,411205,112570 +) +k1,16882:14511576,32876504:185042 +k1,16882:16424147,32876504:185042 +k1,16882:17260616,32876504:185041 +(1,16882:17260616,32876504:0,452978,115847 +r1,16925:19729153,32876504:2468537,568825,115847 +k1,16882:17260616,32876504:-2468537 +) +(1,16882:17260616,32876504:2468537,452978,115847 +k1,16882:17260616,32876504:3277 +h1,16882:19725876,32876504:0,411205,112570 +) +k1,16882:20087865,32876504:185042 +k1,16882:21291992,32876504:185042 +k1,16882:23288448,32876504:185041 +k1,16882:24341842,32876504:185042 +k1,16882:27687685,32876504:185042 +k1,16882:29140192,32876504:185041 +k1,16882:30713942,32876504:185042 +k1,16882:32583029,32876504:0 +) +(1,16883:6764466,33741584:25818563,505283,126483 +k1,16882:8200915,33741584:245004 +k1,16882:9928342,33741584:245003 +k1,16882:11440812,33741584:245004 +k1,16882:13176105,33741584:245004 +k1,16882:15617219,33741584:245003 +k1,16882:17136898,33741584:245004 +k1,16882:18400987,33741584:245004 +k1,16882:22730195,33741584:245004 +k1,16882:25017300,33741584:245003 +k1,16882:26453749,33741584:245004 +k1,16882:28280792,33741584:245004 +k1,16882:29544880,33741584:245003 +k1,16882:31931601,33741584:245004 +k1,16882:32583029,33741584:0 +) +(1,16883:6764466,34606664:25818563,513147,7863 +g1,16882:8229851,34606664 +k1,16883:32583030,34606664:23234480 +g1,16883:32583030,34606664 +) +v1,16885:6764466,35291519:0,393216,0 +(1,16891:6764466,36995306:25818563,2097003,196608 +g1,16891:6764466,36995306 +g1,16891:6764466,36995306 +g1,16891:6567858,36995306 +(1,16891:6567858,36995306:0,2097003,196608 +r1,16925:32779637,36995306:26211779,2293611,196608 +k1,16891:6567857,36995306:-26211780 +) +(1,16891:6567858,36995306:26211779,2097003,196608 +[1,16891:6764466,36995306:25818563,1900395,0 +(1,16887:6764466,35519350:25818563,424439,86428 +(1,16886:6764466,35519350:0,0,0 +g1,16886:6764466,35519350 +g1,16886:6764466,35519350 +g1,16886:6436786,35519350 +(1,16886:6436786,35519350:0,0,0 +) +g1,16886:6764466,35519350 +) +k1,16887:6764466,35519350:0 +g1,16887:13071590,35519350 +h1,16887:17386991,35519350:0,0,0 +k1,16887:32583029,35519350:15196038 +g1,16887:32583029,35519350 +) +(1,16888:6764466,36204205:25818563,424439,106246 +h1,16888:6764466,36204205:0,0,0 +g1,16888:13071590,36204205 +h1,16888:17386991,36204205:0,0,0 +k1,16888:32583029,36204205:15196038 +g1,16888:32583029,36204205 +) +(1,16889:6764466,36889060:25818563,424439,106246 +h1,16889:6764466,36889060:0,0,0 +g1,16889:13071590,36889060 +g1,16889:17718945,36889060 +g1,16889:18382853,36889060 +k1,16889:18382853,36889060:0 +h1,16889:24689977,36889060:0,0,0 +k1,16889:32583029,36889060:7893052 +g1,16889:32583029,36889060 +) +] +) +g1,16891:32583029,36995306 +g1,16891:6764466,36995306 +g1,16891:6764466,36995306 +g1,16891:32583029,36995306 +g1,16891:32583029,36995306 +) +h1,16891:6764466,37191914:0,0,0 +(1,16895:6764466,38056994:25818563,513147,134348 +h1,16894:6764466,38056994:983040,0,0 +k1,16894:9597084,38056994:215765 +k1,16894:10913853,38056994:215764 +k1,16894:14118060,38056994:215765 +k1,16894:16375270,38056994:215764 +k1,16894:17049132,38056994:215765 +k1,16894:19390230,38056994:215765 +k1,16894:20071955,38056994:215764 +k1,16894:21385448,38056994:215765 +k1,16894:23097400,38056994:215765 +k1,16894:24826390,38056994:215764 +k1,16894:27781560,38056994:215765 +k1,16894:29391275,38056994:215764 +k1,16894:29962900,38056994:215765 +k1,16894:32583029,38056994:0 +) +(1,16895:6764466,38922074:25818563,513147,134348 +g1,16894:8923877,38922074 +g1,16894:9774534,38922074 +g1,16894:12177739,38922074 +g1,16894:15417183,38922074 +g1,16894:16299297,38922074 +g1,16894:16964487,38922074 +g1,16894:17621813,38922074 +g1,16894:19334268,38922074 +g1,16894:21916386,38922074 +g1,16894:24183931,38922074 +g1,16894:25069322,38922074 +g1,16894:28243230,38922074 +k1,16895:32583029,38922074:1849431 +g1,16895:32583029,38922074 +) +] +g1,16896:32583029,39056422 +) +h1,16896:6630773,39056422:0,0,0 +v1,16899:6630773,39921502:0,393216,0 +(1,16900:6630773,42139322:25952256,2611036,0 +g1,16900:6630773,42139322 +g1,16900:6237557,42139322 +r1,16925:6368629,42139322:131072,2611036,0 +g1,16900:6567858,42139322 +g1,16900:6764466,42139322 +[1,16900:6764466,42139322:25818563,2611036,0 +(1,16900:6764466,40282679:25818563,754393,260573 +(1,16899:6764466,40282679:0,754393,260573 +r1,16925:7856192,40282679:1091726,1014966,260573 +k1,16899:6764466,40282679:-1091726 +) +(1,16899:6764466,40282679:1091726,754393,260573 +) +k1,16899:8125690,40282679:269498 +k1,16899:8453370,40282679:327680 +k1,16899:11226344,40282679:269499 +k1,16899:13063463,40282679:269498 +k1,16899:15666699,40282679:269499 +k1,16899:17478915,40282679:269498 +k1,16899:18407706,40282679:269499 +k1,16899:20655735,40282679:269498 +k1,16899:23951031,40282679:269499 +(1,16899:23951031,40282679:0,452978,122846 +r1,16925:26771280,40282679:2820249,575824,122846 +k1,16899:23951031,40282679:-2820249 +) +(1,16899:23951031,40282679:2820249,452978,122846 +k1,16899:23951031,40282679:3277 +h1,16899:26768003,40282679:0,411205,112570 +) +k1,16899:27040778,40282679:269498 +k1,16899:28501722,40282679:269499 +(1,16899:28501722,40282679:0,452978,115847 +r1,16925:31321971,40282679:2820249,568825,115847 +k1,16899:28501722,40282679:-2820249 +) +(1,16899:28501722,40282679:2820249,452978,115847 +k1,16899:28501722,40282679:3277 +h1,16899:31318694,40282679:0,411205,112570 +) +k1,16899:31591469,40282679:269498 +k1,16899:32583029,40282679:0 +) +(1,16900:6764466,41147759:25818563,513147,126483 +k1,16899:10532533,41147759:229123 +k1,16899:11953102,41147759:229124 +k1,16899:14901314,41147759:229123 +k1,16899:15891966,41147759:229124 +k1,16899:19146886,41147759:229123 +(1,16899:19146886,41147759:0,452978,122846 +r1,16925:24077406,41147759:4930520,575824,122846 +k1,16899:19146886,41147759:-4930520 +) +(1,16899:19146886,41147759:4930520,452978,122846 +k1,16899:19146886,41147759:3277 +h1,16899:24074129,41147759:0,411205,112570 +) +k1,16899:24306529,41147759:229123 +k1,16899:25727098,41147759:229124 +(1,16899:25727098,41147759:0,452978,115847 +r1,16925:30305906,41147759:4578808,568825,115847 +k1,16899:25727098,41147759:-4578808 +) +(1,16899:25727098,41147759:4578808,452978,115847 +k1,16899:25727098,41147759:3277 +h1,16899:30302629,41147759:0,411205,112570 +) +k1,16899:30708699,41147759:229123 +k1,16899:32583029,41147759:0 +) +(1,16900:6764466,42012839:25818563,513147,126483 +g1,16899:8246890,42012839 +g1,16899:11645587,42012839 +g1,16899:14934839,42012839 +g1,16899:17163063,42012839 +g1,16899:18454777,42012839 +g1,16899:19009866,42012839 +g1,16899:21971438,42012839 +g1,16899:24254712,42012839 +g1,16899:25896388,42012839 +g1,16899:27114702,42012839 +g1,16899:28334327,42012839 +k1,16900:32583029,42012839:2709262 +g1,16900:32583029,42012839 +) +] +g1,16900:32583029,42139322 +) +h1,16900:6630773,42139322:0,0,0 +v1,16905:6630773,43004402:0,393216,0 +(1,16925:6630773,45177208:25952256,2566022,0 +g1,16925:6630773,45177208 +g1,16925:6237557,45177208 +r1,16925:6368629,45177208:131072,2566022,0 +g1,16925:6567858,45177208 +g1,16925:6764466,45177208 +[1,16925:6764466,45177208:25818563,2566022,0 +(1,16906:6764466,43312700:25818563,701514,196608 +(1,16905:6764466,43312700:0,701514,196608 +r1,16925:8471973,43312700:1707507,898122,196608 +k1,16905:6764466,43312700:-1707507 +) +(1,16905:6764466,43312700:1707507,701514,196608 +) +k1,16905:8702142,43312700:230169 +k1,16905:10020071,43312700:327680 +k1,16905:13370409,43312700:230169 +(1,16905:13370409,43312700:0,452978,122846 +r1,16925:18300929,43312700:4930520,575824,122846 +k1,16905:13370409,43312700:-4930520 +) +(1,16905:13370409,43312700:4930520,452978,122846 +k1,16905:13370409,43312700:3277 +h1,16905:18297652,43312700:0,411205,112570 +) +k1,16905:18531098,43312700:230169 +k1,16905:19952712,43312700:230169 +(1,16905:19952712,43312700:0,452978,115847 +r1,16925:24531520,43312700:4578808,568825,115847 +k1,16905:19952712,43312700:-4578808 +) +(1,16905:19952712,43312700:4578808,452978,115847 +k1,16905:19952712,43312700:3277 +h1,16905:24528243,43312700:0,411205,112570 +) +k1,16905:24761689,43312700:230169 +k1,16905:26559479,43312700:230169 +k1,16905:29369800,43312700:230169 +k1,16905:32583029,43312700:0 +) +(1,16906:6764466,44177780:25818563,513147,134348 +k1,16905:9412557,44177780:133475 +k1,16905:10197460,44177780:133475 +k1,16905:13087379,44177780:133475 +k1,16905:14239940,44177780:133476 +k1,16905:17547979,44177780:133475 +k1,16905:18340746,44177780:133475 +k1,16905:19493306,44177780:133475 +k1,16905:21280254,44177780:133475 +k1,16905:23151744,44177780:133475 +k1,16905:26311017,44177780:133476 +k1,16905:28012113,44177780:133475 +k1,16905:30725740,44177780:133475 +k1,16905:32583029,44177780:0 +) +(1,16906:6764466,45042860:25818563,513147,134348 +k1,16905:7535684,45042860:143383 +k1,16905:9371208,45042860:143384 +k1,16905:11004224,45042860:143383 +k1,16905:13018660,45042860:143383 +k1,16905:14181128,45042860:143383 +k1,16905:17499076,45042860:143384 +k1,16905:19889689,45042860:143383 +k1,16905:21402119,45042860:143383 +k1,16905:22011464,45042860:143384 +k1,16905:23173932,45042860:143383 +k1,16905:24489754,45042860:143383 +k1,16905:26129324,45042860:143383 +k1,16905:28573677,45042860:143384 +k1,16905:30572384,45042860:143383 +k1,16905:32583029,45042860:0 +) +] +g1,16925:32583029,45177208 +) +] +(1,16925:32583029,45706769:0,0,0 +g1,16925:32583029,45706769 +) +) +] +(1,16925:6630773,47279633:25952256,0,0 +h1,16925:6630773,47279633:25952256,0,0 +) +] +(1,16925:4262630,4025873:0,0,0 +[1,16925:-473656,4025873:0,0,0 +(1,16925:-473656,-710413:0,0,0 +(1,16925:-473656,-710413:0,0,0 +g1,16925:-473656,-710413 +) +g1,16925:-473656,-710413 ) ] ) ] !34177 -}273 -Input:2825:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2826:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2827:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2828:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}274 Input:2829:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2830:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2831:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2832:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2833:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2834:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2835:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2836:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2837:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{274 -[1,16959:4262630,47279633:28320399,43253760,0 -(1,16959:4262630,4025873:0,0,0 -[1,16959:-473656,4025873:0,0,0 -(1,16959:-473656,-710413:0,0,0 -(1,16959:-473656,-644877:0,0,0 -k1,16959:-473656,-644877:-65536 +{275 +[1,16957:4262630,47279633:28320399,43253760,0 +(1,16957:4262630,4025873:0,0,0 +[1,16957:-473656,4025873:0,0,0 +(1,16957:-473656,-710413:0,0,0 +(1,16957:-473656,-644877:0,0,0 +k1,16957:-473656,-644877:-65536 ) -(1,16959:-473656,4736287:0,0,0 -k1,16959:-473656,4736287:5209943 +(1,16957:-473656,4736287:0,0,0 +k1,16957:-473656,4736287:5209943 ) -g1,16959:-473656,-710413 +g1,16957:-473656,-710413 ) ] ) -[1,16959:6630773,47279633:25952256,43253760,0 -[1,16959:6630773,4812305:25952256,786432,0 -(1,16959:6630773,4812305:25952256,505283,126483 -(1,16959:6630773,4812305:25952256,505283,126483 -g1,16959:3078558,4812305 -[1,16959:3078558,4812305:0,0,0 -(1,16959:3078558,2439708:0,1703936,0 -k1,16959:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,16959:2537886,2439708:1179648,16384,0 +[1,16957:6630773,47279633:25952256,43253760,0 +[1,16957:6630773,4812305:25952256,786432,0 +(1,16957:6630773,4812305:25952256,505283,126483 +(1,16957:6630773,4812305:25952256,505283,126483 +g1,16957:3078558,4812305 +[1,16957:3078558,4812305:0,0,0 +(1,16957:3078558,2439708:0,1703936,0 +k1,16957:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,16957:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,16959:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,16957:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,16959:3078558,4812305:0,0,0 -(1,16959:3078558,2439708:0,1703936,0 -g1,16959:29030814,2439708 -g1,16959:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,16959:36151628,1915420:16384,1179648,0 +[1,16957:3078558,4812305:0,0,0 +(1,16957:3078558,2439708:0,1703936,0 +g1,16957:29030814,2439708 +g1,16957:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,16957:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,16959:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,16957:37855564,2439708:1179648,16384,0 ) ) -k1,16959:3078556,2439708:-34777008 +k1,16957:3078556,2439708:-34777008 ) ] -[1,16959:3078558,4812305:0,0,0 -(1,16959:3078558,49800853:0,16384,2228224 -k1,16959:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,16959:2537886,49800853:1179648,16384,0 +[1,16957:3078558,4812305:0,0,0 +(1,16957:3078558,49800853:0,16384,2228224 +k1,16957:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,16957:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,16959:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,16957:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,16959:3078558,4812305:0,0,0 -(1,16959:3078558,49800853:0,16384,2228224 -g1,16959:29030814,49800853 -g1,16959:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,16959:36151628,51504789:16384,1179648,0 +[1,16957:3078558,4812305:0,0,0 +(1,16957:3078558,49800853:0,16384,2228224 +g1,16957:29030814,49800853 +g1,16957:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,16957:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,16959:37855564,49800853:1179648,16384,0 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,16957:37855564,49800853:1179648,16384,0 ) -) -k1,16959:3078556,49800853:-34777008 -) -] -g1,16959:6630773,4812305 -g1,16959:6630773,4812305 -g1,16959:8364200,4812305 -g1,16959:12733485,4812305 -g1,16959:14295863,4812305 -g1,16959:16502459,4812305 -g1,16959:16701688,4812305 -k1,16959:31387652,4812305:14685964 -) -) -] -[1,16959:6630773,45706769:25952256,40108032,0 -(1,16959:6630773,45706769:25952256,40108032,0 -(1,16959:6630773,45706769:0,0,0 -g1,16959:6630773,45706769 -) -[1,16959:6630773,45706769:25952256,40108032,0 -v1,16927:6630773,6254097:0,393216,0 -(1,16927:6630773,18219617:25952256,12358736,0 -g1,16927:6630773,18219617 -g1,16927:6237557,18219617 -r1,16959:6368629,18219617:131072,12358736,0 -g1,16927:6567858,18219617 -g1,16927:6764466,18219617 -[1,16927:6764466,18219617:25818563,12358736,0 -(1,16908:6764466,6374028:25818563,513147,126483 -k1,16907:9698461,6374028:197212 -k1,16907:10578557,6374028:197211 -k1,16907:12503298,6374028:197212 -k1,16907:14711154,6374028:197211 -k1,16907:16606404,6374028:197212 -(1,16907:16606404,6374028:0,414482,115847 -r1,16959:19778364,6374028:3171960,530329,115847 -k1,16907:16606404,6374028:-3171960 -) -(1,16907:16606404,6374028:3171960,414482,115847 -k1,16907:16606404,6374028:3277 -h1,16907:19775087,6374028:0,411205,112570 -) -k1,16907:19975576,6374028:197212 -k1,16907:20704284,6374028:197211 -k1,16907:24329684,6374028:197212 -k1,16907:25178324,6374028:197212 -k1,16907:26394620,6374028:197211 -k1,16907:28660148,6374028:197212 -k1,16907:29516651,6374028:197211 -k1,16907:31410590,6374028:197212 -k1,16907:32583029,6374028:0 -) -(1,16908:6764466,7239108:25818563,513147,134348 -k1,16907:10247645,7239108:283711 -k1,16907:12140921,7239108:283712 -k1,16907:14567659,7239108:283711 -k1,16907:16293818,7239108:283712 -k1,16907:19157681,7239108:283711 -k1,16907:22654622,7239108:283712 -k1,16907:23469830,7239108:283711 -k1,16907:26664651,7239108:283712 -k1,16907:28382290,7239108:283711 -k1,16907:29784046,7239108:283712 -k1,16907:31086842,7239108:283711 -k1,16907:32583029,7239108:0 -) -(1,16908:6764466,8104188:25818563,505283,7863 -k1,16908:32583030,8104188:23897704 -g1,16908:32583030,8104188 -) -v1,16910:6764466,8789043:0,393216,0 -(1,16923:6764466,15293421:25818563,6897594,196608 -g1,16923:6764466,15293421 -g1,16923:6764466,15293421 -g1,16923:6567858,15293421 -(1,16923:6567858,15293421:0,6897594,196608 -r1,16959:32779637,15293421:26211779,7094202,196608 -k1,16923:6567857,15293421:-26211780 -) -(1,16923:6567858,15293421:26211779,6897594,196608 -[1,16923:6764466,15293421:25818563,6700986,0 -(1,16912:6764466,9016874:25818563,424439,112852 -(1,16911:6764466,9016874:0,0,0 -g1,16911:6764466,9016874 -g1,16911:6764466,9016874 -g1,16911:6436786,9016874 -(1,16911:6436786,9016874:0,0,0 -) -g1,16911:6764466,9016874 -) -g1,16912:12739637,9016874 -k1,16912:12739637,9016874:0 -h1,16912:13403545,9016874:0,0,0 -k1,16912:32583029,9016874:19179484 -g1,16912:32583029,9016874 -) -(1,16913:6764466,9701729:25818563,424439,112852 -h1,16913:6764466,9701729:0,0,0 -g1,16913:7096420,9701729 -g1,16913:7428374,9701729 -k1,16913:7428374,9701729:0 -h1,16913:14731361,9701729:0,0,0 -k1,16913:32583029,9701729:17851668 -g1,16913:32583029,9701729 -) -(1,16914:6764466,10386584:25818563,424439,86428 -h1,16914:6764466,10386584:0,0,0 -g1,16914:7096420,10386584 -g1,16914:7428374,10386584 -g1,16914:7760328,10386584 -g1,16914:8092282,10386584 -k1,16914:8092282,10386584:0 -h1,16914:9752052,10386584:0,0,0 -k1,16914:32583028,10386584:22830976 -g1,16914:32583028,10386584 -) -(1,16915:6764466,11071439:25818563,424439,106246 -h1,16915:6764466,11071439:0,0,0 -g1,16915:7096420,11071439 -g1,16915:7428374,11071439 -g1,16915:7760328,11071439 -g1,16915:8092282,11071439 -g1,16915:9752052,11071439 -g1,16915:10415960,11071439 -k1,16915:10415960,11071439:0 -h1,16915:13403546,11071439:0,0,0 -k1,16915:32583030,11071439:19179484 -g1,16915:32583030,11071439 -) -(1,16916:6764466,11756294:25818563,424439,106246 -h1,16916:6764466,11756294:0,0,0 -g1,16916:7096420,11756294 -g1,16916:7428374,11756294 -g1,16916:7760328,11756294 -g1,16916:8092282,11756294 -g1,16916:11079867,11756294 -g1,16916:11743775,11756294 -k1,16916:11743775,11756294:0 -h1,16916:14067453,11756294:0,0,0 -k1,16916:32583029,11756294:18515576 -g1,16916:32583029,11756294 -) -(1,16917:6764466,12441149:25818563,424439,79822 -h1,16917:6764466,12441149:0,0,0 -g1,16917:7096420,12441149 -g1,16917:7428374,12441149 -g1,16917:7760328,12441149 -g1,16917:8092282,12441149 -g1,16917:11411821,12441149 -g1,16917:12075729,12441149 -h1,16917:16059176,12441149:0,0,0 -k1,16917:32583029,12441149:16523853 -g1,16917:32583029,12441149 -) -(1,16918:6764466,13126004:25818563,424439,112852 -h1,16918:6764466,13126004:0,0,0 -g1,16918:14731360,13126004 -h1,16918:20706531,13126004:0,0,0 -k1,16918:32583029,13126004:11876498 -g1,16918:32583029,13126004 -) -(1,16919:6764466,13810859:25818563,424439,112852 -h1,16919:6764466,13810859:0,0,0 -g1,16919:14731360,13810859 -h1,16919:20706531,13810859:0,0,0 -k1,16919:32583029,13810859:11876498 -g1,16919:32583029,13810859 -) -(1,16920:6764466,14495714:25818563,424439,112852 -h1,16920:6764466,14495714:0,0,0 -k1,16920:6764466,14495714:0 -h1,16920:13071591,14495714:0,0,0 -k1,16920:32583029,14495714:19511438 -g1,16920:32583029,14495714 -) -(1,16921:6764466,15180569:25818563,424439,112852 -h1,16921:6764466,15180569:0,0,0 -k1,16921:6764466,15180569:0 -h1,16921:14731360,15180569:0,0,0 -k1,16921:32583028,15180569:17851668 -g1,16921:32583028,15180569 -) -] -) -g1,16923:32583029,15293421 -g1,16923:6764466,15293421 -g1,16923:6764466,15293421 -g1,16923:32583029,15293421 -g1,16923:32583029,15293421 -) -h1,16923:6764466,15490029:0,0,0 -(1,16927:6764466,16355109:25818563,513147,126483 -h1,16926:6764466,16355109:983040,0,0 -k1,16926:9533362,16355109:152043 -k1,16926:10216903,16355109:152044 -k1,16926:11388031,16355109:152043 -k1,16926:14726434,16355109:152043 -k1,16926:17513681,16355109:152044 -k1,16926:18684809,16355109:152043 -k1,16926:20847497,16355109:152043 -k1,16926:23778268,16355109:152044 -k1,16926:24691839,16355109:152043 -k1,16926:25862967,16355109:152043 -k1,16926:27187450,16355109:152044 -k1,16926:30692315,16355109:152043 -k1,16926:32583029,16355109:0 -) -(1,16927:6764466,17220189:25818563,513147,134348 -k1,16926:10061386,17220189:248841 -k1,16926:11877847,17220189:248840 -k1,16926:14706840,17220189:248841 -k1,16926:16760541,17220189:248840 -k1,16926:17660810,17220189:248841 -k1,16926:20489802,17220189:248840 -k1,16926:23951872,17220189:248841 -k1,16926:25980014,17220189:248840 -k1,16926:27725042,17220189:248841 -k1,16926:31923737,17220189:248840 -k1,16926:32583029,17220189:0 -) -(1,16927:6764466,18085269:25818563,485622,134348 -k1,16927:32583029,18085269:22903522 -g1,16927:32583029,18085269 -) -] -g1,16927:32583029,18219617 -) -h1,16927:6630773,18219617:0,0,0 -(1,16930:6630773,21050777:25952256,32768,229376 -(1,16930:6630773,21050777:0,32768,229376 -(1,16930:6630773,21050777:5505024,32768,229376 -r1,16959:12135797,21050777:5505024,262144,229376 -) -k1,16930:6630773,21050777:-5505024 -) -(1,16930:6630773,21050777:25952256,32768,0 -r1,16959:32583029,21050777:25952256,32768,0 -) -) -(1,16930:6630773,22682629:25952256,606339,151780 -(1,16930:6630773,22682629:1974731,582746,14155 -g1,16930:6630773,22682629 -g1,16930:8605504,22682629 -) -g1,16930:10655733,22682629 -g1,16930:16100202,22682629 -g1,16930:18113468,22682629 -k1,16930:32583029,22682629:11938824 -g1,16930:32583029,22682629 -) -(1,16934:6630773,23940925:25952256,513147,134348 -k1,16933:8054589,23940925:248756 -k1,16933:9609478,23940925:248756 -k1,16933:13097023,23940925:248756 -k1,16933:13701638,23940925:248755 -k1,16933:15331238,23940925:248756 -k1,16933:16239286,23940925:248756 -k1,16933:17507127,23940925:248756 -k1,16933:19728516,23940925:248756 -k1,16933:23003069,23940925:248756 -k1,16933:24443270,23940925:248756 -k1,16933:27476650,23940925:248755 -k1,16933:29080691,23940925:248756 -k1,16933:29860944,23940925:248756 -k1,16933:31128785,23940925:248756 -k1,16934:32583029,23940925:0 -) -(1,16934:6630773,24806005:25952256,513147,126483 -k1,16933:9875877,24806005:244866 -k1,16933:10780035,24806005:244866 -k1,16933:12043987,24806005:244867 -k1,16933:13223396,24806005:244866 -k1,16933:14127554,24806005:244866 -k1,16933:17777015,24806005:244866 -k1,16933:21316376,24806005:244866 -k1,16933:22752687,24806005:244866 -k1,16933:24016639,24806005:244867 -k1,16933:27446555,24806005:244866 -k1,16933:28882866,24806005:244866 -k1,16933:32583029,24806005:0 -) -(1,16934:6630773,25671085:25952256,513147,134348 -k1,16933:9085705,25671085:295521 -k1,16933:10400310,25671085:295520 -k1,16933:13458174,25671085:295521 -k1,16933:16953163,25671085:295521 -k1,16933:17736175,25671085:295424 -k1,16933:20273026,25671085:295520 -k1,16933:23807336,25671085:295521 -k1,16933:24634353,25671085:295520 -k1,16933:26214380,25671085:295521 -k1,16933:28672589,25671085:295521 -k1,16933:29734225,25671085:295520 -k1,16933:31048831,25671085:295521 -k1,16934:32583029,25671085:0 -) -(1,16934:6630773,26536165:25952256,513147,134348 -k1,16933:8427682,26536165:199141 -k1,16933:9618383,26536165:199141 -k1,16933:12199103,26536165:199142 -k1,16933:13464515,26536165:199141 -k1,16933:15039257,26536165:199141 -k1,16933:16186049,26536165:199141 -k1,16933:18675018,26536165:199141 -k1,16933:19533452,26536165:199142 -k1,16933:21287762,26536165:199141 -(1,16933:21287762,26536165:0,452978,115847 -r1,16959:23404587,26536165:2116825,568825,115847 -k1,16933:21287762,26536165:-2116825 -) -(1,16933:21287762,26536165:2116825,452978,115847 -k1,16933:21287762,26536165:3277 -h1,16933:23401310,26536165:0,411205,112570 -) -k1,16933:23777398,26536165:199141 -k1,16933:25048708,26536165:199141 -k1,16933:26533665,26536165:199141 -k1,16933:27680458,26536165:199142 -k1,16933:30169427,26536165:199141 -k1,16933:31027860,26536165:199141 -k1,16934:32583029,26536165:0 -) -(1,16934:6630773,27401245:25952256,513147,134348 -(1,16933:6630773,27401245:0,452978,115847 -r1,16959:10154445,27401245:3523672,568825,115847 -k1,16933:6630773,27401245:-3523672 -) -(1,16933:6630773,27401245:3523672,452978,115847 -k1,16933:6630773,27401245:3277 -h1,16933:10151168,27401245:0,411205,112570 -) -k1,16933:10404162,27401245:249717 -k1,16933:13441125,27401245:249717 -k1,16933:16115674,27401245:249717 -k1,16933:17556836,27401245:249717 -k1,16933:18754204,27401245:249717 -k1,16933:20233982,27401245:249667 -k1,16933:23637291,27401245:249717 -k1,16933:26674254,27401245:249717 -k1,16933:29690245,27401245:249717 -k1,16933:31333913,27401245:249717 -k1,16934:32583029,27401245:0 -) -(1,16934:6630773,28266325:25952256,505283,134348 -k1,16933:9015880,28266325:247323 -k1,16933:11347248,28266325:247323 -k1,16933:12826647,28266325:247322 -k1,16933:14359786,28266325:247323 -k1,16933:16885796,28266325:247323 -h1,16933:18653302,28266325:0,0,0 -k1,16933:18900625,28266325:247323 -k1,16933:19957317,28266325:247322 -k1,16933:21702793,28266325:247323 -h1,16933:22898170,28266325:0,0,0 -k1,16933:23526257,28266325:247323 -k1,16933:24591469,28266325:247323 -k1,16933:27968136,28266325:247323 -k1,16933:30244453,28266325:247322 -k1,16933:32227169,28266325:247323 -k1,16933:32583029,28266325:0 -) -(1,16934:6630773,29131405:25952256,513147,134348 -k1,16933:8338723,29131405:211763 -k1,16933:9984414,29131405:211763 -k1,16933:11480683,29131405:211763 -k1,16933:12223943,29131405:211763 -k1,16933:13501977,29131405:211763 -k1,16933:14679085,29131405:211763 -k1,16933:16341815,29131405:211763 -k1,16933:18449535,29131405:211763 -k1,16933:19762303,29131405:211763 -k1,16933:20329926,29131405:211763 -k1,16933:21856997,29131405:211763 -k1,16933:23353266,29131405:211763 -k1,16933:25425596,29131405:211763 -k1,16933:26288787,29131405:211763 -k1,16933:27248316,29131405:211763 -k1,16933:30293856,29131405:211763 -k1,16933:32583029,29131405:0 -) -(1,16934:6630773,29996485:25952256,513147,134348 -g1,16933:7849087,29996485 -g1,16933:9394426,29996485 -g1,16933:12385489,29996485 -g1,16933:14152339,29996485 -g1,16933:15139966,29996485 -k1,16934:32583029,29996485:16298149 -g1,16934:32583029,29996485 -) -(1,16935:6630773,32113303:25952256,555811,139132 -(1,16935:6630773,32113303:2450326,534184,12975 -g1,16935:6630773,32113303 -g1,16935:9081099,32113303 -) -g1,16935:12764157,32113303 -k1,16935:32583029,32113303:14629862 -g1,16935:32583029,32113303 -) -(1,16939:6630773,33371599:25952256,513147,134348 -k1,16938:10085503,33371599:305725 -k1,16938:11675735,33371599:305726 -k1,16938:13000545,33371599:305725 -k1,16938:14695633,33371599:305725 -k1,16938:15532856,33371599:305726 -k1,16938:17876751,33371599:305725 -k1,16938:18798514,33371599:305725 -k1,16938:20492948,33371599:305726 -k1,16938:22539965,33371599:305725 -k1,16938:25662427,33371599:305725 -k1,16938:29372748,33371599:305726 -k1,16938:30670033,33371599:305725 -k1,16939:32583029,33371599:0 -) -(1,16939:6630773,34236679:25952256,513147,134348 -k1,16938:8422673,34236679:194132 -k1,16938:11971593,34236679:194132 -k1,16938:14176371,34236679:194133 -k1,16938:15938124,34236679:194132 -k1,16938:17151341,34236679:194132 -k1,16938:18998946,34236679:194132 -k1,16938:22934529,34236679:194133 -k1,16938:26577165,34236679:194132 -k1,16938:30573040,34236679:194132 -k1,16938:32583029,34236679:0 -) -(1,16939:6630773,35101759:25952256,513147,134348 -k1,16938:7173993,35101759:187360 -k1,16938:9234372,35101759:187360 -k1,16938:10625628,35101759:187360 -k1,16938:11472280,35101759:187360 -k1,16938:12015500,35101759:187360 -k1,16938:13592223,35101759:187360 -k1,16938:15655879,35101759:187360 -k1,16938:16526124,35101759:187360 -k1,16938:18524899,35101759:187360 -k1,16938:19944337,35101759:187361 -k1,16938:22410384,35101759:187360 -h1,16938:23953102,35101759:0,0,0 -k1,16938:24140462,35101759:187360 -k1,16938:25137192,35101759:187360 -k1,16938:26822705,35101759:187360 -h1,16938:28018082,35101759:0,0,0 -k1,16938:28205442,35101759:187360 -k1,16938:29340453,35101759:187360 -k1,16938:30546898,35101759:187360 -k1,16938:32168186,35101759:187360 -k1,16939:32583029,35101759:0 -) -(1,16939:6630773,35966839:25952256,513147,134348 -k1,16938:10151057,35966839:155010 -k1,16938:12097822,35966839:155011 -k1,16938:15278629,35966839:155010 -(1,16938:15278629,35966839:0,452978,115847 -r1,16959:18098878,35966839:2820249,568825,115847 -k1,16938:15278629,35966839:-2820249 -) -(1,16938:15278629,35966839:2820249,452978,115847 -k1,16938:15278629,35966839:3277 -h1,16938:18095601,35966839:0,411205,112570 -) -k1,16938:18253889,35966839:155011 -k1,16938:19600344,35966839:155010 -(1,16938:19600344,35966839:0,452978,115847 -r1,16959:23475728,35966839:3875384,568825,115847 -k1,16938:19600344,35966839:-3875384 -) -(1,16938:19600344,35966839:3875384,452978,115847 -k1,16938:19600344,35966839:3277 -h1,16938:23472451,35966839:0,411205,112570 -) -k1,16938:23630739,35966839:155011 -k1,16938:24654101,35966839:155010 -k1,16938:25913394,35966839:155011 -k1,16938:28092156,35966839:155010 -k1,16938:30630056,35966839:155011 -k1,16939:32583029,35966839:0 -) -(1,16939:6630773,36831919:25952256,513147,134348 -k1,16938:8235988,36831919:268281 -k1,16938:9265796,36831919:268280 -k1,16938:12888865,36831919:268281 -k1,16938:15919488,36831919:268280 -k1,16938:19203080,36831919:268281 -k1,16938:20154245,36831919:268280 -k1,16938:23264167,36831919:268281 -k1,16938:24723892,36831919:268280 -k1,16938:28253900,36831919:268281 -k1,16938:29205065,36831919:268280 -k1,16938:32227169,36831919:268281 -k1,16938:32583029,36831919:0 -) -(1,16939:6630773,37696999:25952256,513147,134348 -k1,16938:11187819,37696999:233636 -k1,16938:16432338,37696999:233636 -k1,16938:17619522,37696999:233635 -k1,16938:19050501,37696999:233636 -k1,16938:20567332,37696999:233636 -k1,16938:23642609,37696999:233636 -k1,16938:27003622,37696999:233635 -k1,16938:30092006,37696999:233636 -k1,16938:32583029,37696999:0 -) -(1,16939:6630773,38562079:25952256,505283,134348 -k1,16938:8320324,38562079:202539 -k1,16938:10258255,38562079:202538 -(1,16938:10258255,38562079:0,452978,115847 -r1,16959:13078504,38562079:2820249,568825,115847 -k1,16938:10258255,38562079:-2820249 -) -(1,16938:10258255,38562079:2820249,452978,115847 -k1,16938:10258255,38562079:3277 -h1,16938:13075227,38562079:0,411205,112570 -) -k1,16938:13281043,38562079:202539 -k1,16938:14166466,38562079:202538 -k1,16938:15237357,38562079:202539 -k1,16938:18376563,38562079:202538 -k1,16938:18934962,38562079:202539 -k1,16938:20420695,38562079:202538 -k1,16938:22434649,38562079:202539 -k1,16938:25999184,38562079:202538 -k1,16938:27577324,38562079:202539 -k1,16938:28798947,38562079:202538 -k1,16938:31714677,38562079:202539 -k1,16938:32583029,38562079:0 -) -(1,16939:6630773,39427159:25952256,513147,134348 -g1,16938:9727349,39427159 -g1,16938:12185604,39427159 -g1,16938:14120226,39427159 -(1,16938:14120226,39427159:0,452978,115847 -r1,16959:17995610,39427159:3875384,568825,115847 -k1,16938:14120226,39427159:-3875384 -) -(1,16938:14120226,39427159:3875384,452978,115847 -k1,16938:14120226,39427159:3277 -h1,16938:17992333,39427159:0,411205,112570 -) -k1,16939:32583029,39427159:14534991 -g1,16939:32583029,39427159 -) -v1,16941:6630773,40292239:0,393216,0 -(1,16959:6630773,43203640:25952256,3304617,0 -g1,16959:6630773,43203640 -g1,16959:6237557,43203640 -r1,16959:6368629,43203640:131072,3304617,0 -g1,16959:6567858,43203640 -g1,16959:6764466,43203640 -[1,16959:6764466,43203640:25818563,3304617,0 -(1,16942:6764466,40600537:25818563,701514,196608 -(1,16941:6764466,40600537:0,701514,196608 -r1,16959:7761522,40600537:997056,898122,196608 -k1,16941:6764466,40600537:-997056 -) -(1,16941:6764466,40600537:997056,701514,196608 -) -k1,16941:7992839,40600537:231317 -k1,16941:8320519,40600537:327680 -k1,16941:11396754,40600537:231317 -k1,16941:13195692,40600537:231317 -k1,16941:15147984,40600537:231317 -k1,16941:15794112,40600537:231285 -k1,16941:18283144,40600537:231317 -k1,16941:19908412,40600537:231317 -(1,16941:19908412,40600537:0,452978,115847 -r1,16959:22728661,40600537:2820249,568825,115847 -k1,16941:19908412,40600537:-2820249 -) -(1,16941:19908412,40600537:2820249,452978,115847 -k1,16941:19908412,40600537:3277 -h1,16941:22725384,40600537:0,411205,112570 -) -k1,16941:23133648,40600537:231317 -(1,16941:23133648,40600537:0,452978,115847 -r1,16959:25953897,40600537:2820249,568825,115847 -k1,16941:23133648,40600537:-2820249 -) -(1,16941:23133648,40600537:2820249,452978,115847 -k1,16941:23133648,40600537:3277 -h1,16941:25950620,40600537:0,411205,112570 -) -k1,16941:26185214,40600537:231317 -k1,16941:27607976,40600537:231317 -(1,16941:27607976,40600537:0,452978,115847 -r1,16959:31483360,40600537:3875384,568825,115847 -k1,16941:27607976,40600537:-3875384 -) -(1,16941:27607976,40600537:3875384,452978,115847 -k1,16941:27607976,40600537:3277 -h1,16941:31480083,40600537:0,411205,112570 -) -k1,16941:31714677,40600537:231317 -k1,16941:32583029,40600537:0 -) -(1,16942:6764466,41465617:25818563,505283,134348 -k1,16941:8189755,41465617:321007 -k1,16941:9603247,41465617:321007 -k1,16941:11934899,41465617:321007 -k1,16941:14461193,41465617:321007 -k1,16941:15468362,41465617:321007 -k1,16941:19365669,41465617:321007 -k1,16941:20302714,41465617:321007 -k1,16941:21642806,41465617:321007 -k1,16941:25480475,41465617:321007 -k1,16941:29232292,41465617:321007 -k1,16941:30572384,41465617:321007 -k1,16941:32583029,41465617:0 -) -(1,16942:6764466,42330697:25818563,505283,134348 -k1,16941:9251285,42330697:281532 -k1,16941:10218978,42330697:281531 -k1,16941:11954099,42330697:281532 -k1,16941:15811930,42330697:281531 -k1,16941:16721297,42330697:281532 -k1,16941:18754605,42330697:281531 -k1,16941:20907190,42330697:281532 -k1,16941:22391962,42330697:281531 -k1,16941:24685449,42330697:281532 -k1,16941:26617177,42330697:281531 -k1,16941:29254073,42330697:281532 -k1,16941:30727049,42330697:281531 -k1,16941:32583029,42330697:0 -) -(1,16942:6764466,43195777:25818563,505283,7863 -g1,16941:7615123,43195777 -g1,16941:11479125,43195777 -k1,16942:32583028,43195777:19555288 -g1,16942:32583028,43195777 -) -] -g1,16959:32583029,43203640 -) -] -(1,16959:32583029,45706769:0,0,0 -g1,16959:32583029,45706769 -) -) -] -(1,16959:6630773,47279633:25952256,0,0 -h1,16959:6630773,47279633:25952256,0,0 -) -] -(1,16959:4262630,4025873:0,0,0 -[1,16959:-473656,4025873:0,0,0 -(1,16959:-473656,-710413:0,0,0 -(1,16959:-473656,-710413:0,0,0 -g1,16959:-473656,-710413 -) -g1,16959:-473656,-710413 +) +k1,16957:3078556,49800853:-34777008 +) +] +g1,16957:6630773,4812305 +g1,16957:6630773,4812305 +g1,16957:8364200,4812305 +g1,16957:12733485,4812305 +g1,16957:14295863,4812305 +g1,16957:16502459,4812305 +g1,16957:16701688,4812305 +k1,16957:31387652,4812305:14685964 +) +) +] +[1,16957:6630773,45706769:25952256,40108032,0 +(1,16957:6630773,45706769:25952256,40108032,0 +(1,16957:6630773,45706769:0,0,0 +g1,16957:6630773,45706769 +) +[1,16957:6630773,45706769:25952256,40108032,0 +v1,16925:6630773,6254097:0,393216,0 +(1,16925:6630773,18219617:25952256,12358736,0 +g1,16925:6630773,18219617 +g1,16925:6237557,18219617 +r1,16957:6368629,18219617:131072,12358736,0 +g1,16925:6567858,18219617 +g1,16925:6764466,18219617 +[1,16925:6764466,18219617:25818563,12358736,0 +(1,16906:6764466,6374028:25818563,513147,126483 +k1,16905:9698461,6374028:197212 +k1,16905:10578557,6374028:197211 +k1,16905:12503298,6374028:197212 +k1,16905:14711154,6374028:197211 +k1,16905:16606404,6374028:197212 +(1,16905:16606404,6374028:0,414482,115847 +r1,16957:19778364,6374028:3171960,530329,115847 +k1,16905:16606404,6374028:-3171960 +) +(1,16905:16606404,6374028:3171960,414482,115847 +k1,16905:16606404,6374028:3277 +h1,16905:19775087,6374028:0,411205,112570 +) +k1,16905:19975576,6374028:197212 +k1,16905:20704284,6374028:197211 +k1,16905:24329684,6374028:197212 +k1,16905:25178324,6374028:197212 +k1,16905:26394620,6374028:197211 +k1,16905:28660148,6374028:197212 +k1,16905:29516651,6374028:197211 +k1,16905:31410590,6374028:197212 +k1,16905:32583029,6374028:0 +) +(1,16906:6764466,7239108:25818563,513147,134348 +k1,16905:10247645,7239108:283711 +k1,16905:12140921,7239108:283712 +k1,16905:14567659,7239108:283711 +k1,16905:16293818,7239108:283712 +k1,16905:19157681,7239108:283711 +k1,16905:22654622,7239108:283712 +k1,16905:23469830,7239108:283711 +k1,16905:26664651,7239108:283712 +k1,16905:28382290,7239108:283711 +k1,16905:29784046,7239108:283712 +k1,16905:31086842,7239108:283711 +k1,16905:32583029,7239108:0 +) +(1,16906:6764466,8104188:25818563,505283,7863 +k1,16906:32583030,8104188:23897704 +g1,16906:32583030,8104188 +) +v1,16908:6764466,8789043:0,393216,0 +(1,16921:6764466,15293421:25818563,6897594,196608 +g1,16921:6764466,15293421 +g1,16921:6764466,15293421 +g1,16921:6567858,15293421 +(1,16921:6567858,15293421:0,6897594,196608 +r1,16957:32779637,15293421:26211779,7094202,196608 +k1,16921:6567857,15293421:-26211780 +) +(1,16921:6567858,15293421:26211779,6897594,196608 +[1,16921:6764466,15293421:25818563,6700986,0 +(1,16910:6764466,9016874:25818563,424439,112852 +(1,16909:6764466,9016874:0,0,0 +g1,16909:6764466,9016874 +g1,16909:6764466,9016874 +g1,16909:6436786,9016874 +(1,16909:6436786,9016874:0,0,0 +) +g1,16909:6764466,9016874 +) +g1,16910:12739637,9016874 +k1,16910:12739637,9016874:0 +h1,16910:13403545,9016874:0,0,0 +k1,16910:32583029,9016874:19179484 +g1,16910:32583029,9016874 +) +(1,16911:6764466,9701729:25818563,424439,112852 +h1,16911:6764466,9701729:0,0,0 +g1,16911:7096420,9701729 +g1,16911:7428374,9701729 +k1,16911:7428374,9701729:0 +h1,16911:14731361,9701729:0,0,0 +k1,16911:32583029,9701729:17851668 +g1,16911:32583029,9701729 +) +(1,16912:6764466,10386584:25818563,424439,86428 +h1,16912:6764466,10386584:0,0,0 +g1,16912:7096420,10386584 +g1,16912:7428374,10386584 +g1,16912:7760328,10386584 +g1,16912:8092282,10386584 +k1,16912:8092282,10386584:0 +h1,16912:9752052,10386584:0,0,0 +k1,16912:32583028,10386584:22830976 +g1,16912:32583028,10386584 +) +(1,16913:6764466,11071439:25818563,424439,106246 +h1,16913:6764466,11071439:0,0,0 +g1,16913:7096420,11071439 +g1,16913:7428374,11071439 +g1,16913:7760328,11071439 +g1,16913:8092282,11071439 +g1,16913:9752052,11071439 +g1,16913:10415960,11071439 +k1,16913:10415960,11071439:0 +h1,16913:13403546,11071439:0,0,0 +k1,16913:32583030,11071439:19179484 +g1,16913:32583030,11071439 +) +(1,16914:6764466,11756294:25818563,424439,106246 +h1,16914:6764466,11756294:0,0,0 +g1,16914:7096420,11756294 +g1,16914:7428374,11756294 +g1,16914:7760328,11756294 +g1,16914:8092282,11756294 +g1,16914:11079867,11756294 +g1,16914:11743775,11756294 +k1,16914:11743775,11756294:0 +h1,16914:14067453,11756294:0,0,0 +k1,16914:32583029,11756294:18515576 +g1,16914:32583029,11756294 +) +(1,16915:6764466,12441149:25818563,424439,79822 +h1,16915:6764466,12441149:0,0,0 +g1,16915:7096420,12441149 +g1,16915:7428374,12441149 +g1,16915:7760328,12441149 +g1,16915:8092282,12441149 +g1,16915:11411821,12441149 +g1,16915:12075729,12441149 +h1,16915:16059176,12441149:0,0,0 +k1,16915:32583029,12441149:16523853 +g1,16915:32583029,12441149 +) +(1,16916:6764466,13126004:25818563,424439,112852 +h1,16916:6764466,13126004:0,0,0 +g1,16916:14731360,13126004 +h1,16916:20706531,13126004:0,0,0 +k1,16916:32583029,13126004:11876498 +g1,16916:32583029,13126004 +) +(1,16917:6764466,13810859:25818563,424439,112852 +h1,16917:6764466,13810859:0,0,0 +g1,16917:14731360,13810859 +h1,16917:20706531,13810859:0,0,0 +k1,16917:32583029,13810859:11876498 +g1,16917:32583029,13810859 +) +(1,16918:6764466,14495714:25818563,424439,112852 +h1,16918:6764466,14495714:0,0,0 +k1,16918:6764466,14495714:0 +h1,16918:13071591,14495714:0,0,0 +k1,16918:32583029,14495714:19511438 +g1,16918:32583029,14495714 +) +(1,16919:6764466,15180569:25818563,424439,112852 +h1,16919:6764466,15180569:0,0,0 +k1,16919:6764466,15180569:0 +h1,16919:14731360,15180569:0,0,0 +k1,16919:32583028,15180569:17851668 +g1,16919:32583028,15180569 +) +] +) +g1,16921:32583029,15293421 +g1,16921:6764466,15293421 +g1,16921:6764466,15293421 +g1,16921:32583029,15293421 +g1,16921:32583029,15293421 +) +h1,16921:6764466,15490029:0,0,0 +(1,16925:6764466,16355109:25818563,513147,126483 +h1,16924:6764466,16355109:983040,0,0 +k1,16924:9533362,16355109:152043 +k1,16924:10216903,16355109:152044 +k1,16924:11388031,16355109:152043 +k1,16924:14726434,16355109:152043 +k1,16924:17513681,16355109:152044 +k1,16924:18684809,16355109:152043 +k1,16924:20847497,16355109:152043 +k1,16924:23778268,16355109:152044 +k1,16924:24691839,16355109:152043 +k1,16924:25862967,16355109:152043 +k1,16924:27187450,16355109:152044 +k1,16924:30692315,16355109:152043 +k1,16924:32583029,16355109:0 +) +(1,16925:6764466,17220189:25818563,513147,134348 +k1,16924:10061386,17220189:248841 +k1,16924:11877847,17220189:248840 +k1,16924:14706840,17220189:248841 +k1,16924:16760541,17220189:248840 +k1,16924:17660810,17220189:248841 +k1,16924:20489802,17220189:248840 +k1,16924:23951872,17220189:248841 +k1,16924:25980014,17220189:248840 +k1,16924:27725042,17220189:248841 +k1,16924:31923737,17220189:248840 +k1,16924:32583029,17220189:0 +) +(1,16925:6764466,18085269:25818563,485622,134348 +k1,16925:32583029,18085269:22903522 +g1,16925:32583029,18085269 +) +] +g1,16925:32583029,18219617 +) +h1,16925:6630773,18219617:0,0,0 +(1,16928:6630773,21050777:25952256,32768,229376 +(1,16928:6630773,21050777:0,32768,229376 +(1,16928:6630773,21050777:5505024,32768,229376 +r1,16957:12135797,21050777:5505024,262144,229376 +) +k1,16928:6630773,21050777:-5505024 +) +(1,16928:6630773,21050777:25952256,32768,0 +r1,16957:32583029,21050777:25952256,32768,0 +) +) +(1,16928:6630773,22682629:25952256,606339,151780 +(1,16928:6630773,22682629:1974731,582746,14155 +g1,16928:6630773,22682629 +g1,16928:8605504,22682629 +) +g1,16928:10655733,22682629 +g1,16928:16100202,22682629 +g1,16928:18113468,22682629 +k1,16928:32583029,22682629:11938824 +g1,16928:32583029,22682629 +) +(1,16932:6630773,23940925:25952256,513147,134348 +k1,16931:8054589,23940925:248756 +k1,16931:9609478,23940925:248756 +k1,16931:13097023,23940925:248756 +k1,16931:13701638,23940925:248755 +k1,16931:15331238,23940925:248756 +k1,16931:16239286,23940925:248756 +k1,16931:17507127,23940925:248756 +k1,16931:19728516,23940925:248756 +k1,16931:23003069,23940925:248756 +k1,16931:24443270,23940925:248756 +k1,16931:27476650,23940925:248755 +k1,16931:29080691,23940925:248756 +k1,16931:29860944,23940925:248756 +k1,16931:31128785,23940925:248756 +k1,16932:32583029,23940925:0 +) +(1,16932:6630773,24806005:25952256,513147,126483 +k1,16931:9875877,24806005:244866 +k1,16931:10780035,24806005:244866 +k1,16931:12043987,24806005:244867 +k1,16931:13223396,24806005:244866 +k1,16931:14127554,24806005:244866 +k1,16931:17777015,24806005:244866 +k1,16931:21316376,24806005:244866 +k1,16931:22752687,24806005:244866 +k1,16931:24016639,24806005:244867 +k1,16931:27446555,24806005:244866 +k1,16931:28882866,24806005:244866 +k1,16931:32583029,24806005:0 +) +(1,16932:6630773,25671085:25952256,513147,134348 +k1,16931:9085705,25671085:295521 +k1,16931:10400310,25671085:295520 +k1,16931:13458174,25671085:295521 +k1,16931:16953163,25671085:295521 +k1,16931:17736175,25671085:295424 +k1,16931:20273026,25671085:295520 +k1,16931:23807336,25671085:295521 +k1,16931:24634353,25671085:295520 +k1,16931:26214380,25671085:295521 +k1,16931:28672589,25671085:295521 +k1,16931:29734225,25671085:295520 +k1,16931:31048831,25671085:295521 +k1,16932:32583029,25671085:0 +) +(1,16932:6630773,26536165:25952256,513147,134348 +k1,16931:8427682,26536165:199141 +k1,16931:9618383,26536165:199141 +k1,16931:12199103,26536165:199142 +k1,16931:13464515,26536165:199141 +k1,16931:15039257,26536165:199141 +k1,16931:16186049,26536165:199141 +k1,16931:18675018,26536165:199141 +k1,16931:19533452,26536165:199142 +k1,16931:21287762,26536165:199141 +(1,16931:21287762,26536165:0,452978,115847 +r1,16957:23404587,26536165:2116825,568825,115847 +k1,16931:21287762,26536165:-2116825 +) +(1,16931:21287762,26536165:2116825,452978,115847 +k1,16931:21287762,26536165:3277 +h1,16931:23401310,26536165:0,411205,112570 +) +k1,16931:23777398,26536165:199141 +k1,16931:25048708,26536165:199141 +k1,16931:26533665,26536165:199141 +k1,16931:27680458,26536165:199142 +k1,16931:30169427,26536165:199141 +k1,16931:31027860,26536165:199141 +k1,16932:32583029,26536165:0 +) +(1,16932:6630773,27401245:25952256,513147,134348 +(1,16931:6630773,27401245:0,452978,115847 +r1,16957:10154445,27401245:3523672,568825,115847 +k1,16931:6630773,27401245:-3523672 +) +(1,16931:6630773,27401245:3523672,452978,115847 +k1,16931:6630773,27401245:3277 +h1,16931:10151168,27401245:0,411205,112570 +) +k1,16931:10404162,27401245:249717 +k1,16931:13441125,27401245:249717 +k1,16931:16115674,27401245:249717 +k1,16931:17556836,27401245:249717 +k1,16931:18754204,27401245:249717 +k1,16931:20233982,27401245:249667 +k1,16931:23637291,27401245:249717 +k1,16931:26674254,27401245:249717 +k1,16931:29690245,27401245:249717 +k1,16931:31333913,27401245:249717 +k1,16932:32583029,27401245:0 +) +(1,16932:6630773,28266325:25952256,505283,134348 +k1,16931:9015880,28266325:247323 +k1,16931:11347248,28266325:247323 +k1,16931:12826647,28266325:247322 +k1,16931:14359786,28266325:247323 +k1,16931:16885796,28266325:247323 +h1,16931:18653302,28266325:0,0,0 +k1,16931:18900625,28266325:247323 +k1,16931:19957317,28266325:247322 +k1,16931:21702793,28266325:247323 +h1,16931:22898170,28266325:0,0,0 +k1,16931:23526257,28266325:247323 +k1,16931:24591469,28266325:247323 +k1,16931:27968136,28266325:247323 +k1,16931:30244453,28266325:247322 +k1,16931:32227169,28266325:247323 +k1,16931:32583029,28266325:0 +) +(1,16932:6630773,29131405:25952256,513147,134348 +k1,16931:8338723,29131405:211763 +k1,16931:9984414,29131405:211763 +k1,16931:11480683,29131405:211763 +k1,16931:12223943,29131405:211763 +k1,16931:13501977,29131405:211763 +k1,16931:14679085,29131405:211763 +k1,16931:16341815,29131405:211763 +k1,16931:18449535,29131405:211763 +k1,16931:19762303,29131405:211763 +k1,16931:20329926,29131405:211763 +k1,16931:21856997,29131405:211763 +k1,16931:23353266,29131405:211763 +k1,16931:25425596,29131405:211763 +k1,16931:26288787,29131405:211763 +k1,16931:27248316,29131405:211763 +k1,16931:30293856,29131405:211763 +k1,16931:32583029,29131405:0 +) +(1,16932:6630773,29996485:25952256,513147,134348 +g1,16931:7849087,29996485 +g1,16931:9394426,29996485 +g1,16931:12385489,29996485 +g1,16931:14152339,29996485 +g1,16931:15139966,29996485 +k1,16932:32583029,29996485:16298149 +g1,16932:32583029,29996485 +) +(1,16933:6630773,32113303:25952256,555811,139132 +(1,16933:6630773,32113303:2450326,534184,12975 +g1,16933:6630773,32113303 +g1,16933:9081099,32113303 +) +g1,16933:12764157,32113303 +k1,16933:32583029,32113303:14629862 +g1,16933:32583029,32113303 +) +(1,16937:6630773,33371599:25952256,513147,134348 +k1,16936:10085503,33371599:305725 +k1,16936:11675735,33371599:305726 +k1,16936:13000545,33371599:305725 +k1,16936:14695633,33371599:305725 +k1,16936:15532856,33371599:305726 +k1,16936:17876751,33371599:305725 +k1,16936:18798514,33371599:305725 +k1,16936:20492948,33371599:305726 +k1,16936:22539965,33371599:305725 +k1,16936:25662427,33371599:305725 +k1,16936:29372748,33371599:305726 +k1,16936:30670033,33371599:305725 +k1,16937:32583029,33371599:0 +) +(1,16937:6630773,34236679:25952256,513147,134348 +k1,16936:8422673,34236679:194132 +k1,16936:11971593,34236679:194132 +k1,16936:14176371,34236679:194133 +k1,16936:15938124,34236679:194132 +k1,16936:17151341,34236679:194132 +k1,16936:18998946,34236679:194132 +k1,16936:22934529,34236679:194133 +k1,16936:26577165,34236679:194132 +k1,16936:30573040,34236679:194132 +k1,16936:32583029,34236679:0 +) +(1,16937:6630773,35101759:25952256,513147,134348 +k1,16936:7173993,35101759:187360 +k1,16936:9234372,35101759:187360 +k1,16936:10625628,35101759:187360 +k1,16936:11472280,35101759:187360 +k1,16936:12015500,35101759:187360 +k1,16936:13592223,35101759:187360 +k1,16936:15655879,35101759:187360 +k1,16936:16526124,35101759:187360 +k1,16936:18524899,35101759:187360 +k1,16936:19944337,35101759:187361 +k1,16936:22410384,35101759:187360 +h1,16936:23953102,35101759:0,0,0 +k1,16936:24140462,35101759:187360 +k1,16936:25137192,35101759:187360 +k1,16936:26822705,35101759:187360 +h1,16936:28018082,35101759:0,0,0 +k1,16936:28205442,35101759:187360 +k1,16936:29340453,35101759:187360 +k1,16936:30546898,35101759:187360 +k1,16936:32168186,35101759:187360 +k1,16937:32583029,35101759:0 +) +(1,16937:6630773,35966839:25952256,513147,134348 +k1,16936:10151057,35966839:155010 +k1,16936:12097822,35966839:155011 +k1,16936:15278629,35966839:155010 +(1,16936:15278629,35966839:0,452978,115847 +r1,16957:18098878,35966839:2820249,568825,115847 +k1,16936:15278629,35966839:-2820249 +) +(1,16936:15278629,35966839:2820249,452978,115847 +k1,16936:15278629,35966839:3277 +h1,16936:18095601,35966839:0,411205,112570 +) +k1,16936:18253889,35966839:155011 +k1,16936:19600344,35966839:155010 +(1,16936:19600344,35966839:0,452978,115847 +r1,16957:23475728,35966839:3875384,568825,115847 +k1,16936:19600344,35966839:-3875384 +) +(1,16936:19600344,35966839:3875384,452978,115847 +k1,16936:19600344,35966839:3277 +h1,16936:23472451,35966839:0,411205,112570 +) +k1,16936:23630739,35966839:155011 +k1,16936:24654101,35966839:155010 +k1,16936:25913394,35966839:155011 +k1,16936:28092156,35966839:155010 +k1,16936:30630056,35966839:155011 +k1,16937:32583029,35966839:0 +) +(1,16937:6630773,36831919:25952256,513147,134348 +k1,16936:8235988,36831919:268281 +k1,16936:9265796,36831919:268280 +k1,16936:12888865,36831919:268281 +k1,16936:15919488,36831919:268280 +k1,16936:19203080,36831919:268281 +k1,16936:20154245,36831919:268280 +k1,16936:23264167,36831919:268281 +k1,16936:24723892,36831919:268280 +k1,16936:28253900,36831919:268281 +k1,16936:29205065,36831919:268280 +k1,16936:32227169,36831919:268281 +k1,16936:32583029,36831919:0 +) +(1,16937:6630773,37696999:25952256,513147,134348 +k1,16936:11187819,37696999:233636 +k1,16936:16432338,37696999:233636 +k1,16936:17619522,37696999:233635 +k1,16936:19050501,37696999:233636 +k1,16936:20567332,37696999:233636 +k1,16936:23642609,37696999:233636 +k1,16936:27003622,37696999:233635 +k1,16936:30092006,37696999:233636 +k1,16936:32583029,37696999:0 +) +(1,16937:6630773,38562079:25952256,505283,134348 +k1,16936:8320324,38562079:202539 +k1,16936:10258255,38562079:202538 +(1,16936:10258255,38562079:0,452978,115847 +r1,16957:13078504,38562079:2820249,568825,115847 +k1,16936:10258255,38562079:-2820249 +) +(1,16936:10258255,38562079:2820249,452978,115847 +k1,16936:10258255,38562079:3277 +h1,16936:13075227,38562079:0,411205,112570 +) +k1,16936:13281043,38562079:202539 +k1,16936:14166466,38562079:202538 +k1,16936:15237357,38562079:202539 +k1,16936:18376563,38562079:202538 +k1,16936:18934962,38562079:202539 +k1,16936:20420695,38562079:202538 +k1,16936:22434649,38562079:202539 +k1,16936:25999184,38562079:202538 +k1,16936:27577324,38562079:202539 +k1,16936:28798947,38562079:202538 +k1,16936:31714677,38562079:202539 +k1,16936:32583029,38562079:0 +) +(1,16937:6630773,39427159:25952256,513147,134348 +g1,16936:9727349,39427159 +g1,16936:12185604,39427159 +g1,16936:14120226,39427159 +(1,16936:14120226,39427159:0,452978,115847 +r1,16957:17995610,39427159:3875384,568825,115847 +k1,16936:14120226,39427159:-3875384 +) +(1,16936:14120226,39427159:3875384,452978,115847 +k1,16936:14120226,39427159:3277 +h1,16936:17992333,39427159:0,411205,112570 +) +k1,16937:32583029,39427159:14534991 +g1,16937:32583029,39427159 +) +v1,16939:6630773,40292239:0,393216,0 +(1,16957:6630773,43203640:25952256,3304617,0 +g1,16957:6630773,43203640 +g1,16957:6237557,43203640 +r1,16957:6368629,43203640:131072,3304617,0 +g1,16957:6567858,43203640 +g1,16957:6764466,43203640 +[1,16957:6764466,43203640:25818563,3304617,0 +(1,16940:6764466,40600537:25818563,701514,196608 +(1,16939:6764466,40600537:0,701514,196608 +r1,16957:7761522,40600537:997056,898122,196608 +k1,16939:6764466,40600537:-997056 +) +(1,16939:6764466,40600537:997056,701514,196608 +) +k1,16939:7992839,40600537:231317 +k1,16939:8320519,40600537:327680 +k1,16939:11396754,40600537:231317 +k1,16939:13195692,40600537:231317 +k1,16939:15147984,40600537:231317 +k1,16939:15794112,40600537:231285 +k1,16939:18283144,40600537:231317 +k1,16939:19908412,40600537:231317 +(1,16939:19908412,40600537:0,452978,115847 +r1,16957:22728661,40600537:2820249,568825,115847 +k1,16939:19908412,40600537:-2820249 +) +(1,16939:19908412,40600537:2820249,452978,115847 +k1,16939:19908412,40600537:3277 +h1,16939:22725384,40600537:0,411205,112570 +) +k1,16939:23133648,40600537:231317 +(1,16939:23133648,40600537:0,452978,115847 +r1,16957:25953897,40600537:2820249,568825,115847 +k1,16939:23133648,40600537:-2820249 +) +(1,16939:23133648,40600537:2820249,452978,115847 +k1,16939:23133648,40600537:3277 +h1,16939:25950620,40600537:0,411205,112570 +) +k1,16939:26185214,40600537:231317 +k1,16939:27607976,40600537:231317 +(1,16939:27607976,40600537:0,452978,115847 +r1,16957:31483360,40600537:3875384,568825,115847 +k1,16939:27607976,40600537:-3875384 +) +(1,16939:27607976,40600537:3875384,452978,115847 +k1,16939:27607976,40600537:3277 +h1,16939:31480083,40600537:0,411205,112570 +) +k1,16939:31714677,40600537:231317 +k1,16939:32583029,40600537:0 +) +(1,16940:6764466,41465617:25818563,505283,134348 +k1,16939:8189755,41465617:321007 +k1,16939:9603247,41465617:321007 +k1,16939:11934899,41465617:321007 +k1,16939:14461193,41465617:321007 +k1,16939:15468362,41465617:321007 +k1,16939:19365669,41465617:321007 +k1,16939:20302714,41465617:321007 +k1,16939:21642806,41465617:321007 +k1,16939:25480475,41465617:321007 +k1,16939:29232292,41465617:321007 +k1,16939:30572384,41465617:321007 +k1,16939:32583029,41465617:0 +) +(1,16940:6764466,42330697:25818563,505283,134348 +k1,16939:9251285,42330697:281532 +k1,16939:10218978,42330697:281531 +k1,16939:11954099,42330697:281532 +k1,16939:15811930,42330697:281531 +k1,16939:16721297,42330697:281532 +k1,16939:18754605,42330697:281531 +k1,16939:20907190,42330697:281532 +k1,16939:22391962,42330697:281531 +k1,16939:24685449,42330697:281532 +k1,16939:26617177,42330697:281531 +k1,16939:29254073,42330697:281532 +k1,16939:30727049,42330697:281531 +k1,16939:32583029,42330697:0 +) +(1,16940:6764466,43195777:25818563,505283,7863 +g1,16939:7615123,43195777 +g1,16939:11479125,43195777 +k1,16940:32583028,43195777:19555288 +g1,16940:32583028,43195777 +) +] +g1,16957:32583029,43203640 +) +] +(1,16957:32583029,45706769:0,0,0 +g1,16957:32583029,45706769 +) +) +] +(1,16957:6630773,47279633:25952256,0,0 +h1,16957:6630773,47279633:25952256,0,0 +) +] +(1,16957:4262630,4025873:0,0,0 +[1,16957:-473656,4025873:0,0,0 +(1,16957:-473656,-710413:0,0,0 +(1,16957:-473656,-710413:0,0,0 +g1,16957:-473656,-710413 +) +g1,16957:-473656,-710413 ) ] ) ] !22430 -}274 -Input:2834:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2835:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2836:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2837:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}275 Input:2838:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2839:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2840:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -295225,1310 +295429,1310 @@ Input:2848:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2849:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2850:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2851:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2852:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2853:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2854:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2855:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{275 -[1,17023:4262630,47279633:28320399,43253760,0 -(1,17023:4262630,4025873:0,0,0 -[1,17023:-473656,4025873:0,0,0 -(1,17023:-473656,-710413:0,0,0 -(1,17023:-473656,-644877:0,0,0 -k1,17023:-473656,-644877:-65536 +{276 +[1,17021:4262630,47279633:28320399,43253760,0 +(1,17021:4262630,4025873:0,0,0 +[1,17021:-473656,4025873:0,0,0 +(1,17021:-473656,-710413:0,0,0 +(1,17021:-473656,-644877:0,0,0 +k1,17021:-473656,-644877:-65536 ) -(1,17023:-473656,4736287:0,0,0 -k1,17023:-473656,4736287:5209943 +(1,17021:-473656,4736287:0,0,0 +k1,17021:-473656,4736287:5209943 ) -g1,17023:-473656,-710413 +g1,17021:-473656,-710413 ) ] ) -[1,17023:6630773,47279633:25952256,43253760,0 -[1,17023:6630773,4812305:25952256,786432,0 -(1,17023:6630773,4812305:25952256,505283,134348 -(1,17023:6630773,4812305:25952256,505283,134348 -g1,17023:3078558,4812305 -[1,17023:3078558,4812305:0,0,0 -(1,17023:3078558,2439708:0,1703936,0 -k1,17023:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17023:2537886,2439708:1179648,16384,0 +[1,17021:6630773,47279633:25952256,43253760,0 +[1,17021:6630773,4812305:25952256,786432,0 +(1,17021:6630773,4812305:25952256,505283,134348 +(1,17021:6630773,4812305:25952256,505283,134348 +g1,17021:3078558,4812305 +[1,17021:3078558,4812305:0,0,0 +(1,17021:3078558,2439708:0,1703936,0 +k1,17021:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17021:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17023:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17021:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17023:3078558,4812305:0,0,0 -(1,17023:3078558,2439708:0,1703936,0 -g1,17023:29030814,2439708 -g1,17023:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17023:36151628,1915420:16384,1179648,0 +[1,17021:3078558,4812305:0,0,0 +(1,17021:3078558,2439708:0,1703936,0 +g1,17021:29030814,2439708 +g1,17021:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17021:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17023:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17021:37855564,2439708:1179648,16384,0 ) ) -k1,17023:3078556,2439708:-34777008 +k1,17021:3078556,2439708:-34777008 ) ] -[1,17023:3078558,4812305:0,0,0 -(1,17023:3078558,49800853:0,16384,2228224 -k1,17023:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17023:2537886,49800853:1179648,16384,0 +[1,17021:3078558,4812305:0,0,0 +(1,17021:3078558,49800853:0,16384,2228224 +k1,17021:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17021:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17023:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17021:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17023:3078558,4812305:0,0,0 -(1,17023:3078558,49800853:0,16384,2228224 -g1,17023:29030814,49800853 -g1,17023:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17023:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17023:37855564,49800853:1179648,16384,0 -) -) -k1,17023:3078556,49800853:-34777008 -) -] -g1,17023:6630773,4812305 -k1,17023:23347041,4812305:15520891 -g1,17023:23960458,4812305 -g1,17023:27572802,4812305 -g1,17023:29306229,4812305 -) -) -] -[1,17023:6630773,45706769:25952256,40108032,0 -(1,17023:6630773,45706769:25952256,40108032,0 -(1,17023:6630773,45706769:0,0,0 -g1,17023:6630773,45706769 -) -[1,17023:6630773,45706769:25952256,40108032,0 -v1,16959:6630773,6254097:0,393216,0 -(1,16959:6630773,11610198:25952256,5749317,0 -g1,16959:6630773,11610198 -g1,16959:6237557,11610198 -r1,17023:6368629,11610198:131072,5749317,0 -g1,16959:6567858,11610198 -g1,16959:6764466,11610198 -[1,16959:6764466,11610198:25818563,5749317,0 -v1,16944:6764466,6254097:0,393216,0 -(1,16957:6764466,11413590:25818563,5552709,196608 -g1,16957:6764466,11413590 -g1,16957:6764466,11413590 -g1,16957:6567858,11413590 -(1,16957:6567858,11413590:0,5552709,196608 -r1,17023:32779637,11413590:26211779,5749317,196608 -k1,16957:6567857,11413590:-26211780 -) -(1,16957:6567858,11413590:26211779,5552709,196608 -[1,16957:6764466,11413590:25818563,5356101,0 -(1,16946:6764466,6481928:25818563,424439,86428 -(1,16945:6764466,6481928:0,0,0 -g1,16945:6764466,6481928 -g1,16945:6764466,6481928 -g1,16945:6436786,6481928 -(1,16945:6436786,6481928:0,0,0 -) -g1,16945:6764466,6481928 -) -k1,16946:6764466,6481928:0 -g1,16946:9752052,6481928 -g1,16946:10415960,6481928 -g1,16946:12075730,6481928 -g1,16946:12739638,6481928 -g1,16946:13403546,6481928 -g1,16946:14067454,6481928 -g1,16946:14731362,6481928 -h1,16946:15395270,6481928:0,0,0 -k1,16946:32583030,6481928:17187760 -g1,16946:32583030,6481928 -) -(1,16956:6764466,7297855:25818563,424439,9908 -(1,16948:6764466,7297855:0,0,0 -g1,16948:6764466,7297855 -g1,16948:6764466,7297855 -g1,16948:6436786,7297855 -(1,16948:6436786,7297855:0,0,0 -) -g1,16948:6764466,7297855 -) -g1,16956:7760328,7297855 -g1,16956:8424236,7297855 -g1,16956:9088144,7297855 -g1,16956:11743776,7297855 -g1,16956:12407684,7297855 -g1,16956:13071592,7297855 -h1,16956:13403546,7297855:0,0,0 -k1,16956:32583030,7297855:19179484 -g1,16956:32583030,7297855 -) -(1,16956:6764466,7982710:25818563,424439,6605 -h1,16956:6764466,7982710:0,0,0 -g1,16956:7760328,7982710 -g1,16956:8092282,7982710 -g1,16956:8424236,7982710 -g1,16956:8756190,7982710 -g1,16956:9088144,7982710 -g1,16956:9420098,7982710 -g1,16956:9752052,7982710 -g1,16956:10415960,7982710 -g1,16956:10747914,7982710 -g1,16956:11079868,7982710 -g1,16956:11411822,7982710 -g1,16956:11743776,7982710 -h1,16956:12075730,7982710:0,0,0 -k1,16956:32583030,7982710:20507300 -g1,16956:32583030,7982710 -) -(1,16956:6764466,8667565:25818563,424439,6605 -h1,16956:6764466,8667565:0,0,0 -g1,16956:7760328,8667565 -g1,16956:8092282,8667565 -g1,16956:8424236,8667565 -g1,16956:10415960,8667565 -k1,16956:10415960,8667565:0 -h1,16956:12075730,8667565:0,0,0 -k1,16956:32583030,8667565:20507300 -g1,16956:32583030,8667565 -) -(1,16956:6764466,9352420:25818563,407923,0 -h1,16956:6764466,9352420:0,0,0 -g1,16956:7760328,9352420 -g1,16956:8424236,9352420 -g1,16956:8756190,9352420 -g1,16956:9088144,9352420 -g1,16956:9420098,9352420 -g1,16956:9752052,9352420 -g1,16956:10415960,9352420 -g1,16956:10747914,9352420 -g1,16956:11079868,9352420 -g1,16956:11411822,9352420 -g1,16956:11743776,9352420 -h1,16956:12075730,9352420:0,0,0 -k1,16956:32583030,9352420:20507300 -g1,16956:32583030,9352420 -) -(1,16956:6764466,10037275:25818563,407923,0 -h1,16956:6764466,10037275:0,0,0 -g1,16956:7760328,10037275 -g1,16956:8424236,10037275 -g1,16956:8756190,10037275 -g1,16956:9088144,10037275 -g1,16956:9420098,10037275 -g1,16956:9752052,10037275 -g1,16956:10415960,10037275 -g1,16956:10747914,10037275 -g1,16956:11079868,10037275 -g1,16956:11411822,10037275 -g1,16956:11743776,10037275 -h1,16956:12075730,10037275:0,0,0 -k1,16956:32583030,10037275:20507300 -g1,16956:32583030,10037275 -) -(1,16956:6764466,10722130:25818563,407923,9908 -h1,16956:6764466,10722130:0,0,0 -g1,16956:7760328,10722130 -g1,16956:8424236,10722130 -g1,16956:8756190,10722130 -g1,16956:9088144,10722130 -g1,16956:9420098,10722130 -g1,16956:9752052,10722130 -g1,16956:10415960,10722130 -g1,16956:10747914,10722130 -g1,16956:11079868,10722130 -g1,16956:11411822,10722130 -g1,16956:11743776,10722130 -h1,16956:12075730,10722130:0,0,0 -k1,16956:32583030,10722130:20507300 -g1,16956:32583030,10722130 -) -(1,16956:6764466,11406985:25818563,424439,6605 -h1,16956:6764466,11406985:0,0,0 -g1,16956:7760328,11406985 -g1,16956:8424236,11406985 -g1,16956:9088144,11406985 -g1,16956:9752052,11406985 -g1,16956:11411822,11406985 -h1,16956:12739638,11406985:0,0,0 -k1,16956:32583030,11406985:19843392 -g1,16956:32583030,11406985 -) -] -) -g1,16957:32583029,11413590 -g1,16957:6764466,11413590 -g1,16957:6764466,11413590 -g1,16957:32583029,11413590 -g1,16957:32583029,11413590 -) -h1,16957:6764466,11610198:0,0,0 -] -g1,16959:32583029,11610198 -) -h1,16959:6630773,11610198:0,0,0 -(1,16962:6630773,12475278:25952256,513147,134348 -h1,16961:6630773,12475278:983040,0,0 -k1,16961:11497655,12475278:340966 -k1,16961:13232572,12475278:340966 -k1,16961:14592623,12475278:340966 -k1,16961:17595006,12475278:340966 -k1,16961:19503593,12475278:340966 -k1,16961:20863643,12475278:340965 -k1,16961:23959087,12475278:340966 -k1,16961:26752410,12475278:340966 -k1,16961:27449236,12475278:340966 -k1,16961:29502658,12475278:340966 -k1,16961:31227744,12475278:340966 -k1,16961:32583029,12475278:0 -) -(1,16962:6630773,13340358:25952256,505283,126483 -k1,16961:8846055,13340358:285246 -k1,16961:9879067,13340358:285246 -k1,16961:10815741,13340358:285246 -k1,16961:12515254,13340358:285246 -k1,16961:13819585,13340358:285246 -k1,16961:16115476,13340358:285246 -k1,16961:17016761,13340358:285247 -k1,16961:19813347,13340358:285246 -(1,16961:19813347,13340358:0,414482,115847 -r1,17023:21226748,13340358:1413401,530329,115847 -k1,16961:19813347,13340358:-1413401 -) -(1,16961:19813347,13340358:1413401,414482,115847 -k1,16961:19813347,13340358:3277 -h1,16961:21223471,13340358:0,411205,112570 -) -k1,16961:21511994,13340358:285246 -k1,16961:23064706,13340358:285246 -(1,16961:23064706,13340358:0,452978,115847 -r1,17023:26588378,13340358:3523672,568825,115847 -k1,16961:23064706,13340358:-3523672 -) -(1,16961:23064706,13340358:3523672,452978,115847 -k1,16961:23064706,13340358:3277 -h1,16961:26585101,13340358:0,411205,112570 -) -k1,16961:26873624,13340358:285246 -k1,16961:28350315,13340358:285246 -(1,16961:28350315,13340358:0,452978,115847 -r1,17023:31170564,13340358:2820249,568825,115847 -k1,16961:28350315,13340358:-2820249 -) -(1,16961:28350315,13340358:2820249,452978,115847 -k1,16961:28350315,13340358:3277 -h1,16961:31167287,13340358:0,411205,112570 -) -k1,16961:31629480,13340358:285246 -k1,16961:32583029,13340358:0 -) -(1,16962:6630773,14205438:25952256,513147,134348 -k1,16961:7921233,14205438:197975 -(1,16961:7921233,14205438:0,452978,115847 -r1,17023:10741482,14205438:2820249,568825,115847 -k1,16961:7921233,14205438:-2820249 -) -(1,16961:7921233,14205438:2820249,452978,115847 -k1,16961:7921233,14205438:3277 -h1,16961:10738205,14205438:0,411205,112570 -) -k1,16961:10939456,14205438:197974 -k1,16961:12705052,14205438:197975 -k1,16961:14875660,14205438:197975 -k1,16961:16265079,14205438:197974 -(1,16961:16265079,14205438:0,452978,115847 -r1,17023:20843887,14205438:4578808,568825,115847 -k1,16961:16265079,14205438:-4578808 -) -(1,16961:16265079,14205438:4578808,452978,115847 -k1,16961:16265079,14205438:3277 -h1,16961:20840610,14205438:0,411205,112570 -) -k1,16961:21041862,14205438:197975 -k1,16961:22807457,14205438:197974 -k1,16961:25471551,14205438:197975 -k1,16961:26232480,14205438:197975 -k1,16961:29010606,14205438:197974 -k1,16961:31966991,14205438:197975 -k1,16961:32583029,14205438:0 -) -(1,16962:6630773,15070518:25952256,513147,134348 -k1,16961:7847285,15070518:197427 -k1,16961:11426369,15070518:197427 -k1,16961:13568905,15070518:197427 -k1,16961:14379095,15070518:197428 -k1,16961:15595607,15070518:197427 -k1,16961:20048942,15070518:197427 -k1,16961:20905661,15070518:197427 -k1,16961:24077767,15070518:197427 -k1,16961:26852070,15070518:197427 -k1,16961:28003047,15070518:197428 -k1,16961:29292959,15070518:197427 -k1,16961:31764485,15070518:197427 -k1,16962:32583029,15070518:0 -) -(1,16962:6630773,15935598:25952256,505283,134348 -k1,16961:9880016,15935598:191333 -k1,16961:11303425,15935598:191332 -k1,16961:13773445,15935598:191333 -h1,16961:14744033,15935598:0,0,0 -k1,16961:14935366,15935598:191333 -k1,16961:15936069,15935598:191333 -k1,16961:17625554,15935598:191332 -h1,16961:18422472,15935598:0,0,0 -k1,16961:18820899,15935598:191333 -k1,16961:19698394,15935598:191333 -k1,16961:23292355,15935598:191332 -k1,16961:25688975,15935598:191333 -k1,16961:26531736,15935598:191333 -(1,16961:26531736,15935598:0,414482,115847 -r1,17023:29000273,15935598:2468537,530329,115847 -k1,16961:26531736,15935598:-2468537 -) -(1,16961:26531736,15935598:2468537,414482,115847 -k1,16961:26531736,15935598:3277 -h1,16961:28996996,15935598:0,411205,112570 -) -k1,16961:29365276,15935598:191333 -k1,16961:30510157,15935598:191332 -k1,16961:31516758,15935598:191333 -k1,16961:32583029,15935598:0 -) -(1,16962:6630773,16800678:25952256,513147,126483 -k1,16961:8462689,16800678:171234 -k1,16961:9092021,16800678:171235 -k1,16961:10834808,16800678:171234 -k1,16961:12078212,16800678:171235 -(1,16961:12078212,16800678:0,452978,115847 -r1,17023:14898461,16800678:2820249,568825,115847 -k1,16961:12078212,16800678:-2820249 -) -(1,16961:12078212,16800678:2820249,452978,115847 -k1,16961:12078212,16800678:3277 -h1,16961:14895184,16800678:0,411205,112570 -) -k1,16961:15069695,16800678:171234 -k1,16961:16345212,16800678:171235 -k1,16961:17264212,16800678:171234 -k1,16961:18948672,16800678:171234 -k1,16961:20513858,16800678:171235 -k1,16961:23526733,16800678:171234 -k1,16961:24357260,16800678:171235 -k1,16961:25660301,16800678:171234 -(1,16961:25660301,16800678:0,452978,115847 -r1,17023:27073702,16800678:1413401,568825,115847 -k1,16961:25660301,16800678:-1413401 -) -(1,16961:25660301,16800678:1413401,452978,115847 -k1,16961:25660301,16800678:3277 -h1,16961:27070425,16800678:0,411205,112570 -) -k1,16961:27418607,16800678:171235 -k1,16961:28781286,16800678:171234 -k1,16961:32583029,16800678:0 -) -(1,16962:6630773,17665758:25952256,513147,126483 -k1,16961:7957625,17665758:222570 -k1,16961:10457571,17665758:222570 -k1,16961:12690786,17665758:222570 -k1,16961:14480977,17665758:222570 -k1,16961:16935048,17665758:222570 -k1,16961:20044479,17665758:222570 -k1,16961:20736943,17665758:222571 -k1,16961:21491010,17665758:222570 -k1,16961:23180276,17665758:222570 -k1,16961:26032806,17665758:222570 -k1,16961:26906804,17665758:222570 -k1,16961:29540444,17665758:222570 -k1,16961:30572384,17665758:222570 -k1,16961:32583029,17665758:0 -) -(1,16962:6630773,18530838:25952256,505283,134348 -k1,16961:9578582,18530838:193986 -k1,16961:10128429,18530838:193987 -k1,16961:11257614,18530838:193986 -k1,16961:12308157,18530838:193987 -k1,16961:13118181,18530838:193986 -k1,16961:15014138,18530838:193987 -k1,16961:17336733,18530838:193986 -k1,16961:19266113,18530838:193987 -k1,16961:20994297,18530838:193986 -k1,16961:24223912,18530838:193987 -k1,16961:26777194,18530838:193986 -k1,16961:27622609,18530838:193987 -k1,16961:28835680,18530838:193986 -k1,16961:31373890,18530838:193987 -k1,16962:32583029,18530838:0 -k1,16962:32583029,18530838:0 -) -v1,16964:6630773,19215693:0,393216,0 -(1,16980:6630773,26433054:25952256,7610577,196608 -g1,16980:6630773,26433054 -g1,16980:6630773,26433054 -g1,16980:6434165,26433054 -(1,16980:6434165,26433054:0,7610577,196608 -r1,17023:32779637,26433054:26345472,7807185,196608 -k1,16980:6434165,26433054:-26345472 -) -(1,16980:6434165,26433054:26345472,7610577,196608 -[1,16980:6630773,26433054:25952256,7413969,0 -(1,16966:6630773,19443524:25952256,424439,112852 -(1,16965:6630773,19443524:0,0,0 -g1,16965:6630773,19443524 -g1,16965:6630773,19443524 -g1,16965:6303093,19443524 -(1,16965:6303093,19443524:0,0,0 -) -g1,16965:6630773,19443524 -) -g1,16966:10946174,19443524 -k1,16966:10946174,19443524:0 -h1,16966:11610082,19443524:0,0,0 -k1,16966:32583030,19443524:20972948 -g1,16966:32583030,19443524 -) -(1,16967:6630773,20128379:25952256,424439,106246 -h1,16967:6630773,20128379:0,0,0 -g1,16967:6962727,20128379 -g1,16967:7294681,20128379 -g1,16967:13269852,20128379 -g1,16967:13933760,20128379 -g1,16967:19908931,20128379 -k1,16967:19908931,20128379:0 -h1,16967:24888240,20128379:0,0,0 -k1,16967:32583029,20128379:7694789 -g1,16967:32583029,20128379 -) -(1,16968:6630773,20813234:25952256,431045,112852 -h1,16968:6630773,20813234:0,0,0 -g1,16968:6962727,20813234 -g1,16968:7294681,20813234 -g1,16968:7626635,20813234 -g1,16968:7958589,20813234 -g1,16968:8290543,20813234 -g1,16968:8622497,20813234 -g1,16968:8954451,20813234 -g1,16968:9286405,20813234 -g1,16968:9618359,20813234 -g1,16968:14597668,20813234 -g1,16968:15261576,20813234 -g1,16968:21236747,20813234 -g1,16968:26548010,20813234 -g1,16968:27543872,20813234 -h1,16968:31527319,20813234:0,0,0 -k1,16968:32583029,20813234:1055710 -g1,16968:32583029,20813234 -) -(1,16969:6630773,21498089:25952256,424439,112852 -h1,16969:6630773,21498089:0,0,0 -h1,16969:10614220,21498089:0,0,0 -k1,16969:32583028,21498089:21968808 -g1,16969:32583028,21498089 -) -(1,16979:6630773,22314016:25952256,424439,9908 -(1,16971:6630773,22314016:0,0,0 -g1,16971:6630773,22314016 -g1,16971:6630773,22314016 -g1,16971:6303093,22314016 -(1,16971:6303093,22314016:0,0,0 -) -g1,16971:6630773,22314016 -) -g1,16979:7626635,22314016 -g1,16979:8290543,22314016 -g1,16979:8954451,22314016 -g1,16979:11610083,22314016 -g1,16979:12937899,22314016 -g1,16979:13601807,22314016 -h1,16979:13933761,22314016:0,0,0 -k1,16979:32583029,22314016:18649268 -g1,16979:32583029,22314016 -) -(1,16979:6630773,22998871:25952256,424439,106246 -h1,16979:6630773,22998871:0,0,0 -g1,16979:7626635,22998871 -g1,16979:7958589,22998871 -g1,16979:8290543,22998871 -g1,16979:10946175,22998871 -g1,16979:12605945,22998871 -g1,16979:12937899,22998871 -g1,16979:13269853,22998871 -g1,16979:13601807,22998871 -g1,16979:13933761,22998871 -g1,16979:14265715,22998871 -g1,16979:14597669,22998871 -g1,16979:14929623,22998871 -g1,16979:15261577,22998871 -g1,16979:18581116,22998871 -g1,16979:22232609,22998871 -h1,16979:26879964,22998871:0,0,0 -k1,16979:32583029,22998871:5703065 -g1,16979:32583029,22998871 -) -(1,16979:6630773,23683726:25952256,431045,6605 -h1,16979:6630773,23683726:0,0,0 -g1,16979:7626635,23683726 -g1,16979:7958589,23683726 -g1,16979:8290543,23683726 -g1,16979:10282267,23683726 -g1,16979:10614221,23683726 -g1,16979:10946175,23683726 -g1,16979:12937899,23683726 -g1,16979:13269853,23683726 -g1,16979:13601807,23683726 -g1,16979:13933761,23683726 -g1,16979:14265715,23683726 -g1,16979:14597669,23683726 -g1,16979:14929623,23683726 -g1,16979:15261577,23683726 -g1,16979:15593531,23683726 -g1,16979:15925485,23683726 -g1,16979:16257439,23683726 -g1,16979:16589393,23683726 -g1,16979:18581117,23683726 -g1,16979:20572841,23683726 -g1,16979:20904795,23683726 -g1,16979:21236749,23683726 -g1,16979:21568703,23683726 -g1,16979:21900657,23683726 -g1,16979:22232611,23683726 -k1,16979:22232611,23683726:0 -h1,16979:23892381,23683726:0,0,0 -k1,16979:32583029,23683726:8690648 -g1,16979:32583029,23683726 -) -(1,16979:6630773,24368581:25952256,424439,112852 -h1,16979:6630773,24368581:0,0,0 -g1,16979:7626635,24368581 -g1,16979:8290543,24368581 -g1,16979:10614221,24368581 -g1,16979:10946175,24368581 -g1,16979:15261576,24368581 -g1,16979:15593530,24368581 -g1,16979:15925484,24368581 -g1,16979:16257438,24368581 -g1,16979:16589392,24368581 -g1,16979:16921346,24368581 -g1,16979:17253300,24368581 -g1,16979:18581116,24368581 -g1,16979:20572840,24368581 -g1,16979:20904794,24368581 -g1,16979:21236748,24368581 -g1,16979:21568702,24368581 -g1,16979:21900656,24368581 -g1,16979:22232610,24368581 -h1,16979:24224334,24368581:0,0,0 -k1,16979:32583029,24368581:8358695 -g1,16979:32583029,24368581 -) -(1,16979:6630773,25053436:25952256,424439,106246 -h1,16979:6630773,25053436:0,0,0 -g1,16979:7626635,25053436 -g1,16979:8290543,25053436 -g1,16979:10614221,25053436 -g1,16979:10946175,25053436 -g1,16979:14929622,25053436 -g1,16979:15261576,25053436 -g1,16979:15593530,25053436 -g1,16979:15925484,25053436 -g1,16979:16257438,25053436 -g1,16979:16589392,25053436 -g1,16979:16921346,25053436 -g1,16979:17253300,25053436 -g1,16979:18581116,25053436 -g1,16979:20572840,25053436 -g1,16979:20904794,25053436 -g1,16979:21236748,25053436 -g1,16979:21568702,25053436 -g1,16979:21900656,25053436 -g1,16979:22232610,25053436 -h1,16979:23892380,25053436:0,0,0 -k1,16979:32583029,25053436:8690649 -g1,16979:32583029,25053436 -) -(1,16979:6630773,25738291:25952256,424439,112852 -h1,16979:6630773,25738291:0,0,0 -g1,16979:7626635,25738291 -g1,16979:8290543,25738291 -g1,16979:10614221,25738291 -g1,16979:10946175,25738291 -g1,16979:15261576,25738291 -g1,16979:15593530,25738291 -g1,16979:15925484,25738291 -g1,16979:16257438,25738291 -g1,16979:16589392,25738291 -g1,16979:16921346,25738291 -g1,16979:17253300,25738291 -g1,16979:18581116,25738291 -g1,16979:20572840,25738291 -g1,16979:20904794,25738291 -g1,16979:21236748,25738291 -g1,16979:21568702,25738291 -g1,16979:21900656,25738291 -g1,16979:22232610,25738291 -h1,16979:24224334,25738291:0,0,0 -k1,16979:32583029,25738291:8358695 -g1,16979:32583029,25738291 -) -(1,16979:6630773,26423146:25952256,424439,9908 -h1,16979:6630773,26423146:0,0,0 -g1,16979:7626635,26423146 -g1,16979:8290543,26423146 -g1,16979:8954451,26423146 -g1,16979:10282267,26423146 -g1,16979:11942037,26423146 -h1,16979:13269853,26423146:0,0,0 -k1,16979:32583029,26423146:19313176 -g1,16979:32583029,26423146 -) -] -) -g1,16980:32583029,26433054 -g1,16980:6630773,26433054 -g1,16980:6630773,26433054 -g1,16980:32583029,26433054 -g1,16980:32583029,26433054 -) -h1,16980:6630773,26629662:0,0,0 -(1,16985:6630773,27494742:25952256,513147,126483 -h1,16983:6630773,27494742:983040,0,0 -k1,16983:8416579,27494742:174931 -k1,16983:9610594,27494742:174930 -k1,16983:11169645,27494742:174931 -k1,16983:12477693,27494742:174930 -k1,16983:15127263,27494742:174931 -k1,16983:18080921,27494742:174931 -k1,16983:20266496,27494742:174930 -k1,16983:21432987,27494742:174931 -k1,16983:24844741,27494742:174931 -k1,16983:26709189,27494742:174930 -k1,16983:27500158,27494742:174931 -k1,16983:29953775,27494742:174930 -k1,16983:31221191,27494742:174931 -k1,16983:32583029,27494742:0 -) -(1,16985:6630773,28359822:25952256,513147,134348 -k1,16983:8727911,28359822:167102 -k1,16983:11669807,28359822:167102 -k1,16983:12488337,28359822:167102 -k1,16983:15497080,28359822:167102 -k1,16983:16347067,28359822:167102 -k1,16983:18719456,28359822:167102 -k1,16983:19537986,28359822:167102 -k1,16983:20724172,28359822:167101 -k1,16983:22275394,28359822:167102 -k1,16983:25137992,28359822:167102 -k1,16983:25921132,28359822:167102 -k1,16983:26444094,28359822:167102 -k1,16983:28001215,28359822:167102 -k1,16983:29903710,28359822:167102 -(1,16983:29903710,28359822:0,452978,115847 -r1,17023:30613688,28359822:709978,568825,115847 -k1,16983:29903710,28359822:-709978 -) -(1,16983:29903710,28359822:709978,452978,115847 -k1,16983:29903710,28359822:3277 -h1,16983:30610411,28359822:0,411205,112570 -) -k1,16983:30954460,28359822:167102 -k1,16985:32583029,28359822:0 -) -(1,16985:6630773,29224902:25952256,513147,134348 -k1,16984:8046677,29224902:148438 -(1,16984:8046677,29224902:0,452978,122846 -r1,17023:11218637,29224902:3171960,575824,122846 -k1,16984:8046677,29224902:-3171960 -) -(1,16984:8046677,29224902:3171960,452978,122846 -k1,16984:8046677,29224902:3277 -h1,16984:11215360,29224902:0,411205,112570 -) -k1,16984:11367074,29224902:148437 -k1,16984:12047009,29224902:148438 -k1,16984:13708673,29224902:148438 -k1,16984:14508539,29224902:148438 -k1,16984:15927064,29224902:148437 -k1,16984:18723157,29224902:148438 -k1,16984:20917629,29224902:148438 -k1,16984:23326403,29224902:148437 -k1,16984:23830701,29224902:148438 -k1,16984:25368502,29224902:148438 -k1,16984:27393236,29224902:148438 -k1,16984:28224558,29224902:148437 -k1,16984:30184411,29224902:148438 -k1,16984:32583029,29224902:0 -) -(1,16985:6630773,30089982:25952256,505283,134348 -k1,16984:8251437,30089982:178217 -k1,16984:10127692,30089982:178217 -k1,16984:12041303,30089982:178218 -(1,16984:12041303,30089982:0,452978,115847 -r1,17023:14158128,30089982:2116825,568825,115847 -k1,16984:12041303,30089982:-2116825 -) -(1,16984:12041303,30089982:2116825,452978,115847 -k1,16984:12041303,30089982:3277 -h1,16984:14154851,30089982:0,411205,112570 -) -k1,16984:14336345,30089982:178217 -k1,16984:15197447,30089982:178217 -(1,16984:15197447,30089982:0,452978,115847 -r1,17023:17665984,30089982:2468537,568825,115847 -k1,16984:15197447,30089982:-2468537 -) -(1,16984:15197447,30089982:2468537,452978,115847 -k1,16984:15197447,30089982:3277 -h1,16984:17662707,30089982:0,411205,112570 -) -k1,16984:18017871,30089982:178217 -k1,16984:20236880,30089982:178218 -(1,16984:20236880,30089982:0,452978,122846 -r1,17023:24463976,30089982:4227096,575824,122846 -k1,16984:20236880,30089982:-4227096 -) -(1,16984:20236880,30089982:4227096,452978,122846 -k1,16984:20236880,30089982:3277 -h1,16984:24460699,30089982:0,411205,112570 -) -k1,16984:24642193,30089982:178217 -k1,16984:26354608,30089982:178217 -k1,16984:27524385,30089982:178217 -k1,16984:29740773,30089982:178218 -k1,16984:31773659,30089982:178217 -k1,16984:32583029,30089982:0 -) -(1,16985:6630773,30955062:25952256,513147,7863 -g1,16984:7849087,30955062 -g1,16984:10058961,30955062 -g1,16984:10874228,30955062 -g1,16984:12728241,30955062 -g1,16984:13586762,30955062 -g1,16984:14574389,30955062 -k1,16985:32583029,30955062:15243021 -g1,16985:32583029,30955062 -) -v1,16987:6630773,31639917:0,393216,0 -(1,17000:6630773,36802713:25952256,5556012,196608 -g1,17000:6630773,36802713 -g1,17000:6630773,36802713 -g1,17000:6434165,36802713 -(1,17000:6434165,36802713:0,5556012,196608 -r1,17023:32779637,36802713:26345472,5752620,196608 -k1,17000:6434165,36802713:-26345472 -) -(1,17000:6434165,36802713:26345472,5556012,196608 -[1,17000:6630773,36802713:25952256,5359404,0 -(1,16989:6630773,31867748:25952256,424439,112852 -(1,16988:6630773,31867748:0,0,0 -g1,16988:6630773,31867748 -g1,16988:6630773,31867748 -g1,16988:6303093,31867748 -(1,16988:6303093,31867748:0,0,0 -) -g1,16988:6630773,31867748 -) -k1,16989:6630773,31867748:0 -g1,16989:13933760,31867748 -g1,16989:16921346,31867748 -g1,16989:20904793,31867748 -h1,16989:25884102,31867748:0,0,0 -k1,16989:32583029,31867748:6698927 -g1,16989:32583029,31867748 -) -(1,16999:6630773,32683675:25952256,424439,9908 -(1,16991:6630773,32683675:0,0,0 -g1,16991:6630773,32683675 -g1,16991:6630773,32683675 -g1,16991:6303093,32683675 -(1,16991:6303093,32683675:0,0,0 -) -g1,16991:6630773,32683675 -) -g1,16999:7626635,32683675 -g1,16999:8290543,32683675 -g1,16999:8954451,32683675 -g1,16999:11610083,32683675 -g1,16999:12937899,32683675 -g1,16999:13601807,32683675 -h1,16999:13933761,32683675:0,0,0 -k1,16999:32583029,32683675:18649268 -g1,16999:32583029,32683675 -) -(1,16999:6630773,33368530:25952256,424439,106246 -h1,16999:6630773,33368530:0,0,0 -g1,16999:7626635,33368530 -g1,16999:7958589,33368530 -g1,16999:8290543,33368530 -g1,16999:10946175,33368530 -g1,16999:12605945,33368530 -g1,16999:12937899,33368530 -g1,16999:13269853,33368530 -g1,16999:13601807,33368530 -g1,16999:13933761,33368530 -g1,16999:14265715,33368530 -g1,16999:14597669,33368530 -g1,16999:14929623,33368530 -g1,16999:15261577,33368530 -g1,16999:18581116,33368530 -g1,16999:22232609,33368530 -h1,16999:26879964,33368530:0,0,0 -k1,16999:32583029,33368530:5703065 -g1,16999:32583029,33368530 -) -(1,16999:6630773,34053385:25952256,431045,6605 -h1,16999:6630773,34053385:0,0,0 -g1,16999:7626635,34053385 -g1,16999:7958589,34053385 -g1,16999:8290543,34053385 -g1,16999:10282267,34053385 -g1,16999:10614221,34053385 -g1,16999:10946175,34053385 -g1,16999:12937899,34053385 -g1,16999:13269853,34053385 -g1,16999:13601807,34053385 -g1,16999:13933761,34053385 -g1,16999:14265715,34053385 -g1,16999:14597669,34053385 -g1,16999:14929623,34053385 -g1,16999:15261577,34053385 -g1,16999:15593531,34053385 -g1,16999:15925485,34053385 -g1,16999:16257439,34053385 -g1,16999:16589393,34053385 -g1,16999:18581117,34053385 -g1,16999:20572841,34053385 -g1,16999:20904795,34053385 -g1,16999:21236749,34053385 -g1,16999:21568703,34053385 -g1,16999:21900657,34053385 -g1,16999:22232611,34053385 -k1,16999:22232611,34053385:0 -h1,16999:23892381,34053385:0,0,0 -k1,16999:32583029,34053385:8690648 -g1,16999:32583029,34053385 -) -(1,16999:6630773,34738240:25952256,424439,112852 -h1,16999:6630773,34738240:0,0,0 -g1,16999:7626635,34738240 -g1,16999:8290543,34738240 -g1,16999:10614221,34738240 -g1,16999:10946175,34738240 -g1,16999:15261576,34738240 -g1,16999:15593530,34738240 -g1,16999:15925484,34738240 -g1,16999:16257438,34738240 -g1,16999:16589392,34738240 -g1,16999:16921346,34738240 -g1,16999:17253300,34738240 -g1,16999:18581116,34738240 -g1,16999:20572840,34738240 -g1,16999:20904794,34738240 -g1,16999:21236748,34738240 -g1,16999:21568702,34738240 -g1,16999:21900656,34738240 -g1,16999:22232610,34738240 -h1,16999:24224334,34738240:0,0,0 -k1,16999:32583029,34738240:8358695 -g1,16999:32583029,34738240 -) -(1,16999:6630773,35423095:25952256,424439,112852 -h1,16999:6630773,35423095:0,0,0 -g1,16999:7626635,35423095 -g1,16999:8290543,35423095 -g1,16999:10614221,35423095 -g1,16999:10946175,35423095 -g1,16999:15261576,35423095 -g1,16999:15593530,35423095 -g1,16999:15925484,35423095 -g1,16999:16257438,35423095 -g1,16999:16589392,35423095 -g1,16999:16921346,35423095 -g1,16999:17253300,35423095 -g1,16999:18581116,35423095 -g1,16999:20572840,35423095 -g1,16999:20904794,35423095 -g1,16999:21236748,35423095 -g1,16999:21568702,35423095 -g1,16999:21900656,35423095 -g1,16999:22232610,35423095 -h1,16999:24224334,35423095:0,0,0 -k1,16999:32583029,35423095:8358695 -g1,16999:32583029,35423095 -) -(1,16999:6630773,36107950:25952256,424439,112852 -h1,16999:6630773,36107950:0,0,0 -g1,16999:7626635,36107950 -g1,16999:8290543,36107950 -g1,16999:10614221,36107950 -g1,16999:10946175,36107950 -g1,16999:15261576,36107950 -g1,16999:15593530,36107950 -g1,16999:15925484,36107950 -g1,16999:16257438,36107950 -g1,16999:16589392,36107950 -g1,16999:16921346,36107950 -g1,16999:17253300,36107950 -g1,16999:18581116,36107950 -g1,16999:20572840,36107950 -g1,16999:20904794,36107950 -g1,16999:21236748,36107950 -g1,16999:21568702,36107950 -g1,16999:21900656,36107950 -g1,16999:22232610,36107950 -h1,16999:24224334,36107950:0,0,0 -k1,16999:32583029,36107950:8358695 -g1,16999:32583029,36107950 -) -(1,16999:6630773,36792805:25952256,424439,9908 -h1,16999:6630773,36792805:0,0,0 -g1,16999:7626635,36792805 -g1,16999:8290543,36792805 -g1,16999:8954451,36792805 -g1,16999:10282267,36792805 -g1,16999:11942037,36792805 -h1,16999:13269853,36792805:0,0,0 -k1,16999:32583029,36792805:19313176 -g1,16999:32583029,36792805 -) -] -) -g1,17000:32583029,36802713 -g1,17000:6630773,36802713 -g1,17000:6630773,36802713 -g1,17000:32583029,36802713 -g1,17000:32583029,36802713 -) -h1,17000:6630773,36999321:0,0,0 -(1,17004:6630773,37864401:25952256,513147,115847 -h1,17003:6630773,37864401:983040,0,0 -k1,17003:10585340,37864401:181659 -(1,17003:10585340,37864401:0,459977,115847 -r1,17023:13405589,37864401:2820249,575824,115847 -k1,17003:10585340,37864401:-2820249 -) -(1,17003:10585340,37864401:2820249,459977,115847 -k1,17003:10585340,37864401:3277 -h1,17003:13402312,37864401:0,411205,112570 -) -k1,17003:13587248,37864401:181659 -k1,17003:14873190,37864401:181660 -k1,17003:15802615,37864401:181659 -k1,17003:17497500,37864401:181659 -k1,17003:18330587,37864401:181659 -k1,17003:20716223,37864401:181660 -k1,17003:21253742,37864401:181659 -k1,17003:23515514,37864401:181659 -k1,17003:24356465,37864401:181659 -k1,17003:28929693,37864401:181660 -k1,17003:29762780,37864401:181659 -(1,17003:29762780,37864401:0,452978,115847 -r1,17023:32583029,37864401:2820249,568825,115847 -k1,17003:29762780,37864401:-2820249 -) -(1,17003:29762780,37864401:2820249,452978,115847 -k1,17003:29762780,37864401:3277 -h1,17003:32579752,37864401:0,411205,112570 -) -k1,17003:32583029,37864401:0 -) -(1,17004:6630773,38729481:25952256,513147,126483 -k1,17003:7906665,38729481:203723 -k1,17003:9504340,38729481:203724 -k1,17003:10063923,38729481:203723 -k1,17003:12351691,38729481:203723 -k1,17003:15836147,38729481:203724 -k1,17003:17433821,38729481:203723 -k1,17003:18922051,38729481:203724 -k1,17003:19785066,38729481:203723 -k1,17003:21690759,38729481:203723 -k1,17003:24920280,38729481:203724 -k1,17003:25740041,38729481:203723 -k1,17003:26962849,38729481:203723 -k1,17003:30548230,38729481:203724 -k1,17003:31379788,38729481:203723 -k1,17003:32583029,38729481:0 -) -(1,17004:6630773,39594561:25952256,513147,134348 -g1,17003:8370753,39594561 -g1,17003:9765359,39594561 -g1,17003:11030859,39594561 -g1,17003:11889380,39594561 -g1,17003:13107694,39594561 -g1,17003:15742241,39594561 -g1,17003:17136847,39594561 -g1,17003:18870274,39594561 -g1,17003:20061063,39594561 -k1,17004:32583029,39594561:9836956 -g1,17004:32583029,39594561 -) -v1,17006:6630773,40279416:0,393216,0 -(1,17019:6630773,45448818:25952256,5562618,196608 -g1,17019:6630773,45448818 -g1,17019:6630773,45448818 -g1,17019:6434165,45448818 -(1,17019:6434165,45448818:0,5562618,196608 -r1,17023:32779637,45448818:26345472,5759226,196608 -k1,17019:6434165,45448818:-26345472 -) -(1,17019:6434165,45448818:26345472,5562618,196608 -[1,17019:6630773,45448818:25952256,5366010,0 -(1,17008:6630773,40513853:25952256,431045,112852 -(1,17007:6630773,40513853:0,0,0 -g1,17007:6630773,40513853 -g1,17007:6630773,40513853 -g1,17007:6303093,40513853 -(1,17007:6303093,40513853:0,0,0 -) -g1,17007:6630773,40513853 -) -k1,17008:6630773,40513853:0 -g1,17008:13601806,40513853 -g1,17008:17253299,40513853 -g1,17008:18249161,40513853 -h1,17008:20904793,40513853:0,0,0 -k1,17008:32583029,40513853:11678236 -g1,17008:32583029,40513853 -) -(1,17018:6630773,41329780:25952256,424439,9908 -(1,17010:6630773,41329780:0,0,0 -g1,17010:6630773,41329780 -g1,17010:6630773,41329780 -g1,17010:6303093,41329780 -(1,17010:6303093,41329780:0,0,0 -) -g1,17010:6630773,41329780 -) -g1,17018:7626635,41329780 -g1,17018:8290543,41329780 -g1,17018:8954451,41329780 -g1,17018:11610083,41329780 -g1,17018:12937899,41329780 -g1,17018:13601807,41329780 -h1,17018:13933761,41329780:0,0,0 -k1,17018:32583029,41329780:18649268 -g1,17018:32583029,41329780 -) -(1,17018:6630773,42014635:25952256,424439,106246 -h1,17018:6630773,42014635:0,0,0 -g1,17018:7626635,42014635 -g1,17018:7958589,42014635 -g1,17018:8290543,42014635 -g1,17018:10946175,42014635 -g1,17018:12605945,42014635 -g1,17018:12937899,42014635 -g1,17018:13269853,42014635 -g1,17018:13601807,42014635 -g1,17018:13933761,42014635 -g1,17018:14265715,42014635 -g1,17018:14597669,42014635 -g1,17018:14929623,42014635 -g1,17018:15261577,42014635 -g1,17018:18581116,42014635 -g1,17018:22232609,42014635 -h1,17018:26879964,42014635:0,0,0 -k1,17018:32583029,42014635:5703065 -g1,17018:32583029,42014635 -) -(1,17018:6630773,42699490:25952256,431045,6605 -h1,17018:6630773,42699490:0,0,0 -g1,17018:7626635,42699490 -g1,17018:7958589,42699490 -g1,17018:8290543,42699490 -g1,17018:10282267,42699490 -g1,17018:10614221,42699490 -g1,17018:10946175,42699490 -g1,17018:12937899,42699490 -g1,17018:13269853,42699490 -g1,17018:13601807,42699490 -g1,17018:13933761,42699490 -g1,17018:14265715,42699490 -g1,17018:14597669,42699490 -g1,17018:14929623,42699490 -g1,17018:15261577,42699490 -g1,17018:15593531,42699490 -g1,17018:15925485,42699490 -g1,17018:16257439,42699490 -g1,17018:16589393,42699490 -g1,17018:18581117,42699490 -g1,17018:20572841,42699490 -g1,17018:20904795,42699490 -g1,17018:21236749,42699490 -g1,17018:21568703,42699490 -g1,17018:21900657,42699490 -g1,17018:22232611,42699490 -k1,17018:22232611,42699490:0 -h1,17018:23892381,42699490:0,0,0 -k1,17018:32583029,42699490:8690648 -g1,17018:32583029,42699490 -) -(1,17018:6630773,43384345:25952256,424439,112852 -h1,17018:6630773,43384345:0,0,0 -g1,17018:7626635,43384345 -g1,17018:8290543,43384345 -g1,17018:10614221,43384345 -g1,17018:10946175,43384345 -g1,17018:15261576,43384345 -g1,17018:15593530,43384345 -g1,17018:15925484,43384345 -g1,17018:16257438,43384345 -g1,17018:16589392,43384345 -g1,17018:16921346,43384345 -g1,17018:17253300,43384345 -g1,17018:18581116,43384345 -g1,17018:20572840,43384345 -g1,17018:20904794,43384345 -g1,17018:21236748,43384345 -g1,17018:21568702,43384345 -g1,17018:21900656,43384345 -g1,17018:22232610,43384345 -h1,17018:24224334,43384345:0,0,0 -k1,17018:32583029,43384345:8358695 -g1,17018:32583029,43384345 -) -(1,17018:6630773,44069200:25952256,424439,9908 -h1,17018:6630773,44069200:0,0,0 -g1,17018:7626635,44069200 -g1,17018:8290543,44069200 -g1,17018:10614221,44069200 -g1,17018:10946175,44069200 -g1,17018:14929622,44069200 -g1,17018:15261576,44069200 -g1,17018:15593530,44069200 -g1,17018:15925484,44069200 -g1,17018:16257438,44069200 -g1,17018:16589392,44069200 -g1,17018:16921346,44069200 -g1,17018:17253300,44069200 -g1,17018:18581116,44069200 -g1,17018:20572840,44069200 -g1,17018:20904794,44069200 -g1,17018:21236748,44069200 -g1,17018:21568702,44069200 -g1,17018:21900656,44069200 -g1,17018:22232610,44069200 -h1,17018:23892380,44069200:0,0,0 -k1,17018:32583029,44069200:8690649 -g1,17018:32583029,44069200 -) -(1,17018:6630773,44754055:25952256,424439,112852 -h1,17018:6630773,44754055:0,0,0 -g1,17018:7626635,44754055 -g1,17018:8290543,44754055 -g1,17018:10614221,44754055 -g1,17018:10946175,44754055 -g1,17018:15261576,44754055 -g1,17018:15593530,44754055 -g1,17018:15925484,44754055 -g1,17018:16257438,44754055 -g1,17018:16589392,44754055 -g1,17018:16921346,44754055 -g1,17018:17253300,44754055 -g1,17018:18581116,44754055 -g1,17018:20572840,44754055 -g1,17018:20904794,44754055 -g1,17018:21236748,44754055 -g1,17018:21568702,44754055 -g1,17018:21900656,44754055 -g1,17018:22232610,44754055 -h1,17018:24224334,44754055:0,0,0 -k1,17018:32583029,44754055:8358695 -g1,17018:32583029,44754055 -) -(1,17018:6630773,45438910:25952256,424439,9908 -h1,17018:6630773,45438910:0,0,0 -g1,17018:7626635,45438910 -g1,17018:8290543,45438910 -g1,17018:8954451,45438910 -g1,17018:10282267,45438910 -g1,17018:11942037,45438910 -h1,17018:13269853,45438910:0,0,0 -k1,17018:32583029,45438910:19313176 -g1,17018:32583029,45438910 -) -] -) -g1,17019:32583029,45448818 -g1,17019:6630773,45448818 -g1,17019:6630773,45448818 -g1,17019:32583029,45448818 -g1,17019:32583029,45448818 -) -h1,17019:6630773,45645426:0,0,0 -] -(1,17023:32583029,45706769:0,0,0 -g1,17023:32583029,45706769 -) -) -] -(1,17023:6630773,47279633:25952256,0,0 -h1,17023:6630773,47279633:25952256,0,0 -) -] -(1,17023:4262630,4025873:0,0,0 -[1,17023:-473656,4025873:0,0,0 -(1,17023:-473656,-710413:0,0,0 -(1,17023:-473656,-710413:0,0,0 -g1,17023:-473656,-710413 -) -g1,17023:-473656,-710413 +[1,17021:3078558,4812305:0,0,0 +(1,17021:3078558,49800853:0,16384,2228224 +g1,17021:29030814,49800853 +g1,17021:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17021:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17021:37855564,49800853:1179648,16384,0 +) +) +k1,17021:3078556,49800853:-34777008 +) +] +g1,17021:6630773,4812305 +k1,17021:23347041,4812305:15520891 +g1,17021:23960458,4812305 +g1,17021:27572802,4812305 +g1,17021:29306229,4812305 +) +) +] +[1,17021:6630773,45706769:25952256,40108032,0 +(1,17021:6630773,45706769:25952256,40108032,0 +(1,17021:6630773,45706769:0,0,0 +g1,17021:6630773,45706769 +) +[1,17021:6630773,45706769:25952256,40108032,0 +v1,16957:6630773,6254097:0,393216,0 +(1,16957:6630773,11610198:25952256,5749317,0 +g1,16957:6630773,11610198 +g1,16957:6237557,11610198 +r1,17021:6368629,11610198:131072,5749317,0 +g1,16957:6567858,11610198 +g1,16957:6764466,11610198 +[1,16957:6764466,11610198:25818563,5749317,0 +v1,16942:6764466,6254097:0,393216,0 +(1,16955:6764466,11413590:25818563,5552709,196608 +g1,16955:6764466,11413590 +g1,16955:6764466,11413590 +g1,16955:6567858,11413590 +(1,16955:6567858,11413590:0,5552709,196608 +r1,17021:32779637,11413590:26211779,5749317,196608 +k1,16955:6567857,11413590:-26211780 +) +(1,16955:6567858,11413590:26211779,5552709,196608 +[1,16955:6764466,11413590:25818563,5356101,0 +(1,16944:6764466,6481928:25818563,424439,86428 +(1,16943:6764466,6481928:0,0,0 +g1,16943:6764466,6481928 +g1,16943:6764466,6481928 +g1,16943:6436786,6481928 +(1,16943:6436786,6481928:0,0,0 +) +g1,16943:6764466,6481928 +) +k1,16944:6764466,6481928:0 +g1,16944:9752052,6481928 +g1,16944:10415960,6481928 +g1,16944:12075730,6481928 +g1,16944:12739638,6481928 +g1,16944:13403546,6481928 +g1,16944:14067454,6481928 +g1,16944:14731362,6481928 +h1,16944:15395270,6481928:0,0,0 +k1,16944:32583030,6481928:17187760 +g1,16944:32583030,6481928 +) +(1,16954:6764466,7297855:25818563,424439,9908 +(1,16946:6764466,7297855:0,0,0 +g1,16946:6764466,7297855 +g1,16946:6764466,7297855 +g1,16946:6436786,7297855 +(1,16946:6436786,7297855:0,0,0 +) +g1,16946:6764466,7297855 +) +g1,16954:7760328,7297855 +g1,16954:8424236,7297855 +g1,16954:9088144,7297855 +g1,16954:11743776,7297855 +g1,16954:12407684,7297855 +g1,16954:13071592,7297855 +h1,16954:13403546,7297855:0,0,0 +k1,16954:32583030,7297855:19179484 +g1,16954:32583030,7297855 +) +(1,16954:6764466,7982710:25818563,424439,6605 +h1,16954:6764466,7982710:0,0,0 +g1,16954:7760328,7982710 +g1,16954:8092282,7982710 +g1,16954:8424236,7982710 +g1,16954:8756190,7982710 +g1,16954:9088144,7982710 +g1,16954:9420098,7982710 +g1,16954:9752052,7982710 +g1,16954:10415960,7982710 +g1,16954:10747914,7982710 +g1,16954:11079868,7982710 +g1,16954:11411822,7982710 +g1,16954:11743776,7982710 +h1,16954:12075730,7982710:0,0,0 +k1,16954:32583030,7982710:20507300 +g1,16954:32583030,7982710 +) +(1,16954:6764466,8667565:25818563,424439,6605 +h1,16954:6764466,8667565:0,0,0 +g1,16954:7760328,8667565 +g1,16954:8092282,8667565 +g1,16954:8424236,8667565 +g1,16954:10415960,8667565 +k1,16954:10415960,8667565:0 +h1,16954:12075730,8667565:0,0,0 +k1,16954:32583030,8667565:20507300 +g1,16954:32583030,8667565 +) +(1,16954:6764466,9352420:25818563,407923,0 +h1,16954:6764466,9352420:0,0,0 +g1,16954:7760328,9352420 +g1,16954:8424236,9352420 +g1,16954:8756190,9352420 +g1,16954:9088144,9352420 +g1,16954:9420098,9352420 +g1,16954:9752052,9352420 +g1,16954:10415960,9352420 +g1,16954:10747914,9352420 +g1,16954:11079868,9352420 +g1,16954:11411822,9352420 +g1,16954:11743776,9352420 +h1,16954:12075730,9352420:0,0,0 +k1,16954:32583030,9352420:20507300 +g1,16954:32583030,9352420 +) +(1,16954:6764466,10037275:25818563,407923,0 +h1,16954:6764466,10037275:0,0,0 +g1,16954:7760328,10037275 +g1,16954:8424236,10037275 +g1,16954:8756190,10037275 +g1,16954:9088144,10037275 +g1,16954:9420098,10037275 +g1,16954:9752052,10037275 +g1,16954:10415960,10037275 +g1,16954:10747914,10037275 +g1,16954:11079868,10037275 +g1,16954:11411822,10037275 +g1,16954:11743776,10037275 +h1,16954:12075730,10037275:0,0,0 +k1,16954:32583030,10037275:20507300 +g1,16954:32583030,10037275 +) +(1,16954:6764466,10722130:25818563,407923,9908 +h1,16954:6764466,10722130:0,0,0 +g1,16954:7760328,10722130 +g1,16954:8424236,10722130 +g1,16954:8756190,10722130 +g1,16954:9088144,10722130 +g1,16954:9420098,10722130 +g1,16954:9752052,10722130 +g1,16954:10415960,10722130 +g1,16954:10747914,10722130 +g1,16954:11079868,10722130 +g1,16954:11411822,10722130 +g1,16954:11743776,10722130 +h1,16954:12075730,10722130:0,0,0 +k1,16954:32583030,10722130:20507300 +g1,16954:32583030,10722130 +) +(1,16954:6764466,11406985:25818563,424439,6605 +h1,16954:6764466,11406985:0,0,0 +g1,16954:7760328,11406985 +g1,16954:8424236,11406985 +g1,16954:9088144,11406985 +g1,16954:9752052,11406985 +g1,16954:11411822,11406985 +h1,16954:12739638,11406985:0,0,0 +k1,16954:32583030,11406985:19843392 +g1,16954:32583030,11406985 +) +] +) +g1,16955:32583029,11413590 +g1,16955:6764466,11413590 +g1,16955:6764466,11413590 +g1,16955:32583029,11413590 +g1,16955:32583029,11413590 +) +h1,16955:6764466,11610198:0,0,0 +] +g1,16957:32583029,11610198 +) +h1,16957:6630773,11610198:0,0,0 +(1,16960:6630773,12475278:25952256,513147,134348 +h1,16959:6630773,12475278:983040,0,0 +k1,16959:11497655,12475278:340966 +k1,16959:13232572,12475278:340966 +k1,16959:14592623,12475278:340966 +k1,16959:17595006,12475278:340966 +k1,16959:19503593,12475278:340966 +k1,16959:20863643,12475278:340965 +k1,16959:23959087,12475278:340966 +k1,16959:26752410,12475278:340966 +k1,16959:27449236,12475278:340966 +k1,16959:29502658,12475278:340966 +k1,16959:31227744,12475278:340966 +k1,16959:32583029,12475278:0 +) +(1,16960:6630773,13340358:25952256,505283,126483 +k1,16959:8846055,13340358:285246 +k1,16959:9879067,13340358:285246 +k1,16959:10815741,13340358:285246 +k1,16959:12515254,13340358:285246 +k1,16959:13819585,13340358:285246 +k1,16959:16115476,13340358:285246 +k1,16959:17016761,13340358:285247 +k1,16959:19813347,13340358:285246 +(1,16959:19813347,13340358:0,414482,115847 +r1,17021:21226748,13340358:1413401,530329,115847 +k1,16959:19813347,13340358:-1413401 +) +(1,16959:19813347,13340358:1413401,414482,115847 +k1,16959:19813347,13340358:3277 +h1,16959:21223471,13340358:0,411205,112570 +) +k1,16959:21511994,13340358:285246 +k1,16959:23064706,13340358:285246 +(1,16959:23064706,13340358:0,452978,115847 +r1,17021:26588378,13340358:3523672,568825,115847 +k1,16959:23064706,13340358:-3523672 +) +(1,16959:23064706,13340358:3523672,452978,115847 +k1,16959:23064706,13340358:3277 +h1,16959:26585101,13340358:0,411205,112570 +) +k1,16959:26873624,13340358:285246 +k1,16959:28350315,13340358:285246 +(1,16959:28350315,13340358:0,452978,115847 +r1,17021:31170564,13340358:2820249,568825,115847 +k1,16959:28350315,13340358:-2820249 +) +(1,16959:28350315,13340358:2820249,452978,115847 +k1,16959:28350315,13340358:3277 +h1,16959:31167287,13340358:0,411205,112570 +) +k1,16959:31629480,13340358:285246 +k1,16959:32583029,13340358:0 +) +(1,16960:6630773,14205438:25952256,513147,134348 +k1,16959:7921233,14205438:197975 +(1,16959:7921233,14205438:0,452978,115847 +r1,17021:10741482,14205438:2820249,568825,115847 +k1,16959:7921233,14205438:-2820249 +) +(1,16959:7921233,14205438:2820249,452978,115847 +k1,16959:7921233,14205438:3277 +h1,16959:10738205,14205438:0,411205,112570 +) +k1,16959:10939456,14205438:197974 +k1,16959:12705052,14205438:197975 +k1,16959:14875660,14205438:197975 +k1,16959:16265079,14205438:197974 +(1,16959:16265079,14205438:0,452978,115847 +r1,17021:20843887,14205438:4578808,568825,115847 +k1,16959:16265079,14205438:-4578808 +) +(1,16959:16265079,14205438:4578808,452978,115847 +k1,16959:16265079,14205438:3277 +h1,16959:20840610,14205438:0,411205,112570 +) +k1,16959:21041862,14205438:197975 +k1,16959:22807457,14205438:197974 +k1,16959:25471551,14205438:197975 +k1,16959:26232480,14205438:197975 +k1,16959:29010606,14205438:197974 +k1,16959:31966991,14205438:197975 +k1,16959:32583029,14205438:0 +) +(1,16960:6630773,15070518:25952256,513147,134348 +k1,16959:7847285,15070518:197427 +k1,16959:11426369,15070518:197427 +k1,16959:13568905,15070518:197427 +k1,16959:14379095,15070518:197428 +k1,16959:15595607,15070518:197427 +k1,16959:20048942,15070518:197427 +k1,16959:20905661,15070518:197427 +k1,16959:24077767,15070518:197427 +k1,16959:26852070,15070518:197427 +k1,16959:28003047,15070518:197428 +k1,16959:29292959,15070518:197427 +k1,16959:31764485,15070518:197427 +k1,16960:32583029,15070518:0 +) +(1,16960:6630773,15935598:25952256,505283,134348 +k1,16959:9880016,15935598:191333 +k1,16959:11303425,15935598:191332 +k1,16959:13773445,15935598:191333 +h1,16959:14744033,15935598:0,0,0 +k1,16959:14935366,15935598:191333 +k1,16959:15936069,15935598:191333 +k1,16959:17625554,15935598:191332 +h1,16959:18422472,15935598:0,0,0 +k1,16959:18820899,15935598:191333 +k1,16959:19698394,15935598:191333 +k1,16959:23292355,15935598:191332 +k1,16959:25688975,15935598:191333 +k1,16959:26531736,15935598:191333 +(1,16959:26531736,15935598:0,414482,115847 +r1,17021:29000273,15935598:2468537,530329,115847 +k1,16959:26531736,15935598:-2468537 +) +(1,16959:26531736,15935598:2468537,414482,115847 +k1,16959:26531736,15935598:3277 +h1,16959:28996996,15935598:0,411205,112570 +) +k1,16959:29365276,15935598:191333 +k1,16959:30510157,15935598:191332 +k1,16959:31516758,15935598:191333 +k1,16959:32583029,15935598:0 +) +(1,16960:6630773,16800678:25952256,513147,126483 +k1,16959:8462689,16800678:171234 +k1,16959:9092021,16800678:171235 +k1,16959:10834808,16800678:171234 +k1,16959:12078212,16800678:171235 +(1,16959:12078212,16800678:0,452978,115847 +r1,17021:14898461,16800678:2820249,568825,115847 +k1,16959:12078212,16800678:-2820249 +) +(1,16959:12078212,16800678:2820249,452978,115847 +k1,16959:12078212,16800678:3277 +h1,16959:14895184,16800678:0,411205,112570 +) +k1,16959:15069695,16800678:171234 +k1,16959:16345212,16800678:171235 +k1,16959:17264212,16800678:171234 +k1,16959:18948672,16800678:171234 +k1,16959:20513858,16800678:171235 +k1,16959:23526733,16800678:171234 +k1,16959:24357260,16800678:171235 +k1,16959:25660301,16800678:171234 +(1,16959:25660301,16800678:0,452978,115847 +r1,17021:27073702,16800678:1413401,568825,115847 +k1,16959:25660301,16800678:-1413401 +) +(1,16959:25660301,16800678:1413401,452978,115847 +k1,16959:25660301,16800678:3277 +h1,16959:27070425,16800678:0,411205,112570 +) +k1,16959:27418607,16800678:171235 +k1,16959:28781286,16800678:171234 +k1,16959:32583029,16800678:0 +) +(1,16960:6630773,17665758:25952256,513147,126483 +k1,16959:7957625,17665758:222570 +k1,16959:10457571,17665758:222570 +k1,16959:12690786,17665758:222570 +k1,16959:14480977,17665758:222570 +k1,16959:16935048,17665758:222570 +k1,16959:20044479,17665758:222570 +k1,16959:20736943,17665758:222571 +k1,16959:21491010,17665758:222570 +k1,16959:23180276,17665758:222570 +k1,16959:26032806,17665758:222570 +k1,16959:26906804,17665758:222570 +k1,16959:29540444,17665758:222570 +k1,16959:30572384,17665758:222570 +k1,16959:32583029,17665758:0 +) +(1,16960:6630773,18530838:25952256,505283,134348 +k1,16959:9578582,18530838:193986 +k1,16959:10128429,18530838:193987 +k1,16959:11257614,18530838:193986 +k1,16959:12308157,18530838:193987 +k1,16959:13118181,18530838:193986 +k1,16959:15014138,18530838:193987 +k1,16959:17336733,18530838:193986 +k1,16959:19266113,18530838:193987 +k1,16959:20994297,18530838:193986 +k1,16959:24223912,18530838:193987 +k1,16959:26777194,18530838:193986 +k1,16959:27622609,18530838:193987 +k1,16959:28835680,18530838:193986 +k1,16959:31373890,18530838:193987 +k1,16960:32583029,18530838:0 +k1,16960:32583029,18530838:0 +) +v1,16962:6630773,19215693:0,393216,0 +(1,16978:6630773,26433054:25952256,7610577,196608 +g1,16978:6630773,26433054 +g1,16978:6630773,26433054 +g1,16978:6434165,26433054 +(1,16978:6434165,26433054:0,7610577,196608 +r1,17021:32779637,26433054:26345472,7807185,196608 +k1,16978:6434165,26433054:-26345472 +) +(1,16978:6434165,26433054:26345472,7610577,196608 +[1,16978:6630773,26433054:25952256,7413969,0 +(1,16964:6630773,19443524:25952256,424439,112852 +(1,16963:6630773,19443524:0,0,0 +g1,16963:6630773,19443524 +g1,16963:6630773,19443524 +g1,16963:6303093,19443524 +(1,16963:6303093,19443524:0,0,0 +) +g1,16963:6630773,19443524 +) +g1,16964:10946174,19443524 +k1,16964:10946174,19443524:0 +h1,16964:11610082,19443524:0,0,0 +k1,16964:32583030,19443524:20972948 +g1,16964:32583030,19443524 +) +(1,16965:6630773,20128379:25952256,424439,106246 +h1,16965:6630773,20128379:0,0,0 +g1,16965:6962727,20128379 +g1,16965:7294681,20128379 +g1,16965:13269852,20128379 +g1,16965:13933760,20128379 +g1,16965:19908931,20128379 +k1,16965:19908931,20128379:0 +h1,16965:24888240,20128379:0,0,0 +k1,16965:32583029,20128379:7694789 +g1,16965:32583029,20128379 +) +(1,16966:6630773,20813234:25952256,431045,112852 +h1,16966:6630773,20813234:0,0,0 +g1,16966:6962727,20813234 +g1,16966:7294681,20813234 +g1,16966:7626635,20813234 +g1,16966:7958589,20813234 +g1,16966:8290543,20813234 +g1,16966:8622497,20813234 +g1,16966:8954451,20813234 +g1,16966:9286405,20813234 +g1,16966:9618359,20813234 +g1,16966:14597668,20813234 +g1,16966:15261576,20813234 +g1,16966:21236747,20813234 +g1,16966:26548010,20813234 +g1,16966:27543872,20813234 +h1,16966:31527319,20813234:0,0,0 +k1,16966:32583029,20813234:1055710 +g1,16966:32583029,20813234 +) +(1,16967:6630773,21498089:25952256,424439,112852 +h1,16967:6630773,21498089:0,0,0 +h1,16967:10614220,21498089:0,0,0 +k1,16967:32583028,21498089:21968808 +g1,16967:32583028,21498089 +) +(1,16977:6630773,22314016:25952256,424439,9908 +(1,16969:6630773,22314016:0,0,0 +g1,16969:6630773,22314016 +g1,16969:6630773,22314016 +g1,16969:6303093,22314016 +(1,16969:6303093,22314016:0,0,0 +) +g1,16969:6630773,22314016 +) +g1,16977:7626635,22314016 +g1,16977:8290543,22314016 +g1,16977:8954451,22314016 +g1,16977:11610083,22314016 +g1,16977:12937899,22314016 +g1,16977:13601807,22314016 +h1,16977:13933761,22314016:0,0,0 +k1,16977:32583029,22314016:18649268 +g1,16977:32583029,22314016 +) +(1,16977:6630773,22998871:25952256,424439,106246 +h1,16977:6630773,22998871:0,0,0 +g1,16977:7626635,22998871 +g1,16977:7958589,22998871 +g1,16977:8290543,22998871 +g1,16977:10946175,22998871 +g1,16977:12605945,22998871 +g1,16977:12937899,22998871 +g1,16977:13269853,22998871 +g1,16977:13601807,22998871 +g1,16977:13933761,22998871 +g1,16977:14265715,22998871 +g1,16977:14597669,22998871 +g1,16977:14929623,22998871 +g1,16977:15261577,22998871 +g1,16977:18581116,22998871 +g1,16977:22232609,22998871 +h1,16977:26879964,22998871:0,0,0 +k1,16977:32583029,22998871:5703065 +g1,16977:32583029,22998871 +) +(1,16977:6630773,23683726:25952256,431045,6605 +h1,16977:6630773,23683726:0,0,0 +g1,16977:7626635,23683726 +g1,16977:7958589,23683726 +g1,16977:8290543,23683726 +g1,16977:10282267,23683726 +g1,16977:10614221,23683726 +g1,16977:10946175,23683726 +g1,16977:12937899,23683726 +g1,16977:13269853,23683726 +g1,16977:13601807,23683726 +g1,16977:13933761,23683726 +g1,16977:14265715,23683726 +g1,16977:14597669,23683726 +g1,16977:14929623,23683726 +g1,16977:15261577,23683726 +g1,16977:15593531,23683726 +g1,16977:15925485,23683726 +g1,16977:16257439,23683726 +g1,16977:16589393,23683726 +g1,16977:18581117,23683726 +g1,16977:20572841,23683726 +g1,16977:20904795,23683726 +g1,16977:21236749,23683726 +g1,16977:21568703,23683726 +g1,16977:21900657,23683726 +g1,16977:22232611,23683726 +k1,16977:22232611,23683726:0 +h1,16977:23892381,23683726:0,0,0 +k1,16977:32583029,23683726:8690648 +g1,16977:32583029,23683726 +) +(1,16977:6630773,24368581:25952256,424439,112852 +h1,16977:6630773,24368581:0,0,0 +g1,16977:7626635,24368581 +g1,16977:8290543,24368581 +g1,16977:10614221,24368581 +g1,16977:10946175,24368581 +g1,16977:15261576,24368581 +g1,16977:15593530,24368581 +g1,16977:15925484,24368581 +g1,16977:16257438,24368581 +g1,16977:16589392,24368581 +g1,16977:16921346,24368581 +g1,16977:17253300,24368581 +g1,16977:18581116,24368581 +g1,16977:20572840,24368581 +g1,16977:20904794,24368581 +g1,16977:21236748,24368581 +g1,16977:21568702,24368581 +g1,16977:21900656,24368581 +g1,16977:22232610,24368581 +h1,16977:24224334,24368581:0,0,0 +k1,16977:32583029,24368581:8358695 +g1,16977:32583029,24368581 +) +(1,16977:6630773,25053436:25952256,424439,106246 +h1,16977:6630773,25053436:0,0,0 +g1,16977:7626635,25053436 +g1,16977:8290543,25053436 +g1,16977:10614221,25053436 +g1,16977:10946175,25053436 +g1,16977:14929622,25053436 +g1,16977:15261576,25053436 +g1,16977:15593530,25053436 +g1,16977:15925484,25053436 +g1,16977:16257438,25053436 +g1,16977:16589392,25053436 +g1,16977:16921346,25053436 +g1,16977:17253300,25053436 +g1,16977:18581116,25053436 +g1,16977:20572840,25053436 +g1,16977:20904794,25053436 +g1,16977:21236748,25053436 +g1,16977:21568702,25053436 +g1,16977:21900656,25053436 +g1,16977:22232610,25053436 +h1,16977:23892380,25053436:0,0,0 +k1,16977:32583029,25053436:8690649 +g1,16977:32583029,25053436 +) +(1,16977:6630773,25738291:25952256,424439,112852 +h1,16977:6630773,25738291:0,0,0 +g1,16977:7626635,25738291 +g1,16977:8290543,25738291 +g1,16977:10614221,25738291 +g1,16977:10946175,25738291 +g1,16977:15261576,25738291 +g1,16977:15593530,25738291 +g1,16977:15925484,25738291 +g1,16977:16257438,25738291 +g1,16977:16589392,25738291 +g1,16977:16921346,25738291 +g1,16977:17253300,25738291 +g1,16977:18581116,25738291 +g1,16977:20572840,25738291 +g1,16977:20904794,25738291 +g1,16977:21236748,25738291 +g1,16977:21568702,25738291 +g1,16977:21900656,25738291 +g1,16977:22232610,25738291 +h1,16977:24224334,25738291:0,0,0 +k1,16977:32583029,25738291:8358695 +g1,16977:32583029,25738291 +) +(1,16977:6630773,26423146:25952256,424439,9908 +h1,16977:6630773,26423146:0,0,0 +g1,16977:7626635,26423146 +g1,16977:8290543,26423146 +g1,16977:8954451,26423146 +g1,16977:10282267,26423146 +g1,16977:11942037,26423146 +h1,16977:13269853,26423146:0,0,0 +k1,16977:32583029,26423146:19313176 +g1,16977:32583029,26423146 +) +] +) +g1,16978:32583029,26433054 +g1,16978:6630773,26433054 +g1,16978:6630773,26433054 +g1,16978:32583029,26433054 +g1,16978:32583029,26433054 +) +h1,16978:6630773,26629662:0,0,0 +(1,16983:6630773,27494742:25952256,513147,126483 +h1,16981:6630773,27494742:983040,0,0 +k1,16981:8416579,27494742:174931 +k1,16981:9610594,27494742:174930 +k1,16981:11169645,27494742:174931 +k1,16981:12477693,27494742:174930 +k1,16981:15127263,27494742:174931 +k1,16981:18080921,27494742:174931 +k1,16981:20266496,27494742:174930 +k1,16981:21432987,27494742:174931 +k1,16981:24844741,27494742:174931 +k1,16981:26709189,27494742:174930 +k1,16981:27500158,27494742:174931 +k1,16981:29953775,27494742:174930 +k1,16981:31221191,27494742:174931 +k1,16981:32583029,27494742:0 +) +(1,16983:6630773,28359822:25952256,513147,134348 +k1,16981:8727911,28359822:167102 +k1,16981:11669807,28359822:167102 +k1,16981:12488337,28359822:167102 +k1,16981:15497080,28359822:167102 +k1,16981:16347067,28359822:167102 +k1,16981:18719456,28359822:167102 +k1,16981:19537986,28359822:167102 +k1,16981:20724172,28359822:167101 +k1,16981:22275394,28359822:167102 +k1,16981:25137992,28359822:167102 +k1,16981:25921132,28359822:167102 +k1,16981:26444094,28359822:167102 +k1,16981:28001215,28359822:167102 +k1,16981:29903710,28359822:167102 +(1,16981:29903710,28359822:0,452978,115847 +r1,17021:30613688,28359822:709978,568825,115847 +k1,16981:29903710,28359822:-709978 +) +(1,16981:29903710,28359822:709978,452978,115847 +k1,16981:29903710,28359822:3277 +h1,16981:30610411,28359822:0,411205,112570 +) +k1,16981:30954460,28359822:167102 +k1,16983:32583029,28359822:0 +) +(1,16983:6630773,29224902:25952256,513147,134348 +k1,16982:8046677,29224902:148438 +(1,16982:8046677,29224902:0,452978,122846 +r1,17021:11218637,29224902:3171960,575824,122846 +k1,16982:8046677,29224902:-3171960 +) +(1,16982:8046677,29224902:3171960,452978,122846 +k1,16982:8046677,29224902:3277 +h1,16982:11215360,29224902:0,411205,112570 +) +k1,16982:11367074,29224902:148437 +k1,16982:12047009,29224902:148438 +k1,16982:13708673,29224902:148438 +k1,16982:14508539,29224902:148438 +k1,16982:15927064,29224902:148437 +k1,16982:18723157,29224902:148438 +k1,16982:20917629,29224902:148438 +k1,16982:23326403,29224902:148437 +k1,16982:23830701,29224902:148438 +k1,16982:25368502,29224902:148438 +k1,16982:27393236,29224902:148438 +k1,16982:28224558,29224902:148437 +k1,16982:30184411,29224902:148438 +k1,16982:32583029,29224902:0 +) +(1,16983:6630773,30089982:25952256,505283,134348 +k1,16982:8251437,30089982:178217 +k1,16982:10127692,30089982:178217 +k1,16982:12041303,30089982:178218 +(1,16982:12041303,30089982:0,452978,115847 +r1,17021:14158128,30089982:2116825,568825,115847 +k1,16982:12041303,30089982:-2116825 +) +(1,16982:12041303,30089982:2116825,452978,115847 +k1,16982:12041303,30089982:3277 +h1,16982:14154851,30089982:0,411205,112570 +) +k1,16982:14336345,30089982:178217 +k1,16982:15197447,30089982:178217 +(1,16982:15197447,30089982:0,452978,115847 +r1,17021:17665984,30089982:2468537,568825,115847 +k1,16982:15197447,30089982:-2468537 +) +(1,16982:15197447,30089982:2468537,452978,115847 +k1,16982:15197447,30089982:3277 +h1,16982:17662707,30089982:0,411205,112570 +) +k1,16982:18017871,30089982:178217 +k1,16982:20236880,30089982:178218 +(1,16982:20236880,30089982:0,452978,122846 +r1,17021:24463976,30089982:4227096,575824,122846 +k1,16982:20236880,30089982:-4227096 +) +(1,16982:20236880,30089982:4227096,452978,122846 +k1,16982:20236880,30089982:3277 +h1,16982:24460699,30089982:0,411205,112570 +) +k1,16982:24642193,30089982:178217 +k1,16982:26354608,30089982:178217 +k1,16982:27524385,30089982:178217 +k1,16982:29740773,30089982:178218 +k1,16982:31773659,30089982:178217 +k1,16982:32583029,30089982:0 +) +(1,16983:6630773,30955062:25952256,513147,7863 +g1,16982:7849087,30955062 +g1,16982:10058961,30955062 +g1,16982:10874228,30955062 +g1,16982:12728241,30955062 +g1,16982:13586762,30955062 +g1,16982:14574389,30955062 +k1,16983:32583029,30955062:15243021 +g1,16983:32583029,30955062 +) +v1,16985:6630773,31639917:0,393216,0 +(1,16998:6630773,36802713:25952256,5556012,196608 +g1,16998:6630773,36802713 +g1,16998:6630773,36802713 +g1,16998:6434165,36802713 +(1,16998:6434165,36802713:0,5556012,196608 +r1,17021:32779637,36802713:26345472,5752620,196608 +k1,16998:6434165,36802713:-26345472 +) +(1,16998:6434165,36802713:26345472,5556012,196608 +[1,16998:6630773,36802713:25952256,5359404,0 +(1,16987:6630773,31867748:25952256,424439,112852 +(1,16986:6630773,31867748:0,0,0 +g1,16986:6630773,31867748 +g1,16986:6630773,31867748 +g1,16986:6303093,31867748 +(1,16986:6303093,31867748:0,0,0 +) +g1,16986:6630773,31867748 +) +k1,16987:6630773,31867748:0 +g1,16987:13933760,31867748 +g1,16987:16921346,31867748 +g1,16987:20904793,31867748 +h1,16987:25884102,31867748:0,0,0 +k1,16987:32583029,31867748:6698927 +g1,16987:32583029,31867748 +) +(1,16997:6630773,32683675:25952256,424439,9908 +(1,16989:6630773,32683675:0,0,0 +g1,16989:6630773,32683675 +g1,16989:6630773,32683675 +g1,16989:6303093,32683675 +(1,16989:6303093,32683675:0,0,0 +) +g1,16989:6630773,32683675 +) +g1,16997:7626635,32683675 +g1,16997:8290543,32683675 +g1,16997:8954451,32683675 +g1,16997:11610083,32683675 +g1,16997:12937899,32683675 +g1,16997:13601807,32683675 +h1,16997:13933761,32683675:0,0,0 +k1,16997:32583029,32683675:18649268 +g1,16997:32583029,32683675 +) +(1,16997:6630773,33368530:25952256,424439,106246 +h1,16997:6630773,33368530:0,0,0 +g1,16997:7626635,33368530 +g1,16997:7958589,33368530 +g1,16997:8290543,33368530 +g1,16997:10946175,33368530 +g1,16997:12605945,33368530 +g1,16997:12937899,33368530 +g1,16997:13269853,33368530 +g1,16997:13601807,33368530 +g1,16997:13933761,33368530 +g1,16997:14265715,33368530 +g1,16997:14597669,33368530 +g1,16997:14929623,33368530 +g1,16997:15261577,33368530 +g1,16997:18581116,33368530 +g1,16997:22232609,33368530 +h1,16997:26879964,33368530:0,0,0 +k1,16997:32583029,33368530:5703065 +g1,16997:32583029,33368530 +) +(1,16997:6630773,34053385:25952256,431045,6605 +h1,16997:6630773,34053385:0,0,0 +g1,16997:7626635,34053385 +g1,16997:7958589,34053385 +g1,16997:8290543,34053385 +g1,16997:10282267,34053385 +g1,16997:10614221,34053385 +g1,16997:10946175,34053385 +g1,16997:12937899,34053385 +g1,16997:13269853,34053385 +g1,16997:13601807,34053385 +g1,16997:13933761,34053385 +g1,16997:14265715,34053385 +g1,16997:14597669,34053385 +g1,16997:14929623,34053385 +g1,16997:15261577,34053385 +g1,16997:15593531,34053385 +g1,16997:15925485,34053385 +g1,16997:16257439,34053385 +g1,16997:16589393,34053385 +g1,16997:18581117,34053385 +g1,16997:20572841,34053385 +g1,16997:20904795,34053385 +g1,16997:21236749,34053385 +g1,16997:21568703,34053385 +g1,16997:21900657,34053385 +g1,16997:22232611,34053385 +k1,16997:22232611,34053385:0 +h1,16997:23892381,34053385:0,0,0 +k1,16997:32583029,34053385:8690648 +g1,16997:32583029,34053385 +) +(1,16997:6630773,34738240:25952256,424439,112852 +h1,16997:6630773,34738240:0,0,0 +g1,16997:7626635,34738240 +g1,16997:8290543,34738240 +g1,16997:10614221,34738240 +g1,16997:10946175,34738240 +g1,16997:15261576,34738240 +g1,16997:15593530,34738240 +g1,16997:15925484,34738240 +g1,16997:16257438,34738240 +g1,16997:16589392,34738240 +g1,16997:16921346,34738240 +g1,16997:17253300,34738240 +g1,16997:18581116,34738240 +g1,16997:20572840,34738240 +g1,16997:20904794,34738240 +g1,16997:21236748,34738240 +g1,16997:21568702,34738240 +g1,16997:21900656,34738240 +g1,16997:22232610,34738240 +h1,16997:24224334,34738240:0,0,0 +k1,16997:32583029,34738240:8358695 +g1,16997:32583029,34738240 +) +(1,16997:6630773,35423095:25952256,424439,112852 +h1,16997:6630773,35423095:0,0,0 +g1,16997:7626635,35423095 +g1,16997:8290543,35423095 +g1,16997:10614221,35423095 +g1,16997:10946175,35423095 +g1,16997:15261576,35423095 +g1,16997:15593530,35423095 +g1,16997:15925484,35423095 +g1,16997:16257438,35423095 +g1,16997:16589392,35423095 +g1,16997:16921346,35423095 +g1,16997:17253300,35423095 +g1,16997:18581116,35423095 +g1,16997:20572840,35423095 +g1,16997:20904794,35423095 +g1,16997:21236748,35423095 +g1,16997:21568702,35423095 +g1,16997:21900656,35423095 +g1,16997:22232610,35423095 +h1,16997:24224334,35423095:0,0,0 +k1,16997:32583029,35423095:8358695 +g1,16997:32583029,35423095 +) +(1,16997:6630773,36107950:25952256,424439,112852 +h1,16997:6630773,36107950:0,0,0 +g1,16997:7626635,36107950 +g1,16997:8290543,36107950 +g1,16997:10614221,36107950 +g1,16997:10946175,36107950 +g1,16997:15261576,36107950 +g1,16997:15593530,36107950 +g1,16997:15925484,36107950 +g1,16997:16257438,36107950 +g1,16997:16589392,36107950 +g1,16997:16921346,36107950 +g1,16997:17253300,36107950 +g1,16997:18581116,36107950 +g1,16997:20572840,36107950 +g1,16997:20904794,36107950 +g1,16997:21236748,36107950 +g1,16997:21568702,36107950 +g1,16997:21900656,36107950 +g1,16997:22232610,36107950 +h1,16997:24224334,36107950:0,0,0 +k1,16997:32583029,36107950:8358695 +g1,16997:32583029,36107950 +) +(1,16997:6630773,36792805:25952256,424439,9908 +h1,16997:6630773,36792805:0,0,0 +g1,16997:7626635,36792805 +g1,16997:8290543,36792805 +g1,16997:8954451,36792805 +g1,16997:10282267,36792805 +g1,16997:11942037,36792805 +h1,16997:13269853,36792805:0,0,0 +k1,16997:32583029,36792805:19313176 +g1,16997:32583029,36792805 +) +] +) +g1,16998:32583029,36802713 +g1,16998:6630773,36802713 +g1,16998:6630773,36802713 +g1,16998:32583029,36802713 +g1,16998:32583029,36802713 +) +h1,16998:6630773,36999321:0,0,0 +(1,17002:6630773,37864401:25952256,513147,115847 +h1,17001:6630773,37864401:983040,0,0 +k1,17001:10585340,37864401:181659 +(1,17001:10585340,37864401:0,459977,115847 +r1,17021:13405589,37864401:2820249,575824,115847 +k1,17001:10585340,37864401:-2820249 +) +(1,17001:10585340,37864401:2820249,459977,115847 +k1,17001:10585340,37864401:3277 +h1,17001:13402312,37864401:0,411205,112570 +) +k1,17001:13587248,37864401:181659 +k1,17001:14873190,37864401:181660 +k1,17001:15802615,37864401:181659 +k1,17001:17497500,37864401:181659 +k1,17001:18330587,37864401:181659 +k1,17001:20716223,37864401:181660 +k1,17001:21253742,37864401:181659 +k1,17001:23515514,37864401:181659 +k1,17001:24356465,37864401:181659 +k1,17001:28929693,37864401:181660 +k1,17001:29762780,37864401:181659 +(1,17001:29762780,37864401:0,452978,115847 +r1,17021:32583029,37864401:2820249,568825,115847 +k1,17001:29762780,37864401:-2820249 +) +(1,17001:29762780,37864401:2820249,452978,115847 +k1,17001:29762780,37864401:3277 +h1,17001:32579752,37864401:0,411205,112570 +) +k1,17001:32583029,37864401:0 +) +(1,17002:6630773,38729481:25952256,513147,126483 +k1,17001:7906665,38729481:203723 +k1,17001:9504340,38729481:203724 +k1,17001:10063923,38729481:203723 +k1,17001:12351691,38729481:203723 +k1,17001:15836147,38729481:203724 +k1,17001:17433821,38729481:203723 +k1,17001:18922051,38729481:203724 +k1,17001:19785066,38729481:203723 +k1,17001:21690759,38729481:203723 +k1,17001:24920280,38729481:203724 +k1,17001:25740041,38729481:203723 +k1,17001:26962849,38729481:203723 +k1,17001:30548230,38729481:203724 +k1,17001:31379788,38729481:203723 +k1,17001:32583029,38729481:0 +) +(1,17002:6630773,39594561:25952256,513147,134348 +g1,17001:8370753,39594561 +g1,17001:9765359,39594561 +g1,17001:11030859,39594561 +g1,17001:11889380,39594561 +g1,17001:13107694,39594561 +g1,17001:15742241,39594561 +g1,17001:17136847,39594561 +g1,17001:18870274,39594561 +g1,17001:20061063,39594561 +k1,17002:32583029,39594561:9836956 +g1,17002:32583029,39594561 +) +v1,17004:6630773,40279416:0,393216,0 +(1,17017:6630773,45448818:25952256,5562618,196608 +g1,17017:6630773,45448818 +g1,17017:6630773,45448818 +g1,17017:6434165,45448818 +(1,17017:6434165,45448818:0,5562618,196608 +r1,17021:32779637,45448818:26345472,5759226,196608 +k1,17017:6434165,45448818:-26345472 +) +(1,17017:6434165,45448818:26345472,5562618,196608 +[1,17017:6630773,45448818:25952256,5366010,0 +(1,17006:6630773,40513853:25952256,431045,112852 +(1,17005:6630773,40513853:0,0,0 +g1,17005:6630773,40513853 +g1,17005:6630773,40513853 +g1,17005:6303093,40513853 +(1,17005:6303093,40513853:0,0,0 +) +g1,17005:6630773,40513853 +) +k1,17006:6630773,40513853:0 +g1,17006:13601806,40513853 +g1,17006:17253299,40513853 +g1,17006:18249161,40513853 +h1,17006:20904793,40513853:0,0,0 +k1,17006:32583029,40513853:11678236 +g1,17006:32583029,40513853 +) +(1,17016:6630773,41329780:25952256,424439,9908 +(1,17008:6630773,41329780:0,0,0 +g1,17008:6630773,41329780 +g1,17008:6630773,41329780 +g1,17008:6303093,41329780 +(1,17008:6303093,41329780:0,0,0 +) +g1,17008:6630773,41329780 +) +g1,17016:7626635,41329780 +g1,17016:8290543,41329780 +g1,17016:8954451,41329780 +g1,17016:11610083,41329780 +g1,17016:12937899,41329780 +g1,17016:13601807,41329780 +h1,17016:13933761,41329780:0,0,0 +k1,17016:32583029,41329780:18649268 +g1,17016:32583029,41329780 +) +(1,17016:6630773,42014635:25952256,424439,106246 +h1,17016:6630773,42014635:0,0,0 +g1,17016:7626635,42014635 +g1,17016:7958589,42014635 +g1,17016:8290543,42014635 +g1,17016:10946175,42014635 +g1,17016:12605945,42014635 +g1,17016:12937899,42014635 +g1,17016:13269853,42014635 +g1,17016:13601807,42014635 +g1,17016:13933761,42014635 +g1,17016:14265715,42014635 +g1,17016:14597669,42014635 +g1,17016:14929623,42014635 +g1,17016:15261577,42014635 +g1,17016:18581116,42014635 +g1,17016:22232609,42014635 +h1,17016:26879964,42014635:0,0,0 +k1,17016:32583029,42014635:5703065 +g1,17016:32583029,42014635 +) +(1,17016:6630773,42699490:25952256,431045,6605 +h1,17016:6630773,42699490:0,0,0 +g1,17016:7626635,42699490 +g1,17016:7958589,42699490 +g1,17016:8290543,42699490 +g1,17016:10282267,42699490 +g1,17016:10614221,42699490 +g1,17016:10946175,42699490 +g1,17016:12937899,42699490 +g1,17016:13269853,42699490 +g1,17016:13601807,42699490 +g1,17016:13933761,42699490 +g1,17016:14265715,42699490 +g1,17016:14597669,42699490 +g1,17016:14929623,42699490 +g1,17016:15261577,42699490 +g1,17016:15593531,42699490 +g1,17016:15925485,42699490 +g1,17016:16257439,42699490 +g1,17016:16589393,42699490 +g1,17016:18581117,42699490 +g1,17016:20572841,42699490 +g1,17016:20904795,42699490 +g1,17016:21236749,42699490 +g1,17016:21568703,42699490 +g1,17016:21900657,42699490 +g1,17016:22232611,42699490 +k1,17016:22232611,42699490:0 +h1,17016:23892381,42699490:0,0,0 +k1,17016:32583029,42699490:8690648 +g1,17016:32583029,42699490 +) +(1,17016:6630773,43384345:25952256,424439,112852 +h1,17016:6630773,43384345:0,0,0 +g1,17016:7626635,43384345 +g1,17016:8290543,43384345 +g1,17016:10614221,43384345 +g1,17016:10946175,43384345 +g1,17016:15261576,43384345 +g1,17016:15593530,43384345 +g1,17016:15925484,43384345 +g1,17016:16257438,43384345 +g1,17016:16589392,43384345 +g1,17016:16921346,43384345 +g1,17016:17253300,43384345 +g1,17016:18581116,43384345 +g1,17016:20572840,43384345 +g1,17016:20904794,43384345 +g1,17016:21236748,43384345 +g1,17016:21568702,43384345 +g1,17016:21900656,43384345 +g1,17016:22232610,43384345 +h1,17016:24224334,43384345:0,0,0 +k1,17016:32583029,43384345:8358695 +g1,17016:32583029,43384345 +) +(1,17016:6630773,44069200:25952256,424439,9908 +h1,17016:6630773,44069200:0,0,0 +g1,17016:7626635,44069200 +g1,17016:8290543,44069200 +g1,17016:10614221,44069200 +g1,17016:10946175,44069200 +g1,17016:14929622,44069200 +g1,17016:15261576,44069200 +g1,17016:15593530,44069200 +g1,17016:15925484,44069200 +g1,17016:16257438,44069200 +g1,17016:16589392,44069200 +g1,17016:16921346,44069200 +g1,17016:17253300,44069200 +g1,17016:18581116,44069200 +g1,17016:20572840,44069200 +g1,17016:20904794,44069200 +g1,17016:21236748,44069200 +g1,17016:21568702,44069200 +g1,17016:21900656,44069200 +g1,17016:22232610,44069200 +h1,17016:23892380,44069200:0,0,0 +k1,17016:32583029,44069200:8690649 +g1,17016:32583029,44069200 +) +(1,17016:6630773,44754055:25952256,424439,112852 +h1,17016:6630773,44754055:0,0,0 +g1,17016:7626635,44754055 +g1,17016:8290543,44754055 +g1,17016:10614221,44754055 +g1,17016:10946175,44754055 +g1,17016:15261576,44754055 +g1,17016:15593530,44754055 +g1,17016:15925484,44754055 +g1,17016:16257438,44754055 +g1,17016:16589392,44754055 +g1,17016:16921346,44754055 +g1,17016:17253300,44754055 +g1,17016:18581116,44754055 +g1,17016:20572840,44754055 +g1,17016:20904794,44754055 +g1,17016:21236748,44754055 +g1,17016:21568702,44754055 +g1,17016:21900656,44754055 +g1,17016:22232610,44754055 +h1,17016:24224334,44754055:0,0,0 +k1,17016:32583029,44754055:8358695 +g1,17016:32583029,44754055 +) +(1,17016:6630773,45438910:25952256,424439,9908 +h1,17016:6630773,45438910:0,0,0 +g1,17016:7626635,45438910 +g1,17016:8290543,45438910 +g1,17016:8954451,45438910 +g1,17016:10282267,45438910 +g1,17016:11942037,45438910 +h1,17016:13269853,45438910:0,0,0 +k1,17016:32583029,45438910:19313176 +g1,17016:32583029,45438910 +) +] +) +g1,17017:32583029,45448818 +g1,17017:6630773,45448818 +g1,17017:6630773,45448818 +g1,17017:32583029,45448818 +g1,17017:32583029,45448818 +) +h1,17017:6630773,45645426:0,0,0 +] +(1,17021:32583029,45706769:0,0,0 +g1,17021:32583029,45706769 +) +) +] +(1,17021:6630773,47279633:25952256,0,0 +h1,17021:6630773,47279633:25952256,0,0 +) +] +(1,17021:4262630,4025873:0,0,0 +[1,17021:-473656,4025873:0,0,0 +(1,17021:-473656,-710413:0,0,0 +(1,17021:-473656,-710413:0,0,0 +g1,17021:-473656,-710413 +) +g1,17021:-473656,-710413 ) ] ) ] !36543 -}275 -Input:2852:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2853:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2854:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2855:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}276 Input:2856:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2857:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2858:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -296540,2315 +296744,2315 @@ Input:2863:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2864:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2865:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2866:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2868:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2869:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2870:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{276 -[1,17099:4262630,47279633:28320399,43253760,0 -(1,17099:4262630,4025873:0,0,0 -[1,17099:-473656,4025873:0,0,0 -(1,17099:-473656,-710413:0,0,0 -(1,17099:-473656,-644877:0,0,0 -k1,17099:-473656,-644877:-65536 +{277 +[1,17097:4262630,47279633:28320399,43253760,0 +(1,17097:4262630,4025873:0,0,0 +[1,17097:-473656,4025873:0,0,0 +(1,17097:-473656,-710413:0,0,0 +(1,17097:-473656,-644877:0,0,0 +k1,17097:-473656,-644877:-65536 ) -(1,17099:-473656,4736287:0,0,0 -k1,17099:-473656,4736287:5209943 +(1,17097:-473656,4736287:0,0,0 +k1,17097:-473656,4736287:5209943 ) -g1,17099:-473656,-710413 +g1,17097:-473656,-710413 ) ] ) -[1,17099:6630773,47279633:25952256,43253760,0 -[1,17099:6630773,4812305:25952256,786432,0 -(1,17099:6630773,4812305:25952256,505283,126483 -(1,17099:6630773,4812305:25952256,505283,126483 -g1,17099:3078558,4812305 -[1,17099:3078558,4812305:0,0,0 -(1,17099:3078558,2439708:0,1703936,0 -k1,17099:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17099:2537886,2439708:1179648,16384,0 +[1,17097:6630773,47279633:25952256,43253760,0 +[1,17097:6630773,4812305:25952256,786432,0 +(1,17097:6630773,4812305:25952256,505283,126483 +(1,17097:6630773,4812305:25952256,505283,126483 +g1,17097:3078558,4812305 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,2439708:0,1703936,0 +k1,17097:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17097:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17099:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17097:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17099:3078558,4812305:0,0,0 -(1,17099:3078558,2439708:0,1703936,0 -g1,17099:29030814,2439708 -g1,17099:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17099:36151628,1915420:16384,1179648,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,2439708:0,1703936,0 +g1,17097:29030814,2439708 +g1,17097:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17097:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17099:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17097:37855564,2439708:1179648,16384,0 ) ) -k1,17099:3078556,2439708:-34777008 +k1,17097:3078556,2439708:-34777008 ) ] -[1,17099:3078558,4812305:0,0,0 -(1,17099:3078558,49800853:0,16384,2228224 -k1,17099:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17099:2537886,49800853:1179648,16384,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,49800853:0,16384,2228224 +k1,17097:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17097:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17099:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17097:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17099:3078558,4812305:0,0,0 -(1,17099:3078558,49800853:0,16384,2228224 -g1,17099:29030814,49800853 -g1,17099:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17099:36151628,51504789:16384,1179648,0 +[1,17097:3078558,4812305:0,0,0 +(1,17097:3078558,49800853:0,16384,2228224 +g1,17097:29030814,49800853 +g1,17097:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17097:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17099:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17097:37855564,49800853:1179648,16384,0 ) ) -k1,17099:3078556,49800853:-34777008 +k1,17097:3078556,49800853:-34777008 ) ] -g1,17099:6630773,4812305 -g1,17099:6630773,4812305 -g1,17099:8364200,4812305 -g1,17099:12733485,4812305 -g1,17099:14295863,4812305 -g1,17099:16502459,4812305 -g1,17099:16701688,4812305 -k1,17099:31387652,4812305:14685964 -) -) -] -[1,17099:6630773,45706769:25952256,40108032,0 -(1,17099:6630773,45706769:25952256,40108032,0 -(1,17099:6630773,45706769:0,0,0 -g1,17099:6630773,45706769 +g1,17097:6630773,4812305 +g1,17097:6630773,4812305 +g1,17097:8364200,4812305 +g1,17097:12733485,4812305 +g1,17097:14295863,4812305 +g1,17097:16502459,4812305 +g1,17097:16701688,4812305 +k1,17097:31387652,4812305:14685964 +) +) +] +[1,17097:6630773,45706769:25952256,40108032,0 +(1,17097:6630773,45706769:25952256,40108032,0 +(1,17097:6630773,45706769:0,0,0 +g1,17097:6630773,45706769 ) -[1,17099:6630773,45706769:25952256,40108032,0 -(1,17023:6630773,6254097:25952256,513147,115847 -h1,17022:6630773,6254097:983040,0,0 -k1,17022:10765405,6254097:361724 -(1,17022:10765405,6254097:0,452978,115847 -r1,17099:13233942,6254097:2468537,568825,115847 -k1,17022:10765405,6254097:-2468537 -) -(1,17022:10765405,6254097:2468537,452978,115847 -k1,17022:10765405,6254097:3277 -h1,17022:13230665,6254097:0,411205,112570 -) -k1,17022:13595666,6254097:361724 -k1,17022:15061672,6254097:361724 -k1,17022:16171161,6254097:361723 -k1,17022:18046111,6254097:361724 -k1,17022:19059263,6254097:361724 -k1,17022:21624963,6254097:361724 -k1,17022:22342547,6254097:361724 -k1,17022:24784384,6254097:361724 -k1,17022:25805399,6254097:361723 -k1,17022:27701321,6254097:361724 -k1,17022:29917714,6254097:361724 -k1,17022:31088808,6254097:361724 -k1,17022:32583029,6254097:0 -) -(1,17023:6630773,7119177:25952256,505283,126483 -k1,17022:11154012,7119177:152643 -k1,17022:14380950,7119177:152644 -k1,17022:15818099,7119177:152643 -k1,17022:16586781,7119177:152644 -k1,17022:18173352,7119177:152643 -k1,17022:18740792,7119177:152597 -k1,17022:20849685,7119177:152643 -k1,17022:22094814,7119177:152644 -k1,17022:25422676,7119177:152643 -k1,17022:28609637,7119177:152644 -k1,17022:31189078,7119177:152643 -k1,17022:32583029,7119177:0 -) -(1,17023:6630773,7984257:25952256,505283,126483 -g1,17022:7849087,7984257 -(1,17022:7849087,7984257:0,452978,115847 -r1,17099:9614201,7984257:1765114,568825,115847 -k1,17022:7849087,7984257:-1765114 -) -(1,17022:7849087,7984257:1765114,452978,115847 -g1,17022:8555788,7984257 -g1,17022:9259212,7984257 -h1,17022:9610924,7984257:0,411205,112570 -) -g1,17022:9813430,7984257 -g1,17022:12932943,7984257 -(1,17022:12932943,7984257:0,452978,122846 -r1,17099:19622022,7984257:6689079,575824,122846 -k1,17022:12932943,7984257:-6689079 -) -(1,17022:12932943,7984257:6689079,452978,122846 -g1,17022:19267033,7984257 -h1,17022:19618745,7984257:0,411205,112570 -) -k1,17023:32583029,7984257:12908579 -g1,17023:32583029,7984257 -) -v1,17025:6630773,8669112:0,393216,0 -(1,17038:6630773,13828605:25952256,5552709,196608 -g1,17038:6630773,13828605 -g1,17038:6630773,13828605 -g1,17038:6434165,13828605 -(1,17038:6434165,13828605:0,5552709,196608 -r1,17099:32779637,13828605:26345472,5749317,196608 -k1,17038:6434165,13828605:-26345472 -) -(1,17038:6434165,13828605:26345472,5552709,196608 -[1,17038:6630773,13828605:25952256,5356101,0 -(1,17027:6630773,8896943:25952256,424439,112852 -(1,17026:6630773,8896943:0,0,0 -g1,17026:6630773,8896943 -g1,17026:6630773,8896943 -g1,17026:6303093,8896943 -(1,17026:6303093,8896943:0,0,0 -) -g1,17026:6630773,8896943 -) -k1,17027:6630773,8896943:0 -g1,17027:13269852,8896943 -h1,17027:14597668,8896943:0,0,0 -k1,17027:32583028,8896943:17985360 -g1,17027:32583028,8896943 -) -(1,17037:6630773,9712870:25952256,424439,9908 -(1,17029:6630773,9712870:0,0,0 -g1,17029:6630773,9712870 -g1,17029:6630773,9712870 -g1,17029:6303093,9712870 -(1,17029:6303093,9712870:0,0,0 -) -g1,17029:6630773,9712870 -) -g1,17037:7626635,9712870 -g1,17037:8290543,9712870 -g1,17037:8954451,9712870 -g1,17037:11610083,9712870 -g1,17037:12273991,9712870 -g1,17037:12937899,9712870 -h1,17037:13269853,9712870:0,0,0 -k1,17037:32583029,9712870:19313176 -g1,17037:32583029,9712870 -) -(1,17037:6630773,10397725:25952256,424439,106246 -h1,17037:6630773,10397725:0,0,0 -g1,17037:7626635,10397725 -g1,17037:7958589,10397725 -g1,17037:8290543,10397725 -g1,17037:10946175,10397725 -g1,17037:12605945,10397725 -g1,17037:12937899,10397725 -g1,17037:13269853,10397725 -g1,17037:13601807,10397725 -g1,17037:13933761,10397725 -g1,17037:14265715,10397725 -g1,17037:14597669,10397725 -g1,17037:14929623,10397725 -g1,17037:15261577,10397725 -g1,17037:18581116,10397725 -g1,17037:22232609,10397725 -h1,17037:26879964,10397725:0,0,0 -k1,17037:32583029,10397725:5703065 -g1,17037:32583029,10397725 -) -(1,17037:6630773,11082580:25952256,431045,6605 -h1,17037:6630773,11082580:0,0,0 -g1,17037:7626635,11082580 -g1,17037:7958589,11082580 -g1,17037:8290543,11082580 -g1,17037:10282267,11082580 -g1,17037:10614221,11082580 -g1,17037:10946175,11082580 -g1,17037:12937899,11082580 -g1,17037:13269853,11082580 -g1,17037:13601807,11082580 -g1,17037:13933761,11082580 -g1,17037:14265715,11082580 -g1,17037:14597669,11082580 -g1,17037:14929623,11082580 -g1,17037:15261577,11082580 -g1,17037:15593531,11082580 -g1,17037:15925485,11082580 -g1,17037:16257439,11082580 -g1,17037:16589393,11082580 -g1,17037:18581117,11082580 -g1,17037:20572841,11082580 -g1,17037:20904795,11082580 -g1,17037:21236749,11082580 -g1,17037:21568703,11082580 -g1,17037:21900657,11082580 -g1,17037:22232611,11082580 -k1,17037:22232611,11082580:0 -h1,17037:23892381,11082580:0,0,0 -k1,17037:32583029,11082580:8690648 -g1,17037:32583029,11082580 -) -(1,17037:6630773,11767435:25952256,424439,112852 -h1,17037:6630773,11767435:0,0,0 -g1,17037:7626635,11767435 -g1,17037:8290543,11767435 -g1,17037:10614221,11767435 -g1,17037:10946175,11767435 -g1,17037:15261576,11767435 -g1,17037:15593530,11767435 -g1,17037:15925484,11767435 -g1,17037:16257438,11767435 -g1,17037:16589392,11767435 -g1,17037:16921346,11767435 -g1,17037:17253300,11767435 -g1,17037:18581116,11767435 -g1,17037:20572840,11767435 -g1,17037:20904794,11767435 -g1,17037:21236748,11767435 -g1,17037:21568702,11767435 -g1,17037:21900656,11767435 -g1,17037:22232610,11767435 -h1,17037:24224334,11767435:0,0,0 -k1,17037:32583029,11767435:8358695 -g1,17037:32583029,11767435 -) -(1,17037:6630773,12452290:25952256,424439,106246 -h1,17037:6630773,12452290:0,0,0 -g1,17037:7626635,12452290 -g1,17037:8290543,12452290 -g1,17037:10614221,12452290 -g1,17037:10946175,12452290 -g1,17037:14929622,12452290 -g1,17037:15261576,12452290 -g1,17037:15593530,12452290 -g1,17037:15925484,12452290 -g1,17037:16257438,12452290 -g1,17037:16589392,12452290 -g1,17037:16921346,12452290 -g1,17037:17253300,12452290 -g1,17037:18581116,12452290 -g1,17037:20572840,12452290 -g1,17037:20904794,12452290 -g1,17037:21236748,12452290 -g1,17037:21568702,12452290 -g1,17037:21900656,12452290 -g1,17037:22232610,12452290 -h1,17037:23892380,12452290:0,0,0 -k1,17037:32583029,12452290:8690649 -g1,17037:32583029,12452290 -) -(1,17037:6630773,13137145:25952256,424439,112852 -h1,17037:6630773,13137145:0,0,0 -g1,17037:7626635,13137145 -g1,17037:8290543,13137145 -g1,17037:10614221,13137145 -g1,17037:10946175,13137145 -g1,17037:15261576,13137145 -g1,17037:15593530,13137145 -g1,17037:15925484,13137145 -g1,17037:16257438,13137145 -g1,17037:16589392,13137145 -g1,17037:16921346,13137145 -g1,17037:17253300,13137145 -g1,17037:18581116,13137145 -g1,17037:20572840,13137145 -g1,17037:20904794,13137145 -g1,17037:21236748,13137145 -g1,17037:21568702,13137145 -g1,17037:21900656,13137145 -g1,17037:22232610,13137145 -h1,17037:24224334,13137145:0,0,0 -k1,17037:32583029,13137145:8358695 -g1,17037:32583029,13137145 -) -(1,17037:6630773,13822000:25952256,424439,6605 -h1,17037:6630773,13822000:0,0,0 -g1,17037:7626635,13822000 -g1,17037:8290543,13822000 -g1,17037:8954451,13822000 -g1,17037:9618359,13822000 -g1,17037:11278129,13822000 -h1,17037:12605945,13822000:0,0,0 -k1,17037:32583029,13822000:19977084 -g1,17037:32583029,13822000 -) -] -) -g1,17038:32583029,13828605 -g1,17038:6630773,13828605 -g1,17038:6630773,13828605 -g1,17038:32583029,13828605 -g1,17038:32583029,13828605 -) -h1,17038:6630773,14025213:0,0,0 -(1,17042:6630773,14890293:25952256,513147,115847 -h1,17041:6630773,14890293:983040,0,0 -k1,17041:10634293,14890293:230612 -(1,17041:10634293,14890293:0,452978,115847 -r1,17099:13454542,14890293:2820249,568825,115847 -k1,17041:10634293,14890293:-2820249 -) -(1,17041:10634293,14890293:2820249,452978,115847 -k1,17041:10634293,14890293:3277 -h1,17041:13451265,14890293:0,411205,112570 -) -k1,17041:13685155,14890293:230613 -k1,17041:15020049,14890293:230612 -k1,17041:15998427,14890293:230612 -k1,17041:17742266,14890293:230613 -k1,17041:18624306,14890293:230612 -k1,17041:21058894,14890293:230612 -k1,17041:21645367,14890293:230613 -k1,17041:23956092,14890293:230612 -k1,17041:24845996,14890293:230612 -k1,17041:29648401,14890293:230613 -k1,17041:31835263,14890293:230612 -k1,17041:32583029,14890293:0 -) -(1,17042:6630773,15755373:25952256,505283,134348 -k1,17041:8483991,15755373:275766 -k1,17041:10153709,15755373:275767 -k1,17041:13604694,15755373:275766 -k1,17041:16914778,15755373:275767 -k1,17041:19617342,15755373:275766 -k1,17041:21287060,15755373:275767 -(1,17041:21287060,15755373:0,452978,115847 -r1,17099:23052174,15755373:1765114,568825,115847 -k1,17041:21287060,15755373:-1765114 -) -(1,17041:21287060,15755373:1765114,452978,115847 -g1,17041:21993761,15755373 -g1,17041:22697185,15755373 -h1,17041:23048897,15755373:0,411205,112570 -) -k1,17041:23501610,15755373:275766 -k1,17041:26204831,15755373:275767 -k1,17041:28119652,15755373:275766 -k1,17041:29046847,15755373:275767 -k1,17041:30341698,15755373:275766 -k1,17041:32583029,15755373:0 -) -(1,17042:6630773,16620453:25952256,505283,134348 -k1,17041:9851649,16620453:148548 -k1,17041:10686360,16620453:148549 -k1,17041:13455037,16620453:148548 -k1,17041:16030383,16620453:148548 -k1,17041:16861817,16620453:148549 -k1,17041:19393254,16620453:148548 -k1,17041:21610118,16620453:148548 -k1,17041:22374705,16620453:148549 -k1,17041:22879113,16620453:148548 -k1,17041:25179208,16620453:148548 -k1,17041:25797650,16620453:148549 -k1,17041:26477695,16620453:148548 -k1,17041:27912059,16620453:148548 -k1,17041:30690568,16620453:148549 -k1,17041:31490544,16620453:148548 -k1,17041:32583029,16620453:0 -) -(1,17042:6630773,17485533:25952256,513147,134348 -k1,17041:9503805,17485533:177536 -(1,17041:9503805,17485533:0,452978,115847 -r1,17099:12324054,17485533:2820249,568825,115847 -k1,17041:9503805,17485533:-2820249 -) -(1,17041:9503805,17485533:2820249,452978,115847 -k1,17041:9503805,17485533:3277 -h1,17041:12320777,17485533:0,411205,112570 -) -k1,17041:12501589,17485533:177535 -k1,17041:14246746,17485533:177536 -k1,17041:15858209,17485533:177535 -k1,17041:16450566,17485533:177514 -k1,17041:17860179,17485533:177536 -k1,17041:20316402,17485533:177536 -h1,17041:21859120,17485533:0,0,0 -k1,17041:22036655,17485533:177535 -k1,17041:23023561,17485533:177536 -k1,17041:24699249,17485533:177535 -h1,17041:25894626,17485533:0,0,0 -k1,17041:26452926,17485533:177536 -k1,17041:29362657,17485533:177535 -k1,17041:31966991,17485533:177536 -k1,17041:32583029,17485533:0 -) -(1,17042:6630773,18350613:25952256,505283,126483 -k1,17041:8224920,18350613:160219 -k1,17041:8799943,18350613:160180 -k1,17041:10064444,18350613:160219 -k1,17041:11600264,18350613:160219 -k1,17041:12508249,18350613:160219 -k1,17041:15462268,18350613:160219 -k1,17041:17312005,18350613:160219 -(1,17041:17312005,18350613:0,452978,115847 -r1,17099:20132254,18350613:2820249,568825,115847 -k1,17041:17312005,18350613:-2820249 -) -(1,17041:17312005,18350613:2820249,452978,115847 -k1,17041:17312005,18350613:3277 -h1,17041:20128977,18350613:0,411205,112570 -) -k1,17041:20292473,18350613:160219 -k1,17041:22830994,18350613:160219 -k1,17041:24383198,18350613:160219 -k1,17041:26926306,18350613:160219 -k1,17041:29154841,18350613:160219 -k1,17041:32583029,18350613:0 -) -(1,17042:6630773,19215693:25952256,513147,7863 -g1,17041:8197739,19215693 -g1,17041:8752828,19215693 -g1,17041:10933210,19215693 -g1,17041:12080090,19215693 -k1,17042:32583030,19215693:17443720 -g1,17042:32583030,19215693 -) -v1,17044:6630773,19900548:0,393216,0 -(1,17057:6630773,25063344:25952256,5556012,196608 -g1,17057:6630773,25063344 -g1,17057:6630773,25063344 -g1,17057:6434165,25063344 -(1,17057:6434165,25063344:0,5556012,196608 -r1,17099:32779637,25063344:26345472,5752620,196608 -k1,17057:6434165,25063344:-26345472 -) -(1,17057:6434165,25063344:26345472,5556012,196608 -[1,17057:6630773,25063344:25952256,5359404,0 -(1,17046:6630773,20128379:25952256,424439,112852 -(1,17045:6630773,20128379:0,0,0 -g1,17045:6630773,20128379 -g1,17045:6630773,20128379 -g1,17045:6303093,20128379 -(1,17045:6303093,20128379:0,0,0 -) -g1,17045:6630773,20128379 -) -k1,17046:6630773,20128379:0 -g1,17046:13601806,20128379 -k1,17046:13601806,20128379:0 -h1,17046:15593530,20128379:0,0,0 -k1,17046:32583030,20128379:16989500 -g1,17046:32583030,20128379 -) -(1,17056:6630773,20944306:25952256,424439,9908 -(1,17048:6630773,20944306:0,0,0 -g1,17048:6630773,20944306 -g1,17048:6630773,20944306 -g1,17048:6303093,20944306 -(1,17048:6303093,20944306:0,0,0 -) -g1,17048:6630773,20944306 -) -g1,17056:7626635,20944306 -g1,17056:8290543,20944306 -g1,17056:8954451,20944306 -g1,17056:11610083,20944306 -g1,17056:12937899,20944306 -g1,17056:13601807,20944306 -h1,17056:13933761,20944306:0,0,0 -k1,17056:32583029,20944306:18649268 -g1,17056:32583029,20944306 -) -(1,17056:6630773,21629161:25952256,424439,106246 -h1,17056:6630773,21629161:0,0,0 -g1,17056:7626635,21629161 -g1,17056:7958589,21629161 -g1,17056:8290543,21629161 -g1,17056:10946175,21629161 -g1,17056:14265714,21629161 -g1,17056:17917207,21629161 -h1,17056:22564562,21629161:0,0,0 -k1,17056:32583029,21629161:10018467 -g1,17056:32583029,21629161 -) -(1,17056:6630773,22314016:25952256,431045,6605 -h1,17056:6630773,22314016:0,0,0 -g1,17056:7626635,22314016 -g1,17056:7958589,22314016 -g1,17056:8290543,22314016 -g1,17056:10282267,22314016 -g1,17056:10614221,22314016 -g1,17056:10946175,22314016 -g1,17056:11278129,22314016 -g1,17056:11610083,22314016 -g1,17056:11942037,22314016 -g1,17056:12273991,22314016 -g1,17056:14265715,22314016 -g1,17056:16257439,22314016 -g1,17056:16589393,22314016 -g1,17056:16921347,22314016 -g1,17056:17253301,22314016 -g1,17056:17585255,22314016 -g1,17056:17917209,22314016 -k1,17056:17917209,22314016:0 -h1,17056:19576979,22314016:0,0,0 -k1,17056:32583029,22314016:13006050 -g1,17056:32583029,22314016 -) -(1,17056:6630773,22998871:25952256,424439,112852 -h1,17056:6630773,22998871:0,0,0 -g1,17056:7626635,22998871 -g1,17056:8290543,22998871 -g1,17056:10614221,22998871 -g1,17056:10946175,22998871 -g1,17056:11278129,22998871 -g1,17056:11610083,22998871 -g1,17056:11942037,22998871 -g1,17056:12273991,22998871 -g1,17056:12605945,22998871 -g1,17056:12937899,22998871 -g1,17056:14265715,22998871 -g1,17056:16257439,22998871 -g1,17056:16589393,22998871 -g1,17056:16921347,22998871 -g1,17056:17253301,22998871 -g1,17056:17585255,22998871 -g1,17056:17917209,22998871 -h1,17056:19908933,22998871:0,0,0 -k1,17056:32583029,22998871:12674096 -g1,17056:32583029,22998871 -) -(1,17056:6630773,23683726:25952256,424439,106246 -h1,17056:6630773,23683726:0,0,0 -g1,17056:7626635,23683726 -g1,17056:8290543,23683726 -g1,17056:10614221,23683726 -g1,17056:10946175,23683726 -g1,17056:11278129,23683726 -g1,17056:11610083,23683726 -g1,17056:11942037,23683726 -g1,17056:12273991,23683726 -g1,17056:12605945,23683726 -g1,17056:12937899,23683726 -g1,17056:14265715,23683726 -g1,17056:16257439,23683726 -g1,17056:16589393,23683726 -g1,17056:16921347,23683726 -g1,17056:17253301,23683726 -g1,17056:17585255,23683726 -g1,17056:17917209,23683726 -h1,17056:19576979,23683726:0,0,0 -k1,17056:32583029,23683726:13006050 -g1,17056:32583029,23683726 -) -(1,17056:6630773,24368581:25952256,424439,112852 -h1,17056:6630773,24368581:0,0,0 -g1,17056:7626635,24368581 -g1,17056:8290543,24368581 -g1,17056:10614221,24368581 -g1,17056:10946175,24368581 -g1,17056:11278129,24368581 -g1,17056:11610083,24368581 -g1,17056:11942037,24368581 -g1,17056:12273991,24368581 -g1,17056:12605945,24368581 -g1,17056:12937899,24368581 -g1,17056:14265715,24368581 -g1,17056:16257439,24368581 -g1,17056:16589393,24368581 -g1,17056:16921347,24368581 -g1,17056:17253301,24368581 -g1,17056:17585255,24368581 -g1,17056:17917209,24368581 -h1,17056:19908933,24368581:0,0,0 -k1,17056:32583029,24368581:12674096 -g1,17056:32583029,24368581 -) -(1,17056:6630773,25053436:25952256,424439,9908 -h1,17056:6630773,25053436:0,0,0 -g1,17056:7626635,25053436 -g1,17056:8290543,25053436 -g1,17056:8954451,25053436 -g1,17056:10282267,25053436 -g1,17056:11942037,25053436 -h1,17056:13269853,25053436:0,0,0 -k1,17056:32583029,25053436:19313176 -g1,17056:32583029,25053436 -) -] -) -g1,17057:32583029,25063344 -g1,17057:6630773,25063344 -g1,17057:6630773,25063344 -g1,17057:32583029,25063344 -g1,17057:32583029,25063344 -) -h1,17057:6630773,25259952:0,0,0 -(1,17061:6630773,26125032:25952256,513147,126483 -h1,17060:6630773,26125032:983040,0,0 -k1,17060:8450422,26125032:208774 -k1,17060:11498871,26125032:208774 -(1,17060:11498871,26125032:0,452978,115847 -r1,17099:14319120,26125032:2820249,568825,115847 -k1,17060:11498871,26125032:-2820249 -) -(1,17060:11498871,26125032:2820249,452978,115847 -k1,17060:11498871,26125032:3277 -h1,17060:14315843,26125032:0,411205,112570 -) -k1,17060:14527894,26125032:208774 -k1,17060:15422830,26125032:208774 -k1,17060:17333575,26125032:208775 -k1,17060:20568146,26125032:208774 -k1,17060:21392958,26125032:208774 -k1,17060:23574365,26125032:208774 -k1,17060:26161441,26125032:208774 -k1,17060:29804302,26125032:208774 -k1,17060:32583029,26125032:0 -) -(1,17061:6630773,26990112:25952256,513147,126483 -k1,17060:7698207,26990112:305906 -k1,17060:11029910,26990112:305906 -(1,17060:11029910,26990112:0,452978,115847 -r1,17099:15608718,26990112:4578808,568825,115847 -k1,17060:11029910,26990112:-4578808 -) -(1,17060:11029910,26990112:4578808,452978,115847 -k1,17060:11029910,26990112:3277 -h1,17060:15605441,26990112:0,411205,112570 -) -k1,17060:16088294,26990112:305906 -(1,17060:16088294,26990112:0,452978,115847 -r1,17099:19963678,26990112:3875384,568825,115847 -k1,17060:16088294,26990112:-3875384 -) -(1,17060:16088294,26990112:3875384,452978,115847 -k1,17060:16088294,26990112:3277 -h1,17060:19960401,26990112:0,411205,112570 -) -k1,17060:20443254,26990112:305906 -(1,17060:20443254,26990112:0,452978,115847 -r1,17099:23966926,26990112:3523672,568825,115847 -k1,17060:20443254,26990112:-3523672 -) -(1,17060:20443254,26990112:3523672,452978,115847 -k1,17060:20443254,26990112:3277 -h1,17060:23963649,26990112:0,411205,112570 -) -k1,17060:24446502,26990112:305906 -k1,17060:25943853,26990112:305906 -(1,17060:25943853,26990112:0,452978,115847 -r1,17099:29115813,26990112:3171960,568825,115847 -k1,17060:25943853,26990112:-3171960 -) -(1,17060:25943853,26990112:3171960,452978,115847 -k1,17060:25943853,26990112:3277 -h1,17060:29112536,26990112:0,411205,112570 -) -k1,17060:29421719,26990112:305906 -k1,17060:30379053,26990112:305906 -k1,17060:32583029,26990112:0 -) -(1,17061:6630773,27855192:25952256,513147,126483 -k1,17060:7578932,27855192:265274 -k1,17060:9708705,27855192:265274 -k1,17060:12860840,27855192:265274 -k1,17060:14168136,27855192:265274 -k1,17060:15636651,27855192:265274 -k1,17060:18563342,27855192:265274 -k1,17060:19696968,27855192:265274 -k1,17060:21054727,27855192:265274 -k1,17060:22339086,27855192:265274 -k1,17060:26597469,27855192:265274 -(1,17060:26597469,27855192:0,452978,115847 -r1,17099:29066006,27855192:2468537,568825,115847 -k1,17060:26597469,27855192:-2468537 -) -(1,17060:26597469,27855192:2468537,452978,115847 -k1,17060:26597469,27855192:3277 -h1,17060:29062729,27855192:0,411205,112570 -) -k1,17060:29331280,27855192:265274 -k1,17060:31923737,27855192:265274 -k1,17061:32583029,27855192:0 -) -(1,17061:6630773,28720272:25952256,452978,122846 -(1,17060:6630773,28720272:0,452978,122846 -r1,17099:10857869,28720272:4227096,575824,122846 -k1,17060:6630773,28720272:-4227096 -) -(1,17060:6630773,28720272:4227096,452978,122846 -k1,17060:6630773,28720272:3277 -h1,17060:10854592,28720272:0,411205,112570 -) -k1,17061:32583029,28720272:21672732 -g1,17061:32583029,28720272 -) -v1,17063:6630773,29405127:0,393216,0 -(1,17076:6630773,34564620:25952256,5552709,196608 -g1,17076:6630773,34564620 -g1,17076:6630773,34564620 -g1,17076:6434165,34564620 -(1,17076:6434165,34564620:0,5552709,196608 -r1,17099:32779637,34564620:26345472,5749317,196608 -k1,17076:6434165,34564620:-26345472 -) -(1,17076:6434165,34564620:26345472,5552709,196608 -[1,17076:6630773,34564620:25952256,5356101,0 -(1,17065:6630773,29632958:25952256,424439,106246 -(1,17064:6630773,29632958:0,0,0 -g1,17064:6630773,29632958 -g1,17064:6630773,29632958 -g1,17064:6303093,29632958 -(1,17064:6303093,29632958:0,0,0 -) -g1,17064:6630773,29632958 -) -k1,17065:6630773,29632958:0 -g1,17065:11942036,29632958 -k1,17065:11942036,29632958:0 -h1,17065:19245023,29632958:0,0,0 -k1,17065:32583029,29632958:13338006 -g1,17065:32583029,29632958 -) -(1,17075:6630773,30448885:25952256,424439,9908 -(1,17067:6630773,30448885:0,0,0 -g1,17067:6630773,30448885 -g1,17067:6630773,30448885 -g1,17067:6303093,30448885 -(1,17067:6303093,30448885:0,0,0 -) -g1,17067:6630773,30448885 -) -g1,17075:7626635,30448885 -g1,17075:8290543,30448885 -g1,17075:8954451,30448885 -g1,17075:11610083,30448885 -g1,17075:12937899,30448885 -g1,17075:13601807,30448885 -h1,17075:13933761,30448885:0,0,0 -k1,17075:32583029,30448885:18649268 -g1,17075:32583029,30448885 -) -(1,17075:6630773,31133740:25952256,424439,112852 -h1,17075:6630773,31133740:0,0,0 -g1,17075:7626635,31133740 -g1,17075:7958589,31133740 -g1,17075:8290543,31133740 -g1,17075:12605944,31133740 -g1,17075:16589391,31133740 -h1,17075:18913069,31133740:0,0,0 -k1,17075:32583029,31133740:13669960 -g1,17075:32583029,31133740 -) -(1,17075:6630773,31818595:25952256,431045,6605 -h1,17075:6630773,31818595:0,0,0 -g1,17075:7626635,31818595 -g1,17075:7958589,31818595 -g1,17075:8290543,31818595 -g1,17075:8622497,31818595 -g1,17075:8954451,31818595 -g1,17075:9286405,31818595 -g1,17075:9618359,31818595 -g1,17075:9950313,31818595 -g1,17075:10282267,31818595 -g1,17075:10614221,31818595 -g1,17075:12605945,31818595 -g1,17075:12937899,31818595 -g1,17075:13269853,31818595 -g1,17075:13601807,31818595 -g1,17075:13933761,31818595 -g1,17075:14265715,31818595 -g1,17075:14597669,31818595 -g1,17075:16589393,31818595 -k1,17075:16589393,31818595:0 -h1,17075:18249163,31818595:0,0,0 -k1,17075:32583029,31818595:14333866 -g1,17075:32583029,31818595 -) -(1,17075:6630773,32503450:25952256,407923,9908 -h1,17075:6630773,32503450:0,0,0 -g1,17075:7626635,32503450 -g1,17075:8290543,32503450 -g1,17075:8622497,32503450 -g1,17075:8954451,32503450 -g1,17075:9286405,32503450 -g1,17075:9618359,32503450 -g1,17075:9950313,32503450 -g1,17075:10282267,32503450 -g1,17075:10614221,32503450 -g1,17075:10946175,32503450 -g1,17075:11278129,32503450 -g1,17075:12605945,32503450 -g1,17075:12937899,32503450 -g1,17075:13269853,32503450 -g1,17075:13601807,32503450 -g1,17075:13933761,32503450 -g1,17075:14265715,32503450 -g1,17075:14597669,32503450 -g1,17075:14929623,32503450 -g1,17075:15261577,32503450 -g1,17075:16589393,32503450 -h1,17075:18581117,32503450:0,0,0 -k1,17075:32583029,32503450:14001912 -g1,17075:32583029,32503450 -) -(1,17075:6630773,33188305:25952256,407923,9908 -h1,17075:6630773,33188305:0,0,0 -g1,17075:7626635,33188305 -g1,17075:8290543,33188305 -g1,17075:8622497,33188305 -g1,17075:8954451,33188305 -g1,17075:9286405,33188305 -g1,17075:9618359,33188305 -g1,17075:9950313,33188305 -g1,17075:10282267,33188305 -g1,17075:10614221,33188305 -g1,17075:10946175,33188305 -g1,17075:11278129,33188305 -g1,17075:12605945,33188305 -g1,17075:12937899,33188305 -g1,17075:13269853,33188305 -g1,17075:13601807,33188305 -g1,17075:13933761,33188305 -g1,17075:14265715,33188305 -g1,17075:14597669,33188305 -g1,17075:14929623,33188305 -g1,17075:15261577,33188305 -g1,17075:16589393,33188305 -h1,17075:18581117,33188305:0,0,0 -k1,17075:32583029,33188305:14001912 -g1,17075:32583029,33188305 -) -(1,17075:6630773,33873160:25952256,407923,9908 -h1,17075:6630773,33873160:0,0,0 -g1,17075:7626635,33873160 -g1,17075:8290543,33873160 -g1,17075:8622497,33873160 -g1,17075:8954451,33873160 -g1,17075:9286405,33873160 -g1,17075:9618359,33873160 -g1,17075:9950313,33873160 -g1,17075:10282267,33873160 -g1,17075:10614221,33873160 -g1,17075:10946175,33873160 -g1,17075:11278129,33873160 -g1,17075:12605945,33873160 -g1,17075:12937899,33873160 -g1,17075:13269853,33873160 -g1,17075:13601807,33873160 -g1,17075:13933761,33873160 -g1,17075:14265715,33873160 -g1,17075:14597669,33873160 -g1,17075:14929623,33873160 -g1,17075:15261577,33873160 -g1,17075:16589393,33873160 -h1,17075:18581117,33873160:0,0,0 -k1,17075:32583029,33873160:14001912 -g1,17075:32583029,33873160 -) -(1,17075:6630773,34558015:25952256,424439,6605 -h1,17075:6630773,34558015:0,0,0 -g1,17075:7626635,34558015 -g1,17075:8290543,34558015 -g1,17075:8954451,34558015 -g1,17075:10282267,34558015 -g1,17075:11942037,34558015 -h1,17075:13269853,34558015:0,0,0 -k1,17075:32583029,34558015:19313176 -g1,17075:32583029,34558015 -) -] -) -g1,17076:32583029,34564620 -g1,17076:6630773,34564620 -g1,17076:6630773,34564620 -g1,17076:32583029,34564620 -g1,17076:32583029,34564620 -) -h1,17076:6630773,34761228:0,0,0 -v1,17080:6630773,35446083:0,393216,0 -(1,17093:6630773,40605576:25952256,5552709,196608 -g1,17093:6630773,40605576 -g1,17093:6630773,40605576 -g1,17093:6434165,40605576 -(1,17093:6434165,40605576:0,5552709,196608 -r1,17099:32779637,40605576:26345472,5749317,196608 -k1,17093:6434165,40605576:-26345472 -) -(1,17093:6434165,40605576:26345472,5552709,196608 -[1,17093:6630773,40605576:25952256,5356101,0 -(1,17082:6630773,35673914:25952256,424439,106246 -(1,17081:6630773,35673914:0,0,0 -g1,17081:6630773,35673914 -g1,17081:6630773,35673914 -g1,17081:6303093,35673914 -(1,17081:6303093,35673914:0,0,0 -) -g1,17081:6630773,35673914 -) -k1,17082:6630773,35673914:0 -g1,17082:11942036,35673914 -g1,17082:14929622,35673914 -k1,17082:14929622,35673914:0 -h1,17082:19908932,35673914:0,0,0 -k1,17082:32583029,35673914:12674097 -g1,17082:32583029,35673914 -) -(1,17092:6630773,36489841:25952256,424439,9908 -(1,17084:6630773,36489841:0,0,0 -g1,17084:6630773,36489841 -g1,17084:6630773,36489841 -g1,17084:6303093,36489841 -(1,17084:6303093,36489841:0,0,0 -) -g1,17084:6630773,36489841 -) -g1,17092:7626635,36489841 -g1,17092:8290543,36489841 -g1,17092:8954451,36489841 -g1,17092:11610083,36489841 -g1,17092:12937899,36489841 -g1,17092:13601807,36489841 -h1,17092:13933761,36489841:0,0,0 -k1,17092:32583029,36489841:18649268 -g1,17092:32583029,36489841 -) -(1,17092:6630773,37174696:25952256,424439,112852 -h1,17092:6630773,37174696:0,0,0 -g1,17092:7626635,37174696 -g1,17092:7958589,37174696 -g1,17092:8290543,37174696 -g1,17092:10946175,37174696 -g1,17092:15261576,37174696 -h1,17092:18913069,37174696:0,0,0 -k1,17092:32583029,37174696:13669960 -g1,17092:32583029,37174696 -) -(1,17092:6630773,37859551:25952256,431045,6605 -h1,17092:6630773,37859551:0,0,0 -g1,17092:7626635,37859551 -g1,17092:7958589,37859551 -g1,17092:8290543,37859551 -g1,17092:10282267,37859551 -g1,17092:10614221,37859551 -g1,17092:10946175,37859551 -g1,17092:11278129,37859551 -g1,17092:11610083,37859551 -g1,17092:11942037,37859551 -g1,17092:12273991,37859551 -g1,17092:12605945,37859551 -g1,17092:12937899,37859551 -g1,17092:13269853,37859551 -g1,17092:15261577,37859551 -g1,17092:15593531,37859551 -g1,17092:15925485,37859551 -g1,17092:16257439,37859551 -g1,17092:16589393,37859551 -g1,17092:16921347,37859551 -g1,17092:17253301,37859551 -k1,17092:17253301,37859551:0 -h1,17092:18913071,37859551:0,0,0 -k1,17092:32583029,37859551:13669958 -g1,17092:32583029,37859551 -) -(1,17092:6630773,38544406:25952256,407923,9908 -h1,17092:6630773,38544406:0,0,0 -g1,17092:7626635,38544406 -g1,17092:8290543,38544406 -g1,17092:10614221,38544406 -g1,17092:10946175,38544406 -g1,17092:11278129,38544406 -g1,17092:11610083,38544406 -g1,17092:11942037,38544406 -g1,17092:12273991,38544406 -g1,17092:12605945,38544406 -g1,17092:12937899,38544406 -g1,17092:13269853,38544406 -g1,17092:13601807,38544406 -g1,17092:13933761,38544406 -g1,17092:15261577,38544406 -g1,17092:15593531,38544406 -g1,17092:15925485,38544406 -g1,17092:16257439,38544406 -g1,17092:16589393,38544406 -g1,17092:16921347,38544406 -g1,17092:17253301,38544406 -g1,17092:17585255,38544406 -g1,17092:17917209,38544406 -h1,17092:18913071,38544406:0,0,0 -k1,17092:32583029,38544406:13669958 -g1,17092:32583029,38544406 -) -(1,17092:6630773,39229261:25952256,407923,9908 -h1,17092:6630773,39229261:0,0,0 -g1,17092:7626635,39229261 -g1,17092:8290543,39229261 -g1,17092:10614221,39229261 -g1,17092:10946175,39229261 -g1,17092:11278129,39229261 -g1,17092:11610083,39229261 -g1,17092:11942037,39229261 -g1,17092:12273991,39229261 -g1,17092:12605945,39229261 -g1,17092:12937899,39229261 -g1,17092:13269853,39229261 -g1,17092:13601807,39229261 -g1,17092:13933761,39229261 -g1,17092:15261577,39229261 -g1,17092:15593531,39229261 -g1,17092:15925485,39229261 -g1,17092:16257439,39229261 -g1,17092:16589393,39229261 -g1,17092:16921347,39229261 -g1,17092:17253301,39229261 -g1,17092:17585255,39229261 -g1,17092:17917209,39229261 -h1,17092:18249163,39229261:0,0,0 -k1,17092:32583029,39229261:14333866 -g1,17092:32583029,39229261 -) -(1,17092:6630773,39914116:25952256,407923,9908 -h1,17092:6630773,39914116:0,0,0 -g1,17092:7626635,39914116 -g1,17092:8290543,39914116 -g1,17092:10614221,39914116 -g1,17092:10946175,39914116 -g1,17092:11278129,39914116 -g1,17092:11610083,39914116 -g1,17092:11942037,39914116 -g1,17092:12273991,39914116 -g1,17092:12605945,39914116 -g1,17092:12937899,39914116 -g1,17092:13269853,39914116 -g1,17092:13601807,39914116 -g1,17092:13933761,39914116 -g1,17092:15261577,39914116 -g1,17092:15593531,39914116 -g1,17092:15925485,39914116 -g1,17092:16257439,39914116 -g1,17092:16589393,39914116 -g1,17092:16921347,39914116 -g1,17092:17253301,39914116 -g1,17092:17585255,39914116 -g1,17092:17917209,39914116 -h1,17092:18913071,39914116:0,0,0 -k1,17092:32583029,39914116:13669958 -g1,17092:32583029,39914116 -) -(1,17092:6630773,40598971:25952256,424439,6605 -h1,17092:6630773,40598971:0,0,0 -g1,17092:7626635,40598971 -g1,17092:8290543,40598971 -g1,17092:8954451,40598971 -g1,17092:10282267,40598971 -g1,17092:11942037,40598971 -h1,17092:13269853,40598971:0,0,0 -k1,17092:32583029,40598971:19313176 -g1,17092:32583029,40598971 -) -] -) -g1,17093:32583029,40605576 -g1,17093:6630773,40605576 -g1,17093:6630773,40605576 -g1,17093:32583029,40605576 -g1,17093:32583029,40605576 -) -h1,17093:6630773,40802184:0,0,0 -(1,17097:6630773,41667264:25952256,505283,126483 -h1,17096:6630773,41667264:983040,0,0 -k1,17096:10676951,41667264:273270 -(1,17096:10676951,41667264:0,452978,115847 -r1,17099:13497200,41667264:2820249,568825,115847 -k1,17096:10676951,41667264:-2820249 -) -(1,17096:10676951,41667264:2820249,452978,115847 -k1,17096:10676951,41667264:3277 -h1,17096:13493923,41667264:0,411205,112570 -) -k1,17096:13770471,41667264:273271 -k1,17096:15148023,41667264:273270 -k1,17096:16169060,41667264:273271 -k1,17096:17955556,41667264:273270 -k1,17096:18880254,41667264:273270 -k1,17096:21527239,41667264:273271 -k1,17096:24687370,41667264:273270 -k1,17096:27565697,41667264:273271 -k1,17096:29272895,41667264:273270 -k1,17096:29960934,41667264:273196 -k1,17096:32583029,41667264:0 -) -(1,17097:6630773,42532344:25952256,513147,115847 -k1,17096:7925646,42532344:275788 -k1,17096:9293918,42532344:275787 -k1,17096:10228998,42532344:275788 -k1,17096:11971482,42532344:275788 -(1,17096:11971482,42532344:0,452978,115847 -r1,17099:14440019,42532344:2468537,568825,115847 -k1,17096:11971482,42532344:-2468537 -) -(1,17096:11971482,42532344:2468537,452978,115847 -k1,17096:11971482,42532344:3277 -h1,17096:14436742,42532344:0,411205,112570 -) -k1,17096:14715807,42532344:275788 -k1,17096:16183039,42532344:275787 -(1,17096:16183039,42532344:0,452978,115847 -r1,17099:19354999,42532344:3171960,568825,115847 -k1,17096:16183039,42532344:-3171960 -) -(1,17096:16183039,42532344:3171960,452978,115847 -k1,17096:16183039,42532344:3277 -h1,17096:19351722,42532344:0,411205,112570 -) -k1,17096:19630787,42532344:275788 -k1,17096:21098020,42532344:275788 -k1,17096:22170726,42532344:275788 -k1,17096:23580286,42532344:275787 -k1,17096:25352261,42532344:275788 -k1,17096:26279477,42532344:275788 -k1,17096:28536418,42532344:275788 -k1,17096:30095400,42532344:275787 -k1,17096:31562633,42532344:275788 -k1,17096:32583029,42532344:0 -) -(1,17097:6630773,43397424:25952256,513147,134348 -k1,17096:9223478,43397424:350718 -k1,17096:10392086,43397424:350719 -k1,17096:12818329,43397424:350718 -k1,17096:15211149,43397424:350718 -k1,17096:16580953,43397424:350719 -k1,17096:19015716,43397424:350718 -k1,17096:20314085,43397424:350718 -k1,17096:22116426,43397424:350719 -k1,17096:24850033,43397424:350718 -k1,17096:26938766,43397424:350718 -k1,17096:27940913,43397424:350719 -k1,17096:29039397,43397424:350718 -k1,17096:32051532,43397424:350718 -k1,17097:32583029,43397424:0 -) -(1,17097:6630773,44262504:25952256,505283,134348 -(1,17096:6630773,44262504:0,452978,115847 -r1,17099:14726699,44262504:8095926,568825,115847 -k1,17096:6630773,44262504:-8095926 -) -(1,17096:6630773,44262504:8095926,452978,115847 -g1,17096:8392609,44262504 -g1,17096:10502880,44262504 -g1,17096:11206304,44262504 -g1,17096:12964863,44262504 -h1,17096:14723422,44262504:0,411205,112570 -) -k1,17096:15173988,44262504:273619 -k1,17096:16644293,44262504:273618 -k1,17096:18090351,44262504:273619 -k1,17096:20432285,44262504:273618 -k1,17096:21810186,44262504:273619 -k1,17096:22831570,44262504:273618 -k1,17096:24799950,44262504:273619 -k1,17096:26929548,44262504:273618 -k1,17096:27889329,44262504:273619 -k1,17096:29554932,44262504:273618 -k1,17096:31896867,44262504:273619 -k1,17096:32583029,44262504:0 -) -(1,17097:6630773,45127584:25952256,505283,134348 -g1,17096:8698433,45127584 -g1,17096:9580547,45127584 -g1,17096:10465938,45127584 -g1,17096:13639846,45127584 -k1,17097:32583029,45127584:16694643 -g1,17097:32583029,45127584 -) -] -(1,17099:32583029,45706769:0,0,0 -g1,17099:32583029,45706769 -) -) -] -(1,17099:6630773,47279633:25952256,0,0 -h1,17099:6630773,47279633:25952256,0,0 -) -] -(1,17099:4262630,4025873:0,0,0 -[1,17099:-473656,4025873:0,0,0 -(1,17099:-473656,-710413:0,0,0 -(1,17099:-473656,-710413:0,0,0 -g1,17099:-473656,-710413 -) -g1,17099:-473656,-710413 +[1,17097:6630773,45706769:25952256,40108032,0 +(1,17021:6630773,6254097:25952256,513147,115847 +h1,17020:6630773,6254097:983040,0,0 +k1,17020:10765405,6254097:361724 +(1,17020:10765405,6254097:0,452978,115847 +r1,17097:13233942,6254097:2468537,568825,115847 +k1,17020:10765405,6254097:-2468537 +) +(1,17020:10765405,6254097:2468537,452978,115847 +k1,17020:10765405,6254097:3277 +h1,17020:13230665,6254097:0,411205,112570 +) +k1,17020:13595666,6254097:361724 +k1,17020:15061672,6254097:361724 +k1,17020:16171161,6254097:361723 +k1,17020:18046111,6254097:361724 +k1,17020:19059263,6254097:361724 +k1,17020:21624963,6254097:361724 +k1,17020:22342547,6254097:361724 +k1,17020:24784384,6254097:361724 +k1,17020:25805399,6254097:361723 +k1,17020:27701321,6254097:361724 +k1,17020:29917714,6254097:361724 +k1,17020:31088808,6254097:361724 +k1,17020:32583029,6254097:0 +) +(1,17021:6630773,7119177:25952256,505283,126483 +k1,17020:11154012,7119177:152643 +k1,17020:14380950,7119177:152644 +k1,17020:15818099,7119177:152643 +k1,17020:16586781,7119177:152644 +k1,17020:18173352,7119177:152643 +k1,17020:18740792,7119177:152597 +k1,17020:20849685,7119177:152643 +k1,17020:22094814,7119177:152644 +k1,17020:25422676,7119177:152643 +k1,17020:28609637,7119177:152644 +k1,17020:31189078,7119177:152643 +k1,17020:32583029,7119177:0 +) +(1,17021:6630773,7984257:25952256,505283,126483 +g1,17020:7849087,7984257 +(1,17020:7849087,7984257:0,452978,115847 +r1,17097:9614201,7984257:1765114,568825,115847 +k1,17020:7849087,7984257:-1765114 +) +(1,17020:7849087,7984257:1765114,452978,115847 +g1,17020:8555788,7984257 +g1,17020:9259212,7984257 +h1,17020:9610924,7984257:0,411205,112570 +) +g1,17020:9813430,7984257 +g1,17020:12932943,7984257 +(1,17020:12932943,7984257:0,452978,122846 +r1,17097:19622022,7984257:6689079,575824,122846 +k1,17020:12932943,7984257:-6689079 +) +(1,17020:12932943,7984257:6689079,452978,122846 +g1,17020:19267033,7984257 +h1,17020:19618745,7984257:0,411205,112570 +) +k1,17021:32583029,7984257:12908579 +g1,17021:32583029,7984257 +) +v1,17023:6630773,8669112:0,393216,0 +(1,17036:6630773,13828605:25952256,5552709,196608 +g1,17036:6630773,13828605 +g1,17036:6630773,13828605 +g1,17036:6434165,13828605 +(1,17036:6434165,13828605:0,5552709,196608 +r1,17097:32779637,13828605:26345472,5749317,196608 +k1,17036:6434165,13828605:-26345472 +) +(1,17036:6434165,13828605:26345472,5552709,196608 +[1,17036:6630773,13828605:25952256,5356101,0 +(1,17025:6630773,8896943:25952256,424439,112852 +(1,17024:6630773,8896943:0,0,0 +g1,17024:6630773,8896943 +g1,17024:6630773,8896943 +g1,17024:6303093,8896943 +(1,17024:6303093,8896943:0,0,0 +) +g1,17024:6630773,8896943 +) +k1,17025:6630773,8896943:0 +g1,17025:13269852,8896943 +h1,17025:14597668,8896943:0,0,0 +k1,17025:32583028,8896943:17985360 +g1,17025:32583028,8896943 +) +(1,17035:6630773,9712870:25952256,424439,9908 +(1,17027:6630773,9712870:0,0,0 +g1,17027:6630773,9712870 +g1,17027:6630773,9712870 +g1,17027:6303093,9712870 +(1,17027:6303093,9712870:0,0,0 +) +g1,17027:6630773,9712870 +) +g1,17035:7626635,9712870 +g1,17035:8290543,9712870 +g1,17035:8954451,9712870 +g1,17035:11610083,9712870 +g1,17035:12273991,9712870 +g1,17035:12937899,9712870 +h1,17035:13269853,9712870:0,0,0 +k1,17035:32583029,9712870:19313176 +g1,17035:32583029,9712870 +) +(1,17035:6630773,10397725:25952256,424439,106246 +h1,17035:6630773,10397725:0,0,0 +g1,17035:7626635,10397725 +g1,17035:7958589,10397725 +g1,17035:8290543,10397725 +g1,17035:10946175,10397725 +g1,17035:12605945,10397725 +g1,17035:12937899,10397725 +g1,17035:13269853,10397725 +g1,17035:13601807,10397725 +g1,17035:13933761,10397725 +g1,17035:14265715,10397725 +g1,17035:14597669,10397725 +g1,17035:14929623,10397725 +g1,17035:15261577,10397725 +g1,17035:18581116,10397725 +g1,17035:22232609,10397725 +h1,17035:26879964,10397725:0,0,0 +k1,17035:32583029,10397725:5703065 +g1,17035:32583029,10397725 +) +(1,17035:6630773,11082580:25952256,431045,6605 +h1,17035:6630773,11082580:0,0,0 +g1,17035:7626635,11082580 +g1,17035:7958589,11082580 +g1,17035:8290543,11082580 +g1,17035:10282267,11082580 +g1,17035:10614221,11082580 +g1,17035:10946175,11082580 +g1,17035:12937899,11082580 +g1,17035:13269853,11082580 +g1,17035:13601807,11082580 +g1,17035:13933761,11082580 +g1,17035:14265715,11082580 +g1,17035:14597669,11082580 +g1,17035:14929623,11082580 +g1,17035:15261577,11082580 +g1,17035:15593531,11082580 +g1,17035:15925485,11082580 +g1,17035:16257439,11082580 +g1,17035:16589393,11082580 +g1,17035:18581117,11082580 +g1,17035:20572841,11082580 +g1,17035:20904795,11082580 +g1,17035:21236749,11082580 +g1,17035:21568703,11082580 +g1,17035:21900657,11082580 +g1,17035:22232611,11082580 +k1,17035:22232611,11082580:0 +h1,17035:23892381,11082580:0,0,0 +k1,17035:32583029,11082580:8690648 +g1,17035:32583029,11082580 +) +(1,17035:6630773,11767435:25952256,424439,112852 +h1,17035:6630773,11767435:0,0,0 +g1,17035:7626635,11767435 +g1,17035:8290543,11767435 +g1,17035:10614221,11767435 +g1,17035:10946175,11767435 +g1,17035:15261576,11767435 +g1,17035:15593530,11767435 +g1,17035:15925484,11767435 +g1,17035:16257438,11767435 +g1,17035:16589392,11767435 +g1,17035:16921346,11767435 +g1,17035:17253300,11767435 +g1,17035:18581116,11767435 +g1,17035:20572840,11767435 +g1,17035:20904794,11767435 +g1,17035:21236748,11767435 +g1,17035:21568702,11767435 +g1,17035:21900656,11767435 +g1,17035:22232610,11767435 +h1,17035:24224334,11767435:0,0,0 +k1,17035:32583029,11767435:8358695 +g1,17035:32583029,11767435 +) +(1,17035:6630773,12452290:25952256,424439,106246 +h1,17035:6630773,12452290:0,0,0 +g1,17035:7626635,12452290 +g1,17035:8290543,12452290 +g1,17035:10614221,12452290 +g1,17035:10946175,12452290 +g1,17035:14929622,12452290 +g1,17035:15261576,12452290 +g1,17035:15593530,12452290 +g1,17035:15925484,12452290 +g1,17035:16257438,12452290 +g1,17035:16589392,12452290 +g1,17035:16921346,12452290 +g1,17035:17253300,12452290 +g1,17035:18581116,12452290 +g1,17035:20572840,12452290 +g1,17035:20904794,12452290 +g1,17035:21236748,12452290 +g1,17035:21568702,12452290 +g1,17035:21900656,12452290 +g1,17035:22232610,12452290 +h1,17035:23892380,12452290:0,0,0 +k1,17035:32583029,12452290:8690649 +g1,17035:32583029,12452290 +) +(1,17035:6630773,13137145:25952256,424439,112852 +h1,17035:6630773,13137145:0,0,0 +g1,17035:7626635,13137145 +g1,17035:8290543,13137145 +g1,17035:10614221,13137145 +g1,17035:10946175,13137145 +g1,17035:15261576,13137145 +g1,17035:15593530,13137145 +g1,17035:15925484,13137145 +g1,17035:16257438,13137145 +g1,17035:16589392,13137145 +g1,17035:16921346,13137145 +g1,17035:17253300,13137145 +g1,17035:18581116,13137145 +g1,17035:20572840,13137145 +g1,17035:20904794,13137145 +g1,17035:21236748,13137145 +g1,17035:21568702,13137145 +g1,17035:21900656,13137145 +g1,17035:22232610,13137145 +h1,17035:24224334,13137145:0,0,0 +k1,17035:32583029,13137145:8358695 +g1,17035:32583029,13137145 +) +(1,17035:6630773,13822000:25952256,424439,6605 +h1,17035:6630773,13822000:0,0,0 +g1,17035:7626635,13822000 +g1,17035:8290543,13822000 +g1,17035:8954451,13822000 +g1,17035:9618359,13822000 +g1,17035:11278129,13822000 +h1,17035:12605945,13822000:0,0,0 +k1,17035:32583029,13822000:19977084 +g1,17035:32583029,13822000 +) +] +) +g1,17036:32583029,13828605 +g1,17036:6630773,13828605 +g1,17036:6630773,13828605 +g1,17036:32583029,13828605 +g1,17036:32583029,13828605 +) +h1,17036:6630773,14025213:0,0,0 +(1,17040:6630773,14890293:25952256,513147,115847 +h1,17039:6630773,14890293:983040,0,0 +k1,17039:10634293,14890293:230612 +(1,17039:10634293,14890293:0,452978,115847 +r1,17097:13454542,14890293:2820249,568825,115847 +k1,17039:10634293,14890293:-2820249 +) +(1,17039:10634293,14890293:2820249,452978,115847 +k1,17039:10634293,14890293:3277 +h1,17039:13451265,14890293:0,411205,112570 +) +k1,17039:13685155,14890293:230613 +k1,17039:15020049,14890293:230612 +k1,17039:15998427,14890293:230612 +k1,17039:17742266,14890293:230613 +k1,17039:18624306,14890293:230612 +k1,17039:21058894,14890293:230612 +k1,17039:21645367,14890293:230613 +k1,17039:23956092,14890293:230612 +k1,17039:24845996,14890293:230612 +k1,17039:29648401,14890293:230613 +k1,17039:31835263,14890293:230612 +k1,17039:32583029,14890293:0 +) +(1,17040:6630773,15755373:25952256,505283,134348 +k1,17039:8483991,15755373:275766 +k1,17039:10153709,15755373:275767 +k1,17039:13604694,15755373:275766 +k1,17039:16914778,15755373:275767 +k1,17039:19617342,15755373:275766 +k1,17039:21287060,15755373:275767 +(1,17039:21287060,15755373:0,452978,115847 +r1,17097:23052174,15755373:1765114,568825,115847 +k1,17039:21287060,15755373:-1765114 +) +(1,17039:21287060,15755373:1765114,452978,115847 +g1,17039:21993761,15755373 +g1,17039:22697185,15755373 +h1,17039:23048897,15755373:0,411205,112570 +) +k1,17039:23501610,15755373:275766 +k1,17039:26204831,15755373:275767 +k1,17039:28119652,15755373:275766 +k1,17039:29046847,15755373:275767 +k1,17039:30341698,15755373:275766 +k1,17039:32583029,15755373:0 +) +(1,17040:6630773,16620453:25952256,505283,134348 +k1,17039:9851649,16620453:148548 +k1,17039:10686360,16620453:148549 +k1,17039:13455037,16620453:148548 +k1,17039:16030383,16620453:148548 +k1,17039:16861817,16620453:148549 +k1,17039:19393254,16620453:148548 +k1,17039:21610118,16620453:148548 +k1,17039:22374705,16620453:148549 +k1,17039:22879113,16620453:148548 +k1,17039:25179208,16620453:148548 +k1,17039:25797650,16620453:148549 +k1,17039:26477695,16620453:148548 +k1,17039:27912059,16620453:148548 +k1,17039:30690568,16620453:148549 +k1,17039:31490544,16620453:148548 +k1,17039:32583029,16620453:0 +) +(1,17040:6630773,17485533:25952256,513147,134348 +k1,17039:9503805,17485533:177536 +(1,17039:9503805,17485533:0,452978,115847 +r1,17097:12324054,17485533:2820249,568825,115847 +k1,17039:9503805,17485533:-2820249 +) +(1,17039:9503805,17485533:2820249,452978,115847 +k1,17039:9503805,17485533:3277 +h1,17039:12320777,17485533:0,411205,112570 +) +k1,17039:12501589,17485533:177535 +k1,17039:14246746,17485533:177536 +k1,17039:15858209,17485533:177535 +k1,17039:16450566,17485533:177514 +k1,17039:17860179,17485533:177536 +k1,17039:20316402,17485533:177536 +h1,17039:21859120,17485533:0,0,0 +k1,17039:22036655,17485533:177535 +k1,17039:23023561,17485533:177536 +k1,17039:24699249,17485533:177535 +h1,17039:25894626,17485533:0,0,0 +k1,17039:26452926,17485533:177536 +k1,17039:29362657,17485533:177535 +k1,17039:31966991,17485533:177536 +k1,17039:32583029,17485533:0 +) +(1,17040:6630773,18350613:25952256,505283,126483 +k1,17039:8224920,18350613:160219 +k1,17039:8799943,18350613:160180 +k1,17039:10064444,18350613:160219 +k1,17039:11600264,18350613:160219 +k1,17039:12508249,18350613:160219 +k1,17039:15462268,18350613:160219 +k1,17039:17312005,18350613:160219 +(1,17039:17312005,18350613:0,452978,115847 +r1,17097:20132254,18350613:2820249,568825,115847 +k1,17039:17312005,18350613:-2820249 +) +(1,17039:17312005,18350613:2820249,452978,115847 +k1,17039:17312005,18350613:3277 +h1,17039:20128977,18350613:0,411205,112570 +) +k1,17039:20292473,18350613:160219 +k1,17039:22830994,18350613:160219 +k1,17039:24383198,18350613:160219 +k1,17039:26926306,18350613:160219 +k1,17039:29154841,18350613:160219 +k1,17039:32583029,18350613:0 +) +(1,17040:6630773,19215693:25952256,513147,7863 +g1,17039:8197739,19215693 +g1,17039:8752828,19215693 +g1,17039:10933210,19215693 +g1,17039:12080090,19215693 +k1,17040:32583030,19215693:17443720 +g1,17040:32583030,19215693 +) +v1,17042:6630773,19900548:0,393216,0 +(1,17055:6630773,25063344:25952256,5556012,196608 +g1,17055:6630773,25063344 +g1,17055:6630773,25063344 +g1,17055:6434165,25063344 +(1,17055:6434165,25063344:0,5556012,196608 +r1,17097:32779637,25063344:26345472,5752620,196608 +k1,17055:6434165,25063344:-26345472 +) +(1,17055:6434165,25063344:26345472,5556012,196608 +[1,17055:6630773,25063344:25952256,5359404,0 +(1,17044:6630773,20128379:25952256,424439,112852 +(1,17043:6630773,20128379:0,0,0 +g1,17043:6630773,20128379 +g1,17043:6630773,20128379 +g1,17043:6303093,20128379 +(1,17043:6303093,20128379:0,0,0 +) +g1,17043:6630773,20128379 +) +k1,17044:6630773,20128379:0 +g1,17044:13601806,20128379 +k1,17044:13601806,20128379:0 +h1,17044:15593530,20128379:0,0,0 +k1,17044:32583030,20128379:16989500 +g1,17044:32583030,20128379 +) +(1,17054:6630773,20944306:25952256,424439,9908 +(1,17046:6630773,20944306:0,0,0 +g1,17046:6630773,20944306 +g1,17046:6630773,20944306 +g1,17046:6303093,20944306 +(1,17046:6303093,20944306:0,0,0 +) +g1,17046:6630773,20944306 +) +g1,17054:7626635,20944306 +g1,17054:8290543,20944306 +g1,17054:8954451,20944306 +g1,17054:11610083,20944306 +g1,17054:12937899,20944306 +g1,17054:13601807,20944306 +h1,17054:13933761,20944306:0,0,0 +k1,17054:32583029,20944306:18649268 +g1,17054:32583029,20944306 +) +(1,17054:6630773,21629161:25952256,424439,106246 +h1,17054:6630773,21629161:0,0,0 +g1,17054:7626635,21629161 +g1,17054:7958589,21629161 +g1,17054:8290543,21629161 +g1,17054:10946175,21629161 +g1,17054:14265714,21629161 +g1,17054:17917207,21629161 +h1,17054:22564562,21629161:0,0,0 +k1,17054:32583029,21629161:10018467 +g1,17054:32583029,21629161 +) +(1,17054:6630773,22314016:25952256,431045,6605 +h1,17054:6630773,22314016:0,0,0 +g1,17054:7626635,22314016 +g1,17054:7958589,22314016 +g1,17054:8290543,22314016 +g1,17054:10282267,22314016 +g1,17054:10614221,22314016 +g1,17054:10946175,22314016 +g1,17054:11278129,22314016 +g1,17054:11610083,22314016 +g1,17054:11942037,22314016 +g1,17054:12273991,22314016 +g1,17054:14265715,22314016 +g1,17054:16257439,22314016 +g1,17054:16589393,22314016 +g1,17054:16921347,22314016 +g1,17054:17253301,22314016 +g1,17054:17585255,22314016 +g1,17054:17917209,22314016 +k1,17054:17917209,22314016:0 +h1,17054:19576979,22314016:0,0,0 +k1,17054:32583029,22314016:13006050 +g1,17054:32583029,22314016 +) +(1,17054:6630773,22998871:25952256,424439,112852 +h1,17054:6630773,22998871:0,0,0 +g1,17054:7626635,22998871 +g1,17054:8290543,22998871 +g1,17054:10614221,22998871 +g1,17054:10946175,22998871 +g1,17054:11278129,22998871 +g1,17054:11610083,22998871 +g1,17054:11942037,22998871 +g1,17054:12273991,22998871 +g1,17054:12605945,22998871 +g1,17054:12937899,22998871 +g1,17054:14265715,22998871 +g1,17054:16257439,22998871 +g1,17054:16589393,22998871 +g1,17054:16921347,22998871 +g1,17054:17253301,22998871 +g1,17054:17585255,22998871 +g1,17054:17917209,22998871 +h1,17054:19908933,22998871:0,0,0 +k1,17054:32583029,22998871:12674096 +g1,17054:32583029,22998871 +) +(1,17054:6630773,23683726:25952256,424439,106246 +h1,17054:6630773,23683726:0,0,0 +g1,17054:7626635,23683726 +g1,17054:8290543,23683726 +g1,17054:10614221,23683726 +g1,17054:10946175,23683726 +g1,17054:11278129,23683726 +g1,17054:11610083,23683726 +g1,17054:11942037,23683726 +g1,17054:12273991,23683726 +g1,17054:12605945,23683726 +g1,17054:12937899,23683726 +g1,17054:14265715,23683726 +g1,17054:16257439,23683726 +g1,17054:16589393,23683726 +g1,17054:16921347,23683726 +g1,17054:17253301,23683726 +g1,17054:17585255,23683726 +g1,17054:17917209,23683726 +h1,17054:19576979,23683726:0,0,0 +k1,17054:32583029,23683726:13006050 +g1,17054:32583029,23683726 +) +(1,17054:6630773,24368581:25952256,424439,112852 +h1,17054:6630773,24368581:0,0,0 +g1,17054:7626635,24368581 +g1,17054:8290543,24368581 +g1,17054:10614221,24368581 +g1,17054:10946175,24368581 +g1,17054:11278129,24368581 +g1,17054:11610083,24368581 +g1,17054:11942037,24368581 +g1,17054:12273991,24368581 +g1,17054:12605945,24368581 +g1,17054:12937899,24368581 +g1,17054:14265715,24368581 +g1,17054:16257439,24368581 +g1,17054:16589393,24368581 +g1,17054:16921347,24368581 +g1,17054:17253301,24368581 +g1,17054:17585255,24368581 +g1,17054:17917209,24368581 +h1,17054:19908933,24368581:0,0,0 +k1,17054:32583029,24368581:12674096 +g1,17054:32583029,24368581 +) +(1,17054:6630773,25053436:25952256,424439,9908 +h1,17054:6630773,25053436:0,0,0 +g1,17054:7626635,25053436 +g1,17054:8290543,25053436 +g1,17054:8954451,25053436 +g1,17054:10282267,25053436 +g1,17054:11942037,25053436 +h1,17054:13269853,25053436:0,0,0 +k1,17054:32583029,25053436:19313176 +g1,17054:32583029,25053436 +) +] +) +g1,17055:32583029,25063344 +g1,17055:6630773,25063344 +g1,17055:6630773,25063344 +g1,17055:32583029,25063344 +g1,17055:32583029,25063344 +) +h1,17055:6630773,25259952:0,0,0 +(1,17059:6630773,26125032:25952256,513147,126483 +h1,17058:6630773,26125032:983040,0,0 +k1,17058:8450422,26125032:208774 +k1,17058:11498871,26125032:208774 +(1,17058:11498871,26125032:0,452978,115847 +r1,17097:14319120,26125032:2820249,568825,115847 +k1,17058:11498871,26125032:-2820249 +) +(1,17058:11498871,26125032:2820249,452978,115847 +k1,17058:11498871,26125032:3277 +h1,17058:14315843,26125032:0,411205,112570 +) +k1,17058:14527894,26125032:208774 +k1,17058:15422830,26125032:208774 +k1,17058:17333575,26125032:208775 +k1,17058:20568146,26125032:208774 +k1,17058:21392958,26125032:208774 +k1,17058:23574365,26125032:208774 +k1,17058:26161441,26125032:208774 +k1,17058:29804302,26125032:208774 +k1,17058:32583029,26125032:0 +) +(1,17059:6630773,26990112:25952256,513147,126483 +k1,17058:7698207,26990112:305906 +k1,17058:11029910,26990112:305906 +(1,17058:11029910,26990112:0,452978,115847 +r1,17097:15608718,26990112:4578808,568825,115847 +k1,17058:11029910,26990112:-4578808 +) +(1,17058:11029910,26990112:4578808,452978,115847 +k1,17058:11029910,26990112:3277 +h1,17058:15605441,26990112:0,411205,112570 +) +k1,17058:16088294,26990112:305906 +(1,17058:16088294,26990112:0,452978,115847 +r1,17097:19963678,26990112:3875384,568825,115847 +k1,17058:16088294,26990112:-3875384 +) +(1,17058:16088294,26990112:3875384,452978,115847 +k1,17058:16088294,26990112:3277 +h1,17058:19960401,26990112:0,411205,112570 +) +k1,17058:20443254,26990112:305906 +(1,17058:20443254,26990112:0,452978,115847 +r1,17097:23966926,26990112:3523672,568825,115847 +k1,17058:20443254,26990112:-3523672 +) +(1,17058:20443254,26990112:3523672,452978,115847 +k1,17058:20443254,26990112:3277 +h1,17058:23963649,26990112:0,411205,112570 +) +k1,17058:24446502,26990112:305906 +k1,17058:25943853,26990112:305906 +(1,17058:25943853,26990112:0,452978,115847 +r1,17097:29115813,26990112:3171960,568825,115847 +k1,17058:25943853,26990112:-3171960 +) +(1,17058:25943853,26990112:3171960,452978,115847 +k1,17058:25943853,26990112:3277 +h1,17058:29112536,26990112:0,411205,112570 +) +k1,17058:29421719,26990112:305906 +k1,17058:30379053,26990112:305906 +k1,17058:32583029,26990112:0 +) +(1,17059:6630773,27855192:25952256,513147,126483 +k1,17058:7578932,27855192:265274 +k1,17058:9708705,27855192:265274 +k1,17058:12860840,27855192:265274 +k1,17058:14168136,27855192:265274 +k1,17058:15636651,27855192:265274 +k1,17058:18563342,27855192:265274 +k1,17058:19696968,27855192:265274 +k1,17058:21054727,27855192:265274 +k1,17058:22339086,27855192:265274 +k1,17058:26597469,27855192:265274 +(1,17058:26597469,27855192:0,452978,115847 +r1,17097:29066006,27855192:2468537,568825,115847 +k1,17058:26597469,27855192:-2468537 +) +(1,17058:26597469,27855192:2468537,452978,115847 +k1,17058:26597469,27855192:3277 +h1,17058:29062729,27855192:0,411205,112570 +) +k1,17058:29331280,27855192:265274 +k1,17058:31923737,27855192:265274 +k1,17059:32583029,27855192:0 +) +(1,17059:6630773,28720272:25952256,452978,122846 +(1,17058:6630773,28720272:0,452978,122846 +r1,17097:10857869,28720272:4227096,575824,122846 +k1,17058:6630773,28720272:-4227096 +) +(1,17058:6630773,28720272:4227096,452978,122846 +k1,17058:6630773,28720272:3277 +h1,17058:10854592,28720272:0,411205,112570 +) +k1,17059:32583029,28720272:21672732 +g1,17059:32583029,28720272 +) +v1,17061:6630773,29405127:0,393216,0 +(1,17074:6630773,34564620:25952256,5552709,196608 +g1,17074:6630773,34564620 +g1,17074:6630773,34564620 +g1,17074:6434165,34564620 +(1,17074:6434165,34564620:0,5552709,196608 +r1,17097:32779637,34564620:26345472,5749317,196608 +k1,17074:6434165,34564620:-26345472 +) +(1,17074:6434165,34564620:26345472,5552709,196608 +[1,17074:6630773,34564620:25952256,5356101,0 +(1,17063:6630773,29632958:25952256,424439,106246 +(1,17062:6630773,29632958:0,0,0 +g1,17062:6630773,29632958 +g1,17062:6630773,29632958 +g1,17062:6303093,29632958 +(1,17062:6303093,29632958:0,0,0 +) +g1,17062:6630773,29632958 +) +k1,17063:6630773,29632958:0 +g1,17063:11942036,29632958 +k1,17063:11942036,29632958:0 +h1,17063:19245023,29632958:0,0,0 +k1,17063:32583029,29632958:13338006 +g1,17063:32583029,29632958 +) +(1,17073:6630773,30448885:25952256,424439,9908 +(1,17065:6630773,30448885:0,0,0 +g1,17065:6630773,30448885 +g1,17065:6630773,30448885 +g1,17065:6303093,30448885 +(1,17065:6303093,30448885:0,0,0 +) +g1,17065:6630773,30448885 +) +g1,17073:7626635,30448885 +g1,17073:8290543,30448885 +g1,17073:8954451,30448885 +g1,17073:11610083,30448885 +g1,17073:12937899,30448885 +g1,17073:13601807,30448885 +h1,17073:13933761,30448885:0,0,0 +k1,17073:32583029,30448885:18649268 +g1,17073:32583029,30448885 +) +(1,17073:6630773,31133740:25952256,424439,112852 +h1,17073:6630773,31133740:0,0,0 +g1,17073:7626635,31133740 +g1,17073:7958589,31133740 +g1,17073:8290543,31133740 +g1,17073:12605944,31133740 +g1,17073:16589391,31133740 +h1,17073:18913069,31133740:0,0,0 +k1,17073:32583029,31133740:13669960 +g1,17073:32583029,31133740 +) +(1,17073:6630773,31818595:25952256,431045,6605 +h1,17073:6630773,31818595:0,0,0 +g1,17073:7626635,31818595 +g1,17073:7958589,31818595 +g1,17073:8290543,31818595 +g1,17073:8622497,31818595 +g1,17073:8954451,31818595 +g1,17073:9286405,31818595 +g1,17073:9618359,31818595 +g1,17073:9950313,31818595 +g1,17073:10282267,31818595 +g1,17073:10614221,31818595 +g1,17073:12605945,31818595 +g1,17073:12937899,31818595 +g1,17073:13269853,31818595 +g1,17073:13601807,31818595 +g1,17073:13933761,31818595 +g1,17073:14265715,31818595 +g1,17073:14597669,31818595 +g1,17073:16589393,31818595 +k1,17073:16589393,31818595:0 +h1,17073:18249163,31818595:0,0,0 +k1,17073:32583029,31818595:14333866 +g1,17073:32583029,31818595 +) +(1,17073:6630773,32503450:25952256,407923,9908 +h1,17073:6630773,32503450:0,0,0 +g1,17073:7626635,32503450 +g1,17073:8290543,32503450 +g1,17073:8622497,32503450 +g1,17073:8954451,32503450 +g1,17073:9286405,32503450 +g1,17073:9618359,32503450 +g1,17073:9950313,32503450 +g1,17073:10282267,32503450 +g1,17073:10614221,32503450 +g1,17073:10946175,32503450 +g1,17073:11278129,32503450 +g1,17073:12605945,32503450 +g1,17073:12937899,32503450 +g1,17073:13269853,32503450 +g1,17073:13601807,32503450 +g1,17073:13933761,32503450 +g1,17073:14265715,32503450 +g1,17073:14597669,32503450 +g1,17073:14929623,32503450 +g1,17073:15261577,32503450 +g1,17073:16589393,32503450 +h1,17073:18581117,32503450:0,0,0 +k1,17073:32583029,32503450:14001912 +g1,17073:32583029,32503450 +) +(1,17073:6630773,33188305:25952256,407923,9908 +h1,17073:6630773,33188305:0,0,0 +g1,17073:7626635,33188305 +g1,17073:8290543,33188305 +g1,17073:8622497,33188305 +g1,17073:8954451,33188305 +g1,17073:9286405,33188305 +g1,17073:9618359,33188305 +g1,17073:9950313,33188305 +g1,17073:10282267,33188305 +g1,17073:10614221,33188305 +g1,17073:10946175,33188305 +g1,17073:11278129,33188305 +g1,17073:12605945,33188305 +g1,17073:12937899,33188305 +g1,17073:13269853,33188305 +g1,17073:13601807,33188305 +g1,17073:13933761,33188305 +g1,17073:14265715,33188305 +g1,17073:14597669,33188305 +g1,17073:14929623,33188305 +g1,17073:15261577,33188305 +g1,17073:16589393,33188305 +h1,17073:18581117,33188305:0,0,0 +k1,17073:32583029,33188305:14001912 +g1,17073:32583029,33188305 +) +(1,17073:6630773,33873160:25952256,407923,9908 +h1,17073:6630773,33873160:0,0,0 +g1,17073:7626635,33873160 +g1,17073:8290543,33873160 +g1,17073:8622497,33873160 +g1,17073:8954451,33873160 +g1,17073:9286405,33873160 +g1,17073:9618359,33873160 +g1,17073:9950313,33873160 +g1,17073:10282267,33873160 +g1,17073:10614221,33873160 +g1,17073:10946175,33873160 +g1,17073:11278129,33873160 +g1,17073:12605945,33873160 +g1,17073:12937899,33873160 +g1,17073:13269853,33873160 +g1,17073:13601807,33873160 +g1,17073:13933761,33873160 +g1,17073:14265715,33873160 +g1,17073:14597669,33873160 +g1,17073:14929623,33873160 +g1,17073:15261577,33873160 +g1,17073:16589393,33873160 +h1,17073:18581117,33873160:0,0,0 +k1,17073:32583029,33873160:14001912 +g1,17073:32583029,33873160 +) +(1,17073:6630773,34558015:25952256,424439,6605 +h1,17073:6630773,34558015:0,0,0 +g1,17073:7626635,34558015 +g1,17073:8290543,34558015 +g1,17073:8954451,34558015 +g1,17073:10282267,34558015 +g1,17073:11942037,34558015 +h1,17073:13269853,34558015:0,0,0 +k1,17073:32583029,34558015:19313176 +g1,17073:32583029,34558015 +) +] +) +g1,17074:32583029,34564620 +g1,17074:6630773,34564620 +g1,17074:6630773,34564620 +g1,17074:32583029,34564620 +g1,17074:32583029,34564620 +) +h1,17074:6630773,34761228:0,0,0 +v1,17078:6630773,35446083:0,393216,0 +(1,17091:6630773,40605576:25952256,5552709,196608 +g1,17091:6630773,40605576 +g1,17091:6630773,40605576 +g1,17091:6434165,40605576 +(1,17091:6434165,40605576:0,5552709,196608 +r1,17097:32779637,40605576:26345472,5749317,196608 +k1,17091:6434165,40605576:-26345472 +) +(1,17091:6434165,40605576:26345472,5552709,196608 +[1,17091:6630773,40605576:25952256,5356101,0 +(1,17080:6630773,35673914:25952256,424439,106246 +(1,17079:6630773,35673914:0,0,0 +g1,17079:6630773,35673914 +g1,17079:6630773,35673914 +g1,17079:6303093,35673914 +(1,17079:6303093,35673914:0,0,0 +) +g1,17079:6630773,35673914 +) +k1,17080:6630773,35673914:0 +g1,17080:11942036,35673914 +g1,17080:14929622,35673914 +k1,17080:14929622,35673914:0 +h1,17080:19908932,35673914:0,0,0 +k1,17080:32583029,35673914:12674097 +g1,17080:32583029,35673914 +) +(1,17090:6630773,36489841:25952256,424439,9908 +(1,17082:6630773,36489841:0,0,0 +g1,17082:6630773,36489841 +g1,17082:6630773,36489841 +g1,17082:6303093,36489841 +(1,17082:6303093,36489841:0,0,0 +) +g1,17082:6630773,36489841 +) +g1,17090:7626635,36489841 +g1,17090:8290543,36489841 +g1,17090:8954451,36489841 +g1,17090:11610083,36489841 +g1,17090:12937899,36489841 +g1,17090:13601807,36489841 +h1,17090:13933761,36489841:0,0,0 +k1,17090:32583029,36489841:18649268 +g1,17090:32583029,36489841 +) +(1,17090:6630773,37174696:25952256,424439,112852 +h1,17090:6630773,37174696:0,0,0 +g1,17090:7626635,37174696 +g1,17090:7958589,37174696 +g1,17090:8290543,37174696 +g1,17090:10946175,37174696 +g1,17090:15261576,37174696 +h1,17090:18913069,37174696:0,0,0 +k1,17090:32583029,37174696:13669960 +g1,17090:32583029,37174696 +) +(1,17090:6630773,37859551:25952256,431045,6605 +h1,17090:6630773,37859551:0,0,0 +g1,17090:7626635,37859551 +g1,17090:7958589,37859551 +g1,17090:8290543,37859551 +g1,17090:10282267,37859551 +g1,17090:10614221,37859551 +g1,17090:10946175,37859551 +g1,17090:11278129,37859551 +g1,17090:11610083,37859551 +g1,17090:11942037,37859551 +g1,17090:12273991,37859551 +g1,17090:12605945,37859551 +g1,17090:12937899,37859551 +g1,17090:13269853,37859551 +g1,17090:15261577,37859551 +g1,17090:15593531,37859551 +g1,17090:15925485,37859551 +g1,17090:16257439,37859551 +g1,17090:16589393,37859551 +g1,17090:16921347,37859551 +g1,17090:17253301,37859551 +k1,17090:17253301,37859551:0 +h1,17090:18913071,37859551:0,0,0 +k1,17090:32583029,37859551:13669958 +g1,17090:32583029,37859551 +) +(1,17090:6630773,38544406:25952256,407923,9908 +h1,17090:6630773,38544406:0,0,0 +g1,17090:7626635,38544406 +g1,17090:8290543,38544406 +g1,17090:10614221,38544406 +g1,17090:10946175,38544406 +g1,17090:11278129,38544406 +g1,17090:11610083,38544406 +g1,17090:11942037,38544406 +g1,17090:12273991,38544406 +g1,17090:12605945,38544406 +g1,17090:12937899,38544406 +g1,17090:13269853,38544406 +g1,17090:13601807,38544406 +g1,17090:13933761,38544406 +g1,17090:15261577,38544406 +g1,17090:15593531,38544406 +g1,17090:15925485,38544406 +g1,17090:16257439,38544406 +g1,17090:16589393,38544406 +g1,17090:16921347,38544406 +g1,17090:17253301,38544406 +g1,17090:17585255,38544406 +g1,17090:17917209,38544406 +h1,17090:18913071,38544406:0,0,0 +k1,17090:32583029,38544406:13669958 +g1,17090:32583029,38544406 +) +(1,17090:6630773,39229261:25952256,407923,9908 +h1,17090:6630773,39229261:0,0,0 +g1,17090:7626635,39229261 +g1,17090:8290543,39229261 +g1,17090:10614221,39229261 +g1,17090:10946175,39229261 +g1,17090:11278129,39229261 +g1,17090:11610083,39229261 +g1,17090:11942037,39229261 +g1,17090:12273991,39229261 +g1,17090:12605945,39229261 +g1,17090:12937899,39229261 +g1,17090:13269853,39229261 +g1,17090:13601807,39229261 +g1,17090:13933761,39229261 +g1,17090:15261577,39229261 +g1,17090:15593531,39229261 +g1,17090:15925485,39229261 +g1,17090:16257439,39229261 +g1,17090:16589393,39229261 +g1,17090:16921347,39229261 +g1,17090:17253301,39229261 +g1,17090:17585255,39229261 +g1,17090:17917209,39229261 +h1,17090:18249163,39229261:0,0,0 +k1,17090:32583029,39229261:14333866 +g1,17090:32583029,39229261 +) +(1,17090:6630773,39914116:25952256,407923,9908 +h1,17090:6630773,39914116:0,0,0 +g1,17090:7626635,39914116 +g1,17090:8290543,39914116 +g1,17090:10614221,39914116 +g1,17090:10946175,39914116 +g1,17090:11278129,39914116 +g1,17090:11610083,39914116 +g1,17090:11942037,39914116 +g1,17090:12273991,39914116 +g1,17090:12605945,39914116 +g1,17090:12937899,39914116 +g1,17090:13269853,39914116 +g1,17090:13601807,39914116 +g1,17090:13933761,39914116 +g1,17090:15261577,39914116 +g1,17090:15593531,39914116 +g1,17090:15925485,39914116 +g1,17090:16257439,39914116 +g1,17090:16589393,39914116 +g1,17090:16921347,39914116 +g1,17090:17253301,39914116 +g1,17090:17585255,39914116 +g1,17090:17917209,39914116 +h1,17090:18913071,39914116:0,0,0 +k1,17090:32583029,39914116:13669958 +g1,17090:32583029,39914116 +) +(1,17090:6630773,40598971:25952256,424439,6605 +h1,17090:6630773,40598971:0,0,0 +g1,17090:7626635,40598971 +g1,17090:8290543,40598971 +g1,17090:8954451,40598971 +g1,17090:10282267,40598971 +g1,17090:11942037,40598971 +h1,17090:13269853,40598971:0,0,0 +k1,17090:32583029,40598971:19313176 +g1,17090:32583029,40598971 +) +] +) +g1,17091:32583029,40605576 +g1,17091:6630773,40605576 +g1,17091:6630773,40605576 +g1,17091:32583029,40605576 +g1,17091:32583029,40605576 +) +h1,17091:6630773,40802184:0,0,0 +(1,17095:6630773,41667264:25952256,505283,126483 +h1,17094:6630773,41667264:983040,0,0 +k1,17094:10676951,41667264:273270 +(1,17094:10676951,41667264:0,452978,115847 +r1,17097:13497200,41667264:2820249,568825,115847 +k1,17094:10676951,41667264:-2820249 +) +(1,17094:10676951,41667264:2820249,452978,115847 +k1,17094:10676951,41667264:3277 +h1,17094:13493923,41667264:0,411205,112570 +) +k1,17094:13770471,41667264:273271 +k1,17094:15148023,41667264:273270 +k1,17094:16169060,41667264:273271 +k1,17094:17955556,41667264:273270 +k1,17094:18880254,41667264:273270 +k1,17094:21527239,41667264:273271 +k1,17094:24687370,41667264:273270 +k1,17094:27565697,41667264:273271 +k1,17094:29272895,41667264:273270 +k1,17094:29960934,41667264:273196 +k1,17094:32583029,41667264:0 +) +(1,17095:6630773,42532344:25952256,513147,115847 +k1,17094:7925646,42532344:275788 +k1,17094:9293918,42532344:275787 +k1,17094:10228998,42532344:275788 +k1,17094:11971482,42532344:275788 +(1,17094:11971482,42532344:0,452978,115847 +r1,17097:14440019,42532344:2468537,568825,115847 +k1,17094:11971482,42532344:-2468537 +) +(1,17094:11971482,42532344:2468537,452978,115847 +k1,17094:11971482,42532344:3277 +h1,17094:14436742,42532344:0,411205,112570 +) +k1,17094:14715807,42532344:275788 +k1,17094:16183039,42532344:275787 +(1,17094:16183039,42532344:0,452978,115847 +r1,17097:19354999,42532344:3171960,568825,115847 +k1,17094:16183039,42532344:-3171960 +) +(1,17094:16183039,42532344:3171960,452978,115847 +k1,17094:16183039,42532344:3277 +h1,17094:19351722,42532344:0,411205,112570 +) +k1,17094:19630787,42532344:275788 +k1,17094:21098020,42532344:275788 +k1,17094:22170726,42532344:275788 +k1,17094:23580286,42532344:275787 +k1,17094:25352261,42532344:275788 +k1,17094:26279477,42532344:275788 +k1,17094:28536418,42532344:275788 +k1,17094:30095400,42532344:275787 +k1,17094:31562633,42532344:275788 +k1,17094:32583029,42532344:0 +) +(1,17095:6630773,43397424:25952256,513147,134348 +k1,17094:9223478,43397424:350718 +k1,17094:10392086,43397424:350719 +k1,17094:12818329,43397424:350718 +k1,17094:15211149,43397424:350718 +k1,17094:16580953,43397424:350719 +k1,17094:19015716,43397424:350718 +k1,17094:20314085,43397424:350718 +k1,17094:22116426,43397424:350719 +k1,17094:24850033,43397424:350718 +k1,17094:26938766,43397424:350718 +k1,17094:27940913,43397424:350719 +k1,17094:29039397,43397424:350718 +k1,17094:32051532,43397424:350718 +k1,17095:32583029,43397424:0 +) +(1,17095:6630773,44262504:25952256,505283,134348 +(1,17094:6630773,44262504:0,452978,115847 +r1,17097:14726699,44262504:8095926,568825,115847 +k1,17094:6630773,44262504:-8095926 +) +(1,17094:6630773,44262504:8095926,452978,115847 +g1,17094:8392609,44262504 +g1,17094:10502880,44262504 +g1,17094:11206304,44262504 +g1,17094:12964863,44262504 +h1,17094:14723422,44262504:0,411205,112570 +) +k1,17094:15173988,44262504:273619 +k1,17094:16644293,44262504:273618 +k1,17094:18090351,44262504:273619 +k1,17094:20432285,44262504:273618 +k1,17094:21810186,44262504:273619 +k1,17094:22831570,44262504:273618 +k1,17094:24799950,44262504:273619 +k1,17094:26929548,44262504:273618 +k1,17094:27889329,44262504:273619 +k1,17094:29554932,44262504:273618 +k1,17094:31896867,44262504:273619 +k1,17094:32583029,44262504:0 +) +(1,17095:6630773,45127584:25952256,505283,134348 +g1,17094:8698433,45127584 +g1,17094:9580547,45127584 +g1,17094:10465938,45127584 +g1,17094:13639846,45127584 +k1,17095:32583029,45127584:16694643 +g1,17095:32583029,45127584 +) +] +(1,17097:32583029,45706769:0,0,0 +g1,17097:32583029,45706769 +) +) +] +(1,17097:6630773,47279633:25952256,0,0 +h1,17097:6630773,47279633:25952256,0,0 +) +] +(1,17097:4262630,4025873:0,0,0 +[1,17097:-473656,4025873:0,0,0 +(1,17097:-473656,-710413:0,0,0 +(1,17097:-473656,-710413:0,0,0 +g1,17097:-473656,-710413 +) +g1,17097:-473656,-710413 ) ] ) ] !35914 -}276 -Input:2867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2868:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2869:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2870:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}277 Input:2871:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2872:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2873:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2874:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2875:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2876:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2877:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{277 -[1,17154:4262630,47279633:28320399,43253760,0 -(1,17154:4262630,4025873:0,0,0 -[1,17154:-473656,4025873:0,0,0 -(1,17154:-473656,-710413:0,0,0 -(1,17154:-473656,-644877:0,0,0 -k1,17154:-473656,-644877:-65536 +{278 +[1,17152:4262630,47279633:28320399,43253760,0 +(1,17152:4262630,4025873:0,0,0 +[1,17152:-473656,4025873:0,0,0 +(1,17152:-473656,-710413:0,0,0 +(1,17152:-473656,-644877:0,0,0 +k1,17152:-473656,-644877:-65536 ) -(1,17154:-473656,4736287:0,0,0 -k1,17154:-473656,4736287:5209943 +(1,17152:-473656,4736287:0,0,0 +k1,17152:-473656,4736287:5209943 ) -g1,17154:-473656,-710413 +g1,17152:-473656,-710413 ) ] ) -[1,17154:6630773,47279633:25952256,43253760,0 -[1,17154:6630773,4812305:25952256,786432,0 -(1,17154:6630773,4812305:25952256,505283,134348 -(1,17154:6630773,4812305:25952256,505283,134348 -g1,17154:3078558,4812305 -[1,17154:3078558,4812305:0,0,0 -(1,17154:3078558,2439708:0,1703936,0 -k1,17154:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17154:2537886,2439708:1179648,16384,0 +[1,17152:6630773,47279633:25952256,43253760,0 +[1,17152:6630773,4812305:25952256,786432,0 +(1,17152:6630773,4812305:25952256,505283,134348 +(1,17152:6630773,4812305:25952256,505283,134348 +g1,17152:3078558,4812305 +[1,17152:3078558,4812305:0,0,0 +(1,17152:3078558,2439708:0,1703936,0 +k1,17152:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17152:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17154:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17152:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17154:3078558,4812305:0,0,0 -(1,17154:3078558,2439708:0,1703936,0 -g1,17154:29030814,2439708 -g1,17154:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17154:36151628,1915420:16384,1179648,0 +[1,17152:3078558,4812305:0,0,0 +(1,17152:3078558,2439708:0,1703936,0 +g1,17152:29030814,2439708 +g1,17152:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17152:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17154:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17152:37855564,2439708:1179648,16384,0 ) ) -k1,17154:3078556,2439708:-34777008 +k1,17152:3078556,2439708:-34777008 ) ] -[1,17154:3078558,4812305:0,0,0 -(1,17154:3078558,49800853:0,16384,2228224 -k1,17154:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17154:2537886,49800853:1179648,16384,0 +[1,17152:3078558,4812305:0,0,0 +(1,17152:3078558,49800853:0,16384,2228224 +k1,17152:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17152:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17154:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17152:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17154:3078558,4812305:0,0,0 -(1,17154:3078558,49800853:0,16384,2228224 -g1,17154:29030814,49800853 -g1,17154:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17154:36151628,51504789:16384,1179648,0 +[1,17152:3078558,4812305:0,0,0 +(1,17152:3078558,49800853:0,16384,2228224 +g1,17152:29030814,49800853 +g1,17152:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17152:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17154:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17152:37855564,49800853:1179648,16384,0 ) ) -k1,17154:3078556,49800853:-34777008 +k1,17152:3078556,49800853:-34777008 ) -] -g1,17154:6630773,4812305 -k1,17154:23347041,4812305:15520891 -g1,17154:23960458,4812305 -g1,17154:27572802,4812305 -g1,17154:29306229,4812305 -) -) -] -[1,17154:6630773,45706769:25952256,40108032,0 -(1,17154:6630773,45706769:25952256,40108032,0 -(1,17154:6630773,45706769:0,0,0 -g1,17154:6630773,45706769 -) -[1,17154:6630773,45706769:25952256,40108032,0 -v1,17099:6630773,6254097:0,393216,0 -(1,17114:6630773,12786603:25952256,6925722,196608 -g1,17114:6630773,12786603 -g1,17114:6630773,12786603 -g1,17114:6434165,12786603 -(1,17114:6434165,12786603:0,6925722,196608 -r1,17154:32779637,12786603:26345472,7122330,196608 -k1,17114:6434165,12786603:-26345472 -) -(1,17114:6434165,12786603:26345472,6925722,196608 -[1,17114:6630773,12786603:25952256,6729114,0 -(1,17101:6630773,6481928:25952256,424439,112852 -(1,17100:6630773,6481928:0,0,0 -g1,17100:6630773,6481928 -g1,17100:6630773,6481928 -g1,17100:6303093,6481928 -(1,17100:6303093,6481928:0,0,0 -) -g1,17100:6630773,6481928 -) -g1,17101:10946174,6481928 -k1,17101:10946174,6481928:0 -h1,17101:11610082,6481928:0,0,0 -k1,17101:32583030,6481928:20972948 -g1,17101:32583030,6481928 -) -(1,17102:6630773,7166783:25952256,424439,106246 -h1,17102:6630773,7166783:0,0,0 -g1,17102:11278129,7166783 -k1,17102:11278129,7166783:0 -h1,17102:11942037,7166783:0,0,0 -k1,17102:32583029,7166783:20640992 -g1,17102:32583029,7166783 -) -(1,17103:6630773,7851638:25952256,424439,106246 -h1,17103:6630773,7851638:0,0,0 -g1,17103:10614221,7851638 -g1,17103:11278129,7851638 -g1,17103:15261576,7851638 -g1,17103:16921346,7851638 -g1,17103:17585254,7851638 -g1,17103:21236747,7851638 -g1,17103:24556286,7851638 -g1,17103:25220194,7851638 -h1,17103:30199503,7851638:0,0,0 -k1,17103:32583029,7851638:2383526 -g1,17103:32583029,7851638 -) -(1,17113:6630773,8667565:25952256,424439,9908 -(1,17105:6630773,8667565:0,0,0 -g1,17105:6630773,8667565 -g1,17105:6630773,8667565 -g1,17105:6303093,8667565 -(1,17105:6303093,8667565:0,0,0 -) -g1,17105:6630773,8667565 -) -g1,17113:7626635,8667565 -g1,17113:8290543,8667565 -g1,17113:8954451,8667565 -g1,17113:11610083,8667565 -g1,17113:12937899,8667565 -g1,17113:13601807,8667565 -h1,17113:13933761,8667565:0,0,0 -k1,17113:32583029,8667565:18649268 -g1,17113:32583029,8667565 -) -(1,17113:6630773,9352420:25952256,424439,106246 -h1,17113:6630773,9352420:0,0,0 -g1,17113:7626635,9352420 -g1,17113:7958589,9352420 -g1,17113:8290543,9352420 -g1,17113:10946175,9352420 -g1,17113:11278129,9352420 -g1,17113:12937899,9352420 -g1,17113:14597669,9352420 -g1,17113:14929623,9352420 -h1,17113:17917208,9352420:0,0,0 -k1,17113:32583029,9352420:14665821 -g1,17113:32583029,9352420 -) -(1,17113:6630773,10037275:25952256,431045,6605 -h1,17113:6630773,10037275:0,0,0 -g1,17113:7626635,10037275 -g1,17113:7958589,10037275 -g1,17113:8290543,10037275 -g1,17113:10282267,10037275 -g1,17113:10614221,10037275 -g1,17113:10946175,10037275 -g1,17113:12937899,10037275 -g1,17113:14929623,10037275 -k1,17113:14929623,10037275:0 -h1,17113:16589393,10037275:0,0,0 -k1,17113:32583029,10037275:15993636 -g1,17113:32583029,10037275 -) -(1,17113:6630773,10722130:25952256,424439,112852 -h1,17113:6630773,10722130:0,0,0 -g1,17113:7626635,10722130 -g1,17113:8290543,10722130 -g1,17113:10614221,10722130 -g1,17113:10946175,10722130 -g1,17113:11278129,10722130 -g1,17113:11610083,10722130 -g1,17113:12937899,10722130 -g1,17113:14929623,10722130 -h1,17113:16921347,10722130:0,0,0 -k1,17113:32583029,10722130:15661682 -g1,17113:32583029,10722130 -) -(1,17113:6630773,11406985:25952256,424439,106246 -h1,17113:6630773,11406985:0,0,0 -g1,17113:7626635,11406985 -g1,17113:8290543,11406985 -g1,17113:10614221,11406985 -g1,17113:10946175,11406985 -g1,17113:11278129,11406985 -g1,17113:11610083,11406985 -g1,17113:12937899,11406985 -g1,17113:14929623,11406985 -h1,17113:16589393,11406985:0,0,0 -k1,17113:32583029,11406985:15993636 -g1,17113:32583029,11406985 -) -(1,17113:6630773,12091840:25952256,424439,112852 -h1,17113:6630773,12091840:0,0,0 -g1,17113:7626635,12091840 -g1,17113:8290543,12091840 -g1,17113:10614221,12091840 -g1,17113:10946175,12091840 -g1,17113:11278129,12091840 -g1,17113:11610083,12091840 -g1,17113:12937899,12091840 -g1,17113:14929623,12091840 -h1,17113:16921347,12091840:0,0,0 -k1,17113:32583029,12091840:15661682 -g1,17113:32583029,12091840 -) -(1,17113:6630773,12776695:25952256,424439,9908 -h1,17113:6630773,12776695:0,0,0 -g1,17113:7626635,12776695 -g1,17113:8290543,12776695 -g1,17113:8954451,12776695 -g1,17113:10282267,12776695 -g1,17113:11942037,12776695 -h1,17113:13269853,12776695:0,0,0 -k1,17113:32583029,12776695:19313176 -g1,17113:32583029,12776695 -) -] -) -g1,17114:32583029,12786603 -g1,17114:6630773,12786603 -g1,17114:6630773,12786603 -g1,17114:32583029,12786603 -g1,17114:32583029,12786603 -) -h1,17114:6630773,12983211:0,0,0 -v1,17119:6630773,13848291:0,393216,0 -(1,17120:6630773,18489852:25952256,5034777,0 -g1,17120:6630773,18489852 -g1,17120:6237557,18489852 -r1,17154:6368629,18489852:131072,5034777,0 -g1,17120:6567858,18489852 -g1,17120:6764466,18489852 -[1,17120:6764466,18489852:25818563,5034777,0 -(1,17120:6764466,14156589:25818563,701514,196608 -(1,17119:6764466,14156589:0,701514,196608 -r1,17154:7761522,14156589:997056,898122,196608 -k1,17119:6764466,14156589:-997056 -) -(1,17119:6764466,14156589:997056,701514,196608 -) -k1,17119:7966192,14156589:204670 -k1,17119:8293872,14156589:327680 -k1,17119:10754946,14156589:204669 -k1,17119:11618908,14156589:204670 -k1,17119:12842662,14156589:204669 -k1,17119:16073129,14156589:204670 -k1,17119:19367822,14156589:204670 -k1,17119:20188529,14156589:204669 -k1,17119:21596440,14156589:204670 -k1,17119:24079796,14156589:204669 -k1,17119:25788517,14156589:204670 -k1,17119:28291534,14156589:204669 -k1,17119:31025894,14156589:204670 -k1,17120:32583029,14156589:0 -) -(1,17120:6764466,15021669:25818563,513147,134348 -k1,17119:8288127,15021669:228014 -(1,17119:8288127,15021669:0,435480,115847 -r1,17154:9349816,15021669:1061689,551327,115847 -k1,17119:8288127,15021669:-1061689 -) -(1,17119:8288127,15021669:1061689,435480,115847 -k1,17119:8288127,15021669:3277 -h1,17119:9346539,15021669:0,411205,112570 -) -k1,17119:9784925,15021669:228015 -k1,17119:11580560,15021669:228014 -k1,17119:14388727,15021669:228015 -k1,17119:17561928,15021669:228014 -k1,17119:18832621,15021669:228015 -k1,17119:20126906,15021669:228014 -k1,17119:22881334,15021669:228015 -k1,17119:24128433,15021669:228014 -k1,17119:25448933,15021669:228015 -k1,17119:26336239,15021669:228014 -k1,17119:27583339,15021669:228015 -k1,17119:31025894,15021669:228014 -k1,17120:32583029,15021669:0 -) -(1,17120:6764466,15886749:25818563,513147,134348 -k1,17119:8611608,15886749:221194 -k1,17119:9448839,15886749:221193 -k1,17119:10689118,15886749:221194 -k1,17119:11943815,15886749:221194 -k1,17119:13900401,15886749:221193 -k1,17119:16868209,15886749:221194 -k1,17119:19347118,15886749:221194 -k1,17119:22429614,15886749:221194 -(1,17119:22429614,15886749:0,452978,115847 -r1,17154:23139592,15886749:709978,568825,115847 -k1,17119:22429614,15886749:-709978 -) -(1,17119:22429614,15886749:709978,452978,115847 -k1,17119:22429614,15886749:3277 -h1,17119:23136315,15886749:0,411205,112570 -) -k1,17119:23360785,15886749:221193 -k1,17119:26060551,15886749:221194 -k1,17119:27849366,15886749:221194 -k1,17119:28485380,15886749:221171 -k1,17119:31040311,15886749:221194 -k1,17119:32583029,15886749:0 -) -(1,17120:6764466,16751829:25818563,513147,134348 -k1,17119:8428072,16751829:170696 -k1,17119:9665039,16751829:170696 -k1,17119:11310950,16751829:170696 -k1,17119:12684887,16751829:170696 -k1,17119:15963300,16751829:170696 -k1,17119:17366073,16751829:170696 -k1,17119:19815456,16751829:170696 -h1,17119:20786044,16751829:0,0,0 -k1,17119:20956740,16751829:170696 -k1,17119:21936806,16751829:170696 -k1,17119:23605655,16751829:170696 -h1,17119:24801032,16751829:0,0,0 -k1,17119:25352492,16751829:170696 -k1,17119:28367451,16751829:170696 -k1,17119:29557232,16751829:170696 -k1,17119:32583029,16751829:0 -) -(1,17120:6764466,17616909:25818563,513147,134348 -k1,17119:8496078,17616909:163991 -k1,17119:10632702,17616909:163991 -k1,17119:13024262,17616909:163991 -k1,17119:15165475,17616909:163992 -k1,17119:16015628,17616909:163991 -k1,17119:17559807,17616909:163991 -k1,17119:19405452,17616909:163991 -k1,17119:21219640,17616909:163991 -k1,17119:23738995,17616909:163991 -k1,17119:25094432,17616909:163992 -k1,17119:26788689,17616909:163991 -k1,17119:29091775,17616909:163991 -k1,17119:29915058,17616909:163991 -k1,17119:32583029,17616909:0 -) -(1,17120:6764466,18481989:25818563,505283,7863 -k1,17120:32583029,18481989:22403482 -g1,17120:32583029,18481989 -) -] -g1,17120:32583029,18489852 -) -h1,17120:6630773,18489852:0,0,0 -(1,17122:6630773,20606670:25952256,555811,139132 -(1,17122:6630773,20606670:2450326,534184,12975 -g1,17122:6630773,20606670 -g1,17122:9081099,20606670 -) -g1,17122:13428102,20606670 -k1,17122:32583029,20606670:13965917 -g1,17122:32583029,20606670 -) -(1,17126:6630773,21864966:25952256,513147,134348 -k1,17125:9437383,21864966:226457 -k1,17125:12873137,21864966:226456 -k1,17125:16173888,21864966:226457 -k1,17125:16931842,21864966:226457 -k1,17125:17809726,21864966:226456 -k1,17125:21544325,21864966:226457 -k1,17125:24954520,21864966:226456 -k1,17125:25942505,21864966:226457 -k1,17125:28391943,21864966:226457 -k1,17125:29277691,21864966:226456 -k1,17125:31212016,21864966:226457 -k1,17126:32583029,21864966:0 -) -(1,17126:6630773,22730046:25952256,513147,134348 -k1,17125:8320241,22730046:138886 -k1,17125:9110555,22730046:138886 -k1,17125:10683369,22730046:138886 -k1,17125:11410768,22730046:138886 -k1,17125:12568739,22730046:138886 -k1,17125:15610215,22730046:138886 -k1,17125:16408392,22730046:138885 -k1,17125:17936641,22730046:138886 -k1,17125:22331435,22730046:138886 -k1,17125:23156483,22730046:138886 -k1,17125:27496882,22730046:138886 -k1,17125:28251806,22730046:138886 -k1,17125:30536995,22730046:138886 -k1,17125:32583029,22730046:0 -) -(1,17126:6630773,23595126:25952256,513147,134348 -k1,17125:7309913,23595126:221043 -k1,17125:10160917,23595126:221044 -k1,17125:11033388,23595126:221043 -k1,17125:12668699,23595126:221044 -k1,17125:14092983,23595126:221043 -k1,17125:17388321,23595126:221044 -k1,17125:18876830,23595126:221043 -k1,17125:20270312,23595126:221043 -k1,17125:22350612,23595126:221044 -k1,17125:23590740,23595126:221043 -k1,17125:25993478,23595126:221044 -k1,17125:26873813,23595126:221043 -k1,17125:28113942,23595126:221044 -k1,17125:31391584,23595126:221043 -k1,17125:32583029,23595126:0 -) -(1,17126:6630773,24460206:25952256,513147,134348 -k1,17125:7879889,24460206:230031 -k1,17125:11581362,24460206:230031 -k1,17125:12470686,24460206:230032 -k1,17125:16382530,24460206:230031 -k1,17125:17993405,24460206:230031 -k1,17125:21310182,24460206:230031 -k1,17125:22559298,24460206:230031 -k1,17125:24459186,24460206:230031 -k1,17125:27047859,24460206:230032 -k1,17125:27735987,24460206:230031 -k1,17125:29616215,24460206:230031 -k1,17125:31647175,24460206:230031 -k1,17126:32583029,24460206:0 -) -(1,17126:6630773,25325286:25952256,513147,134348 -k1,17125:10995987,25325286:221373 -k1,17125:12915397,25325286:221372 -k1,17125:14872163,25325286:221373 -k1,17125:16813855,25325286:221372 -k1,17125:20216346,25325286:221373 -k1,17125:21089146,25325286:221372 -k1,17125:22329604,25325286:221373 -k1,17125:25535487,25325286:221373 -k1,17125:26416151,25325286:221372 -k1,17125:28071452,25325286:221373 -k1,17125:28707645,25325286:221350 -(1,17125:28707645,25325286:0,452978,122846 -r1,17154:32583029,25325286:3875384,575824,122846 -k1,17125:28707645,25325286:-3875384 -) -(1,17125:28707645,25325286:3875384,452978,122846 -k1,17125:28707645,25325286:3277 -h1,17125:32579752,25325286:0,411205,112570 -) -k1,17125:32583029,25325286:0 -) -(1,17126:6630773,26190366:25952256,505283,134348 -g1,17125:8041107,26190366 -g1,17125:10519023,26190366 -h1,17125:12061741,26190366:0,0,0 -g1,17125:12260970,26190366 -g1,17125:13269569,26190366 -g1,17125:14966951,26190366 -h1,17125:16162328,26190366:0,0,0 -k1,17126:32583029,26190366:16161179 -g1,17126:32583029,26190366 -) -v1,17128:6630773,27055446:0,393216,0 -(1,17129:6630773,31876371:25952256,5214141,0 -g1,17129:6630773,31876371 -g1,17129:6237557,31876371 -r1,17154:6368629,31876371:131072,5214141,0 -g1,17129:6567858,31876371 -g1,17129:6764466,31876371 -[1,17129:6764466,31876371:25818563,5214141,0 -(1,17129:6764466,27416623:25818563,754393,260573 -(1,17128:6764466,27416623:0,754393,260573 -r1,17154:7856192,27416623:1091726,1014966,260573 -k1,17128:6764466,27416623:-1091726 -) -(1,17128:6764466,27416623:1091726,754393,260573 -) -k1,17128:8059244,27416623:203052 -k1,17128:8386924,27416623:327680 -k1,17128:9217811,27416623:203052 -k1,17128:10978653,27416623:203051 -k1,17128:12949211,27416623:203052 -k1,17128:15732415,27416623:203052 -k1,17128:17908100,27416623:203052 -k1,17128:20444889,27416623:203052 -k1,17128:22190659,27416623:203052 -k1,17128:24359135,27416623:203051 -k1,17128:27088600,27416623:203052 -k1,17128:28239303,27416623:203052 -k1,17128:32583029,27416623:0 -) -(1,17129:6764466,28281703:25818563,513147,134348 -k1,17128:9932179,28281703:284784 -k1,17128:10978492,28281703:284785 -k1,17128:13450868,28281703:284784 -k1,17128:14387080,28281703:284784 -k1,17128:17697662,28281703:284785 -k1,17128:18338306,28281703:284784 -k1,17128:19906286,28281703:284785 -k1,17128:23471802,28281703:284784 -(1,17128:23678896,28281703:0,452978,115847 -r1,17154:24388874,28281703:709978,568825,115847 -k1,17128:23678896,28281703:-709978 -) -(1,17128:23678896,28281703:709978,452978,115847 -k1,17128:23678896,28281703:3277 -h1,17128:24385597,28281703:0,411205,112570 -) -k1,17128:24673658,28281703:284784 -k1,17128:25641328,28281703:284785 -(1,17128:25641328,28281703:0,452978,115847 -r1,17154:26703017,28281703:1061689,568825,115847 -k1,17128:25641328,28281703:-1061689 -) -(1,17128:25641328,28281703:1061689,452978,115847 -k1,17128:25641328,28281703:3277 -h1,17128:26699740,28281703:0,411205,112570 -) -k1,17128:27368565,28281703:284784 -k1,17128:29034193,28281703:284784 -k1,17128:29850475,28281703:284785 -k1,17128:31333913,28281703:284784 -k1,17129:32583029,28281703:0 -) -(1,17129:6764466,29146783:25818563,513147,134348 -k1,17128:9301910,29146783:181425 -k1,17128:10254039,29146783:181426 -k1,17128:14605520,29146783:181425 -k1,17128:17062356,29146783:181426 -k1,17128:18528287,29146783:181425 -k1,17128:20046647,29146783:181426 -k1,17128:22642418,29146783:181425 -k1,17128:25499024,29146783:181426 -k1,17128:26138546,29146783:181425 -k1,17128:26851469,29146783:181426 -k1,17128:30242192,29146783:181425 -k1,17128:31075046,29146783:181426 -k1,17128:32583029,29146783:0 -) -(1,17129:6764466,30011863:25818563,505283,134348 -k1,17128:7606905,30011863:226401 -k1,17128:9490057,30011863:226402 -k1,17128:11000964,30011863:226401 -k1,17128:12430607,30011863:226402 -k1,17128:13940203,30011863:226401 -k1,17128:17151115,30011863:226402 -k1,17128:18028944,30011863:226401 -k1,17128:21138275,30011863:226402 -k1,17128:21896173,30011863:226401 -k1,17128:23188846,30011863:226402 -k1,17128:26609472,30011863:226401 -k1,17128:27982099,30011863:226402 -k1,17128:29493006,30011863:226401 -k1,17128:32583029,30011863:0 -) -(1,17129:6764466,30876943:25818563,513147,134348 -k1,17128:8937283,30876943:143822 -k1,17128:12525676,30876943:143821 -k1,17128:13478868,30876943:143822 -k1,17128:14641774,30876943:143821 -k1,17128:19519917,30876943:143822 -k1,17128:23281981,30876943:143821 -k1,17128:24530085,30876943:143822 -k1,17128:27278307,30876943:143821 -k1,17128:28441214,30876943:143822 -k1,17128:30081222,30876943:143821 -k1,17128:31297213,30876943:143822 -k1,17128:32583029,30876943:0 -) -(1,17129:6764466,31742023:25818563,505283,134348 -g1,17128:8893075,31742023 -g1,17128:10612084,31742023 -g1,17128:12509351,31742023 -g1,17128:13774851,31742023 -g1,17128:15741586,31742023 -g1,17128:17208281,31742023 -k1,17129:32583029,31742023:12818189 -g1,17129:32583029,31742023 -) -] -g1,17129:32583029,31876371 -) -h1,17129:6630773,31876371:0,0,0 -(1,17132:6630773,32741451:25952256,513147,134348 -h1,17131:6630773,32741451:983040,0,0 -k1,17131:9637479,32741451:240431 -k1,17131:11613304,32741451:240432 -k1,17131:15047960,32741451:240431 -k1,17131:18344991,32741451:240432 -k1,17131:19604507,32741451:240431 -k1,17131:21151072,32741451:240432 -k1,17131:22746788,32741451:240431 -k1,17131:23518717,32741451:240432 -k1,17131:24410576,32741451:240431 -k1,17131:25743493,32741451:240432 -(1,17131:25743493,32741451:0,452978,122846 -r1,17154:29267165,32741451:3523672,575824,122846 -k1,17131:25743493,32741451:-3523672 -) -(1,17131:25743493,32741451:3523672,452978,122846 -k1,17131:25743493,32741451:3277 -h1,17131:29263888,32741451:0,411205,112570 -) -k1,17131:29507596,32741451:240431 -k1,17131:30399456,32741451:240432 -k1,17131:32227169,32741451:240431 -k1,17131:32583029,32741451:0 -) -(1,17132:6630773,33606531:25952256,505283,134348 -k1,17131:8588683,33606531:146495 -k1,17131:10129128,33606531:146494 -k1,17131:11294708,33606531:146495 -k1,17131:14497802,33606531:146495 -k1,17131:15597846,33606531:146495 -k1,17131:17673720,33606531:146494 -k1,17131:18176075,33606531:146495 -k1,17131:20054687,33606531:146495 -k1,17131:21392627,33606531:146495 -k1,17131:22973049,33606531:146494 -k1,17131:25512263,33606531:146495 -k1,17131:26116855,33606531:146495 -k1,17131:27530816,33606531:146495 -k1,17131:28033170,33606531:146494 -k1,17131:30798484,33606531:146495 -k1,17131:32583029,33606531:0 -) -(1,17132:6630773,34471611:25952256,513147,134348 -k1,17131:8450746,34471611:214996 -k1,17131:9534093,34471611:214995 -k1,17131:11224304,34471611:214996 -k1,17131:11795160,34471611:214996 -k1,17131:14670918,34471611:214996 -k1,17131:16870999,34471611:214995 -k1,17131:19781491,34471611:214996 -(1,17131:19781491,34471611:0,452978,115847 -r1,17154:23656875,34471611:3875384,568825,115847 -k1,17131:19781491,34471611:-3875384 -) -(1,17131:19781491,34471611:3875384,452978,115847 -k1,17131:19781491,34471611:3277 -h1,17131:23653598,34471611:0,411205,112570 -) -k1,17131:23871871,34471611:214996 -k1,17131:25219329,34471611:214996 -k1,17131:28466019,34471611:214995 -k1,17131:29700100,34471611:214996 -k1,17131:32583029,34471611:0 -) -(1,17132:6630773,35336691:25952256,505283,126483 -g1,17131:8021447,35336691 -g1,17131:9313161,35336691 -g1,17131:9970487,35336691 -g1,17131:11867754,35336691 -g1,17131:13086068,35336691 -g1,17131:16275705,35336691 -g1,17131:18485579,35336691 -g1,17131:19676368,35336691 -k1,17132:32583029,35336691:9625274 -g1,17132:32583029,35336691 -) -v1,17134:6630773,36021546:0,393216,0 -(1,17151:6630773,43923762:25952256,8295432,196608 -g1,17151:6630773,43923762 -g1,17151:6630773,43923762 -g1,17151:6434165,43923762 -(1,17151:6434165,43923762:0,8295432,196608 -r1,17154:32779637,43923762:26345472,8492040,196608 -k1,17151:6434165,43923762:-26345472 -) -(1,17151:6434165,43923762:26345472,8295432,196608 -[1,17151:6630773,43923762:25952256,8098824,0 -(1,17136:6630773,36249377:25952256,424439,106246 -(1,17135:6630773,36249377:0,0,0 -g1,17135:6630773,36249377 -g1,17135:6630773,36249377 -g1,17135:6303093,36249377 -(1,17135:6303093,36249377:0,0,0 -) -g1,17135:6630773,36249377 -) -k1,17136:6630773,36249377:0 -g1,17136:11610083,36249377 -g1,17136:12273991,36249377 -g1,17136:13933761,36249377 -g1,17136:16589393,36249377 -g1,17136:17253301,36249377 -g1,17136:23228472,36249377 -g1,17136:24556288,36249377 -k1,17136:24556288,36249377:0 -h1,17136:25220196,36249377:0,0,0 -k1,17136:32583029,36249377:7362833 -g1,17136:32583029,36249377 -) -(1,17137:6630773,36934232:25952256,424439,112852 -h1,17137:6630773,36934232:0,0,0 -g1,17137:6962727,36934232 -g1,17137:7294681,36934232 -g1,17137:13269851,36934232 -k1,17137:13269851,36934232:0 -h1,17137:13933759,36934232:0,0,0 -k1,17137:32583029,36934232:18649270 -g1,17137:32583029,36934232 -) -(1,17138:6630773,37619087:25952256,424439,86428 -h1,17138:6630773,37619087:0,0,0 -g1,17138:6962727,37619087 -g1,17138:7294681,37619087 -g1,17138:13601805,37619087 -g1,17138:14265713,37619087 -k1,17138:14265713,37619087:0 -h1,17138:18913068,37619087:0,0,0 -k1,17138:32583029,37619087:13669961 -g1,17138:32583029,37619087 -) -(1,17139:6630773,38303942:25952256,424439,86428 -h1,17139:6630773,38303942:0,0,0 -g1,17139:6962727,38303942 -g1,17139:7294681,38303942 -g1,17139:7626635,38303942 -g1,17139:7958589,38303942 -g1,17139:8290543,38303942 -g1,17139:8622497,38303942 -g1,17139:8954451,38303942 -g1,17139:9286405,38303942 -g1,17139:9618359,38303942 -g1,17139:9950313,38303942 -g1,17139:10282267,38303942 -g1,17139:10614221,38303942 -g1,17139:14265714,38303942 -g1,17139:14929622,38303942 -k1,17139:14929622,38303942:0 -h1,17139:20240885,38303942:0,0,0 -k1,17139:32583029,38303942:12342144 -g1,17139:32583029,38303942 -) -(1,17140:6630773,38988797:25952256,424439,79822 -h1,17140:6630773,38988797:0,0,0 -g1,17140:6962727,38988797 -g1,17140:7294681,38988797 -g1,17140:7626635,38988797 -g1,17140:7958589,38988797 -g1,17140:8290543,38988797 -g1,17140:8622497,38988797 -g1,17140:8954451,38988797 -g1,17140:9286405,38988797 -g1,17140:9618359,38988797 -g1,17140:9950313,38988797 -g1,17140:10282267,38988797 -g1,17140:10614221,38988797 -g1,17140:11278129,38988797 -g1,17140:11942037,38988797 -g1,17140:13601807,38988797 -k1,17140:13601807,38988797:0 -h1,17140:14265715,38988797:0,0,0 -k1,17140:32583029,38988797:18317314 -g1,17140:32583029,38988797 -) -(1,17141:6630773,39673652:25952256,431045,112852 -h1,17141:6630773,39673652:0,0,0 -g1,17141:6962727,39673652 -g1,17141:7294681,39673652 -g1,17141:10614221,39673652 -g1,17141:11278129,39673652 -g1,17141:12605945,39673652 -g1,17141:14929623,39673652 -g1,17141:17253301,39673652 -g1,17141:18581117,39673652 -k1,17141:18581117,39673652:24773 -h1,17141:20265660,39673652:0,0,0 -k1,17141:32583029,39673652:12317369 -g1,17141:32583029,39673652 -) -(1,17150:6630773,40489579:25952256,424439,9908 -(1,17143:6630773,40489579:0,0,0 -g1,17143:6630773,40489579 -g1,17143:6630773,40489579 -g1,17143:6303093,40489579 -(1,17143:6303093,40489579:0,0,0 -) -g1,17143:6630773,40489579 -) -g1,17150:7626635,40489579 -g1,17150:8290543,40489579 -g1,17150:8954451,40489579 -g1,17150:11610083,40489579 -g1,17150:12273991,40489579 -g1,17150:12937899,40489579 -h1,17150:13269853,40489579:0,0,0 -k1,17150:32583029,40489579:19313176 -g1,17150:32583029,40489579 -) -(1,17150:6630773,41174434:25952256,424439,52847 -h1,17150:6630773,41174434:0,0,0 -g1,17150:7626635,41174434 -g1,17150:7958589,41174434 -g1,17150:8290543,41174434 -g1,17150:10946175,41174434 -g1,17150:13933760,41174434 -g1,17150:17585253,41174434 -g1,17150:17917207,41174434 -g1,17150:18249161,41174434 -g1,17150:18581115,41174434 -g1,17150:18913069,41174434 -h1,17150:19245023,41174434:0,0,0 -k1,17150:32583029,41174434:13338006 -g1,17150:32583029,41174434 -) -(1,17150:6630773,41859289:25952256,424439,6605 -h1,17150:6630773,41859289:0,0,0 -g1,17150:7626635,41859289 -g1,17150:7958589,41859289 -g1,17150:8290543,41859289 -g1,17150:10282267,41859289 -g1,17150:10614221,41859289 -g1,17150:10946175,41859289 -g1,17150:11278129,41859289 -g1,17150:11610083,41859289 -g1,17150:11942037,41859289 -g1,17150:13933761,41859289 -g1,17150:14265715,41859289 -g1,17150:14597669,41859289 -g1,17150:14929623,41859289 -g1,17150:15261577,41859289 -g1,17150:15593531,41859289 -g1,17150:17585255,41859289 -k1,17150:17585255,41859289:0 -h1,17150:19245025,41859289:0,0,0 -k1,17150:32583029,41859289:13338004 -g1,17150:32583029,41859289 -) -(1,17150:6630773,42544144:25952256,407923,9908 -h1,17150:6630773,42544144:0,0,0 -g1,17150:7626635,42544144 -g1,17150:8290543,42544144 -g1,17150:8954451,42544144 -g1,17150:9286405,42544144 -g1,17150:9618359,42544144 -g1,17150:9950313,42544144 -g1,17150:10282267,42544144 -g1,17150:10614221,42544144 -g1,17150:10946175,42544144 -g1,17150:11278129,42544144 -g1,17150:11610083,42544144 -g1,17150:11942037,42544144 -g1,17150:12273991,42544144 -g1,17150:12605945,42544144 -g1,17150:12937899,42544144 -g1,17150:13269853,42544144 -g1,17150:13933761,42544144 -g1,17150:14265715,42544144 -g1,17150:14597669,42544144 -g1,17150:14929623,42544144 -g1,17150:15261577,42544144 -g1,17150:15593531,42544144 -g1,17150:15925485,42544144 -g1,17150:16257439,42544144 -g1,17150:16589393,42544144 -g1,17150:16921347,42544144 -g1,17150:17585255,42544144 -g1,17150:17917209,42544144 -g1,17150:18249163,42544144 -g1,17150:18581117,42544144 -g1,17150:18913071,42544144 -h1,17150:19245025,42544144:0,0,0 -k1,17150:32583029,42544144:13338004 -g1,17150:32583029,42544144 -) -(1,17150:6630773,43228999:25952256,424439,9908 -h1,17150:6630773,43228999:0,0,0 -g1,17150:7626635,43228999 -g1,17150:8290543,43228999 -g1,17150:8954451,43228999 -g1,17150:9286405,43228999 -g1,17150:9618359,43228999 -g1,17150:9950313,43228999 -g1,17150:10282267,43228999 -g1,17150:10614221,43228999 -g1,17150:10946175,43228999 -g1,17150:11278129,43228999 -g1,17150:11610083,43228999 -g1,17150:11942037,43228999 -g1,17150:12273991,43228999 -g1,17150:12605945,43228999 -g1,17150:12937899,43228999 -g1,17150:13269853,43228999 -g1,17150:13933761,43228999 -g1,17150:14265715,43228999 -g1,17150:14597669,43228999 -g1,17150:14929623,43228999 -g1,17150:15261577,43228999 -g1,17150:15593531,43228999 -g1,17150:15925485,43228999 -g1,17150:16257439,43228999 -g1,17150:16589393,43228999 -g1,17150:16921347,43228999 -g1,17150:17585255,43228999 -g1,17150:17917209,43228999 -g1,17150:18249163,43228999 -g1,17150:18581117,43228999 -g1,17150:18913071,43228999 -h1,17150:19245025,43228999:0,0,0 -k1,17150:32583029,43228999:13338004 -g1,17150:32583029,43228999 -) -(1,17150:6630773,43913854:25952256,407923,9908 -h1,17150:6630773,43913854:0,0,0 -g1,17150:7626635,43913854 -g1,17150:8290543,43913854 -g1,17150:8954451,43913854 -g1,17150:9286405,43913854 -g1,17150:9618359,43913854 -g1,17150:9950313,43913854 -g1,17150:10282267,43913854 -g1,17150:10614221,43913854 -g1,17150:10946175,43913854 -g1,17150:11278129,43913854 -g1,17150:11610083,43913854 -g1,17150:11942037,43913854 -g1,17150:12273991,43913854 -g1,17150:12605945,43913854 -g1,17150:12937899,43913854 -g1,17150:13269853,43913854 -g1,17150:13933761,43913854 -g1,17150:14265715,43913854 -g1,17150:14597669,43913854 -g1,17150:14929623,43913854 -g1,17150:15261577,43913854 -g1,17150:15593531,43913854 -g1,17150:15925485,43913854 -g1,17150:16257439,43913854 -g1,17150:16589393,43913854 -g1,17150:16921347,43913854 -g1,17150:17585255,43913854 -g1,17150:17917209,43913854 -g1,17150:18249163,43913854 -g1,17150:18581117,43913854 -g1,17150:18913071,43913854 -h1,17150:19245025,43913854:0,0,0 -k1,17150:32583029,43913854:13338004 -g1,17150:32583029,43913854 -) -] -) -g1,17151:32583029,43923762 -g1,17151:6630773,43923762 -g1,17151:6630773,43923762 -g1,17151:32583029,43923762 -g1,17151:32583029,43923762 -) -h1,17151:6630773,44120370:0,0,0 -] -(1,17154:32583029,45706769:0,0,0 -g1,17154:32583029,45706769 -) -) -] -(1,17154:6630773,47279633:25952256,0,0 -h1,17154:6630773,47279633:25952256,0,0 -) -] -(1,17154:4262630,4025873:0,0,0 -[1,17154:-473656,4025873:0,0,0 -(1,17154:-473656,-710413:0,0,0 -(1,17154:-473656,-710413:0,0,0 -g1,17154:-473656,-710413 -) -g1,17154:-473656,-710413 +] +g1,17152:6630773,4812305 +k1,17152:23347041,4812305:15520891 +g1,17152:23960458,4812305 +g1,17152:27572802,4812305 +g1,17152:29306229,4812305 +) +) +] +[1,17152:6630773,45706769:25952256,40108032,0 +(1,17152:6630773,45706769:25952256,40108032,0 +(1,17152:6630773,45706769:0,0,0 +g1,17152:6630773,45706769 +) +[1,17152:6630773,45706769:25952256,40108032,0 +v1,17097:6630773,6254097:0,393216,0 +(1,17112:6630773,12786603:25952256,6925722,196608 +g1,17112:6630773,12786603 +g1,17112:6630773,12786603 +g1,17112:6434165,12786603 +(1,17112:6434165,12786603:0,6925722,196608 +r1,17152:32779637,12786603:26345472,7122330,196608 +k1,17112:6434165,12786603:-26345472 +) +(1,17112:6434165,12786603:26345472,6925722,196608 +[1,17112:6630773,12786603:25952256,6729114,0 +(1,17099:6630773,6481928:25952256,424439,112852 +(1,17098:6630773,6481928:0,0,0 +g1,17098:6630773,6481928 +g1,17098:6630773,6481928 +g1,17098:6303093,6481928 +(1,17098:6303093,6481928:0,0,0 +) +g1,17098:6630773,6481928 +) +g1,17099:10946174,6481928 +k1,17099:10946174,6481928:0 +h1,17099:11610082,6481928:0,0,0 +k1,17099:32583030,6481928:20972948 +g1,17099:32583030,6481928 +) +(1,17100:6630773,7166783:25952256,424439,106246 +h1,17100:6630773,7166783:0,0,0 +g1,17100:11278129,7166783 +k1,17100:11278129,7166783:0 +h1,17100:11942037,7166783:0,0,0 +k1,17100:32583029,7166783:20640992 +g1,17100:32583029,7166783 +) +(1,17101:6630773,7851638:25952256,424439,106246 +h1,17101:6630773,7851638:0,0,0 +g1,17101:10614221,7851638 +g1,17101:11278129,7851638 +g1,17101:15261576,7851638 +g1,17101:16921346,7851638 +g1,17101:17585254,7851638 +g1,17101:21236747,7851638 +g1,17101:24556286,7851638 +g1,17101:25220194,7851638 +h1,17101:30199503,7851638:0,0,0 +k1,17101:32583029,7851638:2383526 +g1,17101:32583029,7851638 +) +(1,17111:6630773,8667565:25952256,424439,9908 +(1,17103:6630773,8667565:0,0,0 +g1,17103:6630773,8667565 +g1,17103:6630773,8667565 +g1,17103:6303093,8667565 +(1,17103:6303093,8667565:0,0,0 +) +g1,17103:6630773,8667565 +) +g1,17111:7626635,8667565 +g1,17111:8290543,8667565 +g1,17111:8954451,8667565 +g1,17111:11610083,8667565 +g1,17111:12937899,8667565 +g1,17111:13601807,8667565 +h1,17111:13933761,8667565:0,0,0 +k1,17111:32583029,8667565:18649268 +g1,17111:32583029,8667565 +) +(1,17111:6630773,9352420:25952256,424439,106246 +h1,17111:6630773,9352420:0,0,0 +g1,17111:7626635,9352420 +g1,17111:7958589,9352420 +g1,17111:8290543,9352420 +g1,17111:10946175,9352420 +g1,17111:11278129,9352420 +g1,17111:12937899,9352420 +g1,17111:14597669,9352420 +g1,17111:14929623,9352420 +h1,17111:17917208,9352420:0,0,0 +k1,17111:32583029,9352420:14665821 +g1,17111:32583029,9352420 +) +(1,17111:6630773,10037275:25952256,431045,6605 +h1,17111:6630773,10037275:0,0,0 +g1,17111:7626635,10037275 +g1,17111:7958589,10037275 +g1,17111:8290543,10037275 +g1,17111:10282267,10037275 +g1,17111:10614221,10037275 +g1,17111:10946175,10037275 +g1,17111:12937899,10037275 +g1,17111:14929623,10037275 +k1,17111:14929623,10037275:0 +h1,17111:16589393,10037275:0,0,0 +k1,17111:32583029,10037275:15993636 +g1,17111:32583029,10037275 +) +(1,17111:6630773,10722130:25952256,424439,112852 +h1,17111:6630773,10722130:0,0,0 +g1,17111:7626635,10722130 +g1,17111:8290543,10722130 +g1,17111:10614221,10722130 +g1,17111:10946175,10722130 +g1,17111:11278129,10722130 +g1,17111:11610083,10722130 +g1,17111:12937899,10722130 +g1,17111:14929623,10722130 +h1,17111:16921347,10722130:0,0,0 +k1,17111:32583029,10722130:15661682 +g1,17111:32583029,10722130 +) +(1,17111:6630773,11406985:25952256,424439,106246 +h1,17111:6630773,11406985:0,0,0 +g1,17111:7626635,11406985 +g1,17111:8290543,11406985 +g1,17111:10614221,11406985 +g1,17111:10946175,11406985 +g1,17111:11278129,11406985 +g1,17111:11610083,11406985 +g1,17111:12937899,11406985 +g1,17111:14929623,11406985 +h1,17111:16589393,11406985:0,0,0 +k1,17111:32583029,11406985:15993636 +g1,17111:32583029,11406985 +) +(1,17111:6630773,12091840:25952256,424439,112852 +h1,17111:6630773,12091840:0,0,0 +g1,17111:7626635,12091840 +g1,17111:8290543,12091840 +g1,17111:10614221,12091840 +g1,17111:10946175,12091840 +g1,17111:11278129,12091840 +g1,17111:11610083,12091840 +g1,17111:12937899,12091840 +g1,17111:14929623,12091840 +h1,17111:16921347,12091840:0,0,0 +k1,17111:32583029,12091840:15661682 +g1,17111:32583029,12091840 +) +(1,17111:6630773,12776695:25952256,424439,9908 +h1,17111:6630773,12776695:0,0,0 +g1,17111:7626635,12776695 +g1,17111:8290543,12776695 +g1,17111:8954451,12776695 +g1,17111:10282267,12776695 +g1,17111:11942037,12776695 +h1,17111:13269853,12776695:0,0,0 +k1,17111:32583029,12776695:19313176 +g1,17111:32583029,12776695 +) +] +) +g1,17112:32583029,12786603 +g1,17112:6630773,12786603 +g1,17112:6630773,12786603 +g1,17112:32583029,12786603 +g1,17112:32583029,12786603 +) +h1,17112:6630773,12983211:0,0,0 +v1,17117:6630773,13848291:0,393216,0 +(1,17118:6630773,18489852:25952256,5034777,0 +g1,17118:6630773,18489852 +g1,17118:6237557,18489852 +r1,17152:6368629,18489852:131072,5034777,0 +g1,17118:6567858,18489852 +g1,17118:6764466,18489852 +[1,17118:6764466,18489852:25818563,5034777,0 +(1,17118:6764466,14156589:25818563,701514,196608 +(1,17117:6764466,14156589:0,701514,196608 +r1,17152:7761522,14156589:997056,898122,196608 +k1,17117:6764466,14156589:-997056 +) +(1,17117:6764466,14156589:997056,701514,196608 +) +k1,17117:7966192,14156589:204670 +k1,17117:8293872,14156589:327680 +k1,17117:10754946,14156589:204669 +k1,17117:11618908,14156589:204670 +k1,17117:12842662,14156589:204669 +k1,17117:16073129,14156589:204670 +k1,17117:19367822,14156589:204670 +k1,17117:20188529,14156589:204669 +k1,17117:21596440,14156589:204670 +k1,17117:24079796,14156589:204669 +k1,17117:25788517,14156589:204670 +k1,17117:28291534,14156589:204669 +k1,17117:31025894,14156589:204670 +k1,17118:32583029,14156589:0 +) +(1,17118:6764466,15021669:25818563,513147,134348 +k1,17117:8288127,15021669:228014 +(1,17117:8288127,15021669:0,435480,115847 +r1,17152:9349816,15021669:1061689,551327,115847 +k1,17117:8288127,15021669:-1061689 +) +(1,17117:8288127,15021669:1061689,435480,115847 +k1,17117:8288127,15021669:3277 +h1,17117:9346539,15021669:0,411205,112570 +) +k1,17117:9784925,15021669:228015 +k1,17117:11580560,15021669:228014 +k1,17117:14388727,15021669:228015 +k1,17117:17561928,15021669:228014 +k1,17117:18832621,15021669:228015 +k1,17117:20126906,15021669:228014 +k1,17117:22881334,15021669:228015 +k1,17117:24128433,15021669:228014 +k1,17117:25448933,15021669:228015 +k1,17117:26336239,15021669:228014 +k1,17117:27583339,15021669:228015 +k1,17117:31025894,15021669:228014 +k1,17118:32583029,15021669:0 +) +(1,17118:6764466,15886749:25818563,513147,134348 +k1,17117:8611608,15886749:221194 +k1,17117:9448839,15886749:221193 +k1,17117:10689118,15886749:221194 +k1,17117:11943815,15886749:221194 +k1,17117:13900401,15886749:221193 +k1,17117:16868209,15886749:221194 +k1,17117:19347118,15886749:221194 +k1,17117:22429614,15886749:221194 +(1,17117:22429614,15886749:0,452978,115847 +r1,17152:23139592,15886749:709978,568825,115847 +k1,17117:22429614,15886749:-709978 +) +(1,17117:22429614,15886749:709978,452978,115847 +k1,17117:22429614,15886749:3277 +h1,17117:23136315,15886749:0,411205,112570 +) +k1,17117:23360785,15886749:221193 +k1,17117:26060551,15886749:221194 +k1,17117:27849366,15886749:221194 +k1,17117:28485380,15886749:221171 +k1,17117:31040311,15886749:221194 +k1,17117:32583029,15886749:0 +) +(1,17118:6764466,16751829:25818563,513147,134348 +k1,17117:8428072,16751829:170696 +k1,17117:9665039,16751829:170696 +k1,17117:11310950,16751829:170696 +k1,17117:12684887,16751829:170696 +k1,17117:15963300,16751829:170696 +k1,17117:17366073,16751829:170696 +k1,17117:19815456,16751829:170696 +h1,17117:20786044,16751829:0,0,0 +k1,17117:20956740,16751829:170696 +k1,17117:21936806,16751829:170696 +k1,17117:23605655,16751829:170696 +h1,17117:24801032,16751829:0,0,0 +k1,17117:25352492,16751829:170696 +k1,17117:28367451,16751829:170696 +k1,17117:29557232,16751829:170696 +k1,17117:32583029,16751829:0 +) +(1,17118:6764466,17616909:25818563,513147,134348 +k1,17117:8496078,17616909:163991 +k1,17117:10632702,17616909:163991 +k1,17117:13024262,17616909:163991 +k1,17117:15165475,17616909:163992 +k1,17117:16015628,17616909:163991 +k1,17117:17559807,17616909:163991 +k1,17117:19405452,17616909:163991 +k1,17117:21219640,17616909:163991 +k1,17117:23738995,17616909:163991 +k1,17117:25094432,17616909:163992 +k1,17117:26788689,17616909:163991 +k1,17117:29091775,17616909:163991 +k1,17117:29915058,17616909:163991 +k1,17117:32583029,17616909:0 +) +(1,17118:6764466,18481989:25818563,505283,7863 +k1,17118:32583029,18481989:22403482 +g1,17118:32583029,18481989 +) +] +g1,17118:32583029,18489852 +) +h1,17118:6630773,18489852:0,0,0 +(1,17120:6630773,20606670:25952256,555811,139132 +(1,17120:6630773,20606670:2450326,534184,12975 +g1,17120:6630773,20606670 +g1,17120:9081099,20606670 +) +g1,17120:13428102,20606670 +k1,17120:32583029,20606670:13965917 +g1,17120:32583029,20606670 +) +(1,17124:6630773,21864966:25952256,513147,134348 +k1,17123:9437383,21864966:226457 +k1,17123:12873137,21864966:226456 +k1,17123:16173888,21864966:226457 +k1,17123:16931842,21864966:226457 +k1,17123:17809726,21864966:226456 +k1,17123:21544325,21864966:226457 +k1,17123:24954520,21864966:226456 +k1,17123:25942505,21864966:226457 +k1,17123:28391943,21864966:226457 +k1,17123:29277691,21864966:226456 +k1,17123:31212016,21864966:226457 +k1,17124:32583029,21864966:0 +) +(1,17124:6630773,22730046:25952256,513147,134348 +k1,17123:8320241,22730046:138886 +k1,17123:9110555,22730046:138886 +k1,17123:10683369,22730046:138886 +k1,17123:11410768,22730046:138886 +k1,17123:12568739,22730046:138886 +k1,17123:15610215,22730046:138886 +k1,17123:16408392,22730046:138885 +k1,17123:17936641,22730046:138886 +k1,17123:22331435,22730046:138886 +k1,17123:23156483,22730046:138886 +k1,17123:27496882,22730046:138886 +k1,17123:28251806,22730046:138886 +k1,17123:30536995,22730046:138886 +k1,17123:32583029,22730046:0 +) +(1,17124:6630773,23595126:25952256,513147,134348 +k1,17123:7309913,23595126:221043 +k1,17123:10160917,23595126:221044 +k1,17123:11033388,23595126:221043 +k1,17123:12668699,23595126:221044 +k1,17123:14092983,23595126:221043 +k1,17123:17388321,23595126:221044 +k1,17123:18876830,23595126:221043 +k1,17123:20270312,23595126:221043 +k1,17123:22350612,23595126:221044 +k1,17123:23590740,23595126:221043 +k1,17123:25993478,23595126:221044 +k1,17123:26873813,23595126:221043 +k1,17123:28113942,23595126:221044 +k1,17123:31391584,23595126:221043 +k1,17123:32583029,23595126:0 +) +(1,17124:6630773,24460206:25952256,513147,134348 +k1,17123:7879889,24460206:230031 +k1,17123:11581362,24460206:230031 +k1,17123:12470686,24460206:230032 +k1,17123:16382530,24460206:230031 +k1,17123:17993405,24460206:230031 +k1,17123:21310182,24460206:230031 +k1,17123:22559298,24460206:230031 +k1,17123:24459186,24460206:230031 +k1,17123:27047859,24460206:230032 +k1,17123:27735987,24460206:230031 +k1,17123:29616215,24460206:230031 +k1,17123:31647175,24460206:230031 +k1,17124:32583029,24460206:0 +) +(1,17124:6630773,25325286:25952256,513147,134348 +k1,17123:10995987,25325286:221373 +k1,17123:12915397,25325286:221372 +k1,17123:14872163,25325286:221373 +k1,17123:16813855,25325286:221372 +k1,17123:20216346,25325286:221373 +k1,17123:21089146,25325286:221372 +k1,17123:22329604,25325286:221373 +k1,17123:25535487,25325286:221373 +k1,17123:26416151,25325286:221372 +k1,17123:28071452,25325286:221373 +k1,17123:28707645,25325286:221350 +(1,17123:28707645,25325286:0,452978,122846 +r1,17152:32583029,25325286:3875384,575824,122846 +k1,17123:28707645,25325286:-3875384 +) +(1,17123:28707645,25325286:3875384,452978,122846 +k1,17123:28707645,25325286:3277 +h1,17123:32579752,25325286:0,411205,112570 +) +k1,17123:32583029,25325286:0 +) +(1,17124:6630773,26190366:25952256,505283,134348 +g1,17123:8041107,26190366 +g1,17123:10519023,26190366 +h1,17123:12061741,26190366:0,0,0 +g1,17123:12260970,26190366 +g1,17123:13269569,26190366 +g1,17123:14966951,26190366 +h1,17123:16162328,26190366:0,0,0 +k1,17124:32583029,26190366:16161179 +g1,17124:32583029,26190366 +) +v1,17126:6630773,27055446:0,393216,0 +(1,17127:6630773,31876371:25952256,5214141,0 +g1,17127:6630773,31876371 +g1,17127:6237557,31876371 +r1,17152:6368629,31876371:131072,5214141,0 +g1,17127:6567858,31876371 +g1,17127:6764466,31876371 +[1,17127:6764466,31876371:25818563,5214141,0 +(1,17127:6764466,27416623:25818563,754393,260573 +(1,17126:6764466,27416623:0,754393,260573 +r1,17152:7856192,27416623:1091726,1014966,260573 +k1,17126:6764466,27416623:-1091726 +) +(1,17126:6764466,27416623:1091726,754393,260573 +) +k1,17126:8059244,27416623:203052 +k1,17126:8386924,27416623:327680 +k1,17126:9217811,27416623:203052 +k1,17126:10978653,27416623:203051 +k1,17126:12949211,27416623:203052 +k1,17126:15732415,27416623:203052 +k1,17126:17908100,27416623:203052 +k1,17126:20444889,27416623:203052 +k1,17126:22190659,27416623:203052 +k1,17126:24359135,27416623:203051 +k1,17126:27088600,27416623:203052 +k1,17126:28239303,27416623:203052 +k1,17126:32583029,27416623:0 +) +(1,17127:6764466,28281703:25818563,513147,134348 +k1,17126:9932179,28281703:284784 +k1,17126:10978492,28281703:284785 +k1,17126:13450868,28281703:284784 +k1,17126:14387080,28281703:284784 +k1,17126:17697662,28281703:284785 +k1,17126:18338306,28281703:284784 +k1,17126:19906286,28281703:284785 +k1,17126:23471802,28281703:284784 +(1,17126:23678896,28281703:0,452978,115847 +r1,17152:24388874,28281703:709978,568825,115847 +k1,17126:23678896,28281703:-709978 +) +(1,17126:23678896,28281703:709978,452978,115847 +k1,17126:23678896,28281703:3277 +h1,17126:24385597,28281703:0,411205,112570 +) +k1,17126:24673658,28281703:284784 +k1,17126:25641328,28281703:284785 +(1,17126:25641328,28281703:0,452978,115847 +r1,17152:26703017,28281703:1061689,568825,115847 +k1,17126:25641328,28281703:-1061689 +) +(1,17126:25641328,28281703:1061689,452978,115847 +k1,17126:25641328,28281703:3277 +h1,17126:26699740,28281703:0,411205,112570 +) +k1,17126:27368565,28281703:284784 +k1,17126:29034193,28281703:284784 +k1,17126:29850475,28281703:284785 +k1,17126:31333913,28281703:284784 +k1,17127:32583029,28281703:0 +) +(1,17127:6764466,29146783:25818563,513147,134348 +k1,17126:9301910,29146783:181425 +k1,17126:10254039,29146783:181426 +k1,17126:14605520,29146783:181425 +k1,17126:17062356,29146783:181426 +k1,17126:18528287,29146783:181425 +k1,17126:20046647,29146783:181426 +k1,17126:22642418,29146783:181425 +k1,17126:25499024,29146783:181426 +k1,17126:26138546,29146783:181425 +k1,17126:26851469,29146783:181426 +k1,17126:30242192,29146783:181425 +k1,17126:31075046,29146783:181426 +k1,17126:32583029,29146783:0 +) +(1,17127:6764466,30011863:25818563,505283,134348 +k1,17126:7606905,30011863:226401 +k1,17126:9490057,30011863:226402 +k1,17126:11000964,30011863:226401 +k1,17126:12430607,30011863:226402 +k1,17126:13940203,30011863:226401 +k1,17126:17151115,30011863:226402 +k1,17126:18028944,30011863:226401 +k1,17126:21138275,30011863:226402 +k1,17126:21896173,30011863:226401 +k1,17126:23188846,30011863:226402 +k1,17126:26609472,30011863:226401 +k1,17126:27982099,30011863:226402 +k1,17126:29493006,30011863:226401 +k1,17126:32583029,30011863:0 +) +(1,17127:6764466,30876943:25818563,513147,134348 +k1,17126:8937283,30876943:143822 +k1,17126:12525676,30876943:143821 +k1,17126:13478868,30876943:143822 +k1,17126:14641774,30876943:143821 +k1,17126:19519917,30876943:143822 +k1,17126:23281981,30876943:143821 +k1,17126:24530085,30876943:143822 +k1,17126:27278307,30876943:143821 +k1,17126:28441214,30876943:143822 +k1,17126:30081222,30876943:143821 +k1,17126:31297213,30876943:143822 +k1,17126:32583029,30876943:0 +) +(1,17127:6764466,31742023:25818563,505283,134348 +g1,17126:8893075,31742023 +g1,17126:10612084,31742023 +g1,17126:12509351,31742023 +g1,17126:13774851,31742023 +g1,17126:15741586,31742023 +g1,17126:17208281,31742023 +k1,17127:32583029,31742023:12818189 +g1,17127:32583029,31742023 +) +] +g1,17127:32583029,31876371 +) +h1,17127:6630773,31876371:0,0,0 +(1,17130:6630773,32741451:25952256,513147,134348 +h1,17129:6630773,32741451:983040,0,0 +k1,17129:9637479,32741451:240431 +k1,17129:11613304,32741451:240432 +k1,17129:15047960,32741451:240431 +k1,17129:18344991,32741451:240432 +k1,17129:19604507,32741451:240431 +k1,17129:21151072,32741451:240432 +k1,17129:22746788,32741451:240431 +k1,17129:23518717,32741451:240432 +k1,17129:24410576,32741451:240431 +k1,17129:25743493,32741451:240432 +(1,17129:25743493,32741451:0,452978,122846 +r1,17152:29267165,32741451:3523672,575824,122846 +k1,17129:25743493,32741451:-3523672 +) +(1,17129:25743493,32741451:3523672,452978,122846 +k1,17129:25743493,32741451:3277 +h1,17129:29263888,32741451:0,411205,112570 +) +k1,17129:29507596,32741451:240431 +k1,17129:30399456,32741451:240432 +k1,17129:32227169,32741451:240431 +k1,17129:32583029,32741451:0 +) +(1,17130:6630773,33606531:25952256,505283,134348 +k1,17129:8588683,33606531:146495 +k1,17129:10129128,33606531:146494 +k1,17129:11294708,33606531:146495 +k1,17129:14497802,33606531:146495 +k1,17129:15597846,33606531:146495 +k1,17129:17673720,33606531:146494 +k1,17129:18176075,33606531:146495 +k1,17129:20054687,33606531:146495 +k1,17129:21392627,33606531:146495 +k1,17129:22973049,33606531:146494 +k1,17129:25512263,33606531:146495 +k1,17129:26116855,33606531:146495 +k1,17129:27530816,33606531:146495 +k1,17129:28033170,33606531:146494 +k1,17129:30798484,33606531:146495 +k1,17129:32583029,33606531:0 +) +(1,17130:6630773,34471611:25952256,513147,134348 +k1,17129:8450746,34471611:214996 +k1,17129:9534093,34471611:214995 +k1,17129:11224304,34471611:214996 +k1,17129:11795160,34471611:214996 +k1,17129:14670918,34471611:214996 +k1,17129:16870999,34471611:214995 +k1,17129:19781491,34471611:214996 +(1,17129:19781491,34471611:0,452978,115847 +r1,17152:23656875,34471611:3875384,568825,115847 +k1,17129:19781491,34471611:-3875384 +) +(1,17129:19781491,34471611:3875384,452978,115847 +k1,17129:19781491,34471611:3277 +h1,17129:23653598,34471611:0,411205,112570 +) +k1,17129:23871871,34471611:214996 +k1,17129:25219329,34471611:214996 +k1,17129:28466019,34471611:214995 +k1,17129:29700100,34471611:214996 +k1,17129:32583029,34471611:0 +) +(1,17130:6630773,35336691:25952256,505283,126483 +g1,17129:8021447,35336691 +g1,17129:9313161,35336691 +g1,17129:9970487,35336691 +g1,17129:11867754,35336691 +g1,17129:13086068,35336691 +g1,17129:16275705,35336691 +g1,17129:18485579,35336691 +g1,17129:19676368,35336691 +k1,17130:32583029,35336691:9625274 +g1,17130:32583029,35336691 +) +v1,17132:6630773,36021546:0,393216,0 +(1,17149:6630773,43923762:25952256,8295432,196608 +g1,17149:6630773,43923762 +g1,17149:6630773,43923762 +g1,17149:6434165,43923762 +(1,17149:6434165,43923762:0,8295432,196608 +r1,17152:32779637,43923762:26345472,8492040,196608 +k1,17149:6434165,43923762:-26345472 +) +(1,17149:6434165,43923762:26345472,8295432,196608 +[1,17149:6630773,43923762:25952256,8098824,0 +(1,17134:6630773,36249377:25952256,424439,106246 +(1,17133:6630773,36249377:0,0,0 +g1,17133:6630773,36249377 +g1,17133:6630773,36249377 +g1,17133:6303093,36249377 +(1,17133:6303093,36249377:0,0,0 +) +g1,17133:6630773,36249377 +) +k1,17134:6630773,36249377:0 +g1,17134:11610083,36249377 +g1,17134:12273991,36249377 +g1,17134:13933761,36249377 +g1,17134:16589393,36249377 +g1,17134:17253301,36249377 +g1,17134:23228472,36249377 +g1,17134:24556288,36249377 +k1,17134:24556288,36249377:0 +h1,17134:25220196,36249377:0,0,0 +k1,17134:32583029,36249377:7362833 +g1,17134:32583029,36249377 +) +(1,17135:6630773,36934232:25952256,424439,112852 +h1,17135:6630773,36934232:0,0,0 +g1,17135:6962727,36934232 +g1,17135:7294681,36934232 +g1,17135:13269851,36934232 +k1,17135:13269851,36934232:0 +h1,17135:13933759,36934232:0,0,0 +k1,17135:32583029,36934232:18649270 +g1,17135:32583029,36934232 +) +(1,17136:6630773,37619087:25952256,424439,86428 +h1,17136:6630773,37619087:0,0,0 +g1,17136:6962727,37619087 +g1,17136:7294681,37619087 +g1,17136:13601805,37619087 +g1,17136:14265713,37619087 +k1,17136:14265713,37619087:0 +h1,17136:18913068,37619087:0,0,0 +k1,17136:32583029,37619087:13669961 +g1,17136:32583029,37619087 +) +(1,17137:6630773,38303942:25952256,424439,86428 +h1,17137:6630773,38303942:0,0,0 +g1,17137:6962727,38303942 +g1,17137:7294681,38303942 +g1,17137:7626635,38303942 +g1,17137:7958589,38303942 +g1,17137:8290543,38303942 +g1,17137:8622497,38303942 +g1,17137:8954451,38303942 +g1,17137:9286405,38303942 +g1,17137:9618359,38303942 +g1,17137:9950313,38303942 +g1,17137:10282267,38303942 +g1,17137:10614221,38303942 +g1,17137:14265714,38303942 +g1,17137:14929622,38303942 +k1,17137:14929622,38303942:0 +h1,17137:20240885,38303942:0,0,0 +k1,17137:32583029,38303942:12342144 +g1,17137:32583029,38303942 +) +(1,17138:6630773,38988797:25952256,424439,79822 +h1,17138:6630773,38988797:0,0,0 +g1,17138:6962727,38988797 +g1,17138:7294681,38988797 +g1,17138:7626635,38988797 +g1,17138:7958589,38988797 +g1,17138:8290543,38988797 +g1,17138:8622497,38988797 +g1,17138:8954451,38988797 +g1,17138:9286405,38988797 +g1,17138:9618359,38988797 +g1,17138:9950313,38988797 +g1,17138:10282267,38988797 +g1,17138:10614221,38988797 +g1,17138:11278129,38988797 +g1,17138:11942037,38988797 +g1,17138:13601807,38988797 +k1,17138:13601807,38988797:0 +h1,17138:14265715,38988797:0,0,0 +k1,17138:32583029,38988797:18317314 +g1,17138:32583029,38988797 +) +(1,17139:6630773,39673652:25952256,431045,112852 +h1,17139:6630773,39673652:0,0,0 +g1,17139:6962727,39673652 +g1,17139:7294681,39673652 +g1,17139:10614221,39673652 +g1,17139:11278129,39673652 +g1,17139:12605945,39673652 +g1,17139:14929623,39673652 +g1,17139:17253301,39673652 +g1,17139:18581117,39673652 +k1,17139:18581117,39673652:24773 +h1,17139:20265660,39673652:0,0,0 +k1,17139:32583029,39673652:12317369 +g1,17139:32583029,39673652 +) +(1,17148:6630773,40489579:25952256,424439,9908 +(1,17141:6630773,40489579:0,0,0 +g1,17141:6630773,40489579 +g1,17141:6630773,40489579 +g1,17141:6303093,40489579 +(1,17141:6303093,40489579:0,0,0 +) +g1,17141:6630773,40489579 +) +g1,17148:7626635,40489579 +g1,17148:8290543,40489579 +g1,17148:8954451,40489579 +g1,17148:11610083,40489579 +g1,17148:12273991,40489579 +g1,17148:12937899,40489579 +h1,17148:13269853,40489579:0,0,0 +k1,17148:32583029,40489579:19313176 +g1,17148:32583029,40489579 +) +(1,17148:6630773,41174434:25952256,424439,52847 +h1,17148:6630773,41174434:0,0,0 +g1,17148:7626635,41174434 +g1,17148:7958589,41174434 +g1,17148:8290543,41174434 +g1,17148:10946175,41174434 +g1,17148:13933760,41174434 +g1,17148:17585253,41174434 +g1,17148:17917207,41174434 +g1,17148:18249161,41174434 +g1,17148:18581115,41174434 +g1,17148:18913069,41174434 +h1,17148:19245023,41174434:0,0,0 +k1,17148:32583029,41174434:13338006 +g1,17148:32583029,41174434 +) +(1,17148:6630773,41859289:25952256,424439,6605 +h1,17148:6630773,41859289:0,0,0 +g1,17148:7626635,41859289 +g1,17148:7958589,41859289 +g1,17148:8290543,41859289 +g1,17148:10282267,41859289 +g1,17148:10614221,41859289 +g1,17148:10946175,41859289 +g1,17148:11278129,41859289 +g1,17148:11610083,41859289 +g1,17148:11942037,41859289 +g1,17148:13933761,41859289 +g1,17148:14265715,41859289 +g1,17148:14597669,41859289 +g1,17148:14929623,41859289 +g1,17148:15261577,41859289 +g1,17148:15593531,41859289 +g1,17148:17585255,41859289 +k1,17148:17585255,41859289:0 +h1,17148:19245025,41859289:0,0,0 +k1,17148:32583029,41859289:13338004 +g1,17148:32583029,41859289 +) +(1,17148:6630773,42544144:25952256,407923,9908 +h1,17148:6630773,42544144:0,0,0 +g1,17148:7626635,42544144 +g1,17148:8290543,42544144 +g1,17148:8954451,42544144 +g1,17148:9286405,42544144 +g1,17148:9618359,42544144 +g1,17148:9950313,42544144 +g1,17148:10282267,42544144 +g1,17148:10614221,42544144 +g1,17148:10946175,42544144 +g1,17148:11278129,42544144 +g1,17148:11610083,42544144 +g1,17148:11942037,42544144 +g1,17148:12273991,42544144 +g1,17148:12605945,42544144 +g1,17148:12937899,42544144 +g1,17148:13269853,42544144 +g1,17148:13933761,42544144 +g1,17148:14265715,42544144 +g1,17148:14597669,42544144 +g1,17148:14929623,42544144 +g1,17148:15261577,42544144 +g1,17148:15593531,42544144 +g1,17148:15925485,42544144 +g1,17148:16257439,42544144 +g1,17148:16589393,42544144 +g1,17148:16921347,42544144 +g1,17148:17585255,42544144 +g1,17148:17917209,42544144 +g1,17148:18249163,42544144 +g1,17148:18581117,42544144 +g1,17148:18913071,42544144 +h1,17148:19245025,42544144:0,0,0 +k1,17148:32583029,42544144:13338004 +g1,17148:32583029,42544144 +) +(1,17148:6630773,43228999:25952256,424439,9908 +h1,17148:6630773,43228999:0,0,0 +g1,17148:7626635,43228999 +g1,17148:8290543,43228999 +g1,17148:8954451,43228999 +g1,17148:9286405,43228999 +g1,17148:9618359,43228999 +g1,17148:9950313,43228999 +g1,17148:10282267,43228999 +g1,17148:10614221,43228999 +g1,17148:10946175,43228999 +g1,17148:11278129,43228999 +g1,17148:11610083,43228999 +g1,17148:11942037,43228999 +g1,17148:12273991,43228999 +g1,17148:12605945,43228999 +g1,17148:12937899,43228999 +g1,17148:13269853,43228999 +g1,17148:13933761,43228999 +g1,17148:14265715,43228999 +g1,17148:14597669,43228999 +g1,17148:14929623,43228999 +g1,17148:15261577,43228999 +g1,17148:15593531,43228999 +g1,17148:15925485,43228999 +g1,17148:16257439,43228999 +g1,17148:16589393,43228999 +g1,17148:16921347,43228999 +g1,17148:17585255,43228999 +g1,17148:17917209,43228999 +g1,17148:18249163,43228999 +g1,17148:18581117,43228999 +g1,17148:18913071,43228999 +h1,17148:19245025,43228999:0,0,0 +k1,17148:32583029,43228999:13338004 +g1,17148:32583029,43228999 +) +(1,17148:6630773,43913854:25952256,407923,9908 +h1,17148:6630773,43913854:0,0,0 +g1,17148:7626635,43913854 +g1,17148:8290543,43913854 +g1,17148:8954451,43913854 +g1,17148:9286405,43913854 +g1,17148:9618359,43913854 +g1,17148:9950313,43913854 +g1,17148:10282267,43913854 +g1,17148:10614221,43913854 +g1,17148:10946175,43913854 +g1,17148:11278129,43913854 +g1,17148:11610083,43913854 +g1,17148:11942037,43913854 +g1,17148:12273991,43913854 +g1,17148:12605945,43913854 +g1,17148:12937899,43913854 +g1,17148:13269853,43913854 +g1,17148:13933761,43913854 +g1,17148:14265715,43913854 +g1,17148:14597669,43913854 +g1,17148:14929623,43913854 +g1,17148:15261577,43913854 +g1,17148:15593531,43913854 +g1,17148:15925485,43913854 +g1,17148:16257439,43913854 +g1,17148:16589393,43913854 +g1,17148:16921347,43913854 +g1,17148:17585255,43913854 +g1,17148:17917209,43913854 +g1,17148:18249163,43913854 +g1,17148:18581117,43913854 +g1,17148:18913071,43913854 +h1,17148:19245025,43913854:0,0,0 +k1,17148:32583029,43913854:13338004 +g1,17148:32583029,43913854 +) +] +) +g1,17149:32583029,43923762 +g1,17149:6630773,43923762 +g1,17149:6630773,43923762 +g1,17149:32583029,43923762 +g1,17149:32583029,43923762 +) +h1,17149:6630773,44120370:0,0,0 +] +(1,17152:32583029,45706769:0,0,0 +g1,17152:32583029,45706769 +) +) +] +(1,17152:6630773,47279633:25952256,0,0 +h1,17152:6630773,47279633:25952256,0,0 +) +] +(1,17152:4262630,4025873:0,0,0 +[1,17152:-473656,4025873:0,0,0 +(1,17152:-473656,-710413:0,0,0 +(1,17152:-473656,-710413:0,0,0 +g1,17152:-473656,-710413 +) +g1,17152:-473656,-710413 ) ] ) ] !29025 -}277 -Input:2874:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2875:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2876:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2877:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}278 Input:2878:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2879:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2880:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -298862,1159 +299066,1159 @@ Input:2887:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2888:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2889:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2890:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2891:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2892:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2893:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2894:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{278 -[1,17306:4262630,47279633:28320399,43253760,0 -(1,17306:4262630,4025873:0,0,0 -[1,17306:-473656,4025873:0,0,0 -(1,17306:-473656,-710413:0,0,0 -(1,17306:-473656,-644877:0,0,0 -k1,17306:-473656,-644877:-65536 +{279 +[1,17304:4262630,47279633:28320399,43253760,0 +(1,17304:4262630,4025873:0,0,0 +[1,17304:-473656,4025873:0,0,0 +(1,17304:-473656,-710413:0,0,0 +(1,17304:-473656,-644877:0,0,0 +k1,17304:-473656,-644877:-65536 ) -(1,17306:-473656,4736287:0,0,0 -k1,17306:-473656,4736287:5209943 +(1,17304:-473656,4736287:0,0,0 +k1,17304:-473656,4736287:5209943 ) -g1,17306:-473656,-710413 +g1,17304:-473656,-710413 ) ] ) -[1,17306:6630773,47279633:25952256,43253760,0 -[1,17306:6630773,4812305:25952256,786432,0 -(1,17306:6630773,4812305:25952256,505283,126483 -(1,17306:6630773,4812305:25952256,505283,126483 -g1,17306:3078558,4812305 -[1,17306:3078558,4812305:0,0,0 -(1,17306:3078558,2439708:0,1703936,0 -k1,17306:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17306:2537886,2439708:1179648,16384,0 +[1,17304:6630773,47279633:25952256,43253760,0 +[1,17304:6630773,4812305:25952256,786432,0 +(1,17304:6630773,4812305:25952256,505283,126483 +(1,17304:6630773,4812305:25952256,505283,126483 +g1,17304:3078558,4812305 +[1,17304:3078558,4812305:0,0,0 +(1,17304:3078558,2439708:0,1703936,0 +k1,17304:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17304:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17306:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17304:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17306:3078558,4812305:0,0,0 -(1,17306:3078558,2439708:0,1703936,0 -g1,17306:29030814,2439708 -g1,17306:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17306:36151628,1915420:16384,1179648,0 +[1,17304:3078558,4812305:0,0,0 +(1,17304:3078558,2439708:0,1703936,0 +g1,17304:29030814,2439708 +g1,17304:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17304:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17306:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17304:37855564,2439708:1179648,16384,0 ) ) -k1,17306:3078556,2439708:-34777008 +k1,17304:3078556,2439708:-34777008 ) ] -[1,17306:3078558,4812305:0,0,0 -(1,17306:3078558,49800853:0,16384,2228224 -k1,17306:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17306:2537886,49800853:1179648,16384,0 +[1,17304:3078558,4812305:0,0,0 +(1,17304:3078558,49800853:0,16384,2228224 +k1,17304:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17304:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17306:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17304:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17306:3078558,4812305:0,0,0 -(1,17306:3078558,49800853:0,16384,2228224 -g1,17306:29030814,49800853 -g1,17306:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17306:36151628,51504789:16384,1179648,0 +[1,17304:3078558,4812305:0,0,0 +(1,17304:3078558,49800853:0,16384,2228224 +g1,17304:29030814,49800853 +g1,17304:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17304:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17306:37855564,49800853:1179648,16384,0 -) -) -k1,17306:3078556,49800853:-34777008 -) -] -g1,17306:6630773,4812305 -g1,17306:6630773,4812305 -g1,17306:8364200,4812305 -g1,17306:12733485,4812305 -g1,17306:14295863,4812305 -g1,17306:16502459,4812305 -g1,17306:16701688,4812305 -k1,17306:31387652,4812305:14685964 -) -) -] -[1,17306:6630773,45706769:25952256,40108032,0 -(1,17306:6630773,45706769:25952256,40108032,0 -(1,17306:6630773,45706769:0,0,0 -g1,17306:6630773,45706769 -) -[1,17306:6630773,45706769:25952256,40108032,0 -(1,17156:6630773,6254097:25952256,513147,134348 -h1,17155:6630773,6254097:983040,0,0 -k1,17155:8427825,6254097:186177 -k1,17155:9633086,6254097:186176 -k1,17155:14450692,6254097:186177 -k1,17155:17519798,6254097:186177 -k1,17155:20864155,6254097:186177 -k1,17155:21918683,6254097:186176 -k1,17155:24363886,6254097:186177 -k1,17155:25569148,6254097:186177 -k1,17155:28638254,6254097:186177 -k1,17155:29440468,6254097:186176 -k1,17155:30645730,6254097:186177 -k1,17155:31931601,6254097:186177 -k1,17156:32583029,6254097:0 -) -(1,17156:6630773,7119177:25952256,513147,126483 -(1,17155:6630773,7119177:0,452978,115847 -r1,17306:10506157,7119177:3875384,568825,115847 -k1,17155:6630773,7119177:-3875384 -) -(1,17155:6630773,7119177:3875384,452978,115847 -k1,17155:6630773,7119177:3277 -h1,17155:10502880,7119177:0,411205,112570 -) -k1,17155:10749870,7119177:243713 -k1,17155:12403917,7119177:243712 -k1,17155:13930825,7119177:243713 -k1,17155:16449947,7119177:243712 -k1,17155:17225157,7119177:243713 -k1,17155:19955960,7119177:243712 -k1,17155:20885835,7119177:243713 -k1,17155:25299603,7119177:243712 -k1,17155:26159354,7119177:243713 -k1,17155:28375699,7119177:243712 -k1,17155:30953149,7119177:243713 -k1,17155:32583029,7119177:0 -) -(1,17156:6630773,7984257:25952256,513147,134348 -g1,17155:8021447,7984257 -g1,17155:9557610,7984257 -g1,17155:11997515,7984257 -g1,17155:12812782,7984257 -g1,17155:14999063,7984257 -k1,17156:32583029,7984257:14660405 -g1,17156:32583029,7984257 -) -v1,17158:6630773,8669112:0,393216,0 -(1,17174:6630773,15886473:25952256,7610577,196608 -g1,17174:6630773,15886473 -g1,17174:6630773,15886473 -g1,17174:6434165,15886473 -(1,17174:6434165,15886473:0,7610577,196608 -r1,17306:32779637,15886473:26345472,7807185,196608 -k1,17174:6434165,15886473:-26345472 -) -(1,17174:6434165,15886473:26345472,7610577,196608 -[1,17174:6630773,15886473:25952256,7413969,0 -(1,17160:6630773,8896943:25952256,424439,106246 -(1,17159:6630773,8896943:0,0,0 -g1,17159:6630773,8896943 -g1,17159:6630773,8896943 -g1,17159:6303093,8896943 -(1,17159:6303093,8896943:0,0,0 -) -g1,17159:6630773,8896943 -) -k1,17160:6630773,8896943:0 -g1,17160:11610083,8896943 -g1,17160:12273991,8896943 -g1,17160:13933761,8896943 -g1,17160:16589393,8896943 -g1,17160:17253301,8896943 -g1,17160:23228472,8896943 -g1,17160:24556288,8896943 -k1,17160:24556288,8896943:0 -h1,17160:25220196,8896943:0,0,0 -k1,17160:32583029,8896943:7362833 -g1,17160:32583029,8896943 -) -(1,17161:6630773,9581798:25952256,424439,106246 -h1,17161:6630773,9581798:0,0,0 -g1,17161:6962727,9581798 -g1,17161:7294681,9581798 -g1,17161:11942036,9581798 -g1,17161:12605944,9581798 -k1,17161:12605944,9581798:0 -h1,17161:15261576,9581798:0,0,0 -k1,17161:32583028,9581798:17321452 -g1,17161:32583028,9581798 -) -(1,17162:6630773,10266653:25952256,424439,86428 -h1,17162:6630773,10266653:0,0,0 -g1,17162:6962727,10266653 -g1,17162:7294681,10266653 -g1,17162:7626635,10266653 -g1,17162:7958589,10266653 -g1,17162:8290543,10266653 -g1,17162:8622497,10266653 -g1,17162:8954451,10266653 -g1,17162:9286405,10266653 -g1,17162:9618359,10266653 -g1,17162:9950313,10266653 -g1,17162:10282267,10266653 -g1,17162:10614221,10266653 -g1,17162:13601806,10266653 -g1,17162:14265714,10266653 -k1,17162:14265714,10266653:0 -h1,17162:18913069,10266653:0,0,0 -k1,17162:32583029,10266653:13669960 -g1,17162:32583029,10266653 -) -(1,17163:6630773,10951508:25952256,424439,86428 -h1,17163:6630773,10951508:0,0,0 -g1,17163:6962727,10951508 -g1,17163:7294681,10951508 -g1,17163:7626635,10951508 -g1,17163:7958589,10951508 -g1,17163:8290543,10951508 -g1,17163:8622497,10951508 -g1,17163:8954451,10951508 -g1,17163:9286405,10951508 -g1,17163:9618359,10951508 -g1,17163:9950313,10951508 -g1,17163:10282267,10951508 -g1,17163:10614221,10951508 -g1,17163:14265714,10951508 -g1,17163:14929622,10951508 -k1,17163:14929622,10951508:0 -h1,17163:20240885,10951508:0,0,0 -k1,17163:32583029,10951508:12342144 -g1,17163:32583029,10951508 -) -(1,17164:6630773,11636363:25952256,424439,79822 -h1,17164:6630773,11636363:0,0,0 -g1,17164:6962727,11636363 -g1,17164:7294681,11636363 -g1,17164:7626635,11636363 -g1,17164:7958589,11636363 -g1,17164:8290543,11636363 -g1,17164:8622497,11636363 -g1,17164:8954451,11636363 -g1,17164:9286405,11636363 -g1,17164:9618359,11636363 -g1,17164:9950313,11636363 -g1,17164:10282267,11636363 -g1,17164:10614221,11636363 -g1,17164:11278129,11636363 -g1,17164:11942037,11636363 -k1,17164:11942037,11636363:0 -h1,17164:13269853,11636363:0,0,0 -k1,17164:32583029,11636363:19313176 -g1,17164:32583029,11636363 -) -(1,17173:6630773,12452290:25952256,424439,9908 -(1,17166:6630773,12452290:0,0,0 -g1,17166:6630773,12452290 -g1,17166:6630773,12452290 -g1,17166:6303093,12452290 -(1,17166:6303093,12452290:0,0,0 -) -g1,17166:6630773,12452290 -) -g1,17173:7626635,12452290 -g1,17173:8290543,12452290 -g1,17173:8954451,12452290 -g1,17173:11610083,12452290 -g1,17173:12273991,12452290 -g1,17173:12937899,12452290 -h1,17173:13269853,12452290:0,0,0 -k1,17173:32583029,12452290:19313176 -g1,17173:32583029,12452290 -) -(1,17173:6630773,13137145:25952256,424439,52847 -h1,17173:6630773,13137145:0,0,0 -g1,17173:7626635,13137145 -g1,17173:7958589,13137145 -g1,17173:8290543,13137145 -g1,17173:10946175,13137145 -g1,17173:13933760,13137145 -g1,17173:17585253,13137145 -g1,17173:17917207,13137145 -g1,17173:18249161,13137145 -g1,17173:18581115,13137145 -g1,17173:18913069,13137145 -h1,17173:19245023,13137145:0,0,0 -k1,17173:32583029,13137145:13338006 -g1,17173:32583029,13137145 -) -(1,17173:6630773,13822000:25952256,424439,6605 -h1,17173:6630773,13822000:0,0,0 -g1,17173:7626635,13822000 -g1,17173:7958589,13822000 -g1,17173:8290543,13822000 -g1,17173:10282267,13822000 -g1,17173:10614221,13822000 -g1,17173:10946175,13822000 -g1,17173:11278129,13822000 -g1,17173:11610083,13822000 -g1,17173:11942037,13822000 -g1,17173:13933761,13822000 -g1,17173:14265715,13822000 -g1,17173:14597669,13822000 -g1,17173:14929623,13822000 -g1,17173:15261577,13822000 -g1,17173:15593531,13822000 -g1,17173:17585255,13822000 -k1,17173:17585255,13822000:0 -h1,17173:19245025,13822000:0,0,0 -k1,17173:32583029,13822000:13338004 -g1,17173:32583029,13822000 -) -(1,17173:6630773,14506855:25952256,407923,9908 -h1,17173:6630773,14506855:0,0,0 -g1,17173:7626635,14506855 -g1,17173:8290543,14506855 -g1,17173:8954451,14506855 -g1,17173:9286405,14506855 -g1,17173:9618359,14506855 -g1,17173:9950313,14506855 -g1,17173:10282267,14506855 -g1,17173:10614221,14506855 -g1,17173:10946175,14506855 -g1,17173:11278129,14506855 -g1,17173:11610083,14506855 -g1,17173:11942037,14506855 -g1,17173:12273991,14506855 -g1,17173:12605945,14506855 -g1,17173:12937899,14506855 -g1,17173:13269853,14506855 -g1,17173:13933761,14506855 -g1,17173:14265715,14506855 -g1,17173:14597669,14506855 -g1,17173:14929623,14506855 -g1,17173:15261577,14506855 -g1,17173:15593531,14506855 -g1,17173:15925485,14506855 -g1,17173:16257439,14506855 -g1,17173:16589393,14506855 -g1,17173:16921347,14506855 -g1,17173:17585255,14506855 -g1,17173:17917209,14506855 -g1,17173:18249163,14506855 -g1,17173:18581117,14506855 -g1,17173:18913071,14506855 -h1,17173:19245025,14506855:0,0,0 -k1,17173:32583029,14506855:13338004 -g1,17173:32583029,14506855 -) -(1,17173:6630773,15191710:25952256,424439,9908 -h1,17173:6630773,15191710:0,0,0 -g1,17173:7626635,15191710 -g1,17173:8290543,15191710 -g1,17173:8954451,15191710 -g1,17173:9286405,15191710 -g1,17173:9618359,15191710 -g1,17173:9950313,15191710 -g1,17173:10282267,15191710 -g1,17173:10614221,15191710 -g1,17173:10946175,15191710 -g1,17173:11278129,15191710 -g1,17173:11610083,15191710 -g1,17173:11942037,15191710 -g1,17173:12273991,15191710 -g1,17173:12605945,15191710 -g1,17173:12937899,15191710 -g1,17173:13269853,15191710 -g1,17173:13933761,15191710 -g1,17173:14265715,15191710 -g1,17173:14597669,15191710 -g1,17173:14929623,15191710 -g1,17173:15261577,15191710 -g1,17173:15593531,15191710 -g1,17173:15925485,15191710 -g1,17173:16257439,15191710 -g1,17173:16589393,15191710 -g1,17173:16921347,15191710 -g1,17173:17585255,15191710 -g1,17173:17917209,15191710 -g1,17173:18249163,15191710 -g1,17173:18581117,15191710 -g1,17173:18913071,15191710 -h1,17173:19245025,15191710:0,0,0 -k1,17173:32583029,15191710:13338004 -g1,17173:32583029,15191710 -) -(1,17173:6630773,15876565:25952256,407923,9908 -h1,17173:6630773,15876565:0,0,0 -g1,17173:7626635,15876565 -g1,17173:8290543,15876565 -g1,17173:8954451,15876565 -g1,17173:9286405,15876565 -g1,17173:9618359,15876565 -g1,17173:9950313,15876565 -g1,17173:10282267,15876565 -g1,17173:10614221,15876565 -g1,17173:10946175,15876565 -g1,17173:11278129,15876565 -g1,17173:11610083,15876565 -g1,17173:11942037,15876565 -g1,17173:12273991,15876565 -g1,17173:12605945,15876565 -g1,17173:12937899,15876565 -g1,17173:13269853,15876565 -g1,17173:13933761,15876565 -g1,17173:14265715,15876565 -g1,17173:14597669,15876565 -g1,17173:14929623,15876565 -g1,17173:15261577,15876565 -g1,17173:15593531,15876565 -g1,17173:15925485,15876565 -g1,17173:16257439,15876565 -g1,17173:16589393,15876565 -g1,17173:16921347,15876565 -g1,17173:17585255,15876565 -g1,17173:17917209,15876565 -g1,17173:18249163,15876565 -g1,17173:18581117,15876565 -g1,17173:18913071,15876565 -h1,17173:19245025,15876565:0,0,0 -k1,17173:32583029,15876565:13338004 -g1,17173:32583029,15876565 -) -] -) -g1,17174:32583029,15886473 -g1,17174:6630773,15886473 -g1,17174:6630773,15886473 -g1,17174:32583029,15886473 -g1,17174:32583029,15886473 -) -h1,17174:6630773,16083081:0,0,0 -v1,17178:6630773,16948161:0,393216,0 -(1,17306:6630773,44473306:25952256,27918361,0 -g1,17306:6630773,44473306 -g1,17306:6237557,44473306 -r1,17306:6368629,44473306:131072,27918361,0 -g1,17306:6567858,44473306 -g1,17306:6764466,44473306 -[1,17306:6764466,44473306:25818563,27918361,0 -(1,17179:6764466,17309338:25818563,754393,260573 -(1,17178:6764466,17309338:0,754393,260573 -r1,17306:7856192,17309338:1091726,1014966,260573 -k1,17178:6764466,17309338:-1091726 -) -(1,17178:6764466,17309338:1091726,754393,260573 -) -k1,17178:8061529,17309338:205337 -k1,17178:8389209,17309338:327680 -k1,17178:10015367,17309338:205337 -k1,17178:10752201,17309338:205337 -k1,17178:13840468,17309338:205338 -k1,17178:18247318,17309338:205337 -k1,17178:19400306,17309338:205337 -k1,17178:20995006,17309338:205337 -k1,17178:23406940,17309338:205337 -k1,17178:24803722,17309338:205337 -k1,17178:27477801,17309338:205338 -k1,17178:29016796,17309338:205337 -k1,17178:30460108,17309338:205337 -k1,17178:31316873,17309338:205337 -k1,17178:32583029,17309338:0 -) -(1,17179:6764466,18174418:25818563,513147,134348 -g1,17178:8029966,18174418 -g1,17178:8760692,18174418 -g1,17178:9611349,18174418 -g1,17178:12179049,18174418 -g1,17178:13708659,18174418 -g1,17178:14263748,18174418 -g1,17178:17123739,18174418 -g1,17178:19134383,18174418 -g1,17178:21407171,18174418 -g1,17178:23174021,18174418 -g1,17178:24529960,18174418 -g1,17178:26013695,18174418 -g1,17178:26744421,18174418 -g1,17178:28009921,18174418 -k1,17179:32583029,18174418:1859918 -g1,17179:32583029,18174418 -) -(1,17181:6764466,19039498:25818563,505283,134348 -h1,17180:6764466,19039498:983040,0,0 -g1,17180:9935753,19039498 -(1,17180:9935753,19039498:0,452978,115847 -r1,17306:11700866,19039498:1765113,568825,115847 -k1,17180:9935753,19039498:-1765113 -) -(1,17180:9935753,19039498:1765113,452978,115847 -k1,17180:9935753,19039498:3277 -h1,17180:11697589,19039498:0,411205,112570 -) -g1,17180:11900095,19039498 -g1,17180:12630821,19039498 -g1,17180:13896321,19039498 -k1,17181:32583029,19039498:15973518 -g1,17181:32583029,19039498 -) -v1,17183:6764466,19724353:0,393216,0 -(1,17203:6764466,24796496:25818563,5465359,196608 -g1,17203:6764466,24796496 -g1,17203:6764466,24796496 -g1,17203:6567858,24796496 -(1,17203:6567858,24796496:0,5465359,196608 -r1,17306:32779637,24796496:26211779,5661967,196608 -k1,17203:6567857,24796496:-26211780 -) -(1,17203:6567858,24796496:26211779,5465359,196608 -[1,17203:6764466,24796496:25818563,5268751,0 -(1,17185:6764466,19952184:25818563,424439,106246 -(1,17184:6764466,19952184:0,0,0 -g1,17184:6764466,19952184 -g1,17184:6764466,19952184 -g1,17184:6436786,19952184 -(1,17184:6436786,19952184:0,0,0 -) -g1,17184:6764466,19952184 -) -g1,17185:8756190,19952184 -g1,17185:9752052,19952184 -g1,17185:14731362,19952184 -g1,17185:15395270,19952184 -g1,17185:17055040,19952184 -g1,17185:19710672,19952184 -g1,17185:20374580,19952184 -g1,17185:26349751,19952184 -h1,17185:27345613,19952184:0,0,0 -k1,17185:32583029,19952184:5237416 -g1,17185:32583029,19952184 -) -(1,17186:6764466,20637039:25818563,431045,112852 -h1,17186:6764466,20637039:0,0,0 -k1,17186:6764466,20637039:0 -h1,17186:13403545,20637039:0,0,0 -k1,17186:32583029,20637039:19179484 -g1,17186:32583029,20637039 -) -(1,17190:6764466,21452966:25818563,424439,79822 -(1,17188:6764466,21452966:0,0,0 -g1,17188:6764466,21452966 -g1,17188:6764466,21452966 -g1,17188:6436786,21452966 -(1,17188:6436786,21452966:0,0,0 -) -g1,17188:6764466,21452966 -) -g1,17190:7760328,21452966 -g1,17190:9088144,21452966 -h1,17190:10747914,21452966:0,0,0 -k1,17190:32583030,21452966:21835116 -g1,17190:32583030,21452966 -) -(1,17192:6764466,22268893:25818563,424439,106246 -(1,17191:6764466,22268893:0,0,0 -g1,17191:6764466,22268893 -g1,17191:6764466,22268893 -g1,17191:6436786,22268893 -(1,17191:6436786,22268893:0,0,0 -) -g1,17191:6764466,22268893 -) -k1,17192:6764466,22268893:0 -h1,17192:10747914,22268893:0,0,0 -k1,17192:32583030,22268893:21835116 -g1,17192:32583030,22268893 -) -(1,17196:6764466,23084820:25818563,431045,79822 -(1,17194:6764466,23084820:0,0,0 -g1,17194:6764466,23084820 -g1,17194:6764466,23084820 -g1,17194:6436786,23084820 -(1,17194:6436786,23084820:0,0,0 -) -g1,17194:6764466,23084820 -) -g1,17196:7760328,23084820 -g1,17196:9088144,23084820 -g1,17196:12075729,23084820 -g1,17196:12407683,23084820 -g1,17196:12739637,23084820 -g1,17196:13071591,23084820 -g1,17196:13403545,23084820 -g1,17196:15395269,23084820 -g1,17196:15727223,23084820 -g1,17196:16059177,23084820 -g1,17196:16391131,23084820 -g1,17196:16723085,23084820 -g1,17196:17055039,23084820 -g1,17196:17386993,23084820 -g1,17196:17718947,23084820 -h1,17196:21702394,23084820:0,0,0 -k1,17196:32583029,23084820:10880635 -g1,17196:32583029,23084820 -) -(1,17198:6764466,23900747:25818563,424439,106246 -(1,17197:6764466,23900747:0,0,0 -g1,17197:6764466,23900747 -g1,17197:6764466,23900747 -g1,17197:6436786,23900747 -(1,17197:6436786,23900747:0,0,0 -) -g1,17197:6764466,23900747 -) -k1,17198:6764466,23900747:0 -k1,17198:6764466,23900747:0 -h1,17198:14731360,23900747:0,0,0 -k1,17198:32583028,23900747:17851668 -g1,17198:32583028,23900747 -) -(1,17202:6764466,24716674:25818563,424439,79822 -(1,17200:6764466,24716674:0,0,0 -g1,17200:6764466,24716674 -g1,17200:6764466,24716674 -g1,17200:6436786,24716674 -(1,17200:6436786,24716674:0,0,0 -) -g1,17200:6764466,24716674 -) -g1,17202:7760328,24716674 -g1,17202:9088144,24716674 -g1,17202:11743776,24716674 -g1,17202:12075730,24716674 -g1,17202:12407684,24716674 -g1,17202:12739638,24716674 -g1,17202:13071592,24716674 -g1,17202:17055039,24716674 -h1,17202:19378717,24716674:0,0,0 -k1,17202:32583029,24716674:13204312 -g1,17202:32583029,24716674 -) -] -) -g1,17203:32583029,24796496 -g1,17203:6764466,24796496 -g1,17203:6764466,24796496 -g1,17203:32583029,24796496 -g1,17203:32583029,24796496 -) -h1,17203:6764466,24993104:0,0,0 -(1,17207:6764466,25858184:25818563,505283,134348 -h1,17206:6764466,25858184:983040,0,0 -k1,17206:9931769,25858184:195245 -(1,17206:9931769,25858184:0,452978,122846 -r1,17306:12752018,25858184:2820249,575824,122846 -k1,17206:9931769,25858184:-2820249 -) -(1,17206:9931769,25858184:2820249,452978,122846 -k1,17206:9931769,25858184:3277 -h1,17206:12748741,25858184:0,411205,112570 -) -k1,17206:12947262,25858184:195244 -k1,17206:13674004,25858184:195245 -k1,17206:16530010,25858184:195244 -k1,17206:17486783,25858184:195245 -k1,17206:20367037,25858184:195244 -k1,17206:21245167,25858184:195245 -k1,17206:23996970,25858184:195244 -(1,17206:23996970,25858184:0,414482,115847 -r1,17306:26465507,25858184:2468537,530329,115847 -k1,17206:23996970,25858184:-2468537 -) -(1,17206:23996970,25858184:2468537,414482,115847 -k1,17206:23996970,25858184:3277 -h1,17206:26462230,25858184:0,411205,112570 -) -k1,17206:26834422,25858184:195245 -k1,17206:27657501,25858184:195244 -k1,17206:29055987,25858184:195245 -k1,17206:30618312,25858184:195244 -k1,17206:31499719,25858184:195245 -k1,17206:32583029,25858184:0 -) -(1,17207:6764466,26723264:25818563,505283,134348 -k1,17206:8790796,26723264:214915 -k1,17206:11472486,26723264:214915 -k1,17206:12338829,26723264:214915 -k1,17206:14108913,26723264:214915 -(1,17206:14108913,26723264:0,459977,115847 -r1,17306:17280873,26723264:3171960,575824,115847 -k1,17206:14108913,26723264:-3171960 -) -(1,17206:14108913,26723264:3171960,459977,115847 -k1,17206:14108913,26723264:3277 -h1,17206:17277596,26723264:0,411205,112570 -) -k1,17206:17669458,26723264:214915 -k1,17206:20767302,26723264:214915 -k1,17206:22509861,26723264:214915 -(1,17206:22509861,26723264:0,459977,122846 -r1,17306:26033533,26723264:3523672,582823,122846 -k1,17206:22509861,26723264:-3523672 -) -(1,17206:22509861,26723264:3523672,459977,122846 -k1,17206:22509861,26723264:3277 -h1,17206:26030256,26723264:0,411205,112570 -) -k1,17206:26248448,26723264:214915 -k1,17206:27149525,26723264:214915 -k1,17206:28383525,26723264:214915 -k1,17206:30200140,26723264:214915 -k1,17206:32583029,26723264:0 -) -(1,17207:6764466,27588344:25818563,505283,7863 -k1,17207:32583028,27588344:24210964 -g1,17207:32583028,27588344 -) -v1,17209:6764466,28273199:0,393216,0 -(1,17223:6764466,31746518:25818563,3866535,196608 -g1,17223:6764466,31746518 -g1,17223:6764466,31746518 -g1,17223:6567858,31746518 -(1,17223:6567858,31746518:0,3866535,196608 -r1,17306:32779637,31746518:26211779,4063143,196608 -k1,17223:6567857,31746518:-26211780 -) -(1,17223:6567858,31746518:26211779,3866535,196608 -[1,17223:6764466,31746518:25818563,3669927,0 -(1,17211:6764466,28501030:25818563,424439,112852 -(1,17210:6764466,28501030:0,0,0 -g1,17210:6764466,28501030 -g1,17210:6764466,28501030 -g1,17210:6436786,28501030 -(1,17210:6436786,28501030:0,0,0 -) -g1,17210:6764466,28501030 -) -g1,17211:9752051,28501030 -g1,17211:10747913,28501030 -g1,17211:15727222,28501030 -g1,17211:16391130,28501030 -g1,17211:18714808,28501030 -h1,17211:21370439,28501030:0,0,0 -k1,17211:32583029,28501030:11212590 -g1,17211:32583029,28501030 -) -(1,17212:6764466,29185885:25818563,431045,112852 -h1,17212:6764466,29185885:0,0,0 -k1,17212:6764466,29185885:0 -h1,17212:14399406,29185885:0,0,0 -k1,17212:32583030,29185885:18183624 -g1,17212:32583030,29185885 -) -(1,17216:6764466,30001812:25818563,424439,79822 -(1,17214:6764466,30001812:0,0,0 -g1,17214:6764466,30001812 -g1,17214:6764466,30001812 -g1,17214:6436786,30001812 -(1,17214:6436786,30001812:0,0,0 -) -g1,17214:6764466,30001812 -) -g1,17216:7760328,30001812 -g1,17216:9088144,30001812 -h1,17216:10415960,30001812:0,0,0 -k1,17216:32583028,30001812:22167068 -g1,17216:32583028,30001812 -) -(1,17218:6764466,30817739:25818563,424439,112852 -(1,17217:6764466,30817739:0,0,0 -g1,17217:6764466,30817739 -g1,17217:6764466,30817739 -g1,17217:6436786,30817739 -(1,17217:6436786,30817739:0,0,0 -) -g1,17217:6764466,30817739 -) -k1,17218:6764466,30817739:0 -h1,17218:11743775,30817739:0,0,0 -k1,17218:32583029,30817739:20839254 -g1,17218:32583029,30817739 -) -(1,17222:6764466,31633666:25818563,431045,112852 -(1,17220:6764466,31633666:0,0,0 -g1,17220:6764466,31633666 -g1,17220:6764466,31633666 -g1,17220:6436786,31633666 -(1,17220:6436786,31633666:0,0,0 -) -g1,17220:6764466,31633666 -) -g1,17222:7760328,31633666 -g1,17222:9088144,31633666 -g1,17222:13403545,31633666 -g1,17222:16391130,31633666 -g1,17222:16723084,31633666 -g1,17222:17055038,31633666 -g1,17222:17386992,31633666 -g1,17222:17718946,31633666 -g1,17222:19710670,31633666 -g1,17222:20042624,31633666 -g1,17222:20374578,31633666 -g1,17222:20706532,31633666 -g1,17222:21038486,31633666 -g1,17222:21370440,31633666 -g1,17222:21702394,31633666 -g1,17222:22034348,31633666 -h1,17222:26017795,31633666:0,0,0 -k1,17222:32583029,31633666:6565234 -g1,17222:32583029,31633666 -) -] -) -g1,17223:32583029,31746518 -g1,17223:6764466,31746518 -g1,17223:6764466,31746518 -g1,17223:32583029,31746518 -g1,17223:32583029,31746518 -) -h1,17223:6764466,31943126:0,0,0 -(1,17227:6764466,32808206:25818563,513147,134348 -h1,17226:6764466,32808206:983040,0,0 -k1,17226:11097772,32808206:361824 -k1,17226:12745413,32808206:361825 -k1,17226:14634881,32808206:361824 -k1,17226:17228206,32808206:361824 -k1,17226:20699059,32808206:361825 -k1,17226:22454834,32808206:361824 -k1,17226:23835743,32808206:361824 -k1,17226:27080496,32808206:361824 -k1,17226:31249307,32808206:361825 -k1,17226:32227169,32808206:361824 -k1,17226:32583029,32808206:0 -) -(1,17227:6764466,33673286:25818563,513147,134348 -g1,17226:9144078,33673286 -g1,17226:11855302,33673286 -g1,17226:13002182,33673286 -g1,17226:14409240,33673286 -g1,17226:17439624,33673286 -g1,17226:18298145,33673286 -g1,17226:20390054,33673286 -k1,17227:32583029,33673286:9186839 -g1,17227:32583029,33673286 -) -v1,17229:6764466,34358141:0,393216,0 -(1,17251:6764466,43277270:25818563,9312345,196608 -g1,17251:6764466,43277270 -g1,17251:6764466,43277270 -g1,17251:6567858,43277270 -(1,17251:6567858,43277270:0,9312345,196608 -r1,17306:32779637,43277270:26211779,9508953,196608 -k1,17251:6567857,43277270:-26211780 -) -(1,17251:6567858,43277270:26211779,9312345,196608 -[1,17251:6764466,43277270:25818563,9115737,0 -(1,17231:6764466,34585972:25818563,424439,112852 -(1,17230:6764466,34585972:0,0,0 -g1,17230:6764466,34585972 -g1,17230:6764466,34585972 -g1,17230:6436786,34585972 -(1,17230:6436786,34585972:0,0,0 -) -g1,17230:6764466,34585972 -) -k1,17231:6764466,34585972:0 -k1,17231:6764466,34585972:0 -h1,17231:15727222,34585972:0,0,0 -k1,17231:32583030,34585972:16855808 -g1,17231:32583030,34585972 -) -(1,17235:6764466,35401899:25818563,424439,112852 -(1,17233:6764466,35401899:0,0,0 -g1,17233:6764466,35401899 -g1,17233:6764466,35401899 -g1,17233:6436786,35401899 -(1,17233:6436786,35401899:0,0,0 -) -g1,17233:6764466,35401899 -) -g1,17235:7760328,35401899 -g1,17235:9088144,35401899 -g1,17235:11743776,35401899 -g1,17235:12075730,35401899 -g1,17235:12407684,35401899 -g1,17235:12739638,35401899 -g1,17235:13071592,35401899 -g1,17235:17055039,35401899 -g1,17235:19710671,35401899 -g1,17235:20042625,35401899 -g1,17235:20374579,35401899 -g1,17235:20706533,35401899 -g1,17235:21038487,35401899 -h1,17235:23694118,35401899:0,0,0 -k1,17235:32583029,35401899:8888911 -g1,17235:32583029,35401899 -) -(1,17237:6764466,36217826:25818563,431045,112852 -(1,17236:6764466,36217826:0,0,0 -g1,17236:6764466,36217826 -g1,17236:6764466,36217826 -g1,17236:6436786,36217826 -(1,17236:6436786,36217826:0,0,0 -) -g1,17236:6764466,36217826 -) -k1,17237:6764466,36217826:0 -g1,17237:16723084,36217826 -k1,17237:16723084,36217826:0 -h1,17237:22698254,36217826:0,0,0 -k1,17237:32583029,36217826:9884775 -g1,17237:32583029,36217826 -) -(1,17250:6764466,37033753:25818563,431045,33029 -(1,17239:6764466,37033753:0,0,0 -g1,17239:6764466,37033753 -g1,17239:6764466,37033753 -g1,17239:6436786,37033753 -(1,17239:6436786,37033753:0,0,0 -) -g1,17239:6764466,37033753 -) -g1,17250:7760328,37033753 -h1,17250:9752052,37033753:0,0,0 -k1,17250:32583028,37033753:22830976 -g1,17250:32583028,37033753 -) -(1,17250:6764466,37718608:25818563,431045,112852 -h1,17250:6764466,37718608:0,0,0 -g1,17250:7760328,37718608 -g1,17250:9088144,37718608 -g1,17250:13403545,37718608 -g1,17250:16391130,37718608 -g1,17250:16723084,37718608 -g1,17250:17055038,37718608 -g1,17250:17386992,37718608 -g1,17250:17718946,37718608 -g1,17250:19710670,37718608 -g1,17250:20042624,37718608 -g1,17250:20374578,37718608 -g1,17250:20706532,37718608 -g1,17250:21038486,37718608 -g1,17250:21370440,37718608 -g1,17250:21702394,37718608 -g1,17250:22034348,37718608 -h1,17250:26017795,37718608:0,0,0 -k1,17250:32583029,37718608:6565234 -g1,17250:32583029,37718608 -) -(1,17250:6764466,38403463:25818563,398014,0 -h1,17250:6764466,38403463:0,0,0 -h1,17250:7428374,38403463:0,0,0 -k1,17250:32583030,38403463:25154656 -g1,17250:32583030,38403463 -) -(1,17250:6764466,39088318:25818563,431045,112852 -h1,17250:6764466,39088318:0,0,0 -g1,17250:7760328,39088318 -h1,17250:10084006,39088318:0,0,0 -k1,17250:32583030,39088318:22499024 -g1,17250:32583030,39088318 -) -(1,17250:6764466,39773173:25818563,424439,9908 -h1,17250:6764466,39773173:0,0,0 -g1,17250:7760328,39773173 -g1,17250:8424236,39773173 -g1,17250:9088144,39773173 -g1,17250:11743776,39773173 -g1,17250:12407684,39773173 -g1,17250:13071592,39773173 -h1,17250:13403546,39773173:0,0,0 -k1,17250:32583030,39773173:19179484 -g1,17250:32583030,39773173 -) -(1,17250:6764466,40458028:25818563,398014,6605 -h1,17250:6764466,40458028:0,0,0 -g1,17250:7760328,40458028 -g1,17250:8092282,40458028 -g1,17250:8424236,40458028 -g1,17250:11079868,40458028 -g1,17250:11411822,40458028 -g1,17250:11743776,40458028 -g1,17250:12075730,40458028 -g1,17250:12407684,40458028 -g1,17250:12739638,40458028 -g1,17250:13071592,40458028 -h1,17250:14731362,40458028:0,0,0 -k1,17250:32583030,40458028:17851668 -g1,17250:32583030,40458028 -) -(1,17250:6764466,41142883:25818563,424439,6605 -h1,17250:6764466,41142883:0,0,0 -g1,17250:7760328,41142883 -g1,17250:8092282,41142883 -g1,17250:8424236,41142883 -g1,17250:10415960,41142883 -g1,17250:10747914,41142883 -g1,17250:11079868,41142883 -k1,17250:11079868,41142883:0 -h1,17250:14731362,41142883:0,0,0 -k1,17250:32583030,41142883:17851668 -g1,17250:32583030,41142883 -) -(1,17250:6764466,41827738:25818563,424439,79822 -h1,17250:6764466,41827738:0,0,0 -g1,17250:7760328,41827738 -g1,17250:8424236,41827738 -g1,17250:9088144,41827738 -g1,17250:9420098,41827738 -g1,17250:9752052,41827738 -g1,17250:10084006,41827738 -g1,17250:10415960,41827738 -g1,17250:10747914,41827738 -g1,17250:11079868,41827738 -g1,17250:11411822,41827738 -g1,17250:11743776,41827738 -g1,17250:12075730,41827738 -g1,17250:12407684,41827738 -g1,17250:12739638,41827738 -g1,17250:13071592,41827738 -g1,17250:13403546,41827738 -g1,17250:13735500,41827738 -h1,17250:14731362,41827738:0,0,0 -k1,17250:32583030,41827738:17851668 -g1,17250:32583030,41827738 -) -(1,17250:6764466,42512593:25818563,424439,79822 -h1,17250:6764466,42512593:0,0,0 -g1,17250:7760328,42512593 -g1,17250:8424236,42512593 -g1,17250:9088144,42512593 -g1,17250:9420098,42512593 -g1,17250:9752052,42512593 -g1,17250:10084006,42512593 -g1,17250:10415960,42512593 -g1,17250:10747914,42512593 -g1,17250:11079868,42512593 -g1,17250:11411822,42512593 -g1,17250:11743776,42512593 -g1,17250:12075730,42512593 -g1,17250:12407684,42512593 -g1,17250:12739638,42512593 -g1,17250:13071592,42512593 -g1,17250:13403546,42512593 -g1,17250:13735500,42512593 -h1,17250:14731362,42512593:0,0,0 -k1,17250:32583030,42512593:17851668 -g1,17250:32583030,42512593 -) -(1,17250:6764466,43197448:25818563,424439,79822 -h1,17250:6764466,43197448:0,0,0 -g1,17250:7760328,43197448 -g1,17250:8424236,43197448 -g1,17250:9088144,43197448 -g1,17250:9420098,43197448 -g1,17250:9752052,43197448 -g1,17250:10084006,43197448 -g1,17250:10415960,43197448 -g1,17250:10747914,43197448 -g1,17250:11079868,43197448 -g1,17250:11411822,43197448 -g1,17250:11743776,43197448 -g1,17250:12075730,43197448 -g1,17250:12407684,43197448 -g1,17250:12739638,43197448 -g1,17250:13071592,43197448 -g1,17250:13403546,43197448 -g1,17250:13735500,43197448 -h1,17250:14731362,43197448:0,0,0 -k1,17250:32583030,43197448:17851668 -g1,17250:32583030,43197448 -) -] -) -g1,17251:32583029,43277270 -g1,17251:6764466,43277270 -g1,17251:6764466,43277270 -g1,17251:32583029,43277270 -g1,17251:32583029,43277270 -) -h1,17251:6764466,43473878:0,0,0 -(1,17255:6764466,44338958:25818563,505283,134348 -h1,17254:6764466,44338958:983040,0,0 -g1,17254:8434323,44338958 -g1,17254:9733246,44338958 -g1,17254:10583903,44338958 -(1,17254:10583903,44338958:0,452978,122846 -r1,17306:13755863,44338958:3171960,575824,122846 -k1,17254:10583903,44338958:-3171960 -) -(1,17254:10583903,44338958:3171960,452978,122846 -k1,17254:10583903,44338958:3277 -h1,17254:13752586,44338958:0,411205,112570 -) -g1,17254:13955092,44338958 -g1,17254:16839331,44338958 -g1,17254:18057645,44338958 -g1,17254:21313473,44338958 -g1,17254:24408738,44338958 -g1,17254:25627052,44338958 -g1,17254:28261599,44338958 -k1,17255:32583029,44338958:2457586 -g1,17255:32583029,44338958 -) -] -g1,17306:32583029,44473306 -) -] -(1,17306:32583029,45706769:0,0,0 -g1,17306:32583029,45706769 -) -) -] -(1,17306:6630773,47279633:25952256,0,0 -h1,17306:6630773,47279633:25952256,0,0 -) -] -(1,17306:4262630,4025873:0,0,0 -[1,17306:-473656,4025873:0,0,0 -(1,17306:-473656,-710413:0,0,0 -(1,17306:-473656,-710413:0,0,0 -g1,17306:-473656,-710413 -) -g1,17306:-473656,-710413 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17304:37855564,49800853:1179648,16384,0 +) +) +k1,17304:3078556,49800853:-34777008 +) +] +g1,17304:6630773,4812305 +g1,17304:6630773,4812305 +g1,17304:8364200,4812305 +g1,17304:12733485,4812305 +g1,17304:14295863,4812305 +g1,17304:16502459,4812305 +g1,17304:16701688,4812305 +k1,17304:31387652,4812305:14685964 +) +) +] +[1,17304:6630773,45706769:25952256,40108032,0 +(1,17304:6630773,45706769:25952256,40108032,0 +(1,17304:6630773,45706769:0,0,0 +g1,17304:6630773,45706769 +) +[1,17304:6630773,45706769:25952256,40108032,0 +(1,17154:6630773,6254097:25952256,513147,134348 +h1,17153:6630773,6254097:983040,0,0 +k1,17153:8427825,6254097:186177 +k1,17153:9633086,6254097:186176 +k1,17153:14450692,6254097:186177 +k1,17153:17519798,6254097:186177 +k1,17153:20864155,6254097:186177 +k1,17153:21918683,6254097:186176 +k1,17153:24363886,6254097:186177 +k1,17153:25569148,6254097:186177 +k1,17153:28638254,6254097:186177 +k1,17153:29440468,6254097:186176 +k1,17153:30645730,6254097:186177 +k1,17153:31931601,6254097:186177 +k1,17154:32583029,6254097:0 +) +(1,17154:6630773,7119177:25952256,513147,126483 +(1,17153:6630773,7119177:0,452978,115847 +r1,17304:10506157,7119177:3875384,568825,115847 +k1,17153:6630773,7119177:-3875384 +) +(1,17153:6630773,7119177:3875384,452978,115847 +k1,17153:6630773,7119177:3277 +h1,17153:10502880,7119177:0,411205,112570 +) +k1,17153:10749870,7119177:243713 +k1,17153:12403917,7119177:243712 +k1,17153:13930825,7119177:243713 +k1,17153:16449947,7119177:243712 +k1,17153:17225157,7119177:243713 +k1,17153:19955960,7119177:243712 +k1,17153:20885835,7119177:243713 +k1,17153:25299603,7119177:243712 +k1,17153:26159354,7119177:243713 +k1,17153:28375699,7119177:243712 +k1,17153:30953149,7119177:243713 +k1,17153:32583029,7119177:0 +) +(1,17154:6630773,7984257:25952256,513147,134348 +g1,17153:8021447,7984257 +g1,17153:9557610,7984257 +g1,17153:11997515,7984257 +g1,17153:12812782,7984257 +g1,17153:14999063,7984257 +k1,17154:32583029,7984257:14660405 +g1,17154:32583029,7984257 +) +v1,17156:6630773,8669112:0,393216,0 +(1,17172:6630773,15886473:25952256,7610577,196608 +g1,17172:6630773,15886473 +g1,17172:6630773,15886473 +g1,17172:6434165,15886473 +(1,17172:6434165,15886473:0,7610577,196608 +r1,17304:32779637,15886473:26345472,7807185,196608 +k1,17172:6434165,15886473:-26345472 +) +(1,17172:6434165,15886473:26345472,7610577,196608 +[1,17172:6630773,15886473:25952256,7413969,0 +(1,17158:6630773,8896943:25952256,424439,106246 +(1,17157:6630773,8896943:0,0,0 +g1,17157:6630773,8896943 +g1,17157:6630773,8896943 +g1,17157:6303093,8896943 +(1,17157:6303093,8896943:0,0,0 +) +g1,17157:6630773,8896943 +) +k1,17158:6630773,8896943:0 +g1,17158:11610083,8896943 +g1,17158:12273991,8896943 +g1,17158:13933761,8896943 +g1,17158:16589393,8896943 +g1,17158:17253301,8896943 +g1,17158:23228472,8896943 +g1,17158:24556288,8896943 +k1,17158:24556288,8896943:0 +h1,17158:25220196,8896943:0,0,0 +k1,17158:32583029,8896943:7362833 +g1,17158:32583029,8896943 +) +(1,17159:6630773,9581798:25952256,424439,106246 +h1,17159:6630773,9581798:0,0,0 +g1,17159:6962727,9581798 +g1,17159:7294681,9581798 +g1,17159:11942036,9581798 +g1,17159:12605944,9581798 +k1,17159:12605944,9581798:0 +h1,17159:15261576,9581798:0,0,0 +k1,17159:32583028,9581798:17321452 +g1,17159:32583028,9581798 +) +(1,17160:6630773,10266653:25952256,424439,86428 +h1,17160:6630773,10266653:0,0,0 +g1,17160:6962727,10266653 +g1,17160:7294681,10266653 +g1,17160:7626635,10266653 +g1,17160:7958589,10266653 +g1,17160:8290543,10266653 +g1,17160:8622497,10266653 +g1,17160:8954451,10266653 +g1,17160:9286405,10266653 +g1,17160:9618359,10266653 +g1,17160:9950313,10266653 +g1,17160:10282267,10266653 +g1,17160:10614221,10266653 +g1,17160:13601806,10266653 +g1,17160:14265714,10266653 +k1,17160:14265714,10266653:0 +h1,17160:18913069,10266653:0,0,0 +k1,17160:32583029,10266653:13669960 +g1,17160:32583029,10266653 +) +(1,17161:6630773,10951508:25952256,424439,86428 +h1,17161:6630773,10951508:0,0,0 +g1,17161:6962727,10951508 +g1,17161:7294681,10951508 +g1,17161:7626635,10951508 +g1,17161:7958589,10951508 +g1,17161:8290543,10951508 +g1,17161:8622497,10951508 +g1,17161:8954451,10951508 +g1,17161:9286405,10951508 +g1,17161:9618359,10951508 +g1,17161:9950313,10951508 +g1,17161:10282267,10951508 +g1,17161:10614221,10951508 +g1,17161:14265714,10951508 +g1,17161:14929622,10951508 +k1,17161:14929622,10951508:0 +h1,17161:20240885,10951508:0,0,0 +k1,17161:32583029,10951508:12342144 +g1,17161:32583029,10951508 +) +(1,17162:6630773,11636363:25952256,424439,79822 +h1,17162:6630773,11636363:0,0,0 +g1,17162:6962727,11636363 +g1,17162:7294681,11636363 +g1,17162:7626635,11636363 +g1,17162:7958589,11636363 +g1,17162:8290543,11636363 +g1,17162:8622497,11636363 +g1,17162:8954451,11636363 +g1,17162:9286405,11636363 +g1,17162:9618359,11636363 +g1,17162:9950313,11636363 +g1,17162:10282267,11636363 +g1,17162:10614221,11636363 +g1,17162:11278129,11636363 +g1,17162:11942037,11636363 +k1,17162:11942037,11636363:0 +h1,17162:13269853,11636363:0,0,0 +k1,17162:32583029,11636363:19313176 +g1,17162:32583029,11636363 +) +(1,17171:6630773,12452290:25952256,424439,9908 +(1,17164:6630773,12452290:0,0,0 +g1,17164:6630773,12452290 +g1,17164:6630773,12452290 +g1,17164:6303093,12452290 +(1,17164:6303093,12452290:0,0,0 +) +g1,17164:6630773,12452290 +) +g1,17171:7626635,12452290 +g1,17171:8290543,12452290 +g1,17171:8954451,12452290 +g1,17171:11610083,12452290 +g1,17171:12273991,12452290 +g1,17171:12937899,12452290 +h1,17171:13269853,12452290:0,0,0 +k1,17171:32583029,12452290:19313176 +g1,17171:32583029,12452290 +) +(1,17171:6630773,13137145:25952256,424439,52847 +h1,17171:6630773,13137145:0,0,0 +g1,17171:7626635,13137145 +g1,17171:7958589,13137145 +g1,17171:8290543,13137145 +g1,17171:10946175,13137145 +g1,17171:13933760,13137145 +g1,17171:17585253,13137145 +g1,17171:17917207,13137145 +g1,17171:18249161,13137145 +g1,17171:18581115,13137145 +g1,17171:18913069,13137145 +h1,17171:19245023,13137145:0,0,0 +k1,17171:32583029,13137145:13338006 +g1,17171:32583029,13137145 +) +(1,17171:6630773,13822000:25952256,424439,6605 +h1,17171:6630773,13822000:0,0,0 +g1,17171:7626635,13822000 +g1,17171:7958589,13822000 +g1,17171:8290543,13822000 +g1,17171:10282267,13822000 +g1,17171:10614221,13822000 +g1,17171:10946175,13822000 +g1,17171:11278129,13822000 +g1,17171:11610083,13822000 +g1,17171:11942037,13822000 +g1,17171:13933761,13822000 +g1,17171:14265715,13822000 +g1,17171:14597669,13822000 +g1,17171:14929623,13822000 +g1,17171:15261577,13822000 +g1,17171:15593531,13822000 +g1,17171:17585255,13822000 +k1,17171:17585255,13822000:0 +h1,17171:19245025,13822000:0,0,0 +k1,17171:32583029,13822000:13338004 +g1,17171:32583029,13822000 +) +(1,17171:6630773,14506855:25952256,407923,9908 +h1,17171:6630773,14506855:0,0,0 +g1,17171:7626635,14506855 +g1,17171:8290543,14506855 +g1,17171:8954451,14506855 +g1,17171:9286405,14506855 +g1,17171:9618359,14506855 +g1,17171:9950313,14506855 +g1,17171:10282267,14506855 +g1,17171:10614221,14506855 +g1,17171:10946175,14506855 +g1,17171:11278129,14506855 +g1,17171:11610083,14506855 +g1,17171:11942037,14506855 +g1,17171:12273991,14506855 +g1,17171:12605945,14506855 +g1,17171:12937899,14506855 +g1,17171:13269853,14506855 +g1,17171:13933761,14506855 +g1,17171:14265715,14506855 +g1,17171:14597669,14506855 +g1,17171:14929623,14506855 +g1,17171:15261577,14506855 +g1,17171:15593531,14506855 +g1,17171:15925485,14506855 +g1,17171:16257439,14506855 +g1,17171:16589393,14506855 +g1,17171:16921347,14506855 +g1,17171:17585255,14506855 +g1,17171:17917209,14506855 +g1,17171:18249163,14506855 +g1,17171:18581117,14506855 +g1,17171:18913071,14506855 +h1,17171:19245025,14506855:0,0,0 +k1,17171:32583029,14506855:13338004 +g1,17171:32583029,14506855 +) +(1,17171:6630773,15191710:25952256,424439,9908 +h1,17171:6630773,15191710:0,0,0 +g1,17171:7626635,15191710 +g1,17171:8290543,15191710 +g1,17171:8954451,15191710 +g1,17171:9286405,15191710 +g1,17171:9618359,15191710 +g1,17171:9950313,15191710 +g1,17171:10282267,15191710 +g1,17171:10614221,15191710 +g1,17171:10946175,15191710 +g1,17171:11278129,15191710 +g1,17171:11610083,15191710 +g1,17171:11942037,15191710 +g1,17171:12273991,15191710 +g1,17171:12605945,15191710 +g1,17171:12937899,15191710 +g1,17171:13269853,15191710 +g1,17171:13933761,15191710 +g1,17171:14265715,15191710 +g1,17171:14597669,15191710 +g1,17171:14929623,15191710 +g1,17171:15261577,15191710 +g1,17171:15593531,15191710 +g1,17171:15925485,15191710 +g1,17171:16257439,15191710 +g1,17171:16589393,15191710 +g1,17171:16921347,15191710 +g1,17171:17585255,15191710 +g1,17171:17917209,15191710 +g1,17171:18249163,15191710 +g1,17171:18581117,15191710 +g1,17171:18913071,15191710 +h1,17171:19245025,15191710:0,0,0 +k1,17171:32583029,15191710:13338004 +g1,17171:32583029,15191710 +) +(1,17171:6630773,15876565:25952256,407923,9908 +h1,17171:6630773,15876565:0,0,0 +g1,17171:7626635,15876565 +g1,17171:8290543,15876565 +g1,17171:8954451,15876565 +g1,17171:9286405,15876565 +g1,17171:9618359,15876565 +g1,17171:9950313,15876565 +g1,17171:10282267,15876565 +g1,17171:10614221,15876565 +g1,17171:10946175,15876565 +g1,17171:11278129,15876565 +g1,17171:11610083,15876565 +g1,17171:11942037,15876565 +g1,17171:12273991,15876565 +g1,17171:12605945,15876565 +g1,17171:12937899,15876565 +g1,17171:13269853,15876565 +g1,17171:13933761,15876565 +g1,17171:14265715,15876565 +g1,17171:14597669,15876565 +g1,17171:14929623,15876565 +g1,17171:15261577,15876565 +g1,17171:15593531,15876565 +g1,17171:15925485,15876565 +g1,17171:16257439,15876565 +g1,17171:16589393,15876565 +g1,17171:16921347,15876565 +g1,17171:17585255,15876565 +g1,17171:17917209,15876565 +g1,17171:18249163,15876565 +g1,17171:18581117,15876565 +g1,17171:18913071,15876565 +h1,17171:19245025,15876565:0,0,0 +k1,17171:32583029,15876565:13338004 +g1,17171:32583029,15876565 +) +] +) +g1,17172:32583029,15886473 +g1,17172:6630773,15886473 +g1,17172:6630773,15886473 +g1,17172:32583029,15886473 +g1,17172:32583029,15886473 +) +h1,17172:6630773,16083081:0,0,0 +v1,17176:6630773,16948161:0,393216,0 +(1,17304:6630773,44473306:25952256,27918361,0 +g1,17304:6630773,44473306 +g1,17304:6237557,44473306 +r1,17304:6368629,44473306:131072,27918361,0 +g1,17304:6567858,44473306 +g1,17304:6764466,44473306 +[1,17304:6764466,44473306:25818563,27918361,0 +(1,17177:6764466,17309338:25818563,754393,260573 +(1,17176:6764466,17309338:0,754393,260573 +r1,17304:7856192,17309338:1091726,1014966,260573 +k1,17176:6764466,17309338:-1091726 +) +(1,17176:6764466,17309338:1091726,754393,260573 +) +k1,17176:8061529,17309338:205337 +k1,17176:8389209,17309338:327680 +k1,17176:10015367,17309338:205337 +k1,17176:10752201,17309338:205337 +k1,17176:13840468,17309338:205338 +k1,17176:18247318,17309338:205337 +k1,17176:19400306,17309338:205337 +k1,17176:20995006,17309338:205337 +k1,17176:23406940,17309338:205337 +k1,17176:24803722,17309338:205337 +k1,17176:27477801,17309338:205338 +k1,17176:29016796,17309338:205337 +k1,17176:30460108,17309338:205337 +k1,17176:31316873,17309338:205337 +k1,17176:32583029,17309338:0 +) +(1,17177:6764466,18174418:25818563,513147,134348 +g1,17176:8029966,18174418 +g1,17176:8760692,18174418 +g1,17176:9611349,18174418 +g1,17176:12179049,18174418 +g1,17176:13708659,18174418 +g1,17176:14263748,18174418 +g1,17176:17123739,18174418 +g1,17176:19134383,18174418 +g1,17176:21407171,18174418 +g1,17176:23174021,18174418 +g1,17176:24529960,18174418 +g1,17176:26013695,18174418 +g1,17176:26744421,18174418 +g1,17176:28009921,18174418 +k1,17177:32583029,18174418:1859918 +g1,17177:32583029,18174418 +) +(1,17179:6764466,19039498:25818563,505283,134348 +h1,17178:6764466,19039498:983040,0,0 +g1,17178:9935753,19039498 +(1,17178:9935753,19039498:0,452978,115847 +r1,17304:11700866,19039498:1765113,568825,115847 +k1,17178:9935753,19039498:-1765113 +) +(1,17178:9935753,19039498:1765113,452978,115847 +k1,17178:9935753,19039498:3277 +h1,17178:11697589,19039498:0,411205,112570 +) +g1,17178:11900095,19039498 +g1,17178:12630821,19039498 +g1,17178:13896321,19039498 +k1,17179:32583029,19039498:15973518 +g1,17179:32583029,19039498 +) +v1,17181:6764466,19724353:0,393216,0 +(1,17201:6764466,24796496:25818563,5465359,196608 +g1,17201:6764466,24796496 +g1,17201:6764466,24796496 +g1,17201:6567858,24796496 +(1,17201:6567858,24796496:0,5465359,196608 +r1,17304:32779637,24796496:26211779,5661967,196608 +k1,17201:6567857,24796496:-26211780 +) +(1,17201:6567858,24796496:26211779,5465359,196608 +[1,17201:6764466,24796496:25818563,5268751,0 +(1,17183:6764466,19952184:25818563,424439,106246 +(1,17182:6764466,19952184:0,0,0 +g1,17182:6764466,19952184 +g1,17182:6764466,19952184 +g1,17182:6436786,19952184 +(1,17182:6436786,19952184:0,0,0 +) +g1,17182:6764466,19952184 +) +g1,17183:8756190,19952184 +g1,17183:9752052,19952184 +g1,17183:14731362,19952184 +g1,17183:15395270,19952184 +g1,17183:17055040,19952184 +g1,17183:19710672,19952184 +g1,17183:20374580,19952184 +g1,17183:26349751,19952184 +h1,17183:27345613,19952184:0,0,0 +k1,17183:32583029,19952184:5237416 +g1,17183:32583029,19952184 +) +(1,17184:6764466,20637039:25818563,431045,112852 +h1,17184:6764466,20637039:0,0,0 +k1,17184:6764466,20637039:0 +h1,17184:13403545,20637039:0,0,0 +k1,17184:32583029,20637039:19179484 +g1,17184:32583029,20637039 +) +(1,17188:6764466,21452966:25818563,424439,79822 +(1,17186:6764466,21452966:0,0,0 +g1,17186:6764466,21452966 +g1,17186:6764466,21452966 +g1,17186:6436786,21452966 +(1,17186:6436786,21452966:0,0,0 +) +g1,17186:6764466,21452966 +) +g1,17188:7760328,21452966 +g1,17188:9088144,21452966 +h1,17188:10747914,21452966:0,0,0 +k1,17188:32583030,21452966:21835116 +g1,17188:32583030,21452966 +) +(1,17190:6764466,22268893:25818563,424439,106246 +(1,17189:6764466,22268893:0,0,0 +g1,17189:6764466,22268893 +g1,17189:6764466,22268893 +g1,17189:6436786,22268893 +(1,17189:6436786,22268893:0,0,0 +) +g1,17189:6764466,22268893 +) +k1,17190:6764466,22268893:0 +h1,17190:10747914,22268893:0,0,0 +k1,17190:32583030,22268893:21835116 +g1,17190:32583030,22268893 +) +(1,17194:6764466,23084820:25818563,431045,79822 +(1,17192:6764466,23084820:0,0,0 +g1,17192:6764466,23084820 +g1,17192:6764466,23084820 +g1,17192:6436786,23084820 +(1,17192:6436786,23084820:0,0,0 +) +g1,17192:6764466,23084820 +) +g1,17194:7760328,23084820 +g1,17194:9088144,23084820 +g1,17194:12075729,23084820 +g1,17194:12407683,23084820 +g1,17194:12739637,23084820 +g1,17194:13071591,23084820 +g1,17194:13403545,23084820 +g1,17194:15395269,23084820 +g1,17194:15727223,23084820 +g1,17194:16059177,23084820 +g1,17194:16391131,23084820 +g1,17194:16723085,23084820 +g1,17194:17055039,23084820 +g1,17194:17386993,23084820 +g1,17194:17718947,23084820 +h1,17194:21702394,23084820:0,0,0 +k1,17194:32583029,23084820:10880635 +g1,17194:32583029,23084820 +) +(1,17196:6764466,23900747:25818563,424439,106246 +(1,17195:6764466,23900747:0,0,0 +g1,17195:6764466,23900747 +g1,17195:6764466,23900747 +g1,17195:6436786,23900747 +(1,17195:6436786,23900747:0,0,0 +) +g1,17195:6764466,23900747 +) +k1,17196:6764466,23900747:0 +k1,17196:6764466,23900747:0 +h1,17196:14731360,23900747:0,0,0 +k1,17196:32583028,23900747:17851668 +g1,17196:32583028,23900747 +) +(1,17200:6764466,24716674:25818563,424439,79822 +(1,17198:6764466,24716674:0,0,0 +g1,17198:6764466,24716674 +g1,17198:6764466,24716674 +g1,17198:6436786,24716674 +(1,17198:6436786,24716674:0,0,0 +) +g1,17198:6764466,24716674 +) +g1,17200:7760328,24716674 +g1,17200:9088144,24716674 +g1,17200:11743776,24716674 +g1,17200:12075730,24716674 +g1,17200:12407684,24716674 +g1,17200:12739638,24716674 +g1,17200:13071592,24716674 +g1,17200:17055039,24716674 +h1,17200:19378717,24716674:0,0,0 +k1,17200:32583029,24716674:13204312 +g1,17200:32583029,24716674 +) +] +) +g1,17201:32583029,24796496 +g1,17201:6764466,24796496 +g1,17201:6764466,24796496 +g1,17201:32583029,24796496 +g1,17201:32583029,24796496 +) +h1,17201:6764466,24993104:0,0,0 +(1,17205:6764466,25858184:25818563,505283,134348 +h1,17204:6764466,25858184:983040,0,0 +k1,17204:9931769,25858184:195245 +(1,17204:9931769,25858184:0,452978,122846 +r1,17304:12752018,25858184:2820249,575824,122846 +k1,17204:9931769,25858184:-2820249 +) +(1,17204:9931769,25858184:2820249,452978,122846 +k1,17204:9931769,25858184:3277 +h1,17204:12748741,25858184:0,411205,112570 +) +k1,17204:12947262,25858184:195244 +k1,17204:13674004,25858184:195245 +k1,17204:16530010,25858184:195244 +k1,17204:17486783,25858184:195245 +k1,17204:20367037,25858184:195244 +k1,17204:21245167,25858184:195245 +k1,17204:23996970,25858184:195244 +(1,17204:23996970,25858184:0,414482,115847 +r1,17304:26465507,25858184:2468537,530329,115847 +k1,17204:23996970,25858184:-2468537 +) +(1,17204:23996970,25858184:2468537,414482,115847 +k1,17204:23996970,25858184:3277 +h1,17204:26462230,25858184:0,411205,112570 +) +k1,17204:26834422,25858184:195245 +k1,17204:27657501,25858184:195244 +k1,17204:29055987,25858184:195245 +k1,17204:30618312,25858184:195244 +k1,17204:31499719,25858184:195245 +k1,17204:32583029,25858184:0 +) +(1,17205:6764466,26723264:25818563,505283,134348 +k1,17204:8790796,26723264:214915 +k1,17204:11472486,26723264:214915 +k1,17204:12338829,26723264:214915 +k1,17204:14108913,26723264:214915 +(1,17204:14108913,26723264:0,459977,115847 +r1,17304:17280873,26723264:3171960,575824,115847 +k1,17204:14108913,26723264:-3171960 +) +(1,17204:14108913,26723264:3171960,459977,115847 +k1,17204:14108913,26723264:3277 +h1,17204:17277596,26723264:0,411205,112570 +) +k1,17204:17669458,26723264:214915 +k1,17204:20767302,26723264:214915 +k1,17204:22509861,26723264:214915 +(1,17204:22509861,26723264:0,459977,122846 +r1,17304:26033533,26723264:3523672,582823,122846 +k1,17204:22509861,26723264:-3523672 +) +(1,17204:22509861,26723264:3523672,459977,122846 +k1,17204:22509861,26723264:3277 +h1,17204:26030256,26723264:0,411205,112570 +) +k1,17204:26248448,26723264:214915 +k1,17204:27149525,26723264:214915 +k1,17204:28383525,26723264:214915 +k1,17204:30200140,26723264:214915 +k1,17204:32583029,26723264:0 +) +(1,17205:6764466,27588344:25818563,505283,7863 +k1,17205:32583028,27588344:24210964 +g1,17205:32583028,27588344 +) +v1,17207:6764466,28273199:0,393216,0 +(1,17221:6764466,31746518:25818563,3866535,196608 +g1,17221:6764466,31746518 +g1,17221:6764466,31746518 +g1,17221:6567858,31746518 +(1,17221:6567858,31746518:0,3866535,196608 +r1,17304:32779637,31746518:26211779,4063143,196608 +k1,17221:6567857,31746518:-26211780 +) +(1,17221:6567858,31746518:26211779,3866535,196608 +[1,17221:6764466,31746518:25818563,3669927,0 +(1,17209:6764466,28501030:25818563,424439,112852 +(1,17208:6764466,28501030:0,0,0 +g1,17208:6764466,28501030 +g1,17208:6764466,28501030 +g1,17208:6436786,28501030 +(1,17208:6436786,28501030:0,0,0 +) +g1,17208:6764466,28501030 +) +g1,17209:9752051,28501030 +g1,17209:10747913,28501030 +g1,17209:15727222,28501030 +g1,17209:16391130,28501030 +g1,17209:18714808,28501030 +h1,17209:21370439,28501030:0,0,0 +k1,17209:32583029,28501030:11212590 +g1,17209:32583029,28501030 +) +(1,17210:6764466,29185885:25818563,431045,112852 +h1,17210:6764466,29185885:0,0,0 +k1,17210:6764466,29185885:0 +h1,17210:14399406,29185885:0,0,0 +k1,17210:32583030,29185885:18183624 +g1,17210:32583030,29185885 +) +(1,17214:6764466,30001812:25818563,424439,79822 +(1,17212:6764466,30001812:0,0,0 +g1,17212:6764466,30001812 +g1,17212:6764466,30001812 +g1,17212:6436786,30001812 +(1,17212:6436786,30001812:0,0,0 +) +g1,17212:6764466,30001812 +) +g1,17214:7760328,30001812 +g1,17214:9088144,30001812 +h1,17214:10415960,30001812:0,0,0 +k1,17214:32583028,30001812:22167068 +g1,17214:32583028,30001812 +) +(1,17216:6764466,30817739:25818563,424439,112852 +(1,17215:6764466,30817739:0,0,0 +g1,17215:6764466,30817739 +g1,17215:6764466,30817739 +g1,17215:6436786,30817739 +(1,17215:6436786,30817739:0,0,0 +) +g1,17215:6764466,30817739 +) +k1,17216:6764466,30817739:0 +h1,17216:11743775,30817739:0,0,0 +k1,17216:32583029,30817739:20839254 +g1,17216:32583029,30817739 +) +(1,17220:6764466,31633666:25818563,431045,112852 +(1,17218:6764466,31633666:0,0,0 +g1,17218:6764466,31633666 +g1,17218:6764466,31633666 +g1,17218:6436786,31633666 +(1,17218:6436786,31633666:0,0,0 +) +g1,17218:6764466,31633666 +) +g1,17220:7760328,31633666 +g1,17220:9088144,31633666 +g1,17220:13403545,31633666 +g1,17220:16391130,31633666 +g1,17220:16723084,31633666 +g1,17220:17055038,31633666 +g1,17220:17386992,31633666 +g1,17220:17718946,31633666 +g1,17220:19710670,31633666 +g1,17220:20042624,31633666 +g1,17220:20374578,31633666 +g1,17220:20706532,31633666 +g1,17220:21038486,31633666 +g1,17220:21370440,31633666 +g1,17220:21702394,31633666 +g1,17220:22034348,31633666 +h1,17220:26017795,31633666:0,0,0 +k1,17220:32583029,31633666:6565234 +g1,17220:32583029,31633666 +) +] +) +g1,17221:32583029,31746518 +g1,17221:6764466,31746518 +g1,17221:6764466,31746518 +g1,17221:32583029,31746518 +g1,17221:32583029,31746518 +) +h1,17221:6764466,31943126:0,0,0 +(1,17225:6764466,32808206:25818563,513147,134348 +h1,17224:6764466,32808206:983040,0,0 +k1,17224:11097772,32808206:361824 +k1,17224:12745413,32808206:361825 +k1,17224:14634881,32808206:361824 +k1,17224:17228206,32808206:361824 +k1,17224:20699059,32808206:361825 +k1,17224:22454834,32808206:361824 +k1,17224:23835743,32808206:361824 +k1,17224:27080496,32808206:361824 +k1,17224:31249307,32808206:361825 +k1,17224:32227169,32808206:361824 +k1,17224:32583029,32808206:0 +) +(1,17225:6764466,33673286:25818563,513147,134348 +g1,17224:9144078,33673286 +g1,17224:11855302,33673286 +g1,17224:13002182,33673286 +g1,17224:14409240,33673286 +g1,17224:17439624,33673286 +g1,17224:18298145,33673286 +g1,17224:20390054,33673286 +k1,17225:32583029,33673286:9186839 +g1,17225:32583029,33673286 +) +v1,17227:6764466,34358141:0,393216,0 +(1,17249:6764466,43277270:25818563,9312345,196608 +g1,17249:6764466,43277270 +g1,17249:6764466,43277270 +g1,17249:6567858,43277270 +(1,17249:6567858,43277270:0,9312345,196608 +r1,17304:32779637,43277270:26211779,9508953,196608 +k1,17249:6567857,43277270:-26211780 +) +(1,17249:6567858,43277270:26211779,9312345,196608 +[1,17249:6764466,43277270:25818563,9115737,0 +(1,17229:6764466,34585972:25818563,424439,112852 +(1,17228:6764466,34585972:0,0,0 +g1,17228:6764466,34585972 +g1,17228:6764466,34585972 +g1,17228:6436786,34585972 +(1,17228:6436786,34585972:0,0,0 +) +g1,17228:6764466,34585972 +) +k1,17229:6764466,34585972:0 +k1,17229:6764466,34585972:0 +h1,17229:15727222,34585972:0,0,0 +k1,17229:32583030,34585972:16855808 +g1,17229:32583030,34585972 +) +(1,17233:6764466,35401899:25818563,424439,112852 +(1,17231:6764466,35401899:0,0,0 +g1,17231:6764466,35401899 +g1,17231:6764466,35401899 +g1,17231:6436786,35401899 +(1,17231:6436786,35401899:0,0,0 +) +g1,17231:6764466,35401899 +) +g1,17233:7760328,35401899 +g1,17233:9088144,35401899 +g1,17233:11743776,35401899 +g1,17233:12075730,35401899 +g1,17233:12407684,35401899 +g1,17233:12739638,35401899 +g1,17233:13071592,35401899 +g1,17233:17055039,35401899 +g1,17233:19710671,35401899 +g1,17233:20042625,35401899 +g1,17233:20374579,35401899 +g1,17233:20706533,35401899 +g1,17233:21038487,35401899 +h1,17233:23694118,35401899:0,0,0 +k1,17233:32583029,35401899:8888911 +g1,17233:32583029,35401899 +) +(1,17235:6764466,36217826:25818563,431045,112852 +(1,17234:6764466,36217826:0,0,0 +g1,17234:6764466,36217826 +g1,17234:6764466,36217826 +g1,17234:6436786,36217826 +(1,17234:6436786,36217826:0,0,0 +) +g1,17234:6764466,36217826 +) +k1,17235:6764466,36217826:0 +g1,17235:16723084,36217826 +k1,17235:16723084,36217826:0 +h1,17235:22698254,36217826:0,0,0 +k1,17235:32583029,36217826:9884775 +g1,17235:32583029,36217826 +) +(1,17248:6764466,37033753:25818563,431045,33029 +(1,17237:6764466,37033753:0,0,0 +g1,17237:6764466,37033753 +g1,17237:6764466,37033753 +g1,17237:6436786,37033753 +(1,17237:6436786,37033753:0,0,0 +) +g1,17237:6764466,37033753 +) +g1,17248:7760328,37033753 +h1,17248:9752052,37033753:0,0,0 +k1,17248:32583028,37033753:22830976 +g1,17248:32583028,37033753 +) +(1,17248:6764466,37718608:25818563,431045,112852 +h1,17248:6764466,37718608:0,0,0 +g1,17248:7760328,37718608 +g1,17248:9088144,37718608 +g1,17248:13403545,37718608 +g1,17248:16391130,37718608 +g1,17248:16723084,37718608 +g1,17248:17055038,37718608 +g1,17248:17386992,37718608 +g1,17248:17718946,37718608 +g1,17248:19710670,37718608 +g1,17248:20042624,37718608 +g1,17248:20374578,37718608 +g1,17248:20706532,37718608 +g1,17248:21038486,37718608 +g1,17248:21370440,37718608 +g1,17248:21702394,37718608 +g1,17248:22034348,37718608 +h1,17248:26017795,37718608:0,0,0 +k1,17248:32583029,37718608:6565234 +g1,17248:32583029,37718608 +) +(1,17248:6764466,38403463:25818563,398014,0 +h1,17248:6764466,38403463:0,0,0 +h1,17248:7428374,38403463:0,0,0 +k1,17248:32583030,38403463:25154656 +g1,17248:32583030,38403463 +) +(1,17248:6764466,39088318:25818563,431045,112852 +h1,17248:6764466,39088318:0,0,0 +g1,17248:7760328,39088318 +h1,17248:10084006,39088318:0,0,0 +k1,17248:32583030,39088318:22499024 +g1,17248:32583030,39088318 +) +(1,17248:6764466,39773173:25818563,424439,9908 +h1,17248:6764466,39773173:0,0,0 +g1,17248:7760328,39773173 +g1,17248:8424236,39773173 +g1,17248:9088144,39773173 +g1,17248:11743776,39773173 +g1,17248:12407684,39773173 +g1,17248:13071592,39773173 +h1,17248:13403546,39773173:0,0,0 +k1,17248:32583030,39773173:19179484 +g1,17248:32583030,39773173 +) +(1,17248:6764466,40458028:25818563,398014,6605 +h1,17248:6764466,40458028:0,0,0 +g1,17248:7760328,40458028 +g1,17248:8092282,40458028 +g1,17248:8424236,40458028 +g1,17248:11079868,40458028 +g1,17248:11411822,40458028 +g1,17248:11743776,40458028 +g1,17248:12075730,40458028 +g1,17248:12407684,40458028 +g1,17248:12739638,40458028 +g1,17248:13071592,40458028 +h1,17248:14731362,40458028:0,0,0 +k1,17248:32583030,40458028:17851668 +g1,17248:32583030,40458028 +) +(1,17248:6764466,41142883:25818563,424439,6605 +h1,17248:6764466,41142883:0,0,0 +g1,17248:7760328,41142883 +g1,17248:8092282,41142883 +g1,17248:8424236,41142883 +g1,17248:10415960,41142883 +g1,17248:10747914,41142883 +g1,17248:11079868,41142883 +k1,17248:11079868,41142883:0 +h1,17248:14731362,41142883:0,0,0 +k1,17248:32583030,41142883:17851668 +g1,17248:32583030,41142883 +) +(1,17248:6764466,41827738:25818563,424439,79822 +h1,17248:6764466,41827738:0,0,0 +g1,17248:7760328,41827738 +g1,17248:8424236,41827738 +g1,17248:9088144,41827738 +g1,17248:9420098,41827738 +g1,17248:9752052,41827738 +g1,17248:10084006,41827738 +g1,17248:10415960,41827738 +g1,17248:10747914,41827738 +g1,17248:11079868,41827738 +g1,17248:11411822,41827738 +g1,17248:11743776,41827738 +g1,17248:12075730,41827738 +g1,17248:12407684,41827738 +g1,17248:12739638,41827738 +g1,17248:13071592,41827738 +g1,17248:13403546,41827738 +g1,17248:13735500,41827738 +h1,17248:14731362,41827738:0,0,0 +k1,17248:32583030,41827738:17851668 +g1,17248:32583030,41827738 +) +(1,17248:6764466,42512593:25818563,424439,79822 +h1,17248:6764466,42512593:0,0,0 +g1,17248:7760328,42512593 +g1,17248:8424236,42512593 +g1,17248:9088144,42512593 +g1,17248:9420098,42512593 +g1,17248:9752052,42512593 +g1,17248:10084006,42512593 +g1,17248:10415960,42512593 +g1,17248:10747914,42512593 +g1,17248:11079868,42512593 +g1,17248:11411822,42512593 +g1,17248:11743776,42512593 +g1,17248:12075730,42512593 +g1,17248:12407684,42512593 +g1,17248:12739638,42512593 +g1,17248:13071592,42512593 +g1,17248:13403546,42512593 +g1,17248:13735500,42512593 +h1,17248:14731362,42512593:0,0,0 +k1,17248:32583030,42512593:17851668 +g1,17248:32583030,42512593 +) +(1,17248:6764466,43197448:25818563,424439,79822 +h1,17248:6764466,43197448:0,0,0 +g1,17248:7760328,43197448 +g1,17248:8424236,43197448 +g1,17248:9088144,43197448 +g1,17248:9420098,43197448 +g1,17248:9752052,43197448 +g1,17248:10084006,43197448 +g1,17248:10415960,43197448 +g1,17248:10747914,43197448 +g1,17248:11079868,43197448 +g1,17248:11411822,43197448 +g1,17248:11743776,43197448 +g1,17248:12075730,43197448 +g1,17248:12407684,43197448 +g1,17248:12739638,43197448 +g1,17248:13071592,43197448 +g1,17248:13403546,43197448 +g1,17248:13735500,43197448 +h1,17248:14731362,43197448:0,0,0 +k1,17248:32583030,43197448:17851668 +g1,17248:32583030,43197448 +) +] +) +g1,17249:32583029,43277270 +g1,17249:6764466,43277270 +g1,17249:6764466,43277270 +g1,17249:32583029,43277270 +g1,17249:32583029,43277270 +) +h1,17249:6764466,43473878:0,0,0 +(1,17253:6764466,44338958:25818563,505283,134348 +h1,17252:6764466,44338958:983040,0,0 +g1,17252:8434323,44338958 +g1,17252:9733246,44338958 +g1,17252:10583903,44338958 +(1,17252:10583903,44338958:0,452978,122846 +r1,17304:13755863,44338958:3171960,575824,122846 +k1,17252:10583903,44338958:-3171960 +) +(1,17252:10583903,44338958:3171960,452978,122846 +k1,17252:10583903,44338958:3277 +h1,17252:13752586,44338958:0,411205,112570 +) +g1,17252:13955092,44338958 +g1,17252:16839331,44338958 +g1,17252:18057645,44338958 +g1,17252:21313473,44338958 +g1,17252:24408738,44338958 +g1,17252:25627052,44338958 +g1,17252:28261599,44338958 +k1,17253:32583029,44338958:2457586 +g1,17253:32583029,44338958 +) +] +g1,17304:32583029,44473306 +) +] +(1,17304:32583029,45706769:0,0,0 +g1,17304:32583029,45706769 +) +) +] +(1,17304:6630773,47279633:25952256,0,0 +h1,17304:6630773,47279633:25952256,0,0 +) +] +(1,17304:4262630,4025873:0,0,0 +[1,17304:-473656,4025873:0,0,0 +(1,17304:-473656,-710413:0,0,0 +(1,17304:-473656,-710413:0,0,0 +g1,17304:-473656,-710413 +) +g1,17304:-473656,-710413 ) ] ) ] !31077 -}278 -Input:2891:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2892:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2893:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2894:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}279 Input:2895:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2896:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2897:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -300026,5181 +300230,5181 @@ Input:2902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2903:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2904:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2905:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2906:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2907:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2908:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2909:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{279 -[1,17330:4262630,47279633:28320399,43253760,0 -(1,17330:4262630,4025873:0,0,0 -[1,17330:-473656,4025873:0,0,0 -(1,17330:-473656,-710413:0,0,0 -(1,17330:-473656,-644877:0,0,0 -k1,17330:-473656,-644877:-65536 +{280 +[1,17328:4262630,47279633:28320399,43253760,0 +(1,17328:4262630,4025873:0,0,0 +[1,17328:-473656,4025873:0,0,0 +(1,17328:-473656,-710413:0,0,0 +(1,17328:-473656,-644877:0,0,0 +k1,17328:-473656,-644877:-65536 ) -(1,17330:-473656,4736287:0,0,0 -k1,17330:-473656,4736287:5209943 +(1,17328:-473656,4736287:0,0,0 +k1,17328:-473656,4736287:5209943 ) -g1,17330:-473656,-710413 +g1,17328:-473656,-710413 ) ] ) -[1,17330:6630773,47279633:25952256,43253760,0 -[1,17330:6630773,4812305:25952256,786432,0 -(1,17330:6630773,4812305:25952256,505283,134348 -(1,17330:6630773,4812305:25952256,505283,134348 -g1,17330:3078558,4812305 -[1,17330:3078558,4812305:0,0,0 -(1,17330:3078558,2439708:0,1703936,0 -k1,17330:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17330:2537886,2439708:1179648,16384,0 +[1,17328:6630773,47279633:25952256,43253760,0 +[1,17328:6630773,4812305:25952256,786432,0 +(1,17328:6630773,4812305:25952256,505283,134348 +(1,17328:6630773,4812305:25952256,505283,134348 +g1,17328:3078558,4812305 +[1,17328:3078558,4812305:0,0,0 +(1,17328:3078558,2439708:0,1703936,0 +k1,17328:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17328:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17330:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17328:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17330:3078558,4812305:0,0,0 -(1,17330:3078558,2439708:0,1703936,0 -g1,17330:29030814,2439708 -g1,17330:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17330:36151628,1915420:16384,1179648,0 +[1,17328:3078558,4812305:0,0,0 +(1,17328:3078558,2439708:0,1703936,0 +g1,17328:29030814,2439708 +g1,17328:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17328:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17330:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17328:37855564,2439708:1179648,16384,0 ) ) -k1,17330:3078556,2439708:-34777008 +k1,17328:3078556,2439708:-34777008 ) ] -[1,17330:3078558,4812305:0,0,0 -(1,17330:3078558,49800853:0,16384,2228224 -k1,17330:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17330:2537886,49800853:1179648,16384,0 +[1,17328:3078558,4812305:0,0,0 +(1,17328:3078558,49800853:0,16384,2228224 +k1,17328:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17328:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17330:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17328:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17330:3078558,4812305:0,0,0 -(1,17330:3078558,49800853:0,16384,2228224 -g1,17330:29030814,49800853 -g1,17330:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17330:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +[1,17328:3078558,4812305:0,0,0 +(1,17328:3078558,49800853:0,16384,2228224 +g1,17328:29030814,49800853 +g1,17328:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17328:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17330:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17328:37855564,49800853:1179648,16384,0 ) ) -k1,17330:3078556,49800853:-34777008 +k1,17328:3078556,49800853:-34777008 ) ] -g1,17330:6630773,4812305 -k1,17330:23347041,4812305:15520891 -g1,17330:23960458,4812305 -g1,17330:27572802,4812305 -g1,17330:29306229,4812305 -) -) -] -[1,17330:6630773,45706769:25952256,40108032,0 -(1,17330:6630773,45706769:25952256,40108032,0 -(1,17330:6630773,45706769:0,0,0 -g1,17330:6630773,45706769 -) -[1,17330:6630773,45706769:25952256,40108032,0 -v1,17306:6630773,6254097:0,393216,0 -(1,17306:6630773,28045502:25952256,22184621,0 -g1,17306:6630773,28045502 -g1,17306:6237557,28045502 -r1,17330:6368629,28045502:131072,22184621,0 -g1,17306:6567858,28045502 -g1,17306:6764466,28045502 -[1,17306:6764466,28045502:25818563,22184621,0 -v1,17257:6764466,6254097:0,393216,0 -(1,17271:6764466,9694386:25818563,3833505,196608 -g1,17271:6764466,9694386 -g1,17271:6764466,9694386 -g1,17271:6567858,9694386 -(1,17271:6567858,9694386:0,3833505,196608 -r1,17330:32779637,9694386:26211779,4030113,196608 -k1,17271:6567857,9694386:-26211780 -) -(1,17271:6567858,9694386:26211779,3833505,196608 -[1,17271:6764466,9694386:25818563,3636897,0 -(1,17259:6764466,6481928:25818563,424439,112852 -(1,17258:6764466,6481928:0,0,0 -g1,17258:6764466,6481928 -g1,17258:6764466,6481928 -g1,17258:6436786,6481928 -(1,17258:6436786,6481928:0,0,0 -) -g1,17258:6764466,6481928 -) -g1,17259:10084005,6481928 -g1,17259:11079867,6481928 -k1,17259:11079867,6481928:0 -h1,17259:16723084,6481928:0,0,0 -k1,17259:32583029,6481928:15859945 -g1,17259:32583029,6481928 -) -(1,17260:6764466,7166783:25818563,424439,112852 -h1,17260:6764466,7166783:0,0,0 -k1,17260:6764466,7166783:0 -h1,17260:12075729,7166783:0,0,0 -k1,17260:32583029,7166783:20507300 -g1,17260:32583029,7166783 -) -(1,17264:6764466,7982710:25818563,431045,79822 -(1,17262:6764466,7982710:0,0,0 -g1,17262:6764466,7982710 -g1,17262:6764466,7982710 -g1,17262:6436786,7982710 -(1,17262:6436786,7982710:0,0,0 -) -g1,17262:6764466,7982710 -) -g1,17264:7760328,7982710 -g1,17264:9088144,7982710 -g1,17264:12075729,7982710 -g1,17264:12407683,7982710 -g1,17264:12739637,7982710 -g1,17264:13071591,7982710 -g1,17264:13403545,7982710 -g1,17264:15395269,7982710 -g1,17264:15727223,7982710 -g1,17264:16059177,7982710 -g1,17264:16391131,7982710 -g1,17264:16723085,7982710 -g1,17264:17055039,7982710 -g1,17264:17386993,7982710 -g1,17264:17718947,7982710 -h1,17264:21702394,7982710:0,0,0 -k1,17264:32583029,7982710:10880635 -g1,17264:32583029,7982710 -) -(1,17266:6764466,8798637:25818563,424439,112852 -(1,17265:6764466,8798637:0,0,0 -g1,17265:6764466,8798637 -g1,17265:6764466,8798637 -g1,17265:6436786,8798637 -(1,17265:6436786,8798637:0,0,0 -) -g1,17265:6764466,8798637 -) -k1,17266:6764466,8798637:0 -k1,17266:6764466,8798637:0 -h1,17266:16059176,8798637:0,0,0 -k1,17266:32583029,8798637:16523853 -g1,17266:32583029,8798637 -) -(1,17270:6764466,9614564:25818563,424439,79822 -(1,17268:6764466,9614564:0,0,0 -g1,17268:6764466,9614564 -g1,17268:6764466,9614564 -g1,17268:6436786,9614564 -(1,17268:6436786,9614564:0,0,0 -) -g1,17268:6764466,9614564 -) -g1,17270:7760328,9614564 -g1,17270:9088144,9614564 -g1,17270:11743776,9614564 -g1,17270:12075730,9614564 -g1,17270:12407684,9614564 -g1,17270:12739638,9614564 -g1,17270:13071592,9614564 -g1,17270:17055039,9614564 -h1,17270:19378717,9614564:0,0,0 -k1,17270:32583029,9614564:13204312 -g1,17270:32583029,9614564 -) -] -) -g1,17271:32583029,9694386 -g1,17271:6764466,9694386 -g1,17271:6764466,9694386 -g1,17271:32583029,9694386 -g1,17271:32583029,9694386 -) -h1,17271:6764466,9890994:0,0,0 -v1,17275:6764466,10575849:0,393216,0 -(1,17300:6764466,16594991:25818563,6412358,196608 -g1,17300:6764466,16594991 -g1,17300:6764466,16594991 -g1,17300:6567858,16594991 -(1,17300:6567858,16594991:0,6412358,196608 -r1,17330:32779637,16594991:26211779,6608966,196608 -k1,17300:6567857,16594991:-26211780 -) -(1,17300:6567858,16594991:26211779,6412358,196608 -[1,17300:6764466,16594991:25818563,6215750,0 -(1,17277:6764466,10803680:25818563,424439,112852 -(1,17276:6764466,10803680:0,0,0 -g1,17276:6764466,10803680 -g1,17276:6764466,10803680 -g1,17276:6436786,10803680 -(1,17276:6436786,10803680:0,0,0 -) -g1,17276:6764466,10803680 -) -k1,17277:6764466,10803680:0 -g1,17277:10084006,10803680 -g1,17277:11079868,10803680 -h1,17277:14067453,10803680:0,0,0 -k1,17277:32583029,10803680:18515576 -g1,17277:32583029,10803680 -) -(1,17281:6764466,11619607:25818563,424439,79822 -(1,17279:6764466,11619607:0,0,0 -g1,17279:6764466,11619607 -g1,17279:6764466,11619607 -g1,17279:6436786,11619607 -(1,17279:6436786,11619607:0,0,0 -) -g1,17279:6764466,11619607 -) -g1,17281:7760328,11619607 -g1,17281:9088144,11619607 -h1,17281:10415960,11619607:0,0,0 -k1,17281:32583028,11619607:22167068 -g1,17281:32583028,11619607 -) -(1,17283:6764466,12435534:25818563,424439,112852 -(1,17282:6764466,12435534:0,0,0 -g1,17282:6764466,12435534 -g1,17282:6764466,12435534 -g1,17282:6436786,12435534 -(1,17282:6436786,12435534:0,0,0 -) -g1,17282:6764466,12435534 -) -k1,17283:6764466,12435534:0 -g1,17283:10084006,12435534 -g1,17283:11079868,12435534 -h1,17283:14399407,12435534:0,0,0 -k1,17283:32583029,12435534:18183622 -g1,17283:32583029,12435534 -) -(1,17287:6764466,13251461:25818563,424439,79822 -(1,17285:6764466,13251461:0,0,0 -g1,17285:6764466,13251461 -g1,17285:6764466,13251461 -g1,17285:6436786,13251461 -(1,17285:6436786,13251461:0,0,0 -) -g1,17285:6764466,13251461 -) -g1,17287:7760328,13251461 -g1,17287:9088144,13251461 -h1,17287:10415960,13251461:0,0,0 -k1,17287:32583028,13251461:22167068 -g1,17287:32583028,13251461 -) -(1,17289:6764466,14067388:25818563,424439,112852 -(1,17288:6764466,14067388:0,0,0 -g1,17288:6764466,14067388 -g1,17288:6764466,14067388 -g1,17288:6436786,14067388 -(1,17288:6436786,14067388:0,0,0 -) -g1,17288:6764466,14067388 -) -k1,17289:6764466,14067388:0 -g1,17289:12407683,14067388 -h1,17289:15395268,14067388:0,0,0 -k1,17289:32583028,14067388:17187760 -g1,17289:32583028,14067388 -) -(1,17293:6764466,14883315:25818563,424439,79822 -(1,17291:6764466,14883315:0,0,0 -g1,17291:6764466,14883315 -g1,17291:6764466,14883315 -g1,17291:6436786,14883315 -(1,17291:6436786,14883315:0,0,0 -) -g1,17291:6764466,14883315 -) -g1,17293:7760328,14883315 -g1,17293:9088144,14883315 -h1,17293:10747914,14883315:0,0,0 -k1,17293:32583030,14883315:21835116 -g1,17293:32583030,14883315 -) -(1,17295:6764466,15699242:25818563,424439,112852 -(1,17294:6764466,15699242:0,0,0 -g1,17294:6764466,15699242 -g1,17294:6764466,15699242 -g1,17294:6436786,15699242 -(1,17294:6436786,15699242:0,0,0 -) -g1,17294:6764466,15699242 -) -k1,17295:6764466,15699242:0 -g1,17295:12407683,15699242 -h1,17295:15727222,15699242:0,0,0 -k1,17295:32583030,15699242:16855808 -g1,17295:32583030,15699242 -) -(1,17299:6764466,16515169:25818563,424439,79822 -(1,17297:6764466,16515169:0,0,0 -g1,17297:6764466,16515169 -g1,17297:6764466,16515169 -g1,17297:6436786,16515169 -(1,17297:6436786,16515169:0,0,0 -) -g1,17297:6764466,16515169 -) -g1,17299:7760328,16515169 -g1,17299:9088144,16515169 -h1,17299:10415960,16515169:0,0,0 -k1,17299:32583028,16515169:22167068 -g1,17299:32583028,16515169 -) -] -) -g1,17300:32583029,16594991 -g1,17300:6764466,16594991 -g1,17300:6764466,16594991 -g1,17300:32583029,16594991 -g1,17300:32583029,16594991 -) -h1,17300:6764466,16791599:0,0,0 -(1,17304:6764466,17656679:25818563,505283,126483 -h1,17303:6764466,17656679:983040,0,0 -k1,17303:9192512,17656679:248319 -k1,17303:10962576,17656679:248318 -k1,17303:13066219,17656679:248319 -k1,17303:14975220,17656679:248319 -k1,17303:16508045,17656679:248319 -k1,17303:19710071,17656679:248318 -k1,17303:20949950,17656679:248319 -k1,17303:21814307,17656679:248319 -k1,17303:22828741,17656679:248318 -k1,17303:24774442,17656679:248319 -k1,17303:26041846,17656679:248319 -k1,17303:27943638,17656679:248319 -k1,17303:28878118,17656679:248318 -k1,17303:31873051,17656679:248319 -(1,17303:31873051,17656679:0,414482,115847 -r1,17330:32583029,17656679:709978,530329,115847 -k1,17303:31873051,17656679:-709978 -) -(1,17303:31873051,17656679:709978,414482,115847 -k1,17303:31873051,17656679:3277 -h1,17303:32579752,17656679:0,411205,112570 -) -k1,17303:32583029,17656679:0 -) -(1,17304:6764466,18521759:25818563,513147,126483 -k1,17303:8477764,18521759:191552 -k1,17303:9616968,18521759:191553 -k1,17303:12355249,18521759:191552 -k1,17303:13159563,18521759:191552 -k1,17303:14802738,18521759:191553 -k1,17303:17608521,18521759:191552 -k1,17303:18416111,18521759:191552 -k1,17303:19626749,18521759:191553 -k1,17303:21629716,18521759:191552 -k1,17303:22893438,18521759:191553 -k1,17303:24151261,18521759:191552 -k1,17303:25361898,18521759:191552 -k1,17303:28836149,18521759:191553 -k1,17303:30717219,18521759:191552 -k1,17304:32583029,18521759:0 -) -(1,17304:6764466,19386839:25818563,513147,134348 -k1,17303:8465325,19386839:177802 -k1,17303:11623703,19386839:177801 -(1,17303:11623703,19386839:0,452978,115847 -r1,17330:13388816,19386839:1765113,568825,115847 -k1,17303:11623703,19386839:-1765113 -) -(1,17303:11623703,19386839:1765113,452978,115847 -k1,17303:11623703,19386839:3277 -h1,17303:13385539,19386839:0,411205,112570 -) -k1,17303:13566618,19386839:177802 -k1,17303:15487678,19386839:177802 -k1,17303:18300683,19386839:177802 -k1,17303:20757171,19386839:177801 -k1,17303:23076690,19386839:177802 -k1,17303:24445937,19386839:177802 -k1,17303:27284501,19386839:177802 -k1,17303:28949314,19386839:177801 -k1,17303:30318561,19386839:177802 -k1,17303:31221191,19386839:177802 -k1,17303:32583029,19386839:0 -) -(1,17304:6764466,20251919:25818563,505283,134348 -g1,17303:7955255,20251919 -g1,17303:9220755,20251919 -g1,17303:12123344,20251919 -k1,17304:32583028,20251919:18117428 -g1,17304:32583028,20251919 -) -(1,17306:6764466,21116999:25818563,513147,126483 -h1,17305:6764466,21116999:983040,0,0 -k1,17305:8414928,21116999:189665 -k1,17305:9472946,21116999:189666 -k1,17305:11960959,21116999:189665 -(1,17305:11960959,21116999:0,452978,115847 -r1,17330:14077784,21116999:2116825,568825,115847 -k1,17305:11960959,21116999:-2116825 -) -(1,17305:11960959,21116999:2116825,452978,115847 -k1,17305:11960959,21116999:3277 -h1,17305:14074507,21116999:0,411205,112570 -) -k1,17305:14267450,21116999:189666 -k1,17305:15218643,21116999:189665 -(1,17305:15218643,21116999:0,459977,115847 -r1,17330:18742315,21116999:3523672,575824,115847 -k1,17305:15218643,21116999:-3523672 -) -(1,17305:15218643,21116999:3523672,459977,115847 -k1,17305:15218643,21116999:3277 -h1,17305:18739038,21116999:0,411205,112570 -) -k1,17305:18931981,21116999:189666 -k1,17305:19737684,21116999:189665 -k1,17305:20946435,21116999:189666 -k1,17305:22442233,21116999:189665 -k1,17305:25991930,21116999:189666 -k1,17305:27373040,21116999:189665 -k1,17305:29316449,21116999:189666 -k1,17305:30525199,21116999:189665 -k1,17305:32583029,21116999:0 -) -(1,17306:6764466,21982079:25818563,513147,115847 -k1,17305:7987981,21982079:204430 -k1,17305:10035284,21982079:204431 -k1,17305:10899006,21982079:204430 -k1,17305:12122521,21982079:204430 -k1,17305:13475143,21982079:204431 -k1,17305:16865933,21982079:204430 -k1,17305:17686401,21982079:204430 -k1,17305:18909917,21982079:204431 -k1,17305:21085015,21982079:204430 -k1,17305:21820942,21982079:204430 -(1,17305:21820942,21982079:0,414482,115847 -r1,17330:23586055,21982079:1765113,530329,115847 -k1,17305:21820942,21982079:-1765113 -) -(1,17305:21820942,21982079:1765113,414482,115847 -k1,17305:21820942,21982079:3277 -h1,17305:23582778,21982079:0,411205,112570 -) -k1,17305:23790485,21982079:204430 -k1,17305:26322099,21982079:204431 -k1,17305:27193685,21982079:204430 -(1,17305:27193685,21982079:0,414482,115847 -r1,17330:28607086,21982079:1413401,530329,115847 -k1,17305:27193685,21982079:-1413401 -) -(1,17305:27193685,21982079:1413401,414482,115847 -k1,17305:27193685,21982079:3277 -h1,17305:28603809,21982079:0,411205,112570 -) -k1,17305:28985186,21982079:204430 -k1,17305:29934106,21982079:204431 -k1,17305:31157621,21982079:204430 -k1,17305:32583029,21982079:0 -) -(1,17306:6764466,22847159:25818563,513147,134348 -k1,17305:7669951,22847159:246193 -k1,17305:10173859,22847159:246193 -k1,17305:12898624,22847159:246193 -k1,17305:14538768,22847159:246193 -k1,17305:15140821,22847159:246193 -(1,17305:15140821,22847159:0,459977,115847 -r1,17330:18664493,22847159:3523672,575824,115847 -k1,17305:15140821,22847159:-3523672 -) -(1,17305:15140821,22847159:3523672,459977,115847 -k1,17305:15140821,22847159:3277 -h1,17305:18661216,22847159:0,411205,112570 -) -k1,17305:18910685,22847159:246192 -k1,17305:21290075,22847159:246193 -k1,17305:24290091,22847159:246193 -k1,17305:27419213,22847159:246193 -k1,17305:29059357,22847159:246193 -(1,17305:29059357,22847159:0,452978,122846 -r1,17330:32583029,22847159:3523672,575824,122846 -k1,17305:29059357,22847159:-3523672 -) -(1,17305:29059357,22847159:3523672,452978,122846 -k1,17305:29059357,22847159:3277 -h1,17305:32579752,22847159:0,411205,112570 -) -k1,17305:32583029,22847159:0 -) -(1,17306:6764466,23712239:25818563,513147,134348 -k1,17305:9716315,23712239:198682 -k1,17305:10676525,23712239:198682 -k1,17305:14587822,23712239:198682 -k1,17305:16180454,23712239:198681 -(1,17305:16180454,23712239:0,452978,122846 -r1,17330:19352414,23712239:3171960,575824,122846 -k1,17305:16180454,23712239:-3171960 -) -(1,17305:16180454,23712239:3171960,452978,122846 -k1,17305:16180454,23712239:3277 -h1,17305:19349137,23712239:0,411205,112570 -) -k1,17305:19551096,23712239:198682 -k1,17305:20850783,23712239:198682 -k1,17305:22068550,23712239:198682 -k1,17305:23566811,23712239:198682 -k1,17305:25536275,23712239:198681 -k1,17305:26394249,23712239:198682 -k1,17305:29975899,23712239:198682 -k1,17305:31193666,23712239:198682 -k1,17305:32583029,23712239:0 -) -(1,17306:6764466,24577319:25818563,513147,134348 -k1,17305:8806240,24577319:165478 -k1,17305:10239184,24577319:165478 -k1,17305:10760523,24577319:165479 -k1,17305:12911087,24577319:165478 -k1,17305:14457409,24577319:165478 -k1,17305:15154384,24577319:165478 -k1,17305:18673996,24577319:165479 -k1,17305:19490902,24577319:165478 -k1,17305:20404146,24577319:165478 -k1,17305:21923598,24577319:165478 -k1,17305:23872312,24577319:165479 -k1,17305:25906221,24577319:165478 -k1,17305:26904662,24577319:165478 -k1,17305:27756302,24577319:165478 -k1,17305:29576565,24577319:165479 -k1,17305:30733603,24577319:165478 -k1,17306:32583029,24577319:0 -) -(1,17306:6764466,25442399:25818563,513147,126483 -k1,17305:8709792,25442399:171922 -k1,17305:9497752,25442399:171922 -k1,17305:11000055,25442399:171922 -k1,17305:12191062,25442399:171922 -k1,17305:15577525,25442399:171922 -k1,17305:18496061,25442399:171922 -(1,17305:18496061,25442399:0,452978,115847 -r1,17330:20261175,25442399:1765114,568825,115847 -k1,17305:18496061,25442399:-1765114 -) -(1,17305:18496061,25442399:1765114,452978,115847 -g1,17305:19202762,25442399 -g1,17305:19906186,25442399 -h1,17305:20257898,25442399:0,411205,112570 -) -k1,17305:20433097,25442399:171922 -k1,17305:23158302,25442399:171922 -k1,17305:23946262,25442399:171922 -k1,17305:25137269,25442399:171922 -k1,17305:26481630,25442399:171922 -k1,17305:28524605,25442399:171922 -k1,17305:29893214,25442399:171922 -k1,17305:31363404,25442399:171922 -k1,17305:32583029,25442399:0 -) -(1,17306:6764466,26307479:25818563,513147,134348 -k1,17305:7655569,26307479:239675 -k1,17305:9510050,26307479:239674 -k1,17305:11245912,26307479:239675 -k1,17305:13844227,26307479:239674 -k1,17305:15176387,26307479:239675 -k1,17305:16075353,26307479:239674 -k1,17305:19340825,26307479:239675 -k1,17305:21148120,26307479:239674 -k1,17305:23360428,26307479:239675 -k1,17305:24791547,26307479:239674 -k1,17305:26836083,26307479:239675 -k1,17305:27607254,26307479:239674 -k1,17305:28498357,26307479:239675 -k1,17305:30867296,26307479:239674 -k1,17305:32583029,26307479:0 -) -(1,17306:6764466,27172559:25818563,505283,126483 -k1,17305:8395931,27172559:250621 -k1,17305:9931057,27172559:250620 -k1,17305:13843174,27172559:250621 -k1,17305:15589981,27172559:250620 -k1,17305:17767360,27172559:250621 -k1,17305:20826853,27172559:250620 -k1,17305:22471425,27172559:250621 -k1,17305:24863762,27172559:250620 -k1,17305:25730421,27172559:250621 -k1,17305:28647046,27172559:250620 -k1,17305:29549095,27172559:250621 -k1,17305:31193666,27172559:250620 -k1,17305:32583029,27172559:0 -) -(1,17306:6764466,28037639:25818563,513147,7863 -k1,17306:32583028,28037639:23559536 -g1,17306:32583028,28037639 -) -] -g1,17306:32583029,28045502 -) -h1,17306:6630773,28045502:0,0,0 -(1,17309:6630773,30162320:25952256,555811,104529 -(1,17309:6630773,30162320:2450326,534184,12975 -g1,17309:6630773,30162320 -g1,17309:9081099,30162320 -) -k1,17309:32583028,30162320:21647784 -g1,17309:32583028,30162320 -) -(1,17313:6630773,31420616:25952256,505283,95026 -k1,17312:8552616,31420616:318177 -k1,17312:10552448,31420616:318178 -k1,17312:11615769,31420616:318177 -k1,17312:12585374,31420616:318177 -k1,17312:15615431,31420616:318177 -k1,17312:17106048,31420616:318178 -k1,17312:18813588,31420616:318177 -k1,17312:21571015,31420616:318177 -k1,17312:23774663,31420616:318177 -k1,17312:25829545,31420616:318178 -k1,17312:27839862,31420616:318177 -k1,17312:31173350,31420616:318177 -k1,17313:32583029,31420616:0 -) -(1,17313:6630773,32285696:25952256,513147,134348 -k1,17312:8472007,32285696:202179 -k1,17312:9290223,32285696:202178 -k1,17312:12269818,32285696:202179 -k1,17312:13463556,32285696:202178 -k1,17312:15178961,32285696:202179 -k1,17312:16032567,32285696:202178 -k1,17312:18215899,32285696:202179 -k1,17312:19437162,32285696:202178 -k1,17312:24262906,32285696:202179 -k1,17312:25999282,32285696:202178 -k1,17312:28244218,32285696:202179 -k1,17312:31274275,32285696:202178 -k1,17313:32583029,32285696:0 -) -(1,17313:6630773,33150776:25952256,513147,134348 -k1,17312:8498132,33150776:228304 -k1,17312:10003076,33150776:228303 -k1,17312:13151664,33150776:228304 -k1,17312:14947588,33150776:228303 -k1,17312:16642588,33150776:228304 -k1,17312:19310141,33150776:228303 -k1,17312:22392538,33150776:228304 -k1,17312:24453228,33150776:228303 -k1,17312:25673092,33150776:228304 -k1,17312:28132896,33150776:228303 -k1,17312:29557232,33150776:228304 -k1,17312:32583029,33150776:0 -) -(1,17313:6630773,34015856:25952256,513147,126483 -k1,17312:7495673,34015856:248862 -k1,17312:9890838,34015856:248862 -k1,17312:11697491,34015856:248862 -k1,17312:13689611,34015856:248862 -k1,17312:16096574,34015856:248862 -k1,17312:16961474,34015856:248862 -k1,17312:18540717,34015856:248862 -k1,17312:20169768,34015856:248863 -k1,17312:22577386,34015856:248862 -k1,17312:24360446,34015856:248862 -k1,17312:25893814,34015856:248862 -k1,17312:26957944,34015856:248862 -k1,17312:28273077,34015856:248862 -k1,17312:29997154,34015856:248862 -k1,17312:30601876,34015856:248862 -k1,17312:32583029,34015856:0 -) -(1,17313:6630773,34880936:25952256,505283,7863 -g1,17312:9465205,34880936 -g1,17312:11053797,34880936 -k1,17313:32583029,34880936:19037554 -g1,17313:32583029,34880936 -) -(1,17315:6630773,35746016:25952256,513147,7863 -h1,17314:6630773,35746016:983040,0,0 -k1,17314:8796356,35746016:228994 -k1,17314:10954729,35746016:228993 -k1,17314:12581606,35746016:228994 -k1,17314:14502739,35746016:228993 -k1,17314:17360382,35746016:228994 -k1,17314:18978739,35746016:228994 -k1,17314:19859160,35746016:228993 -k1,17314:24121240,35746016:228994 -k1,17314:25369318,35746016:228993 -k1,17314:26690797,35746016:228994 -k1,17314:27579082,35746016:228993 -k1,17314:29504803,35746016:228994 -k1,17314:32583029,35746016:0 -) -(1,17315:6630773,36611096:25952256,505283,102891 -k1,17314:7722401,36611096:168226 -k1,17314:9023089,36611096:168226 -k1,17314:11120695,36611096:168226 -k1,17314:12461359,36611096:168225 -k1,17314:14345973,36611096:168226 -k1,17314:16829586,36611096:168226 -k1,17314:18391763,36611096:168226 -k1,17314:19716699,36611096:168226 -k1,17314:22267814,36611096:168226 -k1,17314:23052077,36611096:168225 -k1,17314:25997719,36611096:168226 -k1,17314:27357390,36611096:168226 -k1,17314:28682326,36611096:168226 -k1,17314:32583029,36611096:0 -) -(1,17315:6630773,37476176:25952256,505283,7863 -g1,17314:8033898,37476176 -g1,17314:8849165,37476176 -k1,17315:32583028,37476176:22229812 -g1,17315:32583028,37476176 -) -v1,17319:6630773,38161031:0,393216,0 -(1,17324:6630773,39166751:25952256,1398936,196608 -g1,17324:6630773,39166751 -g1,17324:6630773,39166751 -g1,17324:6434165,39166751 -(1,17324:6434165,39166751:0,1398936,196608 -r1,17330:32779637,39166751:26345472,1595544,196608 -k1,17324:6434165,39166751:-26345472 -) -(1,17324:6434165,39166751:26345472,1398936,196608 -[1,17324:6630773,39166751:25952256,1202328,0 -(1,17321:6630773,38395468:25952256,431045,86428 -(1,17320:6630773,38395468:0,0,0 -g1,17320:6630773,38395468 -g1,17320:6630773,38395468 -g1,17320:6303093,38395468 -(1,17320:6303093,38395468:0,0,0 -) -g1,17320:6630773,38395468 -) -g1,17321:9618358,38395468 -g1,17321:10614220,38395468 -g1,17321:14265714,38395468 -g1,17321:14929622,38395468 -g1,17321:17253300,38395468 -g1,17321:18581116,38395468 -g1,17321:21236748,38395468 -g1,17321:21900656,38395468 -h1,17321:23228472,38395468:0,0,0 -k1,17321:32583029,38395468:9354557 -g1,17321:32583029,38395468 -) -(1,17322:6630773,39080323:25952256,424439,86428 -h1,17322:6630773,39080323:0,0,0 -g1,17322:9950312,39080323 -g1,17322:10946174,39080323 -g1,17322:14597668,39080323 -g1,17322:15261576,39080323 -g1,17322:17585254,39080323 -g1,17322:18913070,39080323 -g1,17322:21568702,39080323 -g1,17322:22232610,39080323 -h1,17322:23560426,39080323:0,0,0 -k1,17322:32583029,39080323:9022603 -g1,17322:32583029,39080323 -) -] -) -g1,17324:32583029,39166751 -g1,17324:6630773,39166751 -g1,17324:6630773,39166751 -g1,17324:32583029,39166751 -g1,17324:32583029,39166751 -) -h1,17324:6630773,39363359:0,0,0 -(1,17328:6630773,40228439:25952256,513147,126483 -h1,17327:6630773,40228439:983040,0,0 -k1,17327:9777031,40228439:296097 -k1,17327:10941479,40228439:296096 -k1,17327:13001150,40228439:296097 -k1,17327:14316332,40228439:296097 -k1,17327:14316332,40228439:0 -k1,17327:17638225,40228439:296096 -k1,17327:20775308,40228439:296097 -k1,17327:21832933,40228439:296097 -k1,17327:24275332,40228439:296096 -(1,17327:24275332,40228439:0,459977,122846 -r1,17330:28150716,40228439:3875384,582823,122846 -k1,17327:24275332,40228439:-3875384 -) -(1,17327:24275332,40228439:3875384,459977,122846 -k1,17327:24275332,40228439:3277 -h1,17327:28147439,40228439:0,411205,112570 -) -k1,17327:28620483,40228439:296097 -(1,17327:28620483,40228439:0,459977,122846 -r1,17330:32495867,40228439:3875384,582823,122846 -k1,17327:28620483,40228439:-3875384 -) -(1,17327:28620483,40228439:3875384,459977,122846 -k1,17327:28620483,40228439:3277 -h1,17327:32492590,40228439:0,411205,112570 -) -k1,17328:32583029,40228439:0 -) -(1,17328:6630773,41093519:25952256,513147,126483 -(1,17327:6630773,41093519:0,452978,122846 -r1,17330:10857869,41093519:4227096,575824,122846 -k1,17327:6630773,41093519:-4227096 -) -(1,17327:6630773,41093519:4227096,452978,122846 -k1,17327:6630773,41093519:3277 -h1,17327:10854592,41093519:0,411205,112570 -) -k1,17327:11123940,41093519:266071 -k1,17327:12581455,41093519:266070 -(1,17327:12581455,41093519:0,452978,122846 -r1,17330:16808551,41093519:4227096,575824,122846 -k1,17327:12581455,41093519:-4227096 -) -(1,17327:12581455,41093519:4227096,452978,122846 -k1,17327:12581455,41093519:3277 -h1,17327:16805274,41093519:0,411205,112570 -) -k1,17327:17248292,41093519:266071 -k1,17327:19388693,41093519:266071 -k1,17327:22680560,41093519:266070 -k1,17327:25075896,41093519:266071 -k1,17327:27206466,41093519:266071 -k1,17327:28238652,41093519:266070 -k1,17327:31391584,41093519:266071 -k1,17327:32583029,41093519:0 -) -(1,17328:6630773,41958599:25952256,513147,134348 -k1,17327:7487883,41958599:241072 -k1,17327:9096036,41958599:241072 -k1,17327:9996400,41958599:241072 -k1,17327:12908718,41958599:241071 -k1,17327:15982256,41958599:241072 -k1,17327:17731311,41958599:241072 -k1,17327:18328243,41958599:241072 -k1,17327:19773211,41958599:241072 -k1,17327:20961934,41958599:241072 -k1,17327:22654627,41958599:241071 -k1,17327:25867101,41958599:241072 -k1,17327:30096039,41958599:241072 -k1,17327:30996403,41958599:241072 -k1,17327:32583029,41958599:0 -) -(1,17328:6630773,42823679:25952256,505283,134348 -k1,17327:7782786,42823679:228611 -k1,17327:10027940,42823679:228611 -k1,17327:11708173,42823679:228611 -k1,17327:14598201,42823679:228611 -k1,17327:16220763,42823679:228611 -k1,17327:17468459,42823679:228611 -k1,17327:21099699,42823679:228611 -k1,17327:23533596,42823679:228610 -k1,17327:24413635,42823679:228611 -(1,17327:24413635,42823679:0,414482,115847 -r1,17330:24771901,42823679:358266,530329,115847 -k1,17327:24413635,42823679:-358266 -) -(1,17327:24413635,42823679:358266,414482,115847 -k1,17327:24413635,42823679:3277 -h1,17327:24768624,42823679:0,411205,112570 -) -k1,17327:25000512,42823679:228611 -k1,17327:26420568,42823679:228611 -(1,17327:26420568,42823679:0,414482,115847 -r1,17330:26778834,42823679:358266,530329,115847 -k1,17327:26420568,42823679:-358266 -) -(1,17327:26420568,42823679:358266,414482,115847 -k1,17327:26420568,42823679:3277 -h1,17327:26775557,42823679:0,411205,112570 -) -k1,17327:27007445,42823679:228611 -k1,17327:30052793,42823679:228611 -k1,17327:30932832,42823679:228611 -k1,17327:32583029,42823679:0 -) -(1,17328:6630773,43688759:25952256,513147,126483 -g1,17327:8926499,43688759 -g1,17327:10786410,43688759 -g1,17327:12494278,43688759 -g1,17327:15455850,43688759 -k1,17328:32583029,43688759:13900187 -g1,17328:32583029,43688759 -) -(1,17330:6630773,44553839:25952256,513147,134348 -h1,17329:6630773,44553839:983040,0,0 -k1,17329:8290875,44553839:189474 -k1,17329:9570222,44553839:189483 -k1,17329:10997025,44553839:189483 -k1,17329:13381309,44553839:189483 -k1,17329:14336908,44553839:189483 -k1,17329:18105313,44553839:189484 -k1,17329:19828994,44553839:189483 -k1,17329:21849553,44553839:189483 -k1,17329:24511054,44553839:189483 -k1,17329:26711182,44553839:189483 -k1,17329:28294617,44553839:189484 -(1,17329:28294617,44553839:0,414482,115847 -r1,17330:29004595,44553839:709978,530329,115847 -k1,17329:28294617,44553839:-709978 -) -(1,17329:28294617,44553839:709978,414482,115847 -k1,17329:28294617,44553839:3277 -h1,17329:29001318,44553839:0,411205,112570 -) -k1,17329:29367748,44553839:189483 -k1,17329:30317449,44553839:189483 -k1,17329:32583029,44553839:0 -) -(1,17330:6630773,45418919:25952256,505283,115847 -k1,17329:7925790,45418919:275932 -k1,17329:10182875,45418919:275932 -k1,17329:10990303,45418919:275931 -k1,17329:12843687,45418919:275932 -k1,17329:13928989,45418919:275932 -k1,17329:16918112,45418919:275932 -k1,17329:18587995,45418919:275932 -k1,17329:19883012,45418919:275932 -k1,17329:21812416,45418919:275931 -k1,17329:23826363,45418919:275932 -k1,17329:24718333,45418919:275932 -(1,17329:24718333,45418919:0,414482,115847 -r1,17330:25076599,45418919:358266,530329,115847 -k1,17329:24718333,45418919:-358266 -) -(1,17329:24718333,45418919:358266,414482,115847 -k1,17329:24718333,45418919:3277 -h1,17329:25073322,45418919:0,411205,112570 -) -k1,17329:25352531,45418919:275932 -k1,17329:26819908,45418919:275932 -(1,17329:26819908,45418919:0,414482,115847 -r1,17330:27178174,45418919:358266,530329,115847 -k1,17329:26819908,45418919:-358266 -) -(1,17329:26819908,45418919:358266,414482,115847 -k1,17329:26819908,45418919:3277 -h1,17329:27174897,45418919:0,411205,112570 -) -k1,17329:27627776,45418919:275932 -k1,17329:28975876,45418919:275931 -k1,17329:30455049,45418919:275932 -k1,17329:31835263,45418919:275932 -k1,17329:32583029,45418919:0 -) -] -(1,17330:32583029,45706769:0,0,0 -g1,17330:32583029,45706769 -) -) -] -(1,17330:6630773,47279633:25952256,0,0 -h1,17330:6630773,47279633:25952256,0,0 -) -] -(1,17330:4262630,4025873:0,0,0 -[1,17330:-473656,4025873:0,0,0 -(1,17330:-473656,-710413:0,0,0 -(1,17330:-473656,-710413:0,0,0 -g1,17330:-473656,-710413 -) -g1,17330:-473656,-710413 +g1,17328:6630773,4812305 +k1,17328:23347041,4812305:15520891 +g1,17328:23960458,4812305 +g1,17328:27572802,4812305 +g1,17328:29306229,4812305 +) +) +] +[1,17328:6630773,45706769:25952256,40108032,0 +(1,17328:6630773,45706769:25952256,40108032,0 +(1,17328:6630773,45706769:0,0,0 +g1,17328:6630773,45706769 +) +[1,17328:6630773,45706769:25952256,40108032,0 +v1,17304:6630773,6254097:0,393216,0 +(1,17304:6630773,28045502:25952256,22184621,0 +g1,17304:6630773,28045502 +g1,17304:6237557,28045502 +r1,17328:6368629,28045502:131072,22184621,0 +g1,17304:6567858,28045502 +g1,17304:6764466,28045502 +[1,17304:6764466,28045502:25818563,22184621,0 +v1,17255:6764466,6254097:0,393216,0 +(1,17269:6764466,9694386:25818563,3833505,196608 +g1,17269:6764466,9694386 +g1,17269:6764466,9694386 +g1,17269:6567858,9694386 +(1,17269:6567858,9694386:0,3833505,196608 +r1,17328:32779637,9694386:26211779,4030113,196608 +k1,17269:6567857,9694386:-26211780 +) +(1,17269:6567858,9694386:26211779,3833505,196608 +[1,17269:6764466,9694386:25818563,3636897,0 +(1,17257:6764466,6481928:25818563,424439,112852 +(1,17256:6764466,6481928:0,0,0 +g1,17256:6764466,6481928 +g1,17256:6764466,6481928 +g1,17256:6436786,6481928 +(1,17256:6436786,6481928:0,0,0 +) +g1,17256:6764466,6481928 +) +g1,17257:10084005,6481928 +g1,17257:11079867,6481928 +k1,17257:11079867,6481928:0 +h1,17257:16723084,6481928:0,0,0 +k1,17257:32583029,6481928:15859945 +g1,17257:32583029,6481928 +) +(1,17258:6764466,7166783:25818563,424439,112852 +h1,17258:6764466,7166783:0,0,0 +k1,17258:6764466,7166783:0 +h1,17258:12075729,7166783:0,0,0 +k1,17258:32583029,7166783:20507300 +g1,17258:32583029,7166783 +) +(1,17262:6764466,7982710:25818563,431045,79822 +(1,17260:6764466,7982710:0,0,0 +g1,17260:6764466,7982710 +g1,17260:6764466,7982710 +g1,17260:6436786,7982710 +(1,17260:6436786,7982710:0,0,0 +) +g1,17260:6764466,7982710 +) +g1,17262:7760328,7982710 +g1,17262:9088144,7982710 +g1,17262:12075729,7982710 +g1,17262:12407683,7982710 +g1,17262:12739637,7982710 +g1,17262:13071591,7982710 +g1,17262:13403545,7982710 +g1,17262:15395269,7982710 +g1,17262:15727223,7982710 +g1,17262:16059177,7982710 +g1,17262:16391131,7982710 +g1,17262:16723085,7982710 +g1,17262:17055039,7982710 +g1,17262:17386993,7982710 +g1,17262:17718947,7982710 +h1,17262:21702394,7982710:0,0,0 +k1,17262:32583029,7982710:10880635 +g1,17262:32583029,7982710 +) +(1,17264:6764466,8798637:25818563,424439,112852 +(1,17263:6764466,8798637:0,0,0 +g1,17263:6764466,8798637 +g1,17263:6764466,8798637 +g1,17263:6436786,8798637 +(1,17263:6436786,8798637:0,0,0 +) +g1,17263:6764466,8798637 +) +k1,17264:6764466,8798637:0 +k1,17264:6764466,8798637:0 +h1,17264:16059176,8798637:0,0,0 +k1,17264:32583029,8798637:16523853 +g1,17264:32583029,8798637 +) +(1,17268:6764466,9614564:25818563,424439,79822 +(1,17266:6764466,9614564:0,0,0 +g1,17266:6764466,9614564 +g1,17266:6764466,9614564 +g1,17266:6436786,9614564 +(1,17266:6436786,9614564:0,0,0 +) +g1,17266:6764466,9614564 +) +g1,17268:7760328,9614564 +g1,17268:9088144,9614564 +g1,17268:11743776,9614564 +g1,17268:12075730,9614564 +g1,17268:12407684,9614564 +g1,17268:12739638,9614564 +g1,17268:13071592,9614564 +g1,17268:17055039,9614564 +h1,17268:19378717,9614564:0,0,0 +k1,17268:32583029,9614564:13204312 +g1,17268:32583029,9614564 +) +] +) +g1,17269:32583029,9694386 +g1,17269:6764466,9694386 +g1,17269:6764466,9694386 +g1,17269:32583029,9694386 +g1,17269:32583029,9694386 +) +h1,17269:6764466,9890994:0,0,0 +v1,17273:6764466,10575849:0,393216,0 +(1,17298:6764466,16594991:25818563,6412358,196608 +g1,17298:6764466,16594991 +g1,17298:6764466,16594991 +g1,17298:6567858,16594991 +(1,17298:6567858,16594991:0,6412358,196608 +r1,17328:32779637,16594991:26211779,6608966,196608 +k1,17298:6567857,16594991:-26211780 +) +(1,17298:6567858,16594991:26211779,6412358,196608 +[1,17298:6764466,16594991:25818563,6215750,0 +(1,17275:6764466,10803680:25818563,424439,112852 +(1,17274:6764466,10803680:0,0,0 +g1,17274:6764466,10803680 +g1,17274:6764466,10803680 +g1,17274:6436786,10803680 +(1,17274:6436786,10803680:0,0,0 +) +g1,17274:6764466,10803680 +) +k1,17275:6764466,10803680:0 +g1,17275:10084006,10803680 +g1,17275:11079868,10803680 +h1,17275:14067453,10803680:0,0,0 +k1,17275:32583029,10803680:18515576 +g1,17275:32583029,10803680 +) +(1,17279:6764466,11619607:25818563,424439,79822 +(1,17277:6764466,11619607:0,0,0 +g1,17277:6764466,11619607 +g1,17277:6764466,11619607 +g1,17277:6436786,11619607 +(1,17277:6436786,11619607:0,0,0 +) +g1,17277:6764466,11619607 +) +g1,17279:7760328,11619607 +g1,17279:9088144,11619607 +h1,17279:10415960,11619607:0,0,0 +k1,17279:32583028,11619607:22167068 +g1,17279:32583028,11619607 +) +(1,17281:6764466,12435534:25818563,424439,112852 +(1,17280:6764466,12435534:0,0,0 +g1,17280:6764466,12435534 +g1,17280:6764466,12435534 +g1,17280:6436786,12435534 +(1,17280:6436786,12435534:0,0,0 +) +g1,17280:6764466,12435534 +) +k1,17281:6764466,12435534:0 +g1,17281:10084006,12435534 +g1,17281:11079868,12435534 +h1,17281:14399407,12435534:0,0,0 +k1,17281:32583029,12435534:18183622 +g1,17281:32583029,12435534 +) +(1,17285:6764466,13251461:25818563,424439,79822 +(1,17283:6764466,13251461:0,0,0 +g1,17283:6764466,13251461 +g1,17283:6764466,13251461 +g1,17283:6436786,13251461 +(1,17283:6436786,13251461:0,0,0 +) +g1,17283:6764466,13251461 +) +g1,17285:7760328,13251461 +g1,17285:9088144,13251461 +h1,17285:10415960,13251461:0,0,0 +k1,17285:32583028,13251461:22167068 +g1,17285:32583028,13251461 +) +(1,17287:6764466,14067388:25818563,424439,112852 +(1,17286:6764466,14067388:0,0,0 +g1,17286:6764466,14067388 +g1,17286:6764466,14067388 +g1,17286:6436786,14067388 +(1,17286:6436786,14067388:0,0,0 +) +g1,17286:6764466,14067388 +) +k1,17287:6764466,14067388:0 +g1,17287:12407683,14067388 +h1,17287:15395268,14067388:0,0,0 +k1,17287:32583028,14067388:17187760 +g1,17287:32583028,14067388 +) +(1,17291:6764466,14883315:25818563,424439,79822 +(1,17289:6764466,14883315:0,0,0 +g1,17289:6764466,14883315 +g1,17289:6764466,14883315 +g1,17289:6436786,14883315 +(1,17289:6436786,14883315:0,0,0 +) +g1,17289:6764466,14883315 +) +g1,17291:7760328,14883315 +g1,17291:9088144,14883315 +h1,17291:10747914,14883315:0,0,0 +k1,17291:32583030,14883315:21835116 +g1,17291:32583030,14883315 +) +(1,17293:6764466,15699242:25818563,424439,112852 +(1,17292:6764466,15699242:0,0,0 +g1,17292:6764466,15699242 +g1,17292:6764466,15699242 +g1,17292:6436786,15699242 +(1,17292:6436786,15699242:0,0,0 +) +g1,17292:6764466,15699242 +) +k1,17293:6764466,15699242:0 +g1,17293:12407683,15699242 +h1,17293:15727222,15699242:0,0,0 +k1,17293:32583030,15699242:16855808 +g1,17293:32583030,15699242 +) +(1,17297:6764466,16515169:25818563,424439,79822 +(1,17295:6764466,16515169:0,0,0 +g1,17295:6764466,16515169 +g1,17295:6764466,16515169 +g1,17295:6436786,16515169 +(1,17295:6436786,16515169:0,0,0 +) +g1,17295:6764466,16515169 +) +g1,17297:7760328,16515169 +g1,17297:9088144,16515169 +h1,17297:10415960,16515169:0,0,0 +k1,17297:32583028,16515169:22167068 +g1,17297:32583028,16515169 +) +] +) +g1,17298:32583029,16594991 +g1,17298:6764466,16594991 +g1,17298:6764466,16594991 +g1,17298:32583029,16594991 +g1,17298:32583029,16594991 +) +h1,17298:6764466,16791599:0,0,0 +(1,17302:6764466,17656679:25818563,505283,126483 +h1,17301:6764466,17656679:983040,0,0 +k1,17301:9192512,17656679:248319 +k1,17301:10962576,17656679:248318 +k1,17301:13066219,17656679:248319 +k1,17301:14975220,17656679:248319 +k1,17301:16508045,17656679:248319 +k1,17301:19710071,17656679:248318 +k1,17301:20949950,17656679:248319 +k1,17301:21814307,17656679:248319 +k1,17301:22828741,17656679:248318 +k1,17301:24774442,17656679:248319 +k1,17301:26041846,17656679:248319 +k1,17301:27943638,17656679:248319 +k1,17301:28878118,17656679:248318 +k1,17301:31873051,17656679:248319 +(1,17301:31873051,17656679:0,414482,115847 +r1,17328:32583029,17656679:709978,530329,115847 +k1,17301:31873051,17656679:-709978 +) +(1,17301:31873051,17656679:709978,414482,115847 +k1,17301:31873051,17656679:3277 +h1,17301:32579752,17656679:0,411205,112570 +) +k1,17301:32583029,17656679:0 +) +(1,17302:6764466,18521759:25818563,513147,126483 +k1,17301:8477764,18521759:191552 +k1,17301:9616968,18521759:191553 +k1,17301:12355249,18521759:191552 +k1,17301:13159563,18521759:191552 +k1,17301:14802738,18521759:191553 +k1,17301:17608521,18521759:191552 +k1,17301:18416111,18521759:191552 +k1,17301:19626749,18521759:191553 +k1,17301:21629716,18521759:191552 +k1,17301:22893438,18521759:191553 +k1,17301:24151261,18521759:191552 +k1,17301:25361898,18521759:191552 +k1,17301:28836149,18521759:191553 +k1,17301:30717219,18521759:191552 +k1,17302:32583029,18521759:0 +) +(1,17302:6764466,19386839:25818563,513147,134348 +k1,17301:8465325,19386839:177802 +k1,17301:11623703,19386839:177801 +(1,17301:11623703,19386839:0,452978,115847 +r1,17328:13388816,19386839:1765113,568825,115847 +k1,17301:11623703,19386839:-1765113 +) +(1,17301:11623703,19386839:1765113,452978,115847 +k1,17301:11623703,19386839:3277 +h1,17301:13385539,19386839:0,411205,112570 +) +k1,17301:13566618,19386839:177802 +k1,17301:15487678,19386839:177802 +k1,17301:18300683,19386839:177802 +k1,17301:20757171,19386839:177801 +k1,17301:23076690,19386839:177802 +k1,17301:24445937,19386839:177802 +k1,17301:27284501,19386839:177802 +k1,17301:28949314,19386839:177801 +k1,17301:30318561,19386839:177802 +k1,17301:31221191,19386839:177802 +k1,17301:32583029,19386839:0 +) +(1,17302:6764466,20251919:25818563,505283,134348 +g1,17301:7955255,20251919 +g1,17301:9220755,20251919 +g1,17301:12123344,20251919 +k1,17302:32583028,20251919:18117428 +g1,17302:32583028,20251919 +) +(1,17304:6764466,21116999:25818563,513147,126483 +h1,17303:6764466,21116999:983040,0,0 +k1,17303:8414928,21116999:189665 +k1,17303:9472946,21116999:189666 +k1,17303:11960959,21116999:189665 +(1,17303:11960959,21116999:0,452978,115847 +r1,17328:14077784,21116999:2116825,568825,115847 +k1,17303:11960959,21116999:-2116825 +) +(1,17303:11960959,21116999:2116825,452978,115847 +k1,17303:11960959,21116999:3277 +h1,17303:14074507,21116999:0,411205,112570 +) +k1,17303:14267450,21116999:189666 +k1,17303:15218643,21116999:189665 +(1,17303:15218643,21116999:0,459977,115847 +r1,17328:18742315,21116999:3523672,575824,115847 +k1,17303:15218643,21116999:-3523672 +) +(1,17303:15218643,21116999:3523672,459977,115847 +k1,17303:15218643,21116999:3277 +h1,17303:18739038,21116999:0,411205,112570 +) +k1,17303:18931981,21116999:189666 +k1,17303:19737684,21116999:189665 +k1,17303:20946435,21116999:189666 +k1,17303:22442233,21116999:189665 +k1,17303:25991930,21116999:189666 +k1,17303:27373040,21116999:189665 +k1,17303:29316449,21116999:189666 +k1,17303:30525199,21116999:189665 +k1,17303:32583029,21116999:0 +) +(1,17304:6764466,21982079:25818563,513147,115847 +k1,17303:7987981,21982079:204430 +k1,17303:10035284,21982079:204431 +k1,17303:10899006,21982079:204430 +k1,17303:12122521,21982079:204430 +k1,17303:13475143,21982079:204431 +k1,17303:16865933,21982079:204430 +k1,17303:17686401,21982079:204430 +k1,17303:18909917,21982079:204431 +k1,17303:21085015,21982079:204430 +k1,17303:21820942,21982079:204430 +(1,17303:21820942,21982079:0,414482,115847 +r1,17328:23586055,21982079:1765113,530329,115847 +k1,17303:21820942,21982079:-1765113 +) +(1,17303:21820942,21982079:1765113,414482,115847 +k1,17303:21820942,21982079:3277 +h1,17303:23582778,21982079:0,411205,112570 +) +k1,17303:23790485,21982079:204430 +k1,17303:26322099,21982079:204431 +k1,17303:27193685,21982079:204430 +(1,17303:27193685,21982079:0,414482,115847 +r1,17328:28607086,21982079:1413401,530329,115847 +k1,17303:27193685,21982079:-1413401 +) +(1,17303:27193685,21982079:1413401,414482,115847 +k1,17303:27193685,21982079:3277 +h1,17303:28603809,21982079:0,411205,112570 +) +k1,17303:28985186,21982079:204430 +k1,17303:29934106,21982079:204431 +k1,17303:31157621,21982079:204430 +k1,17303:32583029,21982079:0 +) +(1,17304:6764466,22847159:25818563,513147,134348 +k1,17303:7669951,22847159:246193 +k1,17303:10173859,22847159:246193 +k1,17303:12898624,22847159:246193 +k1,17303:14538768,22847159:246193 +k1,17303:15140821,22847159:246193 +(1,17303:15140821,22847159:0,459977,115847 +r1,17328:18664493,22847159:3523672,575824,115847 +k1,17303:15140821,22847159:-3523672 +) +(1,17303:15140821,22847159:3523672,459977,115847 +k1,17303:15140821,22847159:3277 +h1,17303:18661216,22847159:0,411205,112570 +) +k1,17303:18910685,22847159:246192 +k1,17303:21290075,22847159:246193 +k1,17303:24290091,22847159:246193 +k1,17303:27419213,22847159:246193 +k1,17303:29059357,22847159:246193 +(1,17303:29059357,22847159:0,452978,122846 +r1,17328:32583029,22847159:3523672,575824,122846 +k1,17303:29059357,22847159:-3523672 +) +(1,17303:29059357,22847159:3523672,452978,122846 +k1,17303:29059357,22847159:3277 +h1,17303:32579752,22847159:0,411205,112570 +) +k1,17303:32583029,22847159:0 +) +(1,17304:6764466,23712239:25818563,513147,134348 +k1,17303:9716315,23712239:198682 +k1,17303:10676525,23712239:198682 +k1,17303:14587822,23712239:198682 +k1,17303:16180454,23712239:198681 +(1,17303:16180454,23712239:0,452978,122846 +r1,17328:19352414,23712239:3171960,575824,122846 +k1,17303:16180454,23712239:-3171960 +) +(1,17303:16180454,23712239:3171960,452978,122846 +k1,17303:16180454,23712239:3277 +h1,17303:19349137,23712239:0,411205,112570 +) +k1,17303:19551096,23712239:198682 +k1,17303:20850783,23712239:198682 +k1,17303:22068550,23712239:198682 +k1,17303:23566811,23712239:198682 +k1,17303:25536275,23712239:198681 +k1,17303:26394249,23712239:198682 +k1,17303:29975899,23712239:198682 +k1,17303:31193666,23712239:198682 +k1,17303:32583029,23712239:0 +) +(1,17304:6764466,24577319:25818563,513147,134348 +k1,17303:8806240,24577319:165478 +k1,17303:10239184,24577319:165478 +k1,17303:10760523,24577319:165479 +k1,17303:12911087,24577319:165478 +k1,17303:14457409,24577319:165478 +k1,17303:15154384,24577319:165478 +k1,17303:18673996,24577319:165479 +k1,17303:19490902,24577319:165478 +k1,17303:20404146,24577319:165478 +k1,17303:21923598,24577319:165478 +k1,17303:23872312,24577319:165479 +k1,17303:25906221,24577319:165478 +k1,17303:26904662,24577319:165478 +k1,17303:27756302,24577319:165478 +k1,17303:29576565,24577319:165479 +k1,17303:30733603,24577319:165478 +k1,17304:32583029,24577319:0 +) +(1,17304:6764466,25442399:25818563,513147,126483 +k1,17303:8709792,25442399:171922 +k1,17303:9497752,25442399:171922 +k1,17303:11000055,25442399:171922 +k1,17303:12191062,25442399:171922 +k1,17303:15577525,25442399:171922 +k1,17303:18496061,25442399:171922 +(1,17303:18496061,25442399:0,452978,115847 +r1,17328:20261175,25442399:1765114,568825,115847 +k1,17303:18496061,25442399:-1765114 +) +(1,17303:18496061,25442399:1765114,452978,115847 +g1,17303:19202762,25442399 +g1,17303:19906186,25442399 +h1,17303:20257898,25442399:0,411205,112570 +) +k1,17303:20433097,25442399:171922 +k1,17303:23158302,25442399:171922 +k1,17303:23946262,25442399:171922 +k1,17303:25137269,25442399:171922 +k1,17303:26481630,25442399:171922 +k1,17303:28524605,25442399:171922 +k1,17303:29893214,25442399:171922 +k1,17303:31363404,25442399:171922 +k1,17303:32583029,25442399:0 +) +(1,17304:6764466,26307479:25818563,513147,134348 +k1,17303:7655569,26307479:239675 +k1,17303:9510050,26307479:239674 +k1,17303:11245912,26307479:239675 +k1,17303:13844227,26307479:239674 +k1,17303:15176387,26307479:239675 +k1,17303:16075353,26307479:239674 +k1,17303:19340825,26307479:239675 +k1,17303:21148120,26307479:239674 +k1,17303:23360428,26307479:239675 +k1,17303:24791547,26307479:239674 +k1,17303:26836083,26307479:239675 +k1,17303:27607254,26307479:239674 +k1,17303:28498357,26307479:239675 +k1,17303:30867296,26307479:239674 +k1,17303:32583029,26307479:0 +) +(1,17304:6764466,27172559:25818563,505283,126483 +k1,17303:8395931,27172559:250621 +k1,17303:9931057,27172559:250620 +k1,17303:13843174,27172559:250621 +k1,17303:15589981,27172559:250620 +k1,17303:17767360,27172559:250621 +k1,17303:20826853,27172559:250620 +k1,17303:22471425,27172559:250621 +k1,17303:24863762,27172559:250620 +k1,17303:25730421,27172559:250621 +k1,17303:28647046,27172559:250620 +k1,17303:29549095,27172559:250621 +k1,17303:31193666,27172559:250620 +k1,17303:32583029,27172559:0 +) +(1,17304:6764466,28037639:25818563,513147,7863 +k1,17304:32583028,28037639:23559536 +g1,17304:32583028,28037639 +) +] +g1,17304:32583029,28045502 +) +h1,17304:6630773,28045502:0,0,0 +(1,17307:6630773,30162320:25952256,555811,104529 +(1,17307:6630773,30162320:2450326,534184,12975 +g1,17307:6630773,30162320 +g1,17307:9081099,30162320 +) +k1,17307:32583028,30162320:21647784 +g1,17307:32583028,30162320 +) +(1,17311:6630773,31420616:25952256,505283,95026 +k1,17310:8552616,31420616:318177 +k1,17310:10552448,31420616:318178 +k1,17310:11615769,31420616:318177 +k1,17310:12585374,31420616:318177 +k1,17310:15615431,31420616:318177 +k1,17310:17106048,31420616:318178 +k1,17310:18813588,31420616:318177 +k1,17310:21571015,31420616:318177 +k1,17310:23774663,31420616:318177 +k1,17310:25829545,31420616:318178 +k1,17310:27839862,31420616:318177 +k1,17310:31173350,31420616:318177 +k1,17311:32583029,31420616:0 +) +(1,17311:6630773,32285696:25952256,513147,134348 +k1,17310:8472007,32285696:202179 +k1,17310:9290223,32285696:202178 +k1,17310:12269818,32285696:202179 +k1,17310:13463556,32285696:202178 +k1,17310:15178961,32285696:202179 +k1,17310:16032567,32285696:202178 +k1,17310:18215899,32285696:202179 +k1,17310:19437162,32285696:202178 +k1,17310:24262906,32285696:202179 +k1,17310:25999282,32285696:202178 +k1,17310:28244218,32285696:202179 +k1,17310:31274275,32285696:202178 +k1,17311:32583029,32285696:0 +) +(1,17311:6630773,33150776:25952256,513147,134348 +k1,17310:8498132,33150776:228304 +k1,17310:10003076,33150776:228303 +k1,17310:13151664,33150776:228304 +k1,17310:14947588,33150776:228303 +k1,17310:16642588,33150776:228304 +k1,17310:19310141,33150776:228303 +k1,17310:22392538,33150776:228304 +k1,17310:24453228,33150776:228303 +k1,17310:25673092,33150776:228304 +k1,17310:28132896,33150776:228303 +k1,17310:29557232,33150776:228304 +k1,17310:32583029,33150776:0 +) +(1,17311:6630773,34015856:25952256,513147,126483 +k1,17310:7495673,34015856:248862 +k1,17310:9890838,34015856:248862 +k1,17310:11697491,34015856:248862 +k1,17310:13689611,34015856:248862 +k1,17310:16096574,34015856:248862 +k1,17310:16961474,34015856:248862 +k1,17310:18540717,34015856:248862 +k1,17310:20169768,34015856:248863 +k1,17310:22577386,34015856:248862 +k1,17310:24360446,34015856:248862 +k1,17310:25893814,34015856:248862 +k1,17310:26957944,34015856:248862 +k1,17310:28273077,34015856:248862 +k1,17310:29997154,34015856:248862 +k1,17310:30601876,34015856:248862 +k1,17310:32583029,34015856:0 +) +(1,17311:6630773,34880936:25952256,505283,7863 +g1,17310:9465205,34880936 +g1,17310:11053797,34880936 +k1,17311:32583029,34880936:19037554 +g1,17311:32583029,34880936 +) +(1,17313:6630773,35746016:25952256,513147,7863 +h1,17312:6630773,35746016:983040,0,0 +k1,17312:8796356,35746016:228994 +k1,17312:10954729,35746016:228993 +k1,17312:12581606,35746016:228994 +k1,17312:14502739,35746016:228993 +k1,17312:17360382,35746016:228994 +k1,17312:18978739,35746016:228994 +k1,17312:19859160,35746016:228993 +k1,17312:24121240,35746016:228994 +k1,17312:25369318,35746016:228993 +k1,17312:26690797,35746016:228994 +k1,17312:27579082,35746016:228993 +k1,17312:29504803,35746016:228994 +k1,17312:32583029,35746016:0 +) +(1,17313:6630773,36611096:25952256,505283,102891 +k1,17312:7722401,36611096:168226 +k1,17312:9023089,36611096:168226 +k1,17312:11120695,36611096:168226 +k1,17312:12461359,36611096:168225 +k1,17312:14345973,36611096:168226 +k1,17312:16829586,36611096:168226 +k1,17312:18391763,36611096:168226 +k1,17312:19716699,36611096:168226 +k1,17312:22267814,36611096:168226 +k1,17312:23052077,36611096:168225 +k1,17312:25997719,36611096:168226 +k1,17312:27357390,36611096:168226 +k1,17312:28682326,36611096:168226 +k1,17312:32583029,36611096:0 +) +(1,17313:6630773,37476176:25952256,505283,7863 +g1,17312:8033898,37476176 +g1,17312:8849165,37476176 +k1,17313:32583028,37476176:22229812 +g1,17313:32583028,37476176 +) +v1,17317:6630773,38161031:0,393216,0 +(1,17322:6630773,39166751:25952256,1398936,196608 +g1,17322:6630773,39166751 +g1,17322:6630773,39166751 +g1,17322:6434165,39166751 +(1,17322:6434165,39166751:0,1398936,196608 +r1,17328:32779637,39166751:26345472,1595544,196608 +k1,17322:6434165,39166751:-26345472 +) +(1,17322:6434165,39166751:26345472,1398936,196608 +[1,17322:6630773,39166751:25952256,1202328,0 +(1,17319:6630773,38395468:25952256,431045,86428 +(1,17318:6630773,38395468:0,0,0 +g1,17318:6630773,38395468 +g1,17318:6630773,38395468 +g1,17318:6303093,38395468 +(1,17318:6303093,38395468:0,0,0 +) +g1,17318:6630773,38395468 +) +g1,17319:9618358,38395468 +g1,17319:10614220,38395468 +g1,17319:14265714,38395468 +g1,17319:14929622,38395468 +g1,17319:17253300,38395468 +g1,17319:18581116,38395468 +g1,17319:21236748,38395468 +g1,17319:21900656,38395468 +h1,17319:23228472,38395468:0,0,0 +k1,17319:32583029,38395468:9354557 +g1,17319:32583029,38395468 +) +(1,17320:6630773,39080323:25952256,424439,86428 +h1,17320:6630773,39080323:0,0,0 +g1,17320:9950312,39080323 +g1,17320:10946174,39080323 +g1,17320:14597668,39080323 +g1,17320:15261576,39080323 +g1,17320:17585254,39080323 +g1,17320:18913070,39080323 +g1,17320:21568702,39080323 +g1,17320:22232610,39080323 +h1,17320:23560426,39080323:0,0,0 +k1,17320:32583029,39080323:9022603 +g1,17320:32583029,39080323 +) +] +) +g1,17322:32583029,39166751 +g1,17322:6630773,39166751 +g1,17322:6630773,39166751 +g1,17322:32583029,39166751 +g1,17322:32583029,39166751 +) +h1,17322:6630773,39363359:0,0,0 +(1,17326:6630773,40228439:25952256,513147,126483 +h1,17325:6630773,40228439:983040,0,0 +k1,17325:9777031,40228439:296097 +k1,17325:10941479,40228439:296096 +k1,17325:13001150,40228439:296097 +k1,17325:14316332,40228439:296097 +k1,17325:14316332,40228439:0 +k1,17325:17638225,40228439:296096 +k1,17325:20775308,40228439:296097 +k1,17325:21832933,40228439:296097 +k1,17325:24275332,40228439:296096 +(1,17325:24275332,40228439:0,459977,122846 +r1,17328:28150716,40228439:3875384,582823,122846 +k1,17325:24275332,40228439:-3875384 +) +(1,17325:24275332,40228439:3875384,459977,122846 +k1,17325:24275332,40228439:3277 +h1,17325:28147439,40228439:0,411205,112570 +) +k1,17325:28620483,40228439:296097 +(1,17325:28620483,40228439:0,459977,122846 +r1,17328:32495867,40228439:3875384,582823,122846 +k1,17325:28620483,40228439:-3875384 +) +(1,17325:28620483,40228439:3875384,459977,122846 +k1,17325:28620483,40228439:3277 +h1,17325:32492590,40228439:0,411205,112570 +) +k1,17326:32583029,40228439:0 +) +(1,17326:6630773,41093519:25952256,513147,126483 +(1,17325:6630773,41093519:0,452978,122846 +r1,17328:10857869,41093519:4227096,575824,122846 +k1,17325:6630773,41093519:-4227096 +) +(1,17325:6630773,41093519:4227096,452978,122846 +k1,17325:6630773,41093519:3277 +h1,17325:10854592,41093519:0,411205,112570 +) +k1,17325:11123940,41093519:266071 +k1,17325:12581455,41093519:266070 +(1,17325:12581455,41093519:0,452978,122846 +r1,17328:16808551,41093519:4227096,575824,122846 +k1,17325:12581455,41093519:-4227096 +) +(1,17325:12581455,41093519:4227096,452978,122846 +k1,17325:12581455,41093519:3277 +h1,17325:16805274,41093519:0,411205,112570 +) +k1,17325:17248292,41093519:266071 +k1,17325:19388693,41093519:266071 +k1,17325:22680560,41093519:266070 +k1,17325:25075896,41093519:266071 +k1,17325:27206466,41093519:266071 +k1,17325:28238652,41093519:266070 +k1,17325:31391584,41093519:266071 +k1,17325:32583029,41093519:0 +) +(1,17326:6630773,41958599:25952256,513147,134348 +k1,17325:7487883,41958599:241072 +k1,17325:9096036,41958599:241072 +k1,17325:9996400,41958599:241072 +k1,17325:12908718,41958599:241071 +k1,17325:15982256,41958599:241072 +k1,17325:17731311,41958599:241072 +k1,17325:18328243,41958599:241072 +k1,17325:19773211,41958599:241072 +k1,17325:20961934,41958599:241072 +k1,17325:22654627,41958599:241071 +k1,17325:25867101,41958599:241072 +k1,17325:30096039,41958599:241072 +k1,17325:30996403,41958599:241072 +k1,17325:32583029,41958599:0 +) +(1,17326:6630773,42823679:25952256,505283,134348 +k1,17325:7782786,42823679:228611 +k1,17325:10027940,42823679:228611 +k1,17325:11708173,42823679:228611 +k1,17325:14598201,42823679:228611 +k1,17325:16220763,42823679:228611 +k1,17325:17468459,42823679:228611 +k1,17325:21099699,42823679:228611 +k1,17325:23533596,42823679:228610 +k1,17325:24413635,42823679:228611 +(1,17325:24413635,42823679:0,414482,115847 +r1,17328:24771901,42823679:358266,530329,115847 +k1,17325:24413635,42823679:-358266 +) +(1,17325:24413635,42823679:358266,414482,115847 +k1,17325:24413635,42823679:3277 +h1,17325:24768624,42823679:0,411205,112570 +) +k1,17325:25000512,42823679:228611 +k1,17325:26420568,42823679:228611 +(1,17325:26420568,42823679:0,414482,115847 +r1,17328:26778834,42823679:358266,530329,115847 +k1,17325:26420568,42823679:-358266 +) +(1,17325:26420568,42823679:358266,414482,115847 +k1,17325:26420568,42823679:3277 +h1,17325:26775557,42823679:0,411205,112570 +) +k1,17325:27007445,42823679:228611 +k1,17325:30052793,42823679:228611 +k1,17325:30932832,42823679:228611 +k1,17325:32583029,42823679:0 +) +(1,17326:6630773,43688759:25952256,513147,126483 +g1,17325:8926499,43688759 +g1,17325:10786410,43688759 +g1,17325:12494278,43688759 +g1,17325:15455850,43688759 +k1,17326:32583029,43688759:13900187 +g1,17326:32583029,43688759 +) +(1,17328:6630773,44553839:25952256,513147,134348 +h1,17327:6630773,44553839:983040,0,0 +k1,17327:8290875,44553839:189474 +k1,17327:9570222,44553839:189483 +k1,17327:10997025,44553839:189483 +k1,17327:13381309,44553839:189483 +k1,17327:14336908,44553839:189483 +k1,17327:18105313,44553839:189484 +k1,17327:19828994,44553839:189483 +k1,17327:21849553,44553839:189483 +k1,17327:24511054,44553839:189483 +k1,17327:26711182,44553839:189483 +k1,17327:28294617,44553839:189484 +(1,17327:28294617,44553839:0,414482,115847 +r1,17328:29004595,44553839:709978,530329,115847 +k1,17327:28294617,44553839:-709978 +) +(1,17327:28294617,44553839:709978,414482,115847 +k1,17327:28294617,44553839:3277 +h1,17327:29001318,44553839:0,411205,112570 +) +k1,17327:29367748,44553839:189483 +k1,17327:30317449,44553839:189483 +k1,17327:32583029,44553839:0 +) +(1,17328:6630773,45418919:25952256,505283,115847 +k1,17327:7925790,45418919:275932 +k1,17327:10182875,45418919:275932 +k1,17327:10990303,45418919:275931 +k1,17327:12843687,45418919:275932 +k1,17327:13928989,45418919:275932 +k1,17327:16918112,45418919:275932 +k1,17327:18587995,45418919:275932 +k1,17327:19883012,45418919:275932 +k1,17327:21812416,45418919:275931 +k1,17327:23826363,45418919:275932 +k1,17327:24718333,45418919:275932 +(1,17327:24718333,45418919:0,414482,115847 +r1,17328:25076599,45418919:358266,530329,115847 +k1,17327:24718333,45418919:-358266 +) +(1,17327:24718333,45418919:358266,414482,115847 +k1,17327:24718333,45418919:3277 +h1,17327:25073322,45418919:0,411205,112570 +) +k1,17327:25352531,45418919:275932 +k1,17327:26819908,45418919:275932 +(1,17327:26819908,45418919:0,414482,115847 +r1,17328:27178174,45418919:358266,530329,115847 +k1,17327:26819908,45418919:-358266 +) +(1,17327:26819908,45418919:358266,414482,115847 +k1,17327:26819908,45418919:3277 +h1,17327:27174897,45418919:0,411205,112570 +) +k1,17327:27627776,45418919:275932 +k1,17327:28975876,45418919:275931 +k1,17327:30455049,45418919:275932 +k1,17327:31835263,45418919:275932 +k1,17327:32583029,45418919:0 +) +] +(1,17328:32583029,45706769:0,0,0 +g1,17328:32583029,45706769 +) +) +] +(1,17328:6630773,47279633:25952256,0,0 +h1,17328:6630773,47279633:25952256,0,0 +) +] +(1,17328:4262630,4025873:0,0,0 +[1,17328:-473656,4025873:0,0,0 +(1,17328:-473656,-710413:0,0,0 +(1,17328:-473656,-710413:0,0,0 +g1,17328:-473656,-710413 +) +g1,17328:-473656,-710413 ) ] ) ] !29705 -}279 -Input:2906:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2907:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}280 +Input:2910:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2911:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{280 -[1,17432:4262630,47279633:28320399,43253760,0 -(1,17432:4262630,4025873:0,0,0 -[1,17432:-473656,4025873:0,0,0 -(1,17432:-473656,-710413:0,0,0 -(1,17432:-473656,-644877:0,0,0 -k1,17432:-473656,-644877:-65536 +{281 +[1,17430:4262630,47279633:28320399,43253760,0 +(1,17430:4262630,4025873:0,0,0 +[1,17430:-473656,4025873:0,0,0 +(1,17430:-473656,-710413:0,0,0 +(1,17430:-473656,-644877:0,0,0 +k1,17430:-473656,-644877:-65536 ) -(1,17432:-473656,4736287:0,0,0 -k1,17432:-473656,4736287:5209943 +(1,17430:-473656,4736287:0,0,0 +k1,17430:-473656,4736287:5209943 ) -g1,17432:-473656,-710413 +g1,17430:-473656,-710413 ) ] ) -[1,17432:6630773,47279633:25952256,43253760,0 -[1,17432:6630773,4812305:25952256,786432,0 -(1,17432:6630773,4812305:25952256,505283,126483 -(1,17432:6630773,4812305:25952256,505283,126483 -g1,17432:3078558,4812305 -[1,17432:3078558,4812305:0,0,0 -(1,17432:3078558,2439708:0,1703936,0 -k1,17432:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17432:2537886,2439708:1179648,16384,0 +[1,17430:6630773,47279633:25952256,43253760,0 +[1,17430:6630773,4812305:25952256,786432,0 +(1,17430:6630773,4812305:25952256,505283,126483 +(1,17430:6630773,4812305:25952256,505283,126483 +g1,17430:3078558,4812305 +[1,17430:3078558,4812305:0,0,0 +(1,17430:3078558,2439708:0,1703936,0 +k1,17430:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17430:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17432:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17430:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17432:3078558,4812305:0,0,0 -(1,17432:3078558,2439708:0,1703936,0 -g1,17432:29030814,2439708 -g1,17432:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17432:36151628,1915420:16384,1179648,0 +[1,17430:3078558,4812305:0,0,0 +(1,17430:3078558,2439708:0,1703936,0 +g1,17430:29030814,2439708 +g1,17430:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17430:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17432:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17430:37855564,2439708:1179648,16384,0 ) ) -k1,17432:3078556,2439708:-34777008 +k1,17430:3078556,2439708:-34777008 ) ] -[1,17432:3078558,4812305:0,0,0 -(1,17432:3078558,49800853:0,16384,2228224 -k1,17432:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17432:2537886,49800853:1179648,16384,0 +[1,17430:3078558,4812305:0,0,0 +(1,17430:3078558,49800853:0,16384,2228224 +k1,17430:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17430:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17432:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17430:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17432:3078558,4812305:0,0,0 -(1,17432:3078558,49800853:0,16384,2228224 -g1,17432:29030814,49800853 -g1,17432:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17432:36151628,51504789:16384,1179648,0 +[1,17430:3078558,4812305:0,0,0 +(1,17430:3078558,49800853:0,16384,2228224 +g1,17430:29030814,49800853 +g1,17430:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17430:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17432:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17430:37855564,49800853:1179648,16384,0 ) ) -k1,17432:3078556,49800853:-34777008 +k1,17430:3078556,49800853:-34777008 ) ] -g1,17432:6630773,4812305 -g1,17432:6630773,4812305 -g1,17432:8364200,4812305 -g1,17432:12733485,4812305 -g1,17432:14295863,4812305 -g1,17432:16502459,4812305 -g1,17432:16701688,4812305 -k1,17432:31387652,4812305:14685964 +g1,17430:6630773,4812305 +g1,17430:6630773,4812305 +g1,17430:8364200,4812305 +g1,17430:12733485,4812305 +g1,17430:14295863,4812305 +g1,17430:16502459,4812305 +g1,17430:16701688,4812305 +k1,17430:31387652,4812305:14685964 ) ) ] -[1,17432:6630773,45706769:25952256,40108032,0 -(1,17432:6630773,45706769:25952256,40108032,0 -(1,17432:6630773,45706769:0,0,0 -g1,17432:6630773,45706769 +[1,17430:6630773,45706769:25952256,40108032,0 +(1,17430:6630773,45706769:25952256,40108032,0 +(1,17430:6630773,45706769:0,0,0 +g1,17430:6630773,45706769 ) -[1,17432:6630773,45706769:25952256,40108032,0 -(1,17330:6630773,6254097:25952256,505283,134348 -k1,17329:9452628,6254097:160438 -k1,17329:10374593,6254097:160437 -k1,17329:12962485,6254097:160438 -k1,17329:13893626,6254097:160438 -k1,17329:17126392,6254097:160438 -k1,17329:17938257,6254097:160437 -k1,17329:21379427,6254097:160438 -(1,17329:21379427,6254097:0,452978,115847 -r1,17432:22089405,6254097:709978,568825,115847 -k1,17329:21379427,6254097:-709978 -) -(1,17329:21379427,6254097:709978,452978,115847 -k1,17329:21379427,6254097:3277 -h1,17329:22086128,6254097:0,411205,112570 -) -k1,17329:22423513,6254097:160438 -k1,17329:24375704,6254097:160437 -(1,17329:24375704,6254097:0,452978,115847 -r1,17432:25085682,6254097:709978,568825,115847 -k1,17329:24375704,6254097:-709978 -) -(1,17329:24375704,6254097:709978,452978,115847 -k1,17329:24375704,6254097:3277 -h1,17329:25082405,6254097:0,411205,112570 -) -k1,17329:25246120,6254097:160438 -k1,17329:26563268,6254097:160438 -k1,17329:27827988,6254097:160438 -k1,17329:29422353,6254097:160437 -k1,17329:30601876,6254097:160438 -k1,17329:32583029,6254097:0 -) -(1,17330:6630773,7119177:25952256,513147,134348 -k1,17329:7631726,7119177:191583 -k1,17329:10536500,7119177:191583 -k1,17329:12012589,7119177:191583 -k1,17329:13679388,7119177:191584 -k1,17329:16633314,7119177:191583 -k1,17329:18893213,7119177:191583 -k1,17329:19700834,7119177:191583 -(1,17329:19700834,7119177:0,414482,115847 -r1,17432:20059100,7119177:358266,530329,115847 -k1,17329:19700834,7119177:-358266 -) -(1,17329:19700834,7119177:358266,414482,115847 -k1,17329:19700834,7119177:3277 -h1,17329:20055823,7119177:0,411205,112570 -) -k1,17329:20250683,7119177:191583 -k1,17329:21633711,7119177:191583 -(1,17329:21633711,7119177:0,414482,115847 -r1,17432:21991977,7119177:358266,530329,115847 -k1,17329:21633711,7119177:-358266 -) -(1,17329:21633711,7119177:358266,414482,115847 -k1,17329:21633711,7119177:3277 -h1,17329:21988700,7119177:0,411205,112570 -) -k1,17329:22357230,7119177:191583 -k1,17329:23231699,7119177:191584 -k1,17329:25855978,7119177:191583 -k1,17329:29018963,7119177:191583 -k1,17329:29869838,7119177:191583 -k1,17329:32583029,7119177:0 -) -(1,17330:6630773,7984257:25952256,513147,126483 -g1,17329:8197739,7984257 -g1,17329:9416053,7984257 -g1,17329:11268755,7984257 -g1,17329:13205999,7984257 -g1,17329:14021266,7984257 -(1,17329:14021266,7984257:0,414482,115847 -r1,17432:14379532,7984257:358266,530329,115847 -k1,17329:14021266,7984257:-358266 -) -(1,17329:14021266,7984257:358266,414482,115847 -k1,17329:14021266,7984257:3277 -h1,17329:14376255,7984257:0,411205,112570 -) -g1,17329:14578761,7984257 -g1,17329:15969435,7984257 -(1,17329:15969435,7984257:0,414482,115847 -r1,17432:16327701,7984257:358266,530329,115847 -k1,17329:15969435,7984257:-358266 -) -(1,17329:15969435,7984257:358266,414482,115847 -k1,17329:15969435,7984257:3277 -h1,17329:16324424,7984257:0,411205,112570 -) -g1,17329:16526930,7984257 -g1,17329:19594670,7984257 -g1,17329:20406661,7984257 -g1,17329:21788815,7984257 -g1,17329:22647336,7984257 -g1,17329:23865650,7984257 -k1,17330:32583029,7984257:6179170 -g1,17330:32583029,7984257 -) -v1,17332:6630773,8669112:0,393216,0 -(1,17349:6630773,16417367:25952256,8141471,196608 -g1,17349:6630773,16417367 -g1,17349:6630773,16417367 -g1,17349:6434165,16417367 -(1,17349:6434165,16417367:0,8141471,196608 -r1,17432:32779637,16417367:26345472,8338079,196608 -k1,17349:6434165,16417367:-26345472 -) -(1,17349:6434165,16417367:26345472,8141471,196608 -[1,17349:6630773,16417367:25952256,7944863,0 -(1,17334:6630773,8903549:25952256,431045,112852 -(1,17333:6630773,8903549:0,0,0 -g1,17333:6630773,8903549 -g1,17333:6630773,8903549 -g1,17333:6303093,8903549 -(1,17333:6303093,8903549:0,0,0 -) -g1,17333:6630773,8903549 -) -k1,17334:6630773,8903549:0 -g1,17334:10614220,8903549 -g1,17334:11278128,8903549 -g1,17334:14597667,8903549 -g1,17334:15261575,8903549 -g1,17334:15925483,8903549 -h1,17334:19245022,8903549:0,0,0 -k1,17334:32583029,8903549:13338007 -g1,17334:32583029,8903549 -) -(1,17338:6630773,10243764:25952256,431045,112852 -g1,17338:7626635,10243764 -g1,17338:10282267,10243764 -g1,17338:11942037,10243764 -g1,17338:13269853,10243764 -g1,17338:13933761,10243764 -k1,17338:32583029,10243764:14333867 -g1,17338:32583029,10243764 -) -(1,17348:6630773,10928619:25952256,424439,9908 -(1,17338:6630773,10928619:0,0,0 -g1,17338:6630773,10928619 -g1,17338:6630773,10928619 -g1,17338:6303093,10928619 -(1,17338:6303093,10928619:0,0,0 -) -g1,17338:6630773,10928619 -) -g1,17348:7626635,10928619 -g1,17348:8290543,10928619 -g1,17348:8954451,10928619 -g1,17348:11610083,10928619 -g1,17348:12273991,10928619 -g1,17348:12937899,10928619 -h1,17348:13269853,10928619:0,0,0 -k1,17348:32583029,10928619:19313176 -g1,17348:32583029,10928619 -) -(1,17348:6630773,11613474:25952256,424439,6605 -h1,17348:6630773,11613474:0,0,0 -g1,17348:7626635,11613474 -g1,17348:7958589,11613474 -g1,17348:8290543,11613474 -g1,17348:8622497,11613474 -g1,17348:8954451,11613474 -g1,17348:10282267,11613474 -g1,17348:12937899,11613474 -h1,17348:15261577,11613474:0,0,0 -k1,17348:32583029,11613474:17321452 -g1,17348:32583029,11613474 -) -(1,17348:6630773,12298329:25952256,424439,6605 -h1,17348:6630773,12298329:0,0,0 -g1,17348:7626635,12298329 -g1,17348:7958589,12298329 -g1,17348:8290543,12298329 -g1,17348:10282267,12298329 -g1,17348:12273991,12298329 -g1,17348:12605945,12298329 -g1,17348:12937899,12298329 -k1,17348:12937899,12298329:0 -h1,17348:14597669,12298329:0,0,0 -k1,17348:32583029,12298329:17985360 -g1,17348:32583029,12298329 -) -(1,17348:6630773,12983184:25952256,424439,6605 -h1,17348:6630773,12983184:0,0,0 -g1,17348:7626635,12983184 -g1,17348:8290543,12983184 -g1,17348:8622497,12983184 -g1,17348:8954451,12983184 -g1,17348:9286405,12983184 -g1,17348:9618359,12983184 -g1,17348:10282267,12983184 -g1,17348:10946175,12983184 -g1,17348:11278129,12983184 -g1,17348:11610083,12983184 -g1,17348:11942037,12983184 -g1,17348:12273991,12983184 -g1,17348:12605945,12983184 -g1,17348:12937899,12983184 -h1,17348:13269853,12983184:0,0,0 -k1,17348:32583029,12983184:19313176 -g1,17348:32583029,12983184 -) -(1,17348:6630773,13668039:25952256,424439,6605 -h1,17348:6630773,13668039:0,0,0 -g1,17348:7626635,13668039 -g1,17348:8290543,13668039 -g1,17348:8622497,13668039 -g1,17348:8954451,13668039 -g1,17348:9286405,13668039 -g1,17348:9618359,13668039 -g1,17348:10282267,13668039 -g1,17348:10946175,13668039 -g1,17348:11278129,13668039 -g1,17348:11610083,13668039 -g1,17348:11942037,13668039 -g1,17348:12273991,13668039 -g1,17348:12605945,13668039 -g1,17348:12937899,13668039 -h1,17348:13269853,13668039:0,0,0 -k1,17348:32583029,13668039:19313176 -g1,17348:32583029,13668039 -) -(1,17348:6630773,14352894:25952256,424439,9908 -h1,17348:6630773,14352894:0,0,0 -g1,17348:7626635,14352894 -g1,17348:8290543,14352894 -g1,17348:8622497,14352894 -g1,17348:8954451,14352894 -g1,17348:9286405,14352894 -g1,17348:9618359,14352894 -g1,17348:10282267,14352894 -g1,17348:10946175,14352894 -g1,17348:11278129,14352894 -g1,17348:11610083,14352894 -g1,17348:11942037,14352894 -g1,17348:12273991,14352894 -g1,17348:12605945,14352894 -g1,17348:12937899,14352894 -h1,17348:13269853,14352894:0,0,0 -k1,17348:32583029,14352894:19313176 -g1,17348:32583029,14352894 -) -(1,17348:6630773,15037749:25952256,424439,6605 -h1,17348:6630773,15037749:0,0,0 -g1,17348:7626635,15037749 -g1,17348:8290543,15037749 -g1,17348:8622497,15037749 -g1,17348:8954451,15037749 -g1,17348:9286405,15037749 -g1,17348:9618359,15037749 -g1,17348:10282267,15037749 -g1,17348:10946175,15037749 -g1,17348:11278129,15037749 -g1,17348:11610083,15037749 -g1,17348:11942037,15037749 -g1,17348:12273991,15037749 -g1,17348:12605945,15037749 -g1,17348:12937899,15037749 -h1,17348:13269853,15037749:0,0,0 -k1,17348:32583029,15037749:19313176 -g1,17348:32583029,15037749 -) -(1,17348:6630773,15722604:25952256,398014,9908 -h1,17348:6630773,15722604:0,0,0 -g1,17348:7626635,15722604 -g1,17348:8290543,15722604 -g1,17348:8622497,15722604 -g1,17348:8954451,15722604 -g1,17348:9286405,15722604 -g1,17348:9618359,15722604 -g1,17348:10282267,15722604 -g1,17348:10946175,15722604 -g1,17348:11278129,15722604 -g1,17348:11610083,15722604 -g1,17348:11942037,15722604 -g1,17348:12273991,15722604 -g1,17348:12605945,15722604 -g1,17348:12937899,15722604 -k1,17348:12937899,15722604:0 -h1,17348:14265715,15722604:0,0,0 -k1,17348:32583029,15722604:18317314 -g1,17348:32583029,15722604 -) -(1,17348:6630773,16407459:25952256,424439,9908 -h1,17348:6630773,16407459:0,0,0 -g1,17348:7626635,16407459 -g1,17348:8290543,16407459 -g1,17348:8622497,16407459 -g1,17348:8954451,16407459 -g1,17348:9286405,16407459 -g1,17348:9618359,16407459 -g1,17348:10282267,16407459 -g1,17348:11942037,16407459 -g1,17348:12273991,16407459 -g1,17348:12605945,16407459 -g1,17348:12937899,16407459 -h1,17348:13269853,16407459:0,0,0 -k1,17348:32583029,16407459:19313176 -g1,17348:32583029,16407459 -) -] -) -g1,17349:32583029,16417367 -g1,17349:6630773,16417367 -g1,17349:6630773,16417367 -g1,17349:32583029,16417367 -g1,17349:32583029,16417367 -) -h1,17349:6630773,16613975:0,0,0 -v1,17353:6630773,17298830:0,393216,0 -(1,17370:6630773,25047085:25952256,8141471,196608 -g1,17370:6630773,25047085 -g1,17370:6630773,25047085 -g1,17370:6434165,25047085 -(1,17370:6434165,25047085:0,8141471,196608 -r1,17432:32779637,25047085:26345472,8338079,196608 -k1,17370:6434165,25047085:-26345472 -) -(1,17370:6434165,25047085:26345472,8141471,196608 -[1,17370:6630773,25047085:25952256,7944863,0 -(1,17355:6630773,17533267:25952256,431045,112852 -(1,17354:6630773,17533267:0,0,0 -g1,17354:6630773,17533267 -g1,17354:6630773,17533267 -g1,17354:6303093,17533267 -(1,17354:6303093,17533267:0,0,0 -) -g1,17354:6630773,17533267 -) -k1,17355:6630773,17533267:0 -g1,17355:10614220,17533267 -g1,17355:11278128,17533267 -g1,17355:14929621,17533267 -g1,17355:15593529,17533267 -g1,17355:16257437,17533267 -h1,17355:19245022,17533267:0,0,0 -k1,17355:32583029,17533267:13338007 -g1,17355:32583029,17533267 -) -(1,17359:6630773,18873482:25952256,431045,112852 -g1,17359:7626635,18873482 -g1,17359:10282267,18873482 -g1,17359:11942037,18873482 -g1,17359:13269853,18873482 -g1,17359:13933761,18873482 -k1,17359:32583029,18873482:14333867 -g1,17359:32583029,18873482 -) -(1,17369:6630773,19558337:25952256,424439,9908 -(1,17359:6630773,19558337:0,0,0 -g1,17359:6630773,19558337 -g1,17359:6630773,19558337 -g1,17359:6303093,19558337 -(1,17359:6303093,19558337:0,0,0 -) -g1,17359:6630773,19558337 -) -g1,17369:7626635,19558337 -g1,17369:8290543,19558337 -g1,17369:8954451,19558337 -g1,17369:11610083,19558337 -g1,17369:12273991,19558337 -g1,17369:12937899,19558337 -h1,17369:13269853,19558337:0,0,0 -k1,17369:32583029,19558337:19313176 -g1,17369:32583029,19558337 -) -(1,17369:6630773,20243192:25952256,424439,6605 -h1,17369:6630773,20243192:0,0,0 -g1,17369:7626635,20243192 -g1,17369:7958589,20243192 -g1,17369:8290543,20243192 -g1,17369:8622497,20243192 -g1,17369:8954451,20243192 -g1,17369:10282267,20243192 -g1,17369:12937899,20243192 -h1,17369:15261577,20243192:0,0,0 -k1,17369:32583029,20243192:17321452 -g1,17369:32583029,20243192 -) -(1,17369:6630773,20928047:25952256,424439,6605 -h1,17369:6630773,20928047:0,0,0 -g1,17369:7626635,20928047 -g1,17369:7958589,20928047 -g1,17369:8290543,20928047 -g1,17369:10282267,20928047 -g1,17369:12273991,20928047 -g1,17369:12605945,20928047 -g1,17369:12937899,20928047 -k1,17369:12937899,20928047:0 -h1,17369:14597669,20928047:0,0,0 -k1,17369:32583029,20928047:17985360 -g1,17369:32583029,20928047 -) -(1,17369:6630773,21612902:25952256,424439,6605 -h1,17369:6630773,21612902:0,0,0 -g1,17369:7626635,21612902 -g1,17369:8290543,21612902 -g1,17369:8622497,21612902 -g1,17369:8954451,21612902 -g1,17369:9286405,21612902 -g1,17369:9618359,21612902 -g1,17369:10282267,21612902 -g1,17369:10946175,21612902 -g1,17369:11278129,21612902 -g1,17369:11610083,21612902 -g1,17369:11942037,21612902 -g1,17369:12273991,21612902 -g1,17369:12605945,21612902 -g1,17369:12937899,21612902 -h1,17369:13269853,21612902:0,0,0 -k1,17369:32583029,21612902:19313176 -g1,17369:32583029,21612902 -) -(1,17369:6630773,22297757:25952256,424439,6605 -h1,17369:6630773,22297757:0,0,0 -g1,17369:7626635,22297757 -g1,17369:8290543,22297757 -g1,17369:8622497,22297757 -g1,17369:8954451,22297757 -g1,17369:9286405,22297757 -g1,17369:9618359,22297757 -g1,17369:10282267,22297757 -g1,17369:10946175,22297757 -g1,17369:11278129,22297757 -g1,17369:11610083,22297757 -g1,17369:11942037,22297757 -g1,17369:12273991,22297757 -g1,17369:12605945,22297757 -g1,17369:12937899,22297757 -h1,17369:13269853,22297757:0,0,0 -k1,17369:32583029,22297757:19313176 -g1,17369:32583029,22297757 -) -(1,17369:6630773,22982612:25952256,424439,9908 -h1,17369:6630773,22982612:0,0,0 -g1,17369:7626635,22982612 -g1,17369:8290543,22982612 -g1,17369:8622497,22982612 -g1,17369:8954451,22982612 -g1,17369:9286405,22982612 -g1,17369:9618359,22982612 -g1,17369:10282267,22982612 -g1,17369:10946175,22982612 -g1,17369:11278129,22982612 -g1,17369:11610083,22982612 -g1,17369:11942037,22982612 -g1,17369:12273991,22982612 -g1,17369:12605945,22982612 -g1,17369:12937899,22982612 -h1,17369:13269853,22982612:0,0,0 -k1,17369:32583029,22982612:19313176 -g1,17369:32583029,22982612 -) -(1,17369:6630773,23667467:25952256,424439,6605 -h1,17369:6630773,23667467:0,0,0 -g1,17369:7626635,23667467 -g1,17369:8290543,23667467 -g1,17369:8622497,23667467 -g1,17369:8954451,23667467 -g1,17369:9286405,23667467 -g1,17369:9618359,23667467 -g1,17369:10282267,23667467 -g1,17369:10946175,23667467 -g1,17369:11278129,23667467 -g1,17369:11610083,23667467 -g1,17369:11942037,23667467 -g1,17369:12273991,23667467 -g1,17369:12605945,23667467 -g1,17369:12937899,23667467 -h1,17369:13269853,23667467:0,0,0 -k1,17369:32583029,23667467:19313176 -g1,17369:32583029,23667467 -) -(1,17369:6630773,24352322:25952256,424439,9908 -h1,17369:6630773,24352322:0,0,0 -g1,17369:7626635,24352322 -g1,17369:8290543,24352322 -g1,17369:8622497,24352322 -g1,17369:8954451,24352322 -g1,17369:9286405,24352322 -g1,17369:9618359,24352322 -g1,17369:10282267,24352322 -g1,17369:10946175,24352322 -g1,17369:11278129,24352322 -g1,17369:11610083,24352322 -g1,17369:11942037,24352322 -g1,17369:12273991,24352322 -g1,17369:12605945,24352322 -g1,17369:12937899,24352322 -k1,17369:12937899,24352322:0 -h1,17369:14265715,24352322:0,0,0 -k1,17369:32583029,24352322:18317314 -g1,17369:32583029,24352322 -) -(1,17369:6630773,25037177:25952256,407923,9908 -h1,17369:6630773,25037177:0,0,0 -g1,17369:7626635,25037177 -g1,17369:8290543,25037177 -g1,17369:8622497,25037177 -g1,17369:8954451,25037177 -g1,17369:9286405,25037177 -g1,17369:9618359,25037177 -g1,17369:10282267,25037177 -g1,17369:11942037,25037177 -g1,17369:12273991,25037177 -g1,17369:12605945,25037177 -g1,17369:12937899,25037177 -h1,17369:13269853,25037177:0,0,0 -k1,17369:32583029,25037177:19313176 -g1,17369:32583029,25037177 -) -] -) -g1,17370:32583029,25047085 -g1,17370:6630773,25047085 -g1,17370:6630773,25047085 -g1,17370:32583029,25047085 -g1,17370:32583029,25047085 -) -h1,17370:6630773,25243693:0,0,0 -(1,17374:6630773,26108773:25952256,513147,134348 -h1,17373:6630773,26108773:983040,0,0 -k1,17373:9125448,26108773:277592 -k1,17373:10594484,26108773:277591 -k1,17373:12407585,26108773:277592 -k1,17373:14252798,26108773:277592 -k1,17373:16394889,26108773:277592 -k1,17373:18206678,26108773:277591 -k1,17373:19550541,26108773:277592 -k1,17373:22577368,26108773:277592 -k1,17373:24422580,26108773:277591 -k1,17373:26075773,26108773:277592 -k1,17373:27510075,26108773:277592 -k1,17373:28446959,26108773:277592 -k1,17373:29743635,26108773:277591 -k1,17373:31193666,26108773:277592 -k1,17373:32583029,26108773:0 -) -(1,17374:6630773,26973853:25952256,505283,126483 -g1,17373:9442922,26973853 -(1,17373:9442922,26973853:0,414482,115847 -r1,17432:9801188,26973853:358266,530329,115847 -k1,17373:9442922,26973853:-358266 -) -(1,17373:9442922,26973853:358266,414482,115847 -k1,17373:9442922,26973853:3277 -h1,17373:9797911,26973853:0,411205,112570 -) -g1,17373:10000417,26973853 -g1,17373:11391091,26973853 -(1,17373:11391091,26973853:0,414482,115847 -r1,17432:11749357,26973853:358266,530329,115847 -k1,17373:11391091,26973853:-358266 -) -(1,17373:11391091,26973853:358266,414482,115847 -k1,17373:11391091,26973853:3277 -h1,17373:11746080,26973853:0,411205,112570 -) -g1,17373:12122256,26973853 -k1,17374:32583029,26973853:16611844 -g1,17374:32583029,26973853 -) -v1,17376:6630773,27658708:0,393216,0 -(1,17392:6630773,34722108:25952256,7456616,196608 -g1,17392:6630773,34722108 -g1,17392:6630773,34722108 -g1,17392:6434165,34722108 -(1,17392:6434165,34722108:0,7456616,196608 -r1,17432:32779637,34722108:26345472,7653224,196608 -k1,17392:6434165,34722108:-26345472 -) -(1,17392:6434165,34722108:26345472,7456616,196608 -[1,17392:6630773,34722108:25952256,7260008,0 -(1,17378:6630773,27893145:25952256,431045,112852 -(1,17377:6630773,27893145:0,0,0 -g1,17377:6630773,27893145 -g1,17377:6630773,27893145 -g1,17377:6303093,27893145 -(1,17377:6303093,27893145:0,0,0 -) -g1,17377:6630773,27893145 -) -k1,17378:6630773,27893145:0 -g1,17378:10614220,27893145 -g1,17378:11278128,27893145 -g1,17378:14597667,27893145 -g1,17378:15261575,27893145 -g1,17378:15925483,27893145 -h1,17378:19245022,27893145:0,0,0 -k1,17378:32583029,27893145:13338007 -g1,17378:32583029,27893145 -) -(1,17382:6630773,29233360:25952256,431045,112852 -g1,17382:7626635,29233360 -g1,17382:10282267,29233360 -g1,17382:11942037,29233360 -g1,17382:13269853,29233360 -g1,17382:13933761,29233360 -k1,17382:32583029,29233360:14333867 -g1,17382:32583029,29233360 -) -(1,17391:6630773,29918215:25952256,424439,9908 -(1,17382:6630773,29918215:0,0,0 -g1,17382:6630773,29918215 -g1,17382:6630773,29918215 -g1,17382:6303093,29918215 -(1,17382:6303093,29918215:0,0,0 -) -g1,17382:6630773,29918215 -) -g1,17391:7626635,29918215 -g1,17391:8290543,29918215 -g1,17391:8954451,29918215 -g1,17391:11610083,29918215 -g1,17391:12273991,29918215 -g1,17391:12937899,29918215 -h1,17391:13269853,29918215:0,0,0 -k1,17391:32583029,29918215:19313176 -g1,17391:32583029,29918215 -) -(1,17391:6630773,30603070:25952256,424439,6605 -h1,17391:6630773,30603070:0,0,0 -g1,17391:7626635,30603070 -g1,17391:7958589,30603070 -g1,17391:8290543,30603070 -g1,17391:8622497,30603070 -g1,17391:8954451,30603070 -g1,17391:10282267,30603070 -g1,17391:12937899,30603070 -h1,17391:15261577,30603070:0,0,0 -k1,17391:32583029,30603070:17321452 -g1,17391:32583029,30603070 -) -(1,17391:6630773,31287925:25952256,424439,6605 -h1,17391:6630773,31287925:0,0,0 -g1,17391:7626635,31287925 -g1,17391:7958589,31287925 -g1,17391:8290543,31287925 -g1,17391:10282267,31287925 -g1,17391:12273991,31287925 -g1,17391:12605945,31287925 -g1,17391:12937899,31287925 -k1,17391:12937899,31287925:0 -h1,17391:14597669,31287925:0,0,0 -k1,17391:32583029,31287925:17985360 -g1,17391:32583029,31287925 -) -(1,17391:6630773,31972780:25952256,424439,6605 -h1,17391:6630773,31972780:0,0,0 -g1,17391:7626635,31972780 -g1,17391:8290543,31972780 -g1,17391:8622497,31972780 -g1,17391:8954451,31972780 -g1,17391:9286405,31972780 -g1,17391:9618359,31972780 -g1,17391:10282267,31972780 -g1,17391:10946175,31972780 -g1,17391:11278129,31972780 -g1,17391:11610083,31972780 -g1,17391:11942037,31972780 -g1,17391:12273991,31972780 -g1,17391:12605945,31972780 -g1,17391:12937899,31972780 -h1,17391:13269853,31972780:0,0,0 -k1,17391:32583029,31972780:19313176 -g1,17391:32583029,31972780 -) -(1,17391:6630773,32657635:25952256,424439,6605 -h1,17391:6630773,32657635:0,0,0 -g1,17391:7626635,32657635 -g1,17391:8290543,32657635 -g1,17391:8622497,32657635 -g1,17391:8954451,32657635 -g1,17391:9286405,32657635 -g1,17391:9618359,32657635 -g1,17391:10282267,32657635 -g1,17391:10946175,32657635 -g1,17391:11278129,32657635 -g1,17391:11610083,32657635 -g1,17391:11942037,32657635 -g1,17391:12273991,32657635 -g1,17391:12605945,32657635 -g1,17391:12937899,32657635 -h1,17391:13269853,32657635:0,0,0 -k1,17391:32583029,32657635:19313176 -g1,17391:32583029,32657635 -) -(1,17391:6630773,33342490:25952256,424439,9908 -h1,17391:6630773,33342490:0,0,0 -g1,17391:7626635,33342490 -g1,17391:8290543,33342490 -g1,17391:8622497,33342490 -g1,17391:8954451,33342490 -g1,17391:9286405,33342490 -g1,17391:9618359,33342490 -g1,17391:10282267,33342490 -g1,17391:10946175,33342490 -g1,17391:11278129,33342490 -g1,17391:11610083,33342490 -g1,17391:11942037,33342490 -g1,17391:12273991,33342490 -g1,17391:12605945,33342490 -g1,17391:12937899,33342490 -h1,17391:13269853,33342490:0,0,0 -k1,17391:32583029,33342490:19313176 -g1,17391:32583029,33342490 -) -(1,17391:6630773,34027345:25952256,424439,6605 -h1,17391:6630773,34027345:0,0,0 -g1,17391:7626635,34027345 -g1,17391:8290543,34027345 -g1,17391:8622497,34027345 -g1,17391:8954451,34027345 -g1,17391:9286405,34027345 -g1,17391:9618359,34027345 -g1,17391:10282267,34027345 -g1,17391:10946175,34027345 -g1,17391:11278129,34027345 -g1,17391:11610083,34027345 -g1,17391:11942037,34027345 -g1,17391:12273991,34027345 -g1,17391:12605945,34027345 -g1,17391:12937899,34027345 -h1,17391:13269853,34027345:0,0,0 -k1,17391:32583029,34027345:19313176 -g1,17391:32583029,34027345 -) -(1,17391:6630773,34712200:25952256,398014,9908 -h1,17391:6630773,34712200:0,0,0 -g1,17391:7626635,34712200 -g1,17391:8290543,34712200 -g1,17391:8622497,34712200 -g1,17391:8954451,34712200 -g1,17391:9286405,34712200 -g1,17391:9618359,34712200 -g1,17391:10282267,34712200 -g1,17391:10946175,34712200 -g1,17391:11278129,34712200 -g1,17391:11610083,34712200 -g1,17391:11942037,34712200 -g1,17391:12273991,34712200 -g1,17391:12605945,34712200 -g1,17391:12937899,34712200 -k1,17391:12937899,34712200:0 -h1,17391:14265715,34712200:0,0,0 -k1,17391:32583029,34712200:18317314 -g1,17391:32583029,34712200 -) -] -) -g1,17392:32583029,34722108 -g1,17392:6630773,34722108 -g1,17392:6630773,34722108 -g1,17392:32583029,34722108 -g1,17392:32583029,34722108 -) -h1,17392:6630773,34918716:0,0,0 -v1,17396:6630773,35603571:0,393216,0 -(1,17412:6630773,42666971:25952256,7456616,196608 -g1,17412:6630773,42666971 -g1,17412:6630773,42666971 -g1,17412:6434165,42666971 -(1,17412:6434165,42666971:0,7456616,196608 -r1,17432:32779637,42666971:26345472,7653224,196608 -k1,17412:6434165,42666971:-26345472 -) -(1,17412:6434165,42666971:26345472,7456616,196608 -[1,17412:6630773,42666971:25952256,7260008,0 -(1,17398:6630773,35838008:25952256,431045,112852 -(1,17397:6630773,35838008:0,0,0 -g1,17397:6630773,35838008 -g1,17397:6630773,35838008 -g1,17397:6303093,35838008 -(1,17397:6303093,35838008:0,0,0 -) -g1,17397:6630773,35838008 -) -k1,17398:6630773,35838008:0 -g1,17398:10614220,35838008 -g1,17398:11278128,35838008 -g1,17398:14929621,35838008 -g1,17398:15593529,35838008 -g1,17398:16257437,35838008 -h1,17398:19245022,35838008:0,0,0 -k1,17398:32583029,35838008:13338007 -g1,17398:32583029,35838008 -) -(1,17402:6630773,37178223:25952256,431045,112852 -g1,17402:7626635,37178223 -g1,17402:10282267,37178223 -g1,17402:11942037,37178223 -g1,17402:13269853,37178223 -g1,17402:13933761,37178223 -k1,17402:32583029,37178223:14333867 -g1,17402:32583029,37178223 -) -(1,17411:6630773,37863078:25952256,424439,9908 -(1,17402:6630773,37863078:0,0,0 -g1,17402:6630773,37863078 -g1,17402:6630773,37863078 -g1,17402:6303093,37863078 -(1,17402:6303093,37863078:0,0,0 -) -g1,17402:6630773,37863078 -) -g1,17411:7626635,37863078 -g1,17411:8290543,37863078 -g1,17411:8954451,37863078 -g1,17411:11610083,37863078 -g1,17411:12273991,37863078 -g1,17411:12937899,37863078 -h1,17411:13269853,37863078:0,0,0 -k1,17411:32583029,37863078:19313176 -g1,17411:32583029,37863078 -) -(1,17411:6630773,38547933:25952256,424439,6605 -h1,17411:6630773,38547933:0,0,0 -g1,17411:7626635,38547933 -g1,17411:7958589,38547933 -g1,17411:8290543,38547933 -g1,17411:8622497,38547933 -g1,17411:8954451,38547933 -g1,17411:10282267,38547933 -g1,17411:12937899,38547933 -h1,17411:15261577,38547933:0,0,0 -k1,17411:32583029,38547933:17321452 -g1,17411:32583029,38547933 -) -(1,17411:6630773,39232788:25952256,424439,6605 -h1,17411:6630773,39232788:0,0,0 -g1,17411:7626635,39232788 -g1,17411:7958589,39232788 -g1,17411:8290543,39232788 -g1,17411:10282267,39232788 -g1,17411:12273991,39232788 -g1,17411:12605945,39232788 -g1,17411:12937899,39232788 -k1,17411:12937899,39232788:0 -h1,17411:14597669,39232788:0,0,0 -k1,17411:32583029,39232788:17985360 -g1,17411:32583029,39232788 -) -(1,17411:6630773,39917643:25952256,424439,6605 -h1,17411:6630773,39917643:0,0,0 -g1,17411:7626635,39917643 -g1,17411:8290543,39917643 -g1,17411:8622497,39917643 -g1,17411:8954451,39917643 -g1,17411:9286405,39917643 -g1,17411:9618359,39917643 -g1,17411:10282267,39917643 -g1,17411:10946175,39917643 -g1,17411:11278129,39917643 -g1,17411:11610083,39917643 -g1,17411:11942037,39917643 -g1,17411:12273991,39917643 -g1,17411:12605945,39917643 -g1,17411:12937899,39917643 -h1,17411:13269853,39917643:0,0,0 -k1,17411:32583029,39917643:19313176 -g1,17411:32583029,39917643 -) -(1,17411:6630773,40602498:25952256,424439,6605 -h1,17411:6630773,40602498:0,0,0 -g1,17411:7626635,40602498 -g1,17411:8290543,40602498 -g1,17411:8622497,40602498 -g1,17411:8954451,40602498 -g1,17411:9286405,40602498 -g1,17411:9618359,40602498 -g1,17411:10282267,40602498 -g1,17411:10946175,40602498 -g1,17411:11278129,40602498 -g1,17411:11610083,40602498 -g1,17411:11942037,40602498 -g1,17411:12273991,40602498 -g1,17411:12605945,40602498 -g1,17411:12937899,40602498 -h1,17411:13269853,40602498:0,0,0 -k1,17411:32583029,40602498:19313176 -g1,17411:32583029,40602498 -) -(1,17411:6630773,41287353:25952256,424439,9908 -h1,17411:6630773,41287353:0,0,0 -g1,17411:7626635,41287353 -g1,17411:8290543,41287353 -g1,17411:8622497,41287353 -g1,17411:8954451,41287353 -g1,17411:9286405,41287353 -g1,17411:9618359,41287353 -g1,17411:10282267,41287353 -g1,17411:10946175,41287353 -g1,17411:11278129,41287353 -g1,17411:11610083,41287353 -g1,17411:11942037,41287353 -g1,17411:12273991,41287353 -g1,17411:12605945,41287353 -g1,17411:12937899,41287353 -h1,17411:13269853,41287353:0,0,0 -k1,17411:32583029,41287353:19313176 -g1,17411:32583029,41287353 -) -(1,17411:6630773,41972208:25952256,424439,6605 -h1,17411:6630773,41972208:0,0,0 -g1,17411:7626635,41972208 -g1,17411:8290543,41972208 -g1,17411:8622497,41972208 -g1,17411:8954451,41972208 -g1,17411:9286405,41972208 -g1,17411:9618359,41972208 -g1,17411:10282267,41972208 -g1,17411:10946175,41972208 -g1,17411:11278129,41972208 -g1,17411:11610083,41972208 -g1,17411:11942037,41972208 -g1,17411:12273991,41972208 -g1,17411:12605945,41972208 -g1,17411:12937899,41972208 -h1,17411:13269853,41972208:0,0,0 -k1,17411:32583029,41972208:19313176 -g1,17411:32583029,41972208 -) -(1,17411:6630773,42657063:25952256,424439,9908 -h1,17411:6630773,42657063:0,0,0 -g1,17411:7626635,42657063 -g1,17411:8290543,42657063 -g1,17411:8622497,42657063 -g1,17411:8954451,42657063 -g1,17411:9286405,42657063 -g1,17411:9618359,42657063 -g1,17411:10282267,42657063 -g1,17411:10946175,42657063 -g1,17411:11278129,42657063 -g1,17411:11610083,42657063 -g1,17411:11942037,42657063 -g1,17411:12273991,42657063 -g1,17411:12605945,42657063 -g1,17411:12937899,42657063 -k1,17411:12937899,42657063:0 -h1,17411:14265715,42657063:0,0,0 -k1,17411:32583029,42657063:18317314 -g1,17411:32583029,42657063 -) -] -) -g1,17412:32583029,42666971 -g1,17412:6630773,42666971 -g1,17412:6630773,42666971 -g1,17412:32583029,42666971 -g1,17412:32583029,42666971 -) -h1,17412:6630773,42863579:0,0,0 -v1,17416:6630773,43548434:0,393216,0 -(1,17432:6630773,45235938:25952256,2080720,196608 -g1,17432:6630773,45235938 -g1,17432:6630773,45235938 -g1,17432:6434165,45235938 -(1,17432:6434165,45235938:0,2080720,196608 -r1,17432:32779637,45235938:26345472,2277328,196608 -k1,17432:6434165,45235938:-26345472 -) -(1,17432:6434165,45235938:26345472,2080720,196608 -[1,17432:6630773,45235938:25952256,1884112,0 -(1,17418:6630773,43782871:25952256,431045,112852 -(1,17417:6630773,43782871:0,0,0 -g1,17417:6630773,43782871 -g1,17417:6630773,43782871 -g1,17417:6303093,43782871 -(1,17417:6303093,43782871:0,0,0 -) -g1,17417:6630773,43782871 -) -k1,17418:6630773,43782871:0 -g1,17418:10946174,43782871 -g1,17418:11610082,43782871 -g1,17418:14929621,43782871 -g1,17418:15593529,43782871 -g1,17418:16257437,43782871 -h1,17418:19576976,43782871:0,0,0 -k1,17418:32583029,43782871:13006053 -g1,17418:32583029,43782871 -) -(1,17422:6630773,45123086:25952256,431045,112852 -g1,17422:7626635,45123086 -g1,17422:10282267,45123086 -g1,17422:11942037,45123086 -g1,17422:13269853,45123086 -g1,17422:13933761,45123086 -k1,17422:32583029,45123086:14333867 -g1,17422:32583029,45123086 -) -] -) -g1,17432:32583029,45235938 -g1,17432:6630773,45235938 -g1,17432:6630773,45235938 -g1,17432:32583029,45235938 -g1,17432:32583029,45235938 -) -] -(1,17432:32583029,45706769:0,0,0 -g1,17432:32583029,45706769 -) -) -] -(1,17432:6630773,47279633:25952256,0,0 -h1,17432:6630773,47279633:25952256,0,0 -) -] -(1,17432:4262630,4025873:0,0,0 -[1,17432:-473656,4025873:0,0,0 -(1,17432:-473656,-710413:0,0,0 -(1,17432:-473656,-710413:0,0,0 -g1,17432:-473656,-710413 -) -g1,17432:-473656,-710413 +[1,17430:6630773,45706769:25952256,40108032,0 +(1,17328:6630773,6254097:25952256,505283,134348 +k1,17327:9452628,6254097:160438 +k1,17327:10374593,6254097:160437 +k1,17327:12962485,6254097:160438 +k1,17327:13893626,6254097:160438 +k1,17327:17126392,6254097:160438 +k1,17327:17938257,6254097:160437 +k1,17327:21379427,6254097:160438 +(1,17327:21379427,6254097:0,452978,115847 +r1,17430:22089405,6254097:709978,568825,115847 +k1,17327:21379427,6254097:-709978 +) +(1,17327:21379427,6254097:709978,452978,115847 +k1,17327:21379427,6254097:3277 +h1,17327:22086128,6254097:0,411205,112570 +) +k1,17327:22423513,6254097:160438 +k1,17327:24375704,6254097:160437 +(1,17327:24375704,6254097:0,452978,115847 +r1,17430:25085682,6254097:709978,568825,115847 +k1,17327:24375704,6254097:-709978 +) +(1,17327:24375704,6254097:709978,452978,115847 +k1,17327:24375704,6254097:3277 +h1,17327:25082405,6254097:0,411205,112570 +) +k1,17327:25246120,6254097:160438 +k1,17327:26563268,6254097:160438 +k1,17327:27827988,6254097:160438 +k1,17327:29422353,6254097:160437 +k1,17327:30601876,6254097:160438 +k1,17327:32583029,6254097:0 +) +(1,17328:6630773,7119177:25952256,513147,134348 +k1,17327:7631726,7119177:191583 +k1,17327:10536500,7119177:191583 +k1,17327:12012589,7119177:191583 +k1,17327:13679388,7119177:191584 +k1,17327:16633314,7119177:191583 +k1,17327:18893213,7119177:191583 +k1,17327:19700834,7119177:191583 +(1,17327:19700834,7119177:0,414482,115847 +r1,17430:20059100,7119177:358266,530329,115847 +k1,17327:19700834,7119177:-358266 +) +(1,17327:19700834,7119177:358266,414482,115847 +k1,17327:19700834,7119177:3277 +h1,17327:20055823,7119177:0,411205,112570 +) +k1,17327:20250683,7119177:191583 +k1,17327:21633711,7119177:191583 +(1,17327:21633711,7119177:0,414482,115847 +r1,17430:21991977,7119177:358266,530329,115847 +k1,17327:21633711,7119177:-358266 +) +(1,17327:21633711,7119177:358266,414482,115847 +k1,17327:21633711,7119177:3277 +h1,17327:21988700,7119177:0,411205,112570 +) +k1,17327:22357230,7119177:191583 +k1,17327:23231699,7119177:191584 +k1,17327:25855978,7119177:191583 +k1,17327:29018963,7119177:191583 +k1,17327:29869838,7119177:191583 +k1,17327:32583029,7119177:0 +) +(1,17328:6630773,7984257:25952256,513147,126483 +g1,17327:8197739,7984257 +g1,17327:9416053,7984257 +g1,17327:11268755,7984257 +g1,17327:13205999,7984257 +g1,17327:14021266,7984257 +(1,17327:14021266,7984257:0,414482,115847 +r1,17430:14379532,7984257:358266,530329,115847 +k1,17327:14021266,7984257:-358266 +) +(1,17327:14021266,7984257:358266,414482,115847 +k1,17327:14021266,7984257:3277 +h1,17327:14376255,7984257:0,411205,112570 +) +g1,17327:14578761,7984257 +g1,17327:15969435,7984257 +(1,17327:15969435,7984257:0,414482,115847 +r1,17430:16327701,7984257:358266,530329,115847 +k1,17327:15969435,7984257:-358266 +) +(1,17327:15969435,7984257:358266,414482,115847 +k1,17327:15969435,7984257:3277 +h1,17327:16324424,7984257:0,411205,112570 +) +g1,17327:16526930,7984257 +g1,17327:19594670,7984257 +g1,17327:20406661,7984257 +g1,17327:21788815,7984257 +g1,17327:22647336,7984257 +g1,17327:23865650,7984257 +k1,17328:32583029,7984257:6179170 +g1,17328:32583029,7984257 +) +v1,17330:6630773,8669112:0,393216,0 +(1,17347:6630773,16417367:25952256,8141471,196608 +g1,17347:6630773,16417367 +g1,17347:6630773,16417367 +g1,17347:6434165,16417367 +(1,17347:6434165,16417367:0,8141471,196608 +r1,17430:32779637,16417367:26345472,8338079,196608 +k1,17347:6434165,16417367:-26345472 +) +(1,17347:6434165,16417367:26345472,8141471,196608 +[1,17347:6630773,16417367:25952256,7944863,0 +(1,17332:6630773,8903549:25952256,431045,112852 +(1,17331:6630773,8903549:0,0,0 +g1,17331:6630773,8903549 +g1,17331:6630773,8903549 +g1,17331:6303093,8903549 +(1,17331:6303093,8903549:0,0,0 +) +g1,17331:6630773,8903549 +) +k1,17332:6630773,8903549:0 +g1,17332:10614220,8903549 +g1,17332:11278128,8903549 +g1,17332:14597667,8903549 +g1,17332:15261575,8903549 +g1,17332:15925483,8903549 +h1,17332:19245022,8903549:0,0,0 +k1,17332:32583029,8903549:13338007 +g1,17332:32583029,8903549 +) +(1,17336:6630773,10243764:25952256,431045,112852 +g1,17336:7626635,10243764 +g1,17336:10282267,10243764 +g1,17336:11942037,10243764 +g1,17336:13269853,10243764 +g1,17336:13933761,10243764 +k1,17336:32583029,10243764:14333867 +g1,17336:32583029,10243764 +) +(1,17346:6630773,10928619:25952256,424439,9908 +(1,17336:6630773,10928619:0,0,0 +g1,17336:6630773,10928619 +g1,17336:6630773,10928619 +g1,17336:6303093,10928619 +(1,17336:6303093,10928619:0,0,0 +) +g1,17336:6630773,10928619 +) +g1,17346:7626635,10928619 +g1,17346:8290543,10928619 +g1,17346:8954451,10928619 +g1,17346:11610083,10928619 +g1,17346:12273991,10928619 +g1,17346:12937899,10928619 +h1,17346:13269853,10928619:0,0,0 +k1,17346:32583029,10928619:19313176 +g1,17346:32583029,10928619 +) +(1,17346:6630773,11613474:25952256,424439,6605 +h1,17346:6630773,11613474:0,0,0 +g1,17346:7626635,11613474 +g1,17346:7958589,11613474 +g1,17346:8290543,11613474 +g1,17346:8622497,11613474 +g1,17346:8954451,11613474 +g1,17346:10282267,11613474 +g1,17346:12937899,11613474 +h1,17346:15261577,11613474:0,0,0 +k1,17346:32583029,11613474:17321452 +g1,17346:32583029,11613474 +) +(1,17346:6630773,12298329:25952256,424439,6605 +h1,17346:6630773,12298329:0,0,0 +g1,17346:7626635,12298329 +g1,17346:7958589,12298329 +g1,17346:8290543,12298329 +g1,17346:10282267,12298329 +g1,17346:12273991,12298329 +g1,17346:12605945,12298329 +g1,17346:12937899,12298329 +k1,17346:12937899,12298329:0 +h1,17346:14597669,12298329:0,0,0 +k1,17346:32583029,12298329:17985360 +g1,17346:32583029,12298329 +) +(1,17346:6630773,12983184:25952256,424439,6605 +h1,17346:6630773,12983184:0,0,0 +g1,17346:7626635,12983184 +g1,17346:8290543,12983184 +g1,17346:8622497,12983184 +g1,17346:8954451,12983184 +g1,17346:9286405,12983184 +g1,17346:9618359,12983184 +g1,17346:10282267,12983184 +g1,17346:10946175,12983184 +g1,17346:11278129,12983184 +g1,17346:11610083,12983184 +g1,17346:11942037,12983184 +g1,17346:12273991,12983184 +g1,17346:12605945,12983184 +g1,17346:12937899,12983184 +h1,17346:13269853,12983184:0,0,0 +k1,17346:32583029,12983184:19313176 +g1,17346:32583029,12983184 +) +(1,17346:6630773,13668039:25952256,424439,6605 +h1,17346:6630773,13668039:0,0,0 +g1,17346:7626635,13668039 +g1,17346:8290543,13668039 +g1,17346:8622497,13668039 +g1,17346:8954451,13668039 +g1,17346:9286405,13668039 +g1,17346:9618359,13668039 +g1,17346:10282267,13668039 +g1,17346:10946175,13668039 +g1,17346:11278129,13668039 +g1,17346:11610083,13668039 +g1,17346:11942037,13668039 +g1,17346:12273991,13668039 +g1,17346:12605945,13668039 +g1,17346:12937899,13668039 +h1,17346:13269853,13668039:0,0,0 +k1,17346:32583029,13668039:19313176 +g1,17346:32583029,13668039 +) +(1,17346:6630773,14352894:25952256,424439,9908 +h1,17346:6630773,14352894:0,0,0 +g1,17346:7626635,14352894 +g1,17346:8290543,14352894 +g1,17346:8622497,14352894 +g1,17346:8954451,14352894 +g1,17346:9286405,14352894 +g1,17346:9618359,14352894 +g1,17346:10282267,14352894 +g1,17346:10946175,14352894 +g1,17346:11278129,14352894 +g1,17346:11610083,14352894 +g1,17346:11942037,14352894 +g1,17346:12273991,14352894 +g1,17346:12605945,14352894 +g1,17346:12937899,14352894 +h1,17346:13269853,14352894:0,0,0 +k1,17346:32583029,14352894:19313176 +g1,17346:32583029,14352894 +) +(1,17346:6630773,15037749:25952256,424439,6605 +h1,17346:6630773,15037749:0,0,0 +g1,17346:7626635,15037749 +g1,17346:8290543,15037749 +g1,17346:8622497,15037749 +g1,17346:8954451,15037749 +g1,17346:9286405,15037749 +g1,17346:9618359,15037749 +g1,17346:10282267,15037749 +g1,17346:10946175,15037749 +g1,17346:11278129,15037749 +g1,17346:11610083,15037749 +g1,17346:11942037,15037749 +g1,17346:12273991,15037749 +g1,17346:12605945,15037749 +g1,17346:12937899,15037749 +h1,17346:13269853,15037749:0,0,0 +k1,17346:32583029,15037749:19313176 +g1,17346:32583029,15037749 +) +(1,17346:6630773,15722604:25952256,398014,9908 +h1,17346:6630773,15722604:0,0,0 +g1,17346:7626635,15722604 +g1,17346:8290543,15722604 +g1,17346:8622497,15722604 +g1,17346:8954451,15722604 +g1,17346:9286405,15722604 +g1,17346:9618359,15722604 +g1,17346:10282267,15722604 +g1,17346:10946175,15722604 +g1,17346:11278129,15722604 +g1,17346:11610083,15722604 +g1,17346:11942037,15722604 +g1,17346:12273991,15722604 +g1,17346:12605945,15722604 +g1,17346:12937899,15722604 +k1,17346:12937899,15722604:0 +h1,17346:14265715,15722604:0,0,0 +k1,17346:32583029,15722604:18317314 +g1,17346:32583029,15722604 +) +(1,17346:6630773,16407459:25952256,424439,9908 +h1,17346:6630773,16407459:0,0,0 +g1,17346:7626635,16407459 +g1,17346:8290543,16407459 +g1,17346:8622497,16407459 +g1,17346:8954451,16407459 +g1,17346:9286405,16407459 +g1,17346:9618359,16407459 +g1,17346:10282267,16407459 +g1,17346:11942037,16407459 +g1,17346:12273991,16407459 +g1,17346:12605945,16407459 +g1,17346:12937899,16407459 +h1,17346:13269853,16407459:0,0,0 +k1,17346:32583029,16407459:19313176 +g1,17346:32583029,16407459 +) +] +) +g1,17347:32583029,16417367 +g1,17347:6630773,16417367 +g1,17347:6630773,16417367 +g1,17347:32583029,16417367 +g1,17347:32583029,16417367 +) +h1,17347:6630773,16613975:0,0,0 +v1,17351:6630773,17298830:0,393216,0 +(1,17368:6630773,25047085:25952256,8141471,196608 +g1,17368:6630773,25047085 +g1,17368:6630773,25047085 +g1,17368:6434165,25047085 +(1,17368:6434165,25047085:0,8141471,196608 +r1,17430:32779637,25047085:26345472,8338079,196608 +k1,17368:6434165,25047085:-26345472 +) +(1,17368:6434165,25047085:26345472,8141471,196608 +[1,17368:6630773,25047085:25952256,7944863,0 +(1,17353:6630773,17533267:25952256,431045,112852 +(1,17352:6630773,17533267:0,0,0 +g1,17352:6630773,17533267 +g1,17352:6630773,17533267 +g1,17352:6303093,17533267 +(1,17352:6303093,17533267:0,0,0 +) +g1,17352:6630773,17533267 +) +k1,17353:6630773,17533267:0 +g1,17353:10614220,17533267 +g1,17353:11278128,17533267 +g1,17353:14929621,17533267 +g1,17353:15593529,17533267 +g1,17353:16257437,17533267 +h1,17353:19245022,17533267:0,0,0 +k1,17353:32583029,17533267:13338007 +g1,17353:32583029,17533267 +) +(1,17357:6630773,18873482:25952256,431045,112852 +g1,17357:7626635,18873482 +g1,17357:10282267,18873482 +g1,17357:11942037,18873482 +g1,17357:13269853,18873482 +g1,17357:13933761,18873482 +k1,17357:32583029,18873482:14333867 +g1,17357:32583029,18873482 +) +(1,17367:6630773,19558337:25952256,424439,9908 +(1,17357:6630773,19558337:0,0,0 +g1,17357:6630773,19558337 +g1,17357:6630773,19558337 +g1,17357:6303093,19558337 +(1,17357:6303093,19558337:0,0,0 +) +g1,17357:6630773,19558337 +) +g1,17367:7626635,19558337 +g1,17367:8290543,19558337 +g1,17367:8954451,19558337 +g1,17367:11610083,19558337 +g1,17367:12273991,19558337 +g1,17367:12937899,19558337 +h1,17367:13269853,19558337:0,0,0 +k1,17367:32583029,19558337:19313176 +g1,17367:32583029,19558337 +) +(1,17367:6630773,20243192:25952256,424439,6605 +h1,17367:6630773,20243192:0,0,0 +g1,17367:7626635,20243192 +g1,17367:7958589,20243192 +g1,17367:8290543,20243192 +g1,17367:8622497,20243192 +g1,17367:8954451,20243192 +g1,17367:10282267,20243192 +g1,17367:12937899,20243192 +h1,17367:15261577,20243192:0,0,0 +k1,17367:32583029,20243192:17321452 +g1,17367:32583029,20243192 +) +(1,17367:6630773,20928047:25952256,424439,6605 +h1,17367:6630773,20928047:0,0,0 +g1,17367:7626635,20928047 +g1,17367:7958589,20928047 +g1,17367:8290543,20928047 +g1,17367:10282267,20928047 +g1,17367:12273991,20928047 +g1,17367:12605945,20928047 +g1,17367:12937899,20928047 +k1,17367:12937899,20928047:0 +h1,17367:14597669,20928047:0,0,0 +k1,17367:32583029,20928047:17985360 +g1,17367:32583029,20928047 +) +(1,17367:6630773,21612902:25952256,424439,6605 +h1,17367:6630773,21612902:0,0,0 +g1,17367:7626635,21612902 +g1,17367:8290543,21612902 +g1,17367:8622497,21612902 +g1,17367:8954451,21612902 +g1,17367:9286405,21612902 +g1,17367:9618359,21612902 +g1,17367:10282267,21612902 +g1,17367:10946175,21612902 +g1,17367:11278129,21612902 +g1,17367:11610083,21612902 +g1,17367:11942037,21612902 +g1,17367:12273991,21612902 +g1,17367:12605945,21612902 +g1,17367:12937899,21612902 +h1,17367:13269853,21612902:0,0,0 +k1,17367:32583029,21612902:19313176 +g1,17367:32583029,21612902 +) +(1,17367:6630773,22297757:25952256,424439,6605 +h1,17367:6630773,22297757:0,0,0 +g1,17367:7626635,22297757 +g1,17367:8290543,22297757 +g1,17367:8622497,22297757 +g1,17367:8954451,22297757 +g1,17367:9286405,22297757 +g1,17367:9618359,22297757 +g1,17367:10282267,22297757 +g1,17367:10946175,22297757 +g1,17367:11278129,22297757 +g1,17367:11610083,22297757 +g1,17367:11942037,22297757 +g1,17367:12273991,22297757 +g1,17367:12605945,22297757 +g1,17367:12937899,22297757 +h1,17367:13269853,22297757:0,0,0 +k1,17367:32583029,22297757:19313176 +g1,17367:32583029,22297757 +) +(1,17367:6630773,22982612:25952256,424439,9908 +h1,17367:6630773,22982612:0,0,0 +g1,17367:7626635,22982612 +g1,17367:8290543,22982612 +g1,17367:8622497,22982612 +g1,17367:8954451,22982612 +g1,17367:9286405,22982612 +g1,17367:9618359,22982612 +g1,17367:10282267,22982612 +g1,17367:10946175,22982612 +g1,17367:11278129,22982612 +g1,17367:11610083,22982612 +g1,17367:11942037,22982612 +g1,17367:12273991,22982612 +g1,17367:12605945,22982612 +g1,17367:12937899,22982612 +h1,17367:13269853,22982612:0,0,0 +k1,17367:32583029,22982612:19313176 +g1,17367:32583029,22982612 +) +(1,17367:6630773,23667467:25952256,424439,6605 +h1,17367:6630773,23667467:0,0,0 +g1,17367:7626635,23667467 +g1,17367:8290543,23667467 +g1,17367:8622497,23667467 +g1,17367:8954451,23667467 +g1,17367:9286405,23667467 +g1,17367:9618359,23667467 +g1,17367:10282267,23667467 +g1,17367:10946175,23667467 +g1,17367:11278129,23667467 +g1,17367:11610083,23667467 +g1,17367:11942037,23667467 +g1,17367:12273991,23667467 +g1,17367:12605945,23667467 +g1,17367:12937899,23667467 +h1,17367:13269853,23667467:0,0,0 +k1,17367:32583029,23667467:19313176 +g1,17367:32583029,23667467 +) +(1,17367:6630773,24352322:25952256,424439,9908 +h1,17367:6630773,24352322:0,0,0 +g1,17367:7626635,24352322 +g1,17367:8290543,24352322 +g1,17367:8622497,24352322 +g1,17367:8954451,24352322 +g1,17367:9286405,24352322 +g1,17367:9618359,24352322 +g1,17367:10282267,24352322 +g1,17367:10946175,24352322 +g1,17367:11278129,24352322 +g1,17367:11610083,24352322 +g1,17367:11942037,24352322 +g1,17367:12273991,24352322 +g1,17367:12605945,24352322 +g1,17367:12937899,24352322 +k1,17367:12937899,24352322:0 +h1,17367:14265715,24352322:0,0,0 +k1,17367:32583029,24352322:18317314 +g1,17367:32583029,24352322 +) +(1,17367:6630773,25037177:25952256,407923,9908 +h1,17367:6630773,25037177:0,0,0 +g1,17367:7626635,25037177 +g1,17367:8290543,25037177 +g1,17367:8622497,25037177 +g1,17367:8954451,25037177 +g1,17367:9286405,25037177 +g1,17367:9618359,25037177 +g1,17367:10282267,25037177 +g1,17367:11942037,25037177 +g1,17367:12273991,25037177 +g1,17367:12605945,25037177 +g1,17367:12937899,25037177 +h1,17367:13269853,25037177:0,0,0 +k1,17367:32583029,25037177:19313176 +g1,17367:32583029,25037177 +) +] +) +g1,17368:32583029,25047085 +g1,17368:6630773,25047085 +g1,17368:6630773,25047085 +g1,17368:32583029,25047085 +g1,17368:32583029,25047085 +) +h1,17368:6630773,25243693:0,0,0 +(1,17372:6630773,26108773:25952256,513147,134348 +h1,17371:6630773,26108773:983040,0,0 +k1,17371:9125448,26108773:277592 +k1,17371:10594484,26108773:277591 +k1,17371:12407585,26108773:277592 +k1,17371:14252798,26108773:277592 +k1,17371:16394889,26108773:277592 +k1,17371:18206678,26108773:277591 +k1,17371:19550541,26108773:277592 +k1,17371:22577368,26108773:277592 +k1,17371:24422580,26108773:277591 +k1,17371:26075773,26108773:277592 +k1,17371:27510075,26108773:277592 +k1,17371:28446959,26108773:277592 +k1,17371:29743635,26108773:277591 +k1,17371:31193666,26108773:277592 +k1,17371:32583029,26108773:0 +) +(1,17372:6630773,26973853:25952256,505283,126483 +g1,17371:9442922,26973853 +(1,17371:9442922,26973853:0,414482,115847 +r1,17430:9801188,26973853:358266,530329,115847 +k1,17371:9442922,26973853:-358266 +) +(1,17371:9442922,26973853:358266,414482,115847 +k1,17371:9442922,26973853:3277 +h1,17371:9797911,26973853:0,411205,112570 +) +g1,17371:10000417,26973853 +g1,17371:11391091,26973853 +(1,17371:11391091,26973853:0,414482,115847 +r1,17430:11749357,26973853:358266,530329,115847 +k1,17371:11391091,26973853:-358266 +) +(1,17371:11391091,26973853:358266,414482,115847 +k1,17371:11391091,26973853:3277 +h1,17371:11746080,26973853:0,411205,112570 +) +g1,17371:12122256,26973853 +k1,17372:32583029,26973853:16611844 +g1,17372:32583029,26973853 +) +v1,17374:6630773,27658708:0,393216,0 +(1,17390:6630773,34722108:25952256,7456616,196608 +g1,17390:6630773,34722108 +g1,17390:6630773,34722108 +g1,17390:6434165,34722108 +(1,17390:6434165,34722108:0,7456616,196608 +r1,17430:32779637,34722108:26345472,7653224,196608 +k1,17390:6434165,34722108:-26345472 +) +(1,17390:6434165,34722108:26345472,7456616,196608 +[1,17390:6630773,34722108:25952256,7260008,0 +(1,17376:6630773,27893145:25952256,431045,112852 +(1,17375:6630773,27893145:0,0,0 +g1,17375:6630773,27893145 +g1,17375:6630773,27893145 +g1,17375:6303093,27893145 +(1,17375:6303093,27893145:0,0,0 +) +g1,17375:6630773,27893145 +) +k1,17376:6630773,27893145:0 +g1,17376:10614220,27893145 +g1,17376:11278128,27893145 +g1,17376:14597667,27893145 +g1,17376:15261575,27893145 +g1,17376:15925483,27893145 +h1,17376:19245022,27893145:0,0,0 +k1,17376:32583029,27893145:13338007 +g1,17376:32583029,27893145 +) +(1,17380:6630773,29233360:25952256,431045,112852 +g1,17380:7626635,29233360 +g1,17380:10282267,29233360 +g1,17380:11942037,29233360 +g1,17380:13269853,29233360 +g1,17380:13933761,29233360 +k1,17380:32583029,29233360:14333867 +g1,17380:32583029,29233360 +) +(1,17389:6630773,29918215:25952256,424439,9908 +(1,17380:6630773,29918215:0,0,0 +g1,17380:6630773,29918215 +g1,17380:6630773,29918215 +g1,17380:6303093,29918215 +(1,17380:6303093,29918215:0,0,0 +) +g1,17380:6630773,29918215 +) +g1,17389:7626635,29918215 +g1,17389:8290543,29918215 +g1,17389:8954451,29918215 +g1,17389:11610083,29918215 +g1,17389:12273991,29918215 +g1,17389:12937899,29918215 +h1,17389:13269853,29918215:0,0,0 +k1,17389:32583029,29918215:19313176 +g1,17389:32583029,29918215 +) +(1,17389:6630773,30603070:25952256,424439,6605 +h1,17389:6630773,30603070:0,0,0 +g1,17389:7626635,30603070 +g1,17389:7958589,30603070 +g1,17389:8290543,30603070 +g1,17389:8622497,30603070 +g1,17389:8954451,30603070 +g1,17389:10282267,30603070 +g1,17389:12937899,30603070 +h1,17389:15261577,30603070:0,0,0 +k1,17389:32583029,30603070:17321452 +g1,17389:32583029,30603070 +) +(1,17389:6630773,31287925:25952256,424439,6605 +h1,17389:6630773,31287925:0,0,0 +g1,17389:7626635,31287925 +g1,17389:7958589,31287925 +g1,17389:8290543,31287925 +g1,17389:10282267,31287925 +g1,17389:12273991,31287925 +g1,17389:12605945,31287925 +g1,17389:12937899,31287925 +k1,17389:12937899,31287925:0 +h1,17389:14597669,31287925:0,0,0 +k1,17389:32583029,31287925:17985360 +g1,17389:32583029,31287925 +) +(1,17389:6630773,31972780:25952256,424439,6605 +h1,17389:6630773,31972780:0,0,0 +g1,17389:7626635,31972780 +g1,17389:8290543,31972780 +g1,17389:8622497,31972780 +g1,17389:8954451,31972780 +g1,17389:9286405,31972780 +g1,17389:9618359,31972780 +g1,17389:10282267,31972780 +g1,17389:10946175,31972780 +g1,17389:11278129,31972780 +g1,17389:11610083,31972780 +g1,17389:11942037,31972780 +g1,17389:12273991,31972780 +g1,17389:12605945,31972780 +g1,17389:12937899,31972780 +h1,17389:13269853,31972780:0,0,0 +k1,17389:32583029,31972780:19313176 +g1,17389:32583029,31972780 +) +(1,17389:6630773,32657635:25952256,424439,6605 +h1,17389:6630773,32657635:0,0,0 +g1,17389:7626635,32657635 +g1,17389:8290543,32657635 +g1,17389:8622497,32657635 +g1,17389:8954451,32657635 +g1,17389:9286405,32657635 +g1,17389:9618359,32657635 +g1,17389:10282267,32657635 +g1,17389:10946175,32657635 +g1,17389:11278129,32657635 +g1,17389:11610083,32657635 +g1,17389:11942037,32657635 +g1,17389:12273991,32657635 +g1,17389:12605945,32657635 +g1,17389:12937899,32657635 +h1,17389:13269853,32657635:0,0,0 +k1,17389:32583029,32657635:19313176 +g1,17389:32583029,32657635 +) +(1,17389:6630773,33342490:25952256,424439,9908 +h1,17389:6630773,33342490:0,0,0 +g1,17389:7626635,33342490 +g1,17389:8290543,33342490 +g1,17389:8622497,33342490 +g1,17389:8954451,33342490 +g1,17389:9286405,33342490 +g1,17389:9618359,33342490 +g1,17389:10282267,33342490 +g1,17389:10946175,33342490 +g1,17389:11278129,33342490 +g1,17389:11610083,33342490 +g1,17389:11942037,33342490 +g1,17389:12273991,33342490 +g1,17389:12605945,33342490 +g1,17389:12937899,33342490 +h1,17389:13269853,33342490:0,0,0 +k1,17389:32583029,33342490:19313176 +g1,17389:32583029,33342490 +) +(1,17389:6630773,34027345:25952256,424439,6605 +h1,17389:6630773,34027345:0,0,0 +g1,17389:7626635,34027345 +g1,17389:8290543,34027345 +g1,17389:8622497,34027345 +g1,17389:8954451,34027345 +g1,17389:9286405,34027345 +g1,17389:9618359,34027345 +g1,17389:10282267,34027345 +g1,17389:10946175,34027345 +g1,17389:11278129,34027345 +g1,17389:11610083,34027345 +g1,17389:11942037,34027345 +g1,17389:12273991,34027345 +g1,17389:12605945,34027345 +g1,17389:12937899,34027345 +h1,17389:13269853,34027345:0,0,0 +k1,17389:32583029,34027345:19313176 +g1,17389:32583029,34027345 +) +(1,17389:6630773,34712200:25952256,398014,9908 +h1,17389:6630773,34712200:0,0,0 +g1,17389:7626635,34712200 +g1,17389:8290543,34712200 +g1,17389:8622497,34712200 +g1,17389:8954451,34712200 +g1,17389:9286405,34712200 +g1,17389:9618359,34712200 +g1,17389:10282267,34712200 +g1,17389:10946175,34712200 +g1,17389:11278129,34712200 +g1,17389:11610083,34712200 +g1,17389:11942037,34712200 +g1,17389:12273991,34712200 +g1,17389:12605945,34712200 +g1,17389:12937899,34712200 +k1,17389:12937899,34712200:0 +h1,17389:14265715,34712200:0,0,0 +k1,17389:32583029,34712200:18317314 +g1,17389:32583029,34712200 +) +] +) +g1,17390:32583029,34722108 +g1,17390:6630773,34722108 +g1,17390:6630773,34722108 +g1,17390:32583029,34722108 +g1,17390:32583029,34722108 +) +h1,17390:6630773,34918716:0,0,0 +v1,17394:6630773,35603571:0,393216,0 +(1,17410:6630773,42666971:25952256,7456616,196608 +g1,17410:6630773,42666971 +g1,17410:6630773,42666971 +g1,17410:6434165,42666971 +(1,17410:6434165,42666971:0,7456616,196608 +r1,17430:32779637,42666971:26345472,7653224,196608 +k1,17410:6434165,42666971:-26345472 +) +(1,17410:6434165,42666971:26345472,7456616,196608 +[1,17410:6630773,42666971:25952256,7260008,0 +(1,17396:6630773,35838008:25952256,431045,112852 +(1,17395:6630773,35838008:0,0,0 +g1,17395:6630773,35838008 +g1,17395:6630773,35838008 +g1,17395:6303093,35838008 +(1,17395:6303093,35838008:0,0,0 +) +g1,17395:6630773,35838008 +) +k1,17396:6630773,35838008:0 +g1,17396:10614220,35838008 +g1,17396:11278128,35838008 +g1,17396:14929621,35838008 +g1,17396:15593529,35838008 +g1,17396:16257437,35838008 +h1,17396:19245022,35838008:0,0,0 +k1,17396:32583029,35838008:13338007 +g1,17396:32583029,35838008 +) +(1,17400:6630773,37178223:25952256,431045,112852 +g1,17400:7626635,37178223 +g1,17400:10282267,37178223 +g1,17400:11942037,37178223 +g1,17400:13269853,37178223 +g1,17400:13933761,37178223 +k1,17400:32583029,37178223:14333867 +g1,17400:32583029,37178223 +) +(1,17409:6630773,37863078:25952256,424439,9908 +(1,17400:6630773,37863078:0,0,0 +g1,17400:6630773,37863078 +g1,17400:6630773,37863078 +g1,17400:6303093,37863078 +(1,17400:6303093,37863078:0,0,0 +) +g1,17400:6630773,37863078 +) +g1,17409:7626635,37863078 +g1,17409:8290543,37863078 +g1,17409:8954451,37863078 +g1,17409:11610083,37863078 +g1,17409:12273991,37863078 +g1,17409:12937899,37863078 +h1,17409:13269853,37863078:0,0,0 +k1,17409:32583029,37863078:19313176 +g1,17409:32583029,37863078 +) +(1,17409:6630773,38547933:25952256,424439,6605 +h1,17409:6630773,38547933:0,0,0 +g1,17409:7626635,38547933 +g1,17409:7958589,38547933 +g1,17409:8290543,38547933 +g1,17409:8622497,38547933 +g1,17409:8954451,38547933 +g1,17409:10282267,38547933 +g1,17409:12937899,38547933 +h1,17409:15261577,38547933:0,0,0 +k1,17409:32583029,38547933:17321452 +g1,17409:32583029,38547933 +) +(1,17409:6630773,39232788:25952256,424439,6605 +h1,17409:6630773,39232788:0,0,0 +g1,17409:7626635,39232788 +g1,17409:7958589,39232788 +g1,17409:8290543,39232788 +g1,17409:10282267,39232788 +g1,17409:12273991,39232788 +g1,17409:12605945,39232788 +g1,17409:12937899,39232788 +k1,17409:12937899,39232788:0 +h1,17409:14597669,39232788:0,0,0 +k1,17409:32583029,39232788:17985360 +g1,17409:32583029,39232788 +) +(1,17409:6630773,39917643:25952256,424439,6605 +h1,17409:6630773,39917643:0,0,0 +g1,17409:7626635,39917643 +g1,17409:8290543,39917643 +g1,17409:8622497,39917643 +g1,17409:8954451,39917643 +g1,17409:9286405,39917643 +g1,17409:9618359,39917643 +g1,17409:10282267,39917643 +g1,17409:10946175,39917643 +g1,17409:11278129,39917643 +g1,17409:11610083,39917643 +g1,17409:11942037,39917643 +g1,17409:12273991,39917643 +g1,17409:12605945,39917643 +g1,17409:12937899,39917643 +h1,17409:13269853,39917643:0,0,0 +k1,17409:32583029,39917643:19313176 +g1,17409:32583029,39917643 +) +(1,17409:6630773,40602498:25952256,424439,6605 +h1,17409:6630773,40602498:0,0,0 +g1,17409:7626635,40602498 +g1,17409:8290543,40602498 +g1,17409:8622497,40602498 +g1,17409:8954451,40602498 +g1,17409:9286405,40602498 +g1,17409:9618359,40602498 +g1,17409:10282267,40602498 +g1,17409:10946175,40602498 +g1,17409:11278129,40602498 +g1,17409:11610083,40602498 +g1,17409:11942037,40602498 +g1,17409:12273991,40602498 +g1,17409:12605945,40602498 +g1,17409:12937899,40602498 +h1,17409:13269853,40602498:0,0,0 +k1,17409:32583029,40602498:19313176 +g1,17409:32583029,40602498 +) +(1,17409:6630773,41287353:25952256,424439,9908 +h1,17409:6630773,41287353:0,0,0 +g1,17409:7626635,41287353 +g1,17409:8290543,41287353 +g1,17409:8622497,41287353 +g1,17409:8954451,41287353 +g1,17409:9286405,41287353 +g1,17409:9618359,41287353 +g1,17409:10282267,41287353 +g1,17409:10946175,41287353 +g1,17409:11278129,41287353 +g1,17409:11610083,41287353 +g1,17409:11942037,41287353 +g1,17409:12273991,41287353 +g1,17409:12605945,41287353 +g1,17409:12937899,41287353 +h1,17409:13269853,41287353:0,0,0 +k1,17409:32583029,41287353:19313176 +g1,17409:32583029,41287353 +) +(1,17409:6630773,41972208:25952256,424439,6605 +h1,17409:6630773,41972208:0,0,0 +g1,17409:7626635,41972208 +g1,17409:8290543,41972208 +g1,17409:8622497,41972208 +g1,17409:8954451,41972208 +g1,17409:9286405,41972208 +g1,17409:9618359,41972208 +g1,17409:10282267,41972208 +g1,17409:10946175,41972208 +g1,17409:11278129,41972208 +g1,17409:11610083,41972208 +g1,17409:11942037,41972208 +g1,17409:12273991,41972208 +g1,17409:12605945,41972208 +g1,17409:12937899,41972208 +h1,17409:13269853,41972208:0,0,0 +k1,17409:32583029,41972208:19313176 +g1,17409:32583029,41972208 +) +(1,17409:6630773,42657063:25952256,424439,9908 +h1,17409:6630773,42657063:0,0,0 +g1,17409:7626635,42657063 +g1,17409:8290543,42657063 +g1,17409:8622497,42657063 +g1,17409:8954451,42657063 +g1,17409:9286405,42657063 +g1,17409:9618359,42657063 +g1,17409:10282267,42657063 +g1,17409:10946175,42657063 +g1,17409:11278129,42657063 +g1,17409:11610083,42657063 +g1,17409:11942037,42657063 +g1,17409:12273991,42657063 +g1,17409:12605945,42657063 +g1,17409:12937899,42657063 +k1,17409:12937899,42657063:0 +h1,17409:14265715,42657063:0,0,0 +k1,17409:32583029,42657063:18317314 +g1,17409:32583029,42657063 +) +] +) +g1,17410:32583029,42666971 +g1,17410:6630773,42666971 +g1,17410:6630773,42666971 +g1,17410:32583029,42666971 +g1,17410:32583029,42666971 +) +h1,17410:6630773,42863579:0,0,0 +v1,17414:6630773,43548434:0,393216,0 +(1,17430:6630773,45235938:25952256,2080720,196608 +g1,17430:6630773,45235938 +g1,17430:6630773,45235938 +g1,17430:6434165,45235938 +(1,17430:6434165,45235938:0,2080720,196608 +r1,17430:32779637,45235938:26345472,2277328,196608 +k1,17430:6434165,45235938:-26345472 +) +(1,17430:6434165,45235938:26345472,2080720,196608 +[1,17430:6630773,45235938:25952256,1884112,0 +(1,17416:6630773,43782871:25952256,431045,112852 +(1,17415:6630773,43782871:0,0,0 +g1,17415:6630773,43782871 +g1,17415:6630773,43782871 +g1,17415:6303093,43782871 +(1,17415:6303093,43782871:0,0,0 +) +g1,17415:6630773,43782871 +) +k1,17416:6630773,43782871:0 +g1,17416:10946174,43782871 +g1,17416:11610082,43782871 +g1,17416:14929621,43782871 +g1,17416:15593529,43782871 +g1,17416:16257437,43782871 +h1,17416:19576976,43782871:0,0,0 +k1,17416:32583029,43782871:13006053 +g1,17416:32583029,43782871 +) +(1,17420:6630773,45123086:25952256,431045,112852 +g1,17420:7626635,45123086 +g1,17420:10282267,45123086 +g1,17420:11942037,45123086 +g1,17420:13269853,45123086 +g1,17420:13933761,45123086 +k1,17420:32583029,45123086:14333867 +g1,17420:32583029,45123086 +) +] +) +g1,17430:32583029,45235938 +g1,17430:6630773,45235938 +g1,17430:6630773,45235938 +g1,17430:32583029,45235938 +g1,17430:32583029,45235938 +) +] +(1,17430:32583029,45706769:0,0,0 +g1,17430:32583029,45706769 +) +) +] +(1,17430:6630773,47279633:25952256,0,0 +h1,17430:6630773,47279633:25952256,0,0 +) +] +(1,17430:4262630,4025873:0,0,0 +[1,17430:-473656,4025873:0,0,0 +(1,17430:-473656,-710413:0,0,0 +(1,17430:-473656,-710413:0,0,0 +g1,17430:-473656,-710413 +) +g1,17430:-473656,-710413 ) ] ) ] !31284 -}280 -Input:2908:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2909:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2910:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2911:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}281 Input:2912:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2913:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2914:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2915:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2916:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2917:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2918:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2919:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{281 -[1,17519:4262630,47279633:28320399,43253760,0 -(1,17519:4262630,4025873:0,0,0 -[1,17519:-473656,4025873:0,0,0 -(1,17519:-473656,-710413:0,0,0 -(1,17519:-473656,-644877:0,0,0 -k1,17519:-473656,-644877:-65536 +{282 +[1,17517:4262630,47279633:28320399,43253760,0 +(1,17517:4262630,4025873:0,0,0 +[1,17517:-473656,4025873:0,0,0 +(1,17517:-473656,-710413:0,0,0 +(1,17517:-473656,-644877:0,0,0 +k1,17517:-473656,-644877:-65536 ) -(1,17519:-473656,4736287:0,0,0 -k1,17519:-473656,4736287:5209943 +(1,17517:-473656,4736287:0,0,0 +k1,17517:-473656,4736287:5209943 ) -g1,17519:-473656,-710413 +g1,17517:-473656,-710413 ) ] ) -[1,17519:6630773,47279633:25952256,43253760,0 -[1,17519:6630773,4812305:25952256,786432,0 -(1,17519:6630773,4812305:25952256,505283,134348 -(1,17519:6630773,4812305:25952256,505283,134348 -g1,17519:3078558,4812305 -[1,17519:3078558,4812305:0,0,0 -(1,17519:3078558,2439708:0,1703936,0 -k1,17519:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17519:2537886,2439708:1179648,16384,0 +[1,17517:6630773,47279633:25952256,43253760,0 +[1,17517:6630773,4812305:25952256,786432,0 +(1,17517:6630773,4812305:25952256,505283,134348 +(1,17517:6630773,4812305:25952256,505283,134348 +g1,17517:3078558,4812305 +[1,17517:3078558,4812305:0,0,0 +(1,17517:3078558,2439708:0,1703936,0 +k1,17517:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17517:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17519:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17517:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17519:3078558,4812305:0,0,0 -(1,17519:3078558,2439708:0,1703936,0 -g1,17519:29030814,2439708 -g1,17519:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17519:36151628,1915420:16384,1179648,0 +[1,17517:3078558,4812305:0,0,0 +(1,17517:3078558,2439708:0,1703936,0 +g1,17517:29030814,2439708 +g1,17517:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17517:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17519:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17517:37855564,2439708:1179648,16384,0 ) ) -k1,17519:3078556,2439708:-34777008 +k1,17517:3078556,2439708:-34777008 ) ] -[1,17519:3078558,4812305:0,0,0 -(1,17519:3078558,49800853:0,16384,2228224 -k1,17519:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17519:2537886,49800853:1179648,16384,0 +[1,17517:3078558,4812305:0,0,0 +(1,17517:3078558,49800853:0,16384,2228224 +k1,17517:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17517:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17519:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17517:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17519:3078558,4812305:0,0,0 -(1,17519:3078558,49800853:0,16384,2228224 -g1,17519:29030814,49800853 -g1,17519:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17519:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17519:37855564,49800853:1179648,16384,0 -) -) -k1,17519:3078556,49800853:-34777008 -) -] -g1,17519:6630773,4812305 -k1,17519:23347041,4812305:15520891 -g1,17519:23960458,4812305 -g1,17519:27572802,4812305 -g1,17519:29306229,4812305 -) -) -] -[1,17519:6630773,45706769:25952256,40108032,0 -(1,17519:6630773,45706769:25952256,40108032,0 -(1,17519:6630773,45706769:0,0,0 -g1,17519:6630773,45706769 -) -[1,17519:6630773,45706769:25952256,40108032,0 -v1,17432:6630773,6254097:0,393216,0 -(1,17432:6630773,11285821:25952256,5424940,196608 -g1,17432:6630773,11285821 -g1,17432:6630773,11285821 -g1,17432:6434165,11285821 -(1,17432:6434165,11285821:0,5424940,196608 -r1,17519:32779637,11285821:26345472,5621548,196608 -k1,17432:6434165,11285821:-26345472 -) -(1,17432:6434165,11285821:26345472,5424940,196608 -[1,17432:6630773,11285821:25952256,5228332,0 -(1,17431:6630773,6481928:25952256,424439,9908 -(1,17422:6630773,6481928:0,0,0 -g1,17422:6630773,6481928 -g1,17422:6630773,6481928 -g1,17422:6303093,6481928 -(1,17422:6303093,6481928:0,0,0 -) -g1,17422:6630773,6481928 -) -g1,17431:7626635,6481928 -g1,17431:8290543,6481928 -g1,17431:8954451,6481928 -g1,17431:11610083,6481928 -g1,17431:12273991,6481928 -g1,17431:12937899,6481928 -h1,17431:13269853,6481928:0,0,0 -k1,17431:32583029,6481928:19313176 -g1,17431:32583029,6481928 -) -(1,17431:6630773,7166783:25952256,424439,6605 -h1,17431:6630773,7166783:0,0,0 -g1,17431:7626635,7166783 -g1,17431:7958589,7166783 -g1,17431:8290543,7166783 -g1,17431:8622497,7166783 -g1,17431:8954451,7166783 -g1,17431:10282267,7166783 -g1,17431:12937899,7166783 -h1,17431:15261577,7166783:0,0,0 -k1,17431:32583029,7166783:17321452 -g1,17431:32583029,7166783 -) -(1,17431:6630773,7851638:25952256,424439,6605 -h1,17431:6630773,7851638:0,0,0 -g1,17431:7626635,7851638 -g1,17431:7958589,7851638 -g1,17431:8290543,7851638 -g1,17431:10282267,7851638 -g1,17431:12273991,7851638 -g1,17431:12605945,7851638 -g1,17431:12937899,7851638 -k1,17431:12937899,7851638:0 -h1,17431:14597669,7851638:0,0,0 -k1,17431:32583029,7851638:17985360 -g1,17431:32583029,7851638 -) -(1,17431:6630773,8536493:25952256,424439,6605 -h1,17431:6630773,8536493:0,0,0 -g1,17431:7626635,8536493 -g1,17431:8290543,8536493 -g1,17431:8622497,8536493 -g1,17431:8954451,8536493 -g1,17431:9286405,8536493 -g1,17431:9618359,8536493 -g1,17431:10282267,8536493 -g1,17431:10946175,8536493 -g1,17431:11278129,8536493 -g1,17431:11610083,8536493 -g1,17431:11942037,8536493 -g1,17431:12273991,8536493 -g1,17431:12605945,8536493 -g1,17431:12937899,8536493 -h1,17431:13269853,8536493:0,0,0 -k1,17431:32583029,8536493:19313176 -g1,17431:32583029,8536493 -) -(1,17431:6630773,9221348:25952256,424439,6605 -h1,17431:6630773,9221348:0,0,0 -g1,17431:7626635,9221348 -g1,17431:8290543,9221348 -g1,17431:8622497,9221348 -g1,17431:8954451,9221348 -g1,17431:9286405,9221348 -g1,17431:9618359,9221348 -g1,17431:10282267,9221348 -g1,17431:10946175,9221348 -g1,17431:11278129,9221348 -g1,17431:11610083,9221348 -g1,17431:11942037,9221348 -g1,17431:12273991,9221348 -g1,17431:12605945,9221348 -g1,17431:12937899,9221348 -h1,17431:13269853,9221348:0,0,0 -k1,17431:32583029,9221348:19313176 -g1,17431:32583029,9221348 -) -(1,17431:6630773,9906203:25952256,424439,9908 -h1,17431:6630773,9906203:0,0,0 -g1,17431:7626635,9906203 -g1,17431:8290543,9906203 -g1,17431:8622497,9906203 -g1,17431:8954451,9906203 -g1,17431:9286405,9906203 -g1,17431:9618359,9906203 -g1,17431:10282267,9906203 -g1,17431:10946175,9906203 -g1,17431:11278129,9906203 -g1,17431:11610083,9906203 -g1,17431:11942037,9906203 -g1,17431:12273991,9906203 -g1,17431:12605945,9906203 -g1,17431:12937899,9906203 -h1,17431:13269853,9906203:0,0,0 -k1,17431:32583029,9906203:19313176 -g1,17431:32583029,9906203 -) -(1,17431:6630773,10591058:25952256,424439,6605 -h1,17431:6630773,10591058:0,0,0 -g1,17431:7626635,10591058 -g1,17431:8290543,10591058 -g1,17431:8622497,10591058 -g1,17431:8954451,10591058 -g1,17431:9286405,10591058 -g1,17431:9618359,10591058 -g1,17431:10282267,10591058 -g1,17431:10946175,10591058 -g1,17431:11278129,10591058 -g1,17431:11610083,10591058 -g1,17431:11942037,10591058 -g1,17431:12273991,10591058 -g1,17431:12605945,10591058 -g1,17431:12937899,10591058 -h1,17431:13269853,10591058:0,0,0 -k1,17431:32583029,10591058:19313176 -g1,17431:32583029,10591058 -) -(1,17431:6630773,11275913:25952256,424439,9908 -h1,17431:6630773,11275913:0,0,0 -g1,17431:7626635,11275913 -g1,17431:8290543,11275913 -g1,17431:8622497,11275913 -g1,17431:8954451,11275913 -g1,17431:9286405,11275913 -g1,17431:9618359,11275913 -g1,17431:10282267,11275913 -g1,17431:11942037,11275913 -g1,17431:12273991,11275913 -g1,17431:12605945,11275913 -g1,17431:12937899,11275913 -h1,17431:13269853,11275913:0,0,0 -k1,17431:32583029,11275913:19313176 -g1,17431:32583029,11275913 -) -] -) -g1,17432:32583029,11285821 -g1,17432:6630773,11285821 -g1,17432:6630773,11285821 -g1,17432:32583029,11285821 -g1,17432:32583029,11285821 -) -h1,17432:6630773,11482429:0,0,0 -v1,17436:6630773,12167284:0,393216,0 -(1,17452:6630773,19230684:25952256,7456616,196608 -g1,17452:6630773,19230684 -g1,17452:6630773,19230684 -g1,17452:6434165,19230684 -(1,17452:6434165,19230684:0,7456616,196608 -r1,17519:32779637,19230684:26345472,7653224,196608 -k1,17452:6434165,19230684:-26345472 -) -(1,17452:6434165,19230684:26345472,7456616,196608 -[1,17452:6630773,19230684:25952256,7260008,0 -(1,17438:6630773,12401721:25952256,431045,112852 -(1,17437:6630773,12401721:0,0,0 -g1,17437:6630773,12401721 -g1,17437:6630773,12401721 -g1,17437:6303093,12401721 -(1,17437:6303093,12401721:0,0,0 -) -g1,17437:6630773,12401721 -) -k1,17438:6630773,12401721:0 -g1,17438:10946174,12401721 -g1,17438:11610082,12401721 -g1,17438:15261575,12401721 -g1,17438:15925483,12401721 -g1,17438:16589391,12401721 -h1,17438:19576976,12401721:0,0,0 -k1,17438:32583029,12401721:13006053 -g1,17438:32583029,12401721 -) -(1,17442:6630773,13741936:25952256,431045,112852 -g1,17442:7626635,13741936 -g1,17442:10282267,13741936 -g1,17442:11942037,13741936 -g1,17442:13269853,13741936 -g1,17442:13933761,13741936 -k1,17442:32583029,13741936:14333867 -g1,17442:32583029,13741936 -) -(1,17451:6630773,14426791:25952256,424439,9908 -(1,17442:6630773,14426791:0,0,0 -g1,17442:6630773,14426791 -g1,17442:6630773,14426791 -g1,17442:6303093,14426791 -(1,17442:6303093,14426791:0,0,0 -) -g1,17442:6630773,14426791 -) -g1,17451:7626635,14426791 -g1,17451:8290543,14426791 -g1,17451:8954451,14426791 -g1,17451:11610083,14426791 -g1,17451:12273991,14426791 -g1,17451:12937899,14426791 -h1,17451:13269853,14426791:0,0,0 -k1,17451:32583029,14426791:19313176 -g1,17451:32583029,14426791 -) -(1,17451:6630773,15111646:25952256,424439,6605 -h1,17451:6630773,15111646:0,0,0 -g1,17451:7626635,15111646 -g1,17451:7958589,15111646 -g1,17451:8290543,15111646 -g1,17451:8622497,15111646 -g1,17451:8954451,15111646 -g1,17451:10282267,15111646 -g1,17451:12937899,15111646 -h1,17451:15261577,15111646:0,0,0 -k1,17451:32583029,15111646:17321452 -g1,17451:32583029,15111646 -) -(1,17451:6630773,15796501:25952256,424439,6605 -h1,17451:6630773,15796501:0,0,0 -g1,17451:7626635,15796501 -g1,17451:7958589,15796501 -g1,17451:8290543,15796501 -g1,17451:10282267,15796501 -g1,17451:12273991,15796501 -g1,17451:12605945,15796501 -g1,17451:12937899,15796501 -k1,17451:12937899,15796501:0 -h1,17451:14597669,15796501:0,0,0 -k1,17451:32583029,15796501:17985360 -g1,17451:32583029,15796501 -) -(1,17451:6630773,16481356:25952256,424439,6605 -h1,17451:6630773,16481356:0,0,0 -g1,17451:7626635,16481356 -g1,17451:8290543,16481356 -g1,17451:8622497,16481356 -g1,17451:8954451,16481356 -g1,17451:9286405,16481356 -g1,17451:9618359,16481356 -g1,17451:10282267,16481356 -g1,17451:10946175,16481356 -g1,17451:11278129,16481356 -g1,17451:11610083,16481356 -g1,17451:11942037,16481356 -g1,17451:12273991,16481356 -g1,17451:12605945,16481356 -g1,17451:12937899,16481356 -h1,17451:13269853,16481356:0,0,0 -k1,17451:32583029,16481356:19313176 -g1,17451:32583029,16481356 -) -(1,17451:6630773,17166211:25952256,424439,6605 -h1,17451:6630773,17166211:0,0,0 -g1,17451:7626635,17166211 -g1,17451:8290543,17166211 -g1,17451:8622497,17166211 -g1,17451:8954451,17166211 -g1,17451:9286405,17166211 -g1,17451:9618359,17166211 -g1,17451:10282267,17166211 -g1,17451:10946175,17166211 -g1,17451:11278129,17166211 -g1,17451:11610083,17166211 -g1,17451:11942037,17166211 -g1,17451:12273991,17166211 -g1,17451:12605945,17166211 -g1,17451:12937899,17166211 -h1,17451:13269853,17166211:0,0,0 -k1,17451:32583029,17166211:19313176 -g1,17451:32583029,17166211 -) -(1,17451:6630773,17851066:25952256,424439,9908 -h1,17451:6630773,17851066:0,0,0 -g1,17451:7626635,17851066 -g1,17451:8290543,17851066 -g1,17451:8622497,17851066 -g1,17451:8954451,17851066 -g1,17451:9286405,17851066 -g1,17451:9618359,17851066 -g1,17451:10282267,17851066 -g1,17451:10946175,17851066 -g1,17451:11278129,17851066 -g1,17451:11610083,17851066 -g1,17451:11942037,17851066 -g1,17451:12273991,17851066 -g1,17451:12605945,17851066 -g1,17451:12937899,17851066 -h1,17451:13269853,17851066:0,0,0 -k1,17451:32583029,17851066:19313176 -g1,17451:32583029,17851066 -) -(1,17451:6630773,18535921:25952256,424439,6605 -h1,17451:6630773,18535921:0,0,0 -g1,17451:7626635,18535921 -g1,17451:8290543,18535921 -g1,17451:8622497,18535921 -g1,17451:8954451,18535921 -g1,17451:9286405,18535921 -g1,17451:9618359,18535921 -g1,17451:10282267,18535921 -g1,17451:10946175,18535921 -g1,17451:11278129,18535921 -g1,17451:11610083,18535921 -g1,17451:11942037,18535921 -g1,17451:12273991,18535921 -g1,17451:12605945,18535921 -g1,17451:12937899,18535921 -h1,17451:13269853,18535921:0,0,0 -k1,17451:32583029,18535921:19313176 -g1,17451:32583029,18535921 -) -(1,17451:6630773,19220776:25952256,398014,9908 -h1,17451:6630773,19220776:0,0,0 -g1,17451:7626635,19220776 -g1,17451:8290543,19220776 -g1,17451:8622497,19220776 -g1,17451:8954451,19220776 -g1,17451:9286405,19220776 -g1,17451:9618359,19220776 -g1,17451:10282267,19220776 -g1,17451:11942037,19220776 -g1,17451:12273991,19220776 -g1,17451:12605945,19220776 -g1,17451:12937899,19220776 -h1,17451:13269853,19220776:0,0,0 -k1,17451:32583029,19220776:19313176 -g1,17451:32583029,19220776 -) -] -) -g1,17452:32583029,19230684 -g1,17452:6630773,19230684 -g1,17452:6630773,19230684 -g1,17452:32583029,19230684 -g1,17452:32583029,19230684 -) -h1,17452:6630773,19427292:0,0,0 -(1,17456:6630773,20292372:25952256,505283,134348 -h1,17455:6630773,20292372:983040,0,0 -g1,17455:8715473,20292372 -g1,17455:10581283,20292372 -g1,17455:12017832,20292372 -g1,17455:14898139,20292372 -g1,17455:16631566,20292372 -g1,17455:17446833,20292372 -(1,17455:17446833,20292372:0,414482,115847 -r1,17519:17805099,20292372:358266,530329,115847 -k1,17455:17446833,20292372:-358266 -) -(1,17455:17446833,20292372:358266,414482,115847 -k1,17455:17446833,20292372:3277 -h1,17455:17801822,20292372:0,411205,112570 -) -g1,17455:18004328,20292372 -g1,17455:19488063,20292372 -g1,17455:20502560,20292372 -g1,17455:21768060,20292372 -g1,17455:23948442,20292372 -g1,17455:25681869,20292372 -g1,17455:26497136,20292372 -(1,17455:26497136,20292372:0,414482,115847 -r1,17519:26855402,20292372:358266,530329,115847 -k1,17455:26497136,20292372:-358266 -) -(1,17455:26497136,20292372:358266,414482,115847 -k1,17455:26497136,20292372:3277 -h1,17455:26852125,20292372:0,411205,112570 -) -g1,17455:27054631,20292372 -g1,17455:28445305,20292372 -g1,17455:29858261,20292372 -k1,17456:32583029,20292372:972336 -g1,17456:32583029,20292372 -) -v1,17458:6630773,20977227:0,393216,0 -(1,17473:6630773,27352469:25952256,6768458,196608 -g1,17473:6630773,27352469 -g1,17473:6630773,27352469 -g1,17473:6434165,27352469 -(1,17473:6434165,27352469:0,6768458,196608 -r1,17519:32779637,27352469:26345472,6965066,196608 -k1,17473:6434165,27352469:-26345472 -) -(1,17473:6434165,27352469:26345472,6768458,196608 -[1,17473:6630773,27352469:25952256,6571850,0 -(1,17460:6630773,21211664:25952256,431045,112852 -(1,17459:6630773,21211664:0,0,0 -g1,17459:6630773,21211664 -g1,17459:6630773,21211664 -g1,17459:6303093,21211664 -(1,17459:6303093,21211664:0,0,0 -) -g1,17459:6630773,21211664 -) -k1,17460:6630773,21211664:0 -g1,17460:10946174,21211664 -g1,17460:11610082,21211664 -g1,17460:14929621,21211664 -g1,17460:15593529,21211664 -g1,17460:16257437,21211664 -h1,17460:19576976,21211664:0,0,0 -k1,17460:32583029,21211664:13006053 -g1,17460:32583029,21211664 -) -(1,17464:6630773,22551879:25952256,431045,112852 -g1,17464:7626635,22551879 -g1,17464:10282267,22551879 -g1,17464:11942037,22551879 -g1,17464:13269853,22551879 -g1,17464:13933761,22551879 -k1,17464:32583029,22551879:14333867 -g1,17464:32583029,22551879 -) -(1,17472:6630773,23236734:25952256,424439,9908 -(1,17464:6630773,23236734:0,0,0 -g1,17464:6630773,23236734 -g1,17464:6630773,23236734 -g1,17464:6303093,23236734 -(1,17464:6303093,23236734:0,0,0 -) -g1,17464:6630773,23236734 -) -g1,17472:7626635,23236734 -g1,17472:8290543,23236734 -g1,17472:8954451,23236734 -g1,17472:11610083,23236734 -g1,17472:12273991,23236734 -g1,17472:12937899,23236734 -h1,17472:13269853,23236734:0,0,0 -k1,17472:32583029,23236734:19313176 -g1,17472:32583029,23236734 -) -(1,17472:6630773,23921589:25952256,424439,6605 -h1,17472:6630773,23921589:0,0,0 -g1,17472:7626635,23921589 -g1,17472:7958589,23921589 -g1,17472:8290543,23921589 -g1,17472:8622497,23921589 -g1,17472:8954451,23921589 -g1,17472:10282267,23921589 -g1,17472:12937899,23921589 -h1,17472:15261577,23921589:0,0,0 -k1,17472:32583029,23921589:17321452 -g1,17472:32583029,23921589 -) -(1,17472:6630773,24606444:25952256,424439,6605 -h1,17472:6630773,24606444:0,0,0 -g1,17472:7626635,24606444 -g1,17472:7958589,24606444 -g1,17472:8290543,24606444 -g1,17472:10282267,24606444 -g1,17472:12273991,24606444 -g1,17472:12605945,24606444 -g1,17472:12937899,24606444 -k1,17472:12937899,24606444:0 -h1,17472:14597669,24606444:0,0,0 -k1,17472:32583029,24606444:17985360 -g1,17472:32583029,24606444 -) -(1,17472:6630773,25291299:25952256,424439,6605 -h1,17472:6630773,25291299:0,0,0 -g1,17472:7626635,25291299 -g1,17472:8290543,25291299 -g1,17472:8622497,25291299 -g1,17472:8954451,25291299 -g1,17472:9286405,25291299 -g1,17472:9618359,25291299 -g1,17472:10282267,25291299 -g1,17472:10946175,25291299 -g1,17472:11278129,25291299 -g1,17472:11610083,25291299 -g1,17472:11942037,25291299 -g1,17472:12273991,25291299 -g1,17472:12605945,25291299 -g1,17472:12937899,25291299 -h1,17472:13269853,25291299:0,0,0 -k1,17472:32583029,25291299:19313176 -g1,17472:32583029,25291299 -) -(1,17472:6630773,25976154:25952256,424439,6605 -h1,17472:6630773,25976154:0,0,0 -g1,17472:7626635,25976154 -g1,17472:8290543,25976154 -g1,17472:8622497,25976154 -g1,17472:8954451,25976154 -g1,17472:9286405,25976154 -g1,17472:9618359,25976154 -g1,17472:10282267,25976154 -g1,17472:10946175,25976154 -g1,17472:11278129,25976154 -g1,17472:11610083,25976154 -g1,17472:11942037,25976154 -g1,17472:12273991,25976154 -g1,17472:12605945,25976154 -g1,17472:12937899,25976154 -h1,17472:13269853,25976154:0,0,0 -k1,17472:32583029,25976154:19313176 -g1,17472:32583029,25976154 -) -(1,17472:6630773,26661009:25952256,424439,9908 -h1,17472:6630773,26661009:0,0,0 -g1,17472:7626635,26661009 -g1,17472:8290543,26661009 -g1,17472:8622497,26661009 -g1,17472:8954451,26661009 -g1,17472:9286405,26661009 -g1,17472:9618359,26661009 -g1,17472:10282267,26661009 -g1,17472:10946175,26661009 -g1,17472:11278129,26661009 -g1,17472:11610083,26661009 -g1,17472:11942037,26661009 -g1,17472:12273991,26661009 -g1,17472:12605945,26661009 -g1,17472:12937899,26661009 -h1,17472:13269853,26661009:0,0,0 -k1,17472:32583029,26661009:19313176 -g1,17472:32583029,26661009 -) -(1,17472:6630773,27345864:25952256,424439,6605 -h1,17472:6630773,27345864:0,0,0 -g1,17472:7626635,27345864 -g1,17472:8290543,27345864 -g1,17472:8622497,27345864 -g1,17472:8954451,27345864 -g1,17472:9286405,27345864 -g1,17472:9618359,27345864 -g1,17472:10282267,27345864 -g1,17472:10946175,27345864 -g1,17472:11278129,27345864 -g1,17472:11610083,27345864 -g1,17472:11942037,27345864 -g1,17472:12273991,27345864 -g1,17472:12605945,27345864 -g1,17472:12937899,27345864 -h1,17472:13269853,27345864:0,0,0 -k1,17472:32583029,27345864:19313176 -g1,17472:32583029,27345864 -) -] -) -g1,17473:32583029,27352469 -g1,17473:6630773,27352469 -g1,17473:6630773,27352469 -g1,17473:32583029,27352469 -g1,17473:32583029,27352469 -) -h1,17473:6630773,27549077:0,0,0 -v1,17477:6630773,28233932:0,393216,0 -(1,17492:6630773,34609174:25952256,6768458,196608 -g1,17492:6630773,34609174 -g1,17492:6630773,34609174 -g1,17492:6434165,34609174 -(1,17492:6434165,34609174:0,6768458,196608 -r1,17519:32779637,34609174:26345472,6965066,196608 -k1,17492:6434165,34609174:-26345472 -) -(1,17492:6434165,34609174:26345472,6768458,196608 -[1,17492:6630773,34609174:25952256,6571850,0 -(1,17479:6630773,28468369:25952256,431045,112852 -(1,17478:6630773,28468369:0,0,0 -g1,17478:6630773,28468369 -g1,17478:6630773,28468369 -g1,17478:6303093,28468369 -(1,17478:6303093,28468369:0,0,0 -) -g1,17478:6630773,28468369 -) -k1,17479:6630773,28468369:0 -g1,17479:10946174,28468369 -g1,17479:11610082,28468369 -g1,17479:15261575,28468369 -g1,17479:15925483,28468369 -g1,17479:16589391,28468369 -h1,17479:19576976,28468369:0,0,0 -k1,17479:32583029,28468369:13006053 -g1,17479:32583029,28468369 -) -(1,17483:6630773,29808584:25952256,431045,112852 -g1,17483:7626635,29808584 -g1,17483:10282267,29808584 -g1,17483:11942037,29808584 -g1,17483:13269853,29808584 -g1,17483:13933761,29808584 -k1,17483:32583029,29808584:14333867 -g1,17483:32583029,29808584 -) -(1,17491:6630773,30493439:25952256,424439,9908 -(1,17483:6630773,30493439:0,0,0 -g1,17483:6630773,30493439 -g1,17483:6630773,30493439 -g1,17483:6303093,30493439 -(1,17483:6303093,30493439:0,0,0 -) -g1,17483:6630773,30493439 -) -g1,17491:7626635,30493439 -g1,17491:8290543,30493439 -g1,17491:8954451,30493439 -g1,17491:11610083,30493439 -g1,17491:12273991,30493439 -g1,17491:12937899,30493439 -h1,17491:13269853,30493439:0,0,0 -k1,17491:32583029,30493439:19313176 -g1,17491:32583029,30493439 -) -(1,17491:6630773,31178294:25952256,424439,6605 -h1,17491:6630773,31178294:0,0,0 -g1,17491:7626635,31178294 -g1,17491:7958589,31178294 -g1,17491:8290543,31178294 -g1,17491:8622497,31178294 -g1,17491:8954451,31178294 -g1,17491:10282267,31178294 -g1,17491:12937899,31178294 -h1,17491:15261577,31178294:0,0,0 -k1,17491:32583029,31178294:17321452 -g1,17491:32583029,31178294 -) -(1,17491:6630773,31863149:25952256,424439,6605 -h1,17491:6630773,31863149:0,0,0 -g1,17491:7626635,31863149 -g1,17491:7958589,31863149 -g1,17491:8290543,31863149 -g1,17491:10282267,31863149 -g1,17491:12273991,31863149 -g1,17491:12605945,31863149 -g1,17491:12937899,31863149 -k1,17491:12937899,31863149:0 -h1,17491:14597669,31863149:0,0,0 -k1,17491:32583029,31863149:17985360 -g1,17491:32583029,31863149 -) -(1,17491:6630773,32548004:25952256,424439,6605 -h1,17491:6630773,32548004:0,0,0 -g1,17491:7626635,32548004 -g1,17491:8290543,32548004 -g1,17491:8622497,32548004 -g1,17491:8954451,32548004 -g1,17491:9286405,32548004 -g1,17491:9618359,32548004 -g1,17491:10282267,32548004 -g1,17491:10946175,32548004 -g1,17491:11278129,32548004 -g1,17491:11610083,32548004 -g1,17491:11942037,32548004 -g1,17491:12273991,32548004 -g1,17491:12605945,32548004 -g1,17491:12937899,32548004 -h1,17491:13269853,32548004:0,0,0 -k1,17491:32583029,32548004:19313176 -g1,17491:32583029,32548004 -) -(1,17491:6630773,33232859:25952256,424439,6605 -h1,17491:6630773,33232859:0,0,0 -g1,17491:7626635,33232859 -g1,17491:8290543,33232859 -g1,17491:8622497,33232859 -g1,17491:8954451,33232859 -g1,17491:9286405,33232859 -g1,17491:9618359,33232859 -g1,17491:10282267,33232859 -g1,17491:10946175,33232859 -g1,17491:11278129,33232859 -g1,17491:11610083,33232859 -g1,17491:11942037,33232859 -g1,17491:12273991,33232859 -g1,17491:12605945,33232859 -g1,17491:12937899,33232859 -h1,17491:13269853,33232859:0,0,0 -k1,17491:32583029,33232859:19313176 -g1,17491:32583029,33232859 -) -(1,17491:6630773,33917714:25952256,424439,9908 -h1,17491:6630773,33917714:0,0,0 -g1,17491:7626635,33917714 -g1,17491:8290543,33917714 -g1,17491:8622497,33917714 -g1,17491:8954451,33917714 -g1,17491:9286405,33917714 -g1,17491:9618359,33917714 -g1,17491:10282267,33917714 -g1,17491:10946175,33917714 -g1,17491:11278129,33917714 -g1,17491:11610083,33917714 -g1,17491:11942037,33917714 -g1,17491:12273991,33917714 -g1,17491:12605945,33917714 -g1,17491:12937899,33917714 -h1,17491:13269853,33917714:0,0,0 -k1,17491:32583029,33917714:19313176 -g1,17491:32583029,33917714 -) -(1,17491:6630773,34602569:25952256,424439,6605 -h1,17491:6630773,34602569:0,0,0 -g1,17491:7626635,34602569 -g1,17491:8290543,34602569 -g1,17491:8622497,34602569 -g1,17491:8954451,34602569 -g1,17491:9286405,34602569 -g1,17491:9618359,34602569 -g1,17491:10282267,34602569 -g1,17491:10946175,34602569 -g1,17491:11278129,34602569 -g1,17491:11610083,34602569 -g1,17491:11942037,34602569 -g1,17491:12273991,34602569 -g1,17491:12605945,34602569 -g1,17491:12937899,34602569 -h1,17491:13269853,34602569:0,0,0 -k1,17491:32583029,34602569:19313176 -g1,17491:32583029,34602569 -) -] -) -g1,17492:32583029,34609174 -g1,17492:6630773,34609174 -g1,17492:6630773,34609174 -g1,17492:32583029,34609174 -g1,17492:32583029,34609174 -) -h1,17492:6630773,34805782:0,0,0 -(1,17496:6630773,35670862:25952256,513147,134348 -h1,17495:6630773,35670862:983040,0,0 -k1,17495:9287760,35670862:212494 -k1,17495:10368605,35670862:212493 -k1,17495:12344673,35670862:212494 -k1,17495:13576251,35670862:212493 -k1,17495:16270593,35670862:212494 -k1,17495:17679118,35670862:212493 -k1,17495:20917409,35670862:212494 -k1,17495:23970888,35670862:212493 -k1,17495:24944910,35670862:212494 -k1,17495:27303706,35670862:212493 -(1,17495:27303706,35670862:0,452978,122846 -r1,17519:31179090,35670862:3875384,575824,122846 -k1,17495:27303706,35670862:-3875384 -) -(1,17495:27303706,35670862:3875384,452978,122846 -k1,17495:27303706,35670862:3277 -h1,17495:31175813,35670862:0,411205,112570 -) -k1,17495:31391584,35670862:212494 -k1,17496:32583029,35670862:0 -) -(1,17496:6630773,36535942:25952256,513147,126483 -(1,17495:6630773,36535942:0,452978,122846 -r1,17519:10506157,36535942:3875384,575824,122846 -k1,17495:6630773,36535942:-3875384 -) -(1,17495:6630773,36535942:3875384,452978,122846 -k1,17495:6630773,36535942:3277 -h1,17495:10502880,36535942:0,411205,112570 -) -k1,17495:10893929,36535942:214102 -k1,17495:12982361,36535942:214102 -k1,17495:16222260,36535942:214102 -k1,17495:17811963,36535942:214102 -k1,17495:20036710,36535942:214102 -k1,17495:20606672,36535942:214102 -k1,17495:22632189,36535942:214102 -k1,17495:24130797,36535942:214102 -k1,17495:27046948,36535942:214102 -k1,17495:28636651,36535942:214102 -k1,17495:29869838,36535942:214102 -k1,17495:32583029,36535942:0 -) -(1,17496:6630773,37401022:25952256,513147,134348 -g1,17495:8397623,37401022 -(1,17495:8397623,37401022:0,414482,115847 -r1,17519:8755889,37401022:358266,530329,115847 -k1,17495:8397623,37401022:-358266 -) -(1,17495:8397623,37401022:358266,414482,115847 -k1,17495:8397623,37401022:3277 -h1,17495:8752612,37401022:0,411205,112570 -) -g1,17495:9128788,37401022 -g1,17495:12182765,37401022 -g1,17495:13916192,37401022 -g1,17495:15970090,37401022 -g1,17495:16978689,37401022 -g1,17495:18686557,37401022 -g1,17495:20866939,37401022 -g1,17495:21717596,37401022 -g1,17495:23451023,37401022 -g1,17495:24266290,37401022 -(1,17495:24266290,37401022:0,414482,115847 -r1,17519:24624556,37401022:358266,530329,115847 -k1,17495:24266290,37401022:-358266 -) -(1,17495:24266290,37401022:358266,414482,115847 -k1,17495:24266290,37401022:3277 -h1,17495:24621279,37401022:0,411205,112570 -) -k1,17496:32583029,37401022:7906045 -g1,17496:32583029,37401022 -) -(1,17498:6630773,38266102:25952256,513147,134348 -h1,17497:6630773,38266102:983040,0,0 -g1,17497:8300630,38266102 -g1,17497:9998667,38266102 -g1,17497:11435216,38266102 -g1,17497:13829246,38266102 -g1,17497:15562673,38266102 -g1,17497:17329523,38266102 -(1,17497:17329523,38266102:0,414482,115847 -r1,17519:17687789,38266102:358266,530329,115847 -k1,17497:17329523,38266102:-358266 -) -(1,17497:17329523,38266102:358266,414482,115847 -k1,17497:17329523,38266102:3277 -h1,17497:17684512,38266102:0,411205,112570 -) -g1,17497:17887018,38266102 -g1,17497:19370753,38266102 -g1,17497:21045197,38266102 -g1,17497:21600286,38266102 -g1,17497:23780668,38266102 -g1,17497:24595935,38266102 -(1,17497:24595935,38266102:0,414482,115847 -r1,17519:24954201,38266102:358266,530329,115847 -k1,17497:24595935,38266102:-358266 -) -(1,17497:24595935,38266102:358266,414482,115847 -k1,17497:24595935,38266102:3277 -h1,17497:24950924,38266102:0,411205,112570 -) -k1,17498:32583029,38266102:7576400 -g1,17498:32583029,38266102 -) -v1,17500:6630773,38950957:0,393216,0 -(1,17515:6630773,45324548:25952256,6766807,196608 -g1,17515:6630773,45324548 -g1,17515:6630773,45324548 -g1,17515:6434165,45324548 -(1,17515:6434165,45324548:0,6766807,196608 -r1,17519:32779637,45324548:26345472,6963415,196608 -k1,17515:6434165,45324548:-26345472 -) -(1,17515:6434165,45324548:26345472,6766807,196608 -[1,17515:6630773,45324548:25952256,6570199,0 -(1,17502:6630773,39185394:25952256,431045,112852 -(1,17501:6630773,39185394:0,0,0 -g1,17501:6630773,39185394 -g1,17501:6630773,39185394 -g1,17501:6303093,39185394 -(1,17501:6303093,39185394:0,0,0 -) -g1,17501:6630773,39185394 -) -k1,17502:6630773,39185394:0 -g1,17502:10614220,39185394 -g1,17502:11278128,39185394 -g1,17502:14597667,39185394 -g1,17502:15261575,39185394 -g1,17502:15925483,39185394 -h1,17502:19245022,39185394:0,0,0 -k1,17502:32583029,39185394:13338007 -g1,17502:32583029,39185394 -) -(1,17506:6630773,40525609:25952256,431045,112852 -g1,17506:7626635,40525609 -g1,17506:10282267,40525609 -g1,17506:11942037,40525609 -g1,17506:13269853,40525609 -g1,17506:13933761,40525609 -k1,17506:32583029,40525609:14333867 -g1,17506:32583029,40525609 -) -(1,17514:6630773,41210464:25952256,424439,6605 -(1,17506:6630773,41210464:0,0,0 -g1,17506:6630773,41210464 -g1,17506:6630773,41210464 -g1,17506:6303093,41210464 -(1,17506:6303093,41210464:0,0,0 -) -g1,17506:6630773,41210464 -) -g1,17514:7626635,41210464 -g1,17514:8290543,41210464 -g1,17514:8954451,41210464 -g1,17514:11610083,41210464 -g1,17514:12273991,41210464 -g1,17514:12937899,41210464 -h1,17514:13269853,41210464:0,0,0 -k1,17514:32583029,41210464:19313176 -g1,17514:32583029,41210464 -) -(1,17514:6630773,41895319:25952256,424439,6605 -h1,17514:6630773,41895319:0,0,0 -g1,17514:7626635,41895319 -g1,17514:7958589,41895319 -g1,17514:8290543,41895319 -g1,17514:8622497,41895319 -g1,17514:8954451,41895319 -g1,17514:10282267,41895319 -h1,17514:12605945,41895319:0,0,0 -k1,17514:32583029,41895319:19977084 -g1,17514:32583029,41895319 -) -(1,17514:6630773,42580174:25952256,424439,6605 -h1,17514:6630773,42580174:0,0,0 -g1,17514:7626635,42580174 -g1,17514:7958589,42580174 -g1,17514:8290543,42580174 -g1,17514:10282267,42580174 -k1,17514:10282267,42580174:0 -h1,17514:11942037,42580174:0,0,0 -k1,17514:32583029,42580174:20640992 -g1,17514:32583029,42580174 -) -(1,17514:6630773,43265029:25952256,407923,4954 -h1,17514:6630773,43265029:0,0,0 -g1,17514:7626635,43265029 -g1,17514:8290543,43265029 -g1,17514:8622497,43265029 -g1,17514:8954451,43265029 -g1,17514:9286405,43265029 -g1,17514:9618359,43265029 -g1,17514:10282267,43265029 -h1,17514:10614221,43265029:0,0,0 -k1,17514:32583029,43265029:21968808 -g1,17514:32583029,43265029 -) -(1,17514:6630773,43949884:25952256,407923,4954 -h1,17514:6630773,43949884:0,0,0 -g1,17514:7626635,43949884 -g1,17514:8290543,43949884 -g1,17514:8622497,43949884 -g1,17514:8954451,43949884 -g1,17514:9286405,43949884 -g1,17514:9618359,43949884 -g1,17514:10282267,43949884 -h1,17514:10614221,43949884:0,0,0 -k1,17514:32583029,43949884:21968808 -g1,17514:32583029,43949884 -) -(1,17514:6630773,44634739:25952256,407923,9908 -h1,17514:6630773,44634739:0,0,0 -g1,17514:7626635,44634739 -g1,17514:8290543,44634739 -g1,17514:8622497,44634739 -g1,17514:8954451,44634739 -g1,17514:9286405,44634739 -g1,17514:9618359,44634739 -g1,17514:10282267,44634739 -h1,17514:10614221,44634739:0,0,0 -k1,17514:32583029,44634739:21968808 -g1,17514:32583029,44634739 -) -(1,17514:6630773,45319594:25952256,398014,4954 -h1,17514:6630773,45319594:0,0,0 -g1,17514:7626635,45319594 -g1,17514:8290543,45319594 -g1,17514:8622497,45319594 -g1,17514:8954451,45319594 -g1,17514:9286405,45319594 -g1,17514:9618359,45319594 -g1,17514:10282267,45319594 -h1,17514:10614221,45319594:0,0,0 -k1,17514:32583029,45319594:21968808 -g1,17514:32583029,45319594 -) -] -) -g1,17515:32583029,45324548 -g1,17515:6630773,45324548 -g1,17515:6630773,45324548 -g1,17515:32583029,45324548 -g1,17515:32583029,45324548 -) -h1,17515:6630773,45521156:0,0,0 -] -(1,17519:32583029,45706769:0,0,0 -g1,17519:32583029,45706769 -) -) -] -(1,17519:6630773,47279633:25952256,0,0 -h1,17519:6630773,47279633:25952256,0,0 -) -] -(1,17519:4262630,4025873:0,0,0 -[1,17519:-473656,4025873:0,0,0 -(1,17519:-473656,-710413:0,0,0 -(1,17519:-473656,-710413:0,0,0 -g1,17519:-473656,-710413 -) -g1,17519:-473656,-710413 +[1,17517:3078558,4812305:0,0,0 +(1,17517:3078558,49800853:0,16384,2228224 +g1,17517:29030814,49800853 +g1,17517:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17517:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17517:37855564,49800853:1179648,16384,0 +) +) +k1,17517:3078556,49800853:-34777008 +) +] +g1,17517:6630773,4812305 +k1,17517:23347041,4812305:15520891 +g1,17517:23960458,4812305 +g1,17517:27572802,4812305 +g1,17517:29306229,4812305 +) +) +] +[1,17517:6630773,45706769:25952256,40108032,0 +(1,17517:6630773,45706769:25952256,40108032,0 +(1,17517:6630773,45706769:0,0,0 +g1,17517:6630773,45706769 +) +[1,17517:6630773,45706769:25952256,40108032,0 +v1,17430:6630773,6254097:0,393216,0 +(1,17430:6630773,11285821:25952256,5424940,196608 +g1,17430:6630773,11285821 +g1,17430:6630773,11285821 +g1,17430:6434165,11285821 +(1,17430:6434165,11285821:0,5424940,196608 +r1,17517:32779637,11285821:26345472,5621548,196608 +k1,17430:6434165,11285821:-26345472 +) +(1,17430:6434165,11285821:26345472,5424940,196608 +[1,17430:6630773,11285821:25952256,5228332,0 +(1,17429:6630773,6481928:25952256,424439,9908 +(1,17420:6630773,6481928:0,0,0 +g1,17420:6630773,6481928 +g1,17420:6630773,6481928 +g1,17420:6303093,6481928 +(1,17420:6303093,6481928:0,0,0 +) +g1,17420:6630773,6481928 +) +g1,17429:7626635,6481928 +g1,17429:8290543,6481928 +g1,17429:8954451,6481928 +g1,17429:11610083,6481928 +g1,17429:12273991,6481928 +g1,17429:12937899,6481928 +h1,17429:13269853,6481928:0,0,0 +k1,17429:32583029,6481928:19313176 +g1,17429:32583029,6481928 +) +(1,17429:6630773,7166783:25952256,424439,6605 +h1,17429:6630773,7166783:0,0,0 +g1,17429:7626635,7166783 +g1,17429:7958589,7166783 +g1,17429:8290543,7166783 +g1,17429:8622497,7166783 +g1,17429:8954451,7166783 +g1,17429:10282267,7166783 +g1,17429:12937899,7166783 +h1,17429:15261577,7166783:0,0,0 +k1,17429:32583029,7166783:17321452 +g1,17429:32583029,7166783 +) +(1,17429:6630773,7851638:25952256,424439,6605 +h1,17429:6630773,7851638:0,0,0 +g1,17429:7626635,7851638 +g1,17429:7958589,7851638 +g1,17429:8290543,7851638 +g1,17429:10282267,7851638 +g1,17429:12273991,7851638 +g1,17429:12605945,7851638 +g1,17429:12937899,7851638 +k1,17429:12937899,7851638:0 +h1,17429:14597669,7851638:0,0,0 +k1,17429:32583029,7851638:17985360 +g1,17429:32583029,7851638 +) +(1,17429:6630773,8536493:25952256,424439,6605 +h1,17429:6630773,8536493:0,0,0 +g1,17429:7626635,8536493 +g1,17429:8290543,8536493 +g1,17429:8622497,8536493 +g1,17429:8954451,8536493 +g1,17429:9286405,8536493 +g1,17429:9618359,8536493 +g1,17429:10282267,8536493 +g1,17429:10946175,8536493 +g1,17429:11278129,8536493 +g1,17429:11610083,8536493 +g1,17429:11942037,8536493 +g1,17429:12273991,8536493 +g1,17429:12605945,8536493 +g1,17429:12937899,8536493 +h1,17429:13269853,8536493:0,0,0 +k1,17429:32583029,8536493:19313176 +g1,17429:32583029,8536493 +) +(1,17429:6630773,9221348:25952256,424439,6605 +h1,17429:6630773,9221348:0,0,0 +g1,17429:7626635,9221348 +g1,17429:8290543,9221348 +g1,17429:8622497,9221348 +g1,17429:8954451,9221348 +g1,17429:9286405,9221348 +g1,17429:9618359,9221348 +g1,17429:10282267,9221348 +g1,17429:10946175,9221348 +g1,17429:11278129,9221348 +g1,17429:11610083,9221348 +g1,17429:11942037,9221348 +g1,17429:12273991,9221348 +g1,17429:12605945,9221348 +g1,17429:12937899,9221348 +h1,17429:13269853,9221348:0,0,0 +k1,17429:32583029,9221348:19313176 +g1,17429:32583029,9221348 +) +(1,17429:6630773,9906203:25952256,424439,9908 +h1,17429:6630773,9906203:0,0,0 +g1,17429:7626635,9906203 +g1,17429:8290543,9906203 +g1,17429:8622497,9906203 +g1,17429:8954451,9906203 +g1,17429:9286405,9906203 +g1,17429:9618359,9906203 +g1,17429:10282267,9906203 +g1,17429:10946175,9906203 +g1,17429:11278129,9906203 +g1,17429:11610083,9906203 +g1,17429:11942037,9906203 +g1,17429:12273991,9906203 +g1,17429:12605945,9906203 +g1,17429:12937899,9906203 +h1,17429:13269853,9906203:0,0,0 +k1,17429:32583029,9906203:19313176 +g1,17429:32583029,9906203 +) +(1,17429:6630773,10591058:25952256,424439,6605 +h1,17429:6630773,10591058:0,0,0 +g1,17429:7626635,10591058 +g1,17429:8290543,10591058 +g1,17429:8622497,10591058 +g1,17429:8954451,10591058 +g1,17429:9286405,10591058 +g1,17429:9618359,10591058 +g1,17429:10282267,10591058 +g1,17429:10946175,10591058 +g1,17429:11278129,10591058 +g1,17429:11610083,10591058 +g1,17429:11942037,10591058 +g1,17429:12273991,10591058 +g1,17429:12605945,10591058 +g1,17429:12937899,10591058 +h1,17429:13269853,10591058:0,0,0 +k1,17429:32583029,10591058:19313176 +g1,17429:32583029,10591058 +) +(1,17429:6630773,11275913:25952256,424439,9908 +h1,17429:6630773,11275913:0,0,0 +g1,17429:7626635,11275913 +g1,17429:8290543,11275913 +g1,17429:8622497,11275913 +g1,17429:8954451,11275913 +g1,17429:9286405,11275913 +g1,17429:9618359,11275913 +g1,17429:10282267,11275913 +g1,17429:11942037,11275913 +g1,17429:12273991,11275913 +g1,17429:12605945,11275913 +g1,17429:12937899,11275913 +h1,17429:13269853,11275913:0,0,0 +k1,17429:32583029,11275913:19313176 +g1,17429:32583029,11275913 +) +] +) +g1,17430:32583029,11285821 +g1,17430:6630773,11285821 +g1,17430:6630773,11285821 +g1,17430:32583029,11285821 +g1,17430:32583029,11285821 +) +h1,17430:6630773,11482429:0,0,0 +v1,17434:6630773,12167284:0,393216,0 +(1,17450:6630773,19230684:25952256,7456616,196608 +g1,17450:6630773,19230684 +g1,17450:6630773,19230684 +g1,17450:6434165,19230684 +(1,17450:6434165,19230684:0,7456616,196608 +r1,17517:32779637,19230684:26345472,7653224,196608 +k1,17450:6434165,19230684:-26345472 +) +(1,17450:6434165,19230684:26345472,7456616,196608 +[1,17450:6630773,19230684:25952256,7260008,0 +(1,17436:6630773,12401721:25952256,431045,112852 +(1,17435:6630773,12401721:0,0,0 +g1,17435:6630773,12401721 +g1,17435:6630773,12401721 +g1,17435:6303093,12401721 +(1,17435:6303093,12401721:0,0,0 +) +g1,17435:6630773,12401721 +) +k1,17436:6630773,12401721:0 +g1,17436:10946174,12401721 +g1,17436:11610082,12401721 +g1,17436:15261575,12401721 +g1,17436:15925483,12401721 +g1,17436:16589391,12401721 +h1,17436:19576976,12401721:0,0,0 +k1,17436:32583029,12401721:13006053 +g1,17436:32583029,12401721 +) +(1,17440:6630773,13741936:25952256,431045,112852 +g1,17440:7626635,13741936 +g1,17440:10282267,13741936 +g1,17440:11942037,13741936 +g1,17440:13269853,13741936 +g1,17440:13933761,13741936 +k1,17440:32583029,13741936:14333867 +g1,17440:32583029,13741936 +) +(1,17449:6630773,14426791:25952256,424439,9908 +(1,17440:6630773,14426791:0,0,0 +g1,17440:6630773,14426791 +g1,17440:6630773,14426791 +g1,17440:6303093,14426791 +(1,17440:6303093,14426791:0,0,0 +) +g1,17440:6630773,14426791 +) +g1,17449:7626635,14426791 +g1,17449:8290543,14426791 +g1,17449:8954451,14426791 +g1,17449:11610083,14426791 +g1,17449:12273991,14426791 +g1,17449:12937899,14426791 +h1,17449:13269853,14426791:0,0,0 +k1,17449:32583029,14426791:19313176 +g1,17449:32583029,14426791 +) +(1,17449:6630773,15111646:25952256,424439,6605 +h1,17449:6630773,15111646:0,0,0 +g1,17449:7626635,15111646 +g1,17449:7958589,15111646 +g1,17449:8290543,15111646 +g1,17449:8622497,15111646 +g1,17449:8954451,15111646 +g1,17449:10282267,15111646 +g1,17449:12937899,15111646 +h1,17449:15261577,15111646:0,0,0 +k1,17449:32583029,15111646:17321452 +g1,17449:32583029,15111646 +) +(1,17449:6630773,15796501:25952256,424439,6605 +h1,17449:6630773,15796501:0,0,0 +g1,17449:7626635,15796501 +g1,17449:7958589,15796501 +g1,17449:8290543,15796501 +g1,17449:10282267,15796501 +g1,17449:12273991,15796501 +g1,17449:12605945,15796501 +g1,17449:12937899,15796501 +k1,17449:12937899,15796501:0 +h1,17449:14597669,15796501:0,0,0 +k1,17449:32583029,15796501:17985360 +g1,17449:32583029,15796501 +) +(1,17449:6630773,16481356:25952256,424439,6605 +h1,17449:6630773,16481356:0,0,0 +g1,17449:7626635,16481356 +g1,17449:8290543,16481356 +g1,17449:8622497,16481356 +g1,17449:8954451,16481356 +g1,17449:9286405,16481356 +g1,17449:9618359,16481356 +g1,17449:10282267,16481356 +g1,17449:10946175,16481356 +g1,17449:11278129,16481356 +g1,17449:11610083,16481356 +g1,17449:11942037,16481356 +g1,17449:12273991,16481356 +g1,17449:12605945,16481356 +g1,17449:12937899,16481356 +h1,17449:13269853,16481356:0,0,0 +k1,17449:32583029,16481356:19313176 +g1,17449:32583029,16481356 +) +(1,17449:6630773,17166211:25952256,424439,6605 +h1,17449:6630773,17166211:0,0,0 +g1,17449:7626635,17166211 +g1,17449:8290543,17166211 +g1,17449:8622497,17166211 +g1,17449:8954451,17166211 +g1,17449:9286405,17166211 +g1,17449:9618359,17166211 +g1,17449:10282267,17166211 +g1,17449:10946175,17166211 +g1,17449:11278129,17166211 +g1,17449:11610083,17166211 +g1,17449:11942037,17166211 +g1,17449:12273991,17166211 +g1,17449:12605945,17166211 +g1,17449:12937899,17166211 +h1,17449:13269853,17166211:0,0,0 +k1,17449:32583029,17166211:19313176 +g1,17449:32583029,17166211 +) +(1,17449:6630773,17851066:25952256,424439,9908 +h1,17449:6630773,17851066:0,0,0 +g1,17449:7626635,17851066 +g1,17449:8290543,17851066 +g1,17449:8622497,17851066 +g1,17449:8954451,17851066 +g1,17449:9286405,17851066 +g1,17449:9618359,17851066 +g1,17449:10282267,17851066 +g1,17449:10946175,17851066 +g1,17449:11278129,17851066 +g1,17449:11610083,17851066 +g1,17449:11942037,17851066 +g1,17449:12273991,17851066 +g1,17449:12605945,17851066 +g1,17449:12937899,17851066 +h1,17449:13269853,17851066:0,0,0 +k1,17449:32583029,17851066:19313176 +g1,17449:32583029,17851066 +) +(1,17449:6630773,18535921:25952256,424439,6605 +h1,17449:6630773,18535921:0,0,0 +g1,17449:7626635,18535921 +g1,17449:8290543,18535921 +g1,17449:8622497,18535921 +g1,17449:8954451,18535921 +g1,17449:9286405,18535921 +g1,17449:9618359,18535921 +g1,17449:10282267,18535921 +g1,17449:10946175,18535921 +g1,17449:11278129,18535921 +g1,17449:11610083,18535921 +g1,17449:11942037,18535921 +g1,17449:12273991,18535921 +g1,17449:12605945,18535921 +g1,17449:12937899,18535921 +h1,17449:13269853,18535921:0,0,0 +k1,17449:32583029,18535921:19313176 +g1,17449:32583029,18535921 +) +(1,17449:6630773,19220776:25952256,398014,9908 +h1,17449:6630773,19220776:0,0,0 +g1,17449:7626635,19220776 +g1,17449:8290543,19220776 +g1,17449:8622497,19220776 +g1,17449:8954451,19220776 +g1,17449:9286405,19220776 +g1,17449:9618359,19220776 +g1,17449:10282267,19220776 +g1,17449:11942037,19220776 +g1,17449:12273991,19220776 +g1,17449:12605945,19220776 +g1,17449:12937899,19220776 +h1,17449:13269853,19220776:0,0,0 +k1,17449:32583029,19220776:19313176 +g1,17449:32583029,19220776 +) +] +) +g1,17450:32583029,19230684 +g1,17450:6630773,19230684 +g1,17450:6630773,19230684 +g1,17450:32583029,19230684 +g1,17450:32583029,19230684 +) +h1,17450:6630773,19427292:0,0,0 +(1,17454:6630773,20292372:25952256,505283,134348 +h1,17453:6630773,20292372:983040,0,0 +g1,17453:8715473,20292372 +g1,17453:10581283,20292372 +g1,17453:12017832,20292372 +g1,17453:14898139,20292372 +g1,17453:16631566,20292372 +g1,17453:17446833,20292372 +(1,17453:17446833,20292372:0,414482,115847 +r1,17517:17805099,20292372:358266,530329,115847 +k1,17453:17446833,20292372:-358266 +) +(1,17453:17446833,20292372:358266,414482,115847 +k1,17453:17446833,20292372:3277 +h1,17453:17801822,20292372:0,411205,112570 +) +g1,17453:18004328,20292372 +g1,17453:19488063,20292372 +g1,17453:20502560,20292372 +g1,17453:21768060,20292372 +g1,17453:23948442,20292372 +g1,17453:25681869,20292372 +g1,17453:26497136,20292372 +(1,17453:26497136,20292372:0,414482,115847 +r1,17517:26855402,20292372:358266,530329,115847 +k1,17453:26497136,20292372:-358266 +) +(1,17453:26497136,20292372:358266,414482,115847 +k1,17453:26497136,20292372:3277 +h1,17453:26852125,20292372:0,411205,112570 +) +g1,17453:27054631,20292372 +g1,17453:28445305,20292372 +g1,17453:29858261,20292372 +k1,17454:32583029,20292372:972336 +g1,17454:32583029,20292372 +) +v1,17456:6630773,20977227:0,393216,0 +(1,17471:6630773,27352469:25952256,6768458,196608 +g1,17471:6630773,27352469 +g1,17471:6630773,27352469 +g1,17471:6434165,27352469 +(1,17471:6434165,27352469:0,6768458,196608 +r1,17517:32779637,27352469:26345472,6965066,196608 +k1,17471:6434165,27352469:-26345472 +) +(1,17471:6434165,27352469:26345472,6768458,196608 +[1,17471:6630773,27352469:25952256,6571850,0 +(1,17458:6630773,21211664:25952256,431045,112852 +(1,17457:6630773,21211664:0,0,0 +g1,17457:6630773,21211664 +g1,17457:6630773,21211664 +g1,17457:6303093,21211664 +(1,17457:6303093,21211664:0,0,0 +) +g1,17457:6630773,21211664 +) +k1,17458:6630773,21211664:0 +g1,17458:10946174,21211664 +g1,17458:11610082,21211664 +g1,17458:14929621,21211664 +g1,17458:15593529,21211664 +g1,17458:16257437,21211664 +h1,17458:19576976,21211664:0,0,0 +k1,17458:32583029,21211664:13006053 +g1,17458:32583029,21211664 +) +(1,17462:6630773,22551879:25952256,431045,112852 +g1,17462:7626635,22551879 +g1,17462:10282267,22551879 +g1,17462:11942037,22551879 +g1,17462:13269853,22551879 +g1,17462:13933761,22551879 +k1,17462:32583029,22551879:14333867 +g1,17462:32583029,22551879 +) +(1,17470:6630773,23236734:25952256,424439,9908 +(1,17462:6630773,23236734:0,0,0 +g1,17462:6630773,23236734 +g1,17462:6630773,23236734 +g1,17462:6303093,23236734 +(1,17462:6303093,23236734:0,0,0 +) +g1,17462:6630773,23236734 +) +g1,17470:7626635,23236734 +g1,17470:8290543,23236734 +g1,17470:8954451,23236734 +g1,17470:11610083,23236734 +g1,17470:12273991,23236734 +g1,17470:12937899,23236734 +h1,17470:13269853,23236734:0,0,0 +k1,17470:32583029,23236734:19313176 +g1,17470:32583029,23236734 +) +(1,17470:6630773,23921589:25952256,424439,6605 +h1,17470:6630773,23921589:0,0,0 +g1,17470:7626635,23921589 +g1,17470:7958589,23921589 +g1,17470:8290543,23921589 +g1,17470:8622497,23921589 +g1,17470:8954451,23921589 +g1,17470:10282267,23921589 +g1,17470:12937899,23921589 +h1,17470:15261577,23921589:0,0,0 +k1,17470:32583029,23921589:17321452 +g1,17470:32583029,23921589 +) +(1,17470:6630773,24606444:25952256,424439,6605 +h1,17470:6630773,24606444:0,0,0 +g1,17470:7626635,24606444 +g1,17470:7958589,24606444 +g1,17470:8290543,24606444 +g1,17470:10282267,24606444 +g1,17470:12273991,24606444 +g1,17470:12605945,24606444 +g1,17470:12937899,24606444 +k1,17470:12937899,24606444:0 +h1,17470:14597669,24606444:0,0,0 +k1,17470:32583029,24606444:17985360 +g1,17470:32583029,24606444 +) +(1,17470:6630773,25291299:25952256,424439,6605 +h1,17470:6630773,25291299:0,0,0 +g1,17470:7626635,25291299 +g1,17470:8290543,25291299 +g1,17470:8622497,25291299 +g1,17470:8954451,25291299 +g1,17470:9286405,25291299 +g1,17470:9618359,25291299 +g1,17470:10282267,25291299 +g1,17470:10946175,25291299 +g1,17470:11278129,25291299 +g1,17470:11610083,25291299 +g1,17470:11942037,25291299 +g1,17470:12273991,25291299 +g1,17470:12605945,25291299 +g1,17470:12937899,25291299 +h1,17470:13269853,25291299:0,0,0 +k1,17470:32583029,25291299:19313176 +g1,17470:32583029,25291299 +) +(1,17470:6630773,25976154:25952256,424439,6605 +h1,17470:6630773,25976154:0,0,0 +g1,17470:7626635,25976154 +g1,17470:8290543,25976154 +g1,17470:8622497,25976154 +g1,17470:8954451,25976154 +g1,17470:9286405,25976154 +g1,17470:9618359,25976154 +g1,17470:10282267,25976154 +g1,17470:10946175,25976154 +g1,17470:11278129,25976154 +g1,17470:11610083,25976154 +g1,17470:11942037,25976154 +g1,17470:12273991,25976154 +g1,17470:12605945,25976154 +g1,17470:12937899,25976154 +h1,17470:13269853,25976154:0,0,0 +k1,17470:32583029,25976154:19313176 +g1,17470:32583029,25976154 +) +(1,17470:6630773,26661009:25952256,424439,9908 +h1,17470:6630773,26661009:0,0,0 +g1,17470:7626635,26661009 +g1,17470:8290543,26661009 +g1,17470:8622497,26661009 +g1,17470:8954451,26661009 +g1,17470:9286405,26661009 +g1,17470:9618359,26661009 +g1,17470:10282267,26661009 +g1,17470:10946175,26661009 +g1,17470:11278129,26661009 +g1,17470:11610083,26661009 +g1,17470:11942037,26661009 +g1,17470:12273991,26661009 +g1,17470:12605945,26661009 +g1,17470:12937899,26661009 +h1,17470:13269853,26661009:0,0,0 +k1,17470:32583029,26661009:19313176 +g1,17470:32583029,26661009 +) +(1,17470:6630773,27345864:25952256,424439,6605 +h1,17470:6630773,27345864:0,0,0 +g1,17470:7626635,27345864 +g1,17470:8290543,27345864 +g1,17470:8622497,27345864 +g1,17470:8954451,27345864 +g1,17470:9286405,27345864 +g1,17470:9618359,27345864 +g1,17470:10282267,27345864 +g1,17470:10946175,27345864 +g1,17470:11278129,27345864 +g1,17470:11610083,27345864 +g1,17470:11942037,27345864 +g1,17470:12273991,27345864 +g1,17470:12605945,27345864 +g1,17470:12937899,27345864 +h1,17470:13269853,27345864:0,0,0 +k1,17470:32583029,27345864:19313176 +g1,17470:32583029,27345864 +) +] +) +g1,17471:32583029,27352469 +g1,17471:6630773,27352469 +g1,17471:6630773,27352469 +g1,17471:32583029,27352469 +g1,17471:32583029,27352469 +) +h1,17471:6630773,27549077:0,0,0 +v1,17475:6630773,28233932:0,393216,0 +(1,17490:6630773,34609174:25952256,6768458,196608 +g1,17490:6630773,34609174 +g1,17490:6630773,34609174 +g1,17490:6434165,34609174 +(1,17490:6434165,34609174:0,6768458,196608 +r1,17517:32779637,34609174:26345472,6965066,196608 +k1,17490:6434165,34609174:-26345472 +) +(1,17490:6434165,34609174:26345472,6768458,196608 +[1,17490:6630773,34609174:25952256,6571850,0 +(1,17477:6630773,28468369:25952256,431045,112852 +(1,17476:6630773,28468369:0,0,0 +g1,17476:6630773,28468369 +g1,17476:6630773,28468369 +g1,17476:6303093,28468369 +(1,17476:6303093,28468369:0,0,0 +) +g1,17476:6630773,28468369 +) +k1,17477:6630773,28468369:0 +g1,17477:10946174,28468369 +g1,17477:11610082,28468369 +g1,17477:15261575,28468369 +g1,17477:15925483,28468369 +g1,17477:16589391,28468369 +h1,17477:19576976,28468369:0,0,0 +k1,17477:32583029,28468369:13006053 +g1,17477:32583029,28468369 +) +(1,17481:6630773,29808584:25952256,431045,112852 +g1,17481:7626635,29808584 +g1,17481:10282267,29808584 +g1,17481:11942037,29808584 +g1,17481:13269853,29808584 +g1,17481:13933761,29808584 +k1,17481:32583029,29808584:14333867 +g1,17481:32583029,29808584 +) +(1,17489:6630773,30493439:25952256,424439,9908 +(1,17481:6630773,30493439:0,0,0 +g1,17481:6630773,30493439 +g1,17481:6630773,30493439 +g1,17481:6303093,30493439 +(1,17481:6303093,30493439:0,0,0 +) +g1,17481:6630773,30493439 +) +g1,17489:7626635,30493439 +g1,17489:8290543,30493439 +g1,17489:8954451,30493439 +g1,17489:11610083,30493439 +g1,17489:12273991,30493439 +g1,17489:12937899,30493439 +h1,17489:13269853,30493439:0,0,0 +k1,17489:32583029,30493439:19313176 +g1,17489:32583029,30493439 +) +(1,17489:6630773,31178294:25952256,424439,6605 +h1,17489:6630773,31178294:0,0,0 +g1,17489:7626635,31178294 +g1,17489:7958589,31178294 +g1,17489:8290543,31178294 +g1,17489:8622497,31178294 +g1,17489:8954451,31178294 +g1,17489:10282267,31178294 +g1,17489:12937899,31178294 +h1,17489:15261577,31178294:0,0,0 +k1,17489:32583029,31178294:17321452 +g1,17489:32583029,31178294 +) +(1,17489:6630773,31863149:25952256,424439,6605 +h1,17489:6630773,31863149:0,0,0 +g1,17489:7626635,31863149 +g1,17489:7958589,31863149 +g1,17489:8290543,31863149 +g1,17489:10282267,31863149 +g1,17489:12273991,31863149 +g1,17489:12605945,31863149 +g1,17489:12937899,31863149 +k1,17489:12937899,31863149:0 +h1,17489:14597669,31863149:0,0,0 +k1,17489:32583029,31863149:17985360 +g1,17489:32583029,31863149 +) +(1,17489:6630773,32548004:25952256,424439,6605 +h1,17489:6630773,32548004:0,0,0 +g1,17489:7626635,32548004 +g1,17489:8290543,32548004 +g1,17489:8622497,32548004 +g1,17489:8954451,32548004 +g1,17489:9286405,32548004 +g1,17489:9618359,32548004 +g1,17489:10282267,32548004 +g1,17489:10946175,32548004 +g1,17489:11278129,32548004 +g1,17489:11610083,32548004 +g1,17489:11942037,32548004 +g1,17489:12273991,32548004 +g1,17489:12605945,32548004 +g1,17489:12937899,32548004 +h1,17489:13269853,32548004:0,0,0 +k1,17489:32583029,32548004:19313176 +g1,17489:32583029,32548004 +) +(1,17489:6630773,33232859:25952256,424439,6605 +h1,17489:6630773,33232859:0,0,0 +g1,17489:7626635,33232859 +g1,17489:8290543,33232859 +g1,17489:8622497,33232859 +g1,17489:8954451,33232859 +g1,17489:9286405,33232859 +g1,17489:9618359,33232859 +g1,17489:10282267,33232859 +g1,17489:10946175,33232859 +g1,17489:11278129,33232859 +g1,17489:11610083,33232859 +g1,17489:11942037,33232859 +g1,17489:12273991,33232859 +g1,17489:12605945,33232859 +g1,17489:12937899,33232859 +h1,17489:13269853,33232859:0,0,0 +k1,17489:32583029,33232859:19313176 +g1,17489:32583029,33232859 +) +(1,17489:6630773,33917714:25952256,424439,9908 +h1,17489:6630773,33917714:0,0,0 +g1,17489:7626635,33917714 +g1,17489:8290543,33917714 +g1,17489:8622497,33917714 +g1,17489:8954451,33917714 +g1,17489:9286405,33917714 +g1,17489:9618359,33917714 +g1,17489:10282267,33917714 +g1,17489:10946175,33917714 +g1,17489:11278129,33917714 +g1,17489:11610083,33917714 +g1,17489:11942037,33917714 +g1,17489:12273991,33917714 +g1,17489:12605945,33917714 +g1,17489:12937899,33917714 +h1,17489:13269853,33917714:0,0,0 +k1,17489:32583029,33917714:19313176 +g1,17489:32583029,33917714 +) +(1,17489:6630773,34602569:25952256,424439,6605 +h1,17489:6630773,34602569:0,0,0 +g1,17489:7626635,34602569 +g1,17489:8290543,34602569 +g1,17489:8622497,34602569 +g1,17489:8954451,34602569 +g1,17489:9286405,34602569 +g1,17489:9618359,34602569 +g1,17489:10282267,34602569 +g1,17489:10946175,34602569 +g1,17489:11278129,34602569 +g1,17489:11610083,34602569 +g1,17489:11942037,34602569 +g1,17489:12273991,34602569 +g1,17489:12605945,34602569 +g1,17489:12937899,34602569 +h1,17489:13269853,34602569:0,0,0 +k1,17489:32583029,34602569:19313176 +g1,17489:32583029,34602569 +) +] +) +g1,17490:32583029,34609174 +g1,17490:6630773,34609174 +g1,17490:6630773,34609174 +g1,17490:32583029,34609174 +g1,17490:32583029,34609174 +) +h1,17490:6630773,34805782:0,0,0 +(1,17494:6630773,35670862:25952256,513147,134348 +h1,17493:6630773,35670862:983040,0,0 +k1,17493:9287760,35670862:212494 +k1,17493:10368605,35670862:212493 +k1,17493:12344673,35670862:212494 +k1,17493:13576251,35670862:212493 +k1,17493:16270593,35670862:212494 +k1,17493:17679118,35670862:212493 +k1,17493:20917409,35670862:212494 +k1,17493:23970888,35670862:212493 +k1,17493:24944910,35670862:212494 +k1,17493:27303706,35670862:212493 +(1,17493:27303706,35670862:0,452978,122846 +r1,17517:31179090,35670862:3875384,575824,122846 +k1,17493:27303706,35670862:-3875384 +) +(1,17493:27303706,35670862:3875384,452978,122846 +k1,17493:27303706,35670862:3277 +h1,17493:31175813,35670862:0,411205,112570 +) +k1,17493:31391584,35670862:212494 +k1,17494:32583029,35670862:0 +) +(1,17494:6630773,36535942:25952256,513147,126483 +(1,17493:6630773,36535942:0,452978,122846 +r1,17517:10506157,36535942:3875384,575824,122846 +k1,17493:6630773,36535942:-3875384 +) +(1,17493:6630773,36535942:3875384,452978,122846 +k1,17493:6630773,36535942:3277 +h1,17493:10502880,36535942:0,411205,112570 +) +k1,17493:10893929,36535942:214102 +k1,17493:12982361,36535942:214102 +k1,17493:16222260,36535942:214102 +k1,17493:17811963,36535942:214102 +k1,17493:20036710,36535942:214102 +k1,17493:20606672,36535942:214102 +k1,17493:22632189,36535942:214102 +k1,17493:24130797,36535942:214102 +k1,17493:27046948,36535942:214102 +k1,17493:28636651,36535942:214102 +k1,17493:29869838,36535942:214102 +k1,17493:32583029,36535942:0 +) +(1,17494:6630773,37401022:25952256,513147,134348 +g1,17493:8397623,37401022 +(1,17493:8397623,37401022:0,414482,115847 +r1,17517:8755889,37401022:358266,530329,115847 +k1,17493:8397623,37401022:-358266 +) +(1,17493:8397623,37401022:358266,414482,115847 +k1,17493:8397623,37401022:3277 +h1,17493:8752612,37401022:0,411205,112570 +) +g1,17493:9128788,37401022 +g1,17493:12182765,37401022 +g1,17493:13916192,37401022 +g1,17493:15970090,37401022 +g1,17493:16978689,37401022 +g1,17493:18686557,37401022 +g1,17493:20866939,37401022 +g1,17493:21717596,37401022 +g1,17493:23451023,37401022 +g1,17493:24266290,37401022 +(1,17493:24266290,37401022:0,414482,115847 +r1,17517:24624556,37401022:358266,530329,115847 +k1,17493:24266290,37401022:-358266 +) +(1,17493:24266290,37401022:358266,414482,115847 +k1,17493:24266290,37401022:3277 +h1,17493:24621279,37401022:0,411205,112570 +) +k1,17494:32583029,37401022:7906045 +g1,17494:32583029,37401022 +) +(1,17496:6630773,38266102:25952256,513147,134348 +h1,17495:6630773,38266102:983040,0,0 +g1,17495:8300630,38266102 +g1,17495:9998667,38266102 +g1,17495:11435216,38266102 +g1,17495:13829246,38266102 +g1,17495:15562673,38266102 +g1,17495:17329523,38266102 +(1,17495:17329523,38266102:0,414482,115847 +r1,17517:17687789,38266102:358266,530329,115847 +k1,17495:17329523,38266102:-358266 +) +(1,17495:17329523,38266102:358266,414482,115847 +k1,17495:17329523,38266102:3277 +h1,17495:17684512,38266102:0,411205,112570 +) +g1,17495:17887018,38266102 +g1,17495:19370753,38266102 +g1,17495:21045197,38266102 +g1,17495:21600286,38266102 +g1,17495:23780668,38266102 +g1,17495:24595935,38266102 +(1,17495:24595935,38266102:0,414482,115847 +r1,17517:24954201,38266102:358266,530329,115847 +k1,17495:24595935,38266102:-358266 +) +(1,17495:24595935,38266102:358266,414482,115847 +k1,17495:24595935,38266102:3277 +h1,17495:24950924,38266102:0,411205,112570 +) +k1,17496:32583029,38266102:7576400 +g1,17496:32583029,38266102 +) +v1,17498:6630773,38950957:0,393216,0 +(1,17513:6630773,45324548:25952256,6766807,196608 +g1,17513:6630773,45324548 +g1,17513:6630773,45324548 +g1,17513:6434165,45324548 +(1,17513:6434165,45324548:0,6766807,196608 +r1,17517:32779637,45324548:26345472,6963415,196608 +k1,17513:6434165,45324548:-26345472 +) +(1,17513:6434165,45324548:26345472,6766807,196608 +[1,17513:6630773,45324548:25952256,6570199,0 +(1,17500:6630773,39185394:25952256,431045,112852 +(1,17499:6630773,39185394:0,0,0 +g1,17499:6630773,39185394 +g1,17499:6630773,39185394 +g1,17499:6303093,39185394 +(1,17499:6303093,39185394:0,0,0 +) +g1,17499:6630773,39185394 +) +k1,17500:6630773,39185394:0 +g1,17500:10614220,39185394 +g1,17500:11278128,39185394 +g1,17500:14597667,39185394 +g1,17500:15261575,39185394 +g1,17500:15925483,39185394 +h1,17500:19245022,39185394:0,0,0 +k1,17500:32583029,39185394:13338007 +g1,17500:32583029,39185394 +) +(1,17504:6630773,40525609:25952256,431045,112852 +g1,17504:7626635,40525609 +g1,17504:10282267,40525609 +g1,17504:11942037,40525609 +g1,17504:13269853,40525609 +g1,17504:13933761,40525609 +k1,17504:32583029,40525609:14333867 +g1,17504:32583029,40525609 +) +(1,17512:6630773,41210464:25952256,424439,6605 +(1,17504:6630773,41210464:0,0,0 +g1,17504:6630773,41210464 +g1,17504:6630773,41210464 +g1,17504:6303093,41210464 +(1,17504:6303093,41210464:0,0,0 +) +g1,17504:6630773,41210464 +) +g1,17512:7626635,41210464 +g1,17512:8290543,41210464 +g1,17512:8954451,41210464 +g1,17512:11610083,41210464 +g1,17512:12273991,41210464 +g1,17512:12937899,41210464 +h1,17512:13269853,41210464:0,0,0 +k1,17512:32583029,41210464:19313176 +g1,17512:32583029,41210464 +) +(1,17512:6630773,41895319:25952256,424439,6605 +h1,17512:6630773,41895319:0,0,0 +g1,17512:7626635,41895319 +g1,17512:7958589,41895319 +g1,17512:8290543,41895319 +g1,17512:8622497,41895319 +g1,17512:8954451,41895319 +g1,17512:10282267,41895319 +h1,17512:12605945,41895319:0,0,0 +k1,17512:32583029,41895319:19977084 +g1,17512:32583029,41895319 +) +(1,17512:6630773,42580174:25952256,424439,6605 +h1,17512:6630773,42580174:0,0,0 +g1,17512:7626635,42580174 +g1,17512:7958589,42580174 +g1,17512:8290543,42580174 +g1,17512:10282267,42580174 +k1,17512:10282267,42580174:0 +h1,17512:11942037,42580174:0,0,0 +k1,17512:32583029,42580174:20640992 +g1,17512:32583029,42580174 +) +(1,17512:6630773,43265029:25952256,407923,4954 +h1,17512:6630773,43265029:0,0,0 +g1,17512:7626635,43265029 +g1,17512:8290543,43265029 +g1,17512:8622497,43265029 +g1,17512:8954451,43265029 +g1,17512:9286405,43265029 +g1,17512:9618359,43265029 +g1,17512:10282267,43265029 +h1,17512:10614221,43265029:0,0,0 +k1,17512:32583029,43265029:21968808 +g1,17512:32583029,43265029 +) +(1,17512:6630773,43949884:25952256,407923,4954 +h1,17512:6630773,43949884:0,0,0 +g1,17512:7626635,43949884 +g1,17512:8290543,43949884 +g1,17512:8622497,43949884 +g1,17512:8954451,43949884 +g1,17512:9286405,43949884 +g1,17512:9618359,43949884 +g1,17512:10282267,43949884 +h1,17512:10614221,43949884:0,0,0 +k1,17512:32583029,43949884:21968808 +g1,17512:32583029,43949884 +) +(1,17512:6630773,44634739:25952256,407923,9908 +h1,17512:6630773,44634739:0,0,0 +g1,17512:7626635,44634739 +g1,17512:8290543,44634739 +g1,17512:8622497,44634739 +g1,17512:8954451,44634739 +g1,17512:9286405,44634739 +g1,17512:9618359,44634739 +g1,17512:10282267,44634739 +h1,17512:10614221,44634739:0,0,0 +k1,17512:32583029,44634739:21968808 +g1,17512:32583029,44634739 +) +(1,17512:6630773,45319594:25952256,398014,4954 +h1,17512:6630773,45319594:0,0,0 +g1,17512:7626635,45319594 +g1,17512:8290543,45319594 +g1,17512:8622497,45319594 +g1,17512:8954451,45319594 +g1,17512:9286405,45319594 +g1,17512:9618359,45319594 +g1,17512:10282267,45319594 +h1,17512:10614221,45319594:0,0,0 +k1,17512:32583029,45319594:21968808 +g1,17512:32583029,45319594 +) +] +) +g1,17513:32583029,45324548 +g1,17513:6630773,45324548 +g1,17513:6630773,45324548 +g1,17513:32583029,45324548 +g1,17513:32583029,45324548 +) +h1,17513:6630773,45521156:0,0,0 +] +(1,17517:32583029,45706769:0,0,0 +g1,17517:32583029,45706769 +) +) +] +(1,17517:6630773,47279633:25952256,0,0 +h1,17517:6630773,47279633:25952256,0,0 +) +] +(1,17517:4262630,4025873:0,0,0 +[1,17517:-473656,4025873:0,0,0 +(1,17517:-473656,-710413:0,0,0 +(1,17517:-473656,-710413:0,0,0 +g1,17517:-473656,-710413 +) +g1,17517:-473656,-710413 ) ] ) ] !30782 -}281 -Input:2916:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2917:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2918:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2919:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}282 Input:2920:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2921:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2922:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2923:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2924:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2925:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2926:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{282 -[1,17603:4262630,47279633:28320399,43253760,0 -(1,17603:4262630,4025873:0,0,0 -[1,17603:-473656,4025873:0,0,0 -(1,17603:-473656,-710413:0,0,0 -(1,17603:-473656,-644877:0,0,0 -k1,17603:-473656,-644877:-65536 +{283 +[1,17601:4262630,47279633:28320399,43253760,0 +(1,17601:4262630,4025873:0,0,0 +[1,17601:-473656,4025873:0,0,0 +(1,17601:-473656,-710413:0,0,0 +(1,17601:-473656,-644877:0,0,0 +k1,17601:-473656,-644877:-65536 ) -(1,17603:-473656,4736287:0,0,0 -k1,17603:-473656,4736287:5209943 +(1,17601:-473656,4736287:0,0,0 +k1,17601:-473656,4736287:5209943 ) -g1,17603:-473656,-710413 +g1,17601:-473656,-710413 ) ] ) -[1,17603:6630773,47279633:25952256,43253760,0 -[1,17603:6630773,4812305:25952256,786432,0 -(1,17603:6630773,4812305:25952256,505283,11795 -(1,17603:6630773,4812305:25952256,505283,11795 -g1,17603:3078558,4812305 -[1,17603:3078558,4812305:0,0,0 -(1,17603:3078558,2439708:0,1703936,0 -k1,17603:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17603:2537886,2439708:1179648,16384,0 +[1,17601:6630773,47279633:25952256,43253760,0 +[1,17601:6630773,4812305:25952256,786432,0 +(1,17601:6630773,4812305:25952256,505283,11795 +(1,17601:6630773,4812305:25952256,505283,11795 +g1,17601:3078558,4812305 +[1,17601:3078558,4812305:0,0,0 +(1,17601:3078558,2439708:0,1703936,0 +k1,17601:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17601:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17603:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17601:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17603:3078558,4812305:0,0,0 -(1,17603:3078558,2439708:0,1703936,0 -g1,17603:29030814,2439708 -g1,17603:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17603:36151628,1915420:16384,1179648,0 +[1,17601:3078558,4812305:0,0,0 +(1,17601:3078558,2439708:0,1703936,0 +g1,17601:29030814,2439708 +g1,17601:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17601:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17603:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17601:37855564,2439708:1179648,16384,0 ) ) -k1,17603:3078556,2439708:-34777008 +k1,17601:3078556,2439708:-34777008 ) ] -[1,17603:3078558,4812305:0,0,0 -(1,17603:3078558,49800853:0,16384,2228224 -k1,17603:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17603:2537886,49800853:1179648,16384,0 +[1,17601:3078558,4812305:0,0,0 +(1,17601:3078558,49800853:0,16384,2228224 +k1,17601:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17601:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17603:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17601:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17603:3078558,4812305:0,0,0 -(1,17603:3078558,49800853:0,16384,2228224 -g1,17603:29030814,49800853 -g1,17603:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17603:36151628,51504789:16384,1179648,0 +[1,17601:3078558,4812305:0,0,0 +(1,17601:3078558,49800853:0,16384,2228224 +g1,17601:29030814,49800853 +g1,17601:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17601:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17603:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17601:37855564,49800853:1179648,16384,0 ) ) -k1,17603:3078556,49800853:-34777008 -) -] -g1,17603:6630773,4812305 -g1,17603:6630773,4812305 -g1,17603:8700400,4812305 -g1,17603:10110079,4812305 -g1,17603:12072882,4812305 -g1,17603:13635260,4812305 -g1,17603:17073933,4812305 -g1,17603:17273162,4812305 -k1,17603:31387652,4812305:14114490 -) -) -] -[1,17603:6630773,45706769:25952256,40108032,0 -(1,17603:6630773,45706769:25952256,40108032,0 -(1,17603:6630773,45706769:0,0,0 -g1,17603:6630773,45706769 -) -[1,17603:6630773,45706769:25952256,40108032,0 -v1,17519:6630773,6254097:0,393216,0 -(1,17534:6630773,12629339:25952256,6768458,196608 -g1,17534:6630773,12629339 -g1,17534:6630773,12629339 -g1,17534:6434165,12629339 -(1,17534:6434165,12629339:0,6768458,196608 -r1,17603:32779637,12629339:26345472,6965066,196608 -k1,17534:6434165,12629339:-26345472 -) -(1,17534:6434165,12629339:26345472,6768458,196608 -[1,17534:6630773,12629339:25952256,6571850,0 -(1,17521:6630773,6488534:25952256,431045,112852 -(1,17520:6630773,6488534:0,0,0 -g1,17520:6630773,6488534 -g1,17520:6630773,6488534 -g1,17520:6303093,6488534 -(1,17520:6303093,6488534:0,0,0 -) -g1,17520:6630773,6488534 -) -k1,17521:6630773,6488534:0 -g1,17521:10614220,6488534 -g1,17521:11278128,6488534 -g1,17521:14929621,6488534 -g1,17521:15593529,6488534 -g1,17521:16257437,6488534 -h1,17521:19245022,6488534:0,0,0 -k1,17521:32583029,6488534:13338007 -g1,17521:32583029,6488534 -) -(1,17525:6630773,7828749:25952256,431045,112852 -g1,17525:7626635,7828749 -g1,17525:10282267,7828749 -g1,17525:11942037,7828749 -g1,17525:13269853,7828749 -g1,17525:13933761,7828749 -k1,17525:32583029,7828749:14333867 -g1,17525:32583029,7828749 -) -(1,17533:6630773,8513604:25952256,424439,6605 -(1,17525:6630773,8513604:0,0,0 -g1,17525:6630773,8513604 -g1,17525:6630773,8513604 -g1,17525:6303093,8513604 -(1,17525:6303093,8513604:0,0,0 -) -g1,17525:6630773,8513604 -) -g1,17533:7626635,8513604 -g1,17533:8290543,8513604 -g1,17533:8954451,8513604 -g1,17533:11610083,8513604 -g1,17533:12273991,8513604 -g1,17533:12937899,8513604 -h1,17533:13269853,8513604:0,0,0 -k1,17533:32583029,8513604:19313176 -g1,17533:32583029,8513604 -) -(1,17533:6630773,9198459:25952256,424439,6605 -h1,17533:6630773,9198459:0,0,0 -g1,17533:7626635,9198459 -g1,17533:7958589,9198459 -g1,17533:8290543,9198459 -g1,17533:8622497,9198459 -g1,17533:8954451,9198459 -g1,17533:10282267,9198459 -h1,17533:12605945,9198459:0,0,0 -k1,17533:32583029,9198459:19977084 -g1,17533:32583029,9198459 -) -(1,17533:6630773,9883314:25952256,424439,6605 -h1,17533:6630773,9883314:0,0,0 -g1,17533:7626635,9883314 -g1,17533:7958589,9883314 -g1,17533:8290543,9883314 -g1,17533:10282267,9883314 -k1,17533:10282267,9883314:0 -h1,17533:11942037,9883314:0,0,0 -k1,17533:32583029,9883314:20640992 -g1,17533:32583029,9883314 -) -(1,17533:6630773,10568169:25952256,424439,6605 -h1,17533:6630773,10568169:0,0,0 -g1,17533:7626635,10568169 -g1,17533:8290543,10568169 -g1,17533:8622497,10568169 -g1,17533:8954451,10568169 -g1,17533:9286405,10568169 -g1,17533:9618359,10568169 -g1,17533:10282267,10568169 -h1,17533:10614221,10568169:0,0,0 -k1,17533:32583029,10568169:21968808 -g1,17533:32583029,10568169 -) -(1,17533:6630773,11253024:25952256,424439,6605 -h1,17533:6630773,11253024:0,0,0 -g1,17533:7626635,11253024 -g1,17533:8290543,11253024 -g1,17533:8622497,11253024 -g1,17533:8954451,11253024 -g1,17533:9286405,11253024 -g1,17533:9618359,11253024 -g1,17533:10282267,11253024 -h1,17533:10614221,11253024:0,0,0 -k1,17533:32583029,11253024:21968808 -g1,17533:32583029,11253024 -) -(1,17533:6630773,11937879:25952256,424439,9908 -h1,17533:6630773,11937879:0,0,0 -g1,17533:7626635,11937879 -g1,17533:8290543,11937879 -g1,17533:8622497,11937879 -g1,17533:8954451,11937879 -g1,17533:9286405,11937879 -g1,17533:9618359,11937879 -g1,17533:10282267,11937879 -h1,17533:10614221,11937879:0,0,0 -k1,17533:32583029,11937879:21968808 -g1,17533:32583029,11937879 -) -(1,17533:6630773,12622734:25952256,424439,6605 -h1,17533:6630773,12622734:0,0,0 -g1,17533:7626635,12622734 -g1,17533:8290543,12622734 -g1,17533:8622497,12622734 -g1,17533:8954451,12622734 -g1,17533:9286405,12622734 -g1,17533:9618359,12622734 -g1,17533:10282267,12622734 -h1,17533:10614221,12622734:0,0,0 -k1,17533:32583029,12622734:21968808 -g1,17533:32583029,12622734 -) -] -) -g1,17534:32583029,12629339 -g1,17534:6630773,12629339 -g1,17534:6630773,12629339 -g1,17534:32583029,12629339 -g1,17534:32583029,12629339 -) -h1,17534:6630773,12825947:0,0,0 -(1,17538:6630773,13691027:25952256,513147,134348 -h1,17537:6630773,13691027:983040,0,0 -g1,17537:8300630,13691027 -g1,17537:11178971,13691027 -g1,17537:13573001,13691027 -g1,17537:15306428,13691027 -g1,17537:17073278,13691027 -(1,17537:17073278,13691027:0,414482,115847 -r1,17603:17431544,13691027:358266,530329,115847 -k1,17537:17073278,13691027:-358266 -) -(1,17537:17073278,13691027:358266,414482,115847 -k1,17537:17073278,13691027:3277 -h1,17537:17428267,13691027:0,411205,112570 -) -g1,17537:17630773,13691027 -g1,17537:19114508,13691027 -g1,17537:20129005,13691027 -g1,17537:21394505,13691027 -g1,17537:23068949,13691027 -g1,17537:23624038,13691027 -g1,17537:25804420,13691027 -g1,17537:26619687,13691027 -(1,17537:26619687,13691027:0,414482,115847 -r1,17603:26977953,13691027:358266,530329,115847 -k1,17537:26619687,13691027:-358266 -) -(1,17537:26619687,13691027:358266,414482,115847 -k1,17537:26619687,13691027:3277 -h1,17537:26974676,13691027:0,411205,112570 -) -k1,17538:32583029,13691027:5552648 -g1,17538:32583029,13691027 -) -v1,17540:6630773,14375882:0,393216,0 -(1,17552:6630773,18699862:25952256,4717196,196608 -g1,17552:6630773,18699862 -g1,17552:6630773,18699862 -g1,17552:6434165,18699862 -(1,17552:6434165,18699862:0,4717196,196608 -r1,17603:32779637,18699862:26345472,4913804,196608 -k1,17552:6434165,18699862:-26345472 -) -(1,17552:6434165,18699862:26345472,4717196,196608 -[1,17552:6630773,18699862:25952256,4520588,0 -(1,17542:6630773,14610319:25952256,431045,112852 -(1,17541:6630773,14610319:0,0,0 -g1,17541:6630773,14610319 -g1,17541:6630773,14610319 -g1,17541:6303093,14610319 -(1,17541:6303093,14610319:0,0,0 -) -g1,17541:6630773,14610319 -) -k1,17542:6630773,14610319:0 -g1,17542:10614220,14610319 -g1,17542:11278128,14610319 -g1,17542:14597667,14610319 -g1,17542:15261575,14610319 -g1,17542:15925483,14610319 -h1,17542:19245022,14610319:0,0,0 -k1,17542:32583029,14610319:13338007 -g1,17542:32583029,14610319 -) -(1,17546:6630773,15950534:25952256,431045,112852 -g1,17546:7626635,15950534 -g1,17546:10282267,15950534 -g1,17546:11942037,15950534 -g1,17546:13269853,15950534 -g1,17546:13933761,15950534 -k1,17546:32583029,15950534:14333867 -g1,17546:32583029,15950534 -) -(1,17551:6630773,16635389:25952256,424439,6605 -(1,17546:6630773,16635389:0,0,0 -g1,17546:6630773,16635389 -g1,17546:6630773,16635389 -g1,17546:6303093,16635389 -(1,17546:6303093,16635389:0,0,0 -) -g1,17546:6630773,16635389 -) -g1,17551:7626635,16635389 -g1,17551:8290543,16635389 -g1,17551:8954451,16635389 -g1,17551:11610083,16635389 -g1,17551:12273991,16635389 -g1,17551:12937899,16635389 -h1,17551:13269853,16635389:0,0,0 -k1,17551:32583029,16635389:19313176 -g1,17551:32583029,16635389 -) -(1,17551:6630773,17320244:25952256,424439,6605 -h1,17551:6630773,17320244:0,0,0 -g1,17551:7626635,17320244 -g1,17551:7958589,17320244 -g1,17551:8290543,17320244 -g1,17551:8622497,17320244 -g1,17551:8954451,17320244 -g1,17551:10282267,17320244 -h1,17551:12605945,17320244:0,0,0 -k1,17551:32583029,17320244:19977084 -g1,17551:32583029,17320244 -) -(1,17551:6630773,18005099:25952256,424439,6605 -h1,17551:6630773,18005099:0,0,0 -g1,17551:7626635,18005099 -g1,17551:7958589,18005099 -g1,17551:8290543,18005099 -g1,17551:10282267,18005099 -k1,17551:10282267,18005099:0 -h1,17551:11942037,18005099:0,0,0 -k1,17551:32583029,18005099:20640992 -g1,17551:32583029,18005099 -) -(1,17551:6630773,18689954:25952256,407923,9908 -h1,17551:6630773,18689954:0,0,0 -g1,17551:7626635,18689954 -g1,17551:8290543,18689954 -g1,17551:8622497,18689954 -g1,17551:8954451,18689954 -g1,17551:9286405,18689954 -g1,17551:9618359,18689954 -g1,17551:10282267,18689954 -h1,17551:10614221,18689954:0,0,0 -k1,17551:32583029,18689954:21968808 -g1,17551:32583029,18689954 -) -] -) -g1,17552:32583029,18699862 -g1,17552:6630773,18699862 -g1,17552:6630773,18699862 -g1,17552:32583029,18699862 -g1,17552:32583029,18699862 -) -h1,17552:6630773,18896470:0,0,0 -v1,17556:6630773,19581325:0,393216,0 -(1,17568:6630773,23905305:25952256,4717196,196608 -g1,17568:6630773,23905305 -g1,17568:6630773,23905305 -g1,17568:6434165,23905305 -(1,17568:6434165,23905305:0,4717196,196608 -r1,17603:32779637,23905305:26345472,4913804,196608 -k1,17568:6434165,23905305:-26345472 -) -(1,17568:6434165,23905305:26345472,4717196,196608 -[1,17568:6630773,23905305:25952256,4520588,0 -(1,17558:6630773,19815762:25952256,431045,112852 -(1,17557:6630773,19815762:0,0,0 -g1,17557:6630773,19815762 -g1,17557:6630773,19815762 -g1,17557:6303093,19815762 -(1,17557:6303093,19815762:0,0,0 -) -g1,17557:6630773,19815762 -) -k1,17558:6630773,19815762:0 -g1,17558:10614220,19815762 -g1,17558:11278128,19815762 -g1,17558:14929621,19815762 -g1,17558:15593529,19815762 -g1,17558:16257437,19815762 -h1,17558:19245022,19815762:0,0,0 -k1,17558:32583029,19815762:13338007 -g1,17558:32583029,19815762 -) -(1,17562:6630773,21155977:25952256,431045,112852 -g1,17562:7626635,21155977 -g1,17562:10282267,21155977 -g1,17562:11942037,21155977 -g1,17562:13269853,21155977 -g1,17562:13933761,21155977 -k1,17562:32583029,21155977:14333867 -g1,17562:32583029,21155977 -) -(1,17567:6630773,21840832:25952256,424439,6605 -(1,17562:6630773,21840832:0,0,0 -g1,17562:6630773,21840832 -g1,17562:6630773,21840832 -g1,17562:6303093,21840832 -(1,17562:6303093,21840832:0,0,0 -) -g1,17562:6630773,21840832 -) -g1,17567:7626635,21840832 -g1,17567:8290543,21840832 -g1,17567:8954451,21840832 -g1,17567:11610083,21840832 -g1,17567:12273991,21840832 -g1,17567:12937899,21840832 -h1,17567:13269853,21840832:0,0,0 -k1,17567:32583029,21840832:19313176 -g1,17567:32583029,21840832 -) -(1,17567:6630773,22525687:25952256,424439,6605 -h1,17567:6630773,22525687:0,0,0 -g1,17567:7626635,22525687 -g1,17567:7958589,22525687 -g1,17567:8290543,22525687 -g1,17567:8622497,22525687 -g1,17567:8954451,22525687 -g1,17567:10282267,22525687 -h1,17567:12605945,22525687:0,0,0 -k1,17567:32583029,22525687:19977084 -g1,17567:32583029,22525687 -) -(1,17567:6630773,23210542:25952256,424439,6605 -h1,17567:6630773,23210542:0,0,0 -g1,17567:7626635,23210542 -g1,17567:7958589,23210542 -g1,17567:8290543,23210542 -g1,17567:10282267,23210542 -k1,17567:10282267,23210542:0 -h1,17567:11942037,23210542:0,0,0 -k1,17567:32583029,23210542:20640992 -g1,17567:32583029,23210542 -) -(1,17567:6630773,23895397:25952256,424439,9908 -h1,17567:6630773,23895397:0,0,0 -g1,17567:7626635,23895397 -g1,17567:8290543,23895397 -g1,17567:8622497,23895397 -g1,17567:8954451,23895397 -g1,17567:9286405,23895397 -g1,17567:9618359,23895397 -g1,17567:10282267,23895397 -h1,17567:10614221,23895397:0,0,0 -k1,17567:32583029,23895397:21968808 -g1,17567:32583029,23895397 -) -] -) -g1,17568:32583029,23905305 -g1,17568:6630773,23905305 -g1,17568:6630773,23905305 -g1,17568:32583029,23905305 -g1,17568:32583029,23905305 -) -h1,17568:6630773,24101913:0,0,0 -(1,17572:6630773,24966993:25952256,513147,126483 -h1,17571:6630773,24966993:983040,0,0 -k1,17571:8731496,24966993:164134 -k1,17571:10293514,24966993:164135 -k1,17571:12831362,24966993:164134 -k1,17571:15378386,24966993:164135 -(1,17571:15378386,24966993:0,452978,115847 -r1,17603:16440075,24966993:1061689,568825,115847 -k1,17571:15378386,24966993:-1061689 -) -(1,17571:15378386,24966993:1061689,452978,115847 -k1,17571:15378386,24966993:3277 -h1,17571:16436798,24966993:0,411205,112570 -) -k1,17571:16604209,24966993:164134 -k1,17571:17384382,24966993:164135 -(1,17571:17384382,24966993:0,459977,115847 -r1,17603:20204631,24966993:2820249,575824,115847 -k1,17571:17384382,24966993:-2820249 -) -(1,17571:17384382,24966993:2820249,459977,115847 -k1,17571:17384382,24966993:3277 -h1,17571:20201354,24966993:0,411205,112570 -) -k1,17571:20368765,24966993:164134 -k1,17571:21184328,24966993:164135 -k1,17571:25381548,24966993:164134 -k1,17571:26564768,24966993:164135 -k1,17571:27821387,24966993:164134 -k1,17571:28652678,24966993:164135 -(1,17571:28652678,24966993:0,452978,115847 -r1,17603:29362656,24966993:709978,568825,115847 -k1,17571:28652678,24966993:-709978 -) -(1,17571:28652678,24966993:709978,452978,115847 -k1,17571:28652678,24966993:3277 -h1,17571:29359379,24966993:0,411205,112570 -) -k1,17571:29526790,24966993:164134 -k1,17571:30342353,24966993:164135 -k1,17571:32583029,24966993:0 -) -(1,17572:6630773,25832073:25952256,513147,7863 -g1,17571:8689259,25832073 -g1,17571:11601679,25832073 -g1,17571:13981291,25832073 -g1,17571:14928286,25832073 -g1,17571:17965879,25832073 -g1,17571:19112759,25832073 -k1,17572:32583029,25832073:10759046 -g1,17572:32583029,25832073 -) -v1,17574:6630773,26516928:0,393216,0 -(1,17590:6630773,33740895:25952256,7617183,196608 -g1,17590:6630773,33740895 -g1,17590:6630773,33740895 -g1,17590:6434165,33740895 -(1,17590:6434165,33740895:0,7617183,196608 -r1,17603:32779637,33740895:26345472,7813791,196608 -k1,17590:6434165,33740895:-26345472 -) -(1,17590:6434165,33740895:26345472,7617183,196608 -[1,17590:6630773,33740895:25952256,7420575,0 -(1,17576:6630773,26751365:25952256,431045,86428 -(1,17575:6630773,26751365:0,0,0 -g1,17575:6630773,26751365 -g1,17575:6630773,26751365 -g1,17575:6303093,26751365 -(1,17575:6303093,26751365:0,0,0 -) -g1,17575:6630773,26751365 -) -g1,17576:9950312,26751365 -g1,17576:10946174,26751365 -g1,17576:16589391,26751365 -g1,17576:18249161,26751365 -g1,17576:18913069,26751365 -h1,17576:20240885,26751365:0,0,0 -k1,17576:32583029,26751365:12342144 -g1,17576:32583029,26751365 -) -(1,17577:6630773,27436220:25952256,431045,112852 -h1,17577:6630773,27436220:0,0,0 -g1,17577:10614220,27436220 -g1,17577:11278128,27436220 -g1,17577:14929621,27436220 -g1,17577:15593529,27436220 -g1,17577:16257437,27436220 -g1,17577:19908930,27436220 -g1,17577:20904792,27436220 -g1,17577:21568700,27436220 -g1,17577:24556286,27436220 -g1,17577:25220194,27436220 -h1,17577:27543872,27436220:0,0,0 -k1,17577:32583029,27436220:5039157 -g1,17577:32583029,27436220 -) -(1,17589:6630773,28252147:25952256,424439,9908 -(1,17579:6630773,28252147:0,0,0 -g1,17579:6630773,28252147 -g1,17579:6630773,28252147 -g1,17579:6303093,28252147 -(1,17579:6303093,28252147:0,0,0 -) -g1,17579:6630773,28252147 -) -g1,17589:7626635,28252147 -g1,17589:8290543,28252147 -g1,17589:8954451,28252147 -g1,17589:11610083,28252147 -g1,17589:12273991,28252147 -g1,17589:12937899,28252147 -h1,17589:13269853,28252147:0,0,0 -k1,17589:32583029,28252147:19313176 -g1,17589:32583029,28252147 -) -(1,17589:6630773,28937002:25952256,424439,6605 -h1,17589:6630773,28937002:0,0,0 -g1,17589:7626635,28937002 -g1,17589:7958589,28937002 -g1,17589:8290543,28937002 -g1,17589:8622497,28937002 -g1,17589:10282267,28937002 -g1,17589:12937899,28937002 -h1,17589:15261577,28937002:0,0,0 -k1,17589:32583029,28937002:17321452 -g1,17589:32583029,28937002 -) -(1,17589:6630773,29621857:25952256,424439,6605 -h1,17589:6630773,29621857:0,0,0 -g1,17589:7626635,29621857 -g1,17589:7958589,29621857 -g1,17589:8290543,29621857 -g1,17589:10282267,29621857 -g1,17589:12273991,29621857 -g1,17589:12605945,29621857 -g1,17589:12937899,29621857 -k1,17589:12937899,29621857:0 -h1,17589:14597669,29621857:0,0,0 -k1,17589:32583029,29621857:17985360 -g1,17589:32583029,29621857 -) -(1,17589:6630773,30306712:25952256,424439,6605 -h1,17589:6630773,30306712:0,0,0 -g1,17589:7626635,30306712 -g1,17589:8290543,30306712 -g1,17589:8622497,30306712 -g1,17589:8954451,30306712 -g1,17589:9286405,30306712 -g1,17589:9618359,30306712 -g1,17589:10282267,30306712 -g1,17589:10946175,30306712 -g1,17589:11278129,30306712 -g1,17589:11610083,30306712 -g1,17589:11942037,30306712 -g1,17589:12273991,30306712 -g1,17589:12605945,30306712 -g1,17589:12937899,30306712 -h1,17589:13269853,30306712:0,0,0 -k1,17589:32583029,30306712:19313176 -g1,17589:32583029,30306712 -) -(1,17589:6630773,30991567:25952256,424439,6605 -h1,17589:6630773,30991567:0,0,0 -g1,17589:7626635,30991567 -g1,17589:8290543,30991567 -g1,17589:8622497,30991567 -g1,17589:8954451,30991567 -g1,17589:9286405,30991567 -g1,17589:9618359,30991567 -g1,17589:10282267,30991567 -g1,17589:10946175,30991567 -g1,17589:11278129,30991567 -g1,17589:11610083,30991567 -g1,17589:11942037,30991567 -g1,17589:12273991,30991567 -g1,17589:12605945,30991567 -g1,17589:12937899,30991567 -h1,17589:13269853,30991567:0,0,0 -k1,17589:32583029,30991567:19313176 -g1,17589:32583029,30991567 -) -(1,17589:6630773,31676422:25952256,424439,9908 -h1,17589:6630773,31676422:0,0,0 -g1,17589:7626635,31676422 -g1,17589:8290543,31676422 -g1,17589:8622497,31676422 -g1,17589:8954451,31676422 -g1,17589:9286405,31676422 -g1,17589:9618359,31676422 -g1,17589:10282267,31676422 -g1,17589:10946175,31676422 -g1,17589:11278129,31676422 -g1,17589:11610083,31676422 -g1,17589:11942037,31676422 -g1,17589:12273991,31676422 -g1,17589:12605945,31676422 -g1,17589:12937899,31676422 -h1,17589:13269853,31676422:0,0,0 -k1,17589:32583029,31676422:19313176 -g1,17589:32583029,31676422 -) -(1,17589:6630773,32361277:25952256,424439,6605 -h1,17589:6630773,32361277:0,0,0 -g1,17589:7626635,32361277 -g1,17589:8290543,32361277 -g1,17589:8622497,32361277 -g1,17589:8954451,32361277 -g1,17589:9286405,32361277 -g1,17589:9618359,32361277 -g1,17589:10282267,32361277 -g1,17589:10946175,32361277 -g1,17589:11278129,32361277 -g1,17589:11610083,32361277 -g1,17589:11942037,32361277 -g1,17589:12273991,32361277 -g1,17589:12605945,32361277 -g1,17589:12937899,32361277 -h1,17589:13269853,32361277:0,0,0 -k1,17589:32583029,32361277:19313176 -g1,17589:32583029,32361277 -) -(1,17589:6630773,33046132:25952256,398014,9908 -h1,17589:6630773,33046132:0,0,0 -g1,17589:7626635,33046132 -g1,17589:8290543,33046132 -g1,17589:8622497,33046132 -g1,17589:8954451,33046132 -g1,17589:9286405,33046132 -g1,17589:9618359,33046132 -g1,17589:10282267,33046132 -g1,17589:10946175,33046132 -g1,17589:11278129,33046132 -g1,17589:11610083,33046132 -g1,17589:11942037,33046132 -g1,17589:12273991,33046132 -g1,17589:12605945,33046132 -g1,17589:12937899,33046132 -k1,17589:12937899,33046132:0 -h1,17589:14265715,33046132:0,0,0 -k1,17589:32583029,33046132:18317314 -g1,17589:32583029,33046132 -) -(1,17589:6630773,33730987:25952256,424439,9908 -h1,17589:6630773,33730987:0,0,0 -g1,17589:7626635,33730987 -g1,17589:8290543,33730987 -g1,17589:8622497,33730987 -g1,17589:8954451,33730987 -g1,17589:9286405,33730987 -g1,17589:9618359,33730987 -g1,17589:10282267,33730987 -g1,17589:11942037,33730987 -g1,17589:12273991,33730987 -g1,17589:12605945,33730987 -g1,17589:12937899,33730987 -h1,17589:13269853,33730987:0,0,0 -k1,17589:32583029,33730987:19313176 -g1,17589:32583029,33730987 -) -] -) -g1,17590:32583029,33740895 -g1,17590:6630773,33740895 -g1,17590:6630773,33740895 -g1,17590:32583029,33740895 -g1,17590:32583029,33740895 -) -h1,17590:6630773,33937503:0,0,0 -(1,17598:6630773,36768663:25952256,32768,229376 -(1,17598:6630773,36768663:0,32768,229376 -(1,17598:6630773,36768663:5505024,32768,229376 -r1,17603:12135797,36768663:5505024,262144,229376 -) -k1,17598:6630773,36768663:-5505024 -) -(1,17598:6630773,36768663:25952256,32768,0 -r1,17603:32583029,36768663:25952256,32768,0 -) -) -(1,17598:6630773,38400515:25952256,606339,14155 -(1,17598:6630773,38400515:1974731,582746,14155 -g1,17598:6630773,38400515 -g1,17598:8605504,38400515 -) -g1,17598:11282519,38400515 -g1,17598:12992222,38400515 -g1,17598:15459260,38400515 -g1,17598:17472526,38400515 -k1,17598:32583029,38400515:11024203 -g1,17598:32583029,38400515 -) -(1,17601:6630773,39658811:25952256,505283,134348 -k1,17600:7419728,39658811:161120 -k1,17600:7995654,39658811:161083 -k1,17600:9348219,39658811:161120 -k1,17600:11261117,39658811:161121 -k1,17600:13124207,39658811:161120 -k1,17600:16716138,39658811:161121 -k1,17600:20223526,39658811:161120 -k1,17600:21810055,39658811:161121 -k1,17600:23981820,39658811:161120 -k1,17600:25134501,39658811:161121 -k1,17600:27333791,39658811:161120 -k1,17600:28181074,39658811:161121 -k1,17600:30572384,39658811:161120 -k1,17600:32583029,39658811:0 -) -(1,17601:6630773,40523891:25952256,513147,134348 -k1,17600:9132009,40523891:191092 -k1,17600:9974529,40523891:191092 -k1,17600:12359765,40523891:191091 -k1,17600:17169835,40523891:191092 -k1,17600:17988762,40523891:191092 -k1,17600:18768367,40523891:191092 -k1,17600:20715169,40523891:191092 -k1,17600:21897821,40523891:191092 -k1,17600:23690612,40523891:191091 -k1,17600:27186685,40523891:191092 -k1,17600:29415947,40523891:191092 -k1,17600:30293201,40523891:191092 -k1,17600:32583029,40523891:0 -) -(1,17601:6630773,41388971:25952256,513147,134348 -k1,17600:7588410,41388971:298345 -k1,17600:9441924,41388971:298345 -(1,17600:9441924,41388971:0,414482,115847 -r1,17603:11910461,41388971:2468537,530329,115847 -k1,17600:9441924,41388971:-2468537 -) -(1,17600:9441924,41388971:2468537,414482,115847 -k1,17600:9441924,41388971:3277 -h1,17600:11907184,41388971:0,411205,112570 -) -k1,17600:12208806,41388971:298345 -k1,17600:13190036,41388971:298345 -(1,17600:13190036,41388971:0,452978,115847 -r1,17603:15658573,41388971:2468537,568825,115847 -k1,17600:13190036,41388971:-2468537 -) -(1,17600:13190036,41388971:2468537,452978,115847 -k1,17600:13190036,41388971:3277 -h1,17600:15655296,41388971:0,411205,112570 -) -k1,17600:16130588,41388971:298345 -k1,17600:18963867,41388971:298346 -k1,17600:22460368,41388971:298345 -k1,17600:24804747,41388971:298345 -k1,17600:27689798,41388971:298345 -k1,17600:29382094,41388971:298345 -k1,17600:31391584,41388971:298345 -k1,17600:32583029,41388971:0 -) -(1,17601:6630773,42254051:25952256,505283,7863 -g1,17600:8585712,42254051 -g1,17600:9400979,42254051 -g1,17600:10015051,42254051 -g1,17600:11997515,42254051 -k1,17601:32583029,42254051:18662688 -g1,17601:32583029,42254051 -) -(1,17603:6630773,43119131:25952256,513147,134348 -h1,17602:6630773,43119131:983040,0,0 -k1,17602:9667056,43119131:270008 -k1,17602:12256383,43119131:270008 -k1,17602:13920343,43119131:270009 -k1,17602:15615759,43119131:270008 -k1,17602:18070082,43119131:270008 -k1,17602:19646223,43119131:270008 -k1,17602:20575524,43119131:270009 -k1,17602:21785318,43119131:270008 -k1,17602:22513423,43119131:270008 -k1,17602:23314928,43119131:270008 -k1,17602:26693965,43119131:270009 -k1,17602:27615401,43119131:270008 -k1,17602:31445980,43119131:270008 -k1,17603:32583029,43119131:0 -) -(1,17603:6630773,43984211:25952256,505283,95026 -k1,17602:8700854,43984211:203616 -k1,17602:10329877,43984211:203615 -k1,17602:14271667,43984211:203616 -k1,17602:16250648,43984211:203611 -k1,17602:17645708,43984211:203615 -k1,17602:19343545,43984211:203616 -k1,17602:20972569,43984211:203616 -k1,17602:25088028,43984211:203615 -k1,17602:26194075,43984211:203616 -k1,17602:28628536,43984211:203615 -k1,17602:29448190,43984211:203616 -k1,17602:31077213,43984211:203615 -k1,17602:31812326,43984211:203616 -k1,17602:32583029,43984211:0 -) -(1,17603:6630773,44849291:25952256,513147,134348 -k1,17602:9491638,44849291:155539 -k1,17602:11327519,44849291:155538 -k1,17602:12674503,44849291:155539 -k1,17602:13934323,44849291:155538 -k1,17602:14837628,44849291:155539 -k1,17602:19895259,44849291:155538 -k1,17602:23140821,44849291:155539 -k1,17602:25031753,44849291:155539 -k1,17602:26722144,44849291:155538 -k1,17602:28531812,44849291:155539 -k1,17602:30443060,44849291:155538 -k1,17602:31590159,44849291:155539 -k1,17603:32583029,44849291:0 -) -] -(1,17603:32583029,45706769:0,0,0 -g1,17603:32583029,45706769 -) -) -] -(1,17603:6630773,47279633:25952256,0,0 -h1,17603:6630773,47279633:25952256,0,0 -) -] -(1,17603:4262630,4025873:0,0,0 -[1,17603:-473656,4025873:0,0,0 -(1,17603:-473656,-710413:0,0,0 -(1,17603:-473656,-710413:0,0,0 -g1,17603:-473656,-710413 -) -g1,17603:-473656,-710413 +k1,17601:3078556,49800853:-34777008 +) +] +g1,17601:6630773,4812305 +g1,17601:6630773,4812305 +g1,17601:8700400,4812305 +g1,17601:10110079,4812305 +g1,17601:12072882,4812305 +g1,17601:13635260,4812305 +g1,17601:17073933,4812305 +g1,17601:17273162,4812305 +k1,17601:31387652,4812305:14114490 +) +) +] +[1,17601:6630773,45706769:25952256,40108032,0 +(1,17601:6630773,45706769:25952256,40108032,0 +(1,17601:6630773,45706769:0,0,0 +g1,17601:6630773,45706769 +) +[1,17601:6630773,45706769:25952256,40108032,0 +v1,17517:6630773,6254097:0,393216,0 +(1,17532:6630773,12629339:25952256,6768458,196608 +g1,17532:6630773,12629339 +g1,17532:6630773,12629339 +g1,17532:6434165,12629339 +(1,17532:6434165,12629339:0,6768458,196608 +r1,17601:32779637,12629339:26345472,6965066,196608 +k1,17532:6434165,12629339:-26345472 +) +(1,17532:6434165,12629339:26345472,6768458,196608 +[1,17532:6630773,12629339:25952256,6571850,0 +(1,17519:6630773,6488534:25952256,431045,112852 +(1,17518:6630773,6488534:0,0,0 +g1,17518:6630773,6488534 +g1,17518:6630773,6488534 +g1,17518:6303093,6488534 +(1,17518:6303093,6488534:0,0,0 +) +g1,17518:6630773,6488534 +) +k1,17519:6630773,6488534:0 +g1,17519:10614220,6488534 +g1,17519:11278128,6488534 +g1,17519:14929621,6488534 +g1,17519:15593529,6488534 +g1,17519:16257437,6488534 +h1,17519:19245022,6488534:0,0,0 +k1,17519:32583029,6488534:13338007 +g1,17519:32583029,6488534 +) +(1,17523:6630773,7828749:25952256,431045,112852 +g1,17523:7626635,7828749 +g1,17523:10282267,7828749 +g1,17523:11942037,7828749 +g1,17523:13269853,7828749 +g1,17523:13933761,7828749 +k1,17523:32583029,7828749:14333867 +g1,17523:32583029,7828749 +) +(1,17531:6630773,8513604:25952256,424439,6605 +(1,17523:6630773,8513604:0,0,0 +g1,17523:6630773,8513604 +g1,17523:6630773,8513604 +g1,17523:6303093,8513604 +(1,17523:6303093,8513604:0,0,0 +) +g1,17523:6630773,8513604 +) +g1,17531:7626635,8513604 +g1,17531:8290543,8513604 +g1,17531:8954451,8513604 +g1,17531:11610083,8513604 +g1,17531:12273991,8513604 +g1,17531:12937899,8513604 +h1,17531:13269853,8513604:0,0,0 +k1,17531:32583029,8513604:19313176 +g1,17531:32583029,8513604 +) +(1,17531:6630773,9198459:25952256,424439,6605 +h1,17531:6630773,9198459:0,0,0 +g1,17531:7626635,9198459 +g1,17531:7958589,9198459 +g1,17531:8290543,9198459 +g1,17531:8622497,9198459 +g1,17531:8954451,9198459 +g1,17531:10282267,9198459 +h1,17531:12605945,9198459:0,0,0 +k1,17531:32583029,9198459:19977084 +g1,17531:32583029,9198459 +) +(1,17531:6630773,9883314:25952256,424439,6605 +h1,17531:6630773,9883314:0,0,0 +g1,17531:7626635,9883314 +g1,17531:7958589,9883314 +g1,17531:8290543,9883314 +g1,17531:10282267,9883314 +k1,17531:10282267,9883314:0 +h1,17531:11942037,9883314:0,0,0 +k1,17531:32583029,9883314:20640992 +g1,17531:32583029,9883314 +) +(1,17531:6630773,10568169:25952256,424439,6605 +h1,17531:6630773,10568169:0,0,0 +g1,17531:7626635,10568169 +g1,17531:8290543,10568169 +g1,17531:8622497,10568169 +g1,17531:8954451,10568169 +g1,17531:9286405,10568169 +g1,17531:9618359,10568169 +g1,17531:10282267,10568169 +h1,17531:10614221,10568169:0,0,0 +k1,17531:32583029,10568169:21968808 +g1,17531:32583029,10568169 +) +(1,17531:6630773,11253024:25952256,424439,6605 +h1,17531:6630773,11253024:0,0,0 +g1,17531:7626635,11253024 +g1,17531:8290543,11253024 +g1,17531:8622497,11253024 +g1,17531:8954451,11253024 +g1,17531:9286405,11253024 +g1,17531:9618359,11253024 +g1,17531:10282267,11253024 +h1,17531:10614221,11253024:0,0,0 +k1,17531:32583029,11253024:21968808 +g1,17531:32583029,11253024 +) +(1,17531:6630773,11937879:25952256,424439,9908 +h1,17531:6630773,11937879:0,0,0 +g1,17531:7626635,11937879 +g1,17531:8290543,11937879 +g1,17531:8622497,11937879 +g1,17531:8954451,11937879 +g1,17531:9286405,11937879 +g1,17531:9618359,11937879 +g1,17531:10282267,11937879 +h1,17531:10614221,11937879:0,0,0 +k1,17531:32583029,11937879:21968808 +g1,17531:32583029,11937879 +) +(1,17531:6630773,12622734:25952256,424439,6605 +h1,17531:6630773,12622734:0,0,0 +g1,17531:7626635,12622734 +g1,17531:8290543,12622734 +g1,17531:8622497,12622734 +g1,17531:8954451,12622734 +g1,17531:9286405,12622734 +g1,17531:9618359,12622734 +g1,17531:10282267,12622734 +h1,17531:10614221,12622734:0,0,0 +k1,17531:32583029,12622734:21968808 +g1,17531:32583029,12622734 +) +] +) +g1,17532:32583029,12629339 +g1,17532:6630773,12629339 +g1,17532:6630773,12629339 +g1,17532:32583029,12629339 +g1,17532:32583029,12629339 +) +h1,17532:6630773,12825947:0,0,0 +(1,17536:6630773,13691027:25952256,513147,134348 +h1,17535:6630773,13691027:983040,0,0 +g1,17535:8300630,13691027 +g1,17535:11178971,13691027 +g1,17535:13573001,13691027 +g1,17535:15306428,13691027 +g1,17535:17073278,13691027 +(1,17535:17073278,13691027:0,414482,115847 +r1,17601:17431544,13691027:358266,530329,115847 +k1,17535:17073278,13691027:-358266 +) +(1,17535:17073278,13691027:358266,414482,115847 +k1,17535:17073278,13691027:3277 +h1,17535:17428267,13691027:0,411205,112570 +) +g1,17535:17630773,13691027 +g1,17535:19114508,13691027 +g1,17535:20129005,13691027 +g1,17535:21394505,13691027 +g1,17535:23068949,13691027 +g1,17535:23624038,13691027 +g1,17535:25804420,13691027 +g1,17535:26619687,13691027 +(1,17535:26619687,13691027:0,414482,115847 +r1,17601:26977953,13691027:358266,530329,115847 +k1,17535:26619687,13691027:-358266 +) +(1,17535:26619687,13691027:358266,414482,115847 +k1,17535:26619687,13691027:3277 +h1,17535:26974676,13691027:0,411205,112570 +) +k1,17536:32583029,13691027:5552648 +g1,17536:32583029,13691027 +) +v1,17538:6630773,14375882:0,393216,0 +(1,17550:6630773,18699862:25952256,4717196,196608 +g1,17550:6630773,18699862 +g1,17550:6630773,18699862 +g1,17550:6434165,18699862 +(1,17550:6434165,18699862:0,4717196,196608 +r1,17601:32779637,18699862:26345472,4913804,196608 +k1,17550:6434165,18699862:-26345472 +) +(1,17550:6434165,18699862:26345472,4717196,196608 +[1,17550:6630773,18699862:25952256,4520588,0 +(1,17540:6630773,14610319:25952256,431045,112852 +(1,17539:6630773,14610319:0,0,0 +g1,17539:6630773,14610319 +g1,17539:6630773,14610319 +g1,17539:6303093,14610319 +(1,17539:6303093,14610319:0,0,0 +) +g1,17539:6630773,14610319 +) +k1,17540:6630773,14610319:0 +g1,17540:10614220,14610319 +g1,17540:11278128,14610319 +g1,17540:14597667,14610319 +g1,17540:15261575,14610319 +g1,17540:15925483,14610319 +h1,17540:19245022,14610319:0,0,0 +k1,17540:32583029,14610319:13338007 +g1,17540:32583029,14610319 +) +(1,17544:6630773,15950534:25952256,431045,112852 +g1,17544:7626635,15950534 +g1,17544:10282267,15950534 +g1,17544:11942037,15950534 +g1,17544:13269853,15950534 +g1,17544:13933761,15950534 +k1,17544:32583029,15950534:14333867 +g1,17544:32583029,15950534 +) +(1,17549:6630773,16635389:25952256,424439,6605 +(1,17544:6630773,16635389:0,0,0 +g1,17544:6630773,16635389 +g1,17544:6630773,16635389 +g1,17544:6303093,16635389 +(1,17544:6303093,16635389:0,0,0 +) +g1,17544:6630773,16635389 +) +g1,17549:7626635,16635389 +g1,17549:8290543,16635389 +g1,17549:8954451,16635389 +g1,17549:11610083,16635389 +g1,17549:12273991,16635389 +g1,17549:12937899,16635389 +h1,17549:13269853,16635389:0,0,0 +k1,17549:32583029,16635389:19313176 +g1,17549:32583029,16635389 +) +(1,17549:6630773,17320244:25952256,424439,6605 +h1,17549:6630773,17320244:0,0,0 +g1,17549:7626635,17320244 +g1,17549:7958589,17320244 +g1,17549:8290543,17320244 +g1,17549:8622497,17320244 +g1,17549:8954451,17320244 +g1,17549:10282267,17320244 +h1,17549:12605945,17320244:0,0,0 +k1,17549:32583029,17320244:19977084 +g1,17549:32583029,17320244 +) +(1,17549:6630773,18005099:25952256,424439,6605 +h1,17549:6630773,18005099:0,0,0 +g1,17549:7626635,18005099 +g1,17549:7958589,18005099 +g1,17549:8290543,18005099 +g1,17549:10282267,18005099 +k1,17549:10282267,18005099:0 +h1,17549:11942037,18005099:0,0,0 +k1,17549:32583029,18005099:20640992 +g1,17549:32583029,18005099 +) +(1,17549:6630773,18689954:25952256,407923,9908 +h1,17549:6630773,18689954:0,0,0 +g1,17549:7626635,18689954 +g1,17549:8290543,18689954 +g1,17549:8622497,18689954 +g1,17549:8954451,18689954 +g1,17549:9286405,18689954 +g1,17549:9618359,18689954 +g1,17549:10282267,18689954 +h1,17549:10614221,18689954:0,0,0 +k1,17549:32583029,18689954:21968808 +g1,17549:32583029,18689954 +) +] +) +g1,17550:32583029,18699862 +g1,17550:6630773,18699862 +g1,17550:6630773,18699862 +g1,17550:32583029,18699862 +g1,17550:32583029,18699862 +) +h1,17550:6630773,18896470:0,0,0 +v1,17554:6630773,19581325:0,393216,0 +(1,17566:6630773,23905305:25952256,4717196,196608 +g1,17566:6630773,23905305 +g1,17566:6630773,23905305 +g1,17566:6434165,23905305 +(1,17566:6434165,23905305:0,4717196,196608 +r1,17601:32779637,23905305:26345472,4913804,196608 +k1,17566:6434165,23905305:-26345472 +) +(1,17566:6434165,23905305:26345472,4717196,196608 +[1,17566:6630773,23905305:25952256,4520588,0 +(1,17556:6630773,19815762:25952256,431045,112852 +(1,17555:6630773,19815762:0,0,0 +g1,17555:6630773,19815762 +g1,17555:6630773,19815762 +g1,17555:6303093,19815762 +(1,17555:6303093,19815762:0,0,0 +) +g1,17555:6630773,19815762 +) +k1,17556:6630773,19815762:0 +g1,17556:10614220,19815762 +g1,17556:11278128,19815762 +g1,17556:14929621,19815762 +g1,17556:15593529,19815762 +g1,17556:16257437,19815762 +h1,17556:19245022,19815762:0,0,0 +k1,17556:32583029,19815762:13338007 +g1,17556:32583029,19815762 +) +(1,17560:6630773,21155977:25952256,431045,112852 +g1,17560:7626635,21155977 +g1,17560:10282267,21155977 +g1,17560:11942037,21155977 +g1,17560:13269853,21155977 +g1,17560:13933761,21155977 +k1,17560:32583029,21155977:14333867 +g1,17560:32583029,21155977 +) +(1,17565:6630773,21840832:25952256,424439,6605 +(1,17560:6630773,21840832:0,0,0 +g1,17560:6630773,21840832 +g1,17560:6630773,21840832 +g1,17560:6303093,21840832 +(1,17560:6303093,21840832:0,0,0 +) +g1,17560:6630773,21840832 +) +g1,17565:7626635,21840832 +g1,17565:8290543,21840832 +g1,17565:8954451,21840832 +g1,17565:11610083,21840832 +g1,17565:12273991,21840832 +g1,17565:12937899,21840832 +h1,17565:13269853,21840832:0,0,0 +k1,17565:32583029,21840832:19313176 +g1,17565:32583029,21840832 +) +(1,17565:6630773,22525687:25952256,424439,6605 +h1,17565:6630773,22525687:0,0,0 +g1,17565:7626635,22525687 +g1,17565:7958589,22525687 +g1,17565:8290543,22525687 +g1,17565:8622497,22525687 +g1,17565:8954451,22525687 +g1,17565:10282267,22525687 +h1,17565:12605945,22525687:0,0,0 +k1,17565:32583029,22525687:19977084 +g1,17565:32583029,22525687 +) +(1,17565:6630773,23210542:25952256,424439,6605 +h1,17565:6630773,23210542:0,0,0 +g1,17565:7626635,23210542 +g1,17565:7958589,23210542 +g1,17565:8290543,23210542 +g1,17565:10282267,23210542 +k1,17565:10282267,23210542:0 +h1,17565:11942037,23210542:0,0,0 +k1,17565:32583029,23210542:20640992 +g1,17565:32583029,23210542 +) +(1,17565:6630773,23895397:25952256,424439,9908 +h1,17565:6630773,23895397:0,0,0 +g1,17565:7626635,23895397 +g1,17565:8290543,23895397 +g1,17565:8622497,23895397 +g1,17565:8954451,23895397 +g1,17565:9286405,23895397 +g1,17565:9618359,23895397 +g1,17565:10282267,23895397 +h1,17565:10614221,23895397:0,0,0 +k1,17565:32583029,23895397:21968808 +g1,17565:32583029,23895397 +) +] +) +g1,17566:32583029,23905305 +g1,17566:6630773,23905305 +g1,17566:6630773,23905305 +g1,17566:32583029,23905305 +g1,17566:32583029,23905305 +) +h1,17566:6630773,24101913:0,0,0 +(1,17570:6630773,24966993:25952256,513147,126483 +h1,17569:6630773,24966993:983040,0,0 +k1,17569:8731496,24966993:164134 +k1,17569:10293514,24966993:164135 +k1,17569:12831362,24966993:164134 +k1,17569:15378386,24966993:164135 +(1,17569:15378386,24966993:0,452978,115847 +r1,17601:16440075,24966993:1061689,568825,115847 +k1,17569:15378386,24966993:-1061689 +) +(1,17569:15378386,24966993:1061689,452978,115847 +k1,17569:15378386,24966993:3277 +h1,17569:16436798,24966993:0,411205,112570 +) +k1,17569:16604209,24966993:164134 +k1,17569:17384382,24966993:164135 +(1,17569:17384382,24966993:0,459977,115847 +r1,17601:20204631,24966993:2820249,575824,115847 +k1,17569:17384382,24966993:-2820249 +) +(1,17569:17384382,24966993:2820249,459977,115847 +k1,17569:17384382,24966993:3277 +h1,17569:20201354,24966993:0,411205,112570 +) +k1,17569:20368765,24966993:164134 +k1,17569:21184328,24966993:164135 +k1,17569:25381548,24966993:164134 +k1,17569:26564768,24966993:164135 +k1,17569:27821387,24966993:164134 +k1,17569:28652678,24966993:164135 +(1,17569:28652678,24966993:0,452978,115847 +r1,17601:29362656,24966993:709978,568825,115847 +k1,17569:28652678,24966993:-709978 +) +(1,17569:28652678,24966993:709978,452978,115847 +k1,17569:28652678,24966993:3277 +h1,17569:29359379,24966993:0,411205,112570 +) +k1,17569:29526790,24966993:164134 +k1,17569:30342353,24966993:164135 +k1,17569:32583029,24966993:0 +) +(1,17570:6630773,25832073:25952256,513147,7863 +g1,17569:8689259,25832073 +g1,17569:11601679,25832073 +g1,17569:13981291,25832073 +g1,17569:14928286,25832073 +g1,17569:17965879,25832073 +g1,17569:19112759,25832073 +k1,17570:32583029,25832073:10759046 +g1,17570:32583029,25832073 +) +v1,17572:6630773,26516928:0,393216,0 +(1,17588:6630773,33740895:25952256,7617183,196608 +g1,17588:6630773,33740895 +g1,17588:6630773,33740895 +g1,17588:6434165,33740895 +(1,17588:6434165,33740895:0,7617183,196608 +r1,17601:32779637,33740895:26345472,7813791,196608 +k1,17588:6434165,33740895:-26345472 +) +(1,17588:6434165,33740895:26345472,7617183,196608 +[1,17588:6630773,33740895:25952256,7420575,0 +(1,17574:6630773,26751365:25952256,431045,86428 +(1,17573:6630773,26751365:0,0,0 +g1,17573:6630773,26751365 +g1,17573:6630773,26751365 +g1,17573:6303093,26751365 +(1,17573:6303093,26751365:0,0,0 +) +g1,17573:6630773,26751365 +) +g1,17574:9950312,26751365 +g1,17574:10946174,26751365 +g1,17574:16589391,26751365 +g1,17574:18249161,26751365 +g1,17574:18913069,26751365 +h1,17574:20240885,26751365:0,0,0 +k1,17574:32583029,26751365:12342144 +g1,17574:32583029,26751365 +) +(1,17575:6630773,27436220:25952256,431045,112852 +h1,17575:6630773,27436220:0,0,0 +g1,17575:10614220,27436220 +g1,17575:11278128,27436220 +g1,17575:14929621,27436220 +g1,17575:15593529,27436220 +g1,17575:16257437,27436220 +g1,17575:19908930,27436220 +g1,17575:20904792,27436220 +g1,17575:21568700,27436220 +g1,17575:24556286,27436220 +g1,17575:25220194,27436220 +h1,17575:27543872,27436220:0,0,0 +k1,17575:32583029,27436220:5039157 +g1,17575:32583029,27436220 +) +(1,17587:6630773,28252147:25952256,424439,9908 +(1,17577:6630773,28252147:0,0,0 +g1,17577:6630773,28252147 +g1,17577:6630773,28252147 +g1,17577:6303093,28252147 +(1,17577:6303093,28252147:0,0,0 +) +g1,17577:6630773,28252147 +) +g1,17587:7626635,28252147 +g1,17587:8290543,28252147 +g1,17587:8954451,28252147 +g1,17587:11610083,28252147 +g1,17587:12273991,28252147 +g1,17587:12937899,28252147 +h1,17587:13269853,28252147:0,0,0 +k1,17587:32583029,28252147:19313176 +g1,17587:32583029,28252147 +) +(1,17587:6630773,28937002:25952256,424439,6605 +h1,17587:6630773,28937002:0,0,0 +g1,17587:7626635,28937002 +g1,17587:7958589,28937002 +g1,17587:8290543,28937002 +g1,17587:8622497,28937002 +g1,17587:10282267,28937002 +g1,17587:12937899,28937002 +h1,17587:15261577,28937002:0,0,0 +k1,17587:32583029,28937002:17321452 +g1,17587:32583029,28937002 +) +(1,17587:6630773,29621857:25952256,424439,6605 +h1,17587:6630773,29621857:0,0,0 +g1,17587:7626635,29621857 +g1,17587:7958589,29621857 +g1,17587:8290543,29621857 +g1,17587:10282267,29621857 +g1,17587:12273991,29621857 +g1,17587:12605945,29621857 +g1,17587:12937899,29621857 +k1,17587:12937899,29621857:0 +h1,17587:14597669,29621857:0,0,0 +k1,17587:32583029,29621857:17985360 +g1,17587:32583029,29621857 +) +(1,17587:6630773,30306712:25952256,424439,6605 +h1,17587:6630773,30306712:0,0,0 +g1,17587:7626635,30306712 +g1,17587:8290543,30306712 +g1,17587:8622497,30306712 +g1,17587:8954451,30306712 +g1,17587:9286405,30306712 +g1,17587:9618359,30306712 +g1,17587:10282267,30306712 +g1,17587:10946175,30306712 +g1,17587:11278129,30306712 +g1,17587:11610083,30306712 +g1,17587:11942037,30306712 +g1,17587:12273991,30306712 +g1,17587:12605945,30306712 +g1,17587:12937899,30306712 +h1,17587:13269853,30306712:0,0,0 +k1,17587:32583029,30306712:19313176 +g1,17587:32583029,30306712 +) +(1,17587:6630773,30991567:25952256,424439,6605 +h1,17587:6630773,30991567:0,0,0 +g1,17587:7626635,30991567 +g1,17587:8290543,30991567 +g1,17587:8622497,30991567 +g1,17587:8954451,30991567 +g1,17587:9286405,30991567 +g1,17587:9618359,30991567 +g1,17587:10282267,30991567 +g1,17587:10946175,30991567 +g1,17587:11278129,30991567 +g1,17587:11610083,30991567 +g1,17587:11942037,30991567 +g1,17587:12273991,30991567 +g1,17587:12605945,30991567 +g1,17587:12937899,30991567 +h1,17587:13269853,30991567:0,0,0 +k1,17587:32583029,30991567:19313176 +g1,17587:32583029,30991567 +) +(1,17587:6630773,31676422:25952256,424439,9908 +h1,17587:6630773,31676422:0,0,0 +g1,17587:7626635,31676422 +g1,17587:8290543,31676422 +g1,17587:8622497,31676422 +g1,17587:8954451,31676422 +g1,17587:9286405,31676422 +g1,17587:9618359,31676422 +g1,17587:10282267,31676422 +g1,17587:10946175,31676422 +g1,17587:11278129,31676422 +g1,17587:11610083,31676422 +g1,17587:11942037,31676422 +g1,17587:12273991,31676422 +g1,17587:12605945,31676422 +g1,17587:12937899,31676422 +h1,17587:13269853,31676422:0,0,0 +k1,17587:32583029,31676422:19313176 +g1,17587:32583029,31676422 +) +(1,17587:6630773,32361277:25952256,424439,6605 +h1,17587:6630773,32361277:0,0,0 +g1,17587:7626635,32361277 +g1,17587:8290543,32361277 +g1,17587:8622497,32361277 +g1,17587:8954451,32361277 +g1,17587:9286405,32361277 +g1,17587:9618359,32361277 +g1,17587:10282267,32361277 +g1,17587:10946175,32361277 +g1,17587:11278129,32361277 +g1,17587:11610083,32361277 +g1,17587:11942037,32361277 +g1,17587:12273991,32361277 +g1,17587:12605945,32361277 +g1,17587:12937899,32361277 +h1,17587:13269853,32361277:0,0,0 +k1,17587:32583029,32361277:19313176 +g1,17587:32583029,32361277 +) +(1,17587:6630773,33046132:25952256,398014,9908 +h1,17587:6630773,33046132:0,0,0 +g1,17587:7626635,33046132 +g1,17587:8290543,33046132 +g1,17587:8622497,33046132 +g1,17587:8954451,33046132 +g1,17587:9286405,33046132 +g1,17587:9618359,33046132 +g1,17587:10282267,33046132 +g1,17587:10946175,33046132 +g1,17587:11278129,33046132 +g1,17587:11610083,33046132 +g1,17587:11942037,33046132 +g1,17587:12273991,33046132 +g1,17587:12605945,33046132 +g1,17587:12937899,33046132 +k1,17587:12937899,33046132:0 +h1,17587:14265715,33046132:0,0,0 +k1,17587:32583029,33046132:18317314 +g1,17587:32583029,33046132 +) +(1,17587:6630773,33730987:25952256,424439,9908 +h1,17587:6630773,33730987:0,0,0 +g1,17587:7626635,33730987 +g1,17587:8290543,33730987 +g1,17587:8622497,33730987 +g1,17587:8954451,33730987 +g1,17587:9286405,33730987 +g1,17587:9618359,33730987 +g1,17587:10282267,33730987 +g1,17587:11942037,33730987 +g1,17587:12273991,33730987 +g1,17587:12605945,33730987 +g1,17587:12937899,33730987 +h1,17587:13269853,33730987:0,0,0 +k1,17587:32583029,33730987:19313176 +g1,17587:32583029,33730987 +) +] +) +g1,17588:32583029,33740895 +g1,17588:6630773,33740895 +g1,17588:6630773,33740895 +g1,17588:32583029,33740895 +g1,17588:32583029,33740895 +) +h1,17588:6630773,33937503:0,0,0 +(1,17596:6630773,36768663:25952256,32768,229376 +(1,17596:6630773,36768663:0,32768,229376 +(1,17596:6630773,36768663:5505024,32768,229376 +r1,17601:12135797,36768663:5505024,262144,229376 +) +k1,17596:6630773,36768663:-5505024 +) +(1,17596:6630773,36768663:25952256,32768,0 +r1,17601:32583029,36768663:25952256,32768,0 +) +) +(1,17596:6630773,38400515:25952256,606339,14155 +(1,17596:6630773,38400515:1974731,582746,14155 +g1,17596:6630773,38400515 +g1,17596:8605504,38400515 +) +g1,17596:11282519,38400515 +g1,17596:12992222,38400515 +g1,17596:15459260,38400515 +g1,17596:17472526,38400515 +k1,17596:32583029,38400515:11024203 +g1,17596:32583029,38400515 +) +(1,17599:6630773,39658811:25952256,505283,134348 +k1,17598:7419728,39658811:161120 +k1,17598:7995654,39658811:161083 +k1,17598:9348219,39658811:161120 +k1,17598:11261117,39658811:161121 +k1,17598:13124207,39658811:161120 +k1,17598:16716138,39658811:161121 +k1,17598:20223526,39658811:161120 +k1,17598:21810055,39658811:161121 +k1,17598:23981820,39658811:161120 +k1,17598:25134501,39658811:161121 +k1,17598:27333791,39658811:161120 +k1,17598:28181074,39658811:161121 +k1,17598:30572384,39658811:161120 +k1,17598:32583029,39658811:0 +) +(1,17599:6630773,40523891:25952256,513147,134348 +k1,17598:9132009,40523891:191092 +k1,17598:9974529,40523891:191092 +k1,17598:12359765,40523891:191091 +k1,17598:17169835,40523891:191092 +k1,17598:17988762,40523891:191092 +k1,17598:18768367,40523891:191092 +k1,17598:20715169,40523891:191092 +k1,17598:21897821,40523891:191092 +k1,17598:23690612,40523891:191091 +k1,17598:27186685,40523891:191092 +k1,17598:29415947,40523891:191092 +k1,17598:30293201,40523891:191092 +k1,17598:32583029,40523891:0 +) +(1,17599:6630773,41388971:25952256,513147,134348 +k1,17598:7588410,41388971:298345 +k1,17598:9441924,41388971:298345 +(1,17598:9441924,41388971:0,414482,115847 +r1,17601:11910461,41388971:2468537,530329,115847 +k1,17598:9441924,41388971:-2468537 +) +(1,17598:9441924,41388971:2468537,414482,115847 +k1,17598:9441924,41388971:3277 +h1,17598:11907184,41388971:0,411205,112570 +) +k1,17598:12208806,41388971:298345 +k1,17598:13190036,41388971:298345 +(1,17598:13190036,41388971:0,452978,115847 +r1,17601:15658573,41388971:2468537,568825,115847 +k1,17598:13190036,41388971:-2468537 +) +(1,17598:13190036,41388971:2468537,452978,115847 +k1,17598:13190036,41388971:3277 +h1,17598:15655296,41388971:0,411205,112570 +) +k1,17598:16130588,41388971:298345 +k1,17598:18963867,41388971:298346 +k1,17598:22460368,41388971:298345 +k1,17598:24804747,41388971:298345 +k1,17598:27689798,41388971:298345 +k1,17598:29382094,41388971:298345 +k1,17598:31391584,41388971:298345 +k1,17598:32583029,41388971:0 +) +(1,17599:6630773,42254051:25952256,505283,7863 +g1,17598:8585712,42254051 +g1,17598:9400979,42254051 +g1,17598:10015051,42254051 +g1,17598:11997515,42254051 +k1,17599:32583029,42254051:18662688 +g1,17599:32583029,42254051 +) +(1,17601:6630773,43119131:25952256,513147,134348 +h1,17600:6630773,43119131:983040,0,0 +k1,17600:9667056,43119131:270008 +k1,17600:12256383,43119131:270008 +k1,17600:13920343,43119131:270009 +k1,17600:15615759,43119131:270008 +k1,17600:18070082,43119131:270008 +k1,17600:19646223,43119131:270008 +k1,17600:20575524,43119131:270009 +k1,17600:21785318,43119131:270008 +k1,17600:22513423,43119131:270008 +k1,17600:23314928,43119131:270008 +k1,17600:26693965,43119131:270009 +k1,17600:27615401,43119131:270008 +k1,17600:31445980,43119131:270008 +k1,17601:32583029,43119131:0 +) +(1,17601:6630773,43984211:25952256,505283,95026 +k1,17600:8700854,43984211:203616 +k1,17600:10329877,43984211:203615 +k1,17600:14271667,43984211:203616 +k1,17600:16250648,43984211:203611 +k1,17600:17645708,43984211:203615 +k1,17600:19343545,43984211:203616 +k1,17600:20972569,43984211:203616 +k1,17600:25088028,43984211:203615 +k1,17600:26194075,43984211:203616 +k1,17600:28628536,43984211:203615 +k1,17600:29448190,43984211:203616 +k1,17600:31077213,43984211:203615 +k1,17600:31812326,43984211:203616 +k1,17600:32583029,43984211:0 +) +(1,17601:6630773,44849291:25952256,513147,134348 +k1,17600:9491638,44849291:155539 +k1,17600:11327519,44849291:155538 +k1,17600:12674503,44849291:155539 +k1,17600:13934323,44849291:155538 +k1,17600:14837628,44849291:155539 +k1,17600:19895259,44849291:155538 +k1,17600:23140821,44849291:155539 +k1,17600:25031753,44849291:155539 +k1,17600:26722144,44849291:155538 +k1,17600:28531812,44849291:155539 +k1,17600:30443060,44849291:155538 +k1,17600:31590159,44849291:155539 +k1,17601:32583029,44849291:0 +) +] +(1,17601:32583029,45706769:0,0,0 +g1,17601:32583029,45706769 +) +) +] +(1,17601:6630773,47279633:25952256,0,0 +h1,17601:6630773,47279633:25952256,0,0 +) +] +(1,17601:4262630,4025873:0,0,0 +[1,17601:-473656,4025873:0,0,0 +(1,17601:-473656,-710413:0,0,0 +(1,17601:-473656,-710413:0,0,0 +g1,17601:-473656,-710413 +) +g1,17601:-473656,-710413 ) ] ) ] !25894 -}282 -Input:2923:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2924:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2925:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2926:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}283 Input:2927:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2928:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2929:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2930:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2931:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2932:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{283 -[1,17623:4262630,47279633:28320399,43253760,0 -(1,17623:4262630,4025873:0,0,0 -[1,17623:-473656,4025873:0,0,0 -(1,17623:-473656,-710413:0,0,0 -(1,17623:-473656,-644877:0,0,0 -k1,17623:-473656,-644877:-65536 +{284 +[1,17621:4262630,47279633:28320399,43253760,0 +(1,17621:4262630,4025873:0,0,0 +[1,17621:-473656,4025873:0,0,0 +(1,17621:-473656,-710413:0,0,0 +(1,17621:-473656,-644877:0,0,0 +k1,17621:-473656,-644877:-65536 ) -(1,17623:-473656,4736287:0,0,0 -k1,17623:-473656,4736287:5209943 +(1,17621:-473656,4736287:0,0,0 +k1,17621:-473656,4736287:5209943 ) -g1,17623:-473656,-710413 +g1,17621:-473656,-710413 ) ] ) -[1,17623:6630773,47279633:25952256,43253760,0 -[1,17623:6630773,4812305:25952256,786432,0 -(1,17623:6630773,4812305:25952256,505283,134348 -(1,17623:6630773,4812305:25952256,505283,134348 -g1,17623:3078558,4812305 -[1,17623:3078558,4812305:0,0,0 -(1,17623:3078558,2439708:0,1703936,0 -k1,17623:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17623:2537886,2439708:1179648,16384,0 +[1,17621:6630773,47279633:25952256,43253760,0 +[1,17621:6630773,4812305:25952256,786432,0 +(1,17621:6630773,4812305:25952256,505283,134348 +(1,17621:6630773,4812305:25952256,505283,134348 +g1,17621:3078558,4812305 +[1,17621:3078558,4812305:0,0,0 +(1,17621:3078558,2439708:0,1703936,0 +k1,17621:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17621:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17623:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17621:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17623:3078558,4812305:0,0,0 -(1,17623:3078558,2439708:0,1703936,0 -g1,17623:29030814,2439708 -g1,17623:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17623:36151628,1915420:16384,1179648,0 +[1,17621:3078558,4812305:0,0,0 +(1,17621:3078558,2439708:0,1703936,0 +g1,17621:29030814,2439708 +g1,17621:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17621:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17623:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17621:37855564,2439708:1179648,16384,0 ) ) -k1,17623:3078556,2439708:-34777008 +k1,17621:3078556,2439708:-34777008 ) ] -[1,17623:3078558,4812305:0,0,0 -(1,17623:3078558,49800853:0,16384,2228224 -k1,17623:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17623:2537886,49800853:1179648,16384,0 +[1,17621:3078558,4812305:0,0,0 +(1,17621:3078558,49800853:0,16384,2228224 +k1,17621:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17621:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17623:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17621:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 -) -] -) -) -) -] -[1,17623:3078558,4812305:0,0,0 -(1,17623:3078558,49800853:0,16384,2228224 -g1,17623:29030814,49800853 -g1,17623:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17623:36151628,51504789:16384,1179648,0 -) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 -) -] -) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17623:37855564,49800853:1179648,16384,0 -) -) -k1,17623:3078556,49800853:-34777008 -) -] -g1,17623:6630773,4812305 -k1,17623:23347041,4812305:15520891 -g1,17623:23960458,4812305 -g1,17623:27572802,4812305 -g1,17623:29306229,4812305 -) -) -] -[1,17623:6630773,45706769:25952256,40108032,0 -(1,17623:6630773,45706769:25952256,40108032,0 -(1,17623:6630773,45706769:0,0,0 -g1,17623:6630773,45706769 -) -[1,17623:6630773,45706769:25952256,40108032,0 -(1,17603:6630773,6254097:25952256,513147,134348 -k1,17602:8716566,6254097:166243 -k1,17602:13877963,6254097:166243 -k1,17602:14703498,6254097:166243 -k1,17602:15225601,6254097:166243 -k1,17602:17086605,6254097:166243 -k1,17602:19483693,6254097:166242 -k1,17602:20265974,6254097:166243 -k1,17602:22031295,6254097:166243 -k1,17602:23932931,6254097:166243 -k1,17602:25593395,6254097:166243 -k1,17602:27185046,6254097:166243 -k1,17602:31089463,6254097:166243 -k1,17602:32583029,6254097:0 -) -(1,17603:6630773,7119177:25952256,505283,126483 -k1,17602:7602330,7119177:285395 -k1,17602:9148552,7119177:285309 -k1,17602:11843050,7119177:285395 -k1,17602:15135892,7119177:285395 -k1,17602:17405062,7119177:285395 -k1,17602:18887144,7119177:285395 -k1,17602:23003774,7119177:285395 -k1,17602:25924372,7119177:285395 -k1,17602:27570863,7119177:285308 -k1,17602:29047703,7119177:285395 -k1,17602:30827319,7119177:285395 -k1,17602:32583029,7119177:0 -) -(1,17603:6630773,7984257:25952256,505283,134348 -k1,17602:9585016,7984257:252194 -k1,17602:10646581,7984257:252195 -k1,17602:13362929,7984257:252194 -k1,17602:17075424,7984257:252194 -k1,17602:19926776,7984257:252194 -k1,17602:22649023,7984257:252195 -k1,17602:24092662,7984257:252194 -k1,17602:24960894,7984257:252194 -k1,17602:26905228,7984257:252194 -k1,17602:29028476,7984257:252195 -k1,17602:30706078,7984257:252194 -k1,17602:32583029,7984257:0 -) -(1,17603:6630773,8849337:25952256,513147,126483 -k1,17602:8790689,8849337:176141 -k1,17602:12122388,8849337:176140 -k1,17602:12926364,8849337:176141 -k1,17602:15768509,8849337:176140 -k1,17602:17696427,8849337:176141 -k1,17602:20854455,8849337:176140 -k1,17602:22746329,8849337:176141 -k1,17602:24014954,8849337:176140 -k1,17602:24546955,8849337:176141 -k1,17602:27457257,8849337:176140 -k1,17602:29101404,8849337:176141 -k1,17602:29893582,8849337:176140 -k1,17602:31088808,8849337:176141 -k1,17602:32583029,8849337:0 -) -(1,17603:6630773,9714417:25952256,505283,102891 -k1,17602:8235313,9714417:179132 -k1,17602:12326288,9714417:179131 -k1,17602:13524505,9714417:179132 -k1,17602:14428465,9714417:179132 -k1,17602:16475372,9714417:179131 -k1,17602:19575444,9714417:179132 -k1,17602:21653809,9714417:179132 -k1,17602:23029627,9714417:179131 -k1,17602:24919904,9714417:179132 -k1,17602:25908406,9714417:179132 -k1,17602:27973008,9714417:179131 -k1,17602:29848867,9714417:179132 -k1,17602:32583029,9714417:0 -) -(1,17603:6630773,10579497:25952256,513147,134348 -k1,17602:8680302,10579497:251221 -k1,17602:9923084,10579497:251222 -k1,17602:14375818,10579497:251221 -k1,17602:17329088,10579497:251221 -k1,17602:18389679,10579497:251221 -k1,17602:19659986,10579497:251222 -k1,17602:22375361,10579497:251221 -k1,17602:23309467,10579497:251221 -k1,17602:25754833,10579497:251221 -k1,17602:27197500,10579497:251222 -k1,17602:29145448,10579497:251221 -k1,17602:31107814,10579497:251221 -k1,17602:32583029,10579497:0 -) -(1,17603:6630773,11444577:25952256,513147,134348 -k1,17602:8765374,11444577:181628 -k1,17602:10334400,11444577:181629 -k1,17602:12115106,11444577:181628 -k1,17602:14119946,11444577:181628 -k1,17602:14917612,11444577:181628 -k1,17602:16593462,11444577:181629 -k1,17602:18200498,11444577:181628 -k1,17602:20311506,11444577:181628 -k1,17602:21974249,11444577:181629 -k1,17602:23347322,11444577:181628 -k1,17602:26402048,11444577:181628 -k1,17602:28275816,11444577:181628 -k1,17602:29951666,11444577:181629 -k1,17602:31558702,11444577:181628 -k1,17603:32583029,11444577:0 -) -(1,17603:6630773,12309657:25952256,513147,126483 -k1,17602:7943761,12309657:220503 -k1,17602:11797581,12309657:220504 -k1,17602:12669512,12309657:220503 -k1,17602:14062454,12309657:220503 -k1,17602:17045301,12309657:220504 -k1,17602:18691212,12309657:220503 -k1,17602:21646532,12309657:220503 -k1,17602:23058480,12309657:220503 -k1,17602:24298069,12309657:220504 -k1,17602:27052194,12309657:220503 -k1,17602:28759709,12309657:220503 -k1,17602:29795481,12309657:220504 -k1,17602:31082255,12309657:220503 -k1,17602:32583029,12309657:0 -) -(1,17603:6630773,13174737:25952256,505283,7863 -g1,17602:8021447,13174737 -g1,17602:9918714,13174737 -g1,17602:14098600,13174737 -g1,17602:16478212,13174737 -g1,17602:17425207,13174737 -g1,17602:20203933,13174737 -g1,17602:21089324,13174737 -k1,17603:32583029,13174737:9504032 -g1,17603:32583029,13174737 -) -v1,17605:6630773,14039817:0,393216,0 -(1,17606:6630773,20530635:25952256,6884034,0 -g1,17606:6630773,20530635 -g1,17606:6237557,20530635 -r1,17623:6368629,20530635:131072,6884034,0 -g1,17606:6567858,20530635 -g1,17606:6764466,20530635 -[1,17606:6764466,20530635:25818563,6884034,0 -(1,17606:6764466,14348115:25818563,701514,196608 -(1,17605:6764466,14348115:0,701514,196608 -r1,17623:7761522,14348115:997056,898122,196608 -k1,17605:6764466,14348115:-997056 -) -(1,17605:6764466,14348115:997056,701514,196608 -) -k1,17605:8004476,14348115:242954 -k1,17605:8332156,14348115:327680 -k1,17605:11420027,14348115:242953 -k1,17605:14239201,14348115:242954 -k1,17605:15473714,14348115:242953 -k1,17605:16332706,14348115:242954 -k1,17605:17668145,14348115:242954 -k1,17605:18562526,14348115:242953 -k1,17605:21474761,14348115:242954 -k1,17605:23143122,14348115:242953 -k1,17605:25263027,14348115:242954 -k1,17605:26697425,14348115:242953 -k1,17605:27959464,14348115:242954 -k1,17605:32583029,14348115:0 -) -(1,17606:6764466,15213195:25818563,513147,126483 -k1,17605:8510017,15213195:320143 -k1,17605:12742005,15213195:320144 -k1,17605:14333546,15213195:320143 -k1,17605:17997336,15213195:320143 -k1,17605:19830706,15213195:320144 -k1,17605:20682346,15213195:320143 -k1,17605:22857158,15213195:320143 -k1,17605:23986672,15213195:320144 -k1,17605:25961599,15213195:320143 -k1,17605:26964627,15213195:320143 -k1,17605:28647265,15213195:320144 -k1,17605:30669378,15213195:320143 -k1,17605:32583029,15213195:0 -) -(1,17606:6764466,16078275:25818563,513147,134348 -k1,17605:8297853,16078275:290824 -k1,17605:9764955,16078275:290731 -k1,17605:11003430,16078275:290824 -k1,17605:13658792,16078275:290823 -k1,17605:16957063,16078275:290824 -k1,17605:19024568,16078275:290824 -k1,17605:21919792,16078275:290823 -k1,17605:25554263,16078275:290824 -k1,17605:27358312,16078275:290823 -k1,17605:28805846,16078275:290824 -k1,17605:29628166,16078275:290823 -k1,17605:31773659,16078275:290824 -k1,17605:32583029,16078275:0 -) -(1,17606:6764466,16943355:25818563,513147,134348 -k1,17605:7988952,16943355:205401 -k1,17605:10262669,16943355:205401 -k1,17605:11127363,16943355:205402 -k1,17605:14698038,16943355:205401 -k1,17605:16094884,16943355:205401 -k1,17605:18144468,16943355:205401 -k1,17605:19592432,16943355:205401 -k1,17605:25141639,16943355:205401 -k1,17605:25834622,16943355:205395 -k1,17605:27622063,16943355:205402 -k1,17605:28984174,16943355:205401 -k1,17605:29805613,16943355:205401 -k1,17605:32583029,16943355:0 -) -(1,17606:6764466,17808435:25818563,513147,134348 -k1,17605:8063202,17808435:206251 -k1,17605:8800950,17808435:206251 -k1,17605:11145641,17808435:206251 -k1,17605:14549395,17808435:206252 -k1,17605:15441808,17808435:206251 -k1,17605:16418762,17808435:206251 -k1,17605:18439705,17808435:206251 -k1,17605:19261994,17808435:206251 -k1,17605:21484788,17808435:206251 -k1,17605:22933602,17808435:206251 -k1,17605:25641363,17808435:206252 -k1,17605:27392953,17808435:206251 -k1,17605:29024612,17808435:206251 -k1,17605:31107814,17808435:206251 -k1,17605:32583029,17808435:0 -) -(1,17606:6764466,18673515:25818563,513147,7863 -k1,17605:8464891,18673515:275017 -k1,17605:10538216,18673515:275017 -k1,17605:11472525,18673515:275017 -k1,17605:13630391,18673515:275017 -k1,17605:15748280,18673515:275017 -k1,17605:17214742,18673515:275017 -k1,17605:18622878,18673515:275018 -k1,17605:19549323,18673515:275017 -k1,17605:21064937,18673515:275017 -k1,17605:23356497,18673515:275017 -k1,17605:24460544,18673515:275017 -k1,17605:26427701,18673515:275017 -k1,17605:28691080,18673515:275017 -k1,17605:30514713,18673515:275017 -k1,17605:32583029,18673515:0 -) -(1,17606:6764466,19538595:25818563,505283,134348 -k1,17605:8012659,19538595:256633 -k1,17605:11721728,19538595:256632 -k1,17605:14680410,19538595:256633 -k1,17605:15746413,19538595:256633 -k1,17605:17022130,19538595:256632 -k1,17605:20332741,19538595:256633 -k1,17605:22835292,19538595:256632 -k1,17605:24978051,19538595:256633 -k1,17605:27120155,19538595:256633 -k1,17605:27791573,19538595:256575 -k1,17605:28579702,19538595:256632 -k1,17605:31533142,19538595:256633 -k1,17605:32583029,19538595:0 -) -(1,17606:6764466,20403675:25818563,513147,126960 -g1,17605:8631706,20403675 -g1,17605:9005154,20403675 -g1,17605:9378602,20403675 -g1,17605:9752050,20403675 -g1,17605:10498946,20403675 -g1,17605:10872394,20403675 -g1,17605:14233426,20403675 -g1,17605:14606874,20403675 -g1,17605:15727218,20403675 -g1,17605:16100666,20403675 -g1,17605:17594458,20403675 -g1,17605:17967906,20403675 -g1,17605:19461698,20403675 -g1,17605:19835146,20403675 -g1,17605:20582042,20403675 -g1,17605:20955490,20403675 -g1,17605:21702386,20403675 -g1,17605:22075834,20403675 -g1,17605:25063418,20403675 -g1,17605:25436866,20403675 -g1,17605:26930658,20403675 -g1,17605:27304106,20403675 -$1,17605:29171346,20403675 -g1,17605:29370575,20403675 -g1,17605:30517455,20403675 -g1,17605:31072544,20403675 -k1,17606:32583029,20403675:464531 -g1,17606:32583029,20403675 -) -] -g1,17606:32583029,20530635 -) -h1,17606:6630773,20530635:0,0,0 -(1,17609:6630773,21395715:25952256,505283,134348 -h1,17608:6630773,21395715:983040,0,0 -k1,17608:10971419,21395715:234160 -k1,17608:15180338,21395715:234160 -k1,17608:18907567,21395715:234160 -k1,17608:19903255,21395715:234160 -k1,17608:21466485,21395715:234160 -k1,17608:23557279,21395715:234159 -k1,17608:24982884,21395715:234160 -k1,17608:26683740,21395715:234160 -k1,17608:28246970,21395715:234160 -k1,17608:31052763,21395715:234160 -k1,17608:32583029,21395715:0 -) -(1,17609:6630773,22260795:25952256,505283,134348 -k1,17608:7453632,22260795:171431 -k1,17608:8372829,22260795:171431 -k1,17608:10311766,22260795:171431 -k1,17608:11750664,22260795:171432 -k1,17608:14426226,22260795:171431 -k1,17608:16295695,22260795:171431 -k1,17608:19897936,22260795:171431 -k1,17608:21494775,22260795:171431 -k1,17608:24743777,22260795:171431 -k1,17608:27550412,22260795:171432 -k1,17608:30282990,22260795:171431 -k1,17608:31070459,22260795:171431 -k1,17608:32583029,22260795:0 -) -(1,17609:6630773,23125875:25952256,505283,134348 -k1,17608:8248693,23125875:151224 -k1,17608:10097955,23125875:151224 -k1,17608:11984572,23125875:151224 -k1,17608:13670650,23125875:151225 -k1,17608:15605109,23125875:151224 -k1,17608:18373841,23125875:151224 -k1,17608:19591336,23125875:151224 -k1,17608:23018705,23125875:151224 -k1,17608:26574524,23125875:151224 -k1,17608:27535119,23125875:151225 -k1,17608:29397488,23125875:151224 -k1,17608:30740157,23125875:151224 -k1,17608:32583029,23125875:0 -) -(1,17609:6630773,23990955:25952256,513147,134348 -k1,17608:7672319,23990955:275430 -k1,17608:9644476,23990955:275430 -k1,17608:14620803,23990955:275429 -k1,17608:16371448,23990955:275430 -k1,17608:17298306,23990955:275430 -k1,17608:18321502,23990955:275430 -k1,17608:21869145,23990955:275430 -k1,17608:23265896,23990955:275430 -k1,17608:24738012,23990955:275429 -k1,17608:28039239,23990955:275430 -k1,17608:29506114,23990955:275430 -k1,17608:32583029,23990955:0 -) -(1,17609:6630773,24856035:25952256,513147,134348 -k1,17608:8390939,24856035:192545 -k1,17608:11163635,24856035:192544 -k1,17608:14554336,24856035:192545 -k1,17608:18180312,24856035:192545 -k1,17608:19391941,24856035:192544 -k1,17608:22693514,24856035:192545 -k1,17608:26469568,24856035:192545 -k1,17608:27609764,24856035:192545 -k1,17608:30146531,24856035:192544 -k1,17608:31530521,24856035:192545 -k1,17609:32583029,24856035:0 -) -(1,17609:6630773,25721115:25952256,505283,7863 -g1,17608:8865550,25721115 -k1,17609:32583028,25721115:21909340 -g1,17609:32583028,25721115 -) -(1,17611:6630773,26586195:25952256,513147,126483 -h1,17610:6630773,26586195:983040,0,0 -k1,17610:9831617,26586195:284492 -k1,17610:11307553,26586195:284491 -k1,17610:13303190,26586195:284492 -k1,17610:15874232,26586195:284491 -k1,17610:16844886,26586195:284492 -k1,17610:18355557,26586195:284492 -k1,17610:19631608,26586195:284491 -k1,17610:23121466,26586195:284492 -k1,17610:25357619,26586195:284491 -k1,17610:30105113,26586195:284492 -k1,17611:32583029,26586195:0 -) -(1,17611:6630773,27451275:25952256,513147,134348 -k1,17610:7883166,27451275:262144 -k1,17610:8954680,27451275:262144 -k1,17610:10235908,27451275:262143 -k1,17610:13178475,27451275:262144 -k1,17610:14099911,27451275:262144 -k1,17610:17124398,27451275:262144 -k1,17610:19977836,27451275:262144 -k1,17610:21431425,27451275:262144 -k1,17610:25039836,27451275:262143 -k1,17610:27836913,27451275:262144 -k1,17610:31297213,27451275:262144 -k1,17610:32583029,27451275:0 -) -(1,17611:6630773,28316355:25952256,513147,134348 -k1,17610:9538933,28316355:147784 -k1,17610:12712513,28316355:147783 -k1,17610:17283977,28316355:147784 -k1,17610:21238746,28316355:147783 -k1,17610:24021733,28316355:147784 -k1,17610:27144196,28316355:147784 -k1,17610:29488090,28316355:147783 -k1,17610:30827319,28316355:147784 -k1,17610:32583029,28316355:0 -) -(1,17611:6630773,29181435:25952256,505283,126483 -k1,17610:7474320,29181435:160662 -k1,17610:9346128,29181435:160663 -k1,17610:10698235,29181435:160662 -k1,17610:12514993,29181435:160663 -k1,17610:14549985,29181435:160662 -(1,17610:14549985,29181435:0,452978,115847 -r1,17623:17721945,29181435:3171960,568825,115847 -k1,17610:14549985,29181435:-3171960 -) -(1,17610:14549985,29181435:3171960,452978,115847 -k1,17610:14549985,29181435:3277 -h1,17610:17718668,29181435:0,411205,112570 -) -k1,17610:17882608,29181435:160663 -k1,17610:18694698,29181435:160662 -k1,17610:20280769,29181435:160663 -k1,17610:24248417,29181435:160662 -k1,17610:25400640,29181435:160663 -k1,17610:27415971,29181435:160662 -k1,17610:28386004,29181435:160663 -k1,17610:31391584,29181435:160662 -k1,17610:32583029,29181435:0 -) -(1,17611:6630773,30046515:25952256,513147,134348 -k1,17610:7934234,30046515:138231 -k1,17610:8688502,30046515:138230 -k1,17610:11333485,30046515:138231 -k1,17610:13822491,30046515:138230 -k1,17610:14426683,30046515:138231 -k1,17610:15583998,30046515:138230 -k1,17610:17964871,30046515:138231 -k1,17610:20444047,30046515:138230 -k1,17610:21113775,30046515:138231 -k1,17610:22938902,30046515:138230 -k1,17610:25612066,30046515:138231 -k1,17610:28619461,30046515:138230 -k1,17610:31048831,30046515:138231 -k1,17611:32583029,30046515:0 -) -(1,17611:6630773,30911595:25952256,513147,134348 -k1,17610:8437601,30911595:209060 -k1,17610:9931166,30911595:209059 -k1,17610:11244508,30911595:209060 -k1,17610:13717837,30911595:209060 -k1,17610:14282757,30911595:209060 -k1,17610:16351728,30911595:209059 -k1,17610:18341401,30911595:209060 -k1,17610:19209753,30911595:209060 -k1,17610:22103168,30911595:209060 -k1,17610:23384396,30911595:209059 -k1,17610:25785635,30911595:209060 -k1,17610:26804065,30911595:209060 -k1,17610:28652180,30911595:209060 -k1,17610:29965521,30911595:209059 -k1,17610:30922347,30911595:209060 -k1,17610:32583029,30911595:0 -) -(1,17611:6630773,31776675:25952256,513147,126483 -g1,17610:7516164,31776675 -g1,17610:8781664,31776675 -g1,17610:9747009,31776675 -g1,17610:12576198,31776675 -g1,17610:15286111,31776675 -g1,17610:16476900,31776675 -g1,17610:19485002,31776675 -k1,17611:32583029,31776675:10360589 -g1,17611:32583029,31776675 -) -(1,17613:6630773,32641755:25952256,513147,134348 -h1,17612:6630773,32641755:983040,0,0 -k1,17612:10194635,32641755:176306 -k1,17612:11030233,32641755:176306 -k1,17612:12761708,32641755:176306 -(1,17612:12761708,32641755:0,452978,115847 -r1,17623:15230245,32641755:2468537,568825,115847 -k1,17612:12761708,32641755:-2468537 -) -(1,17612:12761708,32641755:2468537,452978,115847 -k1,17612:12761708,32641755:3277 -h1,17612:15226968,32641755:0,411205,112570 -) -k1,17612:15580221,32641755:176306 -k1,17612:16775612,32641755:176306 -k1,17612:18507087,32641755:176306 -k1,17612:20196619,32641755:176306 -k1,17612:20988963,32641755:176306 -k1,17612:21580090,32641755:176284 -k1,17612:22407824,32641755:176306 -k1,17612:24201559,32641755:176306 -k1,17612:26089010,32641755:176306 -k1,17612:27456761,32641755:176306 -k1,17612:29388777,32641755:176306 -k1,17612:30181121,32641755:176306 -k1,17612:30713287,32641755:176306 -k1,17612:32583029,32641755:0 -) -(1,17613:6630773,33506835:25952256,513147,126483 -k1,17612:10036798,33506835:200659 -k1,17612:11978749,33506835:200659 -k1,17612:12994677,33506835:200660 -k1,17612:14261607,33506835:200659 -k1,17612:17977617,33506835:200659 -k1,17612:20550024,33506835:200659 -k1,17612:22176091,33506835:200659 -k1,17612:23923400,33506835:200659 -k1,17612:28104717,33506835:200660 -k1,17612:28933211,33506835:200659 -k1,17612:30885647,33506835:200659 -k1,17612:32583029,33506835:0 -) -(1,17613:6630773,34371915:25952256,505283,126483 -k1,17612:8590914,34371915:288317 -k1,17612:10392457,34371915:288317 -k1,17612:11296813,34371915:288318 -k1,17612:15979319,34371915:288317 -(1,17612:15979319,34371915:0,452978,115847 -r1,17623:18447856,34371915:2468537,568825,115847 -k1,17612:15979319,34371915:-2468537 -) -(1,17612:15979319,34371915:2468537,452978,115847 -k1,17612:15979319,34371915:3277 -h1,17612:18444579,34371915:0,411205,112570 -) -k1,17612:18736173,34371915:288317 -k1,17612:21035135,34371915:288317 -k1,17612:22315012,34371915:288317 -k1,17612:26193391,34371915:288317 -k1,17612:28336378,34371915:288318 -k1,17612:29434065,34371915:288317 -k1,17612:30741467,34371915:288317 -k1,17612:32583029,34371915:0 -) -(1,17613:6630773,35236995:25952256,513147,134348 -k1,17612:9409908,35236995:267140 -k1,17612:11563174,35236995:267140 -k1,17612:13715785,35236995:267140 -k1,17612:14397700,35236995:267072 -k1,17612:15196337,35236995:267140 -k1,17612:18160283,35236995:267139 -k1,17612:19669986,35236995:267140 -k1,17612:20956211,35236995:267140 -k1,17612:22648759,35236995:267140 -k1,17612:24462549,35236995:267140 -k1,17612:27241684,35236995:267140 -k1,17612:28168116,35236995:267140 -k1,17612:29454341,35236995:267140 -k1,17612:32583029,35236995:0 -) -(1,17613:6630773,36102075:25952256,513147,134348 -k1,17612:9330696,36102075:295407 -k1,17612:10285394,36102075:295406 -k1,17612:12135970,36102075:295407 -(1,17612:12135970,36102075:0,414482,115847 -r1,17623:13549371,36102075:1413401,530329,115847 -k1,17612:12135970,36102075:-1413401 -) -(1,17612:12135970,36102075:1413401,414482,115847 -k1,17612:12135970,36102075:3277 -h1,17612:13546094,36102075:0,411205,112570 -) -k1,17612:13844777,36102075:295406 -k1,17612:14955452,36102075:295407 -k1,17612:16317130,36102075:295407 -k1,17612:18120519,36102075:295406 -k1,17612:20043185,36102075:295407 -k1,17612:20997883,36102075:295406 -k1,17612:22312375,36102075:295407 -k1,17612:24033190,36102075:295407 -k1,17612:26048916,36102075:295406 -k1,17612:27069151,36102075:295407 -k1,17612:28179825,36102075:295406 -k1,17612:29541503,36102075:295407 -k1,17612:32583029,36102075:0 -) -(1,17613:6630773,36967155:25952256,505283,11795 -g1,17612:9391149,36967155 -g1,17612:10206416,36967155 -g1,17612:11831053,36967155 -g1,17612:14921075,36967155 -g1,17612:15771732,36967155 -k1,17613:32583029,36967155:15397686 -g1,17613:32583029,36967155 -) -v1,17615:6630773,37832235:0,393216,0 -(1,17616:6630773,40057920:25952256,2618901,0 -g1,17616:6630773,40057920 -g1,17616:6237557,40057920 -r1,17623:6368629,40057920:131072,2618901,0 -g1,17616:6567858,40057920 -g1,17616:6764466,40057920 -[1,17616:6764466,40057920:25818563,2618901,0 -(1,17616:6764466,38193412:25818563,754393,260573 -(1,17615:6764466,38193412:0,754393,260573 -r1,17623:7856192,38193412:1091726,1014966,260573 -k1,17615:6764466,38193412:-1091726 -) -(1,17615:6764466,38193412:1091726,754393,260573 -) -k1,17615:8044381,38193412:188189 -k1,17615:8372061,38193412:327680 -k1,17615:11683697,38193412:188190 -k1,17615:14501846,38193412:188189 -k1,17615:15148132,38193412:188189 -k1,17615:15867818,38193412:188189 -k1,17615:17390976,38193412:188190 -k1,17615:18230593,38193412:188189 -k1,17615:20036211,38193412:188189 -k1,17615:21649809,38193412:188190 -k1,17615:23227361,38193412:188189 -k1,17615:24606995,38193412:188189 -k1,17615:26081000,38193412:188189 -k1,17615:27980335,38193412:188190 -k1,17615:30847636,38193412:188189 -k1,17615:32583029,38193412:0 -) -(1,17616:6764466,39058492:25818563,505283,134348 -k1,17615:8399804,39058492:274155 -k1,17615:9360197,39058492:274231 -(1,17615:9360197,39058492:0,414482,115847 -r1,17623:11828734,39058492:2468537,530329,115847 -k1,17615:9360197,39058492:-2468537 -) -(1,17615:9360197,39058492:2468537,414482,115847 -k1,17615:9360197,39058492:3277 -h1,17615:11825457,39058492:0,411205,112570 -) -k1,17615:12102964,39058492:274230 -k1,17615:14840692,39058492:274230 -k1,17615:16495767,39058492:274231 -k1,17615:20050074,39058492:274230 -k1,17615:24487807,39058492:274231 -k1,17615:26046543,39058492:274230 -k1,17615:27425056,39058492:274231 -k1,17615:29481210,39058492:274230 -k1,17615:32583029,39058492:0 -) -(1,17616:6764466,39923572:25818563,513147,134348 -g1,17615:8849166,39923572 -g1,17615:12411047,39923572 -g1,17615:13226314,39923572 -k1,17616:32583029,39923572:14910098 -g1,17616:32583029,39923572 -) -] -g1,17616:32583029,40057920 -) -h1,17616:6630773,40057920:0,0,0 -(1,17619:6630773,40923000:25952256,513147,134348 -h1,17618:6630773,40923000:983040,0,0 -(1,17618:7613813,40923000:0,414482,115847 -r1,17623:10082350,40923000:2468537,530329,115847 -k1,17618:7613813,40923000:-2468537 -) -(1,17618:7613813,40923000:2468537,414482,115847 -k1,17618:7613813,40923000:3277 -h1,17618:10079073,40923000:0,411205,112570 -) -k1,17618:10350901,40923000:268551 -k1,17618:12909280,40923000:268551 -k1,17618:14169390,40923000:268550 -k1,17618:15097233,40923000:268551 -k1,17618:17148363,40923000:268551 -k1,17618:20210713,40923000:268550 -k1,17618:21670709,40923000:268551 -k1,17618:23356148,40923000:268551 -k1,17618:26106547,40923000:268551 -k1,17618:27566543,40923000:268551 -k1,17618:30364783,40923000:268550 -k1,17618:31292626,40923000:268551 -k1,17618:32583029,40923000:0 -) -(1,17619:6630773,41788080:25952256,513147,11795 -k1,17618:7994796,41788080:259741 -k1,17618:9002303,41788080:259741 -k1,17618:11300214,41788080:259741 -k1,17618:12246117,41788080:259741 -k1,17618:15219049,41788080:259741 -k1,17618:16094828,41788080:259741 -k1,17618:17743931,41788080:259740 -k1,17618:20210269,41788080:259741 -k1,17618:21661455,41788080:259741 -k1,17618:24236583,41788080:259741 -k1,17618:26213367,41788080:259741 -k1,17618:29557232,41788080:259741 -k1,17618:32583029,41788080:0 -) -(1,17619:6630773,42653160:25952256,513147,134348 -g1,17618:8021447,42653160 -g1,17618:9687372,42653160 -g1,17618:11578741,42653160 -g1,17618:13765677,42653160 -g1,17618:15899529,42653160 -g1,17618:19124555,42653160 -g1,17618:21371784,42653160 -g1,17618:23210068,42653160 -g1,17618:24095459,42653160 -k1,17619:32583029,42653160:6726618 -g1,17619:32583029,42653160 -) -(1,17621:6630773,43518240:25952256,513147,126483 -h1,17620:6630773,43518240:983040,0,0 -k1,17620:10287480,43518240:207547 -k1,17620:11875871,43518240:207547 -k1,17620:13187701,43518240:207548 -k1,17620:14143014,43518240:207547 -k1,17620:16151490,43518240:207547 -k1,17620:18956884,43518240:207547 -k1,17620:20355877,43518240:207548 -k1,17620:21582509,43518240:207547 -k1,17620:24568783,43518240:207547 -k1,17620:26456673,43518240:207547 -k1,17620:27195718,43518240:207548 -k1,17620:29788776,43518240:207547 -k1,17620:31563944,43518240:207547 -k1,17620:32583029,43518240:0 -) -(1,17621:6630773,44383320:25952256,505283,126483 -g1,17620:10410234,44383320 -k1,17621:32583030,44383320:20460996 -g1,17621:32583030,44383320 -) -] -(1,17623:32583029,45706769:0,0,0 -g1,17623:32583029,45706769 -) -) -] -(1,17623:6630773,47279633:25952256,0,0 -h1,17623:6630773,47279633:25952256,0,0 -) -] -(1,17623:4262630,4025873:0,0,0 -[1,17623:-473656,4025873:0,0,0 -(1,17623:-473656,-710413:0,0,0 -(1,17623:-473656,-710413:0,0,0 -g1,17623:-473656,-710413 -) -g1,17623:-473656,-710413 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 +) +] +) +) +) +] +[1,17621:3078558,4812305:0,0,0 +(1,17621:3078558,49800853:0,16384,2228224 +g1,17621:29030814,49800853 +g1,17621:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17621:36151628,51504789:16384,1179648,0 +) +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 +) +] +) +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17621:37855564,49800853:1179648,16384,0 +) +) +k1,17621:3078556,49800853:-34777008 +) +] +g1,17621:6630773,4812305 +k1,17621:23347041,4812305:15520891 +g1,17621:23960458,4812305 +g1,17621:27572802,4812305 +g1,17621:29306229,4812305 +) +) +] +[1,17621:6630773,45706769:25952256,40108032,0 +(1,17621:6630773,45706769:25952256,40108032,0 +(1,17621:6630773,45706769:0,0,0 +g1,17621:6630773,45706769 +) +[1,17621:6630773,45706769:25952256,40108032,0 +(1,17601:6630773,6254097:25952256,513147,134348 +k1,17600:8716566,6254097:166243 +k1,17600:13877963,6254097:166243 +k1,17600:14703498,6254097:166243 +k1,17600:15225601,6254097:166243 +k1,17600:17086605,6254097:166243 +k1,17600:19483693,6254097:166242 +k1,17600:20265974,6254097:166243 +k1,17600:22031295,6254097:166243 +k1,17600:23932931,6254097:166243 +k1,17600:25593395,6254097:166243 +k1,17600:27185046,6254097:166243 +k1,17600:31089463,6254097:166243 +k1,17600:32583029,6254097:0 +) +(1,17601:6630773,7119177:25952256,505283,126483 +k1,17600:7602330,7119177:285395 +k1,17600:9148552,7119177:285309 +k1,17600:11843050,7119177:285395 +k1,17600:15135892,7119177:285395 +k1,17600:17405062,7119177:285395 +k1,17600:18887144,7119177:285395 +k1,17600:23003774,7119177:285395 +k1,17600:25924372,7119177:285395 +k1,17600:27570863,7119177:285308 +k1,17600:29047703,7119177:285395 +k1,17600:30827319,7119177:285395 +k1,17600:32583029,7119177:0 +) +(1,17601:6630773,7984257:25952256,505283,134348 +k1,17600:9585016,7984257:252194 +k1,17600:10646581,7984257:252195 +k1,17600:13362929,7984257:252194 +k1,17600:17075424,7984257:252194 +k1,17600:19926776,7984257:252194 +k1,17600:22649023,7984257:252195 +k1,17600:24092662,7984257:252194 +k1,17600:24960894,7984257:252194 +k1,17600:26905228,7984257:252194 +k1,17600:29028476,7984257:252195 +k1,17600:30706078,7984257:252194 +k1,17600:32583029,7984257:0 +) +(1,17601:6630773,8849337:25952256,513147,126483 +k1,17600:8790689,8849337:176141 +k1,17600:12122388,8849337:176140 +k1,17600:12926364,8849337:176141 +k1,17600:15768509,8849337:176140 +k1,17600:17696427,8849337:176141 +k1,17600:20854455,8849337:176140 +k1,17600:22746329,8849337:176141 +k1,17600:24014954,8849337:176140 +k1,17600:24546955,8849337:176141 +k1,17600:27457257,8849337:176140 +k1,17600:29101404,8849337:176141 +k1,17600:29893582,8849337:176140 +k1,17600:31088808,8849337:176141 +k1,17600:32583029,8849337:0 +) +(1,17601:6630773,9714417:25952256,505283,102891 +k1,17600:8235313,9714417:179132 +k1,17600:12326288,9714417:179131 +k1,17600:13524505,9714417:179132 +k1,17600:14428465,9714417:179132 +k1,17600:16475372,9714417:179131 +k1,17600:19575444,9714417:179132 +k1,17600:21653809,9714417:179132 +k1,17600:23029627,9714417:179131 +k1,17600:24919904,9714417:179132 +k1,17600:25908406,9714417:179132 +k1,17600:27973008,9714417:179131 +k1,17600:29848867,9714417:179132 +k1,17600:32583029,9714417:0 +) +(1,17601:6630773,10579497:25952256,513147,134348 +k1,17600:8680302,10579497:251221 +k1,17600:9923084,10579497:251222 +k1,17600:14375818,10579497:251221 +k1,17600:17329088,10579497:251221 +k1,17600:18389679,10579497:251221 +k1,17600:19659986,10579497:251222 +k1,17600:22375361,10579497:251221 +k1,17600:23309467,10579497:251221 +k1,17600:25754833,10579497:251221 +k1,17600:27197500,10579497:251222 +k1,17600:29145448,10579497:251221 +k1,17600:31107814,10579497:251221 +k1,17600:32583029,10579497:0 +) +(1,17601:6630773,11444577:25952256,513147,134348 +k1,17600:8765374,11444577:181628 +k1,17600:10334400,11444577:181629 +k1,17600:12115106,11444577:181628 +k1,17600:14119946,11444577:181628 +k1,17600:14917612,11444577:181628 +k1,17600:16593462,11444577:181629 +k1,17600:18200498,11444577:181628 +k1,17600:20311506,11444577:181628 +k1,17600:21974249,11444577:181629 +k1,17600:23347322,11444577:181628 +k1,17600:26402048,11444577:181628 +k1,17600:28275816,11444577:181628 +k1,17600:29951666,11444577:181629 +k1,17600:31558702,11444577:181628 +k1,17601:32583029,11444577:0 +) +(1,17601:6630773,12309657:25952256,513147,126483 +k1,17600:7943761,12309657:220503 +k1,17600:11797581,12309657:220504 +k1,17600:12669512,12309657:220503 +k1,17600:14062454,12309657:220503 +k1,17600:17045301,12309657:220504 +k1,17600:18691212,12309657:220503 +k1,17600:21646532,12309657:220503 +k1,17600:23058480,12309657:220503 +k1,17600:24298069,12309657:220504 +k1,17600:27052194,12309657:220503 +k1,17600:28759709,12309657:220503 +k1,17600:29795481,12309657:220504 +k1,17600:31082255,12309657:220503 +k1,17600:32583029,12309657:0 +) +(1,17601:6630773,13174737:25952256,505283,7863 +g1,17600:8021447,13174737 +g1,17600:9918714,13174737 +g1,17600:14098600,13174737 +g1,17600:16478212,13174737 +g1,17600:17425207,13174737 +g1,17600:20203933,13174737 +g1,17600:21089324,13174737 +k1,17601:32583029,13174737:9504032 +g1,17601:32583029,13174737 +) +v1,17603:6630773,14039817:0,393216,0 +(1,17604:6630773,20530635:25952256,6884034,0 +g1,17604:6630773,20530635 +g1,17604:6237557,20530635 +r1,17621:6368629,20530635:131072,6884034,0 +g1,17604:6567858,20530635 +g1,17604:6764466,20530635 +[1,17604:6764466,20530635:25818563,6884034,0 +(1,17604:6764466,14348115:25818563,701514,196608 +(1,17603:6764466,14348115:0,701514,196608 +r1,17621:7761522,14348115:997056,898122,196608 +k1,17603:6764466,14348115:-997056 +) +(1,17603:6764466,14348115:997056,701514,196608 +) +k1,17603:8004476,14348115:242954 +k1,17603:8332156,14348115:327680 +k1,17603:11420027,14348115:242953 +k1,17603:14239201,14348115:242954 +k1,17603:15473714,14348115:242953 +k1,17603:16332706,14348115:242954 +k1,17603:17668145,14348115:242954 +k1,17603:18562526,14348115:242953 +k1,17603:21474761,14348115:242954 +k1,17603:23143122,14348115:242953 +k1,17603:25263027,14348115:242954 +k1,17603:26697425,14348115:242953 +k1,17603:27959464,14348115:242954 +k1,17603:32583029,14348115:0 +) +(1,17604:6764466,15213195:25818563,513147,126483 +k1,17603:8510017,15213195:320143 +k1,17603:12742005,15213195:320144 +k1,17603:14333546,15213195:320143 +k1,17603:17997336,15213195:320143 +k1,17603:19830706,15213195:320144 +k1,17603:20682346,15213195:320143 +k1,17603:22857158,15213195:320143 +k1,17603:23986672,15213195:320144 +k1,17603:25961599,15213195:320143 +k1,17603:26964627,15213195:320143 +k1,17603:28647265,15213195:320144 +k1,17603:30669378,15213195:320143 +k1,17603:32583029,15213195:0 +) +(1,17604:6764466,16078275:25818563,513147,134348 +k1,17603:8297853,16078275:290824 +k1,17603:9764955,16078275:290731 +k1,17603:11003430,16078275:290824 +k1,17603:13658792,16078275:290823 +k1,17603:16957063,16078275:290824 +k1,17603:19024568,16078275:290824 +k1,17603:21919792,16078275:290823 +k1,17603:25554263,16078275:290824 +k1,17603:27358312,16078275:290823 +k1,17603:28805846,16078275:290824 +k1,17603:29628166,16078275:290823 +k1,17603:31773659,16078275:290824 +k1,17603:32583029,16078275:0 +) +(1,17604:6764466,16943355:25818563,513147,134348 +k1,17603:7988952,16943355:205401 +k1,17603:10262669,16943355:205401 +k1,17603:11127363,16943355:205402 +k1,17603:14698038,16943355:205401 +k1,17603:16094884,16943355:205401 +k1,17603:18144468,16943355:205401 +k1,17603:19592432,16943355:205401 +k1,17603:25141639,16943355:205401 +k1,17603:25834622,16943355:205395 +k1,17603:27622063,16943355:205402 +k1,17603:28984174,16943355:205401 +k1,17603:29805613,16943355:205401 +k1,17603:32583029,16943355:0 +) +(1,17604:6764466,17808435:25818563,513147,134348 +k1,17603:8063202,17808435:206251 +k1,17603:8800950,17808435:206251 +k1,17603:11145641,17808435:206251 +k1,17603:14549395,17808435:206252 +k1,17603:15441808,17808435:206251 +k1,17603:16418762,17808435:206251 +k1,17603:18439705,17808435:206251 +k1,17603:19261994,17808435:206251 +k1,17603:21484788,17808435:206251 +k1,17603:22933602,17808435:206251 +k1,17603:25641363,17808435:206252 +k1,17603:27392953,17808435:206251 +k1,17603:29024612,17808435:206251 +k1,17603:31107814,17808435:206251 +k1,17603:32583029,17808435:0 +) +(1,17604:6764466,18673515:25818563,513147,7863 +k1,17603:8464891,18673515:275017 +k1,17603:10538216,18673515:275017 +k1,17603:11472525,18673515:275017 +k1,17603:13630391,18673515:275017 +k1,17603:15748280,18673515:275017 +k1,17603:17214742,18673515:275017 +k1,17603:18622878,18673515:275018 +k1,17603:19549323,18673515:275017 +k1,17603:21064937,18673515:275017 +k1,17603:23356497,18673515:275017 +k1,17603:24460544,18673515:275017 +k1,17603:26427701,18673515:275017 +k1,17603:28691080,18673515:275017 +k1,17603:30514713,18673515:275017 +k1,17603:32583029,18673515:0 +) +(1,17604:6764466,19538595:25818563,505283,134348 +k1,17603:8012659,19538595:256633 +k1,17603:11721728,19538595:256632 +k1,17603:14680410,19538595:256633 +k1,17603:15746413,19538595:256633 +k1,17603:17022130,19538595:256632 +k1,17603:20332741,19538595:256633 +k1,17603:22835292,19538595:256632 +k1,17603:24978051,19538595:256633 +k1,17603:27120155,19538595:256633 +k1,17603:27791573,19538595:256575 +k1,17603:28579702,19538595:256632 +k1,17603:31533142,19538595:256633 +k1,17603:32583029,19538595:0 +) +(1,17604:6764466,20403675:25818563,513147,126960 +g1,17603:8631706,20403675 +g1,17603:9005154,20403675 +g1,17603:9378602,20403675 +g1,17603:9752050,20403675 +g1,17603:10498946,20403675 +g1,17603:10872394,20403675 +g1,17603:14233426,20403675 +g1,17603:14606874,20403675 +g1,17603:15727218,20403675 +g1,17603:16100666,20403675 +g1,17603:17594458,20403675 +g1,17603:17967906,20403675 +g1,17603:19461698,20403675 +g1,17603:19835146,20403675 +g1,17603:20582042,20403675 +g1,17603:20955490,20403675 +g1,17603:21702386,20403675 +g1,17603:22075834,20403675 +g1,17603:25063418,20403675 +g1,17603:25436866,20403675 +g1,17603:26930658,20403675 +g1,17603:27304106,20403675 +$1,17603:29171346,20403675 +g1,17603:29370575,20403675 +g1,17603:30517455,20403675 +g1,17603:31072544,20403675 +k1,17604:32583029,20403675:464531 +g1,17604:32583029,20403675 +) +] +g1,17604:32583029,20530635 +) +h1,17604:6630773,20530635:0,0,0 +(1,17607:6630773,21395715:25952256,505283,134348 +h1,17606:6630773,21395715:983040,0,0 +k1,17606:10971419,21395715:234160 +k1,17606:15180338,21395715:234160 +k1,17606:18907567,21395715:234160 +k1,17606:19903255,21395715:234160 +k1,17606:21466485,21395715:234160 +k1,17606:23557279,21395715:234159 +k1,17606:24982884,21395715:234160 +k1,17606:26683740,21395715:234160 +k1,17606:28246970,21395715:234160 +k1,17606:31052763,21395715:234160 +k1,17606:32583029,21395715:0 +) +(1,17607:6630773,22260795:25952256,505283,134348 +k1,17606:7453632,22260795:171431 +k1,17606:8372829,22260795:171431 +k1,17606:10311766,22260795:171431 +k1,17606:11750664,22260795:171432 +k1,17606:14426226,22260795:171431 +k1,17606:16295695,22260795:171431 +k1,17606:19897936,22260795:171431 +k1,17606:21494775,22260795:171431 +k1,17606:24743777,22260795:171431 +k1,17606:27550412,22260795:171432 +k1,17606:30282990,22260795:171431 +k1,17606:31070459,22260795:171431 +k1,17606:32583029,22260795:0 +) +(1,17607:6630773,23125875:25952256,505283,134348 +k1,17606:8248693,23125875:151224 +k1,17606:10097955,23125875:151224 +k1,17606:11984572,23125875:151224 +k1,17606:13670650,23125875:151225 +k1,17606:15605109,23125875:151224 +k1,17606:18373841,23125875:151224 +k1,17606:19591336,23125875:151224 +k1,17606:23018705,23125875:151224 +k1,17606:26574524,23125875:151224 +k1,17606:27535119,23125875:151225 +k1,17606:29397488,23125875:151224 +k1,17606:30740157,23125875:151224 +k1,17606:32583029,23125875:0 +) +(1,17607:6630773,23990955:25952256,513147,134348 +k1,17606:7672319,23990955:275430 +k1,17606:9644476,23990955:275430 +k1,17606:14620803,23990955:275429 +k1,17606:16371448,23990955:275430 +k1,17606:17298306,23990955:275430 +k1,17606:18321502,23990955:275430 +k1,17606:21869145,23990955:275430 +k1,17606:23265896,23990955:275430 +k1,17606:24738012,23990955:275429 +k1,17606:28039239,23990955:275430 +k1,17606:29506114,23990955:275430 +k1,17606:32583029,23990955:0 +) +(1,17607:6630773,24856035:25952256,513147,134348 +k1,17606:8390939,24856035:192545 +k1,17606:11163635,24856035:192544 +k1,17606:14554336,24856035:192545 +k1,17606:18180312,24856035:192545 +k1,17606:19391941,24856035:192544 +k1,17606:22693514,24856035:192545 +k1,17606:26469568,24856035:192545 +k1,17606:27609764,24856035:192545 +k1,17606:30146531,24856035:192544 +k1,17606:31530521,24856035:192545 +k1,17607:32583029,24856035:0 +) +(1,17607:6630773,25721115:25952256,505283,7863 +g1,17606:8865550,25721115 +k1,17607:32583028,25721115:21909340 +g1,17607:32583028,25721115 +) +(1,17609:6630773,26586195:25952256,513147,126483 +h1,17608:6630773,26586195:983040,0,0 +k1,17608:9831617,26586195:284492 +k1,17608:11307553,26586195:284491 +k1,17608:13303190,26586195:284492 +k1,17608:15874232,26586195:284491 +k1,17608:16844886,26586195:284492 +k1,17608:18355557,26586195:284492 +k1,17608:19631608,26586195:284491 +k1,17608:23121466,26586195:284492 +k1,17608:25357619,26586195:284491 +k1,17608:30105113,26586195:284492 +k1,17609:32583029,26586195:0 +) +(1,17609:6630773,27451275:25952256,513147,134348 +k1,17608:7883166,27451275:262144 +k1,17608:8954680,27451275:262144 +k1,17608:10235908,27451275:262143 +k1,17608:13178475,27451275:262144 +k1,17608:14099911,27451275:262144 +k1,17608:17124398,27451275:262144 +k1,17608:19977836,27451275:262144 +k1,17608:21431425,27451275:262144 +k1,17608:25039836,27451275:262143 +k1,17608:27836913,27451275:262144 +k1,17608:31297213,27451275:262144 +k1,17608:32583029,27451275:0 +) +(1,17609:6630773,28316355:25952256,513147,134348 +k1,17608:9538933,28316355:147784 +k1,17608:12712513,28316355:147783 +k1,17608:17283977,28316355:147784 +k1,17608:21238746,28316355:147783 +k1,17608:24021733,28316355:147784 +k1,17608:27144196,28316355:147784 +k1,17608:29488090,28316355:147783 +k1,17608:30827319,28316355:147784 +k1,17608:32583029,28316355:0 +) +(1,17609:6630773,29181435:25952256,505283,126483 +k1,17608:7474320,29181435:160662 +k1,17608:9346128,29181435:160663 +k1,17608:10698235,29181435:160662 +k1,17608:12514993,29181435:160663 +k1,17608:14549985,29181435:160662 +(1,17608:14549985,29181435:0,452978,115847 +r1,17621:17721945,29181435:3171960,568825,115847 +k1,17608:14549985,29181435:-3171960 +) +(1,17608:14549985,29181435:3171960,452978,115847 +k1,17608:14549985,29181435:3277 +h1,17608:17718668,29181435:0,411205,112570 +) +k1,17608:17882608,29181435:160663 +k1,17608:18694698,29181435:160662 +k1,17608:20280769,29181435:160663 +k1,17608:24248417,29181435:160662 +k1,17608:25400640,29181435:160663 +k1,17608:27415971,29181435:160662 +k1,17608:28386004,29181435:160663 +k1,17608:31391584,29181435:160662 +k1,17608:32583029,29181435:0 +) +(1,17609:6630773,30046515:25952256,513147,134348 +k1,17608:7934234,30046515:138231 +k1,17608:8688502,30046515:138230 +k1,17608:11333485,30046515:138231 +k1,17608:13822491,30046515:138230 +k1,17608:14426683,30046515:138231 +k1,17608:15583998,30046515:138230 +k1,17608:17964871,30046515:138231 +k1,17608:20444047,30046515:138230 +k1,17608:21113775,30046515:138231 +k1,17608:22938902,30046515:138230 +k1,17608:25612066,30046515:138231 +k1,17608:28619461,30046515:138230 +k1,17608:31048831,30046515:138231 +k1,17609:32583029,30046515:0 +) +(1,17609:6630773,30911595:25952256,513147,134348 +k1,17608:8437601,30911595:209060 +k1,17608:9931166,30911595:209059 +k1,17608:11244508,30911595:209060 +k1,17608:13717837,30911595:209060 +k1,17608:14282757,30911595:209060 +k1,17608:16351728,30911595:209059 +k1,17608:18341401,30911595:209060 +k1,17608:19209753,30911595:209060 +k1,17608:22103168,30911595:209060 +k1,17608:23384396,30911595:209059 +k1,17608:25785635,30911595:209060 +k1,17608:26804065,30911595:209060 +k1,17608:28652180,30911595:209060 +k1,17608:29965521,30911595:209059 +k1,17608:30922347,30911595:209060 +k1,17608:32583029,30911595:0 +) +(1,17609:6630773,31776675:25952256,513147,126483 +g1,17608:7516164,31776675 +g1,17608:8781664,31776675 +g1,17608:9747009,31776675 +g1,17608:12576198,31776675 +g1,17608:15286111,31776675 +g1,17608:16476900,31776675 +g1,17608:19485002,31776675 +k1,17609:32583029,31776675:10360589 +g1,17609:32583029,31776675 +) +(1,17611:6630773,32641755:25952256,513147,134348 +h1,17610:6630773,32641755:983040,0,0 +k1,17610:10194635,32641755:176306 +k1,17610:11030233,32641755:176306 +k1,17610:12761708,32641755:176306 +(1,17610:12761708,32641755:0,452978,115847 +r1,17621:15230245,32641755:2468537,568825,115847 +k1,17610:12761708,32641755:-2468537 +) +(1,17610:12761708,32641755:2468537,452978,115847 +k1,17610:12761708,32641755:3277 +h1,17610:15226968,32641755:0,411205,112570 +) +k1,17610:15580221,32641755:176306 +k1,17610:16775612,32641755:176306 +k1,17610:18507087,32641755:176306 +k1,17610:20196619,32641755:176306 +k1,17610:20988963,32641755:176306 +k1,17610:21580090,32641755:176284 +k1,17610:22407824,32641755:176306 +k1,17610:24201559,32641755:176306 +k1,17610:26089010,32641755:176306 +k1,17610:27456761,32641755:176306 +k1,17610:29388777,32641755:176306 +k1,17610:30181121,32641755:176306 +k1,17610:30713287,32641755:176306 +k1,17610:32583029,32641755:0 +) +(1,17611:6630773,33506835:25952256,513147,126483 +k1,17610:10036798,33506835:200659 +k1,17610:11978749,33506835:200659 +k1,17610:12994677,33506835:200660 +k1,17610:14261607,33506835:200659 +k1,17610:17977617,33506835:200659 +k1,17610:20550024,33506835:200659 +k1,17610:22176091,33506835:200659 +k1,17610:23923400,33506835:200659 +k1,17610:28104717,33506835:200660 +k1,17610:28933211,33506835:200659 +k1,17610:30885647,33506835:200659 +k1,17610:32583029,33506835:0 +) +(1,17611:6630773,34371915:25952256,505283,126483 +k1,17610:8590914,34371915:288317 +k1,17610:10392457,34371915:288317 +k1,17610:11296813,34371915:288318 +k1,17610:15979319,34371915:288317 +(1,17610:15979319,34371915:0,452978,115847 +r1,17621:18447856,34371915:2468537,568825,115847 +k1,17610:15979319,34371915:-2468537 +) +(1,17610:15979319,34371915:2468537,452978,115847 +k1,17610:15979319,34371915:3277 +h1,17610:18444579,34371915:0,411205,112570 +) +k1,17610:18736173,34371915:288317 +k1,17610:21035135,34371915:288317 +k1,17610:22315012,34371915:288317 +k1,17610:26193391,34371915:288317 +k1,17610:28336378,34371915:288318 +k1,17610:29434065,34371915:288317 +k1,17610:30741467,34371915:288317 +k1,17610:32583029,34371915:0 +) +(1,17611:6630773,35236995:25952256,513147,134348 +k1,17610:9409908,35236995:267140 +k1,17610:11563174,35236995:267140 +k1,17610:13715785,35236995:267140 +k1,17610:14397700,35236995:267072 +k1,17610:15196337,35236995:267140 +k1,17610:18160283,35236995:267139 +k1,17610:19669986,35236995:267140 +k1,17610:20956211,35236995:267140 +k1,17610:22648759,35236995:267140 +k1,17610:24462549,35236995:267140 +k1,17610:27241684,35236995:267140 +k1,17610:28168116,35236995:267140 +k1,17610:29454341,35236995:267140 +k1,17610:32583029,35236995:0 +) +(1,17611:6630773,36102075:25952256,513147,134348 +k1,17610:9330696,36102075:295407 +k1,17610:10285394,36102075:295406 +k1,17610:12135970,36102075:295407 +(1,17610:12135970,36102075:0,414482,115847 +r1,17621:13549371,36102075:1413401,530329,115847 +k1,17610:12135970,36102075:-1413401 +) +(1,17610:12135970,36102075:1413401,414482,115847 +k1,17610:12135970,36102075:3277 +h1,17610:13546094,36102075:0,411205,112570 +) +k1,17610:13844777,36102075:295406 +k1,17610:14955452,36102075:295407 +k1,17610:16317130,36102075:295407 +k1,17610:18120519,36102075:295406 +k1,17610:20043185,36102075:295407 +k1,17610:20997883,36102075:295406 +k1,17610:22312375,36102075:295407 +k1,17610:24033190,36102075:295407 +k1,17610:26048916,36102075:295406 +k1,17610:27069151,36102075:295407 +k1,17610:28179825,36102075:295406 +k1,17610:29541503,36102075:295407 +k1,17610:32583029,36102075:0 +) +(1,17611:6630773,36967155:25952256,505283,11795 +g1,17610:9391149,36967155 +g1,17610:10206416,36967155 +g1,17610:11831053,36967155 +g1,17610:14921075,36967155 +g1,17610:15771732,36967155 +k1,17611:32583029,36967155:15397686 +g1,17611:32583029,36967155 +) +v1,17613:6630773,37832235:0,393216,0 +(1,17614:6630773,40057920:25952256,2618901,0 +g1,17614:6630773,40057920 +g1,17614:6237557,40057920 +r1,17621:6368629,40057920:131072,2618901,0 +g1,17614:6567858,40057920 +g1,17614:6764466,40057920 +[1,17614:6764466,40057920:25818563,2618901,0 +(1,17614:6764466,38193412:25818563,754393,260573 +(1,17613:6764466,38193412:0,754393,260573 +r1,17621:7856192,38193412:1091726,1014966,260573 +k1,17613:6764466,38193412:-1091726 +) +(1,17613:6764466,38193412:1091726,754393,260573 +) +k1,17613:8044381,38193412:188189 +k1,17613:8372061,38193412:327680 +k1,17613:11683697,38193412:188190 +k1,17613:14501846,38193412:188189 +k1,17613:15148132,38193412:188189 +k1,17613:15867818,38193412:188189 +k1,17613:17390976,38193412:188190 +k1,17613:18230593,38193412:188189 +k1,17613:20036211,38193412:188189 +k1,17613:21649809,38193412:188190 +k1,17613:23227361,38193412:188189 +k1,17613:24606995,38193412:188189 +k1,17613:26081000,38193412:188189 +k1,17613:27980335,38193412:188190 +k1,17613:30847636,38193412:188189 +k1,17613:32583029,38193412:0 +) +(1,17614:6764466,39058492:25818563,505283,134348 +k1,17613:8399804,39058492:274155 +k1,17613:9360197,39058492:274231 +(1,17613:9360197,39058492:0,414482,115847 +r1,17621:11828734,39058492:2468537,530329,115847 +k1,17613:9360197,39058492:-2468537 +) +(1,17613:9360197,39058492:2468537,414482,115847 +k1,17613:9360197,39058492:3277 +h1,17613:11825457,39058492:0,411205,112570 +) +k1,17613:12102964,39058492:274230 +k1,17613:14840692,39058492:274230 +k1,17613:16495767,39058492:274231 +k1,17613:20050074,39058492:274230 +k1,17613:24487807,39058492:274231 +k1,17613:26046543,39058492:274230 +k1,17613:27425056,39058492:274231 +k1,17613:29481210,39058492:274230 +k1,17613:32583029,39058492:0 +) +(1,17614:6764466,39923572:25818563,513147,134348 +g1,17613:8849166,39923572 +g1,17613:12411047,39923572 +g1,17613:13226314,39923572 +k1,17614:32583029,39923572:14910098 +g1,17614:32583029,39923572 +) +] +g1,17614:32583029,40057920 +) +h1,17614:6630773,40057920:0,0,0 +(1,17617:6630773,40923000:25952256,513147,134348 +h1,17616:6630773,40923000:983040,0,0 +(1,17616:7613813,40923000:0,414482,115847 +r1,17621:10082350,40923000:2468537,530329,115847 +k1,17616:7613813,40923000:-2468537 +) +(1,17616:7613813,40923000:2468537,414482,115847 +k1,17616:7613813,40923000:3277 +h1,17616:10079073,40923000:0,411205,112570 +) +k1,17616:10350901,40923000:268551 +k1,17616:12909280,40923000:268551 +k1,17616:14169390,40923000:268550 +k1,17616:15097233,40923000:268551 +k1,17616:17148363,40923000:268551 +k1,17616:20210713,40923000:268550 +k1,17616:21670709,40923000:268551 +k1,17616:23356148,40923000:268551 +k1,17616:26106547,40923000:268551 +k1,17616:27566543,40923000:268551 +k1,17616:30364783,40923000:268550 +k1,17616:31292626,40923000:268551 +k1,17616:32583029,40923000:0 +) +(1,17617:6630773,41788080:25952256,513147,11795 +k1,17616:7994796,41788080:259741 +k1,17616:9002303,41788080:259741 +k1,17616:11300214,41788080:259741 +k1,17616:12246117,41788080:259741 +k1,17616:15219049,41788080:259741 +k1,17616:16094828,41788080:259741 +k1,17616:17743931,41788080:259740 +k1,17616:20210269,41788080:259741 +k1,17616:21661455,41788080:259741 +k1,17616:24236583,41788080:259741 +k1,17616:26213367,41788080:259741 +k1,17616:29557232,41788080:259741 +k1,17616:32583029,41788080:0 +) +(1,17617:6630773,42653160:25952256,513147,134348 +g1,17616:8021447,42653160 +g1,17616:9687372,42653160 +g1,17616:11578741,42653160 +g1,17616:13765677,42653160 +g1,17616:15899529,42653160 +g1,17616:19124555,42653160 +g1,17616:21371784,42653160 +g1,17616:23210068,42653160 +g1,17616:24095459,42653160 +k1,17617:32583029,42653160:6726618 +g1,17617:32583029,42653160 +) +(1,17619:6630773,43518240:25952256,513147,126483 +h1,17618:6630773,43518240:983040,0,0 +k1,17618:10287480,43518240:207547 +k1,17618:11875871,43518240:207547 +k1,17618:13187701,43518240:207548 +k1,17618:14143014,43518240:207547 +k1,17618:16151490,43518240:207547 +k1,17618:18956884,43518240:207547 +k1,17618:20355877,43518240:207548 +k1,17618:21582509,43518240:207547 +k1,17618:24568783,43518240:207547 +k1,17618:26456673,43518240:207547 +k1,17618:27195718,43518240:207548 +k1,17618:29788776,43518240:207547 +k1,17618:31563944,43518240:207547 +k1,17618:32583029,43518240:0 +) +(1,17619:6630773,44383320:25952256,505283,126483 +g1,17618:10410234,44383320 +k1,17619:32583030,44383320:20460996 +g1,17619:32583030,44383320 +) +] +(1,17621:32583029,45706769:0,0,0 +g1,17621:32583029,45706769 +) +) +] +(1,17621:6630773,47279633:25952256,0,0 +h1,17621:6630773,47279633:25952256,0,0 +) +] +(1,17621:4262630,4025873:0,0,0 +[1,17621:-473656,4025873:0,0,0 +(1,17621:-473656,-710413:0,0,0 +(1,17621:-473656,-710413:0,0,0 +g1,17621:-473656,-710413 +) +g1,17621:-473656,-710413 ) ] ) ] !26469 -}283 -Input:2929:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2930:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2931:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2932:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}284 Input:2933:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2934:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2935:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -305208,5721 +305412,5721 @@ Input:2936:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2937:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2938:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2939:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2940:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2941:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2942:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2943:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{284 -[1,17742:4262630,47279633:28320399,43253760,0 -(1,17742:4262630,4025873:0,0,0 -[1,17742:-473656,4025873:0,0,0 -(1,17742:-473656,-710413:0,0,0 -(1,17742:-473656,-644877:0,0,0 -k1,17742:-473656,-644877:-65536 +{285 +[1,17740:4262630,47279633:28320399,43253760,0 +(1,17740:4262630,4025873:0,0,0 +[1,17740:-473656,4025873:0,0,0 +(1,17740:-473656,-710413:0,0,0 +(1,17740:-473656,-644877:0,0,0 +k1,17740:-473656,-644877:-65536 ) -(1,17742:-473656,4736287:0,0,0 -k1,17742:-473656,4736287:5209943 +(1,17740:-473656,4736287:0,0,0 +k1,17740:-473656,4736287:5209943 ) -g1,17742:-473656,-710413 +g1,17740:-473656,-710413 ) ] ) -[1,17742:6630773,47279633:25952256,43253760,0 -[1,17742:6630773,4812305:25952256,786432,0 -(1,17742:6630773,4812305:25952256,505283,11795 -(1,17742:6630773,4812305:25952256,505283,11795 -g1,17742:3078558,4812305 -[1,17742:3078558,4812305:0,0,0 -(1,17742:3078558,2439708:0,1703936,0 -k1,17742:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17742:2537886,2439708:1179648,16384,0 +[1,17740:6630773,47279633:25952256,43253760,0 +[1,17740:6630773,4812305:25952256,786432,0 +(1,17740:6630773,4812305:25952256,505283,11795 +(1,17740:6630773,4812305:25952256,505283,11795 +g1,17740:3078558,4812305 +[1,17740:3078558,4812305:0,0,0 +(1,17740:3078558,2439708:0,1703936,0 +k1,17740:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17740:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17742:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17740:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17742:3078558,4812305:0,0,0 -(1,17742:3078558,2439708:0,1703936,0 -g1,17742:29030814,2439708 -g1,17742:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17742:36151628,1915420:16384,1179648,0 +[1,17740:3078558,4812305:0,0,0 +(1,17740:3078558,2439708:0,1703936,0 +g1,17740:29030814,2439708 +g1,17740:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17740:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17742:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17740:37855564,2439708:1179648,16384,0 ) ) -k1,17742:3078556,2439708:-34777008 +k1,17740:3078556,2439708:-34777008 ) ] -[1,17742:3078558,4812305:0,0,0 -(1,17742:3078558,49800853:0,16384,2228224 -k1,17742:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17742:2537886,49800853:1179648,16384,0 +[1,17740:3078558,4812305:0,0,0 +(1,17740:3078558,49800853:0,16384,2228224 +k1,17740:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17740:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17742:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17740:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17742:3078558,4812305:0,0,0 -(1,17742:3078558,49800853:0,16384,2228224 -g1,17742:29030814,49800853 -g1,17742:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17742:36151628,51504789:16384,1179648,0 +[1,17740:3078558,4812305:0,0,0 +(1,17740:3078558,49800853:0,16384,2228224 +g1,17740:29030814,49800853 +g1,17740:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17740:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17742:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17740:37855564,49800853:1179648,16384,0 ) ) -k1,17742:3078556,49800853:-34777008 +k1,17740:3078556,49800853:-34777008 ) ] -g1,17742:6630773,4812305 -g1,17742:6630773,4812305 -g1,17742:8700400,4812305 -g1,17742:10110079,4812305 -g1,17742:12072882,4812305 -g1,17742:13635260,4812305 -g1,17742:17073933,4812305 -g1,17742:17273162,4812305 -k1,17742:31387652,4812305:14114490 +g1,17740:6630773,4812305 +g1,17740:6630773,4812305 +g1,17740:8700400,4812305 +g1,17740:10110079,4812305 +g1,17740:12072882,4812305 +g1,17740:13635260,4812305 +g1,17740:17073933,4812305 +g1,17740:17273162,4812305 +k1,17740:31387652,4812305:14114490 ) ) ] -[1,17742:6630773,45706769:25952256,40108032,0 -(1,17742:6630773,45706769:25952256,40108032,0 -(1,17742:6630773,45706769:0,0,0 -g1,17742:6630773,45706769 +[1,17740:6630773,45706769:25952256,40108032,0 +(1,17740:6630773,45706769:25952256,40108032,0 +(1,17740:6630773,45706769:0,0,0 +g1,17740:6630773,45706769 ) -[1,17742:6630773,45706769:25952256,40108032,0 -v1,17623:6630773,6254097:0,393216,0 -(1,17637:6630773,9694386:25952256,3833505,196608 -g1,17637:6630773,9694386 -g1,17637:6630773,9694386 -g1,17637:6434165,9694386 -(1,17637:6434165,9694386:0,3833505,196608 -r1,17742:32779637,9694386:26345472,4030113,196608 -k1,17637:6434165,9694386:-26345472 -) -(1,17637:6434165,9694386:26345472,3833505,196608 -[1,17637:6630773,9694386:25952256,3636897,0 -(1,17625:6630773,6481928:25952256,424439,106246 -(1,17624:6630773,6481928:0,0,0 -g1,17624:6630773,6481928 -g1,17624:6630773,6481928 -g1,17624:6303093,6481928 -(1,17624:6303093,6481928:0,0,0 -) -g1,17624:6630773,6481928 -) -g1,17625:9618358,6481928 -g1,17625:10614220,6481928 -k1,17625:10614220,6481928:0 -h1,17625:12937898,6481928:0,0,0 -k1,17625:32583030,6481928:19645132 -g1,17625:32583030,6481928 -) -(1,17626:6630773,7166783:25952256,424439,106246 -h1,17626:6630773,7166783:0,0,0 -k1,17626:6630773,7166783:0 -h1,17626:11610082,7166783:0,0,0 -k1,17626:32583030,7166783:20972948 -g1,17626:32583030,7166783 -) -(1,17630:6630773,7982710:25952256,424439,79822 -(1,17628:6630773,7982710:0,0,0 -g1,17628:6630773,7982710 -g1,17628:6630773,7982710 -g1,17628:6303093,7982710 -(1,17628:6303093,7982710:0,0,0 -) -g1,17628:6630773,7982710 -) -g1,17630:7626635,7982710 -g1,17630:8954451,7982710 -h1,17630:10946175,7982710:0,0,0 -k1,17630:32583029,7982710:21636854 -g1,17630:32583029,7982710 -) -(1,17632:6630773,8798637:25952256,424439,106246 -(1,17631:6630773,8798637:0,0,0 -g1,17631:6630773,8798637 -g1,17631:6630773,8798637 -g1,17631:6303093,8798637 -(1,17631:6303093,8798637:0,0,0 -) -g1,17631:6630773,8798637 -) -k1,17632:6630773,8798637:0 -g1,17632:13601805,8798637 -g1,17632:14597667,8798637 -g1,17632:15261575,8798637 -g1,17632:16589391,8798637 -g1,17632:17253299,8798637 -g1,17632:19245023,8798637 -g1,17632:20904793,8798637 -k1,17632:20904793,8798637:1652 -h1,17632:22234261,8798637:0,0,0 -k1,17632:32583029,8798637:10348768 -g1,17632:32583029,8798637 -) -(1,17636:6630773,9614564:25952256,424439,79822 -(1,17634:6630773,9614564:0,0,0 -g1,17634:6630773,9614564 -g1,17634:6630773,9614564 -g1,17634:6303093,9614564 -(1,17634:6303093,9614564:0,0,0 -) -g1,17634:6630773,9614564 -) -g1,17636:7626635,9614564 -g1,17636:8954451,9614564 -g1,17636:12937899,9614564 -g1,17636:15925484,9614564 -h1,17636:17253300,9614564:0,0,0 -k1,17636:32583029,9614564:15329729 -g1,17636:32583029,9614564 -) -] -) -g1,17637:32583029,9694386 -g1,17637:6630773,9694386 -g1,17637:6630773,9694386 -g1,17637:32583029,9694386 -g1,17637:32583029,9694386 -) -h1,17637:6630773,9890994:0,0,0 -(1,17641:6630773,10756074:25952256,505283,126483 -h1,17640:6630773,10756074:983040,0,0 -k1,17640:10749106,10756074:168478 -k1,17640:11936669,10756074:168478 -k1,17640:14449369,10756074:168477 -k1,17640:16848693,10756074:168478 -k1,17640:17633209,10756074:168478 -k1,17640:19227095,10756074:168478 -k1,17640:20499854,10756074:168477 -k1,17640:21416098,10756074:168478 -k1,17640:24612995,10756074:168478 -k1,17640:28186068,10756074:168478 -k1,17640:28886042,10756074:168477 -k1,17640:29670558,10756074:168478 -k1,17640:30858121,10756074:168478 -k1,17640:32583029,10756074:0 -) -(1,17641:6630773,11621154:25952256,513147,7863 -g1,17640:7489294,11621154 -k1,17641:32583028,11621154:21037056 -g1,17641:32583028,11621154 -) -v1,17643:6630773,12306009:0,393216,0 -(1,17657:6630773,15746298:25952256,3833505,196608 -g1,17657:6630773,15746298 -g1,17657:6630773,15746298 -g1,17657:6434165,15746298 -(1,17657:6434165,15746298:0,3833505,196608 -r1,17742:32779637,15746298:26345472,4030113,196608 -k1,17657:6434165,15746298:-26345472 -) -(1,17657:6434165,15746298:26345472,3833505,196608 -[1,17657:6630773,15746298:25952256,3636897,0 -(1,17645:6630773,12533840:25952256,424439,79822 -(1,17644:6630773,12533840:0,0,0 -g1,17644:6630773,12533840 -g1,17644:6630773,12533840 -g1,17644:6303093,12533840 -(1,17644:6303093,12533840:0,0,0 -) -g1,17644:6630773,12533840 -) -g1,17645:10946174,12533840 -g1,17645:11942036,12533840 -k1,17645:11942036,12533840:0 -h1,17645:13601806,12533840:0,0,0 -k1,17645:32583030,12533840:18981224 -g1,17645:32583030,12533840 -) -(1,17646:6630773,13218695:25952256,424439,79822 -h1,17646:6630773,13218695:0,0,0 -k1,17646:6630773,13218695:0 -h1,17646:12937898,13218695:0,0,0 -k1,17646:32583030,13218695:19645132 -g1,17646:32583030,13218695 -) -(1,17650:6630773,14034622:25952256,424439,79822 -(1,17648:6630773,14034622:0,0,0 -g1,17648:6630773,14034622 -g1,17648:6630773,14034622 -g1,17648:6303093,14034622 -(1,17648:6303093,14034622:0,0,0 -) -g1,17648:6630773,14034622 -) -g1,17650:7626635,14034622 -g1,17650:8954451,14034622 -g1,17650:12273990,14034622 -h1,17650:14929621,14034622:0,0,0 -k1,17650:32583029,14034622:17653408 -g1,17650:32583029,14034622 -) -(1,17652:6630773,14850549:25952256,424439,6605 -(1,17651:6630773,14850549:0,0,0 -g1,17651:6630773,14850549 -g1,17651:6630773,14850549 -g1,17651:6303093,14850549 -(1,17651:6303093,14850549:0,0,0 -) -g1,17651:6630773,14850549 -) -h1,17652:10614220,14850549:0,0,0 -k1,17652:32583028,14850549:21968808 -g1,17652:32583028,14850549 -) -(1,17656:6630773,15666476:25952256,424439,79822 -(1,17654:6630773,15666476:0,0,0 -g1,17654:6630773,15666476 -g1,17654:6630773,15666476 -g1,17654:6303093,15666476 -(1,17654:6303093,15666476:0,0,0 -) -g1,17654:6630773,15666476 -) -g1,17656:7626635,15666476 -g1,17656:8954451,15666476 -g1,17656:12937899,15666476 -g1,17656:15925484,15666476 -h1,17656:17253300,15666476:0,0,0 -k1,17656:32583029,15666476:15329729 -g1,17656:32583029,15666476 -) -] -) -g1,17657:32583029,15746298 -g1,17657:6630773,15746298 -g1,17657:6630773,15746298 -g1,17657:32583029,15746298 -g1,17657:32583029,15746298 -) -h1,17657:6630773,15942906:0,0,0 -(1,17661:6630773,16807986:25952256,513147,134348 -h1,17660:6630773,16807986:983040,0,0 -k1,17660:11434342,16807986:221947 -k1,17660:13223910,16807986:221947 -k1,17660:16420537,16807986:221948 -k1,17660:18838595,16807986:221947 -k1,17660:19711970,16807986:221947 -(1,17660:19711970,16807986:0,414482,115847 -r1,17742:22180507,16807986:2468537,530329,115847 -k1,17660:19711970,16807986:-2468537 -) -(1,17660:19711970,16807986:2468537,414482,115847 -k1,17660:19711970,16807986:3277 -h1,17660:22177230,16807986:0,411205,112570 -) -k1,17660:22402454,16807986:221947 -k1,17660:23155898,16807986:221947 -k1,17660:28390039,16807986:221947 -k1,17660:29298149,16807986:221948 -k1,17660:30908804,16807986:221947 -k1,17660:31816913,16807986:221947 -k1,17660:32583029,16807986:0 -) -(1,17661:6630773,17673066:25952256,513147,134348 -k1,17660:9890971,17673066:285519 -k1,17660:12372600,17673066:285518 -k1,17660:13309546,17673066:285518 -k1,17660:14342831,17673066:285519 -k1,17660:17789151,17673066:285519 -k1,17660:19549884,17673066:285518 -k1,17660:20854488,17673066:285519 -k1,17660:22793479,17673066:285518 -k1,17660:23761883,17673066:285519 -k1,17660:25401375,17673066:285518 -k1,17660:28455135,17673066:285519 -k1,17660:32119689,17673066:285518 -k1,17660:32583029,17673066:0 -) -(1,17661:6630773,18538146:25952256,513147,126483 -k1,17660:8885806,18538146:247010 -k1,17660:9792107,18538146:247009 -k1,17660:13064914,18538146:247010 -k1,17660:14879545,18538146:247010 -k1,17660:18324710,18538146:247009 -k1,17660:19965671,18538146:247010 -k1,17660:22280996,18538146:247009 -k1,17660:23674231,18538146:247010 -(1,17660:23674231,18538146:0,452978,115847 -r1,17742:26846191,18538146:3171960,568825,115847 -k1,17660:23674231,18538146:-3171960 -) -(1,17660:23674231,18538146:3171960,452978,115847 -k1,17660:23674231,18538146:3277 -h1,17660:26842914,18538146:0,411205,112570 -) -k1,17660:27093201,18538146:247010 -k1,17660:28444492,18538146:247009 -k1,17660:31084221,18538146:247010 -k1,17661:32583029,18538146:0 -) -(1,17661:6630773,19403226:25952256,513147,134348 -k1,17660:8405268,19403226:192456 -k1,17660:10793835,19403226:192456 -k1,17660:12253757,19403226:192456 -(1,17660:12253757,19403226:0,414482,115847 -r1,17742:14722294,19403226:2468537,530329,115847 -k1,17660:12253757,19403226:-2468537 -) -(1,17660:12253757,19403226:2468537,414482,115847 -k1,17660:12253757,19403226:3277 -h1,17660:14719017,19403226:0,411205,112570 -) -k1,17660:14914750,19403226:192456 -k1,17660:17570704,19403226:192456 -k1,17660:19637491,19403226:192457 -k1,17660:22855744,19403226:192456 -k1,17660:24039760,19403226:192456 -k1,17660:27509671,19403226:192456 -k1,17660:28893572,19403226:192456 -k1,17660:30190310,19403226:192456 -k1,17660:32583029,19403226:0 -) -(1,17661:6630773,20268306:25952256,513147,134348 -k1,17660:7232361,20268306:245728 -k1,17660:9360938,20268306:245728 -k1,17660:12581345,20268306:245728 -k1,17660:14804949,20268306:245727 -k1,17660:15666715,20268306:245728 -k1,17660:16268303,20268306:245728 -k1,17660:18387050,20268306:245728 -k1,17660:21707072,20268306:245728 -k1,17660:23220266,20268306:245728 -k1,17660:23821854,20268306:245728 -(1,17660:23821854,20268306:0,414482,115847 -r1,17742:26290391,20268306:2468537,530329,115847 -k1,17660:23821854,20268306:-2468537 -) -(1,17660:23821854,20268306:2468537,414482,115847 -k1,17660:23821854,20268306:3277 -h1,17660:26287114,20268306:0,411205,112570 -) -k1,17660:26536118,20268306:245727 -k1,17660:28759723,20268306:245728 -k1,17660:29664743,20268306:245728 -k1,17660:30929556,20268306:245728 -k1,17660:32583029,20268306:0 -) -(1,17661:6630773,21133386:25952256,505283,134348 -k1,17661:32583029,21133386:23886562 -g1,17661:32583029,21133386 -) -v1,17663:6630773,21818241:0,393216,0 -(1,17682:6630773,26205529:25952256,4780504,196608 -g1,17682:6630773,26205529 -g1,17682:6630773,26205529 -g1,17682:6434165,26205529 -(1,17682:6434165,26205529:0,4780504,196608 -r1,17742:32779637,26205529:26345472,4977112,196608 -k1,17682:6434165,26205529:-26345472 -) -(1,17682:6434165,26205529:26345472,4780504,196608 -[1,17682:6630773,26205529:25952256,4583896,0 -(1,17665:6630773,22046072:25952256,424439,106246 -(1,17664:6630773,22046072:0,0,0 -g1,17664:6630773,22046072 -g1,17664:6630773,22046072 -g1,17664:6303093,22046072 -(1,17664:6303093,22046072:0,0,0 -) -g1,17664:6630773,22046072 -) -k1,17665:6630773,22046072:0 -g1,17665:11942036,22046072 -g1,17665:13601806,22046072 -g1,17665:14597668,22046072 -g1,17665:15261576,22046072 -h1,17665:17253300,22046072:0,0,0 -k1,17665:32583029,22046072:15329729 -g1,17665:32583029,22046072 -) -(1,17669:6630773,22861999:25952256,424439,79822 -(1,17667:6630773,22861999:0,0,0 -g1,17667:6630773,22861999 -g1,17667:6630773,22861999 -g1,17667:6303093,22861999 -(1,17667:6303093,22861999:0,0,0 -) -g1,17667:6630773,22861999 -) -g1,17669:7626635,22861999 -g1,17669:8954451,22861999 -g1,17669:12937899,22861999 -g1,17669:15925484,22861999 -h1,17669:17585254,22861999:0,0,0 -k1,17669:32583029,22861999:14997775 -g1,17669:32583029,22861999 -) -(1,17671:6630773,23677926:25952256,424439,106246 -(1,17670:6630773,23677926:0,0,0 -g1,17670:6630773,23677926 -g1,17670:6630773,23677926 -g1,17670:6303093,23677926 -(1,17670:6303093,23677926:0,0,0 -) -g1,17670:6630773,23677926 -) -k1,17671:6630773,23677926:0 -g1,17671:11942036,23677926 -g1,17671:13933760,23677926 -g1,17671:14929622,23677926 -g1,17671:15593530,23677926 -h1,17671:17585254,23677926:0,0,0 -k1,17671:32583029,23677926:14997775 -g1,17671:32583029,23677926 -) -(1,17675:6630773,24493853:25952256,424439,79822 -(1,17673:6630773,24493853:0,0,0 -g1,17673:6630773,24493853 -g1,17673:6630773,24493853 -g1,17673:6303093,24493853 -(1,17673:6303093,24493853:0,0,0 -) -g1,17673:6630773,24493853 -) -g1,17675:7626635,24493853 -g1,17675:8954451,24493853 -g1,17675:12937899,24493853 -g1,17675:15925484,24493853 -h1,17675:17585254,24493853:0,0,0 -k1,17675:32583029,24493853:14997775 -g1,17675:32583029,24493853 -) -(1,17677:6630773,25309780:25952256,424439,112852 -(1,17676:6630773,25309780:0,0,0 -g1,17676:6630773,25309780 -g1,17676:6630773,25309780 -g1,17676:6303093,25309780 -(1,17676:6303093,25309780:0,0,0 -) -g1,17676:6630773,25309780 -) -k1,17677:6630773,25309780:0 -g1,17677:11942036,25309780 -g1,17677:12937898,25309780 -g1,17677:14929622,25309780 -g1,17677:15593530,25309780 -g1,17677:17585254,25309780 -k1,17677:17585254,25309780:0 -h1,17677:20572839,25309780:0,0,0 -k1,17677:32583029,25309780:12010190 -g1,17677:32583029,25309780 -) -(1,17681:6630773,26125707:25952256,424439,79822 -(1,17679:6630773,26125707:0,0,0 -g1,17679:6630773,26125707 -g1,17679:6630773,26125707 -g1,17679:6303093,26125707 -(1,17679:6303093,26125707:0,0,0 -) -g1,17679:6630773,26125707 -) -g1,17681:7626635,26125707 -g1,17681:8954451,26125707 -g1,17681:12937899,26125707 -g1,17681:15925484,26125707 -h1,17681:17253300,26125707:0,0,0 -k1,17681:32583029,26125707:15329729 -g1,17681:32583029,26125707 -) -] -) -g1,17682:32583029,26205529 -g1,17682:6630773,26205529 -g1,17682:6630773,26205529 -g1,17682:32583029,26205529 -g1,17682:32583029,26205529 -) -h1,17682:6630773,26402137:0,0,0 -v1,17686:6630773,27267217:0,393216,0 -(1,17737:6630773,45424809:25952256,18550808,0 -g1,17737:6630773,45424809 -g1,17737:6237557,45424809 -r1,17742:6368629,45424809:131072,18550808,0 -g1,17737:6567858,45424809 -g1,17737:6764466,45424809 -[1,17737:6764466,45424809:25818563,18550808,0 -(1,17687:6764466,27628394:25818563,754393,260573 -(1,17686:6764466,27628394:0,754393,260573 -r1,17742:7856192,27628394:1091726,1014966,260573 -k1,17686:6764466,27628394:-1091726 -) -(1,17686:6764466,27628394:1091726,754393,260573 -) -k1,17686:8149762,27628394:293570 -k1,17686:8477442,27628394:327680 -k1,17686:12369594,27628394:293570 -k1,17686:15688961,27628394:293570 -k1,17686:17376482,27628394:293570 -k1,17686:18479422,27628394:293570 -k1,17686:20198401,27628394:293571 -k1,17686:24419544,27628394:293570 -k1,17686:26723759,27628394:293570 -(1,17686:26723759,27628394:0,414482,115847 -r1,17742:28137160,27628394:1413401,530329,115847 -k1,17686:26723759,27628394:-1413401 -) -(1,17686:26723759,27628394:1413401,414482,115847 -k1,17686:26723759,27628394:3277 -h1,17686:28133883,27628394:0,411205,112570 -) -k1,17686:28430730,27628394:293570 -k1,17686:31014128,27628394:293570 -k1,17686:31773659,27628394:293570 -k1,17686:32583029,27628394:0 -) -(1,17687:6764466,28493474:25818563,513147,134348 -k1,17686:10093139,28493474:256345 -k1,17686:10880981,28493474:256345 -k1,17686:13342613,28493474:256345 -k1,17686:14250386,28493474:256345 -(1,17686:14250386,28493474:0,414482,115847 -r1,17742:14960364,28493474:709978,530329,115847 -k1,17686:14250386,28493474:-709978 -) -(1,17686:14250386,28493474:709978,414482,115847 -k1,17686:14250386,28493474:3277 -h1,17686:14957087,28493474:0,411205,112570 -) -k1,17686:15390379,28493474:256345 -k1,17686:17336242,28493474:256345 -(1,17686:17336242,28493474:0,452978,115847 -r1,17742:19804780,28493474:2468538,568825,115847 -k1,17686:17336242,28493474:-2468538 -) -(1,17686:17336242,28493474:2468538,452978,115847 -g1,17686:18394655,28493474 -g1,17686:19098079,28493474 -h1,17686:19801503,28493474:0,411205,112570 -) -k1,17686:20234795,28493474:256345 -k1,17686:21177302,28493474:256345 -k1,17686:22946873,28493474:256345 -k1,17686:25245320,28493474:256345 -k1,17686:28131625,28493474:256345 -k1,17686:29407055,28493474:256345 -k1,17686:31157621,28493474:256345 -k1,17686:32583029,28493474:0 -) -(1,17687:6764466,29358554:25818563,355205,7863 -k1,17687:32583028,29358554:24219484 -g1,17687:32583028,29358554 -) -v1,17689:6764466,30043409:0,393216,0 -(1,17708:6764466,34430697:25818563,4780504,196608 -g1,17708:6764466,34430697 -g1,17708:6764466,34430697 -g1,17708:6567858,34430697 -(1,17708:6567858,34430697:0,4780504,196608 -r1,17742:32779637,34430697:26211779,4977112,196608 -k1,17708:6567857,34430697:-26211780 -) -(1,17708:6567858,34430697:26211779,4780504,196608 -[1,17708:6764466,34430697:25818563,4583896,0 -(1,17691:6764466,30271240:25818563,424439,106246 -(1,17690:6764466,30271240:0,0,0 -g1,17690:6764466,30271240 -g1,17690:6764466,30271240 -g1,17690:6436786,30271240 -(1,17690:6436786,30271240:0,0,0 -) -g1,17690:6764466,30271240 -) -k1,17691:6764466,30271240:0 -k1,17691:6764466,30271240:0 -h1,17691:14731362,30271240:0,0,0 -k1,17691:32583030,30271240:17851668 -g1,17691:32583030,30271240 -) -(1,17695:6764466,31087167:25818563,424439,79822 -(1,17693:6764466,31087167:0,0,0 -g1,17693:6764466,31087167 -g1,17693:6764466,31087167 -g1,17693:6436786,31087167 -(1,17693:6436786,31087167:0,0,0 -) -g1,17693:6764466,31087167 -) -g1,17695:7760328,31087167 -g1,17695:9088144,31087167 -h1,17695:11079868,31087167:0,0,0 -k1,17695:32583028,31087167:21503160 -g1,17695:32583028,31087167 -) -(1,17697:6764466,31903094:25818563,424439,106246 -(1,17696:6764466,31903094:0,0,0 -g1,17696:6764466,31903094 -g1,17696:6764466,31903094 -g1,17696:6436786,31903094 -(1,17696:6436786,31903094:0,0,0 -) -g1,17696:6764466,31903094 -) -k1,17697:6764466,31903094:0 -g1,17697:14731362,31903094 -g1,17697:15727224,31903094 -g1,17697:16391132,31903094 -h1,17697:17718948,31903094:0,0,0 -k1,17697:32583029,31903094:14864081 -g1,17697:32583029,31903094 -) -(1,17701:6764466,32719021:25818563,424439,79822 -(1,17699:6764466,32719021:0,0,0 -g1,17699:6764466,32719021 -g1,17699:6764466,32719021 -g1,17699:6436786,32719021 -(1,17699:6436786,32719021:0,0,0 -) -g1,17699:6764466,32719021 -) -g1,17701:7760328,32719021 -g1,17701:9088144,32719021 -g1,17701:12407683,32719021 -h1,17701:15063314,32719021:0,0,0 -k1,17701:32583030,32719021:17519716 -g1,17701:32583030,32719021 -) -(1,17703:6764466,33534948:25818563,424439,106246 -(1,17702:6764466,33534948:0,0,0 -g1,17702:6764466,33534948 -g1,17702:6764466,33534948 -g1,17702:6436786,33534948 -(1,17702:6436786,33534948:0,0,0 -) -g1,17702:6764466,33534948 -) -k1,17703:6764466,33534948:0 -g1,17703:12739638,33534948 -g1,17703:13403546,33534948 -h1,17703:14731362,33534948:0,0,0 -k1,17703:32583030,33534948:17851668 -g1,17703:32583030,33534948 -) -(1,17707:6764466,34350875:25818563,424439,79822 -(1,17705:6764466,34350875:0,0,0 -g1,17705:6764466,34350875 -g1,17705:6764466,34350875 -g1,17705:6436786,34350875 -(1,17705:6436786,34350875:0,0,0 -) -g1,17705:6764466,34350875 -) -g1,17707:7760328,34350875 -g1,17707:9088144,34350875 -h1,17707:11079868,34350875:0,0,0 -k1,17707:32583028,34350875:21503160 -g1,17707:32583028,34350875 -) -] -) -g1,17708:32583029,34430697 -g1,17708:6764466,34430697 -g1,17708:6764466,34430697 -g1,17708:32583029,34430697 -g1,17708:32583029,34430697 -) -h1,17708:6764466,34627305:0,0,0 -(1,17712:6764466,35492385:25818563,513147,134348 -h1,17711:6764466,35492385:983040,0,0 -k1,17711:11929813,35492385:253424 -k1,17711:13750858,35492385:253424 -(1,17711:13750858,35492385:0,414482,115847 -r1,17742:15164259,35492385:1413401,530329,115847 -k1,17711:13750858,35492385:-1413401 -) -(1,17711:13750858,35492385:1413401,414482,115847 -k1,17711:13750858,35492385:3277 -h1,17711:15160982,35492385:0,411205,112570 -) -k1,17711:15417682,35492385:253423 -k1,17711:16938572,35492385:253424 -(1,17711:16938572,35492385:0,414482,115847 -r1,17742:19407109,35492385:2468537,530329,115847 -k1,17711:16938572,35492385:-2468537 -) -(1,17711:16938572,35492385:2468537,414482,115847 -k1,17711:16938572,35492385:3277 -h1,17711:19403832,35492385:0,411205,112570 -) -k1,17711:19660533,35492385:253424 -k1,17711:21018239,35492385:253424 -k1,17711:22551581,35492385:253424 -k1,17711:24158979,35492385:253424 -k1,17711:28081107,35492385:253423 -k1,17711:30681375,35492385:253424 -k1,17711:31412556,35492385:253424 -k1,17711:32583029,35492385:0 -) -(1,17712:6764466,36357465:25818563,513147,102891 -k1,17711:8118221,36357465:235711 -k1,17711:9373017,36357465:235711 -k1,17711:12795088,36357465:235711 -k1,17711:15072901,36357465:235711 -k1,17711:16327697,36357465:235711 -k1,17711:19342136,36357465:235712 -k1,17711:21258190,36357465:235711 -k1,17711:22626363,36357465:235711 -k1,17711:23609840,36357465:235711 -k1,17711:24864636,36357465:235711 -k1,17711:26525755,36357465:235711 -k1,17711:29947826,36357465:235711 -k1,17711:32583029,36357465:0 -) -(1,17712:6764466,37222545:25818563,505283,134348 -g1,17711:7982780,37222545 -g1,17711:9607417,37222545 -g1,17711:11988340,37222545 -g1,17711:12803607,37222545 -g1,17711:14461667,37222545 -g1,17711:17737156,37222545 -g1,17711:19127830,37222545 -k1,17712:32583029,37222545:11937385 -g1,17712:32583029,37222545 -) -v1,17714:6764466,37907400:0,393216,0 -(1,17721:6764466,38961066:25818563,1446882,196608 -g1,17721:6764466,38961066 -g1,17721:6764466,38961066 -g1,17721:6567858,38961066 -(1,17721:6567858,38961066:0,1446882,196608 -r1,17742:32779637,38961066:26211779,1643490,196608 -k1,17721:6567857,38961066:-26211780 -) -(1,17721:6567858,38961066:26211779,1446882,196608 -[1,17721:6764466,38961066:25818563,1250274,0 -(1,17716:6764466,38135231:25818563,424439,106246 -(1,17715:6764466,38135231:0,0,0 -g1,17715:6764466,38135231 -g1,17715:6764466,38135231 -g1,17715:6436786,38135231 -(1,17715:6436786,38135231:0,0,0 -) -g1,17715:6764466,38135231 -) -k1,17716:6764466,38135231:0 -g1,17716:16723085,38135231 -g1,17716:18714809,38135231 -g1,17716:19378717,38135231 -g1,17716:20706533,38135231 -g1,17716:21370441,38135231 -g1,17716:27345613,38135231 -g1,17716:28341475,38135231 -g1,17716:29005383,38135231 -h1,17716:30001245,38135231:0,0,0 -k1,17716:32583029,38135231:2581784 -g1,17716:32583029,38135231 -) -(1,17720:6764466,38951158:25818563,431045,9908 -(1,17718:6764466,38951158:0,0,0 -g1,17718:6764466,38951158 -g1,17718:6764466,38951158 -g1,17718:6436786,38951158 -(1,17718:6436786,38951158:0,0,0 -) -g1,17718:6764466,38951158 -) -g1,17720:7760328,38951158 -g1,17720:9420098,38951158 -g1,17720:13071591,38951158 -g1,17720:14067453,38951158 -g1,17720:14731361,38951158 -h1,17720:16391131,38951158:0,0,0 -k1,17720:32583029,38951158:16191898 -g1,17720:32583029,38951158 -) -] -) -g1,17721:32583029,38961066 -g1,17721:6764466,38961066 -g1,17721:6764466,38961066 -g1,17721:32583029,38961066 -g1,17721:32583029,38961066 -) -h1,17721:6764466,39157674:0,0,0 -(1,17725:6764466,40022754:25818563,505283,126483 -h1,17724:6764466,40022754:983040,0,0 -k1,17724:9086120,40022754:141927 -k1,17724:13622236,40022754:141927 -k1,17724:16162781,40022754:141927 -k1,17724:17589213,40022754:141926 -k1,17724:18750225,40022754:141927 -k1,17724:20572495,40022754:141927 -k1,17724:21330460,40022754:141927 -k1,17724:22491472,40022754:141927 -(1,17724:22491472,40022754:0,414482,115847 -r1,17742:23904873,40022754:1413401,530329,115847 -k1,17724:22491472,40022754:-1413401 -) -(1,17724:22491472,40022754:1413401,414482,115847 -k1,17724:22491472,40022754:3277 -h1,17724:23901596,40022754:0,411205,112570 -) -k1,17724:24046800,40022754:141927 -k1,17724:24720223,40022754:141926 -k1,17724:28059652,40022754:141927 -k1,17724:28817617,40022754:141927 -k1,17724:30494397,40022754:141927 -k1,17725:32583029,40022754:0 -) -(1,17725:6764466,40887834:25818563,513147,134348 -k1,17724:9636311,40887834:230744 -k1,17724:10518483,40887834:230744 -k1,17724:13487321,40887834:230744 -k1,17724:15252918,40887834:230744 -k1,17724:16680349,40887834:230744 -k1,17724:18336501,40887834:230744 -k1,17724:20113895,40887834:230744 -k1,17724:23530999,40887834:230744 -k1,17724:24377781,40887834:230744 -k1,17724:25969676,40887834:230712 -k1,17724:26813182,40887834:230744 -k1,17724:29947826,40887834:230744 -k1,17724:32583029,40887834:0 -) -(1,17725:6764466,41752914:25818563,513147,134348 -k1,17724:8439314,41752914:249440 -k1,17724:10565705,41752914:249440 -k1,17724:11346642,41752914:249440 -k1,17724:12662353,41752914:249440 -k1,17724:14679299,41752914:249440 -k1,17724:16196205,41752914:249440 -k1,17724:19123447,41752914:249441 -k1,17724:21738737,41752914:249440 -k1,17724:23007262,41752914:249440 -k1,17724:24682110,41752914:249440 -k1,17724:26478200,41752914:249440 -k1,17724:28240866,41752914:249440 -k1,17724:31966991,41752914:249440 -k1,17725:32583029,41752914:0 -) -(1,17725:6764466,42617994:25818563,513147,126483 -(1,17724:6764466,42617994:0,414482,115847 -r1,17742:9233003,42617994:2468537,530329,115847 -k1,17724:6764466,42617994:-2468537 -) -(1,17724:6764466,42617994:2468537,414482,115847 -k1,17724:6764466,42617994:3277 -h1,17724:9229726,42617994:0,411205,112570 -) -k1,17724:9484951,42617994:251948 -k1,17724:11210148,42617994:251948 -k1,17724:12481182,42617994:251949 -k1,17724:15583291,42617994:251948 -k1,17724:17972368,42617994:251948 -k1,17724:19370541,42617994:251948 -k1,17724:21319216,42617994:251948 -k1,17724:23286897,42617994:251948 -k1,17724:23996943,42617994:251949 -k1,17724:27644967,42617994:251948 -k1,17724:28548343,42617994:251948 -k1,17724:29615559,42617994:251948 -k1,17724:32583029,42617994:0 -) -(1,17725:6764466,43483074:25818563,505283,134348 -g1,17724:9115897,43483074 -g1,17724:11013164,43483074 -g1,17724:13017910,43483074 -g1,17724:17024125,43483074 -g1,17724:20143638,43483074 -g1,17724:22098577,43483074 -g1,17724:23489251,43483074 -g1,17724:24371365,43483074 -k1,17725:32583029,43483074:6448091 -g1,17725:32583029,43483074 -) -v1,17727:6764466,44167929:0,393216,0 -(1,17734:6764466,45228201:25818563,1453488,196608 -g1,17734:6764466,45228201 -g1,17734:6764466,45228201 -g1,17734:6567858,45228201 -(1,17734:6567858,45228201:0,1453488,196608 -r1,17742:32779637,45228201:26211779,1650096,196608 -k1,17734:6567857,45228201:-26211780 -) -(1,17734:6567858,45228201:26211779,1453488,196608 -[1,17734:6764466,45228201:25818563,1256880,0 -(1,17729:6764466,44402366:25818563,431045,106246 -(1,17728:6764466,44402366:0,0,0 -g1,17728:6764466,44402366 -g1,17728:6764466,44402366 -g1,17728:6436786,44402366 -(1,17728:6436786,44402366:0,0,0 -) -g1,17728:6764466,44402366 -) -k1,17729:6764466,44402366:0 -k1,17729:19950405,44402366:239735 -k1,17729:21849909,44402366:239734 -k1,17729:22421598,44402366:239735 -k1,17729:23657194,44402366:239734 -k1,17729:24228883,44402366:239735 -k1,17729:30111836,44402366:239735 -k1,17729:31015478,44402366:239734 -k1,17729:31587167,44402366:239735 -h1,17729:32583029,44402366:0,0,0 -k1,17729:32583029,44402366:0 -k1,17729:32583029,44402366:0 -) -(1,17733:6764466,45218293:25818563,431045,9908 -(1,17731:6764466,45218293:0,0,0 -g1,17731:6764466,45218293 -g1,17731:6764466,45218293 -g1,17731:6436786,45218293 -(1,17731:6436786,45218293:0,0,0 -) -g1,17731:6764466,45218293 -) -g1,17733:7760328,45218293 -g1,17733:9420098,45218293 -g1,17733:13071591,45218293 -g1,17733:14067453,45218293 -g1,17733:14731361,45218293 -h1,17733:16059177,45218293:0,0,0 -k1,17733:32583029,45218293:16523852 -g1,17733:32583029,45218293 -) -] -) -g1,17734:32583029,45228201 -g1,17734:6764466,45228201 -g1,17734:6764466,45228201 -g1,17734:32583029,45228201 -g1,17734:32583029,45228201 -) -h1,17734:6764466,45424809:0,0,0 -] -g1,17737:32583029,45424809 -) -h1,17737:6630773,45424809:0,0,0 -] -(1,17742:32583029,45706769:0,0,0 -g1,17742:32583029,45706769 -) -) -] -(1,17742:6630773,47279633:25952256,0,0 -h1,17742:6630773,47279633:25952256,0,0 -) -] -(1,17742:4262630,4025873:0,0,0 -[1,17742:-473656,4025873:0,0,0 -(1,17742:-473656,-710413:0,0,0 -(1,17742:-473656,-710413:0,0,0 -g1,17742:-473656,-710413 -) -g1,17742:-473656,-710413 +[1,17740:6630773,45706769:25952256,40108032,0 +v1,17621:6630773,6254097:0,393216,0 +(1,17635:6630773,9694386:25952256,3833505,196608 +g1,17635:6630773,9694386 +g1,17635:6630773,9694386 +g1,17635:6434165,9694386 +(1,17635:6434165,9694386:0,3833505,196608 +r1,17740:32779637,9694386:26345472,4030113,196608 +k1,17635:6434165,9694386:-26345472 +) +(1,17635:6434165,9694386:26345472,3833505,196608 +[1,17635:6630773,9694386:25952256,3636897,0 +(1,17623:6630773,6481928:25952256,424439,106246 +(1,17622:6630773,6481928:0,0,0 +g1,17622:6630773,6481928 +g1,17622:6630773,6481928 +g1,17622:6303093,6481928 +(1,17622:6303093,6481928:0,0,0 +) +g1,17622:6630773,6481928 +) +g1,17623:9618358,6481928 +g1,17623:10614220,6481928 +k1,17623:10614220,6481928:0 +h1,17623:12937898,6481928:0,0,0 +k1,17623:32583030,6481928:19645132 +g1,17623:32583030,6481928 +) +(1,17624:6630773,7166783:25952256,424439,106246 +h1,17624:6630773,7166783:0,0,0 +k1,17624:6630773,7166783:0 +h1,17624:11610082,7166783:0,0,0 +k1,17624:32583030,7166783:20972948 +g1,17624:32583030,7166783 +) +(1,17628:6630773,7982710:25952256,424439,79822 +(1,17626:6630773,7982710:0,0,0 +g1,17626:6630773,7982710 +g1,17626:6630773,7982710 +g1,17626:6303093,7982710 +(1,17626:6303093,7982710:0,0,0 +) +g1,17626:6630773,7982710 +) +g1,17628:7626635,7982710 +g1,17628:8954451,7982710 +h1,17628:10946175,7982710:0,0,0 +k1,17628:32583029,7982710:21636854 +g1,17628:32583029,7982710 +) +(1,17630:6630773,8798637:25952256,424439,106246 +(1,17629:6630773,8798637:0,0,0 +g1,17629:6630773,8798637 +g1,17629:6630773,8798637 +g1,17629:6303093,8798637 +(1,17629:6303093,8798637:0,0,0 +) +g1,17629:6630773,8798637 +) +k1,17630:6630773,8798637:0 +g1,17630:13601805,8798637 +g1,17630:14597667,8798637 +g1,17630:15261575,8798637 +g1,17630:16589391,8798637 +g1,17630:17253299,8798637 +g1,17630:19245023,8798637 +g1,17630:20904793,8798637 +k1,17630:20904793,8798637:1652 +h1,17630:22234261,8798637:0,0,0 +k1,17630:32583029,8798637:10348768 +g1,17630:32583029,8798637 +) +(1,17634:6630773,9614564:25952256,424439,79822 +(1,17632:6630773,9614564:0,0,0 +g1,17632:6630773,9614564 +g1,17632:6630773,9614564 +g1,17632:6303093,9614564 +(1,17632:6303093,9614564:0,0,0 +) +g1,17632:6630773,9614564 +) +g1,17634:7626635,9614564 +g1,17634:8954451,9614564 +g1,17634:12937899,9614564 +g1,17634:15925484,9614564 +h1,17634:17253300,9614564:0,0,0 +k1,17634:32583029,9614564:15329729 +g1,17634:32583029,9614564 +) +] +) +g1,17635:32583029,9694386 +g1,17635:6630773,9694386 +g1,17635:6630773,9694386 +g1,17635:32583029,9694386 +g1,17635:32583029,9694386 +) +h1,17635:6630773,9890994:0,0,0 +(1,17639:6630773,10756074:25952256,505283,126483 +h1,17638:6630773,10756074:983040,0,0 +k1,17638:10749106,10756074:168478 +k1,17638:11936669,10756074:168478 +k1,17638:14449369,10756074:168477 +k1,17638:16848693,10756074:168478 +k1,17638:17633209,10756074:168478 +k1,17638:19227095,10756074:168478 +k1,17638:20499854,10756074:168477 +k1,17638:21416098,10756074:168478 +k1,17638:24612995,10756074:168478 +k1,17638:28186068,10756074:168478 +k1,17638:28886042,10756074:168477 +k1,17638:29670558,10756074:168478 +k1,17638:30858121,10756074:168478 +k1,17638:32583029,10756074:0 +) +(1,17639:6630773,11621154:25952256,513147,7863 +g1,17638:7489294,11621154 +k1,17639:32583028,11621154:21037056 +g1,17639:32583028,11621154 +) +v1,17641:6630773,12306009:0,393216,0 +(1,17655:6630773,15746298:25952256,3833505,196608 +g1,17655:6630773,15746298 +g1,17655:6630773,15746298 +g1,17655:6434165,15746298 +(1,17655:6434165,15746298:0,3833505,196608 +r1,17740:32779637,15746298:26345472,4030113,196608 +k1,17655:6434165,15746298:-26345472 +) +(1,17655:6434165,15746298:26345472,3833505,196608 +[1,17655:6630773,15746298:25952256,3636897,0 +(1,17643:6630773,12533840:25952256,424439,79822 +(1,17642:6630773,12533840:0,0,0 +g1,17642:6630773,12533840 +g1,17642:6630773,12533840 +g1,17642:6303093,12533840 +(1,17642:6303093,12533840:0,0,0 +) +g1,17642:6630773,12533840 +) +g1,17643:10946174,12533840 +g1,17643:11942036,12533840 +k1,17643:11942036,12533840:0 +h1,17643:13601806,12533840:0,0,0 +k1,17643:32583030,12533840:18981224 +g1,17643:32583030,12533840 +) +(1,17644:6630773,13218695:25952256,424439,79822 +h1,17644:6630773,13218695:0,0,0 +k1,17644:6630773,13218695:0 +h1,17644:12937898,13218695:0,0,0 +k1,17644:32583030,13218695:19645132 +g1,17644:32583030,13218695 +) +(1,17648:6630773,14034622:25952256,424439,79822 +(1,17646:6630773,14034622:0,0,0 +g1,17646:6630773,14034622 +g1,17646:6630773,14034622 +g1,17646:6303093,14034622 +(1,17646:6303093,14034622:0,0,0 +) +g1,17646:6630773,14034622 +) +g1,17648:7626635,14034622 +g1,17648:8954451,14034622 +g1,17648:12273990,14034622 +h1,17648:14929621,14034622:0,0,0 +k1,17648:32583029,14034622:17653408 +g1,17648:32583029,14034622 +) +(1,17650:6630773,14850549:25952256,424439,6605 +(1,17649:6630773,14850549:0,0,0 +g1,17649:6630773,14850549 +g1,17649:6630773,14850549 +g1,17649:6303093,14850549 +(1,17649:6303093,14850549:0,0,0 +) +g1,17649:6630773,14850549 +) +h1,17650:10614220,14850549:0,0,0 +k1,17650:32583028,14850549:21968808 +g1,17650:32583028,14850549 +) +(1,17654:6630773,15666476:25952256,424439,79822 +(1,17652:6630773,15666476:0,0,0 +g1,17652:6630773,15666476 +g1,17652:6630773,15666476 +g1,17652:6303093,15666476 +(1,17652:6303093,15666476:0,0,0 +) +g1,17652:6630773,15666476 +) +g1,17654:7626635,15666476 +g1,17654:8954451,15666476 +g1,17654:12937899,15666476 +g1,17654:15925484,15666476 +h1,17654:17253300,15666476:0,0,0 +k1,17654:32583029,15666476:15329729 +g1,17654:32583029,15666476 +) +] +) +g1,17655:32583029,15746298 +g1,17655:6630773,15746298 +g1,17655:6630773,15746298 +g1,17655:32583029,15746298 +g1,17655:32583029,15746298 +) +h1,17655:6630773,15942906:0,0,0 +(1,17659:6630773,16807986:25952256,513147,134348 +h1,17658:6630773,16807986:983040,0,0 +k1,17658:11434342,16807986:221947 +k1,17658:13223910,16807986:221947 +k1,17658:16420537,16807986:221948 +k1,17658:18838595,16807986:221947 +k1,17658:19711970,16807986:221947 +(1,17658:19711970,16807986:0,414482,115847 +r1,17740:22180507,16807986:2468537,530329,115847 +k1,17658:19711970,16807986:-2468537 +) +(1,17658:19711970,16807986:2468537,414482,115847 +k1,17658:19711970,16807986:3277 +h1,17658:22177230,16807986:0,411205,112570 +) +k1,17658:22402454,16807986:221947 +k1,17658:23155898,16807986:221947 +k1,17658:28390039,16807986:221947 +k1,17658:29298149,16807986:221948 +k1,17658:30908804,16807986:221947 +k1,17658:31816913,16807986:221947 +k1,17658:32583029,16807986:0 +) +(1,17659:6630773,17673066:25952256,513147,134348 +k1,17658:9890971,17673066:285519 +k1,17658:12372600,17673066:285518 +k1,17658:13309546,17673066:285518 +k1,17658:14342831,17673066:285519 +k1,17658:17789151,17673066:285519 +k1,17658:19549884,17673066:285518 +k1,17658:20854488,17673066:285519 +k1,17658:22793479,17673066:285518 +k1,17658:23761883,17673066:285519 +k1,17658:25401375,17673066:285518 +k1,17658:28455135,17673066:285519 +k1,17658:32119689,17673066:285518 +k1,17658:32583029,17673066:0 +) +(1,17659:6630773,18538146:25952256,513147,126483 +k1,17658:8885806,18538146:247010 +k1,17658:9792107,18538146:247009 +k1,17658:13064914,18538146:247010 +k1,17658:14879545,18538146:247010 +k1,17658:18324710,18538146:247009 +k1,17658:19965671,18538146:247010 +k1,17658:22280996,18538146:247009 +k1,17658:23674231,18538146:247010 +(1,17658:23674231,18538146:0,452978,115847 +r1,17740:26846191,18538146:3171960,568825,115847 +k1,17658:23674231,18538146:-3171960 +) +(1,17658:23674231,18538146:3171960,452978,115847 +k1,17658:23674231,18538146:3277 +h1,17658:26842914,18538146:0,411205,112570 +) +k1,17658:27093201,18538146:247010 +k1,17658:28444492,18538146:247009 +k1,17658:31084221,18538146:247010 +k1,17659:32583029,18538146:0 +) +(1,17659:6630773,19403226:25952256,513147,134348 +k1,17658:8405268,19403226:192456 +k1,17658:10793835,19403226:192456 +k1,17658:12253757,19403226:192456 +(1,17658:12253757,19403226:0,414482,115847 +r1,17740:14722294,19403226:2468537,530329,115847 +k1,17658:12253757,19403226:-2468537 +) +(1,17658:12253757,19403226:2468537,414482,115847 +k1,17658:12253757,19403226:3277 +h1,17658:14719017,19403226:0,411205,112570 +) +k1,17658:14914750,19403226:192456 +k1,17658:17570704,19403226:192456 +k1,17658:19637491,19403226:192457 +k1,17658:22855744,19403226:192456 +k1,17658:24039760,19403226:192456 +k1,17658:27509671,19403226:192456 +k1,17658:28893572,19403226:192456 +k1,17658:30190310,19403226:192456 +k1,17658:32583029,19403226:0 +) +(1,17659:6630773,20268306:25952256,513147,134348 +k1,17658:7232361,20268306:245728 +k1,17658:9360938,20268306:245728 +k1,17658:12581345,20268306:245728 +k1,17658:14804949,20268306:245727 +k1,17658:15666715,20268306:245728 +k1,17658:16268303,20268306:245728 +k1,17658:18387050,20268306:245728 +k1,17658:21707072,20268306:245728 +k1,17658:23220266,20268306:245728 +k1,17658:23821854,20268306:245728 +(1,17658:23821854,20268306:0,414482,115847 +r1,17740:26290391,20268306:2468537,530329,115847 +k1,17658:23821854,20268306:-2468537 +) +(1,17658:23821854,20268306:2468537,414482,115847 +k1,17658:23821854,20268306:3277 +h1,17658:26287114,20268306:0,411205,112570 +) +k1,17658:26536118,20268306:245727 +k1,17658:28759723,20268306:245728 +k1,17658:29664743,20268306:245728 +k1,17658:30929556,20268306:245728 +k1,17658:32583029,20268306:0 +) +(1,17659:6630773,21133386:25952256,505283,134348 +k1,17659:32583029,21133386:23886562 +g1,17659:32583029,21133386 +) +v1,17661:6630773,21818241:0,393216,0 +(1,17680:6630773,26205529:25952256,4780504,196608 +g1,17680:6630773,26205529 +g1,17680:6630773,26205529 +g1,17680:6434165,26205529 +(1,17680:6434165,26205529:0,4780504,196608 +r1,17740:32779637,26205529:26345472,4977112,196608 +k1,17680:6434165,26205529:-26345472 +) +(1,17680:6434165,26205529:26345472,4780504,196608 +[1,17680:6630773,26205529:25952256,4583896,0 +(1,17663:6630773,22046072:25952256,424439,106246 +(1,17662:6630773,22046072:0,0,0 +g1,17662:6630773,22046072 +g1,17662:6630773,22046072 +g1,17662:6303093,22046072 +(1,17662:6303093,22046072:0,0,0 +) +g1,17662:6630773,22046072 +) +k1,17663:6630773,22046072:0 +g1,17663:11942036,22046072 +g1,17663:13601806,22046072 +g1,17663:14597668,22046072 +g1,17663:15261576,22046072 +h1,17663:17253300,22046072:0,0,0 +k1,17663:32583029,22046072:15329729 +g1,17663:32583029,22046072 +) +(1,17667:6630773,22861999:25952256,424439,79822 +(1,17665:6630773,22861999:0,0,0 +g1,17665:6630773,22861999 +g1,17665:6630773,22861999 +g1,17665:6303093,22861999 +(1,17665:6303093,22861999:0,0,0 +) +g1,17665:6630773,22861999 +) +g1,17667:7626635,22861999 +g1,17667:8954451,22861999 +g1,17667:12937899,22861999 +g1,17667:15925484,22861999 +h1,17667:17585254,22861999:0,0,0 +k1,17667:32583029,22861999:14997775 +g1,17667:32583029,22861999 +) +(1,17669:6630773,23677926:25952256,424439,106246 +(1,17668:6630773,23677926:0,0,0 +g1,17668:6630773,23677926 +g1,17668:6630773,23677926 +g1,17668:6303093,23677926 +(1,17668:6303093,23677926:0,0,0 +) +g1,17668:6630773,23677926 +) +k1,17669:6630773,23677926:0 +g1,17669:11942036,23677926 +g1,17669:13933760,23677926 +g1,17669:14929622,23677926 +g1,17669:15593530,23677926 +h1,17669:17585254,23677926:0,0,0 +k1,17669:32583029,23677926:14997775 +g1,17669:32583029,23677926 +) +(1,17673:6630773,24493853:25952256,424439,79822 +(1,17671:6630773,24493853:0,0,0 +g1,17671:6630773,24493853 +g1,17671:6630773,24493853 +g1,17671:6303093,24493853 +(1,17671:6303093,24493853:0,0,0 +) +g1,17671:6630773,24493853 +) +g1,17673:7626635,24493853 +g1,17673:8954451,24493853 +g1,17673:12937899,24493853 +g1,17673:15925484,24493853 +h1,17673:17585254,24493853:0,0,0 +k1,17673:32583029,24493853:14997775 +g1,17673:32583029,24493853 +) +(1,17675:6630773,25309780:25952256,424439,112852 +(1,17674:6630773,25309780:0,0,0 +g1,17674:6630773,25309780 +g1,17674:6630773,25309780 +g1,17674:6303093,25309780 +(1,17674:6303093,25309780:0,0,0 +) +g1,17674:6630773,25309780 +) +k1,17675:6630773,25309780:0 +g1,17675:11942036,25309780 +g1,17675:12937898,25309780 +g1,17675:14929622,25309780 +g1,17675:15593530,25309780 +g1,17675:17585254,25309780 +k1,17675:17585254,25309780:0 +h1,17675:20572839,25309780:0,0,0 +k1,17675:32583029,25309780:12010190 +g1,17675:32583029,25309780 +) +(1,17679:6630773,26125707:25952256,424439,79822 +(1,17677:6630773,26125707:0,0,0 +g1,17677:6630773,26125707 +g1,17677:6630773,26125707 +g1,17677:6303093,26125707 +(1,17677:6303093,26125707:0,0,0 +) +g1,17677:6630773,26125707 +) +g1,17679:7626635,26125707 +g1,17679:8954451,26125707 +g1,17679:12937899,26125707 +g1,17679:15925484,26125707 +h1,17679:17253300,26125707:0,0,0 +k1,17679:32583029,26125707:15329729 +g1,17679:32583029,26125707 +) +] +) +g1,17680:32583029,26205529 +g1,17680:6630773,26205529 +g1,17680:6630773,26205529 +g1,17680:32583029,26205529 +g1,17680:32583029,26205529 +) +h1,17680:6630773,26402137:0,0,0 +v1,17684:6630773,27267217:0,393216,0 +(1,17735:6630773,45424809:25952256,18550808,0 +g1,17735:6630773,45424809 +g1,17735:6237557,45424809 +r1,17740:6368629,45424809:131072,18550808,0 +g1,17735:6567858,45424809 +g1,17735:6764466,45424809 +[1,17735:6764466,45424809:25818563,18550808,0 +(1,17685:6764466,27628394:25818563,754393,260573 +(1,17684:6764466,27628394:0,754393,260573 +r1,17740:7856192,27628394:1091726,1014966,260573 +k1,17684:6764466,27628394:-1091726 +) +(1,17684:6764466,27628394:1091726,754393,260573 +) +k1,17684:8149762,27628394:293570 +k1,17684:8477442,27628394:327680 +k1,17684:12369594,27628394:293570 +k1,17684:15688961,27628394:293570 +k1,17684:17376482,27628394:293570 +k1,17684:18479422,27628394:293570 +k1,17684:20198401,27628394:293571 +k1,17684:24419544,27628394:293570 +k1,17684:26723759,27628394:293570 +(1,17684:26723759,27628394:0,414482,115847 +r1,17740:28137160,27628394:1413401,530329,115847 +k1,17684:26723759,27628394:-1413401 +) +(1,17684:26723759,27628394:1413401,414482,115847 +k1,17684:26723759,27628394:3277 +h1,17684:28133883,27628394:0,411205,112570 +) +k1,17684:28430730,27628394:293570 +k1,17684:31014128,27628394:293570 +k1,17684:31773659,27628394:293570 +k1,17684:32583029,27628394:0 +) +(1,17685:6764466,28493474:25818563,513147,134348 +k1,17684:10093139,28493474:256345 +k1,17684:10880981,28493474:256345 +k1,17684:13342613,28493474:256345 +k1,17684:14250386,28493474:256345 +(1,17684:14250386,28493474:0,414482,115847 +r1,17740:14960364,28493474:709978,530329,115847 +k1,17684:14250386,28493474:-709978 +) +(1,17684:14250386,28493474:709978,414482,115847 +k1,17684:14250386,28493474:3277 +h1,17684:14957087,28493474:0,411205,112570 +) +k1,17684:15390379,28493474:256345 +k1,17684:17336242,28493474:256345 +(1,17684:17336242,28493474:0,452978,115847 +r1,17740:19804780,28493474:2468538,568825,115847 +k1,17684:17336242,28493474:-2468538 +) +(1,17684:17336242,28493474:2468538,452978,115847 +g1,17684:18394655,28493474 +g1,17684:19098079,28493474 +h1,17684:19801503,28493474:0,411205,112570 +) +k1,17684:20234795,28493474:256345 +k1,17684:21177302,28493474:256345 +k1,17684:22946873,28493474:256345 +k1,17684:25245320,28493474:256345 +k1,17684:28131625,28493474:256345 +k1,17684:29407055,28493474:256345 +k1,17684:31157621,28493474:256345 +k1,17684:32583029,28493474:0 +) +(1,17685:6764466,29358554:25818563,355205,7863 +k1,17685:32583028,29358554:24219484 +g1,17685:32583028,29358554 +) +v1,17687:6764466,30043409:0,393216,0 +(1,17706:6764466,34430697:25818563,4780504,196608 +g1,17706:6764466,34430697 +g1,17706:6764466,34430697 +g1,17706:6567858,34430697 +(1,17706:6567858,34430697:0,4780504,196608 +r1,17740:32779637,34430697:26211779,4977112,196608 +k1,17706:6567857,34430697:-26211780 +) +(1,17706:6567858,34430697:26211779,4780504,196608 +[1,17706:6764466,34430697:25818563,4583896,0 +(1,17689:6764466,30271240:25818563,424439,106246 +(1,17688:6764466,30271240:0,0,0 +g1,17688:6764466,30271240 +g1,17688:6764466,30271240 +g1,17688:6436786,30271240 +(1,17688:6436786,30271240:0,0,0 +) +g1,17688:6764466,30271240 +) +k1,17689:6764466,30271240:0 +k1,17689:6764466,30271240:0 +h1,17689:14731362,30271240:0,0,0 +k1,17689:32583030,30271240:17851668 +g1,17689:32583030,30271240 +) +(1,17693:6764466,31087167:25818563,424439,79822 +(1,17691:6764466,31087167:0,0,0 +g1,17691:6764466,31087167 +g1,17691:6764466,31087167 +g1,17691:6436786,31087167 +(1,17691:6436786,31087167:0,0,0 +) +g1,17691:6764466,31087167 +) +g1,17693:7760328,31087167 +g1,17693:9088144,31087167 +h1,17693:11079868,31087167:0,0,0 +k1,17693:32583028,31087167:21503160 +g1,17693:32583028,31087167 +) +(1,17695:6764466,31903094:25818563,424439,106246 +(1,17694:6764466,31903094:0,0,0 +g1,17694:6764466,31903094 +g1,17694:6764466,31903094 +g1,17694:6436786,31903094 +(1,17694:6436786,31903094:0,0,0 +) +g1,17694:6764466,31903094 +) +k1,17695:6764466,31903094:0 +g1,17695:14731362,31903094 +g1,17695:15727224,31903094 +g1,17695:16391132,31903094 +h1,17695:17718948,31903094:0,0,0 +k1,17695:32583029,31903094:14864081 +g1,17695:32583029,31903094 +) +(1,17699:6764466,32719021:25818563,424439,79822 +(1,17697:6764466,32719021:0,0,0 +g1,17697:6764466,32719021 +g1,17697:6764466,32719021 +g1,17697:6436786,32719021 +(1,17697:6436786,32719021:0,0,0 +) +g1,17697:6764466,32719021 +) +g1,17699:7760328,32719021 +g1,17699:9088144,32719021 +g1,17699:12407683,32719021 +h1,17699:15063314,32719021:0,0,0 +k1,17699:32583030,32719021:17519716 +g1,17699:32583030,32719021 +) +(1,17701:6764466,33534948:25818563,424439,106246 +(1,17700:6764466,33534948:0,0,0 +g1,17700:6764466,33534948 +g1,17700:6764466,33534948 +g1,17700:6436786,33534948 +(1,17700:6436786,33534948:0,0,0 +) +g1,17700:6764466,33534948 +) +k1,17701:6764466,33534948:0 +g1,17701:12739638,33534948 +g1,17701:13403546,33534948 +h1,17701:14731362,33534948:0,0,0 +k1,17701:32583030,33534948:17851668 +g1,17701:32583030,33534948 +) +(1,17705:6764466,34350875:25818563,424439,79822 +(1,17703:6764466,34350875:0,0,0 +g1,17703:6764466,34350875 +g1,17703:6764466,34350875 +g1,17703:6436786,34350875 +(1,17703:6436786,34350875:0,0,0 +) +g1,17703:6764466,34350875 +) +g1,17705:7760328,34350875 +g1,17705:9088144,34350875 +h1,17705:11079868,34350875:0,0,0 +k1,17705:32583028,34350875:21503160 +g1,17705:32583028,34350875 +) +] +) +g1,17706:32583029,34430697 +g1,17706:6764466,34430697 +g1,17706:6764466,34430697 +g1,17706:32583029,34430697 +g1,17706:32583029,34430697 +) +h1,17706:6764466,34627305:0,0,0 +(1,17710:6764466,35492385:25818563,513147,134348 +h1,17709:6764466,35492385:983040,0,0 +k1,17709:11929813,35492385:253424 +k1,17709:13750858,35492385:253424 +(1,17709:13750858,35492385:0,414482,115847 +r1,17740:15164259,35492385:1413401,530329,115847 +k1,17709:13750858,35492385:-1413401 +) +(1,17709:13750858,35492385:1413401,414482,115847 +k1,17709:13750858,35492385:3277 +h1,17709:15160982,35492385:0,411205,112570 +) +k1,17709:15417682,35492385:253423 +k1,17709:16938572,35492385:253424 +(1,17709:16938572,35492385:0,414482,115847 +r1,17740:19407109,35492385:2468537,530329,115847 +k1,17709:16938572,35492385:-2468537 +) +(1,17709:16938572,35492385:2468537,414482,115847 +k1,17709:16938572,35492385:3277 +h1,17709:19403832,35492385:0,411205,112570 +) +k1,17709:19660533,35492385:253424 +k1,17709:21018239,35492385:253424 +k1,17709:22551581,35492385:253424 +k1,17709:24158979,35492385:253424 +k1,17709:28081107,35492385:253423 +k1,17709:30681375,35492385:253424 +k1,17709:31412556,35492385:253424 +k1,17709:32583029,35492385:0 +) +(1,17710:6764466,36357465:25818563,513147,102891 +k1,17709:8118221,36357465:235711 +k1,17709:9373017,36357465:235711 +k1,17709:12795088,36357465:235711 +k1,17709:15072901,36357465:235711 +k1,17709:16327697,36357465:235711 +k1,17709:19342136,36357465:235712 +k1,17709:21258190,36357465:235711 +k1,17709:22626363,36357465:235711 +k1,17709:23609840,36357465:235711 +k1,17709:24864636,36357465:235711 +k1,17709:26525755,36357465:235711 +k1,17709:29947826,36357465:235711 +k1,17709:32583029,36357465:0 +) +(1,17710:6764466,37222545:25818563,505283,134348 +g1,17709:7982780,37222545 +g1,17709:9607417,37222545 +g1,17709:11988340,37222545 +g1,17709:12803607,37222545 +g1,17709:14461667,37222545 +g1,17709:17737156,37222545 +g1,17709:19127830,37222545 +k1,17710:32583029,37222545:11937385 +g1,17710:32583029,37222545 +) +v1,17712:6764466,37907400:0,393216,0 +(1,17719:6764466,38961066:25818563,1446882,196608 +g1,17719:6764466,38961066 +g1,17719:6764466,38961066 +g1,17719:6567858,38961066 +(1,17719:6567858,38961066:0,1446882,196608 +r1,17740:32779637,38961066:26211779,1643490,196608 +k1,17719:6567857,38961066:-26211780 +) +(1,17719:6567858,38961066:26211779,1446882,196608 +[1,17719:6764466,38961066:25818563,1250274,0 +(1,17714:6764466,38135231:25818563,424439,106246 +(1,17713:6764466,38135231:0,0,0 +g1,17713:6764466,38135231 +g1,17713:6764466,38135231 +g1,17713:6436786,38135231 +(1,17713:6436786,38135231:0,0,0 +) +g1,17713:6764466,38135231 +) +k1,17714:6764466,38135231:0 +g1,17714:16723085,38135231 +g1,17714:18714809,38135231 +g1,17714:19378717,38135231 +g1,17714:20706533,38135231 +g1,17714:21370441,38135231 +g1,17714:27345613,38135231 +g1,17714:28341475,38135231 +g1,17714:29005383,38135231 +h1,17714:30001245,38135231:0,0,0 +k1,17714:32583029,38135231:2581784 +g1,17714:32583029,38135231 +) +(1,17718:6764466,38951158:25818563,431045,9908 +(1,17716:6764466,38951158:0,0,0 +g1,17716:6764466,38951158 +g1,17716:6764466,38951158 +g1,17716:6436786,38951158 +(1,17716:6436786,38951158:0,0,0 +) +g1,17716:6764466,38951158 +) +g1,17718:7760328,38951158 +g1,17718:9420098,38951158 +g1,17718:13071591,38951158 +g1,17718:14067453,38951158 +g1,17718:14731361,38951158 +h1,17718:16391131,38951158:0,0,0 +k1,17718:32583029,38951158:16191898 +g1,17718:32583029,38951158 +) +] +) +g1,17719:32583029,38961066 +g1,17719:6764466,38961066 +g1,17719:6764466,38961066 +g1,17719:32583029,38961066 +g1,17719:32583029,38961066 +) +h1,17719:6764466,39157674:0,0,0 +(1,17723:6764466,40022754:25818563,505283,126483 +h1,17722:6764466,40022754:983040,0,0 +k1,17722:9086120,40022754:141927 +k1,17722:13622236,40022754:141927 +k1,17722:16162781,40022754:141927 +k1,17722:17589213,40022754:141926 +k1,17722:18750225,40022754:141927 +k1,17722:20572495,40022754:141927 +k1,17722:21330460,40022754:141927 +k1,17722:22491472,40022754:141927 +(1,17722:22491472,40022754:0,414482,115847 +r1,17740:23904873,40022754:1413401,530329,115847 +k1,17722:22491472,40022754:-1413401 +) +(1,17722:22491472,40022754:1413401,414482,115847 +k1,17722:22491472,40022754:3277 +h1,17722:23901596,40022754:0,411205,112570 +) +k1,17722:24046800,40022754:141927 +k1,17722:24720223,40022754:141926 +k1,17722:28059652,40022754:141927 +k1,17722:28817617,40022754:141927 +k1,17722:30494397,40022754:141927 +k1,17723:32583029,40022754:0 +) +(1,17723:6764466,40887834:25818563,513147,134348 +k1,17722:9636311,40887834:230744 +k1,17722:10518483,40887834:230744 +k1,17722:13487321,40887834:230744 +k1,17722:15252918,40887834:230744 +k1,17722:16680349,40887834:230744 +k1,17722:18336501,40887834:230744 +k1,17722:20113895,40887834:230744 +k1,17722:23530999,40887834:230744 +k1,17722:24377781,40887834:230744 +k1,17722:25969676,40887834:230712 +k1,17722:26813182,40887834:230744 +k1,17722:29947826,40887834:230744 +k1,17722:32583029,40887834:0 +) +(1,17723:6764466,41752914:25818563,513147,134348 +k1,17722:8439314,41752914:249440 +k1,17722:10565705,41752914:249440 +k1,17722:11346642,41752914:249440 +k1,17722:12662353,41752914:249440 +k1,17722:14679299,41752914:249440 +k1,17722:16196205,41752914:249440 +k1,17722:19123447,41752914:249441 +k1,17722:21738737,41752914:249440 +k1,17722:23007262,41752914:249440 +k1,17722:24682110,41752914:249440 +k1,17722:26478200,41752914:249440 +k1,17722:28240866,41752914:249440 +k1,17722:31966991,41752914:249440 +k1,17723:32583029,41752914:0 +) +(1,17723:6764466,42617994:25818563,513147,126483 +(1,17722:6764466,42617994:0,414482,115847 +r1,17740:9233003,42617994:2468537,530329,115847 +k1,17722:6764466,42617994:-2468537 +) +(1,17722:6764466,42617994:2468537,414482,115847 +k1,17722:6764466,42617994:3277 +h1,17722:9229726,42617994:0,411205,112570 +) +k1,17722:9484951,42617994:251948 +k1,17722:11210148,42617994:251948 +k1,17722:12481182,42617994:251949 +k1,17722:15583291,42617994:251948 +k1,17722:17972368,42617994:251948 +k1,17722:19370541,42617994:251948 +k1,17722:21319216,42617994:251948 +k1,17722:23286897,42617994:251948 +k1,17722:23996943,42617994:251949 +k1,17722:27644967,42617994:251948 +k1,17722:28548343,42617994:251948 +k1,17722:29615559,42617994:251948 +k1,17722:32583029,42617994:0 +) +(1,17723:6764466,43483074:25818563,505283,134348 +g1,17722:9115897,43483074 +g1,17722:11013164,43483074 +g1,17722:13017910,43483074 +g1,17722:17024125,43483074 +g1,17722:20143638,43483074 +g1,17722:22098577,43483074 +g1,17722:23489251,43483074 +g1,17722:24371365,43483074 +k1,17723:32583029,43483074:6448091 +g1,17723:32583029,43483074 +) +v1,17725:6764466,44167929:0,393216,0 +(1,17732:6764466,45228201:25818563,1453488,196608 +g1,17732:6764466,45228201 +g1,17732:6764466,45228201 +g1,17732:6567858,45228201 +(1,17732:6567858,45228201:0,1453488,196608 +r1,17740:32779637,45228201:26211779,1650096,196608 +k1,17732:6567857,45228201:-26211780 +) +(1,17732:6567858,45228201:26211779,1453488,196608 +[1,17732:6764466,45228201:25818563,1256880,0 +(1,17727:6764466,44402366:25818563,431045,106246 +(1,17726:6764466,44402366:0,0,0 +g1,17726:6764466,44402366 +g1,17726:6764466,44402366 +g1,17726:6436786,44402366 +(1,17726:6436786,44402366:0,0,0 +) +g1,17726:6764466,44402366 +) +k1,17727:6764466,44402366:0 +k1,17727:19950405,44402366:239735 +k1,17727:21849909,44402366:239734 +k1,17727:22421598,44402366:239735 +k1,17727:23657194,44402366:239734 +k1,17727:24228883,44402366:239735 +k1,17727:30111836,44402366:239735 +k1,17727:31015478,44402366:239734 +k1,17727:31587167,44402366:239735 +h1,17727:32583029,44402366:0,0,0 +k1,17727:32583029,44402366:0 +k1,17727:32583029,44402366:0 +) +(1,17731:6764466,45218293:25818563,431045,9908 +(1,17729:6764466,45218293:0,0,0 +g1,17729:6764466,45218293 +g1,17729:6764466,45218293 +g1,17729:6436786,45218293 +(1,17729:6436786,45218293:0,0,0 +) +g1,17729:6764466,45218293 +) +g1,17731:7760328,45218293 +g1,17731:9420098,45218293 +g1,17731:13071591,45218293 +g1,17731:14067453,45218293 +g1,17731:14731361,45218293 +h1,17731:16059177,45218293:0,0,0 +k1,17731:32583029,45218293:16523852 +g1,17731:32583029,45218293 +) +] +) +g1,17732:32583029,45228201 +g1,17732:6764466,45228201 +g1,17732:6764466,45228201 +g1,17732:32583029,45228201 +g1,17732:32583029,45228201 +) +h1,17732:6764466,45424809:0,0,0 +] +g1,17735:32583029,45424809 +) +h1,17735:6630773,45424809:0,0,0 +] +(1,17740:32583029,45706769:0,0,0 +g1,17740:32583029,45706769 +) +) +] +(1,17740:6630773,47279633:25952256,0,0 +h1,17740:6630773,47279633:25952256,0,0 +) +] +(1,17740:4262630,4025873:0,0,0 +[1,17740:-473656,4025873:0,0,0 +(1,17740:-473656,-710413:0,0,0 +(1,17740:-473656,-710413:0,0,0 +g1,17740:-473656,-710413 +) +g1,17740:-473656,-710413 ) ] ) ] !29123 -}284 -Input:2940:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2941:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2942:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2943:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}285 Input:2944:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2945:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{285 -[1,17848:4262630,47279633:28320399,43253760,0 -(1,17848:4262630,4025873:0,0,0 -[1,17848:-473656,4025873:0,0,0 -(1,17848:-473656,-710413:0,0,0 -(1,17848:-473656,-644877:0,0,0 -k1,17848:-473656,-644877:-65536 +{286 +[1,17846:4262630,47279633:28320399,43253760,0 +(1,17846:4262630,4025873:0,0,0 +[1,17846:-473656,4025873:0,0,0 +(1,17846:-473656,-710413:0,0,0 +(1,17846:-473656,-644877:0,0,0 +k1,17846:-473656,-644877:-65536 ) -(1,17848:-473656,4736287:0,0,0 -k1,17848:-473656,4736287:5209943 +(1,17846:-473656,4736287:0,0,0 +k1,17846:-473656,4736287:5209943 ) -g1,17848:-473656,-710413 +g1,17846:-473656,-710413 ) ] ) -[1,17848:6630773,47279633:25952256,43253760,0 -[1,17848:6630773,4812305:25952256,786432,0 -(1,17848:6630773,4812305:25952256,505283,134348 -(1,17848:6630773,4812305:25952256,505283,134348 -g1,17848:3078558,4812305 -[1,17848:3078558,4812305:0,0,0 -(1,17848:3078558,2439708:0,1703936,0 -k1,17848:1358238,2439708:-1720320 -(1,16000:1358238,2439708:1720320,1703936,0 -(1,16000:1358238,2439708:1179648,16384,0 -r1,17848:2537886,2439708:1179648,16384,0 +[1,17846:6630773,47279633:25952256,43253760,0 +[1,17846:6630773,4812305:25952256,786432,0 +(1,17846:6630773,4812305:25952256,505283,134348 +(1,17846:6630773,4812305:25952256,505283,134348 +g1,17846:3078558,4812305 +[1,17846:3078558,4812305:0,0,0 +(1,17846:3078558,2439708:0,1703936,0 +k1,17846:1358238,2439708:-1720320 +(1,15998:1358238,2439708:1720320,1703936,0 +(1,15998:1358238,2439708:1179648,16384,0 +r1,17846:2537886,2439708:1179648,16384,0 ) -g1,16000:3062174,2439708 -(1,16000:3062174,2439708:16384,1703936,0 -[1,16000:3062174,2439708:25952256,1703936,0 -(1,16000:3062174,1915420:25952256,1179648,0 -(1,16000:3062174,1915420:16384,1179648,0 -r1,17848:3078558,1915420:16384,1179648,0 +g1,15998:3062174,2439708 +(1,15998:3062174,2439708:16384,1703936,0 +[1,15998:3062174,2439708:25952256,1703936,0 +(1,15998:3062174,1915420:25952256,1179648,0 +(1,15998:3062174,1915420:16384,1179648,0 +r1,17846:3078558,1915420:16384,1179648,0 ) -k1,16000:29014430,1915420:25935872 -g1,16000:29014430,1915420 +k1,15998:29014430,1915420:25935872 +g1,15998:29014430,1915420 ) ] ) ) ) ] -[1,17848:3078558,4812305:0,0,0 -(1,17848:3078558,2439708:0,1703936,0 -g1,17848:29030814,2439708 -g1,17848:36135244,2439708 -(1,16000:36135244,2439708:1720320,1703936,0 -(1,16000:36135244,2439708:16384,1703936,0 -[1,16000:36135244,2439708:25952256,1703936,0 -(1,16000:36135244,1915420:25952256,1179648,0 -(1,16000:36135244,1915420:16384,1179648,0 -r1,17848:36151628,1915420:16384,1179648,0 +[1,17846:3078558,4812305:0,0,0 +(1,17846:3078558,2439708:0,1703936,0 +g1,17846:29030814,2439708 +g1,17846:36135244,2439708 +(1,15998:36135244,2439708:1720320,1703936,0 +(1,15998:36135244,2439708:16384,1703936,0 +[1,15998:36135244,2439708:25952256,1703936,0 +(1,15998:36135244,1915420:25952256,1179648,0 +(1,15998:36135244,1915420:16384,1179648,0 +r1,17846:36151628,1915420:16384,1179648,0 ) -k1,16000:62087500,1915420:25935872 -g1,16000:62087500,1915420 +k1,15998:62087500,1915420:25935872 +g1,15998:62087500,1915420 ) ] ) -g1,16000:36675916,2439708 -(1,16000:36675916,2439708:1179648,16384,0 -r1,17848:37855564,2439708:1179648,16384,0 +g1,15998:36675916,2439708 +(1,15998:36675916,2439708:1179648,16384,0 +r1,17846:37855564,2439708:1179648,16384,0 ) ) -k1,17848:3078556,2439708:-34777008 +k1,17846:3078556,2439708:-34777008 ) ] -[1,17848:3078558,4812305:0,0,0 -(1,17848:3078558,49800853:0,16384,2228224 -k1,17848:1358238,49800853:-1720320 -(1,16000:1358238,49800853:1720320,16384,2228224 -(1,16000:1358238,49800853:1179648,16384,0 -r1,17848:2537886,49800853:1179648,16384,0 +[1,17846:3078558,4812305:0,0,0 +(1,17846:3078558,49800853:0,16384,2228224 +k1,17846:1358238,49800853:-1720320 +(1,15998:1358238,49800853:1720320,16384,2228224 +(1,15998:1358238,49800853:1179648,16384,0 +r1,17846:2537886,49800853:1179648,16384,0 ) -g1,16000:3062174,49800853 -(1,16000:3062174,52029077:16384,1703936,0 -[1,16000:3062174,52029077:25952256,1703936,0 -(1,16000:3062174,51504789:25952256,1179648,0 -(1,16000:3062174,51504789:16384,1179648,0 -r1,17848:3078558,51504789:16384,1179648,0 +g1,15998:3062174,49800853 +(1,15998:3062174,52029077:16384,1703936,0 +[1,15998:3062174,52029077:25952256,1703936,0 +(1,15998:3062174,51504789:25952256,1179648,0 +(1,15998:3062174,51504789:16384,1179648,0 +r1,17846:3078558,51504789:16384,1179648,0 ) -k1,16000:29014430,51504789:25935872 -g1,16000:29014430,51504789 +k1,15998:29014430,51504789:25935872 +g1,15998:29014430,51504789 ) ] ) ) ) ] -[1,17848:3078558,4812305:0,0,0 -(1,17848:3078558,49800853:0,16384,2228224 -g1,17848:29030814,49800853 -g1,17848:36135244,49800853 -(1,16000:36135244,49800853:1720320,16384,2228224 -(1,16000:36135244,52029077:16384,1703936,0 -[1,16000:36135244,52029077:25952256,1703936,0 -(1,16000:36135244,51504789:25952256,1179648,0 -(1,16000:36135244,51504789:16384,1179648,0 -r1,17848:36151628,51504789:16384,1179648,0 +[1,17846:3078558,4812305:0,0,0 +(1,17846:3078558,49800853:0,16384,2228224 +g1,17846:29030814,49800853 +g1,17846:36135244,49800853 +(1,15998:36135244,49800853:1720320,16384,2228224 +(1,15998:36135244,52029077:16384,1703936,0 +[1,15998:36135244,52029077:25952256,1703936,0 +(1,15998:36135244,51504789:25952256,1179648,0 +(1,15998:36135244,51504789:16384,1179648,0 +r1,17846:36151628,51504789:16384,1179648,0 ) -k1,16000:62087500,51504789:25935872 -g1,16000:62087500,51504789 +k1,15998:62087500,51504789:25935872 +g1,15998:62087500,51504789 ) ] ) -g1,16000:36675916,49800853 -(1,16000:36675916,49800853:1179648,16384,0 -r1,17848:37855564,49800853:1179648,16384,0 +g1,15998:36675916,49800853 +(1,15998:36675916,49800853:1179648,16384,0 +r1,17846:37855564,49800853:1179648,16384,0 ) ) -k1,17848:3078556,49800853:-34777008 +k1,17846:3078556,49800853:-34777008 ) ] -g1,17848:6630773,4812305 -k1,17848:23347041,4812305:15520891 -g1,17848:23960458,4812305 -g1,17848:27572802,4812305 -g1,17848:29306229,4812305 +g1,17846:6630773,4812305 +k1,17846:23347041,4812305:15520891 +g1,17846:23960458,4812305 +g1,17846:27572802,4812305 +g1,17846:29306229,4812305 ) ) ] -[1,17848:6630773,45706769:25952256,40108032,0 -(1,17848:6630773,45706769:25952256,40108032,0 -(1,17848:6630773,45706769:0,0,0 -g1,17848:6630773,45706769 +[1,17846:6630773,45706769:25952256,40108032,0 +(1,17846:6630773,45706769:25952256,40108032,0 +(1,17846:6630773,45706769:0,0,0 +g1,17846:6630773,45706769 ) -[1,17848:6630773,45706769:25952256,40108032,0 -(1,17740:6630773,6254097:25952256,513147,7863 -h1,17739:6630773,6254097:983040,0,0 -g1,17739:8300630,6254097 -g1,17739:11686219,6254097 -g1,17739:14520651,6254097 -g1,17739:15371308,6254097 -g1,17739:18131684,6254097 -g1,17739:18946951,6254097 -g1,17739:20571588,6254097 -g1,17739:23111763,6254097 -g1,17739:23666852,6254097 -k1,17740:32583029,6254097:6116479 -g1,17740:32583029,6254097 -) -v1,17742:6630773,6938952:0,393216,0 -(1,17749:6630773,8088956:25952256,1543220,196608 -g1,17749:6630773,8088956 -g1,17749:6630773,8088956 -g1,17749:6434165,8088956 -(1,17749:6434165,8088956:0,1543220,196608 -r1,17848:32779637,8088956:26345472,1739828,196608 -k1,17749:6434165,8088956:-26345472 -) -(1,17749:6434165,8088956:26345472,1543220,196608 -[1,17749:6630773,8088956:25952256,1346612,0 -(1,17744:6630773,7166783:25952256,424439,106246 -(1,17743:6630773,7166783:0,0,0 -g1,17743:6630773,7166783 -g1,17743:6630773,7166783 -g1,17743:6303093,7166783 -(1,17743:6303093,7166783:0,0,0 -) -g1,17743:6630773,7166783 -) -k1,17744:6630773,7166783:0 -g1,17744:13269853,7166783 -g1,17744:16921346,7166783 -g1,17744:17585254,7166783 -g1,17744:24224334,7166783 -h1,17744:27543873,7166783:0,0,0 -k1,17744:32583029,7166783:5039156 -g1,17744:32583029,7166783 -) -(1,17748:6630773,7982710:25952256,431045,106246 -(1,17746:6630773,7982710:0,0,0 -g1,17746:6630773,7982710 -g1,17746:6630773,7982710 -g1,17746:6303093,7982710 -(1,17746:6303093,7982710:0,0,0 -) -g1,17746:6630773,7982710 -) -g1,17748:7626635,7982710 -g1,17748:9286405,7982710 -g1,17748:12937898,7982710 -g1,17748:13933760,7982710 -g1,17748:15925484,7982710 -h1,17748:17253300,7982710:0,0,0 -k1,17748:32583029,7982710:15329729 -g1,17748:32583029,7982710 -) -] -) -g1,17749:32583029,8088956 -g1,17749:6630773,8088956 -g1,17749:6630773,8088956 -g1,17749:32583029,8088956 -g1,17749:32583029,8088956 -) -h1,17749:6630773,8285564:0,0,0 -(1,17753:6630773,9150644:25952256,513147,126483 -h1,17752:6630773,9150644:983040,0,0 -k1,17752:10968260,9150644:234278 -k1,17752:12596490,9150644:234279 -k1,17752:14899084,9150644:234278 -k1,17752:15749400,9150644:234278 -k1,17752:18047407,9150644:234278 -k1,17752:19427911,9150644:234279 -(1,17752:19427911,9150644:0,452978,115847 -r1,17848:21896448,9150644:2468537,568825,115847 -k1,17752:19427911,9150644:-2468537 -) -(1,17752:19427911,9150644:2468537,452978,115847 -k1,17752:19427911,9150644:3277 -h1,17752:21893171,9150644:0,411205,112570 -) -k1,17752:22130726,9150644:234278 -k1,17752:23020364,9150644:234278 -(1,17752:23020364,9150644:0,452978,115847 -r1,17848:26192324,9150644:3171960,568825,115847 -k1,17752:23020364,9150644:-3171960 -) -(1,17752:23020364,9150644:3171960,452978,115847 -k1,17752:23020364,9150644:3277 -h1,17752:26189047,9150644:0,411205,112570 -) -k1,17752:26426602,9150644:234278 -k1,17752:27652441,9150644:234279 -k1,17752:31923737,9150644:234278 -k1,17752:32583029,9150644:0 -) -(1,17753:6630773,10015724:25952256,513147,102891 -g1,17752:10081243,10015724 -g1,17752:11471917,10015724 -g1,17752:12775428,10015724 -g1,17752:13722423,10015724 -g1,17752:15887077,10015724 -g1,17752:17277751,10015724 -g1,17752:20882231,10015724 -g1,17752:22649081,10015724 -k1,17753:32583029,10015724:8125810 -g1,17753:32583029,10015724 -) -v1,17755:6630773,10700579:0,393216,0 -(1,17774:6630773,15087867:25952256,4780504,196608 -g1,17774:6630773,15087867 -g1,17774:6630773,15087867 -g1,17774:6434165,15087867 -(1,17774:6434165,15087867:0,4780504,196608 -r1,17848:32779637,15087867:26345472,4977112,196608 -k1,17774:6434165,15087867:-26345472 -) -(1,17774:6434165,15087867:26345472,4780504,196608 -[1,17774:6630773,15087867:25952256,4583896,0 -(1,17757:6630773,10928410:25952256,424439,106246 -(1,17756:6630773,10928410:0,0,0 -g1,17756:6630773,10928410 -g1,17756:6630773,10928410 -g1,17756:6303093,10928410 -(1,17756:6303093,10928410:0,0,0 -) -g1,17756:6630773,10928410 -) -k1,17757:6630773,10928410:0 -g1,17757:13269853,10928410 -g1,17757:16921346,10928410 -g1,17757:17585254,10928410 -g1,17757:21236748,10928410 -g1,17757:21900656,10928410 -k1,17757:21900656,10928410:0 -h1,17757:25220196,10928410:0,0,0 -k1,17757:32583029,10928410:7362833 -g1,17757:32583029,10928410 -) -(1,17761:6630773,11744337:25952256,424439,79822 -(1,17759:6630773,11744337:0,0,0 -g1,17759:6630773,11744337 -g1,17759:6630773,11744337 -g1,17759:6303093,11744337 -(1,17759:6303093,11744337:0,0,0 -) -g1,17759:6630773,11744337 -) -g1,17761:7626635,11744337 -g1,17761:8954451,11744337 -g1,17761:12937899,11744337 -g1,17761:15925484,11744337 -h1,17761:17253300,11744337:0,0,0 -k1,17761:32583029,11744337:15329729 -g1,17761:32583029,11744337 -) -(1,17763:6630773,12560264:25952256,424439,106246 -(1,17762:6630773,12560264:0,0,0 -g1,17762:6630773,12560264 -g1,17762:6630773,12560264 -g1,17762:6303093,12560264 -(1,17762:6303093,12560264:0,0,0 -) -g1,17762:6630773,12560264 -) -k1,17763:6630773,12560264:0 -g1,17763:13269853,12560264 -g1,17763:16921346,12560264 -g1,17763:17585254,12560264 -g1,17763:24224334,12560264 -h1,17763:27543873,12560264:0,0,0 -k1,17763:32583029,12560264:5039156 -g1,17763:32583029,12560264 -) -(1,17767:6630773,13376191:25952256,431045,106246 -(1,17765:6630773,13376191:0,0,0 -g1,17765:6630773,13376191 -g1,17765:6630773,13376191 -g1,17765:6303093,13376191 -(1,17765:6303093,13376191:0,0,0 -) -g1,17765:6630773,13376191 -) -g1,17767:7626635,13376191 -g1,17767:9286405,13376191 -g1,17767:12937898,13376191 -g1,17767:13933760,13376191 -g1,17767:15925484,13376191 -h1,17767:17253300,13376191:0,0,0 -k1,17767:32583029,13376191:15329729 -g1,17767:32583029,13376191 -) -(1,17769:6630773,14192118:25952256,424439,106246 -(1,17768:6630773,14192118:0,0,0 -g1,17768:6630773,14192118 -g1,17768:6630773,14192118 -g1,17768:6303093,14192118 -(1,17768:6303093,14192118:0,0,0 -) -g1,17768:6630773,14192118 -) -k1,17769:6630773,14192118:0 -g1,17769:12605945,14192118 -g1,17769:13269853,14192118 -k1,17769:13269853,14192118:0 -h1,17769:17253301,14192118:0,0,0 -k1,17769:32583029,14192118:15329728 -g1,17769:32583029,14192118 -) -(1,17773:6630773,15008045:25952256,424439,79822 -(1,17771:6630773,15008045:0,0,0 -g1,17771:6630773,15008045 -g1,17771:6630773,15008045 -g1,17771:6303093,15008045 -(1,17771:6303093,15008045:0,0,0 -) -g1,17771:6630773,15008045 -) -g1,17773:7626635,15008045 -g1,17773:8954451,15008045 -g1,17773:12937899,15008045 -g1,17773:15925484,15008045 -h1,17773:17253300,15008045:0,0,0 -k1,17773:32583029,15008045:15329729 -g1,17773:32583029,15008045 -) -] -) -g1,17774:32583029,15087867 -g1,17774:6630773,15087867 -g1,17774:6630773,15087867 -g1,17774:32583029,15087867 -g1,17774:32583029,15087867 -) -h1,17774:6630773,15284475:0,0,0 -(1,17778:6630773,16149555:25952256,505283,134348 -h1,17777:6630773,16149555:983040,0,0 -k1,17777:10976772,16149555:242790 -k1,17777:12613514,16149555:242791 -k1,17777:14924620,16149555:242790 -k1,17777:15783448,16149555:242790 -k1,17777:18784648,16149555:242790 -k1,17777:20173664,16149555:242791 -(1,17777:20173664,16149555:0,452978,115847 -r1,17848:22290489,16149555:2116825,568825,115847 -k1,17777:20173664,16149555:-2116825 -) -(1,17777:20173664,16149555:2116825,452978,115847 -k1,17777:20173664,16149555:3277 -h1,17777:22287212,16149555:0,411205,112570 -) -k1,17777:22533279,16149555:242790 -k1,17777:23431429,16149555:242790 -(1,17777:23431429,16149555:0,452978,115847 -r1,17848:26251678,16149555:2820249,568825,115847 -k1,17777:23431429,16149555:-2820249 -) -(1,17777:23431429,16149555:2820249,452978,115847 -k1,17777:23431429,16149555:3277 -h1,17777:26248401,16149555:0,411205,112570 -) -k1,17777:26494468,16149555:242790 -k1,17777:27728819,16149555:242791 -k1,17777:29484835,16149555:242790 -k1,17777:30379053,16149555:242790 -k1,17777:32583029,16149555:0 -) -(1,17778:6630773,17014635:25952256,513147,126483 -g1,17777:8021447,17014635 -g1,17777:9155219,17014635 -g1,17777:10373533,17014635 -g1,17777:13012667,17014635 -g1,17777:17139469,17014635 -g1,17777:17997990,17014635 -g1,17777:18967922,17014635 -g1,17777:21397997,17014635 -g1,17777:22213264,17014635 -k1,17778:32583029,17014635:8891929 -g1,17778:32583029,17014635 -) -v1,17780:6630773,17699490:0,393216,0 -(1,17809:6630773,25245838:25952256,7939564,196608 -g1,17809:6630773,25245838 -g1,17809:6630773,25245838 -g1,17809:6434165,25245838 -(1,17809:6434165,25245838:0,7939564,196608 -r1,17848:32779637,25245838:26345472,8136172,196608 -k1,17809:6434165,25245838:-26345472 -) -(1,17809:6434165,25245838:26345472,7939564,196608 -[1,17809:6630773,25245838:25952256,7742956,0 -(1,17782:6630773,17927321:25952256,424439,106246 -(1,17781:6630773,17927321:0,0,0 -g1,17781:6630773,17927321 -g1,17781:6630773,17927321 -g1,17781:6303093,17927321 -(1,17781:6303093,17927321:0,0,0 -) -g1,17781:6630773,17927321 -) -g1,17782:9286405,17927321 -g1,17782:10282267,17927321 -k1,17782:10282267,17927321:0 -h1,17782:11942037,17927321:0,0,0 -k1,17782:32583029,17927321:20640992 -g1,17782:32583029,17927321 -) -(1,17783:6630773,18612176:25952256,424439,106246 -h1,17783:6630773,18612176:0,0,0 -h1,17783:8954451,18612176:0,0,0 -k1,17783:32583029,18612176:23628578 -g1,17783:32583029,18612176 -) -(1,17787:6630773,19428103:25952256,424439,79822 -(1,17785:6630773,19428103:0,0,0 -g1,17785:6630773,19428103 -g1,17785:6630773,19428103 -g1,17785:6303093,19428103 -(1,17785:6303093,19428103:0,0,0 -) -g1,17785:6630773,19428103 -) -g1,17787:7626635,19428103 -g1,17787:8954451,19428103 -g1,17787:12937899,19428103 -g1,17787:15925484,19428103 -h1,17787:17253300,19428103:0,0,0 -k1,17787:32583029,19428103:15329729 -g1,17787:32583029,19428103 -) -(1,17789:6630773,20244030:25952256,424439,106246 -(1,17788:6630773,20244030:0,0,0 -g1,17788:6630773,20244030 -g1,17788:6630773,20244030 -g1,17788:6303093,20244030 -(1,17788:6303093,20244030:0,0,0 -) -g1,17788:6630773,20244030 -) -k1,17789:6630773,20244030:0 -h1,17789:10946174,20244030:0,0,0 -k1,17789:32583030,20244030:21636856 -g1,17789:32583030,20244030 -) -(1,17793:6630773,21059957:25952256,424439,79822 -(1,17791:6630773,21059957:0,0,0 -g1,17791:6630773,21059957 -g1,17791:6630773,21059957 -g1,17791:6303093,21059957 -(1,17791:6303093,21059957:0,0,0 -) -g1,17791:6630773,21059957 -) -g1,17793:7626635,21059957 -g1,17793:8954451,21059957 -h1,17793:10282267,21059957:0,0,0 -k1,17793:32583029,21059957:22300762 -g1,17793:32583029,21059957 -) -(1,17795:6630773,21875884:25952256,424439,106246 -(1,17794:6630773,21875884:0,0,0 -g1,17794:6630773,21875884 -g1,17794:6630773,21875884 -g1,17794:6303093,21875884 -(1,17794:6303093,21875884:0,0,0 -) -g1,17794:6630773,21875884 -) -k1,17795:6630773,21875884:0 -h1,17795:10946174,21875884:0,0,0 -k1,17795:32583030,21875884:21636856 -g1,17795:32583030,21875884 -) -(1,17799:6630773,22691811:25952256,424439,79822 -(1,17797:6630773,22691811:0,0,0 -g1,17797:6630773,22691811 -g1,17797:6630773,22691811 -g1,17797:6303093,22691811 -(1,17797:6303093,22691811:0,0,0 -) -g1,17797:6630773,22691811 -) -g1,17799:7626635,22691811 -g1,17799:8954451,22691811 -h1,17799:9618359,22691811:0,0,0 -k1,17799:32583029,22691811:22964670 -g1,17799:32583029,22691811 -) -(1,17801:6630773,23507738:25952256,424439,106246 -(1,17800:6630773,23507738:0,0,0 -g1,17800:6630773,23507738 -g1,17800:6630773,23507738 -g1,17800:6303093,23507738 -(1,17800:6303093,23507738:0,0,0 -) -g1,17800:6630773,23507738 -) -k1,17801:6630773,23507738:0 -h1,17801:11610082,23507738:0,0,0 -k1,17801:32583030,23507738:20972948 -g1,17801:32583030,23507738 -) -(1,17805:6630773,24323665:25952256,424439,79822 -(1,17803:6630773,24323665:0,0,0 -g1,17803:6630773,24323665 -g1,17803:6630773,24323665 -g1,17803:6303093,24323665 -(1,17803:6303093,24323665:0,0,0 -) -g1,17803:6630773,24323665 -) -g1,17805:7626635,24323665 -g1,17805:8954451,24323665 -h1,17805:11610082,24323665:0,0,0 -k1,17805:32583030,24323665:20972948 -g1,17805:32583030,24323665 -) -(1,17807:6630773,25139592:25952256,424439,106246 -(1,17806:6630773,25139592:0,0,0 -g1,17806:6630773,25139592 -g1,17806:6630773,25139592 -g1,17806:6303093,25139592 -(1,17806:6303093,25139592:0,0,0 -) -g1,17806:6630773,25139592 -) -k1,17807:6630773,25139592:0 -g1,17807:11942036,25139592 -g1,17807:12937898,25139592 -h1,17807:13269852,25139592:0,0,0 -k1,17807:32583028,25139592:19313176 -g1,17807:32583028,25139592 -) -] -) -g1,17809:32583029,25245838 -g1,17809:6630773,25245838 -g1,17809:6630773,25245838 -g1,17809:32583029,25245838 -g1,17809:32583029,25245838 -) -h1,17809:6630773,25442446:0,0,0 -(1,17813:6630773,26307526:25952256,513147,126483 -h1,17812:6630773,26307526:983040,0,0 -g1,17812:10032091,26307526 -g1,17812:12895359,26307526 -g1,17812:13753880,26307526 -g1,17812:16737734,26307526 -(1,17812:16737734,26307526:0,452978,115847 -r1,17848:19206271,26307526:2468537,568825,115847 -k1,17812:16737734,26307526:-2468537 -) -(1,17812:16737734,26307526:2468537,452978,115847 -k1,17812:16737734,26307526:3277 -h1,17812:19202994,26307526:0,411205,112570 -) -g1,17812:19405500,26307526 -g1,17812:20796174,26307526 -(1,17812:20796174,26307526:0,452978,115847 -r1,17848:23264711,26307526:2468537,568825,115847 -k1,17812:20796174,26307526:-2468537 -) -(1,17812:20796174,26307526:2468537,452978,115847 -k1,17812:20796174,26307526:3277 -h1,17812:23261434,26307526:0,411205,112570 -) -g1,17812:23463940,26307526 -g1,17812:24654729,26307526 -g1,17812:27637927,26307526 -g1,17812:28784807,26307526 -k1,17813:32583029,26307526:1990084 -g1,17813:32583029,26307526 -) -v1,17815:6630773,26992381:0,393216,0 -(1,17828:6630773,29747815:25952256,3148650,196608 -g1,17828:6630773,29747815 -g1,17828:6630773,29747815 -g1,17828:6434165,29747815 -(1,17828:6434165,29747815:0,3148650,196608 -r1,17848:32779637,29747815:26345472,3345258,196608 -k1,17828:6434165,29747815:-26345472 -) -(1,17828:6434165,29747815:26345472,3148650,196608 -[1,17828:6630773,29747815:25952256,2952042,0 -(1,17817:6630773,27220212:25952256,424439,106246 -(1,17816:6630773,27220212:0,0,0 -g1,17816:6630773,27220212 -g1,17816:6630773,27220212 -g1,17816:6303093,27220212 -(1,17816:6303093,27220212:0,0,0 -) -g1,17816:6630773,27220212 -) -k1,17817:6630773,27220212:0 -g1,17817:11610082,27220212 -h1,17817:13933760,27220212:0,0,0 -k1,17817:32583028,27220212:18649268 -g1,17817:32583028,27220212 -) -(1,17821:6630773,28036139:25952256,424439,79822 -(1,17819:6630773,28036139:0,0,0 -g1,17819:6630773,28036139 -g1,17819:6630773,28036139 -g1,17819:6303093,28036139 -(1,17819:6303093,28036139:0,0,0 -) -g1,17819:6630773,28036139 -) -g1,17821:7626635,28036139 -g1,17821:8954451,28036139 -g1,17821:12937899,28036139 -h1,17821:14265715,28036139:0,0,0 -k1,17821:32583029,28036139:18317314 -g1,17821:32583029,28036139 -) -(1,17823:6630773,28852066:25952256,424439,106246 -(1,17822:6630773,28852066:0,0,0 -g1,17822:6630773,28852066 -g1,17822:6630773,28852066 -g1,17822:6303093,28852066 -(1,17822:6303093,28852066:0,0,0 -) -g1,17822:6630773,28852066 -) -k1,17823:6630773,28852066:0 -g1,17823:11610082,28852066 -h1,17823:14265714,28852066:0,0,0 -k1,17823:32583030,28852066:18317316 -g1,17823:32583030,28852066 -) -(1,17827:6630773,29667993:25952256,424439,79822 -(1,17825:6630773,29667993:0,0,0 -g1,17825:6630773,29667993 -g1,17825:6630773,29667993 -g1,17825:6303093,29667993 -(1,17825:6303093,29667993:0,0,0 -) -g1,17825:6630773,29667993 -) -g1,17827:7626635,29667993 -g1,17827:8954451,29667993 -g1,17827:12937899,29667993 -g1,17827:15925484,29667993 -h1,17827:17253300,29667993:0,0,0 -k1,17827:32583029,29667993:15329729 -g1,17827:32583029,29667993 -) -] -) -g1,17828:32583029,29747815 -g1,17828:6630773,29747815 -g1,17828:6630773,29747815 -g1,17828:32583029,29747815 -g1,17828:32583029,29747815 -) -h1,17828:6630773,29944423:0,0,0 -v1,17832:6630773,30809503:0,393216,0 -(1,17833:6630773,35541728:25952256,5125441,0 -g1,17833:6630773,35541728 -g1,17833:6237557,35541728 -r1,17848:6368629,35541728:131072,5125441,0 -g1,17833:6567858,35541728 -g1,17833:6764466,35541728 -[1,17833:6764466,35541728:25818563,5125441,0 -(1,17833:6764466,31081980:25818563,665693,196608 -(1,17832:6764466,31081980:0,665693,196608 -r1,17848:7868133,31081980:1103667,862301,196608 -k1,17832:6764466,31081980:-1103667 -) -(1,17832:6764466,31081980:1103667,665693,196608 -) -k1,17832:8093752,31081980:225619 -k1,17832:9411681,31081980:327680 -k1,17832:12309202,31081980:225618 -k1,17832:13928772,31081980:225619 -k1,17832:15579799,31081980:225619 -k1,17832:17368451,31081980:225618 -k1,17832:20899051,31081980:225619 -k1,17832:23732347,31081980:225618 -k1,17832:26770116,31081980:225619 -k1,17832:28280241,31081980:225619 -k1,17832:29524944,31081980:225618 -k1,17832:31923737,31081980:225619 -k1,17832:32583029,31081980:0 -) -(1,17833:6764466,31947060:25818563,505283,134348 -k1,17832:11414983,31947060:256328 -k1,17832:12662870,31947060:256327 -k1,17832:16036090,31947060:256328 -k1,17832:16943846,31947060:256328 -k1,17832:18297901,31947060:256327 -k1,17832:22752465,31947060:256328 -k1,17832:26481545,31947060:256327 -k1,17832:27756958,31947060:256328 -k1,17832:32583029,31947060:0 -) -(1,17833:6764466,32812140:25818563,513147,134348 -k1,17832:7554679,32812140:258716 -k1,17832:8879666,32812140:258716 -k1,17832:11498989,32812140:258716 -k1,17832:12949149,32812140:258715 -k1,17832:14076217,32812140:258716 -k1,17832:15865199,32812140:258716 -k1,17832:16775343,32812140:258716 -k1,17832:19402530,32812140:258716 -k1,17832:21055197,32812140:258716 -k1,17832:22810100,32812140:258716 -k1,17832:26060534,32812140:258715 -k1,17832:27649631,32812140:258716 -k1,17832:30934144,32812140:258716 -k1,17832:32583029,32812140:0 -) -(1,17833:6764466,33677220:25818563,505283,126483 -k1,17832:8075466,33677220:268978 -k1,17832:11179532,33677220:268979 -k1,17832:12801173,33677220:268978 -k1,17832:14226862,33677220:268979 -k1,17832:15876684,33677220:268978 -k1,17832:16761701,33677220:268979 -k1,17832:19846106,33677220:268978 -k1,17832:21708920,33677220:268978 -k1,17832:23169344,33677220:268979 -k1,17832:24595032,33677220:268978 -k1,17832:26244855,33677220:268979 -k1,17832:27129871,33677220:268978 -k1,17832:29355100,33677220:268979 -k1,17832:31391584,33677220:268978 -k1,17832:32583029,33677220:0 -) -(1,17833:6764466,34542300:25818563,513147,126483 -k1,17832:9753385,34542300:201017 -k1,17832:10973486,34542300:201016 -k1,17832:13921772,34542300:201017 -k1,17832:16757992,34542300:201017 -k1,17832:18771734,34542300:201016 -k1,17832:20584281,34542300:201017 -k1,17832:22801840,34542300:201016 -k1,17832:24021942,34542300:201017 -k1,17832:28286846,34542300:201017 -k1,17832:29435513,34542300:201016 -k1,17832:30989193,34542300:201017 -k1,17832:32583029,34542300:0 -) -(1,17833:6764466,35407380:25818563,513147,134348 -g1,17832:8699088,35407380 -g1,17832:9917402,35407380 -g1,17832:11770104,35407380 -g1,17832:13854148,35407380 -g1,17832:16024045,35407380 -g1,17832:16882566,35407380 -g1,17832:18778522,35407380 -g1,17832:20660716,35407380 -g1,17832:22067118,35407380 -g1,17832:22622207,35407380 -g1,17832:24150506,35407380 -k1,17833:32583029,35407380:6785603 -g1,17833:32583029,35407380 -) -] -g1,17833:32583029,35541728 -) -h1,17833:6630773,35541728:0,0,0 -(1,17836:6630773,38372888:25952256,32768,229376 -(1,17836:6630773,38372888:0,32768,229376 -(1,17836:6630773,38372888:5505024,32768,229376 -r1,17848:12135797,38372888:5505024,262144,229376 -) -k1,17836:6630773,38372888:-5505024 -) -(1,17836:6630773,38372888:25952256,32768,0 -r1,17848:32583029,38372888:25952256,32768,0 -) -) -(1,17836:6630773,40004740:25952256,606339,161218 -(1,17836:6630773,40004740:1974731,582746,14155 -g1,17836:6630773,40004740 -g1,17836:8605504,40004740 -) -g1,17836:11813360,40004740 -k1,17836:32583030,40004740:17570464 -g1,17836:32583030,40004740 -) -(1,17838:6630773,41263036:25952256,513147,126483 -k1,17837:7701934,41263036:192978 -k1,17837:10584510,41263036:192978 -k1,17837:14149315,41263036:192978 -k1,17837:15001586,41263036:192979 -k1,17837:16213649,41263036:192978 -k1,17837:19614614,41263036:192978 -k1,17837:20339089,41263036:192978 -k1,17837:22897917,41263036:192978 -k1,17837:24109980,41263036:192978 -k1,17837:26129447,41263036:192979 -k1,17837:26981717,41263036:192978 -k1,17837:28377936,41263036:192978 -k1,17837:30326624,41263036:192978 -k1,17837:32583029,41263036:0 -) -(1,17838:6630773,42128116:25952256,513147,134348 -k1,17837:8772022,42128116:228908 -k1,17837:11670211,42128116:228908 -k1,17837:12515157,42128116:228908 -k1,17837:14531232,42128116:228908 -k1,17837:15779225,42128116:228908 -k1,17837:17100618,42128116:228908 -k1,17837:17988818,42128116:228908 -k1,17837:19914452,42128116:228907 -k1,17837:23227484,42128116:228908 -k1,17837:24274281,42128116:228908 -k1,17837:26734690,42128116:228908 -k1,17837:27622890,42128116:228908 -k1,17837:29490853,42128116:228908 -k1,17837:30711321,42128116:228908 -k1,17837:32583029,42128116:0 -) -(1,17838:6630773,42993196:25952256,513147,126483 -k1,17837:8663535,42993196:180715 -k1,17837:13149966,42993196:180716 -k1,17837:15319043,42993196:180715 -k1,17837:18066804,42993196:180716 -k1,17837:18906811,42993196:180715 -k1,17837:20999867,42993196:180715 -k1,17837:22674149,42993196:180716 -k1,17837:23541026,42993196:180715 -k1,17837:24171319,42993196:180716 -k1,17837:25276092,42993196:180715 -k1,17837:26991006,42993196:180716 -k1,17837:29451719,42993196:180715 -k1,17837:32583029,42993196:0 -) -(1,17838:6630773,43858276:25952256,513147,134348 -k1,17837:7440797,43858276:205782 -k1,17837:8381251,43858276:205795 -k1,17837:10387962,43858276:205782 -k1,17837:11785188,43858276:205781 -k1,17837:12440547,43858276:205782 -k1,17837:17036586,43858276:205782 -k1,17837:18166426,43858276:205782 -k1,17837:19906406,43858276:205782 -k1,17837:22392186,43858276:205782 -k1,17837:24316978,43858276:205782 -k1,17837:26323688,43858276:205781 -k1,17837:27521030,43858276:205782 -k1,17837:28745897,43858276:205782 -k1,17837:30553379,43858276:205782 -k1,17837:32583029,43858276:0 -) -(1,17838:6630773,44723356:25952256,513147,134348 -k1,17837:8040015,44723356:234182 -k1,17837:13100268,44723356:234182 -k1,17837:13993742,44723356:234182 -k1,17837:15247009,44723356:234182 -k1,17837:18391645,44723356:234182 -k1,17837:20658754,44723356:234182 -k1,17837:24066845,44723356:234182 -k1,17837:24917065,44723356:234182 -k1,17837:26354488,44723356:234182 -k1,17837:29006293,44723356:234182 -k1,17837:29771972,44723356:234182 -k1,17837:30776857,44723356:234182 -k1,17838:32583029,44723356:0 -) -(1,17838:6630773,45588436:25952256,513147,134348 -g1,17837:8210846,45588436 -g1,17837:10519024,45588436 -g1,17837:11377545,45588436 -g1,17837:12930748,45588436 -g1,17837:15107198,45588436 -g1,17837:19113413,45588436 -g1,17837:20504087,45588436 -g1,17837:24268475,45588436 -k1,17838:32583029,45588436:5859576 -g1,17838:32583029,45588436 -) -] -(1,17848:32583029,45706769:0,0,0 -g1,17848:32583029,45706769 -) -) -] -(1,17848:6630773,47279633:25952256,0,0 -h1,17848:6630773,47279633:25952256,0,0 -) -] -(1,17848:4262630,4025873:0,0,0 -[1,17848:-473656,4025873:0,0,0 -(1,17848:-473656,-710413:0,0,0 -(1,17848:-473656,-710413:0,0,0 -g1,17848:-473656,-710413 -) -g1,17848:-473656,-710413 +[1,17846:6630773,45706769:25952256,40108032,0 +(1,17738:6630773,6254097:25952256,513147,7863 +h1,17737:6630773,6254097:983040,0,0 +g1,17737:8300630,6254097 +g1,17737:11686219,6254097 +g1,17737:14520651,6254097 +g1,17737:15371308,6254097 +g1,17737:18131684,6254097 +g1,17737:18946951,6254097 +g1,17737:20571588,6254097 +g1,17737:23111763,6254097 +g1,17737:23666852,6254097 +k1,17738:32583029,6254097:6116479 +g1,17738:32583029,6254097 +) +v1,17740:6630773,6938952:0,393216,0 +(1,17747:6630773,8088956:25952256,1543220,196608 +g1,17747:6630773,8088956 +g1,17747:6630773,8088956 +g1,17747:6434165,8088956 +(1,17747:6434165,8088956:0,1543220,196608 +r1,17846:32779637,8088956:26345472,1739828,196608 +k1,17747:6434165,8088956:-26345472 +) +(1,17747:6434165,8088956:26345472,1543220,196608 +[1,17747:6630773,8088956:25952256,1346612,0 +(1,17742:6630773,7166783:25952256,424439,106246 +(1,17741:6630773,7166783:0,0,0 +g1,17741:6630773,7166783 +g1,17741:6630773,7166783 +g1,17741:6303093,7166783 +(1,17741:6303093,7166783:0,0,0 +) +g1,17741:6630773,7166783 +) +k1,17742:6630773,7166783:0 +g1,17742:13269853,7166783 +g1,17742:16921346,7166783 +g1,17742:17585254,7166783 +g1,17742:24224334,7166783 +h1,17742:27543873,7166783:0,0,0 +k1,17742:32583029,7166783:5039156 +g1,17742:32583029,7166783 +) +(1,17746:6630773,7982710:25952256,431045,106246 +(1,17744:6630773,7982710:0,0,0 +g1,17744:6630773,7982710 +g1,17744:6630773,7982710 +g1,17744:6303093,7982710 +(1,17744:6303093,7982710:0,0,0 +) +g1,17744:6630773,7982710 +) +g1,17746:7626635,7982710 +g1,17746:9286405,7982710 +g1,17746:12937898,7982710 +g1,17746:13933760,7982710 +g1,17746:15925484,7982710 +h1,17746:17253300,7982710:0,0,0 +k1,17746:32583029,7982710:15329729 +g1,17746:32583029,7982710 +) +] +) +g1,17747:32583029,8088956 +g1,17747:6630773,8088956 +g1,17747:6630773,8088956 +g1,17747:32583029,8088956 +g1,17747:32583029,8088956 +) +h1,17747:6630773,8285564:0,0,0 +(1,17751:6630773,9150644:25952256,513147,126483 +h1,17750:6630773,9150644:983040,0,0 +k1,17750:10968260,9150644:234278 +k1,17750:12596490,9150644:234279 +k1,17750:14899084,9150644:234278 +k1,17750:15749400,9150644:234278 +k1,17750:18047407,9150644:234278 +k1,17750:19427911,9150644:234279 +(1,17750:19427911,9150644:0,452978,115847 +r1,17846:21896448,9150644:2468537,568825,115847 +k1,17750:19427911,9150644:-2468537 +) +(1,17750:19427911,9150644:2468537,452978,115847 +k1,17750:19427911,9150644:3277 +h1,17750:21893171,9150644:0,411205,112570 +) +k1,17750:22130726,9150644:234278 +k1,17750:23020364,9150644:234278 +(1,17750:23020364,9150644:0,452978,115847 +r1,17846:26192324,9150644:3171960,568825,115847 +k1,17750:23020364,9150644:-3171960 +) +(1,17750:23020364,9150644:3171960,452978,115847 +k1,17750:23020364,9150644:3277 +h1,17750:26189047,9150644:0,411205,112570 +) +k1,17750:26426602,9150644:234278 +k1,17750:27652441,9150644:234279 +k1,17750:31923737,9150644:234278 +k1,17750:32583029,9150644:0 +) +(1,17751:6630773,10015724:25952256,513147,102891 +g1,17750:10081243,10015724 +g1,17750:11471917,10015724 +g1,17750:12775428,10015724 +g1,17750:13722423,10015724 +g1,17750:15887077,10015724 +g1,17750:17277751,10015724 +g1,17750:20882231,10015724 +g1,17750:22649081,10015724 +k1,17751:32583029,10015724:8125810 +g1,17751:32583029,10015724 +) +v1,17753:6630773,10700579:0,393216,0 +(1,17772:6630773,15087867:25952256,4780504,196608 +g1,17772:6630773,15087867 +g1,17772:6630773,15087867 +g1,17772:6434165,15087867 +(1,17772:6434165,15087867:0,4780504,196608 +r1,17846:32779637,15087867:26345472,4977112,196608 +k1,17772:6434165,15087867:-26345472 +) +(1,17772:6434165,15087867:26345472,4780504,196608 +[1,17772:6630773,15087867:25952256,4583896,0 +(1,17755:6630773,10928410:25952256,424439,106246 +(1,17754:6630773,10928410:0,0,0 +g1,17754:6630773,10928410 +g1,17754:6630773,10928410 +g1,17754:6303093,10928410 +(1,17754:6303093,10928410:0,0,0 +) +g1,17754:6630773,10928410 +) +k1,17755:6630773,10928410:0 +g1,17755:13269853,10928410 +g1,17755:16921346,10928410 +g1,17755:17585254,10928410 +g1,17755:21236748,10928410 +g1,17755:21900656,10928410 +k1,17755:21900656,10928410:0 +h1,17755:25220196,10928410:0,0,0 +k1,17755:32583029,10928410:7362833 +g1,17755:32583029,10928410 +) +(1,17759:6630773,11744337:25952256,424439,79822 +(1,17757:6630773,11744337:0,0,0 +g1,17757:6630773,11744337 +g1,17757:6630773,11744337 +g1,17757:6303093,11744337 +(1,17757:6303093,11744337:0,0,0 +) +g1,17757:6630773,11744337 +) +g1,17759:7626635,11744337 +g1,17759:8954451,11744337 +g1,17759:12937899,11744337 +g1,17759:15925484,11744337 +h1,17759:17253300,11744337:0,0,0 +k1,17759:32583029,11744337:15329729 +g1,17759:32583029,11744337 +) +(1,17761:6630773,12560264:25952256,424439,106246 +(1,17760:6630773,12560264:0,0,0 +g1,17760:6630773,12560264 +g1,17760:6630773,12560264 +g1,17760:6303093,12560264 +(1,17760:6303093,12560264:0,0,0 +) +g1,17760:6630773,12560264 +) +k1,17761:6630773,12560264:0 +g1,17761:13269853,12560264 +g1,17761:16921346,12560264 +g1,17761:17585254,12560264 +g1,17761:24224334,12560264 +h1,17761:27543873,12560264:0,0,0 +k1,17761:32583029,12560264:5039156 +g1,17761:32583029,12560264 +) +(1,17765:6630773,13376191:25952256,431045,106246 +(1,17763:6630773,13376191:0,0,0 +g1,17763:6630773,13376191 +g1,17763:6630773,13376191 +g1,17763:6303093,13376191 +(1,17763:6303093,13376191:0,0,0 +) +g1,17763:6630773,13376191 +) +g1,17765:7626635,13376191 +g1,17765:9286405,13376191 +g1,17765:12937898,13376191 +g1,17765:13933760,13376191 +g1,17765:15925484,13376191 +h1,17765:17253300,13376191:0,0,0 +k1,17765:32583029,13376191:15329729 +g1,17765:32583029,13376191 +) +(1,17767:6630773,14192118:25952256,424439,106246 +(1,17766:6630773,14192118:0,0,0 +g1,17766:6630773,14192118 +g1,17766:6630773,14192118 +g1,17766:6303093,14192118 +(1,17766:6303093,14192118:0,0,0 +) +g1,17766:6630773,14192118 +) +k1,17767:6630773,14192118:0 +g1,17767:12605945,14192118 +g1,17767:13269853,14192118 +k1,17767:13269853,14192118:0 +h1,17767:17253301,14192118:0,0,0 +k1,17767:32583029,14192118:15329728 +g1,17767:32583029,14192118 +) +(1,17771:6630773,15008045:25952256,424439,79822 +(1,17769:6630773,15008045:0,0,0 +g1,17769:6630773,15008045 +g1,17769:6630773,15008045 +g1,17769:6303093,15008045 +(1,17769:6303093,15008045:0,0,0 +) +g1,17769:6630773,15008045 +) +g1,17771:7626635,15008045 +g1,17771:8954451,15008045 +g1,17771:12937899,15008045 +g1,17771:15925484,15008045 +h1,17771:17253300,15008045:0,0,0 +k1,17771:32583029,15008045:15329729 +g1,17771:32583029,15008045 +) +] +) +g1,17772:32583029,15087867 +g1,17772:6630773,15087867 +g1,17772:6630773,15087867 +g1,17772:32583029,15087867 +g1,17772:32583029,15087867 +) +h1,17772:6630773,15284475:0,0,0 +(1,17776:6630773,16149555:25952256,505283,134348 +h1,17775:6630773,16149555:983040,0,0 +k1,17775:10976772,16149555:242790 +k1,17775:12613514,16149555:242791 +k1,17775:14924620,16149555:242790 +k1,17775:15783448,16149555:242790 +k1,17775:18784648,16149555:242790 +k1,17775:20173664,16149555:242791 +(1,17775:20173664,16149555:0,452978,115847 +r1,17846:22290489,16149555:2116825,568825,115847 +k1,17775:20173664,16149555:-2116825 +) +(1,17775:20173664,16149555:2116825,452978,115847 +k1,17775:20173664,16149555:3277 +h1,17775:22287212,16149555:0,411205,112570 +) +k1,17775:22533279,16149555:242790 +k1,17775:23431429,16149555:242790 +(1,17775:23431429,16149555:0,452978,115847 +r1,17846:26251678,16149555:2820249,568825,115847 +k1,17775:23431429,16149555:-2820249 +) +(1,17775:23431429,16149555:2820249,452978,115847 +k1,17775:23431429,16149555:3277 +h1,17775:26248401,16149555:0,411205,112570 +) +k1,17775:26494468,16149555:242790 +k1,17775:27728819,16149555:242791 +k1,17775:29484835,16149555:242790 +k1,17775:30379053,16149555:242790 +k1,17775:32583029,16149555:0 +) +(1,17776:6630773,17014635:25952256,513147,126483 +g1,17775:8021447,17014635 +g1,17775:9155219,17014635 +g1,17775:10373533,17014635 +g1,17775:13012667,17014635 +g1,17775:17139469,17014635 +g1,17775:17997990,17014635 +g1,17775:18967922,17014635 +g1,17775:21397997,17014635 +g1,17775:22213264,17014635 +k1,17776:32583029,17014635:8891929 +g1,17776:32583029,17014635 +) +v1,17778:6630773,17699490:0,393216,0 +(1,17807:6630773,25245838:25952256,7939564,196608 +g1,17807:6630773,25245838 +g1,17807:6630773,25245838 +g1,17807:6434165,25245838 +(1,17807:6434165,25245838:0,7939564,196608 +r1,17846:32779637,25245838:26345472,8136172,196608 +k1,17807:6434165,25245838:-26345472 +) +(1,17807:6434165,25245838:26345472,7939564,196608 +[1,17807:6630773,25245838:25952256,7742956,0 +(1,17780:6630773,17927321:25952256,424439,106246 +(1,17779:6630773,17927321:0,0,0 +g1,17779:6630773,17927321 +g1,17779:6630773,17927321 +g1,17779:6303093,17927321 +(1,17779:6303093,17927321:0,0,0 +) +g1,17779:6630773,17927321 +) +g1,17780:9286405,17927321 +g1,17780:10282267,17927321 +k1,17780:10282267,17927321:0 +h1,17780:11942037,17927321:0,0,0 +k1,17780:32583029,17927321:20640992 +g1,17780:32583029,17927321 +) +(1,17781:6630773,18612176:25952256,424439,106246 +h1,17781:6630773,18612176:0,0,0 +h1,17781:8954451,18612176:0,0,0 +k1,17781:32583029,18612176:23628578 +g1,17781:32583029,18612176 +) +(1,17785:6630773,19428103:25952256,424439,79822 +(1,17783:6630773,19428103:0,0,0 +g1,17783:6630773,19428103 +g1,17783:6630773,19428103 +g1,17783:6303093,19428103 +(1,17783:6303093,19428103:0,0,0 +) +g1,17783:6630773,19428103 +) +g1,17785:7626635,19428103 +g1,17785:8954451,19428103 +g1,17785:12937899,19428103 +g1,17785:15925484,19428103 +h1,17785:17253300,19428103:0,0,0 +k1,17785:32583029,19428103:15329729 +g1,17785:32583029,19428103 +) +(1,17787:6630773,20244030:25952256,424439,106246 +(1,17786:6630773,20244030:0,0,0 +g1,17786:6630773,20244030 +g1,17786:6630773,20244030 +g1,17786:6303093,20244030 +(1,17786:6303093,20244030:0,0,0 +) +g1,17786:6630773,20244030 +) +k1,17787:6630773,20244030:0 +h1,17787:10946174,20244030:0,0,0 +k1,17787:32583030,20244030:21636856 +g1,17787:32583030,20244030 +) +(1,17791:6630773,21059957:25952256,424439,79822 +(1,17789:6630773,21059957:0,0,0 +g1,17789:6630773,21059957 +g1,17789:6630773,21059957 +g1,17789:6303093,21059957 +(1,17789:6303093,21059957:0,0,0 +) +g1,17789:6630773,21059957 +) +g1,17791:7626635,21059957 +g1,17791:8954451,21059957 +h1,17791:10282267,21059957:0,0,0 +k1,17791:32583029,21059957:22300762 +g1,17791:32583029,21059957 +) +(1,17793:6630773,21875884:25952256,424439,106246 +(1,17792:6630773,21875884:0,0,0 +g1,17792:6630773,21875884 +g1,17792:6630773,21875884 +g1,17792:6303093,21875884 +(1,17792:6303093,21875884:0,0,0 +) +g1,17792:6630773,21875884 +) +k1,17793:6630773,21875884:0 +h1,17793:10946174,21875884:0,0,0 +k1,17793:32583030,21875884:21636856 +g1,17793:32583030,21875884 +) +(1,17797:6630773,22691811:25952256,424439,79822 +(1,17795:6630773,22691811:0,0,0 +g1,17795:6630773,22691811 +g1,17795:6630773,22691811 +g1,17795:6303093,22691811 +(1,17795:6303093,22691811:0,0,0 +) +g1,17795:6630773,22691811 +) +g1,17797:7626635,22691811 +g1,17797:8954451,22691811 +h1,17797:9618359,22691811:0,0,0 +k1,17797:32583029,22691811:22964670 +g1,17797:32583029,22691811 +) +(1,17799:6630773,23507738:25952256,424439,106246 +(1,17798:6630773,23507738:0,0,0 +g1,17798:6630773,23507738 +g1,17798:6630773,23507738 +g1,17798:6303093,23507738 +(1,17798:6303093,23507738:0,0,0 +) +g1,17798:6630773,23507738 +) +k1,17799:6630773,23507738:0 +h1,17799:11610082,23507738:0,0,0 +k1,17799:32583030,23507738:20972948 +g1,17799:32583030,23507738 +) +(1,17803:6630773,24323665:25952256,424439,79822 +(1,17801:6630773,24323665:0,0,0 +g1,17801:6630773,24323665 +g1,17801:6630773,24323665 +g1,17801:6303093,24323665 +(1,17801:6303093,24323665:0,0,0 +) +g1,17801:6630773,24323665 +) +g1,17803:7626635,24323665 +g1,17803:8954451,24323665 +h1,17803:11610082,24323665:0,0,0 +k1,17803:32583030,24323665:20972948 +g1,17803:32583030,24323665 +) +(1,17805:6630773,25139592:25952256,424439,106246 +(1,17804:6630773,25139592:0,0,0 +g1,17804:6630773,25139592 +g1,17804:6630773,25139592 +g1,17804:6303093,25139592 +(1,17804:6303093,25139592:0,0,0 +) +g1,17804:6630773,25139592 +) +k1,17805:6630773,25139592:0 +g1,17805:11942036,25139592 +g1,17805:12937898,25139592 +h1,17805:13269852,25139592:0,0,0 +k1,17805:32583028,25139592:19313176 +g1,17805:32583028,25139592 +) +] +) +g1,17807:32583029,25245838 +g1,17807:6630773,25245838 +g1,17807:6630773,25245838 +g1,17807:32583029,25245838 +g1,17807:32583029,25245838 +) +h1,17807:6630773,25442446:0,0,0 +(1,17811:6630773,26307526:25952256,513147,126483 +h1,17810:6630773,26307526:983040,0,0 +g1,17810:10032091,26307526 +g1,17810:12895359,26307526 +g1,17810:13753880,26307526 +g1,17810:16737734,26307526 +(1,17810:16737734,26307526:0,452978,115847 +r1,17846:19206271,26307526:2468537,568825,115847 +k1,17810:16737734,26307526:-2468537 +) +(1,17810:16737734,26307526:2468537,452978,115847 +k1,17810:16737734,26307526:3277 +h1,17810:19202994,26307526:0,411205,112570 +) +g1,17810:19405500,26307526 +g1,17810:20796174,26307526 +(1,17810:20796174,26307526:0,452978,115847 +r1,17846:23264711,26307526:2468537,568825,115847 +k1,17810:20796174,26307526:-2468537 +) +(1,17810:20796174,26307526:2468537,452978,115847 +k1,17810:20796174,26307526:3277 +h1,17810:23261434,26307526:0,411205,112570 +) +g1,17810:23463940,26307526 +g1,17810:24654729,26307526 +g1,17810:27637927,26307526 +g1,17810:28784807,26307526 +k1,17811:32583029,26307526:1990084 +g1,17811:32583029,26307526 +) +v1,17813:6630773,26992381:0,393216,0 +(1,17826:6630773,29747815:25952256,3148650,196608 +g1,17826:6630773,29747815 +g1,17826:6630773,29747815 +g1,17826:6434165,29747815 +(1,17826:6434165,29747815:0,3148650,196608 +r1,17846:32779637,29747815:26345472,3345258,196608 +k1,17826:6434165,29747815:-26345472 +) +(1,17826:6434165,29747815:26345472,3148650,196608 +[1,17826:6630773,29747815:25952256,2952042,0 +(1,17815:6630773,27220212:25952256,424439,106246 +(1,17814:6630773,27220212:0,0,0 +g1,17814:6630773,27220212 +g1,17814:6630773,27220212 +g1,17814:6303093,27220212 +(1,17814:6303093,27220212:0,0,0 +) +g1,17814:6630773,27220212 +) +k1,17815:6630773,27220212:0 +g1,17815:11610082,27220212 +h1,17815:13933760,27220212:0,0,0 +k1,17815:32583028,27220212:18649268 +g1,17815:32583028,27220212 +) +(1,17819:6630773,28036139:25952256,424439,79822 +(1,17817:6630773,28036139:0,0,0 +g1,17817:6630773,28036139 +g1,17817:6630773,28036139 +g1,17817:6303093,28036139 +(1,17817:6303093,28036139:0,0,0 +) +g1,17817:6630773,28036139 +) +g1,17819:7626635,28036139 +g1,17819:8954451,28036139 +g1,17819:12937899,28036139 +h1,17819:14265715,28036139:0,0,0 +k1,17819:32583029,28036139:18317314 +g1,17819:32583029,28036139 +) +(1,17821:6630773,28852066:25952256,424439,106246 +(1,17820:6630773,28852066:0,0,0 +g1,17820:6630773,28852066 +g1,17820:6630773,28852066 +g1,17820:6303093,28852066 +(1,17820:6303093,28852066:0,0,0 +) +g1,17820:6630773,28852066 +) +k1,17821:6630773,28852066:0 +g1,17821:11610082,28852066 +h1,17821:14265714,28852066:0,0,0 +k1,17821:32583030,28852066:18317316 +g1,17821:32583030,28852066 +) +(1,17825:6630773,29667993:25952256,424439,79822 +(1,17823:6630773,29667993:0,0,0 +g1,17823:6630773,29667993 +g1,17823:6630773,29667993 +g1,17823:6303093,29667993 +(1,17823:6303093,29667993:0,0,0 +) +g1,17823:6630773,29667993 +) +g1,17825:7626635,29667993 +g1,17825:8954451,29667993 +g1,17825:12937899,29667993 +g1,17825:15925484,29667993 +h1,17825:17253300,29667993:0,0,0 +k1,17825:32583029,29667993:15329729 +g1,17825:32583029,29667993 +) +] +) +g1,17826:32583029,29747815 +g1,17826:6630773,29747815 +g1,17826:6630773,29747815 +g1,17826:32583029,29747815 +g1,17826:32583029,29747815 +) +h1,17826:6630773,29944423:0,0,0 +v1,17830:6630773,30809503:0,393216,0 +(1,17831:6630773,35541728:25952256,5125441,0 +g1,17831:6630773,35541728 +g1,17831:6237557,35541728 +r1,17846:6368629,35541728:131072,5125441,0 +g1,17831:6567858,35541728 +g1,17831:6764466,35541728 +[1,17831:6764466,35541728:25818563,5125441,0 +(1,17831:6764466,31081980:25818563,665693,196608 +(1,17830:6764466,31081980:0,665693,196608 +r1,17846:7868133,31081980:1103667,862301,196608 +k1,17830:6764466,31081980:-1103667 +) +(1,17830:6764466,31081980:1103667,665693,196608 +) +k1,17830:8093752,31081980:225619 +k1,17830:9411681,31081980:327680 +k1,17830:12309202,31081980:225618 +k1,17830:13928772,31081980:225619 +k1,17830:15579799,31081980:225619 +k1,17830:17368451,31081980:225618 +k1,17830:20899051,31081980:225619 +k1,17830:23732347,31081980:225618 +k1,17830:26770116,31081980:225619 +k1,17830:28280241,31081980:225619 +k1,17830:29524944,31081980:225618 +k1,17830:31923737,31081980:225619 +k1,17830:32583029,31081980:0 +) +(1,17831:6764466,31947060:25818563,505283,134348 +k1,17830:11414983,31947060:256328 +k1,17830:12662870,31947060:256327 +k1,17830:16036090,31947060:256328 +k1,17830:16943846,31947060:256328 +k1,17830:18297901,31947060:256327 +k1,17830:22752465,31947060:256328 +k1,17830:26481545,31947060:256327 +k1,17830:27756958,31947060:256328 +k1,17830:32583029,31947060:0 +) +(1,17831:6764466,32812140:25818563,513147,134348 +k1,17830:7554679,32812140:258716 +k1,17830:8879666,32812140:258716 +k1,17830:11498989,32812140:258716 +k1,17830:12949149,32812140:258715 +k1,17830:14076217,32812140:258716 +k1,17830:15865199,32812140:258716 +k1,17830:16775343,32812140:258716 +k1,17830:19402530,32812140:258716 +k1,17830:21055197,32812140:258716 +k1,17830:22810100,32812140:258716 +k1,17830:26060534,32812140:258715 +k1,17830:27649631,32812140:258716 +k1,17830:30934144,32812140:258716 +k1,17830:32583029,32812140:0 +) +(1,17831:6764466,33677220:25818563,505283,126483 +k1,17830:8075466,33677220:268978 +k1,17830:11179532,33677220:268979 +k1,17830:12801173,33677220:268978 +k1,17830:14226862,33677220:268979 +k1,17830:15876684,33677220:268978 +k1,17830:16761701,33677220:268979 +k1,17830:19846106,33677220:268978 +k1,17830:21708920,33677220:268978 +k1,17830:23169344,33677220:268979 +k1,17830:24595032,33677220:268978 +k1,17830:26244855,33677220:268979 +k1,17830:27129871,33677220:268978 +k1,17830:29355100,33677220:268979 +k1,17830:31391584,33677220:268978 +k1,17830:32583029,33677220:0 +) +(1,17831:6764466,34542300:25818563,513147,126483 +k1,17830:9753385,34542300:201017 +k1,17830:10973486,34542300:201016 +k1,17830:13921772,34542300:201017 +k1,17830:16757992,34542300:201017 +k1,17830:18771734,34542300:201016 +k1,17830:20584281,34542300:201017 +k1,17830:22801840,34542300:201016 +k1,17830:24021942,34542300:201017 +k1,17830:28286846,34542300:201017 +k1,17830:29435513,34542300:201016 +k1,17830:30989193,34542300:201017 +k1,17830:32583029,34542300:0 +) +(1,17831:6764466,35407380:25818563,513147,134348 +g1,17830:8699088,35407380 +g1,17830:9917402,35407380 +g1,17830:11770104,35407380 +g1,17830:13854148,35407380 +g1,17830:16024045,35407380 +g1,17830:16882566,35407380 +g1,17830:18778522,35407380 +g1,17830:20660716,35407380 +g1,17830:22067118,35407380 +g1,17830:22622207,35407380 +g1,17830:24150506,35407380 +k1,17831:32583029,35407380:6785603 +g1,17831:32583029,35407380 +) +] +g1,17831:32583029,35541728 +) +h1,17831:6630773,35541728:0,0,0 +(1,17834:6630773,38372888:25952256,32768,229376 +(1,17834:6630773,38372888:0,32768,229376 +(1,17834:6630773,38372888:5505024,32768,229376 +r1,17846:12135797,38372888:5505024,262144,229376 +) +k1,17834:6630773,38372888:-5505024 +) +(1,17834:6630773,38372888:25952256,32768,0 +r1,17846:32583029,38372888:25952256,32768,0 +) +) +(1,17834:6630773,40004740:25952256,606339,161218 +(1,17834:6630773,40004740:1974731,582746,14155 +g1,17834:6630773,40004740 +g1,17834:8605504,40004740 +) +g1,17834:11813360,40004740 +k1,17834:32583030,40004740:17570464 +g1,17834:32583030,40004740 +) +(1,17836:6630773,41263036:25952256,513147,126483 +k1,17835:7701934,41263036:192978 +k1,17835:10584510,41263036:192978 +k1,17835:14149315,41263036:192978 +k1,17835:15001586,41263036:192979 +k1,17835:16213649,41263036:192978 +k1,17835:19614614,41263036:192978 +k1,17835:20339089,41263036:192978 +k1,17835:22897917,41263036:192978 +k1,17835:24109980,41263036:192978 +k1,17835:26129447,41263036:192979 +k1,17835:26981717,41263036:192978 +k1,17835:28377936,41263036:192978 +k1,17835:30326624,41263036:192978 +k1,17835:32583029,41263036:0 +) +(1,17836:6630773,42128116:25952256,513147,134348 +k1,17835:8772022,42128116:228908 +k1,17835:11670211,42128116:228908 +k1,17835:12515157,42128116:228908 +k1,17835:14531232,42128116:228908 +k1,17835:15779225,42128116:228908 +k1,17835:17100618,42128116:228908 +k1,17835:17988818,42128116:228908 +k1,17835:19914452,42128116:228907 +k1,17835:23227484,42128116:228908 +k1,17835:24274281,42128116:228908 +k1,17835:26734690,42128116:228908 +k1,17835:27622890,42128116:228908 +k1,17835:29490853,42128116:228908 +k1,17835:30711321,42128116:228908 +k1,17835:32583029,42128116:0 +) +(1,17836:6630773,42993196:25952256,513147,126483 +k1,17835:8663535,42993196:180715 +k1,17835:13149966,42993196:180716 +k1,17835:15319043,42993196:180715 +k1,17835:18066804,42993196:180716 +k1,17835:18906811,42993196:180715 +k1,17835:20999867,42993196:180715 +k1,17835:22674149,42993196:180716 +k1,17835:23541026,42993196:180715 +k1,17835:24171319,42993196:180716 +k1,17835:25276092,42993196:180715 +k1,17835:26991006,42993196:180716 +k1,17835:29451719,42993196:180715 +k1,17835:32583029,42993196:0 +) +(1,17836:6630773,43858276:25952256,513147,134348 +k1,17835:7440797,43858276:205782 +k1,17835:8381251,43858276:205795 +k1,17835:10387962,43858276:205782 +k1,17835:11785188,43858276:205781 +k1,17835:12440547,43858276:205782 +k1,17835:17036586,43858276:205782 +k1,17835:18166426,43858276:205782 +k1,17835:19906406,43858276:205782 +k1,17835:22392186,43858276:205782 +k1,17835:24316978,43858276:205782 +k1,17835:26323688,43858276:205781 +k1,17835:27521030,43858276:205782 +k1,17835:28745897,43858276:205782 +k1,17835:30553379,43858276:205782 +k1,17835:32583029,43858276:0 +) +(1,17836:6630773,44723356:25952256,513147,134348 +k1,17835:8040015,44723356:234182 +k1,17835:13100268,44723356:234182 +k1,17835:13993742,44723356:234182 +k1,17835:15247009,44723356:234182 +k1,17835:18391645,44723356:234182 +k1,17835:20658754,44723356:234182 +k1,17835:24066845,44723356:234182 +k1,17835:24917065,44723356:234182 +k1,17835:26354488,44723356:234182 +k1,17835:29006293,44723356:234182 +k1,17835:29771972,44723356:234182 +k1,17835:30776857,44723356:234182 +k1,17836:32583029,44723356:0 +) +(1,17836:6630773,45588436:25952256,513147,134348 +g1,17835:8210846,45588436 +g1,17835:10519024,45588436 +g1,17835:11377545,45588436 +g1,17835:12930748,45588436 +g1,17835:15107198,45588436 +g1,17835:19113413,45588436 +g1,17835:20504087,45588436 +g1,17835:24268475,45588436 +k1,17836:32583029,45588436:5859576 +g1,17836:32583029,45588436 +) +] +(1,17846:32583029,45706769:0,0,0 +g1,17846:32583029,45706769 +) +) +] +(1,17846:6630773,47279633:25952256,0,0 +h1,17846:6630773,47279633:25952256,0,0 +) +] +(1,17846:4262630,4025873:0,0,0 +[1,17846:-473656,4025873:0,0,0 +(1,17846:-473656,-710413:0,0,0 +(1,17846:-473656,-710413:0,0,0 +g1,17846:-473656,-710413 +) +g1,17846:-473656,-710413 ) ] ) ] !25237 -}285 +}286 !12 -{286 -[1,17895:4262630,47279633:28320399,43253760,0 -(1,17895:4262630,4025873:0,0,0 -[1,17895:-473656,4025873:0,0,0 -(1,17895:-473656,-710413:0,0,0 -(1,17895:-473656,-644877:0,0,0 -k1,17895:-473656,-644877:-65536 +{287 +[1,17893:4262630,47279633:28320399,43253760,0 +(1,17893:4262630,4025873:0,0,0 +[1,17893:-473656,4025873:0,0,0 +(1,17893:-473656,-710413:0,0,0 +(1,17893:-473656,-644877:0,0,0 +k1,17893:-473656,-644877:-65536 ) -(1,17895:-473656,4736287:0,0,0 -k1,17895:-473656,4736287:5209943 +(1,17893:-473656,4736287:0,0,0 +k1,17893:-473656,4736287:5209943 ) -g1,17895:-473656,-710413 +g1,17893:-473656,-710413 ) ] ) -[1,17895:6630773,47279633:25952256,43253760,0 -[1,17895:6630773,4812305:25952256,786432,0 -(1,17895:6630773,4812305:25952256,0,0 -(1,17895:6630773,4812305:25952256,0,0 -g1,17895:3078558,4812305 -[1,17895:3078558,4812305:0,0,0 -(1,17895:3078558,2439708:0,1703936,0 -k1,17895:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17895:2537886,2439708:1179648,16384,0 +[1,17893:6630773,47279633:25952256,43253760,0 +[1,17893:6630773,4812305:25952256,786432,0 +(1,17893:6630773,4812305:25952256,0,0 +(1,17893:6630773,4812305:25952256,0,0 +g1,17893:3078558,4812305 +[1,17893:3078558,4812305:0,0,0 +(1,17893:3078558,2439708:0,1703936,0 +k1,17893:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17893:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17895:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17893:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17895:3078558,4812305:0,0,0 -(1,17895:3078558,2439708:0,1703936,0 -g1,17895:29030814,2439708 -g1,17895:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17895:36151628,1915420:16384,1179648,0 +[1,17893:3078558,4812305:0,0,0 +(1,17893:3078558,2439708:0,1703936,0 +g1,17893:29030814,2439708 +g1,17893:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17893:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17895:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17893:37855564,2439708:1179648,16384,0 ) ) -k1,17895:3078556,2439708:-34777008 +k1,17893:3078556,2439708:-34777008 ) ] -[1,17895:3078558,4812305:0,0,0 -(1,17895:3078558,49800853:0,16384,2228224 -k1,17895:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17895:2537886,49800853:1179648,16384,0 +[1,17893:3078558,4812305:0,0,0 +(1,17893:3078558,49800853:0,16384,2228224 +k1,17893:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17893:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17895:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17893:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,17895:3078558,4812305:0,0,0 -(1,17895:3078558,49800853:0,16384,2228224 -g1,17895:29030814,49800853 -g1,17895:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17895:36151628,51504789:16384,1179648,0 +[1,17893:3078558,4812305:0,0,0 +(1,17893:3078558,49800853:0,16384,2228224 +g1,17893:29030814,49800853 +g1,17893:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17893:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17895:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17893:37855564,49800853:1179648,16384,0 ) ) -k1,17895:3078556,49800853:-34777008 +k1,17893:3078556,49800853:-34777008 ) ] -g1,17895:6630773,4812305 +g1,17893:6630773,4812305 ) ) ] -[1,17895:6630773,45706769:25952256,40108032,0 -(1,17895:6630773,45706769:25952256,40108032,0 -(1,17895:6630773,45706769:0,0,0 -g1,17895:6630773,45706769 +[1,17893:6630773,45706769:25952256,40108032,0 +(1,17893:6630773,45706769:25952256,40108032,0 +(1,17893:6630773,45706769:0,0,0 +g1,17893:6630773,45706769 ) -[1,17895:6630773,45706769:25952256,40108032,0 -[1,17848:6630773,11797421:25952256,6198684,0 -(1,17848:6630773,6633157:25952256,1165492,28311 -h1,17848:6630773,6633157:0,0,0 -k1,17848:20096848,6633157:12486181 -k1,17848:32583029,6633157:12486181 +[1,17893:6630773,45706769:25952256,40108032,0 +[1,17846:6630773,11797421:25952256,6198684,0 +(1,17846:6630773,6633157:25952256,1165492,28311 +h1,17846:6630773,6633157:0,0,0 +k1,17846:20096848,6633157:12486181 +k1,17846:32583029,6633157:12486181 ) -(1,17848:6630773,7380277:25952256,32768,229376 -(1,17848:6630773,7380277:0,32768,229376 -(1,17848:6630773,7380277:5505024,32768,229376 -r1,17895:12135797,7380277:5505024,262144,229376 +(1,17846:6630773,7380277:25952256,32768,229376 +(1,17846:6630773,7380277:0,32768,229376 +(1,17846:6630773,7380277:5505024,32768,229376 +r1,17893:12135797,7380277:5505024,262144,229376 ) -k1,17848:6630773,7380277:-5505024 +k1,17846:6630773,7380277:-5505024 ) -(1,17848:6630773,7380277:25952256,32768,0 -r1,17895:32583029,7380277:25952256,32768,0 +(1,17846:6630773,7380277:25952256,32768,0 +r1,17893:32583029,7380277:25952256,32768,0 ) ) -(1,17848:6630773,9215293:25952256,923664,227671 -h1,17848:6630773,9215293:0,0,0 -g1,17848:7734924,9215293 -g1,17848:14237144,9215293 -g1,17848:20258068,9215293 -g1,17848:21725550,9215293 -k1,17848:29684045,9215293:2898984 -k1,17848:32583029,9215293:2898984 -) -(1,17848:6630773,9962413:25952256,32768,0 -(1,17848:6630773,9962413:5505024,32768,0 -r1,17895:12135797,9962413:5505024,32768,0 +(1,17846:6630773,9215293:25952256,923664,227671 +h1,17846:6630773,9215293:0,0,0 +g1,17846:7734924,9215293 +g1,17846:14237144,9215293 +g1,17846:20258068,9215293 +g1,17846:21725550,9215293 +k1,17846:29684045,9215293:2898984 +k1,17846:32583029,9215293:2898984 +) +(1,17846:6630773,9962413:25952256,32768,0 +(1,17846:6630773,9962413:5505024,32768,0 +r1,17893:12135797,9962413:5505024,32768,0 ) -k1,17848:22359413,9962413:10223616 -k1,17848:32583029,9962413:10223616 -) -] -(1,17850:6630773,14713778:25952256,131072,0 -r1,17895:32583029,14713778:25952256,131072,0 -g1,17850:32583029,14713778 -g1,17850:32583029,14713778 -) -(1,17852:6630773,16057271:25952256,505283,134348 -k1,17852:8596853,16057271:1966080 -k1,17851:10265006,16057271:493093 -k1,17851:14915703,16057271:493093 -k1,17851:18043998,16057271:493092 -k1,17851:20845269,16057271:493093 -k1,17851:22529807,16057271:493093 -k1,17851:23924020,16057271:493093 -k1,17851:24948610,16057271:493093 -k1,17851:26057741,16057271:493093 -k1,17851:28447445,16057271:493092 -k1,17851:29591966,16057271:493093 -k1,17851:32583029,16057271:1966080 -) -(1,17852:6630773,16922351:25952256,513147,134348 -g1,17852:8596853,16922351 -g1,17851:13682446,16922351 -g1,17851:16374665,16922351 -g1,17851:19662606,16922351 -g1,17851:20521127,16922351 -g1,17851:22735588,16922351 -g1,17851:24126262,16922351 -k1,17852:30616949,16922351:3787327 -g1,17852:32583029,16922351 -) -(1,17853:6630773,18573863:25952256,513147,11795 -k1,17853:16902232,18573863:10271459 -h1,17853:16902232,18573863:0,0,0 -g1,17853:19479107,18573863 -g1,17853:21900662,18573863 -g1,17853:24357606,18573863 -g1,17853:25208263,18573863 -g1,17853:28382827,18573863 -g1,17853:30616949,18573863 -g1,17853:32583029,18573863 -) -(1,17854:6630773,19438943:25952256,513147,126483 -k1,17854:17807284,19438943:11176511 -h1,17853:17783036,19438943:0,0,0 -g1,17853:18885351,19438943 -g1,17853:22013384,19438943 -g1,17853:23575762,19438943 -g1,17853:26178852,19438943 -g1,17853:27001328,19438943 -g1,17853:29042774,19438943 -g1,17854:30616949,19438943 -g1,17854:32583029,19438943 -) -(1,17854:6630773,20697239:25952256,131072,0 -r1,17895:32583029,20697239:25952256,131072,0 -g1,17854:32583029,20697239 -g1,17854:34549109,20697239 -) -(1,17875:6630773,24314831:25952256,32768,229376 -(1,17875:6630773,24314831:0,32768,229376 -(1,17875:6630773,24314831:5505024,32768,229376 -r1,17895:12135797,24314831:5505024,262144,229376 -) -k1,17875:6630773,24314831:-5505024 -) -(1,17875:6630773,24314831:25952256,32768,0 -r1,17895:32583029,24314831:25952256,32768,0 -) -) -(1,17875:6630773,25946683:25952256,615776,151780 -(1,17875:6630773,25946683:1974731,582746,14155 -g1,17875:6630773,25946683 -g1,17875:8605504,25946683 -) -g1,17875:10904245,25946683 -g1,17875:11961996,25946683 -g1,17875:13950883,25946683 -k1,17875:32583029,25946683:15515516 -g1,17875:32583029,25946683 -) -(1,17878:6630773,27204979:25952256,505283,134348 -k1,17877:8630126,27204979:188593 -k1,17877:10410590,27204979:188594 -k1,17877:11988546,27204979:188593 -k1,17877:14701586,27204979:188593 -k1,17877:17466399,27204979:188593 -k1,17877:18646553,27204979:188594 -k1,17877:21619115,27204979:188593 -k1,17877:22459136,27204979:188593 -k1,17877:23062562,27204979:188583 -k1,17877:25135970,27204979:188593 -k1,17877:26758491,27204979:188593 -k1,17877:27535598,27204979:188594 -k1,17877:30304343,27204979:188593 -k1,17877:32583029,27204979:0 -) -(1,17878:6630773,28070059:25952256,505283,134348 -k1,17877:9078099,28070059:225000 -k1,17877:11104029,28070059:225001 -k1,17877:12520474,28070059:225000 -k1,17877:15325627,28070059:225001 -k1,17877:18379160,28070059:225000 -k1,17877:21735471,28070059:225001 -k1,17877:23151916,28070059:225000 -k1,17877:25530430,28070059:225001 -k1,17877:27730108,28070059:225078 -k1,17877:28974193,28070059:225000 -k1,17877:30347385,28070059:225001 -k1,17877:31729095,28070059:225000 -k1,17878:32583029,28070059:0 -) -(1,17878:6630773,28935139:25952256,513147,134348 -k1,17877:7822268,28935139:201246 -k1,17877:9042599,28935139:201246 -k1,17877:10845545,28935139:201246 -k1,17877:13035153,28935139:201246 -k1,17877:14427844,28935139:201246 -k1,17877:17539544,28935139:201246 -k1,17877:19342489,28935139:201245 -k1,17877:22043934,28935139:201246 -k1,17877:24491099,28935139:201246 -k1,17877:27476314,28935139:201246 -k1,17877:28293598,28935139:201246 -k1,17877:28909685,28935139:201244 -k1,17877:30058582,28935139:201246 -k1,17877:32583029,28935139:0 -) -(1,17878:6630773,29800219:25952256,513147,134348 -k1,17877:8368586,29800219:174779 -k1,17877:10033655,29800219:174780 -k1,17877:11380873,29800219:174779 -k1,17877:14317996,29800219:174780 -k1,17877:15757620,29800219:174779 -k1,17877:16591691,29800219:174779 -k1,17877:19485560,29800219:174780 -k1,17877:22884710,29800219:174779 -k1,17877:24336130,29800219:174779 -k1,17877:26254823,29800219:174780 -k1,17877:27942828,29800219:174779 -k1,17877:28769036,29800219:174780 -k1,17877:31563944,29800219:174779 -k1,17877:32583029,29800219:0 -) -(1,17878:6630773,30665299:25952256,505283,134348 -k1,17877:9524389,30665299:181736 -k1,17877:12655901,30665299:181737 -k1,17877:15706803,30665299:181736 -k1,17877:17382106,30665299:181737 -k1,17877:18250004,30665299:181736 -k1,17877:19930548,30665299:181736 -k1,17877:21303730,30665299:181737 -k1,17877:24334316,30665299:181736 -k1,17877:25507612,30665299:181736 -k1,17877:28473318,30665299:181737 -k1,17877:29271092,30665299:181736 -k1,17877:30041342,30665299:181737 -k1,17877:31966991,30665299:181736 -k1,17877:32583029,30665299:0 -) -(1,17878:6630773,31530379:25952256,505283,134348 -g1,17877:8263930,31530379 -g1,17877:8878002,31530379 -g1,17877:10268676,31530379 -g1,17877:10823765,31530379 -g1,17877:12941888,31530379 -g1,17877:14297827,31530379 -g1,17877:15113094,31530379 -g1,17877:16331408,31530379 -g1,17877:18156584,31530379 -g1,17877:20935965,31530379 -g1,17877:23655054,31530379 -k1,17878:32583029,31530379:7074617 -g1,17878:32583029,31530379 -) -(1,17880:6630773,32395459:25952256,513147,134348 -h1,17879:6630773,32395459:983040,0,0 -k1,17879:8505405,32395459:263757 -k1,17879:9972403,32395459:263757 -k1,17879:12653783,32395459:263757 -k1,17879:14088013,32395459:263757 -k1,17879:15484232,32395459:263757 -k1,17879:17359519,32395459:263757 -k1,17879:18642362,32395459:263758 -k1,17879:21737930,32395459:263757 -k1,17879:22660979,32395459:263757 -k1,17879:23943821,32395459:263757 -k1,17879:26533451,32395459:263757 -k1,17879:29699798,32395459:263757 -k1,17879:30622847,32395459:263757 -k1,17880:32583029,32395459:0 -) -(1,17880:6630773,33260539:25952256,505283,134348 -k1,17879:7891733,33260539:222214 -k1,17879:8923317,33260539:222214 -k1,17879:11031002,33260539:222214 -k1,17879:13833367,33260539:222213 -k1,17879:16884114,33260539:222214 -k1,17879:17637825,33260539:222214 -k1,17879:19888378,33260539:222214 -k1,17879:21364296,33260539:222214 -k1,17879:22718972,33260539:222214 -k1,17879:24227002,33260539:222214 -k1,17879:26060745,33260539:222213 -k1,17879:27613340,33260539:222214 -k1,17879:28486982,33260539:222214 -k1,17879:30351528,33260539:222214 -k1,17879:32583029,33260539:0 -) -(1,17880:6630773,34125619:25952256,513147,134348 -k1,17879:8513118,34125619:165957 -k1,17879:9338368,34125619:165958 -k1,17879:10893688,34125619:165957 -k1,17879:12667244,34125619:165958 -k1,17879:14227152,34125619:165957 -k1,17879:16973261,34125619:165957 -k1,17879:20141422,34125619:165958 -k1,17879:21125268,34125619:165957 -k1,17879:21647085,34125619:165957 -k1,17879:25895936,34125619:165958 -k1,17879:26721185,34125619:165957 -k1,17879:27906228,34125619:165958 -k1,17879:31391584,34125619:165957 -k1,17879:32583029,34125619:0 -) -(1,17880:6630773,34990699:25952256,513147,134348 -k1,17879:9765142,34990699:160345 -k1,17879:10584779,34990699:160345 -k1,17879:13747327,34990699:160345 -k1,17879:15659449,34990699:160345 -k1,17879:19549447,34990699:160344 -k1,17879:22620246,34990699:160345 -k1,17879:25923042,34990699:160345 -k1,17879:26871785,34990699:160345 -k1,17879:31107814,34990699:160345 -k1,17879:32583029,34990699:0 -) -(1,17880:6630773,35855779:25952256,513147,126483 -k1,17879:8333935,35855779:193212 -k1,17879:11788219,35855779:193213 -k1,17879:13172876,35855779:193212 -k1,17879:16505919,35855779:193213 -k1,17879:17315169,35855779:193212 -k1,17879:19484292,35855779:193213 -k1,17879:23652263,35855779:193212 -k1,17879:26780178,35855779:193213 -k1,17879:27186376,35855779:193206 -k1,17879:28512051,35855779:193213 -k1,17879:30443278,35855779:193212 -k1,17879:32583029,35855779:0 -) -(1,17880:6630773,36720859:25952256,513147,134348 -g1,17879:7639372,36720859 -g1,17879:10418753,36720859 -g1,17879:13446515,36720859 -g1,17879:15021345,36720859 -g1,17879:17253501,36720859 -g1,17879:20764920,36720859 -g1,17879:21320009,36720859 -g1,17879:22652356,36720859 -g1,17879:23510877,36720859 -g1,17879:25406833,36720859 -k1,17880:32583029,36720859:3721138 -g1,17880:32583029,36720859 -) -(1,17881:6630773,39552019:25952256,32768,229376 -(1,17881:6630773,39552019:0,32768,229376 -(1,17881:6630773,39552019:5505024,32768,229376 -r1,17895:12135797,39552019:5505024,262144,229376 -) -k1,17881:6630773,39552019:-5505024 -) -(1,17881:6630773,39552019:25952256,32768,0 -r1,17895:32583029,39552019:25952256,32768,0 -) -) -(1,17881:6630773,41183871:25952256,606339,161218 -(1,17881:6630773,41183871:1974731,582746,14155 -g1,17881:6630773,41183871 -g1,17881:8605504,41183871 -) -g1,17881:12473177,41183871 -g1,17881:14672828,41183871 -g1,17881:15688112,41183871 -g1,17881:17676999,41183871 -k1,17881:32583029,41183871:11789400 -g1,17881:32583029,41183871 -) -(1,17886:6630773,42442167:25952256,513147,134348 -k1,17885:7270841,42442167:162311 -k1,17885:8452237,42442167:162311 -k1,17885:11525002,42442167:162311 -k1,17885:13200538,42442167:162310 -k1,17885:13978887,42442167:162311 -k1,17885:15344439,42442167:162311 -k1,17885:17924373,42442167:162311 -k1,17885:19078244,42442167:162311 -k1,17885:20306826,42442167:162311 -k1,17885:21434482,42442167:162311 -k1,17885:24334231,42442167:162310 -k1,17885:25112580,42442167:162311 -k1,17885:26733722,42442167:162311 -k1,17885:30145963,42442167:162311 -k1,17885:31478747,42442167:162311 -k1,17885:32583029,42442167:0 -) -(1,17886:6630773,43307247:25952256,505283,134348 -g1,17885:8799359,43307247 -g1,17885:10637643,43307247 -g1,17885:11523034,43307247 -g1,17885:13797788,43307247 -g1,17885:16039119,43307247 -g1,17885:16924510,43307247 -g1,17885:18512447,43307247 -g1,17885:19397838,43307247 -g1,17885:22177219,43307247 -g1,17885:26182778,43307247 -g1,17885:26913504,43307247 -g1,17885:29447125,43307247 -k1,17886:32583029,43307247:346037 -g1,17886:32583029,43307247 -) -v1,17888:6630773,43992102:0,393216,0 -(1,17892:6630773,44332785:25952256,733899,196608 -g1,17892:6630773,44332785 -g1,17892:6630773,44332785 -g1,17892:6434165,44332785 -(1,17892:6434165,44332785:0,733899,196608 -r1,17895:32779637,44332785:26345472,930507,196608 -k1,17892:6434165,44332785:-26345472 -) -(1,17892:6434165,44332785:26345472,733899,196608 -[1,17892:6630773,44332785:25952256,537291,0 -(1,17890:6630773,44219933:25952256,424439,112852 -(1,17889:6630773,44219933:0,0,0 -g1,17889:6630773,44219933 -g1,17889:6630773,44219933 -g1,17889:6303093,44219933 -(1,17889:6303093,44219933:0,0,0 -) -g1,17889:6630773,44219933 -) -k1,17890:6630773,44219933:0 -h1,17890:21236746,44219933:0,0,0 -k1,17890:32583029,44219933:11346283 -g1,17890:32583029,44219933 -) -] -) -g1,17892:32583029,44332785 -g1,17892:6630773,44332785 -g1,17892:6630773,44332785 -g1,17892:32583029,44332785 -g1,17892:32583029,44332785 -) -h1,17892:6630773,44529393:0,0,0 -] -(1,17895:32583029,45706769:0,0,0 -g1,17895:32583029,45706769 -) -) -] -(1,17895:6630773,47279633:25952256,485622,0 -(1,17895:6630773,47279633:25952256,485622,0 -(1,17895:6630773,47279633:0,0,0 -v1,17895:6630773,47279633:0,0,0 -) -g1,17895:6830002,47279633 -k1,17895:31387652,47279633:24557650 +k1,17846:22359413,9962413:10223616 +k1,17846:32583029,9962413:10223616 +) +] +(1,17848:6630773,14713778:25952256,131072,0 +r1,17893:32583029,14713778:25952256,131072,0 +g1,17848:32583029,14713778 +g1,17848:32583029,14713778 +) +(1,17850:6630773,16057271:25952256,505283,134348 +k1,17850:8596853,16057271:1966080 +k1,17849:10265006,16057271:493093 +k1,17849:14915703,16057271:493093 +k1,17849:18043998,16057271:493092 +k1,17849:20845269,16057271:493093 +k1,17849:22529807,16057271:493093 +k1,17849:23924020,16057271:493093 +k1,17849:24948610,16057271:493093 +k1,17849:26057741,16057271:493093 +k1,17849:28447445,16057271:493092 +k1,17849:29591966,16057271:493093 +k1,17849:32583029,16057271:1966080 +) +(1,17850:6630773,16922351:25952256,513147,134348 +g1,17850:8596853,16922351 +g1,17849:13682446,16922351 +g1,17849:16374665,16922351 +g1,17849:19662606,16922351 +g1,17849:20521127,16922351 +g1,17849:22735588,16922351 +g1,17849:24126262,16922351 +k1,17850:30616949,16922351:3787327 +g1,17850:32583029,16922351 +) +(1,17851:6630773,18573863:25952256,513147,11795 +k1,17851:16902232,18573863:10271459 +h1,17851:16902232,18573863:0,0,0 +g1,17851:19479107,18573863 +g1,17851:21900662,18573863 +g1,17851:24357606,18573863 +g1,17851:25208263,18573863 +g1,17851:28382827,18573863 +g1,17851:30616949,18573863 +g1,17851:32583029,18573863 +) +(1,17852:6630773,19438943:25952256,513147,126483 +k1,17852:17807284,19438943:11176511 +h1,17851:17783036,19438943:0,0,0 +g1,17851:18885351,19438943 +g1,17851:22013384,19438943 +g1,17851:23575762,19438943 +g1,17851:26178852,19438943 +g1,17851:27001328,19438943 +g1,17851:29042774,19438943 +g1,17852:30616949,19438943 +g1,17852:32583029,19438943 +) +(1,17852:6630773,20697239:25952256,131072,0 +r1,17893:32583029,20697239:25952256,131072,0 +g1,17852:32583029,20697239 +g1,17852:34549109,20697239 +) +(1,17873:6630773,24314831:25952256,32768,229376 +(1,17873:6630773,24314831:0,32768,229376 +(1,17873:6630773,24314831:5505024,32768,229376 +r1,17893:12135797,24314831:5505024,262144,229376 +) +k1,17873:6630773,24314831:-5505024 +) +(1,17873:6630773,24314831:25952256,32768,0 +r1,17893:32583029,24314831:25952256,32768,0 +) +) +(1,17873:6630773,25946683:25952256,615776,151780 +(1,17873:6630773,25946683:1974731,582746,14155 +g1,17873:6630773,25946683 +g1,17873:8605504,25946683 +) +g1,17873:10904245,25946683 +g1,17873:11961996,25946683 +g1,17873:13950883,25946683 +k1,17873:32583029,25946683:15515516 +g1,17873:32583029,25946683 +) +(1,17876:6630773,27204979:25952256,505283,134348 +k1,17875:8630126,27204979:188593 +k1,17875:10410590,27204979:188594 +k1,17875:11988546,27204979:188593 +k1,17875:14701586,27204979:188593 +k1,17875:17466399,27204979:188593 +k1,17875:18646553,27204979:188594 +k1,17875:21619115,27204979:188593 +k1,17875:22459136,27204979:188593 +k1,17875:23062562,27204979:188583 +k1,17875:25135970,27204979:188593 +k1,17875:26758491,27204979:188593 +k1,17875:27535598,27204979:188594 +k1,17875:30304343,27204979:188593 +k1,17875:32583029,27204979:0 +) +(1,17876:6630773,28070059:25952256,505283,134348 +k1,17875:9078099,28070059:225000 +k1,17875:11104029,28070059:225001 +k1,17875:12520474,28070059:225000 +k1,17875:15325627,28070059:225001 +k1,17875:18379160,28070059:225000 +k1,17875:21735471,28070059:225001 +k1,17875:23151916,28070059:225000 +k1,17875:25530430,28070059:225001 +k1,17875:27730108,28070059:225078 +k1,17875:28974193,28070059:225000 +k1,17875:30347385,28070059:225001 +k1,17875:31729095,28070059:225000 +k1,17876:32583029,28070059:0 +) +(1,17876:6630773,28935139:25952256,513147,134348 +k1,17875:7822268,28935139:201246 +k1,17875:9042599,28935139:201246 +k1,17875:10845545,28935139:201246 +k1,17875:13035153,28935139:201246 +k1,17875:14427844,28935139:201246 +k1,17875:17539544,28935139:201246 +k1,17875:19342489,28935139:201245 +k1,17875:22043934,28935139:201246 +k1,17875:24491099,28935139:201246 +k1,17875:27476314,28935139:201246 +k1,17875:28293598,28935139:201246 +k1,17875:28909685,28935139:201244 +k1,17875:30058582,28935139:201246 +k1,17875:32583029,28935139:0 +) +(1,17876:6630773,29800219:25952256,513147,134348 +k1,17875:8368586,29800219:174779 +k1,17875:10033655,29800219:174780 +k1,17875:11380873,29800219:174779 +k1,17875:14317996,29800219:174780 +k1,17875:15757620,29800219:174779 +k1,17875:16591691,29800219:174779 +k1,17875:19485560,29800219:174780 +k1,17875:22884710,29800219:174779 +k1,17875:24336130,29800219:174779 +k1,17875:26254823,29800219:174780 +k1,17875:27942828,29800219:174779 +k1,17875:28769036,29800219:174780 +k1,17875:31563944,29800219:174779 +k1,17875:32583029,29800219:0 +) +(1,17876:6630773,30665299:25952256,505283,134348 +k1,17875:9524389,30665299:181736 +k1,17875:12655901,30665299:181737 +k1,17875:15706803,30665299:181736 +k1,17875:17382106,30665299:181737 +k1,17875:18250004,30665299:181736 +k1,17875:19930548,30665299:181736 +k1,17875:21303730,30665299:181737 +k1,17875:24334316,30665299:181736 +k1,17875:25507612,30665299:181736 +k1,17875:28473318,30665299:181737 +k1,17875:29271092,30665299:181736 +k1,17875:30041342,30665299:181737 +k1,17875:31966991,30665299:181736 +k1,17875:32583029,30665299:0 +) +(1,17876:6630773,31530379:25952256,505283,134348 +g1,17875:8263930,31530379 +g1,17875:8878002,31530379 +g1,17875:10268676,31530379 +g1,17875:10823765,31530379 +g1,17875:12941888,31530379 +g1,17875:14297827,31530379 +g1,17875:15113094,31530379 +g1,17875:16331408,31530379 +g1,17875:18156584,31530379 +g1,17875:20935965,31530379 +g1,17875:23655054,31530379 +k1,17876:32583029,31530379:7074617 +g1,17876:32583029,31530379 +) +(1,17878:6630773,32395459:25952256,513147,134348 +h1,17877:6630773,32395459:983040,0,0 +k1,17877:8505405,32395459:263757 +k1,17877:9972403,32395459:263757 +k1,17877:12653783,32395459:263757 +k1,17877:14088013,32395459:263757 +k1,17877:15484232,32395459:263757 +k1,17877:17359519,32395459:263757 +k1,17877:18642362,32395459:263758 +k1,17877:21737930,32395459:263757 +k1,17877:22660979,32395459:263757 +k1,17877:23943821,32395459:263757 +k1,17877:26533451,32395459:263757 +k1,17877:29699798,32395459:263757 +k1,17877:30622847,32395459:263757 +k1,17878:32583029,32395459:0 +) +(1,17878:6630773,33260539:25952256,505283,134348 +k1,17877:7891733,33260539:222214 +k1,17877:8923317,33260539:222214 +k1,17877:11031002,33260539:222214 +k1,17877:13833367,33260539:222213 +k1,17877:16884114,33260539:222214 +k1,17877:17637825,33260539:222214 +k1,17877:19888378,33260539:222214 +k1,17877:21364296,33260539:222214 +k1,17877:22718972,33260539:222214 +k1,17877:24227002,33260539:222214 +k1,17877:26060745,33260539:222213 +k1,17877:27613340,33260539:222214 +k1,17877:28486982,33260539:222214 +k1,17877:30351528,33260539:222214 +k1,17877:32583029,33260539:0 +) +(1,17878:6630773,34125619:25952256,513147,134348 +k1,17877:8513118,34125619:165957 +k1,17877:9338368,34125619:165958 +k1,17877:10893688,34125619:165957 +k1,17877:12667244,34125619:165958 +k1,17877:14227152,34125619:165957 +k1,17877:16973261,34125619:165957 +k1,17877:20141422,34125619:165958 +k1,17877:21125268,34125619:165957 +k1,17877:21647085,34125619:165957 +k1,17877:25895936,34125619:165958 +k1,17877:26721185,34125619:165957 +k1,17877:27906228,34125619:165958 +k1,17877:31391584,34125619:165957 +k1,17877:32583029,34125619:0 +) +(1,17878:6630773,34990699:25952256,513147,134348 +k1,17877:9765142,34990699:160345 +k1,17877:10584779,34990699:160345 +k1,17877:13747327,34990699:160345 +k1,17877:15659449,34990699:160345 +k1,17877:19549447,34990699:160344 +k1,17877:22620246,34990699:160345 +k1,17877:25923042,34990699:160345 +k1,17877:26871785,34990699:160345 +k1,17877:31107814,34990699:160345 +k1,17877:32583029,34990699:0 +) +(1,17878:6630773,35855779:25952256,513147,126483 +k1,17877:8333935,35855779:193212 +k1,17877:11788219,35855779:193213 +k1,17877:13172876,35855779:193212 +k1,17877:16505919,35855779:193213 +k1,17877:17315169,35855779:193212 +k1,17877:19484292,35855779:193213 +k1,17877:23652263,35855779:193212 +k1,17877:26780178,35855779:193213 +k1,17877:27186376,35855779:193206 +k1,17877:28512051,35855779:193213 +k1,17877:30443278,35855779:193212 +k1,17877:32583029,35855779:0 +) +(1,17878:6630773,36720859:25952256,513147,134348 +g1,17877:7639372,36720859 +g1,17877:10418753,36720859 +g1,17877:13446515,36720859 +g1,17877:15021345,36720859 +g1,17877:17253501,36720859 +g1,17877:20764920,36720859 +g1,17877:21320009,36720859 +g1,17877:22652356,36720859 +g1,17877:23510877,36720859 +g1,17877:25406833,36720859 +k1,17878:32583029,36720859:3721138 +g1,17878:32583029,36720859 +) +(1,17879:6630773,39552019:25952256,32768,229376 +(1,17879:6630773,39552019:0,32768,229376 +(1,17879:6630773,39552019:5505024,32768,229376 +r1,17893:12135797,39552019:5505024,262144,229376 +) +k1,17879:6630773,39552019:-5505024 +) +(1,17879:6630773,39552019:25952256,32768,0 +r1,17893:32583029,39552019:25952256,32768,0 +) +) +(1,17879:6630773,41183871:25952256,606339,161218 +(1,17879:6630773,41183871:1974731,582746,14155 +g1,17879:6630773,41183871 +g1,17879:8605504,41183871 +) +g1,17879:12473177,41183871 +g1,17879:14672828,41183871 +g1,17879:15688112,41183871 +g1,17879:17676999,41183871 +k1,17879:32583029,41183871:11789400 +g1,17879:32583029,41183871 +) +(1,17884:6630773,42442167:25952256,513147,134348 +k1,17883:7270841,42442167:162311 +k1,17883:8452237,42442167:162311 +k1,17883:11525002,42442167:162311 +k1,17883:13200538,42442167:162310 +k1,17883:13978887,42442167:162311 +k1,17883:15344439,42442167:162311 +k1,17883:17924373,42442167:162311 +k1,17883:19078244,42442167:162311 +k1,17883:20306826,42442167:162311 +k1,17883:21434482,42442167:162311 +k1,17883:24334231,42442167:162310 +k1,17883:25112580,42442167:162311 +k1,17883:26733722,42442167:162311 +k1,17883:30145963,42442167:162311 +k1,17883:31478747,42442167:162311 +k1,17883:32583029,42442167:0 +) +(1,17884:6630773,43307247:25952256,505283,134348 +g1,17883:8799359,43307247 +g1,17883:10637643,43307247 +g1,17883:11523034,43307247 +g1,17883:13797788,43307247 +g1,17883:16039119,43307247 +g1,17883:16924510,43307247 +g1,17883:18512447,43307247 +g1,17883:19397838,43307247 +g1,17883:22177219,43307247 +g1,17883:26182778,43307247 +g1,17883:26913504,43307247 +g1,17883:29447125,43307247 +k1,17884:32583029,43307247:346037 +g1,17884:32583029,43307247 +) +v1,17886:6630773,43992102:0,393216,0 +(1,17890:6630773,44332785:25952256,733899,196608 +g1,17890:6630773,44332785 +g1,17890:6630773,44332785 +g1,17890:6434165,44332785 +(1,17890:6434165,44332785:0,733899,196608 +r1,17893:32779637,44332785:26345472,930507,196608 +k1,17890:6434165,44332785:-26345472 +) +(1,17890:6434165,44332785:26345472,733899,196608 +[1,17890:6630773,44332785:25952256,537291,0 +(1,17888:6630773,44219933:25952256,424439,112852 +(1,17887:6630773,44219933:0,0,0 +g1,17887:6630773,44219933 +g1,17887:6630773,44219933 +g1,17887:6303093,44219933 +(1,17887:6303093,44219933:0,0,0 +) +g1,17887:6630773,44219933 +) +k1,17888:6630773,44219933:0 +h1,17888:21236746,44219933:0,0,0 +k1,17888:32583029,44219933:11346283 +g1,17888:32583029,44219933 +) +] +) +g1,17890:32583029,44332785 +g1,17890:6630773,44332785 +g1,17890:6630773,44332785 +g1,17890:32583029,44332785 +g1,17890:32583029,44332785 +) +h1,17890:6630773,44529393:0,0,0 +] +(1,17893:32583029,45706769:0,0,0 +g1,17893:32583029,45706769 +) +) +] +(1,17893:6630773,47279633:25952256,485622,0 +(1,17893:6630773,47279633:25952256,485622,0 +(1,17893:6630773,47279633:0,0,0 +v1,17893:6630773,47279633:0,0,0 +) +g1,17893:6830002,47279633 +k1,17893:31387652,47279633:24557650 ) -) -] -(1,17895:4262630,4025873:0,0,0 -[1,17895:-473656,4025873:0,0,0 -(1,17895:-473656,-710413:0,0,0 -(1,17895:-473656,-710413:0,0,0 -g1,17895:-473656,-710413 -) -g1,17895:-473656,-710413 +) +] +(1,17893:4262630,4025873:0,0,0 +[1,17893:-473656,4025873:0,0,0 +(1,17893:-473656,-710413:0,0,0 +(1,17893:-473656,-710413:0,0,0 +g1,17893:-473656,-710413 +) +g1,17893:-473656,-710413 ) ] ) ] !15189 -}286 +}287 !12 -{287 -[1,17929:4262630,47279633:28320399,43253760,0 -(1,17929:4262630,4025873:0,0,0 -[1,17929:-473656,4025873:0,0,0 -(1,17929:-473656,-710413:0,0,0 -(1,17929:-473656,-644877:0,0,0 -k1,17929:-473656,-644877:-65536 +{288 +[1,17927:4262630,47279633:28320399,43253760,0 +(1,17927:4262630,4025873:0,0,0 +[1,17927:-473656,4025873:0,0,0 +(1,17927:-473656,-710413:0,0,0 +(1,17927:-473656,-644877:0,0,0 +k1,17927:-473656,-644877:-65536 ) -(1,17929:-473656,4736287:0,0,0 -k1,17929:-473656,4736287:5209943 +(1,17927:-473656,4736287:0,0,0 +k1,17927:-473656,4736287:5209943 ) -g1,17929:-473656,-710413 +g1,17927:-473656,-710413 ) ] ) -[1,17929:6630773,47279633:25952256,43253760,0 -[1,17929:6630773,4812305:25952256,786432,0 -(1,17929:6630773,4812305:25952256,513147,126483 -(1,17929:6630773,4812305:25952256,513147,126483 -g1,17929:3078558,4812305 -[1,17929:3078558,4812305:0,0,0 -(1,17929:3078558,2439708:0,1703936,0 -k1,17929:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17929:2537886,2439708:1179648,16384,0 +[1,17927:6630773,47279633:25952256,43253760,0 +[1,17927:6630773,4812305:25952256,786432,0 +(1,17927:6630773,4812305:25952256,513147,126483 +(1,17927:6630773,4812305:25952256,513147,126483 +g1,17927:3078558,4812305 +[1,17927:3078558,4812305:0,0,0 +(1,17927:3078558,2439708:0,1703936,0 +k1,17927:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17927:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17929:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17927:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17929:3078558,4812305:0,0,0 -(1,17929:3078558,2439708:0,1703936,0 -g1,17929:29030814,2439708 -g1,17929:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17929:36151628,1915420:16384,1179648,0 +[1,17927:3078558,4812305:0,0,0 +(1,17927:3078558,2439708:0,1703936,0 +g1,17927:29030814,2439708 +g1,17927:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17927:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17929:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17927:37855564,2439708:1179648,16384,0 ) ) -k1,17929:3078556,2439708:-34777008 +k1,17927:3078556,2439708:-34777008 ) ] -[1,17929:3078558,4812305:0,0,0 -(1,17929:3078558,49800853:0,16384,2228224 -k1,17929:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17929:2537886,49800853:1179648,16384,0 +[1,17927:3078558,4812305:0,0,0 +(1,17927:3078558,49800853:0,16384,2228224 +k1,17927:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17927:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17929:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17927:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] -) -) -) +) +) +) ] -[1,17929:3078558,4812305:0,0,0 -(1,17929:3078558,49800853:0,16384,2228224 -g1,17929:29030814,49800853 -g1,17929:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17929:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17929:37855564,49800853:1179648,16384,0 -) -) -k1,17929:3078556,49800853:-34777008 -) -] -g1,17929:6630773,4812305 -k1,17929:21386205,4812305:13560055 -g1,17929:21999622,4812305 -g1,17929:25611966,4812305 -g1,17929:28956923,4812305 -g1,17929:29772190,4812305 -) -) -] -[1,17929:6630773,45706769:25952256,40108032,0 -(1,17929:6630773,45706769:25952256,40108032,0 -(1,17929:6630773,45706769:0,0,0 -g1,17929:6630773,45706769 -) -[1,17929:6630773,45706769:25952256,40108032,0 -(1,17897:6630773,6254097:25952256,513147,126483 -h1,17896:6630773,6254097:983040,0,0 -k1,17896:8621897,6254097:179054 -k1,17896:9918994,6254097:179053 -k1,17896:11117133,6254097:179054 -k1,17896:14287905,6254097:179053 -k1,17896:17225369,6254097:179054 -k1,17896:18020460,6254097:179053 -k1,17896:19402755,6254097:179054 -k1,17896:22173103,6254097:179054 -k1,17896:23522629,6254097:179053 -k1,17896:25231949,6254097:179054 -k1,17896:26717135,6254097:179053 -k1,17896:27547617,6254097:179054 -k1,17896:29102926,6254097:179053 -k1,17896:30974120,6254097:179054 -k1,17897:32583029,6254097:0 -) -(1,17897:6630773,7119177:25952256,513147,134348 -k1,17896:8264667,7119177:226181 -k1,17896:10058469,7119177:226181 -k1,17896:11303735,7119177:226181 -k1,17896:13630345,7119177:226181 -k1,17896:15088603,7119177:226181 -k1,17896:17593471,7119177:226181 -h1,17896:18564059,7119177:0,0,0 -k1,17896:18790240,7119177:226181 -k1,17896:19825791,7119177:226181 -k1,17896:21550125,7119177:226181 -h1,17896:22745502,7119177:0,0,0 -k1,17896:22971683,7119177:226181 -k1,17896:24145515,7119177:226181 -k1,17896:26489164,7119177:226181 -k1,17896:27524715,7119177:226181 -k1,17896:28769981,7119177:226181 -k1,17896:30088647,7119177:226181 -k1,17896:30974120,7119177:226181 -k1,17897:32583029,7119177:0 -) -(1,17897:6630773,7984257:25952256,505283,134348 -k1,17897:32583029,7984257:24285020 -g1,17897:32583029,7984257 -) -v1,17899:6630773,8669112:0,393216,0 -(1,17914:6630773,16536594:25952256,8260698,196608 -g1,17914:6630773,16536594 -g1,17914:6630773,16536594 -g1,17914:6434165,16536594 -(1,17914:6434165,16536594:0,8260698,196608 -r1,17929:32779637,16536594:26345472,8457306,196608 -k1,17914:6434165,16536594:-26345472 -) -(1,17914:6434165,16536594:26345472,8260698,196608 -[1,17914:6630773,16536594:25952256,8064090,0 -(1,17901:6630773,8896943:25952256,424439,106246 -(1,17900:6630773,8896943:0,0,0 -g1,17900:6630773,8896943 -g1,17900:6630773,8896943 -g1,17900:6303093,8896943 -(1,17900:6303093,8896943:0,0,0 -) -g1,17900:6630773,8896943 -) -k1,17901:6630773,8896943:0 -h1,17901:12937898,8896943:0,0,0 -k1,17901:32583030,8896943:19645132 -g1,17901:32583030,8896943 -) -(1,17902:6630773,9581798:25952256,424439,106246 -h1,17902:6630773,9581798:0,0,0 -k1,17902:6630773,9581798:0 -h1,17902:11610082,9581798:0,0,0 -k1,17902:32583030,9581798:20972948 -g1,17902:32583030,9581798 -) -(1,17903:6630773,10266653:25952256,424439,112852 -h1,17903:6630773,10266653:0,0,0 -k1,17903:6630773,10266653:0 -h1,17903:11942036,10266653:0,0,0 -k1,17903:32583028,10266653:20640992 -g1,17903:32583028,10266653 -) -(1,17904:6630773,10951508:25952256,424439,112852 -h1,17904:6630773,10951508:0,0,0 -k1,17904:6630773,10951508:0 -h1,17904:11942036,10951508:0,0,0 -k1,17904:32583028,10951508:20640992 -g1,17904:32583028,10951508 -) -(1,17905:6630773,11636363:25952256,424439,112852 -h1,17905:6630773,11636363:0,0,0 -k1,17905:6630773,11636363:0 -h1,17905:12605944,11636363:0,0,0 -k1,17905:32583028,11636363:19977084 -g1,17905:32583028,11636363 -) -(1,17906:6630773,12321218:25952256,424439,106246 -h1,17906:6630773,12321218:0,0,0 -k1,17906:6630773,12321218:0 -h1,17906:11278129,12321218:0,0,0 -k1,17906:32583029,12321218:21304900 -g1,17906:32583029,12321218 -) -(1,17907:6630773,13006073:25952256,424439,112852 -h1,17907:6630773,13006073:0,0,0 -k1,17907:6630773,13006073:0 -h1,17907:11942036,13006073:0,0,0 -k1,17907:32583028,13006073:20640992 -g1,17907:32583028,13006073 -) -(1,17908:6630773,13690928:25952256,424439,112852 -h1,17908:6630773,13690928:0,0,0 -k1,17908:6630773,13690928:0 -h1,17908:12937898,13690928:0,0,0 -k1,17908:32583030,13690928:19645132 -g1,17908:32583030,13690928 -) -(1,17909:6630773,14375783:25952256,424439,106246 -h1,17909:6630773,14375783:0,0,0 -k1,17909:6630773,14375783:0 -h1,17909:12605944,14375783:0,0,0 -k1,17909:32583028,14375783:19977084 -g1,17909:32583028,14375783 -) -(1,17910:6630773,15060638:25952256,424439,106246 -h1,17910:6630773,15060638:0,0,0 -k1,17910:6630773,15060638:0 -h1,17910:11610082,15060638:0,0,0 -k1,17910:32583030,15060638:20972948 -g1,17910:32583030,15060638 -) -(1,17911:6630773,15745493:25952256,424439,106246 -h1,17911:6630773,15745493:0,0,0 -k1,17911:6630773,15745493:0 -h1,17911:11278129,15745493:0,0,0 -k1,17911:32583029,15745493:21304900 -g1,17911:32583029,15745493 -) -(1,17912:6630773,16430348:25952256,424439,106246 -h1,17912:6630773,16430348:0,0,0 -k1,17912:6630773,16430348:0 -h1,17912:12605944,16430348:0,0,0 -k1,17912:32583028,16430348:19977084 -g1,17912:32583028,16430348 -) -] -) -g1,17914:32583029,16536594 -g1,17914:6630773,16536594 -g1,17914:6630773,16536594 -g1,17914:32583029,16536594 -g1,17914:32583029,16536594 -) -h1,17914:6630773,16733202:0,0,0 -(1,17921:6630773,19564362:25952256,32768,229376 -(1,17921:6630773,19564362:0,32768,229376 -(1,17921:6630773,19564362:5505024,32768,229376 -r1,17929:12135797,19564362:5505024,262144,229376 -) -k1,17921:6630773,19564362:-5505024 -) -(1,17921:6630773,19564362:25952256,32768,0 -r1,17929:32583029,19564362:25952256,32768,0 -) -) -(1,17921:6630773,21196214:25952256,615776,151780 -(1,17921:6630773,21196214:1974731,582746,14155 -g1,17921:6630773,21196214 -g1,17921:8605504,21196214 -) -g1,17921:10368685,21196214 -g1,17921:15605536,21196214 -g1,17921:16663287,21196214 -g1,17921:17345910,21196214 -k1,17921:32583029,21196214:13707509 -g1,17921:32583029,21196214 -) -(1,17923:6630773,22454510:25952256,513147,134348 -k1,17922:7098113,22454510:254348 -k1,17922:8840840,22454510:254404 -k1,17922:9856772,22454510:254404 -k1,17922:12144102,22454510:254403 -k1,17922:15794582,22454510:254404 -k1,17922:18880797,22454510:254404 -k1,17922:21337210,22454510:254403 -k1,17922:22243042,22454510:254404 -k1,17922:23886809,22454510:254404 -k1,17922:28334205,22454510:254403 -k1,17922:31563944,22454510:254404 -k1,17922:32583029,22454510:0 -) -(1,17923:6630773,23319590:25952256,505283,126483 -k1,17922:8325811,23319590:160840 -k1,17922:12536776,23319590:160840 -k1,17922:15930507,23319590:160840 -k1,17922:19149257,23319590:160840 -k1,17922:20501542,23319590:160840 -k1,17922:22756913,23319590:160840 -k1,17922:24892583,23319590:161070 -k1,17922:26615801,23319590:160840 -k1,17922:27768201,23319590:160840 -k1,17922:28284901,23319590:160840 -k1,17922:31069803,23319590:160840 -k1,17922:32583029,23319590:0 -) -(1,17923:6630773,24184670:25952256,513147,134348 -k1,17922:7448335,24184670:166134 -k1,17922:9823031,24184670:166133 -k1,17922:13969822,24184670:166134 -k1,17922:15282181,24184670:166134 -k1,17922:16848164,24184670:166134 -k1,17922:17484190,24184670:166133 -k1,17922:18181821,24184670:166134 -k1,17922:21913114,24184670:166134 -k1,17922:24577479,24184670:166133 -k1,17922:25946854,24184670:166134 -k1,17922:26729026,24184670:166134 -k1,17922:28725581,24184670:166134 -k1,17922:29709603,24184670:166133 -k1,17922:31269688,24184670:166134 -k1,17922:32583029,24184670:0 -) -(1,17923:6630773,25049750:25952256,513147,134348 -k1,17922:7865705,25049750:215847 -k1,17922:10170185,25049750:215848 -k1,17922:11045324,25049750:215847 -k1,17922:12868770,25049750:215848 -k1,17922:14945184,25049750:215847 -k1,17922:15812460,25049750:215848 -k1,17922:18759192,25049750:215847 -k1,17922:20523655,25049750:215847 -k1,17922:22600070,25049750:215848 -k1,17922:23467345,25049750:215847 -k1,17922:24430959,25049750:215848 -k1,17922:28272258,25049750:215847 -k1,17922:29139534,25049750:215848 -k1,17922:31563944,25049750:215847 -k1,17922:32583029,25049750:0 -) -(1,17923:6630773,25914830:25952256,513147,134348 -k1,17922:8204595,25914830:221159 -k1,17922:10202434,25914830:221158 -k1,17922:13302590,25914830:221159 -k1,17922:14720436,25914830:221159 -k1,17922:16442368,25914830:221158 -k1,17922:17322819,25914830:221159 -k1,17922:18563063,25914830:221159 -k1,17922:20061519,25914830:221159 -k1,17922:22463060,25914830:221158 -k1,17922:24665372,25914830:221159 -k1,17922:25905616,25914830:221159 -k1,17922:30151340,25914830:221158 -k1,17922:31563944,25914830:221159 -k1,17922:32583029,25914830:0 -) -(1,17923:6630773,26779910:25952256,513147,134348 -k1,17922:10766204,26779910:242592 -k1,17922:13508340,26779910:242593 -k1,17922:14410224,26779910:242592 -k1,17922:15671901,26779910:242592 -k1,17922:18753514,26779910:242593 -k1,17922:22005519,26779910:242592 -k1,17922:23519509,26779910:242592 -k1,17922:25622669,26779910:242593 -k1,17922:26516689,26779910:242592 -k1,17922:27507047,26779910:242592 -k1,17922:29959514,26779910:242593 -k1,17922:30853534,26779910:242592 -k1,17922:32583029,26779910:0 -) -(1,17923:6630773,27644990:25952256,513147,134348 -k1,17922:10600550,27644990:266338 -k1,17922:12058333,27644990:266338 -k1,17922:13926371,27644990:266338 -k1,17922:17968238,27644990:266338 -k1,17922:18893869,27644990:266339 -k1,17922:19926323,27644990:266338 -k1,17922:21258932,27644990:266338 -k1,17922:22176698,27644990:266338 -k1,17922:26495127,27644990:266338 -k1,17922:28233404,27644990:266338 -k1,17922:32583029,27644990:0 -) -(1,17923:6630773,28510070:25952256,505283,134348 -k1,17922:8056236,28510070:279238 -k1,17922:9561653,28510070:279238 -k1,17922:11371157,28510070:279238 -k1,17922:12301822,28510070:279237 -k1,17922:13328826,28510070:279238 -k1,17922:16361231,28510070:279238 -k1,17922:19106589,28510070:279238 -k1,17922:23141040,28510070:279238 -k1,17922:25238902,28510070:279238 -k1,17922:27810588,28510070:279237 -k1,17922:29791796,28510070:279238 -k1,17922:31563944,28510070:279238 -k1,17922:32583029,28510070:0 -) -(1,17923:6630773,29375150:25952256,513147,134348 -k1,17922:8232775,29375150:267034 -k1,17922:9737784,29375150:267034 -k1,17922:10664110,29375150:267034 -k1,17922:14350813,29375150:267034 -k1,17922:15715575,29375150:267034 -k1,17922:18687935,29375150:267034 -k1,17922:19486465,29375150:267033 -k1,17922:21836889,29375150:267034 -k1,17922:23300610,29375150:267034 -k1,17922:26541668,29375150:267034 -k1,17922:27467994,29375150:267034 -k1,17922:28754113,29375150:267034 -k1,17922:31923737,29375150:267034 -k1,17922:32583029,29375150:0 -) -(1,17923:6630773,30240230:25952256,505283,134348 -k1,17922:9512153,30240230:162291 -k1,17922:12531158,30240230:162291 -k1,17922:14047422,30240230:162290 -k1,17922:15488320,30240230:162291 -k1,17922:16853852,30240230:162291 -k1,17922:20000653,30240230:162291 -k1,17922:20814372,30240230:162291 -k1,17922:24055544,30240230:162291 -k1,17922:25409279,30240230:162290 -k1,17922:28834608,30240230:162291 -k1,17922:30401991,30240230:162291 -k1,17922:32583029,30240230:0 -) -(1,17923:6630773,31105310:25952256,513147,7863 -g1,17922:8219365,31105310 -g1,17922:12768219,31105310 -g1,17922:13915099,31105310 -g1,17922:16876671,31105310 -k1,17923:32583029,31105310:12487885 -g1,17923:32583029,31105310 -) -(1,17925:6630773,31970390:25952256,513147,134348 -h1,17924:6630773,31970390:983040,0,0 -k1,17924:8581184,31970390:193391 -k1,17924:11057194,31970390:193391 -k1,17924:12948623,31970390:193391 -k1,17924:16153393,31970390:193391 -k1,17924:17736147,31970390:193391 -k1,17924:19659687,31970390:193390 -k1,17924:21970546,31970390:193391 -k1,17924:22823229,31970390:193391 -k1,17924:25966395,31970390:193391 -k1,17924:28248418,31970390:193391 -k1,17924:29433369,31970390:193391 -k1,17924:32583029,31970390:0 -) -(1,17925:6630773,32835470:25952256,513147,126483 -k1,17924:7882885,32835470:179943 -k1,17924:11036852,32835470:179943 -k1,17924:13774665,32835470:179943 -k1,17924:17163906,32835470:179943 -k1,17924:18030011,32835470:179943 -k1,17924:18668051,32835470:179943 -k1,17924:20894028,32835470:179943 -k1,17924:21532068,32835470:179943 -k1,17924:24341971,32835470:179943 -k1,17924:25173342,32835470:179943 -k1,17924:26740027,32835470:179943 -k1,17924:27532732,32835470:179943 -k1,17924:29102038,32835470:179943 -k1,17924:30849602,32835470:179943 -k1,17924:32583029,32835470:0 -) -(1,17925:6630773,33700550:25952256,513147,134348 -k1,17924:9563673,33700550:199393 -k1,17924:11964420,33700550:199393 -k1,17924:16011433,33700550:199394 -k1,17924:18973169,33700550:199393 -k1,17924:21547587,33700550:199393 -k1,17924:22406272,33700550:199393 -k1,17924:24418391,33700550:199393 -k1,17924:25245619,33700550:199393 -k1,17924:26464098,33700550:199394 -k1,17924:28316964,33700550:199393 -k1,17924:29754332,33700550:199393 -k1,17924:30639887,33700550:199393 -k1,17925:32583029,33700550:0 -) -(1,17925:6630773,34565630:25952256,513147,126483 -k1,17924:8471083,34565630:254339 -k1,17924:9951601,34565630:254339 -k1,17924:11397386,34565630:254340 -k1,17924:12877904,34565630:254339 -k1,17924:16272728,34565630:254339 -k1,17924:18002282,34565630:254339 -k1,17924:20653928,34565630:254339 -k1,17924:21980436,34565630:254339 -k1,17924:24487248,34565630:254340 -k1,17924:26338044,34565630:254339 -k1,17924:29557232,34565630:254339 -k1,17924:32583029,34565630:0 -) -(1,17925:6630773,35430710:25952256,513147,134348 -k1,17924:7782896,35430710:204472 -k1,17924:11250407,35430710:204473 -k1,17924:13062477,35430710:204472 -k1,17924:14082217,35430710:204472 -k1,17924:15352960,35430710:204472 -k1,17924:18083846,35430710:204473 -k1,17924:19566925,35430710:204472 -k1,17924:20790482,35430710:204472 -k1,17924:23083586,35430710:204472 -k1,17924:23947351,35430710:204473 -k1,17924:26587141,35430710:204472 -k1,17924:28180976,35430710:204472 -k1,17924:32583029,35430710:0 -) -(1,17925:6630773,36295790:25952256,513147,134348 -k1,17924:8367053,36295790:200116 -k1,17924:10006995,36295790:200116 -k1,17924:10858539,36295790:200116 -k1,17924:12037108,36295790:200116 -k1,17924:13256309,36295790:200116 -k1,17924:14478131,36295790:200116 -k1,17924:16429369,36295790:200116 -k1,17924:17701654,36295790:200116 -k1,17924:19188897,36295790:200116 -k1,17924:20408098,36295790:200116 -k1,17924:23582238,36295790:200116 -k1,17924:26080702,36295790:200116 -k1,17924:26932246,36295790:200116 -k1,17924:27947630,36295790:200116 -k1,17924:29166831,36295790:200116 -k1,17924:30701915,36295790:200116 -k1,17924:31923737,36295790:200116 -k1,17924:32583029,36295790:0 -) -(1,17925:6630773,37160870:25952256,513147,134348 -k1,17924:11781724,37160870:215435 -k1,17924:15977815,37160870:215434 -k1,17924:17929954,37160870:215435 -k1,17924:19348630,37160870:215435 -k1,17924:19919925,37160870:215435 -k1,17924:21717398,37160870:215434 -k1,17924:23755389,37160870:215435 -k1,17924:27317092,37160870:215435 -k1,17924:28551612,37160870:215435 -k1,17924:30505061,37160870:215434 -k1,17924:31379788,37160870:215435 -k1,17924:32583029,37160870:0 -) -(1,17925:6630773,38025950:25952256,513147,134348 -g1,17924:9247625,38025950 -g1,17924:9978351,38025950 -g1,17924:10793618,38025950 -g1,17924:12011932,38025950 -g1,17924:14537034,38025950 -g1,17924:17638853,38025950 -g1,17924:18497374,38025950 -k1,17925:32583029,38025950:11314138 -g1,17925:32583029,38025950 -) -(1,17927:6630773,38891030:25952256,513147,134348 -h1,17926:6630773,38891030:983040,0,0 -k1,17926:9038089,38891030:227589 -k1,17926:10873275,38891030:227588 -k1,17926:14190887,38891030:227589 -k1,17926:15034513,38891030:227588 -k1,17926:16465343,38891030:227589 -k1,17926:19110554,38891030:227588 -k1,17926:20329703,38891030:227589 -k1,17926:23512309,38891030:227588 -k1,17926:24426060,38891030:227589 -k1,17926:27612599,38891030:227588 -k1,17926:30573040,38891030:227589 -k1,17926:32583029,38891030:0 -) -(1,17927:6630773,39756110:25952256,513147,126483 -k1,17926:7892942,39756110:243084 -k1,17926:10631637,39756110:243084 -k1,17926:12278502,39756110:243084 -k1,17926:13180878,39756110:243084 -k1,17926:14813325,39756110:243084 -k1,17926:19249402,39756110:243084 -k1,17926:21054863,39756110:243083 -k1,17926:22791513,39756110:243084 -k1,17926:23720759,39756110:243084 -k1,17926:26133085,39756110:243084 -k1,17926:27983767,39756110:243084 -k1,17926:30564520,39756110:243084 -k1,17926:32583029,39756110:0 -) -(1,17927:6630773,40621190:25952256,505283,134348 -k1,17926:10239662,40621190:259344 -k1,17926:12995927,40621190:259343 -k1,17926:14539777,40621190:259344 -k1,17926:15560649,40621190:259344 -k1,17926:17328631,40621190:259343 -k1,17926:20375877,40621190:259344 -k1,17926:22677977,40621190:259343 -k1,17926:24968282,40621190:259344 -k1,17926:25910511,40621190:259344 -k1,17926:27861994,40621190:259343 -k1,17926:29823308,40621190:259344 -k1,17926:32583029,40621190:0 -) -(1,17927:6630773,41486270:25952256,513147,126483 -k1,17926:9286128,41486270:241009 -k1,17926:11735699,41486270:241008 -k1,17926:15957365,41486270:241009 -k1,17926:17395061,41486270:241009 -k1,17926:20192628,41486270:241008 -k1,17926:21092929,41486270:241009 -k1,17926:23030665,41486270:241009 -k1,17926:25290182,41486270:241008 -k1,17926:26147229,41486270:241009 -k1,17926:27407323,41486270:241009 -k1,17926:28925628,41486270:241008 -k1,17926:31914562,41486270:241009 -k1,17926:32583029,41486270:0 -) -(1,17927:6630773,42351350:25952256,513147,138281 -k1,17926:9557309,42351350:191718 -k1,17926:11570273,42351350:191718 -k1,17926:13456751,42351350:191717 -k1,17926:14409997,42351350:191718 -k1,17926:15620800,42351350:191718 -k1,17926:17823163,42351350:191718 -k1,17926:18674172,42351350:191717 -k1,17926:20374529,42351350:191718 -$1,17926:20374529,42351350 -$1,17926:20877190,42351350 -k1,17926:21068908,42351350:191718 -k1,17926:22452071,42351350:191718 -$1,17926:22452071,42351350 -$1,17926:23003884,42351350 -k1,17926:23195601,42351350:191717 -k1,17926:27125493,42351350:191718 -k1,17926:30316794,42351350:191718 -k1,17927:32583029,42351350:0 -) -(1,17927:6630773,43216430:25952256,513147,134348 -k1,17926:7936578,43216430:170066 -k1,17926:8765936,43216430:170066 -k1,17926:9955087,43216430:170066 -k1,17926:11514515,43216430:170065 -k1,17926:12876026,43216430:170066 -k1,17926:14177899,43216430:170066 -k1,17926:17297740,43216430:170066 -k1,17926:18083844,43216430:170066 -k1,17926:19272995,43216430:170066 -k1,17926:22250623,43216430:170066 -k1,17926:23079980,43216430:170065 -k1,17926:27321798,43216430:170066 -k1,17926:28143292,43216430:170066 -k1,17926:32051532,43216430:170066 -k1,17926:32583029,43216430:0 -) -(1,17927:6630773,44081510:25952256,513147,134348 -k1,17926:10511979,44081510:236749 -k1,17926:13278417,44081510:236748 -k1,17926:16795243,44081510:236749 -k1,17926:18599613,44081510:236749 -k1,17926:19855446,44081510:236748 -k1,17926:22931215,44081510:236749 -k1,17926:25975525,44081510:236748 -k1,17926:28751139,44081510:236749 -k1,17926:32583029,44081510:0 -) -(1,17927:6630773,44946590:25952256,513147,7863 -g1,17926:10636988,44946590 -g1,17926:11487645,44946590 -g1,17926:12705959,44946590 -k1,17927:32583030,44946590:16988900 -g1,17927:32583030,44946590 -) -] -(1,17929:32583029,45706769:0,0,0 -g1,17929:32583029,45706769 -) -) -] -(1,17929:6630773,47279633:25952256,0,0 -h1,17929:6630773,47279633:25952256,0,0 -) -] -(1,17929:4262630,4025873:0,0,0 -[1,17929:-473656,4025873:0,0,0 -(1,17929:-473656,-710413:0,0,0 -(1,17929:-473656,-710413:0,0,0 -g1,17929:-473656,-710413 -) -g1,17929:-473656,-710413 +[1,17927:3078558,4812305:0,0,0 +(1,17927:3078558,49800853:0,16384,2228224 +g1,17927:29030814,49800853 +g1,17927:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17927:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17927:37855564,49800853:1179648,16384,0 +) +) +k1,17927:3078556,49800853:-34777008 +) +] +g1,17927:6630773,4812305 +k1,17927:21386205,4812305:13560055 +g1,17927:21999622,4812305 +g1,17927:25611966,4812305 +g1,17927:28956923,4812305 +g1,17927:29772190,4812305 +) +) +] +[1,17927:6630773,45706769:25952256,40108032,0 +(1,17927:6630773,45706769:25952256,40108032,0 +(1,17927:6630773,45706769:0,0,0 +g1,17927:6630773,45706769 +) +[1,17927:6630773,45706769:25952256,40108032,0 +(1,17895:6630773,6254097:25952256,513147,126483 +h1,17894:6630773,6254097:983040,0,0 +k1,17894:8621897,6254097:179054 +k1,17894:9918994,6254097:179053 +k1,17894:11117133,6254097:179054 +k1,17894:14287905,6254097:179053 +k1,17894:17225369,6254097:179054 +k1,17894:18020460,6254097:179053 +k1,17894:19402755,6254097:179054 +k1,17894:22173103,6254097:179054 +k1,17894:23522629,6254097:179053 +k1,17894:25231949,6254097:179054 +k1,17894:26717135,6254097:179053 +k1,17894:27547617,6254097:179054 +k1,17894:29102926,6254097:179053 +k1,17894:30974120,6254097:179054 +k1,17895:32583029,6254097:0 +) +(1,17895:6630773,7119177:25952256,513147,134348 +k1,17894:8264667,7119177:226181 +k1,17894:10058469,7119177:226181 +k1,17894:11303735,7119177:226181 +k1,17894:13630345,7119177:226181 +k1,17894:15088603,7119177:226181 +k1,17894:17593471,7119177:226181 +h1,17894:18564059,7119177:0,0,0 +k1,17894:18790240,7119177:226181 +k1,17894:19825791,7119177:226181 +k1,17894:21550125,7119177:226181 +h1,17894:22745502,7119177:0,0,0 +k1,17894:22971683,7119177:226181 +k1,17894:24145515,7119177:226181 +k1,17894:26489164,7119177:226181 +k1,17894:27524715,7119177:226181 +k1,17894:28769981,7119177:226181 +k1,17894:30088647,7119177:226181 +k1,17894:30974120,7119177:226181 +k1,17895:32583029,7119177:0 +) +(1,17895:6630773,7984257:25952256,505283,134348 +k1,17895:32583029,7984257:24285020 +g1,17895:32583029,7984257 +) +v1,17897:6630773,8669112:0,393216,0 +(1,17912:6630773,16536594:25952256,8260698,196608 +g1,17912:6630773,16536594 +g1,17912:6630773,16536594 +g1,17912:6434165,16536594 +(1,17912:6434165,16536594:0,8260698,196608 +r1,17927:32779637,16536594:26345472,8457306,196608 +k1,17912:6434165,16536594:-26345472 +) +(1,17912:6434165,16536594:26345472,8260698,196608 +[1,17912:6630773,16536594:25952256,8064090,0 +(1,17899:6630773,8896943:25952256,424439,106246 +(1,17898:6630773,8896943:0,0,0 +g1,17898:6630773,8896943 +g1,17898:6630773,8896943 +g1,17898:6303093,8896943 +(1,17898:6303093,8896943:0,0,0 +) +g1,17898:6630773,8896943 +) +k1,17899:6630773,8896943:0 +h1,17899:12937898,8896943:0,0,0 +k1,17899:32583030,8896943:19645132 +g1,17899:32583030,8896943 +) +(1,17900:6630773,9581798:25952256,424439,106246 +h1,17900:6630773,9581798:0,0,0 +k1,17900:6630773,9581798:0 +h1,17900:11610082,9581798:0,0,0 +k1,17900:32583030,9581798:20972948 +g1,17900:32583030,9581798 +) +(1,17901:6630773,10266653:25952256,424439,112852 +h1,17901:6630773,10266653:0,0,0 +k1,17901:6630773,10266653:0 +h1,17901:11942036,10266653:0,0,0 +k1,17901:32583028,10266653:20640992 +g1,17901:32583028,10266653 +) +(1,17902:6630773,10951508:25952256,424439,112852 +h1,17902:6630773,10951508:0,0,0 +k1,17902:6630773,10951508:0 +h1,17902:11942036,10951508:0,0,0 +k1,17902:32583028,10951508:20640992 +g1,17902:32583028,10951508 +) +(1,17903:6630773,11636363:25952256,424439,112852 +h1,17903:6630773,11636363:0,0,0 +k1,17903:6630773,11636363:0 +h1,17903:12605944,11636363:0,0,0 +k1,17903:32583028,11636363:19977084 +g1,17903:32583028,11636363 +) +(1,17904:6630773,12321218:25952256,424439,106246 +h1,17904:6630773,12321218:0,0,0 +k1,17904:6630773,12321218:0 +h1,17904:11278129,12321218:0,0,0 +k1,17904:32583029,12321218:21304900 +g1,17904:32583029,12321218 +) +(1,17905:6630773,13006073:25952256,424439,112852 +h1,17905:6630773,13006073:0,0,0 +k1,17905:6630773,13006073:0 +h1,17905:11942036,13006073:0,0,0 +k1,17905:32583028,13006073:20640992 +g1,17905:32583028,13006073 +) +(1,17906:6630773,13690928:25952256,424439,112852 +h1,17906:6630773,13690928:0,0,0 +k1,17906:6630773,13690928:0 +h1,17906:12937898,13690928:0,0,0 +k1,17906:32583030,13690928:19645132 +g1,17906:32583030,13690928 +) +(1,17907:6630773,14375783:25952256,424439,106246 +h1,17907:6630773,14375783:0,0,0 +k1,17907:6630773,14375783:0 +h1,17907:12605944,14375783:0,0,0 +k1,17907:32583028,14375783:19977084 +g1,17907:32583028,14375783 +) +(1,17908:6630773,15060638:25952256,424439,106246 +h1,17908:6630773,15060638:0,0,0 +k1,17908:6630773,15060638:0 +h1,17908:11610082,15060638:0,0,0 +k1,17908:32583030,15060638:20972948 +g1,17908:32583030,15060638 +) +(1,17909:6630773,15745493:25952256,424439,106246 +h1,17909:6630773,15745493:0,0,0 +k1,17909:6630773,15745493:0 +h1,17909:11278129,15745493:0,0,0 +k1,17909:32583029,15745493:21304900 +g1,17909:32583029,15745493 +) +(1,17910:6630773,16430348:25952256,424439,106246 +h1,17910:6630773,16430348:0,0,0 +k1,17910:6630773,16430348:0 +h1,17910:12605944,16430348:0,0,0 +k1,17910:32583028,16430348:19977084 +g1,17910:32583028,16430348 +) +] +) +g1,17912:32583029,16536594 +g1,17912:6630773,16536594 +g1,17912:6630773,16536594 +g1,17912:32583029,16536594 +g1,17912:32583029,16536594 +) +h1,17912:6630773,16733202:0,0,0 +(1,17919:6630773,19564362:25952256,32768,229376 +(1,17919:6630773,19564362:0,32768,229376 +(1,17919:6630773,19564362:5505024,32768,229376 +r1,17927:12135797,19564362:5505024,262144,229376 +) +k1,17919:6630773,19564362:-5505024 +) +(1,17919:6630773,19564362:25952256,32768,0 +r1,17927:32583029,19564362:25952256,32768,0 +) +) +(1,17919:6630773,21196214:25952256,615776,151780 +(1,17919:6630773,21196214:1974731,582746,14155 +g1,17919:6630773,21196214 +g1,17919:8605504,21196214 +) +g1,17919:10368685,21196214 +g1,17919:15605536,21196214 +g1,17919:16663287,21196214 +g1,17919:17345910,21196214 +k1,17919:32583029,21196214:13707509 +g1,17919:32583029,21196214 +) +(1,17921:6630773,22454510:25952256,513147,134348 +k1,17920:7098113,22454510:254348 +k1,17920:8840840,22454510:254404 +k1,17920:9856772,22454510:254404 +k1,17920:12144102,22454510:254403 +k1,17920:15794582,22454510:254404 +k1,17920:18880797,22454510:254404 +k1,17920:21337210,22454510:254403 +k1,17920:22243042,22454510:254404 +k1,17920:23886809,22454510:254404 +k1,17920:28334205,22454510:254403 +k1,17920:31563944,22454510:254404 +k1,17920:32583029,22454510:0 +) +(1,17921:6630773,23319590:25952256,505283,126483 +k1,17920:8325811,23319590:160840 +k1,17920:12536776,23319590:160840 +k1,17920:15930507,23319590:160840 +k1,17920:19149257,23319590:160840 +k1,17920:20501542,23319590:160840 +k1,17920:22756913,23319590:160840 +k1,17920:24892583,23319590:161070 +k1,17920:26615801,23319590:160840 +k1,17920:27768201,23319590:160840 +k1,17920:28284901,23319590:160840 +k1,17920:31069803,23319590:160840 +k1,17920:32583029,23319590:0 +) +(1,17921:6630773,24184670:25952256,513147,134348 +k1,17920:7448335,24184670:166134 +k1,17920:9823031,24184670:166133 +k1,17920:13969822,24184670:166134 +k1,17920:15282181,24184670:166134 +k1,17920:16848164,24184670:166134 +k1,17920:17484190,24184670:166133 +k1,17920:18181821,24184670:166134 +k1,17920:21913114,24184670:166134 +k1,17920:24577479,24184670:166133 +k1,17920:25946854,24184670:166134 +k1,17920:26729026,24184670:166134 +k1,17920:28725581,24184670:166134 +k1,17920:29709603,24184670:166133 +k1,17920:31269688,24184670:166134 +k1,17920:32583029,24184670:0 +) +(1,17921:6630773,25049750:25952256,513147,134348 +k1,17920:7865705,25049750:215847 +k1,17920:10170185,25049750:215848 +k1,17920:11045324,25049750:215847 +k1,17920:12868770,25049750:215848 +k1,17920:14945184,25049750:215847 +k1,17920:15812460,25049750:215848 +k1,17920:18759192,25049750:215847 +k1,17920:20523655,25049750:215847 +k1,17920:22600070,25049750:215848 +k1,17920:23467345,25049750:215847 +k1,17920:24430959,25049750:215848 +k1,17920:28272258,25049750:215847 +k1,17920:29139534,25049750:215848 +k1,17920:31563944,25049750:215847 +k1,17920:32583029,25049750:0 +) +(1,17921:6630773,25914830:25952256,513147,134348 +k1,17920:8204595,25914830:221159 +k1,17920:10202434,25914830:221158 +k1,17920:13302590,25914830:221159 +k1,17920:14720436,25914830:221159 +k1,17920:16442368,25914830:221158 +k1,17920:17322819,25914830:221159 +k1,17920:18563063,25914830:221159 +k1,17920:20061519,25914830:221159 +k1,17920:22463060,25914830:221158 +k1,17920:24665372,25914830:221159 +k1,17920:25905616,25914830:221159 +k1,17920:30151340,25914830:221158 +k1,17920:31563944,25914830:221159 +k1,17920:32583029,25914830:0 +) +(1,17921:6630773,26779910:25952256,513147,134348 +k1,17920:10766204,26779910:242592 +k1,17920:13508340,26779910:242593 +k1,17920:14410224,26779910:242592 +k1,17920:15671901,26779910:242592 +k1,17920:18753514,26779910:242593 +k1,17920:22005519,26779910:242592 +k1,17920:23519509,26779910:242592 +k1,17920:25622669,26779910:242593 +k1,17920:26516689,26779910:242592 +k1,17920:27507047,26779910:242592 +k1,17920:29959514,26779910:242593 +k1,17920:30853534,26779910:242592 +k1,17920:32583029,26779910:0 +) +(1,17921:6630773,27644990:25952256,513147,134348 +k1,17920:10600550,27644990:266338 +k1,17920:12058333,27644990:266338 +k1,17920:13926371,27644990:266338 +k1,17920:17968238,27644990:266338 +k1,17920:18893869,27644990:266339 +k1,17920:19926323,27644990:266338 +k1,17920:21258932,27644990:266338 +k1,17920:22176698,27644990:266338 +k1,17920:26495127,27644990:266338 +k1,17920:28233404,27644990:266338 +k1,17920:32583029,27644990:0 +) +(1,17921:6630773,28510070:25952256,505283,134348 +k1,17920:8056236,28510070:279238 +k1,17920:9561653,28510070:279238 +k1,17920:11371157,28510070:279238 +k1,17920:12301822,28510070:279237 +k1,17920:13328826,28510070:279238 +k1,17920:16361231,28510070:279238 +k1,17920:19106589,28510070:279238 +k1,17920:23141040,28510070:279238 +k1,17920:25238902,28510070:279238 +k1,17920:27810588,28510070:279237 +k1,17920:29791796,28510070:279238 +k1,17920:31563944,28510070:279238 +k1,17920:32583029,28510070:0 +) +(1,17921:6630773,29375150:25952256,513147,134348 +k1,17920:8232775,29375150:267034 +k1,17920:9737784,29375150:267034 +k1,17920:10664110,29375150:267034 +k1,17920:14350813,29375150:267034 +k1,17920:15715575,29375150:267034 +k1,17920:18687935,29375150:267034 +k1,17920:19486465,29375150:267033 +k1,17920:21836889,29375150:267034 +k1,17920:23300610,29375150:267034 +k1,17920:26541668,29375150:267034 +k1,17920:27467994,29375150:267034 +k1,17920:28754113,29375150:267034 +k1,17920:31923737,29375150:267034 +k1,17920:32583029,29375150:0 +) +(1,17921:6630773,30240230:25952256,505283,134348 +k1,17920:9512153,30240230:162291 +k1,17920:12531158,30240230:162291 +k1,17920:14047422,30240230:162290 +k1,17920:15488320,30240230:162291 +k1,17920:16853852,30240230:162291 +k1,17920:20000653,30240230:162291 +k1,17920:20814372,30240230:162291 +k1,17920:24055544,30240230:162291 +k1,17920:25409279,30240230:162290 +k1,17920:28834608,30240230:162291 +k1,17920:30401991,30240230:162291 +k1,17920:32583029,30240230:0 +) +(1,17921:6630773,31105310:25952256,513147,7863 +g1,17920:8219365,31105310 +g1,17920:12768219,31105310 +g1,17920:13915099,31105310 +g1,17920:16876671,31105310 +k1,17921:32583029,31105310:12487885 +g1,17921:32583029,31105310 +) +(1,17923:6630773,31970390:25952256,513147,134348 +h1,17922:6630773,31970390:983040,0,0 +k1,17922:8581184,31970390:193391 +k1,17922:11057194,31970390:193391 +k1,17922:12948623,31970390:193391 +k1,17922:16153393,31970390:193391 +k1,17922:17736147,31970390:193391 +k1,17922:19659687,31970390:193390 +k1,17922:21970546,31970390:193391 +k1,17922:22823229,31970390:193391 +k1,17922:25966395,31970390:193391 +k1,17922:28248418,31970390:193391 +k1,17922:29433369,31970390:193391 +k1,17922:32583029,31970390:0 +) +(1,17923:6630773,32835470:25952256,513147,126483 +k1,17922:7882885,32835470:179943 +k1,17922:11036852,32835470:179943 +k1,17922:13774665,32835470:179943 +k1,17922:17163906,32835470:179943 +k1,17922:18030011,32835470:179943 +k1,17922:18668051,32835470:179943 +k1,17922:20894028,32835470:179943 +k1,17922:21532068,32835470:179943 +k1,17922:24341971,32835470:179943 +k1,17922:25173342,32835470:179943 +k1,17922:26740027,32835470:179943 +k1,17922:27532732,32835470:179943 +k1,17922:29102038,32835470:179943 +k1,17922:30849602,32835470:179943 +k1,17922:32583029,32835470:0 +) +(1,17923:6630773,33700550:25952256,513147,134348 +k1,17922:9563673,33700550:199393 +k1,17922:11964420,33700550:199393 +k1,17922:16011433,33700550:199394 +k1,17922:18973169,33700550:199393 +k1,17922:21547587,33700550:199393 +k1,17922:22406272,33700550:199393 +k1,17922:24418391,33700550:199393 +k1,17922:25245619,33700550:199393 +k1,17922:26464098,33700550:199394 +k1,17922:28316964,33700550:199393 +k1,17922:29754332,33700550:199393 +k1,17922:30639887,33700550:199393 +k1,17923:32583029,33700550:0 +) +(1,17923:6630773,34565630:25952256,513147,126483 +k1,17922:8471083,34565630:254339 +k1,17922:9951601,34565630:254339 +k1,17922:11397386,34565630:254340 +k1,17922:12877904,34565630:254339 +k1,17922:16272728,34565630:254339 +k1,17922:18002282,34565630:254339 +k1,17922:20653928,34565630:254339 +k1,17922:21980436,34565630:254339 +k1,17922:24487248,34565630:254340 +k1,17922:26338044,34565630:254339 +k1,17922:29557232,34565630:254339 +k1,17922:32583029,34565630:0 +) +(1,17923:6630773,35430710:25952256,513147,134348 +k1,17922:7782896,35430710:204472 +k1,17922:11250407,35430710:204473 +k1,17922:13062477,35430710:204472 +k1,17922:14082217,35430710:204472 +k1,17922:15352960,35430710:204472 +k1,17922:18083846,35430710:204473 +k1,17922:19566925,35430710:204472 +k1,17922:20790482,35430710:204472 +k1,17922:23083586,35430710:204472 +k1,17922:23947351,35430710:204473 +k1,17922:26587141,35430710:204472 +k1,17922:28180976,35430710:204472 +k1,17922:32583029,35430710:0 +) +(1,17923:6630773,36295790:25952256,513147,134348 +k1,17922:8367053,36295790:200116 +k1,17922:10006995,36295790:200116 +k1,17922:10858539,36295790:200116 +k1,17922:12037108,36295790:200116 +k1,17922:13256309,36295790:200116 +k1,17922:14478131,36295790:200116 +k1,17922:16429369,36295790:200116 +k1,17922:17701654,36295790:200116 +k1,17922:19188897,36295790:200116 +k1,17922:20408098,36295790:200116 +k1,17922:23582238,36295790:200116 +k1,17922:26080702,36295790:200116 +k1,17922:26932246,36295790:200116 +k1,17922:27947630,36295790:200116 +k1,17922:29166831,36295790:200116 +k1,17922:30701915,36295790:200116 +k1,17922:31923737,36295790:200116 +k1,17922:32583029,36295790:0 +) +(1,17923:6630773,37160870:25952256,513147,134348 +k1,17922:11781724,37160870:215435 +k1,17922:15977815,37160870:215434 +k1,17922:17929954,37160870:215435 +k1,17922:19348630,37160870:215435 +k1,17922:19919925,37160870:215435 +k1,17922:21717398,37160870:215434 +k1,17922:23755389,37160870:215435 +k1,17922:27317092,37160870:215435 +k1,17922:28551612,37160870:215435 +k1,17922:30505061,37160870:215434 +k1,17922:31379788,37160870:215435 +k1,17922:32583029,37160870:0 +) +(1,17923:6630773,38025950:25952256,513147,134348 +g1,17922:9247625,38025950 +g1,17922:9978351,38025950 +g1,17922:10793618,38025950 +g1,17922:12011932,38025950 +g1,17922:14537034,38025950 +g1,17922:17638853,38025950 +g1,17922:18497374,38025950 +k1,17923:32583029,38025950:11314138 +g1,17923:32583029,38025950 +) +(1,17925:6630773,38891030:25952256,513147,134348 +h1,17924:6630773,38891030:983040,0,0 +k1,17924:9038089,38891030:227589 +k1,17924:10873275,38891030:227588 +k1,17924:14190887,38891030:227589 +k1,17924:15034513,38891030:227588 +k1,17924:16465343,38891030:227589 +k1,17924:19110554,38891030:227588 +k1,17924:20329703,38891030:227589 +k1,17924:23512309,38891030:227588 +k1,17924:24426060,38891030:227589 +k1,17924:27612599,38891030:227588 +k1,17924:30573040,38891030:227589 +k1,17924:32583029,38891030:0 +) +(1,17925:6630773,39756110:25952256,513147,126483 +k1,17924:7892942,39756110:243084 +k1,17924:10631637,39756110:243084 +k1,17924:12278502,39756110:243084 +k1,17924:13180878,39756110:243084 +k1,17924:14813325,39756110:243084 +k1,17924:19249402,39756110:243084 +k1,17924:21054863,39756110:243083 +k1,17924:22791513,39756110:243084 +k1,17924:23720759,39756110:243084 +k1,17924:26133085,39756110:243084 +k1,17924:27983767,39756110:243084 +k1,17924:30564520,39756110:243084 +k1,17924:32583029,39756110:0 +) +(1,17925:6630773,40621190:25952256,505283,134348 +k1,17924:10239662,40621190:259344 +k1,17924:12995927,40621190:259343 +k1,17924:14539777,40621190:259344 +k1,17924:15560649,40621190:259344 +k1,17924:17328631,40621190:259343 +k1,17924:20375877,40621190:259344 +k1,17924:22677977,40621190:259343 +k1,17924:24968282,40621190:259344 +k1,17924:25910511,40621190:259344 +k1,17924:27861994,40621190:259343 +k1,17924:29823308,40621190:259344 +k1,17924:32583029,40621190:0 +) +(1,17925:6630773,41486270:25952256,513147,126483 +k1,17924:9286128,41486270:241009 +k1,17924:11735699,41486270:241008 +k1,17924:15957365,41486270:241009 +k1,17924:17395061,41486270:241009 +k1,17924:20192628,41486270:241008 +k1,17924:21092929,41486270:241009 +k1,17924:23030665,41486270:241009 +k1,17924:25290182,41486270:241008 +k1,17924:26147229,41486270:241009 +k1,17924:27407323,41486270:241009 +k1,17924:28925628,41486270:241008 +k1,17924:31914562,41486270:241009 +k1,17924:32583029,41486270:0 +) +(1,17925:6630773,42351350:25952256,513147,138281 +k1,17924:9557309,42351350:191718 +k1,17924:11570273,42351350:191718 +k1,17924:13456751,42351350:191717 +k1,17924:14409997,42351350:191718 +k1,17924:15620800,42351350:191718 +k1,17924:17823163,42351350:191718 +k1,17924:18674172,42351350:191717 +k1,17924:20374529,42351350:191718 +$1,17924:20374529,42351350 +$1,17924:20877190,42351350 +k1,17924:21068908,42351350:191718 +k1,17924:22452071,42351350:191718 +$1,17924:22452071,42351350 +$1,17924:23003884,42351350 +k1,17924:23195601,42351350:191717 +k1,17924:27125493,42351350:191718 +k1,17924:30316794,42351350:191718 +k1,17925:32583029,42351350:0 +) +(1,17925:6630773,43216430:25952256,513147,134348 +k1,17924:7936578,43216430:170066 +k1,17924:8765936,43216430:170066 +k1,17924:9955087,43216430:170066 +k1,17924:11514515,43216430:170065 +k1,17924:12876026,43216430:170066 +k1,17924:14177899,43216430:170066 +k1,17924:17297740,43216430:170066 +k1,17924:18083844,43216430:170066 +k1,17924:19272995,43216430:170066 +k1,17924:22250623,43216430:170066 +k1,17924:23079980,43216430:170065 +k1,17924:27321798,43216430:170066 +k1,17924:28143292,43216430:170066 +k1,17924:32051532,43216430:170066 +k1,17924:32583029,43216430:0 +) +(1,17925:6630773,44081510:25952256,513147,134348 +k1,17924:10511979,44081510:236749 +k1,17924:13278417,44081510:236748 +k1,17924:16795243,44081510:236749 +k1,17924:18599613,44081510:236749 +k1,17924:19855446,44081510:236748 +k1,17924:22931215,44081510:236749 +k1,17924:25975525,44081510:236748 +k1,17924:28751139,44081510:236749 +k1,17924:32583029,44081510:0 +) +(1,17925:6630773,44946590:25952256,513147,7863 +g1,17924:10636988,44946590 +g1,17924:11487645,44946590 +g1,17924:12705959,44946590 +k1,17925:32583030,44946590:16988900 +g1,17925:32583030,44946590 +) +] +(1,17927:32583029,45706769:0,0,0 +g1,17927:32583029,45706769 +) +) +] +(1,17927:6630773,47279633:25952256,0,0 +h1,17927:6630773,47279633:25952256,0,0 +) +] +(1,17927:4262630,4025873:0,0,0 +[1,17927:-473656,4025873:0,0,0 +(1,17927:-473656,-710413:0,0,0 +(1,17927:-473656,-710413:0,0,0 +g1,17927:-473656,-710413 +) +g1,17927:-473656,-710413 ) ] ) ] !21359 -}287 -Input:2946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}288 +Input:2950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{288 -[1,17942:4262630,47279633:28320399,43253760,0 -(1,17942:4262630,4025873:0,0,0 -[1,17942:-473656,4025873:0,0,0 -(1,17942:-473656,-710413:0,0,0 -(1,17942:-473656,-644877:0,0,0 -k1,17942:-473656,-644877:-65536 +{289 +[1,17940:4262630,47279633:28320399,43253760,0 +(1,17940:4262630,4025873:0,0,0 +[1,17940:-473656,4025873:0,0,0 +(1,17940:-473656,-710413:0,0,0 +(1,17940:-473656,-644877:0,0,0 +k1,17940:-473656,-644877:-65536 ) -(1,17942:-473656,4736287:0,0,0 -k1,17942:-473656,4736287:5209943 +(1,17940:-473656,4736287:0,0,0 +k1,17940:-473656,4736287:5209943 ) -g1,17942:-473656,-710413 +g1,17940:-473656,-710413 ) ] ) -[1,17942:6630773,47279633:25952256,43253760,0 -[1,17942:6630773,4812305:25952256,786432,0 -(1,17942:6630773,4812305:25952256,513147,126483 -(1,17942:6630773,4812305:25952256,513147,126483 -g1,17942:3078558,4812305 -[1,17942:3078558,4812305:0,0,0 -(1,17942:3078558,2439708:0,1703936,0 -k1,17942:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17942:2537886,2439708:1179648,16384,0 +[1,17940:6630773,47279633:25952256,43253760,0 +[1,17940:6630773,4812305:25952256,786432,0 +(1,17940:6630773,4812305:25952256,513147,126483 +(1,17940:6630773,4812305:25952256,513147,126483 +g1,17940:3078558,4812305 +[1,17940:3078558,4812305:0,0,0 +(1,17940:3078558,2439708:0,1703936,0 +k1,17940:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17940:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17942:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17940:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17942:3078558,4812305:0,0,0 -(1,17942:3078558,2439708:0,1703936,0 -g1,17942:29030814,2439708 -g1,17942:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17942:36151628,1915420:16384,1179648,0 +[1,17940:3078558,4812305:0,0,0 +(1,17940:3078558,2439708:0,1703936,0 +g1,17940:29030814,2439708 +g1,17940:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17940:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17942:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17940:37855564,2439708:1179648,16384,0 ) ) -k1,17942:3078556,2439708:-34777008 +k1,17940:3078556,2439708:-34777008 ) ] -[1,17942:3078558,4812305:0,0,0 -(1,17942:3078558,49800853:0,16384,2228224 -k1,17942:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17942:2537886,49800853:1179648,16384,0 +[1,17940:3078558,4812305:0,0,0 +(1,17940:3078558,49800853:0,16384,2228224 +k1,17940:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17940:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17942:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17940:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,17942:3078558,4812305:0,0,0 -(1,17942:3078558,49800853:0,16384,2228224 -g1,17942:29030814,49800853 -g1,17942:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17942:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17942:37855564,49800853:1179648,16384,0 -) -) -k1,17942:3078556,49800853:-34777008 -) -] -g1,17942:6630773,4812305 -g1,17942:6630773,4812305 -g1,17942:8017514,4812305 -g1,17942:11362471,4812305 -g1,17942:12177738,4812305 -g1,17942:15187806,4812305 -k1,17942:31387652,4812305:16199846 -) -) -] -[1,17942:6630773,45706769:25952256,40108032,0 -(1,17942:6630773,45706769:25952256,40108032,0 -(1,17942:6630773,45706769:0,0,0 -g1,17942:6630773,45706769 -) -[1,17942:6630773,45706769:25952256,40108032,0 -(1,17929:6630773,6254097:25952256,505283,126483 -h1,17928:6630773,6254097:983040,0,0 -k1,17928:8346866,6254097:245465 -k1,17928:10020407,6254097:245511 -k1,17928:11806670,6254097:245512 -k1,17928:12583678,6254097:245511 -k1,17928:16092883,6254097:245512 -k1,17928:16989822,6254097:245511 -k1,17928:18006037,6254097:245512 -k1,17928:21992998,6254097:245511 -k1,17928:23310678,6254097:245511 -k1,17928:24344588,6254097:245512 -k1,17928:27204330,6254097:245511 -k1,17928:28554124,6254097:245512 -k1,17928:29547401,6254097:245511 -k1,17928:32583029,6254097:0 -) -(1,17929:6630773,7119177:25952256,513147,134348 -k1,17928:7569202,7119177:252267 -k1,17928:9210176,7119177:252266 -k1,17928:10148605,7119177:252267 -k1,17928:11189270,7119177:252267 -k1,17928:12655263,7119177:252266 -k1,17928:13558958,7119177:252267 -k1,17928:14830310,7119177:252267 -k1,17928:19706141,7119177:252266 -k1,17928:23699858,7119177:252267 -k1,17928:25056406,7119177:252266 -k1,17928:26056439,7119177:252267 -k1,17928:29055320,7119177:252267 -k1,17928:30550149,7119177:252266 -k1,17928:31563944,7119177:252267 -k1,17928:32583029,7119177:0 -) -(1,17929:6630773,7984257:25952256,513147,126483 -k1,17928:9745207,7984257:255754 -k1,17928:10660254,7984257:255755 -k1,17928:11686711,7984257:255754 -k1,17928:13790580,7984257:255754 -k1,17928:14729220,7984257:255755 -k1,17928:16451670,7984257:255754 -k1,17928:18832101,7984257:255754 -k1,17928:22370554,7984257:255755 -k1,17928:24098247,7984257:255754 -k1,17928:26198184,7984257:255754 -k1,17928:28884014,7984257:255755 -k1,17928:31860823,7984257:255754 -k1,17929:32583029,7984257:0 -) -(1,17929:6630773,8849337:25952256,513147,134348 -g1,17928:10194620,8849337 -g1,17928:11887415,8849337 -g1,17928:12772806,8849337 -g1,17928:13991120,8849337 -g1,17928:15928364,8849337 -g1,17928:16786885,8849337 -g1,17928:17341974,8849337 -g1,17928:19024938,8849337 -g1,17928:19907052,8849337 -k1,17929:32583029,8849337:10960900 -g1,17929:32583029,8849337 -) -(1,17931:6630773,9714417:25952256,505283,126483 -h1,17930:6630773,9714417:983040,0,0 -k1,17930:11855576,9714417:239479 -k1,17930:13086616,9714417:239480 -k1,17930:16322401,9714417:239479 -k1,17930:17213308,9714417:239479 -k1,17930:17808648,9714417:239480 -k1,17930:19325424,9714417:239479 -k1,17930:20849409,9714417:239479 -k1,17930:22564104,9714417:239480 -k1,17930:23612953,9714417:239479 -k1,17930:27358608,9714417:239479 -k1,17930:28249516,9714417:239480 -k1,17930:31681909,9714417:239479 -k1,17931:32583029,9714417:0 -) -(1,17931:6630773,10579497:25952256,505283,134348 -k1,17930:10258051,10579497:176807 -k1,17930:11507026,10579497:176806 -k1,17930:13635495,10579497:176807 -k1,17930:15206252,10579497:176806 -k1,17930:16149175,10579497:176807 -k1,17930:20397733,10579497:176806 -k1,17930:22342046,10579497:176807 -k1,17930:25372946,10579497:176807 -k1,17930:26792315,10579497:176806 -k1,17930:27324982,10579497:176807 -k1,17930:28727967,10579497:176806 -k1,17930:30050999,10579497:176807 -k1,17930:30642648,10579497:176806 -k1,17930:31387652,10579497:176807 -k1,17930:32583029,10579497:0 -) -(1,17931:6630773,11444577:25952256,513147,134348 -k1,17930:10029252,11444577:223915 -k1,17930:11272251,11444577:223914 -k1,17930:13981947,11444577:223915 -k1,17930:14865153,11444577:223914 -k1,17930:19334490,11444577:223915 -k1,17930:21845612,11444577:223915 -k1,17930:24827936,11444577:223914 -k1,17930:25667889,11444577:223915 -k1,17930:26247663,11444577:223914 -k1,17930:28538584,11444577:223915 -k1,17930:29445383,11444577:223914 -k1,17930:31923737,11444577:223915 -k1,17930:32583029,11444577:0 -) -(1,17931:6630773,12309657:25952256,513147,126483 -g1,17930:7185862,12309657 -g1,17930:8662388,12309657 -g1,17930:10109423,12309657 -g1,17930:10967944,12309657 -k1,17931:32583028,12309657:17490904 -g1,17931:32583028,12309657 -) -(1,17933:6630773,13174737:25952256,513147,134348 -h1,17932:6630773,13174737:983040,0,0 -k1,17932:9156858,13174737:158925 -k1,17932:10507227,13174737:158924 -k1,17932:11850388,13174737:158925 -k1,17932:14027166,13174737:158924 -k1,17932:16625996,13174737:158925 -k1,17932:17976365,13174737:158924 -k1,17932:19566596,13174737:158925 -k1,17932:21441254,13174737:158925 -k1,17932:22058275,13174737:158924 -k1,17932:24847160,13174737:158925 -k1,17932:25953735,13174737:158924 -k1,17932:27131745,13174737:158925 -k1,17932:29338669,13174737:158924 -k1,17932:30149022,13174737:158925 -k1,17932:32583029,13174737:0 -) -(1,17933:6630773,14039817:25952256,513147,134348 -k1,17932:7816920,14039817:167062 -k1,17932:10419300,14039817:167062 -k1,17932:12597007,14039817:167062 -k1,17932:16573677,14039817:167062 -k1,17932:17356777,14039817:167062 -k1,17932:18542924,14039817:167062 -k1,17932:19987284,14039817:167063 -k1,17932:20840508,14039817:167062 -k1,17932:23957345,14039817:167062 -k1,17932:27167244,14039817:167062 -k1,17932:29150964,14039817:167062 -k1,17932:31923737,14039817:167062 -k1,17932:32583029,14039817:0 -) -(1,17933:6630773,14904897:25952256,513147,134348 -k1,17932:11177792,14904897:215089 -k1,17932:12859577,14904897:215089 -k1,17932:14772704,14904897:215089 -k1,17932:16054064,14904897:215089 -k1,17932:18886661,14904897:215089 -k1,17932:22328743,14904897:215089 -k1,17932:26350818,14904897:215089 -k1,17932:28345209,14904897:215089 -k1,17932:29579383,14904897:215089 -k1,17932:31189078,14904897:215089 -k1,17932:32583029,14904897:0 -) -(1,17933:6630773,15769977:25952256,505283,126483 -k1,17932:8704383,15769977:214353 -k1,17932:9274596,15769977:214353 -k1,17932:10766246,15769977:214353 -k1,17932:12084881,15769977:214353 -k1,17932:13047000,15769977:214353 -k1,17932:14673654,15769977:214353 -k1,17932:16079451,15769977:214352 -k1,17932:20151908,15769977:214353 -k1,17932:21017689,15769977:214353 -k1,17932:23610344,15769977:214353 -k1,17932:25218648,15769977:214353 -k1,17932:27297500,15769977:214353 -k1,17932:31089463,15769977:214353 -k1,17932:32583029,15769977:0 -) -(1,17933:6630773,16635057:25952256,513147,126483 -k1,17932:7481649,16635057:164714 -k1,17932:9677323,16635057:164713 -k1,17932:13080826,16635057:164714 -k1,17932:15119870,16635057:164714 -k1,17932:17890294,16635057:164713 -k1,17932:20392677,16635057:164714 -k1,17932:21576476,16635057:164714 -k1,17932:23009966,16635057:164713 -k1,17932:23833972,16635057:164714 -k1,17932:25224865,16635057:164714 -k1,17932:26581023,16635057:164713 -k1,17932:29561164,16635057:164714 -k1,17932:32583029,16635057:0 -) -(1,17933:6630773,17500137:25952256,513147,126483 -g1,17932:7489294,17500137 -g1,17932:9361002,17500137 -g1,17932:11585293,17500137 -g1,17932:12443814,17500137 -g1,17932:13974079,17500137 -g1,17932:15648523,17500137 -g1,17932:17872814,17500137 -g1,17932:18731335,17500137 -g1,17932:20961525,17500137 -g1,17932:23524638,17500137 -k1,17933:32583029,17500137:8068142 -g1,17933:32583029,17500137 -) -(1,17935:6630773,18365217:25952256,513147,134348 -h1,17934:6630773,18365217:983040,0,0 -k1,17934:10382108,18365217:239916 -k1,17934:11281317,18365217:239917 -k1,17934:12540318,18365217:239916 -k1,17934:15542577,18365217:239916 -k1,17934:18126060,18365217:239916 -k1,17934:19025269,18365217:239917 -k1,17934:20690593,18365217:239916 -k1,17934:23714478,18365217:239916 -k1,17934:24902045,18365217:239916 -k1,17934:26161047,18365217:239917 -k1,17934:29236706,18365217:239916 -k1,17934:30128050,18365217:239916 -k1,17934:32583029,18365217:0 -) -(1,17935:6630773,19230297:25952256,505283,134348 -k1,17934:8162350,19230297:163840 -k1,17934:12849485,19230297:163840 -k1,17934:13629363,19230297:163840 -k1,17934:16299955,19230297:163840 -k1,17934:18071393,19230297:163840 -k1,17934:21091947,19230297:163840 -k1,17934:21907214,19230297:163839 -k1,17934:22818820,19230297:163840 -k1,17934:25741070,19230297:163840 -k1,17934:26520948,19230297:163840 -k1,17934:28597129,19230297:163840 -k1,17934:29952414,19230297:163840 -k1,17934:32583029,19230297:0 -) -(1,17935:6630773,20095377:25952256,513147,126483 -k1,17934:7762908,20095377:140575 -k1,17934:11245163,20095377:140574 -k1,17934:12333389,20095377:140575 -k1,17934:13717837,20095377:140575 -k1,17934:18391536,20095377:140574 -k1,17934:19723556,20095377:140575 -k1,17934:21103416,20095377:140574 -k1,17934:23096694,20095377:140575 -k1,17934:23707162,20095377:140575 -k1,17934:24379233,20095377:140574 -k1,17934:27729106,20095377:140575 -k1,17934:28521109,20095377:140575 -k1,17934:30169666,20095377:140574 -k1,17934:30926279,20095377:140575 -k1,17934:32583029,20095377:0 -) -(1,17935:6630773,20960457:25952256,513147,134348 -k1,17934:7880645,20960457:230787 -k1,17934:9346787,20960457:230788 -k1,17934:11688489,20960457:230787 -k1,17934:12680805,20960457:230788 -k1,17934:14519190,20960457:230787 -k1,17934:15366015,20960457:230787 -k1,17934:18770712,20960457:230788 -k1,17934:20020584,20960457:230787 -k1,17934:23260784,20960457:230787 -k1,17934:24683017,20960457:230788 -k1,17934:26462420,20960457:230787 -k1,17934:30500194,20960457:230788 -k1,17934:31835263,20960457:230787 -k1,17934:32583029,20960457:0 -) -(1,17935:6630773,21825537:25952256,513147,126483 -k1,17934:9740933,21825537:271140 -k1,17934:10663501,21825537:271140 -k1,17934:11682407,21825537:271140 -k1,17934:12612839,21825537:271140 -k1,17934:15327161,21825537:271140 -k1,17934:16249730,21825537:271141 -k1,17934:19283213,21825537:271140 -k1,17934:22720397,21825537:271140 -k1,17934:24182982,21825537:271140 -k1,17934:26340248,21825537:271140 -k1,17934:29373731,21825537:271140 -k1,17934:32583029,21825537:0 -) -(1,17935:6630773,22690617:25952256,513147,134348 -k1,17934:8079475,22690617:273642 -k1,17934:11255708,22690617:273643 -k1,17934:12188642,22690617:273642 -k1,17934:15181374,22690617:273643 -k1,17934:16646461,22690617:273642 -k1,17934:17708502,22690617:273643 -k1,17934:21384773,22690617:273642 -k1,17934:24088491,22690617:273643 -k1,17934:26722740,22690617:273642 -k1,17934:29970407,22690617:273643 -k1,17934:30895477,22690617:273642 -k1,17934:32583029,22690617:0 -) -(1,17935:6630773,23555697:25952256,513147,134348 -k1,17934:7850922,23555697:201064 -k1,17934:10140619,23555697:201065 -k1,17934:11000975,23555697:201064 -k1,17934:12809638,23555697:201065 -k1,17934:13662130,23555697:201064 -k1,17934:16625537,23555697:201064 -k1,17934:18249389,23555697:201065 -k1,17934:19641898,23555697:201064 -k1,17934:21128779,23555697:201065 -k1,17934:21981271,23555697:201064 -k1,17934:23983264,23555697:201064 -k1,17934:26113709,23555697:201065 -k1,17934:29470987,23555697:201064 -k1,17934:30331344,23555697:201065 -k1,17934:30888268,23555697:201064 -k1,17934:32583029,23555697:0 -) -(1,17935:6630773,24420777:25952256,505283,126483 -k1,17935:32583030,24420777:24622532 -g1,17935:32583030,24420777 -) -(1,17936:6630773,27251937:25952256,32768,229376 -(1,17936:6630773,27251937:0,32768,229376 -(1,17936:6630773,27251937:5505024,32768,229376 -r1,17942:12135797,27251937:5505024,262144,229376 -) -k1,17936:6630773,27251937:-5505024 -) -(1,17936:6630773,27251937:25952256,32768,0 -r1,17942:32583029,27251937:25952256,32768,0 -) -) -(1,17936:6630773,28883789:25952256,615776,151780 -(1,17936:6630773,28883789:1974731,582746,14155 -g1,17936:6630773,28883789 -g1,17936:8605504,28883789 -) -g1,17936:10368685,28883789 -g1,17936:14328370,28883789 -g1,17936:15386121,28883789 -k1,17936:32583029,28883789:13683916 -g1,17936:32583029,28883789 -) -(1,17939:6630773,30142085:25952256,513147,134348 -k1,17938:8475496,30142085:241057 -k1,17938:11749559,30142085:241057 -k1,17938:14819149,30142085:241057 -k1,17938:16627827,30142085:241057 -k1,17938:18302812,30142085:241057 -k1,17938:18958671,30142085:241016 -k1,17938:20391173,30142085:241057 -k1,17938:24759032,30142085:241057 -k1,17938:27524536,30142085:241057 -k1,17938:30791390,30142085:241057 -k1,17938:31563944,30142085:241057 -k1,17938:32583029,30142085:0 -) -(1,17939:6630773,31007165:25952256,513147,134348 -k1,17938:7919516,31007165:196258 -k1,17938:8775067,31007165:196259 -k1,17938:9327185,31007165:196258 -k1,17938:11849317,31007165:196259 -k1,17938:14948165,31007165:196258 -k1,17938:15803715,31007165:196258 -k1,17938:18719063,31007165:196259 -k1,17938:20141500,31007165:196258 -k1,17938:22468990,31007165:196259 -k1,17938:24864636,31007165:196258 -k1,17938:26156656,31007165:196258 -k1,17938:26968953,31007165:196259 -k1,17938:28184296,31007165:196258 -k1,17938:30118570,31007165:196259 -k1,17938:30974120,31007165:196258 -k1,17939:32583029,31007165:0 -) -(1,17939:6630773,31872245:25952256,505283,134348 -k1,17938:7914062,31872245:205877 -k1,17938:11329235,31872245:205876 -k1,17938:13168925,31872245:205877 -k1,17938:13906299,31872245:205877 -k1,17938:16107091,31872245:205876 -k1,17938:17074496,31872245:205877 -k1,17938:20182963,31872245:205877 -k1,17938:21004877,31872245:205876 -k1,17938:22413995,31872245:205877 -k1,17938:23986952,31872245:205876 -k1,17938:24724326,31872245:205877 -k1,17938:26214709,31872245:205877 -k1,17938:28028183,31872245:205876 -k1,17938:29225620,31872245:205877 -k1,17938:32583029,31872245:0 -) -(1,17939:6630773,32737325:25952256,513147,134348 -k1,17938:8610891,32737325:329921 -k1,17938:9702341,32737325:329922 -k1,17938:11682459,32737325:329921 -k1,17938:13747773,32737325:329921 -k1,17938:16840037,32737325:329921 -k1,17938:19739626,32737325:329922 -k1,17938:21260992,32737325:329921 -k1,17938:23914820,32737325:329921 -k1,17938:27560864,32737325:329922 -k1,17938:29658813,32737325:330443 -k1,17938:32583029,32737325:0 -) -(1,17939:6630773,33602405:25952256,513147,134348 -k1,17938:8742467,33602405:137094 -k1,17938:11218168,33602405:136721 -k1,17938:12014180,33602405:136720 -k1,17938:13886294,33602405:136721 -k1,17938:14378875,33602405:136721 -k1,17938:16388614,33602405:136720 -k1,17938:19220831,33602405:136721 -k1,17938:20751503,33602405:136721 -k1,17938:22640000,33602405:136720 -k1,17938:26353021,33602405:136721 -k1,17938:28097339,33602405:136720 -k1,17938:29225620,33602405:136721 -k1,17938:32583029,33602405:0 -) -(1,17939:6630773,34467485:25952256,513147,134348 -k1,17938:7601711,34467485:209410 -k1,17938:11165908,34467485:209409 -k1,17938:14137661,34467485:209410 -k1,17938:17216237,34467485:209410 -k1,17938:18819598,34467485:209410 -k1,17938:22105922,34467485:209409 -(1,17938:22105922,34467485:0,414482,115847 -r1,17942:22464188,34467485:358266,530329,115847 -k1,17938:22105922,34467485:-358266 -) -(1,17938:22105922,34467485:358266,414482,115847 -k1,17938:22105922,34467485:3277 -h1,17938:22460911,34467485:0,411205,112570 -) -k1,17938:22673598,34467485:209410 -k1,17938:24074453,34467485:209410 -h1,17938:24074453,34467485:0,0,0 -k1,17938:25702360,34467485:209410 -k1,17938:30105418,34467485:209409 -k1,17938:31333913,34467485:209410 -k1,17939:32583029,34467485:0 -) -(1,17939:6630773,35332565:25952256,505283,134348 -k1,17938:9784638,35332565:262417 -k1,17938:10578552,35332565:262417 -k1,17938:13008900,35332565:262417 -k1,17938:18529271,35332565:262417 -k1,17938:19983133,35332565:262417 -k1,17938:20896978,35332565:262417 -k1,17938:21515254,35332565:262416 -k1,17938:23348569,35332565:262417 -k1,17938:25773019,35332565:262417 -k1,17938:27365817,35332565:262417 -k1,17938:29235832,35332565:262417 -k1,17938:30884991,35332565:262417 -k1,17938:32583029,35332565:0 -) -(1,17939:6630773,36197645:25952256,513147,134348 -k1,17938:9345711,36197645:191147 -k1,17938:12773680,36197645:191146 -k1,17938:13647712,36197645:191147 -k1,17938:16679845,36197645:191147 -k1,17938:17522420,36197645:191147 -k1,17938:18069426,36197645:191146 -k1,17938:20515667,36197645:191147 -k1,17938:21389699,36197645:191147 -k1,17938:26490803,36197645:191147 -k1,17938:27664989,36197645:191146 -k1,17938:28387633,36197645:191147 -k1,17938:31839851,36197645:191147 -k1,17938:32583029,36197645:0 -) -(1,17939:6630773,37062725:25952256,505283,7863 -k1,17939:32583029,37062725:23583130 -g1,17939:32583029,37062725 -) -(1,17941:6630773,37927805:25952256,505283,134348 -h1,17940:6630773,37927805:983040,0,0 -k1,17940:10263816,37927805:170776 -k1,17940:11538874,37927805:170776 -k1,17940:12457415,37927805:170775 -k1,17940:15155259,37927805:170776 -k1,17940:16012197,37927805:170776 -k1,17940:19637376,37927805:170776 -k1,17940:20491037,37927805:170776 -k1,17940:23469375,37927805:170776 -k1,17940:24659235,37927805:170775 -k1,17940:28901763,37927805:170776 -k1,17940:29755424,37927805:170776 -k1,17940:31315563,37927805:170776 -k1,17940:32583029,37927805:0 -) -(1,17941:6630773,38792885:25952256,513147,134348 -k1,17940:7214222,38792885:227589 -k1,17940:10391585,38792885:227588 -k1,17940:13635141,38792885:227589 -k1,17940:17113316,38792885:227589 -k1,17940:18000196,38792885:227588 -k1,17940:21177560,38792885:227589 -k1,17940:22295127,38792885:227588 -k1,17940:26454221,38792885:227589 -k1,17940:28971638,38792885:227589 -k1,17940:30190786,38792885:227588 -k1,17940:31931601,38792885:227589 -k1,17940:32583029,38792885:0 -) -(1,17941:6630773,39657965:25952256,513147,126483 -k1,17940:9876444,39657965:204145 -k1,17940:12842931,39657965:204144 -k1,17940:15422101,39657965:204145 -k1,17940:16285537,39657965:204144 -k1,17940:17508767,39657965:204145 -k1,17940:19275946,39657965:204145 -k1,17940:20382521,39657965:204144 -k1,17940:24328116,39657965:204145 -k1,17940:25636542,39657965:204144 -k1,17940:28102334,39657965:204145 -k1,17940:28965770,39657965:204144 -k1,17940:31841162,39657965:204145 -k1,17941:32583029,39657965:0 -) -(1,17941:6630773,40523045:25952256,513147,126483 -k1,17940:9015427,40523045:179367 -k1,17940:11379109,40523045:179367 -k1,17940:12630645,40523045:179367 -k1,17940:13580715,40523045:179367 -k1,17940:17501532,40523045:179367 -k1,17940:18340191,40523045:179367 -k1,17940:19364973,40523045:179368 -k1,17940:23488297,40523045:179367 -k1,17940:25004598,40523045:179367 -k1,17940:25931731,40523045:179367 -k1,17940:28492676,40523045:179367 -k1,17940:29433571,40523045:179367 -k1,17940:29968798,40523045:179367 -k1,17940:32583029,40523045:0 -) -(1,17941:6630773,41388125:25952256,513147,126483 -k1,17940:7479565,41388125:232754 -k1,17940:12229715,41388125:232753 -k1,17940:14250291,41388125:232754 -k1,17940:15674490,41388125:232754 -k1,17940:16263103,41388125:232753 -k1,17940:18184064,41388125:232754 -k1,17940:19032856,41388125:232754 -k1,17940:20864688,41388125:232754 -k1,17940:21713479,41388125:232753 -k1,17940:24612238,41388125:232754 -k1,17940:25496420,41388125:232754 -k1,17940:26748258,41388125:232753 -k1,17940:30924969,41388125:232754 -k1,17940:32583029,41388125:0 -) -(1,17941:6630773,42253205:25952256,513147,134348 -k1,17940:7743706,42253205:234750 -k1,17940:11719906,42253205:234750 -k1,17940:12902307,42253205:234750 -k1,17940:14156142,42253205:234750 -k1,17940:15659669,42253205:234750 -k1,17940:17085864,42253205:234750 -k1,17940:19189701,42253205:234750 -k1,17940:20083742,42253205:234749 -k1,17940:20674352,42253205:234750 -k1,17940:22562575,42253205:234750 -k1,17940:23901607,42253205:234750 -k1,17940:26398004,42253205:234750 -k1,17940:27292046,42253205:234750 -k1,17940:29709800,42253205:234750 -k1,17940:31499064,42253205:234750 -k1,17941:32583029,42253205:0 -) -(1,17941:6630773,43118285:25952256,513147,134348 -k1,17940:8849015,43118285:184660 -k1,17940:11519456,43118285:184660 -k1,17940:12363409,43118285:184661 -k1,17940:14664882,43118285:184660 -k1,17940:16118319,43118285:184660 -k1,17940:16962271,43118285:184660 -k1,17940:20339846,43118285:184661 -k1,17940:22641319,43118285:184660 -k1,17940:24839245,43118285:184660 -k1,17940:25683197,43118285:184660 -k1,17940:27706143,43118285:184661 -k1,17940:29536412,43118285:184660 -k1,17940:31531176,43118285:184660 -k1,17940:32583029,43118285:0 -) -(1,17941:6630773,43983365:25952256,513147,134348 -k1,17940:8701830,43983365:260953 -k1,17940:10074273,43983365:260952 -k1,17940:11377248,43983365:260953 -k1,17940:14473287,43983365:260952 -k1,17940:15504943,43983365:260953 -k1,17940:18442385,43983365:260952 -k1,17940:19941313,43983365:260953 -k1,17940:20861557,43983365:260952 -k1,17940:23896649,43983365:260953 -k1,17940:26367476,43983365:260953 -k1,17940:31563944,43983365:260952 -k1,17940:32583029,43983365:0 -) -(1,17941:6630773,44848445:25952256,505283,134348 -k1,17940:10697222,44848445:235214 -k1,17940:13567640,44848445:235215 -k1,17940:15812188,44848445:235214 -k1,17940:17238848,44848445:235215 -k1,17940:19028576,44848445:235214 -k1,17940:22101500,44848445:235215 -k1,17940:22952752,44848445:235214 -k1,17940:25345412,44848445:235215 -k1,17940:26112123,44848445:235214 -k1,17940:26998766,44848445:235215 -k1,17940:28511277,44848445:235214 -k1,17940:32583029,44848445:0 -) -] -(1,17942:32583029,45706769:0,0,0 -g1,17942:32583029,45706769 -) -) -] -(1,17942:6630773,47279633:25952256,0,0 -h1,17942:6630773,47279633:25952256,0,0 -) -] -(1,17942:4262630,4025873:0,0,0 -[1,17942:-473656,4025873:0,0,0 -(1,17942:-473656,-710413:0,0,0 -(1,17942:-473656,-710413:0,0,0 -g1,17942:-473656,-710413 -) -g1,17942:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,17940:3078558,4812305:0,0,0 +(1,17940:3078558,49800853:0,16384,2228224 +g1,17940:29030814,49800853 +g1,17940:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17940:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17940:37855564,49800853:1179648,16384,0 +) +) +k1,17940:3078556,49800853:-34777008 +) +] +g1,17940:6630773,4812305 +g1,17940:6630773,4812305 +g1,17940:8017514,4812305 +g1,17940:11362471,4812305 +g1,17940:12177738,4812305 +g1,17940:15187806,4812305 +k1,17940:31387652,4812305:16199846 +) +) +] +[1,17940:6630773,45706769:25952256,40108032,0 +(1,17940:6630773,45706769:25952256,40108032,0 +(1,17940:6630773,45706769:0,0,0 +g1,17940:6630773,45706769 +) +[1,17940:6630773,45706769:25952256,40108032,0 +(1,17927:6630773,6254097:25952256,505283,126483 +h1,17926:6630773,6254097:983040,0,0 +k1,17926:8346866,6254097:245465 +k1,17926:10020407,6254097:245511 +k1,17926:11806670,6254097:245512 +k1,17926:12583678,6254097:245511 +k1,17926:16092883,6254097:245512 +k1,17926:16989822,6254097:245511 +k1,17926:18006037,6254097:245512 +k1,17926:21992998,6254097:245511 +k1,17926:23310678,6254097:245511 +k1,17926:24344588,6254097:245512 +k1,17926:27204330,6254097:245511 +k1,17926:28554124,6254097:245512 +k1,17926:29547401,6254097:245511 +k1,17926:32583029,6254097:0 +) +(1,17927:6630773,7119177:25952256,513147,134348 +k1,17926:7569202,7119177:252267 +k1,17926:9210176,7119177:252266 +k1,17926:10148605,7119177:252267 +k1,17926:11189270,7119177:252267 +k1,17926:12655263,7119177:252266 +k1,17926:13558958,7119177:252267 +k1,17926:14830310,7119177:252267 +k1,17926:19706141,7119177:252266 +k1,17926:23699858,7119177:252267 +k1,17926:25056406,7119177:252266 +k1,17926:26056439,7119177:252267 +k1,17926:29055320,7119177:252267 +k1,17926:30550149,7119177:252266 +k1,17926:31563944,7119177:252267 +k1,17926:32583029,7119177:0 +) +(1,17927:6630773,7984257:25952256,513147,126483 +k1,17926:9745207,7984257:255754 +k1,17926:10660254,7984257:255755 +k1,17926:11686711,7984257:255754 +k1,17926:13790580,7984257:255754 +k1,17926:14729220,7984257:255755 +k1,17926:16451670,7984257:255754 +k1,17926:18832101,7984257:255754 +k1,17926:22370554,7984257:255755 +k1,17926:24098247,7984257:255754 +k1,17926:26198184,7984257:255754 +k1,17926:28884014,7984257:255755 +k1,17926:31860823,7984257:255754 +k1,17927:32583029,7984257:0 +) +(1,17927:6630773,8849337:25952256,513147,134348 +g1,17926:10194620,8849337 +g1,17926:11887415,8849337 +g1,17926:12772806,8849337 +g1,17926:13991120,8849337 +g1,17926:15928364,8849337 +g1,17926:16786885,8849337 +g1,17926:17341974,8849337 +g1,17926:19024938,8849337 +g1,17926:19907052,8849337 +k1,17927:32583029,8849337:10960900 +g1,17927:32583029,8849337 +) +(1,17929:6630773,9714417:25952256,505283,126483 +h1,17928:6630773,9714417:983040,0,0 +k1,17928:11855576,9714417:239479 +k1,17928:13086616,9714417:239480 +k1,17928:16322401,9714417:239479 +k1,17928:17213308,9714417:239479 +k1,17928:17808648,9714417:239480 +k1,17928:19325424,9714417:239479 +k1,17928:20849409,9714417:239479 +k1,17928:22564104,9714417:239480 +k1,17928:23612953,9714417:239479 +k1,17928:27358608,9714417:239479 +k1,17928:28249516,9714417:239480 +k1,17928:31681909,9714417:239479 +k1,17929:32583029,9714417:0 +) +(1,17929:6630773,10579497:25952256,505283,134348 +k1,17928:10258051,10579497:176807 +k1,17928:11507026,10579497:176806 +k1,17928:13635495,10579497:176807 +k1,17928:15206252,10579497:176806 +k1,17928:16149175,10579497:176807 +k1,17928:20397733,10579497:176806 +k1,17928:22342046,10579497:176807 +k1,17928:25372946,10579497:176807 +k1,17928:26792315,10579497:176806 +k1,17928:27324982,10579497:176807 +k1,17928:28727967,10579497:176806 +k1,17928:30050999,10579497:176807 +k1,17928:30642648,10579497:176806 +k1,17928:31387652,10579497:176807 +k1,17928:32583029,10579497:0 +) +(1,17929:6630773,11444577:25952256,513147,134348 +k1,17928:10029252,11444577:223915 +k1,17928:11272251,11444577:223914 +k1,17928:13981947,11444577:223915 +k1,17928:14865153,11444577:223914 +k1,17928:19334490,11444577:223915 +k1,17928:21845612,11444577:223915 +k1,17928:24827936,11444577:223914 +k1,17928:25667889,11444577:223915 +k1,17928:26247663,11444577:223914 +k1,17928:28538584,11444577:223915 +k1,17928:29445383,11444577:223914 +k1,17928:31923737,11444577:223915 +k1,17928:32583029,11444577:0 +) +(1,17929:6630773,12309657:25952256,513147,126483 +g1,17928:7185862,12309657 +g1,17928:8662388,12309657 +g1,17928:10109423,12309657 +g1,17928:10967944,12309657 +k1,17929:32583028,12309657:17490904 +g1,17929:32583028,12309657 +) +(1,17931:6630773,13174737:25952256,513147,134348 +h1,17930:6630773,13174737:983040,0,0 +k1,17930:9156858,13174737:158925 +k1,17930:10507227,13174737:158924 +k1,17930:11850388,13174737:158925 +k1,17930:14027166,13174737:158924 +k1,17930:16625996,13174737:158925 +k1,17930:17976365,13174737:158924 +k1,17930:19566596,13174737:158925 +k1,17930:21441254,13174737:158925 +k1,17930:22058275,13174737:158924 +k1,17930:24847160,13174737:158925 +k1,17930:25953735,13174737:158924 +k1,17930:27131745,13174737:158925 +k1,17930:29338669,13174737:158924 +k1,17930:30149022,13174737:158925 +k1,17930:32583029,13174737:0 +) +(1,17931:6630773,14039817:25952256,513147,134348 +k1,17930:7816920,14039817:167062 +k1,17930:10419300,14039817:167062 +k1,17930:12597007,14039817:167062 +k1,17930:16573677,14039817:167062 +k1,17930:17356777,14039817:167062 +k1,17930:18542924,14039817:167062 +k1,17930:19987284,14039817:167063 +k1,17930:20840508,14039817:167062 +k1,17930:23957345,14039817:167062 +k1,17930:27167244,14039817:167062 +k1,17930:29150964,14039817:167062 +k1,17930:31923737,14039817:167062 +k1,17930:32583029,14039817:0 +) +(1,17931:6630773,14904897:25952256,513147,134348 +k1,17930:11177792,14904897:215089 +k1,17930:12859577,14904897:215089 +k1,17930:14772704,14904897:215089 +k1,17930:16054064,14904897:215089 +k1,17930:18886661,14904897:215089 +k1,17930:22328743,14904897:215089 +k1,17930:26350818,14904897:215089 +k1,17930:28345209,14904897:215089 +k1,17930:29579383,14904897:215089 +k1,17930:31189078,14904897:215089 +k1,17930:32583029,14904897:0 +) +(1,17931:6630773,15769977:25952256,505283,126483 +k1,17930:8704383,15769977:214353 +k1,17930:9274596,15769977:214353 +k1,17930:10766246,15769977:214353 +k1,17930:12084881,15769977:214353 +k1,17930:13047000,15769977:214353 +k1,17930:14673654,15769977:214353 +k1,17930:16079451,15769977:214352 +k1,17930:20151908,15769977:214353 +k1,17930:21017689,15769977:214353 +k1,17930:23610344,15769977:214353 +k1,17930:25218648,15769977:214353 +k1,17930:27297500,15769977:214353 +k1,17930:31089463,15769977:214353 +k1,17930:32583029,15769977:0 +) +(1,17931:6630773,16635057:25952256,513147,126483 +k1,17930:7481649,16635057:164714 +k1,17930:9677323,16635057:164713 +k1,17930:13080826,16635057:164714 +k1,17930:15119870,16635057:164714 +k1,17930:17890294,16635057:164713 +k1,17930:20392677,16635057:164714 +k1,17930:21576476,16635057:164714 +k1,17930:23009966,16635057:164713 +k1,17930:23833972,16635057:164714 +k1,17930:25224865,16635057:164714 +k1,17930:26581023,16635057:164713 +k1,17930:29561164,16635057:164714 +k1,17930:32583029,16635057:0 +) +(1,17931:6630773,17500137:25952256,513147,126483 +g1,17930:7489294,17500137 +g1,17930:9361002,17500137 +g1,17930:11585293,17500137 +g1,17930:12443814,17500137 +g1,17930:13974079,17500137 +g1,17930:15648523,17500137 +g1,17930:17872814,17500137 +g1,17930:18731335,17500137 +g1,17930:20961525,17500137 +g1,17930:23524638,17500137 +k1,17931:32583029,17500137:8068142 +g1,17931:32583029,17500137 +) +(1,17933:6630773,18365217:25952256,513147,134348 +h1,17932:6630773,18365217:983040,0,0 +k1,17932:10382108,18365217:239916 +k1,17932:11281317,18365217:239917 +k1,17932:12540318,18365217:239916 +k1,17932:15542577,18365217:239916 +k1,17932:18126060,18365217:239916 +k1,17932:19025269,18365217:239917 +k1,17932:20690593,18365217:239916 +k1,17932:23714478,18365217:239916 +k1,17932:24902045,18365217:239916 +k1,17932:26161047,18365217:239917 +k1,17932:29236706,18365217:239916 +k1,17932:30128050,18365217:239916 +k1,17932:32583029,18365217:0 +) +(1,17933:6630773,19230297:25952256,505283,134348 +k1,17932:8162350,19230297:163840 +k1,17932:12849485,19230297:163840 +k1,17932:13629363,19230297:163840 +k1,17932:16299955,19230297:163840 +k1,17932:18071393,19230297:163840 +k1,17932:21091947,19230297:163840 +k1,17932:21907214,19230297:163839 +k1,17932:22818820,19230297:163840 +k1,17932:25741070,19230297:163840 +k1,17932:26520948,19230297:163840 +k1,17932:28597129,19230297:163840 +k1,17932:29952414,19230297:163840 +k1,17932:32583029,19230297:0 +) +(1,17933:6630773,20095377:25952256,513147,126483 +k1,17932:7762908,20095377:140575 +k1,17932:11245163,20095377:140574 +k1,17932:12333389,20095377:140575 +k1,17932:13717837,20095377:140575 +k1,17932:18391536,20095377:140574 +k1,17932:19723556,20095377:140575 +k1,17932:21103416,20095377:140574 +k1,17932:23096694,20095377:140575 +k1,17932:23707162,20095377:140575 +k1,17932:24379233,20095377:140574 +k1,17932:27729106,20095377:140575 +k1,17932:28521109,20095377:140575 +k1,17932:30169666,20095377:140574 +k1,17932:30926279,20095377:140575 +k1,17932:32583029,20095377:0 +) +(1,17933:6630773,20960457:25952256,513147,134348 +k1,17932:7880645,20960457:230787 +k1,17932:9346787,20960457:230788 +k1,17932:11688489,20960457:230787 +k1,17932:12680805,20960457:230788 +k1,17932:14519190,20960457:230787 +k1,17932:15366015,20960457:230787 +k1,17932:18770712,20960457:230788 +k1,17932:20020584,20960457:230787 +k1,17932:23260784,20960457:230787 +k1,17932:24683017,20960457:230788 +k1,17932:26462420,20960457:230787 +k1,17932:30500194,20960457:230788 +k1,17932:31835263,20960457:230787 +k1,17932:32583029,20960457:0 +) +(1,17933:6630773,21825537:25952256,513147,126483 +k1,17932:9740933,21825537:271140 +k1,17932:10663501,21825537:271140 +k1,17932:11682407,21825537:271140 +k1,17932:12612839,21825537:271140 +k1,17932:15327161,21825537:271140 +k1,17932:16249730,21825537:271141 +k1,17932:19283213,21825537:271140 +k1,17932:22720397,21825537:271140 +k1,17932:24182982,21825537:271140 +k1,17932:26340248,21825537:271140 +k1,17932:29373731,21825537:271140 +k1,17932:32583029,21825537:0 +) +(1,17933:6630773,22690617:25952256,513147,134348 +k1,17932:8079475,22690617:273642 +k1,17932:11255708,22690617:273643 +k1,17932:12188642,22690617:273642 +k1,17932:15181374,22690617:273643 +k1,17932:16646461,22690617:273642 +k1,17932:17708502,22690617:273643 +k1,17932:21384773,22690617:273642 +k1,17932:24088491,22690617:273643 +k1,17932:26722740,22690617:273642 +k1,17932:29970407,22690617:273643 +k1,17932:30895477,22690617:273642 +k1,17932:32583029,22690617:0 +) +(1,17933:6630773,23555697:25952256,513147,134348 +k1,17932:7850922,23555697:201064 +k1,17932:10140619,23555697:201065 +k1,17932:11000975,23555697:201064 +k1,17932:12809638,23555697:201065 +k1,17932:13662130,23555697:201064 +k1,17932:16625537,23555697:201064 +k1,17932:18249389,23555697:201065 +k1,17932:19641898,23555697:201064 +k1,17932:21128779,23555697:201065 +k1,17932:21981271,23555697:201064 +k1,17932:23983264,23555697:201064 +k1,17932:26113709,23555697:201065 +k1,17932:29470987,23555697:201064 +k1,17932:30331344,23555697:201065 +k1,17932:30888268,23555697:201064 +k1,17932:32583029,23555697:0 +) +(1,17933:6630773,24420777:25952256,505283,126483 +k1,17933:32583030,24420777:24622532 +g1,17933:32583030,24420777 +) +(1,17934:6630773,27251937:25952256,32768,229376 +(1,17934:6630773,27251937:0,32768,229376 +(1,17934:6630773,27251937:5505024,32768,229376 +r1,17940:12135797,27251937:5505024,262144,229376 +) +k1,17934:6630773,27251937:-5505024 +) +(1,17934:6630773,27251937:25952256,32768,0 +r1,17940:32583029,27251937:25952256,32768,0 +) +) +(1,17934:6630773,28883789:25952256,615776,151780 +(1,17934:6630773,28883789:1974731,582746,14155 +g1,17934:6630773,28883789 +g1,17934:8605504,28883789 +) +g1,17934:10368685,28883789 +g1,17934:14328370,28883789 +g1,17934:15386121,28883789 +k1,17934:32583029,28883789:13683916 +g1,17934:32583029,28883789 +) +(1,17937:6630773,30142085:25952256,513147,134348 +k1,17936:8475496,30142085:241057 +k1,17936:11749559,30142085:241057 +k1,17936:14819149,30142085:241057 +k1,17936:16627827,30142085:241057 +k1,17936:18302812,30142085:241057 +k1,17936:18958671,30142085:241016 +k1,17936:20391173,30142085:241057 +k1,17936:24759032,30142085:241057 +k1,17936:27524536,30142085:241057 +k1,17936:30791390,30142085:241057 +k1,17936:31563944,30142085:241057 +k1,17936:32583029,30142085:0 +) +(1,17937:6630773,31007165:25952256,513147,134348 +k1,17936:7919516,31007165:196258 +k1,17936:8775067,31007165:196259 +k1,17936:9327185,31007165:196258 +k1,17936:11849317,31007165:196259 +k1,17936:14948165,31007165:196258 +k1,17936:15803715,31007165:196258 +k1,17936:18719063,31007165:196259 +k1,17936:20141500,31007165:196258 +k1,17936:22468990,31007165:196259 +k1,17936:24864636,31007165:196258 +k1,17936:26156656,31007165:196258 +k1,17936:26968953,31007165:196259 +k1,17936:28184296,31007165:196258 +k1,17936:30118570,31007165:196259 +k1,17936:30974120,31007165:196258 +k1,17937:32583029,31007165:0 +) +(1,17937:6630773,31872245:25952256,505283,134348 +k1,17936:7914062,31872245:205877 +k1,17936:11329235,31872245:205876 +k1,17936:13168925,31872245:205877 +k1,17936:13906299,31872245:205877 +k1,17936:16107091,31872245:205876 +k1,17936:17074496,31872245:205877 +k1,17936:20182963,31872245:205877 +k1,17936:21004877,31872245:205876 +k1,17936:22413995,31872245:205877 +k1,17936:23986952,31872245:205876 +k1,17936:24724326,31872245:205877 +k1,17936:26214709,31872245:205877 +k1,17936:28028183,31872245:205876 +k1,17936:29225620,31872245:205877 +k1,17936:32583029,31872245:0 +) +(1,17937:6630773,32737325:25952256,513147,134348 +k1,17936:8610891,32737325:329921 +k1,17936:9702341,32737325:329922 +k1,17936:11682459,32737325:329921 +k1,17936:13747773,32737325:329921 +k1,17936:16840037,32737325:329921 +k1,17936:19739626,32737325:329922 +k1,17936:21260992,32737325:329921 +k1,17936:23914820,32737325:329921 +k1,17936:27560864,32737325:329922 +k1,17936:29658813,32737325:330443 +k1,17936:32583029,32737325:0 +) +(1,17937:6630773,33602405:25952256,513147,134348 +k1,17936:8742467,33602405:137094 +k1,17936:11218168,33602405:136721 +k1,17936:12014180,33602405:136720 +k1,17936:13886294,33602405:136721 +k1,17936:14378875,33602405:136721 +k1,17936:16388614,33602405:136720 +k1,17936:19220831,33602405:136721 +k1,17936:20751503,33602405:136721 +k1,17936:22640000,33602405:136720 +k1,17936:26353021,33602405:136721 +k1,17936:28097339,33602405:136720 +k1,17936:29225620,33602405:136721 +k1,17936:32583029,33602405:0 +) +(1,17937:6630773,34467485:25952256,513147,134348 +k1,17936:7601711,34467485:209410 +k1,17936:11165908,34467485:209409 +k1,17936:14137661,34467485:209410 +k1,17936:17216237,34467485:209410 +k1,17936:18819598,34467485:209410 +k1,17936:22105922,34467485:209409 +(1,17936:22105922,34467485:0,414482,115847 +r1,17940:22464188,34467485:358266,530329,115847 +k1,17936:22105922,34467485:-358266 +) +(1,17936:22105922,34467485:358266,414482,115847 +k1,17936:22105922,34467485:3277 +h1,17936:22460911,34467485:0,411205,112570 +) +k1,17936:22673598,34467485:209410 +k1,17936:24074453,34467485:209410 +h1,17936:24074453,34467485:0,0,0 +k1,17936:25702360,34467485:209410 +k1,17936:30105418,34467485:209409 +k1,17936:31333913,34467485:209410 +k1,17937:32583029,34467485:0 +) +(1,17937:6630773,35332565:25952256,505283,134348 +k1,17936:9784638,35332565:262417 +k1,17936:10578552,35332565:262417 +k1,17936:13008900,35332565:262417 +k1,17936:18529271,35332565:262417 +k1,17936:19983133,35332565:262417 +k1,17936:20896978,35332565:262417 +k1,17936:21515254,35332565:262416 +k1,17936:23348569,35332565:262417 +k1,17936:25773019,35332565:262417 +k1,17936:27365817,35332565:262417 +k1,17936:29235832,35332565:262417 +k1,17936:30884991,35332565:262417 +k1,17936:32583029,35332565:0 +) +(1,17937:6630773,36197645:25952256,513147,134348 +k1,17936:9345711,36197645:191147 +k1,17936:12773680,36197645:191146 +k1,17936:13647712,36197645:191147 +k1,17936:16679845,36197645:191147 +k1,17936:17522420,36197645:191147 +k1,17936:18069426,36197645:191146 +k1,17936:20515667,36197645:191147 +k1,17936:21389699,36197645:191147 +k1,17936:26490803,36197645:191147 +k1,17936:27664989,36197645:191146 +k1,17936:28387633,36197645:191147 +k1,17936:31839851,36197645:191147 +k1,17936:32583029,36197645:0 +) +(1,17937:6630773,37062725:25952256,505283,7863 +k1,17937:32583029,37062725:23583130 +g1,17937:32583029,37062725 +) +(1,17939:6630773,37927805:25952256,505283,134348 +h1,17938:6630773,37927805:983040,0,0 +k1,17938:10263816,37927805:170776 +k1,17938:11538874,37927805:170776 +k1,17938:12457415,37927805:170775 +k1,17938:15155259,37927805:170776 +k1,17938:16012197,37927805:170776 +k1,17938:19637376,37927805:170776 +k1,17938:20491037,37927805:170776 +k1,17938:23469375,37927805:170776 +k1,17938:24659235,37927805:170775 +k1,17938:28901763,37927805:170776 +k1,17938:29755424,37927805:170776 +k1,17938:31315563,37927805:170776 +k1,17938:32583029,37927805:0 +) +(1,17939:6630773,38792885:25952256,513147,134348 +k1,17938:7214222,38792885:227589 +k1,17938:10391585,38792885:227588 +k1,17938:13635141,38792885:227589 +k1,17938:17113316,38792885:227589 +k1,17938:18000196,38792885:227588 +k1,17938:21177560,38792885:227589 +k1,17938:22295127,38792885:227588 +k1,17938:26454221,38792885:227589 +k1,17938:28971638,38792885:227589 +k1,17938:30190786,38792885:227588 +k1,17938:31931601,38792885:227589 +k1,17938:32583029,38792885:0 +) +(1,17939:6630773,39657965:25952256,513147,126483 +k1,17938:9876444,39657965:204145 +k1,17938:12842931,39657965:204144 +k1,17938:15422101,39657965:204145 +k1,17938:16285537,39657965:204144 +k1,17938:17508767,39657965:204145 +k1,17938:19275946,39657965:204145 +k1,17938:20382521,39657965:204144 +k1,17938:24328116,39657965:204145 +k1,17938:25636542,39657965:204144 +k1,17938:28102334,39657965:204145 +k1,17938:28965770,39657965:204144 +k1,17938:31841162,39657965:204145 +k1,17939:32583029,39657965:0 +) +(1,17939:6630773,40523045:25952256,513147,126483 +k1,17938:9015427,40523045:179367 +k1,17938:11379109,40523045:179367 +k1,17938:12630645,40523045:179367 +k1,17938:13580715,40523045:179367 +k1,17938:17501532,40523045:179367 +k1,17938:18340191,40523045:179367 +k1,17938:19364973,40523045:179368 +k1,17938:23488297,40523045:179367 +k1,17938:25004598,40523045:179367 +k1,17938:25931731,40523045:179367 +k1,17938:28492676,40523045:179367 +k1,17938:29433571,40523045:179367 +k1,17938:29968798,40523045:179367 +k1,17938:32583029,40523045:0 +) +(1,17939:6630773,41388125:25952256,513147,126483 +k1,17938:7479565,41388125:232754 +k1,17938:12229715,41388125:232753 +k1,17938:14250291,41388125:232754 +k1,17938:15674490,41388125:232754 +k1,17938:16263103,41388125:232753 +k1,17938:18184064,41388125:232754 +k1,17938:19032856,41388125:232754 +k1,17938:20864688,41388125:232754 +k1,17938:21713479,41388125:232753 +k1,17938:24612238,41388125:232754 +k1,17938:25496420,41388125:232754 +k1,17938:26748258,41388125:232753 +k1,17938:30924969,41388125:232754 +k1,17938:32583029,41388125:0 +) +(1,17939:6630773,42253205:25952256,513147,134348 +k1,17938:7743706,42253205:234750 +k1,17938:11719906,42253205:234750 +k1,17938:12902307,42253205:234750 +k1,17938:14156142,42253205:234750 +k1,17938:15659669,42253205:234750 +k1,17938:17085864,42253205:234750 +k1,17938:19189701,42253205:234750 +k1,17938:20083742,42253205:234749 +k1,17938:20674352,42253205:234750 +k1,17938:22562575,42253205:234750 +k1,17938:23901607,42253205:234750 +k1,17938:26398004,42253205:234750 +k1,17938:27292046,42253205:234750 +k1,17938:29709800,42253205:234750 +k1,17938:31499064,42253205:234750 +k1,17939:32583029,42253205:0 +) +(1,17939:6630773,43118285:25952256,513147,134348 +k1,17938:8849015,43118285:184660 +k1,17938:11519456,43118285:184660 +k1,17938:12363409,43118285:184661 +k1,17938:14664882,43118285:184660 +k1,17938:16118319,43118285:184660 +k1,17938:16962271,43118285:184660 +k1,17938:20339846,43118285:184661 +k1,17938:22641319,43118285:184660 +k1,17938:24839245,43118285:184660 +k1,17938:25683197,43118285:184660 +k1,17938:27706143,43118285:184661 +k1,17938:29536412,43118285:184660 +k1,17938:31531176,43118285:184660 +k1,17938:32583029,43118285:0 +) +(1,17939:6630773,43983365:25952256,513147,134348 +k1,17938:8701830,43983365:260953 +k1,17938:10074273,43983365:260952 +k1,17938:11377248,43983365:260953 +k1,17938:14473287,43983365:260952 +k1,17938:15504943,43983365:260953 +k1,17938:18442385,43983365:260952 +k1,17938:19941313,43983365:260953 +k1,17938:20861557,43983365:260952 +k1,17938:23896649,43983365:260953 +k1,17938:26367476,43983365:260953 +k1,17938:31563944,43983365:260952 +k1,17938:32583029,43983365:0 +) +(1,17939:6630773,44848445:25952256,505283,134348 +k1,17938:10697222,44848445:235214 +k1,17938:13567640,44848445:235215 +k1,17938:15812188,44848445:235214 +k1,17938:17238848,44848445:235215 +k1,17938:19028576,44848445:235214 +k1,17938:22101500,44848445:235215 +k1,17938:22952752,44848445:235214 +k1,17938:25345412,44848445:235215 +k1,17938:26112123,44848445:235214 +k1,17938:26998766,44848445:235215 +k1,17938:28511277,44848445:235214 +k1,17938:32583029,44848445:0 +) +] +(1,17940:32583029,45706769:0,0,0 +g1,17940:32583029,45706769 +) +) +] +(1,17940:6630773,47279633:25952256,0,0 +h1,17940:6630773,47279633:25952256,0,0 +) +] +(1,17940:4262630,4025873:0,0,0 +[1,17940:-473656,4025873:0,0,0 +(1,17940:-473656,-710413:0,0,0 +(1,17940:-473656,-710413:0,0,0 +g1,17940:-473656,-710413 +) +g1,17940:-473656,-710413 ) ] ) ] !23289 -}288 -Input:2947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}289 Input:2951:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2952:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2953:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2954:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2955:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2956:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2957:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{289 -[1,17959:4262630,47279633:28320399,43253760,0 -(1,17959:4262630,4025873:0,0,0 -[1,17959:-473656,4025873:0,0,0 -(1,17959:-473656,-710413:0,0,0 -(1,17959:-473656,-644877:0,0,0 -k1,17959:-473656,-644877:-65536 +{290 +[1,17957:4262630,47279633:28320399,43253760,0 +(1,17957:4262630,4025873:0,0,0 +[1,17957:-473656,4025873:0,0,0 +(1,17957:-473656,-710413:0,0,0 +(1,17957:-473656,-644877:0,0,0 +k1,17957:-473656,-644877:-65536 ) -(1,17959:-473656,4736287:0,0,0 -k1,17959:-473656,4736287:5209943 +(1,17957:-473656,4736287:0,0,0 +k1,17957:-473656,4736287:5209943 ) -g1,17959:-473656,-710413 +g1,17957:-473656,-710413 ) ] ) -[1,17959:6630773,47279633:25952256,43253760,0 -[1,17959:6630773,4812305:25952256,786432,0 -(1,17959:6630773,4812305:25952256,513147,126483 -(1,17959:6630773,4812305:25952256,513147,126483 -g1,17959:3078558,4812305 -[1,17959:3078558,4812305:0,0,0 -(1,17959:3078558,2439708:0,1703936,0 -k1,17959:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17959:2537886,2439708:1179648,16384,0 +[1,17957:6630773,47279633:25952256,43253760,0 +[1,17957:6630773,4812305:25952256,786432,0 +(1,17957:6630773,4812305:25952256,513147,126483 +(1,17957:6630773,4812305:25952256,513147,126483 +g1,17957:3078558,4812305 +[1,17957:3078558,4812305:0,0,0 +(1,17957:3078558,2439708:0,1703936,0 +k1,17957:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17957:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17959:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17957:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17959:3078558,4812305:0,0,0 -(1,17959:3078558,2439708:0,1703936,0 -g1,17959:29030814,2439708 -g1,17959:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17959:36151628,1915420:16384,1179648,0 +[1,17957:3078558,4812305:0,0,0 +(1,17957:3078558,2439708:0,1703936,0 +g1,17957:29030814,2439708 +g1,17957:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17957:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17959:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17957:37855564,2439708:1179648,16384,0 ) ) -k1,17959:3078556,2439708:-34777008 +k1,17957:3078556,2439708:-34777008 ) ] -[1,17959:3078558,4812305:0,0,0 -(1,17959:3078558,49800853:0,16384,2228224 -k1,17959:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17959:2537886,49800853:1179648,16384,0 +[1,17957:3078558,4812305:0,0,0 +(1,17957:3078558,49800853:0,16384,2228224 +k1,17957:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17957:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17959:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17957:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,17959:3078558,4812305:0,0,0 -(1,17959:3078558,49800853:0,16384,2228224 -g1,17959:29030814,49800853 -g1,17959:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17959:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17959:37855564,49800853:1179648,16384,0 -) -) -k1,17959:3078556,49800853:-34777008 -) -] -g1,17959:6630773,4812305 -k1,17959:21386205,4812305:13560055 -g1,17959:21999622,4812305 -g1,17959:25611966,4812305 -g1,17959:28956923,4812305 -g1,17959:29772190,4812305 -) -) -] -[1,17959:6630773,45706769:25952256,40108032,0 -(1,17959:6630773,45706769:25952256,40108032,0 -(1,17959:6630773,45706769:0,0,0 -g1,17959:6630773,45706769 -) -[1,17959:6630773,45706769:25952256,40108032,0 -(1,17941:6630773,6254097:25952256,505283,134348 -k1,17940:7557397,6254097:240462 -k1,17940:9816369,6254097:240463 -k1,17940:11792224,6254097:240462 -k1,17940:14916926,6254097:240463 -k1,17940:19069232,6254097:240462 -k1,17940:22131020,6254097:240463 -k1,17940:23925996,6254097:240462 -k1,17940:27004167,6254097:240462 -k1,17940:27896058,6254097:240463 -k1,17940:29155605,6254097:240462 -$1,17940:29155605,6254097 -$1,17940:29658266,6254097 -k1,17940:29898729,6254097:240463 -k1,17940:31391584,6254097:240462 -k1,17940:32583029,6254097:0 -) -(1,17941:6630773,7119177:25952256,505283,138281 -g1,17940:7849087,7119177 -g1,17940:10057650,7119177 -g1,17940:10908307,7119177 -g1,17940:12126621,7119177 -$1,17940:12126621,7119177 -$1,17940:12678434,7119177 -g1,17940:12877663,7119177 -k1,17941:32583028,7119177:18400544 -g1,17941:32583028,7119177 -) -(1,17943:6630773,7984257:25952256,513147,134348 -h1,17942:6630773,7984257:983040,0,0 -k1,17942:9025895,7984257:215395 -k1,17942:12143880,7984257:215395 -k1,17942:13018567,7984257:215395 -k1,17942:15953051,7984257:215395 -k1,17942:18214480,7984257:215395 -k1,17942:18887972,7984257:215395 -k1,17942:21733326,7984257:215394 -k1,17942:22600149,7984257:215395 -k1,17942:24904176,7984257:215395 -k1,17942:26727169,7984257:215395 -k1,17942:27704092,7984257:215395 -k1,17942:31274275,7984257:215395 -k1,17943:32583029,7984257:0 -) -(1,17943:6630773,8849337:25952256,513147,134348 -k1,17942:7912048,8849337:141604 -k1,17942:10922819,8849337:141605 -k1,17942:11680461,8849337:141604 -k1,17942:13390343,8849337:141605 -k1,17942:14816453,8849337:141604 -k1,17942:15949618,8849337:141605 -k1,17942:18063856,8849337:141604 -k1,17942:21872855,8849337:141604 -k1,17942:22642295,8849337:141605 -k1,17942:24485869,8849337:141604 -k1,17942:26756083,8849337:141605 -k1,17942:27916772,8849337:141604 -k1,17942:30763048,8849337:141605 -k1,17942:31563944,8849337:141604 -k1,17942:32583029,8849337:0 -) -(1,17943:6630773,9714417:25952256,513147,134348 -k1,17942:9403803,9714417:143070 -k1,17942:13865040,9714417:143070 -k1,17942:14667402,9714417:143070 -k1,17942:17365721,9714417:143070 -k1,17942:19044300,9714417:143070 -k1,17942:20727466,9714417:143070 -k1,17942:22478134,9714417:143070 -k1,17942:23307366,9714417:143070 -k1,17942:24839144,9714417:143070 -k1,17942:26001299,9714417:143070 -k1,17942:27730340,9714417:143070 -k1,17942:28532702,9714417:143070 -k1,17942:29694857,9714417:143070 -k1,17942:32583029,9714417:0 -) -(1,17943:6630773,10579497:25952256,513147,134348 -k1,17942:7785994,10579497:163661 -k1,17942:11215970,10579497:163662 -k1,17942:12760475,10579497:163661 -k1,17942:15898160,10579497:163661 -k1,17942:18107855,10579497:163661 -k1,17942:21100050,10579497:163662 -k1,17942:24402230,10579497:163661 -k1,17942:27422605,10579497:163661 -k1,17942:28272428,10579497:163661 -k1,17942:30152478,10579497:163662 -k1,17942:30975431,10579497:163661 -k1,17942:32583029,10579497:0 -) -(1,17943:6630773,11444577:25952256,505283,134348 -g1,17942:7896273,11444577 -g1,17942:11594469,11444577 -g1,17942:13491736,11444577 -g1,17942:14710050,11444577 -g1,17942:17737812,11444577 -g1,17942:20517193,11444577 -g1,17942:21923595,11444577 -g1,17942:24979538,11444577 -g1,17942:26283049,11444577 -g1,17942:27230044,11444577 -g1,17942:29230202,11444577 -k1,17943:32583029,11444577:950278 -g1,17943:32583029,11444577 -) -v1,17945:6630773,12309657:0,393216,0 -(1,17946:6630773,17130582:25952256,5214141,0 -g1,17946:6630773,17130582 -g1,17946:6237557,17130582 -r1,17959:6368629,17130582:131072,5214141,0 -g1,17946:6567858,17130582 -g1,17946:6764466,17130582 -[1,17946:6764466,17130582:25818563,5214141,0 -(1,17946:6764466,12670834:25818563,754393,260573 -(1,17945:6764466,12670834:0,754393,260573 -r1,17959:7856192,12670834:1091726,1014966,260573 -k1,17945:6764466,12670834:-1091726 -) -(1,17945:6764466,12670834:1091726,754393,260573 -) -k1,17945:8090949,12670834:234757 -k1,17945:8418629,12670834:327680 -k1,17945:10436620,12670834:234756 -k1,17945:11027237,12670834:234757 -k1,17945:13287712,12670834:234757 -k1,17945:14053966,12670834:234757 -k1,17945:15940885,12670834:234756 -k1,17945:17194727,12670834:234757 -k1,17945:19312333,12670834:234757 -k1,17945:20824387,12670834:234757 -k1,17945:22250588,12670834:234756 -k1,17945:23273743,12670834:234757 -k1,17945:27436073,12670834:234757 -k1,17945:28662390,12670834:234757 -k1,17945:31247267,12670834:234756 -k1,17945:32168186,12670834:234757 -k1,17946:32583029,12670834:0 -) -(1,17946:6764466,13535914:25818563,513147,134348 -k1,17945:9251967,13535914:197673 -k1,17945:10734146,13535914:197673 -k1,17945:12036101,13535914:197673 -k1,17945:12981540,13535914:197673 -k1,17945:14990628,13535914:197673 -k1,17945:15804339,13535914:197673 -k1,17945:17021097,13535914:197673 -k1,17945:20603049,13535914:197673 -k1,17945:21483607,13535914:197673 -k1,17945:23967831,13535914:197673 -k1,17945:24816932,13535914:197673 -k1,17945:25370465,13535914:197673 -k1,17945:26551178,13535914:197673 -k1,17945:27435013,13535914:197673 -k1,17945:28047528,13535914:197672 -k1,17945:30708699,13535914:197673 -k1,17945:32583029,13535914:0 -) -(1,17946:6764466,14400994:25818563,513147,134348 -k1,17945:9321353,14400994:267059 -k1,17945:11846783,14400994:267059 -k1,17945:12469703,14400994:267060 -k1,17945:14675317,14400994:267059 -k1,17945:15890027,14400994:267059 -k1,17945:20171166,14400994:267059 -k1,17945:21457310,14400994:267059 -k1,17945:23175336,14400994:267059 -k1,17945:24508667,14400994:267060 -k1,17945:25564124,14400994:267059 -k1,17945:27237586,14400994:267059 -k1,17945:30454420,14400994:267059 -k1,17946:32583029,14400994:0 -) -(1,17946:6764466,15266074:25818563,505283,134348 -k1,17945:9866678,15266074:286130 -k1,17945:11349496,15266074:286131 -k1,17945:14585401,15266074:286130 -k1,17945:19536384,15266074:286130 -k1,17945:20354012,15266074:286131 -k1,17945:23793079,15266074:286130 -k1,17945:25777247,15266074:286130 -k1,17945:27082462,15266074:286130 -k1,17945:29328119,15266074:286131 -k1,17945:30145746,15266074:286130 -k1,17945:32583029,15266074:0 -) -(1,17946:6764466,16131154:25818563,513147,134348 -k1,17945:9904161,16131154:242348 -k1,17945:10829394,16131154:242348 -k1,17945:12311683,16131154:242348 -k1,17945:14322193,16131154:242349 -k1,17945:15583626,16131154:242348 -k1,17945:17479447,16131154:242348 -(1,17945:17479447,16131154:0,452978,122846 -r1,17959:18892848,16131154:1413401,575824,122846 -k1,17945:17479447,16131154:-1413401 -) -(1,17945:17479447,16131154:1413401,452978,122846 -k1,17945:17479447,16131154:3277 -h1,17945:18889571,16131154:0,411205,112570 -) -k1,17945:19135196,16131154:242348 -k1,17945:20654841,16131154:242348 -k1,17945:22856715,16131154:242348 -k1,17945:24203346,16131154:242349 -k1,17945:25193460,16131154:242348 -k1,17945:28310872,16131154:242348 -k1,17945:29820686,16131154:242348 -k1,17945:32583029,16131154:0 -) -(1,17946:6764466,16996234:25818563,513147,134348 -g1,17945:9218789,16996234 -g1,17945:10609463,16996234 -g1,17945:12786569,16996234 -g1,17945:15374585,16996234 -g1,17945:18084498,16996234 -g1,17945:19231378,16996234 -g1,17945:21725678,16996234 -g1,17945:24134781,16996234 -k1,17946:32583029,16996234:5823531 -g1,17946:32583029,16996234 -) -] -g1,17946:32583029,17130582 -) -h1,17946:6630773,17130582:0,0,0 -(1,17949:6630773,17995662:25952256,513147,134348 -h1,17948:6630773,17995662:983040,0,0 -k1,17948:9085096,17995662:274596 -k1,17948:14196904,17995662:274596 -k1,17948:15130792,17995662:274596 -k1,17948:15761248,17995662:274596 -k1,17948:16970387,17995662:274596 -k1,17948:17904276,17995662:274597 -k1,17948:19568235,17995662:274596 -k1,17948:20525716,17995662:274596 -k1,17948:24872064,17995662:274596 -k1,17948:26414126,17995662:274596 -k1,17948:27044582,17995662:274596 -k1,17948:30194242,17995662:274596 -k1,17948:32583029,17995662:0 -) -(1,17949:6630773,18860742:25952256,513147,134348 -k1,17948:8218664,18860742:220154 -k1,17948:11018970,18860742:220154 -k1,17948:14067657,18860742:220154 -k1,17948:15392094,18860742:220155 -k1,17948:16360014,18860742:220154 -k1,17948:20389776,18860742:220154 -k1,17948:21296092,18860742:220154 -k1,17948:21872106,18860742:220154 -k1,17948:23442302,18860742:220154 -k1,17948:24321748,18860742:220154 -k1,17948:28522560,18860742:220155 -k1,17948:29814883,18860742:220154 -k1,17948:31320853,18860742:220154 -k1,17948:32227169,18860742:220154 -k1,17948:32583029,18860742:0 -) -(1,17949:6630773,19725822:25952256,513147,134348 -k1,17948:9725055,19725822:154337 -k1,17948:10538684,19725822:154337 -k1,17948:13153899,19725822:154338 -k1,17948:16242938,19725822:154337 -k1,17948:17945891,19725822:154337 -k1,17948:20160025,19725822:154337 -k1,17948:21598869,19725822:154338 -k1,17948:22772291,19725822:154337 -k1,17948:25900652,19725822:154337 -k1,17948:27622610,19725822:154337 -k1,17948:30863038,19725822:154338 -k1,17948:31373235,19725822:154337 -k1,17949:32583029,19725822:0 -) -(1,17949:6630773,20590902:25952256,513147,126483 -k1,17948:8008558,20590902:194860 -k1,17948:9012789,20590902:194861 -k1,17948:10918794,20590902:194860 -k1,17948:11645151,20590902:194860 -k1,17948:13124517,20590902:194860 -k1,17948:13935416,20590902:194861 -k1,17948:15731976,20590902:194860 -k1,17948:17624218,20590902:194860 -k1,17948:20722323,20590902:194860 -k1,17948:23513065,20590902:194861 -k1,17948:24699485,20590902:194860 -k1,17948:26407571,20590902:194860 -k1,17948:28300469,20590902:194860 -k1,17948:29514415,20590902:194861 -k1,17948:31090119,20590902:194860 -k1,17948:32583029,20590902:0 -) -(1,17949:6630773,21455982:25952256,513147,126483 -k1,17948:7846887,21455982:149843 -k1,17948:10426806,21455982:149844 -k1,17948:12907765,21455982:149843 -k1,17948:17669377,21455982:149843 -k1,17948:19015907,21455982:149843 -k1,17948:21104306,21455982:149844 -k1,17948:21905577,21455982:149843 -k1,17948:23697752,21455982:149843 -k1,17948:24203456,21455982:149844 -k1,17948:25630596,21455982:149843 -k1,17948:27641006,21455982:149843 -k1,17948:28442277,21455982:149843 -k1,17948:30851147,21455982:149844 -k1,17948:31563944,21455982:149843 -k1,17948:32583029,21455982:0 -) -(1,17949:6630773,22321062:25952256,505283,134348 -k1,17948:8213982,22321062:193846 -k1,17948:9059256,22321062:193846 -k1,17948:10519258,22321062:193846 -k1,17948:11320623,22321062:193846 -k1,17948:13399940,22321062:193846 -k1,17948:16105126,22321062:193846 -k1,17948:16950400,22321062:193846 -k1,17948:18540818,22321062:193846 -k1,17948:19386092,22321062:193846 -k1,17948:21465409,22321062:193846 -k1,17948:24609030,22321062:193846 -k1,17948:27580947,22321062:193846 -k1,17948:28664772,22321062:193846 -k1,17948:32083645,22321062:193846 -k1,17948:32583029,22321062:0 -) -(1,17949:6630773,23186142:25952256,505283,134348 -k1,17948:8697678,23186142:207648 -k1,17948:10793418,23186142:207648 -k1,17948:11652494,23186142:207648 -k1,17948:13057485,23186142:207648 -k1,17948:14456578,23186142:207648 -k1,17948:16549697,23186142:207648 -k1,17948:19920768,23186142:207648 -k1,17948:24793269,23186142:207648 -k1,17948:25652345,23186142:207648 -k1,17948:27126149,23186142:207648 -k1,17948:27961632,23186142:207648 -k1,17948:29188365,23186142:207648 -k1,17948:31298523,23186142:207648 -k1,17948:32583029,23186142:0 -) -(1,17949:6630773,24051222:25952256,505283,126483 -k1,17948:9644555,24051222:171486 -k1,17948:10835125,24051222:171485 -k1,17948:12220338,24051222:171486 -k1,17948:15027027,24051222:171486 -k1,17948:16587875,24051222:171485 -k1,17948:18770006,24051222:171486 -k1,17948:20132937,24051222:171486 -k1,17948:23148685,24051222:171485 -k1,17948:25504486,24051222:171486 -k1,17948:26230407,24051222:171486 -k1,17948:26757752,24051222:171485 -k1,17948:30337110,24051222:171486 -k1,17948:32583029,24051222:0 -) -(1,17949:6630773,24916302:25952256,513147,138281 -k1,17948:9802322,24916302:215876 -k1,17948:11393798,24916302:215875 -k1,17948:14784238,24916302:215876 -$1,17948:14784238,24916302 -$1,17948:15286899,24916302 -k1,17948:15676445,24916302:215876 -$1,17948:15676445,24916302 -$1,17948:16228258,24916302 -k1,17948:16444133,24916302:215875 -k1,17948:17851454,24916302:215876 -k1,17948:20711052,24916302:215876 -$1,17948:20711052,24916302 -$1,17948:21136381,24916302 -k1,17948:21733020,24916302:215875 -k1,17948:22420755,24916302:215876 -k1,17948:22992491,24916302:215876 -k1,17948:25194762,24916302:215875 -k1,17948:26062066,24916302:215876 -k1,17948:27544098,24916302:215876 -k1,17948:28956660,24916302:215875 -k1,17948:31015408,24916302:215876 -k1,17948:32583029,24916302:0 -) -(1,17949:6630773,25781382:25952256,513147,134348 -k1,17948:10819584,25781382:174731 -k1,17948:11350175,25781382:174731 -k1,17948:12802203,25781382:174731 -k1,17948:14936460,25781382:174731 -k1,17948:16846584,25781382:174731 -k1,17948:18040400,25781382:174731 -k1,17948:21117721,25781382:174731 -k1,17948:21951744,25781382:174731 -k1,17948:24845564,25781382:174731 -k1,17948:25551791,25781382:174730 -k1,17948:26497225,25781382:174731 -k1,17948:27086775,25781382:174707 -k1,17948:29221032,25781382:174731 -k1,17948:32583029,25781382:0 -) -(1,17949:6630773,26646462:25952256,513147,134348 -k1,17948:7159697,26646462:173064 -k1,17948:9571470,26646462:173063 -k1,17948:10692185,26646462:173064 -k1,17948:11221109,26646462:173064 -k1,17948:13145294,26646462:173063 -k1,17948:16298935,26646462:173064 -k1,17948:17491083,26646462:173063 -k1,17948:19227181,26646462:173064 -k1,17948:21285716,26646462:173064 -k1,17948:24012062,26646462:173063 -k1,17948:26953367,26646462:173064 -k1,17948:27777859,26646462:173064 -k1,17948:29652892,26646462:173063 -k1,17948:30240773,26646462:173038 -k1,17949:32583029,26646462:0 -k1,17949:32583029,26646462:0 -) -(1,17950:6630773,28763280:25952256,564462,147783 -(1,17950:6630773,28763280:2450326,534184,12975 -g1,17950:6630773,28763280 -g1,17950:9081099,28763280 -) -g1,17950:10697348,28763280 -g1,17950:13182277,28763280 -g1,17950:14151883,28763280 -g1,17950:15533841,28763280 -k1,17950:32583029,28763280:13771995 -g1,17950:32583029,28763280 -) -(1,17952:6630773,30021576:25952256,513147,134348 -k1,17951:8812517,30021576:140298 -k1,17951:11585396,30021576:140298 -k1,17951:12081554,30021576:140298 -k1,17951:13499149,30021576:140298 -k1,17951:14994732,30021576:140298 -k1,17951:15896558,30021576:140298 -k1,17951:17565811,30021576:140298 -k1,17951:17919042,30021576:140239 -k1,17951:21131668,30021576:140298 -k1,17951:22291051,30021576:140298 -k1,17951:25193692,30021576:140298 -k1,17951:29261563,30021576:140298 -k1,17951:30061153,30021576:140298 -k1,17951:30557311,30021576:140298 -k1,17951:32583029,30021576:0 -) -(1,17952:6630773,30886656:25952256,513147,134348 -g1,17951:8942227,30886656 -g1,17951:9824341,30886656 -g1,17951:11042655,30886656 -g1,17951:13196823,30886656 -g1,17951:14055344,30886656 -g1,17951:15273658,30886656 -g1,17951:18375477,30886656 -g1,17951:19233998,30886656 -k1,17952:32583029,30886656:10577514 -g1,17952:32583029,30886656 -) -(1,17953:6630773,32538168:25952256,474481,7863 -(1,17953:6630773,32538168:0,0,0 -g1,17953:6630773,32538168 -) -k1,17953:32583029,32538168:24418058 -g1,17953:32583029,32538168 -) -(1,17955:6630773,33796464:25952256,505283,126483 -k1,17954:8106563,33796464:300730 -k1,17954:9796656,33796464:300730 -k1,17954:10748814,33796464:300730 -k1,17954:11797310,33796464:300730 -k1,17954:14400320,33796464:300730 -k1,17954:16323066,33796464:300730 -k1,17954:17371562,33796464:300730 -k1,17954:20456261,33796464:300730 -k1,17954:21443153,33796464:300730 -k1,17954:22099743,33796464:300730 -(1,17954:22099743,33796464:0,459977,115847 -r1,17959:25623415,33796464:3523672,575824,115847 -k1,17954:22099743,33796464:-3523672 -) -(1,17954:22099743,33796464:3523672,459977,115847 -k1,17954:22099743,33796464:3277 -h1,17954:25620138,33796464:0,411205,112570 -) -k1,17954:25924145,33796464:300730 -k1,17954:26907760,33796464:300730 -(1,17954:26907760,33796464:0,452978,115847 -r1,17959:29024585,33796464:2116825,568825,115847 -k1,17954:26907760,33796464:-2116825 -) -(1,17954:26907760,33796464:2116825,452978,115847 -k1,17954:26907760,33796464:3277 -h1,17954:29021308,33796464:0,411205,112570 -) -k1,17954:29498985,33796464:300730 -k1,17954:31193666,33796464:300730 -k1,17954:32583029,33796464:0 -) -(1,17955:6630773,34661544:25952256,505283,134348 -k1,17954:8926117,34661544:257174 -k1,17954:9908119,34661544:257174 -k1,17954:11449800,34661544:257175 -k1,17954:13158596,34661544:257174 -k1,17954:14619666,34661544:257174 -k1,17954:18248667,34661544:257174 -k1,17954:18861701,34661544:257174 -k1,17954:20991894,34661544:257174 -k1,17954:24990519,34661544:257175 -k1,17954:27144960,34661544:257174 -k1,17954:28593579,34661544:257174 -k1,17954:29869838,34661544:257174 -k1,17954:32583029,34661544:0 -) -(1,17955:6630773,35526624:25952256,513147,134348 -k1,17954:7899248,35526624:276915 -k1,17954:10938505,35526624:276914 -k1,17954:13226065,35526624:276915 -k1,17954:16389186,35526624:276915 -k1,17954:17282138,35526624:276914 -k1,17954:18843559,35526624:276915 -k1,17954:20993493,35526624:276915 -k1,17954:23167675,35526624:276915 -k1,17954:24072424,35526624:276914 -k1,17954:26051309,35526624:276915 -k1,17954:28456833,35526624:276915 -k1,17954:29349785,35526624:276914 -k1,17954:31015408,35526624:276915 -k1,17954:32583029,35526624:0 -) -(1,17955:6630773,36391704:25952256,505283,126483 -k1,17954:9804634,36391704:182143 -k1,17954:11526873,36391704:182143 -k1,17954:13605629,36391704:182144 -k1,17954:14473934,36391704:182143 -k1,17954:17746100,36391704:182143 -k1,17954:18544281,36391704:182143 -k1,17954:21144047,36391704:182143 -h1,17954:21542506,36391704:0,0,0 -k1,17954:21898320,36391704:182144 -k1,17954:23277150,36391704:182143 -k1,17954:26300934,36391704:182143 -k1,17954:27134505,36391704:182143 -k1,17954:28064415,36391704:182144 -k1,17954:30548838,36391704:182143 -k1,17954:31835263,36391704:182143 -k1,17955:32583029,36391704:0 -) -(1,17955:6630773,37256784:25952256,505283,115847 -(1,17954:6630773,37256784:0,452978,115847 -r1,17959:9099310,37256784:2468537,568825,115847 -k1,17954:6630773,37256784:-2468537 -) -(1,17954:6630773,37256784:2468537,452978,115847 -k1,17954:6630773,37256784:3277 -h1,17954:9096033,37256784:0,411205,112570 -) -k1,17954:9482074,37256784:209094 -(1,17954:9482074,37256784:0,459977,115847 -r1,17959:11598899,37256784:2116825,575824,115847 -k1,17954:9482074,37256784:-2116825 -) -(1,17954:9482074,37256784:2116825,459977,115847 -k1,17954:9482074,37256784:3277 -h1,17954:11595622,37256784:0,411205,112570 -) -k1,17954:11981664,37256784:209095 -(1,17954:11981664,37256784:0,452978,115847 -r1,17959:15153624,37256784:3171960,568825,115847 -k1,17954:11981664,37256784:-3171960 -) -(1,17954:11981664,37256784:3171960,452978,115847 -k1,17954:11981664,37256784:3277 -h1,17954:15150347,37256784:0,411205,112570 -) -k1,17954:15536388,37256784:209094 -k1,17954:16936927,37256784:209094 -k1,17954:18571429,37256784:209094 -k1,17954:19463409,37256784:209095 -k1,17954:21053347,37256784:209094 -k1,17954:23300611,37256784:209094 -k1,17954:24195867,37256784:209094 -(1,17954:24195867,37256784:0,414482,115847 -r1,17959:26664404,37256784:2468537,530329,115847 -k1,17954:24195867,37256784:-2468537 -) -(1,17954:24195867,37256784:2468537,414482,115847 -k1,17954:24195867,37256784:3277 -h1,17954:26661127,37256784:0,411205,112570 -) -k1,17954:27047169,37256784:209095 -k1,17954:29180400,37256784:209094 -k1,17954:32583029,37256784:0 -) -(1,17955:6630773,38121864:25952256,513147,134348 -g1,17954:7481430,38121864 -g1,17954:10509192,38121864 -g1,17954:11905764,38121864 -g1,17954:14631406,38121864 -g1,17954:15778286,38121864 -g1,17954:17679485,38121864 -g1,17954:19595102,38121864 -g1,17954:20453623,38121864 -g1,17954:22042215,38121864 -g1,17954:23735010,38121864 -g1,17954:24620401,38121864 -g1,17954:26245038,38121864 -k1,17955:32583029,38121864:4233630 -g1,17955:32583029,38121864 -) -(1,17956:6630773,39773376:25952256,473825,134348 -(1,17956:6630773,39773376:0,0,0 -g1,17956:6630773,39773376 -) -k1,17956:32583030,39773376:23192536 -g1,17956:32583030,39773376 -) -(1,17958:6630773,41031672:25952256,505283,134348 -k1,17957:8716019,41031672:332158 -k1,17957:13062258,41031672:332159 -k1,17957:13750276,41031672:332158 -k1,17957:15533401,41031672:332158 -k1,17957:17254923,41031672:332159 -k1,17957:20428722,41031672:332158 -k1,17957:22236095,41031672:332158 -k1,17957:23219682,41031672:332159 -k1,17957:24299606,41031672:332158 -k1,17957:27217159,41031672:332158 -k1,17957:28200746,41031672:332159 -k1,17957:31707468,41031672:332158 -k1,17957:32583029,41031672:0 -) -(1,17958:6630773,41896752:25952256,513147,134348 -k1,17957:9230539,41896752:210979 -k1,17957:13118088,41896752:210979 -k1,17957:14874406,41896752:210979 -k1,17957:16692984,41896752:210980 -k1,17957:18036425,41896752:210979 -k1,17957:19722619,41896752:210979 -k1,17957:20704301,41896752:210979 -$1,17957:20704301,41896752 -$1,17957:21206962,41896752 -k1,17957:21417941,41896752:210979 -k1,17957:25147548,41896752:210979 -k1,17957:27243998,41896752:210979 -k1,17957:27986475,41896752:210980 -k1,17957:29354164,41896752:210979 -k1,17957:30224435,41896752:210979 -k1,17957:31454499,41896752:210979 -k1,17958:32583029,41896752:0 -) -(1,17958:6630773,42761832:25952256,505283,134348 -k1,17957:9043153,42761832:223478 -k1,17957:10458076,42761832:223478 -k1,17957:11037413,42761832:223477 -k1,17957:13772231,42761832:223478 -k1,17957:17357706,42761832:223478 -k1,17957:20397266,42761832:223478 -k1,17957:21510722,42761832:223477 -k1,17957:25170908,42761832:223478 -k1,17957:27979781,42761832:223478 -k1,17957:28854687,42761832:223478 -k1,17957:29709931,42761832:223477 -k1,17957:31130096,42761832:223478 -k1,17958:32583029,42761832:0 -) -(1,17958:6630773,43626912:25952256,513147,138281 -k1,17957:8102866,43626912:204627 -k1,17957:9116863,43626912:204627 -k1,17957:9677350,43626912:204627 -k1,17957:10783746,43626912:204621 -k1,17957:12265670,43626912:204627 -k1,17957:13303260,43626912:204627 -k1,17957:14728823,43626912:204627 -k1,17957:15289309,43626912:204626 -k1,17957:17355814,43626912:204627 -k1,17957:18692903,43626912:204627 -k1,17957:19645296,43626912:204627 -k1,17957:23514696,43626912:204627 -k1,17957:24480851,43626912:204627 -$1,17957:24480851,43626912 -$1,17957:24983512,43626912 -k1,17957:25188138,43626912:204626 -k1,17957:26584210,43626912:204627 -$1,17957:26584210,43626912 -$1,17957:27136023,43626912 -k1,17957:27340650,43626912:204627 -k1,17957:30893511,43626912:204627 -k1,17957:32583029,43626912:0 -) -(1,17958:6630773,44491992:25952256,505283,138281 -k1,17957:7459517,44491992:212706 -k1,17957:8028083,44491992:212706 -k1,17957:9142551,44491992:212693 -k1,17957:10806224,44491992:212706 -k1,17957:12673714,44491992:212706 -k1,17957:16060984,44491992:212706 -k1,17957:17803957,44491992:212707 -k1,17957:18668091,44491992:212706 -k1,17957:19628563,44491992:212706 -k1,17957:22426664,44491992:212706 -$1,17957:22426664,44491992 -$1,17957:22929325,44491992 -k1,17957:23315701,44491992:212706 -$1,17957:23315701,44491992 -$1,17957:23867514,44491992 -k1,17957:24080220,44491992:212706 -k1,17957:25484372,44491992:212707 -$1,17957:25484372,44491992 -$1,17957:25909701,44491992 -k1,17957:26296077,44491992:212706 -k1,17957:28204199,44491992:212706 -k1,17957:31591469,44491992:212706 -k1,17957:32583029,44491992:0 -) -(1,17958:6630773,45357072:25952256,505283,126483 -k1,17957:7928878,45357072:231834 -k1,17957:10382382,45357072:231833 -k1,17957:11265644,45357072:231834 -k1,17957:15409321,45357072:231833 -k1,17957:17021343,45357072:231834 -k1,17957:18244736,45357072:231833 -k1,17957:21946046,45357072:231834 -k1,17957:23324104,45357072:231833 -k1,17957:25760569,45357072:231834 -k1,17957:27434849,45357072:231833 -k1,17957:29709440,45357072:231834 -k1,17957:31109780,45357072:231833 -k1,17957:32583029,45357072:0 -) -] -(1,17959:32583029,45706769:0,0,0 -g1,17959:32583029,45706769 -) -) -] -(1,17959:6630773,47279633:25952256,0,0 -h1,17959:6630773,47279633:25952256,0,0 -) -] -(1,17959:4262630,4025873:0,0,0 -[1,17959:-473656,4025873:0,0,0 -(1,17959:-473656,-710413:0,0,0 -(1,17959:-473656,-710413:0,0,0 -g1,17959:-473656,-710413 -) -g1,17959:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,17957:3078558,4812305:0,0,0 +(1,17957:3078558,49800853:0,16384,2228224 +g1,17957:29030814,49800853 +g1,17957:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17957:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17957:37855564,49800853:1179648,16384,0 +) +) +k1,17957:3078556,49800853:-34777008 +) +] +g1,17957:6630773,4812305 +k1,17957:21386205,4812305:13560055 +g1,17957:21999622,4812305 +g1,17957:25611966,4812305 +g1,17957:28956923,4812305 +g1,17957:29772190,4812305 +) +) +] +[1,17957:6630773,45706769:25952256,40108032,0 +(1,17957:6630773,45706769:25952256,40108032,0 +(1,17957:6630773,45706769:0,0,0 +g1,17957:6630773,45706769 +) +[1,17957:6630773,45706769:25952256,40108032,0 +(1,17939:6630773,6254097:25952256,505283,134348 +k1,17938:7557397,6254097:240462 +k1,17938:9816369,6254097:240463 +k1,17938:11792224,6254097:240462 +k1,17938:14916926,6254097:240463 +k1,17938:19069232,6254097:240462 +k1,17938:22131020,6254097:240463 +k1,17938:23925996,6254097:240462 +k1,17938:27004167,6254097:240462 +k1,17938:27896058,6254097:240463 +k1,17938:29155605,6254097:240462 +$1,17938:29155605,6254097 +$1,17938:29658266,6254097 +k1,17938:29898729,6254097:240463 +k1,17938:31391584,6254097:240462 +k1,17938:32583029,6254097:0 +) +(1,17939:6630773,7119177:25952256,505283,138281 +g1,17938:7849087,7119177 +g1,17938:10057650,7119177 +g1,17938:10908307,7119177 +g1,17938:12126621,7119177 +$1,17938:12126621,7119177 +$1,17938:12678434,7119177 +g1,17938:12877663,7119177 +k1,17939:32583028,7119177:18400544 +g1,17939:32583028,7119177 +) +(1,17941:6630773,7984257:25952256,513147,134348 +h1,17940:6630773,7984257:983040,0,0 +k1,17940:9025895,7984257:215395 +k1,17940:12143880,7984257:215395 +k1,17940:13018567,7984257:215395 +k1,17940:15953051,7984257:215395 +k1,17940:18214480,7984257:215395 +k1,17940:18887972,7984257:215395 +k1,17940:21733326,7984257:215394 +k1,17940:22600149,7984257:215395 +k1,17940:24904176,7984257:215395 +k1,17940:26727169,7984257:215395 +k1,17940:27704092,7984257:215395 +k1,17940:31274275,7984257:215395 +k1,17941:32583029,7984257:0 +) +(1,17941:6630773,8849337:25952256,513147,134348 +k1,17940:7912048,8849337:141604 +k1,17940:10922819,8849337:141605 +k1,17940:11680461,8849337:141604 +k1,17940:13390343,8849337:141605 +k1,17940:14816453,8849337:141604 +k1,17940:15949618,8849337:141605 +k1,17940:18063856,8849337:141604 +k1,17940:21872855,8849337:141604 +k1,17940:22642295,8849337:141605 +k1,17940:24485869,8849337:141604 +k1,17940:26756083,8849337:141605 +k1,17940:27916772,8849337:141604 +k1,17940:30763048,8849337:141605 +k1,17940:31563944,8849337:141604 +k1,17940:32583029,8849337:0 +) +(1,17941:6630773,9714417:25952256,513147,134348 +k1,17940:9403803,9714417:143070 +k1,17940:13865040,9714417:143070 +k1,17940:14667402,9714417:143070 +k1,17940:17365721,9714417:143070 +k1,17940:19044300,9714417:143070 +k1,17940:20727466,9714417:143070 +k1,17940:22478134,9714417:143070 +k1,17940:23307366,9714417:143070 +k1,17940:24839144,9714417:143070 +k1,17940:26001299,9714417:143070 +k1,17940:27730340,9714417:143070 +k1,17940:28532702,9714417:143070 +k1,17940:29694857,9714417:143070 +k1,17940:32583029,9714417:0 +) +(1,17941:6630773,10579497:25952256,513147,134348 +k1,17940:7785994,10579497:163661 +k1,17940:11215970,10579497:163662 +k1,17940:12760475,10579497:163661 +k1,17940:15898160,10579497:163661 +k1,17940:18107855,10579497:163661 +k1,17940:21100050,10579497:163662 +k1,17940:24402230,10579497:163661 +k1,17940:27422605,10579497:163661 +k1,17940:28272428,10579497:163661 +k1,17940:30152478,10579497:163662 +k1,17940:30975431,10579497:163661 +k1,17940:32583029,10579497:0 +) +(1,17941:6630773,11444577:25952256,505283,134348 +g1,17940:7896273,11444577 +g1,17940:11594469,11444577 +g1,17940:13491736,11444577 +g1,17940:14710050,11444577 +g1,17940:17737812,11444577 +g1,17940:20517193,11444577 +g1,17940:21923595,11444577 +g1,17940:24979538,11444577 +g1,17940:26283049,11444577 +g1,17940:27230044,11444577 +g1,17940:29230202,11444577 +k1,17941:32583029,11444577:950278 +g1,17941:32583029,11444577 +) +v1,17943:6630773,12309657:0,393216,0 +(1,17944:6630773,17130582:25952256,5214141,0 +g1,17944:6630773,17130582 +g1,17944:6237557,17130582 +r1,17957:6368629,17130582:131072,5214141,0 +g1,17944:6567858,17130582 +g1,17944:6764466,17130582 +[1,17944:6764466,17130582:25818563,5214141,0 +(1,17944:6764466,12670834:25818563,754393,260573 +(1,17943:6764466,12670834:0,754393,260573 +r1,17957:7856192,12670834:1091726,1014966,260573 +k1,17943:6764466,12670834:-1091726 +) +(1,17943:6764466,12670834:1091726,754393,260573 +) +k1,17943:8090949,12670834:234757 +k1,17943:8418629,12670834:327680 +k1,17943:10436620,12670834:234756 +k1,17943:11027237,12670834:234757 +k1,17943:13287712,12670834:234757 +k1,17943:14053966,12670834:234757 +k1,17943:15940885,12670834:234756 +k1,17943:17194727,12670834:234757 +k1,17943:19312333,12670834:234757 +k1,17943:20824387,12670834:234757 +k1,17943:22250588,12670834:234756 +k1,17943:23273743,12670834:234757 +k1,17943:27436073,12670834:234757 +k1,17943:28662390,12670834:234757 +k1,17943:31247267,12670834:234756 +k1,17943:32168186,12670834:234757 +k1,17944:32583029,12670834:0 +) +(1,17944:6764466,13535914:25818563,513147,134348 +k1,17943:9251967,13535914:197673 +k1,17943:10734146,13535914:197673 +k1,17943:12036101,13535914:197673 +k1,17943:12981540,13535914:197673 +k1,17943:14990628,13535914:197673 +k1,17943:15804339,13535914:197673 +k1,17943:17021097,13535914:197673 +k1,17943:20603049,13535914:197673 +k1,17943:21483607,13535914:197673 +k1,17943:23967831,13535914:197673 +k1,17943:24816932,13535914:197673 +k1,17943:25370465,13535914:197673 +k1,17943:26551178,13535914:197673 +k1,17943:27435013,13535914:197673 +k1,17943:28047528,13535914:197672 +k1,17943:30708699,13535914:197673 +k1,17943:32583029,13535914:0 +) +(1,17944:6764466,14400994:25818563,513147,134348 +k1,17943:9321353,14400994:267059 +k1,17943:11846783,14400994:267059 +k1,17943:12469703,14400994:267060 +k1,17943:14675317,14400994:267059 +k1,17943:15890027,14400994:267059 +k1,17943:20171166,14400994:267059 +k1,17943:21457310,14400994:267059 +k1,17943:23175336,14400994:267059 +k1,17943:24508667,14400994:267060 +k1,17943:25564124,14400994:267059 +k1,17943:27237586,14400994:267059 +k1,17943:30454420,14400994:267059 +k1,17944:32583029,14400994:0 +) +(1,17944:6764466,15266074:25818563,505283,134348 +k1,17943:9866678,15266074:286130 +k1,17943:11349496,15266074:286131 +k1,17943:14585401,15266074:286130 +k1,17943:19536384,15266074:286130 +k1,17943:20354012,15266074:286131 +k1,17943:23793079,15266074:286130 +k1,17943:25777247,15266074:286130 +k1,17943:27082462,15266074:286130 +k1,17943:29328119,15266074:286131 +k1,17943:30145746,15266074:286130 +k1,17943:32583029,15266074:0 +) +(1,17944:6764466,16131154:25818563,513147,134348 +k1,17943:9904161,16131154:242348 +k1,17943:10829394,16131154:242348 +k1,17943:12311683,16131154:242348 +k1,17943:14322193,16131154:242349 +k1,17943:15583626,16131154:242348 +k1,17943:17479447,16131154:242348 +(1,17943:17479447,16131154:0,452978,122846 +r1,17957:18892848,16131154:1413401,575824,122846 +k1,17943:17479447,16131154:-1413401 +) +(1,17943:17479447,16131154:1413401,452978,122846 +k1,17943:17479447,16131154:3277 +h1,17943:18889571,16131154:0,411205,112570 +) +k1,17943:19135196,16131154:242348 +k1,17943:20654841,16131154:242348 +k1,17943:22856715,16131154:242348 +k1,17943:24203346,16131154:242349 +k1,17943:25193460,16131154:242348 +k1,17943:28310872,16131154:242348 +k1,17943:29820686,16131154:242348 +k1,17943:32583029,16131154:0 +) +(1,17944:6764466,16996234:25818563,513147,134348 +g1,17943:9218789,16996234 +g1,17943:10609463,16996234 +g1,17943:12786569,16996234 +g1,17943:15374585,16996234 +g1,17943:18084498,16996234 +g1,17943:19231378,16996234 +g1,17943:21725678,16996234 +g1,17943:24134781,16996234 +k1,17944:32583029,16996234:5823531 +g1,17944:32583029,16996234 +) +] +g1,17944:32583029,17130582 +) +h1,17944:6630773,17130582:0,0,0 +(1,17947:6630773,17995662:25952256,513147,134348 +h1,17946:6630773,17995662:983040,0,0 +k1,17946:9085096,17995662:274596 +k1,17946:14196904,17995662:274596 +k1,17946:15130792,17995662:274596 +k1,17946:15761248,17995662:274596 +k1,17946:16970387,17995662:274596 +k1,17946:17904276,17995662:274597 +k1,17946:19568235,17995662:274596 +k1,17946:20525716,17995662:274596 +k1,17946:24872064,17995662:274596 +k1,17946:26414126,17995662:274596 +k1,17946:27044582,17995662:274596 +k1,17946:30194242,17995662:274596 +k1,17946:32583029,17995662:0 +) +(1,17947:6630773,18860742:25952256,513147,134348 +k1,17946:8218664,18860742:220154 +k1,17946:11018970,18860742:220154 +k1,17946:14067657,18860742:220154 +k1,17946:15392094,18860742:220155 +k1,17946:16360014,18860742:220154 +k1,17946:20389776,18860742:220154 +k1,17946:21296092,18860742:220154 +k1,17946:21872106,18860742:220154 +k1,17946:23442302,18860742:220154 +k1,17946:24321748,18860742:220154 +k1,17946:28522560,18860742:220155 +k1,17946:29814883,18860742:220154 +k1,17946:31320853,18860742:220154 +k1,17946:32227169,18860742:220154 +k1,17946:32583029,18860742:0 +) +(1,17947:6630773,19725822:25952256,513147,134348 +k1,17946:9725055,19725822:154337 +k1,17946:10538684,19725822:154337 +k1,17946:13153899,19725822:154338 +k1,17946:16242938,19725822:154337 +k1,17946:17945891,19725822:154337 +k1,17946:20160025,19725822:154337 +k1,17946:21598869,19725822:154338 +k1,17946:22772291,19725822:154337 +k1,17946:25900652,19725822:154337 +k1,17946:27622610,19725822:154337 +k1,17946:30863038,19725822:154338 +k1,17946:31373235,19725822:154337 +k1,17947:32583029,19725822:0 +) +(1,17947:6630773,20590902:25952256,513147,126483 +k1,17946:8008558,20590902:194860 +k1,17946:9012789,20590902:194861 +k1,17946:10918794,20590902:194860 +k1,17946:11645151,20590902:194860 +k1,17946:13124517,20590902:194860 +k1,17946:13935416,20590902:194861 +k1,17946:15731976,20590902:194860 +k1,17946:17624218,20590902:194860 +k1,17946:20722323,20590902:194860 +k1,17946:23513065,20590902:194861 +k1,17946:24699485,20590902:194860 +k1,17946:26407571,20590902:194860 +k1,17946:28300469,20590902:194860 +k1,17946:29514415,20590902:194861 +k1,17946:31090119,20590902:194860 +k1,17946:32583029,20590902:0 +) +(1,17947:6630773,21455982:25952256,513147,126483 +k1,17946:7846887,21455982:149843 +k1,17946:10426806,21455982:149844 +k1,17946:12907765,21455982:149843 +k1,17946:17669377,21455982:149843 +k1,17946:19015907,21455982:149843 +k1,17946:21104306,21455982:149844 +k1,17946:21905577,21455982:149843 +k1,17946:23697752,21455982:149843 +k1,17946:24203456,21455982:149844 +k1,17946:25630596,21455982:149843 +k1,17946:27641006,21455982:149843 +k1,17946:28442277,21455982:149843 +k1,17946:30851147,21455982:149844 +k1,17946:31563944,21455982:149843 +k1,17946:32583029,21455982:0 +) +(1,17947:6630773,22321062:25952256,505283,134348 +k1,17946:8213982,22321062:193846 +k1,17946:9059256,22321062:193846 +k1,17946:10519258,22321062:193846 +k1,17946:11320623,22321062:193846 +k1,17946:13399940,22321062:193846 +k1,17946:16105126,22321062:193846 +k1,17946:16950400,22321062:193846 +k1,17946:18540818,22321062:193846 +k1,17946:19386092,22321062:193846 +k1,17946:21465409,22321062:193846 +k1,17946:24609030,22321062:193846 +k1,17946:27580947,22321062:193846 +k1,17946:28664772,22321062:193846 +k1,17946:32083645,22321062:193846 +k1,17946:32583029,22321062:0 +) +(1,17947:6630773,23186142:25952256,505283,134348 +k1,17946:8697678,23186142:207648 +k1,17946:10793418,23186142:207648 +k1,17946:11652494,23186142:207648 +k1,17946:13057485,23186142:207648 +k1,17946:14456578,23186142:207648 +k1,17946:16549697,23186142:207648 +k1,17946:19920768,23186142:207648 +k1,17946:24793269,23186142:207648 +k1,17946:25652345,23186142:207648 +k1,17946:27126149,23186142:207648 +k1,17946:27961632,23186142:207648 +k1,17946:29188365,23186142:207648 +k1,17946:31298523,23186142:207648 +k1,17946:32583029,23186142:0 +) +(1,17947:6630773,24051222:25952256,505283,126483 +k1,17946:9644555,24051222:171486 +k1,17946:10835125,24051222:171485 +k1,17946:12220338,24051222:171486 +k1,17946:15027027,24051222:171486 +k1,17946:16587875,24051222:171485 +k1,17946:18770006,24051222:171486 +k1,17946:20132937,24051222:171486 +k1,17946:23148685,24051222:171485 +k1,17946:25504486,24051222:171486 +k1,17946:26230407,24051222:171486 +k1,17946:26757752,24051222:171485 +k1,17946:30337110,24051222:171486 +k1,17946:32583029,24051222:0 +) +(1,17947:6630773,24916302:25952256,513147,138281 +k1,17946:9802322,24916302:215876 +k1,17946:11393798,24916302:215875 +k1,17946:14784238,24916302:215876 +$1,17946:14784238,24916302 +$1,17946:15286899,24916302 +k1,17946:15676445,24916302:215876 +$1,17946:15676445,24916302 +$1,17946:16228258,24916302 +k1,17946:16444133,24916302:215875 +k1,17946:17851454,24916302:215876 +k1,17946:20711052,24916302:215876 +$1,17946:20711052,24916302 +$1,17946:21136381,24916302 +k1,17946:21733020,24916302:215875 +k1,17946:22420755,24916302:215876 +k1,17946:22992491,24916302:215876 +k1,17946:25194762,24916302:215875 +k1,17946:26062066,24916302:215876 +k1,17946:27544098,24916302:215876 +k1,17946:28956660,24916302:215875 +k1,17946:31015408,24916302:215876 +k1,17946:32583029,24916302:0 +) +(1,17947:6630773,25781382:25952256,513147,134348 +k1,17946:10819584,25781382:174731 +k1,17946:11350175,25781382:174731 +k1,17946:12802203,25781382:174731 +k1,17946:14936460,25781382:174731 +k1,17946:16846584,25781382:174731 +k1,17946:18040400,25781382:174731 +k1,17946:21117721,25781382:174731 +k1,17946:21951744,25781382:174731 +k1,17946:24845564,25781382:174731 +k1,17946:25551791,25781382:174730 +k1,17946:26497225,25781382:174731 +k1,17946:27086775,25781382:174707 +k1,17946:29221032,25781382:174731 +k1,17946:32583029,25781382:0 +) +(1,17947:6630773,26646462:25952256,513147,134348 +k1,17946:7159697,26646462:173064 +k1,17946:9571470,26646462:173063 +k1,17946:10692185,26646462:173064 +k1,17946:11221109,26646462:173064 +k1,17946:13145294,26646462:173063 +k1,17946:16298935,26646462:173064 +k1,17946:17491083,26646462:173063 +k1,17946:19227181,26646462:173064 +k1,17946:21285716,26646462:173064 +k1,17946:24012062,26646462:173063 +k1,17946:26953367,26646462:173064 +k1,17946:27777859,26646462:173064 +k1,17946:29652892,26646462:173063 +k1,17946:30240773,26646462:173038 +k1,17947:32583029,26646462:0 +k1,17947:32583029,26646462:0 +) +(1,17948:6630773,28763280:25952256,564462,147783 +(1,17948:6630773,28763280:2450326,534184,12975 +g1,17948:6630773,28763280 +g1,17948:9081099,28763280 +) +g1,17948:10697348,28763280 +g1,17948:13182277,28763280 +g1,17948:14151883,28763280 +g1,17948:15533841,28763280 +k1,17948:32583029,28763280:13771995 +g1,17948:32583029,28763280 +) +(1,17950:6630773,30021576:25952256,513147,134348 +k1,17949:8812517,30021576:140298 +k1,17949:11585396,30021576:140298 +k1,17949:12081554,30021576:140298 +k1,17949:13499149,30021576:140298 +k1,17949:14994732,30021576:140298 +k1,17949:15896558,30021576:140298 +k1,17949:17565811,30021576:140298 +k1,17949:17919042,30021576:140239 +k1,17949:21131668,30021576:140298 +k1,17949:22291051,30021576:140298 +k1,17949:25193692,30021576:140298 +k1,17949:29261563,30021576:140298 +k1,17949:30061153,30021576:140298 +k1,17949:30557311,30021576:140298 +k1,17949:32583029,30021576:0 +) +(1,17950:6630773,30886656:25952256,513147,134348 +g1,17949:8942227,30886656 +g1,17949:9824341,30886656 +g1,17949:11042655,30886656 +g1,17949:13196823,30886656 +g1,17949:14055344,30886656 +g1,17949:15273658,30886656 +g1,17949:18375477,30886656 +g1,17949:19233998,30886656 +k1,17950:32583029,30886656:10577514 +g1,17950:32583029,30886656 +) +(1,17951:6630773,32538168:25952256,474481,7863 +(1,17951:6630773,32538168:0,0,0 +g1,17951:6630773,32538168 +) +k1,17951:32583029,32538168:24418058 +g1,17951:32583029,32538168 +) +(1,17953:6630773,33796464:25952256,505283,126483 +k1,17952:8106563,33796464:300730 +k1,17952:9796656,33796464:300730 +k1,17952:10748814,33796464:300730 +k1,17952:11797310,33796464:300730 +k1,17952:14400320,33796464:300730 +k1,17952:16323066,33796464:300730 +k1,17952:17371562,33796464:300730 +k1,17952:20456261,33796464:300730 +k1,17952:21443153,33796464:300730 +k1,17952:22099743,33796464:300730 +(1,17952:22099743,33796464:0,459977,115847 +r1,17957:25623415,33796464:3523672,575824,115847 +k1,17952:22099743,33796464:-3523672 +) +(1,17952:22099743,33796464:3523672,459977,115847 +k1,17952:22099743,33796464:3277 +h1,17952:25620138,33796464:0,411205,112570 +) +k1,17952:25924145,33796464:300730 +k1,17952:26907760,33796464:300730 +(1,17952:26907760,33796464:0,452978,115847 +r1,17957:29024585,33796464:2116825,568825,115847 +k1,17952:26907760,33796464:-2116825 +) +(1,17952:26907760,33796464:2116825,452978,115847 +k1,17952:26907760,33796464:3277 +h1,17952:29021308,33796464:0,411205,112570 +) +k1,17952:29498985,33796464:300730 +k1,17952:31193666,33796464:300730 +k1,17952:32583029,33796464:0 +) +(1,17953:6630773,34661544:25952256,505283,134348 +k1,17952:8926117,34661544:257174 +k1,17952:9908119,34661544:257174 +k1,17952:11449800,34661544:257175 +k1,17952:13158596,34661544:257174 +k1,17952:14619666,34661544:257174 +k1,17952:18248667,34661544:257174 +k1,17952:18861701,34661544:257174 +k1,17952:20991894,34661544:257174 +k1,17952:24990519,34661544:257175 +k1,17952:27144960,34661544:257174 +k1,17952:28593579,34661544:257174 +k1,17952:29869838,34661544:257174 +k1,17952:32583029,34661544:0 +) +(1,17953:6630773,35526624:25952256,513147,134348 +k1,17952:7899248,35526624:276915 +k1,17952:10938505,35526624:276914 +k1,17952:13226065,35526624:276915 +k1,17952:16389186,35526624:276915 +k1,17952:17282138,35526624:276914 +k1,17952:18843559,35526624:276915 +k1,17952:20993493,35526624:276915 +k1,17952:23167675,35526624:276915 +k1,17952:24072424,35526624:276914 +k1,17952:26051309,35526624:276915 +k1,17952:28456833,35526624:276915 +k1,17952:29349785,35526624:276914 +k1,17952:31015408,35526624:276915 +k1,17952:32583029,35526624:0 +) +(1,17953:6630773,36391704:25952256,505283,126483 +k1,17952:9804634,36391704:182143 +k1,17952:11526873,36391704:182143 +k1,17952:13605629,36391704:182144 +k1,17952:14473934,36391704:182143 +k1,17952:17746100,36391704:182143 +k1,17952:18544281,36391704:182143 +k1,17952:21144047,36391704:182143 +h1,17952:21542506,36391704:0,0,0 +k1,17952:21898320,36391704:182144 +k1,17952:23277150,36391704:182143 +k1,17952:26300934,36391704:182143 +k1,17952:27134505,36391704:182143 +k1,17952:28064415,36391704:182144 +k1,17952:30548838,36391704:182143 +k1,17952:31835263,36391704:182143 +k1,17953:32583029,36391704:0 +) +(1,17953:6630773,37256784:25952256,505283,115847 +(1,17952:6630773,37256784:0,452978,115847 +r1,17957:9099310,37256784:2468537,568825,115847 +k1,17952:6630773,37256784:-2468537 +) +(1,17952:6630773,37256784:2468537,452978,115847 +k1,17952:6630773,37256784:3277 +h1,17952:9096033,37256784:0,411205,112570 +) +k1,17952:9482074,37256784:209094 +(1,17952:9482074,37256784:0,459977,115847 +r1,17957:11598899,37256784:2116825,575824,115847 +k1,17952:9482074,37256784:-2116825 +) +(1,17952:9482074,37256784:2116825,459977,115847 +k1,17952:9482074,37256784:3277 +h1,17952:11595622,37256784:0,411205,112570 +) +k1,17952:11981664,37256784:209095 +(1,17952:11981664,37256784:0,452978,115847 +r1,17957:15153624,37256784:3171960,568825,115847 +k1,17952:11981664,37256784:-3171960 +) +(1,17952:11981664,37256784:3171960,452978,115847 +k1,17952:11981664,37256784:3277 +h1,17952:15150347,37256784:0,411205,112570 +) +k1,17952:15536388,37256784:209094 +k1,17952:16936927,37256784:209094 +k1,17952:18571429,37256784:209094 +k1,17952:19463409,37256784:209095 +k1,17952:21053347,37256784:209094 +k1,17952:23300611,37256784:209094 +k1,17952:24195867,37256784:209094 +(1,17952:24195867,37256784:0,414482,115847 +r1,17957:26664404,37256784:2468537,530329,115847 +k1,17952:24195867,37256784:-2468537 +) +(1,17952:24195867,37256784:2468537,414482,115847 +k1,17952:24195867,37256784:3277 +h1,17952:26661127,37256784:0,411205,112570 +) +k1,17952:27047169,37256784:209095 +k1,17952:29180400,37256784:209094 +k1,17952:32583029,37256784:0 +) +(1,17953:6630773,38121864:25952256,513147,134348 +g1,17952:7481430,38121864 +g1,17952:10509192,38121864 +g1,17952:11905764,38121864 +g1,17952:14631406,38121864 +g1,17952:15778286,38121864 +g1,17952:17679485,38121864 +g1,17952:19595102,38121864 +g1,17952:20453623,38121864 +g1,17952:22042215,38121864 +g1,17952:23735010,38121864 +g1,17952:24620401,38121864 +g1,17952:26245038,38121864 +k1,17953:32583029,38121864:4233630 +g1,17953:32583029,38121864 +) +(1,17954:6630773,39773376:25952256,473825,134348 +(1,17954:6630773,39773376:0,0,0 +g1,17954:6630773,39773376 +) +k1,17954:32583030,39773376:23192536 +g1,17954:32583030,39773376 +) +(1,17956:6630773,41031672:25952256,505283,134348 +k1,17955:8716019,41031672:332158 +k1,17955:13062258,41031672:332159 +k1,17955:13750276,41031672:332158 +k1,17955:15533401,41031672:332158 +k1,17955:17254923,41031672:332159 +k1,17955:20428722,41031672:332158 +k1,17955:22236095,41031672:332158 +k1,17955:23219682,41031672:332159 +k1,17955:24299606,41031672:332158 +k1,17955:27217159,41031672:332158 +k1,17955:28200746,41031672:332159 +k1,17955:31707468,41031672:332158 +k1,17955:32583029,41031672:0 +) +(1,17956:6630773,41896752:25952256,513147,134348 +k1,17955:9230539,41896752:210979 +k1,17955:13118088,41896752:210979 +k1,17955:14874406,41896752:210979 +k1,17955:16692984,41896752:210980 +k1,17955:18036425,41896752:210979 +k1,17955:19722619,41896752:210979 +k1,17955:20704301,41896752:210979 +$1,17955:20704301,41896752 +$1,17955:21206962,41896752 +k1,17955:21417941,41896752:210979 +k1,17955:25147548,41896752:210979 +k1,17955:27243998,41896752:210979 +k1,17955:27986475,41896752:210980 +k1,17955:29354164,41896752:210979 +k1,17955:30224435,41896752:210979 +k1,17955:31454499,41896752:210979 +k1,17956:32583029,41896752:0 +) +(1,17956:6630773,42761832:25952256,505283,134348 +k1,17955:9043153,42761832:223478 +k1,17955:10458076,42761832:223478 +k1,17955:11037413,42761832:223477 +k1,17955:13772231,42761832:223478 +k1,17955:17357706,42761832:223478 +k1,17955:20397266,42761832:223478 +k1,17955:21510722,42761832:223477 +k1,17955:25170908,42761832:223478 +k1,17955:27979781,42761832:223478 +k1,17955:28854687,42761832:223478 +k1,17955:29709931,42761832:223477 +k1,17955:31130096,42761832:223478 +k1,17956:32583029,42761832:0 +) +(1,17956:6630773,43626912:25952256,513147,138281 +k1,17955:8102866,43626912:204627 +k1,17955:9116863,43626912:204627 +k1,17955:9677350,43626912:204627 +k1,17955:10783746,43626912:204621 +k1,17955:12265670,43626912:204627 +k1,17955:13303260,43626912:204627 +k1,17955:14728823,43626912:204627 +k1,17955:15289309,43626912:204626 +k1,17955:17355814,43626912:204627 +k1,17955:18692903,43626912:204627 +k1,17955:19645296,43626912:204627 +k1,17955:23514696,43626912:204627 +k1,17955:24480851,43626912:204627 +$1,17955:24480851,43626912 +$1,17955:24983512,43626912 +k1,17955:25188138,43626912:204626 +k1,17955:26584210,43626912:204627 +$1,17955:26584210,43626912 +$1,17955:27136023,43626912 +k1,17955:27340650,43626912:204627 +k1,17955:30893511,43626912:204627 +k1,17955:32583029,43626912:0 +) +(1,17956:6630773,44491992:25952256,505283,138281 +k1,17955:7459517,44491992:212706 +k1,17955:8028083,44491992:212706 +k1,17955:9142551,44491992:212693 +k1,17955:10806224,44491992:212706 +k1,17955:12673714,44491992:212706 +k1,17955:16060984,44491992:212706 +k1,17955:17803957,44491992:212707 +k1,17955:18668091,44491992:212706 +k1,17955:19628563,44491992:212706 +k1,17955:22426664,44491992:212706 +$1,17955:22426664,44491992 +$1,17955:22929325,44491992 +k1,17955:23315701,44491992:212706 +$1,17955:23315701,44491992 +$1,17955:23867514,44491992 +k1,17955:24080220,44491992:212706 +k1,17955:25484372,44491992:212707 +$1,17955:25484372,44491992 +$1,17955:25909701,44491992 +k1,17955:26296077,44491992:212706 +k1,17955:28204199,44491992:212706 +k1,17955:31591469,44491992:212706 +k1,17955:32583029,44491992:0 +) +(1,17956:6630773,45357072:25952256,505283,126483 +k1,17955:7928878,45357072:231834 +k1,17955:10382382,45357072:231833 +k1,17955:11265644,45357072:231834 +k1,17955:15409321,45357072:231833 +k1,17955:17021343,45357072:231834 +k1,17955:18244736,45357072:231833 +k1,17955:21946046,45357072:231834 +k1,17955:23324104,45357072:231833 +k1,17955:25760569,45357072:231834 +k1,17955:27434849,45357072:231833 +k1,17955:29709440,45357072:231834 +k1,17955:31109780,45357072:231833 +k1,17955:32583029,45357072:0 +) +] +(1,17957:32583029,45706769:0,0,0 +g1,17957:32583029,45706769 +) +) +] +(1,17957:6630773,47279633:25952256,0,0 +h1,17957:6630773,47279633:25952256,0,0 +) +] +(1,17957:4262630,4025873:0,0,0 +[1,17957:-473656,4025873:0,0,0 +(1,17957:-473656,-710413:0,0,0 +(1,17957:-473656,-710413:0,0,0 +g1,17957:-473656,-710413 +) +g1,17957:-473656,-710413 ) ] ) ] !26412 -}289 -Input:2954:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2955:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2956:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2957:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}290 Input:2958:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2959:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2960:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2966:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{290 -[1,17971:4262630,47279633:28320399,43253760,0 -(1,17971:4262630,4025873:0,0,0 -[1,17971:-473656,4025873:0,0,0 -(1,17971:-473656,-710413:0,0,0 -(1,17971:-473656,-644877:0,0,0 -k1,17971:-473656,-644877:-65536 +{291 +[1,17969:4262630,47279633:28320399,43253760,0 +(1,17969:4262630,4025873:0,0,0 +[1,17969:-473656,4025873:0,0,0 +(1,17969:-473656,-710413:0,0,0 +(1,17969:-473656,-644877:0,0,0 +k1,17969:-473656,-644877:-65536 ) -(1,17971:-473656,4736287:0,0,0 -k1,17971:-473656,4736287:5209943 +(1,17969:-473656,4736287:0,0,0 +k1,17969:-473656,4736287:5209943 ) -g1,17971:-473656,-710413 +g1,17969:-473656,-710413 ) ] ) -[1,17971:6630773,47279633:25952256,43253760,0 -[1,17971:6630773,4812305:25952256,786432,0 -(1,17971:6630773,4812305:25952256,513147,126483 -(1,17971:6630773,4812305:25952256,513147,126483 -g1,17971:3078558,4812305 -[1,17971:3078558,4812305:0,0,0 -(1,17971:3078558,2439708:0,1703936,0 -k1,17971:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17971:2537886,2439708:1179648,16384,0 +[1,17969:6630773,47279633:25952256,43253760,0 +[1,17969:6630773,4812305:25952256,786432,0 +(1,17969:6630773,4812305:25952256,513147,126483 +(1,17969:6630773,4812305:25952256,513147,126483 +g1,17969:3078558,4812305 +[1,17969:3078558,4812305:0,0,0 +(1,17969:3078558,2439708:0,1703936,0 +k1,17969:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17969:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17971:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17969:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17971:3078558,4812305:0,0,0 -(1,17971:3078558,2439708:0,1703936,0 -g1,17971:29030814,2439708 -g1,17971:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17971:36151628,1915420:16384,1179648,0 +[1,17969:3078558,4812305:0,0,0 +(1,17969:3078558,2439708:0,1703936,0 +g1,17969:29030814,2439708 +g1,17969:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17969:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17971:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17969:37855564,2439708:1179648,16384,0 ) ) -k1,17971:3078556,2439708:-34777008 +k1,17969:3078556,2439708:-34777008 ) ] -[1,17971:3078558,4812305:0,0,0 -(1,17971:3078558,49800853:0,16384,2228224 -k1,17971:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17971:2537886,49800853:1179648,16384,0 +[1,17969:3078558,4812305:0,0,0 +(1,17969:3078558,49800853:0,16384,2228224 +k1,17969:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17969:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17971:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17969:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,17971:3078558,4812305:0,0,0 -(1,17971:3078558,49800853:0,16384,2228224 -g1,17971:29030814,49800853 -g1,17971:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17971:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17971:37855564,49800853:1179648,16384,0 -) -) -k1,17971:3078556,49800853:-34777008 -) -] -g1,17971:6630773,4812305 -g1,17971:6630773,4812305 -g1,17971:8017514,4812305 -g1,17971:11362471,4812305 -g1,17971:12177738,4812305 -g1,17971:15187806,4812305 -k1,17971:31387652,4812305:16199846 -) -) -] -[1,17971:6630773,45706769:25952256,40108032,0 -(1,17971:6630773,45706769:25952256,40108032,0 -(1,17971:6630773,45706769:0,0,0 -g1,17971:6630773,45706769 -) -[1,17971:6630773,45706769:25952256,40108032,0 -(1,17958:6630773,6254097:25952256,505283,134348 -k1,17957:7526595,6254097:212937 -k1,17957:9206228,6254097:212937 -k1,17957:11982279,6254097:212938 -k1,17957:14066269,6254097:212937 -k1,17957:16164677,6254097:212937 -k1,17957:17574957,6254097:212937 -k1,17957:18558597,6254097:212937 -k1,17957:21998527,6254097:212937 -k1,17957:25556423,6254097:212938 -k1,17957:26578730,6254097:212937 -k1,17957:28677138,6254097:212937 -k1,17957:29541503,6254097:212937 -k1,17957:32583029,6254097:0 -) -(1,17958:6630773,7119177:25952256,513147,95026 -g1,17957:7849087,7119177 -g1,17957:10058961,7119177 -g1,17957:10917482,7119177 -g1,17957:13958352,7119177 -g1,17957:16367455,7119177 -k1,17958:32583029,7119177:13075089 -g1,17958:32583029,7119177 -) -(1,17959:6630773,8770689:25952256,485622,11795 -(1,17959:6630773,8770689:0,0,0 -g1,17959:6630773,8770689 -) -k1,17959:32583030,8770689:23221372 -g1,17959:32583030,8770689 -) -(1,17961:6630773,10028985:25952256,513147,126483 -k1,17960:9684393,10028985:175279 -k1,17960:10851232,10028985:175279 -k1,17960:13581760,10028985:175279 -k1,17960:15041545,10028985:175279 -k1,17960:18258350,10028985:175279 -k1,17960:21905070,10028985:175278 -k1,17960:22739641,10028985:175279 -k1,17960:26423062,10028985:175279 -k1,17960:27281226,10028985:175279 -k1,17960:29148645,10028985:175279 -k1,17960:31025894,10028985:175279 -k1,17961:32583029,10028985:0 -) -(1,17961:6630773,10894065:25952256,513147,126483 -k1,17960:8455383,10894065:201283 -k1,17960:9466035,10894065:201282 -k1,17960:10686403,10894065:201283 -k1,17960:12898331,10894065:201283 -k1,17960:13715652,10894065:201283 -k1,17960:14936019,10894065:201282 -k1,17960:16700336,10894065:201283 -k1,17960:18684854,10894065:201283 -k1,17960:21568526,10894065:201283 -k1,17960:22761368,10894065:201282 -k1,17960:24475877,10894065:201283 -k1,17960:25624811,10894065:201283 -k1,17960:26181954,10894065:201283 -k1,17960:30620794,10894065:201282 -k1,17960:31841162,10894065:201283 -k1,17961:32583029,10894065:0 -) -(1,17961:6630773,11759145:25952256,505283,134348 -k1,17960:8911476,11759145:137676 -k1,17960:10729495,11759145:137676 -k1,17960:11398668,11759145:137676 -k1,17960:13741631,11759145:137676 -k1,17960:14530735,11759145:137676 -k1,17960:15024271,11759145:137676 -k1,17960:18301121,11759145:137676 -k1,17960:19630242,11759145:137676 -k1,17960:23993024,11759145:137676 -k1,17960:26318292,11759145:137676 -k1,17960:26811828,11759145:137676 -k1,17960:29631893,11759145:137676 -k1,17960:31055385,11759145:137676 -k1,17960:32583029,11759145:0 -) -(1,17961:6630773,12624225:25952256,513147,126483 -k1,17960:7132064,12624225:145431 -k1,17960:8835286,12624225:145431 -k1,17960:9632144,12624225:145430 -k1,17960:10796660,12624225:145431 -k1,17960:12393058,12624225:145431 -k1,17960:13580511,12624225:145431 -k1,17960:16561029,12624225:145431 -(1,17960:16561029,12624225:0,452978,115847 -r1,17971:21139837,12624225:4578808,568825,115847 -k1,17960:16561029,12624225:-4578808 -) -(1,17960:16561029,12624225:4578808,452978,115847 -k1,17960:16561029,12624225:3277 -h1,17960:21136560,12624225:0,411205,112570 -) -k1,17960:21285268,12624225:145431 -k1,17960:22448472,12624225:145430 -k1,17960:22949763,12624225:145431 -k1,17960:26315633,12624225:145431 -k1,17960:27652509,12624225:145431 -(1,17960:27652509,12624225:0,452978,115847 -r1,17971:32583029,12624225:4930520,568825,115847 -k1,17960:27652509,12624225:-4930520 -) -(1,17960:27652509,12624225:4930520,452978,115847 -k1,17960:27652509,12624225:3277 -h1,17960:32579752,12624225:0,411205,112570 -) -k1,17960:32583029,12624225:0 -) -(1,17961:6630773,13489305:25952256,513147,134348 -k1,17960:9111327,13489305:199246 -k1,17960:9666434,13489305:199247 -k1,17960:12856088,13489305:199246 -k1,17960:15750830,13489305:199246 -k1,17960:17443643,13489305:199247 -k1,17960:18329051,13489305:199246 -(1,17960:18329051,13489305:0,452978,115847 -r1,17971:20797588,13489305:2468537,568825,115847 -k1,17960:18329051,13489305:-2468537 -) -(1,17960:18329051,13489305:2468537,452978,115847 -k1,17960:18329051,13489305:3277 -h1,17960:20794311,13489305:0,411205,112570 -) -k1,17960:21170504,13489305:199246 -k1,17960:22915090,13489305:199247 -k1,17960:25967774,13489305:199246 -k1,17960:27158580,13489305:199246 -k1,17960:29729575,13489305:199247 -k1,17960:30690349,13489305:199246 -k1,17960:32583029,13489305:0 -) -(1,17961:6630773,14354385:25952256,505283,134348 -k1,17960:8503629,14354385:201032 -k1,17960:10094023,14354385:201031 -k1,17960:11770270,14354385:201032 -k1,17960:13481251,14354385:201031 -k1,17960:16343045,14354385:201032 -k1,17960:17305604,14354385:201031 -k1,17960:20314198,14354385:201032 -k1,17960:23742222,14354385:201031 -k1,17960:27117818,14354385:201032 -k1,17960:28812415,14354385:201031 -k1,17960:29699609,14354385:201032 -k1,17960:31931601,14354385:201031 -k1,17960:32583029,14354385:0 -) -(1,17961:6630773,15219465:25952256,513147,7863 -g1,17960:7185862,15219465 -k1,17961:32583029,15219465:23450748 -g1,17961:32583029,15219465 -) -(1,17962:6630773,16870977:25952256,485622,11795 -(1,17962:6630773,16870977:0,0,0 -g1,17962:6630773,16870977 -) -k1,17962:32583030,16870977:22434284 -g1,17962:32583030,16870977 -) -(1,17965:6630773,18129273:25952256,513147,134348 -k1,17964:10449317,18129273:205544 -k1,17964:11646422,18129273:205545 -k1,17964:14407215,18129273:205544 -k1,17964:15897266,18129273:205545 -k1,17964:18772091,18129273:205544 -k1,17964:19996721,18129273:205545 -k1,17964:22921354,18129273:205544 -k1,17964:27791752,18129273:205545 -k1,17964:28656588,18129273:205544 -k1,17964:29881218,18129273:205545 -k1,17964:31649796,18129273:205544 -k1,17964:32583029,18129273:0 -) -(1,17965:6630773,18994353:25952256,513147,126483 -k1,17964:9672654,18994353:206794 -(1,17964:9672654,18994353:0,452978,122846 -r1,17971:13899750,18994353:4227096,575824,122846 -k1,17964:9672654,18994353:-4227096 -) -(1,17964:9672654,18994353:4227096,452978,122846 -k1,17964:9672654,18994353:3277 -h1,17964:13896473,18994353:0,411205,112570 -) -k1,17964:14280214,18994353:206794 -k1,17964:16094605,18994353:206793 -k1,17964:16657259,18994353:206794 -k1,17964:18552260,18994353:206794 -k1,17964:19441939,18994353:206794 -k1,17964:21960188,18994353:206794 -k1,17964:23114633,18994353:206794 -k1,17964:24773048,18994353:206793 -k1,17964:28721292,18994353:206794 -k1,17964:29610971,18994353:206794 -k1,17964:32583029,18994353:0 -) -(1,17965:6630773,19859433:25952256,505283,134348 -k1,17964:8603453,19859433:136361 -k1,17964:10429332,19859433:136361 -(1,17964:10429332,19859433:0,452978,122846 -r1,17971:14304716,19859433:3875384,575824,122846 -k1,17964:10429332,19859433:-3875384 -) -(1,17964:10429332,19859433:3875384,452978,122846 -k1,17964:10429332,19859433:3277 -h1,17964:14301439,19859433:0,411205,112570 -) -k1,17964:14614747,19859433:136361 -k1,17964:16667381,19859433:136361 -k1,17964:17972248,19859433:136360 -k1,17964:21129819,19859433:136361 -k1,17964:23901383,19859433:136361 -k1,17964:28283166,19859433:136361 -k1,17964:30136570,19859433:136361 -k1,17965:32583029,19859433:0 -) -(1,17965:6630773,20724513:25952256,513147,134348 -k1,17964:7957725,20724513:159756 -k1,17964:9319412,20724513:159757 -k1,17964:10240696,20724513:159756 -k1,17964:12666033,20724513:159757 -k1,17964:13635159,20724513:159756 -k1,17964:16822024,20724513:159757 -k1,17964:18053949,20724513:159756 -k1,17964:19815406,20724513:159757 -k1,17964:22641822,20724513:159756 -k1,17964:25067159,20724513:159757 -k1,17964:25878343,20724513:159756 -k1,17964:27057185,20724513:159757 -k1,17964:29677163,20724513:159756 -k1,17964:32583029,20724513:0 -) -(1,17965:6630773,21589593:25952256,513147,134348 -k1,17964:8332917,21589593:226929 -k1,17964:9985255,21589593:226930 -k1,17964:10568044,21589593:226929 -k1,17964:13802421,21589593:226930 -k1,17964:14560847,21589593:226929 -k1,17964:16301003,21589593:226930 -k1,17964:17179360,21589593:226929 -k1,17964:18603633,21589593:226930 -k1,17964:19186422,21589593:226929 -k1,17964:22363127,21589593:226930 -k1,17964:27254909,21589593:226929 -k1,17964:28141131,21589593:226930 -k1,17964:29757423,21589593:226929 -k1,17964:30635781,21589593:226930 -k1,17964:31218570,21589593:226929 -k1,17964:32583029,21589593:0 -) -(1,17965:6630773,22454673:25952256,513147,134348 -k1,17964:8001037,22454673:213554 -k1,17964:9592157,22454673:213553 -k1,17964:11090217,22454673:213554 -k1,17964:11659631,22454673:213554 -k1,17964:13156379,22454673:213553 -k1,17964:15027339,22454673:213554 -k1,17964:16341897,22454673:213553 -k1,17964:18065401,22454673:213554 -k1,17964:20418050,22454673:213554 -k1,17964:21828290,22454673:213553 -k1,17964:24944434,22454673:213554 -k1,17964:25817280,22454673:213554 -k1,17964:28749922,22454673:213553 -k1,17964:30975431,22454673:213554 -k1,17964:32583029,22454673:0 -) -(1,17965:6630773,23319753:25952256,513147,126483 -k1,17964:7549336,23319753:267135 -k1,17964:10188218,23319753:267134 -k1,17964:13126600,23319753:267135 -k1,17964:15455498,23319753:267135 -k1,17964:16919319,23319753:267134 -k1,17964:18924469,23319753:267135 -k1,17964:20849010,23319753:267135 -k1,17964:23454470,23319753:267135 -k1,17964:24740689,23319753:267134 -k1,17964:26218929,23319753:267135 -k1,17964:27770570,23319753:267135 -k1,17964:29489326,23319753:267134 -k1,17964:31039656,23319753:267135 -k1,17964:32583029,23319753:0 -) -(1,17965:6630773,24184833:25952256,513147,126483 -k1,17964:8795591,24184833:199393 -k1,17964:9526482,24184833:199394 -k1,17964:12028155,24184833:199393 -k1,17964:13036918,24184833:199393 -k1,17964:14308480,24184833:199393 -k1,17964:15167166,24184833:199394 -k1,17964:16385644,24184833:199393 -k1,17964:18473129,24184833:199393 -k1,17964:21006914,24184833:199393 -k1,17964:23612135,24184833:199394 -k1,17964:24427566,24184833:199393 -k1,17964:25646044,24184833:199393 -k1,17964:27296404,24184833:199393 -k1,17964:28178683,24184833:199394 -k1,17964:30329738,24184833:199393 -k1,17964:32227169,24184833:199393 -k1,17964:32583029,24184833:0 -) -(1,17965:6630773,25049913:25952256,505283,134348 -k1,17964:8075637,25049913:167567 -k1,17964:8774701,25049913:167567 -k1,17964:11292390,25049913:167568 -k1,17964:12479042,25049913:167567 -k1,17964:14534701,25049913:167567 -k1,17964:15834730,25049913:167567 -k1,17964:16750064,25049913:167568 -k1,17964:20070568,25049913:167567 -k1,17964:20854173,25049913:167567 -k1,17964:22040825,25049913:167567 -k1,17964:23947719,25049913:167568 -k1,17964:25495474,25049913:167567 -k1,17964:27167092,25049913:167567 -k1,17964:29300084,25049913:167567 -k1,17964:30119080,25049913:167568 -k1,17964:31305732,25049913:167567 -k1,17964:32583029,25049913:0 -) -(1,17965:6630773,25914993:25952256,505283,134348 -k1,17964:8940766,25914993:176796 -k1,17964:10159584,25914993:176796 -k1,17964:13171467,25914993:176796 -k1,17964:14504973,25914993:176796 -k1,17964:16239560,25914993:176796 -k1,17964:17032394,25914993:176796 -k1,17964:17565050,25914993:176796 -k1,17964:19019143,25914993:176796 -k1,17964:20300221,25914993:176796 -k1,17964:22772088,25914993:176796 -k1,17964:23967969,25914993:176796 -k1,17964:28390187,25914993:176796 -k1,17964:31039656,25914993:176796 -k1,17964:32583029,25914993:0 -) -(1,17965:6630773,26780073:25952256,513147,134348 -k1,17964:7198736,26780073:212103 -k1,17964:10727615,26780073:212102 -k1,17964:12108225,26780073:212103 -k1,17964:14032783,26780073:212102 -k1,17964:14896314,26780073:212103 -k1,17964:16921142,26780073:212102 -k1,17964:18324690,26780073:212103 -k1,17964:18892653,26780073:212103 -k1,17964:20686794,26780073:212102 -k1,17964:22055607,26780073:212103 -k1,17964:23604643,26780073:212102 -k1,17964:26188494,26780073:212103 -k1,17964:30191198,26780073:212102 -k1,17964:31896867,26780073:212103 -k1,17964:32583029,26780073:0 -) -(1,17965:6630773,27645153:25952256,505283,126483 -g1,17964:7600705,27645153 -g1,17964:10589802,27645153 -g1,17964:11471916,27645153 -g1,17964:12027005,27645153 -g1,17964:13452413,27645153 -k1,17965:32583029,27645153:17564306 -g1,17965:32583029,27645153 -) -(1,17966:6630773,29296665:25952256,475791,7863 -(1,17966:6630773,29296665:0,0,0 -g1,17966:6630773,29296665 -) -k1,17966:32583030,29296665:23237100 -g1,17966:32583030,29296665 -) -(1,17968:6630773,30554961:25952256,513147,134348 -k1,17967:9702009,30554961:171923 -k1,17967:10865491,30554961:171922 -k1,17967:13592663,30554961:171923 -k1,17967:15049092,30554961:171923 -k1,17967:18465046,30554961:171922 -k1,17967:19656054,30554961:171923 -k1,17967:24081919,30554961:171923 -k1,17967:24936726,30554961:171922 -k1,17967:26174920,30554961:171923 -k1,17967:27006135,30554961:171923 -k1,17967:30127832,30554961:171922 -k1,17967:31577052,30554961:171923 -k1,17968:32583029,30554961:0 -) -(1,17968:6630773,31420041:25952256,513147,138281 -k1,17967:8748943,31420041:148813 -k1,17967:11257053,31420041:148814 -k1,17967:12057294,31420041:148813 -k1,17967:13714747,31420041:148814 -k1,17967:16298878,31420041:148813 -$1,17967:16298878,31420041 -$1,17967:16801539,31420041 -k1,17967:16950353,31420041:148814 -k1,17967:18290611,31420041:148813 -$1,17967:18290611,31420041 -$1,17967:18842424,31420041 -k1,17967:18991237,31420041:148813 -k1,17967:23051895,31420041:148814 -k1,17967:24758499,31420041:148813 -k1,17967:25898873,31420041:148814 -k1,17967:27204396,31420041:148813 -k1,17967:28012502,31420041:148814 -k1,17967:29180400,31420041:148813 -k1,17967:32583029,31420041:0 -) -(1,17968:6630773,32285121:25952256,505283,134348 -k1,17967:9585817,32285121:138962 -k1,17967:10486308,32285121:138963 -k1,17967:14215987,32285121:138962 -k1,17967:16923961,32285121:138963 -(1,17967:16923961,32285121:0,452978,115847 -r1,17971:23613039,32285121:6689078,568825,115847 -k1,17967:16923961,32285121:-6689078 -) -(1,17967:16923961,32285121:6689078,452978,115847 -k1,17967:16923961,32285121:3277 -h1,17967:23609762,32285121:0,411205,112570 -) -k1,17967:23752001,32285121:138962 -k1,17967:27293593,32285121:138963 -k1,17967:28241925,32285121:138962 -k1,17967:32583029,32285121:0 -) -(1,17968:6630773,33150201:25952256,513147,126483 -k1,17967:8053100,33150201:230882 -k1,17967:9231634,33150201:230883 -k1,17967:12297603,33150201:230882 -(1,17967:12297603,33150201:0,452978,115847 -r1,17971:17931546,33150201:5633943,568825,115847 -k1,17967:12297603,33150201:-5633943 -) -(1,17967:12297603,33150201:5633943,452978,115847 -k1,17967:12297603,33150201:3277 -h1,17967:17928269,33150201:0,411205,112570 -) -k1,17967:18162428,33150201:230882 -k1,17967:20439344,33150201:230882 -k1,17967:21128324,33150201:230883 -k1,17967:23989166,33150201:230882 -k1,17967:24871476,33150201:230882 -k1,17967:27031738,33150201:230882 -k1,17967:29699905,33150201:230883 -k1,17967:30975431,33150201:230882 -k1,17967:32583029,33150201:0 -) -(1,17968:6630773,34015281:25952256,505283,134348 -k1,17967:8096575,34015281:274357 -k1,17967:10808217,34015281:274358 -k1,17967:12429994,34015281:274357 -k1,17967:14485620,34015281:274357 -k1,17967:17659290,34015281:274357 -k1,17967:19066110,34015281:274358 -k1,17967:20088233,34015281:274357 -k1,17967:23491934,34015281:274357 -k1,17967:26446714,34015281:274357 -k1,17967:28115023,34015281:274358 -k1,17967:31896867,34015281:274357 -k1,17967:32583029,34015281:0 -) -(1,17968:6630773,34880361:25952256,505283,126483 -g1,17967:8210190,34880361 -g1,17967:9400979,34880361 -g1,17967:11729473,34880361 -g1,17967:15754038,34880361 -g1,17967:16604695,34880361 -k1,17968:32583029,34880361:14286850 -g1,17968:32583029,34880361 -) -(1,17969:6630773,36531873:25952256,505283,11795 -(1,17969:6630773,36531873:0,0,0 -g1,17969:6630773,36531873 -) -k1,17969:32583029,36531873:24057610 -g1,17969:32583029,36531873 -) -(1,17971:6630773,37790169:25952256,505283,134348 -k1,17970:8837311,37790169:279124 -k1,17970:10396352,37790169:279123 -k1,17970:11694561,37790169:279124 -k1,17970:16048713,37790169:279123 -k1,17970:17010722,37790169:279124 -k1,17970:20097407,37790169:279123 -k1,17970:23011734,37790169:279124 -k1,17970:24680220,37790169:279123 -k1,17970:26969989,37790169:279124 -k1,17970:28440558,37790169:279124 -k1,17970:29738766,37790169:279123 -k1,17970:32583029,37790169:0 -) -(1,17971:6630773,38655249:25952256,505283,134348 -k1,17970:8901923,38655249:278200 -k1,17970:9831551,38655249:278200 -k1,17970:10857518,38655249:278201 -k1,17970:13624120,38655249:278200 -k1,17970:16378270,38655249:278200 -k1,17970:19407671,38655249:278200 -k1,17970:20041731,38655249:278200 -k1,17970:22831271,38655249:278200 -k1,17970:23760900,38655249:278201 -k1,17970:25058185,38655249:278200 -k1,17970:27967656,38655249:278200 -k1,17970:31090119,38655249:278200 -k1,17970:32583029,38655249:0 -) -(1,17971:6630773,39520329:25952256,513147,134348 -k1,17970:10445326,39520329:362116 -k1,17970:12505480,39520329:362116 -k1,17970:15144317,39520329:362116 -k1,17970:16192595,39520329:362116 -k1,17970:18978232,39520329:362116 -k1,17970:20715948,39520329:362115 -k1,17970:22422863,39520329:362116 -k1,17970:24069485,39520329:362116 -k1,17970:27193944,39520329:362116 -k1,17970:29566705,39520329:362116 -k1,17970:31966991,39520329:362116 -k1,17970:32583029,39520329:0 -) -(1,17971:6630773,40385409:25952256,513147,126483 -k1,17970:7956084,40385409:306226 -k1,17970:10847704,40385409:306225 -k1,17970:13665270,40385409:306226 -k1,17970:15103958,40385409:306226 -k1,17970:16157950,40385409:306226 -k1,17970:20273783,40385409:306225 -k1,17970:21341537,40385409:306226 -k1,17970:24410106,40385409:306226 -k1,17970:27251264,40385409:306225 -k1,17970:28044971,40385409:306119 -k1,17970:30097075,40385409:306225 -k1,17970:31896867,40385409:306226 -k1,17971:32583029,40385409:0 -) -(1,17971:6630773,41250489:25952256,505283,126483 -(1,17970:6630773,41250489:0,452978,115847 -r1,17971:15430122,41250489:8799349,568825,115847 -k1,17970:6630773,41250489:-8799349 -) -(1,17970:6630773,41250489:8799349,452978,115847 -k1,17970:6630773,41250489:3277 -h1,17970:15426845,41250489:0,411205,112570 -) -k1,17970:15830076,41250489:226284 -k1,17970:17188823,41250489:226285 -k1,17970:20659139,41250489:226284 -k1,17970:22770894,41250489:226284 -k1,17970:25028139,41250489:226284 -k1,17970:25870462,41250489:226285 -k1,17970:27115831,41250489:226284 -k1,17970:28619412,41250489:226284 -k1,17970:32583029,41250489:0 -) -(1,17971:6630773,42115569:25952256,513147,102891 -k1,17970:7487127,42115569:204926 -k1,17970:9577524,42115569:204926 -k1,17970:11462793,42115569:204926 -k1,17970:12283757,42115569:204926 -k1,17970:13507768,42115569:204926 -k1,17970:16397704,42115569:204926 -k1,17970:18530043,42115569:204925 -k1,17970:19839251,42115569:204926 -k1,17970:21329993,42115569:204926 -k1,17970:23495756,42115569:204926 -k1,17970:28868196,42115569:204926 -k1,17970:29882492,42115569:204926 -k1,17970:31106503,42115569:204926 -k1,17970:32583029,42115569:0 -) -(1,17971:6630773,42980649:25952256,505283,134348 -k1,17970:8626017,42980649:135987 -k1,17970:9753564,42980649:135987 -k1,17970:11402777,42980649:135987 -k1,17970:13236802,42980649:135987 -k1,17970:16180351,42980649:135987 -k1,17970:17705701,42980649:135987 -k1,17970:19852334,42980649:135988 -k1,17970:20639749,42980649:135987 -k1,17970:23619999,42980649:135987 -k1,17970:25940301,42980649:135987 -k1,17970:26974131,42980649:135987 -k1,17970:30680519,42980649:135987 -k1,17970:32583029,42980649:0 -) -(1,17971:6630773,43845729:25952256,513147,138281 -k1,17970:9351500,43845729:194314 -k1,17970:16611250,43845729:194314 -k1,17970:17421603,43845729:194315 -k1,17970:18635002,43845729:194314 -k1,17970:20196397,43845729:194314 -k1,17970:21050003,43845729:194314 -$1,17970:21050003,43845729 -$1,17970:21552664,43845729 -k1,17970:21746978,43845729:194314 -k1,17970:23132737,43845729:194314 -$1,17970:23132737,43845729 -$1,17970:23684550,43845729 -k1,17970:23878865,43845729:194315 -k1,17970:27421413,43845729:194314 -k1,17970:30560260,43845729:194314 -k1,17970:31563944,43845729:194314 -k1,17970:32583029,43845729:0 -) -(1,17971:6630773,44710809:25952256,513147,134348 -k1,17970:9395201,44710809:239981 -k1,17970:11655657,44710809:239981 -k1,17970:12578523,44710809:239981 -k1,17970:15207291,44710809:239981 -k1,17970:18234518,44710809:239981 -k1,17970:19606960,44710809:239980 -k1,17970:20594707,44710809:239981 -k1,17970:23382072,44710809:239981 -k1,17970:24383581,44710809:239981 -k1,17970:25642647,44710809:239981 -k1,17970:30893511,44710809:239981 -k1,17970:32583029,44710809:0 -) -(1,17971:6630773,45575889:25952256,513147,134348 -k1,17970:7821972,45575889:172114 -k1,17970:10429404,45575889:172114 -k1,17970:12612162,45575889:172113 -k1,17970:13775836,45575889:172114 -k1,17970:15461176,45575889:172114 -k1,17970:16580941,45575889:172114 -k1,17970:17937291,45575889:172114 -k1,17970:19953587,45575889:172113 -k1,17970:21870269,45575889:172114 -k1,17970:23061468,45575889:172114 -k1,17970:24632120,45575889:172114 -k1,17970:25487119,45575889:172114 -k1,17970:26275271,45575889:172114 -k1,17970:27878690,45575889:172113 -k1,17970:28998455,45575889:172114 -k1,17970:31543628,45575889:172114 -k1,17971:32583029,45575889:0 -) -] -(1,17971:32583029,45706769:0,0,0 -g1,17971:32583029,45706769 -) -) -] -(1,17971:6630773,47279633:25952256,0,0 -h1,17971:6630773,47279633:25952256,0,0 -) -] -(1,17971:4262630,4025873:0,0,0 -[1,17971:-473656,4025873:0,0,0 -(1,17971:-473656,-710413:0,0,0 -(1,17971:-473656,-710413:0,0,0 -g1,17971:-473656,-710413 -) -g1,17971:-473656,-710413 +[1,17969:3078558,4812305:0,0,0 +(1,17969:3078558,49800853:0,16384,2228224 +g1,17969:29030814,49800853 +g1,17969:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17969:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17969:37855564,49800853:1179648,16384,0 +) +) +k1,17969:3078556,49800853:-34777008 +) +] +g1,17969:6630773,4812305 +g1,17969:6630773,4812305 +g1,17969:8017514,4812305 +g1,17969:11362471,4812305 +g1,17969:12177738,4812305 +g1,17969:15187806,4812305 +k1,17969:31387652,4812305:16199846 +) +) +] +[1,17969:6630773,45706769:25952256,40108032,0 +(1,17969:6630773,45706769:25952256,40108032,0 +(1,17969:6630773,45706769:0,0,0 +g1,17969:6630773,45706769 +) +[1,17969:6630773,45706769:25952256,40108032,0 +(1,17956:6630773,6254097:25952256,505283,134348 +k1,17955:7526595,6254097:212937 +k1,17955:9206228,6254097:212937 +k1,17955:11982279,6254097:212938 +k1,17955:14066269,6254097:212937 +k1,17955:16164677,6254097:212937 +k1,17955:17574957,6254097:212937 +k1,17955:18558597,6254097:212937 +k1,17955:21998527,6254097:212937 +k1,17955:25556423,6254097:212938 +k1,17955:26578730,6254097:212937 +k1,17955:28677138,6254097:212937 +k1,17955:29541503,6254097:212937 +k1,17955:32583029,6254097:0 +) +(1,17956:6630773,7119177:25952256,513147,95026 +g1,17955:7849087,7119177 +g1,17955:10058961,7119177 +g1,17955:10917482,7119177 +g1,17955:13958352,7119177 +g1,17955:16367455,7119177 +k1,17956:32583029,7119177:13075089 +g1,17956:32583029,7119177 +) +(1,17957:6630773,8770689:25952256,485622,11795 +(1,17957:6630773,8770689:0,0,0 +g1,17957:6630773,8770689 +) +k1,17957:32583030,8770689:23221372 +g1,17957:32583030,8770689 +) +(1,17959:6630773,10028985:25952256,513147,126483 +k1,17958:9684393,10028985:175279 +k1,17958:10851232,10028985:175279 +k1,17958:13581760,10028985:175279 +k1,17958:15041545,10028985:175279 +k1,17958:18258350,10028985:175279 +k1,17958:21905070,10028985:175278 +k1,17958:22739641,10028985:175279 +k1,17958:26423062,10028985:175279 +k1,17958:27281226,10028985:175279 +k1,17958:29148645,10028985:175279 +k1,17958:31025894,10028985:175279 +k1,17959:32583029,10028985:0 +) +(1,17959:6630773,10894065:25952256,513147,126483 +k1,17958:8455383,10894065:201283 +k1,17958:9466035,10894065:201282 +k1,17958:10686403,10894065:201283 +k1,17958:12898331,10894065:201283 +k1,17958:13715652,10894065:201283 +k1,17958:14936019,10894065:201282 +k1,17958:16700336,10894065:201283 +k1,17958:18684854,10894065:201283 +k1,17958:21568526,10894065:201283 +k1,17958:22761368,10894065:201282 +k1,17958:24475877,10894065:201283 +k1,17958:25624811,10894065:201283 +k1,17958:26181954,10894065:201283 +k1,17958:30620794,10894065:201282 +k1,17958:31841162,10894065:201283 +k1,17959:32583029,10894065:0 +) +(1,17959:6630773,11759145:25952256,505283,134348 +k1,17958:8911476,11759145:137676 +k1,17958:10729495,11759145:137676 +k1,17958:11398668,11759145:137676 +k1,17958:13741631,11759145:137676 +k1,17958:14530735,11759145:137676 +k1,17958:15024271,11759145:137676 +k1,17958:18301121,11759145:137676 +k1,17958:19630242,11759145:137676 +k1,17958:23993024,11759145:137676 +k1,17958:26318292,11759145:137676 +k1,17958:26811828,11759145:137676 +k1,17958:29631893,11759145:137676 +k1,17958:31055385,11759145:137676 +k1,17958:32583029,11759145:0 +) +(1,17959:6630773,12624225:25952256,513147,126483 +k1,17958:7132064,12624225:145431 +k1,17958:8835286,12624225:145431 +k1,17958:9632144,12624225:145430 +k1,17958:10796660,12624225:145431 +k1,17958:12393058,12624225:145431 +k1,17958:13580511,12624225:145431 +k1,17958:16561029,12624225:145431 +(1,17958:16561029,12624225:0,452978,115847 +r1,17969:21139837,12624225:4578808,568825,115847 +k1,17958:16561029,12624225:-4578808 +) +(1,17958:16561029,12624225:4578808,452978,115847 +k1,17958:16561029,12624225:3277 +h1,17958:21136560,12624225:0,411205,112570 +) +k1,17958:21285268,12624225:145431 +k1,17958:22448472,12624225:145430 +k1,17958:22949763,12624225:145431 +k1,17958:26315633,12624225:145431 +k1,17958:27652509,12624225:145431 +(1,17958:27652509,12624225:0,452978,115847 +r1,17969:32583029,12624225:4930520,568825,115847 +k1,17958:27652509,12624225:-4930520 +) +(1,17958:27652509,12624225:4930520,452978,115847 +k1,17958:27652509,12624225:3277 +h1,17958:32579752,12624225:0,411205,112570 +) +k1,17958:32583029,12624225:0 +) +(1,17959:6630773,13489305:25952256,513147,134348 +k1,17958:9111327,13489305:199246 +k1,17958:9666434,13489305:199247 +k1,17958:12856088,13489305:199246 +k1,17958:15750830,13489305:199246 +k1,17958:17443643,13489305:199247 +k1,17958:18329051,13489305:199246 +(1,17958:18329051,13489305:0,452978,115847 +r1,17969:20797588,13489305:2468537,568825,115847 +k1,17958:18329051,13489305:-2468537 +) +(1,17958:18329051,13489305:2468537,452978,115847 +k1,17958:18329051,13489305:3277 +h1,17958:20794311,13489305:0,411205,112570 +) +k1,17958:21170504,13489305:199246 +k1,17958:22915090,13489305:199247 +k1,17958:25967774,13489305:199246 +k1,17958:27158580,13489305:199246 +k1,17958:29729575,13489305:199247 +k1,17958:30690349,13489305:199246 +k1,17958:32583029,13489305:0 +) +(1,17959:6630773,14354385:25952256,505283,134348 +k1,17958:8503629,14354385:201032 +k1,17958:10094023,14354385:201031 +k1,17958:11770270,14354385:201032 +k1,17958:13481251,14354385:201031 +k1,17958:16343045,14354385:201032 +k1,17958:17305604,14354385:201031 +k1,17958:20314198,14354385:201032 +k1,17958:23742222,14354385:201031 +k1,17958:27117818,14354385:201032 +k1,17958:28812415,14354385:201031 +k1,17958:29699609,14354385:201032 +k1,17958:31931601,14354385:201031 +k1,17958:32583029,14354385:0 +) +(1,17959:6630773,15219465:25952256,513147,7863 +g1,17958:7185862,15219465 +k1,17959:32583029,15219465:23450748 +g1,17959:32583029,15219465 +) +(1,17960:6630773,16870977:25952256,485622,11795 +(1,17960:6630773,16870977:0,0,0 +g1,17960:6630773,16870977 +) +k1,17960:32583030,16870977:22434284 +g1,17960:32583030,16870977 +) +(1,17963:6630773,18129273:25952256,513147,134348 +k1,17962:10449317,18129273:205544 +k1,17962:11646422,18129273:205545 +k1,17962:14407215,18129273:205544 +k1,17962:15897266,18129273:205545 +k1,17962:18772091,18129273:205544 +k1,17962:19996721,18129273:205545 +k1,17962:22921354,18129273:205544 +k1,17962:27791752,18129273:205545 +k1,17962:28656588,18129273:205544 +k1,17962:29881218,18129273:205545 +k1,17962:31649796,18129273:205544 +k1,17962:32583029,18129273:0 +) +(1,17963:6630773,18994353:25952256,513147,126483 +k1,17962:9672654,18994353:206794 +(1,17962:9672654,18994353:0,452978,122846 +r1,17969:13899750,18994353:4227096,575824,122846 +k1,17962:9672654,18994353:-4227096 +) +(1,17962:9672654,18994353:4227096,452978,122846 +k1,17962:9672654,18994353:3277 +h1,17962:13896473,18994353:0,411205,112570 +) +k1,17962:14280214,18994353:206794 +k1,17962:16094605,18994353:206793 +k1,17962:16657259,18994353:206794 +k1,17962:18552260,18994353:206794 +k1,17962:19441939,18994353:206794 +k1,17962:21960188,18994353:206794 +k1,17962:23114633,18994353:206794 +k1,17962:24773048,18994353:206793 +k1,17962:28721292,18994353:206794 +k1,17962:29610971,18994353:206794 +k1,17962:32583029,18994353:0 +) +(1,17963:6630773,19859433:25952256,505283,134348 +k1,17962:8603453,19859433:136361 +k1,17962:10429332,19859433:136361 +(1,17962:10429332,19859433:0,452978,122846 +r1,17969:14304716,19859433:3875384,575824,122846 +k1,17962:10429332,19859433:-3875384 +) +(1,17962:10429332,19859433:3875384,452978,122846 +k1,17962:10429332,19859433:3277 +h1,17962:14301439,19859433:0,411205,112570 +) +k1,17962:14614747,19859433:136361 +k1,17962:16667381,19859433:136361 +k1,17962:17972248,19859433:136360 +k1,17962:21129819,19859433:136361 +k1,17962:23901383,19859433:136361 +k1,17962:28283166,19859433:136361 +k1,17962:30136570,19859433:136361 +k1,17963:32583029,19859433:0 +) +(1,17963:6630773,20724513:25952256,513147,134348 +k1,17962:7957725,20724513:159756 +k1,17962:9319412,20724513:159757 +k1,17962:10240696,20724513:159756 +k1,17962:12666033,20724513:159757 +k1,17962:13635159,20724513:159756 +k1,17962:16822024,20724513:159757 +k1,17962:18053949,20724513:159756 +k1,17962:19815406,20724513:159757 +k1,17962:22641822,20724513:159756 +k1,17962:25067159,20724513:159757 +k1,17962:25878343,20724513:159756 +k1,17962:27057185,20724513:159757 +k1,17962:29677163,20724513:159756 +k1,17962:32583029,20724513:0 +) +(1,17963:6630773,21589593:25952256,513147,134348 +k1,17962:8332917,21589593:226929 +k1,17962:9985255,21589593:226930 +k1,17962:10568044,21589593:226929 +k1,17962:13802421,21589593:226930 +k1,17962:14560847,21589593:226929 +k1,17962:16301003,21589593:226930 +k1,17962:17179360,21589593:226929 +k1,17962:18603633,21589593:226930 +k1,17962:19186422,21589593:226929 +k1,17962:22363127,21589593:226930 +k1,17962:27254909,21589593:226929 +k1,17962:28141131,21589593:226930 +k1,17962:29757423,21589593:226929 +k1,17962:30635781,21589593:226930 +k1,17962:31218570,21589593:226929 +k1,17962:32583029,21589593:0 +) +(1,17963:6630773,22454673:25952256,513147,134348 +k1,17962:8001037,22454673:213554 +k1,17962:9592157,22454673:213553 +k1,17962:11090217,22454673:213554 +k1,17962:11659631,22454673:213554 +k1,17962:13156379,22454673:213553 +k1,17962:15027339,22454673:213554 +k1,17962:16341897,22454673:213553 +k1,17962:18065401,22454673:213554 +k1,17962:20418050,22454673:213554 +k1,17962:21828290,22454673:213553 +k1,17962:24944434,22454673:213554 +k1,17962:25817280,22454673:213554 +k1,17962:28749922,22454673:213553 +k1,17962:30975431,22454673:213554 +k1,17962:32583029,22454673:0 +) +(1,17963:6630773,23319753:25952256,513147,126483 +k1,17962:7549336,23319753:267135 +k1,17962:10188218,23319753:267134 +k1,17962:13126600,23319753:267135 +k1,17962:15455498,23319753:267135 +k1,17962:16919319,23319753:267134 +k1,17962:18924469,23319753:267135 +k1,17962:20849010,23319753:267135 +k1,17962:23454470,23319753:267135 +k1,17962:24740689,23319753:267134 +k1,17962:26218929,23319753:267135 +k1,17962:27770570,23319753:267135 +k1,17962:29489326,23319753:267134 +k1,17962:31039656,23319753:267135 +k1,17962:32583029,23319753:0 +) +(1,17963:6630773,24184833:25952256,513147,126483 +k1,17962:8795591,24184833:199393 +k1,17962:9526482,24184833:199394 +k1,17962:12028155,24184833:199393 +k1,17962:13036918,24184833:199393 +k1,17962:14308480,24184833:199393 +k1,17962:15167166,24184833:199394 +k1,17962:16385644,24184833:199393 +k1,17962:18473129,24184833:199393 +k1,17962:21006914,24184833:199393 +k1,17962:23612135,24184833:199394 +k1,17962:24427566,24184833:199393 +k1,17962:25646044,24184833:199393 +k1,17962:27296404,24184833:199393 +k1,17962:28178683,24184833:199394 +k1,17962:30329738,24184833:199393 +k1,17962:32227169,24184833:199393 +k1,17962:32583029,24184833:0 +) +(1,17963:6630773,25049913:25952256,505283,134348 +k1,17962:8075637,25049913:167567 +k1,17962:8774701,25049913:167567 +k1,17962:11292390,25049913:167568 +k1,17962:12479042,25049913:167567 +k1,17962:14534701,25049913:167567 +k1,17962:15834730,25049913:167567 +k1,17962:16750064,25049913:167568 +k1,17962:20070568,25049913:167567 +k1,17962:20854173,25049913:167567 +k1,17962:22040825,25049913:167567 +k1,17962:23947719,25049913:167568 +k1,17962:25495474,25049913:167567 +k1,17962:27167092,25049913:167567 +k1,17962:29300084,25049913:167567 +k1,17962:30119080,25049913:167568 +k1,17962:31305732,25049913:167567 +k1,17962:32583029,25049913:0 +) +(1,17963:6630773,25914993:25952256,505283,134348 +k1,17962:8940766,25914993:176796 +k1,17962:10159584,25914993:176796 +k1,17962:13171467,25914993:176796 +k1,17962:14504973,25914993:176796 +k1,17962:16239560,25914993:176796 +k1,17962:17032394,25914993:176796 +k1,17962:17565050,25914993:176796 +k1,17962:19019143,25914993:176796 +k1,17962:20300221,25914993:176796 +k1,17962:22772088,25914993:176796 +k1,17962:23967969,25914993:176796 +k1,17962:28390187,25914993:176796 +k1,17962:31039656,25914993:176796 +k1,17962:32583029,25914993:0 +) +(1,17963:6630773,26780073:25952256,513147,134348 +k1,17962:7198736,26780073:212103 +k1,17962:10727615,26780073:212102 +k1,17962:12108225,26780073:212103 +k1,17962:14032783,26780073:212102 +k1,17962:14896314,26780073:212103 +k1,17962:16921142,26780073:212102 +k1,17962:18324690,26780073:212103 +k1,17962:18892653,26780073:212103 +k1,17962:20686794,26780073:212102 +k1,17962:22055607,26780073:212103 +k1,17962:23604643,26780073:212102 +k1,17962:26188494,26780073:212103 +k1,17962:30191198,26780073:212102 +k1,17962:31896867,26780073:212103 +k1,17962:32583029,26780073:0 +) +(1,17963:6630773,27645153:25952256,505283,126483 +g1,17962:7600705,27645153 +g1,17962:10589802,27645153 +g1,17962:11471916,27645153 +g1,17962:12027005,27645153 +g1,17962:13452413,27645153 +k1,17963:32583029,27645153:17564306 +g1,17963:32583029,27645153 +) +(1,17964:6630773,29296665:25952256,475791,7863 +(1,17964:6630773,29296665:0,0,0 +g1,17964:6630773,29296665 +) +k1,17964:32583030,29296665:23237100 +g1,17964:32583030,29296665 +) +(1,17966:6630773,30554961:25952256,513147,134348 +k1,17965:9702009,30554961:171923 +k1,17965:10865491,30554961:171922 +k1,17965:13592663,30554961:171923 +k1,17965:15049092,30554961:171923 +k1,17965:18465046,30554961:171922 +k1,17965:19656054,30554961:171923 +k1,17965:24081919,30554961:171923 +k1,17965:24936726,30554961:171922 +k1,17965:26174920,30554961:171923 +k1,17965:27006135,30554961:171923 +k1,17965:30127832,30554961:171922 +k1,17965:31577052,30554961:171923 +k1,17966:32583029,30554961:0 +) +(1,17966:6630773,31420041:25952256,513147,138281 +k1,17965:8748943,31420041:148813 +k1,17965:11257053,31420041:148814 +k1,17965:12057294,31420041:148813 +k1,17965:13714747,31420041:148814 +k1,17965:16298878,31420041:148813 +$1,17965:16298878,31420041 +$1,17965:16801539,31420041 +k1,17965:16950353,31420041:148814 +k1,17965:18290611,31420041:148813 +$1,17965:18290611,31420041 +$1,17965:18842424,31420041 +k1,17965:18991237,31420041:148813 +k1,17965:23051895,31420041:148814 +k1,17965:24758499,31420041:148813 +k1,17965:25898873,31420041:148814 +k1,17965:27204396,31420041:148813 +k1,17965:28012502,31420041:148814 +k1,17965:29180400,31420041:148813 +k1,17965:32583029,31420041:0 +) +(1,17966:6630773,32285121:25952256,505283,134348 +k1,17965:9585817,32285121:138962 +k1,17965:10486308,32285121:138963 +k1,17965:14215987,32285121:138962 +k1,17965:16923961,32285121:138963 +(1,17965:16923961,32285121:0,452978,115847 +r1,17969:23613039,32285121:6689078,568825,115847 +k1,17965:16923961,32285121:-6689078 +) +(1,17965:16923961,32285121:6689078,452978,115847 +k1,17965:16923961,32285121:3277 +h1,17965:23609762,32285121:0,411205,112570 +) +k1,17965:23752001,32285121:138962 +k1,17965:27293593,32285121:138963 +k1,17965:28241925,32285121:138962 +k1,17965:32583029,32285121:0 +) +(1,17966:6630773,33150201:25952256,513147,126483 +k1,17965:8053100,33150201:230882 +k1,17965:9231634,33150201:230883 +k1,17965:12297603,33150201:230882 +(1,17965:12297603,33150201:0,452978,115847 +r1,17969:17931546,33150201:5633943,568825,115847 +k1,17965:12297603,33150201:-5633943 +) +(1,17965:12297603,33150201:5633943,452978,115847 +k1,17965:12297603,33150201:3277 +h1,17965:17928269,33150201:0,411205,112570 +) +k1,17965:18162428,33150201:230882 +k1,17965:20439344,33150201:230882 +k1,17965:21128324,33150201:230883 +k1,17965:23989166,33150201:230882 +k1,17965:24871476,33150201:230882 +k1,17965:27031738,33150201:230882 +k1,17965:29699905,33150201:230883 +k1,17965:30975431,33150201:230882 +k1,17965:32583029,33150201:0 +) +(1,17966:6630773,34015281:25952256,505283,134348 +k1,17965:8096575,34015281:274357 +k1,17965:10808217,34015281:274358 +k1,17965:12429994,34015281:274357 +k1,17965:14485620,34015281:274357 +k1,17965:17659290,34015281:274357 +k1,17965:19066110,34015281:274358 +k1,17965:20088233,34015281:274357 +k1,17965:23491934,34015281:274357 +k1,17965:26446714,34015281:274357 +k1,17965:28115023,34015281:274358 +k1,17965:31896867,34015281:274357 +k1,17965:32583029,34015281:0 +) +(1,17966:6630773,34880361:25952256,505283,126483 +g1,17965:8210190,34880361 +g1,17965:9400979,34880361 +g1,17965:11729473,34880361 +g1,17965:15754038,34880361 +g1,17965:16604695,34880361 +k1,17966:32583029,34880361:14286850 +g1,17966:32583029,34880361 +) +(1,17967:6630773,36531873:25952256,505283,11795 +(1,17967:6630773,36531873:0,0,0 +g1,17967:6630773,36531873 +) +k1,17967:32583029,36531873:24057610 +g1,17967:32583029,36531873 +) +(1,17969:6630773,37790169:25952256,505283,134348 +k1,17968:8837311,37790169:279124 +k1,17968:10396352,37790169:279123 +k1,17968:11694561,37790169:279124 +k1,17968:16048713,37790169:279123 +k1,17968:17010722,37790169:279124 +k1,17968:20097407,37790169:279123 +k1,17968:23011734,37790169:279124 +k1,17968:24680220,37790169:279123 +k1,17968:26969989,37790169:279124 +k1,17968:28440558,37790169:279124 +k1,17968:29738766,37790169:279123 +k1,17968:32583029,37790169:0 +) +(1,17969:6630773,38655249:25952256,505283,134348 +k1,17968:8901923,38655249:278200 +k1,17968:9831551,38655249:278200 +k1,17968:10857518,38655249:278201 +k1,17968:13624120,38655249:278200 +k1,17968:16378270,38655249:278200 +k1,17968:19407671,38655249:278200 +k1,17968:20041731,38655249:278200 +k1,17968:22831271,38655249:278200 +k1,17968:23760900,38655249:278201 +k1,17968:25058185,38655249:278200 +k1,17968:27967656,38655249:278200 +k1,17968:31090119,38655249:278200 +k1,17968:32583029,38655249:0 +) +(1,17969:6630773,39520329:25952256,513147,134348 +k1,17968:10445326,39520329:362116 +k1,17968:12505480,39520329:362116 +k1,17968:15144317,39520329:362116 +k1,17968:16192595,39520329:362116 +k1,17968:18978232,39520329:362116 +k1,17968:20715948,39520329:362115 +k1,17968:22422863,39520329:362116 +k1,17968:24069485,39520329:362116 +k1,17968:27193944,39520329:362116 +k1,17968:29566705,39520329:362116 +k1,17968:31966991,39520329:362116 +k1,17968:32583029,39520329:0 +) +(1,17969:6630773,40385409:25952256,513147,126483 +k1,17968:7956084,40385409:306226 +k1,17968:10847704,40385409:306225 +k1,17968:13665270,40385409:306226 +k1,17968:15103958,40385409:306226 +k1,17968:16157950,40385409:306226 +k1,17968:20273783,40385409:306225 +k1,17968:21341537,40385409:306226 +k1,17968:24410106,40385409:306226 +k1,17968:27251264,40385409:306225 +k1,17968:28044971,40385409:306119 +k1,17968:30097075,40385409:306225 +k1,17968:31896867,40385409:306226 +k1,17969:32583029,40385409:0 +) +(1,17969:6630773,41250489:25952256,505283,126483 +(1,17968:6630773,41250489:0,452978,115847 +r1,17969:15430122,41250489:8799349,568825,115847 +k1,17968:6630773,41250489:-8799349 +) +(1,17968:6630773,41250489:8799349,452978,115847 +k1,17968:6630773,41250489:3277 +h1,17968:15426845,41250489:0,411205,112570 +) +k1,17968:15830076,41250489:226284 +k1,17968:17188823,41250489:226285 +k1,17968:20659139,41250489:226284 +k1,17968:22770894,41250489:226284 +k1,17968:25028139,41250489:226284 +k1,17968:25870462,41250489:226285 +k1,17968:27115831,41250489:226284 +k1,17968:28619412,41250489:226284 +k1,17968:32583029,41250489:0 +) +(1,17969:6630773,42115569:25952256,513147,102891 +k1,17968:7487127,42115569:204926 +k1,17968:9577524,42115569:204926 +k1,17968:11462793,42115569:204926 +k1,17968:12283757,42115569:204926 +k1,17968:13507768,42115569:204926 +k1,17968:16397704,42115569:204926 +k1,17968:18530043,42115569:204925 +k1,17968:19839251,42115569:204926 +k1,17968:21329993,42115569:204926 +k1,17968:23495756,42115569:204926 +k1,17968:28868196,42115569:204926 +k1,17968:29882492,42115569:204926 +k1,17968:31106503,42115569:204926 +k1,17968:32583029,42115569:0 +) +(1,17969:6630773,42980649:25952256,505283,134348 +k1,17968:8626017,42980649:135987 +k1,17968:9753564,42980649:135987 +k1,17968:11402777,42980649:135987 +k1,17968:13236802,42980649:135987 +k1,17968:16180351,42980649:135987 +k1,17968:17705701,42980649:135987 +k1,17968:19852334,42980649:135988 +k1,17968:20639749,42980649:135987 +k1,17968:23619999,42980649:135987 +k1,17968:25940301,42980649:135987 +k1,17968:26974131,42980649:135987 +k1,17968:30680519,42980649:135987 +k1,17968:32583029,42980649:0 +) +(1,17969:6630773,43845729:25952256,513147,138281 +k1,17968:9351500,43845729:194314 +k1,17968:16611250,43845729:194314 +k1,17968:17421603,43845729:194315 +k1,17968:18635002,43845729:194314 +k1,17968:20196397,43845729:194314 +k1,17968:21050003,43845729:194314 +$1,17968:21050003,43845729 +$1,17968:21552664,43845729 +k1,17968:21746978,43845729:194314 +k1,17968:23132737,43845729:194314 +$1,17968:23132737,43845729 +$1,17968:23684550,43845729 +k1,17968:23878865,43845729:194315 +k1,17968:27421413,43845729:194314 +k1,17968:30560260,43845729:194314 +k1,17968:31563944,43845729:194314 +k1,17968:32583029,43845729:0 +) +(1,17969:6630773,44710809:25952256,513147,134348 +k1,17968:9395201,44710809:239981 +k1,17968:11655657,44710809:239981 +k1,17968:12578523,44710809:239981 +k1,17968:15207291,44710809:239981 +k1,17968:18234518,44710809:239981 +k1,17968:19606960,44710809:239980 +k1,17968:20594707,44710809:239981 +k1,17968:23382072,44710809:239981 +k1,17968:24383581,44710809:239981 +k1,17968:25642647,44710809:239981 +k1,17968:30893511,44710809:239981 +k1,17968:32583029,44710809:0 +) +(1,17969:6630773,45575889:25952256,513147,134348 +k1,17968:7821972,45575889:172114 +k1,17968:10429404,45575889:172114 +k1,17968:12612162,45575889:172113 +k1,17968:13775836,45575889:172114 +k1,17968:15461176,45575889:172114 +k1,17968:16580941,45575889:172114 +k1,17968:17937291,45575889:172114 +k1,17968:19953587,45575889:172113 +k1,17968:21870269,45575889:172114 +k1,17968:23061468,45575889:172114 +k1,17968:24632120,45575889:172114 +k1,17968:25487119,45575889:172114 +k1,17968:26275271,45575889:172114 +k1,17968:27878690,45575889:172113 +k1,17968:28998455,45575889:172114 +k1,17968:31543628,45575889:172114 +k1,17969:32583029,45575889:0 +) +] +(1,17969:32583029,45706769:0,0,0 +g1,17969:32583029,45706769 +) +) +] +(1,17969:6630773,47279633:25952256,0,0 +h1,17969:6630773,47279633:25952256,0,0 +) +] +(1,17969:4262630,4025873:0,0,0 +[1,17969:-473656,4025873:0,0,0 +(1,17969:-473656,-710413:0,0,0 +(1,17969:-473656,-710413:0,0,0 +g1,17969:-473656,-710413 +) +g1,17969:-473656,-710413 ) ] ) ] !23741 -}290 -Input:2963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2966:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}291 Input:2967:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2968:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2969:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -310930,2055 +311134,2055 @@ Input:2970:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2971:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2972:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2973:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2974:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2975:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2976:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2977:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{291 -[1,17992:4262630,47279633:28320399,43253760,0 -(1,17992:4262630,4025873:0,0,0 -[1,17992:-473656,4025873:0,0,0 -(1,17992:-473656,-710413:0,0,0 -(1,17992:-473656,-644877:0,0,0 -k1,17992:-473656,-644877:-65536 +{292 +[1,17990:4262630,47279633:28320399,43253760,0 +(1,17990:4262630,4025873:0,0,0 +[1,17990:-473656,4025873:0,0,0 +(1,17990:-473656,-710413:0,0,0 +(1,17990:-473656,-644877:0,0,0 +k1,17990:-473656,-644877:-65536 ) -(1,17992:-473656,4736287:0,0,0 -k1,17992:-473656,4736287:5209943 +(1,17990:-473656,4736287:0,0,0 +k1,17990:-473656,4736287:5209943 ) -g1,17992:-473656,-710413 +g1,17990:-473656,-710413 ) ] ) -[1,17992:6630773,47279633:25952256,43253760,0 -[1,17992:6630773,4812305:25952256,786432,0 -(1,17992:6630773,4812305:25952256,513147,126483 -(1,17992:6630773,4812305:25952256,513147,126483 -g1,17992:3078558,4812305 -[1,17992:3078558,4812305:0,0,0 -(1,17992:3078558,2439708:0,1703936,0 -k1,17992:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,17992:2537886,2439708:1179648,16384,0 +[1,17990:6630773,47279633:25952256,43253760,0 +[1,17990:6630773,4812305:25952256,786432,0 +(1,17990:6630773,4812305:25952256,513147,126483 +(1,17990:6630773,4812305:25952256,513147,126483 +g1,17990:3078558,4812305 +[1,17990:3078558,4812305:0,0,0 +(1,17990:3078558,2439708:0,1703936,0 +k1,17990:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,17990:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,17992:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,17990:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,17992:3078558,4812305:0,0,0 -(1,17992:3078558,2439708:0,1703936,0 -g1,17992:29030814,2439708 -g1,17992:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,17992:36151628,1915420:16384,1179648,0 +[1,17990:3078558,4812305:0,0,0 +(1,17990:3078558,2439708:0,1703936,0 +g1,17990:29030814,2439708 +g1,17990:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,17990:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,17992:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,17990:37855564,2439708:1179648,16384,0 ) ) -k1,17992:3078556,2439708:-34777008 +k1,17990:3078556,2439708:-34777008 ) ] -[1,17992:3078558,4812305:0,0,0 -(1,17992:3078558,49800853:0,16384,2228224 -k1,17992:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,17992:2537886,49800853:1179648,16384,0 +[1,17990:3078558,4812305:0,0,0 +(1,17990:3078558,49800853:0,16384,2228224 +k1,17990:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,17990:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,17992:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,17990:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,17992:3078558,4812305:0,0,0 -(1,17992:3078558,49800853:0,16384,2228224 -g1,17992:29030814,49800853 -g1,17992:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,17992:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,17992:37855564,49800853:1179648,16384,0 -) -) -k1,17992:3078556,49800853:-34777008 -) -] -g1,17992:6630773,4812305 -k1,17992:21386205,4812305:13560055 -g1,17992:21999622,4812305 -g1,17992:25611966,4812305 -g1,17992:28956923,4812305 -g1,17992:29772190,4812305 -) -) -] -[1,17992:6630773,45706769:25952256,40108032,0 -(1,17992:6630773,45706769:25952256,40108032,0 -(1,17992:6630773,45706769:0,0,0 -g1,17992:6630773,45706769 -) -[1,17992:6630773,45706769:25952256,40108032,0 -(1,17971:6630773,6254097:25952256,513147,134348 -k1,17970:8476565,6254097:244092 -k1,17970:9832147,6254097:244091 -k1,17970:12003653,6254097:244092 -k1,17970:13239305,6254097:244092 -k1,17970:14996623,6254097:244092 -k1,17970:16188365,6254097:244091 -k1,17970:17198573,6254097:244092 -k1,17970:20790899,6254097:244092 -k1,17970:24015568,6254097:244092 -k1,17970:27830060,6254097:244091 -k1,17970:31089463,6254097:244092 -k1,17970:32583029,6254097:0 -) -(1,17971:6630773,7119177:25952256,513147,134348 -k1,17970:7490605,7119177:173670 -k1,17970:10654028,7119177:173671 -k1,17970:12019143,7119177:173670 -k1,17970:15639351,7119177:173670 -k1,17970:17300034,7119177:173671 -k1,17970:18967270,7119177:173670 -k1,17970:19827102,7119177:173670 -k1,17970:22398735,7119177:173671 -k1,17970:23769092,7119177:173670 -k1,17970:26845352,7119177:173670 -k1,17970:27678315,7119177:173671 -k1,17970:30571074,7119177:173670 -k1,17970:32583029,7119177:0 -) -(1,17971:6630773,7984257:25952256,505283,134348 -k1,17970:8161367,7984257:154993 -k1,17970:9473069,7984257:154992 -k1,17970:11200271,7984257:154993 -k1,17970:12411704,7984257:154993 -k1,17970:15353942,7984257:154992 -k1,17970:16700380,7984257:154993 -k1,17970:18306339,7984257:154992 -k1,17970:19842176,7984257:154993 -k1,17970:23310669,7984257:154993 -k1,17970:23997158,7984257:154992 -k1,17970:26886968,7984257:154993 -k1,17970:27803489,7984257:154993 -k1,17970:30047113,7984257:154992 -k1,17970:30853534,7984257:154993 -k1,17970:32583029,7984257:0 -) -(1,17971:6630773,8849337:25952256,505283,134348 -k1,17970:10031015,8849337:214537 -k1,17970:11695207,8849337:214536 -k1,17970:12367841,8849337:214537 -k1,17970:15055707,8849337:214537 -k1,17970:16554750,8849337:214537 -k1,17970:17788371,8849337:214536 -k1,17970:19059348,8849337:214537 -k1,17970:21304846,8849337:214537 -k1,17970:22651844,8849337:214536 -k1,17970:24341596,8849337:214537 -k1,17970:25575218,8849337:214537 -k1,17970:27443228,8849337:214537 -k1,17970:30986338,8849337:214536 -k1,17970:31816913,8849337:214537 -k1,17970:32583029,8849337:0 -) -(1,17971:6630773,9714417:25952256,505283,126483 -k1,17970:8131496,9714417:223426 -k1,17970:10243015,9714417:223427 -k1,17970:12385335,9714417:223426 -k1,17970:13627847,9714417:223427 -(1,17970:13627847,9714417:0,452978,115847 -r1,17992:15744672,9714417:2116825,568825,115847 -k1,17970:13627847,9714417:-2116825 -) -(1,17970:13627847,9714417:2116825,452978,115847 -k1,17970:13627847,9714417:3277 -h1,17970:15741395,9714417:0,411205,112570 -) -k1,17970:15968098,9714417:223426 -k1,17970:18978770,9714417:223426 -k1,17970:19733694,9714417:223427 -k1,17970:22542515,9714417:223426 -k1,17970:23417369,9714417:223426 -k1,17970:25410923,9714417:223427 -k1,17970:27561763,9714417:223426 -k1,17970:29260405,9714417:223427 -k1,17970:31298523,9714417:223426 -k1,17970:32583029,9714417:0 -) -(1,17971:6630773,10579497:25952256,505283,126483 -g1,17970:7821562,10579497 -g1,17970:8955334,10579497 -g1,17970:13471420,10579497 -g1,17970:15713406,10579497 -g1,17970:18673667,10579497 -k1,17971:32583029,10579497:10959587 -g1,17971:32583029,10579497 -) -(1,17972:6630773,12231009:25952256,505283,126483 -(1,17972:6630773,12231009:0,0,0 -g1,17972:6630773,12231009 -) -g1,17972:10311930,12231009 -k1,17972:32583029,12231009:19849544 -g1,17972:32583029,12231009 -) -(1,17974:6630773,13489305:25952256,513147,134348 -k1,17973:7977359,13489305:171526 -k1,17973:9750584,13489305:171525 -k1,17973:13227091,13489305:171526 -k1,17973:14911842,13489305:171525 -k1,17973:18491240,13489305:171526 -k1,17973:20908684,13489305:171525 -k1,17973:22778248,13489305:171526 -k1,17973:25474220,13489305:171525 -k1,17973:27208780,13489305:171526 -k1,17973:28399390,13489305:171525 -k1,17973:31455155,13489305:171526 -k1,17974:32583029,13489305:0 -) -(1,17974:6630773,14354385:25952256,513147,138281 -k1,17973:8180743,14354385:152087 -k1,17973:8864327,14354385:152087 -k1,17973:10035499,14354385:152087 -k1,17973:12453167,14354385:152088 -k1,17973:13552905,14354385:152087 -k1,17973:15306692,14354385:152087 -k1,17973:19049496,14354385:152087 -k1,17973:19829418,14354385:152087 -k1,17973:21000590,14354385:152087 -k1,17973:24036916,14354385:152087 -k1,17973:26608592,14354385:152087 -$1,17973:26608592,14354385 -$1,17973:27111253,14354385 -k1,17973:27263341,14354385:152088 -k1,17973:28606873,14354385:152087 -$1,17973:28606873,14354385 -$1,17973:29158686,14354385 -k1,17973:29310773,14354385:152087 -k1,17973:30454420,14354385:152087 -k1,17974:32583029,14354385:0 -) -(1,17974:6630773,15219465:25952256,530347,134348 -k1,17973:8593362,15219465:175422 -k1,17973:9454946,15219465:175422 -k1,17973:12621431,15219465:175422 -k1,17973:13606223,15219465:175422 -k1,17973:14954084,15219465:175422 -k1,17973:18623229,15219465:175421 -k1,17973:19618506,15219465:175422 -$1,17973:20415424,15219465 -(1,17973:20415424,14944184:343802,255066,0 -) -$1,17973:20759226,15219465 -k1,17973:21141742,15219465:175422 -k1,17973:22889373,15219465:175422 -k1,17973:26423515,15219465:175422 -k1,17973:30006809,15219465:175422 -k1,17973:32583029,15219465:0 -) -(1,17974:6630773,16084545:25952256,505283,134348 -k1,17973:7787593,16084545:165260 -k1,17973:10736822,16084545:165260 -k1,17973:11518120,16084545:165260 -k1,17973:14511913,16084545:165260 -k1,17973:15868618,16084545:165260 -k1,17973:18592404,16084545:165260 -k1,17973:22333964,16084545:165260 -k1,17973:23541246,16084545:165260 -k1,17973:26541593,16084545:165260 -k1,17973:27322891,16084545:165260 -k1,17973:28507236,16084545:165260 -k1,17973:30337110,16084545:165260 -k1,17973:32583029,16084545:0 -) -(1,17974:6630773,16949625:25952256,513147,138281 -k1,17973:7526790,16949625:236725 -k1,17973:11675360,16949625:236726 -k1,17973:12931170,16949625:236725 -$1,17973:12931170,16949625 -$1,17973:13433831,16949625 -k1,17973:13670556,16949625:236725 -k1,17973:15917926,16949625:236725 -k1,17973:17146212,16949625:236726 -k1,17973:19968332,16949625:236725 -k1,17973:20856485,16949625:236725 -k1,17973:23120895,16949625:236726 -k1,17973:25646793,16949625:236725 -k1,17973:26239378,16949625:236725 -k1,17973:28678113,16949625:236725 -k1,17973:30603046,16949625:236726 -k1,17973:32031216,16949625:236725 -$1,17973:32031216,16949625 -$1,17973:32583029,16949625 -k1,17974:32583029,16949625:0 -) -(1,17974:6630773,17814705:25952256,513147,134348 -k1,17973:8866156,17814705:242433 -k1,17973:9760017,17814705:242433 -k1,17973:11021534,17814705:242432 -k1,17973:13448937,17814705:242433 -k1,17973:15897967,17814705:242433 -k1,17973:17955092,17814705:242433 -k1,17973:18848952,17814705:242432 -k1,17973:19447245,17814705:242433 -k1,17973:23097550,17814705:242433 -k1,17973:25585902,17814705:242433 -k1,17973:28399311,17814705:242432 -k1,17973:29660829,17814705:242433 -k1,17973:31923737,17814705:242433 -k1,17973:32583029,17814705:0 -) -(1,17974:6630773,18679785:25952256,505283,134348 -k1,17973:7876713,18679785:226855 -k1,17973:10628016,18679785:226856 -k1,17973:12642693,18679785:226855 -k1,17973:14912306,18679785:226856 -k1,17973:15755199,18679785:226855 -k1,17973:17001139,18679785:226855 -k1,17973:18678962,18679785:226856 -k1,17973:19977986,18679785:226855 -k1,17973:21697751,18679785:226855 -k1,17973:22990878,18679785:226856 -k1,17973:25568509,18679785:226855 -k1,17973:30040787,18679785:226856 -k1,17973:30895477,18679785:226855 -k1,17973:32583029,18679785:0 -) -(1,17974:6630773,19544865:25952256,505283,134348 -k1,17973:9011259,19544865:278091 -k1,17973:10987388,19544865:278091 -k1,17973:13000872,19544865:278091 -k1,17973:16112084,19544865:278091 -k1,17973:20461928,19544865:278092 -k1,17973:23054095,19544865:278091 -k1,17973:25698036,19544865:278091 -k1,17973:26995212,19544865:278091 -k1,17973:30681175,19544865:278091 -k1,17973:32583029,19544865:0 -) -(1,17974:6630773,20409945:25952256,505283,126483 -k1,17973:7951626,20409945:251305 -k1,17973:9269203,20409945:251306 -k1,17973:11563265,20409945:251305 -k1,17973:12430608,20409945:251305 -k1,17973:13700999,20409945:251306 -k1,17973:16827368,20409945:251305 -k1,17973:18529640,20409945:251305 -k1,17973:19913407,20409945:251305 -k1,17973:21363367,20409945:251306 -k1,17973:22362438,20409945:251305 -k1,17973:25372153,20409945:251305 -k1,17973:26239497,20409945:251306 -k1,17973:30884991,20409945:251305 -k1,17973:32583029,20409945:0 -) -(1,17974:6630773,21275025:25952256,505283,134348 -g1,17973:9684750,21275025 -g1,17973:10645507,21275025 -g1,17973:14252608,21275025 -g1,17973:16266529,21275025 -g1,17973:17537927,21275025 -g1,17973:18869618,21275025 -g1,17973:19816613,21275025 -g1,17973:22457058,21275025 -g1,17973:24354325,21275025 -g1,17973:27408302,21275025 -g1,17973:28369059,21275025 -g1,17973:30140497,21275025 -k1,17974:32583029,21275025:575412 -g1,17974:32583029,21275025 -) -(1,17975:6630773,22926537:25952256,505283,7863 -(1,17975:6630773,22926537:0,0,0 -g1,17975:6630773,22926537 -) -k1,17975:32583028,22926537:23518248 -g1,17975:32583028,22926537 -) -(1,17977:6630773,24184833:25952256,513147,126483 -k1,17976:8251011,24184833:199417 -k1,17976:9469512,24184833:199416 -k1,17976:11276527,24184833:199417 -k1,17976:12862685,24184833:199416 -k1,17976:14760140,24184833:199417 -k1,17976:18022709,24184833:199416 -k1,17976:18905011,24184833:199417 -k1,17976:21454549,24184833:199417 -k1,17976:22758247,24184833:199416 -k1,17976:23705430,24184833:199417 -k1,17976:26126517,24184833:199416 -k1,17976:27087462,24184833:199417 -k1,17976:29355194,24184833:199416 -k1,17976:30213903,24184833:199417 -k1,17976:32583029,24184833:0 -) -(1,17977:6630773,25049913:25952256,505283,134348 -k1,17976:7315604,25049913:221491 -k1,17976:8814414,25049913:221513 -k1,17976:10140209,25049913:221513 -k1,17976:11109488,25049913:221513 -k1,17976:13142416,25049913:221513 -k1,17976:15824151,25049913:221513 -k1,17976:18233256,25049913:221513 -k1,17976:18810629,25049913:221513 -k1,17976:21018539,25049913:221514 -k1,17976:22431497,25049913:221513 -k1,17976:24086938,25049913:221513 -k1,17976:26658572,25049913:221513 -k1,17976:27562970,25049913:221513 -k1,17976:30847636,25049913:221513 -k1,17976:32583029,25049913:0 -) -(1,17977:6630773,25914993:25952256,513147,134348 -k1,17976:9578702,25914993:185586 -k1,17976:12254656,25914993:185586 -k1,17976:14031456,25914993:185586 -k1,17976:17409956,25914993:185586 -k1,17976:19581938,25914993:185586 -k1,17976:22636689,25914993:185585 -k1,17976:23926557,25914993:185586 -k1,17976:24859909,25914993:185586 -k1,17976:27880582,25914993:185586 -k1,17976:29257613,25914993:185586 -k1,17976:31326048,25914993:185586 -k1,17976:32583029,25914993:0 -) -(1,17977:6630773,26780073:25952256,513147,126483 -k1,17976:9103971,26780073:156500 -k1,17976:11815720,26780073:156500 -k1,17976:13353064,26780073:156500 -k1,17976:15037207,26780073:156499 -k1,17976:15549567,26780073:156500 -k1,17976:16562623,26780073:156500 -k1,17976:17378415,26780073:156500 -k1,17976:20508939,26780073:156500 -k1,17976:21856884,26780073:156500 -k1,17976:23731738,26780073:156500 -k1,17976:24504276,26780073:156500 -k1,17976:25679860,26780073:156499 -k1,17976:29202289,26780073:156500 -k1,17976:30018081,26780073:156500 -k1,17976:31193666,26780073:156500 -k1,17976:32583029,26780073:0 -) -(1,17977:6630773,27645153:25952256,513147,134348 -g1,17976:11494855,27645153 -g1,17976:14069109,27645153 -g1,17976:15835959,27645153 -g1,17976:17779101,27645153 -g1,17976:20200001,27645153 -g1,17976:21050658,27645153 -g1,17976:22268972,27645153 -g1,17976:25417976,27645153 -k1,17977:32583029,27645153:5023992 -g1,17977:32583029,27645153 -) -(1,17978:6630773,29296665:25952256,485622,126483 -(1,17978:6630773,29296665:0,0,0 -g1,17978:6630773,29296665 -) -k1,17978:32583029,29296665:22798664 -g1,17978:32583029,29296665 -) -(1,17981:6630773,30554961:25952256,505283,134348 -k1,17979:7986239,30554961:180406 -k1,17979:11035811,30554961:180406 -k1,17979:14306240,30554961:180406 -k1,17979:16341970,30554961:180406 -k1,17979:17513936,30554961:180406 -k1,17979:21051750,30554961:180405 -k1,17979:22499622,30554961:180406 -k1,17979:23035888,30554961:180406 -k1,17979:25242012,30554961:180406 -k1,17979:27381944,30554961:180406 -k1,17979:29297743,30554961:180406 -k1,17979:32224763,30554961:180406 -(1,17979:32224763,30554961:0,414482,115847 -r1,17992:32583029,30554961:358266,530329,115847 -k1,17979:32224763,30554961:-358266 -) -(1,17979:32224763,30554961:358266,414482,115847 -k1,17979:32224763,30554961:3277 -h1,17979:32579752,30554961:0,411205,112570 -) -k1,17979:32583029,30554961:0 -) -(1,17981:6630773,31420041:25952256,513147,134348 -k1,17979:8007630,31420041:185412 -k1,17979:12401764,31420041:185412 -k1,17979:14322568,31420041:185411 -(1,17979:14322568,31420041:0,435480,115847 -r1,17992:15384257,31420041:1061689,551327,115847 -k1,17979:14322568,31420041:-1061689 -) -(1,17979:14322568,31420041:1061689,435480,115847 -k1,17979:14322568,31420041:3277 -h1,17979:15380980,31420041:0,411205,112570 -) -k1,17979:15743339,31420041:185412 -k1,17979:17125438,31420041:185412 -k1,17979:19335912,31420041:185412 -k1,17979:20180616,31420041:185412 -k1,17979:22062755,31420041:185412 -k1,17979:25325081,31420041:185411 -k1,17979:27556527,31420041:185412 -k1,17979:29685737,31420041:185412 -k1,17979:30557311,31420041:185412 -k1,17979:32583029,31420041:0 -) -(1,17981:6630773,32285121:25952256,505283,134348 -g1,17979:9119830,32285121 -g1,17979:10310619,32285121 -g1,17979:11988340,32285121 -g1,17979:12949097,32285121 -g1,17979:16992668,32285121 -g1,17979:19379489,32285121 -g1,17979:22532426,32285121 -g1,17979:23414540,32285121 -g1,17979:26482935,32285121 -g1,17979:27333592,32285121 -g1,17979:29345547,32285121 -k1,17981:32583029,32285121:3237482 -g1,17981:32583029,32285121 -) -v1,17983:6630773,33150201:0,393216,0 -(1,17984:6630773,36233101:25952256,3476116,0 -g1,17984:6630773,36233101 -g1,17984:6237557,36233101 -r1,17992:6368629,36233101:131072,3476116,0 -g1,17984:6567858,36233101 -g1,17984:6764466,36233101 -[1,17984:6764466,36233101:25818563,3476116,0 -(1,17984:6764466,33511378:25818563,754393,260573 -(1,17983:6764466,33511378:0,754393,260573 -r1,17992:7856192,33511378:1091726,1014966,260573 -k1,17983:6764466,33511378:-1091726 -) -(1,17983:6764466,33511378:1091726,754393,260573 -) -k1,17983:8129904,33511378:273712 -k1,17983:8457584,33511378:327680 -k1,17983:9927982,33511378:273711 -k1,17983:13227491,33511378:273712 -k1,17983:18124767,33511378:273711 -k1,17983:19049907,33511378:273712 -k1,17983:20342703,33511378:273711 -k1,17983:23378758,33511378:273712 -k1,17983:26521635,33511378:273711 -k1,17983:27454639,33511378:273712 -k1,17983:28747435,33511378:273711 -k1,17983:31923737,33511378:273712 -k1,17983:32583029,33511378:0 -) -(1,17984:6764466,34376458:25818563,513147,134348 -k1,17983:9758369,34376458:274814 -k1,17983:11508398,34376458:274814 -k1,17983:15104578,34376458:274815 -k1,17983:17447708,34376458:274814 -k1,17983:19116473,34376458:274814 -k1,17983:20410372,34376458:274814 -k1,17983:21991319,34376458:274814 -k1,17983:23399251,34376458:274814 -k1,17983:25706337,34376458:274815 -k1,17983:28259182,34376458:274814 -k1,17983:29146758,34376458:274814 -k1,17983:30930211,34376458:274814 -k1,17983:32583029,34376458:0 -) -(1,17984:6764466,35241538:25818563,505283,134348 -k1,17983:10146366,35241538:207336 -k1,17983:13491565,35241538:207335 -(1,17983:13698659,35241538:0,414482,115847 -r1,17992:14760348,35241538:1061689,530329,115847 -k1,17983:13698659,35241538:-1061689 -) -(1,17983:13698659,35241538:1061689,414482,115847 -k1,17983:13698659,35241538:3277 -h1,17983:14757071,35241538:0,411205,112570 -) -k1,17983:15348448,35241538:207336 -k1,17983:18719206,35241538:207335 -k1,17983:21795708,35241538:207336 -(1,17983:22002802,35241538:0,414482,122846 -r1,17992:24119627,35241538:2116825,537328,122846 -k1,17983:22002802,35241538:-2116825 -) -(1,17983:22002802,35241538:2116825,414482,122846 -k1,17983:22002802,35241538:3277 -h1,17983:24116350,35241538:0,411205,112570 -) -k1,17983:24707727,35241538:207336 -k1,17983:27768500,35241538:207335 -(1,17983:27975594,35241538:0,414482,115847 -r1,17992:30092419,35241538:2116825,530329,115847 -k1,17983:27975594,35241538:-2116825 -) -(1,17983:27975594,35241538:2116825,414482,115847 -k1,17983:27975594,35241538:3277 -h1,17983:30089142,35241538:0,411205,112570 -) -k1,17983:30680519,35241538:207336 -k1,17983:32583029,35241538:0 -) -(1,17984:6764466,36106618:25818563,505283,126483 -(1,17983:6950588,36106618:0,452978,115847 -r1,17992:9419125,36106618:2468537,568825,115847 -k1,17983:6950588,36106618:-2468537 -) -(1,17983:6950588,36106618:2468537,452978,115847 -k1,17983:6950588,36106618:3277 -h1,17983:9415848,36106618:0,411205,112570 -) -g1,17983:9999118,36106618 -g1,17983:13606219,36106618 -g1,17983:16381668,36106618 -(1,17983:16588762,36106618:0,452978,115847 -r1,17992:19057299,36106618:2468537,568825,115847 -k1,17983:16588762,36106618:-2468537 -) -(1,17983:16588762,36106618:2468537,452978,115847 -k1,17983:16588762,36106618:3277 -h1,17983:19054022,36106618:0,411205,112570 -) -g1,17983:19637292,36106618 -g1,17983:21027966,36106618 -g1,17983:23543893,36106618 -(1,17983:23750987,36106618:0,452978,115847 -r1,17992:26219524,36106618:2468537,568825,115847 -k1,17983:23750987,36106618:-2468537 -) -(1,17983:23750987,36106618:2468537,452978,115847 -k1,17983:23750987,36106618:3277 -h1,17983:26216247,36106618:0,411205,112570 -) -k1,17984:32583029,36106618:6103983 -g1,17984:32583029,36106618 -) -] -g1,17984:32583029,36233101 -) -h1,17984:6630773,36233101:0,0,0 -(1,17986:6630773,38349919:25952256,564462,147783 -(1,17986:6630773,38349919:2450326,534184,12975 -g1,17986:6630773,38349919 -g1,17986:9081099,38349919 -) -g1,17986:10697348,38349919 -g1,17986:14321293,38349919 -g1,17986:15290899,38349919 -g1,17986:16672857,38349919 -k1,17986:32583029,38349919:12632979 -g1,17986:32583029,38349919 -) -(1,17990:6630773,39608215:25952256,513147,134348 -k1,17989:7284828,39608215:190715 -(1,17989:7284828,39608215:0,452978,122846 -r1,17992:8698229,39608215:1413401,575824,122846 -k1,17989:7284828,39608215:-1413401 -) -(1,17989:7284828,39608215:1413401,452978,122846 -k1,17989:7284828,39608215:3277 -h1,17989:8694952,39608215:0,411205,112570 -) -k1,17989:8888952,39608215:190723 -k1,17989:10356972,39608215:190723 -k1,17989:12507221,39608215:190723 -k1,17989:13229441,39608215:190723 -k1,17989:14190868,39608215:190724 -k1,17989:14796425,39608215:190714 -k1,17989:16946675,39608215:190724 -k1,17989:17796690,39608215:190723 -k1,17989:19769992,39608215:190723 -(1,17989:19769992,39608215:0,452978,115847 -r1,17992:21886817,39608215:2116825,568825,115847 -k1,17989:19769992,39608215:-2116825 -) -(1,17989:19769992,39608215:2116825,452978,115847 -k1,17989:19769992,39608215:3277 -h1,17989:21883540,39608215:0,411205,112570 -) -k1,17989:22077540,39608215:190723 -k1,17989:25630260,39608215:190723 -k1,17989:26840068,39608215:190723 -k1,17989:28969347,39608215:190724 -k1,17989:30351515,39608215:190723 -k1,17989:31931601,39608215:190723 -k1,17989:32583029,39608215:0 -) -(1,17990:6630773,40473295:25952256,513147,126483 -k1,17989:9835483,40473295:180879 -k1,17989:10372223,40473295:180880 -k1,17989:12004069,40473295:180879 -k1,17989:12654842,40473295:180880 -k1,17989:13367218,40473295:180879 -k1,17989:14695632,40473295:180879 -k1,17989:18016342,40473295:180880 -k1,17989:18813259,40473295:180879 -k1,17989:20013224,40473295:180880 -k1,17989:21964230,40473295:180879 -k1,17989:23429615,40473295:180879 -k1,17989:24629580,40473295:180880 -k1,17989:26186060,40473295:180879 -k1,17989:30297789,40473295:180880 -k1,17989:31426319,40473295:180879 -k1,17990:32583029,40473295:0 -) -(1,17990:6630773,41338375:25952256,513147,134348 -k1,17989:8885539,41338375:208077 -k1,17989:9551713,41338375:208077 -k1,17989:11027256,41338375:208077 -k1,17989:11591193,41338375:208077 -k1,17989:14749045,41338375:208077 -k1,17989:19621975,41338375:208077 -k1,17989:20361548,41338375:208076 -k1,17989:21588710,41338375:208077 -k1,17989:25253811,41338375:208077 -k1,17989:26121180,41338375:208077 -k1,17989:28909409,41338375:208077 -k1,17989:32119689,41338375:208077 -k1,17990:32583029,41338375:0 -) -(1,17990:6630773,42203455:25952256,513147,134348 -(1,17989:6630773,42203455:0,452978,122846 -r1,17992:8044174,42203455:1413401,575824,122846 -k1,17989:6630773,42203455:-1413401 -) -(1,17989:6630773,42203455:1413401,452978,122846 -k1,17989:6630773,42203455:3277 -h1,17989:8040897,42203455:0,411205,112570 -) -k1,17989:8202535,42203455:158361 -k1,17989:10320423,42203455:158362 -k1,17989:13180833,42203455:158361 -k1,17989:14358279,42203455:158361 -k1,17989:15906004,42203455:158362 -k1,17989:16680403,42203455:158361 -k1,17989:17995474,42203455:158361 -k1,17989:18836720,42203455:158361 -k1,17989:20645279,42203455:158362 -k1,17989:22193003,42203455:158361 -k1,17989:24557961,42203455:158361 -k1,17989:25907768,42203455:158362 -k1,17989:29903917,42203455:158361 -k1,17989:32583029,42203455:0 -) -(1,17990:6630773,43068535:25952256,513147,134348 -k1,17989:7588809,43068535:271874 -k1,17989:10886479,43068535:271873 -k1,17989:12349798,43068535:271874 -k1,17989:16406375,43068535:271873 -k1,17989:17750418,43068535:271874 -k1,17989:19088563,43068535:271874 -k1,17989:20325781,43068535:271873 -k1,17989:20953515,43068535:271874 -k1,17989:24322620,43068535:271874 -k1,17989:25253785,43068535:271873 -k1,17989:26544744,43068535:271874 -k1,17989:28093914,43068535:271873 -k1,17989:29633254,43068535:271874 -k1,17989:32583029,43068535:0 -) -(1,17990:6630773,43933615:25952256,513147,134348 -k1,17989:9279023,43933615:184752 -k1,17989:10929160,43933615:184752 -k1,17989:12503275,43933615:184752 -k1,17989:17855541,43933615:184752 -k1,17989:19231738,43933615:184752 -k1,17989:22513720,43933615:184751 -k1,17989:23357764,43933615:184752 -k1,17989:24561601,43933615:184752 -k1,17989:26023650,43933615:184752 -k1,17989:27475868,43933615:184752 -k1,17989:30236840,43933615:184752 -k1,17990:32583029,43933615:0 -) -(1,17990:6630773,44798695:25952256,513147,134348 -k1,17989:8436290,44798695:207749 -k1,17989:11530245,44798695:207749 -k1,17989:12424156,44798695:207749 -k1,17989:15581680,44798695:207749 -k1,17989:18079257,44798695:207749 -k1,17989:18969891,44798695:207749 -k1,17989:21156173,44798695:207749 -k1,17989:22716585,44798695:207749 -k1,17989:24586982,44798695:207749 -k1,17989:25407493,44798695:207749 -k1,17989:26634327,44798695:207749 -k1,17989:28267484,44798695:207749 -k1,17989:29134525,44798695:207749 -k1,17989:31914562,44798695:207749 -k1,17989:32583029,44798695:0 -) -(1,17990:6630773,45663775:25952256,513147,134348 -g1,17989:9893155,45663775 -g1,17989:11111469,45663775 -g1,17989:12761665,45663775 -g1,17989:14203457,45663775 -g1,17989:16100724,45663775 -g1,17989:18333535,45663775 -g1,17989:18888624,45663775 -g1,17989:21342947,45663775 -g1,17989:22193604,45663775 -g1,17989:22748693,45663775 -k1,17990:32583029,45663775:8798868 -g1,17990:32583029,45663775 -) -] -(1,17992:32583029,45706769:0,0,0 -g1,17992:32583029,45706769 -) -) -] -(1,17992:6630773,47279633:25952256,0,0 -h1,17992:6630773,47279633:25952256,0,0 -) -] -(1,17992:4262630,4025873:0,0,0 -[1,17992:-473656,4025873:0,0,0 -(1,17992:-473656,-710413:0,0,0 -(1,17992:-473656,-710413:0,0,0 -g1,17992:-473656,-710413 -) -g1,17992:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,17990:3078558,4812305:0,0,0 +(1,17990:3078558,49800853:0,16384,2228224 +g1,17990:29030814,49800853 +g1,17990:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,17990:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,17990:37855564,49800853:1179648,16384,0 +) +) +k1,17990:3078556,49800853:-34777008 +) +] +g1,17990:6630773,4812305 +k1,17990:21386205,4812305:13560055 +g1,17990:21999622,4812305 +g1,17990:25611966,4812305 +g1,17990:28956923,4812305 +g1,17990:29772190,4812305 +) +) +] +[1,17990:6630773,45706769:25952256,40108032,0 +(1,17990:6630773,45706769:25952256,40108032,0 +(1,17990:6630773,45706769:0,0,0 +g1,17990:6630773,45706769 +) +[1,17990:6630773,45706769:25952256,40108032,0 +(1,17969:6630773,6254097:25952256,513147,134348 +k1,17968:8476565,6254097:244092 +k1,17968:9832147,6254097:244091 +k1,17968:12003653,6254097:244092 +k1,17968:13239305,6254097:244092 +k1,17968:14996623,6254097:244092 +k1,17968:16188365,6254097:244091 +k1,17968:17198573,6254097:244092 +k1,17968:20790899,6254097:244092 +k1,17968:24015568,6254097:244092 +k1,17968:27830060,6254097:244091 +k1,17968:31089463,6254097:244092 +k1,17968:32583029,6254097:0 +) +(1,17969:6630773,7119177:25952256,513147,134348 +k1,17968:7490605,7119177:173670 +k1,17968:10654028,7119177:173671 +k1,17968:12019143,7119177:173670 +k1,17968:15639351,7119177:173670 +k1,17968:17300034,7119177:173671 +k1,17968:18967270,7119177:173670 +k1,17968:19827102,7119177:173670 +k1,17968:22398735,7119177:173671 +k1,17968:23769092,7119177:173670 +k1,17968:26845352,7119177:173670 +k1,17968:27678315,7119177:173671 +k1,17968:30571074,7119177:173670 +k1,17968:32583029,7119177:0 +) +(1,17969:6630773,7984257:25952256,505283,134348 +k1,17968:8161367,7984257:154993 +k1,17968:9473069,7984257:154992 +k1,17968:11200271,7984257:154993 +k1,17968:12411704,7984257:154993 +k1,17968:15353942,7984257:154992 +k1,17968:16700380,7984257:154993 +k1,17968:18306339,7984257:154992 +k1,17968:19842176,7984257:154993 +k1,17968:23310669,7984257:154993 +k1,17968:23997158,7984257:154992 +k1,17968:26886968,7984257:154993 +k1,17968:27803489,7984257:154993 +k1,17968:30047113,7984257:154992 +k1,17968:30853534,7984257:154993 +k1,17968:32583029,7984257:0 +) +(1,17969:6630773,8849337:25952256,505283,134348 +k1,17968:10031015,8849337:214537 +k1,17968:11695207,8849337:214536 +k1,17968:12367841,8849337:214537 +k1,17968:15055707,8849337:214537 +k1,17968:16554750,8849337:214537 +k1,17968:17788371,8849337:214536 +k1,17968:19059348,8849337:214537 +k1,17968:21304846,8849337:214537 +k1,17968:22651844,8849337:214536 +k1,17968:24341596,8849337:214537 +k1,17968:25575218,8849337:214537 +k1,17968:27443228,8849337:214537 +k1,17968:30986338,8849337:214536 +k1,17968:31816913,8849337:214537 +k1,17968:32583029,8849337:0 +) +(1,17969:6630773,9714417:25952256,505283,126483 +k1,17968:8131496,9714417:223426 +k1,17968:10243015,9714417:223427 +k1,17968:12385335,9714417:223426 +k1,17968:13627847,9714417:223427 +(1,17968:13627847,9714417:0,452978,115847 +r1,17990:15744672,9714417:2116825,568825,115847 +k1,17968:13627847,9714417:-2116825 +) +(1,17968:13627847,9714417:2116825,452978,115847 +k1,17968:13627847,9714417:3277 +h1,17968:15741395,9714417:0,411205,112570 +) +k1,17968:15968098,9714417:223426 +k1,17968:18978770,9714417:223426 +k1,17968:19733694,9714417:223427 +k1,17968:22542515,9714417:223426 +k1,17968:23417369,9714417:223426 +k1,17968:25410923,9714417:223427 +k1,17968:27561763,9714417:223426 +k1,17968:29260405,9714417:223427 +k1,17968:31298523,9714417:223426 +k1,17968:32583029,9714417:0 +) +(1,17969:6630773,10579497:25952256,505283,126483 +g1,17968:7821562,10579497 +g1,17968:8955334,10579497 +g1,17968:13471420,10579497 +g1,17968:15713406,10579497 +g1,17968:18673667,10579497 +k1,17969:32583029,10579497:10959587 +g1,17969:32583029,10579497 +) +(1,17970:6630773,12231009:25952256,505283,126483 +(1,17970:6630773,12231009:0,0,0 +g1,17970:6630773,12231009 +) +g1,17970:10311930,12231009 +k1,17970:32583029,12231009:19849544 +g1,17970:32583029,12231009 +) +(1,17972:6630773,13489305:25952256,513147,134348 +k1,17971:7977359,13489305:171526 +k1,17971:9750584,13489305:171525 +k1,17971:13227091,13489305:171526 +k1,17971:14911842,13489305:171525 +k1,17971:18491240,13489305:171526 +k1,17971:20908684,13489305:171525 +k1,17971:22778248,13489305:171526 +k1,17971:25474220,13489305:171525 +k1,17971:27208780,13489305:171526 +k1,17971:28399390,13489305:171525 +k1,17971:31455155,13489305:171526 +k1,17972:32583029,13489305:0 +) +(1,17972:6630773,14354385:25952256,513147,138281 +k1,17971:8180743,14354385:152087 +k1,17971:8864327,14354385:152087 +k1,17971:10035499,14354385:152087 +k1,17971:12453167,14354385:152088 +k1,17971:13552905,14354385:152087 +k1,17971:15306692,14354385:152087 +k1,17971:19049496,14354385:152087 +k1,17971:19829418,14354385:152087 +k1,17971:21000590,14354385:152087 +k1,17971:24036916,14354385:152087 +k1,17971:26608592,14354385:152087 +$1,17971:26608592,14354385 +$1,17971:27111253,14354385 +k1,17971:27263341,14354385:152088 +k1,17971:28606873,14354385:152087 +$1,17971:28606873,14354385 +$1,17971:29158686,14354385 +k1,17971:29310773,14354385:152087 +k1,17971:30454420,14354385:152087 +k1,17972:32583029,14354385:0 +) +(1,17972:6630773,15219465:25952256,530347,134348 +k1,17971:8593362,15219465:175422 +k1,17971:9454946,15219465:175422 +k1,17971:12621431,15219465:175422 +k1,17971:13606223,15219465:175422 +k1,17971:14954084,15219465:175422 +k1,17971:18623229,15219465:175421 +k1,17971:19618506,15219465:175422 +$1,17971:20415424,15219465 +(1,17971:20415424,14944184:343802,255066,0 +) +$1,17971:20759226,15219465 +k1,17971:21141742,15219465:175422 +k1,17971:22889373,15219465:175422 +k1,17971:26423515,15219465:175422 +k1,17971:30006809,15219465:175422 +k1,17971:32583029,15219465:0 +) +(1,17972:6630773,16084545:25952256,505283,134348 +k1,17971:7787593,16084545:165260 +k1,17971:10736822,16084545:165260 +k1,17971:11518120,16084545:165260 +k1,17971:14511913,16084545:165260 +k1,17971:15868618,16084545:165260 +k1,17971:18592404,16084545:165260 +k1,17971:22333964,16084545:165260 +k1,17971:23541246,16084545:165260 +k1,17971:26541593,16084545:165260 +k1,17971:27322891,16084545:165260 +k1,17971:28507236,16084545:165260 +k1,17971:30337110,16084545:165260 +k1,17971:32583029,16084545:0 +) +(1,17972:6630773,16949625:25952256,513147,138281 +k1,17971:7526790,16949625:236725 +k1,17971:11675360,16949625:236726 +k1,17971:12931170,16949625:236725 +$1,17971:12931170,16949625 +$1,17971:13433831,16949625 +k1,17971:13670556,16949625:236725 +k1,17971:15917926,16949625:236725 +k1,17971:17146212,16949625:236726 +k1,17971:19968332,16949625:236725 +k1,17971:20856485,16949625:236725 +k1,17971:23120895,16949625:236726 +k1,17971:25646793,16949625:236725 +k1,17971:26239378,16949625:236725 +k1,17971:28678113,16949625:236725 +k1,17971:30603046,16949625:236726 +k1,17971:32031216,16949625:236725 +$1,17971:32031216,16949625 +$1,17971:32583029,16949625 +k1,17972:32583029,16949625:0 +) +(1,17972:6630773,17814705:25952256,513147,134348 +k1,17971:8866156,17814705:242433 +k1,17971:9760017,17814705:242433 +k1,17971:11021534,17814705:242432 +k1,17971:13448937,17814705:242433 +k1,17971:15897967,17814705:242433 +k1,17971:17955092,17814705:242433 +k1,17971:18848952,17814705:242432 +k1,17971:19447245,17814705:242433 +k1,17971:23097550,17814705:242433 +k1,17971:25585902,17814705:242433 +k1,17971:28399311,17814705:242432 +k1,17971:29660829,17814705:242433 +k1,17971:31923737,17814705:242433 +k1,17971:32583029,17814705:0 +) +(1,17972:6630773,18679785:25952256,505283,134348 +k1,17971:7876713,18679785:226855 +k1,17971:10628016,18679785:226856 +k1,17971:12642693,18679785:226855 +k1,17971:14912306,18679785:226856 +k1,17971:15755199,18679785:226855 +k1,17971:17001139,18679785:226855 +k1,17971:18678962,18679785:226856 +k1,17971:19977986,18679785:226855 +k1,17971:21697751,18679785:226855 +k1,17971:22990878,18679785:226856 +k1,17971:25568509,18679785:226855 +k1,17971:30040787,18679785:226856 +k1,17971:30895477,18679785:226855 +k1,17971:32583029,18679785:0 +) +(1,17972:6630773,19544865:25952256,505283,134348 +k1,17971:9011259,19544865:278091 +k1,17971:10987388,19544865:278091 +k1,17971:13000872,19544865:278091 +k1,17971:16112084,19544865:278091 +k1,17971:20461928,19544865:278092 +k1,17971:23054095,19544865:278091 +k1,17971:25698036,19544865:278091 +k1,17971:26995212,19544865:278091 +k1,17971:30681175,19544865:278091 +k1,17971:32583029,19544865:0 +) +(1,17972:6630773,20409945:25952256,505283,126483 +k1,17971:7951626,20409945:251305 +k1,17971:9269203,20409945:251306 +k1,17971:11563265,20409945:251305 +k1,17971:12430608,20409945:251305 +k1,17971:13700999,20409945:251306 +k1,17971:16827368,20409945:251305 +k1,17971:18529640,20409945:251305 +k1,17971:19913407,20409945:251305 +k1,17971:21363367,20409945:251306 +k1,17971:22362438,20409945:251305 +k1,17971:25372153,20409945:251305 +k1,17971:26239497,20409945:251306 +k1,17971:30884991,20409945:251305 +k1,17971:32583029,20409945:0 +) +(1,17972:6630773,21275025:25952256,505283,134348 +g1,17971:9684750,21275025 +g1,17971:10645507,21275025 +g1,17971:14252608,21275025 +g1,17971:16266529,21275025 +g1,17971:17537927,21275025 +g1,17971:18869618,21275025 +g1,17971:19816613,21275025 +g1,17971:22457058,21275025 +g1,17971:24354325,21275025 +g1,17971:27408302,21275025 +g1,17971:28369059,21275025 +g1,17971:30140497,21275025 +k1,17972:32583029,21275025:575412 +g1,17972:32583029,21275025 +) +(1,17973:6630773,22926537:25952256,505283,7863 +(1,17973:6630773,22926537:0,0,0 +g1,17973:6630773,22926537 +) +k1,17973:32583028,22926537:23518248 +g1,17973:32583028,22926537 +) +(1,17975:6630773,24184833:25952256,513147,126483 +k1,17974:8251011,24184833:199417 +k1,17974:9469512,24184833:199416 +k1,17974:11276527,24184833:199417 +k1,17974:12862685,24184833:199416 +k1,17974:14760140,24184833:199417 +k1,17974:18022709,24184833:199416 +k1,17974:18905011,24184833:199417 +k1,17974:21454549,24184833:199417 +k1,17974:22758247,24184833:199416 +k1,17974:23705430,24184833:199417 +k1,17974:26126517,24184833:199416 +k1,17974:27087462,24184833:199417 +k1,17974:29355194,24184833:199416 +k1,17974:30213903,24184833:199417 +k1,17974:32583029,24184833:0 +) +(1,17975:6630773,25049913:25952256,505283,134348 +k1,17974:7315604,25049913:221491 +k1,17974:8814414,25049913:221513 +k1,17974:10140209,25049913:221513 +k1,17974:11109488,25049913:221513 +k1,17974:13142416,25049913:221513 +k1,17974:15824151,25049913:221513 +k1,17974:18233256,25049913:221513 +k1,17974:18810629,25049913:221513 +k1,17974:21018539,25049913:221514 +k1,17974:22431497,25049913:221513 +k1,17974:24086938,25049913:221513 +k1,17974:26658572,25049913:221513 +k1,17974:27562970,25049913:221513 +k1,17974:30847636,25049913:221513 +k1,17974:32583029,25049913:0 +) +(1,17975:6630773,25914993:25952256,513147,134348 +k1,17974:9578702,25914993:185586 +k1,17974:12254656,25914993:185586 +k1,17974:14031456,25914993:185586 +k1,17974:17409956,25914993:185586 +k1,17974:19581938,25914993:185586 +k1,17974:22636689,25914993:185585 +k1,17974:23926557,25914993:185586 +k1,17974:24859909,25914993:185586 +k1,17974:27880582,25914993:185586 +k1,17974:29257613,25914993:185586 +k1,17974:31326048,25914993:185586 +k1,17974:32583029,25914993:0 +) +(1,17975:6630773,26780073:25952256,513147,126483 +k1,17974:9103971,26780073:156500 +k1,17974:11815720,26780073:156500 +k1,17974:13353064,26780073:156500 +k1,17974:15037207,26780073:156499 +k1,17974:15549567,26780073:156500 +k1,17974:16562623,26780073:156500 +k1,17974:17378415,26780073:156500 +k1,17974:20508939,26780073:156500 +k1,17974:21856884,26780073:156500 +k1,17974:23731738,26780073:156500 +k1,17974:24504276,26780073:156500 +k1,17974:25679860,26780073:156499 +k1,17974:29202289,26780073:156500 +k1,17974:30018081,26780073:156500 +k1,17974:31193666,26780073:156500 +k1,17974:32583029,26780073:0 +) +(1,17975:6630773,27645153:25952256,513147,134348 +g1,17974:11494855,27645153 +g1,17974:14069109,27645153 +g1,17974:15835959,27645153 +g1,17974:17779101,27645153 +g1,17974:20200001,27645153 +g1,17974:21050658,27645153 +g1,17974:22268972,27645153 +g1,17974:25417976,27645153 +k1,17975:32583029,27645153:5023992 +g1,17975:32583029,27645153 +) +(1,17976:6630773,29296665:25952256,485622,126483 +(1,17976:6630773,29296665:0,0,0 +g1,17976:6630773,29296665 +) +k1,17976:32583029,29296665:22798664 +g1,17976:32583029,29296665 +) +(1,17979:6630773,30554961:25952256,505283,134348 +k1,17977:7986239,30554961:180406 +k1,17977:11035811,30554961:180406 +k1,17977:14306240,30554961:180406 +k1,17977:16341970,30554961:180406 +k1,17977:17513936,30554961:180406 +k1,17977:21051750,30554961:180405 +k1,17977:22499622,30554961:180406 +k1,17977:23035888,30554961:180406 +k1,17977:25242012,30554961:180406 +k1,17977:27381944,30554961:180406 +k1,17977:29297743,30554961:180406 +k1,17977:32224763,30554961:180406 +(1,17977:32224763,30554961:0,414482,115847 +r1,17990:32583029,30554961:358266,530329,115847 +k1,17977:32224763,30554961:-358266 +) +(1,17977:32224763,30554961:358266,414482,115847 +k1,17977:32224763,30554961:3277 +h1,17977:32579752,30554961:0,411205,112570 +) +k1,17977:32583029,30554961:0 +) +(1,17979:6630773,31420041:25952256,513147,134348 +k1,17977:8007630,31420041:185412 +k1,17977:12401764,31420041:185412 +k1,17977:14322568,31420041:185411 +(1,17977:14322568,31420041:0,435480,115847 +r1,17990:15384257,31420041:1061689,551327,115847 +k1,17977:14322568,31420041:-1061689 +) +(1,17977:14322568,31420041:1061689,435480,115847 +k1,17977:14322568,31420041:3277 +h1,17977:15380980,31420041:0,411205,112570 +) +k1,17977:15743339,31420041:185412 +k1,17977:17125438,31420041:185412 +k1,17977:19335912,31420041:185412 +k1,17977:20180616,31420041:185412 +k1,17977:22062755,31420041:185412 +k1,17977:25325081,31420041:185411 +k1,17977:27556527,31420041:185412 +k1,17977:29685737,31420041:185412 +k1,17977:30557311,31420041:185412 +k1,17977:32583029,31420041:0 +) +(1,17979:6630773,32285121:25952256,505283,134348 +g1,17977:9119830,32285121 +g1,17977:10310619,32285121 +g1,17977:11988340,32285121 +g1,17977:12949097,32285121 +g1,17977:16992668,32285121 +g1,17977:19379489,32285121 +g1,17977:22532426,32285121 +g1,17977:23414540,32285121 +g1,17977:26482935,32285121 +g1,17977:27333592,32285121 +g1,17977:29345547,32285121 +k1,17979:32583029,32285121:3237482 +g1,17979:32583029,32285121 +) +v1,17981:6630773,33150201:0,393216,0 +(1,17982:6630773,36233101:25952256,3476116,0 +g1,17982:6630773,36233101 +g1,17982:6237557,36233101 +r1,17990:6368629,36233101:131072,3476116,0 +g1,17982:6567858,36233101 +g1,17982:6764466,36233101 +[1,17982:6764466,36233101:25818563,3476116,0 +(1,17982:6764466,33511378:25818563,754393,260573 +(1,17981:6764466,33511378:0,754393,260573 +r1,17990:7856192,33511378:1091726,1014966,260573 +k1,17981:6764466,33511378:-1091726 +) +(1,17981:6764466,33511378:1091726,754393,260573 +) +k1,17981:8129904,33511378:273712 +k1,17981:8457584,33511378:327680 +k1,17981:9927982,33511378:273711 +k1,17981:13227491,33511378:273712 +k1,17981:18124767,33511378:273711 +k1,17981:19049907,33511378:273712 +k1,17981:20342703,33511378:273711 +k1,17981:23378758,33511378:273712 +k1,17981:26521635,33511378:273711 +k1,17981:27454639,33511378:273712 +k1,17981:28747435,33511378:273711 +k1,17981:31923737,33511378:273712 +k1,17981:32583029,33511378:0 +) +(1,17982:6764466,34376458:25818563,513147,134348 +k1,17981:9758369,34376458:274814 +k1,17981:11508398,34376458:274814 +k1,17981:15104578,34376458:274815 +k1,17981:17447708,34376458:274814 +k1,17981:19116473,34376458:274814 +k1,17981:20410372,34376458:274814 +k1,17981:21991319,34376458:274814 +k1,17981:23399251,34376458:274814 +k1,17981:25706337,34376458:274815 +k1,17981:28259182,34376458:274814 +k1,17981:29146758,34376458:274814 +k1,17981:30930211,34376458:274814 +k1,17981:32583029,34376458:0 +) +(1,17982:6764466,35241538:25818563,505283,134348 +k1,17981:10146366,35241538:207336 +k1,17981:13491565,35241538:207335 +(1,17981:13698659,35241538:0,414482,115847 +r1,17990:14760348,35241538:1061689,530329,115847 +k1,17981:13698659,35241538:-1061689 +) +(1,17981:13698659,35241538:1061689,414482,115847 +k1,17981:13698659,35241538:3277 +h1,17981:14757071,35241538:0,411205,112570 +) +k1,17981:15348448,35241538:207336 +k1,17981:18719206,35241538:207335 +k1,17981:21795708,35241538:207336 +(1,17981:22002802,35241538:0,414482,122846 +r1,17990:24119627,35241538:2116825,537328,122846 +k1,17981:22002802,35241538:-2116825 +) +(1,17981:22002802,35241538:2116825,414482,122846 +k1,17981:22002802,35241538:3277 +h1,17981:24116350,35241538:0,411205,112570 +) +k1,17981:24707727,35241538:207336 +k1,17981:27768500,35241538:207335 +(1,17981:27975594,35241538:0,414482,115847 +r1,17990:30092419,35241538:2116825,530329,115847 +k1,17981:27975594,35241538:-2116825 +) +(1,17981:27975594,35241538:2116825,414482,115847 +k1,17981:27975594,35241538:3277 +h1,17981:30089142,35241538:0,411205,112570 +) +k1,17981:30680519,35241538:207336 +k1,17981:32583029,35241538:0 +) +(1,17982:6764466,36106618:25818563,505283,126483 +(1,17981:6950588,36106618:0,452978,115847 +r1,17990:9419125,36106618:2468537,568825,115847 +k1,17981:6950588,36106618:-2468537 +) +(1,17981:6950588,36106618:2468537,452978,115847 +k1,17981:6950588,36106618:3277 +h1,17981:9415848,36106618:0,411205,112570 +) +g1,17981:9999118,36106618 +g1,17981:13606219,36106618 +g1,17981:16381668,36106618 +(1,17981:16588762,36106618:0,452978,115847 +r1,17990:19057299,36106618:2468537,568825,115847 +k1,17981:16588762,36106618:-2468537 +) +(1,17981:16588762,36106618:2468537,452978,115847 +k1,17981:16588762,36106618:3277 +h1,17981:19054022,36106618:0,411205,112570 +) +g1,17981:19637292,36106618 +g1,17981:21027966,36106618 +g1,17981:23543893,36106618 +(1,17981:23750987,36106618:0,452978,115847 +r1,17990:26219524,36106618:2468537,568825,115847 +k1,17981:23750987,36106618:-2468537 +) +(1,17981:23750987,36106618:2468537,452978,115847 +k1,17981:23750987,36106618:3277 +h1,17981:26216247,36106618:0,411205,112570 +) +k1,17982:32583029,36106618:6103983 +g1,17982:32583029,36106618 +) +] +g1,17982:32583029,36233101 +) +h1,17982:6630773,36233101:0,0,0 +(1,17984:6630773,38349919:25952256,564462,147783 +(1,17984:6630773,38349919:2450326,534184,12975 +g1,17984:6630773,38349919 +g1,17984:9081099,38349919 +) +g1,17984:10697348,38349919 +g1,17984:14321293,38349919 +g1,17984:15290899,38349919 +g1,17984:16672857,38349919 +k1,17984:32583029,38349919:12632979 +g1,17984:32583029,38349919 +) +(1,17988:6630773,39608215:25952256,513147,134348 +k1,17987:7284828,39608215:190715 +(1,17987:7284828,39608215:0,452978,122846 +r1,17990:8698229,39608215:1413401,575824,122846 +k1,17987:7284828,39608215:-1413401 +) +(1,17987:7284828,39608215:1413401,452978,122846 +k1,17987:7284828,39608215:3277 +h1,17987:8694952,39608215:0,411205,112570 +) +k1,17987:8888952,39608215:190723 +k1,17987:10356972,39608215:190723 +k1,17987:12507221,39608215:190723 +k1,17987:13229441,39608215:190723 +k1,17987:14190868,39608215:190724 +k1,17987:14796425,39608215:190714 +k1,17987:16946675,39608215:190724 +k1,17987:17796690,39608215:190723 +k1,17987:19769992,39608215:190723 +(1,17987:19769992,39608215:0,452978,115847 +r1,17990:21886817,39608215:2116825,568825,115847 +k1,17987:19769992,39608215:-2116825 +) +(1,17987:19769992,39608215:2116825,452978,115847 +k1,17987:19769992,39608215:3277 +h1,17987:21883540,39608215:0,411205,112570 +) +k1,17987:22077540,39608215:190723 +k1,17987:25630260,39608215:190723 +k1,17987:26840068,39608215:190723 +k1,17987:28969347,39608215:190724 +k1,17987:30351515,39608215:190723 +k1,17987:31931601,39608215:190723 +k1,17987:32583029,39608215:0 +) +(1,17988:6630773,40473295:25952256,513147,126483 +k1,17987:9835483,40473295:180879 +k1,17987:10372223,40473295:180880 +k1,17987:12004069,40473295:180879 +k1,17987:12654842,40473295:180880 +k1,17987:13367218,40473295:180879 +k1,17987:14695632,40473295:180879 +k1,17987:18016342,40473295:180880 +k1,17987:18813259,40473295:180879 +k1,17987:20013224,40473295:180880 +k1,17987:21964230,40473295:180879 +k1,17987:23429615,40473295:180879 +k1,17987:24629580,40473295:180880 +k1,17987:26186060,40473295:180879 +k1,17987:30297789,40473295:180880 +k1,17987:31426319,40473295:180879 +k1,17988:32583029,40473295:0 +) +(1,17988:6630773,41338375:25952256,513147,134348 +k1,17987:8885539,41338375:208077 +k1,17987:9551713,41338375:208077 +k1,17987:11027256,41338375:208077 +k1,17987:11591193,41338375:208077 +k1,17987:14749045,41338375:208077 +k1,17987:19621975,41338375:208077 +k1,17987:20361548,41338375:208076 +k1,17987:21588710,41338375:208077 +k1,17987:25253811,41338375:208077 +k1,17987:26121180,41338375:208077 +k1,17987:28909409,41338375:208077 +k1,17987:32119689,41338375:208077 +k1,17988:32583029,41338375:0 +) +(1,17988:6630773,42203455:25952256,513147,134348 +(1,17987:6630773,42203455:0,452978,122846 +r1,17990:8044174,42203455:1413401,575824,122846 +k1,17987:6630773,42203455:-1413401 +) +(1,17987:6630773,42203455:1413401,452978,122846 +k1,17987:6630773,42203455:3277 +h1,17987:8040897,42203455:0,411205,112570 +) +k1,17987:8202535,42203455:158361 +k1,17987:10320423,42203455:158362 +k1,17987:13180833,42203455:158361 +k1,17987:14358279,42203455:158361 +k1,17987:15906004,42203455:158362 +k1,17987:16680403,42203455:158361 +k1,17987:17995474,42203455:158361 +k1,17987:18836720,42203455:158361 +k1,17987:20645279,42203455:158362 +k1,17987:22193003,42203455:158361 +k1,17987:24557961,42203455:158361 +k1,17987:25907768,42203455:158362 +k1,17987:29903917,42203455:158361 +k1,17987:32583029,42203455:0 +) +(1,17988:6630773,43068535:25952256,513147,134348 +k1,17987:7588809,43068535:271874 +k1,17987:10886479,43068535:271873 +k1,17987:12349798,43068535:271874 +k1,17987:16406375,43068535:271873 +k1,17987:17750418,43068535:271874 +k1,17987:19088563,43068535:271874 +k1,17987:20325781,43068535:271873 +k1,17987:20953515,43068535:271874 +k1,17987:24322620,43068535:271874 +k1,17987:25253785,43068535:271873 +k1,17987:26544744,43068535:271874 +k1,17987:28093914,43068535:271873 +k1,17987:29633254,43068535:271874 +k1,17987:32583029,43068535:0 +) +(1,17988:6630773,43933615:25952256,513147,134348 +k1,17987:9279023,43933615:184752 +k1,17987:10929160,43933615:184752 +k1,17987:12503275,43933615:184752 +k1,17987:17855541,43933615:184752 +k1,17987:19231738,43933615:184752 +k1,17987:22513720,43933615:184751 +k1,17987:23357764,43933615:184752 +k1,17987:24561601,43933615:184752 +k1,17987:26023650,43933615:184752 +k1,17987:27475868,43933615:184752 +k1,17987:30236840,43933615:184752 +k1,17988:32583029,43933615:0 +) +(1,17988:6630773,44798695:25952256,513147,134348 +k1,17987:8436290,44798695:207749 +k1,17987:11530245,44798695:207749 +k1,17987:12424156,44798695:207749 +k1,17987:15581680,44798695:207749 +k1,17987:18079257,44798695:207749 +k1,17987:18969891,44798695:207749 +k1,17987:21156173,44798695:207749 +k1,17987:22716585,44798695:207749 +k1,17987:24586982,44798695:207749 +k1,17987:25407493,44798695:207749 +k1,17987:26634327,44798695:207749 +k1,17987:28267484,44798695:207749 +k1,17987:29134525,44798695:207749 +k1,17987:31914562,44798695:207749 +k1,17987:32583029,44798695:0 +) +(1,17988:6630773,45663775:25952256,513147,134348 +g1,17987:9893155,45663775 +g1,17987:11111469,45663775 +g1,17987:12761665,45663775 +g1,17987:14203457,45663775 +g1,17987:16100724,45663775 +g1,17987:18333535,45663775 +g1,17987:18888624,45663775 +g1,17987:21342947,45663775 +g1,17987:22193604,45663775 +g1,17987:22748693,45663775 +k1,17988:32583029,45663775:8798868 +g1,17988:32583029,45663775 +) +] +(1,17990:32583029,45706769:0,0,0 +g1,17990:32583029,45706769 +) +) +] +(1,17990:6630773,47279633:25952256,0,0 +h1,17990:6630773,47279633:25952256,0,0 +) +] +(1,17990:4262630,4025873:0,0,0 +[1,17990:-473656,4025873:0,0,0 +(1,17990:-473656,-710413:0,0,0 +(1,17990:-473656,-710413:0,0,0 +g1,17990:-473656,-710413 +) +g1,17990:-473656,-710413 ) ] ) ] !25544 -}291 -Input:2974:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2975:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2976:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}292 +Input:2978:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2979:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2980:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{292 -[1,18028:4262630,47279633:28320399,43253760,0 -(1,18028:4262630,4025873:0,0,0 -[1,18028:-473656,4025873:0,0,0 -(1,18028:-473656,-710413:0,0,0 -(1,18028:-473656,-644877:0,0,0 -k1,18028:-473656,-644877:-65536 +{293 +[1,18026:4262630,47279633:28320399,43253760,0 +(1,18026:4262630,4025873:0,0,0 +[1,18026:-473656,4025873:0,0,0 +(1,18026:-473656,-710413:0,0,0 +(1,18026:-473656,-644877:0,0,0 +k1,18026:-473656,-644877:-65536 ) -(1,18028:-473656,4736287:0,0,0 -k1,18028:-473656,4736287:5209943 +(1,18026:-473656,4736287:0,0,0 +k1,18026:-473656,4736287:5209943 ) -g1,18028:-473656,-710413 +g1,18026:-473656,-710413 ) ] ) -[1,18028:6630773,47279633:25952256,43253760,0 -[1,18028:6630773,4812305:25952256,786432,0 -(1,18028:6630773,4812305:25952256,513147,126483 -(1,18028:6630773,4812305:25952256,513147,126483 -g1,18028:3078558,4812305 -[1,18028:3078558,4812305:0,0,0 -(1,18028:3078558,2439708:0,1703936,0 -k1,18028:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18028:2537886,2439708:1179648,16384,0 +[1,18026:6630773,47279633:25952256,43253760,0 +[1,18026:6630773,4812305:25952256,786432,0 +(1,18026:6630773,4812305:25952256,513147,126483 +(1,18026:6630773,4812305:25952256,513147,126483 +g1,18026:3078558,4812305 +[1,18026:3078558,4812305:0,0,0 +(1,18026:3078558,2439708:0,1703936,0 +k1,18026:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18026:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18028:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18026:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18028:3078558,4812305:0,0,0 -(1,18028:3078558,2439708:0,1703936,0 -g1,18028:29030814,2439708 -g1,18028:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18028:36151628,1915420:16384,1179648,0 +[1,18026:3078558,4812305:0,0,0 +(1,18026:3078558,2439708:0,1703936,0 +g1,18026:29030814,2439708 +g1,18026:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18026:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18028:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18026:37855564,2439708:1179648,16384,0 ) ) -k1,18028:3078556,2439708:-34777008 +k1,18026:3078556,2439708:-34777008 ) ] -[1,18028:3078558,4812305:0,0,0 -(1,18028:3078558,49800853:0,16384,2228224 -k1,18028:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18028:2537886,49800853:1179648,16384,0 +[1,18026:3078558,4812305:0,0,0 +(1,18026:3078558,49800853:0,16384,2228224 +k1,18026:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18026:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18028:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18026:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18028:3078558,4812305:0,0,0 -(1,18028:3078558,49800853:0,16384,2228224 -g1,18028:29030814,49800853 -g1,18028:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18028:36151628,51504789:16384,1179648,0 +[1,18026:3078558,4812305:0,0,0 +(1,18026:3078558,49800853:0,16384,2228224 +g1,18026:29030814,49800853 +g1,18026:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18026:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18028:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18026:37855564,49800853:1179648,16384,0 ) ) -k1,18028:3078556,49800853:-34777008 +k1,18026:3078556,49800853:-34777008 ) ] -g1,18028:6630773,4812305 -g1,18028:6630773,4812305 -g1,18028:8017514,4812305 -g1,18028:11362471,4812305 -g1,18028:12177738,4812305 -g1,18028:15187806,4812305 -k1,18028:31387652,4812305:16199846 +g1,18026:6630773,4812305 +g1,18026:6630773,4812305 +g1,18026:8017514,4812305 +g1,18026:11362471,4812305 +g1,18026:12177738,4812305 +g1,18026:15187806,4812305 +k1,18026:31387652,4812305:16199846 ) ) ] -[1,18028:6630773,45706769:25952256,40108032,0 -(1,18028:6630773,45706769:25952256,40108032,0 -(1,18028:6630773,45706769:0,0,0 -g1,18028:6630773,45706769 +[1,18026:6630773,45706769:25952256,40108032,0 +(1,18026:6630773,45706769:25952256,40108032,0 +(1,18026:6630773,45706769:0,0,0 +g1,18026:6630773,45706769 ) -[1,18028:6630773,45706769:25952256,40108032,0 -[1,18019:6630773,10702588:25952256,5103851,0 -[1,18019:6630773,10702588:25952256,5103851,0 -(1,18018:6630773,7317640:25952256,1718903,0 -h1,18001:6630773,7317640:0,0,0 -(1,18017:6630773,7317640:25952226,1718903,0 -(1,18017:6630773,7317640:0,1718903,0 -(1,18017:6630773,7317640:0,2673868,0 -(1,18017:6630773,7317640:40370404,2673868,0 -(1,18017:6630773,7317640:40370404,2673868,0 -(1,18017:6630773,7317640:40370404,2673868,0 -g1,18017:8841497,7317640 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:3932160,505283,872943 -(1,18017:8841497,5980706:3932160,505283,872943 -[1,18017:8841497,5980706:3932160,505283,872943 -(1,18017:8841497,5980706:3932160,505283,126483 -k1,18017:10050964,5980706:1209467 -h1,18017:10050964,5980706:0,0,0 -h1,18017:10050964,5980706:0,0,0 -k1,18017:11564191,5980706:0 -k1,18017:12773657,5980706:1209466 +[1,18026:6630773,45706769:25952256,40108032,0 +[1,18017:6630773,10702588:25952256,5103851,0 +[1,18017:6630773,10702588:25952256,5103851,0 +(1,18016:6630773,7317640:25952256,1718903,0 +h1,17999:6630773,7317640:0,0,0 +(1,18015:6630773,7317640:25952226,1718903,0 +(1,18015:6630773,7317640:0,1718903,0 +(1,18015:6630773,7317640:0,2673868,0 +(1,18015:6630773,7317640:40370404,2673868,0 +(1,18015:6630773,7317640:40370404,2673868,0 +(1,18015:6630773,7317640:40370404,2673868,0 +g1,18015:8841497,7317640 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:3932160,505283,872943 +(1,18015:8841497,5980706:3932160,505283,872943 +[1,18015:8841497,5980706:3932160,505283,872943 +(1,18015:8841497,5980706:3932160,505283,126483 +k1,18015:10050964,5980706:1209467 +h1,18015:10050964,5980706:0,0,0 +h1,18015:10050964,5980706:0,0,0 +k1,18015:11564191,5980706:0 +k1,18015:12773657,5980706:1209466 ) -(1,18017:8841497,6845786:3932160,505283,7863 -k1,18017:10116828,6845786:1275331 -h1,18017:10116828,6845786:0,0,0 -k1,18017:11498327,6845786:0 -k1,18017:12773657,6845786:1275330 +(1,18015:8841497,6845786:3932160,505283,7863 +k1,18015:10116828,6845786:1275331 +h1,18015:10116828,6845786:0,0,0 +k1,18015:11498327,6845786:0 +k1,18015:12773657,6845786:1275330 ) ] ) -g1,18017:12773657,5980706 +g1,18015:12773657,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:1966080,421396,7863 -(1,18017:8841497,5980706:1966080,421396,7863 -[1,18017:8841497,5980706:1966080,421396,7863 -(1,18017:8841497,5980706:1966080,421396,7863 -k1,18017:9032207,5980706:190710 -h1,18017:9032207,5980706:0,0,0 -h1,18017:9032207,5980706:0,0,0 -k1,18017:10616868,5980706:0 -k1,18017:10807577,5980706:190709 -) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:1966080,421396,7863 +(1,18015:8841497,5980706:1966080,421396,7863 +[1,18015:8841497,5980706:1966080,421396,7863 +(1,18015:8841497,5980706:1966080,421396,7863 +k1,18015:9032207,5980706:190710 +h1,18015:9032207,5980706:0,0,0 +h1,18015:9032207,5980706:0,0,0 +k1,18015:10616868,5980706:0 +k1,18015:10807577,5980706:190709 +) ] ) -g1,18017:10807577,5980706 +g1,18015:10807577,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 ) -) -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:3932160,473825,7863 -(1,18017:8841497,5980706:3932160,473825,7863 -[1,18017:8841497,5980706:3932160,473825,7863 -(1,18017:8841497,5980706:3932160,473825,7863 -k1,18017:9568291,5980706:726794 -h1,18017:9568291,5980706:0,0,0 -h1,18017:9568291,5980706:0,0,0 -k1,18017:12046863,5980706:0 -k1,18017:12773657,5980706:726794 -) -] -) -g1,18017:12773657,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:1966080,513147,872943 -(1,18017:8841497,5980706:1966080,513147,872943 -[1,18017:8841497,5980706:1966080,513147,872943 -(1,18017:8841497,5980706:1966080,513147,7863 -k1,18017:9030241,5980706:188744 -h1,18017:9030241,5980706:0,0,0 -h1,18017:9030241,5980706:0,0,0 -k1,18017:10618834,5980706:0 -k1,18017:10807577,5980706:188743 -) -(1,18017:8841497,6845786:1966080,421396,7863 -k1,18017:9180974,6845786:339477 -h1,18017:9180974,6845786:0,0,0 -k1,18017:10468101,6845786:0 -k1,18017:10807577,6845786:339476 +) +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:3932160,473825,7863 +(1,18015:8841497,5980706:3932160,473825,7863 +[1,18015:8841497,5980706:3932160,473825,7863 +(1,18015:8841497,5980706:3932160,473825,7863 +k1,18015:9568291,5980706:726794 +h1,18015:9568291,5980706:0,0,0 +h1,18015:9568291,5980706:0,0,0 +k1,18015:12046863,5980706:0 +k1,18015:12773657,5980706:726794 +) +] +) +g1,18015:12773657,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:1966080,513147,872943 +(1,18015:8841497,5980706:1966080,513147,872943 +[1,18015:8841497,5980706:1966080,513147,872943 +(1,18015:8841497,5980706:1966080,513147,7863 +k1,18015:9030241,5980706:188744 +h1,18015:9030241,5980706:0,0,0 +h1,18015:9030241,5980706:0,0,0 +k1,18015:10618834,5980706:0 +k1,18015:10807577,5980706:188743 +) +(1,18015:8841497,6845786:1966080,421396,7863 +k1,18015:9180974,6845786:339477 +h1,18015:9180974,6845786:0,0,0 +k1,18015:10468101,6845786:0 +k1,18015:10807577,6845786:339476 ) ] ) -g1,18017:10807577,5980706 +g1,18015:10807577,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 ) ) -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:3932160,416809,872943 -(1,18017:8841497,5980706:3932160,416809,872943 -[1,18017:8841497,5980706:3932160,416809,872943 -(1,18017:8841497,5980706:3932160,416809,134348 -k1,18017:9312045,5980706:470548 -h1,18017:9312045,5980706:0,0,0 -h1,18017:9312045,5980706:0,0,0 -k1,18017:12773657,5980706:470548 -) -(1,18017:8841497,6845786:3932160,505283,7863 -k1,18017:9750056,6845786:908559 -k1,18017:10279782,6845786:218430 -k1,18017:11865098,6845786:0 -k1,18017:12773657,6845786:908559 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:3932160,416809,872943 +(1,18015:8841497,5980706:3932160,416809,872943 +[1,18015:8841497,5980706:3932160,416809,872943 +(1,18015:8841497,5980706:3932160,416809,134348 +k1,18015:9312045,5980706:470548 +h1,18015:9312045,5980706:0,0,0 +h1,18015:9312045,5980706:0,0,0 +k1,18015:12773657,5980706:470548 +) +(1,18015:8841497,6845786:3932160,505283,7863 +k1,18015:9750056,6845786:908559 +k1,18015:10279782,6845786:218430 +k1,18015:11865098,6845786:0 +k1,18015:12773657,6845786:908559 ) ] ) -g1,18017:12773657,5980706 +g1,18015:12773657,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:1966080,513147,872943 -(1,18017:8841497,5980706:1966080,513147,872943 -[1,18017:8841497,5980706:1966080,513147,872943 -(1,18017:8841497,5980706:1966080,513147,7863 -k1,18017:9030241,5980706:188744 -h1,18017:9030241,5980706:0,0,0 -h1,18017:9030241,5980706:0,0,0 -k1,18017:10618834,5980706:0 -k1,18017:10807577,5980706:188743 -) -(1,18017:8841497,6845786:1966080,505283,7863 -k1,18017:8973552,6845786:132055 -h1,18017:8973552,6845786:0,0,0 -k1,18017:10675522,6845786:0 -k1,18017:10807577,6845786:132055 -) -] -) -g1,18017:10807577,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:3932160,505283,999428 -(1,18017:8841497,5980706:3932160,505283,999428 -[1,18017:8841497,5980706:3932160,505283,999428 -(1,18017:8841497,5980706:3932160,505283,126483 -k1,18017:10050964,5980706:1209467 -h1,18017:10050964,5980706:0,0,0 -h1,18017:10050964,5980706:0,0,0 -k1,18017:11564191,5980706:0 -k1,18017:12773657,5980706:1209466 -) -(1,18017:8841497,6845786:3932160,505283,134348 -k1,18017:9894988,6845786:1053491 -h1,18017:9894988,6845786:0,0,0 -k1,18017:11720166,6845786:0 -k1,18017:12773657,6845786:1053491 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:1966080,513147,872943 +(1,18015:8841497,5980706:1966080,513147,872943 +[1,18015:8841497,5980706:1966080,513147,872943 +(1,18015:8841497,5980706:1966080,513147,7863 +k1,18015:9030241,5980706:188744 +h1,18015:9030241,5980706:0,0,0 +h1,18015:9030241,5980706:0,0,0 +k1,18015:10618834,5980706:0 +k1,18015:10807577,5980706:188743 +) +(1,18015:8841497,6845786:1966080,505283,7863 +k1,18015:8973552,6845786:132055 +h1,18015:8973552,6845786:0,0,0 +k1,18015:10675522,6845786:0 +k1,18015:10807577,6845786:132055 +) +] +) +g1,18015:10807577,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:3932160,505283,999428 +(1,18015:8841497,5980706:3932160,505283,999428 +[1,18015:8841497,5980706:3932160,505283,999428 +(1,18015:8841497,5980706:3932160,505283,126483 +k1,18015:10050964,5980706:1209467 +h1,18015:10050964,5980706:0,0,0 +h1,18015:10050964,5980706:0,0,0 +k1,18015:11564191,5980706:0 +k1,18015:12773657,5980706:1209466 +) +(1,18015:8841497,6845786:3932160,505283,134348 +k1,18015:9894988,6845786:1053491 +h1,18015:9894988,6845786:0,0,0 +k1,18015:11720166,6845786:0 +k1,18015:12773657,6845786:1053491 ) ] ) -g1,18017:12773657,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:361759,355205,7863 -(1,18017:8841497,5980706:361759,355205,7863 -) -g1,18017:9203256,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:412877,505283,7863 -(1,18017:8841497,5980706:412877,505283,7863 -) -g1,18017:9254374,5980706 -) +g1,18015:12773657,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:361759,355205,7863 +(1,18015:8841497,5980706:361759,355205,7863 +) +g1,18015:9203256,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:412877,505283,7863 +(1,18015:8841497,5980706:412877,505283,7863 +) +g1,18015:9254374,5980706 +) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:335544,355205,7863 -(1,18017:8841497,5980706:335544,355205,7863 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:335544,355205,7863 +(1,18015:8841497,5980706:335544,355205,7863 ) -g1,18017:9177041,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:412877,505283,7863 -(1,18017:8841497,5980706:412877,505283,7863 -) -g1,18017:9254374,5980706 +g1,18015:9177041,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:412877,505283,7863 +(1,18015:8841497,5980706:412877,505283,7863 +) +g1,18015:9254374,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 ) ) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:365036,355205,7863 -(1,18017:8841497,5980706:365036,355205,7863 -) -g1,18017:9206533,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:0,0,0 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -(1,18017:8841497,5980706:0,0,0 -(1,18017:8841497,5980706:240517,513147,0 -(1,18017:8841497,5980706:240517,513147,0 -) -g1,18017:9082014,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -) -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -g1,18017:8841497,5980706 -) -g1,18017:8841497,5980706 -) -) -) -) -k1,18017:6630773,7317640:-40370404 -) -) -g1,18017:32582999,7317640 -) -k1,18018:32583029,7317640:30 -g1,18018:32583029,7317640 -) -(1,18018:6630773,8838080:25952256,505283,134348 -h1,18018:6630773,8838080:0,0,0 -g1,18018:8923222,8838080 -k1,18018:32583029,8838080:22689874 -g1,18018:32583029,8838080 -) -(1,18018:6630773,9703160:25952256,513147,134348 -h1,18018:6606525,9703160:0,0,0 -k1,18018:9533199,9703160:216760 -k1,18018:12366157,9703160:216761 -k1,18018:13242209,9703160:216760 -k1,18018:14848332,9703160:216760 -k1,18018:20232606,9703160:216760 -k1,18018:21065405,9703160:216761 -k1,18018:21638025,9703160:216760 -k1,18018:23880503,9703160:216760 -k1,18018:25655054,9703160:216760 -k1,18018:28522746,9703160:216761 -k1,18018:29758591,9703160:216760 -k1,18018:31970267,9703160:216760 -k1,18018:32583029,9703160:0 -) -(1,18018:6630773,10568240:25952256,505283,134348 -g1,18018:8689259,10568240 -g1,18018:12026352,10568240 -g1,18018:14860784,10568240 -g1,18018:17901654,10568240 -g1,18018:19292328,10568240 -g1,18018:21880344,10568240 -g1,18018:25254137,10568240 -g1,18018:26806029,10568240 -k1,18018:32583029,10568240:4061923 -g1,18018:32583029,10568240 -) -] -] -(1,17992:6630773,12668668:25952256,513147,134348 -h1,17991:6630773,12668668:983040,0,0 -k1,17991:8674076,12668668:231233 -k1,17991:12570082,12668668:231233 -k1,17991:15157334,12668668:231233 -k1,17991:16545277,12668668:231233 -k1,17991:18956893,12668668:231233 -k1,17991:20494259,12668668:231233 -k1,17991:22405835,12668668:231233 -k1,17991:23253106,12668668:231233 -k1,17991:25327211,12668668:231233 -k1,17991:26217736,12668668:231233 -k1,17991:27468054,12668668:231233 -k1,17991:30649062,12668668:231233 -k1,17992:32583029,12668668:0 -) -(1,17992:6630773,13533748:25952256,513147,134348 -k1,17991:8946909,13533748:161312 -k1,17991:9767513,13533748:161312 -k1,17991:10947910,13533748:161312 -k1,17991:12560189,13533748:161312 -k1,17991:14376285,13533748:161312 -k1,17991:15069094,13533748:161312 -k1,17991:17359671,13533748:161312 -k1,17991:17876844,13533748:161313 -k1,17991:21828103,13533748:161312 -k1,17991:23547206,13533748:161312 -k1,17991:25169316,13533748:161312 -k1,17991:27216099,13533748:161312 -k1,17991:29079381,13533748:161312 -k1,17991:31128785,13533748:161312 -k1,17992:32583029,13533748:0 -) -(1,17992:6630773,14398828:25952256,513147,134348 -k1,17991:8728104,14398828:183680 -k1,17991:9673311,14398828:183679 -k1,17991:12619334,14398828:183680 -k1,17991:15752788,14398828:183679 -k1,17991:18226296,14398828:183680 -k1,17991:19401535,14398828:183679 -k1,17991:20941810,14398828:183680 -k1,17991:22600704,14398828:183679 -k1,17991:24342175,14398828:183680 -k1,17991:27227903,14398828:183679 -k1,17991:29633254,14398828:183680 -k1,17991:32583029,14398828:0 -) -(1,17992:6630773,15263908:25952256,513147,134348 -k1,17991:9158900,15263908:238299 -k1,17991:12874539,15263908:238299 -k1,17991:14680459,15263908:238299 -k1,17991:15937842,15263908:238298 -k1,17991:17829614,15263908:238299 -k1,17991:19630947,15263908:238299 -k1,17991:21065933,15263908:238299 -k1,17991:22452423,15263908:238299 -k1,17991:24248513,15263908:238299 -k1,17991:26452236,15263908:238298 -k1,17991:27222032,15263908:238299 -k1,17991:28479416,15263908:238299 -k1,17991:31391584,15263908:238299 -k1,17991:32583029,15263908:0 -) -(1,17992:6630773,16128988:25952256,513147,134348 -k1,17991:7818122,16128988:168264 -k1,17991:9292518,16128988:168263 -k1,17991:10617492,16128988:168264 -k1,17991:12751181,16128988:168264 -k1,17991:13938529,16128988:168263 -k1,17991:17638528,16128988:168264 -k1,17991:20862080,16128988:168264 -k1,17991:23320171,16128988:168263 -k1,17991:24104473,16128988:168264 -k1,17991:26164761,16128988:168264 -k1,17991:28221116,16128988:168263 -k1,17991:30839116,16128988:168264 -k1,17991:32583029,16128988:0 -) -(1,17992:6630773,16994068:25952256,513147,134348 -k1,17991:7430614,16994068:183803 -k1,17991:8633503,16994068:183804 -k1,17991:10705398,16994068:183803 -k1,17991:12757632,16994068:183803 -k1,17991:14580491,16994068:183804 -k1,17991:15230255,16994068:183803 -k1,17991:16922697,16994068:183803 -k1,17991:19993361,16994068:183803 -k1,17991:22719962,16994068:183804 -k1,17991:25866648,16994068:183803 -k1,17991:29355432,16994068:183803 -k1,17991:31427328,16994068:183804 -k1,17991:32227169,16994068:183803 -k1,17991:32583029,16994068:0 -) -(1,17992:6630773,17859148:25952256,505283,134348 -k1,17991:8871668,17859148:215177 -k1,17991:10823548,17859148:215176 -k1,17991:12057810,17859148:215177 -k1,17991:13926459,17859148:215176 -k1,17991:15530999,17859148:215177 -k1,17991:16937620,17859148:215176 -k1,17991:18171882,17859148:215177 -k1,17991:20040531,17859148:215176 -k1,17991:23393572,17859148:215177 -k1,17991:24260176,17859148:215176 -k1,17991:27823587,17859148:215177 -k1,17991:29242004,17859148:215176 -k1,17991:29988678,17859148:215177 -k1,17991:31270125,17859148:215176 -k1,17991:31841162,17859148:215177 -k1,17992:32583029,17859148:0 -) -(1,17992:6630773,18724228:25952256,505283,134348 -k1,17991:10261349,18724228:161755 -k1,17991:10892996,18724228:161754 -k1,17991:11586248,18724228:161755 -k1,17991:14377963,18724228:161755 -k1,17991:15191145,18724228:161754 -k1,17991:16995232,18724228:161755 -k1,17991:19513005,18724228:161754 -k1,17991:21068711,18724228:161755 -k1,17991:25237337,18724228:161755 -k1,17991:27460854,18724228:161754 -k1,17991:30453764,18724228:161755 -k1,17991:32583029,18724228:0 -) -(1,17992:6630773,19589308:25952256,505283,134348 -g1,17991:8197739,19589308 -g1,17991:10554413,19589308 -g1,17991:12656152,19589308 -g1,17991:14046826,19589308 -g1,17991:16770502,19589308 -k1,17992:32583029,19589308:14412678 -g1,17992:32583029,19589308 -) -(1,17997:6630773,20454388:25952256,513147,134348 -h1,17995:6630773,20454388:983040,0,0 -k1,17995:8334728,20454388:233327 -k1,17995:10809420,20454388:233361 -k1,17995:14693792,20454388:233361 -k1,17995:15736523,20454388:233361 -k1,17995:18325904,20454388:233362 -k1,17995:19090762,20454388:233361 -k1,17995:20608629,20454388:233361 -k1,17995:21501282,20454388:233361 -k1,17995:22753728,20454388:233361 -k1,17995:25432238,20454388:233362 -k1,17995:26324891,20454388:233361 -k1,17995:29941220,20454388:233361 -k1,17995:31193666,20454388:233361 -k1,17995:32583029,20454388:0 -) -(1,17997:6630773,21319468:25952256,505283,134348 -k1,17995:8118814,21319468:220575 -k1,17995:8695250,21319468:220576 -k1,17995:11865600,21319468:220575 -k1,17995:16751028,21319468:220575 -k1,17995:18256110,21319468:220576 -k1,17995:19580967,21319468:220575 -k1,17995:20549309,21319468:220576 -k1,17995:23120005,21319468:220575 -k1,17995:24149950,21319468:220575 -k1,17995:26203568,21319468:220576 -k1,17995:27107028,21319468:220575 -k1,17995:29522404,21319468:220575 -k1,17995:30552350,21319468:220576 -k1,17995:31128785,21319468:220575 -k1,17997:32583029,21319468:0 -) -(1,17997:6630773,22184548:25952256,513147,126483 -k1,17995:8703021,22184548:344064 -k1,17995:11282518,22184548:344064 -k1,17995:12823269,22184548:344064 -k1,17995:18334847,22184548:344064 -k1,17995:21050659,22184548:344064 -k1,17995:22046151,22184548:344064 -k1,17995:23409299,22184548:344063 -k1,17995:25142726,22184548:344064 -k1,17995:26138218,22184548:344064 -k1,17995:28839612,22184548:344064 -k1,17995:30386917,22184548:344064 -k1,17995:31835263,22184548:344064 -k1,17995:32583029,22184548:0 -) -(1,17997:6630773,23049628:25952256,513147,134348 -k1,17995:9467726,23049628:309885 -k1,17995:10463772,23049628:309884 -k1,17995:11129517,23049628:309885 -k1,17995:12828764,23049628:309884 -k1,17995:14488691,23049628:309885 -k1,17995:17243723,23049628:309884 -k1,17995:19922735,23049628:309885 -k1,17995:21500085,23049628:309884 -k1,17995:23978556,23049628:309885 -k1,17995:25485127,23049628:309884 -k1,17995:28411209,23049628:309885 -k1,17995:29337131,23049628:309884 -k1,17995:31632102,23049628:309885 -h1,17995:32602690,23049628:0,0,0 -k1,17995:32583029,23049628:0 -) -(1,17997:6630773,23914708:25952256,513147,134348 -k1,17995:10262324,23914708:259724 -k1,17995:10877909,23914708:259725 -k1,17995:13010652,23914708:259724 -k1,17995:17770733,23914708:259724 -k1,17995:19588249,23914708:259725 -k1,17995:20464011,23914708:259724 -k1,17995:21079595,23914708:259724 -k1,17995:22790286,23914708:259724 -k1,17995:24246698,23914708:259725 -k1,17995:25895785,23914708:259724 -k1,17995:28916541,23914708:259724 -k1,17995:29937794,23914708:259725 -k1,17995:31216603,23914708:259724 -k1,17995:32583029,23914708:0 -) -(1,17997:6630773,24779788:25952256,513147,134348 -k1,17995:7408924,24779788:246654 -k1,17995:11637545,24779788:246654 -k1,17995:12500236,24779788:246653 -k1,17995:14741806,24779788:246654 -k1,17995:16255926,24779788:246654 -k1,17995:20340368,24779788:246654 -k1,17995:21238450,24779788:246654 -k1,17995:23071075,24779788:246654 -k1,17995:23673588,24779788:246653 -k1,17995:26870017,24779788:246654 -k1,17995:31955194,24779788:246654 -k1,17995:32583029,24779788:0 -) -(1,17997:6630773,25644868:25952256,513147,134348 -k1,17995:9640186,25644868:232653 -k1,17995:11064284,25644868:232653 -k1,17995:12085334,25644868:232652 -k1,17995:17144058,25644868:232653 -k1,17995:20326486,25644868:232653 -k1,17995:23164850,25644868:232653 -k1,17995:24389063,25644868:232653 -k1,17995:26489491,25644868:232652 -k1,17995:29937340,25644868:232653 -k1,17995:31563944,25644868:232653 -k1,17995:32583029,25644868:0 -) -(1,17997:6630773,26509948:25952256,513147,126483 -k1,17995:11908983,26509948:201791 -k1,17995:14745977,26509948:201791 -k1,17995:16958413,26509948:201791 -k1,17995:17776242,26509948:201791 -k1,17995:18997118,26509948:201791 -k1,17995:20588273,26509948:201792 -k1,17995:21981509,26509948:201791 -k1,17995:24193945,26509948:201791 -k1,17995:25055028,26509948:201791 -k1,17995:26275904,26509948:201791 -k1,17995:29321958,26509948:201791 -k1,17995:32583029,26509948:0 -) -(1,17997:6630773,27375028:25952256,505283,126483 -k1,17995:7623441,27375028:231140 -k1,17995:9851464,27375028:231141 -k1,17995:11279291,27375028:231140 -k1,17995:13521077,27375028:231141 -k1,17995:14368255,27375028:231140 -k1,17995:15618481,27375028:231141 -k1,17995:17238984,27375028:231140 -k1,17995:18461685,27375028:231141 -k1,17995:22621708,27375028:231140 -k1,17995:23614377,27375028:231141 -k1,17995:26678638,27375028:231140 -k1,17995:29844481,27375028:231141 -k1,17995:31773659,27375028:231140 -k1,17995:32583029,27375028:0 -) -(1,17997:6630773,28240108:25952256,513147,126483 -k1,17995:10355797,28240108:216882 -k1,17995:11564238,28240108:216881 -k1,17995:14253138,28240108:216882 -k1,17995:16358112,28240108:216882 -k1,17995:18290726,28240108:216881 -k1,17995:19600093,28240108:216882 -k1,17995:20484130,28240108:216881 -(1,17995:20484130,28240108:0,452978,115847 -r1,18028:26118073,28240108:5633943,568825,115847 -k1,17995:20484130,28240108:-5633943 -) -(1,17995:20484130,28240108:5633943,452978,115847 -k1,17995:20484130,28240108:3277 -h1,17995:26114796,28240108:0,411205,112570 -) -k1,17995:26508625,28240108:216882 -k1,17995:28610978,28240108:216882 -k1,17995:30855543,28240108:216881 -k1,17995:31860823,28240108:216882 -k1,17997:32583029,28240108:0 -) -(1,17997:6630773,29105188:25952256,505283,134348 -k1,17995:8011497,29105188:288239 -k1,17995:8951164,29105188:288239 -k1,17995:10027801,29105188:288239 -k1,17995:12474796,29105188:288239 -k1,17995:16427808,29105188:288239 -k1,17996:16427808,29105188:22938 -k1,17996:20256959,29105188:288240 -k1,17996:22975273,29105188:288239 -k1,17996:24282597,29105188:288239 -k1,17996:27109701,29105188:288239 -k1,17996:28911166,29105188:288239 -k1,17996:29850833,29105188:288239 -k1,17996:32583029,29105188:0 -) -(1,17997:6630773,29970268:25952256,513147,134348 -g1,17996:9779777,29970268 -g1,17996:12268834,29970268 -g1,17996:14035684,29970268 -g1,17996:15253998,29970268 -g1,17996:18038622,29970268 -k1,17997:32583029,29970268:13102615 -g1,17997:32583029,29970268 -) -(1,18022:6630773,30835348:25952256,513147,134348 -h1,18021:6630773,30835348:983040,0,0 -k1,18021:10607405,30835348:203724 -(1,18021:10607405,30835348:0,452978,115847 -r1,18028:12372518,30835348:1765113,568825,115847 -k1,18021:10607405,30835348:-1765113 -) -(1,18021:10607405,30835348:1765113,452978,115847 -k1,18021:10607405,30835348:3277 -h1,18021:12369241,30835348:0,411205,112570 -) -k1,18021:12576242,30835348:203724 -k1,18021:13311464,30835348:203725 -k1,18021:15028414,30835348:203724 -k1,18021:15883566,30835348:203724 -k1,18021:18048127,30835348:203724 -k1,18021:21389715,30835348:203724 -k1,18021:22244867,30835348:203724 -k1,18021:25796826,30835348:203725 -k1,18021:27197237,30835348:203724 -k1,18021:29666541,30835348:203724 -k1,18021:30817916,30835348:203724 -(1,18021:30817916,30835348:0,452978,115847 -r1,18028:32583029,30835348:1765113,568825,115847 -k1,18021:30817916,30835348:-1765113 -) -(1,18021:30817916,30835348:1765113,452978,115847 -k1,18021:30817916,30835348:3277 -h1,18021:32579752,30835348:0,411205,112570 -) -k1,18021:32583029,30835348:0 -) -(1,18022:6630773,31700428:25952256,513147,134348 -k1,18021:7351232,31700428:188962 -k1,18021:8487845,31700428:188962 -k1,18021:9695892,31700428:188962 -k1,18021:12692417,31700428:188963 -k1,18021:13532807,31700428:188962 -k1,18021:15074432,31700428:188962 -k1,18021:16926042,31700428:188962 -k1,18021:17727766,31700428:188962 -k1,18021:18935813,31700428:188962 -k1,18021:20645210,31700428:188962 -k1,18021:23717101,31700428:188962 -k1,18021:25615243,31700428:188963 -k1,18021:26420243,31700428:188962 -k1,18021:27628290,31700428:188962 -k1,18021:30433449,31700428:188962 -k1,18021:32583029,31700428:0 -) -(1,18022:6630773,32565508:25952256,505283,134348 -k1,18021:9640754,32565508:202419 -k1,18021:11911489,32565508:202419 -k1,18021:12729945,32565508:202418 -k1,18021:13951449,32565508:202419 -k1,18021:15534712,32565508:202419 -k1,18021:17126494,32565508:202419 -k1,18021:17980341,32565508:202419 -k1,18021:21357323,32565508:202418 -k1,18021:23053308,32565508:202419 -k1,18021:23941889,32565508:202419 -k1,18021:24683014,32565508:202419 -k1,18021:25420207,32565508:202419 -k1,18021:27827256,32565508:202418 -k1,18021:30072432,32565508:202419 -k1,18021:31386342,32565508:202419 -k1,18021:32583029,32565508:0 -) -(1,18022:6630773,33430588:25952256,505283,126483 -k1,18021:9402240,33430588:248331 -k1,18021:10754853,33430588:248331 -k1,18021:12456773,33430588:248331 -k1,18021:13724189,33430588:248331 -k1,18021:16557915,33430588:248331 -k1,18021:18369280,33430588:248331 -k1,18021:19689779,33430588:248330 -k1,18021:20554148,33430588:248331 -k1,18021:22404179,33430588:248331 -k1,18021:24349892,33430588:248331 -k1,18021:25664494,33430588:248331 -k1,18021:27798296,33430588:248331 -k1,18021:31221191,33430588:248331 -k1,18021:32583029,33430588:0 -) -(1,18022:6630773,34295668:25952256,513147,134348 -k1,18021:7878340,34295668:256007 -k1,18021:10719743,34295668:256008 -k1,18021:11800848,34295668:256007 -k1,18021:14935196,34295668:256007 -k1,18021:16295485,34295668:256007 -k1,18021:17748836,34295668:256008 -k1,18021:20270423,34295668:256007 -k1,18021:23664294,34295668:256007 -k1,18021:24867952,34295668:256007 -k1,18021:28350953,34295668:256008 -k1,18021:31955194,34295668:256007 -k1,18021:32583029,34295668:0 -) -(1,18022:6630773,35160748:25952256,513147,134348 -k1,18021:9452653,35160748:155875 -k1,18021:10627612,35160748:155874 -k1,18021:13049067,35160748:155875 -k1,18021:16342806,35160748:155875 -k1,18021:17157972,35160748:155874 -k1,18021:18332932,35160748:155875 -k1,18021:19878170,35160748:155875 -k1,18021:22812772,35160748:155875 -k1,18021:23730174,35160748:155874 -k1,18021:24905134,35160748:155875 -k1,18021:27584145,35160748:155875 -k1,18021:28844301,35160748:155874 -k1,18021:29747942,35160748:155875 -k1,18021:32583029,35160748:0 -) -(1,18022:6630773,36025828:25952256,513147,134348 -k1,18021:7561721,36025828:169420 -k1,18021:9111984,36025828:169419 -k1,18021:10777591,36025828:169420 -k1,18021:11559772,36025828:169419 -k1,18021:12932433,36025828:169420 -k1,18021:14555442,36025828:169420 -k1,18021:16563146,36025828:169419 -k1,18021:18300058,36025828:173878 -k1,18021:19860807,36025828:169420 -k1,18021:22378382,36025828:169420 -k1,18021:25685665,36025828:169419 -k1,18021:26959367,36025828:169420 -k1,18021:27876552,36025828:169419 -k1,18021:30881059,36025828:169420 -k1,18021:32583029,36025828:0 -) -(1,18022:6630773,36890908:25952256,513147,134348 -g1,18021:7442764,36890908 -g1,18021:8661078,36890908 -g1,18021:10428584,36890908 -g1,18021:12271456,36890908 -k1,18022:32583029,36890908:18594530 -g1,18022:32583029,36890908 -) -v1,18024:6630773,37755988:0,393216,0 -(1,18025:6630773,45119274:25952256,7756502,0 -g1,18025:6630773,45119274 -g1,18025:6237557,45119274 -r1,18028:6368629,45119274:131072,7756502,0 -g1,18025:6567858,45119274 -g1,18025:6764466,45119274 -[1,18025:6764466,45119274:25818563,7756502,0 -(1,18025:6764466,38064286:25818563,701514,196608 -(1,18024:6764466,38064286:0,701514,196608 -r1,18028:7761522,38064286:997056,898122,196608 -k1,18024:6764466,38064286:-997056 -) -(1,18024:6764466,38064286:997056,701514,196608 -) -k1,18024:7928518,38064286:166996 -k1,18024:8256198,38064286:327680 -k1,18024:11301536,38064286:166997 -k1,18024:13597797,38064286:166996 -k1,18024:15775439,38064286:166997 -k1,18024:16298295,38064286:166996 -k1,18024:19272854,38064286:166997 -k1,18024:20091278,38064286:166996 -k1,18024:21277360,38064286:166997 -k1,18024:23097829,38064286:166996 -k1,18024:26439390,38064286:166997 -k1,18024:27890892,38064286:166996 -k1,18024:29438077,38064286:166997 -k1,18024:31896867,38064286:166996 -k1,18024:32583029,38064286:0 -) -(1,18025:6764466,38929366:25818563,513147,134348 -k1,18024:8861234,38929366:214574 -k1,18024:12010510,38929366:214574 -k1,18024:13244169,38929366:214574 -k1,18024:15469388,38929366:214574 -k1,18024:18269357,38929366:214574 -k1,18024:19135359,38929366:214574 -k1,18024:21046660,38929366:214574 -k1,18024:24435798,38929366:214574 -k1,18024:25263134,38929366:214574 -k1,18024:26496793,38929366:214574 -k1,18024:28280048,38929366:220221 -k1,18024:29712281,38929366:214574 -k1,18024:31591469,38929366:214574 -k1,18024:32583029,38929366:0 -) -(1,18025:6764466,39794446:25818563,513147,126483 -k1,18024:7582792,39794446:202288 -k1,18024:9386780,39794446:202288 -k1,18024:11286449,39794446:202287 -k1,18024:14251080,39794446:202288 -k1,18024:16020989,39794446:202288 -k1,18024:17967190,39794446:202288 -k1,18024:18782239,39794446:202287 -k1,18024:20678632,39794446:202288 -k1,18024:22576336,39794446:202288 -k1,18024:25632062,39794446:202288 -k1,18024:27844994,39794446:202287 -k1,18024:31274275,39794446:202288 -k1,18025:32583029,39794446:0 -) -(1,18025:6764466,40659526:25818563,513147,126483 -k1,18024:8756706,40659526:179514 -k1,18024:10821691,40659526:179514 -k1,18024:11992765,40659526:179514 -k1,18024:13238549,40659526:179513 -k1,18024:16003458,40659526:179514 -k1,18024:16944500,40659526:179514 -k1,18024:19389594,40659526:179514 -k1,18024:20220536,40659526:179514 -k1,18024:21531856,40659526:179513 -k1,18024:24729303,40659526:179514 -k1,18024:26783147,40659526:179514 -k1,18024:29804302,40659526:179514 -k1,18024:32583029,40659526:0 -) -(1,18025:6764466,41524606:25818563,513147,134348 -k1,18024:10118739,41524606:215754 -k1,18024:11143863,41524606:215754 -k1,18024:12689998,41524606:215754 -k1,18024:15078925,41524606:215753 -k1,18024:16862300,41524606:215754 -k1,18024:17433914,41524606:215754 -k1,18024:19344429,41524606:215754 -k1,18024:20946269,41524606:215754 -k1,18024:21821315,41524606:215754 -k1,18024:23426432,41524606:215754 -k1,18024:26632593,41524606:215753 -k1,18024:27839907,41524606:215754 -k1,18024:30021086,41524606:215754 -k1,18024:30888268,41524606:215754 -k1,18024:32583029,41524606:0 -) -(1,18025:6764466,42389686:25818563,513147,134348 -k1,18024:9964121,42389686:219078 -k1,18024:11202283,42389686:219077 -k1,18024:12513846,42389686:219078 -k1,18024:13392215,42389686:219077 -k1,18024:13967153,42389686:219078 -k1,18024:17175982,42389686:219077 -k1,18024:20157403,42389686:219078 -k1,18024:21944101,42389686:219077 -k1,18024:23182264,42389686:219078 -k1,18024:25666921,42389686:219077 -k1,18024:26820542,42389686:219078 -k1,18024:27801147,42389686:219077 -k1,18024:29039310,42389686:219078 -k1,18024:31955194,42389686:219077 -k1,18024:32583029,42389686:0 -) -(1,18025:6764466,43254766:25818563,513147,134348 -k1,18024:8224360,43254766:256653 -k1,18024:9848093,43254766:256652 -k1,18024:11123831,43254766:256653 -k1,18024:12761327,43254766:256652 -k1,18024:14118985,43254766:256653 -k1,18024:15027065,43254766:256652 -k1,18024:17928751,43254766:256653 -k1,18024:20450983,43254766:256652 -k1,18024:23845500,43254766:256653 -k1,18024:24714914,43254766:256652 -k1,18024:25990652,43254766:256653 -k1,18024:27817093,43254766:263407 -k1,18024:29291404,43254766:256652 -k1,18024:31386342,43254766:256653 -k1,18024:32583029,43254766:0 -) -(1,18025:6764466,44119846:25818563,505283,126483 -k1,18024:10213626,44119846:222167 -k1,18024:13277434,44119846:222167 -k1,18024:16278327,44119846:222166 -k1,18024:17262022,44119846:222167 -k1,18024:20337627,44119846:222167 -k1,18024:21551354,44119846:222167 -k1,18024:23535129,44119846:222167 -k1,18024:24373333,44119846:222166 -k1,18024:26104139,44119846:222167 -k1,18024:31326048,44119846:222167 -k1,18024:32583029,44119846:0 -) -(1,18025:6764466,44984926:25818563,513147,134348 -g1,18024:9242382,44984926 -h1,18024:10785100,44984926:0,0,0 -g1,18024:10984329,44984926 -g1,18024:11992928,44984926 -g1,18024:13690310,44984926 -h1,18024:14885687,44984926:0,0,0 -g1,18024:15084916,44984926 -g1,18024:16231796,44984926 -k1,18025:32583029,44984926:13894289 -g1,18025:32583029,44984926 -) -] -g1,18025:32583029,45119274 -) -h1,18025:6630773,45119274:0,0,0 -] -(1,18028:32583029,45706769:0,0,0 -g1,18028:32583029,45706769 -) -) -] -(1,18028:6630773,47279633:25952256,0,0 -h1,18028:6630773,47279633:25952256,0,0 -) -] -(1,18028:4262630,4025873:0,0,0 -[1,18028:-473656,4025873:0,0,0 -(1,18028:-473656,-710413:0,0,0 -(1,18028:-473656,-710413:0,0,0 -g1,18028:-473656,-710413 -) -g1,18028:-473656,-710413 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:365036,355205,7863 +(1,18015:8841497,5980706:365036,355205,7863 +) +g1,18015:9206533,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:0,0,0 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +(1,18015:8841497,5980706:0,0,0 +(1,18015:8841497,5980706:240517,513147,0 +(1,18015:8841497,5980706:240517,513147,0 +) +g1,18015:9082014,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +) +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +g1,18015:8841497,5980706 +) +g1,18015:8841497,5980706 +) +) +) +) +k1,18015:6630773,7317640:-40370404 +) +) +g1,18015:32582999,7317640 +) +k1,18016:32583029,7317640:30 +g1,18016:32583029,7317640 +) +(1,18016:6630773,8838080:25952256,505283,134348 +h1,18016:6630773,8838080:0,0,0 +g1,18016:8923222,8838080 +k1,18016:32583029,8838080:22689874 +g1,18016:32583029,8838080 +) +(1,18016:6630773,9703160:25952256,513147,134348 +h1,18016:6606525,9703160:0,0,0 +k1,18016:9533199,9703160:216760 +k1,18016:12366157,9703160:216761 +k1,18016:13242209,9703160:216760 +k1,18016:14848332,9703160:216760 +k1,18016:20232606,9703160:216760 +k1,18016:21065405,9703160:216761 +k1,18016:21638025,9703160:216760 +k1,18016:23880503,9703160:216760 +k1,18016:25655054,9703160:216760 +k1,18016:28522746,9703160:216761 +k1,18016:29758591,9703160:216760 +k1,18016:31970267,9703160:216760 +k1,18016:32583029,9703160:0 +) +(1,18016:6630773,10568240:25952256,505283,134348 +g1,18016:8689259,10568240 +g1,18016:12026352,10568240 +g1,18016:14860784,10568240 +g1,18016:17901654,10568240 +g1,18016:19292328,10568240 +g1,18016:21880344,10568240 +g1,18016:25254137,10568240 +g1,18016:26806029,10568240 +k1,18016:32583029,10568240:4061923 +g1,18016:32583029,10568240 +) +] +] +(1,17990:6630773,12668668:25952256,513147,134348 +h1,17989:6630773,12668668:983040,0,0 +k1,17989:8674076,12668668:231233 +k1,17989:12570082,12668668:231233 +k1,17989:15157334,12668668:231233 +k1,17989:16545277,12668668:231233 +k1,17989:18956893,12668668:231233 +k1,17989:20494259,12668668:231233 +k1,17989:22405835,12668668:231233 +k1,17989:23253106,12668668:231233 +k1,17989:25327211,12668668:231233 +k1,17989:26217736,12668668:231233 +k1,17989:27468054,12668668:231233 +k1,17989:30649062,12668668:231233 +k1,17990:32583029,12668668:0 +) +(1,17990:6630773,13533748:25952256,513147,134348 +k1,17989:8946909,13533748:161312 +k1,17989:9767513,13533748:161312 +k1,17989:10947910,13533748:161312 +k1,17989:12560189,13533748:161312 +k1,17989:14376285,13533748:161312 +k1,17989:15069094,13533748:161312 +k1,17989:17359671,13533748:161312 +k1,17989:17876844,13533748:161313 +k1,17989:21828103,13533748:161312 +k1,17989:23547206,13533748:161312 +k1,17989:25169316,13533748:161312 +k1,17989:27216099,13533748:161312 +k1,17989:29079381,13533748:161312 +k1,17989:31128785,13533748:161312 +k1,17990:32583029,13533748:0 +) +(1,17990:6630773,14398828:25952256,513147,134348 +k1,17989:8728104,14398828:183680 +k1,17989:9673311,14398828:183679 +k1,17989:12619334,14398828:183680 +k1,17989:15752788,14398828:183679 +k1,17989:18226296,14398828:183680 +k1,17989:19401535,14398828:183679 +k1,17989:20941810,14398828:183680 +k1,17989:22600704,14398828:183679 +k1,17989:24342175,14398828:183680 +k1,17989:27227903,14398828:183679 +k1,17989:29633254,14398828:183680 +k1,17989:32583029,14398828:0 +) +(1,17990:6630773,15263908:25952256,513147,134348 +k1,17989:9158900,15263908:238299 +k1,17989:12874539,15263908:238299 +k1,17989:14680459,15263908:238299 +k1,17989:15937842,15263908:238298 +k1,17989:17829614,15263908:238299 +k1,17989:19630947,15263908:238299 +k1,17989:21065933,15263908:238299 +k1,17989:22452423,15263908:238299 +k1,17989:24248513,15263908:238299 +k1,17989:26452236,15263908:238298 +k1,17989:27222032,15263908:238299 +k1,17989:28479416,15263908:238299 +k1,17989:31391584,15263908:238299 +k1,17989:32583029,15263908:0 +) +(1,17990:6630773,16128988:25952256,513147,134348 +k1,17989:7818122,16128988:168264 +k1,17989:9292518,16128988:168263 +k1,17989:10617492,16128988:168264 +k1,17989:12751181,16128988:168264 +k1,17989:13938529,16128988:168263 +k1,17989:17638528,16128988:168264 +k1,17989:20862080,16128988:168264 +k1,17989:23320171,16128988:168263 +k1,17989:24104473,16128988:168264 +k1,17989:26164761,16128988:168264 +k1,17989:28221116,16128988:168263 +k1,17989:30839116,16128988:168264 +k1,17989:32583029,16128988:0 +) +(1,17990:6630773,16994068:25952256,513147,134348 +k1,17989:7430614,16994068:183803 +k1,17989:8633503,16994068:183804 +k1,17989:10705398,16994068:183803 +k1,17989:12757632,16994068:183803 +k1,17989:14580491,16994068:183804 +k1,17989:15230255,16994068:183803 +k1,17989:16922697,16994068:183803 +k1,17989:19993361,16994068:183803 +k1,17989:22719962,16994068:183804 +k1,17989:25866648,16994068:183803 +k1,17989:29355432,16994068:183803 +k1,17989:31427328,16994068:183804 +k1,17989:32227169,16994068:183803 +k1,17989:32583029,16994068:0 +) +(1,17990:6630773,17859148:25952256,505283,134348 +k1,17989:8871668,17859148:215177 +k1,17989:10823548,17859148:215176 +k1,17989:12057810,17859148:215177 +k1,17989:13926459,17859148:215176 +k1,17989:15530999,17859148:215177 +k1,17989:16937620,17859148:215176 +k1,17989:18171882,17859148:215177 +k1,17989:20040531,17859148:215176 +k1,17989:23393572,17859148:215177 +k1,17989:24260176,17859148:215176 +k1,17989:27823587,17859148:215177 +k1,17989:29242004,17859148:215176 +k1,17989:29988678,17859148:215177 +k1,17989:31270125,17859148:215176 +k1,17989:31841162,17859148:215177 +k1,17990:32583029,17859148:0 +) +(1,17990:6630773,18724228:25952256,505283,134348 +k1,17989:10261349,18724228:161755 +k1,17989:10892996,18724228:161754 +k1,17989:11586248,18724228:161755 +k1,17989:14377963,18724228:161755 +k1,17989:15191145,18724228:161754 +k1,17989:16995232,18724228:161755 +k1,17989:19513005,18724228:161754 +k1,17989:21068711,18724228:161755 +k1,17989:25237337,18724228:161755 +k1,17989:27460854,18724228:161754 +k1,17989:30453764,18724228:161755 +k1,17989:32583029,18724228:0 +) +(1,17990:6630773,19589308:25952256,505283,134348 +g1,17989:8197739,19589308 +g1,17989:10554413,19589308 +g1,17989:12656152,19589308 +g1,17989:14046826,19589308 +g1,17989:16770502,19589308 +k1,17990:32583029,19589308:14412678 +g1,17990:32583029,19589308 +) +(1,17995:6630773,20454388:25952256,513147,134348 +h1,17993:6630773,20454388:983040,0,0 +k1,17993:8334728,20454388:233327 +k1,17993:10809420,20454388:233361 +k1,17993:14693792,20454388:233361 +k1,17993:15736523,20454388:233361 +k1,17993:18325904,20454388:233362 +k1,17993:19090762,20454388:233361 +k1,17993:20608629,20454388:233361 +k1,17993:21501282,20454388:233361 +k1,17993:22753728,20454388:233361 +k1,17993:25432238,20454388:233362 +k1,17993:26324891,20454388:233361 +k1,17993:29941220,20454388:233361 +k1,17993:31193666,20454388:233361 +k1,17993:32583029,20454388:0 +) +(1,17995:6630773,21319468:25952256,505283,134348 +k1,17993:8118814,21319468:220575 +k1,17993:8695250,21319468:220576 +k1,17993:11865600,21319468:220575 +k1,17993:16751028,21319468:220575 +k1,17993:18256110,21319468:220576 +k1,17993:19580967,21319468:220575 +k1,17993:20549309,21319468:220576 +k1,17993:23120005,21319468:220575 +k1,17993:24149950,21319468:220575 +k1,17993:26203568,21319468:220576 +k1,17993:27107028,21319468:220575 +k1,17993:29522404,21319468:220575 +k1,17993:30552350,21319468:220576 +k1,17993:31128785,21319468:220575 +k1,17995:32583029,21319468:0 +) +(1,17995:6630773,22184548:25952256,513147,126483 +k1,17993:8703021,22184548:344064 +k1,17993:11282518,22184548:344064 +k1,17993:12823269,22184548:344064 +k1,17993:18334847,22184548:344064 +k1,17993:21050659,22184548:344064 +k1,17993:22046151,22184548:344064 +k1,17993:23409299,22184548:344063 +k1,17993:25142726,22184548:344064 +k1,17993:26138218,22184548:344064 +k1,17993:28839612,22184548:344064 +k1,17993:30386917,22184548:344064 +k1,17993:31835263,22184548:344064 +k1,17993:32583029,22184548:0 +) +(1,17995:6630773,23049628:25952256,513147,134348 +k1,17993:9467726,23049628:309885 +k1,17993:10463772,23049628:309884 +k1,17993:11129517,23049628:309885 +k1,17993:12828764,23049628:309884 +k1,17993:14488691,23049628:309885 +k1,17993:17243723,23049628:309884 +k1,17993:19922735,23049628:309885 +k1,17993:21500085,23049628:309884 +k1,17993:23978556,23049628:309885 +k1,17993:25485127,23049628:309884 +k1,17993:28411209,23049628:309885 +k1,17993:29337131,23049628:309884 +k1,17993:31632102,23049628:309885 +h1,17993:32602690,23049628:0,0,0 +k1,17993:32583029,23049628:0 +) +(1,17995:6630773,23914708:25952256,513147,134348 +k1,17993:10262324,23914708:259724 +k1,17993:10877909,23914708:259725 +k1,17993:13010652,23914708:259724 +k1,17993:17770733,23914708:259724 +k1,17993:19588249,23914708:259725 +k1,17993:20464011,23914708:259724 +k1,17993:21079595,23914708:259724 +k1,17993:22790286,23914708:259724 +k1,17993:24246698,23914708:259725 +k1,17993:25895785,23914708:259724 +k1,17993:28916541,23914708:259724 +k1,17993:29937794,23914708:259725 +k1,17993:31216603,23914708:259724 +k1,17993:32583029,23914708:0 +) +(1,17995:6630773,24779788:25952256,513147,134348 +k1,17993:7408924,24779788:246654 +k1,17993:11637545,24779788:246654 +k1,17993:12500236,24779788:246653 +k1,17993:14741806,24779788:246654 +k1,17993:16255926,24779788:246654 +k1,17993:20340368,24779788:246654 +k1,17993:21238450,24779788:246654 +k1,17993:23071075,24779788:246654 +k1,17993:23673588,24779788:246653 +k1,17993:26870017,24779788:246654 +k1,17993:31955194,24779788:246654 +k1,17993:32583029,24779788:0 +) +(1,17995:6630773,25644868:25952256,513147,134348 +k1,17993:9640186,25644868:232653 +k1,17993:11064284,25644868:232653 +k1,17993:12085334,25644868:232652 +k1,17993:17144058,25644868:232653 +k1,17993:20326486,25644868:232653 +k1,17993:23164850,25644868:232653 +k1,17993:24389063,25644868:232653 +k1,17993:26489491,25644868:232652 +k1,17993:29937340,25644868:232653 +k1,17993:31563944,25644868:232653 +k1,17993:32583029,25644868:0 +) +(1,17995:6630773,26509948:25952256,513147,126483 +k1,17993:11908983,26509948:201791 +k1,17993:14745977,26509948:201791 +k1,17993:16958413,26509948:201791 +k1,17993:17776242,26509948:201791 +k1,17993:18997118,26509948:201791 +k1,17993:20588273,26509948:201792 +k1,17993:21981509,26509948:201791 +k1,17993:24193945,26509948:201791 +k1,17993:25055028,26509948:201791 +k1,17993:26275904,26509948:201791 +k1,17993:29321958,26509948:201791 +k1,17993:32583029,26509948:0 +) +(1,17995:6630773,27375028:25952256,505283,126483 +k1,17993:7623441,27375028:231140 +k1,17993:9851464,27375028:231141 +k1,17993:11279291,27375028:231140 +k1,17993:13521077,27375028:231141 +k1,17993:14368255,27375028:231140 +k1,17993:15618481,27375028:231141 +k1,17993:17238984,27375028:231140 +k1,17993:18461685,27375028:231141 +k1,17993:22621708,27375028:231140 +k1,17993:23614377,27375028:231141 +k1,17993:26678638,27375028:231140 +k1,17993:29844481,27375028:231141 +k1,17993:31773659,27375028:231140 +k1,17993:32583029,27375028:0 +) +(1,17995:6630773,28240108:25952256,513147,126483 +k1,17993:10355797,28240108:216882 +k1,17993:11564238,28240108:216881 +k1,17993:14253138,28240108:216882 +k1,17993:16358112,28240108:216882 +k1,17993:18290726,28240108:216881 +k1,17993:19600093,28240108:216882 +k1,17993:20484130,28240108:216881 +(1,17993:20484130,28240108:0,452978,115847 +r1,18026:26118073,28240108:5633943,568825,115847 +k1,17993:20484130,28240108:-5633943 +) +(1,17993:20484130,28240108:5633943,452978,115847 +k1,17993:20484130,28240108:3277 +h1,17993:26114796,28240108:0,411205,112570 +) +k1,17993:26508625,28240108:216882 +k1,17993:28610978,28240108:216882 +k1,17993:30855543,28240108:216881 +k1,17993:31860823,28240108:216882 +k1,17995:32583029,28240108:0 +) +(1,17995:6630773,29105188:25952256,505283,134348 +k1,17993:8011497,29105188:288239 +k1,17993:8951164,29105188:288239 +k1,17993:10027801,29105188:288239 +k1,17993:12474796,29105188:288239 +k1,17993:16427808,29105188:288239 +k1,17994:16427808,29105188:22938 +k1,17994:20256959,29105188:288240 +k1,17994:22975273,29105188:288239 +k1,17994:24282597,29105188:288239 +k1,17994:27109701,29105188:288239 +k1,17994:28911166,29105188:288239 +k1,17994:29850833,29105188:288239 +k1,17994:32583029,29105188:0 +) +(1,17995:6630773,29970268:25952256,513147,134348 +g1,17994:9779777,29970268 +g1,17994:12268834,29970268 +g1,17994:14035684,29970268 +g1,17994:15253998,29970268 +g1,17994:18038622,29970268 +k1,17995:32583029,29970268:13102615 +g1,17995:32583029,29970268 +) +(1,18020:6630773,30835348:25952256,513147,134348 +h1,18019:6630773,30835348:983040,0,0 +k1,18019:10607405,30835348:203724 +(1,18019:10607405,30835348:0,452978,115847 +r1,18026:12372518,30835348:1765113,568825,115847 +k1,18019:10607405,30835348:-1765113 +) +(1,18019:10607405,30835348:1765113,452978,115847 +k1,18019:10607405,30835348:3277 +h1,18019:12369241,30835348:0,411205,112570 +) +k1,18019:12576242,30835348:203724 +k1,18019:13311464,30835348:203725 +k1,18019:15028414,30835348:203724 +k1,18019:15883566,30835348:203724 +k1,18019:18048127,30835348:203724 +k1,18019:21389715,30835348:203724 +k1,18019:22244867,30835348:203724 +k1,18019:25796826,30835348:203725 +k1,18019:27197237,30835348:203724 +k1,18019:29666541,30835348:203724 +k1,18019:30817916,30835348:203724 +(1,18019:30817916,30835348:0,452978,115847 +r1,18026:32583029,30835348:1765113,568825,115847 +k1,18019:30817916,30835348:-1765113 +) +(1,18019:30817916,30835348:1765113,452978,115847 +k1,18019:30817916,30835348:3277 +h1,18019:32579752,30835348:0,411205,112570 +) +k1,18019:32583029,30835348:0 +) +(1,18020:6630773,31700428:25952256,513147,134348 +k1,18019:7351232,31700428:188962 +k1,18019:8487845,31700428:188962 +k1,18019:9695892,31700428:188962 +k1,18019:12692417,31700428:188963 +k1,18019:13532807,31700428:188962 +k1,18019:15074432,31700428:188962 +k1,18019:16926042,31700428:188962 +k1,18019:17727766,31700428:188962 +k1,18019:18935813,31700428:188962 +k1,18019:20645210,31700428:188962 +k1,18019:23717101,31700428:188962 +k1,18019:25615243,31700428:188963 +k1,18019:26420243,31700428:188962 +k1,18019:27628290,31700428:188962 +k1,18019:30433449,31700428:188962 +k1,18019:32583029,31700428:0 +) +(1,18020:6630773,32565508:25952256,505283,134348 +k1,18019:9640754,32565508:202419 +k1,18019:11911489,32565508:202419 +k1,18019:12729945,32565508:202418 +k1,18019:13951449,32565508:202419 +k1,18019:15534712,32565508:202419 +k1,18019:17126494,32565508:202419 +k1,18019:17980341,32565508:202419 +k1,18019:21357323,32565508:202418 +k1,18019:23053308,32565508:202419 +k1,18019:23941889,32565508:202419 +k1,18019:24683014,32565508:202419 +k1,18019:25420207,32565508:202419 +k1,18019:27827256,32565508:202418 +k1,18019:30072432,32565508:202419 +k1,18019:31386342,32565508:202419 +k1,18019:32583029,32565508:0 +) +(1,18020:6630773,33430588:25952256,505283,126483 +k1,18019:9402240,33430588:248331 +k1,18019:10754853,33430588:248331 +k1,18019:12456773,33430588:248331 +k1,18019:13724189,33430588:248331 +k1,18019:16557915,33430588:248331 +k1,18019:18369280,33430588:248331 +k1,18019:19689779,33430588:248330 +k1,18019:20554148,33430588:248331 +k1,18019:22404179,33430588:248331 +k1,18019:24349892,33430588:248331 +k1,18019:25664494,33430588:248331 +k1,18019:27798296,33430588:248331 +k1,18019:31221191,33430588:248331 +k1,18019:32583029,33430588:0 +) +(1,18020:6630773,34295668:25952256,513147,134348 +k1,18019:7878340,34295668:256007 +k1,18019:10719743,34295668:256008 +k1,18019:11800848,34295668:256007 +k1,18019:14935196,34295668:256007 +k1,18019:16295485,34295668:256007 +k1,18019:17748836,34295668:256008 +k1,18019:20270423,34295668:256007 +k1,18019:23664294,34295668:256007 +k1,18019:24867952,34295668:256007 +k1,18019:28350953,34295668:256008 +k1,18019:31955194,34295668:256007 +k1,18019:32583029,34295668:0 +) +(1,18020:6630773,35160748:25952256,513147,134348 +k1,18019:9452653,35160748:155875 +k1,18019:10627612,35160748:155874 +k1,18019:13049067,35160748:155875 +k1,18019:16342806,35160748:155875 +k1,18019:17157972,35160748:155874 +k1,18019:18332932,35160748:155875 +k1,18019:19878170,35160748:155875 +k1,18019:22812772,35160748:155875 +k1,18019:23730174,35160748:155874 +k1,18019:24905134,35160748:155875 +k1,18019:27584145,35160748:155875 +k1,18019:28844301,35160748:155874 +k1,18019:29747942,35160748:155875 +k1,18019:32583029,35160748:0 +) +(1,18020:6630773,36025828:25952256,513147,134348 +k1,18019:7561721,36025828:169420 +k1,18019:9111984,36025828:169419 +k1,18019:10777591,36025828:169420 +k1,18019:11559772,36025828:169419 +k1,18019:12932433,36025828:169420 +k1,18019:14555442,36025828:169420 +k1,18019:16563146,36025828:169419 +k1,18019:18300058,36025828:173878 +k1,18019:19860807,36025828:169420 +k1,18019:22378382,36025828:169420 +k1,18019:25685665,36025828:169419 +k1,18019:26959367,36025828:169420 +k1,18019:27876552,36025828:169419 +k1,18019:30881059,36025828:169420 +k1,18019:32583029,36025828:0 +) +(1,18020:6630773,36890908:25952256,513147,134348 +g1,18019:7442764,36890908 +g1,18019:8661078,36890908 +g1,18019:10428584,36890908 +g1,18019:12271456,36890908 +k1,18020:32583029,36890908:18594530 +g1,18020:32583029,36890908 +) +v1,18022:6630773,37755988:0,393216,0 +(1,18023:6630773,45119274:25952256,7756502,0 +g1,18023:6630773,45119274 +g1,18023:6237557,45119274 +r1,18026:6368629,45119274:131072,7756502,0 +g1,18023:6567858,45119274 +g1,18023:6764466,45119274 +[1,18023:6764466,45119274:25818563,7756502,0 +(1,18023:6764466,38064286:25818563,701514,196608 +(1,18022:6764466,38064286:0,701514,196608 +r1,18026:7761522,38064286:997056,898122,196608 +k1,18022:6764466,38064286:-997056 +) +(1,18022:6764466,38064286:997056,701514,196608 +) +k1,18022:7928518,38064286:166996 +k1,18022:8256198,38064286:327680 +k1,18022:11301536,38064286:166997 +k1,18022:13597797,38064286:166996 +k1,18022:15775439,38064286:166997 +k1,18022:16298295,38064286:166996 +k1,18022:19272854,38064286:166997 +k1,18022:20091278,38064286:166996 +k1,18022:21277360,38064286:166997 +k1,18022:23097829,38064286:166996 +k1,18022:26439390,38064286:166997 +k1,18022:27890892,38064286:166996 +k1,18022:29438077,38064286:166997 +k1,18022:31896867,38064286:166996 +k1,18022:32583029,38064286:0 +) +(1,18023:6764466,38929366:25818563,513147,134348 +k1,18022:8861234,38929366:214574 +k1,18022:12010510,38929366:214574 +k1,18022:13244169,38929366:214574 +k1,18022:15469388,38929366:214574 +k1,18022:18269357,38929366:214574 +k1,18022:19135359,38929366:214574 +k1,18022:21046660,38929366:214574 +k1,18022:24435798,38929366:214574 +k1,18022:25263134,38929366:214574 +k1,18022:26496793,38929366:214574 +k1,18022:28280048,38929366:220221 +k1,18022:29712281,38929366:214574 +k1,18022:31591469,38929366:214574 +k1,18022:32583029,38929366:0 +) +(1,18023:6764466,39794446:25818563,513147,126483 +k1,18022:7582792,39794446:202288 +k1,18022:9386780,39794446:202288 +k1,18022:11286449,39794446:202287 +k1,18022:14251080,39794446:202288 +k1,18022:16020989,39794446:202288 +k1,18022:17967190,39794446:202288 +k1,18022:18782239,39794446:202287 +k1,18022:20678632,39794446:202288 +k1,18022:22576336,39794446:202288 +k1,18022:25632062,39794446:202288 +k1,18022:27844994,39794446:202287 +k1,18022:31274275,39794446:202288 +k1,18023:32583029,39794446:0 +) +(1,18023:6764466,40659526:25818563,513147,126483 +k1,18022:8756706,40659526:179514 +k1,18022:10821691,40659526:179514 +k1,18022:11992765,40659526:179514 +k1,18022:13238549,40659526:179513 +k1,18022:16003458,40659526:179514 +k1,18022:16944500,40659526:179514 +k1,18022:19389594,40659526:179514 +k1,18022:20220536,40659526:179514 +k1,18022:21531856,40659526:179513 +k1,18022:24729303,40659526:179514 +k1,18022:26783147,40659526:179514 +k1,18022:29804302,40659526:179514 +k1,18022:32583029,40659526:0 +) +(1,18023:6764466,41524606:25818563,513147,134348 +k1,18022:10118739,41524606:215754 +k1,18022:11143863,41524606:215754 +k1,18022:12689998,41524606:215754 +k1,18022:15078925,41524606:215753 +k1,18022:16862300,41524606:215754 +k1,18022:17433914,41524606:215754 +k1,18022:19344429,41524606:215754 +k1,18022:20946269,41524606:215754 +k1,18022:21821315,41524606:215754 +k1,18022:23426432,41524606:215754 +k1,18022:26632593,41524606:215753 +k1,18022:27839907,41524606:215754 +k1,18022:30021086,41524606:215754 +k1,18022:30888268,41524606:215754 +k1,18022:32583029,41524606:0 +) +(1,18023:6764466,42389686:25818563,513147,134348 +k1,18022:9964121,42389686:219078 +k1,18022:11202283,42389686:219077 +k1,18022:12513846,42389686:219078 +k1,18022:13392215,42389686:219077 +k1,18022:13967153,42389686:219078 +k1,18022:17175982,42389686:219077 +k1,18022:20157403,42389686:219078 +k1,18022:21944101,42389686:219077 +k1,18022:23182264,42389686:219078 +k1,18022:25666921,42389686:219077 +k1,18022:26820542,42389686:219078 +k1,18022:27801147,42389686:219077 +k1,18022:29039310,42389686:219078 +k1,18022:31955194,42389686:219077 +k1,18022:32583029,42389686:0 +) +(1,18023:6764466,43254766:25818563,513147,134348 +k1,18022:8224360,43254766:256653 +k1,18022:9848093,43254766:256652 +k1,18022:11123831,43254766:256653 +k1,18022:12761327,43254766:256652 +k1,18022:14118985,43254766:256653 +k1,18022:15027065,43254766:256652 +k1,18022:17928751,43254766:256653 +k1,18022:20450983,43254766:256652 +k1,18022:23845500,43254766:256653 +k1,18022:24714914,43254766:256652 +k1,18022:25990652,43254766:256653 +k1,18022:27817093,43254766:263407 +k1,18022:29291404,43254766:256652 +k1,18022:31386342,43254766:256653 +k1,18022:32583029,43254766:0 +) +(1,18023:6764466,44119846:25818563,505283,126483 +k1,18022:10213626,44119846:222167 +k1,18022:13277434,44119846:222167 +k1,18022:16278327,44119846:222166 +k1,18022:17262022,44119846:222167 +k1,18022:20337627,44119846:222167 +k1,18022:21551354,44119846:222167 +k1,18022:23535129,44119846:222167 +k1,18022:24373333,44119846:222166 +k1,18022:26104139,44119846:222167 +k1,18022:31326048,44119846:222167 +k1,18022:32583029,44119846:0 +) +(1,18023:6764466,44984926:25818563,513147,134348 +g1,18022:9242382,44984926 +h1,18022:10785100,44984926:0,0,0 +g1,18022:10984329,44984926 +g1,18022:11992928,44984926 +g1,18022:13690310,44984926 +h1,18022:14885687,44984926:0,0,0 +g1,18022:15084916,44984926 +g1,18022:16231796,44984926 +k1,18023:32583029,44984926:13894289 +g1,18023:32583029,44984926 +) +] +g1,18023:32583029,45119274 +) +h1,18023:6630773,45119274:0,0,0 +] +(1,18026:32583029,45706769:0,0,0 +g1,18026:32583029,45706769 +) +) +] +(1,18026:6630773,47279633:25952256,0,0 +h1,18026:6630773,47279633:25952256,0,0 +) +] +(1,18026:4262630,4025873:0,0,0 +[1,18026:-473656,4025873:0,0,0 +(1,18026:-473656,-710413:0,0,0 +(1,18026:-473656,-710413:0,0,0 +g1,18026:-473656,-710413 +) +g1,18026:-473656,-710413 ) ] ) ] !33467 -}292 -Input:2977:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2978:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2979:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2980:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}293 Input:2981:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2982:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2983:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -312990,2413 +313194,2413 @@ Input:2988:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:2989:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2990:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2991:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{293 -[1,18063:4262630,47279633:28320399,43253760,0 -(1,18063:4262630,4025873:0,0,0 -[1,18063:-473656,4025873:0,0,0 -(1,18063:-473656,-710413:0,0,0 -(1,18063:-473656,-644877:0,0,0 -k1,18063:-473656,-644877:-65536 +{294 +[1,18061:4262630,47279633:28320399,43253760,0 +(1,18061:4262630,4025873:0,0,0 +[1,18061:-473656,4025873:0,0,0 +(1,18061:-473656,-710413:0,0,0 +(1,18061:-473656,-644877:0,0,0 +k1,18061:-473656,-644877:-65536 ) -(1,18063:-473656,4736287:0,0,0 -k1,18063:-473656,4736287:5209943 +(1,18061:-473656,4736287:0,0,0 +k1,18061:-473656,4736287:5209943 ) -g1,18063:-473656,-710413 +g1,18061:-473656,-710413 ) ] ) -[1,18063:6630773,47279633:25952256,43253760,0 -[1,18063:6630773,4812305:25952256,786432,0 -(1,18063:6630773,4812305:25952256,513147,126483 -(1,18063:6630773,4812305:25952256,513147,126483 -g1,18063:3078558,4812305 -[1,18063:3078558,4812305:0,0,0 -(1,18063:3078558,2439708:0,1703936,0 -k1,18063:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18063:2537886,2439708:1179648,16384,0 +[1,18061:6630773,47279633:25952256,43253760,0 +[1,18061:6630773,4812305:25952256,786432,0 +(1,18061:6630773,4812305:25952256,513147,126483 +(1,18061:6630773,4812305:25952256,513147,126483 +g1,18061:3078558,4812305 +[1,18061:3078558,4812305:0,0,0 +(1,18061:3078558,2439708:0,1703936,0 +k1,18061:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18061:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18063:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18061:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18063:3078558,4812305:0,0,0 -(1,18063:3078558,2439708:0,1703936,0 -g1,18063:29030814,2439708 -g1,18063:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18063:36151628,1915420:16384,1179648,0 +[1,18061:3078558,4812305:0,0,0 +(1,18061:3078558,2439708:0,1703936,0 +g1,18061:29030814,2439708 +g1,18061:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18061:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18063:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18061:37855564,2439708:1179648,16384,0 ) ) -k1,18063:3078556,2439708:-34777008 +k1,18061:3078556,2439708:-34777008 ) ] -[1,18063:3078558,4812305:0,0,0 -(1,18063:3078558,49800853:0,16384,2228224 -k1,18063:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18063:2537886,49800853:1179648,16384,0 +[1,18061:3078558,4812305:0,0,0 +(1,18061:3078558,49800853:0,16384,2228224 +k1,18061:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18061:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18063:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18061:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18063:3078558,4812305:0,0,0 -(1,18063:3078558,49800853:0,16384,2228224 -g1,18063:29030814,49800853 -g1,18063:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18063:36151628,51504789:16384,1179648,0 +[1,18061:3078558,4812305:0,0,0 +(1,18061:3078558,49800853:0,16384,2228224 +g1,18061:29030814,49800853 +g1,18061:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18061:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18063:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18061:37855564,49800853:1179648,16384,0 ) ) -k1,18063:3078556,49800853:-34777008 +k1,18061:3078556,49800853:-34777008 ) ] -g1,18063:6630773,4812305 -k1,18063:21386205,4812305:13560055 -g1,18063:21999622,4812305 -g1,18063:25611966,4812305 -g1,18063:28956923,4812305 -g1,18063:29772190,4812305 -) -) -] -[1,18063:6630773,45706769:25952256,40108032,0 -(1,18063:6630773,45706769:25952256,40108032,0 -(1,18063:6630773,45706769:0,0,0 -g1,18063:6630773,45706769 -) -[1,18063:6630773,45706769:25952256,40108032,0 -v1,18028:6630773,6254097:0,393216,0 -(1,18029:6630773,13543777:25952256,7682896,0 -g1,18029:6630773,13543777 -g1,18029:6237557,13543777 -r1,18063:6368629,13543777:131072,7682896,0 -g1,18029:6567858,13543777 -g1,18029:6764466,13543777 -[1,18029:6764466,13543777:25818563,7682896,0 -(1,18029:6764466,6615274:25818563,754393,260573 -(1,18028:6764466,6615274:0,754393,260573 -r1,18063:7856192,6615274:1091726,1014966,260573 -k1,18028:6764466,6615274:-1091726 -) -(1,18028:6764466,6615274:1091726,754393,260573 -) -k1,18028:7999673,6615274:143481 -k1,18028:8327353,6615274:327680 -k1,18028:9288724,6615274:143482 -k1,18028:12849908,6615274:143481 -k1,18028:15022385,6615274:143482 -k1,18028:15931982,6615274:143481 -k1,18028:18101181,6615274:143481 -k1,18028:20132755,6615274:143482 -k1,18028:22613905,6615274:143481 -k1,18028:23113246,6615274:143481 -k1,18028:25779864,6615274:143482 -k1,18028:27114790,6615274:143481 -k1,18028:27614132,6615274:143482 -k1,18028:30921036,6615274:143481 -k1,18028:32583029,6615274:0 -) -(1,18029:6764466,7480354:25818563,513147,134348 -k1,18028:8005801,7480354:222250 -k1,18028:11879062,7480354:222250 -k1,18028:12760605,7480354:222251 -k1,18028:14001940,7480354:222250 -k1,18028:18258586,7480354:222250 -k1,18028:19140128,7480354:222250 -k1,18028:19718239,7480354:222251 -k1,18028:21217786,7480354:222250 -k1,18028:23175429,7480354:222250 -k1,18028:24416764,7480354:222250 -k1,18028:27715275,7480354:222251 -k1,18028:29404221,7480354:222250 -(1,18028:29404221,7480354:0,414482,115847 -r1,18063:31169334,7480354:1765113,530329,115847 -k1,18028:29404221,7480354:-1765113 -) -(1,18028:29404221,7480354:1765113,414482,115847 -k1,18028:29404221,7480354:3277 -h1,18028:31166057,7480354:0,411205,112570 -) -k1,18028:31391584,7480354:222250 -k1,18029:32583029,7480354:0 -) -(1,18029:6764466,8345434:25818563,513147,126483 -(1,18028:6764466,8345434:0,414482,122846 -r1,18063:8529579,8345434:1765113,537328,122846 -k1,18028:6764466,8345434:-1765113 -) -(1,18028:6764466,8345434:1765113,414482,122846 -k1,18028:6764466,8345434:3277 -h1,18028:8526302,8345434:0,411205,112570 -) -k1,18028:8756363,8345434:226784 -k1,18028:9974707,8345434:226784 -k1,18028:11759281,8345434:226783 -k1,18028:15692781,8345434:226784 -k1,18028:19119033,8345434:226784 -k1,18028:21120532,8345434:226784 -(1,18028:21120532,8345434:0,414482,115847 -r1,18063:22885645,8345434:1765113,530329,115847 -k1,18028:21120532,8345434:-1765113 -) -(1,18028:21120532,8345434:1765113,414482,115847 -k1,18028:21120532,8345434:3277 -h1,18028:22882368,8345434:0,411205,112570 -) -k1,18028:23112429,8345434:226784 -k1,18028:24691875,8345434:226783 -k1,18028:25274519,8345434:226784 -(1,18028:25274519,8345434:0,414482,122846 -r1,18063:26687920,8345434:1413401,537328,122846 -k1,18028:25274519,8345434:-1413401 -) -(1,18028:25274519,8345434:1413401,414482,122846 -k1,18028:25274519,8345434:3277 -h1,18028:26684643,8345434:0,411205,112570 -) -k1,18028:26914704,8345434:226784 -k1,18028:27827650,8345434:226784 -k1,18028:29211143,8345434:226783 -k1,18028:30097219,8345434:226784 -k1,18028:31832642,8345434:226784 -k1,18029:32583029,8345434:0 -) -(1,18029:6764466,9210514:25818563,513147,134348 -k1,18028:9902867,9210514:206320 -(1,18028:9902867,9210514:0,414482,122846 -r1,18063:11667980,9210514:1765113,537328,122846 -k1,18028:9902867,9210514:-1765113 -) -(1,18028:9902867,9210514:1765113,414482,122846 -k1,18028:9902867,9210514:3277 -h1,18028:11664703,9210514:0,411205,112570 -) -k1,18028:11874301,9210514:206321 -k1,18028:13433284,9210514:206320 -k1,18028:13995464,9210514:206320 -(1,18028:13995464,9210514:0,414482,115847 -r1,18063:15408865,9210514:1413401,530329,115847 -k1,18028:13995464,9210514:-1413401 -) -(1,18028:13995464,9210514:1413401,414482,115847 -k1,18028:13995464,9210514:3277 -h1,18028:15405588,9210514:0,411205,112570 -) -k1,18028:15615185,9210514:206320 -k1,18028:16507668,9210514:206321 -k1,18028:17870698,9210514:206320 -k1,18028:18736310,9210514:206320 -k1,18028:20451269,9210514:206320 -k1,18028:24233890,9210514:206321 -k1,18028:26208371,9210514:206320 -k1,18028:27030729,9210514:206320 -k1,18028:28703745,9210514:206320 -k1,18028:30607448,9210514:206321 -k1,18028:31169628,9210514:206320 -(1,18028:31169628,9210514:0,414482,115847 -r1,18063:32583029,9210514:1413401,530329,115847 -k1,18028:31169628,9210514:-1413401 -) -(1,18028:31169628,9210514:1413401,414482,115847 -k1,18028:31169628,9210514:3277 -h1,18028:32579752,9210514:0,411205,112570 -) -k1,18028:32583029,9210514:0 -) -(1,18029:6764466,10075594:25818563,513147,126483 -k1,18028:8119686,10075594:163775 -k1,18028:8639321,10075594:163775 -(1,18028:8639321,10075594:0,414482,122846 -r1,18063:10052722,10075594:1413401,537328,122846 -k1,18028:8639321,10075594:-1413401 -) -(1,18028:8639321,10075594:1413401,414482,122846 -k1,18028:8639321,10075594:3277 -h1,18028:10049445,10075594:0,411205,112570 -) -k1,18028:10216498,10075594:163776 -k1,18028:11371833,10075594:163775 -k1,18028:13501033,10075594:163775 -k1,18028:14350970,10075594:163775 -k1,18028:14870605,10075594:163775 -k1,18028:16765841,10075594:163775 -k1,18028:18121062,10075594:163776 -k1,18028:19793476,10075594:163775 -k1,18028:21192605,10075594:163775 -k1,18028:22547825,10075594:163775 -k1,18028:25325831,10075594:163775 -k1,18028:26105644,10075594:163775 -k1,18028:27288505,10075594:163776 -k1,18028:28841643,10075594:163775 -k1,18028:30355460,10075594:163775 -k1,18028:32583029,10075594:0 -) -(1,18029:6764466,10940674:25818563,513147,134348 -k1,18028:8010053,10940674:226502 -k1,18028:10063700,10940674:226503 -k1,18028:11359750,10940674:226502 -k1,18028:12605338,10940674:226503 -k1,18028:15448037,10940674:226502 -k1,18028:16290578,10940674:226503 -k1,18028:18502166,10940674:226502 -h1,18028:19472754,10940674:0,0,0 -k1,18028:19699257,10940674:226503 -k1,18028:22207067,10940674:226502 -k1,18028:27006672,10940674:226503 -k1,18028:27892466,10940674:226502 -k1,18028:29449350,10940674:226503 -k1,18028:30694937,10940674:226502 -k1,18028:32583029,10940674:0 -) -(1,18029:6764466,11805754:25818563,513147,134348 -k1,18028:7924560,11805754:168534 -k1,18028:10058519,11805754:168534 -k1,18028:10878482,11805754:168535 -k1,18028:12066101,11805754:168534 -k1,18028:13685602,11805754:168534 -k1,18028:15050823,11805754:168534 -k1,18028:17484938,11805754:168535 -k1,18028:20176608,11805754:168534 -k1,18028:21004434,11805754:168534 -k1,18028:22924745,11805754:168534 -k1,18028:26600767,11805754:168535 -k1,18028:27300798,11805754:168534 -(1,18028:27300798,11805754:0,452978,115847 -r1,18063:32583029,11805754:5282231,568825,115847 -k1,18028:27300798,11805754:-5282231 -) -(1,18028:27300798,11805754:5282231,452978,115847 -k1,18028:27300798,11805754:3277 -h1,18028:32579752,11805754:0,411205,112570 -) -k1,18028:32583029,11805754:0 -) -(1,18029:6764466,12670834:25818563,513147,134348 -k1,18028:9312412,12670834:189305 -k1,18028:11010357,12670834:189306 -k1,18028:14374226,12670834:189305 -k1,18028:16261569,12670834:189305 -k1,18028:18416299,12670834:189305 -k1,18028:19257033,12670834:189306 -k1,18028:19802198,12670834:189305 -k1,18028:21268800,12670834:189305 -k1,18028:22144268,12670834:189306 -k1,18028:22799534,12670834:189305 -k1,18028:24007924,12670834:189305 -k1,18028:25755020,12670834:189305 -k1,18028:27324514,12670834:189306 -k1,18028:29443199,12670834:189305 -k1,18028:32583029,12670834:0 -) -(1,18029:6764466,13535914:25818563,473825,7863 -g1,18028:7773065,13535914 -k1,18029:32583029,13535914:21904098 -g1,18029:32583029,13535914 -) -] -g1,18029:32583029,13543777 -) -h1,18029:6630773,13543777:0,0,0 -(1,18032:6630773,14408857:25952256,505283,134348 -h1,18031:6630773,14408857:983040,0,0 -k1,18031:9623385,14408857:177185 -k1,18031:10792131,14408857:177186 -k1,18031:12661456,14408857:177185 -k1,18031:15692079,14408857:177185 -k1,18031:16485303,14408857:177186 -k1,18031:19491021,14408857:177185 -k1,18031:20952713,14408857:177186 -k1,18031:22605113,14408857:177185 -k1,18031:26332383,14408857:177185 -k1,18031:30017056,14408857:177186 -k1,18031:31478747,14408857:177185 -k1,18031:32583029,14408857:0 -) -(1,18032:6630773,15273937:25952256,513147,134348 -k1,18031:7638717,15273937:260178 -k1,18031:9412121,15273937:260178 -k1,18031:12249175,15273937:260178 -k1,18031:17754854,15273937:260177 -k1,18031:19395876,15273937:260178 -k1,18031:21426181,15273937:260178 -k1,18031:22337787,15273937:260178 -k1,18031:23927035,15273937:260178 -k1,18031:25454679,15273937:260178 -k1,18031:29051949,15273937:260177 -k1,18031:30503572,15273937:260178 -k1,18031:31379788,15273937:260178 -k1,18031:32583029,15273937:0 -) -(1,18032:6630773,16139017:25952256,513147,134348 -k1,18031:8598281,16139017:211798 -k1,18031:10185679,16139017:211797 -k1,18031:13904964,16139017:211798 -k1,18031:15401267,16139017:211797 -k1,18031:17088280,16139017:211798 -k1,18031:17986239,16139017:211797 -k1,18031:20463617,16139017:211798 -(1,18031:20463617,16139017:0,452978,115847 -r1,18063:25745848,16139017:5282231,568825,115847 -k1,18031:20463617,16139017:-5282231 -) -(1,18031:20463617,16139017:5282231,452978,115847 -k1,18031:20463617,16139017:3277 -h1,18031:25742571,16139017:0,411205,112570 -) -k1,18031:25957645,16139017:211797 -k1,18031:27161003,16139017:211798 -k1,18031:30462823,16139017:211797 -k1,18031:31360783,16139017:211798 -k1,18032:32583029,16139017:0 -) -(1,18032:6630773,17004097:25952256,513147,126483 -k1,18031:9210532,17004097:188350 -k1,18031:10014921,17004097:188351 -k1,18031:12481958,17004097:188350 -h1,18031:13452546,17004097:0,0,0 -k1,18031:13814567,17004097:188351 -k1,18031:14630752,17004097:188350 -k1,18031:15838187,17004097:188350 -k1,18031:17393619,17004097:188351 -k1,18031:18241261,17004097:188350 -k1,18031:20173525,17004097:188351 -k1,18031:21646381,17004097:188350 -k1,18031:22596259,17004097:188350 -k1,18031:25050190,17004097:188351 -k1,18031:26331025,17004097:188350 -k1,18031:28221346,17004097:188351 -k1,18031:31436804,17004097:188350 -k1,18032:32583029,17004097:0 -) -(1,18032:6630773,17869177:25952256,513147,126483 -(1,18031:6630773,17869177:0,452978,122846 -r1,18063:11209581,17869177:4578808,575824,122846 -k1,18031:6630773,17869177:-4578808 -) -(1,18031:6630773,17869177:4578808,452978,122846 -k1,18031:6630773,17869177:3277 -h1,18031:11206304,17869177:0,411205,112570 -) -k1,18031:11451306,17869177:241725 -k1,18031:13068632,17869177:241725 -k1,18031:14329441,17869177:241724 -k1,18031:18121251,17869177:241725 -k1,18031:21059783,17869177:241725 -(1,18031:21059783,17869177:0,452978,115847 -r1,18063:25638591,17869177:4578808,568825,115847 -k1,18031:21059783,17869177:-4578808 -) -(1,18031:21059783,17869177:4578808,452978,115847 -k1,18031:21059783,17869177:3277 -h1,18031:25635314,17869177:0,411205,112570 -) -k1,18031:25880316,17869177:241725 -k1,18031:27069691,17869177:241724 -k1,18031:28514657,17869177:241725 -k1,18031:31591469,17869177:241725 -k1,18031:32583029,17869177:0 -) -(1,18032:6630773,18734257:25952256,505283,11795 -g1,18031:9920025,18734257 -g1,18031:10735292,18734257 -g1,18031:13213208,18734257 -h1,18031:14183796,18734257:0,0,0 -k1,18032:32583028,18734257:18346804 -g1,18032:32583028,18734257 -) -(1,18034:6630773,19599337:25952256,505283,134348 -h1,18033:6630773,19599337:983040,0,0 -k1,18033:8340056,19599337:238655 -k1,18033:10604468,19599337:238694 -k1,18033:11947444,19599337:238694 -k1,18033:13661353,19599337:238694 -k1,18033:14255908,19599337:238695 -k1,18033:16367621,19599337:238694 -k1,18033:18164106,19599337:238694 -k1,18033:19085685,19599337:238694 -k1,18033:21076157,19599337:238695 -k1,18033:23376614,19599337:238694 -k1,18033:24687477,19599337:238694 -k1,18033:26624210,19599337:238695 -k1,18033:29218923,19599337:238694 -k1,18033:30932832,19599337:238694 -k1,18033:32583029,19599337:0 -) -(1,18034:6630773,20464417:25952256,513147,134348 -k1,18033:8328632,20464417:255412 -k1,18033:9740753,20464417:255411 -k1,18033:11727626,20464417:255412 -k1,18033:13002123,20464417:255412 -k1,18033:14646898,20464417:255412 -k1,18033:16426021,20464417:255411 -k1,18033:21075622,20464417:255412 -k1,18033:22522479,20464417:255412 -k1,18033:26173311,20464417:255412 -k1,18033:27088014,20464417:255411 -k1,18033:30293201,20464417:255412 -k1,18033:32583029,20464417:0 -) -(1,18034:6630773,21329497:25952256,513147,134348 -k1,18033:8574214,21329497:260476 -k1,18033:10497337,21329497:260475 -k1,18033:15330915,21329497:260476 -k1,18033:16539042,21329497:260476 -k1,18033:18251140,21329497:260476 -k1,18033:20243076,21329497:260475 -k1,18033:21321441,21329497:260476 -k1,18033:24999620,21329497:260476 -k1,18033:27289091,21329497:260476 -k1,18033:29151266,21329497:260475 -k1,18033:31767761,21329497:260476 -k1,18033:32583029,21329497:0 -) -(1,18034:6630773,22194577:25952256,513147,126483 -k1,18033:7856851,22194577:159807 -k1,18033:9491873,22194577:159807 -k1,18033:11102647,22194577:159807 -k1,18033:15269325,22194577:159807 -k1,18033:17490895,22194577:159807 -k1,18033:18722871,22194577:159807 -k1,18033:19901762,22194577:159806 -k1,18033:21949661,22194577:159807 -k1,18033:23846172,22194577:159807 -k1,18033:25025064,22194577:159807 -k1,18033:26838344,22194577:159807 -k1,18033:28387514,22194577:159807 -k1,18033:29738766,22194577:159807 -k1,18033:32583029,22194577:0 -) -(1,18034:6630773,23059657:25952256,513147,134348 -k1,18033:9953398,23059657:184761 -k1,18033:10750921,23059657:184761 -k1,18033:11954767,23059657:184761 -k1,18033:13833634,23059657:184762 -k1,18033:16044768,23059657:184761 -k1,18033:16888821,23059657:184761 -k1,18033:18276823,23059657:184761 -k1,18033:20149791,23059657:184761 -k1,18033:24728741,23059657:184761 -k1,18033:25529541,23059657:184762 -k1,18033:27602394,23059657:184761 -k1,18033:28778715,23059657:184761 -k1,18033:31092741,23059657:184761 -k1,18034:32583029,23059657:0 -) -(1,18034:6630773,23924737:25952256,513147,134348 -k1,18033:9434360,23924737:180836 -k1,18033:10274487,23924737:180835 -k1,18033:12199236,23924737:180836 -k1,18033:12996109,23924737:180835 -k1,18033:14878915,23924737:180836 -k1,18033:17121513,23924737:180835 -k1,18033:19373287,23924737:180836 -k1,18033:20838628,23924737:180835 -k1,18033:21967115,23924737:180836 -k1,18033:22503810,23924737:180835 -k1,18033:24379407,23924737:180836 -k1,18033:27404505,23924737:180835 -k1,18033:28960942,23924737:180836 -k1,18033:30298487,23924737:180835 -k1,18033:32051532,23924737:180836 -k1,18033:32583029,23924737:0 -) -(1,18034:6630773,24789817:25952256,505283,126483 -g1,18033:9279738,24789817 -g1,18033:10535407,24789817 -k1,18034:32583028,24789817:20717896 -g1,18034:32583028,24789817 -) -v1,18036:6630773,25654897:0,393216,0 -(1,18037:6630773,26159803:25952256,898122,0 -g1,18037:6630773,26159803 -g1,18037:6237557,26159803 -r1,18063:6368629,26159803:131072,898122,0 -g1,18037:6567858,26159803 -g1,18037:6764466,26159803 -[1,18037:6764466,26159803:25818563,898122,0 -(1,18037:6764466,25963195:25818563,701514,196608 -(1,18036:6764466,25963195:0,701514,196608 -r1,18063:7761522,25963195:997056,898122,196608 -k1,18036:6764466,25963195:-997056 -) -(1,18036:6764466,25963195:997056,701514,196608 -) -g1,18036:7960751,25963195 -g1,18036:8288431,25963195 -g1,18036:10203393,25963195 -g1,18036:10860719,25963195 -k1,18037:32583029,25963195:19092350 -g1,18037:32583029,25963195 -) -] -g1,18037:32583029,26159803 -) -h1,18037:6630773,26159803:0,0,0 -(1,18042:6630773,28276621:25952256,555811,12975 -(1,18042:6630773,28276621:2450326,534184,12975 -g1,18042:6630773,28276621 -g1,18042:9081099,28276621 -) -g1,18042:10708162,28276621 -k1,18042:32583029,28276621:17284922 -g1,18042:32583029,28276621 -) -(1,18046:6630773,29534917:25952256,513147,134348 -k1,18045:7678179,29534917:253765 -k1,18045:8951028,29534917:253764 -k1,18045:10297278,29534917:253765 -k1,18045:11210335,29534917:253765 -k1,18045:12483184,29534917:253764 -k1,18045:15639539,29534917:253765 -k1,18045:16424801,29534917:253765 -k1,18045:18548963,29534917:253764 -k1,18045:19454156,29534917:253765 -k1,18045:23741006,29534917:253764 -k1,18045:24756299,29534917:253765 -k1,18045:27671481,29534917:253765 -k1,18045:29367692,29534917:253764 -k1,18045:30272885,29534917:253765 -k1,18045:32583029,29534917:0 -) -(1,18046:6630773,30399997:25952256,513147,134348 -k1,18045:8196328,30399997:197818 -k1,18045:10522755,30399997:197818 -k1,18045:10933563,30399997:197816 -k1,18045:12263843,30399997:197818 -k1,18045:14122343,30399997:197818 -k1,18045:15650542,30399997:197818 -k1,18045:16499788,30399997:197818 -k1,18045:18339938,30399997:197818 -k1,18045:20145354,30399997:197818 -k1,18045:21002464,30399997:197818 -k1,18045:24462009,30399997:197818 -k1,18045:28339018,30399997:197818 -k1,18045:31015408,30399997:197818 -k1,18045:32583029,30399997:0 -) -(1,18046:6630773,31265077:25952256,513147,134348 -k1,18045:7824990,31265077:175132 -k1,18045:10712003,31265077:175133 -k1,18045:13690765,31265077:175132 -k1,18045:14763741,31265077:175133 -k1,18045:17808039,31265077:175132 -k1,18045:18642464,31265077:175133 -k1,18045:19173456,31265077:175132 -k1,18045:20625886,31265077:175133 -k1,18045:22276233,31265077:175132 -k1,18045:25220917,31265077:175133 -k1,18045:28227204,31265077:175132 -k1,18045:29018375,31265077:175133 -k1,18045:30885647,31265077:175132 -k1,18045:32583029,31265077:0 -) -(1,18046:6630773,32130157:25952256,513147,126483 -k1,18045:8497613,32130157:170113 -k1,18045:11263606,32130157:170112 -k1,18045:13276591,32130157:170113 -k1,18045:14062742,32130157:170113 -k1,18045:16238911,32130157:170112 -k1,18045:18190293,32130157:170113 -k1,18045:21038861,32130157:170112 -k1,18045:22924707,32130157:170113 -k1,18045:23552917,32130157:170113 -k1,18045:26352989,32130157:170112 -k1,18045:27174530,32130157:170113 -k1,18045:29274023,32130157:170113 -k1,18045:29799995,32130157:170112 -k1,18045:31247405,32130157:170113 -k1,18045:32583029,32130157:0 -) -(1,18046:6630773,32995237:25952256,513147,134348 -k1,18045:10153333,32995237:163840 -k1,18045:12100408,32995237:163840 -k1,18045:14896828,32995237:163839 -k1,18045:15416528,32995237:163840 -k1,18045:16857665,32995237:163840 -k1,18045:18376790,32995237:163840 -k1,18045:19302158,32995237:163840 -k1,18045:20994953,32995237:163840 -k1,18045:22177877,32995237:163839 -k1,18045:25104060,32995237:163840 -k1,18045:28713128,32995237:163840 -k1,18045:31966991,32995237:163840 -k1,18045:32583029,32995237:0 -) -(1,18046:6630773,33860317:25952256,513147,134348 -k1,18045:7795820,33860317:145962 -k1,18045:10696259,33860317:145961 -k1,18045:13120908,33860317:145962 -k1,18045:14258430,33860317:145962 -k1,18045:17151005,33860317:145961 -k1,18045:18316052,33860317:145962 -k1,18045:20196751,33860317:145961 -k1,18045:23274138,33860317:145962 -k1,18045:24079392,33860317:145962 -k1,18045:25244438,33860317:145961 -k1,18045:27171669,33860317:145962 -k1,18045:27732421,33860317:145909 -k1,18045:30011579,33860317:145961 -k1,18045:31176626,33860317:145962 -k1,18045:32583029,33860317:0 -) -(1,18046:6630773,34725397:25952256,513147,134348 -k1,18045:9257456,34725397:237896 -k1,18045:11827777,34725397:237895 -k1,18045:13257118,34725397:237896 -k1,18045:14514099,34725397:237896 -k1,18045:19919508,34725397:237895 -k1,18045:21441910,34725397:237896 -k1,18045:22698890,34725397:237895 -k1,18045:24326149,34725397:237896 -k1,18045:27218908,34725397:237896 -k1,18045:28372996,34725397:237895 -k1,18045:31015408,34725397:237896 -k1,18045:32583029,34725397:0 -) -(1,18046:6630773,35590477:25952256,505283,134348 -k1,18045:7817108,35590477:167250 -k1,18045:9922913,35590477:167250 -k1,18045:12128333,35590477:167250 -k1,18045:12911621,35590477:167250 -k1,18045:13849574,35590477:167250 -k1,18045:15976350,35590477:167250 -k1,18045:16795028,35590477:167250 -k1,18045:17981363,35590477:167250 -k1,18045:20537400,35590477:167250 -k1,18045:23037076,35590477:167250 -k1,18045:23832161,35590477:167250 -k1,18045:25202652,35590477:167250 -k1,18045:27648589,35590477:167250 -k1,18045:28028799,35590477:167218 -k1,18045:31563944,35590477:167250 -k1,18045:32583029,35590477:0 -) -(1,18046:6630773,36455557:25952256,513147,134348 -g1,18045:8914047,36455557 -g1,18045:9772568,36455557 -g1,18045:10990882,36455557 -g1,18045:14092701,36455557 -g1,18045:15483375,36455557 -g1,18045:17012985,36455557 -g1,18045:17670311,36455557 -g1,18045:21011336,36455557 -g1,18045:22478031,36455557 -g1,18045:23033120,36455557 -k1,18046:32583029,36455557:8220184 -g1,18046:32583029,36455557 -) -(1,18048:6630773,37320637:25952256,513147,126483 -h1,18047:6630773,37320637:983040,0,0 -k1,18047:10695652,37320637:291971 -(1,18047:10695652,37320637:0,452978,122846 -r1,18063:13515901,37320637:2820249,575824,122846 -k1,18047:10695652,37320637:-2820249 -) -(1,18047:10695652,37320637:2820249,452978,122846 -k1,18047:10695652,37320637:3277 -h1,18047:13512624,37320637:0,411205,112570 -) -k1,18047:13807872,37320637:291971 -k1,18047:14861371,37320637:291971 -k1,18047:17418922,37320637:291971 -k1,18047:21065026,37320637:291971 -k1,18047:22127701,37320637:291972 -k1,18047:24425729,37320637:291971 -k1,18047:26168667,37320637:291971 -k1,18047:27841482,37320637:291971 -k1,18047:30335463,37320637:291971 -k1,18047:31278862,37320637:291971 -k1,18048:32583029,37320637:0 -) -(1,18048:6630773,38185717:25952256,513147,126483 -(1,18047:6630773,38185717:0,452978,115847 -r1,18063:10506157,38185717:3875384,568825,115847 -k1,18047:6630773,38185717:-3875384 -) -(1,18047:6630773,38185717:3875384,452978,115847 -k1,18047:6630773,38185717:3277 -h1,18047:10502880,38185717:0,411205,112570 -) -k1,18047:10964162,38185717:284335 -(1,18047:10964162,38185717:0,452978,115847 -r1,18063:14136122,38185717:3171960,568825,115847 -k1,18047:10964162,38185717:-3171960 -) -(1,18047:10964162,38185717:3171960,452978,115847 -k1,18047:10964162,38185717:3277 -h1,18047:14132845,38185717:0,411205,112570 -) -k1,18047:14594127,38185717:284335 -k1,18047:15989953,38185717:284335 -k1,18047:19298119,38185717:284335 -k1,18047:21588511,38185717:284335 -k1,18047:24354694,38185717:284335 -k1,18047:26019873,38185717:284335 -k1,18047:28310265,38185717:284335 -k1,18047:31283542,38185717:284335 -k1,18047:32227169,38185717:284335 -k1,18047:32583029,38185717:0 -) -(1,18048:6630773,39050797:25952256,505283,134348 -g1,18047:8107299,39050797 -g1,18047:10004566,39050797 -g1,18047:12553916,39050797 -g1,18047:13284642,39050797 -g1,18047:16547024,39050797 -g1,18047:17432415,39050797 -g1,18047:18402347,39050797 -g1,18047:19972589,39050797 -k1,18048:32583029,39050797:9634451 -g1,18048:32583029,39050797 -) -v1,18050:6630773,39735652:0,393216,0 -(1,18054:6630773,40076335:25952256,733899,196608 -g1,18054:6630773,40076335 -g1,18054:6630773,40076335 -g1,18054:6434165,40076335 -(1,18054:6434165,40076335:0,733899,196608 -r1,18063:32779637,40076335:26345472,930507,196608 -k1,18054:6434165,40076335:-26345472 -) -(1,18054:6434165,40076335:26345472,733899,196608 -[1,18054:6630773,40076335:25952256,537291,0 -(1,18052:6630773,39963483:25952256,424439,112852 -(1,18051:6630773,39963483:0,0,0 -g1,18051:6630773,39963483 -g1,18051:6630773,39963483 -g1,18051:6303093,39963483 -(1,18051:6303093,39963483:0,0,0 -) -g1,18051:6630773,39963483 -) -k1,18052:6630773,39963483:0 -h1,18052:9286405,39963483:0,0,0 -k1,18052:32583029,39963483:23296624 -g1,18052:32583029,39963483 -) -] -) -g1,18054:32583029,40076335 -g1,18054:6630773,40076335 -g1,18054:6630773,40076335 -g1,18054:32583029,40076335 -g1,18054:32583029,40076335 -) -h1,18054:6630773,40272943:0,0,0 -] -(1,18063:32583029,45706769:0,0,0 -g1,18063:32583029,45706769 -) -) -] -(1,18063:6630773,47279633:25952256,0,0 -h1,18063:6630773,47279633:25952256,0,0 -) -] -(1,18063:4262630,4025873:0,0,0 -[1,18063:-473656,4025873:0,0,0 -(1,18063:-473656,-710413:0,0,0 -(1,18063:-473656,-710413:0,0,0 -g1,18063:-473656,-710413 -) -g1,18063:-473656,-710413 +g1,18061:6630773,4812305 +k1,18061:21386205,4812305:13560055 +g1,18061:21999622,4812305 +g1,18061:25611966,4812305 +g1,18061:28956923,4812305 +g1,18061:29772190,4812305 +) +) +] +[1,18061:6630773,45706769:25952256,40108032,0 +(1,18061:6630773,45706769:25952256,40108032,0 +(1,18061:6630773,45706769:0,0,0 +g1,18061:6630773,45706769 +) +[1,18061:6630773,45706769:25952256,40108032,0 +v1,18026:6630773,6254097:0,393216,0 +(1,18027:6630773,13543777:25952256,7682896,0 +g1,18027:6630773,13543777 +g1,18027:6237557,13543777 +r1,18061:6368629,13543777:131072,7682896,0 +g1,18027:6567858,13543777 +g1,18027:6764466,13543777 +[1,18027:6764466,13543777:25818563,7682896,0 +(1,18027:6764466,6615274:25818563,754393,260573 +(1,18026:6764466,6615274:0,754393,260573 +r1,18061:7856192,6615274:1091726,1014966,260573 +k1,18026:6764466,6615274:-1091726 +) +(1,18026:6764466,6615274:1091726,754393,260573 +) +k1,18026:7999673,6615274:143481 +k1,18026:8327353,6615274:327680 +k1,18026:9288724,6615274:143482 +k1,18026:12849908,6615274:143481 +k1,18026:15022385,6615274:143482 +k1,18026:15931982,6615274:143481 +k1,18026:18101181,6615274:143481 +k1,18026:20132755,6615274:143482 +k1,18026:22613905,6615274:143481 +k1,18026:23113246,6615274:143481 +k1,18026:25779864,6615274:143482 +k1,18026:27114790,6615274:143481 +k1,18026:27614132,6615274:143482 +k1,18026:30921036,6615274:143481 +k1,18026:32583029,6615274:0 +) +(1,18027:6764466,7480354:25818563,513147,134348 +k1,18026:8005801,7480354:222250 +k1,18026:11879062,7480354:222250 +k1,18026:12760605,7480354:222251 +k1,18026:14001940,7480354:222250 +k1,18026:18258586,7480354:222250 +k1,18026:19140128,7480354:222250 +k1,18026:19718239,7480354:222251 +k1,18026:21217786,7480354:222250 +k1,18026:23175429,7480354:222250 +k1,18026:24416764,7480354:222250 +k1,18026:27715275,7480354:222251 +k1,18026:29404221,7480354:222250 +(1,18026:29404221,7480354:0,414482,115847 +r1,18061:31169334,7480354:1765113,530329,115847 +k1,18026:29404221,7480354:-1765113 +) +(1,18026:29404221,7480354:1765113,414482,115847 +k1,18026:29404221,7480354:3277 +h1,18026:31166057,7480354:0,411205,112570 +) +k1,18026:31391584,7480354:222250 +k1,18027:32583029,7480354:0 +) +(1,18027:6764466,8345434:25818563,513147,126483 +(1,18026:6764466,8345434:0,414482,122846 +r1,18061:8529579,8345434:1765113,537328,122846 +k1,18026:6764466,8345434:-1765113 +) +(1,18026:6764466,8345434:1765113,414482,122846 +k1,18026:6764466,8345434:3277 +h1,18026:8526302,8345434:0,411205,112570 +) +k1,18026:8756363,8345434:226784 +k1,18026:9974707,8345434:226784 +k1,18026:11759281,8345434:226783 +k1,18026:15692781,8345434:226784 +k1,18026:19119033,8345434:226784 +k1,18026:21120532,8345434:226784 +(1,18026:21120532,8345434:0,414482,115847 +r1,18061:22885645,8345434:1765113,530329,115847 +k1,18026:21120532,8345434:-1765113 +) +(1,18026:21120532,8345434:1765113,414482,115847 +k1,18026:21120532,8345434:3277 +h1,18026:22882368,8345434:0,411205,112570 +) +k1,18026:23112429,8345434:226784 +k1,18026:24691875,8345434:226783 +k1,18026:25274519,8345434:226784 +(1,18026:25274519,8345434:0,414482,122846 +r1,18061:26687920,8345434:1413401,537328,122846 +k1,18026:25274519,8345434:-1413401 +) +(1,18026:25274519,8345434:1413401,414482,122846 +k1,18026:25274519,8345434:3277 +h1,18026:26684643,8345434:0,411205,112570 +) +k1,18026:26914704,8345434:226784 +k1,18026:27827650,8345434:226784 +k1,18026:29211143,8345434:226783 +k1,18026:30097219,8345434:226784 +k1,18026:31832642,8345434:226784 +k1,18027:32583029,8345434:0 +) +(1,18027:6764466,9210514:25818563,513147,134348 +k1,18026:9902867,9210514:206320 +(1,18026:9902867,9210514:0,414482,122846 +r1,18061:11667980,9210514:1765113,537328,122846 +k1,18026:9902867,9210514:-1765113 +) +(1,18026:9902867,9210514:1765113,414482,122846 +k1,18026:9902867,9210514:3277 +h1,18026:11664703,9210514:0,411205,112570 +) +k1,18026:11874301,9210514:206321 +k1,18026:13433284,9210514:206320 +k1,18026:13995464,9210514:206320 +(1,18026:13995464,9210514:0,414482,115847 +r1,18061:15408865,9210514:1413401,530329,115847 +k1,18026:13995464,9210514:-1413401 +) +(1,18026:13995464,9210514:1413401,414482,115847 +k1,18026:13995464,9210514:3277 +h1,18026:15405588,9210514:0,411205,112570 +) +k1,18026:15615185,9210514:206320 +k1,18026:16507668,9210514:206321 +k1,18026:17870698,9210514:206320 +k1,18026:18736310,9210514:206320 +k1,18026:20451269,9210514:206320 +k1,18026:24233890,9210514:206321 +k1,18026:26208371,9210514:206320 +k1,18026:27030729,9210514:206320 +k1,18026:28703745,9210514:206320 +k1,18026:30607448,9210514:206321 +k1,18026:31169628,9210514:206320 +(1,18026:31169628,9210514:0,414482,115847 +r1,18061:32583029,9210514:1413401,530329,115847 +k1,18026:31169628,9210514:-1413401 +) +(1,18026:31169628,9210514:1413401,414482,115847 +k1,18026:31169628,9210514:3277 +h1,18026:32579752,9210514:0,411205,112570 +) +k1,18026:32583029,9210514:0 +) +(1,18027:6764466,10075594:25818563,513147,126483 +k1,18026:8119686,10075594:163775 +k1,18026:8639321,10075594:163775 +(1,18026:8639321,10075594:0,414482,122846 +r1,18061:10052722,10075594:1413401,537328,122846 +k1,18026:8639321,10075594:-1413401 +) +(1,18026:8639321,10075594:1413401,414482,122846 +k1,18026:8639321,10075594:3277 +h1,18026:10049445,10075594:0,411205,112570 +) +k1,18026:10216498,10075594:163776 +k1,18026:11371833,10075594:163775 +k1,18026:13501033,10075594:163775 +k1,18026:14350970,10075594:163775 +k1,18026:14870605,10075594:163775 +k1,18026:16765841,10075594:163775 +k1,18026:18121062,10075594:163776 +k1,18026:19793476,10075594:163775 +k1,18026:21192605,10075594:163775 +k1,18026:22547825,10075594:163775 +k1,18026:25325831,10075594:163775 +k1,18026:26105644,10075594:163775 +k1,18026:27288505,10075594:163776 +k1,18026:28841643,10075594:163775 +k1,18026:30355460,10075594:163775 +k1,18026:32583029,10075594:0 +) +(1,18027:6764466,10940674:25818563,513147,134348 +k1,18026:8010053,10940674:226502 +k1,18026:10063700,10940674:226503 +k1,18026:11359750,10940674:226502 +k1,18026:12605338,10940674:226503 +k1,18026:15448037,10940674:226502 +k1,18026:16290578,10940674:226503 +k1,18026:18502166,10940674:226502 +h1,18026:19472754,10940674:0,0,0 +k1,18026:19699257,10940674:226503 +k1,18026:22207067,10940674:226502 +k1,18026:27006672,10940674:226503 +k1,18026:27892466,10940674:226502 +k1,18026:29449350,10940674:226503 +k1,18026:30694937,10940674:226502 +k1,18026:32583029,10940674:0 +) +(1,18027:6764466,11805754:25818563,513147,134348 +k1,18026:7924560,11805754:168534 +k1,18026:10058519,11805754:168534 +k1,18026:10878482,11805754:168535 +k1,18026:12066101,11805754:168534 +k1,18026:13685602,11805754:168534 +k1,18026:15050823,11805754:168534 +k1,18026:17484938,11805754:168535 +k1,18026:20176608,11805754:168534 +k1,18026:21004434,11805754:168534 +k1,18026:22924745,11805754:168534 +k1,18026:26600767,11805754:168535 +k1,18026:27300798,11805754:168534 +(1,18026:27300798,11805754:0,452978,115847 +r1,18061:32583029,11805754:5282231,568825,115847 +k1,18026:27300798,11805754:-5282231 +) +(1,18026:27300798,11805754:5282231,452978,115847 +k1,18026:27300798,11805754:3277 +h1,18026:32579752,11805754:0,411205,112570 +) +k1,18026:32583029,11805754:0 +) +(1,18027:6764466,12670834:25818563,513147,134348 +k1,18026:9312412,12670834:189305 +k1,18026:11010357,12670834:189306 +k1,18026:14374226,12670834:189305 +k1,18026:16261569,12670834:189305 +k1,18026:18416299,12670834:189305 +k1,18026:19257033,12670834:189306 +k1,18026:19802198,12670834:189305 +k1,18026:21268800,12670834:189305 +k1,18026:22144268,12670834:189306 +k1,18026:22799534,12670834:189305 +k1,18026:24007924,12670834:189305 +k1,18026:25755020,12670834:189305 +k1,18026:27324514,12670834:189306 +k1,18026:29443199,12670834:189305 +k1,18026:32583029,12670834:0 +) +(1,18027:6764466,13535914:25818563,473825,7863 +g1,18026:7773065,13535914 +k1,18027:32583029,13535914:21904098 +g1,18027:32583029,13535914 +) +] +g1,18027:32583029,13543777 +) +h1,18027:6630773,13543777:0,0,0 +(1,18030:6630773,14408857:25952256,505283,134348 +h1,18029:6630773,14408857:983040,0,0 +k1,18029:9623385,14408857:177185 +k1,18029:10792131,14408857:177186 +k1,18029:12661456,14408857:177185 +k1,18029:15692079,14408857:177185 +k1,18029:16485303,14408857:177186 +k1,18029:19491021,14408857:177185 +k1,18029:20952713,14408857:177186 +k1,18029:22605113,14408857:177185 +k1,18029:26332383,14408857:177185 +k1,18029:30017056,14408857:177186 +k1,18029:31478747,14408857:177185 +k1,18029:32583029,14408857:0 +) +(1,18030:6630773,15273937:25952256,513147,134348 +k1,18029:7638717,15273937:260178 +k1,18029:9412121,15273937:260178 +k1,18029:12249175,15273937:260178 +k1,18029:17754854,15273937:260177 +k1,18029:19395876,15273937:260178 +k1,18029:21426181,15273937:260178 +k1,18029:22337787,15273937:260178 +k1,18029:23927035,15273937:260178 +k1,18029:25454679,15273937:260178 +k1,18029:29051949,15273937:260177 +k1,18029:30503572,15273937:260178 +k1,18029:31379788,15273937:260178 +k1,18029:32583029,15273937:0 +) +(1,18030:6630773,16139017:25952256,513147,134348 +k1,18029:8598281,16139017:211798 +k1,18029:10185679,16139017:211797 +k1,18029:13904964,16139017:211798 +k1,18029:15401267,16139017:211797 +k1,18029:17088280,16139017:211798 +k1,18029:17986239,16139017:211797 +k1,18029:20463617,16139017:211798 +(1,18029:20463617,16139017:0,452978,115847 +r1,18061:25745848,16139017:5282231,568825,115847 +k1,18029:20463617,16139017:-5282231 +) +(1,18029:20463617,16139017:5282231,452978,115847 +k1,18029:20463617,16139017:3277 +h1,18029:25742571,16139017:0,411205,112570 +) +k1,18029:25957645,16139017:211797 +k1,18029:27161003,16139017:211798 +k1,18029:30462823,16139017:211797 +k1,18029:31360783,16139017:211798 +k1,18030:32583029,16139017:0 +) +(1,18030:6630773,17004097:25952256,513147,126483 +k1,18029:9210532,17004097:188350 +k1,18029:10014921,17004097:188351 +k1,18029:12481958,17004097:188350 +h1,18029:13452546,17004097:0,0,0 +k1,18029:13814567,17004097:188351 +k1,18029:14630752,17004097:188350 +k1,18029:15838187,17004097:188350 +k1,18029:17393619,17004097:188351 +k1,18029:18241261,17004097:188350 +k1,18029:20173525,17004097:188351 +k1,18029:21646381,17004097:188350 +k1,18029:22596259,17004097:188350 +k1,18029:25050190,17004097:188351 +k1,18029:26331025,17004097:188350 +k1,18029:28221346,17004097:188351 +k1,18029:31436804,17004097:188350 +k1,18030:32583029,17004097:0 +) +(1,18030:6630773,17869177:25952256,513147,126483 +(1,18029:6630773,17869177:0,452978,122846 +r1,18061:11209581,17869177:4578808,575824,122846 +k1,18029:6630773,17869177:-4578808 +) +(1,18029:6630773,17869177:4578808,452978,122846 +k1,18029:6630773,17869177:3277 +h1,18029:11206304,17869177:0,411205,112570 +) +k1,18029:11451306,17869177:241725 +k1,18029:13068632,17869177:241725 +k1,18029:14329441,17869177:241724 +k1,18029:18121251,17869177:241725 +k1,18029:21059783,17869177:241725 +(1,18029:21059783,17869177:0,452978,115847 +r1,18061:25638591,17869177:4578808,568825,115847 +k1,18029:21059783,17869177:-4578808 +) +(1,18029:21059783,17869177:4578808,452978,115847 +k1,18029:21059783,17869177:3277 +h1,18029:25635314,17869177:0,411205,112570 +) +k1,18029:25880316,17869177:241725 +k1,18029:27069691,17869177:241724 +k1,18029:28514657,17869177:241725 +k1,18029:31591469,17869177:241725 +k1,18029:32583029,17869177:0 +) +(1,18030:6630773,18734257:25952256,505283,11795 +g1,18029:9920025,18734257 +g1,18029:10735292,18734257 +g1,18029:13213208,18734257 +h1,18029:14183796,18734257:0,0,0 +k1,18030:32583028,18734257:18346804 +g1,18030:32583028,18734257 +) +(1,18032:6630773,19599337:25952256,505283,134348 +h1,18031:6630773,19599337:983040,0,0 +k1,18031:8340056,19599337:238655 +k1,18031:10604468,19599337:238694 +k1,18031:11947444,19599337:238694 +k1,18031:13661353,19599337:238694 +k1,18031:14255908,19599337:238695 +k1,18031:16367621,19599337:238694 +k1,18031:18164106,19599337:238694 +k1,18031:19085685,19599337:238694 +k1,18031:21076157,19599337:238695 +k1,18031:23376614,19599337:238694 +k1,18031:24687477,19599337:238694 +k1,18031:26624210,19599337:238695 +k1,18031:29218923,19599337:238694 +k1,18031:30932832,19599337:238694 +k1,18031:32583029,19599337:0 +) +(1,18032:6630773,20464417:25952256,513147,134348 +k1,18031:8328632,20464417:255412 +k1,18031:9740753,20464417:255411 +k1,18031:11727626,20464417:255412 +k1,18031:13002123,20464417:255412 +k1,18031:14646898,20464417:255412 +k1,18031:16426021,20464417:255411 +k1,18031:21075622,20464417:255412 +k1,18031:22522479,20464417:255412 +k1,18031:26173311,20464417:255412 +k1,18031:27088014,20464417:255411 +k1,18031:30293201,20464417:255412 +k1,18031:32583029,20464417:0 +) +(1,18032:6630773,21329497:25952256,513147,134348 +k1,18031:8574214,21329497:260476 +k1,18031:10497337,21329497:260475 +k1,18031:15330915,21329497:260476 +k1,18031:16539042,21329497:260476 +k1,18031:18251140,21329497:260476 +k1,18031:20243076,21329497:260475 +k1,18031:21321441,21329497:260476 +k1,18031:24999620,21329497:260476 +k1,18031:27289091,21329497:260476 +k1,18031:29151266,21329497:260475 +k1,18031:31767761,21329497:260476 +k1,18031:32583029,21329497:0 +) +(1,18032:6630773,22194577:25952256,513147,126483 +k1,18031:7856851,22194577:159807 +k1,18031:9491873,22194577:159807 +k1,18031:11102647,22194577:159807 +k1,18031:15269325,22194577:159807 +k1,18031:17490895,22194577:159807 +k1,18031:18722871,22194577:159807 +k1,18031:19901762,22194577:159806 +k1,18031:21949661,22194577:159807 +k1,18031:23846172,22194577:159807 +k1,18031:25025064,22194577:159807 +k1,18031:26838344,22194577:159807 +k1,18031:28387514,22194577:159807 +k1,18031:29738766,22194577:159807 +k1,18031:32583029,22194577:0 +) +(1,18032:6630773,23059657:25952256,513147,134348 +k1,18031:9953398,23059657:184761 +k1,18031:10750921,23059657:184761 +k1,18031:11954767,23059657:184761 +k1,18031:13833634,23059657:184762 +k1,18031:16044768,23059657:184761 +k1,18031:16888821,23059657:184761 +k1,18031:18276823,23059657:184761 +k1,18031:20149791,23059657:184761 +k1,18031:24728741,23059657:184761 +k1,18031:25529541,23059657:184762 +k1,18031:27602394,23059657:184761 +k1,18031:28778715,23059657:184761 +k1,18031:31092741,23059657:184761 +k1,18032:32583029,23059657:0 +) +(1,18032:6630773,23924737:25952256,513147,134348 +k1,18031:9434360,23924737:180836 +k1,18031:10274487,23924737:180835 +k1,18031:12199236,23924737:180836 +k1,18031:12996109,23924737:180835 +k1,18031:14878915,23924737:180836 +k1,18031:17121513,23924737:180835 +k1,18031:19373287,23924737:180836 +k1,18031:20838628,23924737:180835 +k1,18031:21967115,23924737:180836 +k1,18031:22503810,23924737:180835 +k1,18031:24379407,23924737:180836 +k1,18031:27404505,23924737:180835 +k1,18031:28960942,23924737:180836 +k1,18031:30298487,23924737:180835 +k1,18031:32051532,23924737:180836 +k1,18031:32583029,23924737:0 +) +(1,18032:6630773,24789817:25952256,505283,126483 +g1,18031:9279738,24789817 +g1,18031:10535407,24789817 +k1,18032:32583028,24789817:20717896 +g1,18032:32583028,24789817 +) +v1,18034:6630773,25654897:0,393216,0 +(1,18035:6630773,26159803:25952256,898122,0 +g1,18035:6630773,26159803 +g1,18035:6237557,26159803 +r1,18061:6368629,26159803:131072,898122,0 +g1,18035:6567858,26159803 +g1,18035:6764466,26159803 +[1,18035:6764466,26159803:25818563,898122,0 +(1,18035:6764466,25963195:25818563,701514,196608 +(1,18034:6764466,25963195:0,701514,196608 +r1,18061:7761522,25963195:997056,898122,196608 +k1,18034:6764466,25963195:-997056 +) +(1,18034:6764466,25963195:997056,701514,196608 +) +g1,18034:7960751,25963195 +g1,18034:8288431,25963195 +g1,18034:10203393,25963195 +g1,18034:10860719,25963195 +k1,18035:32583029,25963195:19092350 +g1,18035:32583029,25963195 +) +] +g1,18035:32583029,26159803 +) +h1,18035:6630773,26159803:0,0,0 +(1,18040:6630773,28276621:25952256,555811,12975 +(1,18040:6630773,28276621:2450326,534184,12975 +g1,18040:6630773,28276621 +g1,18040:9081099,28276621 +) +g1,18040:10708162,28276621 +k1,18040:32583029,28276621:17284922 +g1,18040:32583029,28276621 +) +(1,18044:6630773,29534917:25952256,513147,134348 +k1,18043:7678179,29534917:253765 +k1,18043:8951028,29534917:253764 +k1,18043:10297278,29534917:253765 +k1,18043:11210335,29534917:253765 +k1,18043:12483184,29534917:253764 +k1,18043:15639539,29534917:253765 +k1,18043:16424801,29534917:253765 +k1,18043:18548963,29534917:253764 +k1,18043:19454156,29534917:253765 +k1,18043:23741006,29534917:253764 +k1,18043:24756299,29534917:253765 +k1,18043:27671481,29534917:253765 +k1,18043:29367692,29534917:253764 +k1,18043:30272885,29534917:253765 +k1,18043:32583029,29534917:0 +) +(1,18044:6630773,30399997:25952256,513147,134348 +k1,18043:8196328,30399997:197818 +k1,18043:10522755,30399997:197818 +k1,18043:10933563,30399997:197816 +k1,18043:12263843,30399997:197818 +k1,18043:14122343,30399997:197818 +k1,18043:15650542,30399997:197818 +k1,18043:16499788,30399997:197818 +k1,18043:18339938,30399997:197818 +k1,18043:20145354,30399997:197818 +k1,18043:21002464,30399997:197818 +k1,18043:24462009,30399997:197818 +k1,18043:28339018,30399997:197818 +k1,18043:31015408,30399997:197818 +k1,18043:32583029,30399997:0 +) +(1,18044:6630773,31265077:25952256,513147,134348 +k1,18043:7824990,31265077:175132 +k1,18043:10712003,31265077:175133 +k1,18043:13690765,31265077:175132 +k1,18043:14763741,31265077:175133 +k1,18043:17808039,31265077:175132 +k1,18043:18642464,31265077:175133 +k1,18043:19173456,31265077:175132 +k1,18043:20625886,31265077:175133 +k1,18043:22276233,31265077:175132 +k1,18043:25220917,31265077:175133 +k1,18043:28227204,31265077:175132 +k1,18043:29018375,31265077:175133 +k1,18043:30885647,31265077:175132 +k1,18043:32583029,31265077:0 +) +(1,18044:6630773,32130157:25952256,513147,126483 +k1,18043:8497613,32130157:170113 +k1,18043:11263606,32130157:170112 +k1,18043:13276591,32130157:170113 +k1,18043:14062742,32130157:170113 +k1,18043:16238911,32130157:170112 +k1,18043:18190293,32130157:170113 +k1,18043:21038861,32130157:170112 +k1,18043:22924707,32130157:170113 +k1,18043:23552917,32130157:170113 +k1,18043:26352989,32130157:170112 +k1,18043:27174530,32130157:170113 +k1,18043:29274023,32130157:170113 +k1,18043:29799995,32130157:170112 +k1,18043:31247405,32130157:170113 +k1,18043:32583029,32130157:0 +) +(1,18044:6630773,32995237:25952256,513147,134348 +k1,18043:10153333,32995237:163840 +k1,18043:12100408,32995237:163840 +k1,18043:14896828,32995237:163839 +k1,18043:15416528,32995237:163840 +k1,18043:16857665,32995237:163840 +k1,18043:18376790,32995237:163840 +k1,18043:19302158,32995237:163840 +k1,18043:20994953,32995237:163840 +k1,18043:22177877,32995237:163839 +k1,18043:25104060,32995237:163840 +k1,18043:28713128,32995237:163840 +k1,18043:31966991,32995237:163840 +k1,18043:32583029,32995237:0 +) +(1,18044:6630773,33860317:25952256,513147,134348 +k1,18043:7795820,33860317:145962 +k1,18043:10696259,33860317:145961 +k1,18043:13120908,33860317:145962 +k1,18043:14258430,33860317:145962 +k1,18043:17151005,33860317:145961 +k1,18043:18316052,33860317:145962 +k1,18043:20196751,33860317:145961 +k1,18043:23274138,33860317:145962 +k1,18043:24079392,33860317:145962 +k1,18043:25244438,33860317:145961 +k1,18043:27171669,33860317:145962 +k1,18043:27732421,33860317:145909 +k1,18043:30011579,33860317:145961 +k1,18043:31176626,33860317:145962 +k1,18043:32583029,33860317:0 +) +(1,18044:6630773,34725397:25952256,513147,134348 +k1,18043:9257456,34725397:237896 +k1,18043:11827777,34725397:237895 +k1,18043:13257118,34725397:237896 +k1,18043:14514099,34725397:237896 +k1,18043:19919508,34725397:237895 +k1,18043:21441910,34725397:237896 +k1,18043:22698890,34725397:237895 +k1,18043:24326149,34725397:237896 +k1,18043:27218908,34725397:237896 +k1,18043:28372996,34725397:237895 +k1,18043:31015408,34725397:237896 +k1,18043:32583029,34725397:0 +) +(1,18044:6630773,35590477:25952256,505283,134348 +k1,18043:7817108,35590477:167250 +k1,18043:9922913,35590477:167250 +k1,18043:12128333,35590477:167250 +k1,18043:12911621,35590477:167250 +k1,18043:13849574,35590477:167250 +k1,18043:15976350,35590477:167250 +k1,18043:16795028,35590477:167250 +k1,18043:17981363,35590477:167250 +k1,18043:20537400,35590477:167250 +k1,18043:23037076,35590477:167250 +k1,18043:23832161,35590477:167250 +k1,18043:25202652,35590477:167250 +k1,18043:27648589,35590477:167250 +k1,18043:28028799,35590477:167218 +k1,18043:31563944,35590477:167250 +k1,18043:32583029,35590477:0 +) +(1,18044:6630773,36455557:25952256,513147,134348 +g1,18043:8914047,36455557 +g1,18043:9772568,36455557 +g1,18043:10990882,36455557 +g1,18043:14092701,36455557 +g1,18043:15483375,36455557 +g1,18043:17012985,36455557 +g1,18043:17670311,36455557 +g1,18043:21011336,36455557 +g1,18043:22478031,36455557 +g1,18043:23033120,36455557 +k1,18044:32583029,36455557:8220184 +g1,18044:32583029,36455557 +) +(1,18046:6630773,37320637:25952256,513147,126483 +h1,18045:6630773,37320637:983040,0,0 +k1,18045:10695652,37320637:291971 +(1,18045:10695652,37320637:0,452978,122846 +r1,18061:13515901,37320637:2820249,575824,122846 +k1,18045:10695652,37320637:-2820249 +) +(1,18045:10695652,37320637:2820249,452978,122846 +k1,18045:10695652,37320637:3277 +h1,18045:13512624,37320637:0,411205,112570 +) +k1,18045:13807872,37320637:291971 +k1,18045:14861371,37320637:291971 +k1,18045:17418922,37320637:291971 +k1,18045:21065026,37320637:291971 +k1,18045:22127701,37320637:291972 +k1,18045:24425729,37320637:291971 +k1,18045:26168667,37320637:291971 +k1,18045:27841482,37320637:291971 +k1,18045:30335463,37320637:291971 +k1,18045:31278862,37320637:291971 +k1,18046:32583029,37320637:0 +) +(1,18046:6630773,38185717:25952256,513147,126483 +(1,18045:6630773,38185717:0,452978,115847 +r1,18061:10506157,38185717:3875384,568825,115847 +k1,18045:6630773,38185717:-3875384 +) +(1,18045:6630773,38185717:3875384,452978,115847 +k1,18045:6630773,38185717:3277 +h1,18045:10502880,38185717:0,411205,112570 +) +k1,18045:10964162,38185717:284335 +(1,18045:10964162,38185717:0,452978,115847 +r1,18061:14136122,38185717:3171960,568825,115847 +k1,18045:10964162,38185717:-3171960 +) +(1,18045:10964162,38185717:3171960,452978,115847 +k1,18045:10964162,38185717:3277 +h1,18045:14132845,38185717:0,411205,112570 +) +k1,18045:14594127,38185717:284335 +k1,18045:15989953,38185717:284335 +k1,18045:19298119,38185717:284335 +k1,18045:21588511,38185717:284335 +k1,18045:24354694,38185717:284335 +k1,18045:26019873,38185717:284335 +k1,18045:28310265,38185717:284335 +k1,18045:31283542,38185717:284335 +k1,18045:32227169,38185717:284335 +k1,18045:32583029,38185717:0 +) +(1,18046:6630773,39050797:25952256,505283,134348 +g1,18045:8107299,39050797 +g1,18045:10004566,39050797 +g1,18045:12553916,39050797 +g1,18045:13284642,39050797 +g1,18045:16547024,39050797 +g1,18045:17432415,39050797 +g1,18045:18402347,39050797 +g1,18045:19972589,39050797 +k1,18046:32583029,39050797:9634451 +g1,18046:32583029,39050797 +) +v1,18048:6630773,39735652:0,393216,0 +(1,18052:6630773,40076335:25952256,733899,196608 +g1,18052:6630773,40076335 +g1,18052:6630773,40076335 +g1,18052:6434165,40076335 +(1,18052:6434165,40076335:0,733899,196608 +r1,18061:32779637,40076335:26345472,930507,196608 +k1,18052:6434165,40076335:-26345472 +) +(1,18052:6434165,40076335:26345472,733899,196608 +[1,18052:6630773,40076335:25952256,537291,0 +(1,18050:6630773,39963483:25952256,424439,112852 +(1,18049:6630773,39963483:0,0,0 +g1,18049:6630773,39963483 +g1,18049:6630773,39963483 +g1,18049:6303093,39963483 +(1,18049:6303093,39963483:0,0,0 +) +g1,18049:6630773,39963483 +) +k1,18050:6630773,39963483:0 +h1,18050:9286405,39963483:0,0,0 +k1,18050:32583029,39963483:23296624 +g1,18050:32583029,39963483 +) +] +) +g1,18052:32583029,40076335 +g1,18052:6630773,40076335 +g1,18052:6630773,40076335 +g1,18052:32583029,40076335 +g1,18052:32583029,40076335 +) +h1,18052:6630773,40272943:0,0,0 +] +(1,18061:32583029,45706769:0,0,0 +g1,18061:32583029,45706769 +) +) +] +(1,18061:6630773,47279633:25952256,0,0 +h1,18061:6630773,47279633:25952256,0,0 +) +] +(1,18061:4262630,4025873:0,0,0 +[1,18061:-473656,4025873:0,0,0 +(1,18061:-473656,-710413:0,0,0 +(1,18061:-473656,-710413:0,0,0 +g1,18061:-473656,-710413 +) +g1,18061:-473656,-710413 ) ] ) ] !26066 -}293 -Input:2992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}294 Input:2996:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2997:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2998:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:2999:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3000:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3001:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3002:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3003:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3004:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3005:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{294 -[1,18095:4262630,47279633:28320399,43253760,0 -(1,18095:4262630,4025873:0,0,0 -[1,18095:-473656,4025873:0,0,0 -(1,18095:-473656,-710413:0,0,0 -(1,18095:-473656,-644877:0,0,0 -k1,18095:-473656,-644877:-65536 +{295 +[1,18093:4262630,47279633:28320399,43253760,0 +(1,18093:4262630,4025873:0,0,0 +[1,18093:-473656,4025873:0,0,0 +(1,18093:-473656,-710413:0,0,0 +(1,18093:-473656,-644877:0,0,0 +k1,18093:-473656,-644877:-65536 ) -(1,18095:-473656,4736287:0,0,0 -k1,18095:-473656,4736287:5209943 +(1,18093:-473656,4736287:0,0,0 +k1,18093:-473656,4736287:5209943 ) -g1,18095:-473656,-710413 +g1,18093:-473656,-710413 ) ] ) -[1,18095:6630773,47279633:25952256,43253760,0 -[1,18095:6630773,4812305:25952256,786432,0 -(1,18095:6630773,4812305:25952256,513147,126483 -(1,18095:6630773,4812305:25952256,513147,126483 -g1,18095:3078558,4812305 -[1,18095:3078558,4812305:0,0,0 -(1,18095:3078558,2439708:0,1703936,0 -k1,18095:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18095:2537886,2439708:1179648,16384,0 +[1,18093:6630773,47279633:25952256,43253760,0 +[1,18093:6630773,4812305:25952256,786432,0 +(1,18093:6630773,4812305:25952256,513147,126483 +(1,18093:6630773,4812305:25952256,513147,126483 +g1,18093:3078558,4812305 +[1,18093:3078558,4812305:0,0,0 +(1,18093:3078558,2439708:0,1703936,0 +k1,18093:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18093:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18095:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18093:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18095:3078558,4812305:0,0,0 -(1,18095:3078558,2439708:0,1703936,0 -g1,18095:29030814,2439708 -g1,18095:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18095:36151628,1915420:16384,1179648,0 +[1,18093:3078558,4812305:0,0,0 +(1,18093:3078558,2439708:0,1703936,0 +g1,18093:29030814,2439708 +g1,18093:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18093:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18095:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18093:37855564,2439708:1179648,16384,0 ) ) -k1,18095:3078556,2439708:-34777008 +k1,18093:3078556,2439708:-34777008 ) ] -[1,18095:3078558,4812305:0,0,0 -(1,18095:3078558,49800853:0,16384,2228224 -k1,18095:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18095:2537886,49800853:1179648,16384,0 +[1,18093:3078558,4812305:0,0,0 +(1,18093:3078558,49800853:0,16384,2228224 +k1,18093:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18093:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18095:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18093:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18095:3078558,4812305:0,0,0 -(1,18095:3078558,49800853:0,16384,2228224 -g1,18095:29030814,49800853 -g1,18095:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18095:36151628,51504789:16384,1179648,0 +[1,18093:3078558,4812305:0,0,0 +(1,18093:3078558,49800853:0,16384,2228224 +g1,18093:29030814,49800853 +g1,18093:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18093:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18095:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18093:37855564,49800853:1179648,16384,0 ) ) -k1,18095:3078556,49800853:-34777008 +k1,18093:3078556,49800853:-34777008 ) ] -g1,18095:6630773,4812305 -g1,18095:6630773,4812305 -g1,18095:8017514,4812305 -g1,18095:11362471,4812305 -g1,18095:12177738,4812305 -g1,18095:15187806,4812305 -k1,18095:31387652,4812305:16199846 +g1,18093:6630773,4812305 +g1,18093:6630773,4812305 +g1,18093:8017514,4812305 +g1,18093:11362471,4812305 +g1,18093:12177738,4812305 +g1,18093:15187806,4812305 +k1,18093:31387652,4812305:16199846 ) ) ] -[1,18095:6630773,45706769:25952256,40108032,0 -(1,18095:6630773,45706769:25952256,40108032,0 -(1,18095:6630773,45706769:0,0,0 -g1,18095:6630773,45706769 +[1,18093:6630773,45706769:25952256,40108032,0 +(1,18093:6630773,45706769:25952256,40108032,0 +(1,18093:6630773,45706769:0,0,0 +g1,18093:6630773,45706769 ) -[1,18095:6630773,45706769:25952256,40108032,0 -(1,18057:6630773,14682403:25952256,9083666,0 -k1,18057:10523651,14682403:3892878 -h1,18056:10523651,14682403:0,0,0 -(1,18056:10523651,14682403:18166500,9083666,0 -(1,18056:10523651,14682403:18167376,9083688,0 -(1,18056:10523651,14682403:18167376,9083688,0 -(1,18056:10523651,14682403:0,9083688,0 -(1,18056:10523651,14682403:0,14208860,0 -(1,18056:10523651,14682403:28417720,14208860,0 +[1,18093:6630773,45706769:25952256,40108032,0 +(1,18055:6630773,14682403:25952256,9083666,0 +k1,18055:10523651,14682403:3892878 +h1,18054:10523651,14682403:0,0,0 +(1,18054:10523651,14682403:18166500,9083666,0 +(1,18054:10523651,14682403:18167376,9083688,0 +(1,18054:10523651,14682403:18167376,9083688,0 +(1,18054:10523651,14682403:0,9083688,0 +(1,18054:10523651,14682403:0,14208860,0 +(1,18054:10523651,14682403:28417720,14208860,0 ) -k1,18056:10523651,14682403:-28417720 -) -) -g1,18056:28691027,14682403 -) -) -) -g1,18057:28690151,14682403 -k1,18057:32583029,14682403:3892878 -) -(1,18064:6630773,15547483:25952256,513147,134348 -h1,18063:6630773,15547483:983040,0,0 -k1,18063:8373123,15547483:271722 -k1,18063:10034280,15547483:271794 -k1,18063:12182371,15547483:271795 -k1,18063:14659452,15547483:271794 -k1,18063:15617408,15547483:271794 -k1,18063:16659906,15547483:271795 -k1,18063:20004028,15547483:271794 -k1,18063:20927251,15547483:271795 -(1,18063:20927251,15547483:0,452978,115847 -r1,18095:22340652,15547483:1413401,568825,115847 -k1,18063:20927251,15547483:-1413401 -) -(1,18063:20927251,15547483:1413401,452978,115847 -k1,18063:20927251,15547483:3277 -h1,18063:22337375,15547483:0,411205,112570 -) -k1,18063:22612446,15547483:271794 -k1,18063:25344463,15547483:271795 -k1,18063:27803849,15547483:271794 -k1,18063:28431504,15547483:271795 -k1,18063:31510860,15547483:271794 -k1,18064:32583029,15547483:0 -) -(1,18064:6630773,16412563:25952256,513147,134348 -k1,18063:8101119,16412563:263173 -k1,18063:8980330,16412563:263173 -k1,18063:10262588,16412563:263173 -k1,18063:12179234,16412563:263173 -k1,18063:14448464,16412563:263173 -k1,18063:16082650,16412563:263173 -k1,18063:19269384,16412563:263173 -k1,18063:20805922,16412563:263173 -k1,18063:23525384,16412563:263173 -k1,18063:25260496,16412563:263173 -k1,18063:27399965,16412563:263173 -(1,18063:27399965,16412563:0,414482,115847 -r1,18095:29516790,16412563:2116825,530329,115847 -k1,18063:27399965,16412563:-2116825 -) -(1,18063:27399965,16412563:2116825,414482,115847 -k1,18063:27399965,16412563:3277 -h1,18063:29513513,16412563:0,411205,112570 -) -k1,18063:29779963,16412563:263173 -k1,18063:30574633,16412563:263173 -k1,18063:31193666,16412563:263173 -k1,18063:32583029,16412563:0 -) -(1,18064:6630773,17277643:25952256,505283,126483 -k1,18063:7818829,17277643:253513 -k1,18063:10830752,17277643:253513 -k1,18063:11700303,17277643:253513 -k1,18063:12368604,17277643:253458 -k1,18063:13480639,17277643:253513 -k1,18063:15146453,17277643:253513 -k1,18063:15755826,17277643:253513 -k1,18063:19792732,17277643:253513 -k1,18063:21432331,17277643:253513 -(1,18063:21432331,17277643:0,452978,115847 -r1,18095:26362851,17277643:4930520,568825,115847 -k1,18063:21432331,17277643:-4930520 -) -(1,18063:21432331,17277643:4930520,452978,115847 -k1,18063:21432331,17277643:3277 -h1,18063:26359574,17277643:0,411205,112570 -) -k1,18063:26616364,17277643:253513 -k1,18063:27482639,17277643:253513 -k1,18063:28755237,17277643:253513 -k1,18063:29423538,17277643:253458 -k1,18063:32583029,17277643:0 -) -(1,18064:6630773,18142723:25952256,505283,126483 -k1,18064:32583030,18142723:23291496 -g1,18064:32583030,18142723 -) -v1,18066:6630773,18827578:0,393216,0 -(1,18070:6630773,19168261:25952256,733899,196608 -g1,18070:6630773,19168261 -g1,18070:6630773,19168261 -g1,18070:6434165,19168261 -(1,18070:6434165,19168261:0,733899,196608 -r1,18095:32779637,19168261:26345472,930507,196608 -k1,18070:6434165,19168261:-26345472 -) -(1,18070:6434165,19168261:26345472,733899,196608 -[1,18070:6630773,19168261:25952256,537291,0 -(1,18068:6630773,19055409:25952256,424439,112852 -(1,18067:6630773,19055409:0,0,0 -g1,18067:6630773,19055409 -g1,18067:6630773,19055409 -g1,18067:6303093,19055409 -(1,18067:6303093,19055409:0,0,0 -) -g1,18067:6630773,19055409 -) -k1,18068:6630773,19055409:0 -g1,18068:10614221,19055409 -g1,18068:11278129,19055409 -h1,18068:13601807,19055409:0,0,0 -k1,18068:32583029,19055409:18981222 -g1,18068:32583029,19055409 -) -] -) -g1,18070:32583029,19168261 -g1,18070:6630773,19168261 -g1,18070:6630773,19168261 -g1,18070:32583029,19168261 -g1,18070:32583029,19168261 -) -h1,18070:6630773,19364869:0,0,0 -(1,18074:6630773,20229949:25952256,505283,134348 -h1,18073:6630773,20229949:983040,0,0 -k1,18073:9462226,20229949:243436 -k1,18073:10724748,20229949:243437 -k1,18073:12357547,20229949:243436 -k1,18073:13592543,20229949:243436 -k1,18073:16793620,20229949:243437 -k1,18073:17392916,20229949:243436 -k1,18073:20586128,20229949:243437 -k1,18073:21512449,20229949:243436 -k1,18073:24919308,20229949:243436 -k1,18073:29827598,20229949:243437 -k1,18073:31931601,20229949:243436 -k1,18073:32583029,20229949:0 -) -(1,18074:6630773,21095029:25952256,505283,134348 -k1,18073:7613066,21095029:234527 -k1,18073:10609936,21095029:234527 -k1,18073:12041149,21095029:234526 -k1,18073:15265428,21095029:234527 -k1,18073:17186852,21095029:234527 -k1,18073:18914945,21095029:234527 -k1,18073:19835634,21095029:234527 -(1,18073:19835634,21095029:0,452978,122846 -r1,18095:24062730,21095029:4227096,575824,122846 -k1,18073:19835634,21095029:-4227096 -) -(1,18073:19835634,21095029:4227096,452978,122846 -k1,18073:19835634,21095029:3277 -h1,18073:24059453,21095029:0,411205,112570 -) -k1,18073:24297256,21095029:234526 -k1,18073:25723228,21095029:234527 -(1,18073:25723228,21095029:0,452978,122846 -r1,18095:29598612,21095029:3875384,575824,122846 -k1,18073:25723228,21095029:-3875384 -) -(1,18073:25723228,21095029:3875384,452978,122846 -k1,18073:25723228,21095029:3277 -h1,18073:29595335,21095029:0,411205,112570 -) -k1,18073:30006809,21095029:234527 -k1,18073:32583029,21095029:0 -) -(1,18074:6630773,21960109:25952256,513147,134348 -k1,18073:9576944,21960109:243466 -k1,18073:11838919,21960109:243466 -k1,18073:13030036,21960109:243466 -k1,18073:14292587,21960109:243466 -k1,18073:18607806,21960109:243467 -k1,18073:19534157,21960109:243466 -k1,18073:23263483,21960109:243466 -k1,18073:25146004,21960109:243466 -k1,18073:26783421,21960109:243466 -k1,18073:28699366,21960109:243466 -k1,18073:32583029,21960109:0 -) -(1,18074:6630773,22825189:25952256,513147,134348 -k1,18073:9156382,22825189:234470 -k1,18073:10409938,22825189:234471 -k1,18073:12030494,22825189:234470 -k1,18073:12924256,22825189:234470 -k1,18073:14609694,22825189:234471 -k1,18073:15331717,22825189:234435 -k1,18073:18373749,22825189:234470 -k1,18073:20899358,22825189:234470 -k1,18073:23019300,22825189:234471 -k1,18073:26031841,22825189:234470 -k1,18073:26925603,22825189:234470 -k1,18073:28179159,22825189:234471 -k1,18073:31577052,22825189:234470 -k1,18074:32583029,22825189:0 -) -(1,18074:6630773,23690269:25952256,513147,126483 -k1,18073:8787039,23690269:186909 -k1,18073:10106409,23690269:186908 -k1,18073:11041084,23690269:186909 -k1,18073:12741218,23690269:186908 -k1,18073:13579555,23690269:186909 -k1,18073:16807990,23690269:186909 -k1,18073:18013983,23690269:186908 -k1,18073:20211537,23690269:186909 -k1,18073:21966066,23690269:186908 -k1,18073:22508835,23690269:186909 -k1,18073:25207084,23690269:186909 -k1,18073:26010030,23690269:186908 -k1,18073:27216024,23690269:186909 -k1,18073:29287747,23690269:186908 -k1,18073:31037690,23690269:186909 -k1,18073:32583029,23690269:0 -) -(1,18074:6630773,24555349:25952256,505283,138281 -k1,18073:10327004,24555349:188744 -k1,18073:12807541,24555349:188743 -k1,18073:16134149,24555349:188744 -k1,18073:16974320,24555349:188743 -k1,18073:18629760,24555349:188744 -$1,18073:18629760,24555349 -$1,18073:19132421,24555349 -k1,18073:19321165,24555349:188744 -k1,18073:20701353,24555349:188743 -$1,18073:20701353,24555349 -$1,18073:21253166,24555349 -k1,18073:21441910,24555349:188744 -k1,18073:24978888,24555349:188744 -k1,18073:25853793,24555349:188743 -k1,18073:27422725,24555349:188744 -k1,18073:30453764,24555349:188743 -k1,18073:31661593,24555349:188744 -k1,18074:32583029,24555349:0 -) -(1,18074:6630773,25420429:25952256,513147,134348 -k1,18073:8596298,25420429:166562 -k1,18073:9422152,25420429:166562 -k1,18073:10607800,25420429:166563 -k1,18073:14498773,25420429:166562 -k1,18073:16864723,25420429:166562 -k1,18073:18177510,25420429:166562 -k1,18073:20362582,25420429:166563 -k1,18073:21212029,25420429:166562 -k1,18073:22877399,25420429:166562 -k1,18073:23659999,25420429:166562 -k1,18073:24845647,25420429:166563 -k1,18073:27536656,25420429:166562 -k1,18073:29224309,25420429:166562 -k1,18073:32583029,25420429:0 -) -(1,18074:6630773,26285509:25952256,513147,126483 -k1,18073:10014069,26285509:208732 -k1,18073:11369026,26285509:208732 -k1,18073:13608719,26285509:208732 -k1,18073:15533184,26285509:208732 -k1,18073:16834401,26285509:208732 -k1,18073:17702425,26285509:208732 -k1,18073:20176736,26285509:208731 -k1,18073:22287978,26285509:208732 -k1,18073:23688155,26285509:208732 -k1,18073:26591072,26285509:208732 -k1,18073:28674134,26285509:208732 -k1,18073:31478747,26285509:208732 -k1,18073:32583029,26285509:0 -) -(1,18074:6630773,27150589:25952256,513147,126483 -g1,18073:7577768,27150589 -g1,18073:11257614,27150589 -g1,18073:12850794,27150589 -(1,18073:12850794,27150589:0,452978,115847 -r1,18095:14615907,27150589:1765113,568825,115847 -k1,18073:12850794,27150589:-1765113 -) -(1,18073:12850794,27150589:1765113,452978,115847 -k1,18073:12850794,27150589:3277 -h1,18073:14612630,27150589:0,411205,112570 -) -g1,18073:14815136,27150589 -g1,18073:18040162,27150589 -g1,18073:20204816,27150589 -g1,18073:21055473,27150589 -g1,18073:22273787,27150589 -g1,18073:23750313,27150589 -g1,18073:25181619,27150589 -g1,18073:27659535,27150589 -h1,18073:29028582,27150589:0,0,0 -k1,18074:32583029,27150589:3294925 -g1,18074:32583029,27150589 -) -(1,18076:6630773,28015669:25952256,505283,138281 -h1,18075:6630773,28015669:983040,0,0 -k1,18075:10543635,28015669:178621 -k1,18075:11335018,28015669:178621 -k1,18075:12532724,28015669:178621 -k1,18075:14231780,28015669:178621 -k1,18075:16248686,28015669:178621 -(1,18075:16248686,28015669:0,452978,115847 -r1,18095:17662087,28015669:1413401,568825,115847 -k1,18075:16248686,28015669:-1413401 -) -(1,18075:16248686,28015669:1413401,452978,115847 -k1,18075:16248686,28015669:3277 -h1,18075:17658810,28015669:0,411205,112570 -) -k1,18075:17840708,28015669:178621 -k1,18075:18670757,28015669:178621 -$1,18075:18670757,28015669 -$1,18075:19173418,28015669 -k1,18075:19352039,28015669:178621 -k1,18075:20722105,28015669:178621 -(1,18075:20722105,28015669:0,414482,122846 -r1,18095:21783794,28015669:1061689,537328,122846 -k1,18075:20722105,28015669:-1061689 -) -(1,18075:20722105,28015669:1061689,414482,122846 -k1,18075:20722105,28015669:3277 -h1,18075:21780517,28015669:0,411205,112570 -) -k1,18075:21962415,28015669:178621 -k1,18075:22792464,28015669:178621 -$1,18075:22792464,28015669 -$1,18075:23344277,28015669 -k1,18075:23522898,28015669:178621 -k1,18075:27049753,28015669:178621 -k1,18075:29274408,28015669:178621 -k1,18075:30472114,28015669:178621 -k1,18075:32583029,28015669:0 -) -(1,18076:6630773,28880749:25952256,513147,138281 -k1,18075:7485690,28880749:195625 -k1,18075:8700399,28880749:195624 -k1,18075:10906669,28880749:195625 -k1,18075:14059934,28880749:195625 -k1,18075:15813350,28880749:195625 -k1,18075:17000534,28880749:195624 -k1,18075:18709385,28880749:195625 -k1,18075:19556438,28880749:195625 -k1,18075:21018219,28880749:195625 -k1,18075:23479423,28880749:195624 -k1,18075:25489740,28880749:195625 -k1,18075:26633016,28880749:195625 -k1,18075:27847726,28880749:195625 -$1,18075:27847726,28880749 -$1,18075:28350387,28880749 -k1,18075:28546011,28880749:195624 -k1,18075:29933081,28880749:195625 -$1,18075:29933081,28880749 -$1,18075:30484894,28880749 -k1,18075:30680519,28880749:195625 -k1,18075:32583029,28880749:0 -) -(1,18076:6630773,29745829:25952256,513147,138281 -k1,18075:7541314,29745829:224379 -k1,18075:10541798,29745829:224379 -k1,18075:11382214,29745829:224378 -k1,18075:12625678,29745829:224379 -k1,18075:14127354,29745829:224379 -k1,18075:15923942,29745829:224379 -k1,18075:17345008,29745829:224379 -k1,18075:20093834,29745829:224379 -k1,18075:21665632,29745829:224378 -$1,18075:21665632,29745829 -$1,18075:22168293,29745829 -k1,18075:22392672,29745829:224379 -k1,18075:23808496,29745829:224379 -$1,18075:23808496,29745829 -$1,18075:24360309,29745829 -k1,18075:24584688,29745829:224379 -k1,18075:26139448,29745829:224379 -k1,18075:28344979,29745829:224378 -k1,18075:29588443,29745829:224379 -k1,18075:31923737,29745829:224379 -k1,18075:32583029,29745829:0 -) -(1,18076:6630773,30610909:25952256,513147,134348 -k1,18075:7932428,30610909:282570 -k1,18075:10800392,30610909:282569 -k1,18075:14098273,30610909:282570 -k1,18075:17473486,30610909:282569 -k1,18075:18517584,30610909:282570 -k1,18075:19156013,30610909:282569 -k1,18075:21154971,30610909:282570 -k1,18075:23865649,30610909:282569 -k1,18075:25344906,30610909:282570 -k1,18075:26879868,30610909:282569 -k1,18075:29006621,30610909:282570 -k1,18075:30575006,30610909:282569 -k1,18075:32583029,30610909:0 -) -(1,18076:6630773,31475989:25952256,513147,134348 -k1,18075:7885842,31475989:235984 -k1,18075:10190142,31475989:235984 -k1,18075:11085419,31475989:235985 -k1,18075:12340488,31475989:235984 -k1,18075:15161867,31475989:235984 -k1,18075:18413162,31475989:235984 -k1,18075:21493409,31475989:235984 -k1,18075:23384177,31475989:235984 -k1,18075:24611722,31475989:235985 -k1,18075:25657076,31475989:235984 -k1,18075:28842835,31475989:235984 -k1,18075:31617684,31475989:235984 -k1,18075:32583029,31475989:0 -) -(1,18076:6630773,32341069:25952256,513147,126483 -g1,18075:9893155,32341069 -g1,18075:11040035,32341069 -g1,18075:12258349,32341069 -g1,18075:15650492,32341069 -k1,18076:32583029,32341069:12808357 -g1,18076:32583029,32341069 -) -v1,18078:6630773,33025924:0,393216,0 -(1,18083:6630773,34051462:25952256,1418754,196608 -g1,18083:6630773,34051462 -g1,18083:6630773,34051462 -g1,18083:6434165,34051462 -(1,18083:6434165,34051462:0,1418754,196608 -r1,18095:32779637,34051462:26345472,1615362,196608 -k1,18083:6434165,34051462:-26345472 -) -(1,18083:6434165,34051462:26345472,1418754,196608 -[1,18083:6630773,34051462:25952256,1222146,0 -(1,18080:6630773,33253755:25952256,424439,112852 -(1,18079:6630773,33253755:0,0,0 -g1,18079:6630773,33253755 -g1,18079:6630773,33253755 -g1,18079:6303093,33253755 -(1,18079:6303093,33253755:0,0,0 -) -g1,18079:6630773,33253755 -) -k1,18080:6630773,33253755:0 -g1,18080:10614221,33253755 -g1,18080:11278129,33253755 -k1,18080:11278129,33253755:0 -h1,18080:13601807,33253755:0,0,0 -k1,18080:32583029,33253755:18981222 -g1,18080:32583029,33253755 -) -(1,18081:6630773,33938610:25952256,424439,112852 -h1,18081:6630773,33938610:0,0,0 -g1,18081:6962727,33938610 -g1,18081:7294681,33938610 -g1,18081:7626635,33938610 -g1,18081:7958589,33938610 -g1,18081:8290543,33938610 -g1,18081:8622497,33938610 -g1,18081:8954451,33938610 -g1,18081:11610083,33938610 -g1,18081:12273991,33938610 -g1,18081:14265715,33938610 -g1,18081:14929623,33938610 -g1,18081:16921347,33938610 -g1,18081:17585255,33938610 -g1,18081:18249163,33938610 -h1,18081:19908933,33938610:0,0,0 -k1,18081:32583029,33938610:12674096 -g1,18081:32583029,33938610 -) -] -) -g1,18083:32583029,34051462 -g1,18083:6630773,34051462 -g1,18083:6630773,34051462 -g1,18083:32583029,34051462 -g1,18083:32583029,34051462 -) -h1,18083:6630773,34248070:0,0,0 -(1,18086:6630773,43397272:25952256,9083666,0 -k1,18086:10523651,43397272:3892878 -h1,18085:10523651,43397272:0,0,0 -(1,18085:10523651,43397272:18166500,9083666,0 -(1,18085:10523651,43397272:18167376,9083688,0 -(1,18085:10523651,43397272:18167376,9083688,0 -(1,18085:10523651,43397272:0,9083688,0 -(1,18085:10523651,43397272:0,14208860,0 -(1,18085:10523651,43397272:28417720,14208860,0 -) -k1,18085:10523651,43397272:-28417720 -) -) -g1,18085:28691027,43397272 -) -) -) -g1,18086:28690151,43397272 -k1,18086:32583029,43397272:3892878 -) -(1,18093:6630773,44262352:25952256,513147,134348 -h1,18092:6630773,44262352:983040,0,0 -k1,18092:12044174,44262352:243921 -k1,18092:13279654,44262352:243920 -k1,18092:15267488,44262352:243921 -k1,18092:17554166,44262352:243921 -k1,18092:18559614,44262352:243920 -k1,18092:19822620,44262352:243921 -k1,18092:22732546,44262352:243921 -k1,18092:23635758,44262352:243920 -k1,18092:24235539,44262352:243921 -k1,18092:26991455,44262352:243921 -k1,18092:30242822,44262352:243920 -k1,18092:31169628,44262352:243921 -(1,18092:31169628,44262352:0,414482,122846 -r1,18095:32583029,44262352:1413401,537328,122846 -k1,18092:31169628,44262352:-1413401 -) -(1,18092:31169628,44262352:1413401,414482,122846 -k1,18092:31169628,44262352:3277 -h1,18092:32579752,44262352:0,411205,112570 -) -k1,18092:32583029,44262352:0 -) -] -(1,18095:32583029,45706769:0,0,0 -g1,18095:32583029,45706769 +k1,18054:10523651,14682403:-28417720 +) +) +g1,18054:28691027,14682403 +) +) +) +g1,18055:28690151,14682403 +k1,18055:32583029,14682403:3892878 +) +(1,18062:6630773,15547483:25952256,513147,134348 +h1,18061:6630773,15547483:983040,0,0 +k1,18061:8373123,15547483:271722 +k1,18061:10034280,15547483:271794 +k1,18061:12182371,15547483:271795 +k1,18061:14659452,15547483:271794 +k1,18061:15617408,15547483:271794 +k1,18061:16659906,15547483:271795 +k1,18061:20004028,15547483:271794 +k1,18061:20927251,15547483:271795 +(1,18061:20927251,15547483:0,452978,115847 +r1,18093:22340652,15547483:1413401,568825,115847 +k1,18061:20927251,15547483:-1413401 +) +(1,18061:20927251,15547483:1413401,452978,115847 +k1,18061:20927251,15547483:3277 +h1,18061:22337375,15547483:0,411205,112570 +) +k1,18061:22612446,15547483:271794 +k1,18061:25344463,15547483:271795 +k1,18061:27803849,15547483:271794 +k1,18061:28431504,15547483:271795 +k1,18061:31510860,15547483:271794 +k1,18062:32583029,15547483:0 +) +(1,18062:6630773,16412563:25952256,513147,134348 +k1,18061:8101119,16412563:263173 +k1,18061:8980330,16412563:263173 +k1,18061:10262588,16412563:263173 +k1,18061:12179234,16412563:263173 +k1,18061:14448464,16412563:263173 +k1,18061:16082650,16412563:263173 +k1,18061:19269384,16412563:263173 +k1,18061:20805922,16412563:263173 +k1,18061:23525384,16412563:263173 +k1,18061:25260496,16412563:263173 +k1,18061:27399965,16412563:263173 +(1,18061:27399965,16412563:0,414482,115847 +r1,18093:29516790,16412563:2116825,530329,115847 +k1,18061:27399965,16412563:-2116825 +) +(1,18061:27399965,16412563:2116825,414482,115847 +k1,18061:27399965,16412563:3277 +h1,18061:29513513,16412563:0,411205,112570 +) +k1,18061:29779963,16412563:263173 +k1,18061:30574633,16412563:263173 +k1,18061:31193666,16412563:263173 +k1,18061:32583029,16412563:0 +) +(1,18062:6630773,17277643:25952256,505283,126483 +k1,18061:7818829,17277643:253513 +k1,18061:10830752,17277643:253513 +k1,18061:11700303,17277643:253513 +k1,18061:12368604,17277643:253458 +k1,18061:13480639,17277643:253513 +k1,18061:15146453,17277643:253513 +k1,18061:15755826,17277643:253513 +k1,18061:19792732,17277643:253513 +k1,18061:21432331,17277643:253513 +(1,18061:21432331,17277643:0,452978,115847 +r1,18093:26362851,17277643:4930520,568825,115847 +k1,18061:21432331,17277643:-4930520 +) +(1,18061:21432331,17277643:4930520,452978,115847 +k1,18061:21432331,17277643:3277 +h1,18061:26359574,17277643:0,411205,112570 +) +k1,18061:26616364,17277643:253513 +k1,18061:27482639,17277643:253513 +k1,18061:28755237,17277643:253513 +k1,18061:29423538,17277643:253458 +k1,18061:32583029,17277643:0 +) +(1,18062:6630773,18142723:25952256,505283,126483 +k1,18062:32583030,18142723:23291496 +g1,18062:32583030,18142723 +) +v1,18064:6630773,18827578:0,393216,0 +(1,18068:6630773,19168261:25952256,733899,196608 +g1,18068:6630773,19168261 +g1,18068:6630773,19168261 +g1,18068:6434165,19168261 +(1,18068:6434165,19168261:0,733899,196608 +r1,18093:32779637,19168261:26345472,930507,196608 +k1,18068:6434165,19168261:-26345472 +) +(1,18068:6434165,19168261:26345472,733899,196608 +[1,18068:6630773,19168261:25952256,537291,0 +(1,18066:6630773,19055409:25952256,424439,112852 +(1,18065:6630773,19055409:0,0,0 +g1,18065:6630773,19055409 +g1,18065:6630773,19055409 +g1,18065:6303093,19055409 +(1,18065:6303093,19055409:0,0,0 +) +g1,18065:6630773,19055409 +) +k1,18066:6630773,19055409:0 +g1,18066:10614221,19055409 +g1,18066:11278129,19055409 +h1,18066:13601807,19055409:0,0,0 +k1,18066:32583029,19055409:18981222 +g1,18066:32583029,19055409 +) +] +) +g1,18068:32583029,19168261 +g1,18068:6630773,19168261 +g1,18068:6630773,19168261 +g1,18068:32583029,19168261 +g1,18068:32583029,19168261 +) +h1,18068:6630773,19364869:0,0,0 +(1,18072:6630773,20229949:25952256,505283,134348 +h1,18071:6630773,20229949:983040,0,0 +k1,18071:9462226,20229949:243436 +k1,18071:10724748,20229949:243437 +k1,18071:12357547,20229949:243436 +k1,18071:13592543,20229949:243436 +k1,18071:16793620,20229949:243437 +k1,18071:17392916,20229949:243436 +k1,18071:20586128,20229949:243437 +k1,18071:21512449,20229949:243436 +k1,18071:24919308,20229949:243436 +k1,18071:29827598,20229949:243437 +k1,18071:31931601,20229949:243436 +k1,18071:32583029,20229949:0 +) +(1,18072:6630773,21095029:25952256,505283,134348 +k1,18071:7613066,21095029:234527 +k1,18071:10609936,21095029:234527 +k1,18071:12041149,21095029:234526 +k1,18071:15265428,21095029:234527 +k1,18071:17186852,21095029:234527 +k1,18071:18914945,21095029:234527 +k1,18071:19835634,21095029:234527 +(1,18071:19835634,21095029:0,452978,122846 +r1,18093:24062730,21095029:4227096,575824,122846 +k1,18071:19835634,21095029:-4227096 +) +(1,18071:19835634,21095029:4227096,452978,122846 +k1,18071:19835634,21095029:3277 +h1,18071:24059453,21095029:0,411205,112570 +) +k1,18071:24297256,21095029:234526 +k1,18071:25723228,21095029:234527 +(1,18071:25723228,21095029:0,452978,122846 +r1,18093:29598612,21095029:3875384,575824,122846 +k1,18071:25723228,21095029:-3875384 +) +(1,18071:25723228,21095029:3875384,452978,122846 +k1,18071:25723228,21095029:3277 +h1,18071:29595335,21095029:0,411205,112570 +) +k1,18071:30006809,21095029:234527 +k1,18071:32583029,21095029:0 +) +(1,18072:6630773,21960109:25952256,513147,134348 +k1,18071:9576944,21960109:243466 +k1,18071:11838919,21960109:243466 +k1,18071:13030036,21960109:243466 +k1,18071:14292587,21960109:243466 +k1,18071:18607806,21960109:243467 +k1,18071:19534157,21960109:243466 +k1,18071:23263483,21960109:243466 +k1,18071:25146004,21960109:243466 +k1,18071:26783421,21960109:243466 +k1,18071:28699366,21960109:243466 +k1,18071:32583029,21960109:0 +) +(1,18072:6630773,22825189:25952256,513147,134348 +k1,18071:9156382,22825189:234470 +k1,18071:10409938,22825189:234471 +k1,18071:12030494,22825189:234470 +k1,18071:12924256,22825189:234470 +k1,18071:14609694,22825189:234471 +k1,18071:15331717,22825189:234435 +k1,18071:18373749,22825189:234470 +k1,18071:20899358,22825189:234470 +k1,18071:23019300,22825189:234471 +k1,18071:26031841,22825189:234470 +k1,18071:26925603,22825189:234470 +k1,18071:28179159,22825189:234471 +k1,18071:31577052,22825189:234470 +k1,18072:32583029,22825189:0 +) +(1,18072:6630773,23690269:25952256,513147,126483 +k1,18071:8787039,23690269:186909 +k1,18071:10106409,23690269:186908 +k1,18071:11041084,23690269:186909 +k1,18071:12741218,23690269:186908 +k1,18071:13579555,23690269:186909 +k1,18071:16807990,23690269:186909 +k1,18071:18013983,23690269:186908 +k1,18071:20211537,23690269:186909 +k1,18071:21966066,23690269:186908 +k1,18071:22508835,23690269:186909 +k1,18071:25207084,23690269:186909 +k1,18071:26010030,23690269:186908 +k1,18071:27216024,23690269:186909 +k1,18071:29287747,23690269:186908 +k1,18071:31037690,23690269:186909 +k1,18071:32583029,23690269:0 +) +(1,18072:6630773,24555349:25952256,505283,138281 +k1,18071:10327004,24555349:188744 +k1,18071:12807541,24555349:188743 +k1,18071:16134149,24555349:188744 +k1,18071:16974320,24555349:188743 +k1,18071:18629760,24555349:188744 +$1,18071:18629760,24555349 +$1,18071:19132421,24555349 +k1,18071:19321165,24555349:188744 +k1,18071:20701353,24555349:188743 +$1,18071:20701353,24555349 +$1,18071:21253166,24555349 +k1,18071:21441910,24555349:188744 +k1,18071:24978888,24555349:188744 +k1,18071:25853793,24555349:188743 +k1,18071:27422725,24555349:188744 +k1,18071:30453764,24555349:188743 +k1,18071:31661593,24555349:188744 +k1,18072:32583029,24555349:0 +) +(1,18072:6630773,25420429:25952256,513147,134348 +k1,18071:8596298,25420429:166562 +k1,18071:9422152,25420429:166562 +k1,18071:10607800,25420429:166563 +k1,18071:14498773,25420429:166562 +k1,18071:16864723,25420429:166562 +k1,18071:18177510,25420429:166562 +k1,18071:20362582,25420429:166563 +k1,18071:21212029,25420429:166562 +k1,18071:22877399,25420429:166562 +k1,18071:23659999,25420429:166562 +k1,18071:24845647,25420429:166563 +k1,18071:27536656,25420429:166562 +k1,18071:29224309,25420429:166562 +k1,18071:32583029,25420429:0 +) +(1,18072:6630773,26285509:25952256,513147,126483 +k1,18071:10014069,26285509:208732 +k1,18071:11369026,26285509:208732 +k1,18071:13608719,26285509:208732 +k1,18071:15533184,26285509:208732 +k1,18071:16834401,26285509:208732 +k1,18071:17702425,26285509:208732 +k1,18071:20176736,26285509:208731 +k1,18071:22287978,26285509:208732 +k1,18071:23688155,26285509:208732 +k1,18071:26591072,26285509:208732 +k1,18071:28674134,26285509:208732 +k1,18071:31478747,26285509:208732 +k1,18071:32583029,26285509:0 +) +(1,18072:6630773,27150589:25952256,513147,126483 +g1,18071:7577768,27150589 +g1,18071:11257614,27150589 +g1,18071:12850794,27150589 +(1,18071:12850794,27150589:0,452978,115847 +r1,18093:14615907,27150589:1765113,568825,115847 +k1,18071:12850794,27150589:-1765113 +) +(1,18071:12850794,27150589:1765113,452978,115847 +k1,18071:12850794,27150589:3277 +h1,18071:14612630,27150589:0,411205,112570 +) +g1,18071:14815136,27150589 +g1,18071:18040162,27150589 +g1,18071:20204816,27150589 +g1,18071:21055473,27150589 +g1,18071:22273787,27150589 +g1,18071:23750313,27150589 +g1,18071:25181619,27150589 +g1,18071:27659535,27150589 +h1,18071:29028582,27150589:0,0,0 +k1,18072:32583029,27150589:3294925 +g1,18072:32583029,27150589 +) +(1,18074:6630773,28015669:25952256,505283,138281 +h1,18073:6630773,28015669:983040,0,0 +k1,18073:10543635,28015669:178621 +k1,18073:11335018,28015669:178621 +k1,18073:12532724,28015669:178621 +k1,18073:14231780,28015669:178621 +k1,18073:16248686,28015669:178621 +(1,18073:16248686,28015669:0,452978,115847 +r1,18093:17662087,28015669:1413401,568825,115847 +k1,18073:16248686,28015669:-1413401 +) +(1,18073:16248686,28015669:1413401,452978,115847 +k1,18073:16248686,28015669:3277 +h1,18073:17658810,28015669:0,411205,112570 +) +k1,18073:17840708,28015669:178621 +k1,18073:18670757,28015669:178621 +$1,18073:18670757,28015669 +$1,18073:19173418,28015669 +k1,18073:19352039,28015669:178621 +k1,18073:20722105,28015669:178621 +(1,18073:20722105,28015669:0,414482,122846 +r1,18093:21783794,28015669:1061689,537328,122846 +k1,18073:20722105,28015669:-1061689 +) +(1,18073:20722105,28015669:1061689,414482,122846 +k1,18073:20722105,28015669:3277 +h1,18073:21780517,28015669:0,411205,112570 +) +k1,18073:21962415,28015669:178621 +k1,18073:22792464,28015669:178621 +$1,18073:22792464,28015669 +$1,18073:23344277,28015669 +k1,18073:23522898,28015669:178621 +k1,18073:27049753,28015669:178621 +k1,18073:29274408,28015669:178621 +k1,18073:30472114,28015669:178621 +k1,18073:32583029,28015669:0 +) +(1,18074:6630773,28880749:25952256,513147,138281 +k1,18073:7485690,28880749:195625 +k1,18073:8700399,28880749:195624 +k1,18073:10906669,28880749:195625 +k1,18073:14059934,28880749:195625 +k1,18073:15813350,28880749:195625 +k1,18073:17000534,28880749:195624 +k1,18073:18709385,28880749:195625 +k1,18073:19556438,28880749:195625 +k1,18073:21018219,28880749:195625 +k1,18073:23479423,28880749:195624 +k1,18073:25489740,28880749:195625 +k1,18073:26633016,28880749:195625 +k1,18073:27847726,28880749:195625 +$1,18073:27847726,28880749 +$1,18073:28350387,28880749 +k1,18073:28546011,28880749:195624 +k1,18073:29933081,28880749:195625 +$1,18073:29933081,28880749 +$1,18073:30484894,28880749 +k1,18073:30680519,28880749:195625 +k1,18073:32583029,28880749:0 +) +(1,18074:6630773,29745829:25952256,513147,138281 +k1,18073:7541314,29745829:224379 +k1,18073:10541798,29745829:224379 +k1,18073:11382214,29745829:224378 +k1,18073:12625678,29745829:224379 +k1,18073:14127354,29745829:224379 +k1,18073:15923942,29745829:224379 +k1,18073:17345008,29745829:224379 +k1,18073:20093834,29745829:224379 +k1,18073:21665632,29745829:224378 +$1,18073:21665632,29745829 +$1,18073:22168293,29745829 +k1,18073:22392672,29745829:224379 +k1,18073:23808496,29745829:224379 +$1,18073:23808496,29745829 +$1,18073:24360309,29745829 +k1,18073:24584688,29745829:224379 +k1,18073:26139448,29745829:224379 +k1,18073:28344979,29745829:224378 +k1,18073:29588443,29745829:224379 +k1,18073:31923737,29745829:224379 +k1,18073:32583029,29745829:0 +) +(1,18074:6630773,30610909:25952256,513147,134348 +k1,18073:7932428,30610909:282570 +k1,18073:10800392,30610909:282569 +k1,18073:14098273,30610909:282570 +k1,18073:17473486,30610909:282569 +k1,18073:18517584,30610909:282570 +k1,18073:19156013,30610909:282569 +k1,18073:21154971,30610909:282570 +k1,18073:23865649,30610909:282569 +k1,18073:25344906,30610909:282570 +k1,18073:26879868,30610909:282569 +k1,18073:29006621,30610909:282570 +k1,18073:30575006,30610909:282569 +k1,18073:32583029,30610909:0 +) +(1,18074:6630773,31475989:25952256,513147,134348 +k1,18073:7885842,31475989:235984 +k1,18073:10190142,31475989:235984 +k1,18073:11085419,31475989:235985 +k1,18073:12340488,31475989:235984 +k1,18073:15161867,31475989:235984 +k1,18073:18413162,31475989:235984 +k1,18073:21493409,31475989:235984 +k1,18073:23384177,31475989:235984 +k1,18073:24611722,31475989:235985 +k1,18073:25657076,31475989:235984 +k1,18073:28842835,31475989:235984 +k1,18073:31617684,31475989:235984 +k1,18073:32583029,31475989:0 +) +(1,18074:6630773,32341069:25952256,513147,126483 +g1,18073:9893155,32341069 +g1,18073:11040035,32341069 +g1,18073:12258349,32341069 +g1,18073:15650492,32341069 +k1,18074:32583029,32341069:12808357 +g1,18074:32583029,32341069 +) +v1,18076:6630773,33025924:0,393216,0 +(1,18081:6630773,34051462:25952256,1418754,196608 +g1,18081:6630773,34051462 +g1,18081:6630773,34051462 +g1,18081:6434165,34051462 +(1,18081:6434165,34051462:0,1418754,196608 +r1,18093:32779637,34051462:26345472,1615362,196608 +k1,18081:6434165,34051462:-26345472 +) +(1,18081:6434165,34051462:26345472,1418754,196608 +[1,18081:6630773,34051462:25952256,1222146,0 +(1,18078:6630773,33253755:25952256,424439,112852 +(1,18077:6630773,33253755:0,0,0 +g1,18077:6630773,33253755 +g1,18077:6630773,33253755 +g1,18077:6303093,33253755 +(1,18077:6303093,33253755:0,0,0 +) +g1,18077:6630773,33253755 +) +k1,18078:6630773,33253755:0 +g1,18078:10614221,33253755 +g1,18078:11278129,33253755 +k1,18078:11278129,33253755:0 +h1,18078:13601807,33253755:0,0,0 +k1,18078:32583029,33253755:18981222 +g1,18078:32583029,33253755 +) +(1,18079:6630773,33938610:25952256,424439,112852 +h1,18079:6630773,33938610:0,0,0 +g1,18079:6962727,33938610 +g1,18079:7294681,33938610 +g1,18079:7626635,33938610 +g1,18079:7958589,33938610 +g1,18079:8290543,33938610 +g1,18079:8622497,33938610 +g1,18079:8954451,33938610 +g1,18079:11610083,33938610 +g1,18079:12273991,33938610 +g1,18079:14265715,33938610 +g1,18079:14929623,33938610 +g1,18079:16921347,33938610 +g1,18079:17585255,33938610 +g1,18079:18249163,33938610 +h1,18079:19908933,33938610:0,0,0 +k1,18079:32583029,33938610:12674096 +g1,18079:32583029,33938610 +) +] +) +g1,18081:32583029,34051462 +g1,18081:6630773,34051462 +g1,18081:6630773,34051462 +g1,18081:32583029,34051462 +g1,18081:32583029,34051462 +) +h1,18081:6630773,34248070:0,0,0 +(1,18084:6630773,43397272:25952256,9083666,0 +k1,18084:10523651,43397272:3892878 +h1,18083:10523651,43397272:0,0,0 +(1,18083:10523651,43397272:18166500,9083666,0 +(1,18083:10523651,43397272:18167376,9083688,0 +(1,18083:10523651,43397272:18167376,9083688,0 +(1,18083:10523651,43397272:0,9083688,0 +(1,18083:10523651,43397272:0,14208860,0 +(1,18083:10523651,43397272:28417720,14208860,0 +) +k1,18083:10523651,43397272:-28417720 +) +) +g1,18083:28691027,43397272 +) +) +) +g1,18084:28690151,43397272 +k1,18084:32583029,43397272:3892878 +) +(1,18091:6630773,44262352:25952256,513147,134348 +h1,18090:6630773,44262352:983040,0,0 +k1,18090:12044174,44262352:243921 +k1,18090:13279654,44262352:243920 +k1,18090:15267488,44262352:243921 +k1,18090:17554166,44262352:243921 +k1,18090:18559614,44262352:243920 +k1,18090:19822620,44262352:243921 +k1,18090:22732546,44262352:243921 +k1,18090:23635758,44262352:243920 +k1,18090:24235539,44262352:243921 +k1,18090:26991455,44262352:243921 +k1,18090:30242822,44262352:243920 +k1,18090:31169628,44262352:243921 +(1,18090:31169628,44262352:0,414482,122846 +r1,18093:32583029,44262352:1413401,537328,122846 +k1,18090:31169628,44262352:-1413401 +) +(1,18090:31169628,44262352:1413401,414482,122846 +k1,18090:31169628,44262352:3277 +h1,18090:32579752,44262352:0,411205,112570 +) +k1,18090:32583029,44262352:0 +) +] +(1,18093:32583029,45706769:0,0,0 +g1,18093:32583029,45706769 ) ) ] -(1,18095:6630773,47279633:25952256,0,0 -h1,18095:6630773,47279633:25952256,0,0 +(1,18093:6630773,47279633:25952256,0,0 +h1,18093:6630773,47279633:25952256,0,0 ) ] -(1,18095:4262630,4025873:0,0,0 -[1,18095:-473656,4025873:0,0,0 -(1,18095:-473656,-710413:0,0,0 -(1,18095:-473656,-710413:0,0,0 -g1,18095:-473656,-710413 +(1,18093:4262630,4025873:0,0,0 +[1,18093:-473656,4025873:0,0,0 +(1,18093:-473656,-710413:0,0,0 +(1,18093:-473656,-710413:0,0,0 +g1,18093:-473656,-710413 ) -g1,18095:-473656,-710413 +g1,18093:-473656,-710413 ) ] ) ] !19596 -}294 -Input:3002:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3003:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3004:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3005:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}295 Input:3006:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3009:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3010:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3013:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3014:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{295 -[1,18162:4262630,47279633:28320399,43253760,0 -(1,18162:4262630,4025873:0,0,0 -[1,18162:-473656,4025873:0,0,0 -(1,18162:-473656,-710413:0,0,0 -(1,18162:-473656,-644877:0,0,0 -k1,18162:-473656,-644877:-65536 +{296 +[1,18160:4262630,47279633:28320399,43253760,0 +(1,18160:4262630,4025873:0,0,0 +[1,18160:-473656,4025873:0,0,0 +(1,18160:-473656,-710413:0,0,0 +(1,18160:-473656,-644877:0,0,0 +k1,18160:-473656,-644877:-65536 ) -(1,18162:-473656,4736287:0,0,0 -k1,18162:-473656,4736287:5209943 +(1,18160:-473656,4736287:0,0,0 +k1,18160:-473656,4736287:5209943 ) -g1,18162:-473656,-710413 +g1,18160:-473656,-710413 ) ] ) -[1,18162:6630773,47279633:25952256,43253760,0 -[1,18162:6630773,4812305:25952256,786432,0 -(1,18162:6630773,4812305:25952256,513147,126483 -(1,18162:6630773,4812305:25952256,513147,126483 -g1,18162:3078558,4812305 -[1,18162:3078558,4812305:0,0,0 -(1,18162:3078558,2439708:0,1703936,0 -k1,18162:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18162:2537886,2439708:1179648,16384,0 +[1,18160:6630773,47279633:25952256,43253760,0 +[1,18160:6630773,4812305:25952256,786432,0 +(1,18160:6630773,4812305:25952256,513147,126483 +(1,18160:6630773,4812305:25952256,513147,126483 +g1,18160:3078558,4812305 +[1,18160:3078558,4812305:0,0,0 +(1,18160:3078558,2439708:0,1703936,0 +k1,18160:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18160:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18162:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18160:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18162:3078558,4812305:0,0,0 -(1,18162:3078558,2439708:0,1703936,0 -g1,18162:29030814,2439708 -g1,18162:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18162:36151628,1915420:16384,1179648,0 +[1,18160:3078558,4812305:0,0,0 +(1,18160:3078558,2439708:0,1703936,0 +g1,18160:29030814,2439708 +g1,18160:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18160:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18162:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18160:37855564,2439708:1179648,16384,0 ) ) -k1,18162:3078556,2439708:-34777008 +k1,18160:3078556,2439708:-34777008 ) ] -[1,18162:3078558,4812305:0,0,0 -(1,18162:3078558,49800853:0,16384,2228224 -k1,18162:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18162:2537886,49800853:1179648,16384,0 +[1,18160:3078558,4812305:0,0,0 +(1,18160:3078558,49800853:0,16384,2228224 +k1,18160:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18160:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18162:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18160:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18162:3078558,4812305:0,0,0 -(1,18162:3078558,49800853:0,16384,2228224 -g1,18162:29030814,49800853 -g1,18162:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18162:36151628,51504789:16384,1179648,0 +[1,18160:3078558,4812305:0,0,0 +(1,18160:3078558,49800853:0,16384,2228224 +g1,18160:29030814,49800853 +g1,18160:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18160:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18162:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18160:37855564,49800853:1179648,16384,0 ) ) -k1,18162:3078556,49800853:-34777008 -) -] -g1,18162:6630773,4812305 -k1,18162:21386205,4812305:13560055 -g1,18162:21999622,4812305 -g1,18162:25611966,4812305 -g1,18162:28956923,4812305 -g1,18162:29772190,4812305 -) -) -] -[1,18162:6630773,45706769:25952256,40108032,0 -(1,18162:6630773,45706769:25952256,40108032,0 -(1,18162:6630773,45706769:0,0,0 -g1,18162:6630773,45706769 -) -[1,18162:6630773,45706769:25952256,40108032,0 -(1,18093:6630773,6254097:25952256,505283,134348 -k1,18092:7515924,6254097:233723 -k1,18092:8768732,6254097:233723 -k1,18092:10279752,6254097:233723 -k1,18092:12625700,6254097:233723 -k1,18092:14900214,6254097:233723 -k1,18092:17321528,6254097:233722 -(1,18092:17321528,6254097:0,452978,122846 -r1,18162:21548624,6254097:4227096,575824,122846 -k1,18092:17321528,6254097:-4227096 -) -(1,18092:17321528,6254097:4227096,452978,122846 -k1,18092:17321528,6254097:3277 -h1,18092:21545347,6254097:0,411205,112570 -) -k1,18092:21782347,6254097:233723 -k1,18092:24062104,6254097:233723 -k1,18092:25314912,6254097:233723 -k1,18092:29620387,6254097:233723 -k1,18092:31896867,6254097:233723 -k1,18092:32583029,6254097:0 -) -(1,18093:6630773,7119177:25952256,505283,126483 -g1,18092:8848511,7119177 -g1,18092:9730625,7119177 -k1,18093:32583030,7119177:20158220 -g1,18093:32583030,7119177 -) -v1,18095:6630773,7804032:0,393216,0 -(1,18101:6630773,9514425:25952256,2103609,196608 -g1,18101:6630773,9514425 -g1,18101:6630773,9514425 -g1,18101:6434165,9514425 -(1,18101:6434165,9514425:0,2103609,196608 -r1,18162:32779637,9514425:26345472,2300217,196608 -k1,18101:6434165,9514425:-26345472 -) -(1,18101:6434165,9514425:26345472,2103609,196608 -[1,18101:6630773,9514425:25952256,1907001,0 -(1,18097:6630773,8031863:25952256,424439,112852 -(1,18096:6630773,8031863:0,0,0 -g1,18096:6630773,8031863 -g1,18096:6630773,8031863 -g1,18096:6303093,8031863 -(1,18096:6303093,8031863:0,0,0 -) -g1,18096:6630773,8031863 -) -k1,18097:6630773,8031863:0 -g1,18097:10614221,8031863 -g1,18097:11278129,8031863 -k1,18097:11278129,8031863:0 -h1,18097:13601807,8031863:0,0,0 -k1,18097:32583029,8031863:18981222 -g1,18097:32583029,8031863 -) -(1,18098:6630773,8716718:25952256,424439,112852 -h1,18098:6630773,8716718:0,0,0 -g1,18098:6962727,8716718 -g1,18098:7294681,8716718 -g1,18098:7626635,8716718 -g1,18098:7958589,8716718 -g1,18098:8290543,8716718 -g1,18098:8622497,8716718 -g1,18098:8954451,8716718 -g1,18098:11610083,8716718 -g1,18098:12273991,8716718 -g1,18098:14265715,8716718 -g1,18098:14929623,8716718 -g1,18098:16921347,8716718 -g1,18098:17585255,8716718 -g1,18098:18249163,8716718 -g1,18098:20240887,8716718 -h1,18098:20572841,8716718:0,0,0 -k1,18098:32583029,8716718:12010188 -g1,18098:32583029,8716718 -) -(1,18099:6630773,9401573:25952256,424439,112852 -h1,18099:6630773,9401573:0,0,0 -g1,18099:6962727,9401573 -g1,18099:7294681,9401573 -k1,18099:7294681,9401573:0 -h1,18099:11278128,9401573:0,0,0 -k1,18099:32583028,9401573:21304900 -g1,18099:32583028,9401573 -) -] -) -g1,18101:32583029,9514425 -g1,18101:6630773,9514425 -g1,18101:6630773,9514425 -g1,18101:32583029,9514425 -g1,18101:32583029,9514425 -) -h1,18101:6630773,9711033:0,0,0 -(1,18104:6630773,18860235:25952256,9083666,0 -k1,18104:10523651,18860235:3892878 -h1,18103:10523651,18860235:0,0,0 -(1,18103:10523651,18860235:18166500,9083666,0 -(1,18103:10523651,18860235:18167376,9083688,0 -(1,18103:10523651,18860235:18167376,9083688,0 -(1,18103:10523651,18860235:0,9083688,0 -(1,18103:10523651,18860235:0,14208860,0 -(1,18103:10523651,18860235:28417720,14208860,0 -) -k1,18103:10523651,18860235:-28417720 -) -) -g1,18103:28691027,18860235 -) -) -) -g1,18104:28690151,18860235 -k1,18104:32583029,18860235:3892878 -) -v1,18111:6630773,19725315:0,393216,0 -(1,18135:6630773,29210851:25952256,9878752,0 -g1,18135:6630773,29210851 -g1,18135:6237557,29210851 -r1,18162:6368629,29210851:131072,9878752,0 -g1,18135:6567858,29210851 -g1,18135:6764466,29210851 -[1,18135:6764466,29210851:25818563,9878752,0 -(1,18112:6764466,20086492:25818563,754393,260573 -(1,18111:6764466,20086492:0,754393,260573 -r1,18162:7856192,20086492:1091726,1014966,260573 -k1,18111:6764466,20086492:-1091726 -) -(1,18111:6764466,20086492:1091726,754393,260573 -) -k1,18111:8133199,20086492:277007 -k1,18111:8460879,20086492:327680 -k1,18111:9365722,20086492:277008 -k1,18111:10661814,20086492:277007 -k1,18111:13930540,20086492:277007 -k1,18111:16236543,20086492:277008 -k1,18111:17532635,20086492:277007 -k1,18111:19417240,20086492:277007 -k1,18111:21198299,20086492:277008 -k1,18111:23825427,20086492:277007 -k1,18111:28592961,20086492:277007 -k1,18111:30755440,20086492:277008 -k1,18111:31563944,20086492:277007 -k1,18111:32583029,20086492:0 -) -(1,18112:6764466,20951572:25818563,513147,134348 -k1,18111:9196793,20951572:166747 -k1,18111:9976302,20951572:166747 -k1,18111:11162133,20951572:166746 -k1,18111:11743691,20951572:166715 -k1,18111:14504353,20951572:166747 -k1,18111:17605802,20951572:166747 -k1,18111:18458710,20951572:166746 -k1,18111:20019408,20951572:166747 -k1,18111:21888125,20951572:166747 -k1,18111:22469683,20951572:166715 -k1,18111:25099928,20951572:166747 -k1,18111:27622693,20951572:166746 -k1,18111:28893722,20951572:166747 -k1,18111:29808235,20951572:166747 -k1,18111:32583029,20951572:0 -) -(1,18112:6764466,21816652:25818563,505283,7863 -g1,18111:7615123,21816652 -g1,18111:8170212,21816652 -k1,18112:32583028,21816652:21849048 -g1,18112:32583028,21816652 -) -v1,18114:6764466,22501507:0,393216,0 -(1,18120:6764466,24211900:25818563,2103609,196608 -g1,18120:6764466,24211900 -g1,18120:6764466,24211900 -g1,18120:6567858,24211900 -(1,18120:6567858,24211900:0,2103609,196608 -r1,18162:32779637,24211900:26211779,2300217,196608 -k1,18120:6567857,24211900:-26211780 -) -(1,18120:6567858,24211900:26211779,2103609,196608 -[1,18120:6764466,24211900:25818563,1907001,0 -(1,18116:6764466,22729338:25818563,424439,112852 -(1,18115:6764466,22729338:0,0,0 -g1,18115:6764466,22729338 -g1,18115:6764466,22729338 -g1,18115:6436786,22729338 -(1,18115:6436786,22729338:0,0,0 -) -g1,18115:6764466,22729338 -) -g1,18116:7760328,22729338 -g1,18116:8756190,22729338 -g1,18116:12739638,22729338 -g1,18116:13403546,22729338 -k1,18116:13403546,22729338:0 -h1,18116:15727224,22729338:0,0,0 -k1,18116:32583028,22729338:16855804 -g1,18116:32583028,22729338 -) -(1,18117:6764466,23414193:25818563,424439,112852 -h1,18117:6764466,23414193:0,0,0 -g1,18117:7096420,23414193 -g1,18117:7428374,23414193 -g1,18117:7760328,23414193 -g1,18117:8092282,23414193 -g1,18117:8424236,23414193 -g1,18117:8756190,23414193 -g1,18117:9088144,23414193 -g1,18117:9420098,23414193 -g1,18117:9752052,23414193 -g1,18117:10084006,23414193 -g1,18117:10415960,23414193 -g1,18117:10747914,23414193 -g1,18117:11079868,23414193 -g1,18117:13735500,23414193 -g1,18117:14399408,23414193 -g1,18117:16391132,23414193 -g1,18117:17055040,23414193 -g1,18117:19046764,23414193 -g1,18117:19710672,23414193 -g1,18117:20374580,23414193 -g1,18117:22366304,23414193 -h1,18117:22698258,23414193:0,0,0 -k1,18117:32583029,23414193:9884771 -g1,18117:32583029,23414193 -) -(1,18118:6764466,24099048:25818563,424439,112852 -h1,18118:6764466,24099048:0,0,0 -g1,18118:7096420,24099048 -g1,18118:7428374,24099048 -g1,18118:7760328,24099048 -g1,18118:8092282,24099048 -g1,18118:8424236,24099048 -g1,18118:8756190,24099048 -g1,18118:9088144,24099048 -k1,18118:9088144,24099048:0 -h1,18118:13071591,24099048:0,0,0 -k1,18118:32583029,24099048:19511438 -g1,18118:32583029,24099048 -) -] -) -g1,18120:32583029,24211900 -g1,18120:6764466,24211900 -g1,18120:6764466,24211900 -g1,18120:32583029,24211900 -g1,18120:32583029,24211900 -) -h1,18120:6764466,24408508:0,0,0 -(1,18125:6764466,25273588:25818563,513147,126483 -g1,18124:8155140,25273588 -g1,18124:10704490,25273588 -g1,18124:11516481,25273588 -g1,18124:12071570,25273588 -g1,18124:13724388,25273588 -g1,18124:15522695,25273588 -g1,18124:16913369,25273588 -g1,18124:18924013,25273588 -g1,18124:19774670,25273588 -g1,18124:21165344,25273588 -g1,18124:22776874,25273588 -g1,18124:24543724,25273588 -g1,18124:26056295,25273588 -g1,18124:27064894,25273588 -k1,18125:32583029,25273588:4120908 -g1,18125:32583029,25273588 -) -v1,18127:6764466,25958443:0,393216,0 -(1,18131:6764466,26292520:25818563,727293,196608 -g1,18131:6764466,26292520 -g1,18131:6764466,26292520 -g1,18131:6567858,26292520 -(1,18131:6567858,26292520:0,727293,196608 -r1,18162:32779637,26292520:26211779,923901,196608 -k1,18131:6567857,26292520:-26211780 -) -(1,18131:6567858,26292520:26211779,727293,196608 -[1,18131:6764466,26292520:25818563,530685,0 -(1,18129:6764466,26186274:25818563,424439,106246 -(1,18128:6764466,26186274:0,0,0 -g1,18128:6764466,26186274 -g1,18128:6764466,26186274 -g1,18128:6436786,26186274 -(1,18128:6436786,26186274:0,0,0 -) -g1,18128:6764466,26186274 -) -k1,18129:6764466,26186274:0 -h1,18129:9752052,26186274:0,0,0 -k1,18129:32583028,26186274:22830976 -g1,18129:32583028,26186274 -) -] -) -g1,18131:32583029,26292520 -g1,18131:6764466,26292520 -g1,18131:6764466,26292520 -g1,18131:32583029,26292520 -g1,18131:32583029,26292520 -) -h1,18131:6764466,26489128:0,0,0 -(1,18135:6764466,27354208:25818563,505283,134348 -h1,18134:6764466,27354208:983040,0,0 -k1,18134:10049832,27354208:254326 -k1,18134:11495604,27354208:254327 -k1,18134:13451900,27354208:254326 -k1,18134:16575393,27354208:254327 -k1,18134:17934001,27354208:254326 -k1,18134:18936094,27354208:254327 -k1,18134:20476236,27354208:254326 -k1,18134:22695987,27354208:254326 -k1,18134:23601742,27354208:254327 -k1,18134:24211928,27354208:254326 -k1,18134:26277670,27354208:254327 -k1,18134:28557714,27354208:254326 -k1,18134:29498203,27354208:254327 -k1,18134:30771614,27354208:254326 -k1,18134:32583029,27354208:0 -) -(1,18135:6764466,28219288:25818563,513147,134348 -k1,18134:9240908,28219288:186614 -k1,18134:10419081,28219288:186613 -k1,18134:11671966,28219288:186614 -k1,18134:12877665,28219288:186614 -k1,18134:16014054,28219288:186614 -k1,18134:20865520,28219288:186613 -k1,18134:21711426,28219288:186614 -k1,18134:22917125,28219288:186614 -k1,18134:24711337,28219288:186614 -k1,18134:28454589,28219288:186613 -k1,18134:29713372,28219288:186614 -k1,18134:32227169,28219288:186614 -k1,18134:32583029,28219288:0 -) -(1,18135:6764466,29084368:25818563,505283,126483 -g1,18134:8857685,29084368 -g1,18134:10427927,29084368 -g1,18134:12016519,29084368 -g1,18134:14514096,29084368 -g1,18134:15364753,29084368 -g1,18134:17206314,29084368 -k1,18135:32583029,29084368:13685231 -g1,18135:32583029,29084368 -) -] -g1,18135:32583029,29210851 -) -h1,18135:6630773,29210851:0,0,0 -v1,18138:6630773,30075931:0,393216,0 -(1,18141:6630773,34843977:25952256,5161262,0 -g1,18141:6630773,34843977 -g1,18141:6237557,34843977 -r1,18162:6368629,34843977:131072,5161262,0 -g1,18141:6567858,34843977 -g1,18141:6764466,34843977 -[1,18141:6764466,34843977:25818563,5161262,0 -(1,18139:6764466,30384229:25818563,701514,196608 -(1,18138:6764466,30384229:0,701514,196608 -r1,18162:8471973,30384229:1707507,898122,196608 -k1,18138:6764466,30384229:-1707507 -) -(1,18138:6764466,30384229:1707507,701514,196608 -) -k1,18138:8695243,30384229:223270 -k1,18138:10013172,30384229:327680 -k1,18138:11054331,30384229:223270 -k1,18138:12225252,30384229:223270 -k1,18138:13580329,30384229:223270 -k1,18138:14218418,30384229:223246 -k1,18138:16401214,30384229:223270 -(1,18138:16401214,30384229:0,452978,115847 -r1,18162:18166327,30384229:1765113,568825,115847 -k1,18138:16401214,30384229:-1765113 -) -(1,18138:16401214,30384229:1765113,452978,115847 -k1,18138:16401214,30384229:3277 -h1,18138:18163050,30384229:0,411205,112570 -) -k1,18138:18389597,30384229:223270 -k1,18138:21238239,30384229:223270 -k1,18138:22480594,30384229:223270 -k1,18138:25635289,30384229:223270 -k1,18138:26525715,30384229:223270 -(1,18138:26525715,30384229:0,452978,122846 -r1,18162:27939116,30384229:1413401,575824,122846 -k1,18138:26525715,30384229:-1413401 -) -(1,18138:26525715,30384229:1413401,452978,122846 -k1,18138:26525715,30384229:3277 -h1,18138:27935839,30384229:0,411205,112570 -) -k1,18138:28162386,30384229:223270 -k1,18138:30849154,30384229:223270 -k1,18138:31700259,30384229:223270 -k1,18139:32583029,30384229:0 -) -(1,18139:6764466,31249309:25818563,513147,134348 -g1,18138:9026768,31249309 -g1,18138:11806149,31249309 -g1,18138:14833911,31249309 -g1,18138:17793516,31249309 -g1,18138:18348605,31249309 -(1,18138:18348605,31249309:0,452978,115847 -r1,18162:21520565,31249309:3171960,568825,115847 -k1,18138:18348605,31249309:-3171960 -) -(1,18138:18348605,31249309:3171960,452978,115847 -k1,18138:18348605,31249309:3277 -h1,18138:21517288,31249309:0,411205,112570 -) -g1,18138:21719794,31249309 -g1,18138:24373346,31249309 -g1,18138:25520226,31249309 -(1,18138:25520226,31249309:0,452978,122846 -r1,18162:26933627,31249309:1413401,575824,122846 -k1,18138:25520226,31249309:-1413401 -) -(1,18138:25520226,31249309:1413401,452978,122846 -k1,18138:25520226,31249309:3277 -h1,18138:26930350,31249309:0,411205,112570 -) -g1,18138:27132856,31249309 -g1,18138:28609382,31249309 -k1,18139:32583029,31249309:1631391 -g1,18139:32583029,31249309 -) -(1,18141:6764466,32114389:25818563,505283,134348 -h1,18140:6764466,32114389:983040,0,0 -k1,18140:8780025,32114389:214630 -k1,18140:10165129,32114389:214631 -k1,18140:12095492,32114389:214630 -k1,18140:15084261,32114389:214630 -k1,18140:17857417,32114389:214630 -k1,18140:19091133,32114389:214631 -k1,18140:21897057,32114389:214630 -k1,18140:23204172,32114389:214630 -k1,18140:25115529,32114389:214630 -k1,18140:28114785,32114389:214631 -k1,18140:28980843,32114389:214630 -k1,18140:31563944,32114389:214630 -k1,18141:32583029,32114389:0 -) -(1,18141:6764466,32979469:25818563,505283,134348 -(1,18140:6764466,32979469:0,452978,122846 -r1,18162:8177867,32979469:1413401,575824,122846 -k1,18140:6764466,32979469:-1413401 -) -(1,18140:6764466,32979469:1413401,452978,122846 -k1,18140:6764466,32979469:3277 -h1,18140:8174590,32979469:0,411205,112570 -) -k1,18140:8434349,32979469:256482 -k1,18140:9968127,32979469:256481 -k1,18140:12514437,32979469:256482 -k1,18140:13941391,32979469:256481 -k1,18140:17395375,32979469:256482 -k1,18140:19779811,32979469:256482 -k1,18140:22935605,32979469:256481 -k1,18140:23843515,32979469:256482 -k1,18140:26161759,32979469:256481 -k1,18140:27609686,32979469:256482 -k1,18140:29801445,32979469:256481 -k1,18140:30919070,32979469:256482 -k1,18141:32583029,32979469:0 -) -(1,18141:6764466,33844549:25818563,513147,134348 -k1,18140:9335695,33844549:173922 -k1,18140:10898981,33844549:173923 -k1,18140:12264348,33844549:173922 -k1,18140:15749804,33844549:173922 -k1,18140:17177431,33844549:173923 -k1,18140:18483815,33844549:173922 -k1,18140:20269267,33844549:173922 -k1,18140:21773570,33844549:173922 -k1,18140:22966578,33844549:173923 -k1,18140:24417797,33844549:173922 -k1,18140:28519292,33844549:173922 -k1,18140:29684775,33844549:173923 -k1,18140:31896867,33844549:173922 -k1,18140:32583029,33844549:0 -) -(1,18141:6764466,34709629:25818563,513147,134348 -g1,18140:9917403,34709629 -g1,18140:10783788,34709629 -(1,18140:10783788,34709629:0,452978,122846 -r1,18162:12197189,34709629:1413401,575824,122846 -k1,18140:10783788,34709629:-1413401 -) -(1,18140:10783788,34709629:1413401,452978,122846 -k1,18140:10783788,34709629:3277 -h1,18140:12193912,34709629:0,411205,112570 -) -g1,18140:12396418,34709629 -g1,18140:13872944,34709629 -k1,18141:32583029,34709629:16367829 -g1,18141:32583029,34709629 -) -] -g1,18141:32583029,34843977 -) -h1,18141:6630773,34843977:0,0,0 -(1,18144:6630773,35709057:25952256,505283,134348 -h1,18143:6630773,35709057:983040,0,0 -k1,18143:10802974,35709057:226278 -k1,18143:14093715,35709057:226277 -k1,18143:15311553,35709057:226278 -k1,18143:17825038,35709057:226278 -k1,18143:20636711,35709057:226278 -k1,18143:21514416,35709057:226277 -k1,18143:24582335,35709057:226278 -k1,18143:25424651,35709057:226278 -k1,18143:26670014,35709057:226278 -k1,18143:28459325,35709057:226277 -k1,18143:31443358,35709057:226278 -k1,18144:32583029,35709057:0 -) -(1,18144:6630773,36574137:25952256,513147,134348 -k1,18143:8757893,36574137:316360 -k1,18143:11084898,36574137:316360 -k1,18143:12505540,36574137:316360 -k1,18143:13569666,36574137:316360 -k1,18143:16091313,36574137:316360 -k1,18143:17093835,36574137:316360 -k1,18143:20812823,36574137:316359 -k1,18143:21780611,36574137:316360 -k1,18143:23654762,36574137:316360 -k1,18143:27170590,36574137:316360 -k1,18143:31333913,36574137:316360 -k1,18144:32583029,36574137:0 -) -(1,18144:6630773,37439217:25952256,513147,134348 -k1,18143:9205435,37439217:234371 -k1,18143:9795666,37439217:234371 -k1,18143:12808107,37439217:234370 -k1,18143:13701770,37439217:234371 -k1,18143:14702257,37439217:234371 -k1,18143:17805794,37439217:234371 -k1,18143:18656203,37439217:234371 -k1,18143:19246433,37439217:234370 -k1,18143:21212265,37439217:234371 -k1,18143:23221351,37439217:234371 -k1,18143:26297363,37439217:234371 -k1,18143:27147772,37439217:234371 -(1,18143:27147772,37439217:0,452978,115847 -r1,18162:28561173,37439217:1413401,568825,115847 -k1,18143:27147772,37439217:-1413401 -) -(1,18143:27147772,37439217:1413401,452978,115847 -k1,18143:27147772,37439217:3277 -h1,18143:28557896,37439217:0,411205,112570 -) -k1,18143:28795543,37439217:234370 -k1,18143:30134196,37439217:234371 -k1,18143:31116333,37439217:234371 -k1,18143:32583029,37439217:0 -) -(1,18144:6630773,38304297:25952256,513147,134348 -k1,18143:9430807,38304297:214639 -k1,18143:11380840,38304297:214640 -(1,18143:11380840,38304297:0,452978,115847 -r1,18162:13145953,38304297:1765113,568825,115847 -k1,18143:11380840,38304297:-1765113 -) -(1,18143:11380840,38304297:1765113,452978,115847 -k1,18143:11380840,38304297:3277 -h1,18143:13142676,38304297:0,411205,112570 -) -k1,18143:13360592,38304297:214639 -k1,18143:14261394,38304297:214640 -k1,18143:17849171,38304297:214639 -k1,18143:20833362,38304297:214640 -k1,18143:21734163,38304297:214639 -k1,18143:24024328,38304297:214640 -k1,18143:26267962,38304297:214639 -k1,18143:27165487,38304297:214640 -k1,18143:29390115,38304297:214639 -k1,18143:32583029,38304297:0 -) -(1,18144:6630773,39169377:25952256,513147,126483 -k1,18143:8913158,39169377:220622 -k1,18143:11891535,39169377:220622 -k1,18143:14122802,39169377:220622 -k1,18143:15291076,39169377:220623 -k1,18143:18686262,39169377:220622 -k1,18143:20382099,39169377:220622 -k1,18143:21254149,39169377:220622 -k1,18143:22222537,39169377:220622 -k1,18143:23551373,39169377:220622 -k1,18143:24458157,39169377:220622 -k1,18143:26754305,39169377:220623 -k1,18143:28546480,39169377:220622 -k1,18143:29453264,39169377:220622 -k1,18143:31832642,39169377:220622 -k1,18144:32583029,39169377:0 -) -(1,18144:6630773,40034457:25952256,513147,134348 -g1,18143:9588412,40034457 -g1,18143:11992928,40034457 -g1,18143:14606503,40034457 -g1,18143:15457160,40034457 -g1,18143:17214180,40034457 -g1,18143:20612877,40034457 -g1,18143:23139289,40034457 -g1,18143:23997810,40034457 -g1,18143:24848467,40034457 -g1,18143:25403556,40034457 -g1,18143:26702479,40034457 -g1,18143:27553136,40034457 -(1,18143:27553136,40034457:0,452978,115847 -r1,18162:29318249,40034457:1765113,568825,115847 -k1,18143:27553136,40034457:-1765113 -) -(1,18143:27553136,40034457:1765113,452978,115847 -k1,18143:27553136,40034457:3277 -h1,18143:29314972,40034457:0,411205,112570 -) -k1,18144:32583029,40034457:3212352 -g1,18144:32583029,40034457 -) -v1,18146:6630773,40719312:0,393216,0 -(1,18152:6630773,42429705:25952256,2103609,196608 -g1,18152:6630773,42429705 -g1,18152:6630773,42429705 -g1,18152:6434165,42429705 -(1,18152:6434165,42429705:0,2103609,196608 -r1,18162:32779637,42429705:26345472,2300217,196608 -k1,18152:6434165,42429705:-26345472 -) -(1,18152:6434165,42429705:26345472,2103609,196608 -[1,18152:6630773,42429705:25952256,1907001,0 -(1,18148:6630773,40947143:25952256,424439,112852 -(1,18147:6630773,40947143:0,0,0 -g1,18147:6630773,40947143 -g1,18147:6630773,40947143 -g1,18147:6303093,40947143 -(1,18147:6303093,40947143:0,0,0 -) -g1,18147:6630773,40947143 -) -k1,18148:6630773,40947143:0 -g1,18148:10614221,40947143 -g1,18148:11278129,40947143 -k1,18148:11278129,40947143:0 -h1,18148:13601807,40947143:0,0,0 -k1,18148:32583029,40947143:18981222 -g1,18148:32583029,40947143 -) -(1,18149:6630773,41631998:25952256,424439,112852 -h1,18149:6630773,41631998:0,0,0 -g1,18149:6962727,41631998 -g1,18149:7294681,41631998 -g1,18149:7626635,41631998 -g1,18149:7958589,41631998 -g1,18149:8290543,41631998 -g1,18149:8622497,41631998 -g1,18149:8954451,41631998 -g1,18149:11610083,41631998 -g1,18149:12273991,41631998 -g1,18149:14265715,41631998 -g1,18149:14929623,41631998 -g1,18149:16921347,41631998 -g1,18149:17585255,41631998 -g1,18149:18249163,41631998 -g1,18149:20240887,41631998 -h1,18149:20572841,41631998:0,0,0 -k1,18149:32583029,41631998:12010188 -g1,18149:32583029,41631998 -) -(1,18150:6630773,42316853:25952256,424439,112852 -h1,18150:6630773,42316853:0,0,0 -g1,18150:6962727,42316853 -g1,18150:7294681,42316853 -g1,18150:13269852,42316853 -g1,18150:13933760,42316853 -g1,18150:16589392,42316853 -g1,18150:18581116,42316853 -g1,18150:19245024,42316853 -h1,18150:22232609,42316853:0,0,0 -k1,18150:32583029,42316853:10350420 -g1,18150:32583029,42316853 -) -] -) -g1,18152:32583029,42429705 -g1,18152:6630773,42429705 -g1,18152:6630773,42429705 -g1,18152:32583029,42429705 -g1,18152:32583029,42429705 -) -h1,18152:6630773,42626313:0,0,0 -] -(1,18162:32583029,45706769:0,0,0 -g1,18162:32583029,45706769 -) -) -] -(1,18162:6630773,47279633:25952256,0,0 -h1,18162:6630773,47279633:25952256,0,0 -) -] -(1,18162:4262630,4025873:0,0,0 -[1,18162:-473656,4025873:0,0,0 -(1,18162:-473656,-710413:0,0,0 -(1,18162:-473656,-710413:0,0,0 -g1,18162:-473656,-710413 -) -g1,18162:-473656,-710413 +k1,18160:3078556,49800853:-34777008 +) +] +g1,18160:6630773,4812305 +k1,18160:21386205,4812305:13560055 +g1,18160:21999622,4812305 +g1,18160:25611966,4812305 +g1,18160:28956923,4812305 +g1,18160:29772190,4812305 +) +) +] +[1,18160:6630773,45706769:25952256,40108032,0 +(1,18160:6630773,45706769:25952256,40108032,0 +(1,18160:6630773,45706769:0,0,0 +g1,18160:6630773,45706769 +) +[1,18160:6630773,45706769:25952256,40108032,0 +(1,18091:6630773,6254097:25952256,505283,134348 +k1,18090:7515924,6254097:233723 +k1,18090:8768732,6254097:233723 +k1,18090:10279752,6254097:233723 +k1,18090:12625700,6254097:233723 +k1,18090:14900214,6254097:233723 +k1,18090:17321528,6254097:233722 +(1,18090:17321528,6254097:0,452978,122846 +r1,18160:21548624,6254097:4227096,575824,122846 +k1,18090:17321528,6254097:-4227096 +) +(1,18090:17321528,6254097:4227096,452978,122846 +k1,18090:17321528,6254097:3277 +h1,18090:21545347,6254097:0,411205,112570 +) +k1,18090:21782347,6254097:233723 +k1,18090:24062104,6254097:233723 +k1,18090:25314912,6254097:233723 +k1,18090:29620387,6254097:233723 +k1,18090:31896867,6254097:233723 +k1,18090:32583029,6254097:0 +) +(1,18091:6630773,7119177:25952256,505283,126483 +g1,18090:8848511,7119177 +g1,18090:9730625,7119177 +k1,18091:32583030,7119177:20158220 +g1,18091:32583030,7119177 +) +v1,18093:6630773,7804032:0,393216,0 +(1,18099:6630773,9514425:25952256,2103609,196608 +g1,18099:6630773,9514425 +g1,18099:6630773,9514425 +g1,18099:6434165,9514425 +(1,18099:6434165,9514425:0,2103609,196608 +r1,18160:32779637,9514425:26345472,2300217,196608 +k1,18099:6434165,9514425:-26345472 +) +(1,18099:6434165,9514425:26345472,2103609,196608 +[1,18099:6630773,9514425:25952256,1907001,0 +(1,18095:6630773,8031863:25952256,424439,112852 +(1,18094:6630773,8031863:0,0,0 +g1,18094:6630773,8031863 +g1,18094:6630773,8031863 +g1,18094:6303093,8031863 +(1,18094:6303093,8031863:0,0,0 +) +g1,18094:6630773,8031863 +) +k1,18095:6630773,8031863:0 +g1,18095:10614221,8031863 +g1,18095:11278129,8031863 +k1,18095:11278129,8031863:0 +h1,18095:13601807,8031863:0,0,0 +k1,18095:32583029,8031863:18981222 +g1,18095:32583029,8031863 +) +(1,18096:6630773,8716718:25952256,424439,112852 +h1,18096:6630773,8716718:0,0,0 +g1,18096:6962727,8716718 +g1,18096:7294681,8716718 +g1,18096:7626635,8716718 +g1,18096:7958589,8716718 +g1,18096:8290543,8716718 +g1,18096:8622497,8716718 +g1,18096:8954451,8716718 +g1,18096:11610083,8716718 +g1,18096:12273991,8716718 +g1,18096:14265715,8716718 +g1,18096:14929623,8716718 +g1,18096:16921347,8716718 +g1,18096:17585255,8716718 +g1,18096:18249163,8716718 +g1,18096:20240887,8716718 +h1,18096:20572841,8716718:0,0,0 +k1,18096:32583029,8716718:12010188 +g1,18096:32583029,8716718 +) +(1,18097:6630773,9401573:25952256,424439,112852 +h1,18097:6630773,9401573:0,0,0 +g1,18097:6962727,9401573 +g1,18097:7294681,9401573 +k1,18097:7294681,9401573:0 +h1,18097:11278128,9401573:0,0,0 +k1,18097:32583028,9401573:21304900 +g1,18097:32583028,9401573 +) +] +) +g1,18099:32583029,9514425 +g1,18099:6630773,9514425 +g1,18099:6630773,9514425 +g1,18099:32583029,9514425 +g1,18099:32583029,9514425 +) +h1,18099:6630773,9711033:0,0,0 +(1,18102:6630773,18860235:25952256,9083666,0 +k1,18102:10523651,18860235:3892878 +h1,18101:10523651,18860235:0,0,0 +(1,18101:10523651,18860235:18166500,9083666,0 +(1,18101:10523651,18860235:18167376,9083688,0 +(1,18101:10523651,18860235:18167376,9083688,0 +(1,18101:10523651,18860235:0,9083688,0 +(1,18101:10523651,18860235:0,14208860,0 +(1,18101:10523651,18860235:28417720,14208860,0 +) +k1,18101:10523651,18860235:-28417720 +) +) +g1,18101:28691027,18860235 +) +) +) +g1,18102:28690151,18860235 +k1,18102:32583029,18860235:3892878 +) +v1,18109:6630773,19725315:0,393216,0 +(1,18133:6630773,29210851:25952256,9878752,0 +g1,18133:6630773,29210851 +g1,18133:6237557,29210851 +r1,18160:6368629,29210851:131072,9878752,0 +g1,18133:6567858,29210851 +g1,18133:6764466,29210851 +[1,18133:6764466,29210851:25818563,9878752,0 +(1,18110:6764466,20086492:25818563,754393,260573 +(1,18109:6764466,20086492:0,754393,260573 +r1,18160:7856192,20086492:1091726,1014966,260573 +k1,18109:6764466,20086492:-1091726 +) +(1,18109:6764466,20086492:1091726,754393,260573 +) +k1,18109:8133199,20086492:277007 +k1,18109:8460879,20086492:327680 +k1,18109:9365722,20086492:277008 +k1,18109:10661814,20086492:277007 +k1,18109:13930540,20086492:277007 +k1,18109:16236543,20086492:277008 +k1,18109:17532635,20086492:277007 +k1,18109:19417240,20086492:277007 +k1,18109:21198299,20086492:277008 +k1,18109:23825427,20086492:277007 +k1,18109:28592961,20086492:277007 +k1,18109:30755440,20086492:277008 +k1,18109:31563944,20086492:277007 +k1,18109:32583029,20086492:0 +) +(1,18110:6764466,20951572:25818563,513147,134348 +k1,18109:9196793,20951572:166747 +k1,18109:9976302,20951572:166747 +k1,18109:11162133,20951572:166746 +k1,18109:11743691,20951572:166715 +k1,18109:14504353,20951572:166747 +k1,18109:17605802,20951572:166747 +k1,18109:18458710,20951572:166746 +k1,18109:20019408,20951572:166747 +k1,18109:21888125,20951572:166747 +k1,18109:22469683,20951572:166715 +k1,18109:25099928,20951572:166747 +k1,18109:27622693,20951572:166746 +k1,18109:28893722,20951572:166747 +k1,18109:29808235,20951572:166747 +k1,18109:32583029,20951572:0 +) +(1,18110:6764466,21816652:25818563,505283,7863 +g1,18109:7615123,21816652 +g1,18109:8170212,21816652 +k1,18110:32583028,21816652:21849048 +g1,18110:32583028,21816652 +) +v1,18112:6764466,22501507:0,393216,0 +(1,18118:6764466,24211900:25818563,2103609,196608 +g1,18118:6764466,24211900 +g1,18118:6764466,24211900 +g1,18118:6567858,24211900 +(1,18118:6567858,24211900:0,2103609,196608 +r1,18160:32779637,24211900:26211779,2300217,196608 +k1,18118:6567857,24211900:-26211780 +) +(1,18118:6567858,24211900:26211779,2103609,196608 +[1,18118:6764466,24211900:25818563,1907001,0 +(1,18114:6764466,22729338:25818563,424439,112852 +(1,18113:6764466,22729338:0,0,0 +g1,18113:6764466,22729338 +g1,18113:6764466,22729338 +g1,18113:6436786,22729338 +(1,18113:6436786,22729338:0,0,0 +) +g1,18113:6764466,22729338 +) +g1,18114:7760328,22729338 +g1,18114:8756190,22729338 +g1,18114:12739638,22729338 +g1,18114:13403546,22729338 +k1,18114:13403546,22729338:0 +h1,18114:15727224,22729338:0,0,0 +k1,18114:32583028,22729338:16855804 +g1,18114:32583028,22729338 +) +(1,18115:6764466,23414193:25818563,424439,112852 +h1,18115:6764466,23414193:0,0,0 +g1,18115:7096420,23414193 +g1,18115:7428374,23414193 +g1,18115:7760328,23414193 +g1,18115:8092282,23414193 +g1,18115:8424236,23414193 +g1,18115:8756190,23414193 +g1,18115:9088144,23414193 +g1,18115:9420098,23414193 +g1,18115:9752052,23414193 +g1,18115:10084006,23414193 +g1,18115:10415960,23414193 +g1,18115:10747914,23414193 +g1,18115:11079868,23414193 +g1,18115:13735500,23414193 +g1,18115:14399408,23414193 +g1,18115:16391132,23414193 +g1,18115:17055040,23414193 +g1,18115:19046764,23414193 +g1,18115:19710672,23414193 +g1,18115:20374580,23414193 +g1,18115:22366304,23414193 +h1,18115:22698258,23414193:0,0,0 +k1,18115:32583029,23414193:9884771 +g1,18115:32583029,23414193 +) +(1,18116:6764466,24099048:25818563,424439,112852 +h1,18116:6764466,24099048:0,0,0 +g1,18116:7096420,24099048 +g1,18116:7428374,24099048 +g1,18116:7760328,24099048 +g1,18116:8092282,24099048 +g1,18116:8424236,24099048 +g1,18116:8756190,24099048 +g1,18116:9088144,24099048 +k1,18116:9088144,24099048:0 +h1,18116:13071591,24099048:0,0,0 +k1,18116:32583029,24099048:19511438 +g1,18116:32583029,24099048 +) +] +) +g1,18118:32583029,24211900 +g1,18118:6764466,24211900 +g1,18118:6764466,24211900 +g1,18118:32583029,24211900 +g1,18118:32583029,24211900 +) +h1,18118:6764466,24408508:0,0,0 +(1,18123:6764466,25273588:25818563,513147,126483 +g1,18122:8155140,25273588 +g1,18122:10704490,25273588 +g1,18122:11516481,25273588 +g1,18122:12071570,25273588 +g1,18122:13724388,25273588 +g1,18122:15522695,25273588 +g1,18122:16913369,25273588 +g1,18122:18924013,25273588 +g1,18122:19774670,25273588 +g1,18122:21165344,25273588 +g1,18122:22776874,25273588 +g1,18122:24543724,25273588 +g1,18122:26056295,25273588 +g1,18122:27064894,25273588 +k1,18123:32583029,25273588:4120908 +g1,18123:32583029,25273588 +) +v1,18125:6764466,25958443:0,393216,0 +(1,18129:6764466,26292520:25818563,727293,196608 +g1,18129:6764466,26292520 +g1,18129:6764466,26292520 +g1,18129:6567858,26292520 +(1,18129:6567858,26292520:0,727293,196608 +r1,18160:32779637,26292520:26211779,923901,196608 +k1,18129:6567857,26292520:-26211780 +) +(1,18129:6567858,26292520:26211779,727293,196608 +[1,18129:6764466,26292520:25818563,530685,0 +(1,18127:6764466,26186274:25818563,424439,106246 +(1,18126:6764466,26186274:0,0,0 +g1,18126:6764466,26186274 +g1,18126:6764466,26186274 +g1,18126:6436786,26186274 +(1,18126:6436786,26186274:0,0,0 +) +g1,18126:6764466,26186274 +) +k1,18127:6764466,26186274:0 +h1,18127:9752052,26186274:0,0,0 +k1,18127:32583028,26186274:22830976 +g1,18127:32583028,26186274 +) +] +) +g1,18129:32583029,26292520 +g1,18129:6764466,26292520 +g1,18129:6764466,26292520 +g1,18129:32583029,26292520 +g1,18129:32583029,26292520 +) +h1,18129:6764466,26489128:0,0,0 +(1,18133:6764466,27354208:25818563,505283,134348 +h1,18132:6764466,27354208:983040,0,0 +k1,18132:10049832,27354208:254326 +k1,18132:11495604,27354208:254327 +k1,18132:13451900,27354208:254326 +k1,18132:16575393,27354208:254327 +k1,18132:17934001,27354208:254326 +k1,18132:18936094,27354208:254327 +k1,18132:20476236,27354208:254326 +k1,18132:22695987,27354208:254326 +k1,18132:23601742,27354208:254327 +k1,18132:24211928,27354208:254326 +k1,18132:26277670,27354208:254327 +k1,18132:28557714,27354208:254326 +k1,18132:29498203,27354208:254327 +k1,18132:30771614,27354208:254326 +k1,18132:32583029,27354208:0 +) +(1,18133:6764466,28219288:25818563,513147,134348 +k1,18132:9240908,28219288:186614 +k1,18132:10419081,28219288:186613 +k1,18132:11671966,28219288:186614 +k1,18132:12877665,28219288:186614 +k1,18132:16014054,28219288:186614 +k1,18132:20865520,28219288:186613 +k1,18132:21711426,28219288:186614 +k1,18132:22917125,28219288:186614 +k1,18132:24711337,28219288:186614 +k1,18132:28454589,28219288:186613 +k1,18132:29713372,28219288:186614 +k1,18132:32227169,28219288:186614 +k1,18132:32583029,28219288:0 +) +(1,18133:6764466,29084368:25818563,505283,126483 +g1,18132:8857685,29084368 +g1,18132:10427927,29084368 +g1,18132:12016519,29084368 +g1,18132:14514096,29084368 +g1,18132:15364753,29084368 +g1,18132:17206314,29084368 +k1,18133:32583029,29084368:13685231 +g1,18133:32583029,29084368 +) +] +g1,18133:32583029,29210851 +) +h1,18133:6630773,29210851:0,0,0 +v1,18136:6630773,30075931:0,393216,0 +(1,18139:6630773,34843977:25952256,5161262,0 +g1,18139:6630773,34843977 +g1,18139:6237557,34843977 +r1,18160:6368629,34843977:131072,5161262,0 +g1,18139:6567858,34843977 +g1,18139:6764466,34843977 +[1,18139:6764466,34843977:25818563,5161262,0 +(1,18137:6764466,30384229:25818563,701514,196608 +(1,18136:6764466,30384229:0,701514,196608 +r1,18160:8471973,30384229:1707507,898122,196608 +k1,18136:6764466,30384229:-1707507 +) +(1,18136:6764466,30384229:1707507,701514,196608 +) +k1,18136:8695243,30384229:223270 +k1,18136:10013172,30384229:327680 +k1,18136:11054331,30384229:223270 +k1,18136:12225252,30384229:223270 +k1,18136:13580329,30384229:223270 +k1,18136:14218418,30384229:223246 +k1,18136:16401214,30384229:223270 +(1,18136:16401214,30384229:0,452978,115847 +r1,18160:18166327,30384229:1765113,568825,115847 +k1,18136:16401214,30384229:-1765113 +) +(1,18136:16401214,30384229:1765113,452978,115847 +k1,18136:16401214,30384229:3277 +h1,18136:18163050,30384229:0,411205,112570 +) +k1,18136:18389597,30384229:223270 +k1,18136:21238239,30384229:223270 +k1,18136:22480594,30384229:223270 +k1,18136:25635289,30384229:223270 +k1,18136:26525715,30384229:223270 +(1,18136:26525715,30384229:0,452978,122846 +r1,18160:27939116,30384229:1413401,575824,122846 +k1,18136:26525715,30384229:-1413401 +) +(1,18136:26525715,30384229:1413401,452978,122846 +k1,18136:26525715,30384229:3277 +h1,18136:27935839,30384229:0,411205,112570 +) +k1,18136:28162386,30384229:223270 +k1,18136:30849154,30384229:223270 +k1,18136:31700259,30384229:223270 +k1,18137:32583029,30384229:0 +) +(1,18137:6764466,31249309:25818563,513147,134348 +g1,18136:9026768,31249309 +g1,18136:11806149,31249309 +g1,18136:14833911,31249309 +g1,18136:17793516,31249309 +g1,18136:18348605,31249309 +(1,18136:18348605,31249309:0,452978,115847 +r1,18160:21520565,31249309:3171960,568825,115847 +k1,18136:18348605,31249309:-3171960 +) +(1,18136:18348605,31249309:3171960,452978,115847 +k1,18136:18348605,31249309:3277 +h1,18136:21517288,31249309:0,411205,112570 +) +g1,18136:21719794,31249309 +g1,18136:24373346,31249309 +g1,18136:25520226,31249309 +(1,18136:25520226,31249309:0,452978,122846 +r1,18160:26933627,31249309:1413401,575824,122846 +k1,18136:25520226,31249309:-1413401 +) +(1,18136:25520226,31249309:1413401,452978,122846 +k1,18136:25520226,31249309:3277 +h1,18136:26930350,31249309:0,411205,112570 +) +g1,18136:27132856,31249309 +g1,18136:28609382,31249309 +k1,18137:32583029,31249309:1631391 +g1,18137:32583029,31249309 +) +(1,18139:6764466,32114389:25818563,505283,134348 +h1,18138:6764466,32114389:983040,0,0 +k1,18138:8780025,32114389:214630 +k1,18138:10165129,32114389:214631 +k1,18138:12095492,32114389:214630 +k1,18138:15084261,32114389:214630 +k1,18138:17857417,32114389:214630 +k1,18138:19091133,32114389:214631 +k1,18138:21897057,32114389:214630 +k1,18138:23204172,32114389:214630 +k1,18138:25115529,32114389:214630 +k1,18138:28114785,32114389:214631 +k1,18138:28980843,32114389:214630 +k1,18138:31563944,32114389:214630 +k1,18139:32583029,32114389:0 +) +(1,18139:6764466,32979469:25818563,505283,134348 +(1,18138:6764466,32979469:0,452978,122846 +r1,18160:8177867,32979469:1413401,575824,122846 +k1,18138:6764466,32979469:-1413401 +) +(1,18138:6764466,32979469:1413401,452978,122846 +k1,18138:6764466,32979469:3277 +h1,18138:8174590,32979469:0,411205,112570 +) +k1,18138:8434349,32979469:256482 +k1,18138:9968127,32979469:256481 +k1,18138:12514437,32979469:256482 +k1,18138:13941391,32979469:256481 +k1,18138:17395375,32979469:256482 +k1,18138:19779811,32979469:256482 +k1,18138:22935605,32979469:256481 +k1,18138:23843515,32979469:256482 +k1,18138:26161759,32979469:256481 +k1,18138:27609686,32979469:256482 +k1,18138:29801445,32979469:256481 +k1,18138:30919070,32979469:256482 +k1,18139:32583029,32979469:0 +) +(1,18139:6764466,33844549:25818563,513147,134348 +k1,18138:9335695,33844549:173922 +k1,18138:10898981,33844549:173923 +k1,18138:12264348,33844549:173922 +k1,18138:15749804,33844549:173922 +k1,18138:17177431,33844549:173923 +k1,18138:18483815,33844549:173922 +k1,18138:20269267,33844549:173922 +k1,18138:21773570,33844549:173922 +k1,18138:22966578,33844549:173923 +k1,18138:24417797,33844549:173922 +k1,18138:28519292,33844549:173922 +k1,18138:29684775,33844549:173923 +k1,18138:31896867,33844549:173922 +k1,18138:32583029,33844549:0 +) +(1,18139:6764466,34709629:25818563,513147,134348 +g1,18138:9917403,34709629 +g1,18138:10783788,34709629 +(1,18138:10783788,34709629:0,452978,122846 +r1,18160:12197189,34709629:1413401,575824,122846 +k1,18138:10783788,34709629:-1413401 +) +(1,18138:10783788,34709629:1413401,452978,122846 +k1,18138:10783788,34709629:3277 +h1,18138:12193912,34709629:0,411205,112570 +) +g1,18138:12396418,34709629 +g1,18138:13872944,34709629 +k1,18139:32583029,34709629:16367829 +g1,18139:32583029,34709629 +) +] +g1,18139:32583029,34843977 +) +h1,18139:6630773,34843977:0,0,0 +(1,18142:6630773,35709057:25952256,505283,134348 +h1,18141:6630773,35709057:983040,0,0 +k1,18141:10802974,35709057:226278 +k1,18141:14093715,35709057:226277 +k1,18141:15311553,35709057:226278 +k1,18141:17825038,35709057:226278 +k1,18141:20636711,35709057:226278 +k1,18141:21514416,35709057:226277 +k1,18141:24582335,35709057:226278 +k1,18141:25424651,35709057:226278 +k1,18141:26670014,35709057:226278 +k1,18141:28459325,35709057:226277 +k1,18141:31443358,35709057:226278 +k1,18142:32583029,35709057:0 +) +(1,18142:6630773,36574137:25952256,513147,134348 +k1,18141:8757893,36574137:316360 +k1,18141:11084898,36574137:316360 +k1,18141:12505540,36574137:316360 +k1,18141:13569666,36574137:316360 +k1,18141:16091313,36574137:316360 +k1,18141:17093835,36574137:316360 +k1,18141:20812823,36574137:316359 +k1,18141:21780611,36574137:316360 +k1,18141:23654762,36574137:316360 +k1,18141:27170590,36574137:316360 +k1,18141:31333913,36574137:316360 +k1,18142:32583029,36574137:0 +) +(1,18142:6630773,37439217:25952256,513147,134348 +k1,18141:9205435,37439217:234371 +k1,18141:9795666,37439217:234371 +k1,18141:12808107,37439217:234370 +k1,18141:13701770,37439217:234371 +k1,18141:14702257,37439217:234371 +k1,18141:17805794,37439217:234371 +k1,18141:18656203,37439217:234371 +k1,18141:19246433,37439217:234370 +k1,18141:21212265,37439217:234371 +k1,18141:23221351,37439217:234371 +k1,18141:26297363,37439217:234371 +k1,18141:27147772,37439217:234371 +(1,18141:27147772,37439217:0,452978,115847 +r1,18160:28561173,37439217:1413401,568825,115847 +k1,18141:27147772,37439217:-1413401 +) +(1,18141:27147772,37439217:1413401,452978,115847 +k1,18141:27147772,37439217:3277 +h1,18141:28557896,37439217:0,411205,112570 +) +k1,18141:28795543,37439217:234370 +k1,18141:30134196,37439217:234371 +k1,18141:31116333,37439217:234371 +k1,18141:32583029,37439217:0 +) +(1,18142:6630773,38304297:25952256,513147,134348 +k1,18141:9430807,38304297:214639 +k1,18141:11380840,38304297:214640 +(1,18141:11380840,38304297:0,452978,115847 +r1,18160:13145953,38304297:1765113,568825,115847 +k1,18141:11380840,38304297:-1765113 +) +(1,18141:11380840,38304297:1765113,452978,115847 +k1,18141:11380840,38304297:3277 +h1,18141:13142676,38304297:0,411205,112570 +) +k1,18141:13360592,38304297:214639 +k1,18141:14261394,38304297:214640 +k1,18141:17849171,38304297:214639 +k1,18141:20833362,38304297:214640 +k1,18141:21734163,38304297:214639 +k1,18141:24024328,38304297:214640 +k1,18141:26267962,38304297:214639 +k1,18141:27165487,38304297:214640 +k1,18141:29390115,38304297:214639 +k1,18141:32583029,38304297:0 +) +(1,18142:6630773,39169377:25952256,513147,126483 +k1,18141:8913158,39169377:220622 +k1,18141:11891535,39169377:220622 +k1,18141:14122802,39169377:220622 +k1,18141:15291076,39169377:220623 +k1,18141:18686262,39169377:220622 +k1,18141:20382099,39169377:220622 +k1,18141:21254149,39169377:220622 +k1,18141:22222537,39169377:220622 +k1,18141:23551373,39169377:220622 +k1,18141:24458157,39169377:220622 +k1,18141:26754305,39169377:220623 +k1,18141:28546480,39169377:220622 +k1,18141:29453264,39169377:220622 +k1,18141:31832642,39169377:220622 +k1,18142:32583029,39169377:0 +) +(1,18142:6630773,40034457:25952256,513147,134348 +g1,18141:9588412,40034457 +g1,18141:11992928,40034457 +g1,18141:14606503,40034457 +g1,18141:15457160,40034457 +g1,18141:17214180,40034457 +g1,18141:20612877,40034457 +g1,18141:23139289,40034457 +g1,18141:23997810,40034457 +g1,18141:24848467,40034457 +g1,18141:25403556,40034457 +g1,18141:26702479,40034457 +g1,18141:27553136,40034457 +(1,18141:27553136,40034457:0,452978,115847 +r1,18160:29318249,40034457:1765113,568825,115847 +k1,18141:27553136,40034457:-1765113 +) +(1,18141:27553136,40034457:1765113,452978,115847 +k1,18141:27553136,40034457:3277 +h1,18141:29314972,40034457:0,411205,112570 +) +k1,18142:32583029,40034457:3212352 +g1,18142:32583029,40034457 +) +v1,18144:6630773,40719312:0,393216,0 +(1,18150:6630773,42429705:25952256,2103609,196608 +g1,18150:6630773,42429705 +g1,18150:6630773,42429705 +g1,18150:6434165,42429705 +(1,18150:6434165,42429705:0,2103609,196608 +r1,18160:32779637,42429705:26345472,2300217,196608 +k1,18150:6434165,42429705:-26345472 +) +(1,18150:6434165,42429705:26345472,2103609,196608 +[1,18150:6630773,42429705:25952256,1907001,0 +(1,18146:6630773,40947143:25952256,424439,112852 +(1,18145:6630773,40947143:0,0,0 +g1,18145:6630773,40947143 +g1,18145:6630773,40947143 +g1,18145:6303093,40947143 +(1,18145:6303093,40947143:0,0,0 +) +g1,18145:6630773,40947143 +) +k1,18146:6630773,40947143:0 +g1,18146:10614221,40947143 +g1,18146:11278129,40947143 +k1,18146:11278129,40947143:0 +h1,18146:13601807,40947143:0,0,0 +k1,18146:32583029,40947143:18981222 +g1,18146:32583029,40947143 +) +(1,18147:6630773,41631998:25952256,424439,112852 +h1,18147:6630773,41631998:0,0,0 +g1,18147:6962727,41631998 +g1,18147:7294681,41631998 +g1,18147:7626635,41631998 +g1,18147:7958589,41631998 +g1,18147:8290543,41631998 +g1,18147:8622497,41631998 +g1,18147:8954451,41631998 +g1,18147:11610083,41631998 +g1,18147:12273991,41631998 +g1,18147:14265715,41631998 +g1,18147:14929623,41631998 +g1,18147:16921347,41631998 +g1,18147:17585255,41631998 +g1,18147:18249163,41631998 +g1,18147:20240887,41631998 +h1,18147:20572841,41631998:0,0,0 +k1,18147:32583029,41631998:12010188 +g1,18147:32583029,41631998 +) +(1,18148:6630773,42316853:25952256,424439,112852 +h1,18148:6630773,42316853:0,0,0 +g1,18148:6962727,42316853 +g1,18148:7294681,42316853 +g1,18148:13269852,42316853 +g1,18148:13933760,42316853 +g1,18148:16589392,42316853 +g1,18148:18581116,42316853 +g1,18148:19245024,42316853 +h1,18148:22232609,42316853:0,0,0 +k1,18148:32583029,42316853:10350420 +g1,18148:32583029,42316853 +) +] +) +g1,18150:32583029,42429705 +g1,18150:6630773,42429705 +g1,18150:6630773,42429705 +g1,18150:32583029,42429705 +g1,18150:32583029,42429705 +) +h1,18150:6630773,42626313:0,0,0 +] +(1,18160:32583029,45706769:0,0,0 +g1,18160:32583029,45706769 +) +) +] +(1,18160:6630773,47279633:25952256,0,0 +h1,18160:6630773,47279633:25952256,0,0 +) +] +(1,18160:4262630,4025873:0,0,0 +[1,18160:-473656,4025873:0,0,0 +(1,18160:-473656,-710413:0,0,0 +(1,18160:-473656,-710413:0,0,0 +g1,18160:-473656,-710413 +) +g1,18160:-473656,-710413 ) ] ) ] !23779 -}295 -Input:3011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3013:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3014:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}296 Input:3015:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3016:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3017:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -315408,1965 +315612,1965 @@ Input:3022:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3023:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3024:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3029:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{296 -[1,18204:4262630,47279633:28320399,43253760,0 -(1,18204:4262630,4025873:0,0,0 -[1,18204:-473656,4025873:0,0,0 -(1,18204:-473656,-710413:0,0,0 -(1,18204:-473656,-644877:0,0,0 -k1,18204:-473656,-644877:-65536 +{297 +[1,18202:4262630,47279633:28320399,43253760,0 +(1,18202:4262630,4025873:0,0,0 +[1,18202:-473656,4025873:0,0,0 +(1,18202:-473656,-710413:0,0,0 +(1,18202:-473656,-644877:0,0,0 +k1,18202:-473656,-644877:-65536 ) -(1,18204:-473656,4736287:0,0,0 -k1,18204:-473656,4736287:5209943 +(1,18202:-473656,4736287:0,0,0 +k1,18202:-473656,4736287:5209943 ) -g1,18204:-473656,-710413 +g1,18202:-473656,-710413 ) ] ) -[1,18204:6630773,47279633:25952256,43253760,0 -[1,18204:6630773,4812305:25952256,786432,0 -(1,18204:6630773,4812305:25952256,513147,126483 -(1,18204:6630773,4812305:25952256,513147,126483 -g1,18204:3078558,4812305 -[1,18204:3078558,4812305:0,0,0 -(1,18204:3078558,2439708:0,1703936,0 -k1,18204:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18204:2537886,2439708:1179648,16384,0 +[1,18202:6630773,47279633:25952256,43253760,0 +[1,18202:6630773,4812305:25952256,786432,0 +(1,18202:6630773,4812305:25952256,513147,126483 +(1,18202:6630773,4812305:25952256,513147,126483 +g1,18202:3078558,4812305 +[1,18202:3078558,4812305:0,0,0 +(1,18202:3078558,2439708:0,1703936,0 +k1,18202:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18202:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18204:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18202:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18204:3078558,4812305:0,0,0 -(1,18204:3078558,2439708:0,1703936,0 -g1,18204:29030814,2439708 -g1,18204:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18204:36151628,1915420:16384,1179648,0 +[1,18202:3078558,4812305:0,0,0 +(1,18202:3078558,2439708:0,1703936,0 +g1,18202:29030814,2439708 +g1,18202:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18202:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18204:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18202:37855564,2439708:1179648,16384,0 ) ) -k1,18204:3078556,2439708:-34777008 +k1,18202:3078556,2439708:-34777008 ) ] -[1,18204:3078558,4812305:0,0,0 -(1,18204:3078558,49800853:0,16384,2228224 -k1,18204:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18204:2537886,49800853:1179648,16384,0 +[1,18202:3078558,4812305:0,0,0 +(1,18202:3078558,49800853:0,16384,2228224 +k1,18202:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18202:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18204:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18202:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18204:3078558,4812305:0,0,0 -(1,18204:3078558,49800853:0,16384,2228224 -g1,18204:29030814,49800853 -g1,18204:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18204:36151628,51504789:16384,1179648,0 +[1,18202:3078558,4812305:0,0,0 +(1,18202:3078558,49800853:0,16384,2228224 +g1,18202:29030814,49800853 +g1,18202:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18202:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18204:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18202:37855564,49800853:1179648,16384,0 ) ) -k1,18204:3078556,49800853:-34777008 +k1,18202:3078556,49800853:-34777008 ) ] -g1,18204:6630773,4812305 -g1,18204:6630773,4812305 -g1,18204:8017514,4812305 -g1,18204:11362471,4812305 -g1,18204:12177738,4812305 -g1,18204:15187806,4812305 -k1,18204:31387652,4812305:16199846 +g1,18202:6630773,4812305 +g1,18202:6630773,4812305 +g1,18202:8017514,4812305 +g1,18202:11362471,4812305 +g1,18202:12177738,4812305 +g1,18202:15187806,4812305 +k1,18202:31387652,4812305:16199846 ) ) ] -[1,18204:6630773,45706769:25952256,40108032,0 -(1,18204:6630773,45706769:25952256,40108032,0 -(1,18204:6630773,45706769:0,0,0 -g1,18204:6630773,45706769 +[1,18202:6630773,45706769:25952256,40108032,0 +(1,18202:6630773,45706769:25952256,40108032,0 +(1,18202:6630773,45706769:0,0,0 +g1,18202:6630773,45706769 ) -[1,18204:6630773,45706769:25952256,40108032,0 -(1,18155:6630773,14682403:25952256,9083666,0 -k1,18155:10523651,14682403:3892878 -h1,18154:10523651,14682403:0,0,0 -(1,18154:10523651,14682403:18166500,9083666,0 -(1,18154:10523651,14682403:18167376,9083688,0 -(1,18154:10523651,14682403:18167376,9083688,0 -(1,18154:10523651,14682403:0,9083688,0 -(1,18154:10523651,14682403:0,14208860,0 -(1,18154:10523651,14682403:28417720,14208860,0 -) -k1,18154:10523651,14682403:-28417720 -) -) -g1,18154:28691027,14682403 -) -) -) -g1,18155:28690151,14682403 -k1,18155:32583029,14682403:3892878 -) -v1,18162:6630773,15547483:0,393216,0 -(1,18183:6630773,33792795:25952256,18638528,0 -g1,18183:6630773,33792795 -g1,18183:6237557,33792795 -r1,18204:6368629,33792795:131072,18638528,0 -g1,18183:6567858,33792795 -g1,18183:6764466,33792795 -[1,18183:6764466,33792795:25818563,18638528,0 -(1,18163:6764466,15908660:25818563,754393,260573 -(1,18162:6764466,15908660:0,754393,260573 -r1,18204:7856192,15908660:1091726,1014966,260573 -k1,18162:6764466,15908660:-1091726 -) -(1,18162:6764466,15908660:1091726,754393,260573 -) -k1,18162:8018800,15908660:162608 -k1,18162:8346480,15908660:327680 -k1,18162:11260290,15908660:162609 -k1,18162:12193601,15908660:162608 -k1,18162:15200473,15908660:162609 -k1,18162:16014509,15908660:162608 -k1,18162:16532978,15908660:162609 -k1,18162:19453341,15908660:162608 -k1,18162:21296293,15908660:162609 -k1,18162:23468890,15908660:162608 -k1,18162:23987359,15908660:162609 -k1,18162:25249661,15908660:162608 -k1,18162:26063698,15908660:162609 -(1,18162:26063698,15908660:0,452978,115847 -r1,18204:27828811,15908660:1765113,568825,115847 -k1,18162:26063698,15908660:-1765113 -) -(1,18162:26063698,15908660:1765113,452978,115847 -k1,18162:26063698,15908660:3277 -h1,18162:27825534,15908660:0,411205,112570 -) -k1,18162:27991419,15908660:162608 -k1,18162:29681672,15908660:162609 -k1,18162:30200140,15908660:162608 -k1,18162:32583029,15908660:0 -) -(1,18163:6764466,16773740:25818563,513147,134348 -k1,18162:10302660,16773740:176197 -k1,18162:11682099,16773740:176198 -k1,18162:13538639,16773740:176197 -k1,18162:14366264,16773740:176197 -k1,18162:15561546,16773740:176197 -k1,18162:17127107,16773740:176198 -k1,18162:19179600,16773740:176197 -k1,18162:21998864,16773740:176197 -k1,18162:22861224,16773740:176198 -k1,18162:24745945,16773740:176197 -k1,18162:25683670,16773740:176197 -k1,18162:26878952,16773740:176197 -(1,18162:26878952,16773740:0,452978,115847 -r1,18204:28995777,16773740:2116825,568825,115847 -k1,18162:26878952,16773740:-2116825 -) -(1,18162:26878952,16773740:2116825,452978,115847 -k1,18162:26878952,16773740:3277 -h1,18162:28992500,16773740:0,411205,112570 -) -k1,18162:29345645,16773740:176198 -k1,18162:30902686,16773740:176197 -k1,18162:32583029,16773740:0 -) -(1,18163:6764466,17638820:25818563,505283,126483 -k1,18162:7465832,17638820:169869 -k1,18162:8701973,17638820:169870 -k1,18162:12461904,17638820:169869 -k1,18162:13317935,17638820:169869 -k1,18162:14258508,17638820:169870 -k1,18162:17272640,17638820:169869 -k1,18162:19122852,17638820:169869 -k1,18162:20364891,17638820:169870 -k1,18162:22861943,17638820:169869 -k1,18162:23717974,17638820:169869 -k1,18162:24243704,17638820:169870 -k1,18162:25802936,17638820:169869 -k1,18162:27826819,17638820:169869 -k1,18162:29193376,17638820:169870 -k1,18162:30640542,17638820:169869 -k1,18162:32583029,17638820:0 -) -(1,18163:6764466,18503900:25818563,505283,134348 -g1,18162:8035864,18503900 -g1,18162:9970486,18503900 -g1,18162:10525575,18503900 -g1,18162:11824498,18503900 -g1,18162:12675155,18503900 -(1,18162:12675155,18503900:0,452978,115847 -r1,18204:14440268,18503900:1765113,568825,115847 -k1,18162:12675155,18503900:-1765113 -) -(1,18162:12675155,18503900:1765113,452978,115847 -k1,18162:12675155,18503900:3277 -h1,18162:14436991,18503900:0,411205,112570 -) -k1,18163:32583028,18503900:18090332 -g1,18163:32583028,18503900 -) -v1,18165:6764466,19188755:0,393216,0 -(1,18171:6764466,20899148:25818563,2103609,196608 -g1,18171:6764466,20899148 -g1,18171:6764466,20899148 -g1,18171:6567858,20899148 -(1,18171:6567858,20899148:0,2103609,196608 -r1,18204:32779637,20899148:26211779,2300217,196608 -k1,18171:6567857,20899148:-26211780 -) -(1,18171:6567858,20899148:26211779,2103609,196608 -[1,18171:6764466,20899148:25818563,1907001,0 -(1,18167:6764466,19416586:25818563,424439,112852 -(1,18166:6764466,19416586:0,0,0 -g1,18166:6764466,19416586 -g1,18166:6764466,19416586 -g1,18166:6436786,19416586 -(1,18166:6436786,19416586:0,0,0 -) -g1,18166:6764466,19416586 -) -k1,18167:6764466,19416586:0 -g1,18167:10747914,19416586 -g1,18167:11411822,19416586 -k1,18167:11411822,19416586:0 -h1,18167:13735500,19416586:0,0,0 -k1,18167:32583028,19416586:18847528 -g1,18167:32583028,19416586 -) -(1,18168:6764466,20101441:25818563,424439,112852 -h1,18168:6764466,20101441:0,0,0 -g1,18168:7096420,20101441 -g1,18168:7428374,20101441 -g1,18168:7760328,20101441 -g1,18168:8092282,20101441 -g1,18168:8424236,20101441 -g1,18168:8756190,20101441 -g1,18168:9088144,20101441 -g1,18168:11743776,20101441 -g1,18168:12407684,20101441 -g1,18168:14399408,20101441 -g1,18168:15063316,20101441 -g1,18168:17055040,20101441 -g1,18168:17718948,20101441 -g1,18168:18382856,20101441 -g1,18168:20374580,20101441 -h1,18168:20706534,20101441:0,0,0 -k1,18168:32583029,20101441:11876495 -g1,18168:32583029,20101441 -) -(1,18169:6764466,20786296:25818563,424439,112852 -h1,18169:6764466,20786296:0,0,0 -g1,18169:7096420,20786296 -g1,18169:7428374,20786296 -g1,18169:13735499,20786296 -g1,18169:14399407,20786296 -g1,18169:18050901,20786296 -g1,18169:18714809,20786296 -g1,18169:21370441,20786296 -g1,18169:23362165,20786296 -g1,18169:24026073,20786296 -h1,18169:27345612,20786296:0,0,0 -k1,18169:32583029,20786296:5237417 -g1,18169:32583029,20786296 -) -] -) -g1,18171:32583029,20899148 -g1,18171:6764466,20899148 -g1,18171:6764466,20899148 -g1,18171:32583029,20899148 -g1,18171:32583029,20899148 -) -h1,18171:6764466,21095756:0,0,0 -(1,18174:6764466,30198127:25818563,9036835,0 -k1,18174:10637290,30198127:3872824 -h1,18173:10637290,30198127:0,0,0 -(1,18173:10637290,30198127:18072915,9036835,0 -(1,18173:10637290,30198127:18073715,9036857,0 -(1,18173:10637290,30198127:18073715,9036857,0 -(1,18173:10637290,30198127:0,9036857,0 -(1,18173:10637290,30198127:0,14208860,0 -(1,18173:10637290,30198127:28417720,14208860,0 -) -k1,18173:10637290,30198127:-28417720 -) -) -g1,18173:28711005,30198127 -) -) -) -g1,18174:28710205,30198127 -k1,18174:32583029,30198127:3872824 -) -(1,18181:6764466,31063207:25818563,513147,126483 -h1,18180:6764466,31063207:983040,0,0 -g1,18180:9143422,31063207 -g1,18180:10619948,31063207 -g1,18180:13521226,31063207 -g1,18180:14776895,31063207 -g1,18180:17015604,31063207 -g1,18180:19542016,31063207 -g1,18180:20400537,31063207 -g1,18180:21967502,31063207 -k1,18181:32583029,31063207:7987533 -g1,18181:32583029,31063207 -) -(1,18183:6764466,31928287:25818563,505283,134348 -h1,18182:6764466,31928287:983040,0,0 -k1,18182:8509386,31928287:134045 -k1,18182:11650224,31928287:134046 -k1,18182:12940979,31928287:134045 -k1,18182:14843841,31928287:134045 -k1,18182:17220529,31928287:134046 -k1,18182:18557815,31928287:134045 -k1,18182:19969157,31928287:134045 -k1,18182:20864730,31928287:134045 -k1,18182:23186368,31928287:134046 -k1,18182:25832408,31928287:134045 -(1,18182:25832408,31928287:0,452978,115847 -r1,18204:27949233,31928287:2116825,568825,115847 -k1,18182:25832408,31928287:-2116825 -) -(1,18182:25832408,31928287:2116825,452978,115847 -k1,18182:25832408,31928287:3277 -h1,18182:27945956,31928287:0,411205,112570 -) -k1,18182:28083278,31928287:134045 -k1,18182:29289493,31928287:134046 -k1,18182:30626779,31928287:134045 -k1,18182:32583029,31928287:0 -) -(1,18183:6764466,32793367:25818563,513147,134348 -k1,18182:7750618,32793367:238386 -k1,18182:9187658,32793367:238386 -k1,18182:12122196,32793367:238387 -k1,18182:13122110,32793367:238386 -k1,18182:17705533,32793367:238386 -k1,18182:20204256,32793367:238386 -k1,18182:22194419,32793367:238386 -k1,18182:24460489,32793367:238386 -k1,18182:25358168,32793367:238387 -k1,18182:26615639,32793367:238386 -k1,18182:29611780,32793367:238386 -(1,18182:29611780,32793367:0,452978,115847 -r1,18204:31728605,32793367:2116825,568825,115847 -k1,18182:29611780,32793367:-2116825 -) -(1,18182:29611780,32793367:2116825,452978,115847 -k1,18182:29611780,32793367:3277 -h1,18182:31725328,32793367:0,411205,112570 -) -k1,18182:31966991,32793367:238386 -k1,18182:32583029,32793367:0 -) -(1,18183:6764466,33658447:25818563,505283,134348 -g1,18182:7982780,33658447 -(1,18182:7982780,33658447:0,452978,122846 -r1,18204:9396181,33658447:1413401,575824,122846 -k1,18182:7982780,33658447:-1413401 -) -(1,18182:7982780,33658447:1413401,452978,122846 -k1,18182:7982780,33658447:3277 -h1,18182:9392904,33658447:0,411205,112570 -) -g1,18182:9595410,33658447 -g1,18182:11071936,33658447 -k1,18183:32583029,33658447:19499138 -g1,18183:32583029,33658447 -) -] -g1,18183:32583029,33792795 -) -h1,18183:6630773,33792795:0,0,0 -(1,18186:6630773,34657875:25952256,505283,134348 -h1,18185:6630773,34657875:983040,0,0 -k1,18185:9617395,34657875:228867 -k1,18185:10202121,34657875:228866 -k1,18185:13420740,34657875:228867 -k1,18185:16063952,34657875:228866 -k1,18185:19646952,34657875:228867 -k1,18185:21990009,34657875:228866 -k1,18185:25316107,34657875:228867 -k1,18185:25900833,34657875:228866 -k1,18185:29079475,34657875:228867 -k1,18186:32583029,34657875:0 -) -(1,18186:6630773,35522955:25952256,513147,126483 -k1,18185:8121436,35522955:223197 -k1,18185:9003925,35522955:223197 -k1,18185:10246207,35522955:223197 -k1,18185:14541156,35522955:223197 -k1,18185:15447238,35522955:223197 -k1,18185:19178577,35522955:223197 -k1,18185:20017812,35522955:223197 -k1,18185:21260093,35522955:223196 -k1,18185:22872653,35522955:223197 -k1,18185:23553947,35522955:223197 -k1,18185:26329771,35522955:223197 -k1,18185:27239130,35522955:223197 -k1,18185:29344521,35522955:223197 -k1,18185:29923578,35522955:223197 -k1,18186:32583029,35522955:0 -) -(1,18186:6630773,36388035:25952256,505283,134348 -k1,18185:7495118,36388035:181460 -(1,18185:7495118,36388035:0,414482,115847 -r1,18204:8908519,36388035:1413401,530329,115847 -k1,18185:7495118,36388035:-1413401 -) -(1,18185:7495118,36388035:1413401,414482,115847 -k1,18185:7495118,36388035:3277 -h1,18185:8905242,36388035:0,411205,112570 -) -k1,18185:9089980,36388035:181461 -k1,18185:10990450,36388035:181461 -k1,18185:14636143,36388035:181460 -k1,18185:15836688,36388035:181460 -k1,18185:17407512,36388035:181461 -k1,18185:18780418,36388035:181461 -k1,18185:19317738,36388035:181460 -(1,18185:19317738,36388035:0,414482,122846 -r1,18204:20731139,36388035:1413401,537328,122846 -k1,18185:19317738,36388035:-1413401 -) -(1,18185:19317738,36388035:1413401,414482,122846 -k1,18185:19317738,36388035:3277 -h1,18185:20727862,36388035:0,411205,112570 -) -k1,18185:21086269,36388035:181460 -k1,18185:24021553,36388035:181461 -k1,18185:25895154,36388035:181461 -k1,18185:30314172,36388035:181460 -k1,18185:32583029,36388035:0 -) -(1,18186:6630773,37253115:25952256,513147,126483 -k1,18185:7911308,37253115:208366 -k1,18185:9185945,37253115:208366 -k1,18185:11697246,37253115:208366 -k1,18185:12557039,37253115:208365 -k1,18185:15385534,37253115:208366 -k1,18185:15949760,37253115:208366 -k1,18185:19242250,37253115:208366 -k1,18185:22441024,37253115:208366 -k1,18185:23308682,37253115:208366 -k1,18185:24536132,37253115:208365 -k1,18185:26307532,37253115:208366 -k1,18185:28004221,37253115:208366 -(1,18185:28004221,37253115:0,452978,115847 -r1,18204:32583029,37253115:4578808,568825,115847 -k1,18185:28004221,37253115:-4578808 -) -(1,18185:28004221,37253115:4578808,452978,115847 -k1,18185:28004221,37253115:3277 -h1,18185:32579752,37253115:0,411205,112570 -) -k1,18185:32583029,37253115:0 -) -(1,18186:6630773,38118195:25952256,513147,134348 -k1,18185:7919866,38118195:271319 -k1,18185:8547045,38118195:271319 -k1,18185:10631090,38118195:271319 -k1,18185:14219185,38118195:271318 -k1,18185:15722581,38118195:271319 -k1,18185:18272587,38118195:271319 -h1,18185:19815305,38118195:0,0,0 -k1,18185:20086624,38118195:271319 -k1,18185:21167313,38118195:271319 -k1,18185:22936785,38118195:271319 -h1,18185:24132162,38118195:0,0,0 -k1,18185:24610575,38118195:271319 -k1,18185:26073338,38118195:271318 -k1,18185:28459504,38118195:271319 -k1,18185:29749908,38118195:271319 -k1,18185:32583029,38118195:0 -) -(1,18186:6630773,38983275:25952256,505283,134348 -k1,18185:9866301,38983275:198590 -k1,18185:12075536,38983275:198590 -k1,18185:12925555,38983275:198591 -(1,18185:12925555,38983275:0,452978,122846 -r1,18204:16800939,38983275:3875384,575824,122846 -k1,18185:12925555,38983275:-3875384 -) -(1,18185:12925555,38983275:3875384,452978,122846 -k1,18185:12925555,38983275:3277 -h1,18185:16797662,38983275:0,411205,112570 -) -k1,18185:17173199,38983275:198590 -k1,18185:19754023,38983275:198590 -(1,18185:19754023,38983275:0,452978,115847 -r1,18204:24332831,38983275:4578808,568825,115847 -k1,18185:19754023,38983275:-4578808 -) -(1,18185:19754023,38983275:4578808,452978,115847 -g1,18185:22219283,38983275 -g1,18185:22922707,38983275 -h1,18185:24329554,38983275:0,411205,112570 -) -k1,18185:24531421,38983275:198590 -k1,18185:26880903,38983275:198590 -(1,18185:26880903,38983275:0,452978,115847 -r1,18204:28294304,38983275:1413401,568825,115847 -k1,18185:26880903,38983275:-1413401 -) -(1,18185:26880903,38983275:1413401,452978,115847 -k1,18185:26880903,38983275:3277 -h1,18185:28291027,38983275:0,411205,112570 -) -k1,18185:28492895,38983275:198591 -k1,18185:29377647,38983275:198590 -k1,18185:30595322,38983275:198590 -k1,18185:32583029,38983275:0 -) -(1,18186:6630773,39848355:25952256,513147,134348 -k1,18185:8746054,39848355:180658 -k1,18185:11795878,39848355:180658 -k1,18185:14358770,39848355:180658 -(1,18185:14358770,39848355:0,459977,115847 -r1,18204:19641003,39848355:5282233,575824,115847 -k1,18185:14358770,39848355:-5282233 -) -(1,18185:14358770,39848355:5282233,459977,115847 -g1,18185:17175742,39848355 -g1,18185:17879166,39848355 -g1,18185:18582590,39848355 -g1,18185:18934302,39848355 -g1,18185:19286014,39848355 -h1,18185:19637726,39848355:0,411205,112570 -) -k1,18185:19821661,39848355:180658 -k1,18185:21267164,39848355:180658 -k1,18185:22466907,39848355:180658 -k1,18185:24635273,39848355:180659 -k1,18185:25467359,39848355:180658 -k1,18185:26395783,39848355:180658 -k1,18185:28462567,39848355:180658 -k1,18185:30024069,39848355:180658 -k1,18185:31482024,39848355:180658 -k1,18185:32583029,39848355:0 -) -(1,18186:6630773,40713435:25952256,513147,134348 -g1,18185:8002441,40713435 -g1,18185:10263433,40713435 -g1,18185:11619372,40713435 -g1,18185:13386222,40713435 -g1,18185:17092938,40713435 -(1,18185:17092938,40713435:0,452978,122846 -r1,18204:21320034,40713435:4227096,575824,122846 -k1,18185:17092938,40713435:-4227096 -) -(1,18185:17092938,40713435:4227096,452978,122846 -k1,18185:17092938,40713435:3277 -h1,18185:21316757,40713435:0,411205,112570 -) -g1,18185:21519263,40713435 -g1,18185:22909937,40713435 -g1,18185:24265876,40713435 -g1,18185:26032726,40713435 -(1,18185:26032726,40713435:0,452978,122846 -r1,18204:29908110,40713435:3875384,575824,122846 -k1,18185:26032726,40713435:-3875384 -) -(1,18185:26032726,40713435:3875384,452978,122846 -k1,18185:26032726,40713435:3277 -h1,18185:29904833,40713435:0,411205,112570 -) -k1,18186:32583029,40713435:2622491 -g1,18186:32583029,40713435 -) -v1,18188:6630773,41398290:0,393216,0 -(1,18195:6630773,43793538:25952256,2788464,196608 -g1,18195:6630773,43793538 -g1,18195:6630773,43793538 -g1,18195:6434165,43793538 -(1,18195:6434165,43793538:0,2788464,196608 -r1,18204:32779637,43793538:26345472,2985072,196608 -k1,18195:6434165,43793538:-26345472 -) -(1,18195:6434165,43793538:26345472,2788464,196608 -[1,18195:6630773,43793538:25952256,2591856,0 -(1,18190:6630773,41626121:25952256,424439,112852 -(1,18189:6630773,41626121:0,0,0 -g1,18189:6630773,41626121 -g1,18189:6630773,41626121 -g1,18189:6303093,41626121 -(1,18189:6303093,41626121:0,0,0 -) -g1,18189:6630773,41626121 -) -k1,18190:6630773,41626121:0 -g1,18190:10614221,41626121 -g1,18190:11278129,41626121 -k1,18190:11278129,41626121:0 -h1,18190:13601807,41626121:0,0,0 -k1,18190:32583029,41626121:18981222 -g1,18190:32583029,41626121 -) -(1,18191:6630773,42310976:25952256,424439,112852 -h1,18191:6630773,42310976:0,0,0 -g1,18191:6962727,42310976 -g1,18191:7294681,42310976 -g1,18191:7626635,42310976 -g1,18191:7958589,42310976 -g1,18191:8290543,42310976 -g1,18191:8622497,42310976 -g1,18191:8954451,42310976 -g1,18191:11610083,42310976 -g1,18191:12273991,42310976 -g1,18191:14265715,42310976 -g1,18191:14929623,42310976 -g1,18191:16921347,42310976 -g1,18191:17585255,42310976 -g1,18191:18249163,42310976 -g1,18191:20240887,42310976 -h1,18191:20572841,42310976:0,0,0 -k1,18191:32583029,42310976:12010188 -g1,18191:32583029,42310976 -) -(1,18192:6630773,42995831:25952256,424439,112852 -h1,18192:6630773,42995831:0,0,0 -g1,18192:6962727,42995831 -g1,18192:7294681,42995831 -g1,18192:11610082,42995831 -h1,18192:11942036,42995831:0,0,0 -k1,18192:32583028,42995831:20640992 -g1,18192:32583028,42995831 -) -(1,18193:6630773,43680686:25952256,431045,112852 -h1,18193:6630773,43680686:0,0,0 -g1,18193:6962727,43680686 -g1,18193:7294681,43680686 -g1,18193:12937898,43680686 -g1,18193:13601806,43680686 -g1,18193:16257438,43680686 -g1,18193:18581116,43680686 -g1,18193:19245024,43680686 -g1,18193:21236748,43680686 -g1,18193:23892380,43680686 -g1,18193:24556288,43680686 -g1,18193:25220196,43680686 -g1,18193:25884104,43680686 -h1,18193:26548012,43680686:0,0,0 -k1,18193:32583029,43680686:6035017 -g1,18193:32583029,43680686 -) -] -) -g1,18195:32583029,43793538 -g1,18195:6630773,43793538 -g1,18195:6630773,43793538 -g1,18195:32583029,43793538 -g1,18195:32583029,43793538 -) -h1,18195:6630773,43990146:0,0,0 -] -(1,18204:32583029,45706769:0,0,0 -g1,18204:32583029,45706769 -) -) -] -(1,18204:6630773,47279633:25952256,0,0 -h1,18204:6630773,47279633:25952256,0,0 -) -] -(1,18204:4262630,4025873:0,0,0 -[1,18204:-473656,4025873:0,0,0 -(1,18204:-473656,-710413:0,0,0 -(1,18204:-473656,-710413:0,0,0 -g1,18204:-473656,-710413 -) -g1,18204:-473656,-710413 +[1,18202:6630773,45706769:25952256,40108032,0 +(1,18153:6630773,14682403:25952256,9083666,0 +k1,18153:10523651,14682403:3892878 +h1,18152:10523651,14682403:0,0,0 +(1,18152:10523651,14682403:18166500,9083666,0 +(1,18152:10523651,14682403:18167376,9083688,0 +(1,18152:10523651,14682403:18167376,9083688,0 +(1,18152:10523651,14682403:0,9083688,0 +(1,18152:10523651,14682403:0,14208860,0 +(1,18152:10523651,14682403:28417720,14208860,0 +) +k1,18152:10523651,14682403:-28417720 +) +) +g1,18152:28691027,14682403 +) +) +) +g1,18153:28690151,14682403 +k1,18153:32583029,14682403:3892878 +) +v1,18160:6630773,15547483:0,393216,0 +(1,18181:6630773,33792795:25952256,18638528,0 +g1,18181:6630773,33792795 +g1,18181:6237557,33792795 +r1,18202:6368629,33792795:131072,18638528,0 +g1,18181:6567858,33792795 +g1,18181:6764466,33792795 +[1,18181:6764466,33792795:25818563,18638528,0 +(1,18161:6764466,15908660:25818563,754393,260573 +(1,18160:6764466,15908660:0,754393,260573 +r1,18202:7856192,15908660:1091726,1014966,260573 +k1,18160:6764466,15908660:-1091726 +) +(1,18160:6764466,15908660:1091726,754393,260573 +) +k1,18160:8018800,15908660:162608 +k1,18160:8346480,15908660:327680 +k1,18160:11260290,15908660:162609 +k1,18160:12193601,15908660:162608 +k1,18160:15200473,15908660:162609 +k1,18160:16014509,15908660:162608 +k1,18160:16532978,15908660:162609 +k1,18160:19453341,15908660:162608 +k1,18160:21296293,15908660:162609 +k1,18160:23468890,15908660:162608 +k1,18160:23987359,15908660:162609 +k1,18160:25249661,15908660:162608 +k1,18160:26063698,15908660:162609 +(1,18160:26063698,15908660:0,452978,115847 +r1,18202:27828811,15908660:1765113,568825,115847 +k1,18160:26063698,15908660:-1765113 +) +(1,18160:26063698,15908660:1765113,452978,115847 +k1,18160:26063698,15908660:3277 +h1,18160:27825534,15908660:0,411205,112570 +) +k1,18160:27991419,15908660:162608 +k1,18160:29681672,15908660:162609 +k1,18160:30200140,15908660:162608 +k1,18160:32583029,15908660:0 +) +(1,18161:6764466,16773740:25818563,513147,134348 +k1,18160:10302660,16773740:176197 +k1,18160:11682099,16773740:176198 +k1,18160:13538639,16773740:176197 +k1,18160:14366264,16773740:176197 +k1,18160:15561546,16773740:176197 +k1,18160:17127107,16773740:176198 +k1,18160:19179600,16773740:176197 +k1,18160:21998864,16773740:176197 +k1,18160:22861224,16773740:176198 +k1,18160:24745945,16773740:176197 +k1,18160:25683670,16773740:176197 +k1,18160:26878952,16773740:176197 +(1,18160:26878952,16773740:0,452978,115847 +r1,18202:28995777,16773740:2116825,568825,115847 +k1,18160:26878952,16773740:-2116825 +) +(1,18160:26878952,16773740:2116825,452978,115847 +k1,18160:26878952,16773740:3277 +h1,18160:28992500,16773740:0,411205,112570 +) +k1,18160:29345645,16773740:176198 +k1,18160:30902686,16773740:176197 +k1,18160:32583029,16773740:0 +) +(1,18161:6764466,17638820:25818563,505283,126483 +k1,18160:7465832,17638820:169869 +k1,18160:8701973,17638820:169870 +k1,18160:12461904,17638820:169869 +k1,18160:13317935,17638820:169869 +k1,18160:14258508,17638820:169870 +k1,18160:17272640,17638820:169869 +k1,18160:19122852,17638820:169869 +k1,18160:20364891,17638820:169870 +k1,18160:22861943,17638820:169869 +k1,18160:23717974,17638820:169869 +k1,18160:24243704,17638820:169870 +k1,18160:25802936,17638820:169869 +k1,18160:27826819,17638820:169869 +k1,18160:29193376,17638820:169870 +k1,18160:30640542,17638820:169869 +k1,18160:32583029,17638820:0 +) +(1,18161:6764466,18503900:25818563,505283,134348 +g1,18160:8035864,18503900 +g1,18160:9970486,18503900 +g1,18160:10525575,18503900 +g1,18160:11824498,18503900 +g1,18160:12675155,18503900 +(1,18160:12675155,18503900:0,452978,115847 +r1,18202:14440268,18503900:1765113,568825,115847 +k1,18160:12675155,18503900:-1765113 +) +(1,18160:12675155,18503900:1765113,452978,115847 +k1,18160:12675155,18503900:3277 +h1,18160:14436991,18503900:0,411205,112570 +) +k1,18161:32583028,18503900:18090332 +g1,18161:32583028,18503900 +) +v1,18163:6764466,19188755:0,393216,0 +(1,18169:6764466,20899148:25818563,2103609,196608 +g1,18169:6764466,20899148 +g1,18169:6764466,20899148 +g1,18169:6567858,20899148 +(1,18169:6567858,20899148:0,2103609,196608 +r1,18202:32779637,20899148:26211779,2300217,196608 +k1,18169:6567857,20899148:-26211780 +) +(1,18169:6567858,20899148:26211779,2103609,196608 +[1,18169:6764466,20899148:25818563,1907001,0 +(1,18165:6764466,19416586:25818563,424439,112852 +(1,18164:6764466,19416586:0,0,0 +g1,18164:6764466,19416586 +g1,18164:6764466,19416586 +g1,18164:6436786,19416586 +(1,18164:6436786,19416586:0,0,0 +) +g1,18164:6764466,19416586 +) +k1,18165:6764466,19416586:0 +g1,18165:10747914,19416586 +g1,18165:11411822,19416586 +k1,18165:11411822,19416586:0 +h1,18165:13735500,19416586:0,0,0 +k1,18165:32583028,19416586:18847528 +g1,18165:32583028,19416586 +) +(1,18166:6764466,20101441:25818563,424439,112852 +h1,18166:6764466,20101441:0,0,0 +g1,18166:7096420,20101441 +g1,18166:7428374,20101441 +g1,18166:7760328,20101441 +g1,18166:8092282,20101441 +g1,18166:8424236,20101441 +g1,18166:8756190,20101441 +g1,18166:9088144,20101441 +g1,18166:11743776,20101441 +g1,18166:12407684,20101441 +g1,18166:14399408,20101441 +g1,18166:15063316,20101441 +g1,18166:17055040,20101441 +g1,18166:17718948,20101441 +g1,18166:18382856,20101441 +g1,18166:20374580,20101441 +h1,18166:20706534,20101441:0,0,0 +k1,18166:32583029,20101441:11876495 +g1,18166:32583029,20101441 +) +(1,18167:6764466,20786296:25818563,424439,112852 +h1,18167:6764466,20786296:0,0,0 +g1,18167:7096420,20786296 +g1,18167:7428374,20786296 +g1,18167:13735499,20786296 +g1,18167:14399407,20786296 +g1,18167:18050901,20786296 +g1,18167:18714809,20786296 +g1,18167:21370441,20786296 +g1,18167:23362165,20786296 +g1,18167:24026073,20786296 +h1,18167:27345612,20786296:0,0,0 +k1,18167:32583029,20786296:5237417 +g1,18167:32583029,20786296 +) +] +) +g1,18169:32583029,20899148 +g1,18169:6764466,20899148 +g1,18169:6764466,20899148 +g1,18169:32583029,20899148 +g1,18169:32583029,20899148 +) +h1,18169:6764466,21095756:0,0,0 +(1,18172:6764466,30198127:25818563,9036835,0 +k1,18172:10637290,30198127:3872824 +h1,18171:10637290,30198127:0,0,0 +(1,18171:10637290,30198127:18072915,9036835,0 +(1,18171:10637290,30198127:18073715,9036857,0 +(1,18171:10637290,30198127:18073715,9036857,0 +(1,18171:10637290,30198127:0,9036857,0 +(1,18171:10637290,30198127:0,14208860,0 +(1,18171:10637290,30198127:28417720,14208860,0 +) +k1,18171:10637290,30198127:-28417720 +) +) +g1,18171:28711005,30198127 +) +) +) +g1,18172:28710205,30198127 +k1,18172:32583029,30198127:3872824 +) +(1,18179:6764466,31063207:25818563,513147,126483 +h1,18178:6764466,31063207:983040,0,0 +g1,18178:9143422,31063207 +g1,18178:10619948,31063207 +g1,18178:13521226,31063207 +g1,18178:14776895,31063207 +g1,18178:17015604,31063207 +g1,18178:19542016,31063207 +g1,18178:20400537,31063207 +g1,18178:21967502,31063207 +k1,18179:32583029,31063207:7987533 +g1,18179:32583029,31063207 +) +(1,18181:6764466,31928287:25818563,505283,134348 +h1,18180:6764466,31928287:983040,0,0 +k1,18180:8509386,31928287:134045 +k1,18180:11650224,31928287:134046 +k1,18180:12940979,31928287:134045 +k1,18180:14843841,31928287:134045 +k1,18180:17220529,31928287:134046 +k1,18180:18557815,31928287:134045 +k1,18180:19969157,31928287:134045 +k1,18180:20864730,31928287:134045 +k1,18180:23186368,31928287:134046 +k1,18180:25832408,31928287:134045 +(1,18180:25832408,31928287:0,452978,115847 +r1,18202:27949233,31928287:2116825,568825,115847 +k1,18180:25832408,31928287:-2116825 +) +(1,18180:25832408,31928287:2116825,452978,115847 +k1,18180:25832408,31928287:3277 +h1,18180:27945956,31928287:0,411205,112570 +) +k1,18180:28083278,31928287:134045 +k1,18180:29289493,31928287:134046 +k1,18180:30626779,31928287:134045 +k1,18180:32583029,31928287:0 +) +(1,18181:6764466,32793367:25818563,513147,134348 +k1,18180:7750618,32793367:238386 +k1,18180:9187658,32793367:238386 +k1,18180:12122196,32793367:238387 +k1,18180:13122110,32793367:238386 +k1,18180:17705533,32793367:238386 +k1,18180:20204256,32793367:238386 +k1,18180:22194419,32793367:238386 +k1,18180:24460489,32793367:238386 +k1,18180:25358168,32793367:238387 +k1,18180:26615639,32793367:238386 +k1,18180:29611780,32793367:238386 +(1,18180:29611780,32793367:0,452978,115847 +r1,18202:31728605,32793367:2116825,568825,115847 +k1,18180:29611780,32793367:-2116825 +) +(1,18180:29611780,32793367:2116825,452978,115847 +k1,18180:29611780,32793367:3277 +h1,18180:31725328,32793367:0,411205,112570 +) +k1,18180:31966991,32793367:238386 +k1,18180:32583029,32793367:0 +) +(1,18181:6764466,33658447:25818563,505283,134348 +g1,18180:7982780,33658447 +(1,18180:7982780,33658447:0,452978,122846 +r1,18202:9396181,33658447:1413401,575824,122846 +k1,18180:7982780,33658447:-1413401 +) +(1,18180:7982780,33658447:1413401,452978,122846 +k1,18180:7982780,33658447:3277 +h1,18180:9392904,33658447:0,411205,112570 +) +g1,18180:9595410,33658447 +g1,18180:11071936,33658447 +k1,18181:32583029,33658447:19499138 +g1,18181:32583029,33658447 +) +] +g1,18181:32583029,33792795 +) +h1,18181:6630773,33792795:0,0,0 +(1,18184:6630773,34657875:25952256,505283,134348 +h1,18183:6630773,34657875:983040,0,0 +k1,18183:9617395,34657875:228867 +k1,18183:10202121,34657875:228866 +k1,18183:13420740,34657875:228867 +k1,18183:16063952,34657875:228866 +k1,18183:19646952,34657875:228867 +k1,18183:21990009,34657875:228866 +k1,18183:25316107,34657875:228867 +k1,18183:25900833,34657875:228866 +k1,18183:29079475,34657875:228867 +k1,18184:32583029,34657875:0 +) +(1,18184:6630773,35522955:25952256,513147,126483 +k1,18183:8121436,35522955:223197 +k1,18183:9003925,35522955:223197 +k1,18183:10246207,35522955:223197 +k1,18183:14541156,35522955:223197 +k1,18183:15447238,35522955:223197 +k1,18183:19178577,35522955:223197 +k1,18183:20017812,35522955:223197 +k1,18183:21260093,35522955:223196 +k1,18183:22872653,35522955:223197 +k1,18183:23553947,35522955:223197 +k1,18183:26329771,35522955:223197 +k1,18183:27239130,35522955:223197 +k1,18183:29344521,35522955:223197 +k1,18183:29923578,35522955:223197 +k1,18184:32583029,35522955:0 +) +(1,18184:6630773,36388035:25952256,505283,134348 +k1,18183:7495118,36388035:181460 +(1,18183:7495118,36388035:0,414482,115847 +r1,18202:8908519,36388035:1413401,530329,115847 +k1,18183:7495118,36388035:-1413401 +) +(1,18183:7495118,36388035:1413401,414482,115847 +k1,18183:7495118,36388035:3277 +h1,18183:8905242,36388035:0,411205,112570 +) +k1,18183:9089980,36388035:181461 +k1,18183:10990450,36388035:181461 +k1,18183:14636143,36388035:181460 +k1,18183:15836688,36388035:181460 +k1,18183:17407512,36388035:181461 +k1,18183:18780418,36388035:181461 +k1,18183:19317738,36388035:181460 +(1,18183:19317738,36388035:0,414482,122846 +r1,18202:20731139,36388035:1413401,537328,122846 +k1,18183:19317738,36388035:-1413401 +) +(1,18183:19317738,36388035:1413401,414482,122846 +k1,18183:19317738,36388035:3277 +h1,18183:20727862,36388035:0,411205,112570 +) +k1,18183:21086269,36388035:181460 +k1,18183:24021553,36388035:181461 +k1,18183:25895154,36388035:181461 +k1,18183:30314172,36388035:181460 +k1,18183:32583029,36388035:0 +) +(1,18184:6630773,37253115:25952256,513147,126483 +k1,18183:7911308,37253115:208366 +k1,18183:9185945,37253115:208366 +k1,18183:11697246,37253115:208366 +k1,18183:12557039,37253115:208365 +k1,18183:15385534,37253115:208366 +k1,18183:15949760,37253115:208366 +k1,18183:19242250,37253115:208366 +k1,18183:22441024,37253115:208366 +k1,18183:23308682,37253115:208366 +k1,18183:24536132,37253115:208365 +k1,18183:26307532,37253115:208366 +k1,18183:28004221,37253115:208366 +(1,18183:28004221,37253115:0,452978,115847 +r1,18202:32583029,37253115:4578808,568825,115847 +k1,18183:28004221,37253115:-4578808 +) +(1,18183:28004221,37253115:4578808,452978,115847 +k1,18183:28004221,37253115:3277 +h1,18183:32579752,37253115:0,411205,112570 +) +k1,18183:32583029,37253115:0 +) +(1,18184:6630773,38118195:25952256,513147,134348 +k1,18183:7919866,38118195:271319 +k1,18183:8547045,38118195:271319 +k1,18183:10631090,38118195:271319 +k1,18183:14219185,38118195:271318 +k1,18183:15722581,38118195:271319 +k1,18183:18272587,38118195:271319 +h1,18183:19815305,38118195:0,0,0 +k1,18183:20086624,38118195:271319 +k1,18183:21167313,38118195:271319 +k1,18183:22936785,38118195:271319 +h1,18183:24132162,38118195:0,0,0 +k1,18183:24610575,38118195:271319 +k1,18183:26073338,38118195:271318 +k1,18183:28459504,38118195:271319 +k1,18183:29749908,38118195:271319 +k1,18183:32583029,38118195:0 +) +(1,18184:6630773,38983275:25952256,505283,134348 +k1,18183:9866301,38983275:198590 +k1,18183:12075536,38983275:198590 +k1,18183:12925555,38983275:198591 +(1,18183:12925555,38983275:0,452978,122846 +r1,18202:16800939,38983275:3875384,575824,122846 +k1,18183:12925555,38983275:-3875384 +) +(1,18183:12925555,38983275:3875384,452978,122846 +k1,18183:12925555,38983275:3277 +h1,18183:16797662,38983275:0,411205,112570 +) +k1,18183:17173199,38983275:198590 +k1,18183:19754023,38983275:198590 +(1,18183:19754023,38983275:0,452978,115847 +r1,18202:24332831,38983275:4578808,568825,115847 +k1,18183:19754023,38983275:-4578808 +) +(1,18183:19754023,38983275:4578808,452978,115847 +g1,18183:22219283,38983275 +g1,18183:22922707,38983275 +h1,18183:24329554,38983275:0,411205,112570 +) +k1,18183:24531421,38983275:198590 +k1,18183:26880903,38983275:198590 +(1,18183:26880903,38983275:0,452978,115847 +r1,18202:28294304,38983275:1413401,568825,115847 +k1,18183:26880903,38983275:-1413401 +) +(1,18183:26880903,38983275:1413401,452978,115847 +k1,18183:26880903,38983275:3277 +h1,18183:28291027,38983275:0,411205,112570 +) +k1,18183:28492895,38983275:198591 +k1,18183:29377647,38983275:198590 +k1,18183:30595322,38983275:198590 +k1,18183:32583029,38983275:0 +) +(1,18184:6630773,39848355:25952256,513147,134348 +k1,18183:8746054,39848355:180658 +k1,18183:11795878,39848355:180658 +k1,18183:14358770,39848355:180658 +(1,18183:14358770,39848355:0,459977,115847 +r1,18202:19641003,39848355:5282233,575824,115847 +k1,18183:14358770,39848355:-5282233 +) +(1,18183:14358770,39848355:5282233,459977,115847 +g1,18183:17175742,39848355 +g1,18183:17879166,39848355 +g1,18183:18582590,39848355 +g1,18183:18934302,39848355 +g1,18183:19286014,39848355 +h1,18183:19637726,39848355:0,411205,112570 +) +k1,18183:19821661,39848355:180658 +k1,18183:21267164,39848355:180658 +k1,18183:22466907,39848355:180658 +k1,18183:24635273,39848355:180659 +k1,18183:25467359,39848355:180658 +k1,18183:26395783,39848355:180658 +k1,18183:28462567,39848355:180658 +k1,18183:30024069,39848355:180658 +k1,18183:31482024,39848355:180658 +k1,18183:32583029,39848355:0 +) +(1,18184:6630773,40713435:25952256,513147,134348 +g1,18183:8002441,40713435 +g1,18183:10263433,40713435 +g1,18183:11619372,40713435 +g1,18183:13386222,40713435 +g1,18183:17092938,40713435 +(1,18183:17092938,40713435:0,452978,122846 +r1,18202:21320034,40713435:4227096,575824,122846 +k1,18183:17092938,40713435:-4227096 +) +(1,18183:17092938,40713435:4227096,452978,122846 +k1,18183:17092938,40713435:3277 +h1,18183:21316757,40713435:0,411205,112570 +) +g1,18183:21519263,40713435 +g1,18183:22909937,40713435 +g1,18183:24265876,40713435 +g1,18183:26032726,40713435 +(1,18183:26032726,40713435:0,452978,122846 +r1,18202:29908110,40713435:3875384,575824,122846 +k1,18183:26032726,40713435:-3875384 +) +(1,18183:26032726,40713435:3875384,452978,122846 +k1,18183:26032726,40713435:3277 +h1,18183:29904833,40713435:0,411205,112570 +) +k1,18184:32583029,40713435:2622491 +g1,18184:32583029,40713435 +) +v1,18186:6630773,41398290:0,393216,0 +(1,18193:6630773,43793538:25952256,2788464,196608 +g1,18193:6630773,43793538 +g1,18193:6630773,43793538 +g1,18193:6434165,43793538 +(1,18193:6434165,43793538:0,2788464,196608 +r1,18202:32779637,43793538:26345472,2985072,196608 +k1,18193:6434165,43793538:-26345472 +) +(1,18193:6434165,43793538:26345472,2788464,196608 +[1,18193:6630773,43793538:25952256,2591856,0 +(1,18188:6630773,41626121:25952256,424439,112852 +(1,18187:6630773,41626121:0,0,0 +g1,18187:6630773,41626121 +g1,18187:6630773,41626121 +g1,18187:6303093,41626121 +(1,18187:6303093,41626121:0,0,0 +) +g1,18187:6630773,41626121 +) +k1,18188:6630773,41626121:0 +g1,18188:10614221,41626121 +g1,18188:11278129,41626121 +k1,18188:11278129,41626121:0 +h1,18188:13601807,41626121:0,0,0 +k1,18188:32583029,41626121:18981222 +g1,18188:32583029,41626121 +) +(1,18189:6630773,42310976:25952256,424439,112852 +h1,18189:6630773,42310976:0,0,0 +g1,18189:6962727,42310976 +g1,18189:7294681,42310976 +g1,18189:7626635,42310976 +g1,18189:7958589,42310976 +g1,18189:8290543,42310976 +g1,18189:8622497,42310976 +g1,18189:8954451,42310976 +g1,18189:11610083,42310976 +g1,18189:12273991,42310976 +g1,18189:14265715,42310976 +g1,18189:14929623,42310976 +g1,18189:16921347,42310976 +g1,18189:17585255,42310976 +g1,18189:18249163,42310976 +g1,18189:20240887,42310976 +h1,18189:20572841,42310976:0,0,0 +k1,18189:32583029,42310976:12010188 +g1,18189:32583029,42310976 +) +(1,18190:6630773,42995831:25952256,424439,112852 +h1,18190:6630773,42995831:0,0,0 +g1,18190:6962727,42995831 +g1,18190:7294681,42995831 +g1,18190:11610082,42995831 +h1,18190:11942036,42995831:0,0,0 +k1,18190:32583028,42995831:20640992 +g1,18190:32583028,42995831 +) +(1,18191:6630773,43680686:25952256,431045,112852 +h1,18191:6630773,43680686:0,0,0 +g1,18191:6962727,43680686 +g1,18191:7294681,43680686 +g1,18191:12937898,43680686 +g1,18191:13601806,43680686 +g1,18191:16257438,43680686 +g1,18191:18581116,43680686 +g1,18191:19245024,43680686 +g1,18191:21236748,43680686 +g1,18191:23892380,43680686 +g1,18191:24556288,43680686 +g1,18191:25220196,43680686 +g1,18191:25884104,43680686 +h1,18191:26548012,43680686:0,0,0 +k1,18191:32583029,43680686:6035017 +g1,18191:32583029,43680686 +) +] +) +g1,18193:32583029,43793538 +g1,18193:6630773,43793538 +g1,18193:6630773,43793538 +g1,18193:32583029,43793538 +g1,18193:32583029,43793538 +) +h1,18193:6630773,43990146:0,0,0 +] +(1,18202:32583029,45706769:0,0,0 +g1,18202:32583029,45706769 +) +) +] +(1,18202:6630773,47279633:25952256,0,0 +h1,18202:6630773,47279633:25952256,0,0 +) +] +(1,18202:4262630,4025873:0,0,0 +[1,18202:-473656,4025873:0,0,0 +(1,18202:-473656,-710413:0,0,0 +(1,18202:-473656,-710413:0,0,0 +g1,18202:-473656,-710413 +) +g1,18202:-473656,-710413 ) ] ) ] !20808 -}296 -Input:3026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}297 +Input:3030:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3031:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{297 -[1,18227:4262630,47279633:28320399,43253760,0 -(1,18227:4262630,4025873:0,0,0 -[1,18227:-473656,4025873:0,0,0 -(1,18227:-473656,-710413:0,0,0 -(1,18227:-473656,-644877:0,0,0 -k1,18227:-473656,-644877:-65536 +{298 +[1,18225:4262630,47279633:28320399,43253760,0 +(1,18225:4262630,4025873:0,0,0 +[1,18225:-473656,4025873:0,0,0 +(1,18225:-473656,-710413:0,0,0 +(1,18225:-473656,-644877:0,0,0 +k1,18225:-473656,-644877:-65536 ) -(1,18227:-473656,4736287:0,0,0 -k1,18227:-473656,4736287:5209943 +(1,18225:-473656,4736287:0,0,0 +k1,18225:-473656,4736287:5209943 ) -g1,18227:-473656,-710413 +g1,18225:-473656,-710413 ) ] ) -[1,18227:6630773,47279633:25952256,43253760,0 -[1,18227:6630773,4812305:25952256,786432,0 -(1,18227:6630773,4812305:25952256,513147,126483 -(1,18227:6630773,4812305:25952256,513147,126483 -g1,18227:3078558,4812305 -[1,18227:3078558,4812305:0,0,0 -(1,18227:3078558,2439708:0,1703936,0 -k1,18227:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18227:2537886,2439708:1179648,16384,0 +[1,18225:6630773,47279633:25952256,43253760,0 +[1,18225:6630773,4812305:25952256,786432,0 +(1,18225:6630773,4812305:25952256,513147,126483 +(1,18225:6630773,4812305:25952256,513147,126483 +g1,18225:3078558,4812305 +[1,18225:3078558,4812305:0,0,0 +(1,18225:3078558,2439708:0,1703936,0 +k1,18225:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18225:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18227:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18225:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18227:3078558,4812305:0,0,0 -(1,18227:3078558,2439708:0,1703936,0 -g1,18227:29030814,2439708 -g1,18227:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18227:36151628,1915420:16384,1179648,0 +[1,18225:3078558,4812305:0,0,0 +(1,18225:3078558,2439708:0,1703936,0 +g1,18225:29030814,2439708 +g1,18225:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18225:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18227:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18225:37855564,2439708:1179648,16384,0 ) ) -k1,18227:3078556,2439708:-34777008 +k1,18225:3078556,2439708:-34777008 ) ] -[1,18227:3078558,4812305:0,0,0 -(1,18227:3078558,49800853:0,16384,2228224 -k1,18227:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18227:2537886,49800853:1179648,16384,0 +[1,18225:3078558,4812305:0,0,0 +(1,18225:3078558,49800853:0,16384,2228224 +k1,18225:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18225:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18227:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18225:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18227:3078558,4812305:0,0,0 -(1,18227:3078558,49800853:0,16384,2228224 -g1,18227:29030814,49800853 -g1,18227:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18227:36151628,51504789:16384,1179648,0 +[1,18225:3078558,4812305:0,0,0 +(1,18225:3078558,49800853:0,16384,2228224 +g1,18225:29030814,49800853 +g1,18225:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18225:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18227:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18225:37855564,49800853:1179648,16384,0 ) ) -k1,18227:3078556,49800853:-34777008 +k1,18225:3078556,49800853:-34777008 ) ] -g1,18227:6630773,4812305 -k1,18227:21386205,4812305:13560055 -g1,18227:21999622,4812305 -g1,18227:25611966,4812305 -g1,18227:28956923,4812305 -g1,18227:29772190,4812305 -) -) -] -[1,18227:6630773,45706769:25952256,40108032,0 -(1,18227:6630773,45706769:25952256,40108032,0 -(1,18227:6630773,45706769:0,0,0 -g1,18227:6630773,45706769 -) -[1,18227:6630773,45706769:25952256,40108032,0 -(1,18198:6630773,14682403:25952256,9083666,0 -k1,18198:10523651,14682403:3892878 -h1,18197:10523651,14682403:0,0,0 -(1,18197:10523651,14682403:18166500,9083666,0 -(1,18197:10523651,14682403:18167376,9083688,0 -(1,18197:10523651,14682403:18167376,9083688,0 -(1,18197:10523651,14682403:0,9083688,0 -(1,18197:10523651,14682403:0,14208860,0 -(1,18197:10523651,14682403:28417720,14208860,0 -) -k1,18197:10523651,14682403:-28417720 -) -) -g1,18197:28691027,14682403 -) -) -) -g1,18198:28690151,14682403 -k1,18198:32583029,14682403:3892878 -) -(1,18205:6630773,15547483:25952256,513147,126483 -h1,18204:6630773,15547483:983040,0,0 -k1,18204:9082256,15547483:271756 -k1,18204:10961610,15547483:271756 -k1,18204:13088690,15547483:271756 -k1,18204:15170550,15547483:271756 -k1,18204:16251676,15547483:271756 -k1,18204:19119313,15547483:271756 -k1,18204:20338719,15547483:271755 -k1,18204:22607357,15547483:271756 -k1,18204:26523570,15547483:271756 -k1,18204:27986771,15547483:271756 -k1,18204:30664353,15547483:271756 -k1,18204:31563944,15547483:271756 -k1,18204:32583029,15547483:0 -) -(1,18205:6630773,16412563:25952256,513147,134348 -k1,18204:9785087,16412563:162595 -k1,18204:11816112,16412563:162594 -k1,18204:12997792,16412563:162595 -k1,18204:15756268,16412563:162595 -k1,18204:16910423,16412563:162595 -k1,18204:20553634,16412563:162594 -k1,18204:21477757,16412563:162595 -k1,18204:25042981,16412563:162595 -k1,18204:26490081,16412563:162594 -k1,18204:29272805,16412563:162595 -k1,18204:32583029,16412563:0 -) -(1,18205:6630773,17277643:25952256,513147,134348 -k1,18204:9746187,17277643:240350 -k1,18204:11767805,17277643:240349 -k1,18204:14327474,17277643:240350 -(1,18204:14327474,17277643:0,452978,122846 -r1,18227:19609705,17277643:5282231,575824,122846 -k1,18204:14327474,17277643:-5282231 -) -(1,18204:14327474,17277643:5282231,452978,122846 -k1,18204:14327474,17277643:3277 -h1,18204:19606428,17277643:0,411205,112570 -) -k1,18204:19850055,17277643:240350 -k1,18204:22371712,17277643:240349 -k1,18204:22967922,17277643:240350 -k1,18204:26854039,17277643:240349 -k1,18204:31931601,17277643:240350 -k1,18204:32583029,17277643:0 -) -(1,18205:6630773,18142723:25952256,505283,138281 -k1,18204:7875755,18142723:225897 -k1,18204:10112298,18142723:225898 -k1,18204:12923590,18142723:225897 -k1,18204:13800916,18142723:225898 -$1,18204:13800916,18142723 -$1,18204:14352729,18142723 -k1,18204:14752296,18142723:225897 -k1,18204:16359038,18142723:225898 -k1,18204:18511693,18142723:225897 -k1,18204:19883816,18142723:225898 -k1,18204:22634160,18142723:225897 -k1,18204:24595451,18142723:225898 -k1,18204:26675362,18142723:225897 -k1,18204:28734302,18142723:225898 -k1,18204:30354150,18142723:225897 -k1,18204:32583029,18142723:0 -) -(1,18205:6630773,19007803:25952256,505283,134348 -k1,18204:8983112,19007803:143776 -k1,18204:12243780,19007803:143776 -k1,18204:13038984,19007803:143776 -k1,18204:13538619,19007803:143775 -k1,18204:17328163,19007803:143776 -k1,18204:19217818,19007803:143776 -k1,18204:20723432,19007803:143776 -k1,18204:22854260,19007803:143776 -k1,18204:25776107,19007803:143776 -k1,18204:26571310,19007803:143775 -k1,18204:27462852,19007803:143776 -k1,18204:30804130,19007803:143776 -k1,18204:31563944,19007803:143776 -k1,18204:32583029,19007803:0 -) -(1,18205:6630773,19872883:25952256,513147,134348 -k1,18204:9303495,19872883:237404 -k1,18204:11332653,19872883:237404 -k1,18204:12642226,19872883:237404 -k1,18204:15733068,19872883:237404 -k1,18204:16962032,19872883:237404 -k1,18204:19571185,19872883:237405 -k1,18204:20460017,19872883:237404 -k1,18204:21716506,19872883:237404 -k1,18204:25935877,19872883:237404 -k1,18204:27736315,19872883:237404 -k1,18204:28601554,19872883:237404 -k1,18204:30540928,19872883:237404 -k1,18204:32583029,19872883:0 -) -(1,18205:6630773,20737963:25952256,513147,126483 -k1,18204:7843492,20737963:193634 -k1,18204:12874337,20737963:193633 -k1,18204:15899782,20737963:193634 -k1,18204:16709453,20737963:193633 -k1,18204:17922172,20737963:193634 -k1,18204:19688015,20737963:193634 -k1,18204:21991252,20737963:193633 -k1,18204:23203971,20737963:193634 -k1,18204:25408250,20737963:193634 -k1,18204:26217921,20737963:193633 -k1,18204:28996950,20737963:193634 -k1,18204:29849875,20737963:193633 -k1,18204:31062594,20737963:193634 -k1,18205:32583029,20737963:0 -) -(1,18205:6630773,21603043:25952256,513147,134348 -k1,18204:8685932,21603043:216874 -k1,18204:10945562,21603043:216873 -k1,18204:12542624,21603043:216874 -k1,18204:13751058,21603043:216874 -k1,18204:16553326,21603043:216873 -k1,18204:17421628,21603043:216874 -k1,18204:20813066,21603043:216874 -k1,18204:22221385,21603043:216874 -k1,18204:24643545,21603043:216873 -k1,18204:25511847,21603043:216874 -k1,18204:28561842,21603043:216874 -k1,18204:30546876,21603043:216873 -k1,18204:31379788,21603043:216874 -k1,18204:32583029,21603043:0 -) -(1,18205:6630773,22468123:25952256,513147,138281 -k1,18204:9544138,22468123:251948 -k1,18204:10815171,22468123:251948 -k1,18204:12879846,22468123:251949 -k1,18204:16448571,22468123:251948 -k1,18204:17232016,22468123:251948 -k1,18204:19196420,22468123:251948 -k1,18204:20099796,22468123:251948 -(1,18204:20099796,22468123:0,452978,122846 -r1,18227:22568333,22468123:2468537,575824,122846 -k1,18204:20099796,22468123:-2468537 -) -(1,18204:20099796,22468123:2468537,452978,122846 -k1,18204:20099796,22468123:3277 -h1,18204:22565056,22468123:0,411205,112570 -) -k1,18204:22820281,22468123:251948 -k1,18204:27054197,22468123:251949 -$1,18204:27054197,22468123 -$1,18204:27606010,22468123 -k1,18204:27857958,22468123:251948 -k1,18204:30120551,22468123:251948 -k1,18204:31563944,22468123:251948 -k1,18204:32583029,22468123:0 -) -(1,18205:6630773,23333203:25952256,505283,134348 -g1,18204:9265320,23333203 -$1,18204:9265320,23333203 -$1,18204:9767981,23333203 -g1,18204:9967210,23333203 -k1,18205:32583029,23333203:20552746 -g1,18205:32583029,23333203 -) -v1,18207:6630773,24018058:0,393216,0 -(1,18215:6630773,27098161:25952256,3473319,196608 -g1,18215:6630773,27098161 -g1,18215:6630773,27098161 -g1,18215:6434165,27098161 -(1,18215:6434165,27098161:0,3473319,196608 -r1,18227:32779637,27098161:26345472,3669927,196608 -k1,18215:6434165,27098161:-26345472 -) -(1,18215:6434165,27098161:26345472,3473319,196608 -[1,18215:6630773,27098161:25952256,3276711,0 -(1,18209:6630773,24245889:25952256,424439,112852 -(1,18208:6630773,24245889:0,0,0 -g1,18208:6630773,24245889 -g1,18208:6630773,24245889 -g1,18208:6303093,24245889 -(1,18208:6303093,24245889:0,0,0 -) -g1,18208:6630773,24245889 -) -k1,18209:6630773,24245889:0 -g1,18209:10614221,24245889 -g1,18209:11278129,24245889 -k1,18209:11278129,24245889:0 -h1,18209:13601807,24245889:0,0,0 -k1,18209:32583029,24245889:18981222 -g1,18209:32583029,24245889 -) -(1,18210:6630773,24930744:25952256,424439,112852 -h1,18210:6630773,24930744:0,0,0 -g1,18210:6962727,24930744 -g1,18210:7294681,24930744 -g1,18210:7626635,24930744 -g1,18210:7958589,24930744 -g1,18210:8290543,24930744 -g1,18210:8622497,24930744 -g1,18210:8954451,24930744 -g1,18210:11610083,24930744 -g1,18210:12273991,24930744 -g1,18210:14265715,24930744 -g1,18210:14929623,24930744 -g1,18210:16921347,24930744 -g1,18210:17585255,24930744 -g1,18210:18249163,24930744 -g1,18210:20240887,24930744 -h1,18210:20572841,24930744:0,0,0 -k1,18210:32583029,24930744:12010188 -g1,18210:32583029,24930744 -) -(1,18211:6630773,25615599:25952256,424439,112852 -h1,18211:6630773,25615599:0,0,0 -g1,18211:6962727,25615599 -g1,18211:7294681,25615599 -g1,18211:11610082,25615599 -h1,18211:11942036,25615599:0,0,0 -k1,18211:32583028,25615599:20640992 -g1,18211:32583028,25615599 -) -(1,18212:6630773,26300454:25952256,431045,112852 -h1,18212:6630773,26300454:0,0,0 -g1,18212:6962727,26300454 -g1,18212:7294681,26300454 -g1,18212:12937898,26300454 -g1,18212:13601806,26300454 -g1,18212:16257438,26300454 -g1,18212:18581116,26300454 -g1,18212:19245024,26300454 -g1,18212:21236748,26300454 -g1,18212:23892380,26300454 -g1,18212:24556288,26300454 -g1,18212:25220196,26300454 -g1,18212:25884104,26300454 -g1,18212:26879966,26300454 -h1,18212:27211920,26300454:0,0,0 -k1,18212:32583029,26300454:5371109 -g1,18212:32583029,26300454 -) -(1,18213:6630773,26985309:25952256,424439,112852 -h1,18213:6630773,26985309:0,0,0 -g1,18213:6962727,26985309 -g1,18213:7294681,26985309 -k1,18213:7294681,26985309:0 -h1,18213:12273990,26985309:0,0,0 -k1,18213:32583030,26985309:20309040 -g1,18213:32583030,26985309 -) -] -) -g1,18215:32583029,27098161 -g1,18215:6630773,27098161 -g1,18215:6630773,27098161 -g1,18215:32583029,27098161 -g1,18215:32583029,27098161 -) -h1,18215:6630773,27294769:0,0,0 -(1,18218:6630773,36443971:25952256,9083666,0 -k1,18218:10523651,36443971:3892878 -h1,18217:10523651,36443971:0,0,0 -(1,18217:10523651,36443971:18166500,9083666,0 -(1,18217:10523651,36443971:18167376,9083688,0 -(1,18217:10523651,36443971:18167376,9083688,0 -(1,18217:10523651,36443971:0,9083688,0 -(1,18217:10523651,36443971:0,14208860,0 -(1,18217:10523651,36443971:28417720,14208860,0 -) -k1,18217:10523651,36443971:-28417720 -) -) -g1,18217:28691027,36443971 -) -) -) -g1,18218:28690151,36443971 -k1,18218:32583029,36443971:3892878 -) -(1,18225:6630773,37309051:25952256,513147,134348 -h1,18224:6630773,37309051:983040,0,0 -k1,18224:9095682,37309051:285182 -k1,18224:11161478,37309051:285183 -k1,18224:13261352,37309051:285182 -k1,18224:14205827,37309051:285183 -k1,18224:14846869,37309051:285182 -k1,18224:16704260,37309051:285182 -k1,18224:18093725,37309051:285183 -k1,18224:19126673,37309051:285182 -k1,18224:20346398,37309051:285182 -k1,18224:23737988,37309051:285183 -k1,18224:26350353,37309051:285182 -k1,18224:27294828,37309051:285183 -k1,18224:31896867,37309051:285182 -k1,18224:32583029,37309051:0 -) -(1,18225:6630773,38174131:25952256,513147,126483 -k1,18224:7591476,38174131:199175 -k1,18224:10229901,38174131:199175 -k1,18224:12303405,38174131:199174 -k1,18224:14317272,38174131:199175 -k1,18224:16445827,38174131:199175 -k1,18224:17000862,38174131:199175 -k1,18224:19279494,38174131:199175 -k1,18224:21902190,38174131:199175 -k1,18224:23303950,38174131:199174 -k1,18224:24488786,38174131:199175 -k1,18224:26294249,38174131:199175 -k1,18224:31020651,38174131:199175 -k1,18224:32583029,38174131:0 -) -(1,18225:6630773,39039211:25952256,505283,126483 -k1,18224:11064338,39039211:188143 -k1,18224:12996393,39039211:188142 -k1,18224:15550386,39039211:188143 -k1,18224:16757614,39039211:188143 -k1,18224:18517966,39039211:188143 -k1,18224:20520800,39039211:188142 -k1,18224:22936512,39039211:188143 -k1,18224:25344359,39039211:188143 -k1,18224:26723947,39039211:188143 -k1,18224:27903649,39039211:188142 -k1,18224:29158063,39039211:188143 -k1,18224:31931601,39039211:188143 -k1,18224:32583029,39039211:0 -) -(1,18225:6630773,39904291:25952256,505283,134348 -k1,18224:11665613,39904291:135368 -k1,18224:13497708,39904291:135368 -k1,18224:17704828,39904291:135368 -k1,18224:18831756,39904291:135368 -k1,18224:20033396,39904291:135369 -k1,18224:22927174,39904291:135368 -k1,18224:23678580,39904291:135368 -k1,18224:24833033,39904291:135368 -k1,18224:27918176,39904291:135368 -k1,18224:32583029,39904291:0 -) -(1,18225:6630773,40769371:25952256,505283,134348 -k1,18224:7522062,40769371:208404 -k1,18224:9243693,40769371:208405 -k1,18224:10068135,40769371:208404 -k1,18224:14251953,40769371:208404 -k1,18224:17454698,40769371:208405 -k1,18224:19361140,40769371:208404 -k1,18224:21304938,40769371:208405 -k1,18224:24195731,40769371:208404 -k1,18224:25423220,40769371:208404 -k1,18224:30025814,40769371:208405 -k1,18224:31225778,40769371:208404 -k1,18224:32583029,40769371:0 -) -(1,18225:6630773,41634451:25952256,513147,126483 -k1,18224:9202453,41634451:199932 -k1,18224:10053812,41634451:199931 -k1,18224:14325496,41634451:199932 -k1,18224:15809933,41634451:199931 -k1,18224:17040746,41634451:199932 -k1,18224:19250666,41634451:199931 -k1,18224:20469683,41634451:199932 -k1,18224:22484306,41634451:199931 -k1,18224:23343530,41634451:199932 -k1,18224:24309577,41634451:199931 -k1,18224:26412019,41634451:199932 -k1,18224:27227988,41634451:199931 -k1,18224:28694076,41634451:199932 -k1,18224:30768337,41634451:199931 -k1,18224:32583029,41634451:0 -) -(1,18225:6630773,42499531:25952256,513147,134348 -k1,18224:9790264,42499531:172360 -k1,18224:11741925,42499531:172359 -k1,18224:12933370,42499531:172360 -k1,18224:15630176,42499531:172359 -k1,18224:17149956,42499531:172360 -k1,18224:19020353,42499531:172359 -k1,18224:20211798,42499531:172360 -k1,18224:22908605,42499531:172360 -k1,18224:24428384,42499531:172359 -k1,18224:25132241,42499531:172360 -k1,18224:29621457,42499531:172359 -k1,18224:30728360,42499531:172360 -k1,18224:32583029,42499531:0 -) -(1,18225:6630773,43364611:25952256,513147,134348 -k1,18224:7629308,43364611:189165 -k1,18224:8837558,43364611:189165 -k1,18224:10807336,43364611:189165 -k1,18224:11655792,43364611:189164 -k1,18224:12864042,43364611:189165 -k1,18224:15270290,43364611:189165 -k1,18224:17481241,43364611:189165 -k1,18224:21181825,43364611:189165 -k1,18224:22390075,43364611:189165 -k1,18224:25386802,43364611:189165 -k1,18224:26227394,43364611:189164 -k1,18224:28427204,43364611:189165 -k1,18224:29275661,43364611:189165 -k1,18224:29820686,43364611:189165 -k1,18224:32583029,43364611:0 -) -(1,18225:6630773,44229691:25952256,513147,134348 -k1,18224:10000886,44229691:195549 -k1,18224:11533370,44229691:195550 -k1,18224:13969595,44229691:195549 -k1,18224:15863182,44229691:195549 -k1,18224:16414592,44229691:195550 -k1,18224:18690254,44229691:195549 -k1,18224:19545095,44229691:195549 -k1,18224:20759729,44229691:195549 -k1,18224:22344642,44229691:195550 -k1,18224:23531751,44229691:195549 -k1,18224:26315972,44229691:195549 -k1,18224:27273050,44229691:195550 -k1,18224:30401335,44229691:195549 -k1,18224:32583029,44229691:0 -) -(1,18225:6630773,45094771:25952256,513147,7863 -g1,18224:7849087,45094771 -g1,18224:9863008,45094771 -g1,18224:10721529,45094771 -g1,18224:11276618,45094771 -k1,18225:32583029,45094771:19681774 -g1,18225:32583029,45094771 -) -] -(1,18227:32583029,45706769:0,0,0 -g1,18227:32583029,45706769 -) -) -] -(1,18227:6630773,47279633:25952256,0,0 -h1,18227:6630773,47279633:25952256,0,0 -) -] -(1,18227:4262630,4025873:0,0,0 -[1,18227:-473656,4025873:0,0,0 -(1,18227:-473656,-710413:0,0,0 -(1,18227:-473656,-710413:0,0,0 -g1,18227:-473656,-710413 -) -g1,18227:-473656,-710413 +g1,18225:6630773,4812305 +k1,18225:21386205,4812305:13560055 +g1,18225:21999622,4812305 +g1,18225:25611966,4812305 +g1,18225:28956923,4812305 +g1,18225:29772190,4812305 +) +) +] +[1,18225:6630773,45706769:25952256,40108032,0 +(1,18225:6630773,45706769:25952256,40108032,0 +(1,18225:6630773,45706769:0,0,0 +g1,18225:6630773,45706769 +) +[1,18225:6630773,45706769:25952256,40108032,0 +(1,18196:6630773,14682403:25952256,9083666,0 +k1,18196:10523651,14682403:3892878 +h1,18195:10523651,14682403:0,0,0 +(1,18195:10523651,14682403:18166500,9083666,0 +(1,18195:10523651,14682403:18167376,9083688,0 +(1,18195:10523651,14682403:18167376,9083688,0 +(1,18195:10523651,14682403:0,9083688,0 +(1,18195:10523651,14682403:0,14208860,0 +(1,18195:10523651,14682403:28417720,14208860,0 +) +k1,18195:10523651,14682403:-28417720 +) +) +g1,18195:28691027,14682403 +) +) +) +g1,18196:28690151,14682403 +k1,18196:32583029,14682403:3892878 +) +(1,18203:6630773,15547483:25952256,513147,126483 +h1,18202:6630773,15547483:983040,0,0 +k1,18202:9082256,15547483:271756 +k1,18202:10961610,15547483:271756 +k1,18202:13088690,15547483:271756 +k1,18202:15170550,15547483:271756 +k1,18202:16251676,15547483:271756 +k1,18202:19119313,15547483:271756 +k1,18202:20338719,15547483:271755 +k1,18202:22607357,15547483:271756 +k1,18202:26523570,15547483:271756 +k1,18202:27986771,15547483:271756 +k1,18202:30664353,15547483:271756 +k1,18202:31563944,15547483:271756 +k1,18202:32583029,15547483:0 +) +(1,18203:6630773,16412563:25952256,513147,134348 +k1,18202:9785087,16412563:162595 +k1,18202:11816112,16412563:162594 +k1,18202:12997792,16412563:162595 +k1,18202:15756268,16412563:162595 +k1,18202:16910423,16412563:162595 +k1,18202:20553634,16412563:162594 +k1,18202:21477757,16412563:162595 +k1,18202:25042981,16412563:162595 +k1,18202:26490081,16412563:162594 +k1,18202:29272805,16412563:162595 +k1,18202:32583029,16412563:0 +) +(1,18203:6630773,17277643:25952256,513147,134348 +k1,18202:9746187,17277643:240350 +k1,18202:11767805,17277643:240349 +k1,18202:14327474,17277643:240350 +(1,18202:14327474,17277643:0,452978,122846 +r1,18225:19609705,17277643:5282231,575824,122846 +k1,18202:14327474,17277643:-5282231 +) +(1,18202:14327474,17277643:5282231,452978,122846 +k1,18202:14327474,17277643:3277 +h1,18202:19606428,17277643:0,411205,112570 +) +k1,18202:19850055,17277643:240350 +k1,18202:22371712,17277643:240349 +k1,18202:22967922,17277643:240350 +k1,18202:26854039,17277643:240349 +k1,18202:31931601,17277643:240350 +k1,18202:32583029,17277643:0 +) +(1,18203:6630773,18142723:25952256,505283,138281 +k1,18202:7875755,18142723:225897 +k1,18202:10112298,18142723:225898 +k1,18202:12923590,18142723:225897 +k1,18202:13800916,18142723:225898 +$1,18202:13800916,18142723 +$1,18202:14352729,18142723 +k1,18202:14752296,18142723:225897 +k1,18202:16359038,18142723:225898 +k1,18202:18511693,18142723:225897 +k1,18202:19883816,18142723:225898 +k1,18202:22634160,18142723:225897 +k1,18202:24595451,18142723:225898 +k1,18202:26675362,18142723:225897 +k1,18202:28734302,18142723:225898 +k1,18202:30354150,18142723:225897 +k1,18202:32583029,18142723:0 +) +(1,18203:6630773,19007803:25952256,505283,134348 +k1,18202:8983112,19007803:143776 +k1,18202:12243780,19007803:143776 +k1,18202:13038984,19007803:143776 +k1,18202:13538619,19007803:143775 +k1,18202:17328163,19007803:143776 +k1,18202:19217818,19007803:143776 +k1,18202:20723432,19007803:143776 +k1,18202:22854260,19007803:143776 +k1,18202:25776107,19007803:143776 +k1,18202:26571310,19007803:143775 +k1,18202:27462852,19007803:143776 +k1,18202:30804130,19007803:143776 +k1,18202:31563944,19007803:143776 +k1,18202:32583029,19007803:0 +) +(1,18203:6630773,19872883:25952256,513147,134348 +k1,18202:9303495,19872883:237404 +k1,18202:11332653,19872883:237404 +k1,18202:12642226,19872883:237404 +k1,18202:15733068,19872883:237404 +k1,18202:16962032,19872883:237404 +k1,18202:19571185,19872883:237405 +k1,18202:20460017,19872883:237404 +k1,18202:21716506,19872883:237404 +k1,18202:25935877,19872883:237404 +k1,18202:27736315,19872883:237404 +k1,18202:28601554,19872883:237404 +k1,18202:30540928,19872883:237404 +k1,18202:32583029,19872883:0 +) +(1,18203:6630773,20737963:25952256,513147,126483 +k1,18202:7843492,20737963:193634 +k1,18202:12874337,20737963:193633 +k1,18202:15899782,20737963:193634 +k1,18202:16709453,20737963:193633 +k1,18202:17922172,20737963:193634 +k1,18202:19688015,20737963:193634 +k1,18202:21991252,20737963:193633 +k1,18202:23203971,20737963:193634 +k1,18202:25408250,20737963:193634 +k1,18202:26217921,20737963:193633 +k1,18202:28996950,20737963:193634 +k1,18202:29849875,20737963:193633 +k1,18202:31062594,20737963:193634 +k1,18203:32583029,20737963:0 +) +(1,18203:6630773,21603043:25952256,513147,134348 +k1,18202:8685932,21603043:216874 +k1,18202:10945562,21603043:216873 +k1,18202:12542624,21603043:216874 +k1,18202:13751058,21603043:216874 +k1,18202:16553326,21603043:216873 +k1,18202:17421628,21603043:216874 +k1,18202:20813066,21603043:216874 +k1,18202:22221385,21603043:216874 +k1,18202:24643545,21603043:216873 +k1,18202:25511847,21603043:216874 +k1,18202:28561842,21603043:216874 +k1,18202:30546876,21603043:216873 +k1,18202:31379788,21603043:216874 +k1,18202:32583029,21603043:0 +) +(1,18203:6630773,22468123:25952256,513147,138281 +k1,18202:9544138,22468123:251948 +k1,18202:10815171,22468123:251948 +k1,18202:12879846,22468123:251949 +k1,18202:16448571,22468123:251948 +k1,18202:17232016,22468123:251948 +k1,18202:19196420,22468123:251948 +k1,18202:20099796,22468123:251948 +(1,18202:20099796,22468123:0,452978,122846 +r1,18225:22568333,22468123:2468537,575824,122846 +k1,18202:20099796,22468123:-2468537 +) +(1,18202:20099796,22468123:2468537,452978,122846 +k1,18202:20099796,22468123:3277 +h1,18202:22565056,22468123:0,411205,112570 +) +k1,18202:22820281,22468123:251948 +k1,18202:27054197,22468123:251949 +$1,18202:27054197,22468123 +$1,18202:27606010,22468123 +k1,18202:27857958,22468123:251948 +k1,18202:30120551,22468123:251948 +k1,18202:31563944,22468123:251948 +k1,18202:32583029,22468123:0 +) +(1,18203:6630773,23333203:25952256,505283,134348 +g1,18202:9265320,23333203 +$1,18202:9265320,23333203 +$1,18202:9767981,23333203 +g1,18202:9967210,23333203 +k1,18203:32583029,23333203:20552746 +g1,18203:32583029,23333203 +) +v1,18205:6630773,24018058:0,393216,0 +(1,18213:6630773,27098161:25952256,3473319,196608 +g1,18213:6630773,27098161 +g1,18213:6630773,27098161 +g1,18213:6434165,27098161 +(1,18213:6434165,27098161:0,3473319,196608 +r1,18225:32779637,27098161:26345472,3669927,196608 +k1,18213:6434165,27098161:-26345472 +) +(1,18213:6434165,27098161:26345472,3473319,196608 +[1,18213:6630773,27098161:25952256,3276711,0 +(1,18207:6630773,24245889:25952256,424439,112852 +(1,18206:6630773,24245889:0,0,0 +g1,18206:6630773,24245889 +g1,18206:6630773,24245889 +g1,18206:6303093,24245889 +(1,18206:6303093,24245889:0,0,0 +) +g1,18206:6630773,24245889 +) +k1,18207:6630773,24245889:0 +g1,18207:10614221,24245889 +g1,18207:11278129,24245889 +k1,18207:11278129,24245889:0 +h1,18207:13601807,24245889:0,0,0 +k1,18207:32583029,24245889:18981222 +g1,18207:32583029,24245889 +) +(1,18208:6630773,24930744:25952256,424439,112852 +h1,18208:6630773,24930744:0,0,0 +g1,18208:6962727,24930744 +g1,18208:7294681,24930744 +g1,18208:7626635,24930744 +g1,18208:7958589,24930744 +g1,18208:8290543,24930744 +g1,18208:8622497,24930744 +g1,18208:8954451,24930744 +g1,18208:11610083,24930744 +g1,18208:12273991,24930744 +g1,18208:14265715,24930744 +g1,18208:14929623,24930744 +g1,18208:16921347,24930744 +g1,18208:17585255,24930744 +g1,18208:18249163,24930744 +g1,18208:20240887,24930744 +h1,18208:20572841,24930744:0,0,0 +k1,18208:32583029,24930744:12010188 +g1,18208:32583029,24930744 +) +(1,18209:6630773,25615599:25952256,424439,112852 +h1,18209:6630773,25615599:0,0,0 +g1,18209:6962727,25615599 +g1,18209:7294681,25615599 +g1,18209:11610082,25615599 +h1,18209:11942036,25615599:0,0,0 +k1,18209:32583028,25615599:20640992 +g1,18209:32583028,25615599 +) +(1,18210:6630773,26300454:25952256,431045,112852 +h1,18210:6630773,26300454:0,0,0 +g1,18210:6962727,26300454 +g1,18210:7294681,26300454 +g1,18210:12937898,26300454 +g1,18210:13601806,26300454 +g1,18210:16257438,26300454 +g1,18210:18581116,26300454 +g1,18210:19245024,26300454 +g1,18210:21236748,26300454 +g1,18210:23892380,26300454 +g1,18210:24556288,26300454 +g1,18210:25220196,26300454 +g1,18210:25884104,26300454 +g1,18210:26879966,26300454 +h1,18210:27211920,26300454:0,0,0 +k1,18210:32583029,26300454:5371109 +g1,18210:32583029,26300454 +) +(1,18211:6630773,26985309:25952256,424439,112852 +h1,18211:6630773,26985309:0,0,0 +g1,18211:6962727,26985309 +g1,18211:7294681,26985309 +k1,18211:7294681,26985309:0 +h1,18211:12273990,26985309:0,0,0 +k1,18211:32583030,26985309:20309040 +g1,18211:32583030,26985309 +) +] +) +g1,18213:32583029,27098161 +g1,18213:6630773,27098161 +g1,18213:6630773,27098161 +g1,18213:32583029,27098161 +g1,18213:32583029,27098161 +) +h1,18213:6630773,27294769:0,0,0 +(1,18216:6630773,36443971:25952256,9083666,0 +k1,18216:10523651,36443971:3892878 +h1,18215:10523651,36443971:0,0,0 +(1,18215:10523651,36443971:18166500,9083666,0 +(1,18215:10523651,36443971:18167376,9083688,0 +(1,18215:10523651,36443971:18167376,9083688,0 +(1,18215:10523651,36443971:0,9083688,0 +(1,18215:10523651,36443971:0,14208860,0 +(1,18215:10523651,36443971:28417720,14208860,0 +) +k1,18215:10523651,36443971:-28417720 +) +) +g1,18215:28691027,36443971 +) +) +) +g1,18216:28690151,36443971 +k1,18216:32583029,36443971:3892878 +) +(1,18223:6630773,37309051:25952256,513147,134348 +h1,18222:6630773,37309051:983040,0,0 +k1,18222:9095682,37309051:285182 +k1,18222:11161478,37309051:285183 +k1,18222:13261352,37309051:285182 +k1,18222:14205827,37309051:285183 +k1,18222:14846869,37309051:285182 +k1,18222:16704260,37309051:285182 +k1,18222:18093725,37309051:285183 +k1,18222:19126673,37309051:285182 +k1,18222:20346398,37309051:285182 +k1,18222:23737988,37309051:285183 +k1,18222:26350353,37309051:285182 +k1,18222:27294828,37309051:285183 +k1,18222:31896867,37309051:285182 +k1,18222:32583029,37309051:0 +) +(1,18223:6630773,38174131:25952256,513147,126483 +k1,18222:7591476,38174131:199175 +k1,18222:10229901,38174131:199175 +k1,18222:12303405,38174131:199174 +k1,18222:14317272,38174131:199175 +k1,18222:16445827,38174131:199175 +k1,18222:17000862,38174131:199175 +k1,18222:19279494,38174131:199175 +k1,18222:21902190,38174131:199175 +k1,18222:23303950,38174131:199174 +k1,18222:24488786,38174131:199175 +k1,18222:26294249,38174131:199175 +k1,18222:31020651,38174131:199175 +k1,18222:32583029,38174131:0 +) +(1,18223:6630773,39039211:25952256,505283,126483 +k1,18222:11064338,39039211:188143 +k1,18222:12996393,39039211:188142 +k1,18222:15550386,39039211:188143 +k1,18222:16757614,39039211:188143 +k1,18222:18517966,39039211:188143 +k1,18222:20520800,39039211:188142 +k1,18222:22936512,39039211:188143 +k1,18222:25344359,39039211:188143 +k1,18222:26723947,39039211:188143 +k1,18222:27903649,39039211:188142 +k1,18222:29158063,39039211:188143 +k1,18222:31931601,39039211:188143 +k1,18222:32583029,39039211:0 +) +(1,18223:6630773,39904291:25952256,505283,134348 +k1,18222:11665613,39904291:135368 +k1,18222:13497708,39904291:135368 +k1,18222:17704828,39904291:135368 +k1,18222:18831756,39904291:135368 +k1,18222:20033396,39904291:135369 +k1,18222:22927174,39904291:135368 +k1,18222:23678580,39904291:135368 +k1,18222:24833033,39904291:135368 +k1,18222:27918176,39904291:135368 +k1,18222:32583029,39904291:0 +) +(1,18223:6630773,40769371:25952256,505283,134348 +k1,18222:7522062,40769371:208404 +k1,18222:9243693,40769371:208405 +k1,18222:10068135,40769371:208404 +k1,18222:14251953,40769371:208404 +k1,18222:17454698,40769371:208405 +k1,18222:19361140,40769371:208404 +k1,18222:21304938,40769371:208405 +k1,18222:24195731,40769371:208404 +k1,18222:25423220,40769371:208404 +k1,18222:30025814,40769371:208405 +k1,18222:31225778,40769371:208404 +k1,18222:32583029,40769371:0 +) +(1,18223:6630773,41634451:25952256,513147,126483 +k1,18222:9202453,41634451:199932 +k1,18222:10053812,41634451:199931 +k1,18222:14325496,41634451:199932 +k1,18222:15809933,41634451:199931 +k1,18222:17040746,41634451:199932 +k1,18222:19250666,41634451:199931 +k1,18222:20469683,41634451:199932 +k1,18222:22484306,41634451:199931 +k1,18222:23343530,41634451:199932 +k1,18222:24309577,41634451:199931 +k1,18222:26412019,41634451:199932 +k1,18222:27227988,41634451:199931 +k1,18222:28694076,41634451:199932 +k1,18222:30768337,41634451:199931 +k1,18222:32583029,41634451:0 +) +(1,18223:6630773,42499531:25952256,513147,134348 +k1,18222:9790264,42499531:172360 +k1,18222:11741925,42499531:172359 +k1,18222:12933370,42499531:172360 +k1,18222:15630176,42499531:172359 +k1,18222:17149956,42499531:172360 +k1,18222:19020353,42499531:172359 +k1,18222:20211798,42499531:172360 +k1,18222:22908605,42499531:172360 +k1,18222:24428384,42499531:172359 +k1,18222:25132241,42499531:172360 +k1,18222:29621457,42499531:172359 +k1,18222:30728360,42499531:172360 +k1,18222:32583029,42499531:0 +) +(1,18223:6630773,43364611:25952256,513147,134348 +k1,18222:7629308,43364611:189165 +k1,18222:8837558,43364611:189165 +k1,18222:10807336,43364611:189165 +k1,18222:11655792,43364611:189164 +k1,18222:12864042,43364611:189165 +k1,18222:15270290,43364611:189165 +k1,18222:17481241,43364611:189165 +k1,18222:21181825,43364611:189165 +k1,18222:22390075,43364611:189165 +k1,18222:25386802,43364611:189165 +k1,18222:26227394,43364611:189164 +k1,18222:28427204,43364611:189165 +k1,18222:29275661,43364611:189165 +k1,18222:29820686,43364611:189165 +k1,18222:32583029,43364611:0 +) +(1,18223:6630773,44229691:25952256,513147,134348 +k1,18222:10000886,44229691:195549 +k1,18222:11533370,44229691:195550 +k1,18222:13969595,44229691:195549 +k1,18222:15863182,44229691:195549 +k1,18222:16414592,44229691:195550 +k1,18222:18690254,44229691:195549 +k1,18222:19545095,44229691:195549 +k1,18222:20759729,44229691:195549 +k1,18222:22344642,44229691:195550 +k1,18222:23531751,44229691:195549 +k1,18222:26315972,44229691:195549 +k1,18222:27273050,44229691:195550 +k1,18222:30401335,44229691:195549 +k1,18222:32583029,44229691:0 +) +(1,18223:6630773,45094771:25952256,513147,7863 +g1,18222:7849087,45094771 +g1,18222:9863008,45094771 +g1,18222:10721529,45094771 +g1,18222:11276618,45094771 +k1,18223:32583029,45094771:19681774 +g1,18223:32583029,45094771 +) +] +(1,18225:32583029,45706769:0,0,0 +g1,18225:32583029,45706769 +) +) +] +(1,18225:6630773,47279633:25952256,0,0 +h1,18225:6630773,47279633:25952256,0,0 +) +] +(1,18225:4262630,4025873:0,0,0 +[1,18225:-473656,4025873:0,0,0 +(1,18225:-473656,-710413:0,0,0 +(1,18225:-473656,-710413:0,0,0 +g1,18225:-473656,-710413 +) +g1,18225:-473656,-710413 ) ] ) ] !17096 -}297 -Input:3028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}298 +Input:3032:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{298 -[1,18267:4262630,47279633:28320399,43253760,0 -(1,18267:4262630,4025873:0,0,0 -[1,18267:-473656,4025873:0,0,0 -(1,18267:-473656,-710413:0,0,0 -(1,18267:-473656,-644877:0,0,0 -k1,18267:-473656,-644877:-65536 +{299 +[1,18265:4262630,47279633:28320399,43253760,0 +(1,18265:4262630,4025873:0,0,0 +[1,18265:-473656,4025873:0,0,0 +(1,18265:-473656,-710413:0,0,0 +(1,18265:-473656,-644877:0,0,0 +k1,18265:-473656,-644877:-65536 ) -(1,18267:-473656,4736287:0,0,0 -k1,18267:-473656,4736287:5209943 +(1,18265:-473656,4736287:0,0,0 +k1,18265:-473656,4736287:5209943 ) -g1,18267:-473656,-710413 +g1,18265:-473656,-710413 ) ] ) -[1,18267:6630773,47279633:25952256,43253760,0 -[1,18267:6630773,4812305:25952256,786432,0 -(1,18267:6630773,4812305:25952256,513147,126483 -(1,18267:6630773,4812305:25952256,513147,126483 -g1,18267:3078558,4812305 -[1,18267:3078558,4812305:0,0,0 -(1,18267:3078558,2439708:0,1703936,0 -k1,18267:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18267:2537886,2439708:1179648,16384,0 +[1,18265:6630773,47279633:25952256,43253760,0 +[1,18265:6630773,4812305:25952256,786432,0 +(1,18265:6630773,4812305:25952256,513147,126483 +(1,18265:6630773,4812305:25952256,513147,126483 +g1,18265:3078558,4812305 +[1,18265:3078558,4812305:0,0,0 +(1,18265:3078558,2439708:0,1703936,0 +k1,18265:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18265:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18267:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18265:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18267:3078558,4812305:0,0,0 -(1,18267:3078558,2439708:0,1703936,0 -g1,18267:29030814,2439708 -g1,18267:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18267:36151628,1915420:16384,1179648,0 +[1,18265:3078558,4812305:0,0,0 +(1,18265:3078558,2439708:0,1703936,0 +g1,18265:29030814,2439708 +g1,18265:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18265:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18267:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18265:37855564,2439708:1179648,16384,0 ) ) -k1,18267:3078556,2439708:-34777008 +k1,18265:3078556,2439708:-34777008 ) ] -[1,18267:3078558,4812305:0,0,0 -(1,18267:3078558,49800853:0,16384,2228224 -k1,18267:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18267:2537886,49800853:1179648,16384,0 +[1,18265:3078558,4812305:0,0,0 +(1,18265:3078558,49800853:0,16384,2228224 +k1,18265:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18265:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18267:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18265:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,18267:3078558,4812305:0,0,0 -(1,18267:3078558,49800853:0,16384,2228224 -g1,18267:29030814,49800853 -g1,18267:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18267:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18267:37855564,49800853:1179648,16384,0 -) -) -k1,18267:3078556,49800853:-34777008 -) -] -g1,18267:6630773,4812305 -g1,18267:6630773,4812305 -g1,18267:8017514,4812305 -g1,18267:11362471,4812305 -g1,18267:12177738,4812305 -g1,18267:15187806,4812305 -k1,18267:31387652,4812305:16199846 -) -) -] -[1,18267:6630773,45706769:25952256,40108032,0 -(1,18267:6630773,45706769:25952256,40108032,0 -(1,18267:6630773,45706769:0,0,0 -g1,18267:6630773,45706769 -) -[1,18267:6630773,45706769:25952256,40108032,0 -(1,18227:6630773,6254097:25952256,513147,126483 -h1,18226:6630773,6254097:983040,0,0 -k1,18226:8448591,6254097:206943 -k1,18226:11286804,6254097:206942 -k1,18226:12145175,6254097:206943 -k1,18226:13886970,6254097:206942 -k1,18226:15975451,6254097:206943 -k1,18226:19826850,6254097:206942 -k1,18226:22729289,6254097:206943 -k1,18226:23622393,6254097:206942 -k1,18226:24185196,6254097:206943 -k1,18226:26834009,6254097:206942 -k1,18226:28499128,6254097:206943 -k1,18226:29973536,6254097:206942 -k1,18226:31199564,6254097:206943 -k1,18227:32583029,6254097:0 -) -(1,18227:6630773,7119177:25952256,513147,134348 -k1,18226:8172129,7119177:294206 -k1,18226:9987426,7119177:294206 -k1,18226:11473077,7119177:294206 -k1,18226:12582552,7119177:294207 -k1,18226:13943029,7119177:294206 -k1,18226:16016537,7119177:294206 -k1,18226:18196214,7119177:294206 -k1,18226:22562172,7119177:294206 -k1,18226:23847938,7119177:294206 -k1,18226:26184902,7119177:294207 -k1,18226:27130536,7119177:294206 -k1,18226:30257863,7119177:294206 -k1,18226:31748756,7119177:294206 -k1,18227:32583029,7119177:0 -) -(1,18227:6630773,7984257:25952256,505283,134348 -k1,18226:9476018,7984257:165478 -k1,18226:12061086,7984257:165479 -k1,18226:12912726,7984257:165478 -k1,18226:16090895,7984257:165479 -k1,18226:16787870,7984257:165478 -k1,18226:18239164,7984257:165478 -k1,18226:22069416,7984257:165479 -k1,18226:22996422,7984257:165478 -k1,18226:24365142,7984257:165479 -k1,18226:27433210,7984257:165478 -k1,18226:32583029,7984257:0 -) -(1,18227:6630773,8849337:25952256,513147,138281 -k1,18226:9003593,8849337:185228 -k1,18226:12073061,8849337:185229 -k1,18226:16170133,8849337:185228 -k1,18226:18240832,8849337:185228 -k1,18226:19417621,8849337:185229 -k1,18226:20621934,8849337:185228 -k1,18226:23246413,8849337:185229 -k1,18226:24503810,8849337:185228 -k1,18226:26870732,8849337:185228 -$1,18226:26870732,8849337 -$1,18226:27422545,8849337 -k1,18226:27607774,8849337:185229 -k1,18226:29607694,8849337:185228 -k1,18226:32583029,8849337:0 -) -(1,18227:6630773,9714417:25952256,513147,7863 -g1,18226:7849087,9714417 -g1,18226:10313896,9714417 -k1,18227:32583028,9714417:20729692 -g1,18227:32583028,9714417 -) -v1,18229:6630773,10399272:0,393216,0 -(1,18237:6630773,13472769:25952256,3466713,196608 -g1,18237:6630773,13472769 -g1,18237:6630773,13472769 -g1,18237:6434165,13472769 -(1,18237:6434165,13472769:0,3466713,196608 -r1,18267:32779637,13472769:26345472,3663321,196608 -k1,18237:6434165,13472769:-26345472 -) -(1,18237:6434165,13472769:26345472,3466713,196608 -[1,18237:6630773,13472769:25952256,3270105,0 -(1,18231:6630773,10627103:25952256,424439,112852 -(1,18230:6630773,10627103:0,0,0 -g1,18230:6630773,10627103 -g1,18230:6630773,10627103 -g1,18230:6303093,10627103 -(1,18230:6303093,10627103:0,0,0 -) -g1,18230:6630773,10627103 -) -k1,18231:6630773,10627103:0 -g1,18231:10614221,10627103 -g1,18231:11278129,10627103 -k1,18231:11278129,10627103:0 -h1,18231:13601807,10627103:0,0,0 -k1,18231:32583029,10627103:18981222 -g1,18231:32583029,10627103 -) -(1,18232:6630773,11311958:25952256,424439,112852 -h1,18232:6630773,11311958:0,0,0 -g1,18232:6962727,11311958 -g1,18232:7294681,11311958 -g1,18232:7626635,11311958 -g1,18232:7958589,11311958 -g1,18232:8290543,11311958 -g1,18232:8622497,11311958 -g1,18232:8954451,11311958 -g1,18232:11610083,11311958 -g1,18232:12273991,11311958 -g1,18232:14265715,11311958 -g1,18232:14929623,11311958 -g1,18232:16921347,11311958 -g1,18232:17585255,11311958 -g1,18232:18249163,11311958 -g1,18232:20240887,11311958 -h1,18232:20572841,11311958:0,0,0 -k1,18232:32583029,11311958:12010188 -g1,18232:32583029,11311958 -) -(1,18233:6630773,11996813:25952256,424439,112852 -h1,18233:6630773,11996813:0,0,0 -g1,18233:6962727,11996813 -g1,18233:7294681,11996813 -g1,18233:11610082,11996813 -h1,18233:11942036,11996813:0,0,0 -k1,18233:32583028,11996813:20640992 -g1,18233:32583028,11996813 -) -(1,18234:6630773,12681668:25952256,431045,112852 -h1,18234:6630773,12681668:0,0,0 -g1,18234:6962727,12681668 -g1,18234:7294681,12681668 -g1,18234:12937898,12681668 -g1,18234:13601806,12681668 -g1,18234:16257438,12681668 -g1,18234:18581116,12681668 -g1,18234:19245024,12681668 -g1,18234:21236748,12681668 -g1,18234:23892380,12681668 -g1,18234:24556288,12681668 -g1,18234:25220196,12681668 -g1,18234:25884104,12681668 -g1,18234:26879966,12681668 -h1,18234:27211920,12681668:0,0,0 -k1,18234:32583029,12681668:5371109 -g1,18234:32583029,12681668 -) -(1,18235:6630773,13366523:25952256,424439,106246 -h1,18235:6630773,13366523:0,0,0 -g1,18235:6962727,13366523 -g1,18235:7294681,13366523 -g1,18235:14265714,13366523 -g1,18235:14929622,13366523 -g1,18235:16921346,13366523 -h1,18235:18249162,13366523:0,0,0 -k1,18235:32583029,13366523:14333867 -g1,18235:32583029,13366523 -) -] -) -g1,18237:32583029,13472769 -g1,18237:6630773,13472769 -g1,18237:6630773,13472769 -g1,18237:32583029,13472769 -g1,18237:32583029,13472769 -) -h1,18237:6630773,13669377:0,0,0 -(1,18240:6630773,22818579:25952256,9083666,0 -k1,18240:10523651,22818579:3892878 -h1,18239:10523651,22818579:0,0,0 -(1,18239:10523651,22818579:18166500,9083666,0 -(1,18239:10523651,22818579:18167376,9083688,0 -(1,18239:10523651,22818579:18167376,9083688,0 -(1,18239:10523651,22818579:0,9083688,0 -(1,18239:10523651,22818579:0,14208860,0 -(1,18239:10523651,22818579:28417720,14208860,0 -) -k1,18239:10523651,22818579:-28417720 -) -) -g1,18239:28691027,22818579 -) -) -) -g1,18240:28690151,22818579 -k1,18240:32583029,22818579:3892878 -) -(1,18247:6630773,23683659:25952256,513147,126483 -h1,18246:6630773,23683659:983040,0,0 -k1,18246:9083392,23683659:272892 -k1,18246:10740404,23683659:272892 -k1,18246:13674713,23683659:272892 -k1,18246:15370392,23683659:272892 -k1,18246:15999144,23683659:272892 -k1,18246:19679907,23683659:272891 -k1,18246:22198718,23683659:272892 -k1,18246:27482493,23683659:272892 -k1,18246:29538620,23683659:272892 -k1,18246:30830597,23683659:272892 -k1,18247:32583029,23683659:0 -) -(1,18247:6630773,24548739:25952256,513147,134348 -k1,18246:10041813,24548739:220092 -k1,18246:10793401,24548739:220091 -k1,18246:13385241,24548739:220092 -k1,18246:14256760,24548739:220091 -k1,18246:15495937,24548739:220092 -k1,18246:19123901,24548739:220092 -k1,18246:21763581,24548739:220091 -k1,18246:22441770,24548739:220092 -k1,18246:24771465,24548739:220091 -k1,18246:26367158,24548739:220092 -k1,18246:27606334,24548739:220091 -k1,18246:31464329,24548739:220092 -k1,18246:32583029,24548739:0 -) -(1,18247:6630773,25413819:25952256,513147,134348 -k1,18246:9485891,25413819:219915 -k1,18246:10724890,25413819:219914 -(1,18246:10724890,25413819:0,414482,122846 -r1,18267:12138291,25413819:1413401,537328,122846 -k1,18246:10724890,25413819:-1413401 -) -(1,18246:10724890,25413819:1413401,414482,122846 -k1,18246:10724890,25413819:3277 -h1,18246:12135014,25413819:0,411205,112570 -) -k1,18246:12358206,25413819:219915 -k1,18246:13769565,25413819:219914 -k1,18246:15008565,25413819:219915 -k1,18246:18325711,25413819:219915 -k1,18246:19204917,25413819:219914 -k1,18246:20443917,25413819:219915 -k1,18246:22114799,25413819:219915 -k1,18246:23531400,25413819:219914 -k1,18246:28588527,25413819:219915 -k1,18246:29339938,25413819:219914 -k1,18246:31931601,25413819:219915 -k1,18246:32583029,25413819:0 -) -(1,18247:6630773,26278899:25952256,513147,134348 -k1,18246:7831439,26278899:181581 -k1,18246:10023666,26278899:181582 -k1,18246:11489753,26278899:181581 -k1,18246:13175385,26278899:181581 -k1,18246:16135694,26278899:181582 -k1,18246:17078803,26278899:181581 -k1,18246:20093505,26278899:181581 -k1,18246:21471774,26278899:181582 -k1,18246:24131927,26278899:181581 -k1,18246:25482016,26278899:181582 -k1,18246:27376053,26278899:181581 -k1,18246:28089131,26278899:181581 -k1,18246:30572993,26278899:181582 -k1,18246:31563944,26278899:181581 -k1,18246:32583029,26278899:0 -) -(1,18247:6630773,27143979:25952256,513147,102891 -k1,18246:10826606,27143979:213866 -k1,18246:14778646,27143979:213866 -k1,18246:15678673,27143979:213865 -k1,18246:16248399,27143979:213866 -k1,18246:18377227,27143979:213866 -k1,18246:21120783,27143979:213866 -k1,18246:22353733,27143979:213865 -k1,18246:24555306,27143979:213866 -k1,18246:25976345,27143979:213866 -k1,18246:27902667,27143979:213866 -k1,18246:28767960,27143979:213865 -k1,18246:30000911,27143979:213866 -k1,18247:32583029,27143979:0 -) -(1,18247:6630773,28009059:25952256,513147,134348 -k1,18246:9123435,28009059:156959 -k1,18246:10669756,28009059:156958 -k1,18246:13840716,28009059:156959 -k1,18246:18809328,28009059:156959 -k1,18246:22003225,28009059:156959 -k1,18246:24344498,28009059:156958 -k1,18246:25698144,28009059:156959 -k1,18246:29262975,28009059:156959 -k1,18247:32583029,28009059:0 -) -(1,18247:6630773,28874139:25952256,505283,126483 -k1,18246:8468164,28874139:214064 -k1,18246:9213726,28874139:214065 -k1,18246:11799538,28874139:214064 -k1,18246:12665030,28874139:214064 -k1,18246:14575821,28874139:214064 -k1,18246:17826824,28874139:214065 -k1,18246:20051533,28874139:214064 -k1,18246:21457042,28874139:214064 -k1,18246:24147056,28874139:214064 -k1,18246:26384873,28874139:214065 -k1,18246:30006809,28874139:214064 -k1,18246:32583029,28874139:0 -) -(1,18247:6630773,29739219:25952256,505283,134348 -g1,18246:7821562,29739219 -g1,18246:11110814,29739219 -g1,18246:11926081,29739219 -g1,18246:14734298,29739219 -h1,18246:16277016,29739219:0,0,0 -g1,18246:16476245,29739219 -g1,18246:17866919,29739219 -h1,18246:19235966,29739219:0,0,0 -g1,18246:19435195,29739219 -g1,18246:20443794,29739219 -g1,18246:22471477,29739219 -h1,18246:23666854,29739219:0,0,0 -g1,18246:23866083,29739219 -g1,18246:25256757,29739219 -h1,18246:26452134,29739219:0,0,0 -g1,18246:26825033,29739219 -k1,18247:32583029,29739219:1622019 -g1,18247:32583029,29739219 -) -v1,18249:6630773,30424074:0,393216,0 -(1,18257:6630773,33504177:25952256,3473319,196608 -g1,18257:6630773,33504177 -g1,18257:6630773,33504177 -g1,18257:6434165,33504177 -(1,18257:6434165,33504177:0,3473319,196608 -r1,18267:32779637,33504177:26345472,3669927,196608 -k1,18257:6434165,33504177:-26345472 -) -(1,18257:6434165,33504177:26345472,3473319,196608 -[1,18257:6630773,33504177:25952256,3276711,0 -(1,18251:6630773,30651905:25952256,424439,112852 -(1,18250:6630773,30651905:0,0,0 -g1,18250:6630773,30651905 -g1,18250:6630773,30651905 -g1,18250:6303093,30651905 -(1,18250:6303093,30651905:0,0,0 -) -g1,18250:6630773,30651905 -) -k1,18251:6630773,30651905:0 -g1,18251:10614221,30651905 -g1,18251:11278129,30651905 -k1,18251:11278129,30651905:0 -h1,18251:13601807,30651905:0,0,0 -k1,18251:32583029,30651905:18981222 -g1,18251:32583029,30651905 -) -(1,18252:6630773,31336760:25952256,424439,112852 -h1,18252:6630773,31336760:0,0,0 -g1,18252:6962727,31336760 -g1,18252:7294681,31336760 -g1,18252:7626635,31336760 -g1,18252:7958589,31336760 -g1,18252:8290543,31336760 -g1,18252:8622497,31336760 -g1,18252:8954451,31336760 -g1,18252:11610083,31336760 -g1,18252:12273991,31336760 -g1,18252:14265715,31336760 -g1,18252:14929623,31336760 -g1,18252:16921347,31336760 -g1,18252:17585255,31336760 -g1,18252:18249163,31336760 -g1,18252:20240887,31336760 -h1,18252:20572841,31336760:0,0,0 -k1,18252:32583029,31336760:12010188 -g1,18252:32583029,31336760 -) -(1,18253:6630773,32021615:25952256,424439,112852 -h1,18253:6630773,32021615:0,0,0 -g1,18253:6962727,32021615 -g1,18253:7294681,32021615 -g1,18253:11610082,32021615 -h1,18253:11942036,32021615:0,0,0 -k1,18253:32583028,32021615:20640992 -g1,18253:32583028,32021615 -) -(1,18254:6630773,32706470:25952256,431045,112852 -h1,18254:6630773,32706470:0,0,0 -g1,18254:6962727,32706470 -g1,18254:7294681,32706470 -g1,18254:12937898,32706470 -g1,18254:13601806,32706470 -g1,18254:16257438,32706470 -g1,18254:18581116,32706470 -g1,18254:19245024,32706470 -g1,18254:21236748,32706470 -g1,18254:23892380,32706470 -g1,18254:24556288,32706470 -g1,18254:25220196,32706470 -g1,18254:25884104,32706470 -g1,18254:26879966,32706470 -h1,18254:27211920,32706470:0,0,0 -k1,18254:32583029,32706470:5371109 -g1,18254:32583029,32706470 -) -(1,18255:6630773,33391325:25952256,424439,112852 -h1,18255:6630773,33391325:0,0,0 -g1,18255:6962727,33391325 -g1,18255:7294681,33391325 -g1,18255:11942036,33391325 -g1,18255:12605944,33391325 -h1,18255:15261576,33391325:0,0,0 -k1,18255:32583028,33391325:17321452 -g1,18255:32583028,33391325 -) -] -) -g1,18257:32583029,33504177 -g1,18257:6630773,33504177 -g1,18257:6630773,33504177 -g1,18257:32583029,33504177 -g1,18257:32583029,33504177 -) -h1,18257:6630773,33700785:0,0,0 -(1,18260:6630773,42849987:25952256,9083666,0 -k1,18260:10523651,42849987:3892878 -h1,18259:10523651,42849987:0,0,0 -(1,18259:10523651,42849987:18166500,9083666,0 -(1,18259:10523651,42849987:18167376,9083688,0 -(1,18259:10523651,42849987:18167376,9083688,0 -(1,18259:10523651,42849987:0,9083688,0 -(1,18259:10523651,42849987:0,14208860,0 -(1,18259:10523651,42849987:28417720,14208860,0 -) -k1,18259:10523651,42849987:-28417720 -) -) -g1,18259:28691027,42849987 -) -) -) -g1,18260:28690151,42849987 -k1,18260:32583029,42849987:3892878 -) -(1,18267:6630773,43715067:25952256,513147,134348 -h1,18266:6630773,43715067:983040,0,0 -k1,18266:10452778,43715067:344665 -k1,18266:12576745,43715067:344665 -k1,18266:13940494,43715067:344664 -k1,18266:17382390,43715067:344665 -k1,18266:18386347,43715067:344665 -k1,18266:20338610,43715067:344665 -k1,18266:21296036,43715067:344664 -k1,18266:22659786,43715067:344665 -k1,18266:24429859,43715067:344665 -k1,18266:25433816,43715067:344665 -k1,18266:30386316,43715067:344664 -k1,18266:31835263,43715067:344665 -k1,18266:32583029,43715067:0 -) -(1,18267:6630773,44580147:25952256,513147,134348 -k1,18266:9333278,44580147:175437 -k1,18266:10168006,44580147:175436 -k1,18266:11029605,44580147:175437 -k1,18266:12705816,44580147:175437 -k1,18266:14908281,44580147:175436 -k1,18266:17687463,44580147:175437 -k1,18266:18881985,44580147:175437 -k1,18266:21446208,44580147:175436 -k1,18266:23883948,44580147:175437 -k1,18266:24546949,44580147:175413 -k1,18266:27647913,44580147:175437 -k1,18266:29809745,44580147:175436 -k1,18266:31089464,44580147:175437 -k1,18267:32583029,44580147:0 -) -(1,18267:6630773,45445227:25952256,513147,134348 -k1,18266:8051997,45445227:163588 -k1,18266:9234669,45445227:163587 -k1,18266:11663837,45445227:163588 -k1,18266:13206958,45445227:163588 -k1,18266:15530612,45445227:163587 -k1,18266:16890887,45445227:163588 -k1,18266:18331772,45445227:163588 -k1,18266:19026857,45445227:163588 -k1,18266:20209529,45445227:163587 -k1,18266:22200261,45445227:163588 -k1,18266:23382934,45445227:163588 -k1,18266:27618273,45445227:163587 -k1,18266:28773421,45445227:163588 -k1,18266:32583029,45445227:0 -) -] -(1,18267:32583029,45706769:0,0,0 -g1,18267:32583029,45706769 -) -) -] -(1,18267:6630773,47279633:25952256,0,0 -h1,18267:6630773,47279633:25952256,0,0 -) -] -(1,18267:4262630,4025873:0,0,0 -[1,18267:-473656,4025873:0,0,0 -(1,18267:-473656,-710413:0,0,0 -(1,18267:-473656,-710413:0,0,0 -g1,18267:-473656,-710413 -) -g1,18267:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,18265:3078558,4812305:0,0,0 +(1,18265:3078558,49800853:0,16384,2228224 +g1,18265:29030814,49800853 +g1,18265:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18265:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18265:37855564,49800853:1179648,16384,0 +) +) +k1,18265:3078556,49800853:-34777008 +) +] +g1,18265:6630773,4812305 +g1,18265:6630773,4812305 +g1,18265:8017514,4812305 +g1,18265:11362471,4812305 +g1,18265:12177738,4812305 +g1,18265:15187806,4812305 +k1,18265:31387652,4812305:16199846 +) +) +] +[1,18265:6630773,45706769:25952256,40108032,0 +(1,18265:6630773,45706769:25952256,40108032,0 +(1,18265:6630773,45706769:0,0,0 +g1,18265:6630773,45706769 +) +[1,18265:6630773,45706769:25952256,40108032,0 +(1,18225:6630773,6254097:25952256,513147,126483 +h1,18224:6630773,6254097:983040,0,0 +k1,18224:8448591,6254097:206943 +k1,18224:11286804,6254097:206942 +k1,18224:12145175,6254097:206943 +k1,18224:13886970,6254097:206942 +k1,18224:15975451,6254097:206943 +k1,18224:19826850,6254097:206942 +k1,18224:22729289,6254097:206943 +k1,18224:23622393,6254097:206942 +k1,18224:24185196,6254097:206943 +k1,18224:26834009,6254097:206942 +k1,18224:28499128,6254097:206943 +k1,18224:29973536,6254097:206942 +k1,18224:31199564,6254097:206943 +k1,18225:32583029,6254097:0 +) +(1,18225:6630773,7119177:25952256,513147,134348 +k1,18224:8172129,7119177:294206 +k1,18224:9987426,7119177:294206 +k1,18224:11473077,7119177:294206 +k1,18224:12582552,7119177:294207 +k1,18224:13943029,7119177:294206 +k1,18224:16016537,7119177:294206 +k1,18224:18196214,7119177:294206 +k1,18224:22562172,7119177:294206 +k1,18224:23847938,7119177:294206 +k1,18224:26184902,7119177:294207 +k1,18224:27130536,7119177:294206 +k1,18224:30257863,7119177:294206 +k1,18224:31748756,7119177:294206 +k1,18225:32583029,7119177:0 +) +(1,18225:6630773,7984257:25952256,505283,134348 +k1,18224:9476018,7984257:165478 +k1,18224:12061086,7984257:165479 +k1,18224:12912726,7984257:165478 +k1,18224:16090895,7984257:165479 +k1,18224:16787870,7984257:165478 +k1,18224:18239164,7984257:165478 +k1,18224:22069416,7984257:165479 +k1,18224:22996422,7984257:165478 +k1,18224:24365142,7984257:165479 +k1,18224:27433210,7984257:165478 +k1,18224:32583029,7984257:0 +) +(1,18225:6630773,8849337:25952256,513147,138281 +k1,18224:9003593,8849337:185228 +k1,18224:12073061,8849337:185229 +k1,18224:16170133,8849337:185228 +k1,18224:18240832,8849337:185228 +k1,18224:19417621,8849337:185229 +k1,18224:20621934,8849337:185228 +k1,18224:23246413,8849337:185229 +k1,18224:24503810,8849337:185228 +k1,18224:26870732,8849337:185228 +$1,18224:26870732,8849337 +$1,18224:27422545,8849337 +k1,18224:27607774,8849337:185229 +k1,18224:29607694,8849337:185228 +k1,18224:32583029,8849337:0 +) +(1,18225:6630773,9714417:25952256,513147,7863 +g1,18224:7849087,9714417 +g1,18224:10313896,9714417 +k1,18225:32583028,9714417:20729692 +g1,18225:32583028,9714417 +) +v1,18227:6630773,10399272:0,393216,0 +(1,18235:6630773,13472769:25952256,3466713,196608 +g1,18235:6630773,13472769 +g1,18235:6630773,13472769 +g1,18235:6434165,13472769 +(1,18235:6434165,13472769:0,3466713,196608 +r1,18265:32779637,13472769:26345472,3663321,196608 +k1,18235:6434165,13472769:-26345472 +) +(1,18235:6434165,13472769:26345472,3466713,196608 +[1,18235:6630773,13472769:25952256,3270105,0 +(1,18229:6630773,10627103:25952256,424439,112852 +(1,18228:6630773,10627103:0,0,0 +g1,18228:6630773,10627103 +g1,18228:6630773,10627103 +g1,18228:6303093,10627103 +(1,18228:6303093,10627103:0,0,0 +) +g1,18228:6630773,10627103 +) +k1,18229:6630773,10627103:0 +g1,18229:10614221,10627103 +g1,18229:11278129,10627103 +k1,18229:11278129,10627103:0 +h1,18229:13601807,10627103:0,0,0 +k1,18229:32583029,10627103:18981222 +g1,18229:32583029,10627103 +) +(1,18230:6630773,11311958:25952256,424439,112852 +h1,18230:6630773,11311958:0,0,0 +g1,18230:6962727,11311958 +g1,18230:7294681,11311958 +g1,18230:7626635,11311958 +g1,18230:7958589,11311958 +g1,18230:8290543,11311958 +g1,18230:8622497,11311958 +g1,18230:8954451,11311958 +g1,18230:11610083,11311958 +g1,18230:12273991,11311958 +g1,18230:14265715,11311958 +g1,18230:14929623,11311958 +g1,18230:16921347,11311958 +g1,18230:17585255,11311958 +g1,18230:18249163,11311958 +g1,18230:20240887,11311958 +h1,18230:20572841,11311958:0,0,0 +k1,18230:32583029,11311958:12010188 +g1,18230:32583029,11311958 +) +(1,18231:6630773,11996813:25952256,424439,112852 +h1,18231:6630773,11996813:0,0,0 +g1,18231:6962727,11996813 +g1,18231:7294681,11996813 +g1,18231:11610082,11996813 +h1,18231:11942036,11996813:0,0,0 +k1,18231:32583028,11996813:20640992 +g1,18231:32583028,11996813 +) +(1,18232:6630773,12681668:25952256,431045,112852 +h1,18232:6630773,12681668:0,0,0 +g1,18232:6962727,12681668 +g1,18232:7294681,12681668 +g1,18232:12937898,12681668 +g1,18232:13601806,12681668 +g1,18232:16257438,12681668 +g1,18232:18581116,12681668 +g1,18232:19245024,12681668 +g1,18232:21236748,12681668 +g1,18232:23892380,12681668 +g1,18232:24556288,12681668 +g1,18232:25220196,12681668 +g1,18232:25884104,12681668 +g1,18232:26879966,12681668 +h1,18232:27211920,12681668:0,0,0 +k1,18232:32583029,12681668:5371109 +g1,18232:32583029,12681668 +) +(1,18233:6630773,13366523:25952256,424439,106246 +h1,18233:6630773,13366523:0,0,0 +g1,18233:6962727,13366523 +g1,18233:7294681,13366523 +g1,18233:14265714,13366523 +g1,18233:14929622,13366523 +g1,18233:16921346,13366523 +h1,18233:18249162,13366523:0,0,0 +k1,18233:32583029,13366523:14333867 +g1,18233:32583029,13366523 +) +] +) +g1,18235:32583029,13472769 +g1,18235:6630773,13472769 +g1,18235:6630773,13472769 +g1,18235:32583029,13472769 +g1,18235:32583029,13472769 +) +h1,18235:6630773,13669377:0,0,0 +(1,18238:6630773,22818579:25952256,9083666,0 +k1,18238:10523651,22818579:3892878 +h1,18237:10523651,22818579:0,0,0 +(1,18237:10523651,22818579:18166500,9083666,0 +(1,18237:10523651,22818579:18167376,9083688,0 +(1,18237:10523651,22818579:18167376,9083688,0 +(1,18237:10523651,22818579:0,9083688,0 +(1,18237:10523651,22818579:0,14208860,0 +(1,18237:10523651,22818579:28417720,14208860,0 +) +k1,18237:10523651,22818579:-28417720 +) +) +g1,18237:28691027,22818579 +) +) +) +g1,18238:28690151,22818579 +k1,18238:32583029,22818579:3892878 +) +(1,18245:6630773,23683659:25952256,513147,126483 +h1,18244:6630773,23683659:983040,0,0 +k1,18244:9083392,23683659:272892 +k1,18244:10740404,23683659:272892 +k1,18244:13674713,23683659:272892 +k1,18244:15370392,23683659:272892 +k1,18244:15999144,23683659:272892 +k1,18244:19679907,23683659:272891 +k1,18244:22198718,23683659:272892 +k1,18244:27482493,23683659:272892 +k1,18244:29538620,23683659:272892 +k1,18244:30830597,23683659:272892 +k1,18245:32583029,23683659:0 +) +(1,18245:6630773,24548739:25952256,513147,134348 +k1,18244:10041813,24548739:220092 +k1,18244:10793401,24548739:220091 +k1,18244:13385241,24548739:220092 +k1,18244:14256760,24548739:220091 +k1,18244:15495937,24548739:220092 +k1,18244:19123901,24548739:220092 +k1,18244:21763581,24548739:220091 +k1,18244:22441770,24548739:220092 +k1,18244:24771465,24548739:220091 +k1,18244:26367158,24548739:220092 +k1,18244:27606334,24548739:220091 +k1,18244:31464329,24548739:220092 +k1,18244:32583029,24548739:0 +) +(1,18245:6630773,25413819:25952256,513147,134348 +k1,18244:9485891,25413819:219915 +k1,18244:10724890,25413819:219914 +(1,18244:10724890,25413819:0,414482,122846 +r1,18265:12138291,25413819:1413401,537328,122846 +k1,18244:10724890,25413819:-1413401 +) +(1,18244:10724890,25413819:1413401,414482,122846 +k1,18244:10724890,25413819:3277 +h1,18244:12135014,25413819:0,411205,112570 +) +k1,18244:12358206,25413819:219915 +k1,18244:13769565,25413819:219914 +k1,18244:15008565,25413819:219915 +k1,18244:18325711,25413819:219915 +k1,18244:19204917,25413819:219914 +k1,18244:20443917,25413819:219915 +k1,18244:22114799,25413819:219915 +k1,18244:23531400,25413819:219914 +k1,18244:28588527,25413819:219915 +k1,18244:29339938,25413819:219914 +k1,18244:31931601,25413819:219915 +k1,18244:32583029,25413819:0 +) +(1,18245:6630773,26278899:25952256,513147,134348 +k1,18244:7831439,26278899:181581 +k1,18244:10023666,26278899:181582 +k1,18244:11489753,26278899:181581 +k1,18244:13175385,26278899:181581 +k1,18244:16135694,26278899:181582 +k1,18244:17078803,26278899:181581 +k1,18244:20093505,26278899:181581 +k1,18244:21471774,26278899:181582 +k1,18244:24131927,26278899:181581 +k1,18244:25482016,26278899:181582 +k1,18244:27376053,26278899:181581 +k1,18244:28089131,26278899:181581 +k1,18244:30572993,26278899:181582 +k1,18244:31563944,26278899:181581 +k1,18244:32583029,26278899:0 +) +(1,18245:6630773,27143979:25952256,513147,102891 +k1,18244:10826606,27143979:213866 +k1,18244:14778646,27143979:213866 +k1,18244:15678673,27143979:213865 +k1,18244:16248399,27143979:213866 +k1,18244:18377227,27143979:213866 +k1,18244:21120783,27143979:213866 +k1,18244:22353733,27143979:213865 +k1,18244:24555306,27143979:213866 +k1,18244:25976345,27143979:213866 +k1,18244:27902667,27143979:213866 +k1,18244:28767960,27143979:213865 +k1,18244:30000911,27143979:213866 +k1,18245:32583029,27143979:0 +) +(1,18245:6630773,28009059:25952256,513147,134348 +k1,18244:9123435,28009059:156959 +k1,18244:10669756,28009059:156958 +k1,18244:13840716,28009059:156959 +k1,18244:18809328,28009059:156959 +k1,18244:22003225,28009059:156959 +k1,18244:24344498,28009059:156958 +k1,18244:25698144,28009059:156959 +k1,18244:29262975,28009059:156959 +k1,18245:32583029,28009059:0 +) +(1,18245:6630773,28874139:25952256,505283,126483 +k1,18244:8468164,28874139:214064 +k1,18244:9213726,28874139:214065 +k1,18244:11799538,28874139:214064 +k1,18244:12665030,28874139:214064 +k1,18244:14575821,28874139:214064 +k1,18244:17826824,28874139:214065 +k1,18244:20051533,28874139:214064 +k1,18244:21457042,28874139:214064 +k1,18244:24147056,28874139:214064 +k1,18244:26384873,28874139:214065 +k1,18244:30006809,28874139:214064 +k1,18244:32583029,28874139:0 +) +(1,18245:6630773,29739219:25952256,505283,134348 +g1,18244:7821562,29739219 +g1,18244:11110814,29739219 +g1,18244:11926081,29739219 +g1,18244:14734298,29739219 +h1,18244:16277016,29739219:0,0,0 +g1,18244:16476245,29739219 +g1,18244:17866919,29739219 +h1,18244:19235966,29739219:0,0,0 +g1,18244:19435195,29739219 +g1,18244:20443794,29739219 +g1,18244:22471477,29739219 +h1,18244:23666854,29739219:0,0,0 +g1,18244:23866083,29739219 +g1,18244:25256757,29739219 +h1,18244:26452134,29739219:0,0,0 +g1,18244:26825033,29739219 +k1,18245:32583029,29739219:1622019 +g1,18245:32583029,29739219 +) +v1,18247:6630773,30424074:0,393216,0 +(1,18255:6630773,33504177:25952256,3473319,196608 +g1,18255:6630773,33504177 +g1,18255:6630773,33504177 +g1,18255:6434165,33504177 +(1,18255:6434165,33504177:0,3473319,196608 +r1,18265:32779637,33504177:26345472,3669927,196608 +k1,18255:6434165,33504177:-26345472 +) +(1,18255:6434165,33504177:26345472,3473319,196608 +[1,18255:6630773,33504177:25952256,3276711,0 +(1,18249:6630773,30651905:25952256,424439,112852 +(1,18248:6630773,30651905:0,0,0 +g1,18248:6630773,30651905 +g1,18248:6630773,30651905 +g1,18248:6303093,30651905 +(1,18248:6303093,30651905:0,0,0 +) +g1,18248:6630773,30651905 +) +k1,18249:6630773,30651905:0 +g1,18249:10614221,30651905 +g1,18249:11278129,30651905 +k1,18249:11278129,30651905:0 +h1,18249:13601807,30651905:0,0,0 +k1,18249:32583029,30651905:18981222 +g1,18249:32583029,30651905 +) +(1,18250:6630773,31336760:25952256,424439,112852 +h1,18250:6630773,31336760:0,0,0 +g1,18250:6962727,31336760 +g1,18250:7294681,31336760 +g1,18250:7626635,31336760 +g1,18250:7958589,31336760 +g1,18250:8290543,31336760 +g1,18250:8622497,31336760 +g1,18250:8954451,31336760 +g1,18250:11610083,31336760 +g1,18250:12273991,31336760 +g1,18250:14265715,31336760 +g1,18250:14929623,31336760 +g1,18250:16921347,31336760 +g1,18250:17585255,31336760 +g1,18250:18249163,31336760 +g1,18250:20240887,31336760 +h1,18250:20572841,31336760:0,0,0 +k1,18250:32583029,31336760:12010188 +g1,18250:32583029,31336760 +) +(1,18251:6630773,32021615:25952256,424439,112852 +h1,18251:6630773,32021615:0,0,0 +g1,18251:6962727,32021615 +g1,18251:7294681,32021615 +g1,18251:11610082,32021615 +h1,18251:11942036,32021615:0,0,0 +k1,18251:32583028,32021615:20640992 +g1,18251:32583028,32021615 +) +(1,18252:6630773,32706470:25952256,431045,112852 +h1,18252:6630773,32706470:0,0,0 +g1,18252:6962727,32706470 +g1,18252:7294681,32706470 +g1,18252:12937898,32706470 +g1,18252:13601806,32706470 +g1,18252:16257438,32706470 +g1,18252:18581116,32706470 +g1,18252:19245024,32706470 +g1,18252:21236748,32706470 +g1,18252:23892380,32706470 +g1,18252:24556288,32706470 +g1,18252:25220196,32706470 +g1,18252:25884104,32706470 +g1,18252:26879966,32706470 +h1,18252:27211920,32706470:0,0,0 +k1,18252:32583029,32706470:5371109 +g1,18252:32583029,32706470 +) +(1,18253:6630773,33391325:25952256,424439,112852 +h1,18253:6630773,33391325:0,0,0 +g1,18253:6962727,33391325 +g1,18253:7294681,33391325 +g1,18253:11942036,33391325 +g1,18253:12605944,33391325 +h1,18253:15261576,33391325:0,0,0 +k1,18253:32583028,33391325:17321452 +g1,18253:32583028,33391325 +) +] +) +g1,18255:32583029,33504177 +g1,18255:6630773,33504177 +g1,18255:6630773,33504177 +g1,18255:32583029,33504177 +g1,18255:32583029,33504177 +) +h1,18255:6630773,33700785:0,0,0 +(1,18258:6630773,42849987:25952256,9083666,0 +k1,18258:10523651,42849987:3892878 +h1,18257:10523651,42849987:0,0,0 +(1,18257:10523651,42849987:18166500,9083666,0 +(1,18257:10523651,42849987:18167376,9083688,0 +(1,18257:10523651,42849987:18167376,9083688,0 +(1,18257:10523651,42849987:0,9083688,0 +(1,18257:10523651,42849987:0,14208860,0 +(1,18257:10523651,42849987:28417720,14208860,0 +) +k1,18257:10523651,42849987:-28417720 +) +) +g1,18257:28691027,42849987 +) +) +) +g1,18258:28690151,42849987 +k1,18258:32583029,42849987:3892878 +) +(1,18265:6630773,43715067:25952256,513147,134348 +h1,18264:6630773,43715067:983040,0,0 +k1,18264:10452778,43715067:344665 +k1,18264:12576745,43715067:344665 +k1,18264:13940494,43715067:344664 +k1,18264:17382390,43715067:344665 +k1,18264:18386347,43715067:344665 +k1,18264:20338610,43715067:344665 +k1,18264:21296036,43715067:344664 +k1,18264:22659786,43715067:344665 +k1,18264:24429859,43715067:344665 +k1,18264:25433816,43715067:344665 +k1,18264:30386316,43715067:344664 +k1,18264:31835263,43715067:344665 +k1,18264:32583029,43715067:0 +) +(1,18265:6630773,44580147:25952256,513147,134348 +k1,18264:9333278,44580147:175437 +k1,18264:10168006,44580147:175436 +k1,18264:11029605,44580147:175437 +k1,18264:12705816,44580147:175437 +k1,18264:14908281,44580147:175436 +k1,18264:17687463,44580147:175437 +k1,18264:18881985,44580147:175437 +k1,18264:21446208,44580147:175436 +k1,18264:23883948,44580147:175437 +k1,18264:24546949,44580147:175413 +k1,18264:27647913,44580147:175437 +k1,18264:29809745,44580147:175436 +k1,18264:31089464,44580147:175437 +k1,18265:32583029,44580147:0 +) +(1,18265:6630773,45445227:25952256,513147,134348 +k1,18264:8051997,45445227:163588 +k1,18264:9234669,45445227:163587 +k1,18264:11663837,45445227:163588 +k1,18264:13206958,45445227:163588 +k1,18264:15530612,45445227:163587 +k1,18264:16890887,45445227:163588 +k1,18264:18331772,45445227:163588 +k1,18264:19026857,45445227:163588 +k1,18264:20209529,45445227:163587 +k1,18264:22200261,45445227:163588 +k1,18264:23382934,45445227:163588 +k1,18264:27618273,45445227:163587 +k1,18264:28773421,45445227:163588 +k1,18264:32583029,45445227:0 +) +] +(1,18265:32583029,45706769:0,0,0 +g1,18265:32583029,45706769 +) +) +] +(1,18265:6630773,47279633:25952256,0,0 +h1,18265:6630773,47279633:25952256,0,0 +) +] +(1,18265:4262630,4025873:0,0,0 +[1,18265:-473656,4025873:0,0,0 +(1,18265:-473656,-710413:0,0,0 +(1,18265:-473656,-710413:0,0,0 +g1,18265:-473656,-710413 +) +g1,18265:-473656,-710413 ) ] ) ] !17723 -}298 -Input:3029:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3030:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3031:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3032:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}299 Input:3033:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3034:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3035:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -317374,2102 +317578,2102 @@ Input:3036:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3037:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3038:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3039:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{299 -[1,18307:4262630,47279633:28320399,43253760,0 -(1,18307:4262630,4025873:0,0,0 -[1,18307:-473656,4025873:0,0,0 -(1,18307:-473656,-710413:0,0,0 -(1,18307:-473656,-644877:0,0,0 -k1,18307:-473656,-644877:-65536 +{300 +[1,18305:4262630,47279633:28320399,43253760,0 +(1,18305:4262630,4025873:0,0,0 +[1,18305:-473656,4025873:0,0,0 +(1,18305:-473656,-710413:0,0,0 +(1,18305:-473656,-644877:0,0,0 +k1,18305:-473656,-644877:-65536 ) -(1,18307:-473656,4736287:0,0,0 -k1,18307:-473656,4736287:5209943 +(1,18305:-473656,4736287:0,0,0 +k1,18305:-473656,4736287:5209943 ) -g1,18307:-473656,-710413 +g1,18305:-473656,-710413 ) ] ) -[1,18307:6630773,47279633:25952256,43253760,0 -[1,18307:6630773,4812305:25952256,786432,0 -(1,18307:6630773,4812305:25952256,513147,126483 -(1,18307:6630773,4812305:25952256,513147,126483 -g1,18307:3078558,4812305 -[1,18307:3078558,4812305:0,0,0 -(1,18307:3078558,2439708:0,1703936,0 -k1,18307:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18307:2537886,2439708:1179648,16384,0 +[1,18305:6630773,47279633:25952256,43253760,0 +[1,18305:6630773,4812305:25952256,786432,0 +(1,18305:6630773,4812305:25952256,513147,126483 +(1,18305:6630773,4812305:25952256,513147,126483 +g1,18305:3078558,4812305 +[1,18305:3078558,4812305:0,0,0 +(1,18305:3078558,2439708:0,1703936,0 +k1,18305:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18305:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18307:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18305:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18307:3078558,4812305:0,0,0 -(1,18307:3078558,2439708:0,1703936,0 -g1,18307:29030814,2439708 -g1,18307:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18307:36151628,1915420:16384,1179648,0 +[1,18305:3078558,4812305:0,0,0 +(1,18305:3078558,2439708:0,1703936,0 +g1,18305:29030814,2439708 +g1,18305:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18305:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18307:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18305:37855564,2439708:1179648,16384,0 ) ) -k1,18307:3078556,2439708:-34777008 +k1,18305:3078556,2439708:-34777008 ) ] -[1,18307:3078558,4812305:0,0,0 -(1,18307:3078558,49800853:0,16384,2228224 -k1,18307:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18307:2537886,49800853:1179648,16384,0 +[1,18305:3078558,4812305:0,0,0 +(1,18305:3078558,49800853:0,16384,2228224 +k1,18305:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18305:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18307:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18305:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] -) +) ) ) ] -[1,18307:3078558,4812305:0,0,0 -(1,18307:3078558,49800853:0,16384,2228224 -g1,18307:29030814,49800853 -g1,18307:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18307:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18307:37855564,49800853:1179648,16384,0 -) -) -k1,18307:3078556,49800853:-34777008 -) -] -g1,18307:6630773,4812305 -k1,18307:21386205,4812305:13560055 -g1,18307:21999622,4812305 -g1,18307:25611966,4812305 -g1,18307:28956923,4812305 -g1,18307:29772190,4812305 -) -) -] -[1,18307:6630773,45706769:25952256,40108032,0 -(1,18307:6630773,45706769:25952256,40108032,0 -(1,18307:6630773,45706769:0,0,0 -g1,18307:6630773,45706769 -) -[1,18307:6630773,45706769:25952256,40108032,0 -(1,18267:6630773,6254097:25952256,513147,126483 -k1,18266:7413790,6254097:166979 -k1,18266:8599853,6254097:166978 -k1,18266:10420305,6254097:166979 -k1,18266:11998930,6254097:166979 -k1,18266:13184993,6254097:166978 -k1,18266:15166664,6254097:166979 -k1,18266:15992935,6254097:166979 -k1,18266:17178998,6254097:166978 -k1,18266:18744515,6254097:166979 -k1,18266:19903054,6254097:166979 -k1,18266:21089118,6254097:166979 -k1,18266:22909569,6254097:166978 -k1,18266:24267993,6254097:166979 -k1,18266:25201088,6254097:166979 -k1,18266:26594245,6254097:166978 -k1,18266:27292721,6254097:166979 -k1,18266:28478785,6254097:166979 -k1,18266:30472907,6254097:166978 -k1,18266:31563944,6254097:166979 -k1,18266:32583029,6254097:0 -) -(1,18267:6630773,7119177:25952256,513147,126483 -k1,18266:8649664,7119177:143251 -k1,18266:10399201,7119177:143250 -k1,18266:11872833,7119177:143251 -k1,18266:13712811,7119177:143251 -k1,18266:16725227,7119177:143250 -k1,18266:17860038,7119177:143251 -k1,18266:20878353,7119177:143251 -k1,18266:21783131,7119177:143250 -k1,18266:24688725,7119177:143251 -k1,18266:27148674,7119177:143251 -k1,18266:28396206,7119177:143250 -k1,18266:29287223,7119177:143251 -k1,18266:32583029,7119177:0 -) -(1,18267:6630773,7984257:25952256,513147,7863 -k1,18267:32583028,7984257:23137484 -g1,18267:32583028,7984257 -) -v1,18269:6630773,8669112:0,393216,0 -(1,18276:6630773,11031330:25952256,2755434,196608 -g1,18276:6630773,11031330 -g1,18276:6630773,11031330 -g1,18276:6434165,11031330 -(1,18276:6434165,11031330:0,2755434,196608 -r1,18307:32779637,11031330:26345472,2952042,196608 -k1,18276:6434165,11031330:-26345472 -) -(1,18276:6434165,11031330:26345472,2755434,196608 -[1,18276:6630773,11031330:25952256,2558826,0 -(1,18271:6630773,8896943:25952256,424439,112852 -(1,18270:6630773,8896943:0,0,0 -g1,18270:6630773,8896943 -g1,18270:6630773,8896943 -g1,18270:6303093,8896943 -(1,18270:6303093,8896943:0,0,0 -) -g1,18270:6630773,8896943 -) -k1,18271:6630773,8896943:0 -g1,18271:10614221,8896943 -g1,18271:11278129,8896943 -k1,18271:11278129,8896943:0 -h1,18271:13601807,8896943:0,0,0 -k1,18271:32583029,8896943:18981222 -g1,18271:32583029,8896943 -) -(1,18272:6630773,9581798:25952256,424439,112852 -h1,18272:6630773,9581798:0,0,0 -g1,18272:6962727,9581798 -g1,18272:7294681,9581798 -g1,18272:7626635,9581798 -g1,18272:7958589,9581798 -g1,18272:8290543,9581798 -g1,18272:8622497,9581798 -g1,18272:8954451,9581798 -g1,18272:11610083,9581798 -g1,18272:12273991,9581798 -g1,18272:14265715,9581798 -g1,18272:14929623,9581798 -g1,18272:16921347,9581798 -g1,18272:17585255,9581798 -g1,18272:18249163,9581798 -g1,18272:20240887,9581798 -h1,18272:20572841,9581798:0,0,0 -k1,18272:32583029,9581798:12010188 -g1,18272:32583029,9581798 -) -(1,18273:6630773,10266653:25952256,424439,112852 -h1,18273:6630773,10266653:0,0,0 -g1,18273:6962727,10266653 -g1,18273:7294681,10266653 -g1,18273:11610082,10266653 -h1,18273:11942036,10266653:0,0,0 -k1,18273:32583028,10266653:20640992 -g1,18273:32583028,10266653 -) -(1,18274:6630773,10951508:25952256,424439,79822 -h1,18274:6630773,10951508:0,0,0 -g1,18274:6962727,10951508 -g1,18274:7294681,10951508 -k1,18274:7294681,10951508:0 -h1,18274:12273990,10951508:0,0,0 -k1,18274:32583030,10951508:20309040 -g1,18274:32583030,10951508 -) -] -) -g1,18276:32583029,11031330 -g1,18276:6630773,11031330 -g1,18276:6630773,11031330 -g1,18276:32583029,11031330 -g1,18276:32583029,11031330 -) -h1,18276:6630773,11227938:0,0,0 -(1,18279:6630773,20377140:25952256,9083666,0 -k1,18279:10523651,20377140:3892878 -h1,18278:10523651,20377140:0,0,0 -(1,18278:10523651,20377140:18166500,9083666,0 -(1,18278:10523651,20377140:18167376,9083688,0 -(1,18278:10523651,20377140:18167376,9083688,0 -(1,18278:10523651,20377140:0,9083688,0 -(1,18278:10523651,20377140:0,14208860,0 -(1,18278:10523651,20377140:28417720,14208860,0 -) -k1,18278:10523651,20377140:-28417720 -) -) -g1,18278:28691027,20377140 -) -) -) -g1,18279:28690151,20377140 -k1,18279:32583029,20377140:3892878 -) -(1,18286:6630773,21242220:25952256,513147,134348 -h1,18285:6630773,21242220:983040,0,0 -k1,18285:9267111,21242220:187913 -k1,18285:10474110,21242220:187914 -k1,18285:12095951,21242220:187913 -k1,18285:13614901,21242220:187914 -k1,18285:15071591,21242220:187913 -k1,18285:16450950,21242220:187914 -k1,18285:17657948,21242220:187913 -k1,18285:19279790,21242220:187914 -k1,18285:20798739,21242220:187913 -k1,18285:22994676,21242220:187914 -k1,18285:24286871,21242220:187913 -k1,18285:25222551,21242220:187914 -k1,18285:28245551,21242220:187913 -k1,18285:29630152,21242220:187914 -k1,18285:31251993,21242220:187913 -k1,18285:32583029,21242220:0 -) -(1,18286:6630773,22107300:25952256,513147,102891 -k1,18285:8164690,22107300:265140 -k1,18285:11047993,22107300:265140 -k1,18285:12332218,22107300:265140 -k1,18285:13866134,22107300:265139 -k1,18285:14790566,22107300:265140 -k1,18285:15821822,22107300:265140 -k1,18285:17313141,22107300:265140 -k1,18285:20621118,22107300:265140 -k1,18285:21572420,22107300:265140 -k1,18285:23539530,22107300:265140 -k1,18285:25403747,22107300:265139 -k1,18285:26660447,22107300:265140 -k1,18285:29307165,22107300:265140 -k1,18285:31931601,22107300:265140 -k1,18285:32583029,22107300:0 -) -(1,18286:6630773,22972380:25952256,505283,134348 -k1,18285:7892385,22972380:242527 -k1,18285:9568840,22972380:242527 -k1,18285:11253814,22972380:242527 -k1,18285:12917161,22972380:242526 -k1,18285:14178773,22972380:242527 -k1,18285:15698597,22972380:242527 -k1,18285:17658167,22972380:242527 -k1,18285:20471671,22972380:242527 -k1,18285:22412236,22972380:242527 -k1,18285:24390156,22972380:242527 -k1,18285:25651768,22972380:242527 -k1,18285:27547767,22972380:242526 -k1,18285:29776690,22972380:242527 -k1,18285:30705379,22972380:242527 -k1,18285:31563944,22972380:242527 -k1,18285:32583029,22972380:0 -) -(1,18286:6630773,23837460:25952256,513147,126483 -k1,18285:9668568,23837460:283317 -k1,18285:12786972,23837460:283317 -k1,18285:14142458,23837460:283317 -k1,18285:15819726,23837460:283317 -k1,18285:16458903,23837460:283317 -k1,18285:19504563,23837460:283317 -k1,18285:21221809,23837460:283318 -k1,18285:23193333,23837460:283317 -k1,18285:24745427,23837460:283317 -k1,18285:26220189,23837460:283317 -k1,18285:27834542,23837460:283317 -k1,18285:30125882,23837460:283317 -k1,18285:31356850,23837460:283317 -k1,18285:32583029,23837460:0 -) -(1,18286:6630773,24702540:25952256,513147,134348 -g1,18285:9872839,24702540 -g1,18285:11475849,24702540 -g1,18285:12767563,24702540 -g1,18285:13626084,24702540 -g1,18285:16142011,24702540 -g1,18285:16872737,24702540 -g1,18285:20201310,24702540 -g1,18285:21016577,24702540 -g1,18285:23494493,24702540 -h1,18285:24863540,24702540:0,0,0 -g1,18285:25062769,24702540 -g1,18285:26071368,24702540 -g1,18285:27768750,24702540 -h1,18285:28964127,24702540:0,0,0 -k1,18286:32583029,24702540:3279426 -g1,18286:32583029,24702540 -) -v1,18288:6630773,25387395:0,393216,0 -(1,18295:6630773,27776037:25952256,2781858,196608 -g1,18295:6630773,27776037 -g1,18295:6630773,27776037 -g1,18295:6434165,27776037 -(1,18295:6434165,27776037:0,2781858,196608 -r1,18307:32779637,27776037:26345472,2978466,196608 -k1,18295:6434165,27776037:-26345472 -) -(1,18295:6434165,27776037:26345472,2781858,196608 -[1,18295:6630773,27776037:25952256,2585250,0 -(1,18290:6630773,25615226:25952256,424439,112852 -(1,18289:6630773,25615226:0,0,0 -g1,18289:6630773,25615226 -g1,18289:6630773,25615226 -g1,18289:6303093,25615226 -(1,18289:6303093,25615226:0,0,0 -) -g1,18289:6630773,25615226 -) -k1,18290:6630773,25615226:0 -g1,18290:10614221,25615226 -g1,18290:11278129,25615226 -k1,18290:11278129,25615226:0 -h1,18290:13601807,25615226:0,0,0 -k1,18290:32583029,25615226:18981222 -g1,18290:32583029,25615226 -) -(1,18291:6630773,26300081:25952256,424439,112852 -h1,18291:6630773,26300081:0,0,0 -g1,18291:6962727,26300081 -g1,18291:7294681,26300081 -g1,18291:7626635,26300081 -g1,18291:7958589,26300081 -g1,18291:8290543,26300081 -g1,18291:8622497,26300081 -g1,18291:8954451,26300081 -g1,18291:11610083,26300081 -g1,18291:12273991,26300081 -g1,18291:14265715,26300081 -g1,18291:14929623,26300081 -g1,18291:16921347,26300081 -g1,18291:17585255,26300081 -g1,18291:18249163,26300081 -g1,18291:20240887,26300081 -h1,18291:20572841,26300081:0,0,0 -k1,18291:32583029,26300081:12010188 -g1,18291:32583029,26300081 -) -(1,18292:6630773,26984936:25952256,424439,112852 -h1,18292:6630773,26984936:0,0,0 -g1,18292:6962727,26984936 -g1,18292:7294681,26984936 -g1,18292:11610082,26984936 -h1,18292:11942036,26984936:0,0,0 -k1,18292:32583028,26984936:20640992 -g1,18292:32583028,26984936 -) -(1,18293:6630773,27669791:25952256,431045,106246 -h1,18293:6630773,27669791:0,0,0 -g1,18293:6962727,27669791 -g1,18293:7294681,27669791 -g1,18293:15261575,27669791 -g1,18293:15925483,27669791 -g1,18293:17253299,27669791 -g1,18293:21236746,27669791 -g1,18293:21900654,27669791 -h1,18293:24556286,27669791:0,0,0 -k1,18293:32583029,27669791:8026743 -g1,18293:32583029,27669791 -) -] -) -g1,18295:32583029,27776037 -g1,18295:6630773,27776037 -g1,18295:6630773,27776037 -g1,18295:32583029,27776037 -g1,18295:32583029,27776037 -) -h1,18295:6630773,27972645:0,0,0 -(1,18298:6630773,37121847:25952256,9083666,0 -k1,18298:10523651,37121847:3892878 -h1,18297:10523651,37121847:0,0,0 -(1,18297:10523651,37121847:18166500,9083666,0 -(1,18297:10523651,37121847:18167376,9083688,0 -(1,18297:10523651,37121847:18167376,9083688,0 -(1,18297:10523651,37121847:0,9083688,0 -(1,18297:10523651,37121847:0,14208860,0 -(1,18297:10523651,37121847:28417720,14208860,0 -) -k1,18297:10523651,37121847:-28417720 -) -) -g1,18297:28691027,37121847 -) -) -) -g1,18298:28690151,37121847 -k1,18298:32583029,37121847:3892878 -) -(1,18305:6630773,37986927:25952256,505283,126483 -h1,18304:6630773,37986927:983040,0,0 -k1,18304:9238732,37986927:204098 -k1,18304:10094257,37986927:204097 -k1,18304:11232898,37986927:204098 -k1,18304:12689389,37986927:204098 -k1,18304:14911340,37986927:204097 -k1,18304:16299674,37986927:204098 -k1,18304:19448305,37986927:204098 -k1,18304:20843847,37986927:204097 -k1,18304:22232181,37986927:204098 -k1,18304:24280461,37986927:204097 -k1,18304:25617021,37986927:204098 -k1,18304:26568885,37986927:204098 -k1,18304:29902326,37986927:204097 -k1,18304:30722462,37986927:204098 -k1,18304:32583029,37986927:0 -) -(1,18305:6630773,38852007:25952256,513147,134348 -k1,18304:7436677,38852007:189866 -k1,18304:9905230,38852007:189866 -h1,18304:11274277,38852007:0,0,0 -k1,18304:11464144,38852007:189867 -k1,18304:12463380,38852007:189866 -k1,18304:14151399,38852007:189866 -h1,18304:15346776,38852007:0,0,0 -k1,18304:15710312,38852007:189866 -k1,18304:18690046,38852007:189866 -(1,18304:18690046,38852007:0,452978,115847 -r1,18307:20806871,38852007:2116825,568825,115847 -k1,18304:18690046,38852007:-2116825 -) -(1,18304:18690046,38852007:2116825,452978,115847 -k1,18304:18690046,38852007:3277 -h1,18304:20803594,38852007:0,411205,112570 -) -k1,18304:20996738,38852007:189867 -k1,18304:21718101,38852007:189866 -k1,18304:22306426,38852007:189866 -k1,18304:26315730,38852007:189866 -k1,18304:29104100,38852007:189867 -k1,18304:30807192,38852007:189866 -k1,18304:31648486,38852007:189866 -k1,18304:32583029,38852007:0 -) -(1,18305:6630773,39717087:25952256,513147,126483 -k1,18304:7821652,39717087:171794 -k1,18304:9260911,39717087:171793 -k1,18304:10624150,39717087:171794 -k1,18304:13208980,39717087:171794 -k1,18304:14040066,39717087:171794 -k1,18304:14567719,39717087:171793 -k1,18304:16016810,39717087:171794 -k1,18304:17380049,39717087:171794 -k1,18304:18203270,39717087:171793 -k1,18304:20673412,39717087:171794 -k1,18304:21864291,39717087:171794 -k1,18304:24301664,39717087:171793 -(1,18304:24301664,39717087:0,414482,115847 -r1,18307:25715065,39717087:1413401,530329,115847 -k1,18304:24301664,39717087:-1413401 -) -(1,18304:24301664,39717087:1413401,414482,115847 -k1,18304:24301664,39717087:3277 -h1,18304:25711788,39717087:0,411205,112570 -) -k1,18304:25886859,39717087:171794 -k1,18304:26717945,39717087:171794 -k1,18304:28965920,39717087:171794 -k1,18304:29753751,39717087:171793 -k1,18304:31128786,39717087:171794 -k1,18304:32583029,39717087:0 -) -(1,18305:6630773,40582167:25952256,513147,126483 -k1,18304:8602064,40582167:227378 -k1,18304:10342668,40582167:227378 -k1,18304:11517697,40582167:227378 -k1,18304:12997468,40582167:227378 -k1,18304:16743474,40582167:227378 -k1,18304:19236432,40582167:227378 -(1,18304:19236432,40582167:0,414482,115847 -r1,18307:20649833,40582167:1413401,530329,115847 -k1,18304:19236432,40582167:-1413401 -) -(1,18304:19236432,40582167:1413401,414482,115847 -k1,18304:19236432,40582167:3277 -h1,18304:20646556,40582167:0,411205,112570 -) -k1,18304:20877212,40582167:227379 -k1,18304:21763882,40582167:227378 -k1,18304:23893770,40582167:227378 -k1,18304:24652645,40582167:227378 -k1,18304:25899108,40582167:227378 -k1,18304:27864501,40582167:227378 -k1,18304:28751171,40582167:227378 -k1,18304:29997634,40582167:227378 -k1,18304:32583029,40582167:0 -) -(1,18305:6630773,41447247:25952256,513147,126483 -k1,18304:9434279,41447247:136191 -k1,18304:10198305,41447247:136191 -k1,18304:11353582,41447247:136192 -k1,18304:12589467,41447247:136191 -k1,18304:13377086,41447247:136191 -(1,18304:13377086,41447247:0,452978,115847 -r1,18307:15493911,41447247:2116825,568825,115847 -k1,18304:13377086,41447247:-2116825 -) -(1,18304:13377086,41447247:2116825,452978,115847 -k1,18304:13377086,41447247:3277 -h1,18304:15490634,41447247:0,411205,112570 -) -k1,18304:15630102,41447247:136191 -k1,18304:16785379,41447247:136192 -k1,18304:18989886,41447247:136191 -k1,18304:19785369,41447247:136191 -k1,18304:23096124,41447247:136191 -k1,18304:24223876,41447247:136192 -k1,18304:25873293,41447247:136191 -k1,18304:26695646,41447247:136191 -k1,18304:27297798,41447247:136191 -k1,18304:28814178,41447247:136192 -k1,18304:30454420,41447247:136191 -k1,18304:32583029,41447247:0 -) -(1,18305:6630773,42312327:25952256,505283,134348 -k1,18304:10452105,42312327:210298 -k1,18304:12056354,42312327:210298 -k1,18304:15241331,42312327:210298 -k1,18304:17821411,42312327:210298 -k1,18304:18714594,42312327:210298 -k1,18304:19339724,42312327:210287 -k1,18304:23493979,42312327:210298 -k1,18304:24390439,42312327:210298 -k1,18304:28177037,42312327:210298 -k1,18304:30254456,42312327:210298 -(1,18304:30254456,42312327:0,414482,115847 -r1,18307:30612722,42312327:358266,530329,115847 -k1,18304:30254456,42312327:-358266 -) -(1,18304:30254456,42312327:358266,414482,115847 -k1,18304:30254456,42312327:3277 -h1,18304:30609445,42312327:0,411205,112570 -) -k1,18304:30823020,42312327:210298 -k1,18304:32224763,42312327:210298 -(1,18304:32224763,42312327:0,414482,115847 -r1,18307:32583029,42312327:358266,530329,115847 -k1,18304:32224763,42312327:-358266 -) -(1,18304:32224763,42312327:358266,414482,115847 -k1,18304:32224763,42312327:3277 -h1,18304:32579752,42312327:0,411205,112570 -) -k1,18304:32583029,42312327:0 -) -(1,18305:6630773,43177407:25952256,513147,126483 -k1,18304:7850975,43177407:228642 -k1,18304:9098702,43177407:228642 -k1,18304:11395660,43177407:228642 -k1,18304:12283594,43177407:228642 -k1,18304:13531321,43177407:228642 -k1,18304:14932402,43177407:228642 -k1,18304:18225508,43177407:228642 -k1,18304:19105578,43177407:228642 -k1,18304:21219691,43177407:228642 -k1,18304:22620772,43177407:228642 -k1,18304:25691055,43177407:228642 -k1,18304:26535735,43177407:228642 -(1,18304:26535735,43177407:0,452978,115847 -r1,18307:27949136,43177407:1413401,568825,115847 -k1,18304:26535735,43177407:-1413401 -) -(1,18304:26535735,43177407:1413401,452978,115847 -k1,18304:26535735,43177407:3277 -h1,18304:27945859,43177407:0,411205,112570 -) -k1,18304:28177778,43177407:228642 -k1,18304:29910471,43177407:228642 -k1,18305:32583029,43177407:0 -) -(1,18305:6630773,44042487:25952256,505283,126483 -(1,18304:6630773,44042487:0,452978,115847 -r1,18307:8044174,44042487:1413401,568825,115847 -k1,18304:6630773,44042487:-1413401 -) -(1,18304:6630773,44042487:1413401,452978,115847 -k1,18304:6630773,44042487:3277 -h1,18304:8040897,44042487:0,411205,112570 -) -k1,18304:8201111,44042487:156937 -k1,18304:9549493,44042487:156937 -(1,18304:9549493,44042487:0,414482,122846 -r1,18307:10611182,44042487:1061689,537328,122846 -k1,18304:9549493,44042487:-1061689 -) -(1,18304:9549493,44042487:1061689,414482,122846 -k1,18304:9549493,44042487:3277 -h1,18304:10607905,44042487:0,411205,112570 -) -k1,18304:10941789,44042487:156937 -k1,18304:13321707,44042487:156937 -k1,18304:17089678,44042487:156937 -(1,18304:17089678,44042487:0,452978,115847 -r1,18307:18854791,44042487:1765113,568825,115847 -k1,18304:17089678,44042487:-1765113 -) -(1,18304:17089678,44042487:1765113,452978,115847 -k1,18304:17089678,44042487:3277 -h1,18304:18851514,44042487:0,411205,112570 -) -k1,18304:19011728,44042487:156937 -k1,18304:20360110,44042487:156937 -(1,18304:20360110,44042487:0,452978,115847 -r1,18307:23180359,44042487:2820249,568825,115847 -k1,18304:20360110,44042487:-2820249 -) -(1,18304:20360110,44042487:2820249,452978,115847 -k1,18304:20360110,44042487:3277 -h1,18304:23177082,44042487:0,411205,112570 -) -k1,18304:23337296,44042487:156937 -k1,18304:24691576,44042487:156937 -k1,18304:26545240,44042487:156937 -k1,18304:27979474,44042487:156937 -k1,18304:31179248,44042487:156937 -k1,18304:32583029,44042487:0 -) -(1,18305:6630773,44907567:25952256,530548,134348 -g1,18304:9385906,44907567 -g1,18304:12559814,44907567 -h1,18304:12559814,44907567:0,0,0 -g1,18304:13588928,44907567 -g1,18304:15897106,44907567 -g1,18304:17043986,44907567 -g1,18304:18526410,44907567 -g1,18304:20067816,44907567 -g1,18304:21292028,44907567 -g1,18304:23769944,44907567 -h1,18304:24740532,44907567:0,0,0 -g1,18304:24939761,44907567 -g1,18304:25948360,44907567 -g1,18304:27645742,44907567 -h1,18304:28442660,44907567:0,0,0 -k1,18305:32583029,44907567:3800893 -g1,18305:32583029,44907567 -) -] -(1,18307:32583029,45706769:0,0,0 -g1,18307:32583029,45706769 -) -) -] -(1,18307:6630773,47279633:25952256,0,0 -h1,18307:6630773,47279633:25952256,0,0 -) -] -(1,18307:4262630,4025873:0,0,0 -[1,18307:-473656,4025873:0,0,0 -(1,18307:-473656,-710413:0,0,0 -(1,18307:-473656,-710413:0,0,0 -g1,18307:-473656,-710413 -) -g1,18307:-473656,-710413 +[1,18305:3078558,4812305:0,0,0 +(1,18305:3078558,49800853:0,16384,2228224 +g1,18305:29030814,49800853 +g1,18305:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18305:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18305:37855564,49800853:1179648,16384,0 +) +) +k1,18305:3078556,49800853:-34777008 +) +] +g1,18305:6630773,4812305 +k1,18305:21386205,4812305:13560055 +g1,18305:21999622,4812305 +g1,18305:25611966,4812305 +g1,18305:28956923,4812305 +g1,18305:29772190,4812305 +) +) +] +[1,18305:6630773,45706769:25952256,40108032,0 +(1,18305:6630773,45706769:25952256,40108032,0 +(1,18305:6630773,45706769:0,0,0 +g1,18305:6630773,45706769 +) +[1,18305:6630773,45706769:25952256,40108032,0 +(1,18265:6630773,6254097:25952256,513147,126483 +k1,18264:7413790,6254097:166979 +k1,18264:8599853,6254097:166978 +k1,18264:10420305,6254097:166979 +k1,18264:11998930,6254097:166979 +k1,18264:13184993,6254097:166978 +k1,18264:15166664,6254097:166979 +k1,18264:15992935,6254097:166979 +k1,18264:17178998,6254097:166978 +k1,18264:18744515,6254097:166979 +k1,18264:19903054,6254097:166979 +k1,18264:21089118,6254097:166979 +k1,18264:22909569,6254097:166978 +k1,18264:24267993,6254097:166979 +k1,18264:25201088,6254097:166979 +k1,18264:26594245,6254097:166978 +k1,18264:27292721,6254097:166979 +k1,18264:28478785,6254097:166979 +k1,18264:30472907,6254097:166978 +k1,18264:31563944,6254097:166979 +k1,18264:32583029,6254097:0 +) +(1,18265:6630773,7119177:25952256,513147,126483 +k1,18264:8649664,7119177:143251 +k1,18264:10399201,7119177:143250 +k1,18264:11872833,7119177:143251 +k1,18264:13712811,7119177:143251 +k1,18264:16725227,7119177:143250 +k1,18264:17860038,7119177:143251 +k1,18264:20878353,7119177:143251 +k1,18264:21783131,7119177:143250 +k1,18264:24688725,7119177:143251 +k1,18264:27148674,7119177:143251 +k1,18264:28396206,7119177:143250 +k1,18264:29287223,7119177:143251 +k1,18264:32583029,7119177:0 +) +(1,18265:6630773,7984257:25952256,513147,7863 +k1,18265:32583028,7984257:23137484 +g1,18265:32583028,7984257 +) +v1,18267:6630773,8669112:0,393216,0 +(1,18274:6630773,11031330:25952256,2755434,196608 +g1,18274:6630773,11031330 +g1,18274:6630773,11031330 +g1,18274:6434165,11031330 +(1,18274:6434165,11031330:0,2755434,196608 +r1,18305:32779637,11031330:26345472,2952042,196608 +k1,18274:6434165,11031330:-26345472 +) +(1,18274:6434165,11031330:26345472,2755434,196608 +[1,18274:6630773,11031330:25952256,2558826,0 +(1,18269:6630773,8896943:25952256,424439,112852 +(1,18268:6630773,8896943:0,0,0 +g1,18268:6630773,8896943 +g1,18268:6630773,8896943 +g1,18268:6303093,8896943 +(1,18268:6303093,8896943:0,0,0 +) +g1,18268:6630773,8896943 +) +k1,18269:6630773,8896943:0 +g1,18269:10614221,8896943 +g1,18269:11278129,8896943 +k1,18269:11278129,8896943:0 +h1,18269:13601807,8896943:0,0,0 +k1,18269:32583029,8896943:18981222 +g1,18269:32583029,8896943 +) +(1,18270:6630773,9581798:25952256,424439,112852 +h1,18270:6630773,9581798:0,0,0 +g1,18270:6962727,9581798 +g1,18270:7294681,9581798 +g1,18270:7626635,9581798 +g1,18270:7958589,9581798 +g1,18270:8290543,9581798 +g1,18270:8622497,9581798 +g1,18270:8954451,9581798 +g1,18270:11610083,9581798 +g1,18270:12273991,9581798 +g1,18270:14265715,9581798 +g1,18270:14929623,9581798 +g1,18270:16921347,9581798 +g1,18270:17585255,9581798 +g1,18270:18249163,9581798 +g1,18270:20240887,9581798 +h1,18270:20572841,9581798:0,0,0 +k1,18270:32583029,9581798:12010188 +g1,18270:32583029,9581798 +) +(1,18271:6630773,10266653:25952256,424439,112852 +h1,18271:6630773,10266653:0,0,0 +g1,18271:6962727,10266653 +g1,18271:7294681,10266653 +g1,18271:11610082,10266653 +h1,18271:11942036,10266653:0,0,0 +k1,18271:32583028,10266653:20640992 +g1,18271:32583028,10266653 +) +(1,18272:6630773,10951508:25952256,424439,79822 +h1,18272:6630773,10951508:0,0,0 +g1,18272:6962727,10951508 +g1,18272:7294681,10951508 +k1,18272:7294681,10951508:0 +h1,18272:12273990,10951508:0,0,0 +k1,18272:32583030,10951508:20309040 +g1,18272:32583030,10951508 +) +] +) +g1,18274:32583029,11031330 +g1,18274:6630773,11031330 +g1,18274:6630773,11031330 +g1,18274:32583029,11031330 +g1,18274:32583029,11031330 +) +h1,18274:6630773,11227938:0,0,0 +(1,18277:6630773,20377140:25952256,9083666,0 +k1,18277:10523651,20377140:3892878 +h1,18276:10523651,20377140:0,0,0 +(1,18276:10523651,20377140:18166500,9083666,0 +(1,18276:10523651,20377140:18167376,9083688,0 +(1,18276:10523651,20377140:18167376,9083688,0 +(1,18276:10523651,20377140:0,9083688,0 +(1,18276:10523651,20377140:0,14208860,0 +(1,18276:10523651,20377140:28417720,14208860,0 +) +k1,18276:10523651,20377140:-28417720 +) +) +g1,18276:28691027,20377140 +) +) +) +g1,18277:28690151,20377140 +k1,18277:32583029,20377140:3892878 +) +(1,18284:6630773,21242220:25952256,513147,134348 +h1,18283:6630773,21242220:983040,0,0 +k1,18283:9267111,21242220:187913 +k1,18283:10474110,21242220:187914 +k1,18283:12095951,21242220:187913 +k1,18283:13614901,21242220:187914 +k1,18283:15071591,21242220:187913 +k1,18283:16450950,21242220:187914 +k1,18283:17657948,21242220:187913 +k1,18283:19279790,21242220:187914 +k1,18283:20798739,21242220:187913 +k1,18283:22994676,21242220:187914 +k1,18283:24286871,21242220:187913 +k1,18283:25222551,21242220:187914 +k1,18283:28245551,21242220:187913 +k1,18283:29630152,21242220:187914 +k1,18283:31251993,21242220:187913 +k1,18283:32583029,21242220:0 +) +(1,18284:6630773,22107300:25952256,513147,102891 +k1,18283:8164690,22107300:265140 +k1,18283:11047993,22107300:265140 +k1,18283:12332218,22107300:265140 +k1,18283:13866134,22107300:265139 +k1,18283:14790566,22107300:265140 +k1,18283:15821822,22107300:265140 +k1,18283:17313141,22107300:265140 +k1,18283:20621118,22107300:265140 +k1,18283:21572420,22107300:265140 +k1,18283:23539530,22107300:265140 +k1,18283:25403747,22107300:265139 +k1,18283:26660447,22107300:265140 +k1,18283:29307165,22107300:265140 +k1,18283:31931601,22107300:265140 +k1,18283:32583029,22107300:0 +) +(1,18284:6630773,22972380:25952256,505283,134348 +k1,18283:7892385,22972380:242527 +k1,18283:9568840,22972380:242527 +k1,18283:11253814,22972380:242527 +k1,18283:12917161,22972380:242526 +k1,18283:14178773,22972380:242527 +k1,18283:15698597,22972380:242527 +k1,18283:17658167,22972380:242527 +k1,18283:20471671,22972380:242527 +k1,18283:22412236,22972380:242527 +k1,18283:24390156,22972380:242527 +k1,18283:25651768,22972380:242527 +k1,18283:27547767,22972380:242526 +k1,18283:29776690,22972380:242527 +k1,18283:30705379,22972380:242527 +k1,18283:31563944,22972380:242527 +k1,18283:32583029,22972380:0 +) +(1,18284:6630773,23837460:25952256,513147,126483 +k1,18283:9668568,23837460:283317 +k1,18283:12786972,23837460:283317 +k1,18283:14142458,23837460:283317 +k1,18283:15819726,23837460:283317 +k1,18283:16458903,23837460:283317 +k1,18283:19504563,23837460:283317 +k1,18283:21221809,23837460:283318 +k1,18283:23193333,23837460:283317 +k1,18283:24745427,23837460:283317 +k1,18283:26220189,23837460:283317 +k1,18283:27834542,23837460:283317 +k1,18283:30125882,23837460:283317 +k1,18283:31356850,23837460:283317 +k1,18283:32583029,23837460:0 +) +(1,18284:6630773,24702540:25952256,513147,134348 +g1,18283:9872839,24702540 +g1,18283:11475849,24702540 +g1,18283:12767563,24702540 +g1,18283:13626084,24702540 +g1,18283:16142011,24702540 +g1,18283:16872737,24702540 +g1,18283:20201310,24702540 +g1,18283:21016577,24702540 +g1,18283:23494493,24702540 +h1,18283:24863540,24702540:0,0,0 +g1,18283:25062769,24702540 +g1,18283:26071368,24702540 +g1,18283:27768750,24702540 +h1,18283:28964127,24702540:0,0,0 +k1,18284:32583029,24702540:3279426 +g1,18284:32583029,24702540 +) +v1,18286:6630773,25387395:0,393216,0 +(1,18293:6630773,27776037:25952256,2781858,196608 +g1,18293:6630773,27776037 +g1,18293:6630773,27776037 +g1,18293:6434165,27776037 +(1,18293:6434165,27776037:0,2781858,196608 +r1,18305:32779637,27776037:26345472,2978466,196608 +k1,18293:6434165,27776037:-26345472 +) +(1,18293:6434165,27776037:26345472,2781858,196608 +[1,18293:6630773,27776037:25952256,2585250,0 +(1,18288:6630773,25615226:25952256,424439,112852 +(1,18287:6630773,25615226:0,0,0 +g1,18287:6630773,25615226 +g1,18287:6630773,25615226 +g1,18287:6303093,25615226 +(1,18287:6303093,25615226:0,0,0 +) +g1,18287:6630773,25615226 +) +k1,18288:6630773,25615226:0 +g1,18288:10614221,25615226 +g1,18288:11278129,25615226 +k1,18288:11278129,25615226:0 +h1,18288:13601807,25615226:0,0,0 +k1,18288:32583029,25615226:18981222 +g1,18288:32583029,25615226 +) +(1,18289:6630773,26300081:25952256,424439,112852 +h1,18289:6630773,26300081:0,0,0 +g1,18289:6962727,26300081 +g1,18289:7294681,26300081 +g1,18289:7626635,26300081 +g1,18289:7958589,26300081 +g1,18289:8290543,26300081 +g1,18289:8622497,26300081 +g1,18289:8954451,26300081 +g1,18289:11610083,26300081 +g1,18289:12273991,26300081 +g1,18289:14265715,26300081 +g1,18289:14929623,26300081 +g1,18289:16921347,26300081 +g1,18289:17585255,26300081 +g1,18289:18249163,26300081 +g1,18289:20240887,26300081 +h1,18289:20572841,26300081:0,0,0 +k1,18289:32583029,26300081:12010188 +g1,18289:32583029,26300081 +) +(1,18290:6630773,26984936:25952256,424439,112852 +h1,18290:6630773,26984936:0,0,0 +g1,18290:6962727,26984936 +g1,18290:7294681,26984936 +g1,18290:11610082,26984936 +h1,18290:11942036,26984936:0,0,0 +k1,18290:32583028,26984936:20640992 +g1,18290:32583028,26984936 +) +(1,18291:6630773,27669791:25952256,431045,106246 +h1,18291:6630773,27669791:0,0,0 +g1,18291:6962727,27669791 +g1,18291:7294681,27669791 +g1,18291:15261575,27669791 +g1,18291:15925483,27669791 +g1,18291:17253299,27669791 +g1,18291:21236746,27669791 +g1,18291:21900654,27669791 +h1,18291:24556286,27669791:0,0,0 +k1,18291:32583029,27669791:8026743 +g1,18291:32583029,27669791 +) +] +) +g1,18293:32583029,27776037 +g1,18293:6630773,27776037 +g1,18293:6630773,27776037 +g1,18293:32583029,27776037 +g1,18293:32583029,27776037 +) +h1,18293:6630773,27972645:0,0,0 +(1,18296:6630773,37121847:25952256,9083666,0 +k1,18296:10523651,37121847:3892878 +h1,18295:10523651,37121847:0,0,0 +(1,18295:10523651,37121847:18166500,9083666,0 +(1,18295:10523651,37121847:18167376,9083688,0 +(1,18295:10523651,37121847:18167376,9083688,0 +(1,18295:10523651,37121847:0,9083688,0 +(1,18295:10523651,37121847:0,14208860,0 +(1,18295:10523651,37121847:28417720,14208860,0 +) +k1,18295:10523651,37121847:-28417720 +) +) +g1,18295:28691027,37121847 +) +) +) +g1,18296:28690151,37121847 +k1,18296:32583029,37121847:3892878 +) +(1,18303:6630773,37986927:25952256,505283,126483 +h1,18302:6630773,37986927:983040,0,0 +k1,18302:9238732,37986927:204098 +k1,18302:10094257,37986927:204097 +k1,18302:11232898,37986927:204098 +k1,18302:12689389,37986927:204098 +k1,18302:14911340,37986927:204097 +k1,18302:16299674,37986927:204098 +k1,18302:19448305,37986927:204098 +k1,18302:20843847,37986927:204097 +k1,18302:22232181,37986927:204098 +k1,18302:24280461,37986927:204097 +k1,18302:25617021,37986927:204098 +k1,18302:26568885,37986927:204098 +k1,18302:29902326,37986927:204097 +k1,18302:30722462,37986927:204098 +k1,18302:32583029,37986927:0 +) +(1,18303:6630773,38852007:25952256,513147,134348 +k1,18302:7436677,38852007:189866 +k1,18302:9905230,38852007:189866 +h1,18302:11274277,38852007:0,0,0 +k1,18302:11464144,38852007:189867 +k1,18302:12463380,38852007:189866 +k1,18302:14151399,38852007:189866 +h1,18302:15346776,38852007:0,0,0 +k1,18302:15710312,38852007:189866 +k1,18302:18690046,38852007:189866 +(1,18302:18690046,38852007:0,452978,115847 +r1,18305:20806871,38852007:2116825,568825,115847 +k1,18302:18690046,38852007:-2116825 +) +(1,18302:18690046,38852007:2116825,452978,115847 +k1,18302:18690046,38852007:3277 +h1,18302:20803594,38852007:0,411205,112570 +) +k1,18302:20996738,38852007:189867 +k1,18302:21718101,38852007:189866 +k1,18302:22306426,38852007:189866 +k1,18302:26315730,38852007:189866 +k1,18302:29104100,38852007:189867 +k1,18302:30807192,38852007:189866 +k1,18302:31648486,38852007:189866 +k1,18302:32583029,38852007:0 +) +(1,18303:6630773,39717087:25952256,513147,126483 +k1,18302:7821652,39717087:171794 +k1,18302:9260911,39717087:171793 +k1,18302:10624150,39717087:171794 +k1,18302:13208980,39717087:171794 +k1,18302:14040066,39717087:171794 +k1,18302:14567719,39717087:171793 +k1,18302:16016810,39717087:171794 +k1,18302:17380049,39717087:171794 +k1,18302:18203270,39717087:171793 +k1,18302:20673412,39717087:171794 +k1,18302:21864291,39717087:171794 +k1,18302:24301664,39717087:171793 +(1,18302:24301664,39717087:0,414482,115847 +r1,18305:25715065,39717087:1413401,530329,115847 +k1,18302:24301664,39717087:-1413401 +) +(1,18302:24301664,39717087:1413401,414482,115847 +k1,18302:24301664,39717087:3277 +h1,18302:25711788,39717087:0,411205,112570 +) +k1,18302:25886859,39717087:171794 +k1,18302:26717945,39717087:171794 +k1,18302:28965920,39717087:171794 +k1,18302:29753751,39717087:171793 +k1,18302:31128786,39717087:171794 +k1,18302:32583029,39717087:0 +) +(1,18303:6630773,40582167:25952256,513147,126483 +k1,18302:8602064,40582167:227378 +k1,18302:10342668,40582167:227378 +k1,18302:11517697,40582167:227378 +k1,18302:12997468,40582167:227378 +k1,18302:16743474,40582167:227378 +k1,18302:19236432,40582167:227378 +(1,18302:19236432,40582167:0,414482,115847 +r1,18305:20649833,40582167:1413401,530329,115847 +k1,18302:19236432,40582167:-1413401 +) +(1,18302:19236432,40582167:1413401,414482,115847 +k1,18302:19236432,40582167:3277 +h1,18302:20646556,40582167:0,411205,112570 +) +k1,18302:20877212,40582167:227379 +k1,18302:21763882,40582167:227378 +k1,18302:23893770,40582167:227378 +k1,18302:24652645,40582167:227378 +k1,18302:25899108,40582167:227378 +k1,18302:27864501,40582167:227378 +k1,18302:28751171,40582167:227378 +k1,18302:29997634,40582167:227378 +k1,18302:32583029,40582167:0 +) +(1,18303:6630773,41447247:25952256,513147,126483 +k1,18302:9434279,41447247:136191 +k1,18302:10198305,41447247:136191 +k1,18302:11353582,41447247:136192 +k1,18302:12589467,41447247:136191 +k1,18302:13377086,41447247:136191 +(1,18302:13377086,41447247:0,452978,115847 +r1,18305:15493911,41447247:2116825,568825,115847 +k1,18302:13377086,41447247:-2116825 +) +(1,18302:13377086,41447247:2116825,452978,115847 +k1,18302:13377086,41447247:3277 +h1,18302:15490634,41447247:0,411205,112570 +) +k1,18302:15630102,41447247:136191 +k1,18302:16785379,41447247:136192 +k1,18302:18989886,41447247:136191 +k1,18302:19785369,41447247:136191 +k1,18302:23096124,41447247:136191 +k1,18302:24223876,41447247:136192 +k1,18302:25873293,41447247:136191 +k1,18302:26695646,41447247:136191 +k1,18302:27297798,41447247:136191 +k1,18302:28814178,41447247:136192 +k1,18302:30454420,41447247:136191 +k1,18302:32583029,41447247:0 +) +(1,18303:6630773,42312327:25952256,505283,134348 +k1,18302:10452105,42312327:210298 +k1,18302:12056354,42312327:210298 +k1,18302:15241331,42312327:210298 +k1,18302:17821411,42312327:210298 +k1,18302:18714594,42312327:210298 +k1,18302:19339724,42312327:210287 +k1,18302:23493979,42312327:210298 +k1,18302:24390439,42312327:210298 +k1,18302:28177037,42312327:210298 +k1,18302:30254456,42312327:210298 +(1,18302:30254456,42312327:0,414482,115847 +r1,18305:30612722,42312327:358266,530329,115847 +k1,18302:30254456,42312327:-358266 +) +(1,18302:30254456,42312327:358266,414482,115847 +k1,18302:30254456,42312327:3277 +h1,18302:30609445,42312327:0,411205,112570 +) +k1,18302:30823020,42312327:210298 +k1,18302:32224763,42312327:210298 +(1,18302:32224763,42312327:0,414482,115847 +r1,18305:32583029,42312327:358266,530329,115847 +k1,18302:32224763,42312327:-358266 +) +(1,18302:32224763,42312327:358266,414482,115847 +k1,18302:32224763,42312327:3277 +h1,18302:32579752,42312327:0,411205,112570 +) +k1,18302:32583029,42312327:0 +) +(1,18303:6630773,43177407:25952256,513147,126483 +k1,18302:7850975,43177407:228642 +k1,18302:9098702,43177407:228642 +k1,18302:11395660,43177407:228642 +k1,18302:12283594,43177407:228642 +k1,18302:13531321,43177407:228642 +k1,18302:14932402,43177407:228642 +k1,18302:18225508,43177407:228642 +k1,18302:19105578,43177407:228642 +k1,18302:21219691,43177407:228642 +k1,18302:22620772,43177407:228642 +k1,18302:25691055,43177407:228642 +k1,18302:26535735,43177407:228642 +(1,18302:26535735,43177407:0,452978,115847 +r1,18305:27949136,43177407:1413401,568825,115847 +k1,18302:26535735,43177407:-1413401 +) +(1,18302:26535735,43177407:1413401,452978,115847 +k1,18302:26535735,43177407:3277 +h1,18302:27945859,43177407:0,411205,112570 +) +k1,18302:28177778,43177407:228642 +k1,18302:29910471,43177407:228642 +k1,18303:32583029,43177407:0 +) +(1,18303:6630773,44042487:25952256,505283,126483 +(1,18302:6630773,44042487:0,452978,115847 +r1,18305:8044174,44042487:1413401,568825,115847 +k1,18302:6630773,44042487:-1413401 +) +(1,18302:6630773,44042487:1413401,452978,115847 +k1,18302:6630773,44042487:3277 +h1,18302:8040897,44042487:0,411205,112570 +) +k1,18302:8201111,44042487:156937 +k1,18302:9549493,44042487:156937 +(1,18302:9549493,44042487:0,414482,122846 +r1,18305:10611182,44042487:1061689,537328,122846 +k1,18302:9549493,44042487:-1061689 +) +(1,18302:9549493,44042487:1061689,414482,122846 +k1,18302:9549493,44042487:3277 +h1,18302:10607905,44042487:0,411205,112570 +) +k1,18302:10941789,44042487:156937 +k1,18302:13321707,44042487:156937 +k1,18302:17089678,44042487:156937 +(1,18302:17089678,44042487:0,452978,115847 +r1,18305:18854791,44042487:1765113,568825,115847 +k1,18302:17089678,44042487:-1765113 +) +(1,18302:17089678,44042487:1765113,452978,115847 +k1,18302:17089678,44042487:3277 +h1,18302:18851514,44042487:0,411205,112570 +) +k1,18302:19011728,44042487:156937 +k1,18302:20360110,44042487:156937 +(1,18302:20360110,44042487:0,452978,115847 +r1,18305:23180359,44042487:2820249,568825,115847 +k1,18302:20360110,44042487:-2820249 +) +(1,18302:20360110,44042487:2820249,452978,115847 +k1,18302:20360110,44042487:3277 +h1,18302:23177082,44042487:0,411205,112570 +) +k1,18302:23337296,44042487:156937 +k1,18302:24691576,44042487:156937 +k1,18302:26545240,44042487:156937 +k1,18302:27979474,44042487:156937 +k1,18302:31179248,44042487:156937 +k1,18302:32583029,44042487:0 +) +(1,18303:6630773,44907567:25952256,530548,134348 +g1,18302:9385906,44907567 +g1,18302:12559814,44907567 +h1,18302:12559814,44907567:0,0,0 +g1,18302:13588928,44907567 +g1,18302:15897106,44907567 +g1,18302:17043986,44907567 +g1,18302:18526410,44907567 +g1,18302:20067816,44907567 +g1,18302:21292028,44907567 +g1,18302:23769944,44907567 +h1,18302:24740532,44907567:0,0,0 +g1,18302:24939761,44907567 +g1,18302:25948360,44907567 +g1,18302:27645742,44907567 +h1,18302:28442660,44907567:0,0,0 +k1,18303:32583029,44907567:3800893 +g1,18303:32583029,44907567 +) +] +(1,18305:32583029,45706769:0,0,0 +g1,18305:32583029,45706769 +) +) +] +(1,18305:6630773,47279633:25952256,0,0 +h1,18305:6630773,47279633:25952256,0,0 +) +] +(1,18305:4262630,4025873:0,0,0 +[1,18305:-473656,4025873:0,0,0 +(1,18305:-473656,-710413:0,0,0 +(1,18305:-473656,-710413:0,0,0 +g1,18305:-473656,-710413 +) +g1,18305:-473656,-710413 ) ] ) ] !20816 -}299 -Input:3040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}300 Input:3044:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3045:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3046:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3047:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3048:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3049:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{300 -[1,18347:4262630,47279633:28320399,43253760,0 -(1,18347:4262630,4025873:0,0,0 -[1,18347:-473656,4025873:0,0,0 -(1,18347:-473656,-710413:0,0,0 -(1,18347:-473656,-644877:0,0,0 -k1,18347:-473656,-644877:-65536 +{301 +[1,18345:4262630,47279633:28320399,43253760,0 +(1,18345:4262630,4025873:0,0,0 +[1,18345:-473656,4025873:0,0,0 +(1,18345:-473656,-710413:0,0,0 +(1,18345:-473656,-644877:0,0,0 +k1,18345:-473656,-644877:-65536 ) -(1,18347:-473656,4736287:0,0,0 -k1,18347:-473656,4736287:5209943 +(1,18345:-473656,4736287:0,0,0 +k1,18345:-473656,4736287:5209943 ) -g1,18347:-473656,-710413 +g1,18345:-473656,-710413 ) ] ) -[1,18347:6630773,47279633:25952256,43253760,0 -[1,18347:6630773,4812305:25952256,786432,0 -(1,18347:6630773,4812305:25952256,513147,126483 -(1,18347:6630773,4812305:25952256,513147,126483 -g1,18347:3078558,4812305 -[1,18347:3078558,4812305:0,0,0 -(1,18347:3078558,2439708:0,1703936,0 -k1,18347:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18347:2537886,2439708:1179648,16384,0 +[1,18345:6630773,47279633:25952256,43253760,0 +[1,18345:6630773,4812305:25952256,786432,0 +(1,18345:6630773,4812305:25952256,513147,126483 +(1,18345:6630773,4812305:25952256,513147,126483 +g1,18345:3078558,4812305 +[1,18345:3078558,4812305:0,0,0 +(1,18345:3078558,2439708:0,1703936,0 +k1,18345:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18345:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18347:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18345:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18347:3078558,4812305:0,0,0 -(1,18347:3078558,2439708:0,1703936,0 -g1,18347:29030814,2439708 -g1,18347:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18347:36151628,1915420:16384,1179648,0 +[1,18345:3078558,4812305:0,0,0 +(1,18345:3078558,2439708:0,1703936,0 +g1,18345:29030814,2439708 +g1,18345:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18345:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18347:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18345:37855564,2439708:1179648,16384,0 ) ) -k1,18347:3078556,2439708:-34777008 +k1,18345:3078556,2439708:-34777008 ) ] -[1,18347:3078558,4812305:0,0,0 -(1,18347:3078558,49800853:0,16384,2228224 -k1,18347:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18347:2537886,49800853:1179648,16384,0 +[1,18345:3078558,4812305:0,0,0 +(1,18345:3078558,49800853:0,16384,2228224 +k1,18345:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18345:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18347:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18345:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18347:3078558,4812305:0,0,0 -(1,18347:3078558,49800853:0,16384,2228224 -g1,18347:29030814,49800853 -g1,18347:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18347:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18347:37855564,49800853:1179648,16384,0 -) -) -k1,18347:3078556,49800853:-34777008 -) -] -g1,18347:6630773,4812305 -g1,18347:6630773,4812305 -g1,18347:8017514,4812305 -g1,18347:11362471,4812305 -g1,18347:12177738,4812305 -g1,18347:15187806,4812305 -k1,18347:31387652,4812305:16199846 -) -) -] -[1,18347:6630773,45706769:25952256,40108032,0 -(1,18347:6630773,45706769:25952256,40108032,0 -(1,18347:6630773,45706769:0,0,0 -g1,18347:6630773,45706769 -) -[1,18347:6630773,45706769:25952256,40108032,0 -v1,18307:6630773,6254097:0,393216,0 -(1,18317:6630773,10703910:25952256,4843029,196608 -g1,18317:6630773,10703910 -g1,18317:6630773,10703910 -g1,18317:6434165,10703910 -(1,18317:6434165,10703910:0,4843029,196608 -r1,18347:32779637,10703910:26345472,5039637,196608 -k1,18317:6434165,10703910:-26345472 -) -(1,18317:6434165,10703910:26345472,4843029,196608 -[1,18317:6630773,10703910:25952256,4646421,0 -(1,18309:6630773,6481928:25952256,424439,112852 -(1,18308:6630773,6481928:0,0,0 -g1,18308:6630773,6481928 -g1,18308:6630773,6481928 -g1,18308:6303093,6481928 -(1,18308:6303093,6481928:0,0,0 -) -g1,18308:6630773,6481928 -) -k1,18309:6630773,6481928:0 -g1,18309:10614221,6481928 -g1,18309:11278129,6481928 -k1,18309:11278129,6481928:0 -h1,18309:13601807,6481928:0,0,0 -k1,18309:32583029,6481928:18981222 -g1,18309:32583029,6481928 -) -(1,18310:6630773,7166783:25952256,424439,112852 -h1,18310:6630773,7166783:0,0,0 -g1,18310:6962727,7166783 -g1,18310:7294681,7166783 -g1,18310:7626635,7166783 -g1,18310:7958589,7166783 -g1,18310:8290543,7166783 -g1,18310:8622497,7166783 -g1,18310:8954451,7166783 -g1,18310:11610083,7166783 -g1,18310:12273991,7166783 -g1,18310:14265715,7166783 -g1,18310:14929623,7166783 -g1,18310:16921347,7166783 -g1,18310:17585255,7166783 -g1,18310:18249163,7166783 -g1,18310:20240887,7166783 -h1,18310:20572841,7166783:0,0,0 -k1,18310:32583029,7166783:12010188 -g1,18310:32583029,7166783 -) -(1,18311:6630773,7851638:25952256,424439,112852 -h1,18311:6630773,7851638:0,0,0 -g1,18311:6962727,7851638 -g1,18311:7294681,7851638 -g1,18311:11610082,7851638 -h1,18311:11942036,7851638:0,0,0 -k1,18311:32583028,7851638:20640992 -g1,18311:32583028,7851638 -) -(1,18312:6630773,8536493:25952256,424439,112852 -h1,18312:6630773,8536493:0,0,0 -g1,18312:6962727,8536493 -g1,18312:7294681,8536493 -g1,18312:9618359,8536493 -g1,18312:10282267,8536493 -g1,18312:12937899,8536493 -g1,18312:17253300,8536493 -g1,18312:19576978,8536493 -k1,18312:19576978,8536493:0 -h1,18312:22564563,8536493:0,0,0 -k1,18312:32583029,8536493:10018466 -g1,18312:32583029,8536493 -) -(1,18313:6630773,9221348:25952256,431045,112852 -h1,18313:6630773,9221348:0,0,0 -g1,18313:6962727,9221348 -g1,18313:7294681,9221348 -g1,18313:7626635,9221348 -g1,18313:7958589,9221348 -g1,18313:8290543,9221348 -g1,18313:8622497,9221348 -g1,18313:8954451,9221348 -g1,18313:9618359,9221348 -g1,18313:10282267,9221348 -g1,18313:12273991,9221348 -g1,18313:13601807,9221348 -g1,18313:19908932,9221348 -g1,18313:21236748,9221348 -k1,18313:21236748,9221348:0 -h1,18313:24224333,9221348:0,0,0 -k1,18313:32583029,9221348:8358696 -g1,18313:32583029,9221348 -) -(1,18314:6630773,9906203:25952256,424439,86428 -h1,18314:6630773,9906203:0,0,0 -g1,18314:6962727,9906203 -g1,18314:7294681,9906203 -g1,18314:7626635,9906203 -g1,18314:7958589,9906203 -g1,18314:8290543,9906203 -g1,18314:8622497,9906203 -g1,18314:8954451,9906203 -g1,18314:10946175,9906203 -g1,18314:11610083,9906203 -g1,18314:13933761,9906203 -g1,18314:15925485,9906203 -g1,18314:17253301,9906203 -g1,18314:18913071,9906203 -k1,18314:18913071,9906203:0 -h1,18314:21236749,9906203:0,0,0 -k1,18314:32583029,9906203:11346280 -g1,18314:32583029,9906203 -) -(1,18315:6630773,10591058:25952256,424439,112852 -h1,18315:6630773,10591058:0,0,0 -g1,18315:6962727,10591058 -g1,18315:7294681,10591058 -g1,18315:7626635,10591058 -g1,18315:7958589,10591058 -g1,18315:8290543,10591058 -g1,18315:8622497,10591058 -g1,18315:8954451,10591058 -g1,18315:11942036,10591058 -g1,18315:12605944,10591058 -g1,18315:15593529,10591058 -g1,18315:17253299,10591058 -g1,18315:19245023,10591058 -g1,18315:21236747,10591058 -g1,18315:22232609,10591058 -h1,18315:25552148,10591058:0,0,0 -k1,18315:32583029,10591058:7030881 -g1,18315:32583029,10591058 -) -] -) -g1,18317:32583029,10703910 -g1,18317:6630773,10703910 -g1,18317:6630773,10703910 -g1,18317:32583029,10703910 -g1,18317:32583029,10703910 -) -h1,18317:6630773,10900518:0,0,0 -(1,18320:6630773,20049720:25952256,9083666,0 -k1,18320:10523651,20049720:3892878 -h1,18319:10523651,20049720:0,0,0 -(1,18319:10523651,20049720:18166500,9083666,0 -(1,18319:10523651,20049720:18167376,9083688,0 -(1,18319:10523651,20049720:18167376,9083688,0 -(1,18319:10523651,20049720:0,9083688,0 -(1,18319:10523651,20049720:0,14208860,0 -(1,18319:10523651,20049720:28417720,14208860,0 -) -k1,18319:10523651,20049720:-28417720 -) -) -g1,18319:28691027,20049720 -) -) -) -g1,18320:28690151,20049720 -k1,18320:32583029,20049720:3892878 -) -(1,18327:6630773,20914800:25952256,505283,126483 -h1,18326:6630773,20914800:983040,0,0 -k1,18326:8584032,20914800:152330 -k1,18326:11885368,20914800:152331 -k1,18326:12653736,20914800:152330 -k1,18326:13394579,20914800:152330 -k1,18326:15244948,20914800:152331 -k1,18326:15753138,20914800:152330 -k1,18326:17585811,20914800:152330 -k1,18326:18269638,20914800:152330 -k1,18326:21434659,20914800:152331 -k1,18326:23442969,20914800:152330 -k1,18326:23951159,20914800:152330 -k1,18326:25783833,20914800:152331 -k1,18326:27974333,20914800:152330 -k1,18326:28742701,20914800:152330 -k1,18326:29250892,20914800:152331 -k1,18326:31914562,20914800:152330 -k1,18326:32583029,20914800:0 -) -(1,18327:6630773,21779880:25952256,505283,134348 -k1,18326:7135702,21779880:149069 -k1,18326:8934968,21779880:149069 -k1,18326:11770358,21779880:149069 -k1,18326:15105787,21779880:149069 -k1,18326:18255750,21779880:149069 -k1,18326:18760679,21779880:149069 -k1,18326:21421744,21779880:149070 -k1,18326:23251156,21779880:149069 -k1,18326:24504507,21779880:149069 -k1,18326:25401342,21779880:149069 -k1,18326:27755698,21779880:149069 -k1,18326:28590929,21779880:149069 -k1,18326:29510701,21779880:149069 -k1,18326:32583029,21779880:0 -) -(1,18327:6630773,22644960:25952256,505283,126483 -k1,18326:7470781,22644960:188580 -k1,18326:8407126,22644960:188579 -k1,18326:11181101,22644960:188580 -k1,18326:12021109,22644960:188580 -k1,18326:12980392,22644960:188580 -k1,18326:16095808,22644960:188579 -k1,18326:16912223,22644960:188580 -k1,18326:18802773,22644960:188580 -k1,18326:21119962,22644960:188580 -k1,18326:22327626,22644960:188579 -k1,18326:24526851,22644960:188580 -k1,18326:25366859,22644960:188580 -k1,18326:26303205,22644960:188580 -k1,18326:28794064,22644960:188579 -k1,18326:29797912,22644960:188580 -k1,18326:31052763,22644960:188580 -k1,18326:32583029,22644960:0 -) -(1,18327:6630773,23510040:25952256,513147,134348 -k1,18326:7474877,23510040:192676 -k1,18326:8415318,23510040:192675 -k1,18326:10646164,23510040:192676 -k1,18326:11525002,23510040:192676 -k1,18326:14559319,23510040:192676 -k1,18326:15641973,23510040:192675 -k1,18326:18754933,23510040:192676 -k1,18326:19563647,23510040:192676 -k1,18326:20775408,23510040:192676 -k1,18326:22357446,23510040:192675 -k1,18326:24426418,23510040:192676 -k1,18326:26824381,23510040:192676 -k1,18326:27703219,23510040:192676 -k1,18326:28666597,23510040:192675 -k1,18326:31931601,23510040:192676 -k1,18326:32583029,23510040:0 -) -(1,18327:6630773,24375120:25952256,513147,126483 -k1,18326:10089484,24375120:177979 -(1,18326:10089484,24375120:0,452978,115847 -r1,18347:11502885,24375120:1413401,568825,115847 -k1,18326:10089484,24375120:-1413401 -) -(1,18326:10089484,24375120:1413401,452978,115847 -k1,18326:10089484,24375120:3277 -h1,18326:11499608,24375120:0,411205,112570 -) -k1,18326:11854535,24375120:177980 -k1,18326:13412702,24375120:177979 -k1,18326:14694963,24375120:177979 -k1,18326:16158758,24375120:177979 -k1,18326:17084504,24375120:177980 -k1,18326:20471126,24375120:177979 -k1,18326:22216726,24375120:177979 -k1,18326:24091432,24375120:177979 -k1,18326:27284723,24375120:177980 -k1,18326:29503493,24375120:177979 -k1,18327:32583029,24375120:0 -) -(1,18327:6630773,25240200:25952256,505283,134348 -k1,18326:9011398,25240200:257258 -(1,18326:9011398,25240200:0,414482,122846 -r1,18347:10073087,25240200:1061689,537328,122846 -k1,18326:9011398,25240200:-1061689 -) -(1,18326:9011398,25240200:1061689,414482,122846 -k1,18326:9011398,25240200:3277 -h1,18326:10069810,25240200:0,411205,112570 -) -k1,18326:10330345,25240200:257258 -k1,18326:11579162,25240200:257257 -k1,18326:14138700,25240200:257258 -k1,18326:16685131,25240200:257258 -k1,18326:17961474,25240200:257258 -k1,18326:20318506,25240200:257258 -k1,18326:24829706,25240200:257258 -k1,18326:26143403,25240200:257257 -k1,18326:28972949,25240200:257258 -k1,18326:29991735,25240200:257258 -k1,18327:32583029,25240200:0 -) -(1,18327:6630773,26105280:25952256,505283,126483 -(1,18326:6630773,26105280:0,452978,115847 -r1,18347:8044174,26105280:1413401,568825,115847 -k1,18326:6630773,26105280:-1413401 -) -(1,18326:6630773,26105280:1413401,452978,115847 -k1,18326:6630773,26105280:3277 -h1,18326:8040897,26105280:0,411205,112570 -) -g1,18326:8243403,26105280 -g1,18326:9204160,26105280 -(1,18326:9204160,26105280:0,452978,115847 -r1,18347:10265849,26105280:1061689,568825,115847 -k1,18326:9204160,26105280:-1061689 -) -(1,18326:9204160,26105280:1061689,452978,115847 -k1,18326:9204160,26105280:3277 -h1,18326:10262572,26105280:0,411205,112570 -) -g1,18326:10465078,26105280 -g1,18326:12674296,26105280 -g1,18326:13892610,26105280 -g1,18326:15191533,26105280 -g1,18326:16042190,26105280 -(1,18326:16042190,26105280:0,452978,115847 -r1,18347:17807303,26105280:1765113,568825,115847 -k1,18326:16042190,26105280:-1765113 -) -(1,18326:16042190,26105280:1765113,452978,115847 -k1,18326:16042190,26105280:3277 -h1,18326:17804026,26105280:0,411205,112570 -) -k1,18327:32583029,26105280:14723298 -g1,18327:32583029,26105280 -) -v1,18329:6630773,26790135:0,393216,0 -(1,18335:6630773,28500528:25952256,2103609,196608 -g1,18335:6630773,28500528 -g1,18335:6630773,28500528 -g1,18335:6434165,28500528 -(1,18335:6434165,28500528:0,2103609,196608 -r1,18347:32779637,28500528:26345472,2300217,196608 -k1,18335:6434165,28500528:-26345472 -) -(1,18335:6434165,28500528:26345472,2103609,196608 -[1,18335:6630773,28500528:25952256,1907001,0 -(1,18331:6630773,27017966:25952256,424439,112852 -(1,18330:6630773,27017966:0,0,0 -g1,18330:6630773,27017966 -g1,18330:6630773,27017966 -g1,18330:6303093,27017966 -(1,18330:6303093,27017966:0,0,0 -) -g1,18330:6630773,27017966 -) -k1,18331:6630773,27017966:0 -g1,18331:10614221,27017966 -g1,18331:11278129,27017966 -k1,18331:11278129,27017966:0 -h1,18331:13601807,27017966:0,0,0 -k1,18331:32583029,27017966:18981222 -g1,18331:32583029,27017966 -) -(1,18332:6630773,27702821:25952256,424439,112852 -h1,18332:6630773,27702821:0,0,0 -g1,18332:6962727,27702821 -g1,18332:7294681,27702821 -g1,18332:7626635,27702821 -g1,18332:7958589,27702821 -g1,18332:8290543,27702821 -g1,18332:8622497,27702821 -g1,18332:8954451,27702821 -g1,18332:11610083,27702821 -g1,18332:12273991,27702821 -g1,18332:14265715,27702821 -g1,18332:14929623,27702821 -g1,18332:16589393,27702821 -g1,18332:17253301,27702821 -g1,18332:18913071,27702821 -g1,18332:19576979,27702821 -g1,18332:20240887,27702821 -g1,18332:22232611,27702821 -h1,18332:22564565,27702821:0,0,0 -k1,18332:32583029,27702821:10018464 -g1,18332:32583029,27702821 -) -(1,18333:6630773,28387676:25952256,424439,112852 -h1,18333:6630773,28387676:0,0,0 -g1,18333:6962727,28387676 -g1,18333:7294681,28387676 -k1,18333:7294681,28387676:0 -h1,18333:11278128,28387676:0,0,0 -k1,18333:32583028,28387676:21304900 -g1,18333:32583028,28387676 -) -] -) -g1,18335:32583029,28500528 -g1,18335:6630773,28500528 -g1,18335:6630773,28500528 -g1,18335:32583029,28500528 -g1,18335:32583029,28500528 -) -h1,18335:6630773,28697136:0,0,0 -(1,18338:6630773,37846338:25952256,9083666,0 -k1,18338:10523651,37846338:3892878 -h1,18337:10523651,37846338:0,0,0 -(1,18337:10523651,37846338:18166500,9083666,0 -(1,18337:10523651,37846338:18167376,9083688,0 -(1,18337:10523651,37846338:18167376,9083688,0 -(1,18337:10523651,37846338:0,9083688,0 -(1,18337:10523651,37846338:0,14208860,0 -(1,18337:10523651,37846338:28417720,14208860,0 -) -k1,18337:10523651,37846338:-28417720 -) -) -g1,18337:28691027,37846338 -) -) -) -g1,18338:28690151,37846338 -k1,18338:32583029,37846338:3892878 -) -(1,18346:6630773,38711418:25952256,513147,134348 -h1,18344:6630773,38711418:983040,0,0 -k1,18344:9264828,38711418:175800 -k1,18344:10099921,38711418:175801 -k1,18344:11294806,38711418:175800 -k1,18344:14339772,38711418:175800 -k1,18344:15174865,38711418:175801 -k1,18344:16369750,38711418:175800 -k1,18344:19448140,38711418:175800 -k1,18344:23329347,38711418:175801 -k1,18344:25360471,38711418:175800 -k1,18344:26067768,38711418:175800 -k1,18344:30445082,38711418:175801 -k1,18344:31236920,38711418:175800 -k1,18346:32583029,38711418:0 -) -(1,18346:6630773,39576498:25952256,513147,134348 -k1,18344:8230834,39576498:168755 -k1,18344:11599057,39576498:168755 -k1,18344:12959257,39576498:168755 -k1,18344:13744050,39576498:168755 -k1,18344:16578810,39576498:168755 -k1,18344:18444292,39576498:168755 -k1,18344:21638845,39576498:168756 -k1,18344:23855600,39576498:168755 -k1,18344:27426984,39576498:168755 -k1,18344:28880245,39576498:168755 -k1,18344:30153282,39576498:168755 -k1,18344:31069803,39576498:168755 -k1,18344:32583029,39576498:0 -) -(1,18346:6630773,40441578:25952256,513147,134348 -k1,18344:7475805,40441578:193604 -k1,18344:9931712,40441578:193604 -k1,18344:11633955,40441578:193604 -k1,18344:15175794,40441578:193605 -k1,18344:17984285,40441578:193604 -k1,18344:19567252,40441578:193604 -k1,18344:22050684,40441578:193604 -k1,18344:22930450,40441578:193604 -k1,18344:24402662,40441578:193605 -k1,18344:25282428,40441578:193604 -k1,18344:28147279,40441578:193604 -k1,18344:31478747,40441578:193604 -k1,18344:32583029,40441578:0 -) -(1,18346:6630773,41306658:25952256,513147,134348 -k1,18344:9121560,41306658:261908 -k1,18344:11393457,41306658:261908 -k1,18344:12011225,41306658:261908 -k1,18344:14146152,41306658:261908 -(1,18344:14146152,41306658:0,452978,122846 -r1,18347:15559553,41306658:1413401,575824,122846 -k1,18344:14146152,41306658:-1413401 -) -(1,18344:14146152,41306658:1413401,452978,122846 -k1,18344:14146152,41306658:3277 -h1,18344:15556276,41306658:0,411205,112570 -) -k1,18344:15821461,41306658:261908 -k1,18344:17360666,41306658:261908 -k1,18344:19755771,41306658:261908 -k1,18344:22882913,41306658:261908 -k1,18344:24336266,41306658:261908 -k1,18344:25979018,41306658:261908 -k1,18344:27737113,41306658:261908 -k1,18344:29103303,41306658:261908 -k1,18344:31326048,41306658:261908 -k1,18344:32583029,41306658:0 -) -(1,18346:6630773,42171738:25952256,505283,134348 -k1,18344:10506280,42171738:284790 -k1,18344:13624192,42171738:284791 -k1,18344:15905864,42171738:284790 -k1,18344:19835111,42171738:284790 -k1,18344:21311347,42171738:284791 -k1,18344:23062833,42171738:284790 -k1,18344:26781054,42171738:284790 -k1,18344:28349040,42171738:284791 -k1,18344:31849026,42171738:284790 -k1,18346:32583029,42171738:0 -) -(1,18346:6630773,43036818:25952256,513147,126483 -k1,18344:9441886,43036818:234237 -k1,18344:12545288,43036818:234236 -k1,18344:13395563,43036818:234237 -k1,18344:13985659,43036818:234236 -k1,18344:16163694,43036818:234237 -k1,18344:17502213,43036818:234237 -k1,18344:18484215,43036818:234236 -k1,18344:21553539,43036818:234237 -k1,18344:22979220,43036818:234236 -k1,18344:24496652,43036818:234237 -k1,18344:27656415,43036818:234236 -k1,18344:30145746,43036818:234237 -k1,18344:32583029,43036818:0 -) -(1,18346:6630773,43901898:25952256,513147,134348 -k1,18344:9209991,43901898:217300 -k1,18344:10618736,43901898:217300 -k1,18344:13167151,43901898:217299 -k1,18344:13597425,43901898:217282 -k1,18344:16484006,43901898:217300 -k1,18344:18569737,43901898:217300 -k1,18344:20117417,43901898:217299 -k1,18344:20986145,43901898:217300 -k1,18344:22295930,43901898:217300 -k1,18344:23532315,43901898:217300 -k1,18344:26652205,43901898:217300 -k1,18344:27528796,43901898:217299 -k1,18344:30465185,43901898:217300 -k1,18344:31333913,43901898:217300 -k1,18346:32583029,43901898:0 -) -(1,18346:6630773,44766978:25952256,513147,126483 -k1,18344:8678058,44766978:166402 -k1,18344:11606802,44766978:166401 -k1,18344:13489592,44766978:166402 -k1,18344:14315286,44766978:166402 -k1,18344:15871051,44766978:166402 -k1,18344:20560747,44766978:166401 -k1,18344:22193845,44766978:166402 -k1,18344:24484924,44766978:166402 -k1,18344:25842771,44766978:166402 -k1,18344:28869163,44766978:166401 -k1,18344:31563944,44766978:166402 -k1,18344:32583029,44766978:0 -) -] -(1,18347:32583029,45706769:0,0,0 -g1,18347:32583029,45706769 -) -) -] -(1,18347:6630773,47279633:25952256,0,0 -h1,18347:6630773,47279633:25952256,0,0 -) -] -(1,18347:4262630,4025873:0,0,0 -[1,18347:-473656,4025873:0,0,0 -(1,18347:-473656,-710413:0,0,0 -(1,18347:-473656,-710413:0,0,0 -g1,18347:-473656,-710413 -) -g1,18347:-473656,-710413 +[1,18345:3078558,4812305:0,0,0 +(1,18345:3078558,49800853:0,16384,2228224 +g1,18345:29030814,49800853 +g1,18345:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18345:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18345:37855564,49800853:1179648,16384,0 +) +) +k1,18345:3078556,49800853:-34777008 +) +] +g1,18345:6630773,4812305 +g1,18345:6630773,4812305 +g1,18345:8017514,4812305 +g1,18345:11362471,4812305 +g1,18345:12177738,4812305 +g1,18345:15187806,4812305 +k1,18345:31387652,4812305:16199846 +) +) +] +[1,18345:6630773,45706769:25952256,40108032,0 +(1,18345:6630773,45706769:25952256,40108032,0 +(1,18345:6630773,45706769:0,0,0 +g1,18345:6630773,45706769 +) +[1,18345:6630773,45706769:25952256,40108032,0 +v1,18305:6630773,6254097:0,393216,0 +(1,18315:6630773,10703910:25952256,4843029,196608 +g1,18315:6630773,10703910 +g1,18315:6630773,10703910 +g1,18315:6434165,10703910 +(1,18315:6434165,10703910:0,4843029,196608 +r1,18345:32779637,10703910:26345472,5039637,196608 +k1,18315:6434165,10703910:-26345472 +) +(1,18315:6434165,10703910:26345472,4843029,196608 +[1,18315:6630773,10703910:25952256,4646421,0 +(1,18307:6630773,6481928:25952256,424439,112852 +(1,18306:6630773,6481928:0,0,0 +g1,18306:6630773,6481928 +g1,18306:6630773,6481928 +g1,18306:6303093,6481928 +(1,18306:6303093,6481928:0,0,0 +) +g1,18306:6630773,6481928 +) +k1,18307:6630773,6481928:0 +g1,18307:10614221,6481928 +g1,18307:11278129,6481928 +k1,18307:11278129,6481928:0 +h1,18307:13601807,6481928:0,0,0 +k1,18307:32583029,6481928:18981222 +g1,18307:32583029,6481928 +) +(1,18308:6630773,7166783:25952256,424439,112852 +h1,18308:6630773,7166783:0,0,0 +g1,18308:6962727,7166783 +g1,18308:7294681,7166783 +g1,18308:7626635,7166783 +g1,18308:7958589,7166783 +g1,18308:8290543,7166783 +g1,18308:8622497,7166783 +g1,18308:8954451,7166783 +g1,18308:11610083,7166783 +g1,18308:12273991,7166783 +g1,18308:14265715,7166783 +g1,18308:14929623,7166783 +g1,18308:16921347,7166783 +g1,18308:17585255,7166783 +g1,18308:18249163,7166783 +g1,18308:20240887,7166783 +h1,18308:20572841,7166783:0,0,0 +k1,18308:32583029,7166783:12010188 +g1,18308:32583029,7166783 +) +(1,18309:6630773,7851638:25952256,424439,112852 +h1,18309:6630773,7851638:0,0,0 +g1,18309:6962727,7851638 +g1,18309:7294681,7851638 +g1,18309:11610082,7851638 +h1,18309:11942036,7851638:0,0,0 +k1,18309:32583028,7851638:20640992 +g1,18309:32583028,7851638 +) +(1,18310:6630773,8536493:25952256,424439,112852 +h1,18310:6630773,8536493:0,0,0 +g1,18310:6962727,8536493 +g1,18310:7294681,8536493 +g1,18310:9618359,8536493 +g1,18310:10282267,8536493 +g1,18310:12937899,8536493 +g1,18310:17253300,8536493 +g1,18310:19576978,8536493 +k1,18310:19576978,8536493:0 +h1,18310:22564563,8536493:0,0,0 +k1,18310:32583029,8536493:10018466 +g1,18310:32583029,8536493 +) +(1,18311:6630773,9221348:25952256,431045,112852 +h1,18311:6630773,9221348:0,0,0 +g1,18311:6962727,9221348 +g1,18311:7294681,9221348 +g1,18311:7626635,9221348 +g1,18311:7958589,9221348 +g1,18311:8290543,9221348 +g1,18311:8622497,9221348 +g1,18311:8954451,9221348 +g1,18311:9618359,9221348 +g1,18311:10282267,9221348 +g1,18311:12273991,9221348 +g1,18311:13601807,9221348 +g1,18311:19908932,9221348 +g1,18311:21236748,9221348 +k1,18311:21236748,9221348:0 +h1,18311:24224333,9221348:0,0,0 +k1,18311:32583029,9221348:8358696 +g1,18311:32583029,9221348 +) +(1,18312:6630773,9906203:25952256,424439,86428 +h1,18312:6630773,9906203:0,0,0 +g1,18312:6962727,9906203 +g1,18312:7294681,9906203 +g1,18312:7626635,9906203 +g1,18312:7958589,9906203 +g1,18312:8290543,9906203 +g1,18312:8622497,9906203 +g1,18312:8954451,9906203 +g1,18312:10946175,9906203 +g1,18312:11610083,9906203 +g1,18312:13933761,9906203 +g1,18312:15925485,9906203 +g1,18312:17253301,9906203 +g1,18312:18913071,9906203 +k1,18312:18913071,9906203:0 +h1,18312:21236749,9906203:0,0,0 +k1,18312:32583029,9906203:11346280 +g1,18312:32583029,9906203 +) +(1,18313:6630773,10591058:25952256,424439,112852 +h1,18313:6630773,10591058:0,0,0 +g1,18313:6962727,10591058 +g1,18313:7294681,10591058 +g1,18313:7626635,10591058 +g1,18313:7958589,10591058 +g1,18313:8290543,10591058 +g1,18313:8622497,10591058 +g1,18313:8954451,10591058 +g1,18313:11942036,10591058 +g1,18313:12605944,10591058 +g1,18313:15593529,10591058 +g1,18313:17253299,10591058 +g1,18313:19245023,10591058 +g1,18313:21236747,10591058 +g1,18313:22232609,10591058 +h1,18313:25552148,10591058:0,0,0 +k1,18313:32583029,10591058:7030881 +g1,18313:32583029,10591058 +) +] +) +g1,18315:32583029,10703910 +g1,18315:6630773,10703910 +g1,18315:6630773,10703910 +g1,18315:32583029,10703910 +g1,18315:32583029,10703910 +) +h1,18315:6630773,10900518:0,0,0 +(1,18318:6630773,20049720:25952256,9083666,0 +k1,18318:10523651,20049720:3892878 +h1,18317:10523651,20049720:0,0,0 +(1,18317:10523651,20049720:18166500,9083666,0 +(1,18317:10523651,20049720:18167376,9083688,0 +(1,18317:10523651,20049720:18167376,9083688,0 +(1,18317:10523651,20049720:0,9083688,0 +(1,18317:10523651,20049720:0,14208860,0 +(1,18317:10523651,20049720:28417720,14208860,0 +) +k1,18317:10523651,20049720:-28417720 +) +) +g1,18317:28691027,20049720 +) +) +) +g1,18318:28690151,20049720 +k1,18318:32583029,20049720:3892878 +) +(1,18325:6630773,20914800:25952256,505283,126483 +h1,18324:6630773,20914800:983040,0,0 +k1,18324:8584032,20914800:152330 +k1,18324:11885368,20914800:152331 +k1,18324:12653736,20914800:152330 +k1,18324:13394579,20914800:152330 +k1,18324:15244948,20914800:152331 +k1,18324:15753138,20914800:152330 +k1,18324:17585811,20914800:152330 +k1,18324:18269638,20914800:152330 +k1,18324:21434659,20914800:152331 +k1,18324:23442969,20914800:152330 +k1,18324:23951159,20914800:152330 +k1,18324:25783833,20914800:152331 +k1,18324:27974333,20914800:152330 +k1,18324:28742701,20914800:152330 +k1,18324:29250892,20914800:152331 +k1,18324:31914562,20914800:152330 +k1,18324:32583029,20914800:0 +) +(1,18325:6630773,21779880:25952256,505283,134348 +k1,18324:7135702,21779880:149069 +k1,18324:8934968,21779880:149069 +k1,18324:11770358,21779880:149069 +k1,18324:15105787,21779880:149069 +k1,18324:18255750,21779880:149069 +k1,18324:18760679,21779880:149069 +k1,18324:21421744,21779880:149070 +k1,18324:23251156,21779880:149069 +k1,18324:24504507,21779880:149069 +k1,18324:25401342,21779880:149069 +k1,18324:27755698,21779880:149069 +k1,18324:28590929,21779880:149069 +k1,18324:29510701,21779880:149069 +k1,18324:32583029,21779880:0 +) +(1,18325:6630773,22644960:25952256,505283,126483 +k1,18324:7470781,22644960:188580 +k1,18324:8407126,22644960:188579 +k1,18324:11181101,22644960:188580 +k1,18324:12021109,22644960:188580 +k1,18324:12980392,22644960:188580 +k1,18324:16095808,22644960:188579 +k1,18324:16912223,22644960:188580 +k1,18324:18802773,22644960:188580 +k1,18324:21119962,22644960:188580 +k1,18324:22327626,22644960:188579 +k1,18324:24526851,22644960:188580 +k1,18324:25366859,22644960:188580 +k1,18324:26303205,22644960:188580 +k1,18324:28794064,22644960:188579 +k1,18324:29797912,22644960:188580 +k1,18324:31052763,22644960:188580 +k1,18324:32583029,22644960:0 +) +(1,18325:6630773,23510040:25952256,513147,134348 +k1,18324:7474877,23510040:192676 +k1,18324:8415318,23510040:192675 +k1,18324:10646164,23510040:192676 +k1,18324:11525002,23510040:192676 +k1,18324:14559319,23510040:192676 +k1,18324:15641973,23510040:192675 +k1,18324:18754933,23510040:192676 +k1,18324:19563647,23510040:192676 +k1,18324:20775408,23510040:192676 +k1,18324:22357446,23510040:192675 +k1,18324:24426418,23510040:192676 +k1,18324:26824381,23510040:192676 +k1,18324:27703219,23510040:192676 +k1,18324:28666597,23510040:192675 +k1,18324:31931601,23510040:192676 +k1,18324:32583029,23510040:0 +) +(1,18325:6630773,24375120:25952256,513147,126483 +k1,18324:10089484,24375120:177979 +(1,18324:10089484,24375120:0,452978,115847 +r1,18345:11502885,24375120:1413401,568825,115847 +k1,18324:10089484,24375120:-1413401 +) +(1,18324:10089484,24375120:1413401,452978,115847 +k1,18324:10089484,24375120:3277 +h1,18324:11499608,24375120:0,411205,112570 +) +k1,18324:11854535,24375120:177980 +k1,18324:13412702,24375120:177979 +k1,18324:14694963,24375120:177979 +k1,18324:16158758,24375120:177979 +k1,18324:17084504,24375120:177980 +k1,18324:20471126,24375120:177979 +k1,18324:22216726,24375120:177979 +k1,18324:24091432,24375120:177979 +k1,18324:27284723,24375120:177980 +k1,18324:29503493,24375120:177979 +k1,18325:32583029,24375120:0 +) +(1,18325:6630773,25240200:25952256,505283,134348 +k1,18324:9011398,25240200:257258 +(1,18324:9011398,25240200:0,414482,122846 +r1,18345:10073087,25240200:1061689,537328,122846 +k1,18324:9011398,25240200:-1061689 +) +(1,18324:9011398,25240200:1061689,414482,122846 +k1,18324:9011398,25240200:3277 +h1,18324:10069810,25240200:0,411205,112570 +) +k1,18324:10330345,25240200:257258 +k1,18324:11579162,25240200:257257 +k1,18324:14138700,25240200:257258 +k1,18324:16685131,25240200:257258 +k1,18324:17961474,25240200:257258 +k1,18324:20318506,25240200:257258 +k1,18324:24829706,25240200:257258 +k1,18324:26143403,25240200:257257 +k1,18324:28972949,25240200:257258 +k1,18324:29991735,25240200:257258 +k1,18325:32583029,25240200:0 +) +(1,18325:6630773,26105280:25952256,505283,126483 +(1,18324:6630773,26105280:0,452978,115847 +r1,18345:8044174,26105280:1413401,568825,115847 +k1,18324:6630773,26105280:-1413401 +) +(1,18324:6630773,26105280:1413401,452978,115847 +k1,18324:6630773,26105280:3277 +h1,18324:8040897,26105280:0,411205,112570 +) +g1,18324:8243403,26105280 +g1,18324:9204160,26105280 +(1,18324:9204160,26105280:0,452978,115847 +r1,18345:10265849,26105280:1061689,568825,115847 +k1,18324:9204160,26105280:-1061689 +) +(1,18324:9204160,26105280:1061689,452978,115847 +k1,18324:9204160,26105280:3277 +h1,18324:10262572,26105280:0,411205,112570 +) +g1,18324:10465078,26105280 +g1,18324:12674296,26105280 +g1,18324:13892610,26105280 +g1,18324:15191533,26105280 +g1,18324:16042190,26105280 +(1,18324:16042190,26105280:0,452978,115847 +r1,18345:17807303,26105280:1765113,568825,115847 +k1,18324:16042190,26105280:-1765113 +) +(1,18324:16042190,26105280:1765113,452978,115847 +k1,18324:16042190,26105280:3277 +h1,18324:17804026,26105280:0,411205,112570 +) +k1,18325:32583029,26105280:14723298 +g1,18325:32583029,26105280 +) +v1,18327:6630773,26790135:0,393216,0 +(1,18333:6630773,28500528:25952256,2103609,196608 +g1,18333:6630773,28500528 +g1,18333:6630773,28500528 +g1,18333:6434165,28500528 +(1,18333:6434165,28500528:0,2103609,196608 +r1,18345:32779637,28500528:26345472,2300217,196608 +k1,18333:6434165,28500528:-26345472 +) +(1,18333:6434165,28500528:26345472,2103609,196608 +[1,18333:6630773,28500528:25952256,1907001,0 +(1,18329:6630773,27017966:25952256,424439,112852 +(1,18328:6630773,27017966:0,0,0 +g1,18328:6630773,27017966 +g1,18328:6630773,27017966 +g1,18328:6303093,27017966 +(1,18328:6303093,27017966:0,0,0 +) +g1,18328:6630773,27017966 +) +k1,18329:6630773,27017966:0 +g1,18329:10614221,27017966 +g1,18329:11278129,27017966 +k1,18329:11278129,27017966:0 +h1,18329:13601807,27017966:0,0,0 +k1,18329:32583029,27017966:18981222 +g1,18329:32583029,27017966 +) +(1,18330:6630773,27702821:25952256,424439,112852 +h1,18330:6630773,27702821:0,0,0 +g1,18330:6962727,27702821 +g1,18330:7294681,27702821 +g1,18330:7626635,27702821 +g1,18330:7958589,27702821 +g1,18330:8290543,27702821 +g1,18330:8622497,27702821 +g1,18330:8954451,27702821 +g1,18330:11610083,27702821 +g1,18330:12273991,27702821 +g1,18330:14265715,27702821 +g1,18330:14929623,27702821 +g1,18330:16589393,27702821 +g1,18330:17253301,27702821 +g1,18330:18913071,27702821 +g1,18330:19576979,27702821 +g1,18330:20240887,27702821 +g1,18330:22232611,27702821 +h1,18330:22564565,27702821:0,0,0 +k1,18330:32583029,27702821:10018464 +g1,18330:32583029,27702821 +) +(1,18331:6630773,28387676:25952256,424439,112852 +h1,18331:6630773,28387676:0,0,0 +g1,18331:6962727,28387676 +g1,18331:7294681,28387676 +k1,18331:7294681,28387676:0 +h1,18331:11278128,28387676:0,0,0 +k1,18331:32583028,28387676:21304900 +g1,18331:32583028,28387676 +) +] +) +g1,18333:32583029,28500528 +g1,18333:6630773,28500528 +g1,18333:6630773,28500528 +g1,18333:32583029,28500528 +g1,18333:32583029,28500528 +) +h1,18333:6630773,28697136:0,0,0 +(1,18336:6630773,37846338:25952256,9083666,0 +k1,18336:10523651,37846338:3892878 +h1,18335:10523651,37846338:0,0,0 +(1,18335:10523651,37846338:18166500,9083666,0 +(1,18335:10523651,37846338:18167376,9083688,0 +(1,18335:10523651,37846338:18167376,9083688,0 +(1,18335:10523651,37846338:0,9083688,0 +(1,18335:10523651,37846338:0,14208860,0 +(1,18335:10523651,37846338:28417720,14208860,0 +) +k1,18335:10523651,37846338:-28417720 +) +) +g1,18335:28691027,37846338 +) +) +) +g1,18336:28690151,37846338 +k1,18336:32583029,37846338:3892878 +) +(1,18344:6630773,38711418:25952256,513147,134348 +h1,18342:6630773,38711418:983040,0,0 +k1,18342:9264828,38711418:175800 +k1,18342:10099921,38711418:175801 +k1,18342:11294806,38711418:175800 +k1,18342:14339772,38711418:175800 +k1,18342:15174865,38711418:175801 +k1,18342:16369750,38711418:175800 +k1,18342:19448140,38711418:175800 +k1,18342:23329347,38711418:175801 +k1,18342:25360471,38711418:175800 +k1,18342:26067768,38711418:175800 +k1,18342:30445082,38711418:175801 +k1,18342:31236920,38711418:175800 +k1,18344:32583029,38711418:0 +) +(1,18344:6630773,39576498:25952256,513147,134348 +k1,18342:8230834,39576498:168755 +k1,18342:11599057,39576498:168755 +k1,18342:12959257,39576498:168755 +k1,18342:13744050,39576498:168755 +k1,18342:16578810,39576498:168755 +k1,18342:18444292,39576498:168755 +k1,18342:21638845,39576498:168756 +k1,18342:23855600,39576498:168755 +k1,18342:27426984,39576498:168755 +k1,18342:28880245,39576498:168755 +k1,18342:30153282,39576498:168755 +k1,18342:31069803,39576498:168755 +k1,18342:32583029,39576498:0 +) +(1,18344:6630773,40441578:25952256,513147,134348 +k1,18342:7475805,40441578:193604 +k1,18342:9931712,40441578:193604 +k1,18342:11633955,40441578:193604 +k1,18342:15175794,40441578:193605 +k1,18342:17984285,40441578:193604 +k1,18342:19567252,40441578:193604 +k1,18342:22050684,40441578:193604 +k1,18342:22930450,40441578:193604 +k1,18342:24402662,40441578:193605 +k1,18342:25282428,40441578:193604 +k1,18342:28147279,40441578:193604 +k1,18342:31478747,40441578:193604 +k1,18342:32583029,40441578:0 +) +(1,18344:6630773,41306658:25952256,513147,134348 +k1,18342:9121560,41306658:261908 +k1,18342:11393457,41306658:261908 +k1,18342:12011225,41306658:261908 +k1,18342:14146152,41306658:261908 +(1,18342:14146152,41306658:0,452978,122846 +r1,18345:15559553,41306658:1413401,575824,122846 +k1,18342:14146152,41306658:-1413401 +) +(1,18342:14146152,41306658:1413401,452978,122846 +k1,18342:14146152,41306658:3277 +h1,18342:15556276,41306658:0,411205,112570 +) +k1,18342:15821461,41306658:261908 +k1,18342:17360666,41306658:261908 +k1,18342:19755771,41306658:261908 +k1,18342:22882913,41306658:261908 +k1,18342:24336266,41306658:261908 +k1,18342:25979018,41306658:261908 +k1,18342:27737113,41306658:261908 +k1,18342:29103303,41306658:261908 +k1,18342:31326048,41306658:261908 +k1,18342:32583029,41306658:0 +) +(1,18344:6630773,42171738:25952256,505283,134348 +k1,18342:10506280,42171738:284790 +k1,18342:13624192,42171738:284791 +k1,18342:15905864,42171738:284790 +k1,18342:19835111,42171738:284790 +k1,18342:21311347,42171738:284791 +k1,18342:23062833,42171738:284790 +k1,18342:26781054,42171738:284790 +k1,18342:28349040,42171738:284791 +k1,18342:31849026,42171738:284790 +k1,18344:32583029,42171738:0 +) +(1,18344:6630773,43036818:25952256,513147,126483 +k1,18342:9441886,43036818:234237 +k1,18342:12545288,43036818:234236 +k1,18342:13395563,43036818:234237 +k1,18342:13985659,43036818:234236 +k1,18342:16163694,43036818:234237 +k1,18342:17502213,43036818:234237 +k1,18342:18484215,43036818:234236 +k1,18342:21553539,43036818:234237 +k1,18342:22979220,43036818:234236 +k1,18342:24496652,43036818:234237 +k1,18342:27656415,43036818:234236 +k1,18342:30145746,43036818:234237 +k1,18342:32583029,43036818:0 +) +(1,18344:6630773,43901898:25952256,513147,134348 +k1,18342:9209991,43901898:217300 +k1,18342:10618736,43901898:217300 +k1,18342:13167151,43901898:217299 +k1,18342:13597425,43901898:217282 +k1,18342:16484006,43901898:217300 +k1,18342:18569737,43901898:217300 +k1,18342:20117417,43901898:217299 +k1,18342:20986145,43901898:217300 +k1,18342:22295930,43901898:217300 +k1,18342:23532315,43901898:217300 +k1,18342:26652205,43901898:217300 +k1,18342:27528796,43901898:217299 +k1,18342:30465185,43901898:217300 +k1,18342:31333913,43901898:217300 +k1,18344:32583029,43901898:0 +) +(1,18344:6630773,44766978:25952256,513147,126483 +k1,18342:8678058,44766978:166402 +k1,18342:11606802,44766978:166401 +k1,18342:13489592,44766978:166402 +k1,18342:14315286,44766978:166402 +k1,18342:15871051,44766978:166402 +k1,18342:20560747,44766978:166401 +k1,18342:22193845,44766978:166402 +k1,18342:24484924,44766978:166402 +k1,18342:25842771,44766978:166402 +k1,18342:28869163,44766978:166401 +k1,18342:31563944,44766978:166402 +k1,18342:32583029,44766978:0 +) +] +(1,18345:32583029,45706769:0,0,0 +g1,18345:32583029,45706769 +) +) +] +(1,18345:6630773,47279633:25952256,0,0 +h1,18345:6630773,47279633:25952256,0,0 +) +] +(1,18345:4262630,4025873:0,0,0 +[1,18345:-473656,4025873:0,0,0 +(1,18345:-473656,-710413:0,0,0 +(1,18345:-473656,-710413:0,0,0 +g1,18345:-473656,-710413 +) +g1,18345:-473656,-710413 ) ] ) ] !19289 -}300 -Input:3046:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3047:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3048:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3049:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}301 Input:3050:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3051:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{301 -[1,18404:4262630,47279633:28320399,43253760,0 -(1,18404:4262630,4025873:0,0,0 -[1,18404:-473656,4025873:0,0,0 -(1,18404:-473656,-710413:0,0,0 -(1,18404:-473656,-644877:0,0,0 -k1,18404:-473656,-644877:-65536 +{302 +[1,18402:4262630,47279633:28320399,43253760,0 +(1,18402:4262630,4025873:0,0,0 +[1,18402:-473656,4025873:0,0,0 +(1,18402:-473656,-710413:0,0,0 +(1,18402:-473656,-644877:0,0,0 +k1,18402:-473656,-644877:-65536 ) -(1,18404:-473656,4736287:0,0,0 -k1,18404:-473656,4736287:5209943 +(1,18402:-473656,4736287:0,0,0 +k1,18402:-473656,4736287:5209943 ) -g1,18404:-473656,-710413 +g1,18402:-473656,-710413 ) ] ) -[1,18404:6630773,47279633:25952256,43253760,0 -[1,18404:6630773,4812305:25952256,786432,0 -(1,18404:6630773,4812305:25952256,513147,126483 -(1,18404:6630773,4812305:25952256,513147,126483 -g1,18404:3078558,4812305 -[1,18404:3078558,4812305:0,0,0 -(1,18404:3078558,2439708:0,1703936,0 -k1,18404:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18404:2537886,2439708:1179648,16384,0 +[1,18402:6630773,47279633:25952256,43253760,0 +[1,18402:6630773,4812305:25952256,786432,0 +(1,18402:6630773,4812305:25952256,513147,126483 +(1,18402:6630773,4812305:25952256,513147,126483 +g1,18402:3078558,4812305 +[1,18402:3078558,4812305:0,0,0 +(1,18402:3078558,2439708:0,1703936,0 +k1,18402:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18402:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18404:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18402:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18404:3078558,4812305:0,0,0 -(1,18404:3078558,2439708:0,1703936,0 -g1,18404:29030814,2439708 -g1,18404:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18404:36151628,1915420:16384,1179648,0 +[1,18402:3078558,4812305:0,0,0 +(1,18402:3078558,2439708:0,1703936,0 +g1,18402:29030814,2439708 +g1,18402:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18402:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18404:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18402:37855564,2439708:1179648,16384,0 ) ) -k1,18404:3078556,2439708:-34777008 +k1,18402:3078556,2439708:-34777008 ) ] -[1,18404:3078558,4812305:0,0,0 -(1,18404:3078558,49800853:0,16384,2228224 -k1,18404:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18404:2537886,49800853:1179648,16384,0 +[1,18402:3078558,4812305:0,0,0 +(1,18402:3078558,49800853:0,16384,2228224 +k1,18402:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18402:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18404:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18402:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18404:3078558,4812305:0,0,0 -(1,18404:3078558,49800853:0,16384,2228224 -g1,18404:29030814,49800853 -g1,18404:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18404:36151628,51504789:16384,1179648,0 +[1,18402:3078558,4812305:0,0,0 +(1,18402:3078558,49800853:0,16384,2228224 +g1,18402:29030814,49800853 +g1,18402:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18402:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18404:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18402:37855564,49800853:1179648,16384,0 ) ) -k1,18404:3078556,49800853:-34777008 -) -] -g1,18404:6630773,4812305 -k1,18404:21386205,4812305:13560055 -g1,18404:21999622,4812305 -g1,18404:25611966,4812305 -g1,18404:28956923,4812305 -g1,18404:29772190,4812305 -) -) -] -[1,18404:6630773,45706769:25952256,40108032,0 -(1,18404:6630773,45706769:25952256,40108032,0 -(1,18404:6630773,45706769:0,0,0 -g1,18404:6630773,45706769 -) -[1,18404:6630773,45706769:25952256,40108032,0 -(1,18346:6630773,6254097:25952256,513147,126483 -k1,18344:9573505,6254097:180389 -k1,18344:12623061,6254097:180390 -k1,18344:15432099,6254097:180389 -k1,18344:15825462,6254097:180371 -k1,18344:19078179,6254097:180389 -k1,18344:20950708,6254097:180389 -k1,18344:21790389,6254097:180389 -k1,18344:23609834,6254097:180390 -k1,18344:25096356,6254097:180389 -k1,18344:27309672,6254097:180389 -k1,18344:28106100,6254097:180390 -k1,18344:30895477,6254097:180389 -k1,18344:32583029,6254097:0 -) -(1,18346:6630773,7119177:25952256,505283,126483 -g1,18344:8272449,7119177 -g1,18344:10390572,7119177 -g1,18344:10802793,7119177 -g1,18344:13671303,7119177 -g1,18344:15509587,7119177 -g1,18344:16324854,7119177 -g1,18344:18558321,7119177 -k1,18346:32583029,7119177:14024708 -g1,18346:32583029,7119177 -) -(1,18347:6630773,9235995:25952256,555811,147783 -(1,18347:6630773,9235995:2450326,534184,12975 -g1,18347:6630773,9235995 -g1,18347:9081099,9235995 -) -g1,18347:11085911,9235995 -g1,18347:12089399,9235995 -g1,18347:12811737,9235995 -k1,18347:32583028,9235995:17155880 -g1,18347:32583028,9235995 -) -(1,18350:6630773,10494291:25952256,505283,134348 -(1,18349:6630773,10494291:0,452978,122846 -r1,18404:8044174,10494291:1413401,575824,122846 -k1,18349:6630773,10494291:-1413401 -) -(1,18349:6630773,10494291:1413401,452978,122846 -k1,18349:6630773,10494291:3277 -h1,18349:8040897,10494291:0,411205,112570 -) -k1,18349:8250139,10494291:205965 -k1,18349:9733401,10494291:205965 -k1,18349:12229193,10494291:205964 -k1,18349:13626603,10494291:205965 -k1,18349:15341207,10494291:205965 -k1,18349:19474745,10494291:205965 -k1,18349:21903691,10494291:205965 -k1,18349:22795818,10494291:205965 -k1,18349:24703752,10494291:205964 -k1,18349:25324553,10494291:205958 -k1,18349:27994016,10494291:205965 -k1,18349:31391584,10494291:205965 -k1,18349:32583029,10494291:0 -) -(1,18350:6630773,11359371:25952256,513147,134348 -k1,18349:9630238,11359371:214840 -k1,18349:10792729,11359371:214840 -k1,18349:12026654,11359371:214840 -(1,18349:12026654,11359371:0,452978,122846 -r1,18404:13440055,11359371:1413401,575824,122846 -k1,18349:12026654,11359371:-1413401 -) -(1,18349:12026654,11359371:1413401,452978,122846 -k1,18349:12026654,11359371:3277 -h1,18349:13436778,11359371:0,411205,112570 -) -k1,18349:13654896,11359371:214841 -k1,18349:15424905,11359371:214840 -k1,18349:16631305,11359371:214840 -k1,18349:19803785,11359371:214840 -k1,18349:20836514,11359371:214840 -k1,18349:23080349,11359371:214840 -k1,18349:23651049,11359371:214840 -(1,18349:23651049,11359371:0,452978,122846 -r1,18404:25064450,11359371:1413401,575824,122846 -k1,18349:23651049,11359371:-1413401 -) -(1,18349:23651049,11359371:1413401,452978,122846 -k1,18349:23651049,11359371:3277 -h1,18349:25061173,11359371:0,411205,112570 -) -k1,18349:25279290,11359371:214840 -k1,18349:26771428,11359371:214841 -k1,18349:28945794,11359371:214840 -k1,18349:30972049,11359371:214840 -k1,18349:31873051,11359371:214840 -(1,18349:31873051,11359371:0,435480,115847 -r1,18404:32583029,11359371:709978,551327,115847 -k1,18349:31873051,11359371:-709978 -) -(1,18349:31873051,11359371:709978,435480,115847 -k1,18349:31873051,11359371:3277 -h1,18349:32579752,11359371:0,411205,112570 -) -k1,18349:32583029,11359371:0 -) -(1,18350:6630773,12224451:25952256,505283,7863 -g1,18349:7361499,12224451 -g1,18349:9073954,12224451 -k1,18350:32583030,12224451:21588216 -g1,18350:32583030,12224451 -) -v1,18352:6630773,12909306:0,393216,0 -(1,18358:6630773,14619699:25952256,2103609,196608 -g1,18358:6630773,14619699 -g1,18358:6630773,14619699 -g1,18358:6434165,14619699 -(1,18358:6434165,14619699:0,2103609,196608 -r1,18404:32779637,14619699:26345472,2300217,196608 -k1,18358:6434165,14619699:-26345472 -) -(1,18358:6434165,14619699:26345472,2103609,196608 -[1,18358:6630773,14619699:25952256,1907001,0 -(1,18354:6630773,13137137:25952256,424439,112852 -(1,18353:6630773,13137137:0,0,0 -g1,18353:6630773,13137137 -g1,18353:6630773,13137137 -g1,18353:6303093,13137137 -(1,18353:6303093,13137137:0,0,0 -) -g1,18353:6630773,13137137 -) -g1,18354:7626635,13137137 -g1,18354:8622497,13137137 -g1,18354:12605945,13137137 -g1,18354:13269853,13137137 -k1,18354:13269853,13137137:0 -h1,18354:15593531,13137137:0,0,0 -k1,18354:32583029,13137137:16989498 -g1,18354:32583029,13137137 -) -(1,18355:6630773,13821992:25952256,424439,112852 -h1,18355:6630773,13821992:0,0,0 -g1,18355:6962727,13821992 -g1,18355:7294681,13821992 -g1,18355:7626635,13821992 -g1,18355:7958589,13821992 -g1,18355:8290543,13821992 -g1,18355:8622497,13821992 -g1,18355:8954451,13821992 -g1,18355:9286405,13821992 -g1,18355:9618359,13821992 -g1,18355:9950313,13821992 -g1,18355:10282267,13821992 -g1,18355:10614221,13821992 -g1,18355:10946175,13821992 -g1,18355:13601807,13821992 -g1,18355:14265715,13821992 -g1,18355:16257439,13821992 -g1,18355:16921347,13821992 -g1,18355:18913071,13821992 -g1,18355:19576979,13821992 -g1,18355:20240887,13821992 -g1,18355:22232611,13821992 -h1,18355:22564565,13821992:0,0,0 -k1,18355:32583029,13821992:10018464 -g1,18355:32583029,13821992 -) -(1,18356:6630773,14506847:25952256,424439,112852 -h1,18356:6630773,14506847:0,0,0 -g1,18356:6962727,14506847 -g1,18356:7294681,14506847 -g1,18356:7626635,14506847 -g1,18356:7958589,14506847 -g1,18356:8290543,14506847 -g1,18356:8622497,14506847 -g1,18356:8954451,14506847 -k1,18356:8954451,14506847:0 -h1,18356:12937898,14506847:0,0,0 -k1,18356:32583030,14506847:19645132 -g1,18356:32583030,14506847 -) -] -) -g1,18358:32583029,14619699 -g1,18358:6630773,14619699 -g1,18358:6630773,14619699 -g1,18358:32583029,14619699 -g1,18358:32583029,14619699 -) -h1,18358:6630773,14816307:0,0,0 -(1,18362:6630773,15681387:25952256,513147,126483 -h1,18361:6630773,15681387:983040,0,0 -k1,18361:8511219,15681387:269571 -k1,18361:9799875,15681387:269571 -k1,18361:12823925,15681387:269572 -k1,18361:15372183,15681387:269571 -k1,18361:18388368,15681387:269571 -(1,18361:18388368,15681387:0,414482,115847 -r1,18404:18746634,15681387:358266,530329,115847 -k1,18361:18388368,15681387:-358266 -) -(1,18361:18388368,15681387:358266,414482,115847 -k1,18361:18388368,15681387:3277 -h1,18361:18743357,15681387:0,411205,112570 -) -k1,18361:19016205,15681387:269571 -k1,18361:20492950,15681387:269572 -k1,18361:22275747,15681387:269571 -k1,18361:23196746,15681387:269571 -k1,18361:26402985,15681387:269571 -k1,18361:27691642,15681387:269572 -k1,18361:29568811,15681387:269571 -k1,18361:31406003,15681387:269571 -k1,18362:32583029,15681387:0 -) -(1,18362:6630773,16546467:25952256,505283,134348 -g1,18361:10060272,16546467 -g1,18361:10674344,16546467 -g1,18361:13337071,16546467 -g1,18361:15372619,16546467 -g1,18361:16254733,16546467 -g1,18361:19213028,16546467 -g1,18361:21702085,16546467 -g1,18361:23005596,16546467 -g1,18361:24490641,16546467 -g1,18361:25437636,16546467 -g1,18361:28769486,16546467 -g1,18361:30362666,16546467 -(1,18361:30362666,16546467:0,414482,115847 -r1,18404:30720932,16546467:358266,530329,115847 -k1,18361:30362666,16546467:-358266 -) -(1,18361:30362666,16546467:358266,414482,115847 -k1,18361:30362666,16546467:3277 -h1,18361:30717655,16546467:0,411205,112570 -) -k1,18362:32583029,16546467:1809669 -g1,18362:32583029,16546467 -) -v1,18364:6630773,17231322:0,393216,0 -(1,18368:6630773,17578611:25952256,740505,196608 -g1,18368:6630773,17578611 -g1,18368:6630773,17578611 -g1,18368:6434165,17578611 -(1,18368:6434165,17578611:0,740505,196608 -r1,18404:32779637,17578611:26345472,937113,196608 -k1,18368:6434165,17578611:-26345472 -) -(1,18368:6434165,17578611:26345472,740505,196608 -[1,18368:6630773,17578611:25952256,543897,0 -(1,18366:6630773,17465759:25952256,431045,112852 -(1,18365:6630773,17465759:0,0,0 -g1,18365:6630773,17465759 -g1,18365:6630773,17465759 -g1,18365:6303093,17465759 -(1,18365:6303093,17465759:0,0,0 -) -g1,18365:6630773,17465759 -) -g1,18366:7626635,17465759 -g1,18366:8290543,17465759 -g1,18366:13933760,17465759 -g1,18366:14597668,17465759 -g1,18366:17253300,17465759 -g1,18366:19576978,17465759 -g1,18366:20240886,17465759 -g1,18366:22232610,17465759 -g1,18366:24888242,17465759 -g1,18366:25552150,17465759 -g1,18366:26216058,17465759 -g1,18366:26879966,17465759 -h1,18366:27543874,17465759:0,0,0 -k1,18366:32583029,17465759:5039155 -g1,18366:32583029,17465759 -) -] -) -g1,18368:32583029,17578611 -g1,18368:6630773,17578611 -g1,18368:6630773,17578611 -g1,18368:32583029,17578611 -g1,18368:32583029,17578611 -) -h1,18368:6630773,17775219:0,0,0 -(1,18371:6630773,26924421:25952256,9083666,0 -k1,18371:10523651,26924421:3892878 -h1,18370:10523651,26924421:0,0,0 -(1,18370:10523651,26924421:18166500,9083666,0 -(1,18370:10523651,26924421:18167376,9083688,0 -(1,18370:10523651,26924421:18167376,9083688,0 -(1,18370:10523651,26924421:0,9083688,0 -(1,18370:10523651,26924421:0,14208860,0 -(1,18370:10523651,26924421:28417720,14208860,0 -) -k1,18370:10523651,26924421:-28417720 -) -) -g1,18370:28691027,26924421 -) -) -) -g1,18371:28690151,26924421 -k1,18371:32583029,26924421:3892878 -) -(1,18378:6630773,27789501:25952256,505283,126483 -h1,18377:6630773,27789501:983040,0,0 -k1,18377:10041394,27789501:266859 -k1,18377:11585549,27789501:266858 -k1,18377:14721574,27789501:266859 -k1,18377:16492484,27789501:266859 -k1,18377:18724767,27789501:266858 -k1,18377:20148336,27789501:266859 -k1,18377:21176723,27789501:266859 -k1,18377:22773962,27789501:266858 -k1,18377:24434772,27789501:266859 -k1,18377:27448245,27789501:266859 -(1,18377:27448245,27789501:0,414482,115847 -r1,18404:27806511,27789501:358266,530329,115847 -k1,18377:27448245,27789501:-358266 -) -(1,18377:27448245,27789501:358266,414482,115847 -k1,18377:27448245,27789501:3277 -h1,18377:27803234,27789501:0,411205,112570 -) -k1,18377:28247039,27789501:266858 -k1,18377:31128785,27789501:266859 -k1,18378:32583029,27789501:0 -) -(1,18378:6630773,28654581:25952256,505283,134348 -k1,18377:9402891,28654581:192621 -k1,18377:10699794,28654581:192621 -k1,18377:11640181,28654581:192621 -k1,18377:13118619,28654581:192622 -k1,18377:15276665,28654581:192621 -k1,18377:16085324,28654581:192621 -k1,18377:16633805,28654581:192621 -k1,18377:18699445,28654581:192621 -k1,18377:22140030,28654581:192621 -k1,18377:23638785,28654581:192622 -k1,18377:27024320,28654581:192621 -k1,18377:31318184,28654581:192621 -k1,18377:32583029,28654581:0 -) -(1,18378:6630773,29519661:25952256,513147,126483 -k1,18377:7539102,29519661:249037 -k1,18377:11715711,29519661:249036 -k1,18377:14002918,29519661:249037 -k1,18377:14867993,29519661:249037 -k1,18377:15472890,29519661:249037 -k1,18377:16715452,29519661:249036 -k1,18377:18068771,29519661:249037 -k1,18377:19065574,29519661:249037 -k1,18377:21126026,29519661:249037 -k1,18377:21991100,29519661:249036 -k1,18377:22595997,29519661:249037 -k1,18377:25356374,29519661:249037 -k1,18377:26796856,29519661:249037 -k1,18377:29011317,29519661:249036 -k1,18377:29911782,29519661:249037 -k1,18377:32583029,29519661:0 -) -(1,18378:6630773,30384741:25952256,513147,126483 -k1,18377:8571731,30384741:159689 -k1,18377:10112264,30384741:159689 -k1,18377:12745283,30384741:159690 -k1,18377:16623485,30384741:159689 -k1,18377:17974619,30384741:159689 -k1,18377:20180342,30384741:159689 -k1,18377:24168645,30384741:159690 -k1,18377:27735551,30384741:159689 -k1,18377:28546668,30384741:159689 -k1,18377:29062217,30384741:159689 -k1,18377:30156450,30384741:159690 -k1,18377:30975431,30384741:159689 -k1,18377:32583029,30384741:0 -) -(1,18378:6630773,31249821:25952256,505283,134348 -k1,18377:8901871,31249821:227030 -k1,18377:12885425,31249821:227030 -k1,18377:14236397,31249821:227030 -k1,18377:17046856,31249821:227030 -k1,18377:17486850,31249821:227002 -k1,18377:18754592,31249821:227030 -k1,18377:20105564,31249821:227030 -k1,18377:23334143,31249821:227030 -k1,18377:24160827,31249821:227030 -k1,18377:26753051,31249821:227030 -k1,18377:30545895,31249821:227030 -k1,18377:31983375,31249821:227030 -k1,18377:32583029,31249821:0 -) -(1,18378:6630773,32114901:25952256,513147,134348 -g1,18377:9660502,32114901 -g1,18377:11431940,32114901 -g1,18377:12108926,32114901 -g1,18377:14999063,32114901 -g1,18377:16408742,32114901 -g1,18377:18180180,32114901 -g1,18377:18857166,32114901 -g1,18377:20069582,32114901 -g1,18377:22460990,32114901 -g1,18377:24136090,32114901 -g1,18377:24938250,32114901 -g1,18377:27343421,32114901 -k1,18378:32583029,32114901:2280658 -g1,18378:32583029,32114901 -) -v1,18380:6630773,32799756:0,393216,0 -(1,18386:6630773,34510149:25952256,2103609,196608 -g1,18386:6630773,34510149 -g1,18386:6630773,34510149 -g1,18386:6434165,34510149 -(1,18386:6434165,34510149:0,2103609,196608 -r1,18404:32779637,34510149:26345472,2300217,196608 -k1,18386:6434165,34510149:-26345472 -) -(1,18386:6434165,34510149:26345472,2103609,196608 -[1,18386:6630773,34510149:25952256,1907001,0 -(1,18382:6630773,33027587:25952256,424439,106246 -(1,18381:6630773,33027587:0,0,0 -g1,18381:6630773,33027587 -g1,18381:6630773,33027587 -g1,18381:6303093,33027587 -(1,18381:6303093,33027587:0,0,0 -) -g1,18381:6630773,33027587 -) -g1,18382:8290543,33027587 -g1,18382:9286405,33027587 -k1,18382:9286405,33027587:0 -h1,18382:10946175,33027587:0,0,0 -k1,18382:32583029,33027587:21636854 -g1,18382:32583029,33027587 -) -(1,18383:6630773,33712442:25952256,431045,112852 -h1,18383:6630773,33712442:0,0,0 -g1,18383:6962727,33712442 -g1,18383:7294681,33712442 -g1,18383:12937898,33712442 -g1,18383:13601806,33712442 -g1,18383:16257438,33712442 -g1,18383:18581116,33712442 -g1,18383:19245024,33712442 -g1,18383:21236748,33712442 -g1,18383:23892380,33712442 -g1,18383:24556288,33712442 -g1,18383:25220196,33712442 -g1,18383:25884104,33712442 -k1,18383:25884104,33712442:0 -h1,18383:26879966,33712442:0,0,0 -k1,18383:32583029,33712442:5703063 -g1,18383:32583029,33712442 -) -(1,18384:6630773,34397297:25952256,424439,112852 -h1,18384:6630773,34397297:0,0,0 -g1,18384:6962727,34397297 -g1,18384:7294681,34397297 -k1,18384:7294681,34397297:0 -h1,18384:12605944,34397297:0,0,0 -k1,18384:32583028,34397297:19977084 -g1,18384:32583028,34397297 -) -] -) -g1,18386:32583029,34510149 -g1,18386:6630773,34510149 -g1,18386:6630773,34510149 -g1,18386:32583029,34510149 -g1,18386:32583029,34510149 -) -h1,18386:6630773,34706757:0,0,0 -v1,18390:6630773,35391612:0,393216,0 -(1,18394:6630773,35725689:25952256,727293,196608 -g1,18394:6630773,35725689 -g1,18394:6630773,35725689 -g1,18394:6434165,35725689 -(1,18394:6434165,35725689:0,727293,196608 -r1,18404:32779637,35725689:26345472,923901,196608 -k1,18394:6434165,35725689:-26345472 -) -(1,18394:6434165,35725689:26345472,727293,196608 -[1,18394:6630773,35725689:25952256,530685,0 -(1,18392:6630773,35619443:25952256,424439,106246 -(1,18391:6630773,35619443:0,0,0 -g1,18391:6630773,35619443 -g1,18391:6630773,35619443 -g1,18391:6303093,35619443 -(1,18391:6303093,35619443:0,0,0 -) -g1,18391:6630773,35619443 -) -g1,18392:7626635,35619443 -g1,18392:8290543,35619443 -h1,18392:9618359,35619443:0,0,0 -k1,18392:32583029,35619443:22964670 -g1,18392:32583029,35619443 -) -] -) -g1,18394:32583029,35725689 -g1,18394:6630773,35725689 -g1,18394:6630773,35725689 -g1,18394:32583029,35725689 -g1,18394:32583029,35725689 +k1,18402:3078556,49800853:-34777008 +) +] +g1,18402:6630773,4812305 +k1,18402:21386205,4812305:13560055 +g1,18402:21999622,4812305 +g1,18402:25611966,4812305 +g1,18402:28956923,4812305 +g1,18402:29772190,4812305 +) +) +] +[1,18402:6630773,45706769:25952256,40108032,0 +(1,18402:6630773,45706769:25952256,40108032,0 +(1,18402:6630773,45706769:0,0,0 +g1,18402:6630773,45706769 +) +[1,18402:6630773,45706769:25952256,40108032,0 +(1,18344:6630773,6254097:25952256,513147,126483 +k1,18342:9573505,6254097:180389 +k1,18342:12623061,6254097:180390 +k1,18342:15432099,6254097:180389 +k1,18342:15825462,6254097:180371 +k1,18342:19078179,6254097:180389 +k1,18342:20950708,6254097:180389 +k1,18342:21790389,6254097:180389 +k1,18342:23609834,6254097:180390 +k1,18342:25096356,6254097:180389 +k1,18342:27309672,6254097:180389 +k1,18342:28106100,6254097:180390 +k1,18342:30895477,6254097:180389 +k1,18342:32583029,6254097:0 +) +(1,18344:6630773,7119177:25952256,505283,126483 +g1,18342:8272449,7119177 +g1,18342:10390572,7119177 +g1,18342:10802793,7119177 +g1,18342:13671303,7119177 +g1,18342:15509587,7119177 +g1,18342:16324854,7119177 +g1,18342:18558321,7119177 +k1,18344:32583029,7119177:14024708 +g1,18344:32583029,7119177 +) +(1,18345:6630773,9235995:25952256,555811,147783 +(1,18345:6630773,9235995:2450326,534184,12975 +g1,18345:6630773,9235995 +g1,18345:9081099,9235995 +) +g1,18345:11085911,9235995 +g1,18345:12089399,9235995 +g1,18345:12811737,9235995 +k1,18345:32583028,9235995:17155880 +g1,18345:32583028,9235995 +) +(1,18348:6630773,10494291:25952256,505283,134348 +(1,18347:6630773,10494291:0,452978,122846 +r1,18402:8044174,10494291:1413401,575824,122846 +k1,18347:6630773,10494291:-1413401 +) +(1,18347:6630773,10494291:1413401,452978,122846 +k1,18347:6630773,10494291:3277 +h1,18347:8040897,10494291:0,411205,112570 +) +k1,18347:8250139,10494291:205965 +k1,18347:9733401,10494291:205965 +k1,18347:12229193,10494291:205964 +k1,18347:13626603,10494291:205965 +k1,18347:15341207,10494291:205965 +k1,18347:19474745,10494291:205965 +k1,18347:21903691,10494291:205965 +k1,18347:22795818,10494291:205965 +k1,18347:24703752,10494291:205964 +k1,18347:25324553,10494291:205958 +k1,18347:27994016,10494291:205965 +k1,18347:31391584,10494291:205965 +k1,18347:32583029,10494291:0 +) +(1,18348:6630773,11359371:25952256,513147,134348 +k1,18347:9630238,11359371:214840 +k1,18347:10792729,11359371:214840 +k1,18347:12026654,11359371:214840 +(1,18347:12026654,11359371:0,452978,122846 +r1,18402:13440055,11359371:1413401,575824,122846 +k1,18347:12026654,11359371:-1413401 +) +(1,18347:12026654,11359371:1413401,452978,122846 +k1,18347:12026654,11359371:3277 +h1,18347:13436778,11359371:0,411205,112570 +) +k1,18347:13654896,11359371:214841 +k1,18347:15424905,11359371:214840 +k1,18347:16631305,11359371:214840 +k1,18347:19803785,11359371:214840 +k1,18347:20836514,11359371:214840 +k1,18347:23080349,11359371:214840 +k1,18347:23651049,11359371:214840 +(1,18347:23651049,11359371:0,452978,122846 +r1,18402:25064450,11359371:1413401,575824,122846 +k1,18347:23651049,11359371:-1413401 +) +(1,18347:23651049,11359371:1413401,452978,122846 +k1,18347:23651049,11359371:3277 +h1,18347:25061173,11359371:0,411205,112570 +) +k1,18347:25279290,11359371:214840 +k1,18347:26771428,11359371:214841 +k1,18347:28945794,11359371:214840 +k1,18347:30972049,11359371:214840 +k1,18347:31873051,11359371:214840 +(1,18347:31873051,11359371:0,435480,115847 +r1,18402:32583029,11359371:709978,551327,115847 +k1,18347:31873051,11359371:-709978 +) +(1,18347:31873051,11359371:709978,435480,115847 +k1,18347:31873051,11359371:3277 +h1,18347:32579752,11359371:0,411205,112570 +) +k1,18347:32583029,11359371:0 +) +(1,18348:6630773,12224451:25952256,505283,7863 +g1,18347:7361499,12224451 +g1,18347:9073954,12224451 +k1,18348:32583030,12224451:21588216 +g1,18348:32583030,12224451 +) +v1,18350:6630773,12909306:0,393216,0 +(1,18356:6630773,14619699:25952256,2103609,196608 +g1,18356:6630773,14619699 +g1,18356:6630773,14619699 +g1,18356:6434165,14619699 +(1,18356:6434165,14619699:0,2103609,196608 +r1,18402:32779637,14619699:26345472,2300217,196608 +k1,18356:6434165,14619699:-26345472 +) +(1,18356:6434165,14619699:26345472,2103609,196608 +[1,18356:6630773,14619699:25952256,1907001,0 +(1,18352:6630773,13137137:25952256,424439,112852 +(1,18351:6630773,13137137:0,0,0 +g1,18351:6630773,13137137 +g1,18351:6630773,13137137 +g1,18351:6303093,13137137 +(1,18351:6303093,13137137:0,0,0 +) +g1,18351:6630773,13137137 +) +g1,18352:7626635,13137137 +g1,18352:8622497,13137137 +g1,18352:12605945,13137137 +g1,18352:13269853,13137137 +k1,18352:13269853,13137137:0 +h1,18352:15593531,13137137:0,0,0 +k1,18352:32583029,13137137:16989498 +g1,18352:32583029,13137137 +) +(1,18353:6630773,13821992:25952256,424439,112852 +h1,18353:6630773,13821992:0,0,0 +g1,18353:6962727,13821992 +g1,18353:7294681,13821992 +g1,18353:7626635,13821992 +g1,18353:7958589,13821992 +g1,18353:8290543,13821992 +g1,18353:8622497,13821992 +g1,18353:8954451,13821992 +g1,18353:9286405,13821992 +g1,18353:9618359,13821992 +g1,18353:9950313,13821992 +g1,18353:10282267,13821992 +g1,18353:10614221,13821992 +g1,18353:10946175,13821992 +g1,18353:13601807,13821992 +g1,18353:14265715,13821992 +g1,18353:16257439,13821992 +g1,18353:16921347,13821992 +g1,18353:18913071,13821992 +g1,18353:19576979,13821992 +g1,18353:20240887,13821992 +g1,18353:22232611,13821992 +h1,18353:22564565,13821992:0,0,0 +k1,18353:32583029,13821992:10018464 +g1,18353:32583029,13821992 +) +(1,18354:6630773,14506847:25952256,424439,112852 +h1,18354:6630773,14506847:0,0,0 +g1,18354:6962727,14506847 +g1,18354:7294681,14506847 +g1,18354:7626635,14506847 +g1,18354:7958589,14506847 +g1,18354:8290543,14506847 +g1,18354:8622497,14506847 +g1,18354:8954451,14506847 +k1,18354:8954451,14506847:0 +h1,18354:12937898,14506847:0,0,0 +k1,18354:32583030,14506847:19645132 +g1,18354:32583030,14506847 +) +] +) +g1,18356:32583029,14619699 +g1,18356:6630773,14619699 +g1,18356:6630773,14619699 +g1,18356:32583029,14619699 +g1,18356:32583029,14619699 +) +h1,18356:6630773,14816307:0,0,0 +(1,18360:6630773,15681387:25952256,513147,126483 +h1,18359:6630773,15681387:983040,0,0 +k1,18359:8511219,15681387:269571 +k1,18359:9799875,15681387:269571 +k1,18359:12823925,15681387:269572 +k1,18359:15372183,15681387:269571 +k1,18359:18388368,15681387:269571 +(1,18359:18388368,15681387:0,414482,115847 +r1,18402:18746634,15681387:358266,530329,115847 +k1,18359:18388368,15681387:-358266 +) +(1,18359:18388368,15681387:358266,414482,115847 +k1,18359:18388368,15681387:3277 +h1,18359:18743357,15681387:0,411205,112570 +) +k1,18359:19016205,15681387:269571 +k1,18359:20492950,15681387:269572 +k1,18359:22275747,15681387:269571 +k1,18359:23196746,15681387:269571 +k1,18359:26402985,15681387:269571 +k1,18359:27691642,15681387:269572 +k1,18359:29568811,15681387:269571 +k1,18359:31406003,15681387:269571 +k1,18360:32583029,15681387:0 +) +(1,18360:6630773,16546467:25952256,505283,134348 +g1,18359:10060272,16546467 +g1,18359:10674344,16546467 +g1,18359:13337071,16546467 +g1,18359:15372619,16546467 +g1,18359:16254733,16546467 +g1,18359:19213028,16546467 +g1,18359:21702085,16546467 +g1,18359:23005596,16546467 +g1,18359:24490641,16546467 +g1,18359:25437636,16546467 +g1,18359:28769486,16546467 +g1,18359:30362666,16546467 +(1,18359:30362666,16546467:0,414482,115847 +r1,18402:30720932,16546467:358266,530329,115847 +k1,18359:30362666,16546467:-358266 +) +(1,18359:30362666,16546467:358266,414482,115847 +k1,18359:30362666,16546467:3277 +h1,18359:30717655,16546467:0,411205,112570 +) +k1,18360:32583029,16546467:1809669 +g1,18360:32583029,16546467 +) +v1,18362:6630773,17231322:0,393216,0 +(1,18366:6630773,17578611:25952256,740505,196608 +g1,18366:6630773,17578611 +g1,18366:6630773,17578611 +g1,18366:6434165,17578611 +(1,18366:6434165,17578611:0,740505,196608 +r1,18402:32779637,17578611:26345472,937113,196608 +k1,18366:6434165,17578611:-26345472 +) +(1,18366:6434165,17578611:26345472,740505,196608 +[1,18366:6630773,17578611:25952256,543897,0 +(1,18364:6630773,17465759:25952256,431045,112852 +(1,18363:6630773,17465759:0,0,0 +g1,18363:6630773,17465759 +g1,18363:6630773,17465759 +g1,18363:6303093,17465759 +(1,18363:6303093,17465759:0,0,0 +) +g1,18363:6630773,17465759 +) +g1,18364:7626635,17465759 +g1,18364:8290543,17465759 +g1,18364:13933760,17465759 +g1,18364:14597668,17465759 +g1,18364:17253300,17465759 +g1,18364:19576978,17465759 +g1,18364:20240886,17465759 +g1,18364:22232610,17465759 +g1,18364:24888242,17465759 +g1,18364:25552150,17465759 +g1,18364:26216058,17465759 +g1,18364:26879966,17465759 +h1,18364:27543874,17465759:0,0,0 +k1,18364:32583029,17465759:5039155 +g1,18364:32583029,17465759 +) +] +) +g1,18366:32583029,17578611 +g1,18366:6630773,17578611 +g1,18366:6630773,17578611 +g1,18366:32583029,17578611 +g1,18366:32583029,17578611 +) +h1,18366:6630773,17775219:0,0,0 +(1,18369:6630773,26924421:25952256,9083666,0 +k1,18369:10523651,26924421:3892878 +h1,18368:10523651,26924421:0,0,0 +(1,18368:10523651,26924421:18166500,9083666,0 +(1,18368:10523651,26924421:18167376,9083688,0 +(1,18368:10523651,26924421:18167376,9083688,0 +(1,18368:10523651,26924421:0,9083688,0 +(1,18368:10523651,26924421:0,14208860,0 +(1,18368:10523651,26924421:28417720,14208860,0 +) +k1,18368:10523651,26924421:-28417720 +) +) +g1,18368:28691027,26924421 +) +) +) +g1,18369:28690151,26924421 +k1,18369:32583029,26924421:3892878 +) +(1,18376:6630773,27789501:25952256,505283,126483 +h1,18375:6630773,27789501:983040,0,0 +k1,18375:10041394,27789501:266859 +k1,18375:11585549,27789501:266858 +k1,18375:14721574,27789501:266859 +k1,18375:16492484,27789501:266859 +k1,18375:18724767,27789501:266858 +k1,18375:20148336,27789501:266859 +k1,18375:21176723,27789501:266859 +k1,18375:22773962,27789501:266858 +k1,18375:24434772,27789501:266859 +k1,18375:27448245,27789501:266859 +(1,18375:27448245,27789501:0,414482,115847 +r1,18402:27806511,27789501:358266,530329,115847 +k1,18375:27448245,27789501:-358266 +) +(1,18375:27448245,27789501:358266,414482,115847 +k1,18375:27448245,27789501:3277 +h1,18375:27803234,27789501:0,411205,112570 +) +k1,18375:28247039,27789501:266858 +k1,18375:31128785,27789501:266859 +k1,18376:32583029,27789501:0 +) +(1,18376:6630773,28654581:25952256,505283,134348 +k1,18375:9402891,28654581:192621 +k1,18375:10699794,28654581:192621 +k1,18375:11640181,28654581:192621 +k1,18375:13118619,28654581:192622 +k1,18375:15276665,28654581:192621 +k1,18375:16085324,28654581:192621 +k1,18375:16633805,28654581:192621 +k1,18375:18699445,28654581:192621 +k1,18375:22140030,28654581:192621 +k1,18375:23638785,28654581:192622 +k1,18375:27024320,28654581:192621 +k1,18375:31318184,28654581:192621 +k1,18375:32583029,28654581:0 +) +(1,18376:6630773,29519661:25952256,513147,126483 +k1,18375:7539102,29519661:249037 +k1,18375:11715711,29519661:249036 +k1,18375:14002918,29519661:249037 +k1,18375:14867993,29519661:249037 +k1,18375:15472890,29519661:249037 +k1,18375:16715452,29519661:249036 +k1,18375:18068771,29519661:249037 +k1,18375:19065574,29519661:249037 +k1,18375:21126026,29519661:249037 +k1,18375:21991100,29519661:249036 +k1,18375:22595997,29519661:249037 +k1,18375:25356374,29519661:249037 +k1,18375:26796856,29519661:249037 +k1,18375:29011317,29519661:249036 +k1,18375:29911782,29519661:249037 +k1,18375:32583029,29519661:0 +) +(1,18376:6630773,30384741:25952256,513147,126483 +k1,18375:8571731,30384741:159689 +k1,18375:10112264,30384741:159689 +k1,18375:12745283,30384741:159690 +k1,18375:16623485,30384741:159689 +k1,18375:17974619,30384741:159689 +k1,18375:20180342,30384741:159689 +k1,18375:24168645,30384741:159690 +k1,18375:27735551,30384741:159689 +k1,18375:28546668,30384741:159689 +k1,18375:29062217,30384741:159689 +k1,18375:30156450,30384741:159690 +k1,18375:30975431,30384741:159689 +k1,18375:32583029,30384741:0 +) +(1,18376:6630773,31249821:25952256,505283,134348 +k1,18375:8901871,31249821:227030 +k1,18375:12885425,31249821:227030 +k1,18375:14236397,31249821:227030 +k1,18375:17046856,31249821:227030 +k1,18375:17486850,31249821:227002 +k1,18375:18754592,31249821:227030 +k1,18375:20105564,31249821:227030 +k1,18375:23334143,31249821:227030 +k1,18375:24160827,31249821:227030 +k1,18375:26753051,31249821:227030 +k1,18375:30545895,31249821:227030 +k1,18375:31983375,31249821:227030 +k1,18375:32583029,31249821:0 +) +(1,18376:6630773,32114901:25952256,513147,134348 +g1,18375:9660502,32114901 +g1,18375:11431940,32114901 +g1,18375:12108926,32114901 +g1,18375:14999063,32114901 +g1,18375:16408742,32114901 +g1,18375:18180180,32114901 +g1,18375:18857166,32114901 +g1,18375:20069582,32114901 +g1,18375:22460990,32114901 +g1,18375:24136090,32114901 +g1,18375:24938250,32114901 +g1,18375:27343421,32114901 +k1,18376:32583029,32114901:2280658 +g1,18376:32583029,32114901 +) +v1,18378:6630773,32799756:0,393216,0 +(1,18384:6630773,34510149:25952256,2103609,196608 +g1,18384:6630773,34510149 +g1,18384:6630773,34510149 +g1,18384:6434165,34510149 +(1,18384:6434165,34510149:0,2103609,196608 +r1,18402:32779637,34510149:26345472,2300217,196608 +k1,18384:6434165,34510149:-26345472 +) +(1,18384:6434165,34510149:26345472,2103609,196608 +[1,18384:6630773,34510149:25952256,1907001,0 +(1,18380:6630773,33027587:25952256,424439,106246 +(1,18379:6630773,33027587:0,0,0 +g1,18379:6630773,33027587 +g1,18379:6630773,33027587 +g1,18379:6303093,33027587 +(1,18379:6303093,33027587:0,0,0 +) +g1,18379:6630773,33027587 +) +g1,18380:8290543,33027587 +g1,18380:9286405,33027587 +k1,18380:9286405,33027587:0 +h1,18380:10946175,33027587:0,0,0 +k1,18380:32583029,33027587:21636854 +g1,18380:32583029,33027587 +) +(1,18381:6630773,33712442:25952256,431045,112852 +h1,18381:6630773,33712442:0,0,0 +g1,18381:6962727,33712442 +g1,18381:7294681,33712442 +g1,18381:12937898,33712442 +g1,18381:13601806,33712442 +g1,18381:16257438,33712442 +g1,18381:18581116,33712442 +g1,18381:19245024,33712442 +g1,18381:21236748,33712442 +g1,18381:23892380,33712442 +g1,18381:24556288,33712442 +g1,18381:25220196,33712442 +g1,18381:25884104,33712442 +k1,18381:25884104,33712442:0 +h1,18381:26879966,33712442:0,0,0 +k1,18381:32583029,33712442:5703063 +g1,18381:32583029,33712442 +) +(1,18382:6630773,34397297:25952256,424439,112852 +h1,18382:6630773,34397297:0,0,0 +g1,18382:6962727,34397297 +g1,18382:7294681,34397297 +k1,18382:7294681,34397297:0 +h1,18382:12605944,34397297:0,0,0 +k1,18382:32583028,34397297:19977084 +g1,18382:32583028,34397297 +) +] +) +g1,18384:32583029,34510149 +g1,18384:6630773,34510149 +g1,18384:6630773,34510149 +g1,18384:32583029,34510149 +g1,18384:32583029,34510149 +) +h1,18384:6630773,34706757:0,0,0 +v1,18388:6630773,35391612:0,393216,0 +(1,18392:6630773,35725689:25952256,727293,196608 +g1,18392:6630773,35725689 +g1,18392:6630773,35725689 +g1,18392:6434165,35725689 +(1,18392:6434165,35725689:0,727293,196608 +r1,18402:32779637,35725689:26345472,923901,196608 +k1,18392:6434165,35725689:-26345472 +) +(1,18392:6434165,35725689:26345472,727293,196608 +[1,18392:6630773,35725689:25952256,530685,0 +(1,18390:6630773,35619443:25952256,424439,106246 +(1,18389:6630773,35619443:0,0,0 +g1,18389:6630773,35619443 +g1,18389:6630773,35619443 +g1,18389:6303093,35619443 +(1,18389:6303093,35619443:0,0,0 +) +g1,18389:6630773,35619443 +) +g1,18390:7626635,35619443 +g1,18390:8290543,35619443 +h1,18390:9618359,35619443:0,0,0 +k1,18390:32583029,35619443:22964670 +g1,18390:32583029,35619443 +) +] +) +g1,18392:32583029,35725689 +g1,18392:6630773,35725689 +g1,18392:6630773,35725689 +g1,18392:32583029,35725689 +g1,18392:32583029,35725689 ) -h1,18394:6630773,35922297:0,0,0 -(1,18397:6630773,45071499:25952256,9083666,0 -k1,18397:10523651,45071499:3892878 -h1,18396:10523651,45071499:0,0,0 -(1,18396:10523651,45071499:18166500,9083666,0 -(1,18396:10523651,45071499:18167376,9083688,0 -(1,18396:10523651,45071499:18167376,9083688,0 -(1,18396:10523651,45071499:0,9083688,0 -(1,18396:10523651,45071499:0,14208860,0 -(1,18396:10523651,45071499:28417720,14208860,0 +h1,18392:6630773,35922297:0,0,0 +(1,18395:6630773,45071499:25952256,9083666,0 +k1,18395:10523651,45071499:3892878 +h1,18394:10523651,45071499:0,0,0 +(1,18394:10523651,45071499:18166500,9083666,0 +(1,18394:10523651,45071499:18167376,9083688,0 +(1,18394:10523651,45071499:18167376,9083688,0 +(1,18394:10523651,45071499:0,9083688,0 +(1,18394:10523651,45071499:0,14208860,0 +(1,18394:10523651,45071499:28417720,14208860,0 ) -k1,18396:10523651,45071499:-28417720 +k1,18394:10523651,45071499:-28417720 ) ) -g1,18396:28691027,45071499 +g1,18394:28691027,45071499 ) ) ) -g1,18397:28690151,45071499 -k1,18397:32583029,45071499:3892878 +g1,18395:28690151,45071499 +k1,18395:32583029,45071499:3892878 ) ] -(1,18404:32583029,45706769:0,0,0 -g1,18404:32583029,45706769 +(1,18402:32583029,45706769:0,0,0 +g1,18402:32583029,45706769 ) ) ] -(1,18404:6630773,47279633:25952256,0,0 -h1,18404:6630773,47279633:25952256,0,0 +(1,18402:6630773,47279633:25952256,0,0 +h1,18402:6630773,47279633:25952256,0,0 ) ] -(1,18404:4262630,4025873:0,0,0 -[1,18404:-473656,4025873:0,0,0 -(1,18404:-473656,-710413:0,0,0 -(1,18404:-473656,-710413:0,0,0 -g1,18404:-473656,-710413 +(1,18402:4262630,4025873:0,0,0 +[1,18402:-473656,4025873:0,0,0 +(1,18402:-473656,-710413:0,0,0 +(1,18402:-473656,-710413:0,0,0 +g1,18402:-473656,-710413 ) -g1,18404:-473656,-710413 +g1,18402:-473656,-710413 ) ] ) ] !18673 -}301 -Input:3053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}302 Input:3057:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3058:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3059:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -319481,988 +319685,988 @@ Input:3064:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3065:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3066:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3067:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3068:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3069:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3070:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3071:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{302 -[1,18463:4262630,47279633:28320399,43253760,0 -(1,18463:4262630,4025873:0,0,0 -[1,18463:-473656,4025873:0,0,0 -(1,18463:-473656,-710413:0,0,0 -(1,18463:-473656,-644877:0,0,0 -k1,18463:-473656,-644877:-65536 +{303 +[1,18461:4262630,47279633:28320399,43253760,0 +(1,18461:4262630,4025873:0,0,0 +[1,18461:-473656,4025873:0,0,0 +(1,18461:-473656,-710413:0,0,0 +(1,18461:-473656,-644877:0,0,0 +k1,18461:-473656,-644877:-65536 ) -(1,18463:-473656,4736287:0,0,0 -k1,18463:-473656,4736287:5209943 +(1,18461:-473656,4736287:0,0,0 +k1,18461:-473656,4736287:5209943 ) -g1,18463:-473656,-710413 +g1,18461:-473656,-710413 ) ] ) -[1,18463:6630773,47279633:25952256,43253760,0 -[1,18463:6630773,4812305:25952256,786432,0 -(1,18463:6630773,4812305:25952256,513147,126483 -(1,18463:6630773,4812305:25952256,513147,126483 -g1,18463:3078558,4812305 -[1,18463:3078558,4812305:0,0,0 -(1,18463:3078558,2439708:0,1703936,0 -k1,18463:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18463:2537886,2439708:1179648,16384,0 +[1,18461:6630773,47279633:25952256,43253760,0 +[1,18461:6630773,4812305:25952256,786432,0 +(1,18461:6630773,4812305:25952256,513147,126483 +(1,18461:6630773,4812305:25952256,513147,126483 +g1,18461:3078558,4812305 +[1,18461:3078558,4812305:0,0,0 +(1,18461:3078558,2439708:0,1703936,0 +k1,18461:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18461:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18463:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18461:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18463:3078558,4812305:0,0,0 -(1,18463:3078558,2439708:0,1703936,0 -g1,18463:29030814,2439708 -g1,18463:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18463:36151628,1915420:16384,1179648,0 +[1,18461:3078558,4812305:0,0,0 +(1,18461:3078558,2439708:0,1703936,0 +g1,18461:29030814,2439708 +g1,18461:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18461:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18463:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18461:37855564,2439708:1179648,16384,0 ) ) -k1,18463:3078556,2439708:-34777008 +k1,18461:3078556,2439708:-34777008 ) ] -[1,18463:3078558,4812305:0,0,0 -(1,18463:3078558,49800853:0,16384,2228224 -k1,18463:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18463:2537886,49800853:1179648,16384,0 +[1,18461:3078558,4812305:0,0,0 +(1,18461:3078558,49800853:0,16384,2228224 +k1,18461:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18461:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18463:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18461:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18463:3078558,4812305:0,0,0 -(1,18463:3078558,49800853:0,16384,2228224 -g1,18463:29030814,49800853 -g1,18463:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18463:36151628,51504789:16384,1179648,0 +[1,18461:3078558,4812305:0,0,0 +(1,18461:3078558,49800853:0,16384,2228224 +g1,18461:29030814,49800853 +g1,18461:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18461:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18463:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18461:37855564,49800853:1179648,16384,0 ) ) -k1,18463:3078556,49800853:-34777008 +k1,18461:3078556,49800853:-34777008 ) -] -g1,18463:6630773,4812305 -g1,18463:6630773,4812305 -g1,18463:8017514,4812305 -g1,18463:11362471,4812305 -g1,18463:12177738,4812305 -g1,18463:15187806,4812305 -k1,18463:31387652,4812305:16199846 -) -) -] -[1,18463:6630773,45706769:25952256,40108032,0 -(1,18463:6630773,45706769:25952256,40108032,0 -(1,18463:6630773,45706769:0,0,0 -g1,18463:6630773,45706769 -) -[1,18463:6630773,45706769:25952256,40108032,0 -v1,18404:6630773,6254097:0,393216,0 -(1,18405:6630773,7526002:25952256,1665121,0 -g1,18405:6630773,7526002 -g1,18405:6237557,7526002 -r1,18463:6368629,7526002:131072,1665121,0 -g1,18405:6567858,7526002 -g1,18405:6764466,7526002 -[1,18405:6764466,7526002:25818563,1665121,0 -(1,18405:6764466,6526574:25818563,665693,196608 -(1,18404:6764466,6526574:0,665693,196608 -r1,18463:7868133,6526574:1103667,862301,196608 -k1,18404:6764466,6526574:-1103667 -) -(1,18404:6764466,6526574:1103667,665693,196608 -) -k1,18404:8090812,6526574:222679 -k1,18404:9408741,6526574:327680 -k1,18404:13043881,6526574:222680 -k1,18404:14285645,6526574:222679 -k1,18404:17500043,6526574:222679 -k1,18404:18338760,6526574:222679 -k1,18404:19580525,6526574:222680 -k1,18404:22557682,6526574:222679 -k1,18404:25232718,6526574:222679 -k1,18404:27190790,6526574:222679 -(1,18404:27190790,6526574:0,435480,115847 -r1,18463:27900768,6526574:709978,551327,115847 -k1,18404:27190790,6526574:-709978 -) -(1,18404:27190790,6526574:709978,435480,115847 -k1,18404:27190790,6526574:3277 -h1,18404:27897491,6526574:0,411205,112570 -) -k1,18404:28123448,6526574:222680 -k1,18404:30727705,6526574:222679 -k1,18404:32583029,6526574:0 -) -(1,18405:6764466,7391654:25818563,513147,134348 -g1,18404:7649857,7391654 -g1,18404:8204946,7391654 -g1,18404:10022259,7391654 -g1,18404:12548671,7391654 -g1,18404:13407192,7391654 -g1,18404:16239002,7391654 -g1,18404:17889853,7391654 -g1,18404:19366379,7391654 -g1,18404:21133229,7391654 -k1,18405:32583029,7391654:9083951 -g1,18405:32583029,7391654 -) -] -g1,18405:32583029,7526002 -) -h1,18405:6630773,7526002:0,0,0 -v1,18408:6630773,8391082:0,393216,0 -(1,18410:6630773,15680762:25952256,7682896,0 -g1,18410:6630773,15680762 -g1,18410:6237557,15680762 -r1,18463:6368629,15680762:131072,7682896,0 -g1,18410:6567858,15680762 -g1,18410:6764466,15680762 -[1,18410:6764466,15680762:25818563,7682896,0 -(1,18410:6764466,8752259:25818563,754393,260573 -(1,18408:6764466,8752259:0,754393,260573 -r1,18463:7856192,8752259:1091726,1014966,260573 -k1,18408:6764466,8752259:-1091726 -) -(1,18408:6764466,8752259:1091726,754393,260573 -) -k1,18408:8080949,8752259:224757 -k1,18408:8408629,8752259:327680 -k1,18408:8408629,8752259:0 -k1,18409:9830074,8752259:224758 -k1,18409:13420760,8752259:224757 -k1,18409:14304810,8752259:224758 -k1,18409:15806864,8752259:224757 -k1,18409:20066018,8752259:224758 -k1,18409:21482220,8752259:224757 -k1,18409:24804209,8752259:224758 -k1,18409:25560463,8752259:224757 -k1,18409:28415181,8752259:224758 -k1,18409:31169628,8752259:224757 -(1,18409:31169628,8752259:0,452978,122846 -r1,18463:32583029,8752259:1413401,575824,122846 -k1,18409:31169628,8752259:-1413401 -) -(1,18409:31169628,8752259:1413401,452978,122846 -k1,18409:31169628,8752259:3277 -h1,18409:32579752,8752259:0,411205,112570 -) -k1,18409:32583029,8752259:0 -) -(1,18410:6764466,9617339:25818563,513147,134348 -k1,18409:9319871,9617339:265577 -k1,18409:10577008,9617339:265577 -k1,18409:15516613,9617339:265577 -k1,18409:16269712,9617339:265511 -k1,18409:18045239,9617339:265577 -k1,18409:18970108,9617339:265577 -k1,18409:20254770,9617339:265577 -k1,18409:21909710,9617339:265577 -k1,18409:24134813,9617339:265577 -k1,18409:26605677,9617339:265577 -k1,18409:27557416,9617339:265577 -k1,18409:28593696,9617339:265577 -k1,18409:31931601,9617339:265577 -k1,18410:32583029,9617339:0 -) -(1,18410:6764466,10482419:25818563,513147,134348 -(1,18409:6764466,10482419:0,452978,115847 -r1,18463:8177867,10482419:1413401,568825,115847 -k1,18409:6764466,10482419:-1413401 -) -(1,18409:6764466,10482419:1413401,452978,115847 -k1,18409:6764466,10482419:3277 -h1,18409:8174590,10482419:0,411205,112570 -) -k1,18409:8444660,10482419:266793 -k1,18409:9242951,10482419:266794 -k1,18409:11321159,10482419:266793 -k1,18409:13597941,10482419:266793 -k1,18409:14883820,10482419:266794 -k1,18409:16427910,10482419:266793 -k1,18409:18827900,10482419:266793 -k1,18409:21862935,10482419:266794 -k1,18409:22815890,10482419:266793 -k1,18409:23698722,10482419:266794 -k1,18409:26853687,10482419:266793 -k1,18409:29583978,10482419:266793 -k1,18409:30478607,10482419:266794 -k1,18409:31764485,10482419:266793 -k1,18410:32583029,10482419:0 -) -(1,18410:6764466,11347499:25818563,513147,126483 -k1,18409:8929686,11347499:216179 -k1,18409:11174859,11347499:216178 -(1,18409:11174859,11347499:0,435480,115847 -r1,18463:11884837,11347499:709978,551327,115847 -k1,18409:11174859,11347499:-709978 -) -(1,18409:11174859,11347499:709978,435480,115847 -k1,18409:11174859,11347499:3277 -h1,18409:11881560,11347499:0,411205,112570 -) -k1,18409:12101016,11347499:216179 -k1,18409:13078722,11347499:216178 -k1,18409:14900533,11347499:216179 -k1,18409:16885528,11347499:216178 -k1,18409:17849473,11347499:216179 -k1,18409:19877066,11347499:216178 -k1,18409:20744673,11347499:216179 -k1,18409:21316711,11347499:216178 -k1,18409:22515930,11347499:216179 -k1,18409:23541478,11347499:216178 -k1,18409:25102456,11347499:216179 -k1,18409:26510079,11347499:216178 -k1,18409:28870596,11347499:216179 -k1,18409:30354240,11347499:216178 -k1,18409:30926279,11347499:216179 -k1,18410:32583029,11347499:0 -) -(1,18410:6764466,12212579:25818563,505283,134348 -k1,18409:7399818,12212579:220509 -k1,18409:10142830,12212579:220531 -k1,18409:11830056,12212579:220530 -k1,18409:12859956,12212579:220530 -k1,18409:15553160,12212579:220531 -k1,18409:19023620,12212579:220530 -k1,18409:20435596,12212579:220531 -k1,18409:23531190,12212579:220530 -k1,18409:24437883,12212579:220531 -k1,18409:26047121,12212579:220530 -k1,18409:26953814,12212579:220531 -k1,18409:29754496,12212579:220530 -k1,18409:32583029,12212579:0 -) -(1,18410:6764466,13077659:25818563,513147,134348 -k1,18409:8155250,13077659:199339 -k1,18409:9142986,13077659:199338 -k1,18409:13688673,13077659:199339 -k1,18409:14879571,13077659:199338 -k1,18409:18036550,13077659:199339 -k1,18409:20840289,13077659:199338 -k1,18409:25122521,13077659:199339 -k1,18409:25981151,13077659:199338 -k1,18409:28440827,13077659:199339 -k1,18409:28996025,13077659:199338 -k1,18409:30705314,13077659:199339 -k1,18409:31563944,13077659:199338 -k1,18409:32583029,13077659:0 -) -(1,18410:6764466,13942739:25818563,505283,134348 -k1,18409:8310318,13942739:156489 -k1,18409:9082845,13942739:156489 -k1,18409:10258420,13942739:156490 -k1,18409:11692206,13942739:156489 -k1,18409:13981892,13942739:156489 -k1,18409:14669878,13942739:156489 -k1,18409:16110874,13942739:156490 -k1,18409:17720952,13942739:156489 -k1,18409:20448418,13942739:156489 -k1,18409:21256335,13942739:156489 -k1,18409:22431910,13942739:156490 -k1,18409:23977762,13942739:156489 -k1,18409:26093777,13942739:156489 -k1,18409:27763492,13942739:156489 -k1,18409:28571410,13942739:156490 -k1,18409:30657279,13942739:156489 -k1,18409:31169628,13942739:156489 -(1,18409:31169628,13942739:0,452978,122846 -r1,18463:32583029,13942739:1413401,575824,122846 -k1,18409:31169628,13942739:-1413401 -) -(1,18409:31169628,13942739:1413401,452978,122846 -k1,18409:31169628,13942739:3277 -h1,18409:32579752,13942739:0,411205,112570 -) -k1,18409:32583029,13942739:0 -) -(1,18410:6764466,14807819:25818563,513147,134348 -k1,18409:8943134,14807819:219142 -k1,18409:10153837,14807819:219143 -k1,18409:11435973,14807819:219142 -k1,18409:14431221,14807819:219143 -k1,18409:15266401,14807819:219142 -k1,18409:17334969,14807819:219142 -k1,18409:20429176,14807819:219143 -k1,18409:22255916,14807819:219142 -k1,18409:24042679,14807819:219142 -k1,18409:25465063,14807819:219143 -k1,18409:27817402,14807819:219142 -k1,18409:29055630,14807819:219143 -k1,18409:30623503,14807819:219142 -k1,18409:32583029,14807819:0 -) -(1,18410:6764466,15672899:25818563,505283,7863 -g1,18409:8824262,15672899 -g1,18409:9674919,15672899 -g1,18409:10621914,15672899 -g1,18409:13171264,15672899 -k1,18410:32583028,15672899:17720280 -g1,18410:32583028,15672899 -) -] -g1,18410:32583029,15680762 -) -h1,18410:6630773,15680762:0,0,0 -v1,18413:6630773,16545842:0,393216,0 -(1,18463:6630773,42909925:25952256,26757299,0 -g1,18463:6630773,42909925 -g1,18463:6237557,42909925 -r1,18463:6368629,42909925:131072,26757299,0 -g1,18463:6567858,42909925 -g1,18463:6764466,42909925 -[1,18463:6764466,42909925:25818563,26757299,0 -(1,18414:6764466,16854140:25818563,701514,196608 -(1,18413:6764466,16854140:0,701514,196608 -r1,18463:7761522,16854140:997056,898122,196608 -k1,18413:6764466,16854140:-997056 -) -(1,18413:6764466,16854140:997056,701514,196608 -) -k1,18413:7963460,16854140:201938 -k1,18413:8291140,16854140:327680 -k1,18413:9689765,16854140:201938 -k1,18413:11785693,16854140:201938 -k1,18413:12935282,16854140:201938 -k1,18413:13493079,16854140:201937 -k1,18413:14972314,16854140:201938 -k1,18413:15705749,16854140:201938 -k1,18413:17945857,16854140:201938 -k1,18413:18763833,16854140:201938 -k1,18413:19321631,16854140:201938 -(1,18413:19321631,16854140:0,452978,122846 -r1,18463:20735032,16854140:1413401,575824,122846 -k1,18413:19321631,16854140:-1413401 -) -(1,18413:19321631,16854140:1413401,452978,122846 -k1,18413:19321631,16854140:3277 -h1,18413:20731755,16854140:0,411205,112570 -) -k1,18413:20936970,16854140:201938 -k1,18413:22416205,16854140:201938 -k1,18413:24751339,16854140:201937 -k1,18413:27357793,16854140:201938 -k1,18413:28219023,16854140:201938 -k1,18413:29976130,16854140:201938 -(1,18413:29976130,16854140:0,452978,122846 -r1,18463:31389531,16854140:1413401,575824,122846 -k1,18413:29976130,16854140:-1413401 -) -(1,18413:29976130,16854140:1413401,452978,122846 -k1,18413:29976130,16854140:3277 -h1,18413:31386254,16854140:0,411205,112570 -) -k1,18413:31591469,16854140:201938 -k1,18413:32583029,16854140:0 -) -(1,18414:6764466,17719220:25818563,513147,134348 -k1,18413:7636166,17719220:212408 -k1,18413:9631153,17719220:212408 -(1,18413:9631153,17719220:0,452978,115847 -r1,18463:11747978,17719220:2116825,568825,115847 -k1,18413:9631153,17719220:-2116825 -) -(1,18413:9631153,17719220:2116825,452978,115847 -k1,18413:9631153,17719220:3277 -h1,18413:11744701,17719220:0,411205,112570 -) -k1,18413:12134055,17719220:212407 -k1,18413:12974298,17719220:212408 -k1,18413:13775219,17719220:212408 -k1,18413:15311454,17719220:212408 -k1,18413:16628143,17719220:212407 -k1,18413:19212299,17719220:212408 -k1,18413:24097424,17719220:212408 -k1,18413:27263540,17719220:212408 -k1,18413:28667392,17719220:212407 -(1,18413:28667392,17719220:0,452978,122846 -r1,18463:30080793,17719220:1413401,575824,122846 -k1,18413:28667392,17719220:-1413401 -) -(1,18413:28667392,17719220:1413401,452978,122846 -k1,18413:28667392,17719220:3277 -h1,18413:30077516,17719220:0,411205,112570 -) -k1,18413:30293201,17719220:212408 -k1,18413:32583029,17719220:0 -) -(1,18414:6764466,18584300:25818563,513147,126483 -k1,18413:9390785,18584300:254571 -k1,18413:11208390,18584300:254571 -k1,18413:14158456,18584300:254570 -k1,18413:17999157,18584300:254571 -k1,18413:19445173,18584300:254571 -k1,18413:23590616,18584300:254571 -k1,18413:27789143,18584300:254570 -k1,18413:28671549,18584300:254571 -k1,18413:30628090,18584300:254571 -k1,18413:32583029,18584300:0 -) -(1,18414:6764466,19449380:25818563,513147,134348 -k1,18413:7939980,19449380:156429 -k1,18413:9485773,19449380:156430 -k1,18413:11013215,19449380:156429 -k1,18413:15007433,19449380:156430 -k1,18413:15815290,19449380:156429 -k1,18413:19185606,19449380:156430 -k1,18413:20361120,19449380:156429 -k1,18413:22080584,19449380:156430 -k1,18413:22888441,19449380:156429 -k1,18413:24441443,19449380:156430 -k1,18413:26236927,19449380:156429 -k1,18413:27660823,19449380:156430 -k1,18413:30206039,19449380:156429 -k1,18413:32583029,19449380:0 -) -(1,18414:6764466,20314460:25818563,513147,134348 -k1,18413:8132379,20314460:176468 -k1,18413:10651104,20314460:176468 -k1,18413:13202597,20314460:176468 -k1,18413:14038357,20314460:176468 -k1,18413:15233910,20314460:176468 -k1,18413:18507609,20314460:176468 -k1,18413:20251698,20314460:176468 -k1,18413:22000375,20314460:176468 -k1,18413:23991535,20314460:176468 -k1,18413:24819431,20314460:176468 -k1,18413:26381985,20314460:176468 -k1,18413:28190299,20314460:176468 -k1,18413:29018196,20314460:176469 -k1,18413:30460820,20314460:176468 -k1,18413:31259202,20314460:176445 -k1,18413:32583029,20314460:0 -) -(1,18414:6764466,21179540:25818563,505283,134348 -g1,18413:7955255,21179540 -g1,18413:11244507,21179540 -g1,18413:12059774,21179540 -g1,18413:14537690,21179540 -h1,18413:15508278,21179540:0,0,0 -g1,18413:15707507,21179540 -g1,18413:16716106,21179540 -g1,18413:18413488,21179540 -h1,18413:19210406,21179540:0,0,0 -k1,18414:32583029,21179540:13033147 -g1,18414:32583029,21179540 -) -(1,18416:6764466,22044620:25818563,513147,134348 -h1,18415:6764466,22044620:983040,0,0 -k1,18415:9149367,22044620:152089 -k1,18415:10763565,22044620:152090 -k1,18415:13869362,22044620:152089 -k1,18415:14680744,22044620:152090 -k1,18415:15851918,22044620:152089 -(1,18415:15851918,22044620:0,452978,122846 -r1,18463:17265319,22044620:1413401,575824,122846 -k1,18415:15851918,22044620:-1413401 -) -(1,18415:15851918,22044620:1413401,452978,122846 -k1,18415:15851918,22044620:3277 -h1,18415:17262042,22044620:0,411205,112570 -) -k1,18415:17417409,22044620:152090 -k1,18415:18846795,22044620:152089 -k1,18415:20958410,22044620:152089 -(1,18415:20958410,22044620:0,435480,115847 -r1,18463:21668388,22044620:709978,551327,115847 -k1,18415:20958410,22044620:-709978 -) -(1,18415:20958410,22044620:709978,435480,115847 -k1,18415:20958410,22044620:3277 -h1,18415:21665111,22044620:0,411205,112570 -) -k1,18415:21994148,22044620:152090 -k1,18415:22502097,22044620:152089 -k1,18415:24778864,22044620:152090 -k1,18415:26381920,22044620:152089 -k1,18415:27525570,22044620:152090 -k1,18415:30740812,22044620:152089 -k1,18415:32583029,22044620:0 -) -(1,18416:6764466,22909700:25818563,505283,134348 -k1,18415:8298073,22909700:165870 -k1,18415:10918265,22909700:165869 -(1,18415:10918265,22909700:0,452978,115847 -r1,18463:14090225,22909700:3171960,568825,115847 -k1,18415:10918265,22909700:-3171960 -) -(1,18415:10918265,22909700:3171960,452978,115847 -k1,18415:10918265,22909700:3277 -h1,18415:14086948,22909700:0,411205,112570 -) -k1,18415:14429765,22909700:165870 -k1,18415:16481105,22909700:165869 -k1,18415:18637959,22909700:165870 -k1,18415:19822914,22909700:165870 -k1,18415:23916356,22909700:165869 -k1,18415:26542448,22909700:165870 -k1,18415:29066958,22909700:165869 -k1,18415:31563944,22909700:165870 -k1,18415:32583029,22909700:0 -) -(1,18416:6764466,23774780:25818563,513147,134348 -g1,18415:9895120,23774780 -g1,18415:10753641,23774780 -g1,18415:11971955,23774780 -k1,18416:32583030,23774780:18599120 -g1,18416:32583030,23774780 -) -v1,18418:6764466,24459635:0,393216,0 -(1,18446:6764466,39991594:25818563,15925175,196608 -g1,18446:6764466,39991594 -g1,18446:6764466,39991594 -g1,18446:6567858,39991594 -(1,18446:6567858,39991594:0,15925175,196608 -r1,18463:32779637,39991594:26211779,16121783,196608 -k1,18446:6567857,39991594:-26211780 -) -(1,18446:6567858,39991594:26211779,15925175,196608 -[1,18446:6764466,39991594:25818563,15728567,0 -(1,18420:6764466,24687466:25818563,424439,106246 -(1,18419:6764466,24687466:0,0,0 -g1,18419:6764466,24687466 -g1,18419:6764466,24687466 -g1,18419:6436786,24687466 -(1,18419:6436786,24687466:0,0,0 -) -g1,18419:6764466,24687466 -) -k1,18420:6764466,24687466:0 -h1,18420:10415960,24687466:0,0,0 -k1,18420:32583028,24687466:22167068 -g1,18420:32583028,24687466 -) -(1,18445:6764466,25503393:25818563,424439,112852 -(1,18422:6764466,25503393:0,0,0 -g1,18422:6764466,25503393 -g1,18422:6764466,25503393 -g1,18422:6436786,25503393 -(1,18422:6436786,25503393:0,0,0 -) -g1,18422:6764466,25503393 -) -g1,18445:7760328,25503393 -g1,18445:9752052,25503393 -g1,18445:11411822,25503393 -g1,18445:13071592,25503393 -g1,18445:15063316,25503393 -g1,18445:16391132,25503393 -g1,18445:18382856,25503393 -g1,18445:19710672,25503393 -g1,18445:21702396,25503393 -g1,18445:23030212,25503393 -g1,18445:24358028,25503393 -g1,18445:26349752,25503393 -g1,18445:28009522,25503393 -h1,18445:30333200,25503393:0,0,0 -k1,18445:32583029,25503393:2249829 -g1,18445:32583029,25503393 -) -(1,18445:6764466,26188248:25818563,424439,112852 -h1,18445:6764466,26188248:0,0,0 -g1,18445:7760328,26188248 -g1,18445:10747913,26188248 -g1,18445:11079867,26188248 -g1,18445:11743775,26188248 -g1,18445:12407683,26188248 -g1,18445:14731361,26188248 -g1,18445:15395269,26188248 -g1,18445:16059177,26188248 -h1,18445:17386993,26188248:0,0,0 -k1,18445:32583029,26188248:15196036 -g1,18445:32583029,26188248 -) -(1,18445:6764466,26873103:25818563,431045,112852 -h1,18445:6764466,26873103:0,0,0 -g1,18445:7760328,26873103 -g1,18445:11079867,26873103 -g1,18445:14067452,26873103 -g1,18445:16723084,26873103 -g1,18445:18714808,26873103 -g1,18445:22366301,26873103 -g1,18445:24689979,26873103 -k1,18445:24689979,26873103:0 -h1,18445:25685841,26873103:0,0,0 -k1,18445:32583029,26873103:6897188 -g1,18445:32583029,26873103 -) -(1,18445:6764466,27557958:25818563,431045,106246 -h1,18445:6764466,27557958:0,0,0 -g1,18445:7760328,27557958 -g1,18445:8092282,27557958 -g1,18445:8424236,27557958 -g1,18445:8756190,27557958 -g1,18445:9088144,27557958 -g1,18445:14399407,27557958 -h1,18445:17055038,27557958:0,0,0 -k1,18445:32583029,27557958:15527991 -g1,18445:32583029,27557958 -) -(1,18445:6764466,28242813:25818563,431045,52847 -h1,18445:6764466,28242813:0,0,0 -g1,18445:7760328,28242813 -g1,18445:8092282,28242813 -g1,18445:8424236,28242813 -g1,18445:8756190,28242813 -g1,18445:9088144,28242813 -g1,18445:12739637,28242813 -h1,18445:15395268,28242813:0,0,0 -k1,18445:32583028,28242813:17187760 -g1,18445:32583028,28242813 -) -(1,18445:6764466,28927668:25818563,431045,52847 -h1,18445:6764466,28927668:0,0,0 -g1,18445:7760328,28927668 -g1,18445:8092282,28927668 -g1,18445:8424236,28927668 -g1,18445:8756190,28927668 -g1,18445:9088144,28927668 -g1,18445:13071591,28927668 -h1,18445:15727222,28927668:0,0,0 -k1,18445:32583030,28927668:16855808 -g1,18445:32583030,28927668 -) -(1,18445:6764466,29612523:25818563,431045,52847 -h1,18445:6764466,29612523:0,0,0 -g1,18445:7760328,29612523 -g1,18445:8092282,29612523 -g1,18445:8424236,29612523 -g1,18445:8756190,29612523 -g1,18445:9088144,29612523 -g1,18445:13403545,29612523 -h1,18445:16059176,29612523:0,0,0 -k1,18445:32583029,29612523:16523853 -g1,18445:32583029,29612523 -) -(1,18445:6764466,30297378:25818563,431045,106246 -h1,18445:6764466,30297378:0,0,0 -g1,18445:7760328,30297378 -g1,18445:8092282,30297378 -g1,18445:8424236,30297378 -g1,18445:8756190,30297378 -g1,18445:9088144,30297378 -g1,18445:13403545,30297378 -h1,18445:16059176,30297378:0,0,0 -k1,18445:32583029,30297378:16523853 -g1,18445:32583029,30297378 -) -(1,18445:6764466,30982233:25818563,431045,52847 -h1,18445:6764466,30982233:0,0,0 -g1,18445:7760328,30982233 -g1,18445:8092282,30982233 -g1,18445:8424236,30982233 -g1,18445:8756190,30982233 -g1,18445:9088144,30982233 -g1,18445:13403545,30982233 -h1,18445:16059176,30982233:0,0,0 -k1,18445:32583029,30982233:16523853 -g1,18445:32583029,30982233 -) -(1,18445:6764466,31667088:25818563,431045,52847 -h1,18445:6764466,31667088:0,0,0 -g1,18445:7760328,31667088 -g1,18445:8092282,31667088 -g1,18445:8424236,31667088 -g1,18445:8756190,31667088 -g1,18445:9088144,31667088 -g1,18445:13403545,31667088 -h1,18445:16059176,31667088:0,0,0 -k1,18445:32583029,31667088:16523853 -g1,18445:32583029,31667088 -) -(1,18445:6764466,32351943:25818563,431045,106246 -h1,18445:6764466,32351943:0,0,0 -g1,18445:7760328,32351943 -g1,18445:8092282,32351943 -g1,18445:8424236,32351943 -g1,18445:8756190,32351943 -g1,18445:9088144,32351943 -g1,18445:12407683,32351943 -h1,18445:15063314,32351943:0,0,0 -k1,18445:32583030,32351943:17519716 -g1,18445:32583030,32351943 -) -(1,18445:6764466,33036798:25818563,424439,106246 -h1,18445:6764466,33036798:0,0,0 -g1,18445:7760328,33036798 -g1,18445:8092282,33036798 -g1,18445:8424236,33036798 -g1,18445:8756190,33036798 -g1,18445:9088144,33036798 -g1,18445:11743776,33036798 -h1,18445:13071592,33036798:0,0,0 -k1,18445:32583028,33036798:19511436 -g1,18445:32583028,33036798 -) -(1,18445:6764466,33721653:25818563,431045,106246 -h1,18445:6764466,33721653:0,0,0 -g1,18445:7760328,33721653 -g1,18445:8092282,33721653 -g1,18445:8424236,33721653 -g1,18445:8756190,33721653 -g1,18445:9088144,33721653 -g1,18445:13071591,33721653 -h1,18445:15727222,33721653:0,0,0 -k1,18445:32583030,33721653:16855808 -g1,18445:32583030,33721653 -) -(1,18445:6764466,34406508:25818563,431045,106246 -h1,18445:6764466,34406508:0,0,0 -g1,18445:7760328,34406508 -g1,18445:8092282,34406508 -g1,18445:8424236,34406508 -g1,18445:8756190,34406508 -g1,18445:9088144,34406508 -g1,18445:13735499,34406508 -h1,18445:16391130,34406508:0,0,0 -k1,18445:32583029,34406508:16191899 -g1,18445:32583029,34406508 -) -(1,18445:6764466,35091363:25818563,424439,8257 -h1,18445:6764466,35091363:0,0,0 -g1,18445:7760328,35091363 -g1,18445:8092282,35091363 -g1,18445:8424236,35091363 -g1,18445:8756190,35091363 -g1,18445:9088144,35091363 -g1,18445:11743776,35091363 -h1,18445:13071592,35091363:0,0,0 -k1,18445:32583028,35091363:19511436 -g1,18445:32583028,35091363 -) -(1,18445:6764466,35776218:25818563,431045,52847 -h1,18445:6764466,35776218:0,0,0 -g1,18445:7760328,35776218 -g1,18445:8092282,35776218 -g1,18445:8424236,35776218 -g1,18445:8756190,35776218 -g1,18445:9088144,35776218 -g1,18445:13735499,35776218 -h1,18445:16391130,35776218:0,0,0 -k1,18445:32583029,35776218:16191899 -g1,18445:32583029,35776218 -) -(1,18445:6764466,36461073:25818563,431045,6605 -h1,18445:6764466,36461073:0,0,0 -g1,18445:7760328,36461073 -g1,18445:8092282,36461073 -g1,18445:8424236,36461073 -g1,18445:8756190,36461073 -g1,18445:9088144,36461073 -g1,18445:11079868,36461073 -h1,18445:13735499,36461073:0,0,0 -k1,18445:32583029,36461073:18847530 -g1,18445:32583029,36461073 -) -(1,18445:6764466,37145928:25818563,424439,112852 -h1,18445:6764466,37145928:0,0,0 -g1,18445:7760328,37145928 -g1,18445:8092282,37145928 -g1,18445:8424236,37145928 -g1,18445:8756190,37145928 -g1,18445:9088144,37145928 -g1,18445:11411822,37145928 -g1,18445:11743776,37145928 -g1,18445:14731361,37145928 -g1,18445:17386993,37145928 -g1,18445:19378717,37145928 -g1,18445:23030210,37145928 -g1,18445:25353888,37145928 -k1,18445:25353888,37145928:0 -h1,18445:26349750,37145928:0,0,0 -k1,18445:32583029,37145928:6233279 -g1,18445:32583029,37145928 -) -(1,18445:6764466,37830783:25818563,398014,0 -h1,18445:6764466,37830783:0,0,0 -g1,18445:7760328,37830783 -k1,18445:7760328,37830783:0 -h1,18445:19378718,37830783:0,0,0 -k1,18445:32583029,37830783:13204311 -g1,18445:32583029,37830783 -) -(1,18445:6764466,38515638:25818563,424439,112852 -h1,18445:6764466,38515638:0,0,0 -g1,18445:7760328,38515638 -g1,18445:11743775,38515638 -g1,18445:13735499,38515638 -g1,18445:14399407,38515638 -h1,18445:16059177,38515638:0,0,0 -k1,18445:32583029,38515638:16523852 -g1,18445:32583029,38515638 -) -(1,18445:6764466,39200493:25818563,424439,106246 -h1,18445:6764466,39200493:0,0,0 -g1,18445:7760328,39200493 -g1,18445:12739637,39200493 -g1,18445:14731361,39200493 -g1,18445:15395269,39200493 -h1,18445:17055039,39200493:0,0,0 -k1,18445:32583029,39200493:15527990 -g1,18445:32583029,39200493 -) -(1,18445:6764466,39885348:25818563,424439,106246 -h1,18445:6764466,39885348:0,0,0 -g1,18445:7760328,39885348 -h1,18445:13403545,39885348:0,0,0 -k1,18445:32583029,39885348:19179484 -g1,18445:32583029,39885348 -) -] -) -g1,18446:32583029,39991594 -g1,18446:6764466,39991594 -g1,18446:6764466,39991594 -g1,18446:32583029,39991594 -g1,18446:32583029,39991594 -) -h1,18446:6764466,40188202:0,0,0 -(1,18450:6764466,41053282:25818563,513147,134348 -h1,18449:6764466,41053282:983040,0,0 -k1,18449:10303090,41053282:157622 -(1,18449:10303090,41053282:0,452978,115847 -r1,18463:12068203,41053282:1765113,568825,115847 -k1,18449:10303090,41053282:-1765113 -) -(1,18449:10303090,41053282:1765113,452978,115847 -k1,18449:10303090,41053282:3277 -h1,18449:12064926,41053282:0,411205,112570 -) -k1,18449:12225824,41053282:157621 -k1,18449:14374430,41053282:157622 -k1,18449:15551137,41053282:157622 -k1,18449:18640183,41053282:157621 -k1,18449:19457097,41053282:157622 -k1,18449:21904547,41053282:157622 -k1,18449:23253614,41053282:157622 -k1,18449:24515517,41053282:157621 -k1,18449:25420905,41053282:157622 -k1,18449:26864343,41053282:157622 -k1,18449:28535190,41053282:157621 -k1,18449:29344240,41053282:157622 -k1,18449:32583029,41053282:0 -) -(1,18450:6764466,41918362:25818563,505283,134348 -k1,18449:8379097,41918362:246894 -k1,18449:10982011,41918362:246895 -k1,18449:12824707,41918362:246894 -k1,18449:15230358,41918362:246895 -k1,18449:16543523,41918362:246894 -k1,18449:19246706,41918362:246894 -k1,18449:23752131,41918362:246895 -(1,18449:23752131,41918362:0,452978,115847 -r1,18463:26220668,41918362:2468537,568825,115847 -k1,18449:23752131,41918362:-2468537 -) -(1,18449:23752131,41918362:2468537,452978,115847 -k1,18449:23752131,41918362:3277 -h1,18449:26217391,41918362:0,411205,112570 -) -k1,18449:26467562,41918362:246894 -k1,18449:29248734,41918362:246895 -k1,18449:30514713,41918362:246894 -k1,18449:32583029,41918362:0 -) -(1,18450:6764466,42783442:25818563,513147,126483 -g1,18449:7622987,42783442 -g1,18449:8841301,42783442 -g1,18449:11787799,42783442 -g1,18449:14940736,42783442 -g1,18449:15807121,42783442 -(1,18449:15807121,42783442:0,435480,115847 -r1,18463:16517099,42783442:709978,551327,115847 -k1,18449:15807121,42783442:-709978 -) -(1,18449:15807121,42783442:709978,435480,115847 -k1,18449:15807121,42783442:3277 -h1,18449:16513822,42783442:0,411205,112570 -) -k1,18450:32583029,42783442:16013502 -g1,18450:32583029,42783442 -) -] -g1,18463:32583029,42909925 -) -] -(1,18463:32583029,45706769:0,0,0 -g1,18463:32583029,45706769 -) -) -] -(1,18463:6630773,47279633:25952256,0,0 -h1,18463:6630773,47279633:25952256,0,0 -) -] -(1,18463:4262630,4025873:0,0,0 -[1,18463:-473656,4025873:0,0,0 -(1,18463:-473656,-710413:0,0,0 -(1,18463:-473656,-710413:0,0,0 -g1,18463:-473656,-710413 +] +g1,18461:6630773,4812305 +g1,18461:6630773,4812305 +g1,18461:8017514,4812305 +g1,18461:11362471,4812305 +g1,18461:12177738,4812305 +g1,18461:15187806,4812305 +k1,18461:31387652,4812305:16199846 +) +) +] +[1,18461:6630773,45706769:25952256,40108032,0 +(1,18461:6630773,45706769:25952256,40108032,0 +(1,18461:6630773,45706769:0,0,0 +g1,18461:6630773,45706769 +) +[1,18461:6630773,45706769:25952256,40108032,0 +v1,18402:6630773,6254097:0,393216,0 +(1,18403:6630773,7526002:25952256,1665121,0 +g1,18403:6630773,7526002 +g1,18403:6237557,7526002 +r1,18461:6368629,7526002:131072,1665121,0 +g1,18403:6567858,7526002 +g1,18403:6764466,7526002 +[1,18403:6764466,7526002:25818563,1665121,0 +(1,18403:6764466,6526574:25818563,665693,196608 +(1,18402:6764466,6526574:0,665693,196608 +r1,18461:7868133,6526574:1103667,862301,196608 +k1,18402:6764466,6526574:-1103667 +) +(1,18402:6764466,6526574:1103667,665693,196608 +) +k1,18402:8090812,6526574:222679 +k1,18402:9408741,6526574:327680 +k1,18402:13043881,6526574:222680 +k1,18402:14285645,6526574:222679 +k1,18402:17500043,6526574:222679 +k1,18402:18338760,6526574:222679 +k1,18402:19580525,6526574:222680 +k1,18402:22557682,6526574:222679 +k1,18402:25232718,6526574:222679 +k1,18402:27190790,6526574:222679 +(1,18402:27190790,6526574:0,435480,115847 +r1,18461:27900768,6526574:709978,551327,115847 +k1,18402:27190790,6526574:-709978 +) +(1,18402:27190790,6526574:709978,435480,115847 +k1,18402:27190790,6526574:3277 +h1,18402:27897491,6526574:0,411205,112570 +) +k1,18402:28123448,6526574:222680 +k1,18402:30727705,6526574:222679 +k1,18402:32583029,6526574:0 +) +(1,18403:6764466,7391654:25818563,513147,134348 +g1,18402:7649857,7391654 +g1,18402:8204946,7391654 +g1,18402:10022259,7391654 +g1,18402:12548671,7391654 +g1,18402:13407192,7391654 +g1,18402:16239002,7391654 +g1,18402:17889853,7391654 +g1,18402:19366379,7391654 +g1,18402:21133229,7391654 +k1,18403:32583029,7391654:9083951 +g1,18403:32583029,7391654 +) +] +g1,18403:32583029,7526002 +) +h1,18403:6630773,7526002:0,0,0 +v1,18406:6630773,8391082:0,393216,0 +(1,18408:6630773,15680762:25952256,7682896,0 +g1,18408:6630773,15680762 +g1,18408:6237557,15680762 +r1,18461:6368629,15680762:131072,7682896,0 +g1,18408:6567858,15680762 +g1,18408:6764466,15680762 +[1,18408:6764466,15680762:25818563,7682896,0 +(1,18408:6764466,8752259:25818563,754393,260573 +(1,18406:6764466,8752259:0,754393,260573 +r1,18461:7856192,8752259:1091726,1014966,260573 +k1,18406:6764466,8752259:-1091726 +) +(1,18406:6764466,8752259:1091726,754393,260573 +) +k1,18406:8080949,8752259:224757 +k1,18406:8408629,8752259:327680 +k1,18406:8408629,8752259:0 +k1,18407:9830074,8752259:224758 +k1,18407:13420760,8752259:224757 +k1,18407:14304810,8752259:224758 +k1,18407:15806864,8752259:224757 +k1,18407:20066018,8752259:224758 +k1,18407:21482220,8752259:224757 +k1,18407:24804209,8752259:224758 +k1,18407:25560463,8752259:224757 +k1,18407:28415181,8752259:224758 +k1,18407:31169628,8752259:224757 +(1,18407:31169628,8752259:0,452978,122846 +r1,18461:32583029,8752259:1413401,575824,122846 +k1,18407:31169628,8752259:-1413401 +) +(1,18407:31169628,8752259:1413401,452978,122846 +k1,18407:31169628,8752259:3277 +h1,18407:32579752,8752259:0,411205,112570 +) +k1,18407:32583029,8752259:0 +) +(1,18408:6764466,9617339:25818563,513147,134348 +k1,18407:9319871,9617339:265577 +k1,18407:10577008,9617339:265577 +k1,18407:15516613,9617339:265577 +k1,18407:16269712,9617339:265511 +k1,18407:18045239,9617339:265577 +k1,18407:18970108,9617339:265577 +k1,18407:20254770,9617339:265577 +k1,18407:21909710,9617339:265577 +k1,18407:24134813,9617339:265577 +k1,18407:26605677,9617339:265577 +k1,18407:27557416,9617339:265577 +k1,18407:28593696,9617339:265577 +k1,18407:31931601,9617339:265577 +k1,18408:32583029,9617339:0 +) +(1,18408:6764466,10482419:25818563,513147,134348 +(1,18407:6764466,10482419:0,452978,115847 +r1,18461:8177867,10482419:1413401,568825,115847 +k1,18407:6764466,10482419:-1413401 +) +(1,18407:6764466,10482419:1413401,452978,115847 +k1,18407:6764466,10482419:3277 +h1,18407:8174590,10482419:0,411205,112570 +) +k1,18407:8444660,10482419:266793 +k1,18407:9242951,10482419:266794 +k1,18407:11321159,10482419:266793 +k1,18407:13597941,10482419:266793 +k1,18407:14883820,10482419:266794 +k1,18407:16427910,10482419:266793 +k1,18407:18827900,10482419:266793 +k1,18407:21862935,10482419:266794 +k1,18407:22815890,10482419:266793 +k1,18407:23698722,10482419:266794 +k1,18407:26853687,10482419:266793 +k1,18407:29583978,10482419:266793 +k1,18407:30478607,10482419:266794 +k1,18407:31764485,10482419:266793 +k1,18408:32583029,10482419:0 +) +(1,18408:6764466,11347499:25818563,513147,126483 +k1,18407:8929686,11347499:216179 +k1,18407:11174859,11347499:216178 +(1,18407:11174859,11347499:0,435480,115847 +r1,18461:11884837,11347499:709978,551327,115847 +k1,18407:11174859,11347499:-709978 +) +(1,18407:11174859,11347499:709978,435480,115847 +k1,18407:11174859,11347499:3277 +h1,18407:11881560,11347499:0,411205,112570 +) +k1,18407:12101016,11347499:216179 +k1,18407:13078722,11347499:216178 +k1,18407:14900533,11347499:216179 +k1,18407:16885528,11347499:216178 +k1,18407:17849473,11347499:216179 +k1,18407:19877066,11347499:216178 +k1,18407:20744673,11347499:216179 +k1,18407:21316711,11347499:216178 +k1,18407:22515930,11347499:216179 +k1,18407:23541478,11347499:216178 +k1,18407:25102456,11347499:216179 +k1,18407:26510079,11347499:216178 +k1,18407:28870596,11347499:216179 +k1,18407:30354240,11347499:216178 +k1,18407:30926279,11347499:216179 +k1,18408:32583029,11347499:0 +) +(1,18408:6764466,12212579:25818563,505283,134348 +k1,18407:7399818,12212579:220509 +k1,18407:10142830,12212579:220531 +k1,18407:11830056,12212579:220530 +k1,18407:12859956,12212579:220530 +k1,18407:15553160,12212579:220531 +k1,18407:19023620,12212579:220530 +k1,18407:20435596,12212579:220531 +k1,18407:23531190,12212579:220530 +k1,18407:24437883,12212579:220531 +k1,18407:26047121,12212579:220530 +k1,18407:26953814,12212579:220531 +k1,18407:29754496,12212579:220530 +k1,18407:32583029,12212579:0 +) +(1,18408:6764466,13077659:25818563,513147,134348 +k1,18407:8155250,13077659:199339 +k1,18407:9142986,13077659:199338 +k1,18407:13688673,13077659:199339 +k1,18407:14879571,13077659:199338 +k1,18407:18036550,13077659:199339 +k1,18407:20840289,13077659:199338 +k1,18407:25122521,13077659:199339 +k1,18407:25981151,13077659:199338 +k1,18407:28440827,13077659:199339 +k1,18407:28996025,13077659:199338 +k1,18407:30705314,13077659:199339 +k1,18407:31563944,13077659:199338 +k1,18407:32583029,13077659:0 +) +(1,18408:6764466,13942739:25818563,505283,134348 +k1,18407:8310318,13942739:156489 +k1,18407:9082845,13942739:156489 +k1,18407:10258420,13942739:156490 +k1,18407:11692206,13942739:156489 +k1,18407:13981892,13942739:156489 +k1,18407:14669878,13942739:156489 +k1,18407:16110874,13942739:156490 +k1,18407:17720952,13942739:156489 +k1,18407:20448418,13942739:156489 +k1,18407:21256335,13942739:156489 +k1,18407:22431910,13942739:156490 +k1,18407:23977762,13942739:156489 +k1,18407:26093777,13942739:156489 +k1,18407:27763492,13942739:156489 +k1,18407:28571410,13942739:156490 +k1,18407:30657279,13942739:156489 +k1,18407:31169628,13942739:156489 +(1,18407:31169628,13942739:0,452978,122846 +r1,18461:32583029,13942739:1413401,575824,122846 +k1,18407:31169628,13942739:-1413401 +) +(1,18407:31169628,13942739:1413401,452978,122846 +k1,18407:31169628,13942739:3277 +h1,18407:32579752,13942739:0,411205,112570 +) +k1,18407:32583029,13942739:0 +) +(1,18408:6764466,14807819:25818563,513147,134348 +k1,18407:8943134,14807819:219142 +k1,18407:10153837,14807819:219143 +k1,18407:11435973,14807819:219142 +k1,18407:14431221,14807819:219143 +k1,18407:15266401,14807819:219142 +k1,18407:17334969,14807819:219142 +k1,18407:20429176,14807819:219143 +k1,18407:22255916,14807819:219142 +k1,18407:24042679,14807819:219142 +k1,18407:25465063,14807819:219143 +k1,18407:27817402,14807819:219142 +k1,18407:29055630,14807819:219143 +k1,18407:30623503,14807819:219142 +k1,18407:32583029,14807819:0 +) +(1,18408:6764466,15672899:25818563,505283,7863 +g1,18407:8824262,15672899 +g1,18407:9674919,15672899 +g1,18407:10621914,15672899 +g1,18407:13171264,15672899 +k1,18408:32583028,15672899:17720280 +g1,18408:32583028,15672899 +) +] +g1,18408:32583029,15680762 +) +h1,18408:6630773,15680762:0,0,0 +v1,18411:6630773,16545842:0,393216,0 +(1,18461:6630773,42909925:25952256,26757299,0 +g1,18461:6630773,42909925 +g1,18461:6237557,42909925 +r1,18461:6368629,42909925:131072,26757299,0 +g1,18461:6567858,42909925 +g1,18461:6764466,42909925 +[1,18461:6764466,42909925:25818563,26757299,0 +(1,18412:6764466,16854140:25818563,701514,196608 +(1,18411:6764466,16854140:0,701514,196608 +r1,18461:7761522,16854140:997056,898122,196608 +k1,18411:6764466,16854140:-997056 +) +(1,18411:6764466,16854140:997056,701514,196608 +) +k1,18411:7963460,16854140:201938 +k1,18411:8291140,16854140:327680 +k1,18411:9689765,16854140:201938 +k1,18411:11785693,16854140:201938 +k1,18411:12935282,16854140:201938 +k1,18411:13493079,16854140:201937 +k1,18411:14972314,16854140:201938 +k1,18411:15705749,16854140:201938 +k1,18411:17945857,16854140:201938 +k1,18411:18763833,16854140:201938 +k1,18411:19321631,16854140:201938 +(1,18411:19321631,16854140:0,452978,122846 +r1,18461:20735032,16854140:1413401,575824,122846 +k1,18411:19321631,16854140:-1413401 +) +(1,18411:19321631,16854140:1413401,452978,122846 +k1,18411:19321631,16854140:3277 +h1,18411:20731755,16854140:0,411205,112570 +) +k1,18411:20936970,16854140:201938 +k1,18411:22416205,16854140:201938 +k1,18411:24751339,16854140:201937 +k1,18411:27357793,16854140:201938 +k1,18411:28219023,16854140:201938 +k1,18411:29976130,16854140:201938 +(1,18411:29976130,16854140:0,452978,122846 +r1,18461:31389531,16854140:1413401,575824,122846 +k1,18411:29976130,16854140:-1413401 +) +(1,18411:29976130,16854140:1413401,452978,122846 +k1,18411:29976130,16854140:3277 +h1,18411:31386254,16854140:0,411205,112570 +) +k1,18411:31591469,16854140:201938 +k1,18411:32583029,16854140:0 +) +(1,18412:6764466,17719220:25818563,513147,134348 +k1,18411:7636166,17719220:212408 +k1,18411:9631153,17719220:212408 +(1,18411:9631153,17719220:0,452978,115847 +r1,18461:11747978,17719220:2116825,568825,115847 +k1,18411:9631153,17719220:-2116825 +) +(1,18411:9631153,17719220:2116825,452978,115847 +k1,18411:9631153,17719220:3277 +h1,18411:11744701,17719220:0,411205,112570 +) +k1,18411:12134055,17719220:212407 +k1,18411:12974298,17719220:212408 +k1,18411:13775219,17719220:212408 +k1,18411:15311454,17719220:212408 +k1,18411:16628143,17719220:212407 +k1,18411:19212299,17719220:212408 +k1,18411:24097424,17719220:212408 +k1,18411:27263540,17719220:212408 +k1,18411:28667392,17719220:212407 +(1,18411:28667392,17719220:0,452978,122846 +r1,18461:30080793,17719220:1413401,575824,122846 +k1,18411:28667392,17719220:-1413401 +) +(1,18411:28667392,17719220:1413401,452978,122846 +k1,18411:28667392,17719220:3277 +h1,18411:30077516,17719220:0,411205,112570 +) +k1,18411:30293201,17719220:212408 +k1,18411:32583029,17719220:0 +) +(1,18412:6764466,18584300:25818563,513147,126483 +k1,18411:9390785,18584300:254571 +k1,18411:11208390,18584300:254571 +k1,18411:14158456,18584300:254570 +k1,18411:17999157,18584300:254571 +k1,18411:19445173,18584300:254571 +k1,18411:23590616,18584300:254571 +k1,18411:27789143,18584300:254570 +k1,18411:28671549,18584300:254571 +k1,18411:30628090,18584300:254571 +k1,18411:32583029,18584300:0 +) +(1,18412:6764466,19449380:25818563,513147,134348 +k1,18411:7939980,19449380:156429 +k1,18411:9485773,19449380:156430 +k1,18411:11013215,19449380:156429 +k1,18411:15007433,19449380:156430 +k1,18411:15815290,19449380:156429 +k1,18411:19185606,19449380:156430 +k1,18411:20361120,19449380:156429 +k1,18411:22080584,19449380:156430 +k1,18411:22888441,19449380:156429 +k1,18411:24441443,19449380:156430 +k1,18411:26236927,19449380:156429 +k1,18411:27660823,19449380:156430 +k1,18411:30206039,19449380:156429 +k1,18411:32583029,19449380:0 +) +(1,18412:6764466,20314460:25818563,513147,134348 +k1,18411:8132379,20314460:176468 +k1,18411:10651104,20314460:176468 +k1,18411:13202597,20314460:176468 +k1,18411:14038357,20314460:176468 +k1,18411:15233910,20314460:176468 +k1,18411:18507609,20314460:176468 +k1,18411:20251698,20314460:176468 +k1,18411:22000375,20314460:176468 +k1,18411:23991535,20314460:176468 +k1,18411:24819431,20314460:176468 +k1,18411:26381985,20314460:176468 +k1,18411:28190299,20314460:176468 +k1,18411:29018196,20314460:176469 +k1,18411:30460820,20314460:176468 +k1,18411:31259202,20314460:176445 +k1,18411:32583029,20314460:0 +) +(1,18412:6764466,21179540:25818563,505283,134348 +g1,18411:7955255,21179540 +g1,18411:11244507,21179540 +g1,18411:12059774,21179540 +g1,18411:14537690,21179540 +h1,18411:15508278,21179540:0,0,0 +g1,18411:15707507,21179540 +g1,18411:16716106,21179540 +g1,18411:18413488,21179540 +h1,18411:19210406,21179540:0,0,0 +k1,18412:32583029,21179540:13033147 +g1,18412:32583029,21179540 +) +(1,18414:6764466,22044620:25818563,513147,134348 +h1,18413:6764466,22044620:983040,0,0 +k1,18413:9149367,22044620:152089 +k1,18413:10763565,22044620:152090 +k1,18413:13869362,22044620:152089 +k1,18413:14680744,22044620:152090 +k1,18413:15851918,22044620:152089 +(1,18413:15851918,22044620:0,452978,122846 +r1,18461:17265319,22044620:1413401,575824,122846 +k1,18413:15851918,22044620:-1413401 +) +(1,18413:15851918,22044620:1413401,452978,122846 +k1,18413:15851918,22044620:3277 +h1,18413:17262042,22044620:0,411205,112570 +) +k1,18413:17417409,22044620:152090 +k1,18413:18846795,22044620:152089 +k1,18413:20958410,22044620:152089 +(1,18413:20958410,22044620:0,435480,115847 +r1,18461:21668388,22044620:709978,551327,115847 +k1,18413:20958410,22044620:-709978 +) +(1,18413:20958410,22044620:709978,435480,115847 +k1,18413:20958410,22044620:3277 +h1,18413:21665111,22044620:0,411205,112570 +) +k1,18413:21994148,22044620:152090 +k1,18413:22502097,22044620:152089 +k1,18413:24778864,22044620:152090 +k1,18413:26381920,22044620:152089 +k1,18413:27525570,22044620:152090 +k1,18413:30740812,22044620:152089 +k1,18413:32583029,22044620:0 +) +(1,18414:6764466,22909700:25818563,505283,134348 +k1,18413:8298073,22909700:165870 +k1,18413:10918265,22909700:165869 +(1,18413:10918265,22909700:0,452978,115847 +r1,18461:14090225,22909700:3171960,568825,115847 +k1,18413:10918265,22909700:-3171960 +) +(1,18413:10918265,22909700:3171960,452978,115847 +k1,18413:10918265,22909700:3277 +h1,18413:14086948,22909700:0,411205,112570 +) +k1,18413:14429765,22909700:165870 +k1,18413:16481105,22909700:165869 +k1,18413:18637959,22909700:165870 +k1,18413:19822914,22909700:165870 +k1,18413:23916356,22909700:165869 +k1,18413:26542448,22909700:165870 +k1,18413:29066958,22909700:165869 +k1,18413:31563944,22909700:165870 +k1,18413:32583029,22909700:0 +) +(1,18414:6764466,23774780:25818563,513147,134348 +g1,18413:9895120,23774780 +g1,18413:10753641,23774780 +g1,18413:11971955,23774780 +k1,18414:32583030,23774780:18599120 +g1,18414:32583030,23774780 +) +v1,18416:6764466,24459635:0,393216,0 +(1,18444:6764466,39991594:25818563,15925175,196608 +g1,18444:6764466,39991594 +g1,18444:6764466,39991594 +g1,18444:6567858,39991594 +(1,18444:6567858,39991594:0,15925175,196608 +r1,18461:32779637,39991594:26211779,16121783,196608 +k1,18444:6567857,39991594:-26211780 +) +(1,18444:6567858,39991594:26211779,15925175,196608 +[1,18444:6764466,39991594:25818563,15728567,0 +(1,18418:6764466,24687466:25818563,424439,106246 +(1,18417:6764466,24687466:0,0,0 +g1,18417:6764466,24687466 +g1,18417:6764466,24687466 +g1,18417:6436786,24687466 +(1,18417:6436786,24687466:0,0,0 +) +g1,18417:6764466,24687466 +) +k1,18418:6764466,24687466:0 +h1,18418:10415960,24687466:0,0,0 +k1,18418:32583028,24687466:22167068 +g1,18418:32583028,24687466 +) +(1,18443:6764466,25503393:25818563,424439,112852 +(1,18420:6764466,25503393:0,0,0 +g1,18420:6764466,25503393 +g1,18420:6764466,25503393 +g1,18420:6436786,25503393 +(1,18420:6436786,25503393:0,0,0 +) +g1,18420:6764466,25503393 +) +g1,18443:7760328,25503393 +g1,18443:9752052,25503393 +g1,18443:11411822,25503393 +g1,18443:13071592,25503393 +g1,18443:15063316,25503393 +g1,18443:16391132,25503393 +g1,18443:18382856,25503393 +g1,18443:19710672,25503393 +g1,18443:21702396,25503393 +g1,18443:23030212,25503393 +g1,18443:24358028,25503393 +g1,18443:26349752,25503393 +g1,18443:28009522,25503393 +h1,18443:30333200,25503393:0,0,0 +k1,18443:32583029,25503393:2249829 +g1,18443:32583029,25503393 +) +(1,18443:6764466,26188248:25818563,424439,112852 +h1,18443:6764466,26188248:0,0,0 +g1,18443:7760328,26188248 +g1,18443:10747913,26188248 +g1,18443:11079867,26188248 +g1,18443:11743775,26188248 +g1,18443:12407683,26188248 +g1,18443:14731361,26188248 +g1,18443:15395269,26188248 +g1,18443:16059177,26188248 +h1,18443:17386993,26188248:0,0,0 +k1,18443:32583029,26188248:15196036 +g1,18443:32583029,26188248 +) +(1,18443:6764466,26873103:25818563,431045,112852 +h1,18443:6764466,26873103:0,0,0 +g1,18443:7760328,26873103 +g1,18443:11079867,26873103 +g1,18443:14067452,26873103 +g1,18443:16723084,26873103 +g1,18443:18714808,26873103 +g1,18443:22366301,26873103 +g1,18443:24689979,26873103 +k1,18443:24689979,26873103:0 +h1,18443:25685841,26873103:0,0,0 +k1,18443:32583029,26873103:6897188 +g1,18443:32583029,26873103 +) +(1,18443:6764466,27557958:25818563,431045,106246 +h1,18443:6764466,27557958:0,0,0 +g1,18443:7760328,27557958 +g1,18443:8092282,27557958 +g1,18443:8424236,27557958 +g1,18443:8756190,27557958 +g1,18443:9088144,27557958 +g1,18443:14399407,27557958 +h1,18443:17055038,27557958:0,0,0 +k1,18443:32583029,27557958:15527991 +g1,18443:32583029,27557958 +) +(1,18443:6764466,28242813:25818563,431045,52847 +h1,18443:6764466,28242813:0,0,0 +g1,18443:7760328,28242813 +g1,18443:8092282,28242813 +g1,18443:8424236,28242813 +g1,18443:8756190,28242813 +g1,18443:9088144,28242813 +g1,18443:12739637,28242813 +h1,18443:15395268,28242813:0,0,0 +k1,18443:32583028,28242813:17187760 +g1,18443:32583028,28242813 +) +(1,18443:6764466,28927668:25818563,431045,52847 +h1,18443:6764466,28927668:0,0,0 +g1,18443:7760328,28927668 +g1,18443:8092282,28927668 +g1,18443:8424236,28927668 +g1,18443:8756190,28927668 +g1,18443:9088144,28927668 +g1,18443:13071591,28927668 +h1,18443:15727222,28927668:0,0,0 +k1,18443:32583030,28927668:16855808 +g1,18443:32583030,28927668 +) +(1,18443:6764466,29612523:25818563,431045,52847 +h1,18443:6764466,29612523:0,0,0 +g1,18443:7760328,29612523 +g1,18443:8092282,29612523 +g1,18443:8424236,29612523 +g1,18443:8756190,29612523 +g1,18443:9088144,29612523 +g1,18443:13403545,29612523 +h1,18443:16059176,29612523:0,0,0 +k1,18443:32583029,29612523:16523853 +g1,18443:32583029,29612523 +) +(1,18443:6764466,30297378:25818563,431045,106246 +h1,18443:6764466,30297378:0,0,0 +g1,18443:7760328,30297378 +g1,18443:8092282,30297378 +g1,18443:8424236,30297378 +g1,18443:8756190,30297378 +g1,18443:9088144,30297378 +g1,18443:13403545,30297378 +h1,18443:16059176,30297378:0,0,0 +k1,18443:32583029,30297378:16523853 +g1,18443:32583029,30297378 +) +(1,18443:6764466,30982233:25818563,431045,52847 +h1,18443:6764466,30982233:0,0,0 +g1,18443:7760328,30982233 +g1,18443:8092282,30982233 +g1,18443:8424236,30982233 +g1,18443:8756190,30982233 +g1,18443:9088144,30982233 +g1,18443:13403545,30982233 +h1,18443:16059176,30982233:0,0,0 +k1,18443:32583029,30982233:16523853 +g1,18443:32583029,30982233 +) +(1,18443:6764466,31667088:25818563,431045,52847 +h1,18443:6764466,31667088:0,0,0 +g1,18443:7760328,31667088 +g1,18443:8092282,31667088 +g1,18443:8424236,31667088 +g1,18443:8756190,31667088 +g1,18443:9088144,31667088 +g1,18443:13403545,31667088 +h1,18443:16059176,31667088:0,0,0 +k1,18443:32583029,31667088:16523853 +g1,18443:32583029,31667088 +) +(1,18443:6764466,32351943:25818563,431045,106246 +h1,18443:6764466,32351943:0,0,0 +g1,18443:7760328,32351943 +g1,18443:8092282,32351943 +g1,18443:8424236,32351943 +g1,18443:8756190,32351943 +g1,18443:9088144,32351943 +g1,18443:12407683,32351943 +h1,18443:15063314,32351943:0,0,0 +k1,18443:32583030,32351943:17519716 +g1,18443:32583030,32351943 +) +(1,18443:6764466,33036798:25818563,424439,106246 +h1,18443:6764466,33036798:0,0,0 +g1,18443:7760328,33036798 +g1,18443:8092282,33036798 +g1,18443:8424236,33036798 +g1,18443:8756190,33036798 +g1,18443:9088144,33036798 +g1,18443:11743776,33036798 +h1,18443:13071592,33036798:0,0,0 +k1,18443:32583028,33036798:19511436 +g1,18443:32583028,33036798 +) +(1,18443:6764466,33721653:25818563,431045,106246 +h1,18443:6764466,33721653:0,0,0 +g1,18443:7760328,33721653 +g1,18443:8092282,33721653 +g1,18443:8424236,33721653 +g1,18443:8756190,33721653 +g1,18443:9088144,33721653 +g1,18443:13071591,33721653 +h1,18443:15727222,33721653:0,0,0 +k1,18443:32583030,33721653:16855808 +g1,18443:32583030,33721653 +) +(1,18443:6764466,34406508:25818563,431045,106246 +h1,18443:6764466,34406508:0,0,0 +g1,18443:7760328,34406508 +g1,18443:8092282,34406508 +g1,18443:8424236,34406508 +g1,18443:8756190,34406508 +g1,18443:9088144,34406508 +g1,18443:13735499,34406508 +h1,18443:16391130,34406508:0,0,0 +k1,18443:32583029,34406508:16191899 +g1,18443:32583029,34406508 +) +(1,18443:6764466,35091363:25818563,424439,8257 +h1,18443:6764466,35091363:0,0,0 +g1,18443:7760328,35091363 +g1,18443:8092282,35091363 +g1,18443:8424236,35091363 +g1,18443:8756190,35091363 +g1,18443:9088144,35091363 +g1,18443:11743776,35091363 +h1,18443:13071592,35091363:0,0,0 +k1,18443:32583028,35091363:19511436 +g1,18443:32583028,35091363 +) +(1,18443:6764466,35776218:25818563,431045,52847 +h1,18443:6764466,35776218:0,0,0 +g1,18443:7760328,35776218 +g1,18443:8092282,35776218 +g1,18443:8424236,35776218 +g1,18443:8756190,35776218 +g1,18443:9088144,35776218 +g1,18443:13735499,35776218 +h1,18443:16391130,35776218:0,0,0 +k1,18443:32583029,35776218:16191899 +g1,18443:32583029,35776218 +) +(1,18443:6764466,36461073:25818563,431045,6605 +h1,18443:6764466,36461073:0,0,0 +g1,18443:7760328,36461073 +g1,18443:8092282,36461073 +g1,18443:8424236,36461073 +g1,18443:8756190,36461073 +g1,18443:9088144,36461073 +g1,18443:11079868,36461073 +h1,18443:13735499,36461073:0,0,0 +k1,18443:32583029,36461073:18847530 +g1,18443:32583029,36461073 +) +(1,18443:6764466,37145928:25818563,424439,112852 +h1,18443:6764466,37145928:0,0,0 +g1,18443:7760328,37145928 +g1,18443:8092282,37145928 +g1,18443:8424236,37145928 +g1,18443:8756190,37145928 +g1,18443:9088144,37145928 +g1,18443:11411822,37145928 +g1,18443:11743776,37145928 +g1,18443:14731361,37145928 +g1,18443:17386993,37145928 +g1,18443:19378717,37145928 +g1,18443:23030210,37145928 +g1,18443:25353888,37145928 +k1,18443:25353888,37145928:0 +h1,18443:26349750,37145928:0,0,0 +k1,18443:32583029,37145928:6233279 +g1,18443:32583029,37145928 +) +(1,18443:6764466,37830783:25818563,398014,0 +h1,18443:6764466,37830783:0,0,0 +g1,18443:7760328,37830783 +k1,18443:7760328,37830783:0 +h1,18443:19378718,37830783:0,0,0 +k1,18443:32583029,37830783:13204311 +g1,18443:32583029,37830783 +) +(1,18443:6764466,38515638:25818563,424439,112852 +h1,18443:6764466,38515638:0,0,0 +g1,18443:7760328,38515638 +g1,18443:11743775,38515638 +g1,18443:13735499,38515638 +g1,18443:14399407,38515638 +h1,18443:16059177,38515638:0,0,0 +k1,18443:32583029,38515638:16523852 +g1,18443:32583029,38515638 +) +(1,18443:6764466,39200493:25818563,424439,106246 +h1,18443:6764466,39200493:0,0,0 +g1,18443:7760328,39200493 +g1,18443:12739637,39200493 +g1,18443:14731361,39200493 +g1,18443:15395269,39200493 +h1,18443:17055039,39200493:0,0,0 +k1,18443:32583029,39200493:15527990 +g1,18443:32583029,39200493 +) +(1,18443:6764466,39885348:25818563,424439,106246 +h1,18443:6764466,39885348:0,0,0 +g1,18443:7760328,39885348 +h1,18443:13403545,39885348:0,0,0 +k1,18443:32583029,39885348:19179484 +g1,18443:32583029,39885348 +) +] +) +g1,18444:32583029,39991594 +g1,18444:6764466,39991594 +g1,18444:6764466,39991594 +g1,18444:32583029,39991594 +g1,18444:32583029,39991594 +) +h1,18444:6764466,40188202:0,0,0 +(1,18448:6764466,41053282:25818563,513147,134348 +h1,18447:6764466,41053282:983040,0,0 +k1,18447:10303090,41053282:157622 +(1,18447:10303090,41053282:0,452978,115847 +r1,18461:12068203,41053282:1765113,568825,115847 +k1,18447:10303090,41053282:-1765113 +) +(1,18447:10303090,41053282:1765113,452978,115847 +k1,18447:10303090,41053282:3277 +h1,18447:12064926,41053282:0,411205,112570 +) +k1,18447:12225824,41053282:157621 +k1,18447:14374430,41053282:157622 +k1,18447:15551137,41053282:157622 +k1,18447:18640183,41053282:157621 +k1,18447:19457097,41053282:157622 +k1,18447:21904547,41053282:157622 +k1,18447:23253614,41053282:157622 +k1,18447:24515517,41053282:157621 +k1,18447:25420905,41053282:157622 +k1,18447:26864343,41053282:157622 +k1,18447:28535190,41053282:157621 +k1,18447:29344240,41053282:157622 +k1,18447:32583029,41053282:0 +) +(1,18448:6764466,41918362:25818563,505283,134348 +k1,18447:8379097,41918362:246894 +k1,18447:10982011,41918362:246895 +k1,18447:12824707,41918362:246894 +k1,18447:15230358,41918362:246895 +k1,18447:16543523,41918362:246894 +k1,18447:19246706,41918362:246894 +k1,18447:23752131,41918362:246895 +(1,18447:23752131,41918362:0,452978,115847 +r1,18461:26220668,41918362:2468537,568825,115847 +k1,18447:23752131,41918362:-2468537 +) +(1,18447:23752131,41918362:2468537,452978,115847 +k1,18447:23752131,41918362:3277 +h1,18447:26217391,41918362:0,411205,112570 +) +k1,18447:26467562,41918362:246894 +k1,18447:29248734,41918362:246895 +k1,18447:30514713,41918362:246894 +k1,18447:32583029,41918362:0 +) +(1,18448:6764466,42783442:25818563,513147,126483 +g1,18447:7622987,42783442 +g1,18447:8841301,42783442 +g1,18447:11787799,42783442 +g1,18447:14940736,42783442 +g1,18447:15807121,42783442 +(1,18447:15807121,42783442:0,435480,115847 +r1,18461:16517099,42783442:709978,551327,115847 +k1,18447:15807121,42783442:-709978 +) +(1,18447:15807121,42783442:709978,435480,115847 +k1,18447:15807121,42783442:3277 +h1,18447:16513822,42783442:0,411205,112570 +) +k1,18448:32583029,42783442:16013502 +g1,18448:32583029,42783442 +) +] +g1,18461:32583029,42909925 +) +] +(1,18461:32583029,45706769:0,0,0 +g1,18461:32583029,45706769 +) +) +] +(1,18461:6630773,47279633:25952256,0,0 +h1,18461:6630773,47279633:25952256,0,0 +) +] +(1,18461:4262630,4025873:0,0,0 +[1,18461:-473656,4025873:0,0,0 +(1,18461:-473656,-710413:0,0,0 +(1,18461:-473656,-710413:0,0,0 +g1,18461:-473656,-710413 ) -g1,18463:-473656,-710413 +g1,18461:-473656,-710413 ) ] ) ] !28334 -}302 -Input:3068:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3069:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3070:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3071:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}303 Input:3072:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3073:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3074:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -320471,789 +320675,789 @@ Input:3076:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3077:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3078:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3079:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3080:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3081:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3082:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3083:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{303 -[1,18520:4262630,47279633:28320399,43253760,0 -(1,18520:4262630,4025873:0,0,0 -[1,18520:-473656,4025873:0,0,0 -(1,18520:-473656,-710413:0,0,0 -(1,18520:-473656,-644877:0,0,0 -k1,18520:-473656,-644877:-65536 +{304 +[1,18518:4262630,47279633:28320399,43253760,0 +(1,18518:4262630,4025873:0,0,0 +[1,18518:-473656,4025873:0,0,0 +(1,18518:-473656,-710413:0,0,0 +(1,18518:-473656,-644877:0,0,0 +k1,18518:-473656,-644877:-65536 ) -(1,18520:-473656,4736287:0,0,0 -k1,18520:-473656,4736287:5209943 +(1,18518:-473656,4736287:0,0,0 +k1,18518:-473656,4736287:5209943 ) -g1,18520:-473656,-710413 +g1,18518:-473656,-710413 ) ] ) -[1,18520:6630773,47279633:25952256,43253760,0 -[1,18520:6630773,4812305:25952256,786432,0 -(1,18520:6630773,4812305:25952256,513147,126483 -(1,18520:6630773,4812305:25952256,513147,126483 -g1,18520:3078558,4812305 -[1,18520:3078558,4812305:0,0,0 -(1,18520:3078558,2439708:0,1703936,0 -k1,18520:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18520:2537886,2439708:1179648,16384,0 +[1,18518:6630773,47279633:25952256,43253760,0 +[1,18518:6630773,4812305:25952256,786432,0 +(1,18518:6630773,4812305:25952256,513147,126483 +(1,18518:6630773,4812305:25952256,513147,126483 +g1,18518:3078558,4812305 +[1,18518:3078558,4812305:0,0,0 +(1,18518:3078558,2439708:0,1703936,0 +k1,18518:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18518:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18520:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18518:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18520:3078558,4812305:0,0,0 -(1,18520:3078558,2439708:0,1703936,0 -g1,18520:29030814,2439708 -g1,18520:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18520:36151628,1915420:16384,1179648,0 +[1,18518:3078558,4812305:0,0,0 +(1,18518:3078558,2439708:0,1703936,0 +g1,18518:29030814,2439708 +g1,18518:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18518:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18520:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18518:37855564,2439708:1179648,16384,0 ) ) -k1,18520:3078556,2439708:-34777008 +k1,18518:3078556,2439708:-34777008 ) ] -[1,18520:3078558,4812305:0,0,0 -(1,18520:3078558,49800853:0,16384,2228224 -k1,18520:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18520:2537886,49800853:1179648,16384,0 +[1,18518:3078558,4812305:0,0,0 +(1,18518:3078558,49800853:0,16384,2228224 +k1,18518:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18518:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18520:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18518:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18520:3078558,4812305:0,0,0 -(1,18520:3078558,49800853:0,16384,2228224 -g1,18520:29030814,49800853 -g1,18520:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18520:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18520:37855564,49800853:1179648,16384,0 -) -) -k1,18520:3078556,49800853:-34777008 -) -] -g1,18520:6630773,4812305 -k1,18520:21386205,4812305:13560055 -g1,18520:21999622,4812305 -g1,18520:25611966,4812305 -g1,18520:28956923,4812305 -g1,18520:29772190,4812305 -) -) -] -[1,18520:6630773,45706769:25952256,40108032,0 -(1,18520:6630773,45706769:25952256,40108032,0 -(1,18520:6630773,45706769:0,0,0 -g1,18520:6630773,45706769 -) -[1,18520:6630773,45706769:25952256,40108032,0 -v1,18463:6630773,6254097:0,393216,0 -(1,18463:6630773,8943995:25952256,3083114,0 -g1,18463:6630773,8943995 -g1,18463:6237557,8943995 -r1,18520:6368629,8943995:131072,3083114,0 -g1,18463:6567858,8943995 -g1,18463:6764466,8943995 -[1,18463:6764466,8943995:25818563,3083114,0 -v1,18452:6764466,6254097:0,393216,0 -(1,18461:6764466,8747387:25818563,2886506,196608 -g1,18461:6764466,8747387 -g1,18461:6764466,8747387 -g1,18461:6567858,8747387 -(1,18461:6567858,8747387:0,2886506,196608 -r1,18520:32779637,8747387:26211779,3083114,196608 -k1,18461:6567857,8747387:-26211780 -) -(1,18461:6567858,8747387:26211779,2886506,196608 -[1,18461:6764466,8747387:25818563,2689898,0 -(1,18454:6764466,6481928:25818563,424439,106246 -(1,18453:6764466,6481928:0,0,0 -g1,18453:6764466,6481928 -g1,18453:6764466,6481928 -g1,18453:6436786,6481928 -(1,18453:6436786,6481928:0,0,0 -) -g1,18453:6764466,6481928 -) -k1,18454:6764466,6481928:0 -h1,18454:9752052,6481928:0,0,0 -k1,18454:32583028,6481928:22830976 -g1,18454:32583028,6481928 -) -(1,18460:6764466,7297855:25818563,424439,112852 -(1,18456:6764466,7297855:0,0,0 -g1,18456:6764466,7297855 -g1,18456:6764466,7297855 -g1,18456:6436786,7297855 -(1,18456:6436786,7297855:0,0,0 -) -g1,18456:6764466,7297855 -) -g1,18460:7760328,7297855 -g1,18460:8092282,7297855 -g1,18460:9420098,7297855 -g1,18460:11743776,7297855 -g1,18460:12075730,7297855 -g1,18460:12407684,7297855 -g1,18460:12739638,7297855 -g1,18460:13071592,7297855 -g1,18460:13403546,7297855 -g1,18460:13735500,7297855 -g1,18460:14067454,7297855 -g1,18460:17055039,7297855 -g1,18460:17386993,7297855 -g1,18460:17718947,7297855 -g1,18460:18050901,7297855 -g1,18460:18382855,7297855 -g1,18460:18714809,7297855 -g1,18460:21702394,7297855 -g1,18460:22034348,7297855 -g1,18460:22366302,7297855 -g1,18460:22698256,7297855 -g1,18460:23030210,7297855 -g1,18460:23362164,7297855 -g1,18460:26349749,7297855 -g1,18460:26681703,7297855 -g1,18460:27013657,7297855 -g1,18460:27345611,7297855 -g1,18460:27677565,7297855 -g1,18460:28009519,7297855 -h1,18460:30997104,7297855:0,0,0 -k1,18460:32583029,7297855:1585925 -g1,18460:32583029,7297855 -) -(1,18460:6764466,7982710:25818563,431045,106246 -h1,18460:6764466,7982710:0,0,0 -g1,18460:7760328,7982710 -g1,18460:8092282,7982710 -g1,18460:9420098,7982710 -g1,18460:12075730,7982710 -g1,18460:12407684,7982710 -g1,18460:12739638,7982710 -g1,18460:13071592,7982710 -g1,18460:13403546,7982710 -g1,18460:13735500,7982710 -g1,18460:14067454,7982710 -g1,18460:18714809,7982710 -g1,18460:21370441,7982710 -g1,18460:21702395,7982710 -g1,18460:22034349,7982710 -g1,18460:22366303,7982710 -g1,18460:22698257,7982710 -g1,18460:23030211,7982710 -g1,18460:23362165,7982710 -g1,18460:27013658,7982710 -g1,18460:27345612,7982710 -g1,18460:27677566,7982710 -g1,18460:28009520,7982710 -h1,18460:30665151,7982710:0,0,0 -k1,18460:32583029,7982710:1917878 -g1,18460:32583029,7982710 -) -(1,18460:6764466,8667565:25818563,424439,79822 -h1,18460:6764466,8667565:0,0,0 -g1,18460:7760328,8667565 -g1,18460:9420098,8667565 -h1,18460:12075729,8667565:0,0,0 -k1,18460:32583029,8667565:20507300 -g1,18460:32583029,8667565 -) -] -) -g1,18461:32583029,8747387 -g1,18461:6764466,8747387 -g1,18461:6764466,8747387 -g1,18461:32583029,8747387 -g1,18461:32583029,8747387 -) -h1,18461:6764466,8943995:0,0,0 -] -g1,18463:32583029,8943995 -) -h1,18463:6630773,8943995:0,0,0 -v1,18466:6630773,9809075:0,393216,0 -(1,18477:6630773,14061242:25952256,4645383,0 -g1,18477:6630773,14061242 -g1,18477:6237557,14061242 -r1,18520:6368629,14061242:131072,4645383,0 -g1,18477:6567858,14061242 -g1,18477:6764466,14061242 -[1,18477:6764466,14061242:25818563,4645383,0 -(1,18467:6764466,10117373:25818563,701514,196608 -(1,18466:6764466,10117373:0,701514,196608 -r1,18520:8471973,10117373:1707507,898122,196608 -k1,18466:6764466,10117373:-1707507 -) -(1,18466:6764466,10117373:1707507,701514,196608 -) -k1,18466:8665261,10117373:193288 -k1,18466:9983190,10117373:327680 -k1,18466:12568542,10117373:193288 -k1,18466:13377868,10117373:193288 -k1,18466:15221354,10117373:193289 -k1,18466:17201809,10117373:193288 -k1,18466:18414182,10117373:193288 -k1,18466:21369813,10117373:193288 -k1,18466:24516809,10117373:193288 -k1,18466:25369389,10117373:193288 -k1,18466:27522204,10117373:193289 -(1,18466:27522204,10117373:0,435480,115847 -r1,18520:28232182,10117373:709978,551327,115847 -k1,18466:27522204,10117373:-709978 -) -(1,18466:27522204,10117373:709978,435480,115847 -k1,18466:27522204,10117373:3277 -h1,18466:28228905,10117373:0,411205,112570 -) -k1,18466:28599140,10117373:193288 -k1,18466:29834450,10117373:193288 -k1,18466:32583029,10117373:0 -) -(1,18467:6764466,10982453:25818563,513147,134348 -k1,18466:8016758,10982453:233207 -k1,18466:9746152,10982453:233207 -k1,18466:13165719,10982453:233207 -k1,18466:15267357,10982453:233207 -k1,18466:18034841,10982453:233207 -k1,18466:20891454,10982453:233207 -(1,18466:20891454,10982453:0,452978,115847 -r1,18520:23711703,10982453:2820249,568825,115847 -k1,18466:20891454,10982453:-2820249 -) -(1,18466:20891454,10982453:2820249,452978,115847 -k1,18466:20891454,10982453:3277 -h1,18466:23708426,10982453:0,411205,112570 -) -k1,18466:23944910,10982453:233207 -k1,18466:25745738,10982453:233207 -k1,18466:27938471,10982453:233207 -(1,18466:27938471,10982453:0,435480,115847 -r1,18520:28648449,10982453:709978,551327,115847 -k1,18466:27938471,10982453:-709978 -) -(1,18466:27938471,10982453:709978,435480,115847 -k1,18466:27938471,10982453:3277 -h1,18466:28645172,10982453:0,411205,112570 -) -k1,18466:28881656,10982453:233207 -k1,18466:30306308,10982453:233207 -k1,18466:32583029,10982453:0 -) -(1,18467:6764466,11847533:25818563,473825,7863 -g1,18466:7752093,11847533 -k1,18467:32583029,11847533:21847082 -g1,18467:32583029,11847533 -) -v1,18469:6764466,12532388:0,393216,0 -(1,18473:6764466,12873071:25818563,733899,196608 -g1,18473:6764466,12873071 -g1,18473:6764466,12873071 -g1,18473:6567858,12873071 -(1,18473:6567858,12873071:0,733899,196608 -r1,18520:32779637,12873071:26211779,930507,196608 -k1,18473:6567857,12873071:-26211780 -) -(1,18473:6567858,12873071:26211779,733899,196608 -[1,18473:6764466,12873071:25818563,537291,0 -(1,18471:6764466,12766825:25818563,431045,106246 -(1,18470:6764466,12766825:0,0,0 -g1,18470:6764466,12766825 -g1,18470:6764466,12766825 -g1,18470:6436786,12766825 -(1,18470:6436786,12766825:0,0,0 -) -g1,18470:6764466,12766825 -) -k1,18471:6764466,12766825:0 -g1,18471:11743776,12766825 -g1,18471:15063315,12766825 -g1,18471:15727223,12766825 -h1,18471:16391131,12766825:0,0,0 -k1,18471:32583029,12766825:16191898 -g1,18471:32583029,12766825 -) -] -) -g1,18473:32583029,12873071 -g1,18473:6764466,12873071 -g1,18473:6764466,12873071 -g1,18473:32583029,12873071 -g1,18473:32583029,12873071 -) -h1,18473:6764466,13069679:0,0,0 -(1,18477:6764466,13934759:25818563,505283,126483 -h1,18476:6764466,13934759:983040,0,0 -g1,18476:9367556,13934759 -g1,18476:11318562,13934759 -g1,18476:13405883,13934759 -g1,18476:14596672,13934759 -g1,18476:17201728,13934759 -g1,18476:18016995,13934759 -g1,18476:19419465,13934759 -k1,18477:32583029,13934759:11502226 -g1,18477:32583029,13934759 -) -] -g1,18477:32583029,14061242 -) -h1,18477:6630773,14061242:0,0,0 -(1,18481:6630773,16178060:25952256,555811,147783 -(1,18481:6630773,16178060:2450326,534184,12975 -g1,18481:6630773,16178060 -g1,18481:9081099,16178060 -) -g1,18481:11514844,16178060 -g1,18481:13082072,16178060 -k1,18481:32583029,16178060:15947660 -g1,18481:32583029,16178060 -) -(1,18485:6630773,17436356:25952256,505283,134348 -k1,18484:7611865,17436356:353257 -k1,18484:10793654,17436356:353256 -k1,18484:11502771,17436356:353257 -k1,18484:14677352,17436356:353256 -k1,18484:18030192,17436356:353257 -k1,18484:20268920,17436356:353257 -k1,18484:23133516,17436356:353256 -k1,18484:24102811,17436356:353257 -(1,18484:24102811,17436356:0,452978,115847 -r1,18520:25516212,17436356:1413401,568825,115847 -k1,18484:24102811,17436356:-1413401 -) -(1,18484:24102811,17436356:1413401,452978,115847 -k1,18484:24102811,17436356:3277 -h1,18484:25512935,17436356:0,411205,112570 -) -k1,18484:25869468,17436356:353256 -k1,18484:26754222,17436356:353257 -k1,18484:29692874,17436356:353257 -k1,18484:30697558,17436356:353256 -k1,18485:32583029,17436356:0 -) -(1,18485:6630773,18301436:25952256,513147,138281 -(1,18484:6630773,18301436:0,452978,115847 -r1,18520:9802733,18301436:3171960,568825,115847 -k1,18484:6630773,18301436:-3171960 -) -(1,18484:6630773,18301436:3171960,452978,115847 -k1,18484:6630773,18301436:3277 -h1,18484:9799456,18301436:0,411205,112570 -) -k1,18484:10182091,18301436:205688 -k1,18484:11070665,18301436:205689 -k1,18484:13665140,18301436:205688 -k1,18484:16146238,18301436:205688 -k1,18484:17011219,18301436:205689 -k1,18484:17572767,18301436:205688 -k1,18484:19229423,18301436:205689 -k1,18484:20928677,18301436:205688 -k1,18484:21820527,18301436:205688 -$1,18484:21820527,18301436 -$1,18484:22323188,18301436 -k1,18484:22702547,18301436:205689 -$1,18484:22702547,18301436 -$1,18484:23254360,18301436 -k1,18484:23633718,18301436:205688 -k1,18484:26044037,18301436:205688 -k1,18484:27264223,18301436:205689 -k1,18484:29512668,18301436:205688 -k1,18484:32583029,18301436:0 -) -(1,18485:6630773,19166516:25952256,505283,134348 -k1,18484:8115998,19166516:373734 -k1,18484:9117567,19166516:373734 -k1,18484:12319833,19166516:373733 -k1,18484:13049427,19166516:373734 -k1,18484:14958014,19166516:373734 -k1,18484:18331331,19166516:373734 -k1,18484:19724150,19166516:373734 -k1,18484:25174303,19166516:373734 -k1,18484:28183239,19166516:373733 -k1,18484:30574172,19166516:373734 -k1,18484:31563944,19166516:373734 -k1,18484:32583029,19166516:0 -) -(1,18485:6630773,20031596:25952256,513147,134348 -k1,18484:9483972,20031596:267804 -k1,18484:12263116,20031596:267804 -k1,18484:13722364,20031596:267803 -k1,18484:16000813,20031596:267804 -k1,18484:16927909,20031596:267804 -k1,18484:18214798,20031596:267804 -k1,18484:20871389,20031596:267804 -k1,18484:23588273,20031596:267804 -k1,18484:25896867,20031596:267803 -k1,18484:27183756,20031596:267804 -k1,18484:30071689,20031596:267804 -k1,18485:32583029,20031596:0 -) -(1,18485:6630773,20896676:25952256,505283,126483 -(1,18484:6630773,20896676:0,452978,115847 -r1,18520:7692462,20896676:1061689,568825,115847 -k1,18484:6630773,20896676:-1061689 -) -(1,18484:6630773,20896676:1061689,452978,115847 -k1,18484:6630773,20896676:3277 -h1,18484:7689185,20896676:0,411205,112570 -) -k1,18484:8056100,20896676:363638 -k1,18484:8951236,20896676:363639 -k1,18484:11900269,20896676:363638 -k1,18484:12915335,20896676:363638 -k1,18484:14298059,20896676:363639 -(1,18484:14298059,20896676:0,452978,115847 -r1,18520:16414884,20896676:2116825,568825,115847 -k1,18484:14298059,20896676:-2116825 -) -(1,18484:14298059,20896676:2116825,452978,115847 -k1,18484:14298059,20896676:3277 -h1,18484:16411607,20896676:0,411205,112570 -) -k1,18484:16778522,20896676:363638 -k1,18484:20160093,20896676:363638 -k1,18484:21341620,20896676:363638 -k1,18484:22724344,20896676:363639 -k1,18484:25599322,20896676:363638 -k1,18484:26494457,20896676:363638 -(1,18484:26494457,20896676:0,452978,115847 -r1,18520:28962994,20896676:2468537,568825,115847 -k1,18484:26494457,20896676:-2468537 -) -(1,18484:26494457,20896676:2468537,452978,115847 -k1,18484:26494457,20896676:3277 -h1,18484:28959717,20896676:0,411205,112570 -) -k1,18484:29326633,20896676:363639 -k1,18484:30046131,20896676:363638 -k1,18485:32583029,20896676:0 -) -(1,18485:6630773,21761756:25952256,513147,126483 -k1,18484:8027563,21761756:257119 -k1,18484:10315644,21761756:257120 -k1,18484:12144973,21761756:257120 -k1,18484:12933589,21761756:257119 -k1,18484:14877606,21761756:257120 -k1,18484:16315684,21761756:257119 -k1,18484:17232095,21761756:257119 -k1,18484:18508300,21761756:257120 -k1,18484:21436666,21761756:257119 -k1,18484:25264187,21761756:257120 -k1,18484:27552268,21761756:257120 -k1,18484:29711897,21761756:257119 -k1,18485:32583029,21761756:0 -) -(1,18485:6630773,22626836:25952256,513147,115847 -(1,18484:6630773,22626836:0,452978,115847 -r1,18520:15430122,22626836:8799349,568825,115847 -k1,18484:6630773,22626836:-8799349 -) -(1,18484:6630773,22626836:8799349,452978,115847 -k1,18484:6630773,22626836:3277 -h1,18484:15426845,22626836:0,411205,112570 -) -g1,18484:15629351,22626836 -g1,18484:16360077,22626836 -g1,18484:17578391,22626836 -k1,18485:32583029,22626836:12686630 -g1,18485:32583029,22626836 -) -v1,18487:6630773,23311691:0,393216,0 -(1,18495:6630773,26368672:25952256,3450197,196608 -g1,18495:6630773,26368672 -g1,18495:6630773,26368672 -g1,18495:6434165,26368672 -(1,18495:6434165,26368672:0,3450197,196608 -r1,18520:32779637,26368672:26345472,3646805,196608 -k1,18495:6434165,26368672:-26345472 -) -(1,18495:6434165,26368672:26345472,3450197,196608 -[1,18495:6630773,26368672:25952256,3253589,0 -(1,18489:6630773,23523006:25952256,407923,106246 -(1,18488:6630773,23523006:0,0,0 -g1,18488:6630773,23523006 -g1,18488:6630773,23523006 -g1,18488:6303093,23523006 -(1,18488:6303093,23523006:0,0,0 -) -g1,18488:6630773,23523006 -) -g1,18489:7626635,23523006 -k1,18489:7626635,23523006:0 -h1,18489:8290543,23523006:0,0,0 -k1,18489:32583029,23523006:24292486 -g1,18489:32583029,23523006 -) -(1,18490:6630773,24207861:25952256,424439,112852 -h1,18490:6630773,24207861:0,0,0 -g1,18490:6962727,24207861 -g1,18490:7294681,24207861 -g1,18490:11278129,24207861 -g1,18490:11942037,24207861 -k1,18490:11942037,24207861:0 -h1,18490:14265715,24207861:0,0,0 -k1,18490:32583029,24207861:18317314 -g1,18490:32583029,24207861 -) -(1,18491:6630773,24892716:25952256,424439,112852 -h1,18491:6630773,24892716:0,0,0 -g1,18491:6962727,24892716 -g1,18491:7294681,24892716 -g1,18491:7626635,24892716 -g1,18491:7958589,24892716 -g1,18491:8290543,24892716 -g1,18491:8622497,24892716 -g1,18491:8954451,24892716 -g1,18491:9286405,24892716 -g1,18491:9618359,24892716 -g1,18491:12273991,24892716 -g1,18491:12937899,24892716 -g1,18491:14929623,24892716 -g1,18491:15593531,24892716 -g1,18491:17585255,24892716 -g1,18491:18249163,24892716 -g1,18491:18913071,24892716 -g1,18491:20572841,24892716 -g1,18491:22896519,24892716 -g1,18491:23560427,24892716 -g1,18491:25552151,24892716 -h1,18491:25884105,24892716:0,0,0 -k1,18491:32583029,24892716:6698924 -g1,18491:32583029,24892716 -) -(1,18492:6630773,25577571:25952256,424439,112852 -h1,18492:6630773,25577571:0,0,0 -g1,18492:6962727,25577571 -g1,18492:7294681,25577571 -k1,18492:7294681,25577571:0 -h1,18492:11278128,25577571:0,0,0 -k1,18492:32583028,25577571:21304900 -g1,18492:32583028,25577571 -) -(1,18493:6630773,26262426:25952256,407923,106246 -h1,18493:6630773,26262426:0,0,0 -h1,18493:7294681,26262426:0,0,0 -k1,18493:32583029,26262426:25288348 -g1,18493:32583029,26262426 -) -] -) -g1,18495:32583029,26368672 -g1,18495:6630773,26368672 -g1,18495:6630773,26368672 -g1,18495:32583029,26368672 -g1,18495:32583029,26368672 -) -h1,18495:6630773,26565280:0,0,0 -(1,18498:6630773,35714482:25952256,9083666,0 -k1,18498:10523651,35714482:3892878 -h1,18497:10523651,35714482:0,0,0 -(1,18497:10523651,35714482:18166500,9083666,0 -(1,18497:10523651,35714482:18167376,9083688,0 -(1,18497:10523651,35714482:18167376,9083688,0 -(1,18497:10523651,35714482:0,9083688,0 -(1,18497:10523651,35714482:0,14208860,0 -(1,18497:10523651,35714482:28417720,14208860,0 -) -k1,18497:10523651,35714482:-28417720 -) -) -g1,18497:28691027,35714482 -) -) -) -g1,18498:28690151,35714482 -k1,18498:32583029,35714482:3892878 -) -(1,18505:6630773,36579562:25952256,513147,134348 -h1,18504:6630773,36579562:983040,0,0 -k1,18504:10384515,36579562:225284 -k1,18504:13493382,36579562:225283 -k1,18504:14737751,36579562:225284 -(1,18504:14737751,36579562:0,452978,122846 -r1,18520:17206288,36579562:2468537,575824,122846 -k1,18504:14737751,36579562:-2468537 -) -(1,18504:14737751,36579562:2468537,452978,122846 -k1,18504:14737751,36579562:3277 -h1,18504:17203011,36579562:0,411205,112570 -) -k1,18504:17431572,36579562:225284 -k1,18504:18012715,36579562:225283 -k1,18504:23590324,36579562:225284 -k1,18504:25092904,36579562:225283 -k1,18504:26422470,36579562:225284 -k1,18504:27395520,36579562:225284 -k1,18504:29970924,36579562:225283 -k1,18504:30957736,36579562:225284 -k1,18505:32583029,36579562:0 -) -(1,18505:6630773,37444642:25952256,505283,134348 -k1,18504:8186286,37444642:191053 -k1,18504:9396424,37444642:191053 -k1,18504:11159685,37444642:191052 -k1,18504:13037635,37444642:191053 -k1,18504:15269479,37444642:191053 -k1,18504:16076570,37444642:191053 -k1,18504:18933628,37444642:191053 -k1,18504:19480541,37444642:191053 -k1,18504:21861806,37444642:191052 -k1,18504:22584356,37444642:191053 -k1,18504:25364081,37444642:191053 -k1,18504:26949085,37444642:191053 -(1,18504:26949085,37444642:0,452978,122846 -r1,18520:32583029,37444642:5633944,575824,122846 -k1,18504:26949085,37444642:-5633944 -) -(1,18504:26949085,37444642:5633944,452978,122846 -g1,18504:29414345,37444642 -g1,18504:30117769,37444642 -h1,18504:32579752,37444642:0,411205,112570 -) -k1,18504:32583029,37444642:0 -) -(1,18505:6630773,38309722:25952256,513147,134348 -g1,18504:8021447,38309722 -g1,18504:9239761,38309722 -g1,18504:11219603,38309722 -g1,18504:12078124,38309722 -g1,18504:14638615,38309722 -g1,18504:16351070,38309722 -g1,18504:18117920,38309722 -g1,18504:19520390,38309722 -g1,18504:21909832,38309722 -g1,18504:24882545,38309722 -g1,18504:26475725,38309722 -(1,18504:26475725,38309722:0,452978,115847 -r1,18520:29999397,38309722:3523672,568825,115847 -k1,18504:26475725,38309722:-3523672 -) -(1,18504:26475725,38309722:3523672,452978,115847 -g1,18504:27885849,38309722 -g1,18504:28589273,38309722 -h1,18504:29996120,38309722:0,411205,112570 -) -k1,18505:32583029,38309722:2531204 -g1,18505:32583029,38309722 -) -v1,18507:6630773,38994577:0,393216,0 -(1,18511:6630773,39335260:25952256,733899,196608 -g1,18511:6630773,39335260 -g1,18511:6630773,39335260 -g1,18511:6434165,39335260 -(1,18511:6434165,39335260:0,733899,196608 -r1,18520:32779637,39335260:26345472,930507,196608 -k1,18511:6434165,39335260:-26345472 -) -(1,18511:6434165,39335260:26345472,733899,196608 -[1,18511:6630773,39335260:25952256,537291,0 -(1,18509:6630773,39222408:25952256,424439,112852 -(1,18508:6630773,39222408:0,0,0 -g1,18508:6630773,39222408 -g1,18508:6630773,39222408 -g1,18508:6303093,39222408 -(1,18508:6303093,39222408:0,0,0 -) -g1,18508:6630773,39222408 -) -g1,18509:7626635,39222408 -g1,18509:8290543,39222408 -g1,18509:18249161,39222408 -g1,18509:18913069,39222408 -g1,18509:21900655,39222408 -g1,18509:23228471,39222408 -g1,18509:23892379,39222408 -h1,18509:25552149,39222408:0,0,0 -k1,18509:32583029,39222408:7030880 -g1,18509:32583029,39222408 -) -] -) -g1,18511:32583029,39335260 -g1,18511:6630773,39335260 -g1,18511:6630773,39335260 -g1,18511:32583029,39335260 -g1,18511:32583029,39335260 -) -h1,18511:6630773,39531868:0,0,0 -] -(1,18520:32583029,45706769:0,0,0 -g1,18520:32583029,45706769 -) -) -] -(1,18520:6630773,47279633:25952256,0,0 -h1,18520:6630773,47279633:25952256,0,0 -) -] -(1,18520:4262630,4025873:0,0,0 -[1,18520:-473656,4025873:0,0,0 -(1,18520:-473656,-710413:0,0,0 -(1,18520:-473656,-710413:0,0,0 -g1,18520:-473656,-710413 -) -g1,18520:-473656,-710413 +[1,18518:3078558,4812305:0,0,0 +(1,18518:3078558,49800853:0,16384,2228224 +g1,18518:29030814,49800853 +g1,18518:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18518:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18518:37855564,49800853:1179648,16384,0 +) +) +k1,18518:3078556,49800853:-34777008 +) +] +g1,18518:6630773,4812305 +k1,18518:21386205,4812305:13560055 +g1,18518:21999622,4812305 +g1,18518:25611966,4812305 +g1,18518:28956923,4812305 +g1,18518:29772190,4812305 +) +) +] +[1,18518:6630773,45706769:25952256,40108032,0 +(1,18518:6630773,45706769:25952256,40108032,0 +(1,18518:6630773,45706769:0,0,0 +g1,18518:6630773,45706769 +) +[1,18518:6630773,45706769:25952256,40108032,0 +v1,18461:6630773,6254097:0,393216,0 +(1,18461:6630773,8943995:25952256,3083114,0 +g1,18461:6630773,8943995 +g1,18461:6237557,8943995 +r1,18518:6368629,8943995:131072,3083114,0 +g1,18461:6567858,8943995 +g1,18461:6764466,8943995 +[1,18461:6764466,8943995:25818563,3083114,0 +v1,18450:6764466,6254097:0,393216,0 +(1,18459:6764466,8747387:25818563,2886506,196608 +g1,18459:6764466,8747387 +g1,18459:6764466,8747387 +g1,18459:6567858,8747387 +(1,18459:6567858,8747387:0,2886506,196608 +r1,18518:32779637,8747387:26211779,3083114,196608 +k1,18459:6567857,8747387:-26211780 +) +(1,18459:6567858,8747387:26211779,2886506,196608 +[1,18459:6764466,8747387:25818563,2689898,0 +(1,18452:6764466,6481928:25818563,424439,106246 +(1,18451:6764466,6481928:0,0,0 +g1,18451:6764466,6481928 +g1,18451:6764466,6481928 +g1,18451:6436786,6481928 +(1,18451:6436786,6481928:0,0,0 +) +g1,18451:6764466,6481928 +) +k1,18452:6764466,6481928:0 +h1,18452:9752052,6481928:0,0,0 +k1,18452:32583028,6481928:22830976 +g1,18452:32583028,6481928 +) +(1,18458:6764466,7297855:25818563,424439,112852 +(1,18454:6764466,7297855:0,0,0 +g1,18454:6764466,7297855 +g1,18454:6764466,7297855 +g1,18454:6436786,7297855 +(1,18454:6436786,7297855:0,0,0 +) +g1,18454:6764466,7297855 +) +g1,18458:7760328,7297855 +g1,18458:8092282,7297855 +g1,18458:9420098,7297855 +g1,18458:11743776,7297855 +g1,18458:12075730,7297855 +g1,18458:12407684,7297855 +g1,18458:12739638,7297855 +g1,18458:13071592,7297855 +g1,18458:13403546,7297855 +g1,18458:13735500,7297855 +g1,18458:14067454,7297855 +g1,18458:17055039,7297855 +g1,18458:17386993,7297855 +g1,18458:17718947,7297855 +g1,18458:18050901,7297855 +g1,18458:18382855,7297855 +g1,18458:18714809,7297855 +g1,18458:21702394,7297855 +g1,18458:22034348,7297855 +g1,18458:22366302,7297855 +g1,18458:22698256,7297855 +g1,18458:23030210,7297855 +g1,18458:23362164,7297855 +g1,18458:26349749,7297855 +g1,18458:26681703,7297855 +g1,18458:27013657,7297855 +g1,18458:27345611,7297855 +g1,18458:27677565,7297855 +g1,18458:28009519,7297855 +h1,18458:30997104,7297855:0,0,0 +k1,18458:32583029,7297855:1585925 +g1,18458:32583029,7297855 +) +(1,18458:6764466,7982710:25818563,431045,106246 +h1,18458:6764466,7982710:0,0,0 +g1,18458:7760328,7982710 +g1,18458:8092282,7982710 +g1,18458:9420098,7982710 +g1,18458:12075730,7982710 +g1,18458:12407684,7982710 +g1,18458:12739638,7982710 +g1,18458:13071592,7982710 +g1,18458:13403546,7982710 +g1,18458:13735500,7982710 +g1,18458:14067454,7982710 +g1,18458:18714809,7982710 +g1,18458:21370441,7982710 +g1,18458:21702395,7982710 +g1,18458:22034349,7982710 +g1,18458:22366303,7982710 +g1,18458:22698257,7982710 +g1,18458:23030211,7982710 +g1,18458:23362165,7982710 +g1,18458:27013658,7982710 +g1,18458:27345612,7982710 +g1,18458:27677566,7982710 +g1,18458:28009520,7982710 +h1,18458:30665151,7982710:0,0,0 +k1,18458:32583029,7982710:1917878 +g1,18458:32583029,7982710 +) +(1,18458:6764466,8667565:25818563,424439,79822 +h1,18458:6764466,8667565:0,0,0 +g1,18458:7760328,8667565 +g1,18458:9420098,8667565 +h1,18458:12075729,8667565:0,0,0 +k1,18458:32583029,8667565:20507300 +g1,18458:32583029,8667565 +) +] +) +g1,18459:32583029,8747387 +g1,18459:6764466,8747387 +g1,18459:6764466,8747387 +g1,18459:32583029,8747387 +g1,18459:32583029,8747387 +) +h1,18459:6764466,8943995:0,0,0 +] +g1,18461:32583029,8943995 +) +h1,18461:6630773,8943995:0,0,0 +v1,18464:6630773,9809075:0,393216,0 +(1,18475:6630773,14061242:25952256,4645383,0 +g1,18475:6630773,14061242 +g1,18475:6237557,14061242 +r1,18518:6368629,14061242:131072,4645383,0 +g1,18475:6567858,14061242 +g1,18475:6764466,14061242 +[1,18475:6764466,14061242:25818563,4645383,0 +(1,18465:6764466,10117373:25818563,701514,196608 +(1,18464:6764466,10117373:0,701514,196608 +r1,18518:8471973,10117373:1707507,898122,196608 +k1,18464:6764466,10117373:-1707507 +) +(1,18464:6764466,10117373:1707507,701514,196608 +) +k1,18464:8665261,10117373:193288 +k1,18464:9983190,10117373:327680 +k1,18464:12568542,10117373:193288 +k1,18464:13377868,10117373:193288 +k1,18464:15221354,10117373:193289 +k1,18464:17201809,10117373:193288 +k1,18464:18414182,10117373:193288 +k1,18464:21369813,10117373:193288 +k1,18464:24516809,10117373:193288 +k1,18464:25369389,10117373:193288 +k1,18464:27522204,10117373:193289 +(1,18464:27522204,10117373:0,435480,115847 +r1,18518:28232182,10117373:709978,551327,115847 +k1,18464:27522204,10117373:-709978 +) +(1,18464:27522204,10117373:709978,435480,115847 +k1,18464:27522204,10117373:3277 +h1,18464:28228905,10117373:0,411205,112570 +) +k1,18464:28599140,10117373:193288 +k1,18464:29834450,10117373:193288 +k1,18464:32583029,10117373:0 +) +(1,18465:6764466,10982453:25818563,513147,134348 +k1,18464:8016758,10982453:233207 +k1,18464:9746152,10982453:233207 +k1,18464:13165719,10982453:233207 +k1,18464:15267357,10982453:233207 +k1,18464:18034841,10982453:233207 +k1,18464:20891454,10982453:233207 +(1,18464:20891454,10982453:0,452978,115847 +r1,18518:23711703,10982453:2820249,568825,115847 +k1,18464:20891454,10982453:-2820249 +) +(1,18464:20891454,10982453:2820249,452978,115847 +k1,18464:20891454,10982453:3277 +h1,18464:23708426,10982453:0,411205,112570 +) +k1,18464:23944910,10982453:233207 +k1,18464:25745738,10982453:233207 +k1,18464:27938471,10982453:233207 +(1,18464:27938471,10982453:0,435480,115847 +r1,18518:28648449,10982453:709978,551327,115847 +k1,18464:27938471,10982453:-709978 +) +(1,18464:27938471,10982453:709978,435480,115847 +k1,18464:27938471,10982453:3277 +h1,18464:28645172,10982453:0,411205,112570 +) +k1,18464:28881656,10982453:233207 +k1,18464:30306308,10982453:233207 +k1,18464:32583029,10982453:0 +) +(1,18465:6764466,11847533:25818563,473825,7863 +g1,18464:7752093,11847533 +k1,18465:32583029,11847533:21847082 +g1,18465:32583029,11847533 +) +v1,18467:6764466,12532388:0,393216,0 +(1,18471:6764466,12873071:25818563,733899,196608 +g1,18471:6764466,12873071 +g1,18471:6764466,12873071 +g1,18471:6567858,12873071 +(1,18471:6567858,12873071:0,733899,196608 +r1,18518:32779637,12873071:26211779,930507,196608 +k1,18471:6567857,12873071:-26211780 +) +(1,18471:6567858,12873071:26211779,733899,196608 +[1,18471:6764466,12873071:25818563,537291,0 +(1,18469:6764466,12766825:25818563,431045,106246 +(1,18468:6764466,12766825:0,0,0 +g1,18468:6764466,12766825 +g1,18468:6764466,12766825 +g1,18468:6436786,12766825 +(1,18468:6436786,12766825:0,0,0 +) +g1,18468:6764466,12766825 +) +k1,18469:6764466,12766825:0 +g1,18469:11743776,12766825 +g1,18469:15063315,12766825 +g1,18469:15727223,12766825 +h1,18469:16391131,12766825:0,0,0 +k1,18469:32583029,12766825:16191898 +g1,18469:32583029,12766825 +) +] +) +g1,18471:32583029,12873071 +g1,18471:6764466,12873071 +g1,18471:6764466,12873071 +g1,18471:32583029,12873071 +g1,18471:32583029,12873071 +) +h1,18471:6764466,13069679:0,0,0 +(1,18475:6764466,13934759:25818563,505283,126483 +h1,18474:6764466,13934759:983040,0,0 +g1,18474:9367556,13934759 +g1,18474:11318562,13934759 +g1,18474:13405883,13934759 +g1,18474:14596672,13934759 +g1,18474:17201728,13934759 +g1,18474:18016995,13934759 +g1,18474:19419465,13934759 +k1,18475:32583029,13934759:11502226 +g1,18475:32583029,13934759 +) +] +g1,18475:32583029,14061242 +) +h1,18475:6630773,14061242:0,0,0 +(1,18479:6630773,16178060:25952256,555811,147783 +(1,18479:6630773,16178060:2450326,534184,12975 +g1,18479:6630773,16178060 +g1,18479:9081099,16178060 +) +g1,18479:11514844,16178060 +g1,18479:13082072,16178060 +k1,18479:32583029,16178060:15947660 +g1,18479:32583029,16178060 +) +(1,18483:6630773,17436356:25952256,505283,134348 +k1,18482:7611865,17436356:353257 +k1,18482:10793654,17436356:353256 +k1,18482:11502771,17436356:353257 +k1,18482:14677352,17436356:353256 +k1,18482:18030192,17436356:353257 +k1,18482:20268920,17436356:353257 +k1,18482:23133516,17436356:353256 +k1,18482:24102811,17436356:353257 +(1,18482:24102811,17436356:0,452978,115847 +r1,18518:25516212,17436356:1413401,568825,115847 +k1,18482:24102811,17436356:-1413401 +) +(1,18482:24102811,17436356:1413401,452978,115847 +k1,18482:24102811,17436356:3277 +h1,18482:25512935,17436356:0,411205,112570 +) +k1,18482:25869468,17436356:353256 +k1,18482:26754222,17436356:353257 +k1,18482:29692874,17436356:353257 +k1,18482:30697558,17436356:353256 +k1,18483:32583029,17436356:0 +) +(1,18483:6630773,18301436:25952256,513147,138281 +(1,18482:6630773,18301436:0,452978,115847 +r1,18518:9802733,18301436:3171960,568825,115847 +k1,18482:6630773,18301436:-3171960 +) +(1,18482:6630773,18301436:3171960,452978,115847 +k1,18482:6630773,18301436:3277 +h1,18482:9799456,18301436:0,411205,112570 +) +k1,18482:10182091,18301436:205688 +k1,18482:11070665,18301436:205689 +k1,18482:13665140,18301436:205688 +k1,18482:16146238,18301436:205688 +k1,18482:17011219,18301436:205689 +k1,18482:17572767,18301436:205688 +k1,18482:19229423,18301436:205689 +k1,18482:20928677,18301436:205688 +k1,18482:21820527,18301436:205688 +$1,18482:21820527,18301436 +$1,18482:22323188,18301436 +k1,18482:22702547,18301436:205689 +$1,18482:22702547,18301436 +$1,18482:23254360,18301436 +k1,18482:23633718,18301436:205688 +k1,18482:26044037,18301436:205688 +k1,18482:27264223,18301436:205689 +k1,18482:29512668,18301436:205688 +k1,18482:32583029,18301436:0 +) +(1,18483:6630773,19166516:25952256,505283,134348 +k1,18482:8115998,19166516:373734 +k1,18482:9117567,19166516:373734 +k1,18482:12319833,19166516:373733 +k1,18482:13049427,19166516:373734 +k1,18482:14958014,19166516:373734 +k1,18482:18331331,19166516:373734 +k1,18482:19724150,19166516:373734 +k1,18482:25174303,19166516:373734 +k1,18482:28183239,19166516:373733 +k1,18482:30574172,19166516:373734 +k1,18482:31563944,19166516:373734 +k1,18482:32583029,19166516:0 +) +(1,18483:6630773,20031596:25952256,513147,134348 +k1,18482:9483972,20031596:267804 +k1,18482:12263116,20031596:267804 +k1,18482:13722364,20031596:267803 +k1,18482:16000813,20031596:267804 +k1,18482:16927909,20031596:267804 +k1,18482:18214798,20031596:267804 +k1,18482:20871389,20031596:267804 +k1,18482:23588273,20031596:267804 +k1,18482:25896867,20031596:267803 +k1,18482:27183756,20031596:267804 +k1,18482:30071689,20031596:267804 +k1,18483:32583029,20031596:0 +) +(1,18483:6630773,20896676:25952256,505283,126483 +(1,18482:6630773,20896676:0,452978,115847 +r1,18518:7692462,20896676:1061689,568825,115847 +k1,18482:6630773,20896676:-1061689 +) +(1,18482:6630773,20896676:1061689,452978,115847 +k1,18482:6630773,20896676:3277 +h1,18482:7689185,20896676:0,411205,112570 +) +k1,18482:8056100,20896676:363638 +k1,18482:8951236,20896676:363639 +k1,18482:11900269,20896676:363638 +k1,18482:12915335,20896676:363638 +k1,18482:14298059,20896676:363639 +(1,18482:14298059,20896676:0,452978,115847 +r1,18518:16414884,20896676:2116825,568825,115847 +k1,18482:14298059,20896676:-2116825 +) +(1,18482:14298059,20896676:2116825,452978,115847 +k1,18482:14298059,20896676:3277 +h1,18482:16411607,20896676:0,411205,112570 +) +k1,18482:16778522,20896676:363638 +k1,18482:20160093,20896676:363638 +k1,18482:21341620,20896676:363638 +k1,18482:22724344,20896676:363639 +k1,18482:25599322,20896676:363638 +k1,18482:26494457,20896676:363638 +(1,18482:26494457,20896676:0,452978,115847 +r1,18518:28962994,20896676:2468537,568825,115847 +k1,18482:26494457,20896676:-2468537 +) +(1,18482:26494457,20896676:2468537,452978,115847 +k1,18482:26494457,20896676:3277 +h1,18482:28959717,20896676:0,411205,112570 +) +k1,18482:29326633,20896676:363639 +k1,18482:30046131,20896676:363638 +k1,18483:32583029,20896676:0 +) +(1,18483:6630773,21761756:25952256,513147,126483 +k1,18482:8027563,21761756:257119 +k1,18482:10315644,21761756:257120 +k1,18482:12144973,21761756:257120 +k1,18482:12933589,21761756:257119 +k1,18482:14877606,21761756:257120 +k1,18482:16315684,21761756:257119 +k1,18482:17232095,21761756:257119 +k1,18482:18508300,21761756:257120 +k1,18482:21436666,21761756:257119 +k1,18482:25264187,21761756:257120 +k1,18482:27552268,21761756:257120 +k1,18482:29711897,21761756:257119 +k1,18483:32583029,21761756:0 +) +(1,18483:6630773,22626836:25952256,513147,115847 +(1,18482:6630773,22626836:0,452978,115847 +r1,18518:15430122,22626836:8799349,568825,115847 +k1,18482:6630773,22626836:-8799349 +) +(1,18482:6630773,22626836:8799349,452978,115847 +k1,18482:6630773,22626836:3277 +h1,18482:15426845,22626836:0,411205,112570 +) +g1,18482:15629351,22626836 +g1,18482:16360077,22626836 +g1,18482:17578391,22626836 +k1,18483:32583029,22626836:12686630 +g1,18483:32583029,22626836 +) +v1,18485:6630773,23311691:0,393216,0 +(1,18493:6630773,26368672:25952256,3450197,196608 +g1,18493:6630773,26368672 +g1,18493:6630773,26368672 +g1,18493:6434165,26368672 +(1,18493:6434165,26368672:0,3450197,196608 +r1,18518:32779637,26368672:26345472,3646805,196608 +k1,18493:6434165,26368672:-26345472 +) +(1,18493:6434165,26368672:26345472,3450197,196608 +[1,18493:6630773,26368672:25952256,3253589,0 +(1,18487:6630773,23523006:25952256,407923,106246 +(1,18486:6630773,23523006:0,0,0 +g1,18486:6630773,23523006 +g1,18486:6630773,23523006 +g1,18486:6303093,23523006 +(1,18486:6303093,23523006:0,0,0 +) +g1,18486:6630773,23523006 +) +g1,18487:7626635,23523006 +k1,18487:7626635,23523006:0 +h1,18487:8290543,23523006:0,0,0 +k1,18487:32583029,23523006:24292486 +g1,18487:32583029,23523006 +) +(1,18488:6630773,24207861:25952256,424439,112852 +h1,18488:6630773,24207861:0,0,0 +g1,18488:6962727,24207861 +g1,18488:7294681,24207861 +g1,18488:11278129,24207861 +g1,18488:11942037,24207861 +k1,18488:11942037,24207861:0 +h1,18488:14265715,24207861:0,0,0 +k1,18488:32583029,24207861:18317314 +g1,18488:32583029,24207861 +) +(1,18489:6630773,24892716:25952256,424439,112852 +h1,18489:6630773,24892716:0,0,0 +g1,18489:6962727,24892716 +g1,18489:7294681,24892716 +g1,18489:7626635,24892716 +g1,18489:7958589,24892716 +g1,18489:8290543,24892716 +g1,18489:8622497,24892716 +g1,18489:8954451,24892716 +g1,18489:9286405,24892716 +g1,18489:9618359,24892716 +g1,18489:12273991,24892716 +g1,18489:12937899,24892716 +g1,18489:14929623,24892716 +g1,18489:15593531,24892716 +g1,18489:17585255,24892716 +g1,18489:18249163,24892716 +g1,18489:18913071,24892716 +g1,18489:20572841,24892716 +g1,18489:22896519,24892716 +g1,18489:23560427,24892716 +g1,18489:25552151,24892716 +h1,18489:25884105,24892716:0,0,0 +k1,18489:32583029,24892716:6698924 +g1,18489:32583029,24892716 +) +(1,18490:6630773,25577571:25952256,424439,112852 +h1,18490:6630773,25577571:0,0,0 +g1,18490:6962727,25577571 +g1,18490:7294681,25577571 +k1,18490:7294681,25577571:0 +h1,18490:11278128,25577571:0,0,0 +k1,18490:32583028,25577571:21304900 +g1,18490:32583028,25577571 +) +(1,18491:6630773,26262426:25952256,407923,106246 +h1,18491:6630773,26262426:0,0,0 +h1,18491:7294681,26262426:0,0,0 +k1,18491:32583029,26262426:25288348 +g1,18491:32583029,26262426 +) +] +) +g1,18493:32583029,26368672 +g1,18493:6630773,26368672 +g1,18493:6630773,26368672 +g1,18493:32583029,26368672 +g1,18493:32583029,26368672 +) +h1,18493:6630773,26565280:0,0,0 +(1,18496:6630773,35714482:25952256,9083666,0 +k1,18496:10523651,35714482:3892878 +h1,18495:10523651,35714482:0,0,0 +(1,18495:10523651,35714482:18166500,9083666,0 +(1,18495:10523651,35714482:18167376,9083688,0 +(1,18495:10523651,35714482:18167376,9083688,0 +(1,18495:10523651,35714482:0,9083688,0 +(1,18495:10523651,35714482:0,14208860,0 +(1,18495:10523651,35714482:28417720,14208860,0 +) +k1,18495:10523651,35714482:-28417720 +) +) +g1,18495:28691027,35714482 +) +) +) +g1,18496:28690151,35714482 +k1,18496:32583029,35714482:3892878 +) +(1,18503:6630773,36579562:25952256,513147,134348 +h1,18502:6630773,36579562:983040,0,0 +k1,18502:10384515,36579562:225284 +k1,18502:13493382,36579562:225283 +k1,18502:14737751,36579562:225284 +(1,18502:14737751,36579562:0,452978,122846 +r1,18518:17206288,36579562:2468537,575824,122846 +k1,18502:14737751,36579562:-2468537 +) +(1,18502:14737751,36579562:2468537,452978,122846 +k1,18502:14737751,36579562:3277 +h1,18502:17203011,36579562:0,411205,112570 +) +k1,18502:17431572,36579562:225284 +k1,18502:18012715,36579562:225283 +k1,18502:23590324,36579562:225284 +k1,18502:25092904,36579562:225283 +k1,18502:26422470,36579562:225284 +k1,18502:27395520,36579562:225284 +k1,18502:29970924,36579562:225283 +k1,18502:30957736,36579562:225284 +k1,18503:32583029,36579562:0 +) +(1,18503:6630773,37444642:25952256,505283,134348 +k1,18502:8186286,37444642:191053 +k1,18502:9396424,37444642:191053 +k1,18502:11159685,37444642:191052 +k1,18502:13037635,37444642:191053 +k1,18502:15269479,37444642:191053 +k1,18502:16076570,37444642:191053 +k1,18502:18933628,37444642:191053 +k1,18502:19480541,37444642:191053 +k1,18502:21861806,37444642:191052 +k1,18502:22584356,37444642:191053 +k1,18502:25364081,37444642:191053 +k1,18502:26949085,37444642:191053 +(1,18502:26949085,37444642:0,452978,122846 +r1,18518:32583029,37444642:5633944,575824,122846 +k1,18502:26949085,37444642:-5633944 +) +(1,18502:26949085,37444642:5633944,452978,122846 +g1,18502:29414345,37444642 +g1,18502:30117769,37444642 +h1,18502:32579752,37444642:0,411205,112570 +) +k1,18502:32583029,37444642:0 +) +(1,18503:6630773,38309722:25952256,513147,134348 +g1,18502:8021447,38309722 +g1,18502:9239761,38309722 +g1,18502:11219603,38309722 +g1,18502:12078124,38309722 +g1,18502:14638615,38309722 +g1,18502:16351070,38309722 +g1,18502:18117920,38309722 +g1,18502:19520390,38309722 +g1,18502:21909832,38309722 +g1,18502:24882545,38309722 +g1,18502:26475725,38309722 +(1,18502:26475725,38309722:0,452978,115847 +r1,18518:29999397,38309722:3523672,568825,115847 +k1,18502:26475725,38309722:-3523672 +) +(1,18502:26475725,38309722:3523672,452978,115847 +g1,18502:27885849,38309722 +g1,18502:28589273,38309722 +h1,18502:29996120,38309722:0,411205,112570 +) +k1,18503:32583029,38309722:2531204 +g1,18503:32583029,38309722 +) +v1,18505:6630773,38994577:0,393216,0 +(1,18509:6630773,39335260:25952256,733899,196608 +g1,18509:6630773,39335260 +g1,18509:6630773,39335260 +g1,18509:6434165,39335260 +(1,18509:6434165,39335260:0,733899,196608 +r1,18518:32779637,39335260:26345472,930507,196608 +k1,18509:6434165,39335260:-26345472 +) +(1,18509:6434165,39335260:26345472,733899,196608 +[1,18509:6630773,39335260:25952256,537291,0 +(1,18507:6630773,39222408:25952256,424439,112852 +(1,18506:6630773,39222408:0,0,0 +g1,18506:6630773,39222408 +g1,18506:6630773,39222408 +g1,18506:6303093,39222408 +(1,18506:6303093,39222408:0,0,0 +) +g1,18506:6630773,39222408 +) +g1,18507:7626635,39222408 +g1,18507:8290543,39222408 +g1,18507:18249161,39222408 +g1,18507:18913069,39222408 +g1,18507:21900655,39222408 +g1,18507:23228471,39222408 +g1,18507:23892379,39222408 +h1,18507:25552149,39222408:0,0,0 +k1,18507:32583029,39222408:7030880 +g1,18507:32583029,39222408 +) +] +) +g1,18509:32583029,39335260 +g1,18509:6630773,39335260 +g1,18509:6630773,39335260 +g1,18509:32583029,39335260 +g1,18509:32583029,39335260 +) +h1,18509:6630773,39531868:0,0,0 +] +(1,18518:32583029,45706769:0,0,0 +g1,18518:32583029,45706769 +) +) +] +(1,18518:6630773,47279633:25952256,0,0 +h1,18518:6630773,47279633:25952256,0,0 +) +] +(1,18518:4262630,4025873:0,0,0 +[1,18518:-473656,4025873:0,0,0 +(1,18518:-473656,-710413:0,0,0 +(1,18518:-473656,-710413:0,0,0 +g1,18518:-473656,-710413 +) +g1,18518:-473656,-710413 ) ] ) ] !21714 -}303 -Input:3080:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3081:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3082:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3083:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}304 Input:3084:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3085:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3086:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -321266,1727 +321470,1727 @@ Input:3092:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3093:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3094:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3095:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3096:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3097:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3098:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3099:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{304 -[1,18559:4262630,47279633:28320399,43253760,0 -(1,18559:4262630,4025873:0,0,0 -[1,18559:-473656,4025873:0,0,0 -(1,18559:-473656,-710413:0,0,0 -(1,18559:-473656,-644877:0,0,0 -k1,18559:-473656,-644877:-65536 +{305 +[1,18557:4262630,47279633:28320399,43253760,0 +(1,18557:4262630,4025873:0,0,0 +[1,18557:-473656,4025873:0,0,0 +(1,18557:-473656,-710413:0,0,0 +(1,18557:-473656,-644877:0,0,0 +k1,18557:-473656,-644877:-65536 ) -(1,18559:-473656,4736287:0,0,0 -k1,18559:-473656,4736287:5209943 +(1,18557:-473656,4736287:0,0,0 +k1,18557:-473656,4736287:5209943 ) -g1,18559:-473656,-710413 +g1,18557:-473656,-710413 ) ] ) -[1,18559:6630773,47279633:25952256,43253760,0 -[1,18559:6630773,4812305:25952256,786432,0 -(1,18559:6630773,4812305:25952256,513147,126483 -(1,18559:6630773,4812305:25952256,513147,126483 -g1,18559:3078558,4812305 -[1,18559:3078558,4812305:0,0,0 -(1,18559:3078558,2439708:0,1703936,0 -k1,18559:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18559:2537886,2439708:1179648,16384,0 +[1,18557:6630773,47279633:25952256,43253760,0 +[1,18557:6630773,4812305:25952256,786432,0 +(1,18557:6630773,4812305:25952256,513147,126483 +(1,18557:6630773,4812305:25952256,513147,126483 +g1,18557:3078558,4812305 +[1,18557:3078558,4812305:0,0,0 +(1,18557:3078558,2439708:0,1703936,0 +k1,18557:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18557:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18559:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18557:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18559:3078558,4812305:0,0,0 -(1,18559:3078558,2439708:0,1703936,0 -g1,18559:29030814,2439708 -g1,18559:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18559:36151628,1915420:16384,1179648,0 +[1,18557:3078558,4812305:0,0,0 +(1,18557:3078558,2439708:0,1703936,0 +g1,18557:29030814,2439708 +g1,18557:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18557:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18559:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18557:37855564,2439708:1179648,16384,0 ) ) -k1,18559:3078556,2439708:-34777008 +k1,18557:3078556,2439708:-34777008 ) ] -[1,18559:3078558,4812305:0,0,0 -(1,18559:3078558,49800853:0,16384,2228224 -k1,18559:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18559:2537886,49800853:1179648,16384,0 +[1,18557:3078558,4812305:0,0,0 +(1,18557:3078558,49800853:0,16384,2228224 +k1,18557:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18557:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18559:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18557:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18559:3078558,4812305:0,0,0 -(1,18559:3078558,49800853:0,16384,2228224 -g1,18559:29030814,49800853 -g1,18559:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18559:36151628,51504789:16384,1179648,0 +[1,18557:3078558,4812305:0,0,0 +(1,18557:3078558,49800853:0,16384,2228224 +g1,18557:29030814,49800853 +g1,18557:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18557:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18559:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18557:37855564,49800853:1179648,16384,0 ) ) -k1,18559:3078556,49800853:-34777008 +k1,18557:3078556,49800853:-34777008 ) ] -g1,18559:6630773,4812305 -g1,18559:6630773,4812305 -g1,18559:8017514,4812305 -g1,18559:11362471,4812305 -g1,18559:12177738,4812305 -g1,18559:15187806,4812305 -k1,18559:31387652,4812305:16199846 -) -) -] -[1,18559:6630773,45706769:25952256,40108032,0 -(1,18559:6630773,45706769:25952256,40108032,0 -(1,18559:6630773,45706769:0,0,0 -g1,18559:6630773,45706769 +g1,18557:6630773,4812305 +g1,18557:6630773,4812305 +g1,18557:8017514,4812305 +g1,18557:11362471,4812305 +g1,18557:12177738,4812305 +g1,18557:15187806,4812305 +k1,18557:31387652,4812305:16199846 +) +) +] +[1,18557:6630773,45706769:25952256,40108032,0 +(1,18557:6630773,45706769:25952256,40108032,0 +(1,18557:6630773,45706769:0,0,0 +g1,18557:6630773,45706769 ) -[1,18559:6630773,45706769:25952256,40108032,0 -(1,18514:6630773,14682403:25952256,9083666,0 -k1,18514:10523651,14682403:3892878 -h1,18513:10523651,14682403:0,0,0 -(1,18513:10523651,14682403:18166500,9083666,0 -(1,18513:10523651,14682403:18167376,9083688,0 -(1,18513:10523651,14682403:18167376,9083688,0 -(1,18513:10523651,14682403:0,9083688,0 -(1,18513:10523651,14682403:0,14208860,0 -(1,18513:10523651,14682403:28417720,14208860,0 -) -k1,18513:10523651,14682403:-28417720 -) -) -g1,18513:28691027,14682403 -) -) -) -g1,18514:28690151,14682403 -k1,18514:32583029,14682403:3892878 -) -(1,18521:6630773,15547483:25952256,513147,134348 -h1,18520:6630773,15547483:983040,0,0 -k1,18520:10793023,15547483:173729 -k1,18520:11985836,15547483:173728 -k1,18520:13731774,15547483:173729 -k1,18520:15418729,15547483:173729 -k1,18520:16540109,15547483:173729 -k1,18520:17732922,15547483:173728 -(1,18520:17732922,15547483:0,452978,115847 -r1,18559:19849747,15547483:2116825,568825,115847 -k1,18520:17732922,15547483:-2116825 -) -(1,18520:17732922,15547483:2116825,452978,115847 -k1,18520:17732922,15547483:3277 -h1,18520:19846470,15547483:0,411205,112570 -) -k1,18520:20023476,15547483:173729 -k1,18520:23215138,15547483:173729 -k1,18520:27432438,15547483:173729 -k1,18520:29099076,15547483:173728 -k1,18520:30339076,15547483:173729 -k1,18520:32583029,15547483:0 -) -(1,18521:6630773,16412563:25952256,513147,126483 -k1,18520:7864967,16412563:215109 -k1,18520:9531043,16412563:215109 -k1,18520:11817090,16412563:215109 -k1,18520:12979851,16412563:215110 -k1,18520:14214045,16412563:215109 -k1,18520:16790416,16412563:215109 -k1,18520:18692422,16412563:215109 -k1,18520:20739918,16412563:215109 -k1,18520:21486524,16412563:215109 -k1,18520:22057494,16412563:215110 -k1,18520:25638532,16412563:215109 -k1,18520:28488844,16412563:215109 -k1,18520:29723038,16412563:215109 -k1,18520:32583029,16412563:0 -) -(1,18521:6630773,17277643:25952256,513147,134348 -k1,18520:9783357,17277643:221159 -k1,18520:10663807,17277643:221158 -k1,18520:11904051,17277643:221159 -k1,18520:13402506,17277643:221158 -k1,18520:14815110,17277643:221159 -k1,18520:15824667,17277643:221159 -k1,18520:18434612,17277643:221158 -k1,18520:20918074,17277643:221159 -k1,18520:22536461,17277643:221159 -k1,18520:24088000,17277643:221158 -k1,18520:25328244,17277643:221159 -k1,18520:28385145,17277643:221158 -k1,18520:31391584,17277643:221159 -k1,18520:32583029,17277643:0 -) -(1,18521:6630773,18142723:25952256,513147,126483 -g1,18520:9803370,18142723 -g1,18520:11021684,18142723 -g1,18520:12498210,18142723 -g1,18520:15399488,18142723 -g1,18520:16408087,18142723 -g1,18520:18074012,18142723 -g1,18520:18932533,18142723 -g1,18520:20828489,18142723 -k1,18521:32583029,18142723:8844742 -g1,18521:32583029,18142723 -) -(1,18523:6630773,19007803:25952256,513147,126483 -h1,18522:6630773,19007803:983040,0,0 -k1,18522:9540406,19007803:209550 -k1,18522:11826138,19007803:209551 -k1,18522:13181913,19007803:209550 -k1,18522:15135376,19007803:209550 -k1,18522:16292578,19007803:209551 -(1,18522:16292578,19007803:0,452978,115847 -r1,18559:18409403,19007803:2116825,568825,115847 -k1,18522:16292578,19007803:-2116825 -) -(1,18522:16292578,19007803:2116825,452978,115847 -k1,18522:16292578,19007803:3277 -h1,18522:18406126,19007803:0,411205,112570 -) -k1,18522:18792623,19007803:209550 -k1,18522:20502947,19007803:209550 -k1,18522:21328536,19007803:209551 -k1,18522:24209333,19007803:209550 -k1,18522:27768428,19007803:209550 -k1,18522:30489974,19007803:209551 -k1,18522:31647175,19007803:209550 -k1,18523:32583029,19007803:0 -) -(1,18523:6630773,19872883:25952256,513147,115847 -k1,18522:8575335,19872883:154118 -k1,18522:11571095,19872883:154119 -k1,18522:15709802,19872883:154118 -k1,18522:16546805,19872883:154118 -k1,18522:17648575,19872883:154119 -k1,18522:20026985,19872883:154118 -k1,18522:23121048,19872883:154118 -k1,18522:25459482,19872883:154119 -k1,18522:26099221,19872883:154118 -(1,18522:26099221,19872883:0,452978,115847 -r1,18559:27160910,19872883:1061689,568825,115847 -k1,18522:26099221,19872883:-1061689 -) -(1,18522:26099221,19872883:1061689,452978,115847 -k1,18522:26099221,19872883:3277 -h1,18522:27157633,19872883:0,411205,112570 -) -k1,18522:27315028,19872883:154118 -k1,18522:28000644,19872883:154119 -k1,18522:31315563,19872883:154118 -k1,18522:32583029,19872883:0 -) -(1,18523:6630773,20737963:25952256,513147,115847 -k1,18522:7231562,20737963:244929 -(1,18522:7231562,20737963:0,459977,115847 -r1,18559:9348387,20737963:2116825,575824,115847 -k1,18522:7231562,20737963:-2116825 -) -(1,18522:7231562,20737963:2116825,459977,115847 -k1,18522:7231562,20737963:3277 -h1,18522:9345110,20737963:0,411205,112570 -) -k1,18522:9766986,20737963:244929 -k1,18522:10367775,20737963:244929 -k1,18522:13138463,20737963:244930 -k1,18522:15414353,20737963:244929 -k1,18522:17231491,20737963:244929 -k1,18522:18007917,20737963:244929 -k1,18522:19766072,20737963:244929 -k1,18522:22338184,20737963:244929 -k1,18522:23242405,20737963:244929 -k1,18522:23843194,20737963:244929 -k1,18522:27658525,20737963:244930 -k1,18522:29233835,20737963:244929 -k1,18522:30659723,20737963:244929 -k1,18522:31563944,20737963:244929 -k1,18522:32583029,20737963:0 -) -(1,18523:6630773,21603043:25952256,513147,126483 -g1,18522:9592345,21603043 -g1,18522:12317332,21603043 -g1,18522:14419071,21603043 -(1,18522:14419071,21603043:0,452978,115847 -r1,18559:22514997,21603043:8095926,568825,115847 -k1,18522:14419071,21603043:-8095926 -) -(1,18522:14419071,21603043:8095926,452978,115847 -k1,18522:14419071,21603043:3277 -h1,18522:22511720,21603043:0,411205,112570 -) -g1,18522:22714226,21603043 -g1,18522:23444952,21603043 -g1,18522:25157407,21603043 -g1,18522:26118164,21603043 -k1,18523:32583029,21603043:4146857 -g1,18523:32583029,21603043 -) -v1,18525:6630773,22287898:0,393216,0 -(1,18531:6630773,23998291:25952256,2103609,196608 -g1,18531:6630773,23998291 -g1,18531:6630773,23998291 -g1,18531:6434165,23998291 -(1,18531:6434165,23998291:0,2103609,196608 -r1,18559:32779637,23998291:26345472,2300217,196608 -k1,18531:6434165,23998291:-26345472 -) -(1,18531:6434165,23998291:26345472,2103609,196608 -[1,18531:6630773,23998291:25952256,1907001,0 -(1,18527:6630773,22515729:25952256,424439,112852 -(1,18526:6630773,22515729:0,0,0 -g1,18526:6630773,22515729 -g1,18526:6630773,22515729 -g1,18526:6303093,22515729 -(1,18526:6303093,22515729:0,0,0 -) -g1,18526:6630773,22515729 -) -k1,18527:6630773,22515729:0 -g1,18527:10614221,22515729 -g1,18527:11278129,22515729 -k1,18527:11278129,22515729:0 -h1,18527:13601807,22515729:0,0,0 -k1,18527:32583029,22515729:18981222 -g1,18527:32583029,22515729 -) -(1,18528:6630773,23200584:25952256,431045,112852 -h1,18528:6630773,23200584:0,0,0 -g1,18528:6962727,23200584 -g1,18528:7294681,23200584 -g1,18528:7626635,23200584 -g1,18528:7958589,23200584 -g1,18528:8290543,23200584 -g1,18528:8622497,23200584 -g1,18528:8954451,23200584 -g1,18528:11610083,23200584 -g1,18528:12273991,23200584 -g1,18528:14265715,23200584 -g1,18528:14929623,23200584 -g1,18528:16921347,23200584 -g1,18528:17585255,23200584 -g1,18528:18249163,23200584 -g1,18528:19908933,23200584 -g1,18528:22232611,23200584 -g1,18528:22896519,23200584 -g1,18528:27543875,23200584 -h1,18528:27875829,23200584:0,0,0 -k1,18528:32583029,23200584:4707200 -g1,18528:32583029,23200584 -) -(1,18529:6630773,23885439:25952256,424439,112852 -h1,18529:6630773,23885439:0,0,0 -g1,18529:6962727,23885439 -g1,18529:7294681,23885439 -k1,18529:7294681,23885439:0 -h1,18529:11278128,23885439:0,0,0 -k1,18529:32583028,23885439:21304900 -g1,18529:32583028,23885439 -) -] -) -g1,18531:32583029,23998291 -g1,18531:6630773,23998291 -g1,18531:6630773,23998291 -g1,18531:32583029,23998291 -g1,18531:32583029,23998291 -) -h1,18531:6630773,24194899:0,0,0 -(1,18534:6630773,33344101:25952256,9083666,0 -k1,18534:10523651,33344101:3892878 -h1,18533:10523651,33344101:0,0,0 -(1,18533:10523651,33344101:18166500,9083666,0 -(1,18533:10523651,33344101:18167376,9083688,0 -(1,18533:10523651,33344101:18167376,9083688,0 -(1,18533:10523651,33344101:0,9083688,0 -(1,18533:10523651,33344101:0,14208860,0 -(1,18533:10523651,33344101:28417720,14208860,0 -) -k1,18533:10523651,33344101:-28417720 -) -) -g1,18533:28691027,33344101 -) -) -) -g1,18534:28690151,33344101 -k1,18534:32583029,33344101:3892878 -) -(1,18541:6630773,34209181:25952256,513147,126483 -h1,18540:6630773,34209181:983040,0,0 -k1,18540:8352230,34209181:252796 -(1,18540:8352230,34209181:0,452978,115847 -r1,18559:9413919,34209181:1061689,568825,115847 -k1,18540:8352230,34209181:-1061689 -) -(1,18540:8352230,34209181:1061689,452978,115847 -k1,18540:8352230,34209181:3277 -h1,18540:9410642,34209181:0,411205,112570 -) -k1,18540:9666715,34209181:252796 -k1,18540:10451008,34209181:252796 -k1,18540:13864605,34209181:252796 -k1,18540:15384867,34209181:252796 -k1,18540:16408366,34209181:252796 -(1,18540:16408366,34209181:0,452978,115847 -r1,18559:18876903,34209181:2468537,568825,115847 -k1,18540:16408366,34209181:-2468537 -) -(1,18540:16408366,34209181:2468537,452978,115847 -k1,18540:16408366,34209181:3277 -h1,18540:18873626,34209181:0,411205,112570 -) -k1,18540:19129699,34209181:252796 -k1,18540:21450155,34209181:252795 -k1,18540:22473654,34209181:252796 -k1,18540:25007103,34209181:252796 -k1,18540:27290860,34209181:252796 -k1,18540:29115865,34209181:252796 -k1,18540:29900158,34209181:252796 -k1,18540:31839851,34209181:252796 -k1,18540:32583029,34209181:0 -) -(1,18541:6630773,35074261:25952256,513147,126483 -g1,18540:9095582,35074261 -(1,18540:9095582,35074261:0,452978,115847 -r1,18559:16839796,35074261:7744214,568825,115847 -k1,18540:9095582,35074261:-7744214 -) -(1,18540:9095582,35074261:7744214,452978,115847 -k1,18540:9095582,35074261:3277 -h1,18540:16836519,35074261:0,411205,112570 -) -g1,18540:17039025,35074261 -g1,18540:18722644,35074261 -g1,18540:19988144,35074261 -k1,18541:32583029,35074261:10259838 -g1,18541:32583029,35074261 -) -v1,18543:6630773,35759116:0,393216,0 -(1,18549:6630773,37469509:25952256,2103609,196608 -g1,18549:6630773,37469509 -g1,18549:6630773,37469509 -g1,18549:6434165,37469509 -(1,18549:6434165,37469509:0,2103609,196608 -r1,18559:32779637,37469509:26345472,2300217,196608 -k1,18549:6434165,37469509:-26345472 -) -(1,18549:6434165,37469509:26345472,2103609,196608 -[1,18549:6630773,37469509:25952256,1907001,0 -(1,18545:6630773,35986947:25952256,424439,112852 -(1,18544:6630773,35986947:0,0,0 -g1,18544:6630773,35986947 -g1,18544:6630773,35986947 -g1,18544:6303093,35986947 -(1,18544:6303093,35986947:0,0,0 -) -g1,18544:6630773,35986947 -) -k1,18545:6630773,35986947:0 -g1,18545:10614221,35986947 -g1,18545:11278129,35986947 -k1,18545:11278129,35986947:0 -h1,18545:13601807,35986947:0,0,0 -k1,18545:32583029,35986947:18981222 -g1,18545:32583029,35986947 -) -(1,18546:6630773,36671802:25952256,424439,112852 -h1,18546:6630773,36671802:0,0,0 -g1,18546:6962727,36671802 -g1,18546:7294681,36671802 -g1,18546:7626635,36671802 -g1,18546:7958589,36671802 -g1,18546:8290543,36671802 -g1,18546:8622497,36671802 -g1,18546:8954451,36671802 -g1,18546:11610083,36671802 -g1,18546:12273991,36671802 -g1,18546:14265715,36671802 -g1,18546:14929623,36671802 -g1,18546:16921347,36671802 -g1,18546:17585255,36671802 -g1,18546:18249163,36671802 -g1,18546:19908933,36671802 -g1,18546:22232611,36671802 -g1,18546:22896519,36671802 -g1,18546:27875829,36671802 -h1,18546:28207783,36671802:0,0,0 -k1,18546:32583029,36671802:4375246 -g1,18546:32583029,36671802 -) -(1,18547:6630773,37356657:25952256,424439,112852 -h1,18547:6630773,37356657:0,0,0 -g1,18547:6962727,37356657 -g1,18547:7294681,37356657 -k1,18547:7294681,37356657:0 -h1,18547:11278128,37356657:0,0,0 -k1,18547:32583028,37356657:21304900 -g1,18547:32583028,37356657 -) -] -) -g1,18549:32583029,37469509 -g1,18549:6630773,37469509 -g1,18549:6630773,37469509 -g1,18549:32583029,37469509 -g1,18549:32583029,37469509 -) -h1,18549:6630773,37666117:0,0,0 -(1,18553:6630773,38531197:25952256,513147,126483 -h1,18552:6630773,38531197:983040,0,0 -k1,18552:8991052,38531197:180552 -k1,18552:11074113,38531197:180551 -k1,18552:12202316,38531197:180552 -k1,18552:14084838,38531197:180552 -k1,18552:17439953,38531197:180551 -k1,18552:19216962,38531197:180552 -k1,18552:20013551,38531197:180551 -k1,18552:20549963,38531197:180552 -k1,18552:22932525,38531197:180552 -k1,18552:24351051,38531197:180551 -k1,18552:25217765,38531197:180552 -k1,18552:27142230,38531197:180552 -k1,18552:28270432,38531197:180551 -k1,18552:30655615,38531197:180552 -k1,18552:32583029,38531197:0 -) -(1,18553:6630773,39396277:25952256,505283,134348 -g1,18552:7821562,39396277 -g1,18552:11110814,39396277 -g1,18552:11926081,39396277 -g1,18552:13912477,39396277 -g1,18552:14727744,39396277 -g1,18552:17205660,39396277 -h1,18552:18574707,39396277:0,0,0 -g1,18552:18773936,39396277 -g1,18552:19782535,39396277 -g1,18552:21479917,39396277 -h1,18552:22675294,39396277:0,0,0 -k1,18553:32583029,39396277:9855307 -g1,18553:32583029,39396277 -) -(1,18555:6630773,40261357:25952256,513147,134348 -h1,18554:6630773,40261357:983040,0,0 -k1,18554:8517302,40261357:275654 -k1,18554:9812042,40261357:275655 -k1,18554:13079415,40261357:275654 -k1,18554:15210394,40261357:275655 -k1,18554:16433699,40261357:275654 -k1,18554:18834030,40261357:275654 -k1,18554:20890954,40261357:275655 -k1,18554:23021277,40261357:275654 -k1,18554:24106302,40261357:275655 -k1,18554:25771319,40261357:275654 -k1,18554:29186803,40261357:275654 -k1,18554:30078496,40261357:275655 -k1,18554:30710010,40261357:275654 -k1,18554:32583029,40261357:0 -) -(1,18555:6630773,41126437:25952256,513147,134348 -k1,18554:8246235,41126437:226099 -k1,18554:10522300,41126437:226099 -k1,18554:13886264,41126437:226100 -k1,18554:15616414,41126437:226099 -k1,18554:19452891,41126437:226099 -k1,18554:20440518,41126437:226099 -k1,18554:23094071,41126437:226099 -k1,18554:24339255,41126437:226099 -k1,18554:26245698,41126437:226100 -k1,18554:29250524,41126437:226099 -k1,18554:30238151,41126437:226099 -k1,18554:31483335,41126437:226099 -k1,18554:32583029,41126437:0 -) -(1,18555:6630773,41991517:25952256,513147,134348 -g1,18554:7481430,41991517 -(1,18554:7481430,41991517:0,452978,115847 -r1,18559:9246543,41991517:1765113,568825,115847 -k1,18554:7481430,41991517:-1765113 -) -(1,18554:7481430,41991517:1765113,452978,115847 -k1,18554:7481430,41991517:3277 -h1,18554:9243266,41991517:0,411205,112570 -) -g1,18554:9445772,41991517 -g1,18554:10331163,41991517 -g1,18554:11549477,41991517 -g1,18554:14821034,41991517 -g1,18554:15671691,41991517 -g1,18554:19151652,41991517 -(1,18554:19151652,41991517:0,452978,122846 -r1,18559:21620189,41991517:2468537,575824,122846 -k1,18554:19151652,41991517:-2468537 -) -(1,18554:19151652,41991517:2468537,452978,122846 -k1,18554:19151652,41991517:3277 -h1,18554:21616912,41991517:0,411205,112570 -) -g1,18554:21819418,41991517 -g1,18554:22685803,41991517 -(1,18554:22685803,41991517:0,452978,122846 -r1,18559:25506052,41991517:2820249,575824,122846 -k1,18554:22685803,41991517:-2820249 -) -(1,18554:22685803,41991517:2820249,452978,122846 -k1,18554:22685803,41991517:3277 -h1,18554:25502775,41991517:0,411205,112570 -) -k1,18555:32583029,41991517:7024549 -g1,18555:32583029,41991517 -) -(1,18557:6630773,42856597:25952256,513147,134348 -h1,18556:6630773,42856597:983040,0,0 -k1,18556:11350990,42856597:202820 -k1,18556:13759098,42856597:202821 -k1,18556:14613346,42856597:202820 -(1,18556:14613346,42856597:0,452978,115847 -r1,18559:16026747,42856597:1413401,568825,115847 -k1,18556:14613346,42856597:-1413401 -) -(1,18556:14613346,42856597:1413401,452978,115847 -k1,18556:14613346,42856597:3277 -h1,18556:16023470,42856597:0,411205,112570 -) -k1,18556:16229567,42856597:202820 -k1,18556:18642262,42856597:202821 -(1,18556:18642262,42856597:0,452978,122846 -r1,18559:21110799,42856597:2468537,575824,122846 -k1,18556:18642262,42856597:-2468537 -) -(1,18556:18642262,42856597:2468537,452978,122846 -k1,18556:18642262,42856597:3277 -h1,18556:21107522,42856597:0,411205,112570 -) -k1,18556:21313619,42856597:202820 -k1,18556:25127474,42856597:202821 -k1,18556:25997450,42856597:202820 -(1,18556:25997450,42856597:0,452978,122846 -r1,18559:28817699,42856597:2820249,575824,122846 -k1,18556:25997450,42856597:-2820249 -) -(1,18556:25997450,42856597:2820249,452978,122846 -k1,18556:25997450,42856597:3277 -h1,18556:28814422,42856597:0,411205,112570 -) -k1,18556:29020519,42856597:202820 -k1,18556:30819797,42856597:202821 -k1,18556:31708779,42856597:202820 -k1,18557:32583029,42856597:0 -) -(1,18557:6630773,43721677:25952256,513147,134348 -k1,18556:8723892,43721677:265320 -k1,18556:9936863,43721677:265320 -k1,18556:10968299,43721677:265320 -k1,18556:13121711,43721677:265320 -k1,18556:14003069,43721677:265320 -k1,18556:14624249,43721677:265320 -k1,18556:16340535,43721677:265319 -k1,18556:17233690,43721677:265320 -k1,18556:19056801,43721677:265320 -k1,18556:22521589,43721677:265320 -k1,18556:25640347,43721677:265320 -k1,18556:27097112,43721677:265320 -k1,18556:31043589,43721677:265320 -k1,18557:32583029,43721677:0 -) -(1,18557:6630773,44586757:25952256,505283,126483 -k1,18556:8838085,44586757:237955 -k1,18556:11281327,44586757:237955 -k1,18556:12170710,44586757:237955 -k1,18556:16019699,44586757:237955 -k1,18556:17651605,44586757:237955 -k1,18556:19586288,44586757:237956 -k1,18556:21477716,44586757:237955 -k1,18556:23957658,44586757:237955 -k1,18556:26840646,44586757:237955 -k1,18556:28097686,44586757:237955 -k1,18556:31708779,44586757:237955 -k1,18557:32583029,44586757:0 -) -] -(1,18559:32583029,45706769:0,0,0 -g1,18559:32583029,45706769 -) -) -] -(1,18559:6630773,47279633:25952256,0,0 -h1,18559:6630773,47279633:25952256,0,0 -) -] -(1,18559:4262630,4025873:0,0,0 -[1,18559:-473656,4025873:0,0,0 -(1,18559:-473656,-710413:0,0,0 -(1,18559:-473656,-710413:0,0,0 -g1,18559:-473656,-710413 -) -g1,18559:-473656,-710413 +[1,18557:6630773,45706769:25952256,40108032,0 +(1,18512:6630773,14682403:25952256,9083666,0 +k1,18512:10523651,14682403:3892878 +h1,18511:10523651,14682403:0,0,0 +(1,18511:10523651,14682403:18166500,9083666,0 +(1,18511:10523651,14682403:18167376,9083688,0 +(1,18511:10523651,14682403:18167376,9083688,0 +(1,18511:10523651,14682403:0,9083688,0 +(1,18511:10523651,14682403:0,14208860,0 +(1,18511:10523651,14682403:28417720,14208860,0 +) +k1,18511:10523651,14682403:-28417720 +) +) +g1,18511:28691027,14682403 +) +) +) +g1,18512:28690151,14682403 +k1,18512:32583029,14682403:3892878 +) +(1,18519:6630773,15547483:25952256,513147,134348 +h1,18518:6630773,15547483:983040,0,0 +k1,18518:10793023,15547483:173729 +k1,18518:11985836,15547483:173728 +k1,18518:13731774,15547483:173729 +k1,18518:15418729,15547483:173729 +k1,18518:16540109,15547483:173729 +k1,18518:17732922,15547483:173728 +(1,18518:17732922,15547483:0,452978,115847 +r1,18557:19849747,15547483:2116825,568825,115847 +k1,18518:17732922,15547483:-2116825 +) +(1,18518:17732922,15547483:2116825,452978,115847 +k1,18518:17732922,15547483:3277 +h1,18518:19846470,15547483:0,411205,112570 +) +k1,18518:20023476,15547483:173729 +k1,18518:23215138,15547483:173729 +k1,18518:27432438,15547483:173729 +k1,18518:29099076,15547483:173728 +k1,18518:30339076,15547483:173729 +k1,18518:32583029,15547483:0 +) +(1,18519:6630773,16412563:25952256,513147,126483 +k1,18518:7864967,16412563:215109 +k1,18518:9531043,16412563:215109 +k1,18518:11817090,16412563:215109 +k1,18518:12979851,16412563:215110 +k1,18518:14214045,16412563:215109 +k1,18518:16790416,16412563:215109 +k1,18518:18692422,16412563:215109 +k1,18518:20739918,16412563:215109 +k1,18518:21486524,16412563:215109 +k1,18518:22057494,16412563:215110 +k1,18518:25638532,16412563:215109 +k1,18518:28488844,16412563:215109 +k1,18518:29723038,16412563:215109 +k1,18518:32583029,16412563:0 +) +(1,18519:6630773,17277643:25952256,513147,134348 +k1,18518:9783357,17277643:221159 +k1,18518:10663807,17277643:221158 +k1,18518:11904051,17277643:221159 +k1,18518:13402506,17277643:221158 +k1,18518:14815110,17277643:221159 +k1,18518:15824667,17277643:221159 +k1,18518:18434612,17277643:221158 +k1,18518:20918074,17277643:221159 +k1,18518:22536461,17277643:221159 +k1,18518:24088000,17277643:221158 +k1,18518:25328244,17277643:221159 +k1,18518:28385145,17277643:221158 +k1,18518:31391584,17277643:221159 +k1,18518:32583029,17277643:0 +) +(1,18519:6630773,18142723:25952256,513147,126483 +g1,18518:9803370,18142723 +g1,18518:11021684,18142723 +g1,18518:12498210,18142723 +g1,18518:15399488,18142723 +g1,18518:16408087,18142723 +g1,18518:18074012,18142723 +g1,18518:18932533,18142723 +g1,18518:20828489,18142723 +k1,18519:32583029,18142723:8844742 +g1,18519:32583029,18142723 +) +(1,18521:6630773,19007803:25952256,513147,126483 +h1,18520:6630773,19007803:983040,0,0 +k1,18520:9540406,19007803:209550 +k1,18520:11826138,19007803:209551 +k1,18520:13181913,19007803:209550 +k1,18520:15135376,19007803:209550 +k1,18520:16292578,19007803:209551 +(1,18520:16292578,19007803:0,452978,115847 +r1,18557:18409403,19007803:2116825,568825,115847 +k1,18520:16292578,19007803:-2116825 +) +(1,18520:16292578,19007803:2116825,452978,115847 +k1,18520:16292578,19007803:3277 +h1,18520:18406126,19007803:0,411205,112570 +) +k1,18520:18792623,19007803:209550 +k1,18520:20502947,19007803:209550 +k1,18520:21328536,19007803:209551 +k1,18520:24209333,19007803:209550 +k1,18520:27768428,19007803:209550 +k1,18520:30489974,19007803:209551 +k1,18520:31647175,19007803:209550 +k1,18521:32583029,19007803:0 +) +(1,18521:6630773,19872883:25952256,513147,115847 +k1,18520:8575335,19872883:154118 +k1,18520:11571095,19872883:154119 +k1,18520:15709802,19872883:154118 +k1,18520:16546805,19872883:154118 +k1,18520:17648575,19872883:154119 +k1,18520:20026985,19872883:154118 +k1,18520:23121048,19872883:154118 +k1,18520:25459482,19872883:154119 +k1,18520:26099221,19872883:154118 +(1,18520:26099221,19872883:0,452978,115847 +r1,18557:27160910,19872883:1061689,568825,115847 +k1,18520:26099221,19872883:-1061689 +) +(1,18520:26099221,19872883:1061689,452978,115847 +k1,18520:26099221,19872883:3277 +h1,18520:27157633,19872883:0,411205,112570 +) +k1,18520:27315028,19872883:154118 +k1,18520:28000644,19872883:154119 +k1,18520:31315563,19872883:154118 +k1,18520:32583029,19872883:0 +) +(1,18521:6630773,20737963:25952256,513147,115847 +k1,18520:7231562,20737963:244929 +(1,18520:7231562,20737963:0,459977,115847 +r1,18557:9348387,20737963:2116825,575824,115847 +k1,18520:7231562,20737963:-2116825 +) +(1,18520:7231562,20737963:2116825,459977,115847 +k1,18520:7231562,20737963:3277 +h1,18520:9345110,20737963:0,411205,112570 +) +k1,18520:9766986,20737963:244929 +k1,18520:10367775,20737963:244929 +k1,18520:13138463,20737963:244930 +k1,18520:15414353,20737963:244929 +k1,18520:17231491,20737963:244929 +k1,18520:18007917,20737963:244929 +k1,18520:19766072,20737963:244929 +k1,18520:22338184,20737963:244929 +k1,18520:23242405,20737963:244929 +k1,18520:23843194,20737963:244929 +k1,18520:27658525,20737963:244930 +k1,18520:29233835,20737963:244929 +k1,18520:30659723,20737963:244929 +k1,18520:31563944,20737963:244929 +k1,18520:32583029,20737963:0 +) +(1,18521:6630773,21603043:25952256,513147,126483 +g1,18520:9592345,21603043 +g1,18520:12317332,21603043 +g1,18520:14419071,21603043 +(1,18520:14419071,21603043:0,452978,115847 +r1,18557:22514997,21603043:8095926,568825,115847 +k1,18520:14419071,21603043:-8095926 +) +(1,18520:14419071,21603043:8095926,452978,115847 +k1,18520:14419071,21603043:3277 +h1,18520:22511720,21603043:0,411205,112570 +) +g1,18520:22714226,21603043 +g1,18520:23444952,21603043 +g1,18520:25157407,21603043 +g1,18520:26118164,21603043 +k1,18521:32583029,21603043:4146857 +g1,18521:32583029,21603043 +) +v1,18523:6630773,22287898:0,393216,0 +(1,18529:6630773,23998291:25952256,2103609,196608 +g1,18529:6630773,23998291 +g1,18529:6630773,23998291 +g1,18529:6434165,23998291 +(1,18529:6434165,23998291:0,2103609,196608 +r1,18557:32779637,23998291:26345472,2300217,196608 +k1,18529:6434165,23998291:-26345472 +) +(1,18529:6434165,23998291:26345472,2103609,196608 +[1,18529:6630773,23998291:25952256,1907001,0 +(1,18525:6630773,22515729:25952256,424439,112852 +(1,18524:6630773,22515729:0,0,0 +g1,18524:6630773,22515729 +g1,18524:6630773,22515729 +g1,18524:6303093,22515729 +(1,18524:6303093,22515729:0,0,0 +) +g1,18524:6630773,22515729 +) +k1,18525:6630773,22515729:0 +g1,18525:10614221,22515729 +g1,18525:11278129,22515729 +k1,18525:11278129,22515729:0 +h1,18525:13601807,22515729:0,0,0 +k1,18525:32583029,22515729:18981222 +g1,18525:32583029,22515729 +) +(1,18526:6630773,23200584:25952256,431045,112852 +h1,18526:6630773,23200584:0,0,0 +g1,18526:6962727,23200584 +g1,18526:7294681,23200584 +g1,18526:7626635,23200584 +g1,18526:7958589,23200584 +g1,18526:8290543,23200584 +g1,18526:8622497,23200584 +g1,18526:8954451,23200584 +g1,18526:11610083,23200584 +g1,18526:12273991,23200584 +g1,18526:14265715,23200584 +g1,18526:14929623,23200584 +g1,18526:16921347,23200584 +g1,18526:17585255,23200584 +g1,18526:18249163,23200584 +g1,18526:19908933,23200584 +g1,18526:22232611,23200584 +g1,18526:22896519,23200584 +g1,18526:27543875,23200584 +h1,18526:27875829,23200584:0,0,0 +k1,18526:32583029,23200584:4707200 +g1,18526:32583029,23200584 +) +(1,18527:6630773,23885439:25952256,424439,112852 +h1,18527:6630773,23885439:0,0,0 +g1,18527:6962727,23885439 +g1,18527:7294681,23885439 +k1,18527:7294681,23885439:0 +h1,18527:11278128,23885439:0,0,0 +k1,18527:32583028,23885439:21304900 +g1,18527:32583028,23885439 +) +] +) +g1,18529:32583029,23998291 +g1,18529:6630773,23998291 +g1,18529:6630773,23998291 +g1,18529:32583029,23998291 +g1,18529:32583029,23998291 +) +h1,18529:6630773,24194899:0,0,0 +(1,18532:6630773,33344101:25952256,9083666,0 +k1,18532:10523651,33344101:3892878 +h1,18531:10523651,33344101:0,0,0 +(1,18531:10523651,33344101:18166500,9083666,0 +(1,18531:10523651,33344101:18167376,9083688,0 +(1,18531:10523651,33344101:18167376,9083688,0 +(1,18531:10523651,33344101:0,9083688,0 +(1,18531:10523651,33344101:0,14208860,0 +(1,18531:10523651,33344101:28417720,14208860,0 +) +k1,18531:10523651,33344101:-28417720 +) +) +g1,18531:28691027,33344101 +) +) +) +g1,18532:28690151,33344101 +k1,18532:32583029,33344101:3892878 +) +(1,18539:6630773,34209181:25952256,513147,126483 +h1,18538:6630773,34209181:983040,0,0 +k1,18538:8352230,34209181:252796 +(1,18538:8352230,34209181:0,452978,115847 +r1,18557:9413919,34209181:1061689,568825,115847 +k1,18538:8352230,34209181:-1061689 +) +(1,18538:8352230,34209181:1061689,452978,115847 +k1,18538:8352230,34209181:3277 +h1,18538:9410642,34209181:0,411205,112570 +) +k1,18538:9666715,34209181:252796 +k1,18538:10451008,34209181:252796 +k1,18538:13864605,34209181:252796 +k1,18538:15384867,34209181:252796 +k1,18538:16408366,34209181:252796 +(1,18538:16408366,34209181:0,452978,115847 +r1,18557:18876903,34209181:2468537,568825,115847 +k1,18538:16408366,34209181:-2468537 +) +(1,18538:16408366,34209181:2468537,452978,115847 +k1,18538:16408366,34209181:3277 +h1,18538:18873626,34209181:0,411205,112570 +) +k1,18538:19129699,34209181:252796 +k1,18538:21450155,34209181:252795 +k1,18538:22473654,34209181:252796 +k1,18538:25007103,34209181:252796 +k1,18538:27290860,34209181:252796 +k1,18538:29115865,34209181:252796 +k1,18538:29900158,34209181:252796 +k1,18538:31839851,34209181:252796 +k1,18538:32583029,34209181:0 +) +(1,18539:6630773,35074261:25952256,513147,126483 +g1,18538:9095582,35074261 +(1,18538:9095582,35074261:0,452978,115847 +r1,18557:16839796,35074261:7744214,568825,115847 +k1,18538:9095582,35074261:-7744214 +) +(1,18538:9095582,35074261:7744214,452978,115847 +k1,18538:9095582,35074261:3277 +h1,18538:16836519,35074261:0,411205,112570 +) +g1,18538:17039025,35074261 +g1,18538:18722644,35074261 +g1,18538:19988144,35074261 +k1,18539:32583029,35074261:10259838 +g1,18539:32583029,35074261 +) +v1,18541:6630773,35759116:0,393216,0 +(1,18547:6630773,37469509:25952256,2103609,196608 +g1,18547:6630773,37469509 +g1,18547:6630773,37469509 +g1,18547:6434165,37469509 +(1,18547:6434165,37469509:0,2103609,196608 +r1,18557:32779637,37469509:26345472,2300217,196608 +k1,18547:6434165,37469509:-26345472 +) +(1,18547:6434165,37469509:26345472,2103609,196608 +[1,18547:6630773,37469509:25952256,1907001,0 +(1,18543:6630773,35986947:25952256,424439,112852 +(1,18542:6630773,35986947:0,0,0 +g1,18542:6630773,35986947 +g1,18542:6630773,35986947 +g1,18542:6303093,35986947 +(1,18542:6303093,35986947:0,0,0 +) +g1,18542:6630773,35986947 +) +k1,18543:6630773,35986947:0 +g1,18543:10614221,35986947 +g1,18543:11278129,35986947 +k1,18543:11278129,35986947:0 +h1,18543:13601807,35986947:0,0,0 +k1,18543:32583029,35986947:18981222 +g1,18543:32583029,35986947 +) +(1,18544:6630773,36671802:25952256,424439,112852 +h1,18544:6630773,36671802:0,0,0 +g1,18544:6962727,36671802 +g1,18544:7294681,36671802 +g1,18544:7626635,36671802 +g1,18544:7958589,36671802 +g1,18544:8290543,36671802 +g1,18544:8622497,36671802 +g1,18544:8954451,36671802 +g1,18544:11610083,36671802 +g1,18544:12273991,36671802 +g1,18544:14265715,36671802 +g1,18544:14929623,36671802 +g1,18544:16921347,36671802 +g1,18544:17585255,36671802 +g1,18544:18249163,36671802 +g1,18544:19908933,36671802 +g1,18544:22232611,36671802 +g1,18544:22896519,36671802 +g1,18544:27875829,36671802 +h1,18544:28207783,36671802:0,0,0 +k1,18544:32583029,36671802:4375246 +g1,18544:32583029,36671802 +) +(1,18545:6630773,37356657:25952256,424439,112852 +h1,18545:6630773,37356657:0,0,0 +g1,18545:6962727,37356657 +g1,18545:7294681,37356657 +k1,18545:7294681,37356657:0 +h1,18545:11278128,37356657:0,0,0 +k1,18545:32583028,37356657:21304900 +g1,18545:32583028,37356657 +) +] +) +g1,18547:32583029,37469509 +g1,18547:6630773,37469509 +g1,18547:6630773,37469509 +g1,18547:32583029,37469509 +g1,18547:32583029,37469509 +) +h1,18547:6630773,37666117:0,0,0 +(1,18551:6630773,38531197:25952256,513147,126483 +h1,18550:6630773,38531197:983040,0,0 +k1,18550:8991052,38531197:180552 +k1,18550:11074113,38531197:180551 +k1,18550:12202316,38531197:180552 +k1,18550:14084838,38531197:180552 +k1,18550:17439953,38531197:180551 +k1,18550:19216962,38531197:180552 +k1,18550:20013551,38531197:180551 +k1,18550:20549963,38531197:180552 +k1,18550:22932525,38531197:180552 +k1,18550:24351051,38531197:180551 +k1,18550:25217765,38531197:180552 +k1,18550:27142230,38531197:180552 +k1,18550:28270432,38531197:180551 +k1,18550:30655615,38531197:180552 +k1,18550:32583029,38531197:0 +) +(1,18551:6630773,39396277:25952256,505283,134348 +g1,18550:7821562,39396277 +g1,18550:11110814,39396277 +g1,18550:11926081,39396277 +g1,18550:13912477,39396277 +g1,18550:14727744,39396277 +g1,18550:17205660,39396277 +h1,18550:18574707,39396277:0,0,0 +g1,18550:18773936,39396277 +g1,18550:19782535,39396277 +g1,18550:21479917,39396277 +h1,18550:22675294,39396277:0,0,0 +k1,18551:32583029,39396277:9855307 +g1,18551:32583029,39396277 +) +(1,18553:6630773,40261357:25952256,513147,134348 +h1,18552:6630773,40261357:983040,0,0 +k1,18552:8517302,40261357:275654 +k1,18552:9812042,40261357:275655 +k1,18552:13079415,40261357:275654 +k1,18552:15210394,40261357:275655 +k1,18552:16433699,40261357:275654 +k1,18552:18834030,40261357:275654 +k1,18552:20890954,40261357:275655 +k1,18552:23021277,40261357:275654 +k1,18552:24106302,40261357:275655 +k1,18552:25771319,40261357:275654 +k1,18552:29186803,40261357:275654 +k1,18552:30078496,40261357:275655 +k1,18552:30710010,40261357:275654 +k1,18552:32583029,40261357:0 +) +(1,18553:6630773,41126437:25952256,513147,134348 +k1,18552:8246235,41126437:226099 +k1,18552:10522300,41126437:226099 +k1,18552:13886264,41126437:226100 +k1,18552:15616414,41126437:226099 +k1,18552:19452891,41126437:226099 +k1,18552:20440518,41126437:226099 +k1,18552:23094071,41126437:226099 +k1,18552:24339255,41126437:226099 +k1,18552:26245698,41126437:226100 +k1,18552:29250524,41126437:226099 +k1,18552:30238151,41126437:226099 +k1,18552:31483335,41126437:226099 +k1,18552:32583029,41126437:0 +) +(1,18553:6630773,41991517:25952256,513147,134348 +g1,18552:7481430,41991517 +(1,18552:7481430,41991517:0,452978,115847 +r1,18557:9246543,41991517:1765113,568825,115847 +k1,18552:7481430,41991517:-1765113 +) +(1,18552:7481430,41991517:1765113,452978,115847 +k1,18552:7481430,41991517:3277 +h1,18552:9243266,41991517:0,411205,112570 +) +g1,18552:9445772,41991517 +g1,18552:10331163,41991517 +g1,18552:11549477,41991517 +g1,18552:14821034,41991517 +g1,18552:15671691,41991517 +g1,18552:19151652,41991517 +(1,18552:19151652,41991517:0,452978,122846 +r1,18557:21620189,41991517:2468537,575824,122846 +k1,18552:19151652,41991517:-2468537 +) +(1,18552:19151652,41991517:2468537,452978,122846 +k1,18552:19151652,41991517:3277 +h1,18552:21616912,41991517:0,411205,112570 +) +g1,18552:21819418,41991517 +g1,18552:22685803,41991517 +(1,18552:22685803,41991517:0,452978,122846 +r1,18557:25506052,41991517:2820249,575824,122846 +k1,18552:22685803,41991517:-2820249 +) +(1,18552:22685803,41991517:2820249,452978,122846 +k1,18552:22685803,41991517:3277 +h1,18552:25502775,41991517:0,411205,112570 +) +k1,18553:32583029,41991517:7024549 +g1,18553:32583029,41991517 +) +(1,18555:6630773,42856597:25952256,513147,134348 +h1,18554:6630773,42856597:983040,0,0 +k1,18554:11350990,42856597:202820 +k1,18554:13759098,42856597:202821 +k1,18554:14613346,42856597:202820 +(1,18554:14613346,42856597:0,452978,115847 +r1,18557:16026747,42856597:1413401,568825,115847 +k1,18554:14613346,42856597:-1413401 +) +(1,18554:14613346,42856597:1413401,452978,115847 +k1,18554:14613346,42856597:3277 +h1,18554:16023470,42856597:0,411205,112570 +) +k1,18554:16229567,42856597:202820 +k1,18554:18642262,42856597:202821 +(1,18554:18642262,42856597:0,452978,122846 +r1,18557:21110799,42856597:2468537,575824,122846 +k1,18554:18642262,42856597:-2468537 +) +(1,18554:18642262,42856597:2468537,452978,122846 +k1,18554:18642262,42856597:3277 +h1,18554:21107522,42856597:0,411205,112570 +) +k1,18554:21313619,42856597:202820 +k1,18554:25127474,42856597:202821 +k1,18554:25997450,42856597:202820 +(1,18554:25997450,42856597:0,452978,122846 +r1,18557:28817699,42856597:2820249,575824,122846 +k1,18554:25997450,42856597:-2820249 +) +(1,18554:25997450,42856597:2820249,452978,122846 +k1,18554:25997450,42856597:3277 +h1,18554:28814422,42856597:0,411205,112570 +) +k1,18554:29020519,42856597:202820 +k1,18554:30819797,42856597:202821 +k1,18554:31708779,42856597:202820 +k1,18555:32583029,42856597:0 +) +(1,18555:6630773,43721677:25952256,513147,134348 +k1,18554:8723892,43721677:265320 +k1,18554:9936863,43721677:265320 +k1,18554:10968299,43721677:265320 +k1,18554:13121711,43721677:265320 +k1,18554:14003069,43721677:265320 +k1,18554:14624249,43721677:265320 +k1,18554:16340535,43721677:265319 +k1,18554:17233690,43721677:265320 +k1,18554:19056801,43721677:265320 +k1,18554:22521589,43721677:265320 +k1,18554:25640347,43721677:265320 +k1,18554:27097112,43721677:265320 +k1,18554:31043589,43721677:265320 +k1,18555:32583029,43721677:0 +) +(1,18555:6630773,44586757:25952256,505283,126483 +k1,18554:8838085,44586757:237955 +k1,18554:11281327,44586757:237955 +k1,18554:12170710,44586757:237955 +k1,18554:16019699,44586757:237955 +k1,18554:17651605,44586757:237955 +k1,18554:19586288,44586757:237956 +k1,18554:21477716,44586757:237955 +k1,18554:23957658,44586757:237955 +k1,18554:26840646,44586757:237955 +k1,18554:28097686,44586757:237955 +k1,18554:31708779,44586757:237955 +k1,18555:32583029,44586757:0 +) +] +(1,18557:32583029,45706769:0,0,0 +g1,18557:32583029,45706769 +) +) +] +(1,18557:6630773,47279633:25952256,0,0 +h1,18557:6630773,47279633:25952256,0,0 +) +] +(1,18557:4262630,4025873:0,0,0 +[1,18557:-473656,4025873:0,0,0 +(1,18557:-473656,-710413:0,0,0 +(1,18557:-473656,-710413:0,0,0 +g1,18557:-473656,-710413 +) +g1,18557:-473656,-710413 ) ] ) ] !20437 -}304 -Input:3096:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3097:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3098:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3099:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}305 Input:3100:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3101:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3102:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3103:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3104:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3105:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3106:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3107:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3108:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{305 -[1,18634:4262630,47279633:28320399,43253760,0 -(1,18634:4262630,4025873:0,0,0 -[1,18634:-473656,4025873:0,0,0 -(1,18634:-473656,-710413:0,0,0 -(1,18634:-473656,-644877:0,0,0 -k1,18634:-473656,-644877:-65536 +{306 +[1,18632:4262630,47279633:28320399,43253760,0 +(1,18632:4262630,4025873:0,0,0 +[1,18632:-473656,4025873:0,0,0 +(1,18632:-473656,-710413:0,0,0 +(1,18632:-473656,-644877:0,0,0 +k1,18632:-473656,-644877:-65536 ) -(1,18634:-473656,4736287:0,0,0 -k1,18634:-473656,4736287:5209943 +(1,18632:-473656,4736287:0,0,0 +k1,18632:-473656,4736287:5209943 ) -g1,18634:-473656,-710413 +g1,18632:-473656,-710413 ) ] ) -[1,18634:6630773,47279633:25952256,43253760,0 -[1,18634:6630773,4812305:25952256,786432,0 -(1,18634:6630773,4812305:25952256,513147,126483 -(1,18634:6630773,4812305:25952256,513147,126483 -g1,18634:3078558,4812305 -[1,18634:3078558,4812305:0,0,0 -(1,18634:3078558,2439708:0,1703936,0 -k1,18634:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18634:2537886,2439708:1179648,16384,0 +[1,18632:6630773,47279633:25952256,43253760,0 +[1,18632:6630773,4812305:25952256,786432,0 +(1,18632:6630773,4812305:25952256,513147,126483 +(1,18632:6630773,4812305:25952256,513147,126483 +g1,18632:3078558,4812305 +[1,18632:3078558,4812305:0,0,0 +(1,18632:3078558,2439708:0,1703936,0 +k1,18632:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18632:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18634:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18632:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18634:3078558,4812305:0,0,0 -(1,18634:3078558,2439708:0,1703936,0 -g1,18634:29030814,2439708 -g1,18634:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18634:36151628,1915420:16384,1179648,0 +[1,18632:3078558,4812305:0,0,0 +(1,18632:3078558,2439708:0,1703936,0 +g1,18632:29030814,2439708 +g1,18632:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18632:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18634:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18632:37855564,2439708:1179648,16384,0 ) ) -k1,18634:3078556,2439708:-34777008 +k1,18632:3078556,2439708:-34777008 ) ] -[1,18634:3078558,4812305:0,0,0 -(1,18634:3078558,49800853:0,16384,2228224 -k1,18634:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18634:2537886,49800853:1179648,16384,0 +[1,18632:3078558,4812305:0,0,0 +(1,18632:3078558,49800853:0,16384,2228224 +k1,18632:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18632:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18634:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18632:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18634:3078558,4812305:0,0,0 -(1,18634:3078558,49800853:0,16384,2228224 -g1,18634:29030814,49800853 -g1,18634:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18634:36151628,51504789:16384,1179648,0 +[1,18632:3078558,4812305:0,0,0 +(1,18632:3078558,49800853:0,16384,2228224 +g1,18632:29030814,49800853 +g1,18632:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18632:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18634:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18632:37855564,49800853:1179648,16384,0 ) ) -k1,18634:3078556,49800853:-34777008 +k1,18632:3078556,49800853:-34777008 ) ] -g1,18634:6630773,4812305 -k1,18634:21386205,4812305:13560055 -g1,18634:21999622,4812305 -g1,18634:25611966,4812305 -g1,18634:28956923,4812305 -g1,18634:29772190,4812305 -) -) -] -[1,18634:6630773,45706769:25952256,40108032,0 -(1,18634:6630773,45706769:25952256,40108032,0 -(1,18634:6630773,45706769:0,0,0 -g1,18634:6630773,45706769 -) -[1,18634:6630773,45706769:25952256,40108032,0 -(1,18557:6630773,6254097:25952256,513147,126483 -k1,18556:8699055,6254097:240483 -k1,18556:9405499,6254097:240483 -k1,18556:12225479,6254097:240483 -k1,18556:16986635,6254097:240482 -k1,18556:18246203,6254097:240483 -k1,18556:19982873,6254097:240483 -k1,18556:22091787,6254097:240483 -k1,18556:24591951,6254097:240483 -k1,18556:25188294,6254097:240483 -k1,18556:26879743,6254097:240482 -(1,18556:26879743,6254097:0,435480,115847 -r1,18634:27589721,6254097:709978,551327,115847 -k1,18556:26879743,6254097:-709978 -) -(1,18556:26879743,6254097:709978,435480,115847 -k1,18556:26879743,6254097:3277 -h1,18556:27586444,6254097:0,411205,112570 -) -k1,18556:28003874,6254097:240483 -k1,18556:30981140,6254097:240483 -k1,18556:31873051,6254097:240483 -(1,18556:31873051,6254097:0,435480,115847 -r1,18634:32583029,6254097:709978,551327,115847 -k1,18556:31873051,6254097:-709978 -) -(1,18556:31873051,6254097:709978,435480,115847 -k1,18556:31873051,6254097:3277 -h1,18556:32579752,6254097:0,411205,112570 -) -k1,18556:32583029,6254097:0 -) -(1,18557:6630773,7119177:25952256,505283,7863 -k1,18557:32583030,7119177:24044504 -g1,18557:32583030,7119177 -) -v1,18559:6630773,7804032:0,393216,0 -(1,18567:6630773,10861013:25952256,3450197,196608 -g1,18567:6630773,10861013 -g1,18567:6630773,10861013 -g1,18567:6434165,10861013 -(1,18567:6434165,10861013:0,3450197,196608 -r1,18634:32779637,10861013:26345472,3646805,196608 -k1,18567:6434165,10861013:-26345472 -) -(1,18567:6434165,10861013:26345472,3450197,196608 -[1,18567:6630773,10861013:25952256,3253589,0 -(1,18561:6630773,8015347:25952256,407923,106246 -(1,18560:6630773,8015347:0,0,0 -g1,18560:6630773,8015347 -g1,18560:6630773,8015347 -g1,18560:6303093,8015347 -(1,18560:6303093,8015347:0,0,0 -) -g1,18560:6630773,8015347 -) -g1,18561:7626635,8015347 -k1,18561:7626635,8015347:0 -h1,18561:8290543,8015347:0,0,0 -k1,18561:32583029,8015347:24292486 -g1,18561:32583029,8015347 -) -(1,18562:6630773,8700202:25952256,424439,112852 -h1,18562:6630773,8700202:0,0,0 -g1,18562:6962727,8700202 -g1,18562:7294681,8700202 -g1,18562:10282267,8700202 -h1,18562:10614221,8700202:0,0,0 -k1,18562:32583029,8700202:21968808 -g1,18562:32583029,8700202 -) -(1,18563:6630773,9385057:25952256,424439,112852 -h1,18563:6630773,9385057:0,0,0 -g1,18563:6962727,9385057 -g1,18563:7294681,9385057 -g1,18563:12605944,9385057 -g1,18563:13269852,9385057 -k1,18563:13269852,9385057:0 -h1,18563:15593530,9385057:0,0,0 -k1,18563:32583030,9385057:16989500 -g1,18563:32583030,9385057 -) -(1,18564:6630773,10069912:25952256,424439,112852 -h1,18564:6630773,10069912:0,0,0 -g1,18564:6962727,10069912 -g1,18564:7294681,10069912 -g1,18564:7626635,10069912 -g1,18564:7958589,10069912 -g1,18564:8290543,10069912 -g1,18564:8622497,10069912 -g1,18564:8954451,10069912 -g1,18564:9286405,10069912 -g1,18564:9618359,10069912 -g1,18564:9950313,10069912 -g1,18564:10282267,10069912 -g1,18564:10614221,10069912 -g1,18564:10946175,10069912 -g1,18564:13601807,10069912 -g1,18564:14265715,10069912 -g1,18564:16257439,10069912 -g1,18564:16921347,10069912 -g1,18564:18913071,10069912 -g1,18564:19576979,10069912 -g1,18564:20240887,10069912 -g1,18564:21900657,10069912 -g1,18564:24224335,10069912 -g1,18564:24888243,10069912 -h1,18564:26548013,10069912:0,0,0 -k1,18564:32583029,10069912:6035016 -g1,18564:32583029,10069912 -) -(1,18565:6630773,10754767:25952256,407923,106246 -h1,18565:6630773,10754767:0,0,0 -h1,18565:7294681,10754767:0,0,0 -k1,18565:32583029,10754767:25288348 -g1,18565:32583029,10754767 -) -] -) -g1,18567:32583029,10861013 -g1,18567:6630773,10861013 -g1,18567:6630773,10861013 -g1,18567:32583029,10861013 -g1,18567:32583029,10861013 -) -h1,18567:6630773,11057621:0,0,0 -(1,18571:6630773,11922701:25952256,513147,126483 -h1,18570:6630773,11922701:983040,0,0 -k1,18570:9783055,11922701:294912 -k1,18570:13069685,11922701:294911 -k1,18570:17397683,11922701:294912 -k1,18570:18865034,11922701:294912 -k1,18570:21922288,11922701:294911 -k1,18570:25879352,11922701:294912 -k1,18570:27458770,11922701:294912 -k1,18570:28745241,11922701:294911 -k1,18570:31333913,11922701:294912 -k1,18571:32583029,11922701:0 -) -(1,18571:6630773,12787781:25952256,513147,134348 -k1,18570:9159994,12787781:207281 -k1,18570:10314926,12787781:207281 -k1,18570:12646884,12787781:207281 -k1,18570:14461763,12787781:207281 -k1,18570:16062995,12787781:207281 -k1,18570:16626136,12787781:207281 -k1,18570:18706437,12787781:207282 -k1,18570:20645179,12787781:207281 -k1,18570:23787162,12787781:207281 -k1,18570:24460404,12787781:207281 -k1,18570:25023545,12787781:207281 -k1,18570:26508123,12787781:207281 -k1,18570:27816409,12787781:207281 -k1,18570:30694937,12787781:207281 -k1,18570:32583029,12787781:0 -) -(1,18571:6630773,13652861:25952256,513147,126483 -k1,18570:8683302,13652861:197860 -k1,18570:9690532,13652861:197860 -k1,18570:10907477,13652861:197860 -k1,18570:12758810,13652861:197860 -k1,18570:14519704,13652861:197860 -k1,18570:15736649,13652861:197860 -k1,18570:18919019,13652861:197860 -k1,18570:20630105,13652861:197860 -k1,18570:21775616,13652861:197860 -(1,18570:21775616,13652861:0,435480,115847 -r1,18634:22485594,13652861:709978,551327,115847 -k1,18570:21775616,13652861:-709978 -) -(1,18570:21775616,13652861:709978,435480,115847 -k1,18570:21775616,13652861:3277 -h1,18570:22482317,13652861:0,411205,112570 -) -k1,18570:22683454,13652861:197860 -k1,18570:24927348,13652861:197860 -k1,18570:26328449,13652861:197860 -k1,18570:28056575,13652861:197860 -k1,18570:29445880,13652861:197860 -k1,18570:30175237,13652861:197860 -k1,18570:32583029,13652861:0 -) -(1,18571:6630773,14517941:25952256,513147,134348 -k1,18570:7323250,14517941:214720 -k1,18570:8989591,14517941:214719 -k1,18570:10762102,14517941:214720 -k1,18570:12399609,14517941:214720 -k1,18570:15376671,14517941:214719 -k1,18570:16980754,14517941:214720 -k1,18570:19405347,14517941:214719 -k1,18570:22382410,14517941:214720 -k1,18570:25908664,14517941:214720 -k1,18570:27142468,14517941:214719 -k1,18570:29598519,14517941:214720 -k1,18570:32583029,14517941:0 -) -(1,18571:6630773,15383021:25952256,473825,126483 -g1,18570:7361499,15383021 -k1,18571:32583029,15383021:22060074 -g1,18571:32583029,15383021 -) -v1,18573:6630773,16248101:0,393216,0 -(1,18613:6630773,37262290:25952256,21407405,0 -g1,18613:6630773,37262290 -g1,18613:6237557,37262290 -r1,18634:6368629,37262290:131072,21407405,0 -g1,18613:6567858,37262290 -g1,18613:6764466,37262290 -[1,18613:6764466,37262290:25818563,21407405,0 -(1,18574:6764466,16556399:25818563,701514,196608 -(1,18573:6764466,16556399:0,701514,196608 -r1,18634:7761522,16556399:997056,898122,196608 -k1,18573:6764466,16556399:-997056 -) -(1,18573:6764466,16556399:997056,701514,196608 -) -k1,18573:8016374,16556399:254852 -k1,18573:8344054,16556399:327680 -k1,18573:9226742,16556399:254853 -k1,18573:11173734,16556399:254852 -k1,18573:13299639,16556399:254852 -k1,18573:15252529,16556399:254852 -k1,18573:18481406,16556399:254853 -k1,18573:19267755,16556399:254852 -k1,18573:21820955,16556399:254852 -k1,18573:23765325,16556399:254852 -k1,18573:28034258,16556399:254853 -k1,18573:30975431,16556399:254852 -k1,18573:32583029,16556399:0 -) -(1,18574:6764466,17421479:25818563,513147,134348 -k1,18573:8354752,17421479:222549 -k1,18573:11248549,17421479:222550 -k1,18573:13359190,17421479:222549 -k1,18573:15283709,17421479:222549 -k1,18573:17580473,17421479:222549 -k1,18573:18907305,17421479:222550 -k1,18573:19877620,17421479:222549 -k1,18573:23539498,17421479:222549 -k1,18573:25004610,17421479:222549 -k1,18573:26925198,17421479:222550 -k1,18573:30727323,17421479:222549 -k1,18573:31305732,17421479:222549 -k1,18573:32583029,17421479:0 -) -(1,18574:6764466,18286559:25818563,513147,134348 -g1,18573:8531316,18286559 -g1,18573:11800251,18286559 -g1,18573:14037650,18286559 -g1,18573:14852917,18286559 -g1,18573:17893787,18286559 -g1,18573:18775901,18286559 -g1,18573:20453622,18286559 -k1,18574:32583029,18286559:6440227 -g1,18574:32583029,18286559 -) -(1,18576:6764466,19151639:25818563,513147,134348 -h1,18575:6764466,19151639:983040,0,0 -k1,18575:9126501,19151639:182308 -k1,18575:11574388,19151639:182307 -k1,18575:14564258,19151639:182308 -k1,18575:15850847,19151639:182307 -k1,18575:17318971,19151639:182308 -k1,18575:18249044,19151639:182307 -k1,18575:20396777,19151639:182308 -k1,18575:22993430,19151639:182307 -k1,18575:24569689,19151639:182308 -k1,18575:25771081,19151639:182307 -(1,18575:25771081,19151639:0,414482,115847 -r1,18634:26129347,19151639:358266,530329,115847 -k1,18575:25771081,19151639:-358266 -) -(1,18575:25771081,19151639:358266,414482,115847 -k1,18575:25771081,19151639:3277 -h1,18575:26126070,19151639:0,411205,112570 -) -k1,18575:26311655,19151639:182308 -k1,18575:29414246,19151639:182307 -k1,18575:31923737,19151639:182308 -k1,18575:32583029,19151639:0 -) -(1,18576:6764466,20016719:25818563,505283,134348 -g1,18575:8701710,20016719 -g1,18575:11106226,20016719 -g1,18575:11991617,20016719 -g1,18575:12961549,20016719 -g1,18575:16233106,20016719 -g1,18575:17083763,20016719 -(1,18575:17083763,20016719:0,452978,122846 -r1,18634:19904012,20016719:2820249,575824,122846 -k1,18575:17083763,20016719:-2820249 -) -(1,18575:17083763,20016719:2820249,452978,122846 -k1,18575:17083763,20016719:3277 -h1,18575:19900735,20016719:0,411205,112570 -) -k1,18576:32583029,20016719:12626589 -g1,18576:32583029,20016719 -) -v1,18578:6764466,20701574:0,393216,0 -(1,18584:6764466,22411967:25818563,2103609,196608 -g1,18584:6764466,22411967 -g1,18584:6764466,22411967 -g1,18584:6567858,22411967 -(1,18584:6567858,22411967:0,2103609,196608 -r1,18634:32779637,22411967:26211779,2300217,196608 -k1,18584:6567857,22411967:-26211780 -) -(1,18584:6567858,22411967:26211779,2103609,196608 -[1,18584:6764466,22411967:25818563,1907001,0 -(1,18580:6764466,20929405:25818563,424439,112852 -(1,18579:6764466,20929405:0,0,0 -g1,18579:6764466,20929405 -g1,18579:6764466,20929405 -g1,18579:6436786,20929405 -(1,18579:6436786,20929405:0,0,0 -) -g1,18579:6764466,20929405 -) -k1,18580:6764466,20929405:0 -g1,18580:10747914,20929405 -g1,18580:11411822,20929405 -g1,18580:14067454,20929405 -h1,18580:14399408,20929405:0,0,0 -k1,18580:32583028,20929405:18183620 -g1,18580:32583028,20929405 -) -(1,18581:6764466,21614260:25818563,424439,112852 -h1,18581:6764466,21614260:0,0,0 -g1,18581:7096420,21614260 -g1,18581:7428374,21614260 -g1,18581:7760328,21614260 -g1,18581:8092282,21614260 -g1,18581:8424236,21614260 -g1,18581:8756190,21614260 -g1,18581:9088144,21614260 -g1,18581:11079868,21614260 -g1,18581:11743776,21614260 -g1,18581:13735500,21614260 -g1,18581:14399408,21614260 -g1,18581:15063316,21614260 -g1,18581:16723086,21614260 -h1,18581:17055040,21614260:0,0,0 -k1,18581:32583029,21614260:15527989 -g1,18581:32583029,21614260 -) -(1,18582:6764466,22299115:25818563,424439,112852 -h1,18582:6764466,22299115:0,0,0 -g1,18582:7096420,22299115 -g1,18582:7428374,22299115 -k1,18582:7428374,22299115:0 -h1,18582:11411821,22299115:0,0,0 -k1,18582:32583029,22299115:21171208 -g1,18582:32583029,22299115 -) -] -) -g1,18584:32583029,22411967 -g1,18584:6764466,22411967 -g1,18584:6764466,22411967 -g1,18584:32583029,22411967 -g1,18584:32583029,22411967 -) -h1,18584:6764466,22608575:0,0,0 -(1,18588:6764466,23473655:25818563,513147,134348 -h1,18587:6764466,23473655:983040,0,0 -k1,18587:8411735,23473655:194336 -k1,18587:9137568,23473655:194336 -k1,18587:10617720,23473655:194336 -k1,18587:13442016,23473655:194336 -k1,18587:14287780,23473655:194336 -k1,18587:15957331,23473655:194336 -k1,18587:16507527,23473655:194336 -k1,18587:18967444,23473655:194337 -k1,18587:21969342,23473655:194336 -k1,18587:23111329,23473655:194336 -k1,18587:24324750,23473655:194336 -k1,18587:26401935,23473655:194336 -k1,18587:28047238,23473655:194336 -k1,18587:29313743,23473655:194336 -k1,18587:30317449,23473655:194336 -k1,18587:32583029,23473655:0 -) -(1,18588:6764466,24338735:25818563,505283,7863 -k1,18588:32583030,24338735:24376772 -g1,18588:32583030,24338735 -) -v1,18590:6764466,25023590:0,393216,0 -(1,18596:6764466,26733983:25818563,2103609,196608 -g1,18596:6764466,26733983 -g1,18596:6764466,26733983 -g1,18596:6567858,26733983 -(1,18596:6567858,26733983:0,2103609,196608 -r1,18634:32779637,26733983:26211779,2300217,196608 -k1,18596:6567857,26733983:-26211780 -) -(1,18596:6567858,26733983:26211779,2103609,196608 -[1,18596:6764466,26733983:25818563,1907001,0 -(1,18592:6764466,25251421:25818563,424439,112852 -(1,18591:6764466,25251421:0,0,0 -g1,18591:6764466,25251421 -g1,18591:6764466,25251421 -g1,18591:6436786,25251421 -(1,18591:6436786,25251421:0,0,0 -) -g1,18591:6764466,25251421 -) -k1,18592:6764466,25251421:0 -g1,18592:9752052,25251421 -h1,18592:10084006,25251421:0,0,0 -k1,18592:32583030,25251421:22499024 -g1,18592:32583030,25251421 -) -(1,18593:6764466,25936276:25818563,424439,112852 -h1,18593:6764466,25936276:0,0,0 -g1,18593:7096420,25936276 -g1,18593:7428374,25936276 -g1,18593:9420098,25936276 -g1,18593:10084006,25936276 -g1,18593:12075730,25936276 -g1,18593:12739638,25936276 -g1,18593:13403546,25936276 -g1,18593:15063316,25936276 -h1,18593:15395270,25936276:0,0,0 -k1,18593:32583030,25936276:17187760 -g1,18593:32583030,25936276 -) -(1,18594:6764466,26621131:25818563,424439,112852 -h1,18594:6764466,26621131:0,0,0 -g1,18594:7096420,26621131 -g1,18594:7428374,26621131 -g1,18594:12739637,26621131 -g1,18594:13403545,26621131 -h1,18594:15727223,26621131:0,0,0 -k1,18594:32583029,26621131:16855806 -g1,18594:32583029,26621131 -) -] -) -g1,18596:32583029,26733983 -g1,18596:6764466,26733983 -g1,18596:6764466,26733983 -g1,18596:32583029,26733983 -g1,18596:32583029,26733983 -) -h1,18596:6764466,26930591:0,0,0 -(1,18600:6764466,27795671:25818563,505283,134348 -h1,18599:6764466,27795671:983040,0,0 -k1,18599:8430085,27795671:194991 -k1,18599:11432642,27795671:194995 -k1,18599:13439052,27795671:194995 -k1,18599:14250085,27795671:194995 -k1,18599:14800941,27795671:194996 -k1,18599:17507276,27795671:194995 -k1,18599:20570782,27795671:194995 -k1,18599:23014973,27795671:194995 -k1,18599:23896130,27795671:194995 -k1,18599:25369732,27795671:194995 -k1,18599:26250890,27795671:194996 -k1,18599:26801745,27795671:194995 -k1,18599:29804302,27795671:194995 -k1,18599:32583029,27795671:0 -) -(1,18600:6764466,28660751:25818563,513147,134348 -k1,18599:7719965,28660751:193971 -k1,18599:8269797,28660751:193972 -k1,18599:11159264,28660751:193971 -k1,18599:12452929,28660751:193971 -k1,18599:14929519,28660751:193971 -k1,18599:16978815,28660751:193972 -k1,18599:18120437,28660751:193971 -(1,18599:18120437,28660751:0,452978,115847 -r1,18634:19885550,28660751:1765113,568825,115847 -k1,18599:18120437,28660751:-1765113 -) -(1,18599:18120437,28660751:1765113,452978,115847 -k1,18599:18120437,28660751:3277 -h1,18599:19882273,28660751:0,411205,112570 -) -k1,18599:20460285,28660751:193971 -k1,18599:21758538,28660751:193971 -k1,18599:22700276,28660751:193972 -k1,18599:25099534,28660751:193971 -k1,18599:25979667,28660751:193971 -k1,18599:26944341,28660751:193971 -k1,18599:30210641,28660751:193972 -k1,18599:31056040,28660751:193971 -k1,18600:32583029,28660751:0 -) -(1,18600:6764466,29525831:25818563,452978,122846 -g1,18599:8823607,29525831 -(1,18599:8823607,29525831:0,452978,122846 -r1,18634:11292144,29525831:2468537,575824,122846 -k1,18599:8823607,29525831:-2468537 -) -(1,18599:8823607,29525831:2468537,452978,122846 -k1,18599:8823607,29525831:3277 -h1,18599:11288867,29525831:0,411205,112570 -) -k1,18600:32583028,29525831:21290884 -g1,18600:32583028,29525831 -) -v1,18602:6764466,30210686:0,393216,0 -(1,18609:6764466,32605934:25818563,2788464,196608 -g1,18609:6764466,32605934 -g1,18609:6764466,32605934 -g1,18609:6567858,32605934 -(1,18609:6567858,32605934:0,2788464,196608 -r1,18634:32779637,32605934:26211779,2985072,196608 -k1,18609:6567857,32605934:-26211780 -) -(1,18609:6567858,32605934:26211779,2788464,196608 -[1,18609:6764466,32605934:25818563,2591856,0 -(1,18604:6764466,30438517:25818563,424439,112852 -(1,18603:6764466,30438517:0,0,0 -g1,18603:6764466,30438517 -g1,18603:6764466,30438517 -g1,18603:6436786,30438517 -(1,18603:6436786,30438517:0,0,0 -) -g1,18603:6764466,30438517 -) -g1,18604:10415959,30438517 -g1,18604:11411821,30438517 -g1,18604:13403545,30438517 -g1,18604:14067453,30438517 -g1,18604:16059177,30438517 -g1,18604:16723085,30438517 -g1,18604:17386993,30438517 -h1,18604:18714809,30438517:0,0,0 -k1,18604:32583029,30438517:13868220 -g1,18604:32583029,30438517 -) -(1,18605:6764466,31123372:25818563,424439,112852 -h1,18605:6764466,31123372:0,0,0 -g1,18605:10747914,31123372 -g1,18605:11411822,31123372 -k1,18605:11411822,31123372:0 -h1,18605:13735500,31123372:0,0,0 -k1,18605:32583028,31123372:18847528 -g1,18605:32583028,31123372 -) -(1,18606:6764466,31808227:25818563,424439,112852 -h1,18606:6764466,31808227:0,0,0 -g1,18606:7096420,31808227 -g1,18606:7428374,31808227 -g1,18606:7760328,31808227 -g1,18606:8092282,31808227 -g1,18606:8424236,31808227 -g1,18606:8756190,31808227 -g1,18606:9088144,31808227 -g1,18606:11743776,31808227 -g1,18606:12407684,31808227 -g1,18606:16391131,31808227 -h1,18606:16723085,31808227:0,0,0 -k1,18606:32583029,31808227:15859944 -g1,18606:32583029,31808227 -) -(1,18607:6764466,32493082:25818563,424439,112852 -h1,18607:6764466,32493082:0,0,0 -g1,18607:7096420,32493082 -g1,18607:7428374,32493082 -k1,18607:7428374,32493082:0 -h1,18607:11411821,32493082:0,0,0 -k1,18607:32583029,32493082:21171208 -g1,18607:32583029,32493082 -) -] -) -g1,18609:32583029,32605934 -g1,18609:6764466,32605934 -g1,18609:6764466,32605934 -g1,18609:32583029,32605934 -g1,18609:32583029,32605934 -) -h1,18609:6764466,32802542:0,0,0 -(1,18613:6764466,33667622:25818563,505283,134348 -h1,18612:6764466,33667622:983040,0,0 -k1,18612:8607219,33667622:231878 -k1,18612:9605213,33667622:231878 -k1,18612:11533819,33667622:231879 -k1,18612:14931086,33667622:231878 -k1,18612:16182049,33667622:231878 -k1,18612:17691224,33667622:231878 -k1,18612:20480972,33667622:231878 -k1,18612:24203953,33667622:231878 -k1,18612:25709197,33667622:231879 -k1,18612:28397364,33667622:231878 -k1,18612:31563944,33667622:231878 -k1,18612:32583029,33667622:0 -) -(1,18613:6764466,34532702:25818563,513147,134348 -k1,18612:9948086,34532702:209596 -k1,18612:10816974,34532702:209596 -k1,18612:12045655,34532702:209596 -k1,18612:15157841,34532702:209596 -k1,18612:17379392,34532702:209596 -k1,18612:18608073,34532702:209596 -k1,18612:21768100,34532702:209596 -k1,18612:22636988,34532702:209596 -k1,18612:24454182,34532702:209596 -k1,18612:26231399,34532702:209596 -k1,18612:29709931,34532702:209596 -k1,18613:32583029,34532702:0 -) -(1,18613:6764466,35397782:25818563,505283,134348 -k1,18612:7934830,35397782:145381 -k1,18612:10060708,35397782:145380 -k1,18612:11397534,35397782:145381 -k1,18612:13914008,35397782:145381 -k1,18612:15756115,35397782:145380 -k1,18612:17881994,35397782:145381 -k1,18612:18788903,35397782:145381 -k1,18612:21194620,35397782:145380 -k1,18612:22979056,35397782:145381 -k1,18612:23740475,35397782:145381 -k1,18612:26901166,35397782:145380 -k1,18612:28920877,35397782:145381 -k1,18612:32583029,35397782:0 -) -(1,18613:6764466,36262862:25818563,513147,126483 -k1,18612:8051845,36262862:183097 -k1,18612:8982709,36262862:183098 -k1,18612:10519780,36262862:183097 -k1,18612:12680099,36262862:183098 -k1,18612:13479234,36262862:183097 -k1,18612:15566808,36262862:183098 -k1,18612:17034411,36262862:183097 -k1,18612:20241340,36262862:183098 -k1,18612:24271400,36262862:183097 -k1,18612:27659864,36262862:183098 -k1,18612:29107806,36262862:183097 -k1,18612:29950196,36262862:183098 -k1,18612:31914562,36262862:183097 -k1,18612:32583029,36262862:0 -) -(1,18613:6764466,37127942:25818563,505283,134348 -g1,18612:8635519,37127942 -g1,18612:9853833,37127942 -g1,18612:11706535,37127942 -g1,18612:14713326,37127942 -g1,18612:16773122,37127942 -g1,18612:17623779,37127942 -g1,18612:18570774,37127942 -g1,18612:20283229,37127942 -g1,18612:24329421,37127942 -g1,18612:25144688,37127942 -g1,18612:28015164,37127942 -k1,18613:32583029,37127942:2907838 -g1,18613:32583029,37127942 -) -] -g1,18613:32583029,37262290 -) -h1,18613:6630773,37262290:0,0,0 -(1,18616:6630773,38127370:25952256,505283,134348 -h1,18615:6630773,38127370:983040,0,0 -k1,18615:9000212,38127370:189712 -k1,18615:11997487,38127370:189713 -k1,18615:12838627,38127370:189712 -k1,18615:16202904,38127370:189713 -k1,18615:17008654,38127370:189712 -k1,18615:18217452,38127370:189713 -k1,18615:19506858,38127370:189712 -k1,18615:20347998,38127370:189712 -(1,18615:20347998,38127370:0,452978,115847 -r1,18634:22113111,38127370:1765113,568825,115847 -k1,18615:20347998,38127370:-1765113 -) -(1,18615:20347998,38127370:1765113,452978,115847 -k1,18615:20347998,38127370:3277 -h1,18615:22109834,38127370:0,411205,112570 -) -k1,18615:22302824,38127370:189713 -k1,18615:23985446,38127370:189712 -k1,18615:25241430,38127370:189713 -k1,18615:26906357,38127370:189712 -k1,18615:27747498,38127370:189713 -k1,18615:28684976,38127370:189712 -k1,18615:29526117,38127370:189713 -k1,18615:30071689,38127370:189712 -k1,18615:32583029,38127370:0 -) -(1,18616:6630773,38992450:25952256,513147,126483 -k1,18615:8359256,38992450:160862 -(1,18615:8359256,38992450:0,452978,115847 -r1,18634:9772657,38992450:1413401,568825,115847 -k1,18615:8359256,38992450:-1413401 -) -(1,18615:8359256,38992450:1413401,452978,115847 -k1,18615:8359256,38992450:3277 -h1,18615:9769380,38992450:0,411205,112570 -) -k1,18615:9933519,38992450:160862 -k1,18615:10780542,38992450:160861 -k1,18615:11557442,38992450:160862 -k1,18615:14710023,38992450:160862 -k1,18615:16899880,38992450:160862 -k1,18615:17548291,38992450:160823 -k1,18615:18065013,38992450:160862 -k1,18615:19722062,38992450:160862 -k1,18615:23069284,38992450:160862 -k1,18615:24514652,38992450:160862 -k1,18615:27016459,38992450:160861 -k1,18615:27533181,38992450:160862 -k1,18615:29374386,38992450:160862 -k1,18615:32583029,38992450:0 -) -(1,18616:6630773,39857530:25952256,513147,134348 -k1,18615:8376069,39857530:177675 -k1,18615:9710454,39857530:177675 -k1,18615:10571013,39857530:177674 -k1,18615:12398885,39857530:177675 -k1,18615:15418201,39857530:177675 -k1,18615:17163497,39857530:177675 -(1,18615:17163497,39857530:0,452978,115847 -r1,18634:18576898,39857530:1413401,568825,115847 -k1,18615:17163497,39857530:-1413401 -) -(1,18615:17163497,39857530:1413401,452978,115847 -k1,18615:17163497,39857530:3277 -h1,18615:18573621,39857530:0,411205,112570 -) -k1,18615:18754573,39857530:177675 -k1,18615:19463745,39857530:177675 -k1,18615:20927235,39857530:177674 -k1,18615:24094662,39857530:177675 -k1,18615:28788423,39857530:177675 -k1,18615:31080289,39857530:177675 -k1,18616:32583029,39857530:0 -) -(1,18616:6630773,40722610:25952256,513147,134348 -k1,18615:8215051,40722610:173288 -k1,18615:10106693,40722610:173288 -k1,18615:12009476,40722610:173288 -k1,18615:13201850,40722610:173289 -k1,18615:17408879,40722610:173288 -k1,18615:18241459,40722610:173288 -k1,18615:21256388,40722610:173288 -k1,18615:22045714,40722610:173288 -k1,18615:23238087,40722610:173288 -k1,18615:24800739,40722610:173289 -k1,18615:27180624,40722610:173288 -k1,18615:30715909,40722610:173288 -k1,18616:32583029,40722610:0 -) -(1,18616:6630773,41587690:25952256,505283,134348 -k1,18615:9332728,41587690:235180 -k1,18615:10195744,41587690:235181 -k1,18615:11634165,41587690:235180 -k1,18615:13994022,41587690:235180 -k1,18615:17064290,41587690:235181 -(1,18615:17064290,41587690:0,414482,122846 -r1,18634:18125979,41587690:1061689,537328,122846 -k1,18615:17064290,41587690:-1061689 -) -(1,18615:17064290,41587690:1061689,414482,122846 -k1,18615:17064290,41587690:3277 -h1,18615:18122702,41587690:0,411205,112570 -) -k1,18615:18361159,41587690:235180 -k1,18615:19212378,41587690:235181 -k1,18615:21151494,41587690:235180 -k1,18615:22443114,41587690:235180 -k1,18615:24627991,41587690:235181 -k1,18615:25394668,41587690:235180 -k1,18615:28790649,41587690:235180 -k1,18615:30293296,41587690:235181 -k1,18615:31541007,41587690:235180 -k1,18615:32583029,41587690:0 -) -(1,18616:6630773,42452770:25952256,505283,134348 -g1,18615:8128926,42452770 -g1,18615:10442346,42452770 -k1,18616:32583029,42452770:19280692 -g1,18616:32583029,42452770 -) -v1,18618:6630773,43137625:0,393216,0 -(1,18624:6630773,44848018:25952256,2103609,196608 -g1,18624:6630773,44848018 -g1,18624:6630773,44848018 -g1,18624:6434165,44848018 -(1,18624:6434165,44848018:0,2103609,196608 -r1,18634:32779637,44848018:26345472,2300217,196608 -k1,18624:6434165,44848018:-26345472 -) -(1,18624:6434165,44848018:26345472,2103609,196608 -[1,18624:6630773,44848018:25952256,1907001,0 -(1,18620:6630773,43365456:25952256,424439,112852 -(1,18619:6630773,43365456:0,0,0 -g1,18619:6630773,43365456 -g1,18619:6630773,43365456 -g1,18619:6303093,43365456 -(1,18619:6303093,43365456:0,0,0 -) -g1,18619:6630773,43365456 -) -k1,18620:6630773,43365456:0 -g1,18620:10614221,43365456 -g1,18620:11278129,43365456 -k1,18620:11278129,43365456:0 -h1,18620:13601807,43365456:0,0,0 -k1,18620:32583029,43365456:18981222 -g1,18620:32583029,43365456 -) -(1,18621:6630773,44050311:25952256,424439,112852 -h1,18621:6630773,44050311:0,0,0 -g1,18621:6962727,44050311 -g1,18621:7294681,44050311 -g1,18621:7626635,44050311 -g1,18621:7958589,44050311 -g1,18621:8290543,44050311 -g1,18621:8622497,44050311 -g1,18621:8954451,44050311 -g1,18621:11610083,44050311 -g1,18621:13933761,44050311 -g1,18621:14597669,44050311 -g1,18621:16589393,44050311 -g1,18621:17253301,44050311 -g1,18621:17917209,44050311 -g1,18621:19245025,44050311 -g1,18621:19908933,44050311 -g1,18621:22232611,44050311 -h1,18621:22564565,44050311:0,0,0 -k1,18621:32583029,44050311:10018464 -g1,18621:32583029,44050311 -) -(1,18622:6630773,44735166:25952256,424439,112852 -h1,18622:6630773,44735166:0,0,0 -g1,18622:6962727,44735166 -g1,18622:7294681,44735166 -k1,18622:7294681,44735166:0 -h1,18622:11278128,44735166:0,0,0 -k1,18622:32583028,44735166:21304900 -g1,18622:32583028,44735166 -) -] -) -g1,18624:32583029,44848018 -g1,18624:6630773,44848018 -g1,18624:6630773,44848018 -g1,18624:32583029,44848018 -g1,18624:32583029,44848018 -) -h1,18624:6630773,45044626:0,0,0 -] -(1,18634:32583029,45706769:0,0,0 -g1,18634:32583029,45706769 -) -) -] -(1,18634:6630773,47279633:25952256,0,0 -h1,18634:6630773,47279633:25952256,0,0 -) -] -(1,18634:4262630,4025873:0,0,0 -[1,18634:-473656,4025873:0,0,0 -(1,18634:-473656,-710413:0,0,0 -(1,18634:-473656,-710413:0,0,0 -g1,18634:-473656,-710413 -) -g1,18634:-473656,-710413 +g1,18632:6630773,4812305 +k1,18632:21386205,4812305:13560055 +g1,18632:21999622,4812305 +g1,18632:25611966,4812305 +g1,18632:28956923,4812305 +g1,18632:29772190,4812305 +) +) +] +[1,18632:6630773,45706769:25952256,40108032,0 +(1,18632:6630773,45706769:25952256,40108032,0 +(1,18632:6630773,45706769:0,0,0 +g1,18632:6630773,45706769 +) +[1,18632:6630773,45706769:25952256,40108032,0 +(1,18555:6630773,6254097:25952256,513147,126483 +k1,18554:8699055,6254097:240483 +k1,18554:9405499,6254097:240483 +k1,18554:12225479,6254097:240483 +k1,18554:16986635,6254097:240482 +k1,18554:18246203,6254097:240483 +k1,18554:19982873,6254097:240483 +k1,18554:22091787,6254097:240483 +k1,18554:24591951,6254097:240483 +k1,18554:25188294,6254097:240483 +k1,18554:26879743,6254097:240482 +(1,18554:26879743,6254097:0,435480,115847 +r1,18632:27589721,6254097:709978,551327,115847 +k1,18554:26879743,6254097:-709978 +) +(1,18554:26879743,6254097:709978,435480,115847 +k1,18554:26879743,6254097:3277 +h1,18554:27586444,6254097:0,411205,112570 +) +k1,18554:28003874,6254097:240483 +k1,18554:30981140,6254097:240483 +k1,18554:31873051,6254097:240483 +(1,18554:31873051,6254097:0,435480,115847 +r1,18632:32583029,6254097:709978,551327,115847 +k1,18554:31873051,6254097:-709978 +) +(1,18554:31873051,6254097:709978,435480,115847 +k1,18554:31873051,6254097:3277 +h1,18554:32579752,6254097:0,411205,112570 +) +k1,18554:32583029,6254097:0 +) +(1,18555:6630773,7119177:25952256,505283,7863 +k1,18555:32583030,7119177:24044504 +g1,18555:32583030,7119177 +) +v1,18557:6630773,7804032:0,393216,0 +(1,18565:6630773,10861013:25952256,3450197,196608 +g1,18565:6630773,10861013 +g1,18565:6630773,10861013 +g1,18565:6434165,10861013 +(1,18565:6434165,10861013:0,3450197,196608 +r1,18632:32779637,10861013:26345472,3646805,196608 +k1,18565:6434165,10861013:-26345472 +) +(1,18565:6434165,10861013:26345472,3450197,196608 +[1,18565:6630773,10861013:25952256,3253589,0 +(1,18559:6630773,8015347:25952256,407923,106246 +(1,18558:6630773,8015347:0,0,0 +g1,18558:6630773,8015347 +g1,18558:6630773,8015347 +g1,18558:6303093,8015347 +(1,18558:6303093,8015347:0,0,0 +) +g1,18558:6630773,8015347 +) +g1,18559:7626635,8015347 +k1,18559:7626635,8015347:0 +h1,18559:8290543,8015347:0,0,0 +k1,18559:32583029,8015347:24292486 +g1,18559:32583029,8015347 +) +(1,18560:6630773,8700202:25952256,424439,112852 +h1,18560:6630773,8700202:0,0,0 +g1,18560:6962727,8700202 +g1,18560:7294681,8700202 +g1,18560:10282267,8700202 +h1,18560:10614221,8700202:0,0,0 +k1,18560:32583029,8700202:21968808 +g1,18560:32583029,8700202 +) +(1,18561:6630773,9385057:25952256,424439,112852 +h1,18561:6630773,9385057:0,0,0 +g1,18561:6962727,9385057 +g1,18561:7294681,9385057 +g1,18561:12605944,9385057 +g1,18561:13269852,9385057 +k1,18561:13269852,9385057:0 +h1,18561:15593530,9385057:0,0,0 +k1,18561:32583030,9385057:16989500 +g1,18561:32583030,9385057 +) +(1,18562:6630773,10069912:25952256,424439,112852 +h1,18562:6630773,10069912:0,0,0 +g1,18562:6962727,10069912 +g1,18562:7294681,10069912 +g1,18562:7626635,10069912 +g1,18562:7958589,10069912 +g1,18562:8290543,10069912 +g1,18562:8622497,10069912 +g1,18562:8954451,10069912 +g1,18562:9286405,10069912 +g1,18562:9618359,10069912 +g1,18562:9950313,10069912 +g1,18562:10282267,10069912 +g1,18562:10614221,10069912 +g1,18562:10946175,10069912 +g1,18562:13601807,10069912 +g1,18562:14265715,10069912 +g1,18562:16257439,10069912 +g1,18562:16921347,10069912 +g1,18562:18913071,10069912 +g1,18562:19576979,10069912 +g1,18562:20240887,10069912 +g1,18562:21900657,10069912 +g1,18562:24224335,10069912 +g1,18562:24888243,10069912 +h1,18562:26548013,10069912:0,0,0 +k1,18562:32583029,10069912:6035016 +g1,18562:32583029,10069912 +) +(1,18563:6630773,10754767:25952256,407923,106246 +h1,18563:6630773,10754767:0,0,0 +h1,18563:7294681,10754767:0,0,0 +k1,18563:32583029,10754767:25288348 +g1,18563:32583029,10754767 +) +] +) +g1,18565:32583029,10861013 +g1,18565:6630773,10861013 +g1,18565:6630773,10861013 +g1,18565:32583029,10861013 +g1,18565:32583029,10861013 +) +h1,18565:6630773,11057621:0,0,0 +(1,18569:6630773,11922701:25952256,513147,126483 +h1,18568:6630773,11922701:983040,0,0 +k1,18568:9783055,11922701:294912 +k1,18568:13069685,11922701:294911 +k1,18568:17397683,11922701:294912 +k1,18568:18865034,11922701:294912 +k1,18568:21922288,11922701:294911 +k1,18568:25879352,11922701:294912 +k1,18568:27458770,11922701:294912 +k1,18568:28745241,11922701:294911 +k1,18568:31333913,11922701:294912 +k1,18569:32583029,11922701:0 +) +(1,18569:6630773,12787781:25952256,513147,134348 +k1,18568:9159994,12787781:207281 +k1,18568:10314926,12787781:207281 +k1,18568:12646884,12787781:207281 +k1,18568:14461763,12787781:207281 +k1,18568:16062995,12787781:207281 +k1,18568:16626136,12787781:207281 +k1,18568:18706437,12787781:207282 +k1,18568:20645179,12787781:207281 +k1,18568:23787162,12787781:207281 +k1,18568:24460404,12787781:207281 +k1,18568:25023545,12787781:207281 +k1,18568:26508123,12787781:207281 +k1,18568:27816409,12787781:207281 +k1,18568:30694937,12787781:207281 +k1,18568:32583029,12787781:0 +) +(1,18569:6630773,13652861:25952256,513147,126483 +k1,18568:8683302,13652861:197860 +k1,18568:9690532,13652861:197860 +k1,18568:10907477,13652861:197860 +k1,18568:12758810,13652861:197860 +k1,18568:14519704,13652861:197860 +k1,18568:15736649,13652861:197860 +k1,18568:18919019,13652861:197860 +k1,18568:20630105,13652861:197860 +k1,18568:21775616,13652861:197860 +(1,18568:21775616,13652861:0,435480,115847 +r1,18632:22485594,13652861:709978,551327,115847 +k1,18568:21775616,13652861:-709978 +) +(1,18568:21775616,13652861:709978,435480,115847 +k1,18568:21775616,13652861:3277 +h1,18568:22482317,13652861:0,411205,112570 +) +k1,18568:22683454,13652861:197860 +k1,18568:24927348,13652861:197860 +k1,18568:26328449,13652861:197860 +k1,18568:28056575,13652861:197860 +k1,18568:29445880,13652861:197860 +k1,18568:30175237,13652861:197860 +k1,18568:32583029,13652861:0 +) +(1,18569:6630773,14517941:25952256,513147,134348 +k1,18568:7323250,14517941:214720 +k1,18568:8989591,14517941:214719 +k1,18568:10762102,14517941:214720 +k1,18568:12399609,14517941:214720 +k1,18568:15376671,14517941:214719 +k1,18568:16980754,14517941:214720 +k1,18568:19405347,14517941:214719 +k1,18568:22382410,14517941:214720 +k1,18568:25908664,14517941:214720 +k1,18568:27142468,14517941:214719 +k1,18568:29598519,14517941:214720 +k1,18568:32583029,14517941:0 +) +(1,18569:6630773,15383021:25952256,473825,126483 +g1,18568:7361499,15383021 +k1,18569:32583029,15383021:22060074 +g1,18569:32583029,15383021 +) +v1,18571:6630773,16248101:0,393216,0 +(1,18611:6630773,37262290:25952256,21407405,0 +g1,18611:6630773,37262290 +g1,18611:6237557,37262290 +r1,18632:6368629,37262290:131072,21407405,0 +g1,18611:6567858,37262290 +g1,18611:6764466,37262290 +[1,18611:6764466,37262290:25818563,21407405,0 +(1,18572:6764466,16556399:25818563,701514,196608 +(1,18571:6764466,16556399:0,701514,196608 +r1,18632:7761522,16556399:997056,898122,196608 +k1,18571:6764466,16556399:-997056 +) +(1,18571:6764466,16556399:997056,701514,196608 +) +k1,18571:8016374,16556399:254852 +k1,18571:8344054,16556399:327680 +k1,18571:9226742,16556399:254853 +k1,18571:11173734,16556399:254852 +k1,18571:13299639,16556399:254852 +k1,18571:15252529,16556399:254852 +k1,18571:18481406,16556399:254853 +k1,18571:19267755,16556399:254852 +k1,18571:21820955,16556399:254852 +k1,18571:23765325,16556399:254852 +k1,18571:28034258,16556399:254853 +k1,18571:30975431,16556399:254852 +k1,18571:32583029,16556399:0 +) +(1,18572:6764466,17421479:25818563,513147,134348 +k1,18571:8354752,17421479:222549 +k1,18571:11248549,17421479:222550 +k1,18571:13359190,17421479:222549 +k1,18571:15283709,17421479:222549 +k1,18571:17580473,17421479:222549 +k1,18571:18907305,17421479:222550 +k1,18571:19877620,17421479:222549 +k1,18571:23539498,17421479:222549 +k1,18571:25004610,17421479:222549 +k1,18571:26925198,17421479:222550 +k1,18571:30727323,17421479:222549 +k1,18571:31305732,17421479:222549 +k1,18571:32583029,17421479:0 +) +(1,18572:6764466,18286559:25818563,513147,134348 +g1,18571:8531316,18286559 +g1,18571:11800251,18286559 +g1,18571:14037650,18286559 +g1,18571:14852917,18286559 +g1,18571:17893787,18286559 +g1,18571:18775901,18286559 +g1,18571:20453622,18286559 +k1,18572:32583029,18286559:6440227 +g1,18572:32583029,18286559 +) +(1,18574:6764466,19151639:25818563,513147,134348 +h1,18573:6764466,19151639:983040,0,0 +k1,18573:9126501,19151639:182308 +k1,18573:11574388,19151639:182307 +k1,18573:14564258,19151639:182308 +k1,18573:15850847,19151639:182307 +k1,18573:17318971,19151639:182308 +k1,18573:18249044,19151639:182307 +k1,18573:20396777,19151639:182308 +k1,18573:22993430,19151639:182307 +k1,18573:24569689,19151639:182308 +k1,18573:25771081,19151639:182307 +(1,18573:25771081,19151639:0,414482,115847 +r1,18632:26129347,19151639:358266,530329,115847 +k1,18573:25771081,19151639:-358266 +) +(1,18573:25771081,19151639:358266,414482,115847 +k1,18573:25771081,19151639:3277 +h1,18573:26126070,19151639:0,411205,112570 +) +k1,18573:26311655,19151639:182308 +k1,18573:29414246,19151639:182307 +k1,18573:31923737,19151639:182308 +k1,18573:32583029,19151639:0 +) +(1,18574:6764466,20016719:25818563,505283,134348 +g1,18573:8701710,20016719 +g1,18573:11106226,20016719 +g1,18573:11991617,20016719 +g1,18573:12961549,20016719 +g1,18573:16233106,20016719 +g1,18573:17083763,20016719 +(1,18573:17083763,20016719:0,452978,122846 +r1,18632:19904012,20016719:2820249,575824,122846 +k1,18573:17083763,20016719:-2820249 +) +(1,18573:17083763,20016719:2820249,452978,122846 +k1,18573:17083763,20016719:3277 +h1,18573:19900735,20016719:0,411205,112570 +) +k1,18574:32583029,20016719:12626589 +g1,18574:32583029,20016719 +) +v1,18576:6764466,20701574:0,393216,0 +(1,18582:6764466,22411967:25818563,2103609,196608 +g1,18582:6764466,22411967 +g1,18582:6764466,22411967 +g1,18582:6567858,22411967 +(1,18582:6567858,22411967:0,2103609,196608 +r1,18632:32779637,22411967:26211779,2300217,196608 +k1,18582:6567857,22411967:-26211780 +) +(1,18582:6567858,22411967:26211779,2103609,196608 +[1,18582:6764466,22411967:25818563,1907001,0 +(1,18578:6764466,20929405:25818563,424439,112852 +(1,18577:6764466,20929405:0,0,0 +g1,18577:6764466,20929405 +g1,18577:6764466,20929405 +g1,18577:6436786,20929405 +(1,18577:6436786,20929405:0,0,0 +) +g1,18577:6764466,20929405 +) +k1,18578:6764466,20929405:0 +g1,18578:10747914,20929405 +g1,18578:11411822,20929405 +g1,18578:14067454,20929405 +h1,18578:14399408,20929405:0,0,0 +k1,18578:32583028,20929405:18183620 +g1,18578:32583028,20929405 +) +(1,18579:6764466,21614260:25818563,424439,112852 +h1,18579:6764466,21614260:0,0,0 +g1,18579:7096420,21614260 +g1,18579:7428374,21614260 +g1,18579:7760328,21614260 +g1,18579:8092282,21614260 +g1,18579:8424236,21614260 +g1,18579:8756190,21614260 +g1,18579:9088144,21614260 +g1,18579:11079868,21614260 +g1,18579:11743776,21614260 +g1,18579:13735500,21614260 +g1,18579:14399408,21614260 +g1,18579:15063316,21614260 +g1,18579:16723086,21614260 +h1,18579:17055040,21614260:0,0,0 +k1,18579:32583029,21614260:15527989 +g1,18579:32583029,21614260 +) +(1,18580:6764466,22299115:25818563,424439,112852 +h1,18580:6764466,22299115:0,0,0 +g1,18580:7096420,22299115 +g1,18580:7428374,22299115 +k1,18580:7428374,22299115:0 +h1,18580:11411821,22299115:0,0,0 +k1,18580:32583029,22299115:21171208 +g1,18580:32583029,22299115 +) +] +) +g1,18582:32583029,22411967 +g1,18582:6764466,22411967 +g1,18582:6764466,22411967 +g1,18582:32583029,22411967 +g1,18582:32583029,22411967 +) +h1,18582:6764466,22608575:0,0,0 +(1,18586:6764466,23473655:25818563,513147,134348 +h1,18585:6764466,23473655:983040,0,0 +k1,18585:8411735,23473655:194336 +k1,18585:9137568,23473655:194336 +k1,18585:10617720,23473655:194336 +k1,18585:13442016,23473655:194336 +k1,18585:14287780,23473655:194336 +k1,18585:15957331,23473655:194336 +k1,18585:16507527,23473655:194336 +k1,18585:18967444,23473655:194337 +k1,18585:21969342,23473655:194336 +k1,18585:23111329,23473655:194336 +k1,18585:24324750,23473655:194336 +k1,18585:26401935,23473655:194336 +k1,18585:28047238,23473655:194336 +k1,18585:29313743,23473655:194336 +k1,18585:30317449,23473655:194336 +k1,18585:32583029,23473655:0 +) +(1,18586:6764466,24338735:25818563,505283,7863 +k1,18586:32583030,24338735:24376772 +g1,18586:32583030,24338735 +) +v1,18588:6764466,25023590:0,393216,0 +(1,18594:6764466,26733983:25818563,2103609,196608 +g1,18594:6764466,26733983 +g1,18594:6764466,26733983 +g1,18594:6567858,26733983 +(1,18594:6567858,26733983:0,2103609,196608 +r1,18632:32779637,26733983:26211779,2300217,196608 +k1,18594:6567857,26733983:-26211780 +) +(1,18594:6567858,26733983:26211779,2103609,196608 +[1,18594:6764466,26733983:25818563,1907001,0 +(1,18590:6764466,25251421:25818563,424439,112852 +(1,18589:6764466,25251421:0,0,0 +g1,18589:6764466,25251421 +g1,18589:6764466,25251421 +g1,18589:6436786,25251421 +(1,18589:6436786,25251421:0,0,0 +) +g1,18589:6764466,25251421 +) +k1,18590:6764466,25251421:0 +g1,18590:9752052,25251421 +h1,18590:10084006,25251421:0,0,0 +k1,18590:32583030,25251421:22499024 +g1,18590:32583030,25251421 +) +(1,18591:6764466,25936276:25818563,424439,112852 +h1,18591:6764466,25936276:0,0,0 +g1,18591:7096420,25936276 +g1,18591:7428374,25936276 +g1,18591:9420098,25936276 +g1,18591:10084006,25936276 +g1,18591:12075730,25936276 +g1,18591:12739638,25936276 +g1,18591:13403546,25936276 +g1,18591:15063316,25936276 +h1,18591:15395270,25936276:0,0,0 +k1,18591:32583030,25936276:17187760 +g1,18591:32583030,25936276 +) +(1,18592:6764466,26621131:25818563,424439,112852 +h1,18592:6764466,26621131:0,0,0 +g1,18592:7096420,26621131 +g1,18592:7428374,26621131 +g1,18592:12739637,26621131 +g1,18592:13403545,26621131 +h1,18592:15727223,26621131:0,0,0 +k1,18592:32583029,26621131:16855806 +g1,18592:32583029,26621131 +) +] +) +g1,18594:32583029,26733983 +g1,18594:6764466,26733983 +g1,18594:6764466,26733983 +g1,18594:32583029,26733983 +g1,18594:32583029,26733983 +) +h1,18594:6764466,26930591:0,0,0 +(1,18598:6764466,27795671:25818563,505283,134348 +h1,18597:6764466,27795671:983040,0,0 +k1,18597:8430085,27795671:194991 +k1,18597:11432642,27795671:194995 +k1,18597:13439052,27795671:194995 +k1,18597:14250085,27795671:194995 +k1,18597:14800941,27795671:194996 +k1,18597:17507276,27795671:194995 +k1,18597:20570782,27795671:194995 +k1,18597:23014973,27795671:194995 +k1,18597:23896130,27795671:194995 +k1,18597:25369732,27795671:194995 +k1,18597:26250890,27795671:194996 +k1,18597:26801745,27795671:194995 +k1,18597:29804302,27795671:194995 +k1,18597:32583029,27795671:0 +) +(1,18598:6764466,28660751:25818563,513147,134348 +k1,18597:7719965,28660751:193971 +k1,18597:8269797,28660751:193972 +k1,18597:11159264,28660751:193971 +k1,18597:12452929,28660751:193971 +k1,18597:14929519,28660751:193971 +k1,18597:16978815,28660751:193972 +k1,18597:18120437,28660751:193971 +(1,18597:18120437,28660751:0,452978,115847 +r1,18632:19885550,28660751:1765113,568825,115847 +k1,18597:18120437,28660751:-1765113 +) +(1,18597:18120437,28660751:1765113,452978,115847 +k1,18597:18120437,28660751:3277 +h1,18597:19882273,28660751:0,411205,112570 +) +k1,18597:20460285,28660751:193971 +k1,18597:21758538,28660751:193971 +k1,18597:22700276,28660751:193972 +k1,18597:25099534,28660751:193971 +k1,18597:25979667,28660751:193971 +k1,18597:26944341,28660751:193971 +k1,18597:30210641,28660751:193972 +k1,18597:31056040,28660751:193971 +k1,18598:32583029,28660751:0 +) +(1,18598:6764466,29525831:25818563,452978,122846 +g1,18597:8823607,29525831 +(1,18597:8823607,29525831:0,452978,122846 +r1,18632:11292144,29525831:2468537,575824,122846 +k1,18597:8823607,29525831:-2468537 +) +(1,18597:8823607,29525831:2468537,452978,122846 +k1,18597:8823607,29525831:3277 +h1,18597:11288867,29525831:0,411205,112570 +) +k1,18598:32583028,29525831:21290884 +g1,18598:32583028,29525831 +) +v1,18600:6764466,30210686:0,393216,0 +(1,18607:6764466,32605934:25818563,2788464,196608 +g1,18607:6764466,32605934 +g1,18607:6764466,32605934 +g1,18607:6567858,32605934 +(1,18607:6567858,32605934:0,2788464,196608 +r1,18632:32779637,32605934:26211779,2985072,196608 +k1,18607:6567857,32605934:-26211780 +) +(1,18607:6567858,32605934:26211779,2788464,196608 +[1,18607:6764466,32605934:25818563,2591856,0 +(1,18602:6764466,30438517:25818563,424439,112852 +(1,18601:6764466,30438517:0,0,0 +g1,18601:6764466,30438517 +g1,18601:6764466,30438517 +g1,18601:6436786,30438517 +(1,18601:6436786,30438517:0,0,0 +) +g1,18601:6764466,30438517 +) +g1,18602:10415959,30438517 +g1,18602:11411821,30438517 +g1,18602:13403545,30438517 +g1,18602:14067453,30438517 +g1,18602:16059177,30438517 +g1,18602:16723085,30438517 +g1,18602:17386993,30438517 +h1,18602:18714809,30438517:0,0,0 +k1,18602:32583029,30438517:13868220 +g1,18602:32583029,30438517 +) +(1,18603:6764466,31123372:25818563,424439,112852 +h1,18603:6764466,31123372:0,0,0 +g1,18603:10747914,31123372 +g1,18603:11411822,31123372 +k1,18603:11411822,31123372:0 +h1,18603:13735500,31123372:0,0,0 +k1,18603:32583028,31123372:18847528 +g1,18603:32583028,31123372 +) +(1,18604:6764466,31808227:25818563,424439,112852 +h1,18604:6764466,31808227:0,0,0 +g1,18604:7096420,31808227 +g1,18604:7428374,31808227 +g1,18604:7760328,31808227 +g1,18604:8092282,31808227 +g1,18604:8424236,31808227 +g1,18604:8756190,31808227 +g1,18604:9088144,31808227 +g1,18604:11743776,31808227 +g1,18604:12407684,31808227 +g1,18604:16391131,31808227 +h1,18604:16723085,31808227:0,0,0 +k1,18604:32583029,31808227:15859944 +g1,18604:32583029,31808227 +) +(1,18605:6764466,32493082:25818563,424439,112852 +h1,18605:6764466,32493082:0,0,0 +g1,18605:7096420,32493082 +g1,18605:7428374,32493082 +k1,18605:7428374,32493082:0 +h1,18605:11411821,32493082:0,0,0 +k1,18605:32583029,32493082:21171208 +g1,18605:32583029,32493082 +) +] +) +g1,18607:32583029,32605934 +g1,18607:6764466,32605934 +g1,18607:6764466,32605934 +g1,18607:32583029,32605934 +g1,18607:32583029,32605934 +) +h1,18607:6764466,32802542:0,0,0 +(1,18611:6764466,33667622:25818563,505283,134348 +h1,18610:6764466,33667622:983040,0,0 +k1,18610:8607219,33667622:231878 +k1,18610:9605213,33667622:231878 +k1,18610:11533819,33667622:231879 +k1,18610:14931086,33667622:231878 +k1,18610:16182049,33667622:231878 +k1,18610:17691224,33667622:231878 +k1,18610:20480972,33667622:231878 +k1,18610:24203953,33667622:231878 +k1,18610:25709197,33667622:231879 +k1,18610:28397364,33667622:231878 +k1,18610:31563944,33667622:231878 +k1,18610:32583029,33667622:0 +) +(1,18611:6764466,34532702:25818563,513147,134348 +k1,18610:9948086,34532702:209596 +k1,18610:10816974,34532702:209596 +k1,18610:12045655,34532702:209596 +k1,18610:15157841,34532702:209596 +k1,18610:17379392,34532702:209596 +k1,18610:18608073,34532702:209596 +k1,18610:21768100,34532702:209596 +k1,18610:22636988,34532702:209596 +k1,18610:24454182,34532702:209596 +k1,18610:26231399,34532702:209596 +k1,18610:29709931,34532702:209596 +k1,18611:32583029,34532702:0 +) +(1,18611:6764466,35397782:25818563,505283,134348 +k1,18610:7934830,35397782:145381 +k1,18610:10060708,35397782:145380 +k1,18610:11397534,35397782:145381 +k1,18610:13914008,35397782:145381 +k1,18610:15756115,35397782:145380 +k1,18610:17881994,35397782:145381 +k1,18610:18788903,35397782:145381 +k1,18610:21194620,35397782:145380 +k1,18610:22979056,35397782:145381 +k1,18610:23740475,35397782:145381 +k1,18610:26901166,35397782:145380 +k1,18610:28920877,35397782:145381 +k1,18610:32583029,35397782:0 +) +(1,18611:6764466,36262862:25818563,513147,126483 +k1,18610:8051845,36262862:183097 +k1,18610:8982709,36262862:183098 +k1,18610:10519780,36262862:183097 +k1,18610:12680099,36262862:183098 +k1,18610:13479234,36262862:183097 +k1,18610:15566808,36262862:183098 +k1,18610:17034411,36262862:183097 +k1,18610:20241340,36262862:183098 +k1,18610:24271400,36262862:183097 +k1,18610:27659864,36262862:183098 +k1,18610:29107806,36262862:183097 +k1,18610:29950196,36262862:183098 +k1,18610:31914562,36262862:183097 +k1,18610:32583029,36262862:0 +) +(1,18611:6764466,37127942:25818563,505283,134348 +g1,18610:8635519,37127942 +g1,18610:9853833,37127942 +g1,18610:11706535,37127942 +g1,18610:14713326,37127942 +g1,18610:16773122,37127942 +g1,18610:17623779,37127942 +g1,18610:18570774,37127942 +g1,18610:20283229,37127942 +g1,18610:24329421,37127942 +g1,18610:25144688,37127942 +g1,18610:28015164,37127942 +k1,18611:32583029,37127942:2907838 +g1,18611:32583029,37127942 +) +] +g1,18611:32583029,37262290 +) +h1,18611:6630773,37262290:0,0,0 +(1,18614:6630773,38127370:25952256,505283,134348 +h1,18613:6630773,38127370:983040,0,0 +k1,18613:9000212,38127370:189712 +k1,18613:11997487,38127370:189713 +k1,18613:12838627,38127370:189712 +k1,18613:16202904,38127370:189713 +k1,18613:17008654,38127370:189712 +k1,18613:18217452,38127370:189713 +k1,18613:19506858,38127370:189712 +k1,18613:20347998,38127370:189712 +(1,18613:20347998,38127370:0,452978,115847 +r1,18632:22113111,38127370:1765113,568825,115847 +k1,18613:20347998,38127370:-1765113 +) +(1,18613:20347998,38127370:1765113,452978,115847 +k1,18613:20347998,38127370:3277 +h1,18613:22109834,38127370:0,411205,112570 +) +k1,18613:22302824,38127370:189713 +k1,18613:23985446,38127370:189712 +k1,18613:25241430,38127370:189713 +k1,18613:26906357,38127370:189712 +k1,18613:27747498,38127370:189713 +k1,18613:28684976,38127370:189712 +k1,18613:29526117,38127370:189713 +k1,18613:30071689,38127370:189712 +k1,18613:32583029,38127370:0 +) +(1,18614:6630773,38992450:25952256,513147,126483 +k1,18613:8359256,38992450:160862 +(1,18613:8359256,38992450:0,452978,115847 +r1,18632:9772657,38992450:1413401,568825,115847 +k1,18613:8359256,38992450:-1413401 +) +(1,18613:8359256,38992450:1413401,452978,115847 +k1,18613:8359256,38992450:3277 +h1,18613:9769380,38992450:0,411205,112570 +) +k1,18613:9933519,38992450:160862 +k1,18613:10780542,38992450:160861 +k1,18613:11557442,38992450:160862 +k1,18613:14710023,38992450:160862 +k1,18613:16899880,38992450:160862 +k1,18613:17548291,38992450:160823 +k1,18613:18065013,38992450:160862 +k1,18613:19722062,38992450:160862 +k1,18613:23069284,38992450:160862 +k1,18613:24514652,38992450:160862 +k1,18613:27016459,38992450:160861 +k1,18613:27533181,38992450:160862 +k1,18613:29374386,38992450:160862 +k1,18613:32583029,38992450:0 +) +(1,18614:6630773,39857530:25952256,513147,134348 +k1,18613:8376069,39857530:177675 +k1,18613:9710454,39857530:177675 +k1,18613:10571013,39857530:177674 +k1,18613:12398885,39857530:177675 +k1,18613:15418201,39857530:177675 +k1,18613:17163497,39857530:177675 +(1,18613:17163497,39857530:0,452978,115847 +r1,18632:18576898,39857530:1413401,568825,115847 +k1,18613:17163497,39857530:-1413401 +) +(1,18613:17163497,39857530:1413401,452978,115847 +k1,18613:17163497,39857530:3277 +h1,18613:18573621,39857530:0,411205,112570 +) +k1,18613:18754573,39857530:177675 +k1,18613:19463745,39857530:177675 +k1,18613:20927235,39857530:177674 +k1,18613:24094662,39857530:177675 +k1,18613:28788423,39857530:177675 +k1,18613:31080289,39857530:177675 +k1,18614:32583029,39857530:0 +) +(1,18614:6630773,40722610:25952256,513147,134348 +k1,18613:8215051,40722610:173288 +k1,18613:10106693,40722610:173288 +k1,18613:12009476,40722610:173288 +k1,18613:13201850,40722610:173289 +k1,18613:17408879,40722610:173288 +k1,18613:18241459,40722610:173288 +k1,18613:21256388,40722610:173288 +k1,18613:22045714,40722610:173288 +k1,18613:23238087,40722610:173288 +k1,18613:24800739,40722610:173289 +k1,18613:27180624,40722610:173288 +k1,18613:30715909,40722610:173288 +k1,18614:32583029,40722610:0 +) +(1,18614:6630773,41587690:25952256,505283,134348 +k1,18613:9332728,41587690:235180 +k1,18613:10195744,41587690:235181 +k1,18613:11634165,41587690:235180 +k1,18613:13994022,41587690:235180 +k1,18613:17064290,41587690:235181 +(1,18613:17064290,41587690:0,414482,122846 +r1,18632:18125979,41587690:1061689,537328,122846 +k1,18613:17064290,41587690:-1061689 +) +(1,18613:17064290,41587690:1061689,414482,122846 +k1,18613:17064290,41587690:3277 +h1,18613:18122702,41587690:0,411205,112570 +) +k1,18613:18361159,41587690:235180 +k1,18613:19212378,41587690:235181 +k1,18613:21151494,41587690:235180 +k1,18613:22443114,41587690:235180 +k1,18613:24627991,41587690:235181 +k1,18613:25394668,41587690:235180 +k1,18613:28790649,41587690:235180 +k1,18613:30293296,41587690:235181 +k1,18613:31541007,41587690:235180 +k1,18613:32583029,41587690:0 +) +(1,18614:6630773,42452770:25952256,505283,134348 +g1,18613:8128926,42452770 +g1,18613:10442346,42452770 +k1,18614:32583029,42452770:19280692 +g1,18614:32583029,42452770 +) +v1,18616:6630773,43137625:0,393216,0 +(1,18622:6630773,44848018:25952256,2103609,196608 +g1,18622:6630773,44848018 +g1,18622:6630773,44848018 +g1,18622:6434165,44848018 +(1,18622:6434165,44848018:0,2103609,196608 +r1,18632:32779637,44848018:26345472,2300217,196608 +k1,18622:6434165,44848018:-26345472 +) +(1,18622:6434165,44848018:26345472,2103609,196608 +[1,18622:6630773,44848018:25952256,1907001,0 +(1,18618:6630773,43365456:25952256,424439,112852 +(1,18617:6630773,43365456:0,0,0 +g1,18617:6630773,43365456 +g1,18617:6630773,43365456 +g1,18617:6303093,43365456 +(1,18617:6303093,43365456:0,0,0 +) +g1,18617:6630773,43365456 +) +k1,18618:6630773,43365456:0 +g1,18618:10614221,43365456 +g1,18618:11278129,43365456 +k1,18618:11278129,43365456:0 +h1,18618:13601807,43365456:0,0,0 +k1,18618:32583029,43365456:18981222 +g1,18618:32583029,43365456 +) +(1,18619:6630773,44050311:25952256,424439,112852 +h1,18619:6630773,44050311:0,0,0 +g1,18619:6962727,44050311 +g1,18619:7294681,44050311 +g1,18619:7626635,44050311 +g1,18619:7958589,44050311 +g1,18619:8290543,44050311 +g1,18619:8622497,44050311 +g1,18619:8954451,44050311 +g1,18619:11610083,44050311 +g1,18619:13933761,44050311 +g1,18619:14597669,44050311 +g1,18619:16589393,44050311 +g1,18619:17253301,44050311 +g1,18619:17917209,44050311 +g1,18619:19245025,44050311 +g1,18619:19908933,44050311 +g1,18619:22232611,44050311 +h1,18619:22564565,44050311:0,0,0 +k1,18619:32583029,44050311:10018464 +g1,18619:32583029,44050311 +) +(1,18620:6630773,44735166:25952256,424439,112852 +h1,18620:6630773,44735166:0,0,0 +g1,18620:6962727,44735166 +g1,18620:7294681,44735166 +k1,18620:7294681,44735166:0 +h1,18620:11278128,44735166:0,0,0 +k1,18620:32583028,44735166:21304900 +g1,18620:32583028,44735166 +) +] +) +g1,18622:32583029,44848018 +g1,18622:6630773,44848018 +g1,18622:6630773,44848018 +g1,18622:32583029,44848018 +g1,18622:32583029,44848018 +) +h1,18622:6630773,45044626:0,0,0 +] +(1,18632:32583029,45706769:0,0,0 +g1,18632:32583029,45706769 +) +) +] +(1,18632:6630773,47279633:25952256,0,0 +h1,18632:6630773,47279633:25952256,0,0 +) +] +(1,18632:4262630,4025873:0,0,0 +[1,18632:-473656,4025873:0,0,0 +(1,18632:-473656,-710413:0,0,0 +(1,18632:-473656,-710413:0,0,0 +g1,18632:-473656,-710413 +) +g1,18632:-473656,-710413 ) ] ) ] !28732 -}305 -Input:3105:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3106:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3107:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3108:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}306 Input:3109:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3110:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3111:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -323004,1862 +323208,1862 @@ Input:3122:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3123:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3124:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3125:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3126:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3127:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3128:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3129:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1944 -{306 -[1,18687:4262630,47279633:28320399,43253760,0 -(1,18687:4262630,4025873:0,0,0 -[1,18687:-473656,4025873:0,0,0 -(1,18687:-473656,-710413:0,0,0 -(1,18687:-473656,-644877:0,0,0 -k1,18687:-473656,-644877:-65536 +{307 +[1,18685:4262630,47279633:28320399,43253760,0 +(1,18685:4262630,4025873:0,0,0 +[1,18685:-473656,4025873:0,0,0 +(1,18685:-473656,-710413:0,0,0 +(1,18685:-473656,-644877:0,0,0 +k1,18685:-473656,-644877:-65536 ) -(1,18687:-473656,4736287:0,0,0 -k1,18687:-473656,4736287:5209943 +(1,18685:-473656,4736287:0,0,0 +k1,18685:-473656,4736287:5209943 ) -g1,18687:-473656,-710413 +g1,18685:-473656,-710413 ) ] ) -[1,18687:6630773,47279633:25952256,43253760,0 -[1,18687:6630773,4812305:25952256,786432,0 -(1,18687:6630773,4812305:25952256,513147,126483 -(1,18687:6630773,4812305:25952256,513147,126483 -g1,18687:3078558,4812305 -[1,18687:3078558,4812305:0,0,0 -(1,18687:3078558,2439708:0,1703936,0 -k1,18687:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18687:2537886,2439708:1179648,16384,0 +[1,18685:6630773,47279633:25952256,43253760,0 +[1,18685:6630773,4812305:25952256,786432,0 +(1,18685:6630773,4812305:25952256,513147,126483 +(1,18685:6630773,4812305:25952256,513147,126483 +g1,18685:3078558,4812305 +[1,18685:3078558,4812305:0,0,0 +(1,18685:3078558,2439708:0,1703936,0 +k1,18685:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18685:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18687:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18685:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18687:3078558,4812305:0,0,0 -(1,18687:3078558,2439708:0,1703936,0 -g1,18687:29030814,2439708 -g1,18687:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18687:36151628,1915420:16384,1179648,0 +[1,18685:3078558,4812305:0,0,0 +(1,18685:3078558,2439708:0,1703936,0 +g1,18685:29030814,2439708 +g1,18685:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18685:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18687:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18685:37855564,2439708:1179648,16384,0 ) ) -k1,18687:3078556,2439708:-34777008 +k1,18685:3078556,2439708:-34777008 ) ] -[1,18687:3078558,4812305:0,0,0 -(1,18687:3078558,49800853:0,16384,2228224 -k1,18687:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18687:2537886,49800853:1179648,16384,0 +[1,18685:3078558,4812305:0,0,0 +(1,18685:3078558,49800853:0,16384,2228224 +k1,18685:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18685:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18687:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18685:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18687:3078558,4812305:0,0,0 -(1,18687:3078558,49800853:0,16384,2228224 -g1,18687:29030814,49800853 -g1,18687:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18687:36151628,51504789:16384,1179648,0 +[1,18685:3078558,4812305:0,0,0 +(1,18685:3078558,49800853:0,16384,2228224 +g1,18685:29030814,49800853 +g1,18685:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18685:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18687:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18685:37855564,49800853:1179648,16384,0 ) ) -k1,18687:3078556,49800853:-34777008 +k1,18685:3078556,49800853:-34777008 ) ] -g1,18687:6630773,4812305 -g1,18687:6630773,4812305 -g1,18687:8017514,4812305 -g1,18687:11362471,4812305 -g1,18687:12177738,4812305 -g1,18687:15187806,4812305 -k1,18687:31387652,4812305:16199846 +g1,18685:6630773,4812305 +g1,18685:6630773,4812305 +g1,18685:8017514,4812305 +g1,18685:11362471,4812305 +g1,18685:12177738,4812305 +g1,18685:15187806,4812305 +k1,18685:31387652,4812305:16199846 ) ) ] -[1,18687:6630773,45706769:25952256,40108032,0 -(1,18687:6630773,45706769:25952256,40108032,0 -(1,18687:6630773,45706769:0,0,0 -g1,18687:6630773,45706769 +[1,18685:6630773,45706769:25952256,40108032,0 +(1,18685:6630773,45706769:25952256,40108032,0 +(1,18685:6630773,45706769:0,0,0 +g1,18685:6630773,45706769 ) -[1,18687:6630773,45706769:25952256,40108032,0 -(1,18627:6630773,14682403:25952256,9083666,0 -k1,18627:10523651,14682403:3892878 -h1,18626:10523651,14682403:0,0,0 -(1,18626:10523651,14682403:18166500,9083666,0 -(1,18626:10523651,14682403:18167376,9083688,0 -(1,18626:10523651,14682403:18167376,9083688,0 -(1,18626:10523651,14682403:0,9083688,0 -(1,18626:10523651,14682403:0,14208860,0 -(1,18626:10523651,14682403:28417720,14208860,0 +[1,18685:6630773,45706769:25952256,40108032,0 +(1,18625:6630773,14682403:25952256,9083666,0 +k1,18625:10523651,14682403:3892878 +h1,18624:10523651,14682403:0,0,0 +(1,18624:10523651,14682403:18166500,9083666,0 +(1,18624:10523651,14682403:18167376,9083688,0 +(1,18624:10523651,14682403:18167376,9083688,0 +(1,18624:10523651,14682403:0,9083688,0 +(1,18624:10523651,14682403:0,14208860,0 +(1,18624:10523651,14682403:28417720,14208860,0 ) -k1,18626:10523651,14682403:-28417720 +k1,18624:10523651,14682403:-28417720 ) -) -g1,18626:28691027,14682403 -) -) -) -g1,18627:28690151,14682403 -k1,18627:32583029,14682403:3892878 -) -v1,18634:6630773,15547483:0,393216,0 -(1,18687:6630773,45483980:25952256,30329713,0 -g1,18687:6630773,45483980 -g1,18687:6237557,45483980 -r1,18687:6368629,45483980:131072,30329713,0 -g1,18687:6567858,45483980 -g1,18687:6764466,45483980 -[1,18687:6764466,45483980:25818563,30329713,0 -(1,18635:6764466,15855781:25818563,701514,196608 -(1,18634:6764466,15855781:0,701514,196608 -r1,18687:7761522,15855781:997056,898122,196608 -k1,18634:6764466,15855781:-997056 -) -(1,18634:6764466,15855781:997056,701514,196608 -) -k1,18634:7948241,15855781:186719 -k1,18634:8275921,15855781:327680 -k1,18634:11981924,15855781:186720 -k1,18634:14540391,15855781:186719 -k1,18634:15378538,15855781:186719 -k1,18634:16584343,15855781:186720 -(1,18634:16584343,15855781:0,452978,115847 -r1,18687:17997744,15855781:1413401,568825,115847 -k1,18634:16584343,15855781:-1413401 -) -(1,18634:16584343,15855781:1413401,452978,115847 -k1,18634:16584343,15855781:3277 -h1,18634:17994467,15855781:0,411205,112570 -) -k1,18634:18184463,15855781:186719 -k1,18634:20413939,15855781:186719 -k1,18634:21980847,15855781:186720 -k1,18634:23159126,15855781:186719 -k1,18634:25648125,15855781:186719 -k1,18634:26826405,15855781:186720 -k1,18634:29300331,15855781:186719 -k1,18635:32583029,15855781:0 -) -(1,18635:6764466,16720861:25818563,513147,126483 -k1,18634:7981778,16720861:192329 -k1,18634:8790145,16720861:192329 -(1,18634:8790145,16720861:0,414482,115847 -r1,18687:10555258,16720861:1765113,530329,115847 -k1,18634:8790145,16720861:-1765113 -) -(1,18634:8790145,16720861:1765113,414482,115847 -k1,18634:8790145,16720861:3277 -h1,18634:10551981,16720861:0,411205,112570 -) -k1,18634:10921257,16720861:192329 -k1,18634:14586339,16720861:192329 -k1,18634:15236765,16720861:192329 -k1,18634:15960591,16720861:192329 -k1,18634:19635504,16720861:192330 -k1,18634:20479261,16720861:192329 -k1,18634:23085936,16720861:192329 -k1,18634:25540568,16720861:192329 -k1,18634:26751982,16720861:192329 -k1,18634:30317449,16720861:192329 -k1,18635:32583029,16720861:0 -) -(1,18635:6764466,17585941:25818563,513147,126483 -(1,18634:6764466,17585941:0,452978,115847 -r1,18687:8177867,17585941:1413401,568825,115847 -k1,18634:6764466,17585941:-1413401 -) -(1,18634:6764466,17585941:1413401,452978,115847 -k1,18634:6764466,17585941:3277 -h1,18634:8174590,17585941:0,411205,112570 -) -k1,18634:8334715,17585941:156848 -k1,18634:10534321,17585941:156849 -k1,18634:11149266,17585941:156848 -k1,18634:13723737,17585941:156848 -k1,18634:14899670,17585941:156848 -k1,18634:17118282,17585941:156849 -(1,18634:17118282,17585941:0,414482,115847 -r1,18687:18531683,17585941:1413401,530329,115847 -k1,18634:17118282,17585941:-1413401 -) -(1,18634:17118282,17585941:1413401,414482,115847 -k1,18634:17118282,17585941:3277 -h1,18634:18528406,17585941:0,411205,112570 -) -k1,18634:18688531,17585941:156848 -k1,18634:21714545,17585941:156848 -k1,18634:23142792,17585941:156849 -k1,18634:26284150,17585941:156848 -k1,18634:26972495,17585941:156848 -k1,18634:27780771,17585941:156848 -k1,18634:29374825,17585941:156849 -k1,18634:29887533,17585941:156848 -k1,18634:32583029,17585941:0 -) -(1,18635:6764466,18451021:25818563,513147,134348 -k1,18634:7589345,18451021:173451 -k1,18634:11043529,18451021:173452 -(1,18634:11043529,18451021:0,452978,115847 -r1,18687:12456930,18451021:1413401,568825,115847 -k1,18634:11043529,18451021:-1413401 -) -(1,18634:11043529,18451021:1413401,452978,115847 -k1,18634:11043529,18451021:3277 -h1,18634:12453653,18451021:0,411205,112570 -) -k1,18634:12630381,18451021:173451 -k1,18634:13463124,18451021:173451 -k1,18634:14655661,18451021:173452 -k1,18634:16386903,18451021:173451 -k1,18634:19429520,18451021:173451 -k1,18634:20983816,18451021:173452 -k1,18634:24229595,18451021:173451 -k1,18634:26025063,18451021:173452 -k1,18634:26946280,18451021:173451 -k1,18634:28138816,18451021:173451 -k1,18634:31394426,18451021:173452 -k1,18634:32227169,18451021:173451 -k1,18634:32583029,18451021:0 -) -(1,18635:6764466,19316101:25818563,513147,134348 -k1,18634:9671038,19316101:211076 -k1,18634:12920364,19316101:211077 -k1,18634:13487300,19316101:211076 -k1,18634:15087739,19316101:211076 -k1,18634:17175112,19316101:211077 -k1,18634:18072350,19316101:211076 -k1,18634:19071824,19316101:211076 -k1,18634:20589033,19316101:211076 -k1,18634:23872438,19316101:211077 -k1,18634:25274959,19316101:211076 -k1,18634:28486929,19316101:211076 -k1,18634:29053866,19316101:211077 -k1,18634:30654305,19316101:211076 -k1,18634:32583029,19316101:0 -) -(1,18635:6764466,20181181:25818563,513147,134348 -k1,18634:8672187,20181181:154633 -k1,18634:9845906,20181181:154634 -k1,18634:13072867,20181181:154633 -k1,18634:13878928,20181181:154633 -(1,18634:13878928,20181181:0,452978,115847 -r1,18687:15292329,20181181:1413401,568825,115847 -k1,18634:13878928,20181181:-1413401 -) -(1,18634:13878928,20181181:1413401,452978,115847 -k1,18634:13878928,20181181:3277 -h1,18634:15289052,20181181:0,411205,112570 -) -k1,18634:15446962,20181181:154633 -k1,18634:16133093,20181181:154634 -k1,18634:16643586,20181181:154633 -k1,18634:19493715,20181181:154633 -k1,18634:22730507,20181181:154634 -k1,18634:25212323,20181181:154633 -k1,18634:26026248,20181181:154633 -k1,18634:27199966,20181181:154633 -k1,18634:29075575,20181181:154634 -k1,18634:30619571,20181181:154633 -k1,18634:32583029,20181181:0 -) -(1,18635:6764466,21046261:25818563,513147,126483 -k1,18634:8004688,21046261:221137 -k1,18634:10921321,21046261:221137 -k1,18634:11673955,21046261:221137 -k1,18634:14266840,21046261:221137 -k1,18634:15139405,21046261:221137 -k1,18634:16379627,21046261:221137 -k1,18634:18382033,21046261:221137 -k1,18634:20868750,21046261:221137 -k1,18634:22479250,21046261:221137 -k1,18634:23891832,21046261:221137 -k1,18634:25132054,21046261:221137 -k1,18634:26742554,21046261:221137 -k1,18634:28839987,21046261:221137 -k1,18634:31839851,21046261:221137 -k1,18634:32583029,21046261:0 -) -(1,18635:6764466,21911341:25818563,513147,126483 -k1,18634:7967022,21911341:183471 -k1,18634:10845989,21911341:183471 -k1,18634:11560957,21911341:183471 -k1,18634:13257655,21911341:183472 -k1,18634:14127288,21911341:183471 -k1,18634:15329844,21911341:183471 -(1,18634:15329844,21911341:0,452978,115847 -r1,18687:16743245,21911341:1413401,568825,115847 -k1,18634:15329844,21911341:-1413401 -) -(1,18634:15329844,21911341:1413401,452978,115847 -k1,18634:15329844,21911341:3277 -h1,18634:16739968,21911341:0,411205,112570 -) -k1,18634:16926716,21911341:183471 -k1,18634:17726225,21911341:183471 -k1,18634:18928781,21911341:183471 -k1,18634:20843713,21911341:183471 -k1,18634:21655019,21911341:183471 -k1,18634:22857576,21911341:183472 -k1,18634:25702464,21911341:183471 -k1,18634:27928037,21911341:183471 -k1,18634:28882211,21911341:183471 -k1,18634:32583029,21911341:0 -) -(1,18635:6764466,22776421:25818563,513147,102891 -k1,18634:9651630,22776421:191668 -k1,18634:12224875,22776421:191667 -k1,18634:14587751,22776421:191668 -k1,18634:17313696,22776421:191668 -k1,18634:17861223,22776421:191667 -k1,18634:20133004,22776421:191668 -k1,18634:20983964,22776421:191668 -k1,18634:22194717,22776421:191668 -k1,18634:24094252,22776421:191667 -k1,18634:25482607,22776421:191668 -k1,18634:29746027,22776421:191668 -k1,18634:30553732,22776421:191667 -k1,18634:31764485,22776421:191668 -k1,18635:32583029,22776421:0 -) -(1,18635:6764466,23641501:25818563,505283,134348 -k1,18634:9226544,23641501:202397 -k1,18634:10963139,23641501:202397 -k1,18634:12157096,23641501:202397 -k1,18634:15984945,23641501:202397 -k1,18634:16803380,23641501:202397 -k1,18634:18024861,23641501:202396 -k1,18634:19504555,23641501:202397 -k1,18634:20468480,23641501:202397 -k1,18634:24582721,23641501:202397 -k1,18634:26424173,23641501:202397 -k1,18634:28020521,23641501:202397 -k1,18634:30575005,23641501:202397 -k1,18634:32583029,23641501:0 -) -(1,18635:6764466,24506581:25818563,505283,126483 -k1,18635:32583029,24506581:23566746 -g1,18635:32583029,24506581 -) -v1,18637:6764466,25191436:0,393216,0 -(1,18645:6764466,28264933:25818563,3466713,196608 -g1,18645:6764466,28264933 -g1,18645:6764466,28264933 -g1,18645:6567858,28264933 -(1,18645:6567858,28264933:0,3466713,196608 -r1,18687:32779637,28264933:26211779,3663321,196608 -k1,18645:6567857,28264933:-26211780 -) -(1,18645:6567858,28264933:26211779,3466713,196608 -[1,18645:6764466,28264933:25818563,3270105,0 -(1,18639:6764466,25419267:25818563,424439,112852 -(1,18638:6764466,25419267:0,0,0 -g1,18638:6764466,25419267 -g1,18638:6764466,25419267 -g1,18638:6436786,25419267 -(1,18638:6436786,25419267:0,0,0 -) -g1,18638:6764466,25419267 -) -k1,18639:6764466,25419267:0 -g1,18639:10747914,25419267 -g1,18639:11411822,25419267 -k1,18639:11411822,25419267:0 -h1,18639:13735500,25419267:0,0,0 -k1,18639:32583028,25419267:18847528 -g1,18639:32583028,25419267 -) -(1,18640:6764466,26104122:25818563,424439,112852 -h1,18640:6764466,26104122:0,0,0 -g1,18640:7096420,26104122 -g1,18640:7428374,26104122 -g1,18640:7760328,26104122 -g1,18640:8092282,26104122 -g1,18640:8424236,26104122 -g1,18640:8756190,26104122 -g1,18640:9088144,26104122 -g1,18640:11743776,26104122 -g1,18640:12407684,26104122 -g1,18640:14399408,26104122 -g1,18640:15063316,26104122 -g1,18640:17055040,26104122 -g1,18640:17718948,26104122 -g1,18640:18382856,26104122 -g1,18640:20374580,26104122 -h1,18640:20706534,26104122:0,0,0 -k1,18640:32583029,26104122:11876495 -g1,18640:32583029,26104122 -) -(1,18641:6764466,26788977:25818563,424439,112852 -h1,18641:6764466,26788977:0,0,0 -g1,18641:7096420,26788977 -g1,18641:7428374,26788977 -g1,18641:12739637,26788977 -g1,18641:13403545,26788977 -g1,18641:14399407,26788977 -h1,18641:14731361,26788977:0,0,0 -k1,18641:32583029,26788977:17851668 -g1,18641:32583029,26788977 -) -(1,18642:6764466,27473832:25818563,431045,112852 -h1,18642:6764466,27473832:0,0,0 -g1,18642:7096420,27473832 -g1,18642:7428374,27473832 -g1,18642:12739637,27473832 -g1,18642:13403545,27473832 -g1,18642:20374578,27473832 -g1,18642:21038486,27473832 -g1,18642:22034348,27473832 -g1,18642:23362164,27473832 -g1,18642:24358026,27473832 -k1,18642:24358026,27473832:0 -h1,18642:25685842,27473832:0,0,0 -k1,18642:32583029,27473832:6897187 -g1,18642:32583029,27473832 -) -(1,18643:6764466,28158687:25818563,424439,106246 -h1,18643:6764466,28158687:0,0,0 -g1,18643:7096420,28158687 -g1,18643:7428374,28158687 -g1,18643:7760328,28158687 -g1,18643:8092282,28158687 -g1,18643:8424236,28158687 -g1,18643:8756190,28158687 -g1,18643:9088144,28158687 -g1,18643:9420098,28158687 -g1,18643:9752052,28158687 -g1,18643:10084006,28158687 -g1,18643:10415960,28158687 -g1,18643:10747914,28158687 -g1,18643:11079868,28158687 -g1,18643:13403546,28158687 -g1,18643:14067454,28158687 -g1,18643:17386993,28158687 -g1,18643:19046763,28158687 -g1,18643:19710671,28158687 -h1,18643:21038487,28158687:0,0,0 -k1,18643:32583029,28158687:11544542 -g1,18643:32583029,28158687 -) -] -) -g1,18645:32583029,28264933 -g1,18645:6764466,28264933 -g1,18645:6764466,28264933 -g1,18645:32583029,28264933 -g1,18645:32583029,28264933 -) -h1,18645:6764466,28461541:0,0,0 -(1,18648:6764466,37563912:25818563,9036835,0 -k1,18648:10637290,37563912:3872824 -h1,18647:10637290,37563912:0,0,0 -(1,18647:10637290,37563912:18072915,9036835,0 -(1,18647:10637290,37563912:18073715,9036857,0 -(1,18647:10637290,37563912:18073715,9036857,0 -(1,18647:10637290,37563912:0,9036857,0 -(1,18647:10637290,37563912:0,14208860,0 -(1,18647:10637290,37563912:28417720,14208860,0 -) -k1,18647:10637290,37563912:-28417720 -) -) -g1,18647:28711005,37563912 -) -) -) -g1,18648:28710205,37563912 -k1,18648:32583029,37563912:3872824 -) -(1,18655:6764466,38428992:25818563,513147,134348 -h1,18654:6764466,38428992:983040,0,0 -k1,18654:9125476,38428992:181283 -k1,18654:12379086,38428992:181282 -k1,18654:14765656,38428992:181283 -k1,18654:16802262,38428992:181282 -k1,18654:17634973,38428992:181283 -k1,18654:19205619,38428992:181283 -k1,18654:19918398,38428992:181282 -k1,18654:20455541,38428992:181283 -k1,18654:23332320,38428992:181283 -k1,18654:26769431,38428992:181282 -k1,18654:28016985,38428992:181283 -k1,18654:28554127,38428992:181282 -k1,18654:31430906,38428992:181283 -k1,18654:32583029,38428992:0 -) -(1,18655:6764466,39294072:25818563,513147,134348 -k1,18654:8683079,39294072:172079 -k1,18654:9321119,39294072:172079 -k1,18654:9849057,39294072:172078 -k1,18654:12716632,39294072:172079 -k1,18654:13420208,39294072:172079 -k1,18654:15797574,39294072:172079 -k1,18654:16731180,39294072:172078 -k1,18654:18814944,39294072:172079 -k1,18654:19796393,39294072:172079 -k1,18654:23822644,39294072:172079 -k1,18654:24986283,39294072:172079 -k1,18654:26845258,39294072:172078 -k1,18654:27904039,39294072:172079 -k1,18654:31478747,39294072:172079 -k1,18654:32583029,39294072:0 -) -(1,18655:6764466,40159152:25818563,513147,126483 -k1,18654:7708592,40159152:196360 -k1,18654:10110238,40159152:196359 -k1,18654:10958026,40159152:196360 -k1,18654:11510246,40159152:196360 -k1,18654:14575772,40159152:196360 -k1,18654:16843069,40159152:196359 -k1,18654:17987080,40159152:196360 -k1,18654:19202525,40159152:196360 -k1,18654:21664465,40159152:196360 -(1,18654:21664465,40159152:0,452978,115847 -r1,18687:23077866,40159152:1413401,568825,115847 -k1,18654:21664465,40159152:-1413401 -) -(1,18654:21664465,40159152:1413401,452978,115847 -k1,18654:21664465,40159152:3277 -h1,18654:23074589,40159152:0,411205,112570 -) -k1,18654:23274225,40159152:196359 -k1,18654:25675872,40159152:196360 -k1,18654:26633760,40159152:196360 -k1,18654:29444351,40159152:196360 -k1,18654:30292138,40159152:196359 -k1,18654:31276896,40159152:196360 -k1,18654:32583029,40159152:0 -) -(1,18655:6764466,41024232:25818563,513147,126483 -k1,18654:10443597,41024232:224728 -k1,18654:15188998,41024232:224727 -k1,18654:15871823,41024232:224728 -k1,18654:16628047,41024232:224727 -k1,18654:17919046,41024232:224728 -k1,18654:20773733,41024232:224727 -k1,18654:21649889,41024232:224728 -k1,18654:23311821,41024232:224727 -k1,18654:26232045,41024232:224728 -(1,18654:26232045,41024232:0,452978,115847 -r1,18687:28348870,41024232:2116825,568825,115847 -k1,18654:26232045,41024232:-2116825 -) -(1,18654:26232045,41024232:2116825,452978,115847 -k1,18654:26232045,41024232:3277 -h1,18654:28345593,41024232:0,411205,112570 -) -k1,18654:28573597,41024232:224727 -k1,18654:31386342,41024232:224728 -k1,18654:32583029,41024232:0 -) -(1,18655:6764466,41889312:25818563,513147,134348 -g1,18654:10664513,41889312 -g1,18654:13559238,41889312 -g1,18654:15613791,41889312 -g1,18654:16344517,41889312 -g1,18654:18842094,41889312 -g1,18654:19692751,41889312 -g1,18654:20639746,41889312 -g1,18654:22147729,41889312 -g1,18654:22998386,41889312 -g1,18654:24634820,41889312 -(1,18654:24634820,41889312:0,452978,115847 -r1,18687:27455069,41889312:2820249,568825,115847 -k1,18654:24634820,41889312:-2820249 -) -(1,18654:24634820,41889312:2820249,452978,115847 -g1,18654:26044944,41889312 -g1,18654:27100080,41889312 -h1,18654:27451792,41889312:0,411205,112570 -) -g1,18654:27654298,41889312 -g1,18654:28539689,41889312 -k1,18655:32583029,41889312:918584 -g1,18655:32583029,41889312 -) -(1,18657:6764466,42754392:25818563,513147,134348 -h1,18656:6764466,42754392:983040,0,0 -k1,18656:9235719,42754392:291526 -k1,18656:11308514,42754392:291526 -k1,18656:13865620,42754392:291526 -k1,18656:15546509,42754392:291526 -k1,18656:16942317,42754392:291526 -k1,18656:18519659,42754392:291526 -k1,18656:19558950,42754392:291525 -k1,18656:22682287,42754392:291526 -k1,18656:24618767,42754392:291526 -k1,18656:26645686,42754392:291526 -k1,18656:27956297,42754392:291526 -k1,18656:31193010,42754392:291526 -k1,18656:32583029,42754392:0 -) -(1,18657:6764466,43619472:25818563,513147,126483 -k1,18656:9883963,43619472:199213 -k1,18656:11155346,43619472:199214 -k1,18656:12420830,43619472:199213 -k1,18656:13639128,43619472:199213 -k1,18656:15228361,43619472:199214 -k1,18656:18174188,43619472:199213 -k1,18656:20306714,43619472:199214 -k1,18656:21157355,43619472:199213 -k1,18656:21771411,43619472:199213 -(1,18656:21978505,43619472:0,452978,115847 -r1,18687:22688483,43619472:709978,568825,115847 -k1,18656:21978505,43619472:-709978 -) -(1,18656:21978505,43619472:709978,452978,115847 -k1,18656:21978505,43619472:3277 -h1,18656:22685206,43619472:0,411205,112570 -) -k1,18656:23094791,43619472:199214 -k1,18656:23976889,43619472:199213 -k1,18656:25195187,43619472:199213 -k1,18656:28069581,43619472:199214 -k1,18656:31015408,43619472:199213 -k1,18656:32583029,43619472:0 -) -(1,18657:6764466,44484552:25818563,505283,134348 -k1,18656:9099903,44484552:224523 -k1,18656:10556503,44484552:224523 -k1,18656:13059713,44484552:224523 -h1,18656:14030301,44484552:0,0,0 -k1,18656:14254824,44484552:224523 -k1,18656:15288717,44484552:224523 -k1,18656:17011393,44484552:224523 -h1,18656:18206770,44484552:0,0,0 -k1,18656:18812057,44484552:224523 -k1,18656:19664414,44484552:224522 -k1,18656:21092178,44484552:224523 -k1,18656:24474881,44484552:224523 -k1,18656:25718489,44484552:224523 -k1,18656:27015181,44484552:224523 -(1,18656:27222275,44484552:0,414482,115847 -r1,18687:27580541,44484552:358266,530329,115847 -k1,18656:27222275,44484552:-358266 -) -(1,18656:27222275,44484552:358266,414482,115847 -k1,18656:27222275,44484552:3277 -h1,18656:27577264,44484552:0,411205,112570 -) -k1,18656:28012158,44484552:224523 -k1,18656:31970267,44484552:224523 -k1,18656:32583029,44484552:0 -) -(1,18657:6764466,45349632:25818563,513147,134348 -k1,18656:7972403,45349632:188852 -k1,18656:9700040,45349632:188852 -k1,18656:10548185,45349632:188853 -k1,18656:11756122,45349632:188852 -k1,18656:13334993,45349632:188852 -k1,18656:15632794,45349632:188852 -k1,18656:16769297,45349632:188852 -k1,18656:17977235,45349632:188853 -k1,18656:19947356,45349632:188852 -k1,18656:22401788,45349632:188852 -(1,18656:22401788,45349632:0,452978,115847 -r1,18687:23815189,45349632:1413401,568825,115847 -k1,18656:22401788,45349632:-1413401 -) -(1,18656:22401788,45349632:1413401,452978,115847 -k1,18656:22401788,45349632:3277 -h1,18656:23811912,45349632:0,411205,112570 -) -k1,18656:24004041,45349632:188852 -k1,18656:26326091,45349632:188853 -k1,18656:27711630,45349632:188852 -k1,18656:29396669,45349632:188852 -k1,18656:32583029,45349632:0 -) -] -g1,18687:32583029,45483980 -) -] -(1,18687:32583029,45706769:0,0,0 -g1,18687:32583029,45706769 -) -) -] -(1,18687:6630773,47279633:25952256,0,0 -h1,18687:6630773,47279633:25952256,0,0 -) -] -(1,18687:4262630,4025873:0,0,0 -[1,18687:-473656,4025873:0,0,0 -(1,18687:-473656,-710413:0,0,0 -(1,18687:-473656,-710413:0,0,0 -g1,18687:-473656,-710413 -) -g1,18687:-473656,-710413 +) +g1,18624:28691027,14682403 +) +) +) +g1,18625:28690151,14682403 +k1,18625:32583029,14682403:3892878 +) +v1,18632:6630773,15547483:0,393216,0 +(1,18685:6630773,45483980:25952256,30329713,0 +g1,18685:6630773,45483980 +g1,18685:6237557,45483980 +r1,18685:6368629,45483980:131072,30329713,0 +g1,18685:6567858,45483980 +g1,18685:6764466,45483980 +[1,18685:6764466,45483980:25818563,30329713,0 +(1,18633:6764466,15855781:25818563,701514,196608 +(1,18632:6764466,15855781:0,701514,196608 +r1,18685:7761522,15855781:997056,898122,196608 +k1,18632:6764466,15855781:-997056 +) +(1,18632:6764466,15855781:997056,701514,196608 +) +k1,18632:7948241,15855781:186719 +k1,18632:8275921,15855781:327680 +k1,18632:11981924,15855781:186720 +k1,18632:14540391,15855781:186719 +k1,18632:15378538,15855781:186719 +k1,18632:16584343,15855781:186720 +(1,18632:16584343,15855781:0,452978,115847 +r1,18685:17997744,15855781:1413401,568825,115847 +k1,18632:16584343,15855781:-1413401 +) +(1,18632:16584343,15855781:1413401,452978,115847 +k1,18632:16584343,15855781:3277 +h1,18632:17994467,15855781:0,411205,112570 +) +k1,18632:18184463,15855781:186719 +k1,18632:20413939,15855781:186719 +k1,18632:21980847,15855781:186720 +k1,18632:23159126,15855781:186719 +k1,18632:25648125,15855781:186719 +k1,18632:26826405,15855781:186720 +k1,18632:29300331,15855781:186719 +k1,18633:32583029,15855781:0 +) +(1,18633:6764466,16720861:25818563,513147,126483 +k1,18632:7981778,16720861:192329 +k1,18632:8790145,16720861:192329 +(1,18632:8790145,16720861:0,414482,115847 +r1,18685:10555258,16720861:1765113,530329,115847 +k1,18632:8790145,16720861:-1765113 +) +(1,18632:8790145,16720861:1765113,414482,115847 +k1,18632:8790145,16720861:3277 +h1,18632:10551981,16720861:0,411205,112570 +) +k1,18632:10921257,16720861:192329 +k1,18632:14586339,16720861:192329 +k1,18632:15236765,16720861:192329 +k1,18632:15960591,16720861:192329 +k1,18632:19635504,16720861:192330 +k1,18632:20479261,16720861:192329 +k1,18632:23085936,16720861:192329 +k1,18632:25540568,16720861:192329 +k1,18632:26751982,16720861:192329 +k1,18632:30317449,16720861:192329 +k1,18633:32583029,16720861:0 +) +(1,18633:6764466,17585941:25818563,513147,126483 +(1,18632:6764466,17585941:0,452978,115847 +r1,18685:8177867,17585941:1413401,568825,115847 +k1,18632:6764466,17585941:-1413401 +) +(1,18632:6764466,17585941:1413401,452978,115847 +k1,18632:6764466,17585941:3277 +h1,18632:8174590,17585941:0,411205,112570 +) +k1,18632:8334715,17585941:156848 +k1,18632:10534321,17585941:156849 +k1,18632:11149266,17585941:156848 +k1,18632:13723737,17585941:156848 +k1,18632:14899670,17585941:156848 +k1,18632:17118282,17585941:156849 +(1,18632:17118282,17585941:0,414482,115847 +r1,18685:18531683,17585941:1413401,530329,115847 +k1,18632:17118282,17585941:-1413401 +) +(1,18632:17118282,17585941:1413401,414482,115847 +k1,18632:17118282,17585941:3277 +h1,18632:18528406,17585941:0,411205,112570 +) +k1,18632:18688531,17585941:156848 +k1,18632:21714545,17585941:156848 +k1,18632:23142792,17585941:156849 +k1,18632:26284150,17585941:156848 +k1,18632:26972495,17585941:156848 +k1,18632:27780771,17585941:156848 +k1,18632:29374825,17585941:156849 +k1,18632:29887533,17585941:156848 +k1,18632:32583029,17585941:0 +) +(1,18633:6764466,18451021:25818563,513147,134348 +k1,18632:7589345,18451021:173451 +k1,18632:11043529,18451021:173452 +(1,18632:11043529,18451021:0,452978,115847 +r1,18685:12456930,18451021:1413401,568825,115847 +k1,18632:11043529,18451021:-1413401 +) +(1,18632:11043529,18451021:1413401,452978,115847 +k1,18632:11043529,18451021:3277 +h1,18632:12453653,18451021:0,411205,112570 +) +k1,18632:12630381,18451021:173451 +k1,18632:13463124,18451021:173451 +k1,18632:14655661,18451021:173452 +k1,18632:16386903,18451021:173451 +k1,18632:19429520,18451021:173451 +k1,18632:20983816,18451021:173452 +k1,18632:24229595,18451021:173451 +k1,18632:26025063,18451021:173452 +k1,18632:26946280,18451021:173451 +k1,18632:28138816,18451021:173451 +k1,18632:31394426,18451021:173452 +k1,18632:32227169,18451021:173451 +k1,18632:32583029,18451021:0 +) +(1,18633:6764466,19316101:25818563,513147,134348 +k1,18632:9671038,19316101:211076 +k1,18632:12920364,19316101:211077 +k1,18632:13487300,19316101:211076 +k1,18632:15087739,19316101:211076 +k1,18632:17175112,19316101:211077 +k1,18632:18072350,19316101:211076 +k1,18632:19071824,19316101:211076 +k1,18632:20589033,19316101:211076 +k1,18632:23872438,19316101:211077 +k1,18632:25274959,19316101:211076 +k1,18632:28486929,19316101:211076 +k1,18632:29053866,19316101:211077 +k1,18632:30654305,19316101:211076 +k1,18632:32583029,19316101:0 +) +(1,18633:6764466,20181181:25818563,513147,134348 +k1,18632:8672187,20181181:154633 +k1,18632:9845906,20181181:154634 +k1,18632:13072867,20181181:154633 +k1,18632:13878928,20181181:154633 +(1,18632:13878928,20181181:0,452978,115847 +r1,18685:15292329,20181181:1413401,568825,115847 +k1,18632:13878928,20181181:-1413401 +) +(1,18632:13878928,20181181:1413401,452978,115847 +k1,18632:13878928,20181181:3277 +h1,18632:15289052,20181181:0,411205,112570 +) +k1,18632:15446962,20181181:154633 +k1,18632:16133093,20181181:154634 +k1,18632:16643586,20181181:154633 +k1,18632:19493715,20181181:154633 +k1,18632:22730507,20181181:154634 +k1,18632:25212323,20181181:154633 +k1,18632:26026248,20181181:154633 +k1,18632:27199966,20181181:154633 +k1,18632:29075575,20181181:154634 +k1,18632:30619571,20181181:154633 +k1,18632:32583029,20181181:0 +) +(1,18633:6764466,21046261:25818563,513147,126483 +k1,18632:8004688,21046261:221137 +k1,18632:10921321,21046261:221137 +k1,18632:11673955,21046261:221137 +k1,18632:14266840,21046261:221137 +k1,18632:15139405,21046261:221137 +k1,18632:16379627,21046261:221137 +k1,18632:18382033,21046261:221137 +k1,18632:20868750,21046261:221137 +k1,18632:22479250,21046261:221137 +k1,18632:23891832,21046261:221137 +k1,18632:25132054,21046261:221137 +k1,18632:26742554,21046261:221137 +k1,18632:28839987,21046261:221137 +k1,18632:31839851,21046261:221137 +k1,18632:32583029,21046261:0 +) +(1,18633:6764466,21911341:25818563,513147,126483 +k1,18632:7967022,21911341:183471 +k1,18632:10845989,21911341:183471 +k1,18632:11560957,21911341:183471 +k1,18632:13257655,21911341:183472 +k1,18632:14127288,21911341:183471 +k1,18632:15329844,21911341:183471 +(1,18632:15329844,21911341:0,452978,115847 +r1,18685:16743245,21911341:1413401,568825,115847 +k1,18632:15329844,21911341:-1413401 +) +(1,18632:15329844,21911341:1413401,452978,115847 +k1,18632:15329844,21911341:3277 +h1,18632:16739968,21911341:0,411205,112570 +) +k1,18632:16926716,21911341:183471 +k1,18632:17726225,21911341:183471 +k1,18632:18928781,21911341:183471 +k1,18632:20843713,21911341:183471 +k1,18632:21655019,21911341:183471 +k1,18632:22857576,21911341:183472 +k1,18632:25702464,21911341:183471 +k1,18632:27928037,21911341:183471 +k1,18632:28882211,21911341:183471 +k1,18632:32583029,21911341:0 +) +(1,18633:6764466,22776421:25818563,513147,102891 +k1,18632:9651630,22776421:191668 +k1,18632:12224875,22776421:191667 +k1,18632:14587751,22776421:191668 +k1,18632:17313696,22776421:191668 +k1,18632:17861223,22776421:191667 +k1,18632:20133004,22776421:191668 +k1,18632:20983964,22776421:191668 +k1,18632:22194717,22776421:191668 +k1,18632:24094252,22776421:191667 +k1,18632:25482607,22776421:191668 +k1,18632:29746027,22776421:191668 +k1,18632:30553732,22776421:191667 +k1,18632:31764485,22776421:191668 +k1,18633:32583029,22776421:0 +) +(1,18633:6764466,23641501:25818563,505283,134348 +k1,18632:9226544,23641501:202397 +k1,18632:10963139,23641501:202397 +k1,18632:12157096,23641501:202397 +k1,18632:15984945,23641501:202397 +k1,18632:16803380,23641501:202397 +k1,18632:18024861,23641501:202396 +k1,18632:19504555,23641501:202397 +k1,18632:20468480,23641501:202397 +k1,18632:24582721,23641501:202397 +k1,18632:26424173,23641501:202397 +k1,18632:28020521,23641501:202397 +k1,18632:30575005,23641501:202397 +k1,18632:32583029,23641501:0 +) +(1,18633:6764466,24506581:25818563,505283,126483 +k1,18633:32583029,24506581:23566746 +g1,18633:32583029,24506581 +) +v1,18635:6764466,25191436:0,393216,0 +(1,18643:6764466,28264933:25818563,3466713,196608 +g1,18643:6764466,28264933 +g1,18643:6764466,28264933 +g1,18643:6567858,28264933 +(1,18643:6567858,28264933:0,3466713,196608 +r1,18685:32779637,28264933:26211779,3663321,196608 +k1,18643:6567857,28264933:-26211780 +) +(1,18643:6567858,28264933:26211779,3466713,196608 +[1,18643:6764466,28264933:25818563,3270105,0 +(1,18637:6764466,25419267:25818563,424439,112852 +(1,18636:6764466,25419267:0,0,0 +g1,18636:6764466,25419267 +g1,18636:6764466,25419267 +g1,18636:6436786,25419267 +(1,18636:6436786,25419267:0,0,0 +) +g1,18636:6764466,25419267 +) +k1,18637:6764466,25419267:0 +g1,18637:10747914,25419267 +g1,18637:11411822,25419267 +k1,18637:11411822,25419267:0 +h1,18637:13735500,25419267:0,0,0 +k1,18637:32583028,25419267:18847528 +g1,18637:32583028,25419267 +) +(1,18638:6764466,26104122:25818563,424439,112852 +h1,18638:6764466,26104122:0,0,0 +g1,18638:7096420,26104122 +g1,18638:7428374,26104122 +g1,18638:7760328,26104122 +g1,18638:8092282,26104122 +g1,18638:8424236,26104122 +g1,18638:8756190,26104122 +g1,18638:9088144,26104122 +g1,18638:11743776,26104122 +g1,18638:12407684,26104122 +g1,18638:14399408,26104122 +g1,18638:15063316,26104122 +g1,18638:17055040,26104122 +g1,18638:17718948,26104122 +g1,18638:18382856,26104122 +g1,18638:20374580,26104122 +h1,18638:20706534,26104122:0,0,0 +k1,18638:32583029,26104122:11876495 +g1,18638:32583029,26104122 +) +(1,18639:6764466,26788977:25818563,424439,112852 +h1,18639:6764466,26788977:0,0,0 +g1,18639:7096420,26788977 +g1,18639:7428374,26788977 +g1,18639:12739637,26788977 +g1,18639:13403545,26788977 +g1,18639:14399407,26788977 +h1,18639:14731361,26788977:0,0,0 +k1,18639:32583029,26788977:17851668 +g1,18639:32583029,26788977 +) +(1,18640:6764466,27473832:25818563,431045,112852 +h1,18640:6764466,27473832:0,0,0 +g1,18640:7096420,27473832 +g1,18640:7428374,27473832 +g1,18640:12739637,27473832 +g1,18640:13403545,27473832 +g1,18640:20374578,27473832 +g1,18640:21038486,27473832 +g1,18640:22034348,27473832 +g1,18640:23362164,27473832 +g1,18640:24358026,27473832 +k1,18640:24358026,27473832:0 +h1,18640:25685842,27473832:0,0,0 +k1,18640:32583029,27473832:6897187 +g1,18640:32583029,27473832 +) +(1,18641:6764466,28158687:25818563,424439,106246 +h1,18641:6764466,28158687:0,0,0 +g1,18641:7096420,28158687 +g1,18641:7428374,28158687 +g1,18641:7760328,28158687 +g1,18641:8092282,28158687 +g1,18641:8424236,28158687 +g1,18641:8756190,28158687 +g1,18641:9088144,28158687 +g1,18641:9420098,28158687 +g1,18641:9752052,28158687 +g1,18641:10084006,28158687 +g1,18641:10415960,28158687 +g1,18641:10747914,28158687 +g1,18641:11079868,28158687 +g1,18641:13403546,28158687 +g1,18641:14067454,28158687 +g1,18641:17386993,28158687 +g1,18641:19046763,28158687 +g1,18641:19710671,28158687 +h1,18641:21038487,28158687:0,0,0 +k1,18641:32583029,28158687:11544542 +g1,18641:32583029,28158687 +) +] +) +g1,18643:32583029,28264933 +g1,18643:6764466,28264933 +g1,18643:6764466,28264933 +g1,18643:32583029,28264933 +g1,18643:32583029,28264933 +) +h1,18643:6764466,28461541:0,0,0 +(1,18646:6764466,37563912:25818563,9036835,0 +k1,18646:10637290,37563912:3872824 +h1,18645:10637290,37563912:0,0,0 +(1,18645:10637290,37563912:18072915,9036835,0 +(1,18645:10637290,37563912:18073715,9036857,0 +(1,18645:10637290,37563912:18073715,9036857,0 +(1,18645:10637290,37563912:0,9036857,0 +(1,18645:10637290,37563912:0,14208860,0 +(1,18645:10637290,37563912:28417720,14208860,0 +) +k1,18645:10637290,37563912:-28417720 +) +) +g1,18645:28711005,37563912 +) +) +) +g1,18646:28710205,37563912 +k1,18646:32583029,37563912:3872824 +) +(1,18653:6764466,38428992:25818563,513147,134348 +h1,18652:6764466,38428992:983040,0,0 +k1,18652:9125476,38428992:181283 +k1,18652:12379086,38428992:181282 +k1,18652:14765656,38428992:181283 +k1,18652:16802262,38428992:181282 +k1,18652:17634973,38428992:181283 +k1,18652:19205619,38428992:181283 +k1,18652:19918398,38428992:181282 +k1,18652:20455541,38428992:181283 +k1,18652:23332320,38428992:181283 +k1,18652:26769431,38428992:181282 +k1,18652:28016985,38428992:181283 +k1,18652:28554127,38428992:181282 +k1,18652:31430906,38428992:181283 +k1,18652:32583029,38428992:0 +) +(1,18653:6764466,39294072:25818563,513147,134348 +k1,18652:8683079,39294072:172079 +k1,18652:9321119,39294072:172079 +k1,18652:9849057,39294072:172078 +k1,18652:12716632,39294072:172079 +k1,18652:13420208,39294072:172079 +k1,18652:15797574,39294072:172079 +k1,18652:16731180,39294072:172078 +k1,18652:18814944,39294072:172079 +k1,18652:19796393,39294072:172079 +k1,18652:23822644,39294072:172079 +k1,18652:24986283,39294072:172079 +k1,18652:26845258,39294072:172078 +k1,18652:27904039,39294072:172079 +k1,18652:31478747,39294072:172079 +k1,18652:32583029,39294072:0 +) +(1,18653:6764466,40159152:25818563,513147,126483 +k1,18652:7708592,40159152:196360 +k1,18652:10110238,40159152:196359 +k1,18652:10958026,40159152:196360 +k1,18652:11510246,40159152:196360 +k1,18652:14575772,40159152:196360 +k1,18652:16843069,40159152:196359 +k1,18652:17987080,40159152:196360 +k1,18652:19202525,40159152:196360 +k1,18652:21664465,40159152:196360 +(1,18652:21664465,40159152:0,452978,115847 +r1,18685:23077866,40159152:1413401,568825,115847 +k1,18652:21664465,40159152:-1413401 +) +(1,18652:21664465,40159152:1413401,452978,115847 +k1,18652:21664465,40159152:3277 +h1,18652:23074589,40159152:0,411205,112570 +) +k1,18652:23274225,40159152:196359 +k1,18652:25675872,40159152:196360 +k1,18652:26633760,40159152:196360 +k1,18652:29444351,40159152:196360 +k1,18652:30292138,40159152:196359 +k1,18652:31276896,40159152:196360 +k1,18652:32583029,40159152:0 +) +(1,18653:6764466,41024232:25818563,513147,126483 +k1,18652:10443597,41024232:224728 +k1,18652:15188998,41024232:224727 +k1,18652:15871823,41024232:224728 +k1,18652:16628047,41024232:224727 +k1,18652:17919046,41024232:224728 +k1,18652:20773733,41024232:224727 +k1,18652:21649889,41024232:224728 +k1,18652:23311821,41024232:224727 +k1,18652:26232045,41024232:224728 +(1,18652:26232045,41024232:0,452978,115847 +r1,18685:28348870,41024232:2116825,568825,115847 +k1,18652:26232045,41024232:-2116825 +) +(1,18652:26232045,41024232:2116825,452978,115847 +k1,18652:26232045,41024232:3277 +h1,18652:28345593,41024232:0,411205,112570 +) +k1,18652:28573597,41024232:224727 +k1,18652:31386342,41024232:224728 +k1,18652:32583029,41024232:0 +) +(1,18653:6764466,41889312:25818563,513147,134348 +g1,18652:10664513,41889312 +g1,18652:13559238,41889312 +g1,18652:15613791,41889312 +g1,18652:16344517,41889312 +g1,18652:18842094,41889312 +g1,18652:19692751,41889312 +g1,18652:20639746,41889312 +g1,18652:22147729,41889312 +g1,18652:22998386,41889312 +g1,18652:24634820,41889312 +(1,18652:24634820,41889312:0,452978,115847 +r1,18685:27455069,41889312:2820249,568825,115847 +k1,18652:24634820,41889312:-2820249 +) +(1,18652:24634820,41889312:2820249,452978,115847 +g1,18652:26044944,41889312 +g1,18652:27100080,41889312 +h1,18652:27451792,41889312:0,411205,112570 +) +g1,18652:27654298,41889312 +g1,18652:28539689,41889312 +k1,18653:32583029,41889312:918584 +g1,18653:32583029,41889312 +) +(1,18655:6764466,42754392:25818563,513147,134348 +h1,18654:6764466,42754392:983040,0,0 +k1,18654:9235719,42754392:291526 +k1,18654:11308514,42754392:291526 +k1,18654:13865620,42754392:291526 +k1,18654:15546509,42754392:291526 +k1,18654:16942317,42754392:291526 +k1,18654:18519659,42754392:291526 +k1,18654:19558950,42754392:291525 +k1,18654:22682287,42754392:291526 +k1,18654:24618767,42754392:291526 +k1,18654:26645686,42754392:291526 +k1,18654:27956297,42754392:291526 +k1,18654:31193010,42754392:291526 +k1,18654:32583029,42754392:0 +) +(1,18655:6764466,43619472:25818563,513147,126483 +k1,18654:9883963,43619472:199213 +k1,18654:11155346,43619472:199214 +k1,18654:12420830,43619472:199213 +k1,18654:13639128,43619472:199213 +k1,18654:15228361,43619472:199214 +k1,18654:18174188,43619472:199213 +k1,18654:20306714,43619472:199214 +k1,18654:21157355,43619472:199213 +k1,18654:21771411,43619472:199213 +(1,18654:21978505,43619472:0,452978,115847 +r1,18685:22688483,43619472:709978,568825,115847 +k1,18654:21978505,43619472:-709978 +) +(1,18654:21978505,43619472:709978,452978,115847 +k1,18654:21978505,43619472:3277 +h1,18654:22685206,43619472:0,411205,112570 +) +k1,18654:23094791,43619472:199214 +k1,18654:23976889,43619472:199213 +k1,18654:25195187,43619472:199213 +k1,18654:28069581,43619472:199214 +k1,18654:31015408,43619472:199213 +k1,18654:32583029,43619472:0 +) +(1,18655:6764466,44484552:25818563,505283,134348 +k1,18654:9099903,44484552:224523 +k1,18654:10556503,44484552:224523 +k1,18654:13059713,44484552:224523 +h1,18654:14030301,44484552:0,0,0 +k1,18654:14254824,44484552:224523 +k1,18654:15288717,44484552:224523 +k1,18654:17011393,44484552:224523 +h1,18654:18206770,44484552:0,0,0 +k1,18654:18812057,44484552:224523 +k1,18654:19664414,44484552:224522 +k1,18654:21092178,44484552:224523 +k1,18654:24474881,44484552:224523 +k1,18654:25718489,44484552:224523 +k1,18654:27015181,44484552:224523 +(1,18654:27222275,44484552:0,414482,115847 +r1,18685:27580541,44484552:358266,530329,115847 +k1,18654:27222275,44484552:-358266 +) +(1,18654:27222275,44484552:358266,414482,115847 +k1,18654:27222275,44484552:3277 +h1,18654:27577264,44484552:0,411205,112570 +) +k1,18654:28012158,44484552:224523 +k1,18654:31970267,44484552:224523 +k1,18654:32583029,44484552:0 +) +(1,18655:6764466,45349632:25818563,513147,134348 +k1,18654:7972403,45349632:188852 +k1,18654:9700040,45349632:188852 +k1,18654:10548185,45349632:188853 +k1,18654:11756122,45349632:188852 +k1,18654:13334993,45349632:188852 +k1,18654:15632794,45349632:188852 +k1,18654:16769297,45349632:188852 +k1,18654:17977235,45349632:188853 +k1,18654:19947356,45349632:188852 +k1,18654:22401788,45349632:188852 +(1,18654:22401788,45349632:0,452978,115847 +r1,18685:23815189,45349632:1413401,568825,115847 +k1,18654:22401788,45349632:-1413401 +) +(1,18654:22401788,45349632:1413401,452978,115847 +k1,18654:22401788,45349632:3277 +h1,18654:23811912,45349632:0,411205,112570 +) +k1,18654:24004041,45349632:188852 +k1,18654:26326091,45349632:188853 +k1,18654:27711630,45349632:188852 +k1,18654:29396669,45349632:188852 +k1,18654:32583029,45349632:0 +) +] +g1,18685:32583029,45483980 +) +] +(1,18685:32583029,45706769:0,0,0 +g1,18685:32583029,45706769 +) +) +] +(1,18685:6630773,47279633:25952256,0,0 +h1,18685:6630773,47279633:25952256,0,0 +) +] +(1,18685:4262630,4025873:0,0,0 +[1,18685:-473656,4025873:0,0,0 +(1,18685:-473656,-710413:0,0,0 +(1,18685:-473656,-710413:0,0,0 +g1,18685:-473656,-710413 +) +g1,18685:-473656,-710413 ) ] ) ] !21713 -}306 -Input:3126:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3127:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3128:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3129:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}307 Input:3130:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3131:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3132:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3133:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3134:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3135:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3136:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3137:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3138:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3139:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{307 -[1,18711:4262630,47279633:28320399,43253760,0 -(1,18711:4262630,4025873:0,0,0 -[1,18711:-473656,4025873:0,0,0 -(1,18711:-473656,-710413:0,0,0 -(1,18711:-473656,-644877:0,0,0 -k1,18711:-473656,-644877:-65536 +{308 +[1,18709:4262630,47279633:28320399,43253760,0 +(1,18709:4262630,4025873:0,0,0 +[1,18709:-473656,4025873:0,0,0 +(1,18709:-473656,-710413:0,0,0 +(1,18709:-473656,-644877:0,0,0 +k1,18709:-473656,-644877:-65536 ) -(1,18711:-473656,4736287:0,0,0 -k1,18711:-473656,4736287:5209943 +(1,18709:-473656,4736287:0,0,0 +k1,18709:-473656,4736287:5209943 ) -g1,18711:-473656,-710413 +g1,18709:-473656,-710413 ) ] ) -[1,18711:6630773,47279633:25952256,43253760,0 -[1,18711:6630773,4812305:25952256,786432,0 -(1,18711:6630773,4812305:25952256,513147,126483 -(1,18711:6630773,4812305:25952256,513147,126483 -g1,18711:3078558,4812305 -[1,18711:3078558,4812305:0,0,0 -(1,18711:3078558,2439708:0,1703936,0 -k1,18711:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18711:2537886,2439708:1179648,16384,0 +[1,18709:6630773,47279633:25952256,43253760,0 +[1,18709:6630773,4812305:25952256,786432,0 +(1,18709:6630773,4812305:25952256,513147,126483 +(1,18709:6630773,4812305:25952256,513147,126483 +g1,18709:3078558,4812305 +[1,18709:3078558,4812305:0,0,0 +(1,18709:3078558,2439708:0,1703936,0 +k1,18709:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18709:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18711:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18709:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18711:3078558,4812305:0,0,0 -(1,18711:3078558,2439708:0,1703936,0 -g1,18711:29030814,2439708 -g1,18711:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18711:36151628,1915420:16384,1179648,0 +[1,18709:3078558,4812305:0,0,0 +(1,18709:3078558,2439708:0,1703936,0 +g1,18709:29030814,2439708 +g1,18709:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18709:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18711:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18709:37855564,2439708:1179648,16384,0 ) ) -k1,18711:3078556,2439708:-34777008 +k1,18709:3078556,2439708:-34777008 ) ] -[1,18711:3078558,4812305:0,0,0 -(1,18711:3078558,49800853:0,16384,2228224 -k1,18711:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18711:2537886,49800853:1179648,16384,0 +[1,18709:3078558,4812305:0,0,0 +(1,18709:3078558,49800853:0,16384,2228224 +k1,18709:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18709:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18711:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18709:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18711:3078558,4812305:0,0,0 -(1,18711:3078558,49800853:0,16384,2228224 -g1,18711:29030814,49800853 -g1,18711:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18711:36151628,51504789:16384,1179648,0 +[1,18709:3078558,4812305:0,0,0 +(1,18709:3078558,49800853:0,16384,2228224 +g1,18709:29030814,49800853 +g1,18709:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18709:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18711:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18709:37855564,49800853:1179648,16384,0 ) ) -k1,18711:3078556,49800853:-34777008 -) -] -g1,18711:6630773,4812305 -k1,18711:21386205,4812305:13560055 -g1,18711:21999622,4812305 -g1,18711:25611966,4812305 -g1,18711:28956923,4812305 -g1,18711:29772190,4812305 -) -) -] -[1,18711:6630773,45706769:25952256,40108032,0 -(1,18711:6630773,45706769:25952256,40108032,0 -(1,18711:6630773,45706769:0,0,0 -g1,18711:6630773,45706769 -) -[1,18711:6630773,45706769:25952256,40108032,0 -v1,18687:6630773,6254097:0,393216,0 -(1,18687:6630773,24404517:25952256,18543636,0 -g1,18687:6630773,24404517 -g1,18687:6237557,24404517 -r1,18711:6368629,24404517:131072,18543636,0 -g1,18687:6567858,24404517 -g1,18687:6764466,24404517 -[1,18687:6764466,24404517:25818563,18543636,0 -(1,18657:6764466,6374028:25818563,513147,134348 -k1,18656:8877578,6374028:244681 -k1,18656:10545047,6374028:244682 -k1,18656:11145588,6374028:244681 -k1,18656:12780288,6374028:244681 -k1,18656:13711132,6374028:244682 -k1,18656:17028141,6374028:244681 -k1,18656:18220473,6374028:244681 -(1,18656:18220473,6374028:0,452978,115847 -r1,18711:19633874,6374028:1413401,568825,115847 -k1,18656:18220473,6374028:-1413401 -) -(1,18656:18220473,6374028:1413401,452978,115847 -k1,18656:18220473,6374028:3277 -h1,18656:19630597,6374028:0,411205,112570 -) -k1,18656:19878555,6374028:244681 -k1,18656:20774665,6374028:244682 -k1,18656:22119040,6374028:244681 -k1,18656:25059217,6374028:244681 -(1,18656:25059217,6374028:0,452978,115847 -r1,18711:27879466,6374028:2820249,568825,115847 -k1,18656:25059217,6374028:-2820249 -) -(1,18656:25059217,6374028:2820249,452978,115847 -k1,18656:25059217,6374028:3277 -h1,18656:27876189,6374028:0,411205,112570 -) -k1,18656:28124148,6374028:244682 -k1,18656:29762780,6374028:244681 -(1,18656:29762780,6374028:0,452978,115847 -r1,18711:32583029,6374028:2820249,568825,115847 -k1,18656:29762780,6374028:-2820249 -) -(1,18656:29762780,6374028:2820249,452978,115847 -g1,18656:31172904,6374028 -g1,18656:32228040,6374028 -h1,18656:32579752,6374028:0,411205,112570 -) -k1,18656:32583029,6374028:0 -) -(1,18657:6764466,7239108:25818563,505283,126483 -g1,18656:9168982,7239108 -g1,18656:10054373,7239108 -g1,18656:11272687,7239108 -g1,18656:14677937,7239108 -g1,18656:16073853,7239108 -g1,18656:17724049,7239108 -g1,18656:18989549,7239108 -g1,18656:21437974,7239108 -g1,18656:22168700,7239108 -g1,18656:23054091,7239108 -g1,18656:23869358,7239108 -g1,18656:25087672,7239108 -g1,18656:27948318,7239108 -k1,18657:32583029,7239108:2726958 -g1,18657:32583029,7239108 -) -v1,18659:6764466,7923963:0,393216,0 -(1,18667:6764466,10971036:25818563,3440289,196608 -g1,18667:6764466,10971036 -g1,18667:6764466,10971036 -g1,18667:6567858,10971036 -(1,18667:6567858,10971036:0,3440289,196608 -r1,18711:32779637,10971036:26211779,3636897,196608 -k1,18667:6567857,10971036:-26211780 -) -(1,18667:6567858,10971036:26211779,3440289,196608 -[1,18667:6764466,10971036:25818563,3243681,0 -(1,18661:6764466,8151794:25818563,424439,112852 -(1,18660:6764466,8151794:0,0,0 -g1,18660:6764466,8151794 -g1,18660:6764466,8151794 -g1,18660:6436786,8151794 -(1,18660:6436786,8151794:0,0,0 -) -g1,18660:6764466,8151794 -) -k1,18661:6764466,8151794:0 -g1,18661:10747914,8151794 -g1,18661:11411822,8151794 -k1,18661:11411822,8151794:0 -h1,18661:13735500,8151794:0,0,0 -k1,18661:32583028,8151794:18847528 -g1,18661:32583028,8151794 -) -(1,18662:6764466,8836649:25818563,424439,112852 -h1,18662:6764466,8836649:0,0,0 -g1,18662:7096420,8836649 -g1,18662:7428374,8836649 -g1,18662:7760328,8836649 -g1,18662:8092282,8836649 -g1,18662:8424236,8836649 -g1,18662:8756190,8836649 -g1,18662:9088144,8836649 -g1,18662:11743776,8836649 -g1,18662:12407684,8836649 -g1,18662:14399408,8836649 -g1,18662:15063316,8836649 -g1,18662:17055040,8836649 -g1,18662:17718948,8836649 -g1,18662:18382856,8836649 -g1,18662:20374580,8836649 -h1,18662:20706534,8836649:0,0,0 -k1,18662:32583029,8836649:11876495 -g1,18662:32583029,8836649 -) -(1,18663:6764466,9521504:25818563,424439,112852 -h1,18663:6764466,9521504:0,0,0 -g1,18663:7096420,9521504 -g1,18663:7428374,9521504 -g1,18663:12739637,9521504 -g1,18663:13403545,9521504 -g1,18663:14399407,9521504 -h1,18663:14731361,9521504:0,0,0 -k1,18663:32583029,9521504:17851668 -g1,18663:32583029,9521504 -) -(1,18664:6764466,10206359:25818563,424439,112852 -h1,18664:6764466,10206359:0,0,0 -g1,18664:7096420,10206359 -g1,18664:7428374,10206359 -g1,18664:12739637,10206359 -g1,18664:13403545,10206359 -g1,18664:14067453,10206359 -g1,18664:15395269,10206359 -g1,18664:18382855,10206359 -g1,18664:19046763,10206359 -g1,18664:20042625,10206359 -g1,18664:21370441,10206359 -g1,18664:22366303,10206359 -g1,18664:23694119,10206359 -g1,18664:26017797,10206359 -g1,18664:26681705,10206359 -k1,18664:26681705,10206359:0 -h1,18664:29669290,10206359:0,0,0 -k1,18664:32583029,10206359:2913739 -g1,18664:32583029,10206359 -) -(1,18665:6764466,10891214:25818563,424439,79822 -h1,18665:6764466,10891214:0,0,0 -g1,18665:7096420,10891214 -g1,18665:7428374,10891214 -g1,18665:7760328,10891214 -g1,18665:8092282,10891214 -g1,18665:8424236,10891214 -g1,18665:8756190,10891214 -g1,18665:9088144,10891214 -g1,18665:9420098,10891214 -g1,18665:9752052,10891214 -g1,18665:10084006,10891214 -g1,18665:10415960,10891214 -g1,18665:10747914,10891214 -g1,18665:11079868,10891214 -g1,18665:12739638,10891214 -g1,18665:13403546,10891214 -h1,18665:14731362,10891214:0,0,0 -k1,18665:32583030,10891214:17851668 -g1,18665:32583030,10891214 -) -] -) -g1,18667:32583029,10971036 -g1,18667:6764466,10971036 -g1,18667:6764466,10971036 -g1,18667:32583029,10971036 -g1,18667:32583029,10971036 -) -h1,18667:6764466,11167644:0,0,0 -(1,18671:6764466,12032724:25818563,505283,126483 -h1,18670:6764466,12032724:983040,0,0 -k1,18670:8380081,12032724:144987 -k1,18670:10107162,12032724:145042 -k1,18670:12882163,12032724:145041 -k1,18670:16011714,12032724:145041 -k1,18670:16688252,12032724:145041 -k1,18670:17484722,12032724:145042 -k1,18670:18821208,12032724:145041 -k1,18670:19985334,12032724:145041 -k1,18670:23162726,12032724:145041 -k1,18670:25317757,12032724:145042 -k1,18670:26481883,12032724:145041 -k1,18670:27726618,12032724:145041 -k1,18670:28523087,12032724:145041 -(1,18670:28523087,12032724:0,452978,115847 -r1,18711:30288200,12032724:1765113,568825,115847 -k1,18670:28523087,12032724:-1765113 -) -(1,18670:28523087,12032724:1765113,452978,115847 -k1,18670:28523087,12032724:3277 -h1,18670:30284923,12032724:0,411205,112570 -) -k1,18670:30606912,12032724:145042 -k1,18670:31379788,12032724:145041 -k1,18670:32583029,12032724:0 -) -(1,18671:6764466,12897804:25818563,513147,134348 -k1,18670:9935401,12897804:186425 -k1,18670:10579922,12897804:186424 -k1,18670:11297844,12897804:186425 -k1,18670:12550539,12897804:186424 -k1,18670:15366924,12897804:186425 -k1,18670:16204776,12897804:186424 -k1,18670:18595177,12897804:186425 -k1,18670:19137461,12897804:186424 -k1,18670:21403999,12897804:186425 -k1,18670:22249715,12897804:186424 -k1,18670:24144008,12897804:186425 -k1,18670:26632712,12897804:186424 -k1,18670:28511277,12897804:186425 -k1,18670:32583029,12897804:0 -) -(1,18671:6764466,13762884:25818563,513147,134348 -k1,18670:9615256,13762884:191994 -k1,18670:10568778,13762884:191994 -k1,18670:13555884,13762884:191995 -k1,18670:15256517,13762884:191994 -k1,18670:16717288,13762884:191994 -k1,18670:18884537,13762884:191994 -k1,18670:24262396,13762884:191995 -k1,18670:27389092,13762884:191994 -k1,18670:29762780,13762884:191994 -(1,18670:29762780,13762884:0,452978,115847 -r1,18711:32583029,13762884:2820249,568825,115847 -k1,18670:29762780,13762884:-2820249 -) -(1,18670:29762780,13762884:2820249,452978,115847 -g1,18670:31524616,13762884 -g1,18670:32228040,13762884 -h1,18670:32579752,13762884:0,411205,112570 -) -k1,18670:32583029,13762884:0 -) -(1,18671:6764466,14627964:25818563,513147,134348 -k1,18670:8878166,14627964:197427 -k1,18670:9431453,14627964:197427 -k1,18670:10982854,14627964:197427 -k1,18670:12896669,14627964:197427 -k1,18670:14955974,14627964:197427 -k1,18670:16352055,14627964:197427 -k1,18670:18765910,14627964:197427 -k1,18670:20144296,14627964:197427 -k1,18670:21001015,14627964:197427 -k1,18670:23540699,14627964:197427 -k1,18670:26368086,14627964:197427 -k1,18670:30401335,14627964:197427 -k1,18670:32583029,14627964:0 -) -(1,18671:6764466,15493044:25818563,505283,134348 -k1,18670:8200139,15493044:166896 -k1,18670:9018463,15493044:166896 -(1,18670:9018463,15493044:0,414482,115847 -r1,18711:9728441,15493044:709978,530329,115847 -k1,18670:9018463,15493044:-709978 -) -(1,18670:9018463,15493044:709978,414482,115847 -k1,18670:9018463,15493044:3277 -h1,18670:9725164,15493044:0,411205,112570 -) -k1,18670:10069007,15493044:166896 -k1,18670:11911003,15493044:166896 -k1,18670:13096984,15493044:166896 -k1,18670:14971748,15493044:166896 -k1,18670:16330090,15493044:166897 -(1,18670:16330090,15493044:0,414482,115847 -r1,18711:20557186,15493044:4227096,530329,115847 -k1,18670:16330090,15493044:-4227096 -) -(1,18670:16330090,15493044:4227096,414482,115847 -g1,18670:18443638,15493044 -g1,18670:19147062,15493044 -h1,18670:20553909,15493044:0,411205,112570 -) -k1,18670:20724082,15493044:166896 -k1,18670:23401007,15493044:166896 -k1,18670:24586988,15493044:166896 -k1,18670:27592904,15493044:166896 -k1,18670:30503792,15493044:166896 -k1,18670:32051532,15493044:166896 -k1,18670:32583029,15493044:0 -) -(1,18671:6764466,16358124:25818563,505283,134348 -k1,18670:7348095,16358124:227769 -k1,18670:11331733,16358124:227770 -k1,18670:14544012,16358124:227769 -k1,18670:15423210,16358124:227770 -k1,18670:19151912,16358124:227769 -k1,18670:21405400,16358124:227770 -k1,18670:22917675,16358124:227769 -(1,18670:22917675,16358124:0,452978,115847 -r1,18711:30310177,16358124:7392502,568825,115847 -k1,18670:22917675,16358124:-7392502 -) -(1,18670:22917675,16358124:7392502,452978,115847 -k1,18670:22917675,16358124:3277 -h1,18670:30306900,16358124:0,411205,112570 -) -k1,18670:30537947,16358124:227770 -k1,18670:31297213,16358124:227769 -k1,18670:32583029,16358124:0 -) -(1,18671:6764466,17223204:25818563,513147,126483 -k1,18670:9371639,17223204:135155 -k1,18670:10703482,17223204:135156 -k1,18670:12289604,17223204:135155 -k1,18670:13491030,17223204:135155 -k1,18670:15875382,17223204:135156 -k1,18670:17708575,17223204:135155 -k1,18670:20718794,17223204:135155 -k1,18670:22346859,17223204:135155 -k1,18670:23548286,17223204:135156 -k1,18670:25426699,17223204:135155 -k1,18670:27129475,17223204:135155 -k1,18670:28283716,17223204:135156 -k1,18670:29591310,17223204:135155 -k1,18670:32583029,17223204:0 -) -(1,18671:6764466,18088284:25818563,505283,7863 -k1,18671:32583029,18088284:23910810 -g1,18671:32583029,18088284 -) -v1,18673:6764466,18773139:0,393216,0 -(1,18683:6764466,23216346:25818563,4836423,196608 -g1,18683:6764466,23216346 -g1,18683:6764466,23216346 -g1,18683:6567858,23216346 -(1,18683:6567858,23216346:0,4836423,196608 -r1,18711:32779637,23216346:26211779,5033031,196608 -k1,18683:6567857,23216346:-26211780 -) -(1,18683:6567858,23216346:26211779,4836423,196608 -[1,18683:6764466,23216346:25818563,4639815,0 -(1,18675:6764466,19000970:25818563,424439,112852 -(1,18674:6764466,19000970:0,0,0 -g1,18674:6764466,19000970 -g1,18674:6764466,19000970 -g1,18674:6436786,19000970 -(1,18674:6436786,19000970:0,0,0 -) -g1,18674:6764466,19000970 -) -k1,18675:6764466,19000970:0 -g1,18675:10747914,19000970 -g1,18675:11411822,19000970 -k1,18675:11411822,19000970:0 -h1,18675:13735500,19000970:0,0,0 -k1,18675:32583028,19000970:18847528 -g1,18675:32583028,19000970 -) -(1,18676:6764466,19685825:25818563,424439,112852 -h1,18676:6764466,19685825:0,0,0 -g1,18676:7096420,19685825 -g1,18676:7428374,19685825 -g1,18676:7760328,19685825 -g1,18676:8092282,19685825 -g1,18676:8424236,19685825 -g1,18676:8756190,19685825 -g1,18676:9088144,19685825 -g1,18676:11743776,19685825 -g1,18676:12407684,19685825 -g1,18676:14399408,19685825 -g1,18676:15063316,19685825 -g1,18676:17055040,19685825 -g1,18676:17718948,19685825 -g1,18676:18382856,19685825 -g1,18676:20374580,19685825 -h1,18676:20706534,19685825:0,0,0 -k1,18676:32583029,19685825:11876495 -g1,18676:32583029,19685825 -) -(1,18677:6764466,20370680:25818563,424439,112852 -h1,18677:6764466,20370680:0,0,0 -g1,18677:7096420,20370680 -g1,18677:7428374,20370680 -g1,18677:12739637,20370680 -g1,18677:13403545,20370680 -g1,18677:14399407,20370680 -h1,18677:14731361,20370680:0,0,0 -k1,18677:32583029,20370680:17851668 -g1,18677:32583029,20370680 -) -(1,18678:6764466,21055535:25818563,424439,112852 -h1,18678:6764466,21055535:0,0,0 -g1,18678:7096420,21055535 -g1,18678:7428374,21055535 -g1,18678:13403545,21055535 -g1,18678:14067453,21055535 -k1,18678:14067453,21055535:0 -h1,18678:17055038,21055535:0,0,0 -k1,18678:32583029,21055535:15527991 -g1,18678:32583029,21055535 -) -(1,18679:6764466,21740390:25818563,431045,112852 -h1,18679:6764466,21740390:0,0,0 -g1,18679:7096420,21740390 -g1,18679:7428374,21740390 -g1,18679:7760328,21740390 -g1,18679:8092282,21740390 -g1,18679:8424236,21740390 -g1,18679:8756190,21740390 -g1,18679:9088144,21740390 -g1,18679:9420098,21740390 -g1,18679:9752052,21740390 -g1,18679:10084006,21740390 -g1,18679:10415960,21740390 -g1,18679:10747914,21740390 -g1,18679:11079868,21740390 -g1,18679:13735500,21740390 -g1,18679:14399408,21740390 -g1,18679:17386994,21740390 -g1,18679:18050902,21740390 -g1,18679:21702396,21740390 -g1,18679:22698258,21740390 -g1,18679:23694120,21740390 -g1,18679:25353890,21740390 -k1,18679:25353890,21740390:0 -h1,18679:27013660,21740390:0,0,0 -k1,18679:32583029,21740390:5569369 -g1,18679:32583029,21740390 -) -(1,18680:6764466,22425245:25818563,424439,79822 -h1,18680:6764466,22425245:0,0,0 -g1,18680:7096420,22425245 -g1,18680:7428374,22425245 -g1,18680:7760328,22425245 -g1,18680:8092282,22425245 -g1,18680:8424236,22425245 -g1,18680:8756190,22425245 -g1,18680:9088144,22425245 -g1,18680:9420098,22425245 -g1,18680:9752052,22425245 -g1,18680:10084006,22425245 -g1,18680:10415960,22425245 -g1,18680:10747914,22425245 -g1,18680:11079868,22425245 -g1,18680:13071592,22425245 -g1,18680:13735500,22425245 -g1,18680:15727224,22425245 -h1,18680:16059178,22425245:0,0,0 -k1,18680:32583029,22425245:16523851 -g1,18680:32583029,22425245 -) -(1,18681:6764466,23110100:25818563,424439,106246 -h1,18681:6764466,23110100:0,0,0 -g1,18681:7096420,23110100 -g1,18681:7428374,23110100 -k1,18681:7428374,23110100:0 -h1,18681:14399406,23110100:0,0,0 -k1,18681:32583030,23110100:18183624 -g1,18681:32583030,23110100 -) -] -) -g1,18683:32583029,23216346 -g1,18683:6764466,23216346 -g1,18683:6764466,23216346 -g1,18683:32583029,23216346 -g1,18683:32583029,23216346 -) -h1,18683:6764466,23412954:0,0,0 -(1,18687:6764466,24278034:25818563,505283,126483 -h1,18686:6764466,24278034:983040,0,0 -g1,18686:8764624,24278034 -g1,18686:9421950,24278034 -g1,18686:10152676,24278034 -g1,18686:12072880,24278034 -g1,18686:12888147,24278034 -g1,18686:13675889,24278034 -g1,18686:16546365,24278034 -g1,18686:20407746,24278034 -g1,18686:21711257,24278034 -g1,18686:22658252,24278034 -g1,18686:24370707,24278034 -g1,18686:25221364,24278034 -g1,18686:26439678,24278034 -g1,18686:28292380,24278034 -k1,18687:32583029,24278034:3055296 -g1,18687:32583029,24278034 -) -] -g1,18687:32583029,24404517 -) -h1,18687:6630773,24404517:0,0,0 -v1,18690:6630773,25269597:0,393216,0 -(1,18693:6630773,34355178:25952256,9478797,0 -g1,18693:6630773,34355178 -g1,18693:6237557,34355178 -r1,18711:6368629,34355178:131072,9478797,0 -g1,18693:6567858,34355178 -g1,18693:6764466,34355178 -[1,18693:6764466,34355178:25818563,9478797,0 -(1,18691:6764466,25577895:25818563,701514,196608 -(1,18690:6764466,25577895:0,701514,196608 -r1,18711:7761522,25577895:997056,898122,196608 -k1,18690:6764466,25577895:-997056 -) -(1,18690:6764466,25577895:997056,701514,196608 -) -k1,18690:8043306,25577895:281784 -k1,18690:8370986,25577895:327680 -k1,18690:9998223,25577895:281783 -k1,18690:13101332,25577895:281784 -k1,18690:14042408,25577895:281784 -k1,18690:17165832,25577895:281783 -k1,18690:18099044,25577895:281784 -k1,18690:21555392,25577895:281784 -k1,18690:22938180,25577895:281783 -k1,18690:24729914,25577895:281784 -k1,18690:27641658,25577895:281784 -k1,18690:28539479,25577895:281783 -k1,18690:31649796,25577895:281784 -k1,18690:32583029,25577895:0 -) -(1,18691:6764466,26442975:25818563,513147,134348 -k1,18690:7361804,26442975:241478 -k1,18690:8991991,26442975:241479 -k1,18690:10658877,26442975:241478 -k1,18690:12635748,26442975:241478 -k1,18690:13563389,26442975:241479 -k1,18690:16494465,26442975:241478 -k1,18690:19812203,26442975:241478 -k1,18690:20712974,26442975:241479 -k1,18690:21973537,26442975:241478 -k1,18690:23953030,26442975:241478 -k1,18690:24853801,26442975:241479 -k1,18690:25451139,26442975:241478 -k1,18690:28203957,26442975:241478 -k1,18690:31224163,26442975:241479 -k1,18690:32227169,26442975:241478 -k1,18690:32583029,26442975:0 -) -(1,18691:6764466,27308055:25818563,505283,134348 -k1,18690:9556609,27308055:269007 -k1,18690:12460818,27308055:269006 -(1,18690:12460818,27308055:0,414482,115847 -r1,18711:13170796,27308055:709978,530329,115847 -k1,18690:12460818,27308055:-709978 -) -(1,18690:12460818,27308055:709978,414482,115847 -k1,18690:12460818,27308055:3277 -h1,18690:13167519,27308055:0,411205,112570 -) -k1,18690:13613473,27308055:269007 -k1,18690:14954648,27308055:269006 -k1,18690:16426896,27308055:269007 -k1,18690:19385500,27308055:269006 -k1,18690:20755512,27308055:269007 -k1,18690:22534468,27308055:269006 -k1,18690:26342419,27308055:269007 -k1,18690:28303565,27308055:269006 -k1,18690:29997980,27308055:269007 -k1,18690:31391584,27308055:269006 -k1,18690:32583029,27308055:0 -) -(1,18691:6764466,28173135:25818563,505283,126483 -k1,18690:9694227,28173135:210672 -k1,18690:10666427,28173135:210672 -(1,18690:10666427,28173135:0,452978,115847 -r1,18711:12783252,28173135:2116825,568825,115847 -k1,18690:10666427,28173135:-2116825 -) -(1,18690:10666427,28173135:2116825,452978,115847 -k1,18690:10666427,28173135:3277 -h1,18690:12779975,28173135:0,411205,112570 -) -k1,18690:13167594,28173135:210672 -k1,18690:14006101,28173135:210672 -k1,18690:15683469,28173135:210672 -k1,18690:17765194,28173135:210672 -k1,18690:19179108,28173135:210673 -k1,18690:22124597,28173135:210672 -k1,18690:22691129,28173135:210672 -k1,18690:26183189,28173135:210672 -k1,18690:26851958,28173135:210672 -k1,18690:28269803,28173135:210672 -k1,18690:31931601,28173135:210672 -k1,18690:32583029,28173135:0 -) -(1,18691:6764466,29038215:25818563,505283,126483 -k1,18690:8428659,29038215:267621 -k1,18690:9052140,29038215:267621 -k1,18690:12528403,29038215:267620 -k1,18690:15307364,29038215:267621 -k1,18690:16226413,29038215:267621 -k1,18690:17513119,29038215:267621 -k1,18690:19434213,29038215:267621 -k1,18690:22546096,29038215:267620 -k1,18690:23499879,29038215:267621 -k1,18690:25476024,29038215:267621 -k1,18690:26395073,29038215:267621 -k1,18690:27681778,29038215:267620 -k1,18690:30472535,29038215:267621 -k1,18690:31931601,29038215:267621 -k1,18690:32583029,29038215:0 -) -(1,18691:6764466,29903295:25818563,505283,134348 -k1,18690:7957121,29903295:173570 -k1,18690:11120442,29903295:173569 -k1,18690:11910050,29903295:173570 -k1,18690:13102704,29903295:173569 -k1,18690:14929747,29903295:173570 -k1,18690:16834778,29903295:173570 -k1,18690:18840734,29903295:173569 -k1,18690:20518355,29903295:173570 -k1,18690:21977741,29903295:173570 -k1,18690:23843450,29903295:173569 -k1,18690:25718990,29903295:173570 -k1,18690:27924175,29903295:173569 -k1,18690:29382251,29903295:173570 -k1,18690:32583029,29903295:0 -) -(1,18691:6764466,30768375:25818563,513147,134348 -k1,18690:9466788,30768375:274868 -k1,18690:11433797,30768375:274869 -k1,18690:15111294,30768375:274868 -k1,18690:16037591,30768375:274869 -k1,18690:17331544,30768375:274868 -k1,18690:20596165,30768375:274869 -k1,18690:23429559,30768375:274868 -k1,18690:24723512,30768375:274868 -k1,18690:26400851,30768375:274869 -(1,18690:26400851,30768375:0,414482,115847 -r1,18711:27462540,30768375:1061689,530329,115847 -k1,18690:26400851,30768375:-1061689 -) -(1,18690:26400851,30768375:1061689,414482,115847 -k1,18690:26400851,30768375:3277 -h1,18690:27459263,30768375:0,411205,112570 -) -k1,18690:27737408,30768375:274868 -k1,18690:31293009,30768375:274869 -k1,18690:32227169,30768375:274868 -k1,18690:32583029,30768375:0 -) -(1,18691:6764466,31633455:25818563,473825,7863 -k1,18691:32583029,31633455:23242998 -g1,18691:32583029,31633455 -) -(1,18693:6764466,32498535:25818563,513147,134348 -h1,18692:6764466,32498535:983040,0,0 -k1,18692:9634233,32498535:234564 -k1,18692:12202535,32498535:234565 -k1,18692:13979817,32498535:234564 -k1,18692:14873673,32498535:234564 -k1,18692:17936770,32498535:234564 -k1,18692:19190420,32498535:234565 -k1,18692:21509029,32498535:234564 -k1,18692:23256819,32498535:234564 -k1,18692:24439034,32498535:234564 -k1,18692:27481161,32498535:234565 -k1,18692:30557366,32498535:234564 -k1,18692:31443358,32498535:234564 -k1,18693:32583029,32498535:0 -) -(1,18693:6764466,33363615:25818563,513147,122846 -k1,18692:9111424,33363615:205897 -k1,18692:9848818,33363615:205897 -k1,18692:11909385,33363615:205898 -k1,18692:12924652,33363615:205897 -k1,18692:16156346,33363615:205897 -(1,18692:16156346,33363615:0,452978,122846 -r1,18711:18624883,33363615:2468537,575824,122846 -k1,18692:16156346,33363615:-2468537 -) -(1,18692:16156346,33363615:2468537,452978,122846 -k1,18692:16156346,33363615:3277 -h1,18692:18621606,33363615:0,411205,112570 -) -k1,18692:19004450,33363615:205897 -(1,18692:19004450,33363615:0,459977,115847 -r1,18711:23231546,33363615:4227096,575824,115847 -k1,18692:19004450,33363615:-4227096 -) -(1,18692:19004450,33363615:4227096,459977,115847 -k1,18692:19004450,33363615:3277 -h1,18692:23228269,33363615:0,411205,112570 -) -k1,18692:23437444,33363615:205898 -k1,18692:24834786,33363615:205897 -(1,18692:24834786,33363615:0,459977,115847 -r1,18711:29413594,33363615:4578808,575824,115847 -k1,18692:24834786,33363615:-4578808 -) -(1,18692:24834786,33363615:4578808,459977,115847 -k1,18692:24834786,33363615:3277 -h1,18692:29410317,33363615:0,411205,112570 -) -k1,18692:29793161,33363615:205897 -k1,18693:32583029,33363615:0 -) -(1,18693:6764466,34228695:25818563,505283,126483 -(1,18692:6764466,34228695:0,459977,115847 -r1,18711:10991562,34228695:4227096,575824,115847 -k1,18692:6764466,34228695:-4227096 -) -(1,18692:6764466,34228695:4227096,459977,115847 -k1,18692:6764466,34228695:3277 -h1,18692:10988285,34228695:0,411205,112570 -) -g1,18692:11190791,34228695 -g1,18692:14018669,34228695 -g1,18692:15684594,34228695 -(1,18692:15684594,34228695:0,452978,115847 -r1,18711:17801419,34228695:2116825,568825,115847 -k1,18692:15684594,34228695:-2116825 -) -(1,18692:15684594,34228695:2116825,452978,115847 -k1,18692:15684594,34228695:3277 -h1,18692:17798142,34228695:0,411205,112570 -) -g1,18692:18000648,34228695 -g1,18692:19391322,34228695 -g1,18692:20609636,34228695 -(1,18692:20609636,34228695:0,414482,115847 -r1,18711:21319614,34228695:709978,530329,115847 -k1,18692:20609636,34228695:-709978 -) -(1,18692:20609636,34228695:709978,414482,115847 -k1,18692:20609636,34228695:3277 -h1,18692:21316337,34228695:0,411205,112570 -) -g1,18692:21518843,34228695 -k1,18693:32583029,34228695:8322160 -g1,18693:32583029,34228695 -) -] -g1,18693:32583029,34355178 -) -h1,18693:6630773,34355178:0,0,0 -(1,18700:6630773,35220258:25952256,513147,134348 -h1,18699:6630773,35220258:983040,0,0 -k1,18699:9109148,35220258:298648 -k1,18699:14233866,35220258:298647 -k1,18699:15191806,35220258:298648 -k1,18699:18318986,35220258:298647 -k1,18699:20227854,35220258:298648 -k1,18699:22758003,35220258:298648 -k1,18699:24640655,35220258:298647 -k1,18699:27931022,35220258:298648 -k1,18699:28888961,35220258:298647 -k1,18699:30884991,35220258:298648 -k1,18699:32583029,35220258:0 -) -(1,18700:6630773,36085338:25952256,513147,134348 -k1,18699:7903940,36085338:254082 -k1,18699:9441217,36085338:254082 -k1,18699:12502862,36085338:254083 -k1,18699:14840989,36085338:254082 -k1,18699:15626568,36085338:254082 -k1,18699:18031542,36085338:254082 -k1,18699:18498562,36085338:254028 -k1,18699:20032562,36085338:254082 -k1,18699:21684527,36085338:254082 -k1,18699:22294469,36085338:254082 -k1,18699:25310895,36085338:254083 -k1,18699:28400064,36085338:254082 -k1,18699:29010006,36085338:254082 -k1,18699:32583029,36085338:0 -) -(1,18700:6630773,36950418:25952256,513147,134348 -k1,18699:8595473,36950418:252244 -k1,18699:9499146,36950418:252245 -k1,18699:11140753,36950418:252244 -k1,18699:13128390,36950418:252244 -(1,18699:13128390,36950418:0,452978,115847 -r1,18711:14893503,36950418:1765113,568825,115847 -k1,18699:13128390,36950418:-1765113 -) -(1,18699:13128390,36950418:1765113,452978,115847 -k1,18699:13128390,36950418:3277 -h1,18699:14890226,36950418:0,411205,112570 -) -k1,18699:15319417,36950418:252244 -k1,18699:16945243,36950418:252191 -k1,18699:17728985,36950418:252245 -k1,18699:18337089,36950418:252244 -k1,18699:21845162,36950418:252244 -k1,18699:23381913,36950418:252245 -k1,18699:27951014,36950418:252244 -k1,18699:30540272,36950418:252244 -k1,18699:32583029,36950418:0 -) -(1,18700:6630773,37815498:25952256,513147,134348 -k1,18699:10257317,37815498:195734 -k1,18699:11472136,37815498:195734 -k1,18699:14231638,37815498:195734 -k1,18699:16122789,37815498:195735 -k1,18699:16977815,37815498:195734 -k1,18699:19818582,37815498:195734 -k1,18699:22460120,37815498:195734 -k1,18699:23307282,37815498:195734 -k1,18699:24522101,37815498:195734 -k1,18699:27910750,37815498:195735 -k1,18699:31000554,37815498:195734 -k1,18699:31812326,37815498:195734 -k1,18699:32583029,37815498:0 -) -(1,18700:6630773,38680578:25952256,513147,126483 -k1,18699:9326869,38680578:181480 -k1,18699:10159777,38680578:181480 -k1,18699:12639605,38680578:181480 -k1,18699:13840170,38680578:181480 -k1,18699:17158203,38680578:181480 -k1,18699:18027156,38680578:181480 -k1,18699:19776257,38680578:181480 -k1,18699:20976822,38680578:181480 -k1,18699:24066790,38680578:181480 -k1,18699:24907562,38680578:181480 -k1,18699:27661330,38680578:181480 -k1,18699:31914562,38680578:181480 -k1,18699:32583029,38680578:0 -) -(1,18700:6630773,39545658:25952256,513147,134348 -k1,18699:9422045,39545658:179007 -k1,18699:11384286,39545658:179006 -k1,18699:13298686,39545658:179007 -k1,18699:14680934,39545658:179007 -k1,18699:16051386,39545658:179007 -k1,18699:18432402,39545658:179006 -k1,18699:21396034,39545658:179007 -k1,18699:22033138,39545658:179007 -k1,18699:22743641,39545658:179006 -k1,18699:23581940,39545658:179007 -k1,18699:26204129,39545658:179007 -k1,18699:27034564,39545658:179007 -k1,18699:28490867,39545658:179006 -k1,18699:29688959,39545658:179007 -k1,18699:32583029,39545658:0 -) -(1,18700:6630773,40410738:25952256,505283,134348 -k1,18699:9515517,40410738:204321 -k1,18699:11113789,40410738:204321 -k1,18699:12337195,40410738:204321 -k1,18699:15160990,40410738:204321 -k1,18699:16636709,40410738:204321 -k1,18699:19825540,40410738:204321 -k1,18699:20561357,40410738:204320 -k1,18699:21417106,40410738:204321 -k1,18699:23017999,40410738:204321 -k1,18699:25668124,40410738:204321 -k1,18699:26523873,40410738:204321 -k1,18699:27084054,40410738:204321 -k1,18699:29947826,40410738:204321 -k1,18699:32583029,40410738:0 -) -(1,18700:6630773,41275818:25952256,513147,134348 -k1,18699:7973496,41275818:170284 -k1,18699:10678714,41275818:170285 -k1,18699:12045685,41275818:170284 -k1,18699:13712156,41275818:170284 -k1,18699:15750872,41275818:170285 -k1,18699:19275289,41275818:170284 -k1,18699:19801433,41275818:170284 -k1,18699:21361081,41275818:170285 -k1,18699:23407661,41275818:170284 -k1,18699:26939942,41275818:170284 -k1,18699:29738876,41275818:170285 -k1,18699:31298523,41275818:170284 -k1,18699:32583029,41275818:0 -) -(1,18700:6630773,42140898:25952256,505283,7863 -g1,18699:9497973,42140898 -g1,18699:10467905,42140898 -g1,18699:13239422,42140898 -g1,18699:15118994,42140898 -g1,18699:16001108,42140898 -k1,18700:32583029,42140898:14421199 -g1,18700:32583029,42140898 -) -v1,18702:6630773,42825753:0,393216,0 -(1,18711:6630773,45194577:25952256,2762040,196608 -g1,18711:6630773,45194577 -g1,18711:6630773,45194577 -g1,18711:6434165,45194577 -(1,18711:6434165,45194577:0,2762040,196608 -r1,18711:32779637,45194577:26345472,2958648,196608 -k1,18711:6434165,45194577:-26345472 -) -(1,18711:6434165,45194577:26345472,2762040,196608 -[1,18711:6630773,45194577:25952256,2565432,0 -(1,18704:6630773,43053584:25952256,424439,79822 -(1,18703:6630773,43053584:0,0,0 -g1,18703:6630773,43053584 -g1,18703:6630773,43053584 -g1,18703:6303093,43053584 -(1,18703:6303093,43053584:0,0,0 -) -g1,18703:6630773,43053584 -) -k1,18704:6630773,43053584:0 -h1,18704:11278128,43053584:0,0,0 -k1,18704:32583028,43053584:21304900 -g1,18704:32583028,43053584 -) -(1,18705:6630773,43738439:25952256,407923,9908 -h1,18705:6630773,43738439:0,0,0 -g1,18705:7294681,43738439 -g1,18705:8290543,43738439 -h1,18705:9618359,43738439:0,0,0 -k1,18705:32583029,43738439:22964670 -g1,18705:32583029,43738439 -) -(1,18706:6630773,44423294:25952256,424439,112852 -h1,18706:6630773,44423294:0,0,0 -g1,18706:7294681,44423294 -g1,18706:8290543,44423294 -g1,18706:9286405,44423294 -g1,18706:9950313,44423294 -g1,18706:11278129,44423294 -g1,18706:11942037,44423294 -g1,18706:13601807,44423294 -g1,18706:14265715,44423294 -g1,18706:19908933,44423294 -g1,18706:21568703,44423294 -g1,18706:22232611,44423294 -g1,18706:23228473,44423294 -g1,18706:24224335,44423294 -g1,18706:24888243,44423294 -g1,18706:28207783,44423294 -g1,18706:28871691,44423294 -h1,18706:29535599,44423294:0,0,0 -k1,18706:32583029,44423294:3047430 -g1,18706:32583029,44423294 -) -(1,18707:6630773,45108149:25952256,431045,86428 -h1,18707:6630773,45108149:0,0,0 -g1,18707:7958589,45108149 -g1,18707:8954451,45108149 -g1,18707:13601806,45108149 -h1,18707:14265714,45108149:0,0,0 -k1,18707:32583030,45108149:18317316 -g1,18707:32583030,45108149 -) -] -) -g1,18711:32583029,45194577 -g1,18711:6630773,45194577 -g1,18711:6630773,45194577 -g1,18711:32583029,45194577 -g1,18711:32583029,45194577 -) -] -(1,18711:32583029,45706769:0,0,0 -g1,18711:32583029,45706769 -) -) -] -(1,18711:6630773,47279633:25952256,0,0 -h1,18711:6630773,47279633:25952256,0,0 -) -] -(1,18711:4262630,4025873:0,0,0 -[1,18711:-473656,4025873:0,0,0 -(1,18711:-473656,-710413:0,0,0 -(1,18711:-473656,-710413:0,0,0 -g1,18711:-473656,-710413 -) -g1,18711:-473656,-710413 +k1,18709:3078556,49800853:-34777008 +) +] +g1,18709:6630773,4812305 +k1,18709:21386205,4812305:13560055 +g1,18709:21999622,4812305 +g1,18709:25611966,4812305 +g1,18709:28956923,4812305 +g1,18709:29772190,4812305 +) +) +] +[1,18709:6630773,45706769:25952256,40108032,0 +(1,18709:6630773,45706769:25952256,40108032,0 +(1,18709:6630773,45706769:0,0,0 +g1,18709:6630773,45706769 +) +[1,18709:6630773,45706769:25952256,40108032,0 +v1,18685:6630773,6254097:0,393216,0 +(1,18685:6630773,24404517:25952256,18543636,0 +g1,18685:6630773,24404517 +g1,18685:6237557,24404517 +r1,18709:6368629,24404517:131072,18543636,0 +g1,18685:6567858,24404517 +g1,18685:6764466,24404517 +[1,18685:6764466,24404517:25818563,18543636,0 +(1,18655:6764466,6374028:25818563,513147,134348 +k1,18654:8877578,6374028:244681 +k1,18654:10545047,6374028:244682 +k1,18654:11145588,6374028:244681 +k1,18654:12780288,6374028:244681 +k1,18654:13711132,6374028:244682 +k1,18654:17028141,6374028:244681 +k1,18654:18220473,6374028:244681 +(1,18654:18220473,6374028:0,452978,115847 +r1,18709:19633874,6374028:1413401,568825,115847 +k1,18654:18220473,6374028:-1413401 +) +(1,18654:18220473,6374028:1413401,452978,115847 +k1,18654:18220473,6374028:3277 +h1,18654:19630597,6374028:0,411205,112570 +) +k1,18654:19878555,6374028:244681 +k1,18654:20774665,6374028:244682 +k1,18654:22119040,6374028:244681 +k1,18654:25059217,6374028:244681 +(1,18654:25059217,6374028:0,452978,115847 +r1,18709:27879466,6374028:2820249,568825,115847 +k1,18654:25059217,6374028:-2820249 +) +(1,18654:25059217,6374028:2820249,452978,115847 +k1,18654:25059217,6374028:3277 +h1,18654:27876189,6374028:0,411205,112570 +) +k1,18654:28124148,6374028:244682 +k1,18654:29762780,6374028:244681 +(1,18654:29762780,6374028:0,452978,115847 +r1,18709:32583029,6374028:2820249,568825,115847 +k1,18654:29762780,6374028:-2820249 +) +(1,18654:29762780,6374028:2820249,452978,115847 +g1,18654:31172904,6374028 +g1,18654:32228040,6374028 +h1,18654:32579752,6374028:0,411205,112570 +) +k1,18654:32583029,6374028:0 +) +(1,18655:6764466,7239108:25818563,505283,126483 +g1,18654:9168982,7239108 +g1,18654:10054373,7239108 +g1,18654:11272687,7239108 +g1,18654:14677937,7239108 +g1,18654:16073853,7239108 +g1,18654:17724049,7239108 +g1,18654:18989549,7239108 +g1,18654:21437974,7239108 +g1,18654:22168700,7239108 +g1,18654:23054091,7239108 +g1,18654:23869358,7239108 +g1,18654:25087672,7239108 +g1,18654:27948318,7239108 +k1,18655:32583029,7239108:2726958 +g1,18655:32583029,7239108 +) +v1,18657:6764466,7923963:0,393216,0 +(1,18665:6764466,10971036:25818563,3440289,196608 +g1,18665:6764466,10971036 +g1,18665:6764466,10971036 +g1,18665:6567858,10971036 +(1,18665:6567858,10971036:0,3440289,196608 +r1,18709:32779637,10971036:26211779,3636897,196608 +k1,18665:6567857,10971036:-26211780 +) +(1,18665:6567858,10971036:26211779,3440289,196608 +[1,18665:6764466,10971036:25818563,3243681,0 +(1,18659:6764466,8151794:25818563,424439,112852 +(1,18658:6764466,8151794:0,0,0 +g1,18658:6764466,8151794 +g1,18658:6764466,8151794 +g1,18658:6436786,8151794 +(1,18658:6436786,8151794:0,0,0 +) +g1,18658:6764466,8151794 +) +k1,18659:6764466,8151794:0 +g1,18659:10747914,8151794 +g1,18659:11411822,8151794 +k1,18659:11411822,8151794:0 +h1,18659:13735500,8151794:0,0,0 +k1,18659:32583028,8151794:18847528 +g1,18659:32583028,8151794 +) +(1,18660:6764466,8836649:25818563,424439,112852 +h1,18660:6764466,8836649:0,0,0 +g1,18660:7096420,8836649 +g1,18660:7428374,8836649 +g1,18660:7760328,8836649 +g1,18660:8092282,8836649 +g1,18660:8424236,8836649 +g1,18660:8756190,8836649 +g1,18660:9088144,8836649 +g1,18660:11743776,8836649 +g1,18660:12407684,8836649 +g1,18660:14399408,8836649 +g1,18660:15063316,8836649 +g1,18660:17055040,8836649 +g1,18660:17718948,8836649 +g1,18660:18382856,8836649 +g1,18660:20374580,8836649 +h1,18660:20706534,8836649:0,0,0 +k1,18660:32583029,8836649:11876495 +g1,18660:32583029,8836649 +) +(1,18661:6764466,9521504:25818563,424439,112852 +h1,18661:6764466,9521504:0,0,0 +g1,18661:7096420,9521504 +g1,18661:7428374,9521504 +g1,18661:12739637,9521504 +g1,18661:13403545,9521504 +g1,18661:14399407,9521504 +h1,18661:14731361,9521504:0,0,0 +k1,18661:32583029,9521504:17851668 +g1,18661:32583029,9521504 +) +(1,18662:6764466,10206359:25818563,424439,112852 +h1,18662:6764466,10206359:0,0,0 +g1,18662:7096420,10206359 +g1,18662:7428374,10206359 +g1,18662:12739637,10206359 +g1,18662:13403545,10206359 +g1,18662:14067453,10206359 +g1,18662:15395269,10206359 +g1,18662:18382855,10206359 +g1,18662:19046763,10206359 +g1,18662:20042625,10206359 +g1,18662:21370441,10206359 +g1,18662:22366303,10206359 +g1,18662:23694119,10206359 +g1,18662:26017797,10206359 +g1,18662:26681705,10206359 +k1,18662:26681705,10206359:0 +h1,18662:29669290,10206359:0,0,0 +k1,18662:32583029,10206359:2913739 +g1,18662:32583029,10206359 +) +(1,18663:6764466,10891214:25818563,424439,79822 +h1,18663:6764466,10891214:0,0,0 +g1,18663:7096420,10891214 +g1,18663:7428374,10891214 +g1,18663:7760328,10891214 +g1,18663:8092282,10891214 +g1,18663:8424236,10891214 +g1,18663:8756190,10891214 +g1,18663:9088144,10891214 +g1,18663:9420098,10891214 +g1,18663:9752052,10891214 +g1,18663:10084006,10891214 +g1,18663:10415960,10891214 +g1,18663:10747914,10891214 +g1,18663:11079868,10891214 +g1,18663:12739638,10891214 +g1,18663:13403546,10891214 +h1,18663:14731362,10891214:0,0,0 +k1,18663:32583030,10891214:17851668 +g1,18663:32583030,10891214 +) +] +) +g1,18665:32583029,10971036 +g1,18665:6764466,10971036 +g1,18665:6764466,10971036 +g1,18665:32583029,10971036 +g1,18665:32583029,10971036 +) +h1,18665:6764466,11167644:0,0,0 +(1,18669:6764466,12032724:25818563,505283,126483 +h1,18668:6764466,12032724:983040,0,0 +k1,18668:8380081,12032724:144987 +k1,18668:10107162,12032724:145042 +k1,18668:12882163,12032724:145041 +k1,18668:16011714,12032724:145041 +k1,18668:16688252,12032724:145041 +k1,18668:17484722,12032724:145042 +k1,18668:18821208,12032724:145041 +k1,18668:19985334,12032724:145041 +k1,18668:23162726,12032724:145041 +k1,18668:25317757,12032724:145042 +k1,18668:26481883,12032724:145041 +k1,18668:27726618,12032724:145041 +k1,18668:28523087,12032724:145041 +(1,18668:28523087,12032724:0,452978,115847 +r1,18709:30288200,12032724:1765113,568825,115847 +k1,18668:28523087,12032724:-1765113 +) +(1,18668:28523087,12032724:1765113,452978,115847 +k1,18668:28523087,12032724:3277 +h1,18668:30284923,12032724:0,411205,112570 +) +k1,18668:30606912,12032724:145042 +k1,18668:31379788,12032724:145041 +k1,18668:32583029,12032724:0 +) +(1,18669:6764466,12897804:25818563,513147,134348 +k1,18668:9935401,12897804:186425 +k1,18668:10579922,12897804:186424 +k1,18668:11297844,12897804:186425 +k1,18668:12550539,12897804:186424 +k1,18668:15366924,12897804:186425 +k1,18668:16204776,12897804:186424 +k1,18668:18595177,12897804:186425 +k1,18668:19137461,12897804:186424 +k1,18668:21403999,12897804:186425 +k1,18668:22249715,12897804:186424 +k1,18668:24144008,12897804:186425 +k1,18668:26632712,12897804:186424 +k1,18668:28511277,12897804:186425 +k1,18668:32583029,12897804:0 +) +(1,18669:6764466,13762884:25818563,513147,134348 +k1,18668:9615256,13762884:191994 +k1,18668:10568778,13762884:191994 +k1,18668:13555884,13762884:191995 +k1,18668:15256517,13762884:191994 +k1,18668:16717288,13762884:191994 +k1,18668:18884537,13762884:191994 +k1,18668:24262396,13762884:191995 +k1,18668:27389092,13762884:191994 +k1,18668:29762780,13762884:191994 +(1,18668:29762780,13762884:0,452978,115847 +r1,18709:32583029,13762884:2820249,568825,115847 +k1,18668:29762780,13762884:-2820249 +) +(1,18668:29762780,13762884:2820249,452978,115847 +g1,18668:31524616,13762884 +g1,18668:32228040,13762884 +h1,18668:32579752,13762884:0,411205,112570 +) +k1,18668:32583029,13762884:0 +) +(1,18669:6764466,14627964:25818563,513147,134348 +k1,18668:8878166,14627964:197427 +k1,18668:9431453,14627964:197427 +k1,18668:10982854,14627964:197427 +k1,18668:12896669,14627964:197427 +k1,18668:14955974,14627964:197427 +k1,18668:16352055,14627964:197427 +k1,18668:18765910,14627964:197427 +k1,18668:20144296,14627964:197427 +k1,18668:21001015,14627964:197427 +k1,18668:23540699,14627964:197427 +k1,18668:26368086,14627964:197427 +k1,18668:30401335,14627964:197427 +k1,18668:32583029,14627964:0 +) +(1,18669:6764466,15493044:25818563,505283,134348 +k1,18668:8200139,15493044:166896 +k1,18668:9018463,15493044:166896 +(1,18668:9018463,15493044:0,414482,115847 +r1,18709:9728441,15493044:709978,530329,115847 +k1,18668:9018463,15493044:-709978 +) +(1,18668:9018463,15493044:709978,414482,115847 +k1,18668:9018463,15493044:3277 +h1,18668:9725164,15493044:0,411205,112570 +) +k1,18668:10069007,15493044:166896 +k1,18668:11911003,15493044:166896 +k1,18668:13096984,15493044:166896 +k1,18668:14971748,15493044:166896 +k1,18668:16330090,15493044:166897 +(1,18668:16330090,15493044:0,414482,115847 +r1,18709:20557186,15493044:4227096,530329,115847 +k1,18668:16330090,15493044:-4227096 +) +(1,18668:16330090,15493044:4227096,414482,115847 +g1,18668:18443638,15493044 +g1,18668:19147062,15493044 +h1,18668:20553909,15493044:0,411205,112570 +) +k1,18668:20724082,15493044:166896 +k1,18668:23401007,15493044:166896 +k1,18668:24586988,15493044:166896 +k1,18668:27592904,15493044:166896 +k1,18668:30503792,15493044:166896 +k1,18668:32051532,15493044:166896 +k1,18668:32583029,15493044:0 +) +(1,18669:6764466,16358124:25818563,505283,134348 +k1,18668:7348095,16358124:227769 +k1,18668:11331733,16358124:227770 +k1,18668:14544012,16358124:227769 +k1,18668:15423210,16358124:227770 +k1,18668:19151912,16358124:227769 +k1,18668:21405400,16358124:227770 +k1,18668:22917675,16358124:227769 +(1,18668:22917675,16358124:0,452978,115847 +r1,18709:30310177,16358124:7392502,568825,115847 +k1,18668:22917675,16358124:-7392502 +) +(1,18668:22917675,16358124:7392502,452978,115847 +k1,18668:22917675,16358124:3277 +h1,18668:30306900,16358124:0,411205,112570 +) +k1,18668:30537947,16358124:227770 +k1,18668:31297213,16358124:227769 +k1,18668:32583029,16358124:0 +) +(1,18669:6764466,17223204:25818563,513147,126483 +k1,18668:9371639,17223204:135155 +k1,18668:10703482,17223204:135156 +k1,18668:12289604,17223204:135155 +k1,18668:13491030,17223204:135155 +k1,18668:15875382,17223204:135156 +k1,18668:17708575,17223204:135155 +k1,18668:20718794,17223204:135155 +k1,18668:22346859,17223204:135155 +k1,18668:23548286,17223204:135156 +k1,18668:25426699,17223204:135155 +k1,18668:27129475,17223204:135155 +k1,18668:28283716,17223204:135156 +k1,18668:29591310,17223204:135155 +k1,18668:32583029,17223204:0 +) +(1,18669:6764466,18088284:25818563,505283,7863 +k1,18669:32583029,18088284:23910810 +g1,18669:32583029,18088284 +) +v1,18671:6764466,18773139:0,393216,0 +(1,18681:6764466,23216346:25818563,4836423,196608 +g1,18681:6764466,23216346 +g1,18681:6764466,23216346 +g1,18681:6567858,23216346 +(1,18681:6567858,23216346:0,4836423,196608 +r1,18709:32779637,23216346:26211779,5033031,196608 +k1,18681:6567857,23216346:-26211780 +) +(1,18681:6567858,23216346:26211779,4836423,196608 +[1,18681:6764466,23216346:25818563,4639815,0 +(1,18673:6764466,19000970:25818563,424439,112852 +(1,18672:6764466,19000970:0,0,0 +g1,18672:6764466,19000970 +g1,18672:6764466,19000970 +g1,18672:6436786,19000970 +(1,18672:6436786,19000970:0,0,0 +) +g1,18672:6764466,19000970 +) +k1,18673:6764466,19000970:0 +g1,18673:10747914,19000970 +g1,18673:11411822,19000970 +k1,18673:11411822,19000970:0 +h1,18673:13735500,19000970:0,0,0 +k1,18673:32583028,19000970:18847528 +g1,18673:32583028,19000970 +) +(1,18674:6764466,19685825:25818563,424439,112852 +h1,18674:6764466,19685825:0,0,0 +g1,18674:7096420,19685825 +g1,18674:7428374,19685825 +g1,18674:7760328,19685825 +g1,18674:8092282,19685825 +g1,18674:8424236,19685825 +g1,18674:8756190,19685825 +g1,18674:9088144,19685825 +g1,18674:11743776,19685825 +g1,18674:12407684,19685825 +g1,18674:14399408,19685825 +g1,18674:15063316,19685825 +g1,18674:17055040,19685825 +g1,18674:17718948,19685825 +g1,18674:18382856,19685825 +g1,18674:20374580,19685825 +h1,18674:20706534,19685825:0,0,0 +k1,18674:32583029,19685825:11876495 +g1,18674:32583029,19685825 +) +(1,18675:6764466,20370680:25818563,424439,112852 +h1,18675:6764466,20370680:0,0,0 +g1,18675:7096420,20370680 +g1,18675:7428374,20370680 +g1,18675:12739637,20370680 +g1,18675:13403545,20370680 +g1,18675:14399407,20370680 +h1,18675:14731361,20370680:0,0,0 +k1,18675:32583029,20370680:17851668 +g1,18675:32583029,20370680 +) +(1,18676:6764466,21055535:25818563,424439,112852 +h1,18676:6764466,21055535:0,0,0 +g1,18676:7096420,21055535 +g1,18676:7428374,21055535 +g1,18676:13403545,21055535 +g1,18676:14067453,21055535 +k1,18676:14067453,21055535:0 +h1,18676:17055038,21055535:0,0,0 +k1,18676:32583029,21055535:15527991 +g1,18676:32583029,21055535 +) +(1,18677:6764466,21740390:25818563,431045,112852 +h1,18677:6764466,21740390:0,0,0 +g1,18677:7096420,21740390 +g1,18677:7428374,21740390 +g1,18677:7760328,21740390 +g1,18677:8092282,21740390 +g1,18677:8424236,21740390 +g1,18677:8756190,21740390 +g1,18677:9088144,21740390 +g1,18677:9420098,21740390 +g1,18677:9752052,21740390 +g1,18677:10084006,21740390 +g1,18677:10415960,21740390 +g1,18677:10747914,21740390 +g1,18677:11079868,21740390 +g1,18677:13735500,21740390 +g1,18677:14399408,21740390 +g1,18677:17386994,21740390 +g1,18677:18050902,21740390 +g1,18677:21702396,21740390 +g1,18677:22698258,21740390 +g1,18677:23694120,21740390 +g1,18677:25353890,21740390 +k1,18677:25353890,21740390:0 +h1,18677:27013660,21740390:0,0,0 +k1,18677:32583029,21740390:5569369 +g1,18677:32583029,21740390 +) +(1,18678:6764466,22425245:25818563,424439,79822 +h1,18678:6764466,22425245:0,0,0 +g1,18678:7096420,22425245 +g1,18678:7428374,22425245 +g1,18678:7760328,22425245 +g1,18678:8092282,22425245 +g1,18678:8424236,22425245 +g1,18678:8756190,22425245 +g1,18678:9088144,22425245 +g1,18678:9420098,22425245 +g1,18678:9752052,22425245 +g1,18678:10084006,22425245 +g1,18678:10415960,22425245 +g1,18678:10747914,22425245 +g1,18678:11079868,22425245 +g1,18678:13071592,22425245 +g1,18678:13735500,22425245 +g1,18678:15727224,22425245 +h1,18678:16059178,22425245:0,0,0 +k1,18678:32583029,22425245:16523851 +g1,18678:32583029,22425245 +) +(1,18679:6764466,23110100:25818563,424439,106246 +h1,18679:6764466,23110100:0,0,0 +g1,18679:7096420,23110100 +g1,18679:7428374,23110100 +k1,18679:7428374,23110100:0 +h1,18679:14399406,23110100:0,0,0 +k1,18679:32583030,23110100:18183624 +g1,18679:32583030,23110100 +) +] +) +g1,18681:32583029,23216346 +g1,18681:6764466,23216346 +g1,18681:6764466,23216346 +g1,18681:32583029,23216346 +g1,18681:32583029,23216346 +) +h1,18681:6764466,23412954:0,0,0 +(1,18685:6764466,24278034:25818563,505283,126483 +h1,18684:6764466,24278034:983040,0,0 +g1,18684:8764624,24278034 +g1,18684:9421950,24278034 +g1,18684:10152676,24278034 +g1,18684:12072880,24278034 +g1,18684:12888147,24278034 +g1,18684:13675889,24278034 +g1,18684:16546365,24278034 +g1,18684:20407746,24278034 +g1,18684:21711257,24278034 +g1,18684:22658252,24278034 +g1,18684:24370707,24278034 +g1,18684:25221364,24278034 +g1,18684:26439678,24278034 +g1,18684:28292380,24278034 +k1,18685:32583029,24278034:3055296 +g1,18685:32583029,24278034 +) +] +g1,18685:32583029,24404517 +) +h1,18685:6630773,24404517:0,0,0 +v1,18688:6630773,25269597:0,393216,0 +(1,18691:6630773,34355178:25952256,9478797,0 +g1,18691:6630773,34355178 +g1,18691:6237557,34355178 +r1,18709:6368629,34355178:131072,9478797,0 +g1,18691:6567858,34355178 +g1,18691:6764466,34355178 +[1,18691:6764466,34355178:25818563,9478797,0 +(1,18689:6764466,25577895:25818563,701514,196608 +(1,18688:6764466,25577895:0,701514,196608 +r1,18709:7761522,25577895:997056,898122,196608 +k1,18688:6764466,25577895:-997056 +) +(1,18688:6764466,25577895:997056,701514,196608 +) +k1,18688:8043306,25577895:281784 +k1,18688:8370986,25577895:327680 +k1,18688:9998223,25577895:281783 +k1,18688:13101332,25577895:281784 +k1,18688:14042408,25577895:281784 +k1,18688:17165832,25577895:281783 +k1,18688:18099044,25577895:281784 +k1,18688:21555392,25577895:281784 +k1,18688:22938180,25577895:281783 +k1,18688:24729914,25577895:281784 +k1,18688:27641658,25577895:281784 +k1,18688:28539479,25577895:281783 +k1,18688:31649796,25577895:281784 +k1,18688:32583029,25577895:0 +) +(1,18689:6764466,26442975:25818563,513147,134348 +k1,18688:7361804,26442975:241478 +k1,18688:8991991,26442975:241479 +k1,18688:10658877,26442975:241478 +k1,18688:12635748,26442975:241478 +k1,18688:13563389,26442975:241479 +k1,18688:16494465,26442975:241478 +k1,18688:19812203,26442975:241478 +k1,18688:20712974,26442975:241479 +k1,18688:21973537,26442975:241478 +k1,18688:23953030,26442975:241478 +k1,18688:24853801,26442975:241479 +k1,18688:25451139,26442975:241478 +k1,18688:28203957,26442975:241478 +k1,18688:31224163,26442975:241479 +k1,18688:32227169,26442975:241478 +k1,18688:32583029,26442975:0 +) +(1,18689:6764466,27308055:25818563,505283,134348 +k1,18688:9556609,27308055:269007 +k1,18688:12460818,27308055:269006 +(1,18688:12460818,27308055:0,414482,115847 +r1,18709:13170796,27308055:709978,530329,115847 +k1,18688:12460818,27308055:-709978 +) +(1,18688:12460818,27308055:709978,414482,115847 +k1,18688:12460818,27308055:3277 +h1,18688:13167519,27308055:0,411205,112570 +) +k1,18688:13613473,27308055:269007 +k1,18688:14954648,27308055:269006 +k1,18688:16426896,27308055:269007 +k1,18688:19385500,27308055:269006 +k1,18688:20755512,27308055:269007 +k1,18688:22534468,27308055:269006 +k1,18688:26342419,27308055:269007 +k1,18688:28303565,27308055:269006 +k1,18688:29997980,27308055:269007 +k1,18688:31391584,27308055:269006 +k1,18688:32583029,27308055:0 +) +(1,18689:6764466,28173135:25818563,505283,126483 +k1,18688:9694227,28173135:210672 +k1,18688:10666427,28173135:210672 +(1,18688:10666427,28173135:0,452978,115847 +r1,18709:12783252,28173135:2116825,568825,115847 +k1,18688:10666427,28173135:-2116825 +) +(1,18688:10666427,28173135:2116825,452978,115847 +k1,18688:10666427,28173135:3277 +h1,18688:12779975,28173135:0,411205,112570 +) +k1,18688:13167594,28173135:210672 +k1,18688:14006101,28173135:210672 +k1,18688:15683469,28173135:210672 +k1,18688:17765194,28173135:210672 +k1,18688:19179108,28173135:210673 +k1,18688:22124597,28173135:210672 +k1,18688:22691129,28173135:210672 +k1,18688:26183189,28173135:210672 +k1,18688:26851958,28173135:210672 +k1,18688:28269803,28173135:210672 +k1,18688:31931601,28173135:210672 +k1,18688:32583029,28173135:0 +) +(1,18689:6764466,29038215:25818563,505283,126483 +k1,18688:8428659,29038215:267621 +k1,18688:9052140,29038215:267621 +k1,18688:12528403,29038215:267620 +k1,18688:15307364,29038215:267621 +k1,18688:16226413,29038215:267621 +k1,18688:17513119,29038215:267621 +k1,18688:19434213,29038215:267621 +k1,18688:22546096,29038215:267620 +k1,18688:23499879,29038215:267621 +k1,18688:25476024,29038215:267621 +k1,18688:26395073,29038215:267621 +k1,18688:27681778,29038215:267620 +k1,18688:30472535,29038215:267621 +k1,18688:31931601,29038215:267621 +k1,18688:32583029,29038215:0 +) +(1,18689:6764466,29903295:25818563,505283,134348 +k1,18688:7957121,29903295:173570 +k1,18688:11120442,29903295:173569 +k1,18688:11910050,29903295:173570 +k1,18688:13102704,29903295:173569 +k1,18688:14929747,29903295:173570 +k1,18688:16834778,29903295:173570 +k1,18688:18840734,29903295:173569 +k1,18688:20518355,29903295:173570 +k1,18688:21977741,29903295:173570 +k1,18688:23843450,29903295:173569 +k1,18688:25718990,29903295:173570 +k1,18688:27924175,29903295:173569 +k1,18688:29382251,29903295:173570 +k1,18688:32583029,29903295:0 +) +(1,18689:6764466,30768375:25818563,513147,134348 +k1,18688:9466788,30768375:274868 +k1,18688:11433797,30768375:274869 +k1,18688:15111294,30768375:274868 +k1,18688:16037591,30768375:274869 +k1,18688:17331544,30768375:274868 +k1,18688:20596165,30768375:274869 +k1,18688:23429559,30768375:274868 +k1,18688:24723512,30768375:274868 +k1,18688:26400851,30768375:274869 +(1,18688:26400851,30768375:0,414482,115847 +r1,18709:27462540,30768375:1061689,530329,115847 +k1,18688:26400851,30768375:-1061689 +) +(1,18688:26400851,30768375:1061689,414482,115847 +k1,18688:26400851,30768375:3277 +h1,18688:27459263,30768375:0,411205,112570 +) +k1,18688:27737408,30768375:274868 +k1,18688:31293009,30768375:274869 +k1,18688:32227169,30768375:274868 +k1,18688:32583029,30768375:0 +) +(1,18689:6764466,31633455:25818563,473825,7863 +k1,18689:32583029,31633455:23242998 +g1,18689:32583029,31633455 +) +(1,18691:6764466,32498535:25818563,513147,134348 +h1,18690:6764466,32498535:983040,0,0 +k1,18690:9634233,32498535:234564 +k1,18690:12202535,32498535:234565 +k1,18690:13979817,32498535:234564 +k1,18690:14873673,32498535:234564 +k1,18690:17936770,32498535:234564 +k1,18690:19190420,32498535:234565 +k1,18690:21509029,32498535:234564 +k1,18690:23256819,32498535:234564 +k1,18690:24439034,32498535:234564 +k1,18690:27481161,32498535:234565 +k1,18690:30557366,32498535:234564 +k1,18690:31443358,32498535:234564 +k1,18691:32583029,32498535:0 +) +(1,18691:6764466,33363615:25818563,513147,122846 +k1,18690:9111424,33363615:205897 +k1,18690:9848818,33363615:205897 +k1,18690:11909385,33363615:205898 +k1,18690:12924652,33363615:205897 +k1,18690:16156346,33363615:205897 +(1,18690:16156346,33363615:0,452978,122846 +r1,18709:18624883,33363615:2468537,575824,122846 +k1,18690:16156346,33363615:-2468537 +) +(1,18690:16156346,33363615:2468537,452978,122846 +k1,18690:16156346,33363615:3277 +h1,18690:18621606,33363615:0,411205,112570 +) +k1,18690:19004450,33363615:205897 +(1,18690:19004450,33363615:0,459977,115847 +r1,18709:23231546,33363615:4227096,575824,115847 +k1,18690:19004450,33363615:-4227096 +) +(1,18690:19004450,33363615:4227096,459977,115847 +k1,18690:19004450,33363615:3277 +h1,18690:23228269,33363615:0,411205,112570 +) +k1,18690:23437444,33363615:205898 +k1,18690:24834786,33363615:205897 +(1,18690:24834786,33363615:0,459977,115847 +r1,18709:29413594,33363615:4578808,575824,115847 +k1,18690:24834786,33363615:-4578808 +) +(1,18690:24834786,33363615:4578808,459977,115847 +k1,18690:24834786,33363615:3277 +h1,18690:29410317,33363615:0,411205,112570 +) +k1,18690:29793161,33363615:205897 +k1,18691:32583029,33363615:0 +) +(1,18691:6764466,34228695:25818563,505283,126483 +(1,18690:6764466,34228695:0,459977,115847 +r1,18709:10991562,34228695:4227096,575824,115847 +k1,18690:6764466,34228695:-4227096 +) +(1,18690:6764466,34228695:4227096,459977,115847 +k1,18690:6764466,34228695:3277 +h1,18690:10988285,34228695:0,411205,112570 +) +g1,18690:11190791,34228695 +g1,18690:14018669,34228695 +g1,18690:15684594,34228695 +(1,18690:15684594,34228695:0,452978,115847 +r1,18709:17801419,34228695:2116825,568825,115847 +k1,18690:15684594,34228695:-2116825 +) +(1,18690:15684594,34228695:2116825,452978,115847 +k1,18690:15684594,34228695:3277 +h1,18690:17798142,34228695:0,411205,112570 +) +g1,18690:18000648,34228695 +g1,18690:19391322,34228695 +g1,18690:20609636,34228695 +(1,18690:20609636,34228695:0,414482,115847 +r1,18709:21319614,34228695:709978,530329,115847 +k1,18690:20609636,34228695:-709978 +) +(1,18690:20609636,34228695:709978,414482,115847 +k1,18690:20609636,34228695:3277 +h1,18690:21316337,34228695:0,411205,112570 +) +g1,18690:21518843,34228695 +k1,18691:32583029,34228695:8322160 +g1,18691:32583029,34228695 +) +] +g1,18691:32583029,34355178 +) +h1,18691:6630773,34355178:0,0,0 +(1,18698:6630773,35220258:25952256,513147,134348 +h1,18697:6630773,35220258:983040,0,0 +k1,18697:9109148,35220258:298648 +k1,18697:14233866,35220258:298647 +k1,18697:15191806,35220258:298648 +k1,18697:18318986,35220258:298647 +k1,18697:20227854,35220258:298648 +k1,18697:22758003,35220258:298648 +k1,18697:24640655,35220258:298647 +k1,18697:27931022,35220258:298648 +k1,18697:28888961,35220258:298647 +k1,18697:30884991,35220258:298648 +k1,18697:32583029,35220258:0 +) +(1,18698:6630773,36085338:25952256,513147,134348 +k1,18697:7903940,36085338:254082 +k1,18697:9441217,36085338:254082 +k1,18697:12502862,36085338:254083 +k1,18697:14840989,36085338:254082 +k1,18697:15626568,36085338:254082 +k1,18697:18031542,36085338:254082 +k1,18697:18498562,36085338:254028 +k1,18697:20032562,36085338:254082 +k1,18697:21684527,36085338:254082 +k1,18697:22294469,36085338:254082 +k1,18697:25310895,36085338:254083 +k1,18697:28400064,36085338:254082 +k1,18697:29010006,36085338:254082 +k1,18697:32583029,36085338:0 +) +(1,18698:6630773,36950418:25952256,513147,134348 +k1,18697:8595473,36950418:252244 +k1,18697:9499146,36950418:252245 +k1,18697:11140753,36950418:252244 +k1,18697:13128390,36950418:252244 +(1,18697:13128390,36950418:0,452978,115847 +r1,18709:14893503,36950418:1765113,568825,115847 +k1,18697:13128390,36950418:-1765113 +) +(1,18697:13128390,36950418:1765113,452978,115847 +k1,18697:13128390,36950418:3277 +h1,18697:14890226,36950418:0,411205,112570 +) +k1,18697:15319417,36950418:252244 +k1,18697:16945243,36950418:252191 +k1,18697:17728985,36950418:252245 +k1,18697:18337089,36950418:252244 +k1,18697:21845162,36950418:252244 +k1,18697:23381913,36950418:252245 +k1,18697:27951014,36950418:252244 +k1,18697:30540272,36950418:252244 +k1,18697:32583029,36950418:0 +) +(1,18698:6630773,37815498:25952256,513147,134348 +k1,18697:10257317,37815498:195734 +k1,18697:11472136,37815498:195734 +k1,18697:14231638,37815498:195734 +k1,18697:16122789,37815498:195735 +k1,18697:16977815,37815498:195734 +k1,18697:19818582,37815498:195734 +k1,18697:22460120,37815498:195734 +k1,18697:23307282,37815498:195734 +k1,18697:24522101,37815498:195734 +k1,18697:27910750,37815498:195735 +k1,18697:31000554,37815498:195734 +k1,18697:31812326,37815498:195734 +k1,18697:32583029,37815498:0 +) +(1,18698:6630773,38680578:25952256,513147,126483 +k1,18697:9326869,38680578:181480 +k1,18697:10159777,38680578:181480 +k1,18697:12639605,38680578:181480 +k1,18697:13840170,38680578:181480 +k1,18697:17158203,38680578:181480 +k1,18697:18027156,38680578:181480 +k1,18697:19776257,38680578:181480 +k1,18697:20976822,38680578:181480 +k1,18697:24066790,38680578:181480 +k1,18697:24907562,38680578:181480 +k1,18697:27661330,38680578:181480 +k1,18697:31914562,38680578:181480 +k1,18697:32583029,38680578:0 +) +(1,18698:6630773,39545658:25952256,513147,134348 +k1,18697:9422045,39545658:179007 +k1,18697:11384286,39545658:179006 +k1,18697:13298686,39545658:179007 +k1,18697:14680934,39545658:179007 +k1,18697:16051386,39545658:179007 +k1,18697:18432402,39545658:179006 +k1,18697:21396034,39545658:179007 +k1,18697:22033138,39545658:179007 +k1,18697:22743641,39545658:179006 +k1,18697:23581940,39545658:179007 +k1,18697:26204129,39545658:179007 +k1,18697:27034564,39545658:179007 +k1,18697:28490867,39545658:179006 +k1,18697:29688959,39545658:179007 +k1,18697:32583029,39545658:0 +) +(1,18698:6630773,40410738:25952256,505283,134348 +k1,18697:9515517,40410738:204321 +k1,18697:11113789,40410738:204321 +k1,18697:12337195,40410738:204321 +k1,18697:15160990,40410738:204321 +k1,18697:16636709,40410738:204321 +k1,18697:19825540,40410738:204321 +k1,18697:20561357,40410738:204320 +k1,18697:21417106,40410738:204321 +k1,18697:23017999,40410738:204321 +k1,18697:25668124,40410738:204321 +k1,18697:26523873,40410738:204321 +k1,18697:27084054,40410738:204321 +k1,18697:29947826,40410738:204321 +k1,18697:32583029,40410738:0 +) +(1,18698:6630773,41275818:25952256,513147,134348 +k1,18697:7973496,41275818:170284 +k1,18697:10678714,41275818:170285 +k1,18697:12045685,41275818:170284 +k1,18697:13712156,41275818:170284 +k1,18697:15750872,41275818:170285 +k1,18697:19275289,41275818:170284 +k1,18697:19801433,41275818:170284 +k1,18697:21361081,41275818:170285 +k1,18697:23407661,41275818:170284 +k1,18697:26939942,41275818:170284 +k1,18697:29738876,41275818:170285 +k1,18697:31298523,41275818:170284 +k1,18697:32583029,41275818:0 +) +(1,18698:6630773,42140898:25952256,505283,7863 +g1,18697:9497973,42140898 +g1,18697:10467905,42140898 +g1,18697:13239422,42140898 +g1,18697:15118994,42140898 +g1,18697:16001108,42140898 +k1,18698:32583029,42140898:14421199 +g1,18698:32583029,42140898 +) +v1,18700:6630773,42825753:0,393216,0 +(1,18709:6630773,45194577:25952256,2762040,196608 +g1,18709:6630773,45194577 +g1,18709:6630773,45194577 +g1,18709:6434165,45194577 +(1,18709:6434165,45194577:0,2762040,196608 +r1,18709:32779637,45194577:26345472,2958648,196608 +k1,18709:6434165,45194577:-26345472 +) +(1,18709:6434165,45194577:26345472,2762040,196608 +[1,18709:6630773,45194577:25952256,2565432,0 +(1,18702:6630773,43053584:25952256,424439,79822 +(1,18701:6630773,43053584:0,0,0 +g1,18701:6630773,43053584 +g1,18701:6630773,43053584 +g1,18701:6303093,43053584 +(1,18701:6303093,43053584:0,0,0 +) +g1,18701:6630773,43053584 +) +k1,18702:6630773,43053584:0 +h1,18702:11278128,43053584:0,0,0 +k1,18702:32583028,43053584:21304900 +g1,18702:32583028,43053584 +) +(1,18703:6630773,43738439:25952256,407923,9908 +h1,18703:6630773,43738439:0,0,0 +g1,18703:7294681,43738439 +g1,18703:8290543,43738439 +h1,18703:9618359,43738439:0,0,0 +k1,18703:32583029,43738439:22964670 +g1,18703:32583029,43738439 +) +(1,18704:6630773,44423294:25952256,424439,112852 +h1,18704:6630773,44423294:0,0,0 +g1,18704:7294681,44423294 +g1,18704:8290543,44423294 +g1,18704:9286405,44423294 +g1,18704:9950313,44423294 +g1,18704:11278129,44423294 +g1,18704:11942037,44423294 +g1,18704:13601807,44423294 +g1,18704:14265715,44423294 +g1,18704:19908933,44423294 +g1,18704:21568703,44423294 +g1,18704:22232611,44423294 +g1,18704:23228473,44423294 +g1,18704:24224335,44423294 +g1,18704:24888243,44423294 +g1,18704:28207783,44423294 +g1,18704:28871691,44423294 +h1,18704:29535599,44423294:0,0,0 +k1,18704:32583029,44423294:3047430 +g1,18704:32583029,44423294 +) +(1,18705:6630773,45108149:25952256,431045,86428 +h1,18705:6630773,45108149:0,0,0 +g1,18705:7958589,45108149 +g1,18705:8954451,45108149 +g1,18705:13601806,45108149 +h1,18705:14265714,45108149:0,0,0 +k1,18705:32583030,45108149:18317316 +g1,18705:32583030,45108149 +) +] +) +g1,18709:32583029,45194577 +g1,18709:6630773,45194577 +g1,18709:6630773,45194577 +g1,18709:32583029,45194577 +g1,18709:32583029,45194577 +) +] +(1,18709:32583029,45706769:0,0,0 +g1,18709:32583029,45706769 +) +) +] +(1,18709:6630773,47279633:25952256,0,0 +h1,18709:6630773,47279633:25952256,0,0 +) +] +(1,18709:4262630,4025873:0,0,0 +[1,18709:-473656,4025873:0,0,0 +(1,18709:-473656,-710413:0,0,0 +(1,18709:-473656,-710413:0,0,0 +g1,18709:-473656,-710413 +) +g1,18709:-473656,-710413 ) ] ) ] !32100 -}307 -Input:3136:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3137:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3138:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3139:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}308 Input:3140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3142:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -324873,1087 +325077,1087 @@ Input:3149:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3150:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3151:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3154:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3155:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3156:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{308 -[1,18761:4262630,47279633:28320399,43253760,0 -(1,18761:4262630,4025873:0,0,0 -[1,18761:-473656,4025873:0,0,0 -(1,18761:-473656,-710413:0,0,0 -(1,18761:-473656,-644877:0,0,0 -k1,18761:-473656,-644877:-65536 +{309 +[1,18759:4262630,47279633:28320399,43253760,0 +(1,18759:4262630,4025873:0,0,0 +[1,18759:-473656,4025873:0,0,0 +(1,18759:-473656,-710413:0,0,0 +(1,18759:-473656,-644877:0,0,0 +k1,18759:-473656,-644877:-65536 ) -(1,18761:-473656,4736287:0,0,0 -k1,18761:-473656,4736287:5209943 +(1,18759:-473656,4736287:0,0,0 +k1,18759:-473656,4736287:5209943 ) -g1,18761:-473656,-710413 +g1,18759:-473656,-710413 ) ] ) -[1,18761:6630773,47279633:25952256,43253760,0 -[1,18761:6630773,4812305:25952256,786432,0 -(1,18761:6630773,4812305:25952256,513147,126483 -(1,18761:6630773,4812305:25952256,513147,126483 -g1,18761:3078558,4812305 -[1,18761:3078558,4812305:0,0,0 -(1,18761:3078558,2439708:0,1703936,0 -k1,18761:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18761:2537886,2439708:1179648,16384,0 +[1,18759:6630773,47279633:25952256,43253760,0 +[1,18759:6630773,4812305:25952256,786432,0 +(1,18759:6630773,4812305:25952256,513147,126483 +(1,18759:6630773,4812305:25952256,513147,126483 +g1,18759:3078558,4812305 +[1,18759:3078558,4812305:0,0,0 +(1,18759:3078558,2439708:0,1703936,0 +k1,18759:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18759:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18761:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18759:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18761:3078558,4812305:0,0,0 -(1,18761:3078558,2439708:0,1703936,0 -g1,18761:29030814,2439708 -g1,18761:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18761:36151628,1915420:16384,1179648,0 +[1,18759:3078558,4812305:0,0,0 +(1,18759:3078558,2439708:0,1703936,0 +g1,18759:29030814,2439708 +g1,18759:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18759:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18761:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18759:37855564,2439708:1179648,16384,0 ) ) -k1,18761:3078556,2439708:-34777008 +k1,18759:3078556,2439708:-34777008 ) ] -[1,18761:3078558,4812305:0,0,0 -(1,18761:3078558,49800853:0,16384,2228224 -k1,18761:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18761:2537886,49800853:1179648,16384,0 +[1,18759:3078558,4812305:0,0,0 +(1,18759:3078558,49800853:0,16384,2228224 +k1,18759:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18759:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18761:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18759:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18761:3078558,4812305:0,0,0 -(1,18761:3078558,49800853:0,16384,2228224 -g1,18761:29030814,49800853 -g1,18761:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18761:36151628,51504789:16384,1179648,0 +[1,18759:3078558,4812305:0,0,0 +(1,18759:3078558,49800853:0,16384,2228224 +g1,18759:29030814,49800853 +g1,18759:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18759:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18761:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18759:37855564,49800853:1179648,16384,0 ) ) -k1,18761:3078556,49800853:-34777008 +k1,18759:3078556,49800853:-34777008 ) ] -g1,18761:6630773,4812305 -g1,18761:6630773,4812305 -g1,18761:8017514,4812305 -g1,18761:11362471,4812305 -g1,18761:12177738,4812305 -g1,18761:15187806,4812305 -k1,18761:31387652,4812305:16199846 +g1,18759:6630773,4812305 +g1,18759:6630773,4812305 +g1,18759:8017514,4812305 +g1,18759:11362471,4812305 +g1,18759:12177738,4812305 +g1,18759:15187806,4812305 +k1,18759:31387652,4812305:16199846 ) ) ] -[1,18761:6630773,45706769:25952256,40108032,0 -(1,18761:6630773,45706769:25952256,40108032,0 -(1,18761:6630773,45706769:0,0,0 -g1,18761:6630773,45706769 +[1,18759:6630773,45706769:25952256,40108032,0 +(1,18759:6630773,45706769:25952256,40108032,0 +(1,18759:6630773,45706769:0,0,0 +g1,18759:6630773,45706769 ) -[1,18761:6630773,45706769:25952256,40108032,0 -v1,18711:6630773,6254097:0,393216,0 -(1,18711:6630773,7259817:25952256,1398936,196608 -g1,18711:6630773,7259817 -g1,18711:6630773,7259817 -g1,18711:6434165,7259817 -(1,18711:6434165,7259817:0,1398936,196608 -r1,18761:32779637,7259817:26345472,1595544,196608 -k1,18711:6434165,7259817:-26345472 +[1,18759:6630773,45706769:25952256,40108032,0 +v1,18709:6630773,6254097:0,393216,0 +(1,18709:6630773,7259817:25952256,1398936,196608 +g1,18709:6630773,7259817 +g1,18709:6630773,7259817 +g1,18709:6434165,7259817 +(1,18709:6434165,7259817:0,1398936,196608 +r1,18759:32779637,7259817:26345472,1595544,196608 +k1,18709:6434165,7259817:-26345472 ) -(1,18711:6434165,7259817:26345472,1398936,196608 -[1,18711:6630773,7259817:25952256,1202328,0 -(1,18708:6630773,6488534:25952256,431045,6605 -h1,18708:6630773,6488534:0,0,0 -g1,18708:7958589,6488534 -g1,18708:8954451,6488534 -h1,18708:9950313,6488534:0,0,0 -k1,18708:32583029,6488534:22632716 -g1,18708:32583029,6488534 -) -(1,18709:6630773,7173389:25952256,431045,86428 -h1,18709:6630773,7173389:0,0,0 -g1,18709:8954451,7173389 -g1,18709:10614221,7173389 -g1,18709:13601807,7173389 -g1,18709:15261577,7173389 -g1,18709:15925485,7173389 -h1,18709:16589393,7173389:0,0,0 -k1,18709:32583029,7173389:15993636 -g1,18709:32583029,7173389 -) -] -) -g1,18711:32583029,7259817 -g1,18711:6630773,7259817 -g1,18711:6630773,7259817 -g1,18711:32583029,7259817 -g1,18711:32583029,7259817 -) -h1,18711:6630773,7456425:0,0,0 -(1,18715:6630773,8321505:25952256,513147,126483 -h1,18714:6630773,8321505:983040,0,0 -k1,18714:8430103,8321505:188455 -k1,18714:9637643,8321505:188455 -k1,18714:11132231,8321505:188455 -k1,18714:12597983,8321505:188455 -(1,18714:12597983,8321505:0,459977,115847 -r1,18761:16825079,8321505:4227096,575824,115847 -k1,18714:12597983,8321505:-4227096 -) -(1,18714:12597983,8321505:4227096,459977,115847 -k1,18714:12597983,8321505:3277 -h1,18714:16821802,8321505:0,411205,112570 -) -k1,18714:17013534,8321505:188455 -k1,18714:17733486,8321505:188455 -k1,18714:19435166,8321505:188454 -k1,18714:20275049,8321505:188455 -k1,18714:21860076,8321505:188455 -k1,18714:24559871,8321505:188455 -(1,18714:24559871,8321505:0,452978,122846 -r1,18761:27028408,8321505:2468537,575824,122846 -k1,18714:24559871,8321505:-2468537 -) -(1,18714:24559871,8321505:2468537,452978,122846 -k1,18714:24559871,8321505:3277 -h1,18714:27025131,8321505:0,411205,112570 -) -k1,18714:27216863,8321505:188455 -k1,18714:30613961,8321505:188455 -k1,18714:31563944,8321505:188455 -k1,18714:32583029,8321505:0 -) -(1,18715:6630773,9186585:25952256,505283,126483 -k1,18714:9330565,9186585:176656 -k1,18714:10158648,9186585:176655 -k1,18714:11354389,9186585:176656 -(1,18714:11354389,9186585:0,452978,115847 -r1,18761:13471214,9186585:2116825,568825,115847 -k1,18714:11354389,9186585:-2116825 -) -(1,18714:11354389,9186585:2116825,452978,115847 -k1,18714:11354389,9186585:3277 -h1,18714:13467937,9186585:0,411205,112570 -) -k1,18714:13647869,9186585:176655 -k1,18714:16842458,9186585:176656 -k1,18714:17646949,9186585:176656 -(1,18714:17646949,9186585:0,459977,115847 -r1,18761:24687740,9186585:7040791,575824,115847 -k1,18714:17646949,9186585:-7040791 -) -(1,18714:17646949,9186585:7040791,459977,115847 -k1,18714:17646949,9186585:3277 -h1,18714:24684463,9186585:0,411205,112570 -) -k1,18714:25038065,9186585:176655 -(1,18714:25038065,9186585:0,452978,122846 -r1,18761:29265161,9186585:4227096,575824,122846 -k1,18714:25038065,9186585:-4227096 -) -(1,18714:25038065,9186585:4227096,452978,122846 -k1,18714:25038065,9186585:3277 -h1,18714:29261884,9186585:0,411205,112570 -) -k1,18714:29441817,9186585:176656 -k1,18714:30149969,9186585:176655 -k1,18714:31839851,9186585:176656 -k1,18714:32583029,9186585:0 -) -(1,18715:6630773,10051665:25952256,513147,134348 -k1,18714:9298580,10051665:228557 -k1,18714:10907980,10051665:228556 -k1,18714:12991861,10051665:228557 -k1,18714:15211401,10051665:228556 -k1,18714:16459043,10051665:228557 -k1,18714:17852830,10051665:228557 -k1,18714:20975456,10051665:228556 -k1,18714:22597964,10051665:228557 -k1,18714:23635890,10051665:228556 -k1,18714:26310251,10051665:228557 -k1,18714:28910555,10051665:228556 -k1,18714:31931601,10051665:228557 -k1,18714:32583029,10051665:0 -) -(1,18715:6630773,10916745:25952256,513147,138281 -$1,18714:7182586,10916745 -k1,18714:7417486,10916745:234900 -k1,18714:8413913,10916745:234899 -k1,18714:11295157,10916745:234900 -k1,18714:12721501,10916745:234899 -k1,18714:13975486,10916745:234900 -k1,18714:17419028,10916745:234899 -k1,18714:20099732,10916745:234900 -k1,18714:21935677,10916745:234900 -k1,18714:23951189,10916745:234899 -k1,18714:24584548,10916745:234900 -k1,18714:25470875,10916745:234899 -k1,18714:26311328,10916745:234900 -k1,18714:29225339,10916745:234899 -k1,18714:30221767,10916745:234900 -k1,18714:32583029,10916745:0 -) -(1,18715:6630773,11781825:25952256,505283,134348 -g1,18714:9253523,11781825 -g1,18714:12087955,11781825 -g1,18714:13343624,11781825 -g1,18714:14734298,11781825 -k1,18715:32583029,11781825:16428566 -g1,18715:32583029,11781825 -) -v1,18717:6630773,12466680:0,393216,0 -(1,18726:6630773,16238244:25952256,4164780,196608 -g1,18726:6630773,16238244 -g1,18726:6630773,16238244 -g1,18726:6434165,16238244 -(1,18726:6434165,16238244:0,4164780,196608 -r1,18761:32779637,16238244:26345472,4361388,196608 -k1,18726:6434165,16238244:-26345472 -) -(1,18726:6434165,16238244:26345472,4164780,196608 -[1,18726:6630773,16238244:25952256,3968172,0 -(1,18719:6630773,12701117:25952256,431045,112852 -(1,18718:6630773,12701117:0,0,0 -g1,18718:6630773,12701117 -g1,18718:6630773,12701117 -g1,18718:6303093,12701117 -(1,18718:6303093,12701117:0,0,0 -) -g1,18718:6630773,12701117 -) -k1,18719:6630773,12701117:0 -g1,18719:10614221,12701117 -g1,18719:11278129,12701117 -g1,18719:12937899,12701117 -g1,18719:15593531,12701117 -g1,18719:16257439,12701117 -g1,18719:18249163,12701117 -g1,18719:18913071,12701117 -g1,18719:19908933,12701117 -g1,18719:20572841,12701117 -g1,18719:21236749,12701117 -g1,18719:22564565,12701117 -h1,18719:22896519,12701117:0,0,0 -k1,18719:32583029,12701117:9686510 -g1,18719:32583029,12701117 -) -(1,18720:6630773,13385972:25952256,431045,106246 -h1,18720:6630773,13385972:0,0,0 -g1,18720:6962727,13385972 -g1,18720:7294681,13385972 -g1,18720:16257438,13385972 -g1,18720:16921346,13385972 -g1,18720:17585254,13385972 -g1,18720:18249162,13385972 -g1,18720:20904794,13385972 -g1,18720:21900656,13385972 -g1,18720:23228472,13385972 -g1,18720:23892380,13385972 -g1,18720:26216058,13385972 -g1,18720:28539736,13385972 -g1,18720:29203644,13385972 -k1,18720:29203644,13385972:0 -h1,18720:31195368,13385972:0,0,0 -k1,18720:32583029,13385972:1387661 -g1,18720:32583029,13385972 -) -(1,18721:6630773,14070827:25952256,431045,112852 -h1,18721:6630773,14070827:0,0,0 -g1,18721:6962727,14070827 -g1,18721:7294681,14070827 -g1,18721:7626635,14070827 -g1,18721:7958589,14070827 -g1,18721:8290543,14070827 -g1,18721:8622497,14070827 -g1,18721:8954451,14070827 -g1,18721:9286405,14070827 -g1,18721:9618359,14070827 -g1,18721:9950313,14070827 -g1,18721:10282267,14070827 -g1,18721:10614221,14070827 -g1,18721:10946175,14070827 -g1,18721:11278129,14070827 -g1,18721:11610083,14070827 -g1,18721:11942037,14070827 -g1,18721:12273991,14070827 -g1,18721:12605945,14070827 -g1,18721:12937899,14070827 -g1,18721:13269853,14070827 -g1,18721:13601807,14070827 -g1,18721:16257439,14070827 -g1,18721:16921347,14070827 -g1,18721:20572841,14070827 -g1,18721:21236749,14070827 -k1,18721:21236749,14070827:0 -h1,18721:28207781,14070827:0,0,0 -k1,18721:32583029,14070827:4375248 -g1,18721:32583029,14070827 -) -(1,18722:6630773,14755682:25952256,424439,112852 -h1,18722:6630773,14755682:0,0,0 -g1,18722:6962727,14755682 -g1,18722:7294681,14755682 -g1,18722:7626635,14755682 -g1,18722:7958589,14755682 -g1,18722:8290543,14755682 -g1,18722:8622497,14755682 -g1,18722:8954451,14755682 -g1,18722:9286405,14755682 -g1,18722:9618359,14755682 -g1,18722:9950313,14755682 -g1,18722:10282267,14755682 -g1,18722:10614221,14755682 -g1,18722:10946175,14755682 -g1,18722:11278129,14755682 -g1,18722:11610083,14755682 -g1,18722:11942037,14755682 -g1,18722:12273991,14755682 -g1,18722:12605945,14755682 -g1,18722:12937899,14755682 -g1,18722:13269853,14755682 -g1,18722:13601807,14755682 -g1,18722:17585254,14755682 -g1,18722:18249162,14755682 -g1,18722:20240886,14755682 -h1,18722:20572840,14755682:0,0,0 -k1,18722:32583029,14755682:12010189 -g1,18722:32583029,14755682 -) -(1,18723:6630773,15440537:25952256,424439,112852 -h1,18723:6630773,15440537:0,0,0 -g1,18723:6962727,15440537 -g1,18723:7294681,15440537 -g1,18723:15925483,15440537 -g1,18723:16589391,15440537 -g1,18723:18913069,15440537 -g1,18723:20572839,15440537 -g1,18723:21236747,15440537 -g1,18723:23892379,15440537 -g1,18723:26216057,15440537 -g1,18723:26879965,15440537 -g1,18723:28539735,15440537 -k1,18723:28539735,15440537:0 -h1,18723:29535597,15440537:0,0,0 -k1,18723:32583029,15440537:3047432 -g1,18723:32583029,15440537 -) -(1,18724:6630773,16125392:25952256,424439,112852 -h1,18724:6630773,16125392:0,0,0 -g1,18724:6962727,16125392 -g1,18724:7294681,16125392 -g1,18724:7626635,16125392 -g1,18724:7958589,16125392 -g1,18724:8290543,16125392 -g1,18724:8622497,16125392 -g1,18724:8954451,16125392 -g1,18724:9286405,16125392 -g1,18724:9618359,16125392 -g1,18724:9950313,16125392 -g1,18724:10282267,16125392 -g1,18724:10614221,16125392 -g1,18724:10946175,16125392 -g1,18724:11278129,16125392 -g1,18724:11610083,16125392 -g1,18724:11942037,16125392 -g1,18724:12273991,16125392 -g1,18724:12605945,16125392 -g1,18724:12937899,16125392 -g1,18724:13269853,16125392 -g1,18724:13601807,16125392 -g1,18724:13933761,16125392 -g1,18724:14265715,16125392 -g1,18724:16257439,16125392 -g1,18724:16921347,16125392 -h1,18724:20904794,16125392:0,0,0 -k1,18724:32583029,16125392:11678235 -g1,18724:32583029,16125392 -) -] -) -g1,18726:32583029,16238244 -g1,18726:6630773,16238244 -g1,18726:6630773,16238244 -g1,18726:32583029,16238244 -g1,18726:32583029,16238244 -) -h1,18726:6630773,16434852:0,0,0 -(1,18729:6630773,25584054:25952256,9083666,0 -k1,18729:10523651,25584054:3892878 -h1,18728:10523651,25584054:0,0,0 -(1,18728:10523651,25584054:18166500,9083666,0 -(1,18728:10523651,25584054:18167376,9083688,0 -(1,18728:10523651,25584054:18167376,9083688,0 -(1,18728:10523651,25584054:0,9083688,0 -(1,18728:10523651,25584054:0,14208860,0 -(1,18728:10523651,25584054:28417720,14208860,0 -) -k1,18728:10523651,25584054:-28417720 -) -) -g1,18728:28691027,25584054 -) -) -) -g1,18729:28690151,25584054 -k1,18729:32583029,25584054:3892878 -) -(1,18736:6630773,26449134:25952256,505283,138281 -h1,18735:6630773,26449134:983040,0,0 -k1,18735:8576428,26449134:334780 -k1,18735:9930292,26449134:334779 -k1,18735:12506403,26449134:334780 -k1,18735:14118479,26449134:334779 -k1,18735:17336843,26449134:334780 -k1,18735:20565692,26449134:334779 -k1,18735:21892032,26449134:334780 -k1,18735:24812207,26449134:334780 -k1,18735:25798414,26449134:334779 -k1,18735:27152279,26449134:334780 -$1,18735:27152279,26449134 -$1,18735:27704092,26449134 -k1,18735:28038871,26449134:334779 -k1,18735:31391584,26449134:334780 -k1,18735:32583029,26449134:0 -) -(1,18736:6630773,27314214:25952256,505283,134348 -k1,18735:9495827,27314214:271794 -k1,18735:10453783,27314214:271794 -k1,18735:12754572,27314214:271794 -k1,18735:13677793,27314214:271793 -k1,18735:14968672,27314214:271794 -k1,18735:17271427,27314214:271794 -k1,18735:20561154,27314214:271794 -k1,18735:21320463,27314214:271721 -k1,18735:22691951,27314214:271794 -k1,18735:23615173,27314214:271794 -(1,18735:23615173,27314214:0,452978,122846 -r1,18761:26083710,27314214:2468537,575824,122846 -k1,18735:23615173,27314214:-2468537 -) -(1,18735:23615173,27314214:2468537,452978,122846 -k1,18735:23615173,27314214:3277 -h1,18735:26080433,27314214:0,411205,112570 -) -k1,18735:26355503,27314214:271793 -k1,18735:27731579,27314214:271794 -k1,18735:31563944,27314214:271794 -k1,18735:32583029,27314214:0 -) -(1,18736:6630773,28179294:25952256,513147,134348 -k1,18735:9681758,28179294:243423 -k1,18735:11819828,28179294:243424 -k1,18735:12722543,28179294:243423 -k1,18735:13985051,28179294:243423 -k1,18735:16751611,28179294:243424 -(1,18735:16958705,28179294:0,414482,115847 -r1,18761:18723818,28179294:1765113,530329,115847 -k1,18735:16958705,28179294:-1765113 -) -(1,18735:16958705,28179294:1765113,414482,115847 -k1,18735:16958705,28179294:3277 -h1,18735:18720541,28179294:0,411205,112570 -) -k1,18735:19174335,28179294:243423 -k1,18735:20985379,28179294:243423 -k1,18735:22513308,28179294:243423 -k1,18735:24269958,28179294:243424 -k1,18735:25532466,28179294:243423 -k1,18735:28472696,28179294:243423 -k1,18735:29785668,28179294:243424 -k1,18735:31923737,28179294:243423 -k1,18735:32583029,28179294:0 -) -(1,18736:6630773,29044374:25952256,513147,134348 -k1,18735:7833952,29044374:184094 -k1,18735:11181470,29044374:184095 -k1,18735:12183453,29044374:184094 -k1,18735:14396542,29044374:184094 -k1,18735:15599721,29044374:184094 -k1,18735:18049396,29044374:184095 -k1,18735:21396913,29044374:184094 -(1,18735:21396913,29044374:0,452978,122846 -r1,18761:25624009,29044374:4227096,575824,122846 -k1,18735:21396913,29044374:-4227096 -) -(1,18735:21396913,29044374:4227096,452978,122846 -k1,18735:21396913,29044374:3277 -h1,18735:25620732,29044374:0,411205,112570 -) -k1,18735:25808103,29044374:184094 -k1,18735:26523694,29044374:184094 -k1,18735:28394686,29044374:184095 -k1,18735:29775467,29044374:184094 -k1,18735:32583029,29044374:0 -) -(1,18736:6630773,29909454:25952256,513147,126483 -k1,18735:7410124,29909454:163313 -k1,18735:8776677,29909454:163312 -k1,18735:11601407,29909454:163313 -k1,18735:12869001,29909454:163312 -k1,18735:13780080,29909454:163313 -k1,18735:15355694,29909454:163313 -k1,18735:16378838,29909454:163312 -k1,18735:17561236,29909454:163313 -k1,18735:20235888,29909454:163312 -(1,18735:20235888,29909454:0,414482,115847 -r1,18761:20594154,29909454:358266,530329,115847 -k1,18735:20235888,29909454:-358266 -) -(1,18735:20235888,29909454:358266,414482,115847 -k1,18735:20235888,29909454:3277 -h1,18735:20590877,29909454:0,411205,112570 -) -k1,18735:20757467,29909454:163313 -k1,18735:22488400,29909454:163312 -k1,18735:23670798,29909454:163313 -k1,18735:25223474,29909454:163313 -k1,18735:27263082,29909454:163312 -(1,18735:27263082,29909454:0,459977,115847 -r1,18761:28324771,29909454:1061689,575824,115847 -k1,18735:27263082,29909454:-1061689 -) -(1,18735:27263082,29909454:1061689,459977,115847 -k1,18735:27263082,29909454:3277 -h1,18735:28321494,29909454:0,411205,112570 -) -k1,18735:28488084,29909454:163313 -k1,18735:29182893,29909454:163312 -k1,18735:31931601,29909454:163313 -k1,18735:32583029,29909454:0 -) -(1,18736:6630773,30774534:25952256,513147,134348 -k1,18735:7835607,30774534:185749 -k1,18735:8385737,30774534:185749 -k1,18735:11415749,30774534:185749 -k1,18735:12214260,30774534:185749 -k1,18735:13166125,30774534:185749 -k1,18735:15520460,30774534:185749 -k1,18735:18318474,30774534:185749 -(1,18735:18318474,30774534:0,414482,115847 -r1,18761:18676740,30774534:358266,530329,115847 -k1,18735:18318474,30774534:-358266 -) -(1,18735:18318474,30774534:358266,414482,115847 -k1,18735:18318474,30774534:3277 -h1,18735:18673463,30774534:0,411205,112570 -) -k1,18735:18862489,30774534:185749 -k1,18735:20615858,30774534:185748 -k1,18735:21820692,30774534:185749 -k1,18735:23395804,30774534:185749 -k1,18735:25457849,30774534:185749 -(1,18735:25457849,30774534:0,459977,115847 -r1,18761:26519538,30774534:1061689,575824,115847 -k1,18735:25457849,30774534:-1061689 -) -(1,18735:25457849,30774534:1061689,459977,115847 -k1,18735:25457849,30774534:3277 -h1,18735:26516261,30774534:0,411205,112570 -) -k1,18735:26705287,30774534:185749 -k1,18735:27422533,30774534:185749 -k1,18735:30193677,30774534:185749 -k1,18735:31030854,30774534:185749 -k1,18735:32235688,30774534:185749 -k1,18736:32583029,30774534:0 -) -(1,18736:6630773,31639614:25952256,513147,126483 -k1,18735:9668775,31639614:193739 -k1,18735:11757161,31639614:193740 -k1,18735:12610192,31639614:193739 -k1,18735:13823016,31639614:193739 -k1,18735:18410945,31639614:193740 -k1,18735:19220722,31639614:193739 -(1,18735:19220722,31639614:0,459977,115847 -r1,18761:26261513,31639614:7040791,575824,115847 -k1,18735:19220722,31639614:-7040791 -) -(1,18735:19220722,31639614:7040791,459977,115847 -k1,18735:19220722,31639614:3277 -h1,18735:26258236,31639614:0,411205,112570 -) -k1,18735:26628922,31639614:193739 -k1,18735:28467616,31639614:193740 -k1,18735:29680440,31639614:193739 -k1,18736:32583029,31639614:0 -) -(1,18736:6630773,32504694:25952256,513147,126483 -k1,18735:8569402,32504694:167191 -k1,18735:11578234,32504694:167191 -(1,18735:11578234,32504694:0,414482,115847 -r1,18761:11936500,32504694:358266,530329,115847 -k1,18735:11578234,32504694:-358266 -) -(1,18735:11578234,32504694:358266,414482,115847 -k1,18735:11578234,32504694:3277 -h1,18735:11933223,32504694:0,411205,112570 -) -k1,18735:12103691,32504694:167191 -k1,18735:13462327,32504694:167191 -(1,18735:13462327,32504694:0,452978,122846 -r1,18761:15930864,32504694:2468537,575824,122846 -k1,18735:13462327,32504694:-2468537 -) -(1,18735:13462327,32504694:2468537,452978,122846 -k1,18735:13462327,32504694:3277 -h1,18735:15927587,32504694:0,411205,112570 -) -k1,18735:16098055,32504694:167191 -k1,18735:16881284,32504694:167191 -k1,18735:18067560,32504694:167191 -k1,18735:19624114,32504694:167191 -k1,18735:21667601,32504694:167191 -k1,18735:24613519,32504694:167191 -k1,18735:25542238,32504694:167191 -(1,18735:25542238,32504694:0,459977,115847 -r1,18761:32583029,32504694:7040791,575824,115847 -k1,18735:25542238,32504694:-7040791 -) -(1,18735:25542238,32504694:7040791,459977,115847 -k1,18735:25542238,32504694:3277 -h1,18735:32579752,32504694:0,411205,112570 -) -k1,18735:32583029,32504694:0 -) -(1,18736:6630773,33369774:25952256,513147,126483 -g1,18735:7821562,33369774 -g1,18735:11313975,33369774 -g1,18735:12704649,33369774 -g1,18735:15489273,33369774 -g1,18735:16339930,33369774 -g1,18735:17558244,33369774 -g1,18735:18165107,33369774 -g1,18735:20258982,33369774 -g1,18735:21125367,33369774 -(1,18735:21125367,33369774:0,452978,122846 -r1,18761:25352463,33369774:4227096,575824,122846 -k1,18735:21125367,33369774:-4227096 -) -(1,18735:21125367,33369774:4227096,452978,122846 -k1,18735:21125367,33369774:3277 -h1,18735:25349186,33369774:0,411205,112570 -) -k1,18736:32583029,33369774:7056896 -g1,18736:32583029,33369774 -) -v1,18738:6630773,34054629:0,393216,0 -(1,18751:6630773,40565613:25952256,6904200,196608 -g1,18751:6630773,40565613 -g1,18751:6630773,40565613 -g1,18751:6434165,40565613 -(1,18751:6434165,40565613:0,6904200,196608 -r1,18761:32779637,40565613:26345472,7100808,196608 -k1,18751:6434165,40565613:-26345472 -) -(1,18751:6434165,40565613:26345472,6904200,196608 -[1,18751:6630773,40565613:25952256,6707592,0 -(1,18740:6630773,34289066:25952256,431045,112852 -(1,18739:6630773,34289066:0,0,0 -g1,18739:6630773,34289066 -g1,18739:6630773,34289066 -g1,18739:6303093,34289066 -(1,18739:6303093,34289066:0,0,0 -) -g1,18739:6630773,34289066 -) -k1,18740:6630773,34289066:0 -g1,18740:10614221,34289066 -h1,18740:10946175,34289066:0,0,0 -k1,18740:32583029,34289066:21636854 -g1,18740:32583029,34289066 -) -(1,18741:6630773,34973921:25952256,431045,106246 -h1,18741:6630773,34973921:0,0,0 -g1,18741:6962727,34973921 -g1,18741:7294681,34973921 -g1,18741:16257438,34973921 -g1,18741:16921346,34973921 -g1,18741:17585254,34973921 -g1,18741:18249162,34973921 -g1,18741:20904794,34973921 -g1,18741:21900656,34973921 -g1,18741:23228472,34973921 -g1,18741:23892380,34973921 -k1,18741:23892380,34973921:0 -h1,18741:25884104,34973921:0,0,0 -k1,18741:32583029,34973921:6698925 -g1,18741:32583029,34973921 -) -(1,18742:6630773,35658776:25952256,424439,86428 -h1,18742:6630773,35658776:0,0,0 -g1,18742:6962727,35658776 -g1,18742:7294681,35658776 -g1,18742:7626635,35658776 -g1,18742:7958589,35658776 -g1,18742:8290543,35658776 -g1,18742:8622497,35658776 -g1,18742:8954451,35658776 -g1,18742:9286405,35658776 -g1,18742:9618359,35658776 -g1,18742:9950313,35658776 -g1,18742:10282267,35658776 -g1,18742:10614221,35658776 -g1,18742:10946175,35658776 -g1,18742:11278129,35658776 -g1,18742:11610083,35658776 -g1,18742:11942037,35658776 -g1,18742:12273991,35658776 -g1,18742:12605945,35658776 -g1,18742:12937899,35658776 -g1,18742:13269853,35658776 -g1,18742:13601807,35658776 -g1,18742:15925485,35658776 -g1,18742:16589393,35658776 -k1,18742:16589393,35658776:0 -h1,18742:18581117,35658776:0,0,0 -k1,18742:32583029,35658776:14001912 -g1,18742:32583029,35658776 -) -(1,18743:6630773,36343631:25952256,424439,112852 -h1,18743:6630773,36343631:0,0,0 -g1,18743:6962727,36343631 -g1,18743:7294681,36343631 -g1,18743:7626635,36343631 -g1,18743:7958589,36343631 -g1,18743:8290543,36343631 -g1,18743:8622497,36343631 -g1,18743:8954451,36343631 -g1,18743:9286405,36343631 -g1,18743:9618359,36343631 -g1,18743:9950313,36343631 -g1,18743:10282267,36343631 -g1,18743:10614221,36343631 -g1,18743:10946175,36343631 -g1,18743:11278129,36343631 -g1,18743:11610083,36343631 -g1,18743:11942037,36343631 -g1,18743:12273991,36343631 -g1,18743:12605945,36343631 -g1,18743:12937899,36343631 -g1,18743:13269853,36343631 -g1,18743:13601807,36343631 -g1,18743:16257439,36343631 -g1,18743:16921347,36343631 -g1,18743:18913071,36343631 -g1,18743:19576979,36343631 -k1,18743:19576979,36343631:0 -h1,18743:20240887,36343631:0,0,0 -k1,18743:32583029,36343631:12342142 -g1,18743:32583029,36343631 -) -(1,18744:6630773,37028486:25952256,424439,112852 -h1,18744:6630773,37028486:0,0,0 -g1,18744:6962727,37028486 -g1,18744:7294681,37028486 -g1,18744:7626635,37028486 -g1,18744:7958589,37028486 -g1,18744:8290543,37028486 -g1,18744:8622497,37028486 -g1,18744:8954451,37028486 -g1,18744:9286405,37028486 -g1,18744:9618359,37028486 -g1,18744:9950313,37028486 -g1,18744:10282267,37028486 -g1,18744:10614221,37028486 -g1,18744:10946175,37028486 -g1,18744:11278129,37028486 -g1,18744:11610083,37028486 -g1,18744:11942037,37028486 -g1,18744:12273991,37028486 -g1,18744:12605945,37028486 -g1,18744:12937899,37028486 -g1,18744:13269853,37028486 -g1,18744:13601807,37028486 -g1,18744:13933761,37028486 -g1,18744:14265715,37028486 -g1,18744:14597669,37028486 -g1,18744:14929623,37028486 -g1,18744:15261577,37028486 -g1,18744:15593531,37028486 -g1,18744:15925485,37028486 -g1,18744:16257439,37028486 -g1,18744:16589393,37028486 -g1,18744:16921347,37028486 -g1,18744:17253301,37028486 -g1,18744:17585255,37028486 -g1,18744:17917209,37028486 -g1,18744:18249163,37028486 -g1,18744:18913071,37028486 -g1,18744:19576979,37028486 -g1,18744:23560427,37028486 -g1,18744:24224335,37028486 -k1,18744:24224335,37028486:0 -h1,18744:24888243,37028486:0,0,0 -k1,18744:32583029,37028486:7694786 -g1,18744:32583029,37028486 -) -(1,18745:6630773,37713341:25952256,431045,112852 -h1,18745:6630773,37713341:0,0,0 -g1,18745:6962727,37713341 -g1,18745:7294681,37713341 -g1,18745:7626635,37713341 -g1,18745:7958589,37713341 -g1,18745:8290543,37713341 -g1,18745:8622497,37713341 -g1,18745:8954451,37713341 -g1,18745:9286405,37713341 -g1,18745:9618359,37713341 -g1,18745:9950313,37713341 -g1,18745:10282267,37713341 -g1,18745:10614221,37713341 -g1,18745:10946175,37713341 -g1,18745:11278129,37713341 -g1,18745:11610083,37713341 -g1,18745:11942037,37713341 -g1,18745:12273991,37713341 -g1,18745:12605945,37713341 -g1,18745:12937899,37713341 -g1,18745:13269853,37713341 -g1,18745:13601807,37713341 -g1,18745:13933761,37713341 -g1,18745:14265715,37713341 -g1,18745:14597669,37713341 -g1,18745:14929623,37713341 -g1,18745:15261577,37713341 -g1,18745:15593531,37713341 -g1,18745:15925485,37713341 -g1,18745:16257439,37713341 -g1,18745:16589393,37713341 -g1,18745:16921347,37713341 -g1,18745:17253301,37713341 -g1,18745:17585255,37713341 -g1,18745:17917209,37713341 -g1,18745:18249163,37713341 -g1,18745:18581117,37713341 -g1,18745:18913071,37713341 -g1,18745:19245025,37713341 -g1,18745:19576979,37713341 -g1,18745:19908933,37713341 -g1,18745:20240887,37713341 -g1,18745:20572841,37713341 -g1,18745:20904795,37713341 -g1,18745:21236749,37713341 -g1,18745:21568703,37713341 -g1,18745:25220196,37713341 -g1,18745:25884104,37713341 -g1,18745:26548012,37713341 -g1,18745:27211920,37713341 -k1,18745:27211920,37713341:0 -h1,18745:30199505,37713341:0,0,0 -k1,18745:32583029,37713341:2383524 -g1,18745:32583029,37713341 -) -(1,18746:6630773,38398196:25952256,431045,112852 -h1,18746:6630773,38398196:0,0,0 -g1,18746:6962727,38398196 -g1,18746:7294681,38398196 -g1,18746:7626635,38398196 -g1,18746:7958589,38398196 -g1,18746:8290543,38398196 -g1,18746:8622497,38398196 -g1,18746:8954451,38398196 -g1,18746:9286405,38398196 -g1,18746:9618359,38398196 -g1,18746:9950313,38398196 -g1,18746:10282267,38398196 -g1,18746:10614221,38398196 -g1,18746:10946175,38398196 -g1,18746:11278129,38398196 -g1,18746:11610083,38398196 -g1,18746:11942037,38398196 -g1,18746:12273991,38398196 -g1,18746:12605945,38398196 -g1,18746:12937899,38398196 -g1,18746:13269853,38398196 -g1,18746:13601807,38398196 -g1,18746:13933761,38398196 -g1,18746:14265715,38398196 -g1,18746:14597669,38398196 -g1,18746:14929623,38398196 -g1,18746:15261577,38398196 -g1,18746:15593531,38398196 -g1,18746:15925485,38398196 -g1,18746:16257439,38398196 -g1,18746:16589393,38398196 -g1,18746:16921347,38398196 -g1,18746:17253301,38398196 -g1,18746:17585255,38398196 -g1,18746:17917209,38398196 -g1,18746:18249163,38398196 -g1,18746:20572841,38398196 -g1,18746:21236749,38398196 -k1,18746:21236749,38398196:0 -h1,18746:28207781,38398196:0,0,0 -k1,18746:32583029,38398196:4375248 -g1,18746:32583029,38398196 -) -(1,18747:6630773,39083051:25952256,424439,112852 -h1,18747:6630773,39083051:0,0,0 -g1,18747:6962727,39083051 -g1,18747:7294681,39083051 -g1,18747:7626635,39083051 -g1,18747:7958589,39083051 -g1,18747:8290543,39083051 -g1,18747:8622497,39083051 -g1,18747:8954451,39083051 -g1,18747:9286405,39083051 -g1,18747:9618359,39083051 -g1,18747:9950313,39083051 -g1,18747:10282267,39083051 -g1,18747:10614221,39083051 -g1,18747:10946175,39083051 -g1,18747:11278129,39083051 -g1,18747:11610083,39083051 -g1,18747:11942037,39083051 -g1,18747:12273991,39083051 -g1,18747:12605945,39083051 -g1,18747:12937899,39083051 -g1,18747:13269853,39083051 -g1,18747:13601807,39083051 -g1,18747:17585254,39083051 -g1,18747:18249162,39083051 -g1,18747:20240886,39083051 -h1,18747:20572840,39083051:0,0,0 -k1,18747:32583029,39083051:12010189 -g1,18747:32583029,39083051 -) -(1,18748:6630773,39767906:25952256,424439,112852 -h1,18748:6630773,39767906:0,0,0 -g1,18748:6962727,39767906 -g1,18748:7294681,39767906 -g1,18748:15925483,39767906 -g1,18748:16589391,39767906 -g1,18748:18913069,39767906 -g1,18748:20572839,39767906 -g1,18748:21236747,39767906 -g1,18748:23892379,39767906 -g1,18748:26216057,39767906 -g1,18748:26879965,39767906 -g1,18748:28539735,39767906 -k1,18748:28539735,39767906:0 -h1,18748:29535597,39767906:0,0,0 -k1,18748:32583029,39767906:3047432 -g1,18748:32583029,39767906 -) -(1,18749:6630773,40452761:25952256,424439,112852 -h1,18749:6630773,40452761:0,0,0 -g1,18749:6962727,40452761 -g1,18749:7294681,40452761 -g1,18749:7626635,40452761 -g1,18749:7958589,40452761 -g1,18749:8290543,40452761 -g1,18749:8622497,40452761 -g1,18749:8954451,40452761 -g1,18749:9286405,40452761 -g1,18749:9618359,40452761 -g1,18749:9950313,40452761 -g1,18749:10282267,40452761 -g1,18749:10614221,40452761 -g1,18749:10946175,40452761 -g1,18749:11278129,40452761 -g1,18749:11610083,40452761 -g1,18749:11942037,40452761 -g1,18749:12273991,40452761 -g1,18749:12605945,40452761 -g1,18749:12937899,40452761 -g1,18749:13269853,40452761 -g1,18749:13601807,40452761 -g1,18749:13933761,40452761 -g1,18749:14265715,40452761 -g1,18749:14597669,40452761 -g1,18749:16589393,40452761 -g1,18749:17253301,40452761 -h1,18749:21236748,40452761:0,0,0 -k1,18749:32583029,40452761:11346281 -g1,18749:32583029,40452761 -) -] -) -g1,18751:32583029,40565613 -g1,18751:6630773,40565613 -g1,18751:6630773,40565613 -g1,18751:32583029,40565613 -g1,18751:32583029,40565613 -) -h1,18751:6630773,40762221:0,0,0 -] -(1,18761:32583029,45706769:0,0,0 -g1,18761:32583029,45706769 -) -) -] -(1,18761:6630773,47279633:25952256,0,0 -h1,18761:6630773,47279633:25952256,0,0 -) -] -(1,18761:4262630,4025873:0,0,0 -[1,18761:-473656,4025873:0,0,0 -(1,18761:-473656,-710413:0,0,0 -(1,18761:-473656,-710413:0,0,0 -g1,18761:-473656,-710413 -) -g1,18761:-473656,-710413 +(1,18709:6434165,7259817:26345472,1398936,196608 +[1,18709:6630773,7259817:25952256,1202328,0 +(1,18706:6630773,6488534:25952256,431045,6605 +h1,18706:6630773,6488534:0,0,0 +g1,18706:7958589,6488534 +g1,18706:8954451,6488534 +h1,18706:9950313,6488534:0,0,0 +k1,18706:32583029,6488534:22632716 +g1,18706:32583029,6488534 +) +(1,18707:6630773,7173389:25952256,431045,86428 +h1,18707:6630773,7173389:0,0,0 +g1,18707:8954451,7173389 +g1,18707:10614221,7173389 +g1,18707:13601807,7173389 +g1,18707:15261577,7173389 +g1,18707:15925485,7173389 +h1,18707:16589393,7173389:0,0,0 +k1,18707:32583029,7173389:15993636 +g1,18707:32583029,7173389 +) +] +) +g1,18709:32583029,7259817 +g1,18709:6630773,7259817 +g1,18709:6630773,7259817 +g1,18709:32583029,7259817 +g1,18709:32583029,7259817 +) +h1,18709:6630773,7456425:0,0,0 +(1,18713:6630773,8321505:25952256,513147,126483 +h1,18712:6630773,8321505:983040,0,0 +k1,18712:8430103,8321505:188455 +k1,18712:9637643,8321505:188455 +k1,18712:11132231,8321505:188455 +k1,18712:12597983,8321505:188455 +(1,18712:12597983,8321505:0,459977,115847 +r1,18759:16825079,8321505:4227096,575824,115847 +k1,18712:12597983,8321505:-4227096 +) +(1,18712:12597983,8321505:4227096,459977,115847 +k1,18712:12597983,8321505:3277 +h1,18712:16821802,8321505:0,411205,112570 +) +k1,18712:17013534,8321505:188455 +k1,18712:17733486,8321505:188455 +k1,18712:19435166,8321505:188454 +k1,18712:20275049,8321505:188455 +k1,18712:21860076,8321505:188455 +k1,18712:24559871,8321505:188455 +(1,18712:24559871,8321505:0,452978,122846 +r1,18759:27028408,8321505:2468537,575824,122846 +k1,18712:24559871,8321505:-2468537 +) +(1,18712:24559871,8321505:2468537,452978,122846 +k1,18712:24559871,8321505:3277 +h1,18712:27025131,8321505:0,411205,112570 +) +k1,18712:27216863,8321505:188455 +k1,18712:30613961,8321505:188455 +k1,18712:31563944,8321505:188455 +k1,18712:32583029,8321505:0 +) +(1,18713:6630773,9186585:25952256,505283,126483 +k1,18712:9330565,9186585:176656 +k1,18712:10158648,9186585:176655 +k1,18712:11354389,9186585:176656 +(1,18712:11354389,9186585:0,452978,115847 +r1,18759:13471214,9186585:2116825,568825,115847 +k1,18712:11354389,9186585:-2116825 +) +(1,18712:11354389,9186585:2116825,452978,115847 +k1,18712:11354389,9186585:3277 +h1,18712:13467937,9186585:0,411205,112570 +) +k1,18712:13647869,9186585:176655 +k1,18712:16842458,9186585:176656 +k1,18712:17646949,9186585:176656 +(1,18712:17646949,9186585:0,459977,115847 +r1,18759:24687740,9186585:7040791,575824,115847 +k1,18712:17646949,9186585:-7040791 +) +(1,18712:17646949,9186585:7040791,459977,115847 +k1,18712:17646949,9186585:3277 +h1,18712:24684463,9186585:0,411205,112570 +) +k1,18712:25038065,9186585:176655 +(1,18712:25038065,9186585:0,452978,122846 +r1,18759:29265161,9186585:4227096,575824,122846 +k1,18712:25038065,9186585:-4227096 +) +(1,18712:25038065,9186585:4227096,452978,122846 +k1,18712:25038065,9186585:3277 +h1,18712:29261884,9186585:0,411205,112570 +) +k1,18712:29441817,9186585:176656 +k1,18712:30149969,9186585:176655 +k1,18712:31839851,9186585:176656 +k1,18712:32583029,9186585:0 +) +(1,18713:6630773,10051665:25952256,513147,134348 +k1,18712:9298580,10051665:228557 +k1,18712:10907980,10051665:228556 +k1,18712:12991861,10051665:228557 +k1,18712:15211401,10051665:228556 +k1,18712:16459043,10051665:228557 +k1,18712:17852830,10051665:228557 +k1,18712:20975456,10051665:228556 +k1,18712:22597964,10051665:228557 +k1,18712:23635890,10051665:228556 +k1,18712:26310251,10051665:228557 +k1,18712:28910555,10051665:228556 +k1,18712:31931601,10051665:228557 +k1,18712:32583029,10051665:0 +) +(1,18713:6630773,10916745:25952256,513147,138281 +$1,18712:7182586,10916745 +k1,18712:7417486,10916745:234900 +k1,18712:8413913,10916745:234899 +k1,18712:11295157,10916745:234900 +k1,18712:12721501,10916745:234899 +k1,18712:13975486,10916745:234900 +k1,18712:17419028,10916745:234899 +k1,18712:20099732,10916745:234900 +k1,18712:21935677,10916745:234900 +k1,18712:23951189,10916745:234899 +k1,18712:24584548,10916745:234900 +k1,18712:25470875,10916745:234899 +k1,18712:26311328,10916745:234900 +k1,18712:29225339,10916745:234899 +k1,18712:30221767,10916745:234900 +k1,18712:32583029,10916745:0 +) +(1,18713:6630773,11781825:25952256,505283,134348 +g1,18712:9253523,11781825 +g1,18712:12087955,11781825 +g1,18712:13343624,11781825 +g1,18712:14734298,11781825 +k1,18713:32583029,11781825:16428566 +g1,18713:32583029,11781825 +) +v1,18715:6630773,12466680:0,393216,0 +(1,18724:6630773,16238244:25952256,4164780,196608 +g1,18724:6630773,16238244 +g1,18724:6630773,16238244 +g1,18724:6434165,16238244 +(1,18724:6434165,16238244:0,4164780,196608 +r1,18759:32779637,16238244:26345472,4361388,196608 +k1,18724:6434165,16238244:-26345472 +) +(1,18724:6434165,16238244:26345472,4164780,196608 +[1,18724:6630773,16238244:25952256,3968172,0 +(1,18717:6630773,12701117:25952256,431045,112852 +(1,18716:6630773,12701117:0,0,0 +g1,18716:6630773,12701117 +g1,18716:6630773,12701117 +g1,18716:6303093,12701117 +(1,18716:6303093,12701117:0,0,0 +) +g1,18716:6630773,12701117 +) +k1,18717:6630773,12701117:0 +g1,18717:10614221,12701117 +g1,18717:11278129,12701117 +g1,18717:12937899,12701117 +g1,18717:15593531,12701117 +g1,18717:16257439,12701117 +g1,18717:18249163,12701117 +g1,18717:18913071,12701117 +g1,18717:19908933,12701117 +g1,18717:20572841,12701117 +g1,18717:21236749,12701117 +g1,18717:22564565,12701117 +h1,18717:22896519,12701117:0,0,0 +k1,18717:32583029,12701117:9686510 +g1,18717:32583029,12701117 +) +(1,18718:6630773,13385972:25952256,431045,106246 +h1,18718:6630773,13385972:0,0,0 +g1,18718:6962727,13385972 +g1,18718:7294681,13385972 +g1,18718:16257438,13385972 +g1,18718:16921346,13385972 +g1,18718:17585254,13385972 +g1,18718:18249162,13385972 +g1,18718:20904794,13385972 +g1,18718:21900656,13385972 +g1,18718:23228472,13385972 +g1,18718:23892380,13385972 +g1,18718:26216058,13385972 +g1,18718:28539736,13385972 +g1,18718:29203644,13385972 +k1,18718:29203644,13385972:0 +h1,18718:31195368,13385972:0,0,0 +k1,18718:32583029,13385972:1387661 +g1,18718:32583029,13385972 +) +(1,18719:6630773,14070827:25952256,431045,112852 +h1,18719:6630773,14070827:0,0,0 +g1,18719:6962727,14070827 +g1,18719:7294681,14070827 +g1,18719:7626635,14070827 +g1,18719:7958589,14070827 +g1,18719:8290543,14070827 +g1,18719:8622497,14070827 +g1,18719:8954451,14070827 +g1,18719:9286405,14070827 +g1,18719:9618359,14070827 +g1,18719:9950313,14070827 +g1,18719:10282267,14070827 +g1,18719:10614221,14070827 +g1,18719:10946175,14070827 +g1,18719:11278129,14070827 +g1,18719:11610083,14070827 +g1,18719:11942037,14070827 +g1,18719:12273991,14070827 +g1,18719:12605945,14070827 +g1,18719:12937899,14070827 +g1,18719:13269853,14070827 +g1,18719:13601807,14070827 +g1,18719:16257439,14070827 +g1,18719:16921347,14070827 +g1,18719:20572841,14070827 +g1,18719:21236749,14070827 +k1,18719:21236749,14070827:0 +h1,18719:28207781,14070827:0,0,0 +k1,18719:32583029,14070827:4375248 +g1,18719:32583029,14070827 +) +(1,18720:6630773,14755682:25952256,424439,112852 +h1,18720:6630773,14755682:0,0,0 +g1,18720:6962727,14755682 +g1,18720:7294681,14755682 +g1,18720:7626635,14755682 +g1,18720:7958589,14755682 +g1,18720:8290543,14755682 +g1,18720:8622497,14755682 +g1,18720:8954451,14755682 +g1,18720:9286405,14755682 +g1,18720:9618359,14755682 +g1,18720:9950313,14755682 +g1,18720:10282267,14755682 +g1,18720:10614221,14755682 +g1,18720:10946175,14755682 +g1,18720:11278129,14755682 +g1,18720:11610083,14755682 +g1,18720:11942037,14755682 +g1,18720:12273991,14755682 +g1,18720:12605945,14755682 +g1,18720:12937899,14755682 +g1,18720:13269853,14755682 +g1,18720:13601807,14755682 +g1,18720:17585254,14755682 +g1,18720:18249162,14755682 +g1,18720:20240886,14755682 +h1,18720:20572840,14755682:0,0,0 +k1,18720:32583029,14755682:12010189 +g1,18720:32583029,14755682 +) +(1,18721:6630773,15440537:25952256,424439,112852 +h1,18721:6630773,15440537:0,0,0 +g1,18721:6962727,15440537 +g1,18721:7294681,15440537 +g1,18721:15925483,15440537 +g1,18721:16589391,15440537 +g1,18721:18913069,15440537 +g1,18721:20572839,15440537 +g1,18721:21236747,15440537 +g1,18721:23892379,15440537 +g1,18721:26216057,15440537 +g1,18721:26879965,15440537 +g1,18721:28539735,15440537 +k1,18721:28539735,15440537:0 +h1,18721:29535597,15440537:0,0,0 +k1,18721:32583029,15440537:3047432 +g1,18721:32583029,15440537 +) +(1,18722:6630773,16125392:25952256,424439,112852 +h1,18722:6630773,16125392:0,0,0 +g1,18722:6962727,16125392 +g1,18722:7294681,16125392 +g1,18722:7626635,16125392 +g1,18722:7958589,16125392 +g1,18722:8290543,16125392 +g1,18722:8622497,16125392 +g1,18722:8954451,16125392 +g1,18722:9286405,16125392 +g1,18722:9618359,16125392 +g1,18722:9950313,16125392 +g1,18722:10282267,16125392 +g1,18722:10614221,16125392 +g1,18722:10946175,16125392 +g1,18722:11278129,16125392 +g1,18722:11610083,16125392 +g1,18722:11942037,16125392 +g1,18722:12273991,16125392 +g1,18722:12605945,16125392 +g1,18722:12937899,16125392 +g1,18722:13269853,16125392 +g1,18722:13601807,16125392 +g1,18722:13933761,16125392 +g1,18722:14265715,16125392 +g1,18722:16257439,16125392 +g1,18722:16921347,16125392 +h1,18722:20904794,16125392:0,0,0 +k1,18722:32583029,16125392:11678235 +g1,18722:32583029,16125392 +) +] +) +g1,18724:32583029,16238244 +g1,18724:6630773,16238244 +g1,18724:6630773,16238244 +g1,18724:32583029,16238244 +g1,18724:32583029,16238244 +) +h1,18724:6630773,16434852:0,0,0 +(1,18727:6630773,25584054:25952256,9083666,0 +k1,18727:10523651,25584054:3892878 +h1,18726:10523651,25584054:0,0,0 +(1,18726:10523651,25584054:18166500,9083666,0 +(1,18726:10523651,25584054:18167376,9083688,0 +(1,18726:10523651,25584054:18167376,9083688,0 +(1,18726:10523651,25584054:0,9083688,0 +(1,18726:10523651,25584054:0,14208860,0 +(1,18726:10523651,25584054:28417720,14208860,0 +) +k1,18726:10523651,25584054:-28417720 +) +) +g1,18726:28691027,25584054 +) +) +) +g1,18727:28690151,25584054 +k1,18727:32583029,25584054:3892878 +) +(1,18734:6630773,26449134:25952256,505283,138281 +h1,18733:6630773,26449134:983040,0,0 +k1,18733:8576428,26449134:334780 +k1,18733:9930292,26449134:334779 +k1,18733:12506403,26449134:334780 +k1,18733:14118479,26449134:334779 +k1,18733:17336843,26449134:334780 +k1,18733:20565692,26449134:334779 +k1,18733:21892032,26449134:334780 +k1,18733:24812207,26449134:334780 +k1,18733:25798414,26449134:334779 +k1,18733:27152279,26449134:334780 +$1,18733:27152279,26449134 +$1,18733:27704092,26449134 +k1,18733:28038871,26449134:334779 +k1,18733:31391584,26449134:334780 +k1,18733:32583029,26449134:0 +) +(1,18734:6630773,27314214:25952256,505283,134348 +k1,18733:9495827,27314214:271794 +k1,18733:10453783,27314214:271794 +k1,18733:12754572,27314214:271794 +k1,18733:13677793,27314214:271793 +k1,18733:14968672,27314214:271794 +k1,18733:17271427,27314214:271794 +k1,18733:20561154,27314214:271794 +k1,18733:21320463,27314214:271721 +k1,18733:22691951,27314214:271794 +k1,18733:23615173,27314214:271794 +(1,18733:23615173,27314214:0,452978,122846 +r1,18759:26083710,27314214:2468537,575824,122846 +k1,18733:23615173,27314214:-2468537 +) +(1,18733:23615173,27314214:2468537,452978,122846 +k1,18733:23615173,27314214:3277 +h1,18733:26080433,27314214:0,411205,112570 +) +k1,18733:26355503,27314214:271793 +k1,18733:27731579,27314214:271794 +k1,18733:31563944,27314214:271794 +k1,18733:32583029,27314214:0 +) +(1,18734:6630773,28179294:25952256,513147,134348 +k1,18733:9681758,28179294:243423 +k1,18733:11819828,28179294:243424 +k1,18733:12722543,28179294:243423 +k1,18733:13985051,28179294:243423 +k1,18733:16751611,28179294:243424 +(1,18733:16958705,28179294:0,414482,115847 +r1,18759:18723818,28179294:1765113,530329,115847 +k1,18733:16958705,28179294:-1765113 +) +(1,18733:16958705,28179294:1765113,414482,115847 +k1,18733:16958705,28179294:3277 +h1,18733:18720541,28179294:0,411205,112570 +) +k1,18733:19174335,28179294:243423 +k1,18733:20985379,28179294:243423 +k1,18733:22513308,28179294:243423 +k1,18733:24269958,28179294:243424 +k1,18733:25532466,28179294:243423 +k1,18733:28472696,28179294:243423 +k1,18733:29785668,28179294:243424 +k1,18733:31923737,28179294:243423 +k1,18733:32583029,28179294:0 +) +(1,18734:6630773,29044374:25952256,513147,134348 +k1,18733:7833952,29044374:184094 +k1,18733:11181470,29044374:184095 +k1,18733:12183453,29044374:184094 +k1,18733:14396542,29044374:184094 +k1,18733:15599721,29044374:184094 +k1,18733:18049396,29044374:184095 +k1,18733:21396913,29044374:184094 +(1,18733:21396913,29044374:0,452978,122846 +r1,18759:25624009,29044374:4227096,575824,122846 +k1,18733:21396913,29044374:-4227096 +) +(1,18733:21396913,29044374:4227096,452978,122846 +k1,18733:21396913,29044374:3277 +h1,18733:25620732,29044374:0,411205,112570 +) +k1,18733:25808103,29044374:184094 +k1,18733:26523694,29044374:184094 +k1,18733:28394686,29044374:184095 +k1,18733:29775467,29044374:184094 +k1,18733:32583029,29044374:0 +) +(1,18734:6630773,29909454:25952256,513147,126483 +k1,18733:7410124,29909454:163313 +k1,18733:8776677,29909454:163312 +k1,18733:11601407,29909454:163313 +k1,18733:12869001,29909454:163312 +k1,18733:13780080,29909454:163313 +k1,18733:15355694,29909454:163313 +k1,18733:16378838,29909454:163312 +k1,18733:17561236,29909454:163313 +k1,18733:20235888,29909454:163312 +(1,18733:20235888,29909454:0,414482,115847 +r1,18759:20594154,29909454:358266,530329,115847 +k1,18733:20235888,29909454:-358266 +) +(1,18733:20235888,29909454:358266,414482,115847 +k1,18733:20235888,29909454:3277 +h1,18733:20590877,29909454:0,411205,112570 +) +k1,18733:20757467,29909454:163313 +k1,18733:22488400,29909454:163312 +k1,18733:23670798,29909454:163313 +k1,18733:25223474,29909454:163313 +k1,18733:27263082,29909454:163312 +(1,18733:27263082,29909454:0,459977,115847 +r1,18759:28324771,29909454:1061689,575824,115847 +k1,18733:27263082,29909454:-1061689 +) +(1,18733:27263082,29909454:1061689,459977,115847 +k1,18733:27263082,29909454:3277 +h1,18733:28321494,29909454:0,411205,112570 +) +k1,18733:28488084,29909454:163313 +k1,18733:29182893,29909454:163312 +k1,18733:31931601,29909454:163313 +k1,18733:32583029,29909454:0 +) +(1,18734:6630773,30774534:25952256,513147,134348 +k1,18733:7835607,30774534:185749 +k1,18733:8385737,30774534:185749 +k1,18733:11415749,30774534:185749 +k1,18733:12214260,30774534:185749 +k1,18733:13166125,30774534:185749 +k1,18733:15520460,30774534:185749 +k1,18733:18318474,30774534:185749 +(1,18733:18318474,30774534:0,414482,115847 +r1,18759:18676740,30774534:358266,530329,115847 +k1,18733:18318474,30774534:-358266 +) +(1,18733:18318474,30774534:358266,414482,115847 +k1,18733:18318474,30774534:3277 +h1,18733:18673463,30774534:0,411205,112570 +) +k1,18733:18862489,30774534:185749 +k1,18733:20615858,30774534:185748 +k1,18733:21820692,30774534:185749 +k1,18733:23395804,30774534:185749 +k1,18733:25457849,30774534:185749 +(1,18733:25457849,30774534:0,459977,115847 +r1,18759:26519538,30774534:1061689,575824,115847 +k1,18733:25457849,30774534:-1061689 +) +(1,18733:25457849,30774534:1061689,459977,115847 +k1,18733:25457849,30774534:3277 +h1,18733:26516261,30774534:0,411205,112570 +) +k1,18733:26705287,30774534:185749 +k1,18733:27422533,30774534:185749 +k1,18733:30193677,30774534:185749 +k1,18733:31030854,30774534:185749 +k1,18733:32235688,30774534:185749 +k1,18734:32583029,30774534:0 +) +(1,18734:6630773,31639614:25952256,513147,126483 +k1,18733:9668775,31639614:193739 +k1,18733:11757161,31639614:193740 +k1,18733:12610192,31639614:193739 +k1,18733:13823016,31639614:193739 +k1,18733:18410945,31639614:193740 +k1,18733:19220722,31639614:193739 +(1,18733:19220722,31639614:0,459977,115847 +r1,18759:26261513,31639614:7040791,575824,115847 +k1,18733:19220722,31639614:-7040791 +) +(1,18733:19220722,31639614:7040791,459977,115847 +k1,18733:19220722,31639614:3277 +h1,18733:26258236,31639614:0,411205,112570 +) +k1,18733:26628922,31639614:193739 +k1,18733:28467616,31639614:193740 +k1,18733:29680440,31639614:193739 +k1,18734:32583029,31639614:0 +) +(1,18734:6630773,32504694:25952256,513147,126483 +k1,18733:8569402,32504694:167191 +k1,18733:11578234,32504694:167191 +(1,18733:11578234,32504694:0,414482,115847 +r1,18759:11936500,32504694:358266,530329,115847 +k1,18733:11578234,32504694:-358266 +) +(1,18733:11578234,32504694:358266,414482,115847 +k1,18733:11578234,32504694:3277 +h1,18733:11933223,32504694:0,411205,112570 +) +k1,18733:12103691,32504694:167191 +k1,18733:13462327,32504694:167191 +(1,18733:13462327,32504694:0,452978,122846 +r1,18759:15930864,32504694:2468537,575824,122846 +k1,18733:13462327,32504694:-2468537 +) +(1,18733:13462327,32504694:2468537,452978,122846 +k1,18733:13462327,32504694:3277 +h1,18733:15927587,32504694:0,411205,112570 +) +k1,18733:16098055,32504694:167191 +k1,18733:16881284,32504694:167191 +k1,18733:18067560,32504694:167191 +k1,18733:19624114,32504694:167191 +k1,18733:21667601,32504694:167191 +k1,18733:24613519,32504694:167191 +k1,18733:25542238,32504694:167191 +(1,18733:25542238,32504694:0,459977,115847 +r1,18759:32583029,32504694:7040791,575824,115847 +k1,18733:25542238,32504694:-7040791 +) +(1,18733:25542238,32504694:7040791,459977,115847 +k1,18733:25542238,32504694:3277 +h1,18733:32579752,32504694:0,411205,112570 +) +k1,18733:32583029,32504694:0 +) +(1,18734:6630773,33369774:25952256,513147,126483 +g1,18733:7821562,33369774 +g1,18733:11313975,33369774 +g1,18733:12704649,33369774 +g1,18733:15489273,33369774 +g1,18733:16339930,33369774 +g1,18733:17558244,33369774 +g1,18733:18165107,33369774 +g1,18733:20258982,33369774 +g1,18733:21125367,33369774 +(1,18733:21125367,33369774:0,452978,122846 +r1,18759:25352463,33369774:4227096,575824,122846 +k1,18733:21125367,33369774:-4227096 +) +(1,18733:21125367,33369774:4227096,452978,122846 +k1,18733:21125367,33369774:3277 +h1,18733:25349186,33369774:0,411205,112570 +) +k1,18734:32583029,33369774:7056896 +g1,18734:32583029,33369774 +) +v1,18736:6630773,34054629:0,393216,0 +(1,18749:6630773,40565613:25952256,6904200,196608 +g1,18749:6630773,40565613 +g1,18749:6630773,40565613 +g1,18749:6434165,40565613 +(1,18749:6434165,40565613:0,6904200,196608 +r1,18759:32779637,40565613:26345472,7100808,196608 +k1,18749:6434165,40565613:-26345472 +) +(1,18749:6434165,40565613:26345472,6904200,196608 +[1,18749:6630773,40565613:25952256,6707592,0 +(1,18738:6630773,34289066:25952256,431045,112852 +(1,18737:6630773,34289066:0,0,0 +g1,18737:6630773,34289066 +g1,18737:6630773,34289066 +g1,18737:6303093,34289066 +(1,18737:6303093,34289066:0,0,0 +) +g1,18737:6630773,34289066 +) +k1,18738:6630773,34289066:0 +g1,18738:10614221,34289066 +h1,18738:10946175,34289066:0,0,0 +k1,18738:32583029,34289066:21636854 +g1,18738:32583029,34289066 +) +(1,18739:6630773,34973921:25952256,431045,106246 +h1,18739:6630773,34973921:0,0,0 +g1,18739:6962727,34973921 +g1,18739:7294681,34973921 +g1,18739:16257438,34973921 +g1,18739:16921346,34973921 +g1,18739:17585254,34973921 +g1,18739:18249162,34973921 +g1,18739:20904794,34973921 +g1,18739:21900656,34973921 +g1,18739:23228472,34973921 +g1,18739:23892380,34973921 +k1,18739:23892380,34973921:0 +h1,18739:25884104,34973921:0,0,0 +k1,18739:32583029,34973921:6698925 +g1,18739:32583029,34973921 +) +(1,18740:6630773,35658776:25952256,424439,86428 +h1,18740:6630773,35658776:0,0,0 +g1,18740:6962727,35658776 +g1,18740:7294681,35658776 +g1,18740:7626635,35658776 +g1,18740:7958589,35658776 +g1,18740:8290543,35658776 +g1,18740:8622497,35658776 +g1,18740:8954451,35658776 +g1,18740:9286405,35658776 +g1,18740:9618359,35658776 +g1,18740:9950313,35658776 +g1,18740:10282267,35658776 +g1,18740:10614221,35658776 +g1,18740:10946175,35658776 +g1,18740:11278129,35658776 +g1,18740:11610083,35658776 +g1,18740:11942037,35658776 +g1,18740:12273991,35658776 +g1,18740:12605945,35658776 +g1,18740:12937899,35658776 +g1,18740:13269853,35658776 +g1,18740:13601807,35658776 +g1,18740:15925485,35658776 +g1,18740:16589393,35658776 +k1,18740:16589393,35658776:0 +h1,18740:18581117,35658776:0,0,0 +k1,18740:32583029,35658776:14001912 +g1,18740:32583029,35658776 +) +(1,18741:6630773,36343631:25952256,424439,112852 +h1,18741:6630773,36343631:0,0,0 +g1,18741:6962727,36343631 +g1,18741:7294681,36343631 +g1,18741:7626635,36343631 +g1,18741:7958589,36343631 +g1,18741:8290543,36343631 +g1,18741:8622497,36343631 +g1,18741:8954451,36343631 +g1,18741:9286405,36343631 +g1,18741:9618359,36343631 +g1,18741:9950313,36343631 +g1,18741:10282267,36343631 +g1,18741:10614221,36343631 +g1,18741:10946175,36343631 +g1,18741:11278129,36343631 +g1,18741:11610083,36343631 +g1,18741:11942037,36343631 +g1,18741:12273991,36343631 +g1,18741:12605945,36343631 +g1,18741:12937899,36343631 +g1,18741:13269853,36343631 +g1,18741:13601807,36343631 +g1,18741:16257439,36343631 +g1,18741:16921347,36343631 +g1,18741:18913071,36343631 +g1,18741:19576979,36343631 +k1,18741:19576979,36343631:0 +h1,18741:20240887,36343631:0,0,0 +k1,18741:32583029,36343631:12342142 +g1,18741:32583029,36343631 +) +(1,18742:6630773,37028486:25952256,424439,112852 +h1,18742:6630773,37028486:0,0,0 +g1,18742:6962727,37028486 +g1,18742:7294681,37028486 +g1,18742:7626635,37028486 +g1,18742:7958589,37028486 +g1,18742:8290543,37028486 +g1,18742:8622497,37028486 +g1,18742:8954451,37028486 +g1,18742:9286405,37028486 +g1,18742:9618359,37028486 +g1,18742:9950313,37028486 +g1,18742:10282267,37028486 +g1,18742:10614221,37028486 +g1,18742:10946175,37028486 +g1,18742:11278129,37028486 +g1,18742:11610083,37028486 +g1,18742:11942037,37028486 +g1,18742:12273991,37028486 +g1,18742:12605945,37028486 +g1,18742:12937899,37028486 +g1,18742:13269853,37028486 +g1,18742:13601807,37028486 +g1,18742:13933761,37028486 +g1,18742:14265715,37028486 +g1,18742:14597669,37028486 +g1,18742:14929623,37028486 +g1,18742:15261577,37028486 +g1,18742:15593531,37028486 +g1,18742:15925485,37028486 +g1,18742:16257439,37028486 +g1,18742:16589393,37028486 +g1,18742:16921347,37028486 +g1,18742:17253301,37028486 +g1,18742:17585255,37028486 +g1,18742:17917209,37028486 +g1,18742:18249163,37028486 +g1,18742:18913071,37028486 +g1,18742:19576979,37028486 +g1,18742:23560427,37028486 +g1,18742:24224335,37028486 +k1,18742:24224335,37028486:0 +h1,18742:24888243,37028486:0,0,0 +k1,18742:32583029,37028486:7694786 +g1,18742:32583029,37028486 +) +(1,18743:6630773,37713341:25952256,431045,112852 +h1,18743:6630773,37713341:0,0,0 +g1,18743:6962727,37713341 +g1,18743:7294681,37713341 +g1,18743:7626635,37713341 +g1,18743:7958589,37713341 +g1,18743:8290543,37713341 +g1,18743:8622497,37713341 +g1,18743:8954451,37713341 +g1,18743:9286405,37713341 +g1,18743:9618359,37713341 +g1,18743:9950313,37713341 +g1,18743:10282267,37713341 +g1,18743:10614221,37713341 +g1,18743:10946175,37713341 +g1,18743:11278129,37713341 +g1,18743:11610083,37713341 +g1,18743:11942037,37713341 +g1,18743:12273991,37713341 +g1,18743:12605945,37713341 +g1,18743:12937899,37713341 +g1,18743:13269853,37713341 +g1,18743:13601807,37713341 +g1,18743:13933761,37713341 +g1,18743:14265715,37713341 +g1,18743:14597669,37713341 +g1,18743:14929623,37713341 +g1,18743:15261577,37713341 +g1,18743:15593531,37713341 +g1,18743:15925485,37713341 +g1,18743:16257439,37713341 +g1,18743:16589393,37713341 +g1,18743:16921347,37713341 +g1,18743:17253301,37713341 +g1,18743:17585255,37713341 +g1,18743:17917209,37713341 +g1,18743:18249163,37713341 +g1,18743:18581117,37713341 +g1,18743:18913071,37713341 +g1,18743:19245025,37713341 +g1,18743:19576979,37713341 +g1,18743:19908933,37713341 +g1,18743:20240887,37713341 +g1,18743:20572841,37713341 +g1,18743:20904795,37713341 +g1,18743:21236749,37713341 +g1,18743:21568703,37713341 +g1,18743:25220196,37713341 +g1,18743:25884104,37713341 +g1,18743:26548012,37713341 +g1,18743:27211920,37713341 +k1,18743:27211920,37713341:0 +h1,18743:30199505,37713341:0,0,0 +k1,18743:32583029,37713341:2383524 +g1,18743:32583029,37713341 +) +(1,18744:6630773,38398196:25952256,431045,112852 +h1,18744:6630773,38398196:0,0,0 +g1,18744:6962727,38398196 +g1,18744:7294681,38398196 +g1,18744:7626635,38398196 +g1,18744:7958589,38398196 +g1,18744:8290543,38398196 +g1,18744:8622497,38398196 +g1,18744:8954451,38398196 +g1,18744:9286405,38398196 +g1,18744:9618359,38398196 +g1,18744:9950313,38398196 +g1,18744:10282267,38398196 +g1,18744:10614221,38398196 +g1,18744:10946175,38398196 +g1,18744:11278129,38398196 +g1,18744:11610083,38398196 +g1,18744:11942037,38398196 +g1,18744:12273991,38398196 +g1,18744:12605945,38398196 +g1,18744:12937899,38398196 +g1,18744:13269853,38398196 +g1,18744:13601807,38398196 +g1,18744:13933761,38398196 +g1,18744:14265715,38398196 +g1,18744:14597669,38398196 +g1,18744:14929623,38398196 +g1,18744:15261577,38398196 +g1,18744:15593531,38398196 +g1,18744:15925485,38398196 +g1,18744:16257439,38398196 +g1,18744:16589393,38398196 +g1,18744:16921347,38398196 +g1,18744:17253301,38398196 +g1,18744:17585255,38398196 +g1,18744:17917209,38398196 +g1,18744:18249163,38398196 +g1,18744:20572841,38398196 +g1,18744:21236749,38398196 +k1,18744:21236749,38398196:0 +h1,18744:28207781,38398196:0,0,0 +k1,18744:32583029,38398196:4375248 +g1,18744:32583029,38398196 +) +(1,18745:6630773,39083051:25952256,424439,112852 +h1,18745:6630773,39083051:0,0,0 +g1,18745:6962727,39083051 +g1,18745:7294681,39083051 +g1,18745:7626635,39083051 +g1,18745:7958589,39083051 +g1,18745:8290543,39083051 +g1,18745:8622497,39083051 +g1,18745:8954451,39083051 +g1,18745:9286405,39083051 +g1,18745:9618359,39083051 +g1,18745:9950313,39083051 +g1,18745:10282267,39083051 +g1,18745:10614221,39083051 +g1,18745:10946175,39083051 +g1,18745:11278129,39083051 +g1,18745:11610083,39083051 +g1,18745:11942037,39083051 +g1,18745:12273991,39083051 +g1,18745:12605945,39083051 +g1,18745:12937899,39083051 +g1,18745:13269853,39083051 +g1,18745:13601807,39083051 +g1,18745:17585254,39083051 +g1,18745:18249162,39083051 +g1,18745:20240886,39083051 +h1,18745:20572840,39083051:0,0,0 +k1,18745:32583029,39083051:12010189 +g1,18745:32583029,39083051 +) +(1,18746:6630773,39767906:25952256,424439,112852 +h1,18746:6630773,39767906:0,0,0 +g1,18746:6962727,39767906 +g1,18746:7294681,39767906 +g1,18746:15925483,39767906 +g1,18746:16589391,39767906 +g1,18746:18913069,39767906 +g1,18746:20572839,39767906 +g1,18746:21236747,39767906 +g1,18746:23892379,39767906 +g1,18746:26216057,39767906 +g1,18746:26879965,39767906 +g1,18746:28539735,39767906 +k1,18746:28539735,39767906:0 +h1,18746:29535597,39767906:0,0,0 +k1,18746:32583029,39767906:3047432 +g1,18746:32583029,39767906 +) +(1,18747:6630773,40452761:25952256,424439,112852 +h1,18747:6630773,40452761:0,0,0 +g1,18747:6962727,40452761 +g1,18747:7294681,40452761 +g1,18747:7626635,40452761 +g1,18747:7958589,40452761 +g1,18747:8290543,40452761 +g1,18747:8622497,40452761 +g1,18747:8954451,40452761 +g1,18747:9286405,40452761 +g1,18747:9618359,40452761 +g1,18747:9950313,40452761 +g1,18747:10282267,40452761 +g1,18747:10614221,40452761 +g1,18747:10946175,40452761 +g1,18747:11278129,40452761 +g1,18747:11610083,40452761 +g1,18747:11942037,40452761 +g1,18747:12273991,40452761 +g1,18747:12605945,40452761 +g1,18747:12937899,40452761 +g1,18747:13269853,40452761 +g1,18747:13601807,40452761 +g1,18747:13933761,40452761 +g1,18747:14265715,40452761 +g1,18747:14597669,40452761 +g1,18747:16589393,40452761 +g1,18747:17253301,40452761 +h1,18747:21236748,40452761:0,0,0 +k1,18747:32583029,40452761:11346281 +g1,18747:32583029,40452761 +) +] +) +g1,18749:32583029,40565613 +g1,18749:6630773,40565613 +g1,18749:6630773,40565613 +g1,18749:32583029,40565613 +g1,18749:32583029,40565613 +) +h1,18749:6630773,40762221:0,0,0 +] +(1,18759:32583029,45706769:0,0,0 +g1,18759:32583029,45706769 +) +) +] +(1,18759:6630773,47279633:25952256,0,0 +h1,18759:6630773,47279633:25952256,0,0 +) +] +(1,18759:4262630,4025873:0,0,0 +[1,18759:-473656,4025873:0,0,0 +(1,18759:-473656,-710413:0,0,0 +(1,18759:-473656,-710413:0,0,0 +g1,18759:-473656,-710413 +) +g1,18759:-473656,-710413 ) ] ) ] !30345 -}308 -Input:3153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3154:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3155:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3156:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}309 Input:3157:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3158:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3159:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -326009,2453 +326213,2453 @@ Input:3208:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3209:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !5440 -{309 -[1,18822:4262630,47279633:28320399,43253760,0 -(1,18822:4262630,4025873:0,0,0 -[1,18822:-473656,4025873:0,0,0 -(1,18822:-473656,-710413:0,0,0 -(1,18822:-473656,-644877:0,0,0 -k1,18822:-473656,-644877:-65536 +{310 +[1,18820:4262630,47279633:28320399,43253760,0 +(1,18820:4262630,4025873:0,0,0 +[1,18820:-473656,4025873:0,0,0 +(1,18820:-473656,-710413:0,0,0 +(1,18820:-473656,-644877:0,0,0 +k1,18820:-473656,-644877:-65536 ) -(1,18822:-473656,4736287:0,0,0 -k1,18822:-473656,4736287:5209943 +(1,18820:-473656,4736287:0,0,0 +k1,18820:-473656,4736287:5209943 ) -g1,18822:-473656,-710413 +g1,18820:-473656,-710413 ) ] ) -[1,18822:6630773,47279633:25952256,43253760,0 -[1,18822:6630773,4812305:25952256,786432,0 -(1,18822:6630773,4812305:25952256,513147,126483 -(1,18822:6630773,4812305:25952256,513147,126483 -g1,18822:3078558,4812305 -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,2439708:0,1703936,0 -k1,18822:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18822:2537886,2439708:1179648,16384,0 +[1,18820:6630773,47279633:25952256,43253760,0 +[1,18820:6630773,4812305:25952256,786432,0 +(1,18820:6630773,4812305:25952256,513147,126483 +(1,18820:6630773,4812305:25952256,513147,126483 +g1,18820:3078558,4812305 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,2439708:0,1703936,0 +k1,18820:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18820:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18822:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18820:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,2439708:0,1703936,0 -g1,18822:29030814,2439708 -g1,18822:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18822:36151628,1915420:16384,1179648,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,2439708:0,1703936,0 +g1,18820:29030814,2439708 +g1,18820:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18820:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18822:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18820:37855564,2439708:1179648,16384,0 ) ) -k1,18822:3078556,2439708:-34777008 +k1,18820:3078556,2439708:-34777008 ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,49800853:0,16384,2228224 -k1,18822:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18822:2537886,49800853:1179648,16384,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,49800853:0,16384,2228224 +k1,18820:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18820:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18822:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18820:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,49800853:0,16384,2228224 -g1,18822:29030814,49800853 -g1,18822:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18822:36151628,51504789:16384,1179648,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,49800853:0,16384,2228224 +g1,18820:29030814,49800853 +g1,18820:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18820:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18822:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18820:37855564,49800853:1179648,16384,0 ) ) -k1,18822:3078556,49800853:-34777008 +k1,18820:3078556,49800853:-34777008 ) ] -g1,18822:6630773,4812305 -k1,18822:21386205,4812305:13560055 -g1,18822:21999622,4812305 -g1,18822:25611966,4812305 -g1,18822:28956923,4812305 -g1,18822:29772190,4812305 +g1,18820:6630773,4812305 +k1,18820:21386205,4812305:13560055 +g1,18820:21999622,4812305 +g1,18820:25611966,4812305 +g1,18820:28956923,4812305 +g1,18820:29772190,4812305 ) ) ] -[1,18822:6630773,45706769:25952256,40108032,0 -(1,18822:6630773,45706769:25952256,40108032,0 -(1,18822:6630773,45706769:0,0,0 -g1,18822:6630773,45706769 +[1,18820:6630773,45706769:25952256,40108032,0 +(1,18820:6630773,45706769:25952256,40108032,0 +(1,18820:6630773,45706769:0,0,0 +g1,18820:6630773,45706769 ) -[1,18822:6630773,45706769:25952256,40108032,0 -(1,18754:6630773,14682403:25952256,9083666,0 -k1,18754:10523651,14682403:3892878 -h1,18753:10523651,14682403:0,0,0 -(1,18753:10523651,14682403:18166500,9083666,0 -(1,18753:10523651,14682403:18167376,9083688,0 -(1,18753:10523651,14682403:18167376,9083688,0 -(1,18753:10523651,14682403:0,9083688,0 -(1,18753:10523651,14682403:0,14208860,0 -(1,18753:10523651,14682403:28417720,14208860,0 +[1,18820:6630773,45706769:25952256,40108032,0 +(1,18752:6630773,14682403:25952256,9083666,0 +k1,18752:10523651,14682403:3892878 +h1,18751:10523651,14682403:0,0,0 +(1,18751:10523651,14682403:18166500,9083666,0 +(1,18751:10523651,14682403:18167376,9083688,0 +(1,18751:10523651,14682403:18167376,9083688,0 +(1,18751:10523651,14682403:0,9083688,0 +(1,18751:10523651,14682403:0,14208860,0 +(1,18751:10523651,14682403:28417720,14208860,0 ) -k1,18753:10523651,14682403:-28417720 +k1,18751:10523651,14682403:-28417720 ) ) -g1,18753:28691027,14682403 +g1,18751:28691027,14682403 ) ) ) -g1,18754:28690151,14682403 -k1,18754:32583029,14682403:3892878 +g1,18752:28690151,14682403 +k1,18752:32583029,14682403:3892878 ) -v1,18761:6630773,15547483:0,393216,0 -(1,18762:6630773,17720289:25952256,2566022,0 -g1,18762:6630773,17720289 -g1,18762:6237557,17720289 -r1,18822:6368629,17720289:131072,2566022,0 -g1,18762:6567858,17720289 -g1,18762:6764466,17720289 -[1,18762:6764466,17720289:25818563,2566022,0 -(1,18762:6764466,15855781:25818563,701514,196608 -(1,18761:6764466,15855781:0,701514,196608 -r1,18822:7761522,15855781:997056,898122,196608 -k1,18761:6764466,15855781:-997056 -) -(1,18761:6764466,15855781:997056,701514,196608 -) -k1,18761:7936320,15855781:174798 -k1,18761:8264000,15855781:327680 -k1,18761:10222034,15855781:174799 -k1,18761:12331455,15855781:174798 -k1,18761:14824261,15855781:174798 -k1,18761:15650488,15855781:174799 -k1,18761:19897038,15855781:174798 -k1,18761:21465788,15855781:174799 -(1,18761:21465788,15855781:0,452978,115847 -r1,18822:22879189,15855781:1413401,568825,115847 -k1,18761:21465788,15855781:-1413401 -) -(1,18761:21465788,15855781:1413401,452978,115847 -k1,18761:21465788,15855781:3277 -h1,18761:22875912,15855781:0,411205,112570 -) -k1,18761:23227657,15855781:174798 -k1,18761:24421540,15855781:174798 -k1,18761:28522601,15855781:174799 -k1,18761:31591469,15855781:174798 -k1,18761:32583029,15855781:0 -) -(1,18762:6764466,16720861:25818563,513147,134348 -k1,18761:8514932,16720861:237240 -k1,18761:9403600,16720861:237240 -k1,18761:12428743,16720861:237241 -k1,18761:13685068,16720861:237240 -k1,18761:15287423,16720861:237240 -k1,18761:16183955,16720861:237240 -k1,18761:18892559,16720861:237241 -k1,18761:21172556,16720861:237240 -k1,18761:23855600,16720861:237240 -k1,18761:25084400,16720861:237240 -k1,18761:27526928,16720861:237241 -k1,18761:28450330,16720861:237240 -k1,18761:29458273,16720861:237240 -k1,18761:32583029,16720861:0 -) -(1,18762:6764466,17585941:25818563,513147,134348 -g1,18761:7591530,17585941 -(1,18761:7591530,17585941:0,452978,115847 -r1,18822:9356643,17585941:1765113,568825,115847 -k1,18761:7591530,17585941:-1765113 -) -(1,18761:7591530,17585941:1765113,452978,115847 -k1,18761:7591530,17585941:3277 -h1,18761:9353366,17585941:0,411205,112570 -) -g1,18761:9555872,17585941 -g1,18761:10774186,17585941 -g1,18761:13419219,17585941 -g1,18761:14610008,17585941 -g1,18761:18017880,17585941 -g1,18761:19784730,17585941 -g1,18761:21003044,17585941 -g1,18761:22591636,17585941 -g1,18761:23552393,17585941 -g1,18761:24770707,17585941 -k1,18762:32583029,17585941:5064398 -g1,18762:32583029,17585941 -) -] -g1,18762:32583029,17720289 -) -h1,18762:6630773,17720289:0,0,0 -(1,18767:6630773,20551449:25952256,32768,229376 -(1,18767:6630773,20551449:0,32768,229376 -(1,18767:6630773,20551449:5505024,32768,229376 -r1,18822:12135797,20551449:5505024,262144,229376 -) -k1,18767:6630773,20551449:-5505024 -) -(1,18767:6630773,20551449:25952256,32768,0 -r1,18822:32583029,20551449:25952256,32768,0 -) -) -(1,18767:6630773,22183301:25952256,606339,14155 -(1,18767:6630773,22183301:1974731,582746,14155 -g1,18767:6630773,22183301 -g1,18767:8605504,22183301 -) -k1,18767:32583029,22183301:19476774 -g1,18767:32583029,22183301 -) -(1,18771:6630773,23441597:25952256,513147,134348 -k1,18770:9718581,23441597:242890 -k1,18770:13468957,23441597:242889 -k1,18770:16238260,23441597:242890 -k1,18770:19243493,23441597:242890 -k1,18770:22550846,23441597:242889 -k1,18770:24744087,23441597:242890 -h1,18770:25714675,23441597:0,0,0 -k1,18770:26338328,23441597:242889 -k1,18770:28355933,23441597:242890 -(1,18770:28355933,23441597:0,452978,122846 -r1,18822:32583029,23441597:4227096,575824,122846 -k1,18770:28355933,23441597:-4227096 -) -(1,18770:28355933,23441597:4227096,452978,122846 -k1,18770:28355933,23441597:3277 -h1,18770:32579752,23441597:0,411205,112570 -) -k1,18770:32583029,23441597:0 -) -(1,18771:6630773,24306677:25952256,505283,126483 -k1,18770:9657855,24306677:170368 -(1,18770:9657855,24306677:0,452978,115847 -r1,18822:11422968,24306677:1765113,568825,115847 -k1,18770:9657855,24306677:-1765113 -) -(1,18770:9657855,24306677:1765113,452978,115847 -k1,18770:9657855,24306677:3277 -h1,18770:11419691,24306677:0,411205,112570 -) -k1,18770:11767006,24306677:170368 -k1,18770:13128818,24306677:170367 -(1,18770:13128818,24306677:0,452978,122846 -r1,18822:17004202,24306677:3875384,575824,122846 -k1,18770:13128818,24306677:-3875384 -) -(1,18770:13128818,24306677:3875384,452978,122846 -k1,18770:13128818,24306677:3277 -h1,18770:17000925,24306677:0,411205,112570 -) -k1,18770:17174570,24306677:170368 -k1,18770:20201652,24306677:170368 -(1,18770:20201652,24306677:0,452978,115847 -r1,18822:23021901,24306677:2820249,568825,115847 -k1,18770:20201652,24306677:-2820249 -) -(1,18770:20201652,24306677:2820249,452978,115847 -k1,18770:20201652,24306677:3277 -h1,18770:23018624,24306677:0,411205,112570 -) -k1,18770:23365939,24306677:170368 -k1,18770:25003003,24306677:170368 -k1,18770:27699784,24306677:170368 -(1,18770:27699784,24306677:0,414482,115847 -r1,18822:28058050,24306677:358266,530329,115847 -k1,18770:27699784,24306677:-358266 -) -(1,18770:27699784,24306677:358266,414482,115847 -k1,18770:27699784,24306677:3277 -h1,18770:28054773,24306677:0,411205,112570 -) -k1,18770:28402087,24306677:170367 -(1,18770:28402087,24306677:0,414482,115847 -r1,18822:28760353,24306677:358266,530329,115847 -k1,18770:28402087,24306677:-358266 -) -(1,18770:28402087,24306677:358266,414482,115847 -k1,18770:28402087,24306677:3277 -h1,18770:28757076,24306677:0,411205,112570 -) -k1,18770:29104391,24306677:170368 -(1,18770:29104391,24306677:0,452978,115847 -r1,18822:31221216,24306677:2116825,568825,115847 -k1,18770:29104391,24306677:-2116825 -) -(1,18770:29104391,24306677:2116825,452978,115847 -k1,18770:29104391,24306677:3277 -h1,18770:31217939,24306677:0,411205,112570 -) -k1,18770:31391584,24306677:170368 -k1,18771:32583029,24306677:0 -) -(1,18771:6630773,25171757:25952256,513147,134348 -(1,18770:6630773,25171757:0,452978,115847 -r1,18822:8044174,25171757:1413401,568825,115847 -k1,18770:6630773,25171757:-1413401 -) -(1,18770:6630773,25171757:1413401,452978,115847 -k1,18770:6630773,25171757:3277 -h1,18770:8040897,25171757:0,411205,112570 -) -k1,18770:8404660,25171757:186816 -k1,18770:9219311,25171757:186816 -k1,18770:10609368,25171757:186816 -k1,18770:13074871,25171757:186816 -k1,18770:13474667,25171757:186804 -k1,18770:16330764,25171757:186816 -k1,18770:19822561,25171757:186816 -k1,18770:21522603,25171757:186816 -(1,18770:21522603,25171757:0,452978,122846 -r1,18822:25046275,25171757:3523672,575824,122846 -k1,18770:21522603,25171757:-3523672 -) -(1,18770:21522603,25171757:3523672,452978,122846 -k1,18770:21522603,25171757:3277 -h1,18770:25042998,25171757:0,411205,112570 -) -k1,18770:25233091,25171757:186816 -k1,18770:26987528,25171757:186816 -k1,18770:29754496,25171757:186816 -k1,18770:32583029,25171757:0 -) -(1,18771:6630773,26036837:25952256,513147,134348 -k1,18770:8101456,26036837:279238 -k1,18770:9948315,26036837:279238 -k1,18770:10583413,26036837:279238 -k1,18770:11995769,26036837:279238 -k1,18770:15185461,26036837:279238 -k1,18770:16749205,26036837:279238 -k1,18770:19180645,26036837:279238 -k1,18770:22462086,26036837:279238 -k1,18770:23938011,26036837:279238 -k1,18770:26606036,26036837:279238 -k1,18770:29044030,26036837:279238 -k1,18770:30890889,26036837:279238 -k1,18770:32583029,26036837:0 -) -(1,18771:6630773,26901917:25952256,505283,126483 -k1,18770:8375341,26901917:248381 -k1,18770:11615441,26901917:248381 -k1,18770:12996285,26901917:248382 -k1,18770:14310937,26901917:248381 -k1,18770:15307084,26901917:248381 -k1,18770:17804661,26901917:248381 -k1,18770:19446994,26901917:248382 -k1,18770:20714460,26901917:248381 -k1,18770:24657105,26901917:248381 -k1,18770:26189992,26901917:248381 -k1,18770:28816676,26901917:248382 -k1,18770:30197519,26901917:248381 -k1,18770:31563944,26901917:248381 -k1,18770:32583029,26901917:0 -) -(1,18771:6630773,27766997:25952256,505283,126483 -g1,18770:8326189,27766997 -g1,18770:9176846,27766997 -g1,18770:10401058,27766997 -g1,18770:11619372,27766997 -k1,18771:32583029,27766997:19303630 -g1,18771:32583029,27766997 -) -(1,18773:6630773,28632077:25952256,513147,134348 -h1,18772:6630773,28632077:983040,0,0 -k1,18772:9964173,28632077:248620 -k1,18772:11160443,28632077:248619 -k1,18772:14390951,28632077:248620 -k1,18772:17274774,28632077:248620 -k1,18772:20963378,28632077:248619 -k1,18772:23259998,28632077:248620 -k1,18772:23864477,28632077:248619 -k1,18772:26518269,28632077:248620 -k1,18772:27453051,28632077:248620 -k1,18772:28472373,28632077:248619 -k1,18772:31966991,28632077:248620 -k1,18772:32583029,28632077:0 -) -(1,18773:6630773,29497157:25952256,505283,134348 -k1,18772:7841792,29497157:191934 -k1,18772:9687198,29497157:191933 -k1,18772:11117107,29497157:191934 -k1,18772:11995202,29497157:191933 -k1,18772:14869525,29497157:191934 -k1,18772:17109458,29497157:191933 -k1,18772:17657252,29497157:191934 -k1,18772:20856632,29497157:191933 -k1,18772:21734728,29497157:191934 -k1,18772:22697364,29497157:191933 -k1,18772:26135296,29497157:191934 -k1,18772:26955065,29497157:191934 -k1,18772:28350239,29497157:191933 -k1,18772:30820860,29497157:191934 -k1,18772:31225778,29497157:191926 -k1,18772:32583029,29497157:0 -) -(1,18773:6630773,30362237:25952256,513147,134348 -k1,18772:9442582,30362237:142528 -k1,18772:13025096,30362237:142529 -k1,18772:15053095,30362237:142528 -k1,18772:16670838,30362237:142528 -k1,18772:17499529,30362237:142529 -k1,18772:17997917,30362237:142528 -k1,18772:20406026,30362237:142529 -k1,18772:22953726,30362237:142528 -(1,18772:22953726,30362237:0,452978,115847 -r1,18822:27532534,30362237:4578808,568825,115847 -k1,18772:22953726,30362237:-4578808 -) -(1,18772:22953726,30362237:4578808,452978,115847 -k1,18772:22953726,30362237:3277 -h1,18772:27529257,30362237:0,411205,112570 -) -k1,18772:27848732,30362237:142528 -k1,18772:28619096,30362237:142529 -k1,18772:31040311,30362237:142528 -h1,18772:32583029,30362237:0,0,0 -k1,18772:32583029,30362237:0 -) -(1,18773:6630773,31227317:25952256,505283,134348 -k1,18772:8542510,31227317:227462 -h1,18772:9737887,31227317:0,0,0 -k1,18772:10172444,31227317:227463 -k1,18772:10612870,31227317:227434 -k1,18772:13509613,31227317:227462 -k1,18772:15439046,31227317:227463 -k1,18772:19106493,31227317:227462 -k1,18772:22014379,31227317:227463 -k1,18772:23635792,31227317:227462 -k1,18772:24882339,31227317:227462 -k1,18772:27792191,31227317:227463 -k1,18772:29399841,31227317:227462 -k1,18772:30719789,31227317:227463 -k1,18772:31708779,31227317:227462 -k1,18773:32583029,31227317:0 -) -(1,18773:6630773,32092397:25952256,513147,7863 -k1,18773:32583029,32092397:24402330 -g1,18773:32583029,32092397 -) -(1,18814:6630773,34209215:25952256,555811,12975 -(1,18814:6630773,34209215:2450326,534184,12975 -g1,18814:6630773,34209215 -g1,18814:9081099,34209215 -) -k1,18814:32583028,34209215:21628320 -g1,18814:32583028,34209215 -) -(1,18818:6630773,35467511:25952256,505283,126483 -k1,18817:7608662,35467511:184248 -k1,18817:9232736,35467511:184248 -k1,18817:10033022,35467511:184248 -k1,18817:13208989,35467511:184248 -k1,18817:15422232,35467511:184248 -(1,18817:15422232,35467511:0,452978,122846 -r1,18822:19649328,35467511:4227096,575824,122846 -k1,18817:15422232,35467511:-4227096 -) -(1,18817:15422232,35467511:4227096,452978,122846 -k1,18817:15422232,35467511:3277 -h1,18817:19646051,35467511:0,411205,112570 -) -k1,18817:20007246,35467511:184248 -k1,18817:21295776,35467511:184248 -k1,18817:22227790,35467511:184248 -k1,18817:23925264,35467511:184248 -k1,18817:24760940,35467511:184248 -k1,18817:26142531,35467511:184248 -k1,18817:26682639,35467511:184248 -k1,18817:28424678,35467511:184248 -k1,18817:30002877,35467511:184248 -k1,18818:32583029,35467511:0 -) -(1,18818:6630773,36332591:25952256,505283,126483 -k1,18817:8422145,36332591:193604 -k1,18817:12425357,36332591:193604 -k1,18817:13380489,36332591:193604 -k1,18817:16192912,36332591:193604 -k1,18817:17069401,36332591:193604 -k1,18817:20078432,36332591:193604 -k1,18817:20899872,36332591:193605 -k1,18817:23212255,36332591:193604 -k1,18817:24904668,36332591:193604 -k1,18817:26117357,36332591:193604 -k1,18817:29152602,36332591:193604 -k1,18817:31931601,36332591:193604 -k1,18817:32583029,36332591:0 -) -(1,18818:6630773,37197671:25952256,513147,138281 -$1,18817:7133434,37197671 -k1,18817:7355396,37197671:221962 -k1,18817:8768803,37197671:221962 -$1,18817:8768803,37197671 -$1,18817:9320616,37197671 -k1,18817:9542578,37197671:221962 -k1,18817:12939105,37197671:221963 -k1,18817:14152627,37197671:221962 -k1,18817:15841285,37197671:221962 -k1,18817:19633648,37197671:221962 -(1,18817:19840742,37197671:0,452978,115847 -r1,18822:22309279,37197671:2468537,568825,115847 -k1,18817:19840742,37197671:-2468537 -) -(1,18817:19840742,37197671:2468537,452978,115847 -k1,18817:19840742,37197671:3277 -h1,18817:22306002,37197671:0,411205,112570 -) -k1,18817:22738335,37197671:221962 -k1,18817:24151742,37197671:221962 -k1,18817:24989742,37197671:221962 -k1,18817:26209817,37197671:221962 -k1,18817:27930589,37197671:221963 -k1,18817:29309261,37197671:221962 -k1,18817:30190515,37197671:221962 -k1,18817:32051532,37197671:221962 -k1,18817:32583029,37197671:0 -) -(1,18818:6630773,38062751:25952256,505283,126483 -k1,18817:9377895,38062751:221364 -(1,18817:9584989,38062751:0,459977,115847 -r1,18822:11701814,38062751:2116825,575824,115847 -k1,18817:9584989,38062751:-2116825 -) -(1,18817:9584989,38062751:2116825,459977,115847 -k1,18817:9584989,38062751:3277 -h1,18817:11698537,38062751:0,411205,112570 -) -k1,18817:11923177,38062751:221363 -k1,18817:12827426,38062751:221364 -(1,18817:12827426,38062751:0,452978,115847 -r1,18822:15295963,38062751:2468537,568825,115847 -k1,18817:12827426,38062751:-2468537 -) -(1,18817:12827426,38062751:2468537,452978,115847 -k1,18817:12827426,38062751:3277 -h1,18817:15292686,38062751:0,411205,112570 -) -k1,18817:15724421,38062751:221364 -k1,18817:17137229,38062751:221363 -k1,18817:18377678,38062751:221364 -k1,18817:20301012,38062751:221364 -k1,18817:24266447,38062751:221363 -k1,18817:25684498,38062751:221364 -k1,18817:27513460,38062751:221364 -k1,18817:28350861,38062751:221363 -k1,18817:29591310,38062751:221364 -k1,18817:32583029,38062751:0 -) -(1,18818:6630773,38927831:25952256,505283,126483 -g1,18817:8685326,38927831 -g1,18817:10359770,38927831 -g1,18817:12068949,38927831 -g1,18817:14437420,38927831 -k1,18818:32583029,38927831:16485582 -g1,18818:32583029,38927831 -) -(1,18820:6630773,39792911:25952256,513147,126483 -h1,18819:6630773,39792911:983040,0,0 -k1,18819:8990119,39792911:179619 -k1,18819:10475870,39792911:179618 -k1,18819:13647208,39792911:179619 -k1,18819:14486119,39792911:179619 -k1,18819:15684823,39792911:179619 -k1,18819:16956926,39792911:179618 -k1,18819:17803701,39792911:179619 -(1,18819:17803701,39792911:0,452978,122846 -r1,18822:22030797,39792911:4227096,575824,122846 -k1,18819:17803701,39792911:-4227096 -) -(1,18819:17803701,39792911:4227096,452978,122846 -k1,18819:17803701,39792911:3277 -h1,18819:22027520,39792911:0,411205,112570 -) -k1,18819:22210416,39792911:179619 -k1,18819:23381595,39792911:179619 -k1,18819:24508864,39792911:179618 -k1,18819:26936507,39792911:184346 -k1,18819:28932784,39792911:179619 -k1,18819:29798564,39792911:179618 -(1,18819:29798564,39792911:0,452978,115847 -r1,18822:31211965,39792911:1413401,568825,115847 -k1,18819:29798564,39792911:-1413401 -) -(1,18819:29798564,39792911:1413401,452978,115847 -k1,18819:29798564,39792911:3277 -h1,18819:31208688,39792911:0,411205,112570 -) -k1,18819:31391584,39792911:179619 -k1,18820:32583029,39792911:0 -) -(1,18820:6630773,40657991:25952256,505283,126483 -(1,18819:6630773,40657991:0,414482,122846 -r1,18822:7692462,40657991:1061689,537328,122846 -k1,18819:6630773,40657991:-1061689 -) -(1,18819:6630773,40657991:1061689,414482,122846 -k1,18819:6630773,40657991:3277 -h1,18819:7689185,40657991:0,411205,112570 -) -k1,18819:7856972,40657991:164510 -k1,18819:9013042,40657991:164510 -(1,18819:9013042,40657991:0,452978,115847 -r1,18822:11481579,40657991:2468537,568825,115847 -k1,18819:9013042,40657991:-2468537 -) -(1,18819:9013042,40657991:2468537,452978,115847 -k1,18819:9013042,40657991:3277 -h1,18819:11478302,40657991:0,411205,112570 -) -k1,18819:11646089,40657991:164510 -k1,18819:14825911,40657991:164511 -k1,18819:15618256,40657991:164510 -k1,18819:16801851,40657991:164510 -k1,18819:19958080,40657991:164510 -k1,18819:21977914,40657991:164510 -k1,18819:22498284,40657991:164510 -k1,18819:24244834,40657991:164511 -k1,18819:27094354,40657991:164510 -(1,18819:27094354,40657991:0,452978,115847 -r1,18822:28156043,40657991:1061689,568825,115847 -k1,18819:27094354,40657991:-1061689 -) -(1,18819:27094354,40657991:1061689,452978,115847 -k1,18819:27094354,40657991:3277 -h1,18819:28152766,40657991:0,411205,112570 -) -k1,18819:28320553,40657991:164510 -k1,18819:29692236,40657991:164510 -k1,18820:32583029,40657991:0 -) -(1,18820:6630773,41523071:25952256,505283,126483 -k1,18819:7825759,41523071:170003 -k1,18819:8757289,41523071:170002 -k1,18819:11462225,41523071:170003 -k1,18819:13406943,41523071:170003 -k1,18819:14596030,41523071:170002 -k1,18819:16796994,41523071:170003 -k1,18819:19811259,41523071:170002 -k1,18819:21085544,41523071:170003 -k1,18819:22003313,41523071:170003 -k1,18819:23686541,41523071:170002 -k1,18819:25250495,41523071:170003 -k1,18819:26186614,41523071:170003 -(1,18819:26186614,41523071:0,414482,122846 -r1,18822:27951727,41523071:1765113,537328,122846 -k1,18819:26186614,41523071:-1765113 -) -(1,18819:26186614,41523071:1765113,414482,122846 -k1,18819:26186614,41523071:3277 -h1,18819:27948450,41523071:0,411205,112570 -) -k1,18819:28295399,41523071:170002 -k1,18819:30167372,41523071:170003 -k1,18820:32583029,41523071:0 -) -(1,18820:6630773,42388151:25952256,513147,126483 -k1,18819:7677090,42388151:181242 -k1,18819:8962614,42388151:181242 -k1,18819:9891622,42388151:181242 -k1,18819:11586090,42388151:181242 -k1,18819:13142933,42388151:181242 -k1,18819:14718126,42388151:181242 -k1,18819:16591508,42388151:181242 -(1,18819:16591508,42388151:0,414482,122846 -r1,18822:18356621,42388151:1765113,537328,122846 -k1,18819:16591508,42388151:-1765113 -) -(1,18819:16591508,42388151:1765113,414482,122846 -k1,18819:16591508,42388151:3277 -h1,18819:18353344,42388151:0,411205,112570 -) -k1,18819:18711532,42388151:181241 -k1,18819:19840425,42388151:181242 -k1,18819:22683084,42388151:181242 -k1,18819:23883411,42388151:181242 -(1,18819:23883411,42388151:0,452978,115847 -r1,18822:25648524,42388151:1765113,568825,115847 -k1,18819:23883411,42388151:-1765113 -) -(1,18819:23883411,42388151:1765113,452978,115847 -k1,18819:23883411,42388151:3277 -h1,18819:25645247,42388151:0,411205,112570 -) -k1,18819:25829766,42388151:181242 -k1,18819:28855271,42388151:181242 -k1,18819:30140795,42388151:181242 -k1,18819:31069803,42388151:181242 -k1,18819:32583029,42388151:0 -) -(1,18820:6630773,43253231:25952256,505283,126483 -k1,18819:8159135,43253231:152761 -k1,18819:9705847,43253231:152761 -(1,18819:9705847,43253231:0,452978,122846 -r1,18822:13932943,43253231:4227096,575824,122846 -k1,18819:9705847,43253231:-4227096 -) -(1,18819:9705847,43253231:4227096,452978,122846 -k1,18819:9705847,43253231:3277 -h1,18819:13929666,43253231:0,411205,112570 -) -k1,18819:14085704,43253231:152761 -k1,18819:15429910,43253231:152761 -(1,18819:15429910,43253231:0,414482,122846 -r1,18822:17195023,43253231:1765113,537328,122846 -k1,18819:15429910,43253231:-1765113 -) -(1,18819:15429910,43253231:1765113,414482,122846 -k1,18819:15429910,43253231:3277 -h1,18819:17191746,43253231:0,411205,112570 -) -k1,18819:17347783,43253231:152760 -k1,18819:18646769,43253231:152761 -(1,18819:18646769,43253231:0,452978,122846 -r1,18822:24632424,43253231:5985655,575824,122846 -k1,18819:18646769,43253231:-5985655 -) -(1,18819:18646769,43253231:5985655,452978,122846 -k1,18819:18646769,43253231:3277 -h1,18819:24629147,43253231:0,411205,112570 -) -k1,18819:24785185,43253231:152761 -k1,18819:26129391,43253231:152761 -(1,18819:26129391,43253231:0,452978,122846 -r1,18822:31059911,43253231:4930520,575824,122846 -k1,18819:26129391,43253231:-4930520 -) -(1,18819:26129391,43253231:4930520,452978,122846 -k1,18819:26129391,43253231:3277 -h1,18819:31056634,43253231:0,411205,112570 -) -k1,18819:31386342,43253231:152761 -k1,18819:32583029,43253231:0 -) -(1,18820:6630773,44118311:25952256,505283,126483 -k1,18819:8859295,44118311:235572 -k1,18819:9710905,44118311:235572 -k1,18819:10965561,44118311:235571 -k1,18819:13070220,44118311:235572 -k1,18819:16150055,44118311:235572 -k1,18819:17377187,44118311:235572 -k1,18819:20312187,44118311:235572 -k1,18819:21739204,44118311:235572 -k1,18819:26199881,44118311:235571 -k1,18819:27811054,44118311:235572 -k1,18819:30572384,44118311:235572 -k1,18819:32583029,44118311:0 -) -(1,18820:6630773,44983391:25952256,505283,126483 -g1,18819:7934284,44983391 -g1,18819:8881279,44983391 -g1,18819:11665903,44983391 -g1,18819:12516560,44983391 -k1,18820:32583029,44983391:19555944 -g1,18820:32583029,44983391 -) -] -(1,18822:32583029,45706769:0,0,0 -g1,18822:32583029,45706769 -) -) -] -(1,18822:6630773,47279633:25952256,0,0 -h1,18822:6630773,47279633:25952256,0,0 -) -] -(1,18822:4262630,4025873:0,0,0 -[1,18822:-473656,4025873:0,0,0 -(1,18822:-473656,-710413:0,0,0 -(1,18822:-473656,-710413:0,0,0 -g1,18822:-473656,-710413 +v1,18759:6630773,15547483:0,393216,0 +(1,18760:6630773,17720289:25952256,2566022,0 +g1,18760:6630773,17720289 +g1,18760:6237557,17720289 +r1,18820:6368629,17720289:131072,2566022,0 +g1,18760:6567858,17720289 +g1,18760:6764466,17720289 +[1,18760:6764466,17720289:25818563,2566022,0 +(1,18760:6764466,15855781:25818563,701514,196608 +(1,18759:6764466,15855781:0,701514,196608 +r1,18820:7761522,15855781:997056,898122,196608 +k1,18759:6764466,15855781:-997056 +) +(1,18759:6764466,15855781:997056,701514,196608 +) +k1,18759:7936320,15855781:174798 +k1,18759:8264000,15855781:327680 +k1,18759:10222034,15855781:174799 +k1,18759:12331455,15855781:174798 +k1,18759:14824261,15855781:174798 +k1,18759:15650488,15855781:174799 +k1,18759:19897038,15855781:174798 +k1,18759:21465788,15855781:174799 +(1,18759:21465788,15855781:0,452978,115847 +r1,18820:22879189,15855781:1413401,568825,115847 +k1,18759:21465788,15855781:-1413401 +) +(1,18759:21465788,15855781:1413401,452978,115847 +k1,18759:21465788,15855781:3277 +h1,18759:22875912,15855781:0,411205,112570 +) +k1,18759:23227657,15855781:174798 +k1,18759:24421540,15855781:174798 +k1,18759:28522601,15855781:174799 +k1,18759:31591469,15855781:174798 +k1,18759:32583029,15855781:0 +) +(1,18760:6764466,16720861:25818563,513147,134348 +k1,18759:8514932,16720861:237240 +k1,18759:9403600,16720861:237240 +k1,18759:12428743,16720861:237241 +k1,18759:13685068,16720861:237240 +k1,18759:15287423,16720861:237240 +k1,18759:16183955,16720861:237240 +k1,18759:18892559,16720861:237241 +k1,18759:21172556,16720861:237240 +k1,18759:23855600,16720861:237240 +k1,18759:25084400,16720861:237240 +k1,18759:27526928,16720861:237241 +k1,18759:28450330,16720861:237240 +k1,18759:29458273,16720861:237240 +k1,18759:32583029,16720861:0 +) +(1,18760:6764466,17585941:25818563,513147,134348 +g1,18759:7591530,17585941 +(1,18759:7591530,17585941:0,452978,115847 +r1,18820:9356643,17585941:1765113,568825,115847 +k1,18759:7591530,17585941:-1765113 +) +(1,18759:7591530,17585941:1765113,452978,115847 +k1,18759:7591530,17585941:3277 +h1,18759:9353366,17585941:0,411205,112570 +) +g1,18759:9555872,17585941 +g1,18759:10774186,17585941 +g1,18759:13419219,17585941 +g1,18759:14610008,17585941 +g1,18759:18017880,17585941 +g1,18759:19784730,17585941 +g1,18759:21003044,17585941 +g1,18759:22591636,17585941 +g1,18759:23552393,17585941 +g1,18759:24770707,17585941 +k1,18760:32583029,17585941:5064398 +g1,18760:32583029,17585941 +) +] +g1,18760:32583029,17720289 +) +h1,18760:6630773,17720289:0,0,0 +(1,18765:6630773,20551449:25952256,32768,229376 +(1,18765:6630773,20551449:0,32768,229376 +(1,18765:6630773,20551449:5505024,32768,229376 +r1,18820:12135797,20551449:5505024,262144,229376 +) +k1,18765:6630773,20551449:-5505024 +) +(1,18765:6630773,20551449:25952256,32768,0 +r1,18820:32583029,20551449:25952256,32768,0 +) +) +(1,18765:6630773,22183301:25952256,606339,14155 +(1,18765:6630773,22183301:1974731,582746,14155 +g1,18765:6630773,22183301 +g1,18765:8605504,22183301 +) +k1,18765:32583029,22183301:19476774 +g1,18765:32583029,22183301 +) +(1,18769:6630773,23441597:25952256,513147,134348 +k1,18768:9718581,23441597:242890 +k1,18768:13468957,23441597:242889 +k1,18768:16238260,23441597:242890 +k1,18768:19243493,23441597:242890 +k1,18768:22550846,23441597:242889 +k1,18768:24744087,23441597:242890 +h1,18768:25714675,23441597:0,0,0 +k1,18768:26338328,23441597:242889 +k1,18768:28355933,23441597:242890 +(1,18768:28355933,23441597:0,452978,122846 +r1,18820:32583029,23441597:4227096,575824,122846 +k1,18768:28355933,23441597:-4227096 +) +(1,18768:28355933,23441597:4227096,452978,122846 +k1,18768:28355933,23441597:3277 +h1,18768:32579752,23441597:0,411205,112570 +) +k1,18768:32583029,23441597:0 +) +(1,18769:6630773,24306677:25952256,505283,126483 +k1,18768:9657855,24306677:170368 +(1,18768:9657855,24306677:0,452978,115847 +r1,18820:11422968,24306677:1765113,568825,115847 +k1,18768:9657855,24306677:-1765113 +) +(1,18768:9657855,24306677:1765113,452978,115847 +k1,18768:9657855,24306677:3277 +h1,18768:11419691,24306677:0,411205,112570 +) +k1,18768:11767006,24306677:170368 +k1,18768:13128818,24306677:170367 +(1,18768:13128818,24306677:0,452978,122846 +r1,18820:17004202,24306677:3875384,575824,122846 +k1,18768:13128818,24306677:-3875384 +) +(1,18768:13128818,24306677:3875384,452978,122846 +k1,18768:13128818,24306677:3277 +h1,18768:17000925,24306677:0,411205,112570 +) +k1,18768:17174570,24306677:170368 +k1,18768:20201652,24306677:170368 +(1,18768:20201652,24306677:0,452978,115847 +r1,18820:23021901,24306677:2820249,568825,115847 +k1,18768:20201652,24306677:-2820249 +) +(1,18768:20201652,24306677:2820249,452978,115847 +k1,18768:20201652,24306677:3277 +h1,18768:23018624,24306677:0,411205,112570 +) +k1,18768:23365939,24306677:170368 +k1,18768:25003003,24306677:170368 +k1,18768:27699784,24306677:170368 +(1,18768:27699784,24306677:0,414482,115847 +r1,18820:28058050,24306677:358266,530329,115847 +k1,18768:27699784,24306677:-358266 +) +(1,18768:27699784,24306677:358266,414482,115847 +k1,18768:27699784,24306677:3277 +h1,18768:28054773,24306677:0,411205,112570 +) +k1,18768:28402087,24306677:170367 +(1,18768:28402087,24306677:0,414482,115847 +r1,18820:28760353,24306677:358266,530329,115847 +k1,18768:28402087,24306677:-358266 +) +(1,18768:28402087,24306677:358266,414482,115847 +k1,18768:28402087,24306677:3277 +h1,18768:28757076,24306677:0,411205,112570 +) +k1,18768:29104391,24306677:170368 +(1,18768:29104391,24306677:0,452978,115847 +r1,18820:31221216,24306677:2116825,568825,115847 +k1,18768:29104391,24306677:-2116825 +) +(1,18768:29104391,24306677:2116825,452978,115847 +k1,18768:29104391,24306677:3277 +h1,18768:31217939,24306677:0,411205,112570 +) +k1,18768:31391584,24306677:170368 +k1,18769:32583029,24306677:0 +) +(1,18769:6630773,25171757:25952256,513147,134348 +(1,18768:6630773,25171757:0,452978,115847 +r1,18820:8044174,25171757:1413401,568825,115847 +k1,18768:6630773,25171757:-1413401 +) +(1,18768:6630773,25171757:1413401,452978,115847 +k1,18768:6630773,25171757:3277 +h1,18768:8040897,25171757:0,411205,112570 +) +k1,18768:8404660,25171757:186816 +k1,18768:9219311,25171757:186816 +k1,18768:10609368,25171757:186816 +k1,18768:13074871,25171757:186816 +k1,18768:13474667,25171757:186804 +k1,18768:16330764,25171757:186816 +k1,18768:19822561,25171757:186816 +k1,18768:21522603,25171757:186816 +(1,18768:21522603,25171757:0,452978,122846 +r1,18820:25046275,25171757:3523672,575824,122846 +k1,18768:21522603,25171757:-3523672 +) +(1,18768:21522603,25171757:3523672,452978,122846 +k1,18768:21522603,25171757:3277 +h1,18768:25042998,25171757:0,411205,112570 +) +k1,18768:25233091,25171757:186816 +k1,18768:26987528,25171757:186816 +k1,18768:29754496,25171757:186816 +k1,18768:32583029,25171757:0 +) +(1,18769:6630773,26036837:25952256,513147,134348 +k1,18768:8101456,26036837:279238 +k1,18768:9948315,26036837:279238 +k1,18768:10583413,26036837:279238 +k1,18768:11995769,26036837:279238 +k1,18768:15185461,26036837:279238 +k1,18768:16749205,26036837:279238 +k1,18768:19180645,26036837:279238 +k1,18768:22462086,26036837:279238 +k1,18768:23938011,26036837:279238 +k1,18768:26606036,26036837:279238 +k1,18768:29044030,26036837:279238 +k1,18768:30890889,26036837:279238 +k1,18768:32583029,26036837:0 +) +(1,18769:6630773,26901917:25952256,505283,126483 +k1,18768:8375341,26901917:248381 +k1,18768:11615441,26901917:248381 +k1,18768:12996285,26901917:248382 +k1,18768:14310937,26901917:248381 +k1,18768:15307084,26901917:248381 +k1,18768:17804661,26901917:248381 +k1,18768:19446994,26901917:248382 +k1,18768:20714460,26901917:248381 +k1,18768:24657105,26901917:248381 +k1,18768:26189992,26901917:248381 +k1,18768:28816676,26901917:248382 +k1,18768:30197519,26901917:248381 +k1,18768:31563944,26901917:248381 +k1,18768:32583029,26901917:0 +) +(1,18769:6630773,27766997:25952256,505283,126483 +g1,18768:8326189,27766997 +g1,18768:9176846,27766997 +g1,18768:10401058,27766997 +g1,18768:11619372,27766997 +k1,18769:32583029,27766997:19303630 +g1,18769:32583029,27766997 +) +(1,18771:6630773,28632077:25952256,513147,134348 +h1,18770:6630773,28632077:983040,0,0 +k1,18770:9964173,28632077:248620 +k1,18770:11160443,28632077:248619 +k1,18770:14390951,28632077:248620 +k1,18770:17274774,28632077:248620 +k1,18770:20963378,28632077:248619 +k1,18770:23259998,28632077:248620 +k1,18770:23864477,28632077:248619 +k1,18770:26518269,28632077:248620 +k1,18770:27453051,28632077:248620 +k1,18770:28472373,28632077:248619 +k1,18770:31966991,28632077:248620 +k1,18770:32583029,28632077:0 +) +(1,18771:6630773,29497157:25952256,505283,134348 +k1,18770:7841792,29497157:191934 +k1,18770:9687198,29497157:191933 +k1,18770:11117107,29497157:191934 +k1,18770:11995202,29497157:191933 +k1,18770:14869525,29497157:191934 +k1,18770:17109458,29497157:191933 +k1,18770:17657252,29497157:191934 +k1,18770:20856632,29497157:191933 +k1,18770:21734728,29497157:191934 +k1,18770:22697364,29497157:191933 +k1,18770:26135296,29497157:191934 +k1,18770:26955065,29497157:191934 +k1,18770:28350239,29497157:191933 +k1,18770:30820860,29497157:191934 +k1,18770:31225778,29497157:191926 +k1,18770:32583029,29497157:0 +) +(1,18771:6630773,30362237:25952256,513147,134348 +k1,18770:9442582,30362237:142528 +k1,18770:13025096,30362237:142529 +k1,18770:15053095,30362237:142528 +k1,18770:16670838,30362237:142528 +k1,18770:17499529,30362237:142529 +k1,18770:17997917,30362237:142528 +k1,18770:20406026,30362237:142529 +k1,18770:22953726,30362237:142528 +(1,18770:22953726,30362237:0,452978,115847 +r1,18820:27532534,30362237:4578808,568825,115847 +k1,18770:22953726,30362237:-4578808 +) +(1,18770:22953726,30362237:4578808,452978,115847 +k1,18770:22953726,30362237:3277 +h1,18770:27529257,30362237:0,411205,112570 +) +k1,18770:27848732,30362237:142528 +k1,18770:28619096,30362237:142529 +k1,18770:31040311,30362237:142528 +h1,18770:32583029,30362237:0,0,0 +k1,18770:32583029,30362237:0 +) +(1,18771:6630773,31227317:25952256,505283,134348 +k1,18770:8542510,31227317:227462 +h1,18770:9737887,31227317:0,0,0 +k1,18770:10172444,31227317:227463 +k1,18770:10612870,31227317:227434 +k1,18770:13509613,31227317:227462 +k1,18770:15439046,31227317:227463 +k1,18770:19106493,31227317:227462 +k1,18770:22014379,31227317:227463 +k1,18770:23635792,31227317:227462 +k1,18770:24882339,31227317:227462 +k1,18770:27792191,31227317:227463 +k1,18770:29399841,31227317:227462 +k1,18770:30719789,31227317:227463 +k1,18770:31708779,31227317:227462 +k1,18771:32583029,31227317:0 +) +(1,18771:6630773,32092397:25952256,513147,7863 +k1,18771:32583029,32092397:24402330 +g1,18771:32583029,32092397 +) +(1,18812:6630773,34209215:25952256,555811,12975 +(1,18812:6630773,34209215:2450326,534184,12975 +g1,18812:6630773,34209215 +g1,18812:9081099,34209215 +) +k1,18812:32583028,34209215:21628320 +g1,18812:32583028,34209215 +) +(1,18816:6630773,35467511:25952256,505283,126483 +k1,18815:7608662,35467511:184248 +k1,18815:9232736,35467511:184248 +k1,18815:10033022,35467511:184248 +k1,18815:13208989,35467511:184248 +k1,18815:15422232,35467511:184248 +(1,18815:15422232,35467511:0,452978,122846 +r1,18820:19649328,35467511:4227096,575824,122846 +k1,18815:15422232,35467511:-4227096 +) +(1,18815:15422232,35467511:4227096,452978,122846 +k1,18815:15422232,35467511:3277 +h1,18815:19646051,35467511:0,411205,112570 +) +k1,18815:20007246,35467511:184248 +k1,18815:21295776,35467511:184248 +k1,18815:22227790,35467511:184248 +k1,18815:23925264,35467511:184248 +k1,18815:24760940,35467511:184248 +k1,18815:26142531,35467511:184248 +k1,18815:26682639,35467511:184248 +k1,18815:28424678,35467511:184248 +k1,18815:30002877,35467511:184248 +k1,18816:32583029,35467511:0 +) +(1,18816:6630773,36332591:25952256,505283,126483 +k1,18815:8422145,36332591:193604 +k1,18815:12425357,36332591:193604 +k1,18815:13380489,36332591:193604 +k1,18815:16192912,36332591:193604 +k1,18815:17069401,36332591:193604 +k1,18815:20078432,36332591:193604 +k1,18815:20899872,36332591:193605 +k1,18815:23212255,36332591:193604 +k1,18815:24904668,36332591:193604 +k1,18815:26117357,36332591:193604 +k1,18815:29152602,36332591:193604 +k1,18815:31931601,36332591:193604 +k1,18815:32583029,36332591:0 +) +(1,18816:6630773,37197671:25952256,513147,138281 +$1,18815:7133434,37197671 +k1,18815:7355396,37197671:221962 +k1,18815:8768803,37197671:221962 +$1,18815:8768803,37197671 +$1,18815:9320616,37197671 +k1,18815:9542578,37197671:221962 +k1,18815:12939105,37197671:221963 +k1,18815:14152627,37197671:221962 +k1,18815:15841285,37197671:221962 +k1,18815:19633648,37197671:221962 +(1,18815:19840742,37197671:0,452978,115847 +r1,18820:22309279,37197671:2468537,568825,115847 +k1,18815:19840742,37197671:-2468537 +) +(1,18815:19840742,37197671:2468537,452978,115847 +k1,18815:19840742,37197671:3277 +h1,18815:22306002,37197671:0,411205,112570 +) +k1,18815:22738335,37197671:221962 +k1,18815:24151742,37197671:221962 +k1,18815:24989742,37197671:221962 +k1,18815:26209817,37197671:221962 +k1,18815:27930589,37197671:221963 +k1,18815:29309261,37197671:221962 +k1,18815:30190515,37197671:221962 +k1,18815:32051532,37197671:221962 +k1,18815:32583029,37197671:0 +) +(1,18816:6630773,38062751:25952256,505283,126483 +k1,18815:9377895,38062751:221364 +(1,18815:9584989,38062751:0,459977,115847 +r1,18820:11701814,38062751:2116825,575824,115847 +k1,18815:9584989,38062751:-2116825 +) +(1,18815:9584989,38062751:2116825,459977,115847 +k1,18815:9584989,38062751:3277 +h1,18815:11698537,38062751:0,411205,112570 +) +k1,18815:11923177,38062751:221363 +k1,18815:12827426,38062751:221364 +(1,18815:12827426,38062751:0,452978,115847 +r1,18820:15295963,38062751:2468537,568825,115847 +k1,18815:12827426,38062751:-2468537 +) +(1,18815:12827426,38062751:2468537,452978,115847 +k1,18815:12827426,38062751:3277 +h1,18815:15292686,38062751:0,411205,112570 +) +k1,18815:15724421,38062751:221364 +k1,18815:17137229,38062751:221363 +k1,18815:18377678,38062751:221364 +k1,18815:20301012,38062751:221364 +k1,18815:24266447,38062751:221363 +k1,18815:25684498,38062751:221364 +k1,18815:27513460,38062751:221364 +k1,18815:28350861,38062751:221363 +k1,18815:29591310,38062751:221364 +k1,18815:32583029,38062751:0 +) +(1,18816:6630773,38927831:25952256,505283,126483 +g1,18815:8685326,38927831 +g1,18815:10359770,38927831 +g1,18815:12068949,38927831 +g1,18815:14437420,38927831 +k1,18816:32583029,38927831:16485582 +g1,18816:32583029,38927831 +) +(1,18818:6630773,39792911:25952256,513147,126483 +h1,18817:6630773,39792911:983040,0,0 +k1,18817:8990119,39792911:179619 +k1,18817:10475870,39792911:179618 +k1,18817:13647208,39792911:179619 +k1,18817:14486119,39792911:179619 +k1,18817:15684823,39792911:179619 +k1,18817:16956926,39792911:179618 +k1,18817:17803701,39792911:179619 +(1,18817:17803701,39792911:0,452978,122846 +r1,18820:22030797,39792911:4227096,575824,122846 +k1,18817:17803701,39792911:-4227096 +) +(1,18817:17803701,39792911:4227096,452978,122846 +k1,18817:17803701,39792911:3277 +h1,18817:22027520,39792911:0,411205,112570 +) +k1,18817:22210416,39792911:179619 +k1,18817:23381595,39792911:179619 +k1,18817:24508864,39792911:179618 +k1,18817:26936507,39792911:184346 +k1,18817:28932784,39792911:179619 +k1,18817:29798564,39792911:179618 +(1,18817:29798564,39792911:0,452978,115847 +r1,18820:31211965,39792911:1413401,568825,115847 +k1,18817:29798564,39792911:-1413401 +) +(1,18817:29798564,39792911:1413401,452978,115847 +k1,18817:29798564,39792911:3277 +h1,18817:31208688,39792911:0,411205,112570 +) +k1,18817:31391584,39792911:179619 +k1,18818:32583029,39792911:0 +) +(1,18818:6630773,40657991:25952256,505283,126483 +(1,18817:6630773,40657991:0,414482,122846 +r1,18820:7692462,40657991:1061689,537328,122846 +k1,18817:6630773,40657991:-1061689 +) +(1,18817:6630773,40657991:1061689,414482,122846 +k1,18817:6630773,40657991:3277 +h1,18817:7689185,40657991:0,411205,112570 +) +k1,18817:7856972,40657991:164510 +k1,18817:9013042,40657991:164510 +(1,18817:9013042,40657991:0,452978,115847 +r1,18820:11481579,40657991:2468537,568825,115847 +k1,18817:9013042,40657991:-2468537 +) +(1,18817:9013042,40657991:2468537,452978,115847 +k1,18817:9013042,40657991:3277 +h1,18817:11478302,40657991:0,411205,112570 +) +k1,18817:11646089,40657991:164510 +k1,18817:14825911,40657991:164511 +k1,18817:15618256,40657991:164510 +k1,18817:16801851,40657991:164510 +k1,18817:19958080,40657991:164510 +k1,18817:21977914,40657991:164510 +k1,18817:22498284,40657991:164510 +k1,18817:24244834,40657991:164511 +k1,18817:27094354,40657991:164510 +(1,18817:27094354,40657991:0,452978,115847 +r1,18820:28156043,40657991:1061689,568825,115847 +k1,18817:27094354,40657991:-1061689 +) +(1,18817:27094354,40657991:1061689,452978,115847 +k1,18817:27094354,40657991:3277 +h1,18817:28152766,40657991:0,411205,112570 +) +k1,18817:28320553,40657991:164510 +k1,18817:29692236,40657991:164510 +k1,18818:32583029,40657991:0 +) +(1,18818:6630773,41523071:25952256,505283,126483 +k1,18817:7825759,41523071:170003 +k1,18817:8757289,41523071:170002 +k1,18817:11462225,41523071:170003 +k1,18817:13406943,41523071:170003 +k1,18817:14596030,41523071:170002 +k1,18817:16796994,41523071:170003 +k1,18817:19811259,41523071:170002 +k1,18817:21085544,41523071:170003 +k1,18817:22003313,41523071:170003 +k1,18817:23686541,41523071:170002 +k1,18817:25250495,41523071:170003 +k1,18817:26186614,41523071:170003 +(1,18817:26186614,41523071:0,414482,122846 +r1,18820:27951727,41523071:1765113,537328,122846 +k1,18817:26186614,41523071:-1765113 +) +(1,18817:26186614,41523071:1765113,414482,122846 +k1,18817:26186614,41523071:3277 +h1,18817:27948450,41523071:0,411205,112570 +) +k1,18817:28295399,41523071:170002 +k1,18817:30167372,41523071:170003 +k1,18818:32583029,41523071:0 +) +(1,18818:6630773,42388151:25952256,513147,126483 +k1,18817:7677090,42388151:181242 +k1,18817:8962614,42388151:181242 +k1,18817:9891622,42388151:181242 +k1,18817:11586090,42388151:181242 +k1,18817:13142933,42388151:181242 +k1,18817:14718126,42388151:181242 +k1,18817:16591508,42388151:181242 +(1,18817:16591508,42388151:0,414482,122846 +r1,18820:18356621,42388151:1765113,537328,122846 +k1,18817:16591508,42388151:-1765113 +) +(1,18817:16591508,42388151:1765113,414482,122846 +k1,18817:16591508,42388151:3277 +h1,18817:18353344,42388151:0,411205,112570 +) +k1,18817:18711532,42388151:181241 +k1,18817:19840425,42388151:181242 +k1,18817:22683084,42388151:181242 +k1,18817:23883411,42388151:181242 +(1,18817:23883411,42388151:0,452978,115847 +r1,18820:25648524,42388151:1765113,568825,115847 +k1,18817:23883411,42388151:-1765113 +) +(1,18817:23883411,42388151:1765113,452978,115847 +k1,18817:23883411,42388151:3277 +h1,18817:25645247,42388151:0,411205,112570 +) +k1,18817:25829766,42388151:181242 +k1,18817:28855271,42388151:181242 +k1,18817:30140795,42388151:181242 +k1,18817:31069803,42388151:181242 +k1,18817:32583029,42388151:0 +) +(1,18818:6630773,43253231:25952256,505283,126483 +k1,18817:8159135,43253231:152761 +k1,18817:9705847,43253231:152761 +(1,18817:9705847,43253231:0,452978,122846 +r1,18820:13932943,43253231:4227096,575824,122846 +k1,18817:9705847,43253231:-4227096 +) +(1,18817:9705847,43253231:4227096,452978,122846 +k1,18817:9705847,43253231:3277 +h1,18817:13929666,43253231:0,411205,112570 +) +k1,18817:14085704,43253231:152761 +k1,18817:15429910,43253231:152761 +(1,18817:15429910,43253231:0,414482,122846 +r1,18820:17195023,43253231:1765113,537328,122846 +k1,18817:15429910,43253231:-1765113 +) +(1,18817:15429910,43253231:1765113,414482,122846 +k1,18817:15429910,43253231:3277 +h1,18817:17191746,43253231:0,411205,112570 +) +k1,18817:17347783,43253231:152760 +k1,18817:18646769,43253231:152761 +(1,18817:18646769,43253231:0,452978,122846 +r1,18820:24632424,43253231:5985655,575824,122846 +k1,18817:18646769,43253231:-5985655 +) +(1,18817:18646769,43253231:5985655,452978,122846 +k1,18817:18646769,43253231:3277 +h1,18817:24629147,43253231:0,411205,112570 +) +k1,18817:24785185,43253231:152761 +k1,18817:26129391,43253231:152761 +(1,18817:26129391,43253231:0,452978,122846 +r1,18820:31059911,43253231:4930520,575824,122846 +k1,18817:26129391,43253231:-4930520 +) +(1,18817:26129391,43253231:4930520,452978,122846 +k1,18817:26129391,43253231:3277 +h1,18817:31056634,43253231:0,411205,112570 +) +k1,18817:31386342,43253231:152761 +k1,18817:32583029,43253231:0 +) +(1,18818:6630773,44118311:25952256,505283,126483 +k1,18817:8859295,44118311:235572 +k1,18817:9710905,44118311:235572 +k1,18817:10965561,44118311:235571 +k1,18817:13070220,44118311:235572 +k1,18817:16150055,44118311:235572 +k1,18817:17377187,44118311:235572 +k1,18817:20312187,44118311:235572 +k1,18817:21739204,44118311:235572 +k1,18817:26199881,44118311:235571 +k1,18817:27811054,44118311:235572 +k1,18817:30572384,44118311:235572 +k1,18817:32583029,44118311:0 +) +(1,18818:6630773,44983391:25952256,505283,126483 +g1,18817:7934284,44983391 +g1,18817:8881279,44983391 +g1,18817:11665903,44983391 +g1,18817:12516560,44983391 +k1,18818:32583029,44983391:19555944 +g1,18818:32583029,44983391 +) +] +(1,18820:32583029,45706769:0,0,0 +g1,18820:32583029,45706769 +) +) +] +(1,18820:6630773,47279633:25952256,0,0 +h1,18820:6630773,47279633:25952256,0,0 +) +] +(1,18820:4262630,4025873:0,0,0 +[1,18820:-473656,4025873:0,0,0 +(1,18820:-473656,-710413:0,0,0 +(1,18820:-473656,-710413:0,0,0 +g1,18820:-473656,-710413 ) -g1,18822:-473656,-710413 +g1,18820:-473656,-710413 ) ] ) ] !24333 -}309 +}310 !12 -{310 -[1,18822:4262630,47279633:28320399,43253760,0 -(1,18822:4262630,4025873:0,0,0 -[1,18822:-473656,4025873:0,0,0 -(1,18822:-473656,-710413:0,0,0 -(1,18822:-473656,-644877:0,0,0 -k1,18822:-473656,-644877:-65536 +{311 +[1,18820:4262630,47279633:28320399,43253760,0 +(1,18820:4262630,4025873:0,0,0 +[1,18820:-473656,4025873:0,0,0 +(1,18820:-473656,-710413:0,0,0 +(1,18820:-473656,-644877:0,0,0 +k1,18820:-473656,-644877:-65536 ) -(1,18822:-473656,4736287:0,0,0 -k1,18822:-473656,4736287:5209943 +(1,18820:-473656,4736287:0,0,0 +k1,18820:-473656,4736287:5209943 ) -g1,18822:-473656,-710413 +g1,18820:-473656,-710413 ) ] ) -[1,18822:6630773,47279633:25952256,43253760,0 -[1,18822:6630773,4812305:25952256,786432,0 -(1,18822:6630773,4812305:25952256,485622,11795 -(1,18822:6630773,4812305:25952256,485622,11795 -g1,18822:3078558,4812305 -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,2439708:0,1703936,0 -k1,18822:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18822:2537886,2439708:1179648,16384,0 +[1,18820:6630773,47279633:25952256,43253760,0 +[1,18820:6630773,4812305:25952256,786432,0 +(1,18820:6630773,4812305:25952256,485622,11795 +(1,18820:6630773,4812305:25952256,485622,11795 +g1,18820:3078558,4812305 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,2439708:0,1703936,0 +k1,18820:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18820:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18822:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18820:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,2439708:0,1703936,0 -g1,18822:29030814,2439708 -g1,18822:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18822:36151628,1915420:16384,1179648,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,2439708:0,1703936,0 +g1,18820:29030814,2439708 +g1,18820:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18820:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18822:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18820:37855564,2439708:1179648,16384,0 ) ) -k1,18822:3078556,2439708:-34777008 +k1,18820:3078556,2439708:-34777008 ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,49800853:0,16384,2228224 -k1,18822:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18822:2537886,49800853:1179648,16384,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,49800853:0,16384,2228224 +k1,18820:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18820:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18822:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18820:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18822:3078558,4812305:0,0,0 -(1,18822:3078558,49800853:0,16384,2228224 -g1,18822:29030814,49800853 -g1,18822:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18822:36151628,51504789:16384,1179648,0 +[1,18820:3078558,4812305:0,0,0 +(1,18820:3078558,49800853:0,16384,2228224 +g1,18820:29030814,49800853 +g1,18820:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18820:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18822:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18820:37855564,49800853:1179648,16384,0 ) ) -k1,18822:3078556,49800853:-34777008 +k1,18820:3078556,49800853:-34777008 ) -] -g1,18822:6630773,4812305 -g1,18822:6630773,4812305 -g1,18822:10347975,4812305 -k1,18822:31387651,4812305:21039676 -) -) -] -[1,18822:6630773,45706769:25952256,40108032,0 -(1,18822:6630773,45706769:25952256,40108032,0 -(1,18822:6630773,45706769:0,0,0 -g1,18822:6630773,45706769 +] +g1,18820:6630773,4812305 +g1,18820:6630773,4812305 +g1,18820:10347975,4812305 +k1,18820:31387651,4812305:21039676 +) +) +] +[1,18820:6630773,45706769:25952256,40108032,0 +(1,18820:6630773,45706769:25952256,40108032,0 +(1,18820:6630773,45706769:0,0,0 +g1,18820:6630773,45706769 ) -[1,18822:6630773,45706769:25952256,40108032,0 -[1,18812:6630773,44054122:25952256,36802738,0 -[1,18812:6630773,44054122:25952256,36802738,0 -(1,18775:6630773,8412027:25952256,505283,11795 -h1,18775:6607180,8412027:0,0,0 -g1,18775:8644694,8412027 -k1,18775:32583029,8412027:22968402 -g1,18775:32583029,8412027 -) -(1,18775:6630773,9277107:25952256,513147,134348 -h1,18775:6579000,9277107:0,0,0 -k1,18775:9552189,9277107:144656 -k1,18775:13204331,9277107:144655 -k1,18775:16439010,9277107:144656 -k1,18775:17199704,9277107:144656 -k1,18775:19623047,9277107:144656 -h1,18775:20593635,9277107:0,0,0 -k1,18775:20911960,9277107:144655 -k1,18775:23967070,9277107:144656 -k1,18775:26030620,9277107:144656 -k1,18775:27555464,9277107:144656 -k1,18775:28691679,9277107:144655 -k1,18775:31391584,9277107:144656 -k1,18775:32583029,9277107:0 -) -(1,18775:6630773,10142187:25952256,513147,126483 -g1,18775:7849087,10142187 -g1,18775:11222880,10142187 -g1,18775:14890274,10142187 -g1,18775:16286190,10142187 -g1,18775:18750999,10142187 -g1,18775:21473364,10142187 -g1,18775:22204090,10142187 -g1,18775:23019357,10142187 -g1,18775:23984702,10142187 -g1,18775:25881313,10142187 -(1,18775:25881313,10142187:0,452978,115847 -r1,18822:31163544,10142187:5282231,568825,115847 -k1,18775:25881313,10142187:-5282231 -) -(1,18775:25881313,10142187:5282231,452978,115847 -k1,18775:25881313,10142187:3277 -h1,18775:31160267,10142187:0,411205,112570 -) -k1,18775:32583029,10142187:1367057 -g1,18775:32583029,10142187 -) -(1,18811:6630773,11354608:25952256,0,0 -k1,18811:19606901,11354608:12976128 -h1,18777:19606901,11354608:0,0,0 -k1,18777:32583029,11354608:12976128 -) -(1,18811:6630773,44054122:25952256,32633978,0 -g1,18811:6630773,44054122 -[1,18811:6630773,44054122:26011395,32633978,0 -(1,18811:6630773,11485680:26011395,65536,0 -g1,18811:6630773,11485680 -(1,18811:6630773,11485680:26011395,65536,0 -r1,18822:32642168,11485680:26011395,65536,0 -) -g1,18811:32642168,11485680 -) -(1,18811:6630773,27909515:26011395,16358299,15947999 -g1,18811:6630773,27909515 -(1,18811:6630773,27909515:26011395,16358299,15947999 -g1,18777:6830002,27909515 -$1,18811:6830002,27909515 -[1,18811:6830002,27909515:25812166,16358299,15947999 -(1,18780:6830002,12342336:25812166,555093,237900 -g1,18779:6830002,12342336 -(1,18779:6830002,12342336:6289304,555093,237900 -r1,18822:6830002,12342336:0,792993,237900 -g1,18779:7157682,12342336 -g1,18779:7157683,12342336 -k1,18779:12791626,12342336:2538678 -g1,18779:13119306,12342336 -) -g1,18779:13119306,12342336 -(1,18779:13119306,12342336:3483894,555093,237900 -g1,18779:13446986,12342336 -g1,18779:13446987,12342336 -k1,18779:16275520,12342336:293600 -g1,18779:16603200,12342336 -) -g1,18779:16603200,12342336 -(1,18780:16603200,12342336:16038968,555093,237900 -g1,18779:16930880,12342336 -[1,18780:16930880,12342336:15383608,505283,237900 -(1,18780:16930880,12342336:15383608,505283,237900 -h1,18779:16906632,12342336:0,0,0 -r1,18822:20212923,12342336:0,237900,237900 -k1,18780:32314488,12342336:12101565 -g1,18780:32314488,12342336 -) -] -g1,18780:32314488,12342336 -g1,18780:32642168,12342336 -) -g1,18780:32642168,12342336 -) -(1,18782:6830002,13464678:25812166,555093,237900 -g1,18781:6830002,13464678 -(1,18781:6830002,13464678:6289304,555093,237900 -r1,18822:6830002,13464678:0,792993,237900 -g1,18781:7157682,13464678 -g1,18781:7157683,13464678 -(1,18781:7157683,13464678:0,452978,122846 -r1,18822:10681355,13464678:3523672,575824,122846 -k1,18781:7157683,13464678:-3523672 -) -(1,18781:7157683,13464678:3523672,452978,122846 -k1,18781:7157683,13464678:3277 -h1,18781:10678078,13464678:0,411205,112570 -) -k1,18781:12791626,13464678:2110271 -g1,18781:13119306,13464678 -) -g1,18781:13119306,13464678 -(1,18781:13119306,13464678:3483894,555093,237900 -g1,18781:13446986,13464678 -g1,18781:13446987,13464678 -g1,18781:16275520,13464678 -g1,18781:16603200,13464678 -) -g1,18781:16603200,13464678 -(1,18782:16603200,13464678:16038968,555093,237900 -g1,18781:16930880,13464678 -[1,18782:16930880,13464678:15383608,513147,237900 -(1,18782:16930880,13464678:15383608,513147,237900 -h1,18781:16912530,13464678:0,0,0 -g1,18781:17650465,13464678 -g1,18781:18384468,13464678 -g1,18781:20626454,13464678 -g1,18781:22268130,13464678 -g1,18781:23481856,13464678 -g1,18781:25885716,13464678 -r1,18822:27638149,13464678:0,237900,237900 -k1,18782:32314488,13464678:4676339 -g1,18782:32314488,13464678 -) -] -g1,18782:32314488,13464678 -g1,18782:32642168,13464678 -) -g1,18782:32642168,13464678 -) -(1,18783:6830002,14257671:25812166,555093,237900 -g1,18782:6830002,14257671 -(1,18782:6830002,14257671:6289304,555093,237900 -r1,18822:6830002,14257671:0,792993,237900 -g1,18782:7157682,14257671 -g1,18782:7157683,14257671 -(1,18782:7157683,14257671:0,452978,122846 -r1,18822:11384779,14257671:4227096,575824,122846 -k1,18782:7157683,14257671:-4227096 -) -(1,18782:7157683,14257671:4227096,452978,122846 -k1,18782:7157683,14257671:3277 -h1,18782:11381502,14257671:0,411205,112570 -) -k1,18782:12791626,14257671:1406847 -g1,18782:13119306,14257671 -) -g1,18782:13119306,14257671 -(1,18782:13119306,14257671:3483894,555093,237900 -g1,18782:13446986,14257671 -g1,18782:13446987,14257671 -k1,18782:16275520,14257671:838861 -g1,18782:16603200,14257671 -) -g1,18782:16603200,14257671 -(1,18783:16603200,14257671:16038968,555093,237900 -g1,18782:16930880,14257671 -[1,18783:16930880,14257671:15383608,513147,237900 -(1,18783:16930880,14257671:15383608,513147,237900 -h1,18782:16912530,14257671:0,0,0 -g1,18782:17650465,14257671 -g1,18782:18384468,14257671 -g1,18782:20026144,14257671 -g1,18782:22953637,14257671 -g1,18782:26309735,14257671 -g1,18782:27523461,14257671 -g1,18782:29927321,14257671 -r1,18822:31679754,14257671:0,237900,237900 -k1,18783:32314488,14257671:634734 -g1,18783:32314488,14257671 -) -] -g1,18783:32314488,14257671 -g1,18783:32642168,14257671 -) -g1,18783:32642168,14257671 -) -(1,18784:6830002,15050664:25812166,555093,1102980 -g1,18783:6830002,15050664 -(1,18783:6830002,15050664:6289304,555093,1102980 -r1,18822:6830002,15050664:0,792993,237900 -g1,18783:7157682,15050664 -g1,18783:7157683,15050664 -(1,18783:7157683,15050664:0,452978,122846 -r1,18822:12439914,15050664:5282231,575824,122846 -k1,18783:7157683,15050664:-5282231 -) -(1,18783:7157683,15050664:5282231,452978,122846 -k1,18783:7157683,15050664:3277 -h1,18783:12436637,15050664:0,411205,112570 -) -k1,18783:12791626,15050664:351712 -g1,18783:13119306,15050664 -) -g1,18783:13119306,15050664 -(1,18783:13119306,15050664:3483894,555093,1102980 -g1,18783:13446986,15050664 -g1,18783:13446987,15050664 -g1,18783:16275520,15050664 -g1,18783:16603200,15050664 -) -g1,18783:16603200,15050664 -(1,18784:16603200,15050664:16038968,555093,1102980 -g1,18783:16930880,15050664 -[1,18784:16930880,15050664:15383608,505283,1102980 -(1,18784:16930880,15050664:15383608,505283,126483 -h1,18783:16912530,15050664:0,0,0 -k1,18783:17650983,15050664:199747 -k1,18783:18385503,15050664:199746 -k1,18783:20356033,15050664:199747 -k1,18783:22431419,15050664:199746 -k1,18783:24673923,15050664:199747 -k1,18783:26316116,15050664:199746 -k1,18783:29244127,15050664:199747 -k1,18783:32314488,15050664:0 -) -(1,18784:16930880,15915744:15383608,513147,237900 -g1,18783:18144606,15915744 -g1,18783:20548466,15915744 -r1,18822:22300899,15915744:0,237900,237900 -k1,18784:32314488,15915744:10013589 -g1,18784:32314488,15915744 -) -] -g1,18784:32314488,15050664 -g1,18784:32642168,15050664 -) -g1,18784:32642168,15050664 -) -(1,18785:6830002,16708737:25812166,555093,237900 -g1,18784:6830002,16708737 -(1,18784:6830002,16708737:6289304,555093,237900 -r1,18822:6830002,16708737:0,792993,237900 -g1,18784:7157682,16708737 -g1,18784:7157683,16708737 -(1,18784:7157683,16708737:0,452978,122846 -r1,18822:11736491,16708737:4578808,575824,122846 -k1,18784:7157683,16708737:-4578808 -) -(1,18784:7157683,16708737:4578808,452978,122846 -k1,18784:7157683,16708737:3277 -h1,18784:11733214,16708737:0,411205,112570 -) -k1,18784:12791626,16708737:1055135 -g1,18784:13119306,16708737 -) -g1,18784:13119306,16708737 -(1,18784:13119306,16708737:3483894,555093,237900 -g1,18784:13446986,16708737 -g1,18784:13446987,16708737 -g1,18784:16275520,16708737 -g1,18784:16603200,16708737 -) -g1,18784:16603200,16708737 -(1,18785:16603200,16708737:16038968,555093,237900 -g1,18784:16930880,16708737 -[1,18785:16930880,16708737:15383608,505283,237900 -(1,18785:16930880,16708737:15383608,505283,237900 -h1,18784:16912530,16708737:0,0,0 -g1,18784:17650465,16708737 -g1,18784:19620477,16708737 -g1,18784:21695346,16708737 -g1,18784:24622839,16708737 -g1,18784:27978937,16708737 -g1,18784:30382797,16708737 -r1,18822:32135230,16708737:0,237900,237900 -k1,18785:32314488,16708737:179258 -g1,18785:32314488,16708737 -) -] -g1,18785:32314488,16708737 -g1,18785:32642168,16708737 -) -g1,18785:32642168,16708737 -) -(1,18786:6830002,17501730:25812166,555093,237900 -g1,18785:6830002,17501730 -(1,18785:6830002,17501730:6289304,555093,237900 -r1,18822:6830002,17501730:0,792993,237900 -g1,18785:7157682,17501730 -g1,18785:7157683,17501730 -(1,18785:7157683,17501730:0,452978,122846 -r1,18822:12088203,17501730:4930520,575824,122846 -k1,18785:7157683,17501730:-4930520 -) -(1,18785:7157683,17501730:4930520,452978,122846 -k1,18785:7157683,17501730:3277 -h1,18785:12084926,17501730:0,411205,112570 -) -k1,18785:12791626,17501730:703423 -g1,18785:13119306,17501730 -) -g1,18785:13119306,17501730 -(1,18785:13119306,17501730:3483894,555093,237900 -g1,18785:13446986,17501730 -g1,18785:13446987,17501730 -g1,18785:16275520,17501730 -g1,18785:16603200,17501730 -) -g1,18785:16603200,17501730 -(1,18786:16603200,17501730:16038968,555093,237900 -g1,18785:16930880,17501730 -[1,18786:16930880,17501730:15383608,505283,237900 -(1,18786:16930880,17501730:15383608,505283,237900 -h1,18785:16912530,17501730:0,0,0 -g1,18785:17650465,17501730 -g1,18785:19620477,17501730 -g1,18785:21695346,17501730 -g1,18785:24622839,17501730 -g1,18785:27978937,17501730 -g1,18785:30382797,17501730 -r1,18822:32135230,17501730:0,237900,237900 -k1,18786:32314488,17501730:179258 -g1,18786:32314488,17501730 -) -] -g1,18786:32314488,17501730 -g1,18786:32642168,17501730 -) -g1,18786:32642168,17501730 -) -(1,18787:6830002,18294723:25812166,555093,237900 -g1,18786:6830002,18294723 -(1,18786:6830002,18294723:6289304,555093,237900 -r1,18822:6830002,18294723:0,792993,237900 -g1,18786:7157682,18294723 -g1,18786:7157683,18294723 -(1,18786:7157683,18294723:0,452978,122846 -r1,18822:10329643,18294723:3171960,575824,122846 -k1,18786:7157683,18294723:-3171960 -) -(1,18786:7157683,18294723:3171960,452978,122846 -k1,18786:7157683,18294723:3277 -h1,18786:10326366,18294723:0,411205,112570 -) -k1,18786:12791626,18294723:2461983 -g1,18786:13119306,18294723 -) -g1,18786:13119306,18294723 -(1,18786:13119306,18294723:3483894,555093,237900 -g1,18786:13446986,18294723 -g1,18786:13446987,18294723 -g1,18786:16275520,18294723 -g1,18786:16603200,18294723 -) -g1,18786:16603200,18294723 -(1,18787:16603200,18294723:16038968,555093,237900 -g1,18786:16930880,18294723 -[1,18787:16930880,18294723:15383608,505283,237900 -(1,18787:16930880,18294723:15383608,505283,237900 -h1,18786:16912530,18294723:0,0,0 -g1,18786:17650465,18294723 -g1,18786:18384468,18294723 -g1,18786:21311961,18294723 -g1,18786:24668059,18294723 -g1,18786:27071919,18294723 -r1,18822:28824352,18294723:0,237900,237900 -k1,18787:32314488,18294723:3490136 -g1,18787:32314488,18294723 -) -] -g1,18787:32314488,18294723 -g1,18787:32642168,18294723 -) -g1,18787:32642168,18294723 -) -(1,18788:6830002,19087716:25812166,555093,237900 -g1,18787:6830002,19087716 -(1,18787:6830002,19087716:6289304,555093,237900 -r1,18822:6830002,19087716:0,792993,237900 -g1,18787:7157682,19087716 -g1,18787:7157683,19087716 -(1,18787:7157683,19087716:0,414482,122846 -r1,18822:11384779,19087716:4227096,537328,122846 -k1,18787:7157683,19087716:-4227096 -) -(1,18787:7157683,19087716:4227096,414482,122846 -k1,18787:7157683,19087716:3277 -h1,18787:11381502,19087716:0,411205,112570 -) -k1,18787:12791626,19087716:1406847 -g1,18787:13119306,19087716 -) -g1,18787:13119306,19087716 -(1,18787:13119306,19087716:3483894,555093,237900 -g1,18787:13446986,19087716 -g1,18787:13446987,19087716 -g1,18787:16275520,19087716 -g1,18787:16603200,19087716 -) -g1,18787:16603200,19087716 -(1,18788:16603200,19087716:16038968,555093,237900 -g1,18787:16930880,19087716 -[1,18788:16930880,19087716:15383608,505283,237900 -(1,18788:16930880,19087716:15383608,505283,237900 -h1,18787:16912530,19087716:0,0,0 -k1,18787:17600800,19087716:149564 -k1,18787:18285139,19087716:149565 -k1,18787:20156334,19087716:149564 -k1,18787:22023598,19087716:149565 -k1,18787:24901426,19087716:149564 -k1,18787:28207860,19087716:149565 -k1,18787:30562055,19087716:149564 -r1,18822:32314488,19087716:0,237900,237900 -k1,18788:32314488,19087716:0 -k1,18788:32314488,19087716:0 -) -] -g1,18788:32314488,19087716 -g1,18788:32642168,19087716 -) -g1,18788:32642168,19087716 -) -(1,18789:6830002,19880709:25812166,555093,237900 -g1,18788:6830002,19880709 -(1,18788:6830002,19880709:6289304,555093,237900 -r1,18822:6830002,19880709:0,792993,237900 -g1,18788:7157682,19880709 -g1,18788:7157683,19880709 -(1,18788:7157683,19880709:0,414482,122846 -r1,18822:10329643,19880709:3171960,537328,122846 -k1,18788:7157683,19880709:-3171960 -) -(1,18788:7157683,19880709:3171960,414482,122846 -k1,18788:7157683,19880709:3277 -h1,18788:10326366,19880709:0,411205,112570 -) -k1,18788:12791626,19880709:2461983 -g1,18788:13119306,19880709 -) -g1,18788:13119306,19880709 -(1,18788:13119306,19880709:3483894,555093,237900 -g1,18788:13446986,19880709 -g1,18788:13446987,19880709 -g1,18788:16275520,19880709 -g1,18788:16603200,19880709 -) -g1,18788:16603200,19880709 -(1,18789:16603200,19880709:16038968,555093,237900 -g1,18788:16930880,19880709 -[1,18789:16930880,19880709:15383608,505283,237900 -(1,18789:16930880,19880709:15383608,505283,237900 -h1,18788:16912530,19880709:0,0,0 -g1,18788:17650465,19880709 -g1,18788:18384468,19880709 -g1,18788:21311961,19880709 -g1,18788:24668059,19880709 -g1,18788:27071919,19880709 -r1,18822:28824352,19880709:0,237900,237900 -k1,18789:32314488,19880709:3490136 -g1,18789:32314488,19880709 -) -] -g1,18789:32314488,19880709 -g1,18789:32642168,19880709 -) -g1,18789:32642168,19880709 -) -(1,18790:6830002,20673702:25812166,555093,237900 -g1,18789:6830002,20673702 -(1,18789:6830002,20673702:6289304,555093,237900 -r1,18822:6830002,20673702:0,792993,237900 -g1,18789:7157682,20673702 -g1,18789:7157683,20673702 -(1,18789:7157683,20673702:0,452978,122846 -r1,18822:10329643,20673702:3171960,575824,122846 -k1,18789:7157683,20673702:-3171960 -) -(1,18789:7157683,20673702:3171960,452978,122846 -k1,18789:7157683,20673702:3277 -h1,18789:10326366,20673702:0,411205,112570 -) -k1,18789:12791626,20673702:2461983 -g1,18789:13119306,20673702 -) -g1,18789:13119306,20673702 -(1,18789:13119306,20673702:3483894,555093,237900 -g1,18789:13446986,20673702 -g1,18789:13446987,20673702 -g1,18789:16275520,20673702 -g1,18789:16603200,20673702 -) -g1,18789:16603200,20673702 -(1,18790:16603200,20673702:16038968,555093,237900 -g1,18789:16930880,20673702 -[1,18790:16930880,20673702:15383608,505283,237900 -(1,18790:16930880,20673702:15383608,505283,237900 -h1,18789:16912530,20673702:0,0,0 -g1,18789:17650465,20673702 -g1,18789:18384468,20673702 -g1,18789:21311961,20673702 -g1,18789:24668059,20673702 -g1,18789:27071919,20673702 -r1,18822:28824352,20673702:0,237900,237900 -k1,18790:32314488,20673702:3490136 -g1,18790:32314488,20673702 -) -] -g1,18790:32314488,20673702 -g1,18790:32642168,20673702 -) -g1,18790:32642168,20673702 -) -(1,18791:6830002,21466695:25812166,555093,1102980 -g1,18790:6830002,21466695 -(1,18790:6830002,21466695:6289304,555093,1102980 -r1,18822:6830002,21466695:0,792993,237900 -g1,18790:7157682,21466695 -g1,18790:7157683,21466695 -(1,18790:7157683,21466695:0,414482,122846 -r1,18822:10681355,21466695:3523672,537328,122846 -k1,18790:7157683,21466695:-3523672 -) -(1,18790:7157683,21466695:3523672,414482,122846 -k1,18790:7157683,21466695:3277 -h1,18790:10678078,21466695:0,411205,112570 -) -k1,18790:12791626,21466695:2110271 -g1,18790:13119306,21466695 -) -g1,18790:13119306,21466695 -(1,18790:13119306,21466695:3483894,555093,1102980 -g1,18790:13446986,21466695 -g1,18790:13446987,21466695 -g1,18790:16275520,21466695 -g1,18790:16603200,21466695 -) -g1,18790:16603200,21466695 -(1,18791:16603200,21466695:16038968,555093,1102980 -g1,18790:16930880,21466695 -[1,18791:16930880,21466695:15383608,505283,1102980 -(1,18791:16930880,21466695:15383608,505283,126483 -h1,18790:16912530,21466695:0,0,0 -k1,18790:17654113,21466695:202877 -k1,18790:18391763,21466695:202876 -k1,18790:20142600,21466695:202877 -k1,18790:21028362,21466695:202877 -k1,18790:22948938,21466695:202877 -k1,18790:25880079,21466695:202877 -k1,18790:29239824,21466695:202876 -k1,18790:31647332,21466695:202877 -k1,18791:32314488,21466695:0 -) -(1,18791:16930880,22331775:15383608,505283,237900 -r1,18822:18122325,22331775:0,237900,237900 -k1,18791:32314488,22331775:14192163 -g1,18791:32314488,22331775 -) -] -g1,18791:32314488,21466695 -g1,18791:32642168,21466695 -) -g1,18791:32642168,21466695 -) -(1,18792:6830002,23124768:25812166,555093,1102980 -g1,18791:6830002,23124768 -(1,18791:6830002,23124768:6289304,555093,1102980 -r1,18822:6830002,23124768:0,792993,237900 -g1,18791:7157682,23124768 -g1,18791:7157683,23124768 -(1,18791:7157683,23124768:0,414482,122846 -r1,18822:10329643,23124768:3171960,537328,122846 -k1,18791:7157683,23124768:-3171960 -) -(1,18791:7157683,23124768:3171960,414482,122846 -k1,18791:7157683,23124768:3277 -h1,18791:10326366,23124768:0,411205,112570 -) -k1,18791:12791626,23124768:2461983 -g1,18791:13119306,23124768 -) -g1,18791:13119306,23124768 -(1,18791:13119306,23124768:3483894,555093,1102980 -g1,18791:13446986,23124768 -g1,18791:13446987,23124768 -g1,18791:16275520,23124768 -g1,18791:16603200,23124768 -) -g1,18791:16603200,23124768 -(1,18792:16603200,23124768:16038968,555093,1102980 -g1,18791:16930880,23124768 -[1,18792:16930880,23124768:15383608,513147,1102980 -(1,18792:16930880,23124768:15383608,513147,126483 -h1,18791:16912530,23124768:0,0,0 -k1,18791:17721123,23124768:269887 -k1,18791:18525785,23124768:269888 -k1,18791:20599878,23124768:269887 -k1,18791:21437963,23124768:269888 -k1,18791:22487073,23124768:269887 -k1,18791:25485224,23124768:269887 -k1,18791:28911981,23124768:269888 -k1,18791:30196365,23124768:269887 -k1,18791:32314488,23124768:0 -) -(1,18792:16930880,23989848:15383608,505283,237900 -r1,18822:18683313,23989848:0,237900,237900 -k1,18792:32314488,23989848:13631175 -g1,18792:32314488,23989848 -) -] -g1,18792:32314488,23124768 -g1,18792:32642168,23124768 -) -g1,18792:32642168,23124768 -) -(1,18793:6830002,24782841:25812166,555093,1102980 -g1,18792:6830002,24782841 -(1,18792:6830002,24782841:6289304,555093,1102980 -r1,18822:6830002,24782841:0,792993,237900 -g1,18792:7157682,24782841 -g1,18792:7157683,24782841 -(1,18792:7157683,24782841:0,452978,122846 -r1,18822:11033067,24782841:3875384,575824,122846 -k1,18792:7157683,24782841:-3875384 -) -(1,18792:7157683,24782841:3875384,452978,122846 -k1,18792:7157683,24782841:3277 -h1,18792:11029790,24782841:0,411205,112570 -) -k1,18792:12791626,24782841:1758559 -g1,18792:13119306,24782841 -) -g1,18792:13119306,24782841 -(1,18792:13119306,24782841:3483894,555093,1102980 -g1,18792:13446986,24782841 -g1,18792:13446987,24782841 -g1,18792:16275520,24782841 -g1,18792:16603200,24782841 -) -g1,18792:16603200,24782841 -(1,18793:16603200,24782841:16038968,555093,1102980 -g1,18792:16930880,24782841 -[1,18793:16930880,24782841:15383608,513147,1102980 -(1,18793:16930880,24782841:15383608,513147,126483 -h1,18792:16912530,24782841:0,0,0 -k1,18792:17619993,24782841:168757 -k1,18792:19385863,24782841:168758 -k1,18792:20746065,24782841:168757 -k1,18792:22790463,24782841:168758 -k1,18792:25687484,24782841:168757 -k1,18792:29013111,24782841:168758 -k1,18792:30196365,24782841:168757 -k1,18792:32314488,24782841:0 -) -(1,18793:16930880,25647921:15383608,505283,237900 -r1,18822:18683313,25647921:0,237900,237900 -k1,18793:32314488,25647921:13631175 -g1,18793:32314488,25647921 -) -] -g1,18793:32314488,24782841 -g1,18793:32642168,24782841 -) -g1,18793:32642168,24782841 -) -(1,18794:6830002,26440914:25812166,555093,1102980 -g1,18793:6830002,26440914 -(1,18793:6830002,26440914:6289304,555093,1102980 -r1,18822:6830002,26440914:0,792993,237900 -g1,18793:7157682,26440914 -g1,18793:7157683,26440914 -(1,18793:7157683,26440914:0,452978,122846 -r1,18822:10681355,26440914:3523672,575824,122846 -k1,18793:7157683,26440914:-3523672 -) -(1,18793:7157683,26440914:3523672,452978,122846 -k1,18793:7157683,26440914:3277 -h1,18793:10678078,26440914:0,411205,112570 -) -k1,18793:12791626,26440914:2110271 -g1,18793:13119306,26440914 -) -g1,18793:13119306,26440914 -(1,18793:13119306,26440914:3483894,555093,1102980 -g1,18793:13446986,26440914 -g1,18793:13446987,26440914 -g1,18793:16275520,26440914 -g1,18793:16603200,26440914 -) -g1,18793:16603200,26440914 -(1,18794:16603200,26440914:16038968,555093,1102980 -g1,18793:16930880,26440914 -[1,18794:16930880,26440914:15383608,505283,1102980 -(1,18794:16930880,26440914:15383608,505283,126483 -h1,18793:16912530,26440914:0,0,0 -k1,18793:17595162,26440914:317596 -k1,18793:18595644,26440914:317597 -k1,18793:19448014,26440914:317596 -k1,18793:21366655,26440914:317596 -k1,18793:22367137,26440914:317597 -k1,18793:24564306,26440914:317596 -k1,18793:26479014,26440914:317596 -k1,18793:27479496,26440914:317597 -k1,18793:29672732,26440914:317596 -k1,18793:32314488,26440914:0 -) -(1,18794:16930880,27305994:15383608,513147,237900 -g1,18793:20286978,27305994 -g1,18793:21500704,27305994 -g1,18793:23904564,27305994 -r1,18822:25656997,27305994:0,237900,237900 -k1,18794:32314488,27305994:6657491 -g1,18794:32314488,27305994 -) -] -g1,18794:32314488,26440914 -g1,18794:32642168,26440914 -) -g1,18794:32642168,26440914 -) -(1,18795:6830002,28098987:25812166,555093,1102980 -g1,18794:6830002,28098987 -(1,18794:6830002,28098987:6289304,555093,1102980 -r1,18822:6830002,28098987:0,792993,237900 -g1,18794:7157682,28098987 -g1,18794:7157683,28098987 -(1,18794:7157683,28098987:0,414482,122846 -r1,18822:10329643,28098987:3171960,537328,122846 -k1,18794:7157683,28098987:-3171960 -) -(1,18794:7157683,28098987:3171960,414482,122846 -k1,18794:7157683,28098987:3277 -h1,18794:10326366,28098987:0,411205,112570 -) -k1,18794:12791626,28098987:2461983 -g1,18794:13119306,28098987 -) -g1,18794:13119306,28098987 -(1,18794:13119306,28098987:3483894,555093,1102980 -g1,18794:13446986,28098987 -g1,18794:13446987,28098987 -g1,18794:16275520,28098987 -g1,18794:16603200,28098987 -) -g1,18794:16603200,28098987 -(1,18795:16603200,28098987:16038968,555093,1102980 -g1,18794:16930880,28098987 -[1,18795:16930880,28098987:15383608,513147,1102980 -(1,18795:16930880,28098987:15383608,513147,126483 -h1,18794:16912530,28098987:0,0,0 -k1,18794:18901933,28098987:214688 -k1,18794:20996193,28098987:214687 -k1,18794:22981664,28098987:214688 -k1,18794:25071991,28098987:214687 -k1,18794:28014943,28098987:214688 -k1,18794:31386499,28098987:214687 -k1,18794:32314488,28098987:0 -) -(1,18795:16930880,28964067:15383608,505283,237900 -g1,18794:19334740,28964067 -r1,18822:21087173,28964067:0,237900,237900 -k1,18795:32314488,28964067:11227315 -g1,18795:32314488,28964067 -) -] -g1,18795:32314488,28098987 -g1,18795:32642168,28098987 -) -g1,18795:32642168,28098987 -) -(1,18796:6830002,29757060:25812166,555093,1102980 -g1,18795:6830002,29757060 -(1,18795:6830002,29757060:6289304,555093,1102980 -r1,18822:6830002,29757060:0,792993,237900 -g1,18795:7157682,29757060 -g1,18795:7157683,29757060 -(1,18795:7157683,29757060:0,452978,122846 -r1,18822:10329643,29757060:3171960,575824,122846 -k1,18795:7157683,29757060:-3171960 -) -(1,18795:7157683,29757060:3171960,452978,122846 -k1,18795:7157683,29757060:3277 -h1,18795:10326366,29757060:0,411205,112570 -) -k1,18795:12791626,29757060:2461983 -g1,18795:13119306,29757060 -) -g1,18795:13119306,29757060 -(1,18795:13119306,29757060:3483894,555093,1102980 -g1,18795:13446986,29757060 -g1,18795:13446987,29757060 -g1,18795:16275520,29757060 -g1,18795:16603200,29757060 -) -g1,18795:16603200,29757060 -(1,18796:16603200,29757060:16038968,555093,1102980 -g1,18795:16930880,29757060 -[1,18796:16930880,29757060:15383608,513147,1102980 -(1,18796:16930880,29757060:15383608,513147,134348 -h1,18795:16912530,29757060:0,0,0 -k1,18795:17614002,29757060:162766 -k1,18795:18311541,29757060:162765 -k1,18795:20462669,29757060:162766 -k1,18795:22808438,29757060:162765 -k1,18795:25699468,29757060:162766 -k1,18795:29019102,29757060:162765 -k1,18795:30196365,29757060:162766 -k1,18795:32314488,29757060:0 -) -(1,18796:16930880,30622140:15383608,505283,237900 -r1,18822:18683313,30622140:0,237900,237900 -k1,18796:32314488,30622140:13631175 -g1,18796:32314488,30622140 -) -] -g1,18796:32314488,29757060 -g1,18796:32642168,29757060 -) -g1,18796:32642168,29757060 -) -(1,18797:6830002,31415133:25812166,555093,237900 -g1,18796:6830002,31415133 -(1,18796:6830002,31415133:6289304,555093,237900 -r1,18822:6830002,31415133:0,792993,237900 -g1,18796:7157682,31415133 -g1,18796:7157683,31415133 -(1,18796:7157683,31415133:0,452978,122846 -r1,18822:9977932,31415133:2820249,575824,122846 -k1,18796:7157683,31415133:-2820249 -) -(1,18796:7157683,31415133:2820249,452978,122846 -k1,18796:7157683,31415133:3277 -h1,18796:9974655,31415133:0,411205,112570 -) -k1,18796:12791626,31415133:2813694 -g1,18796:13119306,31415133 -) -g1,18796:13119306,31415133 -(1,18796:13119306,31415133:3483894,555093,237900 -g1,18796:13446986,31415133 -g1,18796:13446987,31415133 -g1,18796:16275520,31415133 -g1,18796:16603200,31415133 -) -g1,18796:16603200,31415133 -(1,18797:16603200,31415133:16038968,555093,237900 -g1,18796:16930880,31415133 -[1,18797:16930880,31415133:15383608,513147,237900 -(1,18797:16930880,31415133:15383608,513147,237900 -h1,18796:16912530,31415133:0,0,0 -g1,18796:17650465,31415133 -g1,18796:18384468,31415133 -g1,18796:20572059,31415133 -g1,18796:23499552,31415133 -g1,18796:26855650,31415133 -g1,18796:28069376,31415133 -g1,18796:30473236,31415133 -r1,18822:32225669,31415133:0,237900,237900 -k1,18797:32314488,31415133:88819 -g1,18797:32314488,31415133 -) -] -g1,18797:32314488,31415133 -g1,18797:32642168,31415133 -) -g1,18797:32642168,31415133 -) -(1,18798:6830002,32208126:25812166,555093,237900 -g1,18797:6830002,32208126 -(1,18797:6830002,32208126:6289304,555093,237900 -r1,18822:6830002,32208126:0,792993,237900 -g1,18797:7157682,32208126 -g1,18797:7157683,32208126 -(1,18797:7157683,32208126:0,414482,122846 -r1,18822:9977932,32208126:2820249,537328,122846 -k1,18797:7157683,32208126:-2820249 -) -(1,18797:7157683,32208126:2820249,414482,122846 -k1,18797:7157683,32208126:3277 -h1,18797:9974655,32208126:0,411205,112570 -) -k1,18797:12791626,32208126:2813694 -g1,18797:13119306,32208126 -) -g1,18797:13119306,32208126 -(1,18797:13119306,32208126:3483894,555093,237900 -g1,18797:13446986,32208126 -g1,18797:13446987,32208126 -g1,18797:16275520,32208126 -g1,18797:16603200,32208126 -) -g1,18797:16603200,32208126 -(1,18798:16603200,32208126:16038968,555093,237900 -g1,18797:16930880,32208126 -[1,18798:16930880,32208126:15383608,505283,237900 -(1,18798:16930880,32208126:15383608,505283,237900 -h1,18797:16912530,32208126:0,0,0 -g1,18797:17476795,32208126 -g1,18797:18358909,32208126 -g1,18797:19092912,32208126 -g1,18797:22449010,32208126 -g1,18797:24852870,32208126 -r1,18822:26605303,32208126:0,237900,237900 -k1,18798:32314488,32208126:5709185 -g1,18798:32314488,32208126 -) -] -g1,18798:32314488,32208126 -g1,18798:32642168,32208126 -) -g1,18798:32642168,32208126 -) -(1,18799:6830002,33001119:25812166,555093,237900 -g1,18798:6830002,33001119 -(1,18798:6830002,33001119:6289304,555093,237900 -r1,18822:6830002,33001119:0,792993,237900 -g1,18798:7157682,33001119 -g1,18798:7157683,33001119 -(1,18798:7157683,33001119:0,452978,122846 -r1,18822:10681355,33001119:3523672,575824,122846 -k1,18798:7157683,33001119:-3523672 -) -(1,18798:7157683,33001119:3523672,452978,122846 -k1,18798:7157683,33001119:3277 -h1,18798:10678078,33001119:0,411205,112570 -) -k1,18798:12791626,33001119:2110271 -g1,18798:13119306,33001119 -) -g1,18798:13119306,33001119 -(1,18798:13119306,33001119:3483894,555093,237900 -g1,18798:13446986,33001119 -g1,18798:13446987,33001119 -g1,18798:16275520,33001119 -g1,18798:16603200,33001119 -) -g1,18798:16603200,33001119 -(1,18799:16603200,33001119:16038968,555093,237900 -g1,18798:16930880,33001119 -[1,18799:16930880,33001119:15383608,505283,237900 -(1,18799:16930880,33001119:15383608,505283,237900 -h1,18798:16930880,33001119:0,0,0 -g1,18798:20532083,33001119 -g1,18798:23459576,33001119 -g1,18798:26815674,33001119 -g1,18798:29219534,33001119 -r1,18822:30971967,33001119:0,237900,237900 -k1,18799:32314488,33001119:1342521 -g1,18799:32314488,33001119 -) -] -g1,18799:32314488,33001119 -g1,18799:32642168,33001119 -) -g1,18799:32642168,33001119 -) -(1,18800:6830002,33794112:25812166,555093,237900 -g1,18799:6830002,33794112 -(1,18799:6830002,33794112:6289304,555093,237900 -r1,18822:6830002,33794112:0,792993,237900 -g1,18799:7157682,33794112 -g1,18799:7157683,33794112 -(1,18799:7157683,33794112:0,452978,122846 -r1,18822:10681355,33794112:3523672,575824,122846 -k1,18799:7157683,33794112:-3523672 -) -(1,18799:7157683,33794112:3523672,452978,122846 -k1,18799:7157683,33794112:3277 -h1,18799:10678078,33794112:0,411205,112570 -) -k1,18799:12791626,33794112:2110271 -g1,18799:13119306,33794112 -) -g1,18799:13119306,33794112 -(1,18799:13119306,33794112:3483894,555093,237900 -g1,18799:13446986,33794112 -g1,18799:13446987,33794112 -g1,18799:16275520,33794112 -g1,18799:16603200,33794112 -) -g1,18799:16603200,33794112 -(1,18800:16603200,33794112:16038968,555093,237900 -g1,18799:16930880,33794112 -[1,18800:16930880,33794112:15383608,505283,237900 -(1,18800:16930880,33794112:15383608,505283,237900 -h1,18799:16912530,33794112:0,0,0 -g1,18799:20517665,33794112 -g1,18799:23445158,33794112 -g1,18799:26801256,33794112 -g1,18799:29205116,33794112 -r1,18822:30957549,33794112:0,237900,237900 -k1,18800:32314488,33794112:1356939 -g1,18800:32314488,33794112 -) -] -g1,18800:32314488,33794112 -g1,18800:32642168,33794112 -) -g1,18800:32642168,33794112 -) -(1,18801:6830002,34587105:25812166,555093,1102980 -g1,18800:6830002,34587105 -(1,18800:6830002,34587105:6289304,555093,1102980 -r1,18822:6830002,34587105:0,792993,237900 -g1,18800:7157682,34587105 -g1,18800:7157683,34587105 -(1,18800:7157683,34587105:0,452978,122846 -r1,18822:11033067,34587105:3875384,575824,122846 -k1,18800:7157683,34587105:-3875384 -) -(1,18800:7157683,34587105:3875384,452978,122846 -k1,18800:7157683,34587105:3277 -h1,18800:11029790,34587105:0,411205,112570 -) -k1,18800:12791626,34587105:1758559 -g1,18800:13119306,34587105 -) -g1,18800:13119306,34587105 -(1,18800:13119306,34587105:3483894,555093,1102980 -g1,18800:13446986,34587105 -g1,18800:13446987,34587105 -g1,18800:16275520,34587105 -g1,18800:16603200,34587105 -) -g1,18800:16603200,34587105 -(1,18801:16603200,34587105:16038968,555093,1102980 -g1,18800:16930880,34587105 -[1,18801:16930880,34587105:15383608,505283,1102980 -(1,18801:16930880,34587105:15383608,505283,126483 -h1,18800:16930880,34587105:0,0,0 -k1,18800:20314573,34587105:342822 -k1,18800:22529103,34587105:342822 -k1,18800:25600188,34587105:342821 -k1,18800:29099879,34587105:342822 -k1,18800:31647332,34587105:342822 -k1,18801:32314488,34587105:0 -) -(1,18801:16930880,35452185:15383608,505283,237900 -r1,18822:18122325,35452185:0,237900,237900 -k1,18801:32314488,35452185:14192163 -g1,18801:32314488,35452185 -) -] -g1,18801:32314488,34587105 -g1,18801:32642168,34587105 -) -g1,18801:32642168,34587105 -) -(1,18802:6830002,36245178:25812166,555093,237900 -g1,18801:6830002,36245178 -(1,18801:6830002,36245178:6289304,555093,237900 -r1,18822:6830002,36245178:0,792993,237900 -g1,18801:7157682,36245178 -g1,18801:7157683,36245178 -(1,18801:7157683,36245178:0,414482,122846 -r1,18822:10329643,36245178:3171960,537328,122846 -k1,18801:7157683,36245178:-3171960 -) -(1,18801:7157683,36245178:3171960,414482,122846 -k1,18801:7157683,36245178:3277 -h1,18801:10326366,36245178:0,411205,112570 -) -k1,18801:12791626,36245178:2461983 -g1,18801:13119306,36245178 -) -g1,18801:13119306,36245178 -(1,18801:13119306,36245178:3483894,555093,237900 -g1,18801:13446986,36245178 -g1,18801:13446987,36245178 -g1,18801:16275520,36245178 -g1,18801:16603200,36245178 -) -g1,18801:16603200,36245178 -(1,18802:16603200,36245178:16038968,555093,237900 -g1,18801:16930880,36245178 -[1,18802:16930880,36245178:15383608,513147,237900 -(1,18802:16930880,36245178:15383608,513147,237900 -h1,18801:16912530,36245178:0,0,0 -g1,18801:17650465,36245178 -g1,18801:18384468,36245178 -g1,18801:20271249,36245178 -g1,18801:21945693,36245178 -g1,18801:24326616,36245178 -g1,18801:26396898,36245178 -g1,18801:28038574,36245178 -g1,18801:30442434,36245178 -r1,18822:32194867,36245178:0,237900,237900 -k1,18802:32314488,36245178:119621 -g1,18802:32314488,36245178 -) -] -g1,18802:32314488,36245178 -g1,18802:32642168,36245178 -) -g1,18802:32642168,36245178 -) -(1,18803:6830002,37038171:25812166,555093,1102980 -g1,18802:6830002,37038171 -(1,18802:6830002,37038171:6289304,555093,1102980 -r1,18822:6830002,37038171:0,792993,237900 -g1,18802:7157682,37038171 -g1,18802:7157683,37038171 -(1,18802:7157683,37038171:0,452978,122846 -r1,18822:10681355,37038171:3523672,575824,122846 -k1,18802:7157683,37038171:-3523672 -) -(1,18802:7157683,37038171:3523672,452978,122846 -k1,18802:7157683,37038171:3277 -h1,18802:10678078,37038171:0,411205,112570 -) -k1,18802:12791626,37038171:2110271 -g1,18802:13119306,37038171 -) -g1,18802:13119306,37038171 -(1,18802:13119306,37038171:3483894,555093,1102980 -g1,18802:13446986,37038171 -g1,18802:13446987,37038171 -g1,18802:16275520,37038171 -g1,18802:16603200,37038171 -) -g1,18802:16603200,37038171 -(1,18803:16603200,37038171:16038968,555093,1102980 -g1,18802:16930880,37038171 -[1,18803:16930880,37038171:15383608,513147,1102980 -(1,18803:16930880,37038171:15383608,513147,134348 -h1,18802:16912530,37038171:0,0,0 -k1,18802:17716700,37038171:265464 -k1,18802:18516938,37038171:265464 -k1,18802:20469953,37038171:265463 -k1,18802:22210632,37038171:265464 -k1,18802:24657790,37038171:265464 -k1,18802:27208494,37038171:265464 -k1,18802:28916404,37038171:265463 -k1,18802:30196365,37038171:265464 -k1,18802:32314488,37038171:0 -) -(1,18803:16930880,37903251:15383608,505283,237900 -r1,18822:18683313,37903251:0,237900,237900 -k1,18803:32314488,37903251:13631175 -g1,18803:32314488,37903251 -) -] -g1,18803:32314488,37038171 -g1,18803:32642168,37038171 -) -g1,18803:32642168,37038171 -) -(1,18804:6830002,38696244:25812166,555093,237900 -g1,18803:6830002,38696244 -(1,18803:6830002,38696244:6289304,555093,237900 -r1,18822:6830002,38696244:0,792993,237900 -g1,18803:7157682,38696244 -g1,18803:7157683,38696244 -(1,18803:7157683,38696244:0,452978,122846 -r1,18822:12439914,38696244:5282231,575824,122846 -k1,18803:7157683,38696244:-5282231 -) -(1,18803:7157683,38696244:5282231,452978,122846 -k1,18803:7157683,38696244:3277 -h1,18803:12436637,38696244:0,411205,112570 -) -k1,18803:12791626,38696244:351712 -g1,18803:13119306,38696244 -) -g1,18803:13119306,38696244 -(1,18803:13119306,38696244:3483894,555093,237900 -g1,18803:13446986,38696244 -g1,18803:13446987,38696244 -k1,18803:16275520,38696244:64225 -g1,18803:16603200,38696244 -) -g1,18803:16603200,38696244 -(1,18804:16603200,38696244:16038968,555093,237900 -g1,18803:16930880,38696244 -[1,18804:16930880,38696244:15383608,513147,237900 -(1,18804:16930880,38696244:15383608,513147,237900 -h1,18803:16912530,38696244:0,0,0 -g1,18803:17650465,38696244 -g1,18803:18384468,38696244 -g1,18803:20271249,38696244 -g1,18803:21945693,38696244 -g1,18803:24326616,38696244 -g1,18803:26396898,38696244 -g1,18803:28038574,38696244 -g1,18803:30442434,38696244 -r1,18822:32194867,38696244:0,237900,237900 -k1,18804:32314488,38696244:119621 -g1,18804:32314488,38696244 -) -] -g1,18804:32314488,38696244 -g1,18804:32642168,38696244 -) -g1,18804:32642168,38696244 -) -(1,18805:6830002,39489237:25812166,555093,237900 -g1,18804:6830002,39489237 -(1,18804:6830002,39489237:6289304,555093,237900 -r1,18822:6830002,39489237:0,792993,237900 -g1,18804:7157682,39489237 -g1,18804:7157683,39489237 -(1,18804:7157683,39489237:0,452978,122846 -r1,18822:12791626,39489237:5633943,575824,122846 -k1,18804:7157683,39489237:-5633943 -) -(1,18804:7157683,39489237:5633943,452978,122846 -k1,18804:7157683,39489237:3277 -h1,18804:12788349,39489237:0,411205,112570 -) -g1,18804:12791626,39489237 -g1,18804:13119306,39489237 -) -g1,18804:13119306,39489237 -(1,18804:13119306,39489237:3483894,555093,237900 -g1,18804:13446986,39489237 -g1,18804:13446987,39489237 -k1,18804:16275520,39489237:64225 -g1,18804:16603200,39489237 -) -g1,18804:16603200,39489237 -(1,18805:16603200,39489237:16038968,555093,237900 -g1,18804:16930880,39489237 -[1,18805:16930880,39489237:15383608,513147,237900 -(1,18805:16930880,39489237:15383608,513147,237900 -h1,18804:16912530,39489237:0,0,0 -g1,18804:17650465,39489237 -g1,18804:18384468,39489237 -g1,18804:20271249,39489237 -g1,18804:21945693,39489237 -g1,18804:24326616,39489237 -g1,18804:25968292,39489237 -g1,18804:27182018,39489237 -g1,18804:29585878,39489237 -r1,18822:31338311,39489237:0,237900,237900 -k1,18805:32314488,39489237:976177 -g1,18805:32314488,39489237 -) -] -g1,18805:32314488,39489237 -g1,18805:32642168,39489237 -) -g1,18805:32642168,39489237 -) -(1,18806:6830002,40282230:25812166,555093,237900 -g1,18805:6830002,40282230 -(1,18805:6830002,40282230:6289304,555093,237900 -r1,18822:6830002,40282230:0,792993,237900 -g1,18805:7157682,40282230 -g1,18805:7157683,40282230 -(1,18805:7157683,40282230:0,459977,122846 -r1,18822:9626220,40282230:2468537,582823,122846 -k1,18805:7157683,40282230:-2468537 -) -(1,18805:7157683,40282230:2468537,459977,122846 -k1,18805:7157683,40282230:3277 -h1,18805:9622943,40282230:0,411205,112570 -) -k1,18805:12791626,40282230:3165406 -g1,18805:13119306,40282230 -) -g1,18805:13119306,40282230 -(1,18805:13119306,40282230:3483894,555093,237900 -g1,18805:13446986,40282230 -g1,18805:13446987,40282230 -g1,18805:16275520,40282230 -g1,18805:16603200,40282230 -) -g1,18805:16603200,40282230 -(1,18806:16603200,40282230:16038968,555093,237900 -g1,18805:16930880,40282230 -[1,18806:16930880,40282230:15383608,513147,237900 -(1,18806:16930880,40282230:15383608,513147,237900 -h1,18805:16930880,40282230:0,0,0 -g1,18805:18144606,40282230 -r1,18822:20175567,40282230:0,237900,237900 -k1,18806:32314488,40282230:12138921 -g1,18806:32314488,40282230 -) -] -g1,18806:32314488,40282230 -g1,18806:32642168,40282230 -) -g1,18806:32642168,40282230 -) -(1,18807:6830002,41075223:25812166,555093,237900 -g1,18806:6830002,41075223 -(1,18806:6830002,41075223:6289304,555093,237900 -r1,18822:6830002,41075223:0,792993,237900 -g1,18806:7157682,41075223 -g1,18806:7157683,41075223 -(1,18806:7157683,41075223:0,452978,122846 -r1,18822:10681355,41075223:3523672,575824,122846 -k1,18806:7157683,41075223:-3523672 -) -(1,18806:7157683,41075223:3523672,452978,122846 -k1,18806:7157683,41075223:3277 -h1,18806:10678078,41075223:0,411205,112570 -) -k1,18806:12791626,41075223:2110271 -g1,18806:13119306,41075223 -) -g1,18806:13119306,41075223 -(1,18806:13119306,41075223:3483894,555093,237900 -g1,18806:13446986,41075223 -g1,18806:13446987,41075223 -k1,18806:16275520,41075223:838861 -g1,18806:16603200,41075223 -) -g1,18806:16603200,41075223 -(1,18807:16603200,41075223:16038968,555093,237900 -g1,18806:16930880,41075223 -[1,18807:16930880,41075223:15383608,505283,237900 -(1,18807:16930880,41075223:15383608,505283,237900 -h1,18806:16912530,41075223:0,0,0 -g1,18806:17650465,41075223 -g1,18806:18384468,41075223 -g1,18806:20271249,41075223 -g1,18806:21912925,41075223 -g1,18806:24316785,41075223 -r1,18822:26014167,41075223:0,237900,237900 -k1,18807:32314488,41075223:6300321 -g1,18807:32314488,41075223 -) -] -g1,18807:32314488,41075223 -g1,18807:32642168,41075223 -) -g1,18807:32642168,41075223 -) -(1,18808:6830002,41868216:25812166,555093,237900 -g1,18807:6830002,41868216 -(1,18807:6830002,41868216:6289304,555093,237900 -r1,18822:6830002,41868216:0,792993,237900 -g1,18807:7157682,41868216 -g1,18807:7157683,41868216 -(1,18807:7157683,41868216:0,452978,122846 -r1,18822:10329643,41868216:3171960,575824,122846 -k1,18807:7157683,41868216:-3171960 -) -(1,18807:7157683,41868216:3171960,452978,122846 -k1,18807:7157683,41868216:3277 -h1,18807:10326366,41868216:0,411205,112570 -) -k1,18807:12791626,41868216:2461983 -g1,18807:13119306,41868216 -) -g1,18807:13119306,41868216 -(1,18807:13119306,41868216:3483894,555093,237900 -g1,18807:13446986,41868216 -g1,18807:13446987,41868216 -k1,18807:16275520,41868216:838861 -g1,18807:16603200,41868216 -) -g1,18807:16603200,41868216 -(1,18808:16603200,41868216:16038968,555093,237900 -g1,18807:16930880,41868216 -[1,18808:16930880,41868216:15383608,505283,237900 -(1,18808:16930880,41868216:15383608,505283,237900 -h1,18807:16912530,41868216:0,0,0 -g1,18807:17650465,41868216 -g1,18807:18384468,41868216 -g1,18807:20271249,41868216 -g1,18807:23410423,41868216 -g1,18807:26744239,41868216 -r1,18822:28441621,41868216:0,237900,237900 -k1,18808:32314488,41868216:3872867 -g1,18808:32314488,41868216 -) -] -g1,18808:32314488,41868216 -g1,18808:32642168,41868216 -) -g1,18808:32642168,41868216 -) -(1,18809:6830002,42661209:25812166,555093,237900 -g1,18808:6830002,42661209 -(1,18808:6830002,42661209:6289304,555093,237900 -r1,18822:6830002,42661209:0,792993,237900 -g1,18808:7157682,42661209 -g1,18808:7157683,42661209 -(1,18808:7157683,42661209:0,452978,122846 -r1,18822:10329643,42661209:3171960,575824,122846 -k1,18808:7157683,42661209:-3171960 -) -(1,18808:7157683,42661209:3171960,452978,122846 -k1,18808:7157683,42661209:3277 -h1,18808:10326366,42661209:0,411205,112570 -) -k1,18808:12791626,42661209:2461983 -g1,18808:13119306,42661209 -) -g1,18808:13119306,42661209 -(1,18808:13119306,42661209:3483894,555093,237900 -g1,18808:13446986,42661209 -g1,18808:13446987,42661209 -k1,18808:16275520,42661209:838861 -g1,18808:16603200,42661209 +[1,18820:6630773,45706769:25952256,40108032,0 +[1,18810:6630773,44054122:25952256,36802738,0 +[1,18810:6630773,44054122:25952256,36802738,0 +(1,18773:6630773,8412027:25952256,505283,11795 +h1,18773:6607180,8412027:0,0,0 +g1,18773:8644694,8412027 +k1,18773:32583029,8412027:22968402 +g1,18773:32583029,8412027 +) +(1,18773:6630773,9277107:25952256,513147,134348 +h1,18773:6579000,9277107:0,0,0 +k1,18773:9552189,9277107:144656 +k1,18773:13204331,9277107:144655 +k1,18773:16439010,9277107:144656 +k1,18773:17199704,9277107:144656 +k1,18773:19623047,9277107:144656 +h1,18773:20593635,9277107:0,0,0 +k1,18773:20911960,9277107:144655 +k1,18773:23967070,9277107:144656 +k1,18773:26030620,9277107:144656 +k1,18773:27555464,9277107:144656 +k1,18773:28691679,9277107:144655 +k1,18773:31391584,9277107:144656 +k1,18773:32583029,9277107:0 +) +(1,18773:6630773,10142187:25952256,513147,126483 +g1,18773:7849087,10142187 +g1,18773:11222880,10142187 +g1,18773:14890274,10142187 +g1,18773:16286190,10142187 +g1,18773:18750999,10142187 +g1,18773:21473364,10142187 +g1,18773:22204090,10142187 +g1,18773:23019357,10142187 +g1,18773:23984702,10142187 +g1,18773:25881313,10142187 +(1,18773:25881313,10142187:0,452978,115847 +r1,18820:31163544,10142187:5282231,568825,115847 +k1,18773:25881313,10142187:-5282231 +) +(1,18773:25881313,10142187:5282231,452978,115847 +k1,18773:25881313,10142187:3277 +h1,18773:31160267,10142187:0,411205,112570 +) +k1,18773:32583029,10142187:1367057 +g1,18773:32583029,10142187 +) +(1,18809:6630773,11354608:25952256,0,0 +k1,18809:19606901,11354608:12976128 +h1,18775:19606901,11354608:0,0,0 +k1,18775:32583029,11354608:12976128 +) +(1,18809:6630773,44054122:25952256,32633978,0 +g1,18809:6630773,44054122 +[1,18809:6630773,44054122:26011395,32633978,0 +(1,18809:6630773,11485680:26011395,65536,0 +g1,18809:6630773,11485680 +(1,18809:6630773,11485680:26011395,65536,0 +r1,18820:32642168,11485680:26011395,65536,0 +) +g1,18809:32642168,11485680 +) +(1,18809:6630773,27909515:26011395,16358299,15947999 +g1,18809:6630773,27909515 +(1,18809:6630773,27909515:26011395,16358299,15947999 +g1,18775:6830002,27909515 +$1,18809:6830002,27909515 +[1,18809:6830002,27909515:25812166,16358299,15947999 +(1,18778:6830002,12342336:25812166,555093,237900 +g1,18777:6830002,12342336 +(1,18777:6830002,12342336:6289304,555093,237900 +r1,18820:6830002,12342336:0,792993,237900 +g1,18777:7157682,12342336 +g1,18777:7157683,12342336 +k1,18777:12791626,12342336:2538678 +g1,18777:13119306,12342336 +) +g1,18777:13119306,12342336 +(1,18777:13119306,12342336:3483894,555093,237900 +g1,18777:13446986,12342336 +g1,18777:13446987,12342336 +k1,18777:16275520,12342336:293600 +g1,18777:16603200,12342336 +) +g1,18777:16603200,12342336 +(1,18778:16603200,12342336:16038968,555093,237900 +g1,18777:16930880,12342336 +[1,18778:16930880,12342336:15383608,505283,237900 +(1,18778:16930880,12342336:15383608,505283,237900 +h1,18777:16906632,12342336:0,0,0 +r1,18820:20212923,12342336:0,237900,237900 +k1,18778:32314488,12342336:12101565 +g1,18778:32314488,12342336 +) +] +g1,18778:32314488,12342336 +g1,18778:32642168,12342336 +) +g1,18778:32642168,12342336 +) +(1,18780:6830002,13464678:25812166,555093,237900 +g1,18779:6830002,13464678 +(1,18779:6830002,13464678:6289304,555093,237900 +r1,18820:6830002,13464678:0,792993,237900 +g1,18779:7157682,13464678 +g1,18779:7157683,13464678 +(1,18779:7157683,13464678:0,452978,122846 +r1,18820:10681355,13464678:3523672,575824,122846 +k1,18779:7157683,13464678:-3523672 +) +(1,18779:7157683,13464678:3523672,452978,122846 +k1,18779:7157683,13464678:3277 +h1,18779:10678078,13464678:0,411205,112570 +) +k1,18779:12791626,13464678:2110271 +g1,18779:13119306,13464678 +) +g1,18779:13119306,13464678 +(1,18779:13119306,13464678:3483894,555093,237900 +g1,18779:13446986,13464678 +g1,18779:13446987,13464678 +g1,18779:16275520,13464678 +g1,18779:16603200,13464678 +) +g1,18779:16603200,13464678 +(1,18780:16603200,13464678:16038968,555093,237900 +g1,18779:16930880,13464678 +[1,18780:16930880,13464678:15383608,513147,237900 +(1,18780:16930880,13464678:15383608,513147,237900 +h1,18779:16912530,13464678:0,0,0 +g1,18779:17650465,13464678 +g1,18779:18384468,13464678 +g1,18779:20626454,13464678 +g1,18779:22268130,13464678 +g1,18779:23481856,13464678 +g1,18779:25885716,13464678 +r1,18820:27638149,13464678:0,237900,237900 +k1,18780:32314488,13464678:4676339 +g1,18780:32314488,13464678 +) +] +g1,18780:32314488,13464678 +g1,18780:32642168,13464678 +) +g1,18780:32642168,13464678 +) +(1,18781:6830002,14257671:25812166,555093,237900 +g1,18780:6830002,14257671 +(1,18780:6830002,14257671:6289304,555093,237900 +r1,18820:6830002,14257671:0,792993,237900 +g1,18780:7157682,14257671 +g1,18780:7157683,14257671 +(1,18780:7157683,14257671:0,452978,122846 +r1,18820:11384779,14257671:4227096,575824,122846 +k1,18780:7157683,14257671:-4227096 +) +(1,18780:7157683,14257671:4227096,452978,122846 +k1,18780:7157683,14257671:3277 +h1,18780:11381502,14257671:0,411205,112570 +) +k1,18780:12791626,14257671:1406847 +g1,18780:13119306,14257671 +) +g1,18780:13119306,14257671 +(1,18780:13119306,14257671:3483894,555093,237900 +g1,18780:13446986,14257671 +g1,18780:13446987,14257671 +k1,18780:16275520,14257671:838861 +g1,18780:16603200,14257671 +) +g1,18780:16603200,14257671 +(1,18781:16603200,14257671:16038968,555093,237900 +g1,18780:16930880,14257671 +[1,18781:16930880,14257671:15383608,513147,237900 +(1,18781:16930880,14257671:15383608,513147,237900 +h1,18780:16912530,14257671:0,0,0 +g1,18780:17650465,14257671 +g1,18780:18384468,14257671 +g1,18780:20026144,14257671 +g1,18780:22953637,14257671 +g1,18780:26309735,14257671 +g1,18780:27523461,14257671 +g1,18780:29927321,14257671 +r1,18820:31679754,14257671:0,237900,237900 +k1,18781:32314488,14257671:634734 +g1,18781:32314488,14257671 +) +] +g1,18781:32314488,14257671 +g1,18781:32642168,14257671 +) +g1,18781:32642168,14257671 +) +(1,18782:6830002,15050664:25812166,555093,1102980 +g1,18781:6830002,15050664 +(1,18781:6830002,15050664:6289304,555093,1102980 +r1,18820:6830002,15050664:0,792993,237900 +g1,18781:7157682,15050664 +g1,18781:7157683,15050664 +(1,18781:7157683,15050664:0,452978,122846 +r1,18820:12439914,15050664:5282231,575824,122846 +k1,18781:7157683,15050664:-5282231 +) +(1,18781:7157683,15050664:5282231,452978,122846 +k1,18781:7157683,15050664:3277 +h1,18781:12436637,15050664:0,411205,112570 +) +k1,18781:12791626,15050664:351712 +g1,18781:13119306,15050664 +) +g1,18781:13119306,15050664 +(1,18781:13119306,15050664:3483894,555093,1102980 +g1,18781:13446986,15050664 +g1,18781:13446987,15050664 +g1,18781:16275520,15050664 +g1,18781:16603200,15050664 +) +g1,18781:16603200,15050664 +(1,18782:16603200,15050664:16038968,555093,1102980 +g1,18781:16930880,15050664 +[1,18782:16930880,15050664:15383608,505283,1102980 +(1,18782:16930880,15050664:15383608,505283,126483 +h1,18781:16912530,15050664:0,0,0 +k1,18781:17650983,15050664:199747 +k1,18781:18385503,15050664:199746 +k1,18781:20356033,15050664:199747 +k1,18781:22431419,15050664:199746 +k1,18781:24673923,15050664:199747 +k1,18781:26316116,15050664:199746 +k1,18781:29244127,15050664:199747 +k1,18781:32314488,15050664:0 +) +(1,18782:16930880,15915744:15383608,513147,237900 +g1,18781:18144606,15915744 +g1,18781:20548466,15915744 +r1,18820:22300899,15915744:0,237900,237900 +k1,18782:32314488,15915744:10013589 +g1,18782:32314488,15915744 +) +] +g1,18782:32314488,15050664 +g1,18782:32642168,15050664 +) +g1,18782:32642168,15050664 +) +(1,18783:6830002,16708737:25812166,555093,237900 +g1,18782:6830002,16708737 +(1,18782:6830002,16708737:6289304,555093,237900 +r1,18820:6830002,16708737:0,792993,237900 +g1,18782:7157682,16708737 +g1,18782:7157683,16708737 +(1,18782:7157683,16708737:0,452978,122846 +r1,18820:11736491,16708737:4578808,575824,122846 +k1,18782:7157683,16708737:-4578808 +) +(1,18782:7157683,16708737:4578808,452978,122846 +k1,18782:7157683,16708737:3277 +h1,18782:11733214,16708737:0,411205,112570 +) +k1,18782:12791626,16708737:1055135 +g1,18782:13119306,16708737 +) +g1,18782:13119306,16708737 +(1,18782:13119306,16708737:3483894,555093,237900 +g1,18782:13446986,16708737 +g1,18782:13446987,16708737 +g1,18782:16275520,16708737 +g1,18782:16603200,16708737 +) +g1,18782:16603200,16708737 +(1,18783:16603200,16708737:16038968,555093,237900 +g1,18782:16930880,16708737 +[1,18783:16930880,16708737:15383608,505283,237900 +(1,18783:16930880,16708737:15383608,505283,237900 +h1,18782:16912530,16708737:0,0,0 +g1,18782:17650465,16708737 +g1,18782:19620477,16708737 +g1,18782:21695346,16708737 +g1,18782:24622839,16708737 +g1,18782:27978937,16708737 +g1,18782:30382797,16708737 +r1,18820:32135230,16708737:0,237900,237900 +k1,18783:32314488,16708737:179258 +g1,18783:32314488,16708737 +) +] +g1,18783:32314488,16708737 +g1,18783:32642168,16708737 +) +g1,18783:32642168,16708737 +) +(1,18784:6830002,17501730:25812166,555093,237900 +g1,18783:6830002,17501730 +(1,18783:6830002,17501730:6289304,555093,237900 +r1,18820:6830002,17501730:0,792993,237900 +g1,18783:7157682,17501730 +g1,18783:7157683,17501730 +(1,18783:7157683,17501730:0,452978,122846 +r1,18820:12088203,17501730:4930520,575824,122846 +k1,18783:7157683,17501730:-4930520 +) +(1,18783:7157683,17501730:4930520,452978,122846 +k1,18783:7157683,17501730:3277 +h1,18783:12084926,17501730:0,411205,112570 +) +k1,18783:12791626,17501730:703423 +g1,18783:13119306,17501730 +) +g1,18783:13119306,17501730 +(1,18783:13119306,17501730:3483894,555093,237900 +g1,18783:13446986,17501730 +g1,18783:13446987,17501730 +g1,18783:16275520,17501730 +g1,18783:16603200,17501730 +) +g1,18783:16603200,17501730 +(1,18784:16603200,17501730:16038968,555093,237900 +g1,18783:16930880,17501730 +[1,18784:16930880,17501730:15383608,505283,237900 +(1,18784:16930880,17501730:15383608,505283,237900 +h1,18783:16912530,17501730:0,0,0 +g1,18783:17650465,17501730 +g1,18783:19620477,17501730 +g1,18783:21695346,17501730 +g1,18783:24622839,17501730 +g1,18783:27978937,17501730 +g1,18783:30382797,17501730 +r1,18820:32135230,17501730:0,237900,237900 +k1,18784:32314488,17501730:179258 +g1,18784:32314488,17501730 +) +] +g1,18784:32314488,17501730 +g1,18784:32642168,17501730 +) +g1,18784:32642168,17501730 +) +(1,18785:6830002,18294723:25812166,555093,237900 +g1,18784:6830002,18294723 +(1,18784:6830002,18294723:6289304,555093,237900 +r1,18820:6830002,18294723:0,792993,237900 +g1,18784:7157682,18294723 +g1,18784:7157683,18294723 +(1,18784:7157683,18294723:0,452978,122846 +r1,18820:10329643,18294723:3171960,575824,122846 +k1,18784:7157683,18294723:-3171960 +) +(1,18784:7157683,18294723:3171960,452978,122846 +k1,18784:7157683,18294723:3277 +h1,18784:10326366,18294723:0,411205,112570 +) +k1,18784:12791626,18294723:2461983 +g1,18784:13119306,18294723 +) +g1,18784:13119306,18294723 +(1,18784:13119306,18294723:3483894,555093,237900 +g1,18784:13446986,18294723 +g1,18784:13446987,18294723 +g1,18784:16275520,18294723 +g1,18784:16603200,18294723 +) +g1,18784:16603200,18294723 +(1,18785:16603200,18294723:16038968,555093,237900 +g1,18784:16930880,18294723 +[1,18785:16930880,18294723:15383608,505283,237900 +(1,18785:16930880,18294723:15383608,505283,237900 +h1,18784:16912530,18294723:0,0,0 +g1,18784:17650465,18294723 +g1,18784:18384468,18294723 +g1,18784:21311961,18294723 +g1,18784:24668059,18294723 +g1,18784:27071919,18294723 +r1,18820:28824352,18294723:0,237900,237900 +k1,18785:32314488,18294723:3490136 +g1,18785:32314488,18294723 +) +] +g1,18785:32314488,18294723 +g1,18785:32642168,18294723 +) +g1,18785:32642168,18294723 +) +(1,18786:6830002,19087716:25812166,555093,237900 +g1,18785:6830002,19087716 +(1,18785:6830002,19087716:6289304,555093,237900 +r1,18820:6830002,19087716:0,792993,237900 +g1,18785:7157682,19087716 +g1,18785:7157683,19087716 +(1,18785:7157683,19087716:0,414482,122846 +r1,18820:11384779,19087716:4227096,537328,122846 +k1,18785:7157683,19087716:-4227096 +) +(1,18785:7157683,19087716:4227096,414482,122846 +k1,18785:7157683,19087716:3277 +h1,18785:11381502,19087716:0,411205,112570 +) +k1,18785:12791626,19087716:1406847 +g1,18785:13119306,19087716 +) +g1,18785:13119306,19087716 +(1,18785:13119306,19087716:3483894,555093,237900 +g1,18785:13446986,19087716 +g1,18785:13446987,19087716 +g1,18785:16275520,19087716 +g1,18785:16603200,19087716 +) +g1,18785:16603200,19087716 +(1,18786:16603200,19087716:16038968,555093,237900 +g1,18785:16930880,19087716 +[1,18786:16930880,19087716:15383608,505283,237900 +(1,18786:16930880,19087716:15383608,505283,237900 +h1,18785:16912530,19087716:0,0,0 +k1,18785:17600800,19087716:149564 +k1,18785:18285139,19087716:149565 +k1,18785:20156334,19087716:149564 +k1,18785:22023598,19087716:149565 +k1,18785:24901426,19087716:149564 +k1,18785:28207860,19087716:149565 +k1,18785:30562055,19087716:149564 +r1,18820:32314488,19087716:0,237900,237900 +k1,18786:32314488,19087716:0 +k1,18786:32314488,19087716:0 +) +] +g1,18786:32314488,19087716 +g1,18786:32642168,19087716 +) +g1,18786:32642168,19087716 +) +(1,18787:6830002,19880709:25812166,555093,237900 +g1,18786:6830002,19880709 +(1,18786:6830002,19880709:6289304,555093,237900 +r1,18820:6830002,19880709:0,792993,237900 +g1,18786:7157682,19880709 +g1,18786:7157683,19880709 +(1,18786:7157683,19880709:0,414482,122846 +r1,18820:10329643,19880709:3171960,537328,122846 +k1,18786:7157683,19880709:-3171960 +) +(1,18786:7157683,19880709:3171960,414482,122846 +k1,18786:7157683,19880709:3277 +h1,18786:10326366,19880709:0,411205,112570 +) +k1,18786:12791626,19880709:2461983 +g1,18786:13119306,19880709 +) +g1,18786:13119306,19880709 +(1,18786:13119306,19880709:3483894,555093,237900 +g1,18786:13446986,19880709 +g1,18786:13446987,19880709 +g1,18786:16275520,19880709 +g1,18786:16603200,19880709 +) +g1,18786:16603200,19880709 +(1,18787:16603200,19880709:16038968,555093,237900 +g1,18786:16930880,19880709 +[1,18787:16930880,19880709:15383608,505283,237900 +(1,18787:16930880,19880709:15383608,505283,237900 +h1,18786:16912530,19880709:0,0,0 +g1,18786:17650465,19880709 +g1,18786:18384468,19880709 +g1,18786:21311961,19880709 +g1,18786:24668059,19880709 +g1,18786:27071919,19880709 +r1,18820:28824352,19880709:0,237900,237900 +k1,18787:32314488,19880709:3490136 +g1,18787:32314488,19880709 +) +] +g1,18787:32314488,19880709 +g1,18787:32642168,19880709 +) +g1,18787:32642168,19880709 +) +(1,18788:6830002,20673702:25812166,555093,237900 +g1,18787:6830002,20673702 +(1,18787:6830002,20673702:6289304,555093,237900 +r1,18820:6830002,20673702:0,792993,237900 +g1,18787:7157682,20673702 +g1,18787:7157683,20673702 +(1,18787:7157683,20673702:0,452978,122846 +r1,18820:10329643,20673702:3171960,575824,122846 +k1,18787:7157683,20673702:-3171960 +) +(1,18787:7157683,20673702:3171960,452978,122846 +k1,18787:7157683,20673702:3277 +h1,18787:10326366,20673702:0,411205,112570 +) +k1,18787:12791626,20673702:2461983 +g1,18787:13119306,20673702 +) +g1,18787:13119306,20673702 +(1,18787:13119306,20673702:3483894,555093,237900 +g1,18787:13446986,20673702 +g1,18787:13446987,20673702 +g1,18787:16275520,20673702 +g1,18787:16603200,20673702 +) +g1,18787:16603200,20673702 +(1,18788:16603200,20673702:16038968,555093,237900 +g1,18787:16930880,20673702 +[1,18788:16930880,20673702:15383608,505283,237900 +(1,18788:16930880,20673702:15383608,505283,237900 +h1,18787:16912530,20673702:0,0,0 +g1,18787:17650465,20673702 +g1,18787:18384468,20673702 +g1,18787:21311961,20673702 +g1,18787:24668059,20673702 +g1,18787:27071919,20673702 +r1,18820:28824352,20673702:0,237900,237900 +k1,18788:32314488,20673702:3490136 +g1,18788:32314488,20673702 +) +] +g1,18788:32314488,20673702 +g1,18788:32642168,20673702 +) +g1,18788:32642168,20673702 +) +(1,18789:6830002,21466695:25812166,555093,1102980 +g1,18788:6830002,21466695 +(1,18788:6830002,21466695:6289304,555093,1102980 +r1,18820:6830002,21466695:0,792993,237900 +g1,18788:7157682,21466695 +g1,18788:7157683,21466695 +(1,18788:7157683,21466695:0,414482,122846 +r1,18820:10681355,21466695:3523672,537328,122846 +k1,18788:7157683,21466695:-3523672 +) +(1,18788:7157683,21466695:3523672,414482,122846 +k1,18788:7157683,21466695:3277 +h1,18788:10678078,21466695:0,411205,112570 +) +k1,18788:12791626,21466695:2110271 +g1,18788:13119306,21466695 +) +g1,18788:13119306,21466695 +(1,18788:13119306,21466695:3483894,555093,1102980 +g1,18788:13446986,21466695 +g1,18788:13446987,21466695 +g1,18788:16275520,21466695 +g1,18788:16603200,21466695 +) +g1,18788:16603200,21466695 +(1,18789:16603200,21466695:16038968,555093,1102980 +g1,18788:16930880,21466695 +[1,18789:16930880,21466695:15383608,505283,1102980 +(1,18789:16930880,21466695:15383608,505283,126483 +h1,18788:16912530,21466695:0,0,0 +k1,18788:17654113,21466695:202877 +k1,18788:18391763,21466695:202876 +k1,18788:20142600,21466695:202877 +k1,18788:21028362,21466695:202877 +k1,18788:22948938,21466695:202877 +k1,18788:25880079,21466695:202877 +k1,18788:29239824,21466695:202876 +k1,18788:31647332,21466695:202877 +k1,18789:32314488,21466695:0 +) +(1,18789:16930880,22331775:15383608,505283,237900 +r1,18820:18122325,22331775:0,237900,237900 +k1,18789:32314488,22331775:14192163 +g1,18789:32314488,22331775 +) +] +g1,18789:32314488,21466695 +g1,18789:32642168,21466695 +) +g1,18789:32642168,21466695 +) +(1,18790:6830002,23124768:25812166,555093,1102980 +g1,18789:6830002,23124768 +(1,18789:6830002,23124768:6289304,555093,1102980 +r1,18820:6830002,23124768:0,792993,237900 +g1,18789:7157682,23124768 +g1,18789:7157683,23124768 +(1,18789:7157683,23124768:0,414482,122846 +r1,18820:10329643,23124768:3171960,537328,122846 +k1,18789:7157683,23124768:-3171960 +) +(1,18789:7157683,23124768:3171960,414482,122846 +k1,18789:7157683,23124768:3277 +h1,18789:10326366,23124768:0,411205,112570 +) +k1,18789:12791626,23124768:2461983 +g1,18789:13119306,23124768 +) +g1,18789:13119306,23124768 +(1,18789:13119306,23124768:3483894,555093,1102980 +g1,18789:13446986,23124768 +g1,18789:13446987,23124768 +g1,18789:16275520,23124768 +g1,18789:16603200,23124768 +) +g1,18789:16603200,23124768 +(1,18790:16603200,23124768:16038968,555093,1102980 +g1,18789:16930880,23124768 +[1,18790:16930880,23124768:15383608,513147,1102980 +(1,18790:16930880,23124768:15383608,513147,126483 +h1,18789:16912530,23124768:0,0,0 +k1,18789:17721123,23124768:269887 +k1,18789:18525785,23124768:269888 +k1,18789:20599878,23124768:269887 +k1,18789:21437963,23124768:269888 +k1,18789:22487073,23124768:269887 +k1,18789:25485224,23124768:269887 +k1,18789:28911981,23124768:269888 +k1,18789:30196365,23124768:269887 +k1,18789:32314488,23124768:0 +) +(1,18790:16930880,23989848:15383608,505283,237900 +r1,18820:18683313,23989848:0,237900,237900 +k1,18790:32314488,23989848:13631175 +g1,18790:32314488,23989848 +) +] +g1,18790:32314488,23124768 +g1,18790:32642168,23124768 +) +g1,18790:32642168,23124768 +) +(1,18791:6830002,24782841:25812166,555093,1102980 +g1,18790:6830002,24782841 +(1,18790:6830002,24782841:6289304,555093,1102980 +r1,18820:6830002,24782841:0,792993,237900 +g1,18790:7157682,24782841 +g1,18790:7157683,24782841 +(1,18790:7157683,24782841:0,452978,122846 +r1,18820:11033067,24782841:3875384,575824,122846 +k1,18790:7157683,24782841:-3875384 +) +(1,18790:7157683,24782841:3875384,452978,122846 +k1,18790:7157683,24782841:3277 +h1,18790:11029790,24782841:0,411205,112570 +) +k1,18790:12791626,24782841:1758559 +g1,18790:13119306,24782841 +) +g1,18790:13119306,24782841 +(1,18790:13119306,24782841:3483894,555093,1102980 +g1,18790:13446986,24782841 +g1,18790:13446987,24782841 +g1,18790:16275520,24782841 +g1,18790:16603200,24782841 +) +g1,18790:16603200,24782841 +(1,18791:16603200,24782841:16038968,555093,1102980 +g1,18790:16930880,24782841 +[1,18791:16930880,24782841:15383608,513147,1102980 +(1,18791:16930880,24782841:15383608,513147,126483 +h1,18790:16912530,24782841:0,0,0 +k1,18790:17619993,24782841:168757 +k1,18790:19385863,24782841:168758 +k1,18790:20746065,24782841:168757 +k1,18790:22790463,24782841:168758 +k1,18790:25687484,24782841:168757 +k1,18790:29013111,24782841:168758 +k1,18790:30196365,24782841:168757 +k1,18790:32314488,24782841:0 +) +(1,18791:16930880,25647921:15383608,505283,237900 +r1,18820:18683313,25647921:0,237900,237900 +k1,18791:32314488,25647921:13631175 +g1,18791:32314488,25647921 +) +] +g1,18791:32314488,24782841 +g1,18791:32642168,24782841 +) +g1,18791:32642168,24782841 +) +(1,18792:6830002,26440914:25812166,555093,1102980 +g1,18791:6830002,26440914 +(1,18791:6830002,26440914:6289304,555093,1102980 +r1,18820:6830002,26440914:0,792993,237900 +g1,18791:7157682,26440914 +g1,18791:7157683,26440914 +(1,18791:7157683,26440914:0,452978,122846 +r1,18820:10681355,26440914:3523672,575824,122846 +k1,18791:7157683,26440914:-3523672 +) +(1,18791:7157683,26440914:3523672,452978,122846 +k1,18791:7157683,26440914:3277 +h1,18791:10678078,26440914:0,411205,112570 +) +k1,18791:12791626,26440914:2110271 +g1,18791:13119306,26440914 +) +g1,18791:13119306,26440914 +(1,18791:13119306,26440914:3483894,555093,1102980 +g1,18791:13446986,26440914 +g1,18791:13446987,26440914 +g1,18791:16275520,26440914 +g1,18791:16603200,26440914 +) +g1,18791:16603200,26440914 +(1,18792:16603200,26440914:16038968,555093,1102980 +g1,18791:16930880,26440914 +[1,18792:16930880,26440914:15383608,505283,1102980 +(1,18792:16930880,26440914:15383608,505283,126483 +h1,18791:16912530,26440914:0,0,0 +k1,18791:17595162,26440914:317596 +k1,18791:18595644,26440914:317597 +k1,18791:19448014,26440914:317596 +k1,18791:21366655,26440914:317596 +k1,18791:22367137,26440914:317597 +k1,18791:24564306,26440914:317596 +k1,18791:26479014,26440914:317596 +k1,18791:27479496,26440914:317597 +k1,18791:29672732,26440914:317596 +k1,18791:32314488,26440914:0 +) +(1,18792:16930880,27305994:15383608,513147,237900 +g1,18791:20286978,27305994 +g1,18791:21500704,27305994 +g1,18791:23904564,27305994 +r1,18820:25656997,27305994:0,237900,237900 +k1,18792:32314488,27305994:6657491 +g1,18792:32314488,27305994 +) +] +g1,18792:32314488,26440914 +g1,18792:32642168,26440914 +) +g1,18792:32642168,26440914 +) +(1,18793:6830002,28098987:25812166,555093,1102980 +g1,18792:6830002,28098987 +(1,18792:6830002,28098987:6289304,555093,1102980 +r1,18820:6830002,28098987:0,792993,237900 +g1,18792:7157682,28098987 +g1,18792:7157683,28098987 +(1,18792:7157683,28098987:0,414482,122846 +r1,18820:10329643,28098987:3171960,537328,122846 +k1,18792:7157683,28098987:-3171960 +) +(1,18792:7157683,28098987:3171960,414482,122846 +k1,18792:7157683,28098987:3277 +h1,18792:10326366,28098987:0,411205,112570 +) +k1,18792:12791626,28098987:2461983 +g1,18792:13119306,28098987 +) +g1,18792:13119306,28098987 +(1,18792:13119306,28098987:3483894,555093,1102980 +g1,18792:13446986,28098987 +g1,18792:13446987,28098987 +g1,18792:16275520,28098987 +g1,18792:16603200,28098987 +) +g1,18792:16603200,28098987 +(1,18793:16603200,28098987:16038968,555093,1102980 +g1,18792:16930880,28098987 +[1,18793:16930880,28098987:15383608,513147,1102980 +(1,18793:16930880,28098987:15383608,513147,126483 +h1,18792:16912530,28098987:0,0,0 +k1,18792:18901933,28098987:214688 +k1,18792:20996193,28098987:214687 +k1,18792:22981664,28098987:214688 +k1,18792:25071991,28098987:214687 +k1,18792:28014943,28098987:214688 +k1,18792:31386499,28098987:214687 +k1,18792:32314488,28098987:0 +) +(1,18793:16930880,28964067:15383608,505283,237900 +g1,18792:19334740,28964067 +r1,18820:21087173,28964067:0,237900,237900 +k1,18793:32314488,28964067:11227315 +g1,18793:32314488,28964067 +) +] +g1,18793:32314488,28098987 +g1,18793:32642168,28098987 +) +g1,18793:32642168,28098987 +) +(1,18794:6830002,29757060:25812166,555093,1102980 +g1,18793:6830002,29757060 +(1,18793:6830002,29757060:6289304,555093,1102980 +r1,18820:6830002,29757060:0,792993,237900 +g1,18793:7157682,29757060 +g1,18793:7157683,29757060 +(1,18793:7157683,29757060:0,452978,122846 +r1,18820:10329643,29757060:3171960,575824,122846 +k1,18793:7157683,29757060:-3171960 +) +(1,18793:7157683,29757060:3171960,452978,122846 +k1,18793:7157683,29757060:3277 +h1,18793:10326366,29757060:0,411205,112570 +) +k1,18793:12791626,29757060:2461983 +g1,18793:13119306,29757060 +) +g1,18793:13119306,29757060 +(1,18793:13119306,29757060:3483894,555093,1102980 +g1,18793:13446986,29757060 +g1,18793:13446987,29757060 +g1,18793:16275520,29757060 +g1,18793:16603200,29757060 +) +g1,18793:16603200,29757060 +(1,18794:16603200,29757060:16038968,555093,1102980 +g1,18793:16930880,29757060 +[1,18794:16930880,29757060:15383608,513147,1102980 +(1,18794:16930880,29757060:15383608,513147,134348 +h1,18793:16912530,29757060:0,0,0 +k1,18793:17614002,29757060:162766 +k1,18793:18311541,29757060:162765 +k1,18793:20462669,29757060:162766 +k1,18793:22808438,29757060:162765 +k1,18793:25699468,29757060:162766 +k1,18793:29019102,29757060:162765 +k1,18793:30196365,29757060:162766 +k1,18793:32314488,29757060:0 +) +(1,18794:16930880,30622140:15383608,505283,237900 +r1,18820:18683313,30622140:0,237900,237900 +k1,18794:32314488,30622140:13631175 +g1,18794:32314488,30622140 +) +] +g1,18794:32314488,29757060 +g1,18794:32642168,29757060 +) +g1,18794:32642168,29757060 +) +(1,18795:6830002,31415133:25812166,555093,237900 +g1,18794:6830002,31415133 +(1,18794:6830002,31415133:6289304,555093,237900 +r1,18820:6830002,31415133:0,792993,237900 +g1,18794:7157682,31415133 +g1,18794:7157683,31415133 +(1,18794:7157683,31415133:0,452978,122846 +r1,18820:9977932,31415133:2820249,575824,122846 +k1,18794:7157683,31415133:-2820249 +) +(1,18794:7157683,31415133:2820249,452978,122846 +k1,18794:7157683,31415133:3277 +h1,18794:9974655,31415133:0,411205,112570 +) +k1,18794:12791626,31415133:2813694 +g1,18794:13119306,31415133 +) +g1,18794:13119306,31415133 +(1,18794:13119306,31415133:3483894,555093,237900 +g1,18794:13446986,31415133 +g1,18794:13446987,31415133 +g1,18794:16275520,31415133 +g1,18794:16603200,31415133 +) +g1,18794:16603200,31415133 +(1,18795:16603200,31415133:16038968,555093,237900 +g1,18794:16930880,31415133 +[1,18795:16930880,31415133:15383608,513147,237900 +(1,18795:16930880,31415133:15383608,513147,237900 +h1,18794:16912530,31415133:0,0,0 +g1,18794:17650465,31415133 +g1,18794:18384468,31415133 +g1,18794:20572059,31415133 +g1,18794:23499552,31415133 +g1,18794:26855650,31415133 +g1,18794:28069376,31415133 +g1,18794:30473236,31415133 +r1,18820:32225669,31415133:0,237900,237900 +k1,18795:32314488,31415133:88819 +g1,18795:32314488,31415133 +) +] +g1,18795:32314488,31415133 +g1,18795:32642168,31415133 +) +g1,18795:32642168,31415133 +) +(1,18796:6830002,32208126:25812166,555093,237900 +g1,18795:6830002,32208126 +(1,18795:6830002,32208126:6289304,555093,237900 +r1,18820:6830002,32208126:0,792993,237900 +g1,18795:7157682,32208126 +g1,18795:7157683,32208126 +(1,18795:7157683,32208126:0,414482,122846 +r1,18820:9977932,32208126:2820249,537328,122846 +k1,18795:7157683,32208126:-2820249 +) +(1,18795:7157683,32208126:2820249,414482,122846 +k1,18795:7157683,32208126:3277 +h1,18795:9974655,32208126:0,411205,112570 +) +k1,18795:12791626,32208126:2813694 +g1,18795:13119306,32208126 +) +g1,18795:13119306,32208126 +(1,18795:13119306,32208126:3483894,555093,237900 +g1,18795:13446986,32208126 +g1,18795:13446987,32208126 +g1,18795:16275520,32208126 +g1,18795:16603200,32208126 +) +g1,18795:16603200,32208126 +(1,18796:16603200,32208126:16038968,555093,237900 +g1,18795:16930880,32208126 +[1,18796:16930880,32208126:15383608,505283,237900 +(1,18796:16930880,32208126:15383608,505283,237900 +h1,18795:16912530,32208126:0,0,0 +g1,18795:17476795,32208126 +g1,18795:18358909,32208126 +g1,18795:19092912,32208126 +g1,18795:22449010,32208126 +g1,18795:24852870,32208126 +r1,18820:26605303,32208126:0,237900,237900 +k1,18796:32314488,32208126:5709185 +g1,18796:32314488,32208126 +) +] +g1,18796:32314488,32208126 +g1,18796:32642168,32208126 +) +g1,18796:32642168,32208126 +) +(1,18797:6830002,33001119:25812166,555093,237900 +g1,18796:6830002,33001119 +(1,18796:6830002,33001119:6289304,555093,237900 +r1,18820:6830002,33001119:0,792993,237900 +g1,18796:7157682,33001119 +g1,18796:7157683,33001119 +(1,18796:7157683,33001119:0,452978,122846 +r1,18820:10681355,33001119:3523672,575824,122846 +k1,18796:7157683,33001119:-3523672 +) +(1,18796:7157683,33001119:3523672,452978,122846 +k1,18796:7157683,33001119:3277 +h1,18796:10678078,33001119:0,411205,112570 +) +k1,18796:12791626,33001119:2110271 +g1,18796:13119306,33001119 +) +g1,18796:13119306,33001119 +(1,18796:13119306,33001119:3483894,555093,237900 +g1,18796:13446986,33001119 +g1,18796:13446987,33001119 +g1,18796:16275520,33001119 +g1,18796:16603200,33001119 +) +g1,18796:16603200,33001119 +(1,18797:16603200,33001119:16038968,555093,237900 +g1,18796:16930880,33001119 +[1,18797:16930880,33001119:15383608,505283,237900 +(1,18797:16930880,33001119:15383608,505283,237900 +h1,18796:16930880,33001119:0,0,0 +g1,18796:20532083,33001119 +g1,18796:23459576,33001119 +g1,18796:26815674,33001119 +g1,18796:29219534,33001119 +r1,18820:30971967,33001119:0,237900,237900 +k1,18797:32314488,33001119:1342521 +g1,18797:32314488,33001119 +) +] +g1,18797:32314488,33001119 +g1,18797:32642168,33001119 +) +g1,18797:32642168,33001119 +) +(1,18798:6830002,33794112:25812166,555093,237900 +g1,18797:6830002,33794112 +(1,18797:6830002,33794112:6289304,555093,237900 +r1,18820:6830002,33794112:0,792993,237900 +g1,18797:7157682,33794112 +g1,18797:7157683,33794112 +(1,18797:7157683,33794112:0,452978,122846 +r1,18820:10681355,33794112:3523672,575824,122846 +k1,18797:7157683,33794112:-3523672 +) +(1,18797:7157683,33794112:3523672,452978,122846 +k1,18797:7157683,33794112:3277 +h1,18797:10678078,33794112:0,411205,112570 +) +k1,18797:12791626,33794112:2110271 +g1,18797:13119306,33794112 +) +g1,18797:13119306,33794112 +(1,18797:13119306,33794112:3483894,555093,237900 +g1,18797:13446986,33794112 +g1,18797:13446987,33794112 +g1,18797:16275520,33794112 +g1,18797:16603200,33794112 +) +g1,18797:16603200,33794112 +(1,18798:16603200,33794112:16038968,555093,237900 +g1,18797:16930880,33794112 +[1,18798:16930880,33794112:15383608,505283,237900 +(1,18798:16930880,33794112:15383608,505283,237900 +h1,18797:16912530,33794112:0,0,0 +g1,18797:20517665,33794112 +g1,18797:23445158,33794112 +g1,18797:26801256,33794112 +g1,18797:29205116,33794112 +r1,18820:30957549,33794112:0,237900,237900 +k1,18798:32314488,33794112:1356939 +g1,18798:32314488,33794112 +) +] +g1,18798:32314488,33794112 +g1,18798:32642168,33794112 +) +g1,18798:32642168,33794112 +) +(1,18799:6830002,34587105:25812166,555093,1102980 +g1,18798:6830002,34587105 +(1,18798:6830002,34587105:6289304,555093,1102980 +r1,18820:6830002,34587105:0,792993,237900 +g1,18798:7157682,34587105 +g1,18798:7157683,34587105 +(1,18798:7157683,34587105:0,452978,122846 +r1,18820:11033067,34587105:3875384,575824,122846 +k1,18798:7157683,34587105:-3875384 +) +(1,18798:7157683,34587105:3875384,452978,122846 +k1,18798:7157683,34587105:3277 +h1,18798:11029790,34587105:0,411205,112570 +) +k1,18798:12791626,34587105:1758559 +g1,18798:13119306,34587105 +) +g1,18798:13119306,34587105 +(1,18798:13119306,34587105:3483894,555093,1102980 +g1,18798:13446986,34587105 +g1,18798:13446987,34587105 +g1,18798:16275520,34587105 +g1,18798:16603200,34587105 +) +g1,18798:16603200,34587105 +(1,18799:16603200,34587105:16038968,555093,1102980 +g1,18798:16930880,34587105 +[1,18799:16930880,34587105:15383608,505283,1102980 +(1,18799:16930880,34587105:15383608,505283,126483 +h1,18798:16930880,34587105:0,0,0 +k1,18798:20314573,34587105:342822 +k1,18798:22529103,34587105:342822 +k1,18798:25600188,34587105:342821 +k1,18798:29099879,34587105:342822 +k1,18798:31647332,34587105:342822 +k1,18799:32314488,34587105:0 +) +(1,18799:16930880,35452185:15383608,505283,237900 +r1,18820:18122325,35452185:0,237900,237900 +k1,18799:32314488,35452185:14192163 +g1,18799:32314488,35452185 +) +] +g1,18799:32314488,34587105 +g1,18799:32642168,34587105 +) +g1,18799:32642168,34587105 +) +(1,18800:6830002,36245178:25812166,555093,237900 +g1,18799:6830002,36245178 +(1,18799:6830002,36245178:6289304,555093,237900 +r1,18820:6830002,36245178:0,792993,237900 +g1,18799:7157682,36245178 +g1,18799:7157683,36245178 +(1,18799:7157683,36245178:0,414482,122846 +r1,18820:10329643,36245178:3171960,537328,122846 +k1,18799:7157683,36245178:-3171960 +) +(1,18799:7157683,36245178:3171960,414482,122846 +k1,18799:7157683,36245178:3277 +h1,18799:10326366,36245178:0,411205,112570 +) +k1,18799:12791626,36245178:2461983 +g1,18799:13119306,36245178 +) +g1,18799:13119306,36245178 +(1,18799:13119306,36245178:3483894,555093,237900 +g1,18799:13446986,36245178 +g1,18799:13446987,36245178 +g1,18799:16275520,36245178 +g1,18799:16603200,36245178 +) +g1,18799:16603200,36245178 +(1,18800:16603200,36245178:16038968,555093,237900 +g1,18799:16930880,36245178 +[1,18800:16930880,36245178:15383608,513147,237900 +(1,18800:16930880,36245178:15383608,513147,237900 +h1,18799:16912530,36245178:0,0,0 +g1,18799:17650465,36245178 +g1,18799:18384468,36245178 +g1,18799:20271249,36245178 +g1,18799:21945693,36245178 +g1,18799:24326616,36245178 +g1,18799:26396898,36245178 +g1,18799:28038574,36245178 +g1,18799:30442434,36245178 +r1,18820:32194867,36245178:0,237900,237900 +k1,18800:32314488,36245178:119621 +g1,18800:32314488,36245178 +) +] +g1,18800:32314488,36245178 +g1,18800:32642168,36245178 +) +g1,18800:32642168,36245178 +) +(1,18801:6830002,37038171:25812166,555093,1102980 +g1,18800:6830002,37038171 +(1,18800:6830002,37038171:6289304,555093,1102980 +r1,18820:6830002,37038171:0,792993,237900 +g1,18800:7157682,37038171 +g1,18800:7157683,37038171 +(1,18800:7157683,37038171:0,452978,122846 +r1,18820:10681355,37038171:3523672,575824,122846 +k1,18800:7157683,37038171:-3523672 +) +(1,18800:7157683,37038171:3523672,452978,122846 +k1,18800:7157683,37038171:3277 +h1,18800:10678078,37038171:0,411205,112570 +) +k1,18800:12791626,37038171:2110271 +g1,18800:13119306,37038171 +) +g1,18800:13119306,37038171 +(1,18800:13119306,37038171:3483894,555093,1102980 +g1,18800:13446986,37038171 +g1,18800:13446987,37038171 +g1,18800:16275520,37038171 +g1,18800:16603200,37038171 +) +g1,18800:16603200,37038171 +(1,18801:16603200,37038171:16038968,555093,1102980 +g1,18800:16930880,37038171 +[1,18801:16930880,37038171:15383608,513147,1102980 +(1,18801:16930880,37038171:15383608,513147,134348 +h1,18800:16912530,37038171:0,0,0 +k1,18800:17716700,37038171:265464 +k1,18800:18516938,37038171:265464 +k1,18800:20469953,37038171:265463 +k1,18800:22210632,37038171:265464 +k1,18800:24657790,37038171:265464 +k1,18800:27208494,37038171:265464 +k1,18800:28916404,37038171:265463 +k1,18800:30196365,37038171:265464 +k1,18800:32314488,37038171:0 +) +(1,18801:16930880,37903251:15383608,505283,237900 +r1,18820:18683313,37903251:0,237900,237900 +k1,18801:32314488,37903251:13631175 +g1,18801:32314488,37903251 +) +] +g1,18801:32314488,37038171 +g1,18801:32642168,37038171 +) +g1,18801:32642168,37038171 +) +(1,18802:6830002,38696244:25812166,555093,237900 +g1,18801:6830002,38696244 +(1,18801:6830002,38696244:6289304,555093,237900 +r1,18820:6830002,38696244:0,792993,237900 +g1,18801:7157682,38696244 +g1,18801:7157683,38696244 +(1,18801:7157683,38696244:0,452978,122846 +r1,18820:12439914,38696244:5282231,575824,122846 +k1,18801:7157683,38696244:-5282231 +) +(1,18801:7157683,38696244:5282231,452978,122846 +k1,18801:7157683,38696244:3277 +h1,18801:12436637,38696244:0,411205,112570 +) +k1,18801:12791626,38696244:351712 +g1,18801:13119306,38696244 +) +g1,18801:13119306,38696244 +(1,18801:13119306,38696244:3483894,555093,237900 +g1,18801:13446986,38696244 +g1,18801:13446987,38696244 +k1,18801:16275520,38696244:64225 +g1,18801:16603200,38696244 +) +g1,18801:16603200,38696244 +(1,18802:16603200,38696244:16038968,555093,237900 +g1,18801:16930880,38696244 +[1,18802:16930880,38696244:15383608,513147,237900 +(1,18802:16930880,38696244:15383608,513147,237900 +h1,18801:16912530,38696244:0,0,0 +g1,18801:17650465,38696244 +g1,18801:18384468,38696244 +g1,18801:20271249,38696244 +g1,18801:21945693,38696244 +g1,18801:24326616,38696244 +g1,18801:26396898,38696244 +g1,18801:28038574,38696244 +g1,18801:30442434,38696244 +r1,18820:32194867,38696244:0,237900,237900 +k1,18802:32314488,38696244:119621 +g1,18802:32314488,38696244 +) +] +g1,18802:32314488,38696244 +g1,18802:32642168,38696244 +) +g1,18802:32642168,38696244 +) +(1,18803:6830002,39489237:25812166,555093,237900 +g1,18802:6830002,39489237 +(1,18802:6830002,39489237:6289304,555093,237900 +r1,18820:6830002,39489237:0,792993,237900 +g1,18802:7157682,39489237 +g1,18802:7157683,39489237 +(1,18802:7157683,39489237:0,452978,122846 +r1,18820:12791626,39489237:5633943,575824,122846 +k1,18802:7157683,39489237:-5633943 +) +(1,18802:7157683,39489237:5633943,452978,122846 +k1,18802:7157683,39489237:3277 +h1,18802:12788349,39489237:0,411205,112570 +) +g1,18802:12791626,39489237 +g1,18802:13119306,39489237 +) +g1,18802:13119306,39489237 +(1,18802:13119306,39489237:3483894,555093,237900 +g1,18802:13446986,39489237 +g1,18802:13446987,39489237 +k1,18802:16275520,39489237:64225 +g1,18802:16603200,39489237 +) +g1,18802:16603200,39489237 +(1,18803:16603200,39489237:16038968,555093,237900 +g1,18802:16930880,39489237 +[1,18803:16930880,39489237:15383608,513147,237900 +(1,18803:16930880,39489237:15383608,513147,237900 +h1,18802:16912530,39489237:0,0,0 +g1,18802:17650465,39489237 +g1,18802:18384468,39489237 +g1,18802:20271249,39489237 +g1,18802:21945693,39489237 +g1,18802:24326616,39489237 +g1,18802:25968292,39489237 +g1,18802:27182018,39489237 +g1,18802:29585878,39489237 +r1,18820:31338311,39489237:0,237900,237900 +k1,18803:32314488,39489237:976177 +g1,18803:32314488,39489237 +) +] +g1,18803:32314488,39489237 +g1,18803:32642168,39489237 +) +g1,18803:32642168,39489237 +) +(1,18804:6830002,40282230:25812166,555093,237900 +g1,18803:6830002,40282230 +(1,18803:6830002,40282230:6289304,555093,237900 +r1,18820:6830002,40282230:0,792993,237900 +g1,18803:7157682,40282230 +g1,18803:7157683,40282230 +(1,18803:7157683,40282230:0,459977,122846 +r1,18820:9626220,40282230:2468537,582823,122846 +k1,18803:7157683,40282230:-2468537 +) +(1,18803:7157683,40282230:2468537,459977,122846 +k1,18803:7157683,40282230:3277 +h1,18803:9622943,40282230:0,411205,112570 +) +k1,18803:12791626,40282230:3165406 +g1,18803:13119306,40282230 +) +g1,18803:13119306,40282230 +(1,18803:13119306,40282230:3483894,555093,237900 +g1,18803:13446986,40282230 +g1,18803:13446987,40282230 +g1,18803:16275520,40282230 +g1,18803:16603200,40282230 +) +g1,18803:16603200,40282230 +(1,18804:16603200,40282230:16038968,555093,237900 +g1,18803:16930880,40282230 +[1,18804:16930880,40282230:15383608,513147,237900 +(1,18804:16930880,40282230:15383608,513147,237900 +h1,18803:16930880,40282230:0,0,0 +g1,18803:18144606,40282230 +r1,18820:20175567,40282230:0,237900,237900 +k1,18804:32314488,40282230:12138921 +g1,18804:32314488,40282230 +) +] +g1,18804:32314488,40282230 +g1,18804:32642168,40282230 +) +g1,18804:32642168,40282230 +) +(1,18805:6830002,41075223:25812166,555093,237900 +g1,18804:6830002,41075223 +(1,18804:6830002,41075223:6289304,555093,237900 +r1,18820:6830002,41075223:0,792993,237900 +g1,18804:7157682,41075223 +g1,18804:7157683,41075223 +(1,18804:7157683,41075223:0,452978,122846 +r1,18820:10681355,41075223:3523672,575824,122846 +k1,18804:7157683,41075223:-3523672 +) +(1,18804:7157683,41075223:3523672,452978,122846 +k1,18804:7157683,41075223:3277 +h1,18804:10678078,41075223:0,411205,112570 +) +k1,18804:12791626,41075223:2110271 +g1,18804:13119306,41075223 +) +g1,18804:13119306,41075223 +(1,18804:13119306,41075223:3483894,555093,237900 +g1,18804:13446986,41075223 +g1,18804:13446987,41075223 +k1,18804:16275520,41075223:838861 +g1,18804:16603200,41075223 +) +g1,18804:16603200,41075223 +(1,18805:16603200,41075223:16038968,555093,237900 +g1,18804:16930880,41075223 +[1,18805:16930880,41075223:15383608,505283,237900 +(1,18805:16930880,41075223:15383608,505283,237900 +h1,18804:16912530,41075223:0,0,0 +g1,18804:17650465,41075223 +g1,18804:18384468,41075223 +g1,18804:20271249,41075223 +g1,18804:21912925,41075223 +g1,18804:24316785,41075223 +r1,18820:26014167,41075223:0,237900,237900 +k1,18805:32314488,41075223:6300321 +g1,18805:32314488,41075223 +) +] +g1,18805:32314488,41075223 +g1,18805:32642168,41075223 +) +g1,18805:32642168,41075223 +) +(1,18806:6830002,41868216:25812166,555093,237900 +g1,18805:6830002,41868216 +(1,18805:6830002,41868216:6289304,555093,237900 +r1,18820:6830002,41868216:0,792993,237900 +g1,18805:7157682,41868216 +g1,18805:7157683,41868216 +(1,18805:7157683,41868216:0,452978,122846 +r1,18820:10329643,41868216:3171960,575824,122846 +k1,18805:7157683,41868216:-3171960 +) +(1,18805:7157683,41868216:3171960,452978,122846 +k1,18805:7157683,41868216:3277 +h1,18805:10326366,41868216:0,411205,112570 +) +k1,18805:12791626,41868216:2461983 +g1,18805:13119306,41868216 +) +g1,18805:13119306,41868216 +(1,18805:13119306,41868216:3483894,555093,237900 +g1,18805:13446986,41868216 +g1,18805:13446987,41868216 +k1,18805:16275520,41868216:838861 +g1,18805:16603200,41868216 +) +g1,18805:16603200,41868216 +(1,18806:16603200,41868216:16038968,555093,237900 +g1,18805:16930880,41868216 +[1,18806:16930880,41868216:15383608,505283,237900 +(1,18806:16930880,41868216:15383608,505283,237900 +h1,18805:16912530,41868216:0,0,0 +g1,18805:17650465,41868216 +g1,18805:18384468,41868216 +g1,18805:20271249,41868216 +g1,18805:23410423,41868216 +g1,18805:26744239,41868216 +r1,18820:28441621,41868216:0,237900,237900 +k1,18806:32314488,41868216:3872867 +g1,18806:32314488,41868216 +) +] +g1,18806:32314488,41868216 +g1,18806:32642168,41868216 +) +g1,18806:32642168,41868216 +) +(1,18807:6830002,42661209:25812166,555093,237900 +g1,18806:6830002,42661209 +(1,18806:6830002,42661209:6289304,555093,237900 +r1,18820:6830002,42661209:0,792993,237900 +g1,18806:7157682,42661209 +g1,18806:7157683,42661209 +(1,18806:7157683,42661209:0,452978,122846 +r1,18820:10329643,42661209:3171960,575824,122846 +k1,18806:7157683,42661209:-3171960 +) +(1,18806:7157683,42661209:3171960,452978,122846 +k1,18806:7157683,42661209:3277 +h1,18806:10326366,42661209:0,411205,112570 +) +k1,18806:12791626,42661209:2461983 +g1,18806:13119306,42661209 +) +g1,18806:13119306,42661209 +(1,18806:13119306,42661209:3483894,555093,237900 +g1,18806:13446986,42661209 +g1,18806:13446987,42661209 +k1,18806:16275520,42661209:838861 +g1,18806:16603200,42661209 ) -g1,18808:16603200,42661209 -(1,18809:16603200,42661209:16038968,555093,237900 -g1,18808:16930880,42661209 -[1,18809:16930880,42661209:15383608,505283,237900 -(1,18809:16930880,42661209:15383608,505283,237900 -h1,18808:16912530,42661209:0,0,0 -g1,18808:17650465,42661209 -g1,18808:18384468,42661209 -g1,18808:21523642,42661209 -g1,18808:24857458,42661209 -r1,18822:26371340,42661209:0,237900,237900 -k1,18809:32314488,42661209:5943148 -g1,18809:32314488,42661209 +g1,18806:16603200,42661209 +(1,18807:16603200,42661209:16038968,555093,237900 +g1,18806:16930880,42661209 +[1,18807:16930880,42661209:15383608,505283,237900 +(1,18807:16930880,42661209:15383608,505283,237900 +h1,18806:16912530,42661209:0,0,0 +g1,18806:17650465,42661209 +g1,18806:18384468,42661209 +g1,18806:21523642,42661209 +g1,18806:24857458,42661209 +r1,18820:26371340,42661209:0,237900,237900 +k1,18807:32314488,42661209:5943148 +g1,18807:32314488,42661209 ) ] -g1,18809:32314488,42661209 -g1,18809:32642168,42661209 +g1,18807:32314488,42661209 +g1,18807:32642168,42661209 ) -g1,18809:32642168,42661209 +g1,18807:32642168,42661209 ) -(1,18810:6830002,43454202:25812166,555093,237900 -g1,18809:6830002,43454202 -(1,18809:6830002,43454202:6289304,555093,237900 -r1,18822:6830002,43454202:0,792993,237900 -g1,18809:7157682,43454202 -g1,18809:7157683,43454202 -(1,18809:7157683,43454202:0,452978,122846 -r1,18822:10681355,43454202:3523672,575824,122846 -k1,18809:7157683,43454202:-3523672 +(1,18808:6830002,43454202:25812166,555093,237900 +g1,18807:6830002,43454202 +(1,18807:6830002,43454202:6289304,555093,237900 +r1,18820:6830002,43454202:0,792993,237900 +g1,18807:7157682,43454202 +g1,18807:7157683,43454202 +(1,18807:7157683,43454202:0,452978,122846 +r1,18820:10681355,43454202:3523672,575824,122846 +k1,18807:7157683,43454202:-3523672 ) -(1,18809:7157683,43454202:3523672,452978,122846 -k1,18809:7157683,43454202:3277 -h1,18809:10678078,43454202:0,411205,112570 +(1,18807:7157683,43454202:3523672,452978,122846 +k1,18807:7157683,43454202:3277 +h1,18807:10678078,43454202:0,411205,112570 ) -k1,18809:12791626,43454202:2110271 -g1,18809:13119306,43454202 +k1,18807:12791626,43454202:2110271 +g1,18807:13119306,43454202 ) -g1,18809:13119306,43454202 -(1,18809:13119306,43454202:3483894,555093,237900 -g1,18809:13446986,43454202 -g1,18809:13446987,43454202 -g1,18809:16275520,43454202 -g1,18809:16603200,43454202 +g1,18807:13119306,43454202 +(1,18807:13119306,43454202:3483894,555093,237900 +g1,18807:13446986,43454202 +g1,18807:13446987,43454202 +g1,18807:16275520,43454202 +g1,18807:16603200,43454202 ) -g1,18809:16603200,43454202 -(1,18810:16603200,43454202:16038968,555093,237900 -g1,18809:16930880,43454202 -[1,18810:16930880,43454202:15383608,211026,237900 -(1,18810:16930880,43454202:15383608,211026,237900 -h1,18809:16832576,43454202:0,0,0 -r1,18822:17487936,43454202:0,237900,237900 -k1,18810:32314488,43454202:14826552 -g1,18810:32314488,43454202 +g1,18807:16603200,43454202 +(1,18808:16603200,43454202:16038968,555093,237900 +g1,18807:16930880,43454202 +[1,18808:16930880,43454202:15383608,211026,237900 +(1,18808:16930880,43454202:15383608,211026,237900 +h1,18807:16832576,43454202:0,0,0 +r1,18820:17487936,43454202:0,237900,237900 +k1,18808:32314488,43454202:14826552 +g1,18808:32314488,43454202 ) ] -g1,18810:32314488,43454202 -g1,18810:32642168,43454202 +g1,18808:32314488,43454202 +g1,18808:32642168,43454202 ) -g1,18810:32642168,43454202 +g1,18808:32642168,43454202 ) ] -$1,18811:32642168,27909515 +$1,18809:32642168,27909515 ) -g1,18811:32642168,27909515 +g1,18809:32642168,27909515 ) -(1,18811:6630773,44054122:26011395,65536,0 -g1,18811:6630773,44054122 -(1,18811:6630773,44054122:26011395,65536,0 -r1,18822:32642168,44054122:26011395,65536,0 +(1,18809:6630773,44054122:26011395,65536,0 +g1,18809:6630773,44054122 +(1,18809:6630773,44054122:26011395,65536,0 +r1,18820:32642168,44054122:26011395,65536,0 ) -g1,18811:32642168,44054122 +g1,18809:32642168,44054122 ) ] -g1,18811:32642168,44054122 -g1,18811:32642168,44054122 +g1,18809:32642168,44054122 +g1,18809:32642168,44054122 ) ] ] ] -(1,18822:32583029,45706769:0,0,0 -g1,18822:32583029,45706769 +(1,18820:32583029,45706769:0,0,0 +g1,18820:32583029,45706769 ) ) ] -(1,18822:6630773,47279633:25952256,0,0 -h1,18822:6630773,47279633:25952256,0,0 +(1,18820:6630773,47279633:25952256,0,0 +h1,18820:6630773,47279633:25952256,0,0 ) ] -(1,18822:4262630,4025873:0,0,0 -[1,18822:-473656,4025873:0,0,0 -(1,18822:-473656,-710413:0,0,0 -(1,18822:-473656,-710413:0,0,0 -g1,18822:-473656,-710413 +(1,18820:4262630,4025873:0,0,0 +[1,18820:-473656,4025873:0,0,0 +(1,18820:-473656,-710413:0,0,0 +(1,18820:-473656,-710413:0,0,0 +g1,18820:-473656,-710413 ) -g1,18822:-473656,-710413 +g1,18820:-473656,-710413 ) ] ) ] !46225 -}310 -Input:3212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}311 Input:3216:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3217:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3218:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -328466,747 +328670,747 @@ Input:3222:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3223:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3224:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3225:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{311 -[1,18873:4262630,47279633:28320399,43253760,0 -(1,18873:4262630,4025873:0,0,0 -[1,18873:-473656,4025873:0,0,0 -(1,18873:-473656,-710413:0,0,0 -(1,18873:-473656,-644877:0,0,0 -k1,18873:-473656,-644877:-65536 +{312 +[1,18871:4262630,47279633:28320399,43253760,0 +(1,18871:4262630,4025873:0,0,0 +[1,18871:-473656,4025873:0,0,0 +(1,18871:-473656,-710413:0,0,0 +(1,18871:-473656,-644877:0,0,0 +k1,18871:-473656,-644877:-65536 ) -(1,18873:-473656,4736287:0,0,0 -k1,18873:-473656,4736287:5209943 +(1,18871:-473656,4736287:0,0,0 +k1,18871:-473656,4736287:5209943 ) -g1,18873:-473656,-710413 +g1,18871:-473656,-710413 ) ] ) -[1,18873:6630773,47279633:25952256,43253760,0 -[1,18873:6630773,4812305:25952256,786432,0 -(1,18873:6630773,4812305:25952256,513147,126483 -(1,18873:6630773,4812305:25952256,513147,126483 -g1,18873:3078558,4812305 -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,2439708:0,1703936,0 -k1,18873:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18873:2537886,2439708:1179648,16384,0 +[1,18871:6630773,47279633:25952256,43253760,0 +[1,18871:6630773,4812305:25952256,786432,0 +(1,18871:6630773,4812305:25952256,513147,126483 +(1,18871:6630773,4812305:25952256,513147,126483 +g1,18871:3078558,4812305 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,2439708:0,1703936,0 +k1,18871:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18871:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18873:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18871:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,2439708:0,1703936,0 -g1,18873:29030814,2439708 -g1,18873:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18873:36151628,1915420:16384,1179648,0 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,2439708:0,1703936,0 +g1,18871:29030814,2439708 +g1,18871:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18871:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18873:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18871:37855564,2439708:1179648,16384,0 ) ) -k1,18873:3078556,2439708:-34777008 +k1,18871:3078556,2439708:-34777008 ) ] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,49800853:0,16384,2228224 -k1,18873:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18873:2537886,49800853:1179648,16384,0 +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,49800853:0,16384,2228224 +k1,18871:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18871:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18873:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18871:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18873:3078558,4812305:0,0,0 -(1,18873:3078558,49800853:0,16384,2228224 -g1,18873:29030814,49800853 -g1,18873:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18873:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] +[1,18871:3078558,4812305:0,0,0 +(1,18871:3078558,49800853:0,16384,2228224 +g1,18871:29030814,49800853 +g1,18871:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18871:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18873:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18871:37855564,49800853:1179648,16384,0 ) ) -k1,18873:3078556,49800853:-34777008 +k1,18871:3078556,49800853:-34777008 ) ] -g1,18873:6630773,4812305 -k1,18873:21386205,4812305:13560055 -g1,18873:21999622,4812305 -g1,18873:25611966,4812305 -g1,18873:28956923,4812305 -g1,18873:29772190,4812305 -) -) -] -[1,18873:6630773,45706769:25952256,40108032,0 -(1,18873:6630773,45706769:25952256,40108032,0 -(1,18873:6630773,45706769:0,0,0 -g1,18873:6630773,45706769 +g1,18871:6630773,4812305 +k1,18871:21386205,4812305:13560055 +g1,18871:21999622,4812305 +g1,18871:25611966,4812305 +g1,18871:28956923,4812305 +g1,18871:29772190,4812305 +) +) +] +[1,18871:6630773,45706769:25952256,40108032,0 +(1,18871:6630773,45706769:25952256,40108032,0 +(1,18871:6630773,45706769:0,0,0 +g1,18871:6630773,45706769 ) -[1,18873:6630773,45706769:25952256,40108032,0 -v1,18822:6630773,6254097:0,393216,0 -(1,18830:6630773,9327594:25952256,3466713,196608 -g1,18830:6630773,9327594 -g1,18830:6630773,9327594 -g1,18830:6434165,9327594 -(1,18830:6434165,9327594:0,3466713,196608 -r1,18873:32779637,9327594:26345472,3663321,196608 -k1,18830:6434165,9327594:-26345472 +[1,18871:6630773,45706769:25952256,40108032,0 +v1,18820:6630773,6254097:0,393216,0 +(1,18828:6630773,9327594:25952256,3466713,196608 +g1,18828:6630773,9327594 +g1,18828:6630773,9327594 +g1,18828:6434165,9327594 +(1,18828:6434165,9327594:0,3466713,196608 +r1,18871:32779637,9327594:26345472,3663321,196608 +k1,18828:6434165,9327594:-26345472 ) -(1,18830:6434165,9327594:26345472,3466713,196608 -[1,18830:6630773,9327594:25952256,3270105,0 -(1,18824:6630773,6481928:25952256,424439,106246 -(1,18823:6630773,6481928:0,0,0 -g1,18823:6630773,6481928 -g1,18823:6630773,6481928 -g1,18823:6303093,6481928 -(1,18823:6303093,6481928:0,0,0 -) -g1,18823:6630773,6481928 -) -g1,18824:8954451,6481928 -k1,18824:8954451,6481928:0 -h1,18824:9618359,6481928:0,0,0 -k1,18824:32583029,6481928:22964670 -g1,18824:32583029,6481928 -) -(1,18825:6630773,7166783:25952256,424439,112852 -h1,18825:6630773,7166783:0,0,0 -g1,18825:6962727,7166783 -g1,18825:7294681,7166783 -g1,18825:11278129,7166783 -g1,18825:11942037,7166783 -k1,18825:11942037,7166783:0 -h1,18825:14265715,7166783:0,0,0 -k1,18825:32583029,7166783:18317314 -g1,18825:32583029,7166783 -) -(1,18826:6630773,7851638:25952256,431045,112852 -h1,18826:6630773,7851638:0,0,0 -g1,18826:6962727,7851638 -g1,18826:7294681,7851638 -g1,18826:7626635,7851638 -g1,18826:7958589,7851638 -g1,18826:8290543,7851638 -g1,18826:8622497,7851638 -g1,18826:8954451,7851638 -g1,18826:11610083,7851638 -g1,18826:12273991,7851638 -g1,18826:14265715,7851638 -g1,18826:14929623,7851638 -g1,18826:16921347,7851638 -g1,18826:17585255,7851638 -g1,18826:18249163,7851638 -g1,18826:19908933,7851638 -g1,18826:21900657,7851638 -g1,18826:22564565,7851638 -g1,18826:27211921,7851638 -h1,18826:27543875,7851638:0,0,0 -k1,18826:32583029,7851638:5039154 -g1,18826:32583029,7851638 -) -(1,18827:6630773,8536493:25952256,424439,112852 -h1,18827:6630773,8536493:0,0,0 -g1,18827:6962727,8536493 -g1,18827:7294681,8536493 -k1,18827:7294681,8536493:0 -h1,18827:11278128,8536493:0,0,0 -k1,18827:32583028,8536493:21304900 -g1,18827:32583028,8536493 -) -(1,18828:6630773,9221348:25952256,424439,106246 -h1,18828:6630773,9221348:0,0,0 -h1,18828:8622497,9221348:0,0,0 -k1,18828:32583029,9221348:23960532 -g1,18828:32583029,9221348 -) -] -) -g1,18830:32583029,9327594 -g1,18830:6630773,9327594 -g1,18830:6630773,9327594 -g1,18830:32583029,9327594 -g1,18830:32583029,9327594 -) -h1,18830:6630773,9524202:0,0,0 -(1,18833:6630773,18673404:25952256,9083666,0 -k1,18833:10523651,18673404:3892878 -h1,18832:10523651,18673404:0,0,0 -(1,18832:10523651,18673404:18166500,9083666,0 -(1,18832:10523651,18673404:18167376,9083688,0 -(1,18832:10523651,18673404:18167376,9083688,0 -(1,18832:10523651,18673404:0,9083688,0 -(1,18832:10523651,18673404:0,14208860,0 -(1,18832:10523651,18673404:28417720,14208860,0 -) -k1,18832:10523651,18673404:-28417720 -) -) -g1,18832:28691027,18673404 -) -) -) -g1,18833:28690151,18673404 -k1,18833:32583029,18673404:3892878 -) -v1,18840:6630773,19538484:0,393216,0 -(1,18841:6630773,22532684:25952256,3387416,0 -g1,18841:6630773,22532684 -g1,18841:6237557,22532684 -r1,18873:6368629,22532684:131072,3387416,0 -g1,18841:6567858,22532684 -g1,18841:6764466,22532684 -[1,18841:6764466,22532684:25818563,3387416,0 -(1,18841:6764466,19810961:25818563,665693,196608 -(1,18840:6764466,19810961:0,665693,196608 -r1,18873:7868133,19810961:1103667,862301,196608 -k1,18840:6764466,19810961:-1103667 -) -(1,18840:6764466,19810961:1103667,665693,196608 -) -k1,18840:8117450,19810961:249317 -k1,18840:9435379,19810961:327680 -k1,18840:10768662,19810961:249317 -k1,18840:11373839,19810961:249317 -k1,18840:14385500,19810961:249318 -k1,18840:17616050,19810961:249317 -(1,18840:17616050,19810961:0,452978,115847 -r1,18873:19029451,19810961:1413401,568825,115847 -k1,18840:17616050,19810961:-1413401 -) -(1,18840:17616050,19810961:1413401,452978,115847 -k1,18840:17616050,19810961:3277 -h1,18840:19026174,19810961:0,411205,112570 -) -k1,18840:19278768,19810961:249317 -$1,18840:19278768,19810961 -$1,18840:19953789,19810961 -k1,18840:20203106,19810961:249317 -(1,18840:20203106,19810961:0,452978,115847 -r1,18873:22319931,19810961:2116825,568825,115847 -k1,18840:20203106,19810961:-2116825 -) -(1,18840:20203106,19810961:2116825,452978,115847 -k1,18840:20203106,19810961:3277 -h1,18840:22316654,19810961:0,411205,112570 -) -k1,18840:22742918,19810961:249317 -(1,18840:22742918,19810961:0,452978,115847 -r1,18873:23804607,19810961:1061689,568825,115847 -k1,18840:22742918,19810961:-1061689 -) -(1,18840:22742918,19810961:1061689,452978,115847 -k1,18840:22742918,19810961:3277 -h1,18840:23801330,19810961:0,411205,112570 -) -k1,18840:24053924,19810961:249317 -$1,18840:24053924,19810961 -$1,18840:24728945,19810961 -k1,18840:24978263,19810961:249318 -(1,18840:24978263,19810961:0,414482,115847 -r1,18873:25336529,19810961:358266,530329,115847 -k1,18840:24978263,19810961:-358266 -) -(1,18840:24978263,19810961:358266,414482,115847 -k1,18840:24978263,19810961:3277 -h1,18840:25333252,19810961:0,411205,112570 -) -k1,18840:25759516,19810961:249317 -k1,18840:28507065,19810961:249317 -k1,18840:29775467,19810961:249317 -k1,18841:32583029,19810961:0 -) -(1,18841:6764466,20676041:25818563,505283,134348 -(1,18840:6764466,20676041:0,414482,122846 -r1,18873:7826155,20676041:1061689,537328,122846 -k1,18840:6764466,20676041:-1061689 -) -(1,18840:6764466,20676041:1061689,414482,122846 -k1,18840:6764466,20676041:3277 -h1,18840:7822878,20676041:0,411205,112570 -) -k1,18840:8005222,20676041:179067 -$1,18840:8005222,20676041 -$1,18840:8680243,20676041 -k1,18840:8859310,20676041:179067 -(1,18840:8859310,20676041:0,414482,115847 -r1,18873:9217576,20676041:358266,530329,115847 -k1,18840:8859310,20676041:-358266 -) -(1,18840:8859310,20676041:358266,414482,115847 -k1,18840:8859310,20676041:3277 -h1,18840:9214299,20676041:0,411205,112570 -) -k1,18840:9396643,20676041:179067 -k1,18840:13240483,20676041:179067 -k1,18840:16319518,20676041:179067 -k1,18840:17260112,20676041:179066 -k1,18840:19174572,20676041:179067 -(1,18840:19174572,20676041:0,452978,115847 -r1,18873:23401668,20676041:4227096,568825,115847 -k1,18840:19174572,20676041:-4227096 -) -(1,18840:19174572,20676041:4227096,452978,115847 -k1,18840:19174572,20676041:3277 -h1,18840:23398391,20676041:0,411205,112570 -) -k1,18840:23580735,20676041:179067 -k1,18840:25969676,20676041:179067 -(1,18840:25969676,20676041:0,452978,115847 -r1,18873:30548484,20676041:4578808,568825,115847 -k1,18840:25969676,20676041:-4578808 -) -(1,18840:25969676,20676041:4578808,452978,115847 -k1,18840:25969676,20676041:3277 -h1,18840:30545207,20676041:0,411205,112570 -) -k1,18840:30727551,20676041:179067 -k1,18840:31558046,20676041:179067 -k1,18840:32583029,20676041:0 -) -(1,18841:6764466,21541121:25818563,505283,134348 -k1,18840:8459774,21541121:172906 -k1,18840:10334649,21541121:172905 -k1,18840:13349196,21541121:172906 -k1,18840:14513662,21541121:172906 -k1,18840:17644207,21541121:172905 -k1,18840:19008558,21541121:172906 -k1,18840:20615392,21541121:172906 -k1,18840:21694660,21541121:172905 -k1,18840:22886651,21541121:172906 -k1,18840:27377724,21541121:172906 -k1,18840:28835135,21541121:172905 -k1,18840:31138616,21541121:172906 -k1,18840:32583029,21541121:0 -) -(1,18841:6764466,22406201:25818563,505283,126483 -g1,18840:11470606,22406201 -g1,18840:14038306,22406201 -g1,18840:15256620,22406201 -k1,18841:32583029,22406201:15884617 -g1,18841:32583029,22406201 -) -] -g1,18841:32583029,22532684 -) -h1,18841:6630773,22532684:0,0,0 -(1,18844:6630773,23397764:25952256,513147,134348 -h1,18843:6630773,23397764:983040,0,0 -k1,18843:10110099,23397764:176967 -(1,18843:10110099,23397764:0,452978,115847 -r1,18873:17854313,23397764:7744214,568825,115847 -k1,18843:10110099,23397764:-7744214 -) -(1,18843:10110099,23397764:7744214,452978,115847 -k1,18843:10110099,23397764:3277 -h1,18843:17851036,23397764:0,411205,112570 -) -k1,18843:18204949,23397764:176966 -k1,18843:19401001,23397764:176967 -k1,18843:21150177,23397764:176967 -k1,18843:23661535,23397764:176966 -k1,18843:25351728,23397764:176967 -k1,18843:26290223,23397764:176967 -k1,18843:28906439,23397764:176966 -k1,18843:30155575,23397764:176967 -k1,18844:32583029,23397764:0 -) -(1,18844:6630773,24262844:25952256,513147,126483 -(1,18843:6630773,24262844:0,452978,115847 -r1,18873:11209581,24262844:4578808,568825,115847 -k1,18843:6630773,24262844:-4578808 -) -(1,18843:6630773,24262844:4578808,452978,115847 -g1,18843:8744321,24262844 -g1,18843:9447745,24262844 -h1,18843:11206304,24262844:0,411205,112570 -) -k1,18843:11391878,24262844:182297 -k1,18843:12190214,24262844:182298 -k1,18843:13391596,24262844:182297 -k1,18843:14673588,24262844:182298 -k1,18843:17115566,24262844:182297 -k1,18843:17653724,24262844:182298 -k1,18843:20169758,24262844:182297 -k1,18843:21011347,24262844:182297 -k1,18843:22212730,24262844:182298 -k1,18843:24048500,24262844:182297 -k1,18843:25508095,24262844:182298 -k1,18843:27545061,24262844:182297 -k1,18843:28536729,24262844:182298 -k1,18843:30296478,24262844:182297 -k1,18843:32583029,24262844:0 -) -(1,18844:6630773,25127924:25952256,505283,126483 -g1,18843:8028656,25127924 -g1,18843:10816557,25127924 -k1,18844:32583030,25127924:17397188 -g1,18844:32583030,25127924 -) -v1,18846:6630773,25812779:0,393216,0 -(1,18851:6630773,26831711:25952256,1412148,196608 -g1,18851:6630773,26831711 -g1,18851:6630773,26831711 -g1,18851:6434165,26831711 -(1,18851:6434165,26831711:0,1412148,196608 -r1,18873:32779637,26831711:26345472,1608756,196608 -k1,18851:6434165,26831711:-26345472 -) -(1,18851:6434165,26831711:26345472,1412148,196608 -[1,18851:6630773,26831711:25952256,1215540,0 -(1,18848:6630773,26040610:25952256,424439,106246 -(1,18847:6630773,26040610:0,0,0 -g1,18847:6630773,26040610 -g1,18847:6630773,26040610 -g1,18847:6303093,26040610 -(1,18847:6303093,26040610:0,0,0 -) -g1,18847:6630773,26040610 -) -g1,18848:8954451,26040610 -h1,18848:9286405,26040610:0,0,0 -k1,18848:32583029,26040610:23296624 -g1,18848:32583029,26040610 -) -(1,18849:6630773,26725465:25952256,424439,106246 -h1,18849:6630773,26725465:0,0,0 -g1,18849:6962727,26725465 -g1,18849:7294681,26725465 -g1,18849:16257438,26725465 -g1,18849:16921346,26725465 -h1,18849:18913070,26725465:0,0,0 -k1,18849:32583029,26725465:13669959 -g1,18849:32583029,26725465 -) -] -) -g1,18851:32583029,26831711 -g1,18851:6630773,26831711 -g1,18851:6630773,26831711 -g1,18851:32583029,26831711 -g1,18851:32583029,26831711 -) -h1,18851:6630773,27028319:0,0,0 -(1,18854:6630773,36177521:25952256,9083666,0 -k1,18854:10523651,36177521:3892878 -h1,18853:10523651,36177521:0,0,0 -(1,18853:10523651,36177521:18166500,9083666,0 -(1,18853:10523651,36177521:18167376,9083688,0 -(1,18853:10523651,36177521:18167376,9083688,0 -(1,18853:10523651,36177521:0,9083688,0 -(1,18853:10523651,36177521:0,14208860,0 -(1,18853:10523651,36177521:28417720,14208860,0 -) -k1,18853:10523651,36177521:-28417720 -) -) -g1,18853:28691027,36177521 -) -) -) -g1,18854:28690151,36177521 -k1,18854:32583029,36177521:3892878 -) -(1,18861:6630773,37042601:25952256,513147,126483 -h1,18860:6630773,37042601:983040,0,0 -k1,18860:8413821,37042601:172173 -k1,18860:11217265,37042601:172173 -k1,18860:12040866,37042601:172173 -k1,18860:14422258,37042601:172173 -k1,18860:16793819,37042601:172173 -k1,18860:18250498,37042601:172173 -k1,18860:19926068,37042601:172174 -k1,18860:21564937,37042601:172173 -(1,18860:21564937,37042601:0,452978,115847 -r1,18873:23681762,37042601:2116825,568825,115847 -k1,18860:21564937,37042601:-2116825 -) -(1,18860:21564937,37042601:2116825,452978,115847 -k1,18860:21564937,37042601:3277 -h1,18860:23678485,37042601:0,411205,112570 -) -k1,18860:23853935,37042601:172173 -k1,18860:25217553,37042601:172173 -(1,18860:25217553,37042601:0,459977,115847 -r1,18873:26630954,37042601:1413401,575824,115847 -k1,18860:25217553,37042601:-1413401 -) -(1,18860:25217553,37042601:1413401,459977,115847 -k1,18860:25217553,37042601:3277 -h1,18860:26627677,37042601:0,411205,112570 -) -k1,18860:26976797,37042601:172173 -k1,18860:28726422,37042601:172173 -k1,18860:31097983,37042601:172173 -k1,18860:32583029,37042601:0 -) -(1,18861:6630773,37907681:25952256,505283,126483 -k1,18860:8214936,37907681:208562 -(1,18860:8214936,37907681:0,452978,115847 -r1,18873:10331761,37907681:2116825,568825,115847 -k1,18860:8214936,37907681:-2116825 -) -(1,18860:8214936,37907681:2116825,452978,115847 -k1,18860:8214936,37907681:3277 -h1,18860:10328484,37907681:0,411205,112570 -) -k1,18860:10540323,37907681:208562 -k1,18860:13517126,37907681:208562 -k1,18860:14377116,37907681:208562 -k1,18860:16137571,37907681:208562 -k1,18860:21934388,37907681:208562 -k1,18860:24932818,37907681:208562 -(1,18860:24932818,37907681:0,452978,115847 -r1,18873:31270185,37907681:6337367,568825,115847 -k1,18860:24932818,37907681:-6337367 -) -(1,18860:24932818,37907681:6337367,452978,115847 -k1,18860:24932818,37907681:3277 -h1,18860:31266908,37907681:0,411205,112570 -) -k1,18860:31478747,37907681:208562 -k1,18860:32583029,37907681:0 -) -(1,18861:6630773,38772761:25952256,513147,126483 -k1,18860:7671485,38772761:292946 -k1,18860:9477657,38772761:292946 -k1,18860:10422031,38772761:292946 -k1,18860:12930094,38772761:292946 -k1,18860:14242125,38772761:292946 -k1,18860:16404158,38772761:292946 -k1,18860:18210330,38772761:292946 -k1,18860:19450926,38772761:292945 -k1,18860:21195494,38772761:292946 -k1,18860:23168783,38772761:292946 -k1,18860:24077767,38772761:292946 -k1,18860:25389798,38772761:292946 -k1,18860:28268139,38772761:292946 -k1,18860:30628746,38772761:292946 -k1,18860:32583029,38772761:0 -) -(1,18861:6630773,39637841:25952256,505283,126483 -k1,18860:8980785,39637841:262035 -k1,18860:11442208,39637841:262035 -k1,18860:12695802,39637841:262034 -k1,18860:14644734,39637841:262035 -k1,18860:15592931,39637841:262035 -k1,18860:17235154,39637841:262035 -k1,18860:19398387,39637841:262034 -k1,18860:21744467,39637841:262035 -k1,18860:24705930,39637841:262035 -k1,18860:26865232,39637841:262035 -k1,18860:28569713,39637841:262034 -k1,18860:30383641,39637841:262035 -k1,18860:32583029,39637841:0 -) -(1,18861:6630773,40502921:25952256,505283,126483 -g1,18860:8293420,40502921 -g1,18860:9558920,40502921 -k1,18861:32583029,40502921:20567820 -g1,18861:32583029,40502921 -) -v1,18863:6630773,41187776:0,393216,0 -(1,18870:6630773,43576418:25952256,2781858,196608 -g1,18870:6630773,43576418 -g1,18870:6630773,43576418 -g1,18870:6434165,43576418 -(1,18870:6434165,43576418:0,2781858,196608 -r1,18873:32779637,43576418:26345472,2978466,196608 -k1,18870:6434165,43576418:-26345472 -) -(1,18870:6434165,43576418:26345472,2781858,196608 -[1,18870:6630773,43576418:25952256,2585250,0 -(1,18865:6630773,41415607:25952256,424439,106246 -(1,18864:6630773,41415607:0,0,0 -g1,18864:6630773,41415607 -g1,18864:6630773,41415607 -g1,18864:6303093,41415607 -(1,18864:6303093,41415607:0,0,0 -) -g1,18864:6630773,41415607 -) -g1,18865:8954451,41415607 -h1,18865:9286405,41415607:0,0,0 -k1,18865:32583029,41415607:23296624 -g1,18865:32583029,41415607 -) -(1,18866:6630773,42100462:25952256,424439,106246 -h1,18866:6630773,42100462:0,0,0 -g1,18866:6962727,42100462 -g1,18866:7294681,42100462 -g1,18866:15925484,42100462 -g1,18866:16589392,42100462 -g1,18866:19908932,42100462 -k1,18866:19908932,42100462:0 -h1,18866:21900656,42100462:0,0,0 -k1,18866:32583029,42100462:10682373 -g1,18866:32583029,42100462 -) -(1,18867:6630773,42785317:25952256,424439,106246 -h1,18867:6630773,42785317:0,0,0 -g1,18867:6962727,42785317 -g1,18867:7294681,42785317 -g1,18867:7626635,42785317 -g1,18867:7958589,42785317 -g1,18867:8290543,42785317 -g1,18867:8622497,42785317 -g1,18867:8954451,42785317 -g1,18867:9286405,42785317 -g1,18867:9618359,42785317 -g1,18867:9950313,42785317 -g1,18867:10282267,42785317 -g1,18867:10614221,42785317 -g1,18867:10946175,42785317 -g1,18867:11278129,42785317 -g1,18867:11610083,42785317 -g1,18867:11942037,42785317 -g1,18867:12273991,42785317 -g1,18867:12605945,42785317 -g1,18867:12937899,42785317 -g1,18867:13269853,42785317 -g1,18867:13601807,42785317 -g1,18867:13933761,42785317 -g1,18867:14265715,42785317 -g1,18867:14597669,42785317 -g1,18867:14929623,42785317 -g1,18867:15261577,42785317 -g1,18867:15593531,42785317 -g1,18867:15925485,42785317 -g1,18867:16257439,42785317 -g1,18867:16589393,42785317 -g1,18867:16921347,42785317 -g1,18867:17253301,42785317 -g1,18867:19908933,42785317 -k1,18867:19908933,42785317:0 -h1,18867:21900657,42785317:0,0,0 -k1,18867:32583029,42785317:10682372 -g1,18867:32583029,42785317 -) -(1,18868:6630773,43470172:25952256,424439,106246 -h1,18868:6630773,43470172:0,0,0 -g1,18868:6962727,43470172 -g1,18868:7294681,43470172 -g1,18868:7626635,43470172 -g1,18868:7958589,43470172 -g1,18868:8290543,43470172 -g1,18868:8622497,43470172 -g1,18868:8954451,43470172 -g1,18868:9286405,43470172 -g1,18868:9618359,43470172 -g1,18868:9950313,43470172 -g1,18868:10282267,43470172 -g1,18868:10614221,43470172 -g1,18868:10946175,43470172 -g1,18868:11278129,43470172 -g1,18868:11610083,43470172 -g1,18868:11942037,43470172 -g1,18868:12273991,43470172 -g1,18868:12605945,43470172 -g1,18868:12937899,43470172 -g1,18868:13269853,43470172 -g1,18868:13601807,43470172 -g1,18868:13933761,43470172 -g1,18868:14265715,43470172 -g1,18868:14597669,43470172 -g1,18868:14929623,43470172 -g1,18868:15261577,43470172 -g1,18868:15593531,43470172 -g1,18868:15925485,43470172 -g1,18868:16257439,43470172 -g1,18868:16589393,43470172 -g1,18868:16921347,43470172 -g1,18868:17253301,43470172 -g1,18868:20240886,43470172 -h1,18868:22564564,43470172:0,0,0 -k1,18868:32583029,43470172:10018465 -g1,18868:32583029,43470172 -) -] -) -g1,18870:32583029,43576418 -g1,18870:6630773,43576418 -g1,18870:6630773,43576418 -g1,18870:32583029,43576418 -g1,18870:32583029,43576418 -) -h1,18870:6630773,43773026:0,0,0 -] -(1,18873:32583029,45706769:0,0,0 -g1,18873:32583029,45706769 -) -) -] -(1,18873:6630773,47279633:25952256,0,0 -h1,18873:6630773,47279633:25952256,0,0 -) -] -(1,18873:4262630,4025873:0,0,0 -[1,18873:-473656,4025873:0,0,0 -(1,18873:-473656,-710413:0,0,0 -(1,18873:-473656,-710413:0,0,0 -g1,18873:-473656,-710413 -) -g1,18873:-473656,-710413 +(1,18828:6434165,9327594:26345472,3466713,196608 +[1,18828:6630773,9327594:25952256,3270105,0 +(1,18822:6630773,6481928:25952256,424439,106246 +(1,18821:6630773,6481928:0,0,0 +g1,18821:6630773,6481928 +g1,18821:6630773,6481928 +g1,18821:6303093,6481928 +(1,18821:6303093,6481928:0,0,0 +) +g1,18821:6630773,6481928 +) +g1,18822:8954451,6481928 +k1,18822:8954451,6481928:0 +h1,18822:9618359,6481928:0,0,0 +k1,18822:32583029,6481928:22964670 +g1,18822:32583029,6481928 +) +(1,18823:6630773,7166783:25952256,424439,112852 +h1,18823:6630773,7166783:0,0,0 +g1,18823:6962727,7166783 +g1,18823:7294681,7166783 +g1,18823:11278129,7166783 +g1,18823:11942037,7166783 +k1,18823:11942037,7166783:0 +h1,18823:14265715,7166783:0,0,0 +k1,18823:32583029,7166783:18317314 +g1,18823:32583029,7166783 +) +(1,18824:6630773,7851638:25952256,431045,112852 +h1,18824:6630773,7851638:0,0,0 +g1,18824:6962727,7851638 +g1,18824:7294681,7851638 +g1,18824:7626635,7851638 +g1,18824:7958589,7851638 +g1,18824:8290543,7851638 +g1,18824:8622497,7851638 +g1,18824:8954451,7851638 +g1,18824:11610083,7851638 +g1,18824:12273991,7851638 +g1,18824:14265715,7851638 +g1,18824:14929623,7851638 +g1,18824:16921347,7851638 +g1,18824:17585255,7851638 +g1,18824:18249163,7851638 +g1,18824:19908933,7851638 +g1,18824:21900657,7851638 +g1,18824:22564565,7851638 +g1,18824:27211921,7851638 +h1,18824:27543875,7851638:0,0,0 +k1,18824:32583029,7851638:5039154 +g1,18824:32583029,7851638 +) +(1,18825:6630773,8536493:25952256,424439,112852 +h1,18825:6630773,8536493:0,0,0 +g1,18825:6962727,8536493 +g1,18825:7294681,8536493 +k1,18825:7294681,8536493:0 +h1,18825:11278128,8536493:0,0,0 +k1,18825:32583028,8536493:21304900 +g1,18825:32583028,8536493 +) +(1,18826:6630773,9221348:25952256,424439,106246 +h1,18826:6630773,9221348:0,0,0 +h1,18826:8622497,9221348:0,0,0 +k1,18826:32583029,9221348:23960532 +g1,18826:32583029,9221348 +) +] +) +g1,18828:32583029,9327594 +g1,18828:6630773,9327594 +g1,18828:6630773,9327594 +g1,18828:32583029,9327594 +g1,18828:32583029,9327594 +) +h1,18828:6630773,9524202:0,0,0 +(1,18831:6630773,18673404:25952256,9083666,0 +k1,18831:10523651,18673404:3892878 +h1,18830:10523651,18673404:0,0,0 +(1,18830:10523651,18673404:18166500,9083666,0 +(1,18830:10523651,18673404:18167376,9083688,0 +(1,18830:10523651,18673404:18167376,9083688,0 +(1,18830:10523651,18673404:0,9083688,0 +(1,18830:10523651,18673404:0,14208860,0 +(1,18830:10523651,18673404:28417720,14208860,0 +) +k1,18830:10523651,18673404:-28417720 +) +) +g1,18830:28691027,18673404 +) +) +) +g1,18831:28690151,18673404 +k1,18831:32583029,18673404:3892878 +) +v1,18838:6630773,19538484:0,393216,0 +(1,18839:6630773,22532684:25952256,3387416,0 +g1,18839:6630773,22532684 +g1,18839:6237557,22532684 +r1,18871:6368629,22532684:131072,3387416,0 +g1,18839:6567858,22532684 +g1,18839:6764466,22532684 +[1,18839:6764466,22532684:25818563,3387416,0 +(1,18839:6764466,19810961:25818563,665693,196608 +(1,18838:6764466,19810961:0,665693,196608 +r1,18871:7868133,19810961:1103667,862301,196608 +k1,18838:6764466,19810961:-1103667 +) +(1,18838:6764466,19810961:1103667,665693,196608 +) +k1,18838:8117450,19810961:249317 +k1,18838:9435379,19810961:327680 +k1,18838:10768662,19810961:249317 +k1,18838:11373839,19810961:249317 +k1,18838:14385500,19810961:249318 +k1,18838:17616050,19810961:249317 +(1,18838:17616050,19810961:0,452978,115847 +r1,18871:19029451,19810961:1413401,568825,115847 +k1,18838:17616050,19810961:-1413401 +) +(1,18838:17616050,19810961:1413401,452978,115847 +k1,18838:17616050,19810961:3277 +h1,18838:19026174,19810961:0,411205,112570 +) +k1,18838:19278768,19810961:249317 +$1,18838:19278768,19810961 +$1,18838:19953789,19810961 +k1,18838:20203106,19810961:249317 +(1,18838:20203106,19810961:0,452978,115847 +r1,18871:22319931,19810961:2116825,568825,115847 +k1,18838:20203106,19810961:-2116825 +) +(1,18838:20203106,19810961:2116825,452978,115847 +k1,18838:20203106,19810961:3277 +h1,18838:22316654,19810961:0,411205,112570 +) +k1,18838:22742918,19810961:249317 +(1,18838:22742918,19810961:0,452978,115847 +r1,18871:23804607,19810961:1061689,568825,115847 +k1,18838:22742918,19810961:-1061689 +) +(1,18838:22742918,19810961:1061689,452978,115847 +k1,18838:22742918,19810961:3277 +h1,18838:23801330,19810961:0,411205,112570 +) +k1,18838:24053924,19810961:249317 +$1,18838:24053924,19810961 +$1,18838:24728945,19810961 +k1,18838:24978263,19810961:249318 +(1,18838:24978263,19810961:0,414482,115847 +r1,18871:25336529,19810961:358266,530329,115847 +k1,18838:24978263,19810961:-358266 +) +(1,18838:24978263,19810961:358266,414482,115847 +k1,18838:24978263,19810961:3277 +h1,18838:25333252,19810961:0,411205,112570 +) +k1,18838:25759516,19810961:249317 +k1,18838:28507065,19810961:249317 +k1,18838:29775467,19810961:249317 +k1,18839:32583029,19810961:0 +) +(1,18839:6764466,20676041:25818563,505283,134348 +(1,18838:6764466,20676041:0,414482,122846 +r1,18871:7826155,20676041:1061689,537328,122846 +k1,18838:6764466,20676041:-1061689 +) +(1,18838:6764466,20676041:1061689,414482,122846 +k1,18838:6764466,20676041:3277 +h1,18838:7822878,20676041:0,411205,112570 +) +k1,18838:8005222,20676041:179067 +$1,18838:8005222,20676041 +$1,18838:8680243,20676041 +k1,18838:8859310,20676041:179067 +(1,18838:8859310,20676041:0,414482,115847 +r1,18871:9217576,20676041:358266,530329,115847 +k1,18838:8859310,20676041:-358266 +) +(1,18838:8859310,20676041:358266,414482,115847 +k1,18838:8859310,20676041:3277 +h1,18838:9214299,20676041:0,411205,112570 +) +k1,18838:9396643,20676041:179067 +k1,18838:13240483,20676041:179067 +k1,18838:16319518,20676041:179067 +k1,18838:17260112,20676041:179066 +k1,18838:19174572,20676041:179067 +(1,18838:19174572,20676041:0,452978,115847 +r1,18871:23401668,20676041:4227096,568825,115847 +k1,18838:19174572,20676041:-4227096 +) +(1,18838:19174572,20676041:4227096,452978,115847 +k1,18838:19174572,20676041:3277 +h1,18838:23398391,20676041:0,411205,112570 +) +k1,18838:23580735,20676041:179067 +k1,18838:25969676,20676041:179067 +(1,18838:25969676,20676041:0,452978,115847 +r1,18871:30548484,20676041:4578808,568825,115847 +k1,18838:25969676,20676041:-4578808 +) +(1,18838:25969676,20676041:4578808,452978,115847 +k1,18838:25969676,20676041:3277 +h1,18838:30545207,20676041:0,411205,112570 +) +k1,18838:30727551,20676041:179067 +k1,18838:31558046,20676041:179067 +k1,18838:32583029,20676041:0 +) +(1,18839:6764466,21541121:25818563,505283,134348 +k1,18838:8459774,21541121:172906 +k1,18838:10334649,21541121:172905 +k1,18838:13349196,21541121:172906 +k1,18838:14513662,21541121:172906 +k1,18838:17644207,21541121:172905 +k1,18838:19008558,21541121:172906 +k1,18838:20615392,21541121:172906 +k1,18838:21694660,21541121:172905 +k1,18838:22886651,21541121:172906 +k1,18838:27377724,21541121:172906 +k1,18838:28835135,21541121:172905 +k1,18838:31138616,21541121:172906 +k1,18838:32583029,21541121:0 +) +(1,18839:6764466,22406201:25818563,505283,126483 +g1,18838:11470606,22406201 +g1,18838:14038306,22406201 +g1,18838:15256620,22406201 +k1,18839:32583029,22406201:15884617 +g1,18839:32583029,22406201 +) +] +g1,18839:32583029,22532684 +) +h1,18839:6630773,22532684:0,0,0 +(1,18842:6630773,23397764:25952256,513147,134348 +h1,18841:6630773,23397764:983040,0,0 +k1,18841:10110099,23397764:176967 +(1,18841:10110099,23397764:0,452978,115847 +r1,18871:17854313,23397764:7744214,568825,115847 +k1,18841:10110099,23397764:-7744214 +) +(1,18841:10110099,23397764:7744214,452978,115847 +k1,18841:10110099,23397764:3277 +h1,18841:17851036,23397764:0,411205,112570 +) +k1,18841:18204949,23397764:176966 +k1,18841:19401001,23397764:176967 +k1,18841:21150177,23397764:176967 +k1,18841:23661535,23397764:176966 +k1,18841:25351728,23397764:176967 +k1,18841:26290223,23397764:176967 +k1,18841:28906439,23397764:176966 +k1,18841:30155575,23397764:176967 +k1,18842:32583029,23397764:0 +) +(1,18842:6630773,24262844:25952256,513147,126483 +(1,18841:6630773,24262844:0,452978,115847 +r1,18871:11209581,24262844:4578808,568825,115847 +k1,18841:6630773,24262844:-4578808 +) +(1,18841:6630773,24262844:4578808,452978,115847 +g1,18841:8744321,24262844 +g1,18841:9447745,24262844 +h1,18841:11206304,24262844:0,411205,112570 +) +k1,18841:11391878,24262844:182297 +k1,18841:12190214,24262844:182298 +k1,18841:13391596,24262844:182297 +k1,18841:14673588,24262844:182298 +k1,18841:17115566,24262844:182297 +k1,18841:17653724,24262844:182298 +k1,18841:20169758,24262844:182297 +k1,18841:21011347,24262844:182297 +k1,18841:22212730,24262844:182298 +k1,18841:24048500,24262844:182297 +k1,18841:25508095,24262844:182298 +k1,18841:27545061,24262844:182297 +k1,18841:28536729,24262844:182298 +k1,18841:30296478,24262844:182297 +k1,18841:32583029,24262844:0 +) +(1,18842:6630773,25127924:25952256,505283,126483 +g1,18841:8028656,25127924 +g1,18841:10816557,25127924 +k1,18842:32583030,25127924:17397188 +g1,18842:32583030,25127924 +) +v1,18844:6630773,25812779:0,393216,0 +(1,18849:6630773,26831711:25952256,1412148,196608 +g1,18849:6630773,26831711 +g1,18849:6630773,26831711 +g1,18849:6434165,26831711 +(1,18849:6434165,26831711:0,1412148,196608 +r1,18871:32779637,26831711:26345472,1608756,196608 +k1,18849:6434165,26831711:-26345472 +) +(1,18849:6434165,26831711:26345472,1412148,196608 +[1,18849:6630773,26831711:25952256,1215540,0 +(1,18846:6630773,26040610:25952256,424439,106246 +(1,18845:6630773,26040610:0,0,0 +g1,18845:6630773,26040610 +g1,18845:6630773,26040610 +g1,18845:6303093,26040610 +(1,18845:6303093,26040610:0,0,0 +) +g1,18845:6630773,26040610 +) +g1,18846:8954451,26040610 +h1,18846:9286405,26040610:0,0,0 +k1,18846:32583029,26040610:23296624 +g1,18846:32583029,26040610 +) +(1,18847:6630773,26725465:25952256,424439,106246 +h1,18847:6630773,26725465:0,0,0 +g1,18847:6962727,26725465 +g1,18847:7294681,26725465 +g1,18847:16257438,26725465 +g1,18847:16921346,26725465 +h1,18847:18913070,26725465:0,0,0 +k1,18847:32583029,26725465:13669959 +g1,18847:32583029,26725465 +) +] +) +g1,18849:32583029,26831711 +g1,18849:6630773,26831711 +g1,18849:6630773,26831711 +g1,18849:32583029,26831711 +g1,18849:32583029,26831711 +) +h1,18849:6630773,27028319:0,0,0 +(1,18852:6630773,36177521:25952256,9083666,0 +k1,18852:10523651,36177521:3892878 +h1,18851:10523651,36177521:0,0,0 +(1,18851:10523651,36177521:18166500,9083666,0 +(1,18851:10523651,36177521:18167376,9083688,0 +(1,18851:10523651,36177521:18167376,9083688,0 +(1,18851:10523651,36177521:0,9083688,0 +(1,18851:10523651,36177521:0,14208860,0 +(1,18851:10523651,36177521:28417720,14208860,0 +) +k1,18851:10523651,36177521:-28417720 +) +) +g1,18851:28691027,36177521 +) +) +) +g1,18852:28690151,36177521 +k1,18852:32583029,36177521:3892878 +) +(1,18859:6630773,37042601:25952256,513147,126483 +h1,18858:6630773,37042601:983040,0,0 +k1,18858:8413821,37042601:172173 +k1,18858:11217265,37042601:172173 +k1,18858:12040866,37042601:172173 +k1,18858:14422258,37042601:172173 +k1,18858:16793819,37042601:172173 +k1,18858:18250498,37042601:172173 +k1,18858:19926068,37042601:172174 +k1,18858:21564937,37042601:172173 +(1,18858:21564937,37042601:0,452978,115847 +r1,18871:23681762,37042601:2116825,568825,115847 +k1,18858:21564937,37042601:-2116825 +) +(1,18858:21564937,37042601:2116825,452978,115847 +k1,18858:21564937,37042601:3277 +h1,18858:23678485,37042601:0,411205,112570 +) +k1,18858:23853935,37042601:172173 +k1,18858:25217553,37042601:172173 +(1,18858:25217553,37042601:0,459977,115847 +r1,18871:26630954,37042601:1413401,575824,115847 +k1,18858:25217553,37042601:-1413401 +) +(1,18858:25217553,37042601:1413401,459977,115847 +k1,18858:25217553,37042601:3277 +h1,18858:26627677,37042601:0,411205,112570 +) +k1,18858:26976797,37042601:172173 +k1,18858:28726422,37042601:172173 +k1,18858:31097983,37042601:172173 +k1,18858:32583029,37042601:0 +) +(1,18859:6630773,37907681:25952256,505283,126483 +k1,18858:8214936,37907681:208562 +(1,18858:8214936,37907681:0,452978,115847 +r1,18871:10331761,37907681:2116825,568825,115847 +k1,18858:8214936,37907681:-2116825 +) +(1,18858:8214936,37907681:2116825,452978,115847 +k1,18858:8214936,37907681:3277 +h1,18858:10328484,37907681:0,411205,112570 +) +k1,18858:10540323,37907681:208562 +k1,18858:13517126,37907681:208562 +k1,18858:14377116,37907681:208562 +k1,18858:16137571,37907681:208562 +k1,18858:21934388,37907681:208562 +k1,18858:24932818,37907681:208562 +(1,18858:24932818,37907681:0,452978,115847 +r1,18871:31270185,37907681:6337367,568825,115847 +k1,18858:24932818,37907681:-6337367 +) +(1,18858:24932818,37907681:6337367,452978,115847 +k1,18858:24932818,37907681:3277 +h1,18858:31266908,37907681:0,411205,112570 +) +k1,18858:31478747,37907681:208562 +k1,18858:32583029,37907681:0 +) +(1,18859:6630773,38772761:25952256,513147,126483 +k1,18858:7671485,38772761:292946 +k1,18858:9477657,38772761:292946 +k1,18858:10422031,38772761:292946 +k1,18858:12930094,38772761:292946 +k1,18858:14242125,38772761:292946 +k1,18858:16404158,38772761:292946 +k1,18858:18210330,38772761:292946 +k1,18858:19450926,38772761:292945 +k1,18858:21195494,38772761:292946 +k1,18858:23168783,38772761:292946 +k1,18858:24077767,38772761:292946 +k1,18858:25389798,38772761:292946 +k1,18858:28268139,38772761:292946 +k1,18858:30628746,38772761:292946 +k1,18858:32583029,38772761:0 +) +(1,18859:6630773,39637841:25952256,505283,126483 +k1,18858:8980785,39637841:262035 +k1,18858:11442208,39637841:262035 +k1,18858:12695802,39637841:262034 +k1,18858:14644734,39637841:262035 +k1,18858:15592931,39637841:262035 +k1,18858:17235154,39637841:262035 +k1,18858:19398387,39637841:262034 +k1,18858:21744467,39637841:262035 +k1,18858:24705930,39637841:262035 +k1,18858:26865232,39637841:262035 +k1,18858:28569713,39637841:262034 +k1,18858:30383641,39637841:262035 +k1,18858:32583029,39637841:0 +) +(1,18859:6630773,40502921:25952256,505283,126483 +g1,18858:8293420,40502921 +g1,18858:9558920,40502921 +k1,18859:32583029,40502921:20567820 +g1,18859:32583029,40502921 +) +v1,18861:6630773,41187776:0,393216,0 +(1,18868:6630773,43576418:25952256,2781858,196608 +g1,18868:6630773,43576418 +g1,18868:6630773,43576418 +g1,18868:6434165,43576418 +(1,18868:6434165,43576418:0,2781858,196608 +r1,18871:32779637,43576418:26345472,2978466,196608 +k1,18868:6434165,43576418:-26345472 +) +(1,18868:6434165,43576418:26345472,2781858,196608 +[1,18868:6630773,43576418:25952256,2585250,0 +(1,18863:6630773,41415607:25952256,424439,106246 +(1,18862:6630773,41415607:0,0,0 +g1,18862:6630773,41415607 +g1,18862:6630773,41415607 +g1,18862:6303093,41415607 +(1,18862:6303093,41415607:0,0,0 +) +g1,18862:6630773,41415607 +) +g1,18863:8954451,41415607 +h1,18863:9286405,41415607:0,0,0 +k1,18863:32583029,41415607:23296624 +g1,18863:32583029,41415607 +) +(1,18864:6630773,42100462:25952256,424439,106246 +h1,18864:6630773,42100462:0,0,0 +g1,18864:6962727,42100462 +g1,18864:7294681,42100462 +g1,18864:15925484,42100462 +g1,18864:16589392,42100462 +g1,18864:19908932,42100462 +k1,18864:19908932,42100462:0 +h1,18864:21900656,42100462:0,0,0 +k1,18864:32583029,42100462:10682373 +g1,18864:32583029,42100462 +) +(1,18865:6630773,42785317:25952256,424439,106246 +h1,18865:6630773,42785317:0,0,0 +g1,18865:6962727,42785317 +g1,18865:7294681,42785317 +g1,18865:7626635,42785317 +g1,18865:7958589,42785317 +g1,18865:8290543,42785317 +g1,18865:8622497,42785317 +g1,18865:8954451,42785317 +g1,18865:9286405,42785317 +g1,18865:9618359,42785317 +g1,18865:9950313,42785317 +g1,18865:10282267,42785317 +g1,18865:10614221,42785317 +g1,18865:10946175,42785317 +g1,18865:11278129,42785317 +g1,18865:11610083,42785317 +g1,18865:11942037,42785317 +g1,18865:12273991,42785317 +g1,18865:12605945,42785317 +g1,18865:12937899,42785317 +g1,18865:13269853,42785317 +g1,18865:13601807,42785317 +g1,18865:13933761,42785317 +g1,18865:14265715,42785317 +g1,18865:14597669,42785317 +g1,18865:14929623,42785317 +g1,18865:15261577,42785317 +g1,18865:15593531,42785317 +g1,18865:15925485,42785317 +g1,18865:16257439,42785317 +g1,18865:16589393,42785317 +g1,18865:16921347,42785317 +g1,18865:17253301,42785317 +g1,18865:19908933,42785317 +k1,18865:19908933,42785317:0 +h1,18865:21900657,42785317:0,0,0 +k1,18865:32583029,42785317:10682372 +g1,18865:32583029,42785317 +) +(1,18866:6630773,43470172:25952256,424439,106246 +h1,18866:6630773,43470172:0,0,0 +g1,18866:6962727,43470172 +g1,18866:7294681,43470172 +g1,18866:7626635,43470172 +g1,18866:7958589,43470172 +g1,18866:8290543,43470172 +g1,18866:8622497,43470172 +g1,18866:8954451,43470172 +g1,18866:9286405,43470172 +g1,18866:9618359,43470172 +g1,18866:9950313,43470172 +g1,18866:10282267,43470172 +g1,18866:10614221,43470172 +g1,18866:10946175,43470172 +g1,18866:11278129,43470172 +g1,18866:11610083,43470172 +g1,18866:11942037,43470172 +g1,18866:12273991,43470172 +g1,18866:12605945,43470172 +g1,18866:12937899,43470172 +g1,18866:13269853,43470172 +g1,18866:13601807,43470172 +g1,18866:13933761,43470172 +g1,18866:14265715,43470172 +g1,18866:14597669,43470172 +g1,18866:14929623,43470172 +g1,18866:15261577,43470172 +g1,18866:15593531,43470172 +g1,18866:15925485,43470172 +g1,18866:16257439,43470172 +g1,18866:16589393,43470172 +g1,18866:16921347,43470172 +g1,18866:17253301,43470172 +g1,18866:20240886,43470172 +h1,18866:22564564,43470172:0,0,0 +k1,18866:32583029,43470172:10018465 +g1,18866:32583029,43470172 +) +] +) +g1,18868:32583029,43576418 +g1,18868:6630773,43576418 +g1,18868:6630773,43576418 +g1,18868:32583029,43576418 +g1,18868:32583029,43576418 +) +h1,18868:6630773,43773026:0,0,0 +] +(1,18871:32583029,45706769:0,0,0 +g1,18871:32583029,45706769 +) +) +] +(1,18871:6630773,47279633:25952256,0,0 +h1,18871:6630773,47279633:25952256,0,0 +) +] +(1,18871:4262630,4025873:0,0,0 +[1,18871:-473656,4025873:0,0,0 +(1,18871:-473656,-710413:0,0,0 +(1,18871:-473656,-710413:0,0,0 +g1,18871:-473656,-710413 +) +g1,18871:-473656,-710413 ) ] ) ] !20646 -}311 -Input:3226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}312 Input:3230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3232:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -329216,1513 +329420,1513 @@ Input:3235:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3236:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3237:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3238:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3241:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3242:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{312 -[1,18936:4262630,47279633:28320399,43253760,0 -(1,18936:4262630,4025873:0,0,0 -[1,18936:-473656,4025873:0,0,0 -(1,18936:-473656,-710413:0,0,0 -(1,18936:-473656,-644877:0,0,0 -k1,18936:-473656,-644877:-65536 +{313 +[1,18934:4262630,47279633:28320399,43253760,0 +(1,18934:4262630,4025873:0,0,0 +[1,18934:-473656,4025873:0,0,0 +(1,18934:-473656,-710413:0,0,0 +(1,18934:-473656,-644877:0,0,0 +k1,18934:-473656,-644877:-65536 ) -(1,18936:-473656,4736287:0,0,0 -k1,18936:-473656,4736287:5209943 +(1,18934:-473656,4736287:0,0,0 +k1,18934:-473656,4736287:5209943 ) -g1,18936:-473656,-710413 +g1,18934:-473656,-710413 ) ] ) -[1,18936:6630773,47279633:25952256,43253760,0 -[1,18936:6630773,4812305:25952256,786432,0 -(1,18936:6630773,4812305:25952256,485622,11795 -(1,18936:6630773,4812305:25952256,485622,11795 -g1,18936:3078558,4812305 -[1,18936:3078558,4812305:0,0,0 -(1,18936:3078558,2439708:0,1703936,0 -k1,18936:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18936:2537886,2439708:1179648,16384,0 +[1,18934:6630773,47279633:25952256,43253760,0 +[1,18934:6630773,4812305:25952256,786432,0 +(1,18934:6630773,4812305:25952256,485622,11795 +(1,18934:6630773,4812305:25952256,485622,11795 +g1,18934:3078558,4812305 +[1,18934:3078558,4812305:0,0,0 +(1,18934:3078558,2439708:0,1703936,0 +k1,18934:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18934:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18936:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18934:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18936:3078558,4812305:0,0,0 -(1,18936:3078558,2439708:0,1703936,0 -g1,18936:29030814,2439708 -g1,18936:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18936:36151628,1915420:16384,1179648,0 +[1,18934:3078558,4812305:0,0,0 +(1,18934:3078558,2439708:0,1703936,0 +g1,18934:29030814,2439708 +g1,18934:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18934:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18936:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18934:37855564,2439708:1179648,16384,0 ) ) -k1,18936:3078556,2439708:-34777008 +k1,18934:3078556,2439708:-34777008 ) ] -[1,18936:3078558,4812305:0,0,0 -(1,18936:3078558,49800853:0,16384,2228224 -k1,18936:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18936:2537886,49800853:1179648,16384,0 +[1,18934:3078558,4812305:0,0,0 +(1,18934:3078558,49800853:0,16384,2228224 +k1,18934:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18934:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18936:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18934:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18936:3078558,4812305:0,0,0 -(1,18936:3078558,49800853:0,16384,2228224 -g1,18936:29030814,49800853 -g1,18936:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18936:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18936:37855564,49800853:1179648,16384,0 +[1,18934:3078558,4812305:0,0,0 +(1,18934:3078558,49800853:0,16384,2228224 +g1,18934:29030814,49800853 +g1,18934:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18934:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18934:37855564,49800853:1179648,16384,0 ) -) -k1,18936:3078556,49800853:-34777008 -) -] -g1,18936:6630773,4812305 -g1,18936:6630773,4812305 -g1,18936:10347975,4812305 -k1,18936:31387651,4812305:21039676 -) -) -] -[1,18936:6630773,45706769:25952256,40108032,0 -(1,18936:6630773,45706769:25952256,40108032,0 -(1,18936:6630773,45706769:0,0,0 -g1,18936:6630773,45706769 -) -[1,18936:6630773,45706769:25952256,40108032,0 -(1,18875:6630773,6254097:25952256,505283,126483 -h1,18874:6630773,6254097:983040,0,0 -k1,18874:8298243,6254097:214537 -k1,18874:9044276,6254097:214536 -k1,18874:10544629,6254097:214537 -k1,18874:13389126,6254097:214537 -k1,18874:14255091,6254097:214537 -k1,18874:15562112,6254097:214536 -k1,18874:19081630,6254097:214537 -k1,18874:19982329,6254097:214537 -k1,18874:22569924,6254097:214536 -k1,18874:23981148,6254097:214537 -k1,18874:27170364,6254097:214537 -k1,18874:27916398,6254097:214537 -k1,18874:30540037,6254097:214536 -k1,18874:31563944,6254097:214537 -k1,18874:32583029,6254097:0 -) -(1,18875:6630773,7119177:25952256,513147,126483 -k1,18874:9430947,7119177:185943 -k1,18874:10276183,7119177:185944 -k1,18874:11481211,7119177:185943 -k1,18874:15582276,7119177:185944 -k1,18874:16586108,7119177:185943 -k1,18874:17791137,7119177:185944 -k1,18874:20793162,7119177:185943 -k1,18874:22492332,7119177:185944 -k1,18874:23364437,7119177:185943 -k1,18874:26192137,7119177:185944 -k1,18874:27369640,7119177:185943 -k1,18874:32583029,7119177:0 -) -(1,18875:6630773,7984257:25952256,513147,134348 -g1,18874:7849087,7984257 -g1,18874:10313896,7984257 -g1,18874:12271456,7984257 -g1,18874:13002182,7984257 -g1,18874:15976861,7984257 -g1,18874:16937618,7984257 -g1,18874:19564301,7984257 -(1,18874:19564301,7984257:0,452978,122846 -r1,18936:24494821,7984257:4930520,575824,122846 -k1,18874:19564301,7984257:-4930520 -) -(1,18874:19564301,7984257:4930520,452978,122846 -g1,18874:21677849,7984257 -g1,18874:22381273,7984257 -h1,18874:24491544,7984257:0,411205,112570 -) -g1,18874:24694050,7984257 -g1,18874:26377669,7984257 -g1,18874:27643169,7984257 -k1,18875:32583029,7984257:2483571 -g1,18875:32583029,7984257 -) -v1,18877:6630773,8669112:0,393216,0 -(1,18882:6630773,9694650:25952256,1418754,196608 -g1,18882:6630773,9694650 -g1,18882:6630773,9694650 -g1,18882:6434165,9694650 -(1,18882:6434165,9694650:0,1418754,196608 -r1,18936:32779637,9694650:26345472,1615362,196608 -k1,18882:6434165,9694650:-26345472 -) -(1,18882:6434165,9694650:26345472,1418754,196608 -[1,18882:6630773,9694650:25952256,1222146,0 -(1,18879:6630773,8896943:25952256,424439,106246 -(1,18878:6630773,8896943:0,0,0 -g1,18878:6630773,8896943 -g1,18878:6630773,8896943 -g1,18878:6303093,8896943 -(1,18878:6303093,8896943:0,0,0 -) -g1,18878:6630773,8896943 -) -g1,18879:8954451,8896943 -h1,18879:9286405,8896943:0,0,0 -k1,18879:32583029,8896943:23296624 -g1,18879:32583029,8896943 -) -(1,18880:6630773,9581798:25952256,424439,112852 -h1,18880:6630773,9581798:0,0,0 -g1,18880:6962727,9581798 -g1,18880:15593530,9581798 -g1,18880:16257438,9581798 -g1,18880:18581116,9581798 -g1,18880:20240886,9581798 -g1,18880:22232610,9581798 -g1,18880:24224334,9581798 -g1,18880:24888242,9581798 -h1,18880:27211920,9581798:0,0,0 -k1,18880:32583029,9581798:5371109 -g1,18880:32583029,9581798 -) -] -) -g1,18882:32583029,9694650 -g1,18882:6630773,9694650 -g1,18882:6630773,9694650 -g1,18882:32583029,9694650 -g1,18882:32583029,9694650 -) -h1,18882:6630773,9891258:0,0,0 -(1,18886:6630773,10756338:25952256,513147,134348 -h1,18885:6630773,10756338:983040,0,0 -k1,18885:8348998,10756338:247597 -k1,18885:11107983,10756338:247645 -k1,18885:12923249,10756338:247645 -(1,18885:12923249,10756338:0,452978,115847 -r1,18936:14336650,10756338:1413401,568825,115847 -k1,18885:12923249,10756338:-1413401 -) -(1,18885:12923249,10756338:1413401,452978,115847 -k1,18885:12923249,10756338:3277 -h1,18885:14333373,10756338:0,411205,112570 -) -k1,18885:14584295,10756338:247645 -k1,18885:15936222,10756338:247645 -k1,18885:16931633,10756338:247645 -k1,18885:19764673,10756338:247645 -k1,18885:20663746,10756338:247645 -k1,18885:22561589,10756338:247646 -k1,18885:24251681,10756338:247645 -k1,18885:25656036,10756338:247645 -k1,18885:28921614,10756338:247645 -k1,18885:31841162,10756338:247645 -k1,18886:32583029,10756338:0 -) -(1,18886:6630773,11621418:25952256,513147,134348 -k1,18885:9481371,11621418:151825 -k1,18885:12981430,11621418:151825 -k1,18885:14514099,11621418:151825 -k1,18885:16711958,11621418:151825 -k1,18885:19493743,11621418:151825 -k1,18885:21831193,11621418:151824 -k1,18885:23441194,11621418:151825 -k1,18885:25059715,11621418:151825 -k1,18885:25677501,11621418:151825 -k1,18885:27564719,11621418:151825 -k1,18885:29921175,11621418:151825 -k1,18885:31064560,11621418:151825 -k1,18886:32583029,11621418:0 -) -(1,18886:6630773,12486498:25952256,513147,134348 -k1,18885:8098303,12486498:158776 -k1,18885:9955117,12486498:158776 -k1,18885:13790462,12486498:158775 -k1,18885:14635400,12486498:158776 -k1,18885:19840448,12486498:158776 -k1,18885:22228103,12486498:158776 -k1,18885:23578324,12486498:158776 -k1,18885:24388528,12486498:158776 -k1,18885:26940022,12486498:158775 -k1,18885:29646182,12486498:158776 -k1,18885:30566486,12486498:158776 -k1,18885:32583029,12486498:0 -) -(1,18886:6630773,13351578:25952256,505283,7863 -k1,18886:32583028,13351578:22834708 -g1,18886:32583028,13351578 -) -v1,18888:6630773,14036433:0,393216,0 -(1,18895:6630773,16431681:25952256,2788464,196608 -g1,18895:6630773,16431681 -g1,18895:6630773,16431681 -g1,18895:6434165,16431681 -(1,18895:6434165,16431681:0,2788464,196608 -r1,18936:32779637,16431681:26345472,2985072,196608 -k1,18895:6434165,16431681:-26345472 -) -(1,18895:6434165,16431681:26345472,2788464,196608 -[1,18895:6630773,16431681:25952256,2591856,0 -(1,18890:6630773,14264264:25952256,424439,112852 -(1,18889:6630773,14264264:0,0,0 -g1,18889:6630773,14264264 -g1,18889:6630773,14264264 -g1,18889:6303093,14264264 -(1,18889:6303093,14264264:0,0,0 -) -g1,18889:6630773,14264264 -) -k1,18890:6630773,14264264:0 -g1,18890:10614221,14264264 -g1,18890:11278129,14264264 -k1,18890:11278129,14264264:0 -h1,18890:13601807,14264264:0,0,0 -k1,18890:32583029,14264264:18981222 -g1,18890:32583029,14264264 -) -(1,18891:6630773,14949119:25952256,424439,112852 -h1,18891:6630773,14949119:0,0,0 -g1,18891:6962727,14949119 -g1,18891:7294681,14949119 -g1,18891:7626635,14949119 -g1,18891:7958589,14949119 -g1,18891:8290543,14949119 -g1,18891:8622497,14949119 -g1,18891:8954451,14949119 -g1,18891:11610083,14949119 -g1,18891:12273991,14949119 -g1,18891:14265715,14949119 -g1,18891:14929623,14949119 -g1,18891:16921347,14949119 -g1,18891:17585255,14949119 -g1,18891:18249163,14949119 -k1,18891:18249163,14949119:0 -h1,18891:19576979,14949119:0,0,0 -k1,18891:32583029,14949119:13006050 -g1,18891:32583029,14949119 -) -(1,18892:6630773,15633974:25952256,431045,106246 -h1,18892:6630773,15633974:0,0,0 -g1,18892:6962727,15633974 -g1,18892:7294681,15633974 -g1,18892:7626635,15633974 -g1,18892:7958589,15633974 -g1,18892:8290543,15633974 -g1,18892:8622497,15633974 -g1,18892:8954451,15633974 -g1,18892:10946175,15633974 -g1,18892:11610083,15633974 -g1,18892:15925485,15633974 -g1,18892:18249163,15633974 -g1,18892:18913071,15633974 -g1,18892:23560427,15633974 -h1,18892:23892381,15633974:0,0,0 -k1,18892:32583029,15633974:8690648 -g1,18892:32583029,15633974 -) -(1,18893:6630773,16318829:25952256,424439,112852 -h1,18893:6630773,16318829:0,0,0 -g1,18893:6962727,16318829 -g1,18893:7294681,16318829 -k1,18893:7294681,16318829:0 -h1,18893:11278128,16318829:0,0,0 -k1,18893:32583028,16318829:21304900 -g1,18893:32583028,16318829 -) -] -) -g1,18895:32583029,16431681 -g1,18895:6630773,16431681 -g1,18895:6630773,16431681 -g1,18895:32583029,16431681 -g1,18895:32583029,16431681 -) -h1,18895:6630773,16628289:0,0,0 -(1,18900:6630773,17493369:25952256,513147,126483 -h1,18899:6630773,17493369:983040,0,0 -k1,18899:9070191,17493369:259691 -k1,18899:10714002,17493369:259691 -k1,18899:13965412,17493369:259691 -k1,18899:14884395,17493369:259691 -k1,18899:16163171,17493369:259691 -k1,18899:17515347,17493369:259691 -k1,18899:18442194,17493369:259691 -(1,18899:18442194,17493369:0,452978,122846 -r1,18936:22669290,17493369:4227096,575824,122846 -k1,18899:18442194,17493369:-4227096 -) -(1,18899:18442194,17493369:4227096,452978,122846 -k1,18899:18442194,17493369:3277 -h1,18899:22666013,17493369:0,411205,112570 -) -k1,18899:22928981,17493369:259691 -k1,18899:24180232,17493369:259691 -k1,18899:25387574,17493369:259691 -k1,18899:26740687,17493369:266526 -k1,18899:28817036,17493369:259691 -k1,18899:29762889,17493369:259691 -(1,18899:29762889,17493369:0,452978,115847 -r1,18936:31176290,17493369:1413401,568825,115847 -k1,18899:29762889,17493369:-1413401 -) -(1,18899:29762889,17493369:1413401,452978,115847 -k1,18899:29762889,17493369:3277 -h1,18899:31173013,17493369:0,411205,112570 -) -k1,18899:31435981,17493369:259691 -k1,18899:32227169,17493369:259691 -k1,18900:32583029,17493369:0 -) -(1,18900:6630773,18358449:25952256,505283,126483 -(1,18899:6630773,18358449:0,452978,115847 -r1,18936:9099310,18358449:2468537,568825,115847 -k1,18899:6630773,18358449:-2468537 -) -(1,18899:6630773,18358449:2468537,452978,115847 -k1,18899:6630773,18358449:3277 -h1,18899:9096033,18358449:0,411205,112570 -) -k1,18899:9313664,18358449:214354 -k1,18899:12039359,18358449:214355 -k1,18899:13325882,18358449:214354 -(1,18899:13325882,18358449:0,459977,115847 -r1,18936:17201266,18358449:3875384,575824,115847 -k1,18899:13325882,18358449:-3875384 -) -(1,18899:13325882,18358449:3875384,459977,115847 -k1,18899:13325882,18358449:3277 -h1,18899:17197989,18358449:0,411205,112570 -) -k1,18899:17415620,18358449:214354 -k1,18899:18161471,18358449:214354 -k1,18899:21075254,18358449:214355 -k1,18899:22444352,18358449:214354 -k1,18899:24266304,18358449:214354 -k1,18899:25472218,18358449:214354 -k1,18899:27552383,18358449:214355 -k1,18899:28418165,18358449:214354 -k1,18899:30107734,18358449:214354 -k1,18900:32583029,18358449:0 -) -(1,18900:6630773,19223529:25952256,513147,134348 -k1,18899:8303000,19223529:261237 -k1,18899:12809658,19223529:261236 -k1,18899:14262340,19223529:261237 -k1,18899:15680286,19223529:261236 -k1,18899:17179498,19223529:261237 -k1,18899:18100026,19223529:261236 -k1,18899:20719904,19223529:261237 -k1,18899:22677867,19223529:261236 -k1,18899:24957613,19223529:261237 -k1,18899:27261606,19223529:261236 -k1,18899:28054340,19223529:261237 -k1,18899:28967004,19223529:261236 -k1,18899:30943974,19223529:261237 -k1,18899:32583029,19223529:0 -) -(1,18900:6630773,20088609:25952256,513147,134348 -k1,18899:8733100,20088609:214235 -k1,18899:12677644,20088609:214235 -k1,18899:13653406,20088609:214234 -k1,18899:16049335,20088609:214235 -k1,18899:16619430,20088609:214235 -k1,18899:19591420,20088609:214235 -k1,18899:21485997,20088609:214234 -k1,18899:24052319,20088609:214235 -k1,18899:25709001,20088609:214235 -k1,18899:27079946,20088609:214235 -k1,18899:28241831,20088609:214234 -k1,18899:29475151,20088609:214235 -(1,18899:29475151,20088609:0,452978,115847 -r1,18936:31240264,20088609:1765113,568825,115847 -k1,18899:29475151,20088609:-1765113 -) -(1,18899:29475151,20088609:1765113,452978,115847 -k1,18899:29475151,20088609:3277 -h1,18899:31236987,20088609:0,411205,112570 -) -k1,18899:31454499,20088609:214235 -k1,18900:32583029,20088609:0 -) -(1,18900:6630773,20953689:25952256,505283,7863 -k1,18900:32583029,20953689:24172954 -g1,18900:32583029,20953689 -) -v1,18902:6630773,21638544:0,393216,0 -(1,18908:6630773,23348937:25952256,2103609,196608 -g1,18908:6630773,23348937 -g1,18908:6630773,23348937 -g1,18908:6434165,23348937 -(1,18908:6434165,23348937:0,2103609,196608 -r1,18936:32779637,23348937:26345472,2300217,196608 -k1,18908:6434165,23348937:-26345472 -) -(1,18908:6434165,23348937:26345472,2103609,196608 -[1,18908:6630773,23348937:25952256,1907001,0 -(1,18904:6630773,21866375:25952256,424439,112852 -(1,18903:6630773,21866375:0,0,0 -g1,18903:6630773,21866375 -g1,18903:6630773,21866375 -g1,18903:6303093,21866375 -(1,18903:6303093,21866375:0,0,0 -) -g1,18903:6630773,21866375 -) -k1,18904:6630773,21866375:0 -g1,18904:10614221,21866375 -g1,18904:11278129,21866375 -k1,18904:11278129,21866375:0 -h1,18904:13601807,21866375:0,0,0 -k1,18904:32583029,21866375:18981222 -g1,18904:32583029,21866375 -) -(1,18905:6630773,22551230:25952256,431045,112852 -h1,18905:6630773,22551230:0,0,0 -g1,18905:6962727,22551230 -g1,18905:7294681,22551230 -g1,18905:7626635,22551230 -g1,18905:7958589,22551230 -g1,18905:8290543,22551230 -g1,18905:8622497,22551230 -g1,18905:8954451,22551230 -g1,18905:11610083,22551230 -g1,18905:12273991,22551230 -g1,18905:14265715,22551230 -g1,18905:14929623,22551230 -g1,18905:19245025,22551230 -g1,18905:19908933,22551230 -g1,18905:20572841,22551230 -g1,18905:22564565,22551230 -h1,18905:22896519,22551230:0,0,0 -k1,18905:32583029,22551230:9686510 -g1,18905:32583029,22551230 -) -(1,18906:6630773,23236085:25952256,424439,112852 -h1,18906:6630773,23236085:0,0,0 -g1,18906:6962727,23236085 -g1,18906:7294681,23236085 -g1,18906:12937898,23236085 -g1,18906:13601806,23236085 -h1,18906:14929622,23236085:0,0,0 -k1,18906:32583030,23236085:17653408 -g1,18906:32583030,23236085 -) -] -) -g1,18908:32583029,23348937 -g1,18908:6630773,23348937 -g1,18908:6630773,23348937 -g1,18908:32583029,23348937 -g1,18908:32583029,23348937 -) -h1,18908:6630773,23545545:0,0,0 -(1,18911:6630773,32694747:25952256,9083666,0 -k1,18911:10523651,32694747:3892878 -h1,18910:10523651,32694747:0,0,0 -(1,18910:10523651,32694747:18166500,9083666,0 -(1,18910:10523651,32694747:18167376,9083688,0 -(1,18910:10523651,32694747:18167376,9083688,0 -(1,18910:10523651,32694747:0,9083688,0 -(1,18910:10523651,32694747:0,14208860,0 -(1,18910:10523651,32694747:28417720,14208860,0 -) -k1,18910:10523651,32694747:-28417720 -) -) -g1,18910:28691027,32694747 -) -) -) -g1,18911:28690151,32694747 -k1,18911:32583029,32694747:3892878 -) -(1,18918:6630773,33559827:25952256,513147,115847 -h1,18917:6630773,33559827:983040,0,0 -k1,18917:10589231,33559827:185550 -(1,18917:10589231,33559827:0,452978,115847 -r1,18936:17278309,33559827:6689078,568825,115847 -k1,18917:10589231,33559827:-6689078 -) -(1,18917:10589231,33559827:6689078,452978,115847 -k1,18917:10589231,33559827:3277 -h1,18917:17275032,33559827:0,411205,112570 -) -k1,18917:17637530,33559827:185551 -k1,18917:19708551,33559827:185550 -k1,18917:20425599,33559827:185551 -k1,18917:21630234,33559827:185550 -k1,18917:24255034,33559827:185550 -k1,18917:25933495,33559827:185551 -k1,18917:27185316,33559827:185550 -k1,18917:28824456,33559827:185551 -k1,18917:30029091,33559827:185550 -k1,18918:32583029,33559827:0 -) -(1,18918:6630773,34424907:25952256,513147,126483 -k1,18917:8096208,34424907:175031 -k1,18917:8954125,34424907:175032 -k1,18917:11743387,34424907:175031 -k1,18917:12577711,34424907:175032 -k1,18917:16998164,34424907:175031 -k1,18917:17859358,34424907:175032 -k1,18917:20109914,34424907:175031 -k1,18917:20900984,34424907:175032 -k1,18917:21842131,34424907:175031 -k1,18917:25008882,34424907:175032 -k1,18917:27212908,34424907:175031 -k1,18917:28216970,34424907:175032 -k1,18917:30107734,34424907:175031 -k1,18918:32583029,34424907:0 -) -(1,18918:6630773,35289987:25952256,513147,134348 -k1,18917:8243024,35289987:201261 -k1,18917:12516037,35289987:201261 -k1,18917:14933726,35289987:201261 -k1,18917:17462170,35289987:201261 -k1,18917:18322723,35289987:201261 -k1,18917:20882624,35289987:201260 -k1,18917:22102970,35289987:201261 -k1,18917:24322740,35289987:201261 -k1,18917:29753119,35289987:201261 -k1,18917:30640542,35289987:201261 -k1,18917:32583029,35289987:0 -) -(1,18918:6630773,36155067:25952256,505283,134348 -k1,18917:7312852,36155067:223982 -k1,18917:8068331,36155067:223982 -k1,18917:10922272,36155067:223981 -k1,18917:14206785,36155067:223982 -k1,18917:17045654,36155067:223982 -k1,18917:18908691,36155067:223982 -k1,18917:20877240,36155067:223981 -k1,18917:22120307,36155067:223982 -k1,18917:23596682,36155067:223982 -k1,18917:26406059,36155067:223982 -k1,18917:27281468,36155067:223981 -k1,18917:28524535,36155067:223982 -k1,18917:31274275,36155067:223982 -k1,18918:32583029,36155067:0 -) -(1,18918:6630773,37020147:25952256,505283,134348 -k1,18917:8284368,37020147:171171 -$1,18917:8284368,37020147 -$1,18917:8787029,37020147 -k1,18917:8958201,37020147:171172 -k1,18917:9745410,37020147:171171 -k1,18917:11119822,37020147:171171 -k1,18917:12831745,37020147:171172 -k1,18917:14383760,37020147:171171 -k1,18917:15086428,37020147:171171 -k1,18917:17125376,37020147:171172 -k1,18917:18997206,37020147:171171 -k1,18917:20359823,37020147:171172 -k1,18917:21635276,37020147:171171 -k1,18917:22554213,37020147:171171 -k1,18917:24690810,37020147:171172 -k1,18917:26597374,37020147:171171 -(1,18917:26597374,37020147:0,452978,122846 -r1,18936:32583029,37020147:5985655,575824,122846 -k1,18917:26597374,37020147:-5985655 -) -(1,18917:26597374,37020147:5985655,452978,122846 -k1,18917:26597374,37020147:3277 -h1,18917:32579752,37020147:0,411205,112570 -) -k1,18917:32583029,37020147:0 -) -(1,18918:6630773,37885227:25952256,513147,134348 -k1,18917:7574658,37885227:257723 -k1,18917:10904708,37885227:257722 -k1,18917:11813859,37885227:257723 -k1,18917:14200190,37885227:257722 -k1,18917:17738645,37885227:257723 -(1,18917:17738645,37885227:0,452978,115847 -r1,18936:20558894,37885227:2820249,568825,115847 -k1,18917:17738645,37885227:-2820249 -) -(1,18917:17738645,37885227:2820249,452978,115847 -k1,18917:17738645,37885227:3277 -h1,18917:20555617,37885227:0,411205,112570 -) -k1,18917:20816616,37885227:257722 -k1,18917:21741495,37885227:257723 -(1,18917:21741495,37885227:0,414482,122846 -r1,18936:23506608,37885227:1765113,537328,122846 -k1,18917:21741495,37885227:-1765113 -) -(1,18917:21741495,37885227:1765113,414482,122846 -k1,18917:21741495,37885227:3277 -h1,18917:23503331,37885227:0,411205,112570 -) -k1,18917:23938000,37885227:257722 -k1,18917:25392410,37885227:257723 -k1,18917:28107077,37885227:257722 -k1,18917:29024092,37885227:257723 -k1,18917:30859267,37885227:257723 -k1,18917:31648486,37885227:257722 -k1,18917:32583029,37885227:0 -) -(1,18918:6630773,38750307:25952256,513147,134348 -k1,18917:7632346,38750307:240045 -k1,18917:10492520,38750307:240045 -k1,18917:14135194,38750307:240045 -k1,18917:16580526,38750307:240045 -k1,18917:17471999,38750307:240045 -(1,18917:17471999,38750307:0,452978,115847 -r1,18936:19237112,38750307:1765113,568825,115847 -k1,18917:17471999,38750307:-1765113 -) -(1,18917:17471999,38750307:1765113,452978,115847 -k1,18917:17471999,38750307:3277 -h1,18917:19233835,38750307:0,411205,112570 -) -k1,18917:19477157,38750307:240045 -k1,18917:21927075,38750307:240044 -(1,18917:21927075,38750307:0,452978,122846 -r1,18936:24043900,38750307:2116825,575824,122846 -k1,18917:21927075,38750307:-2116825 -) -(1,18917:21927075,38750307:2116825,452978,122846 -k1,18917:21927075,38750307:3277 -h1,18917:24040623,38750307:0,411205,112570 -) -k1,18917:24457615,38750307:240045 -k1,18917:26392421,38750307:240045 -k1,18917:27318628,38750307:240045 -k1,18917:27914533,38750307:240045 -k1,18917:30664607,38750307:240045 -k1,18917:31563944,38750307:240045 -k1,18917:32583029,38750307:0 -) -(1,18918:6630773,39615387:25952256,513147,134348 -g1,18917:9490764,39615387 -g1,18917:12325196,39615387 -g1,18917:15236305,39615387 -g1,18917:17329524,39615387 -g1,18917:19321163,39615387 -g1,18917:20136430,39615387 -g1,18917:21354744,39615387 -k1,18918:32583029,39615387:9898560 -g1,18918:32583029,39615387 -) -v1,18920:6630773,40300242:0,393216,0 -(1,18926:6630773,42010635:25952256,2103609,196608 -g1,18926:6630773,42010635 -g1,18926:6630773,42010635 -g1,18926:6434165,42010635 -(1,18926:6434165,42010635:0,2103609,196608 -r1,18936:32779637,42010635:26345472,2300217,196608 -k1,18926:6434165,42010635:-26345472 -) -(1,18926:6434165,42010635:26345472,2103609,196608 -[1,18926:6630773,42010635:25952256,1907001,0 -(1,18922:6630773,40528073:25952256,424439,112852 -(1,18921:6630773,40528073:0,0,0 -g1,18921:6630773,40528073 -g1,18921:6630773,40528073 -g1,18921:6303093,40528073 -(1,18921:6303093,40528073:0,0,0 -) -g1,18921:6630773,40528073 -) -k1,18922:6630773,40528073:0 -g1,18922:10614221,40528073 -g1,18922:11278129,40528073 -k1,18922:11278129,40528073:0 -h1,18922:13601807,40528073:0,0,0 -k1,18922:32583029,40528073:18981222 -g1,18922:32583029,40528073 -) -(1,18923:6630773,41212928:25952256,431045,112852 -h1,18923:6630773,41212928:0,0,0 -g1,18923:6962727,41212928 -g1,18923:7294681,41212928 -g1,18923:7626635,41212928 -g1,18923:7958589,41212928 -g1,18923:8290543,41212928 -g1,18923:8622497,41212928 -g1,18923:8954451,41212928 -g1,18923:11610083,41212928 -g1,18923:12273991,41212928 -g1,18923:14265715,41212928 -g1,18923:14929623,41212928 -g1,18923:19245025,41212928 -g1,18923:19908933,41212928 -g1,18923:20572841,41212928 -g1,18923:22564565,41212928 -h1,18923:22896519,41212928:0,0,0 -k1,18923:32583029,41212928:9686510 -g1,18923:32583029,41212928 -) -(1,18924:6630773,41897783:25952256,424439,112852 -h1,18924:6630773,41897783:0,0,0 -g1,18924:6962727,41897783 -g1,18924:7294681,41897783 -g1,18924:13933759,41897783 -g1,18924:14597667,41897783 -g1,18924:21900654,41897783 -g1,18924:22564562,41897783 -g1,18924:24556286,41897783 -g1,18924:26548010,41897783 -g1,18924:27211918,41897783 -h1,18924:28207780,41897783:0,0,0 -k1,18924:32583029,41897783:4375249 -g1,18924:32583029,41897783 -) -] -) -g1,18926:32583029,42010635 -g1,18926:6630773,42010635 -g1,18926:6630773,42010635 -g1,18926:32583029,42010635 -g1,18926:32583029,42010635 -) -h1,18926:6630773,42207243:0,0,0 -] -(1,18936:32583029,45706769:0,0,0 -g1,18936:32583029,45706769 -) -) -] -(1,18936:6630773,47279633:25952256,0,0 -h1,18936:6630773,47279633:25952256,0,0 -) -] -(1,18936:4262630,4025873:0,0,0 -[1,18936:-473656,4025873:0,0,0 -(1,18936:-473656,-710413:0,0,0 -(1,18936:-473656,-710413:0,0,0 -g1,18936:-473656,-710413 -) -g1,18936:-473656,-710413 +) +k1,18934:3078556,49800853:-34777008 +) +] +g1,18934:6630773,4812305 +g1,18934:6630773,4812305 +g1,18934:10347975,4812305 +k1,18934:31387651,4812305:21039676 +) +) +] +[1,18934:6630773,45706769:25952256,40108032,0 +(1,18934:6630773,45706769:25952256,40108032,0 +(1,18934:6630773,45706769:0,0,0 +g1,18934:6630773,45706769 +) +[1,18934:6630773,45706769:25952256,40108032,0 +(1,18873:6630773,6254097:25952256,505283,126483 +h1,18872:6630773,6254097:983040,0,0 +k1,18872:8298243,6254097:214537 +k1,18872:9044276,6254097:214536 +k1,18872:10544629,6254097:214537 +k1,18872:13389126,6254097:214537 +k1,18872:14255091,6254097:214537 +k1,18872:15562112,6254097:214536 +k1,18872:19081630,6254097:214537 +k1,18872:19982329,6254097:214537 +k1,18872:22569924,6254097:214536 +k1,18872:23981148,6254097:214537 +k1,18872:27170364,6254097:214537 +k1,18872:27916398,6254097:214537 +k1,18872:30540037,6254097:214536 +k1,18872:31563944,6254097:214537 +k1,18872:32583029,6254097:0 +) +(1,18873:6630773,7119177:25952256,513147,126483 +k1,18872:9430947,7119177:185943 +k1,18872:10276183,7119177:185944 +k1,18872:11481211,7119177:185943 +k1,18872:15582276,7119177:185944 +k1,18872:16586108,7119177:185943 +k1,18872:17791137,7119177:185944 +k1,18872:20793162,7119177:185943 +k1,18872:22492332,7119177:185944 +k1,18872:23364437,7119177:185943 +k1,18872:26192137,7119177:185944 +k1,18872:27369640,7119177:185943 +k1,18872:32583029,7119177:0 +) +(1,18873:6630773,7984257:25952256,513147,134348 +g1,18872:7849087,7984257 +g1,18872:10313896,7984257 +g1,18872:12271456,7984257 +g1,18872:13002182,7984257 +g1,18872:15976861,7984257 +g1,18872:16937618,7984257 +g1,18872:19564301,7984257 +(1,18872:19564301,7984257:0,452978,122846 +r1,18934:24494821,7984257:4930520,575824,122846 +k1,18872:19564301,7984257:-4930520 +) +(1,18872:19564301,7984257:4930520,452978,122846 +g1,18872:21677849,7984257 +g1,18872:22381273,7984257 +h1,18872:24491544,7984257:0,411205,112570 +) +g1,18872:24694050,7984257 +g1,18872:26377669,7984257 +g1,18872:27643169,7984257 +k1,18873:32583029,7984257:2483571 +g1,18873:32583029,7984257 +) +v1,18875:6630773,8669112:0,393216,0 +(1,18880:6630773,9694650:25952256,1418754,196608 +g1,18880:6630773,9694650 +g1,18880:6630773,9694650 +g1,18880:6434165,9694650 +(1,18880:6434165,9694650:0,1418754,196608 +r1,18934:32779637,9694650:26345472,1615362,196608 +k1,18880:6434165,9694650:-26345472 +) +(1,18880:6434165,9694650:26345472,1418754,196608 +[1,18880:6630773,9694650:25952256,1222146,0 +(1,18877:6630773,8896943:25952256,424439,106246 +(1,18876:6630773,8896943:0,0,0 +g1,18876:6630773,8896943 +g1,18876:6630773,8896943 +g1,18876:6303093,8896943 +(1,18876:6303093,8896943:0,0,0 +) +g1,18876:6630773,8896943 +) +g1,18877:8954451,8896943 +h1,18877:9286405,8896943:0,0,0 +k1,18877:32583029,8896943:23296624 +g1,18877:32583029,8896943 +) +(1,18878:6630773,9581798:25952256,424439,112852 +h1,18878:6630773,9581798:0,0,0 +g1,18878:6962727,9581798 +g1,18878:15593530,9581798 +g1,18878:16257438,9581798 +g1,18878:18581116,9581798 +g1,18878:20240886,9581798 +g1,18878:22232610,9581798 +g1,18878:24224334,9581798 +g1,18878:24888242,9581798 +h1,18878:27211920,9581798:0,0,0 +k1,18878:32583029,9581798:5371109 +g1,18878:32583029,9581798 +) +] +) +g1,18880:32583029,9694650 +g1,18880:6630773,9694650 +g1,18880:6630773,9694650 +g1,18880:32583029,9694650 +g1,18880:32583029,9694650 +) +h1,18880:6630773,9891258:0,0,0 +(1,18884:6630773,10756338:25952256,513147,134348 +h1,18883:6630773,10756338:983040,0,0 +k1,18883:8348998,10756338:247597 +k1,18883:11107983,10756338:247645 +k1,18883:12923249,10756338:247645 +(1,18883:12923249,10756338:0,452978,115847 +r1,18934:14336650,10756338:1413401,568825,115847 +k1,18883:12923249,10756338:-1413401 +) +(1,18883:12923249,10756338:1413401,452978,115847 +k1,18883:12923249,10756338:3277 +h1,18883:14333373,10756338:0,411205,112570 +) +k1,18883:14584295,10756338:247645 +k1,18883:15936222,10756338:247645 +k1,18883:16931633,10756338:247645 +k1,18883:19764673,10756338:247645 +k1,18883:20663746,10756338:247645 +k1,18883:22561589,10756338:247646 +k1,18883:24251681,10756338:247645 +k1,18883:25656036,10756338:247645 +k1,18883:28921614,10756338:247645 +k1,18883:31841162,10756338:247645 +k1,18884:32583029,10756338:0 +) +(1,18884:6630773,11621418:25952256,513147,134348 +k1,18883:9481371,11621418:151825 +k1,18883:12981430,11621418:151825 +k1,18883:14514099,11621418:151825 +k1,18883:16711958,11621418:151825 +k1,18883:19493743,11621418:151825 +k1,18883:21831193,11621418:151824 +k1,18883:23441194,11621418:151825 +k1,18883:25059715,11621418:151825 +k1,18883:25677501,11621418:151825 +k1,18883:27564719,11621418:151825 +k1,18883:29921175,11621418:151825 +k1,18883:31064560,11621418:151825 +k1,18884:32583029,11621418:0 +) +(1,18884:6630773,12486498:25952256,513147,134348 +k1,18883:8098303,12486498:158776 +k1,18883:9955117,12486498:158776 +k1,18883:13790462,12486498:158775 +k1,18883:14635400,12486498:158776 +k1,18883:19840448,12486498:158776 +k1,18883:22228103,12486498:158776 +k1,18883:23578324,12486498:158776 +k1,18883:24388528,12486498:158776 +k1,18883:26940022,12486498:158775 +k1,18883:29646182,12486498:158776 +k1,18883:30566486,12486498:158776 +k1,18883:32583029,12486498:0 +) +(1,18884:6630773,13351578:25952256,505283,7863 +k1,18884:32583028,13351578:22834708 +g1,18884:32583028,13351578 +) +v1,18886:6630773,14036433:0,393216,0 +(1,18893:6630773,16431681:25952256,2788464,196608 +g1,18893:6630773,16431681 +g1,18893:6630773,16431681 +g1,18893:6434165,16431681 +(1,18893:6434165,16431681:0,2788464,196608 +r1,18934:32779637,16431681:26345472,2985072,196608 +k1,18893:6434165,16431681:-26345472 +) +(1,18893:6434165,16431681:26345472,2788464,196608 +[1,18893:6630773,16431681:25952256,2591856,0 +(1,18888:6630773,14264264:25952256,424439,112852 +(1,18887:6630773,14264264:0,0,0 +g1,18887:6630773,14264264 +g1,18887:6630773,14264264 +g1,18887:6303093,14264264 +(1,18887:6303093,14264264:0,0,0 +) +g1,18887:6630773,14264264 +) +k1,18888:6630773,14264264:0 +g1,18888:10614221,14264264 +g1,18888:11278129,14264264 +k1,18888:11278129,14264264:0 +h1,18888:13601807,14264264:0,0,0 +k1,18888:32583029,14264264:18981222 +g1,18888:32583029,14264264 +) +(1,18889:6630773,14949119:25952256,424439,112852 +h1,18889:6630773,14949119:0,0,0 +g1,18889:6962727,14949119 +g1,18889:7294681,14949119 +g1,18889:7626635,14949119 +g1,18889:7958589,14949119 +g1,18889:8290543,14949119 +g1,18889:8622497,14949119 +g1,18889:8954451,14949119 +g1,18889:11610083,14949119 +g1,18889:12273991,14949119 +g1,18889:14265715,14949119 +g1,18889:14929623,14949119 +g1,18889:16921347,14949119 +g1,18889:17585255,14949119 +g1,18889:18249163,14949119 +k1,18889:18249163,14949119:0 +h1,18889:19576979,14949119:0,0,0 +k1,18889:32583029,14949119:13006050 +g1,18889:32583029,14949119 +) +(1,18890:6630773,15633974:25952256,431045,106246 +h1,18890:6630773,15633974:0,0,0 +g1,18890:6962727,15633974 +g1,18890:7294681,15633974 +g1,18890:7626635,15633974 +g1,18890:7958589,15633974 +g1,18890:8290543,15633974 +g1,18890:8622497,15633974 +g1,18890:8954451,15633974 +g1,18890:10946175,15633974 +g1,18890:11610083,15633974 +g1,18890:15925485,15633974 +g1,18890:18249163,15633974 +g1,18890:18913071,15633974 +g1,18890:23560427,15633974 +h1,18890:23892381,15633974:0,0,0 +k1,18890:32583029,15633974:8690648 +g1,18890:32583029,15633974 +) +(1,18891:6630773,16318829:25952256,424439,112852 +h1,18891:6630773,16318829:0,0,0 +g1,18891:6962727,16318829 +g1,18891:7294681,16318829 +k1,18891:7294681,16318829:0 +h1,18891:11278128,16318829:0,0,0 +k1,18891:32583028,16318829:21304900 +g1,18891:32583028,16318829 +) +] +) +g1,18893:32583029,16431681 +g1,18893:6630773,16431681 +g1,18893:6630773,16431681 +g1,18893:32583029,16431681 +g1,18893:32583029,16431681 +) +h1,18893:6630773,16628289:0,0,0 +(1,18898:6630773,17493369:25952256,513147,126483 +h1,18897:6630773,17493369:983040,0,0 +k1,18897:9070191,17493369:259691 +k1,18897:10714002,17493369:259691 +k1,18897:13965412,17493369:259691 +k1,18897:14884395,17493369:259691 +k1,18897:16163171,17493369:259691 +k1,18897:17515347,17493369:259691 +k1,18897:18442194,17493369:259691 +(1,18897:18442194,17493369:0,452978,122846 +r1,18934:22669290,17493369:4227096,575824,122846 +k1,18897:18442194,17493369:-4227096 +) +(1,18897:18442194,17493369:4227096,452978,122846 +k1,18897:18442194,17493369:3277 +h1,18897:22666013,17493369:0,411205,112570 +) +k1,18897:22928981,17493369:259691 +k1,18897:24180232,17493369:259691 +k1,18897:25387574,17493369:259691 +k1,18897:26740687,17493369:266526 +k1,18897:28817036,17493369:259691 +k1,18897:29762889,17493369:259691 +(1,18897:29762889,17493369:0,452978,115847 +r1,18934:31176290,17493369:1413401,568825,115847 +k1,18897:29762889,17493369:-1413401 +) +(1,18897:29762889,17493369:1413401,452978,115847 +k1,18897:29762889,17493369:3277 +h1,18897:31173013,17493369:0,411205,112570 +) +k1,18897:31435981,17493369:259691 +k1,18897:32227169,17493369:259691 +k1,18898:32583029,17493369:0 +) +(1,18898:6630773,18358449:25952256,505283,126483 +(1,18897:6630773,18358449:0,452978,115847 +r1,18934:9099310,18358449:2468537,568825,115847 +k1,18897:6630773,18358449:-2468537 +) +(1,18897:6630773,18358449:2468537,452978,115847 +k1,18897:6630773,18358449:3277 +h1,18897:9096033,18358449:0,411205,112570 +) +k1,18897:9313664,18358449:214354 +k1,18897:12039359,18358449:214355 +k1,18897:13325882,18358449:214354 +(1,18897:13325882,18358449:0,459977,115847 +r1,18934:17201266,18358449:3875384,575824,115847 +k1,18897:13325882,18358449:-3875384 +) +(1,18897:13325882,18358449:3875384,459977,115847 +k1,18897:13325882,18358449:3277 +h1,18897:17197989,18358449:0,411205,112570 +) +k1,18897:17415620,18358449:214354 +k1,18897:18161471,18358449:214354 +k1,18897:21075254,18358449:214355 +k1,18897:22444352,18358449:214354 +k1,18897:24266304,18358449:214354 +k1,18897:25472218,18358449:214354 +k1,18897:27552383,18358449:214355 +k1,18897:28418165,18358449:214354 +k1,18897:30107734,18358449:214354 +k1,18898:32583029,18358449:0 +) +(1,18898:6630773,19223529:25952256,513147,134348 +k1,18897:8303000,19223529:261237 +k1,18897:12809658,19223529:261236 +k1,18897:14262340,19223529:261237 +k1,18897:15680286,19223529:261236 +k1,18897:17179498,19223529:261237 +k1,18897:18100026,19223529:261236 +k1,18897:20719904,19223529:261237 +k1,18897:22677867,19223529:261236 +k1,18897:24957613,19223529:261237 +k1,18897:27261606,19223529:261236 +k1,18897:28054340,19223529:261237 +k1,18897:28967004,19223529:261236 +k1,18897:30943974,19223529:261237 +k1,18897:32583029,19223529:0 +) +(1,18898:6630773,20088609:25952256,513147,134348 +k1,18897:8733100,20088609:214235 +k1,18897:12677644,20088609:214235 +k1,18897:13653406,20088609:214234 +k1,18897:16049335,20088609:214235 +k1,18897:16619430,20088609:214235 +k1,18897:19591420,20088609:214235 +k1,18897:21485997,20088609:214234 +k1,18897:24052319,20088609:214235 +k1,18897:25709001,20088609:214235 +k1,18897:27079946,20088609:214235 +k1,18897:28241831,20088609:214234 +k1,18897:29475151,20088609:214235 +(1,18897:29475151,20088609:0,452978,115847 +r1,18934:31240264,20088609:1765113,568825,115847 +k1,18897:29475151,20088609:-1765113 +) +(1,18897:29475151,20088609:1765113,452978,115847 +k1,18897:29475151,20088609:3277 +h1,18897:31236987,20088609:0,411205,112570 +) +k1,18897:31454499,20088609:214235 +k1,18898:32583029,20088609:0 +) +(1,18898:6630773,20953689:25952256,505283,7863 +k1,18898:32583029,20953689:24172954 +g1,18898:32583029,20953689 +) +v1,18900:6630773,21638544:0,393216,0 +(1,18906:6630773,23348937:25952256,2103609,196608 +g1,18906:6630773,23348937 +g1,18906:6630773,23348937 +g1,18906:6434165,23348937 +(1,18906:6434165,23348937:0,2103609,196608 +r1,18934:32779637,23348937:26345472,2300217,196608 +k1,18906:6434165,23348937:-26345472 +) +(1,18906:6434165,23348937:26345472,2103609,196608 +[1,18906:6630773,23348937:25952256,1907001,0 +(1,18902:6630773,21866375:25952256,424439,112852 +(1,18901:6630773,21866375:0,0,0 +g1,18901:6630773,21866375 +g1,18901:6630773,21866375 +g1,18901:6303093,21866375 +(1,18901:6303093,21866375:0,0,0 +) +g1,18901:6630773,21866375 +) +k1,18902:6630773,21866375:0 +g1,18902:10614221,21866375 +g1,18902:11278129,21866375 +k1,18902:11278129,21866375:0 +h1,18902:13601807,21866375:0,0,0 +k1,18902:32583029,21866375:18981222 +g1,18902:32583029,21866375 +) +(1,18903:6630773,22551230:25952256,431045,112852 +h1,18903:6630773,22551230:0,0,0 +g1,18903:6962727,22551230 +g1,18903:7294681,22551230 +g1,18903:7626635,22551230 +g1,18903:7958589,22551230 +g1,18903:8290543,22551230 +g1,18903:8622497,22551230 +g1,18903:8954451,22551230 +g1,18903:11610083,22551230 +g1,18903:12273991,22551230 +g1,18903:14265715,22551230 +g1,18903:14929623,22551230 +g1,18903:19245025,22551230 +g1,18903:19908933,22551230 +g1,18903:20572841,22551230 +g1,18903:22564565,22551230 +h1,18903:22896519,22551230:0,0,0 +k1,18903:32583029,22551230:9686510 +g1,18903:32583029,22551230 +) +(1,18904:6630773,23236085:25952256,424439,112852 +h1,18904:6630773,23236085:0,0,0 +g1,18904:6962727,23236085 +g1,18904:7294681,23236085 +g1,18904:12937898,23236085 +g1,18904:13601806,23236085 +h1,18904:14929622,23236085:0,0,0 +k1,18904:32583030,23236085:17653408 +g1,18904:32583030,23236085 +) +] +) +g1,18906:32583029,23348937 +g1,18906:6630773,23348937 +g1,18906:6630773,23348937 +g1,18906:32583029,23348937 +g1,18906:32583029,23348937 +) +h1,18906:6630773,23545545:0,0,0 +(1,18909:6630773,32694747:25952256,9083666,0 +k1,18909:10523651,32694747:3892878 +h1,18908:10523651,32694747:0,0,0 +(1,18908:10523651,32694747:18166500,9083666,0 +(1,18908:10523651,32694747:18167376,9083688,0 +(1,18908:10523651,32694747:18167376,9083688,0 +(1,18908:10523651,32694747:0,9083688,0 +(1,18908:10523651,32694747:0,14208860,0 +(1,18908:10523651,32694747:28417720,14208860,0 +) +k1,18908:10523651,32694747:-28417720 +) +) +g1,18908:28691027,32694747 +) +) +) +g1,18909:28690151,32694747 +k1,18909:32583029,32694747:3892878 +) +(1,18916:6630773,33559827:25952256,513147,115847 +h1,18915:6630773,33559827:983040,0,0 +k1,18915:10589231,33559827:185550 +(1,18915:10589231,33559827:0,452978,115847 +r1,18934:17278309,33559827:6689078,568825,115847 +k1,18915:10589231,33559827:-6689078 +) +(1,18915:10589231,33559827:6689078,452978,115847 +k1,18915:10589231,33559827:3277 +h1,18915:17275032,33559827:0,411205,112570 +) +k1,18915:17637530,33559827:185551 +k1,18915:19708551,33559827:185550 +k1,18915:20425599,33559827:185551 +k1,18915:21630234,33559827:185550 +k1,18915:24255034,33559827:185550 +k1,18915:25933495,33559827:185551 +k1,18915:27185316,33559827:185550 +k1,18915:28824456,33559827:185551 +k1,18915:30029091,33559827:185550 +k1,18916:32583029,33559827:0 +) +(1,18916:6630773,34424907:25952256,513147,126483 +k1,18915:8096208,34424907:175031 +k1,18915:8954125,34424907:175032 +k1,18915:11743387,34424907:175031 +k1,18915:12577711,34424907:175032 +k1,18915:16998164,34424907:175031 +k1,18915:17859358,34424907:175032 +k1,18915:20109914,34424907:175031 +k1,18915:20900984,34424907:175032 +k1,18915:21842131,34424907:175031 +k1,18915:25008882,34424907:175032 +k1,18915:27212908,34424907:175031 +k1,18915:28216970,34424907:175032 +k1,18915:30107734,34424907:175031 +k1,18916:32583029,34424907:0 +) +(1,18916:6630773,35289987:25952256,513147,134348 +k1,18915:8243024,35289987:201261 +k1,18915:12516037,35289987:201261 +k1,18915:14933726,35289987:201261 +k1,18915:17462170,35289987:201261 +k1,18915:18322723,35289987:201261 +k1,18915:20882624,35289987:201260 +k1,18915:22102970,35289987:201261 +k1,18915:24322740,35289987:201261 +k1,18915:29753119,35289987:201261 +k1,18915:30640542,35289987:201261 +k1,18915:32583029,35289987:0 +) +(1,18916:6630773,36155067:25952256,505283,134348 +k1,18915:7312852,36155067:223982 +k1,18915:8068331,36155067:223982 +k1,18915:10922272,36155067:223981 +k1,18915:14206785,36155067:223982 +k1,18915:17045654,36155067:223982 +k1,18915:18908691,36155067:223982 +k1,18915:20877240,36155067:223981 +k1,18915:22120307,36155067:223982 +k1,18915:23596682,36155067:223982 +k1,18915:26406059,36155067:223982 +k1,18915:27281468,36155067:223981 +k1,18915:28524535,36155067:223982 +k1,18915:31274275,36155067:223982 +k1,18916:32583029,36155067:0 +) +(1,18916:6630773,37020147:25952256,505283,134348 +k1,18915:8284368,37020147:171171 +$1,18915:8284368,37020147 +$1,18915:8787029,37020147 +k1,18915:8958201,37020147:171172 +k1,18915:9745410,37020147:171171 +k1,18915:11119822,37020147:171171 +k1,18915:12831745,37020147:171172 +k1,18915:14383760,37020147:171171 +k1,18915:15086428,37020147:171171 +k1,18915:17125376,37020147:171172 +k1,18915:18997206,37020147:171171 +k1,18915:20359823,37020147:171172 +k1,18915:21635276,37020147:171171 +k1,18915:22554213,37020147:171171 +k1,18915:24690810,37020147:171172 +k1,18915:26597374,37020147:171171 +(1,18915:26597374,37020147:0,452978,122846 +r1,18934:32583029,37020147:5985655,575824,122846 +k1,18915:26597374,37020147:-5985655 +) +(1,18915:26597374,37020147:5985655,452978,122846 +k1,18915:26597374,37020147:3277 +h1,18915:32579752,37020147:0,411205,112570 +) +k1,18915:32583029,37020147:0 +) +(1,18916:6630773,37885227:25952256,513147,134348 +k1,18915:7574658,37885227:257723 +k1,18915:10904708,37885227:257722 +k1,18915:11813859,37885227:257723 +k1,18915:14200190,37885227:257722 +k1,18915:17738645,37885227:257723 +(1,18915:17738645,37885227:0,452978,115847 +r1,18934:20558894,37885227:2820249,568825,115847 +k1,18915:17738645,37885227:-2820249 +) +(1,18915:17738645,37885227:2820249,452978,115847 +k1,18915:17738645,37885227:3277 +h1,18915:20555617,37885227:0,411205,112570 +) +k1,18915:20816616,37885227:257722 +k1,18915:21741495,37885227:257723 +(1,18915:21741495,37885227:0,414482,122846 +r1,18934:23506608,37885227:1765113,537328,122846 +k1,18915:21741495,37885227:-1765113 +) +(1,18915:21741495,37885227:1765113,414482,122846 +k1,18915:21741495,37885227:3277 +h1,18915:23503331,37885227:0,411205,112570 +) +k1,18915:23938000,37885227:257722 +k1,18915:25392410,37885227:257723 +k1,18915:28107077,37885227:257722 +k1,18915:29024092,37885227:257723 +k1,18915:30859267,37885227:257723 +k1,18915:31648486,37885227:257722 +k1,18915:32583029,37885227:0 +) +(1,18916:6630773,38750307:25952256,513147,134348 +k1,18915:7632346,38750307:240045 +k1,18915:10492520,38750307:240045 +k1,18915:14135194,38750307:240045 +k1,18915:16580526,38750307:240045 +k1,18915:17471999,38750307:240045 +(1,18915:17471999,38750307:0,452978,115847 +r1,18934:19237112,38750307:1765113,568825,115847 +k1,18915:17471999,38750307:-1765113 +) +(1,18915:17471999,38750307:1765113,452978,115847 +k1,18915:17471999,38750307:3277 +h1,18915:19233835,38750307:0,411205,112570 +) +k1,18915:19477157,38750307:240045 +k1,18915:21927075,38750307:240044 +(1,18915:21927075,38750307:0,452978,122846 +r1,18934:24043900,38750307:2116825,575824,122846 +k1,18915:21927075,38750307:-2116825 +) +(1,18915:21927075,38750307:2116825,452978,122846 +k1,18915:21927075,38750307:3277 +h1,18915:24040623,38750307:0,411205,112570 +) +k1,18915:24457615,38750307:240045 +k1,18915:26392421,38750307:240045 +k1,18915:27318628,38750307:240045 +k1,18915:27914533,38750307:240045 +k1,18915:30664607,38750307:240045 +k1,18915:31563944,38750307:240045 +k1,18915:32583029,38750307:0 +) +(1,18916:6630773,39615387:25952256,513147,134348 +g1,18915:9490764,39615387 +g1,18915:12325196,39615387 +g1,18915:15236305,39615387 +g1,18915:17329524,39615387 +g1,18915:19321163,39615387 +g1,18915:20136430,39615387 +g1,18915:21354744,39615387 +k1,18916:32583029,39615387:9898560 +g1,18916:32583029,39615387 +) +v1,18918:6630773,40300242:0,393216,0 +(1,18924:6630773,42010635:25952256,2103609,196608 +g1,18924:6630773,42010635 +g1,18924:6630773,42010635 +g1,18924:6434165,42010635 +(1,18924:6434165,42010635:0,2103609,196608 +r1,18934:32779637,42010635:26345472,2300217,196608 +k1,18924:6434165,42010635:-26345472 +) +(1,18924:6434165,42010635:26345472,2103609,196608 +[1,18924:6630773,42010635:25952256,1907001,0 +(1,18920:6630773,40528073:25952256,424439,112852 +(1,18919:6630773,40528073:0,0,0 +g1,18919:6630773,40528073 +g1,18919:6630773,40528073 +g1,18919:6303093,40528073 +(1,18919:6303093,40528073:0,0,0 +) +g1,18919:6630773,40528073 +) +k1,18920:6630773,40528073:0 +g1,18920:10614221,40528073 +g1,18920:11278129,40528073 +k1,18920:11278129,40528073:0 +h1,18920:13601807,40528073:0,0,0 +k1,18920:32583029,40528073:18981222 +g1,18920:32583029,40528073 +) +(1,18921:6630773,41212928:25952256,431045,112852 +h1,18921:6630773,41212928:0,0,0 +g1,18921:6962727,41212928 +g1,18921:7294681,41212928 +g1,18921:7626635,41212928 +g1,18921:7958589,41212928 +g1,18921:8290543,41212928 +g1,18921:8622497,41212928 +g1,18921:8954451,41212928 +g1,18921:11610083,41212928 +g1,18921:12273991,41212928 +g1,18921:14265715,41212928 +g1,18921:14929623,41212928 +g1,18921:19245025,41212928 +g1,18921:19908933,41212928 +g1,18921:20572841,41212928 +g1,18921:22564565,41212928 +h1,18921:22896519,41212928:0,0,0 +k1,18921:32583029,41212928:9686510 +g1,18921:32583029,41212928 +) +(1,18922:6630773,41897783:25952256,424439,112852 +h1,18922:6630773,41897783:0,0,0 +g1,18922:6962727,41897783 +g1,18922:7294681,41897783 +g1,18922:13933759,41897783 +g1,18922:14597667,41897783 +g1,18922:21900654,41897783 +g1,18922:22564562,41897783 +g1,18922:24556286,41897783 +g1,18922:26548010,41897783 +g1,18922:27211918,41897783 +h1,18922:28207780,41897783:0,0,0 +k1,18922:32583029,41897783:4375249 +g1,18922:32583029,41897783 +) +] +) +g1,18924:32583029,42010635 +g1,18924:6630773,42010635 +g1,18924:6630773,42010635 +g1,18924:32583029,42010635 +g1,18924:32583029,42010635 +) +h1,18924:6630773,42207243:0,0,0 +] +(1,18934:32583029,45706769:0,0,0 +g1,18934:32583029,45706769 +) +) +] +(1,18934:6630773,47279633:25952256,0,0 +h1,18934:6630773,47279633:25952256,0,0 +) +] +(1,18934:4262630,4025873:0,0,0 +[1,18934:-473656,4025873:0,0,0 +(1,18934:-473656,-710413:0,0,0 +(1,18934:-473656,-710413:0,0,0 +g1,18934:-473656,-710413 +) +g1,18934:-473656,-710413 ) ] ) ] !23929 -}312 -Input:3239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3241:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3242:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}313 +Input:3243:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3244:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3245:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3246:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{313 -[1,18981:4262630,47279633:28320399,43253760,0 -(1,18981:4262630,4025873:0,0,0 -[1,18981:-473656,4025873:0,0,0 -(1,18981:-473656,-710413:0,0,0 -(1,18981:-473656,-644877:0,0,0 -k1,18981:-473656,-644877:-65536 +{314 +[1,18979:4262630,47279633:28320399,43253760,0 +(1,18979:4262630,4025873:0,0,0 +[1,18979:-473656,4025873:0,0,0 +(1,18979:-473656,-710413:0,0,0 +(1,18979:-473656,-644877:0,0,0 +k1,18979:-473656,-644877:-65536 ) -(1,18981:-473656,4736287:0,0,0 -k1,18981:-473656,4736287:5209943 +(1,18979:-473656,4736287:0,0,0 +k1,18979:-473656,4736287:5209943 ) -g1,18981:-473656,-710413 +g1,18979:-473656,-710413 ) ] ) -[1,18981:6630773,47279633:25952256,43253760,0 -[1,18981:6630773,4812305:25952256,786432,0 -(1,18981:6630773,4812305:25952256,513147,126483 -(1,18981:6630773,4812305:25952256,513147,126483 -g1,18981:3078558,4812305 -[1,18981:3078558,4812305:0,0,0 -(1,18981:3078558,2439708:0,1703936,0 -k1,18981:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,18981:2537886,2439708:1179648,16384,0 +[1,18979:6630773,47279633:25952256,43253760,0 +[1,18979:6630773,4812305:25952256,786432,0 +(1,18979:6630773,4812305:25952256,513147,126483 +(1,18979:6630773,4812305:25952256,513147,126483 +g1,18979:3078558,4812305 +[1,18979:3078558,4812305:0,0,0 +(1,18979:3078558,2439708:0,1703936,0 +k1,18979:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,18979:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,18981:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,18979:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,18981:3078558,4812305:0,0,0 -(1,18981:3078558,2439708:0,1703936,0 -g1,18981:29030814,2439708 -g1,18981:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,18981:36151628,1915420:16384,1179648,0 +[1,18979:3078558,4812305:0,0,0 +(1,18979:3078558,2439708:0,1703936,0 +g1,18979:29030814,2439708 +g1,18979:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,18979:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,18981:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,18979:37855564,2439708:1179648,16384,0 ) ) -k1,18981:3078556,2439708:-34777008 +k1,18979:3078556,2439708:-34777008 ) ] -[1,18981:3078558,4812305:0,0,0 -(1,18981:3078558,49800853:0,16384,2228224 -k1,18981:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,18981:2537886,49800853:1179648,16384,0 +[1,18979:3078558,4812305:0,0,0 +(1,18979:3078558,49800853:0,16384,2228224 +k1,18979:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,18979:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,18981:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,18979:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,18981:3078558,4812305:0,0,0 -(1,18981:3078558,49800853:0,16384,2228224 -g1,18981:29030814,49800853 -g1,18981:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,18981:36151628,51504789:16384,1179648,0 +[1,18979:3078558,4812305:0,0,0 +(1,18979:3078558,49800853:0,16384,2228224 +g1,18979:29030814,49800853 +g1,18979:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,18979:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,18981:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,18979:37855564,49800853:1179648,16384,0 ) ) -k1,18981:3078556,49800853:-34777008 +k1,18979:3078556,49800853:-34777008 ) ] -g1,18981:6630773,4812305 -k1,18981:21386205,4812305:13560055 -g1,18981:21999622,4812305 -g1,18981:25611966,4812305 -g1,18981:28956923,4812305 -g1,18981:29772190,4812305 -) -) -] -[1,18981:6630773,45706769:25952256,40108032,0 -(1,18981:6630773,45706769:25952256,40108032,0 -(1,18981:6630773,45706769:0,0,0 -g1,18981:6630773,45706769 -) -[1,18981:6630773,45706769:25952256,40108032,0 -(1,18929:6630773,14682403:25952256,9083666,0 -k1,18929:10523651,14682403:3892878 -h1,18928:10523651,14682403:0,0,0 -(1,18928:10523651,14682403:18166500,9083666,0 -(1,18928:10523651,14682403:18167376,9083688,0 -(1,18928:10523651,14682403:18167376,9083688,0 -(1,18928:10523651,14682403:0,9083688,0 -(1,18928:10523651,14682403:0,14208860,0 -(1,18928:10523651,14682403:28417720,14208860,0 -) -k1,18928:10523651,14682403:-28417720 -) -) -g1,18928:28691027,14682403 -) -) -) -g1,18929:28690151,14682403 -k1,18929:32583029,14682403:3892878 -) -v1,18936:6630773,15547483:0,393216,0 -(1,18947:6630773,21095756:25952256,5941489,0 -g1,18947:6630773,21095756 -g1,18947:6237557,21095756 -r1,18981:6368629,21095756:131072,5941489,0 -g1,18947:6567858,21095756 -g1,18947:6764466,21095756 -[1,18947:6764466,21095756:25818563,5941489,0 -(1,18937:6764466,15908660:25818563,754393,260573 -(1,18936:6764466,15908660:0,754393,260573 -r1,18981:7856192,15908660:1091726,1014966,260573 -k1,18936:6764466,15908660:-1091726 -) -(1,18936:6764466,15908660:1091726,754393,260573 -) -k1,18936:8045467,15908660:189275 -k1,18936:8373147,15908660:327680 -k1,18936:9759109,15908660:189275 -k1,18936:11686399,15908660:189275 -k1,18936:12561835,15908660:189274 -k1,18936:13106970,15908660:189275 -k1,18936:16270924,15908660:189275 -k1,18936:18326009,15908660:189275 -k1,18936:19619566,15908660:189275 -k1,18936:20556607,15908660:189275 -k1,18936:22031698,15908660:189275 -k1,18936:23734199,15908660:189275 -k1,18936:25621511,15908660:189274 -k1,18936:26620156,15908660:189275 -k1,18936:30212060,15908660:189275 -k1,18936:31931601,15908660:189275 -k1,18936:32583029,15908660:0 -) -(1,18937:6764466,16773740:25818563,513147,134348 -k1,18936:7739969,16773740:227737 -k1,18936:10172993,16773740:227737 -k1,18936:11052159,16773740:227738 -k1,18936:12298981,16773740:227737 -k1,18936:14973833,16773740:227737 -k1,18936:18070737,16773740:227738 -k1,18936:19489919,16773740:227737 -k1,18936:20665307,16773740:227737 -k1,18936:22585184,16773740:227737 -k1,18936:25757455,16773740:227738 -k1,18936:26746720,16773740:227737 -k1,18936:29401911,16773740:227737 -k1,18936:32583029,16773740:0 -) -(1,18937:6764466,17638820:25818563,513147,134348 -k1,18936:10439332,17638820:272237 -k1,18936:11362996,17638820:272236 -k1,18936:14032540,17638820:272237 -k1,18936:17915810,17638820:272236 -k1,18936:18847339,17638820:272237 -k1,18936:22800732,17638820:272236 -k1,18936:26007671,17638820:272237 -k1,18936:27298992,17638820:272236 -k1,18936:29836809,17638820:272237 -k1,18936:31923737,17638820:272236 -k1,18936:32583029,17638820:0 -) -(1,18937:6764466,18503900:25818563,505283,126483 -$1,18936:8318980,18503900 -g1,18936:8518209,18503900 -g1,18936:10487565,18503900 -g1,18936:11338222,18503900 -g1,18936:12285217,18503900 -g1,18936:14330595,18503900 -g1,18936:16984147,18503900 -g1,18936:18667766,18503900 -g1,18936:19933266,18503900 -k1,18937:32583029,18503900:10314716 -g1,18937:32583029,18503900 -) -v1,18939:6764466,19188755:0,393216,0 -(1,18945:6764466,20899148:25818563,2103609,196608 -g1,18945:6764466,20899148 -g1,18945:6764466,20899148 -g1,18945:6567858,20899148 -(1,18945:6567858,20899148:0,2103609,196608 -r1,18981:32779637,20899148:26211779,2300217,196608 -k1,18945:6567857,20899148:-26211780 -) -(1,18945:6567858,20899148:26211779,2103609,196608 -[1,18945:6764466,20899148:25818563,1907001,0 -(1,18941:6764466,19416586:25818563,424439,112852 -(1,18940:6764466,19416586:0,0,0 -g1,18940:6764466,19416586 -g1,18940:6764466,19416586 -g1,18940:6436786,19416586 -(1,18940:6436786,19416586:0,0,0 -) -g1,18940:6764466,19416586 -) -k1,18941:6764466,19416586:0 -g1,18941:10747914,19416586 -g1,18941:11411822,19416586 -k1,18941:11411822,19416586:0 -h1,18941:13735500,19416586:0,0,0 -k1,18941:32583028,19416586:18847528 -g1,18941:32583028,19416586 -) -(1,18942:6764466,20101441:25818563,431045,112852 -h1,18942:6764466,20101441:0,0,0 -g1,18942:7096420,20101441 -g1,18942:7428374,20101441 -g1,18942:7760328,20101441 -g1,18942:8092282,20101441 -g1,18942:8424236,20101441 -g1,18942:8756190,20101441 -g1,18942:9088144,20101441 -g1,18942:11743776,20101441 -g1,18942:12407684,20101441 -g1,18942:14399408,20101441 -g1,18942:15063316,20101441 -g1,18942:19378718,20101441 -g1,18942:20042626,20101441 -g1,18942:20706534,20101441 -g1,18942:22698258,20101441 -g1,18942:25021936,20101441 -g1,18942:25685844,20101441 -g1,18942:30001246,20101441 -h1,18942:30333200,20101441:0,0,0 -k1,18942:32583029,20101441:2249829 -g1,18942:32583029,20101441 -) -(1,18943:6764466,20786296:25818563,424439,112852 -h1,18943:6764466,20786296:0,0,0 -g1,18943:7096420,20786296 -g1,18943:7428374,20786296 -g1,18943:14067452,20786296 -g1,18943:14731360,20786296 -h1,18943:17718945,20786296:0,0,0 -k1,18943:32583029,20786296:14864084 -g1,18943:32583029,20786296 -) -] -) -g1,18945:32583029,20899148 -g1,18945:6764466,20899148 -g1,18945:6764466,20899148 -g1,18945:32583029,20899148 -g1,18945:32583029,20899148 -) -h1,18945:6764466,21095756:0,0,0 -] -g1,18947:32583029,21095756 -) -h1,18947:6630773,21095756:0,0,0 -(1,18952:6630773,21960836:25952256,513147,126483 -h1,18951:6630773,21960836:983040,0,0 -k1,18951:10056602,21960836:175243 -k1,18951:11870339,21960836:170749 -k1,18951:13032648,21960836:170749 -k1,18951:15585632,21960836:170750 -k1,18951:16439266,21960836:170749 -k1,18951:17682184,21960836:170749 -k1,18951:19460532,21960836:170750 -k1,18951:20247319,21960836:170749 -k1,18951:22303539,21960836:170749 -k1,18951:23493373,21960836:170749 -k1,18951:24932900,21960836:170750 -k1,18951:25762941,21960836:170749 -k1,18951:27952199,21960836:170749 -k1,18951:28805834,21960836:170750 -k1,18951:31475471,21960836:170749 -k1,18952:32583029,21960836:0 -) -(1,18952:6630773,22825916:25952256,513147,134348 -k1,18951:7723112,22825916:213501 -k1,18951:10911948,22825916:213501 -k1,18951:13136094,22825916:213501 -k1,18951:14008887,22825916:213501 -k1,18951:14578248,22825916:213501 -k1,18951:18362150,22825916:213501 -k1,18951:21086991,22825916:213501 -k1,18951:23885887,22825916:213501 -k1,18951:24750816,22825916:213501 -k1,18951:25983402,22825916:213501 -(1,18951:25983402,22825916:0,452978,115847 -r1,18981:27396803,22825916:1413401,568825,115847 -k1,18951:25983402,22825916:-1413401 -) -(1,18951:25983402,22825916:1413401,452978,115847 -k1,18951:25983402,22825916:3277 -h1,18951:27393526,22825916:0,411205,112570 -) -k1,18951:27610304,22825916:213501 -k1,18951:30750642,22825916:213501 -k1,18951:32583029,22825916:0 -) -(1,18952:6630773,23690996:25952256,505283,134348 -k1,18951:7790870,23690996:168537 -k1,18951:9131845,23690996:168536 -k1,18951:12962534,23690996:168537 -k1,18951:13782498,23690996:168536 -k1,18951:15154276,23690996:168537 -k1,18951:18304045,23690996:168536 -k1,18951:20483227,23690996:168537 -k1,18951:21267802,23690996:168537 -k1,18951:22455423,23690996:168536 -k1,18951:25209355,23690996:168537 -k1,18951:27889231,23690996:168536 -k1,18951:29913748,23690996:168537 -k1,18951:32583029,23690996:0 -) -(1,18952:6630773,24556076:25952256,513147,134348 -k1,18951:7820688,24556076:170830 -k1,18951:9338939,24556076:170831 -k1,18951:10169061,24556076:170830 -k1,18951:11358976,24556076:170830 -k1,18951:13548316,24556076:170831 -k1,18951:14402031,24556076:170830 -k1,18951:16081500,24556076:170830 -k1,18951:17893353,24556076:170831 -k1,18951:21027066,24556076:170830 -k1,18951:22216981,24556076:170830 -k1,18951:24399112,24556076:170831 -k1,18951:25101439,24556076:170830 -k1,18951:28720118,24556076:170830 -k1,18951:30577846,24556076:170831 -k1,18951:31931601,24556076:170830 -k1,18951:32583029,24556076:0 -) -(1,18952:6630773,25421156:25952256,505283,134348 -k1,18951:8138920,25421156:177766 -k1,18951:10181186,25421156:177767 -k1,18951:13784519,25421156:177766 -k1,18951:16062715,25421156:177767 -k1,18951:17975874,25421156:177766 -k1,18951:19501061,25421156:177767 -k1,18951:20210324,25421156:177766 -k1,18951:24345154,25421156:177766 -k1,18951:26422154,25421156:177767 -k1,18951:27251348,25421156:177766 -k1,18951:27784975,25421156:177767 -k1,18951:29775467,25421156:177766 -k1,18951:32583029,25421156:0 -) -(1,18952:6630773,26286236:25952256,513147,134348 -k1,18951:9981875,26286236:169984 -k1,18951:10803287,26286236:169984 -k1,18951:12614293,26286236:169984 -k1,18951:14825067,26286236:169983 -k1,18951:16014136,26286236:169984 -k1,18951:18629924,26286236:169984 -k1,18951:19459200,26286236:169984 -k1,18951:20937283,26286236:169984 -k1,18951:21723305,26286236:169984 -k1,18951:23289861,26286236:169984 -k1,18951:24451405,26286236:169984 -k1,18951:27206783,26286236:169983 -k1,18951:28028195,26286236:169984 -k1,18951:29217264,26286236:169984 -k1,18951:30734668,26286236:169984 -k1,18951:31563944,26286236:169984 -k1,18951:32583029,26286236:0 -) -(1,18952:6630773,27151316:25952256,513147,126483 -g1,18951:9022181,27151316 -g1,18951:10913550,27151316 -g1,18951:13152259,27151316 -g1,18951:14343048,27151316 -g1,18951:16055503,27151316 -g1,18951:18784422,27151316 -g1,18951:19642943,27151316 -k1,18952:32583029,27151316:10188230 -g1,18952:32583029,27151316 -) -v1,18954:6630773,27836171:0,393216,0 -(1,18961:6630773,30231419:25952256,2788464,196608 -g1,18961:6630773,30231419 -g1,18961:6630773,30231419 -g1,18961:6434165,30231419 -(1,18961:6434165,30231419:0,2788464,196608 -r1,18981:32779637,30231419:26345472,2985072,196608 -k1,18961:6434165,30231419:-26345472 -) -(1,18961:6434165,30231419:26345472,2788464,196608 -[1,18961:6630773,30231419:25952256,2591856,0 -(1,18956:6630773,28064002:25952256,424439,112852 -(1,18955:6630773,28064002:0,0,0 -g1,18955:6630773,28064002 -g1,18955:6630773,28064002 -g1,18955:6303093,28064002 -(1,18955:6303093,28064002:0,0,0 -) -g1,18955:6630773,28064002 -) -k1,18956:6630773,28064002:0 -g1,18956:10614221,28064002 -g1,18956:11278129,28064002 -k1,18956:11278129,28064002:0 -h1,18956:13601807,28064002:0,0,0 -k1,18956:32583029,28064002:18981222 -g1,18956:32583029,28064002 -) -(1,18957:6630773,28748857:25952256,431045,112852 -h1,18957:6630773,28748857:0,0,0 -g1,18957:6962727,28748857 -g1,18957:7294681,28748857 -g1,18957:7626635,28748857 -g1,18957:7958589,28748857 -g1,18957:8290543,28748857 -g1,18957:8622497,28748857 -g1,18957:8954451,28748857 -g1,18957:11610083,28748857 -g1,18957:12273991,28748857 -g1,18957:14265715,28748857 -g1,18957:14929623,28748857 -g1,18957:16921347,28748857 -g1,18957:17585255,28748857 -g1,18957:18249163,28748857 -g1,18957:19908933,28748857 -g1,18957:22232611,28748857 -g1,18957:22896519,28748857 -g1,18957:27211921,28748857 -g1,18957:28871691,28748857 -g1,18957:29535599,28748857 -g1,18957:31195369,28748857 -h1,18957:31527323,28748857:0,0,0 -k1,18957:32583029,28748857:1055706 -g1,18957:32583029,28748857 -) -(1,18958:6630773,29433712:25952256,424439,79822 -h1,18958:6630773,29433712:0,0,0 -g1,18958:6962727,29433712 -g1,18958:7294681,29433712 -g1,18958:13269852,29433712 -h1,18958:13601806,29433712:0,0,0 -k1,18958:32583030,29433712:18981224 -g1,18958:32583030,29433712 -) -(1,18959:6630773,30118567:25952256,424439,112852 -h1,18959:6630773,30118567:0,0,0 -g1,18959:6962727,30118567 -g1,18959:7294681,30118567 -g1,18959:12937898,30118567 -g1,18959:13601806,30118567 -g1,18959:16257438,30118567 -g1,18959:18581116,30118567 -g1,18959:20904794,30118567 -g1,18959:21568702,30118567 -h1,18959:22896518,30118567:0,0,0 -k1,18959:32583029,30118567:9686511 -g1,18959:32583029,30118567 -) -] -) -g1,18961:32583029,30231419 -g1,18961:6630773,30231419 -g1,18961:6630773,30231419 -g1,18961:32583029,30231419 -g1,18961:32583029,30231419 -) -h1,18961:6630773,30428027:0,0,0 -(1,18964:6630773,39577229:25952256,9083666,0 -k1,18964:10523651,39577229:3892878 -h1,18963:10523651,39577229:0,0,0 -(1,18963:10523651,39577229:18166500,9083666,0 -(1,18963:10523651,39577229:18167376,9083688,0 -(1,18963:10523651,39577229:18167376,9083688,0 -(1,18963:10523651,39577229:0,9083688,0 -(1,18963:10523651,39577229:0,14208860,0 -(1,18963:10523651,39577229:28417720,14208860,0 -) -k1,18963:10523651,39577229:-28417720 -) -) -g1,18963:28691027,39577229 -) -) -) -g1,18964:28690151,39577229 -k1,18964:32583029,39577229:3892878 -) -v1,18971:6630773,40442309:0,393216,0 -(1,18974:6630773,45048049:25952256,4998956,0 -g1,18974:6630773,45048049 -g1,18974:6237557,45048049 -r1,18981:6368629,45048049:131072,4998956,0 -g1,18974:6567858,45048049 -g1,18974:6764466,45048049 -[1,18974:6764466,45048049:25818563,4998956,0 -(1,18972:6764466,40714786:25818563,665693,196608 -(1,18971:6764466,40714786:0,665693,196608 -r1,18981:7868133,40714786:1103667,862301,196608 -k1,18971:6764466,40714786:-1103667 -) -(1,18971:6764466,40714786:1103667,665693,196608 -) -k1,18971:8057025,40714786:188892 -k1,18971:9374954,40714786:327680 -k1,18971:10041603,40714786:188892 -k1,18971:10586355,40714786:188892 -k1,18971:14854208,40714786:188892 -k1,18971:16615309,40714786:188892 -k1,18971:17335698,40714786:188892 -k1,18971:19037815,40714786:188891 -k1,18971:21553890,40714786:188892 -k1,18971:22402074,40714786:188892 -k1,18971:23361669,40714786:188892 -k1,18971:26965642,40714786:188892 -k1,18971:28311244,40714786:188892 -k1,18971:29519221,40714786:188892 -k1,18971:32583029,40714786:0 -) -(1,18972:6764466,41579866:25818563,513147,134348 -k1,18971:8245983,41579866:212740 -k1,18971:11975385,41579866:212740 -k1,18971:13179684,41579866:212739 -k1,18971:15425351,41579866:212740 -k1,18971:16707639,41579866:212740 -k1,18971:17939464,41579866:212740 -k1,18971:22301287,41579866:212739 -k1,18971:23323397,41579866:212740 -k1,18971:24555222,41579866:212740 -k1,18971:26830380,41579866:212740 -k1,18971:27574616,41579866:212739 -k1,18971:30723369,41579866:212740 -k1,18971:31563944,41579866:212740 -k1,18971:32583029,41579866:0 -) -(1,18972:6764466,42444946:25818563,505283,126483 -g1,18971:8240992,42444946 -g1,18971:10469216,42444946 -g1,18971:12966793,42444946 -(1,18971:12966793,42444946:0,452978,115847 -r1,18981:18952448,42444946:5985655,568825,115847 -k1,18971:12966793,42444946:-5985655 -) -(1,18971:12966793,42444946:5985655,452978,115847 -k1,18971:12966793,42444946:3277 -h1,18971:18949171,42444946:0,411205,112570 -) -g1,18971:19151677,42444946 -g1,18971:20744857,42444946 -(1,18971:20744857,42444946:0,452978,115847 -r1,18981:27433935,42444946:6689078,568825,115847 -k1,18971:20744857,42444946:-6689078 -) -(1,18971:20744857,42444946:6689078,452978,115847 -k1,18971:20744857,42444946:3277 -h1,18971:27430658,42444946:0,411205,112570 -) -k1,18972:32583029,42444946:5096666 -g1,18972:32583029,42444946 -) -(1,18974:6764466,43310026:25818563,513147,126483 -h1,18973:6764466,43310026:983040,0,0 -k1,18973:10296294,43310026:171142 -k1,18973:11486522,43310026:171143 -k1,18973:13108631,43310026:171142 -k1,18973:14666516,43310026:171143 -k1,18973:15450420,43310026:171142 -k1,18973:16079660,43310026:171143 -k1,18973:19200577,43310026:171142 -k1,18973:21315517,43310026:171142 -k1,18973:22505745,43310026:171143 -k1,18973:25858005,43310026:171142 -k1,18973:28039793,43310026:171143 -k1,18973:28870227,43310026:171142 -k1,18973:30733510,43310026:171143 -k1,18973:31563944,43310026:171142 -k1,18973:32583029,43310026:0 -) -(1,18974:6764466,44175106:25818563,513147,134348 -k1,18973:9342840,44175106:158784 -k1,18973:10160916,44175106:158784 -k1,18973:11338786,44175106:158785 -k1,18973:12979339,44175106:158784 -k1,18973:14329568,44175106:158784 -k1,18973:16512759,44175106:158784 -k1,18973:17137504,44175106:158784 -k1,18973:18755120,44175106:158785 -k1,18973:22339471,44175106:158784 -k1,18973:23157547,44175106:158784 -k1,18973:24335416,44175106:158784 -k1,18973:25771498,44175106:158785 -k1,18973:28589078,44175106:158784 -k1,18973:29766947,44175106:158784 -k1,18973:32583029,44175106:0 -) -(1,18974:6764466,45040186:25818563,505283,7863 -g1,18973:9163083,45040186 -k1,18974:32583028,45040186:22909420 -g1,18974:32583028,45040186 -) -] -g1,18974:32583029,45048049 -) -h1,18974:6630773,45048049:0,0,0 -] -(1,18981:32583029,45706769:0,0,0 -g1,18981:32583029,45706769 -) -) -] -(1,18981:6630773,47279633:25952256,0,0 -h1,18981:6630773,47279633:25952256,0,0 -) -] -(1,18981:4262630,4025873:0,0,0 -[1,18981:-473656,4025873:0,0,0 -(1,18981:-473656,-710413:0,0,0 -(1,18981:-473656,-710413:0,0,0 -g1,18981:-473656,-710413 -) -g1,18981:-473656,-710413 +g1,18979:6630773,4812305 +k1,18979:21386205,4812305:13560055 +g1,18979:21999622,4812305 +g1,18979:25611966,4812305 +g1,18979:28956923,4812305 +g1,18979:29772190,4812305 +) +) +] +[1,18979:6630773,45706769:25952256,40108032,0 +(1,18979:6630773,45706769:25952256,40108032,0 +(1,18979:6630773,45706769:0,0,0 +g1,18979:6630773,45706769 +) +[1,18979:6630773,45706769:25952256,40108032,0 +(1,18927:6630773,14682403:25952256,9083666,0 +k1,18927:10523651,14682403:3892878 +h1,18926:10523651,14682403:0,0,0 +(1,18926:10523651,14682403:18166500,9083666,0 +(1,18926:10523651,14682403:18167376,9083688,0 +(1,18926:10523651,14682403:18167376,9083688,0 +(1,18926:10523651,14682403:0,9083688,0 +(1,18926:10523651,14682403:0,14208860,0 +(1,18926:10523651,14682403:28417720,14208860,0 +) +k1,18926:10523651,14682403:-28417720 +) +) +g1,18926:28691027,14682403 +) +) +) +g1,18927:28690151,14682403 +k1,18927:32583029,14682403:3892878 +) +v1,18934:6630773,15547483:0,393216,0 +(1,18945:6630773,21095756:25952256,5941489,0 +g1,18945:6630773,21095756 +g1,18945:6237557,21095756 +r1,18979:6368629,21095756:131072,5941489,0 +g1,18945:6567858,21095756 +g1,18945:6764466,21095756 +[1,18945:6764466,21095756:25818563,5941489,0 +(1,18935:6764466,15908660:25818563,754393,260573 +(1,18934:6764466,15908660:0,754393,260573 +r1,18979:7856192,15908660:1091726,1014966,260573 +k1,18934:6764466,15908660:-1091726 +) +(1,18934:6764466,15908660:1091726,754393,260573 +) +k1,18934:8045467,15908660:189275 +k1,18934:8373147,15908660:327680 +k1,18934:9759109,15908660:189275 +k1,18934:11686399,15908660:189275 +k1,18934:12561835,15908660:189274 +k1,18934:13106970,15908660:189275 +k1,18934:16270924,15908660:189275 +k1,18934:18326009,15908660:189275 +k1,18934:19619566,15908660:189275 +k1,18934:20556607,15908660:189275 +k1,18934:22031698,15908660:189275 +k1,18934:23734199,15908660:189275 +k1,18934:25621511,15908660:189274 +k1,18934:26620156,15908660:189275 +k1,18934:30212060,15908660:189275 +k1,18934:31931601,15908660:189275 +k1,18934:32583029,15908660:0 +) +(1,18935:6764466,16773740:25818563,513147,134348 +k1,18934:7739969,16773740:227737 +k1,18934:10172993,16773740:227737 +k1,18934:11052159,16773740:227738 +k1,18934:12298981,16773740:227737 +k1,18934:14973833,16773740:227737 +k1,18934:18070737,16773740:227738 +k1,18934:19489919,16773740:227737 +k1,18934:20665307,16773740:227737 +k1,18934:22585184,16773740:227737 +k1,18934:25757455,16773740:227738 +k1,18934:26746720,16773740:227737 +k1,18934:29401911,16773740:227737 +k1,18934:32583029,16773740:0 +) +(1,18935:6764466,17638820:25818563,513147,134348 +k1,18934:10439332,17638820:272237 +k1,18934:11362996,17638820:272236 +k1,18934:14032540,17638820:272237 +k1,18934:17915810,17638820:272236 +k1,18934:18847339,17638820:272237 +k1,18934:22800732,17638820:272236 +k1,18934:26007671,17638820:272237 +k1,18934:27298992,17638820:272236 +k1,18934:29836809,17638820:272237 +k1,18934:31923737,17638820:272236 +k1,18934:32583029,17638820:0 +) +(1,18935:6764466,18503900:25818563,505283,126483 +$1,18934:8318980,18503900 +g1,18934:8518209,18503900 +g1,18934:10487565,18503900 +g1,18934:11338222,18503900 +g1,18934:12285217,18503900 +g1,18934:14330595,18503900 +g1,18934:16984147,18503900 +g1,18934:18667766,18503900 +g1,18934:19933266,18503900 +k1,18935:32583029,18503900:10314716 +g1,18935:32583029,18503900 +) +v1,18937:6764466,19188755:0,393216,0 +(1,18943:6764466,20899148:25818563,2103609,196608 +g1,18943:6764466,20899148 +g1,18943:6764466,20899148 +g1,18943:6567858,20899148 +(1,18943:6567858,20899148:0,2103609,196608 +r1,18979:32779637,20899148:26211779,2300217,196608 +k1,18943:6567857,20899148:-26211780 +) +(1,18943:6567858,20899148:26211779,2103609,196608 +[1,18943:6764466,20899148:25818563,1907001,0 +(1,18939:6764466,19416586:25818563,424439,112852 +(1,18938:6764466,19416586:0,0,0 +g1,18938:6764466,19416586 +g1,18938:6764466,19416586 +g1,18938:6436786,19416586 +(1,18938:6436786,19416586:0,0,0 +) +g1,18938:6764466,19416586 +) +k1,18939:6764466,19416586:0 +g1,18939:10747914,19416586 +g1,18939:11411822,19416586 +k1,18939:11411822,19416586:0 +h1,18939:13735500,19416586:0,0,0 +k1,18939:32583028,19416586:18847528 +g1,18939:32583028,19416586 +) +(1,18940:6764466,20101441:25818563,431045,112852 +h1,18940:6764466,20101441:0,0,0 +g1,18940:7096420,20101441 +g1,18940:7428374,20101441 +g1,18940:7760328,20101441 +g1,18940:8092282,20101441 +g1,18940:8424236,20101441 +g1,18940:8756190,20101441 +g1,18940:9088144,20101441 +g1,18940:11743776,20101441 +g1,18940:12407684,20101441 +g1,18940:14399408,20101441 +g1,18940:15063316,20101441 +g1,18940:19378718,20101441 +g1,18940:20042626,20101441 +g1,18940:20706534,20101441 +g1,18940:22698258,20101441 +g1,18940:25021936,20101441 +g1,18940:25685844,20101441 +g1,18940:30001246,20101441 +h1,18940:30333200,20101441:0,0,0 +k1,18940:32583029,20101441:2249829 +g1,18940:32583029,20101441 +) +(1,18941:6764466,20786296:25818563,424439,112852 +h1,18941:6764466,20786296:0,0,0 +g1,18941:7096420,20786296 +g1,18941:7428374,20786296 +g1,18941:14067452,20786296 +g1,18941:14731360,20786296 +h1,18941:17718945,20786296:0,0,0 +k1,18941:32583029,20786296:14864084 +g1,18941:32583029,20786296 +) +] +) +g1,18943:32583029,20899148 +g1,18943:6764466,20899148 +g1,18943:6764466,20899148 +g1,18943:32583029,20899148 +g1,18943:32583029,20899148 +) +h1,18943:6764466,21095756:0,0,0 +] +g1,18945:32583029,21095756 +) +h1,18945:6630773,21095756:0,0,0 +(1,18950:6630773,21960836:25952256,513147,126483 +h1,18949:6630773,21960836:983040,0,0 +k1,18949:10056602,21960836:175243 +k1,18949:11870339,21960836:170749 +k1,18949:13032648,21960836:170749 +k1,18949:15585632,21960836:170750 +k1,18949:16439266,21960836:170749 +k1,18949:17682184,21960836:170749 +k1,18949:19460532,21960836:170750 +k1,18949:20247319,21960836:170749 +k1,18949:22303539,21960836:170749 +k1,18949:23493373,21960836:170749 +k1,18949:24932900,21960836:170750 +k1,18949:25762941,21960836:170749 +k1,18949:27952199,21960836:170749 +k1,18949:28805834,21960836:170750 +k1,18949:31475471,21960836:170749 +k1,18950:32583029,21960836:0 +) +(1,18950:6630773,22825916:25952256,513147,134348 +k1,18949:7723112,22825916:213501 +k1,18949:10911948,22825916:213501 +k1,18949:13136094,22825916:213501 +k1,18949:14008887,22825916:213501 +k1,18949:14578248,22825916:213501 +k1,18949:18362150,22825916:213501 +k1,18949:21086991,22825916:213501 +k1,18949:23885887,22825916:213501 +k1,18949:24750816,22825916:213501 +k1,18949:25983402,22825916:213501 +(1,18949:25983402,22825916:0,452978,115847 +r1,18979:27396803,22825916:1413401,568825,115847 +k1,18949:25983402,22825916:-1413401 +) +(1,18949:25983402,22825916:1413401,452978,115847 +k1,18949:25983402,22825916:3277 +h1,18949:27393526,22825916:0,411205,112570 +) +k1,18949:27610304,22825916:213501 +k1,18949:30750642,22825916:213501 +k1,18949:32583029,22825916:0 +) +(1,18950:6630773,23690996:25952256,505283,134348 +k1,18949:7790870,23690996:168537 +k1,18949:9131845,23690996:168536 +k1,18949:12962534,23690996:168537 +k1,18949:13782498,23690996:168536 +k1,18949:15154276,23690996:168537 +k1,18949:18304045,23690996:168536 +k1,18949:20483227,23690996:168537 +k1,18949:21267802,23690996:168537 +k1,18949:22455423,23690996:168536 +k1,18949:25209355,23690996:168537 +k1,18949:27889231,23690996:168536 +k1,18949:29913748,23690996:168537 +k1,18949:32583029,23690996:0 +) +(1,18950:6630773,24556076:25952256,513147,134348 +k1,18949:7820688,24556076:170830 +k1,18949:9338939,24556076:170831 +k1,18949:10169061,24556076:170830 +k1,18949:11358976,24556076:170830 +k1,18949:13548316,24556076:170831 +k1,18949:14402031,24556076:170830 +k1,18949:16081500,24556076:170830 +k1,18949:17893353,24556076:170831 +k1,18949:21027066,24556076:170830 +k1,18949:22216981,24556076:170830 +k1,18949:24399112,24556076:170831 +k1,18949:25101439,24556076:170830 +k1,18949:28720118,24556076:170830 +k1,18949:30577846,24556076:170831 +k1,18949:31931601,24556076:170830 +k1,18949:32583029,24556076:0 +) +(1,18950:6630773,25421156:25952256,505283,134348 +k1,18949:8138920,25421156:177766 +k1,18949:10181186,25421156:177767 +k1,18949:13784519,25421156:177766 +k1,18949:16062715,25421156:177767 +k1,18949:17975874,25421156:177766 +k1,18949:19501061,25421156:177767 +k1,18949:20210324,25421156:177766 +k1,18949:24345154,25421156:177766 +k1,18949:26422154,25421156:177767 +k1,18949:27251348,25421156:177766 +k1,18949:27784975,25421156:177767 +k1,18949:29775467,25421156:177766 +k1,18949:32583029,25421156:0 +) +(1,18950:6630773,26286236:25952256,513147,134348 +k1,18949:9981875,26286236:169984 +k1,18949:10803287,26286236:169984 +k1,18949:12614293,26286236:169984 +k1,18949:14825067,26286236:169983 +k1,18949:16014136,26286236:169984 +k1,18949:18629924,26286236:169984 +k1,18949:19459200,26286236:169984 +k1,18949:20937283,26286236:169984 +k1,18949:21723305,26286236:169984 +k1,18949:23289861,26286236:169984 +k1,18949:24451405,26286236:169984 +k1,18949:27206783,26286236:169983 +k1,18949:28028195,26286236:169984 +k1,18949:29217264,26286236:169984 +k1,18949:30734668,26286236:169984 +k1,18949:31563944,26286236:169984 +k1,18949:32583029,26286236:0 +) +(1,18950:6630773,27151316:25952256,513147,126483 +g1,18949:9022181,27151316 +g1,18949:10913550,27151316 +g1,18949:13152259,27151316 +g1,18949:14343048,27151316 +g1,18949:16055503,27151316 +g1,18949:18784422,27151316 +g1,18949:19642943,27151316 +k1,18950:32583029,27151316:10188230 +g1,18950:32583029,27151316 +) +v1,18952:6630773,27836171:0,393216,0 +(1,18959:6630773,30231419:25952256,2788464,196608 +g1,18959:6630773,30231419 +g1,18959:6630773,30231419 +g1,18959:6434165,30231419 +(1,18959:6434165,30231419:0,2788464,196608 +r1,18979:32779637,30231419:26345472,2985072,196608 +k1,18959:6434165,30231419:-26345472 +) +(1,18959:6434165,30231419:26345472,2788464,196608 +[1,18959:6630773,30231419:25952256,2591856,0 +(1,18954:6630773,28064002:25952256,424439,112852 +(1,18953:6630773,28064002:0,0,0 +g1,18953:6630773,28064002 +g1,18953:6630773,28064002 +g1,18953:6303093,28064002 +(1,18953:6303093,28064002:0,0,0 +) +g1,18953:6630773,28064002 +) +k1,18954:6630773,28064002:0 +g1,18954:10614221,28064002 +g1,18954:11278129,28064002 +k1,18954:11278129,28064002:0 +h1,18954:13601807,28064002:0,0,0 +k1,18954:32583029,28064002:18981222 +g1,18954:32583029,28064002 +) +(1,18955:6630773,28748857:25952256,431045,112852 +h1,18955:6630773,28748857:0,0,0 +g1,18955:6962727,28748857 +g1,18955:7294681,28748857 +g1,18955:7626635,28748857 +g1,18955:7958589,28748857 +g1,18955:8290543,28748857 +g1,18955:8622497,28748857 +g1,18955:8954451,28748857 +g1,18955:11610083,28748857 +g1,18955:12273991,28748857 +g1,18955:14265715,28748857 +g1,18955:14929623,28748857 +g1,18955:16921347,28748857 +g1,18955:17585255,28748857 +g1,18955:18249163,28748857 +g1,18955:19908933,28748857 +g1,18955:22232611,28748857 +g1,18955:22896519,28748857 +g1,18955:27211921,28748857 +g1,18955:28871691,28748857 +g1,18955:29535599,28748857 +g1,18955:31195369,28748857 +h1,18955:31527323,28748857:0,0,0 +k1,18955:32583029,28748857:1055706 +g1,18955:32583029,28748857 +) +(1,18956:6630773,29433712:25952256,424439,79822 +h1,18956:6630773,29433712:0,0,0 +g1,18956:6962727,29433712 +g1,18956:7294681,29433712 +g1,18956:13269852,29433712 +h1,18956:13601806,29433712:0,0,0 +k1,18956:32583030,29433712:18981224 +g1,18956:32583030,29433712 +) +(1,18957:6630773,30118567:25952256,424439,112852 +h1,18957:6630773,30118567:0,0,0 +g1,18957:6962727,30118567 +g1,18957:7294681,30118567 +g1,18957:12937898,30118567 +g1,18957:13601806,30118567 +g1,18957:16257438,30118567 +g1,18957:18581116,30118567 +g1,18957:20904794,30118567 +g1,18957:21568702,30118567 +h1,18957:22896518,30118567:0,0,0 +k1,18957:32583029,30118567:9686511 +g1,18957:32583029,30118567 +) +] +) +g1,18959:32583029,30231419 +g1,18959:6630773,30231419 +g1,18959:6630773,30231419 +g1,18959:32583029,30231419 +g1,18959:32583029,30231419 +) +h1,18959:6630773,30428027:0,0,0 +(1,18962:6630773,39577229:25952256,9083666,0 +k1,18962:10523651,39577229:3892878 +h1,18961:10523651,39577229:0,0,0 +(1,18961:10523651,39577229:18166500,9083666,0 +(1,18961:10523651,39577229:18167376,9083688,0 +(1,18961:10523651,39577229:18167376,9083688,0 +(1,18961:10523651,39577229:0,9083688,0 +(1,18961:10523651,39577229:0,14208860,0 +(1,18961:10523651,39577229:28417720,14208860,0 +) +k1,18961:10523651,39577229:-28417720 +) +) +g1,18961:28691027,39577229 +) +) +) +g1,18962:28690151,39577229 +k1,18962:32583029,39577229:3892878 +) +v1,18969:6630773,40442309:0,393216,0 +(1,18972:6630773,45048049:25952256,4998956,0 +g1,18972:6630773,45048049 +g1,18972:6237557,45048049 +r1,18979:6368629,45048049:131072,4998956,0 +g1,18972:6567858,45048049 +g1,18972:6764466,45048049 +[1,18972:6764466,45048049:25818563,4998956,0 +(1,18970:6764466,40714786:25818563,665693,196608 +(1,18969:6764466,40714786:0,665693,196608 +r1,18979:7868133,40714786:1103667,862301,196608 +k1,18969:6764466,40714786:-1103667 +) +(1,18969:6764466,40714786:1103667,665693,196608 +) +k1,18969:8057025,40714786:188892 +k1,18969:9374954,40714786:327680 +k1,18969:10041603,40714786:188892 +k1,18969:10586355,40714786:188892 +k1,18969:14854208,40714786:188892 +k1,18969:16615309,40714786:188892 +k1,18969:17335698,40714786:188892 +k1,18969:19037815,40714786:188891 +k1,18969:21553890,40714786:188892 +k1,18969:22402074,40714786:188892 +k1,18969:23361669,40714786:188892 +k1,18969:26965642,40714786:188892 +k1,18969:28311244,40714786:188892 +k1,18969:29519221,40714786:188892 +k1,18969:32583029,40714786:0 +) +(1,18970:6764466,41579866:25818563,513147,134348 +k1,18969:8245983,41579866:212740 +k1,18969:11975385,41579866:212740 +k1,18969:13179684,41579866:212739 +k1,18969:15425351,41579866:212740 +k1,18969:16707639,41579866:212740 +k1,18969:17939464,41579866:212740 +k1,18969:22301287,41579866:212739 +k1,18969:23323397,41579866:212740 +k1,18969:24555222,41579866:212740 +k1,18969:26830380,41579866:212740 +k1,18969:27574616,41579866:212739 +k1,18969:30723369,41579866:212740 +k1,18969:31563944,41579866:212740 +k1,18969:32583029,41579866:0 +) +(1,18970:6764466,42444946:25818563,505283,126483 +g1,18969:8240992,42444946 +g1,18969:10469216,42444946 +g1,18969:12966793,42444946 +(1,18969:12966793,42444946:0,452978,115847 +r1,18979:18952448,42444946:5985655,568825,115847 +k1,18969:12966793,42444946:-5985655 +) +(1,18969:12966793,42444946:5985655,452978,115847 +k1,18969:12966793,42444946:3277 +h1,18969:18949171,42444946:0,411205,112570 +) +g1,18969:19151677,42444946 +g1,18969:20744857,42444946 +(1,18969:20744857,42444946:0,452978,115847 +r1,18979:27433935,42444946:6689078,568825,115847 +k1,18969:20744857,42444946:-6689078 +) +(1,18969:20744857,42444946:6689078,452978,115847 +k1,18969:20744857,42444946:3277 +h1,18969:27430658,42444946:0,411205,112570 +) +k1,18970:32583029,42444946:5096666 +g1,18970:32583029,42444946 +) +(1,18972:6764466,43310026:25818563,513147,126483 +h1,18971:6764466,43310026:983040,0,0 +k1,18971:10296294,43310026:171142 +k1,18971:11486522,43310026:171143 +k1,18971:13108631,43310026:171142 +k1,18971:14666516,43310026:171143 +k1,18971:15450420,43310026:171142 +k1,18971:16079660,43310026:171143 +k1,18971:19200577,43310026:171142 +k1,18971:21315517,43310026:171142 +k1,18971:22505745,43310026:171143 +k1,18971:25858005,43310026:171142 +k1,18971:28039793,43310026:171143 +k1,18971:28870227,43310026:171142 +k1,18971:30733510,43310026:171143 +k1,18971:31563944,43310026:171142 +k1,18971:32583029,43310026:0 +) +(1,18972:6764466,44175106:25818563,513147,134348 +k1,18971:9342840,44175106:158784 +k1,18971:10160916,44175106:158784 +k1,18971:11338786,44175106:158785 +k1,18971:12979339,44175106:158784 +k1,18971:14329568,44175106:158784 +k1,18971:16512759,44175106:158784 +k1,18971:17137504,44175106:158784 +k1,18971:18755120,44175106:158785 +k1,18971:22339471,44175106:158784 +k1,18971:23157547,44175106:158784 +k1,18971:24335416,44175106:158784 +k1,18971:25771498,44175106:158785 +k1,18971:28589078,44175106:158784 +k1,18971:29766947,44175106:158784 +k1,18971:32583029,44175106:0 +) +(1,18972:6764466,45040186:25818563,505283,7863 +g1,18971:9163083,45040186 +k1,18972:32583028,45040186:22909420 +g1,18972:32583028,45040186 +) +] +g1,18972:32583029,45048049 +) +h1,18972:6630773,45048049:0,0,0 +] +(1,18979:32583029,45706769:0,0,0 +g1,18979:32583029,45706769 +) +) +] +(1,18979:6630773,47279633:25952256,0,0 +h1,18979:6630773,47279633:25952256,0,0 +) +] +(1,18979:4262630,4025873:0,0,0 +[1,18979:-473656,4025873:0,0,0 +(1,18979:-473656,-710413:0,0,0 +(1,18979:-473656,-710413:0,0,0 +g1,18979:-473656,-710413 +) +g1,18979:-473656,-710413 ) ] ) ] !18788 -}313 -Input:3243:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3244:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3245:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3246:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}314 Input:3247:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3248:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3249:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -330734,932 +330938,932 @@ Input:3254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3259:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3260:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3261:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{314 -[1,19031:4262630,47279633:28320399,43253760,0 -(1,19031:4262630,4025873:0,0,0 -[1,19031:-473656,4025873:0,0,0 -(1,19031:-473656,-710413:0,0,0 -(1,19031:-473656,-644877:0,0,0 -k1,19031:-473656,-644877:-65536 +{315 +[1,19029:4262630,47279633:28320399,43253760,0 +(1,19029:4262630,4025873:0,0,0 +[1,19029:-473656,4025873:0,0,0 +(1,19029:-473656,-710413:0,0,0 +(1,19029:-473656,-644877:0,0,0 +k1,19029:-473656,-644877:-65536 ) -(1,19031:-473656,4736287:0,0,0 -k1,19031:-473656,4736287:5209943 +(1,19029:-473656,4736287:0,0,0 +k1,19029:-473656,4736287:5209943 ) -g1,19031:-473656,-710413 +g1,19029:-473656,-710413 ) ] ) -[1,19031:6630773,47279633:25952256,43253760,0 -[1,19031:6630773,4812305:25952256,786432,0 -(1,19031:6630773,4812305:25952256,485622,11795 -(1,19031:6630773,4812305:25952256,485622,11795 -g1,19031:3078558,4812305 -[1,19031:3078558,4812305:0,0,0 -(1,19031:3078558,2439708:0,1703936,0 -k1,19031:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19031:2537886,2439708:1179648,16384,0 +[1,19029:6630773,47279633:25952256,43253760,0 +[1,19029:6630773,4812305:25952256,786432,0 +(1,19029:6630773,4812305:25952256,485622,11795 +(1,19029:6630773,4812305:25952256,485622,11795 +g1,19029:3078558,4812305 +[1,19029:3078558,4812305:0,0,0 +(1,19029:3078558,2439708:0,1703936,0 +k1,19029:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19029:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19031:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19029:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19031:3078558,4812305:0,0,0 -(1,19031:3078558,2439708:0,1703936,0 -g1,19031:29030814,2439708 -g1,19031:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19031:36151628,1915420:16384,1179648,0 +[1,19029:3078558,4812305:0,0,0 +(1,19029:3078558,2439708:0,1703936,0 +g1,19029:29030814,2439708 +g1,19029:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19029:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19031:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19029:37855564,2439708:1179648,16384,0 ) ) -k1,19031:3078556,2439708:-34777008 +k1,19029:3078556,2439708:-34777008 ) ] -[1,19031:3078558,4812305:0,0,0 -(1,19031:3078558,49800853:0,16384,2228224 -k1,19031:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19031:2537886,49800853:1179648,16384,0 +[1,19029:3078558,4812305:0,0,0 +(1,19029:3078558,49800853:0,16384,2228224 +k1,19029:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19029:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19031:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19029:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19031:3078558,4812305:0,0,0 -(1,19031:3078558,49800853:0,16384,2228224 -g1,19031:29030814,49800853 -g1,19031:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19031:36151628,51504789:16384,1179648,0 +[1,19029:3078558,4812305:0,0,0 +(1,19029:3078558,49800853:0,16384,2228224 +g1,19029:29030814,49800853 +g1,19029:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19029:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19031:37855564,49800853:1179648,16384,0 -) -) -k1,19031:3078556,49800853:-34777008 -) -] -g1,19031:6630773,4812305 -g1,19031:6630773,4812305 -g1,19031:10347975,4812305 -k1,19031:31387651,4812305:21039676 -) -) -] -[1,19031:6630773,45706769:25952256,40108032,0 -(1,19031:6630773,45706769:25952256,40108032,0 -(1,19031:6630773,45706769:0,0,0 -g1,19031:6630773,45706769 -) -[1,19031:6630773,45706769:25952256,40108032,0 -(1,18979:6630773,6254097:25952256,513147,134348 -h1,18978:6630773,6254097:983040,0,0 -k1,18978:8605807,6254097:174105 -k1,18978:9135773,6254097:174106 -k1,18978:10716281,6254097:174105 -k1,18978:13551803,6254097:174105 -k1,18978:17876959,6254097:174106 -k1,18978:19070149,6254097:174105 -k1,18978:20336739,6254097:174105 -k1,18978:21178001,6254097:174106 -(1,18978:21178001,6254097:0,452978,122846 -r1,19031:25405097,6254097:4227096,575824,122846 -k1,18978:21178001,6254097:-4227096 -) -(1,18978:21178001,6254097:4227096,452978,122846 -k1,18978:21178001,6254097:3277 -h1,18978:25401820,6254097:0,411205,112570 -) -k1,18978:25752872,6254097:174105 -k1,18978:26946062,6254097:174105 -k1,18978:29289410,6254097:174106 -k1,18978:30740812,6254097:174105 -k1,18978:32583029,6254097:0 -) -(1,18979:6630773,7119177:25952256,513147,7863 -g1,18978:9872183,7119177 -g1,18978:12833755,7119177 -g1,18978:16097448,7119177 -g1,18978:17488122,7119177 -g1,18978:19195990,7119177 -k1,18979:32583029,7119177:11511399 -g1,18979:32583029,7119177 -) -v1,18981:6630773,7804032:0,393216,0 -(1,18992:6630773,12905670:25952256,5494854,196608 -g1,18992:6630773,12905670 -g1,18992:6630773,12905670 -g1,18992:6434165,12905670 -(1,18992:6434165,12905670:0,5494854,196608 -r1,19031:32779637,12905670:26345472,5691462,196608 -k1,18992:6434165,12905670:-26345472 -) -(1,18992:6434165,12905670:26345472,5494854,196608 -[1,18992:6630773,12905670:25952256,5298246,0 -(1,18983:6630773,8031863:25952256,424439,112852 -(1,18982:6630773,8031863:0,0,0 -g1,18982:6630773,8031863 -g1,18982:6630773,8031863 -g1,18982:6303093,8031863 -(1,18982:6303093,8031863:0,0,0 -) -g1,18982:6630773,8031863 -) -k1,18983:6630773,8031863:0 -g1,18983:10614221,8031863 -g1,18983:11278129,8031863 -k1,18983:11278129,8031863:0 -h1,18983:13601807,8031863:0,0,0 -k1,18983:32583029,8031863:18981222 -g1,18983:32583029,8031863 -) -(1,18984:6630773,8716718:25952256,431045,112852 -h1,18984:6630773,8716718:0,0,0 -g1,18984:6962727,8716718 -g1,18984:7294681,8716718 -g1,18984:7626635,8716718 -g1,18984:7958589,8716718 -g1,18984:8290543,8716718 -g1,18984:8622497,8716718 -g1,18984:8954451,8716718 -g1,18984:11610083,8716718 -g1,18984:12273991,8716718 -g1,18984:14265715,8716718 -g1,18984:14929623,8716718 -g1,18984:16921347,8716718 -g1,18984:17585255,8716718 -g1,18984:18249163,8716718 -g1,18984:19908933,8716718 -g1,18984:21900657,8716718 -g1,18984:22564565,8716718 -k1,18984:22564565,8716718:0 -h1,18984:26548013,8716718:0,0,0 -k1,18984:32583029,8716718:6035016 -g1,18984:32583029,8716718 -) -(1,18985:6630773,9401573:25952256,431045,106246 -h1,18985:6630773,9401573:0,0,0 -g1,18985:6962727,9401573 -g1,18985:7294681,9401573 -g1,18985:7626635,9401573 -g1,18985:7958589,9401573 -g1,18985:8290543,9401573 -g1,18985:8622497,9401573 -g1,18985:8954451,9401573 -g1,18985:9286405,9401573 -g1,18985:9618359,9401573 -g1,18985:9950313,9401573 -g1,18985:10282267,9401573 -g1,18985:10614221,9401573 -g1,18985:10946175,9401573 -g1,18985:11278129,9401573 -g1,18985:11610083,9401573 -g1,18985:11942037,9401573 -g1,18985:12273991,9401573 -g1,18985:12605945,9401573 -g1,18985:12937899,9401573 -g1,18985:13269853,9401573 -g1,18985:13601807,9401573 -g1,18985:15261577,9401573 -g1,18985:15925485,9401573 -g1,18985:20240887,9401573 -g1,18985:21900657,9401573 -g1,18985:22564565,9401573 -g1,18985:24224335,9401573 -h1,18985:24556289,9401573:0,0,0 -k1,18985:32583029,9401573:8026740 -g1,18985:32583029,9401573 -) -(1,18986:6630773,10086428:25952256,424439,112852 -h1,18986:6630773,10086428:0,0,0 -g1,18986:6962727,10086428 -g1,18986:7294681,10086428 -g1,18986:12937898,10086428 -g1,18986:13601806,10086428 -g1,18986:15593530,10086428 -g1,18986:17917208,10086428 -g1,18986:18581116,10086428 -g1,18986:21568702,10086428 -h1,18986:21900656,10086428:0,0,0 -k1,18986:32583029,10086428:10682373 -g1,18986:32583029,10086428 -) -(1,18987:6630773,10771283:25952256,424439,79822 -h1,18987:6630773,10771283:0,0,0 -g1,18987:6962727,10771283 -g1,18987:7294681,10771283 -g1,18987:13269852,10771283 -h1,18987:13601806,10771283:0,0,0 -k1,18987:32583030,10771283:18981224 -g1,18987:32583030,10771283 -) -(1,18988:6630773,11456138:25952256,431045,106246 -h1,18988:6630773,11456138:0,0,0 -g1,18988:6962727,11456138 -g1,18988:7294681,11456138 -g1,18988:15925484,11456138 -g1,18988:16589392,11456138 -g1,18988:19908932,11456138 -k1,18988:19908932,11456138:0 -h1,18988:22564564,11456138:0,0,0 -k1,18988:32583029,11456138:10018465 -g1,18988:32583029,11456138 -) -(1,18989:6630773,12140993:25952256,431045,106246 -h1,18989:6630773,12140993:0,0,0 -g1,18989:6962727,12140993 -g1,18989:7294681,12140993 -g1,18989:7626635,12140993 -g1,18989:7958589,12140993 -g1,18989:8290543,12140993 -g1,18989:8622497,12140993 -g1,18989:8954451,12140993 -g1,18989:9286405,12140993 -g1,18989:9618359,12140993 -g1,18989:9950313,12140993 -g1,18989:10282267,12140993 -g1,18989:10614221,12140993 -g1,18989:10946175,12140993 -g1,18989:11278129,12140993 -g1,18989:11610083,12140993 -g1,18989:11942037,12140993 -g1,18989:12273991,12140993 -g1,18989:12605945,12140993 -g1,18989:12937899,12140993 -g1,18989:13269853,12140993 -g1,18989:13601807,12140993 -g1,18989:13933761,12140993 -g1,18989:14265715,12140993 -g1,18989:14597669,12140993 -g1,18989:14929623,12140993 -g1,18989:15261577,12140993 -g1,18989:15593531,12140993 -g1,18989:15925485,12140993 -g1,18989:16257439,12140993 -g1,18989:16589393,12140993 -g1,18989:16921347,12140993 -g1,18989:17253301,12140993 -g1,18989:19908933,12140993 -k1,18989:19908933,12140993:0 -h1,18989:22564565,12140993:0,0,0 -k1,18989:32583029,12140993:10018464 -g1,18989:32583029,12140993 -) -(1,18990:6630773,12825848:25952256,431045,79822 -h1,18990:6630773,12825848:0,0,0 -g1,18990:6962727,12825848 -g1,18990:7294681,12825848 -g1,18990:7626635,12825848 -g1,18990:7958589,12825848 -g1,18990:8290543,12825848 -g1,18990:8622497,12825848 -g1,18990:8954451,12825848 -g1,18990:9286405,12825848 -g1,18990:9618359,12825848 -g1,18990:9950313,12825848 -g1,18990:10282267,12825848 -g1,18990:10614221,12825848 -g1,18990:10946175,12825848 -g1,18990:11278129,12825848 -g1,18990:11610083,12825848 -g1,18990:11942037,12825848 -g1,18990:12273991,12825848 -g1,18990:12605945,12825848 -g1,18990:12937899,12825848 -g1,18990:13269853,12825848 -g1,18990:13601807,12825848 -g1,18990:13933761,12825848 -g1,18990:14265715,12825848 -g1,18990:14597669,12825848 -g1,18990:14929623,12825848 -g1,18990:15261577,12825848 -g1,18990:15593531,12825848 -g1,18990:15925485,12825848 -g1,18990:16257439,12825848 -g1,18990:16589393,12825848 -g1,18990:16921347,12825848 -g1,18990:17253301,12825848 -g1,18990:20240886,12825848 -h1,18990:23228472,12825848:0,0,0 -k1,18990:32583029,12825848:9354557 -g1,18990:32583029,12825848 -) -] -) -g1,18992:32583029,12905670 -g1,18992:6630773,12905670 -g1,18992:6630773,12905670 -g1,18992:32583029,12905670 -g1,18992:32583029,12905670 -) -h1,18992:6630773,13102278:0,0,0 -(1,18995:6630773,22251480:25952256,9083666,0 -k1,18995:10523651,22251480:3892878 -h1,18994:10523651,22251480:0,0,0 -(1,18994:10523651,22251480:18166500,9083666,0 -(1,18994:10523651,22251480:18167376,9083688,0 -(1,18994:10523651,22251480:18167376,9083688,0 -(1,18994:10523651,22251480:0,9083688,0 -(1,18994:10523651,22251480:0,14208860,0 -(1,18994:10523651,22251480:28417720,14208860,0 -) -k1,18994:10523651,22251480:-28417720 -) -) -g1,18994:28691027,22251480 -) -) -) -g1,18995:28690151,22251480 -k1,18995:32583029,22251480:3892878 -) -v1,19002:6630773,23116560:0,393216,0 -(1,19003:6630773,26857220:25952256,4133876,0 -g1,19003:6630773,26857220 -g1,19003:6237557,26857220 -r1,19031:6368629,26857220:131072,4133876,0 -g1,19003:6567858,26857220 -g1,19003:6764466,26857220 -[1,19003:6764466,26857220:25818563,4133876,0 -(1,19003:6764466,23389037:25818563,665693,196608 -(1,19002:6764466,23389037:0,665693,196608 -r1,19031:7868133,23389037:1103667,862301,196608 -k1,19002:6764466,23389037:-1103667 -) -(1,19002:6764466,23389037:1103667,665693,196608 -) -k1,19002:8153165,23389037:285032 -k1,19002:9471094,23389037:327680 -k1,19002:11053739,23389037:285032 -k1,19002:12732721,23389037:285031 -k1,19002:14036838,23389037:285032 -k1,19002:15818057,23389037:285032 -k1,19002:16719127,23389037:285032 -k1,19002:18023244,23389037:285032 -k1,19002:20278943,23389037:285031 -k1,19002:22592970,23389037:285032 -k1,19002:25389342,23389037:285032 -k1,19002:26357259,23389037:285032 -k1,19002:28882966,23389037:285031 -k1,19002:30619620,23389037:285032 -k1,19002:31563944,23389037:285032 -k1,19002:32583029,23389037:0 -) -(1,19003:6764466,24254117:25818563,505283,134348 -k1,19002:10154550,24254117:252220 -k1,19002:11598215,24254117:252220 -k1,19002:12869520,24254117:252220 -k1,19002:14867618,24254117:252219 -k1,19002:17414909,24254117:252220 -k1,19002:18686214,24254117:252220 -k1,19002:20221629,24254117:252220 -k1,19002:21924816,24254117:252220 -k1,19002:23368481,24254117:252220 -k1,19002:26381077,24254117:252220 -k1,19002:27091393,24254117:252219 -k1,19002:27995041,24254117:252220 -k1,19002:29266346,24254117:252220 -k1,19002:30675276,24254117:252220 -k1,19002:32583029,24254117:0 -) -(1,19003:6764466,25119197:25818563,505283,134348 -k1,19002:9856673,25119197:192239 -k1,19002:12381994,25119197:192239 -k1,19002:13968183,25119197:192238 -k1,19002:15179507,25119197:192239 -k1,19002:16867933,25119197:192239 -k1,19002:18553082,25119197:192239 -k1,19002:19915794,25119197:192239 -k1,19002:21099593,25119197:192239 -k1,19002:22672675,25119197:192238 -k1,19002:24035387,25119197:192239 -k1,19002:27892399,25119197:192239 -k1,19002:29633254,25119197:192239 -k1,19002:32583029,25119197:0 -) -(1,19003:6764466,25984277:25818563,513147,134348 -k1,19002:9538404,25984277:235073 -k1,19002:10389514,25984277:235072 -k1,19002:11643672,25984277:235073 -k1,19002:13156041,25984277:235072 -k1,19002:13922611,25984277:235073 -k1,19002:16123109,25984277:235073 -k1,19002:17041066,25984277:235072 -k1,19002:20111226,25984277:235073 -k1,19002:21107827,25984277:235073 -k1,19002:22794521,25984277:235072 -k1,19002:26222508,25984277:235073 -k1,19002:29529908,25984277:235072 -k1,19002:30447866,25984277:235073 -k1,19002:32583029,25984277:0 -) -(1,19003:6764466,26849357:25818563,505283,7863 -g1,19002:7579733,26849357 -g1,19002:8798047,26849357 -g1,19002:10493463,26849357 -k1,19003:32583028,26849357:18850776 -g1,19003:32583028,26849357 -) -] -g1,19003:32583029,26857220 -) -h1,19003:6630773,26857220:0,0,0 -(1,19007:6630773,27722300:25952256,505283,134348 -h1,19006:6630773,27722300:983040,0,0 -k1,19006:8342846,27722300:259140 -k1,19006:9133483,27722300:259140 -k1,19006:12170040,27722300:259141 -k1,19006:13080608,27722300:259140 -k1,19006:14925719,27722300:259140 -k1,19006:16791802,27722300:259140 -k1,19006:18425887,27722300:259140 -k1,19006:21365450,27722300:259140 -k1,19006:23018542,27722300:259141 -k1,19006:25296191,27722300:259140 -k1,19006:29587106,27722300:259140 -k1,19006:31914562,27722300:259140 -k1,19006:32583029,27722300:0 -) -(1,19007:6630773,28587380:25952256,505283,134348 -k1,19006:9678831,28587380:184135 -k1,19006:11737296,28587380:184135 -k1,19006:13025713,28587380:184135 -k1,19006:13957614,28587380:184135 -k1,19006:16107174,28587380:184135 -k1,19006:16907347,28587380:184135 -k1,19006:17447342,28587380:184135 -k1,19006:19504496,28587380:184135 -k1,19006:21246422,28587380:184135 -k1,19006:22824508,28587380:184135 -(1,19006:22824508,28587380:0,452978,122846 -r1,19031:28810163,28587380:5985655,575824,122846 -k1,19006:22824508,28587380:-5985655 -) -(1,19006:22824508,28587380:5985655,452978,122846 -k1,19006:22824508,28587380:3277 -h1,19006:28806886,28587380:0,411205,112570 -) -k1,19006:28994298,28587380:184135 -k1,19006:30572384,28587380:184135 -k1,19006:32583029,28587380:0 -) -(1,19007:6630773,29452460:25952256,513147,134348 -k1,19006:9448737,29452460:232569 -k1,19006:10332734,29452460:232569 -k1,19006:11584388,29452460:232569 -(1,19006:11584388,29452460:0,414482,115847 -r1,19031:11942654,29452460:358266,530329,115847 -k1,19006:11584388,29452460:-358266 -) -(1,19006:11584388,29452460:358266,414482,115847 -k1,19006:11584388,29452460:3277 -h1,19006:11939377,29452460:0,411205,112570 -) -k1,19006:12348893,29452460:232569 -(1,19006:12348893,29452460:0,414482,115847 -r1,19031:12707159,29452460:358266,530329,115847 -k1,19006:12348893,29452460:-358266 -) -(1,19006:12348893,29452460:358266,414482,115847 -k1,19006:12348893,29452460:3277 -h1,19006:12703882,29452460:0,411205,112570 -) -k1,19006:13113397,29452460:232568 -(1,19006:13113397,29452460:0,452978,115847 -r1,19031:14526798,29452460:1413401,568825,115847 -k1,19006:13113397,29452460:-1413401 -) -(1,19006:13113397,29452460:1413401,452978,115847 -k1,19006:13113397,29452460:3277 -h1,19006:14523521,29452460:0,411205,112570 -) -k1,19006:14759367,29452460:232569 -k1,19006:16183381,29452460:232569 -(1,19006:16183381,29452460:0,414482,115847 -r1,19031:17596782,29452460:1413401,530329,115847 -k1,19006:16183381,29452460:-1413401 -) -(1,19006:16183381,29452460:1413401,414482,115847 -k1,19006:16183381,29452460:3277 -h1,19006:17593505,29452460:0,411205,112570 -) -k1,19006:17829351,29452460:232569 -k1,19006:21410154,29452460:232569 -k1,19006:23378116,29452460:232569 -(1,19006:23378116,29452460:0,414482,115847 -r1,19031:23736382,29452460:358266,530329,115847 -k1,19006:23378116,29452460:-358266 -) -(1,19006:23378116,29452460:358266,414482,115847 -k1,19006:23378116,29452460:3277 -h1,19006:23733105,29452460:0,411205,112570 -) -k1,19006:23968951,29452460:232569 -k1,19006:25149171,29452460:232569 -k1,19006:26400824,29452460:232568 -k1,19006:28321600,29452460:232569 -k1,19006:29745614,29452460:232569 -(1,19006:29745614,29452460:0,452978,115847 -r1,19031:31159015,29452460:1413401,568825,115847 -k1,19006:29745614,29452460:-1413401 -) -(1,19006:29745614,29452460:1413401,452978,115847 -k1,19006:29745614,29452460:3277 -h1,19006:31155738,29452460:0,411205,112570 -) -k1,19006:31391584,29452460:232569 -k1,19007:32583029,29452460:0 -) -(1,19007:6630773,30317540:25952256,513147,134348 -(1,19006:6630773,30317540:0,414482,115847 -r1,19031:8044174,30317540:1413401,530329,115847 -k1,19006:6630773,30317540:-1413401 -) -(1,19006:6630773,30317540:1413401,414482,115847 -k1,19006:6630773,30317540:3277 -h1,19006:8040897,30317540:0,411205,112570 -) -k1,19006:8318021,30317540:273847 -k1,19006:9539518,30317540:273846 -k1,19006:10832450,30317540:273847 -k1,19006:12619523,30317540:273847 -k1,19006:13552661,30317540:273846 -k1,19006:14845593,30317540:273847 -k1,19006:16287947,30317540:273847 -k1,19006:19426372,30317540:273846 -k1,19006:21050261,30317540:273847 -k1,19006:23026078,30317540:273847 -k1,19006:26890641,30317540:273846 -(1,19006:26890641,30317540:0,452978,122846 -r1,19031:31117737,30317540:4227096,575824,122846 -k1,19006:26890641,30317540:-4227096 -) -(1,19006:26890641,30317540:4227096,452978,122846 -k1,19006:26890641,30317540:3277 -h1,19006:31114460,30317540:0,411205,112570 -) -k1,19006:31391584,30317540:273847 -k1,19007:32583029,30317540:0 -) -(1,19007:6630773,31182620:25952256,505283,134348 -(1,19006:6630773,31182620:0,452978,122846 -r1,19031:11913004,31182620:5282231,575824,122846 -k1,19006:6630773,31182620:-5282231 -) -(1,19006:6630773,31182620:5282231,452978,122846 -k1,19006:6630773,31182620:3277 -h1,19006:11909727,31182620:0,411205,112570 -) -k1,19006:12081593,31182620:168589 -k1,19006:13836153,31182620:168589 -k1,19006:15380343,31182620:168589 -k1,19006:15904792,31182620:168589 -k1,19006:18764289,31182620:168589 -k1,19006:19615762,31182620:168588 -k1,19006:20140211,31182620:168589 -k1,19006:22999708,31182620:168589 -k1,19006:24562248,31182620:168589 -k1,19006:27029840,31182620:168589 -k1,19006:28885326,31182620:168589 -k1,19006:30928245,31182620:168589 -k1,19007:32583029,31182620:0 -) -(1,19007:6630773,32047700:25952256,513147,134348 -(1,19006:6630773,32047700:0,414482,122846 -r1,19031:8395886,32047700:1765113,537328,122846 -k1,19006:6630773,32047700:-1765113 -) -(1,19006:6630773,32047700:1765113,414482,122846 -k1,19006:6630773,32047700:3277 -h1,19006:8392609,32047700:0,411205,112570 -) -k1,19006:8600495,32047700:204609 -k1,19006:9796665,32047700:204610 -k1,19006:13306255,32047700:204609 -k1,19006:15024090,32047700:204609 -k1,19006:17909123,32047700:204610 -k1,19006:19507683,32047700:204609 -(1,19006:19507683,32047700:0,414482,115847 -r1,19031:21272796,32047700:1765113,530329,115847 -k1,19006:19507683,32047700:-1765113 -) -(1,19006:19507683,32047700:1765113,414482,115847 -k1,19006:19507683,32047700:3277 -h1,19006:21269519,32047700:0,411205,112570 -) -k1,19006:21477406,32047700:204610 -k1,19006:22966521,32047700:204609 -k1,19006:25959032,32047700:204609 -k1,19006:29671784,32047700:204610 -k1,19006:30637921,32047700:204609 -k1,19006:32583029,32047700:0 -) -(1,19007:6630773,32912780:25952256,513147,134348 -k1,19006:9811016,32912780:245541 -k1,19006:13046965,32912780:245541 -k1,19006:15303152,32912780:245542 -k1,19006:18777652,32912780:245541 -k1,19006:21065950,32912780:245541 -k1,19006:23835938,32912780:245541 -k1,19006:25185762,32912780:245542 -k1,19006:29384435,32912780:245541 -k1,19006:30377742,32912780:245541 -k1,19006:32583029,32912780:0 -) -(1,19007:6630773,33777860:25952256,452978,115847 -g1,19006:7516164,33777860 -(1,19006:7516164,33777860:0,452978,115847 -r1,19031:8929565,33777860:1413401,568825,115847 -k1,19006:7516164,33777860:-1413401 -) -(1,19006:7516164,33777860:1413401,452978,115847 -k1,19006:7516164,33777860:3277 -h1,19006:8926288,33777860:0,411205,112570 -) -k1,19007:32583029,33777860:23601036 -g1,19007:32583029,33777860 -) -(1,19008:6630773,35894678:25952256,534184,147783 -(1,19008:6630773,35894678:2450326,534184,12975 -g1,19008:6630773,35894678 -g1,19008:9081099,35894678 -) -k1,19008:32583029,35894678:22079602 -g1,19008:32583029,35894678 -) -(1,19012:6630773,37152974:25952256,505283,134348 -k1,19011:9038616,37152974:231392 -k1,19011:10347421,37152974:231393 -k1,19011:12186411,37152974:231392 -k1,19011:13409364,37152974:231393 -k1,19011:15153982,37152974:231392 -k1,19011:16146902,37152974:231392 -k1,19011:20108604,37152974:231393 -k1,19011:22678976,37152974:231392 -k1,19011:24290556,37152974:231392 -k1,19011:25513509,37152974:231393 -k1,19011:28032108,37152974:231392 -k1,19011:29034204,37152974:231393 -k1,19011:31931601,37152974:231392 -k1,19011:32583029,37152974:0 -) -(1,19012:6630773,38018054:25952256,513147,126483 -k1,19011:8995279,38018054:195264 -k1,19011:10971813,38018054:195265 -k1,19011:12069508,38018054:195264 -k1,19011:14926190,38018054:195265 -k1,19011:15780746,38018054:195264 -k1,19011:16995096,38018054:195265 -k1,19011:18282845,38018054:195264 -k1,19011:19145266,38018054:195265 -(1,19011:19145266,38018054:0,452978,122846 -r1,19031:22668938,38018054:3523672,575824,122846 -k1,19011:19145266,38018054:-3523672 -) -(1,19011:19145266,38018054:3523672,452978,122846 -k1,19011:19145266,38018054:3277 -h1,19011:22665661,38018054:0,411205,112570 -) -k1,19011:22864202,38018054:195264 -k1,19011:25548524,38018054:195265 -k1,19011:27301579,38018054:195264 -k1,19011:29212577,38018054:195265 -k1,19011:29865938,38018054:195264 -k1,19011:31931601,38018054:195265 -k1,19011:32583029,38018054:0 -) -(1,19012:6630773,38883134:25952256,513147,138281 -k1,19011:7791970,38883134:136214 -k1,19011:8947269,38883134:136214 -k1,19011:12864910,38883134:136214 -k1,19011:13660416,38883134:136214 -k1,19011:17868382,38883134:136214 -k1,19011:19749164,38883134:136214 -k1,19011:20904463,38883134:136214 -$1,19011:20904463,38883134 -$1,19011:21407124,38883134 -k1,19011:21756330,38883134:136214 -k1,19011:24102418,38883134:136214 -$1,19011:24102418,38883134 -$1,19011:24654231,38883134 -k1,19011:26575646,38883134:136214 -k1,19011:27472078,38883134:136214 -k1,19011:30047542,38883134:136214 -k1,19011:31591469,38883134:136214 -k1,19011:32583029,38883134:0 -) -(1,19012:6630773,39748214:25952256,513147,134348 -k1,19011:8775596,39748214:144009 -k1,19011:9728975,39748214:144009 -k1,19011:10892068,39748214:144008 -k1,19011:12110212,39748214:144009 -k1,19011:13445666,39748214:144009 -k1,19011:15912926,39748214:144009 -k1,19011:17876869,39748214:144008 -k1,19011:18680170,39748214:144009 -k1,19011:19843264,39748214:144009 -k1,19011:22511720,39748214:144009 -k1,19011:24176819,39748214:144008 -k1,19011:25081046,39748214:144009 -k1,19011:27652509,39748214:144009 -(1,19011:27652509,39748214:0,452978,115847 -r1,19031:32583029,39748214:4930520,568825,115847 -k1,19011:27652509,39748214:-4930520 -) -(1,19011:27652509,39748214:4930520,452978,115847 -g1,19011:29766057,39748214 -g1,19011:30469481,39748214 -h1,19011:32579752,39748214:0,411205,112570 -) -k1,19011:32583029,39748214:0 -) -(1,19012:6630773,40613294:25952256,513147,134348 -k1,19011:8190904,40613294:179943 -k1,19011:9362407,40613294:179943 -k1,19011:11543164,40613294:179943 -k1,19011:12532477,40613294:179943 -k1,19011:13731505,40613294:179943 -k1,19011:16408370,40613294:179943 -k1,19011:17834152,40613294:179943 -k1,19011:19088230,40613294:179943 -k1,19011:20459618,40613294:179943 -k1,19011:22175070,40613294:179943 -k1,19011:25113423,40613294:179943 -k1,19011:26556900,40613294:179943 -k1,19011:30724709,40613294:179943 -k1,19011:31563944,40613294:179943 -k1,19011:32583029,40613294:0 -) -(1,19012:6630773,41478374:25952256,513147,134348 -g1,19011:8192496,41478374 -g1,19011:11696706,41478374 -g1,19011:13000217,41478374 -g1,19011:13947212,41478374 -g1,19011:15659667,41478374 -g1,19011:16510324,41478374 -g1,19011:18997415,41478374 -g1,19011:20215729,41478374 -g1,19011:22991178,41478374 -g1,19011:23849699,41478374 -g1,19011:25068013,41478374 -k1,19012:32583029,41478374:6054874 -g1,19012:32583029,41478374 -) -v1,19014:6630773,42163229:0,393216,0 -(1,19021:6630773,44558477:25952256,2788464,196608 -g1,19021:6630773,44558477 -g1,19021:6630773,44558477 -g1,19021:6434165,44558477 -(1,19021:6434165,44558477:0,2788464,196608 -r1,19031:32779637,44558477:26345472,2985072,196608 -k1,19021:6434165,44558477:-26345472 -) -(1,19021:6434165,44558477:26345472,2788464,196608 -[1,19021:6630773,44558477:25952256,2591856,0 -(1,19016:6630773,42391060:25952256,424439,112852 -(1,19015:6630773,42391060:0,0,0 -g1,19015:6630773,42391060 -g1,19015:6630773,42391060 -g1,19015:6303093,42391060 -(1,19015:6303093,42391060:0,0,0 -) -g1,19015:6630773,42391060 -) -k1,19016:6630773,42391060:0 -g1,19016:10614221,42391060 -g1,19016:11278129,42391060 -k1,19016:11278129,42391060:0 -h1,19016:13601807,42391060:0,0,0 -k1,19016:32583029,42391060:18981222 -g1,19016:32583029,42391060 -) -(1,19017:6630773,43075915:25952256,431045,112852 -h1,19017:6630773,43075915:0,0,0 -g1,19017:6962727,43075915 -g1,19017:7294681,43075915 -g1,19017:7626635,43075915 -g1,19017:7958589,43075915 -g1,19017:8290543,43075915 -g1,19017:8622497,43075915 -g1,19017:8954451,43075915 -g1,19017:11610083,43075915 -g1,19017:12273991,43075915 -g1,19017:14265715,43075915 -g1,19017:14929623,43075915 -g1,19017:16921347,43075915 -g1,19017:17585255,43075915 -g1,19017:18249163,43075915 -g1,19017:19908933,43075915 -g1,19017:22232611,43075915 -g1,19017:22896519,43075915 -g1,19017:27543875,43075915 -h1,19017:27875829,43075915:0,0,0 -k1,19017:32583029,43075915:4707200 -g1,19017:32583029,43075915 -) -(1,19018:6630773,43760770:25952256,424439,112852 -h1,19018:6630773,43760770:0,0,0 -g1,19018:6962727,43760770 -g1,19018:7294681,43760770 -g1,19018:11610082,43760770 -h1,19018:11942036,43760770:0,0,0 -k1,19018:32583028,43760770:20640992 -g1,19018:32583028,43760770 -) -(1,19019:6630773,44445625:25952256,424439,112852 -h1,19019:6630773,44445625:0,0,0 -g1,19019:6962727,44445625 -g1,19019:7294681,44445625 -g1,19019:12273990,44445625 -g1,19019:12937898,44445625 -h1,19019:15261576,44445625:0,0,0 -k1,19019:32583028,44445625:17321452 -g1,19019:32583028,44445625 -) -] -) -g1,19021:32583029,44558477 -g1,19021:6630773,44558477 -g1,19021:6630773,44558477 -g1,19021:32583029,44558477 -g1,19021:32583029,44558477 -) -h1,19021:6630773,44755085:0,0,0 -] -(1,19031:32583029,45706769:0,0,0 -g1,19031:32583029,45706769 -) -) -] -(1,19031:6630773,47279633:25952256,0,0 -h1,19031:6630773,47279633:25952256,0,0 -) -] -(1,19031:4262630,4025873:0,0,0 -[1,19031:-473656,4025873:0,0,0 -(1,19031:-473656,-710413:0,0,0 -(1,19031:-473656,-710413:0,0,0 -g1,19031:-473656,-710413 -) -g1,19031:-473656,-710413 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19029:37855564,49800853:1179648,16384,0 +) +) +k1,19029:3078556,49800853:-34777008 +) +] +g1,19029:6630773,4812305 +g1,19029:6630773,4812305 +g1,19029:10347975,4812305 +k1,19029:31387651,4812305:21039676 +) +) +] +[1,19029:6630773,45706769:25952256,40108032,0 +(1,19029:6630773,45706769:25952256,40108032,0 +(1,19029:6630773,45706769:0,0,0 +g1,19029:6630773,45706769 +) +[1,19029:6630773,45706769:25952256,40108032,0 +(1,18977:6630773,6254097:25952256,513147,134348 +h1,18976:6630773,6254097:983040,0,0 +k1,18976:8605807,6254097:174105 +k1,18976:9135773,6254097:174106 +k1,18976:10716281,6254097:174105 +k1,18976:13551803,6254097:174105 +k1,18976:17876959,6254097:174106 +k1,18976:19070149,6254097:174105 +k1,18976:20336739,6254097:174105 +k1,18976:21178001,6254097:174106 +(1,18976:21178001,6254097:0,452978,122846 +r1,19029:25405097,6254097:4227096,575824,122846 +k1,18976:21178001,6254097:-4227096 +) +(1,18976:21178001,6254097:4227096,452978,122846 +k1,18976:21178001,6254097:3277 +h1,18976:25401820,6254097:0,411205,112570 +) +k1,18976:25752872,6254097:174105 +k1,18976:26946062,6254097:174105 +k1,18976:29289410,6254097:174106 +k1,18976:30740812,6254097:174105 +k1,18976:32583029,6254097:0 +) +(1,18977:6630773,7119177:25952256,513147,7863 +g1,18976:9872183,7119177 +g1,18976:12833755,7119177 +g1,18976:16097448,7119177 +g1,18976:17488122,7119177 +g1,18976:19195990,7119177 +k1,18977:32583029,7119177:11511399 +g1,18977:32583029,7119177 +) +v1,18979:6630773,7804032:0,393216,0 +(1,18990:6630773,12905670:25952256,5494854,196608 +g1,18990:6630773,12905670 +g1,18990:6630773,12905670 +g1,18990:6434165,12905670 +(1,18990:6434165,12905670:0,5494854,196608 +r1,19029:32779637,12905670:26345472,5691462,196608 +k1,18990:6434165,12905670:-26345472 +) +(1,18990:6434165,12905670:26345472,5494854,196608 +[1,18990:6630773,12905670:25952256,5298246,0 +(1,18981:6630773,8031863:25952256,424439,112852 +(1,18980:6630773,8031863:0,0,0 +g1,18980:6630773,8031863 +g1,18980:6630773,8031863 +g1,18980:6303093,8031863 +(1,18980:6303093,8031863:0,0,0 +) +g1,18980:6630773,8031863 +) +k1,18981:6630773,8031863:0 +g1,18981:10614221,8031863 +g1,18981:11278129,8031863 +k1,18981:11278129,8031863:0 +h1,18981:13601807,8031863:0,0,0 +k1,18981:32583029,8031863:18981222 +g1,18981:32583029,8031863 +) +(1,18982:6630773,8716718:25952256,431045,112852 +h1,18982:6630773,8716718:0,0,0 +g1,18982:6962727,8716718 +g1,18982:7294681,8716718 +g1,18982:7626635,8716718 +g1,18982:7958589,8716718 +g1,18982:8290543,8716718 +g1,18982:8622497,8716718 +g1,18982:8954451,8716718 +g1,18982:11610083,8716718 +g1,18982:12273991,8716718 +g1,18982:14265715,8716718 +g1,18982:14929623,8716718 +g1,18982:16921347,8716718 +g1,18982:17585255,8716718 +g1,18982:18249163,8716718 +g1,18982:19908933,8716718 +g1,18982:21900657,8716718 +g1,18982:22564565,8716718 +k1,18982:22564565,8716718:0 +h1,18982:26548013,8716718:0,0,0 +k1,18982:32583029,8716718:6035016 +g1,18982:32583029,8716718 +) +(1,18983:6630773,9401573:25952256,431045,106246 +h1,18983:6630773,9401573:0,0,0 +g1,18983:6962727,9401573 +g1,18983:7294681,9401573 +g1,18983:7626635,9401573 +g1,18983:7958589,9401573 +g1,18983:8290543,9401573 +g1,18983:8622497,9401573 +g1,18983:8954451,9401573 +g1,18983:9286405,9401573 +g1,18983:9618359,9401573 +g1,18983:9950313,9401573 +g1,18983:10282267,9401573 +g1,18983:10614221,9401573 +g1,18983:10946175,9401573 +g1,18983:11278129,9401573 +g1,18983:11610083,9401573 +g1,18983:11942037,9401573 +g1,18983:12273991,9401573 +g1,18983:12605945,9401573 +g1,18983:12937899,9401573 +g1,18983:13269853,9401573 +g1,18983:13601807,9401573 +g1,18983:15261577,9401573 +g1,18983:15925485,9401573 +g1,18983:20240887,9401573 +g1,18983:21900657,9401573 +g1,18983:22564565,9401573 +g1,18983:24224335,9401573 +h1,18983:24556289,9401573:0,0,0 +k1,18983:32583029,9401573:8026740 +g1,18983:32583029,9401573 +) +(1,18984:6630773,10086428:25952256,424439,112852 +h1,18984:6630773,10086428:0,0,0 +g1,18984:6962727,10086428 +g1,18984:7294681,10086428 +g1,18984:12937898,10086428 +g1,18984:13601806,10086428 +g1,18984:15593530,10086428 +g1,18984:17917208,10086428 +g1,18984:18581116,10086428 +g1,18984:21568702,10086428 +h1,18984:21900656,10086428:0,0,0 +k1,18984:32583029,10086428:10682373 +g1,18984:32583029,10086428 +) +(1,18985:6630773,10771283:25952256,424439,79822 +h1,18985:6630773,10771283:0,0,0 +g1,18985:6962727,10771283 +g1,18985:7294681,10771283 +g1,18985:13269852,10771283 +h1,18985:13601806,10771283:0,0,0 +k1,18985:32583030,10771283:18981224 +g1,18985:32583030,10771283 +) +(1,18986:6630773,11456138:25952256,431045,106246 +h1,18986:6630773,11456138:0,0,0 +g1,18986:6962727,11456138 +g1,18986:7294681,11456138 +g1,18986:15925484,11456138 +g1,18986:16589392,11456138 +g1,18986:19908932,11456138 +k1,18986:19908932,11456138:0 +h1,18986:22564564,11456138:0,0,0 +k1,18986:32583029,11456138:10018465 +g1,18986:32583029,11456138 +) +(1,18987:6630773,12140993:25952256,431045,106246 +h1,18987:6630773,12140993:0,0,0 +g1,18987:6962727,12140993 +g1,18987:7294681,12140993 +g1,18987:7626635,12140993 +g1,18987:7958589,12140993 +g1,18987:8290543,12140993 +g1,18987:8622497,12140993 +g1,18987:8954451,12140993 +g1,18987:9286405,12140993 +g1,18987:9618359,12140993 +g1,18987:9950313,12140993 +g1,18987:10282267,12140993 +g1,18987:10614221,12140993 +g1,18987:10946175,12140993 +g1,18987:11278129,12140993 +g1,18987:11610083,12140993 +g1,18987:11942037,12140993 +g1,18987:12273991,12140993 +g1,18987:12605945,12140993 +g1,18987:12937899,12140993 +g1,18987:13269853,12140993 +g1,18987:13601807,12140993 +g1,18987:13933761,12140993 +g1,18987:14265715,12140993 +g1,18987:14597669,12140993 +g1,18987:14929623,12140993 +g1,18987:15261577,12140993 +g1,18987:15593531,12140993 +g1,18987:15925485,12140993 +g1,18987:16257439,12140993 +g1,18987:16589393,12140993 +g1,18987:16921347,12140993 +g1,18987:17253301,12140993 +g1,18987:19908933,12140993 +k1,18987:19908933,12140993:0 +h1,18987:22564565,12140993:0,0,0 +k1,18987:32583029,12140993:10018464 +g1,18987:32583029,12140993 +) +(1,18988:6630773,12825848:25952256,431045,79822 +h1,18988:6630773,12825848:0,0,0 +g1,18988:6962727,12825848 +g1,18988:7294681,12825848 +g1,18988:7626635,12825848 +g1,18988:7958589,12825848 +g1,18988:8290543,12825848 +g1,18988:8622497,12825848 +g1,18988:8954451,12825848 +g1,18988:9286405,12825848 +g1,18988:9618359,12825848 +g1,18988:9950313,12825848 +g1,18988:10282267,12825848 +g1,18988:10614221,12825848 +g1,18988:10946175,12825848 +g1,18988:11278129,12825848 +g1,18988:11610083,12825848 +g1,18988:11942037,12825848 +g1,18988:12273991,12825848 +g1,18988:12605945,12825848 +g1,18988:12937899,12825848 +g1,18988:13269853,12825848 +g1,18988:13601807,12825848 +g1,18988:13933761,12825848 +g1,18988:14265715,12825848 +g1,18988:14597669,12825848 +g1,18988:14929623,12825848 +g1,18988:15261577,12825848 +g1,18988:15593531,12825848 +g1,18988:15925485,12825848 +g1,18988:16257439,12825848 +g1,18988:16589393,12825848 +g1,18988:16921347,12825848 +g1,18988:17253301,12825848 +g1,18988:20240886,12825848 +h1,18988:23228472,12825848:0,0,0 +k1,18988:32583029,12825848:9354557 +g1,18988:32583029,12825848 +) +] +) +g1,18990:32583029,12905670 +g1,18990:6630773,12905670 +g1,18990:6630773,12905670 +g1,18990:32583029,12905670 +g1,18990:32583029,12905670 +) +h1,18990:6630773,13102278:0,0,0 +(1,18993:6630773,22251480:25952256,9083666,0 +k1,18993:10523651,22251480:3892878 +h1,18992:10523651,22251480:0,0,0 +(1,18992:10523651,22251480:18166500,9083666,0 +(1,18992:10523651,22251480:18167376,9083688,0 +(1,18992:10523651,22251480:18167376,9083688,0 +(1,18992:10523651,22251480:0,9083688,0 +(1,18992:10523651,22251480:0,14208860,0 +(1,18992:10523651,22251480:28417720,14208860,0 +) +k1,18992:10523651,22251480:-28417720 +) +) +g1,18992:28691027,22251480 +) +) +) +g1,18993:28690151,22251480 +k1,18993:32583029,22251480:3892878 +) +v1,19000:6630773,23116560:0,393216,0 +(1,19001:6630773,26857220:25952256,4133876,0 +g1,19001:6630773,26857220 +g1,19001:6237557,26857220 +r1,19029:6368629,26857220:131072,4133876,0 +g1,19001:6567858,26857220 +g1,19001:6764466,26857220 +[1,19001:6764466,26857220:25818563,4133876,0 +(1,19001:6764466,23389037:25818563,665693,196608 +(1,19000:6764466,23389037:0,665693,196608 +r1,19029:7868133,23389037:1103667,862301,196608 +k1,19000:6764466,23389037:-1103667 +) +(1,19000:6764466,23389037:1103667,665693,196608 +) +k1,19000:8153165,23389037:285032 +k1,19000:9471094,23389037:327680 +k1,19000:11053739,23389037:285032 +k1,19000:12732721,23389037:285031 +k1,19000:14036838,23389037:285032 +k1,19000:15818057,23389037:285032 +k1,19000:16719127,23389037:285032 +k1,19000:18023244,23389037:285032 +k1,19000:20278943,23389037:285031 +k1,19000:22592970,23389037:285032 +k1,19000:25389342,23389037:285032 +k1,19000:26357259,23389037:285032 +k1,19000:28882966,23389037:285031 +k1,19000:30619620,23389037:285032 +k1,19000:31563944,23389037:285032 +k1,19000:32583029,23389037:0 +) +(1,19001:6764466,24254117:25818563,505283,134348 +k1,19000:10154550,24254117:252220 +k1,19000:11598215,24254117:252220 +k1,19000:12869520,24254117:252220 +k1,19000:14867618,24254117:252219 +k1,19000:17414909,24254117:252220 +k1,19000:18686214,24254117:252220 +k1,19000:20221629,24254117:252220 +k1,19000:21924816,24254117:252220 +k1,19000:23368481,24254117:252220 +k1,19000:26381077,24254117:252220 +k1,19000:27091393,24254117:252219 +k1,19000:27995041,24254117:252220 +k1,19000:29266346,24254117:252220 +k1,19000:30675276,24254117:252220 +k1,19000:32583029,24254117:0 +) +(1,19001:6764466,25119197:25818563,505283,134348 +k1,19000:9856673,25119197:192239 +k1,19000:12381994,25119197:192239 +k1,19000:13968183,25119197:192238 +k1,19000:15179507,25119197:192239 +k1,19000:16867933,25119197:192239 +k1,19000:18553082,25119197:192239 +k1,19000:19915794,25119197:192239 +k1,19000:21099593,25119197:192239 +k1,19000:22672675,25119197:192238 +k1,19000:24035387,25119197:192239 +k1,19000:27892399,25119197:192239 +k1,19000:29633254,25119197:192239 +k1,19000:32583029,25119197:0 +) +(1,19001:6764466,25984277:25818563,513147,134348 +k1,19000:9538404,25984277:235073 +k1,19000:10389514,25984277:235072 +k1,19000:11643672,25984277:235073 +k1,19000:13156041,25984277:235072 +k1,19000:13922611,25984277:235073 +k1,19000:16123109,25984277:235073 +k1,19000:17041066,25984277:235072 +k1,19000:20111226,25984277:235073 +k1,19000:21107827,25984277:235073 +k1,19000:22794521,25984277:235072 +k1,19000:26222508,25984277:235073 +k1,19000:29529908,25984277:235072 +k1,19000:30447866,25984277:235073 +k1,19000:32583029,25984277:0 +) +(1,19001:6764466,26849357:25818563,505283,7863 +g1,19000:7579733,26849357 +g1,19000:8798047,26849357 +g1,19000:10493463,26849357 +k1,19001:32583028,26849357:18850776 +g1,19001:32583028,26849357 +) +] +g1,19001:32583029,26857220 +) +h1,19001:6630773,26857220:0,0,0 +(1,19005:6630773,27722300:25952256,505283,134348 +h1,19004:6630773,27722300:983040,0,0 +k1,19004:8342846,27722300:259140 +k1,19004:9133483,27722300:259140 +k1,19004:12170040,27722300:259141 +k1,19004:13080608,27722300:259140 +k1,19004:14925719,27722300:259140 +k1,19004:16791802,27722300:259140 +k1,19004:18425887,27722300:259140 +k1,19004:21365450,27722300:259140 +k1,19004:23018542,27722300:259141 +k1,19004:25296191,27722300:259140 +k1,19004:29587106,27722300:259140 +k1,19004:31914562,27722300:259140 +k1,19004:32583029,27722300:0 +) +(1,19005:6630773,28587380:25952256,505283,134348 +k1,19004:9678831,28587380:184135 +k1,19004:11737296,28587380:184135 +k1,19004:13025713,28587380:184135 +k1,19004:13957614,28587380:184135 +k1,19004:16107174,28587380:184135 +k1,19004:16907347,28587380:184135 +k1,19004:17447342,28587380:184135 +k1,19004:19504496,28587380:184135 +k1,19004:21246422,28587380:184135 +k1,19004:22824508,28587380:184135 +(1,19004:22824508,28587380:0,452978,122846 +r1,19029:28810163,28587380:5985655,575824,122846 +k1,19004:22824508,28587380:-5985655 +) +(1,19004:22824508,28587380:5985655,452978,122846 +k1,19004:22824508,28587380:3277 +h1,19004:28806886,28587380:0,411205,112570 +) +k1,19004:28994298,28587380:184135 +k1,19004:30572384,28587380:184135 +k1,19004:32583029,28587380:0 +) +(1,19005:6630773,29452460:25952256,513147,134348 +k1,19004:9448737,29452460:232569 +k1,19004:10332734,29452460:232569 +k1,19004:11584388,29452460:232569 +(1,19004:11584388,29452460:0,414482,115847 +r1,19029:11942654,29452460:358266,530329,115847 +k1,19004:11584388,29452460:-358266 +) +(1,19004:11584388,29452460:358266,414482,115847 +k1,19004:11584388,29452460:3277 +h1,19004:11939377,29452460:0,411205,112570 +) +k1,19004:12348893,29452460:232569 +(1,19004:12348893,29452460:0,414482,115847 +r1,19029:12707159,29452460:358266,530329,115847 +k1,19004:12348893,29452460:-358266 +) +(1,19004:12348893,29452460:358266,414482,115847 +k1,19004:12348893,29452460:3277 +h1,19004:12703882,29452460:0,411205,112570 +) +k1,19004:13113397,29452460:232568 +(1,19004:13113397,29452460:0,452978,115847 +r1,19029:14526798,29452460:1413401,568825,115847 +k1,19004:13113397,29452460:-1413401 +) +(1,19004:13113397,29452460:1413401,452978,115847 +k1,19004:13113397,29452460:3277 +h1,19004:14523521,29452460:0,411205,112570 +) +k1,19004:14759367,29452460:232569 +k1,19004:16183381,29452460:232569 +(1,19004:16183381,29452460:0,414482,115847 +r1,19029:17596782,29452460:1413401,530329,115847 +k1,19004:16183381,29452460:-1413401 +) +(1,19004:16183381,29452460:1413401,414482,115847 +k1,19004:16183381,29452460:3277 +h1,19004:17593505,29452460:0,411205,112570 +) +k1,19004:17829351,29452460:232569 +k1,19004:21410154,29452460:232569 +k1,19004:23378116,29452460:232569 +(1,19004:23378116,29452460:0,414482,115847 +r1,19029:23736382,29452460:358266,530329,115847 +k1,19004:23378116,29452460:-358266 +) +(1,19004:23378116,29452460:358266,414482,115847 +k1,19004:23378116,29452460:3277 +h1,19004:23733105,29452460:0,411205,112570 +) +k1,19004:23968951,29452460:232569 +k1,19004:25149171,29452460:232569 +k1,19004:26400824,29452460:232568 +k1,19004:28321600,29452460:232569 +k1,19004:29745614,29452460:232569 +(1,19004:29745614,29452460:0,452978,115847 +r1,19029:31159015,29452460:1413401,568825,115847 +k1,19004:29745614,29452460:-1413401 +) +(1,19004:29745614,29452460:1413401,452978,115847 +k1,19004:29745614,29452460:3277 +h1,19004:31155738,29452460:0,411205,112570 +) +k1,19004:31391584,29452460:232569 +k1,19005:32583029,29452460:0 +) +(1,19005:6630773,30317540:25952256,513147,134348 +(1,19004:6630773,30317540:0,414482,115847 +r1,19029:8044174,30317540:1413401,530329,115847 +k1,19004:6630773,30317540:-1413401 +) +(1,19004:6630773,30317540:1413401,414482,115847 +k1,19004:6630773,30317540:3277 +h1,19004:8040897,30317540:0,411205,112570 +) +k1,19004:8318021,30317540:273847 +k1,19004:9539518,30317540:273846 +k1,19004:10832450,30317540:273847 +k1,19004:12619523,30317540:273847 +k1,19004:13552661,30317540:273846 +k1,19004:14845593,30317540:273847 +k1,19004:16287947,30317540:273847 +k1,19004:19426372,30317540:273846 +k1,19004:21050261,30317540:273847 +k1,19004:23026078,30317540:273847 +k1,19004:26890641,30317540:273846 +(1,19004:26890641,30317540:0,452978,122846 +r1,19029:31117737,30317540:4227096,575824,122846 +k1,19004:26890641,30317540:-4227096 +) +(1,19004:26890641,30317540:4227096,452978,122846 +k1,19004:26890641,30317540:3277 +h1,19004:31114460,30317540:0,411205,112570 +) +k1,19004:31391584,30317540:273847 +k1,19005:32583029,30317540:0 +) +(1,19005:6630773,31182620:25952256,505283,134348 +(1,19004:6630773,31182620:0,452978,122846 +r1,19029:11913004,31182620:5282231,575824,122846 +k1,19004:6630773,31182620:-5282231 +) +(1,19004:6630773,31182620:5282231,452978,122846 +k1,19004:6630773,31182620:3277 +h1,19004:11909727,31182620:0,411205,112570 +) +k1,19004:12081593,31182620:168589 +k1,19004:13836153,31182620:168589 +k1,19004:15380343,31182620:168589 +k1,19004:15904792,31182620:168589 +k1,19004:18764289,31182620:168589 +k1,19004:19615762,31182620:168588 +k1,19004:20140211,31182620:168589 +k1,19004:22999708,31182620:168589 +k1,19004:24562248,31182620:168589 +k1,19004:27029840,31182620:168589 +k1,19004:28885326,31182620:168589 +k1,19004:30928245,31182620:168589 +k1,19005:32583029,31182620:0 +) +(1,19005:6630773,32047700:25952256,513147,134348 +(1,19004:6630773,32047700:0,414482,122846 +r1,19029:8395886,32047700:1765113,537328,122846 +k1,19004:6630773,32047700:-1765113 +) +(1,19004:6630773,32047700:1765113,414482,122846 +k1,19004:6630773,32047700:3277 +h1,19004:8392609,32047700:0,411205,112570 +) +k1,19004:8600495,32047700:204609 +k1,19004:9796665,32047700:204610 +k1,19004:13306255,32047700:204609 +k1,19004:15024090,32047700:204609 +k1,19004:17909123,32047700:204610 +k1,19004:19507683,32047700:204609 +(1,19004:19507683,32047700:0,414482,115847 +r1,19029:21272796,32047700:1765113,530329,115847 +k1,19004:19507683,32047700:-1765113 +) +(1,19004:19507683,32047700:1765113,414482,115847 +k1,19004:19507683,32047700:3277 +h1,19004:21269519,32047700:0,411205,112570 +) +k1,19004:21477406,32047700:204610 +k1,19004:22966521,32047700:204609 +k1,19004:25959032,32047700:204609 +k1,19004:29671784,32047700:204610 +k1,19004:30637921,32047700:204609 +k1,19004:32583029,32047700:0 +) +(1,19005:6630773,32912780:25952256,513147,134348 +k1,19004:9811016,32912780:245541 +k1,19004:13046965,32912780:245541 +k1,19004:15303152,32912780:245542 +k1,19004:18777652,32912780:245541 +k1,19004:21065950,32912780:245541 +k1,19004:23835938,32912780:245541 +k1,19004:25185762,32912780:245542 +k1,19004:29384435,32912780:245541 +k1,19004:30377742,32912780:245541 +k1,19004:32583029,32912780:0 +) +(1,19005:6630773,33777860:25952256,452978,115847 +g1,19004:7516164,33777860 +(1,19004:7516164,33777860:0,452978,115847 +r1,19029:8929565,33777860:1413401,568825,115847 +k1,19004:7516164,33777860:-1413401 +) +(1,19004:7516164,33777860:1413401,452978,115847 +k1,19004:7516164,33777860:3277 +h1,19004:8926288,33777860:0,411205,112570 +) +k1,19005:32583029,33777860:23601036 +g1,19005:32583029,33777860 +) +(1,19006:6630773,35894678:25952256,534184,147783 +(1,19006:6630773,35894678:2450326,534184,12975 +g1,19006:6630773,35894678 +g1,19006:9081099,35894678 +) +k1,19006:32583029,35894678:22079602 +g1,19006:32583029,35894678 +) +(1,19010:6630773,37152974:25952256,505283,134348 +k1,19009:9038616,37152974:231392 +k1,19009:10347421,37152974:231393 +k1,19009:12186411,37152974:231392 +k1,19009:13409364,37152974:231393 +k1,19009:15153982,37152974:231392 +k1,19009:16146902,37152974:231392 +k1,19009:20108604,37152974:231393 +k1,19009:22678976,37152974:231392 +k1,19009:24290556,37152974:231392 +k1,19009:25513509,37152974:231393 +k1,19009:28032108,37152974:231392 +k1,19009:29034204,37152974:231393 +k1,19009:31931601,37152974:231392 +k1,19009:32583029,37152974:0 +) +(1,19010:6630773,38018054:25952256,513147,126483 +k1,19009:8995279,38018054:195264 +k1,19009:10971813,38018054:195265 +k1,19009:12069508,38018054:195264 +k1,19009:14926190,38018054:195265 +k1,19009:15780746,38018054:195264 +k1,19009:16995096,38018054:195265 +k1,19009:18282845,38018054:195264 +k1,19009:19145266,38018054:195265 +(1,19009:19145266,38018054:0,452978,122846 +r1,19029:22668938,38018054:3523672,575824,122846 +k1,19009:19145266,38018054:-3523672 +) +(1,19009:19145266,38018054:3523672,452978,122846 +k1,19009:19145266,38018054:3277 +h1,19009:22665661,38018054:0,411205,112570 +) +k1,19009:22864202,38018054:195264 +k1,19009:25548524,38018054:195265 +k1,19009:27301579,38018054:195264 +k1,19009:29212577,38018054:195265 +k1,19009:29865938,38018054:195264 +k1,19009:31931601,38018054:195265 +k1,19009:32583029,38018054:0 +) +(1,19010:6630773,38883134:25952256,513147,138281 +k1,19009:7791970,38883134:136214 +k1,19009:8947269,38883134:136214 +k1,19009:12864910,38883134:136214 +k1,19009:13660416,38883134:136214 +k1,19009:17868382,38883134:136214 +k1,19009:19749164,38883134:136214 +k1,19009:20904463,38883134:136214 +$1,19009:20904463,38883134 +$1,19009:21407124,38883134 +k1,19009:21756330,38883134:136214 +k1,19009:24102418,38883134:136214 +$1,19009:24102418,38883134 +$1,19009:24654231,38883134 +k1,19009:26575646,38883134:136214 +k1,19009:27472078,38883134:136214 +k1,19009:30047542,38883134:136214 +k1,19009:31591469,38883134:136214 +k1,19009:32583029,38883134:0 +) +(1,19010:6630773,39748214:25952256,513147,134348 +k1,19009:8775596,39748214:144009 +k1,19009:9728975,39748214:144009 +k1,19009:10892068,39748214:144008 +k1,19009:12110212,39748214:144009 +k1,19009:13445666,39748214:144009 +k1,19009:15912926,39748214:144009 +k1,19009:17876869,39748214:144008 +k1,19009:18680170,39748214:144009 +k1,19009:19843264,39748214:144009 +k1,19009:22511720,39748214:144009 +k1,19009:24176819,39748214:144008 +k1,19009:25081046,39748214:144009 +k1,19009:27652509,39748214:144009 +(1,19009:27652509,39748214:0,452978,115847 +r1,19029:32583029,39748214:4930520,568825,115847 +k1,19009:27652509,39748214:-4930520 +) +(1,19009:27652509,39748214:4930520,452978,115847 +g1,19009:29766057,39748214 +g1,19009:30469481,39748214 +h1,19009:32579752,39748214:0,411205,112570 +) +k1,19009:32583029,39748214:0 +) +(1,19010:6630773,40613294:25952256,513147,134348 +k1,19009:8190904,40613294:179943 +k1,19009:9362407,40613294:179943 +k1,19009:11543164,40613294:179943 +k1,19009:12532477,40613294:179943 +k1,19009:13731505,40613294:179943 +k1,19009:16408370,40613294:179943 +k1,19009:17834152,40613294:179943 +k1,19009:19088230,40613294:179943 +k1,19009:20459618,40613294:179943 +k1,19009:22175070,40613294:179943 +k1,19009:25113423,40613294:179943 +k1,19009:26556900,40613294:179943 +k1,19009:30724709,40613294:179943 +k1,19009:31563944,40613294:179943 +k1,19009:32583029,40613294:0 +) +(1,19010:6630773,41478374:25952256,513147,134348 +g1,19009:8192496,41478374 +g1,19009:11696706,41478374 +g1,19009:13000217,41478374 +g1,19009:13947212,41478374 +g1,19009:15659667,41478374 +g1,19009:16510324,41478374 +g1,19009:18997415,41478374 +g1,19009:20215729,41478374 +g1,19009:22991178,41478374 +g1,19009:23849699,41478374 +g1,19009:25068013,41478374 +k1,19010:32583029,41478374:6054874 +g1,19010:32583029,41478374 +) +v1,19012:6630773,42163229:0,393216,0 +(1,19019:6630773,44558477:25952256,2788464,196608 +g1,19019:6630773,44558477 +g1,19019:6630773,44558477 +g1,19019:6434165,44558477 +(1,19019:6434165,44558477:0,2788464,196608 +r1,19029:32779637,44558477:26345472,2985072,196608 +k1,19019:6434165,44558477:-26345472 +) +(1,19019:6434165,44558477:26345472,2788464,196608 +[1,19019:6630773,44558477:25952256,2591856,0 +(1,19014:6630773,42391060:25952256,424439,112852 +(1,19013:6630773,42391060:0,0,0 +g1,19013:6630773,42391060 +g1,19013:6630773,42391060 +g1,19013:6303093,42391060 +(1,19013:6303093,42391060:0,0,0 +) +g1,19013:6630773,42391060 +) +k1,19014:6630773,42391060:0 +g1,19014:10614221,42391060 +g1,19014:11278129,42391060 +k1,19014:11278129,42391060:0 +h1,19014:13601807,42391060:0,0,0 +k1,19014:32583029,42391060:18981222 +g1,19014:32583029,42391060 +) +(1,19015:6630773,43075915:25952256,431045,112852 +h1,19015:6630773,43075915:0,0,0 +g1,19015:6962727,43075915 +g1,19015:7294681,43075915 +g1,19015:7626635,43075915 +g1,19015:7958589,43075915 +g1,19015:8290543,43075915 +g1,19015:8622497,43075915 +g1,19015:8954451,43075915 +g1,19015:11610083,43075915 +g1,19015:12273991,43075915 +g1,19015:14265715,43075915 +g1,19015:14929623,43075915 +g1,19015:16921347,43075915 +g1,19015:17585255,43075915 +g1,19015:18249163,43075915 +g1,19015:19908933,43075915 +g1,19015:22232611,43075915 +g1,19015:22896519,43075915 +g1,19015:27543875,43075915 +h1,19015:27875829,43075915:0,0,0 +k1,19015:32583029,43075915:4707200 +g1,19015:32583029,43075915 +) +(1,19016:6630773,43760770:25952256,424439,112852 +h1,19016:6630773,43760770:0,0,0 +g1,19016:6962727,43760770 +g1,19016:7294681,43760770 +g1,19016:11610082,43760770 +h1,19016:11942036,43760770:0,0,0 +k1,19016:32583028,43760770:20640992 +g1,19016:32583028,43760770 +) +(1,19017:6630773,44445625:25952256,424439,112852 +h1,19017:6630773,44445625:0,0,0 +g1,19017:6962727,44445625 +g1,19017:7294681,44445625 +g1,19017:12273990,44445625 +g1,19017:12937898,44445625 +h1,19017:15261576,44445625:0,0,0 +k1,19017:32583028,44445625:17321452 +g1,19017:32583028,44445625 +) +] +) +g1,19019:32583029,44558477 +g1,19019:6630773,44558477 +g1,19019:6630773,44558477 +g1,19019:32583029,44558477 +g1,19019:32583029,44558477 +) +h1,19019:6630773,44755085:0,0,0 +] +(1,19029:32583029,45706769:0,0,0 +g1,19029:32583029,45706769 +) +) +] +(1,19029:6630773,47279633:25952256,0,0 +h1,19029:6630773,47279633:25952256,0,0 +) +] +(1,19029:4262630,4025873:0,0,0 +[1,19029:-473656,4025873:0,0,0 +(1,19029:-473656,-710413:0,0,0 +(1,19029:-473656,-710413:0,0,0 +g1,19029:-473656,-710413 +) +g1,19029:-473656,-710413 ) ] ) ] !26494 -}314 -Input:3258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3259:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3260:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3261:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}315 Input:3262:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3263:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3264:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -331675,700 +331879,700 @@ Input:3273:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3274:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3275:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3276:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{315 -[1,19066:4262630,47279633:28320399,43253760,0 -(1,19066:4262630,4025873:0,0,0 -[1,19066:-473656,4025873:0,0,0 -(1,19066:-473656,-710413:0,0,0 -(1,19066:-473656,-644877:0,0,0 -k1,19066:-473656,-644877:-65536 +{316 +[1,19064:4262630,47279633:28320399,43253760,0 +(1,19064:4262630,4025873:0,0,0 +[1,19064:-473656,4025873:0,0,0 +(1,19064:-473656,-710413:0,0,0 +(1,19064:-473656,-644877:0,0,0 +k1,19064:-473656,-644877:-65536 ) -(1,19066:-473656,4736287:0,0,0 -k1,19066:-473656,4736287:5209943 +(1,19064:-473656,4736287:0,0,0 +k1,19064:-473656,4736287:5209943 ) -g1,19066:-473656,-710413 +g1,19064:-473656,-710413 ) ] ) -[1,19066:6630773,47279633:25952256,43253760,0 -[1,19066:6630773,4812305:25952256,786432,0 -(1,19066:6630773,4812305:25952256,513147,126483 -(1,19066:6630773,4812305:25952256,513147,126483 -g1,19066:3078558,4812305 -[1,19066:3078558,4812305:0,0,0 -(1,19066:3078558,2439708:0,1703936,0 -k1,19066:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19066:2537886,2439708:1179648,16384,0 +[1,19064:6630773,47279633:25952256,43253760,0 +[1,19064:6630773,4812305:25952256,786432,0 +(1,19064:6630773,4812305:25952256,513147,126483 +(1,19064:6630773,4812305:25952256,513147,126483 +g1,19064:3078558,4812305 +[1,19064:3078558,4812305:0,0,0 +(1,19064:3078558,2439708:0,1703936,0 +k1,19064:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19064:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19066:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19064:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19066:3078558,4812305:0,0,0 -(1,19066:3078558,2439708:0,1703936,0 -g1,19066:29030814,2439708 -g1,19066:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19066:36151628,1915420:16384,1179648,0 +[1,19064:3078558,4812305:0,0,0 +(1,19064:3078558,2439708:0,1703936,0 +g1,19064:29030814,2439708 +g1,19064:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19064:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19066:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19064:37855564,2439708:1179648,16384,0 ) ) -k1,19066:3078556,2439708:-34777008 +k1,19064:3078556,2439708:-34777008 ) ] -[1,19066:3078558,4812305:0,0,0 -(1,19066:3078558,49800853:0,16384,2228224 -k1,19066:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19066:2537886,49800853:1179648,16384,0 +[1,19064:3078558,4812305:0,0,0 +(1,19064:3078558,49800853:0,16384,2228224 +k1,19064:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19064:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19066:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19064:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19066:3078558,4812305:0,0,0 -(1,19066:3078558,49800853:0,16384,2228224 -g1,19066:29030814,49800853 -g1,19066:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19066:36151628,51504789:16384,1179648,0 +[1,19064:3078558,4812305:0,0,0 +(1,19064:3078558,49800853:0,16384,2228224 +g1,19064:29030814,49800853 +g1,19064:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19064:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19066:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19064:37855564,49800853:1179648,16384,0 ) ) -k1,19066:3078556,49800853:-34777008 +k1,19064:3078556,49800853:-34777008 ) ] -g1,19066:6630773,4812305 -k1,19066:21386205,4812305:13560055 -g1,19066:21999622,4812305 -g1,19066:25611966,4812305 -g1,19066:28956923,4812305 -g1,19066:29772190,4812305 +g1,19064:6630773,4812305 +k1,19064:21386205,4812305:13560055 +g1,19064:21999622,4812305 +g1,19064:25611966,4812305 +g1,19064:28956923,4812305 +g1,19064:29772190,4812305 ) ) ] -[1,19066:6630773,45706769:25952256,40108032,0 -(1,19066:6630773,45706769:25952256,40108032,0 -(1,19066:6630773,45706769:0,0,0 -g1,19066:6630773,45706769 +[1,19064:6630773,45706769:25952256,40108032,0 +(1,19064:6630773,45706769:25952256,40108032,0 +(1,19064:6630773,45706769:0,0,0 +g1,19064:6630773,45706769 ) -[1,19066:6630773,45706769:25952256,40108032,0 -(1,19024:6630773,14682403:25952256,9083666,0 -k1,19024:10523651,14682403:3892878 -h1,19023:10523651,14682403:0,0,0 -(1,19023:10523651,14682403:18166500,9083666,0 -(1,19023:10523651,14682403:18167376,9083688,0 -(1,19023:10523651,14682403:18167376,9083688,0 -(1,19023:10523651,14682403:0,9083688,0 -(1,19023:10523651,14682403:0,14208860,0 -(1,19023:10523651,14682403:28417720,14208860,0 -) -k1,19023:10523651,14682403:-28417720 -) -) -g1,19023:28691027,14682403 -) -) -) -g1,19024:28690151,14682403 -k1,19024:32583029,14682403:3892878 -) -v1,19031:6630773,15547483:0,393216,0 -(1,19032:6630773,20368408:25952256,5214141,0 -g1,19032:6630773,20368408 -g1,19032:6237557,20368408 -r1,19066:6368629,20368408:131072,5214141,0 -g1,19032:6567858,20368408 -g1,19032:6764466,20368408 -[1,19032:6764466,20368408:25818563,5214141,0 -(1,19032:6764466,15908660:25818563,754393,260573 -(1,19031:6764466,15908660:0,754393,260573 -r1,19066:7856192,15908660:1091726,1014966,260573 -k1,19031:6764466,15908660:-1091726 -) -(1,19031:6764466,15908660:1091726,754393,260573 -) -k1,19031:8069394,15908660:213202 -k1,19031:8397074,15908660:327680 -k1,19031:9844318,15908660:213201 -k1,19031:11665118,15908660:213202 -k1,19031:12869880,15908660:213202 -k1,19031:15060302,15908660:213201 -k1,19031:16971542,15908660:213202 -k1,19031:18203829,15908660:213202 -k1,19031:19911252,15908660:213202 -k1,19031:22456879,15908660:213201 -k1,19031:23329373,15908660:213202 -k1,19031:27614327,15908660:213202 -k1,19031:28443566,15908660:213201 -k1,19031:29012628,15908660:213202 -k1,19031:32583029,15908660:0 -) -(1,19032:6764466,16773740:25818563,505283,134348 -k1,19031:9427799,16773740:169688 -k1,19031:10128984,16773740:169688 -k1,19031:11364942,16773740:169687 -k1,19031:12939722,16773740:169688 -k1,19031:13969242,16773740:169688 -k1,19031:17414419,16773740:169688 -k1,19031:18991819,16773740:169687 -k1,19031:21604689,16773740:169688 -k1,19031:22820332,16773740:169688 -k1,19031:25861152,16773740:169688 -k1,19031:27222284,16773740:169687 -k1,19031:28411057,16773740:169688 -k1,19031:29658157,16773740:169688 -k1,19031:32583029,16773740:0 -) -(1,19032:6764466,17638820:25818563,505283,134348 -k1,19031:9506951,17638820:199688 -k1,19031:11489874,17638820:199688 -k1,19031:12708647,17638820:199688 -k1,19031:15277462,17638820:199688 -k1,19031:16008647,17638820:199688 -k1,19031:19413045,17638820:199687 -k1,19031:21971374,17638820:199688 -k1,19031:23190147,17638820:199688 -k1,19031:26411045,17638820:199688 -k1,19031:31839851,17638820:199688 -k1,19031:32583029,17638820:0 -) -(1,19032:6764466,18503900:25818563,505283,134348 -k1,19031:9223007,18503900:276847 -k1,19031:10518938,18503900:276846 -(1,19031:10518938,18503900:0,452978,115847 -r1,19066:12284051,18503900:1765113,568825,115847 -k1,19031:10518938,18503900:-1765113 -) -(1,19031:10518938,18503900:1765113,452978,115847 -k1,19031:10518938,18503900:3277 -h1,19031:12280774,18503900:0,411205,112570 -) -k1,19031:12560898,18503900:276847 -k1,19031:15682008,18503900:276847 -k1,19031:16610282,18503900:276846 -k1,19031:17242989,18503900:276847 -k1,19031:20277591,18503900:276847 -k1,19031:22234781,18503900:276847 -k1,19031:24863714,18503900:276846 -k1,19031:26583008,18503900:276847 -k1,19031:28190236,18503900:276847 -k1,19031:29571364,18503900:276846 -k1,19031:31563944,18503900:276847 -k1,19031:32583029,18503900:0 -) -(1,19032:6764466,19368980:25818563,513147,134348 -k1,19031:9725163,19368980:152480 -k1,19031:10493682,19368980:152481 -k1,19031:12978588,19368980:152480 -k1,19031:15001467,19368980:152481 -k1,19031:15805375,19368980:152480 -k1,19031:19459444,19368980:152480 -k1,19031:21395160,19368980:152481 -k1,19031:22566725,19368980:152480 -k1,19031:25204987,19368980:152481 -k1,19031:26016759,19368980:152480 -k1,19031:30240992,19368980:152481 -k1,19031:30924969,19368980:152480 -k1,19031:32583029,19368980:0 -) -(1,19032:6764466,20234060:25818563,513147,134348 -g1,19031:9779122,20234060 -g1,19031:12310777,20234060 -g1,19031:14117604,20234060 -g1,19031:15308393,20234060 -k1,19032:32583029,20234060:14208862 -g1,19032:32583029,20234060 -) -] -g1,19032:32583029,20368408 -) -h1,19032:6630773,20368408:0,0,0 -(1,19035:6630773,22485226:25952256,555811,12975 -(1,19035:6630773,22485226:2450326,534184,12975 -g1,19035:6630773,22485226 -g1,19035:9081099,22485226 -) -g1,19035:10837923,22485226 -g1,19035:12405151,22485226 -k1,19035:32583029,22485226:18638044 -g1,19035:32583029,22485226 -) -(1,19039:6630773,23743522:25952256,505283,134348 -k1,19038:8473614,23743522:450201 -k1,19038:10555257,23743522:438655 -k1,19038:11985472,23743522:438655 -k1,19038:15269046,23743522:438656 -k1,19038:18057822,23743522:438655 -k1,19038:20231871,23743522:438656 -(1,19038:20231871,23743522:0,452978,122846 -r1,19066:24107255,23743522:3875384,575824,122846 -k1,19038:20231871,23743522:-3875384 -) -(1,19038:20231871,23743522:3875384,452978,122846 -k1,19038:20231871,23743522:3277 -h1,19038:24103978,23743522:0,411205,112570 -) -k1,19038:24719580,23743522:438655 -k1,19038:26523351,23743522:438656 -k1,19038:30847636,23743522:438655 -k1,19039:32583029,23743522:0 -) -(1,19039:6630773,24608602:25952256,513147,134348 -(1,19038:6630773,24608602:0,452978,122846 -r1,19066:10506157,24608602:3875384,575824,122846 -k1,19038:6630773,24608602:-3875384 -) -(1,19038:6630773,24608602:3875384,452978,122846 -k1,19038:6630773,24608602:3277 -h1,19038:10502880,24608602:0,411205,112570 -) -k1,19038:10881993,24608602:202166 -k1,19038:12958488,24608602:202165 -k1,19038:14333093,24608602:202166 -(1,19038:14333093,24608602:0,414482,122846 -r1,19066:16098206,24608602:1765113,537328,122846 -k1,19038:14333093,24608602:-1765113 -) -(1,19038:14333093,24608602:1765113,414482,122846 -k1,19038:14333093,24608602:3277 -h1,19038:16094929,24608602:0,411205,112570 -) -k1,19038:16300372,24608602:202166 -k1,19038:18245795,24608602:202165 -k1,19038:19063999,24608602:202166 -k1,19038:20285249,24608602:202165 -k1,19038:23427360,24608602:202166 -k1,19038:25009714,24608602:202166 -k1,19038:27196965,24608602:202165 -k1,19038:29097169,24608602:202166 -k1,19038:32583029,24608602:0 -) -(1,19039:6630773,25473682:25952256,513147,134348 -k1,19038:8967784,25473682:170391 -(1,19038:8967784,25473682:0,452978,122846 -r1,19066:12843168,25473682:3875384,575824,122846 -k1,19038:8967784,25473682:-3875384 -) -(1,19038:8967784,25473682:3875384,452978,122846 -k1,19038:8967784,25473682:3277 -h1,19038:12839891,25473682:0,411205,112570 -) -k1,19038:13013560,25473682:170392 -k1,19038:16009863,25473682:170391 -k1,19038:20252006,25473682:170391 -k1,19038:22277066,25473682:170391 -k1,19038:23256828,25473682:170392 -k1,19038:24446304,25473682:170391 -k1,19038:27346270,25473682:170391 -k1,19038:28183817,25473682:170391 -(1,19038:28183817,25473682:0,414482,115847 -r1,19066:28542083,25473682:358266,530329,115847 -k1,19038:28183817,25473682:-358266 -) -(1,19038:28183817,25473682:358266,414482,115847 -k1,19038:28183817,25473682:3277 -h1,19038:28538806,25473682:0,411205,112570 -) -k1,19038:28712475,25473682:170392 -k1,19038:30893511,25473682:170391 -k1,19039:32583029,25473682:0 -) -(1,19039:6630773,26338762:25952256,505283,122846 -(1,19038:6630773,26338762:0,452978,122846 -r1,19066:10506157,26338762:3875384,575824,122846 -k1,19038:6630773,26338762:-3875384 -) -(1,19038:6630773,26338762:3875384,452978,122846 -k1,19038:6630773,26338762:3277 -h1,19038:10502880,26338762:0,411205,112570 -) -k1,19038:10678016,26338762:171859 -k1,19038:12272663,26338762:171860 -k1,19038:13463607,26338762:171859 -k1,19038:15374793,26338762:171860 -k1,19038:16162690,26338762:171859 -k1,19038:17353635,26338762:171860 -k1,19038:19088528,26338762:171859 -k1,19038:22236378,26338762:171860 -(1,19038:22236378,26338762:0,452978,115847 -r1,19066:25408338,26338762:3171960,568825,115847 -k1,19038:22236378,26338762:-3171960 -) -(1,19038:22236378,26338762:3171960,452978,115847 -k1,19038:22236378,26338762:3277 -h1,19038:25405061,26338762:0,411205,112570 -) -k1,19038:25580197,26338762:171859 -k1,19038:28370220,26338762:171860 -k1,19038:29561164,26338762:171859 -k1,19038:32583029,26338762:0 -) -(1,19039:6630773,27203842:25952256,513147,126483 -g1,19038:7489294,27203842 -g1,19038:9187331,27203842 -g1,19038:10578005,27203842 -(1,19038:10578005,27203842:0,452978,115847 -r1,19066:13398254,27203842:2820249,568825,115847 -k1,19038:10578005,27203842:-2820249 -) -(1,19038:10578005,27203842:2820249,452978,115847 -k1,19038:10578005,27203842:3277 -h1,19038:13394977,27203842:0,411205,112570 -) -g1,19038:13597483,27203842 -g1,19038:14815797,27203842 -g1,19038:17686273,27203842 -g1,19038:18544794,27203842 -g1,19038:20943411,27203842 -g1,19038:22334085,27203842 -k1,19039:32583029,27203842:8794045 -g1,19039:32583029,27203842 -) -(1,19041:6630773,28068922:25952256,513147,134348 -h1,19040:6630773,28068922:983040,0,0 -k1,19040:8425383,28068922:183735 -k1,19040:8964978,28068922:183735 -k1,19040:10317220,28068922:183735 -k1,19040:11951921,28068922:183734 -k1,19040:16381078,28068922:183735 -k1,19040:17247698,28068922:183735 -k1,19040:18450518,28068922:183735 -k1,19040:20714366,28068922:183735 -k1,19040:21557393,28068922:183735 -k1,19040:25812880,28068922:183735 -k1,19040:26612652,28068922:183734 -k1,19040:27152247,28068922:183735 -k1,19040:29402332,28068922:183735 -k1,19040:30577627,28068922:183735 -k1,19040:32583029,28068922:0 -) -(1,19041:6630773,28934002:25952256,513147,134348 -k1,19040:7647422,28934002:255121 -k1,19040:10381116,28934002:255122 -k1,19040:12308716,28934002:255121 -k1,19040:14604628,28934002:255121 -k1,19040:15215610,28934002:255122 -k1,19040:18233074,28934002:255121 -k1,19040:19877559,28934002:255122 -k1,19040:21240894,28934002:255121 -(1,19040:21240894,28934002:0,414482,122846 -r1,19066:23357719,28934002:2116825,537328,122846 -k1,19040:21240894,28934002:-2116825 -) -(1,19040:21240894,28934002:2116825,414482,122846 -k1,19040:21240894,28934002:3277 -h1,19040:23354442,28934002:0,411205,112570 -) -k1,19040:23786510,28934002:255121 -k1,19040:25435583,28934002:255122 -k1,19040:27080067,28934002:255121 -k1,19040:28144558,28934002:255121 -k1,19040:29418765,28934002:255122 -k1,19040:31923737,28934002:255121 -k1,19040:32583029,28934002:0 -) -(1,19041:6630773,29799082:25952256,513147,134348 -k1,19040:7982324,29799082:216467 -k1,19040:10373930,29799082:216466 -k1,19040:12160640,29799082:216467 -k1,19040:13609183,29799082:216466 -(1,19040:13609183,29799082:0,452978,122846 -r1,19066:17836279,29799082:4227096,575824,122846 -k1,19040:13609183,29799082:-4227096 -) -(1,19040:13609183,29799082:4227096,452978,122846 -k1,19040:13609183,29799082:3277 -h1,19040:17833002,29799082:0,411205,112570 -) -k1,19040:18259840,29799082:216467 -k1,19040:19007803,29799082:216466 -k1,19040:20911167,29799082:216467 -k1,19040:21887851,29799082:216466 -k1,19040:24911880,29799082:216467 -(1,19040:24911880,29799082:0,414482,115847 -r1,19066:26325281,29799082:1413401,530329,115847 -k1,19040:24911880,29799082:-1413401 -) -(1,19040:24911880,29799082:1413401,414482,115847 -k1,19040:24911880,29799082:3277 -h1,19040:26322004,29799082:0,411205,112570 -) -k1,19040:26541747,29799082:216466 -k1,19040:27409642,29799082:216467 -(1,19040:27409642,29799082:0,452978,115847 -r1,19066:30229891,29799082:2820249,568825,115847 -k1,19040:27409642,29799082:-2820249 -) -(1,19040:27409642,29799082:2820249,452978,115847 -k1,19040:27409642,29799082:3277 -h1,19040:30226614,29799082:0,411205,112570 -) -k1,19040:30446357,29799082:216466 -k1,19040:31681909,29799082:216467 -k1,19041:32583029,29799082:0 -) -(1,19041:6630773,30664162:25952256,513147,134348 -g1,19040:10106802,30664162 -g1,19040:12749213,30664162 -g1,19040:15782874,30664162 -g1,19040:17173548,30664162 -g1,19040:17728637,30664162 -g1,19040:19096373,30664162 -g1,19040:19827099,30664162 -g1,19040:22328608,30664162 -g1,19040:23475488,30664162 -g1,19040:25126339,30664162 -k1,19041:32583029,30664162:6164320 -g1,19041:32583029,30664162 -) -v1,19044:6630773,31349017:0,393216,0 -(1,19050:6630773,33059410:25952256,2103609,196608 -g1,19050:6630773,33059410 -g1,19050:6630773,33059410 -g1,19050:6434165,33059410 -(1,19050:6434165,33059410:0,2103609,196608 -r1,19066:32779637,33059410:26345472,2300217,196608 -k1,19050:6434165,33059410:-26345472 -) -(1,19050:6434165,33059410:26345472,2103609,196608 -[1,19050:6630773,33059410:25952256,1907001,0 -(1,19046:6630773,31576848:25952256,424439,112852 -(1,19045:6630773,31576848:0,0,0 -g1,19045:6630773,31576848 -g1,19045:6630773,31576848 -g1,19045:6303093,31576848 -(1,19045:6303093,31576848:0,0,0 -) -g1,19045:6630773,31576848 -) -k1,19046:6630773,31576848:0 -g1,19046:10614221,31576848 -g1,19046:11278129,31576848 -k1,19046:11278129,31576848:0 -h1,19046:13601807,31576848:0,0,0 -k1,19046:32583029,31576848:18981222 -g1,19046:32583029,31576848 -) -(1,19047:6630773,32261703:25952256,431045,112852 -h1,19047:6630773,32261703:0,0,0 -g1,19047:6962727,32261703 -g1,19047:7294681,32261703 -g1,19047:7626635,32261703 -g1,19047:7958589,32261703 -g1,19047:8290543,32261703 -g1,19047:8622497,32261703 -g1,19047:8954451,32261703 -g1,19047:11610083,32261703 -g1,19047:12273991,32261703 -g1,19047:14265715,32261703 -g1,19047:14929623,32261703 -g1,19047:16589393,32261703 -g1,19047:17253301,32261703 -g1,19047:17917209,32261703 -g1,19047:22896518,32261703 -g1,19047:25884103,32261703 -g1,19047:26548011,32261703 -g1,19047:28871689,32261703 -h1,19047:29203643,32261703:0,0,0 -k1,19047:32583029,32261703:3379386 -g1,19047:32583029,32261703 -) -(1,19048:6630773,32946558:25952256,424439,112852 -h1,19048:6630773,32946558:0,0,0 -g1,19048:6962727,32946558 -g1,19048:7294681,32946558 -k1,19048:7294681,32946558:0 -h1,19048:10946174,32946558:0,0,0 -k1,19048:32583030,32946558:21636856 -g1,19048:32583030,32946558 -) -] -) -g1,19050:32583029,33059410 -g1,19050:6630773,33059410 -g1,19050:6630773,33059410 -g1,19050:32583029,33059410 -g1,19050:32583029,33059410 -) -h1,19050:6630773,33256018:0,0,0 -(1,19053:6630773,42405220:25952256,9083666,0 -k1,19053:10523651,42405220:3892878 -h1,19052:10523651,42405220:0,0,0 -(1,19052:10523651,42405220:18166500,9083666,0 -(1,19052:10523651,42405220:18167376,9083688,0 -(1,19052:10523651,42405220:18167376,9083688,0 -(1,19052:10523651,42405220:0,9083688,0 -(1,19052:10523651,42405220:0,14208860,0 -(1,19052:10523651,42405220:28417720,14208860,0 -) -k1,19052:10523651,42405220:-28417720 -) -) -g1,19052:28691027,42405220 -) -) -) -g1,19053:28690151,42405220 -k1,19053:32583029,42405220:3892878 -) -v1,19060:6630773,43270300:0,393216,0 -(1,19061:6630773,45488120:25952256,2611036,0 -g1,19061:6630773,45488120 -g1,19061:6237557,45488120 -r1,19066:6368629,45488120:131072,2611036,0 -g1,19061:6567858,45488120 -g1,19061:6764466,45488120 -[1,19061:6764466,45488120:25818563,2611036,0 -(1,19061:6764466,43631477:25818563,754393,260573 -(1,19060:6764466,43631477:0,754393,260573 -r1,19066:7856192,43631477:1091726,1014966,260573 -k1,19060:6764466,43631477:-1091726 -) -(1,19060:6764466,43631477:1091726,754393,260573 -) -k1,19060:8107167,43631477:250975 -k1,19060:8434847,43631477:327680 -k1,19060:10727267,43631477:250974 -k1,19060:13806775,43631477:250975 -k1,19060:15600467,43631477:250974 -k1,19060:16870527,43631477:250975 -(1,19060:16870527,43631477:0,452978,115847 -r1,19066:18283928,43631477:1413401,568825,115847 -k1,19060:16870527,43631477:-1413401 -) -(1,19060:16870527,43631477:1413401,452978,115847 -k1,19060:16870527,43631477:3277 -h1,19060:18280651,43631477:0,411205,112570 -) -k1,19060:18534902,43631477:250974 -k1,19060:21630140,43631477:250975 -k1,19060:25142185,43631477:250974 -k1,19060:26412245,43631477:250975 -k1,19060:28477911,43631477:250974 -k1,19060:29388178,43631477:250975 -k1,19060:31311631,43631477:250974 -k1,19061:32583029,43631477:0 -) -(1,19061:6764466,44496557:25818563,513147,134348 -k1,19060:8754059,44496557:178833 -(1,19060:8754059,44496557:0,452978,115847 -r1,19066:11926019,44496557:3171960,568825,115847 -k1,19060:8754059,44496557:-3171960 -) -(1,19060:8754059,44496557:3171960,452978,115847 -k1,19060:8754059,44496557:3277 -h1,19060:11922742,44496557:0,411205,112570 -) -k1,19060:12104853,44496557:178834 -k1,19060:13490859,44496557:178833 -k1,19060:15635117,44496557:178833 -k1,19060:16429989,44496557:178834 -k1,19060:19437355,44496557:178833 -k1,19060:21158906,44496557:178833 -k1,19060:22529185,44496557:178834 -k1,19060:23727103,44496557:178833 -k1,19060:24998422,44496557:178834 -k1,19060:25836547,44496557:178833 -k1,19060:27034465,44496557:178833 -(1,19060:27034465,44496557:0,452978,115847 -r1,19066:28447866,44496557:1413401,568825,115847 -k1,19060:27034465,44496557:-1413401 +[1,19064:6630773,45706769:25952256,40108032,0 +(1,19022:6630773,14682403:25952256,9083666,0 +k1,19022:10523651,14682403:3892878 +h1,19021:10523651,14682403:0,0,0 +(1,19021:10523651,14682403:18166500,9083666,0 +(1,19021:10523651,14682403:18167376,9083688,0 +(1,19021:10523651,14682403:18167376,9083688,0 +(1,19021:10523651,14682403:0,9083688,0 +(1,19021:10523651,14682403:0,14208860,0 +(1,19021:10523651,14682403:28417720,14208860,0 +) +k1,19021:10523651,14682403:-28417720 +) +) +g1,19021:28691027,14682403 +) +) +) +g1,19022:28690151,14682403 +k1,19022:32583029,14682403:3892878 +) +v1,19029:6630773,15547483:0,393216,0 +(1,19030:6630773,20368408:25952256,5214141,0 +g1,19030:6630773,20368408 +g1,19030:6237557,20368408 +r1,19064:6368629,20368408:131072,5214141,0 +g1,19030:6567858,20368408 +g1,19030:6764466,20368408 +[1,19030:6764466,20368408:25818563,5214141,0 +(1,19030:6764466,15908660:25818563,754393,260573 +(1,19029:6764466,15908660:0,754393,260573 +r1,19064:7856192,15908660:1091726,1014966,260573 +k1,19029:6764466,15908660:-1091726 +) +(1,19029:6764466,15908660:1091726,754393,260573 +) +k1,19029:8069394,15908660:213202 +k1,19029:8397074,15908660:327680 +k1,19029:9844318,15908660:213201 +k1,19029:11665118,15908660:213202 +k1,19029:12869880,15908660:213202 +k1,19029:15060302,15908660:213201 +k1,19029:16971542,15908660:213202 +k1,19029:18203829,15908660:213202 +k1,19029:19911252,15908660:213202 +k1,19029:22456879,15908660:213201 +k1,19029:23329373,15908660:213202 +k1,19029:27614327,15908660:213202 +k1,19029:28443566,15908660:213201 +k1,19029:29012628,15908660:213202 +k1,19029:32583029,15908660:0 +) +(1,19030:6764466,16773740:25818563,505283,134348 +k1,19029:9427799,16773740:169688 +k1,19029:10128984,16773740:169688 +k1,19029:11364942,16773740:169687 +k1,19029:12939722,16773740:169688 +k1,19029:13969242,16773740:169688 +k1,19029:17414419,16773740:169688 +k1,19029:18991819,16773740:169687 +k1,19029:21604689,16773740:169688 +k1,19029:22820332,16773740:169688 +k1,19029:25861152,16773740:169688 +k1,19029:27222284,16773740:169687 +k1,19029:28411057,16773740:169688 +k1,19029:29658157,16773740:169688 +k1,19029:32583029,16773740:0 +) +(1,19030:6764466,17638820:25818563,505283,134348 +k1,19029:9506951,17638820:199688 +k1,19029:11489874,17638820:199688 +k1,19029:12708647,17638820:199688 +k1,19029:15277462,17638820:199688 +k1,19029:16008647,17638820:199688 +k1,19029:19413045,17638820:199687 +k1,19029:21971374,17638820:199688 +k1,19029:23190147,17638820:199688 +k1,19029:26411045,17638820:199688 +k1,19029:31839851,17638820:199688 +k1,19029:32583029,17638820:0 +) +(1,19030:6764466,18503900:25818563,505283,134348 +k1,19029:9223007,18503900:276847 +k1,19029:10518938,18503900:276846 +(1,19029:10518938,18503900:0,452978,115847 +r1,19064:12284051,18503900:1765113,568825,115847 +k1,19029:10518938,18503900:-1765113 +) +(1,19029:10518938,18503900:1765113,452978,115847 +k1,19029:10518938,18503900:3277 +h1,19029:12280774,18503900:0,411205,112570 +) +k1,19029:12560898,18503900:276847 +k1,19029:15682008,18503900:276847 +k1,19029:16610282,18503900:276846 +k1,19029:17242989,18503900:276847 +k1,19029:20277591,18503900:276847 +k1,19029:22234781,18503900:276847 +k1,19029:24863714,18503900:276846 +k1,19029:26583008,18503900:276847 +k1,19029:28190236,18503900:276847 +k1,19029:29571364,18503900:276846 +k1,19029:31563944,18503900:276847 +k1,19029:32583029,18503900:0 +) +(1,19030:6764466,19368980:25818563,513147,134348 +k1,19029:9725163,19368980:152480 +k1,19029:10493682,19368980:152481 +k1,19029:12978588,19368980:152480 +k1,19029:15001467,19368980:152481 +k1,19029:15805375,19368980:152480 +k1,19029:19459444,19368980:152480 +k1,19029:21395160,19368980:152481 +k1,19029:22566725,19368980:152480 +k1,19029:25204987,19368980:152481 +k1,19029:26016759,19368980:152480 +k1,19029:30240992,19368980:152481 +k1,19029:30924969,19368980:152480 +k1,19029:32583029,19368980:0 +) +(1,19030:6764466,20234060:25818563,513147,134348 +g1,19029:9779122,20234060 +g1,19029:12310777,20234060 +g1,19029:14117604,20234060 +g1,19029:15308393,20234060 +k1,19030:32583029,20234060:14208862 +g1,19030:32583029,20234060 +) +] +g1,19030:32583029,20368408 +) +h1,19030:6630773,20368408:0,0,0 +(1,19033:6630773,22485226:25952256,555811,12975 +(1,19033:6630773,22485226:2450326,534184,12975 +g1,19033:6630773,22485226 +g1,19033:9081099,22485226 +) +g1,19033:10837923,22485226 +g1,19033:12405151,22485226 +k1,19033:32583029,22485226:18638044 +g1,19033:32583029,22485226 +) +(1,19037:6630773,23743522:25952256,505283,134348 +k1,19036:8473614,23743522:450201 +k1,19036:10555257,23743522:438655 +k1,19036:11985472,23743522:438655 +k1,19036:15269046,23743522:438656 +k1,19036:18057822,23743522:438655 +k1,19036:20231871,23743522:438656 +(1,19036:20231871,23743522:0,452978,122846 +r1,19064:24107255,23743522:3875384,575824,122846 +k1,19036:20231871,23743522:-3875384 +) +(1,19036:20231871,23743522:3875384,452978,122846 +k1,19036:20231871,23743522:3277 +h1,19036:24103978,23743522:0,411205,112570 +) +k1,19036:24719580,23743522:438655 +k1,19036:26523351,23743522:438656 +k1,19036:30847636,23743522:438655 +k1,19037:32583029,23743522:0 +) +(1,19037:6630773,24608602:25952256,513147,134348 +(1,19036:6630773,24608602:0,452978,122846 +r1,19064:10506157,24608602:3875384,575824,122846 +k1,19036:6630773,24608602:-3875384 +) +(1,19036:6630773,24608602:3875384,452978,122846 +k1,19036:6630773,24608602:3277 +h1,19036:10502880,24608602:0,411205,112570 +) +k1,19036:10881993,24608602:202166 +k1,19036:12958488,24608602:202165 +k1,19036:14333093,24608602:202166 +(1,19036:14333093,24608602:0,414482,122846 +r1,19064:16098206,24608602:1765113,537328,122846 +k1,19036:14333093,24608602:-1765113 +) +(1,19036:14333093,24608602:1765113,414482,122846 +k1,19036:14333093,24608602:3277 +h1,19036:16094929,24608602:0,411205,112570 +) +k1,19036:16300372,24608602:202166 +k1,19036:18245795,24608602:202165 +k1,19036:19063999,24608602:202166 +k1,19036:20285249,24608602:202165 +k1,19036:23427360,24608602:202166 +k1,19036:25009714,24608602:202166 +k1,19036:27196965,24608602:202165 +k1,19036:29097169,24608602:202166 +k1,19036:32583029,24608602:0 +) +(1,19037:6630773,25473682:25952256,513147,134348 +k1,19036:8967784,25473682:170391 +(1,19036:8967784,25473682:0,452978,122846 +r1,19064:12843168,25473682:3875384,575824,122846 +k1,19036:8967784,25473682:-3875384 +) +(1,19036:8967784,25473682:3875384,452978,122846 +k1,19036:8967784,25473682:3277 +h1,19036:12839891,25473682:0,411205,112570 +) +k1,19036:13013560,25473682:170392 +k1,19036:16009863,25473682:170391 +k1,19036:20252006,25473682:170391 +k1,19036:22277066,25473682:170391 +k1,19036:23256828,25473682:170392 +k1,19036:24446304,25473682:170391 +k1,19036:27346270,25473682:170391 +k1,19036:28183817,25473682:170391 +(1,19036:28183817,25473682:0,414482,115847 +r1,19064:28542083,25473682:358266,530329,115847 +k1,19036:28183817,25473682:-358266 +) +(1,19036:28183817,25473682:358266,414482,115847 +k1,19036:28183817,25473682:3277 +h1,19036:28538806,25473682:0,411205,112570 +) +k1,19036:28712475,25473682:170392 +k1,19036:30893511,25473682:170391 +k1,19037:32583029,25473682:0 +) +(1,19037:6630773,26338762:25952256,505283,122846 +(1,19036:6630773,26338762:0,452978,122846 +r1,19064:10506157,26338762:3875384,575824,122846 +k1,19036:6630773,26338762:-3875384 +) +(1,19036:6630773,26338762:3875384,452978,122846 +k1,19036:6630773,26338762:3277 +h1,19036:10502880,26338762:0,411205,112570 +) +k1,19036:10678016,26338762:171859 +k1,19036:12272663,26338762:171860 +k1,19036:13463607,26338762:171859 +k1,19036:15374793,26338762:171860 +k1,19036:16162690,26338762:171859 +k1,19036:17353635,26338762:171860 +k1,19036:19088528,26338762:171859 +k1,19036:22236378,26338762:171860 +(1,19036:22236378,26338762:0,452978,115847 +r1,19064:25408338,26338762:3171960,568825,115847 +k1,19036:22236378,26338762:-3171960 +) +(1,19036:22236378,26338762:3171960,452978,115847 +k1,19036:22236378,26338762:3277 +h1,19036:25405061,26338762:0,411205,112570 +) +k1,19036:25580197,26338762:171859 +k1,19036:28370220,26338762:171860 +k1,19036:29561164,26338762:171859 +k1,19036:32583029,26338762:0 +) +(1,19037:6630773,27203842:25952256,513147,126483 +g1,19036:7489294,27203842 +g1,19036:9187331,27203842 +g1,19036:10578005,27203842 +(1,19036:10578005,27203842:0,452978,115847 +r1,19064:13398254,27203842:2820249,568825,115847 +k1,19036:10578005,27203842:-2820249 +) +(1,19036:10578005,27203842:2820249,452978,115847 +k1,19036:10578005,27203842:3277 +h1,19036:13394977,27203842:0,411205,112570 +) +g1,19036:13597483,27203842 +g1,19036:14815797,27203842 +g1,19036:17686273,27203842 +g1,19036:18544794,27203842 +g1,19036:20943411,27203842 +g1,19036:22334085,27203842 +k1,19037:32583029,27203842:8794045 +g1,19037:32583029,27203842 +) +(1,19039:6630773,28068922:25952256,513147,134348 +h1,19038:6630773,28068922:983040,0,0 +k1,19038:8425383,28068922:183735 +k1,19038:8964978,28068922:183735 +k1,19038:10317220,28068922:183735 +k1,19038:11951921,28068922:183734 +k1,19038:16381078,28068922:183735 +k1,19038:17247698,28068922:183735 +k1,19038:18450518,28068922:183735 +k1,19038:20714366,28068922:183735 +k1,19038:21557393,28068922:183735 +k1,19038:25812880,28068922:183735 +k1,19038:26612652,28068922:183734 +k1,19038:27152247,28068922:183735 +k1,19038:29402332,28068922:183735 +k1,19038:30577627,28068922:183735 +k1,19038:32583029,28068922:0 +) +(1,19039:6630773,28934002:25952256,513147,134348 +k1,19038:7647422,28934002:255121 +k1,19038:10381116,28934002:255122 +k1,19038:12308716,28934002:255121 +k1,19038:14604628,28934002:255121 +k1,19038:15215610,28934002:255122 +k1,19038:18233074,28934002:255121 +k1,19038:19877559,28934002:255122 +k1,19038:21240894,28934002:255121 +(1,19038:21240894,28934002:0,414482,122846 +r1,19064:23357719,28934002:2116825,537328,122846 +k1,19038:21240894,28934002:-2116825 +) +(1,19038:21240894,28934002:2116825,414482,122846 +k1,19038:21240894,28934002:3277 +h1,19038:23354442,28934002:0,411205,112570 +) +k1,19038:23786510,28934002:255121 +k1,19038:25435583,28934002:255122 +k1,19038:27080067,28934002:255121 +k1,19038:28144558,28934002:255121 +k1,19038:29418765,28934002:255122 +k1,19038:31923737,28934002:255121 +k1,19038:32583029,28934002:0 +) +(1,19039:6630773,29799082:25952256,513147,134348 +k1,19038:7982324,29799082:216467 +k1,19038:10373930,29799082:216466 +k1,19038:12160640,29799082:216467 +k1,19038:13609183,29799082:216466 +(1,19038:13609183,29799082:0,452978,122846 +r1,19064:17836279,29799082:4227096,575824,122846 +k1,19038:13609183,29799082:-4227096 +) +(1,19038:13609183,29799082:4227096,452978,122846 +k1,19038:13609183,29799082:3277 +h1,19038:17833002,29799082:0,411205,112570 +) +k1,19038:18259840,29799082:216467 +k1,19038:19007803,29799082:216466 +k1,19038:20911167,29799082:216467 +k1,19038:21887851,29799082:216466 +k1,19038:24911880,29799082:216467 +(1,19038:24911880,29799082:0,414482,115847 +r1,19064:26325281,29799082:1413401,530329,115847 +k1,19038:24911880,29799082:-1413401 +) +(1,19038:24911880,29799082:1413401,414482,115847 +k1,19038:24911880,29799082:3277 +h1,19038:26322004,29799082:0,411205,112570 +) +k1,19038:26541747,29799082:216466 +k1,19038:27409642,29799082:216467 +(1,19038:27409642,29799082:0,452978,115847 +r1,19064:30229891,29799082:2820249,568825,115847 +k1,19038:27409642,29799082:-2820249 +) +(1,19038:27409642,29799082:2820249,452978,115847 +k1,19038:27409642,29799082:3277 +h1,19038:30226614,29799082:0,411205,112570 +) +k1,19038:30446357,29799082:216466 +k1,19038:31681909,29799082:216467 +k1,19039:32583029,29799082:0 +) +(1,19039:6630773,30664162:25952256,513147,134348 +g1,19038:10106802,30664162 +g1,19038:12749213,30664162 +g1,19038:15782874,30664162 +g1,19038:17173548,30664162 +g1,19038:17728637,30664162 +g1,19038:19096373,30664162 +g1,19038:19827099,30664162 +g1,19038:22328608,30664162 +g1,19038:23475488,30664162 +g1,19038:25126339,30664162 +k1,19039:32583029,30664162:6164320 +g1,19039:32583029,30664162 +) +v1,19042:6630773,31349017:0,393216,0 +(1,19048:6630773,33059410:25952256,2103609,196608 +g1,19048:6630773,33059410 +g1,19048:6630773,33059410 +g1,19048:6434165,33059410 +(1,19048:6434165,33059410:0,2103609,196608 +r1,19064:32779637,33059410:26345472,2300217,196608 +k1,19048:6434165,33059410:-26345472 +) +(1,19048:6434165,33059410:26345472,2103609,196608 +[1,19048:6630773,33059410:25952256,1907001,0 +(1,19044:6630773,31576848:25952256,424439,112852 +(1,19043:6630773,31576848:0,0,0 +g1,19043:6630773,31576848 +g1,19043:6630773,31576848 +g1,19043:6303093,31576848 +(1,19043:6303093,31576848:0,0,0 +) +g1,19043:6630773,31576848 +) +k1,19044:6630773,31576848:0 +g1,19044:10614221,31576848 +g1,19044:11278129,31576848 +k1,19044:11278129,31576848:0 +h1,19044:13601807,31576848:0,0,0 +k1,19044:32583029,31576848:18981222 +g1,19044:32583029,31576848 +) +(1,19045:6630773,32261703:25952256,431045,112852 +h1,19045:6630773,32261703:0,0,0 +g1,19045:6962727,32261703 +g1,19045:7294681,32261703 +g1,19045:7626635,32261703 +g1,19045:7958589,32261703 +g1,19045:8290543,32261703 +g1,19045:8622497,32261703 +g1,19045:8954451,32261703 +g1,19045:11610083,32261703 +g1,19045:12273991,32261703 +g1,19045:14265715,32261703 +g1,19045:14929623,32261703 +g1,19045:16589393,32261703 +g1,19045:17253301,32261703 +g1,19045:17917209,32261703 +g1,19045:22896518,32261703 +g1,19045:25884103,32261703 +g1,19045:26548011,32261703 +g1,19045:28871689,32261703 +h1,19045:29203643,32261703:0,0,0 +k1,19045:32583029,32261703:3379386 +g1,19045:32583029,32261703 +) +(1,19046:6630773,32946558:25952256,424439,112852 +h1,19046:6630773,32946558:0,0,0 +g1,19046:6962727,32946558 +g1,19046:7294681,32946558 +k1,19046:7294681,32946558:0 +h1,19046:10946174,32946558:0,0,0 +k1,19046:32583030,32946558:21636856 +g1,19046:32583030,32946558 +) +] +) +g1,19048:32583029,33059410 +g1,19048:6630773,33059410 +g1,19048:6630773,33059410 +g1,19048:32583029,33059410 +g1,19048:32583029,33059410 +) +h1,19048:6630773,33256018:0,0,0 +(1,19051:6630773,42405220:25952256,9083666,0 +k1,19051:10523651,42405220:3892878 +h1,19050:10523651,42405220:0,0,0 +(1,19050:10523651,42405220:18166500,9083666,0 +(1,19050:10523651,42405220:18167376,9083688,0 +(1,19050:10523651,42405220:18167376,9083688,0 +(1,19050:10523651,42405220:0,9083688,0 +(1,19050:10523651,42405220:0,14208860,0 +(1,19050:10523651,42405220:28417720,14208860,0 +) +k1,19050:10523651,42405220:-28417720 +) +) +g1,19050:28691027,42405220 +) +) +) +g1,19051:28690151,42405220 +k1,19051:32583029,42405220:3892878 +) +v1,19058:6630773,43270300:0,393216,0 +(1,19059:6630773,45488120:25952256,2611036,0 +g1,19059:6630773,45488120 +g1,19059:6237557,45488120 +r1,19064:6368629,45488120:131072,2611036,0 +g1,19059:6567858,45488120 +g1,19059:6764466,45488120 +[1,19059:6764466,45488120:25818563,2611036,0 +(1,19059:6764466,43631477:25818563,754393,260573 +(1,19058:6764466,43631477:0,754393,260573 +r1,19064:7856192,43631477:1091726,1014966,260573 +k1,19058:6764466,43631477:-1091726 +) +(1,19058:6764466,43631477:1091726,754393,260573 +) +k1,19058:8107167,43631477:250975 +k1,19058:8434847,43631477:327680 +k1,19058:10727267,43631477:250974 +k1,19058:13806775,43631477:250975 +k1,19058:15600467,43631477:250974 +k1,19058:16870527,43631477:250975 +(1,19058:16870527,43631477:0,452978,115847 +r1,19064:18283928,43631477:1413401,568825,115847 +k1,19058:16870527,43631477:-1413401 +) +(1,19058:16870527,43631477:1413401,452978,115847 +k1,19058:16870527,43631477:3277 +h1,19058:18280651,43631477:0,411205,112570 +) +k1,19058:18534902,43631477:250974 +k1,19058:21630140,43631477:250975 +k1,19058:25142185,43631477:250974 +k1,19058:26412245,43631477:250975 +k1,19058:28477911,43631477:250974 +k1,19058:29388178,43631477:250975 +k1,19058:31311631,43631477:250974 +k1,19059:32583029,43631477:0 +) +(1,19059:6764466,44496557:25818563,513147,134348 +k1,19058:8754059,44496557:178833 +(1,19058:8754059,44496557:0,452978,115847 +r1,19064:11926019,44496557:3171960,568825,115847 +k1,19058:8754059,44496557:-3171960 +) +(1,19058:8754059,44496557:3171960,452978,115847 +k1,19058:8754059,44496557:3277 +h1,19058:11922742,44496557:0,411205,112570 +) +k1,19058:12104853,44496557:178834 +k1,19058:13490859,44496557:178833 +k1,19058:15635117,44496557:178833 +k1,19058:16429989,44496557:178834 +k1,19058:19437355,44496557:178833 +k1,19058:21158906,44496557:178833 +k1,19058:22529185,44496557:178834 +k1,19058:23727103,44496557:178833 +k1,19058:24998422,44496557:178834 +k1,19058:25836547,44496557:178833 +k1,19058:27034465,44496557:178833 +(1,19058:27034465,44496557:0,452978,115847 +r1,19064:28447866,44496557:1413401,568825,115847 +k1,19058:27034465,44496557:-1413401 ) -(1,19060:27034465,44496557:1413401,452978,115847 -k1,19060:27034465,44496557:3277 -h1,19060:28444589,44496557:0,411205,112570 +(1,19058:27034465,44496557:1413401,452978,115847 +k1,19058:27034465,44496557:3277 +h1,19058:28444589,44496557:0,411205,112570 ) -k1,19060:28626700,44496557:178834 -k1,19060:31649796,44496557:178833 -k1,19060:32583029,44496557:0 +k1,19058:28626700,44496557:178834 +k1,19058:31649796,44496557:178833 +k1,19058:32583029,44496557:0 ) -(1,19061:6764466,45361637:25818563,505283,126483 -g1,19060:8462503,45361637 -k1,19061:32583028,45361637:20529152 -g1,19061:32583028,45361637 +(1,19059:6764466,45361637:25818563,505283,126483 +g1,19058:8462503,45361637 +k1,19059:32583028,45361637:20529152 +g1,19059:32583028,45361637 ) ] -g1,19061:32583029,45488120 +g1,19059:32583029,45488120 ) -h1,19061:6630773,45488120:0,0,0 +h1,19059:6630773,45488120:0,0,0 ] -(1,19066:32583029,45706769:0,0,0 -g1,19066:32583029,45706769 +(1,19064:32583029,45706769:0,0,0 +g1,19064:32583029,45706769 ) ) ] -(1,19066:6630773,47279633:25952256,0,0 -h1,19066:6630773,47279633:25952256,0,0 +(1,19064:6630773,47279633:25952256,0,0 +h1,19064:6630773,47279633:25952256,0,0 ) ] -(1,19066:4262630,4025873:0,0,0 -[1,19066:-473656,4025873:0,0,0 -(1,19066:-473656,-710413:0,0,0 -(1,19066:-473656,-710413:0,0,0 -g1,19066:-473656,-710413 +(1,19064:4262630,4025873:0,0,0 +[1,19064:-473656,4025873:0,0,0 +(1,19064:-473656,-710413:0,0,0 +(1,19064:-473656,-710413:0,0,0 +g1,19064:-473656,-710413 ) -g1,19066:-473656,-710413 +g1,19064:-473656,-710413 ) ] ) ] !19957 -}315 -Input:3277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}316 Input:3281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3282:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3283:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -332382,798 +332586,798 @@ Input:3290:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3291:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3292:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3293:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3294:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3295:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3296:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{316 -[1,19122:4262630,47279633:28320399,43253760,0 -(1,19122:4262630,4025873:0,0,0 -[1,19122:-473656,4025873:0,0,0 -(1,19122:-473656,-710413:0,0,0 -(1,19122:-473656,-644877:0,0,0 -k1,19122:-473656,-644877:-65536 +{317 +[1,19120:4262630,47279633:28320399,43253760,0 +(1,19120:4262630,4025873:0,0,0 +[1,19120:-473656,4025873:0,0,0 +(1,19120:-473656,-710413:0,0,0 +(1,19120:-473656,-644877:0,0,0 +k1,19120:-473656,-644877:-65536 ) -(1,19122:-473656,4736287:0,0,0 -k1,19122:-473656,4736287:5209943 +(1,19120:-473656,4736287:0,0,0 +k1,19120:-473656,4736287:5209943 ) -g1,19122:-473656,-710413 +g1,19120:-473656,-710413 ) ] ) -[1,19122:6630773,47279633:25952256,43253760,0 -[1,19122:6630773,4812305:25952256,786432,0 -(1,19122:6630773,4812305:25952256,485622,11795 -(1,19122:6630773,4812305:25952256,485622,11795 -g1,19122:3078558,4812305 -[1,19122:3078558,4812305:0,0,0 -(1,19122:3078558,2439708:0,1703936,0 -k1,19122:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19122:2537886,2439708:1179648,16384,0 +[1,19120:6630773,47279633:25952256,43253760,0 +[1,19120:6630773,4812305:25952256,786432,0 +(1,19120:6630773,4812305:25952256,485622,11795 +(1,19120:6630773,4812305:25952256,485622,11795 +g1,19120:3078558,4812305 +[1,19120:3078558,4812305:0,0,0 +(1,19120:3078558,2439708:0,1703936,0 +k1,19120:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19120:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19122:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19120:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19122:3078558,4812305:0,0,0 -(1,19122:3078558,2439708:0,1703936,0 -g1,19122:29030814,2439708 -g1,19122:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19122:36151628,1915420:16384,1179648,0 +[1,19120:3078558,4812305:0,0,0 +(1,19120:3078558,2439708:0,1703936,0 +g1,19120:29030814,2439708 +g1,19120:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19120:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19122:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19120:37855564,2439708:1179648,16384,0 ) ) -k1,19122:3078556,2439708:-34777008 +k1,19120:3078556,2439708:-34777008 ) ] -[1,19122:3078558,4812305:0,0,0 -(1,19122:3078558,49800853:0,16384,2228224 -k1,19122:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19122:2537886,49800853:1179648,16384,0 +[1,19120:3078558,4812305:0,0,0 +(1,19120:3078558,49800853:0,16384,2228224 +k1,19120:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19120:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19122:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19120:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19122:3078558,4812305:0,0,0 -(1,19122:3078558,49800853:0,16384,2228224 -g1,19122:29030814,49800853 -g1,19122:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19122:36151628,51504789:16384,1179648,0 +[1,19120:3078558,4812305:0,0,0 +(1,19120:3078558,49800853:0,16384,2228224 +g1,19120:29030814,49800853 +g1,19120:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19120:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19122:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19120:37855564,49800853:1179648,16384,0 ) ) -k1,19122:3078556,49800853:-34777008 +k1,19120:3078556,49800853:-34777008 ) ] -g1,19122:6630773,4812305 -g1,19122:6630773,4812305 -g1,19122:10347975,4812305 -k1,19122:31387651,4812305:21039676 -) -) -] -[1,19122:6630773,45706769:25952256,40108032,0 -(1,19122:6630773,45706769:25952256,40108032,0 -(1,19122:6630773,45706769:0,0,0 -g1,19122:6630773,45706769 -) -[1,19122:6630773,45706769:25952256,40108032,0 -(1,19066:6630773,6254097:25952256,505283,134348 -h1,19065:6630773,6254097:983040,0,0 -k1,19065:10880760,6254097:171682 -(1,19065:10880760,6254097:0,452978,122846 -r1,19122:14756144,6254097:3875384,575824,122846 -k1,19065:10880760,6254097:-3875384 -) -(1,19065:10880760,6254097:3875384,452978,122846 -k1,19065:10880760,6254097:3277 -h1,19065:14752867,6254097:0,411205,112570 -) -k1,19065:14927827,6254097:171683 -k1,19065:16707107,6254097:171682 -k1,19065:18254390,6254097:171682 -k1,19065:20771607,6254097:171683 -k1,19065:22134734,6254097:171682 -k1,19065:25622539,6254097:171683 -k1,19065:27293029,6254097:171682 -k1,19065:28116139,6254097:171682 -k1,19065:29525142,6254097:171683 -k1,19065:30715909,6254097:171682 -k1,19066:32583029,6254097:0 -) -(1,19066:6630773,7119177:25952256,513147,134348 -k1,19065:9283406,7119177:185858 -k1,19065:12041553,7119177:185859 -k1,19065:12583271,7119177:185858 -k1,19065:15313237,7119177:185858 -k1,19065:16841272,7119177:185858 -k1,19065:17710016,7119177:185859 -k1,19065:21958451,7119177:185858 -k1,19065:25379821,7119177:185858 -(1,19065:25379821,7119177:0,452978,115847 -r1,19122:28551781,7119177:3171960,568825,115847 -k1,19065:25379821,7119177:-3171960 -) -(1,19065:25379821,7119177:3171960,452978,115847 -k1,19065:25379821,7119177:3277 -h1,19065:28548504,7119177:0,411205,112570 -) -k1,19065:28737640,7119177:185859 -k1,19065:30317449,7119177:185858 -k1,19066:32583029,7119177:0 -) -(1,19066:6630773,7984257:25952256,513147,134348 -(1,19065:6630773,7984257:0,452978,115847 -r1,19122:8044174,7984257:1413401,568825,115847 -k1,19065:6630773,7984257:-1413401 -) -(1,19065:6630773,7984257:1413401,452978,115847 -k1,19065:6630773,7984257:3277 -h1,19065:8040897,7984257:0,411205,112570 -) -g1,19065:8417073,7984257 -g1,19065:11234465,7984257 -g1,19065:12452779,7984257 -g1,19065:15381583,7984257 -g1,19065:16240104,7984257 -g1,19065:19755455,7984257 -g1,19065:21146129,7984257 -g1,19065:23690892,7984257 -k1,19066:32583029,7984257:7340900 -g1,19066:32583029,7984257 -) -v1,19068:6630773,8669112:0,393216,0 -(1,19074:6630773,10379505:25952256,2103609,196608 -g1,19074:6630773,10379505 -g1,19074:6630773,10379505 -g1,19074:6434165,10379505 -(1,19074:6434165,10379505:0,2103609,196608 -r1,19122:32779637,10379505:26345472,2300217,196608 -k1,19074:6434165,10379505:-26345472 -) -(1,19074:6434165,10379505:26345472,2103609,196608 -[1,19074:6630773,10379505:25952256,1907001,0 -(1,19070:6630773,8896943:25952256,424439,112852 -(1,19069:6630773,8896943:0,0,0 -g1,19069:6630773,8896943 -g1,19069:6630773,8896943 -g1,19069:6303093,8896943 -(1,19069:6303093,8896943:0,0,0 -) -g1,19069:6630773,8896943 -) -k1,19070:6630773,8896943:0 -g1,19070:10614221,8896943 -g1,19070:11278129,8896943 -k1,19070:11278129,8896943:0 -h1,19070:13601807,8896943:0,0,0 -k1,19070:32583029,8896943:18981222 -g1,19070:32583029,8896943 -) -(1,19071:6630773,9581798:25952256,431045,112852 -h1,19071:6630773,9581798:0,0,0 -g1,19071:6962727,9581798 -g1,19071:7294681,9581798 -g1,19071:7626635,9581798 -g1,19071:7958589,9581798 -g1,19071:8290543,9581798 -g1,19071:8622497,9581798 -g1,19071:8954451,9581798 -g1,19071:11610083,9581798 -g1,19071:12273991,9581798 -g1,19071:14265715,9581798 -g1,19071:14929623,9581798 -g1,19071:16589393,9581798 -g1,19071:17253301,9581798 -g1,19071:17917209,9581798 -g1,19071:22896518,9581798 -g1,19071:25884103,9581798 -g1,19071:26548011,9581798 -g1,19071:28871689,9581798 -h1,19071:29203643,9581798:0,0,0 -k1,19071:32583029,9581798:3379386 -g1,19071:32583029,9581798 -) -(1,19072:6630773,10266653:25952256,424439,112852 -h1,19072:6630773,10266653:0,0,0 -g1,19072:6962727,10266653 -g1,19072:7294681,10266653 -k1,19072:7294681,10266653:0 -h1,19072:10946174,10266653:0,0,0 -k1,19072:32583030,10266653:21636856 -g1,19072:32583030,10266653 -) -] -) -g1,19074:32583029,10379505 -g1,19074:6630773,10379505 -g1,19074:6630773,10379505 -g1,19074:32583029,10379505 -g1,19074:32583029,10379505 -) -h1,19074:6630773,10576113:0,0,0 -(1,19077:6630773,19725315:25952256,9083666,0 -k1,19077:10523651,19725315:3892878 -h1,19076:10523651,19725315:0,0,0 -(1,19076:10523651,19725315:18166500,9083666,0 -(1,19076:10523651,19725315:18167376,9083688,0 -(1,19076:10523651,19725315:18167376,9083688,0 -(1,19076:10523651,19725315:0,9083688,0 -(1,19076:10523651,19725315:0,14208860,0 -(1,19076:10523651,19725315:28417720,14208860,0 -) -k1,19076:10523651,19725315:-28417720 -) -) -g1,19076:28691027,19725315 -) -) -) -g1,19077:28690151,19725315 -k1,19077:32583029,19725315:3892878 -) -v1,19085:6630773,20590395:0,393216,0 -(1,19094:6630773,22950098:25952256,2752919,0 -g1,19094:6630773,22950098 -g1,19094:6237557,22950098 -r1,19122:6368629,22950098:131072,2752919,0 -g1,19094:6567858,22950098 -g1,19094:6764466,22950098 -[1,19094:6764466,22950098:25818563,2752919,0 -(1,19086:6764466,20862872:25818563,665693,196608 -(1,19085:6764466,20862872:0,665693,196608 -r1,19122:7868133,20862872:1103667,862301,196608 -k1,19085:6764466,20862872:-1103667 -) -(1,19085:6764466,20862872:1103667,665693,196608 -) -k1,19085:8304050,20862872:435917 -k1,19085:9621979,20862872:327680 -k1,19085:11849651,20862872:435918 -k1,19085:13304653,20862872:435917 -k1,19085:16715906,20862872:435918 -k1,19085:18164354,20862872:435917 -k1,19085:20163305,20862872:435917 -k1,19085:22314956,20862872:435918 -k1,19085:24405657,20862872:435917 -k1,19085:26449173,20862872:435918 -k1,19085:28620483,20862872:435917 -(1,19085:28620483,20862872:0,452978,122846 -r1,19122:32495867,20862872:3875384,575824,122846 -k1,19085:28620483,20862872:-3875384 -) -(1,19085:28620483,20862872:3875384,452978,122846 -k1,19085:28620483,20862872:3277 -h1,19085:32492590,20862872:0,411205,112570 -) -k1,19086:32583029,20862872:0 -) -(1,19086:6764466,21727952:25818563,513147,126483 -(1,19085:6764466,21727952:0,452978,122846 -r1,19122:10639850,21727952:3875384,575824,122846 -k1,19085:6764466,21727952:-3875384 -) -(1,19085:6764466,21727952:3875384,452978,122846 -k1,19085:6764466,21727952:3277 -h1,19085:10636573,21727952:0,411205,112570 -) -g1,19085:11012749,21727952 -g1,19085:12403423,21727952 -(1,19085:12403423,21727952:0,414482,122846 -r1,19122:15575383,21727952:3171960,537328,122846 -k1,19085:12403423,21727952:-3171960 -) -(1,19085:12403423,21727952:3171960,414482,122846 -k1,19085:12403423,21727952:3277 -h1,19085:15572106,21727952:0,411205,112570 -) -g1,19085:15774612,21727952 -g1,19085:16625269,21727952 -g1,19085:18021841,21727952 -g1,19085:18576930,21727952 -g1,19085:20507620,21727952 -g1,19085:22127670,21727952 -g1,19085:23142167,21727952 -g1,19085:24721584,21727952 -k1,19086:32583029,21727952:5823931 -g1,19086:32583029,21727952 -) -v1,19088:6764466,22412807:0,393216,0 -(1,19092:6764466,22753490:25818563,733899,196608 -g1,19092:6764466,22753490 -g1,19092:6764466,22753490 -g1,19092:6567858,22753490 -(1,19092:6567858,22753490:0,733899,196608 -r1,19122:32779637,22753490:26211779,930507,196608 -k1,19092:6567857,22753490:-26211780 -) -(1,19092:6567858,22753490:26211779,733899,196608 -[1,19092:6764466,22753490:25818563,537291,0 -(1,19090:6764466,22647244:25818563,431045,106246 -(1,19089:6764466,22647244:0,0,0 -g1,19089:6764466,22647244 -g1,19089:6764466,22647244 -g1,19089:6436786,22647244 -(1,19089:6436786,22647244:0,0,0 -) -g1,19089:6764466,22647244 -) -g1,19090:9088144,22647244 -g1,19090:10084006,22647244 -g1,19090:14399407,22647244 -g1,19090:15063315,22647244 -g1,19090:19046763,22647244 -g1,19090:19710671,22647244 -g1,19090:20374579,22647244 -k1,19090:20374579,22647244:0 -h1,19090:24026073,22647244:0,0,0 -k1,19090:32583029,22647244:8556956 -g1,19090:32583029,22647244 -) -] -) -g1,19092:32583029,22753490 -g1,19092:6764466,22753490 -g1,19092:6764466,22753490 -g1,19092:32583029,22753490 -g1,19092:32583029,22753490 -) -h1,19092:6764466,22950098:0,0,0 -] -g1,19094:32583029,22950098 -) -h1,19094:6630773,22950098:0,0,0 -(1,19098:6630773,23815178:25952256,505283,134348 -h1,19097:6630773,23815178:983040,0,0 -k1,19097:9597826,23815178:209298 -(1,19097:9597826,23815178:0,452978,122846 -r1,19122:13473210,23815178:3875384,575824,122846 -k1,19097:9597826,23815178:-3875384 -) -(1,19097:9597826,23815178:3875384,452978,122846 -k1,19097:9597826,23815178:3277 -h1,19097:13469933,23815178:0,411205,112570 -) -k1,19097:13682507,23815178:209297 -k1,19097:15808078,23815178:209298 -k1,19097:16373236,23815178:209298 -k1,19097:17751040,23815178:209297 -k1,19097:20187907,23815178:209298 -k1,19097:24642627,23815178:209298 -(1,19097:24642627,23815178:0,452978,122846 -r1,19122:28518011,23815178:3875384,575824,122846 -k1,19097:24642627,23815178:-3875384 -) -(1,19097:24642627,23815178:3875384,452978,122846 -k1,19097:24642627,23815178:3277 -h1,19097:28514734,23815178:0,411205,112570 -) -k1,19097:28727308,23815178:209297 -k1,19097:31966991,23815178:209298 -k1,19097:32583029,23815178:0 -) -(1,19098:6630773,24680258:25952256,513147,134348 -k1,19097:9732860,24680258:262412 -k1,19097:11826348,24680258:262412 -k1,19097:13107846,24680258:262413 -k1,19097:14717678,24680258:262412 -k1,19097:16848521,24680258:262412 -k1,19097:18130018,24680258:262412 -k1,19097:19560938,24680258:262413 -k1,19097:22940242,24680258:262412 -k1,19097:23854082,24680258:262412 -k1,19097:25135579,24680258:262412 -(1,19097:25135579,24680258:0,459977,115847 -r1,19122:26548980,24680258:1413401,575824,115847 -k1,19097:25135579,24680258:-1413401 -) -(1,19097:25135579,24680258:1413401,459977,115847 -k1,19097:25135579,24680258:3277 -h1,19097:26545703,24680258:0,411205,112570 -) -k1,19097:26811393,24680258:262413 -k1,19097:30000642,24680258:262412 -k1,19097:30890889,24680258:262412 -k1,19097:32583029,24680258:0 -) -(1,19098:6630773,25545338:25952256,513147,134348 -k1,19097:8655005,25545338:153179 -k1,19097:9266282,25545338:153180 -k1,19097:9950958,25545338:153179 -k1,19097:12081358,25545338:153179 -k1,19097:12885965,25545338:153179 -k1,19097:14708347,25545338:153180 -k1,19097:15880611,25545338:153179 -k1,19097:17885182,25545338:153179 -k1,19097:19280924,25545338:153179 -k1,19097:21132142,25545338:153180 -k1,19097:22304406,25545338:153179 -k1,19097:24468230,25545338:153179 -k1,19097:26923689,25545338:153179 -k1,19097:30118395,25545338:153180 -k1,19097:31923737,25545338:153179 -k1,19097:32583029,25545338:0 -) -(1,19098:6630773,26410418:25952256,505283,134348 -k1,19097:7180674,26410418:194041 -k1,19097:9360456,26410418:194041 -k1,19097:11611017,26410418:194041 -k1,19097:12432893,26410418:194041 -k1,19097:13646019,26410418:194041 -k1,19097:15397851,26410418:194041 -k1,19097:18780219,26410418:194041 -k1,19097:21809347,26410418:194041 -k1,19097:23022473,26410418:194041 -k1,19097:24894236,26410418:194041 -k1,19097:29120052,26410418:194041 -k1,19097:30333178,26410418:194041 -k1,19097:32583029,26410418:0 -) -(1,19098:6630773,27275498:25952256,513147,134348 -k1,19097:7442582,27275498:152517 -k1,19097:8614183,27275498:152516 -k1,19097:9901784,27275498:152517 -k1,19097:12229441,27275498:152517 -k1,19097:13952201,27275498:152517 -k1,19097:15096277,27275498:152516 -k1,19097:17686078,27275498:152517 -k1,19097:20476419,27275498:152517 -k1,19097:23589197,27275498:152517 -k1,19097:25477106,27275498:152516 -(1,19097:25477106,27275498:0,452978,115847 -r1,19122:31814474,27275498:6337368,568825,115847 -k1,19097:25477106,27275498:-6337368 -) -(1,19097:25477106,27275498:6337368,452978,115847 -g1,19097:28645790,27275498 -g1,19097:29349214,27275498 -h1,19097:31811197,27275498:0,411205,112570 -) -k1,19097:31966991,27275498:152517 -k1,19097:32583029,27275498:0 -) -(1,19098:6630773,28140578:25952256,513147,126483 -k1,19097:8434260,28140578:140839 -k1,19097:9234391,28140578:140839 -k1,19097:10394315,28140578:140839 -k1,19097:12800734,28140578:140839 -(1,19097:12800734,28140578:0,452978,115847 -r1,19122:20193237,28140578:7392503,568825,115847 -k1,19097:12800734,28140578:-7392503 -) -(1,19097:12800734,28140578:7392503,452978,115847 -g1,19097:15969418,28140578 -g1,19097:16672842,28140578 -h1,19097:20189960,28140578:0,411205,112570 -) -k1,19097:20507746,28140578:140839 -k1,19097:21845272,28140578:140839 -k1,19097:24701923,28140578:140839 -k1,19097:25502054,28140578:140839 -k1,19097:26661978,28140578:140839 -k1,19097:28301625,28140578:140839 -k1,19097:29390115,28140578:140839 -k1,19097:32583029,28140578:0 -) -(1,19098:6630773,29005658:25952256,513147,134348 -k1,19097:8381349,29005658:180333 -k1,19097:9093179,29005658:180333 -k1,19097:12323558,29005658:180333 -k1,19097:13265419,29005658:180333 -k1,19097:16329336,29005658:180333 -k1,19097:18018309,29005658:180334 -k1,19097:20229603,29005658:180333 -k1,19097:21601381,29005658:180333 -k1,19097:23596406,29005658:180333 -k1,19097:25344360,29005658:180333 -k1,19097:26543778,29005658:180333 -k1,19097:29493662,29005658:180333 -k1,19097:32583029,29005658:0 -) -(1,19098:6630773,29870738:25952256,513147,138281 -g1,19097:7849087,29870738 -$1,19097:7849087,29870738 -$1,19097:8400900,29870738 -g1,19097:8600129,29870738 -g1,19097:10051751,29870738 -g1,19097:10910272,29870738 -g1,19097:12128586,29870738 -g1,19097:14183139,29870738 -g1,19097:16250799,29870738 -g1,19097:17101456,29870738 -g1,19097:18585191,29870738 -g1,19097:20785234,29870738 -g1,19097:22719856,29870738 -(1,19097:22719856,29870738:0,452978,122846 -r1,19122:26595240,29870738:3875384,575824,122846 -k1,19097:22719856,29870738:-3875384 -) -(1,19097:22719856,29870738:3875384,452978,122846 -k1,19097:22719856,29870738:3277 -h1,19097:26591963,29870738:0,411205,112570 -) -g1,19097:26794469,29870738 -g1,19097:27803068,29870738 -g1,19097:29500450,29870738 -h1,19097:30695827,29870738:0,0,0 -k1,19098:32583029,29870738:1547726 -g1,19098:32583029,29870738 -) -v1,19100:6630773,30555593:0,393216,0 -(1,19108:6630773,33629090:25952256,3466713,196608 -g1,19108:6630773,33629090 -g1,19108:6630773,33629090 -g1,19108:6434165,33629090 -(1,19108:6434165,33629090:0,3466713,196608 -r1,19122:32779637,33629090:26345472,3663321,196608 -k1,19108:6434165,33629090:-26345472 -) -(1,19108:6434165,33629090:26345472,3466713,196608 -[1,19108:6630773,33629090:25952256,3270105,0 -(1,19102:6630773,30783424:25952256,424439,112852 -(1,19101:6630773,30783424:0,0,0 -g1,19101:6630773,30783424 -g1,19101:6630773,30783424 -g1,19101:6303093,30783424 -(1,19101:6303093,30783424:0,0,0 -) -g1,19101:6630773,30783424 -) -g1,19102:7626635,30783424 -g1,19102:8622497,30783424 -g1,19102:9286405,30783424 -g1,19102:10946175,30783424 -g1,19102:11942037,30783424 -g1,19102:13601807,30783424 -g1,19102:15593531,30783424 -k1,19102:15593531,30783424:24773 -h1,19102:17278074,30783424:0,0,0 -k1,19102:32583029,30783424:15304955 -g1,19102:32583029,30783424 -) -(1,19103:6630773,31468279:25952256,424439,112852 -h1,19103:6630773,31468279:0,0,0 -g1,19103:6962727,31468279 -g1,19103:7294681,31468279 -g1,19103:11278129,31468279 -g1,19103:11942037,31468279 -k1,19103:11942037,31468279:0 -h1,19103:14265715,31468279:0,0,0 -k1,19103:32583029,31468279:18317314 -g1,19103:32583029,31468279 -) -(1,19104:6630773,32153134:25952256,431045,112852 -h1,19104:6630773,32153134:0,0,0 -g1,19104:6962727,32153134 -g1,19104:7294681,32153134 -g1,19104:7626635,32153134 -g1,19104:7958589,32153134 -g1,19104:8290543,32153134 -g1,19104:8622497,32153134 -g1,19104:8954451,32153134 -g1,19104:9286405,32153134 -g1,19104:9618359,32153134 -g1,19104:12273991,32153134 -g1,19104:12937899,32153134 -g1,19104:14929623,32153134 -g1,19104:15593531,32153134 -g1,19104:17253301,32153134 -g1,19104:17917209,32153134 -g1,19104:18581117,32153134 -g1,19104:23560426,32153134 -g1,19104:25220196,32153134 -g1,19104:25884104,32153134 -g1,19104:28207782,32153134 -h1,19104:28539736,32153134:0,0,0 -k1,19104:32583029,32153134:4043293 -g1,19104:32583029,32153134 -) -(1,19105:6630773,32837989:25952256,424439,112852 -h1,19105:6630773,32837989:0,0,0 -g1,19105:6962727,32837989 -g1,19105:7294681,32837989 -g1,19105:13601805,32837989 -g1,19105:14265713,32837989 -g1,19105:17253299,32837989 -g1,19105:19576977,32837989 -g1,19105:20240885,32837989 -g1,19105:23228471,32837989 -g1,19105:26548010,32837989 -g1,19105:27211918,32837989 -h1,19105:27875826,32837989:0,0,0 -k1,19105:32583029,32837989:4707203 -g1,19105:32583029,32837989 -) -(1,19106:6630773,33522844:25952256,407923,106246 -h1,19106:6630773,33522844:0,0,0 -h1,19106:7294681,33522844:0,0,0 -k1,19106:32583029,33522844:25288348 -g1,19106:32583029,33522844 -) -] -) -g1,19108:32583029,33629090 -g1,19108:6630773,33629090 -g1,19108:6630773,33629090 -g1,19108:32583029,33629090 -g1,19108:32583029,33629090 -) -h1,19108:6630773,33825698:0,0,0 -(1,19111:6630773,42974900:25952256,9083666,0 -k1,19111:10523651,42974900:3892878 -h1,19110:10523651,42974900:0,0,0 -(1,19110:10523651,42974900:18166500,9083666,0 -(1,19110:10523651,42974900:18167376,9083688,0 -(1,19110:10523651,42974900:18167376,9083688,0 -(1,19110:10523651,42974900:0,9083688,0 -(1,19110:10523651,42974900:0,14208860,0 -(1,19110:10523651,42974900:28417720,14208860,0 -) -k1,19110:10523651,42974900:-28417720 -) -) -g1,19110:28691027,42974900 -) -) -) -g1,19111:28690151,42974900 -k1,19111:32583029,42974900:3892878 -) -(1,19118:6630773,43839980:25952256,505283,122846 -h1,19117:6630773,43839980:983040,0,0 -(1,19117:7613813,43839980:0,452978,122846 -r1,19122:12192621,43839980:4578808,575824,122846 -k1,19117:7613813,43839980:-4578808 -) -(1,19117:7613813,43839980:4578808,452978,122846 -k1,19117:7613813,43839980:3277 -h1,19117:12189344,43839980:0,411205,112570 -) -k1,19117:12439324,43839980:246703 -k1,19117:14602300,43839980:246703 -k1,19117:16021442,43839980:246703 -k1,19117:17766952,43839980:246702 -k1,19117:19868324,43839980:246703 -k1,19117:20924397,43839980:246703 -k1,19117:22190185,43839980:246703 -(1,19117:22190185,43839980:0,414482,115847 -r1,19122:22548451,43839980:358266,530329,115847 -k1,19117:22190185,43839980:-358266 -) -(1,19117:22190185,43839980:358266,414482,115847 -k1,19117:22190185,43839980:3277 -h1,19117:22545174,43839980:0,411205,112570 -) -k1,19117:22968824,43839980:246703 -(1,19117:22968824,43839980:0,452978,115847 -r1,19122:24382225,43839980:1413401,568825,115847 -k1,19117:22968824,43839980:-1413401 -) -(1,19117:22968824,43839980:1413401,452978,115847 -k1,19117:22968824,43839980:3277 -h1,19117:24378948,43839980:0,411205,112570 -) -k1,19117:24628928,43839980:246703 -k1,19117:26067075,43839980:246702 -(1,19117:26067075,43839980:0,414482,115847 -r1,19122:27480476,43839980:1413401,530329,115847 -k1,19117:26067075,43839980:-1413401 -) -(1,19117:26067075,43839980:1413401,414482,115847 -k1,19117:26067075,43839980:3277 -h1,19117:27477199,43839980:0,411205,112570 -) -k1,19117:27727179,43839980:246703 -k1,19117:31189078,43839980:246703 -k1,19117:32583029,43839980:0 +g1,19120:6630773,4812305 +g1,19120:6630773,4812305 +g1,19120:10347975,4812305 +k1,19120:31387651,4812305:21039676 +) +) +] +[1,19120:6630773,45706769:25952256,40108032,0 +(1,19120:6630773,45706769:25952256,40108032,0 +(1,19120:6630773,45706769:0,0,0 +g1,19120:6630773,45706769 +) +[1,19120:6630773,45706769:25952256,40108032,0 +(1,19064:6630773,6254097:25952256,505283,134348 +h1,19063:6630773,6254097:983040,0,0 +k1,19063:10880760,6254097:171682 +(1,19063:10880760,6254097:0,452978,122846 +r1,19120:14756144,6254097:3875384,575824,122846 +k1,19063:10880760,6254097:-3875384 +) +(1,19063:10880760,6254097:3875384,452978,122846 +k1,19063:10880760,6254097:3277 +h1,19063:14752867,6254097:0,411205,112570 +) +k1,19063:14927827,6254097:171683 +k1,19063:16707107,6254097:171682 +k1,19063:18254390,6254097:171682 +k1,19063:20771607,6254097:171683 +k1,19063:22134734,6254097:171682 +k1,19063:25622539,6254097:171683 +k1,19063:27293029,6254097:171682 +k1,19063:28116139,6254097:171682 +k1,19063:29525142,6254097:171683 +k1,19063:30715909,6254097:171682 +k1,19064:32583029,6254097:0 +) +(1,19064:6630773,7119177:25952256,513147,134348 +k1,19063:9283406,7119177:185858 +k1,19063:12041553,7119177:185859 +k1,19063:12583271,7119177:185858 +k1,19063:15313237,7119177:185858 +k1,19063:16841272,7119177:185858 +k1,19063:17710016,7119177:185859 +k1,19063:21958451,7119177:185858 +k1,19063:25379821,7119177:185858 +(1,19063:25379821,7119177:0,452978,115847 +r1,19120:28551781,7119177:3171960,568825,115847 +k1,19063:25379821,7119177:-3171960 +) +(1,19063:25379821,7119177:3171960,452978,115847 +k1,19063:25379821,7119177:3277 +h1,19063:28548504,7119177:0,411205,112570 +) +k1,19063:28737640,7119177:185859 +k1,19063:30317449,7119177:185858 +k1,19064:32583029,7119177:0 +) +(1,19064:6630773,7984257:25952256,513147,134348 +(1,19063:6630773,7984257:0,452978,115847 +r1,19120:8044174,7984257:1413401,568825,115847 +k1,19063:6630773,7984257:-1413401 +) +(1,19063:6630773,7984257:1413401,452978,115847 +k1,19063:6630773,7984257:3277 +h1,19063:8040897,7984257:0,411205,112570 +) +g1,19063:8417073,7984257 +g1,19063:11234465,7984257 +g1,19063:12452779,7984257 +g1,19063:15381583,7984257 +g1,19063:16240104,7984257 +g1,19063:19755455,7984257 +g1,19063:21146129,7984257 +g1,19063:23690892,7984257 +k1,19064:32583029,7984257:7340900 +g1,19064:32583029,7984257 +) +v1,19066:6630773,8669112:0,393216,0 +(1,19072:6630773,10379505:25952256,2103609,196608 +g1,19072:6630773,10379505 +g1,19072:6630773,10379505 +g1,19072:6434165,10379505 +(1,19072:6434165,10379505:0,2103609,196608 +r1,19120:32779637,10379505:26345472,2300217,196608 +k1,19072:6434165,10379505:-26345472 +) +(1,19072:6434165,10379505:26345472,2103609,196608 +[1,19072:6630773,10379505:25952256,1907001,0 +(1,19068:6630773,8896943:25952256,424439,112852 +(1,19067:6630773,8896943:0,0,0 +g1,19067:6630773,8896943 +g1,19067:6630773,8896943 +g1,19067:6303093,8896943 +(1,19067:6303093,8896943:0,0,0 +) +g1,19067:6630773,8896943 +) +k1,19068:6630773,8896943:0 +g1,19068:10614221,8896943 +g1,19068:11278129,8896943 +k1,19068:11278129,8896943:0 +h1,19068:13601807,8896943:0,0,0 +k1,19068:32583029,8896943:18981222 +g1,19068:32583029,8896943 +) +(1,19069:6630773,9581798:25952256,431045,112852 +h1,19069:6630773,9581798:0,0,0 +g1,19069:6962727,9581798 +g1,19069:7294681,9581798 +g1,19069:7626635,9581798 +g1,19069:7958589,9581798 +g1,19069:8290543,9581798 +g1,19069:8622497,9581798 +g1,19069:8954451,9581798 +g1,19069:11610083,9581798 +g1,19069:12273991,9581798 +g1,19069:14265715,9581798 +g1,19069:14929623,9581798 +g1,19069:16589393,9581798 +g1,19069:17253301,9581798 +g1,19069:17917209,9581798 +g1,19069:22896518,9581798 +g1,19069:25884103,9581798 +g1,19069:26548011,9581798 +g1,19069:28871689,9581798 +h1,19069:29203643,9581798:0,0,0 +k1,19069:32583029,9581798:3379386 +g1,19069:32583029,9581798 +) +(1,19070:6630773,10266653:25952256,424439,112852 +h1,19070:6630773,10266653:0,0,0 +g1,19070:6962727,10266653 +g1,19070:7294681,10266653 +k1,19070:7294681,10266653:0 +h1,19070:10946174,10266653:0,0,0 +k1,19070:32583030,10266653:21636856 +g1,19070:32583030,10266653 +) +] +) +g1,19072:32583029,10379505 +g1,19072:6630773,10379505 +g1,19072:6630773,10379505 +g1,19072:32583029,10379505 +g1,19072:32583029,10379505 +) +h1,19072:6630773,10576113:0,0,0 +(1,19075:6630773,19725315:25952256,9083666,0 +k1,19075:10523651,19725315:3892878 +h1,19074:10523651,19725315:0,0,0 +(1,19074:10523651,19725315:18166500,9083666,0 +(1,19074:10523651,19725315:18167376,9083688,0 +(1,19074:10523651,19725315:18167376,9083688,0 +(1,19074:10523651,19725315:0,9083688,0 +(1,19074:10523651,19725315:0,14208860,0 +(1,19074:10523651,19725315:28417720,14208860,0 +) +k1,19074:10523651,19725315:-28417720 +) +) +g1,19074:28691027,19725315 +) +) +) +g1,19075:28690151,19725315 +k1,19075:32583029,19725315:3892878 +) +v1,19083:6630773,20590395:0,393216,0 +(1,19092:6630773,22950098:25952256,2752919,0 +g1,19092:6630773,22950098 +g1,19092:6237557,22950098 +r1,19120:6368629,22950098:131072,2752919,0 +g1,19092:6567858,22950098 +g1,19092:6764466,22950098 +[1,19092:6764466,22950098:25818563,2752919,0 +(1,19084:6764466,20862872:25818563,665693,196608 +(1,19083:6764466,20862872:0,665693,196608 +r1,19120:7868133,20862872:1103667,862301,196608 +k1,19083:6764466,20862872:-1103667 +) +(1,19083:6764466,20862872:1103667,665693,196608 +) +k1,19083:8304050,20862872:435917 +k1,19083:9621979,20862872:327680 +k1,19083:11849651,20862872:435918 +k1,19083:13304653,20862872:435917 +k1,19083:16715906,20862872:435918 +k1,19083:18164354,20862872:435917 +k1,19083:20163305,20862872:435917 +k1,19083:22314956,20862872:435918 +k1,19083:24405657,20862872:435917 +k1,19083:26449173,20862872:435918 +k1,19083:28620483,20862872:435917 +(1,19083:28620483,20862872:0,452978,122846 +r1,19120:32495867,20862872:3875384,575824,122846 +k1,19083:28620483,20862872:-3875384 +) +(1,19083:28620483,20862872:3875384,452978,122846 +k1,19083:28620483,20862872:3277 +h1,19083:32492590,20862872:0,411205,112570 +) +k1,19084:32583029,20862872:0 +) +(1,19084:6764466,21727952:25818563,513147,126483 +(1,19083:6764466,21727952:0,452978,122846 +r1,19120:10639850,21727952:3875384,575824,122846 +k1,19083:6764466,21727952:-3875384 +) +(1,19083:6764466,21727952:3875384,452978,122846 +k1,19083:6764466,21727952:3277 +h1,19083:10636573,21727952:0,411205,112570 +) +g1,19083:11012749,21727952 +g1,19083:12403423,21727952 +(1,19083:12403423,21727952:0,414482,122846 +r1,19120:15575383,21727952:3171960,537328,122846 +k1,19083:12403423,21727952:-3171960 +) +(1,19083:12403423,21727952:3171960,414482,122846 +k1,19083:12403423,21727952:3277 +h1,19083:15572106,21727952:0,411205,112570 +) +g1,19083:15774612,21727952 +g1,19083:16625269,21727952 +g1,19083:18021841,21727952 +g1,19083:18576930,21727952 +g1,19083:20507620,21727952 +g1,19083:22127670,21727952 +g1,19083:23142167,21727952 +g1,19083:24721584,21727952 +k1,19084:32583029,21727952:5823931 +g1,19084:32583029,21727952 +) +v1,19086:6764466,22412807:0,393216,0 +(1,19090:6764466,22753490:25818563,733899,196608 +g1,19090:6764466,22753490 +g1,19090:6764466,22753490 +g1,19090:6567858,22753490 +(1,19090:6567858,22753490:0,733899,196608 +r1,19120:32779637,22753490:26211779,930507,196608 +k1,19090:6567857,22753490:-26211780 +) +(1,19090:6567858,22753490:26211779,733899,196608 +[1,19090:6764466,22753490:25818563,537291,0 +(1,19088:6764466,22647244:25818563,431045,106246 +(1,19087:6764466,22647244:0,0,0 +g1,19087:6764466,22647244 +g1,19087:6764466,22647244 +g1,19087:6436786,22647244 +(1,19087:6436786,22647244:0,0,0 +) +g1,19087:6764466,22647244 +) +g1,19088:9088144,22647244 +g1,19088:10084006,22647244 +g1,19088:14399407,22647244 +g1,19088:15063315,22647244 +g1,19088:19046763,22647244 +g1,19088:19710671,22647244 +g1,19088:20374579,22647244 +k1,19088:20374579,22647244:0 +h1,19088:24026073,22647244:0,0,0 +k1,19088:32583029,22647244:8556956 +g1,19088:32583029,22647244 +) +] +) +g1,19090:32583029,22753490 +g1,19090:6764466,22753490 +g1,19090:6764466,22753490 +g1,19090:32583029,22753490 +g1,19090:32583029,22753490 +) +h1,19090:6764466,22950098:0,0,0 +] +g1,19092:32583029,22950098 +) +h1,19092:6630773,22950098:0,0,0 +(1,19096:6630773,23815178:25952256,505283,134348 +h1,19095:6630773,23815178:983040,0,0 +k1,19095:9597826,23815178:209298 +(1,19095:9597826,23815178:0,452978,122846 +r1,19120:13473210,23815178:3875384,575824,122846 +k1,19095:9597826,23815178:-3875384 +) +(1,19095:9597826,23815178:3875384,452978,122846 +k1,19095:9597826,23815178:3277 +h1,19095:13469933,23815178:0,411205,112570 +) +k1,19095:13682507,23815178:209297 +k1,19095:15808078,23815178:209298 +k1,19095:16373236,23815178:209298 +k1,19095:17751040,23815178:209297 +k1,19095:20187907,23815178:209298 +k1,19095:24642627,23815178:209298 +(1,19095:24642627,23815178:0,452978,122846 +r1,19120:28518011,23815178:3875384,575824,122846 +k1,19095:24642627,23815178:-3875384 +) +(1,19095:24642627,23815178:3875384,452978,122846 +k1,19095:24642627,23815178:3277 +h1,19095:28514734,23815178:0,411205,112570 +) +k1,19095:28727308,23815178:209297 +k1,19095:31966991,23815178:209298 +k1,19095:32583029,23815178:0 +) +(1,19096:6630773,24680258:25952256,513147,134348 +k1,19095:9732860,24680258:262412 +k1,19095:11826348,24680258:262412 +k1,19095:13107846,24680258:262413 +k1,19095:14717678,24680258:262412 +k1,19095:16848521,24680258:262412 +k1,19095:18130018,24680258:262412 +k1,19095:19560938,24680258:262413 +k1,19095:22940242,24680258:262412 +k1,19095:23854082,24680258:262412 +k1,19095:25135579,24680258:262412 +(1,19095:25135579,24680258:0,459977,115847 +r1,19120:26548980,24680258:1413401,575824,115847 +k1,19095:25135579,24680258:-1413401 +) +(1,19095:25135579,24680258:1413401,459977,115847 +k1,19095:25135579,24680258:3277 +h1,19095:26545703,24680258:0,411205,112570 +) +k1,19095:26811393,24680258:262413 +k1,19095:30000642,24680258:262412 +k1,19095:30890889,24680258:262412 +k1,19095:32583029,24680258:0 +) +(1,19096:6630773,25545338:25952256,513147,134348 +k1,19095:8655005,25545338:153179 +k1,19095:9266282,25545338:153180 +k1,19095:9950958,25545338:153179 +k1,19095:12081358,25545338:153179 +k1,19095:12885965,25545338:153179 +k1,19095:14708347,25545338:153180 +k1,19095:15880611,25545338:153179 +k1,19095:17885182,25545338:153179 +k1,19095:19280924,25545338:153179 +k1,19095:21132142,25545338:153180 +k1,19095:22304406,25545338:153179 +k1,19095:24468230,25545338:153179 +k1,19095:26923689,25545338:153179 +k1,19095:30118395,25545338:153180 +k1,19095:31923737,25545338:153179 +k1,19095:32583029,25545338:0 +) +(1,19096:6630773,26410418:25952256,505283,134348 +k1,19095:7180674,26410418:194041 +k1,19095:9360456,26410418:194041 +k1,19095:11611017,26410418:194041 +k1,19095:12432893,26410418:194041 +k1,19095:13646019,26410418:194041 +k1,19095:15397851,26410418:194041 +k1,19095:18780219,26410418:194041 +k1,19095:21809347,26410418:194041 +k1,19095:23022473,26410418:194041 +k1,19095:24894236,26410418:194041 +k1,19095:29120052,26410418:194041 +k1,19095:30333178,26410418:194041 +k1,19095:32583029,26410418:0 +) +(1,19096:6630773,27275498:25952256,513147,134348 +k1,19095:7442582,27275498:152517 +k1,19095:8614183,27275498:152516 +k1,19095:9901784,27275498:152517 +k1,19095:12229441,27275498:152517 +k1,19095:13952201,27275498:152517 +k1,19095:15096277,27275498:152516 +k1,19095:17686078,27275498:152517 +k1,19095:20476419,27275498:152517 +k1,19095:23589197,27275498:152517 +k1,19095:25477106,27275498:152516 +(1,19095:25477106,27275498:0,452978,115847 +r1,19120:31814474,27275498:6337368,568825,115847 +k1,19095:25477106,27275498:-6337368 +) +(1,19095:25477106,27275498:6337368,452978,115847 +g1,19095:28645790,27275498 +g1,19095:29349214,27275498 +h1,19095:31811197,27275498:0,411205,112570 +) +k1,19095:31966991,27275498:152517 +k1,19095:32583029,27275498:0 +) +(1,19096:6630773,28140578:25952256,513147,126483 +k1,19095:8434260,28140578:140839 +k1,19095:9234391,28140578:140839 +k1,19095:10394315,28140578:140839 +k1,19095:12800734,28140578:140839 +(1,19095:12800734,28140578:0,452978,115847 +r1,19120:20193237,28140578:7392503,568825,115847 +k1,19095:12800734,28140578:-7392503 +) +(1,19095:12800734,28140578:7392503,452978,115847 +g1,19095:15969418,28140578 +g1,19095:16672842,28140578 +h1,19095:20189960,28140578:0,411205,112570 +) +k1,19095:20507746,28140578:140839 +k1,19095:21845272,28140578:140839 +k1,19095:24701923,28140578:140839 +k1,19095:25502054,28140578:140839 +k1,19095:26661978,28140578:140839 +k1,19095:28301625,28140578:140839 +k1,19095:29390115,28140578:140839 +k1,19095:32583029,28140578:0 +) +(1,19096:6630773,29005658:25952256,513147,134348 +k1,19095:8381349,29005658:180333 +k1,19095:9093179,29005658:180333 +k1,19095:12323558,29005658:180333 +k1,19095:13265419,29005658:180333 +k1,19095:16329336,29005658:180333 +k1,19095:18018309,29005658:180334 +k1,19095:20229603,29005658:180333 +k1,19095:21601381,29005658:180333 +k1,19095:23596406,29005658:180333 +k1,19095:25344360,29005658:180333 +k1,19095:26543778,29005658:180333 +k1,19095:29493662,29005658:180333 +k1,19095:32583029,29005658:0 +) +(1,19096:6630773,29870738:25952256,513147,138281 +g1,19095:7849087,29870738 +$1,19095:7849087,29870738 +$1,19095:8400900,29870738 +g1,19095:8600129,29870738 +g1,19095:10051751,29870738 +g1,19095:10910272,29870738 +g1,19095:12128586,29870738 +g1,19095:14183139,29870738 +g1,19095:16250799,29870738 +g1,19095:17101456,29870738 +g1,19095:18585191,29870738 +g1,19095:20785234,29870738 +g1,19095:22719856,29870738 +(1,19095:22719856,29870738:0,452978,122846 +r1,19120:26595240,29870738:3875384,575824,122846 +k1,19095:22719856,29870738:-3875384 +) +(1,19095:22719856,29870738:3875384,452978,122846 +k1,19095:22719856,29870738:3277 +h1,19095:26591963,29870738:0,411205,112570 +) +g1,19095:26794469,29870738 +g1,19095:27803068,29870738 +g1,19095:29500450,29870738 +h1,19095:30695827,29870738:0,0,0 +k1,19096:32583029,29870738:1547726 +g1,19096:32583029,29870738 +) +v1,19098:6630773,30555593:0,393216,0 +(1,19106:6630773,33629090:25952256,3466713,196608 +g1,19106:6630773,33629090 +g1,19106:6630773,33629090 +g1,19106:6434165,33629090 +(1,19106:6434165,33629090:0,3466713,196608 +r1,19120:32779637,33629090:26345472,3663321,196608 +k1,19106:6434165,33629090:-26345472 +) +(1,19106:6434165,33629090:26345472,3466713,196608 +[1,19106:6630773,33629090:25952256,3270105,0 +(1,19100:6630773,30783424:25952256,424439,112852 +(1,19099:6630773,30783424:0,0,0 +g1,19099:6630773,30783424 +g1,19099:6630773,30783424 +g1,19099:6303093,30783424 +(1,19099:6303093,30783424:0,0,0 +) +g1,19099:6630773,30783424 +) +g1,19100:7626635,30783424 +g1,19100:8622497,30783424 +g1,19100:9286405,30783424 +g1,19100:10946175,30783424 +g1,19100:11942037,30783424 +g1,19100:13601807,30783424 +g1,19100:15593531,30783424 +k1,19100:15593531,30783424:24773 +h1,19100:17278074,30783424:0,0,0 +k1,19100:32583029,30783424:15304955 +g1,19100:32583029,30783424 +) +(1,19101:6630773,31468279:25952256,424439,112852 +h1,19101:6630773,31468279:0,0,0 +g1,19101:6962727,31468279 +g1,19101:7294681,31468279 +g1,19101:11278129,31468279 +g1,19101:11942037,31468279 +k1,19101:11942037,31468279:0 +h1,19101:14265715,31468279:0,0,0 +k1,19101:32583029,31468279:18317314 +g1,19101:32583029,31468279 +) +(1,19102:6630773,32153134:25952256,431045,112852 +h1,19102:6630773,32153134:0,0,0 +g1,19102:6962727,32153134 +g1,19102:7294681,32153134 +g1,19102:7626635,32153134 +g1,19102:7958589,32153134 +g1,19102:8290543,32153134 +g1,19102:8622497,32153134 +g1,19102:8954451,32153134 +g1,19102:9286405,32153134 +g1,19102:9618359,32153134 +g1,19102:12273991,32153134 +g1,19102:12937899,32153134 +g1,19102:14929623,32153134 +g1,19102:15593531,32153134 +g1,19102:17253301,32153134 +g1,19102:17917209,32153134 +g1,19102:18581117,32153134 +g1,19102:23560426,32153134 +g1,19102:25220196,32153134 +g1,19102:25884104,32153134 +g1,19102:28207782,32153134 +h1,19102:28539736,32153134:0,0,0 +k1,19102:32583029,32153134:4043293 +g1,19102:32583029,32153134 +) +(1,19103:6630773,32837989:25952256,424439,112852 +h1,19103:6630773,32837989:0,0,0 +g1,19103:6962727,32837989 +g1,19103:7294681,32837989 +g1,19103:13601805,32837989 +g1,19103:14265713,32837989 +g1,19103:17253299,32837989 +g1,19103:19576977,32837989 +g1,19103:20240885,32837989 +g1,19103:23228471,32837989 +g1,19103:26548010,32837989 +g1,19103:27211918,32837989 +h1,19103:27875826,32837989:0,0,0 +k1,19103:32583029,32837989:4707203 +g1,19103:32583029,32837989 +) +(1,19104:6630773,33522844:25952256,407923,106246 +h1,19104:6630773,33522844:0,0,0 +h1,19104:7294681,33522844:0,0,0 +k1,19104:32583029,33522844:25288348 +g1,19104:32583029,33522844 +) +] +) +g1,19106:32583029,33629090 +g1,19106:6630773,33629090 +g1,19106:6630773,33629090 +g1,19106:32583029,33629090 +g1,19106:32583029,33629090 +) +h1,19106:6630773,33825698:0,0,0 +(1,19109:6630773,42974900:25952256,9083666,0 +k1,19109:10523651,42974900:3892878 +h1,19108:10523651,42974900:0,0,0 +(1,19108:10523651,42974900:18166500,9083666,0 +(1,19108:10523651,42974900:18167376,9083688,0 +(1,19108:10523651,42974900:18167376,9083688,0 +(1,19108:10523651,42974900:0,9083688,0 +(1,19108:10523651,42974900:0,14208860,0 +(1,19108:10523651,42974900:28417720,14208860,0 +) +k1,19108:10523651,42974900:-28417720 +) +) +g1,19108:28691027,42974900 +) +) +) +g1,19109:28690151,42974900 +k1,19109:32583029,42974900:3892878 +) +(1,19116:6630773,43839980:25952256,505283,122846 +h1,19115:6630773,43839980:983040,0,0 +(1,19115:7613813,43839980:0,452978,122846 +r1,19120:12192621,43839980:4578808,575824,122846 +k1,19115:7613813,43839980:-4578808 +) +(1,19115:7613813,43839980:4578808,452978,122846 +k1,19115:7613813,43839980:3277 +h1,19115:12189344,43839980:0,411205,112570 +) +k1,19115:12439324,43839980:246703 +k1,19115:14602300,43839980:246703 +k1,19115:16021442,43839980:246703 +k1,19115:17766952,43839980:246702 +k1,19115:19868324,43839980:246703 +k1,19115:20924397,43839980:246703 +k1,19115:22190185,43839980:246703 +(1,19115:22190185,43839980:0,414482,115847 +r1,19120:22548451,43839980:358266,530329,115847 +k1,19115:22190185,43839980:-358266 +) +(1,19115:22190185,43839980:358266,414482,115847 +k1,19115:22190185,43839980:3277 +h1,19115:22545174,43839980:0,411205,112570 +) +k1,19115:22968824,43839980:246703 +(1,19115:22968824,43839980:0,452978,115847 +r1,19120:24382225,43839980:1413401,568825,115847 +k1,19115:22968824,43839980:-1413401 +) +(1,19115:22968824,43839980:1413401,452978,115847 +k1,19115:22968824,43839980:3277 +h1,19115:24378948,43839980:0,411205,112570 +) +k1,19115:24628928,43839980:246703 +k1,19115:26067075,43839980:246702 +(1,19115:26067075,43839980:0,414482,115847 +r1,19120:27480476,43839980:1413401,530329,115847 +k1,19115:26067075,43839980:-1413401 +) +(1,19115:26067075,43839980:1413401,414482,115847 +k1,19115:26067075,43839980:3277 +h1,19115:27477199,43839980:0,411205,112570 +) +k1,19115:27727179,43839980:246703 +k1,19115:31189078,43839980:246703 +k1,19115:32583029,43839980:0 ) -(1,19118:6630773,44705060:25952256,513147,134348 -k1,19117:7861238,44705060:211380 -k1,19117:9860440,44705060:211380 -k1,19117:12707023,44705060:211380 -k1,19117:13937488,44705060:211380 -k1,19117:15647676,44705060:211380 -k1,19117:17467966,44705060:211381 -k1,19117:20796238,44705060:211380 -k1,19117:21659046,44705060:211380 -k1,19117:22889511,44705060:211380 -(1,19117:22889511,44705060:0,459977,115847 -r1,19122:24302912,44705060:1413401,575824,115847 -k1,19117:22889511,44705060:-1413401 +(1,19116:6630773,44705060:25952256,513147,134348 +k1,19115:7861238,44705060:211380 +k1,19115:9860440,44705060:211380 +k1,19115:12707023,44705060:211380 +k1,19115:13937488,44705060:211380 +k1,19115:15647676,44705060:211380 +k1,19115:17467966,44705060:211381 +k1,19115:20796238,44705060:211380 +k1,19115:21659046,44705060:211380 +k1,19115:22889511,44705060:211380 +(1,19115:22889511,44705060:0,459977,115847 +r1,19120:24302912,44705060:1413401,575824,115847 +k1,19115:22889511,44705060:-1413401 ) -(1,19117:22889511,44705060:1413401,459977,115847 -k1,19117:22889511,44705060:3277 -h1,19117:24299635,44705060:0,411205,112570 +(1,19115:22889511,44705060:1413401,459977,115847 +k1,19115:22889511,44705060:3277 +h1,19115:24299635,44705060:0,411205,112570 ) -k1,19117:24514292,44705060:211380 -k1,19117:27652509,44705060:211380 -(1,19117:27652509,44705060:0,452978,122846 -r1,19122:32583029,44705060:4930520,575824,122846 -k1,19117:27652509,44705060:-4930520 +k1,19115:24514292,44705060:211380 +k1,19115:27652509,44705060:211380 +(1,19115:27652509,44705060:0,452978,122846 +r1,19120:32583029,44705060:4930520,575824,122846 +k1,19115:27652509,44705060:-4930520 ) -(1,19117:27652509,44705060:4930520,452978,122846 -k1,19117:27652509,44705060:3277 -h1,19117:32579752,44705060:0,411205,112570 +(1,19115:27652509,44705060:4930520,452978,122846 +k1,19115:27652509,44705060:3277 +h1,19115:32579752,44705060:0,411205,112570 ) -k1,19117:32583029,44705060:0 +k1,19115:32583029,44705060:0 ) ] -(1,19122:32583029,45706769:0,0,0 -g1,19122:32583029,45706769 +(1,19120:32583029,45706769:0,0,0 +g1,19120:32583029,45706769 ) ) ] -(1,19122:6630773,47279633:25952256,0,0 -h1,19122:6630773,47279633:25952256,0,0 +(1,19120:6630773,47279633:25952256,0,0 +h1,19120:6630773,47279633:25952256,0,0 ) ] -(1,19122:4262630,4025873:0,0,0 -[1,19122:-473656,4025873:0,0,0 -(1,19122:-473656,-710413:0,0,0 -(1,19122:-473656,-710413:0,0,0 -g1,19122:-473656,-710413 +(1,19120:4262630,4025873:0,0,0 +[1,19120:-473656,4025873:0,0,0 +(1,19120:-473656,-710413:0,0,0 +(1,19120:-473656,-710413:0,0,0 +g1,19120:-473656,-710413 ) -g1,19122:-473656,-710413 +g1,19120:-473656,-710413 ) ] ) ] !22362 -}316 -Input:3294:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3295:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3296:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3297:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}317 Input:3298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3300:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -333199,869 +333403,869 @@ Input:3319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3322:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3323:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3324:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3325:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3326:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2680 -{317 -[1,19161:4262630,47279633:28320399,43253760,0 -(1,19161:4262630,4025873:0,0,0 -[1,19161:-473656,4025873:0,0,0 -(1,19161:-473656,-710413:0,0,0 -(1,19161:-473656,-644877:0,0,0 -k1,19161:-473656,-644877:-65536 +{318 +[1,19159:4262630,47279633:28320399,43253760,0 +(1,19159:4262630,4025873:0,0,0 +[1,19159:-473656,4025873:0,0,0 +(1,19159:-473656,-710413:0,0,0 +(1,19159:-473656,-644877:0,0,0 +k1,19159:-473656,-644877:-65536 ) -(1,19161:-473656,4736287:0,0,0 -k1,19161:-473656,4736287:5209943 +(1,19159:-473656,4736287:0,0,0 +k1,19159:-473656,4736287:5209943 ) -g1,19161:-473656,-710413 +g1,19159:-473656,-710413 ) ] ) -[1,19161:6630773,47279633:25952256,43253760,0 -[1,19161:6630773,4812305:25952256,786432,0 -(1,19161:6630773,4812305:25952256,513147,126483 -(1,19161:6630773,4812305:25952256,513147,126483 -g1,19161:3078558,4812305 -[1,19161:3078558,4812305:0,0,0 -(1,19161:3078558,2439708:0,1703936,0 -k1,19161:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19161:2537886,2439708:1179648,16384,0 +[1,19159:6630773,47279633:25952256,43253760,0 +[1,19159:6630773,4812305:25952256,786432,0 +(1,19159:6630773,4812305:25952256,513147,126483 +(1,19159:6630773,4812305:25952256,513147,126483 +g1,19159:3078558,4812305 +[1,19159:3078558,4812305:0,0,0 +(1,19159:3078558,2439708:0,1703936,0 +k1,19159:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19159:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19161:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19159:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19161:3078558,4812305:0,0,0 -(1,19161:3078558,2439708:0,1703936,0 -g1,19161:29030814,2439708 -g1,19161:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19161:36151628,1915420:16384,1179648,0 +[1,19159:3078558,4812305:0,0,0 +(1,19159:3078558,2439708:0,1703936,0 +g1,19159:29030814,2439708 +g1,19159:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19159:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19161:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19159:37855564,2439708:1179648,16384,0 ) ) -k1,19161:3078556,2439708:-34777008 +k1,19159:3078556,2439708:-34777008 ) ] -[1,19161:3078558,4812305:0,0,0 -(1,19161:3078558,49800853:0,16384,2228224 -k1,19161:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19161:2537886,49800853:1179648,16384,0 +[1,19159:3078558,4812305:0,0,0 +(1,19159:3078558,49800853:0,16384,2228224 +k1,19159:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19159:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19161:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19159:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19161:3078558,4812305:0,0,0 -(1,19161:3078558,49800853:0,16384,2228224 -g1,19161:29030814,49800853 -g1,19161:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19161:36151628,51504789:16384,1179648,0 +[1,19159:3078558,4812305:0,0,0 +(1,19159:3078558,49800853:0,16384,2228224 +g1,19159:29030814,49800853 +g1,19159:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19159:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19161:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19159:37855564,49800853:1179648,16384,0 ) ) -k1,19161:3078556,49800853:-34777008 +k1,19159:3078556,49800853:-34777008 ) ] -g1,19161:6630773,4812305 -k1,19161:21386205,4812305:13560055 -g1,19161:21999622,4812305 -g1,19161:25611966,4812305 -g1,19161:28956923,4812305 -g1,19161:29772190,4812305 +g1,19159:6630773,4812305 +k1,19159:21386205,4812305:13560055 +g1,19159:21999622,4812305 +g1,19159:25611966,4812305 +g1,19159:28956923,4812305 +g1,19159:29772190,4812305 ) ) ] -[1,19161:6630773,45706769:25952256,40108032,0 -(1,19161:6630773,45706769:25952256,40108032,0 -(1,19161:6630773,45706769:0,0,0 -g1,19161:6630773,45706769 +[1,19159:6630773,45706769:25952256,40108032,0 +(1,19159:6630773,45706769:25952256,40108032,0 +(1,19159:6630773,45706769:0,0,0 +g1,19159:6630773,45706769 ) -[1,19161:6630773,45706769:25952256,40108032,0 -(1,19118:6630773,6254097:25952256,513147,134348 -k1,19117:7424230,6254097:261960 -k1,19117:9888200,6254097:261960 -k1,19117:10801588,6254097:261960 -(1,19117:10801588,6254097:0,452978,122846 -r1,19161:14676972,6254097:3875384,575824,122846 -k1,19117:10801588,6254097:-3875384 -) -(1,19117:10801588,6254097:3875384,452978,122846 -k1,19117:10801588,6254097:3277 -h1,19117:14673695,6254097:0,411205,112570 -) -k1,19117:14938932,6254097:261960 -k1,19117:16273061,6254097:261960 -k1,19117:19360933,6254097:261960 -k1,19117:20641978,6254097:261960 -k1,19117:22210071,6254097:261960 -k1,19117:23663476,6254097:261960 -k1,19117:25073627,6254097:261960 -k1,19117:29407339,6254097:261960 -k1,19117:32227169,6254097:261960 -k1,19117:32583029,6254097:0 -) -(1,19118:6630773,7119177:25952256,505283,134348 -g1,19117:8861618,7119177 -g1,19117:11625926,7119177 -g1,19117:13109661,7119177 -g1,19117:15142587,7119177 -g1,19117:16360901,7119177 -(1,19117:16360901,7119177:0,459977,115847 -r1,19161:17774302,7119177:1413401,575824,115847 -k1,19117:16360901,7119177:-1413401 -) -(1,19117:16360901,7119177:1413401,459977,115847 -k1,19117:16360901,7119177:3277 -h1,19117:17771025,7119177:0,411205,112570 -) -g1,19117:17973531,7119177 -k1,19118:32583029,7119177:11712807 -g1,19118:32583029,7119177 -) -(1,19123:6630773,7984257:25952256,513147,134348 -h1,19122:6630773,7984257:983040,0,0 -k1,19122:10258059,7984257:368181 -k1,19122:12281024,7984257:368181 -k1,19122:16089191,7984257:368182 -k1,19122:17405023,7984257:368181 -k1,19122:20349424,7984257:368181 -k1,19122:22216413,7984257:368181 -k1,19122:24617522,7984257:368182 -k1,19122:26004788,7984257:368181 -k1,19122:28255818,7984257:368181 -k1,19122:31148446,7984257:368181 -k1,19123:32583029,7984257:0 -) -(1,19123:6630773,8849337:25952256,513147,122846 -(1,19122:6630773,8849337:0,452978,122846 -r1,19161:10857869,8849337:4227096,575824,122846 -k1,19122:6630773,8849337:-4227096 -) -(1,19122:6630773,8849337:4227096,452978,122846 -k1,19122:6630773,8849337:3277 -h1,19122:10854592,8849337:0,411205,112570 -) -k1,19122:11210614,8849337:179075 -(1,19122:11210614,8849337:0,452978,122846 -r1,19161:15437710,8849337:4227096,575824,122846 -k1,19122:11210614,8849337:-4227096 -) -(1,19122:11210614,8849337:4227096,452978,122846 -k1,19122:11210614,8849337:3277 -h1,19122:15434433,8849337:0,411205,112570 -) -k1,19122:15616785,8849337:179075 -k1,19122:16987305,8849337:179075 -(1,19122:16987305,8849337:0,452978,122846 -r1,19161:21566113,8849337:4578808,575824,122846 -k1,19122:16987305,8849337:-4578808 -) -(1,19122:16987305,8849337:4578808,452978,122846 -k1,19122:16987305,8849337:3277 -h1,19122:21562836,8849337:0,411205,112570 -) -k1,19122:21918858,8849337:179075 -k1,19122:23294619,8849337:179074 -k1,19122:24779827,8849337:179075 -k1,19122:26131341,8849337:179075 -k1,19122:27896387,8849337:179075 -k1,19122:31391584,8849337:179075 -k1,19122:32583029,8849337:0 -) -(1,19123:6630773,9714417:25952256,505283,134348 -k1,19122:9219743,9714417:261131 -k1,19122:11153353,9714417:261131 -k1,19122:15384655,9714417:261131 -k1,19122:17335304,9714417:261131 -k1,19122:18615520,9714417:261131 -k1,19122:20458691,9714417:261132 -k1,19122:21876532,9714417:261131 -k1,19122:24053936,9714417:261131 -k1,19122:26793639,9714417:261131 -k1,19122:28553578,9714417:261131 -k1,19122:31931601,9714417:261131 -k1,19122:32583029,9714417:0 -) -(1,19123:6630773,10579497:25952256,505283,134348 -k1,19122:7827676,10579497:177818 -k1,19122:11069959,10579497:177819 -(1,19122:11069959,10579497:0,452978,115847 -r1,19161:12835072,10579497:1765113,568825,115847 -k1,19122:11069959,10579497:-1765113 -) -(1,19122:11069959,10579497:1765113,452978,115847 -k1,19122:11069959,10579497:3277 -h1,19122:12831795,10579497:0,411205,112570 -) -k1,19122:13012890,10579497:177818 -k1,19122:14382153,10579497:177818 -(1,19122:14382153,10579497:0,452978,115847 -r1,19161:17554113,10579497:3171960,568825,115847 -k1,19122:14382153,10579497:-3171960 -) -(1,19122:14382153,10579497:3171960,452978,115847 -k1,19122:14382153,10579497:3277 -h1,19122:17550836,10579497:0,411205,112570 -) -k1,19122:17731932,10579497:177819 -k1,19122:21796690,10579497:177818 -k1,19122:22993594,10579497:177819 -k1,19122:25959314,10579497:177818 -k1,19122:27333819,10579497:177818 -k1,19122:29010446,10579497:177819 -k1,19122:31189078,10579497:177818 -k1,19122:32583029,10579497:0 -) -(1,19123:6630773,11444577:25952256,513147,134348 -g1,19122:8526729,11444577 -g1,19122:10380742,11444577 -g1,19122:12646321,11444577 -g1,19122:14997752,11444577 -g1,19122:15848409,11444577 -g1,19122:17066723,11444577 -g1,19122:18755585,11444577 -g1,19122:19614106,11444577 -g1,19122:20832420,11444577 -g1,19122:23556096,11444577 -k1,19123:32583029,11444577:7627084 -g1,19123:32583029,11444577 -) -(1,19125:6630773,12309657:25952256,505283,134348 -h1,19124:6630773,12309657:983040,0,0 -(1,19124:7613813,12309657:0,452978,122846 -r1,19161:11840909,12309657:4227096,575824,122846 -k1,19124:7613813,12309657:-4227096 -) -(1,19124:7613813,12309657:4227096,452978,122846 -k1,19124:7613813,12309657:3277 -h1,19124:11837632,12309657:0,411205,112570 -) -k1,19124:12277619,12309657:436710 -k1,19124:13905773,12309657:436709 -(1,19124:13905773,12309657:0,452978,122846 -r1,19161:18132869,12309657:4227096,575824,122846 -k1,19124:13905773,12309657:-4227096 -) -(1,19124:13905773,12309657:4227096,452978,122846 -k1,19124:13905773,12309657:3277 -h1,19124:18129592,12309657:0,411205,112570 -) -k1,19124:18569579,12309657:436710 -k1,19124:21298082,12309657:436709 -k1,19124:22090652,12309657:436710 -k1,19124:24400380,12309657:436709 -k1,19124:28117822,12309657:436710 -k1,19124:29444510,12309657:436709 -k1,19125:32583029,12309657:0 -) -(1,19125:6630773,13174737:25952256,513147,134348 -(1,19124:6630773,13174737:0,452978,115847 -r1,19161:10154445,13174737:3523672,568825,115847 -k1,19124:6630773,13174737:-3523672 -) -(1,19124:6630773,13174737:3523672,452978,115847 -k1,19124:6630773,13174737:3277 -h1,19124:10151168,13174737:0,411205,112570 -) -k1,19124:10341786,13174737:187341 -k1,19124:11720573,13174737:187342 -(1,19124:11720573,13174737:0,452978,115847 -r1,19161:15244245,13174737:3523672,568825,115847 -k1,19124:11720573,13174737:-3523672 -) -(1,19124:11720573,13174737:3523672,452978,115847 -k1,19124:11720573,13174737:3277 -h1,19124:15240968,13174737:0,411205,112570 -) -k1,19124:15605256,13174737:187341 -k1,19124:19762769,13174737:187342 -k1,19124:22795028,13174737:187341 -k1,19124:24549991,13174737:187342 -k1,19124:26439302,13174737:187341 -k1,19124:28866665,13174737:187342 -k1,19124:30073091,13174737:187341 -k1,19124:31649796,13174737:187342 -k1,19124:32583029,13174737:0 -) -(1,19125:6630773,14039817:25952256,505283,134348 -k1,19124:8502421,14039817:174921 -k1,19124:11851907,14039817:174922 -k1,19124:13131110,14039817:174921 -k1,19124:14053798,14039817:174922 -k1,19124:16434006,14039817:174921 -k1,19124:17295090,14039817:174922 -k1,19124:20227766,14039817:174921 -k1,19124:23022817,14039817:174922 -k1,19124:25175615,14039817:174921 -k1,19124:28712534,14039817:174922 -k1,19124:31558702,14039817:174921 -k1,19125:32583029,14039817:0 -) -(1,19125:6630773,14904897:25952256,513147,134348 -k1,19124:8094660,14904897:197731 -k1,19124:9489079,14904897:197732 -k1,19124:11818041,14904897:197731 -k1,19124:12963423,14904897:197731 -k1,19124:14364395,14904897:197731 -k1,19124:15093624,14904897:197732 -k1,19124:16575861,14904897:197731 -k1,19124:18470319,14904897:197731 -k1,19124:20734401,14904897:197732 -k1,19124:21923692,14904897:197731 -k1,19124:23723123,14904897:197731 -k1,19124:27225835,14904897:197731 -k1,19124:28936793,14904897:197732 -k1,19124:29785952,14904897:197731 -k1,19124:32583029,14904897:0 -) -(1,19125:6630773,15769977:25952256,505283,134348 -k1,19124:8399699,15769977:161328 -k1,19124:10512688,15769977:161327 -k1,19124:12116463,15769977:161328 -k1,19124:14802238,15769977:161328 -k1,19124:19208988,15769977:161328 -k1,19124:21816774,15769977:161327 -k1,19124:23476910,15769977:161328 -k1,19124:24742520,15769977:161328 -k1,19124:25651614,15769977:161328 -k1,19124:27326167,15769977:161327 -k1,19124:28138923,15769977:161328 -k1,19124:31157621,15769977:161328 -k1,19124:32583029,15769977:0 -) -(1,19125:6630773,16635057:25952256,513147,134348 -g1,19124:9022181,16635057 -g1,19124:10619293,16635057 -g1,19124:11837607,16635057 -g1,19124:13444549,16635057 -g1,19124:14303070,16635057 -g1,19124:15074428,16635057 -g1,19124:15845786,16635057 -g1,19124:17236460,16635057 -g1,19124:17834148,16635057 -k1,19125:32583029,16635057:13013488 -g1,19125:32583029,16635057 -) -v1,19127:6630773,17319912:0,393216,0 -(1,19133:6630773,19013789:25952256,2087093,196608 -g1,19133:6630773,19013789 -g1,19133:6630773,19013789 -g1,19133:6434165,19013789 -(1,19133:6434165,19013789:0,2087093,196608 -r1,19161:32779637,19013789:26345472,2283701,196608 -k1,19133:6434165,19013789:-26345472 -) -(1,19133:6434165,19013789:26345472,2087093,196608 -[1,19133:6630773,19013789:25952256,1890485,0 -(1,19129:6630773,17531227:25952256,407923,106246 -(1,19128:6630773,17531227:0,0,0 -g1,19128:6630773,17531227 -g1,19128:6630773,17531227 -g1,19128:6303093,17531227 -(1,19128:6303093,17531227:0,0,0 -) -g1,19128:6630773,17531227 -) -g1,19129:7626635,17531227 -h1,19129:7958589,17531227:0,0,0 -k1,19129:32583029,17531227:24624440 -g1,19129:32583029,17531227 -) -(1,19130:6630773,18216082:25952256,424439,112852 -h1,19130:6630773,18216082:0,0,0 -g1,19130:6962727,18216082 -g1,19130:7294681,18216082 -g1,19130:14597667,18216082 -g1,19130:15261575,18216082 -g1,19130:16589391,18216082 -g1,19130:17253299,18216082 -g1,19130:18913069,18216082 -g1,19130:21236747,18216082 -g1,19130:21900655,18216082 -g1,19130:25220194,18216082 -h1,19130:25552148,18216082:0,0,0 -k1,19130:32583029,18216082:7030881 -g1,19130:32583029,18216082 -) -(1,19131:6630773,18900937:25952256,424439,112852 -h1,19131:6630773,18900937:0,0,0 -g1,19131:6962727,18900937 -g1,19131:7294681,18900937 -g1,19131:14597667,18900937 -g1,19131:15261575,18900937 -g1,19131:16589391,18900937 -g1,19131:17253299,18900937 -g1,19131:18913069,18900937 -g1,19131:21900654,18900937 -g1,19131:22564562,18900937 -h1,19131:25552147,18900937:0,0,0 -k1,19131:32583029,18900937:7030882 -g1,19131:32583029,18900937 -) -] -) -g1,19133:32583029,19013789 -g1,19133:6630773,19013789 -g1,19133:6630773,19013789 -g1,19133:32583029,19013789 -g1,19133:32583029,19013789 -) -h1,19133:6630773,19210397:0,0,0 -(1,19136:6630773,28359599:25952256,9083666,0 -k1,19136:10523651,28359599:3892878 -h1,19135:10523651,28359599:0,0,0 -(1,19135:10523651,28359599:18166500,9083666,0 -(1,19135:10523651,28359599:18167376,9083688,0 -(1,19135:10523651,28359599:18167376,9083688,0 -(1,19135:10523651,28359599:0,9083688,0 -(1,19135:10523651,28359599:0,14208860,0 -(1,19135:10523651,28359599:28417720,14208860,0 -) -k1,19135:10523651,28359599:-28417720 -) -) -g1,19135:28691027,28359599 -) -) -) -g1,19136:28690151,28359599 -k1,19136:32583029,28359599:3892878 -) -v1,19143:6630773,29224679:0,393216,0 -(1,19144:6630773,31353799:25952256,2522336,0 -g1,19144:6630773,31353799 -g1,19144:6237557,31353799 -r1,19161:6368629,31353799:131072,2522336,0 -g1,19144:6567858,31353799 -g1,19144:6764466,31353799 -[1,19144:6764466,31353799:25818563,2522336,0 -(1,19144:6764466,29497156:25818563,665693,196608 -(1,19143:6764466,29497156:0,665693,196608 -r1,19161:7868133,29497156:1103667,862301,196608 -k1,19143:6764466,29497156:-1103667 -) -(1,19143:6764466,29497156:1103667,665693,196608 -) -k1,19143:8134487,29497156:266354 -k1,19143:9452416,29497156:327680 -k1,19143:12081343,29497156:266354 -k1,19143:13366782,29497156:266354 -k1,19143:15372462,29497156:266354 -k1,19143:16298108,29497156:266354 -k1,19143:17583547,29497156:266354 -k1,19143:19022340,29497156:266354 -k1,19143:21176786,29497156:266354 -k1,19143:22059178,29497156:266354 -k1,19143:23344617,29497156:266354 -k1,19143:26272388,29497156:266354 -k1,19143:28567737,29497156:266354 -k1,19143:30254912,29497156:266354 -k1,19143:31563944,29497156:266354 -k1,19143:32583029,29497156:0 -) -(1,19144:6764466,30362236:25818563,513147,134348 -k1,19143:8807485,30362236:187695 -k1,19143:11562881,30362236:187695 -k1,19143:13384389,30362236:187695 -k1,19143:15311410,30362236:187695 -k1,19143:16030602,30362236:187695 -k1,19143:17880290,30362236:187695 -k1,19143:20109431,30362236:187695 -k1,19143:21316211,30362236:187695 -k1,19143:23157379,30362236:187695 -k1,19143:25084400,30362236:187695 -k1,19143:26019861,30362236:187695 -k1,19143:27226641,30362236:187695 -k1,19143:28749304,30362236:187695 -k1,19143:29884650,30362236:187695 -k1,19143:30428205,30362236:187695 -k1,19143:32583029,30362236:0 -) -(1,19144:6764466,31227316:25818563,505283,126483 -g1,19143:8568016,31227316 -g1,19143:10090417,31227316 -g1,19143:12245896,31227316 -g1,19143:12903222,31227316 -g1,19143:13850217,31227316 -g1,19143:17158474,31227316 -g1,19143:18009131,31227316 -g1,19143:19405703,31227316 -g1,19143:20777371,31227316 -(1,19143:20777371,31227316:0,452978,122846 -r1,19161:25004467,31227316:4227096,575824,122846 -k1,19143:20777371,31227316:-4227096 -) -(1,19143:20777371,31227316:4227096,452978,122846 -k1,19143:20777371,31227316:3277 -h1,19143:25001190,31227316:0,411205,112570 -) -g1,19143:25203696,31227316 -k1,19144:32583029,31227316:5196984 -g1,19144:32583029,31227316 -) -] -g1,19144:32583029,31353799 -) -h1,19144:6630773,31353799:0,0,0 -(1,19148:6630773,32218879:25952256,505283,134348 -h1,19146:6630773,32218879:983040,0,0 -k1,19146:10703935,32218879:296978 -k1,19146:11652341,32218879:296978 -(1,19146:11652341,32218879:0,452978,122846 -r1,19161:15879437,32218879:4227096,575824,122846 -k1,19146:11652341,32218879:-4227096 -) -(1,19146:11652341,32218879:4227096,452978,122846 -k1,19146:11652341,32218879:3277 -h1,19146:15876160,32218879:0,411205,112570 -) -k1,19146:16176415,32218879:296978 -k1,19146:17664838,32218879:296978 -(1,19146:17664838,32218879:0,452978,122846 -r1,19161:21891934,32218879:4227096,575824,122846 -k1,19146:17664838,32218879:-4227096 -) -(1,19146:17664838,32218879:4227096,452978,122846 -k1,19146:17664838,32218879:3277 -h1,19146:21888657,32218879:0,411205,112570 -) -k1,19146:22362582,32218879:296978 -(1,19146:22362582,32218879:0,452978,122846 -r1,19161:26941390,32218879:4578808,575824,122846 -k1,19146:22362582,32218879:-4578808 -) -(1,19146:22362582,32218879:4578808,452978,122846 -k1,19146:22362582,32218879:3277 -h1,19146:26938113,32218879:0,411205,112570 -) -k1,19146:27238368,32218879:296978 -k1,19146:29451619,32218879:296978 -k1,19146:30104457,32218879:296978 -k1,19146:32583029,32218879:0 -) -(1,19148:6630773,33083959:25952256,513147,134348 -k1,19146:8236785,33083959:263835 -k1,19146:11538870,33083959:263836 -k1,19146:12488867,33083959:263835 -k1,19146:16363737,33083959:263836 -k1,19146:17517551,33083959:263835 -k1,19146:18467549,33083959:263836 -k1,19146:22113042,33083959:263835 -k1,19146:24387522,33083959:263835 -k1,19146:25599009,33083959:263836 -k1,19146:26881929,33083959:263835 -(1,19146:26881929,33083959:0,452978,115847 -r1,19161:30053889,33083959:3171960,568825,115847 -k1,19146:26881929,33083959:-3171960 -) -(1,19146:26881929,33083959:3171960,452978,115847 -k1,19146:26881929,33083959:3277 -h1,19146:30050612,33083959:0,411205,112570 -) -k1,19146:30491395,33083959:263836 -$1,19146:30491395,33083959 -$1,19146:30954079,33083959 -k1,19146:31391584,33083959:263835 -k1,19146:32583029,33083959:0 -) -(1,19148:6630773,33949039:25952256,505283,115847 -g1,19146:7849087,33949039 -(1,19146:7849087,33949039:0,452978,115847 -r1,19161:9614200,33949039:1765113,568825,115847 -k1,19146:7849087,33949039:-1765113 -) -(1,19146:7849087,33949039:1765113,452978,115847 -k1,19146:7849087,33949039:3277 -h1,19146:9610923,33949039:0,411205,112570 -) -g1,19146:9987099,33949039 -$1,19146:9987099,33949039 -$1,19146:10427501,33949039 -g1,19146:10800400,33949039 -k1,19148:32583028,33949039:21782628 -g1,19148:32583028,33949039 -) -(1,19153:6630773,34814119:25952256,513147,134348 -h1,19150:6630773,34814119:983040,0,0 -k1,19150:12165652,34814119:253333 -k1,19150:16279056,34814119:253333 -k1,19150:19553599,34814119:253333 -k1,19150:20998377,34814119:253333 -k1,19150:23603797,34814119:253333 -k1,19150:25013840,34814119:253333 -k1,19150:26214824,34814119:253333 -k1,19150:27919779,34814119:253333 -k1,19150:31914562,34814119:253333 -k1,19150:32583029,34814119:0 -) -(1,19153:6630773,35679199:25952256,505283,126483 -k1,19150:8058877,35679199:224208 -k1,19150:8899123,35679199:224208 -k1,19150:10142416,35679199:224208 -k1,19150:11929658,35679199:224208 -k1,19150:13258148,35679199:224208 -k1,19150:14230122,35679199:224208 -k1,19150:16756611,35679199:224209 -k1,19150:18374770,35679199:224208 -(1,19150:18374770,35679199:0,452978,122846 -r1,19161:23305290,35679199:4930520,575824,122846 -k1,19150:18374770,35679199:-4930520 -) -(1,19150:18374770,35679199:4930520,452978,122846 -k1,19150:18374770,35679199:3277 -h1,19150:23302013,35679199:0,411205,112570 -) -k1,19150:23529498,35679199:224208 -k1,19150:25639177,35679199:224208 -k1,19150:28241687,35679199:224208 -(1,19150:28241687,35679199:0,414482,115847 -r1,19161:28599953,35679199:358266,530329,115847 -k1,19150:28241687,35679199:-358266 -) -(1,19150:28241687,35679199:358266,414482,115847 -k1,19150:28241687,35679199:3277 -h1,19150:28596676,35679199:0,411205,112570 -) -k1,19150:28997831,35679199:224208 -(1,19150:28997831,35679199:0,452978,115847 -r1,19161:30411232,35679199:1413401,568825,115847 -k1,19150:28997831,35679199:-1413401 -) -(1,19150:28997831,35679199:1413401,452978,115847 -k1,19150:28997831,35679199:3277 -h1,19150:30407955,35679199:0,411205,112570 -) -k1,19150:30809110,35679199:224208 -(1,19150:30809110,35679199:0,414482,115847 -r1,19161:31167376,35679199:358266,530329,115847 -k1,19150:30809110,35679199:-358266 -) -(1,19150:30809110,35679199:358266,414482,115847 -k1,19150:30809110,35679199:3277 -h1,19150:31164099,35679199:0,411205,112570 -) -k1,19150:31391584,35679199:224208 -k1,19153:32583029,35679199:0 -) -(1,19153:6630773,36544279:25952256,505283,126483 -(1,19150:6630773,36544279:0,452978,115847 -r1,19161:8044174,36544279:1413401,568825,115847 -k1,19150:6630773,36544279:-1413401 -) -(1,19150:6630773,36544279:1413401,452978,115847 -k1,19150:6630773,36544279:3277 -h1,19150:8040897,36544279:0,411205,112570 -) -k1,19150:8194663,36544279:150489 -k1,19150:9031315,36544279:150490 -k1,19150:11767199,36544279:150489 -k1,19150:15265922,36544279:150489 -(1,19150:15265922,36544279:0,452978,122846 -r1,19161:19493018,36544279:4227096,575824,122846 -k1,19150:15265922,36544279:-4227096 -) -(1,19150:15265922,36544279:4227096,452978,122846 -k1,19150:15265922,36544279:3277 -h1,19150:19489741,36544279:0,411205,112570 -) -k1,19150:19817177,36544279:150489 -k1,19150:21853138,36544279:150490 -k1,19150:23426414,36544279:150489 -k1,19150:23932763,36544279:150489 -k1,19150:25747867,36544279:150490 -k1,19150:31160242,36544279:150489 -k1,19150:32583029,36544279:0 -) -(1,19153:6630773,37409359:25952256,513147,134348 -k1,19150:7188715,37409359:202082 -k1,19150:10153140,37409359:202082 -k1,19150:11289765,37409359:202082 -k1,19150:12151139,37409359:202082 -k1,19150:15701455,37409359:202082 -(1,19150:15701455,37409359:0,414482,115847 -r1,19161:16059721,37409359:358266,530329,115847 -k1,19150:15701455,37409359:-358266 -) -(1,19150:15701455,37409359:358266,414482,115847 -k1,19150:15701455,37409359:3277 -h1,19150:16056444,37409359:0,411205,112570 -) -k1,19150:16435473,37409359:202082 -(1,19150:16435473,37409359:0,414482,115847 -r1,19161:16793739,37409359:358266,530329,115847 -k1,19150:16435473,37409359:-358266 -) -(1,19150:16435473,37409359:358266,414482,115847 -k1,19150:16435473,37409359:3277 -h1,19150:16790462,37409359:0,411205,112570 -) -k1,19150:16995821,37409359:202082 -k1,19150:18145554,37409359:202082 -k1,19150:20395636,37409359:202082 -k1,19150:21789163,37409359:202082 -(1,19150:21789163,37409359:0,452978,122846 -r1,19161:23554276,37409359:1765113,575824,122846 -k1,19150:21789163,37409359:-1765113 -) -(1,19150:21789163,37409359:1765113,452978,122846 -k1,19150:21789163,37409359:3277 -h1,19150:23550999,37409359:0,411205,112570 -) -k1,19150:23756358,37409359:202082 -k1,19150:25149885,37409359:202082 -(1,19150:25149885,37409359:0,452978,115847 -r1,19161:27266710,37409359:2116825,568825,115847 -k1,19150:25149885,37409359:-2116825 -) -(1,19150:25149885,37409359:2116825,452978,115847 -k1,19150:25149885,37409359:3277 -h1,19150:27263433,37409359:0,411205,112570 -) -k1,19150:27468792,37409359:202082 -k1,19150:28618525,37409359:202082 -k1,19150:29839692,37409359:202082 -k1,19150:32583029,37409359:0 -) -(1,19153:6630773,38274439:25952256,505283,134348 -k1,19150:9758440,38274439:160852 -(1,19150:9758440,38274439:0,452978,122846 -r1,19161:13985536,38274439:4227096,575824,122846 -k1,19150:9758440,38274439:-4227096 -) -(1,19150:9758440,38274439:4227096,452978,122846 -k1,19150:9758440,38274439:3277 -h1,19150:13982259,38274439:0,411205,112570 -) -k1,19150:14146387,38274439:160851 -k1,19150:16223512,38274439:160852 -k1,19150:18546397,38274439:160852 -k1,19150:21902128,38274439:160851 -k1,19150:23456931,38274439:160852 -k1,19150:24636868,38274439:160852 -k1,19150:28028644,38274439:160851 -k1,19150:30477358,38274439:160852 -k1,19150:32583029,38274439:0 -) -(1,19153:6630773,39139519:25952256,505283,134348 -k1,19150:8023486,39139519:201268 -k1,19150:10252438,39139519:201268 -k1,19150:13714777,39139519:201268 -k1,19150:16474571,39139519:201268 -k1,19150:20460544,39139519:201269 -k1,19150:22536142,39139519:201268 -k1,19150:24392194,39139519:201268 -k1,19150:28033447,39139519:201268 -k1,19150:30761128,39139519:201268 -k1,19150:32583029,39139519:0 -) -(1,19153:6630773,40004599:25952256,513147,134348 -k1,19150:8682413,40004599:182553 -k1,19150:9477728,40004599:182553 -k1,19150:10679367,40004599:182554 -k1,19150:12375146,40004599:182553 -k1,19150:13216991,40004599:182553 -k1,19150:16420754,40004599:182553 -k1,19150:17286193,40004599:182554 -k1,19150:19714009,40004599:182553 -k1,19150:23157633,40004599:182553 -k1,19150:25898712,40004599:182553 -k1,19150:29361998,40004599:182554 -(1,19150:29361998,40004599:0,414482,115847 -r1,19161:31127111,40004599:1765113,530329,115847 -k1,19150:29361998,40004599:-1765113 -) -(1,19150:29361998,40004599:1765113,414482,115847 -k1,19150:29361998,40004599:3277 -h1,19150:31123834,40004599:0,411205,112570 -) -k1,19150:31309664,40004599:182553 -k1,19150:32583029,40004599:0 -) -(1,19153:6630773,40869679:25952256,505283,134348 -g1,19150:9388528,40869679 -g1,19150:10358460,40869679 -g1,19150:13782716,40869679 -g1,19151:13782716,40869679 -k1,19153:32583028,40869679:18800312 -g1,19153:32583028,40869679 -) -] -(1,19161:32583029,45706769:0,0,0 -g1,19161:32583029,45706769 -) -) -] -(1,19161:6630773,47279633:25952256,0,0 -h1,19161:6630773,47279633:25952256,0,0 -) -] -(1,19161:4262630,4025873:0,0,0 -[1,19161:-473656,4025873:0,0,0 -(1,19161:-473656,-710413:0,0,0 -(1,19161:-473656,-710413:0,0,0 -g1,19161:-473656,-710413 -) -g1,19161:-473656,-710413 +[1,19159:6630773,45706769:25952256,40108032,0 +(1,19116:6630773,6254097:25952256,513147,134348 +k1,19115:7424230,6254097:261960 +k1,19115:9888200,6254097:261960 +k1,19115:10801588,6254097:261960 +(1,19115:10801588,6254097:0,452978,122846 +r1,19159:14676972,6254097:3875384,575824,122846 +k1,19115:10801588,6254097:-3875384 +) +(1,19115:10801588,6254097:3875384,452978,122846 +k1,19115:10801588,6254097:3277 +h1,19115:14673695,6254097:0,411205,112570 +) +k1,19115:14938932,6254097:261960 +k1,19115:16273061,6254097:261960 +k1,19115:19360933,6254097:261960 +k1,19115:20641978,6254097:261960 +k1,19115:22210071,6254097:261960 +k1,19115:23663476,6254097:261960 +k1,19115:25073627,6254097:261960 +k1,19115:29407339,6254097:261960 +k1,19115:32227169,6254097:261960 +k1,19115:32583029,6254097:0 +) +(1,19116:6630773,7119177:25952256,505283,134348 +g1,19115:8861618,7119177 +g1,19115:11625926,7119177 +g1,19115:13109661,7119177 +g1,19115:15142587,7119177 +g1,19115:16360901,7119177 +(1,19115:16360901,7119177:0,459977,115847 +r1,19159:17774302,7119177:1413401,575824,115847 +k1,19115:16360901,7119177:-1413401 +) +(1,19115:16360901,7119177:1413401,459977,115847 +k1,19115:16360901,7119177:3277 +h1,19115:17771025,7119177:0,411205,112570 +) +g1,19115:17973531,7119177 +k1,19116:32583029,7119177:11712807 +g1,19116:32583029,7119177 +) +(1,19121:6630773,7984257:25952256,513147,134348 +h1,19120:6630773,7984257:983040,0,0 +k1,19120:10258059,7984257:368181 +k1,19120:12281024,7984257:368181 +k1,19120:16089191,7984257:368182 +k1,19120:17405023,7984257:368181 +k1,19120:20349424,7984257:368181 +k1,19120:22216413,7984257:368181 +k1,19120:24617522,7984257:368182 +k1,19120:26004788,7984257:368181 +k1,19120:28255818,7984257:368181 +k1,19120:31148446,7984257:368181 +k1,19121:32583029,7984257:0 +) +(1,19121:6630773,8849337:25952256,513147,122846 +(1,19120:6630773,8849337:0,452978,122846 +r1,19159:10857869,8849337:4227096,575824,122846 +k1,19120:6630773,8849337:-4227096 +) +(1,19120:6630773,8849337:4227096,452978,122846 +k1,19120:6630773,8849337:3277 +h1,19120:10854592,8849337:0,411205,112570 +) +k1,19120:11210614,8849337:179075 +(1,19120:11210614,8849337:0,452978,122846 +r1,19159:15437710,8849337:4227096,575824,122846 +k1,19120:11210614,8849337:-4227096 +) +(1,19120:11210614,8849337:4227096,452978,122846 +k1,19120:11210614,8849337:3277 +h1,19120:15434433,8849337:0,411205,112570 +) +k1,19120:15616785,8849337:179075 +k1,19120:16987305,8849337:179075 +(1,19120:16987305,8849337:0,452978,122846 +r1,19159:21566113,8849337:4578808,575824,122846 +k1,19120:16987305,8849337:-4578808 +) +(1,19120:16987305,8849337:4578808,452978,122846 +k1,19120:16987305,8849337:3277 +h1,19120:21562836,8849337:0,411205,112570 +) +k1,19120:21918858,8849337:179075 +k1,19120:23294619,8849337:179074 +k1,19120:24779827,8849337:179075 +k1,19120:26131341,8849337:179075 +k1,19120:27896387,8849337:179075 +k1,19120:31391584,8849337:179075 +k1,19120:32583029,8849337:0 +) +(1,19121:6630773,9714417:25952256,505283,134348 +k1,19120:9219743,9714417:261131 +k1,19120:11153353,9714417:261131 +k1,19120:15384655,9714417:261131 +k1,19120:17335304,9714417:261131 +k1,19120:18615520,9714417:261131 +k1,19120:20458691,9714417:261132 +k1,19120:21876532,9714417:261131 +k1,19120:24053936,9714417:261131 +k1,19120:26793639,9714417:261131 +k1,19120:28553578,9714417:261131 +k1,19120:31931601,9714417:261131 +k1,19120:32583029,9714417:0 +) +(1,19121:6630773,10579497:25952256,505283,134348 +k1,19120:7827676,10579497:177818 +k1,19120:11069959,10579497:177819 +(1,19120:11069959,10579497:0,452978,115847 +r1,19159:12835072,10579497:1765113,568825,115847 +k1,19120:11069959,10579497:-1765113 +) +(1,19120:11069959,10579497:1765113,452978,115847 +k1,19120:11069959,10579497:3277 +h1,19120:12831795,10579497:0,411205,112570 +) +k1,19120:13012890,10579497:177818 +k1,19120:14382153,10579497:177818 +(1,19120:14382153,10579497:0,452978,115847 +r1,19159:17554113,10579497:3171960,568825,115847 +k1,19120:14382153,10579497:-3171960 +) +(1,19120:14382153,10579497:3171960,452978,115847 +k1,19120:14382153,10579497:3277 +h1,19120:17550836,10579497:0,411205,112570 +) +k1,19120:17731932,10579497:177819 +k1,19120:21796690,10579497:177818 +k1,19120:22993594,10579497:177819 +k1,19120:25959314,10579497:177818 +k1,19120:27333819,10579497:177818 +k1,19120:29010446,10579497:177819 +k1,19120:31189078,10579497:177818 +k1,19120:32583029,10579497:0 +) +(1,19121:6630773,11444577:25952256,513147,134348 +g1,19120:8526729,11444577 +g1,19120:10380742,11444577 +g1,19120:12646321,11444577 +g1,19120:14997752,11444577 +g1,19120:15848409,11444577 +g1,19120:17066723,11444577 +g1,19120:18755585,11444577 +g1,19120:19614106,11444577 +g1,19120:20832420,11444577 +g1,19120:23556096,11444577 +k1,19121:32583029,11444577:7627084 +g1,19121:32583029,11444577 +) +(1,19123:6630773,12309657:25952256,505283,134348 +h1,19122:6630773,12309657:983040,0,0 +(1,19122:7613813,12309657:0,452978,122846 +r1,19159:11840909,12309657:4227096,575824,122846 +k1,19122:7613813,12309657:-4227096 +) +(1,19122:7613813,12309657:4227096,452978,122846 +k1,19122:7613813,12309657:3277 +h1,19122:11837632,12309657:0,411205,112570 +) +k1,19122:12277619,12309657:436710 +k1,19122:13905773,12309657:436709 +(1,19122:13905773,12309657:0,452978,122846 +r1,19159:18132869,12309657:4227096,575824,122846 +k1,19122:13905773,12309657:-4227096 +) +(1,19122:13905773,12309657:4227096,452978,122846 +k1,19122:13905773,12309657:3277 +h1,19122:18129592,12309657:0,411205,112570 +) +k1,19122:18569579,12309657:436710 +k1,19122:21298082,12309657:436709 +k1,19122:22090652,12309657:436710 +k1,19122:24400380,12309657:436709 +k1,19122:28117822,12309657:436710 +k1,19122:29444510,12309657:436709 +k1,19123:32583029,12309657:0 +) +(1,19123:6630773,13174737:25952256,513147,134348 +(1,19122:6630773,13174737:0,452978,115847 +r1,19159:10154445,13174737:3523672,568825,115847 +k1,19122:6630773,13174737:-3523672 +) +(1,19122:6630773,13174737:3523672,452978,115847 +k1,19122:6630773,13174737:3277 +h1,19122:10151168,13174737:0,411205,112570 +) +k1,19122:10341786,13174737:187341 +k1,19122:11720573,13174737:187342 +(1,19122:11720573,13174737:0,452978,115847 +r1,19159:15244245,13174737:3523672,568825,115847 +k1,19122:11720573,13174737:-3523672 +) +(1,19122:11720573,13174737:3523672,452978,115847 +k1,19122:11720573,13174737:3277 +h1,19122:15240968,13174737:0,411205,112570 +) +k1,19122:15605256,13174737:187341 +k1,19122:19762769,13174737:187342 +k1,19122:22795028,13174737:187341 +k1,19122:24549991,13174737:187342 +k1,19122:26439302,13174737:187341 +k1,19122:28866665,13174737:187342 +k1,19122:30073091,13174737:187341 +k1,19122:31649796,13174737:187342 +k1,19122:32583029,13174737:0 +) +(1,19123:6630773,14039817:25952256,505283,134348 +k1,19122:8502421,14039817:174921 +k1,19122:11851907,14039817:174922 +k1,19122:13131110,14039817:174921 +k1,19122:14053798,14039817:174922 +k1,19122:16434006,14039817:174921 +k1,19122:17295090,14039817:174922 +k1,19122:20227766,14039817:174921 +k1,19122:23022817,14039817:174922 +k1,19122:25175615,14039817:174921 +k1,19122:28712534,14039817:174922 +k1,19122:31558702,14039817:174921 +k1,19123:32583029,14039817:0 +) +(1,19123:6630773,14904897:25952256,513147,134348 +k1,19122:8094660,14904897:197731 +k1,19122:9489079,14904897:197732 +k1,19122:11818041,14904897:197731 +k1,19122:12963423,14904897:197731 +k1,19122:14364395,14904897:197731 +k1,19122:15093624,14904897:197732 +k1,19122:16575861,14904897:197731 +k1,19122:18470319,14904897:197731 +k1,19122:20734401,14904897:197732 +k1,19122:21923692,14904897:197731 +k1,19122:23723123,14904897:197731 +k1,19122:27225835,14904897:197731 +k1,19122:28936793,14904897:197732 +k1,19122:29785952,14904897:197731 +k1,19122:32583029,14904897:0 +) +(1,19123:6630773,15769977:25952256,505283,134348 +k1,19122:8399699,15769977:161328 +k1,19122:10512688,15769977:161327 +k1,19122:12116463,15769977:161328 +k1,19122:14802238,15769977:161328 +k1,19122:19208988,15769977:161328 +k1,19122:21816774,15769977:161327 +k1,19122:23476910,15769977:161328 +k1,19122:24742520,15769977:161328 +k1,19122:25651614,15769977:161328 +k1,19122:27326167,15769977:161327 +k1,19122:28138923,15769977:161328 +k1,19122:31157621,15769977:161328 +k1,19122:32583029,15769977:0 +) +(1,19123:6630773,16635057:25952256,513147,134348 +g1,19122:9022181,16635057 +g1,19122:10619293,16635057 +g1,19122:11837607,16635057 +g1,19122:13444549,16635057 +g1,19122:14303070,16635057 +g1,19122:15074428,16635057 +g1,19122:15845786,16635057 +g1,19122:17236460,16635057 +g1,19122:17834148,16635057 +k1,19123:32583029,16635057:13013488 +g1,19123:32583029,16635057 +) +v1,19125:6630773,17319912:0,393216,0 +(1,19131:6630773,19013789:25952256,2087093,196608 +g1,19131:6630773,19013789 +g1,19131:6630773,19013789 +g1,19131:6434165,19013789 +(1,19131:6434165,19013789:0,2087093,196608 +r1,19159:32779637,19013789:26345472,2283701,196608 +k1,19131:6434165,19013789:-26345472 +) +(1,19131:6434165,19013789:26345472,2087093,196608 +[1,19131:6630773,19013789:25952256,1890485,0 +(1,19127:6630773,17531227:25952256,407923,106246 +(1,19126:6630773,17531227:0,0,0 +g1,19126:6630773,17531227 +g1,19126:6630773,17531227 +g1,19126:6303093,17531227 +(1,19126:6303093,17531227:0,0,0 +) +g1,19126:6630773,17531227 +) +g1,19127:7626635,17531227 +h1,19127:7958589,17531227:0,0,0 +k1,19127:32583029,17531227:24624440 +g1,19127:32583029,17531227 +) +(1,19128:6630773,18216082:25952256,424439,112852 +h1,19128:6630773,18216082:0,0,0 +g1,19128:6962727,18216082 +g1,19128:7294681,18216082 +g1,19128:14597667,18216082 +g1,19128:15261575,18216082 +g1,19128:16589391,18216082 +g1,19128:17253299,18216082 +g1,19128:18913069,18216082 +g1,19128:21236747,18216082 +g1,19128:21900655,18216082 +g1,19128:25220194,18216082 +h1,19128:25552148,18216082:0,0,0 +k1,19128:32583029,18216082:7030881 +g1,19128:32583029,18216082 +) +(1,19129:6630773,18900937:25952256,424439,112852 +h1,19129:6630773,18900937:0,0,0 +g1,19129:6962727,18900937 +g1,19129:7294681,18900937 +g1,19129:14597667,18900937 +g1,19129:15261575,18900937 +g1,19129:16589391,18900937 +g1,19129:17253299,18900937 +g1,19129:18913069,18900937 +g1,19129:21900654,18900937 +g1,19129:22564562,18900937 +h1,19129:25552147,18900937:0,0,0 +k1,19129:32583029,18900937:7030882 +g1,19129:32583029,18900937 +) +] +) +g1,19131:32583029,19013789 +g1,19131:6630773,19013789 +g1,19131:6630773,19013789 +g1,19131:32583029,19013789 +g1,19131:32583029,19013789 +) +h1,19131:6630773,19210397:0,0,0 +(1,19134:6630773,28359599:25952256,9083666,0 +k1,19134:10523651,28359599:3892878 +h1,19133:10523651,28359599:0,0,0 +(1,19133:10523651,28359599:18166500,9083666,0 +(1,19133:10523651,28359599:18167376,9083688,0 +(1,19133:10523651,28359599:18167376,9083688,0 +(1,19133:10523651,28359599:0,9083688,0 +(1,19133:10523651,28359599:0,14208860,0 +(1,19133:10523651,28359599:28417720,14208860,0 +) +k1,19133:10523651,28359599:-28417720 +) +) +g1,19133:28691027,28359599 +) +) +) +g1,19134:28690151,28359599 +k1,19134:32583029,28359599:3892878 +) +v1,19141:6630773,29224679:0,393216,0 +(1,19142:6630773,31353799:25952256,2522336,0 +g1,19142:6630773,31353799 +g1,19142:6237557,31353799 +r1,19159:6368629,31353799:131072,2522336,0 +g1,19142:6567858,31353799 +g1,19142:6764466,31353799 +[1,19142:6764466,31353799:25818563,2522336,0 +(1,19142:6764466,29497156:25818563,665693,196608 +(1,19141:6764466,29497156:0,665693,196608 +r1,19159:7868133,29497156:1103667,862301,196608 +k1,19141:6764466,29497156:-1103667 +) +(1,19141:6764466,29497156:1103667,665693,196608 +) +k1,19141:8134487,29497156:266354 +k1,19141:9452416,29497156:327680 +k1,19141:12081343,29497156:266354 +k1,19141:13366782,29497156:266354 +k1,19141:15372462,29497156:266354 +k1,19141:16298108,29497156:266354 +k1,19141:17583547,29497156:266354 +k1,19141:19022340,29497156:266354 +k1,19141:21176786,29497156:266354 +k1,19141:22059178,29497156:266354 +k1,19141:23344617,29497156:266354 +k1,19141:26272388,29497156:266354 +k1,19141:28567737,29497156:266354 +k1,19141:30254912,29497156:266354 +k1,19141:31563944,29497156:266354 +k1,19141:32583029,29497156:0 +) +(1,19142:6764466,30362236:25818563,513147,134348 +k1,19141:8807485,30362236:187695 +k1,19141:11562881,30362236:187695 +k1,19141:13384389,30362236:187695 +k1,19141:15311410,30362236:187695 +k1,19141:16030602,30362236:187695 +k1,19141:17880290,30362236:187695 +k1,19141:20109431,30362236:187695 +k1,19141:21316211,30362236:187695 +k1,19141:23157379,30362236:187695 +k1,19141:25084400,30362236:187695 +k1,19141:26019861,30362236:187695 +k1,19141:27226641,30362236:187695 +k1,19141:28749304,30362236:187695 +k1,19141:29884650,30362236:187695 +k1,19141:30428205,30362236:187695 +k1,19141:32583029,30362236:0 +) +(1,19142:6764466,31227316:25818563,505283,126483 +g1,19141:8568016,31227316 +g1,19141:10090417,31227316 +g1,19141:12245896,31227316 +g1,19141:12903222,31227316 +g1,19141:13850217,31227316 +g1,19141:17158474,31227316 +g1,19141:18009131,31227316 +g1,19141:19405703,31227316 +g1,19141:20777371,31227316 +(1,19141:20777371,31227316:0,452978,122846 +r1,19159:25004467,31227316:4227096,575824,122846 +k1,19141:20777371,31227316:-4227096 +) +(1,19141:20777371,31227316:4227096,452978,122846 +k1,19141:20777371,31227316:3277 +h1,19141:25001190,31227316:0,411205,112570 +) +g1,19141:25203696,31227316 +k1,19142:32583029,31227316:5196984 +g1,19142:32583029,31227316 +) +] +g1,19142:32583029,31353799 +) +h1,19142:6630773,31353799:0,0,0 +(1,19146:6630773,32218879:25952256,505283,134348 +h1,19144:6630773,32218879:983040,0,0 +k1,19144:10703935,32218879:296978 +k1,19144:11652341,32218879:296978 +(1,19144:11652341,32218879:0,452978,122846 +r1,19159:15879437,32218879:4227096,575824,122846 +k1,19144:11652341,32218879:-4227096 +) +(1,19144:11652341,32218879:4227096,452978,122846 +k1,19144:11652341,32218879:3277 +h1,19144:15876160,32218879:0,411205,112570 +) +k1,19144:16176415,32218879:296978 +k1,19144:17664838,32218879:296978 +(1,19144:17664838,32218879:0,452978,122846 +r1,19159:21891934,32218879:4227096,575824,122846 +k1,19144:17664838,32218879:-4227096 +) +(1,19144:17664838,32218879:4227096,452978,122846 +k1,19144:17664838,32218879:3277 +h1,19144:21888657,32218879:0,411205,112570 +) +k1,19144:22362582,32218879:296978 +(1,19144:22362582,32218879:0,452978,122846 +r1,19159:26941390,32218879:4578808,575824,122846 +k1,19144:22362582,32218879:-4578808 +) +(1,19144:22362582,32218879:4578808,452978,122846 +k1,19144:22362582,32218879:3277 +h1,19144:26938113,32218879:0,411205,112570 +) +k1,19144:27238368,32218879:296978 +k1,19144:29451619,32218879:296978 +k1,19144:30104457,32218879:296978 +k1,19144:32583029,32218879:0 +) +(1,19146:6630773,33083959:25952256,513147,134348 +k1,19144:8236785,33083959:263835 +k1,19144:11538870,33083959:263836 +k1,19144:12488867,33083959:263835 +k1,19144:16363737,33083959:263836 +k1,19144:17517551,33083959:263835 +k1,19144:18467549,33083959:263836 +k1,19144:22113042,33083959:263835 +k1,19144:24387522,33083959:263835 +k1,19144:25599009,33083959:263836 +k1,19144:26881929,33083959:263835 +(1,19144:26881929,33083959:0,452978,115847 +r1,19159:30053889,33083959:3171960,568825,115847 +k1,19144:26881929,33083959:-3171960 +) +(1,19144:26881929,33083959:3171960,452978,115847 +k1,19144:26881929,33083959:3277 +h1,19144:30050612,33083959:0,411205,112570 +) +k1,19144:30491395,33083959:263836 +$1,19144:30491395,33083959 +$1,19144:30954079,33083959 +k1,19144:31391584,33083959:263835 +k1,19144:32583029,33083959:0 +) +(1,19146:6630773,33949039:25952256,505283,115847 +g1,19144:7849087,33949039 +(1,19144:7849087,33949039:0,452978,115847 +r1,19159:9614200,33949039:1765113,568825,115847 +k1,19144:7849087,33949039:-1765113 +) +(1,19144:7849087,33949039:1765113,452978,115847 +k1,19144:7849087,33949039:3277 +h1,19144:9610923,33949039:0,411205,112570 +) +g1,19144:9987099,33949039 +$1,19144:9987099,33949039 +$1,19144:10427501,33949039 +g1,19144:10800400,33949039 +k1,19146:32583028,33949039:21782628 +g1,19146:32583028,33949039 +) +(1,19151:6630773,34814119:25952256,513147,134348 +h1,19148:6630773,34814119:983040,0,0 +k1,19148:12165652,34814119:253333 +k1,19148:16279056,34814119:253333 +k1,19148:19553599,34814119:253333 +k1,19148:20998377,34814119:253333 +k1,19148:23603797,34814119:253333 +k1,19148:25013840,34814119:253333 +k1,19148:26214824,34814119:253333 +k1,19148:27919779,34814119:253333 +k1,19148:31914562,34814119:253333 +k1,19148:32583029,34814119:0 +) +(1,19151:6630773,35679199:25952256,505283,126483 +k1,19148:8058877,35679199:224208 +k1,19148:8899123,35679199:224208 +k1,19148:10142416,35679199:224208 +k1,19148:11929658,35679199:224208 +k1,19148:13258148,35679199:224208 +k1,19148:14230122,35679199:224208 +k1,19148:16756611,35679199:224209 +k1,19148:18374770,35679199:224208 +(1,19148:18374770,35679199:0,452978,122846 +r1,19159:23305290,35679199:4930520,575824,122846 +k1,19148:18374770,35679199:-4930520 +) +(1,19148:18374770,35679199:4930520,452978,122846 +k1,19148:18374770,35679199:3277 +h1,19148:23302013,35679199:0,411205,112570 +) +k1,19148:23529498,35679199:224208 +k1,19148:25639177,35679199:224208 +k1,19148:28241687,35679199:224208 +(1,19148:28241687,35679199:0,414482,115847 +r1,19159:28599953,35679199:358266,530329,115847 +k1,19148:28241687,35679199:-358266 +) +(1,19148:28241687,35679199:358266,414482,115847 +k1,19148:28241687,35679199:3277 +h1,19148:28596676,35679199:0,411205,112570 +) +k1,19148:28997831,35679199:224208 +(1,19148:28997831,35679199:0,452978,115847 +r1,19159:30411232,35679199:1413401,568825,115847 +k1,19148:28997831,35679199:-1413401 +) +(1,19148:28997831,35679199:1413401,452978,115847 +k1,19148:28997831,35679199:3277 +h1,19148:30407955,35679199:0,411205,112570 +) +k1,19148:30809110,35679199:224208 +(1,19148:30809110,35679199:0,414482,115847 +r1,19159:31167376,35679199:358266,530329,115847 +k1,19148:30809110,35679199:-358266 +) +(1,19148:30809110,35679199:358266,414482,115847 +k1,19148:30809110,35679199:3277 +h1,19148:31164099,35679199:0,411205,112570 +) +k1,19148:31391584,35679199:224208 +k1,19151:32583029,35679199:0 +) +(1,19151:6630773,36544279:25952256,505283,126483 +(1,19148:6630773,36544279:0,452978,115847 +r1,19159:8044174,36544279:1413401,568825,115847 +k1,19148:6630773,36544279:-1413401 +) +(1,19148:6630773,36544279:1413401,452978,115847 +k1,19148:6630773,36544279:3277 +h1,19148:8040897,36544279:0,411205,112570 +) +k1,19148:8194663,36544279:150489 +k1,19148:9031315,36544279:150490 +k1,19148:11767199,36544279:150489 +k1,19148:15265922,36544279:150489 +(1,19148:15265922,36544279:0,452978,122846 +r1,19159:19493018,36544279:4227096,575824,122846 +k1,19148:15265922,36544279:-4227096 +) +(1,19148:15265922,36544279:4227096,452978,122846 +k1,19148:15265922,36544279:3277 +h1,19148:19489741,36544279:0,411205,112570 +) +k1,19148:19817177,36544279:150489 +k1,19148:21853138,36544279:150490 +k1,19148:23426414,36544279:150489 +k1,19148:23932763,36544279:150489 +k1,19148:25747867,36544279:150490 +k1,19148:31160242,36544279:150489 +k1,19148:32583029,36544279:0 +) +(1,19151:6630773,37409359:25952256,513147,134348 +k1,19148:7188715,37409359:202082 +k1,19148:10153140,37409359:202082 +k1,19148:11289765,37409359:202082 +k1,19148:12151139,37409359:202082 +k1,19148:15701455,37409359:202082 +(1,19148:15701455,37409359:0,414482,115847 +r1,19159:16059721,37409359:358266,530329,115847 +k1,19148:15701455,37409359:-358266 +) +(1,19148:15701455,37409359:358266,414482,115847 +k1,19148:15701455,37409359:3277 +h1,19148:16056444,37409359:0,411205,112570 +) +k1,19148:16435473,37409359:202082 +(1,19148:16435473,37409359:0,414482,115847 +r1,19159:16793739,37409359:358266,530329,115847 +k1,19148:16435473,37409359:-358266 +) +(1,19148:16435473,37409359:358266,414482,115847 +k1,19148:16435473,37409359:3277 +h1,19148:16790462,37409359:0,411205,112570 +) +k1,19148:16995821,37409359:202082 +k1,19148:18145554,37409359:202082 +k1,19148:20395636,37409359:202082 +k1,19148:21789163,37409359:202082 +(1,19148:21789163,37409359:0,452978,122846 +r1,19159:23554276,37409359:1765113,575824,122846 +k1,19148:21789163,37409359:-1765113 +) +(1,19148:21789163,37409359:1765113,452978,122846 +k1,19148:21789163,37409359:3277 +h1,19148:23550999,37409359:0,411205,112570 +) +k1,19148:23756358,37409359:202082 +k1,19148:25149885,37409359:202082 +(1,19148:25149885,37409359:0,452978,115847 +r1,19159:27266710,37409359:2116825,568825,115847 +k1,19148:25149885,37409359:-2116825 +) +(1,19148:25149885,37409359:2116825,452978,115847 +k1,19148:25149885,37409359:3277 +h1,19148:27263433,37409359:0,411205,112570 +) +k1,19148:27468792,37409359:202082 +k1,19148:28618525,37409359:202082 +k1,19148:29839692,37409359:202082 +k1,19148:32583029,37409359:0 +) +(1,19151:6630773,38274439:25952256,505283,134348 +k1,19148:9758440,38274439:160852 +(1,19148:9758440,38274439:0,452978,122846 +r1,19159:13985536,38274439:4227096,575824,122846 +k1,19148:9758440,38274439:-4227096 +) +(1,19148:9758440,38274439:4227096,452978,122846 +k1,19148:9758440,38274439:3277 +h1,19148:13982259,38274439:0,411205,112570 +) +k1,19148:14146387,38274439:160851 +k1,19148:16223512,38274439:160852 +k1,19148:18546397,38274439:160852 +k1,19148:21902128,38274439:160851 +k1,19148:23456931,38274439:160852 +k1,19148:24636868,38274439:160852 +k1,19148:28028644,38274439:160851 +k1,19148:30477358,38274439:160852 +k1,19148:32583029,38274439:0 +) +(1,19151:6630773,39139519:25952256,505283,134348 +k1,19148:8023486,39139519:201268 +k1,19148:10252438,39139519:201268 +k1,19148:13714777,39139519:201268 +k1,19148:16474571,39139519:201268 +k1,19148:20460544,39139519:201269 +k1,19148:22536142,39139519:201268 +k1,19148:24392194,39139519:201268 +k1,19148:28033447,39139519:201268 +k1,19148:30761128,39139519:201268 +k1,19148:32583029,39139519:0 +) +(1,19151:6630773,40004599:25952256,513147,134348 +k1,19148:8682413,40004599:182553 +k1,19148:9477728,40004599:182553 +k1,19148:10679367,40004599:182554 +k1,19148:12375146,40004599:182553 +k1,19148:13216991,40004599:182553 +k1,19148:16420754,40004599:182553 +k1,19148:17286193,40004599:182554 +k1,19148:19714009,40004599:182553 +k1,19148:23157633,40004599:182553 +k1,19148:25898712,40004599:182553 +k1,19148:29361998,40004599:182554 +(1,19148:29361998,40004599:0,414482,115847 +r1,19159:31127111,40004599:1765113,530329,115847 +k1,19148:29361998,40004599:-1765113 +) +(1,19148:29361998,40004599:1765113,414482,115847 +k1,19148:29361998,40004599:3277 +h1,19148:31123834,40004599:0,411205,112570 +) +k1,19148:31309664,40004599:182553 +k1,19148:32583029,40004599:0 +) +(1,19151:6630773,40869679:25952256,505283,134348 +g1,19148:9388528,40869679 +g1,19148:10358460,40869679 +g1,19148:13782716,40869679 +g1,19149:13782716,40869679 +k1,19151:32583028,40869679:18800312 +g1,19151:32583028,40869679 +) +] +(1,19159:32583029,45706769:0,0,0 +g1,19159:32583029,45706769 +) +) +] +(1,19159:6630773,47279633:25952256,0,0 +h1,19159:6630773,47279633:25952256,0,0 +) +] +(1,19159:4262630,4025873:0,0,0 +[1,19159:-473656,4025873:0,0,0 +(1,19159:-473656,-710413:0,0,0 +(1,19159:-473656,-710413:0,0,0 +g1,19159:-473656,-710413 +) +g1,19159:-473656,-710413 ) ] ) ] !25396 -}317 -Input:3323:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3324:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3325:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3326:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}318 Input:3327:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3328:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3329:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -334077,926 +334281,926 @@ Input:3338:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3339:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3340:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3341:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{318 -[1,19223:4262630,47279633:28320399,43253760,0 -(1,19223:4262630,4025873:0,0,0 -[1,19223:-473656,4025873:0,0,0 -(1,19223:-473656,-710413:0,0,0 -(1,19223:-473656,-644877:0,0,0 -k1,19223:-473656,-644877:-65536 +{319 +[1,19221:4262630,47279633:28320399,43253760,0 +(1,19221:4262630,4025873:0,0,0 +[1,19221:-473656,4025873:0,0,0 +(1,19221:-473656,-710413:0,0,0 +(1,19221:-473656,-644877:0,0,0 +k1,19221:-473656,-644877:-65536 ) -(1,19223:-473656,4736287:0,0,0 -k1,19223:-473656,4736287:5209943 +(1,19221:-473656,4736287:0,0,0 +k1,19221:-473656,4736287:5209943 ) -g1,19223:-473656,-710413 +g1,19221:-473656,-710413 ) ] ) -[1,19223:6630773,47279633:25952256,43253760,0 -[1,19223:6630773,4812305:25952256,786432,0 -(1,19223:6630773,4812305:25952256,485622,11795 -(1,19223:6630773,4812305:25952256,485622,11795 -g1,19223:3078558,4812305 -[1,19223:3078558,4812305:0,0,0 -(1,19223:3078558,2439708:0,1703936,0 -k1,19223:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19223:2537886,2439708:1179648,16384,0 +[1,19221:6630773,47279633:25952256,43253760,0 +[1,19221:6630773,4812305:25952256,786432,0 +(1,19221:6630773,4812305:25952256,485622,11795 +(1,19221:6630773,4812305:25952256,485622,11795 +g1,19221:3078558,4812305 +[1,19221:3078558,4812305:0,0,0 +(1,19221:3078558,2439708:0,1703936,0 +k1,19221:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19221:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19223:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19221:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19223:3078558,4812305:0,0,0 -(1,19223:3078558,2439708:0,1703936,0 -g1,19223:29030814,2439708 -g1,19223:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19223:36151628,1915420:16384,1179648,0 +[1,19221:3078558,4812305:0,0,0 +(1,19221:3078558,2439708:0,1703936,0 +g1,19221:29030814,2439708 +g1,19221:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19221:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19223:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19221:37855564,2439708:1179648,16384,0 ) ) -k1,19223:3078556,2439708:-34777008 +k1,19221:3078556,2439708:-34777008 ) ] -[1,19223:3078558,4812305:0,0,0 -(1,19223:3078558,49800853:0,16384,2228224 -k1,19223:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19223:2537886,49800853:1179648,16384,0 +[1,19221:3078558,4812305:0,0,0 +(1,19221:3078558,49800853:0,16384,2228224 +k1,19221:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19221:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19223:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19221:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19223:3078558,4812305:0,0,0 -(1,19223:3078558,49800853:0,16384,2228224 -g1,19223:29030814,49800853 -g1,19223:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19223:36151628,51504789:16384,1179648,0 +[1,19221:3078558,4812305:0,0,0 +(1,19221:3078558,49800853:0,16384,2228224 +g1,19221:29030814,49800853 +g1,19221:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19221:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19223:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19221:37855564,49800853:1179648,16384,0 ) ) -k1,19223:3078556,49800853:-34777008 +k1,19221:3078556,49800853:-34777008 ) ] -g1,19223:6630773,4812305 -g1,19223:6630773,4812305 -g1,19223:10347975,4812305 -k1,19223:31387651,4812305:21039676 -) -) -] -[1,19223:6630773,45706769:25952256,40108032,0 -(1,19223:6630773,45706769:25952256,40108032,0 -(1,19223:6630773,45706769:0,0,0 -g1,19223:6630773,45706769 -) -[1,19223:6630773,45706769:25952256,40108032,0 -(1,19154:6630773,6254097:25952256,555811,12975 -(1,19154:6630773,6254097:2450326,534184,12975 -g1,19154:6630773,6254097 -g1,19154:9081099,6254097 -) -k1,19154:32583029,6254097:20670250 -g1,19154:32583029,6254097 -) -(1,19159:6630773,7512393:25952256,505283,134348 -k1,19158:8017530,7512393:211697 -k1,19158:11236673,7512393:211696 -(1,19158:11236673,7512393:0,452978,122846 -r1,19223:14760345,7512393:3523672,575824,122846 -k1,19158:11236673,7512393:-3523672 -) -(1,19158:11236673,7512393:3523672,452978,122846 -k1,19158:11236673,7512393:3277 -h1,19158:14757068,7512393:0,411205,112570 -) -k1,19158:14972042,7512393:211697 -k1,19158:16288020,7512393:211696 -k1,19158:17247483,7512393:211697 -k1,19158:18972406,7512393:211697 -k1,19158:19835530,7512393:211696 -k1,19158:21976607,7512393:211697 -k1,19158:24508934,7512393:211697 -k1,19158:26370171,7512393:211696 -k1,19158:28500762,7512393:211697 -k1,19158:30164080,7512393:211696 -k1,19158:31420421,7512393:211697 -k1,19159:32583029,7512393:0 -) -(1,19159:6630773,8377473:25952256,513147,126483 -k1,19158:9181507,8377473:235347 -k1,19158:10187556,8377473:235346 -k1,19158:14164353,8377473:235347 -k1,19158:15082584,8377473:235346 -k1,19158:16521827,8377473:235347 -k1,19158:17373211,8377473:235346 -k1,19158:18627643,8377473:235347 -(1,19158:18627643,8377473:0,452978,115847 -r1,19223:20041044,8377473:1413401,568825,115847 -k1,19158:18627643,8377473:-1413401 -) -(1,19158:18627643,8377473:1413401,452978,115847 -k1,19158:18627643,8377473:3277 -h1,19158:20037767,8377473:0,411205,112570 -) -k1,19158:20276390,8377473:235346 -k1,19158:24023811,8377473:235347 -k1,19158:26327473,8377473:235346 -k1,19158:27245705,8377473:235347 -k1,19158:29280670,8377473:235346 -k1,19158:32583029,8377473:0 -) -(1,19159:6630773,9242553:25952256,513147,126483 -g1,19158:10038645,9242553 -g1,19158:11805495,9242553 -g1,19158:13023809,9242553 -g1,19158:15758626,9242553 -k1,19159:32583029,9242553:12493129 -g1,19159:32583029,9242553 -) -v1,19161:6630773,10107633:0,393216,0 -(1,19162:6630773,14044977:25952256,4330560,0 -g1,19162:6630773,14044977 -g1,19162:6237557,14044977 -r1,19223:6368629,14044977:131072,4330560,0 -g1,19162:6567858,14044977 -g1,19162:6764466,14044977 -[1,19162:6764466,14044977:25818563,4330560,0 -(1,19162:6764466,10468810:25818563,754393,260573 -(1,19161:6764466,10468810:0,754393,260573 -r1,19223:7856192,10468810:1091726,1014966,260573 -k1,19161:6764466,10468810:-1091726 -) -(1,19161:6764466,10468810:1091726,754393,260573 -) -k1,19161:8102115,10468810:245923 -k1,19161:8429795,10468810:327680 -k1,19161:9303552,10468810:245922 -k1,19161:11251445,10468810:245923 -k1,19161:14196796,10468810:245923 -k1,19161:16825607,10468810:245922 -k1,19161:18679128,10468810:245923 -k1,19161:19916611,10468810:245923 -k1,19161:23467514,10468810:245922 -k1,19161:25581213,10468810:245923 -k1,19161:26871780,10468810:245923 -k1,19161:28898972,10468810:245923 -k1,19161:29559690,10468810:245875 -k1,19161:31516758,10468810:245923 -k1,19161:32583029,10468810:0 -) -(1,19162:6764466,11333890:25818563,513147,134348 -k1,19161:9522221,11333890:265421 -k1,19161:10752987,11333890:265421 -k1,19161:12412358,11333890:265420 -k1,19161:15506312,11333890:265421 -k1,19161:16763293,11333890:265421 -k1,19161:20333695,11333890:265421 -k1,19161:23641297,11333890:265421 -k1,19161:24668246,11333890:265421 -k1,19161:25952751,11333890:265420 -k1,19161:28483752,11333890:265421 -k1,19161:31923737,11333890:265421 -k1,19162:32583029,11333890:0 -) -(1,19162:6764466,12198970:25818563,505283,134348 -(1,19161:6764466,12198970:0,452978,122846 -r1,19223:10288138,12198970:3523672,575824,122846 -k1,19161:6764466,12198970:-3523672 -) -(1,19161:6764466,12198970:3523672,452978,122846 -k1,19161:6764466,12198970:3277 -h1,19161:10284861,12198970:0,411205,112570 -) -k1,19161:10519496,12198970:231358 -k1,19161:11437016,12198970:231358 -k1,19161:12126471,12198970:231358 -k1,19161:13780616,12198970:231358 -(1,19161:13780616,12198970:0,452978,115847 -r1,19223:18007712,12198970:4227096,568825,115847 -k1,19161:13780616,12198970:-4227096 -) -(1,19161:13780616,12198970:4227096,452978,115847 -k1,19161:13780616,12198970:3277 -h1,19161:18004435,12198970:0,411205,112570 -) -k1,19161:18239070,12198970:231358 -k1,19161:19121856,12198970:231358 -k1,19161:21973343,12198970:231358 -k1,19161:22560561,12198970:231358 -k1,19161:26201757,12198970:231358 -k1,19161:28384777,12198970:231358 -k1,19161:30058582,12198970:231358 -k1,19161:32583029,12198970:0 -) -(1,19162:6764466,13064050:25818563,505283,134348 -k1,19161:8965397,13064050:207981 -k1,19161:9859540,13064050:207981 -k1,19161:10599019,13064050:207982 -k1,19161:12039077,13064050:207981 -k1,19161:14525745,13064050:207981 -h1,19161:16068463,13064050:0,0,0 -k1,19161:16276444,13064050:207981 -k1,19161:17293796,13064050:207982 -k1,19161:18999930,13064050:207981 -h1,19161:20195307,13064050:0,0,0 -k1,19161:20784052,13064050:207981 -(1,19161:20784052,13064050:0,452978,122846 -r1,19223:24307724,13064050:3523672,575824,122846 -k1,19161:20784052,13064050:-3523672 -) -(1,19161:20784052,13064050:3523672,452978,122846 -k1,19161:20784052,13064050:3277 -h1,19161:24304447,13064050:0,411205,112570 -) -k1,19161:24515705,13064050:207981 -k1,19161:25255184,13064050:207982 -k1,19161:28199948,13064050:207981 -k1,19161:29059357,13064050:207981 -(1,19161:29059357,13064050:0,452978,122846 -r1,19223:32583029,13064050:3523672,575824,122846 -k1,19161:29059357,13064050:-3523672 -) -(1,19161:29059357,13064050:3523672,452978,122846 -k1,19161:29059357,13064050:3277 -h1,19161:32579752,13064050:0,411205,112570 -) -k1,19161:32583029,13064050:0 -) -(1,19162:6764466,13929130:25818563,513147,115847 -g1,19161:8035864,13929130 -g1,19161:9629044,13929130 -(1,19161:9629044,13929130:0,452978,115847 -r1,19223:13152716,13929130:3523672,568825,115847 -k1,19161:9629044,13929130:-3523672 -) -(1,19161:9629044,13929130:3523672,452978,115847 -k1,19161:9629044,13929130:3277 -h1,19161:13149439,13929130:0,411205,112570 -) -g1,19161:13351945,13929130 -g1,19161:14237336,13929130 -g1,19161:15455650,13929130 -g1,19161:17920459,13929130 -k1,19162:32583029,13929130:12087005 -g1,19162:32583029,13929130 -) -] -g1,19162:32583029,14044977 -) -h1,19162:6630773,14044977:0,0,0 -(1,19165:6630773,14910057:25952256,513147,134348 -h1,19164:6630773,14910057:983040,0,0 -k1,19164:9645625,14910057:240058 -k1,19164:11239658,14910057:240059 -k1,19164:13604393,14910057:240058 -k1,19164:16473100,14910057:240058 -k1,19164:18102522,14910057:240059 -k1,19164:20060934,14910057:240058 -k1,19164:24334078,14910057:240058 -k1,19164:25904517,14910057:240058 -k1,19164:29300790,14910057:240059 -k1,19164:30200140,14910057:240058 -k1,19164:32583029,14910057:0 -) -(1,19165:6630773,15775137:25952256,513147,134348 -k1,19164:8384264,15775137:145893 -k1,19164:9634439,15775137:145893 -k1,19164:10528098,15775137:145893 -k1,19164:13639495,15775137:145893 -k1,19164:14982075,15775137:145893 -k1,19164:16517331,15775137:145893 -k1,19164:17654785,15775137:145894 -k1,19164:18748329,15775137:145893 -k1,19164:20066661,15775137:145893 -k1,19164:22609206,15775137:145893 -k1,19164:26718061,15775137:145893 -k1,19164:28722555,15775137:145893 -k1,19164:30059893,15775137:145893 -k1,19165:32583029,15775137:0 -k1,19165:32583029,15775137:0 -) -v1,19167:6630773,16459992:0,393216,0 -(1,19175:6630773,19513671:25952256,3446895,196608 -g1,19175:6630773,19513671 -g1,19175:6630773,19513671 -g1,19175:6434165,19513671 -(1,19175:6434165,19513671:0,3446895,196608 -r1,19223:32779637,19513671:26345472,3643503,196608 -k1,19175:6434165,19513671:-26345472 -) -(1,19175:6434165,19513671:26345472,3446895,196608 -[1,19175:6630773,19513671:25952256,3250287,0 -(1,19169:6630773,16687823:25952256,424439,79822 -(1,19168:6630773,16687823:0,0,0 -g1,19168:6630773,16687823 -g1,19168:6630773,16687823 -g1,19168:6303093,16687823 -(1,19168:6303093,16687823:0,0,0 -) -g1,19168:6630773,16687823 -) -k1,19169:6630773,16687823:0 -h1,19169:11942036,16687823:0,0,0 -k1,19169:32583028,16687823:20640992 -g1,19169:32583028,16687823 -) -(1,19170:6630773,17372678:25952256,424439,106246 -h1,19170:6630773,17372678:0,0,0 -g1,19170:10614220,17372678 -k1,19170:10614220,17372678:0 -h1,19170:11278128,17372678:0,0,0 -k1,19170:32583028,17372678:21304900 -g1,19170:32583028,17372678 -) -(1,19171:6630773,18057533:25952256,431045,106246 -h1,19171:6630773,18057533:0,0,0 -g1,19171:6962727,18057533 -g1,19171:7294681,18057533 -g1,19171:14265713,18057533 -g1,19171:14929621,18057533 -g1,19171:20904793,18057533 -g1,19171:22564563,18057533 -g1,19171:24556287,18057533 -k1,19171:24556287,18057533:0 -h1,19171:25884103,18057533:0,0,0 -k1,19171:32583029,18057533:6698926 -g1,19171:32583029,18057533 -) -(1,19172:6630773,18742388:25952256,431045,112852 -h1,19172:6630773,18742388:0,0,0 -g1,19172:6962727,18742388 -g1,19172:7294681,18742388 -g1,19172:7626635,18742388 -g1,19172:7958589,18742388 -g1,19172:8290543,18742388 -g1,19172:8622497,18742388 -g1,19172:8954451,18742388 -g1,19172:9286405,18742388 -g1,19172:9618359,18742388 -g1,19172:9950313,18742388 -g1,19172:10282267,18742388 -g1,19172:10614221,18742388 -g1,19172:10946175,18742388 -g1,19172:12937899,18742388 -g1,19172:13601807,18742388 -g1,19172:20572841,18742388 -g1,19172:24224334,18742388 -g1,19172:25884104,18742388 -k1,19172:25884104,18742388:0 -h1,19172:27543874,18742388:0,0,0 -k1,19172:32583029,18742388:5039155 -g1,19172:32583029,18742388 -) -(1,19173:6630773,19427243:25952256,424439,86428 -h1,19173:6630773,19427243:0,0,0 -g1,19173:6962727,19427243 -g1,19173:7294681,19427243 -g1,19173:7626635,19427243 -g1,19173:7958589,19427243 -g1,19173:8290543,19427243 -g1,19173:8622497,19427243 -g1,19173:8954451,19427243 -g1,19173:9286405,19427243 -g1,19173:9618359,19427243 -g1,19173:9950313,19427243 -g1,19173:10282267,19427243 -g1,19173:10614221,19427243 -g1,19173:10946175,19427243 -g1,19173:14929622,19427243 -g1,19173:15593530,19427243 -g1,19173:18581116,19427243 -g1,19173:19245024,19427243 -g1,19173:21568702,19427243 -g1,19173:22564564,19427243 -h1,19173:23560426,19427243:0,0,0 -k1,19173:32583029,19427243:9022603 -g1,19173:32583029,19427243 -) -] -) -g1,19175:32583029,19513671 -g1,19175:6630773,19513671 -g1,19175:6630773,19513671 -g1,19175:32583029,19513671 -g1,19175:32583029,19513671 -) -h1,19175:6630773,19710279:0,0,0 -(1,19179:6630773,20575359:25952256,513147,134348 -h1,19178:6630773,20575359:983040,0,0 -k1,19178:9014079,20575359:203579 -k1,19178:10523791,20575359:203579 -k1,19178:12004667,20575359:203579 -k1,19178:14876216,20575359:203578 -k1,19178:16469158,20575359:203579 -k1,19178:17620388,20575359:203579 -(1,19178:17620388,20575359:0,459977,115847 -r1,19223:20440637,20575359:2820249,575824,115847 -k1,19178:17620388,20575359:-2820249 -) -(1,19178:17620388,20575359:2820249,459977,115847 -k1,19178:17620388,20575359:3277 -h1,19178:20437360,20575359:0,411205,112570 -) -k1,19178:20644216,20575359:203579 -k1,19178:23488241,20575359:203579 -k1,19178:26663878,20575359:203579 -k1,19178:28602849,20575359:203578 -k1,19178:29162288,20575359:203579 -k1,19178:31483335,20575359:203579 -k1,19178:32583029,20575359:0 -) -(1,19179:6630773,21440439:25952256,513147,134348 -g1,19178:7481430,21440439 -(1,19178:7481430,21440439:0,452978,115847 -r1,19223:10301679,21440439:2820249,568825,115847 -k1,19178:7481430,21440439:-2820249 -) -(1,19178:7481430,21440439:2820249,452978,115847 -k1,19178:7481430,21440439:3277 -h1,19178:10298402,21440439:0,411205,112570 -) -g1,19178:10674578,21440439 -g1,19178:12968338,21440439 -g1,19178:14115218,21440439 -(1,19178:14115218,21440439:0,414482,115847 -r1,19223:14473484,21440439:358266,530329,115847 -k1,19178:14115218,21440439:-358266 -) -(1,19178:14115218,21440439:358266,414482,115847 -k1,19178:14115218,21440439:3277 -h1,19178:14470207,21440439:0,411205,112570 -) -g1,19178:14672713,21440439 -g1,19178:16063387,21440439 -(1,19178:16063387,21440439:0,414482,115847 -r1,19223:16421653,21440439:358266,530329,115847 -k1,19178:16063387,21440439:-358266 -) -(1,19178:16063387,21440439:358266,414482,115847 -k1,19178:16063387,21440439:3277 -h1,19178:16418376,21440439:0,411205,112570 -) -g1,19178:16620882,21440439 -g1,19178:19085691,21440439 -g1,19178:22422784,21440439 -g1,19178:23613573,21440439 -g1,19178:25326028,21440439 -g1,19178:26472908,21440439 -g1,19178:27438253,21440439 -k1,19179:32583029,21440439:2050822 -g1,19179:32583029,21440439 -) -v1,19183:6630773,22125294:0,393216,0 -(1,19189:6630773,23842293:25952256,2110215,196608 -g1,19189:6630773,23842293 -g1,19189:6630773,23842293 -g1,19189:6434165,23842293 -(1,19189:6434165,23842293:0,2110215,196608 -r1,19223:32779637,23842293:26345472,2306823,196608 -k1,19189:6434165,23842293:-26345472 -) -(1,19189:6434165,23842293:26345472,2110215,196608 -[1,19189:6630773,23842293:25952256,1913607,0 -(1,19185:6630773,22359731:25952256,431045,112852 -(1,19184:6630773,22359731:0,0,0 -g1,19184:6630773,22359731 -g1,19184:6630773,22359731 -g1,19184:6303093,22359731 -(1,19184:6303093,22359731:0,0,0 -) -g1,19184:6630773,22359731 -) -k1,19185:6630773,22359731:0 -g1,19185:15593530,22359731 -g1,19185:17585254,22359731 -g1,19185:18581116,22359731 -k1,19185:18581116,22359731:0 -h1,19185:21900655,22359731:0,0,0 -k1,19185:32583029,22359731:10682374 -g1,19185:32583029,22359731 -) -(1,19186:6630773,23044586:25952256,424439,112852 -h1,19186:6630773,23044586:0,0,0 -g1,19186:6962727,23044586 -g1,19186:7294681,23044586 -g1,19186:7626635,23044586 -g1,19186:7958589,23044586 -g1,19186:8290543,23044586 -g1,19186:8622497,23044586 -g1,19186:8954451,23044586 -g1,19186:11610083,23044586 -g1,19186:12273991,23044586 -g1,19186:14265715,23044586 -g1,19186:14929623,23044586 -g1,19186:18581116,23044586 -g1,19186:19245024,23044586 -g1,19186:19908932,23044586 -g1,19186:24556287,23044586 -h1,19186:24888241,23044586:0,0,0 -k1,19186:32583029,23044586:7694788 -g1,19186:32583029,23044586 -) -(1,19187:6630773,23729441:25952256,424439,112852 -h1,19187:6630773,23729441:0,0,0 -g1,19187:6962727,23729441 -g1,19187:7294681,23729441 -k1,19187:7294681,23729441:0 -h1,19187:10614220,23729441:0,0,0 -k1,19187:32583028,23729441:21968808 -g1,19187:32583028,23729441 -) -] -) -g1,19189:32583029,23842293 -g1,19189:6630773,23842293 -g1,19189:6630773,23842293 -g1,19189:32583029,23842293 -g1,19189:32583029,23842293 -) -h1,19189:6630773,24038901:0,0,0 -(1,19192:6630773,33739015:25952256,9634578,0 -k1,19192:13183781,33739015:6553008 -h1,19191:13183781,33739015:0,0,0 -(1,19191:13183781,33739015:12846240,9634578,0 -(1,19191:13183781,33739015:12846136,9634602,0 -(1,19191:13183781,33739015:12846136,9634602,0 -(1,19191:13183781,33739015:0,9634602,0 -(1,19191:13183781,33739015:0,14208860,0 -(1,19191:13183781,33739015:18945146,14208860,0 -) -k1,19191:13183781,33739015:-18945146 -) -) -g1,19191:26029917,33739015 -) -) -) -g1,19192:26030021,33739015 -k1,19192:32583029,33739015:6553008 -) -(1,19199:6630773,34604095:25952256,505283,134348 -h1,19198:6630773,34604095:983040,0,0 -k1,19198:9002300,34604095:191800 -k1,19198:9002300,34604095:0 -k1,19198:10569045,34604095:191800 -k1,19198:12789839,34604095:191799 -k1,19198:13973199,34604095:191800 -k1,19198:19217169,34604095:191800 -k1,19198:21072928,34604095:191800 -k1,19198:23692182,34604095:191800 -(1,19198:23692182,34604095:0,452978,115847 -r1,19223:27567566,34604095:3875384,568825,115847 -k1,19198:23692182,34604095:-3875384 -) -(1,19198:23692182,34604095:3875384,452978,115847 -g1,19198:25805730,34604095 -g1,19198:26509154,34604095 -h1,19198:27564289,34604095:0,411205,112570 -) -k1,19198:27759365,34604095:191799 -k1,19198:29997199,34604095:191800 -k1,19198:31208084,34604095:191800 -k1,19198:32583029,34604095:0 -) -(1,19199:6630773,35469175:25952256,513147,134348 -k1,19198:9967564,35469175:264463 -k1,19198:11967420,35469175:264463 -k1,19198:13607483,35469175:264462 -k1,19198:15112543,35469175:264463 -k1,19198:16396091,35469175:264463 -k1,19198:19321316,35469175:264463 -k1,19198:22220981,35469175:264462 -k1,19198:23504529,35469175:264463 -k1,19198:25561402,35469175:264463 -k1,19198:26635235,35469175:264463 -k1,19198:27918782,35469175:264462 -$1,19198:27918782,35469175 -$1,19198:28421443,35469175 -k1,19198:28685906,35469175:264463 -k1,19198:30376432,35469175:264463 -k1,19199:32583029,35469175:0 -) -(1,19199:6630773,36334255:25952256,513147,134348 -(1,19198:6630773,36334255:0,452978,115847 -r1,19223:12264717,36334255:5633944,568825,115847 -k1,19198:6630773,36334255:-5633944 -) -(1,19198:6630773,36334255:5633944,452978,115847 -g1,19198:9096033,36334255 -g1,19198:9799457,36334255 -h1,19198:12261440,36334255:0,411205,112570 -) -k1,19198:12592088,36334255:327371 -k1,19198:15894794,36334255:327371 -k1,19198:17241249,36334255:327370 -k1,19198:19834200,36334255:327371 -k1,19198:22192532,36334255:327371 -k1,19198:23179195,36334255:327371 -k1,19198:24525651,36334255:327371 -k1,19198:26351829,36334255:327370 -k1,19198:29809199,36334255:327371 -k1,19198:31155655,36334255:327371 -k1,19198:32583029,36334255:0 -) -(1,19199:6630773,37199335:25952256,513147,126483 -k1,19198:8339396,37199335:243238 -k1,19198:10441235,37199335:243238 -k1,19198:11875918,37199335:243238 -k1,19198:14589863,37199335:243238 -k1,19198:15824661,37199335:243238 -k1,19198:18826309,37199335:243238 -k1,19198:20260991,37199335:243237 -(1,19198:20260991,37199335:0,414482,122846 -r1,19223:22026104,37199335:1765113,537328,122846 -k1,19198:20260991,37199335:-1765113 -) -(1,19198:20260991,37199335:1765113,414482,122846 -k1,19198:20260991,37199335:3277 -h1,19198:22022827,37199335:0,411205,112570 -) -k1,19198:22269342,37199335:243238 -k1,19198:23044077,37199335:243238 -k1,19198:25872710,37199335:243238 -k1,19198:26767376,37199335:243238 -k1,19198:28029699,37199335:243238 -(1,19198:28029699,37199335:0,459977,115847 -r1,19223:29443100,37199335:1413401,575824,115847 -k1,19198:28029699,37199335:-1413401 -) -(1,19198:28029699,37199335:1413401,459977,115847 -k1,19198:28029699,37199335:3277 -h1,19198:29439823,37199335:0,411205,112570 -) -k1,19198:29686338,37199335:243238 -k1,19198:32583029,37199335:0 -) -(1,19199:6630773,38064415:25952256,513147,134348 -k1,19198:8095691,38064415:289858 -k1,19198:10651128,38064415:289857 -k1,19198:14013314,38064415:289858 -k1,19198:15250822,38064415:289857 -k1,19198:18154911,38064415:289858 -k1,19198:19060806,38064415:289857 -(1,19198:19060806,38064415:0,452978,122846 -r1,19223:22584478,38064415:3523672,575824,122846 -k1,19198:19060806,38064415:-3523672 -) -(1,19198:19060806,38064415:3523672,452978,122846 -k1,19198:19060806,38064415:3277 -h1,19198:22581201,38064415:0,411205,112570 -) -k1,19198:22874336,38064415:289858 -k1,19198:23695690,38064415:289857 -(1,19198:23695690,38064415:0,452978,115847 -r1,19223:29329633,38064415:5633943,568825,115847 -k1,19198:23695690,38064415:-5633943 -) -(1,19198:23695690,38064415:5633943,452978,115847 -k1,19198:23695690,38064415:3277 -h1,19198:29326356,38064415:0,411205,112570 -) -k1,19198:29793161,38064415:289858 -k1,19199:32583029,38064415:0 -) -(1,19199:6630773,38929495:25952256,505283,126483 -(1,19198:6630773,38929495:0,452978,115847 -r1,19223:12264716,38929495:5633943,568825,115847 -k1,19198:6630773,38929495:-5633943 -) -(1,19198:6630773,38929495:5633943,452978,115847 -k1,19198:6630773,38929495:3277 -h1,19198:12261439,38929495:0,411205,112570 -) -k1,19198:12438555,38929495:173839 -k1,19198:13143890,38929495:173838 -k1,19198:15519739,38929495:173839 -k1,19198:16345006,38929495:173839 -(1,19198:16345006,38929495:0,452978,115847 -r1,19223:21978949,38929495:5633943,568825,115847 -k1,19198:16345006,38929495:-5633943 -) -(1,19198:16345006,38929495:5633943,452978,115847 -k1,19198:16345006,38929495:3277 -h1,19198:21975672,38929495:0,411205,112570 -) -k1,19198:22152787,38929495:173838 -k1,19198:23398795,38929495:173839 -k1,19198:25851321,38929495:173839 -k1,19198:27044245,38929495:173839 -k1,19198:29655367,38929495:173838 -k1,19198:31839851,38929495:173839 -k1,19198:32583029,38929495:0 -) -(1,19199:6630773,39794575:25952256,513147,126483 -k1,19198:8338284,39794575:198872 -k1,19198:10075941,39794575:198872 -k1,19198:11344360,39794575:198871 -k1,19198:12562317,39794575:198872 -k1,19198:15954103,39794575:198872 -k1,19198:18590259,39794575:198872 -k1,19198:21626185,39794575:198872 -k1,19198:22484349,39794575:198872 -k1,19198:23702305,39794575:198871 -k1,19198:26284066,39794575:198872 -k1,19198:28778009,39794575:198872 -k1,19198:32583029,39794575:0 -) -(1,19199:6630773,40659655:25952256,513147,7863 -g1,19198:9157185,40659655 -g1,19198:10015706,40659655 -g1,19198:12920261,40659655 -k1,19199:32583030,40659655:17599696 -g1,19199:32583030,40659655 -) -v1,19203:6630773,41344510:0,393216,0 -(1,19209:6630773,43054903:25952256,2103609,196608 -g1,19209:6630773,43054903 -g1,19209:6630773,43054903 -g1,19209:6434165,43054903 -(1,19209:6434165,43054903:0,2103609,196608 -r1,19223:32779637,43054903:26345472,2300217,196608 -k1,19209:6434165,43054903:-26345472 -) -(1,19209:6434165,43054903:26345472,2103609,196608 -[1,19209:6630773,43054903:25952256,1907001,0 -(1,19205:6630773,41572341:25952256,424439,106246 -(1,19204:6630773,41572341:0,0,0 -g1,19204:6630773,41572341 -g1,19204:6630773,41572341 -g1,19204:6303093,41572341 -(1,19204:6303093,41572341:0,0,0 -) -g1,19204:6630773,41572341 -) -g1,19205:8954451,41572341 -k1,19205:8954451,41572341:0 -h1,19205:9618359,41572341:0,0,0 -k1,19205:32583029,41572341:22964670 -g1,19205:32583029,41572341 -) -(1,19206:6630773,42257196:25952256,424439,112852 -h1,19206:6630773,42257196:0,0,0 -g1,19206:6962727,42257196 -k1,19206:6962727,42257196:0 -h1,19206:13269852,42257196:0,0,0 -k1,19206:32583028,42257196:19313176 -g1,19206:32583028,42257196 -) -(1,19207:6630773,42942051:25952256,431045,112852 -h1,19207:6630773,42942051:0,0,0 -g1,19207:6962727,42942051 -g1,19207:7294681,42942051 -g1,19207:7626635,42942051 -g1,19207:7958589,42942051 -g1,19207:8290543,42942051 -g1,19207:8622497,42942051 -g1,19207:8954451,42942051 -g1,19207:9286405,42942051 -g1,19207:11942037,42942051 -g1,19207:12605945,42942051 -g1,19207:14597669,42942051 -g1,19207:15261577,42942051 -g1,19207:18913070,42942051 -g1,19207:19576978,42942051 -g1,19207:20240886,42942051 -g1,19207:24556287,42942051 -g1,19207:26216057,42942051 -g1,19207:26879965,42942051 -h1,19207:29203643,42942051:0,0,0 -k1,19207:32583029,42942051:3379386 -g1,19207:32583029,42942051 -) -] -) -g1,19209:32583029,43054903 -g1,19209:6630773,43054903 -g1,19209:6630773,43054903 -g1,19209:32583029,43054903 -g1,19209:32583029,43054903 -) -h1,19209:6630773,43251511:0,0,0 -v1,19213:6630773,43936366:0,393216,0 -(1,19217:6630773,44283655:25952256,740505,196608 -g1,19217:6630773,44283655 -g1,19217:6630773,44283655 -g1,19217:6434165,44283655 -(1,19217:6434165,44283655:0,740505,196608 -r1,19223:32779637,44283655:26345472,937113,196608 -k1,19217:6434165,44283655:-26345472 -) -(1,19217:6434165,44283655:26345472,740505,196608 -[1,19217:6630773,44283655:25952256,543897,0 -(1,19215:6630773,44170803:25952256,431045,112852 -(1,19214:6630773,44170803:0,0,0 -g1,19214:6630773,44170803 -g1,19214:6630773,44170803 -g1,19214:6303093,44170803 -(1,19214:6303093,44170803:0,0,0 -) -g1,19214:6630773,44170803 -) -g1,19215:7626635,44170803 -g1,19215:8622497,44170803 -g1,19215:10946175,44170803 -g1,19215:11610083,44170803 -g1,19215:16589392,44170803 -g1,19215:17253300,44170803 -g1,19215:18913070,44170803 -g1,19215:19576978,44170803 -g1,19215:24556288,44170803 -h1,19215:28207781,44170803:0,0,0 -k1,19215:32583029,44170803:4375248 -g1,19215:32583029,44170803 -) -] -) -g1,19217:32583029,44283655 -g1,19217:6630773,44283655 -g1,19217:6630773,44283655 -g1,19217:32583029,44283655 -g1,19217:32583029,44283655 -) -h1,19217:6630773,44480263:0,0,0 -] -(1,19223:32583029,45706769:0,0,0 -g1,19223:32583029,45706769 -) -) -] -(1,19223:6630773,47279633:25952256,0,0 -h1,19223:6630773,47279633:25952256,0,0 -) -] -(1,19223:4262630,4025873:0,0,0 -[1,19223:-473656,4025873:0,0,0 -(1,19223:-473656,-710413:0,0,0 -(1,19223:-473656,-710413:0,0,0 -g1,19223:-473656,-710413 -) -g1,19223:-473656,-710413 +g1,19221:6630773,4812305 +g1,19221:6630773,4812305 +g1,19221:10347975,4812305 +k1,19221:31387651,4812305:21039676 +) +) +] +[1,19221:6630773,45706769:25952256,40108032,0 +(1,19221:6630773,45706769:25952256,40108032,0 +(1,19221:6630773,45706769:0,0,0 +g1,19221:6630773,45706769 +) +[1,19221:6630773,45706769:25952256,40108032,0 +(1,19152:6630773,6254097:25952256,555811,12975 +(1,19152:6630773,6254097:2450326,534184,12975 +g1,19152:6630773,6254097 +g1,19152:9081099,6254097 +) +k1,19152:32583029,6254097:20670250 +g1,19152:32583029,6254097 +) +(1,19157:6630773,7512393:25952256,505283,134348 +k1,19156:8017530,7512393:211697 +k1,19156:11236673,7512393:211696 +(1,19156:11236673,7512393:0,452978,122846 +r1,19221:14760345,7512393:3523672,575824,122846 +k1,19156:11236673,7512393:-3523672 +) +(1,19156:11236673,7512393:3523672,452978,122846 +k1,19156:11236673,7512393:3277 +h1,19156:14757068,7512393:0,411205,112570 +) +k1,19156:14972042,7512393:211697 +k1,19156:16288020,7512393:211696 +k1,19156:17247483,7512393:211697 +k1,19156:18972406,7512393:211697 +k1,19156:19835530,7512393:211696 +k1,19156:21976607,7512393:211697 +k1,19156:24508934,7512393:211697 +k1,19156:26370171,7512393:211696 +k1,19156:28500762,7512393:211697 +k1,19156:30164080,7512393:211696 +k1,19156:31420421,7512393:211697 +k1,19157:32583029,7512393:0 +) +(1,19157:6630773,8377473:25952256,513147,126483 +k1,19156:9181507,8377473:235347 +k1,19156:10187556,8377473:235346 +k1,19156:14164353,8377473:235347 +k1,19156:15082584,8377473:235346 +k1,19156:16521827,8377473:235347 +k1,19156:17373211,8377473:235346 +k1,19156:18627643,8377473:235347 +(1,19156:18627643,8377473:0,452978,115847 +r1,19221:20041044,8377473:1413401,568825,115847 +k1,19156:18627643,8377473:-1413401 +) +(1,19156:18627643,8377473:1413401,452978,115847 +k1,19156:18627643,8377473:3277 +h1,19156:20037767,8377473:0,411205,112570 +) +k1,19156:20276390,8377473:235346 +k1,19156:24023811,8377473:235347 +k1,19156:26327473,8377473:235346 +k1,19156:27245705,8377473:235347 +k1,19156:29280670,8377473:235346 +k1,19156:32583029,8377473:0 +) +(1,19157:6630773,9242553:25952256,513147,126483 +g1,19156:10038645,9242553 +g1,19156:11805495,9242553 +g1,19156:13023809,9242553 +g1,19156:15758626,9242553 +k1,19157:32583029,9242553:12493129 +g1,19157:32583029,9242553 +) +v1,19159:6630773,10107633:0,393216,0 +(1,19160:6630773,14044977:25952256,4330560,0 +g1,19160:6630773,14044977 +g1,19160:6237557,14044977 +r1,19221:6368629,14044977:131072,4330560,0 +g1,19160:6567858,14044977 +g1,19160:6764466,14044977 +[1,19160:6764466,14044977:25818563,4330560,0 +(1,19160:6764466,10468810:25818563,754393,260573 +(1,19159:6764466,10468810:0,754393,260573 +r1,19221:7856192,10468810:1091726,1014966,260573 +k1,19159:6764466,10468810:-1091726 +) +(1,19159:6764466,10468810:1091726,754393,260573 +) +k1,19159:8102115,10468810:245923 +k1,19159:8429795,10468810:327680 +k1,19159:9303552,10468810:245922 +k1,19159:11251445,10468810:245923 +k1,19159:14196796,10468810:245923 +k1,19159:16825607,10468810:245922 +k1,19159:18679128,10468810:245923 +k1,19159:19916611,10468810:245923 +k1,19159:23467514,10468810:245922 +k1,19159:25581213,10468810:245923 +k1,19159:26871780,10468810:245923 +k1,19159:28898972,10468810:245923 +k1,19159:29559690,10468810:245875 +k1,19159:31516758,10468810:245923 +k1,19159:32583029,10468810:0 +) +(1,19160:6764466,11333890:25818563,513147,134348 +k1,19159:9522221,11333890:265421 +k1,19159:10752987,11333890:265421 +k1,19159:12412358,11333890:265420 +k1,19159:15506312,11333890:265421 +k1,19159:16763293,11333890:265421 +k1,19159:20333695,11333890:265421 +k1,19159:23641297,11333890:265421 +k1,19159:24668246,11333890:265421 +k1,19159:25952751,11333890:265420 +k1,19159:28483752,11333890:265421 +k1,19159:31923737,11333890:265421 +k1,19160:32583029,11333890:0 +) +(1,19160:6764466,12198970:25818563,505283,134348 +(1,19159:6764466,12198970:0,452978,122846 +r1,19221:10288138,12198970:3523672,575824,122846 +k1,19159:6764466,12198970:-3523672 +) +(1,19159:6764466,12198970:3523672,452978,122846 +k1,19159:6764466,12198970:3277 +h1,19159:10284861,12198970:0,411205,112570 +) +k1,19159:10519496,12198970:231358 +k1,19159:11437016,12198970:231358 +k1,19159:12126471,12198970:231358 +k1,19159:13780616,12198970:231358 +(1,19159:13780616,12198970:0,452978,115847 +r1,19221:18007712,12198970:4227096,568825,115847 +k1,19159:13780616,12198970:-4227096 +) +(1,19159:13780616,12198970:4227096,452978,115847 +k1,19159:13780616,12198970:3277 +h1,19159:18004435,12198970:0,411205,112570 +) +k1,19159:18239070,12198970:231358 +k1,19159:19121856,12198970:231358 +k1,19159:21973343,12198970:231358 +k1,19159:22560561,12198970:231358 +k1,19159:26201757,12198970:231358 +k1,19159:28384777,12198970:231358 +k1,19159:30058582,12198970:231358 +k1,19159:32583029,12198970:0 +) +(1,19160:6764466,13064050:25818563,505283,134348 +k1,19159:8965397,13064050:207981 +k1,19159:9859540,13064050:207981 +k1,19159:10599019,13064050:207982 +k1,19159:12039077,13064050:207981 +k1,19159:14525745,13064050:207981 +h1,19159:16068463,13064050:0,0,0 +k1,19159:16276444,13064050:207981 +k1,19159:17293796,13064050:207982 +k1,19159:18999930,13064050:207981 +h1,19159:20195307,13064050:0,0,0 +k1,19159:20784052,13064050:207981 +(1,19159:20784052,13064050:0,452978,122846 +r1,19221:24307724,13064050:3523672,575824,122846 +k1,19159:20784052,13064050:-3523672 +) +(1,19159:20784052,13064050:3523672,452978,122846 +k1,19159:20784052,13064050:3277 +h1,19159:24304447,13064050:0,411205,112570 +) +k1,19159:24515705,13064050:207981 +k1,19159:25255184,13064050:207982 +k1,19159:28199948,13064050:207981 +k1,19159:29059357,13064050:207981 +(1,19159:29059357,13064050:0,452978,122846 +r1,19221:32583029,13064050:3523672,575824,122846 +k1,19159:29059357,13064050:-3523672 +) +(1,19159:29059357,13064050:3523672,452978,122846 +k1,19159:29059357,13064050:3277 +h1,19159:32579752,13064050:0,411205,112570 +) +k1,19159:32583029,13064050:0 +) +(1,19160:6764466,13929130:25818563,513147,115847 +g1,19159:8035864,13929130 +g1,19159:9629044,13929130 +(1,19159:9629044,13929130:0,452978,115847 +r1,19221:13152716,13929130:3523672,568825,115847 +k1,19159:9629044,13929130:-3523672 +) +(1,19159:9629044,13929130:3523672,452978,115847 +k1,19159:9629044,13929130:3277 +h1,19159:13149439,13929130:0,411205,112570 +) +g1,19159:13351945,13929130 +g1,19159:14237336,13929130 +g1,19159:15455650,13929130 +g1,19159:17920459,13929130 +k1,19160:32583029,13929130:12087005 +g1,19160:32583029,13929130 +) +] +g1,19160:32583029,14044977 +) +h1,19160:6630773,14044977:0,0,0 +(1,19163:6630773,14910057:25952256,513147,134348 +h1,19162:6630773,14910057:983040,0,0 +k1,19162:9645625,14910057:240058 +k1,19162:11239658,14910057:240059 +k1,19162:13604393,14910057:240058 +k1,19162:16473100,14910057:240058 +k1,19162:18102522,14910057:240059 +k1,19162:20060934,14910057:240058 +k1,19162:24334078,14910057:240058 +k1,19162:25904517,14910057:240058 +k1,19162:29300790,14910057:240059 +k1,19162:30200140,14910057:240058 +k1,19162:32583029,14910057:0 +) +(1,19163:6630773,15775137:25952256,513147,134348 +k1,19162:8384264,15775137:145893 +k1,19162:9634439,15775137:145893 +k1,19162:10528098,15775137:145893 +k1,19162:13639495,15775137:145893 +k1,19162:14982075,15775137:145893 +k1,19162:16517331,15775137:145893 +k1,19162:17654785,15775137:145894 +k1,19162:18748329,15775137:145893 +k1,19162:20066661,15775137:145893 +k1,19162:22609206,15775137:145893 +k1,19162:26718061,15775137:145893 +k1,19162:28722555,15775137:145893 +k1,19162:30059893,15775137:145893 +k1,19163:32583029,15775137:0 +k1,19163:32583029,15775137:0 +) +v1,19165:6630773,16459992:0,393216,0 +(1,19173:6630773,19513671:25952256,3446895,196608 +g1,19173:6630773,19513671 +g1,19173:6630773,19513671 +g1,19173:6434165,19513671 +(1,19173:6434165,19513671:0,3446895,196608 +r1,19221:32779637,19513671:26345472,3643503,196608 +k1,19173:6434165,19513671:-26345472 +) +(1,19173:6434165,19513671:26345472,3446895,196608 +[1,19173:6630773,19513671:25952256,3250287,0 +(1,19167:6630773,16687823:25952256,424439,79822 +(1,19166:6630773,16687823:0,0,0 +g1,19166:6630773,16687823 +g1,19166:6630773,16687823 +g1,19166:6303093,16687823 +(1,19166:6303093,16687823:0,0,0 +) +g1,19166:6630773,16687823 +) +k1,19167:6630773,16687823:0 +h1,19167:11942036,16687823:0,0,0 +k1,19167:32583028,16687823:20640992 +g1,19167:32583028,16687823 +) +(1,19168:6630773,17372678:25952256,424439,106246 +h1,19168:6630773,17372678:0,0,0 +g1,19168:10614220,17372678 +k1,19168:10614220,17372678:0 +h1,19168:11278128,17372678:0,0,0 +k1,19168:32583028,17372678:21304900 +g1,19168:32583028,17372678 +) +(1,19169:6630773,18057533:25952256,431045,106246 +h1,19169:6630773,18057533:0,0,0 +g1,19169:6962727,18057533 +g1,19169:7294681,18057533 +g1,19169:14265713,18057533 +g1,19169:14929621,18057533 +g1,19169:20904793,18057533 +g1,19169:22564563,18057533 +g1,19169:24556287,18057533 +k1,19169:24556287,18057533:0 +h1,19169:25884103,18057533:0,0,0 +k1,19169:32583029,18057533:6698926 +g1,19169:32583029,18057533 +) +(1,19170:6630773,18742388:25952256,431045,112852 +h1,19170:6630773,18742388:0,0,0 +g1,19170:6962727,18742388 +g1,19170:7294681,18742388 +g1,19170:7626635,18742388 +g1,19170:7958589,18742388 +g1,19170:8290543,18742388 +g1,19170:8622497,18742388 +g1,19170:8954451,18742388 +g1,19170:9286405,18742388 +g1,19170:9618359,18742388 +g1,19170:9950313,18742388 +g1,19170:10282267,18742388 +g1,19170:10614221,18742388 +g1,19170:10946175,18742388 +g1,19170:12937899,18742388 +g1,19170:13601807,18742388 +g1,19170:20572841,18742388 +g1,19170:24224334,18742388 +g1,19170:25884104,18742388 +k1,19170:25884104,18742388:0 +h1,19170:27543874,18742388:0,0,0 +k1,19170:32583029,18742388:5039155 +g1,19170:32583029,18742388 +) +(1,19171:6630773,19427243:25952256,424439,86428 +h1,19171:6630773,19427243:0,0,0 +g1,19171:6962727,19427243 +g1,19171:7294681,19427243 +g1,19171:7626635,19427243 +g1,19171:7958589,19427243 +g1,19171:8290543,19427243 +g1,19171:8622497,19427243 +g1,19171:8954451,19427243 +g1,19171:9286405,19427243 +g1,19171:9618359,19427243 +g1,19171:9950313,19427243 +g1,19171:10282267,19427243 +g1,19171:10614221,19427243 +g1,19171:10946175,19427243 +g1,19171:14929622,19427243 +g1,19171:15593530,19427243 +g1,19171:18581116,19427243 +g1,19171:19245024,19427243 +g1,19171:21568702,19427243 +g1,19171:22564564,19427243 +h1,19171:23560426,19427243:0,0,0 +k1,19171:32583029,19427243:9022603 +g1,19171:32583029,19427243 +) +] +) +g1,19173:32583029,19513671 +g1,19173:6630773,19513671 +g1,19173:6630773,19513671 +g1,19173:32583029,19513671 +g1,19173:32583029,19513671 +) +h1,19173:6630773,19710279:0,0,0 +(1,19177:6630773,20575359:25952256,513147,134348 +h1,19176:6630773,20575359:983040,0,0 +k1,19176:9014079,20575359:203579 +k1,19176:10523791,20575359:203579 +k1,19176:12004667,20575359:203579 +k1,19176:14876216,20575359:203578 +k1,19176:16469158,20575359:203579 +k1,19176:17620388,20575359:203579 +(1,19176:17620388,20575359:0,459977,115847 +r1,19221:20440637,20575359:2820249,575824,115847 +k1,19176:17620388,20575359:-2820249 +) +(1,19176:17620388,20575359:2820249,459977,115847 +k1,19176:17620388,20575359:3277 +h1,19176:20437360,20575359:0,411205,112570 +) +k1,19176:20644216,20575359:203579 +k1,19176:23488241,20575359:203579 +k1,19176:26663878,20575359:203579 +k1,19176:28602849,20575359:203578 +k1,19176:29162288,20575359:203579 +k1,19176:31483335,20575359:203579 +k1,19176:32583029,20575359:0 +) +(1,19177:6630773,21440439:25952256,513147,134348 +g1,19176:7481430,21440439 +(1,19176:7481430,21440439:0,452978,115847 +r1,19221:10301679,21440439:2820249,568825,115847 +k1,19176:7481430,21440439:-2820249 +) +(1,19176:7481430,21440439:2820249,452978,115847 +k1,19176:7481430,21440439:3277 +h1,19176:10298402,21440439:0,411205,112570 +) +g1,19176:10674578,21440439 +g1,19176:12968338,21440439 +g1,19176:14115218,21440439 +(1,19176:14115218,21440439:0,414482,115847 +r1,19221:14473484,21440439:358266,530329,115847 +k1,19176:14115218,21440439:-358266 +) +(1,19176:14115218,21440439:358266,414482,115847 +k1,19176:14115218,21440439:3277 +h1,19176:14470207,21440439:0,411205,112570 +) +g1,19176:14672713,21440439 +g1,19176:16063387,21440439 +(1,19176:16063387,21440439:0,414482,115847 +r1,19221:16421653,21440439:358266,530329,115847 +k1,19176:16063387,21440439:-358266 +) +(1,19176:16063387,21440439:358266,414482,115847 +k1,19176:16063387,21440439:3277 +h1,19176:16418376,21440439:0,411205,112570 +) +g1,19176:16620882,21440439 +g1,19176:19085691,21440439 +g1,19176:22422784,21440439 +g1,19176:23613573,21440439 +g1,19176:25326028,21440439 +g1,19176:26472908,21440439 +g1,19176:27438253,21440439 +k1,19177:32583029,21440439:2050822 +g1,19177:32583029,21440439 +) +v1,19181:6630773,22125294:0,393216,0 +(1,19187:6630773,23842293:25952256,2110215,196608 +g1,19187:6630773,23842293 +g1,19187:6630773,23842293 +g1,19187:6434165,23842293 +(1,19187:6434165,23842293:0,2110215,196608 +r1,19221:32779637,23842293:26345472,2306823,196608 +k1,19187:6434165,23842293:-26345472 +) +(1,19187:6434165,23842293:26345472,2110215,196608 +[1,19187:6630773,23842293:25952256,1913607,0 +(1,19183:6630773,22359731:25952256,431045,112852 +(1,19182:6630773,22359731:0,0,0 +g1,19182:6630773,22359731 +g1,19182:6630773,22359731 +g1,19182:6303093,22359731 +(1,19182:6303093,22359731:0,0,0 +) +g1,19182:6630773,22359731 +) +k1,19183:6630773,22359731:0 +g1,19183:15593530,22359731 +g1,19183:17585254,22359731 +g1,19183:18581116,22359731 +k1,19183:18581116,22359731:0 +h1,19183:21900655,22359731:0,0,0 +k1,19183:32583029,22359731:10682374 +g1,19183:32583029,22359731 +) +(1,19184:6630773,23044586:25952256,424439,112852 +h1,19184:6630773,23044586:0,0,0 +g1,19184:6962727,23044586 +g1,19184:7294681,23044586 +g1,19184:7626635,23044586 +g1,19184:7958589,23044586 +g1,19184:8290543,23044586 +g1,19184:8622497,23044586 +g1,19184:8954451,23044586 +g1,19184:11610083,23044586 +g1,19184:12273991,23044586 +g1,19184:14265715,23044586 +g1,19184:14929623,23044586 +g1,19184:18581116,23044586 +g1,19184:19245024,23044586 +g1,19184:19908932,23044586 +g1,19184:24556287,23044586 +h1,19184:24888241,23044586:0,0,0 +k1,19184:32583029,23044586:7694788 +g1,19184:32583029,23044586 +) +(1,19185:6630773,23729441:25952256,424439,112852 +h1,19185:6630773,23729441:0,0,0 +g1,19185:6962727,23729441 +g1,19185:7294681,23729441 +k1,19185:7294681,23729441:0 +h1,19185:10614220,23729441:0,0,0 +k1,19185:32583028,23729441:21968808 +g1,19185:32583028,23729441 +) +] +) +g1,19187:32583029,23842293 +g1,19187:6630773,23842293 +g1,19187:6630773,23842293 +g1,19187:32583029,23842293 +g1,19187:32583029,23842293 +) +h1,19187:6630773,24038901:0,0,0 +(1,19190:6630773,33739015:25952256,9634578,0 +k1,19190:13183781,33739015:6553008 +h1,19189:13183781,33739015:0,0,0 +(1,19189:13183781,33739015:12846240,9634578,0 +(1,19189:13183781,33739015:12846136,9634602,0 +(1,19189:13183781,33739015:12846136,9634602,0 +(1,19189:13183781,33739015:0,9634602,0 +(1,19189:13183781,33739015:0,14208860,0 +(1,19189:13183781,33739015:18945146,14208860,0 +) +k1,19189:13183781,33739015:-18945146 +) +) +g1,19189:26029917,33739015 +) +) +) +g1,19190:26030021,33739015 +k1,19190:32583029,33739015:6553008 +) +(1,19197:6630773,34604095:25952256,505283,134348 +h1,19196:6630773,34604095:983040,0,0 +k1,19196:9002300,34604095:191800 +k1,19196:9002300,34604095:0 +k1,19196:10569045,34604095:191800 +k1,19196:12789839,34604095:191799 +k1,19196:13973199,34604095:191800 +k1,19196:19217169,34604095:191800 +k1,19196:21072928,34604095:191800 +k1,19196:23692182,34604095:191800 +(1,19196:23692182,34604095:0,452978,115847 +r1,19221:27567566,34604095:3875384,568825,115847 +k1,19196:23692182,34604095:-3875384 +) +(1,19196:23692182,34604095:3875384,452978,115847 +g1,19196:25805730,34604095 +g1,19196:26509154,34604095 +h1,19196:27564289,34604095:0,411205,112570 +) +k1,19196:27759365,34604095:191799 +k1,19196:29997199,34604095:191800 +k1,19196:31208084,34604095:191800 +k1,19196:32583029,34604095:0 +) +(1,19197:6630773,35469175:25952256,513147,134348 +k1,19196:9967564,35469175:264463 +k1,19196:11967420,35469175:264463 +k1,19196:13607483,35469175:264462 +k1,19196:15112543,35469175:264463 +k1,19196:16396091,35469175:264463 +k1,19196:19321316,35469175:264463 +k1,19196:22220981,35469175:264462 +k1,19196:23504529,35469175:264463 +k1,19196:25561402,35469175:264463 +k1,19196:26635235,35469175:264463 +k1,19196:27918782,35469175:264462 +$1,19196:27918782,35469175 +$1,19196:28421443,35469175 +k1,19196:28685906,35469175:264463 +k1,19196:30376432,35469175:264463 +k1,19197:32583029,35469175:0 +) +(1,19197:6630773,36334255:25952256,513147,134348 +(1,19196:6630773,36334255:0,452978,115847 +r1,19221:12264717,36334255:5633944,568825,115847 +k1,19196:6630773,36334255:-5633944 +) +(1,19196:6630773,36334255:5633944,452978,115847 +g1,19196:9096033,36334255 +g1,19196:9799457,36334255 +h1,19196:12261440,36334255:0,411205,112570 +) +k1,19196:12592088,36334255:327371 +k1,19196:15894794,36334255:327371 +k1,19196:17241249,36334255:327370 +k1,19196:19834200,36334255:327371 +k1,19196:22192532,36334255:327371 +k1,19196:23179195,36334255:327371 +k1,19196:24525651,36334255:327371 +k1,19196:26351829,36334255:327370 +k1,19196:29809199,36334255:327371 +k1,19196:31155655,36334255:327371 +k1,19196:32583029,36334255:0 +) +(1,19197:6630773,37199335:25952256,513147,126483 +k1,19196:8339396,37199335:243238 +k1,19196:10441235,37199335:243238 +k1,19196:11875918,37199335:243238 +k1,19196:14589863,37199335:243238 +k1,19196:15824661,37199335:243238 +k1,19196:18826309,37199335:243238 +k1,19196:20260991,37199335:243237 +(1,19196:20260991,37199335:0,414482,122846 +r1,19221:22026104,37199335:1765113,537328,122846 +k1,19196:20260991,37199335:-1765113 +) +(1,19196:20260991,37199335:1765113,414482,122846 +k1,19196:20260991,37199335:3277 +h1,19196:22022827,37199335:0,411205,112570 +) +k1,19196:22269342,37199335:243238 +k1,19196:23044077,37199335:243238 +k1,19196:25872710,37199335:243238 +k1,19196:26767376,37199335:243238 +k1,19196:28029699,37199335:243238 +(1,19196:28029699,37199335:0,459977,115847 +r1,19221:29443100,37199335:1413401,575824,115847 +k1,19196:28029699,37199335:-1413401 +) +(1,19196:28029699,37199335:1413401,459977,115847 +k1,19196:28029699,37199335:3277 +h1,19196:29439823,37199335:0,411205,112570 +) +k1,19196:29686338,37199335:243238 +k1,19196:32583029,37199335:0 +) +(1,19197:6630773,38064415:25952256,513147,134348 +k1,19196:8095691,38064415:289858 +k1,19196:10651128,38064415:289857 +k1,19196:14013314,38064415:289858 +k1,19196:15250822,38064415:289857 +k1,19196:18154911,38064415:289858 +k1,19196:19060806,38064415:289857 +(1,19196:19060806,38064415:0,452978,122846 +r1,19221:22584478,38064415:3523672,575824,122846 +k1,19196:19060806,38064415:-3523672 +) +(1,19196:19060806,38064415:3523672,452978,122846 +k1,19196:19060806,38064415:3277 +h1,19196:22581201,38064415:0,411205,112570 +) +k1,19196:22874336,38064415:289858 +k1,19196:23695690,38064415:289857 +(1,19196:23695690,38064415:0,452978,115847 +r1,19221:29329633,38064415:5633943,568825,115847 +k1,19196:23695690,38064415:-5633943 +) +(1,19196:23695690,38064415:5633943,452978,115847 +k1,19196:23695690,38064415:3277 +h1,19196:29326356,38064415:0,411205,112570 +) +k1,19196:29793161,38064415:289858 +k1,19197:32583029,38064415:0 +) +(1,19197:6630773,38929495:25952256,505283,126483 +(1,19196:6630773,38929495:0,452978,115847 +r1,19221:12264716,38929495:5633943,568825,115847 +k1,19196:6630773,38929495:-5633943 +) +(1,19196:6630773,38929495:5633943,452978,115847 +k1,19196:6630773,38929495:3277 +h1,19196:12261439,38929495:0,411205,112570 +) +k1,19196:12438555,38929495:173839 +k1,19196:13143890,38929495:173838 +k1,19196:15519739,38929495:173839 +k1,19196:16345006,38929495:173839 +(1,19196:16345006,38929495:0,452978,115847 +r1,19221:21978949,38929495:5633943,568825,115847 +k1,19196:16345006,38929495:-5633943 +) +(1,19196:16345006,38929495:5633943,452978,115847 +k1,19196:16345006,38929495:3277 +h1,19196:21975672,38929495:0,411205,112570 +) +k1,19196:22152787,38929495:173838 +k1,19196:23398795,38929495:173839 +k1,19196:25851321,38929495:173839 +k1,19196:27044245,38929495:173839 +k1,19196:29655367,38929495:173838 +k1,19196:31839851,38929495:173839 +k1,19196:32583029,38929495:0 +) +(1,19197:6630773,39794575:25952256,513147,126483 +k1,19196:8338284,39794575:198872 +k1,19196:10075941,39794575:198872 +k1,19196:11344360,39794575:198871 +k1,19196:12562317,39794575:198872 +k1,19196:15954103,39794575:198872 +k1,19196:18590259,39794575:198872 +k1,19196:21626185,39794575:198872 +k1,19196:22484349,39794575:198872 +k1,19196:23702305,39794575:198871 +k1,19196:26284066,39794575:198872 +k1,19196:28778009,39794575:198872 +k1,19196:32583029,39794575:0 +) +(1,19197:6630773,40659655:25952256,513147,7863 +g1,19196:9157185,40659655 +g1,19196:10015706,40659655 +g1,19196:12920261,40659655 +k1,19197:32583030,40659655:17599696 +g1,19197:32583030,40659655 +) +v1,19201:6630773,41344510:0,393216,0 +(1,19207:6630773,43054903:25952256,2103609,196608 +g1,19207:6630773,43054903 +g1,19207:6630773,43054903 +g1,19207:6434165,43054903 +(1,19207:6434165,43054903:0,2103609,196608 +r1,19221:32779637,43054903:26345472,2300217,196608 +k1,19207:6434165,43054903:-26345472 +) +(1,19207:6434165,43054903:26345472,2103609,196608 +[1,19207:6630773,43054903:25952256,1907001,0 +(1,19203:6630773,41572341:25952256,424439,106246 +(1,19202:6630773,41572341:0,0,0 +g1,19202:6630773,41572341 +g1,19202:6630773,41572341 +g1,19202:6303093,41572341 +(1,19202:6303093,41572341:0,0,0 +) +g1,19202:6630773,41572341 +) +g1,19203:8954451,41572341 +k1,19203:8954451,41572341:0 +h1,19203:9618359,41572341:0,0,0 +k1,19203:32583029,41572341:22964670 +g1,19203:32583029,41572341 +) +(1,19204:6630773,42257196:25952256,424439,112852 +h1,19204:6630773,42257196:0,0,0 +g1,19204:6962727,42257196 +k1,19204:6962727,42257196:0 +h1,19204:13269852,42257196:0,0,0 +k1,19204:32583028,42257196:19313176 +g1,19204:32583028,42257196 +) +(1,19205:6630773,42942051:25952256,431045,112852 +h1,19205:6630773,42942051:0,0,0 +g1,19205:6962727,42942051 +g1,19205:7294681,42942051 +g1,19205:7626635,42942051 +g1,19205:7958589,42942051 +g1,19205:8290543,42942051 +g1,19205:8622497,42942051 +g1,19205:8954451,42942051 +g1,19205:9286405,42942051 +g1,19205:11942037,42942051 +g1,19205:12605945,42942051 +g1,19205:14597669,42942051 +g1,19205:15261577,42942051 +g1,19205:18913070,42942051 +g1,19205:19576978,42942051 +g1,19205:20240886,42942051 +g1,19205:24556287,42942051 +g1,19205:26216057,42942051 +g1,19205:26879965,42942051 +h1,19205:29203643,42942051:0,0,0 +k1,19205:32583029,42942051:3379386 +g1,19205:32583029,42942051 +) +] +) +g1,19207:32583029,43054903 +g1,19207:6630773,43054903 +g1,19207:6630773,43054903 +g1,19207:32583029,43054903 +g1,19207:32583029,43054903 +) +h1,19207:6630773,43251511:0,0,0 +v1,19211:6630773,43936366:0,393216,0 +(1,19215:6630773,44283655:25952256,740505,196608 +g1,19215:6630773,44283655 +g1,19215:6630773,44283655 +g1,19215:6434165,44283655 +(1,19215:6434165,44283655:0,740505,196608 +r1,19221:32779637,44283655:26345472,937113,196608 +k1,19215:6434165,44283655:-26345472 +) +(1,19215:6434165,44283655:26345472,740505,196608 +[1,19215:6630773,44283655:25952256,543897,0 +(1,19213:6630773,44170803:25952256,431045,112852 +(1,19212:6630773,44170803:0,0,0 +g1,19212:6630773,44170803 +g1,19212:6630773,44170803 +g1,19212:6303093,44170803 +(1,19212:6303093,44170803:0,0,0 +) +g1,19212:6630773,44170803 +) +g1,19213:7626635,44170803 +g1,19213:8622497,44170803 +g1,19213:10946175,44170803 +g1,19213:11610083,44170803 +g1,19213:16589392,44170803 +g1,19213:17253300,44170803 +g1,19213:18913070,44170803 +g1,19213:19576978,44170803 +g1,19213:24556288,44170803 +h1,19213:28207781,44170803:0,0,0 +k1,19213:32583029,44170803:4375248 +g1,19213:32583029,44170803 +) +] +) +g1,19215:32583029,44283655 +g1,19215:6630773,44283655 +g1,19215:6630773,44283655 +g1,19215:32583029,44283655 +g1,19215:32583029,44283655 +) +h1,19215:6630773,44480263:0,0,0 +] +(1,19221:32583029,45706769:0,0,0 +g1,19221:32583029,45706769 +) +) +] +(1,19221:6630773,47279633:25952256,0,0 +h1,19221:6630773,47279633:25952256,0,0 +) +] +(1,19221:4262630,4025873:0,0,0 +[1,19221:-473656,4025873:0,0,0 +(1,19221:-473656,-710413:0,0,0 +(1,19221:-473656,-710413:0,0,0 +g1,19221:-473656,-710413 +) +g1,19221:-473656,-710413 ) ] ) ] !26259 -}318 -Input:3342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}319 Input:3346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -335012,934 +335216,934 @@ Input:3357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3358:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3359:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{319 -[1,19295:4262630,47279633:28320399,43253760,0 -(1,19295:4262630,4025873:0,0,0 -[1,19295:-473656,4025873:0,0,0 -(1,19295:-473656,-710413:0,0,0 -(1,19295:-473656,-644877:0,0,0 -k1,19295:-473656,-644877:-65536 +{320 +[1,19293:4262630,47279633:28320399,43253760,0 +(1,19293:4262630,4025873:0,0,0 +[1,19293:-473656,4025873:0,0,0 +(1,19293:-473656,-710413:0,0,0 +(1,19293:-473656,-644877:0,0,0 +k1,19293:-473656,-644877:-65536 ) -(1,19295:-473656,4736287:0,0,0 -k1,19295:-473656,4736287:5209943 +(1,19293:-473656,4736287:0,0,0 +k1,19293:-473656,4736287:5209943 ) -g1,19295:-473656,-710413 +g1,19293:-473656,-710413 ) ] ) -[1,19295:6630773,47279633:25952256,43253760,0 -[1,19295:6630773,4812305:25952256,786432,0 -(1,19295:6630773,4812305:25952256,513147,126483 -(1,19295:6630773,4812305:25952256,513147,126483 -g1,19295:3078558,4812305 -[1,19295:3078558,4812305:0,0,0 -(1,19295:3078558,2439708:0,1703936,0 -k1,19295:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19295:2537886,2439708:1179648,16384,0 +[1,19293:6630773,47279633:25952256,43253760,0 +[1,19293:6630773,4812305:25952256,786432,0 +(1,19293:6630773,4812305:25952256,513147,126483 +(1,19293:6630773,4812305:25952256,513147,126483 +g1,19293:3078558,4812305 +[1,19293:3078558,4812305:0,0,0 +(1,19293:3078558,2439708:0,1703936,0 +k1,19293:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19293:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19295:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19293:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19295:3078558,4812305:0,0,0 -(1,19295:3078558,2439708:0,1703936,0 -g1,19295:29030814,2439708 -g1,19295:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19295:36151628,1915420:16384,1179648,0 +[1,19293:3078558,4812305:0,0,0 +(1,19293:3078558,2439708:0,1703936,0 +g1,19293:29030814,2439708 +g1,19293:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19293:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19295:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19293:37855564,2439708:1179648,16384,0 ) ) -k1,19295:3078556,2439708:-34777008 +k1,19293:3078556,2439708:-34777008 ) ] -[1,19295:3078558,4812305:0,0,0 -(1,19295:3078558,49800853:0,16384,2228224 -k1,19295:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19295:2537886,49800853:1179648,16384,0 +[1,19293:3078558,4812305:0,0,0 +(1,19293:3078558,49800853:0,16384,2228224 +k1,19293:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19293:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19295:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19293:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19295:3078558,4812305:0,0,0 -(1,19295:3078558,49800853:0,16384,2228224 -g1,19295:29030814,49800853 -g1,19295:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19295:36151628,51504789:16384,1179648,0 +[1,19293:3078558,4812305:0,0,0 +(1,19293:3078558,49800853:0,16384,2228224 +g1,19293:29030814,49800853 +g1,19293:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19293:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19295:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19293:37855564,49800853:1179648,16384,0 ) ) -k1,19295:3078556,49800853:-34777008 +k1,19293:3078556,49800853:-34777008 ) ] -g1,19295:6630773,4812305 -k1,19295:21386205,4812305:13560055 -g1,19295:21999622,4812305 -g1,19295:25611966,4812305 -g1,19295:28956923,4812305 -g1,19295:29772190,4812305 -) -) -] -[1,19295:6630773,45706769:25952256,40108032,0 -(1,19295:6630773,45706769:25952256,40108032,0 -(1,19295:6630773,45706769:0,0,0 -g1,19295:6630773,45706769 -) -[1,19295:6630773,45706769:25952256,40108032,0 -(1,19221:6630773,6254097:25952256,513147,134348 -h1,19220:6630773,6254097:983040,0,0 -k1,19220:9820212,6254097:414645 -(1,19220:9820212,6254097:0,452978,122846 -r1,19295:16157580,6254097:6337368,575824,122846 -k1,19220:9820212,6254097:-6337368 -) -(1,19220:9820212,6254097:6337368,452978,122846 -g1,19220:12988896,6254097 -g1,19220:13692320,6254097 -h1,19220:16154303,6254097:0,411205,112570 -) -k1,19220:16572225,6254097:414645 -k1,19220:17638298,6254097:414645 -k1,19220:20697976,6254097:414645 -k1,19220:22131706,6254097:414645 -k1,19220:24811931,6254097:414645 -(1,19220:24811931,6254097:0,452978,115847 -r1,19295:31149299,6254097:6337368,568825,115847 -k1,19220:24811931,6254097:-6337368 -) -(1,19220:24811931,6254097:6337368,452978,115847 -g1,19220:27980615,6254097 -g1,19220:28684039,6254097 -h1,19220:31146022,6254097:0,411205,112570 -) -k1,19220:31563944,6254097:414645 -k1,19220:32583029,6254097:0 -) -(1,19221:6630773,7119177:25952256,513147,126483 -g1,19220:9543193,7119177 -g1,19220:10690073,7119177 -g1,19220:12747903,7119177 -g1,19220:14138577,7119177 -g1,19220:16808513,7119177 -g1,19220:17999302,7119177 -g1,19220:20500811,7119177 -g1,19220:21999619,7119177 -g1,19220:22960376,7119177 -k1,19221:32583029,7119177:8149404 -g1,19221:32583029,7119177 -) -v1,19223:6630773,7804032:0,393216,0 -(1,19227:6630773,8144715:25952256,733899,196608 -g1,19227:6630773,8144715 -g1,19227:6630773,8144715 -g1,19227:6434165,8144715 -(1,19227:6434165,8144715:0,733899,196608 -r1,19295:32779637,8144715:26345472,930507,196608 -k1,19227:6434165,8144715:-26345472 -) -(1,19227:6434165,8144715:26345472,733899,196608 -[1,19227:6630773,8144715:25952256,537291,0 -(1,19225:6630773,8031863:25952256,424439,112852 -(1,19224:6630773,8031863:0,0,0 -g1,19224:6630773,8031863 -g1,19224:6630773,8031863 -g1,19224:6303093,8031863 -(1,19224:6303093,8031863:0,0,0 -) -g1,19224:6630773,8031863 -) -g1,19225:7626635,8031863 -g1,19225:8622497,8031863 -g1,19225:10946175,8031863 -g1,19225:11610083,8031863 -g1,19225:17585253,8031863 -g1,19225:18249161,8031863 -g1,19225:21236747,8031863 -g1,19225:21900655,8031863 -k1,19225:21900655,8031863:0 -h1,19225:27211919,8031863:0,0,0 -k1,19225:32583029,8031863:5371110 -g1,19225:32583029,8031863 -) -] -) -g1,19227:32583029,8144715 -g1,19227:6630773,8144715 -g1,19227:6630773,8144715 -g1,19227:32583029,8144715 -g1,19227:32583029,8144715 -) -h1,19227:6630773,8341323:0,0,0 -(1,19231:6630773,9206403:25952256,513147,134348 -h1,19230:6630773,9206403:983040,0,0 -g1,19230:9009729,9206403 -g1,19230:10381397,9206403 -g1,19230:12188224,9206403 -g1,19230:13687032,9206403 -g1,19230:14647789,9206403 -g1,19230:16146597,9206403 -g1,19230:17577903,9206403 -g1,19230:20055819,9206403 -h1,19230:21424866,9206403:0,0,0 -g1,19230:21624095,9206403 -g1,19230:22632694,9206403 -g1,19230:24330076,9206403 -h1,19230:25525453,9206403:0,0,0 -g1,19230:25724682,9206403 -g1,19230:26871562,9206403 -k1,19231:32583029,9206403:3334477 -g1,19231:32583029,9206403 -) -v1,19233:6630773,9891258:0,393216,0 -(1,19237:6630773,10208819:25952256,710777,196608 -g1,19237:6630773,10208819 -g1,19237:6630773,10208819 -g1,19237:6434165,10208819 -(1,19237:6434165,10208819:0,710777,196608 -r1,19295:32779637,10208819:26345472,907385,196608 -k1,19237:6434165,10208819:-26345472 -) -(1,19237:6434165,10208819:26345472,710777,196608 -[1,19237:6630773,10208819:25952256,514169,0 -(1,19235:6630773,10102573:25952256,407923,106246 -(1,19234:6630773,10102573:0,0,0 -g1,19234:6630773,10102573 -g1,19234:6630773,10102573 -g1,19234:6303093,10102573 -(1,19234:6303093,10102573:0,0,0 -) -g1,19234:6630773,10102573 -) -g1,19235:7626635,10102573 -g1,19235:8290543,10102573 -h1,19235:8954451,10102573:0,0,0 -k1,19235:32583029,10102573:23628578 -g1,19235:32583029,10102573 -) -] -) -g1,19237:32583029,10208819 -g1,19237:6630773,10208819 -g1,19237:6630773,10208819 -g1,19237:32583029,10208819 -g1,19237:32583029,10208819 -) -h1,19237:6630773,10405427:0,0,0 -(1,19240:6630773,20105758:25952256,9634795,0 -k1,19240:6760463,20105758:129690 -h1,19239:6760463,20105758:0,0,0 -(1,19239:6760463,20105758:25692876,9634795,0 -(1,19239:6760463,20105758:25692851,9634819,0 -(1,19239:6760463,20105758:25692851,9634819,0 -(1,19239:6760463,20105758:0,9634819,0 -(1,19239:6760463,20105758:0,14208860,0 -(1,19239:6760463,20105758:37890292,14208860,0 -) -k1,19239:6760463,20105758:-37890292 -) -) -g1,19239:32453314,20105758 -) -) -) -g1,19240:32453339,20105758 -k1,19240:32583029,20105758:129690 -) -v1,19249:6630773,20970838:0,393216,0 -(1,19250:6630773,23096321:25952256,2518699,0 -g1,19250:6630773,23096321 -g1,19250:6237557,23096321 -r1,19295:6368629,23096321:131072,2518699,0 -g1,19250:6567858,23096321 -g1,19250:6764466,23096321 -[1,19250:6764466,23096321:25818563,2518699,0 -(1,19250:6764466,21243315:25818563,665693,196608 -(1,19249:6764466,21243315:0,665693,196608 -r1,19295:7868133,21243315:1103667,862301,196608 -k1,19249:6764466,21243315:-1103667 -) -(1,19249:6764466,21243315:1103667,665693,196608 -) -k1,19249:8222660,21243315:354527 -k1,19249:9540589,21243315:327680 -k1,19249:12257688,21243315:354526 -k1,19249:13631300,21243315:354527 -k1,19249:17058155,21243315:354527 -k1,19249:18064109,21243315:354526 -(1,19249:18064109,21243315:0,452978,115847 -r1,19295:20884358,21243315:2820249,568825,115847 -k1,19249:18064109,21243315:-2820249 -) -(1,19249:18064109,21243315:2820249,452978,115847 -k1,19249:18064109,21243315:3277 -h1,19249:20881081,21243315:0,411205,112570 -) -k1,19249:21412555,21243315:354527 -k1,19249:22449967,21243315:354527 -k1,19249:23613863,21243315:354526 -k1,19249:24987475,21243315:354527 -k1,19249:27607582,21243315:354527 -k1,19249:28709874,21243315:354526 -k1,19249:31090119,21243315:354527 -k1,19249:32583029,21243315:0 -) -(1,19250:6764466,22108395:25818563,513147,134348 -k1,19249:8170486,22108395:235547 -k1,19249:12070806,22108395:235547 -k1,19249:13094752,22108395:235548 -k1,19249:15101082,22108395:235547 -k1,19249:16145999,22108395:235547 -k1,19249:17400631,22108395:235547 -k1,19249:19665173,22108395:235547 -k1,19249:21534533,22108395:235547 -k1,19249:22301578,22108395:235548 -k1,19249:23556210,22108395:235547 -k1,19249:26978117,22108395:235547 -k1,19249:29848867,22108395:235547 -k1,19250:32583029,22108395:0 -) -(1,19250:6764466,22973475:25818563,505283,122846 -(1,19249:6764466,22973475:0,452978,115847 -r1,19295:10288138,22973475:3523672,568825,115847 -k1,19249:6764466,22973475:-3523672 -) -(1,19249:6764466,22973475:3523672,452978,115847 -k1,19249:6764466,22973475:3277 -h1,19249:10284861,22973475:0,411205,112570 -) -g1,19249:10661037,22973475 -(1,19249:10661037,22973475:0,452978,122846 -r1,19295:13129574,22973475:2468537,575824,122846 -k1,19249:10661037,22973475:-2468537 -) -(1,19249:10661037,22973475:2468537,452978,122846 -k1,19249:10661037,22973475:3277 -h1,19249:13126297,22973475:0,411205,112570 -) -g1,19249:13502473,22973475 -(1,19249:13502473,22973475:0,452978,115847 -r1,19295:15971010,22973475:2468537,568825,115847 -k1,19249:13502473,22973475:-2468537 -) -(1,19249:13502473,22973475:2468537,452978,115847 -k1,19249:13502473,22973475:3277 -h1,19249:15967733,22973475:0,411205,112570 -) -g1,19249:16343909,22973475 -g1,19249:17734583,22973475 -(1,19249:17734583,22973475:0,459977,115847 -r1,19295:19851408,22973475:2116825,575824,115847 -k1,19249:17734583,22973475:-2116825 -) -(1,19249:17734583,22973475:2116825,459977,115847 -k1,19249:17734583,22973475:3277 -h1,19249:19848131,22973475:0,411205,112570 -) -k1,19250:32583029,22973475:12437364 -g1,19250:32583029,22973475 -) -] -g1,19250:32583029,23096321 -) -h1,19250:6630773,23096321:0,0,0 -v1,19253:6630773,23961401:0,393216,0 -(1,19254:6630773,26079885:25952256,2511700,0 -g1,19254:6630773,26079885 -g1,19254:6237557,26079885 -r1,19295:6368629,26079885:131072,2511700,0 -g1,19254:6567858,26079885 -g1,19254:6764466,26079885 -[1,19254:6764466,26079885:25818563,2511700,0 -(1,19254:6764466,24233878:25818563,665693,196608 -(1,19253:6764466,24233878:0,665693,196608 -r1,19295:7868133,24233878:1103667,862301,196608 -k1,19253:6764466,24233878:-1103667 -) -(1,19253:6764466,24233878:1103667,665693,196608 -) -k1,19253:8156944,24233878:288811 -k1,19253:9883162,24233878:327680 -k1,19253:11320820,24233878:288812 -k1,19253:14697687,24233878:288811 -k1,19253:15672660,24233878:288811 -k1,19253:19364101,24233878:288812 -k1,19253:20600563,24233878:288811 -k1,19253:23953838,24233878:288811 -k1,19253:24925534,24233878:288811 -k1,19253:26610918,24233878:288812 -k1,19253:29411069,24233878:288811 -(1,19253:29411069,24233878:0,414482,115847 -r1,19295:32583029,24233878:3171960,530329,115847 -k1,19253:29411069,24233878:-3171960 -) -(1,19253:29411069,24233878:3171960,414482,115847 -k1,19253:29411069,24233878:3277 -h1,19253:32579752,24233878:0,411205,112570 -) -k1,19253:32583029,24233878:0 -) -(1,19254:6764466,25098958:25818563,513147,134348 -k1,19253:7650695,25098958:234801 -k1,19253:9042205,25098958:234800 -k1,19253:9959891,25098958:234801 -k1,19253:11844889,25098958:234801 -k1,19253:12738981,25098958:234800 -k1,19253:13992867,25098958:234801 -k1,19253:17292132,25098958:234801 -k1,19253:20979370,25098958:234801 -k1,19253:21975698,25098958:234800 -(1,19253:21975698,25098958:0,452978,122846 -r1,19295:25499370,25098958:3523672,575824,122846 -k1,19253:21975698,25098958:-3523672 -) -(1,19253:21975698,25098958:3523672,452978,122846 -k1,19253:21975698,25098958:3277 -h1,19253:25496093,25098958:0,411205,112570 -) -k1,19253:25907841,25098958:234801 -k1,19253:27636208,25098958:234801 -k1,19253:28557170,25098958:234800 -(1,19253:28557170,25098958:0,452978,115847 -r1,19295:30673995,25098958:2116825,568825,115847 -k1,19253:28557170,25098958:-2116825 -) -(1,19253:28557170,25098958:2116825,452978,115847 -k1,19253:28557170,25098958:3277 -h1,19253:30670718,25098958:0,411205,112570 -) -k1,19253:31082466,25098958:234801 -(1,19253:31082466,25098958:0,459977,115847 -r1,19295:32495867,25098958:1413401,575824,115847 -k1,19253:31082466,25098958:-1413401 -) -(1,19253:31082466,25098958:1413401,459977,115847 -k1,19253:31082466,25098958:3277 -h1,19253:32492590,25098958:0,411205,112570 -) -k1,19254:32583029,25098958:0 -) -(1,19254:6764466,25964038:25818563,505283,115847 -(1,19253:6764466,25964038:0,452978,115847 -r1,19295:9584715,25964038:2820249,568825,115847 -k1,19253:6764466,25964038:-2820249 -) -(1,19253:6764466,25964038:2820249,452978,115847 -k1,19253:6764466,25964038:3277 -h1,19253:9581438,25964038:0,411205,112570 -) -g1,19253:9957614,25964038 -(1,19253:9957614,25964038:0,452978,115847 -r1,19295:11371015,25964038:1413401,568825,115847 -k1,19253:9957614,25964038:-1413401 -) -(1,19253:9957614,25964038:1413401,452978,115847 -k1,19253:9957614,25964038:3277 -h1,19253:11367738,25964038:0,411205,112570 -) -g1,19253:11743914,25964038 -(1,19253:11743914,25964038:0,452978,115847 -r1,19295:13509027,25964038:1765113,568825,115847 -k1,19253:11743914,25964038:-1765113 -) -(1,19253:11743914,25964038:1765113,452978,115847 -k1,19253:11743914,25964038:3277 -h1,19253:13505750,25964038:0,411205,112570 -) -g1,19253:13708256,25964038 -g1,19253:15098930,25964038 -(1,19253:15098930,25964038:0,452978,115847 -r1,19295:16864043,25964038:1765113,568825,115847 -k1,19253:15098930,25964038:-1765113 -) -(1,19253:15098930,25964038:1765113,452978,115847 -k1,19253:15098930,25964038:3277 -h1,19253:16860766,25964038:0,411205,112570 -) -k1,19254:32583029,25964038:15666558 -g1,19254:32583029,25964038 -) -] -g1,19254:32583029,26079885 -) -h1,19254:6630773,26079885:0,0,0 -(1,19259:6630773,28196703:25952256,555811,12975 -(1,19259:6630773,28196703:2450326,534184,12975 -g1,19259:6630773,28196703 -g1,19259:9081099,28196703 -) -k1,19259:32583030,28196703:21735736 -g1,19259:32583030,28196703 -) -(1,19263:6630773,29454999:25952256,513147,134348 -k1,19262:8086037,29454999:216634 -k1,19262:9940103,29454999:211078 -k1,19262:11342627,29454999:211079 -k1,19262:12975493,29454999:216633 -k1,19262:14955389,29454999:211079 -k1,19262:16158028,29454999:211079 -k1,19262:18346327,29454999:211078 -k1,19262:20255444,29454999:211079 -k1,19262:24538274,29454999:211078 -k1,19262:25740913,29454999:211079 -k1,19262:28735961,29454999:211079 -k1,19262:29756409,29454999:211078 -k1,19262:30323348,29454999:211079 -k1,19262:32583029,29454999:0 -) -(1,19263:6630773,30320079:25952256,513147,134348 -k1,19262:10549123,30320079:283068 -k1,19262:11733882,30320079:282984 -k1,19262:13475126,30320079:283068 -k1,19262:14954881,30320079:283068 -k1,19262:16522455,30320079:283068 -k1,19262:18083474,30320079:283067 -k1,19262:19314193,30320079:283068 -k1,19262:22432348,30320079:283068 -k1,19262:25756942,30320079:283068 -k1,19262:28926871,30320079:283068 -k1,19262:29825977,30320079:283068 -k1,19262:31896867,30320079:283068 -k1,19262:32583029,30320079:0 -) -(1,19263:6630773,31185159:25952256,513147,7863 -k1,19262:8163720,31185159:280554 -k1,19262:12762440,31185159:280553 -k1,19262:13702286,31185159:280554 -k1,19262:15775250,31185159:280554 -k1,19262:16715095,31185159:280553 -k1,19262:18168088,31185159:280554 -k1,19262:20974399,31185159:280553 -k1,19262:25398794,31185159:280554 -k1,19262:28125807,31185159:280554 -k1,19262:29603047,31185159:280553 -k1,19262:31914562,31185159:280554 -k1,19262:32583029,31185159:0 -) -(1,19263:6630773,32050239:25952256,513147,126483 -k1,19262:9792135,32050239:281055 -k1,19262:10732482,32050239:281055 -k1,19262:12032622,32050239:281055 -k1,19262:13654543,32050239:281054 -k1,19262:16449559,32050239:281055 -k1,19262:18553170,32050239:281055 -k1,19262:19853310,32050239:281055 -k1,19262:21814708,32050239:281055 -k1,19262:22755055,32050239:281055 -k1,19262:24055195,32050239:281055 -k1,19262:28581671,32050239:281054 -k1,19262:29350232,32050239:280973 -k1,19262:31189078,32050239:281055 -k1,19262:32583029,32050239:0 -) -(1,19263:6630773,32915319:25952256,505283,134348 -g1,19262:8971063,32915319 -g1,19262:9853177,32915319 -g1,19262:13687688,32915319 -g1,19262:15227784,32915319 -g1,19262:16531295,32915319 -g1,19262:17478290,32915319 -g1,19262:19642944,32915319 -g1,19262:21236124,32915319 -(1,19262:21236124,32915319:0,452978,122846 -r1,19295:25111508,32915319:3875384,575824,122846 -k1,19262:21236124,32915319:-3875384 -) -(1,19262:21236124,32915319:3875384,452978,122846 -k1,19262:21236124,32915319:3277 -h1,19262:25108231,32915319:0,411205,112570 -) -k1,19263:32583029,32915319:7419093 -g1,19263:32583029,32915319 -) -(1,19265:6630773,33780399:25952256,513147,134348 -h1,19264:6630773,33780399:983040,0,0 -k1,19264:9278974,33780399:193222 -k1,19264:11039817,33780399:193222 -k1,19264:12428416,33780399:193222 -k1,19264:15115938,33780399:193222 -k1,19264:17225433,33780399:193222 -k1,19264:18986275,33780399:193221 -k1,19264:20198582,33780399:193222 -$1,19264:20198582,33780399 -$1,19264:20643571,33780399 -k1,19264:20836793,33780399:193222 -k1,19264:24811442,33780399:193222 -k1,19264:26398615,33780399:193222 -k1,19264:29047471,33780399:193222 -k1,19264:29899985,33780399:193222 -k1,19264:32583029,33780399:0 -) -(1,19265:6630773,34645479:25952256,505283,126483 -(1,19264:7037098,34743793:311689,334430,0 -) -g1,19264:7530847,34645479 -g1,19264:8281104,34645479 -g1,19264:8978198,34645479 -(1,19264:9384523,34743793:311689,339935,0 -) -g1,19264:9878272,34645479 -g1,19264:10628529,34645479 -$1,19264:11425447,34645479 -g1,19264:11624676,34645479 -g1,19264:12815465,34645479 -g1,19264:14527920,34645479 -g1,19264:15343187,34645479 -g1,19264:16561501,34645479 -k1,19265:32583029,34645479:12977381 -g1,19265:32583029,34645479 -) -v1,19267:6630773,35330334:0,393216,0 -(1,19274:6630773,37718976:25952256,2781858,196608 -g1,19274:6630773,37718976 -g1,19274:6630773,37718976 -g1,19274:6434165,37718976 -(1,19274:6434165,37718976:0,2781858,196608 -r1,19295:32779637,37718976:26345472,2978466,196608 -k1,19274:6434165,37718976:-26345472 -) -(1,19274:6434165,37718976:26345472,2781858,196608 -[1,19274:6630773,37718976:25952256,2585250,0 -(1,19269:6630773,35558165:25952256,424439,79822 -(1,19268:6630773,35558165:0,0,0 -g1,19268:6630773,35558165 -g1,19268:6630773,35558165 -g1,19268:6303093,35558165 -(1,19268:6303093,35558165:0,0,0 -) -g1,19268:6630773,35558165 -) -k1,19269:6630773,35558165:0 -h1,19269:11278128,35558165:0,0,0 -k1,19269:32583028,35558165:21304900 -g1,19269:32583028,35558165 -) -(1,19270:6630773,36243020:25952256,431045,86428 -h1,19270:6630773,36243020:0,0,0 -g1,19270:10282266,36243020 -g1,19270:11278128,36243020 -g1,19270:17585253,36243020 -g1,19270:18249161,36243020 -g1,19270:20904793,36243020 -g1,19270:22232609,36243020 -g1,19270:22896517,36243020 -g1,19270:23892379,36243020 -g1,19270:25220195,36243020 -g1,19270:25884103,36243020 -k1,19270:25884103,36243020:0 -h1,19270:27211919,36243020:0,0,0 -k1,19270:32583029,36243020:5371110 -g1,19270:32583029,36243020 -) -(1,19271:6630773,36927875:25952256,424439,106246 -h1,19271:6630773,36927875:0,0,0 -g1,19271:6962727,36927875 -g1,19271:7294681,36927875 -g1,19271:7626635,36927875 -g1,19271:7958589,36927875 -g1,19271:8290543,36927875 -g1,19271:8622497,36927875 -g1,19271:8954451,36927875 -g1,19271:9286405,36927875 -g1,19271:9618359,36927875 -g1,19271:9950313,36927875 -g1,19271:10282267,36927875 -g1,19271:10614221,36927875 -g1,19271:10946175,36927875 -g1,19271:11278129,36927875 -g1,19271:11610083,36927875 -g1,19271:11942037,36927875 -g1,19271:12273991,36927875 -g1,19271:12605945,36927875 -g1,19271:12937899,36927875 -g1,19271:13269853,36927875 -g1,19271:13601807,36927875 -g1,19271:13933761,36927875 -g1,19271:14265715,36927875 -g1,19271:14597669,36927875 -g1,19271:14929623,36927875 -g1,19271:15593531,36927875 -g1,19271:16257439,36927875 -g1,19271:22564564,36927875 -k1,19271:22564564,36927875:0 -h1,19271:23892380,36927875:0,0,0 -k1,19271:32583029,36927875:8690649 -g1,19271:32583029,36927875 -) -(1,19272:6630773,37612730:25952256,424439,106246 -h1,19272:6630773,37612730:0,0,0 -g1,19272:6962727,37612730 -g1,19272:7294681,37612730 -g1,19272:7626635,37612730 -g1,19272:7958589,37612730 -g1,19272:8290543,37612730 -g1,19272:8622497,37612730 -g1,19272:8954451,37612730 -g1,19272:9286405,37612730 -g1,19272:9618359,37612730 -g1,19272:9950313,37612730 -g1,19272:10282267,37612730 -g1,19272:10614221,37612730 -g1,19272:10946175,37612730 -g1,19272:11278129,37612730 -g1,19272:11610083,37612730 -g1,19272:11942037,37612730 -g1,19272:12273991,37612730 -g1,19272:12605945,37612730 -g1,19272:12937899,37612730 -g1,19272:13269853,37612730 -g1,19272:13601807,37612730 -g1,19272:13933761,37612730 -g1,19272:14265715,37612730 -g1,19272:14597669,37612730 -g1,19272:14929623,37612730 -g1,19272:15593531,37612730 -g1,19272:16257439,37612730 -g1,19272:22232610,37612730 -g1,19272:24888242,37612730 -h1,19272:26879966,37612730:0,0,0 -k1,19272:32583029,37612730:5703063 -g1,19272:32583029,37612730 -) -] -) -g1,19274:32583029,37718976 -g1,19274:6630773,37718976 -g1,19274:6630773,37718976 -g1,19274:32583029,37718976 -g1,19274:32583029,37718976 -) -h1,19274:6630773,37915584:0,0,0 -(1,19278:6630773,38780664:25952256,513147,138281 -h1,19277:6630773,38780664:983040,0,0 -(1,19277:7613813,38780664:0,452978,122846 -r1,19295:11489197,38780664:3875384,575824,122846 -k1,19277:7613813,38780664:-3875384 -) -(1,19277:7613813,38780664:3875384,452978,122846 -k1,19277:7613813,38780664:3277 -h1,19277:11485920,38780664:0,411205,112570 -) -k1,19277:11625854,38780664:136657 -k1,19277:14384606,38780664:136657 -k1,19277:17695827,38780664:136657 -$1,19277:17695827,38780664 -$1,19277:18198488,38780664 -k1,19277:18335145,38780664:136657 -k1,19277:19663247,38780664:136657 -$1,19277:19663247,38780664 -$1,19277:20215060,38780664 -k1,19277:20525387,38780664:136657 -k1,19277:22055995,38780664:136657 -k1,19277:23002022,38780664:136657 -k1,19277:25908230,38780664:136657 -k1,19277:27236332,38780664:136657 -(1,19277:27236332,38780664:0,452978,115847 -r1,19295:29001445,38780664:1765113,568825,115847 -k1,19277:27236332,38780664:-1765113 -) -(1,19277:27236332,38780664:1765113,452978,115847 -k1,19277:27236332,38780664:3277 -h1,19277:28998168,38780664:0,411205,112570 -) -k1,19277:29138102,38780664:136657 -k1,19277:30466204,38780664:136657 -(1,19277:30466204,38780664:0,452978,122846 -r1,19295:32583029,38780664:2116825,575824,122846 -k1,19277:30466204,38780664:-2116825 -) -(1,19277:30466204,38780664:2116825,452978,122846 -k1,19277:30466204,38780664:3277 -h1,19277:32579752,38780664:0,411205,112570 -) -k1,19277:32583029,38780664:0 -) -(1,19278:6630773,39645744:25952256,513147,134348 -k1,19277:8284499,39645744:285989 -k1,19277:11166369,39645744:285989 -k1,19277:12736863,39645744:285988 -k1,19277:14738585,39645744:285989 -k1,19277:15790690,39645744:285989 -k1,19277:17417546,39645744:285989 -k1,19277:18362826,39645744:285988 -k1,19277:20376344,39645744:285989 -k1,19277:21931110,39645744:285989 -k1,19277:24048175,39645744:285989 -k1,19277:25353248,39645744:285988 -k1,19277:28163684,39645744:285989 -k1,19277:29970764,39645744:285989 -k1,19278:32583029,39645744:0 -) -(1,19278:6630773,40510824:25952256,505283,126483 -(1,19277:6630773,40510824:0,452978,115847 -r1,19295:9099310,40510824:2468537,568825,115847 -k1,19277:6630773,40510824:-2468537 -) -(1,19277:6630773,40510824:2468537,452978,115847 -k1,19277:6630773,40510824:3277 -h1,19277:9096033,40510824:0,411205,112570 -) -g1,19277:9298539,40510824 -g1,19277:10029265,40510824 -g1,19277:12813889,40510824 -g1,19277:13664546,40510824 -(1,19277:13664546,40510824:0,459977,115847 -r1,19295:15077947,40510824:1413401,575824,115847 -k1,19277:13664546,40510824:-1413401 -) -(1,19277:13664546,40510824:1413401,459977,115847 -k1,19277:13664546,40510824:3277 -h1,19277:15074670,40510824:0,411205,112570 -) -k1,19278:32583029,40510824:17452654 -g1,19278:32583029,40510824 -) -v1,19280:6630773,41195679:0,393216,0 -(1,19286:6630773,42912678:25952256,2110215,196608 -g1,19286:6630773,42912678 -g1,19286:6630773,42912678 -g1,19286:6434165,42912678 -(1,19286:6434165,42912678:0,2110215,196608 -r1,19295:32779637,42912678:26345472,2306823,196608 -k1,19286:6434165,42912678:-26345472 -) -(1,19286:6434165,42912678:26345472,2110215,196608 -[1,19286:6630773,42912678:25952256,1913607,0 -(1,19282:6630773,41430116:25952256,431045,112852 -(1,19281:6630773,41430116:0,0,0 -g1,19281:6630773,41430116 -g1,19281:6630773,41430116 -g1,19281:6303093,41430116 -(1,19281:6303093,41430116:0,0,0 -) -g1,19281:6630773,41430116 -) -k1,19282:6630773,41430116:0 -g1,19282:10614221,41430116 -g1,19282:11278129,41430116 -k1,19282:11278129,41430116:0 -h1,19282:14929622,41430116:0,0,0 -k1,19282:32583030,41430116:17653408 -g1,19282:32583030,41430116 -) -(1,19283:6630773,42114971:25952256,431045,112852 -h1,19283:6630773,42114971:0,0,0 -g1,19283:6962727,42114971 -g1,19283:7294681,42114971 -g1,19283:7626635,42114971 -g1,19283:7958589,42114971 -g1,19283:8290543,42114971 -g1,19283:8622497,42114971 -g1,19283:8954451,42114971 -g1,19283:11610083,42114971 -g1,19283:12273991,42114971 -g1,19283:14597669,42114971 -g1,19283:15593531,42114971 -g1,19283:17253301,42114971 -g1,19283:17917209,42114971 -g1,19283:21236748,42114971 -h1,19283:21568702,42114971:0,0,0 -k1,19283:32583029,42114971:11014327 -g1,19283:32583029,42114971 -) -(1,19284:6630773,42799826:25952256,424439,112852 -h1,19284:6630773,42799826:0,0,0 -g1,19284:6962727,42799826 -g1,19284:7294681,42799826 -k1,19284:7294681,42799826:0 -h1,19284:10946174,42799826:0,0,0 -k1,19284:32583030,42799826:21636856 -g1,19284:32583030,42799826 -) -] -) -g1,19286:32583029,42912678 -g1,19286:6630773,42912678 -g1,19286:6630773,42912678 -g1,19286:32583029,42912678 -g1,19286:32583029,42912678 -) -h1,19286:6630773,43109286:0,0,0 -] -(1,19295:32583029,45706769:0,0,0 -g1,19295:32583029,45706769 -) -) -] -(1,19295:6630773,47279633:25952256,0,0 -h1,19295:6630773,47279633:25952256,0,0 -) -] -(1,19295:4262630,4025873:0,0,0 -[1,19295:-473656,4025873:0,0,0 -(1,19295:-473656,-710413:0,0,0 -(1,19295:-473656,-710413:0,0,0 -g1,19295:-473656,-710413 -) -g1,19295:-473656,-710413 +g1,19293:6630773,4812305 +k1,19293:21386205,4812305:13560055 +g1,19293:21999622,4812305 +g1,19293:25611966,4812305 +g1,19293:28956923,4812305 +g1,19293:29772190,4812305 +) +) +] +[1,19293:6630773,45706769:25952256,40108032,0 +(1,19293:6630773,45706769:25952256,40108032,0 +(1,19293:6630773,45706769:0,0,0 +g1,19293:6630773,45706769 +) +[1,19293:6630773,45706769:25952256,40108032,0 +(1,19219:6630773,6254097:25952256,513147,134348 +h1,19218:6630773,6254097:983040,0,0 +k1,19218:9820212,6254097:414645 +(1,19218:9820212,6254097:0,452978,122846 +r1,19293:16157580,6254097:6337368,575824,122846 +k1,19218:9820212,6254097:-6337368 +) +(1,19218:9820212,6254097:6337368,452978,122846 +g1,19218:12988896,6254097 +g1,19218:13692320,6254097 +h1,19218:16154303,6254097:0,411205,112570 +) +k1,19218:16572225,6254097:414645 +k1,19218:17638298,6254097:414645 +k1,19218:20697976,6254097:414645 +k1,19218:22131706,6254097:414645 +k1,19218:24811931,6254097:414645 +(1,19218:24811931,6254097:0,452978,115847 +r1,19293:31149299,6254097:6337368,568825,115847 +k1,19218:24811931,6254097:-6337368 +) +(1,19218:24811931,6254097:6337368,452978,115847 +g1,19218:27980615,6254097 +g1,19218:28684039,6254097 +h1,19218:31146022,6254097:0,411205,112570 +) +k1,19218:31563944,6254097:414645 +k1,19218:32583029,6254097:0 +) +(1,19219:6630773,7119177:25952256,513147,126483 +g1,19218:9543193,7119177 +g1,19218:10690073,7119177 +g1,19218:12747903,7119177 +g1,19218:14138577,7119177 +g1,19218:16808513,7119177 +g1,19218:17999302,7119177 +g1,19218:20500811,7119177 +g1,19218:21999619,7119177 +g1,19218:22960376,7119177 +k1,19219:32583029,7119177:8149404 +g1,19219:32583029,7119177 +) +v1,19221:6630773,7804032:0,393216,0 +(1,19225:6630773,8144715:25952256,733899,196608 +g1,19225:6630773,8144715 +g1,19225:6630773,8144715 +g1,19225:6434165,8144715 +(1,19225:6434165,8144715:0,733899,196608 +r1,19293:32779637,8144715:26345472,930507,196608 +k1,19225:6434165,8144715:-26345472 +) +(1,19225:6434165,8144715:26345472,733899,196608 +[1,19225:6630773,8144715:25952256,537291,0 +(1,19223:6630773,8031863:25952256,424439,112852 +(1,19222:6630773,8031863:0,0,0 +g1,19222:6630773,8031863 +g1,19222:6630773,8031863 +g1,19222:6303093,8031863 +(1,19222:6303093,8031863:0,0,0 +) +g1,19222:6630773,8031863 +) +g1,19223:7626635,8031863 +g1,19223:8622497,8031863 +g1,19223:10946175,8031863 +g1,19223:11610083,8031863 +g1,19223:17585253,8031863 +g1,19223:18249161,8031863 +g1,19223:21236747,8031863 +g1,19223:21900655,8031863 +k1,19223:21900655,8031863:0 +h1,19223:27211919,8031863:0,0,0 +k1,19223:32583029,8031863:5371110 +g1,19223:32583029,8031863 +) +] +) +g1,19225:32583029,8144715 +g1,19225:6630773,8144715 +g1,19225:6630773,8144715 +g1,19225:32583029,8144715 +g1,19225:32583029,8144715 +) +h1,19225:6630773,8341323:0,0,0 +(1,19229:6630773,9206403:25952256,513147,134348 +h1,19228:6630773,9206403:983040,0,0 +g1,19228:9009729,9206403 +g1,19228:10381397,9206403 +g1,19228:12188224,9206403 +g1,19228:13687032,9206403 +g1,19228:14647789,9206403 +g1,19228:16146597,9206403 +g1,19228:17577903,9206403 +g1,19228:20055819,9206403 +h1,19228:21424866,9206403:0,0,0 +g1,19228:21624095,9206403 +g1,19228:22632694,9206403 +g1,19228:24330076,9206403 +h1,19228:25525453,9206403:0,0,0 +g1,19228:25724682,9206403 +g1,19228:26871562,9206403 +k1,19229:32583029,9206403:3334477 +g1,19229:32583029,9206403 +) +v1,19231:6630773,9891258:0,393216,0 +(1,19235:6630773,10208819:25952256,710777,196608 +g1,19235:6630773,10208819 +g1,19235:6630773,10208819 +g1,19235:6434165,10208819 +(1,19235:6434165,10208819:0,710777,196608 +r1,19293:32779637,10208819:26345472,907385,196608 +k1,19235:6434165,10208819:-26345472 +) +(1,19235:6434165,10208819:26345472,710777,196608 +[1,19235:6630773,10208819:25952256,514169,0 +(1,19233:6630773,10102573:25952256,407923,106246 +(1,19232:6630773,10102573:0,0,0 +g1,19232:6630773,10102573 +g1,19232:6630773,10102573 +g1,19232:6303093,10102573 +(1,19232:6303093,10102573:0,0,0 +) +g1,19232:6630773,10102573 +) +g1,19233:7626635,10102573 +g1,19233:8290543,10102573 +h1,19233:8954451,10102573:0,0,0 +k1,19233:32583029,10102573:23628578 +g1,19233:32583029,10102573 +) +] +) +g1,19235:32583029,10208819 +g1,19235:6630773,10208819 +g1,19235:6630773,10208819 +g1,19235:32583029,10208819 +g1,19235:32583029,10208819 +) +h1,19235:6630773,10405427:0,0,0 +(1,19238:6630773,20105758:25952256,9634795,0 +k1,19238:6760463,20105758:129690 +h1,19237:6760463,20105758:0,0,0 +(1,19237:6760463,20105758:25692876,9634795,0 +(1,19237:6760463,20105758:25692851,9634819,0 +(1,19237:6760463,20105758:25692851,9634819,0 +(1,19237:6760463,20105758:0,9634819,0 +(1,19237:6760463,20105758:0,14208860,0 +(1,19237:6760463,20105758:37890292,14208860,0 +) +k1,19237:6760463,20105758:-37890292 +) +) +g1,19237:32453314,20105758 +) +) +) +g1,19238:32453339,20105758 +k1,19238:32583029,20105758:129690 +) +v1,19247:6630773,20970838:0,393216,0 +(1,19248:6630773,23096321:25952256,2518699,0 +g1,19248:6630773,23096321 +g1,19248:6237557,23096321 +r1,19293:6368629,23096321:131072,2518699,0 +g1,19248:6567858,23096321 +g1,19248:6764466,23096321 +[1,19248:6764466,23096321:25818563,2518699,0 +(1,19248:6764466,21243315:25818563,665693,196608 +(1,19247:6764466,21243315:0,665693,196608 +r1,19293:7868133,21243315:1103667,862301,196608 +k1,19247:6764466,21243315:-1103667 +) +(1,19247:6764466,21243315:1103667,665693,196608 +) +k1,19247:8222660,21243315:354527 +k1,19247:9540589,21243315:327680 +k1,19247:12257688,21243315:354526 +k1,19247:13631300,21243315:354527 +k1,19247:17058155,21243315:354527 +k1,19247:18064109,21243315:354526 +(1,19247:18064109,21243315:0,452978,115847 +r1,19293:20884358,21243315:2820249,568825,115847 +k1,19247:18064109,21243315:-2820249 +) +(1,19247:18064109,21243315:2820249,452978,115847 +k1,19247:18064109,21243315:3277 +h1,19247:20881081,21243315:0,411205,112570 +) +k1,19247:21412555,21243315:354527 +k1,19247:22449967,21243315:354527 +k1,19247:23613863,21243315:354526 +k1,19247:24987475,21243315:354527 +k1,19247:27607582,21243315:354527 +k1,19247:28709874,21243315:354526 +k1,19247:31090119,21243315:354527 +k1,19247:32583029,21243315:0 +) +(1,19248:6764466,22108395:25818563,513147,134348 +k1,19247:8170486,22108395:235547 +k1,19247:12070806,22108395:235547 +k1,19247:13094752,22108395:235548 +k1,19247:15101082,22108395:235547 +k1,19247:16145999,22108395:235547 +k1,19247:17400631,22108395:235547 +k1,19247:19665173,22108395:235547 +k1,19247:21534533,22108395:235547 +k1,19247:22301578,22108395:235548 +k1,19247:23556210,22108395:235547 +k1,19247:26978117,22108395:235547 +k1,19247:29848867,22108395:235547 +k1,19248:32583029,22108395:0 +) +(1,19248:6764466,22973475:25818563,505283,122846 +(1,19247:6764466,22973475:0,452978,115847 +r1,19293:10288138,22973475:3523672,568825,115847 +k1,19247:6764466,22973475:-3523672 +) +(1,19247:6764466,22973475:3523672,452978,115847 +k1,19247:6764466,22973475:3277 +h1,19247:10284861,22973475:0,411205,112570 +) +g1,19247:10661037,22973475 +(1,19247:10661037,22973475:0,452978,122846 +r1,19293:13129574,22973475:2468537,575824,122846 +k1,19247:10661037,22973475:-2468537 +) +(1,19247:10661037,22973475:2468537,452978,122846 +k1,19247:10661037,22973475:3277 +h1,19247:13126297,22973475:0,411205,112570 +) +g1,19247:13502473,22973475 +(1,19247:13502473,22973475:0,452978,115847 +r1,19293:15971010,22973475:2468537,568825,115847 +k1,19247:13502473,22973475:-2468537 +) +(1,19247:13502473,22973475:2468537,452978,115847 +k1,19247:13502473,22973475:3277 +h1,19247:15967733,22973475:0,411205,112570 +) +g1,19247:16343909,22973475 +g1,19247:17734583,22973475 +(1,19247:17734583,22973475:0,459977,115847 +r1,19293:19851408,22973475:2116825,575824,115847 +k1,19247:17734583,22973475:-2116825 +) +(1,19247:17734583,22973475:2116825,459977,115847 +k1,19247:17734583,22973475:3277 +h1,19247:19848131,22973475:0,411205,112570 +) +k1,19248:32583029,22973475:12437364 +g1,19248:32583029,22973475 +) +] +g1,19248:32583029,23096321 +) +h1,19248:6630773,23096321:0,0,0 +v1,19251:6630773,23961401:0,393216,0 +(1,19252:6630773,26079885:25952256,2511700,0 +g1,19252:6630773,26079885 +g1,19252:6237557,26079885 +r1,19293:6368629,26079885:131072,2511700,0 +g1,19252:6567858,26079885 +g1,19252:6764466,26079885 +[1,19252:6764466,26079885:25818563,2511700,0 +(1,19252:6764466,24233878:25818563,665693,196608 +(1,19251:6764466,24233878:0,665693,196608 +r1,19293:7868133,24233878:1103667,862301,196608 +k1,19251:6764466,24233878:-1103667 +) +(1,19251:6764466,24233878:1103667,665693,196608 +) +k1,19251:8156944,24233878:288811 +k1,19251:9883162,24233878:327680 +k1,19251:11320820,24233878:288812 +k1,19251:14697687,24233878:288811 +k1,19251:15672660,24233878:288811 +k1,19251:19364101,24233878:288812 +k1,19251:20600563,24233878:288811 +k1,19251:23953838,24233878:288811 +k1,19251:24925534,24233878:288811 +k1,19251:26610918,24233878:288812 +k1,19251:29411069,24233878:288811 +(1,19251:29411069,24233878:0,414482,115847 +r1,19293:32583029,24233878:3171960,530329,115847 +k1,19251:29411069,24233878:-3171960 +) +(1,19251:29411069,24233878:3171960,414482,115847 +k1,19251:29411069,24233878:3277 +h1,19251:32579752,24233878:0,411205,112570 +) +k1,19251:32583029,24233878:0 +) +(1,19252:6764466,25098958:25818563,513147,134348 +k1,19251:7650695,25098958:234801 +k1,19251:9042205,25098958:234800 +k1,19251:9959891,25098958:234801 +k1,19251:11844889,25098958:234801 +k1,19251:12738981,25098958:234800 +k1,19251:13992867,25098958:234801 +k1,19251:17292132,25098958:234801 +k1,19251:20979370,25098958:234801 +k1,19251:21975698,25098958:234800 +(1,19251:21975698,25098958:0,452978,122846 +r1,19293:25499370,25098958:3523672,575824,122846 +k1,19251:21975698,25098958:-3523672 +) +(1,19251:21975698,25098958:3523672,452978,122846 +k1,19251:21975698,25098958:3277 +h1,19251:25496093,25098958:0,411205,112570 +) +k1,19251:25907841,25098958:234801 +k1,19251:27636208,25098958:234801 +k1,19251:28557170,25098958:234800 +(1,19251:28557170,25098958:0,452978,115847 +r1,19293:30673995,25098958:2116825,568825,115847 +k1,19251:28557170,25098958:-2116825 +) +(1,19251:28557170,25098958:2116825,452978,115847 +k1,19251:28557170,25098958:3277 +h1,19251:30670718,25098958:0,411205,112570 +) +k1,19251:31082466,25098958:234801 +(1,19251:31082466,25098958:0,459977,115847 +r1,19293:32495867,25098958:1413401,575824,115847 +k1,19251:31082466,25098958:-1413401 +) +(1,19251:31082466,25098958:1413401,459977,115847 +k1,19251:31082466,25098958:3277 +h1,19251:32492590,25098958:0,411205,112570 +) +k1,19252:32583029,25098958:0 +) +(1,19252:6764466,25964038:25818563,505283,115847 +(1,19251:6764466,25964038:0,452978,115847 +r1,19293:9584715,25964038:2820249,568825,115847 +k1,19251:6764466,25964038:-2820249 +) +(1,19251:6764466,25964038:2820249,452978,115847 +k1,19251:6764466,25964038:3277 +h1,19251:9581438,25964038:0,411205,112570 +) +g1,19251:9957614,25964038 +(1,19251:9957614,25964038:0,452978,115847 +r1,19293:11371015,25964038:1413401,568825,115847 +k1,19251:9957614,25964038:-1413401 +) +(1,19251:9957614,25964038:1413401,452978,115847 +k1,19251:9957614,25964038:3277 +h1,19251:11367738,25964038:0,411205,112570 +) +g1,19251:11743914,25964038 +(1,19251:11743914,25964038:0,452978,115847 +r1,19293:13509027,25964038:1765113,568825,115847 +k1,19251:11743914,25964038:-1765113 +) +(1,19251:11743914,25964038:1765113,452978,115847 +k1,19251:11743914,25964038:3277 +h1,19251:13505750,25964038:0,411205,112570 +) +g1,19251:13708256,25964038 +g1,19251:15098930,25964038 +(1,19251:15098930,25964038:0,452978,115847 +r1,19293:16864043,25964038:1765113,568825,115847 +k1,19251:15098930,25964038:-1765113 +) +(1,19251:15098930,25964038:1765113,452978,115847 +k1,19251:15098930,25964038:3277 +h1,19251:16860766,25964038:0,411205,112570 +) +k1,19252:32583029,25964038:15666558 +g1,19252:32583029,25964038 +) +] +g1,19252:32583029,26079885 +) +h1,19252:6630773,26079885:0,0,0 +(1,19257:6630773,28196703:25952256,555811,12975 +(1,19257:6630773,28196703:2450326,534184,12975 +g1,19257:6630773,28196703 +g1,19257:9081099,28196703 +) +k1,19257:32583030,28196703:21735736 +g1,19257:32583030,28196703 +) +(1,19261:6630773,29454999:25952256,513147,134348 +k1,19260:8086037,29454999:216634 +k1,19260:9940103,29454999:211078 +k1,19260:11342627,29454999:211079 +k1,19260:12975493,29454999:216633 +k1,19260:14955389,29454999:211079 +k1,19260:16158028,29454999:211079 +k1,19260:18346327,29454999:211078 +k1,19260:20255444,29454999:211079 +k1,19260:24538274,29454999:211078 +k1,19260:25740913,29454999:211079 +k1,19260:28735961,29454999:211079 +k1,19260:29756409,29454999:211078 +k1,19260:30323348,29454999:211079 +k1,19260:32583029,29454999:0 +) +(1,19261:6630773,30320079:25952256,513147,134348 +k1,19260:10549123,30320079:283068 +k1,19260:11733882,30320079:282984 +k1,19260:13475126,30320079:283068 +k1,19260:14954881,30320079:283068 +k1,19260:16522455,30320079:283068 +k1,19260:18083474,30320079:283067 +k1,19260:19314193,30320079:283068 +k1,19260:22432348,30320079:283068 +k1,19260:25756942,30320079:283068 +k1,19260:28926871,30320079:283068 +k1,19260:29825977,30320079:283068 +k1,19260:31896867,30320079:283068 +k1,19260:32583029,30320079:0 +) +(1,19261:6630773,31185159:25952256,513147,7863 +k1,19260:8163720,31185159:280554 +k1,19260:12762440,31185159:280553 +k1,19260:13702286,31185159:280554 +k1,19260:15775250,31185159:280554 +k1,19260:16715095,31185159:280553 +k1,19260:18168088,31185159:280554 +k1,19260:20974399,31185159:280553 +k1,19260:25398794,31185159:280554 +k1,19260:28125807,31185159:280554 +k1,19260:29603047,31185159:280553 +k1,19260:31914562,31185159:280554 +k1,19260:32583029,31185159:0 +) +(1,19261:6630773,32050239:25952256,513147,126483 +k1,19260:9792135,32050239:281055 +k1,19260:10732482,32050239:281055 +k1,19260:12032622,32050239:281055 +k1,19260:13654543,32050239:281054 +k1,19260:16449559,32050239:281055 +k1,19260:18553170,32050239:281055 +k1,19260:19853310,32050239:281055 +k1,19260:21814708,32050239:281055 +k1,19260:22755055,32050239:281055 +k1,19260:24055195,32050239:281055 +k1,19260:28581671,32050239:281054 +k1,19260:29350232,32050239:280973 +k1,19260:31189078,32050239:281055 +k1,19260:32583029,32050239:0 +) +(1,19261:6630773,32915319:25952256,505283,134348 +g1,19260:8971063,32915319 +g1,19260:9853177,32915319 +g1,19260:13687688,32915319 +g1,19260:15227784,32915319 +g1,19260:16531295,32915319 +g1,19260:17478290,32915319 +g1,19260:19642944,32915319 +g1,19260:21236124,32915319 +(1,19260:21236124,32915319:0,452978,122846 +r1,19293:25111508,32915319:3875384,575824,122846 +k1,19260:21236124,32915319:-3875384 +) +(1,19260:21236124,32915319:3875384,452978,122846 +k1,19260:21236124,32915319:3277 +h1,19260:25108231,32915319:0,411205,112570 +) +k1,19261:32583029,32915319:7419093 +g1,19261:32583029,32915319 +) +(1,19263:6630773,33780399:25952256,513147,134348 +h1,19262:6630773,33780399:983040,0,0 +k1,19262:9278974,33780399:193222 +k1,19262:11039817,33780399:193222 +k1,19262:12428416,33780399:193222 +k1,19262:15115938,33780399:193222 +k1,19262:17225433,33780399:193222 +k1,19262:18986275,33780399:193221 +k1,19262:20198582,33780399:193222 +$1,19262:20198582,33780399 +$1,19262:20643571,33780399 +k1,19262:20836793,33780399:193222 +k1,19262:24811442,33780399:193222 +k1,19262:26398615,33780399:193222 +k1,19262:29047471,33780399:193222 +k1,19262:29899985,33780399:193222 +k1,19262:32583029,33780399:0 +) +(1,19263:6630773,34645479:25952256,505283,126483 +(1,19262:7037098,34743793:311689,334430,0 +) +g1,19262:7530847,34645479 +g1,19262:8281104,34645479 +g1,19262:8978198,34645479 +(1,19262:9384523,34743793:311689,339935,0 +) +g1,19262:9878272,34645479 +g1,19262:10628529,34645479 +$1,19262:11425447,34645479 +g1,19262:11624676,34645479 +g1,19262:12815465,34645479 +g1,19262:14527920,34645479 +g1,19262:15343187,34645479 +g1,19262:16561501,34645479 +k1,19263:32583029,34645479:12977381 +g1,19263:32583029,34645479 +) +v1,19265:6630773,35330334:0,393216,0 +(1,19272:6630773,37718976:25952256,2781858,196608 +g1,19272:6630773,37718976 +g1,19272:6630773,37718976 +g1,19272:6434165,37718976 +(1,19272:6434165,37718976:0,2781858,196608 +r1,19293:32779637,37718976:26345472,2978466,196608 +k1,19272:6434165,37718976:-26345472 +) +(1,19272:6434165,37718976:26345472,2781858,196608 +[1,19272:6630773,37718976:25952256,2585250,0 +(1,19267:6630773,35558165:25952256,424439,79822 +(1,19266:6630773,35558165:0,0,0 +g1,19266:6630773,35558165 +g1,19266:6630773,35558165 +g1,19266:6303093,35558165 +(1,19266:6303093,35558165:0,0,0 +) +g1,19266:6630773,35558165 +) +k1,19267:6630773,35558165:0 +h1,19267:11278128,35558165:0,0,0 +k1,19267:32583028,35558165:21304900 +g1,19267:32583028,35558165 +) +(1,19268:6630773,36243020:25952256,431045,86428 +h1,19268:6630773,36243020:0,0,0 +g1,19268:10282266,36243020 +g1,19268:11278128,36243020 +g1,19268:17585253,36243020 +g1,19268:18249161,36243020 +g1,19268:20904793,36243020 +g1,19268:22232609,36243020 +g1,19268:22896517,36243020 +g1,19268:23892379,36243020 +g1,19268:25220195,36243020 +g1,19268:25884103,36243020 +k1,19268:25884103,36243020:0 +h1,19268:27211919,36243020:0,0,0 +k1,19268:32583029,36243020:5371110 +g1,19268:32583029,36243020 +) +(1,19269:6630773,36927875:25952256,424439,106246 +h1,19269:6630773,36927875:0,0,0 +g1,19269:6962727,36927875 +g1,19269:7294681,36927875 +g1,19269:7626635,36927875 +g1,19269:7958589,36927875 +g1,19269:8290543,36927875 +g1,19269:8622497,36927875 +g1,19269:8954451,36927875 +g1,19269:9286405,36927875 +g1,19269:9618359,36927875 +g1,19269:9950313,36927875 +g1,19269:10282267,36927875 +g1,19269:10614221,36927875 +g1,19269:10946175,36927875 +g1,19269:11278129,36927875 +g1,19269:11610083,36927875 +g1,19269:11942037,36927875 +g1,19269:12273991,36927875 +g1,19269:12605945,36927875 +g1,19269:12937899,36927875 +g1,19269:13269853,36927875 +g1,19269:13601807,36927875 +g1,19269:13933761,36927875 +g1,19269:14265715,36927875 +g1,19269:14597669,36927875 +g1,19269:14929623,36927875 +g1,19269:15593531,36927875 +g1,19269:16257439,36927875 +g1,19269:22564564,36927875 +k1,19269:22564564,36927875:0 +h1,19269:23892380,36927875:0,0,0 +k1,19269:32583029,36927875:8690649 +g1,19269:32583029,36927875 +) +(1,19270:6630773,37612730:25952256,424439,106246 +h1,19270:6630773,37612730:0,0,0 +g1,19270:6962727,37612730 +g1,19270:7294681,37612730 +g1,19270:7626635,37612730 +g1,19270:7958589,37612730 +g1,19270:8290543,37612730 +g1,19270:8622497,37612730 +g1,19270:8954451,37612730 +g1,19270:9286405,37612730 +g1,19270:9618359,37612730 +g1,19270:9950313,37612730 +g1,19270:10282267,37612730 +g1,19270:10614221,37612730 +g1,19270:10946175,37612730 +g1,19270:11278129,37612730 +g1,19270:11610083,37612730 +g1,19270:11942037,37612730 +g1,19270:12273991,37612730 +g1,19270:12605945,37612730 +g1,19270:12937899,37612730 +g1,19270:13269853,37612730 +g1,19270:13601807,37612730 +g1,19270:13933761,37612730 +g1,19270:14265715,37612730 +g1,19270:14597669,37612730 +g1,19270:14929623,37612730 +g1,19270:15593531,37612730 +g1,19270:16257439,37612730 +g1,19270:22232610,37612730 +g1,19270:24888242,37612730 +h1,19270:26879966,37612730:0,0,0 +k1,19270:32583029,37612730:5703063 +g1,19270:32583029,37612730 +) +] +) +g1,19272:32583029,37718976 +g1,19272:6630773,37718976 +g1,19272:6630773,37718976 +g1,19272:32583029,37718976 +g1,19272:32583029,37718976 +) +h1,19272:6630773,37915584:0,0,0 +(1,19276:6630773,38780664:25952256,513147,138281 +h1,19275:6630773,38780664:983040,0,0 +(1,19275:7613813,38780664:0,452978,122846 +r1,19293:11489197,38780664:3875384,575824,122846 +k1,19275:7613813,38780664:-3875384 +) +(1,19275:7613813,38780664:3875384,452978,122846 +k1,19275:7613813,38780664:3277 +h1,19275:11485920,38780664:0,411205,112570 +) +k1,19275:11625854,38780664:136657 +k1,19275:14384606,38780664:136657 +k1,19275:17695827,38780664:136657 +$1,19275:17695827,38780664 +$1,19275:18198488,38780664 +k1,19275:18335145,38780664:136657 +k1,19275:19663247,38780664:136657 +$1,19275:19663247,38780664 +$1,19275:20215060,38780664 +k1,19275:20525387,38780664:136657 +k1,19275:22055995,38780664:136657 +k1,19275:23002022,38780664:136657 +k1,19275:25908230,38780664:136657 +k1,19275:27236332,38780664:136657 +(1,19275:27236332,38780664:0,452978,115847 +r1,19293:29001445,38780664:1765113,568825,115847 +k1,19275:27236332,38780664:-1765113 +) +(1,19275:27236332,38780664:1765113,452978,115847 +k1,19275:27236332,38780664:3277 +h1,19275:28998168,38780664:0,411205,112570 +) +k1,19275:29138102,38780664:136657 +k1,19275:30466204,38780664:136657 +(1,19275:30466204,38780664:0,452978,122846 +r1,19293:32583029,38780664:2116825,575824,122846 +k1,19275:30466204,38780664:-2116825 +) +(1,19275:30466204,38780664:2116825,452978,122846 +k1,19275:30466204,38780664:3277 +h1,19275:32579752,38780664:0,411205,112570 +) +k1,19275:32583029,38780664:0 +) +(1,19276:6630773,39645744:25952256,513147,134348 +k1,19275:8284499,39645744:285989 +k1,19275:11166369,39645744:285989 +k1,19275:12736863,39645744:285988 +k1,19275:14738585,39645744:285989 +k1,19275:15790690,39645744:285989 +k1,19275:17417546,39645744:285989 +k1,19275:18362826,39645744:285988 +k1,19275:20376344,39645744:285989 +k1,19275:21931110,39645744:285989 +k1,19275:24048175,39645744:285989 +k1,19275:25353248,39645744:285988 +k1,19275:28163684,39645744:285989 +k1,19275:29970764,39645744:285989 +k1,19276:32583029,39645744:0 +) +(1,19276:6630773,40510824:25952256,505283,126483 +(1,19275:6630773,40510824:0,452978,115847 +r1,19293:9099310,40510824:2468537,568825,115847 +k1,19275:6630773,40510824:-2468537 +) +(1,19275:6630773,40510824:2468537,452978,115847 +k1,19275:6630773,40510824:3277 +h1,19275:9096033,40510824:0,411205,112570 +) +g1,19275:9298539,40510824 +g1,19275:10029265,40510824 +g1,19275:12813889,40510824 +g1,19275:13664546,40510824 +(1,19275:13664546,40510824:0,459977,115847 +r1,19293:15077947,40510824:1413401,575824,115847 +k1,19275:13664546,40510824:-1413401 +) +(1,19275:13664546,40510824:1413401,459977,115847 +k1,19275:13664546,40510824:3277 +h1,19275:15074670,40510824:0,411205,112570 +) +k1,19276:32583029,40510824:17452654 +g1,19276:32583029,40510824 +) +v1,19278:6630773,41195679:0,393216,0 +(1,19284:6630773,42912678:25952256,2110215,196608 +g1,19284:6630773,42912678 +g1,19284:6630773,42912678 +g1,19284:6434165,42912678 +(1,19284:6434165,42912678:0,2110215,196608 +r1,19293:32779637,42912678:26345472,2306823,196608 +k1,19284:6434165,42912678:-26345472 +) +(1,19284:6434165,42912678:26345472,2110215,196608 +[1,19284:6630773,42912678:25952256,1913607,0 +(1,19280:6630773,41430116:25952256,431045,112852 +(1,19279:6630773,41430116:0,0,0 +g1,19279:6630773,41430116 +g1,19279:6630773,41430116 +g1,19279:6303093,41430116 +(1,19279:6303093,41430116:0,0,0 +) +g1,19279:6630773,41430116 +) +k1,19280:6630773,41430116:0 +g1,19280:10614221,41430116 +g1,19280:11278129,41430116 +k1,19280:11278129,41430116:0 +h1,19280:14929622,41430116:0,0,0 +k1,19280:32583030,41430116:17653408 +g1,19280:32583030,41430116 +) +(1,19281:6630773,42114971:25952256,431045,112852 +h1,19281:6630773,42114971:0,0,0 +g1,19281:6962727,42114971 +g1,19281:7294681,42114971 +g1,19281:7626635,42114971 +g1,19281:7958589,42114971 +g1,19281:8290543,42114971 +g1,19281:8622497,42114971 +g1,19281:8954451,42114971 +g1,19281:11610083,42114971 +g1,19281:12273991,42114971 +g1,19281:14597669,42114971 +g1,19281:15593531,42114971 +g1,19281:17253301,42114971 +g1,19281:17917209,42114971 +g1,19281:21236748,42114971 +h1,19281:21568702,42114971:0,0,0 +k1,19281:32583029,42114971:11014327 +g1,19281:32583029,42114971 +) +(1,19282:6630773,42799826:25952256,424439,112852 +h1,19282:6630773,42799826:0,0,0 +g1,19282:6962727,42799826 +g1,19282:7294681,42799826 +k1,19282:7294681,42799826:0 +h1,19282:10946174,42799826:0,0,0 +k1,19282:32583030,42799826:21636856 +g1,19282:32583030,42799826 +) +] +) +g1,19284:32583029,42912678 +g1,19284:6630773,42912678 +g1,19284:6630773,42912678 +g1,19284:32583029,42912678 +g1,19284:32583029,42912678 +) +h1,19284:6630773,43109286:0,0,0 +] +(1,19293:32583029,45706769:0,0,0 +g1,19293:32583029,45706769 +) +) +] +(1,19293:6630773,47279633:25952256,0,0 +h1,19293:6630773,47279633:25952256,0,0 +) +] +(1,19293:4262630,4025873:0,0,0 +[1,19293:-473656,4025873:0,0,0 +(1,19293:-473656,-710413:0,0,0 +(1,19293:-473656,-710413:0,0,0 +g1,19293:-473656,-710413 +) +g1,19293:-473656,-710413 ) ] ) ] !26191 -}319 -Input:3361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}320 Input:3365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -335954,708 +336158,708 @@ Input:3375:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3376:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3377:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3378:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3379:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3380:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3381:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3382:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{320 -[1,19339:4262630,47279633:28320399,43253760,0 -(1,19339:4262630,4025873:0,0,0 -[1,19339:-473656,4025873:0,0,0 -(1,19339:-473656,-710413:0,0,0 -(1,19339:-473656,-644877:0,0,0 -k1,19339:-473656,-644877:-65536 +{321 +[1,19337:4262630,47279633:28320399,43253760,0 +(1,19337:4262630,4025873:0,0,0 +[1,19337:-473656,4025873:0,0,0 +(1,19337:-473656,-710413:0,0,0 +(1,19337:-473656,-644877:0,0,0 +k1,19337:-473656,-644877:-65536 ) -(1,19339:-473656,4736287:0,0,0 -k1,19339:-473656,4736287:5209943 +(1,19337:-473656,4736287:0,0,0 +k1,19337:-473656,4736287:5209943 ) -g1,19339:-473656,-710413 +g1,19337:-473656,-710413 ) ] ) -[1,19339:6630773,47279633:25952256,43253760,0 -[1,19339:6630773,4812305:25952256,786432,0 -(1,19339:6630773,4812305:25952256,485622,11795 -(1,19339:6630773,4812305:25952256,485622,11795 -g1,19339:3078558,4812305 -[1,19339:3078558,4812305:0,0,0 -(1,19339:3078558,2439708:0,1703936,0 -k1,19339:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19339:2537886,2439708:1179648,16384,0 +[1,19337:6630773,47279633:25952256,43253760,0 +[1,19337:6630773,4812305:25952256,786432,0 +(1,19337:6630773,4812305:25952256,485622,11795 +(1,19337:6630773,4812305:25952256,485622,11795 +g1,19337:3078558,4812305 +[1,19337:3078558,4812305:0,0,0 +(1,19337:3078558,2439708:0,1703936,0 +k1,19337:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19337:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19339:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19337:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19339:3078558,4812305:0,0,0 -(1,19339:3078558,2439708:0,1703936,0 -g1,19339:29030814,2439708 -g1,19339:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19339:36151628,1915420:16384,1179648,0 +[1,19337:3078558,4812305:0,0,0 +(1,19337:3078558,2439708:0,1703936,0 +g1,19337:29030814,2439708 +g1,19337:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19337:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19339:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19337:37855564,2439708:1179648,16384,0 ) ) -k1,19339:3078556,2439708:-34777008 +k1,19337:3078556,2439708:-34777008 ) ] -[1,19339:3078558,4812305:0,0,0 -(1,19339:3078558,49800853:0,16384,2228224 -k1,19339:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19339:2537886,49800853:1179648,16384,0 +[1,19337:3078558,4812305:0,0,0 +(1,19337:3078558,49800853:0,16384,2228224 +k1,19337:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19337:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19339:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19337:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19339:3078558,4812305:0,0,0 -(1,19339:3078558,49800853:0,16384,2228224 -g1,19339:29030814,49800853 -g1,19339:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19339:36151628,51504789:16384,1179648,0 +[1,19337:3078558,4812305:0,0,0 +(1,19337:3078558,49800853:0,16384,2228224 +g1,19337:29030814,49800853 +g1,19337:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19337:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19339:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19337:37855564,49800853:1179648,16384,0 ) ) -k1,19339:3078556,49800853:-34777008 +k1,19337:3078556,49800853:-34777008 ) ] -g1,19339:6630773,4812305 -g1,19339:6630773,4812305 -g1,19339:10347975,4812305 -k1,19339:31387651,4812305:21039676 +g1,19337:6630773,4812305 +g1,19337:6630773,4812305 +g1,19337:10347975,4812305 +k1,19337:31387651,4812305:21039676 ) ) ] -[1,19339:6630773,45706769:25952256,40108032,0 -(1,19339:6630773,45706769:25952256,40108032,0 -(1,19339:6630773,45706769:0,0,0 -g1,19339:6630773,45706769 +[1,19337:6630773,45706769:25952256,40108032,0 +(1,19337:6630773,45706769:25952256,40108032,0 +(1,19337:6630773,45706769:0,0,0 +g1,19337:6630773,45706769 ) -[1,19339:6630773,45706769:25952256,40108032,0 -(1,19289:6630773,14682403:25952256,9083666,0 -k1,19289:10523651,14682403:3892878 -h1,19288:10523651,14682403:0,0,0 -(1,19288:10523651,14682403:18166500,9083666,0 -(1,19288:10523651,14682403:18167376,9083688,0 -(1,19288:10523651,14682403:18167376,9083688,0 -(1,19288:10523651,14682403:0,9083688,0 -(1,19288:10523651,14682403:0,14208860,0 -(1,19288:10523651,14682403:28417720,14208860,0 +[1,19337:6630773,45706769:25952256,40108032,0 +(1,19287:6630773,14682403:25952256,9083666,0 +k1,19287:10523651,14682403:3892878 +h1,19286:10523651,14682403:0,0,0 +(1,19286:10523651,14682403:18166500,9083666,0 +(1,19286:10523651,14682403:18167376,9083688,0 +(1,19286:10523651,14682403:18167376,9083688,0 +(1,19286:10523651,14682403:0,9083688,0 +(1,19286:10523651,14682403:0,14208860,0 +(1,19286:10523651,14682403:28417720,14208860,0 ) -k1,19288:10523651,14682403:-28417720 +k1,19286:10523651,14682403:-28417720 ) -) -g1,19288:28691027,14682403 -) -) -) -g1,19289:28690151,14682403 -k1,19289:32583029,14682403:3892878 -) -(1,19296:6630773,15547483:25952256,505283,134348 -h1,19295:6630773,15547483:983040,0,0 -k1,19295:9960240,15547483:305636 -k1,19295:12447570,15547483:305636 -(1,19295:12447570,15547483:0,452978,122846 -r1,19339:18433226,15547483:5985656,575824,122846 -k1,19295:12447570,15547483:-5985656 -) -(1,19295:12447570,15547483:5985656,452978,122846 -g1,19295:14912830,15547483 -g1,19295:15616254,15547483 -h1,19295:18429949,15547483:0,411205,112570 -) -k1,19295:18738861,15547483:305635 -k1,19295:20235942,15547483:305636 -(1,19295:20235942,15547483:0,452978,115847 -r1,19339:24814750,15547483:4578808,568825,115847 -k1,19295:20235942,15547483:-4578808 -) -(1,19295:20235942,15547483:4578808,452978,115847 -g1,19295:23756337,15547483 -g1,19295:24459761,15547483 -h1,19295:24811473,15547483:0,411205,112570 -) -k1,19295:25120386,15547483:305636 -k1,19295:27472056,15547483:305636 -k1,19295:28796776,15547483:305635 -k1,19295:30112977,15547483:305636 -k1,19295:32583029,15547483:0 -) -(1,19296:6630773,16412563:25952256,505283,134348 -k1,19295:9093725,16412563:264219 -k1,19295:12033779,16412563:264219 -k1,19295:16145618,16412563:264220 -k1,19295:18106564,16412563:264219 -k1,19295:19869591,16412563:264219 -k1,19295:23093417,16412563:264220 -k1,19295:24040521,16412563:264219 -k1,19295:25371011,16412563:264219 -k1,19295:25991090,16412563:264219 -k1,19295:27265875,16412563:264220 -k1,19295:28807391,16412563:264219 -k1,19295:31773659,16412563:264219 -k1,19295:32583029,16412563:0 -) -(1,19296:6630773,17277643:25952256,513147,134348 -k1,19295:9432616,17277643:237419 -k1,19295:10689120,17277643:237419 -k1,19295:14119453,17277643:237419 -k1,19295:15697739,17277643:237419 -k1,19295:19568474,17277643:237419 -k1,19295:20457321,17277643:237419 -k1,19295:22705385,17277643:237419 -k1,19295:23602096,17277643:237419 -k1,19295:24195375,17277643:237419 -k1,19295:28092324,17277643:237419 -k1,19295:29012628,17277643:237419 -k1,19295:32583029,17277643:0 -) -(1,19296:6630773,18142723:25952256,513147,134348 -k1,19295:9487487,18142723:189399 -k1,19295:10718908,18142723:189399 -k1,19295:13743394,18142723:189399 -k1,19295:15630831,18142723:189399 -k1,19295:17354428,18142723:189399 -k1,19295:18203119,18142723:189399 -k1,19295:19733384,18142723:189398 -k1,19295:23556099,18142723:189399 -k1,19295:24396926,18142723:189399 -k1,19295:26400362,18142723:189399 -k1,19295:27781206,18142723:189399 -k1,19295:30683796,18142723:189399 -k1,19295:31524623,18142723:189399 -k1,19296:32583029,18142723:0 -) -(1,19296:6630773,19007803:25952256,513147,126483 -k1,19295:8424548,19007803:220256 -k1,19295:12293192,19007803:220255 -k1,19295:14556205,19007803:220256 -k1,19295:15787025,19007803:220255 -k1,19295:18477333,19007803:220256 -k1,19295:19689149,19007803:220256 -k1,19295:23348733,19007803:220255 -k1,19295:24196824,19007803:220256 -k1,19295:27222020,19007803:220255 -k1,19295:28058314,19007803:220256 -k1,19295:29297654,19007803:220255 -k1,19295:30884991,19007803:220256 -k1,19295:32583029,19007803:0 -) -(1,19296:6630773,19872883:25952256,513147,126483 -k1,19295:7920085,19872883:270227 -k1,19295:9531179,19872883:270227 -k1,19295:10792965,19872883:270226 -k1,19295:11833895,19872883:270227 -k1,19295:16793878,19872883:270227 -k1,19295:17715533,19872883:270227 -k1,19295:18341619,19872883:270226 -k1,19295:22182247,19872883:270227 -k1,19295:24787522,19872883:270227 -k1,19295:26203974,19872883:270227 -k1,19295:31147572,19872883:270226 -k1,19295:32227169,19872883:270227 -k1,19295:32583029,19872883:0 -) -(1,19296:6630773,20737963:25952256,505283,134348 -g1,19295:9104101,20737963 -g1,19295:11429318,20737963 -g1,19295:13086723,20737963 -g1,19295:13744049,20737963 -g1,19295:14474775,20737963 -g1,19295:16008972,20737963 -g1,19295:16859629,20737963 -g1,19295:19941787,20737963 -g1,19295:21151581,20737963 -k1,19296:32583029,20737963:8908968 -g1,19296:32583029,20737963 -) -v1,19298:6630773,21422818:0,393216,0 -(1,19304:6630773,23139817:25952256,2110215,196608 -g1,19304:6630773,23139817 -g1,19304:6630773,23139817 -g1,19304:6434165,23139817 -(1,19304:6434165,23139817:0,2110215,196608 -r1,19339:32779637,23139817:26345472,2306823,196608 -k1,19304:6434165,23139817:-26345472 -) -(1,19304:6434165,23139817:26345472,2110215,196608 -[1,19304:6630773,23139817:25952256,1913607,0 -(1,19300:6630773,21657255:25952256,431045,112852 -(1,19299:6630773,21657255:0,0,0 -g1,19299:6630773,21657255 -g1,19299:6630773,21657255 -g1,19299:6303093,21657255 -(1,19299:6303093,21657255:0,0,0 -) -g1,19299:6630773,21657255 -) -k1,19300:6630773,21657255:0 -g1,19300:10614221,21657255 -g1,19300:11278129,21657255 -k1,19300:11278129,21657255:0 -h1,19300:14929622,21657255:0,0,0 -k1,19300:32583030,21657255:17653408 -g1,19300:32583030,21657255 -) -(1,19301:6630773,22342110:25952256,431045,112852 -h1,19301:6630773,22342110:0,0,0 -g1,19301:6962727,22342110 -g1,19301:7294681,22342110 -g1,19301:7626635,22342110 -g1,19301:7958589,22342110 -g1,19301:8290543,22342110 -g1,19301:8622497,22342110 -g1,19301:8954451,22342110 -g1,19301:11610083,22342110 -g1,19301:12273991,22342110 -g1,19301:14597669,22342110 -g1,19301:15593531,22342110 -g1,19301:17253301,22342110 -g1,19301:17917209,22342110 -g1,19301:21236748,22342110 -h1,19301:21568702,22342110:0,0,0 -k1,19301:32583029,22342110:11014327 -g1,19301:32583029,22342110 -) -(1,19302:6630773,23026965:25952256,424439,112852 -h1,19302:6630773,23026965:0,0,0 -g1,19302:6962727,23026965 -g1,19302:7294681,23026965 -g1,19302:12937898,23026965 -g1,19302:13601806,23026965 -g1,19302:16921345,23026965 -g1,19302:20240884,23026965 -g1,19302:20904792,23026965 -h1,19302:21568700,23026965:0,0,0 -k1,19302:32583029,23026965:11014329 -g1,19302:32583029,23026965 -) -] -) -g1,19304:32583029,23139817 -g1,19304:6630773,23139817 -g1,19304:6630773,23139817 -g1,19304:32583029,23139817 -g1,19304:32583029,23139817 -) -h1,19304:6630773,23336425:0,0,0 -(1,19307:6630773,32485627:25952256,9083666,0 -k1,19307:10523651,32485627:3892878 -h1,19306:10523651,32485627:0,0,0 -(1,19306:10523651,32485627:18166500,9083666,0 -(1,19306:10523651,32485627:18167376,9083688,0 -(1,19306:10523651,32485627:18167376,9083688,0 -(1,19306:10523651,32485627:0,9083688,0 -(1,19306:10523651,32485627:0,14208860,0 -(1,19306:10523651,32485627:28417720,14208860,0 -) -k1,19306:10523651,32485627:-28417720 -) -) -g1,19306:28691027,32485627 -) -) -) -g1,19307:28690151,32485627 -k1,19307:32583029,32485627:3892878 -) -v1,19314:6630773,33350707:0,393216,0 -(1,19315:6630773,35479827:25952256,2522336,0 -g1,19315:6630773,35479827 -g1,19315:6237557,35479827 -r1,19339:6368629,35479827:131072,2522336,0 -g1,19315:6567858,35479827 -g1,19315:6764466,35479827 -[1,19315:6764466,35479827:25818563,2522336,0 -(1,19315:6764466,33623184:25818563,665693,196608 -(1,19314:6764466,33623184:0,665693,196608 -r1,19339:7868133,33623184:1103667,862301,196608 -k1,19314:6764466,33623184:-1103667 -) -(1,19314:6764466,33623184:1103667,665693,196608 -) -k1,19314:8122371,33623184:254238 -k1,19314:9848589,33623184:327680 -k1,19314:11400440,33623184:254238 -k1,19314:13048629,33623184:254238 -k1,19314:14321952,33623184:254238 -k1,19314:17978819,33623184:254238 -k1,19314:20438345,33623184:254239 -k1,19314:21344011,33623184:254238 -k1,19314:25209283,33623184:254238 -(1,19314:25209283,33623184:0,452978,115847 -r1,19339:27326108,33623184:2116825,568825,115847 -k1,19314:25209283,33623184:-2116825 -) -(1,19314:25209283,33623184:2116825,452978,115847 -k1,19314:25209283,33623184:3277 -h1,19314:27322831,33623184:0,411205,112570 -) -k1,19314:27580346,33623184:254238 -k1,19314:29026029,33623184:254238 -(1,19314:29026029,33623184:0,452978,115847 -r1,19339:30439430,33623184:1413401,568825,115847 -k1,19314:29026029,33623184:-1413401 -) -(1,19314:29026029,33623184:1413401,452978,115847 -k1,19314:29026029,33623184:3277 -h1,19314:30436153,33623184:0,411205,112570 -) -k1,19314:30693668,33623184:254238 -k1,19314:31563944,33623184:254238 -k1,19314:32583029,33623184:0 -) -(1,19315:6764466,34488264:25818563,513147,134348 -k1,19314:9646918,34488264:221035 -k1,19314:11896948,34488264:221035 -k1,19314:15839117,34488264:221035 -k1,19314:17608768,34488264:221035 -k1,19314:20435514,34488264:221035 -k1,19314:21315841,34488264:221035 -k1,19314:22555961,34488264:221035 -k1,19314:24166359,34488264:221035 -k1,19314:25378954,34488264:221035 -k1,19314:27201689,34488264:221035 -k1,19314:29519221,34488264:221035 -k1,19314:32583029,34488264:0 -) -(1,19315:6764466,35353344:25818563,513147,126483 -g1,19314:7579733,35353344 -g1,19314:9230584,35353344 -g1,19314:10089105,35353344 -g1,19314:11307419,35353344 -g1,19314:13114246,35353344 -g1,19314:14483948,35353344 -k1,19315:32583029,35353344:16117273 -g1,19315:32583029,35353344 -) -] -g1,19315:32583029,35479827 -) -h1,19315:6630773,35479827:0,0,0 -(1,19318:6630773,36344907:25952256,513147,126483 -h1,19317:6630773,36344907:983040,0,0 -k1,19317:11549905,36344907:243794 -k1,19317:12634526,36344907:243794 -k1,19317:14780830,36344907:243794 -k1,19317:16128905,36344907:243793 -k1,19317:17120465,36344907:243794 -k1,19317:18877485,36344907:243794 -k1,19317:19772707,36344907:243794 -k1,19317:22304363,36344907:243794 -k1,19317:23567242,36344907:243794 -k1,19317:27625230,36344907:243793 -k1,19317:29909815,36344907:243794 -k1,19317:31649796,36344907:243794 -k1,19317:32583029,36344907:0 -) -(1,19318:6630773,37209987:25952256,505283,134348 -k1,19317:7219854,37209987:233221 -k1,19317:8463639,37209987:233220 -k1,19317:9974157,37209987:233221 -k1,19317:12062047,37209987:233221 -k1,19317:13104638,37209987:233221 -k1,19317:13693718,37209987:233220 -k1,19317:15306472,37209987:233221 -k1,19317:18372814,37209987:233221 -k1,19317:19999986,37209987:233221 -k1,19317:22705224,37209987:233220 -k1,19317:24949090,37209987:233221 -k1,19317:25798349,37209987:233221 -k1,19317:27261681,37209987:233221 -k1,19317:28026398,37209987:233220 -k1,19317:32051532,37209987:233221 -k1,19317:32583029,37209987:0 -) -(1,19318:6630773,38075067:25952256,505283,126483 -g1,19317:8905527,38075067 -g1,19317:10589146,38075067 -g1,19317:11854646,38075067 -k1,19318:32583029,38075067:18393336 -g1,19318:32583029,38075067 -) -v1,19320:6630773,38759922:0,393216,0 -(1,19327:6630773,41161776:25952256,2795070,196608 -g1,19327:6630773,41161776 -g1,19327:6630773,41161776 -g1,19327:6434165,41161776 -(1,19327:6434165,41161776:0,2795070,196608 -r1,19339:32779637,41161776:26345472,2991678,196608 -k1,19327:6434165,41161776:-26345472 -) -(1,19327:6434165,41161776:26345472,2795070,196608 -[1,19327:6630773,41161776:25952256,2598462,0 -(1,19322:6630773,38994359:25952256,431045,112852 -(1,19321:6630773,38994359:0,0,0 -g1,19321:6630773,38994359 -g1,19321:6630773,38994359 -g1,19321:6303093,38994359 -(1,19321:6303093,38994359:0,0,0 -) -g1,19321:6630773,38994359 -) -k1,19322:6630773,38994359:0 -g1,19322:10614221,38994359 -g1,19322:11278129,38994359 -k1,19322:11278129,38994359:0 -h1,19322:14929622,38994359:0,0,0 -k1,19322:32583030,38994359:17653408 -g1,19322:32583030,38994359 -) -(1,19323:6630773,39679214:25952256,431045,112852 -h1,19323:6630773,39679214:0,0,0 -g1,19323:6962727,39679214 -g1,19323:7294681,39679214 -g1,19323:7626635,39679214 -g1,19323:7958589,39679214 -g1,19323:8290543,39679214 -g1,19323:8622497,39679214 -g1,19323:8954451,39679214 -g1,19323:11610083,39679214 -g1,19323:12273991,39679214 -g1,19323:14597669,39679214 -g1,19323:15593531,39679214 -g1,19323:17253301,39679214 -g1,19323:17917209,39679214 -g1,19323:21236748,39679214 -h1,19323:21568702,39679214:0,0,0 -k1,19323:32583029,39679214:11014327 -g1,19323:32583029,39679214 -) -(1,19324:6630773,40364069:25952256,424439,112852 -h1,19324:6630773,40364069:0,0,0 -g1,19324:6962727,40364069 -g1,19324:7294681,40364069 -g1,19324:12937898,40364069 -g1,19324:13601806,40364069 -g1,19324:16589392,40364069 -h1,19324:16921346,40364069:0,0,0 -k1,19324:32583029,40364069:15661683 -g1,19324:32583029,40364069 -) -(1,19325:6630773,41048924:25952256,431045,112852 -h1,19325:6630773,41048924:0,0,0 -g1,19325:6962727,41048924 -g1,19325:7294681,41048924 -g1,19325:15261575,41048924 -g1,19325:15925483,41048924 -g1,19325:19245022,41048924 -g1,19325:20904792,41048924 -g1,19325:21568700,41048924 -g1,19325:24888239,41048924 -g1,19325:27875824,41048924 -g1,19325:28539732,41048924 -h1,19325:30531456,41048924:0,0,0 -k1,19325:32583029,41048924:2051573 -g1,19325:32583029,41048924 -) -] -) -g1,19327:32583029,41161776 -g1,19327:6630773,41161776 -g1,19327:6630773,41161776 -g1,19327:32583029,41161776 -g1,19327:32583029,41161776 -) -h1,19327:6630773,41358384:0,0,0 -(1,19333:6630773,42223464:25952256,505283,134348 -h1,19330:6630773,42223464:983040,0,0 -k1,19330:8497518,42223464:255870 -k1,19330:11384659,42223464:255870 -k1,19330:12291956,42223464:255869 -(1,19330:12291956,42223464:0,452978,122846 -r1,19339:16167340,42223464:3875384,575824,122846 -k1,19330:12291956,42223464:-3875384 -) -(1,19330:12291956,42223464:3875384,452978,122846 -k1,19330:12291956,42223464:3277 -h1,19330:16164063,42223464:0,411205,112570 -) -k1,19330:16596880,42223464:255870 -(1,19330:16596880,42223464:0,452978,122846 -r1,19339:20472264,42223464:3875384,575824,122846 -k1,19330:16596880,42223464:-3875384 -) -(1,19330:16596880,42223464:3875384,452978,122846 -k1,19330:16596880,42223464:3277 -h1,19330:20468987,42223464:0,411205,112570 -) -k1,19330:20728134,42223464:255870 -k1,19330:22900277,42223464:255870 -k1,19330:26791429,42223464:255870 -k1,19330:28388165,42223464:255869 -k1,19330:30498704,42223464:255870 -k1,19330:31563944,42223464:255870 -k1,19330:32583029,42223464:0 -) -(1,19333:6630773,43088544:25952256,513147,126483 -k1,19330:9512708,43088544:267704 -k1,19330:10439704,43088544:267704 -k1,19330:11726492,43088544:267703 -k1,19330:14565173,43088544:267704 -k1,19330:17418272,43088544:267704 -k1,19330:18337404,43088544:267704 -k1,19330:21779671,43088544:267703 -(1,19330:21779671,43088544:0,452978,115847 -r1,19339:23193072,43088544:1413401,568825,115847 -k1,19330:21779671,43088544:-1413401 -) -(1,19330:21779671,43088544:1413401,452978,115847 -k1,19330:21779671,43088544:3277 -h1,19330:23189795,43088544:0,411205,112570 -) -k1,19330:23634446,43088544:267704 -(1,19330:23634446,43088544:0,414482,115847 -r1,19339:25047847,43088544:1413401,530329,115847 -k1,19330:23634446,43088544:-1413401 -) -(1,19330:23634446,43088544:1413401,414482,115847 -k1,19330:23634446,43088544:3277 -h1,19330:25044570,43088544:0,411205,112570 -) -k1,19330:25489221,43088544:267704 -(1,19330:25489221,43088544:0,452978,115847 -r1,19339:26902622,43088544:1413401,568825,115847 -k1,19330:25489221,43088544:-1413401 -) -(1,19330:25489221,43088544:1413401,452978,115847 -k1,19330:25489221,43088544:3277 -h1,19330:26899345,43088544:0,411205,112570 -) -k1,19330:27170326,43088544:267704 -k1,19330:28629474,43088544:267703 -(1,19330:28629474,43088544:0,414482,115847 -r1,19339:30042875,43088544:1413401,530329,115847 -k1,19330:28629474,43088544:-1413401 -) -(1,19330:28629474,43088544:1413401,414482,115847 -k1,19330:28629474,43088544:3277 -h1,19330:30039598,43088544:0,411205,112570 -) -k1,19330:30484249,43088544:267704 -k1,19330:31379788,43088544:267704 -k1,19330:32583029,43088544:0 -) -(1,19333:6630773,43953624:25952256,513147,134348 -k1,19330:8206346,43953624:208492 -k1,19330:9755704,43953624:208491 -k1,19330:11068478,43953624:208492 -k1,19330:12639464,43953624:208492 -k1,19330:13463993,43953624:208491 -k1,19330:14941262,43953624:208492 -k1,19330:16341199,43953624:208492 -k1,19330:17364958,43953624:208491 -k1,19330:18639721,43953624:208492 -k1,19330:20378479,43953624:208492 -k1,19330:21238398,43953624:208491 -k1,19330:22194656,43953624:208492 -k1,19330:26106587,43953624:208492 -k1,19330:27511765,43953624:208491 -k1,19330:29329166,43953624:208492 -k1,19330:32583029,43953624:0 -) -(1,19333:6630773,44818704:25952256,513147,134348 -k1,19330:7947017,44818704:211962 -k1,19330:8906745,44818704:211962 -k1,19330:10805604,44818704:211962 -k1,19330:11965217,44818704:211962 -k1,19330:15012266,44818704:211962 -k1,19330:15875656,44818704:211962 -k1,19330:18944989,44818704:211963 -k1,19330:19512811,44818704:211962 -k1,19330:23360055,44818704:211962 -k1,19330:25592492,44818704:211962 -k1,19330:26420492,44818704:211962 -k1,19330:26988314,44818704:211962 -k1,19330:28477573,44818704:211962 -k1,19330:29921612,44818704:211962 -k1,19330:32583029,44818704:0 -) -(1,19333:6630773,45683784:25952256,505283,134348 -g1,19330:7639372,45683784 -g1,19330:9336754,45683784 -h1,19330:10532131,45683784:0,0,0 -g1,19330:11112124,45683784 -g1,19331:11112124,45683784 -k1,19333:32583028,45683784:21470904 -g1,19333:32583028,45683784 -) -] -(1,19339:32583029,45706769:0,0,0 -g1,19339:32583029,45706769 -) -) -] -(1,19339:6630773,47279633:25952256,0,0 -h1,19339:6630773,47279633:25952256,0,0 -) -] -(1,19339:4262630,4025873:0,0,0 -[1,19339:-473656,4025873:0,0,0 -(1,19339:-473656,-710413:0,0,0 -(1,19339:-473656,-710413:0,0,0 -g1,19339:-473656,-710413 -) -g1,19339:-473656,-710413 +) +g1,19286:28691027,14682403 +) +) +) +g1,19287:28690151,14682403 +k1,19287:32583029,14682403:3892878 +) +(1,19294:6630773,15547483:25952256,505283,134348 +h1,19293:6630773,15547483:983040,0,0 +k1,19293:9960240,15547483:305636 +k1,19293:12447570,15547483:305636 +(1,19293:12447570,15547483:0,452978,122846 +r1,19337:18433226,15547483:5985656,575824,122846 +k1,19293:12447570,15547483:-5985656 +) +(1,19293:12447570,15547483:5985656,452978,122846 +g1,19293:14912830,15547483 +g1,19293:15616254,15547483 +h1,19293:18429949,15547483:0,411205,112570 +) +k1,19293:18738861,15547483:305635 +k1,19293:20235942,15547483:305636 +(1,19293:20235942,15547483:0,452978,115847 +r1,19337:24814750,15547483:4578808,568825,115847 +k1,19293:20235942,15547483:-4578808 +) +(1,19293:20235942,15547483:4578808,452978,115847 +g1,19293:23756337,15547483 +g1,19293:24459761,15547483 +h1,19293:24811473,15547483:0,411205,112570 +) +k1,19293:25120386,15547483:305636 +k1,19293:27472056,15547483:305636 +k1,19293:28796776,15547483:305635 +k1,19293:30112977,15547483:305636 +k1,19293:32583029,15547483:0 +) +(1,19294:6630773,16412563:25952256,505283,134348 +k1,19293:9093725,16412563:264219 +k1,19293:12033779,16412563:264219 +k1,19293:16145618,16412563:264220 +k1,19293:18106564,16412563:264219 +k1,19293:19869591,16412563:264219 +k1,19293:23093417,16412563:264220 +k1,19293:24040521,16412563:264219 +k1,19293:25371011,16412563:264219 +k1,19293:25991090,16412563:264219 +k1,19293:27265875,16412563:264220 +k1,19293:28807391,16412563:264219 +k1,19293:31773659,16412563:264219 +k1,19293:32583029,16412563:0 +) +(1,19294:6630773,17277643:25952256,513147,134348 +k1,19293:9432616,17277643:237419 +k1,19293:10689120,17277643:237419 +k1,19293:14119453,17277643:237419 +k1,19293:15697739,17277643:237419 +k1,19293:19568474,17277643:237419 +k1,19293:20457321,17277643:237419 +k1,19293:22705385,17277643:237419 +k1,19293:23602096,17277643:237419 +k1,19293:24195375,17277643:237419 +k1,19293:28092324,17277643:237419 +k1,19293:29012628,17277643:237419 +k1,19293:32583029,17277643:0 +) +(1,19294:6630773,18142723:25952256,513147,134348 +k1,19293:9487487,18142723:189399 +k1,19293:10718908,18142723:189399 +k1,19293:13743394,18142723:189399 +k1,19293:15630831,18142723:189399 +k1,19293:17354428,18142723:189399 +k1,19293:18203119,18142723:189399 +k1,19293:19733384,18142723:189398 +k1,19293:23556099,18142723:189399 +k1,19293:24396926,18142723:189399 +k1,19293:26400362,18142723:189399 +k1,19293:27781206,18142723:189399 +k1,19293:30683796,18142723:189399 +k1,19293:31524623,18142723:189399 +k1,19294:32583029,18142723:0 +) +(1,19294:6630773,19007803:25952256,513147,126483 +k1,19293:8424548,19007803:220256 +k1,19293:12293192,19007803:220255 +k1,19293:14556205,19007803:220256 +k1,19293:15787025,19007803:220255 +k1,19293:18477333,19007803:220256 +k1,19293:19689149,19007803:220256 +k1,19293:23348733,19007803:220255 +k1,19293:24196824,19007803:220256 +k1,19293:27222020,19007803:220255 +k1,19293:28058314,19007803:220256 +k1,19293:29297654,19007803:220255 +k1,19293:30884991,19007803:220256 +k1,19293:32583029,19007803:0 +) +(1,19294:6630773,19872883:25952256,513147,126483 +k1,19293:7920085,19872883:270227 +k1,19293:9531179,19872883:270227 +k1,19293:10792965,19872883:270226 +k1,19293:11833895,19872883:270227 +k1,19293:16793878,19872883:270227 +k1,19293:17715533,19872883:270227 +k1,19293:18341619,19872883:270226 +k1,19293:22182247,19872883:270227 +k1,19293:24787522,19872883:270227 +k1,19293:26203974,19872883:270227 +k1,19293:31147572,19872883:270226 +k1,19293:32227169,19872883:270227 +k1,19293:32583029,19872883:0 +) +(1,19294:6630773,20737963:25952256,505283,134348 +g1,19293:9104101,20737963 +g1,19293:11429318,20737963 +g1,19293:13086723,20737963 +g1,19293:13744049,20737963 +g1,19293:14474775,20737963 +g1,19293:16008972,20737963 +g1,19293:16859629,20737963 +g1,19293:19941787,20737963 +g1,19293:21151581,20737963 +k1,19294:32583029,20737963:8908968 +g1,19294:32583029,20737963 +) +v1,19296:6630773,21422818:0,393216,0 +(1,19302:6630773,23139817:25952256,2110215,196608 +g1,19302:6630773,23139817 +g1,19302:6630773,23139817 +g1,19302:6434165,23139817 +(1,19302:6434165,23139817:0,2110215,196608 +r1,19337:32779637,23139817:26345472,2306823,196608 +k1,19302:6434165,23139817:-26345472 +) +(1,19302:6434165,23139817:26345472,2110215,196608 +[1,19302:6630773,23139817:25952256,1913607,0 +(1,19298:6630773,21657255:25952256,431045,112852 +(1,19297:6630773,21657255:0,0,0 +g1,19297:6630773,21657255 +g1,19297:6630773,21657255 +g1,19297:6303093,21657255 +(1,19297:6303093,21657255:0,0,0 +) +g1,19297:6630773,21657255 +) +k1,19298:6630773,21657255:0 +g1,19298:10614221,21657255 +g1,19298:11278129,21657255 +k1,19298:11278129,21657255:0 +h1,19298:14929622,21657255:0,0,0 +k1,19298:32583030,21657255:17653408 +g1,19298:32583030,21657255 +) +(1,19299:6630773,22342110:25952256,431045,112852 +h1,19299:6630773,22342110:0,0,0 +g1,19299:6962727,22342110 +g1,19299:7294681,22342110 +g1,19299:7626635,22342110 +g1,19299:7958589,22342110 +g1,19299:8290543,22342110 +g1,19299:8622497,22342110 +g1,19299:8954451,22342110 +g1,19299:11610083,22342110 +g1,19299:12273991,22342110 +g1,19299:14597669,22342110 +g1,19299:15593531,22342110 +g1,19299:17253301,22342110 +g1,19299:17917209,22342110 +g1,19299:21236748,22342110 +h1,19299:21568702,22342110:0,0,0 +k1,19299:32583029,22342110:11014327 +g1,19299:32583029,22342110 +) +(1,19300:6630773,23026965:25952256,424439,112852 +h1,19300:6630773,23026965:0,0,0 +g1,19300:6962727,23026965 +g1,19300:7294681,23026965 +g1,19300:12937898,23026965 +g1,19300:13601806,23026965 +g1,19300:16921345,23026965 +g1,19300:20240884,23026965 +g1,19300:20904792,23026965 +h1,19300:21568700,23026965:0,0,0 +k1,19300:32583029,23026965:11014329 +g1,19300:32583029,23026965 +) +] +) +g1,19302:32583029,23139817 +g1,19302:6630773,23139817 +g1,19302:6630773,23139817 +g1,19302:32583029,23139817 +g1,19302:32583029,23139817 +) +h1,19302:6630773,23336425:0,0,0 +(1,19305:6630773,32485627:25952256,9083666,0 +k1,19305:10523651,32485627:3892878 +h1,19304:10523651,32485627:0,0,0 +(1,19304:10523651,32485627:18166500,9083666,0 +(1,19304:10523651,32485627:18167376,9083688,0 +(1,19304:10523651,32485627:18167376,9083688,0 +(1,19304:10523651,32485627:0,9083688,0 +(1,19304:10523651,32485627:0,14208860,0 +(1,19304:10523651,32485627:28417720,14208860,0 +) +k1,19304:10523651,32485627:-28417720 +) +) +g1,19304:28691027,32485627 +) +) +) +g1,19305:28690151,32485627 +k1,19305:32583029,32485627:3892878 +) +v1,19312:6630773,33350707:0,393216,0 +(1,19313:6630773,35479827:25952256,2522336,0 +g1,19313:6630773,35479827 +g1,19313:6237557,35479827 +r1,19337:6368629,35479827:131072,2522336,0 +g1,19313:6567858,35479827 +g1,19313:6764466,35479827 +[1,19313:6764466,35479827:25818563,2522336,0 +(1,19313:6764466,33623184:25818563,665693,196608 +(1,19312:6764466,33623184:0,665693,196608 +r1,19337:7868133,33623184:1103667,862301,196608 +k1,19312:6764466,33623184:-1103667 +) +(1,19312:6764466,33623184:1103667,665693,196608 +) +k1,19312:8122371,33623184:254238 +k1,19312:9848589,33623184:327680 +k1,19312:11400440,33623184:254238 +k1,19312:13048629,33623184:254238 +k1,19312:14321952,33623184:254238 +k1,19312:17978819,33623184:254238 +k1,19312:20438345,33623184:254239 +k1,19312:21344011,33623184:254238 +k1,19312:25209283,33623184:254238 +(1,19312:25209283,33623184:0,452978,115847 +r1,19337:27326108,33623184:2116825,568825,115847 +k1,19312:25209283,33623184:-2116825 +) +(1,19312:25209283,33623184:2116825,452978,115847 +k1,19312:25209283,33623184:3277 +h1,19312:27322831,33623184:0,411205,112570 +) +k1,19312:27580346,33623184:254238 +k1,19312:29026029,33623184:254238 +(1,19312:29026029,33623184:0,452978,115847 +r1,19337:30439430,33623184:1413401,568825,115847 +k1,19312:29026029,33623184:-1413401 +) +(1,19312:29026029,33623184:1413401,452978,115847 +k1,19312:29026029,33623184:3277 +h1,19312:30436153,33623184:0,411205,112570 +) +k1,19312:30693668,33623184:254238 +k1,19312:31563944,33623184:254238 +k1,19312:32583029,33623184:0 +) +(1,19313:6764466,34488264:25818563,513147,134348 +k1,19312:9646918,34488264:221035 +k1,19312:11896948,34488264:221035 +k1,19312:15839117,34488264:221035 +k1,19312:17608768,34488264:221035 +k1,19312:20435514,34488264:221035 +k1,19312:21315841,34488264:221035 +k1,19312:22555961,34488264:221035 +k1,19312:24166359,34488264:221035 +k1,19312:25378954,34488264:221035 +k1,19312:27201689,34488264:221035 +k1,19312:29519221,34488264:221035 +k1,19312:32583029,34488264:0 +) +(1,19313:6764466,35353344:25818563,513147,126483 +g1,19312:7579733,35353344 +g1,19312:9230584,35353344 +g1,19312:10089105,35353344 +g1,19312:11307419,35353344 +g1,19312:13114246,35353344 +g1,19312:14483948,35353344 +k1,19313:32583029,35353344:16117273 +g1,19313:32583029,35353344 +) +] +g1,19313:32583029,35479827 +) +h1,19313:6630773,35479827:0,0,0 +(1,19316:6630773,36344907:25952256,513147,126483 +h1,19315:6630773,36344907:983040,0,0 +k1,19315:11549905,36344907:243794 +k1,19315:12634526,36344907:243794 +k1,19315:14780830,36344907:243794 +k1,19315:16128905,36344907:243793 +k1,19315:17120465,36344907:243794 +k1,19315:18877485,36344907:243794 +k1,19315:19772707,36344907:243794 +k1,19315:22304363,36344907:243794 +k1,19315:23567242,36344907:243794 +k1,19315:27625230,36344907:243793 +k1,19315:29909815,36344907:243794 +k1,19315:31649796,36344907:243794 +k1,19315:32583029,36344907:0 +) +(1,19316:6630773,37209987:25952256,505283,134348 +k1,19315:7219854,37209987:233221 +k1,19315:8463639,37209987:233220 +k1,19315:9974157,37209987:233221 +k1,19315:12062047,37209987:233221 +k1,19315:13104638,37209987:233221 +k1,19315:13693718,37209987:233220 +k1,19315:15306472,37209987:233221 +k1,19315:18372814,37209987:233221 +k1,19315:19999986,37209987:233221 +k1,19315:22705224,37209987:233220 +k1,19315:24949090,37209987:233221 +k1,19315:25798349,37209987:233221 +k1,19315:27261681,37209987:233221 +k1,19315:28026398,37209987:233220 +k1,19315:32051532,37209987:233221 +k1,19315:32583029,37209987:0 +) +(1,19316:6630773,38075067:25952256,505283,126483 +g1,19315:8905527,38075067 +g1,19315:10589146,38075067 +g1,19315:11854646,38075067 +k1,19316:32583029,38075067:18393336 +g1,19316:32583029,38075067 +) +v1,19318:6630773,38759922:0,393216,0 +(1,19325:6630773,41161776:25952256,2795070,196608 +g1,19325:6630773,41161776 +g1,19325:6630773,41161776 +g1,19325:6434165,41161776 +(1,19325:6434165,41161776:0,2795070,196608 +r1,19337:32779637,41161776:26345472,2991678,196608 +k1,19325:6434165,41161776:-26345472 +) +(1,19325:6434165,41161776:26345472,2795070,196608 +[1,19325:6630773,41161776:25952256,2598462,0 +(1,19320:6630773,38994359:25952256,431045,112852 +(1,19319:6630773,38994359:0,0,0 +g1,19319:6630773,38994359 +g1,19319:6630773,38994359 +g1,19319:6303093,38994359 +(1,19319:6303093,38994359:0,0,0 +) +g1,19319:6630773,38994359 +) +k1,19320:6630773,38994359:0 +g1,19320:10614221,38994359 +g1,19320:11278129,38994359 +k1,19320:11278129,38994359:0 +h1,19320:14929622,38994359:0,0,0 +k1,19320:32583030,38994359:17653408 +g1,19320:32583030,38994359 +) +(1,19321:6630773,39679214:25952256,431045,112852 +h1,19321:6630773,39679214:0,0,0 +g1,19321:6962727,39679214 +g1,19321:7294681,39679214 +g1,19321:7626635,39679214 +g1,19321:7958589,39679214 +g1,19321:8290543,39679214 +g1,19321:8622497,39679214 +g1,19321:8954451,39679214 +g1,19321:11610083,39679214 +g1,19321:12273991,39679214 +g1,19321:14597669,39679214 +g1,19321:15593531,39679214 +g1,19321:17253301,39679214 +g1,19321:17917209,39679214 +g1,19321:21236748,39679214 +h1,19321:21568702,39679214:0,0,0 +k1,19321:32583029,39679214:11014327 +g1,19321:32583029,39679214 +) +(1,19322:6630773,40364069:25952256,424439,112852 +h1,19322:6630773,40364069:0,0,0 +g1,19322:6962727,40364069 +g1,19322:7294681,40364069 +g1,19322:12937898,40364069 +g1,19322:13601806,40364069 +g1,19322:16589392,40364069 +h1,19322:16921346,40364069:0,0,0 +k1,19322:32583029,40364069:15661683 +g1,19322:32583029,40364069 +) +(1,19323:6630773,41048924:25952256,431045,112852 +h1,19323:6630773,41048924:0,0,0 +g1,19323:6962727,41048924 +g1,19323:7294681,41048924 +g1,19323:15261575,41048924 +g1,19323:15925483,41048924 +g1,19323:19245022,41048924 +g1,19323:20904792,41048924 +g1,19323:21568700,41048924 +g1,19323:24888239,41048924 +g1,19323:27875824,41048924 +g1,19323:28539732,41048924 +h1,19323:30531456,41048924:0,0,0 +k1,19323:32583029,41048924:2051573 +g1,19323:32583029,41048924 +) +] +) +g1,19325:32583029,41161776 +g1,19325:6630773,41161776 +g1,19325:6630773,41161776 +g1,19325:32583029,41161776 +g1,19325:32583029,41161776 +) +h1,19325:6630773,41358384:0,0,0 +(1,19331:6630773,42223464:25952256,505283,134348 +h1,19328:6630773,42223464:983040,0,0 +k1,19328:8497518,42223464:255870 +k1,19328:11384659,42223464:255870 +k1,19328:12291956,42223464:255869 +(1,19328:12291956,42223464:0,452978,122846 +r1,19337:16167340,42223464:3875384,575824,122846 +k1,19328:12291956,42223464:-3875384 +) +(1,19328:12291956,42223464:3875384,452978,122846 +k1,19328:12291956,42223464:3277 +h1,19328:16164063,42223464:0,411205,112570 +) +k1,19328:16596880,42223464:255870 +(1,19328:16596880,42223464:0,452978,122846 +r1,19337:20472264,42223464:3875384,575824,122846 +k1,19328:16596880,42223464:-3875384 +) +(1,19328:16596880,42223464:3875384,452978,122846 +k1,19328:16596880,42223464:3277 +h1,19328:20468987,42223464:0,411205,112570 +) +k1,19328:20728134,42223464:255870 +k1,19328:22900277,42223464:255870 +k1,19328:26791429,42223464:255870 +k1,19328:28388165,42223464:255869 +k1,19328:30498704,42223464:255870 +k1,19328:31563944,42223464:255870 +k1,19328:32583029,42223464:0 +) +(1,19331:6630773,43088544:25952256,513147,126483 +k1,19328:9512708,43088544:267704 +k1,19328:10439704,43088544:267704 +k1,19328:11726492,43088544:267703 +k1,19328:14565173,43088544:267704 +k1,19328:17418272,43088544:267704 +k1,19328:18337404,43088544:267704 +k1,19328:21779671,43088544:267703 +(1,19328:21779671,43088544:0,452978,115847 +r1,19337:23193072,43088544:1413401,568825,115847 +k1,19328:21779671,43088544:-1413401 +) +(1,19328:21779671,43088544:1413401,452978,115847 +k1,19328:21779671,43088544:3277 +h1,19328:23189795,43088544:0,411205,112570 +) +k1,19328:23634446,43088544:267704 +(1,19328:23634446,43088544:0,414482,115847 +r1,19337:25047847,43088544:1413401,530329,115847 +k1,19328:23634446,43088544:-1413401 +) +(1,19328:23634446,43088544:1413401,414482,115847 +k1,19328:23634446,43088544:3277 +h1,19328:25044570,43088544:0,411205,112570 +) +k1,19328:25489221,43088544:267704 +(1,19328:25489221,43088544:0,452978,115847 +r1,19337:26902622,43088544:1413401,568825,115847 +k1,19328:25489221,43088544:-1413401 +) +(1,19328:25489221,43088544:1413401,452978,115847 +k1,19328:25489221,43088544:3277 +h1,19328:26899345,43088544:0,411205,112570 +) +k1,19328:27170326,43088544:267704 +k1,19328:28629474,43088544:267703 +(1,19328:28629474,43088544:0,414482,115847 +r1,19337:30042875,43088544:1413401,530329,115847 +k1,19328:28629474,43088544:-1413401 +) +(1,19328:28629474,43088544:1413401,414482,115847 +k1,19328:28629474,43088544:3277 +h1,19328:30039598,43088544:0,411205,112570 +) +k1,19328:30484249,43088544:267704 +k1,19328:31379788,43088544:267704 +k1,19328:32583029,43088544:0 +) +(1,19331:6630773,43953624:25952256,513147,134348 +k1,19328:8206346,43953624:208492 +k1,19328:9755704,43953624:208491 +k1,19328:11068478,43953624:208492 +k1,19328:12639464,43953624:208492 +k1,19328:13463993,43953624:208491 +k1,19328:14941262,43953624:208492 +k1,19328:16341199,43953624:208492 +k1,19328:17364958,43953624:208491 +k1,19328:18639721,43953624:208492 +k1,19328:20378479,43953624:208492 +k1,19328:21238398,43953624:208491 +k1,19328:22194656,43953624:208492 +k1,19328:26106587,43953624:208492 +k1,19328:27511765,43953624:208491 +k1,19328:29329166,43953624:208492 +k1,19328:32583029,43953624:0 +) +(1,19331:6630773,44818704:25952256,513147,134348 +k1,19328:7947017,44818704:211962 +k1,19328:8906745,44818704:211962 +k1,19328:10805604,44818704:211962 +k1,19328:11965217,44818704:211962 +k1,19328:15012266,44818704:211962 +k1,19328:15875656,44818704:211962 +k1,19328:18944989,44818704:211963 +k1,19328:19512811,44818704:211962 +k1,19328:23360055,44818704:211962 +k1,19328:25592492,44818704:211962 +k1,19328:26420492,44818704:211962 +k1,19328:26988314,44818704:211962 +k1,19328:28477573,44818704:211962 +k1,19328:29921612,44818704:211962 +k1,19328:32583029,44818704:0 +) +(1,19331:6630773,45683784:25952256,505283,134348 +g1,19328:7639372,45683784 +g1,19328:9336754,45683784 +h1,19328:10532131,45683784:0,0,0 +g1,19328:11112124,45683784 +g1,19329:11112124,45683784 +k1,19331:32583028,45683784:21470904 +g1,19331:32583028,45683784 +) +] +(1,19337:32583029,45706769:0,0,0 +g1,19337:32583029,45706769 +) +) +] +(1,19337:6630773,47279633:25952256,0,0 +h1,19337:6630773,47279633:25952256,0,0 +) +] +(1,19337:4262630,4025873:0,0,0 +[1,19337:-473656,4025873:0,0,0 +(1,19337:-473656,-710413:0,0,0 +(1,19337:-473656,-710413:0,0,0 +g1,19337:-473656,-710413 +) +g1,19337:-473656,-710413 ) ] ) ] !19961 -}320 -Input:3379:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3380:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3381:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3382:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}321 Input:3383:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3384:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3385:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -336665,799 +336869,799 @@ Input:3388:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3389:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3390:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3391:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3392:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{321 -[1,19384:4262630,47279633:28320399,43253760,0 -(1,19384:4262630,4025873:0,0,0 -[1,19384:-473656,4025873:0,0,0 -(1,19384:-473656,-710413:0,0,0 -(1,19384:-473656,-644877:0,0,0 -k1,19384:-473656,-644877:-65536 +{322 +[1,19382:4262630,47279633:28320399,43253760,0 +(1,19382:4262630,4025873:0,0,0 +[1,19382:-473656,4025873:0,0,0 +(1,19382:-473656,-710413:0,0,0 +(1,19382:-473656,-644877:0,0,0 +k1,19382:-473656,-644877:-65536 ) -(1,19384:-473656,4736287:0,0,0 -k1,19384:-473656,4736287:5209943 +(1,19382:-473656,4736287:0,0,0 +k1,19382:-473656,4736287:5209943 ) -g1,19384:-473656,-710413 +g1,19382:-473656,-710413 ) ] ) -[1,19384:6630773,47279633:25952256,43253760,0 -[1,19384:6630773,4812305:25952256,786432,0 -(1,19384:6630773,4812305:25952256,513147,126483 -(1,19384:6630773,4812305:25952256,513147,126483 -g1,19384:3078558,4812305 -[1,19384:3078558,4812305:0,0,0 -(1,19384:3078558,2439708:0,1703936,0 -k1,19384:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19384:2537886,2439708:1179648,16384,0 +[1,19382:6630773,47279633:25952256,43253760,0 +[1,19382:6630773,4812305:25952256,786432,0 +(1,19382:6630773,4812305:25952256,513147,126483 +(1,19382:6630773,4812305:25952256,513147,126483 +g1,19382:3078558,4812305 +[1,19382:3078558,4812305:0,0,0 +(1,19382:3078558,2439708:0,1703936,0 +k1,19382:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19382:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19384:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19382:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19384:3078558,4812305:0,0,0 -(1,19384:3078558,2439708:0,1703936,0 -g1,19384:29030814,2439708 -g1,19384:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19384:36151628,1915420:16384,1179648,0 +[1,19382:3078558,4812305:0,0,0 +(1,19382:3078558,2439708:0,1703936,0 +g1,19382:29030814,2439708 +g1,19382:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19382:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19384:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19382:37855564,2439708:1179648,16384,0 ) ) -k1,19384:3078556,2439708:-34777008 +k1,19382:3078556,2439708:-34777008 ) ] -[1,19384:3078558,4812305:0,0,0 -(1,19384:3078558,49800853:0,16384,2228224 -k1,19384:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19384:2537886,49800853:1179648,16384,0 +[1,19382:3078558,4812305:0,0,0 +(1,19382:3078558,49800853:0,16384,2228224 +k1,19382:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19382:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19384:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19382:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19384:3078558,4812305:0,0,0 -(1,19384:3078558,49800853:0,16384,2228224 -g1,19384:29030814,49800853 -g1,19384:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19384:36151628,51504789:16384,1179648,0 +[1,19382:3078558,4812305:0,0,0 +(1,19382:3078558,49800853:0,16384,2228224 +g1,19382:29030814,49800853 +g1,19382:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19382:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19384:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19382:37855564,49800853:1179648,16384,0 ) ) -k1,19384:3078556,49800853:-34777008 +k1,19382:3078556,49800853:-34777008 ) ] -g1,19384:6630773,4812305 -k1,19384:21386205,4812305:13560055 -g1,19384:21999622,4812305 -g1,19384:25611966,4812305 -g1,19384:28956923,4812305 -g1,19384:29772190,4812305 -) -) -] -[1,19384:6630773,45706769:25952256,40108032,0 -(1,19384:6630773,45706769:25952256,40108032,0 -(1,19384:6630773,45706769:0,0,0 -g1,19384:6630773,45706769 +g1,19382:6630773,4812305 +k1,19382:21386205,4812305:13560055 +g1,19382:21999622,4812305 +g1,19382:25611966,4812305 +g1,19382:28956923,4812305 +g1,19382:29772190,4812305 +) +) +] +[1,19382:6630773,45706769:25952256,40108032,0 +(1,19382:6630773,45706769:25952256,40108032,0 +(1,19382:6630773,45706769:0,0,0 +g1,19382:6630773,45706769 ) -[1,19384:6630773,45706769:25952256,40108032,0 -(1,19334:6630773,6254097:25952256,564462,139132 -(1,19334:6630773,6254097:2450326,534184,12975 -g1,19334:6630773,6254097 -g1,19334:9081099,6254097 +[1,19382:6630773,45706769:25952256,40108032,0 +(1,19332:6630773,6254097:25952256,564462,139132 +(1,19332:6630773,6254097:2450326,534184,12975 +g1,19332:6630773,6254097 +g1,19332:9081099,6254097 ) -g1,19334:11747694,6254097 -g1,19334:14946310,6254097 -k1,19334:32583029,6254097:16534469 -g1,19334:32583029,6254097 +g1,19332:11747694,6254097 +g1,19332:14946310,6254097 +k1,19332:32583029,6254097:16534469 +g1,19332:32583029,6254097 ) -(1,19339:6630773,7512393:25952256,505283,134348 -k1,19338:9769421,7512393:361888 -k1,19338:12465046,7512393:361888 -k1,19338:14369652,7512393:361888 -k1,19338:15414425,7512393:361888 -k1,19338:17229902,7512393:361888 -k1,19338:20448504,7512393:361888 -k1,19338:22204343,7512393:361888 -(1,19338:22204343,7512393:0,459977,122846 -r1,19384:25376303,7512393:3171960,582823,122846 -k1,19338:22204343,7512393:-3171960 -) -(1,19338:22204343,7512393:3171960,459977,122846 -k1,19338:22204343,7512393:3277 -h1,19338:25373026,7512393:0,411205,112570 -) -k1,19338:25911861,7512393:361888 -k1,19338:27465194,7512393:361888 -k1,19338:28615480,7512393:361888 -k1,19339:32583029,7512393:0 -) -(1,19339:6630773,8377473:25952256,513147,134348 -(1,19338:6630773,8377473:0,459977,122846 -r1,19384:11561293,8377473:4930520,582823,122846 -k1,19338:6630773,8377473:-4930520 -) -(1,19338:6630773,8377473:4930520,459977,122846 -k1,19338:6630773,8377473:3277 -h1,19338:11558016,8377473:0,411205,112570 -) -k1,19338:11927169,8377473:192206 -(1,19338:11927169,8377473:0,459977,122846 -r1,19384:17209400,8377473:5282231,582823,122846 -k1,19338:11927169,8377473:-5282231 -) -(1,19338:11927169,8377473:5282231,459977,122846 -k1,19338:11927169,8377473:3277 -h1,19338:17206123,8377473:0,411205,112570 -) -k1,19338:17575277,8377473:192207 -k1,19338:18958928,8377473:192206 -(1,19338:18958928,8377473:0,459977,115847 -r1,19384:22130888,8377473:3171960,575824,115847 -k1,19338:18958928,8377473:-3171960 -) -(1,19338:18958928,8377473:3171960,459977,115847 -k1,19338:18958928,8377473:3277 -h1,19338:22127611,8377473:0,411205,112570 -) -k1,19338:22496764,8377473:192206 -k1,19338:23708056,8377473:192207 -k1,19338:26424709,8377473:192206 -k1,19338:27276207,8377473:192206 -k1,19338:29337501,8377473:192207 -k1,19338:30919070,8377473:192206 -k1,19339:32583029,8377473:0 -) -(1,19339:6630773,9242553:25952256,513147,134348 -k1,19338:7984201,9242553:142978 -k1,19338:8778606,9242553:142977 -k1,19338:12426449,9242553:142978 -k1,19338:16376412,9242553:142977 -k1,19338:19095610,9242553:142978 -k1,19338:20874366,9242553:142977 -k1,19338:22398188,9242553:142978 -k1,19338:24587200,9242553:142978 -k1,19338:25188274,9242553:142977 -k1,19338:27961212,9242553:142978 -k1,19338:28755617,9242553:142977 -k1,19338:31193666,9242553:142978 -k1,19338:32583029,9242553:0 -) -(1,19339:6630773,10107633:25952256,513147,134348 -k1,19338:7647237,10107633:207094 -k1,19338:9754874,10107633:207093 -k1,19338:10909619,10107633:207094 -k1,19338:13951799,10107633:207093 -k1,19338:15894286,10107633:207094 -k1,19338:18863723,10107633:207094 -k1,19338:19911643,10107633:207093 -k1,19338:22129382,10107633:207094 -k1,19338:23284126,10107633:207093 -k1,19338:26253563,10107633:207094 -k1,19338:28985103,10107633:207093 -k1,19338:30388884,10107633:207094 -k1,19338:32583029,10107633:0 -) -(1,19339:6630773,10972713:25952256,513147,134348 -k1,19338:10222283,10972713:258349 -(1,19338:10222283,10972713:0,459977,115847 -r1,19384:13745955,10972713:3523672,575824,115847 -k1,19338:10222283,10972713:-3523672 -) -(1,19338:10222283,10972713:3523672,459977,115847 -k1,19338:10222283,10972713:3277 -h1,19338:13742678,10972713:0,411205,112570 -) -k1,19338:14004304,10972713:258349 -k1,19338:15366935,10972713:258349 -k1,19338:16373050,10972713:258349 -k1,19338:18144625,10972713:258349 -k1,19338:19054401,10972713:258348 -k1,19338:21133340,10972713:258349 -k1,19338:24154032,10972713:258349 -k1,19338:28021449,10972713:258349 -k1,19338:29227449,10972713:258349 -k1,19338:31386342,10972713:258349 -k1,19338:32583029,10972713:0 -) -(1,19339:6630773,11837793:25952256,505283,126483 -k1,19338:9596694,11837793:178675 -k1,19338:11288595,11837793:178675 -k1,19338:11998767,11837793:178675 -k1,19338:14045218,11837793:178675 -(1,19338:14045218,11837793:0,414482,122846 -r1,19384:16865467,11837793:2820249,537328,122846 -k1,19338:14045218,11837793:-2820249 -) -(1,19338:14045218,11837793:2820249,414482,122846 -k1,19338:14045218,11837793:3277 -h1,19338:16862190,11837793:0,411205,112570 -) -k1,19338:17044142,11837793:178675 -k1,19338:18414262,11837793:178675 -k1,19338:21286468,11837793:178676 -k1,19338:22116571,11837793:178675 -k1,19338:23061362,11837793:178675 -k1,19338:24259122,11837793:178675 -k1,19338:26139767,11837793:178675 -k1,19338:29493006,11837793:178675 -k1,19338:32583029,11837793:0 -) -(1,19339:6630773,12702873:25952256,513147,134348 -k1,19338:8911678,12702873:251910 -k1,19338:10182672,12702873:251909 -k1,19338:12445227,12702873:251910 -k1,19338:13348565,12702873:251910 -k1,19338:14348240,12702873:251909 -k1,19338:17185545,12702873:251910 -k1,19338:18429015,12702873:251910 -k1,19338:19340217,12702873:251910 -k1,19338:21147295,12702873:251909 -(1,19338:21147295,12702873:0,459977,115847 -r1,19384:22208984,12702873:1061689,575824,115847 -k1,19338:21147295,12702873:-1061689 -) -(1,19338:21147295,12702873:1061689,459977,115847 -k1,19338:21147295,12702873:3277 -h1,19338:22205707,12702873:0,411205,112570 -) -k1,19338:22460894,12702873:251910 -k1,19338:26074801,12702873:251910 -k1,19338:28350462,12702873:251909 -k1,19338:31193666,12702873:251910 -k1,19338:32583029,12702873:0 -) -(1,19339:6630773,13567953:25952256,513147,126483 -k1,19338:8224937,13567953:226427 -k1,19338:11122611,13567953:226427 -k1,19338:15450281,13567953:226427 -k1,19338:19876255,13567953:226427 -k1,19338:20761974,13567953:226427 -k1,19338:23113077,13567953:226426 -k1,19338:25945215,13567953:226427 -k1,19338:27561005,13567953:226427 -k1,19338:28318929,13567953:226427 -k1,19338:31839851,13567953:226427 -k1,19338:32583029,13567953:0 -) -(1,19339:6630773,14433033:25952256,513147,134348 -k1,19338:9431194,14433033:220269 -k1,19338:10766229,14433033:220269 -k1,19338:13342518,14433033:220270 -k1,19338:17070274,14433033:220269 -k1,19338:18394825,14433033:220269 -k1,19338:19362860,14433033:220269 -k1,19338:20675615,14433033:220270 -k1,19338:23576307,14433033:220269 -k1,19338:25190527,14433033:220269 -(1,19338:25190527,14433033:0,459977,115847 -r1,19384:32583029,14433033:7392502,575824,115847 -k1,19338:25190527,14433033:-7392502 -) -(1,19338:25190527,14433033:7392502,459977,115847 -k1,19338:25190527,14433033:3277 -h1,19338:32579752,14433033:0,411205,112570 -) -k1,19338:32583029,14433033:0 -) -(1,19339:6630773,15298113:25952256,513147,134348 -k1,19338:7523726,15298113:241525 -k1,19338:8962595,15298113:241526 -k1,19338:10906090,15298113:241525 -k1,19338:14097390,15298113:241525 -k1,19338:17208082,15298113:241526 -k1,19338:18101035,15298113:241525 -k1,19338:20243104,15298113:241525 -k1,19338:21865473,15298113:241525 -k1,19338:24417143,15298113:241526 -k1,19338:27150347,15298113:241525 -k1,19338:28410957,15298113:241525 -k1,19338:30478971,15298113:241526 -k1,19338:31379788,15298113:241525 -k1,19338:32583029,15298113:0 -) -(1,19339:6630773,16163193:25952256,505283,134348 -g1,19338:8585712,16163193 -g1,19338:9509769,16163193 -g1,19338:10064858,16163193 -g1,19338:12137106,16163193 -g1,19338:13527780,16163193 -g1,19338:15080983,16163193 -g1,19338:17404889,16163193 -g1,19338:20265535,16163193 -g1,19338:20996261,16163193 -g1,19338:23271015,16163193 -k1,19339:32583029,16163193:7391154 -g1,19339:32583029,16163193 -) -v1,19341:6630773,16848048:0,393216,0 -(1,19347:6630773,18565047:25952256,2110215,196608 -g1,19347:6630773,18565047 -g1,19347:6630773,18565047 -g1,19347:6434165,18565047 -(1,19347:6434165,18565047:0,2110215,196608 -r1,19384:32779637,18565047:26345472,2306823,196608 -k1,19347:6434165,18565047:-26345472 -) -(1,19347:6434165,18565047:26345472,2110215,196608 -[1,19347:6630773,18565047:25952256,1913607,0 -(1,19343:6630773,17082485:25952256,431045,112852 -(1,19342:6630773,17082485:0,0,0 -g1,19342:6630773,17082485 -g1,19342:6630773,17082485 -g1,19342:6303093,17082485 -(1,19342:6303093,17082485:0,0,0 -) -g1,19342:6630773,17082485 -) -g1,19343:7626635,17082485 -g1,19343:8622497,17082485 -g1,19343:21900655,17082485 -g1,19343:24556287,17082485 -g1,19343:25220195,17082485 -g1,19343:27543873,17082485 -g1,19343:29535597,17082485 -g1,19343:30199505,17082485 -h1,19343:31859275,17082485:0,0,0 -k1,19343:32583029,17082485:723754 -g1,19343:32583029,17082485 -) -(1,19344:6630773,17767340:25952256,424439,112852 -h1,19344:6630773,17767340:0,0,0 -g1,19344:10282267,17767340 -h1,19344:10614221,17767340:0,0,0 -k1,19344:32583029,17767340:21968808 -g1,19344:32583029,17767340 -) -(1,19345:6630773,18452195:25952256,431045,112852 -h1,19345:6630773,18452195:0,0,0 -g1,19345:6962727,18452195 -g1,19345:7294681,18452195 -g1,19345:12605945,18452195 -g1,19345:13269853,18452195 -g1,19345:16257439,18452195 -g1,19345:16921347,18452195 -g1,19345:19245025,18452195 -g1,19345:21568703,18452195 -g1,19345:22232611,18452195 -h1,19345:25220196,18452195:0,0,0 -k1,19345:32583029,18452195:7362833 -g1,19345:32583029,18452195 -) -] -) -g1,19347:32583029,18565047 -g1,19347:6630773,18565047 -g1,19347:6630773,18565047 -g1,19347:32583029,18565047 -g1,19347:32583029,18565047 -) -h1,19347:6630773,18761655:0,0,0 -(1,19350:6630773,27910857:25952256,9083666,0 -k1,19350:10523651,27910857:3892878 -h1,19349:10523651,27910857:0,0,0 -(1,19349:10523651,27910857:18166500,9083666,0 -(1,19349:10523651,27910857:18167376,9083688,0 -(1,19349:10523651,27910857:18167376,9083688,0 -(1,19349:10523651,27910857:0,9083688,0 -(1,19349:10523651,27910857:0,14208860,0 -(1,19349:10523651,27910857:28417720,14208860,0 -) -k1,19349:10523651,27910857:-28417720 -) -) -g1,19349:28691027,27910857 -) -) -) -g1,19350:28690151,27910857 -k1,19350:32583029,27910857:3892878 -) -(1,19358:6630773,30027675:25952256,534184,12975 -(1,19358:6630773,30027675:2450326,534184,12975 -g1,19358:6630773,30027675 -g1,19358:9081099,30027675 -) -k1,19358:32583028,30027675:21863332 -g1,19358:32583028,30027675 -) -(1,19363:6630773,31285971:25952256,505283,122846 -k1,19362:10477712,31285971:233939 -(1,19362:10477712,31285971:0,452978,122846 -r1,19384:14353096,31285971:3875384,575824,122846 -k1,19362:10477712,31285971:-3875384 -) -(1,19362:10477712,31285971:3875384,452978,122846 -k1,19362:10477712,31285971:3277 -h1,19362:14349819,31285971:0,411205,112570 -) -k1,19362:14587036,31285971:233940 -k1,19362:15503860,31285971:233939 -(1,19362:15503860,31285971:0,452978,122846 -r1,19384:19730956,31285971:4227096,575824,122846 -k1,19362:15503860,31285971:-4227096 -) -(1,19362:15503860,31285971:4227096,452978,122846 -k1,19362:15503860,31285971:3277 -h1,19362:19727679,31285971:0,411205,112570 -) -k1,19362:19964895,31285971:233939 -k1,19362:21190395,31285971:233940 -k1,19362:22937560,31285971:233939 -k1,19362:23822928,31285971:233940 -k1,19362:25254210,31285971:233939 -k1,19362:27690159,31285971:233939 -k1,19362:29313462,31285971:233940 -k1,19362:31391584,31285971:233939 -k1,19362:32583029,31285971:0 -) -(1,19363:6630773,32151051:25952256,505283,126483 -g1,19362:10620604,32151051 -g1,19362:11471261,32151051 -k1,19363:32583028,32151051:19451740 -g1,19363:32583028,32151051 -) -(1,19365:6630773,33016131:25952256,505283,126483 -h1,19364:6630773,33016131:983040,0,0 -k1,19364:8876408,33016131:220573 -(1,19364:8876408,33016131:0,452978,122846 -r1,19384:12751792,33016131:3875384,575824,122846 -k1,19364:8876408,33016131:-3875384 -) -(1,19364:8876408,33016131:3875384,452978,122846 -k1,19364:8876408,33016131:3277 -h1,19364:12748515,33016131:0,411205,112570 -) -k1,19364:12972365,33016131:220573 -k1,19364:14384383,33016131:220573 -(1,19364:14384383,33016131:0,452978,122846 -r1,19384:18611479,33016131:4227096,575824,122846 -k1,19364:14384383,33016131:-4227096 -) -(1,19364:14384383,33016131:4227096,452978,122846 -k1,19364:14384383,33016131:3277 -h1,19364:18608202,33016131:0,411205,112570 -) -k1,19364:19005722,33016131:220573 -k1,19364:20245380,33016131:220573 -k1,19364:23310217,33016131:220574 -(1,19364:23310217,33016131:0,452978,115847 -r1,19384:25075330,33016131:1765113,568825,115847 -k1,19364:23310217,33016131:-1765113 -) -(1,19364:23310217,33016131:1765113,452978,115847 -k1,19364:23310217,33016131:3277 -h1,19364:25072053,33016131:0,411205,112570 -) -k1,19364:25295903,33016131:220573 -k1,19364:28276852,33016131:220573 -k1,19364:29516510,33016131:220573 -k1,19364:30963262,33016131:220573 -k1,19364:31835263,33016131:220573 -k1,19364:32583029,33016131:0 -) -(1,19365:6630773,33881211:25952256,513147,126483 -k1,19364:9096571,33881211:163518 -k1,19364:10451535,33881211:163519 -k1,19364:13789617,33881211:163518 -(1,19364:13789617,33881211:0,414482,115847 -r1,19384:14147883,33881211:358266,530329,115847 -k1,19364:13789617,33881211:-358266 -) -(1,19364:13789617,33881211:358266,414482,115847 -k1,19364:13789617,33881211:3277 -h1,19364:14144606,33881211:0,411205,112570 -) -k1,19364:14311401,33881211:163518 -k1,19364:15666365,33881211:163519 -(1,19364:15666365,33881211:0,414482,115847 -r1,19384:16024631,33881211:358266,530329,115847 -k1,19364:15666365,33881211:-358266 -) -(1,19364:15666365,33881211:358266,414482,115847 -k1,19364:15666365,33881211:3277 -h1,19364:16021354,33881211:0,411205,112570 -) -k1,19364:16361819,33881211:163518 -k1,19364:17544422,33881211:163518 -k1,19364:20264500,33881211:163519 -k1,19364:21087310,33881211:163518 -k1,19364:22269913,33881211:163518 -k1,19364:24451286,33881211:163519 -k1,19364:25811491,33881211:163518 -k1,19364:27243787,33881211:163519 -k1,19364:28066597,33881211:163518 -k1,19364:29249200,33881211:163518 -k1,19364:30638898,33881211:163519 -k1,19364:31333913,33881211:163518 -k1,19365:32583029,33881211:0 -) -(1,19365:6630773,34746291:25952256,513147,126483 -k1,19364:8907679,34746291:158782 -k1,19364:9827988,34746291:158781 -k1,19364:11005855,34746291:158782 -(1,19364:11005855,34746291:0,452978,115847 -r1,19384:12419256,34746291:1413401,568825,115847 -k1,19364:11005855,34746291:-1413401 -) -(1,19364:11005855,34746291:1413401,452978,115847 -k1,19364:11005855,34746291:3277 -h1,19364:12415979,34746291:0,411205,112570 -) -k1,19364:12578038,34746291:158782 -k1,19364:16085054,34746291:158782 -k1,19364:17933353,34746291:158781 -k1,19364:19111220,34746291:158782 -k1,19364:20601038,34746291:158782 -k1,19364:21291316,34746291:158781 -k1,19364:24038770,34746291:158782 -k1,19364:24959080,34746291:158782 -k1,19364:26136947,34746291:158782 -(1,19364:26136947,34746291:0,459977,115847 -r1,19384:28253772,34746291:2116825,575824,115847 -k1,19364:26136947,34746291:-2116825 -) -(1,19364:26136947,34746291:2116825,459977,115847 -k1,19364:26136947,34746291:3277 -h1,19364:28250495,34746291:0,411205,112570 -) -k1,19364:28412553,34746291:158781 -k1,19364:29762780,34746291:158782 -(1,19364:29762780,34746291:0,459977,115847 -r1,19384:32583029,34746291:2820249,575824,115847 -k1,19364:29762780,34746291:-2820249 -) -(1,19364:29762780,34746291:2820249,459977,115847 -k1,19364:29762780,34746291:3277 -h1,19364:32579752,34746291:0,411205,112570 -) -k1,19364:32583029,34746291:0 -) -(1,19365:6630773,35611371:25952256,513147,134348 -k1,19364:10171375,35611371:192368 -k1,19364:12404534,35611371:192368 -k1,19364:13615986,35611371:192367 -k1,19364:17181492,35611371:192368 -k1,19364:19639440,35611371:192368 -k1,19364:22969672,35611371:192368 -k1,19364:24109691,35611371:192368 -(1,19364:24109691,35611371:0,452978,115847 -r1,19384:26226516,35611371:2116825,568825,115847 -k1,19364:24109691,35611371:-2116825 -) -(1,19364:24109691,35611371:2116825,452978,115847 -k1,19364:24109691,35611371:3277 -h1,19364:26223239,35611371:0,411205,112570 -) -k1,19364:26418883,35611371:192367 -k1,19364:27802696,35611371:192368 -(1,19364:27802696,35611371:0,452978,115847 -r1,19384:29216097,35611371:1413401,568825,115847 -k1,19364:27802696,35611371:-1413401 -) -(1,19364:27802696,35611371:1413401,452978,115847 -k1,19364:27802696,35611371:3277 -h1,19364:29212820,35611371:0,411205,112570 -) -k1,19364:29408465,35611371:192368 -k1,19364:32583029,35611371:0 -) -(1,19365:6630773,36476451:25952256,505283,122846 -g1,19364:7821562,36476451 -g1,19364:11501408,36476451 -g1,19364:13710626,36476451 -(1,19364:13710626,36476451:0,452978,122846 -r1,19384:17586010,36476451:3875384,575824,122846 -k1,19364:13710626,36476451:-3875384 -) -(1,19364:13710626,36476451:3875384,452978,122846 -k1,19364:13710626,36476451:3277 -h1,19364:17582733,36476451:0,411205,112570 -) -k1,19365:32583029,36476451:14944591 -g1,19365:32583029,36476451 -) -v1,19367:6630773,37161306:0,393216,0 -(1,19375:6630773,40241409:25952256,3473319,196608 -g1,19375:6630773,40241409 -g1,19375:6630773,40241409 -g1,19375:6434165,40241409 -(1,19375:6434165,40241409:0,3473319,196608 -r1,19384:32779637,40241409:26345472,3669927,196608 -k1,19375:6434165,40241409:-26345472 -) -(1,19375:6434165,40241409:26345472,3473319,196608 -[1,19375:6630773,40241409:25952256,3276711,0 -(1,19369:6630773,37389137:25952256,424439,112852 -(1,19368:6630773,37389137:0,0,0 -g1,19368:6630773,37389137 -g1,19368:6630773,37389137 -g1,19368:6303093,37389137 -(1,19368:6303093,37389137:0,0,0 -) -g1,19368:6630773,37389137 -) -k1,19369:6630773,37389137:0 -g1,19369:10614221,37389137 -g1,19369:11278129,37389137 -k1,19369:11278129,37389137:0 -h1,19369:13601807,37389137:0,0,0 -k1,19369:32583029,37389137:18981222 -g1,19369:32583029,37389137 -) -(1,19370:6630773,38073992:25952256,424439,112852 -h1,19370:6630773,38073992:0,0,0 -g1,19370:6962727,38073992 -g1,19370:7294681,38073992 -g1,19370:7626635,38073992 -g1,19370:7958589,38073992 -g1,19370:8290543,38073992 -g1,19370:8622497,38073992 -g1,19370:8954451,38073992 -g1,19370:9286405,38073992 -g1,19370:9618359,38073992 -g1,19370:12273991,38073992 -g1,19370:12937899,38073992 -g1,19370:14929623,38073992 -g1,19370:15593531,38073992 -g1,19370:17585255,38073992 -g1,19370:18249163,38073992 -g1,19370:18913071,38073992 -k1,19370:18913071,38073992:0 -h1,19370:20240887,38073992:0,0,0 -k1,19370:32583029,38073992:12342142 -g1,19370:32583029,38073992 -) -(1,19371:6630773,38758847:25952256,431045,106246 -h1,19371:6630773,38758847:0,0,0 -g1,19371:6962727,38758847 -g1,19371:7294681,38758847 -g1,19371:7626635,38758847 -g1,19371:7958589,38758847 -g1,19371:8290543,38758847 -g1,19371:8622497,38758847 -g1,19371:8954451,38758847 -g1,19371:9286405,38758847 -g1,19371:9618359,38758847 -g1,19371:9950313,38758847 -g1,19371:10282267,38758847 -g1,19371:10614221,38758847 -g1,19371:10946175,38758847 -g1,19371:11278129,38758847 -g1,19371:11610083,38758847 -g1,19371:11942037,38758847 -g1,19371:12273991,38758847 -g1,19371:12605945,38758847 -g1,19371:12937899,38758847 -g1,19371:13269853,38758847 -g1,19371:13601807,38758847 -g1,19371:13933761,38758847 -g1,19371:14265715,38758847 -g1,19371:16589393,38758847 -g1,19371:17253301,38758847 -g1,19371:21568703,38758847 -g1,19371:23228473,38758847 -g1,19371:23892381,38758847 -g1,19371:25220197,38758847 -g1,19371:27211921,38758847 -g1,19371:27875829,38758847 -g1,19371:29867553,38758847 -h1,19371:30199507,38758847:0,0,0 -k1,19371:32583029,38758847:2383522 -g1,19371:32583029,38758847 -) -(1,19372:6630773,39443702:25952256,424439,112852 -h1,19372:6630773,39443702:0,0,0 -g1,19372:6962727,39443702 -g1,19372:7294681,39443702 -g1,19372:12937898,39443702 -g1,19372:13601806,39443702 -g1,19372:15261576,39443702 -h1,19372:15593530,39443702:0,0,0 -k1,19372:32583030,39443702:16989500 -g1,19372:32583030,39443702 -) -(1,19373:6630773,40128557:25952256,424439,112852 -h1,19373:6630773,40128557:0,0,0 -g1,19373:6962727,40128557 -g1,19373:7294681,40128557 -g1,19373:12937898,40128557 -g1,19373:13601806,40128557 -g1,19373:17585253,40128557 -g1,19373:19245023,40128557 -g1,19373:19908931,40128557 -h1,19373:20572839,40128557:0,0,0 -k1,19373:32583029,40128557:12010190 -g1,19373:32583029,40128557 -) -] -) -g1,19375:32583029,40241409 -g1,19375:6630773,40241409 -g1,19375:6630773,40241409 -g1,19375:32583029,40241409 -g1,19375:32583029,40241409 -) -h1,19375:6630773,40438017:0,0,0 -] -(1,19384:32583029,45706769:0,0,0 -g1,19384:32583029,45706769 -) -) -] -(1,19384:6630773,47279633:25952256,0,0 -h1,19384:6630773,47279633:25952256,0,0 -) -] -(1,19384:4262630,4025873:0,0,0 -[1,19384:-473656,4025873:0,0,0 -(1,19384:-473656,-710413:0,0,0 -(1,19384:-473656,-710413:0,0,0 -g1,19384:-473656,-710413 -) -g1,19384:-473656,-710413 +(1,19337:6630773,7512393:25952256,505283,134348 +k1,19336:9769421,7512393:361888 +k1,19336:12465046,7512393:361888 +k1,19336:14369652,7512393:361888 +k1,19336:15414425,7512393:361888 +k1,19336:17229902,7512393:361888 +k1,19336:20448504,7512393:361888 +k1,19336:22204343,7512393:361888 +(1,19336:22204343,7512393:0,459977,122846 +r1,19382:25376303,7512393:3171960,582823,122846 +k1,19336:22204343,7512393:-3171960 +) +(1,19336:22204343,7512393:3171960,459977,122846 +k1,19336:22204343,7512393:3277 +h1,19336:25373026,7512393:0,411205,112570 +) +k1,19336:25911861,7512393:361888 +k1,19336:27465194,7512393:361888 +k1,19336:28615480,7512393:361888 +k1,19337:32583029,7512393:0 +) +(1,19337:6630773,8377473:25952256,513147,134348 +(1,19336:6630773,8377473:0,459977,122846 +r1,19382:11561293,8377473:4930520,582823,122846 +k1,19336:6630773,8377473:-4930520 +) +(1,19336:6630773,8377473:4930520,459977,122846 +k1,19336:6630773,8377473:3277 +h1,19336:11558016,8377473:0,411205,112570 +) +k1,19336:11927169,8377473:192206 +(1,19336:11927169,8377473:0,459977,122846 +r1,19382:17209400,8377473:5282231,582823,122846 +k1,19336:11927169,8377473:-5282231 +) +(1,19336:11927169,8377473:5282231,459977,122846 +k1,19336:11927169,8377473:3277 +h1,19336:17206123,8377473:0,411205,112570 +) +k1,19336:17575277,8377473:192207 +k1,19336:18958928,8377473:192206 +(1,19336:18958928,8377473:0,459977,115847 +r1,19382:22130888,8377473:3171960,575824,115847 +k1,19336:18958928,8377473:-3171960 +) +(1,19336:18958928,8377473:3171960,459977,115847 +k1,19336:18958928,8377473:3277 +h1,19336:22127611,8377473:0,411205,112570 +) +k1,19336:22496764,8377473:192206 +k1,19336:23708056,8377473:192207 +k1,19336:26424709,8377473:192206 +k1,19336:27276207,8377473:192206 +k1,19336:29337501,8377473:192207 +k1,19336:30919070,8377473:192206 +k1,19337:32583029,8377473:0 +) +(1,19337:6630773,9242553:25952256,513147,134348 +k1,19336:7984201,9242553:142978 +k1,19336:8778606,9242553:142977 +k1,19336:12426449,9242553:142978 +k1,19336:16376412,9242553:142977 +k1,19336:19095610,9242553:142978 +k1,19336:20874366,9242553:142977 +k1,19336:22398188,9242553:142978 +k1,19336:24587200,9242553:142978 +k1,19336:25188274,9242553:142977 +k1,19336:27961212,9242553:142978 +k1,19336:28755617,9242553:142977 +k1,19336:31193666,9242553:142978 +k1,19336:32583029,9242553:0 +) +(1,19337:6630773,10107633:25952256,513147,134348 +k1,19336:7647237,10107633:207094 +k1,19336:9754874,10107633:207093 +k1,19336:10909619,10107633:207094 +k1,19336:13951799,10107633:207093 +k1,19336:15894286,10107633:207094 +k1,19336:18863723,10107633:207094 +k1,19336:19911643,10107633:207093 +k1,19336:22129382,10107633:207094 +k1,19336:23284126,10107633:207093 +k1,19336:26253563,10107633:207094 +k1,19336:28985103,10107633:207093 +k1,19336:30388884,10107633:207094 +k1,19336:32583029,10107633:0 +) +(1,19337:6630773,10972713:25952256,513147,134348 +k1,19336:10222283,10972713:258349 +(1,19336:10222283,10972713:0,459977,115847 +r1,19382:13745955,10972713:3523672,575824,115847 +k1,19336:10222283,10972713:-3523672 +) +(1,19336:10222283,10972713:3523672,459977,115847 +k1,19336:10222283,10972713:3277 +h1,19336:13742678,10972713:0,411205,112570 +) +k1,19336:14004304,10972713:258349 +k1,19336:15366935,10972713:258349 +k1,19336:16373050,10972713:258349 +k1,19336:18144625,10972713:258349 +k1,19336:19054401,10972713:258348 +k1,19336:21133340,10972713:258349 +k1,19336:24154032,10972713:258349 +k1,19336:28021449,10972713:258349 +k1,19336:29227449,10972713:258349 +k1,19336:31386342,10972713:258349 +k1,19336:32583029,10972713:0 +) +(1,19337:6630773,11837793:25952256,505283,126483 +k1,19336:9596694,11837793:178675 +k1,19336:11288595,11837793:178675 +k1,19336:11998767,11837793:178675 +k1,19336:14045218,11837793:178675 +(1,19336:14045218,11837793:0,414482,122846 +r1,19382:16865467,11837793:2820249,537328,122846 +k1,19336:14045218,11837793:-2820249 +) +(1,19336:14045218,11837793:2820249,414482,122846 +k1,19336:14045218,11837793:3277 +h1,19336:16862190,11837793:0,411205,112570 +) +k1,19336:17044142,11837793:178675 +k1,19336:18414262,11837793:178675 +k1,19336:21286468,11837793:178676 +k1,19336:22116571,11837793:178675 +k1,19336:23061362,11837793:178675 +k1,19336:24259122,11837793:178675 +k1,19336:26139767,11837793:178675 +k1,19336:29493006,11837793:178675 +k1,19336:32583029,11837793:0 +) +(1,19337:6630773,12702873:25952256,513147,134348 +k1,19336:8911678,12702873:251910 +k1,19336:10182672,12702873:251909 +k1,19336:12445227,12702873:251910 +k1,19336:13348565,12702873:251910 +k1,19336:14348240,12702873:251909 +k1,19336:17185545,12702873:251910 +k1,19336:18429015,12702873:251910 +k1,19336:19340217,12702873:251910 +k1,19336:21147295,12702873:251909 +(1,19336:21147295,12702873:0,459977,115847 +r1,19382:22208984,12702873:1061689,575824,115847 +k1,19336:21147295,12702873:-1061689 +) +(1,19336:21147295,12702873:1061689,459977,115847 +k1,19336:21147295,12702873:3277 +h1,19336:22205707,12702873:0,411205,112570 +) +k1,19336:22460894,12702873:251910 +k1,19336:26074801,12702873:251910 +k1,19336:28350462,12702873:251909 +k1,19336:31193666,12702873:251910 +k1,19336:32583029,12702873:0 +) +(1,19337:6630773,13567953:25952256,513147,126483 +k1,19336:8224937,13567953:226427 +k1,19336:11122611,13567953:226427 +k1,19336:15450281,13567953:226427 +k1,19336:19876255,13567953:226427 +k1,19336:20761974,13567953:226427 +k1,19336:23113077,13567953:226426 +k1,19336:25945215,13567953:226427 +k1,19336:27561005,13567953:226427 +k1,19336:28318929,13567953:226427 +k1,19336:31839851,13567953:226427 +k1,19336:32583029,13567953:0 +) +(1,19337:6630773,14433033:25952256,513147,134348 +k1,19336:9431194,14433033:220269 +k1,19336:10766229,14433033:220269 +k1,19336:13342518,14433033:220270 +k1,19336:17070274,14433033:220269 +k1,19336:18394825,14433033:220269 +k1,19336:19362860,14433033:220269 +k1,19336:20675615,14433033:220270 +k1,19336:23576307,14433033:220269 +k1,19336:25190527,14433033:220269 +(1,19336:25190527,14433033:0,459977,115847 +r1,19382:32583029,14433033:7392502,575824,115847 +k1,19336:25190527,14433033:-7392502 +) +(1,19336:25190527,14433033:7392502,459977,115847 +k1,19336:25190527,14433033:3277 +h1,19336:32579752,14433033:0,411205,112570 +) +k1,19336:32583029,14433033:0 +) +(1,19337:6630773,15298113:25952256,513147,134348 +k1,19336:7523726,15298113:241525 +k1,19336:8962595,15298113:241526 +k1,19336:10906090,15298113:241525 +k1,19336:14097390,15298113:241525 +k1,19336:17208082,15298113:241526 +k1,19336:18101035,15298113:241525 +k1,19336:20243104,15298113:241525 +k1,19336:21865473,15298113:241525 +k1,19336:24417143,15298113:241526 +k1,19336:27150347,15298113:241525 +k1,19336:28410957,15298113:241525 +k1,19336:30478971,15298113:241526 +k1,19336:31379788,15298113:241525 +k1,19336:32583029,15298113:0 +) +(1,19337:6630773,16163193:25952256,505283,134348 +g1,19336:8585712,16163193 +g1,19336:9509769,16163193 +g1,19336:10064858,16163193 +g1,19336:12137106,16163193 +g1,19336:13527780,16163193 +g1,19336:15080983,16163193 +g1,19336:17404889,16163193 +g1,19336:20265535,16163193 +g1,19336:20996261,16163193 +g1,19336:23271015,16163193 +k1,19337:32583029,16163193:7391154 +g1,19337:32583029,16163193 +) +v1,19339:6630773,16848048:0,393216,0 +(1,19345:6630773,18565047:25952256,2110215,196608 +g1,19345:6630773,18565047 +g1,19345:6630773,18565047 +g1,19345:6434165,18565047 +(1,19345:6434165,18565047:0,2110215,196608 +r1,19382:32779637,18565047:26345472,2306823,196608 +k1,19345:6434165,18565047:-26345472 +) +(1,19345:6434165,18565047:26345472,2110215,196608 +[1,19345:6630773,18565047:25952256,1913607,0 +(1,19341:6630773,17082485:25952256,431045,112852 +(1,19340:6630773,17082485:0,0,0 +g1,19340:6630773,17082485 +g1,19340:6630773,17082485 +g1,19340:6303093,17082485 +(1,19340:6303093,17082485:0,0,0 +) +g1,19340:6630773,17082485 +) +g1,19341:7626635,17082485 +g1,19341:8622497,17082485 +g1,19341:21900655,17082485 +g1,19341:24556287,17082485 +g1,19341:25220195,17082485 +g1,19341:27543873,17082485 +g1,19341:29535597,17082485 +g1,19341:30199505,17082485 +h1,19341:31859275,17082485:0,0,0 +k1,19341:32583029,17082485:723754 +g1,19341:32583029,17082485 +) +(1,19342:6630773,17767340:25952256,424439,112852 +h1,19342:6630773,17767340:0,0,0 +g1,19342:10282267,17767340 +h1,19342:10614221,17767340:0,0,0 +k1,19342:32583029,17767340:21968808 +g1,19342:32583029,17767340 +) +(1,19343:6630773,18452195:25952256,431045,112852 +h1,19343:6630773,18452195:0,0,0 +g1,19343:6962727,18452195 +g1,19343:7294681,18452195 +g1,19343:12605945,18452195 +g1,19343:13269853,18452195 +g1,19343:16257439,18452195 +g1,19343:16921347,18452195 +g1,19343:19245025,18452195 +g1,19343:21568703,18452195 +g1,19343:22232611,18452195 +h1,19343:25220196,18452195:0,0,0 +k1,19343:32583029,18452195:7362833 +g1,19343:32583029,18452195 +) +] +) +g1,19345:32583029,18565047 +g1,19345:6630773,18565047 +g1,19345:6630773,18565047 +g1,19345:32583029,18565047 +g1,19345:32583029,18565047 +) +h1,19345:6630773,18761655:0,0,0 +(1,19348:6630773,27910857:25952256,9083666,0 +k1,19348:10523651,27910857:3892878 +h1,19347:10523651,27910857:0,0,0 +(1,19347:10523651,27910857:18166500,9083666,0 +(1,19347:10523651,27910857:18167376,9083688,0 +(1,19347:10523651,27910857:18167376,9083688,0 +(1,19347:10523651,27910857:0,9083688,0 +(1,19347:10523651,27910857:0,14208860,0 +(1,19347:10523651,27910857:28417720,14208860,0 +) +k1,19347:10523651,27910857:-28417720 +) +) +g1,19347:28691027,27910857 +) +) +) +g1,19348:28690151,27910857 +k1,19348:32583029,27910857:3892878 +) +(1,19356:6630773,30027675:25952256,534184,12975 +(1,19356:6630773,30027675:2450326,534184,12975 +g1,19356:6630773,30027675 +g1,19356:9081099,30027675 +) +k1,19356:32583028,30027675:21863332 +g1,19356:32583028,30027675 +) +(1,19361:6630773,31285971:25952256,505283,122846 +k1,19360:10477712,31285971:233939 +(1,19360:10477712,31285971:0,452978,122846 +r1,19382:14353096,31285971:3875384,575824,122846 +k1,19360:10477712,31285971:-3875384 +) +(1,19360:10477712,31285971:3875384,452978,122846 +k1,19360:10477712,31285971:3277 +h1,19360:14349819,31285971:0,411205,112570 +) +k1,19360:14587036,31285971:233940 +k1,19360:15503860,31285971:233939 +(1,19360:15503860,31285971:0,452978,122846 +r1,19382:19730956,31285971:4227096,575824,122846 +k1,19360:15503860,31285971:-4227096 +) +(1,19360:15503860,31285971:4227096,452978,122846 +k1,19360:15503860,31285971:3277 +h1,19360:19727679,31285971:0,411205,112570 +) +k1,19360:19964895,31285971:233939 +k1,19360:21190395,31285971:233940 +k1,19360:22937560,31285971:233939 +k1,19360:23822928,31285971:233940 +k1,19360:25254210,31285971:233939 +k1,19360:27690159,31285971:233939 +k1,19360:29313462,31285971:233940 +k1,19360:31391584,31285971:233939 +k1,19360:32583029,31285971:0 +) +(1,19361:6630773,32151051:25952256,505283,126483 +g1,19360:10620604,32151051 +g1,19360:11471261,32151051 +k1,19361:32583028,32151051:19451740 +g1,19361:32583028,32151051 +) +(1,19363:6630773,33016131:25952256,505283,126483 +h1,19362:6630773,33016131:983040,0,0 +k1,19362:8876408,33016131:220573 +(1,19362:8876408,33016131:0,452978,122846 +r1,19382:12751792,33016131:3875384,575824,122846 +k1,19362:8876408,33016131:-3875384 +) +(1,19362:8876408,33016131:3875384,452978,122846 +k1,19362:8876408,33016131:3277 +h1,19362:12748515,33016131:0,411205,112570 +) +k1,19362:12972365,33016131:220573 +k1,19362:14384383,33016131:220573 +(1,19362:14384383,33016131:0,452978,122846 +r1,19382:18611479,33016131:4227096,575824,122846 +k1,19362:14384383,33016131:-4227096 +) +(1,19362:14384383,33016131:4227096,452978,122846 +k1,19362:14384383,33016131:3277 +h1,19362:18608202,33016131:0,411205,112570 +) +k1,19362:19005722,33016131:220573 +k1,19362:20245380,33016131:220573 +k1,19362:23310217,33016131:220574 +(1,19362:23310217,33016131:0,452978,115847 +r1,19382:25075330,33016131:1765113,568825,115847 +k1,19362:23310217,33016131:-1765113 +) +(1,19362:23310217,33016131:1765113,452978,115847 +k1,19362:23310217,33016131:3277 +h1,19362:25072053,33016131:0,411205,112570 +) +k1,19362:25295903,33016131:220573 +k1,19362:28276852,33016131:220573 +k1,19362:29516510,33016131:220573 +k1,19362:30963262,33016131:220573 +k1,19362:31835263,33016131:220573 +k1,19362:32583029,33016131:0 +) +(1,19363:6630773,33881211:25952256,513147,126483 +k1,19362:9096571,33881211:163518 +k1,19362:10451535,33881211:163519 +k1,19362:13789617,33881211:163518 +(1,19362:13789617,33881211:0,414482,115847 +r1,19382:14147883,33881211:358266,530329,115847 +k1,19362:13789617,33881211:-358266 +) +(1,19362:13789617,33881211:358266,414482,115847 +k1,19362:13789617,33881211:3277 +h1,19362:14144606,33881211:0,411205,112570 +) +k1,19362:14311401,33881211:163518 +k1,19362:15666365,33881211:163519 +(1,19362:15666365,33881211:0,414482,115847 +r1,19382:16024631,33881211:358266,530329,115847 +k1,19362:15666365,33881211:-358266 +) +(1,19362:15666365,33881211:358266,414482,115847 +k1,19362:15666365,33881211:3277 +h1,19362:16021354,33881211:0,411205,112570 +) +k1,19362:16361819,33881211:163518 +k1,19362:17544422,33881211:163518 +k1,19362:20264500,33881211:163519 +k1,19362:21087310,33881211:163518 +k1,19362:22269913,33881211:163518 +k1,19362:24451286,33881211:163519 +k1,19362:25811491,33881211:163518 +k1,19362:27243787,33881211:163519 +k1,19362:28066597,33881211:163518 +k1,19362:29249200,33881211:163518 +k1,19362:30638898,33881211:163519 +k1,19362:31333913,33881211:163518 +k1,19363:32583029,33881211:0 +) +(1,19363:6630773,34746291:25952256,513147,126483 +k1,19362:8907679,34746291:158782 +k1,19362:9827988,34746291:158781 +k1,19362:11005855,34746291:158782 +(1,19362:11005855,34746291:0,452978,115847 +r1,19382:12419256,34746291:1413401,568825,115847 +k1,19362:11005855,34746291:-1413401 +) +(1,19362:11005855,34746291:1413401,452978,115847 +k1,19362:11005855,34746291:3277 +h1,19362:12415979,34746291:0,411205,112570 +) +k1,19362:12578038,34746291:158782 +k1,19362:16085054,34746291:158782 +k1,19362:17933353,34746291:158781 +k1,19362:19111220,34746291:158782 +k1,19362:20601038,34746291:158782 +k1,19362:21291316,34746291:158781 +k1,19362:24038770,34746291:158782 +k1,19362:24959080,34746291:158782 +k1,19362:26136947,34746291:158782 +(1,19362:26136947,34746291:0,459977,115847 +r1,19382:28253772,34746291:2116825,575824,115847 +k1,19362:26136947,34746291:-2116825 +) +(1,19362:26136947,34746291:2116825,459977,115847 +k1,19362:26136947,34746291:3277 +h1,19362:28250495,34746291:0,411205,112570 +) +k1,19362:28412553,34746291:158781 +k1,19362:29762780,34746291:158782 +(1,19362:29762780,34746291:0,459977,115847 +r1,19382:32583029,34746291:2820249,575824,115847 +k1,19362:29762780,34746291:-2820249 +) +(1,19362:29762780,34746291:2820249,459977,115847 +k1,19362:29762780,34746291:3277 +h1,19362:32579752,34746291:0,411205,112570 +) +k1,19362:32583029,34746291:0 +) +(1,19363:6630773,35611371:25952256,513147,134348 +k1,19362:10171375,35611371:192368 +k1,19362:12404534,35611371:192368 +k1,19362:13615986,35611371:192367 +k1,19362:17181492,35611371:192368 +k1,19362:19639440,35611371:192368 +k1,19362:22969672,35611371:192368 +k1,19362:24109691,35611371:192368 +(1,19362:24109691,35611371:0,452978,115847 +r1,19382:26226516,35611371:2116825,568825,115847 +k1,19362:24109691,35611371:-2116825 +) +(1,19362:24109691,35611371:2116825,452978,115847 +k1,19362:24109691,35611371:3277 +h1,19362:26223239,35611371:0,411205,112570 +) +k1,19362:26418883,35611371:192367 +k1,19362:27802696,35611371:192368 +(1,19362:27802696,35611371:0,452978,115847 +r1,19382:29216097,35611371:1413401,568825,115847 +k1,19362:27802696,35611371:-1413401 +) +(1,19362:27802696,35611371:1413401,452978,115847 +k1,19362:27802696,35611371:3277 +h1,19362:29212820,35611371:0,411205,112570 +) +k1,19362:29408465,35611371:192368 +k1,19362:32583029,35611371:0 +) +(1,19363:6630773,36476451:25952256,505283,122846 +g1,19362:7821562,36476451 +g1,19362:11501408,36476451 +g1,19362:13710626,36476451 +(1,19362:13710626,36476451:0,452978,122846 +r1,19382:17586010,36476451:3875384,575824,122846 +k1,19362:13710626,36476451:-3875384 +) +(1,19362:13710626,36476451:3875384,452978,122846 +k1,19362:13710626,36476451:3277 +h1,19362:17582733,36476451:0,411205,112570 +) +k1,19363:32583029,36476451:14944591 +g1,19363:32583029,36476451 +) +v1,19365:6630773,37161306:0,393216,0 +(1,19373:6630773,40241409:25952256,3473319,196608 +g1,19373:6630773,40241409 +g1,19373:6630773,40241409 +g1,19373:6434165,40241409 +(1,19373:6434165,40241409:0,3473319,196608 +r1,19382:32779637,40241409:26345472,3669927,196608 +k1,19373:6434165,40241409:-26345472 +) +(1,19373:6434165,40241409:26345472,3473319,196608 +[1,19373:6630773,40241409:25952256,3276711,0 +(1,19367:6630773,37389137:25952256,424439,112852 +(1,19366:6630773,37389137:0,0,0 +g1,19366:6630773,37389137 +g1,19366:6630773,37389137 +g1,19366:6303093,37389137 +(1,19366:6303093,37389137:0,0,0 +) +g1,19366:6630773,37389137 +) +k1,19367:6630773,37389137:0 +g1,19367:10614221,37389137 +g1,19367:11278129,37389137 +k1,19367:11278129,37389137:0 +h1,19367:13601807,37389137:0,0,0 +k1,19367:32583029,37389137:18981222 +g1,19367:32583029,37389137 +) +(1,19368:6630773,38073992:25952256,424439,112852 +h1,19368:6630773,38073992:0,0,0 +g1,19368:6962727,38073992 +g1,19368:7294681,38073992 +g1,19368:7626635,38073992 +g1,19368:7958589,38073992 +g1,19368:8290543,38073992 +g1,19368:8622497,38073992 +g1,19368:8954451,38073992 +g1,19368:9286405,38073992 +g1,19368:9618359,38073992 +g1,19368:12273991,38073992 +g1,19368:12937899,38073992 +g1,19368:14929623,38073992 +g1,19368:15593531,38073992 +g1,19368:17585255,38073992 +g1,19368:18249163,38073992 +g1,19368:18913071,38073992 +k1,19368:18913071,38073992:0 +h1,19368:20240887,38073992:0,0,0 +k1,19368:32583029,38073992:12342142 +g1,19368:32583029,38073992 +) +(1,19369:6630773,38758847:25952256,431045,106246 +h1,19369:6630773,38758847:0,0,0 +g1,19369:6962727,38758847 +g1,19369:7294681,38758847 +g1,19369:7626635,38758847 +g1,19369:7958589,38758847 +g1,19369:8290543,38758847 +g1,19369:8622497,38758847 +g1,19369:8954451,38758847 +g1,19369:9286405,38758847 +g1,19369:9618359,38758847 +g1,19369:9950313,38758847 +g1,19369:10282267,38758847 +g1,19369:10614221,38758847 +g1,19369:10946175,38758847 +g1,19369:11278129,38758847 +g1,19369:11610083,38758847 +g1,19369:11942037,38758847 +g1,19369:12273991,38758847 +g1,19369:12605945,38758847 +g1,19369:12937899,38758847 +g1,19369:13269853,38758847 +g1,19369:13601807,38758847 +g1,19369:13933761,38758847 +g1,19369:14265715,38758847 +g1,19369:16589393,38758847 +g1,19369:17253301,38758847 +g1,19369:21568703,38758847 +g1,19369:23228473,38758847 +g1,19369:23892381,38758847 +g1,19369:25220197,38758847 +g1,19369:27211921,38758847 +g1,19369:27875829,38758847 +g1,19369:29867553,38758847 +h1,19369:30199507,38758847:0,0,0 +k1,19369:32583029,38758847:2383522 +g1,19369:32583029,38758847 +) +(1,19370:6630773,39443702:25952256,424439,112852 +h1,19370:6630773,39443702:0,0,0 +g1,19370:6962727,39443702 +g1,19370:7294681,39443702 +g1,19370:12937898,39443702 +g1,19370:13601806,39443702 +g1,19370:15261576,39443702 +h1,19370:15593530,39443702:0,0,0 +k1,19370:32583030,39443702:16989500 +g1,19370:32583030,39443702 +) +(1,19371:6630773,40128557:25952256,424439,112852 +h1,19371:6630773,40128557:0,0,0 +g1,19371:6962727,40128557 +g1,19371:7294681,40128557 +g1,19371:12937898,40128557 +g1,19371:13601806,40128557 +g1,19371:17585253,40128557 +g1,19371:19245023,40128557 +g1,19371:19908931,40128557 +h1,19371:20572839,40128557:0,0,0 +k1,19371:32583029,40128557:12010190 +g1,19371:32583029,40128557 +) +] +) +g1,19373:32583029,40241409 +g1,19373:6630773,40241409 +g1,19373:6630773,40241409 +g1,19373:32583029,40241409 +g1,19373:32583029,40241409 +) +h1,19373:6630773,40438017:0,0,0 +] +(1,19382:32583029,45706769:0,0,0 +g1,19382:32583029,45706769 +) +) +] +(1,19382:6630773,47279633:25952256,0,0 +h1,19382:6630773,47279633:25952256,0,0 +) +] +(1,19382:4262630,4025873:0,0,0 +[1,19382:-473656,4025873:0,0,0 +(1,19382:-473656,-710413:0,0,0 +(1,19382:-473656,-710413:0,0,0 +g1,19382:-473656,-710413 +) +g1,19382:-473656,-710413 ) ] ) ] !22779 -}321 -Input:3392:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}322 Input:3396:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3397:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3398:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -337479,828 +337683,828 @@ Input:3413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3416:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3418:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3419:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3420:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2312 -{322 -[1,19419:4262630,47279633:28320399,43253760,0 -(1,19419:4262630,4025873:0,0,0 -[1,19419:-473656,4025873:0,0,0 -(1,19419:-473656,-710413:0,0,0 -(1,19419:-473656,-644877:0,0,0 -k1,19419:-473656,-644877:-65536 +{323 +[1,19417:4262630,47279633:28320399,43253760,0 +(1,19417:4262630,4025873:0,0,0 +[1,19417:-473656,4025873:0,0,0 +(1,19417:-473656,-710413:0,0,0 +(1,19417:-473656,-644877:0,0,0 +k1,19417:-473656,-644877:-65536 ) -(1,19419:-473656,4736287:0,0,0 -k1,19419:-473656,4736287:5209943 +(1,19417:-473656,4736287:0,0,0 +k1,19417:-473656,4736287:5209943 ) -g1,19419:-473656,-710413 +g1,19417:-473656,-710413 ) ] ) -[1,19419:6630773,47279633:25952256,43253760,0 -[1,19419:6630773,4812305:25952256,786432,0 -(1,19419:6630773,4812305:25952256,485622,11795 -(1,19419:6630773,4812305:25952256,485622,11795 -g1,19419:3078558,4812305 -[1,19419:3078558,4812305:0,0,0 -(1,19419:3078558,2439708:0,1703936,0 -k1,19419:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19419:2537886,2439708:1179648,16384,0 +[1,19417:6630773,47279633:25952256,43253760,0 +[1,19417:6630773,4812305:25952256,786432,0 +(1,19417:6630773,4812305:25952256,485622,11795 +(1,19417:6630773,4812305:25952256,485622,11795 +g1,19417:3078558,4812305 +[1,19417:3078558,4812305:0,0,0 +(1,19417:3078558,2439708:0,1703936,0 +k1,19417:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19417:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19419:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19417:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19419:3078558,4812305:0,0,0 -(1,19419:3078558,2439708:0,1703936,0 -g1,19419:29030814,2439708 -g1,19419:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19419:36151628,1915420:16384,1179648,0 +[1,19417:3078558,4812305:0,0,0 +(1,19417:3078558,2439708:0,1703936,0 +g1,19417:29030814,2439708 +g1,19417:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19417:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19419:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19417:37855564,2439708:1179648,16384,0 ) ) -k1,19419:3078556,2439708:-34777008 +k1,19417:3078556,2439708:-34777008 ) ] -[1,19419:3078558,4812305:0,0,0 -(1,19419:3078558,49800853:0,16384,2228224 -k1,19419:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19419:2537886,49800853:1179648,16384,0 +[1,19417:3078558,4812305:0,0,0 +(1,19417:3078558,49800853:0,16384,2228224 +k1,19417:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19417:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19419:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19417:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19419:3078558,4812305:0,0,0 -(1,19419:3078558,49800853:0,16384,2228224 -g1,19419:29030814,49800853 -g1,19419:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19419:36151628,51504789:16384,1179648,0 +[1,19417:3078558,4812305:0,0,0 +(1,19417:3078558,49800853:0,16384,2228224 +g1,19417:29030814,49800853 +g1,19417:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19417:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19419:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19417:37855564,49800853:1179648,16384,0 ) ) -k1,19419:3078556,49800853:-34777008 +k1,19417:3078556,49800853:-34777008 ) ] -g1,19419:6630773,4812305 -g1,19419:6630773,4812305 -g1,19419:10347975,4812305 -k1,19419:31387651,4812305:21039676 +g1,19417:6630773,4812305 +g1,19417:6630773,4812305 +g1,19417:10347975,4812305 +k1,19417:31387651,4812305:21039676 ) ) ] -[1,19419:6630773,45706769:25952256,40108032,0 -(1,19419:6630773,45706769:25952256,40108032,0 -(1,19419:6630773,45706769:0,0,0 -g1,19419:6630773,45706769 +[1,19417:6630773,45706769:25952256,40108032,0 +(1,19417:6630773,45706769:25952256,40108032,0 +(1,19417:6630773,45706769:0,0,0 +g1,19417:6630773,45706769 ) -[1,19419:6630773,45706769:25952256,40108032,0 -(1,19378:6630773,14682403:25952256,9083666,0 -k1,19378:10523651,14682403:3892878 -h1,19377:10523651,14682403:0,0,0 -(1,19377:10523651,14682403:18166500,9083666,0 -(1,19377:10523651,14682403:18167376,9083688,0 -(1,19377:10523651,14682403:18167376,9083688,0 -(1,19377:10523651,14682403:0,9083688,0 -(1,19377:10523651,14682403:0,14208860,0 -(1,19377:10523651,14682403:28417720,14208860,0 +[1,19417:6630773,45706769:25952256,40108032,0 +(1,19376:6630773,14682403:25952256,9083666,0 +k1,19376:10523651,14682403:3892878 +h1,19375:10523651,14682403:0,0,0 +(1,19375:10523651,14682403:18166500,9083666,0 +(1,19375:10523651,14682403:18167376,9083688,0 +(1,19375:10523651,14682403:18167376,9083688,0 +(1,19375:10523651,14682403:0,9083688,0 +(1,19375:10523651,14682403:0,14208860,0 +(1,19375:10523651,14682403:28417720,14208860,0 ) -k1,19377:10523651,14682403:-28417720 +k1,19375:10523651,14682403:-28417720 ) ) -g1,19377:28691027,14682403 +g1,19375:28691027,14682403 ) ) ) -g1,19378:28690151,14682403 -k1,19378:32583029,14682403:3892878 -) -(1,19385:6630773,15547483:25952256,505283,134348 -h1,19384:6630773,15547483:983040,0,0 -k1,19384:11199394,15547483:279290 -(1,19384:11199394,15547483:0,452978,122846 -r1,19419:12964507,15547483:1765113,575824,122846 -k1,19384:11199394,15547483:-1765113 +g1,19376:28690151,14682403 +k1,19376:32583029,14682403:3892878 +) +(1,19383:6630773,15547483:25952256,505283,134348 +h1,19382:6630773,15547483:983040,0,0 +k1,19382:11199394,15547483:279290 +(1,19382:11199394,15547483:0,452978,122846 +r1,19417:12964507,15547483:1765113,575824,122846 +k1,19382:11199394,15547483:-1765113 ) -(1,19384:11199394,15547483:1765113,452978,122846 -k1,19384:11199394,15547483:3277 -h1,19384:12961230,15547483:0,411205,112570 +(1,19382:11199394,15547483:1765113,452978,122846 +k1,19382:11199394,15547483:3277 +h1,19382:12961230,15547483:0,411205,112570 ) -k1,19384:13417467,15547483:279290 -k1,19384:16894259,15547483:279290 -k1,19384:17789587,15547483:279290 -k1,19384:20698181,15547483:279290 -k1,19384:22168916,15547483:279290 -(1,19384:22168916,15547483:0,452978,122846 -r1,19419:23934029,15547483:1765113,575824,122846 -k1,19384:22168916,15547483:-1765113 -) -(1,19384:22168916,15547483:1765113,452978,122846 -k1,19384:22168916,15547483:3277 -h1,19384:23930752,15547483:0,411205,112570 -) -k1,19384:24213319,15547483:279290 -k1,19384:25684054,15547483:279290 -(1,19384:25684054,15547483:0,452978,122846 -r1,19419:27449167,15547483:1765113,575824,122846 -k1,19384:25684054,15547483:-1765113 -) -(1,19384:25684054,15547483:1765113,452978,122846 -k1,19384:25684054,15547483:3277 -h1,19384:27445890,15547483:0,411205,112570 -) -k1,19384:27728457,15547483:279290 -k1,19384:29112029,15547483:279290 -k1,19384:30139085,15547483:279290 -k1,19384:31931601,15547483:279290 -k1,19384:32583029,15547483:0 -) -(1,19385:6630773,16412563:25952256,513147,134348 -k1,19384:8683579,16412563:152917 -k1,19384:9855581,16412563:152917 -k1,19384:11234677,16412563:152917 -k1,19384:12579039,16412563:152917 -k1,19384:14737358,16412563:152917 -k1,19384:15678673,16412563:152917 -k1,19384:18177124,16412563:152917 -k1,19384:19521486,16412563:152917 -k1,19384:22990525,16412563:152917 -k1,19384:27134585,16412563:152917 -k1,19384:28484189,16412563:152917 -k1,19384:30902686,16412563:152917 -k1,19384:32583029,16412563:0 -) -(1,19385:6630773,17277643:25952256,513147,126483 -k1,19384:7496101,17277643:206036 -k1,19384:8672726,17277643:206037 -k1,19384:9826413,17277643:206036 -k1,19384:11499145,17277643:206036 -(1,19384:11499145,17277643:0,452978,122846 -r1,19419:13264258,17277643:1765113,575824,122846 -k1,19384:11499145,17277643:-1765113 -) -(1,19384:11499145,17277643:1765113,452978,122846 -k1,19384:11499145,17277643:3277 -h1,19384:13260981,17277643:0,411205,112570 -) -k1,19384:13470295,17277643:206037 -k1,19384:14867776,17277643:206036 -(1,19384:14867776,17277643:0,452978,122846 -r1,19419:16632889,17277643:1765113,575824,122846 -k1,19384:14867776,17277643:-1765113 -) -(1,19384:14867776,17277643:1765113,452978,122846 -k1,19384:14867776,17277643:3277 -h1,19384:16629612,17277643:0,411205,112570 -) -k1,19384:16838925,17277643:206036 -k1,19384:18309807,17277643:206037 -k1,19384:19534928,17277643:206036 -k1,19384:21729326,17277643:206036 -k1,19384:22594655,17277643:206037 -k1,19384:23819776,17277643:206036 -k1,19384:25251991,17277643:206036 -k1,19384:26070790,17277643:206037 -k1,19384:27295911,17277643:206036 -k1,19384:30262979,17277643:206036 -(1,19384:30262979,17277643:0,414482,115847 -r1,19419:30621245,17277643:358266,530329,115847 -k1,19384:30262979,17277643:-358266 -) -(1,19384:30262979,17277643:358266,414482,115847 -k1,19384:30262979,17277643:3277 -h1,19384:30617968,17277643:0,411205,112570 -) -k1,19384:30827282,17277643:206037 -k1,19384:32224763,17277643:206036 -(1,19384:32224763,17277643:0,414482,115847 -r1,19419:32583029,17277643:358266,530329,115847 -k1,19384:32224763,17277643:-358266 -) -(1,19384:32224763,17277643:358266,414482,115847 -k1,19384:32224763,17277643:3277 -h1,19384:32579752,17277643:0,411205,112570 -) -k1,19384:32583029,17277643:0 -) -(1,19385:6630773,18142723:25952256,513147,134348 -k1,19384:10727071,18142723:184454 -k1,19384:13917006,18142723:184454 -k1,19384:15311910,18142723:184454 -k1,19384:19325633,18142723:184454 -k1,19384:20434145,18142723:184454 -k1,19384:21757615,18142723:184454 -k1,19384:25625192,18142723:184454 -k1,19384:26855601,18142723:184454 -k1,19384:29402628,18142723:184454 -k1,19384:30186736,18142723:184454 -k1,19384:31356851,18142723:184454 -k1,19384:32583029,18142723:0 -) -(1,19385:6630773,19007803:25952256,513147,134348 -k1,19384:7920555,19007803:276595 -k1,19384:9182810,19007803:276594 -k1,19384:10820588,19007803:276595 -k1,19384:12478026,19007803:276594 -k1,19384:13286118,19007803:276595 -k1,19384:16772011,19007803:276595 -k1,19384:18746643,19007803:276594 -(1,19384:18746643,19007803:0,452978,122846 -r1,19419:20511756,19007803:1765113,575824,122846 -k1,19384:18746643,19007803:-1765113 -) -(1,19384:18746643,19007803:1765113,452978,122846 -k1,19384:18746643,19007803:3277 -h1,19384:20508479,19007803:0,411205,112570 -) -k1,19384:20788351,19007803:276595 -k1,19384:21596443,19007803:276595 -k1,19384:24635380,19007803:276594 -k1,19384:26479596,19007803:276595 -k1,19384:28350026,19007803:276594 -k1,19384:30738191,19007803:276595 -k1,19384:32583029,19007803:0 -) -(1,19385:6630773,19872883:25952256,513147,134348 -k1,19384:8277447,19872883:204227 -k1,19384:9452261,19872883:204226 -k1,19384:11124494,19872883:204227 -k1,19384:12347805,19872883:204226 -k1,19384:14065914,19872883:204227 -k1,19384:15344275,19872883:204226 -k1,19384:16231387,19872883:204227 -k1,19384:18360405,19872883:204226 -k1,19384:19756077,19872883:204227 -k1,19384:21970948,19872883:204226 -k1,19384:24527262,19872883:204227 -k1,19384:26173935,19872883:204226 -k1,19384:27522421,19872883:204227 -k1,19384:29262156,19872883:204226 -k1,19384:30149268,19872883:204227 -k1,19384:31189078,19872883:204226 -k1,19384:32583029,19872883:0 -) -(1,19385:6630773,20737963:25952256,513147,134348 -k1,19384:9103875,20737963:148540 -k1,19384:9903843,20737963:148540 -k1,19384:10840781,20737963:148540 -(1,19384:10840781,20737963:0,414482,115847 -r1,19419:11199047,20737963:358266,530329,115847 -k1,19384:10840781,20737963:-358266 -) -(1,19384:10840781,20737963:358266,414482,115847 -k1,19384:10840781,20737963:3277 -h1,19384:11195770,20737963:0,411205,112570 -) -k1,19384:11347587,20737963:148540 -k1,19384:12687572,20737963:148540 -(1,19384:12687572,20737963:0,414482,115847 -r1,19419:13045838,20737963:358266,530329,115847 -k1,19384:12687572,20737963:-358266 -) -(1,19384:12687572,20737963:358266,414482,115847 -k1,19384:12687572,20737963:3277 -h1,19384:13042561,20737963:0,411205,112570 -) -k1,19384:13194378,20737963:148540 -k1,19384:17254761,20737963:148539 -k1,19384:17890839,20737963:148490 -k1,19384:19719722,20737963:148540 -k1,19384:20527554,20737963:148540 -k1,19384:21074553,20737963:148540 -k1,19384:21905978,20737963:148540 -k1,19384:22452977,20737963:148540 -k1,19384:23866362,20737963:148540 -k1,19384:25033986,20737963:148539 -k1,19384:26408705,20737963:148540 -k1,19384:27282073,20737963:148540 -k1,19384:28715119,20737963:148540 -k1,19384:29652057,20737963:148540 -k1,19384:31290230,20737963:148540 -k1,19384:31970267,20737963:148540 -k1,19384:32583029,20737963:0 -) -(1,19385:6630773,21603043:25952256,513147,134348 -k1,19384:7838254,21603043:188396 -k1,19384:10787682,21603043:188396 -k1,19384:14557621,21603043:188396 -k1,19384:16857587,21603043:188396 -k1,19384:19411833,21603043:188396 -k1,19384:20619314,21603043:188396 -k1,19384:22588323,21603043:188396 -$1,19384:22588323,21603043 -k1,19384:23096018,21603043:109236 -k1,19384:23860614,21603043:109236 -$1,19384:24259073,21603043 -k1,19384:24447469,21603043:188396 -k1,19384:26103871,21603043:188396 -k1,19384:27311352,21603043:188396 -k1,19384:28725927,21603043:188396 -k1,19384:30381019,21603043:188396 -k1,19384:32583029,21603043:0 -) -(1,19385:6630773,22468123:25952256,513147,134348 -k1,19384:8678913,22468123:280634 -k1,19384:11803811,22468123:280635 -k1,19384:13283099,22468123:280634 -k1,19384:15299126,22468123:280634 -k1,19384:17197845,22468123:280635 -k1,19384:19333148,22468123:280634 -k1,19384:20423153,22468123:280635 -k1,19384:21722872,22468123:280634 -k1,19384:24016772,22468123:280634 -k1,19384:24980292,22468123:280635 -k1,19384:27270260,22468123:280634 -k1,19384:28210186,22468123:280634 -k1,19384:29509906,22468123:280635 -k1,19384:31016719,22468123:280634 -k1,19384:32583029,22468123:0 -) -(1,19385:6630773,23333203:25952256,513147,134348 -k1,19384:8964000,23333203:188234 -k1,19384:11816273,23333203:188234 -k1,19384:12663799,23333203:188234 -k1,19384:15680566,23333203:188234 -k1,19384:17584533,23333203:188234 -k1,19384:20402727,23333203:188234 -k1,19384:24408433,23333203:188234 -k1,19384:26332060,23333203:188234 -k1,19384:29494973,23333203:188234 -k1,19384:32583029,23333203:0 -) -(1,19385:6630773,24198283:25952256,513147,134348 -k1,19384:7818998,24198283:240574 -k1,19384:11423535,24198283:240574 -(1,19384:11423535,24198283:0,459977,115847 -r1,19419:13540360,24198283:2116825,575824,115847 -k1,19384:11423535,24198283:-2116825 -) -(1,19384:11423535,24198283:2116825,459977,115847 -k1,19384:11423535,24198283:3277 -h1,19384:13537083,24198283:0,411205,112570 -) -k1,19384:13954604,24198283:240574 -(1,19384:13954604,24198283:0,452978,115847 -r1,19419:16774853,24198283:2820249,568825,115847 -k1,19384:13954604,24198283:-2820249 -) -(1,19384:13954604,24198283:2820249,452978,115847 -k1,19384:13954604,24198283:3277 -h1,19384:16771576,24198283:0,411205,112570 -) -k1,19384:17189097,24198283:240574 -(1,19384:17189097,24198283:0,452978,122846 -r1,19419:19657634,24198283:2468537,575824,122846 -k1,19384:17189097,24198283:-2468537 -) -(1,19384:17189097,24198283:2468537,452978,122846 -k1,19384:17189097,24198283:3277 -h1,19384:19654357,24198283:0,411205,112570 -) -k1,19384:20071879,24198283:240575 -(1,19384:20071879,24198283:0,452978,115847 -r1,19419:22892128,24198283:2820249,568825,115847 -k1,19384:20071879,24198283:-2820249 -) -(1,19384:20071879,24198283:2820249,452978,115847 -k1,19384:20071879,24198283:3277 -h1,19384:22888851,24198283:0,411205,112570 -) -k1,19384:23306372,24198283:240574 -(1,19384:23306372,24198283:0,452978,115847 -r1,19419:26126621,24198283:2820249,568825,115847 -k1,19384:23306372,24198283:-2820249 -) -(1,19384:23306372,24198283:2820249,452978,115847 -k1,19384:23306372,24198283:3277 -h1,19384:26123344,24198283:0,411205,112570 -) -k1,19384:26367195,24198283:240574 -k1,19384:27799214,24198283:240574 -(1,19384:27799214,24198283:0,452978,115847 -r1,19419:29564327,24198283:1765113,568825,115847 -k1,19384:27799214,24198283:-1765113 -) -(1,19384:27799214,24198283:1765113,452978,115847 -k1,19384:27799214,24198283:3277 -h1,19384:29561050,24198283:0,411205,112570 -) -k1,19384:29978571,24198283:240574 -k1,19384:31410590,24198283:240574 -k1,19384:32583029,24198283:0 -) -(1,19385:6630773,25063363:25952256,505283,134348 -k1,19384:9030872,25063363:205954 -k1,19384:12931090,25063363:205954 -(1,19384:12931090,25063363:0,452978,115847 -r1,19419:15751339,25063363:2820249,568825,115847 -k1,19384:12931090,25063363:-2820249 -) -(1,19384:12931090,25063363:2820249,452978,115847 -k1,19384:12931090,25063363:3277 -h1,19384:15748062,25063363:0,411205,112570 -) -k1,19384:15957294,25063363:205955 -k1,19384:17354693,25063363:205954 -(1,19384:17354693,25063363:0,452978,115847 -r1,19419:20526653,25063363:3171960,568825,115847 -k1,19384:17354693,25063363:-3171960 -) -(1,19384:17354693,25063363:3171960,452978,115847 -k1,19384:17354693,25063363:3277 -h1,19384:20523376,25063363:0,411205,112570 -) -k1,19384:20906277,25063363:205954 -k1,19384:22396737,25063363:205954 -k1,19384:26919548,25063363:205954 -k1,19384:28487997,25063363:205955 -k1,19384:30548620,25063363:205954 -k1,19384:31563944,25063363:205954 -k1,19384:32583029,25063363:0 -) -(1,19385:6630773,25928443:25952256,505283,134348 -g1,19384:9444233,25928443 -g1,19384:10259500,25928443 -g1,19384:11477814,25928443 -g1,19384:14201490,25928443 -k1,19385:32583029,25928443:16981690 -g1,19385:32583029,25928443 -) -(1,19387:6630773,26793523:25952256,505283,134348 -h1,19386:6630773,26793523:983040,0,0 -k1,19386:9840476,26793523:185872 -(1,19386:9840476,26793523:0,452978,122846 -r1,19419:13715860,26793523:3875384,575824,122846 -k1,19386:9840476,26793523:-3875384 -) -(1,19386:9840476,26793523:3875384,452978,122846 -k1,19386:9840476,26793523:3277 -h1,19386:13712583,26793523:0,411205,112570 -) -k1,19386:13901731,26793523:185871 -k1,19386:14770488,26793523:185872 -(1,19386:14770488,26793523:0,452978,122846 -r1,19419:18997584,26793523:4227096,575824,122846 -k1,19386:14770488,26793523:-4227096 -) -(1,19386:14770488,26793523:4227096,452978,122846 -k1,19386:14770488,26793523:3277 -h1,19386:18994307,26793523:0,411205,112570 -) -k1,19386:19183456,26793523:185872 -k1,19386:20360887,26793523:185871 -k1,19386:22059985,26793523:185872 -k1,19386:24926280,26793523:185872 -k1,19386:26506102,26793523:185871 -(1,19386:26506102,26793523:0,452978,122846 -r1,19419:30733198,26793523:4227096,575824,122846 -k1,19386:26506102,26793523:-4227096 -) -(1,19386:26506102,26793523:4227096,452978,122846 -k1,19386:26506102,26793523:3277 -h1,19386:30729921,26793523:0,411205,112570 -) -k1,19386:30919070,26793523:185872 -k1,19387:32583029,26793523:0 -) -(1,19387:6630773,27658603:25952256,505283,126483 -g1,19386:8040452,27658603 -g1,19386:8925843,27658603 -g1,19386:10505260,27658603 -g1,19386:11696049,27658603 -g1,19386:13408504,27658603 -g1,19386:14259161,27658603 -g1,19386:15655733,27658603 -g1,19386:17244325,27658603 -g1,19386:19287737,27658603 -g1,19386:20103004,27658603 -g1,19386:20658093,27658603 -k1,19387:32583029,27658603:10595211 -g1,19387:32583029,27658603 -) -v1,19389:6630773,28343458:0,393216,0 -(1,19396:6630773,30712282:25952256,2762040,196608 -g1,19396:6630773,30712282 -g1,19396:6630773,30712282 -g1,19396:6434165,30712282 -(1,19396:6434165,30712282:0,2762040,196608 -r1,19419:32779637,30712282:26345472,2958648,196608 -k1,19396:6434165,30712282:-26345472 -) -(1,19396:6434165,30712282:26345472,2762040,196608 -[1,19396:6630773,30712282:25952256,2565432,0 -(1,19391:6630773,28571289:25952256,424439,106246 -(1,19390:6630773,28571289:0,0,0 -g1,19390:6630773,28571289 -g1,19390:6630773,28571289 -g1,19390:6303093,28571289 -(1,19390:6303093,28571289:0,0,0 -) -g1,19390:6630773,28571289 -) -g1,19391:9286405,28571289 -k1,19391:9286405,28571289:0 -h1,19391:9950313,28571289:0,0,0 -k1,19391:32583029,28571289:22632716 -g1,19391:32583029,28571289 -) -(1,19392:6630773,29256144:25952256,431045,86428 -h1,19392:6630773,29256144:0,0,0 -g1,19392:6962727,29256144 -g1,19392:7294681,29256144 -g1,19392:11610082,29256144 -g1,19392:12273990,29256144 -k1,19392:12273990,29256144:0 -h1,19392:13601806,29256144:0,0,0 -k1,19392:32583030,29256144:18981224 -g1,19392:32583030,29256144 -) -(1,19393:6630773,29940999:25952256,424439,106246 -h1,19393:6630773,29940999:0,0,0 -g1,19393:6962727,29940999 -g1,19393:7294681,29940999 -g1,19393:7626635,29940999 -g1,19393:7958589,29940999 -g1,19393:8290543,29940999 -g1,19393:8622497,29940999 -g1,19393:8954451,29940999 -g1,19393:9286405,29940999 -g1,19393:9618359,29940999 -g1,19393:9950313,29940999 -g1,19393:10282267,29940999 -g1,19393:10614221,29940999 -g1,19393:10946175,29940999 -g1,19393:11610083,29940999 -g1,19393:12273991,29940999 -g1,19393:14597669,29940999 -k1,19393:14597669,29940999:0 -h1,19393:15593531,29940999:0,0,0 -k1,19393:32583029,29940999:16989498 -g1,19393:32583029,29940999 -) -(1,19394:6630773,30625854:25952256,431045,86428 -h1,19394:6630773,30625854:0,0,0 -g1,19394:6962727,30625854 -g1,19394:7294681,30625854 -g1,19394:7626635,30625854 -g1,19394:7958589,30625854 -g1,19394:8290543,30625854 -g1,19394:8622497,30625854 -g1,19394:8954451,30625854 -g1,19394:9286405,30625854 -g1,19394:9618359,30625854 -g1,19394:9950313,30625854 -g1,19394:10282267,30625854 -g1,19394:10614221,30625854 -g1,19394:10946175,30625854 -g1,19394:12937899,30625854 -g1,19394:13601807,30625854 -g1,19394:16257439,30625854 -g1,19394:18249163,30625854 -g1,19394:20240887,30625854 -g1,19394:22232611,30625854 -h1,19394:24224335,30625854:0,0,0 -k1,19394:32583029,30625854:8358694 -g1,19394:32583029,30625854 -) -] -) -g1,19396:32583029,30712282 -g1,19396:6630773,30712282 -g1,19396:6630773,30712282 -g1,19396:32583029,30712282 -g1,19396:32583029,30712282 -) -h1,19396:6630773,30908890:0,0,0 -v1,19400:6630773,31593745:0,393216,0 -(1,19407:6630773,33988993:25952256,2788464,196608 -g1,19407:6630773,33988993 -g1,19407:6630773,33988993 -g1,19407:6434165,33988993 -(1,19407:6434165,33988993:0,2788464,196608 -r1,19419:32779637,33988993:26345472,2985072,196608 -k1,19407:6434165,33988993:-26345472 -) -(1,19407:6434165,33988993:26345472,2788464,196608 -[1,19407:6630773,33988993:25952256,2591856,0 -(1,19402:6630773,31821576:25952256,424439,112852 -(1,19401:6630773,31821576:0,0,0 -g1,19401:6630773,31821576 -g1,19401:6630773,31821576 -g1,19401:6303093,31821576 -(1,19401:6303093,31821576:0,0,0 -) -g1,19401:6630773,31821576 -) -k1,19402:6630773,31821576:0 -g1,19402:10614221,31821576 -g1,19402:11278129,31821576 -k1,19402:11278129,31821576:0 -h1,19402:13933761,31821576:0,0,0 -k1,19402:32583029,31821576:18649268 -g1,19402:32583029,31821576 -) -(1,19403:6630773,32506431:25952256,424439,112852 -h1,19403:6630773,32506431:0,0,0 -g1,19403:6962727,32506431 -g1,19403:7294681,32506431 -g1,19403:7626635,32506431 -g1,19403:7958589,32506431 -g1,19403:8290543,32506431 -g1,19403:8622497,32506431 -g1,19403:8954451,32506431 -g1,19403:11610083,32506431 -g1,19403:12273991,32506431 -g1,19403:14597669,32506431 -g1,19403:15593531,32506431 -g1,19403:17585255,32506431 -g1,19403:18249163,32506431 -g1,19403:20904795,32506431 -h1,19403:21236749,32506431:0,0,0 -k1,19403:32583029,32506431:11346280 -g1,19403:32583029,32506431 -) -(1,19404:6630773,33191286:25952256,424439,112852 -h1,19404:6630773,33191286:0,0,0 -g1,19404:6962727,33191286 -g1,19404:7294681,33191286 -g1,19404:12605944,33191286 -g1,19404:13269852,33191286 -g1,19404:14597668,33191286 -g1,19404:16589392,33191286 -g1,19404:17253300,33191286 -g1,19404:18913070,33191286 -g1,19404:20572840,33191286 -g1,19404:21236748,33191286 -g1,19404:22232610,33191286 -h1,19404:22564564,33191286:0,0,0 -k1,19404:32583029,33191286:10018465 -g1,19404:32583029,33191286 -) -(1,19405:6630773,33876141:25952256,424439,112852 -h1,19405:6630773,33876141:0,0,0 -g1,19405:6962727,33876141 -g1,19405:7294681,33876141 -k1,19405:7294681,33876141:0 -h1,19405:11278128,33876141:0,0,0 -k1,19405:32583028,33876141:21304900 -g1,19405:32583028,33876141 -) -] -) -g1,19407:32583029,33988993 -g1,19407:6630773,33988993 -g1,19407:6630773,33988993 -g1,19407:32583029,33988993 -g1,19407:32583029,33988993 -) -h1,19407:6630773,34185601:0,0,0 -(1,19410:6630773,43334803:25952256,9083666,0 -k1,19410:10523651,43334803:3892878 -h1,19409:10523651,43334803:0,0,0 -(1,19409:10523651,43334803:18166500,9083666,0 -(1,19409:10523651,43334803:18167376,9083688,0 -(1,19409:10523651,43334803:18167376,9083688,0 -(1,19409:10523651,43334803:0,9083688,0 -(1,19409:10523651,43334803:0,14208860,0 -(1,19409:10523651,43334803:28417720,14208860,0 -) -k1,19409:10523651,43334803:-28417720 -) -) -g1,19409:28691027,43334803 -) -) -) -g1,19410:28690151,43334803 -k1,19410:32583029,43334803:3892878 -) -(1,19417:6630773,44199883:25952256,513147,126483 -h1,19416:6630773,44199883:983040,0,0 -k1,19416:8501707,44199883:260059 -k1,19416:9780852,44199883:260060 -k1,19416:11407992,44199883:260059 -k1,19416:12335207,44199883:260059 -(1,19416:12335207,44199883:0,452978,122846 -r1,19419:16562303,44199883:4227096,575824,122846 -k1,19416:12335207,44199883:-4227096 -) -(1,19416:12335207,44199883:4227096,452978,122846 -k1,19416:12335207,44199883:3277 -h1,19416:16559026,44199883:0,411205,112570 -) -k1,19416:16822362,44199883:260059 -k1,19416:18101507,44199883:260060 -k1,19416:19587745,44199883:260059 -k1,19416:20379301,44199883:260059 -k1,19416:23433160,44199883:260059 -k1,19416:24309258,44199883:260060 -k1,19416:24925177,44199883:260059 -k1,19416:26345223,44199883:260059 -k1,19416:27796728,44199883:260060 -k1,19416:29890484,44199883:260059 -k1,19416:31169628,44199883:260059 -(1,19416:31169628,44199883:0,459977,115847 -r1,19419:32583029,44199883:1413401,575824,115847 -k1,19416:31169628,44199883:-1413401 -) -(1,19416:31169628,44199883:1413401,459977,115847 -k1,19416:31169628,44199883:3277 -h1,19416:32579752,44199883:0,411205,112570 -) -k1,19416:32583029,44199883:0 -) -(1,19417:6630773,45064963:25952256,505283,134348 -k1,19416:9610563,45064963:192544 -k1,19416:10994553,45064963:192545 -k1,19416:14414090,45064963:192544 -k1,19416:18217669,45064963:192545 -k1,19416:21707329,45064963:192544 -k1,19416:24378446,45064963:192545 -k1,19416:25183752,45064963:192544 -k1,19416:26874450,45064963:192545 -h1,19416:28069827,45064963:0,0,0 -k1,19416:28469465,45064963:192544 -k1,19416:31333913,45064963:192545 -k1,19417:32583029,45064963:0 -) -] -(1,19419:32583029,45706769:0,0,0 -g1,19419:32583029,45706769 +k1,19382:13417467,15547483:279290 +k1,19382:16894259,15547483:279290 +k1,19382:17789587,15547483:279290 +k1,19382:20698181,15547483:279290 +k1,19382:22168916,15547483:279290 +(1,19382:22168916,15547483:0,452978,122846 +r1,19417:23934029,15547483:1765113,575824,122846 +k1,19382:22168916,15547483:-1765113 +) +(1,19382:22168916,15547483:1765113,452978,122846 +k1,19382:22168916,15547483:3277 +h1,19382:23930752,15547483:0,411205,112570 +) +k1,19382:24213319,15547483:279290 +k1,19382:25684054,15547483:279290 +(1,19382:25684054,15547483:0,452978,122846 +r1,19417:27449167,15547483:1765113,575824,122846 +k1,19382:25684054,15547483:-1765113 +) +(1,19382:25684054,15547483:1765113,452978,122846 +k1,19382:25684054,15547483:3277 +h1,19382:27445890,15547483:0,411205,112570 +) +k1,19382:27728457,15547483:279290 +k1,19382:29112029,15547483:279290 +k1,19382:30139085,15547483:279290 +k1,19382:31931601,15547483:279290 +k1,19382:32583029,15547483:0 +) +(1,19383:6630773,16412563:25952256,513147,134348 +k1,19382:8683579,16412563:152917 +k1,19382:9855581,16412563:152917 +k1,19382:11234677,16412563:152917 +k1,19382:12579039,16412563:152917 +k1,19382:14737358,16412563:152917 +k1,19382:15678673,16412563:152917 +k1,19382:18177124,16412563:152917 +k1,19382:19521486,16412563:152917 +k1,19382:22990525,16412563:152917 +k1,19382:27134585,16412563:152917 +k1,19382:28484189,16412563:152917 +k1,19382:30902686,16412563:152917 +k1,19382:32583029,16412563:0 +) +(1,19383:6630773,17277643:25952256,513147,126483 +k1,19382:7496101,17277643:206036 +k1,19382:8672726,17277643:206037 +k1,19382:9826413,17277643:206036 +k1,19382:11499145,17277643:206036 +(1,19382:11499145,17277643:0,452978,122846 +r1,19417:13264258,17277643:1765113,575824,122846 +k1,19382:11499145,17277643:-1765113 +) +(1,19382:11499145,17277643:1765113,452978,122846 +k1,19382:11499145,17277643:3277 +h1,19382:13260981,17277643:0,411205,112570 +) +k1,19382:13470295,17277643:206037 +k1,19382:14867776,17277643:206036 +(1,19382:14867776,17277643:0,452978,122846 +r1,19417:16632889,17277643:1765113,575824,122846 +k1,19382:14867776,17277643:-1765113 +) +(1,19382:14867776,17277643:1765113,452978,122846 +k1,19382:14867776,17277643:3277 +h1,19382:16629612,17277643:0,411205,112570 +) +k1,19382:16838925,17277643:206036 +k1,19382:18309807,17277643:206037 +k1,19382:19534928,17277643:206036 +k1,19382:21729326,17277643:206036 +k1,19382:22594655,17277643:206037 +k1,19382:23819776,17277643:206036 +k1,19382:25251991,17277643:206036 +k1,19382:26070790,17277643:206037 +k1,19382:27295911,17277643:206036 +k1,19382:30262979,17277643:206036 +(1,19382:30262979,17277643:0,414482,115847 +r1,19417:30621245,17277643:358266,530329,115847 +k1,19382:30262979,17277643:-358266 +) +(1,19382:30262979,17277643:358266,414482,115847 +k1,19382:30262979,17277643:3277 +h1,19382:30617968,17277643:0,411205,112570 +) +k1,19382:30827282,17277643:206037 +k1,19382:32224763,17277643:206036 +(1,19382:32224763,17277643:0,414482,115847 +r1,19417:32583029,17277643:358266,530329,115847 +k1,19382:32224763,17277643:-358266 +) +(1,19382:32224763,17277643:358266,414482,115847 +k1,19382:32224763,17277643:3277 +h1,19382:32579752,17277643:0,411205,112570 +) +k1,19382:32583029,17277643:0 +) +(1,19383:6630773,18142723:25952256,513147,134348 +k1,19382:10727071,18142723:184454 +k1,19382:13917006,18142723:184454 +k1,19382:15311910,18142723:184454 +k1,19382:19325633,18142723:184454 +k1,19382:20434145,18142723:184454 +k1,19382:21757615,18142723:184454 +k1,19382:25625192,18142723:184454 +k1,19382:26855601,18142723:184454 +k1,19382:29402628,18142723:184454 +k1,19382:30186736,18142723:184454 +k1,19382:31356851,18142723:184454 +k1,19382:32583029,18142723:0 +) +(1,19383:6630773,19007803:25952256,513147,134348 +k1,19382:7920555,19007803:276595 +k1,19382:9182810,19007803:276594 +k1,19382:10820588,19007803:276595 +k1,19382:12478026,19007803:276594 +k1,19382:13286118,19007803:276595 +k1,19382:16772011,19007803:276595 +k1,19382:18746643,19007803:276594 +(1,19382:18746643,19007803:0,452978,122846 +r1,19417:20511756,19007803:1765113,575824,122846 +k1,19382:18746643,19007803:-1765113 +) +(1,19382:18746643,19007803:1765113,452978,122846 +k1,19382:18746643,19007803:3277 +h1,19382:20508479,19007803:0,411205,112570 +) +k1,19382:20788351,19007803:276595 +k1,19382:21596443,19007803:276595 +k1,19382:24635380,19007803:276594 +k1,19382:26479596,19007803:276595 +k1,19382:28350026,19007803:276594 +k1,19382:30738191,19007803:276595 +k1,19382:32583029,19007803:0 +) +(1,19383:6630773,19872883:25952256,513147,134348 +k1,19382:8277447,19872883:204227 +k1,19382:9452261,19872883:204226 +k1,19382:11124494,19872883:204227 +k1,19382:12347805,19872883:204226 +k1,19382:14065914,19872883:204227 +k1,19382:15344275,19872883:204226 +k1,19382:16231387,19872883:204227 +k1,19382:18360405,19872883:204226 +k1,19382:19756077,19872883:204227 +k1,19382:21970948,19872883:204226 +k1,19382:24527262,19872883:204227 +k1,19382:26173935,19872883:204226 +k1,19382:27522421,19872883:204227 +k1,19382:29262156,19872883:204226 +k1,19382:30149268,19872883:204227 +k1,19382:31189078,19872883:204226 +k1,19382:32583029,19872883:0 +) +(1,19383:6630773,20737963:25952256,513147,134348 +k1,19382:9103875,20737963:148540 +k1,19382:9903843,20737963:148540 +k1,19382:10840781,20737963:148540 +(1,19382:10840781,20737963:0,414482,115847 +r1,19417:11199047,20737963:358266,530329,115847 +k1,19382:10840781,20737963:-358266 +) +(1,19382:10840781,20737963:358266,414482,115847 +k1,19382:10840781,20737963:3277 +h1,19382:11195770,20737963:0,411205,112570 +) +k1,19382:11347587,20737963:148540 +k1,19382:12687572,20737963:148540 +(1,19382:12687572,20737963:0,414482,115847 +r1,19417:13045838,20737963:358266,530329,115847 +k1,19382:12687572,20737963:-358266 +) +(1,19382:12687572,20737963:358266,414482,115847 +k1,19382:12687572,20737963:3277 +h1,19382:13042561,20737963:0,411205,112570 +) +k1,19382:13194378,20737963:148540 +k1,19382:17254761,20737963:148539 +k1,19382:17890839,20737963:148490 +k1,19382:19719722,20737963:148540 +k1,19382:20527554,20737963:148540 +k1,19382:21074553,20737963:148540 +k1,19382:21905978,20737963:148540 +k1,19382:22452977,20737963:148540 +k1,19382:23866362,20737963:148540 +k1,19382:25033986,20737963:148539 +k1,19382:26408705,20737963:148540 +k1,19382:27282073,20737963:148540 +k1,19382:28715119,20737963:148540 +k1,19382:29652057,20737963:148540 +k1,19382:31290230,20737963:148540 +k1,19382:31970267,20737963:148540 +k1,19382:32583029,20737963:0 +) +(1,19383:6630773,21603043:25952256,513147,134348 +k1,19382:7838254,21603043:188396 +k1,19382:10787682,21603043:188396 +k1,19382:14557621,21603043:188396 +k1,19382:16857587,21603043:188396 +k1,19382:19411833,21603043:188396 +k1,19382:20619314,21603043:188396 +k1,19382:22588323,21603043:188396 +$1,19382:22588323,21603043 +k1,19382:23096018,21603043:109236 +k1,19382:23860614,21603043:109236 +$1,19382:24259073,21603043 +k1,19382:24447469,21603043:188396 +k1,19382:26103871,21603043:188396 +k1,19382:27311352,21603043:188396 +k1,19382:28725927,21603043:188396 +k1,19382:30381019,21603043:188396 +k1,19382:32583029,21603043:0 +) +(1,19383:6630773,22468123:25952256,513147,134348 +k1,19382:8678913,22468123:280634 +k1,19382:11803811,22468123:280635 +k1,19382:13283099,22468123:280634 +k1,19382:15299126,22468123:280634 +k1,19382:17197845,22468123:280635 +k1,19382:19333148,22468123:280634 +k1,19382:20423153,22468123:280635 +k1,19382:21722872,22468123:280634 +k1,19382:24016772,22468123:280634 +k1,19382:24980292,22468123:280635 +k1,19382:27270260,22468123:280634 +k1,19382:28210186,22468123:280634 +k1,19382:29509906,22468123:280635 +k1,19382:31016719,22468123:280634 +k1,19382:32583029,22468123:0 +) +(1,19383:6630773,23333203:25952256,513147,134348 +k1,19382:8964000,23333203:188234 +k1,19382:11816273,23333203:188234 +k1,19382:12663799,23333203:188234 +k1,19382:15680566,23333203:188234 +k1,19382:17584533,23333203:188234 +k1,19382:20402727,23333203:188234 +k1,19382:24408433,23333203:188234 +k1,19382:26332060,23333203:188234 +k1,19382:29494973,23333203:188234 +k1,19382:32583029,23333203:0 +) +(1,19383:6630773,24198283:25952256,513147,134348 +k1,19382:7818998,24198283:240574 +k1,19382:11423535,24198283:240574 +(1,19382:11423535,24198283:0,459977,115847 +r1,19417:13540360,24198283:2116825,575824,115847 +k1,19382:11423535,24198283:-2116825 +) +(1,19382:11423535,24198283:2116825,459977,115847 +k1,19382:11423535,24198283:3277 +h1,19382:13537083,24198283:0,411205,112570 +) +k1,19382:13954604,24198283:240574 +(1,19382:13954604,24198283:0,452978,115847 +r1,19417:16774853,24198283:2820249,568825,115847 +k1,19382:13954604,24198283:-2820249 +) +(1,19382:13954604,24198283:2820249,452978,115847 +k1,19382:13954604,24198283:3277 +h1,19382:16771576,24198283:0,411205,112570 +) +k1,19382:17189097,24198283:240574 +(1,19382:17189097,24198283:0,452978,122846 +r1,19417:19657634,24198283:2468537,575824,122846 +k1,19382:17189097,24198283:-2468537 +) +(1,19382:17189097,24198283:2468537,452978,122846 +k1,19382:17189097,24198283:3277 +h1,19382:19654357,24198283:0,411205,112570 +) +k1,19382:20071879,24198283:240575 +(1,19382:20071879,24198283:0,452978,115847 +r1,19417:22892128,24198283:2820249,568825,115847 +k1,19382:20071879,24198283:-2820249 +) +(1,19382:20071879,24198283:2820249,452978,115847 +k1,19382:20071879,24198283:3277 +h1,19382:22888851,24198283:0,411205,112570 +) +k1,19382:23306372,24198283:240574 +(1,19382:23306372,24198283:0,452978,115847 +r1,19417:26126621,24198283:2820249,568825,115847 +k1,19382:23306372,24198283:-2820249 +) +(1,19382:23306372,24198283:2820249,452978,115847 +k1,19382:23306372,24198283:3277 +h1,19382:26123344,24198283:0,411205,112570 +) +k1,19382:26367195,24198283:240574 +k1,19382:27799214,24198283:240574 +(1,19382:27799214,24198283:0,452978,115847 +r1,19417:29564327,24198283:1765113,568825,115847 +k1,19382:27799214,24198283:-1765113 +) +(1,19382:27799214,24198283:1765113,452978,115847 +k1,19382:27799214,24198283:3277 +h1,19382:29561050,24198283:0,411205,112570 +) +k1,19382:29978571,24198283:240574 +k1,19382:31410590,24198283:240574 +k1,19382:32583029,24198283:0 +) +(1,19383:6630773,25063363:25952256,505283,134348 +k1,19382:9030872,25063363:205954 +k1,19382:12931090,25063363:205954 +(1,19382:12931090,25063363:0,452978,115847 +r1,19417:15751339,25063363:2820249,568825,115847 +k1,19382:12931090,25063363:-2820249 +) +(1,19382:12931090,25063363:2820249,452978,115847 +k1,19382:12931090,25063363:3277 +h1,19382:15748062,25063363:0,411205,112570 +) +k1,19382:15957294,25063363:205955 +k1,19382:17354693,25063363:205954 +(1,19382:17354693,25063363:0,452978,115847 +r1,19417:20526653,25063363:3171960,568825,115847 +k1,19382:17354693,25063363:-3171960 +) +(1,19382:17354693,25063363:3171960,452978,115847 +k1,19382:17354693,25063363:3277 +h1,19382:20523376,25063363:0,411205,112570 +) +k1,19382:20906277,25063363:205954 +k1,19382:22396737,25063363:205954 +k1,19382:26919548,25063363:205954 +k1,19382:28487997,25063363:205955 +k1,19382:30548620,25063363:205954 +k1,19382:31563944,25063363:205954 +k1,19382:32583029,25063363:0 +) +(1,19383:6630773,25928443:25952256,505283,134348 +g1,19382:9444233,25928443 +g1,19382:10259500,25928443 +g1,19382:11477814,25928443 +g1,19382:14201490,25928443 +k1,19383:32583029,25928443:16981690 +g1,19383:32583029,25928443 +) +(1,19385:6630773,26793523:25952256,505283,134348 +h1,19384:6630773,26793523:983040,0,0 +k1,19384:9840476,26793523:185872 +(1,19384:9840476,26793523:0,452978,122846 +r1,19417:13715860,26793523:3875384,575824,122846 +k1,19384:9840476,26793523:-3875384 +) +(1,19384:9840476,26793523:3875384,452978,122846 +k1,19384:9840476,26793523:3277 +h1,19384:13712583,26793523:0,411205,112570 +) +k1,19384:13901731,26793523:185871 +k1,19384:14770488,26793523:185872 +(1,19384:14770488,26793523:0,452978,122846 +r1,19417:18997584,26793523:4227096,575824,122846 +k1,19384:14770488,26793523:-4227096 +) +(1,19384:14770488,26793523:4227096,452978,122846 +k1,19384:14770488,26793523:3277 +h1,19384:18994307,26793523:0,411205,112570 +) +k1,19384:19183456,26793523:185872 +k1,19384:20360887,26793523:185871 +k1,19384:22059985,26793523:185872 +k1,19384:24926280,26793523:185872 +k1,19384:26506102,26793523:185871 +(1,19384:26506102,26793523:0,452978,122846 +r1,19417:30733198,26793523:4227096,575824,122846 +k1,19384:26506102,26793523:-4227096 +) +(1,19384:26506102,26793523:4227096,452978,122846 +k1,19384:26506102,26793523:3277 +h1,19384:30729921,26793523:0,411205,112570 +) +k1,19384:30919070,26793523:185872 +k1,19385:32583029,26793523:0 +) +(1,19385:6630773,27658603:25952256,505283,126483 +g1,19384:8040452,27658603 +g1,19384:8925843,27658603 +g1,19384:10505260,27658603 +g1,19384:11696049,27658603 +g1,19384:13408504,27658603 +g1,19384:14259161,27658603 +g1,19384:15655733,27658603 +g1,19384:17244325,27658603 +g1,19384:19287737,27658603 +g1,19384:20103004,27658603 +g1,19384:20658093,27658603 +k1,19385:32583029,27658603:10595211 +g1,19385:32583029,27658603 +) +v1,19387:6630773,28343458:0,393216,0 +(1,19394:6630773,30712282:25952256,2762040,196608 +g1,19394:6630773,30712282 +g1,19394:6630773,30712282 +g1,19394:6434165,30712282 +(1,19394:6434165,30712282:0,2762040,196608 +r1,19417:32779637,30712282:26345472,2958648,196608 +k1,19394:6434165,30712282:-26345472 +) +(1,19394:6434165,30712282:26345472,2762040,196608 +[1,19394:6630773,30712282:25952256,2565432,0 +(1,19389:6630773,28571289:25952256,424439,106246 +(1,19388:6630773,28571289:0,0,0 +g1,19388:6630773,28571289 +g1,19388:6630773,28571289 +g1,19388:6303093,28571289 +(1,19388:6303093,28571289:0,0,0 +) +g1,19388:6630773,28571289 +) +g1,19389:9286405,28571289 +k1,19389:9286405,28571289:0 +h1,19389:9950313,28571289:0,0,0 +k1,19389:32583029,28571289:22632716 +g1,19389:32583029,28571289 +) +(1,19390:6630773,29256144:25952256,431045,86428 +h1,19390:6630773,29256144:0,0,0 +g1,19390:6962727,29256144 +g1,19390:7294681,29256144 +g1,19390:11610082,29256144 +g1,19390:12273990,29256144 +k1,19390:12273990,29256144:0 +h1,19390:13601806,29256144:0,0,0 +k1,19390:32583030,29256144:18981224 +g1,19390:32583030,29256144 +) +(1,19391:6630773,29940999:25952256,424439,106246 +h1,19391:6630773,29940999:0,0,0 +g1,19391:6962727,29940999 +g1,19391:7294681,29940999 +g1,19391:7626635,29940999 +g1,19391:7958589,29940999 +g1,19391:8290543,29940999 +g1,19391:8622497,29940999 +g1,19391:8954451,29940999 +g1,19391:9286405,29940999 +g1,19391:9618359,29940999 +g1,19391:9950313,29940999 +g1,19391:10282267,29940999 +g1,19391:10614221,29940999 +g1,19391:10946175,29940999 +g1,19391:11610083,29940999 +g1,19391:12273991,29940999 +g1,19391:14597669,29940999 +k1,19391:14597669,29940999:0 +h1,19391:15593531,29940999:0,0,0 +k1,19391:32583029,29940999:16989498 +g1,19391:32583029,29940999 +) +(1,19392:6630773,30625854:25952256,431045,86428 +h1,19392:6630773,30625854:0,0,0 +g1,19392:6962727,30625854 +g1,19392:7294681,30625854 +g1,19392:7626635,30625854 +g1,19392:7958589,30625854 +g1,19392:8290543,30625854 +g1,19392:8622497,30625854 +g1,19392:8954451,30625854 +g1,19392:9286405,30625854 +g1,19392:9618359,30625854 +g1,19392:9950313,30625854 +g1,19392:10282267,30625854 +g1,19392:10614221,30625854 +g1,19392:10946175,30625854 +g1,19392:12937899,30625854 +g1,19392:13601807,30625854 +g1,19392:16257439,30625854 +g1,19392:18249163,30625854 +g1,19392:20240887,30625854 +g1,19392:22232611,30625854 +h1,19392:24224335,30625854:0,0,0 +k1,19392:32583029,30625854:8358694 +g1,19392:32583029,30625854 +) +] +) +g1,19394:32583029,30712282 +g1,19394:6630773,30712282 +g1,19394:6630773,30712282 +g1,19394:32583029,30712282 +g1,19394:32583029,30712282 +) +h1,19394:6630773,30908890:0,0,0 +v1,19398:6630773,31593745:0,393216,0 +(1,19405:6630773,33988993:25952256,2788464,196608 +g1,19405:6630773,33988993 +g1,19405:6630773,33988993 +g1,19405:6434165,33988993 +(1,19405:6434165,33988993:0,2788464,196608 +r1,19417:32779637,33988993:26345472,2985072,196608 +k1,19405:6434165,33988993:-26345472 +) +(1,19405:6434165,33988993:26345472,2788464,196608 +[1,19405:6630773,33988993:25952256,2591856,0 +(1,19400:6630773,31821576:25952256,424439,112852 +(1,19399:6630773,31821576:0,0,0 +g1,19399:6630773,31821576 +g1,19399:6630773,31821576 +g1,19399:6303093,31821576 +(1,19399:6303093,31821576:0,0,0 +) +g1,19399:6630773,31821576 +) +k1,19400:6630773,31821576:0 +g1,19400:10614221,31821576 +g1,19400:11278129,31821576 +k1,19400:11278129,31821576:0 +h1,19400:13933761,31821576:0,0,0 +k1,19400:32583029,31821576:18649268 +g1,19400:32583029,31821576 +) +(1,19401:6630773,32506431:25952256,424439,112852 +h1,19401:6630773,32506431:0,0,0 +g1,19401:6962727,32506431 +g1,19401:7294681,32506431 +g1,19401:7626635,32506431 +g1,19401:7958589,32506431 +g1,19401:8290543,32506431 +g1,19401:8622497,32506431 +g1,19401:8954451,32506431 +g1,19401:11610083,32506431 +g1,19401:12273991,32506431 +g1,19401:14597669,32506431 +g1,19401:15593531,32506431 +g1,19401:17585255,32506431 +g1,19401:18249163,32506431 +g1,19401:20904795,32506431 +h1,19401:21236749,32506431:0,0,0 +k1,19401:32583029,32506431:11346280 +g1,19401:32583029,32506431 +) +(1,19402:6630773,33191286:25952256,424439,112852 +h1,19402:6630773,33191286:0,0,0 +g1,19402:6962727,33191286 +g1,19402:7294681,33191286 +g1,19402:12605944,33191286 +g1,19402:13269852,33191286 +g1,19402:14597668,33191286 +g1,19402:16589392,33191286 +g1,19402:17253300,33191286 +g1,19402:18913070,33191286 +g1,19402:20572840,33191286 +g1,19402:21236748,33191286 +g1,19402:22232610,33191286 +h1,19402:22564564,33191286:0,0,0 +k1,19402:32583029,33191286:10018465 +g1,19402:32583029,33191286 +) +(1,19403:6630773,33876141:25952256,424439,112852 +h1,19403:6630773,33876141:0,0,0 +g1,19403:6962727,33876141 +g1,19403:7294681,33876141 +k1,19403:7294681,33876141:0 +h1,19403:11278128,33876141:0,0,0 +k1,19403:32583028,33876141:21304900 +g1,19403:32583028,33876141 +) +] +) +g1,19405:32583029,33988993 +g1,19405:6630773,33988993 +g1,19405:6630773,33988993 +g1,19405:32583029,33988993 +g1,19405:32583029,33988993 +) +h1,19405:6630773,34185601:0,0,0 +(1,19408:6630773,43334803:25952256,9083666,0 +k1,19408:10523651,43334803:3892878 +h1,19407:10523651,43334803:0,0,0 +(1,19407:10523651,43334803:18166500,9083666,0 +(1,19407:10523651,43334803:18167376,9083688,0 +(1,19407:10523651,43334803:18167376,9083688,0 +(1,19407:10523651,43334803:0,9083688,0 +(1,19407:10523651,43334803:0,14208860,0 +(1,19407:10523651,43334803:28417720,14208860,0 +) +k1,19407:10523651,43334803:-28417720 +) +) +g1,19407:28691027,43334803 +) +) +) +g1,19408:28690151,43334803 +k1,19408:32583029,43334803:3892878 +) +(1,19415:6630773,44199883:25952256,513147,126483 +h1,19414:6630773,44199883:983040,0,0 +k1,19414:8501707,44199883:260059 +k1,19414:9780852,44199883:260060 +k1,19414:11407992,44199883:260059 +k1,19414:12335207,44199883:260059 +(1,19414:12335207,44199883:0,452978,122846 +r1,19417:16562303,44199883:4227096,575824,122846 +k1,19414:12335207,44199883:-4227096 +) +(1,19414:12335207,44199883:4227096,452978,122846 +k1,19414:12335207,44199883:3277 +h1,19414:16559026,44199883:0,411205,112570 +) +k1,19414:16822362,44199883:260059 +k1,19414:18101507,44199883:260060 +k1,19414:19587745,44199883:260059 +k1,19414:20379301,44199883:260059 +k1,19414:23433160,44199883:260059 +k1,19414:24309258,44199883:260060 +k1,19414:24925177,44199883:260059 +k1,19414:26345223,44199883:260059 +k1,19414:27796728,44199883:260060 +k1,19414:29890484,44199883:260059 +k1,19414:31169628,44199883:260059 +(1,19414:31169628,44199883:0,459977,115847 +r1,19417:32583029,44199883:1413401,575824,115847 +k1,19414:31169628,44199883:-1413401 +) +(1,19414:31169628,44199883:1413401,459977,115847 +k1,19414:31169628,44199883:3277 +h1,19414:32579752,44199883:0,411205,112570 +) +k1,19414:32583029,44199883:0 +) +(1,19415:6630773,45064963:25952256,505283,134348 +k1,19414:9610563,45064963:192544 +k1,19414:10994553,45064963:192545 +k1,19414:14414090,45064963:192544 +k1,19414:18217669,45064963:192545 +k1,19414:21707329,45064963:192544 +k1,19414:24378446,45064963:192545 +k1,19414:25183752,45064963:192544 +k1,19414:26874450,45064963:192545 +h1,19414:28069827,45064963:0,0,0 +k1,19414:28469465,45064963:192544 +k1,19414:31333913,45064963:192545 +k1,19415:32583029,45064963:0 +) +] +(1,19417:32583029,45706769:0,0,0 +g1,19417:32583029,45706769 ) ) ] -(1,19419:6630773,47279633:25952256,0,0 -h1,19419:6630773,47279633:25952256,0,0 +(1,19417:6630773,47279633:25952256,0,0 +h1,19417:6630773,47279633:25952256,0,0 ) ] -(1,19419:4262630,4025873:0,0,0 -[1,19419:-473656,4025873:0,0,0 -(1,19419:-473656,-710413:0,0,0 -(1,19419:-473656,-710413:0,0,0 -g1,19419:-473656,-710413 +(1,19417:4262630,4025873:0,0,0 +[1,19417:-473656,4025873:0,0,0 +(1,19417:-473656,-710413:0,0,0 +(1,19417:-473656,-710413:0,0,0 +g1,19417:-473656,-710413 ) -g1,19419:-473656,-710413 +g1,19417:-473656,-710413 ) ] ) ] !23841 -}322 -Input:3417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3418:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3419:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3420:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}323 Input:3421:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3422:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3423:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -338315,1955 +338519,1955 @@ Input:3431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3434:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3436:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3437:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3438:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{323 -[1,19459:4262630,47279633:28320399,43253760,0 -(1,19459:4262630,4025873:0,0,0 -[1,19459:-473656,4025873:0,0,0 -(1,19459:-473656,-710413:0,0,0 -(1,19459:-473656,-644877:0,0,0 -k1,19459:-473656,-644877:-65536 +{324 +[1,19457:4262630,47279633:28320399,43253760,0 +(1,19457:4262630,4025873:0,0,0 +[1,19457:-473656,4025873:0,0,0 +(1,19457:-473656,-710413:0,0,0 +(1,19457:-473656,-644877:0,0,0 +k1,19457:-473656,-644877:-65536 ) -(1,19459:-473656,4736287:0,0,0 -k1,19459:-473656,4736287:5209943 +(1,19457:-473656,4736287:0,0,0 +k1,19457:-473656,4736287:5209943 ) -g1,19459:-473656,-710413 +g1,19457:-473656,-710413 ) ] ) -[1,19459:6630773,47279633:25952256,43253760,0 -[1,19459:6630773,4812305:25952256,786432,0 -(1,19459:6630773,4812305:25952256,513147,126483 -(1,19459:6630773,4812305:25952256,513147,126483 -g1,19459:3078558,4812305 -[1,19459:3078558,4812305:0,0,0 -(1,19459:3078558,2439708:0,1703936,0 -k1,19459:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19459:2537886,2439708:1179648,16384,0 +[1,19457:6630773,47279633:25952256,43253760,0 +[1,19457:6630773,4812305:25952256,786432,0 +(1,19457:6630773,4812305:25952256,513147,126483 +(1,19457:6630773,4812305:25952256,513147,126483 +g1,19457:3078558,4812305 +[1,19457:3078558,4812305:0,0,0 +(1,19457:3078558,2439708:0,1703936,0 +k1,19457:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19457:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19459:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19457:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19459:3078558,4812305:0,0,0 -(1,19459:3078558,2439708:0,1703936,0 -g1,19459:29030814,2439708 -g1,19459:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19459:36151628,1915420:16384,1179648,0 +[1,19457:3078558,4812305:0,0,0 +(1,19457:3078558,2439708:0,1703936,0 +g1,19457:29030814,2439708 +g1,19457:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19457:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19459:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19457:37855564,2439708:1179648,16384,0 ) ) -k1,19459:3078556,2439708:-34777008 +k1,19457:3078556,2439708:-34777008 ) ] -[1,19459:3078558,4812305:0,0,0 -(1,19459:3078558,49800853:0,16384,2228224 -k1,19459:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19459:2537886,49800853:1179648,16384,0 +[1,19457:3078558,4812305:0,0,0 +(1,19457:3078558,49800853:0,16384,2228224 +k1,19457:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19457:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19459:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19457:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19459:3078558,4812305:0,0,0 -(1,19459:3078558,49800853:0,16384,2228224 -g1,19459:29030814,49800853 -g1,19459:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19459:36151628,51504789:16384,1179648,0 +[1,19457:3078558,4812305:0,0,0 +(1,19457:3078558,49800853:0,16384,2228224 +g1,19457:29030814,49800853 +g1,19457:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19457:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19459:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19457:37855564,49800853:1179648,16384,0 ) ) -k1,19459:3078556,49800853:-34777008 +k1,19457:3078556,49800853:-34777008 ) ] -g1,19459:6630773,4812305 -k1,19459:21386205,4812305:13560055 -g1,19459:21999622,4812305 -g1,19459:25611966,4812305 -g1,19459:28956923,4812305 -g1,19459:29772190,4812305 -) -) -] -[1,19459:6630773,45706769:25952256,40108032,0 -(1,19459:6630773,45706769:25952256,40108032,0 -(1,19459:6630773,45706769:0,0,0 -g1,19459:6630773,45706769 +g1,19457:6630773,4812305 +k1,19457:21386205,4812305:13560055 +g1,19457:21999622,4812305 +g1,19457:25611966,4812305 +g1,19457:28956923,4812305 +g1,19457:29772190,4812305 +) +) +] +[1,19457:6630773,45706769:25952256,40108032,0 +(1,19457:6630773,45706769:25952256,40108032,0 +(1,19457:6630773,45706769:0,0,0 +g1,19457:6630773,45706769 ) -[1,19459:6630773,45706769:25952256,40108032,0 -(1,19417:6630773,6254097:25952256,513147,134348 -k1,19416:7980345,6254097:204658 -k1,19416:8844295,6254097:204658 -k1,19416:10068037,6254097:204657 -k1,19416:12141782,6254097:204658 -k1,19416:13537885,6254097:204658 -k1,19416:15011320,6254097:204658 -k1,19416:15875270,6254097:204658 -k1,19416:17099012,6254097:204657 -k1,19416:18637328,6254097:204658 -k1,19416:20883432,6254097:204658 -k1,19416:23916623,6254097:204658 -k1,19416:25837668,6254097:204657 -(1,19416:25837668,6254097:0,452978,122846 -r1,19459:30064764,6254097:4227096,575824,122846 -k1,19416:25837668,6254097:-4227096 -) -(1,19416:25837668,6254097:4227096,452978,122846 -k1,19416:25837668,6254097:3277 -h1,19416:30061487,6254097:0,411205,112570 -) -k1,19416:30269422,6254097:204658 -k1,19416:31516758,6254097:204658 -k1,19416:32583029,6254097:0 -) -(1,19417:6630773,7119177:25952256,505283,126483 -g1,19416:9356415,7119177 -g1,19416:12118757,7119177 -g1,19416:13711937,7119177 -g1,19416:14930251,7119177 -(1,19416:14930251,7119177:0,452978,122846 -r1,19459:16695364,7119177:1765113,575824,122846 -k1,19416:14930251,7119177:-1765113 -) -(1,19416:14930251,7119177:1765113,452978,122846 -k1,19416:14930251,7119177:3277 -h1,19416:16692087,7119177:0,411205,112570 -) -g1,19416:16894593,7119177 -k1,19417:32583029,7119177:12791745 -g1,19417:32583029,7119177 -) -v1,19419:6630773,7984257:0,393216,0 -(1,19420:6630773,9256162:25952256,1665121,0 -g1,19420:6630773,9256162 -g1,19420:6237557,9256162 -r1,19459:6368629,9256162:131072,1665121,0 -g1,19420:6567858,9256162 -g1,19420:6764466,9256162 -[1,19420:6764466,9256162:25818563,1665121,0 -(1,19420:6764466,8256734:25818563,665693,196608 -(1,19419:6764466,8256734:0,665693,196608 -r1,19459:7868133,8256734:1103667,862301,196608 -k1,19419:6764466,8256734:-1103667 -) -(1,19419:6764466,8256734:1103667,665693,196608 -) -k1,19419:8108751,8256734:240618 -k1,19419:9834969,8256734:327680 -k1,19419:12281529,8256734:240618 -k1,19419:13541231,8256734:240617 -k1,19419:16443266,8256734:240618 -k1,19419:18539208,8256734:240618 -k1,19419:19431254,8256734:240618 -k1,19419:20764357,8256734:240618 -(1,19419:20764357,8256734:0,452978,122846 -r1,19459:24991453,8256734:4227096,575824,122846 -k1,19419:20764357,8256734:-4227096 -) -(1,19419:20764357,8256734:4227096,452978,122846 -k1,19419:20764357,8256734:3277 -h1,19419:24988176,8256734:0,411205,112570 -) -k1,19419:25232070,8256734:240617 -k1,19419:27799871,8256734:240618 -k1,19419:28707645,8256734:240618 -(1,19419:28707645,8256734:0,452978,122846 -r1,19459:32583029,8256734:3875384,575824,122846 -k1,19419:28707645,8256734:-3875384 -) -(1,19419:28707645,8256734:3875384,452978,122846 -k1,19419:28707645,8256734:3277 -h1,19419:32579752,8256734:0,411205,112570 -) -k1,19419:32583029,8256734:0 -) -(1,19420:6764466,9121814:25818563,505283,134348 -g1,19419:8872759,9121814 -g1,19419:9688026,9121814 -g1,19419:12726930,9121814 -g1,19419:13945244,9121814 -(1,19419:13945244,9121814:0,459977,115847 -r1,19459:15358645,9121814:1413401,575824,115847 -k1,19419:13945244,9121814:-1413401 -) -(1,19419:13945244,9121814:1413401,459977,115847 -k1,19419:13945244,9121814:3277 -h1,19419:15355368,9121814:0,411205,112570 -) -g1,19419:15557874,9121814 -k1,19420:32583029,9121814:14128464 -g1,19420:32583029,9121814 -) -] -g1,19420:32583029,9256162 -) -h1,19420:6630773,9256162:0,0,0 -(1,19423:6630773,10121242:25952256,513147,134348 -h1,19422:6630773,10121242:983040,0,0 -k1,19422:8275391,10121242:173990 -k1,19422:9881367,10121242:174014 -k1,19422:11386418,10121242:174015 -k1,19422:12091930,10121242:174015 -k1,19422:13200487,10121242:174014 -k1,19422:14136030,10121242:174015 -k1,19422:16737499,10121242:174015 -(1,19422:16737499,10121242:0,459977,115847 -r1,19459:22371443,10121242:5633944,575824,115847 -k1,19422:16737499,10121242:-5633944 -) -(1,19422:16737499,10121242:5633944,459977,115847 -g1,19422:19202759,10121242 -g1,19422:19906183,10121242 -h1,19422:22368166,10121242:0,411205,112570 -) -k1,19422:22719127,10121242:174014 -k1,19422:24089829,10121242:174015 -k1,19422:26332160,10121242:174015 -(1,19422:26332160,10121242:0,452978,115847 -r1,19459:28448985,10121242:2116825,568825,115847 -k1,19422:26332160,10121242:-2116825 -) -(1,19422:26332160,10121242:2116825,452978,115847 -k1,19422:26332160,10121242:3277 -h1,19422:28445708,10121242:0,411205,112570 -) -k1,19422:28622999,10121242:174014 -k1,19422:30023193,10121242:174015 -k1,19423:32583029,10121242:0 -) -(1,19423:6630773,10986322:25952256,505283,134348 -(1,19422:6630773,10986322:0,459977,115847 -r1,19459:9099310,10986322:2468537,575824,115847 -k1,19422:6630773,10986322:-2468537 -) -(1,19422:6630773,10986322:2468537,459977,115847 -k1,19422:6630773,10986322:3277 -h1,19422:9096033,10986322:0,411205,112570 -) -k1,19422:9256721,10986322:157411 -k1,19422:10605578,10986322:157412 -(1,19422:10605578,10986322:0,452978,115847 -r1,19459:12722403,10986322:2116825,568825,115847 -k1,19422:10605578,10986322:-2116825 -) -(1,19422:10605578,10986322:2116825,452978,115847 -k1,19422:10605578,10986322:3277 -h1,19422:12719126,10986322:0,411205,112570 -) -k1,19422:12879814,10986322:157411 -k1,19422:14028786,10986322:157412 -k1,19422:17638634,10986322:157411 -k1,19422:18557574,10986322:157412 -k1,19422:19481101,10986322:157411 -k1,19422:22357601,10986322:157411 -k1,19422:24852682,10986322:157412 -k1,19422:25819463,10986322:157411 -k1,19422:26742991,10986322:157412 -k1,19422:29954380,10986322:157411 -k1,19422:32583029,10986322:0 -) -(1,19423:6630773,11851402:25952256,513147,126483 -k1,19422:8328210,11851402:161273 -k1,19422:9304751,11851402:161273 -k1,19422:10532295,11851402:161273 -k1,19422:14208919,11851402:161273 -k1,19422:18003508,11851402:161273 -k1,19422:18816209,11851402:161273 -k1,19422:21714266,11851402:161274 -k1,19422:23536877,11851402:161273 -k1,19422:24314188,11851402:161273 -k1,19422:27237804,11851402:161273 -k1,19422:30805638,11851402:161273 -k1,19422:31649796,11851402:161273 -k1,19422:32583029,11851402:0 -) -(1,19423:6630773,12716482:25952256,513147,134348 -k1,19422:9657285,12716482:264169 -k1,19422:12310242,12716482:264170 -k1,19422:15085751,12716482:264169 -k1,19422:16422090,12716482:264170 -k1,19422:19013442,12716482:264169 -k1,19422:19929040,12716482:264170 -k1,19422:21854547,12716482:264169 -k1,19422:23403223,12716482:264170 -k1,19422:24658952,12716482:264169 -k1,19422:27298802,12716482:264170 -k1,19422:30921691,12716482:264169 -k1,19422:32583029,12716482:0 -) -(1,19423:6630773,13581562:25952256,513147,134348 -k1,19422:7828802,13581562:206469 -k1,19422:10819240,13581562:206469 -k1,19422:11973361,13581562:206470 -k1,19422:14577137,13581562:206469 -k1,19422:17172393,13581562:206469 -k1,19422:19890202,13581562:206469 -k1,19422:21590238,13581562:206470 -k1,19422:22482869,13581562:206469 -k1,19422:23708423,13581562:206469 -k1,19422:24711810,13581562:206469 -k1,19422:26756557,13581562:206462 -k1,19422:28624365,13581562:206470 -k1,19422:29592362,13581562:206469 -k1,19422:30817916,13581562:206469 -(1,19422:30817916,13581562:0,459977,115847 -r1,19459:32583029,13581562:1765113,575824,115847 -k1,19422:30817916,13581562:-1765113 -) -(1,19422:30817916,13581562:1765113,459977,115847 -k1,19422:30817916,13581562:3277 -h1,19422:32579752,13581562:0,411205,112570 -) -k1,19422:32583029,13581562:0 -) -(1,19423:6630773,14446642:25952256,505283,126483 -g1,19422:9011040,14446642 -g1,19422:9838104,14446642 -g1,19422:11240574,14446642 -g1,19422:12980554,14446642 -g1,19422:14688422,14446642 -g1,19422:16955967,14446642 -g1,19422:18259478,14446642 -g1,19422:19206473,14446642 -g1,19422:21829879,14446642 -g1,19422:23423059,14446642 -(1,19422:23423059,14446642:0,459977,115847 -r1,19459:29408714,14446642:5985655,575824,115847 -k1,19422:23423059,14446642:-5985655 -) -(1,19422:23423059,14446642:5985655,459977,115847 -k1,19422:23423059,14446642:3277 -h1,19422:29405437,14446642:0,411205,112570 -) -k1,19423:32583029,14446642:3121887 -g1,19423:32583029,14446642 -) -v1,19425:6630773,15131497:0,393216,0 -(1,19432:6630773,17526745:25952256,2788464,196608 -g1,19432:6630773,17526745 -g1,19432:6630773,17526745 -g1,19432:6434165,17526745 -(1,19432:6434165,17526745:0,2788464,196608 -r1,19459:32779637,17526745:26345472,2985072,196608 -k1,19432:6434165,17526745:-26345472 -) -(1,19432:6434165,17526745:26345472,2788464,196608 -[1,19432:6630773,17526745:25952256,2591856,0 -(1,19427:6630773,15359328:25952256,424439,112852 -(1,19426:6630773,15359328:0,0,0 -g1,19426:6630773,15359328 -g1,19426:6630773,15359328 -g1,19426:6303093,15359328 -(1,19426:6303093,15359328:0,0,0 -) -g1,19426:6630773,15359328 -) -k1,19427:6630773,15359328:0 -g1,19427:10614221,15359328 -g1,19427:11278129,15359328 -k1,19427:11278129,15359328:0 -h1,19427:13933761,15359328:0,0,0 -k1,19427:32583029,15359328:18649268 -g1,19427:32583029,15359328 -) -(1,19428:6630773,16044183:25952256,424439,112852 -h1,19428:6630773,16044183:0,0,0 -g1,19428:6962727,16044183 -g1,19428:7294681,16044183 -g1,19428:7626635,16044183 -g1,19428:7958589,16044183 -g1,19428:8290543,16044183 -g1,19428:8622497,16044183 -g1,19428:8954451,16044183 -g1,19428:11610083,16044183 -g1,19428:12273991,16044183 -g1,19428:14597669,16044183 -g1,19428:15593531,16044183 -g1,19428:17585255,16044183 -g1,19428:18249163,16044183 -g1,19428:20904795,16044183 -h1,19428:21236749,16044183:0,0,0 -k1,19428:32583029,16044183:11346280 -g1,19428:32583029,16044183 -) -(1,19429:6630773,16729038:25952256,431045,112852 -h1,19429:6630773,16729038:0,0,0 -g1,19429:6962727,16729038 -g1,19429:7294681,16729038 -g1,19429:12605944,16729038 -g1,19429:13269852,16729038 -g1,19429:14597668,16729038 -g1,19429:16589392,16729038 -g1,19429:17253300,16729038 -g1,19429:18913070,16729038 -g1,19429:20572840,16729038 -g1,19429:21236748,16729038 -g1,19429:22232610,16729038 -g1,19429:24556288,16729038 -g1,19429:25220196,16729038 -g1,19429:28207782,16729038 -h1,19429:28539736,16729038:0,0,0 -k1,19429:32583029,16729038:4043293 -g1,19429:32583029,16729038 -) -(1,19430:6630773,17413893:25952256,424439,112852 -h1,19430:6630773,17413893:0,0,0 -g1,19430:6962727,17413893 -g1,19430:7294681,17413893 -k1,19430:7294681,17413893:0 -h1,19430:11278128,17413893:0,0,0 -k1,19430:32583028,17413893:21304900 -g1,19430:32583028,17413893 -) -] -) -g1,19432:32583029,17526745 -g1,19432:6630773,17526745 -g1,19432:6630773,17526745 -g1,19432:32583029,17526745 -g1,19432:32583029,17526745 -) -h1,19432:6630773,17723353:0,0,0 -v1,19436:6630773,18588433:0,393216,0 -(1,19437:6630773,21464013:25952256,3268796,0 -g1,19437:6630773,21464013 -g1,19437:6237557,21464013 -r1,19459:6368629,21464013:131072,3268796,0 -g1,19437:6567858,21464013 -g1,19437:6764466,21464013 -[1,19437:6764466,21464013:25818563,3268796,0 -(1,19437:6764466,18860910:25818563,665693,196608 -(1,19436:6764466,18860910:0,665693,196608 -r1,19459:7868133,18860910:1103667,862301,196608 -k1,19436:6764466,18860910:-1103667 -) -(1,19436:6764466,18860910:1103667,665693,196608 -) -k1,19436:8068317,18860910:200184 -k1,19436:9794535,18860910:327680 -k1,19436:10622554,18860910:200184 -k1,19436:11841824,18860910:200185 -k1,19436:15033727,18860910:200184 -k1,19436:17089235,18860910:200184 -k1,19436:18308504,18860910:200184 -k1,19436:21483368,18860910:200185 -k1,19436:23879663,18860910:200184 -k1,19436:25583898,18860910:200184 -k1,19436:26550198,18860910:200184 -k1,19436:27409675,18860910:200185 -k1,19436:28628944,18860910:200184 -k1,19436:30482601,18860910:200184 -k1,19436:32583029,18860910:0 -) -(1,19437:6764466,19725990:25818563,505283,134348 -k1,19436:10344698,19725990:218235 -k1,19436:10918793,19725990:218235 -k1,19436:13010047,19725990:218235 -k1,19436:16376632,19725990:218235 -k1,19436:18202465,19725990:218235 -k1,19436:19439784,19725990:218234 -k1,19436:21265617,19725990:218235 -k1,19436:23339176,19725990:218235 -k1,19436:24951362,19725990:218235 -k1,19436:27194004,19725990:218235 -k1,19436:30386918,19725990:218235 -k1,19436:32583029,19725990:0 -) -(1,19437:6764466,20591070:25818563,513147,134348 -k1,19436:7656064,20591070:232306 -k1,19436:10230627,20591070:232306 -k1,19436:12806501,20591070:232307 -k1,19436:15624202,20591070:232306 -k1,19436:16507936,20591070:232306 -k1,19436:17759327,20591070:232306 -(1,19436:17759327,20591070:0,452978,115847 -r1,19459:19524440,20591070:1765113,568825,115847 -k1,19436:17759327,20591070:-1765113 -) -(1,19436:17759327,20591070:1765113,452978,115847 -k1,19436:17759327,20591070:3277 -h1,19436:19521163,20591070:0,411205,112570 -) -k1,19436:19756746,20591070:232306 -k1,19436:22915889,20591070:232306 -k1,19436:24046039,20591070:232307 -k1,19436:25564161,20591070:232306 -k1,19436:27139300,20591070:232306 -k1,19436:28765557,20591070:232306 -k1,19436:32583029,20591070:0 -) -(1,19437:6764466,21456150:25818563,513147,7863 -g1,19436:7622987,21456150 -g1,19436:9518943,21456150 -k1,19437:32583029,21456150:21167474 -g1,19437:32583029,21456150 -) -] -g1,19437:32583029,21464013 -) -h1,19437:6630773,21464013:0,0,0 -v1,19440:6630773,22329093:0,393216,0 -(1,19441:6630773,36634441:25952256,14698564,0 -g1,19441:6630773,36634441 -g1,19441:6237557,36634441 -r1,19459:6368629,36634441:131072,14698564,0 -g1,19441:6567858,36634441 -g1,19441:6764466,36634441 -[1,19441:6764466,36634441:25818563,14698564,0 -(1,19441:6764466,22690270:25818563,754393,260573 -(1,19440:6764466,22690270:0,754393,260573 -r1,19459:7856192,22690270:1091726,1014966,260573 -k1,19440:6764466,22690270:-1091726 -) -(1,19440:6764466,22690270:1091726,754393,260573 -) -k1,19440:8059513,22690270:203321 -k1,19440:8387193,22690270:327680 -k1,19440:9005353,22690270:203317 -k1,19440:9005353,22690270:0 -k1,19440:10400119,22690270:203321 -k1,19440:13431974,22690270:203322 -k1,19440:16161708,22690270:203321 -k1,19440:17384114,22690270:203321 -k1,19440:18679920,22690270:203321 -k1,19440:19542533,22690270:203321 -k1,19440:22934835,22690270:203321 -k1,19440:24631723,22690270:203322 -k1,19440:25521206,22690270:203321 -k1,19440:27387831,22690270:203321 -k1,19440:30565831,22690270:203321 -k1,19441:32583029,22690270:0 -) -(1,19441:6764466,23555350:25818563,513147,134348 -k1,19440:8307316,23555350:222300 -k1,19440:9145653,23555350:222299 -k1,19440:11737735,23555350:222300 -k1,19440:12437792,23555350:222300 -k1,19440:14118923,23555350:222300 -k1,19440:16250286,23555350:222299 -k1,19440:17155471,23555350:222300 -k1,19440:18464990,23555350:222277 -k1,19440:21544004,23555350:222300 -k1,19440:23274942,23555350:222299 -k1,19440:24763398,23555350:222300 -k1,19440:26419626,23555350:222300 -k1,19440:27812399,23555350:222300 -k1,19440:29138980,23555350:222299 -k1,19440:30747366,23555350:222300 -k1,19440:32583029,23555350:0 -) -(1,19441:6764466,24420430:25818563,505283,126483 -k1,19440:8991433,24420430:194696 -k1,19440:10377575,24420430:194697 -k1,19440:12696948,24420430:194696 -k1,19440:14869522,24420430:194697 -k1,19440:17705974,24420430:194696 -k1,19440:20488688,24420430:194697 -k1,19440:21874829,24420430:194696 -k1,19440:23449714,24420430:194697 -k1,19440:25069163,24420430:194696 -k1,19440:26924542,24420430:194697 -k1,19440:29928111,24420430:194696 -k1,19440:30738846,24420430:194697 -k1,19440:32583029,24420430:0 -) -(1,19441:6764466,25285510:25818563,513147,134348 -k1,19440:7471927,25285510:241500 -k1,19440:8069287,25285510:241500 -k1,19440:10822783,25285510:241501 -k1,19440:12395319,25285510:241500 -k1,19440:13168316,25285510:241500 -k1,19440:15554154,25285510:241500 -k1,19440:16987099,25285510:241500 -k1,19440:17999303,25285510:241501 -k1,19440:21161087,25285510:241500 -k1,19440:24303866,25285510:241500 -k1,19440:25691591,25285510:241500 -k1,19440:27596395,25285510:241500 -k1,19440:28369392,25285510:241500 -k1,19440:29226931,25285510:241501 -k1,19440:30560916,25285510:241500 -k1,19440:31563944,25285510:241500 -k1,19440:32583029,25285510:0 -) -(1,19441:6764466,26150590:25818563,513147,134348 -k1,19440:9995260,26150590:176816 -k1,19440:12591665,26150590:176816 -k1,19440:14258770,26150590:176816 -k1,19440:14901547,26150590:176816 -k1,19440:16741667,26150590:176816 -k1,19440:17449980,26150590:176816 -k1,19440:18242834,26150590:176816 -k1,19440:19685807,26150590:176817 -k1,19440:21088802,26150590:176816 -k1,19440:21797115,26150590:176816 -k1,19440:23040202,26150590:176816 -k1,19440:24667985,26150590:176816 -k1,19440:27514082,26150590:176816 -k1,19440:29733655,26150590:176816 -k1,19440:30929556,26150590:176816 -k1,19440:32583029,26150590:0 -) -(1,19441:6764466,27015670:25818563,513147,126483 -k1,19440:8289741,27015670:194239 -k1,19440:9015476,27015670:194238 -k1,19440:12167354,27015670:194239 -k1,19440:13047754,27015670:194238 -k1,19440:14708689,27015670:194239 -k1,19440:15368889,27015670:194239 -k1,19440:16582212,27015670:194238 -k1,19440:19751130,27015670:194239 -k1,19440:22889902,27015670:194239 -k1,19440:24075700,27015670:194238 -k1,19440:28413125,27015670:194239 -k1,19440:29555014,27015670:194238 -k1,19440:31501030,27015670:194239 -k1,19441:32583029,27015670:0 -) -(1,19441:6764466,27880750:25818563,513147,134348 -k1,19440:9404699,27880750:269796 -k1,19440:11276194,27880750:269795 -k1,19440:14561230,27880750:269725 -k1,19440:16492364,27880750:269796 -k1,19440:19288573,27880750:269796 -k1,19440:20171131,27880750:269796 -k1,19440:22042626,27880750:269795 -k1,19440:22668282,27880750:269796 -k1,19440:24654466,27880750:269796 -k1,19440:27410043,27880750:269796 -k1,19440:28339130,27880750:269795 -k1,19440:31955194,27880750:269796 -k1,19440:32583029,27880750:0 -) -(1,19441:6764466,28745830:25818563,505283,134348 -k1,19440:9833298,28745830:235711 -k1,19440:11225720,28745830:235712 -k1,19440:12565713,28745830:235711 -k1,19440:13893909,28745830:235711 -k1,19440:15332861,28745830:235711 -k1,19440:19206476,28745830:235712 -k1,19440:20093615,28745830:235711 -k1,19440:21804541,28745830:235711 -k1,19440:23884435,28745830:235711 -k1,19440:25586843,28745830:235712 -k1,19440:27557947,28745830:235711 -k1,19440:29495628,28745830:235711 -k1,19440:32583029,28745830:0 -) -(1,19441:6764466,29610910:25818563,513147,134348 -k1,19440:8112323,29610910:156412 -k1,19440:11441334,29610910:156413 -k1,19440:12743971,29610910:156412 -k1,19440:15411724,29610910:156413 -k1,19440:16962087,29610910:156412 -k1,19440:18627138,29610910:156412 -k1,19440:22008578,29610910:156413 -k1,19440:24806746,29610910:156412 -k1,19440:26917443,29610910:156413 -k1,19440:27689893,29610910:156412 -k1,19440:28865391,29610910:156413 -k1,19440:30675276,29610910:156412 -k1,19440:32583029,29610910:0 -) -(1,19441:6764466,30475990:25818563,513147,126483 -k1,19440:11123705,30475990:165590 -k1,19440:12308381,30475990:165591 -k1,19440:15000384,30475990:165590 -k1,19440:16113625,30475990:165590 -k1,19440:17940553,30475990:165590 -k1,19440:19297589,30475990:165591 -k1,19440:23688285,30475990:165590 -k1,19440:26828554,30475990:165590 -k1,19440:28258990,30475990:165591 -k1,19440:29040618,30475990:165590 -k1,19440:29621018,30475990:165557 -k1,19440:30318105,30475990:165590 -k1,19441:32583029,30475990:0 -) -(1,19441:6764466,31341070:25818563,513147,134348 -k1,19440:8949136,31341070:177302 -k1,19440:12690941,31341070:177302 -k1,19440:14064929,31341070:177301 -k1,19440:15573267,31341070:177302 -k1,19440:18651848,31341070:177302 -k1,19440:20342376,31341070:177302 -k1,19440:21281205,31341070:177301 -k1,19440:21873328,31341070:177280 -k1,19440:22812158,31341070:177302 -k1,19440:25255040,31341070:177302 -k1,19440:28134390,31341070:177301 -k1,19440:29121062,31341070:177302 -k1,19440:30317449,31341070:177302 -k1,19440:32583029,31341070:0 -) -(1,19441:6764466,32206150:25818563,513147,134348 -k1,19440:8802888,32206150:196860 -k1,19440:11511743,32206150:196860 -k1,19440:12367895,32206150:196860 -k1,19440:13583840,32206150:196860 -k1,19440:16834678,32206150:196860 -k1,19440:19451127,32206150:196860 -k1,19440:21533458,32206150:196860 -k1,19440:22834600,32206150:196860 -k1,19440:24317276,32206150:196860 -k1,19440:25843206,32206150:196860 -k1,19440:26691494,32206150:196860 -k1,19440:29384620,32206150:196860 -k1,19440:31931601,32206150:196860 -k1,19440:32583029,32206150:0 -) -(1,19441:6764466,33071230:25818563,513147,134348 -k1,19440:7987519,33071230:203968 -k1,19440:10611732,33071230:203968 -k1,19440:11498585,33071230:203968 -k1,19440:13695503,33071230:203968 -k1,19440:17204452,33071230:203968 -k1,19440:19146435,33071230:203968 -k1,19440:21652684,33071230:203969 -k1,19440:24379788,33071230:203968 -k1,19440:25602841,33071230:203968 -k1,19440:27460282,33071230:203968 -k1,19440:29160437,33071230:203968 -k1,19440:30173775,33071230:203968 -k1,19440:30733603,33071230:203968 -k1,19441:32583029,33071230:0 -) -(1,19441:6764466,33936310:25818563,513147,134348 -k1,19440:7997635,33936310:214084 -k1,19440:11287980,33936310:214085 -k1,19440:13069685,33936310:214084 -k1,19440:14302854,33936310:214084 -k1,19440:15673649,33936310:214085 -k1,19440:17806627,33936310:214084 -k1,19440:18376571,33936310:214084 -k1,19440:20421732,33936310:214085 -k1,19440:21842989,33936310:214084 -k1,19440:24580864,33936310:214084 -k1,19440:25938552,33936310:214085 -k1,19440:26918752,33936310:214084 -k1,19440:27664333,33936310:214084 -k1,19440:29238945,33936310:214085 -k1,19440:31896867,33936310:214084 -k1,19441:32583029,33936310:0 -) -(1,19441:6764466,34801390:25818563,513147,134348 -k1,19440:7418982,34801390:239673 -k1,19440:8762977,34801390:239713 -k1,19440:9750457,34801390:239714 -k1,19440:12455634,34801390:239713 -k1,19440:13346776,34801390:239714 -k1,19440:14678974,34801390:239713 -k1,19440:17164607,34801390:239714 -k1,19440:19065658,34801390:239713 -k1,19440:20496817,34801390:239714 -k1,19440:22931986,34801390:239713 -k1,19440:24833038,34801390:239714 -k1,19440:26466702,34801390:239713 -k1,19440:29732213,34801390:239714 -k1,19440:32583029,34801390:0 -) -(1,19441:6764466,35666470:25818563,513147,134348 -k1,19440:7773884,35666470:247890 -k1,19440:10932229,35666470:247891 -k1,19440:14431359,35666470:247890 -k1,19440:15870694,35666470:247890 -k1,19440:19575607,35666470:247890 -k1,19440:25183032,35666470:247891 -k1,19440:28611384,35666470:247890 -k1,19440:31966991,35666470:247890 -k1,19440:32583029,35666470:0 -) -(1,19441:6764466,36531550:25818563,505283,102891 -g1,19440:11157999,36531550 -g1,19440:12348788,36531550 -k1,19441:32583028,36531550:17404396 -g1,19441:32583028,36531550 -) -] -g1,19441:32583029,36634441 -) -h1,19441:6630773,36634441:0,0,0 -(1,19444:6630773,37499521:25952256,505283,134348 -h1,19443:6630773,37499521:983040,0,0 -k1,19443:10378912,37499521:285872 -k1,19443:15402382,37499521:285872 -k1,19443:19458540,37499521:285872 -k1,19443:22352090,37499521:285872 -k1,19443:25445524,37499521:285872 -k1,19443:26382824,37499521:285872 -k1,19443:27687781,37499521:285872 -(1,19443:27687781,37499521:0,452978,115847 -r1,19459:29452894,37499521:1765113,568825,115847 -k1,19443:27687781,37499521:-1765113 -) -(1,19443:27687781,37499521:1765113,452978,115847 -k1,19443:27687781,37499521:3277 -h1,19443:29449617,37499521:0,411205,112570 -) -k1,19443:29738766,37499521:285872 -k1,19443:32583029,37499521:0 -) -(1,19444:6630773,38364601:25952256,505283,134348 -k1,19443:9789010,38364601:183558 -k1,19443:12168679,38364601:183558 -k1,19443:13636743,38364601:183558 -k1,19443:14924583,38364601:183558 -k1,19443:15855907,38364601:183558 -k1,19443:18202808,38364601:183558 -k1,19443:19072528,38364601:183558 -k1,19443:23200043,38364601:183558 -k1,19443:24575046,38364601:183558 -k1,19443:26940298,38364601:183558 -(1,19443:26940298,38364601:0,414482,115847 -r1,19459:31167394,38364601:4227096,530329,115847 -k1,19443:26940298,38364601:-4227096 -) -(1,19443:26940298,38364601:4227096,414482,115847 -g1,19443:29053846,38364601 -g1,19443:29757270,38364601 -h1,19443:31164117,38364601:0,411205,112570 -) -k1,19443:31350952,38364601:183558 -k1,19443:32583029,38364601:0 -) -(1,19444:6630773,39229681:25952256,505283,134348 -k1,19443:9045901,39229681:136441 -h1,19443:10414948,39229681:0,0,0 -k1,19443:10551389,39229681:136441 -k1,19443:11497200,39229681:136441 -k1,19443:13131794,39229681:136441 -h1,19443:14327171,39229681:0,0,0 -k1,19443:14844376,39229681:136441 -k1,19443:17021608,39229681:136441 -k1,19443:18177135,39229681:136442 -k1,19443:21288255,39229681:136441 -k1,19443:23620807,39229681:136441 -k1,19443:24748808,39229681:136441 -k1,19443:28242658,39229681:136441 -k1,19443:30114492,39229681:136441 -(1,19443:30114492,39229681:0,452978,115847 -r1,19459:32583029,39229681:2468537,568825,115847 -k1,19443:30114492,39229681:-2468537 -) -(1,19443:30114492,39229681:2468537,452978,115847 -k1,19443:30114492,39229681:3277 -h1,19443:32579752,39229681:0,411205,112570 -) -k1,19443:32583029,39229681:0 -) -(1,19444:6630773,40094761:25952256,513147,126483 -k1,19443:8087332,40094761:210720 -k1,19443:8957344,40094761:210720 -k1,19443:11450683,40094761:210720 -k1,19443:13041591,40094761:210720 -k1,19443:15021128,40094761:210720 -k1,19443:16707063,40094761:210720 -k1,19443:18427733,40094761:210720 -k1,19443:19924270,40094761:210721 -k1,19443:21941818,40094761:210720 -k1,19443:22768576,40094761:210720 -k1,19443:23665458,40094761:210720 -k1,19443:26633933,40094761:210720 -k1,19443:29028968,40094761:210720 -k1,19443:30620532,40094761:210720 -k1,19443:31923737,40094761:210720 -k1,19444:32583029,40094761:0 -) -(1,19444:6630773,40959841:25952256,513147,134348 -(1,19443:6630773,40959841:0,452978,115847 -r1,19459:9099310,40959841:2468537,568825,115847 -k1,19443:6630773,40959841:-2468537 -) -(1,19443:6630773,40959841:2468537,452978,115847 -k1,19443:6630773,40959841:3277 -h1,19443:9096033,40959841:0,411205,112570 -) -k1,19443:9317290,40959841:217980 -k1,19443:10066767,40959841:217980 -k1,19443:11055450,40959841:217980 -k1,19443:13934847,40959841:217980 -k1,19443:14812119,40959841:217980 -k1,19443:17889435,40959841:217980 -k1,19443:18766707,40959841:217980 -k1,19443:21305317,40959841:217980 -k1,19443:24005145,40959841:217980 -(1,19443:24005145,40959841:0,452978,115847 -r1,19459:26825394,40959841:2820249,568825,115847 -k1,19443:24005145,40959841:-2820249 -) -(1,19443:24005145,40959841:2820249,452978,115847 -k1,19443:24005145,40959841:3277 -h1,19443:26822117,40959841:0,411205,112570 -) -k1,19443:27043374,40959841:217980 -k1,19443:28452799,40959841:217980 -(1,19443:28452799,40959841:0,452978,115847 -r1,19459:29514488,40959841:1061689,568825,115847 -k1,19443:28452799,40959841:-1061689 -) -(1,19443:28452799,40959841:1061689,452978,115847 -k1,19443:28452799,40959841:3277 -h1,19443:29511211,40959841:0,411205,112570 -) -k1,19443:29732468,40959841:217980 -k1,19443:30601876,40959841:217980 -k1,19443:32583029,40959841:0 -) -(1,19444:6630773,41824921:25952256,513147,134348 -g1,19443:7849087,41824921 -g1,19443:10061582,41824921 -g1,19443:10927967,41824921 -(1,19443:10927967,41824921:0,435480,115847 -r1,19459:11989656,41824921:1061689,551327,115847 -k1,19443:10927967,41824921:-1061689 -) -(1,19443:10927967,41824921:1061689,435480,115847 -k1,19443:10927967,41824921:3277 -h1,19443:11986379,41824921:0,411205,112570 -) -g1,19443:12188885,41824921 -g1,19443:13620191,41824921 -g1,19443:16098107,41824921 -h1,19443:17467154,41824921:0,0,0 -g1,19443:17666383,41824921 -g1,19443:18674982,41824921 -g1,19443:20372364,41824921 -h1,19443:21169282,41824921:0,0,0 -k1,19444:32583029,41824921:11154225 -g1,19444:32583029,41824921 -) -v1,19446:6630773,42509776:0,393216,0 -(1,19455:6630773,45029490:25952256,2912930,196608 -g1,19455:6630773,45029490 -g1,19455:6630773,45029490 -g1,19455:6434165,45029490 -(1,19455:6434165,45029490:0,2912930,196608 -r1,19459:32779637,45029490:26345472,3109538,196608 -k1,19455:6434165,45029490:-26345472 -) -(1,19455:6434165,45029490:26345472,2912930,196608 -[1,19455:6630773,45029490:25952256,2716322,0 -(1,19448:6630773,42737607:25952256,424439,106246 -(1,19447:6630773,42737607:0,0,0 -g1,19447:6630773,42737607 -g1,19447:6630773,42737607 -g1,19447:6303093,42737607 -(1,19447:6303093,42737607:0,0,0 -) -g1,19447:6630773,42737607 -) -g1,19448:9286405,42737607 -k1,19448:9286405,42737607:0 -h1,19448:9950313,42737607:0,0,0 -k1,19448:32583029,42737607:22632716 -g1,19448:32583029,42737607 -) -(1,19449:6630773,43422462:25952256,431045,106246 -h1,19449:6630773,43422462:0,0,0 -k1,19449:6904226,43422462:273453 -k1,19449:7177679,43422462:273453 -k1,19449:11434579,43422462:273453 -k1,19449:12039986,43422462:273453 -k1,19449:13641255,43422462:273453 -k1,19449:14246662,43422462:273453 -k1,19449:14852069,43422462:273453 -k1,19449:17117246,43422462:273453 -k1,19449:18386561,43422462:273453 -k1,19449:20319784,43422462:273453 -k1,19449:20925191,43422462:273453 -k1,19449:26177953,43422462:273453 -k1,19449:27779222,43422462:273453 -k1,19449:29380491,43422462:273453 -k1,19449:30649806,43422462:273453 -k1,19449:31255213,43422462:273453 -h1,19449:32583029,43422462:0,0,0 -k1,19449:32583029,43422462:0 -k1,19449:32583029,43422462:0 -) -(1,19450:6630773,44107317:25952256,431045,106246 -h1,19450:6630773,44107317:0,0,0 -h1,19450:10946175,44107317:0,0,0 -k1,19450:32583029,44107317:21636854 -g1,19450:32583029,44107317 -) -(1,19454:6630773,44923244:25952256,424439,106246 -(1,19452:6630773,44923244:0,0,0 -g1,19452:6630773,44923244 -g1,19452:6630773,44923244 -g1,19452:6303093,44923244 -(1,19452:6303093,44923244:0,0,0 -) -g1,19452:6630773,44923244 -) -g1,19454:7626635,44923244 -g1,19454:8954451,44923244 -g1,19454:12605944,44923244 -g1,19454:16257437,44923244 -g1,19454:19908930,44923244 -g1,19454:23560423,44923244 -h1,19454:26879962,44923244:0,0,0 -k1,19454:32583029,44923244:5703067 -g1,19454:32583029,44923244 -) -] -) -g1,19455:32583029,45029490 -g1,19455:6630773,45029490 -g1,19455:6630773,45029490 -g1,19455:32583029,45029490 -g1,19455:32583029,45029490 -) -h1,19455:6630773,45226098:0,0,0 -] -(1,19459:32583029,45706769:0,0,0 -g1,19459:32583029,45706769 -) -) -] -(1,19459:6630773,47279633:25952256,0,0 -h1,19459:6630773,47279633:25952256,0,0 -) -] -(1,19459:4262630,4025873:0,0,0 -[1,19459:-473656,4025873:0,0,0 -(1,19459:-473656,-710413:0,0,0 -(1,19459:-473656,-710413:0,0,0 -g1,19459:-473656,-710413 -) -g1,19459:-473656,-710413 +[1,19457:6630773,45706769:25952256,40108032,0 +(1,19415:6630773,6254097:25952256,513147,134348 +k1,19414:7980345,6254097:204658 +k1,19414:8844295,6254097:204658 +k1,19414:10068037,6254097:204657 +k1,19414:12141782,6254097:204658 +k1,19414:13537885,6254097:204658 +k1,19414:15011320,6254097:204658 +k1,19414:15875270,6254097:204658 +k1,19414:17099012,6254097:204657 +k1,19414:18637328,6254097:204658 +k1,19414:20883432,6254097:204658 +k1,19414:23916623,6254097:204658 +k1,19414:25837668,6254097:204657 +(1,19414:25837668,6254097:0,452978,122846 +r1,19457:30064764,6254097:4227096,575824,122846 +k1,19414:25837668,6254097:-4227096 +) +(1,19414:25837668,6254097:4227096,452978,122846 +k1,19414:25837668,6254097:3277 +h1,19414:30061487,6254097:0,411205,112570 +) +k1,19414:30269422,6254097:204658 +k1,19414:31516758,6254097:204658 +k1,19414:32583029,6254097:0 +) +(1,19415:6630773,7119177:25952256,505283,126483 +g1,19414:9356415,7119177 +g1,19414:12118757,7119177 +g1,19414:13711937,7119177 +g1,19414:14930251,7119177 +(1,19414:14930251,7119177:0,452978,122846 +r1,19457:16695364,7119177:1765113,575824,122846 +k1,19414:14930251,7119177:-1765113 +) +(1,19414:14930251,7119177:1765113,452978,122846 +k1,19414:14930251,7119177:3277 +h1,19414:16692087,7119177:0,411205,112570 +) +g1,19414:16894593,7119177 +k1,19415:32583029,7119177:12791745 +g1,19415:32583029,7119177 +) +v1,19417:6630773,7984257:0,393216,0 +(1,19418:6630773,9256162:25952256,1665121,0 +g1,19418:6630773,9256162 +g1,19418:6237557,9256162 +r1,19457:6368629,9256162:131072,1665121,0 +g1,19418:6567858,9256162 +g1,19418:6764466,9256162 +[1,19418:6764466,9256162:25818563,1665121,0 +(1,19418:6764466,8256734:25818563,665693,196608 +(1,19417:6764466,8256734:0,665693,196608 +r1,19457:7868133,8256734:1103667,862301,196608 +k1,19417:6764466,8256734:-1103667 +) +(1,19417:6764466,8256734:1103667,665693,196608 +) +k1,19417:8108751,8256734:240618 +k1,19417:9834969,8256734:327680 +k1,19417:12281529,8256734:240618 +k1,19417:13541231,8256734:240617 +k1,19417:16443266,8256734:240618 +k1,19417:18539208,8256734:240618 +k1,19417:19431254,8256734:240618 +k1,19417:20764357,8256734:240618 +(1,19417:20764357,8256734:0,452978,122846 +r1,19457:24991453,8256734:4227096,575824,122846 +k1,19417:20764357,8256734:-4227096 +) +(1,19417:20764357,8256734:4227096,452978,122846 +k1,19417:20764357,8256734:3277 +h1,19417:24988176,8256734:0,411205,112570 +) +k1,19417:25232070,8256734:240617 +k1,19417:27799871,8256734:240618 +k1,19417:28707645,8256734:240618 +(1,19417:28707645,8256734:0,452978,122846 +r1,19457:32583029,8256734:3875384,575824,122846 +k1,19417:28707645,8256734:-3875384 +) +(1,19417:28707645,8256734:3875384,452978,122846 +k1,19417:28707645,8256734:3277 +h1,19417:32579752,8256734:0,411205,112570 +) +k1,19417:32583029,8256734:0 +) +(1,19418:6764466,9121814:25818563,505283,134348 +g1,19417:8872759,9121814 +g1,19417:9688026,9121814 +g1,19417:12726930,9121814 +g1,19417:13945244,9121814 +(1,19417:13945244,9121814:0,459977,115847 +r1,19457:15358645,9121814:1413401,575824,115847 +k1,19417:13945244,9121814:-1413401 +) +(1,19417:13945244,9121814:1413401,459977,115847 +k1,19417:13945244,9121814:3277 +h1,19417:15355368,9121814:0,411205,112570 +) +g1,19417:15557874,9121814 +k1,19418:32583029,9121814:14128464 +g1,19418:32583029,9121814 +) +] +g1,19418:32583029,9256162 +) +h1,19418:6630773,9256162:0,0,0 +(1,19421:6630773,10121242:25952256,513147,134348 +h1,19420:6630773,10121242:983040,0,0 +k1,19420:8275391,10121242:173990 +k1,19420:9881367,10121242:174014 +k1,19420:11386418,10121242:174015 +k1,19420:12091930,10121242:174015 +k1,19420:13200487,10121242:174014 +k1,19420:14136030,10121242:174015 +k1,19420:16737499,10121242:174015 +(1,19420:16737499,10121242:0,459977,115847 +r1,19457:22371443,10121242:5633944,575824,115847 +k1,19420:16737499,10121242:-5633944 +) +(1,19420:16737499,10121242:5633944,459977,115847 +g1,19420:19202759,10121242 +g1,19420:19906183,10121242 +h1,19420:22368166,10121242:0,411205,112570 +) +k1,19420:22719127,10121242:174014 +k1,19420:24089829,10121242:174015 +k1,19420:26332160,10121242:174015 +(1,19420:26332160,10121242:0,452978,115847 +r1,19457:28448985,10121242:2116825,568825,115847 +k1,19420:26332160,10121242:-2116825 +) +(1,19420:26332160,10121242:2116825,452978,115847 +k1,19420:26332160,10121242:3277 +h1,19420:28445708,10121242:0,411205,112570 +) +k1,19420:28622999,10121242:174014 +k1,19420:30023193,10121242:174015 +k1,19421:32583029,10121242:0 +) +(1,19421:6630773,10986322:25952256,505283,134348 +(1,19420:6630773,10986322:0,459977,115847 +r1,19457:9099310,10986322:2468537,575824,115847 +k1,19420:6630773,10986322:-2468537 +) +(1,19420:6630773,10986322:2468537,459977,115847 +k1,19420:6630773,10986322:3277 +h1,19420:9096033,10986322:0,411205,112570 +) +k1,19420:9256721,10986322:157411 +k1,19420:10605578,10986322:157412 +(1,19420:10605578,10986322:0,452978,115847 +r1,19457:12722403,10986322:2116825,568825,115847 +k1,19420:10605578,10986322:-2116825 +) +(1,19420:10605578,10986322:2116825,452978,115847 +k1,19420:10605578,10986322:3277 +h1,19420:12719126,10986322:0,411205,112570 +) +k1,19420:12879814,10986322:157411 +k1,19420:14028786,10986322:157412 +k1,19420:17638634,10986322:157411 +k1,19420:18557574,10986322:157412 +k1,19420:19481101,10986322:157411 +k1,19420:22357601,10986322:157411 +k1,19420:24852682,10986322:157412 +k1,19420:25819463,10986322:157411 +k1,19420:26742991,10986322:157412 +k1,19420:29954380,10986322:157411 +k1,19420:32583029,10986322:0 +) +(1,19421:6630773,11851402:25952256,513147,126483 +k1,19420:8328210,11851402:161273 +k1,19420:9304751,11851402:161273 +k1,19420:10532295,11851402:161273 +k1,19420:14208919,11851402:161273 +k1,19420:18003508,11851402:161273 +k1,19420:18816209,11851402:161273 +k1,19420:21714266,11851402:161274 +k1,19420:23536877,11851402:161273 +k1,19420:24314188,11851402:161273 +k1,19420:27237804,11851402:161273 +k1,19420:30805638,11851402:161273 +k1,19420:31649796,11851402:161273 +k1,19420:32583029,11851402:0 +) +(1,19421:6630773,12716482:25952256,513147,134348 +k1,19420:9657285,12716482:264169 +k1,19420:12310242,12716482:264170 +k1,19420:15085751,12716482:264169 +k1,19420:16422090,12716482:264170 +k1,19420:19013442,12716482:264169 +k1,19420:19929040,12716482:264170 +k1,19420:21854547,12716482:264169 +k1,19420:23403223,12716482:264170 +k1,19420:24658952,12716482:264169 +k1,19420:27298802,12716482:264170 +k1,19420:30921691,12716482:264169 +k1,19420:32583029,12716482:0 +) +(1,19421:6630773,13581562:25952256,513147,134348 +k1,19420:7828802,13581562:206469 +k1,19420:10819240,13581562:206469 +k1,19420:11973361,13581562:206470 +k1,19420:14577137,13581562:206469 +k1,19420:17172393,13581562:206469 +k1,19420:19890202,13581562:206469 +k1,19420:21590238,13581562:206470 +k1,19420:22482869,13581562:206469 +k1,19420:23708423,13581562:206469 +k1,19420:24711810,13581562:206469 +k1,19420:26756557,13581562:206462 +k1,19420:28624365,13581562:206470 +k1,19420:29592362,13581562:206469 +k1,19420:30817916,13581562:206469 +(1,19420:30817916,13581562:0,459977,115847 +r1,19457:32583029,13581562:1765113,575824,115847 +k1,19420:30817916,13581562:-1765113 +) +(1,19420:30817916,13581562:1765113,459977,115847 +k1,19420:30817916,13581562:3277 +h1,19420:32579752,13581562:0,411205,112570 +) +k1,19420:32583029,13581562:0 +) +(1,19421:6630773,14446642:25952256,505283,126483 +g1,19420:9011040,14446642 +g1,19420:9838104,14446642 +g1,19420:11240574,14446642 +g1,19420:12980554,14446642 +g1,19420:14688422,14446642 +g1,19420:16955967,14446642 +g1,19420:18259478,14446642 +g1,19420:19206473,14446642 +g1,19420:21829879,14446642 +g1,19420:23423059,14446642 +(1,19420:23423059,14446642:0,459977,115847 +r1,19457:29408714,14446642:5985655,575824,115847 +k1,19420:23423059,14446642:-5985655 +) +(1,19420:23423059,14446642:5985655,459977,115847 +k1,19420:23423059,14446642:3277 +h1,19420:29405437,14446642:0,411205,112570 +) +k1,19421:32583029,14446642:3121887 +g1,19421:32583029,14446642 +) +v1,19423:6630773,15131497:0,393216,0 +(1,19430:6630773,17526745:25952256,2788464,196608 +g1,19430:6630773,17526745 +g1,19430:6630773,17526745 +g1,19430:6434165,17526745 +(1,19430:6434165,17526745:0,2788464,196608 +r1,19457:32779637,17526745:26345472,2985072,196608 +k1,19430:6434165,17526745:-26345472 +) +(1,19430:6434165,17526745:26345472,2788464,196608 +[1,19430:6630773,17526745:25952256,2591856,0 +(1,19425:6630773,15359328:25952256,424439,112852 +(1,19424:6630773,15359328:0,0,0 +g1,19424:6630773,15359328 +g1,19424:6630773,15359328 +g1,19424:6303093,15359328 +(1,19424:6303093,15359328:0,0,0 +) +g1,19424:6630773,15359328 +) +k1,19425:6630773,15359328:0 +g1,19425:10614221,15359328 +g1,19425:11278129,15359328 +k1,19425:11278129,15359328:0 +h1,19425:13933761,15359328:0,0,0 +k1,19425:32583029,15359328:18649268 +g1,19425:32583029,15359328 +) +(1,19426:6630773,16044183:25952256,424439,112852 +h1,19426:6630773,16044183:0,0,0 +g1,19426:6962727,16044183 +g1,19426:7294681,16044183 +g1,19426:7626635,16044183 +g1,19426:7958589,16044183 +g1,19426:8290543,16044183 +g1,19426:8622497,16044183 +g1,19426:8954451,16044183 +g1,19426:11610083,16044183 +g1,19426:12273991,16044183 +g1,19426:14597669,16044183 +g1,19426:15593531,16044183 +g1,19426:17585255,16044183 +g1,19426:18249163,16044183 +g1,19426:20904795,16044183 +h1,19426:21236749,16044183:0,0,0 +k1,19426:32583029,16044183:11346280 +g1,19426:32583029,16044183 +) +(1,19427:6630773,16729038:25952256,431045,112852 +h1,19427:6630773,16729038:0,0,0 +g1,19427:6962727,16729038 +g1,19427:7294681,16729038 +g1,19427:12605944,16729038 +g1,19427:13269852,16729038 +g1,19427:14597668,16729038 +g1,19427:16589392,16729038 +g1,19427:17253300,16729038 +g1,19427:18913070,16729038 +g1,19427:20572840,16729038 +g1,19427:21236748,16729038 +g1,19427:22232610,16729038 +g1,19427:24556288,16729038 +g1,19427:25220196,16729038 +g1,19427:28207782,16729038 +h1,19427:28539736,16729038:0,0,0 +k1,19427:32583029,16729038:4043293 +g1,19427:32583029,16729038 +) +(1,19428:6630773,17413893:25952256,424439,112852 +h1,19428:6630773,17413893:0,0,0 +g1,19428:6962727,17413893 +g1,19428:7294681,17413893 +k1,19428:7294681,17413893:0 +h1,19428:11278128,17413893:0,0,0 +k1,19428:32583028,17413893:21304900 +g1,19428:32583028,17413893 +) +] +) +g1,19430:32583029,17526745 +g1,19430:6630773,17526745 +g1,19430:6630773,17526745 +g1,19430:32583029,17526745 +g1,19430:32583029,17526745 +) +h1,19430:6630773,17723353:0,0,0 +v1,19434:6630773,18588433:0,393216,0 +(1,19435:6630773,21464013:25952256,3268796,0 +g1,19435:6630773,21464013 +g1,19435:6237557,21464013 +r1,19457:6368629,21464013:131072,3268796,0 +g1,19435:6567858,21464013 +g1,19435:6764466,21464013 +[1,19435:6764466,21464013:25818563,3268796,0 +(1,19435:6764466,18860910:25818563,665693,196608 +(1,19434:6764466,18860910:0,665693,196608 +r1,19457:7868133,18860910:1103667,862301,196608 +k1,19434:6764466,18860910:-1103667 +) +(1,19434:6764466,18860910:1103667,665693,196608 +) +k1,19434:8068317,18860910:200184 +k1,19434:9794535,18860910:327680 +k1,19434:10622554,18860910:200184 +k1,19434:11841824,18860910:200185 +k1,19434:15033727,18860910:200184 +k1,19434:17089235,18860910:200184 +k1,19434:18308504,18860910:200184 +k1,19434:21483368,18860910:200185 +k1,19434:23879663,18860910:200184 +k1,19434:25583898,18860910:200184 +k1,19434:26550198,18860910:200184 +k1,19434:27409675,18860910:200185 +k1,19434:28628944,18860910:200184 +k1,19434:30482601,18860910:200184 +k1,19434:32583029,18860910:0 +) +(1,19435:6764466,19725990:25818563,505283,134348 +k1,19434:10344698,19725990:218235 +k1,19434:10918793,19725990:218235 +k1,19434:13010047,19725990:218235 +k1,19434:16376632,19725990:218235 +k1,19434:18202465,19725990:218235 +k1,19434:19439784,19725990:218234 +k1,19434:21265617,19725990:218235 +k1,19434:23339176,19725990:218235 +k1,19434:24951362,19725990:218235 +k1,19434:27194004,19725990:218235 +k1,19434:30386918,19725990:218235 +k1,19434:32583029,19725990:0 +) +(1,19435:6764466,20591070:25818563,513147,134348 +k1,19434:7656064,20591070:232306 +k1,19434:10230627,20591070:232306 +k1,19434:12806501,20591070:232307 +k1,19434:15624202,20591070:232306 +k1,19434:16507936,20591070:232306 +k1,19434:17759327,20591070:232306 +(1,19434:17759327,20591070:0,452978,115847 +r1,19457:19524440,20591070:1765113,568825,115847 +k1,19434:17759327,20591070:-1765113 +) +(1,19434:17759327,20591070:1765113,452978,115847 +k1,19434:17759327,20591070:3277 +h1,19434:19521163,20591070:0,411205,112570 +) +k1,19434:19756746,20591070:232306 +k1,19434:22915889,20591070:232306 +k1,19434:24046039,20591070:232307 +k1,19434:25564161,20591070:232306 +k1,19434:27139300,20591070:232306 +k1,19434:28765557,20591070:232306 +k1,19434:32583029,20591070:0 +) +(1,19435:6764466,21456150:25818563,513147,7863 +g1,19434:7622987,21456150 +g1,19434:9518943,21456150 +k1,19435:32583029,21456150:21167474 +g1,19435:32583029,21456150 +) +] +g1,19435:32583029,21464013 +) +h1,19435:6630773,21464013:0,0,0 +v1,19438:6630773,22329093:0,393216,0 +(1,19439:6630773,36634441:25952256,14698564,0 +g1,19439:6630773,36634441 +g1,19439:6237557,36634441 +r1,19457:6368629,36634441:131072,14698564,0 +g1,19439:6567858,36634441 +g1,19439:6764466,36634441 +[1,19439:6764466,36634441:25818563,14698564,0 +(1,19439:6764466,22690270:25818563,754393,260573 +(1,19438:6764466,22690270:0,754393,260573 +r1,19457:7856192,22690270:1091726,1014966,260573 +k1,19438:6764466,22690270:-1091726 +) +(1,19438:6764466,22690270:1091726,754393,260573 +) +k1,19438:8059513,22690270:203321 +k1,19438:8387193,22690270:327680 +k1,19438:9005353,22690270:203317 +k1,19438:9005353,22690270:0 +k1,19438:10400119,22690270:203321 +k1,19438:13431974,22690270:203322 +k1,19438:16161708,22690270:203321 +k1,19438:17384114,22690270:203321 +k1,19438:18679920,22690270:203321 +k1,19438:19542533,22690270:203321 +k1,19438:22934835,22690270:203321 +k1,19438:24631723,22690270:203322 +k1,19438:25521206,22690270:203321 +k1,19438:27387831,22690270:203321 +k1,19438:30565831,22690270:203321 +k1,19439:32583029,22690270:0 +) +(1,19439:6764466,23555350:25818563,513147,134348 +k1,19438:8307316,23555350:222300 +k1,19438:9145653,23555350:222299 +k1,19438:11737735,23555350:222300 +k1,19438:12437792,23555350:222300 +k1,19438:14118923,23555350:222300 +k1,19438:16250286,23555350:222299 +k1,19438:17155471,23555350:222300 +k1,19438:18464990,23555350:222277 +k1,19438:21544004,23555350:222300 +k1,19438:23274942,23555350:222299 +k1,19438:24763398,23555350:222300 +k1,19438:26419626,23555350:222300 +k1,19438:27812399,23555350:222300 +k1,19438:29138980,23555350:222299 +k1,19438:30747366,23555350:222300 +k1,19438:32583029,23555350:0 +) +(1,19439:6764466,24420430:25818563,505283,126483 +k1,19438:8991433,24420430:194696 +k1,19438:10377575,24420430:194697 +k1,19438:12696948,24420430:194696 +k1,19438:14869522,24420430:194697 +k1,19438:17705974,24420430:194696 +k1,19438:20488688,24420430:194697 +k1,19438:21874829,24420430:194696 +k1,19438:23449714,24420430:194697 +k1,19438:25069163,24420430:194696 +k1,19438:26924542,24420430:194697 +k1,19438:29928111,24420430:194696 +k1,19438:30738846,24420430:194697 +k1,19438:32583029,24420430:0 +) +(1,19439:6764466,25285510:25818563,513147,134348 +k1,19438:7471927,25285510:241500 +k1,19438:8069287,25285510:241500 +k1,19438:10822783,25285510:241501 +k1,19438:12395319,25285510:241500 +k1,19438:13168316,25285510:241500 +k1,19438:15554154,25285510:241500 +k1,19438:16987099,25285510:241500 +k1,19438:17999303,25285510:241501 +k1,19438:21161087,25285510:241500 +k1,19438:24303866,25285510:241500 +k1,19438:25691591,25285510:241500 +k1,19438:27596395,25285510:241500 +k1,19438:28369392,25285510:241500 +k1,19438:29226931,25285510:241501 +k1,19438:30560916,25285510:241500 +k1,19438:31563944,25285510:241500 +k1,19438:32583029,25285510:0 +) +(1,19439:6764466,26150590:25818563,513147,134348 +k1,19438:9995260,26150590:176816 +k1,19438:12591665,26150590:176816 +k1,19438:14258770,26150590:176816 +k1,19438:14901547,26150590:176816 +k1,19438:16741667,26150590:176816 +k1,19438:17449980,26150590:176816 +k1,19438:18242834,26150590:176816 +k1,19438:19685807,26150590:176817 +k1,19438:21088802,26150590:176816 +k1,19438:21797115,26150590:176816 +k1,19438:23040202,26150590:176816 +k1,19438:24667985,26150590:176816 +k1,19438:27514082,26150590:176816 +k1,19438:29733655,26150590:176816 +k1,19438:30929556,26150590:176816 +k1,19438:32583029,26150590:0 +) +(1,19439:6764466,27015670:25818563,513147,126483 +k1,19438:8289741,27015670:194239 +k1,19438:9015476,27015670:194238 +k1,19438:12167354,27015670:194239 +k1,19438:13047754,27015670:194238 +k1,19438:14708689,27015670:194239 +k1,19438:15368889,27015670:194239 +k1,19438:16582212,27015670:194238 +k1,19438:19751130,27015670:194239 +k1,19438:22889902,27015670:194239 +k1,19438:24075700,27015670:194238 +k1,19438:28413125,27015670:194239 +k1,19438:29555014,27015670:194238 +k1,19438:31501030,27015670:194239 +k1,19439:32583029,27015670:0 +) +(1,19439:6764466,27880750:25818563,513147,134348 +k1,19438:9404699,27880750:269796 +k1,19438:11276194,27880750:269795 +k1,19438:14561230,27880750:269725 +k1,19438:16492364,27880750:269796 +k1,19438:19288573,27880750:269796 +k1,19438:20171131,27880750:269796 +k1,19438:22042626,27880750:269795 +k1,19438:22668282,27880750:269796 +k1,19438:24654466,27880750:269796 +k1,19438:27410043,27880750:269796 +k1,19438:28339130,27880750:269795 +k1,19438:31955194,27880750:269796 +k1,19438:32583029,27880750:0 +) +(1,19439:6764466,28745830:25818563,505283,134348 +k1,19438:9833298,28745830:235711 +k1,19438:11225720,28745830:235712 +k1,19438:12565713,28745830:235711 +k1,19438:13893909,28745830:235711 +k1,19438:15332861,28745830:235711 +k1,19438:19206476,28745830:235712 +k1,19438:20093615,28745830:235711 +k1,19438:21804541,28745830:235711 +k1,19438:23884435,28745830:235711 +k1,19438:25586843,28745830:235712 +k1,19438:27557947,28745830:235711 +k1,19438:29495628,28745830:235711 +k1,19438:32583029,28745830:0 +) +(1,19439:6764466,29610910:25818563,513147,134348 +k1,19438:8112323,29610910:156412 +k1,19438:11441334,29610910:156413 +k1,19438:12743971,29610910:156412 +k1,19438:15411724,29610910:156413 +k1,19438:16962087,29610910:156412 +k1,19438:18627138,29610910:156412 +k1,19438:22008578,29610910:156413 +k1,19438:24806746,29610910:156412 +k1,19438:26917443,29610910:156413 +k1,19438:27689893,29610910:156412 +k1,19438:28865391,29610910:156413 +k1,19438:30675276,29610910:156412 +k1,19438:32583029,29610910:0 +) +(1,19439:6764466,30475990:25818563,513147,126483 +k1,19438:11123705,30475990:165590 +k1,19438:12308381,30475990:165591 +k1,19438:15000384,30475990:165590 +k1,19438:16113625,30475990:165590 +k1,19438:17940553,30475990:165590 +k1,19438:19297589,30475990:165591 +k1,19438:23688285,30475990:165590 +k1,19438:26828554,30475990:165590 +k1,19438:28258990,30475990:165591 +k1,19438:29040618,30475990:165590 +k1,19438:29621018,30475990:165557 +k1,19438:30318105,30475990:165590 +k1,19439:32583029,30475990:0 +) +(1,19439:6764466,31341070:25818563,513147,134348 +k1,19438:8949136,31341070:177302 +k1,19438:12690941,31341070:177302 +k1,19438:14064929,31341070:177301 +k1,19438:15573267,31341070:177302 +k1,19438:18651848,31341070:177302 +k1,19438:20342376,31341070:177302 +k1,19438:21281205,31341070:177301 +k1,19438:21873328,31341070:177280 +k1,19438:22812158,31341070:177302 +k1,19438:25255040,31341070:177302 +k1,19438:28134390,31341070:177301 +k1,19438:29121062,31341070:177302 +k1,19438:30317449,31341070:177302 +k1,19438:32583029,31341070:0 +) +(1,19439:6764466,32206150:25818563,513147,134348 +k1,19438:8802888,32206150:196860 +k1,19438:11511743,32206150:196860 +k1,19438:12367895,32206150:196860 +k1,19438:13583840,32206150:196860 +k1,19438:16834678,32206150:196860 +k1,19438:19451127,32206150:196860 +k1,19438:21533458,32206150:196860 +k1,19438:22834600,32206150:196860 +k1,19438:24317276,32206150:196860 +k1,19438:25843206,32206150:196860 +k1,19438:26691494,32206150:196860 +k1,19438:29384620,32206150:196860 +k1,19438:31931601,32206150:196860 +k1,19438:32583029,32206150:0 +) +(1,19439:6764466,33071230:25818563,513147,134348 +k1,19438:7987519,33071230:203968 +k1,19438:10611732,33071230:203968 +k1,19438:11498585,33071230:203968 +k1,19438:13695503,33071230:203968 +k1,19438:17204452,33071230:203968 +k1,19438:19146435,33071230:203968 +k1,19438:21652684,33071230:203969 +k1,19438:24379788,33071230:203968 +k1,19438:25602841,33071230:203968 +k1,19438:27460282,33071230:203968 +k1,19438:29160437,33071230:203968 +k1,19438:30173775,33071230:203968 +k1,19438:30733603,33071230:203968 +k1,19439:32583029,33071230:0 +) +(1,19439:6764466,33936310:25818563,513147,134348 +k1,19438:7997635,33936310:214084 +k1,19438:11287980,33936310:214085 +k1,19438:13069685,33936310:214084 +k1,19438:14302854,33936310:214084 +k1,19438:15673649,33936310:214085 +k1,19438:17806627,33936310:214084 +k1,19438:18376571,33936310:214084 +k1,19438:20421732,33936310:214085 +k1,19438:21842989,33936310:214084 +k1,19438:24580864,33936310:214084 +k1,19438:25938552,33936310:214085 +k1,19438:26918752,33936310:214084 +k1,19438:27664333,33936310:214084 +k1,19438:29238945,33936310:214085 +k1,19438:31896867,33936310:214084 +k1,19439:32583029,33936310:0 +) +(1,19439:6764466,34801390:25818563,513147,134348 +k1,19438:7418982,34801390:239673 +k1,19438:8762977,34801390:239713 +k1,19438:9750457,34801390:239714 +k1,19438:12455634,34801390:239713 +k1,19438:13346776,34801390:239714 +k1,19438:14678974,34801390:239713 +k1,19438:17164607,34801390:239714 +k1,19438:19065658,34801390:239713 +k1,19438:20496817,34801390:239714 +k1,19438:22931986,34801390:239713 +k1,19438:24833038,34801390:239714 +k1,19438:26466702,34801390:239713 +k1,19438:29732213,34801390:239714 +k1,19438:32583029,34801390:0 +) +(1,19439:6764466,35666470:25818563,513147,134348 +k1,19438:7773884,35666470:247890 +k1,19438:10932229,35666470:247891 +k1,19438:14431359,35666470:247890 +k1,19438:15870694,35666470:247890 +k1,19438:19575607,35666470:247890 +k1,19438:25183032,35666470:247891 +k1,19438:28611384,35666470:247890 +k1,19438:31966991,35666470:247890 +k1,19438:32583029,35666470:0 +) +(1,19439:6764466,36531550:25818563,505283,102891 +g1,19438:11157999,36531550 +g1,19438:12348788,36531550 +k1,19439:32583028,36531550:17404396 +g1,19439:32583028,36531550 +) +] +g1,19439:32583029,36634441 +) +h1,19439:6630773,36634441:0,0,0 +(1,19442:6630773,37499521:25952256,505283,134348 +h1,19441:6630773,37499521:983040,0,0 +k1,19441:10378912,37499521:285872 +k1,19441:15402382,37499521:285872 +k1,19441:19458540,37499521:285872 +k1,19441:22352090,37499521:285872 +k1,19441:25445524,37499521:285872 +k1,19441:26382824,37499521:285872 +k1,19441:27687781,37499521:285872 +(1,19441:27687781,37499521:0,452978,115847 +r1,19457:29452894,37499521:1765113,568825,115847 +k1,19441:27687781,37499521:-1765113 +) +(1,19441:27687781,37499521:1765113,452978,115847 +k1,19441:27687781,37499521:3277 +h1,19441:29449617,37499521:0,411205,112570 +) +k1,19441:29738766,37499521:285872 +k1,19441:32583029,37499521:0 +) +(1,19442:6630773,38364601:25952256,505283,134348 +k1,19441:9789010,38364601:183558 +k1,19441:12168679,38364601:183558 +k1,19441:13636743,38364601:183558 +k1,19441:14924583,38364601:183558 +k1,19441:15855907,38364601:183558 +k1,19441:18202808,38364601:183558 +k1,19441:19072528,38364601:183558 +k1,19441:23200043,38364601:183558 +k1,19441:24575046,38364601:183558 +k1,19441:26940298,38364601:183558 +(1,19441:26940298,38364601:0,414482,115847 +r1,19457:31167394,38364601:4227096,530329,115847 +k1,19441:26940298,38364601:-4227096 +) +(1,19441:26940298,38364601:4227096,414482,115847 +g1,19441:29053846,38364601 +g1,19441:29757270,38364601 +h1,19441:31164117,38364601:0,411205,112570 +) +k1,19441:31350952,38364601:183558 +k1,19441:32583029,38364601:0 +) +(1,19442:6630773,39229681:25952256,505283,134348 +k1,19441:9045901,39229681:136441 +h1,19441:10414948,39229681:0,0,0 +k1,19441:10551389,39229681:136441 +k1,19441:11497200,39229681:136441 +k1,19441:13131794,39229681:136441 +h1,19441:14327171,39229681:0,0,0 +k1,19441:14844376,39229681:136441 +k1,19441:17021608,39229681:136441 +k1,19441:18177135,39229681:136442 +k1,19441:21288255,39229681:136441 +k1,19441:23620807,39229681:136441 +k1,19441:24748808,39229681:136441 +k1,19441:28242658,39229681:136441 +k1,19441:30114492,39229681:136441 +(1,19441:30114492,39229681:0,452978,115847 +r1,19457:32583029,39229681:2468537,568825,115847 +k1,19441:30114492,39229681:-2468537 +) +(1,19441:30114492,39229681:2468537,452978,115847 +k1,19441:30114492,39229681:3277 +h1,19441:32579752,39229681:0,411205,112570 +) +k1,19441:32583029,39229681:0 +) +(1,19442:6630773,40094761:25952256,513147,126483 +k1,19441:8087332,40094761:210720 +k1,19441:8957344,40094761:210720 +k1,19441:11450683,40094761:210720 +k1,19441:13041591,40094761:210720 +k1,19441:15021128,40094761:210720 +k1,19441:16707063,40094761:210720 +k1,19441:18427733,40094761:210720 +k1,19441:19924270,40094761:210721 +k1,19441:21941818,40094761:210720 +k1,19441:22768576,40094761:210720 +k1,19441:23665458,40094761:210720 +k1,19441:26633933,40094761:210720 +k1,19441:29028968,40094761:210720 +k1,19441:30620532,40094761:210720 +k1,19441:31923737,40094761:210720 +k1,19442:32583029,40094761:0 +) +(1,19442:6630773,40959841:25952256,513147,134348 +(1,19441:6630773,40959841:0,452978,115847 +r1,19457:9099310,40959841:2468537,568825,115847 +k1,19441:6630773,40959841:-2468537 +) +(1,19441:6630773,40959841:2468537,452978,115847 +k1,19441:6630773,40959841:3277 +h1,19441:9096033,40959841:0,411205,112570 +) +k1,19441:9317290,40959841:217980 +k1,19441:10066767,40959841:217980 +k1,19441:11055450,40959841:217980 +k1,19441:13934847,40959841:217980 +k1,19441:14812119,40959841:217980 +k1,19441:17889435,40959841:217980 +k1,19441:18766707,40959841:217980 +k1,19441:21305317,40959841:217980 +k1,19441:24005145,40959841:217980 +(1,19441:24005145,40959841:0,452978,115847 +r1,19457:26825394,40959841:2820249,568825,115847 +k1,19441:24005145,40959841:-2820249 +) +(1,19441:24005145,40959841:2820249,452978,115847 +k1,19441:24005145,40959841:3277 +h1,19441:26822117,40959841:0,411205,112570 +) +k1,19441:27043374,40959841:217980 +k1,19441:28452799,40959841:217980 +(1,19441:28452799,40959841:0,452978,115847 +r1,19457:29514488,40959841:1061689,568825,115847 +k1,19441:28452799,40959841:-1061689 +) +(1,19441:28452799,40959841:1061689,452978,115847 +k1,19441:28452799,40959841:3277 +h1,19441:29511211,40959841:0,411205,112570 +) +k1,19441:29732468,40959841:217980 +k1,19441:30601876,40959841:217980 +k1,19441:32583029,40959841:0 +) +(1,19442:6630773,41824921:25952256,513147,134348 +g1,19441:7849087,41824921 +g1,19441:10061582,41824921 +g1,19441:10927967,41824921 +(1,19441:10927967,41824921:0,435480,115847 +r1,19457:11989656,41824921:1061689,551327,115847 +k1,19441:10927967,41824921:-1061689 +) +(1,19441:10927967,41824921:1061689,435480,115847 +k1,19441:10927967,41824921:3277 +h1,19441:11986379,41824921:0,411205,112570 +) +g1,19441:12188885,41824921 +g1,19441:13620191,41824921 +g1,19441:16098107,41824921 +h1,19441:17467154,41824921:0,0,0 +g1,19441:17666383,41824921 +g1,19441:18674982,41824921 +g1,19441:20372364,41824921 +h1,19441:21169282,41824921:0,0,0 +k1,19442:32583029,41824921:11154225 +g1,19442:32583029,41824921 +) +v1,19444:6630773,42509776:0,393216,0 +(1,19453:6630773,45029490:25952256,2912930,196608 +g1,19453:6630773,45029490 +g1,19453:6630773,45029490 +g1,19453:6434165,45029490 +(1,19453:6434165,45029490:0,2912930,196608 +r1,19457:32779637,45029490:26345472,3109538,196608 +k1,19453:6434165,45029490:-26345472 +) +(1,19453:6434165,45029490:26345472,2912930,196608 +[1,19453:6630773,45029490:25952256,2716322,0 +(1,19446:6630773,42737607:25952256,424439,106246 +(1,19445:6630773,42737607:0,0,0 +g1,19445:6630773,42737607 +g1,19445:6630773,42737607 +g1,19445:6303093,42737607 +(1,19445:6303093,42737607:0,0,0 +) +g1,19445:6630773,42737607 +) +g1,19446:9286405,42737607 +k1,19446:9286405,42737607:0 +h1,19446:9950313,42737607:0,0,0 +k1,19446:32583029,42737607:22632716 +g1,19446:32583029,42737607 +) +(1,19447:6630773,43422462:25952256,431045,106246 +h1,19447:6630773,43422462:0,0,0 +k1,19447:6904226,43422462:273453 +k1,19447:7177679,43422462:273453 +k1,19447:11434579,43422462:273453 +k1,19447:12039986,43422462:273453 +k1,19447:13641255,43422462:273453 +k1,19447:14246662,43422462:273453 +k1,19447:14852069,43422462:273453 +k1,19447:17117246,43422462:273453 +k1,19447:18386561,43422462:273453 +k1,19447:20319784,43422462:273453 +k1,19447:20925191,43422462:273453 +k1,19447:26177953,43422462:273453 +k1,19447:27779222,43422462:273453 +k1,19447:29380491,43422462:273453 +k1,19447:30649806,43422462:273453 +k1,19447:31255213,43422462:273453 +h1,19447:32583029,43422462:0,0,0 +k1,19447:32583029,43422462:0 +k1,19447:32583029,43422462:0 +) +(1,19448:6630773,44107317:25952256,431045,106246 +h1,19448:6630773,44107317:0,0,0 +h1,19448:10946175,44107317:0,0,0 +k1,19448:32583029,44107317:21636854 +g1,19448:32583029,44107317 +) +(1,19452:6630773,44923244:25952256,424439,106246 +(1,19450:6630773,44923244:0,0,0 +g1,19450:6630773,44923244 +g1,19450:6630773,44923244 +g1,19450:6303093,44923244 +(1,19450:6303093,44923244:0,0,0 +) +g1,19450:6630773,44923244 +) +g1,19452:7626635,44923244 +g1,19452:8954451,44923244 +g1,19452:12605944,44923244 +g1,19452:16257437,44923244 +g1,19452:19908930,44923244 +g1,19452:23560423,44923244 +h1,19452:26879962,44923244:0,0,0 +k1,19452:32583029,44923244:5703067 +g1,19452:32583029,44923244 +) +] +) +g1,19453:32583029,45029490 +g1,19453:6630773,45029490 +g1,19453:6630773,45029490 +g1,19453:32583029,45029490 +g1,19453:32583029,45029490 +) +h1,19453:6630773,45226098:0,0,0 +] +(1,19457:32583029,45706769:0,0,0 +g1,19457:32583029,45706769 +) +) +] +(1,19457:6630773,47279633:25952256,0,0 +h1,19457:6630773,47279633:25952256,0,0 +) +] +(1,19457:4262630,4025873:0,0,0 +[1,19457:-473656,4025873:0,0,0 +(1,19457:-473656,-710413:0,0,0 +(1,19457:-473656,-710413:0,0,0 +g1,19457:-473656,-710413 +) +g1,19457:-473656,-710413 ) ] ) ] !32066 -}323 -Input:3435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3436:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3437:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3438:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}324 Input:3439:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3440:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3441:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3442:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3443:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3444:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3445:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3446:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3447:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3448:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{324 -[1,19521:4262630,47279633:28320399,43253760,0 -(1,19521:4262630,4025873:0,0,0 -[1,19521:-473656,4025873:0,0,0 -(1,19521:-473656,-710413:0,0,0 -(1,19521:-473656,-644877:0,0,0 -k1,19521:-473656,-644877:-65536 +{325 +[1,19519:4262630,47279633:28320399,43253760,0 +(1,19519:4262630,4025873:0,0,0 +[1,19519:-473656,4025873:0,0,0 +(1,19519:-473656,-710413:0,0,0 +(1,19519:-473656,-644877:0,0,0 +k1,19519:-473656,-644877:-65536 ) -(1,19521:-473656,4736287:0,0,0 -k1,19521:-473656,4736287:5209943 +(1,19519:-473656,4736287:0,0,0 +k1,19519:-473656,4736287:5209943 ) -g1,19521:-473656,-710413 +g1,19519:-473656,-710413 ) ] ) -[1,19521:6630773,47279633:25952256,43253760,0 -[1,19521:6630773,4812305:25952256,786432,0 -(1,19521:6630773,4812305:25952256,485622,11795 -(1,19521:6630773,4812305:25952256,485622,11795 -g1,19521:3078558,4812305 -[1,19521:3078558,4812305:0,0,0 -(1,19521:3078558,2439708:0,1703936,0 -k1,19521:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19521:2537886,2439708:1179648,16384,0 +[1,19519:6630773,47279633:25952256,43253760,0 +[1,19519:6630773,4812305:25952256,786432,0 +(1,19519:6630773,4812305:25952256,485622,11795 +(1,19519:6630773,4812305:25952256,485622,11795 +g1,19519:3078558,4812305 +[1,19519:3078558,4812305:0,0,0 +(1,19519:3078558,2439708:0,1703936,0 +k1,19519:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19519:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19521:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19519:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19521:3078558,4812305:0,0,0 -(1,19521:3078558,2439708:0,1703936,0 -g1,19521:29030814,2439708 -g1,19521:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19521:36151628,1915420:16384,1179648,0 +[1,19519:3078558,4812305:0,0,0 +(1,19519:3078558,2439708:0,1703936,0 +g1,19519:29030814,2439708 +g1,19519:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19519:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19521:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19519:37855564,2439708:1179648,16384,0 ) ) -k1,19521:3078556,2439708:-34777008 +k1,19519:3078556,2439708:-34777008 ) ] -[1,19521:3078558,4812305:0,0,0 -(1,19521:3078558,49800853:0,16384,2228224 -k1,19521:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19521:2537886,49800853:1179648,16384,0 +[1,19519:3078558,4812305:0,0,0 +(1,19519:3078558,49800853:0,16384,2228224 +k1,19519:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19519:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19521:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19519:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19521:3078558,4812305:0,0,0 -(1,19521:3078558,49800853:0,16384,2228224 -g1,19521:29030814,49800853 -g1,19521:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19521:36151628,51504789:16384,1179648,0 +[1,19519:3078558,4812305:0,0,0 +(1,19519:3078558,49800853:0,16384,2228224 +g1,19519:29030814,49800853 +g1,19519:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19519:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19521:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19519:37855564,49800853:1179648,16384,0 ) -) -k1,19521:3078556,49800853:-34777008 -) -] -g1,19521:6630773,4812305 -g1,19521:6630773,4812305 -g1,19521:10347975,4812305 -k1,19521:31387651,4812305:21039676 -) -) -] -[1,19521:6630773,45706769:25952256,40108032,0 -(1,19521:6630773,45706769:25952256,40108032,0 -(1,19521:6630773,45706769:0,0,0 -g1,19521:6630773,45706769 -) -[1,19521:6630773,45706769:25952256,40108032,0 -(1,19459:6630773,6254097:25952256,505283,134348 -h1,19458:6630773,6254097:983040,0,0 -k1,19458:9178867,6254097:161273 -k1,19458:10531585,6254097:161273 -k1,19458:12537041,6254097:161273 -k1,19458:13513582,6254097:161273 -k1,19458:14741126,6254097:161273 -k1,19458:19219256,6254097:161273 -k1,19458:21705091,6254097:161273 -k1,19458:22885449,6254097:161273 -k1,19458:25571169,6254097:161273 -k1,19458:27079862,6254097:161273 -k1,19458:28604939,6254097:161273 -k1,19458:30274851,6254097:161273 -k1,19459:32583029,6254097:0 -) -(1,19459:6630773,7119177:25952256,505283,134348 -k1,19458:7863088,7119177:242066 -k1,19458:12016997,7119177:242065 -k1,19458:12886898,7119177:242066 -k1,19458:14148048,7119177:242065 -k1,19458:17051531,7119177:242066 -k1,19458:19335698,7119177:242065 -(1,19458:19335698,7119177:0,452978,115847 -r1,19521:27079912,7119177:7744214,568825,115847 -k1,19458:19335698,7119177:-7744214 -) -(1,19458:19335698,7119177:7744214,452978,115847 -g1,19458:24966364,7119177 -g1,19458:25669788,7119177 -h1,19458:27076635,7119177:0,411205,112570 -) -k1,19458:27321978,7119177:242066 -k1,19458:30037372,7119177:242065 -k1,19458:31563944,7119177:242066 -k1,19458:32583029,7119177:0 -) -(1,19459:6630773,7984257:25952256,513147,134348 -g1,19458:8056181,7984257 -g1,19458:8786907,7984257 -g1,19458:10052407,7984257 -g1,19458:12601102,7984257 -g1,19458:13413093,7984257 -g1,19458:14631407,7984257 -g1,19458:16320269,7984257 -g1,19458:17178790,7984257 -g1,19458:18397104,7984257 -g1,19458:21120780,7984257 -k1,19459:32583029,7984257:10062400 -g1,19459:32583029,7984257 -) -v1,19461:6630773,8669112:0,393216,0 -(1,19469:6630773,11742609:25952256,3466713,196608 -g1,19469:6630773,11742609 -g1,19469:6630773,11742609 -g1,19469:6434165,11742609 -(1,19469:6434165,11742609:0,3466713,196608 -r1,19521:32779637,11742609:26345472,3663321,196608 -k1,19469:6434165,11742609:-26345472 -) -(1,19469:6434165,11742609:26345472,3466713,196608 -[1,19469:6630773,11742609:25952256,3270105,0 -(1,19463:6630773,8896943:25952256,424439,112852 -(1,19462:6630773,8896943:0,0,0 -g1,19462:6630773,8896943 -g1,19462:6630773,8896943 -g1,19462:6303093,8896943 -(1,19462:6303093,8896943:0,0,0 -) -g1,19462:6630773,8896943 -) -k1,19463:6630773,8896943:0 -g1,19463:10614221,8896943 -g1,19463:11278129,8896943 -k1,19463:11278129,8896943:0 -h1,19463:13933761,8896943:0,0,0 -k1,19463:32583029,8896943:18649268 -g1,19463:32583029,8896943 -) -(1,19464:6630773,9581798:25952256,424439,112852 -h1,19464:6630773,9581798:0,0,0 -g1,19464:6962727,9581798 -g1,19464:7294681,9581798 -g1,19464:7626635,9581798 -g1,19464:7958589,9581798 -g1,19464:8290543,9581798 -g1,19464:8622497,9581798 -g1,19464:8954451,9581798 -g1,19464:11610083,9581798 -g1,19464:12273991,9581798 -g1,19464:14597669,9581798 -g1,19464:15593531,9581798 -g1,19464:17585255,9581798 -g1,19464:18249163,9581798 -g1,19464:20904795,9581798 -h1,19464:21236749,9581798:0,0,0 -k1,19464:32583029,9581798:11346280 -g1,19464:32583029,9581798 -) -(1,19465:6630773,10266653:25952256,424439,112852 -h1,19465:6630773,10266653:0,0,0 -g1,19465:6962727,10266653 -g1,19465:7294681,10266653 -g1,19465:12605944,10266653 -g1,19465:13269852,10266653 -g1,19465:15261576,10266653 -g1,19465:17253300,10266653 -g1,19465:17917208,10266653 -g1,19465:19908932,10266653 -g1,19465:21568702,10266653 -g1,19465:22232610,10266653 -g1,19465:23228472,10266653 -h1,19465:23560426,10266653:0,0,0 -k1,19465:32583029,10266653:9022603 -g1,19465:32583029,10266653 -) -(1,19466:6630773,10951508:25952256,424439,112852 -h1,19466:6630773,10951508:0,0,0 -g1,19466:6962727,10951508 -g1,19466:7294681,10951508 -g1,19466:11610082,10951508 -h1,19466:11942036,10951508:0,0,0 -k1,19466:32583028,10951508:20640992 -g1,19466:32583028,10951508 -) -(1,19467:6630773,11636363:25952256,424439,106246 -h1,19467:6630773,11636363:0,0,0 -g1,19467:6962727,11636363 -g1,19467:7294681,11636363 -g1,19467:12605944,11636363 -g1,19467:13269852,11636363 -h1,19467:14597668,11636363:0,0,0 -k1,19467:32583028,11636363:17985360 -g1,19467:32583028,11636363 -) -] -) -g1,19469:32583029,11742609 -g1,19469:6630773,11742609 -g1,19469:6630773,11742609 -g1,19469:32583029,11742609 -g1,19469:32583029,11742609 -) -h1,19469:6630773,11939217:0,0,0 -(1,19472:6630773,21088419:25952256,9083666,0 -k1,19472:10523651,21088419:3892878 -h1,19471:10523651,21088419:0,0,0 -(1,19471:10523651,21088419:18166500,9083666,0 -(1,19471:10523651,21088419:18167376,9083688,0 -(1,19471:10523651,21088419:18167376,9083688,0 -(1,19471:10523651,21088419:0,9083688,0 -(1,19471:10523651,21088419:0,14208860,0 -(1,19471:10523651,21088419:28417720,14208860,0 -) -k1,19471:10523651,21088419:-28417720 -) -) -g1,19471:28691027,21088419 -) -) -) -g1,19472:28690151,21088419 -k1,19472:32583029,21088419:3892878 -) -(1,19479:6630773,21953499:25952256,505283,126483 -h1,19478:6630773,21953499:983040,0,0 -k1,19478:8438193,21953499:196545 -k1,19478:9653822,21953499:196544 -k1,19478:12511784,21953499:196545 -k1,19478:14737324,21953499:196545 -k1,19478:15952954,21953499:196545 -k1,19478:17375677,21953499:196544 -k1,19478:18223650,21953499:196545 -k1,19478:19167961,21953499:196545 -k1,19478:21527848,21953499:196544 -k1,19478:22931566,21953499:196545 -k1,19478:25713506,21953499:196545 -k1,19478:26561479,21953499:196545 -k1,19478:27777108,21953499:196544 -(1,19478:27777108,21953499:0,452978,115847 -r1,19521:29542221,21953499:1765113,568825,115847 -k1,19478:27777108,21953499:-1765113 -) -(1,19478:27777108,21953499:1765113,452978,115847 -k1,19478:27777108,21953499:3277 -h1,19478:29538944,21953499:0,411205,112570 -) -k1,19478:29738766,21953499:196545 -k1,19478:32583029,21953499:0 -) -(1,19479:6630773,22818579:25952256,513147,134348 -k1,19478:8569444,22818579:203278 -k1,19478:11747401,22818579:203278 -k1,19478:14146791,22818579:203279 -k1,19478:17670778,22818579:203278 -k1,19478:19839481,22818579:203278 -k1,19478:20694187,22818579:203278 -k1,19478:21916551,22818579:203279 -k1,19478:23509192,22818579:203278 -k1,19478:25588766,22818579:203278 -(1,19478:25588766,22818579:0,452978,115847 -r1,19521:28057303,22818579:2468537,568825,115847 -k1,19478:25588766,22818579:-2468537 -) -(1,19478:25588766,22818579:2468537,452978,115847 -k1,19478:25588766,22818579:3277 -h1,19478:28054026,22818579:0,411205,112570 -) -k1,19478:28434251,22818579:203278 -k1,19478:29107423,22818579:203279 -k1,19478:29842198,22818579:203278 -k1,19478:31331292,22818579:203278 -k1,19479:32583029,22818579:0 -) -(1,19479:6630773,23683659:25952256,513147,134348 -k1,19478:8455350,23683659:166516 -k1,19478:9813311,23683659:166516 -k1,19478:12267034,23683659:166516 -k1,19478:15872879,23683659:166516 -k1,19478:16690823,23683659:166516 -k1,19478:18499671,23683659:166516 -k1,19478:21178182,23683659:166516 -k1,19478:24319377,23683659:166516 -k1,19478:26682004,23683659:166516 -k1,19478:28242471,23683659:166516 -k1,19478:28764847,23683659:166516 -k1,19478:31048831,23683659:166516 -k1,19479:32583029,23683659:0 -) -(1,19479:6630773,24548739:25952256,505283,134348 -k1,19478:8174655,24548739:276416 -k1,19478:9724435,24548739:276415 -k1,19478:10683736,24548739:276416 -k1,19478:11316011,24548739:276415 -k1,19478:13088614,24548739:276416 -k1,19478:16725061,24548739:276416 -k1,19478:19206763,24548739:276415 -k1,19478:20169341,24548739:276416 -k1,19478:21216459,24548739:276415 -k1,19478:24565203,24548739:276416 -k1,19478:25457657,24548739:276416 -k1,19478:26753157,24548739:276415 -k1,19478:28129267,24548739:276416 -k1,19478:29057110,24548739:276415 -(1,19478:29057110,24548739:0,452978,115847 -r1,19521:30822223,24548739:1765113,568825,115847 -k1,19478:29057110,24548739:-1765113 -) -(1,19478:29057110,24548739:1765113,452978,115847 -k1,19478:29057110,24548739:3277 -h1,19478:30818946,24548739:0,411205,112570 -) -k1,19478:31098639,24548739:276416 -k1,19478:32583029,24548739:0 -) -(1,19479:6630773,25413819:25952256,505283,126483 -g1,19478:9566785,25413819 -g1,19478:10417442,25413819 -g1,19478:11635756,25413819 -g1,19478:14589463,25413819 -g1,19478:16119073,25413819 -g1,19478:17384573,25413819 -k1,19479:32583029,25413819:12863409 -g1,19479:32583029,25413819 -) -v1,19481:6630773,26098674:0,393216,0 -(1,19488:6630773,28493922:25952256,2788464,196608 -g1,19488:6630773,28493922 -g1,19488:6630773,28493922 -g1,19488:6434165,28493922 -(1,19488:6434165,28493922:0,2788464,196608 -r1,19521:32779637,28493922:26345472,2985072,196608 -k1,19488:6434165,28493922:-26345472 -) -(1,19488:6434165,28493922:26345472,2788464,196608 -[1,19488:6630773,28493922:25952256,2591856,0 -(1,19483:6630773,26326505:25952256,424439,112852 -(1,19482:6630773,26326505:0,0,0 -g1,19482:6630773,26326505 -g1,19482:6630773,26326505 -g1,19482:6303093,26326505 -(1,19482:6303093,26326505:0,0,0 -) -g1,19482:6630773,26326505 -) -k1,19483:6630773,26326505:0 -g1,19483:10614221,26326505 -g1,19483:11278129,26326505 -k1,19483:11278129,26326505:0 -h1,19483:13933761,26326505:0,0,0 -k1,19483:32583029,26326505:18649268 -g1,19483:32583029,26326505 -) -(1,19484:6630773,27011360:25952256,424439,112852 -h1,19484:6630773,27011360:0,0,0 -g1,19484:6962727,27011360 -g1,19484:7294681,27011360 -g1,19484:7626635,27011360 -g1,19484:7958589,27011360 -g1,19484:8290543,27011360 -g1,19484:8622497,27011360 -g1,19484:8954451,27011360 -g1,19484:11610083,27011360 -g1,19484:12273991,27011360 -g1,19484:14597669,27011360 -g1,19484:15593531,27011360 -g1,19484:17585255,27011360 -g1,19484:18249163,27011360 -g1,19484:23560426,27011360 -g1,19484:24556288,27011360 -g1,19484:26216058,27011360 -g1,19484:27543874,27011360 -g1,19484:28207782,27011360 -g1,19484:30199506,27011360 -h1,19484:30531460,27011360:0,0,0 -k1,19484:32583029,27011360:2051569 -g1,19484:32583029,27011360 -) -(1,19485:6630773,27696215:25952256,424439,112852 -h1,19485:6630773,27696215:0,0,0 -g1,19485:6962727,27696215 -g1,19485:7294681,27696215 -g1,19485:12605944,27696215 -g1,19485:13269852,27696215 -g1,19485:15261576,27696215 -g1,19485:17253300,27696215 -g1,19485:17917208,27696215 -g1,19485:19908932,27696215 -g1,19485:21568702,27696215 -g1,19485:22232610,27696215 -g1,19485:23228472,27696215 -h1,19485:23560426,27696215:0,0,0 -k1,19485:32583029,27696215:9022603 -g1,19485:32583029,27696215 -) -(1,19486:6630773,28381070:25952256,424439,112852 -h1,19486:6630773,28381070:0,0,0 -g1,19486:6962727,28381070 -g1,19486:7294681,28381070 -k1,19486:7294681,28381070:0 -h1,19486:11278128,28381070:0,0,0 -k1,19486:32583028,28381070:21304900 -g1,19486:32583028,28381070 -) -] -) -g1,19488:32583029,28493922 -g1,19488:6630773,28493922 -g1,19488:6630773,28493922 -g1,19488:32583029,28493922 -g1,19488:32583029,28493922 -) -h1,19488:6630773,28690530:0,0,0 -(1,19492:6630773,29555610:25952256,513147,126483 -h1,19491:6630773,29555610:983040,0,0 -k1,19491:8700809,29555610:269107 -(1,19491:8700809,29555610:0,452978,122846 -r1,19521:12927905,29555610:4227096,575824,122846 -k1,19491:8700809,29555610:-4227096 -) -(1,19491:8700809,29555610:4227096,452978,122846 -k1,19491:8700809,29555610:3277 -h1,19491:12924628,29555610:0,411205,112570 -) -k1,19491:13197012,29555610:269107 -k1,19491:15299816,29555610:269107 -k1,19491:16588008,29555610:269107 -k1,19491:18510589,29555610:269108 -k1,19491:21954260,29555610:269107 -k1,19491:22909529,29555610:269107 -(1,19491:22909529,29555610:0,452978,122846 -r1,19521:26784913,29555610:3875384,575824,122846 -k1,19491:22909529,29555610:-3875384 -) -(1,19491:22909529,29555610:3875384,452978,122846 -k1,19491:22909529,29555610:3277 -h1,19491:26781636,29555610:0,411205,112570 -) -k1,19491:27054020,29555610:269107 -k1,19491:29601158,29555610:269107 -k1,19491:30817916,29555610:269107 -(1,19491:30817916,29555610:0,452978,122846 -r1,19521:32583029,29555610:1765113,575824,122846 -k1,19491:30817916,29555610:-1765113 -) -(1,19491:30817916,29555610:1765113,452978,122846 -k1,19491:30817916,29555610:3277 -h1,19491:32579752,29555610:0,411205,112570 -) -k1,19491:32583029,29555610:0 -) -(1,19492:6630773,30420690:25952256,513147,134348 -k1,19491:7473216,30420690:226405 -k1,19491:10528154,30420690:226405 -k1,19491:13181817,30420690:226405 -k1,19491:14599667,30420690:226405 -k1,19491:18619296,30420690:226405 -(1,19491:18619296,30420690:0,452978,115847 -r1,19521:22142968,30420690:3523672,568825,115847 -k1,19491:18619296,30420690:-3523672 -) -(1,19491:18619296,30420690:3523672,452978,115847 -k1,19491:18619296,30420690:3277 -h1,19491:22139691,30420690:0,411205,112570 -) -k1,19491:22369374,30420690:226406 -k1,19491:23543430,30420690:226405 -k1,19491:24788920,30420690:226405 -k1,19491:26830017,30420690:226405 -k1,19491:27715714,30420690:226405 -k1,19491:28961204,30420690:226405 -k1,19491:31327360,30420690:226405 -k1,19492:32583029,30420690:0 -) -(1,19492:6630773,31285770:25952256,513147,126483 -(1,19491:6630773,31285770:0,452978,115847 -r1,19521:9099310,31285770:2468537,568825,115847 -k1,19491:6630773,31285770:-2468537 -) -(1,19491:6630773,31285770:2468537,452978,115847 -k1,19491:6630773,31285770:3277 -h1,19491:9096033,31285770:0,411205,112570 -) -k1,19491:9247891,31285770:148581 -k1,19491:10344123,31285770:148581 -k1,19491:11511789,31285770:148581 -k1,19491:15016470,31285770:148582 -k1,19491:15824343,31285770:148581 -k1,19491:16992009,31285770:148581 -k1,19491:18300577,31285770:148581 -k1,19491:21020135,31285770:148581 -(1,19491:21020135,31285770:0,452978,122846 -r1,19521:25598943,31285770:4578808,575824,122846 -k1,19491:21020135,31285770:-4578808 -) -(1,19491:21020135,31285770:4578808,452978,122846 -k1,19491:21020135,31285770:3277 -h1,19491:25595666,31285770:0,411205,112570 -) -k1,19491:25747524,31285770:148581 -k1,19491:26843757,31285770:148582 -k1,19491:28011423,31285770:148581 -k1,19491:29947826,31285770:148581 -k1,19491:32583029,31285770:0 -) -(1,19492:6630773,32150850:25952256,513147,126483 -k1,19491:7878811,32150850:228953 -k1,19491:9333943,32150850:228953 -k1,19491:12613597,32150850:228953 -k1,19491:14033995,32150850:228953 -k1,19491:15282033,32150850:228953 -k1,19491:16670973,32150850:228953 -k1,19491:20124297,32150850:228953 -k1,19491:21544694,32150850:228952 -(1,19491:21544694,32150850:0,459977,115847 -r1,19521:22958095,32150850:1413401,575824,115847 -k1,19491:21544694,32150850:-1413401 -) -(1,19491:21544694,32150850:1413401,459977,115847 -k1,19491:21544694,32150850:3277 -h1,19491:22954818,32150850:0,411205,112570 -) -k1,19491:23187048,32150850:228953 -k1,19491:24363652,32150850:228953 -k1,19491:25611690,32150850:228953 -k1,19491:27871604,32150850:228953 -k1,19491:29613783,32150850:228953 -k1,19491:30494164,32150850:228953 -k1,19491:31563944,32150850:228953 -k1,19491:32583029,32150850:0 -) -(1,19492:6630773,33015930:25952256,505283,134348 -g1,19491:8841302,33015930 -k1,19492:32583029,33015930:19899352 -g1,19492:32583029,33015930 -) -v1,19495:6630773,33700785:0,393216,0 -(1,19511:6630773,42253122:25952256,8945553,196608 -g1,19511:6630773,42253122 -g1,19511:6630773,42253122 -g1,19511:6434165,42253122 -(1,19511:6434165,42253122:0,8945553,196608 -r1,19521:32779637,42253122:26345472,9142161,196608 -k1,19511:6434165,42253122:-26345472 -) -(1,19511:6434165,42253122:26345472,8945553,196608 -[1,19511:6630773,42253122:25952256,8748945,0 -(1,19497:6630773,33928616:25952256,424439,106246 -(1,19496:6630773,33928616:0,0,0 -g1,19496:6630773,33928616 -g1,19496:6630773,33928616 -g1,19496:6303093,33928616 -(1,19496:6303093,33928616:0,0,0 -) -g1,19496:6630773,33928616 -) -g1,19497:9286405,33928616 -k1,19497:9286405,33928616:0 -h1,19497:9950313,33928616:0,0,0 -k1,19497:32583029,33928616:22632716 -g1,19497:32583029,33928616 -) -(1,19498:6630773,34613471:25952256,431045,106246 -h1,19498:6630773,34613471:0,0,0 -g1,19498:6962727,34613471 -g1,19498:7294681,34613471 -g1,19498:11610082,34613471 -g1,19498:12273990,34613471 -g1,19498:13933760,34613471 -g1,19498:14597668,34613471 -g1,19498:15261576,34613471 -g1,19498:17585254,34613471 -k1,19498:17585254,34613471:0 -h1,19498:18581116,34613471:0,0,0 -k1,19498:32583029,34613471:14001913 -g1,19498:32583029,34613471 -) -(1,19499:6630773,35298326:25952256,431045,86428 -h1,19499:6630773,35298326:0,0,0 -g1,19499:6962727,35298326 -g1,19499:7294681,35298326 -g1,19499:7626635,35298326 -g1,19499:7958589,35298326 -g1,19499:8290543,35298326 -g1,19499:8622497,35298326 -g1,19499:8954451,35298326 -g1,19499:9286405,35298326 -g1,19499:9618359,35298326 -g1,19499:9950313,35298326 -g1,19499:10282267,35298326 -g1,19499:10614221,35298326 -g1,19499:10946175,35298326 -g1,19499:12937899,35298326 -g1,19499:13601807,35298326 -g1,19499:16589393,35298326 -g1,19499:18913071,35298326 -g1,19499:21900657,35298326 -g1,19499:24556289,35298326 -h1,19499:27211921,35298326:0,0,0 -k1,19499:32583029,35298326:5371108 -g1,19499:32583029,35298326 -) -(1,19500:6630773,35983181:25952256,0,0 -h1,19500:6630773,35983181:0,0,0 -h1,19500:6630773,35983181:0,0,0 -k1,19500:32583029,35983181:25952256 -g1,19500:32583029,35983181 -) -(1,19501:6630773,36668036:25952256,424439,112852 -h1,19501:6630773,36668036:0,0,0 -g1,19501:10614221,36668036 -g1,19501:11278129,36668036 -k1,19501:11278129,36668036:0 -h1,19501:13933761,36668036:0,0,0 -k1,19501:32583029,36668036:18649268 -g1,19501:32583029,36668036 -) -(1,19502:6630773,37352891:25952256,424439,112852 -h1,19502:6630773,37352891:0,0,0 -g1,19502:6962727,37352891 -g1,19502:7294681,37352891 -g1,19502:7626635,37352891 -g1,19502:7958589,37352891 -g1,19502:8290543,37352891 -g1,19502:8622497,37352891 -g1,19502:8954451,37352891 -g1,19502:11610083,37352891 -g1,19502:12273991,37352891 -g1,19502:14597669,37352891 -g1,19502:15593531,37352891 -g1,19502:17585255,37352891 -g1,19502:18249163,37352891 -g1,19502:20904795,37352891 -h1,19502:21236749,37352891:0,0,0 -k1,19502:32583029,37352891:11346280 -g1,19502:32583029,37352891 -) -(1,19503:6630773,38037746:25952256,424439,112852 -h1,19503:6630773,38037746:0,0,0 -g1,19503:6962727,38037746 -g1,19503:7294681,38037746 -g1,19503:12937898,38037746 -g1,19503:13601806,38037746 -g1,19503:15593530,38037746 -g1,19503:17253300,38037746 -g1,19503:17917208,38037746 -k1,19503:17917208,38037746:0 -h1,19503:18581116,38037746:0,0,0 -k1,19503:32583029,38037746:14001913 -g1,19503:32583029,38037746 -) -(1,19504:6630773,38722601:25952256,424439,86428 -h1,19504:6630773,38722601:0,0,0 -g1,19504:6962727,38722601 -g1,19504:7294681,38722601 -g1,19504:7626635,38722601 -g1,19504:7958589,38722601 -g1,19504:8290543,38722601 -g1,19504:8622497,38722601 -g1,19504:8954451,38722601 -g1,19504:9286405,38722601 -g1,19504:9618359,38722601 -g1,19504:9950313,38722601 -g1,19504:10282267,38722601 -g1,19504:10614221,38722601 -g1,19504:10946175,38722601 -g1,19504:14597668,38722601 -g1,19504:15261576,38722601 -k1,19504:15261576,38722601:0 -h1,19504:15925484,38722601:0,0,0 -k1,19504:32583029,38722601:16657545 -g1,19504:32583029,38722601 -) -(1,19505:6630773,39407456:25952256,424439,86428 -h1,19505:6630773,39407456:0,0,0 -g1,19505:6962727,39407456 -g1,19505:7294681,39407456 -g1,19505:7626635,39407456 -g1,19505:7958589,39407456 -g1,19505:8290543,39407456 -g1,19505:8622497,39407456 -g1,19505:8954451,39407456 -g1,19505:9286405,39407456 -g1,19505:9618359,39407456 -g1,19505:9950313,39407456 -g1,19505:10282267,39407456 -g1,19505:10614221,39407456 -g1,19505:10946175,39407456 -g1,19505:13601807,39407456 -g1,19505:14265715,39407456 -g1,19505:16921347,39407456 -k1,19505:16921347,39407456:0 -h1,19505:19908933,39407456:0,0,0 -k1,19505:32583029,39407456:12674096 -g1,19505:32583029,39407456 -) -(1,19506:6630773,40092311:25952256,424439,112852 -h1,19506:6630773,40092311:0,0,0 -g1,19506:6962727,40092311 -g1,19506:7294681,40092311 -g1,19506:7626635,40092311 -g1,19506:7958589,40092311 -g1,19506:8290543,40092311 -g1,19506:8622497,40092311 -g1,19506:8954451,40092311 -g1,19506:9286405,40092311 -g1,19506:9618359,40092311 -g1,19506:9950313,40092311 -g1,19506:10282267,40092311 -g1,19506:10614221,40092311 -g1,19506:10946175,40092311 -g1,19506:15593530,40092311 -g1,19506:16257438,40092311 -g1,19506:19908932,40092311 -k1,19506:19908932,40092311:0 -h1,19506:22896518,40092311:0,0,0 -k1,19506:32583029,40092311:9686511 -g1,19506:32583029,40092311 -) -(1,19507:6630773,40777166:25952256,431045,106246 -h1,19507:6630773,40777166:0,0,0 -g1,19507:6962727,40777166 -g1,19507:7294681,40777166 -g1,19507:7626635,40777166 -g1,19507:7958589,40777166 -g1,19507:8290543,40777166 -g1,19507:8622497,40777166 -g1,19507:8954451,40777166 -g1,19507:9286405,40777166 -g1,19507:9618359,40777166 -g1,19507:9950313,40777166 -g1,19507:10282267,40777166 -g1,19507:10614221,40777166 -g1,19507:10946175,40777166 -g1,19507:12605945,40777166 -g1,19507:13269853,40777166 -g1,19507:16589392,40777166 -g1,19507:18581116,40777166 -g1,19507:19245024,40777166 -g1,19507:20904794,40777166 -h1,19507:21236748,40777166:0,0,0 -k1,19507:32583029,40777166:11346281 -g1,19507:32583029,40777166 -) -(1,19508:6630773,41462021:25952256,424439,112852 -h1,19508:6630773,41462021:0,0,0 -g1,19508:6962727,41462021 -g1,19508:7294681,41462021 -g1,19508:11610082,41462021 -h1,19508:11942036,41462021:0,0,0 -k1,19508:32583028,41462021:20640992 -g1,19508:32583028,41462021 -) -(1,19509:6630773,42146876:25952256,424439,106246 -h1,19509:6630773,42146876:0,0,0 -g1,19509:6962727,42146876 -g1,19509:7294681,42146876 -g1,19509:12605944,42146876 -g1,19509:13269852,42146876 -h1,19509:14597668,42146876:0,0,0 -k1,19509:32583028,42146876:17985360 -g1,19509:32583028,42146876 -) -] -) -g1,19511:32583029,42253122 -g1,19511:6630773,42253122 -g1,19511:6630773,42253122 -g1,19511:32583029,42253122 -g1,19511:32583029,42253122 -) -h1,19511:6630773,42449730:0,0,0 -] -(1,19521:32583029,45706769:0,0,0 -g1,19521:32583029,45706769 -) -) -] -(1,19521:6630773,47279633:25952256,0,0 -h1,19521:6630773,47279633:25952256,0,0 -) -] -(1,19521:4262630,4025873:0,0,0 -[1,19521:-473656,4025873:0,0,0 -(1,19521:-473656,-710413:0,0,0 -(1,19521:-473656,-710413:0,0,0 -g1,19521:-473656,-710413 -) -g1,19521:-473656,-710413 +) +k1,19519:3078556,49800853:-34777008 +) +] +g1,19519:6630773,4812305 +g1,19519:6630773,4812305 +g1,19519:10347975,4812305 +k1,19519:31387651,4812305:21039676 +) +) +] +[1,19519:6630773,45706769:25952256,40108032,0 +(1,19519:6630773,45706769:25952256,40108032,0 +(1,19519:6630773,45706769:0,0,0 +g1,19519:6630773,45706769 +) +[1,19519:6630773,45706769:25952256,40108032,0 +(1,19457:6630773,6254097:25952256,505283,134348 +h1,19456:6630773,6254097:983040,0,0 +k1,19456:9178867,6254097:161273 +k1,19456:10531585,6254097:161273 +k1,19456:12537041,6254097:161273 +k1,19456:13513582,6254097:161273 +k1,19456:14741126,6254097:161273 +k1,19456:19219256,6254097:161273 +k1,19456:21705091,6254097:161273 +k1,19456:22885449,6254097:161273 +k1,19456:25571169,6254097:161273 +k1,19456:27079862,6254097:161273 +k1,19456:28604939,6254097:161273 +k1,19456:30274851,6254097:161273 +k1,19457:32583029,6254097:0 +) +(1,19457:6630773,7119177:25952256,505283,134348 +k1,19456:7863088,7119177:242066 +k1,19456:12016997,7119177:242065 +k1,19456:12886898,7119177:242066 +k1,19456:14148048,7119177:242065 +k1,19456:17051531,7119177:242066 +k1,19456:19335698,7119177:242065 +(1,19456:19335698,7119177:0,452978,115847 +r1,19519:27079912,7119177:7744214,568825,115847 +k1,19456:19335698,7119177:-7744214 +) +(1,19456:19335698,7119177:7744214,452978,115847 +g1,19456:24966364,7119177 +g1,19456:25669788,7119177 +h1,19456:27076635,7119177:0,411205,112570 +) +k1,19456:27321978,7119177:242066 +k1,19456:30037372,7119177:242065 +k1,19456:31563944,7119177:242066 +k1,19456:32583029,7119177:0 +) +(1,19457:6630773,7984257:25952256,513147,134348 +g1,19456:8056181,7984257 +g1,19456:8786907,7984257 +g1,19456:10052407,7984257 +g1,19456:12601102,7984257 +g1,19456:13413093,7984257 +g1,19456:14631407,7984257 +g1,19456:16320269,7984257 +g1,19456:17178790,7984257 +g1,19456:18397104,7984257 +g1,19456:21120780,7984257 +k1,19457:32583029,7984257:10062400 +g1,19457:32583029,7984257 +) +v1,19459:6630773,8669112:0,393216,0 +(1,19467:6630773,11742609:25952256,3466713,196608 +g1,19467:6630773,11742609 +g1,19467:6630773,11742609 +g1,19467:6434165,11742609 +(1,19467:6434165,11742609:0,3466713,196608 +r1,19519:32779637,11742609:26345472,3663321,196608 +k1,19467:6434165,11742609:-26345472 +) +(1,19467:6434165,11742609:26345472,3466713,196608 +[1,19467:6630773,11742609:25952256,3270105,0 +(1,19461:6630773,8896943:25952256,424439,112852 +(1,19460:6630773,8896943:0,0,0 +g1,19460:6630773,8896943 +g1,19460:6630773,8896943 +g1,19460:6303093,8896943 +(1,19460:6303093,8896943:0,0,0 +) +g1,19460:6630773,8896943 +) +k1,19461:6630773,8896943:0 +g1,19461:10614221,8896943 +g1,19461:11278129,8896943 +k1,19461:11278129,8896943:0 +h1,19461:13933761,8896943:0,0,0 +k1,19461:32583029,8896943:18649268 +g1,19461:32583029,8896943 +) +(1,19462:6630773,9581798:25952256,424439,112852 +h1,19462:6630773,9581798:0,0,0 +g1,19462:6962727,9581798 +g1,19462:7294681,9581798 +g1,19462:7626635,9581798 +g1,19462:7958589,9581798 +g1,19462:8290543,9581798 +g1,19462:8622497,9581798 +g1,19462:8954451,9581798 +g1,19462:11610083,9581798 +g1,19462:12273991,9581798 +g1,19462:14597669,9581798 +g1,19462:15593531,9581798 +g1,19462:17585255,9581798 +g1,19462:18249163,9581798 +g1,19462:20904795,9581798 +h1,19462:21236749,9581798:0,0,0 +k1,19462:32583029,9581798:11346280 +g1,19462:32583029,9581798 +) +(1,19463:6630773,10266653:25952256,424439,112852 +h1,19463:6630773,10266653:0,0,0 +g1,19463:6962727,10266653 +g1,19463:7294681,10266653 +g1,19463:12605944,10266653 +g1,19463:13269852,10266653 +g1,19463:15261576,10266653 +g1,19463:17253300,10266653 +g1,19463:17917208,10266653 +g1,19463:19908932,10266653 +g1,19463:21568702,10266653 +g1,19463:22232610,10266653 +g1,19463:23228472,10266653 +h1,19463:23560426,10266653:0,0,0 +k1,19463:32583029,10266653:9022603 +g1,19463:32583029,10266653 +) +(1,19464:6630773,10951508:25952256,424439,112852 +h1,19464:6630773,10951508:0,0,0 +g1,19464:6962727,10951508 +g1,19464:7294681,10951508 +g1,19464:11610082,10951508 +h1,19464:11942036,10951508:0,0,0 +k1,19464:32583028,10951508:20640992 +g1,19464:32583028,10951508 +) +(1,19465:6630773,11636363:25952256,424439,106246 +h1,19465:6630773,11636363:0,0,0 +g1,19465:6962727,11636363 +g1,19465:7294681,11636363 +g1,19465:12605944,11636363 +g1,19465:13269852,11636363 +h1,19465:14597668,11636363:0,0,0 +k1,19465:32583028,11636363:17985360 +g1,19465:32583028,11636363 +) +] +) +g1,19467:32583029,11742609 +g1,19467:6630773,11742609 +g1,19467:6630773,11742609 +g1,19467:32583029,11742609 +g1,19467:32583029,11742609 +) +h1,19467:6630773,11939217:0,0,0 +(1,19470:6630773,21088419:25952256,9083666,0 +k1,19470:10523651,21088419:3892878 +h1,19469:10523651,21088419:0,0,0 +(1,19469:10523651,21088419:18166500,9083666,0 +(1,19469:10523651,21088419:18167376,9083688,0 +(1,19469:10523651,21088419:18167376,9083688,0 +(1,19469:10523651,21088419:0,9083688,0 +(1,19469:10523651,21088419:0,14208860,0 +(1,19469:10523651,21088419:28417720,14208860,0 +) +k1,19469:10523651,21088419:-28417720 +) +) +g1,19469:28691027,21088419 +) +) +) +g1,19470:28690151,21088419 +k1,19470:32583029,21088419:3892878 +) +(1,19477:6630773,21953499:25952256,505283,126483 +h1,19476:6630773,21953499:983040,0,0 +k1,19476:8438193,21953499:196545 +k1,19476:9653822,21953499:196544 +k1,19476:12511784,21953499:196545 +k1,19476:14737324,21953499:196545 +k1,19476:15952954,21953499:196545 +k1,19476:17375677,21953499:196544 +k1,19476:18223650,21953499:196545 +k1,19476:19167961,21953499:196545 +k1,19476:21527848,21953499:196544 +k1,19476:22931566,21953499:196545 +k1,19476:25713506,21953499:196545 +k1,19476:26561479,21953499:196545 +k1,19476:27777108,21953499:196544 +(1,19476:27777108,21953499:0,452978,115847 +r1,19519:29542221,21953499:1765113,568825,115847 +k1,19476:27777108,21953499:-1765113 +) +(1,19476:27777108,21953499:1765113,452978,115847 +k1,19476:27777108,21953499:3277 +h1,19476:29538944,21953499:0,411205,112570 +) +k1,19476:29738766,21953499:196545 +k1,19476:32583029,21953499:0 +) +(1,19477:6630773,22818579:25952256,513147,134348 +k1,19476:8569444,22818579:203278 +k1,19476:11747401,22818579:203278 +k1,19476:14146791,22818579:203279 +k1,19476:17670778,22818579:203278 +k1,19476:19839481,22818579:203278 +k1,19476:20694187,22818579:203278 +k1,19476:21916551,22818579:203279 +k1,19476:23509192,22818579:203278 +k1,19476:25588766,22818579:203278 +(1,19476:25588766,22818579:0,452978,115847 +r1,19519:28057303,22818579:2468537,568825,115847 +k1,19476:25588766,22818579:-2468537 +) +(1,19476:25588766,22818579:2468537,452978,115847 +k1,19476:25588766,22818579:3277 +h1,19476:28054026,22818579:0,411205,112570 +) +k1,19476:28434251,22818579:203278 +k1,19476:29107423,22818579:203279 +k1,19476:29842198,22818579:203278 +k1,19476:31331292,22818579:203278 +k1,19477:32583029,22818579:0 +) +(1,19477:6630773,23683659:25952256,513147,134348 +k1,19476:8455350,23683659:166516 +k1,19476:9813311,23683659:166516 +k1,19476:12267034,23683659:166516 +k1,19476:15872879,23683659:166516 +k1,19476:16690823,23683659:166516 +k1,19476:18499671,23683659:166516 +k1,19476:21178182,23683659:166516 +k1,19476:24319377,23683659:166516 +k1,19476:26682004,23683659:166516 +k1,19476:28242471,23683659:166516 +k1,19476:28764847,23683659:166516 +k1,19476:31048831,23683659:166516 +k1,19477:32583029,23683659:0 +) +(1,19477:6630773,24548739:25952256,505283,134348 +k1,19476:8174655,24548739:276416 +k1,19476:9724435,24548739:276415 +k1,19476:10683736,24548739:276416 +k1,19476:11316011,24548739:276415 +k1,19476:13088614,24548739:276416 +k1,19476:16725061,24548739:276416 +k1,19476:19206763,24548739:276415 +k1,19476:20169341,24548739:276416 +k1,19476:21216459,24548739:276415 +k1,19476:24565203,24548739:276416 +k1,19476:25457657,24548739:276416 +k1,19476:26753157,24548739:276415 +k1,19476:28129267,24548739:276416 +k1,19476:29057110,24548739:276415 +(1,19476:29057110,24548739:0,452978,115847 +r1,19519:30822223,24548739:1765113,568825,115847 +k1,19476:29057110,24548739:-1765113 +) +(1,19476:29057110,24548739:1765113,452978,115847 +k1,19476:29057110,24548739:3277 +h1,19476:30818946,24548739:0,411205,112570 +) +k1,19476:31098639,24548739:276416 +k1,19476:32583029,24548739:0 +) +(1,19477:6630773,25413819:25952256,505283,126483 +g1,19476:9566785,25413819 +g1,19476:10417442,25413819 +g1,19476:11635756,25413819 +g1,19476:14589463,25413819 +g1,19476:16119073,25413819 +g1,19476:17384573,25413819 +k1,19477:32583029,25413819:12863409 +g1,19477:32583029,25413819 +) +v1,19479:6630773,26098674:0,393216,0 +(1,19486:6630773,28493922:25952256,2788464,196608 +g1,19486:6630773,28493922 +g1,19486:6630773,28493922 +g1,19486:6434165,28493922 +(1,19486:6434165,28493922:0,2788464,196608 +r1,19519:32779637,28493922:26345472,2985072,196608 +k1,19486:6434165,28493922:-26345472 +) +(1,19486:6434165,28493922:26345472,2788464,196608 +[1,19486:6630773,28493922:25952256,2591856,0 +(1,19481:6630773,26326505:25952256,424439,112852 +(1,19480:6630773,26326505:0,0,0 +g1,19480:6630773,26326505 +g1,19480:6630773,26326505 +g1,19480:6303093,26326505 +(1,19480:6303093,26326505:0,0,0 +) +g1,19480:6630773,26326505 +) +k1,19481:6630773,26326505:0 +g1,19481:10614221,26326505 +g1,19481:11278129,26326505 +k1,19481:11278129,26326505:0 +h1,19481:13933761,26326505:0,0,0 +k1,19481:32583029,26326505:18649268 +g1,19481:32583029,26326505 +) +(1,19482:6630773,27011360:25952256,424439,112852 +h1,19482:6630773,27011360:0,0,0 +g1,19482:6962727,27011360 +g1,19482:7294681,27011360 +g1,19482:7626635,27011360 +g1,19482:7958589,27011360 +g1,19482:8290543,27011360 +g1,19482:8622497,27011360 +g1,19482:8954451,27011360 +g1,19482:11610083,27011360 +g1,19482:12273991,27011360 +g1,19482:14597669,27011360 +g1,19482:15593531,27011360 +g1,19482:17585255,27011360 +g1,19482:18249163,27011360 +g1,19482:23560426,27011360 +g1,19482:24556288,27011360 +g1,19482:26216058,27011360 +g1,19482:27543874,27011360 +g1,19482:28207782,27011360 +g1,19482:30199506,27011360 +h1,19482:30531460,27011360:0,0,0 +k1,19482:32583029,27011360:2051569 +g1,19482:32583029,27011360 +) +(1,19483:6630773,27696215:25952256,424439,112852 +h1,19483:6630773,27696215:0,0,0 +g1,19483:6962727,27696215 +g1,19483:7294681,27696215 +g1,19483:12605944,27696215 +g1,19483:13269852,27696215 +g1,19483:15261576,27696215 +g1,19483:17253300,27696215 +g1,19483:17917208,27696215 +g1,19483:19908932,27696215 +g1,19483:21568702,27696215 +g1,19483:22232610,27696215 +g1,19483:23228472,27696215 +h1,19483:23560426,27696215:0,0,0 +k1,19483:32583029,27696215:9022603 +g1,19483:32583029,27696215 +) +(1,19484:6630773,28381070:25952256,424439,112852 +h1,19484:6630773,28381070:0,0,0 +g1,19484:6962727,28381070 +g1,19484:7294681,28381070 +k1,19484:7294681,28381070:0 +h1,19484:11278128,28381070:0,0,0 +k1,19484:32583028,28381070:21304900 +g1,19484:32583028,28381070 +) +] +) +g1,19486:32583029,28493922 +g1,19486:6630773,28493922 +g1,19486:6630773,28493922 +g1,19486:32583029,28493922 +g1,19486:32583029,28493922 +) +h1,19486:6630773,28690530:0,0,0 +(1,19490:6630773,29555610:25952256,513147,126483 +h1,19489:6630773,29555610:983040,0,0 +k1,19489:8700809,29555610:269107 +(1,19489:8700809,29555610:0,452978,122846 +r1,19519:12927905,29555610:4227096,575824,122846 +k1,19489:8700809,29555610:-4227096 +) +(1,19489:8700809,29555610:4227096,452978,122846 +k1,19489:8700809,29555610:3277 +h1,19489:12924628,29555610:0,411205,112570 +) +k1,19489:13197012,29555610:269107 +k1,19489:15299816,29555610:269107 +k1,19489:16588008,29555610:269107 +k1,19489:18510589,29555610:269108 +k1,19489:21954260,29555610:269107 +k1,19489:22909529,29555610:269107 +(1,19489:22909529,29555610:0,452978,122846 +r1,19519:26784913,29555610:3875384,575824,122846 +k1,19489:22909529,29555610:-3875384 +) +(1,19489:22909529,29555610:3875384,452978,122846 +k1,19489:22909529,29555610:3277 +h1,19489:26781636,29555610:0,411205,112570 +) +k1,19489:27054020,29555610:269107 +k1,19489:29601158,29555610:269107 +k1,19489:30817916,29555610:269107 +(1,19489:30817916,29555610:0,452978,122846 +r1,19519:32583029,29555610:1765113,575824,122846 +k1,19489:30817916,29555610:-1765113 +) +(1,19489:30817916,29555610:1765113,452978,122846 +k1,19489:30817916,29555610:3277 +h1,19489:32579752,29555610:0,411205,112570 +) +k1,19489:32583029,29555610:0 +) +(1,19490:6630773,30420690:25952256,513147,134348 +k1,19489:7473216,30420690:226405 +k1,19489:10528154,30420690:226405 +k1,19489:13181817,30420690:226405 +k1,19489:14599667,30420690:226405 +k1,19489:18619296,30420690:226405 +(1,19489:18619296,30420690:0,452978,115847 +r1,19519:22142968,30420690:3523672,568825,115847 +k1,19489:18619296,30420690:-3523672 +) +(1,19489:18619296,30420690:3523672,452978,115847 +k1,19489:18619296,30420690:3277 +h1,19489:22139691,30420690:0,411205,112570 +) +k1,19489:22369374,30420690:226406 +k1,19489:23543430,30420690:226405 +k1,19489:24788920,30420690:226405 +k1,19489:26830017,30420690:226405 +k1,19489:27715714,30420690:226405 +k1,19489:28961204,30420690:226405 +k1,19489:31327360,30420690:226405 +k1,19490:32583029,30420690:0 +) +(1,19490:6630773,31285770:25952256,513147,126483 +(1,19489:6630773,31285770:0,452978,115847 +r1,19519:9099310,31285770:2468537,568825,115847 +k1,19489:6630773,31285770:-2468537 +) +(1,19489:6630773,31285770:2468537,452978,115847 +k1,19489:6630773,31285770:3277 +h1,19489:9096033,31285770:0,411205,112570 +) +k1,19489:9247891,31285770:148581 +k1,19489:10344123,31285770:148581 +k1,19489:11511789,31285770:148581 +k1,19489:15016470,31285770:148582 +k1,19489:15824343,31285770:148581 +k1,19489:16992009,31285770:148581 +k1,19489:18300577,31285770:148581 +k1,19489:21020135,31285770:148581 +(1,19489:21020135,31285770:0,452978,122846 +r1,19519:25598943,31285770:4578808,575824,122846 +k1,19489:21020135,31285770:-4578808 +) +(1,19489:21020135,31285770:4578808,452978,122846 +k1,19489:21020135,31285770:3277 +h1,19489:25595666,31285770:0,411205,112570 +) +k1,19489:25747524,31285770:148581 +k1,19489:26843757,31285770:148582 +k1,19489:28011423,31285770:148581 +k1,19489:29947826,31285770:148581 +k1,19489:32583029,31285770:0 +) +(1,19490:6630773,32150850:25952256,513147,126483 +k1,19489:7878811,32150850:228953 +k1,19489:9333943,32150850:228953 +k1,19489:12613597,32150850:228953 +k1,19489:14033995,32150850:228953 +k1,19489:15282033,32150850:228953 +k1,19489:16670973,32150850:228953 +k1,19489:20124297,32150850:228953 +k1,19489:21544694,32150850:228952 +(1,19489:21544694,32150850:0,459977,115847 +r1,19519:22958095,32150850:1413401,575824,115847 +k1,19489:21544694,32150850:-1413401 +) +(1,19489:21544694,32150850:1413401,459977,115847 +k1,19489:21544694,32150850:3277 +h1,19489:22954818,32150850:0,411205,112570 +) +k1,19489:23187048,32150850:228953 +k1,19489:24363652,32150850:228953 +k1,19489:25611690,32150850:228953 +k1,19489:27871604,32150850:228953 +k1,19489:29613783,32150850:228953 +k1,19489:30494164,32150850:228953 +k1,19489:31563944,32150850:228953 +k1,19489:32583029,32150850:0 +) +(1,19490:6630773,33015930:25952256,505283,134348 +g1,19489:8841302,33015930 +k1,19490:32583029,33015930:19899352 +g1,19490:32583029,33015930 +) +v1,19493:6630773,33700785:0,393216,0 +(1,19509:6630773,42253122:25952256,8945553,196608 +g1,19509:6630773,42253122 +g1,19509:6630773,42253122 +g1,19509:6434165,42253122 +(1,19509:6434165,42253122:0,8945553,196608 +r1,19519:32779637,42253122:26345472,9142161,196608 +k1,19509:6434165,42253122:-26345472 +) +(1,19509:6434165,42253122:26345472,8945553,196608 +[1,19509:6630773,42253122:25952256,8748945,0 +(1,19495:6630773,33928616:25952256,424439,106246 +(1,19494:6630773,33928616:0,0,0 +g1,19494:6630773,33928616 +g1,19494:6630773,33928616 +g1,19494:6303093,33928616 +(1,19494:6303093,33928616:0,0,0 +) +g1,19494:6630773,33928616 +) +g1,19495:9286405,33928616 +k1,19495:9286405,33928616:0 +h1,19495:9950313,33928616:0,0,0 +k1,19495:32583029,33928616:22632716 +g1,19495:32583029,33928616 +) +(1,19496:6630773,34613471:25952256,431045,106246 +h1,19496:6630773,34613471:0,0,0 +g1,19496:6962727,34613471 +g1,19496:7294681,34613471 +g1,19496:11610082,34613471 +g1,19496:12273990,34613471 +g1,19496:13933760,34613471 +g1,19496:14597668,34613471 +g1,19496:15261576,34613471 +g1,19496:17585254,34613471 +k1,19496:17585254,34613471:0 +h1,19496:18581116,34613471:0,0,0 +k1,19496:32583029,34613471:14001913 +g1,19496:32583029,34613471 +) +(1,19497:6630773,35298326:25952256,431045,86428 +h1,19497:6630773,35298326:0,0,0 +g1,19497:6962727,35298326 +g1,19497:7294681,35298326 +g1,19497:7626635,35298326 +g1,19497:7958589,35298326 +g1,19497:8290543,35298326 +g1,19497:8622497,35298326 +g1,19497:8954451,35298326 +g1,19497:9286405,35298326 +g1,19497:9618359,35298326 +g1,19497:9950313,35298326 +g1,19497:10282267,35298326 +g1,19497:10614221,35298326 +g1,19497:10946175,35298326 +g1,19497:12937899,35298326 +g1,19497:13601807,35298326 +g1,19497:16589393,35298326 +g1,19497:18913071,35298326 +g1,19497:21900657,35298326 +g1,19497:24556289,35298326 +h1,19497:27211921,35298326:0,0,0 +k1,19497:32583029,35298326:5371108 +g1,19497:32583029,35298326 +) +(1,19498:6630773,35983181:25952256,0,0 +h1,19498:6630773,35983181:0,0,0 +h1,19498:6630773,35983181:0,0,0 +k1,19498:32583029,35983181:25952256 +g1,19498:32583029,35983181 +) +(1,19499:6630773,36668036:25952256,424439,112852 +h1,19499:6630773,36668036:0,0,0 +g1,19499:10614221,36668036 +g1,19499:11278129,36668036 +k1,19499:11278129,36668036:0 +h1,19499:13933761,36668036:0,0,0 +k1,19499:32583029,36668036:18649268 +g1,19499:32583029,36668036 +) +(1,19500:6630773,37352891:25952256,424439,112852 +h1,19500:6630773,37352891:0,0,0 +g1,19500:6962727,37352891 +g1,19500:7294681,37352891 +g1,19500:7626635,37352891 +g1,19500:7958589,37352891 +g1,19500:8290543,37352891 +g1,19500:8622497,37352891 +g1,19500:8954451,37352891 +g1,19500:11610083,37352891 +g1,19500:12273991,37352891 +g1,19500:14597669,37352891 +g1,19500:15593531,37352891 +g1,19500:17585255,37352891 +g1,19500:18249163,37352891 +g1,19500:20904795,37352891 +h1,19500:21236749,37352891:0,0,0 +k1,19500:32583029,37352891:11346280 +g1,19500:32583029,37352891 +) +(1,19501:6630773,38037746:25952256,424439,112852 +h1,19501:6630773,38037746:0,0,0 +g1,19501:6962727,38037746 +g1,19501:7294681,38037746 +g1,19501:12937898,38037746 +g1,19501:13601806,38037746 +g1,19501:15593530,38037746 +g1,19501:17253300,38037746 +g1,19501:17917208,38037746 +k1,19501:17917208,38037746:0 +h1,19501:18581116,38037746:0,0,0 +k1,19501:32583029,38037746:14001913 +g1,19501:32583029,38037746 +) +(1,19502:6630773,38722601:25952256,424439,86428 +h1,19502:6630773,38722601:0,0,0 +g1,19502:6962727,38722601 +g1,19502:7294681,38722601 +g1,19502:7626635,38722601 +g1,19502:7958589,38722601 +g1,19502:8290543,38722601 +g1,19502:8622497,38722601 +g1,19502:8954451,38722601 +g1,19502:9286405,38722601 +g1,19502:9618359,38722601 +g1,19502:9950313,38722601 +g1,19502:10282267,38722601 +g1,19502:10614221,38722601 +g1,19502:10946175,38722601 +g1,19502:14597668,38722601 +g1,19502:15261576,38722601 +k1,19502:15261576,38722601:0 +h1,19502:15925484,38722601:0,0,0 +k1,19502:32583029,38722601:16657545 +g1,19502:32583029,38722601 +) +(1,19503:6630773,39407456:25952256,424439,86428 +h1,19503:6630773,39407456:0,0,0 +g1,19503:6962727,39407456 +g1,19503:7294681,39407456 +g1,19503:7626635,39407456 +g1,19503:7958589,39407456 +g1,19503:8290543,39407456 +g1,19503:8622497,39407456 +g1,19503:8954451,39407456 +g1,19503:9286405,39407456 +g1,19503:9618359,39407456 +g1,19503:9950313,39407456 +g1,19503:10282267,39407456 +g1,19503:10614221,39407456 +g1,19503:10946175,39407456 +g1,19503:13601807,39407456 +g1,19503:14265715,39407456 +g1,19503:16921347,39407456 +k1,19503:16921347,39407456:0 +h1,19503:19908933,39407456:0,0,0 +k1,19503:32583029,39407456:12674096 +g1,19503:32583029,39407456 +) +(1,19504:6630773,40092311:25952256,424439,112852 +h1,19504:6630773,40092311:0,0,0 +g1,19504:6962727,40092311 +g1,19504:7294681,40092311 +g1,19504:7626635,40092311 +g1,19504:7958589,40092311 +g1,19504:8290543,40092311 +g1,19504:8622497,40092311 +g1,19504:8954451,40092311 +g1,19504:9286405,40092311 +g1,19504:9618359,40092311 +g1,19504:9950313,40092311 +g1,19504:10282267,40092311 +g1,19504:10614221,40092311 +g1,19504:10946175,40092311 +g1,19504:15593530,40092311 +g1,19504:16257438,40092311 +g1,19504:19908932,40092311 +k1,19504:19908932,40092311:0 +h1,19504:22896518,40092311:0,0,0 +k1,19504:32583029,40092311:9686511 +g1,19504:32583029,40092311 +) +(1,19505:6630773,40777166:25952256,431045,106246 +h1,19505:6630773,40777166:0,0,0 +g1,19505:6962727,40777166 +g1,19505:7294681,40777166 +g1,19505:7626635,40777166 +g1,19505:7958589,40777166 +g1,19505:8290543,40777166 +g1,19505:8622497,40777166 +g1,19505:8954451,40777166 +g1,19505:9286405,40777166 +g1,19505:9618359,40777166 +g1,19505:9950313,40777166 +g1,19505:10282267,40777166 +g1,19505:10614221,40777166 +g1,19505:10946175,40777166 +g1,19505:12605945,40777166 +g1,19505:13269853,40777166 +g1,19505:16589392,40777166 +g1,19505:18581116,40777166 +g1,19505:19245024,40777166 +g1,19505:20904794,40777166 +h1,19505:21236748,40777166:0,0,0 +k1,19505:32583029,40777166:11346281 +g1,19505:32583029,40777166 +) +(1,19506:6630773,41462021:25952256,424439,112852 +h1,19506:6630773,41462021:0,0,0 +g1,19506:6962727,41462021 +g1,19506:7294681,41462021 +g1,19506:11610082,41462021 +h1,19506:11942036,41462021:0,0,0 +k1,19506:32583028,41462021:20640992 +g1,19506:32583028,41462021 +) +(1,19507:6630773,42146876:25952256,424439,106246 +h1,19507:6630773,42146876:0,0,0 +g1,19507:6962727,42146876 +g1,19507:7294681,42146876 +g1,19507:12605944,42146876 +g1,19507:13269852,42146876 +h1,19507:14597668,42146876:0,0,0 +k1,19507:32583028,42146876:17985360 +g1,19507:32583028,42146876 +) +] +) +g1,19509:32583029,42253122 +g1,19509:6630773,42253122 +g1,19509:6630773,42253122 +g1,19509:32583029,42253122 +g1,19509:32583029,42253122 +) +h1,19509:6630773,42449730:0,0,0 +] +(1,19519:32583029,45706769:0,0,0 +g1,19519:32583029,45706769 +) +) +] +(1,19519:6630773,47279633:25952256,0,0 +h1,19519:6630773,47279633:25952256,0,0 +) +] +(1,19519:4262630,4025873:0,0,0 +[1,19519:-473656,4025873:0,0,0 +(1,19519:-473656,-710413:0,0,0 +(1,19519:-473656,-710413:0,0,0 +g1,19519:-473656,-710413 +) +g1,19519:-473656,-710413 ) ] ) ] !24136 -}324 -Input:3445:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3446:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3447:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3448:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}325 Input:3449:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3450:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3451:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -340279,689 +340483,689 @@ Input:3460:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3461:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3462:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3463:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3464:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3467:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{325 -[1,19554:4262630,47279633:28320399,43253760,0 -(1,19554:4262630,4025873:0,0,0 -[1,19554:-473656,4025873:0,0,0 -(1,19554:-473656,-710413:0,0,0 -(1,19554:-473656,-644877:0,0,0 -k1,19554:-473656,-644877:-65536 +{326 +[1,19552:4262630,47279633:28320399,43253760,0 +(1,19552:4262630,4025873:0,0,0 +[1,19552:-473656,4025873:0,0,0 +(1,19552:-473656,-710413:0,0,0 +(1,19552:-473656,-644877:0,0,0 +k1,19552:-473656,-644877:-65536 ) -(1,19554:-473656,4736287:0,0,0 -k1,19554:-473656,4736287:5209943 +(1,19552:-473656,4736287:0,0,0 +k1,19552:-473656,4736287:5209943 ) -g1,19554:-473656,-710413 +g1,19552:-473656,-710413 ) ] ) -[1,19554:6630773,47279633:25952256,43253760,0 -[1,19554:6630773,4812305:25952256,786432,0 -(1,19554:6630773,4812305:25952256,513147,126483 -(1,19554:6630773,4812305:25952256,513147,126483 -g1,19554:3078558,4812305 -[1,19554:3078558,4812305:0,0,0 -(1,19554:3078558,2439708:0,1703936,0 -k1,19554:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19554:2537886,2439708:1179648,16384,0 +[1,19552:6630773,47279633:25952256,43253760,0 +[1,19552:6630773,4812305:25952256,786432,0 +(1,19552:6630773,4812305:25952256,513147,126483 +(1,19552:6630773,4812305:25952256,513147,126483 +g1,19552:3078558,4812305 +[1,19552:3078558,4812305:0,0,0 +(1,19552:3078558,2439708:0,1703936,0 +k1,19552:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19552:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19554:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19552:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19554:3078558,4812305:0,0,0 -(1,19554:3078558,2439708:0,1703936,0 -g1,19554:29030814,2439708 -g1,19554:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19554:36151628,1915420:16384,1179648,0 +[1,19552:3078558,4812305:0,0,0 +(1,19552:3078558,2439708:0,1703936,0 +g1,19552:29030814,2439708 +g1,19552:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19552:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19554:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19552:37855564,2439708:1179648,16384,0 ) ) -k1,19554:3078556,2439708:-34777008 +k1,19552:3078556,2439708:-34777008 ) ] -[1,19554:3078558,4812305:0,0,0 -(1,19554:3078558,49800853:0,16384,2228224 -k1,19554:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19554:2537886,49800853:1179648,16384,0 +[1,19552:3078558,4812305:0,0,0 +(1,19552:3078558,49800853:0,16384,2228224 +k1,19552:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19552:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19554:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19552:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19554:3078558,4812305:0,0,0 -(1,19554:3078558,49800853:0,16384,2228224 -g1,19554:29030814,49800853 -g1,19554:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19554:36151628,51504789:16384,1179648,0 +[1,19552:3078558,4812305:0,0,0 +(1,19552:3078558,49800853:0,16384,2228224 +g1,19552:29030814,49800853 +g1,19552:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19552:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19554:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19552:37855564,49800853:1179648,16384,0 ) ) -k1,19554:3078556,49800853:-34777008 +k1,19552:3078556,49800853:-34777008 ) ] -g1,19554:6630773,4812305 -k1,19554:21386205,4812305:13560055 -g1,19554:21999622,4812305 -g1,19554:25611966,4812305 -g1,19554:28956923,4812305 -g1,19554:29772190,4812305 -) -) -] -[1,19554:6630773,45706769:25952256,40108032,0 -(1,19554:6630773,45706769:25952256,40108032,0 -(1,19554:6630773,45706769:0,0,0 -g1,19554:6630773,45706769 -) -[1,19554:6630773,45706769:25952256,40108032,0 -(1,19514:6630773,14682403:25952256,9083666,0 -k1,19514:10523651,14682403:3892878 -h1,19513:10523651,14682403:0,0,0 -(1,19513:10523651,14682403:18166500,9083666,0 -(1,19513:10523651,14682403:18167376,9083688,0 -(1,19513:10523651,14682403:18167376,9083688,0 -(1,19513:10523651,14682403:0,9083688,0 -(1,19513:10523651,14682403:0,14208860,0 -(1,19513:10523651,14682403:28417720,14208860,0 -) -k1,19513:10523651,14682403:-28417720 -) -) -g1,19513:28691027,14682403 -) -) -) -g1,19514:28690151,14682403 -k1,19514:32583029,14682403:3892878 -) -v1,19521:6630773,15547483:0,393216,0 -(1,19522:6630773,19414628:25952256,4260361,0 -g1,19522:6630773,19414628 -g1,19522:6237557,19414628 -r1,19554:6368629,19414628:131072,4260361,0 -g1,19522:6567858,19414628 -g1,19522:6764466,19414628 -[1,19522:6764466,19414628:25818563,4260361,0 -(1,19522:6764466,15819960:25818563,665693,196608 -(1,19521:6764466,15819960:0,665693,196608 -r1,19554:7868133,15819960:1103667,862301,196608 -k1,19521:6764466,15819960:-1103667 -) -(1,19521:6764466,15819960:1103667,665693,196608 -) -k1,19521:8002861,15819960:134728 -k1,19521:9729079,15819960:327680 -k1,19521:12367281,15819960:134727 -k1,19521:14069630,15819960:134728 -k1,19521:15223442,15819960:134727 -k1,19521:18019587,15819960:134728 -k1,19521:20183309,15819960:134727 -k1,19521:21660870,15819960:134728 -k1,19521:23189549,15819960:134728 -k1,19521:24343361,15819960:134727 -k1,19521:27880718,15819960:134728 -k1,19521:28666873,15819960:134727 -k1,19521:29820686,15819960:134728 -k1,19521:32583029,15819960:0 -) -(1,19522:6764466,16685040:25818563,513147,134348 -k1,19521:10620806,16685040:245306 -k1,19521:12057557,16685040:245306 -k1,19521:13696814,16685040:245306 -k1,19521:14961205,16685040:245306 -k1,19521:18344375,16685040:245306 -k1,19521:19241109,16685040:245306 -k1,19521:22550880,16685040:245307 -k1,19521:23447614,16685040:245306 -k1,19521:24671373,16685040:245306 -k1,19521:25687382,16685040:245306 -k1,19521:27257826,16685040:245306 -k1,19521:28162424,16685040:245306 -k1,19521:29426815,16685040:245306 -k1,19521:32583029,16685040:0 -) -(1,19522:6764466,17550120:25818563,505283,134348 -k1,19521:7605242,17550120:224738 -k1,19521:8849065,17550120:224738 -k1,19521:11162435,17550120:224738 -k1,19521:12671679,17550120:224738 -k1,19521:14276605,17550120:224738 -k1,19521:16356667,17550120:224738 -k1,19521:17623428,17550120:224739 -k1,19521:20683253,17550120:224738 -k1,19521:22000476,17550120:224738 -k1,19521:24459992,17550120:224738 -k1,19521:26824481,17550120:224738 -k1,19521:28548027,17550120:224738 -k1,19521:29964210,17550120:224738 -k1,19521:32583029,17550120:0 -) -(1,19522:6764466,18415200:25818563,505283,134348 -k1,19521:7992258,18415200:208707 -k1,19521:10809298,18415200:208707 -k1,19521:11742833,18415200:208707 -k1,19521:13236046,18415200:208707 -k1,19521:13800613,18415200:208707 -k1,19521:16440050,18415200:208707 -k1,19521:20974132,18415200:208706 -k1,19521:23437278,18415200:208707 -k1,19521:24177482,18415200:208707 -k1,19521:27192441,18415200:208707 -k1,19521:28654852,18415200:208707 -k1,19521:30200493,18415200:208707 -k1,19521:31695016,18415200:208707 -k1,19521:32583029,18415200:0 -) -(1,19522:6764466,19280280:25818563,513147,134348 -g1,19521:9771257,19280280 -g1,19521:10989571,19280280 -(1,19521:10989571,19280280:0,459977,115847 -r1,19554:12402972,19280280:1413401,575824,115847 -k1,19521:10989571,19280280:-1413401 -) -(1,19521:10989571,19280280:1413401,459977,115847 -k1,19521:10989571,19280280:3277 -h1,19521:12399695,19280280:0,411205,112570 -) -g1,19521:12602201,19280280 -g1,19521:13992875,19280280 -(1,19521:13992875,19280280:0,452978,115847 -r1,19554:16109700,19280280:2116825,568825,115847 -k1,19521:13992875,19280280:-2116825 -) -(1,19521:13992875,19280280:2116825,452978,115847 -k1,19521:13992875,19280280:3277 -h1,19521:16106423,19280280:0,411205,112570 -) -g1,19521:16308929,19280280 -g1,19521:19572622,19280280 -g1,19521:20423279,19280280 -g1,19521:22846800,19280280 -g1,19521:23662067,19280280 -g1,19521:24880381,19280280 -k1,19522:32583029,19280280:6260856 -g1,19522:32583029,19280280 -) -] -g1,19522:32583029,19414628 -) -h1,19522:6630773,19414628:0,0,0 -(1,19525:6630773,20279708:25952256,513147,126483 -h1,19524:6630773,20279708:983040,0,0 -k1,19524:8434338,20279708:342768 -k1,19524:9796191,20279708:342768 -k1,19524:13419691,20279708:342768 -(1,19524:13419691,20279708:0,452978,115847 -r1,19554:17998499,20279708:4578808,568825,115847 -k1,19524:13419691,20279708:-4578808 -) -(1,19524:13419691,20279708:4578808,452978,115847 -k1,19524:13419691,20279708:3277 -h1,19524:17995222,20279708:0,411205,112570 -) -k1,19524:18341267,20279708:342768 -k1,19524:19351192,20279708:342769 -(1,19524:19351192,20279708:0,452978,122846 -r1,19554:23226576,20279708:3875384,575824,122846 -k1,19524:19351192,20279708:-3875384 -) -(1,19524:19351192,20279708:3875384,452978,122846 -k1,19524:19351192,20279708:3277 -h1,19524:23223299,20279708:0,411205,112570 -) -k1,19524:23569344,20279708:342768 -k1,19524:24443609,20279708:342768 -k1,19524:25720920,20279708:342768 -k1,19524:26715116,20279708:342768 -(1,19524:26715116,20279708:0,414482,115847 -r1,19554:28128517,20279708:1413401,530329,115847 -k1,19524:26715116,20279708:-1413401 -) -(1,19524:26715116,20279708:1413401,414482,115847 -k1,19524:26715116,20279708:3277 -h1,19524:28125240,20279708:0,411205,112570 -) -k1,19524:28644955,20279708:342768 -k1,19524:30213902,20279708:342768 -k1,19524:32583029,20279708:0 -) -(1,19525:6630773,21144788:25952256,505283,134348 -k1,19524:8129879,21144788:392858 -k1,19524:9270504,21144788:392859 -k1,19524:12160939,21144788:392858 -k1,19524:13315325,21144788:392858 -k1,19524:17581361,21144788:392858 -k1,19524:18993305,21144788:392859 -k1,19524:20612342,21144788:392858 -k1,19524:22289706,21144788:392858 -k1,19524:24638815,21144788:392859 -k1,19524:28133492,21144788:392858 -k1,19524:30895477,21144788:392858 -k1,19524:32583029,21144788:0 -) -(1,19525:6630773,22009868:25952256,513147,126483 -k1,19524:8231098,22009868:200476 -k1,19524:11404286,22009868:200475 -k1,19524:14268801,22009868:200476 -k1,19524:15136432,22009868:200475 -(1,19524:15136432,22009868:0,452978,122846 -r1,19554:19011816,22009868:3875384,575824,122846 -k1,19524:15136432,22009868:-3875384 -) -(1,19524:15136432,22009868:3875384,452978,122846 -k1,19524:15136432,22009868:3277 -h1,19524:19008539,22009868:0,411205,112570 -) -k1,19524:19212292,22009868:200476 -k1,19524:20604212,22009868:200475 -(1,19524:20604212,22009868:0,452978,122846 -r1,19554:24831308,22009868:4227096,575824,122846 -k1,19524:20604212,22009868:-4227096 -) -(1,19524:20604212,22009868:4227096,452978,122846 -k1,19524:20604212,22009868:3277 -h1,19524:24828031,22009868:0,411205,112570 -) -k1,19524:25205454,22009868:200476 -(1,19524:25205454,22009868:0,452978,122846 -r1,19554:31191109,22009868:5985655,575824,122846 -k1,19524:25205454,22009868:-5985655 -) -(1,19524:25205454,22009868:5985655,452978,122846 -k1,19524:25205454,22009868:3277 -h1,19524:31187832,22009868:0,411205,112570 -) -k1,19524:31391584,22009868:200475 -k1,19525:32583029,22009868:0 -) -(1,19525:6630773,22874948:25952256,505283,134348 -(1,19524:6630773,22874948:0,452978,122846 -r1,19554:12968140,22874948:6337367,575824,122846 -k1,19524:6630773,22874948:-6337367 -) -(1,19524:6630773,22874948:6337367,452978,122846 -k1,19524:6630773,22874948:3277 -h1,19524:12964863,22874948:0,411205,112570 -) -k1,19524:13452774,22874948:310964 -k1,19524:14755298,22874948:310964 -k1,19524:17850231,22874948:310964 -k1,19524:18777233,22874948:310964 -k1,19524:21668349,22874948:310964 -k1,19524:24917291,22874948:310964 -k1,19524:27102585,22874948:310964 -k1,19524:30853534,22874948:310964 -k1,19524:32583029,22874948:0 -) -(1,19525:6630773,23740028:25952256,505283,134348 -k1,19524:9513404,23740028:183203 -k1,19524:10458134,23740028:183202 -k1,19524:14958194,23740028:183203 -k1,19524:19381576,23740028:183203 -k1,19524:20583864,23740028:183203 -k1,19524:21993245,23740028:183202 -k1,19524:22859333,23740028:183203 -k1,19524:25060390,23740028:183203 -k1,19524:27205086,23740028:183203 -k1,19524:28800589,23740028:183202 -k1,19524:30002877,23740028:183203 -k1,19524:32583029,23740028:0 -) -(1,19525:6630773,24605108:25952256,513147,134348 -k1,19524:11663640,24605108:206796 -k1,19524:12818086,24605108:206795 -k1,19524:15142350,24605108:206796 -k1,19524:16008438,24605108:206796 -k1,19524:17545615,24605108:206796 -k1,19524:18403838,24605108:206795 -k1,19524:20898496,24605108:206796 -k1,19524:22124377,24605108:206796 -k1,19524:25348451,24605108:206796 -k1,19524:28238945,24605108:206795 -k1,19524:29637186,24605108:206796 -k1,19524:32583029,24605108:0 -) -(1,19525:6630773,25470188:25952256,513147,134348 -k1,19524:8024865,25470188:202647 -k1,19524:9246596,25470188:202646 -k1,19524:12745049,25470188:202647 -k1,19524:13606987,25470188:202646 -k1,19524:14828719,25470188:202647 -k1,19524:18052575,25470188:202646 -k1,19524:20459198,25470188:202647 -k1,19524:21680929,25470188:202646 -k1,19524:23727759,25470188:202647 -k1,19524:24581833,25470188:202646 -k1,19524:25803565,25470188:202647 -k1,19524:28620442,25470188:202646 -k1,19524:29482381,25470188:202647 -k1,19524:31193666,25470188:202646 -k1,19524:32583029,25470188:0 -) -(1,19525:6630773,26335268:25952256,505283,126483 -k1,19524:10732423,26335268:189806 -k1,19524:12972196,26335268:189807 -k1,19524:13928118,26335268:189806 -k1,19524:17292489,26335268:189807 -k1,19524:20776790,26335268:189806 -k1,19524:21728125,26335268:189807 -(1,19524:21728125,26335268:0,452978,122846 -r1,19554:25603509,26335268:3875384,575824,122846 -k1,19524:21728125,26335268:-3875384 -) -(1,19524:21728125,26335268:3875384,452978,122846 -k1,19524:21728125,26335268:3277 -h1,19524:25600232,26335268:0,411205,112570 -) -k1,19524:25793315,26335268:189806 -k1,19524:27174567,26335268:189807 -(1,19524:27174567,26335268:0,452978,122846 -r1,19554:31401663,26335268:4227096,575824,122846 -k1,19524:27174567,26335268:-4227096 -) -(1,19524:27174567,26335268:4227096,452978,122846 -k1,19524:27174567,26335268:3277 -h1,19524:31398386,26335268:0,411205,112570 -) -k1,19524:31591469,26335268:189806 -k1,19524:32583029,26335268:0 -) -(1,19525:6630773,27200348:25952256,505283,134348 -k1,19524:10136294,27200348:211026 -k1,19524:11108848,27200348:211026 -k1,19524:12338959,27200348:211026 -k1,19524:15462405,27200348:211026 -k1,19524:18511140,27200348:211026 -k1,19524:21656867,27200348:211025 -k1,19524:23562654,27200348:211026 -k1,19524:25058186,27200348:211026 -k1,19524:25625072,27200348:211026 -k1,19524:28527006,27200348:211026 -k1,19524:31563944,27200348:211026 -k1,19524:32583029,27200348:0 -) -(1,19525:6630773,28065428:25952256,513147,134348 -k1,19524:8357740,28065428:213085 -k1,19524:9253711,28065428:213086 -k1,19524:10692975,28065428:213085 -k1,19524:11557489,28065428:213086 -k1,19524:12558972,28065428:213085 -k1,19524:14974068,28065428:213086 -k1,19524:17049031,28065428:213085 -k1,19524:19493617,28065428:213085 -k1,19524:23002509,28065428:213086 -k1,19524:23874886,28065428:213085 -k1,19524:25784699,28065428:213086 -k1,19524:29018994,28065428:213085 -k1,19524:30336362,28065428:213086 -k1,19524:31835263,28065428:213085 -k1,19524:32583029,28065428:0 -) -(1,19525:6630773,28930508:25952256,505283,134348 -g1,19524:10091073,28930508 -g1,19524:11684253,28930508 -g1,19524:15058046,28930508 -g1,19524:15940160,28930508 -k1,19525:32583029,28930508:13187811 -g1,19525:32583029,28930508 -) -v1,19527:6630773,29615363:0,393216,0 -(1,19537:6630773,34065176:25952256,4843029,196608 -g1,19537:6630773,34065176 -g1,19537:6630773,34065176 -g1,19537:6434165,34065176 -(1,19537:6434165,34065176:0,4843029,196608 -r1,19554:32779637,34065176:26345472,5039637,196608 -k1,19537:6434165,34065176:-26345472 -) -(1,19537:6434165,34065176:26345472,4843029,196608 -[1,19537:6630773,34065176:25952256,4646421,0 -(1,19529:6630773,29843194:25952256,424439,112852 -(1,19528:6630773,29843194:0,0,0 -g1,19528:6630773,29843194 -g1,19528:6630773,29843194 -g1,19528:6303093,29843194 -(1,19528:6303093,29843194:0,0,0 -) -g1,19528:6630773,29843194 -) -k1,19529:6630773,29843194:0 -g1,19529:10614221,29843194 -g1,19529:11278129,29843194 -k1,19529:11278129,29843194:0 -h1,19529:13601807,29843194:0,0,0 -k1,19529:32583029,29843194:18981222 -g1,19529:32583029,29843194 -) -(1,19530:6630773,30528049:25952256,424439,112852 -h1,19530:6630773,30528049:0,0,0 -g1,19530:6962727,30528049 -g1,19530:7294681,30528049 -g1,19530:7626635,30528049 -g1,19530:7958589,30528049 -g1,19530:8290543,30528049 -g1,19530:8622497,30528049 -g1,19530:8954451,30528049 -g1,19530:11610083,30528049 -g1,19530:12273991,30528049 -g1,19530:14265715,30528049 -g1,19530:14929623,30528049 -g1,19530:16921347,30528049 -g1,19530:17585255,30528049 -g1,19530:18249163,30528049 -k1,19530:18249163,30528049:0 -h1,19530:19576979,30528049:0,0,0 -k1,19530:32583029,30528049:13006050 -g1,19530:32583029,30528049 -) -(1,19531:6630773,31212904:25952256,431045,106246 -h1,19531:6630773,31212904:0,0,0 -g1,19531:6962727,31212904 -g1,19531:7294681,31212904 -g1,19531:7626635,31212904 -g1,19531:7958589,31212904 -g1,19531:8290543,31212904 -g1,19531:8622497,31212904 -g1,19531:8954451,31212904 -g1,19531:9286405,31212904 -g1,19531:9618359,31212904 -g1,19531:9950313,31212904 -g1,19531:10282267,31212904 -g1,19531:10614221,31212904 -g1,19531:10946175,31212904 -g1,19531:11278129,31212904 -g1,19531:11610083,31212904 -g1,19531:11942037,31212904 -g1,19531:12273991,31212904 -g1,19531:12605945,31212904 -g1,19531:12937899,31212904 -g1,19531:13269853,31212904 -g1,19531:13601807,31212904 -g1,19531:15925485,31212904 -g1,19531:16589393,31212904 -g1,19531:20904795,31212904 -g1,19531:22564565,31212904 -g1,19531:23228473,31212904 -g1,19531:24556289,31212904 -g1,19531:26548013,31212904 -g1,19531:27211921,31212904 -g1,19531:29203645,31212904 -h1,19531:29535599,31212904:0,0,0 -k1,19531:32583029,31212904:3047430 -g1,19531:32583029,31212904 -) -(1,19532:6630773,31897759:25952256,424439,79822 -h1,19532:6630773,31897759:0,0,0 -g1,19532:6962727,31897759 -g1,19532:7294681,31897759 -g1,19532:11610082,31897759 -h1,19532:11942036,31897759:0,0,0 -k1,19532:32583028,31897759:20640992 -g1,19532:32583028,31897759 -) -(1,19533:6630773,32582614:25952256,424439,112852 -h1,19533:6630773,32582614:0,0,0 -g1,19533:6962727,32582614 -g1,19533:7294681,32582614 -g1,19533:12937898,32582614 -g1,19533:13601806,32582614 -g1,19533:15261576,32582614 -h1,19533:15593530,32582614:0,0,0 -k1,19533:32583030,32582614:16989500 -g1,19533:32583030,32582614 -) -(1,19534:6630773,33267469:25952256,424439,112852 -h1,19534:6630773,33267469:0,0,0 -g1,19534:6962727,33267469 -g1,19534:7294681,33267469 -g1,19534:14929622,33267469 -g1,19534:15593530,33267469 -g1,19534:18581116,33267469 -g1,19534:20240886,33267469 -g1,19534:20904794,33267469 -k1,19534:20904794,33267469:0 -h1,19534:21568702,33267469:0,0,0 -k1,19534:32583029,33267469:11014327 -g1,19534:32583029,33267469 -) -(1,19535:6630773,33952324:25952256,424439,112852 -h1,19535:6630773,33952324:0,0,0 -g1,19535:6962727,33952324 -g1,19535:7294681,33952324 -g1,19535:7626635,33952324 -g1,19535:7958589,33952324 -g1,19535:8290543,33952324 -g1,19535:8622497,33952324 -g1,19535:8954451,33952324 -g1,19535:9286405,33952324 -g1,19535:9618359,33952324 -g1,19535:9950313,33952324 -g1,19535:10282267,33952324 -g1,19535:10614221,33952324 -g1,19535:10946175,33952324 -g1,19535:11278129,33952324 -g1,19535:11610083,33952324 -g1,19535:11942037,33952324 -g1,19535:12273991,33952324 -g1,19535:12605945,33952324 -g1,19535:18913070,33952324 -g1,19535:19576978,33952324 -g1,19535:21236748,33952324 -g1,19535:25884103,33952324 -g1,19535:26548011,33952324 -h1,19535:27875827,33952324:0,0,0 -k1,19535:32583029,33952324:4707202 -g1,19535:32583029,33952324 -) -] -) -g1,19537:32583029,34065176 -g1,19537:6630773,34065176 -g1,19537:6630773,34065176 -g1,19537:32583029,34065176 -g1,19537:32583029,34065176 -) -h1,19537:6630773,34261784:0,0,0 -(1,19540:6630773,43410986:25952256,9083666,0 -k1,19540:10523651,43410986:3892878 -h1,19539:10523651,43410986:0,0,0 -(1,19539:10523651,43410986:18166500,9083666,0 -(1,19539:10523651,43410986:18167376,9083688,0 -(1,19539:10523651,43410986:18167376,9083688,0 -(1,19539:10523651,43410986:0,9083688,0 -(1,19539:10523651,43410986:0,14208860,0 -(1,19539:10523651,43410986:28417720,14208860,0 -) -k1,19539:10523651,43410986:-28417720 -) -) -g1,19539:28691027,43410986 -) -) -) -g1,19540:28690151,43410986 -k1,19540:32583029,43410986:3892878 -) -] -(1,19554:32583029,45706769:0,0,0 -g1,19554:32583029,45706769 -) -) -] -(1,19554:6630773,47279633:25952256,0,0 -h1,19554:6630773,47279633:25952256,0,0 -) -] -(1,19554:4262630,4025873:0,0,0 -[1,19554:-473656,4025873:0,0,0 -(1,19554:-473656,-710413:0,0,0 -(1,19554:-473656,-710413:0,0,0 -g1,19554:-473656,-710413 -) -g1,19554:-473656,-710413 +g1,19552:6630773,4812305 +k1,19552:21386205,4812305:13560055 +g1,19552:21999622,4812305 +g1,19552:25611966,4812305 +g1,19552:28956923,4812305 +g1,19552:29772190,4812305 +) +) +] +[1,19552:6630773,45706769:25952256,40108032,0 +(1,19552:6630773,45706769:25952256,40108032,0 +(1,19552:6630773,45706769:0,0,0 +g1,19552:6630773,45706769 +) +[1,19552:6630773,45706769:25952256,40108032,0 +(1,19512:6630773,14682403:25952256,9083666,0 +k1,19512:10523651,14682403:3892878 +h1,19511:10523651,14682403:0,0,0 +(1,19511:10523651,14682403:18166500,9083666,0 +(1,19511:10523651,14682403:18167376,9083688,0 +(1,19511:10523651,14682403:18167376,9083688,0 +(1,19511:10523651,14682403:0,9083688,0 +(1,19511:10523651,14682403:0,14208860,0 +(1,19511:10523651,14682403:28417720,14208860,0 +) +k1,19511:10523651,14682403:-28417720 +) +) +g1,19511:28691027,14682403 +) +) +) +g1,19512:28690151,14682403 +k1,19512:32583029,14682403:3892878 +) +v1,19519:6630773,15547483:0,393216,0 +(1,19520:6630773,19414628:25952256,4260361,0 +g1,19520:6630773,19414628 +g1,19520:6237557,19414628 +r1,19552:6368629,19414628:131072,4260361,0 +g1,19520:6567858,19414628 +g1,19520:6764466,19414628 +[1,19520:6764466,19414628:25818563,4260361,0 +(1,19520:6764466,15819960:25818563,665693,196608 +(1,19519:6764466,15819960:0,665693,196608 +r1,19552:7868133,15819960:1103667,862301,196608 +k1,19519:6764466,15819960:-1103667 +) +(1,19519:6764466,15819960:1103667,665693,196608 +) +k1,19519:8002861,15819960:134728 +k1,19519:9729079,15819960:327680 +k1,19519:12367281,15819960:134727 +k1,19519:14069630,15819960:134728 +k1,19519:15223442,15819960:134727 +k1,19519:18019587,15819960:134728 +k1,19519:20183309,15819960:134727 +k1,19519:21660870,15819960:134728 +k1,19519:23189549,15819960:134728 +k1,19519:24343361,15819960:134727 +k1,19519:27880718,15819960:134728 +k1,19519:28666873,15819960:134727 +k1,19519:29820686,15819960:134728 +k1,19519:32583029,15819960:0 +) +(1,19520:6764466,16685040:25818563,513147,134348 +k1,19519:10620806,16685040:245306 +k1,19519:12057557,16685040:245306 +k1,19519:13696814,16685040:245306 +k1,19519:14961205,16685040:245306 +k1,19519:18344375,16685040:245306 +k1,19519:19241109,16685040:245306 +k1,19519:22550880,16685040:245307 +k1,19519:23447614,16685040:245306 +k1,19519:24671373,16685040:245306 +k1,19519:25687382,16685040:245306 +k1,19519:27257826,16685040:245306 +k1,19519:28162424,16685040:245306 +k1,19519:29426815,16685040:245306 +k1,19519:32583029,16685040:0 +) +(1,19520:6764466,17550120:25818563,505283,134348 +k1,19519:7605242,17550120:224738 +k1,19519:8849065,17550120:224738 +k1,19519:11162435,17550120:224738 +k1,19519:12671679,17550120:224738 +k1,19519:14276605,17550120:224738 +k1,19519:16356667,17550120:224738 +k1,19519:17623428,17550120:224739 +k1,19519:20683253,17550120:224738 +k1,19519:22000476,17550120:224738 +k1,19519:24459992,17550120:224738 +k1,19519:26824481,17550120:224738 +k1,19519:28548027,17550120:224738 +k1,19519:29964210,17550120:224738 +k1,19519:32583029,17550120:0 +) +(1,19520:6764466,18415200:25818563,505283,134348 +k1,19519:7992258,18415200:208707 +k1,19519:10809298,18415200:208707 +k1,19519:11742833,18415200:208707 +k1,19519:13236046,18415200:208707 +k1,19519:13800613,18415200:208707 +k1,19519:16440050,18415200:208707 +k1,19519:20974132,18415200:208706 +k1,19519:23437278,18415200:208707 +k1,19519:24177482,18415200:208707 +k1,19519:27192441,18415200:208707 +k1,19519:28654852,18415200:208707 +k1,19519:30200493,18415200:208707 +k1,19519:31695016,18415200:208707 +k1,19519:32583029,18415200:0 +) +(1,19520:6764466,19280280:25818563,513147,134348 +g1,19519:9771257,19280280 +g1,19519:10989571,19280280 +(1,19519:10989571,19280280:0,459977,115847 +r1,19552:12402972,19280280:1413401,575824,115847 +k1,19519:10989571,19280280:-1413401 +) +(1,19519:10989571,19280280:1413401,459977,115847 +k1,19519:10989571,19280280:3277 +h1,19519:12399695,19280280:0,411205,112570 +) +g1,19519:12602201,19280280 +g1,19519:13992875,19280280 +(1,19519:13992875,19280280:0,452978,115847 +r1,19552:16109700,19280280:2116825,568825,115847 +k1,19519:13992875,19280280:-2116825 +) +(1,19519:13992875,19280280:2116825,452978,115847 +k1,19519:13992875,19280280:3277 +h1,19519:16106423,19280280:0,411205,112570 +) +g1,19519:16308929,19280280 +g1,19519:19572622,19280280 +g1,19519:20423279,19280280 +g1,19519:22846800,19280280 +g1,19519:23662067,19280280 +g1,19519:24880381,19280280 +k1,19520:32583029,19280280:6260856 +g1,19520:32583029,19280280 +) +] +g1,19520:32583029,19414628 +) +h1,19520:6630773,19414628:0,0,0 +(1,19523:6630773,20279708:25952256,513147,126483 +h1,19522:6630773,20279708:983040,0,0 +k1,19522:8434338,20279708:342768 +k1,19522:9796191,20279708:342768 +k1,19522:13419691,20279708:342768 +(1,19522:13419691,20279708:0,452978,115847 +r1,19552:17998499,20279708:4578808,568825,115847 +k1,19522:13419691,20279708:-4578808 +) +(1,19522:13419691,20279708:4578808,452978,115847 +k1,19522:13419691,20279708:3277 +h1,19522:17995222,20279708:0,411205,112570 +) +k1,19522:18341267,20279708:342768 +k1,19522:19351192,20279708:342769 +(1,19522:19351192,20279708:0,452978,122846 +r1,19552:23226576,20279708:3875384,575824,122846 +k1,19522:19351192,20279708:-3875384 +) +(1,19522:19351192,20279708:3875384,452978,122846 +k1,19522:19351192,20279708:3277 +h1,19522:23223299,20279708:0,411205,112570 +) +k1,19522:23569344,20279708:342768 +k1,19522:24443609,20279708:342768 +k1,19522:25720920,20279708:342768 +k1,19522:26715116,20279708:342768 +(1,19522:26715116,20279708:0,414482,115847 +r1,19552:28128517,20279708:1413401,530329,115847 +k1,19522:26715116,20279708:-1413401 +) +(1,19522:26715116,20279708:1413401,414482,115847 +k1,19522:26715116,20279708:3277 +h1,19522:28125240,20279708:0,411205,112570 +) +k1,19522:28644955,20279708:342768 +k1,19522:30213902,20279708:342768 +k1,19522:32583029,20279708:0 +) +(1,19523:6630773,21144788:25952256,505283,134348 +k1,19522:8129879,21144788:392858 +k1,19522:9270504,21144788:392859 +k1,19522:12160939,21144788:392858 +k1,19522:13315325,21144788:392858 +k1,19522:17581361,21144788:392858 +k1,19522:18993305,21144788:392859 +k1,19522:20612342,21144788:392858 +k1,19522:22289706,21144788:392858 +k1,19522:24638815,21144788:392859 +k1,19522:28133492,21144788:392858 +k1,19522:30895477,21144788:392858 +k1,19522:32583029,21144788:0 +) +(1,19523:6630773,22009868:25952256,513147,126483 +k1,19522:8231098,22009868:200476 +k1,19522:11404286,22009868:200475 +k1,19522:14268801,22009868:200476 +k1,19522:15136432,22009868:200475 +(1,19522:15136432,22009868:0,452978,122846 +r1,19552:19011816,22009868:3875384,575824,122846 +k1,19522:15136432,22009868:-3875384 +) +(1,19522:15136432,22009868:3875384,452978,122846 +k1,19522:15136432,22009868:3277 +h1,19522:19008539,22009868:0,411205,112570 +) +k1,19522:19212292,22009868:200476 +k1,19522:20604212,22009868:200475 +(1,19522:20604212,22009868:0,452978,122846 +r1,19552:24831308,22009868:4227096,575824,122846 +k1,19522:20604212,22009868:-4227096 +) +(1,19522:20604212,22009868:4227096,452978,122846 +k1,19522:20604212,22009868:3277 +h1,19522:24828031,22009868:0,411205,112570 +) +k1,19522:25205454,22009868:200476 +(1,19522:25205454,22009868:0,452978,122846 +r1,19552:31191109,22009868:5985655,575824,122846 +k1,19522:25205454,22009868:-5985655 +) +(1,19522:25205454,22009868:5985655,452978,122846 +k1,19522:25205454,22009868:3277 +h1,19522:31187832,22009868:0,411205,112570 +) +k1,19522:31391584,22009868:200475 +k1,19523:32583029,22009868:0 +) +(1,19523:6630773,22874948:25952256,505283,134348 +(1,19522:6630773,22874948:0,452978,122846 +r1,19552:12968140,22874948:6337367,575824,122846 +k1,19522:6630773,22874948:-6337367 +) +(1,19522:6630773,22874948:6337367,452978,122846 +k1,19522:6630773,22874948:3277 +h1,19522:12964863,22874948:0,411205,112570 +) +k1,19522:13452774,22874948:310964 +k1,19522:14755298,22874948:310964 +k1,19522:17850231,22874948:310964 +k1,19522:18777233,22874948:310964 +k1,19522:21668349,22874948:310964 +k1,19522:24917291,22874948:310964 +k1,19522:27102585,22874948:310964 +k1,19522:30853534,22874948:310964 +k1,19522:32583029,22874948:0 +) +(1,19523:6630773,23740028:25952256,505283,134348 +k1,19522:9513404,23740028:183203 +k1,19522:10458134,23740028:183202 +k1,19522:14958194,23740028:183203 +k1,19522:19381576,23740028:183203 +k1,19522:20583864,23740028:183203 +k1,19522:21993245,23740028:183202 +k1,19522:22859333,23740028:183203 +k1,19522:25060390,23740028:183203 +k1,19522:27205086,23740028:183203 +k1,19522:28800589,23740028:183202 +k1,19522:30002877,23740028:183203 +k1,19522:32583029,23740028:0 +) +(1,19523:6630773,24605108:25952256,513147,134348 +k1,19522:11663640,24605108:206796 +k1,19522:12818086,24605108:206795 +k1,19522:15142350,24605108:206796 +k1,19522:16008438,24605108:206796 +k1,19522:17545615,24605108:206796 +k1,19522:18403838,24605108:206795 +k1,19522:20898496,24605108:206796 +k1,19522:22124377,24605108:206796 +k1,19522:25348451,24605108:206796 +k1,19522:28238945,24605108:206795 +k1,19522:29637186,24605108:206796 +k1,19522:32583029,24605108:0 +) +(1,19523:6630773,25470188:25952256,513147,134348 +k1,19522:8024865,25470188:202647 +k1,19522:9246596,25470188:202646 +k1,19522:12745049,25470188:202647 +k1,19522:13606987,25470188:202646 +k1,19522:14828719,25470188:202647 +k1,19522:18052575,25470188:202646 +k1,19522:20459198,25470188:202647 +k1,19522:21680929,25470188:202646 +k1,19522:23727759,25470188:202647 +k1,19522:24581833,25470188:202646 +k1,19522:25803565,25470188:202647 +k1,19522:28620442,25470188:202646 +k1,19522:29482381,25470188:202647 +k1,19522:31193666,25470188:202646 +k1,19522:32583029,25470188:0 +) +(1,19523:6630773,26335268:25952256,505283,126483 +k1,19522:10732423,26335268:189806 +k1,19522:12972196,26335268:189807 +k1,19522:13928118,26335268:189806 +k1,19522:17292489,26335268:189807 +k1,19522:20776790,26335268:189806 +k1,19522:21728125,26335268:189807 +(1,19522:21728125,26335268:0,452978,122846 +r1,19552:25603509,26335268:3875384,575824,122846 +k1,19522:21728125,26335268:-3875384 +) +(1,19522:21728125,26335268:3875384,452978,122846 +k1,19522:21728125,26335268:3277 +h1,19522:25600232,26335268:0,411205,112570 +) +k1,19522:25793315,26335268:189806 +k1,19522:27174567,26335268:189807 +(1,19522:27174567,26335268:0,452978,122846 +r1,19552:31401663,26335268:4227096,575824,122846 +k1,19522:27174567,26335268:-4227096 +) +(1,19522:27174567,26335268:4227096,452978,122846 +k1,19522:27174567,26335268:3277 +h1,19522:31398386,26335268:0,411205,112570 +) +k1,19522:31591469,26335268:189806 +k1,19522:32583029,26335268:0 +) +(1,19523:6630773,27200348:25952256,505283,134348 +k1,19522:10136294,27200348:211026 +k1,19522:11108848,27200348:211026 +k1,19522:12338959,27200348:211026 +k1,19522:15462405,27200348:211026 +k1,19522:18511140,27200348:211026 +k1,19522:21656867,27200348:211025 +k1,19522:23562654,27200348:211026 +k1,19522:25058186,27200348:211026 +k1,19522:25625072,27200348:211026 +k1,19522:28527006,27200348:211026 +k1,19522:31563944,27200348:211026 +k1,19522:32583029,27200348:0 +) +(1,19523:6630773,28065428:25952256,513147,134348 +k1,19522:8357740,28065428:213085 +k1,19522:9253711,28065428:213086 +k1,19522:10692975,28065428:213085 +k1,19522:11557489,28065428:213086 +k1,19522:12558972,28065428:213085 +k1,19522:14974068,28065428:213086 +k1,19522:17049031,28065428:213085 +k1,19522:19493617,28065428:213085 +k1,19522:23002509,28065428:213086 +k1,19522:23874886,28065428:213085 +k1,19522:25784699,28065428:213086 +k1,19522:29018994,28065428:213085 +k1,19522:30336362,28065428:213086 +k1,19522:31835263,28065428:213085 +k1,19522:32583029,28065428:0 +) +(1,19523:6630773,28930508:25952256,505283,134348 +g1,19522:10091073,28930508 +g1,19522:11684253,28930508 +g1,19522:15058046,28930508 +g1,19522:15940160,28930508 +k1,19523:32583029,28930508:13187811 +g1,19523:32583029,28930508 +) +v1,19525:6630773,29615363:0,393216,0 +(1,19535:6630773,34065176:25952256,4843029,196608 +g1,19535:6630773,34065176 +g1,19535:6630773,34065176 +g1,19535:6434165,34065176 +(1,19535:6434165,34065176:0,4843029,196608 +r1,19552:32779637,34065176:26345472,5039637,196608 +k1,19535:6434165,34065176:-26345472 +) +(1,19535:6434165,34065176:26345472,4843029,196608 +[1,19535:6630773,34065176:25952256,4646421,0 +(1,19527:6630773,29843194:25952256,424439,112852 +(1,19526:6630773,29843194:0,0,0 +g1,19526:6630773,29843194 +g1,19526:6630773,29843194 +g1,19526:6303093,29843194 +(1,19526:6303093,29843194:0,0,0 +) +g1,19526:6630773,29843194 +) +k1,19527:6630773,29843194:0 +g1,19527:10614221,29843194 +g1,19527:11278129,29843194 +k1,19527:11278129,29843194:0 +h1,19527:13601807,29843194:0,0,0 +k1,19527:32583029,29843194:18981222 +g1,19527:32583029,29843194 +) +(1,19528:6630773,30528049:25952256,424439,112852 +h1,19528:6630773,30528049:0,0,0 +g1,19528:6962727,30528049 +g1,19528:7294681,30528049 +g1,19528:7626635,30528049 +g1,19528:7958589,30528049 +g1,19528:8290543,30528049 +g1,19528:8622497,30528049 +g1,19528:8954451,30528049 +g1,19528:11610083,30528049 +g1,19528:12273991,30528049 +g1,19528:14265715,30528049 +g1,19528:14929623,30528049 +g1,19528:16921347,30528049 +g1,19528:17585255,30528049 +g1,19528:18249163,30528049 +k1,19528:18249163,30528049:0 +h1,19528:19576979,30528049:0,0,0 +k1,19528:32583029,30528049:13006050 +g1,19528:32583029,30528049 +) +(1,19529:6630773,31212904:25952256,431045,106246 +h1,19529:6630773,31212904:0,0,0 +g1,19529:6962727,31212904 +g1,19529:7294681,31212904 +g1,19529:7626635,31212904 +g1,19529:7958589,31212904 +g1,19529:8290543,31212904 +g1,19529:8622497,31212904 +g1,19529:8954451,31212904 +g1,19529:9286405,31212904 +g1,19529:9618359,31212904 +g1,19529:9950313,31212904 +g1,19529:10282267,31212904 +g1,19529:10614221,31212904 +g1,19529:10946175,31212904 +g1,19529:11278129,31212904 +g1,19529:11610083,31212904 +g1,19529:11942037,31212904 +g1,19529:12273991,31212904 +g1,19529:12605945,31212904 +g1,19529:12937899,31212904 +g1,19529:13269853,31212904 +g1,19529:13601807,31212904 +g1,19529:15925485,31212904 +g1,19529:16589393,31212904 +g1,19529:20904795,31212904 +g1,19529:22564565,31212904 +g1,19529:23228473,31212904 +g1,19529:24556289,31212904 +g1,19529:26548013,31212904 +g1,19529:27211921,31212904 +g1,19529:29203645,31212904 +h1,19529:29535599,31212904:0,0,0 +k1,19529:32583029,31212904:3047430 +g1,19529:32583029,31212904 +) +(1,19530:6630773,31897759:25952256,424439,79822 +h1,19530:6630773,31897759:0,0,0 +g1,19530:6962727,31897759 +g1,19530:7294681,31897759 +g1,19530:11610082,31897759 +h1,19530:11942036,31897759:0,0,0 +k1,19530:32583028,31897759:20640992 +g1,19530:32583028,31897759 +) +(1,19531:6630773,32582614:25952256,424439,112852 +h1,19531:6630773,32582614:0,0,0 +g1,19531:6962727,32582614 +g1,19531:7294681,32582614 +g1,19531:12937898,32582614 +g1,19531:13601806,32582614 +g1,19531:15261576,32582614 +h1,19531:15593530,32582614:0,0,0 +k1,19531:32583030,32582614:16989500 +g1,19531:32583030,32582614 +) +(1,19532:6630773,33267469:25952256,424439,112852 +h1,19532:6630773,33267469:0,0,0 +g1,19532:6962727,33267469 +g1,19532:7294681,33267469 +g1,19532:14929622,33267469 +g1,19532:15593530,33267469 +g1,19532:18581116,33267469 +g1,19532:20240886,33267469 +g1,19532:20904794,33267469 +k1,19532:20904794,33267469:0 +h1,19532:21568702,33267469:0,0,0 +k1,19532:32583029,33267469:11014327 +g1,19532:32583029,33267469 +) +(1,19533:6630773,33952324:25952256,424439,112852 +h1,19533:6630773,33952324:0,0,0 +g1,19533:6962727,33952324 +g1,19533:7294681,33952324 +g1,19533:7626635,33952324 +g1,19533:7958589,33952324 +g1,19533:8290543,33952324 +g1,19533:8622497,33952324 +g1,19533:8954451,33952324 +g1,19533:9286405,33952324 +g1,19533:9618359,33952324 +g1,19533:9950313,33952324 +g1,19533:10282267,33952324 +g1,19533:10614221,33952324 +g1,19533:10946175,33952324 +g1,19533:11278129,33952324 +g1,19533:11610083,33952324 +g1,19533:11942037,33952324 +g1,19533:12273991,33952324 +g1,19533:12605945,33952324 +g1,19533:18913070,33952324 +g1,19533:19576978,33952324 +g1,19533:21236748,33952324 +g1,19533:25884103,33952324 +g1,19533:26548011,33952324 +h1,19533:27875827,33952324:0,0,0 +k1,19533:32583029,33952324:4707202 +g1,19533:32583029,33952324 +) +] +) +g1,19535:32583029,34065176 +g1,19535:6630773,34065176 +g1,19535:6630773,34065176 +g1,19535:32583029,34065176 +g1,19535:32583029,34065176 +) +h1,19535:6630773,34261784:0,0,0 +(1,19538:6630773,43410986:25952256,9083666,0 +k1,19538:10523651,43410986:3892878 +h1,19537:10523651,43410986:0,0,0 +(1,19537:10523651,43410986:18166500,9083666,0 +(1,19537:10523651,43410986:18167376,9083688,0 +(1,19537:10523651,43410986:18167376,9083688,0 +(1,19537:10523651,43410986:0,9083688,0 +(1,19537:10523651,43410986:0,14208860,0 +(1,19537:10523651,43410986:28417720,14208860,0 +) +k1,19537:10523651,43410986:-28417720 +) +) +g1,19537:28691027,43410986 +) +) +) +g1,19538:28690151,43410986 +k1,19538:32583029,43410986:3892878 +) +] +(1,19552:32583029,45706769:0,0,0 +g1,19552:32583029,45706769 +) +) +] +(1,19552:6630773,47279633:25952256,0,0 +h1,19552:6630773,47279633:25952256,0,0 +) +] +(1,19552:4262630,4025873:0,0,0 +[1,19552:-473656,4025873:0,0,0 +(1,19552:-473656,-710413:0,0,0 +(1,19552:-473656,-710413:0,0,0 +g1,19552:-473656,-710413 +) +g1,19552:-473656,-710413 ) ] ) ] !19401 -}325 -Input:3464:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3467:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}326 Input:3468:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3470:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -340976,1925 +341180,1925 @@ Input:3478:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3479:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3480:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3481:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3482:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{326 -[1,19603:4262630,47279633:28320399,43253760,0 -(1,19603:4262630,4025873:0,0,0 -[1,19603:-473656,4025873:0,0,0 -(1,19603:-473656,-710413:0,0,0 -(1,19603:-473656,-644877:0,0,0 -k1,19603:-473656,-644877:-65536 +{327 +[1,19601:4262630,47279633:28320399,43253760,0 +(1,19601:4262630,4025873:0,0,0 +[1,19601:-473656,4025873:0,0,0 +(1,19601:-473656,-710413:0,0,0 +(1,19601:-473656,-644877:0,0,0 +k1,19601:-473656,-644877:-65536 ) -(1,19603:-473656,4736287:0,0,0 -k1,19603:-473656,4736287:5209943 +(1,19601:-473656,4736287:0,0,0 +k1,19601:-473656,4736287:5209943 ) -g1,19603:-473656,-710413 +g1,19601:-473656,-710413 ) ] ) -[1,19603:6630773,47279633:25952256,43253760,0 -[1,19603:6630773,4812305:25952256,786432,0 -(1,19603:6630773,4812305:25952256,485622,11795 -(1,19603:6630773,4812305:25952256,485622,11795 -g1,19603:3078558,4812305 -[1,19603:3078558,4812305:0,0,0 -(1,19603:3078558,2439708:0,1703936,0 -k1,19603:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19603:2537886,2439708:1179648,16384,0 +[1,19601:6630773,47279633:25952256,43253760,0 +[1,19601:6630773,4812305:25952256,786432,0 +(1,19601:6630773,4812305:25952256,485622,11795 +(1,19601:6630773,4812305:25952256,485622,11795 +g1,19601:3078558,4812305 +[1,19601:3078558,4812305:0,0,0 +(1,19601:3078558,2439708:0,1703936,0 +k1,19601:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19601:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19603:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19601:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19603:3078558,4812305:0,0,0 -(1,19603:3078558,2439708:0,1703936,0 -g1,19603:29030814,2439708 -g1,19603:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19603:36151628,1915420:16384,1179648,0 +[1,19601:3078558,4812305:0,0,0 +(1,19601:3078558,2439708:0,1703936,0 +g1,19601:29030814,2439708 +g1,19601:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19601:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19603:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19601:37855564,2439708:1179648,16384,0 ) ) -k1,19603:3078556,2439708:-34777008 +k1,19601:3078556,2439708:-34777008 ) ] -[1,19603:3078558,4812305:0,0,0 -(1,19603:3078558,49800853:0,16384,2228224 -k1,19603:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19603:2537886,49800853:1179648,16384,0 +[1,19601:3078558,4812305:0,0,0 +(1,19601:3078558,49800853:0,16384,2228224 +k1,19601:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19601:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19603:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19601:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19603:3078558,4812305:0,0,0 -(1,19603:3078558,49800853:0,16384,2228224 -g1,19603:29030814,49800853 -g1,19603:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19603:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +[1,19601:3078558,4812305:0,0,0 +(1,19601:3078558,49800853:0,16384,2228224 +g1,19601:29030814,49800853 +g1,19601:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19601:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19603:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19601:37855564,49800853:1179648,16384,0 ) -) -k1,19603:3078556,49800853:-34777008 -) -] -g1,19603:6630773,4812305 -g1,19603:6630773,4812305 -g1,19603:10347975,4812305 -k1,19603:31387651,4812305:21039676 -) -) -] -[1,19603:6630773,45706769:25952256,40108032,0 -(1,19603:6630773,45706769:25952256,40108032,0 -(1,19603:6630773,45706769:0,0,0 -g1,19603:6630773,45706769 -) -[1,19603:6630773,45706769:25952256,40108032,0 -(1,19549:6630773,6254097:25952256,555811,12975 -(1,19549:6630773,6254097:2450326,534184,12975 -g1,19549:6630773,6254097 -g1,19549:9081099,6254097 -) -g1,19549:10708162,6254097 -k1,19549:32583030,6254097:19728040 -g1,19549:32583030,6254097 -) -(1,19554:6630773,7512393:25952256,513147,134348 -k1,19553:8010977,7512393:205144 -k1,19553:10742535,7512393:205145 -k1,19553:11895330,7512393:205144 -k1,19553:13981357,7512393:205144 -k1,19553:14802539,7512393:205144 -k1,19553:17836217,7512393:205145 -k1,19553:18572858,7512393:205144 -k1,19553:21534446,7512393:205144 -k1,19553:22391018,7512393:205144 -(1,19553:22391018,7512393:0,452978,115847 -r1,19603:29080096,7512393:6689078,568825,115847 -k1,19553:22391018,7512393:-6689078 -) -(1,19553:22391018,7512393:6689078,452978,115847 -k1,19553:22391018,7512393:3277 -h1,19553:29076819,7512393:0,411205,112570 -) -k1,19553:29285241,7512393:205145 -k1,19553:31375856,7512393:205144 -k1,19553:32583029,7512393:0 -) -(1,19554:6630773,8377473:25952256,513147,134348 -k1,19553:9642720,8377473:155233 -k1,19553:10449381,8377473:155233 -k1,19553:11352380,8377473:155233 -k1,19553:13020839,8377473:155233 -k1,19553:14123723,8377473:155233 -k1,19553:16013694,8377473:155233 -k1,19553:19959529,8377473:155233 -k1,19553:22953781,8377473:155232 -k1,19553:23760442,8377473:155233 -k1,19553:24663441,8377473:155233 -k1,19553:25837759,8377473:155233 -k1,19553:27646465,8377473:155233 -k1,19553:28417736,8377473:155233 -k1,19553:30024591,8377473:155233 -k1,19553:31923737,8377473:155233 -k1,19553:32583029,8377473:0 -) -(1,19554:6630773,9242553:25952256,513147,134348 -k1,19553:7140441,9242553:153808 -k1,19553:8571546,9242553:153808 -k1,19553:9951533,9242553:153808 -k1,19553:11197826,9242553:153808 -k1,19553:12010926,9242553:153808 -k1,19553:15955336,9242553:153808 -k1,19553:16640641,9242553:153808 -k1,19553:19884472,9242553:153808 -k1,19553:20654318,9242553:153808 -k1,19553:23086813,9242553:153808 -h1,19553:24455860,9242553:0,0,0 -k1,19553:24990432,9242553:153808 -k1,19553:27679173,9242553:153808 -k1,19553:29822653,9242553:153808 -k1,19553:32583029,9242553:0 -) -(1,19554:6630773,10107633:25952256,505283,134348 -k1,19553:8966074,10107633:268951 -k1,19553:10519530,10107633:268950 -k1,19553:12764391,10107633:268951 -(1,19553:12764391,10107633:0,452978,122846 -r1,19603:16639775,10107633:3875384,575824,122846 -k1,19553:12764391,10107633:-3875384 -) -(1,19553:12764391,10107633:3875384,452978,122846 -k1,19553:12764391,10107633:3277 -h1,19553:16636498,10107633:0,411205,112570 -) -k1,19553:16908725,10107633:268950 -k1,19553:17793714,10107633:268951 -k1,19553:20526818,10107633:268950 -k1,19553:21447197,10107633:268951 -k1,19553:22735232,10107633:268950 -k1,19553:26068647,10107633:268951 -k1,19553:28024494,10107633:268950 -k1,19553:29365614,10107633:268951 -k1,19553:30919070,10107633:268950 -k1,19554:32583029,10107633:0 -) -(1,19554:6630773,10972713:25952256,505283,126483 -k1,19553:8053708,10972713:212485 -k1,19553:8917621,10972713:212485 -(1,19553:8917621,10972713:0,459977,122846 -r1,19603:12089581,10972713:3171960,582823,122846 -k1,19553:8917621,10972713:-3171960 -) -(1,19553:8917621,10972713:3171960,459977,122846 -k1,19553:8917621,10972713:3277 -h1,19553:12086304,10972713:0,411205,112570 -) -k1,19553:12475736,10972713:212485 -k1,19553:14759159,10972713:212485 -k1,19553:16256150,10972713:212485 -k1,19553:17487720,10972713:212485 -k1,19553:20083095,10972713:212486 -k1,19553:20911618,10972713:212485 -(1,19553:20911618,10972713:0,452978,115847 -r1,19603:22325019,10972713:1413401,568825,115847 -k1,19553:20911618,10972713:-1413401 -) -(1,19553:20911618,10972713:1413401,452978,115847 -k1,19553:20911618,10972713:3277 -h1,19553:22321742,10972713:0,411205,112570 -) -k1,19553:22537504,10972713:212485 -k1,19553:25335384,10972713:212485 -k1,19553:26199297,10972713:212485 -k1,19553:27430867,10972713:212485 -(1,19553:27430867,10972713:0,452978,115847 -r1,19603:29195980,10972713:1765113,568825,115847 -k1,19553:27430867,10972713:-1765113 -) -(1,19553:27430867,10972713:1765113,452978,115847 -k1,19553:27430867,10972713:3277 -h1,19553:29192703,10972713:0,411205,112570 -) -k1,19553:29408465,10972713:212485 -k1,19553:32583029,10972713:0 -) -(1,19554:6630773,11837793:25952256,513147,134348 -k1,19553:7847598,11837793:225265 -k1,19553:9396690,11837793:225265 -k1,19553:10281247,11837793:225265 -k1,19553:12796340,11837793:225265 -k1,19553:16383602,11837793:225265 -k1,19553:19280115,11837793:225266 -k1,19553:21485878,11837793:225265 -k1,19553:22370435,11837793:225265 -k1,19553:26576357,11837793:225265 -k1,19553:28753284,11837793:225265 -k1,19553:30420996,11837793:225265 -k1,19553:32583029,11837793:0 -) -(1,19554:6630773,12702873:25952256,505283,134348 -k1,19553:9322548,12702873:227622 -k1,19553:11382558,12702873:227623 -k1,19553:15117667,12702873:227622 -k1,19553:16336850,12702873:227623 -k1,19553:19474927,12702873:227623 -k1,19553:22660189,12702873:227622 -(1,19553:22660189,12702873:0,452978,122846 -r1,19603:26887285,12702873:4227096,575824,122846 -k1,19553:22660189,12702873:-4227096 -) -(1,19553:22660189,12702873:4227096,452978,122846 -k1,19553:22660189,12702873:3277 -h1,19553:26884008,12702873:0,411205,112570 -) -k1,19553:27288577,12702873:227622 -(1,19553:27288577,12702873:0,452978,122846 -r1,19603:31163961,12702873:3875384,575824,122846 -k1,19553:27288577,12702873:-3875384 -) -(1,19553:27288577,12702873:3875384,452978,122846 -k1,19553:27288577,12702873:3277 -h1,19553:31160684,12702873:0,411205,112570 -) -k1,19553:31391584,12702873:227623 -k1,19554:32583029,12702873:0 -) -(1,19554:6630773,13567953:25952256,452978,122846 -(1,19553:6630773,13567953:0,452978,122846 -r1,19603:10506157,13567953:3875384,575824,122846 -k1,19553:6630773,13567953:-3875384 -) -(1,19553:6630773,13567953:3875384,452978,122846 -k1,19553:6630773,13567953:3277 -h1,19553:10502880,13567953:0,411205,112570 -) -k1,19554:32583029,13567953:22024444 -g1,19554:32583029,13567953 -) -v1,19556:6630773,14433033:0,393216,0 -(1,19557:6630773,17515933:25952256,3476116,0 -g1,19557:6630773,17515933 -g1,19557:6237557,17515933 -r1,19603:6368629,17515933:131072,3476116,0 -g1,19557:6567858,17515933 -g1,19557:6764466,17515933 -[1,19557:6764466,17515933:25818563,3476116,0 -(1,19557:6764466,14794210:25818563,754393,260573 -(1,19556:6764466,14794210:0,754393,260573 -r1,19603:7856192,14794210:1091726,1014966,260573 -k1,19556:6764466,14794210:-1091726 -) -(1,19556:6764466,14794210:1091726,754393,260573 -) -k1,19556:8041801,14794210:185609 -k1,19556:8369481,14794210:327680 -k1,19556:10355365,14794210:185610 -k1,19556:11825480,14794210:185609 -(1,19556:11825480,14794210:0,452978,122846 -r1,19603:16052576,14794210:4227096,575824,122846 -k1,19556:11825480,14794210:-4227096 -) -(1,19556:11825480,14794210:4227096,452978,122846 -k1,19556:11825480,14794210:3277 -h1,19556:16049299,14794210:0,411205,112570 -) -k1,19556:16411855,14794210:185609 -(1,19556:16411855,14794210:0,452978,122846 -r1,19603:20287239,14794210:3875384,575824,122846 -k1,19556:16411855,14794210:-3875384 -) -(1,19556:16411855,14794210:3875384,452978,122846 -k1,19556:16411855,14794210:3277 -h1,19556:20283962,14794210:0,411205,112570 -) -k1,19556:20472848,14794210:185609 -k1,19556:21849903,14794210:185610 -(1,19556:21849903,14794210:0,452978,122846 -r1,19603:25725287,14794210:3875384,575824,122846 -k1,19556:21849903,14794210:-3875384 -) -(1,19556:21849903,14794210:3875384,452978,122846 -k1,19556:21849903,14794210:3277 -h1,19556:25722010,14794210:0,411205,112570 -) -k1,19556:25910896,14794210:185609 -k1,19556:27228967,14794210:185609 -k1,19556:29260725,14794210:185609 -k1,19556:30538820,14794210:185610 -k1,19556:31080289,14794210:185609 -k1,19557:32583029,14794210:0 -) -(1,19557:6764466,15659290:25818563,513147,134348 -k1,19556:8436196,15659290:260740 -k1,19556:11589694,15659290:260739 -k1,19556:13418055,15659290:260740 -k1,19556:14697880,15659290:260740 -k1,19556:16841468,15659290:260739 -k1,19556:18553175,15659290:260740 -k1,19556:19575443,15659290:260740 -k1,19556:22101762,15659290:260739 -k1,19556:23742690,15659290:260740 -k1,19556:24818697,15659290:260739 -k1,19556:26145708,15659290:260740 -k1,19556:28531125,15659290:260740 -k1,19556:29423631,15659290:260739 -k1,19556:31563944,15659290:260740 -k1,19556:32583029,15659290:0 -) -(1,19557:6764466,16524370:25818563,513147,134348 -k1,19556:9735431,16524370:163403 -k1,19556:12079217,16524370:163403 -k1,19556:12990386,16524370:163403 -k1,19556:15914821,16524370:163403 -k1,19556:16764386,16524370:163403 -k1,19556:17698492,16524370:163403 -k1,19556:20934224,16524370:163404 -k1,19556:21749055,16524370:163403 -k1,19556:23609185,16524370:163403 -k1,19556:26798385,16524370:163403 -k1,19556:27644673,16524370:163403 -k1,19556:29316715,16524370:163403 -k1,19557:32583029,16524370:0 -) -(1,19557:6764466,17389450:25818563,505283,126483 -(1,19556:6764466,17389450:0,452978,115847 -r1,19603:10639850,17389450:3875384,568825,115847 -k1,19556:6764466,17389450:-3875384 -) -(1,19556:6764466,17389450:3875384,452978,115847 -k1,19556:6764466,17389450:3277 -h1,19556:10636573,17389450:0,411205,112570 -) -g1,19556:10839079,17389450 -g1,19556:13935655,17389450 -g1,19556:15069427,17389450 -g1,19556:15920084,17389450 -(1,19556:15920084,17389450:0,414482,115847 -r1,19603:17333485,17389450:1413401,530329,115847 -k1,19556:15920084,17389450:-1413401 -) -(1,19556:15920084,17389450:1413401,414482,115847 -k1,19556:15920084,17389450:3277 -h1,19556:17330208,17389450:0,411205,112570 -) -k1,19557:32583029,17389450:15197116 -g1,19557:32583029,17389450 -) -] -g1,19557:32583029,17515933 -) -h1,19557:6630773,17515933:0,0,0 -(1,19561:6630773,18381013:25952256,513147,134348 -h1,19560:6630773,18381013:983040,0,0 -k1,19560:9876348,18381013:188976 -k1,19560:11169606,18381013:188976 -k1,19560:12106348,18381013:188976 -k1,19560:14260749,18381013:188976 -k1,19560:15135887,18381013:188976 -k1,19560:16602160,18381013:188976 -k1,19560:18672019,18381013:188976 -k1,19560:20254946,18381013:188976 -(1,19560:20254946,18381013:0,452978,122846 -r1,19603:24482042,18381013:4227096,575824,122846 -k1,19560:20254946,18381013:-4227096 -) -(1,19560:20254946,18381013:4227096,452978,122846 -k1,19560:20254946,18381013:3277 -h1,19560:24478765,18381013:0,411205,112570 -) -k1,19560:24671018,18381013:188976 -k1,19560:25621522,18381013:188976 -k1,19560:28618060,18381013:188976 -k1,19560:29162896,18381013:188976 -k1,19560:30345398,18381013:188976 -k1,19560:31193666,18381013:188976 -k1,19560:32583029,18381013:0 -) -(1,19561:6630773,19246093:25952256,513147,134348 -k1,19560:9015071,19246093:177701 -k1,19560:10082751,19246093:177701 -k1,19560:12609262,19246093:177701 -k1,19560:13438391,19246093:177701 -k1,19560:14635177,19246093:177701 -(1,19560:14635177,19246093:0,452978,115847 -r1,19603:16400290,19246093:1765113,568825,115847 -k1,19560:14635177,19246093:-1765113 -) -(1,19560:14635177,19246093:1765113,452978,115847 -k1,19560:14635177,19246093:3277 -h1,19560:16397013,19246093:0,411205,112570 -) -k1,19560:16577990,19246093:177700 -k1,19560:19682528,19246093:177701 -k1,19560:23593160,19246093:177701 -k1,19560:27762004,19246093:177701 -k1,19560:29131150,19246093:177701 -k1,19560:31006233,19246093:177701 -k1,19560:32583029,19246093:0 -) -(1,19561:6630773,20111173:25952256,513147,126483 -k1,19560:7494267,20111173:177332 -k1,19560:8619250,20111173:177332 -(1,19560:8619250,20111173:0,452978,122846 -r1,19603:12494634,20111173:3875384,575824,122846 -k1,19560:8619250,20111173:-3875384 -) -(1,19560:8619250,20111173:3875384,452978,122846 -k1,19560:8619250,20111173:3277 -h1,19560:12491357,20111173:0,411205,112570 -) -k1,19560:12671966,20111173:177332 -k1,19560:14040742,20111173:177331 -k1,19560:15209634,20111173:177332 -k1,19560:17758714,20111173:177332 -k1,19560:18587474,20111173:177332 -k1,19560:19783891,20111173:177332 -k1,19560:21844072,20111173:177332 -k1,19560:23760729,20111173:177331 -k1,19560:25134748,20111173:177332 -k1,19560:27622224,20111173:177332 -k1,19560:28791116,20111173:177332 -k1,19560:32583029,20111173:0 -) -(1,19561:6630773,20976253:25952256,505283,134348 -g1,19560:7516164,20976253 -g1,19560:9341340,20976253 -(1,19560:9341340,20976253:0,452978,122846 -r1,19603:10754741,20976253:1413401,575824,122846 -k1,19560:9341340,20976253:-1413401 -) -(1,19560:9341340,20976253:1413401,452978,122846 -k1,19560:9341340,20976253:3277 -h1,19560:10751464,20976253:0,411205,112570 -) -g1,19560:10953970,20976253 -g1,19560:13443027,20976253 -g1,19560:14833701,20976253 -g1,19560:16998355,20976253 -g1,19560:17849012,20976253 -g1,19560:19067326,20976253 -(1,19560:19067326,20976253:0,414482,122846 -r1,19603:19777304,20976253:709978,537328,122846 -k1,19560:19067326,20976253:-709978 -) -(1,19560:19067326,20976253:709978,414482,122846 -k1,19560:19067326,20976253:3277 -h1,19560:19774027,20976253:0,411205,112570 -) -g1,19560:19976533,20976253 -g1,19560:21453059,20976253 -g1,19560:23611814,20976253 -g1,19560:24497205,20976253 -g1,19560:25052294,20976253 -k1,19561:32583029,20976253:5920516 -g1,19561:32583029,20976253 -) -(1,19563:6630773,21841333:25952256,513147,134348 -h1,19562:6630773,21841333:983040,0,0 -k1,19562:9083187,21841333:272687 -k1,19562:10852061,21841333:272687 -k1,19562:12993180,21841333:272688 -k1,19562:15238501,21841333:272687 -k1,19562:15867048,21841333:272687 -(1,19562:15867048,21841333:0,452978,115847 -r1,19603:17983873,21841333:2116825,568825,115847 -k1,19562:15867048,21841333:-2116825 -) -(1,19562:15867048,21841333:2116825,452978,115847 -k1,19562:15867048,21841333:3277 -h1,19562:17980596,21841333:0,411205,112570 -) -k1,19562:18256560,21841333:272687 -k1,19562:21891244,21841333:272687 -k1,19562:25672073,21841333:272687 -k1,19562:27512382,21841333:272688 -k1,19562:28804154,21841333:272687 -(1,19562:28804154,21841333:0,414482,115847 -r1,19603:30920979,21841333:2116825,530329,115847 -k1,19562:28804154,21841333:-2116825 -) -(1,19562:28804154,21841333:2116825,414482,115847 -k1,19562:28804154,21841333:3277 -h1,19562:30917702,21841333:0,411205,112570 -) -k1,19562:31193666,21841333:272687 -k1,19562:32583029,21841333:0 -) -(1,19563:6630773,22706413:25952256,513147,134348 -k1,19562:7986112,22706413:247125 -k1,19562:9627188,22706413:247125 -k1,19562:10893399,22706413:247126 -k1,19562:14130932,22706413:247125 -k1,19562:16388702,22706413:247125 -k1,19562:19841193,22706413:247125 -k1,19562:20774480,22706413:247125 -k1,19562:23996284,22706413:247125 -k1,19562:26613192,22706413:247126 -k1,19562:28387961,22706413:247125 -k1,19562:29838327,22706413:247125 -k1,19562:31896867,22706413:247125 -k1,19562:32583029,22706413:0 -) -(1,19563:6630773,23571493:25952256,505283,134348 -k1,19562:7878936,23571493:229078 -k1,19562:9981033,23571493:229078 -k1,19562:12833517,23571493:229078 -k1,19562:13714023,23571493:229078 -k1,19562:14298961,23571493:229078 -k1,19562:15695235,23571493:229078 -k1,19562:17115758,23571493:229078 -k1,19562:19292565,23571493:229077 -k1,19562:20724884,23571493:229078 -k1,19562:21947488,23571493:229078 -k1,19562:22862728,23571493:229078 -k1,19562:25474695,23571493:229078 -k1,19562:27862529,23571493:229078 -(1,19562:27862529,23571493:0,452978,115847 -r1,19603:31737913,23571493:3875384,568825,115847 -k1,19562:27862529,23571493:-3875384 -) -(1,19562:27862529,23571493:3875384,452978,115847 -k1,19562:27862529,23571493:3277 -h1,19562:31734636,23571493:0,411205,112570 -) -k1,19562:31966991,23571493:229078 -k1,19562:32583029,23571493:0 -) -(1,19563:6630773,24436573:25952256,513147,134348 -k1,19562:9310793,24436573:207347 -(1,19562:9310793,24436573:0,452978,115847 -r1,19603:11427618,24436573:2116825,568825,115847 -k1,19562:9310793,24436573:-2116825 -) -(1,19562:9310793,24436573:2116825,452978,115847 -k1,19562:9310793,24436573:3277 -h1,19562:11424341,24436573:0,411205,112570 -) -k1,19562:11808635,24436573:207347 -k1,19562:14174738,24436573:207347 -k1,19562:18448594,24436573:207347 -k1,19562:21336364,24436573:207347 -k1,19562:22937662,24436573:207347 -k1,19562:24164094,24436573:207347 -(1,19562:24164094,24436573:0,414482,115847 -r1,19603:24522360,24436573:358266,530329,115847 -k1,19562:24164094,24436573:-358266 -) -(1,19562:24164094,24436573:358266,414482,115847 -k1,19562:24164094,24436573:3277 -h1,19562:24519083,24436573:0,411205,112570 -) -k1,19562:24729707,24436573:207347 -k1,19562:26128499,24436573:207347 -(1,19562:26128499,24436573:0,414482,115847 -r1,19603:26486765,24436573:358266,530329,115847 -k1,19562:26128499,24436573:-358266 -) -(1,19562:26128499,24436573:358266,414482,115847 -k1,19562:26128499,24436573:3277 -h1,19562:26483488,24436573:0,411205,112570 -) -k1,19562:26694112,24436573:207347 -k1,19562:30639633,24436573:207347 -k1,19562:31794631,24436573:207347 -k1,19562:32583029,24436573:0 -) -(1,19563:6630773,25301653:25952256,505283,7863 -g1,19562:9386561,25301653 -g1,19562:10271952,25301653 -g1,19562:11241884,25301653 -k1,19563:32583030,25301653:19738136 -g1,19563:32583030,25301653 -) -v1,19565:6630773,26166733:0,393216,0 -(1,19566:6630773,28339539:25952256,2566022,0 -g1,19566:6630773,28339539 -g1,19566:6237557,28339539 -r1,19603:6368629,28339539:131072,2566022,0 -g1,19566:6567858,28339539 -g1,19566:6764466,28339539 -[1,19566:6764466,28339539:25818563,2566022,0 -(1,19566:6764466,26475031:25818563,701514,196608 -(1,19565:6764466,26475031:0,701514,196608 -r1,19603:7761522,26475031:997056,898122,196608 -k1,19565:6764466,26475031:-997056 -) -(1,19565:6764466,26475031:997056,701514,196608 -) -k1,19565:7972428,26475031:210906 -k1,19565:8300108,26475031:327680 -k1,19565:9707700,26475031:210905 -k1,19565:11414793,26475031:210906 -k1,19565:13048485,26475031:210905 -k1,19565:16285188,26475031:210906 -k1,19565:18063714,26475031:210905 -k1,19565:19293705,26475031:210906 -k1,19565:22712597,26475031:210905 -k1,19565:24155580,26475031:210906 -k1,19565:26645172,26475031:210905 -h1,19565:28187890,26475031:0,0,0 -k1,19565:28398796,26475031:210906 -k1,19565:29419071,26475031:210905 -k1,19565:31128130,26475031:210906 -h1,19565:32323507,26475031:0,0,0 -k1,19565:32583029,26475031:0 -) -(1,19566:6764466,27340111:25818563,513147,95026 -k1,19565:8423032,27340111:186627 -k1,19565:10816256,27340111:186627 -k1,19565:12194329,27340111:186628 -k1,19565:13814884,27340111:186627 -k1,19565:14416341,27340111:186614 -k1,19565:17628766,27340111:186628 -k1,19565:19584210,27340111:186627 -k1,19565:21246052,27340111:186627 -k1,19565:22942629,27340111:186627 -k1,19565:24642482,27340111:186627 -k1,19565:27156293,27340111:186628 -k1,19565:28574997,27340111:186627 -k1,19565:31040311,27340111:186627 -h1,19565:32583029,27340111:0,0,0 -k1,19565:32583029,27340111:0 -) -(1,19566:6764466,28205191:25818563,505283,134348 -g1,19565:7773065,28205191 -g1,19565:9470447,28205191 -h1,19565:10665824,28205191:0,0,0 -k1,19566:32583030,28205191:21657684 -g1,19566:32583030,28205191 -) -] -g1,19566:32583029,28339539 -) -h1,19566:6630773,28339539:0,0,0 -v1,19569:6630773,29024394:0,393216,0 -(1,19578:6630773,32782746:25952256,4151568,196608 -g1,19578:6630773,32782746 -g1,19578:6630773,32782746 -g1,19578:6434165,32782746 -(1,19578:6434165,32782746:0,4151568,196608 -r1,19603:32779637,32782746:26345472,4348176,196608 -k1,19578:6434165,32782746:-26345472 -) -(1,19578:6434165,32782746:26345472,4151568,196608 -[1,19578:6630773,32782746:25952256,3954960,0 -(1,19571:6630773,29252225:25952256,424439,79822 -(1,19570:6630773,29252225:0,0,0 -g1,19570:6630773,29252225 -g1,19570:6630773,29252225 -g1,19570:6303093,29252225 -(1,19570:6303093,29252225:0,0,0 -) -g1,19570:6630773,29252225 -) -g1,19571:8954451,29252225 -k1,19571:8954451,29252225:0 -h1,19571:9618359,29252225:0,0,0 -k1,19571:32583029,29252225:22964670 -g1,19571:32583029,29252225 -) -(1,19572:6630773,29937080:25952256,424439,112852 -h1,19572:6630773,29937080:0,0,0 -g1,19572:6962727,29937080 -g1,19572:7294681,29937080 -g1,19572:11942036,29937080 -k1,19572:11942036,29937080:0 -h1,19572:12605944,29937080:0,0,0 -k1,19572:32583028,29937080:19977084 -g1,19572:32583028,29937080 -) -(1,19573:6630773,30621935:25952256,431045,112852 -h1,19573:6630773,30621935:0,0,0 -g1,19573:6962727,30621935 -g1,19573:7294681,30621935 -g1,19573:12605944,30621935 -g1,19573:13933760,30621935 -g1,19573:14597668,30621935 -g1,19573:20240886,30621935 -g1,19573:22564564,30621935 -g1,19573:23228472,30621935 -k1,19573:23228472,30621935:0 -h1,19573:24224334,30621935:0,0,0 -k1,19573:32583029,30621935:8358695 -g1,19573:32583029,30621935 -) -(1,19574:6630773,31306790:25952256,431045,112852 -h1,19574:6630773,31306790:0,0,0 -g1,19574:6962727,31306790 -g1,19574:7294681,31306790 -g1,19574:7626635,31306790 -g1,19574:7958589,31306790 -g1,19574:8290543,31306790 -g1,19574:8622497,31306790 -g1,19574:8954451,31306790 -g1,19574:9286405,31306790 -g1,19574:9618359,31306790 -g1,19574:9950313,31306790 -g1,19574:10282267,31306790 -g1,19574:10614221,31306790 -g1,19574:12605945,31306790 -g1,19574:14597669,31306790 -g1,19574:15261577,31306790 -g1,19574:21568703,31306790 -g1,19574:23892381,31306790 -g1,19574:24556289,31306790 -k1,19574:24556289,31306790:0 -h1,19574:25552151,31306790:0,0,0 -k1,19574:32583029,31306790:7030878 -g1,19574:32583029,31306790 -) -(1,19575:6630773,31991645:25952256,431045,112852 -h1,19575:6630773,31991645:0,0,0 -g1,19575:6962727,31991645 -g1,19575:7294681,31991645 -g1,19575:7626635,31991645 -g1,19575:7958589,31991645 -g1,19575:8290543,31991645 -g1,19575:8622497,31991645 -g1,19575:8954451,31991645 -g1,19575:9286405,31991645 -g1,19575:9618359,31991645 -g1,19575:9950313,31991645 -g1,19575:10282267,31991645 -g1,19575:10614221,31991645 -g1,19575:12605945,31991645 -g1,19575:14265715,31991645 -g1,19575:14929623,31991645 -g1,19575:20904795,31991645 -g1,19575:23228473,31991645 -g1,19575:23892381,31991645 -g1,19575:25220197,31991645 -g1,19575:26216059,31991645 -h1,19575:28871690,31991645:0,0,0 -k1,19575:32583029,31991645:3711339 -g1,19575:32583029,31991645 -) -(1,19576:6630773,32676500:25952256,424439,106246 -h1,19576:6630773,32676500:0,0,0 -g1,19576:9618358,32676500 -g1,19576:10614220,32676500 -g1,19576:13601806,32676500 -g1,19576:14265714,32676500 -g1,19576:15925484,32676500 -g1,19576:16589392,32676500 -g1,19576:17253300,32676500 -g1,19576:18581116,32676500 -g1,19576:22564563,32676500 -g1,19576:23228471,32676500 -k1,19576:23228471,32676500:0 -h1,19576:28207780,32676500:0,0,0 -k1,19576:32583029,32676500:4375249 -g1,19576:32583029,32676500 -) -] -) -g1,19578:32583029,32782746 -g1,19578:6630773,32782746 -g1,19578:6630773,32782746 -g1,19578:32583029,32782746 -g1,19578:32583029,32782746 -) -h1,19578:6630773,32979354:0,0,0 -(1,19582:6630773,33844434:25952256,513147,134348 -h1,19581:6630773,33844434:983040,0,0 -k1,19581:8656490,33844434:224788 -k1,19581:10275230,33844434:224789 -k1,19581:11726197,33844434:224788 -k1,19581:13968839,33844434:224788 -k1,19581:18011100,33844434:224789 -k1,19581:18767385,33844434:224788 -k1,19581:22582236,33844434:224789 -k1,19581:23423062,33844434:224788 -k1,19581:26112004,33844434:224788 -k1,19581:26988221,33844434:224789 -k1,19581:30217835,33844434:224788 -k1,19582:32583029,33844434:0 -) -(1,19582:6630773,34709514:25952256,513147,134348 -k1,19581:8276600,34709514:204690 -k1,19581:11325552,34709514:204689 -k1,19581:12549327,34709514:204690 -k1,19581:15193266,34709514:204689 -(1,19581:15193266,34709514:0,452978,115847 -r1,19603:18013515,34709514:2820249,568825,115847 -k1,19581:15193266,34709514:-2820249 -) -(1,19581:15193266,34709514:2820249,452978,115847 -k1,19581:15193266,34709514:3277 -h1,19581:18010238,34709514:0,411205,112570 -) -k1,19581:18391875,34709514:204690 -k1,19581:20442713,34709514:204689 -k1,19581:22507970,34709514:204690 -k1,19581:23364087,34709514:204689 -k1,19581:24316543,34709514:204690 -k1,19581:27182649,34709514:204689 -k1,19581:27853300,34709514:204690 -k1,19581:29214699,34709514:204689 -k1,19581:30684234,34709514:204690 -$1,19581:30684234,34709514 -$1,19581:31186895,34709514 -k1,19581:31391584,34709514:204689 -k1,19581:32583029,34709514:0 -) -(1,19582:6630773,35574594:25952256,513147,138281 -$1,19581:7182586,35574594 -k1,19581:7423337,35574594:240751 -k1,19581:11402262,35574594:240751 -k1,19581:12294441,35574594:240751 -k1,19581:13554277,35574594:240751 -k1,19581:16351587,35574594:240751 -k1,19581:17251630,35574594:240751 -k1,19581:18511467,35574594:240752 -k1,19581:20302800,35574594:240751 -k1,19581:22610557,35574594:240751 -k1,19581:25366580,35574594:240751 -k1,19581:27174952,35574594:240751 -k1,19581:28434788,35574594:240751 -k1,19581:30663901,35574594:240751 -k1,19581:31563944,35574594:240751 -k1,19581:32583029,35574594:0 -) -(1,19582:6630773,36439674:25952256,505283,134348 -k1,19581:8289896,36439674:208156 -k1,19581:9694740,36439674:208157 -k1,19581:11453478,36439674:208156 -k1,19581:13227289,36439674:208156 -k1,19581:13966943,36439674:208157 -k1,19581:16140524,36439674:208156 -k1,19581:16961442,36439674:208156 -k1,19581:17957997,36439674:208157 -k1,19581:20099465,36439674:208156 -k1,19581:21750068,36439674:208156 -k1,19581:23652986,36439674:208157 -k1,19581:24622670,36439674:208156 -k1,19581:25849911,36439674:208156 -(1,19581:25849911,36439674:0,452978,115847 -r1,19603:27263312,36439674:1413401,568825,115847 -k1,19581:25849911,36439674:-1413401 -) -(1,19581:25849911,36439674:1413401,452978,115847 -k1,19581:25849911,36439674:3277 -h1,19581:27260035,36439674:0,411205,112570 -) -k1,19581:27471469,36439674:208157 -k1,19581:30697558,36439674:208156 -k1,19581:32583029,36439674:0 -) -(1,19582:6630773,37304754:25952256,505283,126483 -g1,19581:7361499,37304754 -g1,19581:9932476,37304754 -g1,19581:10783133,37304754 -g1,19581:12001447,37304754 -g1,19581:13426855,37304754 -g1,19581:14242122,37304754 -k1,19582:32583029,37304754:17830382 -g1,19582:32583029,37304754 -) -v1,19584:6630773,37989609:0,393216,0 -(1,19594:6630773,42412998:25952256,4816605,196608 -g1,19594:6630773,42412998 -g1,19594:6630773,42412998 -g1,19594:6434165,42412998 -(1,19594:6434165,42412998:0,4816605,196608 -r1,19603:32779637,42412998:26345472,5013213,196608 -k1,19594:6434165,42412998:-26345472 -) -(1,19594:6434165,42412998:26345472,4816605,196608 -[1,19594:6630773,42412998:25952256,4619997,0 -(1,19586:6630773,38217440:25952256,424439,112852 -(1,19585:6630773,38217440:0,0,0 -g1,19585:6630773,38217440 -g1,19585:6630773,38217440 -g1,19585:6303093,38217440 -(1,19585:6303093,38217440:0,0,0 -) -g1,19585:6630773,38217440 -) -k1,19586:6630773,38217440:0 -g1,19586:10614221,38217440 -g1,19586:11278129,38217440 -k1,19586:11278129,38217440:0 -h1,19586:13601807,38217440:0,0,0 -k1,19586:32583029,38217440:18981222 -g1,19586:32583029,38217440 -) -(1,19587:6630773,38902295:25952256,431045,112852 -h1,19587:6630773,38902295:0,0,0 -g1,19587:6962727,38902295 -g1,19587:7294681,38902295 -g1,19587:7626635,38902295 -g1,19587:7958589,38902295 -g1,19587:8290543,38902295 -g1,19587:8622497,38902295 -g1,19587:8954451,38902295 -g1,19587:11610083,38902295 -g1,19587:12273991,38902295 -g1,19587:14265715,38902295 -g1,19587:14929623,38902295 -g1,19587:16921347,38902295 -g1,19587:17585255,38902295 -g1,19587:18249163,38902295 -g1,19587:19908933,38902295 -g1,19587:22232611,38902295 -g1,19587:22896519,38902295 -g1,19587:27211921,38902295 -g1,19587:28871691,38902295 -g1,19587:29535599,38902295 -g1,19587:31195369,38902295 -h1,19587:31527323,38902295:0,0,0 -k1,19587:32583029,38902295:1055706 -g1,19587:32583029,38902295 -) -(1,19588:6630773,39587150:25952256,424439,79822 -h1,19588:6630773,39587150:0,0,0 -g1,19588:6962727,39587150 -g1,19588:7294681,39587150 -g1,19588:11610082,39587150 -h1,19588:11942036,39587150:0,0,0 -k1,19588:32583028,39587150:20640992 -g1,19588:32583028,39587150 -) -(1,19589:6630773,40272005:25952256,424439,112852 -h1,19589:6630773,40272005:0,0,0 -g1,19589:6962727,40272005 -g1,19589:7294681,40272005 -g1,19589:11610082,40272005 -h1,19589:11942036,40272005:0,0,0 -k1,19589:32583028,40272005:20640992 -g1,19589:32583028,40272005 -) -(1,19590:6630773,40956860:25952256,424439,112852 -h1,19590:6630773,40956860:0,0,0 -g1,19590:6962727,40956860 -g1,19590:7294681,40956860 -g1,19590:12605944,40956860 -g1,19590:13269852,40956860 -k1,19590:13269852,40956860:0 -h1,19590:16257437,40956860:0,0,0 -k1,19590:32583029,40956860:16325592 -g1,19590:32583029,40956860 -) -(1,19591:6630773,41641715:25952256,424439,112852 -h1,19591:6630773,41641715:0,0,0 -g1,19591:6962727,41641715 -g1,19591:7294681,41641715 -g1,19591:7626635,41641715 -g1,19591:7958589,41641715 -g1,19591:8290543,41641715 -g1,19591:8622497,41641715 -g1,19591:8954451,41641715 -g1,19591:9286405,41641715 -g1,19591:9618359,41641715 -g1,19591:9950313,41641715 -g1,19591:10282267,41641715 -g1,19591:10614221,41641715 -g1,19591:10946175,41641715 -g1,19591:13601807,41641715 -g1,19591:14265715,41641715 -g1,19591:16257439,41641715 -g1,19591:16921347,41641715 -g1,19591:17917209,41641715 -g1,19591:18581117,41641715 -g1,19591:19245025,41641715 -g1,19591:20240887,41641715 -g1,19591:22232611,41641715 -g1,19591:22896519,41641715 -k1,19591:22896519,41641715:0 -h1,19591:27211920,41641715:0,0,0 -k1,19591:32583029,41641715:5371109 -g1,19591:32583029,41641715 -) -(1,19592:6630773,42326570:25952256,424439,86428 -h1,19592:6630773,42326570:0,0,0 -g1,19592:6962727,42326570 -g1,19592:7294681,42326570 -g1,19592:7626635,42326570 -g1,19592:7958589,42326570 -g1,19592:8290543,42326570 -g1,19592:8622497,42326570 -g1,19592:8954451,42326570 -g1,19592:9286405,42326570 -g1,19592:9618359,42326570 -g1,19592:9950313,42326570 -g1,19592:10282267,42326570 -g1,19592:10614221,42326570 -g1,19592:10946175,42326570 -g1,19592:13269853,42326570 -g1,19592:13933761,42326570 -g1,19592:16921347,42326570 -g1,19592:18581117,42326570 -g1,19592:19245025,42326570 -h1,19592:19908933,42326570:0,0,0 -k1,19592:32583029,42326570:12674096 -g1,19592:32583029,42326570 -) -] -) -g1,19594:32583029,42412998 -g1,19594:6630773,42412998 -g1,19594:6630773,42412998 -g1,19594:32583029,42412998 -g1,19594:32583029,42412998 -) -h1,19594:6630773,42609606:0,0,0 -] -(1,19603:32583029,45706769:0,0,0 -g1,19603:32583029,45706769 -) -) -] -(1,19603:6630773,47279633:25952256,0,0 -h1,19603:6630773,47279633:25952256,0,0 -) -] -(1,19603:4262630,4025873:0,0,0 -[1,19603:-473656,4025873:0,0,0 -(1,19603:-473656,-710413:0,0,0 -(1,19603:-473656,-710413:0,0,0 -g1,19603:-473656,-710413 -) -g1,19603:-473656,-710413 +) +k1,19601:3078556,49800853:-34777008 +) +] +g1,19601:6630773,4812305 +g1,19601:6630773,4812305 +g1,19601:10347975,4812305 +k1,19601:31387651,4812305:21039676 +) +) +] +[1,19601:6630773,45706769:25952256,40108032,0 +(1,19601:6630773,45706769:25952256,40108032,0 +(1,19601:6630773,45706769:0,0,0 +g1,19601:6630773,45706769 +) +[1,19601:6630773,45706769:25952256,40108032,0 +(1,19547:6630773,6254097:25952256,555811,12975 +(1,19547:6630773,6254097:2450326,534184,12975 +g1,19547:6630773,6254097 +g1,19547:9081099,6254097 +) +g1,19547:10708162,6254097 +k1,19547:32583030,6254097:19728040 +g1,19547:32583030,6254097 +) +(1,19552:6630773,7512393:25952256,513147,134348 +k1,19551:8010977,7512393:205144 +k1,19551:10742535,7512393:205145 +k1,19551:11895330,7512393:205144 +k1,19551:13981357,7512393:205144 +k1,19551:14802539,7512393:205144 +k1,19551:17836217,7512393:205145 +k1,19551:18572858,7512393:205144 +k1,19551:21534446,7512393:205144 +k1,19551:22391018,7512393:205144 +(1,19551:22391018,7512393:0,452978,115847 +r1,19601:29080096,7512393:6689078,568825,115847 +k1,19551:22391018,7512393:-6689078 +) +(1,19551:22391018,7512393:6689078,452978,115847 +k1,19551:22391018,7512393:3277 +h1,19551:29076819,7512393:0,411205,112570 +) +k1,19551:29285241,7512393:205145 +k1,19551:31375856,7512393:205144 +k1,19551:32583029,7512393:0 +) +(1,19552:6630773,8377473:25952256,513147,134348 +k1,19551:9642720,8377473:155233 +k1,19551:10449381,8377473:155233 +k1,19551:11352380,8377473:155233 +k1,19551:13020839,8377473:155233 +k1,19551:14123723,8377473:155233 +k1,19551:16013694,8377473:155233 +k1,19551:19959529,8377473:155233 +k1,19551:22953781,8377473:155232 +k1,19551:23760442,8377473:155233 +k1,19551:24663441,8377473:155233 +k1,19551:25837759,8377473:155233 +k1,19551:27646465,8377473:155233 +k1,19551:28417736,8377473:155233 +k1,19551:30024591,8377473:155233 +k1,19551:31923737,8377473:155233 +k1,19551:32583029,8377473:0 +) +(1,19552:6630773,9242553:25952256,513147,134348 +k1,19551:7140441,9242553:153808 +k1,19551:8571546,9242553:153808 +k1,19551:9951533,9242553:153808 +k1,19551:11197826,9242553:153808 +k1,19551:12010926,9242553:153808 +k1,19551:15955336,9242553:153808 +k1,19551:16640641,9242553:153808 +k1,19551:19884472,9242553:153808 +k1,19551:20654318,9242553:153808 +k1,19551:23086813,9242553:153808 +h1,19551:24455860,9242553:0,0,0 +k1,19551:24990432,9242553:153808 +k1,19551:27679173,9242553:153808 +k1,19551:29822653,9242553:153808 +k1,19551:32583029,9242553:0 +) +(1,19552:6630773,10107633:25952256,505283,134348 +k1,19551:8966074,10107633:268951 +k1,19551:10519530,10107633:268950 +k1,19551:12764391,10107633:268951 +(1,19551:12764391,10107633:0,452978,122846 +r1,19601:16639775,10107633:3875384,575824,122846 +k1,19551:12764391,10107633:-3875384 +) +(1,19551:12764391,10107633:3875384,452978,122846 +k1,19551:12764391,10107633:3277 +h1,19551:16636498,10107633:0,411205,112570 +) +k1,19551:16908725,10107633:268950 +k1,19551:17793714,10107633:268951 +k1,19551:20526818,10107633:268950 +k1,19551:21447197,10107633:268951 +k1,19551:22735232,10107633:268950 +k1,19551:26068647,10107633:268951 +k1,19551:28024494,10107633:268950 +k1,19551:29365614,10107633:268951 +k1,19551:30919070,10107633:268950 +k1,19552:32583029,10107633:0 +) +(1,19552:6630773,10972713:25952256,505283,126483 +k1,19551:8053708,10972713:212485 +k1,19551:8917621,10972713:212485 +(1,19551:8917621,10972713:0,459977,122846 +r1,19601:12089581,10972713:3171960,582823,122846 +k1,19551:8917621,10972713:-3171960 +) +(1,19551:8917621,10972713:3171960,459977,122846 +k1,19551:8917621,10972713:3277 +h1,19551:12086304,10972713:0,411205,112570 +) +k1,19551:12475736,10972713:212485 +k1,19551:14759159,10972713:212485 +k1,19551:16256150,10972713:212485 +k1,19551:17487720,10972713:212485 +k1,19551:20083095,10972713:212486 +k1,19551:20911618,10972713:212485 +(1,19551:20911618,10972713:0,452978,115847 +r1,19601:22325019,10972713:1413401,568825,115847 +k1,19551:20911618,10972713:-1413401 +) +(1,19551:20911618,10972713:1413401,452978,115847 +k1,19551:20911618,10972713:3277 +h1,19551:22321742,10972713:0,411205,112570 +) +k1,19551:22537504,10972713:212485 +k1,19551:25335384,10972713:212485 +k1,19551:26199297,10972713:212485 +k1,19551:27430867,10972713:212485 +(1,19551:27430867,10972713:0,452978,115847 +r1,19601:29195980,10972713:1765113,568825,115847 +k1,19551:27430867,10972713:-1765113 +) +(1,19551:27430867,10972713:1765113,452978,115847 +k1,19551:27430867,10972713:3277 +h1,19551:29192703,10972713:0,411205,112570 +) +k1,19551:29408465,10972713:212485 +k1,19551:32583029,10972713:0 +) +(1,19552:6630773,11837793:25952256,513147,134348 +k1,19551:7847598,11837793:225265 +k1,19551:9396690,11837793:225265 +k1,19551:10281247,11837793:225265 +k1,19551:12796340,11837793:225265 +k1,19551:16383602,11837793:225265 +k1,19551:19280115,11837793:225266 +k1,19551:21485878,11837793:225265 +k1,19551:22370435,11837793:225265 +k1,19551:26576357,11837793:225265 +k1,19551:28753284,11837793:225265 +k1,19551:30420996,11837793:225265 +k1,19551:32583029,11837793:0 +) +(1,19552:6630773,12702873:25952256,505283,134348 +k1,19551:9322548,12702873:227622 +k1,19551:11382558,12702873:227623 +k1,19551:15117667,12702873:227622 +k1,19551:16336850,12702873:227623 +k1,19551:19474927,12702873:227623 +k1,19551:22660189,12702873:227622 +(1,19551:22660189,12702873:0,452978,122846 +r1,19601:26887285,12702873:4227096,575824,122846 +k1,19551:22660189,12702873:-4227096 +) +(1,19551:22660189,12702873:4227096,452978,122846 +k1,19551:22660189,12702873:3277 +h1,19551:26884008,12702873:0,411205,112570 +) +k1,19551:27288577,12702873:227622 +(1,19551:27288577,12702873:0,452978,122846 +r1,19601:31163961,12702873:3875384,575824,122846 +k1,19551:27288577,12702873:-3875384 +) +(1,19551:27288577,12702873:3875384,452978,122846 +k1,19551:27288577,12702873:3277 +h1,19551:31160684,12702873:0,411205,112570 +) +k1,19551:31391584,12702873:227623 +k1,19552:32583029,12702873:0 +) +(1,19552:6630773,13567953:25952256,452978,122846 +(1,19551:6630773,13567953:0,452978,122846 +r1,19601:10506157,13567953:3875384,575824,122846 +k1,19551:6630773,13567953:-3875384 +) +(1,19551:6630773,13567953:3875384,452978,122846 +k1,19551:6630773,13567953:3277 +h1,19551:10502880,13567953:0,411205,112570 +) +k1,19552:32583029,13567953:22024444 +g1,19552:32583029,13567953 +) +v1,19554:6630773,14433033:0,393216,0 +(1,19555:6630773,17515933:25952256,3476116,0 +g1,19555:6630773,17515933 +g1,19555:6237557,17515933 +r1,19601:6368629,17515933:131072,3476116,0 +g1,19555:6567858,17515933 +g1,19555:6764466,17515933 +[1,19555:6764466,17515933:25818563,3476116,0 +(1,19555:6764466,14794210:25818563,754393,260573 +(1,19554:6764466,14794210:0,754393,260573 +r1,19601:7856192,14794210:1091726,1014966,260573 +k1,19554:6764466,14794210:-1091726 +) +(1,19554:6764466,14794210:1091726,754393,260573 +) +k1,19554:8041801,14794210:185609 +k1,19554:8369481,14794210:327680 +k1,19554:10355365,14794210:185610 +k1,19554:11825480,14794210:185609 +(1,19554:11825480,14794210:0,452978,122846 +r1,19601:16052576,14794210:4227096,575824,122846 +k1,19554:11825480,14794210:-4227096 +) +(1,19554:11825480,14794210:4227096,452978,122846 +k1,19554:11825480,14794210:3277 +h1,19554:16049299,14794210:0,411205,112570 +) +k1,19554:16411855,14794210:185609 +(1,19554:16411855,14794210:0,452978,122846 +r1,19601:20287239,14794210:3875384,575824,122846 +k1,19554:16411855,14794210:-3875384 +) +(1,19554:16411855,14794210:3875384,452978,122846 +k1,19554:16411855,14794210:3277 +h1,19554:20283962,14794210:0,411205,112570 +) +k1,19554:20472848,14794210:185609 +k1,19554:21849903,14794210:185610 +(1,19554:21849903,14794210:0,452978,122846 +r1,19601:25725287,14794210:3875384,575824,122846 +k1,19554:21849903,14794210:-3875384 +) +(1,19554:21849903,14794210:3875384,452978,122846 +k1,19554:21849903,14794210:3277 +h1,19554:25722010,14794210:0,411205,112570 +) +k1,19554:25910896,14794210:185609 +k1,19554:27228967,14794210:185609 +k1,19554:29260725,14794210:185609 +k1,19554:30538820,14794210:185610 +k1,19554:31080289,14794210:185609 +k1,19555:32583029,14794210:0 +) +(1,19555:6764466,15659290:25818563,513147,134348 +k1,19554:8436196,15659290:260740 +k1,19554:11589694,15659290:260739 +k1,19554:13418055,15659290:260740 +k1,19554:14697880,15659290:260740 +k1,19554:16841468,15659290:260739 +k1,19554:18553175,15659290:260740 +k1,19554:19575443,15659290:260740 +k1,19554:22101762,15659290:260739 +k1,19554:23742690,15659290:260740 +k1,19554:24818697,15659290:260739 +k1,19554:26145708,15659290:260740 +k1,19554:28531125,15659290:260740 +k1,19554:29423631,15659290:260739 +k1,19554:31563944,15659290:260740 +k1,19554:32583029,15659290:0 +) +(1,19555:6764466,16524370:25818563,513147,134348 +k1,19554:9735431,16524370:163403 +k1,19554:12079217,16524370:163403 +k1,19554:12990386,16524370:163403 +k1,19554:15914821,16524370:163403 +k1,19554:16764386,16524370:163403 +k1,19554:17698492,16524370:163403 +k1,19554:20934224,16524370:163404 +k1,19554:21749055,16524370:163403 +k1,19554:23609185,16524370:163403 +k1,19554:26798385,16524370:163403 +k1,19554:27644673,16524370:163403 +k1,19554:29316715,16524370:163403 +k1,19555:32583029,16524370:0 +) +(1,19555:6764466,17389450:25818563,505283,126483 +(1,19554:6764466,17389450:0,452978,115847 +r1,19601:10639850,17389450:3875384,568825,115847 +k1,19554:6764466,17389450:-3875384 +) +(1,19554:6764466,17389450:3875384,452978,115847 +k1,19554:6764466,17389450:3277 +h1,19554:10636573,17389450:0,411205,112570 +) +g1,19554:10839079,17389450 +g1,19554:13935655,17389450 +g1,19554:15069427,17389450 +g1,19554:15920084,17389450 +(1,19554:15920084,17389450:0,414482,115847 +r1,19601:17333485,17389450:1413401,530329,115847 +k1,19554:15920084,17389450:-1413401 +) +(1,19554:15920084,17389450:1413401,414482,115847 +k1,19554:15920084,17389450:3277 +h1,19554:17330208,17389450:0,411205,112570 +) +k1,19555:32583029,17389450:15197116 +g1,19555:32583029,17389450 +) +] +g1,19555:32583029,17515933 +) +h1,19555:6630773,17515933:0,0,0 +(1,19559:6630773,18381013:25952256,513147,134348 +h1,19558:6630773,18381013:983040,0,0 +k1,19558:9876348,18381013:188976 +k1,19558:11169606,18381013:188976 +k1,19558:12106348,18381013:188976 +k1,19558:14260749,18381013:188976 +k1,19558:15135887,18381013:188976 +k1,19558:16602160,18381013:188976 +k1,19558:18672019,18381013:188976 +k1,19558:20254946,18381013:188976 +(1,19558:20254946,18381013:0,452978,122846 +r1,19601:24482042,18381013:4227096,575824,122846 +k1,19558:20254946,18381013:-4227096 +) +(1,19558:20254946,18381013:4227096,452978,122846 +k1,19558:20254946,18381013:3277 +h1,19558:24478765,18381013:0,411205,112570 +) +k1,19558:24671018,18381013:188976 +k1,19558:25621522,18381013:188976 +k1,19558:28618060,18381013:188976 +k1,19558:29162896,18381013:188976 +k1,19558:30345398,18381013:188976 +k1,19558:31193666,18381013:188976 +k1,19558:32583029,18381013:0 +) +(1,19559:6630773,19246093:25952256,513147,134348 +k1,19558:9015071,19246093:177701 +k1,19558:10082751,19246093:177701 +k1,19558:12609262,19246093:177701 +k1,19558:13438391,19246093:177701 +k1,19558:14635177,19246093:177701 +(1,19558:14635177,19246093:0,452978,115847 +r1,19601:16400290,19246093:1765113,568825,115847 +k1,19558:14635177,19246093:-1765113 +) +(1,19558:14635177,19246093:1765113,452978,115847 +k1,19558:14635177,19246093:3277 +h1,19558:16397013,19246093:0,411205,112570 +) +k1,19558:16577990,19246093:177700 +k1,19558:19682528,19246093:177701 +k1,19558:23593160,19246093:177701 +k1,19558:27762004,19246093:177701 +k1,19558:29131150,19246093:177701 +k1,19558:31006233,19246093:177701 +k1,19558:32583029,19246093:0 +) +(1,19559:6630773,20111173:25952256,513147,126483 +k1,19558:7494267,20111173:177332 +k1,19558:8619250,20111173:177332 +(1,19558:8619250,20111173:0,452978,122846 +r1,19601:12494634,20111173:3875384,575824,122846 +k1,19558:8619250,20111173:-3875384 +) +(1,19558:8619250,20111173:3875384,452978,122846 +k1,19558:8619250,20111173:3277 +h1,19558:12491357,20111173:0,411205,112570 +) +k1,19558:12671966,20111173:177332 +k1,19558:14040742,20111173:177331 +k1,19558:15209634,20111173:177332 +k1,19558:17758714,20111173:177332 +k1,19558:18587474,20111173:177332 +k1,19558:19783891,20111173:177332 +k1,19558:21844072,20111173:177332 +k1,19558:23760729,20111173:177331 +k1,19558:25134748,20111173:177332 +k1,19558:27622224,20111173:177332 +k1,19558:28791116,20111173:177332 +k1,19558:32583029,20111173:0 +) +(1,19559:6630773,20976253:25952256,505283,134348 +g1,19558:7516164,20976253 +g1,19558:9341340,20976253 +(1,19558:9341340,20976253:0,452978,122846 +r1,19601:10754741,20976253:1413401,575824,122846 +k1,19558:9341340,20976253:-1413401 +) +(1,19558:9341340,20976253:1413401,452978,122846 +k1,19558:9341340,20976253:3277 +h1,19558:10751464,20976253:0,411205,112570 +) +g1,19558:10953970,20976253 +g1,19558:13443027,20976253 +g1,19558:14833701,20976253 +g1,19558:16998355,20976253 +g1,19558:17849012,20976253 +g1,19558:19067326,20976253 +(1,19558:19067326,20976253:0,414482,122846 +r1,19601:19777304,20976253:709978,537328,122846 +k1,19558:19067326,20976253:-709978 +) +(1,19558:19067326,20976253:709978,414482,122846 +k1,19558:19067326,20976253:3277 +h1,19558:19774027,20976253:0,411205,112570 +) +g1,19558:19976533,20976253 +g1,19558:21453059,20976253 +g1,19558:23611814,20976253 +g1,19558:24497205,20976253 +g1,19558:25052294,20976253 +k1,19559:32583029,20976253:5920516 +g1,19559:32583029,20976253 +) +(1,19561:6630773,21841333:25952256,513147,134348 +h1,19560:6630773,21841333:983040,0,0 +k1,19560:9083187,21841333:272687 +k1,19560:10852061,21841333:272687 +k1,19560:12993180,21841333:272688 +k1,19560:15238501,21841333:272687 +k1,19560:15867048,21841333:272687 +(1,19560:15867048,21841333:0,452978,115847 +r1,19601:17983873,21841333:2116825,568825,115847 +k1,19560:15867048,21841333:-2116825 +) +(1,19560:15867048,21841333:2116825,452978,115847 +k1,19560:15867048,21841333:3277 +h1,19560:17980596,21841333:0,411205,112570 +) +k1,19560:18256560,21841333:272687 +k1,19560:21891244,21841333:272687 +k1,19560:25672073,21841333:272687 +k1,19560:27512382,21841333:272688 +k1,19560:28804154,21841333:272687 +(1,19560:28804154,21841333:0,414482,115847 +r1,19601:30920979,21841333:2116825,530329,115847 +k1,19560:28804154,21841333:-2116825 +) +(1,19560:28804154,21841333:2116825,414482,115847 +k1,19560:28804154,21841333:3277 +h1,19560:30917702,21841333:0,411205,112570 +) +k1,19560:31193666,21841333:272687 +k1,19560:32583029,21841333:0 +) +(1,19561:6630773,22706413:25952256,513147,134348 +k1,19560:7986112,22706413:247125 +k1,19560:9627188,22706413:247125 +k1,19560:10893399,22706413:247126 +k1,19560:14130932,22706413:247125 +k1,19560:16388702,22706413:247125 +k1,19560:19841193,22706413:247125 +k1,19560:20774480,22706413:247125 +k1,19560:23996284,22706413:247125 +k1,19560:26613192,22706413:247126 +k1,19560:28387961,22706413:247125 +k1,19560:29838327,22706413:247125 +k1,19560:31896867,22706413:247125 +k1,19560:32583029,22706413:0 +) +(1,19561:6630773,23571493:25952256,505283,134348 +k1,19560:7878936,23571493:229078 +k1,19560:9981033,23571493:229078 +k1,19560:12833517,23571493:229078 +k1,19560:13714023,23571493:229078 +k1,19560:14298961,23571493:229078 +k1,19560:15695235,23571493:229078 +k1,19560:17115758,23571493:229078 +k1,19560:19292565,23571493:229077 +k1,19560:20724884,23571493:229078 +k1,19560:21947488,23571493:229078 +k1,19560:22862728,23571493:229078 +k1,19560:25474695,23571493:229078 +k1,19560:27862529,23571493:229078 +(1,19560:27862529,23571493:0,452978,115847 +r1,19601:31737913,23571493:3875384,568825,115847 +k1,19560:27862529,23571493:-3875384 +) +(1,19560:27862529,23571493:3875384,452978,115847 +k1,19560:27862529,23571493:3277 +h1,19560:31734636,23571493:0,411205,112570 +) +k1,19560:31966991,23571493:229078 +k1,19560:32583029,23571493:0 +) +(1,19561:6630773,24436573:25952256,513147,134348 +k1,19560:9310793,24436573:207347 +(1,19560:9310793,24436573:0,452978,115847 +r1,19601:11427618,24436573:2116825,568825,115847 +k1,19560:9310793,24436573:-2116825 +) +(1,19560:9310793,24436573:2116825,452978,115847 +k1,19560:9310793,24436573:3277 +h1,19560:11424341,24436573:0,411205,112570 +) +k1,19560:11808635,24436573:207347 +k1,19560:14174738,24436573:207347 +k1,19560:18448594,24436573:207347 +k1,19560:21336364,24436573:207347 +k1,19560:22937662,24436573:207347 +k1,19560:24164094,24436573:207347 +(1,19560:24164094,24436573:0,414482,115847 +r1,19601:24522360,24436573:358266,530329,115847 +k1,19560:24164094,24436573:-358266 +) +(1,19560:24164094,24436573:358266,414482,115847 +k1,19560:24164094,24436573:3277 +h1,19560:24519083,24436573:0,411205,112570 +) +k1,19560:24729707,24436573:207347 +k1,19560:26128499,24436573:207347 +(1,19560:26128499,24436573:0,414482,115847 +r1,19601:26486765,24436573:358266,530329,115847 +k1,19560:26128499,24436573:-358266 +) +(1,19560:26128499,24436573:358266,414482,115847 +k1,19560:26128499,24436573:3277 +h1,19560:26483488,24436573:0,411205,112570 +) +k1,19560:26694112,24436573:207347 +k1,19560:30639633,24436573:207347 +k1,19560:31794631,24436573:207347 +k1,19560:32583029,24436573:0 +) +(1,19561:6630773,25301653:25952256,505283,7863 +g1,19560:9386561,25301653 +g1,19560:10271952,25301653 +g1,19560:11241884,25301653 +k1,19561:32583030,25301653:19738136 +g1,19561:32583030,25301653 +) +v1,19563:6630773,26166733:0,393216,0 +(1,19564:6630773,28339539:25952256,2566022,0 +g1,19564:6630773,28339539 +g1,19564:6237557,28339539 +r1,19601:6368629,28339539:131072,2566022,0 +g1,19564:6567858,28339539 +g1,19564:6764466,28339539 +[1,19564:6764466,28339539:25818563,2566022,0 +(1,19564:6764466,26475031:25818563,701514,196608 +(1,19563:6764466,26475031:0,701514,196608 +r1,19601:7761522,26475031:997056,898122,196608 +k1,19563:6764466,26475031:-997056 +) +(1,19563:6764466,26475031:997056,701514,196608 +) +k1,19563:7972428,26475031:210906 +k1,19563:8300108,26475031:327680 +k1,19563:9707700,26475031:210905 +k1,19563:11414793,26475031:210906 +k1,19563:13048485,26475031:210905 +k1,19563:16285188,26475031:210906 +k1,19563:18063714,26475031:210905 +k1,19563:19293705,26475031:210906 +k1,19563:22712597,26475031:210905 +k1,19563:24155580,26475031:210906 +k1,19563:26645172,26475031:210905 +h1,19563:28187890,26475031:0,0,0 +k1,19563:28398796,26475031:210906 +k1,19563:29419071,26475031:210905 +k1,19563:31128130,26475031:210906 +h1,19563:32323507,26475031:0,0,0 +k1,19563:32583029,26475031:0 +) +(1,19564:6764466,27340111:25818563,513147,95026 +k1,19563:8423032,27340111:186627 +k1,19563:10816256,27340111:186627 +k1,19563:12194329,27340111:186628 +k1,19563:13814884,27340111:186627 +k1,19563:14416341,27340111:186614 +k1,19563:17628766,27340111:186628 +k1,19563:19584210,27340111:186627 +k1,19563:21246052,27340111:186627 +k1,19563:22942629,27340111:186627 +k1,19563:24642482,27340111:186627 +k1,19563:27156293,27340111:186628 +k1,19563:28574997,27340111:186627 +k1,19563:31040311,27340111:186627 +h1,19563:32583029,27340111:0,0,0 +k1,19563:32583029,27340111:0 +) +(1,19564:6764466,28205191:25818563,505283,134348 +g1,19563:7773065,28205191 +g1,19563:9470447,28205191 +h1,19563:10665824,28205191:0,0,0 +k1,19564:32583030,28205191:21657684 +g1,19564:32583030,28205191 +) +] +g1,19564:32583029,28339539 +) +h1,19564:6630773,28339539:0,0,0 +v1,19567:6630773,29024394:0,393216,0 +(1,19576:6630773,32782746:25952256,4151568,196608 +g1,19576:6630773,32782746 +g1,19576:6630773,32782746 +g1,19576:6434165,32782746 +(1,19576:6434165,32782746:0,4151568,196608 +r1,19601:32779637,32782746:26345472,4348176,196608 +k1,19576:6434165,32782746:-26345472 +) +(1,19576:6434165,32782746:26345472,4151568,196608 +[1,19576:6630773,32782746:25952256,3954960,0 +(1,19569:6630773,29252225:25952256,424439,79822 +(1,19568:6630773,29252225:0,0,0 +g1,19568:6630773,29252225 +g1,19568:6630773,29252225 +g1,19568:6303093,29252225 +(1,19568:6303093,29252225:0,0,0 +) +g1,19568:6630773,29252225 +) +g1,19569:8954451,29252225 +k1,19569:8954451,29252225:0 +h1,19569:9618359,29252225:0,0,0 +k1,19569:32583029,29252225:22964670 +g1,19569:32583029,29252225 +) +(1,19570:6630773,29937080:25952256,424439,112852 +h1,19570:6630773,29937080:0,0,0 +g1,19570:6962727,29937080 +g1,19570:7294681,29937080 +g1,19570:11942036,29937080 +k1,19570:11942036,29937080:0 +h1,19570:12605944,29937080:0,0,0 +k1,19570:32583028,29937080:19977084 +g1,19570:32583028,29937080 +) +(1,19571:6630773,30621935:25952256,431045,112852 +h1,19571:6630773,30621935:0,0,0 +g1,19571:6962727,30621935 +g1,19571:7294681,30621935 +g1,19571:12605944,30621935 +g1,19571:13933760,30621935 +g1,19571:14597668,30621935 +g1,19571:20240886,30621935 +g1,19571:22564564,30621935 +g1,19571:23228472,30621935 +k1,19571:23228472,30621935:0 +h1,19571:24224334,30621935:0,0,0 +k1,19571:32583029,30621935:8358695 +g1,19571:32583029,30621935 +) +(1,19572:6630773,31306790:25952256,431045,112852 +h1,19572:6630773,31306790:0,0,0 +g1,19572:6962727,31306790 +g1,19572:7294681,31306790 +g1,19572:7626635,31306790 +g1,19572:7958589,31306790 +g1,19572:8290543,31306790 +g1,19572:8622497,31306790 +g1,19572:8954451,31306790 +g1,19572:9286405,31306790 +g1,19572:9618359,31306790 +g1,19572:9950313,31306790 +g1,19572:10282267,31306790 +g1,19572:10614221,31306790 +g1,19572:12605945,31306790 +g1,19572:14597669,31306790 +g1,19572:15261577,31306790 +g1,19572:21568703,31306790 +g1,19572:23892381,31306790 +g1,19572:24556289,31306790 +k1,19572:24556289,31306790:0 +h1,19572:25552151,31306790:0,0,0 +k1,19572:32583029,31306790:7030878 +g1,19572:32583029,31306790 +) +(1,19573:6630773,31991645:25952256,431045,112852 +h1,19573:6630773,31991645:0,0,0 +g1,19573:6962727,31991645 +g1,19573:7294681,31991645 +g1,19573:7626635,31991645 +g1,19573:7958589,31991645 +g1,19573:8290543,31991645 +g1,19573:8622497,31991645 +g1,19573:8954451,31991645 +g1,19573:9286405,31991645 +g1,19573:9618359,31991645 +g1,19573:9950313,31991645 +g1,19573:10282267,31991645 +g1,19573:10614221,31991645 +g1,19573:12605945,31991645 +g1,19573:14265715,31991645 +g1,19573:14929623,31991645 +g1,19573:20904795,31991645 +g1,19573:23228473,31991645 +g1,19573:23892381,31991645 +g1,19573:25220197,31991645 +g1,19573:26216059,31991645 +h1,19573:28871690,31991645:0,0,0 +k1,19573:32583029,31991645:3711339 +g1,19573:32583029,31991645 +) +(1,19574:6630773,32676500:25952256,424439,106246 +h1,19574:6630773,32676500:0,0,0 +g1,19574:9618358,32676500 +g1,19574:10614220,32676500 +g1,19574:13601806,32676500 +g1,19574:14265714,32676500 +g1,19574:15925484,32676500 +g1,19574:16589392,32676500 +g1,19574:17253300,32676500 +g1,19574:18581116,32676500 +g1,19574:22564563,32676500 +g1,19574:23228471,32676500 +k1,19574:23228471,32676500:0 +h1,19574:28207780,32676500:0,0,0 +k1,19574:32583029,32676500:4375249 +g1,19574:32583029,32676500 +) +] +) +g1,19576:32583029,32782746 +g1,19576:6630773,32782746 +g1,19576:6630773,32782746 +g1,19576:32583029,32782746 +g1,19576:32583029,32782746 +) +h1,19576:6630773,32979354:0,0,0 +(1,19580:6630773,33844434:25952256,513147,134348 +h1,19579:6630773,33844434:983040,0,0 +k1,19579:8656490,33844434:224788 +k1,19579:10275230,33844434:224789 +k1,19579:11726197,33844434:224788 +k1,19579:13968839,33844434:224788 +k1,19579:18011100,33844434:224789 +k1,19579:18767385,33844434:224788 +k1,19579:22582236,33844434:224789 +k1,19579:23423062,33844434:224788 +k1,19579:26112004,33844434:224788 +k1,19579:26988221,33844434:224789 +k1,19579:30217835,33844434:224788 +k1,19580:32583029,33844434:0 +) +(1,19580:6630773,34709514:25952256,513147,134348 +k1,19579:8276600,34709514:204690 +k1,19579:11325552,34709514:204689 +k1,19579:12549327,34709514:204690 +k1,19579:15193266,34709514:204689 +(1,19579:15193266,34709514:0,452978,115847 +r1,19601:18013515,34709514:2820249,568825,115847 +k1,19579:15193266,34709514:-2820249 +) +(1,19579:15193266,34709514:2820249,452978,115847 +k1,19579:15193266,34709514:3277 +h1,19579:18010238,34709514:0,411205,112570 +) +k1,19579:18391875,34709514:204690 +k1,19579:20442713,34709514:204689 +k1,19579:22507970,34709514:204690 +k1,19579:23364087,34709514:204689 +k1,19579:24316543,34709514:204690 +k1,19579:27182649,34709514:204689 +k1,19579:27853300,34709514:204690 +k1,19579:29214699,34709514:204689 +k1,19579:30684234,34709514:204690 +$1,19579:30684234,34709514 +$1,19579:31186895,34709514 +k1,19579:31391584,34709514:204689 +k1,19579:32583029,34709514:0 +) +(1,19580:6630773,35574594:25952256,513147,138281 +$1,19579:7182586,35574594 +k1,19579:7423337,35574594:240751 +k1,19579:11402262,35574594:240751 +k1,19579:12294441,35574594:240751 +k1,19579:13554277,35574594:240751 +k1,19579:16351587,35574594:240751 +k1,19579:17251630,35574594:240751 +k1,19579:18511467,35574594:240752 +k1,19579:20302800,35574594:240751 +k1,19579:22610557,35574594:240751 +k1,19579:25366580,35574594:240751 +k1,19579:27174952,35574594:240751 +k1,19579:28434788,35574594:240751 +k1,19579:30663901,35574594:240751 +k1,19579:31563944,35574594:240751 +k1,19579:32583029,35574594:0 +) +(1,19580:6630773,36439674:25952256,505283,134348 +k1,19579:8289896,36439674:208156 +k1,19579:9694740,36439674:208157 +k1,19579:11453478,36439674:208156 +k1,19579:13227289,36439674:208156 +k1,19579:13966943,36439674:208157 +k1,19579:16140524,36439674:208156 +k1,19579:16961442,36439674:208156 +k1,19579:17957997,36439674:208157 +k1,19579:20099465,36439674:208156 +k1,19579:21750068,36439674:208156 +k1,19579:23652986,36439674:208157 +k1,19579:24622670,36439674:208156 +k1,19579:25849911,36439674:208156 +(1,19579:25849911,36439674:0,452978,115847 +r1,19601:27263312,36439674:1413401,568825,115847 +k1,19579:25849911,36439674:-1413401 +) +(1,19579:25849911,36439674:1413401,452978,115847 +k1,19579:25849911,36439674:3277 +h1,19579:27260035,36439674:0,411205,112570 +) +k1,19579:27471469,36439674:208157 +k1,19579:30697558,36439674:208156 +k1,19579:32583029,36439674:0 +) +(1,19580:6630773,37304754:25952256,505283,126483 +g1,19579:7361499,37304754 +g1,19579:9932476,37304754 +g1,19579:10783133,37304754 +g1,19579:12001447,37304754 +g1,19579:13426855,37304754 +g1,19579:14242122,37304754 +k1,19580:32583029,37304754:17830382 +g1,19580:32583029,37304754 +) +v1,19582:6630773,37989609:0,393216,0 +(1,19592:6630773,42412998:25952256,4816605,196608 +g1,19592:6630773,42412998 +g1,19592:6630773,42412998 +g1,19592:6434165,42412998 +(1,19592:6434165,42412998:0,4816605,196608 +r1,19601:32779637,42412998:26345472,5013213,196608 +k1,19592:6434165,42412998:-26345472 +) +(1,19592:6434165,42412998:26345472,4816605,196608 +[1,19592:6630773,42412998:25952256,4619997,0 +(1,19584:6630773,38217440:25952256,424439,112852 +(1,19583:6630773,38217440:0,0,0 +g1,19583:6630773,38217440 +g1,19583:6630773,38217440 +g1,19583:6303093,38217440 +(1,19583:6303093,38217440:0,0,0 +) +g1,19583:6630773,38217440 +) +k1,19584:6630773,38217440:0 +g1,19584:10614221,38217440 +g1,19584:11278129,38217440 +k1,19584:11278129,38217440:0 +h1,19584:13601807,38217440:0,0,0 +k1,19584:32583029,38217440:18981222 +g1,19584:32583029,38217440 +) +(1,19585:6630773,38902295:25952256,431045,112852 +h1,19585:6630773,38902295:0,0,0 +g1,19585:6962727,38902295 +g1,19585:7294681,38902295 +g1,19585:7626635,38902295 +g1,19585:7958589,38902295 +g1,19585:8290543,38902295 +g1,19585:8622497,38902295 +g1,19585:8954451,38902295 +g1,19585:11610083,38902295 +g1,19585:12273991,38902295 +g1,19585:14265715,38902295 +g1,19585:14929623,38902295 +g1,19585:16921347,38902295 +g1,19585:17585255,38902295 +g1,19585:18249163,38902295 +g1,19585:19908933,38902295 +g1,19585:22232611,38902295 +g1,19585:22896519,38902295 +g1,19585:27211921,38902295 +g1,19585:28871691,38902295 +g1,19585:29535599,38902295 +g1,19585:31195369,38902295 +h1,19585:31527323,38902295:0,0,0 +k1,19585:32583029,38902295:1055706 +g1,19585:32583029,38902295 +) +(1,19586:6630773,39587150:25952256,424439,79822 +h1,19586:6630773,39587150:0,0,0 +g1,19586:6962727,39587150 +g1,19586:7294681,39587150 +g1,19586:11610082,39587150 +h1,19586:11942036,39587150:0,0,0 +k1,19586:32583028,39587150:20640992 +g1,19586:32583028,39587150 +) +(1,19587:6630773,40272005:25952256,424439,112852 +h1,19587:6630773,40272005:0,0,0 +g1,19587:6962727,40272005 +g1,19587:7294681,40272005 +g1,19587:11610082,40272005 +h1,19587:11942036,40272005:0,0,0 +k1,19587:32583028,40272005:20640992 +g1,19587:32583028,40272005 +) +(1,19588:6630773,40956860:25952256,424439,112852 +h1,19588:6630773,40956860:0,0,0 +g1,19588:6962727,40956860 +g1,19588:7294681,40956860 +g1,19588:12605944,40956860 +g1,19588:13269852,40956860 +k1,19588:13269852,40956860:0 +h1,19588:16257437,40956860:0,0,0 +k1,19588:32583029,40956860:16325592 +g1,19588:32583029,40956860 +) +(1,19589:6630773,41641715:25952256,424439,112852 +h1,19589:6630773,41641715:0,0,0 +g1,19589:6962727,41641715 +g1,19589:7294681,41641715 +g1,19589:7626635,41641715 +g1,19589:7958589,41641715 +g1,19589:8290543,41641715 +g1,19589:8622497,41641715 +g1,19589:8954451,41641715 +g1,19589:9286405,41641715 +g1,19589:9618359,41641715 +g1,19589:9950313,41641715 +g1,19589:10282267,41641715 +g1,19589:10614221,41641715 +g1,19589:10946175,41641715 +g1,19589:13601807,41641715 +g1,19589:14265715,41641715 +g1,19589:16257439,41641715 +g1,19589:16921347,41641715 +g1,19589:17917209,41641715 +g1,19589:18581117,41641715 +g1,19589:19245025,41641715 +g1,19589:20240887,41641715 +g1,19589:22232611,41641715 +g1,19589:22896519,41641715 +k1,19589:22896519,41641715:0 +h1,19589:27211920,41641715:0,0,0 +k1,19589:32583029,41641715:5371109 +g1,19589:32583029,41641715 +) +(1,19590:6630773,42326570:25952256,424439,86428 +h1,19590:6630773,42326570:0,0,0 +g1,19590:6962727,42326570 +g1,19590:7294681,42326570 +g1,19590:7626635,42326570 +g1,19590:7958589,42326570 +g1,19590:8290543,42326570 +g1,19590:8622497,42326570 +g1,19590:8954451,42326570 +g1,19590:9286405,42326570 +g1,19590:9618359,42326570 +g1,19590:9950313,42326570 +g1,19590:10282267,42326570 +g1,19590:10614221,42326570 +g1,19590:10946175,42326570 +g1,19590:13269853,42326570 +g1,19590:13933761,42326570 +g1,19590:16921347,42326570 +g1,19590:18581117,42326570 +g1,19590:19245025,42326570 +h1,19590:19908933,42326570:0,0,0 +k1,19590:32583029,42326570:12674096 +g1,19590:32583029,42326570 +) +] +) +g1,19592:32583029,42412998 +g1,19592:6630773,42412998 +g1,19592:6630773,42412998 +g1,19592:32583029,42412998 +g1,19592:32583029,42412998 +) +h1,19592:6630773,42609606:0,0,0 +] +(1,19601:32583029,45706769:0,0,0 +g1,19601:32583029,45706769 +) +) +] +(1,19601:6630773,47279633:25952256,0,0 +h1,19601:6630773,47279633:25952256,0,0 +) +] +(1,19601:4262630,4025873:0,0,0 +[1,19601:-473656,4025873:0,0,0 +(1,19601:-473656,-710413:0,0,0 +(1,19601:-473656,-710413:0,0,0 +g1,19601:-473656,-710413 +) +g1,19601:-473656,-710413 ) ] ) ] !32286 -}326 -Input:3482:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}327 Input:3486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{327 -[1,19652:4262630,47279633:28320399,43253760,0 -(1,19652:4262630,4025873:0,0,0 -[1,19652:-473656,4025873:0,0,0 -(1,19652:-473656,-710413:0,0,0 -(1,19652:-473656,-644877:0,0,0 -k1,19652:-473656,-644877:-65536 +{328 +[1,19650:4262630,47279633:28320399,43253760,0 +(1,19650:4262630,4025873:0,0,0 +[1,19650:-473656,4025873:0,0,0 +(1,19650:-473656,-710413:0,0,0 +(1,19650:-473656,-644877:0,0,0 +k1,19650:-473656,-644877:-65536 ) -(1,19652:-473656,4736287:0,0,0 -k1,19652:-473656,4736287:5209943 +(1,19650:-473656,4736287:0,0,0 +k1,19650:-473656,4736287:5209943 ) -g1,19652:-473656,-710413 +g1,19650:-473656,-710413 ) ] ) -[1,19652:6630773,47279633:25952256,43253760,0 -[1,19652:6630773,4812305:25952256,786432,0 -(1,19652:6630773,4812305:25952256,513147,126483 -(1,19652:6630773,4812305:25952256,513147,126483 -g1,19652:3078558,4812305 -[1,19652:3078558,4812305:0,0,0 -(1,19652:3078558,2439708:0,1703936,0 -k1,19652:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19652:2537886,2439708:1179648,16384,0 +[1,19650:6630773,47279633:25952256,43253760,0 +[1,19650:6630773,4812305:25952256,786432,0 +(1,19650:6630773,4812305:25952256,513147,126483 +(1,19650:6630773,4812305:25952256,513147,126483 +g1,19650:3078558,4812305 +[1,19650:3078558,4812305:0,0,0 +(1,19650:3078558,2439708:0,1703936,0 +k1,19650:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19650:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19652:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19650:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19652:3078558,4812305:0,0,0 -(1,19652:3078558,2439708:0,1703936,0 -g1,19652:29030814,2439708 -g1,19652:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19652:36151628,1915420:16384,1179648,0 +[1,19650:3078558,4812305:0,0,0 +(1,19650:3078558,2439708:0,1703936,0 +g1,19650:29030814,2439708 +g1,19650:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19650:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19652:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19650:37855564,2439708:1179648,16384,0 ) ) -k1,19652:3078556,2439708:-34777008 +k1,19650:3078556,2439708:-34777008 ) ] -[1,19652:3078558,4812305:0,0,0 -(1,19652:3078558,49800853:0,16384,2228224 -k1,19652:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19652:2537886,49800853:1179648,16384,0 +[1,19650:3078558,4812305:0,0,0 +(1,19650:3078558,49800853:0,16384,2228224 +k1,19650:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19650:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19652:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19650:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19652:3078558,4812305:0,0,0 -(1,19652:3078558,49800853:0,16384,2228224 -g1,19652:29030814,49800853 -g1,19652:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19652:36151628,51504789:16384,1179648,0 +[1,19650:3078558,4812305:0,0,0 +(1,19650:3078558,49800853:0,16384,2228224 +g1,19650:29030814,49800853 +g1,19650:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19650:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19652:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19650:37855564,49800853:1179648,16384,0 ) ) -k1,19652:3078556,49800853:-34777008 +k1,19650:3078556,49800853:-34777008 ) ] -g1,19652:6630773,4812305 -k1,19652:21386205,4812305:13560055 -g1,19652:21999622,4812305 -g1,19652:25611966,4812305 -g1,19652:28956923,4812305 -g1,19652:29772190,4812305 +g1,19650:6630773,4812305 +k1,19650:21386205,4812305:13560055 +g1,19650:21999622,4812305 +g1,19650:25611966,4812305 +g1,19650:28956923,4812305 +g1,19650:29772190,4812305 ) ) ] -[1,19652:6630773,45706769:25952256,40108032,0 -(1,19652:6630773,45706769:25952256,40108032,0 -(1,19652:6630773,45706769:0,0,0 -g1,19652:6630773,45706769 +[1,19650:6630773,45706769:25952256,40108032,0 +(1,19650:6630773,45706769:25952256,40108032,0 +(1,19650:6630773,45706769:0,0,0 +g1,19650:6630773,45706769 ) -[1,19652:6630773,45706769:25952256,40108032,0 -(1,19597:6630773,14682403:25952256,9083666,0 -k1,19597:10523651,14682403:3892878 -h1,19596:10523651,14682403:0,0,0 -(1,19596:10523651,14682403:18166500,9083666,0 -(1,19596:10523651,14682403:18167376,9083688,0 -(1,19596:10523651,14682403:18167376,9083688,0 -(1,19596:10523651,14682403:0,9083688,0 -(1,19596:10523651,14682403:0,14208860,0 -(1,19596:10523651,14682403:28417720,14208860,0 +[1,19650:6630773,45706769:25952256,40108032,0 +(1,19595:6630773,14682403:25952256,9083666,0 +k1,19595:10523651,14682403:3892878 +h1,19594:10523651,14682403:0,0,0 +(1,19594:10523651,14682403:18166500,9083666,0 +(1,19594:10523651,14682403:18167376,9083688,0 +(1,19594:10523651,14682403:18167376,9083688,0 +(1,19594:10523651,14682403:0,9083688,0 +(1,19594:10523651,14682403:0,14208860,0 +(1,19594:10523651,14682403:28417720,14208860,0 ) -k1,19596:10523651,14682403:-28417720 -) -) -g1,19596:28691027,14682403 -) -) -) -g1,19597:28690151,14682403 -k1,19597:32583029,14682403:3892878 -) -(1,19604:6630773,15547483:25952256,513147,134348 -h1,19603:6630773,15547483:983040,0,0 -k1,19603:9964480,15547483:232543 -k1,19603:11596873,15547483:232544 -k1,19603:13564809,15547483:232543 -k1,19603:14716168,15547483:232544 -k1,19603:17800838,15547483:232543 -k1,19603:20117427,15547483:232544 -k1,19603:20881467,15547483:232543 -k1,19603:24408505,15547483:232543 -k1,19603:25257087,15547483:232544 -k1,19603:27559257,15547483:232543 -k1,19603:29185752,15547483:232544 -k1,19603:31931601,15547483:232543 -k1,19603:32583029,15547483:0 -) -(1,19604:6630773,16412563:25952256,513147,134348 -g1,19603:8427770,16412563 -g1,19603:9853178,16412563 -g1,19603:10668445,16412563 -g1,19603:12234755,16412563 -g1,19603:13093276,16412563 -g1,19603:15678016,16412563 -g1,19603:17988160,16412563 -g1,19603:18996759,16412563 -g1,19603:19551848,16412563 -g1,19603:23120938,16412563 -k1,19604:32583029,16412563:7791579 -g1,19604:32583029,16412563 -) -v1,19606:6630773,17277643:0,393216,0 -(1,19607:6630773,19438947:25952256,2554520,0 -g1,19607:6630773,19438947 -g1,19607:6237557,19438947 -r1,19652:6368629,19438947:131072,2554520,0 -g1,19607:6567858,19438947 -g1,19607:6764466,19438947 -[1,19607:6764466,19438947:25818563,2554520,0 -(1,19607:6764466,17585941:25818563,701514,196608 -(1,19606:6764466,17585941:0,701514,196608 -r1,19652:7761522,17585941:997056,898122,196608 -k1,19606:6764466,17585941:-997056 -) -(1,19606:6764466,17585941:997056,701514,196608 -) -k1,19606:7952991,17585941:191469 -k1,19606:8280671,17585941:327680 -k1,19606:9668826,17585941:191468 -k1,19606:12867742,17585941:191469 -(1,19606:12867742,17585941:0,452978,122846 -r1,19652:17094838,17585941:4227096,575824,122846 -k1,19606:12867742,17585941:-4227096 -) -(1,19606:12867742,17585941:4227096,452978,122846 -k1,19606:12867742,17585941:3277 -h1,19606:17091561,17585941:0,411205,112570 -) -k1,19606:17286306,17585941:191468 -k1,19606:18900562,17585941:191469 -k1,19606:22117828,17585941:191469 -k1,19606:23876917,17585941:191468 -k1,19606:26648538,17585941:191469 -k1,19606:30097800,17585941:191468 -k1,19606:30940697,17585941:191469 -k1,19606:32583029,17585941:0 -) -(1,19607:6764466,18451021:25818563,513147,134348 -k1,19606:7358312,18451021:237986 -k1,19606:10546072,18451021:237985 -k1,19606:12743584,18451021:237986 -k1,19606:13929220,18451021:237985 -k1,19606:15186291,18451021:237986 -k1,19606:17163603,18451021:237986 -k1,19606:17889137,18451021:237946 -k1,19606:19692778,18451021:237986 -k1,19606:21917159,18451021:237985 -k1,19606:23259427,18451021:237986 -k1,19606:24245179,18451021:237986 -k1,19606:26688451,18451021:237985 -k1,19606:27612599,18451021:237986 -k1,19606:28621287,18451021:237985 -k1,19606:31931601,18451021:237986 -k1,19607:32583029,18451021:0 -) -(1,19607:6764466,19316101:25818563,452978,122846 -(1,19606:6764466,19316101:0,452978,122846 -r1,19652:10991562,19316101:4227096,575824,122846 -k1,19606:6764466,19316101:-4227096 -) -(1,19606:6764466,19316101:4227096,452978,122846 -k1,19606:6764466,19316101:3277 -h1,19606:10988285,19316101:0,411205,112570 -) -k1,19607:32583030,19316101:21539040 -g1,19607:32583030,19316101 -) -] -g1,19607:32583029,19438947 -) -h1,19607:6630773,19438947:0,0,0 -(1,19612:6630773,20304027:25952256,505283,134348 -h1,19611:6630773,20304027:983040,0,0 -k1,19611:11052457,20304027:343379 -(1,19611:11052457,20304027:0,452978,122846 -r1,19652:14927841,20304027:3875384,575824,122846 -k1,19611:11052457,20304027:-3875384 -) -(1,19611:11052457,20304027:3875384,452978,122846 -k1,19611:11052457,20304027:3277 -h1,19611:14924564,20304027:0,411205,112570 -) -k1,19611:15271221,20304027:343380 -k1,19611:17541358,20304027:343379 -k1,19611:20652978,20304027:343379 -k1,19611:21647786,20304027:343380 -(1,19611:21647786,20304027:0,452978,122846 -r1,19652:25874882,20304027:4227096,575824,122846 -k1,19611:21647786,20304027:-4227096 -) -(1,19611:21647786,20304027:4227096,452978,122846 -k1,19611:21647786,20304027:3277 -h1,19611:25871605,20304027:0,411205,112570 -) -k1,19611:26218261,20304027:343379 -k1,19611:27633809,20304027:343379 -k1,19611:29858072,20304027:343380 -k1,19611:30557311,20304027:343379 -k1,19611:32583029,20304027:0 -) -(1,19612:6630773,21169107:25952256,513147,134348 -k1,19611:8849268,21169107:234720 -k1,19611:11556661,21169107:234720 -k1,19611:13990768,21169107:234719 -k1,19611:15993649,21169107:234720 -k1,19611:18555552,21169107:234720 -k1,19611:19449564,21169107:234720 -k1,19611:22745470,21169107:234719 -k1,19611:23336050,21169107:234720 -k1,19611:24564296,21169107:234720 -k1,19611:25458308,21169107:234720 -k1,19611:27082390,21169107:234719 -k1,19611:29523707,21169107:234720 -k1,19611:30441312,21169107:234720 -k1,19611:32583029,21169107:0 -) -(1,19612:6630773,22034187:25952256,513147,134348 -k1,19611:7498760,22034187:216559 -k1,19611:8463086,22034187:216560 -k1,19611:11265040,22034187:216559 -k1,19611:12133028,22034187:216560 -k1,19611:13368672,22034187:216559 -(1,19611:13368672,22034187:0,452978,115847 -r1,19652:15133785,22034187:1765113,568825,115847 -k1,19611:13368672,22034187:-1765113 -) -(1,19611:13368672,22034187:1765113,452978,115847 -k1,19611:13368672,22034187:3277 -h1,19611:15130508,22034187:0,411205,112570 -) -k1,19611:15350344,22034187:216559 -k1,19611:18915138,22034187:216560 -k1,19611:19589794,22034187:216559 -k1,19611:22207593,22034187:216560 -k1,19611:22780012,22034187:216559 -k1,19611:23990097,22034187:216559 -k1,19611:24865949,22034187:216560 -k1,19611:27438527,22034187:216559 -k1,19611:30152009,22034187:216560 -k1,19611:31027860,22034187:216559 -k1,19612:32583029,22034187:0 -) -(1,19612:6630773,22899267:25952256,513147,134348 -(1,19611:6630773,22899267:0,414482,122846 -r1,19652:7340751,22899267:709978,537328,122846 -k1,19611:6630773,22899267:-709978 -) -(1,19611:6630773,22899267:709978,414482,122846 -k1,19611:6630773,22899267:3277 -h1,19611:7337474,22899267:0,411205,112570 -) -k1,19611:7895048,22899267:173533 -k1,19611:9630960,22899267:173534 -k1,19611:11412091,22899267:173533 -k1,19611:12689907,22899267:173534 -k1,19611:13611206,22899267:173533 -k1,19611:15138714,22899267:173534 -k1,19611:17289468,22899267:173533 -k1,19611:18410652,22899267:173533 -k1,19611:22202429,22899267:173534 -k1,19611:23185332,22899267:173533 -k1,19611:25011029,22899267:173534 -k1,19611:25843854,22899267:173533 -k1,19611:26373248,22899267:173534 -k1,19611:28138651,22899267:173533 -k1,19611:29589482,22899267:173534 -k1,19611:31681909,22899267:173533 -k1,19612:32583029,22899267:0 -) -(1,19612:6630773,23764347:25952256,513147,134348 -k1,19611:10134589,23764347:227016 -k1,19611:11353166,23764347:227017 -k1,19611:14306480,23764347:227016 -k1,19611:15724942,23764347:227017 -k1,19611:16899609,23764347:227016 -k1,19611:20411945,23764347:227016 -k1,19611:24147104,23764347:227017 -k1,19611:26228789,23764347:227016 -k1,19611:27265176,23764347:227017 -k1,19611:28511277,23764347:227016 -k1,19611:32583029,23764347:0 -) -(1,19612:6630773,24629427:25952256,505283,126483 -k1,19611:8946714,24629427:240416 -k1,19611:9803168,24629427:240416 -k1,19611:11062670,24629427:240417 -k1,19611:12894956,24629427:240416 -k1,19611:14586339,24629427:240416 -k1,19611:16023442,24629427:240416 -k1,19611:17814441,24629427:240417 -k1,19611:19662455,24629427:240416 -k1,19611:20894431,24629427:240416 -k1,19611:23252315,24629427:240416 -k1,19611:24108770,24629427:240417 -k1,19611:27466734,24629427:240416 -k1,19611:29592621,24629427:240416 -k1,19611:32583029,24629427:0 -) -(1,19612:6630773,25494507:25952256,513147,126483 -k1,19611:7888661,25494507:238803 -k1,19611:11802723,25494507:238803 -k1,19611:12700818,25494507:238803 -k1,19611:13958706,25494507:238803 -k1,19611:15748091,25494507:238803 -k1,19611:17437861,25494507:238803 -k1,19611:20982955,25494507:238803 -(1,19611:20982955,25494507:0,452978,122846 -r1,19652:24154915,25494507:3171960,575824,122846 -k1,19611:20982955,25494507:-3171960 -) -(1,19611:20982955,25494507:3171960,452978,122846 -k1,19611:20982955,25494507:3277 -h1,19611:24151638,25494507:0,411205,112570 -) -k1,19611:24393718,25494507:238803 -k1,19611:25823966,25494507:238803 -(1,19611:25823966,25494507:0,452978,115847 -r1,19652:28644215,25494507:2820249,568825,115847 -k1,19611:25823966,25494507:-2820249 -) -(1,19611:25823966,25494507:2820249,452978,115847 -k1,19611:25823966,25494507:3277 -h1,19611:28640938,25494507:0,411205,112570 -) -k1,19611:28883018,25494507:238803 -k1,19611:30056364,25494507:238803 -k1,19611:31314252,25494507:238803 -k1,19611:32583029,25494507:0 -) -(1,19612:6630773,26359587:25952256,513147,134348 -k1,19611:7466872,26359587:176807 -k1,19611:8662763,26359587:176806 -k1,19611:14006428,26359587:176807 -k1,19611:16779116,26359587:176807 -k1,19611:17615215,26359587:176807 -k1,19611:18924483,26359587:176806 -k1,19611:19760582,26359587:176807 -k1,19611:20956474,26359587:176807 -k1,19611:23142614,26359587:176806 -k1,19611:24510866,26359587:176807 -k1,19611:26502365,26359587:176807 -k1,19611:27338464,26359587:176807 -k1,19611:28534355,26359587:176806 -k1,19611:31235609,26359587:176807 -k1,19611:32583029,26359587:0 -) -(1,19612:6630773,27224667:25952256,513147,126483 -g1,19611:7489294,27224667 -g1,19611:8707608,27224667 -g1,19611:10498707,27224667 -g1,19611:12148903,27224667 -g1,19611:14842432,27224667 -g1,19611:16145943,27224667 -g1,19611:17092938,27224667 -g1,19611:19663915,27224667 -g1,19611:23132080,27224667 -g1,19611:23982737,27224667 -g1,19611:25201051,27224667 -g1,19611:26992150,27224667 -g1,19611:28382824,27224667 -g1,19611:30132635,27224667 -k1,19612:32583029,27224667:790367 -g1,19612:32583029,27224667 -) -(1,19614:6630773,28089747:25952256,513147,126483 -h1,19613:6630773,28089747:983040,0,0 -k1,19613:8446261,28089747:204613 -k1,19613:9669958,28089747:204612 -k1,19613:11180704,28089747:204613 -k1,19613:14046734,28089747:204613 -k1,19613:14910639,28089747:204613 -k1,19613:16665833,28089747:204612 -k1,19613:18651715,28089747:204613 -k1,19613:19875413,28089747:204613 -k1,19613:23588167,28089747:204612 -k1,19613:25868305,28089747:204613 -k1,19613:27928242,28089747:204613 -k1,19613:28819017,28089747:204613 -k1,19613:29379489,28089747:204612 -k1,19613:31966991,28089747:204613 -k1,19613:32583029,28089747:0 -) -(1,19614:6630773,28954827:25952256,505283,134348 -k1,19613:7852651,28954827:202793 -k1,19613:9606026,28954827:202793 -k1,19613:11374474,28954827:202793 -k1,19613:12568827,28954827:202793 -k1,19613:14322201,28954827:202792 -k1,19613:15211156,28954827:202793 -k1,19613:15769809,28954827:202793 -k1,19613:18355491,28954827:202793 -k1,19613:20009251,28954827:202793 -k1,19613:22141424,28954827:202793 -k1,19613:22700077,28954827:202793 -k1,19613:24714285,28954827:202793 -k1,19613:28279074,28954827:202792 -k1,19613:29500952,28954827:202793 -k1,19613:30981042,28954827:202793 -k1,19613:31835263,28954827:202793 -k1,19613:32583029,28954827:0 -) -(1,19614:6630773,29819907:25952256,473825,7863 -k1,19614:32583029,29819907:24349246 -g1,19614:32583029,29819907 -) -v1,19616:6630773,30504762:0,393216,0 -(1,19629:6630773,37002534:25952256,6890988,196608 -g1,19629:6630773,37002534 -g1,19629:6630773,37002534 -g1,19629:6434165,37002534 -(1,19629:6434165,37002534:0,6890988,196608 -r1,19652:32779637,37002534:26345472,7087596,196608 -k1,19629:6434165,37002534:-26345472 -) -(1,19629:6434165,37002534:26345472,6890988,196608 -[1,19629:6630773,37002534:25952256,6694380,0 -(1,19618:6630773,30732593:25952256,424439,79822 -(1,19617:6630773,30732593:0,0,0 -g1,19617:6630773,30732593 -g1,19617:6630773,30732593 -g1,19617:6303093,30732593 -(1,19617:6303093,30732593:0,0,0 -) -g1,19617:6630773,30732593 -) -g1,19618:8954451,30732593 -k1,19618:8954451,30732593:0 -h1,19618:9618359,30732593:0,0,0 -k1,19618:32583029,30732593:22964670 -g1,19618:32583029,30732593 -) -(1,19619:6630773,31417448:25952256,424439,112852 -h1,19619:6630773,31417448:0,0,0 -g1,19619:6962727,31417448 -g1,19619:7294681,31417448 -g1,19619:11942036,31417448 -k1,19619:11942036,31417448:0 -h1,19619:12605944,31417448:0,0,0 -k1,19619:32583028,31417448:19977084 -g1,19619:32583028,31417448 -) -(1,19620:6630773,32102303:25952256,424439,112852 -h1,19620:6630773,32102303:0,0,0 -g1,19620:6962727,32102303 -g1,19620:7294681,32102303 -g1,19620:13601805,32102303 -g1,19620:14265713,32102303 -g1,19620:17917207,32102303 -k1,19620:17917207,32102303:0 -h1,19620:18581115,32102303:0,0,0 -k1,19620:32583029,32102303:14001914 -g1,19620:32583029,32102303 -) -(1,19621:6630773,32787158:25952256,424439,112852 -h1,19621:6630773,32787158:0,0,0 -g1,19621:6962727,32787158 -g1,19621:7294681,32787158 -g1,19621:11278129,32787158 -g1,19621:11942037,32787158 -k1,19621:11942037,32787158:0 -h1,19621:12605945,32787158:0,0,0 -k1,19621:32583029,32787158:19977084 -g1,19621:32583029,32787158 -) -(1,19622:6630773,33472013:25952256,431045,112852 -h1,19622:6630773,33472013:0,0,0 -g1,19622:6962727,33472013 -g1,19622:7294681,33472013 -g1,19622:7626635,33472013 -g1,19622:7958589,33472013 -g1,19622:8290543,33472013 -g1,19622:8622497,33472013 -g1,19622:8954451,33472013 -g1,19622:9286405,33472013 -g1,19622:9618359,33472013 -g1,19622:12273991,33472013 -g1,19622:12937899,33472013 -g1,19622:18581117,33472013 -g1,19622:21900656,33472013 -g1,19622:23560426,33472013 -g1,19622:24224334,33472013 -g1,19622:28871690,33472013 -h1,19622:29203644,33472013:0,0,0 -k1,19622:32583029,33472013:3379385 -g1,19622:32583029,33472013 -) -(1,19623:6630773,34156868:25952256,431045,112852 -h1,19623:6630773,34156868:0,0,0 -g1,19623:6962727,34156868 -g1,19623:7294681,34156868 -g1,19623:15925483,34156868 -g1,19623:16589391,34156868 -g1,19623:19245023,34156868 -h1,19623:19576977,34156868:0,0,0 -k1,19623:32583029,34156868:13006052 -g1,19623:32583029,34156868 -) -(1,19624:6630773,34841723:25952256,424439,106246 -h1,19624:6630773,34841723:0,0,0 -g1,19624:6962727,34841723 -g1,19624:7294681,34841723 -g1,19624:15261576,34841723 -g1,19624:15925484,34841723 -g1,19624:17917208,34841723 -h1,19624:18249162,34841723:0,0,0 -k1,19624:32583029,34841723:14333867 -g1,19624:32583029,34841723 -) -(1,19625:6630773,35526578:25952256,424439,112852 -h1,19625:6630773,35526578:0,0,0 -g1,19625:6962727,35526578 -g1,19625:7294681,35526578 -g1,19625:7626635,35526578 -g1,19625:7958589,35526578 -g1,19625:11610082,35526578 -h1,19625:11942036,35526578:0,0,0 -k1,19625:32583028,35526578:20640992 -g1,19625:32583028,35526578 -) -(1,19626:6630773,36211433:25952256,424439,106246 -h1,19626:6630773,36211433:0,0,0 -g1,19626:6962727,36211433 -g1,19626:7294681,36211433 -g1,19626:7626635,36211433 -g1,19626:7958589,36211433 -g1,19626:11942036,36211433 -g1,19626:12937898,36211433 -h1,19626:15261576,36211433:0,0,0 -k1,19626:32583028,36211433:17321452 -g1,19626:32583028,36211433 -) -(1,19627:6630773,36896288:25952256,424439,106246 -h1,19627:6630773,36896288:0,0,0 -g1,19627:9286405,36896288 -g1,19627:10282267,36896288 -g1,19627:13269853,36896288 -g1,19627:13933761,36896288 -g1,19627:15593531,36896288 -g1,19627:16257439,36896288 -g1,19627:16921347,36896288 -g1,19627:18249163,36896288 -g1,19627:21900656,36896288 -g1,19627:22564564,36896288 -k1,19627:22564564,36896288:0 -h1,19627:27211919,36896288:0,0,0 -k1,19627:32583029,36896288:5371110 -g1,19627:32583029,36896288 -) -] -) -g1,19629:32583029,37002534 -g1,19629:6630773,37002534 -g1,19629:6630773,37002534 -g1,19629:32583029,37002534 -g1,19629:32583029,37002534 -) -h1,19629:6630773,37199142:0,0,0 -v1,19633:6630773,37883997:0,393216,0 -(1,19643:6630773,42333810:25952256,4843029,196608 -g1,19643:6630773,42333810 -g1,19643:6630773,42333810 -g1,19643:6434165,42333810 -(1,19643:6434165,42333810:0,4843029,196608 -r1,19652:32779637,42333810:26345472,5039637,196608 -k1,19643:6434165,42333810:-26345472 -) -(1,19643:6434165,42333810:26345472,4843029,196608 -[1,19643:6630773,42333810:25952256,4646421,0 -(1,19635:6630773,38111828:25952256,424439,112852 -(1,19634:6630773,38111828:0,0,0 -g1,19634:6630773,38111828 -g1,19634:6630773,38111828 -g1,19634:6303093,38111828 -(1,19634:6303093,38111828:0,0,0 -) -g1,19634:6630773,38111828 -) -k1,19635:6630773,38111828:0 -g1,19635:10614221,38111828 -g1,19635:11278129,38111828 -k1,19635:11278129,38111828:0 -h1,19635:13601807,38111828:0,0,0 -k1,19635:32583029,38111828:18981222 -g1,19635:32583029,38111828 -) -(1,19636:6630773,38796683:25952256,431045,112852 -h1,19636:6630773,38796683:0,0,0 -g1,19636:6962727,38796683 -g1,19636:7294681,38796683 -g1,19636:7626635,38796683 -g1,19636:7958589,38796683 -g1,19636:8290543,38796683 -g1,19636:8622497,38796683 -g1,19636:8954451,38796683 -g1,19636:11610083,38796683 -g1,19636:12273991,38796683 -g1,19636:14265715,38796683 -g1,19636:14929623,38796683 -g1,19636:16921347,38796683 -g1,19636:17585255,38796683 -g1,19636:18249163,38796683 -g1,19636:19908933,38796683 -g1,19636:22232611,38796683 -g1,19636:22896519,38796683 -g1,19636:27543875,38796683 -h1,19636:27875829,38796683:0,0,0 -k1,19636:32583029,38796683:4707200 -g1,19636:32583029,38796683 -) -(1,19637:6630773,39481538:25952256,424439,112852 -h1,19637:6630773,39481538:0,0,0 -g1,19637:6962727,39481538 -g1,19637:7294681,39481538 -g1,19637:11610082,39481538 -h1,19637:11942036,39481538:0,0,0 -k1,19637:32583028,39481538:20640992 -g1,19637:32583028,39481538 -) -(1,19638:6630773,40166393:25952256,424439,112852 -h1,19638:6630773,40166393:0,0,0 -g1,19638:6962727,40166393 -g1,19638:7294681,40166393 -g1,19638:12273990,40166393 -g1,19638:12937898,40166393 -k1,19638:12937898,40166393:0 -h1,19638:15593530,40166393:0,0,0 -k1,19638:32583030,40166393:16989500 -g1,19638:32583030,40166393 -) -(1,19639:6630773,40851248:25952256,424439,106246 -h1,19639:6630773,40851248:0,0,0 -g1,19639:6962727,40851248 -g1,19639:7294681,40851248 -g1,19639:7626635,40851248 -g1,19639:7958589,40851248 -g1,19639:8290543,40851248 -g1,19639:8622497,40851248 -g1,19639:8954451,40851248 -g1,19639:9286405,40851248 -g1,19639:9618359,40851248 -g1,19639:9950313,40851248 -g1,19639:10282267,40851248 -g1,19639:10614221,40851248 -g1,19639:12605945,40851248 -g1,19639:13269853,40851248 -g1,19639:14265715,40851248 -g1,19639:14929623,40851248 -g1,19639:15593531,40851248 -g1,19639:16589393,40851248 -g1,19639:18581117,40851248 -g1,19639:19245025,40851248 -k1,19639:19245025,40851248:0 -h1,19639:23228472,40851248:0,0,0 -k1,19639:32583029,40851248:9354557 -g1,19639:32583029,40851248 -) -(1,19640:6630773,41536103:25952256,424439,106246 -h1,19640:6630773,41536103:0,0,0 -g1,19640:6962727,41536103 -g1,19640:7294681,41536103 -g1,19640:7626635,41536103 -g1,19640:7958589,41536103 -g1,19640:8290543,41536103 -g1,19640:8622497,41536103 -g1,19640:8954451,41536103 -g1,19640:9286405,41536103 -g1,19640:9618359,41536103 -g1,19640:9950313,41536103 -g1,19640:10282267,41536103 -g1,19640:10614221,41536103 -g1,19640:13601806,41536103 -g1,19640:14265714,41536103 -k1,19640:14265714,41536103:0 -h1,19640:15593530,41536103:0,0,0 -k1,19640:32583030,41536103:16989500 -g1,19640:32583030,41536103 -) -(1,19641:6630773,42220958:25952256,424439,112852 -h1,19641:6630773,42220958:0,0,0 -g1,19641:6962727,42220958 -g1,19641:7294681,42220958 -g1,19641:7626635,42220958 -g1,19641:7958589,42220958 -g1,19641:8290543,42220958 -g1,19641:8622497,42220958 -g1,19641:8954451,42220958 -g1,19641:9286405,42220958 -g1,19641:9618359,42220958 -g1,19641:9950313,42220958 -g1,19641:10282267,42220958 -g1,19641:10614221,42220958 -g1,19641:12605945,42220958 -g1,19641:13269853,42220958 -g1,19641:16589392,42220958 -g1,19641:18581116,42220958 -g1,19641:19245024,42220958 -h1,19641:22232609,42220958:0,0,0 -k1,19641:32583029,42220958:10350420 -g1,19641:32583029,42220958 -) -] -) -g1,19643:32583029,42333810 -g1,19643:6630773,42333810 -g1,19643:6630773,42333810 -g1,19643:32583029,42333810 -g1,19643:32583029,42333810 -) -h1,19643:6630773,42530418:0,0,0 -] -(1,19652:32583029,45706769:0,0,0 -g1,19652:32583029,45706769 -) -) -] -(1,19652:6630773,47279633:25952256,0,0 -h1,19652:6630773,47279633:25952256,0,0 -) -] -(1,19652:4262630,4025873:0,0,0 -[1,19652:-473656,4025873:0,0,0 -(1,19652:-473656,-710413:0,0,0 -(1,19652:-473656,-710413:0,0,0 -g1,19652:-473656,-710413 -) -g1,19652:-473656,-710413 +k1,19594:10523651,14682403:-28417720 +) +) +g1,19594:28691027,14682403 +) +) +) +g1,19595:28690151,14682403 +k1,19595:32583029,14682403:3892878 +) +(1,19602:6630773,15547483:25952256,513147,134348 +h1,19601:6630773,15547483:983040,0,0 +k1,19601:9964480,15547483:232543 +k1,19601:11596873,15547483:232544 +k1,19601:13564809,15547483:232543 +k1,19601:14716168,15547483:232544 +k1,19601:17800838,15547483:232543 +k1,19601:20117427,15547483:232544 +k1,19601:20881467,15547483:232543 +k1,19601:24408505,15547483:232543 +k1,19601:25257087,15547483:232544 +k1,19601:27559257,15547483:232543 +k1,19601:29185752,15547483:232544 +k1,19601:31931601,15547483:232543 +k1,19601:32583029,15547483:0 +) +(1,19602:6630773,16412563:25952256,513147,134348 +g1,19601:8427770,16412563 +g1,19601:9853178,16412563 +g1,19601:10668445,16412563 +g1,19601:12234755,16412563 +g1,19601:13093276,16412563 +g1,19601:15678016,16412563 +g1,19601:17988160,16412563 +g1,19601:18996759,16412563 +g1,19601:19551848,16412563 +g1,19601:23120938,16412563 +k1,19602:32583029,16412563:7791579 +g1,19602:32583029,16412563 +) +v1,19604:6630773,17277643:0,393216,0 +(1,19605:6630773,19438947:25952256,2554520,0 +g1,19605:6630773,19438947 +g1,19605:6237557,19438947 +r1,19650:6368629,19438947:131072,2554520,0 +g1,19605:6567858,19438947 +g1,19605:6764466,19438947 +[1,19605:6764466,19438947:25818563,2554520,0 +(1,19605:6764466,17585941:25818563,701514,196608 +(1,19604:6764466,17585941:0,701514,196608 +r1,19650:7761522,17585941:997056,898122,196608 +k1,19604:6764466,17585941:-997056 +) +(1,19604:6764466,17585941:997056,701514,196608 +) +k1,19604:7952991,17585941:191469 +k1,19604:8280671,17585941:327680 +k1,19604:9668826,17585941:191468 +k1,19604:12867742,17585941:191469 +(1,19604:12867742,17585941:0,452978,122846 +r1,19650:17094838,17585941:4227096,575824,122846 +k1,19604:12867742,17585941:-4227096 +) +(1,19604:12867742,17585941:4227096,452978,122846 +k1,19604:12867742,17585941:3277 +h1,19604:17091561,17585941:0,411205,112570 +) +k1,19604:17286306,17585941:191468 +k1,19604:18900562,17585941:191469 +k1,19604:22117828,17585941:191469 +k1,19604:23876917,17585941:191468 +k1,19604:26648538,17585941:191469 +k1,19604:30097800,17585941:191468 +k1,19604:30940697,17585941:191469 +k1,19604:32583029,17585941:0 +) +(1,19605:6764466,18451021:25818563,513147,134348 +k1,19604:7358312,18451021:237986 +k1,19604:10546072,18451021:237985 +k1,19604:12743584,18451021:237986 +k1,19604:13929220,18451021:237985 +k1,19604:15186291,18451021:237986 +k1,19604:17163603,18451021:237986 +k1,19604:17889137,18451021:237946 +k1,19604:19692778,18451021:237986 +k1,19604:21917159,18451021:237985 +k1,19604:23259427,18451021:237986 +k1,19604:24245179,18451021:237986 +k1,19604:26688451,18451021:237985 +k1,19604:27612599,18451021:237986 +k1,19604:28621287,18451021:237985 +k1,19604:31931601,18451021:237986 +k1,19605:32583029,18451021:0 +) +(1,19605:6764466,19316101:25818563,452978,122846 +(1,19604:6764466,19316101:0,452978,122846 +r1,19650:10991562,19316101:4227096,575824,122846 +k1,19604:6764466,19316101:-4227096 +) +(1,19604:6764466,19316101:4227096,452978,122846 +k1,19604:6764466,19316101:3277 +h1,19604:10988285,19316101:0,411205,112570 +) +k1,19605:32583030,19316101:21539040 +g1,19605:32583030,19316101 +) +] +g1,19605:32583029,19438947 +) +h1,19605:6630773,19438947:0,0,0 +(1,19610:6630773,20304027:25952256,505283,134348 +h1,19609:6630773,20304027:983040,0,0 +k1,19609:11052457,20304027:343379 +(1,19609:11052457,20304027:0,452978,122846 +r1,19650:14927841,20304027:3875384,575824,122846 +k1,19609:11052457,20304027:-3875384 +) +(1,19609:11052457,20304027:3875384,452978,122846 +k1,19609:11052457,20304027:3277 +h1,19609:14924564,20304027:0,411205,112570 +) +k1,19609:15271221,20304027:343380 +k1,19609:17541358,20304027:343379 +k1,19609:20652978,20304027:343379 +k1,19609:21647786,20304027:343380 +(1,19609:21647786,20304027:0,452978,122846 +r1,19650:25874882,20304027:4227096,575824,122846 +k1,19609:21647786,20304027:-4227096 +) +(1,19609:21647786,20304027:4227096,452978,122846 +k1,19609:21647786,20304027:3277 +h1,19609:25871605,20304027:0,411205,112570 +) +k1,19609:26218261,20304027:343379 +k1,19609:27633809,20304027:343379 +k1,19609:29858072,20304027:343380 +k1,19609:30557311,20304027:343379 +k1,19609:32583029,20304027:0 +) +(1,19610:6630773,21169107:25952256,513147,134348 +k1,19609:8849268,21169107:234720 +k1,19609:11556661,21169107:234720 +k1,19609:13990768,21169107:234719 +k1,19609:15993649,21169107:234720 +k1,19609:18555552,21169107:234720 +k1,19609:19449564,21169107:234720 +k1,19609:22745470,21169107:234719 +k1,19609:23336050,21169107:234720 +k1,19609:24564296,21169107:234720 +k1,19609:25458308,21169107:234720 +k1,19609:27082390,21169107:234719 +k1,19609:29523707,21169107:234720 +k1,19609:30441312,21169107:234720 +k1,19609:32583029,21169107:0 +) +(1,19610:6630773,22034187:25952256,513147,134348 +k1,19609:7498760,22034187:216559 +k1,19609:8463086,22034187:216560 +k1,19609:11265040,22034187:216559 +k1,19609:12133028,22034187:216560 +k1,19609:13368672,22034187:216559 +(1,19609:13368672,22034187:0,452978,115847 +r1,19650:15133785,22034187:1765113,568825,115847 +k1,19609:13368672,22034187:-1765113 +) +(1,19609:13368672,22034187:1765113,452978,115847 +k1,19609:13368672,22034187:3277 +h1,19609:15130508,22034187:0,411205,112570 +) +k1,19609:15350344,22034187:216559 +k1,19609:18915138,22034187:216560 +k1,19609:19589794,22034187:216559 +k1,19609:22207593,22034187:216560 +k1,19609:22780012,22034187:216559 +k1,19609:23990097,22034187:216559 +k1,19609:24865949,22034187:216560 +k1,19609:27438527,22034187:216559 +k1,19609:30152009,22034187:216560 +k1,19609:31027860,22034187:216559 +k1,19610:32583029,22034187:0 +) +(1,19610:6630773,22899267:25952256,513147,134348 +(1,19609:6630773,22899267:0,414482,122846 +r1,19650:7340751,22899267:709978,537328,122846 +k1,19609:6630773,22899267:-709978 +) +(1,19609:6630773,22899267:709978,414482,122846 +k1,19609:6630773,22899267:3277 +h1,19609:7337474,22899267:0,411205,112570 +) +k1,19609:7895048,22899267:173533 +k1,19609:9630960,22899267:173534 +k1,19609:11412091,22899267:173533 +k1,19609:12689907,22899267:173534 +k1,19609:13611206,22899267:173533 +k1,19609:15138714,22899267:173534 +k1,19609:17289468,22899267:173533 +k1,19609:18410652,22899267:173533 +k1,19609:22202429,22899267:173534 +k1,19609:23185332,22899267:173533 +k1,19609:25011029,22899267:173534 +k1,19609:25843854,22899267:173533 +k1,19609:26373248,22899267:173534 +k1,19609:28138651,22899267:173533 +k1,19609:29589482,22899267:173534 +k1,19609:31681909,22899267:173533 +k1,19610:32583029,22899267:0 +) +(1,19610:6630773,23764347:25952256,513147,134348 +k1,19609:10134589,23764347:227016 +k1,19609:11353166,23764347:227017 +k1,19609:14306480,23764347:227016 +k1,19609:15724942,23764347:227017 +k1,19609:16899609,23764347:227016 +k1,19609:20411945,23764347:227016 +k1,19609:24147104,23764347:227017 +k1,19609:26228789,23764347:227016 +k1,19609:27265176,23764347:227017 +k1,19609:28511277,23764347:227016 +k1,19609:32583029,23764347:0 +) +(1,19610:6630773,24629427:25952256,505283,126483 +k1,19609:8946714,24629427:240416 +k1,19609:9803168,24629427:240416 +k1,19609:11062670,24629427:240417 +k1,19609:12894956,24629427:240416 +k1,19609:14586339,24629427:240416 +k1,19609:16023442,24629427:240416 +k1,19609:17814441,24629427:240417 +k1,19609:19662455,24629427:240416 +k1,19609:20894431,24629427:240416 +k1,19609:23252315,24629427:240416 +k1,19609:24108770,24629427:240417 +k1,19609:27466734,24629427:240416 +k1,19609:29592621,24629427:240416 +k1,19609:32583029,24629427:0 +) +(1,19610:6630773,25494507:25952256,513147,126483 +k1,19609:7888661,25494507:238803 +k1,19609:11802723,25494507:238803 +k1,19609:12700818,25494507:238803 +k1,19609:13958706,25494507:238803 +k1,19609:15748091,25494507:238803 +k1,19609:17437861,25494507:238803 +k1,19609:20982955,25494507:238803 +(1,19609:20982955,25494507:0,452978,122846 +r1,19650:24154915,25494507:3171960,575824,122846 +k1,19609:20982955,25494507:-3171960 +) +(1,19609:20982955,25494507:3171960,452978,122846 +k1,19609:20982955,25494507:3277 +h1,19609:24151638,25494507:0,411205,112570 +) +k1,19609:24393718,25494507:238803 +k1,19609:25823966,25494507:238803 +(1,19609:25823966,25494507:0,452978,115847 +r1,19650:28644215,25494507:2820249,568825,115847 +k1,19609:25823966,25494507:-2820249 +) +(1,19609:25823966,25494507:2820249,452978,115847 +k1,19609:25823966,25494507:3277 +h1,19609:28640938,25494507:0,411205,112570 +) +k1,19609:28883018,25494507:238803 +k1,19609:30056364,25494507:238803 +k1,19609:31314252,25494507:238803 +k1,19609:32583029,25494507:0 +) +(1,19610:6630773,26359587:25952256,513147,134348 +k1,19609:7466872,26359587:176807 +k1,19609:8662763,26359587:176806 +k1,19609:14006428,26359587:176807 +k1,19609:16779116,26359587:176807 +k1,19609:17615215,26359587:176807 +k1,19609:18924483,26359587:176806 +k1,19609:19760582,26359587:176807 +k1,19609:20956474,26359587:176807 +k1,19609:23142614,26359587:176806 +k1,19609:24510866,26359587:176807 +k1,19609:26502365,26359587:176807 +k1,19609:27338464,26359587:176807 +k1,19609:28534355,26359587:176806 +k1,19609:31235609,26359587:176807 +k1,19609:32583029,26359587:0 +) +(1,19610:6630773,27224667:25952256,513147,126483 +g1,19609:7489294,27224667 +g1,19609:8707608,27224667 +g1,19609:10498707,27224667 +g1,19609:12148903,27224667 +g1,19609:14842432,27224667 +g1,19609:16145943,27224667 +g1,19609:17092938,27224667 +g1,19609:19663915,27224667 +g1,19609:23132080,27224667 +g1,19609:23982737,27224667 +g1,19609:25201051,27224667 +g1,19609:26992150,27224667 +g1,19609:28382824,27224667 +g1,19609:30132635,27224667 +k1,19610:32583029,27224667:790367 +g1,19610:32583029,27224667 +) +(1,19612:6630773,28089747:25952256,513147,126483 +h1,19611:6630773,28089747:983040,0,0 +k1,19611:8446261,28089747:204613 +k1,19611:9669958,28089747:204612 +k1,19611:11180704,28089747:204613 +k1,19611:14046734,28089747:204613 +k1,19611:14910639,28089747:204613 +k1,19611:16665833,28089747:204612 +k1,19611:18651715,28089747:204613 +k1,19611:19875413,28089747:204613 +k1,19611:23588167,28089747:204612 +k1,19611:25868305,28089747:204613 +k1,19611:27928242,28089747:204613 +k1,19611:28819017,28089747:204613 +k1,19611:29379489,28089747:204612 +k1,19611:31966991,28089747:204613 +k1,19611:32583029,28089747:0 +) +(1,19612:6630773,28954827:25952256,505283,134348 +k1,19611:7852651,28954827:202793 +k1,19611:9606026,28954827:202793 +k1,19611:11374474,28954827:202793 +k1,19611:12568827,28954827:202793 +k1,19611:14322201,28954827:202792 +k1,19611:15211156,28954827:202793 +k1,19611:15769809,28954827:202793 +k1,19611:18355491,28954827:202793 +k1,19611:20009251,28954827:202793 +k1,19611:22141424,28954827:202793 +k1,19611:22700077,28954827:202793 +k1,19611:24714285,28954827:202793 +k1,19611:28279074,28954827:202792 +k1,19611:29500952,28954827:202793 +k1,19611:30981042,28954827:202793 +k1,19611:31835263,28954827:202793 +k1,19611:32583029,28954827:0 +) +(1,19612:6630773,29819907:25952256,473825,7863 +k1,19612:32583029,29819907:24349246 +g1,19612:32583029,29819907 +) +v1,19614:6630773,30504762:0,393216,0 +(1,19627:6630773,37002534:25952256,6890988,196608 +g1,19627:6630773,37002534 +g1,19627:6630773,37002534 +g1,19627:6434165,37002534 +(1,19627:6434165,37002534:0,6890988,196608 +r1,19650:32779637,37002534:26345472,7087596,196608 +k1,19627:6434165,37002534:-26345472 +) +(1,19627:6434165,37002534:26345472,6890988,196608 +[1,19627:6630773,37002534:25952256,6694380,0 +(1,19616:6630773,30732593:25952256,424439,79822 +(1,19615:6630773,30732593:0,0,0 +g1,19615:6630773,30732593 +g1,19615:6630773,30732593 +g1,19615:6303093,30732593 +(1,19615:6303093,30732593:0,0,0 +) +g1,19615:6630773,30732593 +) +g1,19616:8954451,30732593 +k1,19616:8954451,30732593:0 +h1,19616:9618359,30732593:0,0,0 +k1,19616:32583029,30732593:22964670 +g1,19616:32583029,30732593 +) +(1,19617:6630773,31417448:25952256,424439,112852 +h1,19617:6630773,31417448:0,0,0 +g1,19617:6962727,31417448 +g1,19617:7294681,31417448 +g1,19617:11942036,31417448 +k1,19617:11942036,31417448:0 +h1,19617:12605944,31417448:0,0,0 +k1,19617:32583028,31417448:19977084 +g1,19617:32583028,31417448 +) +(1,19618:6630773,32102303:25952256,424439,112852 +h1,19618:6630773,32102303:0,0,0 +g1,19618:6962727,32102303 +g1,19618:7294681,32102303 +g1,19618:13601805,32102303 +g1,19618:14265713,32102303 +g1,19618:17917207,32102303 +k1,19618:17917207,32102303:0 +h1,19618:18581115,32102303:0,0,0 +k1,19618:32583029,32102303:14001914 +g1,19618:32583029,32102303 +) +(1,19619:6630773,32787158:25952256,424439,112852 +h1,19619:6630773,32787158:0,0,0 +g1,19619:6962727,32787158 +g1,19619:7294681,32787158 +g1,19619:11278129,32787158 +g1,19619:11942037,32787158 +k1,19619:11942037,32787158:0 +h1,19619:12605945,32787158:0,0,0 +k1,19619:32583029,32787158:19977084 +g1,19619:32583029,32787158 +) +(1,19620:6630773,33472013:25952256,431045,112852 +h1,19620:6630773,33472013:0,0,0 +g1,19620:6962727,33472013 +g1,19620:7294681,33472013 +g1,19620:7626635,33472013 +g1,19620:7958589,33472013 +g1,19620:8290543,33472013 +g1,19620:8622497,33472013 +g1,19620:8954451,33472013 +g1,19620:9286405,33472013 +g1,19620:9618359,33472013 +g1,19620:12273991,33472013 +g1,19620:12937899,33472013 +g1,19620:18581117,33472013 +g1,19620:21900656,33472013 +g1,19620:23560426,33472013 +g1,19620:24224334,33472013 +g1,19620:28871690,33472013 +h1,19620:29203644,33472013:0,0,0 +k1,19620:32583029,33472013:3379385 +g1,19620:32583029,33472013 +) +(1,19621:6630773,34156868:25952256,431045,112852 +h1,19621:6630773,34156868:0,0,0 +g1,19621:6962727,34156868 +g1,19621:7294681,34156868 +g1,19621:15925483,34156868 +g1,19621:16589391,34156868 +g1,19621:19245023,34156868 +h1,19621:19576977,34156868:0,0,0 +k1,19621:32583029,34156868:13006052 +g1,19621:32583029,34156868 +) +(1,19622:6630773,34841723:25952256,424439,106246 +h1,19622:6630773,34841723:0,0,0 +g1,19622:6962727,34841723 +g1,19622:7294681,34841723 +g1,19622:15261576,34841723 +g1,19622:15925484,34841723 +g1,19622:17917208,34841723 +h1,19622:18249162,34841723:0,0,0 +k1,19622:32583029,34841723:14333867 +g1,19622:32583029,34841723 +) +(1,19623:6630773,35526578:25952256,424439,112852 +h1,19623:6630773,35526578:0,0,0 +g1,19623:6962727,35526578 +g1,19623:7294681,35526578 +g1,19623:7626635,35526578 +g1,19623:7958589,35526578 +g1,19623:11610082,35526578 +h1,19623:11942036,35526578:0,0,0 +k1,19623:32583028,35526578:20640992 +g1,19623:32583028,35526578 +) +(1,19624:6630773,36211433:25952256,424439,106246 +h1,19624:6630773,36211433:0,0,0 +g1,19624:6962727,36211433 +g1,19624:7294681,36211433 +g1,19624:7626635,36211433 +g1,19624:7958589,36211433 +g1,19624:11942036,36211433 +g1,19624:12937898,36211433 +h1,19624:15261576,36211433:0,0,0 +k1,19624:32583028,36211433:17321452 +g1,19624:32583028,36211433 +) +(1,19625:6630773,36896288:25952256,424439,106246 +h1,19625:6630773,36896288:0,0,0 +g1,19625:9286405,36896288 +g1,19625:10282267,36896288 +g1,19625:13269853,36896288 +g1,19625:13933761,36896288 +g1,19625:15593531,36896288 +g1,19625:16257439,36896288 +g1,19625:16921347,36896288 +g1,19625:18249163,36896288 +g1,19625:21900656,36896288 +g1,19625:22564564,36896288 +k1,19625:22564564,36896288:0 +h1,19625:27211919,36896288:0,0,0 +k1,19625:32583029,36896288:5371110 +g1,19625:32583029,36896288 +) +] +) +g1,19627:32583029,37002534 +g1,19627:6630773,37002534 +g1,19627:6630773,37002534 +g1,19627:32583029,37002534 +g1,19627:32583029,37002534 +) +h1,19627:6630773,37199142:0,0,0 +v1,19631:6630773,37883997:0,393216,0 +(1,19641:6630773,42333810:25952256,4843029,196608 +g1,19641:6630773,42333810 +g1,19641:6630773,42333810 +g1,19641:6434165,42333810 +(1,19641:6434165,42333810:0,4843029,196608 +r1,19650:32779637,42333810:26345472,5039637,196608 +k1,19641:6434165,42333810:-26345472 +) +(1,19641:6434165,42333810:26345472,4843029,196608 +[1,19641:6630773,42333810:25952256,4646421,0 +(1,19633:6630773,38111828:25952256,424439,112852 +(1,19632:6630773,38111828:0,0,0 +g1,19632:6630773,38111828 +g1,19632:6630773,38111828 +g1,19632:6303093,38111828 +(1,19632:6303093,38111828:0,0,0 +) +g1,19632:6630773,38111828 +) +k1,19633:6630773,38111828:0 +g1,19633:10614221,38111828 +g1,19633:11278129,38111828 +k1,19633:11278129,38111828:0 +h1,19633:13601807,38111828:0,0,0 +k1,19633:32583029,38111828:18981222 +g1,19633:32583029,38111828 +) +(1,19634:6630773,38796683:25952256,431045,112852 +h1,19634:6630773,38796683:0,0,0 +g1,19634:6962727,38796683 +g1,19634:7294681,38796683 +g1,19634:7626635,38796683 +g1,19634:7958589,38796683 +g1,19634:8290543,38796683 +g1,19634:8622497,38796683 +g1,19634:8954451,38796683 +g1,19634:11610083,38796683 +g1,19634:12273991,38796683 +g1,19634:14265715,38796683 +g1,19634:14929623,38796683 +g1,19634:16921347,38796683 +g1,19634:17585255,38796683 +g1,19634:18249163,38796683 +g1,19634:19908933,38796683 +g1,19634:22232611,38796683 +g1,19634:22896519,38796683 +g1,19634:27543875,38796683 +h1,19634:27875829,38796683:0,0,0 +k1,19634:32583029,38796683:4707200 +g1,19634:32583029,38796683 +) +(1,19635:6630773,39481538:25952256,424439,112852 +h1,19635:6630773,39481538:0,0,0 +g1,19635:6962727,39481538 +g1,19635:7294681,39481538 +g1,19635:11610082,39481538 +h1,19635:11942036,39481538:0,0,0 +k1,19635:32583028,39481538:20640992 +g1,19635:32583028,39481538 +) +(1,19636:6630773,40166393:25952256,424439,112852 +h1,19636:6630773,40166393:0,0,0 +g1,19636:6962727,40166393 +g1,19636:7294681,40166393 +g1,19636:12273990,40166393 +g1,19636:12937898,40166393 +k1,19636:12937898,40166393:0 +h1,19636:15593530,40166393:0,0,0 +k1,19636:32583030,40166393:16989500 +g1,19636:32583030,40166393 +) +(1,19637:6630773,40851248:25952256,424439,106246 +h1,19637:6630773,40851248:0,0,0 +g1,19637:6962727,40851248 +g1,19637:7294681,40851248 +g1,19637:7626635,40851248 +g1,19637:7958589,40851248 +g1,19637:8290543,40851248 +g1,19637:8622497,40851248 +g1,19637:8954451,40851248 +g1,19637:9286405,40851248 +g1,19637:9618359,40851248 +g1,19637:9950313,40851248 +g1,19637:10282267,40851248 +g1,19637:10614221,40851248 +g1,19637:12605945,40851248 +g1,19637:13269853,40851248 +g1,19637:14265715,40851248 +g1,19637:14929623,40851248 +g1,19637:15593531,40851248 +g1,19637:16589393,40851248 +g1,19637:18581117,40851248 +g1,19637:19245025,40851248 +k1,19637:19245025,40851248:0 +h1,19637:23228472,40851248:0,0,0 +k1,19637:32583029,40851248:9354557 +g1,19637:32583029,40851248 +) +(1,19638:6630773,41536103:25952256,424439,106246 +h1,19638:6630773,41536103:0,0,0 +g1,19638:6962727,41536103 +g1,19638:7294681,41536103 +g1,19638:7626635,41536103 +g1,19638:7958589,41536103 +g1,19638:8290543,41536103 +g1,19638:8622497,41536103 +g1,19638:8954451,41536103 +g1,19638:9286405,41536103 +g1,19638:9618359,41536103 +g1,19638:9950313,41536103 +g1,19638:10282267,41536103 +g1,19638:10614221,41536103 +g1,19638:13601806,41536103 +g1,19638:14265714,41536103 +k1,19638:14265714,41536103:0 +h1,19638:15593530,41536103:0,0,0 +k1,19638:32583030,41536103:16989500 +g1,19638:32583030,41536103 +) +(1,19639:6630773,42220958:25952256,424439,112852 +h1,19639:6630773,42220958:0,0,0 +g1,19639:6962727,42220958 +g1,19639:7294681,42220958 +g1,19639:7626635,42220958 +g1,19639:7958589,42220958 +g1,19639:8290543,42220958 +g1,19639:8622497,42220958 +g1,19639:8954451,42220958 +g1,19639:9286405,42220958 +g1,19639:9618359,42220958 +g1,19639:9950313,42220958 +g1,19639:10282267,42220958 +g1,19639:10614221,42220958 +g1,19639:12605945,42220958 +g1,19639:13269853,42220958 +g1,19639:16589392,42220958 +g1,19639:18581116,42220958 +g1,19639:19245024,42220958 +h1,19639:22232609,42220958:0,0,0 +k1,19639:32583029,42220958:10350420 +g1,19639:32583029,42220958 +) +] +) +g1,19641:32583029,42333810 +g1,19641:6630773,42333810 +g1,19641:6630773,42333810 +g1,19641:32583029,42333810 +g1,19641:32583029,42333810 +) +h1,19641:6630773,42530418:0,0,0 +] +(1,19650:32583029,45706769:0,0,0 +g1,19650:32583029,45706769 +) +) +] +(1,19650:6630773,47279633:25952256,0,0 +h1,19650:6630773,47279633:25952256,0,0 +) +] +(1,19650:4262630,4025873:0,0,0 +[1,19650:-473656,4025873:0,0,0 +(1,19650:-473656,-710413:0,0,0 +(1,19650:-473656,-710413:0,0,0 +g1,19650:-473656,-710413 +) +g1,19650:-473656,-710413 ) ] ) ] !23008 -}327 -Input:3490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}328 Input:3494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -342907,784 +343111,784 @@ Input:3502:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3503:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3504:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3505:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3506:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3507:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3508:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3509:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{328 -[1,19701:4262630,47279633:28320399,43253760,0 -(1,19701:4262630,4025873:0,0,0 -[1,19701:-473656,4025873:0,0,0 -(1,19701:-473656,-710413:0,0,0 -(1,19701:-473656,-644877:0,0,0 -k1,19701:-473656,-644877:-65536 +{329 +[1,19699:4262630,47279633:28320399,43253760,0 +(1,19699:4262630,4025873:0,0,0 +[1,19699:-473656,4025873:0,0,0 +(1,19699:-473656,-710413:0,0,0 +(1,19699:-473656,-644877:0,0,0 +k1,19699:-473656,-644877:-65536 ) -(1,19701:-473656,4736287:0,0,0 -k1,19701:-473656,4736287:5209943 +(1,19699:-473656,4736287:0,0,0 +k1,19699:-473656,4736287:5209943 ) -g1,19701:-473656,-710413 +g1,19699:-473656,-710413 ) ] ) -[1,19701:6630773,47279633:25952256,43253760,0 -[1,19701:6630773,4812305:25952256,786432,0 -(1,19701:6630773,4812305:25952256,485622,11795 -(1,19701:6630773,4812305:25952256,485622,11795 -g1,19701:3078558,4812305 -[1,19701:3078558,4812305:0,0,0 -(1,19701:3078558,2439708:0,1703936,0 -k1,19701:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19701:2537886,2439708:1179648,16384,0 +[1,19699:6630773,47279633:25952256,43253760,0 +[1,19699:6630773,4812305:25952256,786432,0 +(1,19699:6630773,4812305:25952256,485622,11795 +(1,19699:6630773,4812305:25952256,485622,11795 +g1,19699:3078558,4812305 +[1,19699:3078558,4812305:0,0,0 +(1,19699:3078558,2439708:0,1703936,0 +k1,19699:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19699:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19701:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19699:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19701:3078558,4812305:0,0,0 -(1,19701:3078558,2439708:0,1703936,0 -g1,19701:29030814,2439708 -g1,19701:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19701:36151628,1915420:16384,1179648,0 +[1,19699:3078558,4812305:0,0,0 +(1,19699:3078558,2439708:0,1703936,0 +g1,19699:29030814,2439708 +g1,19699:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19699:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19701:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19699:37855564,2439708:1179648,16384,0 ) ) -k1,19701:3078556,2439708:-34777008 +k1,19699:3078556,2439708:-34777008 ) ] -[1,19701:3078558,4812305:0,0,0 -(1,19701:3078558,49800853:0,16384,2228224 -k1,19701:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19701:2537886,49800853:1179648,16384,0 +[1,19699:3078558,4812305:0,0,0 +(1,19699:3078558,49800853:0,16384,2228224 +k1,19699:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19699:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19701:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19699:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19701:3078558,4812305:0,0,0 -(1,19701:3078558,49800853:0,16384,2228224 -g1,19701:29030814,49800853 -g1,19701:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19701:36151628,51504789:16384,1179648,0 +[1,19699:3078558,4812305:0,0,0 +(1,19699:3078558,49800853:0,16384,2228224 +g1,19699:29030814,49800853 +g1,19699:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19699:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19701:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19699:37855564,49800853:1179648,16384,0 ) ) -k1,19701:3078556,49800853:-34777008 +k1,19699:3078556,49800853:-34777008 ) ] -g1,19701:6630773,4812305 -g1,19701:6630773,4812305 -g1,19701:10347975,4812305 -k1,19701:31387651,4812305:21039676 -) -) -] -[1,19701:6630773,45706769:25952256,40108032,0 -(1,19701:6630773,45706769:25952256,40108032,0 -(1,19701:6630773,45706769:0,0,0 -g1,19701:6630773,45706769 +g1,19699:6630773,4812305 +g1,19699:6630773,4812305 +g1,19699:10347975,4812305 +k1,19699:31387651,4812305:21039676 +) +) +] +[1,19699:6630773,45706769:25952256,40108032,0 +(1,19699:6630773,45706769:25952256,40108032,0 +(1,19699:6630773,45706769:0,0,0 +g1,19699:6630773,45706769 ) -[1,19701:6630773,45706769:25952256,40108032,0 -(1,19646:6630773,14682403:25952256,9083666,0 -k1,19646:10523651,14682403:3892878 -h1,19645:10523651,14682403:0,0,0 -(1,19645:10523651,14682403:18166500,9083666,0 -(1,19645:10523651,14682403:18167376,9083688,0 -(1,19645:10523651,14682403:18167376,9083688,0 -(1,19645:10523651,14682403:0,9083688,0 -(1,19645:10523651,14682403:0,14208860,0 -(1,19645:10523651,14682403:28417720,14208860,0 +[1,19699:6630773,45706769:25952256,40108032,0 +(1,19644:6630773,14682403:25952256,9083666,0 +k1,19644:10523651,14682403:3892878 +h1,19643:10523651,14682403:0,0,0 +(1,19643:10523651,14682403:18166500,9083666,0 +(1,19643:10523651,14682403:18167376,9083688,0 +(1,19643:10523651,14682403:18167376,9083688,0 +(1,19643:10523651,14682403:0,9083688,0 +(1,19643:10523651,14682403:0,14208860,0 +(1,19643:10523651,14682403:28417720,14208860,0 ) -k1,19645:10523651,14682403:-28417720 +k1,19643:10523651,14682403:-28417720 ) -) -g1,19645:28691027,14682403 -) -) -) -g1,19646:28690151,14682403 -k1,19646:32583029,14682403:3892878 -) -(1,19653:6630773,15547483:25952256,513147,134348 -h1,19652:6630773,15547483:983040,0,0 -k1,19652:8427361,15547483:185713 -k1,19652:9632158,15547483:185712 -k1,19652:12059202,15547483:185713 -k1,19652:14906331,15547483:185712 -k1,19652:16111129,15547483:185713 -k1,19652:17574139,15547483:185713 -k1,19652:19310433,15547483:185712 -k1,19652:20027643,15547483:185713 -k1,19652:20569216,15547483:185713 -k1,19652:23382922,15547483:185712 -k1,19652:24836101,15547483:185713 -k1,19652:25377673,15547483:185712 -k1,19652:27583861,15547483:185713 -k1,19652:28428866,15547483:185713 -k1,19652:29633663,15547483:185712 -k1,19652:31253304,15547483:185713 -k1,19652:32583029,15547483:0 -) -(1,19653:6630773,16412563:25952256,505283,126483 -k1,19652:8000359,16412563:194526 -k1,19652:9691071,16412563:194525 -k1,19652:10537025,16412563:194526 -k1,19652:12373882,16412563:194525 -k1,19652:13771649,16412563:194526 -k1,19652:15243471,16412563:194525 -k1,19652:15969494,16412563:194526 -k1,19652:17578286,16412563:194525 -k1,19652:19040278,16412563:194526 -k1,19652:20889587,16412563:194525 -k1,19652:23558752,16412563:194526 -(1,19652:23558752,16412563:0,452978,115847 -r1,19701:25675577,16412563:2116825,568825,115847 -k1,19652:23558752,16412563:-2116825 -) -(1,19652:23558752,16412563:2116825,452978,115847 -k1,19652:23558752,16412563:3277 -h1,19652:25672300,16412563:0,411205,112570 -) -k1,19652:25870102,16412563:194525 -k1,19652:26596125,16412563:194526 -k1,19652:27809735,16412563:194525 -k1,19652:29281558,16412563:194526 -k1,19652:30127511,16412563:194525 -k1,19652:31069803,16412563:194526 -k1,19652:32583029,16412563:0 -) -(1,19653:6630773,17277643:25952256,513147,126483 -g1,19652:7516164,17277643 -g1,19652:8734478,17277643 -g1,19652:10367635,17277643 -g1,19652:11514515,17277643 -g1,19652:12732829,17277643 -g1,19652:14338461,17277643 -k1,19653:32583030,17277643:16914844 -g1,19653:32583030,17277643 -) -v1,19655:6630773,17962498:0,393216,0 -(1,19662:6630773,20357746:25952256,2788464,196608 -g1,19662:6630773,20357746 -g1,19662:6630773,20357746 -g1,19662:6434165,20357746 -(1,19662:6434165,20357746:0,2788464,196608 -r1,19701:32779637,20357746:26345472,2985072,196608 -k1,19662:6434165,20357746:-26345472 -) -(1,19662:6434165,20357746:26345472,2788464,196608 -[1,19662:6630773,20357746:25952256,2591856,0 -(1,19657:6630773,18190329:25952256,424439,106246 -(1,19656:6630773,18190329:0,0,0 -g1,19656:6630773,18190329 -g1,19656:6630773,18190329 -g1,19656:6303093,18190329 -(1,19656:6303093,18190329:0,0,0 -) -g1,19656:6630773,18190329 -) -g1,19657:8954451,18190329 -k1,19657:8954451,18190329:0 -h1,19657:9618359,18190329:0,0,0 -k1,19657:32583029,18190329:22964670 -g1,19657:32583029,18190329 -) -(1,19658:6630773,18875184:25952256,424439,112852 -h1,19658:6630773,18875184:0,0,0 -g1,19658:6962727,18875184 -g1,19658:7294681,18875184 -g1,19658:11278129,18875184 -g1,19658:11942037,18875184 -k1,19658:11942037,18875184:0 -h1,19658:14265715,18875184:0,0,0 -k1,19658:32583029,18875184:18317314 -g1,19658:32583029,18875184 -) -(1,19659:6630773,19560039:25952256,431045,112852 -h1,19659:6630773,19560039:0,0,0 -g1,19659:6962727,19560039 -g1,19659:7294681,19560039 -g1,19659:7626635,19560039 -g1,19659:7958589,19560039 -g1,19659:8290543,19560039 -g1,19659:8622497,19560039 -g1,19659:8954451,19560039 -g1,19659:9286405,19560039 -g1,19659:9618359,19560039 -g1,19659:12273991,19560039 -g1,19659:12937899,19560039 -g1,19659:14929623,19560039 -g1,19659:15593531,19560039 -g1,19659:17585255,19560039 -g1,19659:18249163,19560039 -g1,19659:18913071,19560039 -g1,19659:20572841,19560039 -g1,19659:22896519,19560039 -g1,19659:23560427,19560039 -g1,19659:28207783,19560039 -h1,19659:28539737,19560039:0,0,0 -k1,19659:32583029,19560039:4043292 -g1,19659:32583029,19560039 -) -(1,19660:6630773,20244894:25952256,424439,112852 -h1,19660:6630773,20244894:0,0,0 -g1,19660:6962727,20244894 -g1,19660:7294681,20244894 -k1,19660:7294681,20244894:0 -h1,19660:11278128,20244894:0,0,0 -k1,19660:32583028,20244894:21304900 -g1,19660:32583028,20244894 -) -] -) -g1,19662:32583029,20357746 -g1,19662:6630773,20357746 -g1,19662:6630773,20357746 -g1,19662:32583029,20357746 -g1,19662:32583029,20357746 -) -h1,19662:6630773,20554354:0,0,0 -(1,19666:6630773,21419434:25952256,505283,126483 -h1,19665:6630773,21419434:983040,0,0 -(1,19665:7613813,21419434:0,452978,115847 -r1,19701:10082350,21419434:2468537,568825,115847 -k1,19665:7613813,21419434:-2468537 -) -(1,19665:7613813,21419434:2468537,452978,115847 -k1,19665:7613813,21419434:3277 -h1,19665:10079073,21419434:0,411205,112570 -) -k1,19665:10594585,21419434:338565 -k1,19665:11464648,21419434:338566 -k1,19665:12822298,21419434:338565 -k1,19665:14438160,21419434:338565 -k1,19665:15428154,21419434:338566 -k1,19665:16514485,21419434:338565 -k1,19665:18366276,21419434:338565 -k1,19665:19391004,21419434:338566 -k1,19665:20748654,21419434:338565 -k1,19665:22811471,21419434:338565 -k1,19665:24169121,21419434:338565 -k1,19665:25607381,21419434:338566 -k1,19665:26597374,21419434:338565 -(1,19665:26597374,21419434:0,452978,115847 -r1,19701:32583029,21419434:5985655,568825,115847 -k1,19665:26597374,21419434:-5985655 -) -(1,19665:26597374,21419434:5985655,452978,115847 -k1,19665:26597374,21419434:3277 -h1,19665:32579752,21419434:0,411205,112570 -) -k1,19665:32583029,21419434:0 -) -(1,19666:6630773,22284514:25952256,505283,115847 -k1,19665:10400956,22284514:160460 -(1,19665:10400956,22284514:0,452978,115847 -r1,19701:12517781,22284514:2116825,568825,115847 -k1,19665:10400956,22284514:-2116825 -) -(1,19665:10400956,22284514:2116825,452978,115847 -k1,19665:10400956,22284514:3277 -h1,19665:12514504,22284514:0,411205,112570 -) -k1,19665:12851912,22284514:160461 -k1,19665:14031457,22284514:160460 -k1,19665:15291612,22284514:160461 -k1,19665:16103500,22284514:160460 -(1,19665:16103500,22284514:0,452978,115847 -r1,19701:18220325,22284514:2116825,568825,115847 -k1,19665:16103500,22284514:-2116825 -) -(1,19665:16103500,22284514:2116825,452978,115847 -k1,19665:16103500,22284514:3277 -h1,19665:18217048,22284514:0,411205,112570 -) -k1,19665:18380785,22284514:160460 -k1,19665:21226256,22284514:160461 -k1,19665:22405801,22284514:160460 -k1,19665:25900733,22284514:160460 -k1,19665:27313587,22284514:160461 -k1,19665:29491901,22284514:160460 -k1,19665:30671447,22284514:160461 -k1,19665:31931601,22284514:160460 -k1,19666:32583029,22284514:0 -) -(1,19666:6630773,23149594:25952256,505283,134348 -(1,19665:6630773,23149594:0,452978,115847 -r1,19701:14726699,23149594:8095926,568825,115847 -k1,19665:6630773,23149594:-8095926 -) -(1,19665:6630773,23149594:8095926,452978,115847 -k1,19665:6630773,23149594:3277 -h1,19665:14723422,23149594:0,411205,112570 -) -k1,19665:14932652,23149594:205953 -k1,19665:17823615,23149594:205953 -k1,19665:19048653,23149594:205953 -k1,19665:22589078,23149594:205953 -k1,19665:24553363,23149594:205954 -k1,19665:25375354,23149594:205953 -k1,19665:26600392,23149594:205953 -k1,19665:28530597,23149594:205953 -k1,19665:29927995,23149594:205953 -k1,19665:31153033,23149594:205953 -k1,19665:32583029,23149594:0 -) -(1,19666:6630773,24014674:25952256,513147,134348 -g1,19665:7481430,24014674 -(1,19665:7481430,24014674:0,452978,115847 -r1,19701:11005102,24014674:3523672,568825,115847 -k1,19665:7481430,24014674:-3523672 -) -(1,19665:7481430,24014674:3523672,452978,115847 -k1,19665:7481430,24014674:3277 -h1,19665:11001825,24014674:0,411205,112570 -) -g1,19665:11204331,24014674 -g1,19665:12595005,24014674 -(1,19665:12595005,24014674:0,452978,115847 -r1,19701:15063542,24014674:2468537,568825,115847 -k1,19665:12595005,24014674:-2468537 -) -(1,19665:12595005,24014674:2468537,452978,115847 -k1,19665:12595005,24014674:3277 -h1,19665:15060265,24014674:0,411205,112570 -) -g1,19665:15262771,24014674 -g1,19665:17702676,24014674 -g1,19665:18920990,24014674 -g1,19665:21106615,24014674 -g1,19665:22497289,24014674 -g1,19665:24027554,24014674 -g1,19665:25495560,24014674 -g1,19665:26642440,24014674 -g1,19665:27860754,24014674 -k1,19666:32583029,24014674:3119265 -g1,19666:32583029,24014674 -) -v1,19668:6630773,24699529:0,393216,0 -(1,19676:6630773,27773026:25952256,3466713,196608 -g1,19676:6630773,27773026 -g1,19676:6630773,27773026 -g1,19676:6434165,27773026 -(1,19676:6434165,27773026:0,3466713,196608 -r1,19701:32779637,27773026:26345472,3663321,196608 -k1,19676:6434165,27773026:-26345472 -) -(1,19676:6434165,27773026:26345472,3466713,196608 -[1,19676:6630773,27773026:25952256,3270105,0 -(1,19670:6630773,24927360:25952256,424439,106246 -(1,19669:6630773,24927360:0,0,0 -g1,19669:6630773,24927360 -g1,19669:6630773,24927360 -g1,19669:6303093,24927360 -(1,19669:6303093,24927360:0,0,0 -) -g1,19669:6630773,24927360 -) -g1,19670:9286405,24927360 -g1,19670:10282267,24927360 -g1,19670:12605945,24927360 -h1,19670:12937899,24927360:0,0,0 -k1,19670:32583029,24927360:19645130 -g1,19670:32583029,24927360 -) -(1,19671:6630773,25612215:25952256,424439,106246 -h1,19671:6630773,25612215:0,0,0 -g1,19671:6962727,25612215 -g1,19671:7294681,25612215 -g1,19671:14265714,25612215 -g1,19671:14929622,25612215 -g1,19671:17253300,25612215 -g1,19671:19245024,25612215 -g1,19671:20904794,25612215 -g1,19671:21568702,25612215 -g1,19671:23560426,25612215 -g1,19671:25220196,25612215 -h1,19671:25552150,25612215:0,0,0 -k1,19671:32583029,25612215:7030879 -g1,19671:32583029,25612215 -) -(1,19672:6630773,26297070:25952256,424439,106246 -h1,19672:6630773,26297070:0,0,0 -g1,19672:6962727,26297070 -g1,19672:7294681,26297070 -g1,19672:9618359,26297070 -g1,19672:10282267,26297070 -g1,19672:12273991,26297070 -g1,19672:12937899,26297070 -g1,19672:13601807,26297070 -g1,19672:15593531,26297070 -h1,19672:15925485,26297070:0,0,0 -k1,19672:32583029,26297070:16657544 -g1,19672:32583029,26297070 -) -(1,19673:6630773,26981925:25952256,424439,112852 -h1,19673:6630773,26981925:0,0,0 -g1,19673:6962727,26981925 -g1,19673:7294681,26981925 -g1,19673:16589391,26981925 -g1,19673:17253299,26981925 -g1,19673:19908931,26981925 -h1,19673:20240885,26981925:0,0,0 -k1,19673:32583029,26981925:12342144 -g1,19673:32583029,26981925 -) -(1,19674:6630773,27666780:25952256,424439,106246 -h1,19674:6630773,27666780:0,0,0 -g1,19674:6962727,27666780 -g1,19674:7294681,27666780 -g1,19674:11278128,27666780 -g1,19674:11942036,27666780 -g1,19674:18249161,27666780 -g1,19674:18913069,27666780 -h1,19674:19576977,27666780:0,0,0 -k1,19674:32583029,27666780:13006052 -g1,19674:32583029,27666780 -) -] -) -g1,19676:32583029,27773026 -g1,19676:6630773,27773026 -g1,19676:6630773,27773026 -g1,19676:32583029,27773026 -g1,19676:32583029,27773026 -) -h1,19676:6630773,27969634:0,0,0 -(1,19680:6630773,28834714:25952256,505283,126483 -h1,19679:6630773,28834714:983040,0,0 -k1,19679:8658690,28834714:226988 -k1,19679:9501716,28834714:226988 -k1,19679:10747790,28834714:226989 -k1,19679:13729256,28834714:226988 -k1,19679:16791331,28834714:226988 -(1,19679:16791331,28834714:0,452978,122846 -r1,19701:20666715,28834714:3875384,575824,122846 -k1,19679:16791331,28834714:-3875384 -) -(1,19679:16791331,28834714:3875384,452978,122846 -k1,19679:16791331,28834714:3277 -h1,19679:20663438,28834714:0,411205,112570 -) -k1,19679:20893703,28834714:226988 -k1,19679:22648336,28834714:226989 -k1,19679:23894409,28834714:226988 -k1,19679:25845649,28834714:226988 -k1,19679:26688675,28834714:226988 -k1,19679:28118905,28834714:226989 -k1,19679:29712974,28834714:226988 -k1,19679:31333913,28834714:226988 -k1,19680:32583029,28834714:0 -) -(1,19680:6630773,29699794:25952256,513147,134348 -k1,19679:8418045,29699794:172465 -k1,19679:10601156,29699794:172466 -k1,19679:11721272,29699794:172465 -k1,19679:15241972,29699794:172466 -k1,19679:16611124,29699794:172465 -k1,19679:17883283,29699794:172465 -k1,19679:18707177,29699794:172466 -(1,19679:18707177,29699794:0,452978,115847 -r1,19701:22230849,29699794:3523672,568825,115847 -k1,19679:18707177,29699794:-3523672 -) -(1,19679:18707177,29699794:3523672,452978,115847 -k1,19679:18707177,29699794:3277 -h1,19679:22227572,29699794:0,411205,112570 -) -k1,19679:22403314,29699794:172465 -k1,19679:24311173,29699794:172466 -(1,19679:24311173,29699794:0,452978,122846 -r1,19701:28186557,29699794:3875384,575824,122846 -k1,19679:24311173,29699794:-3875384 -) -(1,19679:24311173,29699794:3875384,452978,122846 -k1,19679:24311173,29699794:3277 -h1,19679:28183280,29699794:0,411205,112570 -) -k1,19679:28359022,29699794:172465 -k1,19679:30059132,29699794:172466 -k1,19679:31250682,29699794:172465 -k1,19680:32583029,29699794:0 -) -(1,19680:6630773,30564874:25952256,505283,134348 -g1,19679:8527384,30564874 -g1,19679:12574232,30564874 -g1,19679:13792546,30564874 -g1,19679:17387851,30564874 -g1,19679:19607555,30564874 -g1,19679:20422822,30564874 -g1,19679:21641136,30564874 -g1,19679:23432235,30564874 -k1,19680:32583029,30564874:7699827 -g1,19680:32583029,30564874 -) -v1,19682:6630773,31249729:0,393216,0 -(1,19690:6630773,34323226:25952256,3466713,196608 -g1,19690:6630773,34323226 -g1,19690:6630773,34323226 -g1,19690:6434165,34323226 -(1,19690:6434165,34323226:0,3466713,196608 -r1,19701:32779637,34323226:26345472,3663321,196608 -k1,19690:6434165,34323226:-26345472 -) -(1,19690:6434165,34323226:26345472,3466713,196608 -[1,19690:6630773,34323226:25952256,3270105,0 -(1,19684:6630773,31477560:25952256,424439,106246 -(1,19683:6630773,31477560:0,0,0 -g1,19683:6630773,31477560 -g1,19683:6630773,31477560 -g1,19683:6303093,31477560 -(1,19683:6303093,31477560:0,0,0 -) -g1,19683:6630773,31477560 -) -g1,19684:8954451,31477560 -h1,19684:9286405,31477560:0,0,0 -k1,19684:32583029,31477560:23296624 -g1,19684:32583029,31477560 -) -(1,19685:6630773,32162415:25952256,424439,112852 -h1,19685:6630773,32162415:0,0,0 -g1,19685:6962727,32162415 -g1,19685:7294681,32162415 -g1,19685:11278128,32162415 -g1,19685:11942036,32162415 -g1,19685:13601806,32162415 -g1,19685:14265714,32162415 -g1,19685:14929622,32162415 -g1,19685:16257438,32162415 -g1,19685:18249162,32162415 -g1,19685:18913070,32162415 -g1,19685:23892379,32162415 -g1,19685:27211918,32162415 -g1,19685:27875826,32162415 -g1,19685:29535596,32162415 -h1,19685:29867550,32162415:0,0,0 -k1,19685:32583029,32162415:2715479 -g1,19685:32583029,32162415 -) -(1,19686:6630773,32847270:25952256,431045,112852 -h1,19686:6630773,32847270:0,0,0 -g1,19686:6962727,32847270 -g1,19686:7294681,32847270 -g1,19686:11942036,32847270 -g1,19686:12605944,32847270 -g1,19686:15261576,32847270 -g1,19686:16921346,32847270 -g1,19686:17585254,32847270 -g1,19686:18913070,32847270 -g1,19686:21236748,32847270 -g1,19686:21900656,32847270 -k1,19686:21900656,32847270:0 -h1,19686:24556288,32847270:0,0,0 -k1,19686:32583029,32847270:8026741 -g1,19686:32583029,32847270 -) -(1,19687:6630773,33532125:25952256,424439,106246 -h1,19687:6630773,33532125:0,0,0 -g1,19687:6962727,33532125 -g1,19687:7294681,33532125 -g1,19687:7626635,33532125 -g1,19687:7958589,33532125 -g1,19687:8290543,33532125 -g1,19687:8622497,33532125 -g1,19687:8954451,33532125 -g1,19687:9286405,33532125 -g1,19687:9618359,33532125 -g1,19687:9950313,33532125 -g1,19687:10282267,33532125 -g1,19687:11942037,33532125 -g1,19687:12605945,33532125 -g1,19687:14265715,33532125 -g1,19687:15925485,33532125 -g1,19687:16589393,33532125 -g1,19687:18249163,33532125 -g1,19687:19908933,33532125 -g1,19687:20572841,33532125 -g1,19687:21900657,33532125 -g1,19687:23560427,33532125 -g1,19687:24224335,33532125 -k1,19687:24224335,33532125:0 -h1,19687:25220197,33532125:0,0,0 -k1,19687:32583029,33532125:7362832 -g1,19687:32583029,33532125 -) -(1,19688:6630773,34216980:25952256,424439,106246 -h1,19688:6630773,34216980:0,0,0 -g1,19688:6962727,34216980 -g1,19688:7294681,34216980 -g1,19688:7626635,34216980 -g1,19688:7958589,34216980 -g1,19688:8290543,34216980 -g1,19688:8622497,34216980 -g1,19688:8954451,34216980 -g1,19688:9286405,34216980 -g1,19688:9618359,34216980 -g1,19688:9950313,34216980 -g1,19688:10282267,34216980 -g1,19688:13269852,34216980 -g1,19688:13933760,34216980 -h1,19688:16921345,34216980:0,0,0 -k1,19688:32583029,34216980:15661684 -g1,19688:32583029,34216980 -) -] -) -g1,19690:32583029,34323226 -g1,19690:6630773,34323226 -g1,19690:6630773,34323226 -g1,19690:32583029,34323226 -g1,19690:32583029,34323226 -) -h1,19690:6630773,34519834:0,0,0 -(1,19693:6630773,43669036:25952256,9083666,0 -k1,19693:10523651,43669036:3892878 -h1,19692:10523651,43669036:0,0,0 -(1,19692:10523651,43669036:18166500,9083666,0 -(1,19692:10523651,43669036:18167376,9083688,0 -(1,19692:10523651,43669036:18167376,9083688,0 -(1,19692:10523651,43669036:0,9083688,0 -(1,19692:10523651,43669036:0,14208860,0 -(1,19692:10523651,43669036:28417720,14208860,0 -) -k1,19692:10523651,43669036:-28417720 -) -) -g1,19692:28691027,43669036 -) -) -) -g1,19693:28690151,43669036 -k1,19693:32583029,43669036:3892878 -) -(1,19701:6630773,44534116:25952256,513147,134348 -h1,19700:6630773,44534116:983040,0,0 -k1,19700:11050904,44534116:341826 -(1,19700:11050904,44534116:0,452978,122846 -r1,19701:14926288,44534116:3875384,575824,122846 -k1,19700:11050904,44534116:-3875384 -) -(1,19700:11050904,44534116:3875384,452978,122846 -k1,19700:11050904,44534116:3277 -h1,19700:14923011,44534116:0,411205,112570 -) -k1,19700:15268114,44534116:341826 -k1,19700:17683500,44534116:341827 -k1,19700:19379300,44534116:341826 -k1,19700:21193720,44534116:341826 -k1,19700:23103167,44534116:341826 -(1,19700:23103167,44534116:0,452978,122846 -r1,19701:26978551,44534116:3875384,575824,122846 -k1,19700:23103167,44534116:-3875384 -) -(1,19700:23103167,44534116:3875384,452978,122846 -k1,19700:23103167,44534116:3277 -h1,19700:26975274,44534116:0,411205,112570 -) -k1,19700:27320378,44534116:341827 -k1,19700:28734373,44534116:341826 -k1,19700:30957082,44534116:341826 -k1,19700:32583029,44534116:0 -) -(1,19701:6630773,45399196:25952256,513147,134348 -k1,19700:9851557,45399196:271009 -k1,19700:12586064,45399196:271009 -k1,19700:14724848,45399196:271008 -(1,19700:14724848,45399196:0,452978,122846 -r1,19701:16138249,45399196:1413401,575824,122846 -k1,19700:14724848,45399196:-1413401 -) -(1,19700:14724848,45399196:1413401,452978,122846 -k1,19700:14724848,45399196:3277 -h1,19700:16134972,45399196:0,411205,112570 -) -k1,19700:16409258,45399196:271009 -k1,19700:17627918,45399196:271009 -k1,19700:19757528,45399196:271009 -k1,19700:21409381,45399196:271009 -k1,19700:24664900,45399196:271009 -k1,19700:25467406,45399196:271009 -k1,19700:27092388,45399196:271008 -k1,19700:29838036,45399196:271009 -k1,19700:30795207,45399196:271009 -k1,19700:32583029,45399196:0 +) +g1,19643:28691027,14682403 +) +) +) +g1,19644:28690151,14682403 +k1,19644:32583029,14682403:3892878 +) +(1,19651:6630773,15547483:25952256,513147,134348 +h1,19650:6630773,15547483:983040,0,0 +k1,19650:8427361,15547483:185713 +k1,19650:9632158,15547483:185712 +k1,19650:12059202,15547483:185713 +k1,19650:14906331,15547483:185712 +k1,19650:16111129,15547483:185713 +k1,19650:17574139,15547483:185713 +k1,19650:19310433,15547483:185712 +k1,19650:20027643,15547483:185713 +k1,19650:20569216,15547483:185713 +k1,19650:23382922,15547483:185712 +k1,19650:24836101,15547483:185713 +k1,19650:25377673,15547483:185712 +k1,19650:27583861,15547483:185713 +k1,19650:28428866,15547483:185713 +k1,19650:29633663,15547483:185712 +k1,19650:31253304,15547483:185713 +k1,19650:32583029,15547483:0 +) +(1,19651:6630773,16412563:25952256,505283,126483 +k1,19650:8000359,16412563:194526 +k1,19650:9691071,16412563:194525 +k1,19650:10537025,16412563:194526 +k1,19650:12373882,16412563:194525 +k1,19650:13771649,16412563:194526 +k1,19650:15243471,16412563:194525 +k1,19650:15969494,16412563:194526 +k1,19650:17578286,16412563:194525 +k1,19650:19040278,16412563:194526 +k1,19650:20889587,16412563:194525 +k1,19650:23558752,16412563:194526 +(1,19650:23558752,16412563:0,452978,115847 +r1,19699:25675577,16412563:2116825,568825,115847 +k1,19650:23558752,16412563:-2116825 +) +(1,19650:23558752,16412563:2116825,452978,115847 +k1,19650:23558752,16412563:3277 +h1,19650:25672300,16412563:0,411205,112570 +) +k1,19650:25870102,16412563:194525 +k1,19650:26596125,16412563:194526 +k1,19650:27809735,16412563:194525 +k1,19650:29281558,16412563:194526 +k1,19650:30127511,16412563:194525 +k1,19650:31069803,16412563:194526 +k1,19650:32583029,16412563:0 +) +(1,19651:6630773,17277643:25952256,513147,126483 +g1,19650:7516164,17277643 +g1,19650:8734478,17277643 +g1,19650:10367635,17277643 +g1,19650:11514515,17277643 +g1,19650:12732829,17277643 +g1,19650:14338461,17277643 +k1,19651:32583030,17277643:16914844 +g1,19651:32583030,17277643 +) +v1,19653:6630773,17962498:0,393216,0 +(1,19660:6630773,20357746:25952256,2788464,196608 +g1,19660:6630773,20357746 +g1,19660:6630773,20357746 +g1,19660:6434165,20357746 +(1,19660:6434165,20357746:0,2788464,196608 +r1,19699:32779637,20357746:26345472,2985072,196608 +k1,19660:6434165,20357746:-26345472 +) +(1,19660:6434165,20357746:26345472,2788464,196608 +[1,19660:6630773,20357746:25952256,2591856,0 +(1,19655:6630773,18190329:25952256,424439,106246 +(1,19654:6630773,18190329:0,0,0 +g1,19654:6630773,18190329 +g1,19654:6630773,18190329 +g1,19654:6303093,18190329 +(1,19654:6303093,18190329:0,0,0 +) +g1,19654:6630773,18190329 +) +g1,19655:8954451,18190329 +k1,19655:8954451,18190329:0 +h1,19655:9618359,18190329:0,0,0 +k1,19655:32583029,18190329:22964670 +g1,19655:32583029,18190329 +) +(1,19656:6630773,18875184:25952256,424439,112852 +h1,19656:6630773,18875184:0,0,0 +g1,19656:6962727,18875184 +g1,19656:7294681,18875184 +g1,19656:11278129,18875184 +g1,19656:11942037,18875184 +k1,19656:11942037,18875184:0 +h1,19656:14265715,18875184:0,0,0 +k1,19656:32583029,18875184:18317314 +g1,19656:32583029,18875184 +) +(1,19657:6630773,19560039:25952256,431045,112852 +h1,19657:6630773,19560039:0,0,0 +g1,19657:6962727,19560039 +g1,19657:7294681,19560039 +g1,19657:7626635,19560039 +g1,19657:7958589,19560039 +g1,19657:8290543,19560039 +g1,19657:8622497,19560039 +g1,19657:8954451,19560039 +g1,19657:9286405,19560039 +g1,19657:9618359,19560039 +g1,19657:12273991,19560039 +g1,19657:12937899,19560039 +g1,19657:14929623,19560039 +g1,19657:15593531,19560039 +g1,19657:17585255,19560039 +g1,19657:18249163,19560039 +g1,19657:18913071,19560039 +g1,19657:20572841,19560039 +g1,19657:22896519,19560039 +g1,19657:23560427,19560039 +g1,19657:28207783,19560039 +h1,19657:28539737,19560039:0,0,0 +k1,19657:32583029,19560039:4043292 +g1,19657:32583029,19560039 +) +(1,19658:6630773,20244894:25952256,424439,112852 +h1,19658:6630773,20244894:0,0,0 +g1,19658:6962727,20244894 +g1,19658:7294681,20244894 +k1,19658:7294681,20244894:0 +h1,19658:11278128,20244894:0,0,0 +k1,19658:32583028,20244894:21304900 +g1,19658:32583028,20244894 +) +] +) +g1,19660:32583029,20357746 +g1,19660:6630773,20357746 +g1,19660:6630773,20357746 +g1,19660:32583029,20357746 +g1,19660:32583029,20357746 +) +h1,19660:6630773,20554354:0,0,0 +(1,19664:6630773,21419434:25952256,505283,126483 +h1,19663:6630773,21419434:983040,0,0 +(1,19663:7613813,21419434:0,452978,115847 +r1,19699:10082350,21419434:2468537,568825,115847 +k1,19663:7613813,21419434:-2468537 +) +(1,19663:7613813,21419434:2468537,452978,115847 +k1,19663:7613813,21419434:3277 +h1,19663:10079073,21419434:0,411205,112570 +) +k1,19663:10594585,21419434:338565 +k1,19663:11464648,21419434:338566 +k1,19663:12822298,21419434:338565 +k1,19663:14438160,21419434:338565 +k1,19663:15428154,21419434:338566 +k1,19663:16514485,21419434:338565 +k1,19663:18366276,21419434:338565 +k1,19663:19391004,21419434:338566 +k1,19663:20748654,21419434:338565 +k1,19663:22811471,21419434:338565 +k1,19663:24169121,21419434:338565 +k1,19663:25607381,21419434:338566 +k1,19663:26597374,21419434:338565 +(1,19663:26597374,21419434:0,452978,115847 +r1,19699:32583029,21419434:5985655,568825,115847 +k1,19663:26597374,21419434:-5985655 +) +(1,19663:26597374,21419434:5985655,452978,115847 +k1,19663:26597374,21419434:3277 +h1,19663:32579752,21419434:0,411205,112570 +) +k1,19663:32583029,21419434:0 +) +(1,19664:6630773,22284514:25952256,505283,115847 +k1,19663:10400956,22284514:160460 +(1,19663:10400956,22284514:0,452978,115847 +r1,19699:12517781,22284514:2116825,568825,115847 +k1,19663:10400956,22284514:-2116825 +) +(1,19663:10400956,22284514:2116825,452978,115847 +k1,19663:10400956,22284514:3277 +h1,19663:12514504,22284514:0,411205,112570 +) +k1,19663:12851912,22284514:160461 +k1,19663:14031457,22284514:160460 +k1,19663:15291612,22284514:160461 +k1,19663:16103500,22284514:160460 +(1,19663:16103500,22284514:0,452978,115847 +r1,19699:18220325,22284514:2116825,568825,115847 +k1,19663:16103500,22284514:-2116825 +) +(1,19663:16103500,22284514:2116825,452978,115847 +k1,19663:16103500,22284514:3277 +h1,19663:18217048,22284514:0,411205,112570 +) +k1,19663:18380785,22284514:160460 +k1,19663:21226256,22284514:160461 +k1,19663:22405801,22284514:160460 +k1,19663:25900733,22284514:160460 +k1,19663:27313587,22284514:160461 +k1,19663:29491901,22284514:160460 +k1,19663:30671447,22284514:160461 +k1,19663:31931601,22284514:160460 +k1,19664:32583029,22284514:0 +) +(1,19664:6630773,23149594:25952256,505283,134348 +(1,19663:6630773,23149594:0,452978,115847 +r1,19699:14726699,23149594:8095926,568825,115847 +k1,19663:6630773,23149594:-8095926 +) +(1,19663:6630773,23149594:8095926,452978,115847 +k1,19663:6630773,23149594:3277 +h1,19663:14723422,23149594:0,411205,112570 +) +k1,19663:14932652,23149594:205953 +k1,19663:17823615,23149594:205953 +k1,19663:19048653,23149594:205953 +k1,19663:22589078,23149594:205953 +k1,19663:24553363,23149594:205954 +k1,19663:25375354,23149594:205953 +k1,19663:26600392,23149594:205953 +k1,19663:28530597,23149594:205953 +k1,19663:29927995,23149594:205953 +k1,19663:31153033,23149594:205953 +k1,19663:32583029,23149594:0 +) +(1,19664:6630773,24014674:25952256,513147,134348 +g1,19663:7481430,24014674 +(1,19663:7481430,24014674:0,452978,115847 +r1,19699:11005102,24014674:3523672,568825,115847 +k1,19663:7481430,24014674:-3523672 +) +(1,19663:7481430,24014674:3523672,452978,115847 +k1,19663:7481430,24014674:3277 +h1,19663:11001825,24014674:0,411205,112570 +) +g1,19663:11204331,24014674 +g1,19663:12595005,24014674 +(1,19663:12595005,24014674:0,452978,115847 +r1,19699:15063542,24014674:2468537,568825,115847 +k1,19663:12595005,24014674:-2468537 +) +(1,19663:12595005,24014674:2468537,452978,115847 +k1,19663:12595005,24014674:3277 +h1,19663:15060265,24014674:0,411205,112570 +) +g1,19663:15262771,24014674 +g1,19663:17702676,24014674 +g1,19663:18920990,24014674 +g1,19663:21106615,24014674 +g1,19663:22497289,24014674 +g1,19663:24027554,24014674 +g1,19663:25495560,24014674 +g1,19663:26642440,24014674 +g1,19663:27860754,24014674 +k1,19664:32583029,24014674:3119265 +g1,19664:32583029,24014674 +) +v1,19666:6630773,24699529:0,393216,0 +(1,19674:6630773,27773026:25952256,3466713,196608 +g1,19674:6630773,27773026 +g1,19674:6630773,27773026 +g1,19674:6434165,27773026 +(1,19674:6434165,27773026:0,3466713,196608 +r1,19699:32779637,27773026:26345472,3663321,196608 +k1,19674:6434165,27773026:-26345472 +) +(1,19674:6434165,27773026:26345472,3466713,196608 +[1,19674:6630773,27773026:25952256,3270105,0 +(1,19668:6630773,24927360:25952256,424439,106246 +(1,19667:6630773,24927360:0,0,0 +g1,19667:6630773,24927360 +g1,19667:6630773,24927360 +g1,19667:6303093,24927360 +(1,19667:6303093,24927360:0,0,0 +) +g1,19667:6630773,24927360 +) +g1,19668:9286405,24927360 +g1,19668:10282267,24927360 +g1,19668:12605945,24927360 +h1,19668:12937899,24927360:0,0,0 +k1,19668:32583029,24927360:19645130 +g1,19668:32583029,24927360 +) +(1,19669:6630773,25612215:25952256,424439,106246 +h1,19669:6630773,25612215:0,0,0 +g1,19669:6962727,25612215 +g1,19669:7294681,25612215 +g1,19669:14265714,25612215 +g1,19669:14929622,25612215 +g1,19669:17253300,25612215 +g1,19669:19245024,25612215 +g1,19669:20904794,25612215 +g1,19669:21568702,25612215 +g1,19669:23560426,25612215 +g1,19669:25220196,25612215 +h1,19669:25552150,25612215:0,0,0 +k1,19669:32583029,25612215:7030879 +g1,19669:32583029,25612215 +) +(1,19670:6630773,26297070:25952256,424439,106246 +h1,19670:6630773,26297070:0,0,0 +g1,19670:6962727,26297070 +g1,19670:7294681,26297070 +g1,19670:9618359,26297070 +g1,19670:10282267,26297070 +g1,19670:12273991,26297070 +g1,19670:12937899,26297070 +g1,19670:13601807,26297070 +g1,19670:15593531,26297070 +h1,19670:15925485,26297070:0,0,0 +k1,19670:32583029,26297070:16657544 +g1,19670:32583029,26297070 +) +(1,19671:6630773,26981925:25952256,424439,112852 +h1,19671:6630773,26981925:0,0,0 +g1,19671:6962727,26981925 +g1,19671:7294681,26981925 +g1,19671:16589391,26981925 +g1,19671:17253299,26981925 +g1,19671:19908931,26981925 +h1,19671:20240885,26981925:0,0,0 +k1,19671:32583029,26981925:12342144 +g1,19671:32583029,26981925 +) +(1,19672:6630773,27666780:25952256,424439,106246 +h1,19672:6630773,27666780:0,0,0 +g1,19672:6962727,27666780 +g1,19672:7294681,27666780 +g1,19672:11278128,27666780 +g1,19672:11942036,27666780 +g1,19672:18249161,27666780 +g1,19672:18913069,27666780 +h1,19672:19576977,27666780:0,0,0 +k1,19672:32583029,27666780:13006052 +g1,19672:32583029,27666780 +) +] +) +g1,19674:32583029,27773026 +g1,19674:6630773,27773026 +g1,19674:6630773,27773026 +g1,19674:32583029,27773026 +g1,19674:32583029,27773026 +) +h1,19674:6630773,27969634:0,0,0 +(1,19678:6630773,28834714:25952256,505283,126483 +h1,19677:6630773,28834714:983040,0,0 +k1,19677:8658690,28834714:226988 +k1,19677:9501716,28834714:226988 +k1,19677:10747790,28834714:226989 +k1,19677:13729256,28834714:226988 +k1,19677:16791331,28834714:226988 +(1,19677:16791331,28834714:0,452978,122846 +r1,19699:20666715,28834714:3875384,575824,122846 +k1,19677:16791331,28834714:-3875384 +) +(1,19677:16791331,28834714:3875384,452978,122846 +k1,19677:16791331,28834714:3277 +h1,19677:20663438,28834714:0,411205,112570 +) +k1,19677:20893703,28834714:226988 +k1,19677:22648336,28834714:226989 +k1,19677:23894409,28834714:226988 +k1,19677:25845649,28834714:226988 +k1,19677:26688675,28834714:226988 +k1,19677:28118905,28834714:226989 +k1,19677:29712974,28834714:226988 +k1,19677:31333913,28834714:226988 +k1,19678:32583029,28834714:0 +) +(1,19678:6630773,29699794:25952256,513147,134348 +k1,19677:8418045,29699794:172465 +k1,19677:10601156,29699794:172466 +k1,19677:11721272,29699794:172465 +k1,19677:15241972,29699794:172466 +k1,19677:16611124,29699794:172465 +k1,19677:17883283,29699794:172465 +k1,19677:18707177,29699794:172466 +(1,19677:18707177,29699794:0,452978,115847 +r1,19699:22230849,29699794:3523672,568825,115847 +k1,19677:18707177,29699794:-3523672 +) +(1,19677:18707177,29699794:3523672,452978,115847 +k1,19677:18707177,29699794:3277 +h1,19677:22227572,29699794:0,411205,112570 +) +k1,19677:22403314,29699794:172465 +k1,19677:24311173,29699794:172466 +(1,19677:24311173,29699794:0,452978,122846 +r1,19699:28186557,29699794:3875384,575824,122846 +k1,19677:24311173,29699794:-3875384 +) +(1,19677:24311173,29699794:3875384,452978,122846 +k1,19677:24311173,29699794:3277 +h1,19677:28183280,29699794:0,411205,112570 +) +k1,19677:28359022,29699794:172465 +k1,19677:30059132,29699794:172466 +k1,19677:31250682,29699794:172465 +k1,19678:32583029,29699794:0 +) +(1,19678:6630773,30564874:25952256,505283,134348 +g1,19677:8527384,30564874 +g1,19677:12574232,30564874 +g1,19677:13792546,30564874 +g1,19677:17387851,30564874 +g1,19677:19607555,30564874 +g1,19677:20422822,30564874 +g1,19677:21641136,30564874 +g1,19677:23432235,30564874 +k1,19678:32583029,30564874:7699827 +g1,19678:32583029,30564874 +) +v1,19680:6630773,31249729:0,393216,0 +(1,19688:6630773,34323226:25952256,3466713,196608 +g1,19688:6630773,34323226 +g1,19688:6630773,34323226 +g1,19688:6434165,34323226 +(1,19688:6434165,34323226:0,3466713,196608 +r1,19699:32779637,34323226:26345472,3663321,196608 +k1,19688:6434165,34323226:-26345472 +) +(1,19688:6434165,34323226:26345472,3466713,196608 +[1,19688:6630773,34323226:25952256,3270105,0 +(1,19682:6630773,31477560:25952256,424439,106246 +(1,19681:6630773,31477560:0,0,0 +g1,19681:6630773,31477560 +g1,19681:6630773,31477560 +g1,19681:6303093,31477560 +(1,19681:6303093,31477560:0,0,0 +) +g1,19681:6630773,31477560 +) +g1,19682:8954451,31477560 +h1,19682:9286405,31477560:0,0,0 +k1,19682:32583029,31477560:23296624 +g1,19682:32583029,31477560 +) +(1,19683:6630773,32162415:25952256,424439,112852 +h1,19683:6630773,32162415:0,0,0 +g1,19683:6962727,32162415 +g1,19683:7294681,32162415 +g1,19683:11278128,32162415 +g1,19683:11942036,32162415 +g1,19683:13601806,32162415 +g1,19683:14265714,32162415 +g1,19683:14929622,32162415 +g1,19683:16257438,32162415 +g1,19683:18249162,32162415 +g1,19683:18913070,32162415 +g1,19683:23892379,32162415 +g1,19683:27211918,32162415 +g1,19683:27875826,32162415 +g1,19683:29535596,32162415 +h1,19683:29867550,32162415:0,0,0 +k1,19683:32583029,32162415:2715479 +g1,19683:32583029,32162415 +) +(1,19684:6630773,32847270:25952256,431045,112852 +h1,19684:6630773,32847270:0,0,0 +g1,19684:6962727,32847270 +g1,19684:7294681,32847270 +g1,19684:11942036,32847270 +g1,19684:12605944,32847270 +g1,19684:15261576,32847270 +g1,19684:16921346,32847270 +g1,19684:17585254,32847270 +g1,19684:18913070,32847270 +g1,19684:21236748,32847270 +g1,19684:21900656,32847270 +k1,19684:21900656,32847270:0 +h1,19684:24556288,32847270:0,0,0 +k1,19684:32583029,32847270:8026741 +g1,19684:32583029,32847270 +) +(1,19685:6630773,33532125:25952256,424439,106246 +h1,19685:6630773,33532125:0,0,0 +g1,19685:6962727,33532125 +g1,19685:7294681,33532125 +g1,19685:7626635,33532125 +g1,19685:7958589,33532125 +g1,19685:8290543,33532125 +g1,19685:8622497,33532125 +g1,19685:8954451,33532125 +g1,19685:9286405,33532125 +g1,19685:9618359,33532125 +g1,19685:9950313,33532125 +g1,19685:10282267,33532125 +g1,19685:11942037,33532125 +g1,19685:12605945,33532125 +g1,19685:14265715,33532125 +g1,19685:15925485,33532125 +g1,19685:16589393,33532125 +g1,19685:18249163,33532125 +g1,19685:19908933,33532125 +g1,19685:20572841,33532125 +g1,19685:21900657,33532125 +g1,19685:23560427,33532125 +g1,19685:24224335,33532125 +k1,19685:24224335,33532125:0 +h1,19685:25220197,33532125:0,0,0 +k1,19685:32583029,33532125:7362832 +g1,19685:32583029,33532125 +) +(1,19686:6630773,34216980:25952256,424439,106246 +h1,19686:6630773,34216980:0,0,0 +g1,19686:6962727,34216980 +g1,19686:7294681,34216980 +g1,19686:7626635,34216980 +g1,19686:7958589,34216980 +g1,19686:8290543,34216980 +g1,19686:8622497,34216980 +g1,19686:8954451,34216980 +g1,19686:9286405,34216980 +g1,19686:9618359,34216980 +g1,19686:9950313,34216980 +g1,19686:10282267,34216980 +g1,19686:13269852,34216980 +g1,19686:13933760,34216980 +h1,19686:16921345,34216980:0,0,0 +k1,19686:32583029,34216980:15661684 +g1,19686:32583029,34216980 +) +] +) +g1,19688:32583029,34323226 +g1,19688:6630773,34323226 +g1,19688:6630773,34323226 +g1,19688:32583029,34323226 +g1,19688:32583029,34323226 +) +h1,19688:6630773,34519834:0,0,0 +(1,19691:6630773,43669036:25952256,9083666,0 +k1,19691:10523651,43669036:3892878 +h1,19690:10523651,43669036:0,0,0 +(1,19690:10523651,43669036:18166500,9083666,0 +(1,19690:10523651,43669036:18167376,9083688,0 +(1,19690:10523651,43669036:18167376,9083688,0 +(1,19690:10523651,43669036:0,9083688,0 +(1,19690:10523651,43669036:0,14208860,0 +(1,19690:10523651,43669036:28417720,14208860,0 +) +k1,19690:10523651,43669036:-28417720 +) +) +g1,19690:28691027,43669036 +) +) +) +g1,19691:28690151,43669036 +k1,19691:32583029,43669036:3892878 +) +(1,19699:6630773,44534116:25952256,513147,134348 +h1,19698:6630773,44534116:983040,0,0 +k1,19698:11050904,44534116:341826 +(1,19698:11050904,44534116:0,452978,122846 +r1,19699:14926288,44534116:3875384,575824,122846 +k1,19698:11050904,44534116:-3875384 +) +(1,19698:11050904,44534116:3875384,452978,122846 +k1,19698:11050904,44534116:3277 +h1,19698:14923011,44534116:0,411205,112570 +) +k1,19698:15268114,44534116:341826 +k1,19698:17683500,44534116:341827 +k1,19698:19379300,44534116:341826 +k1,19698:21193720,44534116:341826 +k1,19698:23103167,44534116:341826 +(1,19698:23103167,44534116:0,452978,122846 +r1,19699:26978551,44534116:3875384,575824,122846 +k1,19698:23103167,44534116:-3875384 +) +(1,19698:23103167,44534116:3875384,452978,122846 +k1,19698:23103167,44534116:3277 +h1,19698:26975274,44534116:0,411205,112570 +) +k1,19698:27320378,44534116:341827 +k1,19698:28734373,44534116:341826 +k1,19698:30957082,44534116:341826 +k1,19698:32583029,44534116:0 +) +(1,19699:6630773,45399196:25952256,513147,134348 +k1,19698:9851557,45399196:271009 +k1,19698:12586064,45399196:271009 +k1,19698:14724848,45399196:271008 +(1,19698:14724848,45399196:0,452978,122846 +r1,19699:16138249,45399196:1413401,575824,122846 +k1,19698:14724848,45399196:-1413401 +) +(1,19698:14724848,45399196:1413401,452978,122846 +k1,19698:14724848,45399196:3277 +h1,19698:16134972,45399196:0,411205,112570 +) +k1,19698:16409258,45399196:271009 +k1,19698:17627918,45399196:271009 +k1,19698:19757528,45399196:271009 +k1,19698:21409381,45399196:271009 +k1,19698:24664900,45399196:271009 +k1,19698:25467406,45399196:271009 +k1,19698:27092388,45399196:271008 +k1,19698:29838036,45399196:271009 +k1,19698:30795207,45399196:271009 +k1,19698:32583029,45399196:0 ) ] -(1,19701:32583029,45706769:0,0,0 -g1,19701:32583029,45706769 +(1,19699:32583029,45706769:0,0,0 +g1,19699:32583029,45706769 ) ) ] -(1,19701:6630773,47279633:25952256,0,0 -h1,19701:6630773,47279633:25952256,0,0 +(1,19699:6630773,47279633:25952256,0,0 +h1,19699:6630773,47279633:25952256,0,0 ) ] -(1,19701:4262630,4025873:0,0,0 -[1,19701:-473656,4025873:0,0,0 -(1,19701:-473656,-710413:0,0,0 -(1,19701:-473656,-710413:0,0,0 -g1,19701:-473656,-710413 +(1,19699:4262630,4025873:0,0,0 +[1,19699:-473656,4025873:0,0,0 +(1,19699:-473656,-710413:0,0,0 +(1,19699:-473656,-710413:0,0,0 +g1,19699:-473656,-710413 ) -g1,19701:-473656,-710413 +g1,19699:-473656,-710413 ) ] ) ] !21826 -}328 -Input:3506:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3507:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3508:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3509:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}329 Input:3510:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3511:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3512:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -343693,969 +343897,969 @@ Input:3514:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3515:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3516:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3517:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3518:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3519:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3520:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3521:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{329 -[1,19789:4262630,47279633:28320399,43253760,0 -(1,19789:4262630,4025873:0,0,0 -[1,19789:-473656,4025873:0,0,0 -(1,19789:-473656,-710413:0,0,0 -(1,19789:-473656,-644877:0,0,0 -k1,19789:-473656,-644877:-65536 +{330 +[1,19787:4262630,47279633:28320399,43253760,0 +(1,19787:4262630,4025873:0,0,0 +[1,19787:-473656,4025873:0,0,0 +(1,19787:-473656,-710413:0,0,0 +(1,19787:-473656,-644877:0,0,0 +k1,19787:-473656,-644877:-65536 ) -(1,19789:-473656,4736287:0,0,0 -k1,19789:-473656,4736287:5209943 +(1,19787:-473656,4736287:0,0,0 +k1,19787:-473656,4736287:5209943 ) -g1,19789:-473656,-710413 +g1,19787:-473656,-710413 ) ] ) -[1,19789:6630773,47279633:25952256,43253760,0 -[1,19789:6630773,4812305:25952256,786432,0 -(1,19789:6630773,4812305:25952256,513147,126483 -(1,19789:6630773,4812305:25952256,513147,126483 -g1,19789:3078558,4812305 -[1,19789:3078558,4812305:0,0,0 -(1,19789:3078558,2439708:0,1703936,0 -k1,19789:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19789:2537886,2439708:1179648,16384,0 +[1,19787:6630773,47279633:25952256,43253760,0 +[1,19787:6630773,4812305:25952256,786432,0 +(1,19787:6630773,4812305:25952256,513147,126483 +(1,19787:6630773,4812305:25952256,513147,126483 +g1,19787:3078558,4812305 +[1,19787:3078558,4812305:0,0,0 +(1,19787:3078558,2439708:0,1703936,0 +k1,19787:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19787:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19789:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19787:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19789:3078558,4812305:0,0,0 -(1,19789:3078558,2439708:0,1703936,0 -g1,19789:29030814,2439708 -g1,19789:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19789:36151628,1915420:16384,1179648,0 +[1,19787:3078558,4812305:0,0,0 +(1,19787:3078558,2439708:0,1703936,0 +g1,19787:29030814,2439708 +g1,19787:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19787:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19789:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19787:37855564,2439708:1179648,16384,0 ) ) -k1,19789:3078556,2439708:-34777008 +k1,19787:3078556,2439708:-34777008 ) ] -[1,19789:3078558,4812305:0,0,0 -(1,19789:3078558,49800853:0,16384,2228224 -k1,19789:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19789:2537886,49800853:1179648,16384,0 +[1,19787:3078558,4812305:0,0,0 +(1,19787:3078558,49800853:0,16384,2228224 +k1,19787:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19787:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19789:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19787:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19789:3078558,4812305:0,0,0 -(1,19789:3078558,49800853:0,16384,2228224 -g1,19789:29030814,49800853 -g1,19789:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19789:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19789:37855564,49800853:1179648,16384,0 -) -) -k1,19789:3078556,49800853:-34777008 -) -] -g1,19789:6630773,4812305 -k1,19789:21386205,4812305:13560055 -g1,19789:21999622,4812305 -g1,19789:25611966,4812305 -g1,19789:28956923,4812305 -g1,19789:29772190,4812305 -) -) -] -[1,19789:6630773,45706769:25952256,40108032,0 -(1,19789:6630773,45706769:25952256,40108032,0 -(1,19789:6630773,45706769:0,0,0 -g1,19789:6630773,45706769 -) -[1,19789:6630773,45706769:25952256,40108032,0 -(1,19701:6630773,6254097:25952256,505283,134348 -k1,19700:7964150,6254097:229095 -k1,19700:8941011,6254097:229095 -k1,19700:11147983,6254097:229095 -k1,19700:14096167,6254097:229095 -k1,19700:15011424,6254097:229095 -k1,19700:16519126,6254097:229095 -k1,19700:17434383,6254097:229095 -k1,19700:20035226,6254097:229095 -k1,19700:22461743,6254097:229095 -k1,19700:23580817,6254097:229095 -k1,19700:26776071,6254097:229095 -k1,19700:27633001,6254097:229095 -k1,19700:29463796,6254097:229095 -k1,19700:31563944,6254097:229095 -k1,19700:32583029,6254097:0 -) -(1,19701:6630773,7119177:25952256,513147,134348 -k1,19700:8647568,7119177:228973 -k1,19700:10406806,7119177:228972 -k1,19700:11287207,7119177:228973 -k1,19700:12263946,7119177:228973 -k1,19700:13799051,7119177:228972 -k1,19700:16378145,7119177:228973 -k1,19700:18463098,7119177:228973 -k1,19700:20427464,7119177:228973 -k1,19700:23682233,7119177:228972 -k1,19700:25478827,7119177:228973 -k1,19700:28287952,7119177:228973 -k1,19700:30142871,7119177:228972 -k1,19700:31023272,7119177:228973 -k1,19700:32583029,7119177:0 -) -(1,19701:6630773,7984257:25952256,513147,134348 -k1,19700:8535167,7984257:265339 -k1,19700:9483392,7984257:265340 -k1,19700:10510259,7984257:265339 -k1,19700:14158567,7984257:265340 -k1,19700:16125876,7984257:265339 -k1,19700:18107604,7984257:265340 -k1,19700:19032235,7984257:265339 -k1,19700:21587403,7984257:265340 -k1,19700:23120208,7984257:265339 -k1,19700:25347041,7984257:265340 -k1,19700:28707645,7984257:265339 -(1,19700:28707645,7984257:0,452978,122846 -r1,19789:32583029,7984257:3875384,575824,122846 -k1,19700:28707645,7984257:-3875384 -) -(1,19700:28707645,7984257:3875384,452978,122846 -k1,19700:28707645,7984257:3277 -h1,19700:32579752,7984257:0,411205,112570 -) -k1,19700:32583029,7984257:0 -) -(1,19701:6630773,8849337:25952256,513147,134348 -k1,19700:7396147,8849337:233877 -k1,19700:8316185,8849337:233876 -k1,19700:10851031,8849337:233877 -k1,19700:11771069,8849337:233876 -(1,19700:11771069,8849337:0,452978,115847 -r1,19789:18460147,8849337:6689078,568825,115847 -k1,19700:11771069,8849337:-6689078 -) -(1,19700:11771069,8849337:6689078,452978,115847 -k1,19700:11771069,8849337:3277 -h1,19700:18456870,8849337:0,411205,112570 -) -k1,19700:18694024,8849337:233877 -k1,19700:20321851,8849337:233876 -k1,19700:22880290,8849337:233877 -k1,19700:23765594,8849337:233876 -k1,19700:25018556,8849337:233877 -k1,19700:27213925,8849337:233876 -k1,19700:28519971,8849337:233877 -k1,19700:31307130,8849337:233876 -k1,19700:32227169,8849337:233877 -k1,19700:32583029,8849337:0 -) -(1,19701:6630773,9714417:25952256,505283,134348 -g1,19700:9969176,9714417 -g1,19700:12209196,9714417 -g1,19700:13580864,9714417 -g1,19700:16365488,9714417 -g1,19700:17556277,9714417 -g1,19700:19720931,9714417 -g1,19700:20606322,9714417 -g1,19700:23250044,9714417 -g1,19700:24100701,9714417 -g1,19700:25319015,9714417 -g1,19700:26952172,9714417 -k1,19701:32583029,9714417:4301132 -g1,19701:32583029,9714417 -) -(1,19703:6630773,10579497:25952256,513147,134348 -h1,19702:6630773,10579497:983040,0,0 -k1,19702:9204508,10579497:394008 -k1,19702:12183911,10579497:394008 -k1,19702:13569480,10579497:394009 -k1,19702:15375789,10579497:394008 -k1,19702:17337418,10579497:394008 -k1,19702:19078651,10579497:393813 -k1,19702:20786001,10579497:394008 -k1,19702:24526933,10579497:394008 -k1,19702:25607104,10579497:394009 -k1,19702:28992831,10579497:394008 -k1,19702:30002877,10579497:394008 -k1,19702:32583029,10579497:0 -) -(1,19703:6630773,11444577:25952256,505283,134348 -k1,19703:32583030,11444577:23312468 -g1,19703:32583030,11444577 -) -v1,19705:6630773,12129432:0,393216,0 -(1,19716:6630773,17270706:25952256,5534490,196608 -g1,19716:6630773,17270706 -g1,19716:6630773,17270706 -g1,19716:6434165,17270706 -(1,19716:6434165,17270706:0,5534490,196608 -r1,19789:32779637,17270706:26345472,5731098,196608 -k1,19716:6434165,17270706:-26345472 -) -(1,19716:6434165,17270706:26345472,5534490,196608 -[1,19716:6630773,17270706:25952256,5337882,0 -(1,19707:6630773,12363869:25952256,431045,6605 -(1,19706:6630773,12363869:0,0,0 -g1,19706:6630773,12363869 -g1,19706:6630773,12363869 -g1,19706:6303093,12363869 -(1,19706:6303093,12363869:0,0,0 -) -g1,19706:6630773,12363869 -) -g1,19707:10282266,12363869 -k1,19707:10282266,12363869:0 -h1,19707:10946174,12363869:0,0,0 -k1,19707:32583030,12363869:21636856 -g1,19707:32583030,12363869 -) -(1,19708:6630773,13048724:25952256,431045,112852 -h1,19708:6630773,13048724:0,0,0 -g1,19708:6962727,13048724 -g1,19708:7294681,13048724 -g1,19708:14929621,13048724 -k1,19708:14929621,13048724:0 -h1,19708:21236746,13048724:0,0,0 -k1,19708:32583029,13048724:11346283 -g1,19708:32583029,13048724 -) -(1,19709:6630773,13733579:25952256,424439,112852 -h1,19709:6630773,13733579:0,0,0 -g1,19709:6962727,13733579 -g1,19709:7294681,13733579 -g1,19709:7626635,13733579 -g1,19709:7958589,13733579 -g1,19709:8290543,13733579 -g1,19709:8622497,13733579 -g1,19709:8954451,13733579 -g1,19709:9286405,13733579 -g1,19709:9618359,13733579 -g1,19709:9950313,13733579 -g1,19709:10282267,13733579 -g1,19709:10614221,13733579 -g1,19709:10946175,13733579 -g1,19709:11278129,13733579 -g1,19709:13933761,13733579 -g1,19709:14597669,13733579 -g1,19709:17253301,13733579 -g1,19709:20240886,13733579 -g1,19709:20904794,13733579 -h1,19709:22564564,13733579:0,0,0 -k1,19709:32583029,13733579:10018465 -g1,19709:32583029,13733579 -) -(1,19710:6630773,14418434:25952256,431045,112852 -h1,19710:6630773,14418434:0,0,0 -g1,19710:10946174,14418434 -g1,19710:11942036,14418434 -k1,19710:11942036,14418434:0 -h1,19710:21900654,14418434:0,0,0 -k1,19710:32583029,14418434:10682375 -g1,19710:32583029,14418434 -) -(1,19711:6630773,15103289:25952256,431045,6605 -h1,19711:6630773,15103289:0,0,0 -g1,19711:10282266,15103289 -k1,19711:10282266,15103289:0 -h1,19711:10946174,15103289:0,0,0 -k1,19711:32583030,15103289:21636856 -g1,19711:32583030,15103289 -) -(1,19712:6630773,15788144:25952256,431045,112852 -h1,19712:6630773,15788144:0,0,0 -g1,19712:6962727,15788144 -g1,19712:7294681,15788144 -g1,19712:14929621,15788144 -k1,19712:14929621,15788144:0 -h1,19712:19576976,15788144:0,0,0 -k1,19712:32583029,15788144:13006053 -g1,19712:32583029,15788144 -) -(1,19713:6630773,16472999:25952256,424439,112852 -h1,19713:6630773,16472999:0,0,0 -g1,19713:6962727,16472999 -g1,19713:7294681,16472999 -g1,19713:7626635,16472999 -g1,19713:7958589,16472999 -g1,19713:8290543,16472999 -g1,19713:8622497,16472999 -g1,19713:8954451,16472999 -g1,19713:9286405,16472999 -g1,19713:9618359,16472999 -g1,19713:9950313,16472999 -g1,19713:10282267,16472999 -g1,19713:10614221,16472999 -g1,19713:10946175,16472999 -g1,19713:11278129,16472999 -g1,19713:13933761,16472999 -g1,19713:14597669,16472999 -g1,19713:17253301,16472999 -g1,19713:20240886,16472999 -g1,19713:20904794,16472999 -h1,19713:22564564,16472999:0,0,0 -k1,19713:32583029,16472999:10018465 -g1,19713:32583029,16472999 -) -(1,19714:6630773,17157854:25952256,431045,112852 -h1,19714:6630773,17157854:0,0,0 -g1,19714:9286405,17157854 -g1,19714:10282267,17157854 -k1,19714:10282267,17157854:0 -h1,19714:20240885,17157854:0,0,0 -k1,19714:32583029,17157854:12342144 -g1,19714:32583029,17157854 -) -] -) -g1,19716:32583029,17270706 -g1,19716:6630773,17270706 -g1,19716:6630773,17270706 -g1,19716:32583029,17270706 -g1,19716:32583029,17270706 -) -h1,19716:6630773,17467314:0,0,0 -(1,19720:6630773,18332394:25952256,505283,126483 -h1,19719:6630773,18332394:983040,0,0 -k1,19719:8977297,18332394:166797 -k1,19719:10316533,18332394:166797 -k1,19719:13068724,18332394:166796 -k1,19719:14227081,18332394:166797 -k1,19719:17554679,18332394:166797 -k1,19719:18988942,18332394:166797 -(1,19719:18988942,18332394:0,452978,122846 -r1,19789:20754055,18332394:1765113,575824,122846 -k1,19719:18988942,18332394:-1765113 -) -(1,19719:18988942,18332394:1765113,452978,122846 -k1,19719:18988942,18332394:3277 -h1,19719:20750778,18332394:0,411205,112570 -) -k1,19719:21094521,18332394:166796 -k1,19719:23226743,18332394:166797 -k1,19719:24079702,18332394:166797 -k1,19719:25418938,18332394:166797 -k1,19719:28288439,18332394:166796 -k1,19719:31408944,18332394:166797 -k1,19719:32227169,18332394:166797 -k1,19719:32583029,18332394:0 -) -(1,19720:6630773,19197474:25952256,505283,122846 -k1,19719:7935389,19197474:137420 -k1,19719:9264255,19197474:137421 -k1,19719:10420760,19197474:137420 -k1,19719:11551706,19197474:137420 -k1,19719:13654551,19197474:137420 -k1,19719:14478134,19197474:137421 -k1,19719:14971414,19197474:137420 -k1,19719:17491723,19197474:137420 -k1,19719:18280572,19197474:137421 -k1,19719:18773852,19197474:137420 -(1,19719:18773852,19197474:0,459977,115847 -r1,19789:22297524,19197474:3523672,575824,115847 -k1,19719:18773852,19197474:-3523672 -) -(1,19719:18773852,19197474:3523672,459977,115847 -k1,19719:18773852,19197474:3277 -h1,19719:22294247,19197474:0,411205,112570 -) -k1,19719:22434944,19197474:137420 -k1,19719:24731120,19197474:137420 -(1,19719:24731120,19197474:0,452978,122846 -r1,19789:27199657,19197474:2468537,575824,122846 -k1,19719:24731120,19197474:-2468537 -) -(1,19719:24731120,19197474:2468537,452978,122846 -k1,19719:24731120,19197474:3277 -h1,19719:27196380,19197474:0,411205,112570 -) -k1,19719:27510748,19197474:137421 -k1,19719:28844855,19197474:137420 -k1,19719:32583029,19197474:0 -) -(1,19720:6630773,20062554:25952256,513147,126483 -k1,19719:7761706,20062554:183282 -k1,19719:8964073,20062554:183282 -k1,19719:11761586,20062554:183282 -k1,19719:12604160,20062554:183282 -k1,19719:14239063,20062554:183281 -(1,19719:14239063,20062554:0,452978,122846 -r1,19789:15652464,20062554:1413401,575824,122846 -k1,19719:14239063,20062554:-1413401 -) -(1,19719:14239063,20062554:1413401,452978,122846 -k1,19719:14239063,20062554:3277 -h1,19719:15649187,20062554:0,411205,112570 -) -k1,19719:15835746,20062554:183282 -k1,19719:16705190,20062554:183282 -k1,19719:18167079,20062554:183282 -k1,19719:19036523,20062554:183282 -k1,19719:20238890,20062554:183282 -k1,19719:21690949,20062554:183282 -k1,19719:22533523,20062554:183282 -k1,19719:24168426,20062554:183281 -k1,19719:27138954,20062554:183282 -k1,19719:28313796,20062554:183282 -k1,19719:29782894,20062554:183282 -k1,19719:31931601,20062554:183282 -k1,19719:32583029,20062554:0 -) -(1,19720:6630773,20927634:25952256,505283,115847 -g1,19719:8033243,20927634 -(1,19719:8033243,20927634:0,459977,115847 -r1,19789:11556915,20927634:3523672,575824,115847 -k1,19719:8033243,20927634:-3523672 -) -(1,19719:8033243,20927634:3523672,459977,115847 -k1,19719:8033243,20927634:3277 -h1,19719:11553638,20927634:0,411205,112570 -) -k1,19720:32583029,20927634:20973686 -g1,19720:32583029,20927634 -) -v1,19722:6630773,21612489:0,393216,0 -(1,19729:6630773,24007737:25952256,2788464,196608 -g1,19729:6630773,24007737 -g1,19729:6630773,24007737 -g1,19729:6434165,24007737 -(1,19729:6434165,24007737:0,2788464,196608 -r1,19789:32779637,24007737:26345472,2985072,196608 -k1,19729:6434165,24007737:-26345472 -) -(1,19729:6434165,24007737:26345472,2788464,196608 -[1,19729:6630773,24007737:25952256,2591856,0 -(1,19724:6630773,21840320:25952256,424439,112852 -(1,19723:6630773,21840320:0,0,0 -g1,19723:6630773,21840320 -g1,19723:6630773,21840320 -g1,19723:6303093,21840320 -(1,19723:6303093,21840320:0,0,0 -) -g1,19723:6630773,21840320 -) -g1,19724:9286405,21840320 -k1,19724:9286405,21840320:0 -h1,19724:9950313,21840320:0,0,0 -k1,19724:32583029,21840320:22632716 -g1,19724:32583029,21840320 -) -(1,19725:6630773,22525175:25952256,431045,112852 -h1,19725:6630773,22525175:0,0,0 -g1,19725:6962727,22525175 -g1,19725:7294681,22525175 -g1,19725:11610082,22525175 -g1,19725:12273990,22525175 -g1,19725:13933760,22525175 -g1,19725:15925484,22525175 -g1,19725:16589392,22525175 -g1,19725:17253300,22525175 -g1,19725:19245024,22525175 -g1,19725:20904794,22525175 -g1,19725:23228472,22525175 -g1,19725:23892380,22525175 -g1,19725:25552150,22525175 -g1,19725:27543874,22525175 -g1,19725:28207782,22525175 -k1,19725:28207782,22525175:0 -h1,19725:30531460,22525175:0,0,0 -k1,19725:32583029,22525175:2051569 -g1,19725:32583029,22525175 -) -(1,19726:6630773,23210030:25952256,424439,112852 -h1,19726:6630773,23210030:0,0,0 -g1,19726:6962727,23210030 -g1,19726:7294681,23210030 -g1,19726:7626635,23210030 -g1,19726:7958589,23210030 -g1,19726:8290543,23210030 -g1,19726:8622497,23210030 -g1,19726:8954451,23210030 -g1,19726:9286405,23210030 -g1,19726:9618359,23210030 -g1,19726:9950313,23210030 -g1,19726:10282267,23210030 -g1,19726:10614221,23210030 -g1,19726:10946175,23210030 -g1,19726:12937899,23210030 -g1,19726:13601807,23210030 -g1,19726:23560426,23210030 -g1,19726:24224334,23210030 -k1,19726:24224334,23210030:0 -h1,19726:28871689,23210030:0,0,0 -k1,19726:32583029,23210030:3711340 -g1,19726:32583029,23210030 -) -(1,19727:6630773,23894885:25952256,424439,112852 -h1,19727:6630773,23894885:0,0,0 -g1,19727:6962727,23894885 -g1,19727:7294681,23894885 -g1,19727:7626635,23894885 -g1,19727:7958589,23894885 -g1,19727:8290543,23894885 -g1,19727:8622497,23894885 -g1,19727:8954451,23894885 -g1,19727:9286405,23894885 -g1,19727:9618359,23894885 -g1,19727:9950313,23894885 -g1,19727:10282267,23894885 -g1,19727:10614221,23894885 -g1,19727:10946175,23894885 -g1,19727:11278129,23894885 -g1,19727:11610083,23894885 -g1,19727:11942037,23894885 -g1,19727:12273991,23894885 -g1,19727:12605945,23894885 -g1,19727:12937899,23894885 -g1,19727:13269853,23894885 -g1,19727:13601807,23894885 -g1,19727:13933761,23894885 -g1,19727:14265715,23894885 -g1,19727:14597669,23894885 -g1,19727:14929623,23894885 -g1,19727:15261577,23894885 -g1,19727:15593531,23894885 -g1,19727:15925485,23894885 -g1,19727:23560426,23894885 -g1,19727:24224334,23894885 -h1,19727:27875827,23894885:0,0,0 -k1,19727:32583029,23894885:4707202 -g1,19727:32583029,23894885 -) -] -) -g1,19729:32583029,24007737 -g1,19729:6630773,24007737 -g1,19729:6630773,24007737 -g1,19729:32583029,24007737 -g1,19729:32583029,24007737 -) -h1,19729:6630773,24204345:0,0,0 -(1,19733:6630773,25069425:25952256,505283,134348 -h1,19732:6630773,25069425:983040,0,0 -k1,19732:8962120,25069425:151620 -k1,19732:10286178,25069425:151619 -(1,19732:10286178,25069425:0,452978,122846 -r1,19789:12051291,25069425:1765113,575824,122846 -k1,19732:10286178,25069425:-1765113 -) -(1,19732:10286178,25069425:1765113,452978,122846 -k1,19732:10286178,25069425:3277 -h1,19732:12048014,25069425:0,411205,112570 -) -k1,19732:12202911,25069425:151620 -k1,19732:13346090,25069425:151619 -k1,19732:15463135,25069425:151620 -k1,19732:16300916,25069425:151619 -k1,19732:16808396,25069425:151620 -k1,19732:18833034,25069425:151619 -k1,19732:20261951,25069425:151620 -k1,19732:21971362,25069425:151620 -k1,19732:22774409,25069425:151619 -k1,19732:23696732,25069425:151620 -k1,19732:25854408,25069425:151619 -k1,19732:27456995,25069425:151620 -k1,19732:29501294,25069425:151619 -k1,19732:30799139,25069425:151620 -k1,19732:32583029,25069425:0 -) -(1,19733:6630773,25934505:25952256,505283,126483 -g1,19732:7934284,25934505 -g1,19732:8881279,25934505 -g1,19732:11045933,25934505 -g1,19732:11896590,25934505 -g1,19732:13227626,25934505 -g1,19732:14860783,25934505 -k1,19733:32583029,25934505:16392521 -g1,19733:32583029,25934505 -) -v1,19735:6630773,26619360:0,393216,0 -(1,19743:6630773,29699463:25952256,3473319,196608 -g1,19743:6630773,29699463 -g1,19743:6630773,29699463 -g1,19743:6434165,29699463 -(1,19743:6434165,29699463:0,3473319,196608 -r1,19789:32779637,29699463:26345472,3669927,196608 -k1,19743:6434165,29699463:-26345472 -) -(1,19743:6434165,29699463:26345472,3473319,196608 -[1,19743:6630773,29699463:25952256,3276711,0 -(1,19737:6630773,26847191:25952256,424439,112852 -(1,19736:6630773,26847191:0,0,0 -g1,19736:6630773,26847191 -g1,19736:6630773,26847191 -g1,19736:6303093,26847191 -(1,19736:6303093,26847191:0,0,0 -) -g1,19736:6630773,26847191 -) -k1,19737:6630773,26847191:0 -g1,19737:9618359,26847191 -h1,19737:9950313,26847191:0,0,0 -k1,19737:32583029,26847191:22632716 -g1,19737:32583029,26847191 -) -(1,19738:6630773,27532046:25952256,424439,112852 -h1,19738:6630773,27532046:0,0,0 -g1,19738:6962727,27532046 -g1,19738:7294681,27532046 -g1,19738:12273990,27532046 -g1,19738:12937898,27532046 -k1,19738:12937898,27532046:0 -h1,19738:15593530,27532046:0,0,0 -k1,19738:32583030,27532046:16989500 -g1,19738:32583030,27532046 -) -(1,19739:6630773,28216901:25952256,424439,112852 -h1,19739:6630773,28216901:0,0,0 -g1,19739:6962727,28216901 -g1,19739:7294681,28216901 -g1,19739:7626635,28216901 -g1,19739:7958589,28216901 -g1,19739:8290543,28216901 -g1,19739:8622497,28216901 -g1,19739:8954451,28216901 -g1,19739:9286405,28216901 -g1,19739:9618359,28216901 -g1,19739:9950313,28216901 -g1,19739:10282267,28216901 -g1,19739:10614221,28216901 -g1,19739:13269853,28216901 -g1,19739:13933761,28216901 -g1,19739:15925485,28216901 -g1,19739:16589393,28216901 -g1,19739:17585255,28216901 -g1,19739:18249163,28216901 -g1,19739:18913071,28216901 -g1,19739:19908933,28216901 -g1,19739:21900657,28216901 -g1,19739:22564565,28216901 -k1,19739:22564565,28216901:0 -h1,19739:24556289,28216901:0,0,0 -k1,19739:32583029,28216901:8026740 -g1,19739:32583029,28216901 -) -(1,19740:6630773,28901756:25952256,424439,112852 -h1,19740:6630773,28901756:0,0,0 -g1,19740:6962727,28901756 -g1,19740:7294681,28901756 -g1,19740:7626635,28901756 -g1,19740:7958589,28901756 -g1,19740:8290543,28901756 -g1,19740:8622497,28901756 -g1,19740:8954451,28901756 -g1,19740:9286405,28901756 -g1,19740:9618359,28901756 -g1,19740:9950313,28901756 -g1,19740:10282267,28901756 -g1,19740:10614221,28901756 -g1,19740:10946175,28901756 -g1,19740:11278129,28901756 -g1,19740:11610083,28901756 -g1,19740:11942037,28901756 -g1,19740:12273991,28901756 -g1,19740:12605945,28901756 -g1,19740:12937899,28901756 -g1,19740:13269853,28901756 -g1,19740:13601807,28901756 -g1,19740:13933761,28901756 -g1,19740:14265715,28901756 -g1,19740:14597669,28901756 -g1,19740:14929623,28901756 -g1,19740:15261577,28901756 -g1,19740:18581116,28901756 -g1,19740:19245024,28901756 -g1,19740:21900656,28901756 -g1,19740:24888241,28901756 -g1,19740:25552149,28901756 -k1,19740:25552149,28901756:0 -h1,19740:27875827,28901756:0,0,0 -k1,19740:32583029,28901756:4707202 -g1,19740:32583029,28901756 -) -(1,19741:6630773,29586611:25952256,424439,112852 -h1,19741:6630773,29586611:0,0,0 -g1,19741:6962727,29586611 -g1,19741:7294681,29586611 -g1,19741:7626635,29586611 -g1,19741:7958589,29586611 -g1,19741:8290543,29586611 -g1,19741:8622497,29586611 -g1,19741:8954451,29586611 -g1,19741:9286405,29586611 -g1,19741:9618359,29586611 -g1,19741:9950313,29586611 -g1,19741:10282267,29586611 -g1,19741:10614221,29586611 -g1,19741:10946175,29586611 -g1,19741:11278129,29586611 -g1,19741:11610083,29586611 -g1,19741:11942037,29586611 -g1,19741:12273991,29586611 -g1,19741:12605945,29586611 -g1,19741:12937899,29586611 -g1,19741:13269853,29586611 -g1,19741:13601807,29586611 -g1,19741:13933761,29586611 -g1,19741:14265715,29586611 -g1,19741:14597669,29586611 -g1,19741:14929623,29586611 -g1,19741:15261577,29586611 -g1,19741:17253301,29586611 -g1,19741:17917209,29586611 -g1,19741:21236748,29586611 -g1,19741:23228472,29586611 -g1,19741:23892380,29586611 -h1,19741:26879965,29586611:0,0,0 -k1,19741:32583029,29586611:5703064 -g1,19741:32583029,29586611 -) -] -) -g1,19743:32583029,29699463 -g1,19743:6630773,29699463 -g1,19743:6630773,29699463 -g1,19743:32583029,29699463 -g1,19743:32583029,29699463 -) -h1,19743:6630773,29896071:0,0,0 -(1,19746:6630773,39045273:25952256,9083666,0 -k1,19746:10523651,39045273:3892878 -h1,19745:10523651,39045273:0,0,0 -(1,19745:10523651,39045273:18166500,9083666,0 -(1,19745:10523651,39045273:18167376,9083688,0 -(1,19745:10523651,39045273:18167376,9083688,0 -(1,19745:10523651,39045273:0,9083688,0 -(1,19745:10523651,39045273:0,14208860,0 -(1,19745:10523651,39045273:28417720,14208860,0 -) -k1,19745:10523651,39045273:-28417720 -) -) -g1,19745:28691027,39045273 -) -) -) -g1,19746:28690151,39045273 -k1,19746:32583029,39045273:3892878 -) -v1,19754:6630773,39910353:0,393216,0 -(1,19789:6630773,45543479:25952256,6026342,0 -g1,19789:6630773,45543479 -g1,19789:6237557,45543479 -r1,19789:6368629,45543479:131072,6026342,0 -g1,19789:6567858,45543479 -g1,19789:6764466,45543479 -[1,19789:6764466,45543479:25818563,6026342,0 -(1,19755:6764466,40218651:25818563,701514,196608 -(1,19754:6764466,40218651:0,701514,196608 -r1,19789:7761522,40218651:997056,898122,196608 -k1,19754:6764466,40218651:-997056 -) -(1,19754:6764466,40218651:997056,701514,196608 -) -k1,19754:8004518,40218651:242996 -k1,19754:8332198,40218651:327680 -k1,19754:9965214,40218651:242997 -k1,19754:12927299,40218651:242996 -k1,19754:15600370,40218651:242996 -k1,19754:16862451,40218651:242996 -k1,19754:19901214,40218651:242997 -k1,19754:23170007,40218651:242996 -k1,19754:24697509,40218651:242996 -k1,19754:27769038,40218651:242996 -k1,19754:29434822,40218651:242997 -k1,19754:31563944,40218651:242996 -k1,19754:32583029,40218651:0 -) -(1,19755:6764466,41083731:25818563,513147,134348 -k1,19754:8772430,41083731:209656 -k1,19754:11517018,41083731:209655 -k1,19754:13352621,41083731:209656 -k1,19754:16418990,41083731:209655 -k1,19754:19390989,41083731:209656 -k1,19754:21317032,41083731:209655 -k1,19754:22185980,41083731:209656 -k1,19754:24013719,41083731:209655 -k1,19754:25171026,41083731:209656 -k1,19754:28800350,41083731:209655 -k1,19754:30029091,41083731:209656 -k1,19755:32583029,41083731:0 -) -(1,19755:6764466,41948811:25818563,513147,134348 -k1,19754:8190838,41948811:135968 -k1,19754:8986097,41948811:135967 -k1,19754:12240268,41948811:135968 -k1,19754:13004070,41948811:135967 -k1,19754:14159123,41948811:135968 -k1,19754:17123623,41948811:135967 -k1,19754:18640435,41948811:135968 -k1,19754:21586587,41948811:135968 -(1,19754:21586587,41948811:0,452978,115847 -r1,19789:24406836,41948811:2820249,568825,115847 -k1,19754:21586587,41948811:-2820249 -) -(1,19754:21586587,41948811:2820249,452978,115847 -k1,19754:21586587,41948811:3277 -h1,19754:24403559,41948811:0,411205,112570 -) -k1,19754:24542803,41948811:135967 -k1,19754:26068134,41948811:135968 -k1,19754:29942275,41948811:135967 -k1,19754:31069803,41948811:135968 -k1,19754:32583029,41948811:0 -) -(1,19755:6764466,42813891:25818563,513147,134348 -k1,19754:8349530,42813891:217327 -k1,19754:9942459,42813891:217328 -k1,19754:10515646,42813891:217327 -k1,19754:11866092,42813891:217328 -k1,19754:15668894,42813891:217327 -k1,19754:18421154,42813891:217327 -k1,19754:20264429,42813891:217328 -k1,19754:23338470,42813891:217327 -k1,19754:24574882,42813891:217327 -k1,19754:25884695,42813891:217328 -k1,19754:26761314,42813891:217327 -k1,19754:29601393,42813891:217328 -k1,19754:31436804,42813891:217327 -k1,19755:32583029,42813891:0 -) -(1,19755:6764466,43678971:25818563,505283,126483 -(1,19754:6764466,43678971:0,452978,115847 -r1,19789:8177867,43678971:1413401,568825,115847 -k1,19754:6764466,43678971:-1413401 -) -(1,19754:6764466,43678971:1413401,452978,115847 -k1,19754:6764466,43678971:3277 -h1,19754:8174590,43678971:0,411205,112570 -) -k1,19754:8411075,43678971:233208 -k1,19754:9330445,43678971:233208 -k1,19754:10842261,43678971:233209 -k1,19754:11761631,43678971:233208 -k1,19754:14354135,43678971:233208 -k1,19754:16205427,43678971:233208 -k1,19754:17584860,43678971:233208 -k1,19754:19587540,43678971:233208 -k1,19754:23331513,43678971:233209 -k1,19754:25655319,43678971:233208 -k1,19754:29683716,43678971:233208 -k1,19754:32583029,43678971:0 -) -(1,19755:6764466,44544051:25818563,513147,134348 -k1,19754:10112783,44544051:150815 -k1,19754:10949759,44544051:150814 -k1,19754:12269736,44544051:150815 -k1,19754:13412111,44544051:150815 -k1,19754:16379007,44544051:150814 -k1,19754:17145860,44544051:150815 -k1,19754:18315760,44544051:150815 -k1,19754:20247187,44544051:150814 -k1,19754:20796461,44544051:150815 -k1,19754:21598704,44544051:150815 -k1,19754:22321648,44544051:150815 -k1,19754:24831758,44544051:150814 -k1,19754:25634001,44544051:150815 -k1,19754:26803901,44544051:150815 -k1,19754:30629974,44544051:150814 -k1,19754:31440081,44544051:150815 -k1,19755:32583029,44544051:0 -) -(1,19755:6764466,45409131:25818563,513147,134348 -k1,19754:8268279,45409131:196370 -k1,19754:11366582,45409131:196369 -k1,19754:12956903,45409131:196370 -k1,19754:15027602,45409131:196369 -k1,19754:15836734,45409131:196370 -k1,19754:17052188,45409131:196369 -k1,19754:19004923,45409131:196370 -k1,19754:20275427,45409131:196369 -k1,19754:22712473,45409131:196370 -k1,19754:26564440,45409131:196369 -k1,19754:28844855,45409131:196370 -k1,19754:32583029,45409131:0 -) -] -g1,19789:32583029,45543479 -) -] -(1,19789:32583029,45706769:0,0,0 -g1,19789:32583029,45706769 -) -) -] -(1,19789:6630773,47279633:25952256,0,0 -h1,19789:6630773,47279633:25952256,0,0 -) -] -(1,19789:4262630,4025873:0,0,0 -[1,19789:-473656,4025873:0,0,0 -(1,19789:-473656,-710413:0,0,0 -(1,19789:-473656,-710413:0,0,0 -g1,19789:-473656,-710413 -) -g1,19789:-473656,-710413 +[1,19787:3078558,4812305:0,0,0 +(1,19787:3078558,49800853:0,16384,2228224 +g1,19787:29030814,49800853 +g1,19787:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19787:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19787:37855564,49800853:1179648,16384,0 +) +) +k1,19787:3078556,49800853:-34777008 +) +] +g1,19787:6630773,4812305 +k1,19787:21386205,4812305:13560055 +g1,19787:21999622,4812305 +g1,19787:25611966,4812305 +g1,19787:28956923,4812305 +g1,19787:29772190,4812305 +) +) +] +[1,19787:6630773,45706769:25952256,40108032,0 +(1,19787:6630773,45706769:25952256,40108032,0 +(1,19787:6630773,45706769:0,0,0 +g1,19787:6630773,45706769 +) +[1,19787:6630773,45706769:25952256,40108032,0 +(1,19699:6630773,6254097:25952256,505283,134348 +k1,19698:7964150,6254097:229095 +k1,19698:8941011,6254097:229095 +k1,19698:11147983,6254097:229095 +k1,19698:14096167,6254097:229095 +k1,19698:15011424,6254097:229095 +k1,19698:16519126,6254097:229095 +k1,19698:17434383,6254097:229095 +k1,19698:20035226,6254097:229095 +k1,19698:22461743,6254097:229095 +k1,19698:23580817,6254097:229095 +k1,19698:26776071,6254097:229095 +k1,19698:27633001,6254097:229095 +k1,19698:29463796,6254097:229095 +k1,19698:31563944,6254097:229095 +k1,19698:32583029,6254097:0 +) +(1,19699:6630773,7119177:25952256,513147,134348 +k1,19698:8647568,7119177:228973 +k1,19698:10406806,7119177:228972 +k1,19698:11287207,7119177:228973 +k1,19698:12263946,7119177:228973 +k1,19698:13799051,7119177:228972 +k1,19698:16378145,7119177:228973 +k1,19698:18463098,7119177:228973 +k1,19698:20427464,7119177:228973 +k1,19698:23682233,7119177:228972 +k1,19698:25478827,7119177:228973 +k1,19698:28287952,7119177:228973 +k1,19698:30142871,7119177:228972 +k1,19698:31023272,7119177:228973 +k1,19698:32583029,7119177:0 +) +(1,19699:6630773,7984257:25952256,513147,134348 +k1,19698:8535167,7984257:265339 +k1,19698:9483392,7984257:265340 +k1,19698:10510259,7984257:265339 +k1,19698:14158567,7984257:265340 +k1,19698:16125876,7984257:265339 +k1,19698:18107604,7984257:265340 +k1,19698:19032235,7984257:265339 +k1,19698:21587403,7984257:265340 +k1,19698:23120208,7984257:265339 +k1,19698:25347041,7984257:265340 +k1,19698:28707645,7984257:265339 +(1,19698:28707645,7984257:0,452978,122846 +r1,19787:32583029,7984257:3875384,575824,122846 +k1,19698:28707645,7984257:-3875384 +) +(1,19698:28707645,7984257:3875384,452978,122846 +k1,19698:28707645,7984257:3277 +h1,19698:32579752,7984257:0,411205,112570 +) +k1,19698:32583029,7984257:0 +) +(1,19699:6630773,8849337:25952256,513147,134348 +k1,19698:7396147,8849337:233877 +k1,19698:8316185,8849337:233876 +k1,19698:10851031,8849337:233877 +k1,19698:11771069,8849337:233876 +(1,19698:11771069,8849337:0,452978,115847 +r1,19787:18460147,8849337:6689078,568825,115847 +k1,19698:11771069,8849337:-6689078 +) +(1,19698:11771069,8849337:6689078,452978,115847 +k1,19698:11771069,8849337:3277 +h1,19698:18456870,8849337:0,411205,112570 +) +k1,19698:18694024,8849337:233877 +k1,19698:20321851,8849337:233876 +k1,19698:22880290,8849337:233877 +k1,19698:23765594,8849337:233876 +k1,19698:25018556,8849337:233877 +k1,19698:27213925,8849337:233876 +k1,19698:28519971,8849337:233877 +k1,19698:31307130,8849337:233876 +k1,19698:32227169,8849337:233877 +k1,19698:32583029,8849337:0 +) +(1,19699:6630773,9714417:25952256,505283,134348 +g1,19698:9969176,9714417 +g1,19698:12209196,9714417 +g1,19698:13580864,9714417 +g1,19698:16365488,9714417 +g1,19698:17556277,9714417 +g1,19698:19720931,9714417 +g1,19698:20606322,9714417 +g1,19698:23250044,9714417 +g1,19698:24100701,9714417 +g1,19698:25319015,9714417 +g1,19698:26952172,9714417 +k1,19699:32583029,9714417:4301132 +g1,19699:32583029,9714417 +) +(1,19701:6630773,10579497:25952256,513147,134348 +h1,19700:6630773,10579497:983040,0,0 +k1,19700:9204508,10579497:394008 +k1,19700:12183911,10579497:394008 +k1,19700:13569480,10579497:394009 +k1,19700:15375789,10579497:394008 +k1,19700:17337418,10579497:394008 +k1,19700:19078651,10579497:393813 +k1,19700:20786001,10579497:394008 +k1,19700:24526933,10579497:394008 +k1,19700:25607104,10579497:394009 +k1,19700:28992831,10579497:394008 +k1,19700:30002877,10579497:394008 +k1,19700:32583029,10579497:0 +) +(1,19701:6630773,11444577:25952256,505283,134348 +k1,19701:32583030,11444577:23312468 +g1,19701:32583030,11444577 +) +v1,19703:6630773,12129432:0,393216,0 +(1,19714:6630773,17270706:25952256,5534490,196608 +g1,19714:6630773,17270706 +g1,19714:6630773,17270706 +g1,19714:6434165,17270706 +(1,19714:6434165,17270706:0,5534490,196608 +r1,19787:32779637,17270706:26345472,5731098,196608 +k1,19714:6434165,17270706:-26345472 +) +(1,19714:6434165,17270706:26345472,5534490,196608 +[1,19714:6630773,17270706:25952256,5337882,0 +(1,19705:6630773,12363869:25952256,431045,6605 +(1,19704:6630773,12363869:0,0,0 +g1,19704:6630773,12363869 +g1,19704:6630773,12363869 +g1,19704:6303093,12363869 +(1,19704:6303093,12363869:0,0,0 +) +g1,19704:6630773,12363869 +) +g1,19705:10282266,12363869 +k1,19705:10282266,12363869:0 +h1,19705:10946174,12363869:0,0,0 +k1,19705:32583030,12363869:21636856 +g1,19705:32583030,12363869 +) +(1,19706:6630773,13048724:25952256,431045,112852 +h1,19706:6630773,13048724:0,0,0 +g1,19706:6962727,13048724 +g1,19706:7294681,13048724 +g1,19706:14929621,13048724 +k1,19706:14929621,13048724:0 +h1,19706:21236746,13048724:0,0,0 +k1,19706:32583029,13048724:11346283 +g1,19706:32583029,13048724 +) +(1,19707:6630773,13733579:25952256,424439,112852 +h1,19707:6630773,13733579:0,0,0 +g1,19707:6962727,13733579 +g1,19707:7294681,13733579 +g1,19707:7626635,13733579 +g1,19707:7958589,13733579 +g1,19707:8290543,13733579 +g1,19707:8622497,13733579 +g1,19707:8954451,13733579 +g1,19707:9286405,13733579 +g1,19707:9618359,13733579 +g1,19707:9950313,13733579 +g1,19707:10282267,13733579 +g1,19707:10614221,13733579 +g1,19707:10946175,13733579 +g1,19707:11278129,13733579 +g1,19707:13933761,13733579 +g1,19707:14597669,13733579 +g1,19707:17253301,13733579 +g1,19707:20240886,13733579 +g1,19707:20904794,13733579 +h1,19707:22564564,13733579:0,0,0 +k1,19707:32583029,13733579:10018465 +g1,19707:32583029,13733579 +) +(1,19708:6630773,14418434:25952256,431045,112852 +h1,19708:6630773,14418434:0,0,0 +g1,19708:10946174,14418434 +g1,19708:11942036,14418434 +k1,19708:11942036,14418434:0 +h1,19708:21900654,14418434:0,0,0 +k1,19708:32583029,14418434:10682375 +g1,19708:32583029,14418434 +) +(1,19709:6630773,15103289:25952256,431045,6605 +h1,19709:6630773,15103289:0,0,0 +g1,19709:10282266,15103289 +k1,19709:10282266,15103289:0 +h1,19709:10946174,15103289:0,0,0 +k1,19709:32583030,15103289:21636856 +g1,19709:32583030,15103289 +) +(1,19710:6630773,15788144:25952256,431045,112852 +h1,19710:6630773,15788144:0,0,0 +g1,19710:6962727,15788144 +g1,19710:7294681,15788144 +g1,19710:14929621,15788144 +k1,19710:14929621,15788144:0 +h1,19710:19576976,15788144:0,0,0 +k1,19710:32583029,15788144:13006053 +g1,19710:32583029,15788144 +) +(1,19711:6630773,16472999:25952256,424439,112852 +h1,19711:6630773,16472999:0,0,0 +g1,19711:6962727,16472999 +g1,19711:7294681,16472999 +g1,19711:7626635,16472999 +g1,19711:7958589,16472999 +g1,19711:8290543,16472999 +g1,19711:8622497,16472999 +g1,19711:8954451,16472999 +g1,19711:9286405,16472999 +g1,19711:9618359,16472999 +g1,19711:9950313,16472999 +g1,19711:10282267,16472999 +g1,19711:10614221,16472999 +g1,19711:10946175,16472999 +g1,19711:11278129,16472999 +g1,19711:13933761,16472999 +g1,19711:14597669,16472999 +g1,19711:17253301,16472999 +g1,19711:20240886,16472999 +g1,19711:20904794,16472999 +h1,19711:22564564,16472999:0,0,0 +k1,19711:32583029,16472999:10018465 +g1,19711:32583029,16472999 +) +(1,19712:6630773,17157854:25952256,431045,112852 +h1,19712:6630773,17157854:0,0,0 +g1,19712:9286405,17157854 +g1,19712:10282267,17157854 +k1,19712:10282267,17157854:0 +h1,19712:20240885,17157854:0,0,0 +k1,19712:32583029,17157854:12342144 +g1,19712:32583029,17157854 +) +] +) +g1,19714:32583029,17270706 +g1,19714:6630773,17270706 +g1,19714:6630773,17270706 +g1,19714:32583029,17270706 +g1,19714:32583029,17270706 +) +h1,19714:6630773,17467314:0,0,0 +(1,19718:6630773,18332394:25952256,505283,126483 +h1,19717:6630773,18332394:983040,0,0 +k1,19717:8977297,18332394:166797 +k1,19717:10316533,18332394:166797 +k1,19717:13068724,18332394:166796 +k1,19717:14227081,18332394:166797 +k1,19717:17554679,18332394:166797 +k1,19717:18988942,18332394:166797 +(1,19717:18988942,18332394:0,452978,122846 +r1,19787:20754055,18332394:1765113,575824,122846 +k1,19717:18988942,18332394:-1765113 +) +(1,19717:18988942,18332394:1765113,452978,122846 +k1,19717:18988942,18332394:3277 +h1,19717:20750778,18332394:0,411205,112570 +) +k1,19717:21094521,18332394:166796 +k1,19717:23226743,18332394:166797 +k1,19717:24079702,18332394:166797 +k1,19717:25418938,18332394:166797 +k1,19717:28288439,18332394:166796 +k1,19717:31408944,18332394:166797 +k1,19717:32227169,18332394:166797 +k1,19717:32583029,18332394:0 +) +(1,19718:6630773,19197474:25952256,505283,122846 +k1,19717:7935389,19197474:137420 +k1,19717:9264255,19197474:137421 +k1,19717:10420760,19197474:137420 +k1,19717:11551706,19197474:137420 +k1,19717:13654551,19197474:137420 +k1,19717:14478134,19197474:137421 +k1,19717:14971414,19197474:137420 +k1,19717:17491723,19197474:137420 +k1,19717:18280572,19197474:137421 +k1,19717:18773852,19197474:137420 +(1,19717:18773852,19197474:0,459977,115847 +r1,19787:22297524,19197474:3523672,575824,115847 +k1,19717:18773852,19197474:-3523672 +) +(1,19717:18773852,19197474:3523672,459977,115847 +k1,19717:18773852,19197474:3277 +h1,19717:22294247,19197474:0,411205,112570 +) +k1,19717:22434944,19197474:137420 +k1,19717:24731120,19197474:137420 +(1,19717:24731120,19197474:0,452978,122846 +r1,19787:27199657,19197474:2468537,575824,122846 +k1,19717:24731120,19197474:-2468537 +) +(1,19717:24731120,19197474:2468537,452978,122846 +k1,19717:24731120,19197474:3277 +h1,19717:27196380,19197474:0,411205,112570 +) +k1,19717:27510748,19197474:137421 +k1,19717:28844855,19197474:137420 +k1,19717:32583029,19197474:0 +) +(1,19718:6630773,20062554:25952256,513147,126483 +k1,19717:7761706,20062554:183282 +k1,19717:8964073,20062554:183282 +k1,19717:11761586,20062554:183282 +k1,19717:12604160,20062554:183282 +k1,19717:14239063,20062554:183281 +(1,19717:14239063,20062554:0,452978,122846 +r1,19787:15652464,20062554:1413401,575824,122846 +k1,19717:14239063,20062554:-1413401 +) +(1,19717:14239063,20062554:1413401,452978,122846 +k1,19717:14239063,20062554:3277 +h1,19717:15649187,20062554:0,411205,112570 +) +k1,19717:15835746,20062554:183282 +k1,19717:16705190,20062554:183282 +k1,19717:18167079,20062554:183282 +k1,19717:19036523,20062554:183282 +k1,19717:20238890,20062554:183282 +k1,19717:21690949,20062554:183282 +k1,19717:22533523,20062554:183282 +k1,19717:24168426,20062554:183281 +k1,19717:27138954,20062554:183282 +k1,19717:28313796,20062554:183282 +k1,19717:29782894,20062554:183282 +k1,19717:31931601,20062554:183282 +k1,19717:32583029,20062554:0 +) +(1,19718:6630773,20927634:25952256,505283,115847 +g1,19717:8033243,20927634 +(1,19717:8033243,20927634:0,459977,115847 +r1,19787:11556915,20927634:3523672,575824,115847 +k1,19717:8033243,20927634:-3523672 +) +(1,19717:8033243,20927634:3523672,459977,115847 +k1,19717:8033243,20927634:3277 +h1,19717:11553638,20927634:0,411205,112570 +) +k1,19718:32583029,20927634:20973686 +g1,19718:32583029,20927634 +) +v1,19720:6630773,21612489:0,393216,0 +(1,19727:6630773,24007737:25952256,2788464,196608 +g1,19727:6630773,24007737 +g1,19727:6630773,24007737 +g1,19727:6434165,24007737 +(1,19727:6434165,24007737:0,2788464,196608 +r1,19787:32779637,24007737:26345472,2985072,196608 +k1,19727:6434165,24007737:-26345472 +) +(1,19727:6434165,24007737:26345472,2788464,196608 +[1,19727:6630773,24007737:25952256,2591856,0 +(1,19722:6630773,21840320:25952256,424439,112852 +(1,19721:6630773,21840320:0,0,0 +g1,19721:6630773,21840320 +g1,19721:6630773,21840320 +g1,19721:6303093,21840320 +(1,19721:6303093,21840320:0,0,0 +) +g1,19721:6630773,21840320 +) +g1,19722:9286405,21840320 +k1,19722:9286405,21840320:0 +h1,19722:9950313,21840320:0,0,0 +k1,19722:32583029,21840320:22632716 +g1,19722:32583029,21840320 +) +(1,19723:6630773,22525175:25952256,431045,112852 +h1,19723:6630773,22525175:0,0,0 +g1,19723:6962727,22525175 +g1,19723:7294681,22525175 +g1,19723:11610082,22525175 +g1,19723:12273990,22525175 +g1,19723:13933760,22525175 +g1,19723:15925484,22525175 +g1,19723:16589392,22525175 +g1,19723:17253300,22525175 +g1,19723:19245024,22525175 +g1,19723:20904794,22525175 +g1,19723:23228472,22525175 +g1,19723:23892380,22525175 +g1,19723:25552150,22525175 +g1,19723:27543874,22525175 +g1,19723:28207782,22525175 +k1,19723:28207782,22525175:0 +h1,19723:30531460,22525175:0,0,0 +k1,19723:32583029,22525175:2051569 +g1,19723:32583029,22525175 +) +(1,19724:6630773,23210030:25952256,424439,112852 +h1,19724:6630773,23210030:0,0,0 +g1,19724:6962727,23210030 +g1,19724:7294681,23210030 +g1,19724:7626635,23210030 +g1,19724:7958589,23210030 +g1,19724:8290543,23210030 +g1,19724:8622497,23210030 +g1,19724:8954451,23210030 +g1,19724:9286405,23210030 +g1,19724:9618359,23210030 +g1,19724:9950313,23210030 +g1,19724:10282267,23210030 +g1,19724:10614221,23210030 +g1,19724:10946175,23210030 +g1,19724:12937899,23210030 +g1,19724:13601807,23210030 +g1,19724:23560426,23210030 +g1,19724:24224334,23210030 +k1,19724:24224334,23210030:0 +h1,19724:28871689,23210030:0,0,0 +k1,19724:32583029,23210030:3711340 +g1,19724:32583029,23210030 +) +(1,19725:6630773,23894885:25952256,424439,112852 +h1,19725:6630773,23894885:0,0,0 +g1,19725:6962727,23894885 +g1,19725:7294681,23894885 +g1,19725:7626635,23894885 +g1,19725:7958589,23894885 +g1,19725:8290543,23894885 +g1,19725:8622497,23894885 +g1,19725:8954451,23894885 +g1,19725:9286405,23894885 +g1,19725:9618359,23894885 +g1,19725:9950313,23894885 +g1,19725:10282267,23894885 +g1,19725:10614221,23894885 +g1,19725:10946175,23894885 +g1,19725:11278129,23894885 +g1,19725:11610083,23894885 +g1,19725:11942037,23894885 +g1,19725:12273991,23894885 +g1,19725:12605945,23894885 +g1,19725:12937899,23894885 +g1,19725:13269853,23894885 +g1,19725:13601807,23894885 +g1,19725:13933761,23894885 +g1,19725:14265715,23894885 +g1,19725:14597669,23894885 +g1,19725:14929623,23894885 +g1,19725:15261577,23894885 +g1,19725:15593531,23894885 +g1,19725:15925485,23894885 +g1,19725:23560426,23894885 +g1,19725:24224334,23894885 +h1,19725:27875827,23894885:0,0,0 +k1,19725:32583029,23894885:4707202 +g1,19725:32583029,23894885 +) +] +) +g1,19727:32583029,24007737 +g1,19727:6630773,24007737 +g1,19727:6630773,24007737 +g1,19727:32583029,24007737 +g1,19727:32583029,24007737 +) +h1,19727:6630773,24204345:0,0,0 +(1,19731:6630773,25069425:25952256,505283,134348 +h1,19730:6630773,25069425:983040,0,0 +k1,19730:8962120,25069425:151620 +k1,19730:10286178,25069425:151619 +(1,19730:10286178,25069425:0,452978,122846 +r1,19787:12051291,25069425:1765113,575824,122846 +k1,19730:10286178,25069425:-1765113 +) +(1,19730:10286178,25069425:1765113,452978,122846 +k1,19730:10286178,25069425:3277 +h1,19730:12048014,25069425:0,411205,112570 +) +k1,19730:12202911,25069425:151620 +k1,19730:13346090,25069425:151619 +k1,19730:15463135,25069425:151620 +k1,19730:16300916,25069425:151619 +k1,19730:16808396,25069425:151620 +k1,19730:18833034,25069425:151619 +k1,19730:20261951,25069425:151620 +k1,19730:21971362,25069425:151620 +k1,19730:22774409,25069425:151619 +k1,19730:23696732,25069425:151620 +k1,19730:25854408,25069425:151619 +k1,19730:27456995,25069425:151620 +k1,19730:29501294,25069425:151619 +k1,19730:30799139,25069425:151620 +k1,19730:32583029,25069425:0 +) +(1,19731:6630773,25934505:25952256,505283,126483 +g1,19730:7934284,25934505 +g1,19730:8881279,25934505 +g1,19730:11045933,25934505 +g1,19730:11896590,25934505 +g1,19730:13227626,25934505 +g1,19730:14860783,25934505 +k1,19731:32583029,25934505:16392521 +g1,19731:32583029,25934505 +) +v1,19733:6630773,26619360:0,393216,0 +(1,19741:6630773,29699463:25952256,3473319,196608 +g1,19741:6630773,29699463 +g1,19741:6630773,29699463 +g1,19741:6434165,29699463 +(1,19741:6434165,29699463:0,3473319,196608 +r1,19787:32779637,29699463:26345472,3669927,196608 +k1,19741:6434165,29699463:-26345472 +) +(1,19741:6434165,29699463:26345472,3473319,196608 +[1,19741:6630773,29699463:25952256,3276711,0 +(1,19735:6630773,26847191:25952256,424439,112852 +(1,19734:6630773,26847191:0,0,0 +g1,19734:6630773,26847191 +g1,19734:6630773,26847191 +g1,19734:6303093,26847191 +(1,19734:6303093,26847191:0,0,0 +) +g1,19734:6630773,26847191 +) +k1,19735:6630773,26847191:0 +g1,19735:9618359,26847191 +h1,19735:9950313,26847191:0,0,0 +k1,19735:32583029,26847191:22632716 +g1,19735:32583029,26847191 +) +(1,19736:6630773,27532046:25952256,424439,112852 +h1,19736:6630773,27532046:0,0,0 +g1,19736:6962727,27532046 +g1,19736:7294681,27532046 +g1,19736:12273990,27532046 +g1,19736:12937898,27532046 +k1,19736:12937898,27532046:0 +h1,19736:15593530,27532046:0,0,0 +k1,19736:32583030,27532046:16989500 +g1,19736:32583030,27532046 +) +(1,19737:6630773,28216901:25952256,424439,112852 +h1,19737:6630773,28216901:0,0,0 +g1,19737:6962727,28216901 +g1,19737:7294681,28216901 +g1,19737:7626635,28216901 +g1,19737:7958589,28216901 +g1,19737:8290543,28216901 +g1,19737:8622497,28216901 +g1,19737:8954451,28216901 +g1,19737:9286405,28216901 +g1,19737:9618359,28216901 +g1,19737:9950313,28216901 +g1,19737:10282267,28216901 +g1,19737:10614221,28216901 +g1,19737:13269853,28216901 +g1,19737:13933761,28216901 +g1,19737:15925485,28216901 +g1,19737:16589393,28216901 +g1,19737:17585255,28216901 +g1,19737:18249163,28216901 +g1,19737:18913071,28216901 +g1,19737:19908933,28216901 +g1,19737:21900657,28216901 +g1,19737:22564565,28216901 +k1,19737:22564565,28216901:0 +h1,19737:24556289,28216901:0,0,0 +k1,19737:32583029,28216901:8026740 +g1,19737:32583029,28216901 +) +(1,19738:6630773,28901756:25952256,424439,112852 +h1,19738:6630773,28901756:0,0,0 +g1,19738:6962727,28901756 +g1,19738:7294681,28901756 +g1,19738:7626635,28901756 +g1,19738:7958589,28901756 +g1,19738:8290543,28901756 +g1,19738:8622497,28901756 +g1,19738:8954451,28901756 +g1,19738:9286405,28901756 +g1,19738:9618359,28901756 +g1,19738:9950313,28901756 +g1,19738:10282267,28901756 +g1,19738:10614221,28901756 +g1,19738:10946175,28901756 +g1,19738:11278129,28901756 +g1,19738:11610083,28901756 +g1,19738:11942037,28901756 +g1,19738:12273991,28901756 +g1,19738:12605945,28901756 +g1,19738:12937899,28901756 +g1,19738:13269853,28901756 +g1,19738:13601807,28901756 +g1,19738:13933761,28901756 +g1,19738:14265715,28901756 +g1,19738:14597669,28901756 +g1,19738:14929623,28901756 +g1,19738:15261577,28901756 +g1,19738:18581116,28901756 +g1,19738:19245024,28901756 +g1,19738:21900656,28901756 +g1,19738:24888241,28901756 +g1,19738:25552149,28901756 +k1,19738:25552149,28901756:0 +h1,19738:27875827,28901756:0,0,0 +k1,19738:32583029,28901756:4707202 +g1,19738:32583029,28901756 +) +(1,19739:6630773,29586611:25952256,424439,112852 +h1,19739:6630773,29586611:0,0,0 +g1,19739:6962727,29586611 +g1,19739:7294681,29586611 +g1,19739:7626635,29586611 +g1,19739:7958589,29586611 +g1,19739:8290543,29586611 +g1,19739:8622497,29586611 +g1,19739:8954451,29586611 +g1,19739:9286405,29586611 +g1,19739:9618359,29586611 +g1,19739:9950313,29586611 +g1,19739:10282267,29586611 +g1,19739:10614221,29586611 +g1,19739:10946175,29586611 +g1,19739:11278129,29586611 +g1,19739:11610083,29586611 +g1,19739:11942037,29586611 +g1,19739:12273991,29586611 +g1,19739:12605945,29586611 +g1,19739:12937899,29586611 +g1,19739:13269853,29586611 +g1,19739:13601807,29586611 +g1,19739:13933761,29586611 +g1,19739:14265715,29586611 +g1,19739:14597669,29586611 +g1,19739:14929623,29586611 +g1,19739:15261577,29586611 +g1,19739:17253301,29586611 +g1,19739:17917209,29586611 +g1,19739:21236748,29586611 +g1,19739:23228472,29586611 +g1,19739:23892380,29586611 +h1,19739:26879965,29586611:0,0,0 +k1,19739:32583029,29586611:5703064 +g1,19739:32583029,29586611 +) +] +) +g1,19741:32583029,29699463 +g1,19741:6630773,29699463 +g1,19741:6630773,29699463 +g1,19741:32583029,29699463 +g1,19741:32583029,29699463 +) +h1,19741:6630773,29896071:0,0,0 +(1,19744:6630773,39045273:25952256,9083666,0 +k1,19744:10523651,39045273:3892878 +h1,19743:10523651,39045273:0,0,0 +(1,19743:10523651,39045273:18166500,9083666,0 +(1,19743:10523651,39045273:18167376,9083688,0 +(1,19743:10523651,39045273:18167376,9083688,0 +(1,19743:10523651,39045273:0,9083688,0 +(1,19743:10523651,39045273:0,14208860,0 +(1,19743:10523651,39045273:28417720,14208860,0 +) +k1,19743:10523651,39045273:-28417720 +) +) +g1,19743:28691027,39045273 +) +) +) +g1,19744:28690151,39045273 +k1,19744:32583029,39045273:3892878 +) +v1,19752:6630773,39910353:0,393216,0 +(1,19787:6630773,45543479:25952256,6026342,0 +g1,19787:6630773,45543479 +g1,19787:6237557,45543479 +r1,19787:6368629,45543479:131072,6026342,0 +g1,19787:6567858,45543479 +g1,19787:6764466,45543479 +[1,19787:6764466,45543479:25818563,6026342,0 +(1,19753:6764466,40218651:25818563,701514,196608 +(1,19752:6764466,40218651:0,701514,196608 +r1,19787:7761522,40218651:997056,898122,196608 +k1,19752:6764466,40218651:-997056 +) +(1,19752:6764466,40218651:997056,701514,196608 +) +k1,19752:8004518,40218651:242996 +k1,19752:8332198,40218651:327680 +k1,19752:9965214,40218651:242997 +k1,19752:12927299,40218651:242996 +k1,19752:15600370,40218651:242996 +k1,19752:16862451,40218651:242996 +k1,19752:19901214,40218651:242997 +k1,19752:23170007,40218651:242996 +k1,19752:24697509,40218651:242996 +k1,19752:27769038,40218651:242996 +k1,19752:29434822,40218651:242997 +k1,19752:31563944,40218651:242996 +k1,19752:32583029,40218651:0 +) +(1,19753:6764466,41083731:25818563,513147,134348 +k1,19752:8772430,41083731:209656 +k1,19752:11517018,41083731:209655 +k1,19752:13352621,41083731:209656 +k1,19752:16418990,41083731:209655 +k1,19752:19390989,41083731:209656 +k1,19752:21317032,41083731:209655 +k1,19752:22185980,41083731:209656 +k1,19752:24013719,41083731:209655 +k1,19752:25171026,41083731:209656 +k1,19752:28800350,41083731:209655 +k1,19752:30029091,41083731:209656 +k1,19753:32583029,41083731:0 +) +(1,19753:6764466,41948811:25818563,513147,134348 +k1,19752:8190838,41948811:135968 +k1,19752:8986097,41948811:135967 +k1,19752:12240268,41948811:135968 +k1,19752:13004070,41948811:135967 +k1,19752:14159123,41948811:135968 +k1,19752:17123623,41948811:135967 +k1,19752:18640435,41948811:135968 +k1,19752:21586587,41948811:135968 +(1,19752:21586587,41948811:0,452978,115847 +r1,19787:24406836,41948811:2820249,568825,115847 +k1,19752:21586587,41948811:-2820249 +) +(1,19752:21586587,41948811:2820249,452978,115847 +k1,19752:21586587,41948811:3277 +h1,19752:24403559,41948811:0,411205,112570 +) +k1,19752:24542803,41948811:135967 +k1,19752:26068134,41948811:135968 +k1,19752:29942275,41948811:135967 +k1,19752:31069803,41948811:135968 +k1,19752:32583029,41948811:0 +) +(1,19753:6764466,42813891:25818563,513147,134348 +k1,19752:8349530,42813891:217327 +k1,19752:9942459,42813891:217328 +k1,19752:10515646,42813891:217327 +k1,19752:11866092,42813891:217328 +k1,19752:15668894,42813891:217327 +k1,19752:18421154,42813891:217327 +k1,19752:20264429,42813891:217328 +k1,19752:23338470,42813891:217327 +k1,19752:24574882,42813891:217327 +k1,19752:25884695,42813891:217328 +k1,19752:26761314,42813891:217327 +k1,19752:29601393,42813891:217328 +k1,19752:31436804,42813891:217327 +k1,19753:32583029,42813891:0 +) +(1,19753:6764466,43678971:25818563,505283,126483 +(1,19752:6764466,43678971:0,452978,115847 +r1,19787:8177867,43678971:1413401,568825,115847 +k1,19752:6764466,43678971:-1413401 +) +(1,19752:6764466,43678971:1413401,452978,115847 +k1,19752:6764466,43678971:3277 +h1,19752:8174590,43678971:0,411205,112570 +) +k1,19752:8411075,43678971:233208 +k1,19752:9330445,43678971:233208 +k1,19752:10842261,43678971:233209 +k1,19752:11761631,43678971:233208 +k1,19752:14354135,43678971:233208 +k1,19752:16205427,43678971:233208 +k1,19752:17584860,43678971:233208 +k1,19752:19587540,43678971:233208 +k1,19752:23331513,43678971:233209 +k1,19752:25655319,43678971:233208 +k1,19752:29683716,43678971:233208 +k1,19752:32583029,43678971:0 +) +(1,19753:6764466,44544051:25818563,513147,134348 +k1,19752:10112783,44544051:150815 +k1,19752:10949759,44544051:150814 +k1,19752:12269736,44544051:150815 +k1,19752:13412111,44544051:150815 +k1,19752:16379007,44544051:150814 +k1,19752:17145860,44544051:150815 +k1,19752:18315760,44544051:150815 +k1,19752:20247187,44544051:150814 +k1,19752:20796461,44544051:150815 +k1,19752:21598704,44544051:150815 +k1,19752:22321648,44544051:150815 +k1,19752:24831758,44544051:150814 +k1,19752:25634001,44544051:150815 +k1,19752:26803901,44544051:150815 +k1,19752:30629974,44544051:150814 +k1,19752:31440081,44544051:150815 +k1,19753:32583029,44544051:0 +) +(1,19753:6764466,45409131:25818563,513147,134348 +k1,19752:8268279,45409131:196370 +k1,19752:11366582,45409131:196369 +k1,19752:12956903,45409131:196370 +k1,19752:15027602,45409131:196369 +k1,19752:15836734,45409131:196370 +k1,19752:17052188,45409131:196369 +k1,19752:19004923,45409131:196370 +k1,19752:20275427,45409131:196369 +k1,19752:22712473,45409131:196370 +k1,19752:26564440,45409131:196369 +k1,19752:28844855,45409131:196370 +k1,19752:32583029,45409131:0 +) +] +g1,19787:32583029,45543479 +) +] +(1,19787:32583029,45706769:0,0,0 +g1,19787:32583029,45706769 +) +) +] +(1,19787:6630773,47279633:25952256,0,0 +h1,19787:6630773,47279633:25952256,0,0 +) +] +(1,19787:4262630,4025873:0,0,0 +[1,19787:-473656,4025873:0,0,0 +(1,19787:-473656,-710413:0,0,0 +(1,19787:-473656,-710413:0,0,0 +g1,19787:-473656,-710413 +) +g1,19787:-473656,-710413 ) ] ) ] !27276 -}329 -Input:3518:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3519:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3520:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3521:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}330 Input:3522:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3523:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3524:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -344699,3276 +344903,3276 @@ Input:3561:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3562:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3563:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3564:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3568:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !4336 -{330 -[1,19833:4262630,47279633:28320399,43253760,0 -(1,19833:4262630,4025873:0,0,0 -[1,19833:-473656,4025873:0,0,0 -(1,19833:-473656,-710413:0,0,0 -(1,19833:-473656,-644877:0,0,0 -k1,19833:-473656,-644877:-65536 +{331 +[1,19831:4262630,47279633:28320399,43253760,0 +(1,19831:4262630,4025873:0,0,0 +[1,19831:-473656,4025873:0,0,0 +(1,19831:-473656,-710413:0,0,0 +(1,19831:-473656,-644877:0,0,0 +k1,19831:-473656,-644877:-65536 ) -(1,19833:-473656,4736287:0,0,0 -k1,19833:-473656,4736287:5209943 +(1,19831:-473656,4736287:0,0,0 +k1,19831:-473656,4736287:5209943 ) -g1,19833:-473656,-710413 +g1,19831:-473656,-710413 ) ] ) -[1,19833:6630773,47279633:25952256,43253760,0 -[1,19833:6630773,4812305:25952256,786432,0 -(1,19833:6630773,4812305:25952256,485622,11795 -(1,19833:6630773,4812305:25952256,485622,11795 -g1,19833:3078558,4812305 -[1,19833:3078558,4812305:0,0,0 -(1,19833:3078558,2439708:0,1703936,0 -k1,19833:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19833:2537886,2439708:1179648,16384,0 +[1,19831:6630773,47279633:25952256,43253760,0 +[1,19831:6630773,4812305:25952256,786432,0 +(1,19831:6630773,4812305:25952256,485622,11795 +(1,19831:6630773,4812305:25952256,485622,11795 +g1,19831:3078558,4812305 +[1,19831:3078558,4812305:0,0,0 +(1,19831:3078558,2439708:0,1703936,0 +k1,19831:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19831:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19833:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19831:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19833:3078558,4812305:0,0,0 -(1,19833:3078558,2439708:0,1703936,0 -g1,19833:29030814,2439708 -g1,19833:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19833:36151628,1915420:16384,1179648,0 +[1,19831:3078558,4812305:0,0,0 +(1,19831:3078558,2439708:0,1703936,0 +g1,19831:29030814,2439708 +g1,19831:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19831:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19833:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19831:37855564,2439708:1179648,16384,0 ) ) -k1,19833:3078556,2439708:-34777008 +k1,19831:3078556,2439708:-34777008 ) ] -[1,19833:3078558,4812305:0,0,0 -(1,19833:3078558,49800853:0,16384,2228224 -k1,19833:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19833:2537886,49800853:1179648,16384,0 +[1,19831:3078558,4812305:0,0,0 +(1,19831:3078558,49800853:0,16384,2228224 +k1,19831:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19831:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19833:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19831:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,19833:3078558,4812305:0,0,0 -(1,19833:3078558,49800853:0,16384,2228224 -g1,19833:29030814,49800853 -g1,19833:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19833:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19833:37855564,49800853:1179648,16384,0 -) -) -k1,19833:3078556,49800853:-34777008 -) -] -g1,19833:6630773,4812305 -g1,19833:6630773,4812305 -g1,19833:9560887,4812305 -k1,19833:31387651,4812305:21826764 -) -) -] -[1,19833:6630773,45706769:25952256,40108032,0 -(1,19833:6630773,45706769:25952256,40108032,0 -(1,19833:6630773,45706769:0,0,0 -g1,19833:6630773,45706769 -) -[1,19833:6630773,45706769:25952256,40108032,0 -v1,19789:6630773,6254097:0,393216,0 -(1,19789:6630773,30500396:25952256,24639515,0 -g1,19789:6630773,30500396 -g1,19789:6237557,30500396 -r1,19833:6368629,30500396:131072,24639515,0 -g1,19789:6567858,30500396 -g1,19789:6764466,30500396 -[1,19789:6764466,30500396:25818563,24639515,0 -(1,19755:6764466,6374028:25818563,513147,134348 -k1,19754:9178514,6374028:251360 -k1,19754:10421434,6374028:251360 -k1,19754:12650016,6374028:251361 -k1,19754:14599414,6374028:251360 -k1,19754:18290759,6374028:251360 -k1,19754:20149717,6374028:251360 -k1,19754:21592522,6374028:251360 -k1,19754:24031474,6374028:251360 -k1,19754:26163718,6374028:251361 -k1,19754:27027840,6374028:251360 -k1,19754:30223733,6374028:251360 -k1,19754:32583029,6374028:0 -) -(1,19755:6764466,7239108:25818563,513147,134348 -k1,19754:7628826,7239108:212932 -k1,19754:8860843,7239108:212932 -k1,19754:11598223,7239108:212933 -k1,19754:13332246,7239108:212932 -k1,19754:14231340,7239108:212932 -k1,19754:16140999,7239108:212932 -k1,19754:19298464,7239108:212932 -k1,19754:21738965,7239108:212932 -k1,19754:24081163,7239108:212933 -k1,19754:27574827,7239108:212932 -k1,19754:29820686,7239108:212932 -k1,19754:32583029,7239108:0 -) -(1,19755:6764466,8104188:25818563,513147,134348 -g1,19754:8744964,8104188 -g1,19754:9627078,8104188 -g1,19754:11859234,8104188 -g1,19754:14132677,8104188 -g1,19754:16029944,8104188 -g1,19754:17964566,8104188 -g1,19754:20052543,8104188 -g1,19754:21645723,8104188 -g1,19754:23092758,8104188 -g1,19754:24544380,8104188 -k1,19755:32583029,8104188:6171529 -g1,19755:32583029,8104188 -) -(1,19757:6764466,8969268:25818563,505283,138281 -h1,19756:6764466,8969268:983040,0,0 -k1,19756:10454382,8969268:171943 -k1,19756:13454858,8969268:171943 -k1,19756:16779083,8969268:171943 -$1,19756:16779083,8969268 -$1,19756:17281744,8969268 -k1,19756:17453687,8969268:171943 -k1,19756:18817075,8969268:171943 -$1,19756:18817075,8969268 -$1,19756:19368888,8969268 -k1,19756:19540831,8969268:171943 -k1,19756:23450948,8969268:171943 -k1,19756:24238929,8969268:171943 -(1,19756:24238929,8969268:0,452978,115847 -r1,19833:27059178,8969268:2820249,568825,115847 -k1,19756:24238929,8969268:-2820249 -) -(1,19756:24238929,8969268:2820249,452978,115847 -k1,19756:24238929,8969268:3277 -h1,19756:27055901,8969268:0,411205,112570 -) -k1,19756:27231121,8969268:171943 -k1,19756:28792427,8969268:171943 -k1,19756:32583029,8969268:0 -) -(1,19757:6764466,9834348:25818563,513147,134348 -k1,19756:9050820,9834348:185925 -k1,19756:12065279,9834348:185926 -k1,19756:13387598,9834348:185925 -k1,19756:15116242,9834348:185926 -k1,19756:18454449,9834348:185925 -k1,19756:22378549,9834348:185926 -k1,19756:23223766,9834348:185925 -k1,19756:26251333,9834348:185926 -k1,19756:27628704,9834348:185926 -k1,19756:30572384,9834348:185925 -k1,19756:32583029,9834348:0 -) -(1,19757:6764466,10699428:25818563,513147,134348 -k1,19756:9726931,10699428:168665 -k1,19756:10511635,10699428:168666 -k1,19756:13375796,10699428:168665 -(1,19756:13375796,10699428:0,452978,115847 -r1,19833:14437485,10699428:1061689,568825,115847 -k1,19756:13375796,10699428:-1061689 -) -(1,19756:13375796,10699428:1061689,452978,115847 -k1,19756:13375796,10699428:3277 -h1,19756:14434208,10699428:0,411205,112570 -) -k1,19756:14606150,10699428:168665 -k1,19756:15460977,10699428:168665 -k1,19756:18827145,10699428:168666 -k1,19756:20731203,10699428:168665 -k1,19756:22669340,10699428:168665 -k1,19756:26749849,10699428:168665 -k1,19756:29674304,10699428:168666 -k1,19756:30862054,10699428:168665 -k1,19756:32583029,10699428:0 -) -(1,19757:6764466,11564508:25818563,505283,134348 -g1,19756:9771257,11564508 -g1,19756:11825155,11564508 -g1,19756:12833754,11564508 -k1,19757:32583029,11564508:17794336 -g1,19757:32583029,11564508 -) -v1,19759:6764466,12249363:0,393216,0 -(1,19766:6764466,14644611:25818563,2788464,196608 -g1,19766:6764466,14644611 -g1,19766:6764466,14644611 -g1,19766:6567858,14644611 -(1,19766:6567858,14644611:0,2788464,196608 -r1,19833:32779637,14644611:26211779,2985072,196608 -k1,19766:6567857,14644611:-26211780 -) -(1,19766:6567858,14644611:26211779,2788464,196608 -[1,19766:6764466,14644611:25818563,2591856,0 -(1,19761:6764466,12477194:25818563,424439,112852 -(1,19760:6764466,12477194:0,0,0 -g1,19760:6764466,12477194 -g1,19760:6764466,12477194 -g1,19760:6436786,12477194 -(1,19760:6436786,12477194:0,0,0 -) -g1,19760:6764466,12477194 -) -k1,19761:6764466,12477194:0 -g1,19761:10747914,12477194 -g1,19761:11411822,12477194 -k1,19761:11411822,12477194:0 -h1,19761:13735500,12477194:0,0,0 -k1,19761:32583028,12477194:18847528 -g1,19761:32583028,12477194 -) -(1,19762:6764466,13162049:25818563,431045,112852 -h1,19762:6764466,13162049:0,0,0 -g1,19762:7096420,13162049 -g1,19762:7428374,13162049 -g1,19762:7760328,13162049 -g1,19762:8092282,13162049 -g1,19762:8424236,13162049 -g1,19762:8756190,13162049 -g1,19762:9088144,13162049 -g1,19762:11743776,13162049 -g1,19762:12407684,13162049 -g1,19762:14399408,13162049 -g1,19762:15063316,13162049 -g1,19762:17055040,13162049 -g1,19762:17718948,13162049 -g1,19762:18382856,13162049 -g1,19762:20042626,13162049 -g1,19762:22366304,13162049 -g1,19762:23030212,13162049 -g1,19762:27677568,13162049 -h1,19762:28009522,13162049:0,0,0 -k1,19762:32583029,13162049:4573507 -g1,19762:32583029,13162049 -) -(1,19763:6764466,13846904:25818563,424439,112852 -h1,19763:6764466,13846904:0,0,0 -g1,19763:7096420,13846904 -g1,19763:7428374,13846904 -g1,19763:11743775,13846904 -h1,19763:12075729,13846904:0,0,0 -k1,19763:32583029,13846904:20507300 -g1,19763:32583029,13846904 -) -(1,19764:6764466,14531759:25818563,424439,112852 -h1,19764:6764466,14531759:0,0,0 -g1,19764:7096420,14531759 -g1,19764:7428374,14531759 -g1,19764:11743775,14531759 -g1,19764:12407683,14531759 -g1,19764:15063315,14531759 -g1,19764:15727223,14531759 -g1,19764:16391131,14531759 -g1,19764:19046763,14531759 -g1,19764:21038487,14531759 -g1,19764:21702395,14531759 -g1,19764:22698257,14531759 -g1,19764:25353889,14531759 -g1,19764:27677567,14531759 -g1,19764:28341475,14531759 -h1,19764:30997107,14531759:0,0,0 -k1,19764:32583029,14531759:1585922 -g1,19764:32583029,14531759 -) -] -) -g1,19766:32583029,14644611 -g1,19766:6764466,14644611 -g1,19766:6764466,14644611 -g1,19766:32583029,14644611 -g1,19766:32583029,14644611 -) -h1,19766:6764466,14841219:0,0,0 -(1,19769:6764466,23943590:25818563,9036835,0 -k1,19769:10637290,23943590:3872824 -h1,19768:10637290,23943590:0,0,0 -(1,19768:10637290,23943590:18072915,9036835,0 -(1,19768:10637290,23943590:18073715,9036857,0 -(1,19768:10637290,23943590:18073715,9036857,0 -(1,19768:10637290,23943590:0,9036857,0 -(1,19768:10637290,23943590:0,14208860,0 -(1,19768:10637290,23943590:28417720,14208860,0 -) -k1,19768:10637290,23943590:-28417720 -) -) -g1,19768:28711005,23943590 -) -) -) -g1,19769:28710205,23943590 -k1,19769:32583029,23943590:3872824 -) -(1,19776:6764466,24808670:25818563,505283,134348 -h1,19775:6764466,24808670:983040,0,0 -k1,19775:8822035,24808670:172098 -k1,19775:11027714,24808670:172097 -k1,19775:14184322,24808670:172098 -k1,19775:15563592,24808670:172097 -k1,19775:18586506,24808670:172098 -k1,19775:19520132,24808670:172098 -k1,19775:22272381,24808670:172097 -k1,19775:24434151,24808670:172098 -k1,19775:27164774,24808670:172097 -k1,19775:29541503,24808670:172098 -k1,19776:32583029,24808670:0 -) -(1,19776:6764466,25673750:25818563,505283,134348 -(1,19775:6764466,25673750:0,414482,115847 -r1,19833:8177867,25673750:1413401,530329,115847 -k1,19775:6764466,25673750:-1413401 -) -(1,19775:6764466,25673750:1413401,414482,115847 -k1,19775:6764466,25673750:3277 -h1,19775:8174590,25673750:0,411205,112570 -) -k1,19775:8408233,25673750:230366 -k1,19775:9830044,25673750:230366 -(1,19775:9830044,25673750:0,414482,115847 -r1,19833:11243445,25673750:1413401,530329,115847 -k1,19775:9830044,25673750:-1413401 -) -(1,19775:9830044,25673750:1413401,414482,115847 -k1,19775:9830044,25673750:3277 -h1,19775:11240168,25673750:0,411205,112570 -) -k1,19775:11473811,25673750:230366 -k1,19775:12895623,25673750:230367 -k1,19775:16565974,25673750:230366 -k1,19775:18080846,25673750:230366 -k1,19775:20837625,25673750:230366 -k1,19775:22707046,25673750:230366 -k1,19775:24041694,25673750:230366 -k1,19775:25019827,25673750:230367 -k1,19775:26763419,25673750:230366 -k1,19775:28387736,25673750:230366 -k1,19775:31446635,25673750:230366 -k1,19775:32583029,25673750:0 -) -(1,19776:6764466,26538830:25818563,485622,11795 -k1,19776:32583028,26538830:24223416 -g1,19776:32583028,26538830 -) -v1,19778:6764466,27223685:0,393216,0 -(1,19786:6764466,30303788:25818563,3473319,196608 -g1,19786:6764466,30303788 -g1,19786:6764466,30303788 -g1,19786:6567858,30303788 -(1,19786:6567858,30303788:0,3473319,196608 -r1,19833:32779637,30303788:26211779,3669927,196608 -k1,19786:6567857,30303788:-26211780 -) -(1,19786:6567858,30303788:26211779,3473319,196608 -[1,19786:6764466,30303788:25818563,3276711,0 -(1,19780:6764466,27451516:25818563,424439,112852 -(1,19779:6764466,27451516:0,0,0 -g1,19779:6764466,27451516 -g1,19779:6764466,27451516 -g1,19779:6436786,27451516 -(1,19779:6436786,27451516:0,0,0 -) -g1,19779:6764466,27451516 -) -k1,19780:6764466,27451516:0 -g1,19780:10747914,27451516 -g1,19780:11411822,27451516 -k1,19780:11411822,27451516:0 -h1,19780:13735500,27451516:0,0,0 -k1,19780:32583028,27451516:18847528 -g1,19780:32583028,27451516 -) -(1,19781:6764466,28136371:25818563,431045,112852 -h1,19781:6764466,28136371:0,0,0 -g1,19781:7096420,28136371 -g1,19781:7428374,28136371 -g1,19781:7760328,28136371 -g1,19781:8092282,28136371 -g1,19781:8424236,28136371 -g1,19781:8756190,28136371 -g1,19781:9088144,28136371 -g1,19781:11743776,28136371 -g1,19781:12407684,28136371 -g1,19781:14399408,28136371 -g1,19781:15063316,28136371 -g1,19781:17055040,28136371 -g1,19781:17718948,28136371 -g1,19781:18382856,28136371 -g1,19781:20042626,28136371 -g1,19781:22366304,28136371 -g1,19781:23030212,28136371 -g1,19781:27677568,28136371 -h1,19781:28009522,28136371:0,0,0 -k1,19781:32583029,28136371:4573507 -g1,19781:32583029,28136371 -) -(1,19782:6764466,28821226:25818563,424439,112852 -h1,19782:6764466,28821226:0,0,0 -g1,19782:7096420,28821226 -g1,19782:7428374,28821226 -g1,19782:11743775,28821226 -h1,19782:12075729,28821226:0,0,0 -k1,19782:32583029,28821226:20507300 -g1,19782:32583029,28821226 -) -(1,19783:6764466,29506081:25818563,424439,112852 -h1,19783:6764466,29506081:0,0,0 -g1,19783:7096420,29506081 -g1,19783:7428374,29506081 -g1,19783:14067453,29506081 -g1,19783:14731361,29506081 -g1,19783:16391131,29506081 -g1,19783:18050901,29506081 -g1,19783:18714809,29506081 -g1,19783:20374579,29506081 -g1,19783:22366303,29506081 -g1,19783:23030211,29506081 -g1,19783:24026073,29506081 -g1,19783:26681705,29506081 -g1,19783:29005383,29506081 -g1,19783:29669291,29506081 -k1,19783:29669291,29506081:0 -h1,19783:32324923,29506081:0,0,0 -k1,19783:32583029,29506081:258106 -g1,19783:32583029,29506081 -) -(1,19784:6764466,30190936:25818563,424439,112852 -h1,19784:6764466,30190936:0,0,0 -g1,19784:7096420,30190936 -g1,19784:7428374,30190936 -g1,19784:7760328,30190936 -g1,19784:8092282,30190936 -g1,19784:8424236,30190936 -g1,19784:8756190,30190936 -g1,19784:9088144,30190936 -g1,19784:9420098,30190936 -g1,19784:9752052,30190936 -g1,19784:10084006,30190936 -g1,19784:10415960,30190936 -g1,19784:10747914,30190936 -g1,19784:11079868,30190936 -g1,19784:13071592,30190936 -g1,19784:13735500,30190936 -h1,19784:16723085,30190936:0,0,0 -k1,19784:32583029,30190936:15859944 -g1,19784:32583029,30190936 -) -] -) -g1,19786:32583029,30303788 -g1,19786:6764466,30303788 -g1,19786:6764466,30303788 -g1,19786:32583029,30303788 -g1,19786:32583029,30303788 -) -h1,19786:6764466,30500396:0,0,0 -] -g1,19789:32583029,30500396 -) -h1,19789:6630773,30500396:0,0,0 -(1,19795:6630773,33331556:25952256,32768,229376 -(1,19795:6630773,33331556:0,32768,229376 -(1,19795:6630773,33331556:5505024,32768,229376 -r1,19833:12135797,33331556:5505024,262144,229376 -) -k1,19795:6630773,33331556:-5505024 -) -(1,19795:6630773,33331556:25952256,32768,0 -r1,19833:32583029,33331556:25952256,32768,0 -) -) -(1,19795:6630773,34963408:25952256,606339,14155 -(1,19795:6630773,34963408:1974731,582746,14155 -g1,19795:6630773,34963408 -g1,19795:8605504,34963408 -) -k1,19795:32583028,34963408:20424424 -g1,19795:32583028,34963408 -) -(1,19798:6630773,36221704:25952256,513147,134348 -k1,19797:7680088,36221704:175720 -k1,19797:10882916,36221704:175720 -k1,19797:13129574,36221704:175720 -(1,19797:13129574,36221704:0,452978,115847 -r1,19833:18411805,36221704:5282231,568825,115847 -k1,19797:13129574,36221704:-5282231 -) -(1,19797:13129574,36221704:5282231,452978,115847 -k1,19797:13129574,36221704:3277 -h1,19797:18408528,36221704:0,411205,112570 -) -k1,19797:18761195,36221704:175720 -k1,19797:21199218,36221704:175720 -k1,19797:22394023,36221704:175720 -(1,19797:22394023,36221704:0,452978,115847 -r1,19833:23807424,36221704:1413401,568825,115847 -k1,19797:22394023,36221704:-1413401 -) -(1,19797:22394023,36221704:1413401,452978,115847 -k1,19797:22394023,36221704:3277 -h1,19797:23804147,36221704:0,411205,112570 -) -k1,19797:23983144,36221704:175720 -k1,19797:25539052,36221704:175720 -k1,19797:27937098,36221704:175720 -k1,19797:30155575,36221704:175720 -k1,19797:32583029,36221704:0 -) -(1,19798:6630773,37086784:25952256,513147,134348 -k1,19797:7332815,37086784:243945 -k1,19797:8228188,37086784:243945 -k1,19797:8827993,37086784:243945 -k1,19797:12235361,37086784:243945 -k1,19797:14024645,37086784:243945 -k1,19797:17122028,37086784:243945 -k1,19797:20153875,37086784:243945 -k1,19797:20753680,37086784:243945 -k1,19797:23394932,37086784:243945 -k1,19797:26629285,37086784:243945 -k1,19797:28440851,37086784:243945 -k1,19797:29703881,37086784:243945 -k1,19797:31510860,37086784:243945 -k1,19797:32583029,37086784:0 -) -(1,19798:6630773,37951864:25952256,505283,134348 -k1,19797:8510345,37951864:224788 -k1,19797:9726694,37951864:224789 -k1,19797:13536957,37951864:224788 -k1,19797:15355581,37951864:224788 -k1,19797:18653352,37951864:224788 -k1,19797:20258329,37951864:224789 -k1,19797:22198850,37951864:224788 -k1,19797:22881735,37951864:224788 -k1,19797:25736483,37951864:224788 -k1,19797:26612700,37951864:224789 -k1,19797:29680440,37951864:224788 -k1,19798:32583029,37951864:0 -) -(1,19798:6630773,38816944:25952256,513147,134348 -k1,19797:8370956,38816944:142415 -k1,19797:9322740,38816944:142414 -k1,19797:10484240,38816944:142415 -k1,19797:12016017,38816944:142414 -k1,19797:13425898,38816944:142415 -k1,19797:14587398,38816944:142415 -k1,19797:17254259,38816944:142414 -k1,19797:20516843,38816944:142415 -k1,19797:22040102,38816944:142415 -k1,19797:23903491,38816944:142414 -k1,19797:25818655,38816944:142415 -k1,19797:27033238,38816944:142414 -k1,19797:28825850,38816944:142415 -k1,19797:32583029,38816944:0 -) -(1,19798:6630773,39682024:25952256,505283,134348 -k1,19797:8516143,39682024:167016 -k1,19797:10826186,39682024:167016 -k1,19797:12277708,39682024:167016 -k1,19797:13463808,39682024:167015 -k1,19797:15020187,39682024:167016 -k1,19797:16378648,39682024:167016 -k1,19797:20053806,39682024:167016 -k1,19797:22230811,39682024:167016 -k1,19797:22753687,39682024:167016 -k1,19797:24615463,39682024:167015 -k1,19797:26059776,39682024:167016 -k1,19797:27218352,39682024:167016 -k1,19797:30839771,39682024:167016 -k1,19797:32583029,39682024:0 -) -(1,19798:6630773,40547104:25952256,505283,126483 -h1,19797:7601361,40547104:0,0,0 -g1,19797:7800590,40547104 -g1,19797:8993345,40547104 -g1,19797:9958690,40547104 -g1,19797:11177004,40547104 -g1,19797:14229671,40547104 -g1,19797:15942126,40547104 -g1,19797:16757393,40547104 -g1,19797:17975707,40547104 -k1,19798:32583029,40547104:12137270 -g1,19798:32583029,40547104 -) -(1,19800:6630773,41412184:25952256,513147,134348 -h1,19799:6630773,41412184:983040,0,0 -k1,19799:9539402,41412184:142354 -k1,19799:10037616,41412184:142354 -k1,19799:12073959,41412184:142353 -k1,19799:12747810,41412184:142354 -k1,19799:15475559,41412184:142354 -k1,19799:16269341,41412184:142354 -k1,19799:17182397,41412184:142353 -k1,19799:20342684,41412184:142354 -k1,19799:21936660,41412184:142354 -k1,19799:23541122,41412184:142354 -k1,19799:25943157,41412184:142354 -k1,19799:26441370,41412184:142353 -k1,19799:28650074,41412184:142354 -k1,19799:29834450,41412184:142354 -k1,19799:32583029,41412184:0 -) -(1,19800:6630773,42277264:25952256,513147,134348 -k1,19799:7532735,42277264:285924 -k1,19799:8837744,42277264:285924 -k1,19799:10429801,42277264:285924 -k1,19799:11993022,42277264:285924 -k1,19799:14940363,42277264:285924 -k1,19799:15842325,42277264:285924 -k1,19799:18406937,42277264:285925 -h1,19799:19949655,42277264:0,0,0 -k1,19799:20235579,42277264:285924 -k1,19799:21330873,42277264:285924 -k1,19799:23114950,42277264:285924 -h1,19799:24310327,42277264:0,0,0 -k1,19799:24596251,42277264:285924 -k1,19799:25901260,42277264:285924 -k1,19799:29070113,42277264:285924 -k1,19799:31966991,42277264:285924 -k1,19799:32583029,42277264:0 -) -(1,19800:6630773,43142344:25952256,505283,134348 -k1,19799:9555598,43142344:222120 -k1,19799:11450197,43142344:222120 -k1,19799:12869004,43142344:222120 -k1,19799:15974053,43142344:222120 -k1,19799:16727670,43142344:222120 -k1,19799:18016061,43142344:222120 -k1,19799:18963010,43142344:222121 -k1,19799:21678120,43142344:222120 -k1,19799:23294191,43142344:222120 -k1,19799:25218281,43142344:222120 -k1,19799:28788635,43142344:222120 -k1,19799:30082924,43142344:222120 -k1,19799:30763141,43142344:222120 -k1,19799:31516758,43142344:222120 -k1,19799:32583029,43142344:0 -) -(1,19800:6630773,44007424:25952256,513147,134348 -k1,19799:9787165,44007424:220379 -k1,19799:11552884,44007424:220380 -k1,19799:14455652,44007424:220379 -k1,19799:17087102,44007424:220380 -k1,19799:20576417,44007424:220379 -k1,19799:21606167,44007424:220380 -k1,19799:22845631,44007424:220379 -k1,19799:24455374,44007424:220380 -k1,19799:25623404,44007424:220379 -k1,19799:27295406,44007424:220380 -k1,19799:29582135,44007424:220379 -k1,19799:32583029,44007424:0 -) -(1,19800:6630773,44872504:25952256,513147,134348 -k1,19799:7683996,44872504:282520 -k1,19799:11973387,44872504:282520 -k1,19799:15246314,44872504:282519 -k1,19799:16476485,44872504:282520 -k1,19799:18210627,44872504:282520 -k1,19799:20559497,44872504:282520 -k1,19799:23593218,44872504:282520 -k1,19799:24231598,44872504:282520 -k1,19799:28084518,44872504:282519 -k1,19799:30878378,44872504:282520 -k1,19799:31812326,44872504:282520 -k1,19799:32583029,44872504:0 -) -] -(1,19833:32583029,45706769:0,0,0 -g1,19833:32583029,45706769 -) -) -] -(1,19833:6630773,47279633:25952256,0,0 -h1,19833:6630773,47279633:25952256,0,0 -) -] -(1,19833:4262630,4025873:0,0,0 -[1,19833:-473656,4025873:0,0,0 -(1,19833:-473656,-710413:0,0,0 -(1,19833:-473656,-710413:0,0,0 -g1,19833:-473656,-710413 -) -g1,19833:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,19831:3078558,4812305:0,0,0 +(1,19831:3078558,49800853:0,16384,2228224 +g1,19831:29030814,49800853 +g1,19831:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19831:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19831:37855564,49800853:1179648,16384,0 +) +) +k1,19831:3078556,49800853:-34777008 +) +] +g1,19831:6630773,4812305 +g1,19831:6630773,4812305 +g1,19831:9560887,4812305 +k1,19831:31387651,4812305:21826764 +) +) +] +[1,19831:6630773,45706769:25952256,40108032,0 +(1,19831:6630773,45706769:25952256,40108032,0 +(1,19831:6630773,45706769:0,0,0 +g1,19831:6630773,45706769 +) +[1,19831:6630773,45706769:25952256,40108032,0 +v1,19787:6630773,6254097:0,393216,0 +(1,19787:6630773,30500396:25952256,24639515,0 +g1,19787:6630773,30500396 +g1,19787:6237557,30500396 +r1,19831:6368629,30500396:131072,24639515,0 +g1,19787:6567858,30500396 +g1,19787:6764466,30500396 +[1,19787:6764466,30500396:25818563,24639515,0 +(1,19753:6764466,6374028:25818563,513147,134348 +k1,19752:9178514,6374028:251360 +k1,19752:10421434,6374028:251360 +k1,19752:12650016,6374028:251361 +k1,19752:14599414,6374028:251360 +k1,19752:18290759,6374028:251360 +k1,19752:20149717,6374028:251360 +k1,19752:21592522,6374028:251360 +k1,19752:24031474,6374028:251360 +k1,19752:26163718,6374028:251361 +k1,19752:27027840,6374028:251360 +k1,19752:30223733,6374028:251360 +k1,19752:32583029,6374028:0 +) +(1,19753:6764466,7239108:25818563,513147,134348 +k1,19752:7628826,7239108:212932 +k1,19752:8860843,7239108:212932 +k1,19752:11598223,7239108:212933 +k1,19752:13332246,7239108:212932 +k1,19752:14231340,7239108:212932 +k1,19752:16140999,7239108:212932 +k1,19752:19298464,7239108:212932 +k1,19752:21738965,7239108:212932 +k1,19752:24081163,7239108:212933 +k1,19752:27574827,7239108:212932 +k1,19752:29820686,7239108:212932 +k1,19752:32583029,7239108:0 +) +(1,19753:6764466,8104188:25818563,513147,134348 +g1,19752:8744964,8104188 +g1,19752:9627078,8104188 +g1,19752:11859234,8104188 +g1,19752:14132677,8104188 +g1,19752:16029944,8104188 +g1,19752:17964566,8104188 +g1,19752:20052543,8104188 +g1,19752:21645723,8104188 +g1,19752:23092758,8104188 +g1,19752:24544380,8104188 +k1,19753:32583029,8104188:6171529 +g1,19753:32583029,8104188 +) +(1,19755:6764466,8969268:25818563,505283,138281 +h1,19754:6764466,8969268:983040,0,0 +k1,19754:10454382,8969268:171943 +k1,19754:13454858,8969268:171943 +k1,19754:16779083,8969268:171943 +$1,19754:16779083,8969268 +$1,19754:17281744,8969268 +k1,19754:17453687,8969268:171943 +k1,19754:18817075,8969268:171943 +$1,19754:18817075,8969268 +$1,19754:19368888,8969268 +k1,19754:19540831,8969268:171943 +k1,19754:23450948,8969268:171943 +k1,19754:24238929,8969268:171943 +(1,19754:24238929,8969268:0,452978,115847 +r1,19831:27059178,8969268:2820249,568825,115847 +k1,19754:24238929,8969268:-2820249 +) +(1,19754:24238929,8969268:2820249,452978,115847 +k1,19754:24238929,8969268:3277 +h1,19754:27055901,8969268:0,411205,112570 +) +k1,19754:27231121,8969268:171943 +k1,19754:28792427,8969268:171943 +k1,19754:32583029,8969268:0 +) +(1,19755:6764466,9834348:25818563,513147,134348 +k1,19754:9050820,9834348:185925 +k1,19754:12065279,9834348:185926 +k1,19754:13387598,9834348:185925 +k1,19754:15116242,9834348:185926 +k1,19754:18454449,9834348:185925 +k1,19754:22378549,9834348:185926 +k1,19754:23223766,9834348:185925 +k1,19754:26251333,9834348:185926 +k1,19754:27628704,9834348:185926 +k1,19754:30572384,9834348:185925 +k1,19754:32583029,9834348:0 +) +(1,19755:6764466,10699428:25818563,513147,134348 +k1,19754:9726931,10699428:168665 +k1,19754:10511635,10699428:168666 +k1,19754:13375796,10699428:168665 +(1,19754:13375796,10699428:0,452978,115847 +r1,19831:14437485,10699428:1061689,568825,115847 +k1,19754:13375796,10699428:-1061689 +) +(1,19754:13375796,10699428:1061689,452978,115847 +k1,19754:13375796,10699428:3277 +h1,19754:14434208,10699428:0,411205,112570 +) +k1,19754:14606150,10699428:168665 +k1,19754:15460977,10699428:168665 +k1,19754:18827145,10699428:168666 +k1,19754:20731203,10699428:168665 +k1,19754:22669340,10699428:168665 +k1,19754:26749849,10699428:168665 +k1,19754:29674304,10699428:168666 +k1,19754:30862054,10699428:168665 +k1,19754:32583029,10699428:0 +) +(1,19755:6764466,11564508:25818563,505283,134348 +g1,19754:9771257,11564508 +g1,19754:11825155,11564508 +g1,19754:12833754,11564508 +k1,19755:32583029,11564508:17794336 +g1,19755:32583029,11564508 +) +v1,19757:6764466,12249363:0,393216,0 +(1,19764:6764466,14644611:25818563,2788464,196608 +g1,19764:6764466,14644611 +g1,19764:6764466,14644611 +g1,19764:6567858,14644611 +(1,19764:6567858,14644611:0,2788464,196608 +r1,19831:32779637,14644611:26211779,2985072,196608 +k1,19764:6567857,14644611:-26211780 +) +(1,19764:6567858,14644611:26211779,2788464,196608 +[1,19764:6764466,14644611:25818563,2591856,0 +(1,19759:6764466,12477194:25818563,424439,112852 +(1,19758:6764466,12477194:0,0,0 +g1,19758:6764466,12477194 +g1,19758:6764466,12477194 +g1,19758:6436786,12477194 +(1,19758:6436786,12477194:0,0,0 +) +g1,19758:6764466,12477194 +) +k1,19759:6764466,12477194:0 +g1,19759:10747914,12477194 +g1,19759:11411822,12477194 +k1,19759:11411822,12477194:0 +h1,19759:13735500,12477194:0,0,0 +k1,19759:32583028,12477194:18847528 +g1,19759:32583028,12477194 +) +(1,19760:6764466,13162049:25818563,431045,112852 +h1,19760:6764466,13162049:0,0,0 +g1,19760:7096420,13162049 +g1,19760:7428374,13162049 +g1,19760:7760328,13162049 +g1,19760:8092282,13162049 +g1,19760:8424236,13162049 +g1,19760:8756190,13162049 +g1,19760:9088144,13162049 +g1,19760:11743776,13162049 +g1,19760:12407684,13162049 +g1,19760:14399408,13162049 +g1,19760:15063316,13162049 +g1,19760:17055040,13162049 +g1,19760:17718948,13162049 +g1,19760:18382856,13162049 +g1,19760:20042626,13162049 +g1,19760:22366304,13162049 +g1,19760:23030212,13162049 +g1,19760:27677568,13162049 +h1,19760:28009522,13162049:0,0,0 +k1,19760:32583029,13162049:4573507 +g1,19760:32583029,13162049 +) +(1,19761:6764466,13846904:25818563,424439,112852 +h1,19761:6764466,13846904:0,0,0 +g1,19761:7096420,13846904 +g1,19761:7428374,13846904 +g1,19761:11743775,13846904 +h1,19761:12075729,13846904:0,0,0 +k1,19761:32583029,13846904:20507300 +g1,19761:32583029,13846904 +) +(1,19762:6764466,14531759:25818563,424439,112852 +h1,19762:6764466,14531759:0,0,0 +g1,19762:7096420,14531759 +g1,19762:7428374,14531759 +g1,19762:11743775,14531759 +g1,19762:12407683,14531759 +g1,19762:15063315,14531759 +g1,19762:15727223,14531759 +g1,19762:16391131,14531759 +g1,19762:19046763,14531759 +g1,19762:21038487,14531759 +g1,19762:21702395,14531759 +g1,19762:22698257,14531759 +g1,19762:25353889,14531759 +g1,19762:27677567,14531759 +g1,19762:28341475,14531759 +h1,19762:30997107,14531759:0,0,0 +k1,19762:32583029,14531759:1585922 +g1,19762:32583029,14531759 +) +] +) +g1,19764:32583029,14644611 +g1,19764:6764466,14644611 +g1,19764:6764466,14644611 +g1,19764:32583029,14644611 +g1,19764:32583029,14644611 +) +h1,19764:6764466,14841219:0,0,0 +(1,19767:6764466,23943590:25818563,9036835,0 +k1,19767:10637290,23943590:3872824 +h1,19766:10637290,23943590:0,0,0 +(1,19766:10637290,23943590:18072915,9036835,0 +(1,19766:10637290,23943590:18073715,9036857,0 +(1,19766:10637290,23943590:18073715,9036857,0 +(1,19766:10637290,23943590:0,9036857,0 +(1,19766:10637290,23943590:0,14208860,0 +(1,19766:10637290,23943590:28417720,14208860,0 +) +k1,19766:10637290,23943590:-28417720 +) +) +g1,19766:28711005,23943590 +) +) +) +g1,19767:28710205,23943590 +k1,19767:32583029,23943590:3872824 +) +(1,19774:6764466,24808670:25818563,505283,134348 +h1,19773:6764466,24808670:983040,0,0 +k1,19773:8822035,24808670:172098 +k1,19773:11027714,24808670:172097 +k1,19773:14184322,24808670:172098 +k1,19773:15563592,24808670:172097 +k1,19773:18586506,24808670:172098 +k1,19773:19520132,24808670:172098 +k1,19773:22272381,24808670:172097 +k1,19773:24434151,24808670:172098 +k1,19773:27164774,24808670:172097 +k1,19773:29541503,24808670:172098 +k1,19774:32583029,24808670:0 +) +(1,19774:6764466,25673750:25818563,505283,134348 +(1,19773:6764466,25673750:0,414482,115847 +r1,19831:8177867,25673750:1413401,530329,115847 +k1,19773:6764466,25673750:-1413401 +) +(1,19773:6764466,25673750:1413401,414482,115847 +k1,19773:6764466,25673750:3277 +h1,19773:8174590,25673750:0,411205,112570 +) +k1,19773:8408233,25673750:230366 +k1,19773:9830044,25673750:230366 +(1,19773:9830044,25673750:0,414482,115847 +r1,19831:11243445,25673750:1413401,530329,115847 +k1,19773:9830044,25673750:-1413401 +) +(1,19773:9830044,25673750:1413401,414482,115847 +k1,19773:9830044,25673750:3277 +h1,19773:11240168,25673750:0,411205,112570 +) +k1,19773:11473811,25673750:230366 +k1,19773:12895623,25673750:230367 +k1,19773:16565974,25673750:230366 +k1,19773:18080846,25673750:230366 +k1,19773:20837625,25673750:230366 +k1,19773:22707046,25673750:230366 +k1,19773:24041694,25673750:230366 +k1,19773:25019827,25673750:230367 +k1,19773:26763419,25673750:230366 +k1,19773:28387736,25673750:230366 +k1,19773:31446635,25673750:230366 +k1,19773:32583029,25673750:0 +) +(1,19774:6764466,26538830:25818563,485622,11795 +k1,19774:32583028,26538830:24223416 +g1,19774:32583028,26538830 +) +v1,19776:6764466,27223685:0,393216,0 +(1,19784:6764466,30303788:25818563,3473319,196608 +g1,19784:6764466,30303788 +g1,19784:6764466,30303788 +g1,19784:6567858,30303788 +(1,19784:6567858,30303788:0,3473319,196608 +r1,19831:32779637,30303788:26211779,3669927,196608 +k1,19784:6567857,30303788:-26211780 +) +(1,19784:6567858,30303788:26211779,3473319,196608 +[1,19784:6764466,30303788:25818563,3276711,0 +(1,19778:6764466,27451516:25818563,424439,112852 +(1,19777:6764466,27451516:0,0,0 +g1,19777:6764466,27451516 +g1,19777:6764466,27451516 +g1,19777:6436786,27451516 +(1,19777:6436786,27451516:0,0,0 +) +g1,19777:6764466,27451516 +) +k1,19778:6764466,27451516:0 +g1,19778:10747914,27451516 +g1,19778:11411822,27451516 +k1,19778:11411822,27451516:0 +h1,19778:13735500,27451516:0,0,0 +k1,19778:32583028,27451516:18847528 +g1,19778:32583028,27451516 +) +(1,19779:6764466,28136371:25818563,431045,112852 +h1,19779:6764466,28136371:0,0,0 +g1,19779:7096420,28136371 +g1,19779:7428374,28136371 +g1,19779:7760328,28136371 +g1,19779:8092282,28136371 +g1,19779:8424236,28136371 +g1,19779:8756190,28136371 +g1,19779:9088144,28136371 +g1,19779:11743776,28136371 +g1,19779:12407684,28136371 +g1,19779:14399408,28136371 +g1,19779:15063316,28136371 +g1,19779:17055040,28136371 +g1,19779:17718948,28136371 +g1,19779:18382856,28136371 +g1,19779:20042626,28136371 +g1,19779:22366304,28136371 +g1,19779:23030212,28136371 +g1,19779:27677568,28136371 +h1,19779:28009522,28136371:0,0,0 +k1,19779:32583029,28136371:4573507 +g1,19779:32583029,28136371 +) +(1,19780:6764466,28821226:25818563,424439,112852 +h1,19780:6764466,28821226:0,0,0 +g1,19780:7096420,28821226 +g1,19780:7428374,28821226 +g1,19780:11743775,28821226 +h1,19780:12075729,28821226:0,0,0 +k1,19780:32583029,28821226:20507300 +g1,19780:32583029,28821226 +) +(1,19781:6764466,29506081:25818563,424439,112852 +h1,19781:6764466,29506081:0,0,0 +g1,19781:7096420,29506081 +g1,19781:7428374,29506081 +g1,19781:14067453,29506081 +g1,19781:14731361,29506081 +g1,19781:16391131,29506081 +g1,19781:18050901,29506081 +g1,19781:18714809,29506081 +g1,19781:20374579,29506081 +g1,19781:22366303,29506081 +g1,19781:23030211,29506081 +g1,19781:24026073,29506081 +g1,19781:26681705,29506081 +g1,19781:29005383,29506081 +g1,19781:29669291,29506081 +k1,19781:29669291,29506081:0 +h1,19781:32324923,29506081:0,0,0 +k1,19781:32583029,29506081:258106 +g1,19781:32583029,29506081 +) +(1,19782:6764466,30190936:25818563,424439,112852 +h1,19782:6764466,30190936:0,0,0 +g1,19782:7096420,30190936 +g1,19782:7428374,30190936 +g1,19782:7760328,30190936 +g1,19782:8092282,30190936 +g1,19782:8424236,30190936 +g1,19782:8756190,30190936 +g1,19782:9088144,30190936 +g1,19782:9420098,30190936 +g1,19782:9752052,30190936 +g1,19782:10084006,30190936 +g1,19782:10415960,30190936 +g1,19782:10747914,30190936 +g1,19782:11079868,30190936 +g1,19782:13071592,30190936 +g1,19782:13735500,30190936 +h1,19782:16723085,30190936:0,0,0 +k1,19782:32583029,30190936:15859944 +g1,19782:32583029,30190936 +) +] +) +g1,19784:32583029,30303788 +g1,19784:6764466,30303788 +g1,19784:6764466,30303788 +g1,19784:32583029,30303788 +g1,19784:32583029,30303788 +) +h1,19784:6764466,30500396:0,0,0 +] +g1,19787:32583029,30500396 +) +h1,19787:6630773,30500396:0,0,0 +(1,19793:6630773,33331556:25952256,32768,229376 +(1,19793:6630773,33331556:0,32768,229376 +(1,19793:6630773,33331556:5505024,32768,229376 +r1,19831:12135797,33331556:5505024,262144,229376 +) +k1,19793:6630773,33331556:-5505024 +) +(1,19793:6630773,33331556:25952256,32768,0 +r1,19831:32583029,33331556:25952256,32768,0 +) +) +(1,19793:6630773,34963408:25952256,606339,14155 +(1,19793:6630773,34963408:1974731,582746,14155 +g1,19793:6630773,34963408 +g1,19793:8605504,34963408 +) +k1,19793:32583028,34963408:20424424 +g1,19793:32583028,34963408 +) +(1,19796:6630773,36221704:25952256,513147,134348 +k1,19795:7680088,36221704:175720 +k1,19795:10882916,36221704:175720 +k1,19795:13129574,36221704:175720 +(1,19795:13129574,36221704:0,452978,115847 +r1,19831:18411805,36221704:5282231,568825,115847 +k1,19795:13129574,36221704:-5282231 +) +(1,19795:13129574,36221704:5282231,452978,115847 +k1,19795:13129574,36221704:3277 +h1,19795:18408528,36221704:0,411205,112570 +) +k1,19795:18761195,36221704:175720 +k1,19795:21199218,36221704:175720 +k1,19795:22394023,36221704:175720 +(1,19795:22394023,36221704:0,452978,115847 +r1,19831:23807424,36221704:1413401,568825,115847 +k1,19795:22394023,36221704:-1413401 +) +(1,19795:22394023,36221704:1413401,452978,115847 +k1,19795:22394023,36221704:3277 +h1,19795:23804147,36221704:0,411205,112570 +) +k1,19795:23983144,36221704:175720 +k1,19795:25539052,36221704:175720 +k1,19795:27937098,36221704:175720 +k1,19795:30155575,36221704:175720 +k1,19795:32583029,36221704:0 +) +(1,19796:6630773,37086784:25952256,513147,134348 +k1,19795:7332815,37086784:243945 +k1,19795:8228188,37086784:243945 +k1,19795:8827993,37086784:243945 +k1,19795:12235361,37086784:243945 +k1,19795:14024645,37086784:243945 +k1,19795:17122028,37086784:243945 +k1,19795:20153875,37086784:243945 +k1,19795:20753680,37086784:243945 +k1,19795:23394932,37086784:243945 +k1,19795:26629285,37086784:243945 +k1,19795:28440851,37086784:243945 +k1,19795:29703881,37086784:243945 +k1,19795:31510860,37086784:243945 +k1,19795:32583029,37086784:0 +) +(1,19796:6630773,37951864:25952256,505283,134348 +k1,19795:8510345,37951864:224788 +k1,19795:9726694,37951864:224789 +k1,19795:13536957,37951864:224788 +k1,19795:15355581,37951864:224788 +k1,19795:18653352,37951864:224788 +k1,19795:20258329,37951864:224789 +k1,19795:22198850,37951864:224788 +k1,19795:22881735,37951864:224788 +k1,19795:25736483,37951864:224788 +k1,19795:26612700,37951864:224789 +k1,19795:29680440,37951864:224788 +k1,19796:32583029,37951864:0 +) +(1,19796:6630773,38816944:25952256,513147,134348 +k1,19795:8370956,38816944:142415 +k1,19795:9322740,38816944:142414 +k1,19795:10484240,38816944:142415 +k1,19795:12016017,38816944:142414 +k1,19795:13425898,38816944:142415 +k1,19795:14587398,38816944:142415 +k1,19795:17254259,38816944:142414 +k1,19795:20516843,38816944:142415 +k1,19795:22040102,38816944:142415 +k1,19795:23903491,38816944:142414 +k1,19795:25818655,38816944:142415 +k1,19795:27033238,38816944:142414 +k1,19795:28825850,38816944:142415 +k1,19795:32583029,38816944:0 +) +(1,19796:6630773,39682024:25952256,505283,134348 +k1,19795:8516143,39682024:167016 +k1,19795:10826186,39682024:167016 +k1,19795:12277708,39682024:167016 +k1,19795:13463808,39682024:167015 +k1,19795:15020187,39682024:167016 +k1,19795:16378648,39682024:167016 +k1,19795:20053806,39682024:167016 +k1,19795:22230811,39682024:167016 +k1,19795:22753687,39682024:167016 +k1,19795:24615463,39682024:167015 +k1,19795:26059776,39682024:167016 +k1,19795:27218352,39682024:167016 +k1,19795:30839771,39682024:167016 +k1,19795:32583029,39682024:0 +) +(1,19796:6630773,40547104:25952256,505283,126483 +h1,19795:7601361,40547104:0,0,0 +g1,19795:7800590,40547104 +g1,19795:8993345,40547104 +g1,19795:9958690,40547104 +g1,19795:11177004,40547104 +g1,19795:14229671,40547104 +g1,19795:15942126,40547104 +g1,19795:16757393,40547104 +g1,19795:17975707,40547104 +k1,19796:32583029,40547104:12137270 +g1,19796:32583029,40547104 +) +(1,19798:6630773,41412184:25952256,513147,134348 +h1,19797:6630773,41412184:983040,0,0 +k1,19797:9539402,41412184:142354 +k1,19797:10037616,41412184:142354 +k1,19797:12073959,41412184:142353 +k1,19797:12747810,41412184:142354 +k1,19797:15475559,41412184:142354 +k1,19797:16269341,41412184:142354 +k1,19797:17182397,41412184:142353 +k1,19797:20342684,41412184:142354 +k1,19797:21936660,41412184:142354 +k1,19797:23541122,41412184:142354 +k1,19797:25943157,41412184:142354 +k1,19797:26441370,41412184:142353 +k1,19797:28650074,41412184:142354 +k1,19797:29834450,41412184:142354 +k1,19797:32583029,41412184:0 +) +(1,19798:6630773,42277264:25952256,513147,134348 +k1,19797:7532735,42277264:285924 +k1,19797:8837744,42277264:285924 +k1,19797:10429801,42277264:285924 +k1,19797:11993022,42277264:285924 +k1,19797:14940363,42277264:285924 +k1,19797:15842325,42277264:285924 +k1,19797:18406937,42277264:285925 +h1,19797:19949655,42277264:0,0,0 +k1,19797:20235579,42277264:285924 +k1,19797:21330873,42277264:285924 +k1,19797:23114950,42277264:285924 +h1,19797:24310327,42277264:0,0,0 +k1,19797:24596251,42277264:285924 +k1,19797:25901260,42277264:285924 +k1,19797:29070113,42277264:285924 +k1,19797:31966991,42277264:285924 +k1,19797:32583029,42277264:0 +) +(1,19798:6630773,43142344:25952256,505283,134348 +k1,19797:9555598,43142344:222120 +k1,19797:11450197,43142344:222120 +k1,19797:12869004,43142344:222120 +k1,19797:15974053,43142344:222120 +k1,19797:16727670,43142344:222120 +k1,19797:18016061,43142344:222120 +k1,19797:18963010,43142344:222121 +k1,19797:21678120,43142344:222120 +k1,19797:23294191,43142344:222120 +k1,19797:25218281,43142344:222120 +k1,19797:28788635,43142344:222120 +k1,19797:30082924,43142344:222120 +k1,19797:30763141,43142344:222120 +k1,19797:31516758,43142344:222120 +k1,19797:32583029,43142344:0 +) +(1,19798:6630773,44007424:25952256,513147,134348 +k1,19797:9787165,44007424:220379 +k1,19797:11552884,44007424:220380 +k1,19797:14455652,44007424:220379 +k1,19797:17087102,44007424:220380 +k1,19797:20576417,44007424:220379 +k1,19797:21606167,44007424:220380 +k1,19797:22845631,44007424:220379 +k1,19797:24455374,44007424:220380 +k1,19797:25623404,44007424:220379 +k1,19797:27295406,44007424:220380 +k1,19797:29582135,44007424:220379 +k1,19797:32583029,44007424:0 +) +(1,19798:6630773,44872504:25952256,513147,134348 +k1,19797:7683996,44872504:282520 +k1,19797:11973387,44872504:282520 +k1,19797:15246314,44872504:282519 +k1,19797:16476485,44872504:282520 +k1,19797:18210627,44872504:282520 +k1,19797:20559497,44872504:282520 +k1,19797:23593218,44872504:282520 +k1,19797:24231598,44872504:282520 +k1,19797:28084518,44872504:282519 +k1,19797:30878378,44872504:282520 +k1,19797:31812326,44872504:282520 +k1,19797:32583029,44872504:0 +) +] +(1,19831:32583029,45706769:0,0,0 +g1,19831:32583029,45706769 +) +) +] +(1,19831:6630773,47279633:25952256,0,0 +h1,19831:6630773,47279633:25952256,0,0 +) +] +(1,19831:4262630,4025873:0,0,0 +[1,19831:-473656,4025873:0,0,0 +(1,19831:-473656,-710413:0,0,0 +(1,19831:-473656,-710413:0,0,0 +g1,19831:-473656,-710413 +) +g1,19831:-473656,-710413 ) ] ) ] !21329 -}330 -Input:3565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3568:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}331 Input:3569:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3570:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3571:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3572:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3573:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3574:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{331 -[1,19845:4262630,47279633:28320399,43253760,0 -(1,19845:4262630,4025873:0,0,0 -[1,19845:-473656,4025873:0,0,0 -(1,19845:-473656,-710413:0,0,0 -(1,19845:-473656,-644877:0,0,0 -k1,19845:-473656,-644877:-65536 +{332 +[1,19843:4262630,47279633:28320399,43253760,0 +(1,19843:4262630,4025873:0,0,0 +[1,19843:-473656,4025873:0,0,0 +(1,19843:-473656,-710413:0,0,0 +(1,19843:-473656,-644877:0,0,0 +k1,19843:-473656,-644877:-65536 ) -(1,19845:-473656,4736287:0,0,0 -k1,19845:-473656,4736287:5209943 +(1,19843:-473656,4736287:0,0,0 +k1,19843:-473656,4736287:5209943 ) -g1,19845:-473656,-710413 +g1,19843:-473656,-710413 ) ] ) -[1,19845:6630773,47279633:25952256,43253760,0 -[1,19845:6630773,4812305:25952256,786432,0 -(1,19845:6630773,4812305:25952256,513147,126483 -(1,19845:6630773,4812305:25952256,513147,126483 -g1,19845:3078558,4812305 -[1,19845:3078558,4812305:0,0,0 -(1,19845:3078558,2439708:0,1703936,0 -k1,19845:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19845:2537886,2439708:1179648,16384,0 +[1,19843:6630773,47279633:25952256,43253760,0 +[1,19843:6630773,4812305:25952256,786432,0 +(1,19843:6630773,4812305:25952256,513147,126483 +(1,19843:6630773,4812305:25952256,513147,126483 +g1,19843:3078558,4812305 +[1,19843:3078558,4812305:0,0,0 +(1,19843:3078558,2439708:0,1703936,0 +k1,19843:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19843:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19845:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19843:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19845:3078558,4812305:0,0,0 -(1,19845:3078558,2439708:0,1703936,0 -g1,19845:29030814,2439708 -g1,19845:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19845:36151628,1915420:16384,1179648,0 +[1,19843:3078558,4812305:0,0,0 +(1,19843:3078558,2439708:0,1703936,0 +g1,19843:29030814,2439708 +g1,19843:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19843:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19845:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19843:37855564,2439708:1179648,16384,0 ) ) -k1,19845:3078556,2439708:-34777008 +k1,19843:3078556,2439708:-34777008 ) ] -[1,19845:3078558,4812305:0,0,0 -(1,19845:3078558,49800853:0,16384,2228224 -k1,19845:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19845:2537886,49800853:1179648,16384,0 +[1,19843:3078558,4812305:0,0,0 +(1,19843:3078558,49800853:0,16384,2228224 +k1,19843:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19843:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19845:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19843:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19845:3078558,4812305:0,0,0 -(1,19845:3078558,49800853:0,16384,2228224 -g1,19845:29030814,49800853 -g1,19845:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19845:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19845:37855564,49800853:1179648,16384,0 -) -) -k1,19845:3078556,49800853:-34777008 -) -] -g1,19845:6630773,4812305 -k1,19845:21386205,4812305:13560055 -g1,19845:21999622,4812305 -g1,19845:25611966,4812305 -g1,19845:28956923,4812305 -g1,19845:29772190,4812305 -) -) -] -[1,19845:6630773,45706769:25952256,40108032,0 -(1,19845:6630773,45706769:25952256,40108032,0 -(1,19845:6630773,45706769:0,0,0 -g1,19845:6630773,45706769 -) -[1,19845:6630773,45706769:25952256,40108032,0 -[1,19833:6630773,29127065:25952256,23528328,0 -[1,19833:6630773,29127065:25952256,23528328,0 -(1,19802:6630773,6759380:25952256,505283,11795 -h1,19802:6607180,6759380:0,0,0 -g1,19802:8644694,6759380 -k1,19802:32583029,6759380:22948086 -g1,19802:32583029,6759380 -) -(1,19802:6630773,7624460:25952256,513147,134348 -h1,19802:6579000,7624460:0,0,0 -k1,19802:9584123,7624460:176590 -k1,19802:12614150,7624460:176589 -k1,19802:15880763,7624460:176590 -k1,19802:16673391,7624460:176590 -k1,19802:19128667,7624460:176589 -h1,19802:20099255,7624460:0,0,0 -k1,19802:20449515,7624460:176590 -k1,19802:23536558,7624460:176589 -k1,19802:25632042,7624460:176590 -k1,19802:27188820,7624460:176590 -k1,19802:28356969,7624460:176589 -k1,19802:31088808,7624460:176590 -k1,19802:32583029,7624460:0 -) -(1,19802:6630773,8489540:25952256,513147,134348 -g1,19802:9095582,8489540 -g1,19802:12284563,8489540 -g1,19802:13675237,8489540 -g1,19802:14893551,8489540 -g1,19802:18267344,8489540 -g1,19802:19846761,8489540 -g1,19802:21138475,8489540 -g1,19802:22023866,8489540 -g1,19802:23931619,8489540 -g1,19802:25078499,8489540 -k1,19802:32583029,8489540:3057913 -g1,19802:32583029,8489540 -) -(1,19832:6630773,29127065:25952256,20090300,0 -k1,19832:8044436,29127065:1413663 -h1,19804:8044436,29127065:0,0,0 -k1,19804:9458100,29127065:1413664 -[1,19832:9458100,29127065:21711266,20090300,0 -(1,19832:9458100,9102301:21711266,65536,0 -g1,19832:9458100,9102301 -(1,19832:9458100,9102301:21711266,65536,0 -r1,19845:31169366,9102301:21711266,65536,0 -) -g1,19832:31169366,9102301 -) -(1,19832:9458100,19254297:21711266,10086460,9676160 -g1,19832:9458100,19254297 -(1,19832:9458100,19254297:21711266,10086460,9676160 -g1,19804:9657329,19254297 -$1,19832:9657329,19254297 -[1,19832:9657329,19254297:21512037,10086460,9676160 -(1,19807:9657329,9958957:21512037,555093,237900 -g1,19806:9657329,9958957 -(1,19806:9657329,9958957:6289304,555093,237900 -r1,19845:9657329,9958957:0,792993,237900 -g1,19806:9985009,9958957 -g1,19806:9985010,9958957 -k1,19806:15618953,9958957:3085903 -g1,19806:15946633,9958957 -) -g1,19806:15946633,9958957 -(1,19806:15946633,9958957:5042340,555093,237900 -g1,19806:16274313,9958957 -g1,19806:16274314,9958957 -k1,19806:20661293,9958957:1852046 -g1,19806:20988973,9958957 -) -g1,19806:20988973,9958957 -(1,19806:20988973,9958957:5937592,555093,237900 -g1,19806:21316653,9958957 -g1,19806:21316654,9958957 -k1,19806:26598885,9958957:2186966 -g1,19806:26926565,9958957 -) -g1,19806:26926565,9958957 -(1,19807:26926565,9958957:4242801,555093,237900 -g1,19806:27254245,9958957 -g1,19806:27254246,9958957 -k1,19807:30841686,9958957:281149 -g1,19807:31169366,9958957 -) -g1,19807:31169366,9958957 -) -(1,19809:9657329,11081299:21512037,555093,237900 -g1,19808:9657329,11081299 -(1,19808:9657329,11081299:6289304,555093,237900 -r1,19845:9657329,11081299:0,792993,237900 -g1,19808:9985009,11081299 -g1,19808:9985010,11081299 -(1,19808:9985010,11081299:0,459977,115847 -r1,19845:14563818,11081299:4578808,575824,115847 -k1,19808:9985010,11081299:-4578808 -) -(1,19808:9985010,11081299:4578808,459977,115847 -k1,19808:9985010,11081299:3277 -h1,19808:14560541,11081299:0,411205,112570 -) -k1,19808:15618953,11081299:1055135 -g1,19808:15946633,11081299 -) -g1,19808:15946633,11081299 -(1,19808:15946633,11081299:5042340,555093,237900 -g1,19808:16274313,11081299 -g1,19808:16274314,11081299 -k1,19808:20661293,11081299:1558446 -g1,19808:20988973,11081299 -) -g1,19808:20988973,11081299 -(1,19808:20988973,11081299:5937592,555093,237900 -g1,19808:21316653,11081299 -g1,19808:21316654,11081299 -(1,19808:21316654,11081299:0,459977,122846 -r1,19845:25895462,11081299:4578808,582823,122846 -k1,19808:21316654,11081299:-4578808 -) -(1,19808:21316654,11081299:4578808,459977,122846 -k1,19808:21316654,11081299:3277 -h1,19808:25892185,11081299:0,411205,112570 -) -k1,19808:26598885,11081299:703423 -g1,19808:26926565,11081299 -) -g1,19808:26926565,11081299 -(1,19809:26926565,11081299:4242801,555093,237900 -g1,19808:27254245,11081299 -g1,19808:27254246,11081299 -k1,19809:30841686,11081299:3222404 -g1,19809:31169366,11081299 -) -g1,19809:31169366,11081299 -) -(1,19810:9657329,11874292:21512037,555093,237900 -g1,19809:9657329,11874292 -(1,19809:9657329,11874292:6289304,555093,237900 -r1,19845:9657329,11874292:0,792993,237900 -g1,19809:9985009,11874292 -g1,19809:9985010,11874292 -(1,19809:9985010,11874292:0,414482,115847 -r1,19845:14212106,11874292:4227096,530329,115847 -k1,19809:9985010,11874292:-4227096 -) -(1,19809:9985010,11874292:4227096,414482,115847 -k1,19809:9985010,11874292:3277 -h1,19809:14208829,11874292:0,411205,112570 -) -k1,19809:15618953,11874292:1406847 -g1,19809:15946633,11874292 -) -g1,19809:15946633,11874292 -(1,19809:15946633,11874292:5042340,555093,237900 -g1,19809:16274313,11874292 -g1,19809:16274314,11874292 -k1,19809:20661293,11874292:1558446 -g1,19809:20988973,11874292 -) -g1,19809:20988973,11874292 -(1,19809:20988973,11874292:5937592,555093,237900 -g1,19809:21316653,11874292 -g1,19809:21316654,11874292 -(1,19809:21316654,11874292:0,452978,122846 -r1,19845:26598885,11874292:5282231,575824,122846 -k1,19809:21316654,11874292:-5282231 -) -(1,19809:21316654,11874292:5282231,452978,122846 -k1,19809:21316654,11874292:3277 -h1,19809:26595608,11874292:0,411205,112570 -) -g1,19809:26598885,11874292 -g1,19809:26926565,11874292 -) -g1,19809:26926565,11874292 -(1,19810:26926565,11874292:4242801,555093,237900 -g1,19809:27254245,11874292 -g1,19809:27254246,11874292 -g1,19809:27992181,11874292 -k1,19810:30841686,11874292:2488402 -g1,19810:31169366,11874292 -) -g1,19810:31169366,11874292 -) -(1,19811:9657329,12667285:21512037,555093,237900 -g1,19810:9657329,12667285 -(1,19810:9657329,12667285:6289304,555093,237900 -r1,19845:9657329,12667285:0,792993,237900 -g1,19810:9985009,12667285 -g1,19810:9985010,12667285 -(1,19810:9985010,12667285:0,452978,115847 -r1,19845:13860394,12667285:3875384,568825,115847 -k1,19810:9985010,12667285:-3875384 -) -(1,19810:9985010,12667285:3875384,452978,115847 -k1,19810:9985010,12667285:3277 -h1,19810:13857117,12667285:0,411205,112570 -) -k1,19810:15618953,12667285:1758559 -g1,19810:15946633,12667285 -) -g1,19810:15946633,12667285 -(1,19810:15946633,12667285:5042340,555093,237900 -g1,19810:16274313,12667285 -g1,19810:16274314,12667285 -k1,19810:20661293,12667285:1558446 -g1,19810:20988973,12667285 -) -g1,19810:20988973,12667285 -(1,19810:20988973,12667285:5937592,555093,237900 -g1,19810:21316653,12667285 -g1,19810:21316654,12667285 -(1,19810:21316654,12667285:0,452978,122846 -r1,19845:25192038,12667285:3875384,575824,122846 -k1,19810:21316654,12667285:-3875384 -) -(1,19810:21316654,12667285:3875384,452978,122846 -k1,19810:21316654,12667285:3277 -h1,19810:25188761,12667285:0,411205,112570 -) -k1,19810:26598885,12667285:1406847 -g1,19810:26926565,12667285 -) -g1,19810:26926565,12667285 -(1,19811:26926565,12667285:4242801,555093,237900 -g1,19810:27254245,12667285 -g1,19810:27254246,12667285 -g1,19810:27992181,12667285 -g1,19810:28726184,12667285 -g1,19811:30841686,12667285 -g1,19811:31169366,12667285 -) -g1,19811:31169366,12667285 -) -(1,19812:9657329,13460278:21512037,555093,237900 -g1,19811:9657329,13460278 -(1,19811:9657329,13460278:6289304,555093,237900 -r1,19845:9657329,13460278:0,792993,237900 -g1,19811:9985009,13460278 -g1,19811:9985010,13460278 -(1,19811:9985010,13460278:0,452978,115847 -r1,19845:14915530,13460278:4930520,568825,115847 -k1,19811:9985010,13460278:-4930520 -) -(1,19811:9985010,13460278:4930520,452978,115847 -k1,19811:9985010,13460278:3277 -h1,19811:14912253,13460278:0,411205,112570 -) -k1,19811:15618953,13460278:703423 -g1,19811:15946633,13460278 -) -g1,19811:15946633,13460278 -(1,19811:15946633,13460278:5042340,555093,237900 -g1,19811:16274313,13460278 -g1,19811:16274314,13460278 -k1,19811:20661293,13460278:1339556 -g1,19811:20988973,13460278 -) -g1,19811:20988973,13460278 -(1,19811:20988973,13460278:5937592,555093,237900 -g1,19811:21316653,13460278 -g1,19811:21316654,13460278 -(1,19811:21316654,13460278:0,452978,122846 -r1,19845:25192038,13460278:3875384,575824,122846 -k1,19811:21316654,13460278:-3875384 -) -(1,19811:21316654,13460278:3875384,452978,122846 -k1,19811:21316654,13460278:3277 -h1,19811:25188761,13460278:0,411205,112570 -) -k1,19811:26598885,13460278:1406847 -g1,19811:26926565,13460278 -) -g1,19811:26926565,13460278 -(1,19812:26926565,13460278:4242801,555093,237900 -g1,19811:27254245,13460278 -g1,19811:27254246,13460278 -g1,19811:27992181,13460278 -g1,19811:28726184,13460278 -g1,19812:30841686,13460278 -g1,19812:31169366,13460278 -) -g1,19812:31169366,13460278 -) -(1,19813:9657329,14253271:21512037,555093,237900 -g1,19812:9657329,14253271 -(1,19812:9657329,14253271:6289304,555093,237900 -r1,19845:9657329,14253271:0,792993,237900 -g1,19812:9985009,14253271 -g1,19812:9985010,14253271 -(1,19812:9985010,14253271:0,452978,115847 -r1,19845:14212106,14253271:4227096,568825,115847 -k1,19812:9985010,14253271:-4227096 -) -(1,19812:9985010,14253271:4227096,452978,115847 -k1,19812:9985010,14253271:3277 -h1,19812:14208829,14253271:0,411205,112570 -) -k1,19812:15618953,14253271:1406847 -g1,19812:15946633,14253271 -) -g1,19812:15946633,14253271 -(1,19812:15946633,14253271:5042340,555093,237900 -g1,19812:16274313,14253271 -g1,19812:16274314,14253271 -k1,19812:20661293,14253271:1339556 -g1,19812:20988973,14253271 -) -g1,19812:20988973,14253271 -(1,19812:20988973,14253271:5937592,555093,237900 -g1,19812:21316653,14253271 -g1,19812:21316654,14253271 -(1,19812:21316654,14253271:0,414482,122846 -r1,19845:24488614,14253271:3171960,537328,122846 -k1,19812:21316654,14253271:-3171960 -) -(1,19812:21316654,14253271:3171960,414482,122846 -k1,19812:21316654,14253271:3277 -h1,19812:24485337,14253271:0,411205,112570 -) -k1,19812:26598885,14253271:2110271 -g1,19812:26926565,14253271 -) -g1,19812:26926565,14253271 -(1,19813:26926565,14253271:4242801,555093,237900 -g1,19812:27254245,14253271 -g1,19812:27254246,14253271 -g1,19812:27992181,14253271 -g1,19812:28726184,14253271 -g1,19813:30841686,14253271 -g1,19813:31169366,14253271 -) -g1,19813:31169366,14253271 -) -(1,19814:9657329,15046264:21512037,555093,237900 -g1,19813:9657329,15046264 -(1,19813:9657329,15046264:6289304,555093,237900 -r1,19845:9657329,15046264:0,792993,237900 -g1,19813:9985009,15046264 -g1,19813:9985010,15046264 -(1,19813:9985010,15046264:0,459977,115847 -r1,19845:13860394,15046264:3875384,575824,115847 -k1,19813:9985010,15046264:-3875384 -) -(1,19813:9985010,15046264:3875384,459977,115847 -k1,19813:9985010,15046264:3277 -h1,19813:13857117,15046264:0,411205,112570 -) -k1,19813:15618953,15046264:1758559 -g1,19813:15946633,15046264 -) -g1,19813:15946633,15046264 -(1,19813:15946633,15046264:5042340,555093,237900 -g1,19813:16274313,15046264 -g1,19813:16274314,15046264 -k1,19813:20661293,15046264:1339556 -g1,19813:20988973,15046264 -) -g1,19813:20988973,15046264 -(1,19813:20988973,15046264:5937592,555093,237900 -g1,19813:21316653,15046264 -g1,19813:21316654,15046264 -(1,19813:21316654,15046264:0,452978,122846 -r1,19845:24840326,15046264:3523672,575824,122846 -k1,19813:21316654,15046264:-3523672 -) -(1,19813:21316654,15046264:3523672,452978,122846 -k1,19813:21316654,15046264:3277 -h1,19813:24837049,15046264:0,411205,112570 -) -k1,19813:26598885,15046264:1758559 -g1,19813:26926565,15046264 -) -g1,19813:26926565,15046264 -(1,19814:26926565,15046264:4242801,555093,237900 -g1,19813:27254245,15046264 -g1,19813:27254246,15046264 -g1,19813:27992181,15046264 -g1,19813:28726184,15046264 -g1,19814:30841686,15046264 -g1,19814:31169366,15046264 -) -g1,19814:31169366,15046264 -) -(1,19815:9657329,15839257:21512037,555093,237900 -g1,19814:9657329,15839257 -(1,19814:9657329,15839257:6289304,555093,237900 -r1,19845:9657329,15839257:0,792993,237900 -g1,19814:9985009,15839257 -g1,19814:9985010,15839257 -(1,19814:9985010,15839257:0,452978,115847 -r1,19845:12805259,15839257:2820249,568825,115847 -k1,19814:9985010,15839257:-2820249 -) -(1,19814:9985010,15839257:2820249,452978,115847 -k1,19814:9985010,15839257:3277 -h1,19814:12801982,15839257:0,411205,112570 -) -k1,19814:15618953,15839257:2813694 -g1,19814:15946633,15839257 -) -g1,19814:15946633,15839257 -(1,19814:15946633,15839257:5042340,555093,237900 -g1,19814:16274313,15839257 -g1,19814:16274314,15839257 -k1,19814:20661293,15839257:1558446 -g1,19814:20988973,15839257 -) -g1,19814:20988973,15839257 -(1,19814:20988973,15839257:5937592,555093,237900 -g1,19814:21316653,15839257 -g1,19814:21316654,15839257 -(1,19814:21316654,15839257:0,452978,122846 -r1,19845:24136903,15839257:2820249,575824,122846 -k1,19814:21316654,15839257:-2820249 -) -(1,19814:21316654,15839257:2820249,452978,122846 -k1,19814:21316654,15839257:3277 -h1,19814:24133626,15839257:0,411205,112570 -) -k1,19814:26598885,15839257:2461982 -g1,19814:26926565,15839257 -) -g1,19814:26926565,15839257 -(1,19815:26926565,15839257:4242801,555093,237900 -g1,19814:27254245,15839257 -g1,19814:27254246,15839257 -g1,19814:27992181,15839257 -k1,19815:30841686,15839257:2488402 -g1,19815:31169366,15839257 -) -g1,19815:31169366,15839257 -) -(1,19816:9657329,16632250:21512037,555093,237900 -g1,19815:9657329,16632250 -(1,19815:9657329,16632250:6289304,555093,237900 -r1,19845:9657329,16632250:0,792993,237900 -g1,19815:9985009,16632250 -g1,19815:9985010,16632250 -(1,19815:9985010,16632250:0,452978,122846 -r1,19845:14915530,16632250:4930520,575824,122846 -k1,19815:9985010,16632250:-4930520 -) -(1,19815:9985010,16632250:4930520,452978,122846 -k1,19815:9985010,16632250:3277 -h1,19815:14912253,16632250:0,411205,112570 -) -k1,19815:15618953,16632250:703423 -g1,19815:15946633,16632250 -) -g1,19815:15946633,16632250 -(1,19815:15946633,16632250:5042340,555093,237900 -g1,19815:16274313,16632250 -g1,19815:16274314,16632250 -k1,19815:20661293,16632250:1558446 -g1,19815:20988973,16632250 -) -g1,19815:20988973,16632250 -(1,19815:20988973,16632250:5937592,555093,237900 -g1,19815:21316653,16632250 -g1,19815:21316654,16632250 -k1,19815:26598885,16632250:4626871 -g1,19815:26926565,16632250 -) -g1,19815:26926565,16632250 -(1,19816:26926565,16632250:4242801,555093,237900 -g1,19815:27254245,16632250 -g1,19815:27254246,16632250 -g1,19815:27992181,16632250 -k1,19816:30841686,16632250:2488402 -g1,19816:31169366,16632250 -) -g1,19816:31169366,16632250 -) -(1,19817:9657329,17425243:21512037,555093,237900 -g1,19816:9657329,17425243 -(1,19816:9657329,17425243:6289304,555093,237900 -r1,19845:9657329,17425243:0,792993,237900 -g1,19816:9985009,17425243 -g1,19816:9985010,17425243 -(1,19816:9985010,17425243:0,452978,115847 -r1,19845:13508682,17425243:3523672,568825,115847 -k1,19816:9985010,17425243:-3523672 -) -(1,19816:9985010,17425243:3523672,452978,115847 -k1,19816:9985010,17425243:3277 -h1,19816:13505405,17425243:0,411205,112570 -) -k1,19816:15618953,17425243:2110271 -g1,19816:15946633,17425243 -) -g1,19816:15946633,17425243 -(1,19816:15946633,17425243:5042340,555093,237900 -g1,19816:16274313,17425243 -g1,19816:16274314,17425243 -k1,19816:20661293,17425243:1558446 -g1,19816:20988973,17425243 -) -g1,19816:20988973,17425243 -(1,19816:20988973,17425243:5937592,555093,237900 -g1,19816:21316653,17425243 -g1,19816:21316654,17425243 -(1,19816:21316654,17425243:0,452978,122846 -r1,19845:24488614,17425243:3171960,575824,122846 -k1,19816:21316654,17425243:-3171960 -) -(1,19816:21316654,17425243:3171960,452978,122846 -k1,19816:21316654,17425243:3277 -h1,19816:24485337,17425243:0,411205,112570 -) -k1,19816:26598885,17425243:2110271 -g1,19816:26926565,17425243 -) -g1,19816:26926565,17425243 -(1,19817:26926565,17425243:4242801,555093,237900 -g1,19816:27254245,17425243 -g1,19816:27254246,17425243 -g1,19816:27992181,17425243 -k1,19817:30841686,17425243:2488402 -g1,19817:31169366,17425243 -) -g1,19817:31169366,17425243 -) -(1,19818:9657329,18218236:21512037,555093,237900 -g1,19817:9657329,18218236 -(1,19817:9657329,18218236:6289304,555093,237900 -r1,19845:9657329,18218236:0,792993,237900 -g1,19817:9985009,18218236 -g1,19817:9985010,18218236 -(1,19817:9985010,18218236:0,452978,115847 -r1,19845:14212106,18218236:4227096,568825,115847 -k1,19817:9985010,18218236:-4227096 -) -(1,19817:9985010,18218236:4227096,452978,115847 -k1,19817:9985010,18218236:3277 -h1,19817:14208829,18218236:0,411205,112570 -) -k1,19817:15618953,18218236:1406847 -g1,19817:15946633,18218236 -) -g1,19817:15946633,18218236 -(1,19817:15946633,18218236:5042340,555093,237900 -g1,19817:16274313,18218236 -g1,19817:16274314,18218236 -k1,19817:20661293,18218236:1558446 -g1,19817:20988973,18218236 -) -g1,19817:20988973,18218236 -(1,19817:20988973,18218236:5937592,555093,237900 -g1,19817:21316653,18218236 -g1,19817:21316654,18218236 -(1,19817:21316654,18218236:0,452978,122846 -r1,19845:24136903,18218236:2820249,575824,122846 -k1,19817:21316654,18218236:-2820249 -) -(1,19817:21316654,18218236:2820249,452978,122846 -k1,19817:21316654,18218236:3277 -h1,19817:24133626,18218236:0,411205,112570 -) -k1,19817:26598885,18218236:2461982 -g1,19817:26926565,18218236 -) -g1,19817:26926565,18218236 -(1,19818:26926565,18218236:4242801,555093,237900 -g1,19817:27254245,18218236 -g1,19817:27254246,18218236 -g1,19817:27992181,18218236 -k1,19818:30841686,18218236:2488402 -g1,19818:31169366,18218236 -) -g1,19818:31169366,18218236 -) -(1,19819:9657329,19011229:21512037,555093,237900 -g1,19818:9657329,19011229 -(1,19818:9657329,19011229:6289304,555093,237900 -r1,19845:9657329,19011229:0,792993,237900 -g1,19818:9985009,19011229 -g1,19818:9985010,19011229 -(1,19818:9985010,19011229:0,452978,115847 -r1,19845:14212106,19011229:4227096,568825,115847 -k1,19818:9985010,19011229:-4227096 -) -(1,19818:9985010,19011229:4227096,452978,115847 -k1,19818:9985010,19011229:3277 -h1,19818:14208829,19011229:0,411205,112570 -) -k1,19818:15618953,19011229:1406847 -g1,19818:15946633,19011229 -) -g1,19818:15946633,19011229 -(1,19818:15946633,19011229:5042340,555093,237900 -g1,19818:16274313,19011229 -g1,19818:16274314,19011229 -k1,19818:20661293,19011229:1558446 -g1,19818:20988973,19011229 -) -g1,19818:20988973,19011229 -(1,19818:20988973,19011229:5937592,555093,237900 -g1,19818:21316653,19011229 -g1,19818:21316654,19011229 -(1,19818:21316654,19011229:0,414482,122846 -r1,19845:24488614,19011229:3171960,537328,122846 -k1,19818:21316654,19011229:-3171960 -) -(1,19818:21316654,19011229:3171960,414482,122846 -k1,19818:21316654,19011229:3277 -h1,19818:24485337,19011229:0,411205,112570 -) -k1,19818:26598885,19011229:2110271 -g1,19818:26926565,19011229 -) -g1,19818:26926565,19011229 -(1,19819:26926565,19011229:4242801,555093,237900 -g1,19818:27254245,19011229 -g1,19818:27254246,19011229 -g1,19818:27992181,19011229 -k1,19819:30841686,19011229:2488402 -g1,19819:31169366,19011229 -) -g1,19819:31169366,19011229 -) -(1,19820:9657329,19804222:21512037,555093,237900 -g1,19819:9657329,19804222 -(1,19819:9657329,19804222:6289304,555093,237900 -r1,19845:9657329,19804222:0,792993,237900 -g1,19819:9985009,19804222 -g1,19819:9985010,19804222 -(1,19819:9985010,19804222:0,452978,122846 -r1,19845:14212106,19804222:4227096,575824,122846 -k1,19819:9985010,19804222:-4227096 -) -(1,19819:9985010,19804222:4227096,452978,122846 -k1,19819:9985010,19804222:3277 -h1,19819:14208829,19804222:0,411205,112570 -) -k1,19819:15618953,19804222:1406847 -g1,19819:15946633,19804222 -) -g1,19819:15946633,19804222 -(1,19819:15946633,19804222:5042340,555093,237900 -g1,19819:16274313,19804222 -g1,19819:16274314,19804222 -k1,19819:20661293,19804222:1558446 -g1,19819:20988973,19804222 -) -g1,19819:20988973,19804222 -(1,19819:20988973,19804222:5937592,555093,237900 -g1,19819:21316653,19804222 -g1,19819:21316654,19804222 -k1,19819:26598885,19804222:4626871 -g1,19819:26926565,19804222 -) -g1,19819:26926565,19804222 -(1,19820:26926565,19804222:4242801,555093,237900 -g1,19819:27254245,19804222 -g1,19819:27254246,19804222 -g1,19819:27992181,19804222 -k1,19820:30841686,19804222:2488402 -g1,19820:31169366,19804222 -) -g1,19820:31169366,19804222 -) -(1,19821:9657329,20597215:21512037,555093,237900 -g1,19820:9657329,20597215 -(1,19820:9657329,20597215:6289304,555093,237900 -r1,19845:9657329,20597215:0,792993,237900 -g1,19820:9985009,20597215 -g1,19820:9985010,20597215 -(1,19820:9985010,20597215:0,452978,115847 -r1,19845:15267241,20597215:5282231,568825,115847 -k1,19820:9985010,20597215:-5282231 -) -(1,19820:9985010,20597215:5282231,452978,115847 -k1,19820:9985010,20597215:3277 -h1,19820:15263964,20597215:0,411205,112570 -) -k1,19820:15618953,20597215:351712 -g1,19820:15946633,20597215 -) -g1,19820:15946633,20597215 -(1,19820:15946633,20597215:5042340,555093,237900 -g1,19820:16274313,20597215 -g1,19820:16274314,20597215 -k1,19820:20661293,20597215:1558446 -g1,19820:20988973,20597215 -) -g1,19820:20988973,20597215 -(1,19820:20988973,20597215:5937592,555093,237900 -g1,19820:21316653,20597215 -g1,19820:21316654,20597215 -(1,19820:21316654,20597215:0,452978,122846 -r1,19845:26598885,20597215:5282231,575824,122846 -k1,19820:21316654,20597215:-5282231 -) -(1,19820:21316654,20597215:5282231,452978,122846 -k1,19820:21316654,20597215:3277 -h1,19820:26595608,20597215:0,411205,112570 -) -g1,19820:26598885,20597215 -g1,19820:26926565,20597215 -) -g1,19820:26926565,20597215 -(1,19821:26926565,20597215:4242801,555093,237900 -g1,19820:27254245,20597215 -g1,19820:27254246,20597215 -g1,19820:27992181,20597215 -k1,19821:30841686,20597215:2488402 -g1,19821:31169366,20597215 -) -g1,19821:31169366,20597215 -) -(1,19822:9657329,21390208:21512037,555093,237900 -g1,19821:9657329,21390208 -(1,19821:9657329,21390208:6289304,555093,237900 -r1,19845:9657329,21390208:0,792993,237900 -g1,19821:9985009,21390208 -g1,19821:9985010,21390208 -(1,19821:9985010,21390208:0,452978,115847 -r1,19845:14212106,21390208:4227096,568825,115847 -k1,19821:9985010,21390208:-4227096 -) -(1,19821:9985010,21390208:4227096,452978,115847 -k1,19821:9985010,21390208:3277 -h1,19821:14208829,21390208:0,411205,112570 -) -k1,19821:15618953,21390208:1406847 -g1,19821:15946633,21390208 -) -g1,19821:15946633,21390208 -(1,19821:15946633,21390208:5042340,555093,237900 -g1,19821:16274313,21390208 -g1,19821:16274314,21390208 -k1,19821:20661293,21390208:1558446 -g1,19821:20988973,21390208 -) -g1,19821:20988973,21390208 -(1,19821:20988973,21390208:5937592,555093,237900 -g1,19821:21316653,21390208 -g1,19821:21316654,21390208 -(1,19821:21316654,21390208:0,452978,122846 -r1,19845:25543750,21390208:4227096,575824,122846 -k1,19821:21316654,21390208:-4227096 -) -(1,19821:21316654,21390208:4227096,452978,122846 -k1,19821:21316654,21390208:3277 -h1,19821:25540473,21390208:0,411205,112570 -) -k1,19821:26598885,21390208:1055135 -g1,19821:26926565,21390208 -) -g1,19821:26926565,21390208 -(1,19822:26926565,21390208:4242801,555093,237900 -g1,19821:27254245,21390208 -g1,19821:27254246,21390208 -g1,19821:27992181,21390208 -k1,19822:30841686,21390208:2488402 -g1,19822:31169366,21390208 -) -g1,19822:31169366,21390208 -) -(1,19823:9657329,22183201:21512037,555093,237900 -g1,19822:9657329,22183201 -(1,19822:9657329,22183201:6289304,555093,237900 -r1,19845:9657329,22183201:0,792993,237900 -g1,19822:9985009,22183201 -g1,19822:9985010,22183201 -(1,19822:9985010,22183201:0,452978,115847 -r1,19845:14563818,22183201:4578808,568825,115847 -k1,19822:9985010,22183201:-4578808 -) -(1,19822:9985010,22183201:4578808,452978,115847 -k1,19822:9985010,22183201:3277 -h1,19822:14560541,22183201:0,411205,112570 -) -k1,19822:15618953,22183201:1055135 -g1,19822:15946633,22183201 -) -g1,19822:15946633,22183201 -(1,19822:15946633,22183201:5042340,555093,237900 -g1,19822:16274313,22183201 -g1,19822:16274314,22183201 -k1,19822:20661293,22183201:1558446 -g1,19822:20988973,22183201 -) -g1,19822:20988973,22183201 -(1,19822:20988973,22183201:5937592,555093,237900 -g1,19822:21316653,22183201 -g1,19822:21316654,22183201 -(1,19822:21316654,22183201:0,452978,122846 -r1,19845:25192038,22183201:3875384,575824,122846 -k1,19822:21316654,22183201:-3875384 -) -(1,19822:21316654,22183201:3875384,452978,122846 -k1,19822:21316654,22183201:3277 -h1,19822:25188761,22183201:0,411205,112570 -) -k1,19822:26598885,22183201:1406847 -g1,19822:26926565,22183201 -) -g1,19822:26926565,22183201 -(1,19823:26926565,22183201:4242801,555093,237900 -g1,19822:27254245,22183201 -g1,19822:27254246,22183201 -g1,19822:27992181,22183201 -k1,19823:30841686,22183201:2488402 -g1,19823:31169366,22183201 -) -g1,19823:31169366,22183201 -) -(1,19824:9657329,22976194:21512037,555093,237900 -g1,19823:9657329,22976194 -(1,19823:9657329,22976194:6289304,555093,237900 -r1,19845:9657329,22976194:0,792993,237900 -g1,19823:9985009,22976194 -g1,19823:9985010,22976194 -(1,19823:9985010,22976194:0,452978,122846 -r1,19845:13860394,22976194:3875384,575824,122846 -k1,19823:9985010,22976194:-3875384 -) -(1,19823:9985010,22976194:3875384,452978,122846 -k1,19823:9985010,22976194:3277 -h1,19823:13857117,22976194:0,411205,112570 -) -k1,19823:15618953,22976194:1758559 -g1,19823:15946633,22976194 -) -g1,19823:15946633,22976194 -(1,19823:15946633,22976194:5042340,555093,237900 -g1,19823:16274313,22976194 -g1,19823:16274314,22976194 -k1,19823:20661293,22976194:1558446 -g1,19823:20988973,22976194 -) -g1,19823:20988973,22976194 -(1,19823:20988973,22976194:5937592,555093,237900 -g1,19823:21316653,22976194 -g1,19823:21316654,22976194 -k1,19823:26598885,22976194:4626871 -g1,19823:26926565,22976194 -) -g1,19823:26926565,22976194 -(1,19824:26926565,22976194:4242801,555093,237900 -g1,19823:27254245,22976194 -g1,19823:27254246,22976194 -g1,19823:27992181,22976194 -k1,19824:30841686,22976194:2488402 -g1,19824:31169366,22976194 -) -g1,19824:31169366,22976194 -) -(1,19825:9657329,23769187:21512037,555093,237900 -g1,19824:9657329,23769187 -(1,19824:9657329,23769187:6289304,555093,237900 -r1,19845:9657329,23769187:0,792993,237900 -g1,19824:9985009,23769187 -g1,19824:9985010,23769187 -(1,19824:9985010,23769187:0,452978,122846 -r1,19845:15618953,23769187:5633943,575824,122846 -k1,19824:9985010,23769187:-5633943 -) -(1,19824:9985010,23769187:5633943,452978,122846 -k1,19824:9985010,23769187:3277 -h1,19824:15615676,23769187:0,411205,112570 -) -g1,19824:15618953,23769187 -g1,19824:15946633,23769187 -) -g1,19824:15946633,23769187 -(1,19824:15946633,23769187:5042340,555093,237900 -g1,19824:16274313,23769187 -g1,19824:16274314,23769187 -g1,19824:20661293,23769187 -g1,19824:20988973,23769187 -) -g1,19824:20988973,23769187 -(1,19824:20988973,23769187:5937592,555093,237900 -g1,19824:21316653,23769187 -g1,19824:21316654,23769187 -k1,19824:26598885,23769187:4626871 -g1,19824:26926565,23769187 -) -g1,19824:26926565,23769187 -(1,19825:26926565,23769187:4242801,555093,237900 -g1,19824:27254245,23769187 -g1,19824:27254246,23769187 -g1,19824:27992181,23769187 -k1,19825:30841686,23769187:2488402 -g1,19825:31169366,23769187 -) -g1,19825:31169366,23769187 -) -(1,19826:9657329,24562180:21512037,555093,237900 -g1,19825:9657329,24562180 -(1,19825:9657329,24562180:6289304,555093,237900 -r1,19845:9657329,24562180:0,792993,237900 -g1,19825:9985009,24562180 -g1,19825:9985010,24562180 -(1,19825:9985010,24562180:0,452978,115847 -r1,19845:14212106,24562180:4227096,568825,115847 -k1,19825:9985010,24562180:-4227096 -) -(1,19825:9985010,24562180:4227096,452978,115847 -k1,19825:9985010,24562180:3277 -h1,19825:14208829,24562180:0,411205,112570 -) -k1,19825:15618953,24562180:1406847 -g1,19825:15946633,24562180 -) -g1,19825:15946633,24562180 -(1,19825:15946633,24562180:5042340,555093,237900 -g1,19825:16274313,24562180 -g1,19825:16274314,24562180 -k1,19825:20661293,24562180:1339556 -g1,19825:20988973,24562180 -) -g1,19825:20988973,24562180 -(1,19825:20988973,24562180:5937592,555093,237900 -g1,19825:21316653,24562180 -g1,19825:21316654,24562180 -(1,19825:21316654,24562180:0,452978,122846 -r1,19845:25192038,24562180:3875384,575824,122846 -k1,19825:21316654,24562180:-3875384 -) -(1,19825:21316654,24562180:3875384,452978,122846 -k1,19825:21316654,24562180:3277 -h1,19825:25188761,24562180:0,411205,112570 -) -k1,19825:26598885,24562180:1406847 -g1,19825:26926565,24562180 -) -g1,19825:26926565,24562180 -(1,19826:26926565,24562180:4242801,555093,237900 -g1,19825:27254245,24562180 -g1,19825:27254246,24562180 -g1,19825:27992181,24562180 -k1,19826:30841686,24562180:2488402 -g1,19826:31169366,24562180 -) -g1,19826:31169366,24562180 -) -(1,19827:9657329,25355173:21512037,555093,237900 -g1,19826:9657329,25355173 -(1,19826:9657329,25355173:6289304,555093,237900 -r1,19845:9657329,25355173:0,792993,237900 -g1,19826:9985009,25355173 -g1,19826:9985010,25355173 -(1,19826:9985010,25355173:0,414482,115847 -r1,19845:13508682,25355173:3523672,530329,115847 -k1,19826:9985010,25355173:-3523672 -) -(1,19826:9985010,25355173:3523672,414482,115847 -k1,19826:9985010,25355173:3277 -h1,19826:13505405,25355173:0,411205,112570 -) -k1,19826:15618953,25355173:2110271 -g1,19826:15946633,25355173 -) -g1,19826:15946633,25355173 -(1,19826:15946633,25355173:5042340,555093,237900 -g1,19826:16274313,25355173 -g1,19826:16274314,25355173 -k1,19826:20661293,25355173:1339556 -g1,19826:20988973,25355173 -) -g1,19826:20988973,25355173 -(1,19826:20988973,25355173:5937592,555093,237900 -g1,19826:21316653,25355173 -g1,19826:21316654,25355173 -(1,19826:21316654,25355173:0,414482,122846 -r1,19845:24488614,25355173:3171960,537328,122846 -k1,19826:21316654,25355173:-3171960 -) -(1,19826:21316654,25355173:3171960,414482,122846 -k1,19826:21316654,25355173:3277 -h1,19826:24485337,25355173:0,411205,112570 -) -k1,19826:26598885,25355173:2110271 -g1,19826:26926565,25355173 -) -g1,19826:26926565,25355173 -(1,19827:26926565,25355173:4242801,555093,237900 -g1,19826:27254245,25355173 -g1,19826:27254246,25355173 -g1,19826:27992181,25355173 -k1,19827:30841686,25355173:2488402 -g1,19827:31169366,25355173 -) -g1,19827:31169366,25355173 -) -(1,19828:9657329,26148166:21512037,555093,237900 -g1,19827:9657329,26148166 -(1,19827:9657329,26148166:6289304,555093,237900 -r1,19845:9657329,26148166:0,792993,237900 -g1,19827:9985009,26148166 -g1,19827:9985010,26148166 -(1,19827:9985010,26148166:0,452978,115847 -r1,19845:14563818,26148166:4578808,568825,115847 -k1,19827:9985010,26148166:-4578808 -) -(1,19827:9985010,26148166:4578808,452978,115847 -k1,19827:9985010,26148166:3277 -h1,19827:14560541,26148166:0,411205,112570 -) -k1,19827:15618953,26148166:1055135 -g1,19827:15946633,26148166 -) -g1,19827:15946633,26148166 -(1,19827:15946633,26148166:5042340,555093,237900 -g1,19827:16274313,26148166 -g1,19827:16274314,26148166 -k1,19827:20661293,26148166:1339556 -g1,19827:20988973,26148166 -) -g1,19827:20988973,26148166 -(1,19827:20988973,26148166:5937592,555093,237900 -g1,19827:21316653,26148166 -g1,19827:21316654,26148166 -(1,19827:21316654,26148166:0,452978,122846 -r1,19845:24840326,26148166:3523672,575824,122846 -k1,19827:21316654,26148166:-3523672 -) -(1,19827:21316654,26148166:3523672,452978,122846 -k1,19827:21316654,26148166:3277 -h1,19827:24837049,26148166:0,411205,112570 -) -k1,19827:26598885,26148166:1758559 -g1,19827:26926565,26148166 -) -g1,19827:26926565,26148166 -(1,19828:26926565,26148166:4242801,555093,237900 -g1,19827:27254245,26148166 -g1,19827:27254246,26148166 -g1,19827:27992181,26148166 -k1,19828:30841686,26148166:2488402 -g1,19828:31169366,26148166 -) -g1,19828:31169366,26148166 -) -(1,19829:9657329,26941159:21512037,555093,237900 -g1,19828:9657329,26941159 -(1,19828:9657329,26941159:6289304,555093,237900 -r1,19845:9657329,26941159:0,792993,237900 -g1,19828:9985009,26941159 -g1,19828:9985010,26941159 -(1,19828:9985010,26941159:0,452978,115847 -r1,19845:15267241,26941159:5282231,568825,115847 -k1,19828:9985010,26941159:-5282231 -) -(1,19828:9985010,26941159:5282231,452978,115847 -k1,19828:9985010,26941159:3277 -h1,19828:15263964,26941159:0,411205,112570 -) -k1,19828:15618953,26941159:351712 -g1,19828:15946633,26941159 -) -g1,19828:15946633,26941159 -(1,19828:15946633,26941159:5042340,555093,237900 -g1,19828:16274313,26941159 -g1,19828:16274314,26941159 -k1,19828:20661293,26941159:1339556 -g1,19828:20988973,26941159 -) -g1,19828:20988973,26941159 -(1,19828:20988973,26941159:5937592,555093,237900 -g1,19828:21316653,26941159 -g1,19828:21316654,26941159 -(1,19828:21316654,26941159:0,452978,122846 -r1,19845:25192038,26941159:3875384,575824,122846 -k1,19828:21316654,26941159:-3875384 -) -(1,19828:21316654,26941159:3875384,452978,122846 -k1,19828:21316654,26941159:3277 -h1,19828:25188761,26941159:0,411205,112570 -) -k1,19828:26598885,26941159:1406847 -g1,19828:26926565,26941159 -) -g1,19828:26926565,26941159 -(1,19829:26926565,26941159:4242801,555093,237900 -g1,19828:27254245,26941159 -g1,19828:27254246,26941159 -g1,19828:27992181,26941159 -k1,19829:30841686,26941159:2488402 -g1,19829:31169366,26941159 -) -g1,19829:31169366,26941159 -) -(1,19830:9657329,27734152:21512037,555093,237900 -g1,19829:9657329,27734152 -(1,19829:9657329,27734152:6289304,555093,237900 -r1,19845:9657329,27734152:0,792993,237900 -g1,19829:9985009,27734152 -g1,19829:9985010,27734152 -(1,19829:9985010,27734152:0,414482,115847 -r1,19845:14563818,27734152:4578808,530329,115847 -k1,19829:9985010,27734152:-4578808 -) -(1,19829:9985010,27734152:4578808,414482,115847 -k1,19829:9985010,27734152:3277 -h1,19829:14560541,27734152:0,411205,112570 -) -k1,19829:15618953,27734152:1055135 -g1,19829:15946633,27734152 -) -g1,19829:15946633,27734152 -(1,19829:15946633,27734152:5042340,555093,237900 -g1,19829:16274313,27734152 -g1,19829:16274314,27734152 -k1,19829:20661293,27734152:1339556 -g1,19829:20988973,27734152 -) -g1,19829:20988973,27734152 -(1,19829:20988973,27734152:5937592,555093,237900 -g1,19829:21316653,27734152 -g1,19829:21316654,27734152 -(1,19829:21316654,27734152:0,414482,122846 -r1,19845:24488614,27734152:3171960,537328,122846 -k1,19829:21316654,27734152:-3171960 -) -(1,19829:21316654,27734152:3171960,414482,122846 -k1,19829:21316654,27734152:3277 -h1,19829:24485337,27734152:0,411205,112570 -) -k1,19829:26598885,27734152:2110271 -g1,19829:26926565,27734152 -) -g1,19829:26926565,27734152 -(1,19830:26926565,27734152:4242801,555093,237900 -g1,19829:27254245,27734152 -g1,19829:27254246,27734152 -g1,19829:27992181,27734152 -k1,19830:30841686,27734152:2488402 -g1,19830:31169366,27734152 -) -g1,19830:31169366,27734152 -) -(1,19831:9657329,28527145:21512037,555093,237900 -g1,19830:9657329,28527145 -(1,19830:9657329,28527145:6289304,555093,237900 -r1,19845:9657329,28527145:0,792993,237900 -g1,19830:9985009,28527145 -g1,19830:9985010,28527145 -(1,19830:9985010,28527145:0,452978,115847 -r1,19845:14563818,28527145:4578808,568825,115847 -k1,19830:9985010,28527145:-4578808 -) -(1,19830:9985010,28527145:4578808,452978,115847 -k1,19830:9985010,28527145:3277 -h1,19830:14560541,28527145:0,411205,112570 -) -k1,19830:15618953,28527145:1055135 -g1,19830:15946633,28527145 -) -g1,19830:15946633,28527145 -(1,19830:15946633,28527145:5042340,555093,237900 -g1,19830:16274313,28527145 -g1,19830:16274314,28527145 -k1,19830:20661293,28527145:1558446 -g1,19830:20988973,28527145 -) -g1,19830:20988973,28527145 -(1,19830:20988973,28527145:5937592,555093,237900 -g1,19830:21316653,28527145 -g1,19830:21316654,28527145 -(1,19830:21316654,28527145:0,452978,122846 -r1,19845:24840326,28527145:3523672,575824,122846 -k1,19830:21316654,28527145:-3523672 -) -(1,19830:21316654,28527145:3523672,452978,122846 -k1,19830:21316654,28527145:3277 -h1,19830:24837049,28527145:0,411205,112570 -) -k1,19830:26598885,28527145:1758559 -g1,19830:26926565,28527145 -) -g1,19830:26926565,28527145 -(1,19831:26926565,28527145:4242801,555093,237900 -g1,19830:27254245,28527145 -g1,19830:27254246,28527145 -k1,19831:30841686,28527145:2932080 -g1,19831:31169366,28527145 -) -g1,19831:31169366,28527145 -) -] -$1,19832:31169366,19254297 -) -g1,19832:31169366,19254297 -) -(1,19832:9458100,29127065:21711266,65536,0 -g1,19832:9458100,29127065 -(1,19832:9458100,29127065:21711266,65536,0 -r1,19845:31169366,29127065:21711266,65536,0 -) -g1,19832:31169366,29127065 -) -] -g1,19832:31169366,29127065 -k1,19832:32583029,29127065:1413663 -) -] -] -(1,19800:6630773,31093145:25952256,513147,134348 -k1,19799:10088325,31093145:282988 -k1,19799:11864222,31093145:282987 -k1,19799:13213481,31093145:282988 -k1,19799:15425848,31093145:282987 -k1,19799:18105488,31093145:282988 -k1,19799:19286319,31093145:282988 -k1,19799:22917540,31093145:282987 -k1,19799:26181105,31093145:282988 -(1,19799:26181105,31093145:0,414482,115847 -r1,19845:26539371,31093145:358266,530329,115847 -k1,19799:26181105,31093145:-358266 -) -(1,19799:26181105,31093145:358266,414482,115847 -k1,19799:26181105,31093145:3277 -h1,19799:26536094,31093145:0,411205,112570 -) -k1,19799:26822358,31093145:282987 -k1,19799:28296791,31093145:282988 -(1,19799:28296791,31093145:0,414482,115847 -r1,19845:28655057,31093145:358266,530329,115847 -k1,19799:28296791,31093145:-358266 -) -(1,19799:28296791,31093145:358266,414482,115847 -k1,19799:28296791,31093145:3277 -h1,19799:28651780,31093145:0,411205,112570 -) -k1,19799:29111714,31093145:282987 -k1,19799:31379788,31093145:282988 -k1,19799:32583029,31093145:0 -) -(1,19800:6630773,31958225:25952256,513147,134348 -k1,19799:9326364,31958225:180975 -k1,19799:10924227,31958225:180975 -k1,19799:11461062,31958225:180975 -k1,19799:13536027,31958225:180975 -k1,19799:16302397,31958225:180975 -k1,19799:17134800,31958225:180975 -(1,19799:17134800,31958225:0,414482,115847 -r1,19845:17493066,31958225:358266,530329,115847 -k1,19799:17134800,31958225:-358266 -) -(1,19799:17134800,31958225:358266,414482,115847 -k1,19799:17134800,31958225:3277 -h1,19799:17489789,31958225:0,411205,112570 -) -k1,19799:17674041,31958225:180975 -k1,19799:19140831,31958225:180974 -k1,19799:21581487,31958225:180975 -k1,19799:22118322,31958225:180975 -k1,19799:24191977,31958225:180975 -k1,19799:25320603,31958225:180975 -k1,19799:26953200,31958225:180975 -k1,19799:28596283,31958225:180975 -k1,19799:29436550,31958225:180975 -k1,19799:30636610,31958225:180975 -k1,19800:32583029,31958225:0 -k1,19800:32583029,31958225:0 -) -(1,19835:6630773,34075043:25952256,555811,12975 -(1,19835:6630773,34075043:2450326,534184,12975 -g1,19835:6630773,34075043 -g1,19835:9081099,34075043 -) -k1,19835:32583029,34075043:19939262 -g1,19835:32583029,34075043 -) -(1,19839:6630773,35333339:25952256,513147,126483 -k1,19838:9710902,35333339:201788 -(1,19838:9710902,35333339:0,459977,115847 -r1,19845:14993133,35333339:5282231,575824,115847 -k1,19838:9710902,35333339:-5282231 -) -(1,19838:9710902,35333339:5282231,459977,115847 -k1,19838:9710902,35333339:3277 -h1,19838:14989856,35333339:0,411205,112570 -) -k1,19838:15194922,35333339:201789 -k1,19838:15928207,35333339:201788 -k1,19838:17149081,35333339:201789 -k1,19838:20062749,35333339:201788 -k1,19838:20915966,35333339:201789 -k1,19838:22210239,35333339:201788 -k1,19838:23603473,35333339:201789 -k1,19838:27643705,35333339:201788 -k1,19838:29312190,35333339:201789 -k1,19838:29979939,35333339:201788 -k1,19838:32583029,35333339:0 -) -(1,19839:6630773,36198419:25952256,513147,138281 -k1,19838:7365392,36198419:264726 -k1,19838:10692615,36198419:264726 -$1,19838:10692615,36198419 -$1,19838:11244428,36198419 -k1,19838:11509155,36198419:264727 -k1,19838:13784526,36198419:264726 -k1,19838:14810780,36198419:264726 -k1,19838:17829329,36198419:264726 -k1,19838:18864758,36198419:264726 -k1,19838:19544262,36198419:264661 -k1,19838:22504484,36198419:264726 -k1,19838:23420638,36198419:264726 -k1,19838:24041224,36198419:264726 -k1,19838:27245895,36198419:264726 -k1,19838:28169914,36198419:264727 -$1,19838:28169914,36198419 -$1,19838:28672575,36198419 -k1,19838:28937301,36198419:264726 -k1,19838:31386342,36198419:264726 -k1,19838:32583029,36198419:0 -) -(1,19839:6630773,37063499:25952256,513147,134348 -g1,19838:8610615,37063499 -g1,19838:9469136,37063499 -g1,19838:10687450,37063499 -(1,19838:10687450,37063499:0,452978,115847 -r1,19845:13155987,37063499:2468537,568825,115847 -k1,19838:10687450,37063499:-2468537 -) -(1,19838:10687450,37063499:2468537,452978,115847 -k1,19838:10687450,37063499:3277 -h1,19838:13152710,37063499:0,411205,112570 -) -g1,19838:13355216,37063499 -g1,19838:16065785,37063499 -g1,19838:18850409,37063499 -g1,19838:19701066,37063499 -(1,19838:19701066,37063499:0,414482,115847 -r1,19845:20059332,37063499:358266,530329,115847 -k1,19838:19701066,37063499:-358266 -) -(1,19838:19701066,37063499:358266,414482,115847 -k1,19838:19701066,37063499:3277 -h1,19838:20056055,37063499:0,411205,112570 -) -g1,19838:20258561,37063499 -g1,19838:24032124,37063499 -g1,19838:25250438,37063499 -g1,19838:27230280,37063499 -g1,19838:28088801,37063499 -$1,19838:28088801,37063499 -$1,19838:28591462,37063499 -g1,19838:28790691,37063499 -g1,19838:31000565,37063499 -k1,19839:32583029,37063499:16809 -g1,19839:32583029,37063499 -) -(1,19841:6630773,37928579:25952256,513147,134348 -h1,19840:6630773,37928579:983040,0,0 -k1,19840:9161080,37928579:283733 -k1,19840:9859571,37928579:283648 -k1,19840:13012470,37928579:283733 -k1,19840:14677046,37928579:283732 -k1,19840:17342357,37928579:283733 -k1,19840:18308975,37928579:283733 -k1,19840:19832649,37928579:283733 -k1,19840:21220664,37928579:283733 -k1,19840:22252162,37928579:283732 -k1,19840:24049121,37928579:283733 -k1,19840:25019016,37928579:283733 -k1,19840:26691457,37928579:283733 -k1,19840:27661351,37928579:283732 -k1,19840:28403181,37928579:283733 -k1,19840:29218411,37928579:283733 -k1,19840:32583029,37928579:0 -) -(1,19841:6630773,38793659:25952256,513147,134348 -k1,19840:8273106,38793659:274596 -k1,19840:9566786,38793659:274595 -k1,19840:11854648,38793659:274596 -k1,19840:12788535,38793659:274595 -k1,19840:14082216,38793659:274596 -k1,19840:17135538,38793659:274595 -k1,19840:19388011,38793659:274596 -k1,19840:21390136,38793659:274596 -k1,19840:22316159,38793659:274595 -k1,19840:23609840,38793659:274596 -k1,19840:25897701,38793659:274595 -k1,19840:26831589,38793659:274596 -k1,19840:28125269,38793659:274595 -k1,19840:30377742,38793659:274596 -k1,19840:32583029,38793659:0 -) -(1,19841:6630773,39658739:25952256,513147,134348 -k1,19840:7609141,39658739:292206 -k1,19840:8672050,39658739:292206 -k1,19840:12036585,39658739:292207 -k1,19840:12980219,39658739:292206 -k1,19840:14060823,39658739:292206 -k1,19840:15659162,39658739:292206 -k1,19840:19405772,39658739:292207 -k1,19840:20894665,39658739:292206 -k1,19840:24259199,39658739:292206 -k1,19840:26756692,39658739:292206 -k1,19840:27700327,39658739:292207 -k1,19840:31273265,39658739:292206 -(1,19840:31273265,39658739:0,414482,115847 -r1,19845:31631531,39658739:358266,530329,115847 -k1,19840:31273265,39658739:-358266 -) -(1,19840:31273265,39658739:358266,414482,115847 -k1,19840:31273265,39658739:3277 -h1,19840:31628254,39658739:0,411205,112570 -) -k1,19840:31923737,39658739:292206 -k1,19841:32583029,39658739:0 -) -(1,19841:6630773,40523819:25952256,513147,134348 -(1,19840:6630773,40523819:0,459977,122846 -r1,19845:11913004,40523819:5282231,582823,122846 -k1,19840:6630773,40523819:-5282231 -) -(1,19840:6630773,40523819:5282231,459977,122846 -k1,19840:6630773,40523819:3277 -h1,19840:11909727,40523819:0,411205,112570 -) -k1,19840:12159476,40523819:246472 -k1,19840:15980282,40523819:246472 -k1,19840:17245840,40523819:246473 -k1,19840:19505578,40523819:246472 -k1,19840:20411342,40523819:246472 -k1,19840:21676899,40523819:246472 -k1,19840:25076308,40523819:246472 -k1,19840:27300657,40523819:246472 -k1,19840:28206422,40523819:246473 -$1,19840:28206422,40523819 -$1,19840:28709083,40523819 -k1,19840:28955555,40523819:246472 -k1,19840:31386342,40523819:246472 -k1,19840:32583029,40523819:0 -) -(1,19841:6630773,41388899:25952256,513147,138281 -k1,19840:8271232,41388899:251096 -k1,19840:10398625,41388899:251097 -k1,19840:13428448,41388899:251096 -k1,19840:16381593,41388899:251096 -k1,19840:18329416,41388899:251096 -k1,19840:19572073,41388899:251097 -k1,19840:20842254,41388899:251096 -$1,19840:20842254,41388899 -$1,19840:21344915,41388899 -k1,19840:21596011,41388899:251096 -k1,19840:23857753,41388899:251097 -k1,19840:25300294,41388899:251096 -k1,19840:26237552,41388899:251096 -$1,19840:26237552,41388899 -$1,19840:26789365,41388899 -k1,19840:27040461,41388899:251096 -k1,19840:29302203,41388899:251097 -k1,19840:30572384,41388899:251096 -k1,19840:32583029,41388899:0 -) -(1,19841:6630773,42253979:25952256,513147,126483 -g1,19840:9608729,42253979 -g1,19840:10569486,42253979 -g1,19840:11787800,42253979 -k1,19841:32583028,42253979:18047304 -g1,19841:32583028,42253979 -) -(1,19843:6630773,43119059:25952256,513147,126483 -h1,19842:6630773,43119059:983040,0,0 -k1,19842:9075265,43119059:264765 -k1,19842:10836218,43119059:264766 -k1,19842:11752411,43119059:264765 -k1,19842:13294473,43119059:264765 -k1,19842:14578324,43119059:264766 -k1,19842:17199108,43119059:264765 -k1,19842:20949734,43119059:264766 -k1,19842:24995926,43119059:264765 -k1,19842:27956187,43119059:264765 -k1,19842:28752450,43119059:264766 -k1,19842:30371189,43119059:264765 -k1,19842:32583029,43119059:0 -) -(1,19843:6630773,43984139:25952256,513147,134348 -g1,19842:9022181,43984139 -g1,19842:10030780,43984139 -g1,19842:11249094,43984139 -g1,19842:14044204,43984139 -(1,19842:14044204,43984139:0,435480,115847 -r1,19845:16512741,43984139:2468537,551327,115847 -k1,19842:14044204,43984139:-2468537 -) -(1,19842:14044204,43984139:2468537,435480,115847 -g1,19842:14750905,43984139 -g1,19842:15454329,43984139 -h1,19842:16509464,43984139:0,411205,112570 -) -g1,19842:16711970,43984139 -g1,19842:18102644,43984139 -(1,19842:18102644,43984139:0,452978,122846 -r1,19845:22681452,43984139:4578808,575824,122846 -k1,19842:18102644,43984139:-4578808 -) -(1,19842:18102644,43984139:4578808,452978,122846 -g1,19842:19864480,43984139 -g1,19842:20567904,43984139 -h1,19842:22678175,43984139:0,411205,112570 -) -k1,19843:32583029,43984139:9849149 -g1,19843:32583029,43984139 -) -] -(1,19845:32583029,45706769:0,0,0 -g1,19845:32583029,45706769 -) -) -] -(1,19845:6630773,47279633:25952256,0,0 -h1,19845:6630773,47279633:25952256,0,0 -) -] -(1,19845:4262630,4025873:0,0,0 -[1,19845:-473656,4025873:0,0,0 -(1,19845:-473656,-710413:0,0,0 -(1,19845:-473656,-710413:0,0,0 -g1,19845:-473656,-710413 -) -g1,19845:-473656,-710413 +[1,19843:3078558,4812305:0,0,0 +(1,19843:3078558,49800853:0,16384,2228224 +g1,19843:29030814,49800853 +g1,19843:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19843:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19843:37855564,49800853:1179648,16384,0 +) +) +k1,19843:3078556,49800853:-34777008 +) +] +g1,19843:6630773,4812305 +k1,19843:21386205,4812305:13560055 +g1,19843:21999622,4812305 +g1,19843:25611966,4812305 +g1,19843:28956923,4812305 +g1,19843:29772190,4812305 +) +) +] +[1,19843:6630773,45706769:25952256,40108032,0 +(1,19843:6630773,45706769:25952256,40108032,0 +(1,19843:6630773,45706769:0,0,0 +g1,19843:6630773,45706769 +) +[1,19843:6630773,45706769:25952256,40108032,0 +[1,19831:6630773,29127065:25952256,23528328,0 +[1,19831:6630773,29127065:25952256,23528328,0 +(1,19800:6630773,6759380:25952256,505283,11795 +h1,19800:6607180,6759380:0,0,0 +g1,19800:8644694,6759380 +k1,19800:32583029,6759380:22948086 +g1,19800:32583029,6759380 +) +(1,19800:6630773,7624460:25952256,513147,134348 +h1,19800:6579000,7624460:0,0,0 +k1,19800:9584123,7624460:176590 +k1,19800:12614150,7624460:176589 +k1,19800:15880763,7624460:176590 +k1,19800:16673391,7624460:176590 +k1,19800:19128667,7624460:176589 +h1,19800:20099255,7624460:0,0,0 +k1,19800:20449515,7624460:176590 +k1,19800:23536558,7624460:176589 +k1,19800:25632042,7624460:176590 +k1,19800:27188820,7624460:176590 +k1,19800:28356969,7624460:176589 +k1,19800:31088808,7624460:176590 +k1,19800:32583029,7624460:0 +) +(1,19800:6630773,8489540:25952256,513147,134348 +g1,19800:9095582,8489540 +g1,19800:12284563,8489540 +g1,19800:13675237,8489540 +g1,19800:14893551,8489540 +g1,19800:18267344,8489540 +g1,19800:19846761,8489540 +g1,19800:21138475,8489540 +g1,19800:22023866,8489540 +g1,19800:23931619,8489540 +g1,19800:25078499,8489540 +k1,19800:32583029,8489540:3057913 +g1,19800:32583029,8489540 +) +(1,19830:6630773,29127065:25952256,20090300,0 +k1,19830:8044436,29127065:1413663 +h1,19802:8044436,29127065:0,0,0 +k1,19802:9458100,29127065:1413664 +[1,19830:9458100,29127065:21711266,20090300,0 +(1,19830:9458100,9102301:21711266,65536,0 +g1,19830:9458100,9102301 +(1,19830:9458100,9102301:21711266,65536,0 +r1,19843:31169366,9102301:21711266,65536,0 +) +g1,19830:31169366,9102301 +) +(1,19830:9458100,19254297:21711266,10086460,9676160 +g1,19830:9458100,19254297 +(1,19830:9458100,19254297:21711266,10086460,9676160 +g1,19802:9657329,19254297 +$1,19830:9657329,19254297 +[1,19830:9657329,19254297:21512037,10086460,9676160 +(1,19805:9657329,9958957:21512037,555093,237900 +g1,19804:9657329,9958957 +(1,19804:9657329,9958957:6289304,555093,237900 +r1,19843:9657329,9958957:0,792993,237900 +g1,19804:9985009,9958957 +g1,19804:9985010,9958957 +k1,19804:15618953,9958957:3085903 +g1,19804:15946633,9958957 +) +g1,19804:15946633,9958957 +(1,19804:15946633,9958957:5042340,555093,237900 +g1,19804:16274313,9958957 +g1,19804:16274314,9958957 +k1,19804:20661293,9958957:1852046 +g1,19804:20988973,9958957 +) +g1,19804:20988973,9958957 +(1,19804:20988973,9958957:5937592,555093,237900 +g1,19804:21316653,9958957 +g1,19804:21316654,9958957 +k1,19804:26598885,9958957:2186966 +g1,19804:26926565,9958957 +) +g1,19804:26926565,9958957 +(1,19805:26926565,9958957:4242801,555093,237900 +g1,19804:27254245,9958957 +g1,19804:27254246,9958957 +k1,19805:30841686,9958957:281149 +g1,19805:31169366,9958957 +) +g1,19805:31169366,9958957 +) +(1,19807:9657329,11081299:21512037,555093,237900 +g1,19806:9657329,11081299 +(1,19806:9657329,11081299:6289304,555093,237900 +r1,19843:9657329,11081299:0,792993,237900 +g1,19806:9985009,11081299 +g1,19806:9985010,11081299 +(1,19806:9985010,11081299:0,459977,115847 +r1,19843:14563818,11081299:4578808,575824,115847 +k1,19806:9985010,11081299:-4578808 +) +(1,19806:9985010,11081299:4578808,459977,115847 +k1,19806:9985010,11081299:3277 +h1,19806:14560541,11081299:0,411205,112570 +) +k1,19806:15618953,11081299:1055135 +g1,19806:15946633,11081299 +) +g1,19806:15946633,11081299 +(1,19806:15946633,11081299:5042340,555093,237900 +g1,19806:16274313,11081299 +g1,19806:16274314,11081299 +k1,19806:20661293,11081299:1558446 +g1,19806:20988973,11081299 +) +g1,19806:20988973,11081299 +(1,19806:20988973,11081299:5937592,555093,237900 +g1,19806:21316653,11081299 +g1,19806:21316654,11081299 +(1,19806:21316654,11081299:0,459977,122846 +r1,19843:25895462,11081299:4578808,582823,122846 +k1,19806:21316654,11081299:-4578808 +) +(1,19806:21316654,11081299:4578808,459977,122846 +k1,19806:21316654,11081299:3277 +h1,19806:25892185,11081299:0,411205,112570 +) +k1,19806:26598885,11081299:703423 +g1,19806:26926565,11081299 +) +g1,19806:26926565,11081299 +(1,19807:26926565,11081299:4242801,555093,237900 +g1,19806:27254245,11081299 +g1,19806:27254246,11081299 +k1,19807:30841686,11081299:3222404 +g1,19807:31169366,11081299 +) +g1,19807:31169366,11081299 +) +(1,19808:9657329,11874292:21512037,555093,237900 +g1,19807:9657329,11874292 +(1,19807:9657329,11874292:6289304,555093,237900 +r1,19843:9657329,11874292:0,792993,237900 +g1,19807:9985009,11874292 +g1,19807:9985010,11874292 +(1,19807:9985010,11874292:0,414482,115847 +r1,19843:14212106,11874292:4227096,530329,115847 +k1,19807:9985010,11874292:-4227096 +) +(1,19807:9985010,11874292:4227096,414482,115847 +k1,19807:9985010,11874292:3277 +h1,19807:14208829,11874292:0,411205,112570 +) +k1,19807:15618953,11874292:1406847 +g1,19807:15946633,11874292 +) +g1,19807:15946633,11874292 +(1,19807:15946633,11874292:5042340,555093,237900 +g1,19807:16274313,11874292 +g1,19807:16274314,11874292 +k1,19807:20661293,11874292:1558446 +g1,19807:20988973,11874292 +) +g1,19807:20988973,11874292 +(1,19807:20988973,11874292:5937592,555093,237900 +g1,19807:21316653,11874292 +g1,19807:21316654,11874292 +(1,19807:21316654,11874292:0,452978,122846 +r1,19843:26598885,11874292:5282231,575824,122846 +k1,19807:21316654,11874292:-5282231 +) +(1,19807:21316654,11874292:5282231,452978,122846 +k1,19807:21316654,11874292:3277 +h1,19807:26595608,11874292:0,411205,112570 +) +g1,19807:26598885,11874292 +g1,19807:26926565,11874292 +) +g1,19807:26926565,11874292 +(1,19808:26926565,11874292:4242801,555093,237900 +g1,19807:27254245,11874292 +g1,19807:27254246,11874292 +g1,19807:27992181,11874292 +k1,19808:30841686,11874292:2488402 +g1,19808:31169366,11874292 +) +g1,19808:31169366,11874292 +) +(1,19809:9657329,12667285:21512037,555093,237900 +g1,19808:9657329,12667285 +(1,19808:9657329,12667285:6289304,555093,237900 +r1,19843:9657329,12667285:0,792993,237900 +g1,19808:9985009,12667285 +g1,19808:9985010,12667285 +(1,19808:9985010,12667285:0,452978,115847 +r1,19843:13860394,12667285:3875384,568825,115847 +k1,19808:9985010,12667285:-3875384 +) +(1,19808:9985010,12667285:3875384,452978,115847 +k1,19808:9985010,12667285:3277 +h1,19808:13857117,12667285:0,411205,112570 +) +k1,19808:15618953,12667285:1758559 +g1,19808:15946633,12667285 +) +g1,19808:15946633,12667285 +(1,19808:15946633,12667285:5042340,555093,237900 +g1,19808:16274313,12667285 +g1,19808:16274314,12667285 +k1,19808:20661293,12667285:1558446 +g1,19808:20988973,12667285 +) +g1,19808:20988973,12667285 +(1,19808:20988973,12667285:5937592,555093,237900 +g1,19808:21316653,12667285 +g1,19808:21316654,12667285 +(1,19808:21316654,12667285:0,452978,122846 +r1,19843:25192038,12667285:3875384,575824,122846 +k1,19808:21316654,12667285:-3875384 +) +(1,19808:21316654,12667285:3875384,452978,122846 +k1,19808:21316654,12667285:3277 +h1,19808:25188761,12667285:0,411205,112570 +) +k1,19808:26598885,12667285:1406847 +g1,19808:26926565,12667285 +) +g1,19808:26926565,12667285 +(1,19809:26926565,12667285:4242801,555093,237900 +g1,19808:27254245,12667285 +g1,19808:27254246,12667285 +g1,19808:27992181,12667285 +g1,19808:28726184,12667285 +g1,19809:30841686,12667285 +g1,19809:31169366,12667285 +) +g1,19809:31169366,12667285 +) +(1,19810:9657329,13460278:21512037,555093,237900 +g1,19809:9657329,13460278 +(1,19809:9657329,13460278:6289304,555093,237900 +r1,19843:9657329,13460278:0,792993,237900 +g1,19809:9985009,13460278 +g1,19809:9985010,13460278 +(1,19809:9985010,13460278:0,452978,115847 +r1,19843:14915530,13460278:4930520,568825,115847 +k1,19809:9985010,13460278:-4930520 +) +(1,19809:9985010,13460278:4930520,452978,115847 +k1,19809:9985010,13460278:3277 +h1,19809:14912253,13460278:0,411205,112570 +) +k1,19809:15618953,13460278:703423 +g1,19809:15946633,13460278 +) +g1,19809:15946633,13460278 +(1,19809:15946633,13460278:5042340,555093,237900 +g1,19809:16274313,13460278 +g1,19809:16274314,13460278 +k1,19809:20661293,13460278:1339556 +g1,19809:20988973,13460278 +) +g1,19809:20988973,13460278 +(1,19809:20988973,13460278:5937592,555093,237900 +g1,19809:21316653,13460278 +g1,19809:21316654,13460278 +(1,19809:21316654,13460278:0,452978,122846 +r1,19843:25192038,13460278:3875384,575824,122846 +k1,19809:21316654,13460278:-3875384 +) +(1,19809:21316654,13460278:3875384,452978,122846 +k1,19809:21316654,13460278:3277 +h1,19809:25188761,13460278:0,411205,112570 +) +k1,19809:26598885,13460278:1406847 +g1,19809:26926565,13460278 +) +g1,19809:26926565,13460278 +(1,19810:26926565,13460278:4242801,555093,237900 +g1,19809:27254245,13460278 +g1,19809:27254246,13460278 +g1,19809:27992181,13460278 +g1,19809:28726184,13460278 +g1,19810:30841686,13460278 +g1,19810:31169366,13460278 +) +g1,19810:31169366,13460278 +) +(1,19811:9657329,14253271:21512037,555093,237900 +g1,19810:9657329,14253271 +(1,19810:9657329,14253271:6289304,555093,237900 +r1,19843:9657329,14253271:0,792993,237900 +g1,19810:9985009,14253271 +g1,19810:9985010,14253271 +(1,19810:9985010,14253271:0,452978,115847 +r1,19843:14212106,14253271:4227096,568825,115847 +k1,19810:9985010,14253271:-4227096 +) +(1,19810:9985010,14253271:4227096,452978,115847 +k1,19810:9985010,14253271:3277 +h1,19810:14208829,14253271:0,411205,112570 +) +k1,19810:15618953,14253271:1406847 +g1,19810:15946633,14253271 +) +g1,19810:15946633,14253271 +(1,19810:15946633,14253271:5042340,555093,237900 +g1,19810:16274313,14253271 +g1,19810:16274314,14253271 +k1,19810:20661293,14253271:1339556 +g1,19810:20988973,14253271 +) +g1,19810:20988973,14253271 +(1,19810:20988973,14253271:5937592,555093,237900 +g1,19810:21316653,14253271 +g1,19810:21316654,14253271 +(1,19810:21316654,14253271:0,414482,122846 +r1,19843:24488614,14253271:3171960,537328,122846 +k1,19810:21316654,14253271:-3171960 +) +(1,19810:21316654,14253271:3171960,414482,122846 +k1,19810:21316654,14253271:3277 +h1,19810:24485337,14253271:0,411205,112570 +) +k1,19810:26598885,14253271:2110271 +g1,19810:26926565,14253271 +) +g1,19810:26926565,14253271 +(1,19811:26926565,14253271:4242801,555093,237900 +g1,19810:27254245,14253271 +g1,19810:27254246,14253271 +g1,19810:27992181,14253271 +g1,19810:28726184,14253271 +g1,19811:30841686,14253271 +g1,19811:31169366,14253271 +) +g1,19811:31169366,14253271 +) +(1,19812:9657329,15046264:21512037,555093,237900 +g1,19811:9657329,15046264 +(1,19811:9657329,15046264:6289304,555093,237900 +r1,19843:9657329,15046264:0,792993,237900 +g1,19811:9985009,15046264 +g1,19811:9985010,15046264 +(1,19811:9985010,15046264:0,459977,115847 +r1,19843:13860394,15046264:3875384,575824,115847 +k1,19811:9985010,15046264:-3875384 +) +(1,19811:9985010,15046264:3875384,459977,115847 +k1,19811:9985010,15046264:3277 +h1,19811:13857117,15046264:0,411205,112570 +) +k1,19811:15618953,15046264:1758559 +g1,19811:15946633,15046264 +) +g1,19811:15946633,15046264 +(1,19811:15946633,15046264:5042340,555093,237900 +g1,19811:16274313,15046264 +g1,19811:16274314,15046264 +k1,19811:20661293,15046264:1339556 +g1,19811:20988973,15046264 +) +g1,19811:20988973,15046264 +(1,19811:20988973,15046264:5937592,555093,237900 +g1,19811:21316653,15046264 +g1,19811:21316654,15046264 +(1,19811:21316654,15046264:0,452978,122846 +r1,19843:24840326,15046264:3523672,575824,122846 +k1,19811:21316654,15046264:-3523672 +) +(1,19811:21316654,15046264:3523672,452978,122846 +k1,19811:21316654,15046264:3277 +h1,19811:24837049,15046264:0,411205,112570 +) +k1,19811:26598885,15046264:1758559 +g1,19811:26926565,15046264 +) +g1,19811:26926565,15046264 +(1,19812:26926565,15046264:4242801,555093,237900 +g1,19811:27254245,15046264 +g1,19811:27254246,15046264 +g1,19811:27992181,15046264 +g1,19811:28726184,15046264 +g1,19812:30841686,15046264 +g1,19812:31169366,15046264 +) +g1,19812:31169366,15046264 +) +(1,19813:9657329,15839257:21512037,555093,237900 +g1,19812:9657329,15839257 +(1,19812:9657329,15839257:6289304,555093,237900 +r1,19843:9657329,15839257:0,792993,237900 +g1,19812:9985009,15839257 +g1,19812:9985010,15839257 +(1,19812:9985010,15839257:0,452978,115847 +r1,19843:12805259,15839257:2820249,568825,115847 +k1,19812:9985010,15839257:-2820249 +) +(1,19812:9985010,15839257:2820249,452978,115847 +k1,19812:9985010,15839257:3277 +h1,19812:12801982,15839257:0,411205,112570 +) +k1,19812:15618953,15839257:2813694 +g1,19812:15946633,15839257 +) +g1,19812:15946633,15839257 +(1,19812:15946633,15839257:5042340,555093,237900 +g1,19812:16274313,15839257 +g1,19812:16274314,15839257 +k1,19812:20661293,15839257:1558446 +g1,19812:20988973,15839257 +) +g1,19812:20988973,15839257 +(1,19812:20988973,15839257:5937592,555093,237900 +g1,19812:21316653,15839257 +g1,19812:21316654,15839257 +(1,19812:21316654,15839257:0,452978,122846 +r1,19843:24136903,15839257:2820249,575824,122846 +k1,19812:21316654,15839257:-2820249 +) +(1,19812:21316654,15839257:2820249,452978,122846 +k1,19812:21316654,15839257:3277 +h1,19812:24133626,15839257:0,411205,112570 +) +k1,19812:26598885,15839257:2461982 +g1,19812:26926565,15839257 +) +g1,19812:26926565,15839257 +(1,19813:26926565,15839257:4242801,555093,237900 +g1,19812:27254245,15839257 +g1,19812:27254246,15839257 +g1,19812:27992181,15839257 +k1,19813:30841686,15839257:2488402 +g1,19813:31169366,15839257 +) +g1,19813:31169366,15839257 +) +(1,19814:9657329,16632250:21512037,555093,237900 +g1,19813:9657329,16632250 +(1,19813:9657329,16632250:6289304,555093,237900 +r1,19843:9657329,16632250:0,792993,237900 +g1,19813:9985009,16632250 +g1,19813:9985010,16632250 +(1,19813:9985010,16632250:0,452978,122846 +r1,19843:14915530,16632250:4930520,575824,122846 +k1,19813:9985010,16632250:-4930520 +) +(1,19813:9985010,16632250:4930520,452978,122846 +k1,19813:9985010,16632250:3277 +h1,19813:14912253,16632250:0,411205,112570 +) +k1,19813:15618953,16632250:703423 +g1,19813:15946633,16632250 +) +g1,19813:15946633,16632250 +(1,19813:15946633,16632250:5042340,555093,237900 +g1,19813:16274313,16632250 +g1,19813:16274314,16632250 +k1,19813:20661293,16632250:1558446 +g1,19813:20988973,16632250 +) +g1,19813:20988973,16632250 +(1,19813:20988973,16632250:5937592,555093,237900 +g1,19813:21316653,16632250 +g1,19813:21316654,16632250 +k1,19813:26598885,16632250:4626871 +g1,19813:26926565,16632250 +) +g1,19813:26926565,16632250 +(1,19814:26926565,16632250:4242801,555093,237900 +g1,19813:27254245,16632250 +g1,19813:27254246,16632250 +g1,19813:27992181,16632250 +k1,19814:30841686,16632250:2488402 +g1,19814:31169366,16632250 +) +g1,19814:31169366,16632250 +) +(1,19815:9657329,17425243:21512037,555093,237900 +g1,19814:9657329,17425243 +(1,19814:9657329,17425243:6289304,555093,237900 +r1,19843:9657329,17425243:0,792993,237900 +g1,19814:9985009,17425243 +g1,19814:9985010,17425243 +(1,19814:9985010,17425243:0,452978,115847 +r1,19843:13508682,17425243:3523672,568825,115847 +k1,19814:9985010,17425243:-3523672 +) +(1,19814:9985010,17425243:3523672,452978,115847 +k1,19814:9985010,17425243:3277 +h1,19814:13505405,17425243:0,411205,112570 +) +k1,19814:15618953,17425243:2110271 +g1,19814:15946633,17425243 +) +g1,19814:15946633,17425243 +(1,19814:15946633,17425243:5042340,555093,237900 +g1,19814:16274313,17425243 +g1,19814:16274314,17425243 +k1,19814:20661293,17425243:1558446 +g1,19814:20988973,17425243 +) +g1,19814:20988973,17425243 +(1,19814:20988973,17425243:5937592,555093,237900 +g1,19814:21316653,17425243 +g1,19814:21316654,17425243 +(1,19814:21316654,17425243:0,452978,122846 +r1,19843:24488614,17425243:3171960,575824,122846 +k1,19814:21316654,17425243:-3171960 +) +(1,19814:21316654,17425243:3171960,452978,122846 +k1,19814:21316654,17425243:3277 +h1,19814:24485337,17425243:0,411205,112570 +) +k1,19814:26598885,17425243:2110271 +g1,19814:26926565,17425243 +) +g1,19814:26926565,17425243 +(1,19815:26926565,17425243:4242801,555093,237900 +g1,19814:27254245,17425243 +g1,19814:27254246,17425243 +g1,19814:27992181,17425243 +k1,19815:30841686,17425243:2488402 +g1,19815:31169366,17425243 +) +g1,19815:31169366,17425243 +) +(1,19816:9657329,18218236:21512037,555093,237900 +g1,19815:9657329,18218236 +(1,19815:9657329,18218236:6289304,555093,237900 +r1,19843:9657329,18218236:0,792993,237900 +g1,19815:9985009,18218236 +g1,19815:9985010,18218236 +(1,19815:9985010,18218236:0,452978,115847 +r1,19843:14212106,18218236:4227096,568825,115847 +k1,19815:9985010,18218236:-4227096 +) +(1,19815:9985010,18218236:4227096,452978,115847 +k1,19815:9985010,18218236:3277 +h1,19815:14208829,18218236:0,411205,112570 +) +k1,19815:15618953,18218236:1406847 +g1,19815:15946633,18218236 +) +g1,19815:15946633,18218236 +(1,19815:15946633,18218236:5042340,555093,237900 +g1,19815:16274313,18218236 +g1,19815:16274314,18218236 +k1,19815:20661293,18218236:1558446 +g1,19815:20988973,18218236 +) +g1,19815:20988973,18218236 +(1,19815:20988973,18218236:5937592,555093,237900 +g1,19815:21316653,18218236 +g1,19815:21316654,18218236 +(1,19815:21316654,18218236:0,452978,122846 +r1,19843:24136903,18218236:2820249,575824,122846 +k1,19815:21316654,18218236:-2820249 +) +(1,19815:21316654,18218236:2820249,452978,122846 +k1,19815:21316654,18218236:3277 +h1,19815:24133626,18218236:0,411205,112570 +) +k1,19815:26598885,18218236:2461982 +g1,19815:26926565,18218236 +) +g1,19815:26926565,18218236 +(1,19816:26926565,18218236:4242801,555093,237900 +g1,19815:27254245,18218236 +g1,19815:27254246,18218236 +g1,19815:27992181,18218236 +k1,19816:30841686,18218236:2488402 +g1,19816:31169366,18218236 +) +g1,19816:31169366,18218236 +) +(1,19817:9657329,19011229:21512037,555093,237900 +g1,19816:9657329,19011229 +(1,19816:9657329,19011229:6289304,555093,237900 +r1,19843:9657329,19011229:0,792993,237900 +g1,19816:9985009,19011229 +g1,19816:9985010,19011229 +(1,19816:9985010,19011229:0,452978,115847 +r1,19843:14212106,19011229:4227096,568825,115847 +k1,19816:9985010,19011229:-4227096 +) +(1,19816:9985010,19011229:4227096,452978,115847 +k1,19816:9985010,19011229:3277 +h1,19816:14208829,19011229:0,411205,112570 +) +k1,19816:15618953,19011229:1406847 +g1,19816:15946633,19011229 +) +g1,19816:15946633,19011229 +(1,19816:15946633,19011229:5042340,555093,237900 +g1,19816:16274313,19011229 +g1,19816:16274314,19011229 +k1,19816:20661293,19011229:1558446 +g1,19816:20988973,19011229 +) +g1,19816:20988973,19011229 +(1,19816:20988973,19011229:5937592,555093,237900 +g1,19816:21316653,19011229 +g1,19816:21316654,19011229 +(1,19816:21316654,19011229:0,414482,122846 +r1,19843:24488614,19011229:3171960,537328,122846 +k1,19816:21316654,19011229:-3171960 +) +(1,19816:21316654,19011229:3171960,414482,122846 +k1,19816:21316654,19011229:3277 +h1,19816:24485337,19011229:0,411205,112570 +) +k1,19816:26598885,19011229:2110271 +g1,19816:26926565,19011229 +) +g1,19816:26926565,19011229 +(1,19817:26926565,19011229:4242801,555093,237900 +g1,19816:27254245,19011229 +g1,19816:27254246,19011229 +g1,19816:27992181,19011229 +k1,19817:30841686,19011229:2488402 +g1,19817:31169366,19011229 +) +g1,19817:31169366,19011229 +) +(1,19818:9657329,19804222:21512037,555093,237900 +g1,19817:9657329,19804222 +(1,19817:9657329,19804222:6289304,555093,237900 +r1,19843:9657329,19804222:0,792993,237900 +g1,19817:9985009,19804222 +g1,19817:9985010,19804222 +(1,19817:9985010,19804222:0,452978,122846 +r1,19843:14212106,19804222:4227096,575824,122846 +k1,19817:9985010,19804222:-4227096 +) +(1,19817:9985010,19804222:4227096,452978,122846 +k1,19817:9985010,19804222:3277 +h1,19817:14208829,19804222:0,411205,112570 +) +k1,19817:15618953,19804222:1406847 +g1,19817:15946633,19804222 +) +g1,19817:15946633,19804222 +(1,19817:15946633,19804222:5042340,555093,237900 +g1,19817:16274313,19804222 +g1,19817:16274314,19804222 +k1,19817:20661293,19804222:1558446 +g1,19817:20988973,19804222 +) +g1,19817:20988973,19804222 +(1,19817:20988973,19804222:5937592,555093,237900 +g1,19817:21316653,19804222 +g1,19817:21316654,19804222 +k1,19817:26598885,19804222:4626871 +g1,19817:26926565,19804222 +) +g1,19817:26926565,19804222 +(1,19818:26926565,19804222:4242801,555093,237900 +g1,19817:27254245,19804222 +g1,19817:27254246,19804222 +g1,19817:27992181,19804222 +k1,19818:30841686,19804222:2488402 +g1,19818:31169366,19804222 +) +g1,19818:31169366,19804222 +) +(1,19819:9657329,20597215:21512037,555093,237900 +g1,19818:9657329,20597215 +(1,19818:9657329,20597215:6289304,555093,237900 +r1,19843:9657329,20597215:0,792993,237900 +g1,19818:9985009,20597215 +g1,19818:9985010,20597215 +(1,19818:9985010,20597215:0,452978,115847 +r1,19843:15267241,20597215:5282231,568825,115847 +k1,19818:9985010,20597215:-5282231 +) +(1,19818:9985010,20597215:5282231,452978,115847 +k1,19818:9985010,20597215:3277 +h1,19818:15263964,20597215:0,411205,112570 +) +k1,19818:15618953,20597215:351712 +g1,19818:15946633,20597215 +) +g1,19818:15946633,20597215 +(1,19818:15946633,20597215:5042340,555093,237900 +g1,19818:16274313,20597215 +g1,19818:16274314,20597215 +k1,19818:20661293,20597215:1558446 +g1,19818:20988973,20597215 +) +g1,19818:20988973,20597215 +(1,19818:20988973,20597215:5937592,555093,237900 +g1,19818:21316653,20597215 +g1,19818:21316654,20597215 +(1,19818:21316654,20597215:0,452978,122846 +r1,19843:26598885,20597215:5282231,575824,122846 +k1,19818:21316654,20597215:-5282231 +) +(1,19818:21316654,20597215:5282231,452978,122846 +k1,19818:21316654,20597215:3277 +h1,19818:26595608,20597215:0,411205,112570 +) +g1,19818:26598885,20597215 +g1,19818:26926565,20597215 +) +g1,19818:26926565,20597215 +(1,19819:26926565,20597215:4242801,555093,237900 +g1,19818:27254245,20597215 +g1,19818:27254246,20597215 +g1,19818:27992181,20597215 +k1,19819:30841686,20597215:2488402 +g1,19819:31169366,20597215 +) +g1,19819:31169366,20597215 +) +(1,19820:9657329,21390208:21512037,555093,237900 +g1,19819:9657329,21390208 +(1,19819:9657329,21390208:6289304,555093,237900 +r1,19843:9657329,21390208:0,792993,237900 +g1,19819:9985009,21390208 +g1,19819:9985010,21390208 +(1,19819:9985010,21390208:0,452978,115847 +r1,19843:14212106,21390208:4227096,568825,115847 +k1,19819:9985010,21390208:-4227096 +) +(1,19819:9985010,21390208:4227096,452978,115847 +k1,19819:9985010,21390208:3277 +h1,19819:14208829,21390208:0,411205,112570 +) +k1,19819:15618953,21390208:1406847 +g1,19819:15946633,21390208 +) +g1,19819:15946633,21390208 +(1,19819:15946633,21390208:5042340,555093,237900 +g1,19819:16274313,21390208 +g1,19819:16274314,21390208 +k1,19819:20661293,21390208:1558446 +g1,19819:20988973,21390208 +) +g1,19819:20988973,21390208 +(1,19819:20988973,21390208:5937592,555093,237900 +g1,19819:21316653,21390208 +g1,19819:21316654,21390208 +(1,19819:21316654,21390208:0,452978,122846 +r1,19843:25543750,21390208:4227096,575824,122846 +k1,19819:21316654,21390208:-4227096 +) +(1,19819:21316654,21390208:4227096,452978,122846 +k1,19819:21316654,21390208:3277 +h1,19819:25540473,21390208:0,411205,112570 +) +k1,19819:26598885,21390208:1055135 +g1,19819:26926565,21390208 +) +g1,19819:26926565,21390208 +(1,19820:26926565,21390208:4242801,555093,237900 +g1,19819:27254245,21390208 +g1,19819:27254246,21390208 +g1,19819:27992181,21390208 +k1,19820:30841686,21390208:2488402 +g1,19820:31169366,21390208 +) +g1,19820:31169366,21390208 +) +(1,19821:9657329,22183201:21512037,555093,237900 +g1,19820:9657329,22183201 +(1,19820:9657329,22183201:6289304,555093,237900 +r1,19843:9657329,22183201:0,792993,237900 +g1,19820:9985009,22183201 +g1,19820:9985010,22183201 +(1,19820:9985010,22183201:0,452978,115847 +r1,19843:14563818,22183201:4578808,568825,115847 +k1,19820:9985010,22183201:-4578808 +) +(1,19820:9985010,22183201:4578808,452978,115847 +k1,19820:9985010,22183201:3277 +h1,19820:14560541,22183201:0,411205,112570 +) +k1,19820:15618953,22183201:1055135 +g1,19820:15946633,22183201 +) +g1,19820:15946633,22183201 +(1,19820:15946633,22183201:5042340,555093,237900 +g1,19820:16274313,22183201 +g1,19820:16274314,22183201 +k1,19820:20661293,22183201:1558446 +g1,19820:20988973,22183201 +) +g1,19820:20988973,22183201 +(1,19820:20988973,22183201:5937592,555093,237900 +g1,19820:21316653,22183201 +g1,19820:21316654,22183201 +(1,19820:21316654,22183201:0,452978,122846 +r1,19843:25192038,22183201:3875384,575824,122846 +k1,19820:21316654,22183201:-3875384 +) +(1,19820:21316654,22183201:3875384,452978,122846 +k1,19820:21316654,22183201:3277 +h1,19820:25188761,22183201:0,411205,112570 +) +k1,19820:26598885,22183201:1406847 +g1,19820:26926565,22183201 +) +g1,19820:26926565,22183201 +(1,19821:26926565,22183201:4242801,555093,237900 +g1,19820:27254245,22183201 +g1,19820:27254246,22183201 +g1,19820:27992181,22183201 +k1,19821:30841686,22183201:2488402 +g1,19821:31169366,22183201 +) +g1,19821:31169366,22183201 +) +(1,19822:9657329,22976194:21512037,555093,237900 +g1,19821:9657329,22976194 +(1,19821:9657329,22976194:6289304,555093,237900 +r1,19843:9657329,22976194:0,792993,237900 +g1,19821:9985009,22976194 +g1,19821:9985010,22976194 +(1,19821:9985010,22976194:0,452978,122846 +r1,19843:13860394,22976194:3875384,575824,122846 +k1,19821:9985010,22976194:-3875384 +) +(1,19821:9985010,22976194:3875384,452978,122846 +k1,19821:9985010,22976194:3277 +h1,19821:13857117,22976194:0,411205,112570 +) +k1,19821:15618953,22976194:1758559 +g1,19821:15946633,22976194 +) +g1,19821:15946633,22976194 +(1,19821:15946633,22976194:5042340,555093,237900 +g1,19821:16274313,22976194 +g1,19821:16274314,22976194 +k1,19821:20661293,22976194:1558446 +g1,19821:20988973,22976194 +) +g1,19821:20988973,22976194 +(1,19821:20988973,22976194:5937592,555093,237900 +g1,19821:21316653,22976194 +g1,19821:21316654,22976194 +k1,19821:26598885,22976194:4626871 +g1,19821:26926565,22976194 +) +g1,19821:26926565,22976194 +(1,19822:26926565,22976194:4242801,555093,237900 +g1,19821:27254245,22976194 +g1,19821:27254246,22976194 +g1,19821:27992181,22976194 +k1,19822:30841686,22976194:2488402 +g1,19822:31169366,22976194 +) +g1,19822:31169366,22976194 +) +(1,19823:9657329,23769187:21512037,555093,237900 +g1,19822:9657329,23769187 +(1,19822:9657329,23769187:6289304,555093,237900 +r1,19843:9657329,23769187:0,792993,237900 +g1,19822:9985009,23769187 +g1,19822:9985010,23769187 +(1,19822:9985010,23769187:0,452978,122846 +r1,19843:15618953,23769187:5633943,575824,122846 +k1,19822:9985010,23769187:-5633943 +) +(1,19822:9985010,23769187:5633943,452978,122846 +k1,19822:9985010,23769187:3277 +h1,19822:15615676,23769187:0,411205,112570 +) +g1,19822:15618953,23769187 +g1,19822:15946633,23769187 +) +g1,19822:15946633,23769187 +(1,19822:15946633,23769187:5042340,555093,237900 +g1,19822:16274313,23769187 +g1,19822:16274314,23769187 +g1,19822:20661293,23769187 +g1,19822:20988973,23769187 +) +g1,19822:20988973,23769187 +(1,19822:20988973,23769187:5937592,555093,237900 +g1,19822:21316653,23769187 +g1,19822:21316654,23769187 +k1,19822:26598885,23769187:4626871 +g1,19822:26926565,23769187 +) +g1,19822:26926565,23769187 +(1,19823:26926565,23769187:4242801,555093,237900 +g1,19822:27254245,23769187 +g1,19822:27254246,23769187 +g1,19822:27992181,23769187 +k1,19823:30841686,23769187:2488402 +g1,19823:31169366,23769187 +) +g1,19823:31169366,23769187 +) +(1,19824:9657329,24562180:21512037,555093,237900 +g1,19823:9657329,24562180 +(1,19823:9657329,24562180:6289304,555093,237900 +r1,19843:9657329,24562180:0,792993,237900 +g1,19823:9985009,24562180 +g1,19823:9985010,24562180 +(1,19823:9985010,24562180:0,452978,115847 +r1,19843:14212106,24562180:4227096,568825,115847 +k1,19823:9985010,24562180:-4227096 +) +(1,19823:9985010,24562180:4227096,452978,115847 +k1,19823:9985010,24562180:3277 +h1,19823:14208829,24562180:0,411205,112570 +) +k1,19823:15618953,24562180:1406847 +g1,19823:15946633,24562180 +) +g1,19823:15946633,24562180 +(1,19823:15946633,24562180:5042340,555093,237900 +g1,19823:16274313,24562180 +g1,19823:16274314,24562180 +k1,19823:20661293,24562180:1339556 +g1,19823:20988973,24562180 +) +g1,19823:20988973,24562180 +(1,19823:20988973,24562180:5937592,555093,237900 +g1,19823:21316653,24562180 +g1,19823:21316654,24562180 +(1,19823:21316654,24562180:0,452978,122846 +r1,19843:25192038,24562180:3875384,575824,122846 +k1,19823:21316654,24562180:-3875384 +) +(1,19823:21316654,24562180:3875384,452978,122846 +k1,19823:21316654,24562180:3277 +h1,19823:25188761,24562180:0,411205,112570 +) +k1,19823:26598885,24562180:1406847 +g1,19823:26926565,24562180 +) +g1,19823:26926565,24562180 +(1,19824:26926565,24562180:4242801,555093,237900 +g1,19823:27254245,24562180 +g1,19823:27254246,24562180 +g1,19823:27992181,24562180 +k1,19824:30841686,24562180:2488402 +g1,19824:31169366,24562180 +) +g1,19824:31169366,24562180 +) +(1,19825:9657329,25355173:21512037,555093,237900 +g1,19824:9657329,25355173 +(1,19824:9657329,25355173:6289304,555093,237900 +r1,19843:9657329,25355173:0,792993,237900 +g1,19824:9985009,25355173 +g1,19824:9985010,25355173 +(1,19824:9985010,25355173:0,414482,115847 +r1,19843:13508682,25355173:3523672,530329,115847 +k1,19824:9985010,25355173:-3523672 +) +(1,19824:9985010,25355173:3523672,414482,115847 +k1,19824:9985010,25355173:3277 +h1,19824:13505405,25355173:0,411205,112570 +) +k1,19824:15618953,25355173:2110271 +g1,19824:15946633,25355173 +) +g1,19824:15946633,25355173 +(1,19824:15946633,25355173:5042340,555093,237900 +g1,19824:16274313,25355173 +g1,19824:16274314,25355173 +k1,19824:20661293,25355173:1339556 +g1,19824:20988973,25355173 +) +g1,19824:20988973,25355173 +(1,19824:20988973,25355173:5937592,555093,237900 +g1,19824:21316653,25355173 +g1,19824:21316654,25355173 +(1,19824:21316654,25355173:0,414482,122846 +r1,19843:24488614,25355173:3171960,537328,122846 +k1,19824:21316654,25355173:-3171960 +) +(1,19824:21316654,25355173:3171960,414482,122846 +k1,19824:21316654,25355173:3277 +h1,19824:24485337,25355173:0,411205,112570 +) +k1,19824:26598885,25355173:2110271 +g1,19824:26926565,25355173 +) +g1,19824:26926565,25355173 +(1,19825:26926565,25355173:4242801,555093,237900 +g1,19824:27254245,25355173 +g1,19824:27254246,25355173 +g1,19824:27992181,25355173 +k1,19825:30841686,25355173:2488402 +g1,19825:31169366,25355173 +) +g1,19825:31169366,25355173 +) +(1,19826:9657329,26148166:21512037,555093,237900 +g1,19825:9657329,26148166 +(1,19825:9657329,26148166:6289304,555093,237900 +r1,19843:9657329,26148166:0,792993,237900 +g1,19825:9985009,26148166 +g1,19825:9985010,26148166 +(1,19825:9985010,26148166:0,452978,115847 +r1,19843:14563818,26148166:4578808,568825,115847 +k1,19825:9985010,26148166:-4578808 +) +(1,19825:9985010,26148166:4578808,452978,115847 +k1,19825:9985010,26148166:3277 +h1,19825:14560541,26148166:0,411205,112570 +) +k1,19825:15618953,26148166:1055135 +g1,19825:15946633,26148166 +) +g1,19825:15946633,26148166 +(1,19825:15946633,26148166:5042340,555093,237900 +g1,19825:16274313,26148166 +g1,19825:16274314,26148166 +k1,19825:20661293,26148166:1339556 +g1,19825:20988973,26148166 +) +g1,19825:20988973,26148166 +(1,19825:20988973,26148166:5937592,555093,237900 +g1,19825:21316653,26148166 +g1,19825:21316654,26148166 +(1,19825:21316654,26148166:0,452978,122846 +r1,19843:24840326,26148166:3523672,575824,122846 +k1,19825:21316654,26148166:-3523672 +) +(1,19825:21316654,26148166:3523672,452978,122846 +k1,19825:21316654,26148166:3277 +h1,19825:24837049,26148166:0,411205,112570 +) +k1,19825:26598885,26148166:1758559 +g1,19825:26926565,26148166 +) +g1,19825:26926565,26148166 +(1,19826:26926565,26148166:4242801,555093,237900 +g1,19825:27254245,26148166 +g1,19825:27254246,26148166 +g1,19825:27992181,26148166 +k1,19826:30841686,26148166:2488402 +g1,19826:31169366,26148166 +) +g1,19826:31169366,26148166 +) +(1,19827:9657329,26941159:21512037,555093,237900 +g1,19826:9657329,26941159 +(1,19826:9657329,26941159:6289304,555093,237900 +r1,19843:9657329,26941159:0,792993,237900 +g1,19826:9985009,26941159 +g1,19826:9985010,26941159 +(1,19826:9985010,26941159:0,452978,115847 +r1,19843:15267241,26941159:5282231,568825,115847 +k1,19826:9985010,26941159:-5282231 +) +(1,19826:9985010,26941159:5282231,452978,115847 +k1,19826:9985010,26941159:3277 +h1,19826:15263964,26941159:0,411205,112570 +) +k1,19826:15618953,26941159:351712 +g1,19826:15946633,26941159 +) +g1,19826:15946633,26941159 +(1,19826:15946633,26941159:5042340,555093,237900 +g1,19826:16274313,26941159 +g1,19826:16274314,26941159 +k1,19826:20661293,26941159:1339556 +g1,19826:20988973,26941159 +) +g1,19826:20988973,26941159 +(1,19826:20988973,26941159:5937592,555093,237900 +g1,19826:21316653,26941159 +g1,19826:21316654,26941159 +(1,19826:21316654,26941159:0,452978,122846 +r1,19843:25192038,26941159:3875384,575824,122846 +k1,19826:21316654,26941159:-3875384 +) +(1,19826:21316654,26941159:3875384,452978,122846 +k1,19826:21316654,26941159:3277 +h1,19826:25188761,26941159:0,411205,112570 +) +k1,19826:26598885,26941159:1406847 +g1,19826:26926565,26941159 +) +g1,19826:26926565,26941159 +(1,19827:26926565,26941159:4242801,555093,237900 +g1,19826:27254245,26941159 +g1,19826:27254246,26941159 +g1,19826:27992181,26941159 +k1,19827:30841686,26941159:2488402 +g1,19827:31169366,26941159 +) +g1,19827:31169366,26941159 +) +(1,19828:9657329,27734152:21512037,555093,237900 +g1,19827:9657329,27734152 +(1,19827:9657329,27734152:6289304,555093,237900 +r1,19843:9657329,27734152:0,792993,237900 +g1,19827:9985009,27734152 +g1,19827:9985010,27734152 +(1,19827:9985010,27734152:0,414482,115847 +r1,19843:14563818,27734152:4578808,530329,115847 +k1,19827:9985010,27734152:-4578808 +) +(1,19827:9985010,27734152:4578808,414482,115847 +k1,19827:9985010,27734152:3277 +h1,19827:14560541,27734152:0,411205,112570 +) +k1,19827:15618953,27734152:1055135 +g1,19827:15946633,27734152 +) +g1,19827:15946633,27734152 +(1,19827:15946633,27734152:5042340,555093,237900 +g1,19827:16274313,27734152 +g1,19827:16274314,27734152 +k1,19827:20661293,27734152:1339556 +g1,19827:20988973,27734152 +) +g1,19827:20988973,27734152 +(1,19827:20988973,27734152:5937592,555093,237900 +g1,19827:21316653,27734152 +g1,19827:21316654,27734152 +(1,19827:21316654,27734152:0,414482,122846 +r1,19843:24488614,27734152:3171960,537328,122846 +k1,19827:21316654,27734152:-3171960 +) +(1,19827:21316654,27734152:3171960,414482,122846 +k1,19827:21316654,27734152:3277 +h1,19827:24485337,27734152:0,411205,112570 +) +k1,19827:26598885,27734152:2110271 +g1,19827:26926565,27734152 +) +g1,19827:26926565,27734152 +(1,19828:26926565,27734152:4242801,555093,237900 +g1,19827:27254245,27734152 +g1,19827:27254246,27734152 +g1,19827:27992181,27734152 +k1,19828:30841686,27734152:2488402 +g1,19828:31169366,27734152 +) +g1,19828:31169366,27734152 +) +(1,19829:9657329,28527145:21512037,555093,237900 +g1,19828:9657329,28527145 +(1,19828:9657329,28527145:6289304,555093,237900 +r1,19843:9657329,28527145:0,792993,237900 +g1,19828:9985009,28527145 +g1,19828:9985010,28527145 +(1,19828:9985010,28527145:0,452978,115847 +r1,19843:14563818,28527145:4578808,568825,115847 +k1,19828:9985010,28527145:-4578808 +) +(1,19828:9985010,28527145:4578808,452978,115847 +k1,19828:9985010,28527145:3277 +h1,19828:14560541,28527145:0,411205,112570 +) +k1,19828:15618953,28527145:1055135 +g1,19828:15946633,28527145 +) +g1,19828:15946633,28527145 +(1,19828:15946633,28527145:5042340,555093,237900 +g1,19828:16274313,28527145 +g1,19828:16274314,28527145 +k1,19828:20661293,28527145:1558446 +g1,19828:20988973,28527145 +) +g1,19828:20988973,28527145 +(1,19828:20988973,28527145:5937592,555093,237900 +g1,19828:21316653,28527145 +g1,19828:21316654,28527145 +(1,19828:21316654,28527145:0,452978,122846 +r1,19843:24840326,28527145:3523672,575824,122846 +k1,19828:21316654,28527145:-3523672 +) +(1,19828:21316654,28527145:3523672,452978,122846 +k1,19828:21316654,28527145:3277 +h1,19828:24837049,28527145:0,411205,112570 +) +k1,19828:26598885,28527145:1758559 +g1,19828:26926565,28527145 +) +g1,19828:26926565,28527145 +(1,19829:26926565,28527145:4242801,555093,237900 +g1,19828:27254245,28527145 +g1,19828:27254246,28527145 +k1,19829:30841686,28527145:2932080 +g1,19829:31169366,28527145 +) +g1,19829:31169366,28527145 +) +] +$1,19830:31169366,19254297 +) +g1,19830:31169366,19254297 +) +(1,19830:9458100,29127065:21711266,65536,0 +g1,19830:9458100,29127065 +(1,19830:9458100,29127065:21711266,65536,0 +r1,19843:31169366,29127065:21711266,65536,0 +) +g1,19830:31169366,29127065 +) +] +g1,19830:31169366,29127065 +k1,19830:32583029,29127065:1413663 +) +] +] +(1,19798:6630773,31093145:25952256,513147,134348 +k1,19797:10088325,31093145:282988 +k1,19797:11864222,31093145:282987 +k1,19797:13213481,31093145:282988 +k1,19797:15425848,31093145:282987 +k1,19797:18105488,31093145:282988 +k1,19797:19286319,31093145:282988 +k1,19797:22917540,31093145:282987 +k1,19797:26181105,31093145:282988 +(1,19797:26181105,31093145:0,414482,115847 +r1,19843:26539371,31093145:358266,530329,115847 +k1,19797:26181105,31093145:-358266 +) +(1,19797:26181105,31093145:358266,414482,115847 +k1,19797:26181105,31093145:3277 +h1,19797:26536094,31093145:0,411205,112570 +) +k1,19797:26822358,31093145:282987 +k1,19797:28296791,31093145:282988 +(1,19797:28296791,31093145:0,414482,115847 +r1,19843:28655057,31093145:358266,530329,115847 +k1,19797:28296791,31093145:-358266 +) +(1,19797:28296791,31093145:358266,414482,115847 +k1,19797:28296791,31093145:3277 +h1,19797:28651780,31093145:0,411205,112570 +) +k1,19797:29111714,31093145:282987 +k1,19797:31379788,31093145:282988 +k1,19797:32583029,31093145:0 +) +(1,19798:6630773,31958225:25952256,513147,134348 +k1,19797:9326364,31958225:180975 +k1,19797:10924227,31958225:180975 +k1,19797:11461062,31958225:180975 +k1,19797:13536027,31958225:180975 +k1,19797:16302397,31958225:180975 +k1,19797:17134800,31958225:180975 +(1,19797:17134800,31958225:0,414482,115847 +r1,19843:17493066,31958225:358266,530329,115847 +k1,19797:17134800,31958225:-358266 +) +(1,19797:17134800,31958225:358266,414482,115847 +k1,19797:17134800,31958225:3277 +h1,19797:17489789,31958225:0,411205,112570 +) +k1,19797:17674041,31958225:180975 +k1,19797:19140831,31958225:180974 +k1,19797:21581487,31958225:180975 +k1,19797:22118322,31958225:180975 +k1,19797:24191977,31958225:180975 +k1,19797:25320603,31958225:180975 +k1,19797:26953200,31958225:180975 +k1,19797:28596283,31958225:180975 +k1,19797:29436550,31958225:180975 +k1,19797:30636610,31958225:180975 +k1,19798:32583029,31958225:0 +k1,19798:32583029,31958225:0 +) +(1,19833:6630773,34075043:25952256,555811,12975 +(1,19833:6630773,34075043:2450326,534184,12975 +g1,19833:6630773,34075043 +g1,19833:9081099,34075043 +) +k1,19833:32583029,34075043:19939262 +g1,19833:32583029,34075043 +) +(1,19837:6630773,35333339:25952256,513147,126483 +k1,19836:9710902,35333339:201788 +(1,19836:9710902,35333339:0,459977,115847 +r1,19843:14993133,35333339:5282231,575824,115847 +k1,19836:9710902,35333339:-5282231 +) +(1,19836:9710902,35333339:5282231,459977,115847 +k1,19836:9710902,35333339:3277 +h1,19836:14989856,35333339:0,411205,112570 +) +k1,19836:15194922,35333339:201789 +k1,19836:15928207,35333339:201788 +k1,19836:17149081,35333339:201789 +k1,19836:20062749,35333339:201788 +k1,19836:20915966,35333339:201789 +k1,19836:22210239,35333339:201788 +k1,19836:23603473,35333339:201789 +k1,19836:27643705,35333339:201788 +k1,19836:29312190,35333339:201789 +k1,19836:29979939,35333339:201788 +k1,19836:32583029,35333339:0 +) +(1,19837:6630773,36198419:25952256,513147,138281 +k1,19836:7365392,36198419:264726 +k1,19836:10692615,36198419:264726 +$1,19836:10692615,36198419 +$1,19836:11244428,36198419 +k1,19836:11509155,36198419:264727 +k1,19836:13784526,36198419:264726 +k1,19836:14810780,36198419:264726 +k1,19836:17829329,36198419:264726 +k1,19836:18864758,36198419:264726 +k1,19836:19544262,36198419:264661 +k1,19836:22504484,36198419:264726 +k1,19836:23420638,36198419:264726 +k1,19836:24041224,36198419:264726 +k1,19836:27245895,36198419:264726 +k1,19836:28169914,36198419:264727 +$1,19836:28169914,36198419 +$1,19836:28672575,36198419 +k1,19836:28937301,36198419:264726 +k1,19836:31386342,36198419:264726 +k1,19836:32583029,36198419:0 +) +(1,19837:6630773,37063499:25952256,513147,134348 +g1,19836:8610615,37063499 +g1,19836:9469136,37063499 +g1,19836:10687450,37063499 +(1,19836:10687450,37063499:0,452978,115847 +r1,19843:13155987,37063499:2468537,568825,115847 +k1,19836:10687450,37063499:-2468537 +) +(1,19836:10687450,37063499:2468537,452978,115847 +k1,19836:10687450,37063499:3277 +h1,19836:13152710,37063499:0,411205,112570 +) +g1,19836:13355216,37063499 +g1,19836:16065785,37063499 +g1,19836:18850409,37063499 +g1,19836:19701066,37063499 +(1,19836:19701066,37063499:0,414482,115847 +r1,19843:20059332,37063499:358266,530329,115847 +k1,19836:19701066,37063499:-358266 +) +(1,19836:19701066,37063499:358266,414482,115847 +k1,19836:19701066,37063499:3277 +h1,19836:20056055,37063499:0,411205,112570 +) +g1,19836:20258561,37063499 +g1,19836:24032124,37063499 +g1,19836:25250438,37063499 +g1,19836:27230280,37063499 +g1,19836:28088801,37063499 +$1,19836:28088801,37063499 +$1,19836:28591462,37063499 +g1,19836:28790691,37063499 +g1,19836:31000565,37063499 +k1,19837:32583029,37063499:16809 +g1,19837:32583029,37063499 +) +(1,19839:6630773,37928579:25952256,513147,134348 +h1,19838:6630773,37928579:983040,0,0 +k1,19838:9161080,37928579:283733 +k1,19838:9859571,37928579:283648 +k1,19838:13012470,37928579:283733 +k1,19838:14677046,37928579:283732 +k1,19838:17342357,37928579:283733 +k1,19838:18308975,37928579:283733 +k1,19838:19832649,37928579:283733 +k1,19838:21220664,37928579:283733 +k1,19838:22252162,37928579:283732 +k1,19838:24049121,37928579:283733 +k1,19838:25019016,37928579:283733 +k1,19838:26691457,37928579:283733 +k1,19838:27661351,37928579:283732 +k1,19838:28403181,37928579:283733 +k1,19838:29218411,37928579:283733 +k1,19838:32583029,37928579:0 +) +(1,19839:6630773,38793659:25952256,513147,134348 +k1,19838:8273106,38793659:274596 +k1,19838:9566786,38793659:274595 +k1,19838:11854648,38793659:274596 +k1,19838:12788535,38793659:274595 +k1,19838:14082216,38793659:274596 +k1,19838:17135538,38793659:274595 +k1,19838:19388011,38793659:274596 +k1,19838:21390136,38793659:274596 +k1,19838:22316159,38793659:274595 +k1,19838:23609840,38793659:274596 +k1,19838:25897701,38793659:274595 +k1,19838:26831589,38793659:274596 +k1,19838:28125269,38793659:274595 +k1,19838:30377742,38793659:274596 +k1,19838:32583029,38793659:0 +) +(1,19839:6630773,39658739:25952256,513147,134348 +k1,19838:7609141,39658739:292206 +k1,19838:8672050,39658739:292206 +k1,19838:12036585,39658739:292207 +k1,19838:12980219,39658739:292206 +k1,19838:14060823,39658739:292206 +k1,19838:15659162,39658739:292206 +k1,19838:19405772,39658739:292207 +k1,19838:20894665,39658739:292206 +k1,19838:24259199,39658739:292206 +k1,19838:26756692,39658739:292206 +k1,19838:27700327,39658739:292207 +k1,19838:31273265,39658739:292206 +(1,19838:31273265,39658739:0,414482,115847 +r1,19843:31631531,39658739:358266,530329,115847 +k1,19838:31273265,39658739:-358266 +) +(1,19838:31273265,39658739:358266,414482,115847 +k1,19838:31273265,39658739:3277 +h1,19838:31628254,39658739:0,411205,112570 +) +k1,19838:31923737,39658739:292206 +k1,19839:32583029,39658739:0 +) +(1,19839:6630773,40523819:25952256,513147,134348 +(1,19838:6630773,40523819:0,459977,122846 +r1,19843:11913004,40523819:5282231,582823,122846 +k1,19838:6630773,40523819:-5282231 +) +(1,19838:6630773,40523819:5282231,459977,122846 +k1,19838:6630773,40523819:3277 +h1,19838:11909727,40523819:0,411205,112570 +) +k1,19838:12159476,40523819:246472 +k1,19838:15980282,40523819:246472 +k1,19838:17245840,40523819:246473 +k1,19838:19505578,40523819:246472 +k1,19838:20411342,40523819:246472 +k1,19838:21676899,40523819:246472 +k1,19838:25076308,40523819:246472 +k1,19838:27300657,40523819:246472 +k1,19838:28206422,40523819:246473 +$1,19838:28206422,40523819 +$1,19838:28709083,40523819 +k1,19838:28955555,40523819:246472 +k1,19838:31386342,40523819:246472 +k1,19838:32583029,40523819:0 +) +(1,19839:6630773,41388899:25952256,513147,138281 +k1,19838:8271232,41388899:251096 +k1,19838:10398625,41388899:251097 +k1,19838:13428448,41388899:251096 +k1,19838:16381593,41388899:251096 +k1,19838:18329416,41388899:251096 +k1,19838:19572073,41388899:251097 +k1,19838:20842254,41388899:251096 +$1,19838:20842254,41388899 +$1,19838:21344915,41388899 +k1,19838:21596011,41388899:251096 +k1,19838:23857753,41388899:251097 +k1,19838:25300294,41388899:251096 +k1,19838:26237552,41388899:251096 +$1,19838:26237552,41388899 +$1,19838:26789365,41388899 +k1,19838:27040461,41388899:251096 +k1,19838:29302203,41388899:251097 +k1,19838:30572384,41388899:251096 +k1,19838:32583029,41388899:0 +) +(1,19839:6630773,42253979:25952256,513147,126483 +g1,19838:9608729,42253979 +g1,19838:10569486,42253979 +g1,19838:11787800,42253979 +k1,19839:32583028,42253979:18047304 +g1,19839:32583028,42253979 +) +(1,19841:6630773,43119059:25952256,513147,126483 +h1,19840:6630773,43119059:983040,0,0 +k1,19840:9075265,43119059:264765 +k1,19840:10836218,43119059:264766 +k1,19840:11752411,43119059:264765 +k1,19840:13294473,43119059:264765 +k1,19840:14578324,43119059:264766 +k1,19840:17199108,43119059:264765 +k1,19840:20949734,43119059:264766 +k1,19840:24995926,43119059:264765 +k1,19840:27956187,43119059:264765 +k1,19840:28752450,43119059:264766 +k1,19840:30371189,43119059:264765 +k1,19840:32583029,43119059:0 +) +(1,19841:6630773,43984139:25952256,513147,134348 +g1,19840:9022181,43984139 +g1,19840:10030780,43984139 +g1,19840:11249094,43984139 +g1,19840:14044204,43984139 +(1,19840:14044204,43984139:0,435480,115847 +r1,19843:16512741,43984139:2468537,551327,115847 +k1,19840:14044204,43984139:-2468537 +) +(1,19840:14044204,43984139:2468537,435480,115847 +g1,19840:14750905,43984139 +g1,19840:15454329,43984139 +h1,19840:16509464,43984139:0,411205,112570 +) +g1,19840:16711970,43984139 +g1,19840:18102644,43984139 +(1,19840:18102644,43984139:0,452978,122846 +r1,19843:22681452,43984139:4578808,575824,122846 +k1,19840:18102644,43984139:-4578808 +) +(1,19840:18102644,43984139:4578808,452978,122846 +g1,19840:19864480,43984139 +g1,19840:20567904,43984139 +h1,19840:22678175,43984139:0,411205,112570 +) +k1,19841:32583029,43984139:9849149 +g1,19841:32583029,43984139 +) +] +(1,19843:32583029,45706769:0,0,0 +g1,19843:32583029,45706769 +) +) +] +(1,19843:6630773,47279633:25952256,0,0 +h1,19843:6630773,47279633:25952256,0,0 +) +] +(1,19843:4262630,4025873:0,0,0 +[1,19843:-473656,4025873:0,0,0 +(1,19843:-473656,-710413:0,0,0 +(1,19843:-473656,-710413:0,0,0 +g1,19843:-473656,-710413 +) +g1,19843:-473656,-710413 ) ] ) ] !47706 -}331 -Input:3572:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3573:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3574:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}332 Input:3576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3577:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3578:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3579:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3580:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3582:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{332 -[1,19907:4262630,47279633:28320399,43253760,0 -(1,19907:4262630,4025873:0,0,0 -[1,19907:-473656,4025873:0,0,0 -(1,19907:-473656,-710413:0,0,0 -(1,19907:-473656,-644877:0,0,0 -k1,19907:-473656,-644877:-65536 +{333 +[1,19905:4262630,47279633:28320399,43253760,0 +(1,19905:4262630,4025873:0,0,0 +[1,19905:-473656,4025873:0,0,0 +(1,19905:-473656,-710413:0,0,0 +(1,19905:-473656,-644877:0,0,0 +k1,19905:-473656,-644877:-65536 ) -(1,19907:-473656,4736287:0,0,0 -k1,19907:-473656,4736287:5209943 +(1,19905:-473656,4736287:0,0,0 +k1,19905:-473656,4736287:5209943 ) -g1,19907:-473656,-710413 +g1,19905:-473656,-710413 ) ] ) -[1,19907:6630773,47279633:25952256,43253760,0 -[1,19907:6630773,4812305:25952256,786432,0 -(1,19907:6630773,4812305:25952256,485622,11795 -(1,19907:6630773,4812305:25952256,485622,11795 -g1,19907:3078558,4812305 -[1,19907:3078558,4812305:0,0,0 -(1,19907:3078558,2439708:0,1703936,0 -k1,19907:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19907:2537886,2439708:1179648,16384,0 +[1,19905:6630773,47279633:25952256,43253760,0 +[1,19905:6630773,4812305:25952256,786432,0 +(1,19905:6630773,4812305:25952256,485622,11795 +(1,19905:6630773,4812305:25952256,485622,11795 +g1,19905:3078558,4812305 +[1,19905:3078558,4812305:0,0,0 +(1,19905:3078558,2439708:0,1703936,0 +k1,19905:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19905:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19907:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19905:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19907:3078558,4812305:0,0,0 -(1,19907:3078558,2439708:0,1703936,0 -g1,19907:29030814,2439708 -g1,19907:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19907:36151628,1915420:16384,1179648,0 +[1,19905:3078558,4812305:0,0,0 +(1,19905:3078558,2439708:0,1703936,0 +g1,19905:29030814,2439708 +g1,19905:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19905:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19907:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19905:37855564,2439708:1179648,16384,0 ) ) -k1,19907:3078556,2439708:-34777008 +k1,19905:3078556,2439708:-34777008 ) ] -[1,19907:3078558,4812305:0,0,0 -(1,19907:3078558,49800853:0,16384,2228224 -k1,19907:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19907:2537886,49800853:1179648,16384,0 +[1,19905:3078558,4812305:0,0,0 +(1,19905:3078558,49800853:0,16384,2228224 +k1,19905:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19905:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19907:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19905:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19907:3078558,4812305:0,0,0 -(1,19907:3078558,49800853:0,16384,2228224 -g1,19907:29030814,49800853 -g1,19907:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19907:36151628,51504789:16384,1179648,0 +[1,19905:3078558,4812305:0,0,0 +(1,19905:3078558,49800853:0,16384,2228224 +g1,19905:29030814,49800853 +g1,19905:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19905:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19907:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19905:37855564,49800853:1179648,16384,0 ) ) -k1,19907:3078556,49800853:-34777008 +k1,19905:3078556,49800853:-34777008 ) ] -g1,19907:6630773,4812305 -g1,19907:6630773,4812305 -g1,19907:9560887,4812305 -k1,19907:31387651,4812305:21826764 +g1,19905:6630773,4812305 +g1,19905:6630773,4812305 +g1,19905:9560887,4812305 +k1,19905:31387651,4812305:21826764 ) ) ] -[1,19907:6630773,45706769:25952256,40108032,0 -(1,19907:6630773,45706769:25952256,40108032,0 -(1,19907:6630773,45706769:0,0,0 -g1,19907:6630773,45706769 +[1,19905:6630773,45706769:25952256,40108032,0 +(1,19905:6630773,45706769:25952256,40108032,0 +(1,19905:6630773,45706769:0,0,0 +g1,19905:6630773,45706769 ) -[1,19907:6630773,45706769:25952256,40108032,0 -v1,19845:6630773,6254097:0,393216,0 -(1,19851:6630773,7938066:25952256,2077185,196608 -g1,19851:6630773,7938066 -g1,19851:6630773,7938066 -g1,19851:6434165,7938066 -(1,19851:6434165,7938066:0,2077185,196608 -r1,19907:32779637,7938066:26345472,2273793,196608 -k1,19851:6434165,7938066:-26345472 +[1,19905:6630773,45706769:25952256,40108032,0 +v1,19843:6630773,6254097:0,393216,0 +(1,19849:6630773,7938066:25952256,2077185,196608 +g1,19849:6630773,7938066 +g1,19849:6630773,7938066 +g1,19849:6434165,7938066 +(1,19849:6434165,7938066:0,2077185,196608 +r1,19905:32779637,7938066:26345472,2273793,196608 +k1,19849:6434165,7938066:-26345472 ) -(1,19851:6434165,7938066:26345472,2077185,196608 -[1,19851:6630773,7938066:25952256,1880577,0 -(1,19847:6630773,6488534:25952256,431045,112852 -(1,19846:6630773,6488534:0,0,0 -g1,19846:6630773,6488534 -g1,19846:6630773,6488534 -g1,19846:6303093,6488534 -(1,19846:6303093,6488534:0,0,0 -) -g1,19846:6630773,6488534 -) -k1,19847:6630773,6488534:0 -g1,19847:10614221,6488534 -g1,19847:11278129,6488534 -g1,19847:15593530,6488534 -g1,19847:16257438,6488534 -k1,19847:16257438,6488534:0 -h1,19847:19245024,6488534:0,0,0 -k1,19847:32583029,6488534:13338005 -g1,19847:32583029,6488534 -) -(1,19848:6630773,7173389:25952256,424439,112852 -h1,19848:6630773,7173389:0,0,0 -g1,19848:6962727,7173389 -g1,19848:7294681,7173389 -g1,19848:7626635,7173389 -g1,19848:7958589,7173389 -g1,19848:8290543,7173389 -g1,19848:8622497,7173389 -g1,19848:8954451,7173389 -g1,19848:11610083,7173389 -g1,19848:12273991,7173389 -g1,19848:14265715,7173389 -g1,19848:14929623,7173389 -g1,19848:16257439,7173389 -h1,19848:16589393,7173389:0,0,0 -k1,19848:32583029,7173389:15993636 -g1,19848:32583029,7173389 -) -(1,19849:6630773,7858244:25952256,431045,79822 -h1,19849:6630773,7858244:0,0,0 -g1,19849:6962727,7858244 -g1,19849:7294681,7858244 -g1,19849:13269852,7858244 -g1,19849:13933760,7858244 -h1,19849:15925484,7858244:0,0,0 -k1,19849:32583029,7858244:16657545 -g1,19849:32583029,7858244 -) -] -) -g1,19851:32583029,7938066 -g1,19851:6630773,7938066 -g1,19851:6630773,7938066 -g1,19851:32583029,7938066 -g1,19851:32583029,7938066 -) -h1,19851:6630773,8134674:0,0,0 -(1,19854:6630773,17283876:25952256,9083666,0 -k1,19854:10523651,17283876:3892878 -h1,19853:10523651,17283876:0,0,0 -(1,19853:10523651,17283876:18166500,9083666,0 -(1,19853:10523651,17283876:18167376,9083688,0 -(1,19853:10523651,17283876:18167376,9083688,0 -(1,19853:10523651,17283876:0,9083688,0 -(1,19853:10523651,17283876:0,14208860,0 -(1,19853:10523651,17283876:28417720,14208860,0 -) -k1,19853:10523651,17283876:-28417720 -) -) -g1,19853:28691027,17283876 -) -) -) -g1,19854:28690151,17283876 -k1,19854:32583029,17283876:3892878 -) -(1,19861:6630773,18148956:25952256,513147,134348 -h1,19860:6630773,18148956:983040,0,0 -k1,19860:9648760,18148956:243193 -k1,19860:10247813,18148956:243193 -k1,19860:12649762,18148956:243193 -k1,19860:13886481,18148956:243193 -k1,19860:17356667,18148956:243193 -k1,19860:21002489,18148956:243193 -k1,19860:22349964,18148956:243193 -k1,19860:23340923,18148956:243193 -k1,19860:25789403,18148956:243193 -k1,19860:26684024,18148956:243193 -k1,19860:27946302,18148956:243193 -k1,19860:30884991,18148956:243193 -k1,19860:32583029,18148956:0 -) -(1,19861:6630773,19014036:25952256,505283,134348 -g1,19860:8697778,19014036 -g1,19860:9548435,19014036 -g1,19860:12479860,19014036 -g1,19860:13698174,19014036 -g1,19860:15286766,19014036 -g1,19860:16970385,19014036 -g1,19860:18235885,19014036 -k1,19861:32583029,19014036:12012097 -g1,19861:32583029,19014036 -) -v1,19863:6630773,19698891:0,393216,0 -(1,19869:6630773,21415890:25952256,2110215,196608 -g1,19869:6630773,21415890 -g1,19869:6630773,21415890 -g1,19869:6434165,21415890 -(1,19869:6434165,21415890:0,2110215,196608 -r1,19907:32779637,21415890:26345472,2306823,196608 -k1,19869:6434165,21415890:-26345472 -) -(1,19869:6434165,21415890:26345472,2110215,196608 -[1,19869:6630773,21415890:25952256,1913607,0 -(1,19865:6630773,19933328:25952256,431045,112852 -(1,19864:6630773,19933328:0,0,0 -g1,19864:6630773,19933328 -g1,19864:6630773,19933328 -g1,19864:6303093,19933328 -(1,19864:6303093,19933328:0,0,0 -) -g1,19864:6630773,19933328 -) -k1,19865:6630773,19933328:0 -g1,19865:10614221,19933328 -g1,19865:11278129,19933328 -g1,19865:15593530,19933328 -g1,19865:16257438,19933328 -k1,19865:16257438,19933328:0 -h1,19865:19245024,19933328:0,0,0 -k1,19865:32583029,19933328:13338005 -g1,19865:32583029,19933328 -) -(1,19866:6630773,20618183:25952256,424439,112852 -h1,19866:6630773,20618183:0,0,0 -g1,19866:6962727,20618183 -g1,19866:7294681,20618183 -g1,19866:7626635,20618183 -g1,19866:7958589,20618183 -g1,19866:8290543,20618183 -g1,19866:8622497,20618183 -g1,19866:8954451,20618183 -g1,19866:11610083,20618183 -g1,19866:12273991,20618183 -g1,19866:14265715,20618183 -g1,19866:14929623,20618183 -g1,19866:16257439,20618183 -h1,19866:16589393,20618183:0,0,0 -k1,19866:32583029,20618183:15993636 -g1,19866:32583029,20618183 -) -(1,19867:6630773,21303038:25952256,431045,112852 -h1,19867:6630773,21303038:0,0,0 -g1,19867:6962727,21303038 -g1,19867:7294681,21303038 -g1,19867:13269852,21303038 -g1,19867:13933760,21303038 -g1,19867:16257438,21303038 -g1,19867:17917208,21303038 -g1,19867:18581116,21303038 -g1,19867:21900656,21303038 -g1,19867:22564564,21303038 -g1,19867:23560426,21303038 -g1,19867:24556288,21303038 -g1,19867:25220196,21303038 -h1,19867:26548012,21303038:0,0,0 -k1,19867:32583029,21303038:6035017 -g1,19867:32583029,21303038 -) -] -) -g1,19869:32583029,21415890 -g1,19869:6630773,21415890 -g1,19869:6630773,21415890 -g1,19869:32583029,21415890 -g1,19869:32583029,21415890 -) -h1,19869:6630773,21612498:0,0,0 -v1,19873:6630773,22477578:0,393216,0 -(1,19874:6630773,23730982:25952256,1646620,0 -g1,19874:6630773,23730982 -g1,19874:6237557,23730982 -r1,19907:6368629,23730982:131072,1646620,0 -g1,19874:6567858,23730982 -g1,19874:6764466,23730982 -[1,19874:6764466,23730982:25818563,1646620,0 -(1,19874:6764466,22750055:25818563,665693,196608 -(1,19873:6764466,22750055:0,665693,196608 -r1,19907:7868133,22750055:1103667,862301,196608 -k1,19873:6764466,22750055:-1103667 -) -(1,19873:6764466,22750055:1103667,665693,196608 -) -k1,19873:8077671,22750055:209538 -k1,19873:9803889,22750055:327680 -k1,19873:11263198,22750055:209537 -k1,19873:12491821,22750055:209538 -k1,19873:14197546,22750055:209538 -k1,19873:16262408,22750055:209538 -k1,19873:17196773,22750055:209537 -k1,19873:18092473,22750055:209538 -k1,19873:18953439,22750055:209538 -k1,19873:20440274,22750055:209538 -k1,19873:21265849,22750055:209537 -k1,19873:22494472,22750055:209538 -k1,19873:24357483,22750055:209538 -k1,19873:26422345,22750055:209538 -k1,19873:28286666,22750055:209537 -k1,19873:30741467,22750055:209538 -k1,19873:32583029,22750055:0 -) -(1,19874:6764466,23615135:25818563,513147,115847 -g1,19873:7911346,23615135 -g1,19873:9765359,23615135 -g1,19873:12726931,23615135 -g1,19873:14936805,23615135 -g1,19873:16083685,23615135 -(1,19873:16083685,23615135:0,414482,115847 -r1,19907:17497086,23615135:1413401,530329,115847 -k1,19873:16083685,23615135:-1413401 -) -(1,19873:16083685,23615135:1413401,414482,115847 -k1,19873:16083685,23615135:3277 -h1,19873:17493809,23615135:0,411205,112570 -) -g1,19873:17696315,23615135 -g1,19873:18578429,23615135 -g1,19873:19725309,23615135 -g1,19873:21579322,23615135 -g1,19873:24540894,23615135 -g1,19873:26750768,23615135 -g1,19873:27897648,23615135 -(1,19873:27897648,23615135:0,452978,115847 -r1,19907:28607626,23615135:709978,568825,115847 -k1,19873:27897648,23615135:-709978 -) -(1,19873:27897648,23615135:709978,452978,115847 -k1,19873:27897648,23615135:3277 -h1,19873:28604349,23615135:0,411205,112570 -) -k1,19874:32583029,23615135:3922975 -g1,19874:32583029,23615135 -) -] -g1,19874:32583029,23730982 -) -h1,19874:6630773,23730982:0,0,0 -(1,19877:6630773,24596062:25952256,513147,126483 -h1,19876:6630773,24596062:983040,0,0 -k1,19876:10080260,24596062:230359 -k1,19876:14286033,24596062:230359 -k1,19876:17542189,24596062:230359 -k1,19876:19045913,24596062:230359 -k1,19876:21732561,24596062:230359 -k1,19876:23154365,24596062:230359 -k1,19876:27085542,24596062:230359 -k1,19876:30341698,24596062:230359 -k1,19876:32583029,24596062:0 -) -(1,19877:6630773,25461142:25952256,505283,7863 -g1,19876:7934284,25461142 -g1,19876:9419329,25461142 -g1,19876:10366324,25461142 -k1,19877:32583029,25461142:20651050 -g1,19877:32583029,25461142 -) -v1,19879:6630773,26145997:0,393216,0 -(1,19886:6630773,28547851:25952256,2795070,196608 -g1,19886:6630773,28547851 -g1,19886:6630773,28547851 -g1,19886:6434165,28547851 -(1,19886:6434165,28547851:0,2795070,196608 -r1,19907:32779637,28547851:26345472,2991678,196608 -k1,19886:6434165,28547851:-26345472 -) -(1,19886:6434165,28547851:26345472,2795070,196608 -[1,19886:6630773,28547851:25952256,2598462,0 -(1,19881:6630773,26380434:25952256,431045,112852 -(1,19880:6630773,26380434:0,0,0 -g1,19880:6630773,26380434 -g1,19880:6630773,26380434 -g1,19880:6303093,26380434 -(1,19880:6303093,26380434:0,0,0 -) -g1,19880:6630773,26380434 -) -k1,19881:6630773,26380434:0 -g1,19881:10614221,26380434 -g1,19881:11278129,26380434 -g1,19881:15593530,26380434 -g1,19881:16257438,26380434 -k1,19881:16257438,26380434:0 -h1,19881:17917208,26380434:0,0,0 -k1,19881:32583029,26380434:14665821 -g1,19881:32583029,26380434 -) -(1,19882:6630773,27065289:25952256,424439,112852 -h1,19882:6630773,27065289:0,0,0 -g1,19882:6962727,27065289 -g1,19882:7294681,27065289 -g1,19882:7626635,27065289 -g1,19882:7958589,27065289 -g1,19882:8290543,27065289 -g1,19882:8622497,27065289 -g1,19882:8954451,27065289 -g1,19882:11610083,27065289 -g1,19882:12273991,27065289 -g1,19882:14265715,27065289 -g1,19882:14929623,27065289 -g1,19882:16257439,27065289 -h1,19882:16589393,27065289:0,0,0 -k1,19882:32583029,27065289:15993636 -g1,19882:32583029,27065289 -) -(1,19883:6630773,27750144:25952256,431045,86428 -h1,19883:6630773,27750144:0,0,0 -g1,19883:6962727,27750144 -g1,19883:7294681,27750144 -g1,19883:13269852,27750144 -g1,19883:13933760,27750144 -g1,19883:17917207,27750144 -g1,19883:18913069,27750144 -g1,19883:20572839,27750144 -g1,19883:21236747,27750144 -g1,19883:21900655,27750144 -g1,19883:22564563,27750144 -k1,19883:22564563,27750144:0 -h1,19883:24224333,27750144:0,0,0 -k1,19883:32583029,27750144:8358696 -g1,19883:32583029,27750144 -) -(1,19884:6630773,28434999:25952256,424439,112852 -h1,19884:6630773,28434999:0,0,0 -g1,19884:6962727,28434999 -g1,19884:7294681,28434999 -g1,19884:7626635,28434999 -g1,19884:7958589,28434999 -g1,19884:8290543,28434999 -g1,19884:8622497,28434999 -g1,19884:8954451,28434999 -g1,19884:9286405,28434999 -g1,19884:9618359,28434999 -g1,19884:9950313,28434999 -g1,19884:10282267,28434999 -g1,19884:10614221,28434999 -g1,19884:10946175,28434999 -g1,19884:11278129,28434999 -g1,19884:11610083,28434999 -g1,19884:11942037,28434999 -g1,19884:13601807,28434999 -g1,19884:14265715,28434999 -g1,19884:16589393,28434999 -g1,19884:17253301,28434999 -g1,19884:18249163,28434999 -g1,19884:18913071,28434999 -g1,19884:19576979,28434999 -h1,19884:21236749,28434999:0,0,0 -k1,19884:32583029,28434999:11346280 -g1,19884:32583029,28434999 -) -] -) -g1,19886:32583029,28547851 -g1,19886:6630773,28547851 -g1,19886:6630773,28547851 -g1,19886:32583029,28547851 -g1,19886:32583029,28547851 -) -h1,19886:6630773,28744459:0,0,0 -v1,19890:6630773,29609539:0,393216,0 -(1,19891:6630773,31738659:25952256,2522336,0 -g1,19891:6630773,31738659 -g1,19891:6237557,31738659 -r1,19907:6368629,31738659:131072,2522336,0 -g1,19891:6567858,31738659 -g1,19891:6764466,31738659 -[1,19891:6764466,31738659:25818563,2522336,0 -(1,19891:6764466,29882016:25818563,665693,196608 -(1,19890:6764466,29882016:0,665693,196608 -r1,19907:7868133,29882016:1103667,862301,196608 -k1,19890:6764466,29882016:-1103667 -) -(1,19890:6764466,29882016:1103667,665693,196608 -) -k1,19890:8087887,29882016:219754 -k1,19890:9814105,29882016:327680 -k1,19890:11283631,29882016:219754 -k1,19890:12522470,29882016:219754 -k1,19890:14238411,29882016:219754 -k1,19890:16313489,29882016:219754 -k1,19890:17184671,29882016:219754 -k1,19890:18496911,29882016:219755 -k1,19890:19072525,29882016:219754 -k1,19890:22054622,29882016:219754 -k1,19890:25143542,29882016:219754 -k1,19890:26856862,29882016:219754 -k1,19890:27762778,29882016:219754 -$1,19890:27762778,29882016 -(1,19890:28122571,29606735:1071383,353698,7340 -) -$1,19890:29193954,29882016 -k1,19890:29587378,29882016:219754 -k1,19890:32583029,29882016:0 -) -(1,19891:6764466,30747096:25818563,513147,134348 -k1,19890:7943586,30747096:160035 -k1,19890:11920437,30747096:160034 -k1,19890:14285759,30747096:160035 -k1,19890:17004319,30747096:160034 -(1,19890:17004319,30747096:0,414482,122846 -r1,19907:18417720,30747096:1413401,537328,122846 -k1,19890:17004319,30747096:-1413401 -) -(1,19890:17004319,30747096:1413401,414482,122846 -k1,19890:17004319,30747096:3277 -h1,19890:18414443,30747096:0,411205,112570 -) -k1,19890:18577755,30747096:160035 -k1,19890:22594583,30747096:160034 -k1,19890:23652461,30747096:160035 -k1,19890:25015737,30747096:160035 -k1,19890:25937299,30747096:160034 -k1,19890:28165650,30747096:160035 -k1,19890:28984976,30747096:160034 -k1,19890:29915714,30747096:160035 -k1,19891:32583029,30747096:0 -) -(1,19891:6764466,31612176:25818563,513147,126483 -k1,19890:8061726,31612176:157589 -k1,19890:11088481,31612176:157589 -k1,19890:12437515,31612176:157589 -k1,19890:13356632,31612176:157589 -k1,19890:15582537,31612176:157589 -k1,19890:16399418,31612176:157589 -k1,19890:17327710,31612176:157589 -k1,19890:20790280,31612176:157589 -k1,19890:23106625,31612176:157589 -k1,19890:25959710,31612176:157589 -k1,19890:28498877,31612176:157589 -k1,19890:29417994,31612176:157589 -k1,19890:31034414,31612176:157589 -k1,19891:32583029,31612176:0 -k1,19891:32583029,31612176:0 -) -] -g1,19891:32583029,31738659 -) -h1,19891:6630773,31738659:0,0,0 -(1,19896:6630773,33855477:25952256,555811,12975 -(1,19896:6630773,33855477:2450326,534184,12975 -g1,19896:6630773,33855477 -g1,19896:9081099,33855477 -) -k1,19896:32583029,33855477:19484376 -g1,19896:32583029,33855477 -) -(1,19901:6630773,35113773:25952256,505283,126483 -k1,19900:8022047,35113773:216214 -k1,19900:11746403,35113773:216214 -k1,19900:15091962,35113773:216215 -k1,19900:15924214,35113773:216214 -k1,19900:17343669,35113773:216214 -k1,19900:19838570,35113773:216214 -k1,19900:21159066,35113773:216214 -k1,19900:22123046,35113773:216214 -k1,19900:26875663,35113773:216215 -k1,19900:27901247,35113773:216214 -k1,19900:29282691,35113773:216214 -k1,19900:30888268,35113773:216214 -k1,19900:32583029,35113773:0 -) -(1,19901:6630773,35978853:25952256,513147,126483 -k1,19900:7457603,35978853:143945 -k1,19900:9903828,35978853:143945 -k1,19900:10857143,35978853:143945 -k1,19900:12509727,35978853:143945 -k1,19900:14157723,35978853:143945 -k1,19900:16734364,35978853:143945 -k1,19900:18162815,35978853:143945 -k1,19900:18772721,35978853:143945 -k1,19900:20488875,35978853:143945 -k1,19900:22447512,35978853:143945 -k1,19900:23583017,35978853:143945 -k1,19900:26659698,35978853:143945 -k1,19900:27911857,35978853:143945 -k1,19900:29074887,35978853:143945 -k1,19900:32583029,35978853:0 -) -(1,19901:6630773,36843933:25952256,513147,11795 -k1,19900:7934066,36843933:197045 -k1,19900:8878877,36843933:197045 -k1,19900:12304880,36843933:197044 -k1,19900:14069546,36843933:197045 -k1,19900:15285676,36843933:197045 -k1,19900:17562834,36843933:197045 -k1,19900:18419171,36843933:197045 -k1,19900:22687968,36843933:197045 -k1,19900:24895001,36843933:197044 -k1,19900:26788773,36843933:197045 -k1,19900:28974180,36843933:197045 -k1,19900:30768337,36843933:197045 -k1,19900:32583029,36843933:0 -) -(1,19901:6630773,37709013:25952256,513147,134348 -k1,19900:7895430,37709013:160375 -k1,19900:8803571,37709013:160375 -k1,19900:11185617,37709013:160375 -k1,19900:13044030,37709013:160375 -k1,19900:16101752,37709013:160375 -k1,19900:18865872,37709013:160375 -k1,19900:19382107,37709013:160375 -k1,19900:21114691,37709013:160375 -k1,19900:21957951,37709013:160375 -k1,19900:22879854,37709013:160375 -k1,19900:25108545,37709013:160375 -k1,19900:25928212,37709013:160375 -k1,19900:29114384,37709013:160375 -(1,19900:29114384,37709013:0,452978,115847 -r1,19907:31231209,37709013:2116825,568825,115847 -k1,19900:29114384,37709013:-2116825 -) -(1,19900:29114384,37709013:2116825,452978,115847 -k1,19900:29114384,37709013:3277 -h1,19900:31227932,37709013:0,411205,112570 -) -k1,19900:31391584,37709013:160375 -k1,19901:32583029,37709013:0 -) -(1,19901:6630773,38574093:25952256,513147,134348 -(1,19900:6630773,38574093:0,452978,115847 -r1,19907:8747598,38574093:2116825,568825,115847 -k1,19900:6630773,38574093:-2116825 -) -(1,19900:6630773,38574093:2116825,452978,115847 -k1,19900:6630773,38574093:3277 -h1,19900:8744321,38574093:0,411205,112570 -) -k1,19900:9136528,38574093:215260 -k1,19900:10401674,38574093:215259 -k1,19900:12895621,38574093:215260 -h1,19900:14264668,38574093:0,0,0 -k1,19900:14479927,38574093:215259 -k1,19900:15504557,38574093:215260 -k1,19900:17217969,38574093:215259 -h1,19900:18413346,38574093:0,0,0 -k1,19900:18628606,38574093:215260 -k1,19900:19791516,38574093:215259 -k1,19900:20777479,38574093:215260 -k1,19900:24725013,38574093:215259 -k1,19900:25599565,38574093:215260 -k1,19900:27145205,38574093:215259 -k1,19900:30768337,38574093:215260 -k1,19900:32583029,38574093:0 -) -(1,19901:6630773,39439173:25952256,513147,138281 -k1,19900:7997322,39439173:262267 -k1,19900:9007355,39439173:262267 -k1,19900:10782847,39439173:262266 -k1,19900:11696542,39439173:262267 -k1,19900:13757772,39439173:262267 -k1,19900:15287505,39439173:262267 -k1,19900:15905632,39439173:262267 -k1,19900:17445195,39439173:262266 -k1,19900:20167684,39439173:262267 -k1,19900:23506866,39439173:262267 -k1,19900:24428425,39439173:262267 -$1,19900:24428425,39439173 -$1,19900:24931086,39439173 -k1,19900:25193353,39439173:262267 -k1,19900:26647065,39439173:262267 -$1,19900:26647065,39439173 -$1,19900:27198878,39439173 -k1,19900:27461144,39439173:262266 -k1,19900:29734056,39439173:262267 -k1,19900:31563944,39439173:262267 -k1,19900:32583029,39439173:0 -) -(1,19901:6630773,40304253:25952256,505283,7863 -k1,19901:32583029,40304253:24510464 -g1,19901:32583029,40304253 -) -(1,19903:6630773,41169333:25952256,513147,134348 -h1,19902:6630773,41169333:983040,0,0 -k1,19902:8357537,41169333:273831 -k1,19902:9162865,41169333:273831 -k1,19902:12066657,41169333:273832 -k1,19902:12991916,41169333:273831 -k1,19902:16773889,41169333:273831 -k1,19902:18437083,41169333:273831 -k1,19902:19520284,41169333:273831 -k1,19902:20813200,41169333:273831 -k1,19902:21882639,41169333:273832 -k1,19902:23854508,41169333:273831 -k1,19902:26826456,41169333:273831 -k1,19902:28296974,41169333:273831 -k1,19902:32583029,41169333:0 -) -(1,19903:6630773,42034413:25952256,513147,126483 -k1,19902:10382816,42034413:280601 -k1,19902:11322708,42034413:280600 -k1,19902:14637626,42034413:280601 -k1,19902:15577518,42034413:280600 -k1,19902:18060129,42034413:280601 -k1,19902:21237420,42034413:280600 -k1,19902:22709466,42034413:280601 -k1,19902:23649358,42034413:280600 -k1,19902:26755871,42034413:280601 -k1,19902:27652509,42034413:280600 -(1,19902:27652509,42034413:0,452978,115847 -r1,19907:32583029,42034413:4930520,568825,115847 -k1,19902:27652509,42034413:-4930520 -) -(1,19902:27652509,42034413:4930520,452978,115847 -k1,19902:27652509,42034413:3277 -h1,19902:32579752,42034413:0,411205,112570 -) -k1,19902:32583029,42034413:0 -) -(1,19903:6630773,42899493:25952256,505283,134348 -g1,19902:8841957,42899493 -g1,19902:10680241,42899493 -g1,19902:11530898,42899493 -g1,19902:12477893,42899493 -g1,19902:14642547,42899493 -g1,19902:17522199,42899493 -g1,19902:18372856,42899493 -g1,19902:19591170,42899493 -g1,19902:21443872,42899493 -g1,19902:22920398,42899493 -k1,19903:32583029,42899493:8052412 -g1,19903:32583029,42899493 -) -(1,19905:6630773,43764573:25952256,513147,126483 -h1,19904:6630773,43764573:983040,0,0 -k1,19904:9300298,43764573:214546 -k1,19904:11391141,43764573:214547 -(1,19904:11391141,43764573:0,459977,115847 -r1,19907:14563101,43764573:3171960,575824,115847 -k1,19904:11391141,43764573:-3171960 -) -(1,19904:11391141,43764573:3171960,459977,115847 -k1,19904:11391141,43764573:3277 -h1,19904:14559824,43764573:0,411205,112570 -) -k1,19904:14951317,43764573:214546 -k1,19904:18957776,43764573:214546 -k1,19904:21214424,43764573:214546 -k1,19904:24131020,43764573:214547 -k1,19904:27190484,43764573:214546 -k1,19904:30943974,43764573:214546 -k1,19905:32583029,43764573:0 -) -(1,19905:6630773,44629653:25952256,513147,134348 -g1,19904:7925764,44629653 -g1,19904:10135638,44629653 -g1,19904:10950905,44629653 -g1,19904:13661474,44629653 -(1,19904:13661474,44629653:0,414482,115847 -r1,19907:14019740,44629653:358266,530329,115847 -k1,19904:13661474,44629653:-358266 -) -(1,19904:13661474,44629653:358266,414482,115847 -k1,19904:13661474,44629653:3277 -h1,19904:14016463,44629653:0,411205,112570 -) -g1,19904:14218969,44629653 -g1,19904:15034236,44629653 -g1,19904:16405904,44629653 -g1,19904:19001785,44629653 -g1,19904:23529667,44629653 -g1,19904:24490424,44629653 -g1,19904:25708738,44629653 -g1,19904:27700377,44629653 -g1,19904:28558898,44629653 -g1,19904:30652117,44629653 -(1,19904:30652117,44629653:0,414482,122846 -r1,19907:32417230,44629653:1765113,537328,122846 -k1,19904:30652117,44629653:-1765113 -) -(1,19904:30652117,44629653:1765113,414482,122846 -k1,19904:30652117,44629653:3277 -h1,19904:32413953,44629653:0,411205,112570 -) -k1,19905:32583029,44629653:113371 -g1,19905:32583029,44629653 -) -] -(1,19907:32583029,45706769:0,0,0 -g1,19907:32583029,45706769 -) -) -] -(1,19907:6630773,47279633:25952256,0,0 -h1,19907:6630773,47279633:25952256,0,0 -) -] -(1,19907:4262630,4025873:0,0,0 -[1,19907:-473656,4025873:0,0,0 -(1,19907:-473656,-710413:0,0,0 -(1,19907:-473656,-710413:0,0,0 -g1,19907:-473656,-710413 -) -g1,19907:-473656,-710413 +(1,19849:6434165,7938066:26345472,2077185,196608 +[1,19849:6630773,7938066:25952256,1880577,0 +(1,19845:6630773,6488534:25952256,431045,112852 +(1,19844:6630773,6488534:0,0,0 +g1,19844:6630773,6488534 +g1,19844:6630773,6488534 +g1,19844:6303093,6488534 +(1,19844:6303093,6488534:0,0,0 +) +g1,19844:6630773,6488534 +) +k1,19845:6630773,6488534:0 +g1,19845:10614221,6488534 +g1,19845:11278129,6488534 +g1,19845:15593530,6488534 +g1,19845:16257438,6488534 +k1,19845:16257438,6488534:0 +h1,19845:19245024,6488534:0,0,0 +k1,19845:32583029,6488534:13338005 +g1,19845:32583029,6488534 +) +(1,19846:6630773,7173389:25952256,424439,112852 +h1,19846:6630773,7173389:0,0,0 +g1,19846:6962727,7173389 +g1,19846:7294681,7173389 +g1,19846:7626635,7173389 +g1,19846:7958589,7173389 +g1,19846:8290543,7173389 +g1,19846:8622497,7173389 +g1,19846:8954451,7173389 +g1,19846:11610083,7173389 +g1,19846:12273991,7173389 +g1,19846:14265715,7173389 +g1,19846:14929623,7173389 +g1,19846:16257439,7173389 +h1,19846:16589393,7173389:0,0,0 +k1,19846:32583029,7173389:15993636 +g1,19846:32583029,7173389 +) +(1,19847:6630773,7858244:25952256,431045,79822 +h1,19847:6630773,7858244:0,0,0 +g1,19847:6962727,7858244 +g1,19847:7294681,7858244 +g1,19847:13269852,7858244 +g1,19847:13933760,7858244 +h1,19847:15925484,7858244:0,0,0 +k1,19847:32583029,7858244:16657545 +g1,19847:32583029,7858244 +) +] +) +g1,19849:32583029,7938066 +g1,19849:6630773,7938066 +g1,19849:6630773,7938066 +g1,19849:32583029,7938066 +g1,19849:32583029,7938066 +) +h1,19849:6630773,8134674:0,0,0 +(1,19852:6630773,17283876:25952256,9083666,0 +k1,19852:10523651,17283876:3892878 +h1,19851:10523651,17283876:0,0,0 +(1,19851:10523651,17283876:18166500,9083666,0 +(1,19851:10523651,17283876:18167376,9083688,0 +(1,19851:10523651,17283876:18167376,9083688,0 +(1,19851:10523651,17283876:0,9083688,0 +(1,19851:10523651,17283876:0,14208860,0 +(1,19851:10523651,17283876:28417720,14208860,0 +) +k1,19851:10523651,17283876:-28417720 +) +) +g1,19851:28691027,17283876 +) +) +) +g1,19852:28690151,17283876 +k1,19852:32583029,17283876:3892878 +) +(1,19859:6630773,18148956:25952256,513147,134348 +h1,19858:6630773,18148956:983040,0,0 +k1,19858:9648760,18148956:243193 +k1,19858:10247813,18148956:243193 +k1,19858:12649762,18148956:243193 +k1,19858:13886481,18148956:243193 +k1,19858:17356667,18148956:243193 +k1,19858:21002489,18148956:243193 +k1,19858:22349964,18148956:243193 +k1,19858:23340923,18148956:243193 +k1,19858:25789403,18148956:243193 +k1,19858:26684024,18148956:243193 +k1,19858:27946302,18148956:243193 +k1,19858:30884991,18148956:243193 +k1,19858:32583029,18148956:0 +) +(1,19859:6630773,19014036:25952256,505283,134348 +g1,19858:8697778,19014036 +g1,19858:9548435,19014036 +g1,19858:12479860,19014036 +g1,19858:13698174,19014036 +g1,19858:15286766,19014036 +g1,19858:16970385,19014036 +g1,19858:18235885,19014036 +k1,19859:32583029,19014036:12012097 +g1,19859:32583029,19014036 +) +v1,19861:6630773,19698891:0,393216,0 +(1,19867:6630773,21415890:25952256,2110215,196608 +g1,19867:6630773,21415890 +g1,19867:6630773,21415890 +g1,19867:6434165,21415890 +(1,19867:6434165,21415890:0,2110215,196608 +r1,19905:32779637,21415890:26345472,2306823,196608 +k1,19867:6434165,21415890:-26345472 +) +(1,19867:6434165,21415890:26345472,2110215,196608 +[1,19867:6630773,21415890:25952256,1913607,0 +(1,19863:6630773,19933328:25952256,431045,112852 +(1,19862:6630773,19933328:0,0,0 +g1,19862:6630773,19933328 +g1,19862:6630773,19933328 +g1,19862:6303093,19933328 +(1,19862:6303093,19933328:0,0,0 +) +g1,19862:6630773,19933328 +) +k1,19863:6630773,19933328:0 +g1,19863:10614221,19933328 +g1,19863:11278129,19933328 +g1,19863:15593530,19933328 +g1,19863:16257438,19933328 +k1,19863:16257438,19933328:0 +h1,19863:19245024,19933328:0,0,0 +k1,19863:32583029,19933328:13338005 +g1,19863:32583029,19933328 +) +(1,19864:6630773,20618183:25952256,424439,112852 +h1,19864:6630773,20618183:0,0,0 +g1,19864:6962727,20618183 +g1,19864:7294681,20618183 +g1,19864:7626635,20618183 +g1,19864:7958589,20618183 +g1,19864:8290543,20618183 +g1,19864:8622497,20618183 +g1,19864:8954451,20618183 +g1,19864:11610083,20618183 +g1,19864:12273991,20618183 +g1,19864:14265715,20618183 +g1,19864:14929623,20618183 +g1,19864:16257439,20618183 +h1,19864:16589393,20618183:0,0,0 +k1,19864:32583029,20618183:15993636 +g1,19864:32583029,20618183 +) +(1,19865:6630773,21303038:25952256,431045,112852 +h1,19865:6630773,21303038:0,0,0 +g1,19865:6962727,21303038 +g1,19865:7294681,21303038 +g1,19865:13269852,21303038 +g1,19865:13933760,21303038 +g1,19865:16257438,21303038 +g1,19865:17917208,21303038 +g1,19865:18581116,21303038 +g1,19865:21900656,21303038 +g1,19865:22564564,21303038 +g1,19865:23560426,21303038 +g1,19865:24556288,21303038 +g1,19865:25220196,21303038 +h1,19865:26548012,21303038:0,0,0 +k1,19865:32583029,21303038:6035017 +g1,19865:32583029,21303038 +) +] +) +g1,19867:32583029,21415890 +g1,19867:6630773,21415890 +g1,19867:6630773,21415890 +g1,19867:32583029,21415890 +g1,19867:32583029,21415890 +) +h1,19867:6630773,21612498:0,0,0 +v1,19871:6630773,22477578:0,393216,0 +(1,19872:6630773,23730982:25952256,1646620,0 +g1,19872:6630773,23730982 +g1,19872:6237557,23730982 +r1,19905:6368629,23730982:131072,1646620,0 +g1,19872:6567858,23730982 +g1,19872:6764466,23730982 +[1,19872:6764466,23730982:25818563,1646620,0 +(1,19872:6764466,22750055:25818563,665693,196608 +(1,19871:6764466,22750055:0,665693,196608 +r1,19905:7868133,22750055:1103667,862301,196608 +k1,19871:6764466,22750055:-1103667 +) +(1,19871:6764466,22750055:1103667,665693,196608 +) +k1,19871:8077671,22750055:209538 +k1,19871:9803889,22750055:327680 +k1,19871:11263198,22750055:209537 +k1,19871:12491821,22750055:209538 +k1,19871:14197546,22750055:209538 +k1,19871:16262408,22750055:209538 +k1,19871:17196773,22750055:209537 +k1,19871:18092473,22750055:209538 +k1,19871:18953439,22750055:209538 +k1,19871:20440274,22750055:209538 +k1,19871:21265849,22750055:209537 +k1,19871:22494472,22750055:209538 +k1,19871:24357483,22750055:209538 +k1,19871:26422345,22750055:209538 +k1,19871:28286666,22750055:209537 +k1,19871:30741467,22750055:209538 +k1,19871:32583029,22750055:0 +) +(1,19872:6764466,23615135:25818563,513147,115847 +g1,19871:7911346,23615135 +g1,19871:9765359,23615135 +g1,19871:12726931,23615135 +g1,19871:14936805,23615135 +g1,19871:16083685,23615135 +(1,19871:16083685,23615135:0,414482,115847 +r1,19905:17497086,23615135:1413401,530329,115847 +k1,19871:16083685,23615135:-1413401 +) +(1,19871:16083685,23615135:1413401,414482,115847 +k1,19871:16083685,23615135:3277 +h1,19871:17493809,23615135:0,411205,112570 +) +g1,19871:17696315,23615135 +g1,19871:18578429,23615135 +g1,19871:19725309,23615135 +g1,19871:21579322,23615135 +g1,19871:24540894,23615135 +g1,19871:26750768,23615135 +g1,19871:27897648,23615135 +(1,19871:27897648,23615135:0,452978,115847 +r1,19905:28607626,23615135:709978,568825,115847 +k1,19871:27897648,23615135:-709978 +) +(1,19871:27897648,23615135:709978,452978,115847 +k1,19871:27897648,23615135:3277 +h1,19871:28604349,23615135:0,411205,112570 +) +k1,19872:32583029,23615135:3922975 +g1,19872:32583029,23615135 +) +] +g1,19872:32583029,23730982 +) +h1,19872:6630773,23730982:0,0,0 +(1,19875:6630773,24596062:25952256,513147,126483 +h1,19874:6630773,24596062:983040,0,0 +k1,19874:10080260,24596062:230359 +k1,19874:14286033,24596062:230359 +k1,19874:17542189,24596062:230359 +k1,19874:19045913,24596062:230359 +k1,19874:21732561,24596062:230359 +k1,19874:23154365,24596062:230359 +k1,19874:27085542,24596062:230359 +k1,19874:30341698,24596062:230359 +k1,19874:32583029,24596062:0 +) +(1,19875:6630773,25461142:25952256,505283,7863 +g1,19874:7934284,25461142 +g1,19874:9419329,25461142 +g1,19874:10366324,25461142 +k1,19875:32583029,25461142:20651050 +g1,19875:32583029,25461142 +) +v1,19877:6630773,26145997:0,393216,0 +(1,19884:6630773,28547851:25952256,2795070,196608 +g1,19884:6630773,28547851 +g1,19884:6630773,28547851 +g1,19884:6434165,28547851 +(1,19884:6434165,28547851:0,2795070,196608 +r1,19905:32779637,28547851:26345472,2991678,196608 +k1,19884:6434165,28547851:-26345472 +) +(1,19884:6434165,28547851:26345472,2795070,196608 +[1,19884:6630773,28547851:25952256,2598462,0 +(1,19879:6630773,26380434:25952256,431045,112852 +(1,19878:6630773,26380434:0,0,0 +g1,19878:6630773,26380434 +g1,19878:6630773,26380434 +g1,19878:6303093,26380434 +(1,19878:6303093,26380434:0,0,0 +) +g1,19878:6630773,26380434 +) +k1,19879:6630773,26380434:0 +g1,19879:10614221,26380434 +g1,19879:11278129,26380434 +g1,19879:15593530,26380434 +g1,19879:16257438,26380434 +k1,19879:16257438,26380434:0 +h1,19879:17917208,26380434:0,0,0 +k1,19879:32583029,26380434:14665821 +g1,19879:32583029,26380434 +) +(1,19880:6630773,27065289:25952256,424439,112852 +h1,19880:6630773,27065289:0,0,0 +g1,19880:6962727,27065289 +g1,19880:7294681,27065289 +g1,19880:7626635,27065289 +g1,19880:7958589,27065289 +g1,19880:8290543,27065289 +g1,19880:8622497,27065289 +g1,19880:8954451,27065289 +g1,19880:11610083,27065289 +g1,19880:12273991,27065289 +g1,19880:14265715,27065289 +g1,19880:14929623,27065289 +g1,19880:16257439,27065289 +h1,19880:16589393,27065289:0,0,0 +k1,19880:32583029,27065289:15993636 +g1,19880:32583029,27065289 +) +(1,19881:6630773,27750144:25952256,431045,86428 +h1,19881:6630773,27750144:0,0,0 +g1,19881:6962727,27750144 +g1,19881:7294681,27750144 +g1,19881:13269852,27750144 +g1,19881:13933760,27750144 +g1,19881:17917207,27750144 +g1,19881:18913069,27750144 +g1,19881:20572839,27750144 +g1,19881:21236747,27750144 +g1,19881:21900655,27750144 +g1,19881:22564563,27750144 +k1,19881:22564563,27750144:0 +h1,19881:24224333,27750144:0,0,0 +k1,19881:32583029,27750144:8358696 +g1,19881:32583029,27750144 +) +(1,19882:6630773,28434999:25952256,424439,112852 +h1,19882:6630773,28434999:0,0,0 +g1,19882:6962727,28434999 +g1,19882:7294681,28434999 +g1,19882:7626635,28434999 +g1,19882:7958589,28434999 +g1,19882:8290543,28434999 +g1,19882:8622497,28434999 +g1,19882:8954451,28434999 +g1,19882:9286405,28434999 +g1,19882:9618359,28434999 +g1,19882:9950313,28434999 +g1,19882:10282267,28434999 +g1,19882:10614221,28434999 +g1,19882:10946175,28434999 +g1,19882:11278129,28434999 +g1,19882:11610083,28434999 +g1,19882:11942037,28434999 +g1,19882:13601807,28434999 +g1,19882:14265715,28434999 +g1,19882:16589393,28434999 +g1,19882:17253301,28434999 +g1,19882:18249163,28434999 +g1,19882:18913071,28434999 +g1,19882:19576979,28434999 +h1,19882:21236749,28434999:0,0,0 +k1,19882:32583029,28434999:11346280 +g1,19882:32583029,28434999 +) +] +) +g1,19884:32583029,28547851 +g1,19884:6630773,28547851 +g1,19884:6630773,28547851 +g1,19884:32583029,28547851 +g1,19884:32583029,28547851 +) +h1,19884:6630773,28744459:0,0,0 +v1,19888:6630773,29609539:0,393216,0 +(1,19889:6630773,31738659:25952256,2522336,0 +g1,19889:6630773,31738659 +g1,19889:6237557,31738659 +r1,19905:6368629,31738659:131072,2522336,0 +g1,19889:6567858,31738659 +g1,19889:6764466,31738659 +[1,19889:6764466,31738659:25818563,2522336,0 +(1,19889:6764466,29882016:25818563,665693,196608 +(1,19888:6764466,29882016:0,665693,196608 +r1,19905:7868133,29882016:1103667,862301,196608 +k1,19888:6764466,29882016:-1103667 +) +(1,19888:6764466,29882016:1103667,665693,196608 +) +k1,19888:8087887,29882016:219754 +k1,19888:9814105,29882016:327680 +k1,19888:11283631,29882016:219754 +k1,19888:12522470,29882016:219754 +k1,19888:14238411,29882016:219754 +k1,19888:16313489,29882016:219754 +k1,19888:17184671,29882016:219754 +k1,19888:18496911,29882016:219755 +k1,19888:19072525,29882016:219754 +k1,19888:22054622,29882016:219754 +k1,19888:25143542,29882016:219754 +k1,19888:26856862,29882016:219754 +k1,19888:27762778,29882016:219754 +$1,19888:27762778,29882016 +(1,19888:28122571,29606735:1071383,353698,7340 +) +$1,19888:29193954,29882016 +k1,19888:29587378,29882016:219754 +k1,19888:32583029,29882016:0 +) +(1,19889:6764466,30747096:25818563,513147,134348 +k1,19888:7943586,30747096:160035 +k1,19888:11920437,30747096:160034 +k1,19888:14285759,30747096:160035 +k1,19888:17004319,30747096:160034 +(1,19888:17004319,30747096:0,414482,122846 +r1,19905:18417720,30747096:1413401,537328,122846 +k1,19888:17004319,30747096:-1413401 +) +(1,19888:17004319,30747096:1413401,414482,122846 +k1,19888:17004319,30747096:3277 +h1,19888:18414443,30747096:0,411205,112570 +) +k1,19888:18577755,30747096:160035 +k1,19888:22594583,30747096:160034 +k1,19888:23652461,30747096:160035 +k1,19888:25015737,30747096:160035 +k1,19888:25937299,30747096:160034 +k1,19888:28165650,30747096:160035 +k1,19888:28984976,30747096:160034 +k1,19888:29915714,30747096:160035 +k1,19889:32583029,30747096:0 +) +(1,19889:6764466,31612176:25818563,513147,126483 +k1,19888:8061726,31612176:157589 +k1,19888:11088481,31612176:157589 +k1,19888:12437515,31612176:157589 +k1,19888:13356632,31612176:157589 +k1,19888:15582537,31612176:157589 +k1,19888:16399418,31612176:157589 +k1,19888:17327710,31612176:157589 +k1,19888:20790280,31612176:157589 +k1,19888:23106625,31612176:157589 +k1,19888:25959710,31612176:157589 +k1,19888:28498877,31612176:157589 +k1,19888:29417994,31612176:157589 +k1,19888:31034414,31612176:157589 +k1,19889:32583029,31612176:0 +k1,19889:32583029,31612176:0 +) +] +g1,19889:32583029,31738659 +) +h1,19889:6630773,31738659:0,0,0 +(1,19894:6630773,33855477:25952256,555811,12975 +(1,19894:6630773,33855477:2450326,534184,12975 +g1,19894:6630773,33855477 +g1,19894:9081099,33855477 +) +k1,19894:32583029,33855477:19484376 +g1,19894:32583029,33855477 +) +(1,19899:6630773,35113773:25952256,505283,126483 +k1,19898:8022047,35113773:216214 +k1,19898:11746403,35113773:216214 +k1,19898:15091962,35113773:216215 +k1,19898:15924214,35113773:216214 +k1,19898:17343669,35113773:216214 +k1,19898:19838570,35113773:216214 +k1,19898:21159066,35113773:216214 +k1,19898:22123046,35113773:216214 +k1,19898:26875663,35113773:216215 +k1,19898:27901247,35113773:216214 +k1,19898:29282691,35113773:216214 +k1,19898:30888268,35113773:216214 +k1,19898:32583029,35113773:0 +) +(1,19899:6630773,35978853:25952256,513147,126483 +k1,19898:7457603,35978853:143945 +k1,19898:9903828,35978853:143945 +k1,19898:10857143,35978853:143945 +k1,19898:12509727,35978853:143945 +k1,19898:14157723,35978853:143945 +k1,19898:16734364,35978853:143945 +k1,19898:18162815,35978853:143945 +k1,19898:18772721,35978853:143945 +k1,19898:20488875,35978853:143945 +k1,19898:22447512,35978853:143945 +k1,19898:23583017,35978853:143945 +k1,19898:26659698,35978853:143945 +k1,19898:27911857,35978853:143945 +k1,19898:29074887,35978853:143945 +k1,19898:32583029,35978853:0 +) +(1,19899:6630773,36843933:25952256,513147,11795 +k1,19898:7934066,36843933:197045 +k1,19898:8878877,36843933:197045 +k1,19898:12304880,36843933:197044 +k1,19898:14069546,36843933:197045 +k1,19898:15285676,36843933:197045 +k1,19898:17562834,36843933:197045 +k1,19898:18419171,36843933:197045 +k1,19898:22687968,36843933:197045 +k1,19898:24895001,36843933:197044 +k1,19898:26788773,36843933:197045 +k1,19898:28974180,36843933:197045 +k1,19898:30768337,36843933:197045 +k1,19898:32583029,36843933:0 +) +(1,19899:6630773,37709013:25952256,513147,134348 +k1,19898:7895430,37709013:160375 +k1,19898:8803571,37709013:160375 +k1,19898:11185617,37709013:160375 +k1,19898:13044030,37709013:160375 +k1,19898:16101752,37709013:160375 +k1,19898:18865872,37709013:160375 +k1,19898:19382107,37709013:160375 +k1,19898:21114691,37709013:160375 +k1,19898:21957951,37709013:160375 +k1,19898:22879854,37709013:160375 +k1,19898:25108545,37709013:160375 +k1,19898:25928212,37709013:160375 +k1,19898:29114384,37709013:160375 +(1,19898:29114384,37709013:0,452978,115847 +r1,19905:31231209,37709013:2116825,568825,115847 +k1,19898:29114384,37709013:-2116825 +) +(1,19898:29114384,37709013:2116825,452978,115847 +k1,19898:29114384,37709013:3277 +h1,19898:31227932,37709013:0,411205,112570 +) +k1,19898:31391584,37709013:160375 +k1,19899:32583029,37709013:0 +) +(1,19899:6630773,38574093:25952256,513147,134348 +(1,19898:6630773,38574093:0,452978,115847 +r1,19905:8747598,38574093:2116825,568825,115847 +k1,19898:6630773,38574093:-2116825 +) +(1,19898:6630773,38574093:2116825,452978,115847 +k1,19898:6630773,38574093:3277 +h1,19898:8744321,38574093:0,411205,112570 +) +k1,19898:9136528,38574093:215260 +k1,19898:10401674,38574093:215259 +k1,19898:12895621,38574093:215260 +h1,19898:14264668,38574093:0,0,0 +k1,19898:14479927,38574093:215259 +k1,19898:15504557,38574093:215260 +k1,19898:17217969,38574093:215259 +h1,19898:18413346,38574093:0,0,0 +k1,19898:18628606,38574093:215260 +k1,19898:19791516,38574093:215259 +k1,19898:20777479,38574093:215260 +k1,19898:24725013,38574093:215259 +k1,19898:25599565,38574093:215260 +k1,19898:27145205,38574093:215259 +k1,19898:30768337,38574093:215260 +k1,19898:32583029,38574093:0 +) +(1,19899:6630773,39439173:25952256,513147,138281 +k1,19898:7997322,39439173:262267 +k1,19898:9007355,39439173:262267 +k1,19898:10782847,39439173:262266 +k1,19898:11696542,39439173:262267 +k1,19898:13757772,39439173:262267 +k1,19898:15287505,39439173:262267 +k1,19898:15905632,39439173:262267 +k1,19898:17445195,39439173:262266 +k1,19898:20167684,39439173:262267 +k1,19898:23506866,39439173:262267 +k1,19898:24428425,39439173:262267 +$1,19898:24428425,39439173 +$1,19898:24931086,39439173 +k1,19898:25193353,39439173:262267 +k1,19898:26647065,39439173:262267 +$1,19898:26647065,39439173 +$1,19898:27198878,39439173 +k1,19898:27461144,39439173:262266 +k1,19898:29734056,39439173:262267 +k1,19898:31563944,39439173:262267 +k1,19898:32583029,39439173:0 +) +(1,19899:6630773,40304253:25952256,505283,7863 +k1,19899:32583029,40304253:24510464 +g1,19899:32583029,40304253 +) +(1,19901:6630773,41169333:25952256,513147,134348 +h1,19900:6630773,41169333:983040,0,0 +k1,19900:8357537,41169333:273831 +k1,19900:9162865,41169333:273831 +k1,19900:12066657,41169333:273832 +k1,19900:12991916,41169333:273831 +k1,19900:16773889,41169333:273831 +k1,19900:18437083,41169333:273831 +k1,19900:19520284,41169333:273831 +k1,19900:20813200,41169333:273831 +k1,19900:21882639,41169333:273832 +k1,19900:23854508,41169333:273831 +k1,19900:26826456,41169333:273831 +k1,19900:28296974,41169333:273831 +k1,19900:32583029,41169333:0 +) +(1,19901:6630773,42034413:25952256,513147,126483 +k1,19900:10382816,42034413:280601 +k1,19900:11322708,42034413:280600 +k1,19900:14637626,42034413:280601 +k1,19900:15577518,42034413:280600 +k1,19900:18060129,42034413:280601 +k1,19900:21237420,42034413:280600 +k1,19900:22709466,42034413:280601 +k1,19900:23649358,42034413:280600 +k1,19900:26755871,42034413:280601 +k1,19900:27652509,42034413:280600 +(1,19900:27652509,42034413:0,452978,115847 +r1,19905:32583029,42034413:4930520,568825,115847 +k1,19900:27652509,42034413:-4930520 +) +(1,19900:27652509,42034413:4930520,452978,115847 +k1,19900:27652509,42034413:3277 +h1,19900:32579752,42034413:0,411205,112570 +) +k1,19900:32583029,42034413:0 +) +(1,19901:6630773,42899493:25952256,505283,134348 +g1,19900:8841957,42899493 +g1,19900:10680241,42899493 +g1,19900:11530898,42899493 +g1,19900:12477893,42899493 +g1,19900:14642547,42899493 +g1,19900:17522199,42899493 +g1,19900:18372856,42899493 +g1,19900:19591170,42899493 +g1,19900:21443872,42899493 +g1,19900:22920398,42899493 +k1,19901:32583029,42899493:8052412 +g1,19901:32583029,42899493 +) +(1,19903:6630773,43764573:25952256,513147,126483 +h1,19902:6630773,43764573:983040,0,0 +k1,19902:9300298,43764573:214546 +k1,19902:11391141,43764573:214547 +(1,19902:11391141,43764573:0,459977,115847 +r1,19905:14563101,43764573:3171960,575824,115847 +k1,19902:11391141,43764573:-3171960 +) +(1,19902:11391141,43764573:3171960,459977,115847 +k1,19902:11391141,43764573:3277 +h1,19902:14559824,43764573:0,411205,112570 +) +k1,19902:14951317,43764573:214546 +k1,19902:18957776,43764573:214546 +k1,19902:21214424,43764573:214546 +k1,19902:24131020,43764573:214547 +k1,19902:27190484,43764573:214546 +k1,19902:30943974,43764573:214546 +k1,19903:32583029,43764573:0 +) +(1,19903:6630773,44629653:25952256,513147,134348 +g1,19902:7925764,44629653 +g1,19902:10135638,44629653 +g1,19902:10950905,44629653 +g1,19902:13661474,44629653 +(1,19902:13661474,44629653:0,414482,115847 +r1,19905:14019740,44629653:358266,530329,115847 +k1,19902:13661474,44629653:-358266 +) +(1,19902:13661474,44629653:358266,414482,115847 +k1,19902:13661474,44629653:3277 +h1,19902:14016463,44629653:0,411205,112570 +) +g1,19902:14218969,44629653 +g1,19902:15034236,44629653 +g1,19902:16405904,44629653 +g1,19902:19001785,44629653 +g1,19902:23529667,44629653 +g1,19902:24490424,44629653 +g1,19902:25708738,44629653 +g1,19902:27700377,44629653 +g1,19902:28558898,44629653 +g1,19902:30652117,44629653 +(1,19902:30652117,44629653:0,414482,122846 +r1,19905:32417230,44629653:1765113,537328,122846 +k1,19902:30652117,44629653:-1765113 +) +(1,19902:30652117,44629653:1765113,414482,122846 +k1,19902:30652117,44629653:3277 +h1,19902:32413953,44629653:0,411205,112570 +) +k1,19903:32583029,44629653:113371 +g1,19903:32583029,44629653 +) +] +(1,19905:32583029,45706769:0,0,0 +g1,19905:32583029,45706769 +) +) +] +(1,19905:6630773,47279633:25952256,0,0 +h1,19905:6630773,47279633:25952256,0,0 +) +] +(1,19905:4262630,4025873:0,0,0 +[1,19905:-473656,4025873:0,0,0 +(1,19905:-473656,-710413:0,0,0 +(1,19905:-473656,-710413:0,0,0 +g1,19905:-473656,-710413 +) +g1,19905:-473656,-710413 ) ] ) ] !24032 -}332 -Input:3581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3582:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}333 Input:3585:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3586:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3587:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -347979,765 +348183,765 @@ Input:3591:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{333 -[1,19969:4262630,47279633:28320399,43253760,0 -(1,19969:4262630,4025873:0,0,0 -[1,19969:-473656,4025873:0,0,0 -(1,19969:-473656,-710413:0,0,0 -(1,19969:-473656,-644877:0,0,0 -k1,19969:-473656,-644877:-65536 +{334 +[1,19967:4262630,47279633:28320399,43253760,0 +(1,19967:4262630,4025873:0,0,0 +[1,19967:-473656,4025873:0,0,0 +(1,19967:-473656,-710413:0,0,0 +(1,19967:-473656,-644877:0,0,0 +k1,19967:-473656,-644877:-65536 ) -(1,19969:-473656,4736287:0,0,0 -k1,19969:-473656,4736287:5209943 +(1,19967:-473656,4736287:0,0,0 +k1,19967:-473656,4736287:5209943 ) -g1,19969:-473656,-710413 +g1,19967:-473656,-710413 ) ] ) -[1,19969:6630773,47279633:25952256,43253760,0 -[1,19969:6630773,4812305:25952256,786432,0 -(1,19969:6630773,4812305:25952256,513147,126483 -(1,19969:6630773,4812305:25952256,513147,126483 -g1,19969:3078558,4812305 -[1,19969:3078558,4812305:0,0,0 -(1,19969:3078558,2439708:0,1703936,0 -k1,19969:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,19969:2537886,2439708:1179648,16384,0 +[1,19967:6630773,47279633:25952256,43253760,0 +[1,19967:6630773,4812305:25952256,786432,0 +(1,19967:6630773,4812305:25952256,513147,126483 +(1,19967:6630773,4812305:25952256,513147,126483 +g1,19967:3078558,4812305 +[1,19967:3078558,4812305:0,0,0 +(1,19967:3078558,2439708:0,1703936,0 +k1,19967:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,19967:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,19969:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,19967:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,19969:3078558,4812305:0,0,0 -(1,19969:3078558,2439708:0,1703936,0 -g1,19969:29030814,2439708 -g1,19969:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,19969:36151628,1915420:16384,1179648,0 +[1,19967:3078558,4812305:0,0,0 +(1,19967:3078558,2439708:0,1703936,0 +g1,19967:29030814,2439708 +g1,19967:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,19967:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,19969:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,19967:37855564,2439708:1179648,16384,0 ) ) -k1,19969:3078556,2439708:-34777008 +k1,19967:3078556,2439708:-34777008 ) ] -[1,19969:3078558,4812305:0,0,0 -(1,19969:3078558,49800853:0,16384,2228224 -k1,19969:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,19969:2537886,49800853:1179648,16384,0 +[1,19967:3078558,4812305:0,0,0 +(1,19967:3078558,49800853:0,16384,2228224 +k1,19967:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,19967:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,19969:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,19967:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,19969:3078558,4812305:0,0,0 -(1,19969:3078558,49800853:0,16384,2228224 -g1,19969:29030814,49800853 -g1,19969:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,19969:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,19969:37855564,49800853:1179648,16384,0 +[1,19967:3078558,4812305:0,0,0 +(1,19967:3078558,49800853:0,16384,2228224 +g1,19967:29030814,49800853 +g1,19967:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,19967:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,19967:37855564,49800853:1179648,16384,0 ) ) -k1,19969:3078556,49800853:-34777008 -) -] -g1,19969:6630773,4812305 -k1,19969:21386205,4812305:13560055 -g1,19969:21999622,4812305 -g1,19969:25611966,4812305 -g1,19969:28956923,4812305 -g1,19969:29772190,4812305 -) -) -] -[1,19969:6630773,45706769:25952256,40108032,0 -(1,19969:6630773,45706769:25952256,40108032,0 -(1,19969:6630773,45706769:0,0,0 -g1,19969:6630773,45706769 -) -[1,19969:6630773,45706769:25952256,40108032,0 -v1,19907:6630773,6254097:0,393216,0 -(1,19914:6630773,8655951:25952256,2795070,196608 -g1,19914:6630773,8655951 -g1,19914:6630773,8655951 -g1,19914:6434165,8655951 -(1,19914:6434165,8655951:0,2795070,196608 -r1,19969:32779637,8655951:26345472,2991678,196608 -k1,19914:6434165,8655951:-26345472 -) -(1,19914:6434165,8655951:26345472,2795070,196608 -[1,19914:6630773,8655951:25952256,2598462,0 -(1,19909:6630773,6488534:25952256,431045,79822 -(1,19908:6630773,6488534:0,0,0 -g1,19908:6630773,6488534 -g1,19908:6630773,6488534 -g1,19908:6303093,6488534 -(1,19908:6303093,6488534:0,0,0 -) -g1,19908:6630773,6488534 -) -g1,19909:9950312,6488534 -g1,19909:10946174,6488534 -k1,19909:10946174,6488534:0 -h1,19909:14597667,6488534:0,0,0 -k1,19909:32583029,6488534:17985362 -g1,19909:32583029,6488534 -) -(1,19910:6630773,7173389:25952256,424439,106246 -h1,19910:6630773,7173389:0,0,0 -g1,19910:6962727,7173389 -g1,19910:7294681,7173389 -g1,19910:7958589,7173389 -g1,19910:8622497,7173389 -g1,19910:12605945,7173389 -g1,19910:14265715,7173389 -g1,19910:14929623,7173389 -g1,19910:15925485,7173389 -g1,19910:16921347,7173389 -g1,19910:17585255,7173389 -k1,19910:17585255,7173389:0 -h1,19910:19245025,7173389:0,0,0 -k1,19910:32583029,7173389:13338004 -g1,19910:32583029,7173389 -) -(1,19911:6630773,7858244:25952256,424439,86428 -h1,19911:6630773,7858244:0,0,0 -g1,19911:6962727,7858244 -g1,19911:7294681,7858244 -g1,19911:7626635,7858244 -g1,19911:7958589,7858244 -g1,19911:8290543,7858244 -g1,19911:8622497,7858244 -g1,19911:8954451,7858244 -g1,19911:9286405,7858244 -g1,19911:12605945,7858244 -g1,19911:14265715,7858244 -g1,19911:14929623,7858244 -g1,19911:15925485,7858244 -g1,19911:16921347,7858244 -g1,19911:17585255,7858244 -k1,19911:17585255,7858244:0 -h1,19911:19576979,7858244:0,0,0 -k1,19911:32583029,7858244:13006050 -g1,19911:32583029,7858244 -) -(1,19912:6630773,8543099:25952256,431045,112852 -h1,19912:6630773,8543099:0,0,0 -g1,19912:6962727,8543099 -g1,19912:7294681,8543099 -g1,19912:9286405,8543099 -g1,19912:9950313,8543099 -g1,19912:15925485,8543099 -g1,19912:17585255,8543099 -g1,19912:20572841,8543099 -h1,19912:22564565,8543099:0,0,0 -k1,19912:32583029,8543099:10018464 -g1,19912:32583029,8543099 -) -] -) -g1,19914:32583029,8655951 -g1,19914:6630773,8655951 -g1,19914:6630773,8655951 -g1,19914:32583029,8655951 -g1,19914:32583029,8655951 -) -h1,19914:6630773,8852559:0,0,0 -(1,19918:6630773,9717639:25952256,505283,134348 -h1,19917:6630773,9717639:983040,0,0 -g1,19917:9853833,9717639 -g1,19917:10408922,9717639 -g1,19917:12042079,9717639 -g1,19917:13518605,9717639 -g1,19917:14249331,9717639 -g1,19917:18240473,9717639 -g1,19917:19210405,9717639 -g1,19917:22184428,9717639 -g1,19917:23035085,9717639 -(1,19917:23035085,9717639:0,452978,115847 -r1,19969:25503622,9717639:2468537,568825,115847 -k1,19917:23035085,9717639:-2468537 -) -(1,19917:23035085,9717639:2468537,452978,115847 -k1,19917:23035085,9717639:3277 -h1,19917:25500345,9717639:0,411205,112570 -) -k1,19918:32583029,9717639:7026979 -g1,19918:32583029,9717639 -) -v1,19920:6630773,10402494:0,393216,0 -(1,19926:6630773,12112887:25952256,2103609,196608 -g1,19926:6630773,12112887 -g1,19926:6630773,12112887 -g1,19926:6434165,12112887 -(1,19926:6434165,12112887:0,2103609,196608 -r1,19969:32779637,12112887:26345472,2300217,196608 -k1,19926:6434165,12112887:-26345472 -) -(1,19926:6434165,12112887:26345472,2103609,196608 -[1,19926:6630773,12112887:25952256,1907001,0 -(1,19922:6630773,10630325:25952256,424439,106246 -(1,19921:6630773,10630325:0,0,0 -g1,19921:6630773,10630325 -g1,19921:6630773,10630325 -g1,19921:6303093,10630325 -(1,19921:6303093,10630325:0,0,0 -) -g1,19921:6630773,10630325 -) -g1,19922:9286405,10630325 -k1,19922:9286405,10630325:0 -h1,19922:9950313,10630325:0,0,0 -k1,19922:32583029,10630325:22632716 -g1,19922:32583029,10630325 -) -(1,19923:6630773,11315180:25952256,431045,112852 -h1,19923:6630773,11315180:0,0,0 -g1,19923:6962727,11315180 -g1,19923:7294681,11315180 -g1,19923:11278129,11315180 -g1,19923:11942037,11315180 -g1,19923:15593530,11315180 -g1,19923:18249162,11315180 -g1,19923:18913070,11315180 -g1,19923:20904794,11315180 -g1,19923:21568702,11315180 -g1,19923:22564564,11315180 -g1,19923:23228472,11315180 -g1,19923:23892380,11315180 -g1,19923:26548012,11315180 -h1,19923:26879966,11315180:0,0,0 -k1,19923:32583029,11315180:5703063 -g1,19923:32583029,11315180 -) -(1,19924:6630773,12000035:25952256,424439,112852 -h1,19924:6630773,12000035:0,0,0 -g1,19924:6962727,12000035 -g1,19924:7294681,12000035 -g1,19924:12937898,12000035 -g1,19924:13601806,12000035 -g1,19924:16257438,12000035 -h1,19924:18249162,12000035:0,0,0 -k1,19924:32583029,12000035:14333867 -g1,19924:32583029,12000035 -) -] -) -g1,19926:32583029,12112887 -g1,19926:6630773,12112887 -g1,19926:6630773,12112887 -g1,19926:32583029,12112887 -g1,19926:32583029,12112887 -) -h1,19926:6630773,12309495:0,0,0 -(1,19930:6630773,13174575:25952256,513147,126483 -h1,19929:6630773,13174575:983040,0,0 -k1,19929:8385212,13174575:143564 -k1,19929:11224273,13174575:143565 -(1,19929:11224273,13174575:0,452978,115847 -r1,19969:16154793,13174575:4930520,568825,115847 -k1,19929:11224273,13174575:-4930520 -) -(1,19929:11224273,13174575:4930520,452978,115847 -k1,19929:11224273,13174575:3277 -h1,19929:16151516,13174575:0,411205,112570 -) -k1,19929:16298357,13174575:143564 -k1,19929:17461007,13174575:143565 -k1,19929:20300067,13174575:143564 -k1,19929:21956858,13174575:143565 -k1,19929:24888324,13174575:143564 -k1,19929:26050974,13174575:143565 -k1,19929:29702680,13174575:143564 -k1,19929:30377742,13174575:143565 -k1,19929:32583029,13174575:0 -) -(1,19930:6630773,14039655:25952256,513147,134348 -k1,19929:7529458,14039655:212523 -k1,19929:8512684,14039655:212523 -k1,19929:11971205,14039655:212523 -k1,19929:13564572,14039655:212523 -k1,19929:16472591,14039655:212523 -k1,19929:17789396,14039655:212523 -k1,19929:18749685,14039655:212523 -k1,19929:20118917,14039655:212522 -k1,19929:23332334,14039655:212523 -k1,19929:23900717,14039655:212523 -k1,19929:25986259,14039655:212523 -k1,19929:28052796,14039655:212523 -k1,19929:29411544,14039655:212523 -(1,19929:29411544,14039655:0,452978,115847 -r1,19969:31528369,14039655:2116825,568825,115847 -k1,19929:29411544,14039655:-2116825 -) -(1,19929:29411544,14039655:2116825,452978,115847 -k1,19929:29411544,14039655:3277 -h1,19929:31525092,14039655:0,411205,112570 -) -k1,19929:31914562,14039655:212523 -k1,19929:32583029,14039655:0 -) -(1,19930:6630773,14904735:25952256,513147,134348 -k1,19929:8003986,14904735:216503 -k1,19929:11221382,14904735:216502 -k1,19929:11793745,14904735:216503 -k1,19929:14212258,14904735:216503 -k1,19929:16109104,14904735:216503 -k1,19929:17517051,14904735:216502 -k1,19929:18752639,14904735:216503 -k1,19929:21871732,14904735:216503 -k1,19929:22747526,14904735:216502 -k1,19929:23319889,14904735:216503 -k1,19929:25490676,14904735:216503 -k1,19929:28055989,14904735:216503 -k1,19929:29081861,14904735:216502 -k1,19929:30317449,14904735:216503 -k1,19929:32583029,14904735:0 -) -(1,19930:6630773,15769815:25952256,505283,134348 -g1,19929:10076000,15769815 -g1,19929:11882827,15769815 -g1,19929:14150372,15769815 -g1,19929:15541046,15769815 -g1,19929:18583882,15769815 -g1,19929:20894026,15769815 -g1,19929:24378575,15769815 -g1,19929:24933664,15769815 -k1,19930:32583029,15769815:4891610 -g1,19930:32583029,15769815 -) -v1,19932:6630773,16454670:0,393216,0 -(1,19938:6630773,18135568:25952256,2074114,196608 -g1,19938:6630773,18135568 -g1,19938:6630773,18135568 -g1,19938:6434165,18135568 -(1,19938:6434165,18135568:0,2074114,196608 -r1,19969:32779637,18135568:26345472,2270722,196608 -k1,19938:6434165,18135568:-26345472 -) -(1,19938:6434165,18135568:26345472,2074114,196608 -[1,19938:6630773,18135568:25952256,1877506,0 -(1,19934:6630773,16682501:25952256,424439,106246 -(1,19933:6630773,16682501:0,0,0 -g1,19933:6630773,16682501 -g1,19933:6630773,16682501 -g1,19933:6303093,16682501 -(1,19933:6303093,16682501:0,0,0 -) -g1,19933:6630773,16682501 -) -g1,19934:9286405,16682501 -g1,19934:9950313,16682501 -k1,19934:9950313,16682501:0 -h1,19934:14597668,16682501:0,0,0 -k1,19934:32583028,16682501:17985360 -g1,19934:32583028,16682501 -) -(1,19938:6630773,18022716:25952256,431045,112852 -g1,19938:7626635,18022716 -g1,19938:8622497,18022716 -g1,19938:11278129,18022716 -g1,19938:14265714,18022716 -g1,19938:17585253,18022716 -g1,19938:21236746,18022716 -g1,19938:22232608,18022716 -k1,19938:32583029,18022716:6698928 -g1,19938:32583029,18022716 -) -] -) -g1,19938:32583029,18135568 -g1,19938:6630773,18135568 -g1,19938:6630773,18135568 -g1,19938:32583029,18135568 -g1,19938:32583029,18135568 -) -h1,19938:6630773,18332176:0,0,0 -(1,19941:6630773,27481378:25952256,9083666,0 -k1,19941:10523651,27481378:3892878 -h1,19940:10523651,27481378:0,0,0 -(1,19940:10523651,27481378:18166500,9083666,0 -(1,19940:10523651,27481378:18167376,9083688,0 -(1,19940:10523651,27481378:18167376,9083688,0 -(1,19940:10523651,27481378:0,9083688,0 -(1,19940:10523651,27481378:0,14208860,0 -(1,19940:10523651,27481378:28417720,14208860,0 -) -k1,19940:10523651,27481378:-28417720 -) -) -g1,19940:28691027,27481378 -) -) -) -g1,19941:28690151,27481378 -k1,19941:32583029,27481378:3892878 -) -(1,19948:6630773,28346458:25952256,513147,134348 -h1,19947:6630773,28346458:983040,0,0 -k1,19947:8882917,28346458:227082 -$1,19947:8882917,28346458 -[1,19947:8882917,28346458:502661,458096,7864 -(1,19947:9353464,28338594:0,450232,0 -) -(1,19947:8882917,28346458:502661,355205,7864 -) -] -k1,19947:9551588,28346458:166010 -k1,19947:10285795,28346458:166010 -(1,19947:10285795,28346458:1056440,355205,7864 -) -$1,19947:11342235,28346458 -k1,19947:11742987,28346458:227082 -k1,19947:12989153,28346458:227081 -k1,19947:15655485,28346458:227082 -(1,19947:15655485,28346458:0,452978,115847 -r1,19969:18827445,28346458:3171960,568825,115847 -k1,19947:15655485,28346458:-3171960 -) -(1,19947:15655485,28346458:3171960,452978,115847 -k1,19947:15655485,28346458:3277 -h1,19947:18824168,28346458:0,411205,112570 -) -k1,19947:19054527,28346458:227082 -k1,19947:20385891,28346458:227082 -k1,19947:21360738,28346458:227081 -k1,19947:23793107,28346458:227082 -k1,19947:24706351,28346458:227082 -k1,19947:28005761,28346458:227082 -k1,19947:28884270,28346458:227081 -(1,19947:28884270,28346458:0,459977,115847 -r1,19969:31704519,28346458:2820249,575824,115847 -k1,19947:28884270,28346458:-2820249 -) -(1,19947:28884270,28346458:2820249,459977,115847 -k1,19947:28884270,28346458:3277 -h1,19947:31701242,28346458:0,411205,112570 -) -k1,19947:31931601,28346458:227082 -k1,19947:32583029,28346458:0 -) -(1,19948:6630773,29211538:25952256,513147,134348 -k1,19947:8543094,29211538:182826 -k1,19947:9745004,29211538:182825 -k1,19947:12633156,29211538:182826 -k1,19947:14255808,29211538:182826 -k1,19947:16467628,29211538:182825 -k1,19947:17841899,29211538:182826 -k1,19947:18972376,29211538:182826 -$1,19947:18972376,29211538 -[1,19947:18972376,29211538:502661,458096,7864 -(1,19947:19442923,29203674:0,450232,0 -) -(1,19947:18972376,29211538:502661,355205,7864 -) -] -k1,19947:19584709,29211538:109672 -k1,19947:20262578,29211538:109672 -(1,19947:20262578,29211538:1129840,505283,7864 -) -$1,19947:21392418,29211538 -k1,19947:21575244,29211538:182826 -(1,19947:21575244,29211538:0,452978,115847 -r1,19969:25098916,29211538:3523672,568825,115847 -k1,19947:21575244,29211538:-3523672 -) -(1,19947:21575244,29211538:3523672,452978,115847 -k1,19947:21575244,29211538:3277 -h1,19947:25095639,29211538:0,411205,112570 -) -k1,19947:25281741,29211538:182825 -k1,19947:27644950,29211538:182826 -k1,19947:28575542,29211538:182826 -k1,19947:30963654,29211538:182825 -k1,19947:31832642,29211538:182826 -k1,19948:32583029,29211538:0 -) -(1,19948:6630773,30076618:25952256,513147,134348 -k1,19947:9389757,30076618:157205 -k1,19947:11421293,30076618:157206 -k1,19947:14604295,30076618:157205 -k1,19947:16236716,30076618:157206 -k1,19947:17045349,30076618:157205 -k1,19947:17950321,30076618:157206 -k1,19947:20312813,30076618:157205 -k1,19947:21121447,30076618:157206 -k1,19947:24559384,30076618:157205 -(1,19947:24559384,30076618:0,459977,115847 -r1,19969:27379633,30076618:2820249,575824,115847 -k1,19947:24559384,30076618:-2820249 -) -(1,19947:24559384,30076618:2820249,459977,115847 -k1,19947:24559384,30076618:3277 -h1,19947:27376356,30076618:0,411205,112570 -) -k1,19947:27710509,30076618:157206 -k1,19947:29557232,30076618:157205 -k1,19947:32583029,30076618:0 -) -(1,19948:6630773,30941698:25952256,513147,134348 -k1,19947:8114152,30941698:198873 -k1,19947:10323669,30941698:198872 -k1,19947:10878402,30941698:198873 -k1,19947:12950294,30941698:198873 -k1,19947:15003181,30941698:198873 -k1,19947:16348278,30941698:198872 -(1,19947:16348278,30941698:0,452978,115847 -r1,19969:18465103,30941698:2116825,568825,115847 -k1,19947:16348278,30941698:-2116825 -) -(1,19947:16348278,30941698:2116825,452978,115847 -k1,19947:16348278,30941698:3277 -h1,19947:18461826,30941698:0,411205,112570 -) -k1,19947:18837646,30941698:198873 -k1,19947:19687947,30941698:198873 -(1,19947:19687947,30941698:0,459977,115847 -r1,19969:20749636,30941698:1061689,575824,115847 -k1,19947:19687947,30941698:-1061689 -) -(1,19947:19687947,30941698:1061689,459977,115847 -k1,19947:19687947,30941698:3277 -h1,19947:20746359,30941698:0,411205,112570 -) -k1,19947:21122179,30941698:198873 -k1,19947:22517738,30941698:198872 -(1,19947:22517738,30941698:0,414482,122846 -r1,19969:23931139,30941698:1413401,537328,122846 -k1,19947:22517738,30941698:-1413401 -) -(1,19947:22517738,30941698:1413401,414482,122846 -k1,19947:22517738,30941698:3277 -h1,19947:23927862,30941698:0,411205,112570 -) -k1,19947:24130012,30941698:198873 -k1,19947:25842111,30941698:198873 -k1,19947:27141989,30941698:198873 -k1,19947:27992289,30941698:198872 -k1,19947:28938928,30941698:198873 -k1,19947:31649796,30941698:198873 -k1,19947:32583029,30941698:0 -) -(1,19948:6630773,31806778:25952256,505283,126483 -g1,19947:7849087,31806778 -g1,19947:10058961,31806778 -g1,19947:13466833,31806778 -g1,19947:14427590,31806778 -g1,19947:15645904,31806778 -(1,19947:15645904,31806778:0,414482,115847 -r1,19969:17059305,31806778:1413401,530329,115847 -k1,19947:15645904,31806778:-1413401 -) -(1,19947:15645904,31806778:1413401,414482,115847 -k1,19947:15645904,31806778:3277 -h1,19947:17056028,31806778:0,411205,112570 -) -k1,19948:32583029,31806778:15471296 -g1,19948:32583029,31806778 -) -(1,19950:6630773,32671858:25952256,513147,134348 -h1,19949:6630773,32671858:983040,0,0 -k1,19949:10094187,32671858:439583 -k1,19949:11065266,32671858:439582 -k1,19949:13001036,32671858:439583 -k1,19949:14388270,32671858:439583 -k1,19949:15183712,32671858:439582 -k1,19949:17825305,32671858:439583 -k1,19949:19715855,32671858:439583 -k1,19949:21549388,32671858:439582 -k1,19949:24057287,32671858:439583 -k1,19949:28122322,32671858:439583 -k1,19949:29177943,32671858:439583 -k1,19949:30847636,32671858:439582 -k1,19950:32583029,32671858:0 -) -(1,19950:6630773,33536938:25952256,452978,122846 -(1,19949:6630773,33536938:0,452978,122846 -r1,19969:10857869,33536938:4227096,575824,122846 -k1,19949:6630773,33536938:-4227096 -) -(1,19949:6630773,33536938:4227096,452978,122846 -k1,19949:6630773,33536938:3277 -h1,19949:10854592,33536938:0,411205,112570 -) -k1,19950:32583029,33536938:21672732 -g1,19950:32583029,33536938 -) -v1,19952:6630773,34221793:0,393216,0 -(1,19958:6630773,35925580:25952256,2097003,196608 -g1,19958:6630773,35925580 -g1,19958:6630773,35925580 -g1,19958:6434165,35925580 -(1,19958:6434165,35925580:0,2097003,196608 -r1,19969:32779637,35925580:26345472,2293611,196608 -k1,19958:6434165,35925580:-26345472 -) -(1,19958:6434165,35925580:26345472,2097003,196608 -[1,19958:6630773,35925580:25952256,1900395,0 -(1,19954:6630773,34449624:25952256,424439,106246 -(1,19953:6630773,34449624:0,0,0 -g1,19953:6630773,34449624 -g1,19953:6630773,34449624 -g1,19953:6303093,34449624 -(1,19953:6303093,34449624:0,0,0 -) -g1,19953:6630773,34449624 -) -g1,19954:9286405,34449624 -h1,19954:9618359,34449624:0,0,0 -k1,19954:32583029,34449624:22964670 -g1,19954:32583029,34449624 -) -(1,19955:6630773,35134479:25952256,431045,112852 -h1,19955:6630773,35134479:0,0,0 -g1,19955:6962727,35134479 -g1,19955:7294681,35134479 -g1,19955:12937898,35134479 -g1,19955:13601806,35134479 -g1,19955:16257438,35134479 -g1,19955:17917208,35134479 -g1,19955:18581116,35134479 -k1,19955:18581116,35134479:0 -h1,19955:21236748,35134479:0,0,0 -k1,19955:32583029,35134479:11346281 -g1,19955:32583029,35134479 -) -(1,19956:6630773,35819334:25952256,424439,106246 -h1,19956:6630773,35819334:0,0,0 -g1,19956:6962727,35819334 -g1,19956:7294681,35819334 -g1,19956:7626635,35819334 -g1,19956:7958589,35819334 -g1,19956:8290543,35819334 -g1,19956:8622497,35819334 -g1,19956:8954451,35819334 -g1,19956:9286405,35819334 -g1,19956:9618359,35819334 -g1,19956:9950313,35819334 -g1,19956:10282267,35819334 -g1,19956:10614221,35819334 -g1,19956:10946175,35819334 -g1,19956:11278129,35819334 -g1,19956:11610083,35819334 -g1,19956:13933761,35819334 -g1,19956:14597669,35819334 -g1,19956:16921347,35819334 -g1,19956:18913071,35819334 -g1,19956:19576979,35819334 -g1,19956:21236749,35819334 -g1,19956:22896519,35819334 -g1,19956:23560427,35819334 -h1,19956:24556289,35819334:0,0,0 -k1,19956:32583029,35819334:8026740 -g1,19956:32583029,35819334 -) -] -) -g1,19958:32583029,35925580 -g1,19958:6630773,35925580 -g1,19958:6630773,35925580 -g1,19958:32583029,35925580 -g1,19958:32583029,35925580 -) -h1,19958:6630773,36122188:0,0,0 -(1,19961:6630773,45271390:25952256,9083666,0 -k1,19961:10523651,45271390:3892878 -h1,19960:10523651,45271390:0,0,0 -(1,19960:10523651,45271390:18166500,9083666,0 -(1,19960:10523651,45271390:18167376,9083688,0 -(1,19960:10523651,45271390:18167376,9083688,0 -(1,19960:10523651,45271390:0,9083688,0 -(1,19960:10523651,45271390:0,14208860,0 -(1,19960:10523651,45271390:28417720,14208860,0 -) -k1,19960:10523651,45271390:-28417720 -) -) -g1,19960:28691027,45271390 -) -) -) -g1,19961:28690151,45271390 -k1,19961:32583029,45271390:3892878 -) -] -(1,19969:32583029,45706769:0,0,0 -g1,19969:32583029,45706769 -) -) -] -(1,19969:6630773,47279633:25952256,0,0 -h1,19969:6630773,47279633:25952256,0,0 -) -] -(1,19969:4262630,4025873:0,0,0 -[1,19969:-473656,4025873:0,0,0 -(1,19969:-473656,-710413:0,0,0 -(1,19969:-473656,-710413:0,0,0 -g1,19969:-473656,-710413 -) -g1,19969:-473656,-710413 +k1,19967:3078556,49800853:-34777008 +) +] +g1,19967:6630773,4812305 +k1,19967:21386205,4812305:13560055 +g1,19967:21999622,4812305 +g1,19967:25611966,4812305 +g1,19967:28956923,4812305 +g1,19967:29772190,4812305 +) +) +] +[1,19967:6630773,45706769:25952256,40108032,0 +(1,19967:6630773,45706769:25952256,40108032,0 +(1,19967:6630773,45706769:0,0,0 +g1,19967:6630773,45706769 +) +[1,19967:6630773,45706769:25952256,40108032,0 +v1,19905:6630773,6254097:0,393216,0 +(1,19912:6630773,8655951:25952256,2795070,196608 +g1,19912:6630773,8655951 +g1,19912:6630773,8655951 +g1,19912:6434165,8655951 +(1,19912:6434165,8655951:0,2795070,196608 +r1,19967:32779637,8655951:26345472,2991678,196608 +k1,19912:6434165,8655951:-26345472 +) +(1,19912:6434165,8655951:26345472,2795070,196608 +[1,19912:6630773,8655951:25952256,2598462,0 +(1,19907:6630773,6488534:25952256,431045,79822 +(1,19906:6630773,6488534:0,0,0 +g1,19906:6630773,6488534 +g1,19906:6630773,6488534 +g1,19906:6303093,6488534 +(1,19906:6303093,6488534:0,0,0 +) +g1,19906:6630773,6488534 +) +g1,19907:9950312,6488534 +g1,19907:10946174,6488534 +k1,19907:10946174,6488534:0 +h1,19907:14597667,6488534:0,0,0 +k1,19907:32583029,6488534:17985362 +g1,19907:32583029,6488534 +) +(1,19908:6630773,7173389:25952256,424439,106246 +h1,19908:6630773,7173389:0,0,0 +g1,19908:6962727,7173389 +g1,19908:7294681,7173389 +g1,19908:7958589,7173389 +g1,19908:8622497,7173389 +g1,19908:12605945,7173389 +g1,19908:14265715,7173389 +g1,19908:14929623,7173389 +g1,19908:15925485,7173389 +g1,19908:16921347,7173389 +g1,19908:17585255,7173389 +k1,19908:17585255,7173389:0 +h1,19908:19245025,7173389:0,0,0 +k1,19908:32583029,7173389:13338004 +g1,19908:32583029,7173389 +) +(1,19909:6630773,7858244:25952256,424439,86428 +h1,19909:6630773,7858244:0,0,0 +g1,19909:6962727,7858244 +g1,19909:7294681,7858244 +g1,19909:7626635,7858244 +g1,19909:7958589,7858244 +g1,19909:8290543,7858244 +g1,19909:8622497,7858244 +g1,19909:8954451,7858244 +g1,19909:9286405,7858244 +g1,19909:12605945,7858244 +g1,19909:14265715,7858244 +g1,19909:14929623,7858244 +g1,19909:15925485,7858244 +g1,19909:16921347,7858244 +g1,19909:17585255,7858244 +k1,19909:17585255,7858244:0 +h1,19909:19576979,7858244:0,0,0 +k1,19909:32583029,7858244:13006050 +g1,19909:32583029,7858244 +) +(1,19910:6630773,8543099:25952256,431045,112852 +h1,19910:6630773,8543099:0,0,0 +g1,19910:6962727,8543099 +g1,19910:7294681,8543099 +g1,19910:9286405,8543099 +g1,19910:9950313,8543099 +g1,19910:15925485,8543099 +g1,19910:17585255,8543099 +g1,19910:20572841,8543099 +h1,19910:22564565,8543099:0,0,0 +k1,19910:32583029,8543099:10018464 +g1,19910:32583029,8543099 +) +] +) +g1,19912:32583029,8655951 +g1,19912:6630773,8655951 +g1,19912:6630773,8655951 +g1,19912:32583029,8655951 +g1,19912:32583029,8655951 +) +h1,19912:6630773,8852559:0,0,0 +(1,19916:6630773,9717639:25952256,505283,134348 +h1,19915:6630773,9717639:983040,0,0 +g1,19915:9853833,9717639 +g1,19915:10408922,9717639 +g1,19915:12042079,9717639 +g1,19915:13518605,9717639 +g1,19915:14249331,9717639 +g1,19915:18240473,9717639 +g1,19915:19210405,9717639 +g1,19915:22184428,9717639 +g1,19915:23035085,9717639 +(1,19915:23035085,9717639:0,452978,115847 +r1,19967:25503622,9717639:2468537,568825,115847 +k1,19915:23035085,9717639:-2468537 +) +(1,19915:23035085,9717639:2468537,452978,115847 +k1,19915:23035085,9717639:3277 +h1,19915:25500345,9717639:0,411205,112570 +) +k1,19916:32583029,9717639:7026979 +g1,19916:32583029,9717639 +) +v1,19918:6630773,10402494:0,393216,0 +(1,19924:6630773,12112887:25952256,2103609,196608 +g1,19924:6630773,12112887 +g1,19924:6630773,12112887 +g1,19924:6434165,12112887 +(1,19924:6434165,12112887:0,2103609,196608 +r1,19967:32779637,12112887:26345472,2300217,196608 +k1,19924:6434165,12112887:-26345472 +) +(1,19924:6434165,12112887:26345472,2103609,196608 +[1,19924:6630773,12112887:25952256,1907001,0 +(1,19920:6630773,10630325:25952256,424439,106246 +(1,19919:6630773,10630325:0,0,0 +g1,19919:6630773,10630325 +g1,19919:6630773,10630325 +g1,19919:6303093,10630325 +(1,19919:6303093,10630325:0,0,0 +) +g1,19919:6630773,10630325 +) +g1,19920:9286405,10630325 +k1,19920:9286405,10630325:0 +h1,19920:9950313,10630325:0,0,0 +k1,19920:32583029,10630325:22632716 +g1,19920:32583029,10630325 +) +(1,19921:6630773,11315180:25952256,431045,112852 +h1,19921:6630773,11315180:0,0,0 +g1,19921:6962727,11315180 +g1,19921:7294681,11315180 +g1,19921:11278129,11315180 +g1,19921:11942037,11315180 +g1,19921:15593530,11315180 +g1,19921:18249162,11315180 +g1,19921:18913070,11315180 +g1,19921:20904794,11315180 +g1,19921:21568702,11315180 +g1,19921:22564564,11315180 +g1,19921:23228472,11315180 +g1,19921:23892380,11315180 +g1,19921:26548012,11315180 +h1,19921:26879966,11315180:0,0,0 +k1,19921:32583029,11315180:5703063 +g1,19921:32583029,11315180 +) +(1,19922:6630773,12000035:25952256,424439,112852 +h1,19922:6630773,12000035:0,0,0 +g1,19922:6962727,12000035 +g1,19922:7294681,12000035 +g1,19922:12937898,12000035 +g1,19922:13601806,12000035 +g1,19922:16257438,12000035 +h1,19922:18249162,12000035:0,0,0 +k1,19922:32583029,12000035:14333867 +g1,19922:32583029,12000035 +) +] +) +g1,19924:32583029,12112887 +g1,19924:6630773,12112887 +g1,19924:6630773,12112887 +g1,19924:32583029,12112887 +g1,19924:32583029,12112887 +) +h1,19924:6630773,12309495:0,0,0 +(1,19928:6630773,13174575:25952256,513147,126483 +h1,19927:6630773,13174575:983040,0,0 +k1,19927:8385212,13174575:143564 +k1,19927:11224273,13174575:143565 +(1,19927:11224273,13174575:0,452978,115847 +r1,19967:16154793,13174575:4930520,568825,115847 +k1,19927:11224273,13174575:-4930520 +) +(1,19927:11224273,13174575:4930520,452978,115847 +k1,19927:11224273,13174575:3277 +h1,19927:16151516,13174575:0,411205,112570 +) +k1,19927:16298357,13174575:143564 +k1,19927:17461007,13174575:143565 +k1,19927:20300067,13174575:143564 +k1,19927:21956858,13174575:143565 +k1,19927:24888324,13174575:143564 +k1,19927:26050974,13174575:143565 +k1,19927:29702680,13174575:143564 +k1,19927:30377742,13174575:143565 +k1,19927:32583029,13174575:0 +) +(1,19928:6630773,14039655:25952256,513147,134348 +k1,19927:7529458,14039655:212523 +k1,19927:8512684,14039655:212523 +k1,19927:11971205,14039655:212523 +k1,19927:13564572,14039655:212523 +k1,19927:16472591,14039655:212523 +k1,19927:17789396,14039655:212523 +k1,19927:18749685,14039655:212523 +k1,19927:20118917,14039655:212522 +k1,19927:23332334,14039655:212523 +k1,19927:23900717,14039655:212523 +k1,19927:25986259,14039655:212523 +k1,19927:28052796,14039655:212523 +k1,19927:29411544,14039655:212523 +(1,19927:29411544,14039655:0,452978,115847 +r1,19967:31528369,14039655:2116825,568825,115847 +k1,19927:29411544,14039655:-2116825 +) +(1,19927:29411544,14039655:2116825,452978,115847 +k1,19927:29411544,14039655:3277 +h1,19927:31525092,14039655:0,411205,112570 +) +k1,19927:31914562,14039655:212523 +k1,19927:32583029,14039655:0 +) +(1,19928:6630773,14904735:25952256,513147,134348 +k1,19927:8003986,14904735:216503 +k1,19927:11221382,14904735:216502 +k1,19927:11793745,14904735:216503 +k1,19927:14212258,14904735:216503 +k1,19927:16109104,14904735:216503 +k1,19927:17517051,14904735:216502 +k1,19927:18752639,14904735:216503 +k1,19927:21871732,14904735:216503 +k1,19927:22747526,14904735:216502 +k1,19927:23319889,14904735:216503 +k1,19927:25490676,14904735:216503 +k1,19927:28055989,14904735:216503 +k1,19927:29081861,14904735:216502 +k1,19927:30317449,14904735:216503 +k1,19927:32583029,14904735:0 +) +(1,19928:6630773,15769815:25952256,505283,134348 +g1,19927:10076000,15769815 +g1,19927:11882827,15769815 +g1,19927:14150372,15769815 +g1,19927:15541046,15769815 +g1,19927:18583882,15769815 +g1,19927:20894026,15769815 +g1,19927:24378575,15769815 +g1,19927:24933664,15769815 +k1,19928:32583029,15769815:4891610 +g1,19928:32583029,15769815 +) +v1,19930:6630773,16454670:0,393216,0 +(1,19936:6630773,18135568:25952256,2074114,196608 +g1,19936:6630773,18135568 +g1,19936:6630773,18135568 +g1,19936:6434165,18135568 +(1,19936:6434165,18135568:0,2074114,196608 +r1,19967:32779637,18135568:26345472,2270722,196608 +k1,19936:6434165,18135568:-26345472 +) +(1,19936:6434165,18135568:26345472,2074114,196608 +[1,19936:6630773,18135568:25952256,1877506,0 +(1,19932:6630773,16682501:25952256,424439,106246 +(1,19931:6630773,16682501:0,0,0 +g1,19931:6630773,16682501 +g1,19931:6630773,16682501 +g1,19931:6303093,16682501 +(1,19931:6303093,16682501:0,0,0 +) +g1,19931:6630773,16682501 +) +g1,19932:9286405,16682501 +g1,19932:9950313,16682501 +k1,19932:9950313,16682501:0 +h1,19932:14597668,16682501:0,0,0 +k1,19932:32583028,16682501:17985360 +g1,19932:32583028,16682501 +) +(1,19936:6630773,18022716:25952256,431045,112852 +g1,19936:7626635,18022716 +g1,19936:8622497,18022716 +g1,19936:11278129,18022716 +g1,19936:14265714,18022716 +g1,19936:17585253,18022716 +g1,19936:21236746,18022716 +g1,19936:22232608,18022716 +k1,19936:32583029,18022716:6698928 +g1,19936:32583029,18022716 +) +] +) +g1,19936:32583029,18135568 +g1,19936:6630773,18135568 +g1,19936:6630773,18135568 +g1,19936:32583029,18135568 +g1,19936:32583029,18135568 +) +h1,19936:6630773,18332176:0,0,0 +(1,19939:6630773,27481378:25952256,9083666,0 +k1,19939:10523651,27481378:3892878 +h1,19938:10523651,27481378:0,0,0 +(1,19938:10523651,27481378:18166500,9083666,0 +(1,19938:10523651,27481378:18167376,9083688,0 +(1,19938:10523651,27481378:18167376,9083688,0 +(1,19938:10523651,27481378:0,9083688,0 +(1,19938:10523651,27481378:0,14208860,0 +(1,19938:10523651,27481378:28417720,14208860,0 +) +k1,19938:10523651,27481378:-28417720 +) +) +g1,19938:28691027,27481378 +) +) +) +g1,19939:28690151,27481378 +k1,19939:32583029,27481378:3892878 +) +(1,19946:6630773,28346458:25952256,513147,134348 +h1,19945:6630773,28346458:983040,0,0 +k1,19945:8882917,28346458:227082 +$1,19945:8882917,28346458 +[1,19945:8882917,28346458:502661,458096,7864 +(1,19945:9353464,28338594:0,450232,0 +) +(1,19945:8882917,28346458:502661,355205,7864 +) +] +k1,19945:9551588,28346458:166010 +k1,19945:10285795,28346458:166010 +(1,19945:10285795,28346458:1056440,355205,7864 +) +$1,19945:11342235,28346458 +k1,19945:11742987,28346458:227082 +k1,19945:12989153,28346458:227081 +k1,19945:15655485,28346458:227082 +(1,19945:15655485,28346458:0,452978,115847 +r1,19967:18827445,28346458:3171960,568825,115847 +k1,19945:15655485,28346458:-3171960 +) +(1,19945:15655485,28346458:3171960,452978,115847 +k1,19945:15655485,28346458:3277 +h1,19945:18824168,28346458:0,411205,112570 +) +k1,19945:19054527,28346458:227082 +k1,19945:20385891,28346458:227082 +k1,19945:21360738,28346458:227081 +k1,19945:23793107,28346458:227082 +k1,19945:24706351,28346458:227082 +k1,19945:28005761,28346458:227082 +k1,19945:28884270,28346458:227081 +(1,19945:28884270,28346458:0,459977,115847 +r1,19967:31704519,28346458:2820249,575824,115847 +k1,19945:28884270,28346458:-2820249 +) +(1,19945:28884270,28346458:2820249,459977,115847 +k1,19945:28884270,28346458:3277 +h1,19945:31701242,28346458:0,411205,112570 +) +k1,19945:31931601,28346458:227082 +k1,19945:32583029,28346458:0 +) +(1,19946:6630773,29211538:25952256,513147,134348 +k1,19945:8543094,29211538:182826 +k1,19945:9745004,29211538:182825 +k1,19945:12633156,29211538:182826 +k1,19945:14255808,29211538:182826 +k1,19945:16467628,29211538:182825 +k1,19945:17841899,29211538:182826 +k1,19945:18972376,29211538:182826 +$1,19945:18972376,29211538 +[1,19945:18972376,29211538:502661,458096,7864 +(1,19945:19442923,29203674:0,450232,0 +) +(1,19945:18972376,29211538:502661,355205,7864 +) +] +k1,19945:19584709,29211538:109672 +k1,19945:20262578,29211538:109672 +(1,19945:20262578,29211538:1129840,505283,7864 +) +$1,19945:21392418,29211538 +k1,19945:21575244,29211538:182826 +(1,19945:21575244,29211538:0,452978,115847 +r1,19967:25098916,29211538:3523672,568825,115847 +k1,19945:21575244,29211538:-3523672 +) +(1,19945:21575244,29211538:3523672,452978,115847 +k1,19945:21575244,29211538:3277 +h1,19945:25095639,29211538:0,411205,112570 +) +k1,19945:25281741,29211538:182825 +k1,19945:27644950,29211538:182826 +k1,19945:28575542,29211538:182826 +k1,19945:30963654,29211538:182825 +k1,19945:31832642,29211538:182826 +k1,19946:32583029,29211538:0 +) +(1,19946:6630773,30076618:25952256,513147,134348 +k1,19945:9389757,30076618:157205 +k1,19945:11421293,30076618:157206 +k1,19945:14604295,30076618:157205 +k1,19945:16236716,30076618:157206 +k1,19945:17045349,30076618:157205 +k1,19945:17950321,30076618:157206 +k1,19945:20312813,30076618:157205 +k1,19945:21121447,30076618:157206 +k1,19945:24559384,30076618:157205 +(1,19945:24559384,30076618:0,459977,115847 +r1,19967:27379633,30076618:2820249,575824,115847 +k1,19945:24559384,30076618:-2820249 +) +(1,19945:24559384,30076618:2820249,459977,115847 +k1,19945:24559384,30076618:3277 +h1,19945:27376356,30076618:0,411205,112570 +) +k1,19945:27710509,30076618:157206 +k1,19945:29557232,30076618:157205 +k1,19945:32583029,30076618:0 +) +(1,19946:6630773,30941698:25952256,513147,134348 +k1,19945:8114152,30941698:198873 +k1,19945:10323669,30941698:198872 +k1,19945:10878402,30941698:198873 +k1,19945:12950294,30941698:198873 +k1,19945:15003181,30941698:198873 +k1,19945:16348278,30941698:198872 +(1,19945:16348278,30941698:0,452978,115847 +r1,19967:18465103,30941698:2116825,568825,115847 +k1,19945:16348278,30941698:-2116825 +) +(1,19945:16348278,30941698:2116825,452978,115847 +k1,19945:16348278,30941698:3277 +h1,19945:18461826,30941698:0,411205,112570 +) +k1,19945:18837646,30941698:198873 +k1,19945:19687947,30941698:198873 +(1,19945:19687947,30941698:0,459977,115847 +r1,19967:20749636,30941698:1061689,575824,115847 +k1,19945:19687947,30941698:-1061689 +) +(1,19945:19687947,30941698:1061689,459977,115847 +k1,19945:19687947,30941698:3277 +h1,19945:20746359,30941698:0,411205,112570 +) +k1,19945:21122179,30941698:198873 +k1,19945:22517738,30941698:198872 +(1,19945:22517738,30941698:0,414482,122846 +r1,19967:23931139,30941698:1413401,537328,122846 +k1,19945:22517738,30941698:-1413401 +) +(1,19945:22517738,30941698:1413401,414482,122846 +k1,19945:22517738,30941698:3277 +h1,19945:23927862,30941698:0,411205,112570 +) +k1,19945:24130012,30941698:198873 +k1,19945:25842111,30941698:198873 +k1,19945:27141989,30941698:198873 +k1,19945:27992289,30941698:198872 +k1,19945:28938928,30941698:198873 +k1,19945:31649796,30941698:198873 +k1,19945:32583029,30941698:0 +) +(1,19946:6630773,31806778:25952256,505283,126483 +g1,19945:7849087,31806778 +g1,19945:10058961,31806778 +g1,19945:13466833,31806778 +g1,19945:14427590,31806778 +g1,19945:15645904,31806778 +(1,19945:15645904,31806778:0,414482,115847 +r1,19967:17059305,31806778:1413401,530329,115847 +k1,19945:15645904,31806778:-1413401 +) +(1,19945:15645904,31806778:1413401,414482,115847 +k1,19945:15645904,31806778:3277 +h1,19945:17056028,31806778:0,411205,112570 +) +k1,19946:32583029,31806778:15471296 +g1,19946:32583029,31806778 +) +(1,19948:6630773,32671858:25952256,513147,134348 +h1,19947:6630773,32671858:983040,0,0 +k1,19947:10094187,32671858:439583 +k1,19947:11065266,32671858:439582 +k1,19947:13001036,32671858:439583 +k1,19947:14388270,32671858:439583 +k1,19947:15183712,32671858:439582 +k1,19947:17825305,32671858:439583 +k1,19947:19715855,32671858:439583 +k1,19947:21549388,32671858:439582 +k1,19947:24057287,32671858:439583 +k1,19947:28122322,32671858:439583 +k1,19947:29177943,32671858:439583 +k1,19947:30847636,32671858:439582 +k1,19948:32583029,32671858:0 +) +(1,19948:6630773,33536938:25952256,452978,122846 +(1,19947:6630773,33536938:0,452978,122846 +r1,19967:10857869,33536938:4227096,575824,122846 +k1,19947:6630773,33536938:-4227096 +) +(1,19947:6630773,33536938:4227096,452978,122846 +k1,19947:6630773,33536938:3277 +h1,19947:10854592,33536938:0,411205,112570 +) +k1,19948:32583029,33536938:21672732 +g1,19948:32583029,33536938 +) +v1,19950:6630773,34221793:0,393216,0 +(1,19956:6630773,35925580:25952256,2097003,196608 +g1,19956:6630773,35925580 +g1,19956:6630773,35925580 +g1,19956:6434165,35925580 +(1,19956:6434165,35925580:0,2097003,196608 +r1,19967:32779637,35925580:26345472,2293611,196608 +k1,19956:6434165,35925580:-26345472 +) +(1,19956:6434165,35925580:26345472,2097003,196608 +[1,19956:6630773,35925580:25952256,1900395,0 +(1,19952:6630773,34449624:25952256,424439,106246 +(1,19951:6630773,34449624:0,0,0 +g1,19951:6630773,34449624 +g1,19951:6630773,34449624 +g1,19951:6303093,34449624 +(1,19951:6303093,34449624:0,0,0 +) +g1,19951:6630773,34449624 +) +g1,19952:9286405,34449624 +h1,19952:9618359,34449624:0,0,0 +k1,19952:32583029,34449624:22964670 +g1,19952:32583029,34449624 +) +(1,19953:6630773,35134479:25952256,431045,112852 +h1,19953:6630773,35134479:0,0,0 +g1,19953:6962727,35134479 +g1,19953:7294681,35134479 +g1,19953:12937898,35134479 +g1,19953:13601806,35134479 +g1,19953:16257438,35134479 +g1,19953:17917208,35134479 +g1,19953:18581116,35134479 +k1,19953:18581116,35134479:0 +h1,19953:21236748,35134479:0,0,0 +k1,19953:32583029,35134479:11346281 +g1,19953:32583029,35134479 +) +(1,19954:6630773,35819334:25952256,424439,106246 +h1,19954:6630773,35819334:0,0,0 +g1,19954:6962727,35819334 +g1,19954:7294681,35819334 +g1,19954:7626635,35819334 +g1,19954:7958589,35819334 +g1,19954:8290543,35819334 +g1,19954:8622497,35819334 +g1,19954:8954451,35819334 +g1,19954:9286405,35819334 +g1,19954:9618359,35819334 +g1,19954:9950313,35819334 +g1,19954:10282267,35819334 +g1,19954:10614221,35819334 +g1,19954:10946175,35819334 +g1,19954:11278129,35819334 +g1,19954:11610083,35819334 +g1,19954:13933761,35819334 +g1,19954:14597669,35819334 +g1,19954:16921347,35819334 +g1,19954:18913071,35819334 +g1,19954:19576979,35819334 +g1,19954:21236749,35819334 +g1,19954:22896519,35819334 +g1,19954:23560427,35819334 +h1,19954:24556289,35819334:0,0,0 +k1,19954:32583029,35819334:8026740 +g1,19954:32583029,35819334 +) +] +) +g1,19956:32583029,35925580 +g1,19956:6630773,35925580 +g1,19956:6630773,35925580 +g1,19956:32583029,35925580 +g1,19956:32583029,35925580 +) +h1,19956:6630773,36122188:0,0,0 +(1,19959:6630773,45271390:25952256,9083666,0 +k1,19959:10523651,45271390:3892878 +h1,19958:10523651,45271390:0,0,0 +(1,19958:10523651,45271390:18166500,9083666,0 +(1,19958:10523651,45271390:18167376,9083688,0 +(1,19958:10523651,45271390:18167376,9083688,0 +(1,19958:10523651,45271390:0,9083688,0 +(1,19958:10523651,45271390:0,14208860,0 +(1,19958:10523651,45271390:28417720,14208860,0 +) +k1,19958:10523651,45271390:-28417720 +) +) +g1,19958:28691027,45271390 +) +) +) +g1,19959:28690151,45271390 +k1,19959:32583029,45271390:3892878 +) +] +(1,19967:32583029,45706769:0,0,0 +g1,19967:32583029,45706769 +) +) +] +(1,19967:6630773,47279633:25952256,0,0 +h1,19967:6630773,47279633:25952256,0,0 +) +] +(1,19967:4262630,4025873:0,0,0 +[1,19967:-473656,4025873:0,0,0 +(1,19967:-473656,-710413:0,0,0 +(1,19967:-473656,-710413:0,0,0 +g1,19967:-473656,-710413 +) +g1,19967:-473656,-710413 ) ] ) ] !20965 -}333 -Input:3595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}334 Input:3599:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3600:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -348749,773 +348953,773 @@ Input:3606:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3607:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3612:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3613:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{334 -[1,20021:4262630,47279633:28320399,43253760,0 -(1,20021:4262630,4025873:0,0,0 -[1,20021:-473656,4025873:0,0,0 -(1,20021:-473656,-710413:0,0,0 -(1,20021:-473656,-644877:0,0,0 -k1,20021:-473656,-644877:-65536 +{335 +[1,20019:4262630,47279633:28320399,43253760,0 +(1,20019:4262630,4025873:0,0,0 +[1,20019:-473656,4025873:0,0,0 +(1,20019:-473656,-710413:0,0,0 +(1,20019:-473656,-644877:0,0,0 +k1,20019:-473656,-644877:-65536 ) -(1,20021:-473656,4736287:0,0,0 -k1,20021:-473656,4736287:5209943 +(1,20019:-473656,4736287:0,0,0 +k1,20019:-473656,4736287:5209943 ) -g1,20021:-473656,-710413 +g1,20019:-473656,-710413 ) ] ) -[1,20021:6630773,47279633:25952256,43253760,0 -[1,20021:6630773,4812305:25952256,786432,0 -(1,20021:6630773,4812305:25952256,485622,11795 -(1,20021:6630773,4812305:25952256,485622,11795 -g1,20021:3078558,4812305 -[1,20021:3078558,4812305:0,0,0 -(1,20021:3078558,2439708:0,1703936,0 -k1,20021:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20021:2537886,2439708:1179648,16384,0 +[1,20019:6630773,47279633:25952256,43253760,0 +[1,20019:6630773,4812305:25952256,786432,0 +(1,20019:6630773,4812305:25952256,485622,11795 +(1,20019:6630773,4812305:25952256,485622,11795 +g1,20019:3078558,4812305 +[1,20019:3078558,4812305:0,0,0 +(1,20019:3078558,2439708:0,1703936,0 +k1,20019:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20019:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20021:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20019:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20021:3078558,4812305:0,0,0 -(1,20021:3078558,2439708:0,1703936,0 -g1,20021:29030814,2439708 -g1,20021:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20021:36151628,1915420:16384,1179648,0 +[1,20019:3078558,4812305:0,0,0 +(1,20019:3078558,2439708:0,1703936,0 +g1,20019:29030814,2439708 +g1,20019:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20019:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20021:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20019:37855564,2439708:1179648,16384,0 ) ) -k1,20021:3078556,2439708:-34777008 +k1,20019:3078556,2439708:-34777008 ) ] -[1,20021:3078558,4812305:0,0,0 -(1,20021:3078558,49800853:0,16384,2228224 -k1,20021:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20021:2537886,49800853:1179648,16384,0 +[1,20019:3078558,4812305:0,0,0 +(1,20019:3078558,49800853:0,16384,2228224 +k1,20019:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20019:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20021:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20019:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20021:3078558,4812305:0,0,0 -(1,20021:3078558,49800853:0,16384,2228224 -g1,20021:29030814,49800853 -g1,20021:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20021:36151628,51504789:16384,1179648,0 +[1,20019:3078558,4812305:0,0,0 +(1,20019:3078558,49800853:0,16384,2228224 +g1,20019:29030814,49800853 +g1,20019:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20019:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20021:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20019:37855564,49800853:1179648,16384,0 ) ) -k1,20021:3078556,49800853:-34777008 +k1,20019:3078556,49800853:-34777008 ) ] -g1,20021:6630773,4812305 -g1,20021:6630773,4812305 -g1,20021:9560887,4812305 -k1,20021:31387651,4812305:21826764 -) -) -] -[1,20021:6630773,45706769:25952256,40108032,0 -(1,20021:6630773,45706769:25952256,40108032,0 -(1,20021:6630773,45706769:0,0,0 -g1,20021:6630773,45706769 -) -[1,20021:6630773,45706769:25952256,40108032,0 -(1,19969:6630773,6254097:25952256,513147,134348 -h1,19967:6630773,6254097:983040,0,0 -k1,19967:9945452,6254097:290848 -k1,19967:13673662,6254097:290847 -k1,19967:16721610,6254097:290848 -k1,19967:17960108,6254097:290847 -$1,19967:17960108,6254097 -k1,19967:18777543,6254097:349508 -k1,19967:19695247,6254097:349507 -$1,19967:21080023,6254097 -k1,19967:21370870,6254097:290847 -k1,19967:24870361,6254097:290848 -k1,19967:28202734,6254097:290847 -k1,19967:31591469,6254097:290848 -k1,19967:32583029,6254097:0 -) -(1,19969:6630773,7119177:25952256,505283,134348 -k1,19967:8960459,7119177:190591 -k1,19968:11919945,7119177:190590 -k1,19968:13214818,7119177:190591 -k1,19968:14153174,7119177:190590 -k1,19968:15629581,7119177:190591 -k1,19968:19028814,7119177:190590 -k1,19968:21679627,7119177:190591 -k1,19968:24911743,7119177:190590 -k1,19968:28373891,7119177:190591 -k1,19968:30299874,7119177:190590 -k1,19968:31509550,7119177:190591 -k1,19969:32583029,7119177:0 -) -(1,19969:6630773,7984257:25952256,513147,134348 -k1,19968:8917515,7984257:280685 -k1,19968:12979627,7984257:280685 -k1,19968:16396866,7984257:280686 -k1,19968:18245172,7984257:280685 -k1,19968:19544942,7984257:280685 -k1,19968:21214990,7984257:280685 -k1,19968:22257204,7984257:280686 -k1,19968:25636431,7984257:280685 -k1,19968:27652509,7984257:280685 -(1,19968:27652509,7984257:0,452978,115847 -r1,20021:32583029,7984257:4930520,568825,115847 -k1,19968:27652509,7984257:-4930520 -) -(1,19968:27652509,7984257:4930520,452978,115847 -k1,19968:27652509,7984257:3277 -h1,19968:32579752,7984257:0,411205,112570 -) -k1,19968:32583029,7984257:0 -) -(1,19969:6630773,8849337:25952256,513147,115847 -g1,19968:9157185,8849337 -g1,19968:10023570,8849337 -(1,19968:10023570,8849337:0,452978,115847 -r1,20021:15657513,8849337:5633943,568825,115847 -k1,19968:10023570,8849337:-5633943 -) -(1,19968:10023570,8849337:5633943,452978,115847 -k1,19968:10023570,8849337:3277 -h1,19968:15654236,8849337:0,411205,112570 -) -k1,19969:32583029,8849337:16873088 -g1,19969:32583029,8849337 -) -v1,19971:6630773,9534192:0,393216,0 -(1,19977:6630773,11237979:25952256,2097003,196608 -g1,19977:6630773,11237979 -g1,19977:6630773,11237979 -g1,19977:6434165,11237979 -(1,19977:6434165,11237979:0,2097003,196608 -r1,20021:32779637,11237979:26345472,2293611,196608 -k1,19977:6434165,11237979:-26345472 -) -(1,19977:6434165,11237979:26345472,2097003,196608 -[1,19977:6630773,11237979:25952256,1900395,0 -(1,19973:6630773,9762023:25952256,424439,106246 -(1,19972:6630773,9762023:0,0,0 -g1,19972:6630773,9762023 -g1,19972:6630773,9762023 -g1,19972:6303093,9762023 -(1,19972:6303093,9762023:0,0,0 -) -g1,19972:6630773,9762023 -) -g1,19973:9286405,9762023 -h1,19973:9618359,9762023:0,0,0 -k1,19973:32583029,9762023:22964670 -g1,19973:32583029,9762023 -) -(1,19974:6630773,10446878:25952256,431045,112852 -h1,19974:6630773,10446878:0,0,0 -g1,19974:6962727,10446878 -g1,19974:7294681,10446878 -g1,19974:14597667,10446878 -g1,19974:15261575,10446878 -g1,19974:21236746,10446878 -g1,19974:24224331,10446878 -g1,19974:24888239,10446878 -g1,19974:29535594,10446878 -g1,19974:30199502,10446878 -k1,19974:30199502,10446878:0 -h1,19974:32191226,10446878:0,0,0 -k1,19974:32583029,10446878:391803 -g1,19974:32583029,10446878 -) -(1,19975:6630773,11131733:25952256,424439,106246 -h1,19975:6630773,11131733:0,0,0 -g1,19975:6962727,11131733 -g1,19975:7294681,11131733 -g1,19975:7626635,11131733 -g1,19975:7958589,11131733 -g1,19975:8290543,11131733 -g1,19975:8622497,11131733 -g1,19975:8954451,11131733 -g1,19975:9286405,11131733 -g1,19975:9618359,11131733 -g1,19975:9950313,11131733 -g1,19975:10282267,11131733 -g1,19975:10614221,11131733 -g1,19975:10946175,11131733 -g1,19975:11278129,11131733 -g1,19975:11610083,11131733 -g1,19975:13933761,11131733 -g1,19975:14597669,11131733 -g1,19975:16921347,11131733 -g1,19975:18581117,11131733 -g1,19975:19245025,11131733 -g1,19975:20904795,11131733 -g1,19975:24224334,11131733 -g1,19975:24888242,11131733 -g1,19975:25884104,11131733 -g1,19975:27875828,11131733 -g1,19975:28539736,11131733 -h1,19975:29867552,11131733:0,0,0 -k1,19975:32583029,11131733:2715477 -g1,19975:32583029,11131733 -) -] -) -g1,19977:32583029,11237979 -g1,19977:6630773,11237979 -g1,19977:6630773,11237979 -g1,19977:32583029,11237979 -g1,19977:32583029,11237979 -) -h1,19977:6630773,11434587:0,0,0 -(1,19980:6630773,20583789:25952256,9083666,0 -k1,19980:10523651,20583789:3892878 -h1,19979:10523651,20583789:0,0,0 -(1,19979:10523651,20583789:18166500,9083666,0 -(1,19979:10523651,20583789:18167376,9083688,0 -(1,19979:10523651,20583789:18167376,9083688,0 -(1,19979:10523651,20583789:0,9083688,0 -(1,19979:10523651,20583789:0,14208860,0 -(1,19979:10523651,20583789:28417720,14208860,0 -) -k1,19979:10523651,20583789:-28417720 -) -) -g1,19979:28691027,20583789 -) -) -) -g1,19980:28690151,20583789 -k1,19980:32583029,20583789:3892878 -) -v1,19987:6630773,21448869:0,393216,0 -(1,19988:6630773,24468254:25952256,3412601,0 -g1,19988:6630773,24468254 -g1,19988:6237557,24468254 -r1,20021:6368629,24468254:131072,3412601,0 -g1,19988:6567858,24468254 -g1,19988:6764466,24468254 -[1,19988:6764466,24468254:25818563,3412601,0 -(1,19988:6764466,21757167:25818563,701514,196608 -(1,19987:6764466,21757167:0,701514,196608 -r1,20021:7761522,21757167:997056,898122,196608 -k1,19987:6764466,21757167:-997056 -) -(1,19987:6764466,21757167:997056,701514,196608 -) -k1,19987:7948606,21757167:187084 -k1,19987:8276286,21757167:327680 -k1,19987:8933263,21757167:187084 -k1,19987:9651844,21757167:187084 -k1,19987:12468889,21757167:187085 -k1,19987:13307401,21757167:187084 -k1,19987:14586970,21757167:187084 -k1,19987:18749468,21757167:187084 -k1,19987:21962349,21757167:187084 -k1,19987:24476616,21757167:187084 -k1,19987:25322993,21757167:187085 -k1,19987:26529162,21757167:187084 -k1,19987:29742043,21757167:187084 -k1,19987:32583029,21757167:0 -) -(1,19988:6764466,22622247:25818563,505283,134348 -k1,19987:7788615,22622247:262621 -k1,19987:10631388,22622247:262621 -k1,19987:13722541,22622247:262620 -k1,19987:16046925,22622247:262621 -k1,19987:17118916,22622247:262621 -k1,19987:19125450,22622247:262621 -k1,19987:20004109,22622247:262621 -k1,19987:22846882,22622247:262621 -k1,19987:25789924,22622247:262620 -k1,19987:29411265,22622247:262621 -k1,19987:31832642,22622247:262621 -k1,19988:32583029,22622247:0 -) -(1,19988:6764466,23487327:25818563,513147,134348 -k1,19987:9734476,23487327:211600 -k1,19987:11050358,23487327:211600 -k1,19987:12009725,23487327:211601 -k1,19987:14426612,23487327:211600 -k1,19987:15289640,23487327:211600 -k1,19987:16520325,23487327:211600 -k1,19987:19722333,23487327:211600 -k1,19987:22629429,23487327:211600 -k1,19987:25399556,23487327:211601 -k1,19987:28891888,23487327:211600 -(1,19987:28891888,23487327:0,459977,122846 -r1,20021:31712137,23487327:2820249,582823,122846 -k1,19987:28891888,23487327:-2820249 -) -(1,19987:28891888,23487327:2820249,459977,122846 -k1,19987:28891888,23487327:3277 -h1,19987:31708860,23487327:0,411205,112570 -) -k1,19987:31923737,23487327:211600 -k1,19988:32583029,23487327:0 -) -(1,19988:6764466,24352407:25818563,452978,115847 -(1,19987:6764466,24352407:0,452978,115847 -r1,20021:11694986,24352407:4930520,568825,115847 -k1,19987:6764466,24352407:-4930520 -) -(1,19987:6764466,24352407:4930520,452978,115847 -k1,19987:6764466,24352407:3277 -h1,19987:11691709,24352407:0,411205,112570 -) -k1,19988:32583030,24352407:20835616 -g1,19988:32583030,24352407 -) -] -g1,19988:32583029,24468254 -) -h1,19988:6630773,24468254:0,0,0 -(1,19991:6630773,25333334:25952256,513147,134348 -h1,19990:6630773,25333334:983040,0,0 -k1,19990:10014099,25333334:214660 -k1,19990:10911644,25333334:214660 -k1,19990:12828274,25333334:214660 -k1,19990:16724747,25333334:214660 -k1,19990:20148050,25333334:214660 -k1,19990:21124239,25333334:214661 -k1,19990:23561880,25333334:214660 -k1,19990:25631209,25333334:214660 -k1,19990:26655239,25333334:214660 -k1,19990:27888984,25333334:214660 -k1,19990:29997634,25333334:214660 -k1,19990:32583029,25333334:0 -) -(1,19991:6630773,26198414:25952256,505283,134348 -k1,19990:7544812,26198414:262611 -k1,19990:8826508,26198414:262611 -(1,19990:8826508,26198414:0,414482,115847 -r1,20021:9184774,26198414:358266,530329,115847 -k1,19990:8826508,26198414:-358266 -) -(1,19990:8826508,26198414:358266,414482,115847 -k1,19990:8826508,26198414:3277 -h1,19990:9181497,26198414:0,411205,112570 -) -k1,19990:9447385,26198414:262611 -k1,19990:12554259,26198414:262611 -(1,19990:12761353,26198414:0,452978,115847 -r1,20021:14526466,26198414:1765113,568825,115847 -k1,19990:12761353,26198414:-1765113 -) -(1,19990:12761353,26198414:1765113,452978,115847 -k1,19990:12761353,26198414:3277 -h1,19990:14523189,26198414:0,411205,112570 -) -k1,19990:14789077,26198414:262611 -k1,19990:15667726,26198414:262611 -k1,19990:17133578,26198414:262611 -k1,19990:20264700,26198414:262611 -k1,19990:21631593,26198414:262611 -k1,19990:22641970,26198414:262611 -k1,19990:25206861,26198414:262611 -k1,19990:26155634,26198414:262611 -k1,19990:29131436,26198414:262611 -k1,19990:30155575,26198414:262611 -k1,19991:32583029,26198414:0 -) -(1,19991:6630773,27063494:25952256,452978,134348 -(1,19990:6630773,27063494:0,452978,115847 -r1,20021:8395886,27063494:1765113,568825,115847 -k1,19990:6630773,27063494:-1765113 -) -(1,19990:6630773,27063494:1765113,452978,115847 -k1,19990:6630773,27063494:3277 -h1,19990:8392609,27063494:0,411205,112570 -) -g1,19990:8595115,27063494 -g1,19990:9480506,27063494 -g1,19990:10450438,27063494 -g1,19990:13721995,27063494 -g1,19990:14572652,27063494 -g1,19990:18052613,27063494 -(1,19990:18052613,27063494:0,414482,122846 -r1,20021:19466014,27063494:1413401,537328,122846 -k1,19990:18052613,27063494:-1413401 -) -(1,19990:18052613,27063494:1413401,414482,122846 -k1,19990:18052613,27063494:3277 -h1,19990:19462737,27063494:0,411205,112570 -) -k1,19991:32583029,27063494:13064587 -g1,19991:32583029,27063494 -) -v1,19993:6630773,27748349:0,393216,0 -(1,19999:6630773,29458742:25952256,2103609,196608 -g1,19999:6630773,29458742 -g1,19999:6630773,29458742 -g1,19999:6434165,29458742 -(1,19999:6434165,29458742:0,2103609,196608 -r1,20021:32779637,29458742:26345472,2300217,196608 -k1,19999:6434165,29458742:-26345472 -) -(1,19999:6434165,29458742:26345472,2103609,196608 -[1,19999:6630773,29458742:25952256,1907001,0 -(1,19995:6630773,27976180:25952256,424439,106246 -(1,19994:6630773,27976180:0,0,0 -g1,19994:6630773,27976180 -g1,19994:6630773,27976180 -g1,19994:6303093,27976180 -(1,19994:6303093,27976180:0,0,0 -) -g1,19994:6630773,27976180 -) -g1,19995:9286405,27976180 -k1,19995:9286405,27976180:0 -h1,19995:9950313,27976180:0,0,0 -k1,19995:32583029,27976180:22632716 -g1,19995:32583029,27976180 -) -(1,19996:6630773,28661035:25952256,424439,112852 -h1,19996:6630773,28661035:0,0,0 -g1,19996:6962727,28661035 -g1,19996:7294681,28661035 -g1,19996:11278129,28661035 -g1,19996:11942037,28661035 -g1,19996:13601807,28661035 -g1,19996:16257439,28661035 -g1,19996:16921347,28661035 -g1,19996:18913071,28661035 -g1,19996:19576979,28661035 -g1,19996:21900657,28661035 -g1,19996:22564565,28661035 -g1,19996:23228473,28661035 -g1,19996:25220197,28661035 -h1,19996:25552151,28661035:0,0,0 -k1,19996:32583029,28661035:7030878 -g1,19996:32583029,28661035 -) -(1,19997:6630773,29345890:25952256,431045,112852 -h1,19997:6630773,29345890:0,0,0 -g1,19997:6962727,29345890 -g1,19997:7294681,29345890 -g1,19997:13269852,29345890 -g1,19997:13933760,29345890 -g1,19997:16257438,29345890 -g1,19997:17585254,29345890 -g1,19997:18249162,29345890 -h1,19997:19908932,29345890:0,0,0 -k1,19997:32583029,29345890:12674097 -g1,19997:32583029,29345890 -) -] -) -g1,19999:32583029,29458742 -g1,19999:6630773,29458742 -g1,19999:6630773,29458742 -g1,19999:32583029,29458742 -g1,19999:32583029,29458742 -) -h1,19999:6630773,29655350:0,0,0 -(1,20003:6630773,30520430:25952256,505283,134348 -h1,20002:6630773,30520430:983040,0,0 -k1,20002:9574787,30520430:330438 -k1,20002:11280170,30520430:330438 -k1,20002:12714890,30520430:330438 -k1,20002:13793094,30520430:330438 -k1,20002:16088957,30520430:330438 -k1,20002:17070822,30520430:330437 -k1,20002:18420345,30520430:330438 -k1,20002:21133672,30520430:330438 -k1,20002:22915077,30520430:330438 -k1,20002:25627749,30520430:330438 -(1,20002:25627749,30520430:0,452978,115847 -r1,20021:30206557,30520430:4578808,568825,115847 -k1,20002:25627749,30520430:-4578808 -) -(1,20002:25627749,30520430:4578808,452978,115847 -g1,20002:29148144,30520430 -g1,20002:29851568,30520430 -h1,20002:30203280,30520430:0,411205,112570 -) -k1,20002:30536995,30520430:330438 -k1,20002:32583029,30520430:0 -) -(1,20003:6630773,31385510:25952256,513147,134348 -k1,20002:7968015,31385510:318157 -k1,20002:9784980,31385510:318157 -k1,20002:10762428,31385510:318156 -k1,20002:12099670,31385510:318157 -k1,20002:14024770,31385510:318157 -k1,20002:15717872,31385510:318157 -k1,20002:18444476,31385510:318156 -k1,20002:19959320,31385510:318157 -k1,20002:22543057,31385510:318157 -k1,20002:25868661,31385510:318157 -k1,20002:26802855,31385510:318156 -(1,20002:26802855,31385510:0,452978,115847 -r1,20021:31733375,31385510:4930520,568825,115847 -k1,20002:26802855,31385510:-4930520 -) -(1,20002:26802855,31385510:4930520,452978,115847 -k1,20002:26802855,31385510:3277 -h1,20002:31730098,31385510:0,411205,112570 -) -k1,20002:32051532,31385510:318157 -k1,20003:32583029,31385510:0 -) -(1,20003:6630773,32250590:25952256,513147,134348 -(1,20002:6630773,32250590:0,452978,122846 -r1,20021:12616428,32250590:5985655,575824,122846 -k1,20002:6630773,32250590:-5985655 -) -(1,20002:6630773,32250590:5985655,452978,122846 -k1,20002:6630773,32250590:3277 -h1,20002:12613151,32250590:0,411205,112570 -) -k1,20002:13111848,32250590:321750 -k1,20002:15861053,32250590:321751 -(1,20002:15861053,32250590:0,452978,122846 -r1,20021:19736437,32250590:3875384,575824,122846 -k1,20002:15861053,32250590:-3875384 -) -(1,20002:15861053,32250590:3875384,452978,122846 -k1,20002:15861053,32250590:3277 -h1,20002:19733160,32250590:0,411205,112570 -) -k1,20002:20058187,32250590:321750 -k1,20002:21066099,32250590:321750 -k1,20002:22158553,32250590:321751 -k1,20002:25552631,32250590:321750 -k1,20002:26822032,32250590:321750 -(1,20002:26822032,32250590:0,414482,122846 -r1,20021:28235433,32250590:1413401,537328,122846 -k1,20002:26822032,32250590:-1413401 -) -(1,20002:26822032,32250590:1413401,414482,122846 -k1,20002:26822032,32250590:3277 -h1,20002:28232156,32250590:0,411205,112570 -) -k1,20002:28557184,32250590:321751 -k1,20002:31563944,32250590:321750 -k1,20002:32583029,32250590:0 -) -(1,20003:6630773,33115670:25952256,513147,134348 -g1,20002:8848511,33115670 -g1,20002:9660502,33115670 -g1,20002:10878816,33115670 -g1,20002:12150214,33115670 -g1,20002:13839076,33115670 -g1,20002:14697597,33115670 -g1,20002:15915911,33115670 -k1,20003:32583029,33115670:15239744 -g1,20003:32583029,33115670 -) -v1,20005:6630773,33800525:0,393216,0 -(1,20011:6630773,35484494:25952256,2077185,196608 -g1,20011:6630773,35484494 -g1,20011:6630773,35484494 -g1,20011:6434165,35484494 -(1,20011:6434165,35484494:0,2077185,196608 -r1,20021:32779637,35484494:26345472,2273793,196608 -k1,20011:6434165,35484494:-26345472 -) -(1,20011:6434165,35484494:26345472,2077185,196608 -[1,20011:6630773,35484494:25952256,1880577,0 -(1,20007:6630773,34028356:25952256,424439,106246 -(1,20006:6630773,34028356:0,0,0 -g1,20006:6630773,34028356 -g1,20006:6630773,34028356 -g1,20006:6303093,34028356 -(1,20006:6303093,34028356:0,0,0 -) -g1,20006:6630773,34028356 -) -g1,20007:9286405,34028356 -h1,20007:9618359,34028356:0,0,0 -k1,20007:32583029,34028356:22964670 -g1,20007:32583029,34028356 -) -(1,20008:6630773,34713211:25952256,431045,112852 -h1,20008:6630773,34713211:0,0,0 -g1,20008:6962727,34713211 -g1,20008:7294681,34713211 -g1,20008:13269852,34713211 -g1,20008:13933760,34713211 -g1,20008:18249161,34713211 -g1,20008:21236746,34713211 -g1,20008:21900654,34713211 -k1,20008:21900654,34713211:0 -h1,20008:27543871,34713211:0,0,0 -k1,20008:32583029,34713211:5039158 -g1,20008:32583029,34713211 -) -(1,20009:6630773,35398066:25952256,424439,86428 -h1,20009:6630773,35398066:0,0,0 -g1,20009:6962727,35398066 -g1,20009:7294681,35398066 -g1,20009:7626635,35398066 -g1,20009:7958589,35398066 -g1,20009:8290543,35398066 -g1,20009:8622497,35398066 -g1,20009:8954451,35398066 -g1,20009:9286405,35398066 -g1,20009:9618359,35398066 -g1,20009:9950313,35398066 -g1,20009:10282267,35398066 -g1,20009:10614221,35398066 -g1,20009:10946175,35398066 -g1,20009:11278129,35398066 -g1,20009:11610083,35398066 -g1,20009:14929622,35398066 -g1,20009:15593530,35398066 -g1,20009:16589392,35398066 -g1,20009:18913070,35398066 -g1,20009:19576978,35398066 -h1,20009:21568702,35398066:0,0,0 -k1,20009:32583029,35398066:11014327 -g1,20009:32583029,35398066 -) -] -) -g1,20011:32583029,35484494 -g1,20011:6630773,35484494 -g1,20011:6630773,35484494 -g1,20011:32583029,35484494 -g1,20011:32583029,35484494 -) -h1,20011:6630773,35681102:0,0,0 -(1,20014:6630773,44830304:25952256,9083666,0 -k1,20014:10523651,44830304:3892878 -h1,20013:10523651,44830304:0,0,0 -(1,20013:10523651,44830304:18166500,9083666,0 -(1,20013:10523651,44830304:18167376,9083688,0 -(1,20013:10523651,44830304:18167376,9083688,0 -(1,20013:10523651,44830304:0,9083688,0 -(1,20013:10523651,44830304:0,14208860,0 -(1,20013:10523651,44830304:28417720,14208860,0 -) -k1,20013:10523651,44830304:-28417720 -) -) -g1,20013:28691027,44830304 -) -) -) -g1,20014:28690151,44830304 -k1,20014:32583029,44830304:3892878 -) -(1,20021:6630773,45695384:25952256,513147,134348 -h1,20020:6630773,45695384:983040,0,0 -k1,20020:10439162,45695384:443115 -(1,20020:10439162,45695384:0,452978,115847 -r1,20021:13962834,45695384:3523672,568825,115847 -k1,20020:10439162,45695384:-3523672 -) -(1,20020:10439162,45695384:3523672,452978,115847 -k1,20020:10439162,45695384:3277 -h1,20020:13959557,45695384:0,411205,112570 -) -k1,20020:14405949,45695384:443115 -k1,20020:17176247,45695384:443115 -k1,20020:18286518,45695384:443115 -(1,20020:18286518,45695384:0,452978,122846 -r1,20021:22161902,45695384:3875384,575824,122846 -k1,20020:18286518,45695384:-3875384 -) -(1,20020:18286518,45695384:3875384,452978,122846 -k1,20020:18286518,45695384:3277 -h1,20020:22158625,45695384:0,411205,112570 -) -k1,20020:22605017,45695384:443115 -k1,20020:23699560,45695384:443115 -(1,20020:23699560,45695384:0,414482,122846 -r1,20021:25112961,45695384:1413401,537328,122846 -k1,20020:23699560,45695384:-1413401 -) -(1,20020:23699560,45695384:1413401,414482,122846 -k1,20020:23699560,45695384:3277 -h1,20020:25109684,45695384:0,411205,112570 -) -k1,20020:25556076,45695384:443115 -k1,20020:28172365,45695384:443115 -k1,20020:29231518,45695384:443115 -k1,20020:32583029,45695384:0 +g1,20019:6630773,4812305 +g1,20019:6630773,4812305 +g1,20019:9560887,4812305 +k1,20019:31387651,4812305:21826764 +) +) +] +[1,20019:6630773,45706769:25952256,40108032,0 +(1,20019:6630773,45706769:25952256,40108032,0 +(1,20019:6630773,45706769:0,0,0 +g1,20019:6630773,45706769 +) +[1,20019:6630773,45706769:25952256,40108032,0 +(1,19967:6630773,6254097:25952256,513147,134348 +h1,19965:6630773,6254097:983040,0,0 +k1,19965:9945452,6254097:290848 +k1,19965:13673662,6254097:290847 +k1,19965:16721610,6254097:290848 +k1,19965:17960108,6254097:290847 +$1,19965:17960108,6254097 +k1,19965:18777543,6254097:349508 +k1,19965:19695247,6254097:349507 +$1,19965:21080023,6254097 +k1,19965:21370870,6254097:290847 +k1,19965:24870361,6254097:290848 +k1,19965:28202734,6254097:290847 +k1,19965:31591469,6254097:290848 +k1,19965:32583029,6254097:0 +) +(1,19967:6630773,7119177:25952256,505283,134348 +k1,19965:8960459,7119177:190591 +k1,19966:11919945,7119177:190590 +k1,19966:13214818,7119177:190591 +k1,19966:14153174,7119177:190590 +k1,19966:15629581,7119177:190591 +k1,19966:19028814,7119177:190590 +k1,19966:21679627,7119177:190591 +k1,19966:24911743,7119177:190590 +k1,19966:28373891,7119177:190591 +k1,19966:30299874,7119177:190590 +k1,19966:31509550,7119177:190591 +k1,19967:32583029,7119177:0 +) +(1,19967:6630773,7984257:25952256,513147,134348 +k1,19966:8917515,7984257:280685 +k1,19966:12979627,7984257:280685 +k1,19966:16396866,7984257:280686 +k1,19966:18245172,7984257:280685 +k1,19966:19544942,7984257:280685 +k1,19966:21214990,7984257:280685 +k1,19966:22257204,7984257:280686 +k1,19966:25636431,7984257:280685 +k1,19966:27652509,7984257:280685 +(1,19966:27652509,7984257:0,452978,115847 +r1,20019:32583029,7984257:4930520,568825,115847 +k1,19966:27652509,7984257:-4930520 +) +(1,19966:27652509,7984257:4930520,452978,115847 +k1,19966:27652509,7984257:3277 +h1,19966:32579752,7984257:0,411205,112570 +) +k1,19966:32583029,7984257:0 +) +(1,19967:6630773,8849337:25952256,513147,115847 +g1,19966:9157185,8849337 +g1,19966:10023570,8849337 +(1,19966:10023570,8849337:0,452978,115847 +r1,20019:15657513,8849337:5633943,568825,115847 +k1,19966:10023570,8849337:-5633943 +) +(1,19966:10023570,8849337:5633943,452978,115847 +k1,19966:10023570,8849337:3277 +h1,19966:15654236,8849337:0,411205,112570 +) +k1,19967:32583029,8849337:16873088 +g1,19967:32583029,8849337 +) +v1,19969:6630773,9534192:0,393216,0 +(1,19975:6630773,11237979:25952256,2097003,196608 +g1,19975:6630773,11237979 +g1,19975:6630773,11237979 +g1,19975:6434165,11237979 +(1,19975:6434165,11237979:0,2097003,196608 +r1,20019:32779637,11237979:26345472,2293611,196608 +k1,19975:6434165,11237979:-26345472 +) +(1,19975:6434165,11237979:26345472,2097003,196608 +[1,19975:6630773,11237979:25952256,1900395,0 +(1,19971:6630773,9762023:25952256,424439,106246 +(1,19970:6630773,9762023:0,0,0 +g1,19970:6630773,9762023 +g1,19970:6630773,9762023 +g1,19970:6303093,9762023 +(1,19970:6303093,9762023:0,0,0 +) +g1,19970:6630773,9762023 +) +g1,19971:9286405,9762023 +h1,19971:9618359,9762023:0,0,0 +k1,19971:32583029,9762023:22964670 +g1,19971:32583029,9762023 +) +(1,19972:6630773,10446878:25952256,431045,112852 +h1,19972:6630773,10446878:0,0,0 +g1,19972:6962727,10446878 +g1,19972:7294681,10446878 +g1,19972:14597667,10446878 +g1,19972:15261575,10446878 +g1,19972:21236746,10446878 +g1,19972:24224331,10446878 +g1,19972:24888239,10446878 +g1,19972:29535594,10446878 +g1,19972:30199502,10446878 +k1,19972:30199502,10446878:0 +h1,19972:32191226,10446878:0,0,0 +k1,19972:32583029,10446878:391803 +g1,19972:32583029,10446878 +) +(1,19973:6630773,11131733:25952256,424439,106246 +h1,19973:6630773,11131733:0,0,0 +g1,19973:6962727,11131733 +g1,19973:7294681,11131733 +g1,19973:7626635,11131733 +g1,19973:7958589,11131733 +g1,19973:8290543,11131733 +g1,19973:8622497,11131733 +g1,19973:8954451,11131733 +g1,19973:9286405,11131733 +g1,19973:9618359,11131733 +g1,19973:9950313,11131733 +g1,19973:10282267,11131733 +g1,19973:10614221,11131733 +g1,19973:10946175,11131733 +g1,19973:11278129,11131733 +g1,19973:11610083,11131733 +g1,19973:13933761,11131733 +g1,19973:14597669,11131733 +g1,19973:16921347,11131733 +g1,19973:18581117,11131733 +g1,19973:19245025,11131733 +g1,19973:20904795,11131733 +g1,19973:24224334,11131733 +g1,19973:24888242,11131733 +g1,19973:25884104,11131733 +g1,19973:27875828,11131733 +g1,19973:28539736,11131733 +h1,19973:29867552,11131733:0,0,0 +k1,19973:32583029,11131733:2715477 +g1,19973:32583029,11131733 +) +] +) +g1,19975:32583029,11237979 +g1,19975:6630773,11237979 +g1,19975:6630773,11237979 +g1,19975:32583029,11237979 +g1,19975:32583029,11237979 +) +h1,19975:6630773,11434587:0,0,0 +(1,19978:6630773,20583789:25952256,9083666,0 +k1,19978:10523651,20583789:3892878 +h1,19977:10523651,20583789:0,0,0 +(1,19977:10523651,20583789:18166500,9083666,0 +(1,19977:10523651,20583789:18167376,9083688,0 +(1,19977:10523651,20583789:18167376,9083688,0 +(1,19977:10523651,20583789:0,9083688,0 +(1,19977:10523651,20583789:0,14208860,0 +(1,19977:10523651,20583789:28417720,14208860,0 +) +k1,19977:10523651,20583789:-28417720 +) +) +g1,19977:28691027,20583789 +) +) +) +g1,19978:28690151,20583789 +k1,19978:32583029,20583789:3892878 +) +v1,19985:6630773,21448869:0,393216,0 +(1,19986:6630773,24468254:25952256,3412601,0 +g1,19986:6630773,24468254 +g1,19986:6237557,24468254 +r1,20019:6368629,24468254:131072,3412601,0 +g1,19986:6567858,24468254 +g1,19986:6764466,24468254 +[1,19986:6764466,24468254:25818563,3412601,0 +(1,19986:6764466,21757167:25818563,701514,196608 +(1,19985:6764466,21757167:0,701514,196608 +r1,20019:7761522,21757167:997056,898122,196608 +k1,19985:6764466,21757167:-997056 +) +(1,19985:6764466,21757167:997056,701514,196608 +) +k1,19985:7948606,21757167:187084 +k1,19985:8276286,21757167:327680 +k1,19985:8933263,21757167:187084 +k1,19985:9651844,21757167:187084 +k1,19985:12468889,21757167:187085 +k1,19985:13307401,21757167:187084 +k1,19985:14586970,21757167:187084 +k1,19985:18749468,21757167:187084 +k1,19985:21962349,21757167:187084 +k1,19985:24476616,21757167:187084 +k1,19985:25322993,21757167:187085 +k1,19985:26529162,21757167:187084 +k1,19985:29742043,21757167:187084 +k1,19985:32583029,21757167:0 +) +(1,19986:6764466,22622247:25818563,505283,134348 +k1,19985:7788615,22622247:262621 +k1,19985:10631388,22622247:262621 +k1,19985:13722541,22622247:262620 +k1,19985:16046925,22622247:262621 +k1,19985:17118916,22622247:262621 +k1,19985:19125450,22622247:262621 +k1,19985:20004109,22622247:262621 +k1,19985:22846882,22622247:262621 +k1,19985:25789924,22622247:262620 +k1,19985:29411265,22622247:262621 +k1,19985:31832642,22622247:262621 +k1,19986:32583029,22622247:0 +) +(1,19986:6764466,23487327:25818563,513147,134348 +k1,19985:9734476,23487327:211600 +k1,19985:11050358,23487327:211600 +k1,19985:12009725,23487327:211601 +k1,19985:14426612,23487327:211600 +k1,19985:15289640,23487327:211600 +k1,19985:16520325,23487327:211600 +k1,19985:19722333,23487327:211600 +k1,19985:22629429,23487327:211600 +k1,19985:25399556,23487327:211601 +k1,19985:28891888,23487327:211600 +(1,19985:28891888,23487327:0,459977,122846 +r1,20019:31712137,23487327:2820249,582823,122846 +k1,19985:28891888,23487327:-2820249 +) +(1,19985:28891888,23487327:2820249,459977,122846 +k1,19985:28891888,23487327:3277 +h1,19985:31708860,23487327:0,411205,112570 +) +k1,19985:31923737,23487327:211600 +k1,19986:32583029,23487327:0 +) +(1,19986:6764466,24352407:25818563,452978,115847 +(1,19985:6764466,24352407:0,452978,115847 +r1,20019:11694986,24352407:4930520,568825,115847 +k1,19985:6764466,24352407:-4930520 +) +(1,19985:6764466,24352407:4930520,452978,115847 +k1,19985:6764466,24352407:3277 +h1,19985:11691709,24352407:0,411205,112570 +) +k1,19986:32583030,24352407:20835616 +g1,19986:32583030,24352407 +) +] +g1,19986:32583029,24468254 +) +h1,19986:6630773,24468254:0,0,0 +(1,19989:6630773,25333334:25952256,513147,134348 +h1,19988:6630773,25333334:983040,0,0 +k1,19988:10014099,25333334:214660 +k1,19988:10911644,25333334:214660 +k1,19988:12828274,25333334:214660 +k1,19988:16724747,25333334:214660 +k1,19988:20148050,25333334:214660 +k1,19988:21124239,25333334:214661 +k1,19988:23561880,25333334:214660 +k1,19988:25631209,25333334:214660 +k1,19988:26655239,25333334:214660 +k1,19988:27888984,25333334:214660 +k1,19988:29997634,25333334:214660 +k1,19988:32583029,25333334:0 +) +(1,19989:6630773,26198414:25952256,505283,134348 +k1,19988:7544812,26198414:262611 +k1,19988:8826508,26198414:262611 +(1,19988:8826508,26198414:0,414482,115847 +r1,20019:9184774,26198414:358266,530329,115847 +k1,19988:8826508,26198414:-358266 +) +(1,19988:8826508,26198414:358266,414482,115847 +k1,19988:8826508,26198414:3277 +h1,19988:9181497,26198414:0,411205,112570 +) +k1,19988:9447385,26198414:262611 +k1,19988:12554259,26198414:262611 +(1,19988:12761353,26198414:0,452978,115847 +r1,20019:14526466,26198414:1765113,568825,115847 +k1,19988:12761353,26198414:-1765113 +) +(1,19988:12761353,26198414:1765113,452978,115847 +k1,19988:12761353,26198414:3277 +h1,19988:14523189,26198414:0,411205,112570 +) +k1,19988:14789077,26198414:262611 +k1,19988:15667726,26198414:262611 +k1,19988:17133578,26198414:262611 +k1,19988:20264700,26198414:262611 +k1,19988:21631593,26198414:262611 +k1,19988:22641970,26198414:262611 +k1,19988:25206861,26198414:262611 +k1,19988:26155634,26198414:262611 +k1,19988:29131436,26198414:262611 +k1,19988:30155575,26198414:262611 +k1,19989:32583029,26198414:0 +) +(1,19989:6630773,27063494:25952256,452978,134348 +(1,19988:6630773,27063494:0,452978,115847 +r1,20019:8395886,27063494:1765113,568825,115847 +k1,19988:6630773,27063494:-1765113 +) +(1,19988:6630773,27063494:1765113,452978,115847 +k1,19988:6630773,27063494:3277 +h1,19988:8392609,27063494:0,411205,112570 +) +g1,19988:8595115,27063494 +g1,19988:9480506,27063494 +g1,19988:10450438,27063494 +g1,19988:13721995,27063494 +g1,19988:14572652,27063494 +g1,19988:18052613,27063494 +(1,19988:18052613,27063494:0,414482,122846 +r1,20019:19466014,27063494:1413401,537328,122846 +k1,19988:18052613,27063494:-1413401 +) +(1,19988:18052613,27063494:1413401,414482,122846 +k1,19988:18052613,27063494:3277 +h1,19988:19462737,27063494:0,411205,112570 +) +k1,19989:32583029,27063494:13064587 +g1,19989:32583029,27063494 +) +v1,19991:6630773,27748349:0,393216,0 +(1,19997:6630773,29458742:25952256,2103609,196608 +g1,19997:6630773,29458742 +g1,19997:6630773,29458742 +g1,19997:6434165,29458742 +(1,19997:6434165,29458742:0,2103609,196608 +r1,20019:32779637,29458742:26345472,2300217,196608 +k1,19997:6434165,29458742:-26345472 +) +(1,19997:6434165,29458742:26345472,2103609,196608 +[1,19997:6630773,29458742:25952256,1907001,0 +(1,19993:6630773,27976180:25952256,424439,106246 +(1,19992:6630773,27976180:0,0,0 +g1,19992:6630773,27976180 +g1,19992:6630773,27976180 +g1,19992:6303093,27976180 +(1,19992:6303093,27976180:0,0,0 +) +g1,19992:6630773,27976180 +) +g1,19993:9286405,27976180 +k1,19993:9286405,27976180:0 +h1,19993:9950313,27976180:0,0,0 +k1,19993:32583029,27976180:22632716 +g1,19993:32583029,27976180 +) +(1,19994:6630773,28661035:25952256,424439,112852 +h1,19994:6630773,28661035:0,0,0 +g1,19994:6962727,28661035 +g1,19994:7294681,28661035 +g1,19994:11278129,28661035 +g1,19994:11942037,28661035 +g1,19994:13601807,28661035 +g1,19994:16257439,28661035 +g1,19994:16921347,28661035 +g1,19994:18913071,28661035 +g1,19994:19576979,28661035 +g1,19994:21900657,28661035 +g1,19994:22564565,28661035 +g1,19994:23228473,28661035 +g1,19994:25220197,28661035 +h1,19994:25552151,28661035:0,0,0 +k1,19994:32583029,28661035:7030878 +g1,19994:32583029,28661035 +) +(1,19995:6630773,29345890:25952256,431045,112852 +h1,19995:6630773,29345890:0,0,0 +g1,19995:6962727,29345890 +g1,19995:7294681,29345890 +g1,19995:13269852,29345890 +g1,19995:13933760,29345890 +g1,19995:16257438,29345890 +g1,19995:17585254,29345890 +g1,19995:18249162,29345890 +h1,19995:19908932,29345890:0,0,0 +k1,19995:32583029,29345890:12674097 +g1,19995:32583029,29345890 +) +] +) +g1,19997:32583029,29458742 +g1,19997:6630773,29458742 +g1,19997:6630773,29458742 +g1,19997:32583029,29458742 +g1,19997:32583029,29458742 +) +h1,19997:6630773,29655350:0,0,0 +(1,20001:6630773,30520430:25952256,505283,134348 +h1,20000:6630773,30520430:983040,0,0 +k1,20000:9574787,30520430:330438 +k1,20000:11280170,30520430:330438 +k1,20000:12714890,30520430:330438 +k1,20000:13793094,30520430:330438 +k1,20000:16088957,30520430:330438 +k1,20000:17070822,30520430:330437 +k1,20000:18420345,30520430:330438 +k1,20000:21133672,30520430:330438 +k1,20000:22915077,30520430:330438 +k1,20000:25627749,30520430:330438 +(1,20000:25627749,30520430:0,452978,115847 +r1,20019:30206557,30520430:4578808,568825,115847 +k1,20000:25627749,30520430:-4578808 +) +(1,20000:25627749,30520430:4578808,452978,115847 +g1,20000:29148144,30520430 +g1,20000:29851568,30520430 +h1,20000:30203280,30520430:0,411205,112570 +) +k1,20000:30536995,30520430:330438 +k1,20000:32583029,30520430:0 +) +(1,20001:6630773,31385510:25952256,513147,134348 +k1,20000:7968015,31385510:318157 +k1,20000:9784980,31385510:318157 +k1,20000:10762428,31385510:318156 +k1,20000:12099670,31385510:318157 +k1,20000:14024770,31385510:318157 +k1,20000:15717872,31385510:318157 +k1,20000:18444476,31385510:318156 +k1,20000:19959320,31385510:318157 +k1,20000:22543057,31385510:318157 +k1,20000:25868661,31385510:318157 +k1,20000:26802855,31385510:318156 +(1,20000:26802855,31385510:0,452978,115847 +r1,20019:31733375,31385510:4930520,568825,115847 +k1,20000:26802855,31385510:-4930520 +) +(1,20000:26802855,31385510:4930520,452978,115847 +k1,20000:26802855,31385510:3277 +h1,20000:31730098,31385510:0,411205,112570 +) +k1,20000:32051532,31385510:318157 +k1,20001:32583029,31385510:0 +) +(1,20001:6630773,32250590:25952256,513147,134348 +(1,20000:6630773,32250590:0,452978,122846 +r1,20019:12616428,32250590:5985655,575824,122846 +k1,20000:6630773,32250590:-5985655 +) +(1,20000:6630773,32250590:5985655,452978,122846 +k1,20000:6630773,32250590:3277 +h1,20000:12613151,32250590:0,411205,112570 +) +k1,20000:13111848,32250590:321750 +k1,20000:15861053,32250590:321751 +(1,20000:15861053,32250590:0,452978,122846 +r1,20019:19736437,32250590:3875384,575824,122846 +k1,20000:15861053,32250590:-3875384 +) +(1,20000:15861053,32250590:3875384,452978,122846 +k1,20000:15861053,32250590:3277 +h1,20000:19733160,32250590:0,411205,112570 +) +k1,20000:20058187,32250590:321750 +k1,20000:21066099,32250590:321750 +k1,20000:22158553,32250590:321751 +k1,20000:25552631,32250590:321750 +k1,20000:26822032,32250590:321750 +(1,20000:26822032,32250590:0,414482,122846 +r1,20019:28235433,32250590:1413401,537328,122846 +k1,20000:26822032,32250590:-1413401 +) +(1,20000:26822032,32250590:1413401,414482,122846 +k1,20000:26822032,32250590:3277 +h1,20000:28232156,32250590:0,411205,112570 +) +k1,20000:28557184,32250590:321751 +k1,20000:31563944,32250590:321750 +k1,20000:32583029,32250590:0 +) +(1,20001:6630773,33115670:25952256,513147,134348 +g1,20000:8848511,33115670 +g1,20000:9660502,33115670 +g1,20000:10878816,33115670 +g1,20000:12150214,33115670 +g1,20000:13839076,33115670 +g1,20000:14697597,33115670 +g1,20000:15915911,33115670 +k1,20001:32583029,33115670:15239744 +g1,20001:32583029,33115670 +) +v1,20003:6630773,33800525:0,393216,0 +(1,20009:6630773,35484494:25952256,2077185,196608 +g1,20009:6630773,35484494 +g1,20009:6630773,35484494 +g1,20009:6434165,35484494 +(1,20009:6434165,35484494:0,2077185,196608 +r1,20019:32779637,35484494:26345472,2273793,196608 +k1,20009:6434165,35484494:-26345472 +) +(1,20009:6434165,35484494:26345472,2077185,196608 +[1,20009:6630773,35484494:25952256,1880577,0 +(1,20005:6630773,34028356:25952256,424439,106246 +(1,20004:6630773,34028356:0,0,0 +g1,20004:6630773,34028356 +g1,20004:6630773,34028356 +g1,20004:6303093,34028356 +(1,20004:6303093,34028356:0,0,0 +) +g1,20004:6630773,34028356 +) +g1,20005:9286405,34028356 +h1,20005:9618359,34028356:0,0,0 +k1,20005:32583029,34028356:22964670 +g1,20005:32583029,34028356 +) +(1,20006:6630773,34713211:25952256,431045,112852 +h1,20006:6630773,34713211:0,0,0 +g1,20006:6962727,34713211 +g1,20006:7294681,34713211 +g1,20006:13269852,34713211 +g1,20006:13933760,34713211 +g1,20006:18249161,34713211 +g1,20006:21236746,34713211 +g1,20006:21900654,34713211 +k1,20006:21900654,34713211:0 +h1,20006:27543871,34713211:0,0,0 +k1,20006:32583029,34713211:5039158 +g1,20006:32583029,34713211 +) +(1,20007:6630773,35398066:25952256,424439,86428 +h1,20007:6630773,35398066:0,0,0 +g1,20007:6962727,35398066 +g1,20007:7294681,35398066 +g1,20007:7626635,35398066 +g1,20007:7958589,35398066 +g1,20007:8290543,35398066 +g1,20007:8622497,35398066 +g1,20007:8954451,35398066 +g1,20007:9286405,35398066 +g1,20007:9618359,35398066 +g1,20007:9950313,35398066 +g1,20007:10282267,35398066 +g1,20007:10614221,35398066 +g1,20007:10946175,35398066 +g1,20007:11278129,35398066 +g1,20007:11610083,35398066 +g1,20007:14929622,35398066 +g1,20007:15593530,35398066 +g1,20007:16589392,35398066 +g1,20007:18913070,35398066 +g1,20007:19576978,35398066 +h1,20007:21568702,35398066:0,0,0 +k1,20007:32583029,35398066:11014327 +g1,20007:32583029,35398066 +) +] +) +g1,20009:32583029,35484494 +g1,20009:6630773,35484494 +g1,20009:6630773,35484494 +g1,20009:32583029,35484494 +g1,20009:32583029,35484494 +) +h1,20009:6630773,35681102:0,0,0 +(1,20012:6630773,44830304:25952256,9083666,0 +k1,20012:10523651,44830304:3892878 +h1,20011:10523651,44830304:0,0,0 +(1,20011:10523651,44830304:18166500,9083666,0 +(1,20011:10523651,44830304:18167376,9083688,0 +(1,20011:10523651,44830304:18167376,9083688,0 +(1,20011:10523651,44830304:0,9083688,0 +(1,20011:10523651,44830304:0,14208860,0 +(1,20011:10523651,44830304:28417720,14208860,0 +) +k1,20011:10523651,44830304:-28417720 +) +) +g1,20011:28691027,44830304 +) +) +) +g1,20012:28690151,44830304 +k1,20012:32583029,44830304:3892878 +) +(1,20019:6630773,45695384:25952256,513147,134348 +h1,20018:6630773,45695384:983040,0,0 +k1,20018:10439162,45695384:443115 +(1,20018:10439162,45695384:0,452978,115847 +r1,20019:13962834,45695384:3523672,568825,115847 +k1,20018:10439162,45695384:-3523672 +) +(1,20018:10439162,45695384:3523672,452978,115847 +k1,20018:10439162,45695384:3277 +h1,20018:13959557,45695384:0,411205,112570 +) +k1,20018:14405949,45695384:443115 +k1,20018:17176247,45695384:443115 +k1,20018:18286518,45695384:443115 +(1,20018:18286518,45695384:0,452978,122846 +r1,20019:22161902,45695384:3875384,575824,122846 +k1,20018:18286518,45695384:-3875384 +) +(1,20018:18286518,45695384:3875384,452978,122846 +k1,20018:18286518,45695384:3277 +h1,20018:22158625,45695384:0,411205,112570 +) +k1,20018:22605017,45695384:443115 +k1,20018:23699560,45695384:443115 +(1,20018:23699560,45695384:0,414482,122846 +r1,20019:25112961,45695384:1413401,537328,122846 +k1,20018:23699560,45695384:-1413401 +) +(1,20018:23699560,45695384:1413401,414482,122846 +k1,20018:23699560,45695384:3277 +h1,20018:25109684,45695384:0,411205,112570 +) +k1,20018:25556076,45695384:443115 +k1,20018:28172365,45695384:443115 +k1,20018:29231518,45695384:443115 +k1,20018:32583029,45695384:0 ) ] -(1,20021:32583029,45706769:0,0,0 -g1,20021:32583029,45706769 +(1,20019:32583029,45706769:0,0,0 +g1,20019:32583029,45706769 ) ) ] -(1,20021:6630773,47279633:25952256,0,0 -h1,20021:6630773,47279633:25952256,0,0 +(1,20019:6630773,47279633:25952256,0,0 +h1,20019:6630773,47279633:25952256,0,0 ) ] -(1,20021:4262630,4025873:0,0,0 -[1,20021:-473656,4025873:0,0,0 -(1,20021:-473656,-710413:0,0,0 -(1,20021:-473656,-710413:0,0,0 -g1,20021:-473656,-710413 +(1,20019:4262630,4025873:0,0,0 +[1,20019:-473656,4025873:0,0,0 +(1,20019:-473656,-710413:0,0,0 +(1,20019:-473656,-710413:0,0,0 +g1,20019:-473656,-710413 ) -g1,20021:-473656,-710413 +g1,20019:-473656,-710413 ) ] ) ] !21586 -}334 -Input:3610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3612:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3613:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}335 Input:3614:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3615:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3616:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -349534,1719 +349738,1719 @@ Input:3628:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3629:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3630:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3631:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3632:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3633:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3634:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3635:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2036 -{335 -[1,20075:4262630,47279633:28320399,43253760,0 -(1,20075:4262630,4025873:0,0,0 -[1,20075:-473656,4025873:0,0,0 -(1,20075:-473656,-710413:0,0,0 -(1,20075:-473656,-644877:0,0,0 -k1,20075:-473656,-644877:-65536 +{336 +[1,20073:4262630,47279633:28320399,43253760,0 +(1,20073:4262630,4025873:0,0,0 +[1,20073:-473656,4025873:0,0,0 +(1,20073:-473656,-710413:0,0,0 +(1,20073:-473656,-644877:0,0,0 +k1,20073:-473656,-644877:-65536 ) -(1,20075:-473656,4736287:0,0,0 -k1,20075:-473656,4736287:5209943 +(1,20073:-473656,4736287:0,0,0 +k1,20073:-473656,4736287:5209943 ) -g1,20075:-473656,-710413 +g1,20073:-473656,-710413 ) ] ) -[1,20075:6630773,47279633:25952256,43253760,0 -[1,20075:6630773,4812305:25952256,786432,0 -(1,20075:6630773,4812305:25952256,513147,126483 -(1,20075:6630773,4812305:25952256,513147,126483 -g1,20075:3078558,4812305 -[1,20075:3078558,4812305:0,0,0 -(1,20075:3078558,2439708:0,1703936,0 -k1,20075:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20075:2537886,2439708:1179648,16384,0 +[1,20073:6630773,47279633:25952256,43253760,0 +[1,20073:6630773,4812305:25952256,786432,0 +(1,20073:6630773,4812305:25952256,513147,126483 +(1,20073:6630773,4812305:25952256,513147,126483 +g1,20073:3078558,4812305 +[1,20073:3078558,4812305:0,0,0 +(1,20073:3078558,2439708:0,1703936,0 +k1,20073:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20073:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20075:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20073:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20075:3078558,4812305:0,0,0 -(1,20075:3078558,2439708:0,1703936,0 -g1,20075:29030814,2439708 -g1,20075:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20075:36151628,1915420:16384,1179648,0 +[1,20073:3078558,4812305:0,0,0 +(1,20073:3078558,2439708:0,1703936,0 +g1,20073:29030814,2439708 +g1,20073:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20073:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20075:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20073:37855564,2439708:1179648,16384,0 ) ) -k1,20075:3078556,2439708:-34777008 +k1,20073:3078556,2439708:-34777008 ) ] -[1,20075:3078558,4812305:0,0,0 -(1,20075:3078558,49800853:0,16384,2228224 -k1,20075:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20075:2537886,49800853:1179648,16384,0 +[1,20073:3078558,4812305:0,0,0 +(1,20073:3078558,49800853:0,16384,2228224 +k1,20073:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20073:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20075:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20073:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20075:3078558,4812305:0,0,0 -(1,20075:3078558,49800853:0,16384,2228224 -g1,20075:29030814,49800853 -g1,20075:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20075:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20075:37855564,49800853:1179648,16384,0 -) -) -k1,20075:3078556,49800853:-34777008 -) -] -g1,20075:6630773,4812305 -k1,20075:21386205,4812305:13560055 -g1,20075:21999622,4812305 -g1,20075:25611966,4812305 -g1,20075:28956923,4812305 -g1,20075:29772190,4812305 -) -) -] -[1,20075:6630773,45706769:25952256,40108032,0 -(1,20075:6630773,45706769:25952256,40108032,0 -(1,20075:6630773,45706769:0,0,0 -g1,20075:6630773,45706769 -) -[1,20075:6630773,45706769:25952256,40108032,0 -(1,20021:6630773,6254097:25952256,513147,134348 -k1,20020:9652084,6254097:211782 -k1,20020:11470809,6254097:211782 -k1,20020:13231207,6254097:211782 -k1,20020:16377691,6254097:211782 -k1,20020:17792714,6254097:211782 -k1,20020:19390582,6254097:211782 -k1,20020:20261655,6254097:211781 -k1,20020:22080380,6254097:211782 -k1,20020:23336806,6254097:211782 -k1,20020:24649593,6254097:211782 -k1,20020:26371325,6254097:211782 -k1,20020:29497493,6254097:211782 -k1,20020:30395437,6254097:211782 -k1,20020:32583029,6254097:0 -) -(1,20021:6630773,7119177:25952256,513147,126483 -k1,20020:10726132,7119177:156645 -k1,20020:12985828,7119177:156646 -k1,20020:13793901,7119177:156645 -k1,20020:15558144,7119177:156645 -k1,20020:17640237,7119177:156645 -k1,20020:19771737,7119177:156900 -k1,20020:22904373,7119177:156646 -(1,20020:22904373,7119177:0,452978,115847 -r1,20075:24669486,7119177:1765113,568825,115847 -k1,20020:22904373,7119177:-1765113 -) -(1,20020:22904373,7119177:1765113,452978,115847 -k1,20020:22904373,7119177:3277 -h1,20020:24666209,7119177:0,411205,112570 -) -k1,20020:24826131,7119177:156645 -k1,20020:27600939,7119177:156645 -k1,20020:28776669,7119177:156645 -k1,20020:30748007,7119177:156646 -k1,20020:31563944,7119177:156645 -k1,20020:32583029,7119177:0 -) -(1,20021:6630773,7984257:25952256,513147,126483 -g1,20020:8270483,7984257 -g1,20020:9082474,7984257 -g1,20020:10300788,7984257 -g1,20020:12013243,7984257 -g1,20020:12871764,7984257 -g1,20020:14090078,7984257 -g1,20020:15498446,7984257 -k1,20021:32583029,7984257:15657209 -g1,20021:32583029,7984257 -) -(1,20023:6630773,8849337:25952256,513147,126483 -h1,20022:6630773,8849337:983040,0,0 -k1,20022:9557630,8849337:160582 -k1,20022:12947172,8849337:160583 -k1,20022:15118399,8849337:160582 -k1,20022:16226632,8849337:160582 -k1,20022:17406299,8849337:160582 -k1,20022:21075024,8849337:160583 -k1,20022:22227166,8849337:160582 -k1,20022:24722140,8849337:160582 -k1,20022:27666691,8849337:160582 -k1,20022:28443312,8849337:160583 -(1,20022:28443312,8849337:0,452978,115847 -r1,20075:29856713,8849337:1413401,568825,115847 -k1,20022:28443312,8849337:-1413401 -) -(1,20022:28443312,8849337:1413401,452978,115847 -k1,20022:28443312,8849337:3277 -h1,20022:29853436,8849337:0,411205,112570 -) -k1,20022:30190965,8849337:160582 -k1,20023:32583029,8849337:0 -) -(1,20023:6630773,9714417:25952256,513147,134348 -k1,20022:7799435,9714417:149577 -k1,20022:9556611,9714417:149578 -k1,20022:10810470,9714417:149577 -k1,20022:11707814,9714417:149578 -k1,20022:14649225,9714417:149577 -k1,20022:15560331,9714417:149578 -k1,20022:18517470,9714417:149577 -k1,20022:19686132,9714417:149577 -k1,20022:22826118,9714417:149578 -k1,20022:24986340,9714417:149577 -k1,20022:26703539,9714417:149578 -(1,20022:26703539,9714417:0,452978,115847 -r1,20075:28116940,9714417:1413401,568825,115847 -k1,20022:26703539,9714417:-1413401 -) -(1,20022:26703539,9714417:1413401,452978,115847 -k1,20022:26703539,9714417:3277 -h1,20022:28113663,9714417:0,411205,112570 -) -k1,20022:28266517,9714417:149577 -k1,20022:29067523,9714417:149578 -k1,20022:30236185,9714417:149577 -k1,20023:32583029,9714417:0 -) -(1,20023:6630773,10579497:25952256,505283,134348 -k1,20022:7636598,10579497:185969 -(1,20022:7636598,10579497:0,414482,115847 -r1,20075:7994864,10579497:358266,530329,115847 -k1,20022:7636598,10579497:-358266 -) -(1,20022:7636598,10579497:358266,414482,115847 -k1,20022:7636598,10579497:3277 -h1,20022:7991587,10579497:0,411205,112570 -) -k1,20022:8354503,10579497:185969 -(1,20022:8354503,10579497:0,414482,115847 -r1,20075:8712769,10579497:358266,530329,115847 -k1,20022:8354503,10579497:-358266 -) -(1,20022:8354503,10579497:358266,414482,115847 -k1,20022:8354503,10579497:3277 -h1,20022:8709492,10579497:0,411205,112570 -) -k1,20022:9072407,10579497:185968 -(1,20022:9072407,10579497:0,414482,115847 -r1,20075:10485808,10579497:1413401,530329,115847 -k1,20022:9072407,10579497:-1413401 -) -(1,20022:9072407,10579497:1413401,414482,115847 -k1,20022:9072407,10579497:3277 -h1,20022:10482531,10579497:0,411205,112570 -) -k1,20022:10671777,10579497:185969 -k1,20022:12049191,10579497:185969 -(1,20022:12049191,10579497:0,452978,115847 -r1,20075:13462592,10579497:1413401,568825,115847 -k1,20022:12049191,10579497:-1413401 -) -(1,20022:12049191,10579497:1413401,452978,115847 -k1,20022:12049191,10579497:3277 -h1,20022:13459315,10579497:0,411205,112570 -) -k1,20022:13648561,10579497:185969 -k1,20022:15025975,10579497:185969 -k1,20022:16947337,10579497:185969 -k1,20022:18152391,10579497:185969 -(1,20022:18152391,10579497:0,414482,122846 -r1,20075:19917504,10579497:1765113,537328,122846 -k1,20022:18152391,10579497:-1765113 -) -(1,20022:18152391,10579497:1765113,414482,122846 -k1,20022:18152391,10579497:3277 -h1,20022:19914227,10579497:0,411205,112570 -) -k1,20022:20103472,10579497:185968 -(1,20022:20103472,10579497:0,452978,122846 -r1,20075:25385703,10579497:5282231,575824,122846 -k1,20022:20103472,10579497:-5282231 -) -(1,20022:20103472,10579497:5282231,452978,122846 -k1,20022:20103472,10579497:3277 -h1,20022:25382426,10579497:0,411205,112570 -) -k1,20022:25571672,10579497:185969 -k1,20022:26949086,10579497:185969 -(1,20022:26949086,10579497:0,452978,122846 -r1,20075:32583029,10579497:5633943,575824,122846 -k1,20022:26949086,10579497:-5633943 -) -(1,20022:26949086,10579497:5633943,452978,122846 -k1,20022:26949086,10579497:3277 -h1,20022:32579752,10579497:0,411205,112570 -) -k1,20022:32583029,10579497:0 -) -(1,20023:6630773,11444577:25952256,513147,126483 -g1,20022:8197739,11444577 -g1,20022:9905607,11444577 -g1,20022:12370416,11444577 -g1,20022:13517296,11444577 -(1,20022:13517296,11444577:0,414482,115847 -r1,20075:14930697,11444577:1413401,530329,115847 -k1,20022:13517296,11444577:-1413401 -) -(1,20022:13517296,11444577:1413401,414482,115847 -k1,20022:13517296,11444577:3277 -h1,20022:14927420,11444577:0,411205,112570 -) -g1,20022:15303596,11444577 -(1,20022:15303596,11444577:0,452978,115847 -r1,20075:20585827,11444577:5282231,568825,115847 -k1,20022:15303596,11444577:-5282231 -) -(1,20022:15303596,11444577:5282231,452978,115847 -k1,20022:15303596,11444577:3277 -h1,20022:20582550,11444577:0,411205,112570 -) -g1,20022:20958726,11444577 -g1,20022:21809383,11444577 -g1,20022:23205955,11444577 -g1,20022:23761044,11444577 -g1,20022:25237570,11444577 -k1,20023:32583029,11444577:5735240 -g1,20023:32583029,11444577 -) -v1,20025:6630773,12309657:0,393216,0 -(1,20038:6630773,19174761:25952256,7258320,0 -g1,20038:6630773,19174761 -g1,20038:6237557,19174761 -r1,20075:6368629,19174761:131072,7258320,0 -g1,20038:6567858,19174761 -g1,20038:6764466,19174761 -[1,20038:6764466,19174761:25818563,7258320,0 -(1,20026:6764466,12617955:25818563,701514,196608 -(1,20025:6764466,12617955:0,701514,196608 -r1,20075:7761522,12617955:997056,898122,196608 -k1,20025:6764466,12617955:-997056 -) -(1,20025:6764466,12617955:997056,701514,196608 -) -k1,20025:7942027,12617955:180505 -k1,20025:8269707,12617955:327680 -k1,20025:8937781,12617955:180486 -k1,20025:10676077,12617955:180505 -k1,20025:11960864,12617955:180505 -k1,20025:12889134,12617955:180504 -k1,20025:15035064,12617955:180505 -k1,20025:15866997,12617955:180505 -k1,20025:16403362,12617955:180505 -k1,20025:17861164,12617955:180505 -k1,20025:20456014,12617955:180504 -k1,20025:22030470,12617955:180505 -k1,20025:22566835,12617955:180505 -(1,20025:22566835,12617955:0,414482,122846 -r1,20075:23980236,12617955:1413401,537328,122846 -k1,20025:22566835,12617955:-1413401 -) -(1,20025:22566835,12617955:1413401,414482,122846 -k1,20025:22566835,12617955:3277 -h1,20025:23976959,12617955:0,411205,112570 -) -k1,20025:24334411,12617955:180505 -k1,20025:27158638,12617955:180505 -k1,20025:29766596,12617955:180504 -k1,20025:30302961,12617955:180505 -(1,20025:30302961,12617955:0,414482,115847 -r1,20075:31716362,12617955:1413401,530329,115847 -k1,20025:30302961,12617955:-1413401 -) -(1,20025:30302961,12617955:1413401,414482,115847 -k1,20025:30302961,12617955:3277 -h1,20025:31713085,12617955:0,411205,112570 -) -k1,20025:31896867,12617955:180505 -k1,20025:32583029,12617955:0 -) -(1,20026:6764466,13483035:25818563,505283,134348 -k1,20025:7669990,13483035:134821 -k1,20025:10877140,13483035:134822 -k1,20025:11663389,13483035:134821 -k1,20025:12429978,13483035:134822 -k1,20025:13192634,13483035:134821 -k1,20025:14530697,13483035:134822 -k1,20025:16247557,13483035:134821 -k1,20025:16595306,13483035:134757 -k1,20025:18205343,13483035:134822 -k1,20025:20627371,13483035:134821 -k1,20025:23259770,13483035:134822 -k1,20025:24597832,13483035:134821 -k1,20025:28119555,13483035:134822 -k1,20025:30512091,13483035:134821 -k1,20025:32583029,13483035:0 -) -(1,20026:6764466,14348115:25818563,513147,134348 -k1,20025:8613824,14348115:177534 -k1,20025:9857629,14348115:177534 -k1,20025:13323104,14348115:177534 -(1,20025:13323104,14348115:0,452978,115847 -r1,20075:18605335,14348115:5282231,568825,115847 -k1,20025:13323104,14348115:-5282231 -) -(1,20025:13323104,14348115:5282231,452978,115847 -k1,20025:13323104,14348115:3277 -h1,20025:18602058,14348115:0,411205,112570 -) -k1,20025:18956539,14348115:177534 -k1,20025:20153158,14348115:177534 -k1,20025:22051668,14348115:177535 -k1,20025:24668452,14348115:177534 -k1,20025:26042673,14348115:177534 -k1,20025:27392646,14348115:177534 -k1,20025:29066367,14348115:177534 -k1,20025:32583029,14348115:0 -) -(1,20026:6764466,15213195:25818563,505283,126483 -g1,20025:8832126,15213195 -g1,20025:10022915,15213195 -k1,20026:32583028,15213195:19202704 -g1,20026:32583028,15213195 -) -v1,20028:6764466,15898050:0,393216,0 -(1,20036:6764466,18978153:25818563,3473319,196608 -g1,20036:6764466,18978153 -g1,20036:6764466,18978153 -g1,20036:6567858,18978153 -(1,20036:6567858,18978153:0,3473319,196608 -r1,20075:32779637,18978153:26211779,3669927,196608 -k1,20036:6567857,18978153:-26211780 -) -(1,20036:6567858,18978153:26211779,3473319,196608 -[1,20036:6764466,18978153:25818563,3276711,0 -(1,20030:6764466,16125881:25818563,424439,112852 -(1,20029:6764466,16125881:0,0,0 -g1,20029:6764466,16125881 -g1,20029:6764466,16125881 -g1,20029:6436786,16125881 -(1,20029:6436786,16125881:0,0,0 -) -g1,20029:6764466,16125881 -) -k1,20030:6764466,16125881:0 -g1,20030:10747914,16125881 -g1,20030:11411822,16125881 -g1,20030:13071592,16125881 -g1,20030:15727224,16125881 -g1,20030:16391132,16125881 -g1,20030:18382856,16125881 -g1,20030:19046764,16125881 -g1,20030:21370442,16125881 -g1,20030:22034350,16125881 -g1,20030:22698258,16125881 -g1,20030:24689982,16125881 -h1,20030:25021936,16125881:0,0,0 -k1,20030:32583029,16125881:7561093 -g1,20030:32583029,16125881 -) -(1,20031:6764466,16810736:25818563,431045,112852 -h1,20031:6764466,16810736:0,0,0 -g1,20031:7096420,16810736 -g1,20031:7428374,16810736 -g1,20031:12075729,16810736 -g1,20031:12739637,16810736 -g1,20031:16391130,16810736 -g1,20031:17718946,16810736 -g1,20031:18382854,16810736 -h1,20031:20042624,16810736:0,0,0 -k1,20031:32583029,16810736:12540405 -g1,20031:32583029,16810736 -) -(1,20032:6764466,17495591:25818563,0,0 -h1,20032:6764466,17495591:0,0,0 -h1,20032:6764466,17495591:0,0,0 -k1,20032:32583030,17495591:25818564 -g1,20032:32583030,17495591 -) -(1,20033:6764466,18180446:25818563,424439,112852 -h1,20033:6764466,18180446:0,0,0 -g1,20033:10747914,18180446 -g1,20033:11411822,18180446 -g1,20033:13071592,18180446 -g1,20033:15727224,18180446 -g1,20033:16391132,18180446 -g1,20033:18382856,18180446 -g1,20033:19046764,18180446 -g1,20033:21370442,18180446 -g1,20033:22034350,18180446 -g1,20033:22698258,18180446 -g1,20033:24689982,18180446 -h1,20033:25021936,18180446:0,0,0 -k1,20033:32583029,18180446:7561093 -g1,20033:32583029,18180446 -) -(1,20034:6764466,18865301:25818563,431045,112852 -h1,20034:6764466,18865301:0,0,0 -g1,20034:7096420,18865301 -g1,20034:7428374,18865301 -g1,20034:13403545,18865301 -g1,20034:14067453,18865301 -g1,20034:16391131,18865301 -g1,20034:17718947,18865301 -g1,20034:18382855,18865301 -h1,20034:20042625,18865301:0,0,0 -k1,20034:32583029,18865301:12540404 -g1,20034:32583029,18865301 -) -] -) -g1,20036:32583029,18978153 -g1,20036:6764466,18978153 -g1,20036:6764466,18978153 -g1,20036:32583029,18978153 -g1,20036:32583029,18978153 -) -h1,20036:6764466,19174761:0,0,0 -] -g1,20038:32583029,19174761 -) -h1,20038:6630773,19174761:0,0,0 -(1,20042:6630773,21291579:25952256,555811,12975 -(1,20042:6630773,21291579:2450326,534184,12975 -g1,20042:6630773,21291579 -g1,20042:9081099,21291579 -) -g1,20042:13161371,21291579 -g1,20042:14728599,21291579 -k1,20042:32583029,21291579:15225322 -g1,20042:32583029,21291579 -) -(1,20048:6630773,22549875:25952256,513147,134348 -k1,20047:7841223,22549875:168428 -k1,20047:11321840,22549875:168427 -k1,20047:12173153,22549875:168428 -k1,20047:16189199,22549875:168427 -k1,20047:20519163,22549875:168428 -k1,20047:23322793,22549875:168427 -k1,20047:25087678,22549875:168428 -k1,20047:25915397,22549875:168427 -k1,20047:29654226,22549875:168428 -k1,20047:32583029,22549875:0 -) -(1,20048:6630773,23414955:25952256,513147,134348 -k1,20047:8510476,23414955:144310 -k1,20047:9010647,23414955:144311 -k1,20047:10497134,23414955:144310 -k1,20047:13120016,23414955:144310 -k1,20047:13947211,23414955:144310 -k1,20047:16427225,23414955:144311 -k1,20047:17187573,23414955:144310 -k1,20047:17687743,23414955:144310 -k1,20047:19109350,23414955:144310 -k1,20047:19785158,23414955:144311 -k1,20047:21283442,23414955:144310 -k1,20047:24277913,23414955:144310 -k1,20047:27081019,23414955:144310 -k1,20047:28724138,23414955:144311 -k1,20047:30152954,23414955:144310 -k1,20047:32583029,23414955:0 -) -(1,20048:6630773,24280035:25952256,513147,134348 -k1,20047:7170968,24280035:184335 -k1,20047:10968303,24280035:184335 -k1,20047:12344082,24280035:184334 -k1,20047:15214738,24280035:184335 -k1,20047:19008796,24280035:184335 -k1,20047:19852423,24280035:184335 -k1,20047:21055843,24280035:184335 -k1,20047:25245083,24280035:184335 -k1,20047:28051512,24280035:184334 -k1,20047:29734655,24280035:184335 -k1,20047:31773659,24280035:184335 -k1,20047:32583029,24280035:0 -) -(1,20048:6630773,25145115:25952256,513147,126483 -k1,20047:10408792,25145115:168296 -k1,20047:12144710,25145115:168297 -k1,20047:14631014,25145115:168296 -k1,20047:16511767,25145115:168297 -k1,20047:17331491,25145115:168296 -k1,20047:18518872,25145115:168296 -k1,20047:22932591,25145115:168297 -k1,20047:26500239,25145115:168296 -k1,20047:28380992,25145115:168297 -k1,20047:30867296,25145115:168296 -k1,20047:32583029,25145115:0 -) -(1,20048:6630773,26010195:25952256,513147,134348 -k1,20047:9449102,26010195:188369 -k1,20047:10288899,26010195:188369 -k1,20047:12501675,26010195:188369 -k1,20047:13709129,26010195:188369 -k1,20047:16921329,26010195:188369 -k1,20047:17768990,26010195:188369 -k1,20047:18976444,26010195:188369 -k1,20047:22717520,26010195:188369 -k1,20047:23955776,26010195:188369 -k1,20047:26422832,26010195:188369 -h1,20047:27393420,26010195:0,0,0 -k1,20047:27581789,26010195:188369 -k1,20047:28579528,26010195:188369 -k1,20047:30266050,26010195:188369 -h1,20047:31461427,26010195:0,0,0 -k1,20047:31649796,26010195:188369 -k1,20047:32583029,26010195:0 -) -(1,20048:6630773,26875275:25952256,513147,134348 -k1,20047:7178236,26875275:191603 -k1,20047:10979563,26875275:191604 -k1,20047:11830458,26875275:191603 -k1,20047:13041146,26875275:191603 -k1,20047:15220457,26875275:191604 -k1,20047:17346683,26875275:191603 -k1,20047:21124417,26875275:191604 -k1,20047:24758626,26875275:191603 -k1,20047:25969314,26875275:191603 -k1,20047:28685365,26875275:191604 -k1,20047:31966991,26875275:191603 -k1,20047:32583029,26875275:0 -) -(1,20048:6630773,27740355:25952256,505283,7863 -g1,20047:7849087,27740355 -g1,20047:10392539,27740355 -k1,20048:32583030,27740355:19859376 -g1,20048:32583030,27740355 -) -(1,20050:6630773,28605435:25952256,513147,115847 -h1,20049:6630773,28605435:983040,0,0 -k1,20049:9046409,28605435:235909 -(1,20049:9046409,28605435:0,414482,115847 -r1,20075:10459810,28605435:1413401,530329,115847 -k1,20049:9046409,28605435:-1413401 -) -(1,20049:9046409,28605435:1413401,414482,115847 -k1,20049:9046409,28605435:3277 -h1,20049:10456533,28605435:0,411205,112570 -) -k1,20049:10695718,28605435:235908 -(1,20049:10695718,28605435:0,452978,115847 -r1,20075:15274526,28605435:4578808,568825,115847 -k1,20049:10695718,28605435:-4578808 -) -(1,20049:10695718,28605435:4578808,452978,115847 -k1,20049:10695718,28605435:3277 -h1,20049:15271249,28605435:0,411205,112570 -) -k1,20049:15510435,28605435:235909 -k1,20049:16764117,28605435:235908 -k1,20049:17355886,28605435:235909 -k1,20049:20002864,28605435:235908 -k1,20049:21980065,28605435:235909 -k1,20049:22867401,28605435:235908 -k1,20049:27175062,28605435:235909 -k1,20049:28027008,28605435:235908 -k1,20049:29282002,28605435:235909 -k1,20049:30884991,28605435:235908 -k1,20049:32583029,28605435:0 -) -(1,20050:6630773,29470515:25952256,513147,138281 -k1,20049:7788944,29470515:139086 -k1,20049:9830541,29470515:139087 -k1,20049:10917278,29470515:139086 -$1,20049:10917278,29470515 -$1,20049:11419939,29470515 -k1,20049:11559026,29470515:139087 -k1,20049:12889557,29470515:139086 -$1,20049:12889557,29470515 -$1,20049:13441370,29470515 -k1,20049:13580457,29470515:139087 -k1,20049:14711103,29470515:139086 -k1,20049:20095036,29470515:139087 -k1,20049:24857687,29470515:139086 -k1,20049:28004221,29470515:139087 -(1,20049:28004221,29470515:0,452978,122846 -r1,20075:32583029,29470515:4578808,575824,122846 -k1,20049:28004221,29470515:-4578808 -) -(1,20049:28004221,29470515:4578808,452978,122846 -k1,20049:28004221,29470515:3277 -h1,20049:32579752,29470515:0,411205,112570 -) -k1,20049:32583029,29470515:0 -) -(1,20050:6630773,30335595:25952256,513147,134348 -k1,20049:8212308,30335595:158748 -k1,20049:9574297,30335595:158748 -k1,20049:12277809,30335595:158749 -k1,20049:13628002,30335595:158748 -k1,20049:15860309,30335595:158748 -k1,20049:17394658,30335595:158748 -k1,20049:18169445,30335595:158749 -k1,20049:19658574,30335595:158748 -k1,20049:23219951,30335595:158748 -k1,20049:24370259,30335595:158748 -k1,20049:26734295,30335595:158749 -k1,20049:27544471,30335595:158748 -k1,20049:29831828,30335595:158748 -k1,20050:32583029,30335595:0 -) -(1,20050:6630773,31200675:25952256,513147,126483 -k1,20049:7937676,31200675:167232 -k1,20049:8732744,31200675:167233 -k1,20049:9919061,31200675:167232 -k1,20049:11392426,31200675:167232 -k1,20049:14394746,31200675:167233 -(1,20049:14394746,31200675:0,452978,115847 -r1,20075:18973554,31200675:4578808,568825,115847 -k1,20049:14394746,31200675:-4578808 -) -(1,20049:14394746,31200675:4578808,452978,115847 -k1,20049:14394746,31200675:3277 -h1,20049:18970277,31200675:0,411205,112570 -) -k1,20049:19140786,31200675:167232 -k1,20049:20701969,31200675:167232 -k1,20049:21888286,31200675:167232 -k1,20049:24321099,31200675:167233 -k1,20049:27708770,31200675:167232 -k1,20049:28231862,31200675:167232 -k1,20049:30318645,31200675:167233 -k1,20049:31017374,31200675:167232 -k1,20049:32583029,31200675:0 -) -(1,20050:6630773,32065755:25952256,513147,126483 -k1,20049:7490324,32065755:231716 -(1,20049:7490324,32065755:0,452978,115847 -r1,20075:12069132,32065755:4578808,568825,115847 -k1,20049:7490324,32065755:-4578808 -) -(1,20049:7490324,32065755:4578808,452978,115847 -k1,20049:7490324,32065755:3277 -h1,20049:12065855,32065755:0,411205,112570 -) -k1,20049:12300848,32065755:231716 -k1,20049:13551649,32065755:231716 -k1,20049:15169451,32065755:231716 -k1,20049:16060459,32065755:231716 -k1,20049:19512613,32065755:231715 -k1,20049:20427214,32065755:231716 -(1,20049:20427214,32065755:0,452978,115847 -r1,20075:22544039,32065755:2116825,568825,115847 -k1,20049:20427214,32065755:-2116825 -) -(1,20049:20427214,32065755:2116825,452978,115847 -k1,20049:20427214,32065755:3277 -h1,20049:22540762,32065755:0,411205,112570 -) -k1,20049:22949425,32065755:231716 -k1,20049:23712638,32065755:231716 -k1,20049:28261211,32065755:231716 -k1,20049:30728360,32065755:231716 -k1,20049:32583029,32065755:0 -) -(1,20050:6630773,32930835:25952256,513147,134348 -k1,20049:7599244,32930835:159101 -k1,20049:8777430,32930835:159101 -k1,20049:11422312,32930835:159101 -k1,20049:12240705,32930835:159101 -k1,20049:16645228,32930835:159101 -k1,20049:17995774,32930835:159101 -k1,20049:19173961,32930835:159102 -k1,20049:21358124,32930835:159101 -k1,20049:24468967,32930835:159101 -k1,20049:25389596,32930835:159101 -k1,20049:25904557,32930835:159101 -k1,20049:28942655,32930835:159101 -k1,20049:29729591,32930835:159101 -k1,20049:32583029,32930835:0 -) -(1,20050:6630773,33795915:25952256,513147,138281 -k1,20049:7825683,33795915:175825 -(1,20049:7825683,33795915:0,459977,115847 -r1,20075:10294220,33795915:2468537,575824,115847 -k1,20049:7825683,33795915:-2468537 -) -(1,20049:7825683,33795915:2468537,459977,115847 -k1,20049:7825683,33795915:3277 -h1,20049:10290943,33795915:0,411205,112570 -) -k1,20049:10470045,33795915:175825 -k1,20049:12267886,33795915:175825 -k1,20049:13191476,33795915:175824 -k1,20049:15335347,33795915:175825 -k1,20049:17246565,33795915:175825 -k1,20049:18441475,33795915:175825 -k1,20049:20685616,33795915:175825 -k1,20049:21520733,33795915:175825 -k1,20049:22715643,33795915:175825 -$1,20049:22715643,33795915 -$1,20049:23218304,33795915 -k1,20049:23394129,33795915:175825 -k1,20049:24761398,33795915:175824 -$1,20049:24761398,33795915 -$1,20049:25313211,33795915 -k1,20049:25489036,33795915:175825 -k1,20049:29013095,33795915:175825 -k1,20049:31140582,33795915:175825 -k1,20049:32583029,33795915:0 -) -(1,20050:6630773,34660995:25952256,513147,134348 -k1,20049:7902726,34660995:252868 -k1,20049:10590912,34660995:252868 -k1,20049:12912096,34660995:252868 -k1,20049:13824256,34660995:252868 -k1,20049:15096209,34660995:252868 -k1,20049:18190718,34660995:252868 -k1,20049:21202652,34660995:252868 -k1,20049:22525068,34660995:252868 -k1,20049:23393974,34660995:252868 -k1,20049:24850083,34660995:252868 -k1,20049:27764368,34660995:252868 -k1,20049:29083507,34660995:252868 -k1,20049:30845014,34660995:252868 -k1,20049:32583029,34660995:0 -) -(1,20050:6630773,35526075:25952256,513147,134348 -k1,20049:7438316,35526075:191505 -k1,20049:8648905,35526075:191504 -(1,20049:8648905,35526075:0,414482,115847 -r1,20075:10765730,35526075:2116825,530329,115847 -k1,20049:8648905,35526075:-2116825 -) -(1,20049:8648905,35526075:2116825,414482,115847 -k1,20049:8648905,35526075:3277 -h1,20049:10762453,35526075:0,411205,112570 -) -k1,20049:10957235,35526075:191505 -k1,20049:12538102,35526075:191504 -k1,20049:14779573,35526075:191505 -k1,20049:17245832,35526075:191504 -k1,20049:18428897,35526075:191505 -k1,20049:21710425,35526075:191505 -k1,20049:22517967,35526075:191504 -k1,20049:24988159,35526075:191505 -h1,20049:26357206,35526075:0,0,0 -k1,20049:26548710,35526075:191504 -k1,20049:27549585,35526075:191505 -k1,20049:29239242,35526075:191504 -h1,20049:30434619,35526075:0,0,0 -k1,20049:30799794,35526075:191505 -k1,20049:32583029,35526075:0 -) -(1,20050:6630773,36391155:25952256,505283,134348 -k1,20049:8342514,36391155:203102 -k1,20049:10262003,36391155:203101 -k1,20049:12825712,36391155:203102 -k1,20049:15514595,36391155:203102 -k1,20049:17763731,36391155:203102 -k1,20049:18424929,36391155:203101 -k1,20049:21431661,36391155:203102 -k1,20049:25706515,36391155:203102 -k1,20049:26901177,36391155:203102 -k1,20049:29391485,36391155:203101 -k1,20049:31896867,36391155:203102 -k1,20049:32583029,36391155:0 -) -(1,20050:6630773,37256235:25952256,513147,134348 -k1,20049:8852141,37256235:202859 -k1,20049:11735423,37256235:202859 -k1,20049:13332233,37256235:202859 -k1,20049:14554177,37256235:202859 -k1,20049:17977475,37256235:202859 -k1,20049:19377021,37256235:202859 -k1,20049:23651631,37256235:202858 -k1,20049:24958772,37256235:202859 -k1,20049:25909397,37256235:202859 -k1,20049:28414536,37256235:202859 -k1,20049:29426765,37256235:202859 -k1,20049:30701793,37256235:202859 -k1,20049:31563944,37256235:202859 -k1,20049:32583029,37256235:0 -) -(1,20050:6630773,38121315:25952256,513147,126483 -g1,20049:9876771,38121315 -g1,20049:10758885,38121315 -g1,20049:11977199,38121315 -g1,20049:15223197,38121315 -g1,20049:16231796,38121315 -g1,20049:17503194,38121315 -g1,20049:18361715,38121315 -g1,20049:19580029,38121315 -g1,20049:24024680,38121315 -g1,20049:24910071,38121315 -g1,20049:26686752,38121315 -k1,20050:32583029,38121315:4445966 -g1,20050:32583029,38121315 -) -v1,20052:6630773,38806170:0,393216,0 -(1,20058:6630773,40500047:25952256,2087093,196608 -g1,20058:6630773,40500047 -g1,20058:6630773,40500047 -g1,20058:6434165,40500047 -(1,20058:6434165,40500047:0,2087093,196608 -r1,20075:32779637,40500047:26345472,2283701,196608 -k1,20058:6434165,40500047:-26345472 -) -(1,20058:6434165,40500047:26345472,2087093,196608 -[1,20058:6630773,40500047:25952256,1890485,0 -(1,20054:6630773,39017485:25952256,407923,106246 -(1,20053:6630773,39017485:0,0,0 -g1,20053:6630773,39017485 -g1,20053:6630773,39017485 -g1,20053:6303093,39017485 -(1,20053:6303093,39017485:0,0,0 -) -g1,20053:6630773,39017485 -) -g1,20054:7626635,39017485 -k1,20054:7626635,39017485:0 -h1,20054:8290543,39017485:0,0,0 -k1,20054:32583029,39017485:24292486 -g1,20054:32583029,39017485 -) -(1,20055:6630773,39702340:25952256,424439,112852 -h1,20055:6630773,39702340:0,0,0 -g1,20055:6962727,39702340 -g1,20055:7294681,39702340 -g1,20055:11278129,39702340 -g1,20055:11942037,39702340 -g1,20055:14597669,39702340 -g1,20055:17253301,39702340 -g1,20055:17917209,39702340 -g1,20055:19908933,39702340 -g1,20055:20572841,39702340 -g1,20055:22564565,39702340 -g1,20055:23228473,39702340 -g1,20055:23892381,39702340 -g1,20055:25884105,39702340 -h1,20055:26216059,39702340:0,0,0 -k1,20055:32583029,39702340:6366970 -g1,20055:32583029,39702340 -) -(1,20056:6630773,40387195:25952256,424439,112852 -h1,20056:6630773,40387195:0,0,0 -g1,20056:6962727,40387195 -g1,20056:7294681,40387195 -k1,20056:7294681,40387195:0 -h1,20056:11278128,40387195:0,0,0 -k1,20056:32583028,40387195:21304900 -g1,20056:32583028,40387195 -) -] -) -g1,20058:32583029,40500047 -g1,20058:6630773,40500047 -g1,20058:6630773,40500047 -g1,20058:32583029,40500047 -g1,20058:32583029,40500047 -) -h1,20058:6630773,40696655:0,0,0 -v1,20062:6630773,41381510:0,393216,0 -(1,20066:6630773,41722193:25952256,733899,196608 -g1,20066:6630773,41722193 -g1,20066:6630773,41722193 -g1,20066:6434165,41722193 -(1,20066:6434165,41722193:0,733899,196608 -r1,20075:32779637,41722193:26345472,930507,196608 -k1,20066:6434165,41722193:-26345472 -) -(1,20066:6434165,41722193:26345472,733899,196608 -[1,20066:6630773,41722193:25952256,537291,0 -(1,20064:6630773,41615947:25952256,431045,106246 -(1,20063:6630773,41615947:0,0,0 -g1,20063:6630773,41615947 -g1,20063:6630773,41615947 -g1,20063:6303093,41615947 -(1,20063:6303093,41615947:0,0,0 -) -g1,20063:6630773,41615947 -) -g1,20064:7626635,41615947 -g1,20064:8290543,41615947 -g1,20064:14597668,41615947 -g1,20064:15261576,41615947 -g1,20064:18249162,41615947 -g1,20064:20904794,41615947 -g1,20064:21568702,41615947 -g1,20064:22232610,41615947 -g1,20064:22896518,41615947 -h1,20064:23560426,41615947:0,0,0 -k1,20064:32583029,41615947:9022603 -g1,20064:32583029,41615947 -) -] -) -g1,20066:32583029,41722193 -g1,20066:6630773,41722193 -g1,20066:6630773,41722193 -g1,20066:32583029,41722193 -g1,20066:32583029,41722193 -) -h1,20066:6630773,41918801:0,0,0 -] -(1,20075:32583029,45706769:0,0,0 -g1,20075:32583029,45706769 -) -) -] -(1,20075:6630773,47279633:25952256,0,0 -h1,20075:6630773,47279633:25952256,0,0 -) -] -(1,20075:4262630,4025873:0,0,0 -[1,20075:-473656,4025873:0,0,0 -(1,20075:-473656,-710413:0,0,0 -(1,20075:-473656,-710413:0,0,0 -g1,20075:-473656,-710413 -) -g1,20075:-473656,-710413 +[1,20073:3078558,4812305:0,0,0 +(1,20073:3078558,49800853:0,16384,2228224 +g1,20073:29030814,49800853 +g1,20073:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20073:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20073:37855564,49800853:1179648,16384,0 +) +) +k1,20073:3078556,49800853:-34777008 +) +] +g1,20073:6630773,4812305 +k1,20073:21386205,4812305:13560055 +g1,20073:21999622,4812305 +g1,20073:25611966,4812305 +g1,20073:28956923,4812305 +g1,20073:29772190,4812305 +) +) +] +[1,20073:6630773,45706769:25952256,40108032,0 +(1,20073:6630773,45706769:25952256,40108032,0 +(1,20073:6630773,45706769:0,0,0 +g1,20073:6630773,45706769 +) +[1,20073:6630773,45706769:25952256,40108032,0 +(1,20019:6630773,6254097:25952256,513147,134348 +k1,20018:9652084,6254097:211782 +k1,20018:11470809,6254097:211782 +k1,20018:13231207,6254097:211782 +k1,20018:16377691,6254097:211782 +k1,20018:17792714,6254097:211782 +k1,20018:19390582,6254097:211782 +k1,20018:20261655,6254097:211781 +k1,20018:22080380,6254097:211782 +k1,20018:23336806,6254097:211782 +k1,20018:24649593,6254097:211782 +k1,20018:26371325,6254097:211782 +k1,20018:29497493,6254097:211782 +k1,20018:30395437,6254097:211782 +k1,20018:32583029,6254097:0 +) +(1,20019:6630773,7119177:25952256,513147,126483 +k1,20018:10726132,7119177:156645 +k1,20018:12985828,7119177:156646 +k1,20018:13793901,7119177:156645 +k1,20018:15558144,7119177:156645 +k1,20018:17640237,7119177:156645 +k1,20018:19771737,7119177:156900 +k1,20018:22904373,7119177:156646 +(1,20018:22904373,7119177:0,452978,115847 +r1,20073:24669486,7119177:1765113,568825,115847 +k1,20018:22904373,7119177:-1765113 +) +(1,20018:22904373,7119177:1765113,452978,115847 +k1,20018:22904373,7119177:3277 +h1,20018:24666209,7119177:0,411205,112570 +) +k1,20018:24826131,7119177:156645 +k1,20018:27600939,7119177:156645 +k1,20018:28776669,7119177:156645 +k1,20018:30748007,7119177:156646 +k1,20018:31563944,7119177:156645 +k1,20018:32583029,7119177:0 +) +(1,20019:6630773,7984257:25952256,513147,126483 +g1,20018:8270483,7984257 +g1,20018:9082474,7984257 +g1,20018:10300788,7984257 +g1,20018:12013243,7984257 +g1,20018:12871764,7984257 +g1,20018:14090078,7984257 +g1,20018:15498446,7984257 +k1,20019:32583029,7984257:15657209 +g1,20019:32583029,7984257 +) +(1,20021:6630773,8849337:25952256,513147,126483 +h1,20020:6630773,8849337:983040,0,0 +k1,20020:9557630,8849337:160582 +k1,20020:12947172,8849337:160583 +k1,20020:15118399,8849337:160582 +k1,20020:16226632,8849337:160582 +k1,20020:17406299,8849337:160582 +k1,20020:21075024,8849337:160583 +k1,20020:22227166,8849337:160582 +k1,20020:24722140,8849337:160582 +k1,20020:27666691,8849337:160582 +k1,20020:28443312,8849337:160583 +(1,20020:28443312,8849337:0,452978,115847 +r1,20073:29856713,8849337:1413401,568825,115847 +k1,20020:28443312,8849337:-1413401 +) +(1,20020:28443312,8849337:1413401,452978,115847 +k1,20020:28443312,8849337:3277 +h1,20020:29853436,8849337:0,411205,112570 +) +k1,20020:30190965,8849337:160582 +k1,20021:32583029,8849337:0 +) +(1,20021:6630773,9714417:25952256,513147,134348 +k1,20020:7799435,9714417:149577 +k1,20020:9556611,9714417:149578 +k1,20020:10810470,9714417:149577 +k1,20020:11707814,9714417:149578 +k1,20020:14649225,9714417:149577 +k1,20020:15560331,9714417:149578 +k1,20020:18517470,9714417:149577 +k1,20020:19686132,9714417:149577 +k1,20020:22826118,9714417:149578 +k1,20020:24986340,9714417:149577 +k1,20020:26703539,9714417:149578 +(1,20020:26703539,9714417:0,452978,115847 +r1,20073:28116940,9714417:1413401,568825,115847 +k1,20020:26703539,9714417:-1413401 +) +(1,20020:26703539,9714417:1413401,452978,115847 +k1,20020:26703539,9714417:3277 +h1,20020:28113663,9714417:0,411205,112570 +) +k1,20020:28266517,9714417:149577 +k1,20020:29067523,9714417:149578 +k1,20020:30236185,9714417:149577 +k1,20021:32583029,9714417:0 +) +(1,20021:6630773,10579497:25952256,505283,134348 +k1,20020:7636598,10579497:185969 +(1,20020:7636598,10579497:0,414482,115847 +r1,20073:7994864,10579497:358266,530329,115847 +k1,20020:7636598,10579497:-358266 +) +(1,20020:7636598,10579497:358266,414482,115847 +k1,20020:7636598,10579497:3277 +h1,20020:7991587,10579497:0,411205,112570 +) +k1,20020:8354503,10579497:185969 +(1,20020:8354503,10579497:0,414482,115847 +r1,20073:8712769,10579497:358266,530329,115847 +k1,20020:8354503,10579497:-358266 +) +(1,20020:8354503,10579497:358266,414482,115847 +k1,20020:8354503,10579497:3277 +h1,20020:8709492,10579497:0,411205,112570 +) +k1,20020:9072407,10579497:185968 +(1,20020:9072407,10579497:0,414482,115847 +r1,20073:10485808,10579497:1413401,530329,115847 +k1,20020:9072407,10579497:-1413401 +) +(1,20020:9072407,10579497:1413401,414482,115847 +k1,20020:9072407,10579497:3277 +h1,20020:10482531,10579497:0,411205,112570 +) +k1,20020:10671777,10579497:185969 +k1,20020:12049191,10579497:185969 +(1,20020:12049191,10579497:0,452978,115847 +r1,20073:13462592,10579497:1413401,568825,115847 +k1,20020:12049191,10579497:-1413401 +) +(1,20020:12049191,10579497:1413401,452978,115847 +k1,20020:12049191,10579497:3277 +h1,20020:13459315,10579497:0,411205,112570 +) +k1,20020:13648561,10579497:185969 +k1,20020:15025975,10579497:185969 +k1,20020:16947337,10579497:185969 +k1,20020:18152391,10579497:185969 +(1,20020:18152391,10579497:0,414482,122846 +r1,20073:19917504,10579497:1765113,537328,122846 +k1,20020:18152391,10579497:-1765113 +) +(1,20020:18152391,10579497:1765113,414482,122846 +k1,20020:18152391,10579497:3277 +h1,20020:19914227,10579497:0,411205,112570 +) +k1,20020:20103472,10579497:185968 +(1,20020:20103472,10579497:0,452978,122846 +r1,20073:25385703,10579497:5282231,575824,122846 +k1,20020:20103472,10579497:-5282231 +) +(1,20020:20103472,10579497:5282231,452978,122846 +k1,20020:20103472,10579497:3277 +h1,20020:25382426,10579497:0,411205,112570 +) +k1,20020:25571672,10579497:185969 +k1,20020:26949086,10579497:185969 +(1,20020:26949086,10579497:0,452978,122846 +r1,20073:32583029,10579497:5633943,575824,122846 +k1,20020:26949086,10579497:-5633943 +) +(1,20020:26949086,10579497:5633943,452978,122846 +k1,20020:26949086,10579497:3277 +h1,20020:32579752,10579497:0,411205,112570 +) +k1,20020:32583029,10579497:0 +) +(1,20021:6630773,11444577:25952256,513147,126483 +g1,20020:8197739,11444577 +g1,20020:9905607,11444577 +g1,20020:12370416,11444577 +g1,20020:13517296,11444577 +(1,20020:13517296,11444577:0,414482,115847 +r1,20073:14930697,11444577:1413401,530329,115847 +k1,20020:13517296,11444577:-1413401 +) +(1,20020:13517296,11444577:1413401,414482,115847 +k1,20020:13517296,11444577:3277 +h1,20020:14927420,11444577:0,411205,112570 +) +g1,20020:15303596,11444577 +(1,20020:15303596,11444577:0,452978,115847 +r1,20073:20585827,11444577:5282231,568825,115847 +k1,20020:15303596,11444577:-5282231 +) +(1,20020:15303596,11444577:5282231,452978,115847 +k1,20020:15303596,11444577:3277 +h1,20020:20582550,11444577:0,411205,112570 +) +g1,20020:20958726,11444577 +g1,20020:21809383,11444577 +g1,20020:23205955,11444577 +g1,20020:23761044,11444577 +g1,20020:25237570,11444577 +k1,20021:32583029,11444577:5735240 +g1,20021:32583029,11444577 +) +v1,20023:6630773,12309657:0,393216,0 +(1,20036:6630773,19174761:25952256,7258320,0 +g1,20036:6630773,19174761 +g1,20036:6237557,19174761 +r1,20073:6368629,19174761:131072,7258320,0 +g1,20036:6567858,19174761 +g1,20036:6764466,19174761 +[1,20036:6764466,19174761:25818563,7258320,0 +(1,20024:6764466,12617955:25818563,701514,196608 +(1,20023:6764466,12617955:0,701514,196608 +r1,20073:7761522,12617955:997056,898122,196608 +k1,20023:6764466,12617955:-997056 +) +(1,20023:6764466,12617955:997056,701514,196608 +) +k1,20023:7942027,12617955:180505 +k1,20023:8269707,12617955:327680 +k1,20023:8937781,12617955:180486 +k1,20023:10676077,12617955:180505 +k1,20023:11960864,12617955:180505 +k1,20023:12889134,12617955:180504 +k1,20023:15035064,12617955:180505 +k1,20023:15866997,12617955:180505 +k1,20023:16403362,12617955:180505 +k1,20023:17861164,12617955:180505 +k1,20023:20456014,12617955:180504 +k1,20023:22030470,12617955:180505 +k1,20023:22566835,12617955:180505 +(1,20023:22566835,12617955:0,414482,122846 +r1,20073:23980236,12617955:1413401,537328,122846 +k1,20023:22566835,12617955:-1413401 +) +(1,20023:22566835,12617955:1413401,414482,122846 +k1,20023:22566835,12617955:3277 +h1,20023:23976959,12617955:0,411205,112570 +) +k1,20023:24334411,12617955:180505 +k1,20023:27158638,12617955:180505 +k1,20023:29766596,12617955:180504 +k1,20023:30302961,12617955:180505 +(1,20023:30302961,12617955:0,414482,115847 +r1,20073:31716362,12617955:1413401,530329,115847 +k1,20023:30302961,12617955:-1413401 +) +(1,20023:30302961,12617955:1413401,414482,115847 +k1,20023:30302961,12617955:3277 +h1,20023:31713085,12617955:0,411205,112570 +) +k1,20023:31896867,12617955:180505 +k1,20023:32583029,12617955:0 +) +(1,20024:6764466,13483035:25818563,505283,134348 +k1,20023:7669990,13483035:134821 +k1,20023:10877140,13483035:134822 +k1,20023:11663389,13483035:134821 +k1,20023:12429978,13483035:134822 +k1,20023:13192634,13483035:134821 +k1,20023:14530697,13483035:134822 +k1,20023:16247557,13483035:134821 +k1,20023:16595306,13483035:134757 +k1,20023:18205343,13483035:134822 +k1,20023:20627371,13483035:134821 +k1,20023:23259770,13483035:134822 +k1,20023:24597832,13483035:134821 +k1,20023:28119555,13483035:134822 +k1,20023:30512091,13483035:134821 +k1,20023:32583029,13483035:0 +) +(1,20024:6764466,14348115:25818563,513147,134348 +k1,20023:8613824,14348115:177534 +k1,20023:9857629,14348115:177534 +k1,20023:13323104,14348115:177534 +(1,20023:13323104,14348115:0,452978,115847 +r1,20073:18605335,14348115:5282231,568825,115847 +k1,20023:13323104,14348115:-5282231 +) +(1,20023:13323104,14348115:5282231,452978,115847 +k1,20023:13323104,14348115:3277 +h1,20023:18602058,14348115:0,411205,112570 +) +k1,20023:18956539,14348115:177534 +k1,20023:20153158,14348115:177534 +k1,20023:22051668,14348115:177535 +k1,20023:24668452,14348115:177534 +k1,20023:26042673,14348115:177534 +k1,20023:27392646,14348115:177534 +k1,20023:29066367,14348115:177534 +k1,20023:32583029,14348115:0 +) +(1,20024:6764466,15213195:25818563,505283,126483 +g1,20023:8832126,15213195 +g1,20023:10022915,15213195 +k1,20024:32583028,15213195:19202704 +g1,20024:32583028,15213195 +) +v1,20026:6764466,15898050:0,393216,0 +(1,20034:6764466,18978153:25818563,3473319,196608 +g1,20034:6764466,18978153 +g1,20034:6764466,18978153 +g1,20034:6567858,18978153 +(1,20034:6567858,18978153:0,3473319,196608 +r1,20073:32779637,18978153:26211779,3669927,196608 +k1,20034:6567857,18978153:-26211780 +) +(1,20034:6567858,18978153:26211779,3473319,196608 +[1,20034:6764466,18978153:25818563,3276711,0 +(1,20028:6764466,16125881:25818563,424439,112852 +(1,20027:6764466,16125881:0,0,0 +g1,20027:6764466,16125881 +g1,20027:6764466,16125881 +g1,20027:6436786,16125881 +(1,20027:6436786,16125881:0,0,0 +) +g1,20027:6764466,16125881 +) +k1,20028:6764466,16125881:0 +g1,20028:10747914,16125881 +g1,20028:11411822,16125881 +g1,20028:13071592,16125881 +g1,20028:15727224,16125881 +g1,20028:16391132,16125881 +g1,20028:18382856,16125881 +g1,20028:19046764,16125881 +g1,20028:21370442,16125881 +g1,20028:22034350,16125881 +g1,20028:22698258,16125881 +g1,20028:24689982,16125881 +h1,20028:25021936,16125881:0,0,0 +k1,20028:32583029,16125881:7561093 +g1,20028:32583029,16125881 +) +(1,20029:6764466,16810736:25818563,431045,112852 +h1,20029:6764466,16810736:0,0,0 +g1,20029:7096420,16810736 +g1,20029:7428374,16810736 +g1,20029:12075729,16810736 +g1,20029:12739637,16810736 +g1,20029:16391130,16810736 +g1,20029:17718946,16810736 +g1,20029:18382854,16810736 +h1,20029:20042624,16810736:0,0,0 +k1,20029:32583029,16810736:12540405 +g1,20029:32583029,16810736 +) +(1,20030:6764466,17495591:25818563,0,0 +h1,20030:6764466,17495591:0,0,0 +h1,20030:6764466,17495591:0,0,0 +k1,20030:32583030,17495591:25818564 +g1,20030:32583030,17495591 +) +(1,20031:6764466,18180446:25818563,424439,112852 +h1,20031:6764466,18180446:0,0,0 +g1,20031:10747914,18180446 +g1,20031:11411822,18180446 +g1,20031:13071592,18180446 +g1,20031:15727224,18180446 +g1,20031:16391132,18180446 +g1,20031:18382856,18180446 +g1,20031:19046764,18180446 +g1,20031:21370442,18180446 +g1,20031:22034350,18180446 +g1,20031:22698258,18180446 +g1,20031:24689982,18180446 +h1,20031:25021936,18180446:0,0,0 +k1,20031:32583029,18180446:7561093 +g1,20031:32583029,18180446 +) +(1,20032:6764466,18865301:25818563,431045,112852 +h1,20032:6764466,18865301:0,0,0 +g1,20032:7096420,18865301 +g1,20032:7428374,18865301 +g1,20032:13403545,18865301 +g1,20032:14067453,18865301 +g1,20032:16391131,18865301 +g1,20032:17718947,18865301 +g1,20032:18382855,18865301 +h1,20032:20042625,18865301:0,0,0 +k1,20032:32583029,18865301:12540404 +g1,20032:32583029,18865301 +) +] +) +g1,20034:32583029,18978153 +g1,20034:6764466,18978153 +g1,20034:6764466,18978153 +g1,20034:32583029,18978153 +g1,20034:32583029,18978153 +) +h1,20034:6764466,19174761:0,0,0 +] +g1,20036:32583029,19174761 +) +h1,20036:6630773,19174761:0,0,0 +(1,20040:6630773,21291579:25952256,555811,12975 +(1,20040:6630773,21291579:2450326,534184,12975 +g1,20040:6630773,21291579 +g1,20040:9081099,21291579 +) +g1,20040:13161371,21291579 +g1,20040:14728599,21291579 +k1,20040:32583029,21291579:15225322 +g1,20040:32583029,21291579 +) +(1,20046:6630773,22549875:25952256,513147,134348 +k1,20045:7841223,22549875:168428 +k1,20045:11321840,22549875:168427 +k1,20045:12173153,22549875:168428 +k1,20045:16189199,22549875:168427 +k1,20045:20519163,22549875:168428 +k1,20045:23322793,22549875:168427 +k1,20045:25087678,22549875:168428 +k1,20045:25915397,22549875:168427 +k1,20045:29654226,22549875:168428 +k1,20045:32583029,22549875:0 +) +(1,20046:6630773,23414955:25952256,513147,134348 +k1,20045:8510476,23414955:144310 +k1,20045:9010647,23414955:144311 +k1,20045:10497134,23414955:144310 +k1,20045:13120016,23414955:144310 +k1,20045:13947211,23414955:144310 +k1,20045:16427225,23414955:144311 +k1,20045:17187573,23414955:144310 +k1,20045:17687743,23414955:144310 +k1,20045:19109350,23414955:144310 +k1,20045:19785158,23414955:144311 +k1,20045:21283442,23414955:144310 +k1,20045:24277913,23414955:144310 +k1,20045:27081019,23414955:144310 +k1,20045:28724138,23414955:144311 +k1,20045:30152954,23414955:144310 +k1,20045:32583029,23414955:0 +) +(1,20046:6630773,24280035:25952256,513147,134348 +k1,20045:7170968,24280035:184335 +k1,20045:10968303,24280035:184335 +k1,20045:12344082,24280035:184334 +k1,20045:15214738,24280035:184335 +k1,20045:19008796,24280035:184335 +k1,20045:19852423,24280035:184335 +k1,20045:21055843,24280035:184335 +k1,20045:25245083,24280035:184335 +k1,20045:28051512,24280035:184334 +k1,20045:29734655,24280035:184335 +k1,20045:31773659,24280035:184335 +k1,20045:32583029,24280035:0 +) +(1,20046:6630773,25145115:25952256,513147,126483 +k1,20045:10408792,25145115:168296 +k1,20045:12144710,25145115:168297 +k1,20045:14631014,25145115:168296 +k1,20045:16511767,25145115:168297 +k1,20045:17331491,25145115:168296 +k1,20045:18518872,25145115:168296 +k1,20045:22932591,25145115:168297 +k1,20045:26500239,25145115:168296 +k1,20045:28380992,25145115:168297 +k1,20045:30867296,25145115:168296 +k1,20045:32583029,25145115:0 +) +(1,20046:6630773,26010195:25952256,513147,134348 +k1,20045:9449102,26010195:188369 +k1,20045:10288899,26010195:188369 +k1,20045:12501675,26010195:188369 +k1,20045:13709129,26010195:188369 +k1,20045:16921329,26010195:188369 +k1,20045:17768990,26010195:188369 +k1,20045:18976444,26010195:188369 +k1,20045:22717520,26010195:188369 +k1,20045:23955776,26010195:188369 +k1,20045:26422832,26010195:188369 +h1,20045:27393420,26010195:0,0,0 +k1,20045:27581789,26010195:188369 +k1,20045:28579528,26010195:188369 +k1,20045:30266050,26010195:188369 +h1,20045:31461427,26010195:0,0,0 +k1,20045:31649796,26010195:188369 +k1,20045:32583029,26010195:0 +) +(1,20046:6630773,26875275:25952256,513147,134348 +k1,20045:7178236,26875275:191603 +k1,20045:10979563,26875275:191604 +k1,20045:11830458,26875275:191603 +k1,20045:13041146,26875275:191603 +k1,20045:15220457,26875275:191604 +k1,20045:17346683,26875275:191603 +k1,20045:21124417,26875275:191604 +k1,20045:24758626,26875275:191603 +k1,20045:25969314,26875275:191603 +k1,20045:28685365,26875275:191604 +k1,20045:31966991,26875275:191603 +k1,20045:32583029,26875275:0 +) +(1,20046:6630773,27740355:25952256,505283,7863 +g1,20045:7849087,27740355 +g1,20045:10392539,27740355 +k1,20046:32583030,27740355:19859376 +g1,20046:32583030,27740355 +) +(1,20048:6630773,28605435:25952256,513147,115847 +h1,20047:6630773,28605435:983040,0,0 +k1,20047:9046409,28605435:235909 +(1,20047:9046409,28605435:0,414482,115847 +r1,20073:10459810,28605435:1413401,530329,115847 +k1,20047:9046409,28605435:-1413401 +) +(1,20047:9046409,28605435:1413401,414482,115847 +k1,20047:9046409,28605435:3277 +h1,20047:10456533,28605435:0,411205,112570 +) +k1,20047:10695718,28605435:235908 +(1,20047:10695718,28605435:0,452978,115847 +r1,20073:15274526,28605435:4578808,568825,115847 +k1,20047:10695718,28605435:-4578808 +) +(1,20047:10695718,28605435:4578808,452978,115847 +k1,20047:10695718,28605435:3277 +h1,20047:15271249,28605435:0,411205,112570 +) +k1,20047:15510435,28605435:235909 +k1,20047:16764117,28605435:235908 +k1,20047:17355886,28605435:235909 +k1,20047:20002864,28605435:235908 +k1,20047:21980065,28605435:235909 +k1,20047:22867401,28605435:235908 +k1,20047:27175062,28605435:235909 +k1,20047:28027008,28605435:235908 +k1,20047:29282002,28605435:235909 +k1,20047:30884991,28605435:235908 +k1,20047:32583029,28605435:0 +) +(1,20048:6630773,29470515:25952256,513147,138281 +k1,20047:7788944,29470515:139086 +k1,20047:9830541,29470515:139087 +k1,20047:10917278,29470515:139086 +$1,20047:10917278,29470515 +$1,20047:11419939,29470515 +k1,20047:11559026,29470515:139087 +k1,20047:12889557,29470515:139086 +$1,20047:12889557,29470515 +$1,20047:13441370,29470515 +k1,20047:13580457,29470515:139087 +k1,20047:14711103,29470515:139086 +k1,20047:20095036,29470515:139087 +k1,20047:24857687,29470515:139086 +k1,20047:28004221,29470515:139087 +(1,20047:28004221,29470515:0,452978,122846 +r1,20073:32583029,29470515:4578808,575824,122846 +k1,20047:28004221,29470515:-4578808 +) +(1,20047:28004221,29470515:4578808,452978,122846 +k1,20047:28004221,29470515:3277 +h1,20047:32579752,29470515:0,411205,112570 +) +k1,20047:32583029,29470515:0 +) +(1,20048:6630773,30335595:25952256,513147,134348 +k1,20047:8212308,30335595:158748 +k1,20047:9574297,30335595:158748 +k1,20047:12277809,30335595:158749 +k1,20047:13628002,30335595:158748 +k1,20047:15860309,30335595:158748 +k1,20047:17394658,30335595:158748 +k1,20047:18169445,30335595:158749 +k1,20047:19658574,30335595:158748 +k1,20047:23219951,30335595:158748 +k1,20047:24370259,30335595:158748 +k1,20047:26734295,30335595:158749 +k1,20047:27544471,30335595:158748 +k1,20047:29831828,30335595:158748 +k1,20048:32583029,30335595:0 +) +(1,20048:6630773,31200675:25952256,513147,126483 +k1,20047:7937676,31200675:167232 +k1,20047:8732744,31200675:167233 +k1,20047:9919061,31200675:167232 +k1,20047:11392426,31200675:167232 +k1,20047:14394746,31200675:167233 +(1,20047:14394746,31200675:0,452978,115847 +r1,20073:18973554,31200675:4578808,568825,115847 +k1,20047:14394746,31200675:-4578808 +) +(1,20047:14394746,31200675:4578808,452978,115847 +k1,20047:14394746,31200675:3277 +h1,20047:18970277,31200675:0,411205,112570 +) +k1,20047:19140786,31200675:167232 +k1,20047:20701969,31200675:167232 +k1,20047:21888286,31200675:167232 +k1,20047:24321099,31200675:167233 +k1,20047:27708770,31200675:167232 +k1,20047:28231862,31200675:167232 +k1,20047:30318645,31200675:167233 +k1,20047:31017374,31200675:167232 +k1,20047:32583029,31200675:0 +) +(1,20048:6630773,32065755:25952256,513147,126483 +k1,20047:7490324,32065755:231716 +(1,20047:7490324,32065755:0,452978,115847 +r1,20073:12069132,32065755:4578808,568825,115847 +k1,20047:7490324,32065755:-4578808 +) +(1,20047:7490324,32065755:4578808,452978,115847 +k1,20047:7490324,32065755:3277 +h1,20047:12065855,32065755:0,411205,112570 +) +k1,20047:12300848,32065755:231716 +k1,20047:13551649,32065755:231716 +k1,20047:15169451,32065755:231716 +k1,20047:16060459,32065755:231716 +k1,20047:19512613,32065755:231715 +k1,20047:20427214,32065755:231716 +(1,20047:20427214,32065755:0,452978,115847 +r1,20073:22544039,32065755:2116825,568825,115847 +k1,20047:20427214,32065755:-2116825 +) +(1,20047:20427214,32065755:2116825,452978,115847 +k1,20047:20427214,32065755:3277 +h1,20047:22540762,32065755:0,411205,112570 +) +k1,20047:22949425,32065755:231716 +k1,20047:23712638,32065755:231716 +k1,20047:28261211,32065755:231716 +k1,20047:30728360,32065755:231716 +k1,20047:32583029,32065755:0 +) +(1,20048:6630773,32930835:25952256,513147,134348 +k1,20047:7599244,32930835:159101 +k1,20047:8777430,32930835:159101 +k1,20047:11422312,32930835:159101 +k1,20047:12240705,32930835:159101 +k1,20047:16645228,32930835:159101 +k1,20047:17995774,32930835:159101 +k1,20047:19173961,32930835:159102 +k1,20047:21358124,32930835:159101 +k1,20047:24468967,32930835:159101 +k1,20047:25389596,32930835:159101 +k1,20047:25904557,32930835:159101 +k1,20047:28942655,32930835:159101 +k1,20047:29729591,32930835:159101 +k1,20047:32583029,32930835:0 +) +(1,20048:6630773,33795915:25952256,513147,138281 +k1,20047:7825683,33795915:175825 +(1,20047:7825683,33795915:0,459977,115847 +r1,20073:10294220,33795915:2468537,575824,115847 +k1,20047:7825683,33795915:-2468537 +) +(1,20047:7825683,33795915:2468537,459977,115847 +k1,20047:7825683,33795915:3277 +h1,20047:10290943,33795915:0,411205,112570 +) +k1,20047:10470045,33795915:175825 +k1,20047:12267886,33795915:175825 +k1,20047:13191476,33795915:175824 +k1,20047:15335347,33795915:175825 +k1,20047:17246565,33795915:175825 +k1,20047:18441475,33795915:175825 +k1,20047:20685616,33795915:175825 +k1,20047:21520733,33795915:175825 +k1,20047:22715643,33795915:175825 +$1,20047:22715643,33795915 +$1,20047:23218304,33795915 +k1,20047:23394129,33795915:175825 +k1,20047:24761398,33795915:175824 +$1,20047:24761398,33795915 +$1,20047:25313211,33795915 +k1,20047:25489036,33795915:175825 +k1,20047:29013095,33795915:175825 +k1,20047:31140582,33795915:175825 +k1,20047:32583029,33795915:0 +) +(1,20048:6630773,34660995:25952256,513147,134348 +k1,20047:7902726,34660995:252868 +k1,20047:10590912,34660995:252868 +k1,20047:12912096,34660995:252868 +k1,20047:13824256,34660995:252868 +k1,20047:15096209,34660995:252868 +k1,20047:18190718,34660995:252868 +k1,20047:21202652,34660995:252868 +k1,20047:22525068,34660995:252868 +k1,20047:23393974,34660995:252868 +k1,20047:24850083,34660995:252868 +k1,20047:27764368,34660995:252868 +k1,20047:29083507,34660995:252868 +k1,20047:30845014,34660995:252868 +k1,20047:32583029,34660995:0 +) +(1,20048:6630773,35526075:25952256,513147,134348 +k1,20047:7438316,35526075:191505 +k1,20047:8648905,35526075:191504 +(1,20047:8648905,35526075:0,414482,115847 +r1,20073:10765730,35526075:2116825,530329,115847 +k1,20047:8648905,35526075:-2116825 +) +(1,20047:8648905,35526075:2116825,414482,115847 +k1,20047:8648905,35526075:3277 +h1,20047:10762453,35526075:0,411205,112570 +) +k1,20047:10957235,35526075:191505 +k1,20047:12538102,35526075:191504 +k1,20047:14779573,35526075:191505 +k1,20047:17245832,35526075:191504 +k1,20047:18428897,35526075:191505 +k1,20047:21710425,35526075:191505 +k1,20047:22517967,35526075:191504 +k1,20047:24988159,35526075:191505 +h1,20047:26357206,35526075:0,0,0 +k1,20047:26548710,35526075:191504 +k1,20047:27549585,35526075:191505 +k1,20047:29239242,35526075:191504 +h1,20047:30434619,35526075:0,0,0 +k1,20047:30799794,35526075:191505 +k1,20047:32583029,35526075:0 +) +(1,20048:6630773,36391155:25952256,505283,134348 +k1,20047:8342514,36391155:203102 +k1,20047:10262003,36391155:203101 +k1,20047:12825712,36391155:203102 +k1,20047:15514595,36391155:203102 +k1,20047:17763731,36391155:203102 +k1,20047:18424929,36391155:203101 +k1,20047:21431661,36391155:203102 +k1,20047:25706515,36391155:203102 +k1,20047:26901177,36391155:203102 +k1,20047:29391485,36391155:203101 +k1,20047:31896867,36391155:203102 +k1,20047:32583029,36391155:0 +) +(1,20048:6630773,37256235:25952256,513147,134348 +k1,20047:8852141,37256235:202859 +k1,20047:11735423,37256235:202859 +k1,20047:13332233,37256235:202859 +k1,20047:14554177,37256235:202859 +k1,20047:17977475,37256235:202859 +k1,20047:19377021,37256235:202859 +k1,20047:23651631,37256235:202858 +k1,20047:24958772,37256235:202859 +k1,20047:25909397,37256235:202859 +k1,20047:28414536,37256235:202859 +k1,20047:29426765,37256235:202859 +k1,20047:30701793,37256235:202859 +k1,20047:31563944,37256235:202859 +k1,20047:32583029,37256235:0 +) +(1,20048:6630773,38121315:25952256,513147,126483 +g1,20047:9876771,38121315 +g1,20047:10758885,38121315 +g1,20047:11977199,38121315 +g1,20047:15223197,38121315 +g1,20047:16231796,38121315 +g1,20047:17503194,38121315 +g1,20047:18361715,38121315 +g1,20047:19580029,38121315 +g1,20047:24024680,38121315 +g1,20047:24910071,38121315 +g1,20047:26686752,38121315 +k1,20048:32583029,38121315:4445966 +g1,20048:32583029,38121315 +) +v1,20050:6630773,38806170:0,393216,0 +(1,20056:6630773,40500047:25952256,2087093,196608 +g1,20056:6630773,40500047 +g1,20056:6630773,40500047 +g1,20056:6434165,40500047 +(1,20056:6434165,40500047:0,2087093,196608 +r1,20073:32779637,40500047:26345472,2283701,196608 +k1,20056:6434165,40500047:-26345472 +) +(1,20056:6434165,40500047:26345472,2087093,196608 +[1,20056:6630773,40500047:25952256,1890485,0 +(1,20052:6630773,39017485:25952256,407923,106246 +(1,20051:6630773,39017485:0,0,0 +g1,20051:6630773,39017485 +g1,20051:6630773,39017485 +g1,20051:6303093,39017485 +(1,20051:6303093,39017485:0,0,0 +) +g1,20051:6630773,39017485 +) +g1,20052:7626635,39017485 +k1,20052:7626635,39017485:0 +h1,20052:8290543,39017485:0,0,0 +k1,20052:32583029,39017485:24292486 +g1,20052:32583029,39017485 +) +(1,20053:6630773,39702340:25952256,424439,112852 +h1,20053:6630773,39702340:0,0,0 +g1,20053:6962727,39702340 +g1,20053:7294681,39702340 +g1,20053:11278129,39702340 +g1,20053:11942037,39702340 +g1,20053:14597669,39702340 +g1,20053:17253301,39702340 +g1,20053:17917209,39702340 +g1,20053:19908933,39702340 +g1,20053:20572841,39702340 +g1,20053:22564565,39702340 +g1,20053:23228473,39702340 +g1,20053:23892381,39702340 +g1,20053:25884105,39702340 +h1,20053:26216059,39702340:0,0,0 +k1,20053:32583029,39702340:6366970 +g1,20053:32583029,39702340 +) +(1,20054:6630773,40387195:25952256,424439,112852 +h1,20054:6630773,40387195:0,0,0 +g1,20054:6962727,40387195 +g1,20054:7294681,40387195 +k1,20054:7294681,40387195:0 +h1,20054:11278128,40387195:0,0,0 +k1,20054:32583028,40387195:21304900 +g1,20054:32583028,40387195 +) +] +) +g1,20056:32583029,40500047 +g1,20056:6630773,40500047 +g1,20056:6630773,40500047 +g1,20056:32583029,40500047 +g1,20056:32583029,40500047 +) +h1,20056:6630773,40696655:0,0,0 +v1,20060:6630773,41381510:0,393216,0 +(1,20064:6630773,41722193:25952256,733899,196608 +g1,20064:6630773,41722193 +g1,20064:6630773,41722193 +g1,20064:6434165,41722193 +(1,20064:6434165,41722193:0,733899,196608 +r1,20073:32779637,41722193:26345472,930507,196608 +k1,20064:6434165,41722193:-26345472 +) +(1,20064:6434165,41722193:26345472,733899,196608 +[1,20064:6630773,41722193:25952256,537291,0 +(1,20062:6630773,41615947:25952256,431045,106246 +(1,20061:6630773,41615947:0,0,0 +g1,20061:6630773,41615947 +g1,20061:6630773,41615947 +g1,20061:6303093,41615947 +(1,20061:6303093,41615947:0,0,0 +) +g1,20061:6630773,41615947 +) +g1,20062:7626635,41615947 +g1,20062:8290543,41615947 +g1,20062:14597668,41615947 +g1,20062:15261576,41615947 +g1,20062:18249162,41615947 +g1,20062:20904794,41615947 +g1,20062:21568702,41615947 +g1,20062:22232610,41615947 +g1,20062:22896518,41615947 +h1,20062:23560426,41615947:0,0,0 +k1,20062:32583029,41615947:9022603 +g1,20062:32583029,41615947 +) +] +) +g1,20064:32583029,41722193 +g1,20064:6630773,41722193 +g1,20064:6630773,41722193 +g1,20064:32583029,41722193 +g1,20064:32583029,41722193 +) +h1,20064:6630773,41918801:0,0,0 +] +(1,20073:32583029,45706769:0,0,0 +g1,20073:32583029,45706769 +) +) +] +(1,20073:6630773,47279633:25952256,0,0 +h1,20073:6630773,47279633:25952256,0,0 +) +] +(1,20073:4262630,4025873:0,0,0 +[1,20073:-473656,4025873:0,0,0 +(1,20073:-473656,-710413:0,0,0 +(1,20073:-473656,-710413:0,0,0 +g1,20073:-473656,-710413 +) +g1,20073:-473656,-710413 ) ] ) ] !29930 -}335 -Input:3632:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3633:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3634:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3635:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}336 Input:3636:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3637:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3638:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3639:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3640:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3641:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3642:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3643:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3644:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{336 -[1,20131:4262630,47279633:28320399,43253760,0 -(1,20131:4262630,4025873:0,0,0 -[1,20131:-473656,4025873:0,0,0 -(1,20131:-473656,-710413:0,0,0 -(1,20131:-473656,-644877:0,0,0 -k1,20131:-473656,-644877:-65536 +{337 +[1,20129:4262630,47279633:28320399,43253760,0 +(1,20129:4262630,4025873:0,0,0 +[1,20129:-473656,4025873:0,0,0 +(1,20129:-473656,-710413:0,0,0 +(1,20129:-473656,-644877:0,0,0 +k1,20129:-473656,-644877:-65536 ) -(1,20131:-473656,4736287:0,0,0 -k1,20131:-473656,4736287:5209943 +(1,20129:-473656,4736287:0,0,0 +k1,20129:-473656,4736287:5209943 ) -g1,20131:-473656,-710413 +g1,20129:-473656,-710413 ) ] ) -[1,20131:6630773,47279633:25952256,43253760,0 -[1,20131:6630773,4812305:25952256,786432,0 -(1,20131:6630773,4812305:25952256,485622,11795 -(1,20131:6630773,4812305:25952256,485622,11795 -g1,20131:3078558,4812305 -[1,20131:3078558,4812305:0,0,0 -(1,20131:3078558,2439708:0,1703936,0 -k1,20131:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20131:2537886,2439708:1179648,16384,0 +[1,20129:6630773,47279633:25952256,43253760,0 +[1,20129:6630773,4812305:25952256,786432,0 +(1,20129:6630773,4812305:25952256,485622,11795 +(1,20129:6630773,4812305:25952256,485622,11795 +g1,20129:3078558,4812305 +[1,20129:3078558,4812305:0,0,0 +(1,20129:3078558,2439708:0,1703936,0 +k1,20129:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20129:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20131:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20129:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20131:3078558,4812305:0,0,0 -(1,20131:3078558,2439708:0,1703936,0 -g1,20131:29030814,2439708 -g1,20131:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20131:36151628,1915420:16384,1179648,0 +[1,20129:3078558,4812305:0,0,0 +(1,20129:3078558,2439708:0,1703936,0 +g1,20129:29030814,2439708 +g1,20129:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20129:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20131:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20129:37855564,2439708:1179648,16384,0 ) ) -k1,20131:3078556,2439708:-34777008 +k1,20129:3078556,2439708:-34777008 ) ] -[1,20131:3078558,4812305:0,0,0 -(1,20131:3078558,49800853:0,16384,2228224 -k1,20131:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20131:2537886,49800853:1179648,16384,0 +[1,20129:3078558,4812305:0,0,0 +(1,20129:3078558,49800853:0,16384,2228224 +k1,20129:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20129:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20131:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20129:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20131:3078558,4812305:0,0,0 -(1,20131:3078558,49800853:0,16384,2228224 -g1,20131:29030814,49800853 -g1,20131:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20131:36151628,51504789:16384,1179648,0 +[1,20129:3078558,4812305:0,0,0 +(1,20129:3078558,49800853:0,16384,2228224 +g1,20129:29030814,49800853 +g1,20129:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20129:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20131:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20129:37855564,49800853:1179648,16384,0 ) ) -k1,20131:3078556,49800853:-34777008 +k1,20129:3078556,49800853:-34777008 ) ] -g1,20131:6630773,4812305 -g1,20131:6630773,4812305 -g1,20131:9560887,4812305 -k1,20131:31387651,4812305:21826764 +g1,20129:6630773,4812305 +g1,20129:6630773,4812305 +g1,20129:9560887,4812305 +k1,20129:31387651,4812305:21826764 ) ) ] -[1,20131:6630773,45706769:25952256,40108032,0 -(1,20131:6630773,45706769:25952256,40108032,0 -(1,20131:6630773,45706769:0,0,0 -g1,20131:6630773,45706769 +[1,20129:6630773,45706769:25952256,40108032,0 +(1,20129:6630773,45706769:25952256,40108032,0 +(1,20129:6630773,45706769:0,0,0 +g1,20129:6630773,45706769 ) -[1,20131:6630773,45706769:25952256,40108032,0 -(1,20069:6630773,14682403:25952256,9083666,0 -k1,20069:10523651,14682403:3892878 -h1,20068:10523651,14682403:0,0,0 -(1,20068:10523651,14682403:18166500,9083666,0 -(1,20068:10523651,14682403:18167376,9083688,0 -(1,20068:10523651,14682403:18167376,9083688,0 -(1,20068:10523651,14682403:0,9083688,0 -(1,20068:10523651,14682403:0,14208860,0 -(1,20068:10523651,14682403:28417720,14208860,0 +[1,20129:6630773,45706769:25952256,40108032,0 +(1,20067:6630773,14682403:25952256,9083666,0 +k1,20067:10523651,14682403:3892878 +h1,20066:10523651,14682403:0,0,0 +(1,20066:10523651,14682403:18166500,9083666,0 +(1,20066:10523651,14682403:18167376,9083688,0 +(1,20066:10523651,14682403:18167376,9083688,0 +(1,20066:10523651,14682403:0,9083688,0 +(1,20066:10523651,14682403:0,14208860,0 +(1,20066:10523651,14682403:28417720,14208860,0 ) -k1,20068:10523651,14682403:-28417720 +k1,20066:10523651,14682403:-28417720 ) ) -g1,20068:28691027,14682403 -) -) -) -g1,20069:28690151,14682403 -k1,20069:32583029,14682403:3892878 -) -(1,20076:6630773,15547483:25952256,513147,134348 -h1,20075:6630773,15547483:983040,0,0 -k1,20075:8318683,15547483:217282 -k1,20075:10523689,15547483:217299 -k1,20075:13503332,15547483:217300 -k1,20075:14372060,15547483:217300 -k1,20075:15608445,15547483:217300 -k1,20075:18091325,15547483:217300 -k1,20075:19465334,15547483:217299 -k1,20075:20786916,15547483:217300 -k1,20075:21751982,15547483:217300 -k1,20075:23656179,15547483:217300 -k1,20075:25914270,15547483:217300 -k1,20075:26487429,15547483:217299 -k1,20075:28517455,15547483:217300 -k1,20075:32051532,15547483:217300 -k1,20075:32583029,15547483:0 -) -(1,20076:6630773,16412563:25952256,513147,134348 -g1,20075:8542458,16412563 -g1,20075:10135638,16412563 -(1,20075:10135638,16412563:0,452978,115847 -r1,20131:11549039,16412563:1413401,568825,115847 -k1,20075:10135638,16412563:-1413401 -) -(1,20075:10135638,16412563:1413401,452978,115847 -k1,20075:10135638,16412563:3277 -h1,20075:11545762,16412563:0,411205,112570 -) -g1,20075:11921938,16412563 -g1,20075:14185551,16412563 -g1,20075:15044072,16412563 -g1,20075:17056027,16412563 -g1,20075:19573264,16412563 -g1,20075:20303990,16412563 -g1,20075:23581445,16412563 -g1,20075:24396712,16412563 -g1,20075:26874628,16412563 -h1,20075:27845216,16412563:0,0,0 -g1,20075:28044445,16412563 -g1,20075:29053044,16412563 -g1,20075:30750426,16412563 -h1,20075:31945803,16412563:0,0,0 -k1,20076:32583029,16412563:584798 -g1,20076:32583029,16412563 -) -v1,20078:6630773,17097418:0,393216,0 -(1,20082:6630773,17438101:25952256,733899,196608 -g1,20082:6630773,17438101 -g1,20082:6630773,17438101 -g1,20082:6434165,17438101 -(1,20082:6434165,17438101:0,733899,196608 -r1,20131:32779637,17438101:26345472,930507,196608 -k1,20082:6434165,17438101:-26345472 -) -(1,20082:6434165,17438101:26345472,733899,196608 -[1,20082:6630773,17438101:25952256,537291,0 -(1,20080:6630773,17331855:25952256,431045,106246 -(1,20079:6630773,17331855:0,0,0 -g1,20079:6630773,17331855 -g1,20079:6630773,17331855 -g1,20079:6303093,17331855 -(1,20079:6303093,17331855:0,0,0 -) -g1,20079:6630773,17331855 -) -g1,20080:7626635,17331855 -g1,20080:8290543,17331855 -g1,20080:14597668,17331855 -g1,20080:15261576,17331855 -g1,20080:17253300,17331855 -g1,20080:19908932,17331855 -g1,20080:20572840,17331855 -g1,20080:21236748,17331855 -g1,20080:21900656,17331855 -h1,20080:22564564,17331855:0,0,0 -k1,20080:32583029,17331855:10018465 -g1,20080:32583029,17331855 -) -] -) -g1,20082:32583029,17438101 -g1,20082:6630773,17438101 -g1,20082:6630773,17438101 -g1,20082:32583029,17438101 -g1,20082:32583029,17438101 -) -h1,20082:6630773,17634709:0,0,0 -(1,20086:6630773,18499789:25952256,505283,134348 -h1,20085:6630773,18499789:983040,0,0 -k1,20085:9759878,18499789:271735 -k1,20085:11420976,18499789:271735 -k1,20085:12796993,18499789:271735 -k1,20085:13816493,18499789:271734 -k1,20085:16922660,18499789:271735 -k1,20085:18592278,18499789:271735 -k1,20085:19625541,18499789:271735 -k1,20085:22704838,18499789:271735 -(1,20085:22704838,18499789:0,459977,115847 -r1,20131:26580222,18499789:3875384,575824,115847 -k1,20085:22704838,18499789:-3875384 -) -(1,20085:22704838,18499789:3875384,459977,115847 -k1,20085:22704838,18499789:3277 -h1,20085:26576945,18499789:0,411205,112570 -) -k1,20085:26851957,18499789:271735 -k1,20085:27775119,18499789:271734 -k1,20085:29065939,18499789:271735 -(1,20085:29065939,18499789:0,452978,115847 -r1,20131:31182764,18499789:2116825,568825,115847 -k1,20085:29065939,18499789:-2116825 -) -(1,20085:29065939,18499789:2116825,452978,115847 -k1,20085:29065939,18499789:3277 -h1,20085:31179487,18499789:0,411205,112570 -) -k1,20085:31454499,18499789:271735 -k1,20086:32583029,18499789:0 -) -(1,20086:6630773,19364869:25952256,513147,134348 -k1,20085:8674185,19364869:142868 -k1,20085:10296201,19364869:142868 -k1,20085:12093854,19364869:142869 -k1,20085:14633374,19364869:142868 -k1,20085:16431026,19364869:142868 -k1,20085:19276599,19364869:142868 -k1,20085:21232193,19364869:142868 -k1,20085:25022140,19364869:142868 -k1,20085:26156569,19364869:142869 -k1,20085:28185563,19364869:142868 -k1,20085:29519876,19364869:142868 -k1,20085:32583029,19364869:0 -) -(1,20086:6630773,20229949:25952256,513147,134348 -k1,20085:7462032,20229949:145097 -k1,20085:9261912,20229949:145096 -k1,20085:11885581,20229949:145097 -k1,20085:13703157,20229949:145097 -k1,20085:15323468,20229949:145096 -k1,20085:16625275,20229949:145097 -k1,20085:17938879,20229949:145097 -k1,20085:18615472,20229949:145096 -k1,20085:21781123,20229949:145097 -k1,20085:22687748,20229949:145097 -k1,20085:23188704,20229949:145096 -k1,20085:26771164,20229949:145097 -k1,20085:28508131,20229949:145097 -k1,20085:29600878,20229949:145096 -k1,20085:30765060,20229949:145097 -k1,20085:32583029,20229949:0 -) -(1,20086:6630773,21095029:25952256,513147,7863 -g1,20085:9386561,21095029 -g1,20085:10245082,21095029 -g1,20085:11463396,21095029 -k1,20086:32583028,21095029:19325912 -g1,20086:32583028,21095029 -) -v1,20088:6630773,21779884:0,393216,0 -(1,20093:6630773,22805422:25952256,1418754,196608 -g1,20093:6630773,22805422 -g1,20093:6630773,22805422 -g1,20093:6434165,22805422 -(1,20093:6434165,22805422:0,1418754,196608 -r1,20131:32779637,22805422:26345472,1615362,196608 -k1,20093:6434165,22805422:-26345472 -) -(1,20093:6434165,22805422:26345472,1418754,196608 -[1,20093:6630773,22805422:25952256,1222146,0 -(1,20090:6630773,22014321:25952256,431045,106246 -(1,20089:6630773,22014321:0,0,0 -g1,20089:6630773,22014321 -g1,20089:6630773,22014321 -g1,20089:6303093,22014321 -(1,20089:6303093,22014321:0,0,0 -) -g1,20089:6630773,22014321 -) -g1,20090:7626635,22014321 -g1,20090:8290543,22014321 -g1,20090:11942037,22014321 -g1,20090:12605945,22014321 -g1,20090:16921347,22014321 -h1,20090:17253301,22014321:0,0,0 -k1,20090:32583029,22014321:15329728 -g1,20090:32583029,22014321 -) -(1,20091:6630773,22699176:25952256,431045,106246 -h1,20091:6630773,22699176:0,0,0 -g1,20091:6962727,22699176 -g1,20091:7294681,22699176 -g1,20091:13601806,22699176 -g1,20091:14265714,22699176 -g1,20091:16257438,22699176 -g1,20091:18913070,22699176 -g1,20091:19576978,22699176 -g1,20091:20240886,22699176 -g1,20091:20904794,22699176 -h1,20091:21568702,22699176:0,0,0 -k1,20091:32583029,22699176:11014327 -g1,20091:32583029,22699176 -) -] -) -g1,20093:32583029,22805422 -g1,20093:6630773,22805422 -g1,20093:6630773,22805422 -g1,20093:32583029,22805422 -g1,20093:32583029,22805422 -) -h1,20093:6630773,23002030:0,0,0 -(1,20096:6630773,32151232:25952256,9083666,0 -k1,20096:10523651,32151232:3892878 -h1,20095:10523651,32151232:0,0,0 -(1,20095:10523651,32151232:18166500,9083666,0 -(1,20095:10523651,32151232:18167376,9083688,0 -(1,20095:10523651,32151232:18167376,9083688,0 -(1,20095:10523651,32151232:0,9083688,0 -(1,20095:10523651,32151232:0,14208860,0 -(1,20095:10523651,32151232:28417720,14208860,0 -) -k1,20095:10523651,32151232:-28417720 -) -) -g1,20095:28691027,32151232 -) -) -) -g1,20096:28690151,32151232 -k1,20096:32583029,32151232:3892878 -) -(1,20103:6630773,33016312:25952256,513147,134348 -h1,20102:6630773,33016312:983040,0,0 -k1,20102:8692182,33016312:249339 -k1,20102:10965274,33016312:249340 -k1,20102:11570473,33016312:249339 -k1,20102:13692831,33016312:249339 -k1,20102:15654627,33016312:249340 -k1,20102:19124405,33016312:249339 -k1,20102:19989782,33016312:249339 -k1,20102:21442362,33016312:249339 -k1,20102:23058783,33016312:249340 -k1,20102:23663982,33016312:249339 -k1,20102:25786340,33016312:249339 -k1,20102:27848406,33016312:249340 -k1,20102:31414522,33016312:249339 -k1,20102:32583029,33016312:0 -) -(1,20103:6630773,33881392:25952256,505283,134348 -k1,20102:8855908,33881392:192208 -k1,20102:10067200,33881392:192207 -k1,20102:11914192,33881392:192208 -k1,20102:14503052,33881392:192208 -k1,20102:15714345,33881392:192208 -k1,20102:18789481,33881392:192207 -k1,20102:19597727,33881392:192208 -k1,20102:20809020,33881392:192208 -k1,20102:22559018,33881392:192207 -k1,20102:23958399,33881392:192208 -k1,20102:26832340,33881392:192208 -k1,20102:27786076,33881392:192208 -k1,20102:30785845,33881392:192207 -k1,20102:31333913,33881392:192208 -k1,20103:32583029,33881392:0 -) -(1,20103:6630773,34746472:25952256,505283,126483 -k1,20102:8474466,34746472:228886 -k1,20102:10383694,34746472:228885 -k1,20102:11264008,34746472:228886 -k1,20102:12511979,34746472:228886 -(1,20102:12511979,34746472:0,452978,115847 -r1,20131:14628804,34746472:2116825,568825,115847 -k1,20102:12511979,34746472:-2116825 -) -(1,20102:12511979,34746472:2116825,452978,115847 -k1,20102:12511979,34746472:3277 -h1,20102:14625527,34746472:0,411205,112570 -) -k1,20102:14857689,34746472:228885 -k1,20102:17873821,34746472:228886 -k1,20102:18718745,34746472:228886 -k1,20102:19966716,34746472:228886 -k1,20102:21295295,34746472:228885 -k1,20102:22175609,34746472:228886 -(1,20102:22175609,34746472:0,452978,115847 -r1,20131:26754417,34746472:4578808,568825,115847 -k1,20102:22175609,34746472:-4578808 -) -(1,20102:22175609,34746472:4578808,452978,115847 -k1,20102:22175609,34746472:3277 -h1,20102:26751140,34746472:0,411205,112570 -) -k1,20102:27156973,34746472:228886 -k1,20102:29497428,34746472:228885 -k1,20102:31931601,34746472:228886 -k1,20102:32583029,34746472:0 -) -(1,20103:6630773,35611552:25952256,513147,134348 -k1,20102:7281376,35611552:294743 -k1,20102:9133910,35611552:294743 -k1,20102:12124148,35611552:294742 -k1,20102:13105053,35611552:294743 -k1,20102:16472124,35611552:294743 -k1,20102:19411900,35611552:294743 -k1,20102:20725727,35611552:294742 -k1,20102:23616351,35611552:294743 -k1,20102:24845637,35611552:294743 -k1,20102:25756418,35611552:294743 -(1,20102:25756418,35611552:0,452978,122846 -r1,20131:28576667,35611552:2820249,575824,122846 -k1,20102:25756418,35611552:-2820249 -) -(1,20102:25756418,35611552:2820249,452978,122846 -k1,20102:25756418,35611552:3277 -h1,20102:28573390,35611552:0,411205,112570 -) -k1,20102:29045080,35611552:294743 -k1,20102:30536509,35611552:294742 -k1,20102:31923737,35611552:294743 -k1,20103:32583029,35611552:0 -) -(1,20103:6630773,36476632:25952256,513147,126483 -(1,20102:6630773,36476632:0,452978,115847 -r1,20131:9099310,36476632:2468537,568825,115847 -k1,20102:6630773,36476632:-2468537 -) -(1,20102:6630773,36476632:2468537,452978,115847 -k1,20102:6630773,36476632:3277 -h1,20102:9096033,36476632:0,411205,112570 -) -k1,20102:9316990,36476632:217680 -k1,20102:10066167,36476632:217680 -k1,20102:13253938,36476632:217679 -k1,20102:14603425,36476632:217680 -k1,20102:16523075,36476632:217680 -(1,20102:16523075,36476632:0,452978,115847 -r1,20131:18288188,36476632:1765113,568825,115847 -k1,20102:16523075,36476632:-1765113 -) -(1,20102:16523075,36476632:1765113,452978,115847 -k1,20102:16523075,36476632:3277 -h1,20102:18284911,36476632:0,411205,112570 -) -k1,20102:18505868,36476632:217680 -k1,20102:21805706,36476632:217680 -k1,20102:24161169,36476632:217679 -k1,20102:25030277,36476632:217680 -k1,20102:25662782,36476632:217662 -k1,20102:27649278,36476632:217679 -k1,20102:29342173,36476632:217680 -k1,20102:31069803,36476632:217680 -k1,20102:32583029,36476632:0 -) -(1,20103:6630773,37341712:25952256,505283,7863 -k1,20103:32583029,37341712:23572644 -g1,20103:32583029,37341712 -) -v1,20105:6630773,38026567:0,393216,0 -(1,20110:6630773,39052105:25952256,1418754,196608 -g1,20110:6630773,39052105 -g1,20110:6630773,39052105 -g1,20110:6434165,39052105 -(1,20110:6434165,39052105:0,1418754,196608 -r1,20131:32779637,39052105:26345472,1615362,196608 -k1,20110:6434165,39052105:-26345472 -) -(1,20110:6434165,39052105:26345472,1418754,196608 -[1,20110:6630773,39052105:25952256,1222146,0 -(1,20107:6630773,38261004:25952256,431045,106246 -(1,20106:6630773,38261004:0,0,0 -g1,20106:6630773,38261004 -g1,20106:6630773,38261004 -g1,20106:6303093,38261004 -(1,20106:6303093,38261004:0,0,0 -) -g1,20106:6630773,38261004 -) -g1,20107:7626635,38261004 -g1,20107:8290543,38261004 -g1,20107:11942037,38261004 -g1,20107:12605945,38261004 -g1,20107:16921347,38261004 -h1,20107:17253301,38261004:0,0,0 -k1,20107:32583029,38261004:15329728 -g1,20107:32583029,38261004 -) -(1,20108:6630773,38945859:25952256,431045,106246 -h1,20108:6630773,38945859:0,0,0 -g1,20108:6962727,38945859 -g1,20108:7294681,38945859 -g1,20108:13601806,38945859 -g1,20108:14265714,38945859 -g1,20108:16257438,38945859 -g1,20108:18913070,38945859 -g1,20108:19576978,38945859 -g1,20108:20240886,38945859 -g1,20108:20904794,38945859 -g1,20108:21900656,38945859 -g1,20108:24224334,38945859 -g1,20108:24888242,38945859 -h1,20108:27543874,38945859:0,0,0 -k1,20108:32583029,38945859:5039155 -g1,20108:32583029,38945859 -) -] -) -g1,20110:32583029,39052105 -g1,20110:6630773,39052105 -g1,20110:6630773,39052105 -g1,20110:32583029,39052105 -g1,20110:32583029,39052105 -) -h1,20110:6630773,39248713:0,0,0 -(1,20114:6630773,40113793:25952256,513147,134348 -h1,20113:6630773,40113793:983040,0,0 -k1,20113:8313998,40113793:212597 -k1,20113:11288952,40113793:212611 -k1,20113:13314289,40113793:212611 -k1,20113:15688277,40113793:212611 -k1,20113:16256747,40113793:212610 -k1,20113:18710689,40113793:212611 -k1,20113:21048633,40113793:212611 -k1,20113:24834267,40113793:212611 -k1,20113:25662916,40113793:212611 -k1,20113:27078767,40113793:212610 -k1,20113:30126465,40113793:212611 -k1,20113:30870573,40113793:212611 -k1,20113:32583029,40113793:0 -) -(1,20114:6630773,40978873:25952256,513147,134348 -k1,20113:8734343,40978873:235139 -k1,20113:9731009,40978873:235138 -k1,20113:12393602,40978873:235139 -k1,20113:12984601,40978873:235139 -k1,20113:15982082,40978873:235138 -k1,20113:19289549,40978873:235139 -k1,20113:20176116,40978873:235139 -(1,20113:20176116,40978873:0,459977,115847 -r1,20131:22644653,40978873:2468537,575824,115847 -k1,20113:20176116,40978873:-2468537 -) -(1,20113:20176116,40978873:2468537,459977,115847 -k1,20113:20176116,40978873:3277 -h1,20113:22641376,40978873:0,411205,112570 -) -k1,20113:22879792,40978873:235139 -k1,20113:24557377,40978873:235138 -k1,20113:25408554,40978873:235139 -k1,20113:26662778,40978873:235139 -k1,20113:29559333,40978873:235138 -k1,20113:31649796,40978873:235139 -k1,20113:32583029,40978873:0 -) -(1,20114:6630773,41843953:25952256,505283,134348 -g1,20113:8642728,41843953 -k1,20114:32583029,41843953:20571096 -g1,20114:32583029,41843953 -) -v1,20116:6630773,42528808:0,393216,0 -(1,20121:6630773,43560952:25952256,1425360,196608 -g1,20121:6630773,43560952 -g1,20121:6630773,43560952 -g1,20121:6434165,43560952 -(1,20121:6434165,43560952:0,1425360,196608 -r1,20131:32779637,43560952:26345472,1621968,196608 -k1,20121:6434165,43560952:-26345472 -) -(1,20121:6434165,43560952:26345472,1425360,196608 -[1,20121:6630773,43560952:25952256,1228752,0 -(1,20118:6630773,42763245:25952256,431045,106246 -(1,20117:6630773,42763245:0,0,0 -g1,20117:6630773,42763245 -g1,20117:6630773,42763245 -g1,20117:6303093,42763245 -(1,20117:6303093,42763245:0,0,0 -) -g1,20117:6630773,42763245 -) -g1,20118:7626635,42763245 -g1,20118:8290543,42763245 -g1,20118:11942037,42763245 -g1,20118:12605945,42763245 -g1,20118:16921347,42763245 -h1,20118:17253301,42763245:0,0,0 -k1,20118:32583029,42763245:15329728 -g1,20118:32583029,42763245 -) -(1,20119:6630773,43448100:25952256,431045,112852 -h1,20119:6630773,43448100:0,0,0 -g1,20119:6962727,43448100 -g1,20119:7294681,43448100 -g1,20119:13601806,43448100 -g1,20119:14265714,43448100 -g1,20119:16257438,43448100 -g1,20119:18913070,43448100 -g1,20119:19576978,43448100 -g1,20119:20240886,43448100 -g1,20119:20904794,43448100 -g1,20119:23560426,43448100 -g1,20119:24888242,43448100 -g1,20119:27211920,43448100 -g1,20119:27875828,43448100 -h1,20119:30863413,43448100:0,0,0 -k1,20119:32583029,43448100:1719616 -g1,20119:32583029,43448100 -) -] -) -g1,20121:32583029,43560952 -g1,20121:6630773,43560952 -g1,20121:6630773,43560952 -g1,20121:32583029,43560952 -g1,20121:32583029,43560952 -) -h1,20121:6630773,43757560:0,0,0 -] -(1,20131:32583029,45706769:0,0,0 -g1,20131:32583029,45706769 -) -) -] -(1,20131:6630773,47279633:25952256,0,0 -h1,20131:6630773,47279633:25952256,0,0 -) -] -(1,20131:4262630,4025873:0,0,0 -[1,20131:-473656,4025873:0,0,0 -(1,20131:-473656,-710413:0,0,0 -(1,20131:-473656,-710413:0,0,0 -g1,20131:-473656,-710413 -) -g1,20131:-473656,-710413 +g1,20066:28691027,14682403 +) +) +) +g1,20067:28690151,14682403 +k1,20067:32583029,14682403:3892878 +) +(1,20074:6630773,15547483:25952256,513147,134348 +h1,20073:6630773,15547483:983040,0,0 +k1,20073:8318683,15547483:217282 +k1,20073:10523689,15547483:217299 +k1,20073:13503332,15547483:217300 +k1,20073:14372060,15547483:217300 +k1,20073:15608445,15547483:217300 +k1,20073:18091325,15547483:217300 +k1,20073:19465334,15547483:217299 +k1,20073:20786916,15547483:217300 +k1,20073:21751982,15547483:217300 +k1,20073:23656179,15547483:217300 +k1,20073:25914270,15547483:217300 +k1,20073:26487429,15547483:217299 +k1,20073:28517455,15547483:217300 +k1,20073:32051532,15547483:217300 +k1,20073:32583029,15547483:0 +) +(1,20074:6630773,16412563:25952256,513147,134348 +g1,20073:8542458,16412563 +g1,20073:10135638,16412563 +(1,20073:10135638,16412563:0,452978,115847 +r1,20129:11549039,16412563:1413401,568825,115847 +k1,20073:10135638,16412563:-1413401 +) +(1,20073:10135638,16412563:1413401,452978,115847 +k1,20073:10135638,16412563:3277 +h1,20073:11545762,16412563:0,411205,112570 +) +g1,20073:11921938,16412563 +g1,20073:14185551,16412563 +g1,20073:15044072,16412563 +g1,20073:17056027,16412563 +g1,20073:19573264,16412563 +g1,20073:20303990,16412563 +g1,20073:23581445,16412563 +g1,20073:24396712,16412563 +g1,20073:26874628,16412563 +h1,20073:27845216,16412563:0,0,0 +g1,20073:28044445,16412563 +g1,20073:29053044,16412563 +g1,20073:30750426,16412563 +h1,20073:31945803,16412563:0,0,0 +k1,20074:32583029,16412563:584798 +g1,20074:32583029,16412563 +) +v1,20076:6630773,17097418:0,393216,0 +(1,20080:6630773,17438101:25952256,733899,196608 +g1,20080:6630773,17438101 +g1,20080:6630773,17438101 +g1,20080:6434165,17438101 +(1,20080:6434165,17438101:0,733899,196608 +r1,20129:32779637,17438101:26345472,930507,196608 +k1,20080:6434165,17438101:-26345472 +) +(1,20080:6434165,17438101:26345472,733899,196608 +[1,20080:6630773,17438101:25952256,537291,0 +(1,20078:6630773,17331855:25952256,431045,106246 +(1,20077:6630773,17331855:0,0,0 +g1,20077:6630773,17331855 +g1,20077:6630773,17331855 +g1,20077:6303093,17331855 +(1,20077:6303093,17331855:0,0,0 +) +g1,20077:6630773,17331855 +) +g1,20078:7626635,17331855 +g1,20078:8290543,17331855 +g1,20078:14597668,17331855 +g1,20078:15261576,17331855 +g1,20078:17253300,17331855 +g1,20078:19908932,17331855 +g1,20078:20572840,17331855 +g1,20078:21236748,17331855 +g1,20078:21900656,17331855 +h1,20078:22564564,17331855:0,0,0 +k1,20078:32583029,17331855:10018465 +g1,20078:32583029,17331855 +) +] +) +g1,20080:32583029,17438101 +g1,20080:6630773,17438101 +g1,20080:6630773,17438101 +g1,20080:32583029,17438101 +g1,20080:32583029,17438101 +) +h1,20080:6630773,17634709:0,0,0 +(1,20084:6630773,18499789:25952256,505283,134348 +h1,20083:6630773,18499789:983040,0,0 +k1,20083:9759878,18499789:271735 +k1,20083:11420976,18499789:271735 +k1,20083:12796993,18499789:271735 +k1,20083:13816493,18499789:271734 +k1,20083:16922660,18499789:271735 +k1,20083:18592278,18499789:271735 +k1,20083:19625541,18499789:271735 +k1,20083:22704838,18499789:271735 +(1,20083:22704838,18499789:0,459977,115847 +r1,20129:26580222,18499789:3875384,575824,115847 +k1,20083:22704838,18499789:-3875384 +) +(1,20083:22704838,18499789:3875384,459977,115847 +k1,20083:22704838,18499789:3277 +h1,20083:26576945,18499789:0,411205,112570 +) +k1,20083:26851957,18499789:271735 +k1,20083:27775119,18499789:271734 +k1,20083:29065939,18499789:271735 +(1,20083:29065939,18499789:0,452978,115847 +r1,20129:31182764,18499789:2116825,568825,115847 +k1,20083:29065939,18499789:-2116825 +) +(1,20083:29065939,18499789:2116825,452978,115847 +k1,20083:29065939,18499789:3277 +h1,20083:31179487,18499789:0,411205,112570 +) +k1,20083:31454499,18499789:271735 +k1,20084:32583029,18499789:0 +) +(1,20084:6630773,19364869:25952256,513147,134348 +k1,20083:8674185,19364869:142868 +k1,20083:10296201,19364869:142868 +k1,20083:12093854,19364869:142869 +k1,20083:14633374,19364869:142868 +k1,20083:16431026,19364869:142868 +k1,20083:19276599,19364869:142868 +k1,20083:21232193,19364869:142868 +k1,20083:25022140,19364869:142868 +k1,20083:26156569,19364869:142869 +k1,20083:28185563,19364869:142868 +k1,20083:29519876,19364869:142868 +k1,20083:32583029,19364869:0 +) +(1,20084:6630773,20229949:25952256,513147,134348 +k1,20083:7462032,20229949:145097 +k1,20083:9261912,20229949:145096 +k1,20083:11885581,20229949:145097 +k1,20083:13703157,20229949:145097 +k1,20083:15323468,20229949:145096 +k1,20083:16625275,20229949:145097 +k1,20083:17938879,20229949:145097 +k1,20083:18615472,20229949:145096 +k1,20083:21781123,20229949:145097 +k1,20083:22687748,20229949:145097 +k1,20083:23188704,20229949:145096 +k1,20083:26771164,20229949:145097 +k1,20083:28508131,20229949:145097 +k1,20083:29600878,20229949:145096 +k1,20083:30765060,20229949:145097 +k1,20083:32583029,20229949:0 +) +(1,20084:6630773,21095029:25952256,513147,7863 +g1,20083:9386561,21095029 +g1,20083:10245082,21095029 +g1,20083:11463396,21095029 +k1,20084:32583028,21095029:19325912 +g1,20084:32583028,21095029 +) +v1,20086:6630773,21779884:0,393216,0 +(1,20091:6630773,22805422:25952256,1418754,196608 +g1,20091:6630773,22805422 +g1,20091:6630773,22805422 +g1,20091:6434165,22805422 +(1,20091:6434165,22805422:0,1418754,196608 +r1,20129:32779637,22805422:26345472,1615362,196608 +k1,20091:6434165,22805422:-26345472 +) +(1,20091:6434165,22805422:26345472,1418754,196608 +[1,20091:6630773,22805422:25952256,1222146,0 +(1,20088:6630773,22014321:25952256,431045,106246 +(1,20087:6630773,22014321:0,0,0 +g1,20087:6630773,22014321 +g1,20087:6630773,22014321 +g1,20087:6303093,22014321 +(1,20087:6303093,22014321:0,0,0 +) +g1,20087:6630773,22014321 +) +g1,20088:7626635,22014321 +g1,20088:8290543,22014321 +g1,20088:11942037,22014321 +g1,20088:12605945,22014321 +g1,20088:16921347,22014321 +h1,20088:17253301,22014321:0,0,0 +k1,20088:32583029,22014321:15329728 +g1,20088:32583029,22014321 +) +(1,20089:6630773,22699176:25952256,431045,106246 +h1,20089:6630773,22699176:0,0,0 +g1,20089:6962727,22699176 +g1,20089:7294681,22699176 +g1,20089:13601806,22699176 +g1,20089:14265714,22699176 +g1,20089:16257438,22699176 +g1,20089:18913070,22699176 +g1,20089:19576978,22699176 +g1,20089:20240886,22699176 +g1,20089:20904794,22699176 +h1,20089:21568702,22699176:0,0,0 +k1,20089:32583029,22699176:11014327 +g1,20089:32583029,22699176 +) +] +) +g1,20091:32583029,22805422 +g1,20091:6630773,22805422 +g1,20091:6630773,22805422 +g1,20091:32583029,22805422 +g1,20091:32583029,22805422 +) +h1,20091:6630773,23002030:0,0,0 +(1,20094:6630773,32151232:25952256,9083666,0 +k1,20094:10523651,32151232:3892878 +h1,20093:10523651,32151232:0,0,0 +(1,20093:10523651,32151232:18166500,9083666,0 +(1,20093:10523651,32151232:18167376,9083688,0 +(1,20093:10523651,32151232:18167376,9083688,0 +(1,20093:10523651,32151232:0,9083688,0 +(1,20093:10523651,32151232:0,14208860,0 +(1,20093:10523651,32151232:28417720,14208860,0 +) +k1,20093:10523651,32151232:-28417720 +) +) +g1,20093:28691027,32151232 +) +) +) +g1,20094:28690151,32151232 +k1,20094:32583029,32151232:3892878 +) +(1,20101:6630773,33016312:25952256,513147,134348 +h1,20100:6630773,33016312:983040,0,0 +k1,20100:8692182,33016312:249339 +k1,20100:10965274,33016312:249340 +k1,20100:11570473,33016312:249339 +k1,20100:13692831,33016312:249339 +k1,20100:15654627,33016312:249340 +k1,20100:19124405,33016312:249339 +k1,20100:19989782,33016312:249339 +k1,20100:21442362,33016312:249339 +k1,20100:23058783,33016312:249340 +k1,20100:23663982,33016312:249339 +k1,20100:25786340,33016312:249339 +k1,20100:27848406,33016312:249340 +k1,20100:31414522,33016312:249339 +k1,20100:32583029,33016312:0 +) +(1,20101:6630773,33881392:25952256,505283,134348 +k1,20100:8855908,33881392:192208 +k1,20100:10067200,33881392:192207 +k1,20100:11914192,33881392:192208 +k1,20100:14503052,33881392:192208 +k1,20100:15714345,33881392:192208 +k1,20100:18789481,33881392:192207 +k1,20100:19597727,33881392:192208 +k1,20100:20809020,33881392:192208 +k1,20100:22559018,33881392:192207 +k1,20100:23958399,33881392:192208 +k1,20100:26832340,33881392:192208 +k1,20100:27786076,33881392:192208 +k1,20100:30785845,33881392:192207 +k1,20100:31333913,33881392:192208 +k1,20101:32583029,33881392:0 +) +(1,20101:6630773,34746472:25952256,505283,126483 +k1,20100:8474466,34746472:228886 +k1,20100:10383694,34746472:228885 +k1,20100:11264008,34746472:228886 +k1,20100:12511979,34746472:228886 +(1,20100:12511979,34746472:0,452978,115847 +r1,20129:14628804,34746472:2116825,568825,115847 +k1,20100:12511979,34746472:-2116825 +) +(1,20100:12511979,34746472:2116825,452978,115847 +k1,20100:12511979,34746472:3277 +h1,20100:14625527,34746472:0,411205,112570 +) +k1,20100:14857689,34746472:228885 +k1,20100:17873821,34746472:228886 +k1,20100:18718745,34746472:228886 +k1,20100:19966716,34746472:228886 +k1,20100:21295295,34746472:228885 +k1,20100:22175609,34746472:228886 +(1,20100:22175609,34746472:0,452978,115847 +r1,20129:26754417,34746472:4578808,568825,115847 +k1,20100:22175609,34746472:-4578808 +) +(1,20100:22175609,34746472:4578808,452978,115847 +k1,20100:22175609,34746472:3277 +h1,20100:26751140,34746472:0,411205,112570 +) +k1,20100:27156973,34746472:228886 +k1,20100:29497428,34746472:228885 +k1,20100:31931601,34746472:228886 +k1,20100:32583029,34746472:0 +) +(1,20101:6630773,35611552:25952256,513147,134348 +k1,20100:7281376,35611552:294743 +k1,20100:9133910,35611552:294743 +k1,20100:12124148,35611552:294742 +k1,20100:13105053,35611552:294743 +k1,20100:16472124,35611552:294743 +k1,20100:19411900,35611552:294743 +k1,20100:20725727,35611552:294742 +k1,20100:23616351,35611552:294743 +k1,20100:24845637,35611552:294743 +k1,20100:25756418,35611552:294743 +(1,20100:25756418,35611552:0,452978,122846 +r1,20129:28576667,35611552:2820249,575824,122846 +k1,20100:25756418,35611552:-2820249 +) +(1,20100:25756418,35611552:2820249,452978,122846 +k1,20100:25756418,35611552:3277 +h1,20100:28573390,35611552:0,411205,112570 +) +k1,20100:29045080,35611552:294743 +k1,20100:30536509,35611552:294742 +k1,20100:31923737,35611552:294743 +k1,20101:32583029,35611552:0 +) +(1,20101:6630773,36476632:25952256,513147,126483 +(1,20100:6630773,36476632:0,452978,115847 +r1,20129:9099310,36476632:2468537,568825,115847 +k1,20100:6630773,36476632:-2468537 +) +(1,20100:6630773,36476632:2468537,452978,115847 +k1,20100:6630773,36476632:3277 +h1,20100:9096033,36476632:0,411205,112570 +) +k1,20100:9316990,36476632:217680 +k1,20100:10066167,36476632:217680 +k1,20100:13253938,36476632:217679 +k1,20100:14603425,36476632:217680 +k1,20100:16523075,36476632:217680 +(1,20100:16523075,36476632:0,452978,115847 +r1,20129:18288188,36476632:1765113,568825,115847 +k1,20100:16523075,36476632:-1765113 +) +(1,20100:16523075,36476632:1765113,452978,115847 +k1,20100:16523075,36476632:3277 +h1,20100:18284911,36476632:0,411205,112570 +) +k1,20100:18505868,36476632:217680 +k1,20100:21805706,36476632:217680 +k1,20100:24161169,36476632:217679 +k1,20100:25030277,36476632:217680 +k1,20100:25662782,36476632:217662 +k1,20100:27649278,36476632:217679 +k1,20100:29342173,36476632:217680 +k1,20100:31069803,36476632:217680 +k1,20100:32583029,36476632:0 +) +(1,20101:6630773,37341712:25952256,505283,7863 +k1,20101:32583029,37341712:23572644 +g1,20101:32583029,37341712 +) +v1,20103:6630773,38026567:0,393216,0 +(1,20108:6630773,39052105:25952256,1418754,196608 +g1,20108:6630773,39052105 +g1,20108:6630773,39052105 +g1,20108:6434165,39052105 +(1,20108:6434165,39052105:0,1418754,196608 +r1,20129:32779637,39052105:26345472,1615362,196608 +k1,20108:6434165,39052105:-26345472 +) +(1,20108:6434165,39052105:26345472,1418754,196608 +[1,20108:6630773,39052105:25952256,1222146,0 +(1,20105:6630773,38261004:25952256,431045,106246 +(1,20104:6630773,38261004:0,0,0 +g1,20104:6630773,38261004 +g1,20104:6630773,38261004 +g1,20104:6303093,38261004 +(1,20104:6303093,38261004:0,0,0 +) +g1,20104:6630773,38261004 +) +g1,20105:7626635,38261004 +g1,20105:8290543,38261004 +g1,20105:11942037,38261004 +g1,20105:12605945,38261004 +g1,20105:16921347,38261004 +h1,20105:17253301,38261004:0,0,0 +k1,20105:32583029,38261004:15329728 +g1,20105:32583029,38261004 +) +(1,20106:6630773,38945859:25952256,431045,106246 +h1,20106:6630773,38945859:0,0,0 +g1,20106:6962727,38945859 +g1,20106:7294681,38945859 +g1,20106:13601806,38945859 +g1,20106:14265714,38945859 +g1,20106:16257438,38945859 +g1,20106:18913070,38945859 +g1,20106:19576978,38945859 +g1,20106:20240886,38945859 +g1,20106:20904794,38945859 +g1,20106:21900656,38945859 +g1,20106:24224334,38945859 +g1,20106:24888242,38945859 +h1,20106:27543874,38945859:0,0,0 +k1,20106:32583029,38945859:5039155 +g1,20106:32583029,38945859 +) +] +) +g1,20108:32583029,39052105 +g1,20108:6630773,39052105 +g1,20108:6630773,39052105 +g1,20108:32583029,39052105 +g1,20108:32583029,39052105 +) +h1,20108:6630773,39248713:0,0,0 +(1,20112:6630773,40113793:25952256,513147,134348 +h1,20111:6630773,40113793:983040,0,0 +k1,20111:8313998,40113793:212597 +k1,20111:11288952,40113793:212611 +k1,20111:13314289,40113793:212611 +k1,20111:15688277,40113793:212611 +k1,20111:16256747,40113793:212610 +k1,20111:18710689,40113793:212611 +k1,20111:21048633,40113793:212611 +k1,20111:24834267,40113793:212611 +k1,20111:25662916,40113793:212611 +k1,20111:27078767,40113793:212610 +k1,20111:30126465,40113793:212611 +k1,20111:30870573,40113793:212611 +k1,20111:32583029,40113793:0 +) +(1,20112:6630773,40978873:25952256,513147,134348 +k1,20111:8734343,40978873:235139 +k1,20111:9731009,40978873:235138 +k1,20111:12393602,40978873:235139 +k1,20111:12984601,40978873:235139 +k1,20111:15982082,40978873:235138 +k1,20111:19289549,40978873:235139 +k1,20111:20176116,40978873:235139 +(1,20111:20176116,40978873:0,459977,115847 +r1,20129:22644653,40978873:2468537,575824,115847 +k1,20111:20176116,40978873:-2468537 +) +(1,20111:20176116,40978873:2468537,459977,115847 +k1,20111:20176116,40978873:3277 +h1,20111:22641376,40978873:0,411205,112570 +) +k1,20111:22879792,40978873:235139 +k1,20111:24557377,40978873:235138 +k1,20111:25408554,40978873:235139 +k1,20111:26662778,40978873:235139 +k1,20111:29559333,40978873:235138 +k1,20111:31649796,40978873:235139 +k1,20111:32583029,40978873:0 +) +(1,20112:6630773,41843953:25952256,505283,134348 +g1,20111:8642728,41843953 +k1,20112:32583029,41843953:20571096 +g1,20112:32583029,41843953 +) +v1,20114:6630773,42528808:0,393216,0 +(1,20119:6630773,43560952:25952256,1425360,196608 +g1,20119:6630773,43560952 +g1,20119:6630773,43560952 +g1,20119:6434165,43560952 +(1,20119:6434165,43560952:0,1425360,196608 +r1,20129:32779637,43560952:26345472,1621968,196608 +k1,20119:6434165,43560952:-26345472 +) +(1,20119:6434165,43560952:26345472,1425360,196608 +[1,20119:6630773,43560952:25952256,1228752,0 +(1,20116:6630773,42763245:25952256,431045,106246 +(1,20115:6630773,42763245:0,0,0 +g1,20115:6630773,42763245 +g1,20115:6630773,42763245 +g1,20115:6303093,42763245 +(1,20115:6303093,42763245:0,0,0 +) +g1,20115:6630773,42763245 +) +g1,20116:7626635,42763245 +g1,20116:8290543,42763245 +g1,20116:11942037,42763245 +g1,20116:12605945,42763245 +g1,20116:16921347,42763245 +h1,20116:17253301,42763245:0,0,0 +k1,20116:32583029,42763245:15329728 +g1,20116:32583029,42763245 +) +(1,20117:6630773,43448100:25952256,431045,112852 +h1,20117:6630773,43448100:0,0,0 +g1,20117:6962727,43448100 +g1,20117:7294681,43448100 +g1,20117:13601806,43448100 +g1,20117:14265714,43448100 +g1,20117:16257438,43448100 +g1,20117:18913070,43448100 +g1,20117:19576978,43448100 +g1,20117:20240886,43448100 +g1,20117:20904794,43448100 +g1,20117:23560426,43448100 +g1,20117:24888242,43448100 +g1,20117:27211920,43448100 +g1,20117:27875828,43448100 +h1,20117:30863413,43448100:0,0,0 +k1,20117:32583029,43448100:1719616 +g1,20117:32583029,43448100 +) +] +) +g1,20119:32583029,43560952 +g1,20119:6630773,43560952 +g1,20119:6630773,43560952 +g1,20119:32583029,43560952 +g1,20119:32583029,43560952 +) +h1,20119:6630773,43757560:0,0,0 +] +(1,20129:32583029,45706769:0,0,0 +g1,20129:32583029,45706769 +) +) +] +(1,20129:6630773,47279633:25952256,0,0 +h1,20129:6630773,47279633:25952256,0,0 +) +] +(1,20129:4262630,4025873:0,0,0 +[1,20129:-473656,4025873:0,0,0 +(1,20129:-473656,-710413:0,0,0 +(1,20129:-473656,-710413:0,0,0 +g1,20129:-473656,-710413 +) +g1,20129:-473656,-710413 ) ] ) ] !19312 -}336 -Input:3641:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3642:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3643:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3644:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}337 Input:3645:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3646:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3647:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -351258,1682 +351462,1682 @@ Input:3652:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3653:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3654:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3655:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3658:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3659:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{337 -[1,20166:4262630,47279633:28320399,43253760,0 -(1,20166:4262630,4025873:0,0,0 -[1,20166:-473656,4025873:0,0,0 -(1,20166:-473656,-710413:0,0,0 -(1,20166:-473656,-644877:0,0,0 -k1,20166:-473656,-644877:-65536 +{338 +[1,20164:4262630,47279633:28320399,43253760,0 +(1,20164:4262630,4025873:0,0,0 +[1,20164:-473656,4025873:0,0,0 +(1,20164:-473656,-710413:0,0,0 +(1,20164:-473656,-644877:0,0,0 +k1,20164:-473656,-644877:-65536 ) -(1,20166:-473656,4736287:0,0,0 -k1,20166:-473656,4736287:5209943 +(1,20164:-473656,4736287:0,0,0 +k1,20164:-473656,4736287:5209943 ) -g1,20166:-473656,-710413 +g1,20164:-473656,-710413 ) ] ) -[1,20166:6630773,47279633:25952256,43253760,0 -[1,20166:6630773,4812305:25952256,786432,0 -(1,20166:6630773,4812305:25952256,513147,126483 -(1,20166:6630773,4812305:25952256,513147,126483 -g1,20166:3078558,4812305 -[1,20166:3078558,4812305:0,0,0 -(1,20166:3078558,2439708:0,1703936,0 -k1,20166:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20166:2537886,2439708:1179648,16384,0 +[1,20164:6630773,47279633:25952256,43253760,0 +[1,20164:6630773,4812305:25952256,786432,0 +(1,20164:6630773,4812305:25952256,513147,126483 +(1,20164:6630773,4812305:25952256,513147,126483 +g1,20164:3078558,4812305 +[1,20164:3078558,4812305:0,0,0 +(1,20164:3078558,2439708:0,1703936,0 +k1,20164:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20164:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20166:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20164:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20166:3078558,4812305:0,0,0 -(1,20166:3078558,2439708:0,1703936,0 -g1,20166:29030814,2439708 -g1,20166:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20166:36151628,1915420:16384,1179648,0 +[1,20164:3078558,4812305:0,0,0 +(1,20164:3078558,2439708:0,1703936,0 +g1,20164:29030814,2439708 +g1,20164:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20164:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20166:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20164:37855564,2439708:1179648,16384,0 ) ) -k1,20166:3078556,2439708:-34777008 +k1,20164:3078556,2439708:-34777008 ) ] -[1,20166:3078558,4812305:0,0,0 -(1,20166:3078558,49800853:0,16384,2228224 -k1,20166:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20166:2537886,49800853:1179648,16384,0 +[1,20164:3078558,4812305:0,0,0 +(1,20164:3078558,49800853:0,16384,2228224 +k1,20164:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20164:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20166:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20164:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20166:3078558,4812305:0,0,0 -(1,20166:3078558,49800853:0,16384,2228224 -g1,20166:29030814,49800853 -g1,20166:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20166:36151628,51504789:16384,1179648,0 +[1,20164:3078558,4812305:0,0,0 +(1,20164:3078558,49800853:0,16384,2228224 +g1,20164:29030814,49800853 +g1,20164:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20164:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20166:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20164:37855564,49800853:1179648,16384,0 ) ) -k1,20166:3078556,49800853:-34777008 +k1,20164:3078556,49800853:-34777008 ) ] -g1,20166:6630773,4812305 -k1,20166:21386205,4812305:13560055 -g1,20166:21999622,4812305 -g1,20166:25611966,4812305 -g1,20166:28956923,4812305 -g1,20166:29772190,4812305 -) -) -] -[1,20166:6630773,45706769:25952256,40108032,0 -(1,20166:6630773,45706769:25952256,40108032,0 -(1,20166:6630773,45706769:0,0,0 -g1,20166:6630773,45706769 +g1,20164:6630773,4812305 +k1,20164:21386205,4812305:13560055 +g1,20164:21999622,4812305 +g1,20164:25611966,4812305 +g1,20164:28956923,4812305 +g1,20164:29772190,4812305 +) +) +] +[1,20164:6630773,45706769:25952256,40108032,0 +(1,20164:6630773,45706769:25952256,40108032,0 +(1,20164:6630773,45706769:0,0,0 +g1,20164:6630773,45706769 ) -[1,20166:6630773,45706769:25952256,40108032,0 -(1,20124:6630773,14682403:25952256,9083666,0 -k1,20124:10523651,14682403:3892878 -h1,20123:10523651,14682403:0,0,0 -(1,20123:10523651,14682403:18166500,9083666,0 -(1,20123:10523651,14682403:18167376,9083688,0 -(1,20123:10523651,14682403:18167376,9083688,0 -(1,20123:10523651,14682403:0,9083688,0 -(1,20123:10523651,14682403:0,14208860,0 -(1,20123:10523651,14682403:28417720,14208860,0 +[1,20164:6630773,45706769:25952256,40108032,0 +(1,20122:6630773,14682403:25952256,9083666,0 +k1,20122:10523651,14682403:3892878 +h1,20121:10523651,14682403:0,0,0 +(1,20121:10523651,14682403:18166500,9083666,0 +(1,20121:10523651,14682403:18167376,9083688,0 +(1,20121:10523651,14682403:18167376,9083688,0 +(1,20121:10523651,14682403:0,9083688,0 +(1,20121:10523651,14682403:0,14208860,0 +(1,20121:10523651,14682403:28417720,14208860,0 ) -k1,20123:10523651,14682403:-28417720 -) -) -g1,20123:28691027,14682403 -) -) -) -g1,20124:28690151,14682403 -k1,20124:32583029,14682403:3892878 -) -v1,20131:6630773,15547483:0,393216,0 -(1,20166:6630773,43067706:25952256,27913439,0 -g1,20166:6630773,43067706 -g1,20166:6237557,43067706 -r1,20166:6368629,43067706:131072,27913439,0 -g1,20166:6567858,43067706 -g1,20166:6764466,43067706 -[1,20166:6764466,43067706:25818563,27913439,0 -(1,20132:6764466,15855781:25818563,701514,196608 -(1,20131:6764466,15855781:0,701514,196608 -r1,20166:7761522,15855781:997056,898122,196608 -k1,20131:6764466,15855781:-997056 -) -(1,20131:6764466,15855781:997056,701514,196608 -) -k1,20131:7898916,15855781:137394 -k1,20131:8226596,15855781:327680 -k1,20131:8833884,15855781:137395 -k1,20131:9502775,15855781:137394 -k1,20131:12270129,15855781:137394 -k1,20131:13058951,15855781:137394 -k1,20131:14288831,15855781:137395 -k1,20131:16128195,15855781:137394 -k1,20131:17981977,15855781:137394 -k1,20131:18778664,15855781:137395 -k1,20131:21407737,15855781:137394 -k1,20131:24525708,15855781:137394 -k1,20131:26193962,15855781:137333 -k1,20131:27522801,15855781:137394 -k1,20131:29242235,15855781:137395 -k1,20131:30065791,15855781:137394 -k1,20132:32583029,15855781:0 -) -(1,20132:6764466,16720861:25818563,513147,134348 -k1,20131:8116133,16720861:211996 -k1,20131:8541107,16720861:211982 -k1,20131:10033021,16720861:211996 -k1,20131:11629136,16720861:211995 -k1,20131:13013571,16720861:211996 -k1,20131:15350243,16720861:211995 -k1,20131:18553958,16720861:211996 -k1,20131:19425246,16720861:211996 -k1,20131:20656326,16720861:211995 -k1,20131:21960807,16720861:211996 -k1,20131:22839958,16720861:211995 -(1,20131:22839958,16720861:0,452978,115847 -r1,20166:24605071,16720861:1765113,568825,115847 -k1,20131:22839958,16720861:-1765113 -) -(1,20131:22839958,16720861:1765113,452978,115847 -k1,20131:22839958,16720861:3277 -h1,20131:24601794,16720861:0,411205,112570 -) -k1,20131:24817067,16720861:211996 -k1,20131:25680490,16720861:211995 -k1,20131:26579959,16720861:211996 -k1,20131:27147814,16720861:211995 -k1,20131:29347517,16720861:211996 -k1,20131:32583029,16720861:0 -) -(1,20132:6764466,17585941:25818563,513147,134348 -k1,20131:7576316,17585941:195812 -k1,20131:8560526,17585941:195812 -k1,20131:12367372,17585941:195812 -k1,20131:13795262,17585941:195813 -k1,20131:16269761,17585941:195812 -h1,20131:17638808,17585941:0,0,0 -k1,20131:17834620,17585941:195812 -k1,20131:18839802,17585941:195812 -k1,20131:20533767,17585941:195812 -h1,20131:21729144,17585941:0,0,0 -k1,20131:21924956,17585941:195812 -k1,20131:23068419,17585941:195812 -k1,20131:25381700,17585941:195813 -k1,20131:27400068,17585941:195812 -k1,20131:29530503,17585941:195812 -k1,20131:30929556,17585941:195812 -k1,20131:32583029,17585941:0 -) -(1,20132:6764466,18451021:25818563,513147,126483 -k1,20131:8901794,18451021:149621 -k1,20131:10445367,18451021:149622 -(1,20131:10445367,18451021:0,452978,115847 -r1,20166:12210480,18451021:1765113,568825,115847 -k1,20131:10445367,18451021:-1765113 -) -(1,20131:10445367,18451021:1765113,452978,115847 -k1,20131:10445367,18451021:3277 -h1,20131:12207203,18451021:0,411205,112570 -) -k1,20131:12740865,18451021:149621 -k1,20131:13518322,18451021:149622 -k1,20131:15134639,18451021:149621 -k1,20131:18275979,18451021:149621 -k1,20131:19444686,18451021:149622 -k1,20131:21582014,18451021:149621 -k1,20131:23444092,18451021:149622 -k1,20131:24125210,18451021:149621 -k1,20131:25293917,18451021:149622 -k1,20131:30954460,18451021:149621 -k1,20132:32583029,18451021:0 -) -(1,20132:6764466,19316101:25818563,513147,134348 -k1,20131:8369552,19316101:163949 -k1,20131:11845690,19316101:163948 -k1,20131:13028724,19316101:163949 -k1,20131:14441133,19316101:163948 -k1,20131:15264374,19316101:163949 -k1,20131:15784182,19316101:163948 -k1,20131:18759626,19316101:163949 -k1,20131:21516179,19316101:163949 -(1,20131:21723273,19316101:0,414482,115847 -r1,20166:23136674,19316101:1413401,530329,115847 -k1,20131:21723273,19316101:-1413401 -) -(1,20131:21723273,19316101:1413401,414482,115847 -k1,20131:21723273,19316101:3277 -h1,20131:23133397,19316101:0,411205,112570 -) -k1,20131:23507716,19316101:163948 -k1,20131:24357827,19316101:163949 -k1,20131:24877635,19316101:163948 -k1,20131:27737080,19316101:163949 -k1,20131:28560320,19316101:163948 -k1,20131:31333913,19316101:163949 -k1,20132:32583029,19316101:0 -) -(1,20132:6764466,20181181:25818563,505283,115847 -k1,20131:10246848,20181181:218034 -(1,20131:10453942,20181181:0,414482,115847 -r1,20166:11867343,20181181:1413401,530329,115847 -k1,20131:10453942,20181181:-1413401 -) -(1,20131:10453942,20181181:1413401,414482,115847 -k1,20131:10453942,20181181:3277 -h1,20131:11864066,20181181:0,411205,112570 -) -k1,20131:12466141,20181181:218034 -(1,20131:12466141,20181181:0,452978,115847 -r1,20166:15638101,20181181:3171960,568825,115847 -k1,20131:12466141,20181181:-3171960 -) -(1,20131:12466141,20181181:3171960,452978,115847 -k1,20131:12466141,20181181:3277 -h1,20131:15634824,20181181:0,411205,112570 -) -k1,20131:15856135,20181181:218034 -k1,20131:16605667,20181181:218035 -k1,20131:17179561,20181181:218034 -k1,20131:18786958,20181181:218034 -k1,20131:19939535,20181181:218034 -k1,20131:22915979,20181181:218034 -k1,20131:23750051,20181181:218034 -k1,20131:24987171,20181181:218035 -k1,20131:25620029,20181181:218015 -k1,20131:29793161,20181181:218034 -k1,20132:32583029,20181181:0 -) -(1,20132:6764466,21046261:25818563,513147,134348 -(1,20131:6764466,21046261:0,452978,115847 -r1,20166:10288138,21046261:3523672,568825,115847 -k1,20131:6764466,21046261:-3523672 -) -(1,20131:6764466,21046261:3523672,452978,115847 -k1,20131:6764466,21046261:3277 -h1,20131:10284861,21046261:0,411205,112570 -) -k1,20131:10686096,21046261:224288 -k1,20131:12423610,21046261:224288 -k1,20131:13263936,21046261:224288 -k1,20131:14507308,21046261:224287 -k1,20131:16037729,21046261:224288 -k1,20131:19097104,21046261:224288 -k1,20131:19852889,21046261:224288 -k1,20131:21362993,21046261:224288 -k1,20131:23154902,21046261:224288 -k1,20131:23967703,21046261:224288 -k1,20131:25383435,21046261:224287 -k1,20131:26139220,21046261:224288 -k1,20131:26719368,21046261:224288 -k1,20131:30682485,21046261:224288 -k1,20132:32583029,21046261:0 -) -(1,20132:6764466,21911341:25818563,513147,134348 -k1,20131:10262182,21911341:235334 -k1,20131:11156808,21911341:235334 -k1,20131:12411226,21911341:235333 -k1,20131:18157482,21911341:235334 -k1,20131:21356354,21911341:235334 -k1,20131:23934600,21911341:235334 -k1,20131:24821362,21911341:235334 -k1,20131:26433607,21911341:235334 -k1,20131:28135636,21911341:235333 -k1,20131:30641137,21911341:235334 -k1,20131:31895556,21911341:235334 -k1,20131:32583029,21911341:0 -) -(1,20132:6764466,22776421:25818563,513147,134348 -k1,20131:7485916,22776421:189953 -k1,20131:9253322,22776421:189954 -k1,20131:10837226,22776421:189953 -k1,20131:11797883,22776421:189954 -k1,20131:14600101,22776421:189953 -k1,20131:18074718,22776421:189953 -k1,20131:20743244,22776421:189954 -k1,20131:22943842,22776421:189953 -k1,20131:24081446,22776421:189953 -k1,20131:25290485,22776421:189954 -k1,20131:29091472,22776421:189953 -k1,20131:29932854,22776421:189954 -k1,20131:30870573,22776421:189953 -k1,20131:32583029,22776421:0 -) -(1,20132:6764466,23641501:25818563,513147,134348 -k1,20131:7973564,23641501:217538 -k1,20131:9257373,23641501:217538 -k1,20131:11946928,23641501:217537 -k1,20131:14546700,23641501:217538 -(1,20131:14546700,23641501:0,414482,115847 -r1,20166:18070373,23641501:3523673,530329,115847 -k1,20131:14546700,23641501:-3523673 -) -(1,20131:14546700,23641501:3523673,414482,115847 -g1,20131:15605113,23641501 -g1,20131:16308537,23641501 -h1,20131:18067096,23641501:0,411205,112570 -) -k1,20131:18287911,23641501:217538 -k1,20131:22066020,23641501:217538 -k1,20131:23302643,23641501:217538 -k1,20131:26034797,23641501:217538 -k1,20131:26903762,23641501:217537 -k1,20131:29909202,23641501:217538 -k1,20131:30482600,23641501:217538 -k1,20132:32583029,23641501:0 -) -(1,20132:6764466,24506581:25818563,513147,126483 -k1,20131:8368611,24506581:161042 -k1,20131:10121524,24506581:161043 -k1,20131:10968728,24506581:161042 -k1,20131:11587868,24506581:161043 -k1,20131:12280407,24506581:161042 -k1,20131:13507721,24506581:161043 -k1,20131:16963258,24506581:161042 -k1,20131:17885829,24506581:161043 -k1,20131:19065956,24506581:161042 -(1,20131:19065956,24506581:0,452978,115847 -r1,20166:22237916,24506581:3171960,568825,115847 -k1,20131:19065956,24506581:-3171960 -) -(1,20131:19065956,24506581:3171960,452978,115847 -k1,20131:19065956,24506581:3277 -h1,20131:22234639,24506581:0,411205,112570 -) -k1,20131:22398959,24506581:161043 -k1,20131:25014324,24506581:161042 -k1,20131:26123018,24506581:161043 -k1,20131:28271767,24506581:161042 -k1,20131:29450584,24506581:161043 -k1,20131:31189078,24506581:161042 -k1,20131:32583029,24506581:0 -) -(1,20132:6764466,25371661:25818563,513147,115847 -g1,20131:9659191,25371661 -(1,20131:9659191,25371661:0,452978,115847 -r1,20166:11424304,25371661:1765113,568825,115847 -k1,20131:9659191,25371661:-1765113 -) -(1,20131:9659191,25371661:1765113,452978,115847 -k1,20131:9659191,25371661:3277 -h1,20131:11421027,25371661:0,411205,112570 -) -k1,20132:32583028,25371661:21106296 -g1,20132:32583028,25371661 -) -v1,20134:6764466,26056516:0,393216,0 -(1,20141:6764466,28451764:25818563,2788464,196608 -g1,20141:6764466,28451764 -g1,20141:6764466,28451764 -g1,20141:6567858,28451764 -(1,20141:6567858,28451764:0,2788464,196608 -r1,20166:32779637,28451764:26211779,2985072,196608 -k1,20141:6567857,28451764:-26211780 -) -(1,20141:6567858,28451764:26211779,2788464,196608 -[1,20141:6764466,28451764:25818563,2591856,0 -(1,20136:6764466,26284347:25818563,424439,112852 -(1,20135:6764466,26284347:0,0,0 -g1,20135:6764466,26284347 -g1,20135:6764466,26284347 -g1,20135:6436786,26284347 -(1,20135:6436786,26284347:0,0,0 -) -g1,20135:6764466,26284347 -) -k1,20136:6764466,26284347:0 -g1,20136:10747914,26284347 -g1,20136:11411822,26284347 -k1,20136:11411822,26284347:0 -h1,20136:14731361,26284347:0,0,0 -k1,20136:32583029,26284347:17851668 -g1,20136:32583029,26284347 -) -(1,20137:6764466,26969202:25818563,424439,112852 -h1,20137:6764466,26969202:0,0,0 -g1,20137:7096420,26969202 -g1,20137:7428374,26969202 -g1,20137:7760328,26969202 -g1,20137:8092282,26969202 -g1,20137:8424236,26969202 -g1,20137:8756190,26969202 -g1,20137:9088144,26969202 -g1,20137:11743776,26969202 -g1,20137:12407684,26969202 -g1,20137:15727224,26969202 -g1,20137:17718948,26969202 -g1,20137:20042626,26969202 -g1,20137:20706534,26969202 -g1,20137:23362166,26969202 -h1,20137:23694120,26969202:0,0,0 -k1,20137:32583029,26969202:8888909 -g1,20137:32583029,26969202 -) -(1,20138:6764466,27654057:25818563,424439,112852 -h1,20138:6764466,27654057:0,0,0 -g1,20138:7096420,27654057 -g1,20138:7428374,27654057 -g1,20138:11743775,27654057 -h1,20138:12075729,27654057:0,0,0 -k1,20138:32583029,27654057:20507300 -g1,20138:32583029,27654057 -) -(1,20139:6764466,28338912:25818563,431045,112852 -h1,20139:6764466,28338912:0,0,0 -g1,20139:7096420,28338912 -g1,20139:7428374,28338912 -g1,20139:13735499,28338912 -g1,20139:14399407,28338912 -g1,20139:16723085,28338912 -g1,20139:19378717,28338912 -g1,20139:20042625,28338912 -g1,20139:20374579,28338912 -g1,20139:21038487,28338912 -g1,20139:21702395,28338912 -g1,20139:25685842,28338912 -g1,20139:27013658,28338912 -g1,20139:28341474,28338912 -g1,20139:29337336,28338912 -g1,20139:30001244,28338912 -h1,20139:31992968,28338912:0,0,0 -k1,20139:32583029,28338912:590061 -g1,20139:32583029,28338912 -) -] -) -g1,20141:32583029,28451764 -g1,20141:6764466,28451764 -g1,20141:6764466,28451764 -g1,20141:32583029,28451764 -g1,20141:32583029,28451764 -) -h1,20141:6764466,28648372:0,0,0 -(1,20144:6764466,37750743:25818563,9036835,0 -k1,20144:10637290,37750743:3872824 -h1,20143:10637290,37750743:0,0,0 -(1,20143:10637290,37750743:18072915,9036835,0 -(1,20143:10637290,37750743:18073715,9036857,0 -(1,20143:10637290,37750743:18073715,9036857,0 -(1,20143:10637290,37750743:0,9036857,0 -(1,20143:10637290,37750743:0,14208860,0 -(1,20143:10637290,37750743:28417720,14208860,0 -) -k1,20143:10637290,37750743:-28417720 -) -) -g1,20143:28711005,37750743 -) -) -) -g1,20144:28710205,37750743 -k1,20144:32583029,37750743:3872824 -) -(1,20152:6764466,38615823:25818563,505283,134348 -h1,20150:6764466,38615823:983040,0,0 -k1,20150:8586316,38615823:210975 -k1,20150:9816377,38615823:210976 -k1,20150:12268683,38615823:210975 -k1,20150:15314746,38615823:210976 -k1,20150:16544806,38615823:210975 -k1,20150:18251969,38615823:210976 -k1,20150:21775134,38615823:210975 -k1,20150:23005195,38615823:210976 -k1,20150:26006038,38615823:210975 -k1,20150:26748511,38615823:210976 -k1,20150:29164773,38615823:210975 -k1,20150:30061911,38615823:210976 -k1,20150:31043589,38615823:210975 -k1,20152:32583029,38615823:0 -) -(1,20152:6764466,39480903:25818563,505283,134348 -k1,20150:8599800,39480903:196279 -k1,20150:9447506,39480903:196278 -(1,20150:9447506,39480903:0,459977,115847 -r1,20166:11916043,39480903:2468537,575824,115847 -k1,20150:9447506,39480903:-2468537 -) -(1,20150:9447506,39480903:2468537,459977,115847 -k1,20150:9447506,39480903:3277 -h1,20150:11912766,39480903:0,411205,112570 -) -k1,20150:12285992,39480903:196279 -k1,20150:13876221,39480903:196278 -k1,20150:16551072,39480903:196279 -k1,20150:18757995,39480903:196278 -k1,20150:21159561,39480903:196279 -k1,20150:22042002,39480903:196279 -k1,20150:22594140,39480903:196278 -k1,20150:24949175,39480903:196279 -k1,20150:26138979,39480903:196278 -k1,20150:26986686,39480903:196279 -(1,20150:26986686,39480903:0,414482,115847 -r1,20166:28751799,39480903:1765113,530329,115847 -k1,20150:26986686,39480903:-1765113 -) -(1,20150:26986686,39480903:1765113,414482,115847 -k1,20150:26986686,39480903:3277 -h1,20150:28748522,39480903:0,411205,112570 -) -k1,20150:29121747,39480903:196278 -k1,20150:30514713,39480903:196279 -k1,20150:32583029,39480903:0 -) -(1,20152:6764466,40345983:25818563,513147,134348 -k1,20150:8448959,40345983:171267 -k1,20150:9567878,40345983:171268 -k1,20150:10758230,40345983:171267 -k1,20150:14540531,40345983:171267 -k1,20150:15363226,40345983:171267 -k1,20150:16282260,40345983:171268 -k1,20150:19590080,40345983:171267 -k1,20150:20522875,40345983:171267 -k1,20150:22628765,40345983:171267 -k1,20150:23819118,40345983:171268 -k1,20150:25978092,40345983:171267 -k1,20150:27253641,40345983:171267 -k1,20150:28172674,40345983:171267 -k1,20150:30579375,40345983:171268 -k1,20150:31363404,40345983:171267 -k1,20150:32583029,40345983:0 -) -(1,20152:6764466,41211063:25818563,513147,134348 -k1,20150:8929464,41211063:181223 -k1,20150:10129772,41211063:181223 -k1,20150:13954797,41211063:181223 -k1,20150:14795311,41211063:181222 -k1,20150:15995619,41211063:181223 -k1,20150:16591667,41211063:181205 -k1,20150:19788857,41211063:181223 -k1,20150:21042249,41211063:181223 -k1,20150:21882764,41211063:181223 -k1,20150:24172936,41211063:181223 -k1,20150:25373243,41211063:181222 -k1,20150:27622782,41211063:181223 -k1,20150:29317231,41211063:181223 -k1,20150:30114492,41211063:181223 -(1,20150:30114492,41211063:0,459977,115847 -r1,20166:32583029,41211063:2468537,575824,115847 -k1,20150:30114492,41211063:-2468537 -) -(1,20150:30114492,41211063:2468537,459977,115847 -k1,20150:30114492,41211063:3277 -h1,20150:32579752,41211063:0,411205,112570 -) -k1,20150:32583029,41211063:0 -) -(1,20152:6764466,42076143:25818563,513147,115847 -k1,20150:8163796,42076143:207885 -(1,20150:8163796,42076143:0,414482,115847 -r1,20166:9928909,42076143:1765113,530329,115847 -k1,20150:8163796,42076143:-1765113 -) -(1,20150:8163796,42076143:1765113,414482,115847 -k1,20150:8163796,42076143:3277 -h1,20150:9925632,42076143:0,411205,112570 -) -k1,20150:10136793,42076143:207884 -k1,20150:11966694,42076143:207885 -k1,20150:14155732,42076143:207885 -k1,20150:15815238,42076143:207884 -k1,20150:17898763,42076143:207885 -k1,20150:18924537,42076143:207885 -k1,20150:20080073,42076143:207885 -k1,20150:21989927,42076143:207884 -k1,20150:24689491,42076143:207885 -(1,20150:24689491,42076143:0,414482,115847 -r1,20166:25047757,42076143:358266,530329,115847 -k1,20150:24689491,42076143:-358266 -) -(1,20150:24689491,42076143:358266,414482,115847 -k1,20150:24689491,42076143:3277 -h1,20150:25044480,42076143:0,411205,112570 -) -k1,20150:25255642,42076143:207885 -k1,20150:26654971,42076143:207884 -(1,20150:26654971,42076143:0,414482,115847 -r1,20166:27013237,42076143:358266,530329,115847 -k1,20150:26654971,42076143:-358266 -) -(1,20150:26654971,42076143:358266,414482,115847 -k1,20150:26654971,42076143:3277 -h1,20150:27009960,42076143:0,411205,112570 -) -k1,20150:27221122,42076143:207885 -k1,20150:28420567,42076143:207885 -k1,20150:29647536,42076143:207884 -k1,20150:31923737,42076143:207885 -k1,20150:32583029,42076143:0 -) -(1,20152:6764466,42941223:25818563,505283,126483 -g1,20150:7982780,42941223 -g1,20150:11356573,42941223 -g1,20150:12207230,42941223 -g1,20150:14291930,42941223 -g1,20150:15510244,42941223 -g1,20150:19781225,42941223 -g1,20150:21455669,42941223 -g1,20150:23164848,42941223 -g1,20150:25949472,42941223 -g1,20150:27633091,42941223 -g1,20150:28898591,42941223 -k1,20152:32583029,42941223:1349391 -g1,20152:32583029,42941223 -) -] -g1,20166:32583029,43067706 -) -] -(1,20166:32583029,45706769:0,0,0 -g1,20166:32583029,45706769 -) -) -] -(1,20166:6630773,47279633:25952256,0,0 -h1,20166:6630773,47279633:25952256,0,0 -) -] -(1,20166:4262630,4025873:0,0,0 -[1,20166:-473656,4025873:0,0,0 -(1,20166:-473656,-710413:0,0,0 -(1,20166:-473656,-710413:0,0,0 -g1,20166:-473656,-710413 -) -g1,20166:-473656,-710413 +k1,20121:10523651,14682403:-28417720 +) +) +g1,20121:28691027,14682403 +) +) +) +g1,20122:28690151,14682403 +k1,20122:32583029,14682403:3892878 +) +v1,20129:6630773,15547483:0,393216,0 +(1,20164:6630773,43067706:25952256,27913439,0 +g1,20164:6630773,43067706 +g1,20164:6237557,43067706 +r1,20164:6368629,43067706:131072,27913439,0 +g1,20164:6567858,43067706 +g1,20164:6764466,43067706 +[1,20164:6764466,43067706:25818563,27913439,0 +(1,20130:6764466,15855781:25818563,701514,196608 +(1,20129:6764466,15855781:0,701514,196608 +r1,20164:7761522,15855781:997056,898122,196608 +k1,20129:6764466,15855781:-997056 +) +(1,20129:6764466,15855781:997056,701514,196608 +) +k1,20129:7898916,15855781:137394 +k1,20129:8226596,15855781:327680 +k1,20129:8833884,15855781:137395 +k1,20129:9502775,15855781:137394 +k1,20129:12270129,15855781:137394 +k1,20129:13058951,15855781:137394 +k1,20129:14288831,15855781:137395 +k1,20129:16128195,15855781:137394 +k1,20129:17981977,15855781:137394 +k1,20129:18778664,15855781:137395 +k1,20129:21407737,15855781:137394 +k1,20129:24525708,15855781:137394 +k1,20129:26193962,15855781:137333 +k1,20129:27522801,15855781:137394 +k1,20129:29242235,15855781:137395 +k1,20129:30065791,15855781:137394 +k1,20130:32583029,15855781:0 +) +(1,20130:6764466,16720861:25818563,513147,134348 +k1,20129:8116133,16720861:211996 +k1,20129:8541107,16720861:211982 +k1,20129:10033021,16720861:211996 +k1,20129:11629136,16720861:211995 +k1,20129:13013571,16720861:211996 +k1,20129:15350243,16720861:211995 +k1,20129:18553958,16720861:211996 +k1,20129:19425246,16720861:211996 +k1,20129:20656326,16720861:211995 +k1,20129:21960807,16720861:211996 +k1,20129:22839958,16720861:211995 +(1,20129:22839958,16720861:0,452978,115847 +r1,20164:24605071,16720861:1765113,568825,115847 +k1,20129:22839958,16720861:-1765113 +) +(1,20129:22839958,16720861:1765113,452978,115847 +k1,20129:22839958,16720861:3277 +h1,20129:24601794,16720861:0,411205,112570 +) +k1,20129:24817067,16720861:211996 +k1,20129:25680490,16720861:211995 +k1,20129:26579959,16720861:211996 +k1,20129:27147814,16720861:211995 +k1,20129:29347517,16720861:211996 +k1,20129:32583029,16720861:0 +) +(1,20130:6764466,17585941:25818563,513147,134348 +k1,20129:7576316,17585941:195812 +k1,20129:8560526,17585941:195812 +k1,20129:12367372,17585941:195812 +k1,20129:13795262,17585941:195813 +k1,20129:16269761,17585941:195812 +h1,20129:17638808,17585941:0,0,0 +k1,20129:17834620,17585941:195812 +k1,20129:18839802,17585941:195812 +k1,20129:20533767,17585941:195812 +h1,20129:21729144,17585941:0,0,0 +k1,20129:21924956,17585941:195812 +k1,20129:23068419,17585941:195812 +k1,20129:25381700,17585941:195813 +k1,20129:27400068,17585941:195812 +k1,20129:29530503,17585941:195812 +k1,20129:30929556,17585941:195812 +k1,20129:32583029,17585941:0 +) +(1,20130:6764466,18451021:25818563,513147,126483 +k1,20129:8901794,18451021:149621 +k1,20129:10445367,18451021:149622 +(1,20129:10445367,18451021:0,452978,115847 +r1,20164:12210480,18451021:1765113,568825,115847 +k1,20129:10445367,18451021:-1765113 +) +(1,20129:10445367,18451021:1765113,452978,115847 +k1,20129:10445367,18451021:3277 +h1,20129:12207203,18451021:0,411205,112570 +) +k1,20129:12740865,18451021:149621 +k1,20129:13518322,18451021:149622 +k1,20129:15134639,18451021:149621 +k1,20129:18275979,18451021:149621 +k1,20129:19444686,18451021:149622 +k1,20129:21582014,18451021:149621 +k1,20129:23444092,18451021:149622 +k1,20129:24125210,18451021:149621 +k1,20129:25293917,18451021:149622 +k1,20129:30954460,18451021:149621 +k1,20130:32583029,18451021:0 +) +(1,20130:6764466,19316101:25818563,513147,134348 +k1,20129:8369552,19316101:163949 +k1,20129:11845690,19316101:163948 +k1,20129:13028724,19316101:163949 +k1,20129:14441133,19316101:163948 +k1,20129:15264374,19316101:163949 +k1,20129:15784182,19316101:163948 +k1,20129:18759626,19316101:163949 +k1,20129:21516179,19316101:163949 +(1,20129:21723273,19316101:0,414482,115847 +r1,20164:23136674,19316101:1413401,530329,115847 +k1,20129:21723273,19316101:-1413401 +) +(1,20129:21723273,19316101:1413401,414482,115847 +k1,20129:21723273,19316101:3277 +h1,20129:23133397,19316101:0,411205,112570 +) +k1,20129:23507716,19316101:163948 +k1,20129:24357827,19316101:163949 +k1,20129:24877635,19316101:163948 +k1,20129:27737080,19316101:163949 +k1,20129:28560320,19316101:163948 +k1,20129:31333913,19316101:163949 +k1,20130:32583029,19316101:0 +) +(1,20130:6764466,20181181:25818563,505283,115847 +k1,20129:10246848,20181181:218034 +(1,20129:10453942,20181181:0,414482,115847 +r1,20164:11867343,20181181:1413401,530329,115847 +k1,20129:10453942,20181181:-1413401 +) +(1,20129:10453942,20181181:1413401,414482,115847 +k1,20129:10453942,20181181:3277 +h1,20129:11864066,20181181:0,411205,112570 +) +k1,20129:12466141,20181181:218034 +(1,20129:12466141,20181181:0,452978,115847 +r1,20164:15638101,20181181:3171960,568825,115847 +k1,20129:12466141,20181181:-3171960 +) +(1,20129:12466141,20181181:3171960,452978,115847 +k1,20129:12466141,20181181:3277 +h1,20129:15634824,20181181:0,411205,112570 +) +k1,20129:15856135,20181181:218034 +k1,20129:16605667,20181181:218035 +k1,20129:17179561,20181181:218034 +k1,20129:18786958,20181181:218034 +k1,20129:19939535,20181181:218034 +k1,20129:22915979,20181181:218034 +k1,20129:23750051,20181181:218034 +k1,20129:24987171,20181181:218035 +k1,20129:25620029,20181181:218015 +k1,20129:29793161,20181181:218034 +k1,20130:32583029,20181181:0 +) +(1,20130:6764466,21046261:25818563,513147,134348 +(1,20129:6764466,21046261:0,452978,115847 +r1,20164:10288138,21046261:3523672,568825,115847 +k1,20129:6764466,21046261:-3523672 +) +(1,20129:6764466,21046261:3523672,452978,115847 +k1,20129:6764466,21046261:3277 +h1,20129:10284861,21046261:0,411205,112570 +) +k1,20129:10686096,21046261:224288 +k1,20129:12423610,21046261:224288 +k1,20129:13263936,21046261:224288 +k1,20129:14507308,21046261:224287 +k1,20129:16037729,21046261:224288 +k1,20129:19097104,21046261:224288 +k1,20129:19852889,21046261:224288 +k1,20129:21362993,21046261:224288 +k1,20129:23154902,21046261:224288 +k1,20129:23967703,21046261:224288 +k1,20129:25383435,21046261:224287 +k1,20129:26139220,21046261:224288 +k1,20129:26719368,21046261:224288 +k1,20129:30682485,21046261:224288 +k1,20130:32583029,21046261:0 +) +(1,20130:6764466,21911341:25818563,513147,134348 +k1,20129:10262182,21911341:235334 +k1,20129:11156808,21911341:235334 +k1,20129:12411226,21911341:235333 +k1,20129:18157482,21911341:235334 +k1,20129:21356354,21911341:235334 +k1,20129:23934600,21911341:235334 +k1,20129:24821362,21911341:235334 +k1,20129:26433607,21911341:235334 +k1,20129:28135636,21911341:235333 +k1,20129:30641137,21911341:235334 +k1,20129:31895556,21911341:235334 +k1,20129:32583029,21911341:0 +) +(1,20130:6764466,22776421:25818563,513147,134348 +k1,20129:7485916,22776421:189953 +k1,20129:9253322,22776421:189954 +k1,20129:10837226,22776421:189953 +k1,20129:11797883,22776421:189954 +k1,20129:14600101,22776421:189953 +k1,20129:18074718,22776421:189953 +k1,20129:20743244,22776421:189954 +k1,20129:22943842,22776421:189953 +k1,20129:24081446,22776421:189953 +k1,20129:25290485,22776421:189954 +k1,20129:29091472,22776421:189953 +k1,20129:29932854,22776421:189954 +k1,20129:30870573,22776421:189953 +k1,20129:32583029,22776421:0 +) +(1,20130:6764466,23641501:25818563,513147,134348 +k1,20129:7973564,23641501:217538 +k1,20129:9257373,23641501:217538 +k1,20129:11946928,23641501:217537 +k1,20129:14546700,23641501:217538 +(1,20129:14546700,23641501:0,414482,115847 +r1,20164:18070373,23641501:3523673,530329,115847 +k1,20129:14546700,23641501:-3523673 +) +(1,20129:14546700,23641501:3523673,414482,115847 +g1,20129:15605113,23641501 +g1,20129:16308537,23641501 +h1,20129:18067096,23641501:0,411205,112570 +) +k1,20129:18287911,23641501:217538 +k1,20129:22066020,23641501:217538 +k1,20129:23302643,23641501:217538 +k1,20129:26034797,23641501:217538 +k1,20129:26903762,23641501:217537 +k1,20129:29909202,23641501:217538 +k1,20129:30482600,23641501:217538 +k1,20130:32583029,23641501:0 +) +(1,20130:6764466,24506581:25818563,513147,126483 +k1,20129:8368611,24506581:161042 +k1,20129:10121524,24506581:161043 +k1,20129:10968728,24506581:161042 +k1,20129:11587868,24506581:161043 +k1,20129:12280407,24506581:161042 +k1,20129:13507721,24506581:161043 +k1,20129:16963258,24506581:161042 +k1,20129:17885829,24506581:161043 +k1,20129:19065956,24506581:161042 +(1,20129:19065956,24506581:0,452978,115847 +r1,20164:22237916,24506581:3171960,568825,115847 +k1,20129:19065956,24506581:-3171960 +) +(1,20129:19065956,24506581:3171960,452978,115847 +k1,20129:19065956,24506581:3277 +h1,20129:22234639,24506581:0,411205,112570 +) +k1,20129:22398959,24506581:161043 +k1,20129:25014324,24506581:161042 +k1,20129:26123018,24506581:161043 +k1,20129:28271767,24506581:161042 +k1,20129:29450584,24506581:161043 +k1,20129:31189078,24506581:161042 +k1,20129:32583029,24506581:0 +) +(1,20130:6764466,25371661:25818563,513147,115847 +g1,20129:9659191,25371661 +(1,20129:9659191,25371661:0,452978,115847 +r1,20164:11424304,25371661:1765113,568825,115847 +k1,20129:9659191,25371661:-1765113 +) +(1,20129:9659191,25371661:1765113,452978,115847 +k1,20129:9659191,25371661:3277 +h1,20129:11421027,25371661:0,411205,112570 +) +k1,20130:32583028,25371661:21106296 +g1,20130:32583028,25371661 +) +v1,20132:6764466,26056516:0,393216,0 +(1,20139:6764466,28451764:25818563,2788464,196608 +g1,20139:6764466,28451764 +g1,20139:6764466,28451764 +g1,20139:6567858,28451764 +(1,20139:6567858,28451764:0,2788464,196608 +r1,20164:32779637,28451764:26211779,2985072,196608 +k1,20139:6567857,28451764:-26211780 +) +(1,20139:6567858,28451764:26211779,2788464,196608 +[1,20139:6764466,28451764:25818563,2591856,0 +(1,20134:6764466,26284347:25818563,424439,112852 +(1,20133:6764466,26284347:0,0,0 +g1,20133:6764466,26284347 +g1,20133:6764466,26284347 +g1,20133:6436786,26284347 +(1,20133:6436786,26284347:0,0,0 +) +g1,20133:6764466,26284347 +) +k1,20134:6764466,26284347:0 +g1,20134:10747914,26284347 +g1,20134:11411822,26284347 +k1,20134:11411822,26284347:0 +h1,20134:14731361,26284347:0,0,0 +k1,20134:32583029,26284347:17851668 +g1,20134:32583029,26284347 +) +(1,20135:6764466,26969202:25818563,424439,112852 +h1,20135:6764466,26969202:0,0,0 +g1,20135:7096420,26969202 +g1,20135:7428374,26969202 +g1,20135:7760328,26969202 +g1,20135:8092282,26969202 +g1,20135:8424236,26969202 +g1,20135:8756190,26969202 +g1,20135:9088144,26969202 +g1,20135:11743776,26969202 +g1,20135:12407684,26969202 +g1,20135:15727224,26969202 +g1,20135:17718948,26969202 +g1,20135:20042626,26969202 +g1,20135:20706534,26969202 +g1,20135:23362166,26969202 +h1,20135:23694120,26969202:0,0,0 +k1,20135:32583029,26969202:8888909 +g1,20135:32583029,26969202 +) +(1,20136:6764466,27654057:25818563,424439,112852 +h1,20136:6764466,27654057:0,0,0 +g1,20136:7096420,27654057 +g1,20136:7428374,27654057 +g1,20136:11743775,27654057 +h1,20136:12075729,27654057:0,0,0 +k1,20136:32583029,27654057:20507300 +g1,20136:32583029,27654057 +) +(1,20137:6764466,28338912:25818563,431045,112852 +h1,20137:6764466,28338912:0,0,0 +g1,20137:7096420,28338912 +g1,20137:7428374,28338912 +g1,20137:13735499,28338912 +g1,20137:14399407,28338912 +g1,20137:16723085,28338912 +g1,20137:19378717,28338912 +g1,20137:20042625,28338912 +g1,20137:20374579,28338912 +g1,20137:21038487,28338912 +g1,20137:21702395,28338912 +g1,20137:25685842,28338912 +g1,20137:27013658,28338912 +g1,20137:28341474,28338912 +g1,20137:29337336,28338912 +g1,20137:30001244,28338912 +h1,20137:31992968,28338912:0,0,0 +k1,20137:32583029,28338912:590061 +g1,20137:32583029,28338912 +) +] +) +g1,20139:32583029,28451764 +g1,20139:6764466,28451764 +g1,20139:6764466,28451764 +g1,20139:32583029,28451764 +g1,20139:32583029,28451764 +) +h1,20139:6764466,28648372:0,0,0 +(1,20142:6764466,37750743:25818563,9036835,0 +k1,20142:10637290,37750743:3872824 +h1,20141:10637290,37750743:0,0,0 +(1,20141:10637290,37750743:18072915,9036835,0 +(1,20141:10637290,37750743:18073715,9036857,0 +(1,20141:10637290,37750743:18073715,9036857,0 +(1,20141:10637290,37750743:0,9036857,0 +(1,20141:10637290,37750743:0,14208860,0 +(1,20141:10637290,37750743:28417720,14208860,0 +) +k1,20141:10637290,37750743:-28417720 +) +) +g1,20141:28711005,37750743 +) +) +) +g1,20142:28710205,37750743 +k1,20142:32583029,37750743:3872824 +) +(1,20150:6764466,38615823:25818563,505283,134348 +h1,20148:6764466,38615823:983040,0,0 +k1,20148:8586316,38615823:210975 +k1,20148:9816377,38615823:210976 +k1,20148:12268683,38615823:210975 +k1,20148:15314746,38615823:210976 +k1,20148:16544806,38615823:210975 +k1,20148:18251969,38615823:210976 +k1,20148:21775134,38615823:210975 +k1,20148:23005195,38615823:210976 +k1,20148:26006038,38615823:210975 +k1,20148:26748511,38615823:210976 +k1,20148:29164773,38615823:210975 +k1,20148:30061911,38615823:210976 +k1,20148:31043589,38615823:210975 +k1,20150:32583029,38615823:0 +) +(1,20150:6764466,39480903:25818563,505283,134348 +k1,20148:8599800,39480903:196279 +k1,20148:9447506,39480903:196278 +(1,20148:9447506,39480903:0,459977,115847 +r1,20164:11916043,39480903:2468537,575824,115847 +k1,20148:9447506,39480903:-2468537 +) +(1,20148:9447506,39480903:2468537,459977,115847 +k1,20148:9447506,39480903:3277 +h1,20148:11912766,39480903:0,411205,112570 +) +k1,20148:12285992,39480903:196279 +k1,20148:13876221,39480903:196278 +k1,20148:16551072,39480903:196279 +k1,20148:18757995,39480903:196278 +k1,20148:21159561,39480903:196279 +k1,20148:22042002,39480903:196279 +k1,20148:22594140,39480903:196278 +k1,20148:24949175,39480903:196279 +k1,20148:26138979,39480903:196278 +k1,20148:26986686,39480903:196279 +(1,20148:26986686,39480903:0,414482,115847 +r1,20164:28751799,39480903:1765113,530329,115847 +k1,20148:26986686,39480903:-1765113 +) +(1,20148:26986686,39480903:1765113,414482,115847 +k1,20148:26986686,39480903:3277 +h1,20148:28748522,39480903:0,411205,112570 +) +k1,20148:29121747,39480903:196278 +k1,20148:30514713,39480903:196279 +k1,20148:32583029,39480903:0 +) +(1,20150:6764466,40345983:25818563,513147,134348 +k1,20148:8448959,40345983:171267 +k1,20148:9567878,40345983:171268 +k1,20148:10758230,40345983:171267 +k1,20148:14540531,40345983:171267 +k1,20148:15363226,40345983:171267 +k1,20148:16282260,40345983:171268 +k1,20148:19590080,40345983:171267 +k1,20148:20522875,40345983:171267 +k1,20148:22628765,40345983:171267 +k1,20148:23819118,40345983:171268 +k1,20148:25978092,40345983:171267 +k1,20148:27253641,40345983:171267 +k1,20148:28172674,40345983:171267 +k1,20148:30579375,40345983:171268 +k1,20148:31363404,40345983:171267 +k1,20148:32583029,40345983:0 +) +(1,20150:6764466,41211063:25818563,513147,134348 +k1,20148:8929464,41211063:181223 +k1,20148:10129772,41211063:181223 +k1,20148:13954797,41211063:181223 +k1,20148:14795311,41211063:181222 +k1,20148:15995619,41211063:181223 +k1,20148:16591667,41211063:181205 +k1,20148:19788857,41211063:181223 +k1,20148:21042249,41211063:181223 +k1,20148:21882764,41211063:181223 +k1,20148:24172936,41211063:181223 +k1,20148:25373243,41211063:181222 +k1,20148:27622782,41211063:181223 +k1,20148:29317231,41211063:181223 +k1,20148:30114492,41211063:181223 +(1,20148:30114492,41211063:0,459977,115847 +r1,20164:32583029,41211063:2468537,575824,115847 +k1,20148:30114492,41211063:-2468537 +) +(1,20148:30114492,41211063:2468537,459977,115847 +k1,20148:30114492,41211063:3277 +h1,20148:32579752,41211063:0,411205,112570 +) +k1,20148:32583029,41211063:0 +) +(1,20150:6764466,42076143:25818563,513147,115847 +k1,20148:8163796,42076143:207885 +(1,20148:8163796,42076143:0,414482,115847 +r1,20164:9928909,42076143:1765113,530329,115847 +k1,20148:8163796,42076143:-1765113 +) +(1,20148:8163796,42076143:1765113,414482,115847 +k1,20148:8163796,42076143:3277 +h1,20148:9925632,42076143:0,411205,112570 +) +k1,20148:10136793,42076143:207884 +k1,20148:11966694,42076143:207885 +k1,20148:14155732,42076143:207885 +k1,20148:15815238,42076143:207884 +k1,20148:17898763,42076143:207885 +k1,20148:18924537,42076143:207885 +k1,20148:20080073,42076143:207885 +k1,20148:21989927,42076143:207884 +k1,20148:24689491,42076143:207885 +(1,20148:24689491,42076143:0,414482,115847 +r1,20164:25047757,42076143:358266,530329,115847 +k1,20148:24689491,42076143:-358266 +) +(1,20148:24689491,42076143:358266,414482,115847 +k1,20148:24689491,42076143:3277 +h1,20148:25044480,42076143:0,411205,112570 +) +k1,20148:25255642,42076143:207885 +k1,20148:26654971,42076143:207884 +(1,20148:26654971,42076143:0,414482,115847 +r1,20164:27013237,42076143:358266,530329,115847 +k1,20148:26654971,42076143:-358266 +) +(1,20148:26654971,42076143:358266,414482,115847 +k1,20148:26654971,42076143:3277 +h1,20148:27009960,42076143:0,411205,112570 +) +k1,20148:27221122,42076143:207885 +k1,20148:28420567,42076143:207885 +k1,20148:29647536,42076143:207884 +k1,20148:31923737,42076143:207885 +k1,20148:32583029,42076143:0 +) +(1,20150:6764466,42941223:25818563,505283,126483 +g1,20148:7982780,42941223 +g1,20148:11356573,42941223 +g1,20148:12207230,42941223 +g1,20148:14291930,42941223 +g1,20148:15510244,42941223 +g1,20148:19781225,42941223 +g1,20148:21455669,42941223 +g1,20148:23164848,42941223 +g1,20148:25949472,42941223 +g1,20148:27633091,42941223 +g1,20148:28898591,42941223 +k1,20150:32583029,42941223:1349391 +g1,20150:32583029,42941223 +) +] +g1,20164:32583029,43067706 +) +] +(1,20164:32583029,45706769:0,0,0 +g1,20164:32583029,45706769 +) +) +] +(1,20164:6630773,47279633:25952256,0,0 +h1,20164:6630773,47279633:25952256,0,0 +) +] +(1,20164:4262630,4025873:0,0,0 +[1,20164:-473656,4025873:0,0,0 +(1,20164:-473656,-710413:0,0,0 +(1,20164:-473656,-710413:0,0,0 +g1,20164:-473656,-710413 +) +g1,20164:-473656,-710413 ) ] ) ] !20675 -}337 -Input:3656:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3657:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3658:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3659:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}338 +Input:3660:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3661:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3662:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3663:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{338 -[1,20217:4262630,47279633:28320399,43253760,0 -(1,20217:4262630,4025873:0,0,0 -[1,20217:-473656,4025873:0,0,0 -(1,20217:-473656,-710413:0,0,0 -(1,20217:-473656,-644877:0,0,0 -k1,20217:-473656,-644877:-65536 +{339 +[1,20215:4262630,47279633:28320399,43253760,0 +(1,20215:4262630,4025873:0,0,0 +[1,20215:-473656,4025873:0,0,0 +(1,20215:-473656,-710413:0,0,0 +(1,20215:-473656,-644877:0,0,0 +k1,20215:-473656,-644877:-65536 ) -(1,20217:-473656,4736287:0,0,0 -k1,20217:-473656,4736287:5209943 +(1,20215:-473656,4736287:0,0,0 +k1,20215:-473656,4736287:5209943 ) -g1,20217:-473656,-710413 +g1,20215:-473656,-710413 ) ] ) -[1,20217:6630773,47279633:25952256,43253760,0 -[1,20217:6630773,4812305:25952256,786432,0 -(1,20217:6630773,4812305:25952256,485622,11795 -(1,20217:6630773,4812305:25952256,485622,11795 -g1,20217:3078558,4812305 -[1,20217:3078558,4812305:0,0,0 -(1,20217:3078558,2439708:0,1703936,0 -k1,20217:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20217:2537886,2439708:1179648,16384,0 +[1,20215:6630773,47279633:25952256,43253760,0 +[1,20215:6630773,4812305:25952256,786432,0 +(1,20215:6630773,4812305:25952256,485622,11795 +(1,20215:6630773,4812305:25952256,485622,11795 +g1,20215:3078558,4812305 +[1,20215:3078558,4812305:0,0,0 +(1,20215:3078558,2439708:0,1703936,0 +k1,20215:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20215:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20217:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20215:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20217:3078558,4812305:0,0,0 -(1,20217:3078558,2439708:0,1703936,0 -g1,20217:29030814,2439708 -g1,20217:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20217:36151628,1915420:16384,1179648,0 +[1,20215:3078558,4812305:0,0,0 +(1,20215:3078558,2439708:0,1703936,0 +g1,20215:29030814,2439708 +g1,20215:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20215:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20217:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20215:37855564,2439708:1179648,16384,0 ) ) -k1,20217:3078556,2439708:-34777008 +k1,20215:3078556,2439708:-34777008 ) ] -[1,20217:3078558,4812305:0,0,0 -(1,20217:3078558,49800853:0,16384,2228224 -k1,20217:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20217:2537886,49800853:1179648,16384,0 +[1,20215:3078558,4812305:0,0,0 +(1,20215:3078558,49800853:0,16384,2228224 +k1,20215:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20215:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20217:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20215:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20217:3078558,4812305:0,0,0 -(1,20217:3078558,49800853:0,16384,2228224 -g1,20217:29030814,49800853 -g1,20217:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20217:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20217:37855564,49800853:1179648,16384,0 -) -) -k1,20217:3078556,49800853:-34777008 -) -] -g1,20217:6630773,4812305 -g1,20217:6630773,4812305 -g1,20217:9560887,4812305 -k1,20217:31387651,4812305:21826764 -) -) -] -[1,20217:6630773,45706769:25952256,40108032,0 -(1,20217:6630773,45706769:25952256,40108032,0 -(1,20217:6630773,45706769:0,0,0 -g1,20217:6630773,45706769 -) -[1,20217:6630773,45706769:25952256,40108032,0 -v1,20166:6630773,6254097:0,393216,0 -(1,20166:6630773,10867488:25952256,5006607,0 -g1,20166:6630773,10867488 -g1,20166:6237557,10867488 -r1,20217:6368629,10867488:131072,5006607,0 -g1,20166:6567858,10867488 -g1,20166:6764466,10867488 -[1,20166:6764466,10867488:25818563,5006607,0 -v1,20154:6764466,6254097:0,393216,0 -(1,20164:6764466,10670880:25818563,4809999,196608 -g1,20164:6764466,10670880 -g1,20164:6764466,10670880 -g1,20164:6567858,10670880 -(1,20164:6567858,10670880:0,4809999,196608 -r1,20217:32779637,10670880:26211779,5006607,196608 -k1,20164:6567857,10670880:-26211780 -) -(1,20164:6567858,10670880:26211779,4809999,196608 -[1,20164:6764466,10670880:25818563,4613391,0 -(1,20156:6764466,6481928:25818563,424439,112852 -(1,20155:6764466,6481928:0,0,0 -g1,20155:6764466,6481928 -g1,20155:6764466,6481928 -g1,20155:6436786,6481928 -(1,20155:6436786,6481928:0,0,0 -) -g1,20155:6764466,6481928 -) -k1,20156:6764466,6481928:0 -g1,20156:10747914,6481928 -g1,20156:11411822,6481928 -k1,20156:11411822,6481928:0 -h1,20156:14731361,6481928:0,0,0 -k1,20156:32583029,6481928:17851668 -g1,20156:32583029,6481928 -) -(1,20157:6764466,7166783:25818563,424439,112852 -h1,20157:6764466,7166783:0,0,0 -g1,20157:7096420,7166783 -g1,20157:7428374,7166783 -g1,20157:7760328,7166783 -g1,20157:8092282,7166783 -g1,20157:8424236,7166783 -g1,20157:8756190,7166783 -g1,20157:9088144,7166783 -g1,20157:11743776,7166783 -g1,20157:12407684,7166783 -g1,20157:15727224,7166783 -g1,20157:17718948,7166783 -g1,20157:20042626,7166783 -g1,20157:20706534,7166783 -g1,20157:23362166,7166783 -h1,20157:23694120,7166783:0,0,0 -k1,20157:32583029,7166783:8888909 -g1,20157:32583029,7166783 -) -(1,20158:6764466,7851638:25818563,424439,112852 -h1,20158:6764466,7851638:0,0,0 -g1,20158:7096420,7851638 -g1,20158:7428374,7851638 -g1,20158:11743775,7851638 -h1,20158:12075729,7851638:0,0,0 -k1,20158:32583029,7851638:20507300 -g1,20158:32583029,7851638 -) -(1,20159:6764466,8536493:25818563,424439,112852 -h1,20159:6764466,8536493:0,0,0 -g1,20159:7096420,8536493 -g1,20159:7428374,8536493 -g1,20159:13735499,8536493 -g1,20159:14399407,8536493 -k1,20159:14399407,8536493:0 -h1,20159:16391131,8536493:0,0,0 -k1,20159:32583029,8536493:16191898 -g1,20159:32583029,8536493 -) -(1,20160:6764466,9221348:25818563,431045,106246 -h1,20160:6764466,9221348:0,0,0 -g1,20160:7096420,9221348 -g1,20160:7428374,9221348 -g1,20160:7760328,9221348 -g1,20160:8092282,9221348 -g1,20160:8424236,9221348 -g1,20160:8756190,9221348 -g1,20160:9088144,9221348 -g1,20160:9420098,9221348 -g1,20160:9752052,9221348 -g1,20160:10084006,9221348 -g1,20160:10415960,9221348 -g1,20160:10747914,9221348 -g1,20160:11079868,9221348 -g1,20160:11411822,9221348 -g1,20160:14067454,9221348 -g1,20160:14731362,9221348 -g1,20160:15063316,9221348 -g1,20160:15727224,9221348 -g1,20160:16391132,9221348 -g1,20160:18382856,9221348 -g1,20160:19046764,9221348 -g1,20160:20042626,9221348 -g1,20160:20706534,9221348 -g1,20160:21702396,9221348 -g1,20160:22366304,9221348 -k1,20160:22366304,9221348:0 -h1,20160:23362166,9221348:0,0,0 -k1,20160:32583029,9221348:9220863 -g1,20160:32583029,9221348 -) -(1,20161:6764466,9906203:25818563,424439,112852 -h1,20161:6764466,9906203:0,0,0 -g1,20161:7096420,9906203 -g1,20161:7428374,9906203 -g1,20161:7760328,9906203 -g1,20161:8092282,9906203 -g1,20161:8424236,9906203 -g1,20161:8756190,9906203 -g1,20161:9088144,9906203 -g1,20161:9420098,9906203 -g1,20161:9752052,9906203 -g1,20161:10084006,9906203 -g1,20161:10415960,9906203 -g1,20161:10747914,9906203 -g1,20161:11079868,9906203 -g1,20161:11411822,9906203 -g1,20161:15395269,9906203 -g1,20161:16059177,9906203 -g1,20161:19710671,9906203 -g1,20161:20374579,9906203 -g1,20161:23694119,9906203 -g1,20161:24358027,9906203 -g1,20161:26017797,9906203 -g1,20161:26681705,9906203 -g1,20161:27345613,9906203 -k1,20161:27345613,9906203:0 -h1,20161:29669291,9906203:0,0,0 -k1,20161:32583029,9906203:2913738 -g1,20161:32583029,9906203 -) -(1,20162:6764466,10591058:25818563,424439,79822 -h1,20162:6764466,10591058:0,0,0 -g1,20162:7096420,10591058 -g1,20162:7428374,10591058 -g1,20162:7760328,10591058 -g1,20162:8092282,10591058 -g1,20162:8424236,10591058 -g1,20162:8756190,10591058 -g1,20162:9088144,10591058 -g1,20162:9420098,10591058 -g1,20162:9752052,10591058 -g1,20162:10084006,10591058 -g1,20162:10415960,10591058 -g1,20162:10747914,10591058 -g1,20162:11079868,10591058 -g1,20162:11411822,10591058 -g1,20162:12407684,10591058 -g1,20162:13071592,10591058 -h1,20162:15063316,10591058:0,0,0 -k1,20162:32583028,10591058:17519712 -g1,20162:32583028,10591058 -) -] -) -g1,20164:32583029,10670880 -g1,20164:6764466,10670880 -g1,20164:6764466,10670880 -g1,20164:32583029,10670880 -g1,20164:32583029,10670880 -) -h1,20164:6764466,10867488:0,0,0 -] -g1,20166:32583029,10867488 -) -h1,20166:6630773,10867488:0,0,0 -(1,20169:6630773,11732568:25952256,513147,126483 -h1,20168:6630773,11732568:983040,0,0 -k1,20168:8468806,11732568:227158 -k1,20168:10388103,11732568:227157 -k1,20168:12486314,11732568:227158 -k1,20168:13171569,11732568:227158 -k1,20168:13930223,11732568:227157 -k1,20168:17054072,11732568:227158 -k1,20168:17932658,11732568:227158 -k1,20168:20956893,11732568:227158 -k1,20168:22791648,11732568:227157 -k1,20168:24412757,11732568:227158 -k1,20168:26352371,11732568:227158 -k1,20168:28567235,11732568:227157 -k1,20168:31914562,11732568:227158 -k1,20168:32583029,11732568:0 -) -(1,20169:6630773,12597648:25952256,513147,134348 -k1,20168:8586414,12597648:243185 -k1,20168:12614304,12597648:243186 -k1,20168:14128887,12597648:243185 -k1,20168:15610047,12597648:243185 -k1,20168:16512525,12597648:243186 -k1,20168:19755948,12597648:243185 -k1,20168:21202375,12597648:243186 -k1,20168:21977057,12597648:243185 -k1,20168:22981770,12597648:243185 -k1,20168:25159579,12597648:243186 -k1,20168:26421849,12597648:243185 -k1,20168:28652741,12597648:243185 -k1,20168:30087372,12597648:243186 -k1,20168:31764485,12597648:243185 -k1,20169:32583029,12597648:0 -) -(1,20169:6630773,13462728:25952256,513147,134348 -k1,20168:9319967,13462728:207346 -k1,20168:10546397,13462728:207345 -k1,20168:14364777,13462728:207346 -k1,20168:15223551,13462728:207346 -k1,20168:18363632,13462728:207345 -k1,20168:21594809,13462728:207346 -k1,20168:23028334,13462728:207346 -k1,20168:25431791,13462728:207346 -k1,20168:26290564,13462728:207345 -k1,20168:27590395,13462728:207346 -k1,20168:28745392,13462728:207346 -k1,20168:30178916,13462728:207345 -k1,20168:31069147,13462728:207346 -k1,20168:32583029,13462728:0 -) -(1,20169:6630773,14327808:25952256,505283,134348 -k1,20168:10821801,14327808:226755 -k1,20168:13983257,14327808:226754 -k1,20168:16790164,14327808:226755 -k1,20168:20064341,14327808:226754 -k1,20168:22337130,14327808:226755 -k1,20168:23021982,14327808:226755 -k1,20168:25878696,14327808:226754 -k1,20168:26756879,14327808:226755 -k1,20168:29985837,14327808:226754 -k1,20168:31706158,14327808:226755 -k1,20169:32583029,14327808:0 -) -(1,20169:6630773,15192888:25952256,505283,134348 -k1,20168:9914211,15192888:263539 -k1,20168:10793788,15192888:263539 -k1,20168:12809104,15192888:263539 -k1,20168:14943696,15192888:263539 -k1,20168:16588079,15192888:263539 -k1,20168:19431770,15192888:263539 -k1,20168:20981125,15192888:263539 -k1,20168:24005040,15192888:263539 -(1,20168:24005040,15192888:0,452978,115847 -r1,20217:29638983,15192888:5633943,568825,115847 -k1,20168:24005040,15192888:-5633943 -) -(1,20168:24005040,15192888:5633943,452978,115847 -k1,20168:24005040,15192888:3277 -h1,20168:29635706,15192888:0,411205,112570 -) -k1,20168:29902522,15192888:263539 -k1,20168:32051532,15192888:263539 -k1,20168:32583029,15192888:0 -) -(1,20169:6630773,16057968:25952256,513147,126483 -k1,20168:9098439,16057968:265656 -k1,20168:10015523,16057968:265656 -(1,20168:10015523,16057968:0,452978,115847 -r1,20217:14594331,16057968:4578808,568825,115847 -k1,20168:10015523,16057968:-4578808 -) -(1,20168:10015523,16057968:4578808,452978,115847 -k1,20168:10015523,16057968:3277 -h1,20168:14591054,16057968:0,411205,112570 -) -k1,20168:14859986,16057968:265655 -k1,20168:16197811,16057968:265656 -k1,20168:17857418,16057968:265656 -(1,20168:17857418,16057968:0,452978,115847 -r1,20217:22436226,16057968:4578808,568825,115847 -k1,20168:17857418,16057968:-4578808 -) -(1,20168:17857418,16057968:4578808,452978,115847 -g1,20168:20322678,16057968 -g1,20168:21026102,16057968 -h1,20168:22432949,16057968:0,411205,112570 -) -k1,20168:22701882,16057968:265656 -k1,20168:26814501,16057968:265656 -k1,20168:27766318,16057968:265655 -k1,20168:28820372,16057968:265656 -k1,20168:31351608,16057968:265656 -k1,20169:32583029,16057968:0 -) -(1,20169:6630773,16923048:25952256,513147,126483 -g1,20168:9424572,16923048 -g1,20168:10283093,16923048 -g1,20168:11501407,16923048 -g1,20168:14186417,16923048 -g1,20168:15044938,16923048 -k1,20169:32583029,16923048:13413911 -g1,20169:32583029,16923048 -) -v1,20171:6630773,17607903:0,393216,0 -(1,20179:6630773,20694612:25952256,3479925,196608 -g1,20179:6630773,20694612 -g1,20179:6630773,20694612 -g1,20179:6434165,20694612 -(1,20179:6434165,20694612:0,3479925,196608 -r1,20217:32779637,20694612:26345472,3676533,196608 -k1,20179:6434165,20694612:-26345472 -) -(1,20179:6434165,20694612:26345472,3479925,196608 -[1,20179:6630773,20694612:25952256,3283317,0 -(1,20173:6630773,17842340:25952256,431045,106246 -(1,20172:6630773,17842340:0,0,0 -g1,20172:6630773,17842340 -g1,20172:6630773,17842340 -g1,20172:6303093,17842340 -(1,20172:6303093,17842340:0,0,0 -) -g1,20172:6630773,17842340 -) -g1,20173:10282266,17842340 -g1,20173:11278128,17842340 -g1,20173:11942036,17842340 -g1,20173:12605944,17842340 -g1,20173:13269852,17842340 -g1,20173:13933760,17842340 -k1,20173:13933760,17842340:0 -h1,20173:15925484,17842340:0,0,0 -k1,20173:32583029,17842340:16657545 -g1,20173:32583029,17842340 -) -(1,20174:6630773,18527195:25952256,431045,106246 -h1,20174:6630773,18527195:0,0,0 -g1,20174:7626635,18527195 -g1,20174:8290543,18527195 -g1,20174:11942037,18527195 -g1,20174:12605945,18527195 -g1,20174:16921347,18527195 -h1,20174:17253301,18527195:0,0,0 -k1,20174:32583029,18527195:15329728 -g1,20174:32583029,18527195 -) -(1,20175:6630773,19212050:25952256,431045,106246 -h1,20175:6630773,19212050:0,0,0 -g1,20175:6962727,19212050 -g1,20175:7294681,19212050 -g1,20175:14929622,19212050 -g1,20175:15593530,19212050 -g1,20175:19576977,19212050 -g1,20175:21900655,19212050 -g1,20175:22564563,19212050 -g1,20175:25552149,19212050 -h1,20175:25884103,19212050:0,0,0 -k1,20175:32583029,19212050:6698926 -g1,20175:32583029,19212050 -) -(1,20176:6630773,19896905:25952256,431045,112852 -h1,20176:6630773,19896905:0,0,0 -g1,20176:6962727,19896905 -g1,20176:7294681,19896905 -g1,20176:14265714,19896905 -g1,20176:14929622,19896905 -g1,20176:18913069,19896905 -g1,20176:21568701,19896905 -g1,20176:22232609,19896905 -g1,20176:28207780,19896905 -k1,20176:28207780,19896905:0 -h1,20176:30199504,19896905:0,0,0 -k1,20176:32583029,19896905:2383525 -g1,20176:32583029,19896905 -) -(1,20177:6630773,20581760:25952256,424439,112852 -h1,20177:6630773,20581760:0,0,0 -g1,20177:6962727,20581760 -g1,20177:7294681,20581760 -g1,20177:7626635,20581760 -g1,20177:7958589,20581760 -g1,20177:8290543,20581760 -g1,20177:8622497,20581760 -g1,20177:8954451,20581760 -g1,20177:9286405,20581760 -g1,20177:9618359,20581760 -g1,20177:9950313,20581760 -g1,20177:10282267,20581760 -g1,20177:10614221,20581760 -g1,20177:10946175,20581760 -g1,20177:11278129,20581760 -g1,20177:11610083,20581760 -g1,20177:13933761,20581760 -g1,20177:14597669,20581760 -g1,20177:17585255,20581760 -g1,20177:20240887,20581760 -g1,20177:20904795,20581760 -h1,20177:23560427,20581760:0,0,0 -k1,20177:32583029,20581760:9022602 -g1,20177:32583029,20581760 -) -] -) -g1,20179:32583029,20694612 -g1,20179:6630773,20694612 -g1,20179:6630773,20694612 -g1,20179:32583029,20694612 -g1,20179:32583029,20694612 -) -h1,20179:6630773,20891220:0,0,0 -(1,20182:6630773,30040422:25952256,9083666,0 -k1,20182:10523651,30040422:3892878 -h1,20181:10523651,30040422:0,0,0 -(1,20181:10523651,30040422:18166500,9083666,0 -(1,20181:10523651,30040422:18167376,9083688,0 -(1,20181:10523651,30040422:18167376,9083688,0 -(1,20181:10523651,30040422:0,9083688,0 -(1,20181:10523651,30040422:0,14208860,0 -(1,20181:10523651,30040422:28417720,14208860,0 -) -k1,20181:10523651,30040422:-28417720 -) -) -g1,20181:28691027,30040422 -) -) -) -g1,20182:28690151,30040422 -k1,20182:32583029,30040422:3892878 -) -(1,20189:6630773,30905502:25952256,505283,134348 -h1,20188:6630773,30905502:983040,0,0 -k1,20188:10296976,30905502:148230 -k1,20188:13492630,30905502:148231 -k1,20188:14926676,30905502:148230 -k1,20188:17120940,30905502:148230 -k1,20188:17727268,30905502:148231 -k1,20188:20505458,30905502:148230 -k1,20188:21305117,30905502:148231 -k1,20188:24250424,30905502:148230 -k1,20188:26006252,30905502:148230 -k1,20188:27548434,30905502:148231 -k1,20188:30687072,30905502:148230 -k1,20188:32583029,30905502:0 -) -(1,20189:6630773,31770582:25952256,513147,134348 -k1,20188:8450673,31770582:252279 -k1,20188:9058812,31770582:252279 -k1,20188:11298798,31770582:252279 -k1,20188:12412219,31770582:252278 -k1,20188:13861185,31770582:252279 -k1,20188:17185792,31770582:252279 -k1,20188:19643358,31770582:252279 -k1,20188:20547065,31770582:252279 -(1,20188:20547065,31770582:0,452978,115847 -r1,20217:23015602,31770582:2468537,568825,115847 -k1,20188:20547065,31770582:-2468537 -) -(1,20188:20547065,31770582:2468537,452978,115847 -k1,20188:20547065,31770582:3277 -h1,20188:23012325,31770582:0,411205,112570 -) -k1,20188:23267881,31770582:252279 -k1,20188:27060415,31770582:252279 -k1,20188:28331778,31770582:252278 -k1,20188:30652373,31770582:252279 -k1,20188:31563944,31770582:252279 -k1,20188:32583029,31770582:0 -) -(1,20189:6630773,32635662:25952256,505283,7863 -g1,20188:9543193,32635662 -g1,20188:10358460,32635662 -g1,20188:11576774,32635662 -k1,20189:32583030,32635662:19388172 -g1,20189:32583030,32635662 -) -v1,20191:6630773,33320517:0,393216,0 -(1,20208:6630773,42557709:25952256,9630408,196608 -g1,20208:6630773,42557709 -g1,20208:6630773,42557709 -g1,20208:6434165,42557709 -(1,20208:6434165,42557709:0,9630408,196608 -r1,20217:32779637,42557709:26345472,9827016,196608 -k1,20208:6434165,42557709:-26345472 -) -(1,20208:6434165,42557709:26345472,9630408,196608 -[1,20208:6630773,42557709:25952256,9433800,0 -(1,20193:6630773,33548348:25952256,424439,112852 -(1,20192:6630773,33548348:0,0,0 -g1,20192:6630773,33548348 -g1,20192:6630773,33548348 -g1,20192:6303093,33548348 -(1,20192:6303093,33548348:0,0,0 -) -g1,20192:6630773,33548348 -) -k1,20193:6630773,33548348:0 -g1,20193:10614221,33548348 -g1,20193:11278129,33548348 -k1,20193:11278129,33548348:0 -h1,20193:13601807,33548348:0,0,0 -k1,20193:32583029,33548348:18981222 -g1,20193:32583029,33548348 -) -(1,20194:6630773,34233203:25952256,431045,112852 -h1,20194:6630773,34233203:0,0,0 -g1,20194:6962727,34233203 -g1,20194:7294681,34233203 -g1,20194:7626635,34233203 -g1,20194:7958589,34233203 -g1,20194:8290543,34233203 -g1,20194:8622497,34233203 -g1,20194:8954451,34233203 -g1,20194:11610083,34233203 -g1,20194:12273991,34233203 -g1,20194:14265715,34233203 -g1,20194:14929623,34233203 -g1,20194:16921347,34233203 -g1,20194:17585255,34233203 -g1,20194:18249163,34233203 -g1,20194:19908933,34233203 -g1,20194:22232611,34233203 -g1,20194:22896519,34233203 -g1,20194:27543875,34233203 -h1,20194:27875829,34233203:0,0,0 -k1,20194:32583029,34233203:4707200 -g1,20194:32583029,34233203 -) -(1,20195:6630773,34918058:25952256,431045,106246 -h1,20195:6630773,34918058:0,0,0 -g1,20195:6962727,34918058 -g1,20195:7294681,34918058 -g1,20195:14929622,34918058 -g1,20195:15593530,34918058 -g1,20195:19576977,34918058 -g1,20195:21900655,34918058 -g1,20195:22564563,34918058 -g1,20195:25552149,34918058 -h1,20195:25884103,34918058:0,0,0 -k1,20195:32583029,34918058:6698926 -g1,20195:32583029,34918058 -) -(1,20196:6630773,35602913:25952256,431045,112852 -h1,20196:6630773,35602913:0,0,0 -g1,20196:6962727,35602913 -g1,20196:7294681,35602913 -g1,20196:15261575,35602913 -g1,20196:15925483,35602913 -g1,20196:20240885,35602913 -g1,20196:20904793,35602913 -k1,20196:20904793,35602913:0 -h1,20196:24888240,35602913:0,0,0 -k1,20196:32583029,35602913:7694789 -g1,20196:32583029,35602913 -) -(1,20197:6630773,36287768:25952256,424439,86428 -h1,20197:6630773,36287768:0,0,0 -g1,20197:6962727,36287768 -g1,20197:7294681,36287768 -g1,20197:7626635,36287768 -g1,20197:7958589,36287768 -g1,20197:8290543,36287768 -g1,20197:8622497,36287768 -g1,20197:8954451,36287768 -g1,20197:9286405,36287768 -g1,20197:9618359,36287768 -g1,20197:9950313,36287768 -g1,20197:10282267,36287768 -g1,20197:10614221,36287768 -g1,20197:10946175,36287768 -g1,20197:11278129,36287768 -g1,20197:13601807,36287768 -g1,20197:14265715,36287768 -k1,20197:14265715,36287768:0 -h1,20197:16921347,36287768:0,0,0 -k1,20197:32583029,36287768:15661682 -g1,20197:32583029,36287768 -) -(1,20198:6630773,36972623:25952256,344616,106246 -h1,20198:6630773,36972623:0,0,0 -g1,20198:6962727,36972623 -g1,20198:7294681,36972623 -g1,20198:7626635,36972623 -g1,20198:7958589,36972623 -g1,20198:8290543,36972623 -g1,20198:8622497,36972623 -g1,20198:8954451,36972623 -g1,20198:9286405,36972623 -g1,20198:9618359,36972623 -g1,20198:9950313,36972623 -g1,20198:10282267,36972623 -g1,20198:10614221,36972623 -g1,20198:10946175,36972623 -g1,20198:11278129,36972623 -g1,20198:13269853,36972623 -g1,20198:13933761,36972623 -k1,20198:13933761,36972623:0 -h1,20198:15593531,36972623:0,0,0 -k1,20198:32583029,36972623:16989498 -g1,20198:32583029,36972623 -) -(1,20199:6630773,37657478:25952256,424439,86428 -h1,20199:6630773,37657478:0,0,0 -g1,20199:6962727,37657478 -g1,20199:7294681,37657478 -g1,20199:7626635,37657478 -g1,20199:7958589,37657478 -g1,20199:8290543,37657478 -g1,20199:8622497,37657478 -g1,20199:8954451,37657478 -g1,20199:9286405,37657478 -g1,20199:9618359,37657478 -g1,20199:9950313,37657478 -g1,20199:10282267,37657478 -g1,20199:10614221,37657478 -g1,20199:10946175,37657478 -g1,20199:11278129,37657478 -g1,20199:13933761,37657478 -g1,20199:14597669,37657478 -g1,20199:18581116,37657478 -g1,20199:19245024,37657478 -k1,20199:19245024,37657478:0 -h1,20199:21568702,37657478:0,0,0 -k1,20199:32583029,37657478:11014327 -g1,20199:32583029,37657478 -) -(1,20200:6630773,38342333:25952256,424439,86428 -h1,20200:6630773,38342333:0,0,0 -g1,20200:6962727,38342333 -g1,20200:7294681,38342333 -g1,20200:7626635,38342333 -g1,20200:7958589,38342333 -g1,20200:8290543,38342333 -g1,20200:8622497,38342333 -g1,20200:8954451,38342333 -g1,20200:9286405,38342333 -g1,20200:9618359,38342333 -g1,20200:9950313,38342333 -g1,20200:10282267,38342333 -g1,20200:10614221,38342333 -g1,20200:10946175,38342333 -g1,20200:11278129,38342333 -g1,20200:11610083,38342333 -g1,20200:11942037,38342333 -g1,20200:12273991,38342333 -g1,20200:12605945,38342333 -g1,20200:12937899,38342333 -g1,20200:13269853,38342333 -g1,20200:13601807,38342333 -g1,20200:13933761,38342333 -g1,20200:14265715,38342333 -g1,20200:14597669,38342333 -g1,20200:14929623,38342333 -g1,20200:15261577,38342333 -g1,20200:18249162,38342333 -g1,20200:18913070,38342333 -k1,20200:18913070,38342333:0 -h1,20200:22564563,38342333:0,0,0 -k1,20200:32583029,38342333:10018466 -g1,20200:32583029,38342333 -) -(1,20201:6630773,39027188:25952256,424439,86428 -h1,20201:6630773,39027188:0,0,0 -g1,20201:6962727,39027188 -g1,20201:7294681,39027188 -g1,20201:7626635,39027188 -g1,20201:7958589,39027188 -g1,20201:8290543,39027188 -g1,20201:8622497,39027188 -g1,20201:8954451,39027188 -g1,20201:9286405,39027188 -g1,20201:9618359,39027188 -g1,20201:9950313,39027188 -g1,20201:10282267,39027188 -g1,20201:10614221,39027188 -g1,20201:10946175,39027188 -g1,20201:11278129,39027188 -g1,20201:11610083,39027188 -g1,20201:11942037,39027188 -g1,20201:12273991,39027188 -g1,20201:12605945,39027188 -g1,20201:12937899,39027188 -g1,20201:13269853,39027188 -g1,20201:13601807,39027188 -g1,20201:13933761,39027188 -g1,20201:14265715,39027188 -g1,20201:14597669,39027188 -g1,20201:14929623,39027188 -g1,20201:15261577,39027188 -g1,20201:17585255,39027188 -g1,20201:18249163,39027188 -k1,20201:18249163,39027188:0 -h1,20201:22232610,39027188:0,0,0 -k1,20201:32583029,39027188:10350419 -g1,20201:32583029,39027188 -) -(1,20202:6630773,39712043:25952256,424439,86428 -h1,20202:6630773,39712043:0,0,0 -g1,20202:6962727,39712043 -g1,20202:7294681,39712043 -g1,20202:7626635,39712043 -g1,20202:7958589,39712043 -g1,20202:8290543,39712043 -g1,20202:8622497,39712043 -g1,20202:8954451,39712043 -g1,20202:9286405,39712043 -g1,20202:9618359,39712043 -g1,20202:9950313,39712043 -g1,20202:10282267,39712043 -g1,20202:10614221,39712043 -g1,20202:10946175,39712043 -g1,20202:11278129,39712043 -g1,20202:11610083,39712043 -g1,20202:11942037,39712043 -g1,20202:12273991,39712043 -g1,20202:12605945,39712043 -g1,20202:12937899,39712043 -g1,20202:13269853,39712043 -g1,20202:13601807,39712043 -g1,20202:13933761,39712043 -g1,20202:14265715,39712043 -g1,20202:14597669,39712043 -g1,20202:14929623,39712043 -g1,20202:15261577,39712043 -g1,20202:19245024,39712043 -g1,20202:19908932,39712043 -k1,20202:19908932,39712043:0 -h1,20202:23892379,39712043:0,0,0 -k1,20202:32583029,39712043:8690650 -g1,20202:32583029,39712043 -) -(1,20203:6630773,40396898:25952256,424439,106246 -h1,20203:6630773,40396898:0,0,0 -g1,20203:6962727,40396898 -g1,20203:7294681,40396898 -g1,20203:7626635,40396898 -g1,20203:7958589,40396898 -g1,20203:8290543,40396898 -g1,20203:8622497,40396898 -g1,20203:8954451,40396898 -g1,20203:9286405,40396898 -g1,20203:9618359,40396898 -g1,20203:9950313,40396898 -g1,20203:10282267,40396898 -g1,20203:10614221,40396898 -g1,20203:10946175,40396898 -g1,20203:11278129,40396898 -g1,20203:11610083,40396898 -g1,20203:11942037,40396898 -g1,20203:12273991,40396898 -g1,20203:12605945,40396898 -g1,20203:12937899,40396898 -g1,20203:13269853,40396898 -g1,20203:13601807,40396898 -g1,20203:13933761,40396898 -g1,20203:14265715,40396898 -g1,20203:14597669,40396898 -g1,20203:14929623,40396898 -g1,20203:15261577,40396898 -g1,20203:19245024,40396898 -g1,20203:19908932,40396898 -k1,20203:19908932,40396898:0 -h1,20203:23560425,40396898:0,0,0 -k1,20203:32583029,40396898:9022604 -g1,20203:32583029,40396898 -) -(1,20204:6630773,41081753:25952256,424439,112852 -h1,20204:6630773,41081753:0,0,0 -g1,20204:6962727,41081753 -g1,20204:7294681,41081753 -g1,20204:7626635,41081753 -g1,20204:7958589,41081753 -g1,20204:8290543,41081753 -g1,20204:8622497,41081753 -g1,20204:8954451,41081753 -g1,20204:9286405,41081753 -g1,20204:9618359,41081753 -g1,20204:9950313,41081753 -g1,20204:10282267,41081753 -g1,20204:10614221,41081753 -g1,20204:10946175,41081753 -g1,20204:11278129,41081753 -g1,20204:13933761,41081753 -g1,20204:14597669,41081753 -g1,20204:16921347,41081753 -g1,20204:19576979,41081753 -g1,20204:20240887,41081753 -g1,20204:23228473,41081753 -h1,20204:23560427,41081753:0,0,0 -k1,20204:32583029,41081753:9022602 -g1,20204:32583029,41081753 -) -(1,20205:6630773,41766608:25952256,424439,112852 -h1,20205:6630773,41766608:0,0,0 -g1,20205:6962727,41766608 -g1,20205:7294681,41766608 -g1,20205:11610082,41766608 -h1,20205:11942036,41766608:0,0,0 -k1,20205:32583028,41766608:20640992 -g1,20205:32583028,41766608 -) -(1,20206:6630773,42451463:25952256,424439,106246 -h1,20206:6630773,42451463:0,0,0 -g1,20206:6962727,42451463 -g1,20206:7294681,42451463 -g1,20206:12605944,42451463 -g1,20206:13269852,42451463 -h1,20206:14265714,42451463:0,0,0 -k1,20206:32583030,42451463:18317316 -g1,20206:32583030,42451463 -) -] -) -g1,20208:32583029,42557709 -g1,20208:6630773,42557709 -g1,20208:6630773,42557709 -g1,20208:32583029,42557709 -g1,20208:32583029,42557709 -) -h1,20208:6630773,42754317:0,0,0 -] -(1,20217:32583029,45706769:0,0,0 -g1,20217:32583029,45706769 -) -) -] -(1,20217:6630773,47279633:25952256,0,0 -h1,20217:6630773,47279633:25952256,0,0 -) -] -(1,20217:4262630,4025873:0,0,0 -[1,20217:-473656,4025873:0,0,0 -(1,20217:-473656,-710413:0,0,0 -(1,20217:-473656,-710413:0,0,0 -g1,20217:-473656,-710413 -) -g1,20217:-473656,-710413 +[1,20215:3078558,4812305:0,0,0 +(1,20215:3078558,49800853:0,16384,2228224 +g1,20215:29030814,49800853 +g1,20215:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20215:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20215:37855564,49800853:1179648,16384,0 +) +) +k1,20215:3078556,49800853:-34777008 +) +] +g1,20215:6630773,4812305 +g1,20215:6630773,4812305 +g1,20215:9560887,4812305 +k1,20215:31387651,4812305:21826764 +) +) +] +[1,20215:6630773,45706769:25952256,40108032,0 +(1,20215:6630773,45706769:25952256,40108032,0 +(1,20215:6630773,45706769:0,0,0 +g1,20215:6630773,45706769 +) +[1,20215:6630773,45706769:25952256,40108032,0 +v1,20164:6630773,6254097:0,393216,0 +(1,20164:6630773,10867488:25952256,5006607,0 +g1,20164:6630773,10867488 +g1,20164:6237557,10867488 +r1,20215:6368629,10867488:131072,5006607,0 +g1,20164:6567858,10867488 +g1,20164:6764466,10867488 +[1,20164:6764466,10867488:25818563,5006607,0 +v1,20152:6764466,6254097:0,393216,0 +(1,20162:6764466,10670880:25818563,4809999,196608 +g1,20162:6764466,10670880 +g1,20162:6764466,10670880 +g1,20162:6567858,10670880 +(1,20162:6567858,10670880:0,4809999,196608 +r1,20215:32779637,10670880:26211779,5006607,196608 +k1,20162:6567857,10670880:-26211780 +) +(1,20162:6567858,10670880:26211779,4809999,196608 +[1,20162:6764466,10670880:25818563,4613391,0 +(1,20154:6764466,6481928:25818563,424439,112852 +(1,20153:6764466,6481928:0,0,0 +g1,20153:6764466,6481928 +g1,20153:6764466,6481928 +g1,20153:6436786,6481928 +(1,20153:6436786,6481928:0,0,0 +) +g1,20153:6764466,6481928 +) +k1,20154:6764466,6481928:0 +g1,20154:10747914,6481928 +g1,20154:11411822,6481928 +k1,20154:11411822,6481928:0 +h1,20154:14731361,6481928:0,0,0 +k1,20154:32583029,6481928:17851668 +g1,20154:32583029,6481928 +) +(1,20155:6764466,7166783:25818563,424439,112852 +h1,20155:6764466,7166783:0,0,0 +g1,20155:7096420,7166783 +g1,20155:7428374,7166783 +g1,20155:7760328,7166783 +g1,20155:8092282,7166783 +g1,20155:8424236,7166783 +g1,20155:8756190,7166783 +g1,20155:9088144,7166783 +g1,20155:11743776,7166783 +g1,20155:12407684,7166783 +g1,20155:15727224,7166783 +g1,20155:17718948,7166783 +g1,20155:20042626,7166783 +g1,20155:20706534,7166783 +g1,20155:23362166,7166783 +h1,20155:23694120,7166783:0,0,0 +k1,20155:32583029,7166783:8888909 +g1,20155:32583029,7166783 +) +(1,20156:6764466,7851638:25818563,424439,112852 +h1,20156:6764466,7851638:0,0,0 +g1,20156:7096420,7851638 +g1,20156:7428374,7851638 +g1,20156:11743775,7851638 +h1,20156:12075729,7851638:0,0,0 +k1,20156:32583029,7851638:20507300 +g1,20156:32583029,7851638 +) +(1,20157:6764466,8536493:25818563,424439,112852 +h1,20157:6764466,8536493:0,0,0 +g1,20157:7096420,8536493 +g1,20157:7428374,8536493 +g1,20157:13735499,8536493 +g1,20157:14399407,8536493 +k1,20157:14399407,8536493:0 +h1,20157:16391131,8536493:0,0,0 +k1,20157:32583029,8536493:16191898 +g1,20157:32583029,8536493 +) +(1,20158:6764466,9221348:25818563,431045,106246 +h1,20158:6764466,9221348:0,0,0 +g1,20158:7096420,9221348 +g1,20158:7428374,9221348 +g1,20158:7760328,9221348 +g1,20158:8092282,9221348 +g1,20158:8424236,9221348 +g1,20158:8756190,9221348 +g1,20158:9088144,9221348 +g1,20158:9420098,9221348 +g1,20158:9752052,9221348 +g1,20158:10084006,9221348 +g1,20158:10415960,9221348 +g1,20158:10747914,9221348 +g1,20158:11079868,9221348 +g1,20158:11411822,9221348 +g1,20158:14067454,9221348 +g1,20158:14731362,9221348 +g1,20158:15063316,9221348 +g1,20158:15727224,9221348 +g1,20158:16391132,9221348 +g1,20158:18382856,9221348 +g1,20158:19046764,9221348 +g1,20158:20042626,9221348 +g1,20158:20706534,9221348 +g1,20158:21702396,9221348 +g1,20158:22366304,9221348 +k1,20158:22366304,9221348:0 +h1,20158:23362166,9221348:0,0,0 +k1,20158:32583029,9221348:9220863 +g1,20158:32583029,9221348 +) +(1,20159:6764466,9906203:25818563,424439,112852 +h1,20159:6764466,9906203:0,0,0 +g1,20159:7096420,9906203 +g1,20159:7428374,9906203 +g1,20159:7760328,9906203 +g1,20159:8092282,9906203 +g1,20159:8424236,9906203 +g1,20159:8756190,9906203 +g1,20159:9088144,9906203 +g1,20159:9420098,9906203 +g1,20159:9752052,9906203 +g1,20159:10084006,9906203 +g1,20159:10415960,9906203 +g1,20159:10747914,9906203 +g1,20159:11079868,9906203 +g1,20159:11411822,9906203 +g1,20159:15395269,9906203 +g1,20159:16059177,9906203 +g1,20159:19710671,9906203 +g1,20159:20374579,9906203 +g1,20159:23694119,9906203 +g1,20159:24358027,9906203 +g1,20159:26017797,9906203 +g1,20159:26681705,9906203 +g1,20159:27345613,9906203 +k1,20159:27345613,9906203:0 +h1,20159:29669291,9906203:0,0,0 +k1,20159:32583029,9906203:2913738 +g1,20159:32583029,9906203 +) +(1,20160:6764466,10591058:25818563,424439,79822 +h1,20160:6764466,10591058:0,0,0 +g1,20160:7096420,10591058 +g1,20160:7428374,10591058 +g1,20160:7760328,10591058 +g1,20160:8092282,10591058 +g1,20160:8424236,10591058 +g1,20160:8756190,10591058 +g1,20160:9088144,10591058 +g1,20160:9420098,10591058 +g1,20160:9752052,10591058 +g1,20160:10084006,10591058 +g1,20160:10415960,10591058 +g1,20160:10747914,10591058 +g1,20160:11079868,10591058 +g1,20160:11411822,10591058 +g1,20160:12407684,10591058 +g1,20160:13071592,10591058 +h1,20160:15063316,10591058:0,0,0 +k1,20160:32583028,10591058:17519712 +g1,20160:32583028,10591058 +) +] +) +g1,20162:32583029,10670880 +g1,20162:6764466,10670880 +g1,20162:6764466,10670880 +g1,20162:32583029,10670880 +g1,20162:32583029,10670880 +) +h1,20162:6764466,10867488:0,0,0 +] +g1,20164:32583029,10867488 +) +h1,20164:6630773,10867488:0,0,0 +(1,20167:6630773,11732568:25952256,513147,126483 +h1,20166:6630773,11732568:983040,0,0 +k1,20166:8468806,11732568:227158 +k1,20166:10388103,11732568:227157 +k1,20166:12486314,11732568:227158 +k1,20166:13171569,11732568:227158 +k1,20166:13930223,11732568:227157 +k1,20166:17054072,11732568:227158 +k1,20166:17932658,11732568:227158 +k1,20166:20956893,11732568:227158 +k1,20166:22791648,11732568:227157 +k1,20166:24412757,11732568:227158 +k1,20166:26352371,11732568:227158 +k1,20166:28567235,11732568:227157 +k1,20166:31914562,11732568:227158 +k1,20166:32583029,11732568:0 +) +(1,20167:6630773,12597648:25952256,513147,134348 +k1,20166:8586414,12597648:243185 +k1,20166:12614304,12597648:243186 +k1,20166:14128887,12597648:243185 +k1,20166:15610047,12597648:243185 +k1,20166:16512525,12597648:243186 +k1,20166:19755948,12597648:243185 +k1,20166:21202375,12597648:243186 +k1,20166:21977057,12597648:243185 +k1,20166:22981770,12597648:243185 +k1,20166:25159579,12597648:243186 +k1,20166:26421849,12597648:243185 +k1,20166:28652741,12597648:243185 +k1,20166:30087372,12597648:243186 +k1,20166:31764485,12597648:243185 +k1,20167:32583029,12597648:0 +) +(1,20167:6630773,13462728:25952256,513147,134348 +k1,20166:9319967,13462728:207346 +k1,20166:10546397,13462728:207345 +k1,20166:14364777,13462728:207346 +k1,20166:15223551,13462728:207346 +k1,20166:18363632,13462728:207345 +k1,20166:21594809,13462728:207346 +k1,20166:23028334,13462728:207346 +k1,20166:25431791,13462728:207346 +k1,20166:26290564,13462728:207345 +k1,20166:27590395,13462728:207346 +k1,20166:28745392,13462728:207346 +k1,20166:30178916,13462728:207345 +k1,20166:31069147,13462728:207346 +k1,20166:32583029,13462728:0 +) +(1,20167:6630773,14327808:25952256,505283,134348 +k1,20166:10821801,14327808:226755 +k1,20166:13983257,14327808:226754 +k1,20166:16790164,14327808:226755 +k1,20166:20064341,14327808:226754 +k1,20166:22337130,14327808:226755 +k1,20166:23021982,14327808:226755 +k1,20166:25878696,14327808:226754 +k1,20166:26756879,14327808:226755 +k1,20166:29985837,14327808:226754 +k1,20166:31706158,14327808:226755 +k1,20167:32583029,14327808:0 +) +(1,20167:6630773,15192888:25952256,505283,134348 +k1,20166:9914211,15192888:263539 +k1,20166:10793788,15192888:263539 +k1,20166:12809104,15192888:263539 +k1,20166:14943696,15192888:263539 +k1,20166:16588079,15192888:263539 +k1,20166:19431770,15192888:263539 +k1,20166:20981125,15192888:263539 +k1,20166:24005040,15192888:263539 +(1,20166:24005040,15192888:0,452978,115847 +r1,20215:29638983,15192888:5633943,568825,115847 +k1,20166:24005040,15192888:-5633943 +) +(1,20166:24005040,15192888:5633943,452978,115847 +k1,20166:24005040,15192888:3277 +h1,20166:29635706,15192888:0,411205,112570 +) +k1,20166:29902522,15192888:263539 +k1,20166:32051532,15192888:263539 +k1,20166:32583029,15192888:0 +) +(1,20167:6630773,16057968:25952256,513147,126483 +k1,20166:9098439,16057968:265656 +k1,20166:10015523,16057968:265656 +(1,20166:10015523,16057968:0,452978,115847 +r1,20215:14594331,16057968:4578808,568825,115847 +k1,20166:10015523,16057968:-4578808 +) +(1,20166:10015523,16057968:4578808,452978,115847 +k1,20166:10015523,16057968:3277 +h1,20166:14591054,16057968:0,411205,112570 +) +k1,20166:14859986,16057968:265655 +k1,20166:16197811,16057968:265656 +k1,20166:17857418,16057968:265656 +(1,20166:17857418,16057968:0,452978,115847 +r1,20215:22436226,16057968:4578808,568825,115847 +k1,20166:17857418,16057968:-4578808 +) +(1,20166:17857418,16057968:4578808,452978,115847 +g1,20166:20322678,16057968 +g1,20166:21026102,16057968 +h1,20166:22432949,16057968:0,411205,112570 +) +k1,20166:22701882,16057968:265656 +k1,20166:26814501,16057968:265656 +k1,20166:27766318,16057968:265655 +k1,20166:28820372,16057968:265656 +k1,20166:31351608,16057968:265656 +k1,20167:32583029,16057968:0 +) +(1,20167:6630773,16923048:25952256,513147,126483 +g1,20166:9424572,16923048 +g1,20166:10283093,16923048 +g1,20166:11501407,16923048 +g1,20166:14186417,16923048 +g1,20166:15044938,16923048 +k1,20167:32583029,16923048:13413911 +g1,20167:32583029,16923048 +) +v1,20169:6630773,17607903:0,393216,0 +(1,20177:6630773,20694612:25952256,3479925,196608 +g1,20177:6630773,20694612 +g1,20177:6630773,20694612 +g1,20177:6434165,20694612 +(1,20177:6434165,20694612:0,3479925,196608 +r1,20215:32779637,20694612:26345472,3676533,196608 +k1,20177:6434165,20694612:-26345472 +) +(1,20177:6434165,20694612:26345472,3479925,196608 +[1,20177:6630773,20694612:25952256,3283317,0 +(1,20171:6630773,17842340:25952256,431045,106246 +(1,20170:6630773,17842340:0,0,0 +g1,20170:6630773,17842340 +g1,20170:6630773,17842340 +g1,20170:6303093,17842340 +(1,20170:6303093,17842340:0,0,0 +) +g1,20170:6630773,17842340 +) +g1,20171:10282266,17842340 +g1,20171:11278128,17842340 +g1,20171:11942036,17842340 +g1,20171:12605944,17842340 +g1,20171:13269852,17842340 +g1,20171:13933760,17842340 +k1,20171:13933760,17842340:0 +h1,20171:15925484,17842340:0,0,0 +k1,20171:32583029,17842340:16657545 +g1,20171:32583029,17842340 +) +(1,20172:6630773,18527195:25952256,431045,106246 +h1,20172:6630773,18527195:0,0,0 +g1,20172:7626635,18527195 +g1,20172:8290543,18527195 +g1,20172:11942037,18527195 +g1,20172:12605945,18527195 +g1,20172:16921347,18527195 +h1,20172:17253301,18527195:0,0,0 +k1,20172:32583029,18527195:15329728 +g1,20172:32583029,18527195 +) +(1,20173:6630773,19212050:25952256,431045,106246 +h1,20173:6630773,19212050:0,0,0 +g1,20173:6962727,19212050 +g1,20173:7294681,19212050 +g1,20173:14929622,19212050 +g1,20173:15593530,19212050 +g1,20173:19576977,19212050 +g1,20173:21900655,19212050 +g1,20173:22564563,19212050 +g1,20173:25552149,19212050 +h1,20173:25884103,19212050:0,0,0 +k1,20173:32583029,19212050:6698926 +g1,20173:32583029,19212050 +) +(1,20174:6630773,19896905:25952256,431045,112852 +h1,20174:6630773,19896905:0,0,0 +g1,20174:6962727,19896905 +g1,20174:7294681,19896905 +g1,20174:14265714,19896905 +g1,20174:14929622,19896905 +g1,20174:18913069,19896905 +g1,20174:21568701,19896905 +g1,20174:22232609,19896905 +g1,20174:28207780,19896905 +k1,20174:28207780,19896905:0 +h1,20174:30199504,19896905:0,0,0 +k1,20174:32583029,19896905:2383525 +g1,20174:32583029,19896905 +) +(1,20175:6630773,20581760:25952256,424439,112852 +h1,20175:6630773,20581760:0,0,0 +g1,20175:6962727,20581760 +g1,20175:7294681,20581760 +g1,20175:7626635,20581760 +g1,20175:7958589,20581760 +g1,20175:8290543,20581760 +g1,20175:8622497,20581760 +g1,20175:8954451,20581760 +g1,20175:9286405,20581760 +g1,20175:9618359,20581760 +g1,20175:9950313,20581760 +g1,20175:10282267,20581760 +g1,20175:10614221,20581760 +g1,20175:10946175,20581760 +g1,20175:11278129,20581760 +g1,20175:11610083,20581760 +g1,20175:13933761,20581760 +g1,20175:14597669,20581760 +g1,20175:17585255,20581760 +g1,20175:20240887,20581760 +g1,20175:20904795,20581760 +h1,20175:23560427,20581760:0,0,0 +k1,20175:32583029,20581760:9022602 +g1,20175:32583029,20581760 +) +] +) +g1,20177:32583029,20694612 +g1,20177:6630773,20694612 +g1,20177:6630773,20694612 +g1,20177:32583029,20694612 +g1,20177:32583029,20694612 +) +h1,20177:6630773,20891220:0,0,0 +(1,20180:6630773,30040422:25952256,9083666,0 +k1,20180:10523651,30040422:3892878 +h1,20179:10523651,30040422:0,0,0 +(1,20179:10523651,30040422:18166500,9083666,0 +(1,20179:10523651,30040422:18167376,9083688,0 +(1,20179:10523651,30040422:18167376,9083688,0 +(1,20179:10523651,30040422:0,9083688,0 +(1,20179:10523651,30040422:0,14208860,0 +(1,20179:10523651,30040422:28417720,14208860,0 +) +k1,20179:10523651,30040422:-28417720 +) +) +g1,20179:28691027,30040422 +) +) +) +g1,20180:28690151,30040422 +k1,20180:32583029,30040422:3892878 +) +(1,20187:6630773,30905502:25952256,505283,134348 +h1,20186:6630773,30905502:983040,0,0 +k1,20186:10296976,30905502:148230 +k1,20186:13492630,30905502:148231 +k1,20186:14926676,30905502:148230 +k1,20186:17120940,30905502:148230 +k1,20186:17727268,30905502:148231 +k1,20186:20505458,30905502:148230 +k1,20186:21305117,30905502:148231 +k1,20186:24250424,30905502:148230 +k1,20186:26006252,30905502:148230 +k1,20186:27548434,30905502:148231 +k1,20186:30687072,30905502:148230 +k1,20186:32583029,30905502:0 +) +(1,20187:6630773,31770582:25952256,513147,134348 +k1,20186:8450673,31770582:252279 +k1,20186:9058812,31770582:252279 +k1,20186:11298798,31770582:252279 +k1,20186:12412219,31770582:252278 +k1,20186:13861185,31770582:252279 +k1,20186:17185792,31770582:252279 +k1,20186:19643358,31770582:252279 +k1,20186:20547065,31770582:252279 +(1,20186:20547065,31770582:0,452978,115847 +r1,20215:23015602,31770582:2468537,568825,115847 +k1,20186:20547065,31770582:-2468537 +) +(1,20186:20547065,31770582:2468537,452978,115847 +k1,20186:20547065,31770582:3277 +h1,20186:23012325,31770582:0,411205,112570 +) +k1,20186:23267881,31770582:252279 +k1,20186:27060415,31770582:252279 +k1,20186:28331778,31770582:252278 +k1,20186:30652373,31770582:252279 +k1,20186:31563944,31770582:252279 +k1,20186:32583029,31770582:0 +) +(1,20187:6630773,32635662:25952256,505283,7863 +g1,20186:9543193,32635662 +g1,20186:10358460,32635662 +g1,20186:11576774,32635662 +k1,20187:32583030,32635662:19388172 +g1,20187:32583030,32635662 +) +v1,20189:6630773,33320517:0,393216,0 +(1,20206:6630773,42557709:25952256,9630408,196608 +g1,20206:6630773,42557709 +g1,20206:6630773,42557709 +g1,20206:6434165,42557709 +(1,20206:6434165,42557709:0,9630408,196608 +r1,20215:32779637,42557709:26345472,9827016,196608 +k1,20206:6434165,42557709:-26345472 +) +(1,20206:6434165,42557709:26345472,9630408,196608 +[1,20206:6630773,42557709:25952256,9433800,0 +(1,20191:6630773,33548348:25952256,424439,112852 +(1,20190:6630773,33548348:0,0,0 +g1,20190:6630773,33548348 +g1,20190:6630773,33548348 +g1,20190:6303093,33548348 +(1,20190:6303093,33548348:0,0,0 +) +g1,20190:6630773,33548348 +) +k1,20191:6630773,33548348:0 +g1,20191:10614221,33548348 +g1,20191:11278129,33548348 +k1,20191:11278129,33548348:0 +h1,20191:13601807,33548348:0,0,0 +k1,20191:32583029,33548348:18981222 +g1,20191:32583029,33548348 +) +(1,20192:6630773,34233203:25952256,431045,112852 +h1,20192:6630773,34233203:0,0,0 +g1,20192:6962727,34233203 +g1,20192:7294681,34233203 +g1,20192:7626635,34233203 +g1,20192:7958589,34233203 +g1,20192:8290543,34233203 +g1,20192:8622497,34233203 +g1,20192:8954451,34233203 +g1,20192:11610083,34233203 +g1,20192:12273991,34233203 +g1,20192:14265715,34233203 +g1,20192:14929623,34233203 +g1,20192:16921347,34233203 +g1,20192:17585255,34233203 +g1,20192:18249163,34233203 +g1,20192:19908933,34233203 +g1,20192:22232611,34233203 +g1,20192:22896519,34233203 +g1,20192:27543875,34233203 +h1,20192:27875829,34233203:0,0,0 +k1,20192:32583029,34233203:4707200 +g1,20192:32583029,34233203 +) +(1,20193:6630773,34918058:25952256,431045,106246 +h1,20193:6630773,34918058:0,0,0 +g1,20193:6962727,34918058 +g1,20193:7294681,34918058 +g1,20193:14929622,34918058 +g1,20193:15593530,34918058 +g1,20193:19576977,34918058 +g1,20193:21900655,34918058 +g1,20193:22564563,34918058 +g1,20193:25552149,34918058 +h1,20193:25884103,34918058:0,0,0 +k1,20193:32583029,34918058:6698926 +g1,20193:32583029,34918058 +) +(1,20194:6630773,35602913:25952256,431045,112852 +h1,20194:6630773,35602913:0,0,0 +g1,20194:6962727,35602913 +g1,20194:7294681,35602913 +g1,20194:15261575,35602913 +g1,20194:15925483,35602913 +g1,20194:20240885,35602913 +g1,20194:20904793,35602913 +k1,20194:20904793,35602913:0 +h1,20194:24888240,35602913:0,0,0 +k1,20194:32583029,35602913:7694789 +g1,20194:32583029,35602913 +) +(1,20195:6630773,36287768:25952256,424439,86428 +h1,20195:6630773,36287768:0,0,0 +g1,20195:6962727,36287768 +g1,20195:7294681,36287768 +g1,20195:7626635,36287768 +g1,20195:7958589,36287768 +g1,20195:8290543,36287768 +g1,20195:8622497,36287768 +g1,20195:8954451,36287768 +g1,20195:9286405,36287768 +g1,20195:9618359,36287768 +g1,20195:9950313,36287768 +g1,20195:10282267,36287768 +g1,20195:10614221,36287768 +g1,20195:10946175,36287768 +g1,20195:11278129,36287768 +g1,20195:13601807,36287768 +g1,20195:14265715,36287768 +k1,20195:14265715,36287768:0 +h1,20195:16921347,36287768:0,0,0 +k1,20195:32583029,36287768:15661682 +g1,20195:32583029,36287768 +) +(1,20196:6630773,36972623:25952256,344616,106246 +h1,20196:6630773,36972623:0,0,0 +g1,20196:6962727,36972623 +g1,20196:7294681,36972623 +g1,20196:7626635,36972623 +g1,20196:7958589,36972623 +g1,20196:8290543,36972623 +g1,20196:8622497,36972623 +g1,20196:8954451,36972623 +g1,20196:9286405,36972623 +g1,20196:9618359,36972623 +g1,20196:9950313,36972623 +g1,20196:10282267,36972623 +g1,20196:10614221,36972623 +g1,20196:10946175,36972623 +g1,20196:11278129,36972623 +g1,20196:13269853,36972623 +g1,20196:13933761,36972623 +k1,20196:13933761,36972623:0 +h1,20196:15593531,36972623:0,0,0 +k1,20196:32583029,36972623:16989498 +g1,20196:32583029,36972623 +) +(1,20197:6630773,37657478:25952256,424439,86428 +h1,20197:6630773,37657478:0,0,0 +g1,20197:6962727,37657478 +g1,20197:7294681,37657478 +g1,20197:7626635,37657478 +g1,20197:7958589,37657478 +g1,20197:8290543,37657478 +g1,20197:8622497,37657478 +g1,20197:8954451,37657478 +g1,20197:9286405,37657478 +g1,20197:9618359,37657478 +g1,20197:9950313,37657478 +g1,20197:10282267,37657478 +g1,20197:10614221,37657478 +g1,20197:10946175,37657478 +g1,20197:11278129,37657478 +g1,20197:13933761,37657478 +g1,20197:14597669,37657478 +g1,20197:18581116,37657478 +g1,20197:19245024,37657478 +k1,20197:19245024,37657478:0 +h1,20197:21568702,37657478:0,0,0 +k1,20197:32583029,37657478:11014327 +g1,20197:32583029,37657478 +) +(1,20198:6630773,38342333:25952256,424439,86428 +h1,20198:6630773,38342333:0,0,0 +g1,20198:6962727,38342333 +g1,20198:7294681,38342333 +g1,20198:7626635,38342333 +g1,20198:7958589,38342333 +g1,20198:8290543,38342333 +g1,20198:8622497,38342333 +g1,20198:8954451,38342333 +g1,20198:9286405,38342333 +g1,20198:9618359,38342333 +g1,20198:9950313,38342333 +g1,20198:10282267,38342333 +g1,20198:10614221,38342333 +g1,20198:10946175,38342333 +g1,20198:11278129,38342333 +g1,20198:11610083,38342333 +g1,20198:11942037,38342333 +g1,20198:12273991,38342333 +g1,20198:12605945,38342333 +g1,20198:12937899,38342333 +g1,20198:13269853,38342333 +g1,20198:13601807,38342333 +g1,20198:13933761,38342333 +g1,20198:14265715,38342333 +g1,20198:14597669,38342333 +g1,20198:14929623,38342333 +g1,20198:15261577,38342333 +g1,20198:18249162,38342333 +g1,20198:18913070,38342333 +k1,20198:18913070,38342333:0 +h1,20198:22564563,38342333:0,0,0 +k1,20198:32583029,38342333:10018466 +g1,20198:32583029,38342333 +) +(1,20199:6630773,39027188:25952256,424439,86428 +h1,20199:6630773,39027188:0,0,0 +g1,20199:6962727,39027188 +g1,20199:7294681,39027188 +g1,20199:7626635,39027188 +g1,20199:7958589,39027188 +g1,20199:8290543,39027188 +g1,20199:8622497,39027188 +g1,20199:8954451,39027188 +g1,20199:9286405,39027188 +g1,20199:9618359,39027188 +g1,20199:9950313,39027188 +g1,20199:10282267,39027188 +g1,20199:10614221,39027188 +g1,20199:10946175,39027188 +g1,20199:11278129,39027188 +g1,20199:11610083,39027188 +g1,20199:11942037,39027188 +g1,20199:12273991,39027188 +g1,20199:12605945,39027188 +g1,20199:12937899,39027188 +g1,20199:13269853,39027188 +g1,20199:13601807,39027188 +g1,20199:13933761,39027188 +g1,20199:14265715,39027188 +g1,20199:14597669,39027188 +g1,20199:14929623,39027188 +g1,20199:15261577,39027188 +g1,20199:17585255,39027188 +g1,20199:18249163,39027188 +k1,20199:18249163,39027188:0 +h1,20199:22232610,39027188:0,0,0 +k1,20199:32583029,39027188:10350419 +g1,20199:32583029,39027188 +) +(1,20200:6630773,39712043:25952256,424439,86428 +h1,20200:6630773,39712043:0,0,0 +g1,20200:6962727,39712043 +g1,20200:7294681,39712043 +g1,20200:7626635,39712043 +g1,20200:7958589,39712043 +g1,20200:8290543,39712043 +g1,20200:8622497,39712043 +g1,20200:8954451,39712043 +g1,20200:9286405,39712043 +g1,20200:9618359,39712043 +g1,20200:9950313,39712043 +g1,20200:10282267,39712043 +g1,20200:10614221,39712043 +g1,20200:10946175,39712043 +g1,20200:11278129,39712043 +g1,20200:11610083,39712043 +g1,20200:11942037,39712043 +g1,20200:12273991,39712043 +g1,20200:12605945,39712043 +g1,20200:12937899,39712043 +g1,20200:13269853,39712043 +g1,20200:13601807,39712043 +g1,20200:13933761,39712043 +g1,20200:14265715,39712043 +g1,20200:14597669,39712043 +g1,20200:14929623,39712043 +g1,20200:15261577,39712043 +g1,20200:19245024,39712043 +g1,20200:19908932,39712043 +k1,20200:19908932,39712043:0 +h1,20200:23892379,39712043:0,0,0 +k1,20200:32583029,39712043:8690650 +g1,20200:32583029,39712043 +) +(1,20201:6630773,40396898:25952256,424439,106246 +h1,20201:6630773,40396898:0,0,0 +g1,20201:6962727,40396898 +g1,20201:7294681,40396898 +g1,20201:7626635,40396898 +g1,20201:7958589,40396898 +g1,20201:8290543,40396898 +g1,20201:8622497,40396898 +g1,20201:8954451,40396898 +g1,20201:9286405,40396898 +g1,20201:9618359,40396898 +g1,20201:9950313,40396898 +g1,20201:10282267,40396898 +g1,20201:10614221,40396898 +g1,20201:10946175,40396898 +g1,20201:11278129,40396898 +g1,20201:11610083,40396898 +g1,20201:11942037,40396898 +g1,20201:12273991,40396898 +g1,20201:12605945,40396898 +g1,20201:12937899,40396898 +g1,20201:13269853,40396898 +g1,20201:13601807,40396898 +g1,20201:13933761,40396898 +g1,20201:14265715,40396898 +g1,20201:14597669,40396898 +g1,20201:14929623,40396898 +g1,20201:15261577,40396898 +g1,20201:19245024,40396898 +g1,20201:19908932,40396898 +k1,20201:19908932,40396898:0 +h1,20201:23560425,40396898:0,0,0 +k1,20201:32583029,40396898:9022604 +g1,20201:32583029,40396898 +) +(1,20202:6630773,41081753:25952256,424439,112852 +h1,20202:6630773,41081753:0,0,0 +g1,20202:6962727,41081753 +g1,20202:7294681,41081753 +g1,20202:7626635,41081753 +g1,20202:7958589,41081753 +g1,20202:8290543,41081753 +g1,20202:8622497,41081753 +g1,20202:8954451,41081753 +g1,20202:9286405,41081753 +g1,20202:9618359,41081753 +g1,20202:9950313,41081753 +g1,20202:10282267,41081753 +g1,20202:10614221,41081753 +g1,20202:10946175,41081753 +g1,20202:11278129,41081753 +g1,20202:13933761,41081753 +g1,20202:14597669,41081753 +g1,20202:16921347,41081753 +g1,20202:19576979,41081753 +g1,20202:20240887,41081753 +g1,20202:23228473,41081753 +h1,20202:23560427,41081753:0,0,0 +k1,20202:32583029,41081753:9022602 +g1,20202:32583029,41081753 +) +(1,20203:6630773,41766608:25952256,424439,112852 +h1,20203:6630773,41766608:0,0,0 +g1,20203:6962727,41766608 +g1,20203:7294681,41766608 +g1,20203:11610082,41766608 +h1,20203:11942036,41766608:0,0,0 +k1,20203:32583028,41766608:20640992 +g1,20203:32583028,41766608 +) +(1,20204:6630773,42451463:25952256,424439,106246 +h1,20204:6630773,42451463:0,0,0 +g1,20204:6962727,42451463 +g1,20204:7294681,42451463 +g1,20204:12605944,42451463 +g1,20204:13269852,42451463 +h1,20204:14265714,42451463:0,0,0 +k1,20204:32583030,42451463:18317316 +g1,20204:32583030,42451463 +) +] +) +g1,20206:32583029,42557709 +g1,20206:6630773,42557709 +g1,20206:6630773,42557709 +g1,20206:32583029,42557709 +g1,20206:32583029,42557709 +) +h1,20206:6630773,42754317:0,0,0 +] +(1,20215:32583029,45706769:0,0,0 +g1,20215:32583029,45706769 +) +) +] +(1,20215:6630773,47279633:25952256,0,0 +h1,20215:6630773,47279633:25952256,0,0 +) +] +(1,20215:4262630,4025873:0,0,0 +[1,20215:-473656,4025873:0,0,0 +(1,20215:-473656,-710413:0,0,0 +(1,20215:-473656,-710413:0,0,0 +g1,20215:-473656,-710413 +) +g1,20215:-473656,-710413 ) ] ) ] !26351 -}338 -Input:3660:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3661:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3662:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3663:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}339 Input:3664:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3665:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3666:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -352943,806 +353147,806 @@ Input:3669:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3670:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3671:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3672:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3674:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3675:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3676:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{339 -[1,20246:4262630,47279633:28320399,43253760,0 -(1,20246:4262630,4025873:0,0,0 -[1,20246:-473656,4025873:0,0,0 -(1,20246:-473656,-710413:0,0,0 -(1,20246:-473656,-644877:0,0,0 -k1,20246:-473656,-644877:-65536 +{340 +[1,20244:4262630,47279633:28320399,43253760,0 +(1,20244:4262630,4025873:0,0,0 +[1,20244:-473656,4025873:0,0,0 +(1,20244:-473656,-710413:0,0,0 +(1,20244:-473656,-644877:0,0,0 +k1,20244:-473656,-644877:-65536 ) -(1,20246:-473656,4736287:0,0,0 -k1,20246:-473656,4736287:5209943 +(1,20244:-473656,4736287:0,0,0 +k1,20244:-473656,4736287:5209943 ) -g1,20246:-473656,-710413 +g1,20244:-473656,-710413 ) ] ) -[1,20246:6630773,47279633:25952256,43253760,0 -[1,20246:6630773,4812305:25952256,786432,0 -(1,20246:6630773,4812305:25952256,513147,126483 -(1,20246:6630773,4812305:25952256,513147,126483 -g1,20246:3078558,4812305 -[1,20246:3078558,4812305:0,0,0 -(1,20246:3078558,2439708:0,1703936,0 -k1,20246:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20246:2537886,2439708:1179648,16384,0 +[1,20244:6630773,47279633:25952256,43253760,0 +[1,20244:6630773,4812305:25952256,786432,0 +(1,20244:6630773,4812305:25952256,513147,126483 +(1,20244:6630773,4812305:25952256,513147,126483 +g1,20244:3078558,4812305 +[1,20244:3078558,4812305:0,0,0 +(1,20244:3078558,2439708:0,1703936,0 +k1,20244:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20244:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20246:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20244:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20246:3078558,4812305:0,0,0 -(1,20246:3078558,2439708:0,1703936,0 -g1,20246:29030814,2439708 -g1,20246:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20246:36151628,1915420:16384,1179648,0 +[1,20244:3078558,4812305:0,0,0 +(1,20244:3078558,2439708:0,1703936,0 +g1,20244:29030814,2439708 +g1,20244:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20244:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20246:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20244:37855564,2439708:1179648,16384,0 ) ) -k1,20246:3078556,2439708:-34777008 +k1,20244:3078556,2439708:-34777008 ) ] -[1,20246:3078558,4812305:0,0,0 -(1,20246:3078558,49800853:0,16384,2228224 -k1,20246:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20246:2537886,49800853:1179648,16384,0 +[1,20244:3078558,4812305:0,0,0 +(1,20244:3078558,49800853:0,16384,2228224 +k1,20244:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20244:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20246:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20244:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20246:3078558,4812305:0,0,0 -(1,20246:3078558,49800853:0,16384,2228224 -g1,20246:29030814,49800853 -g1,20246:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20246:36151628,51504789:16384,1179648,0 +[1,20244:3078558,4812305:0,0,0 +(1,20244:3078558,49800853:0,16384,2228224 +g1,20244:29030814,49800853 +g1,20244:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20244:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20246:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20244:37855564,49800853:1179648,16384,0 ) ) -k1,20246:3078556,49800853:-34777008 +k1,20244:3078556,49800853:-34777008 ) ] -g1,20246:6630773,4812305 -k1,20246:21386205,4812305:13560055 -g1,20246:21999622,4812305 -g1,20246:25611966,4812305 -g1,20246:28956923,4812305 -g1,20246:29772190,4812305 -) -) -] -[1,20246:6630773,45706769:25952256,40108032,0 -(1,20246:6630773,45706769:25952256,40108032,0 -(1,20246:6630773,45706769:0,0,0 -g1,20246:6630773,45706769 +g1,20244:6630773,4812305 +k1,20244:21386205,4812305:13560055 +g1,20244:21999622,4812305 +g1,20244:25611966,4812305 +g1,20244:28956923,4812305 +g1,20244:29772190,4812305 +) +) +] +[1,20244:6630773,45706769:25952256,40108032,0 +(1,20244:6630773,45706769:25952256,40108032,0 +(1,20244:6630773,45706769:0,0,0 +g1,20244:6630773,45706769 ) -[1,20246:6630773,45706769:25952256,40108032,0 -(1,20211:6630773,14682403:25952256,9083666,0 -k1,20211:10523651,14682403:3892878 -h1,20210:10523651,14682403:0,0,0 -(1,20210:10523651,14682403:18166500,9083666,0 -(1,20210:10523651,14682403:18167376,9083688,0 -(1,20210:10523651,14682403:18167376,9083688,0 -(1,20210:10523651,14682403:0,9083688,0 -(1,20210:10523651,14682403:0,14208860,0 -(1,20210:10523651,14682403:28417720,14208860,0 -) -k1,20210:10523651,14682403:-28417720 -) -) -g1,20210:28691027,14682403 -) -) -) -g1,20211:28690151,14682403 -k1,20211:32583029,14682403:3892878 -) -(1,20218:6630773,15547483:25952256,513147,134348 -h1,20217:6630773,15547483:983040,0,0 -k1,20217:10484654,15547483:335908 -k1,20217:13867986,15547483:335909 -k1,20217:16964270,15547483:335908 -k1,20217:20527171,15547483:335908 -k1,20217:23545469,15547483:335909 -k1,20217:24829028,15547483:335908 -k1,20217:26184021,15547483:335908 -k1,20217:29980231,15547483:335909 -k1,20217:30975431,15547483:335908 -k1,20217:32583029,15547483:0 -) -(1,20218:6630773,16412563:25952256,513147,134348 -k1,20217:8724157,16412563:238715 -k1,20217:9772242,16412563:238715 -k1,20217:11723413,16412563:238715 -k1,20217:14280136,16412563:238715 -k1,20217:17813346,16412563:238715 -k1,20217:18813589,16412563:238715 -k1,20217:21632455,16412563:238714 -k1,20217:24316317,16412563:238715 -k1,20217:25746477,16412563:238715 -k1,20217:26773590,16412563:238715 -k1,20217:30588605,16412563:238715 -k1,20217:31297213,16412563:238715 -k1,20217:32583029,16412563:0 -) -(1,20218:6630773,17277643:25952256,513147,134348 -k1,20217:9759658,17277643:272171 -k1,20217:11530637,17277643:272171 -k1,20217:12994253,17277643:272171 -k1,20217:16386593,17277643:272171 -k1,20217:17606415,17277643:272171 -k1,20217:20479054,17277643:272170 -k1,20217:24068002,17277643:272171 -k1,20217:25531618,17277643:272171 -k1,20217:27689260,17277643:272171 -k1,20217:29213824,17277643:272171 -k1,20217:32583029,17277643:0 -) -(1,20218:6630773,18142723:25952256,513147,134348 -g1,20217:8791495,18142723 -g1,20217:10015707,18142723 -g1,20217:11234021,18142723 -g1,20217:14013402,18142723 -g1,20217:19038702,18142723 -g1,20217:20185582,18142723 -k1,20218:32583029,18142723:10227550 -g1,20218:32583029,18142723 -) -(1,20222:6630773,20259541:25952256,555811,139132 -(1,20222:6630773,20259541:2450326,534184,12975 -g1,20222:6630773,20259541 -g1,20222:9081099,20259541 -) -g1,20222:13681858,20259541 -g1,20222:15249086,20259541 -k1,20222:32583029,20259541:14898035 -g1,20222:32583029,20259541 -) -(1,20226:6630773,21517837:25952256,513147,126483 -k1,20225:8571434,21517837:187573 -k1,20225:9778093,21517837:187574 -k1,20225:12451447,21517837:187573 -k1,20225:13298312,21517837:187573 -k1,20225:17557637,21517837:187573 -k1,20225:18276708,21517837:187574 -k1,20225:20415943,21517837:187573 -k1,20225:22493574,21517837:187573 -k1,20225:23139245,21517837:187574 -k1,20225:23858315,21517837:187573 -k1,20225:26675848,21517837:187573 -k1,20225:28065351,21517837:187573 -k1,20225:29062295,21517837:187574 -k1,20225:30268953,21517837:187573 -k1,20225:32583029,21517837:0 -) -(1,20226:6630773,22382917:25952256,513147,134348 -k1,20225:7547403,22382917:257338 -k1,20225:10754516,22382917:257338 -k1,20225:13881020,22382917:257338 -k1,20225:15631924,22382917:257338 -k1,20225:16575424,22382917:257338 -k1,20225:19024942,22382917:257339 -k1,20225:19933708,22382917:257338 -k1,20225:22399609,22382917:257338 -k1,20225:23676032,22382917:257338 -k1,20225:26265796,22382917:257338 -k1,20225:27182426,22382917:257338 -k1,20225:28458849,22382917:257338 -k1,20225:32583029,22382917:0 -) -(1,20226:6630773,23247997:25952256,513147,134348 -k1,20225:7922071,23247997:249276 -k1,20225:11006434,23247997:249276 -k1,20225:13424952,23247997:249276 -k1,20225:15281826,23247997:249276 -k1,20225:17266496,23247997:249277 -k1,20225:21242804,23247997:249276 -k1,20225:23502725,23247997:249276 -k1,20225:24699652,23247997:249276 -k1,20225:29290688,23247997:249276 -(1,20225:29290688,23247997:0,452978,115847 -r1,20246:31055801,23247997:1765113,568825,115847 -k1,20225:29290688,23247997:-1765113 -) -(1,20225:29290688,23247997:1765113,452978,115847 -k1,20225:29290688,23247997:3277 -h1,20225:31052524,23247997:0,411205,112570 -) -k1,20225:31478747,23247997:249276 -k1,20225:32583029,23247997:0 -) -(1,20226:6630773,24113077:25952256,513147,134348 -k1,20225:8103257,24113077:192566 -k1,20225:8651684,24113077:192567 -k1,20225:12573904,24113077:192566 -k1,20225:16315246,24113077:192567 -k1,20225:17167104,24113077:192566 -k1,20225:18378755,24113077:192566 -k1,20225:21077419,24113077:192567 -k1,20225:22504028,24113077:192566 -k1,20225:24477864,24113077:192567 -k1,20225:27760453,24113077:192566 -k1,20225:28569058,24113077:192567 -k1,20225:31040311,24113077:192566 -h1,20225:32583029,24113077:0,0,0 -k1,20225:32583029,24113077:0 -) -(1,20226:6630773,24978157:25952256,513147,134348 -k1,20225:7707748,24978157:267605 -k1,20225:9473507,24978157:267606 -h1,20225:10668884,24978157:0,0,0 -k1,20225:11110159,24978157:267605 -k1,20225:12482046,24978157:267605 -k1,20225:14035468,24978157:267606 -k1,20225:18439050,24978157:267605 -k1,20225:20915218,24978157:267605 -k1,20225:22201909,24978157:267606 -k1,20225:24801940,24978157:267605 -k1,20225:25728837,24978157:267605 -k1,20225:30068195,24978157:267606 -k1,20225:32080368,24978157:267605 -$1,20225:32080368,24978157 -$1,20225:32583029,24978157 -k1,20226:32583029,24978157:0 -) -(1,20226:6630773,25843237:25952256,505283,138281 -k1,20225:9053639,25843237:212992 -$1,20225:9053639,25843237 -$1,20225:9605452,25843237 -k1,20225:9818444,25843237:212992 -k1,20225:11603645,25843237:212992 -k1,20225:13335106,25843237:212992 -k1,20225:17210250,25843237:212992 -k1,20225:18238509,25843237:212991 -k1,20225:19517772,25843237:212992 -k1,20225:22008140,25843237:212992 -k1,20225:26788991,25843237:212992 -k1,20225:28691501,25843237:212992 -k1,20225:29923578,25843237:212992 -k1,20226:32583029,25843237:0 -) -(1,20226:6630773,26708317:25952256,505283,134348 -k1,20225:9988302,26708317:267506 -k1,20225:10871846,26708317:267506 -k1,20225:12342593,26708317:267506 -k1,20225:14888786,26708317:267506 -k1,20225:16145230,26708317:267506 -k1,20225:20201372,26708317:267506 -k1,20225:21230406,26708317:267506 -k1,20225:25171860,26708317:267506 -k1,20225:26329345,26708317:267506 -k1,20225:28150710,26708317:267506 -k1,20225:29609661,26708317:267506 -k1,20225:32583029,26708317:0 -) -(1,20226:6630773,27573397:25952256,513147,126483 -k1,20225:9219904,27573397:256705 -k1,20225:12502405,27573397:256704 -k1,20225:13750670,27573397:256705 -k1,20225:17515516,27573397:256704 -k1,20225:20879938,27573397:256705 -k1,20225:23113863,27573397:256704 -k1,20225:25068606,27573397:256705 -k1,20225:26344395,27573397:256704 -k1,20225:29086881,27573397:256705 -k1,20225:30002877,27573397:256704 -k1,20226:32583029,27573397:0 -) -(1,20226:6630773,28438477:25952256,505283,134348 -g1,20225:8427770,28438477 -g1,20225:9158496,28438477 -g1,20225:11102293,28438477 -g1,20225:13175852,28438477 -g1,20225:16883223,28438477 -g1,20225:18186734,28438477 -g1,20225:19133729,28438477 -g1,20225:22541601,28438477 -g1,20225:23356868,28438477 -g1,20225:24712807,28438477 -g1,20225:25594921,28438477 -g1,20225:27444347,28438477 -k1,20226:32583029,28438477:1410995 -g1,20226:32583029,28438477 -) -(1,20228:6630773,29303557:25952256,513147,134348 -h1,20227:6630773,29303557:983040,0,0 -k1,20227:11462147,29303557:191425 -k1,20227:12645131,29303557:191424 -k1,20227:15218134,29303557:191425 -k1,20227:16171086,29303557:191424 -k1,20227:17692892,29303557:191425 -k1,20227:18903401,29303557:191424 -k1,20227:21397106,29303557:191425 -k1,20227:23599175,29303557:191424 -k1,20227:24782160,29303557:191425 -k1,20227:28376213,29303557:191424 -k1,20227:31530521,29303557:191425 -k1,20228:32583029,29303557:0 -) -(1,20228:6630773,30168637:25952256,513147,134348 -k1,20227:9546688,30168637:295786 -k1,20227:10834033,30168637:295785 -k1,20227:12731519,30168637:295786 -k1,20227:16332286,30168637:295786 -k1,20227:18930351,30168637:295785 -k1,20227:19912299,30168637:295786 -k1,20227:21252729,30168637:295786 -k1,20227:23329783,30168637:295785 -k1,20227:25377346,30168637:295786 -k1,20227:26717776,30168637:295786 -k1,20227:27696446,30168637:295785 -k1,20227:30975431,30168637:295786 -k1,20227:32583029,30168637:0 -) -(1,20228:6630773,31033717:25952256,505283,134348 -k1,20227:7868038,31033717:245705 -k1,20227:9180015,31033717:245706 -k1,20227:13165860,31033717:245705 -k1,20227:16374448,31033717:245705 -k1,20227:18466302,31033717:245705 -k1,20227:20289460,31033717:245706 -k1,20227:21151203,31033717:245705 -k1,20227:24108132,31033717:245705 -k1,20227:24709697,31033717:245705 -k1,20227:28191571,31033717:245706 -k1,20227:30206093,31033717:245705 -k1,20227:31199564,31033717:245705 -k1,20228:32583029,31033717:0 -) -(1,20228:6630773,31898797:25952256,513147,134348 -k1,20227:7899567,31898797:243811 -k1,20227:9878770,31898797:243810 -k1,20227:10478441,31898797:243811 -k1,20227:13484594,31898797:243810 -k1,20227:16735852,31898797:243811 -k1,20227:18715055,31898797:243810 -(1,20227:18715055,31898797:0,452978,115847 -r1,20246:22238727,31898797:3523672,568825,115847 -k1,20227:18715055,31898797:-3523672 -) -(1,20227:18715055,31898797:3523672,452978,115847 -k1,20227:18715055,31898797:3277 -h1,20227:22235450,31898797:0,411205,112570 -) -k1,20227:22656208,31898797:243811 -k1,20227:23919103,31898797:243810 -k1,20227:26568086,31898797:243811 -k1,20227:28325122,31898797:243810 -k1,20227:29330461,31898797:243811 -k1,20227:31839851,31898797:243810 -k1,20228:32583029,31898797:0 -) -(1,20228:6630773,32763877:25952256,513147,134348 -(1,20227:6630773,32763877:0,452978,122846 -r1,20246:12264716,32763877:5633943,575824,122846 -k1,20227:6630773,32763877:-5633943 -) -(1,20227:6630773,32763877:5633943,452978,122846 -k1,20227:6630773,32763877:3277 -h1,20227:12261439,32763877:0,411205,112570 -) -k1,20227:12575377,32763877:136991 -k1,20227:14093212,32763877:136991 -k1,20227:16635375,32763877:136991 -k1,20227:18265276,32763877:136991 -k1,20227:20823821,32763877:136990 -k1,20227:21620104,32763877:136991 -k1,20227:25828847,32763877:136991 -k1,20227:28008595,32763877:136991 -k1,20227:31576396,32763877:136991 -k1,20228:32583029,32763877:0 -) -(1,20228:6630773,33628957:25952256,513147,126483 -k1,20227:9784246,33628957:186003 -k1,20227:11161694,33628957:186003 -k1,20227:11879194,33628957:186003 -k1,20227:14577192,33628957:186003 -k1,20227:15710846,33628957:186003 -k1,20227:19968600,33628957:186002 -k1,20227:20963973,33628957:186003 -k1,20227:21505836,33628957:186003 -k1,20227:25262240,33628957:186003 -k1,20227:27524424,33628957:186003 -k1,20227:29997634,33628957:186003 -k1,20227:32583029,33628957:0 -) -(1,20228:6630773,34494037:25952256,513147,126483 -k1,20227:7464253,34494037:182052 -k1,20227:8665389,34494037:182051 -(1,20227:8665389,34494037:0,414482,115847 -r1,20246:9023655,34494037:358266,530329,115847 -k1,20227:8665389,34494037:-358266 -) -(1,20227:8665389,34494037:358266,414482,115847 -k1,20227:8665389,34494037:3277 -h1,20227:9020378,34494037:0,411205,112570 -) -k1,20227:9205707,34494037:182052 -k1,20227:12405692,34494037:182052 -k1,20227:14370978,34494037:182051 -k1,20227:14908890,34494037:182052 -k1,20227:16984932,34494037:182052 -k1,20227:17698480,34494037:182051 -k1,20227:20465927,34494037:182052 -k1,20227:21299407,34494037:182052 -(1,20227:21299407,34494037:0,414482,115847 -r1,20246:21657673,34494037:358266,530329,115847 -k1,20227:21299407,34494037:-358266 -) -(1,20227:21299407,34494037:358266,414482,115847 -k1,20227:21299407,34494037:3277 -h1,20227:21654396,34494037:0,411205,112570 -) -k1,20227:22013395,34494037:182052 -(1,20227:22013395,34494037:0,452978,115847 -r1,20246:26240491,34494037:4227096,568825,115847 -k1,20227:22013395,34494037:-4227096 -) -(1,20227:22013395,34494037:4227096,452978,115847 -k1,20227:22013395,34494037:3277 -h1,20227:26237214,34494037:0,411205,112570 -) -k1,20227:26422542,34494037:182051 -k1,20227:27708876,34494037:182052 -k1,20227:28638694,34494037:182052 -k1,20227:30507642,34494037:182051 -k1,20227:31708779,34494037:182052 -k1,20228:32583029,34494037:0 -) -(1,20228:6630773,35359117:25952256,513147,134348 -k1,20227:8310604,35359117:182333 -(1,20227:8310604,35359117:0,414482,115847 -r1,20246:9724005,35359117:1413401,530329,115847 -k1,20227:8310604,35359117:-1413401 -) -(1,20227:8310604,35359117:1413401,414482,115847 -k1,20227:8310604,35359117:3277 -h1,20227:9720728,35359117:0,411205,112570 -) -k1,20227:9906339,35359117:182334 -k1,20227:10755828,35359117:182333 -(1,20227:10755828,35359117:0,452978,122846 -r1,20246:14279500,35359117:3523672,575824,122846 -k1,20227:10755828,35359117:-3523672 -) -(1,20227:10755828,35359117:3523672,452978,122846 -k1,20227:10755828,35359117:3277 -h1,20227:14276223,35359117:0,411205,112570 -) -k1,20227:14635503,35359117:182333 -k1,20227:16692167,35359117:182334 -k1,20227:18046939,35359117:182333 -k1,20227:21669257,35359117:182333 -k1,20227:22843151,35359117:182334 -k1,20227:26115507,35359117:182333 -k1,20227:26913878,35359117:182333 -k1,20227:28299453,35359117:182334 -k1,20227:30760473,35359117:182333 -k1,20227:32583029,35359117:0 -) -(1,20228:6630773,36224197:25952256,513147,134348 -k1,20227:9868685,36224197:210804 -k1,20227:12609179,36224197:210804 -k1,20227:14200171,36224197:210804 -k1,20227:16676555,36224197:210804 -k1,20227:17538787,36224197:210804 -k1,20227:19484984,36224197:210804 -k1,20227:22549226,36224197:210804 -k1,20227:25522373,36224197:210804 -k1,20227:27300798,36224197:210804 -(1,20227:27300798,36224197:0,452978,115847 -r1,20246:32583029,36224197:5282231,568825,115847 -k1,20227:27300798,36224197:-5282231 -) -(1,20227:27300798,36224197:5282231,452978,115847 -k1,20227:27300798,36224197:3277 -h1,20227:32579752,36224197:0,411205,112570 -) -k1,20227:32583029,36224197:0 -) -(1,20228:6630773,37089277:25952256,505283,126483 -g1,20227:8021447,37089277 -g1,20227:12445782,37089277 -g1,20227:16153153,37089277 -g1,20227:17371467,37089277 -k1,20228:32583029,37089277:13769770 -g1,20228:32583029,37089277 -) -(1,20230:6630773,37954357:25952256,513147,134348 -h1,20229:6630773,37954357:983040,0,0 -g1,20229:9009729,37954357 -g1,20229:10705145,37954357 -g1,20229:12772805,37954357 -g1,20229:16326167,37954357 -g1,20229:16881256,37954357 -g1,20229:18469848,37954357 -g1,20229:20545373,37954357 -g1,20229:24106599,37954357 -g1,20229:25076531,37954357 -g1,20229:27904409,37954357 -g1,20229:29493001,37954357 -k1,20230:32583029,37954357:2103056 -g1,20230:32583029,37954357 -) -v1,20232:6630773,38639212:0,393216,0 -(1,20240:6630773,41719315:25952256,3473319,196608 -g1,20240:6630773,41719315 -g1,20240:6630773,41719315 -g1,20240:6434165,41719315 -(1,20240:6434165,41719315:0,3473319,196608 -r1,20246:32779637,41719315:26345472,3669927,196608 -k1,20240:6434165,41719315:-26345472 -) -(1,20240:6434165,41719315:26345472,3473319,196608 -[1,20240:6630773,41719315:25952256,3276711,0 -(1,20234:6630773,38867043:25952256,424439,79822 -(1,20233:6630773,38867043:0,0,0 -g1,20233:6630773,38867043 -g1,20233:6630773,38867043 -g1,20233:6303093,38867043 -(1,20233:6303093,38867043:0,0,0 -) -g1,20233:6630773,38867043 -) -k1,20234:6630773,38867043:0 -h1,20234:11610082,38867043:0,0,0 -k1,20234:32583030,38867043:20972948 -g1,20234:32583030,38867043 -) -(1,20235:6630773,39551898:25952256,424439,106246 -h1,20235:6630773,39551898:0,0,0 -g1,20235:9286405,39551898 -k1,20235:9286405,39551898:0 -h1,20235:9950313,39551898:0,0,0 -k1,20235:32583029,39551898:22632716 -g1,20235:32583029,39551898 -) -(1,20236:6630773,40236753:25952256,431045,86428 -h1,20236:6630773,40236753:0,0,0 -g1,20236:6962727,40236753 -g1,20236:7294681,40236753 -g1,20236:11610082,40236753 -g1,20236:12273990,40236753 -k1,20236:12273990,40236753:0 -h1,20236:15925484,40236753:0,0,0 -k1,20236:32583029,40236753:16657545 -g1,20236:32583029,40236753 -) -(1,20237:6630773,40921608:25952256,424439,86428 -h1,20237:6630773,40921608:0,0,0 -g1,20237:6962727,40921608 -g1,20237:7294681,40921608 -g1,20237:7626635,40921608 -g1,20237:7958589,40921608 -g1,20237:8290543,40921608 -g1,20237:8622497,40921608 -g1,20237:8954451,40921608 -g1,20237:9286405,40921608 -g1,20237:9618359,40921608 -g1,20237:9950313,40921608 -g1,20237:10282267,40921608 -g1,20237:10614221,40921608 -g1,20237:10946175,40921608 -g1,20237:11610083,40921608 -g1,20237:12273991,40921608 -g1,20237:16589393,40921608 -g1,20237:17917209,40921608 -g1,20237:19245025,40921608 -g1,20237:22896519,40921608 -g1,20237:23892381,40921608 -k1,20237:23892381,40921608:0 -h1,20237:25220197,40921608:0,0,0 -k1,20237:32583029,40921608:7362832 -g1,20237:32583029,40921608 -) -(1,20238:6630773,41606463:25952256,431045,112852 -h1,20238:6630773,41606463:0,0,0 -g1,20238:6962727,41606463 -g1,20238:7294681,41606463 -g1,20238:7626635,41606463 -g1,20238:7958589,41606463 -g1,20238:8290543,41606463 -g1,20238:8622497,41606463 -g1,20238:8954451,41606463 -g1,20238:9286405,41606463 -g1,20238:9618359,41606463 -g1,20238:9950313,41606463 -g1,20238:10282267,41606463 -g1,20238:10614221,41606463 -g1,20238:10946175,41606463 -g1,20238:12937899,41606463 -g1,20238:13601807,41606463 -g1,20238:19576979,41606463 -g1,20238:21568703,41606463 -g1,20238:23892381,41606463 -g1,20238:26216059,41606463 -h1,20238:26548013,41606463:0,0,0 -k1,20238:32583029,41606463:6035016 -g1,20238:32583029,41606463 -) -] -) -g1,20240:32583029,41719315 -g1,20240:6630773,41719315 -g1,20240:6630773,41719315 -g1,20240:32583029,41719315 -g1,20240:32583029,41719315 -) -h1,20240:6630773,41915923:0,0,0 -(1,20244:6630773,42781003:25952256,513147,126483 -h1,20243:6630773,42781003:983040,0,0 -k1,20243:8311052,42781003:209651 -k1,20243:10786293,42781003:209661 -k1,20243:12187399,42781003:209661 -k1,20243:14684267,42781003:209661 -k1,20243:17405924,42781003:209662 -k1,20243:20101366,42781003:209661 -k1,20243:20970319,42781003:209661 -k1,20243:22526745,42781003:209661 -k1,20243:23267903,42781003:209661 -k1,20243:27794422,42781003:209662 -k1,20243:30592755,42781003:209661 -k1,20243:31563944,42781003:209661 -k1,20244:32583029,42781003:0 -) -(1,20244:6630773,43646083:25952256,505283,134348 -(1,20243:6630773,43646083:0,452978,115847 -r1,20246:10154445,43646083:3523672,568825,115847 -k1,20243:6630773,43646083:-3523672 -) -(1,20243:6630773,43646083:3523672,452978,115847 -k1,20243:6630773,43646083:3277 -h1,20243:10151168,43646083:0,411205,112570 -) -k1,20243:10399923,43646083:245478 -k1,20243:13342209,43646083:245479 -k1,20243:16431950,43646083:245478 -(1,20243:16431950,43646083:0,452978,115847 -r1,20246:19603911,43646083:3171961,568825,115847 -k1,20243:16431950,43646083:-3171961 -) -(1,20243:16431950,43646083:3171961,452978,115847 -g1,20243:18193786,43646083 -g1,20243:18897210,43646083 -h1,20243:19600634,43646083:0,411205,112570 -) -k1,20243:19849389,43646083:245478 -k1,20243:21029410,43646083:245478 -k1,20243:21732986,43646083:245479 -k1,20243:25084871,43646083:245478 -k1,20243:25958184,43646083:245478 -k1,20243:26559522,43646083:245478 -k1,20243:30041169,43646083:245479 -k1,20243:31563944,43646083:245478 -k1,20243:32583029,43646083:0 -) -(1,20244:6630773,44511163:25952256,513147,126483 -k1,20243:9297697,44511163:173279 -k1,20243:12056372,44511163:173280 -k1,20243:13690449,44511163:173279 -k1,20243:14882814,44511163:173280 -(1,20243:14882814,44511163:0,414482,115847 -r1,20246:15241080,44511163:358266,530329,115847 -k1,20243:14882814,44511163:-358266 -) -(1,20243:14882814,44511163:358266,414482,115847 -k1,20243:14882814,44511163:3277 -h1,20243:15237803,44511163:0,411205,112570 -) -k1,20243:15414359,44511163:173279 -k1,20243:18374885,44511163:173280 -k1,20243:19079661,44511163:173279 -k1,20243:20319212,44511163:173280 -k1,20243:22060112,44511163:173279 -(1,20243:22060112,44511163:0,452978,115847 -r1,20246:23473513,44511163:1413401,568825,115847 -k1,20243:22060112,44511163:-1413401 -) -(1,20243:22060112,44511163:1413401,452978,115847 -k1,20243:22060112,44511163:3277 -h1,20243:23470236,44511163:0,411205,112570 -) -k1,20243:23646793,44511163:173280 -k1,20243:24892241,44511163:173279 -k1,20243:27392704,44511163:173280 -k1,20243:30774626,44511163:173279 -k1,20243:31563944,44511163:173280 -k1,20243:32583029,44511163:0 -) -(1,20244:6630773,45376243:25952256,513147,134348 -g1,20243:9683440,45376243 -g1,20243:10568831,45376243 -g1,20243:11787145,45376243 -g1,20243:14472155,45376243 -g1,20243:15330676,45376243 -g1,20243:19601657,45376243 -g1,20243:21822016,45376243 -g1,20243:22637283,45376243 -g1,20243:24288134,45376243 -k1,20244:32583029,45376243:7248941 -g1,20244:32583029,45376243 -) -] -(1,20246:32583029,45706769:0,0,0 -g1,20246:32583029,45706769 -) -) -] -(1,20246:6630773,47279633:25952256,0,0 -h1,20246:6630773,47279633:25952256,0,0 -) -] -(1,20246:4262630,4025873:0,0,0 -[1,20246:-473656,4025873:0,0,0 -(1,20246:-473656,-710413:0,0,0 -(1,20246:-473656,-710413:0,0,0 -g1,20246:-473656,-710413 -) -g1,20246:-473656,-710413 +[1,20244:6630773,45706769:25952256,40108032,0 +(1,20209:6630773,14682403:25952256,9083666,0 +k1,20209:10523651,14682403:3892878 +h1,20208:10523651,14682403:0,0,0 +(1,20208:10523651,14682403:18166500,9083666,0 +(1,20208:10523651,14682403:18167376,9083688,0 +(1,20208:10523651,14682403:18167376,9083688,0 +(1,20208:10523651,14682403:0,9083688,0 +(1,20208:10523651,14682403:0,14208860,0 +(1,20208:10523651,14682403:28417720,14208860,0 +) +k1,20208:10523651,14682403:-28417720 +) +) +g1,20208:28691027,14682403 +) +) +) +g1,20209:28690151,14682403 +k1,20209:32583029,14682403:3892878 +) +(1,20216:6630773,15547483:25952256,513147,134348 +h1,20215:6630773,15547483:983040,0,0 +k1,20215:10484654,15547483:335908 +k1,20215:13867986,15547483:335909 +k1,20215:16964270,15547483:335908 +k1,20215:20527171,15547483:335908 +k1,20215:23545469,15547483:335909 +k1,20215:24829028,15547483:335908 +k1,20215:26184021,15547483:335908 +k1,20215:29980231,15547483:335909 +k1,20215:30975431,15547483:335908 +k1,20215:32583029,15547483:0 +) +(1,20216:6630773,16412563:25952256,513147,134348 +k1,20215:8724157,16412563:238715 +k1,20215:9772242,16412563:238715 +k1,20215:11723413,16412563:238715 +k1,20215:14280136,16412563:238715 +k1,20215:17813346,16412563:238715 +k1,20215:18813589,16412563:238715 +k1,20215:21632455,16412563:238714 +k1,20215:24316317,16412563:238715 +k1,20215:25746477,16412563:238715 +k1,20215:26773590,16412563:238715 +k1,20215:30588605,16412563:238715 +k1,20215:31297213,16412563:238715 +k1,20215:32583029,16412563:0 +) +(1,20216:6630773,17277643:25952256,513147,134348 +k1,20215:9759658,17277643:272171 +k1,20215:11530637,17277643:272171 +k1,20215:12994253,17277643:272171 +k1,20215:16386593,17277643:272171 +k1,20215:17606415,17277643:272171 +k1,20215:20479054,17277643:272170 +k1,20215:24068002,17277643:272171 +k1,20215:25531618,17277643:272171 +k1,20215:27689260,17277643:272171 +k1,20215:29213824,17277643:272171 +k1,20215:32583029,17277643:0 +) +(1,20216:6630773,18142723:25952256,513147,134348 +g1,20215:8791495,18142723 +g1,20215:10015707,18142723 +g1,20215:11234021,18142723 +g1,20215:14013402,18142723 +g1,20215:19038702,18142723 +g1,20215:20185582,18142723 +k1,20216:32583029,18142723:10227550 +g1,20216:32583029,18142723 +) +(1,20220:6630773,20259541:25952256,555811,139132 +(1,20220:6630773,20259541:2450326,534184,12975 +g1,20220:6630773,20259541 +g1,20220:9081099,20259541 +) +g1,20220:13681858,20259541 +g1,20220:15249086,20259541 +k1,20220:32583029,20259541:14898035 +g1,20220:32583029,20259541 +) +(1,20224:6630773,21517837:25952256,513147,126483 +k1,20223:8571434,21517837:187573 +k1,20223:9778093,21517837:187574 +k1,20223:12451447,21517837:187573 +k1,20223:13298312,21517837:187573 +k1,20223:17557637,21517837:187573 +k1,20223:18276708,21517837:187574 +k1,20223:20415943,21517837:187573 +k1,20223:22493574,21517837:187573 +k1,20223:23139245,21517837:187574 +k1,20223:23858315,21517837:187573 +k1,20223:26675848,21517837:187573 +k1,20223:28065351,21517837:187573 +k1,20223:29062295,21517837:187574 +k1,20223:30268953,21517837:187573 +k1,20223:32583029,21517837:0 +) +(1,20224:6630773,22382917:25952256,513147,134348 +k1,20223:7547403,22382917:257338 +k1,20223:10754516,22382917:257338 +k1,20223:13881020,22382917:257338 +k1,20223:15631924,22382917:257338 +k1,20223:16575424,22382917:257338 +k1,20223:19024942,22382917:257339 +k1,20223:19933708,22382917:257338 +k1,20223:22399609,22382917:257338 +k1,20223:23676032,22382917:257338 +k1,20223:26265796,22382917:257338 +k1,20223:27182426,22382917:257338 +k1,20223:28458849,22382917:257338 +k1,20223:32583029,22382917:0 +) +(1,20224:6630773,23247997:25952256,513147,134348 +k1,20223:7922071,23247997:249276 +k1,20223:11006434,23247997:249276 +k1,20223:13424952,23247997:249276 +k1,20223:15281826,23247997:249276 +k1,20223:17266496,23247997:249277 +k1,20223:21242804,23247997:249276 +k1,20223:23502725,23247997:249276 +k1,20223:24699652,23247997:249276 +k1,20223:29290688,23247997:249276 +(1,20223:29290688,23247997:0,452978,115847 +r1,20244:31055801,23247997:1765113,568825,115847 +k1,20223:29290688,23247997:-1765113 +) +(1,20223:29290688,23247997:1765113,452978,115847 +k1,20223:29290688,23247997:3277 +h1,20223:31052524,23247997:0,411205,112570 +) +k1,20223:31478747,23247997:249276 +k1,20223:32583029,23247997:0 +) +(1,20224:6630773,24113077:25952256,513147,134348 +k1,20223:8103257,24113077:192566 +k1,20223:8651684,24113077:192567 +k1,20223:12573904,24113077:192566 +k1,20223:16315246,24113077:192567 +k1,20223:17167104,24113077:192566 +k1,20223:18378755,24113077:192566 +k1,20223:21077419,24113077:192567 +k1,20223:22504028,24113077:192566 +k1,20223:24477864,24113077:192567 +k1,20223:27760453,24113077:192566 +k1,20223:28569058,24113077:192567 +k1,20223:31040311,24113077:192566 +h1,20223:32583029,24113077:0,0,0 +k1,20223:32583029,24113077:0 +) +(1,20224:6630773,24978157:25952256,513147,134348 +k1,20223:7707748,24978157:267605 +k1,20223:9473507,24978157:267606 +h1,20223:10668884,24978157:0,0,0 +k1,20223:11110159,24978157:267605 +k1,20223:12482046,24978157:267605 +k1,20223:14035468,24978157:267606 +k1,20223:18439050,24978157:267605 +k1,20223:20915218,24978157:267605 +k1,20223:22201909,24978157:267606 +k1,20223:24801940,24978157:267605 +k1,20223:25728837,24978157:267605 +k1,20223:30068195,24978157:267606 +k1,20223:32080368,24978157:267605 +$1,20223:32080368,24978157 +$1,20223:32583029,24978157 +k1,20224:32583029,24978157:0 +) +(1,20224:6630773,25843237:25952256,505283,138281 +k1,20223:9053639,25843237:212992 +$1,20223:9053639,25843237 +$1,20223:9605452,25843237 +k1,20223:9818444,25843237:212992 +k1,20223:11603645,25843237:212992 +k1,20223:13335106,25843237:212992 +k1,20223:17210250,25843237:212992 +k1,20223:18238509,25843237:212991 +k1,20223:19517772,25843237:212992 +k1,20223:22008140,25843237:212992 +k1,20223:26788991,25843237:212992 +k1,20223:28691501,25843237:212992 +k1,20223:29923578,25843237:212992 +k1,20224:32583029,25843237:0 +) +(1,20224:6630773,26708317:25952256,505283,134348 +k1,20223:9988302,26708317:267506 +k1,20223:10871846,26708317:267506 +k1,20223:12342593,26708317:267506 +k1,20223:14888786,26708317:267506 +k1,20223:16145230,26708317:267506 +k1,20223:20201372,26708317:267506 +k1,20223:21230406,26708317:267506 +k1,20223:25171860,26708317:267506 +k1,20223:26329345,26708317:267506 +k1,20223:28150710,26708317:267506 +k1,20223:29609661,26708317:267506 +k1,20223:32583029,26708317:0 +) +(1,20224:6630773,27573397:25952256,513147,126483 +k1,20223:9219904,27573397:256705 +k1,20223:12502405,27573397:256704 +k1,20223:13750670,27573397:256705 +k1,20223:17515516,27573397:256704 +k1,20223:20879938,27573397:256705 +k1,20223:23113863,27573397:256704 +k1,20223:25068606,27573397:256705 +k1,20223:26344395,27573397:256704 +k1,20223:29086881,27573397:256705 +k1,20223:30002877,27573397:256704 +k1,20224:32583029,27573397:0 +) +(1,20224:6630773,28438477:25952256,505283,134348 +g1,20223:8427770,28438477 +g1,20223:9158496,28438477 +g1,20223:11102293,28438477 +g1,20223:13175852,28438477 +g1,20223:16883223,28438477 +g1,20223:18186734,28438477 +g1,20223:19133729,28438477 +g1,20223:22541601,28438477 +g1,20223:23356868,28438477 +g1,20223:24712807,28438477 +g1,20223:25594921,28438477 +g1,20223:27444347,28438477 +k1,20224:32583029,28438477:1410995 +g1,20224:32583029,28438477 +) +(1,20226:6630773,29303557:25952256,513147,134348 +h1,20225:6630773,29303557:983040,0,0 +k1,20225:11462147,29303557:191425 +k1,20225:12645131,29303557:191424 +k1,20225:15218134,29303557:191425 +k1,20225:16171086,29303557:191424 +k1,20225:17692892,29303557:191425 +k1,20225:18903401,29303557:191424 +k1,20225:21397106,29303557:191425 +k1,20225:23599175,29303557:191424 +k1,20225:24782160,29303557:191425 +k1,20225:28376213,29303557:191424 +k1,20225:31530521,29303557:191425 +k1,20226:32583029,29303557:0 +) +(1,20226:6630773,30168637:25952256,513147,134348 +k1,20225:9546688,30168637:295786 +k1,20225:10834033,30168637:295785 +k1,20225:12731519,30168637:295786 +k1,20225:16332286,30168637:295786 +k1,20225:18930351,30168637:295785 +k1,20225:19912299,30168637:295786 +k1,20225:21252729,30168637:295786 +k1,20225:23329783,30168637:295785 +k1,20225:25377346,30168637:295786 +k1,20225:26717776,30168637:295786 +k1,20225:27696446,30168637:295785 +k1,20225:30975431,30168637:295786 +k1,20225:32583029,30168637:0 +) +(1,20226:6630773,31033717:25952256,505283,134348 +k1,20225:7868038,31033717:245705 +k1,20225:9180015,31033717:245706 +k1,20225:13165860,31033717:245705 +k1,20225:16374448,31033717:245705 +k1,20225:18466302,31033717:245705 +k1,20225:20289460,31033717:245706 +k1,20225:21151203,31033717:245705 +k1,20225:24108132,31033717:245705 +k1,20225:24709697,31033717:245705 +k1,20225:28191571,31033717:245706 +k1,20225:30206093,31033717:245705 +k1,20225:31199564,31033717:245705 +k1,20226:32583029,31033717:0 +) +(1,20226:6630773,31898797:25952256,513147,134348 +k1,20225:7899567,31898797:243811 +k1,20225:9878770,31898797:243810 +k1,20225:10478441,31898797:243811 +k1,20225:13484594,31898797:243810 +k1,20225:16735852,31898797:243811 +k1,20225:18715055,31898797:243810 +(1,20225:18715055,31898797:0,452978,115847 +r1,20244:22238727,31898797:3523672,568825,115847 +k1,20225:18715055,31898797:-3523672 +) +(1,20225:18715055,31898797:3523672,452978,115847 +k1,20225:18715055,31898797:3277 +h1,20225:22235450,31898797:0,411205,112570 +) +k1,20225:22656208,31898797:243811 +k1,20225:23919103,31898797:243810 +k1,20225:26568086,31898797:243811 +k1,20225:28325122,31898797:243810 +k1,20225:29330461,31898797:243811 +k1,20225:31839851,31898797:243810 +k1,20226:32583029,31898797:0 +) +(1,20226:6630773,32763877:25952256,513147,134348 +(1,20225:6630773,32763877:0,452978,122846 +r1,20244:12264716,32763877:5633943,575824,122846 +k1,20225:6630773,32763877:-5633943 +) +(1,20225:6630773,32763877:5633943,452978,122846 +k1,20225:6630773,32763877:3277 +h1,20225:12261439,32763877:0,411205,112570 +) +k1,20225:12575377,32763877:136991 +k1,20225:14093212,32763877:136991 +k1,20225:16635375,32763877:136991 +k1,20225:18265276,32763877:136991 +k1,20225:20823821,32763877:136990 +k1,20225:21620104,32763877:136991 +k1,20225:25828847,32763877:136991 +k1,20225:28008595,32763877:136991 +k1,20225:31576396,32763877:136991 +k1,20226:32583029,32763877:0 +) +(1,20226:6630773,33628957:25952256,513147,126483 +k1,20225:9784246,33628957:186003 +k1,20225:11161694,33628957:186003 +k1,20225:11879194,33628957:186003 +k1,20225:14577192,33628957:186003 +k1,20225:15710846,33628957:186003 +k1,20225:19968600,33628957:186002 +k1,20225:20963973,33628957:186003 +k1,20225:21505836,33628957:186003 +k1,20225:25262240,33628957:186003 +k1,20225:27524424,33628957:186003 +k1,20225:29997634,33628957:186003 +k1,20225:32583029,33628957:0 +) +(1,20226:6630773,34494037:25952256,513147,126483 +k1,20225:7464253,34494037:182052 +k1,20225:8665389,34494037:182051 +(1,20225:8665389,34494037:0,414482,115847 +r1,20244:9023655,34494037:358266,530329,115847 +k1,20225:8665389,34494037:-358266 +) +(1,20225:8665389,34494037:358266,414482,115847 +k1,20225:8665389,34494037:3277 +h1,20225:9020378,34494037:0,411205,112570 +) +k1,20225:9205707,34494037:182052 +k1,20225:12405692,34494037:182052 +k1,20225:14370978,34494037:182051 +k1,20225:14908890,34494037:182052 +k1,20225:16984932,34494037:182052 +k1,20225:17698480,34494037:182051 +k1,20225:20465927,34494037:182052 +k1,20225:21299407,34494037:182052 +(1,20225:21299407,34494037:0,414482,115847 +r1,20244:21657673,34494037:358266,530329,115847 +k1,20225:21299407,34494037:-358266 +) +(1,20225:21299407,34494037:358266,414482,115847 +k1,20225:21299407,34494037:3277 +h1,20225:21654396,34494037:0,411205,112570 +) +k1,20225:22013395,34494037:182052 +(1,20225:22013395,34494037:0,452978,115847 +r1,20244:26240491,34494037:4227096,568825,115847 +k1,20225:22013395,34494037:-4227096 +) +(1,20225:22013395,34494037:4227096,452978,115847 +k1,20225:22013395,34494037:3277 +h1,20225:26237214,34494037:0,411205,112570 +) +k1,20225:26422542,34494037:182051 +k1,20225:27708876,34494037:182052 +k1,20225:28638694,34494037:182052 +k1,20225:30507642,34494037:182051 +k1,20225:31708779,34494037:182052 +k1,20226:32583029,34494037:0 +) +(1,20226:6630773,35359117:25952256,513147,134348 +k1,20225:8310604,35359117:182333 +(1,20225:8310604,35359117:0,414482,115847 +r1,20244:9724005,35359117:1413401,530329,115847 +k1,20225:8310604,35359117:-1413401 +) +(1,20225:8310604,35359117:1413401,414482,115847 +k1,20225:8310604,35359117:3277 +h1,20225:9720728,35359117:0,411205,112570 +) +k1,20225:9906339,35359117:182334 +k1,20225:10755828,35359117:182333 +(1,20225:10755828,35359117:0,452978,122846 +r1,20244:14279500,35359117:3523672,575824,122846 +k1,20225:10755828,35359117:-3523672 +) +(1,20225:10755828,35359117:3523672,452978,122846 +k1,20225:10755828,35359117:3277 +h1,20225:14276223,35359117:0,411205,112570 +) +k1,20225:14635503,35359117:182333 +k1,20225:16692167,35359117:182334 +k1,20225:18046939,35359117:182333 +k1,20225:21669257,35359117:182333 +k1,20225:22843151,35359117:182334 +k1,20225:26115507,35359117:182333 +k1,20225:26913878,35359117:182333 +k1,20225:28299453,35359117:182334 +k1,20225:30760473,35359117:182333 +k1,20225:32583029,35359117:0 +) +(1,20226:6630773,36224197:25952256,513147,134348 +k1,20225:9868685,36224197:210804 +k1,20225:12609179,36224197:210804 +k1,20225:14200171,36224197:210804 +k1,20225:16676555,36224197:210804 +k1,20225:17538787,36224197:210804 +k1,20225:19484984,36224197:210804 +k1,20225:22549226,36224197:210804 +k1,20225:25522373,36224197:210804 +k1,20225:27300798,36224197:210804 +(1,20225:27300798,36224197:0,452978,115847 +r1,20244:32583029,36224197:5282231,568825,115847 +k1,20225:27300798,36224197:-5282231 +) +(1,20225:27300798,36224197:5282231,452978,115847 +k1,20225:27300798,36224197:3277 +h1,20225:32579752,36224197:0,411205,112570 +) +k1,20225:32583029,36224197:0 +) +(1,20226:6630773,37089277:25952256,505283,126483 +g1,20225:8021447,37089277 +g1,20225:12445782,37089277 +g1,20225:16153153,37089277 +g1,20225:17371467,37089277 +k1,20226:32583029,37089277:13769770 +g1,20226:32583029,37089277 +) +(1,20228:6630773,37954357:25952256,513147,134348 +h1,20227:6630773,37954357:983040,0,0 +g1,20227:9009729,37954357 +g1,20227:10705145,37954357 +g1,20227:12772805,37954357 +g1,20227:16326167,37954357 +g1,20227:16881256,37954357 +g1,20227:18469848,37954357 +g1,20227:20545373,37954357 +g1,20227:24106599,37954357 +g1,20227:25076531,37954357 +g1,20227:27904409,37954357 +g1,20227:29493001,37954357 +k1,20228:32583029,37954357:2103056 +g1,20228:32583029,37954357 +) +v1,20230:6630773,38639212:0,393216,0 +(1,20238:6630773,41719315:25952256,3473319,196608 +g1,20238:6630773,41719315 +g1,20238:6630773,41719315 +g1,20238:6434165,41719315 +(1,20238:6434165,41719315:0,3473319,196608 +r1,20244:32779637,41719315:26345472,3669927,196608 +k1,20238:6434165,41719315:-26345472 +) +(1,20238:6434165,41719315:26345472,3473319,196608 +[1,20238:6630773,41719315:25952256,3276711,0 +(1,20232:6630773,38867043:25952256,424439,79822 +(1,20231:6630773,38867043:0,0,0 +g1,20231:6630773,38867043 +g1,20231:6630773,38867043 +g1,20231:6303093,38867043 +(1,20231:6303093,38867043:0,0,0 +) +g1,20231:6630773,38867043 +) +k1,20232:6630773,38867043:0 +h1,20232:11610082,38867043:0,0,0 +k1,20232:32583030,38867043:20972948 +g1,20232:32583030,38867043 +) +(1,20233:6630773,39551898:25952256,424439,106246 +h1,20233:6630773,39551898:0,0,0 +g1,20233:9286405,39551898 +k1,20233:9286405,39551898:0 +h1,20233:9950313,39551898:0,0,0 +k1,20233:32583029,39551898:22632716 +g1,20233:32583029,39551898 +) +(1,20234:6630773,40236753:25952256,431045,86428 +h1,20234:6630773,40236753:0,0,0 +g1,20234:6962727,40236753 +g1,20234:7294681,40236753 +g1,20234:11610082,40236753 +g1,20234:12273990,40236753 +k1,20234:12273990,40236753:0 +h1,20234:15925484,40236753:0,0,0 +k1,20234:32583029,40236753:16657545 +g1,20234:32583029,40236753 +) +(1,20235:6630773,40921608:25952256,424439,86428 +h1,20235:6630773,40921608:0,0,0 +g1,20235:6962727,40921608 +g1,20235:7294681,40921608 +g1,20235:7626635,40921608 +g1,20235:7958589,40921608 +g1,20235:8290543,40921608 +g1,20235:8622497,40921608 +g1,20235:8954451,40921608 +g1,20235:9286405,40921608 +g1,20235:9618359,40921608 +g1,20235:9950313,40921608 +g1,20235:10282267,40921608 +g1,20235:10614221,40921608 +g1,20235:10946175,40921608 +g1,20235:11610083,40921608 +g1,20235:12273991,40921608 +g1,20235:16589393,40921608 +g1,20235:17917209,40921608 +g1,20235:19245025,40921608 +g1,20235:22896519,40921608 +g1,20235:23892381,40921608 +k1,20235:23892381,40921608:0 +h1,20235:25220197,40921608:0,0,0 +k1,20235:32583029,40921608:7362832 +g1,20235:32583029,40921608 +) +(1,20236:6630773,41606463:25952256,431045,112852 +h1,20236:6630773,41606463:0,0,0 +g1,20236:6962727,41606463 +g1,20236:7294681,41606463 +g1,20236:7626635,41606463 +g1,20236:7958589,41606463 +g1,20236:8290543,41606463 +g1,20236:8622497,41606463 +g1,20236:8954451,41606463 +g1,20236:9286405,41606463 +g1,20236:9618359,41606463 +g1,20236:9950313,41606463 +g1,20236:10282267,41606463 +g1,20236:10614221,41606463 +g1,20236:10946175,41606463 +g1,20236:12937899,41606463 +g1,20236:13601807,41606463 +g1,20236:19576979,41606463 +g1,20236:21568703,41606463 +g1,20236:23892381,41606463 +g1,20236:26216059,41606463 +h1,20236:26548013,41606463:0,0,0 +k1,20236:32583029,41606463:6035016 +g1,20236:32583029,41606463 +) +] +) +g1,20238:32583029,41719315 +g1,20238:6630773,41719315 +g1,20238:6630773,41719315 +g1,20238:32583029,41719315 +g1,20238:32583029,41719315 +) +h1,20238:6630773,41915923:0,0,0 +(1,20242:6630773,42781003:25952256,513147,126483 +h1,20241:6630773,42781003:983040,0,0 +k1,20241:8311052,42781003:209651 +k1,20241:10786293,42781003:209661 +k1,20241:12187399,42781003:209661 +k1,20241:14684267,42781003:209661 +k1,20241:17405924,42781003:209662 +k1,20241:20101366,42781003:209661 +k1,20241:20970319,42781003:209661 +k1,20241:22526745,42781003:209661 +k1,20241:23267903,42781003:209661 +k1,20241:27794422,42781003:209662 +k1,20241:30592755,42781003:209661 +k1,20241:31563944,42781003:209661 +k1,20242:32583029,42781003:0 +) +(1,20242:6630773,43646083:25952256,505283,134348 +(1,20241:6630773,43646083:0,452978,115847 +r1,20244:10154445,43646083:3523672,568825,115847 +k1,20241:6630773,43646083:-3523672 +) +(1,20241:6630773,43646083:3523672,452978,115847 +k1,20241:6630773,43646083:3277 +h1,20241:10151168,43646083:0,411205,112570 +) +k1,20241:10399923,43646083:245478 +k1,20241:13342209,43646083:245479 +k1,20241:16431950,43646083:245478 +(1,20241:16431950,43646083:0,452978,115847 +r1,20244:19603911,43646083:3171961,568825,115847 +k1,20241:16431950,43646083:-3171961 +) +(1,20241:16431950,43646083:3171961,452978,115847 +g1,20241:18193786,43646083 +g1,20241:18897210,43646083 +h1,20241:19600634,43646083:0,411205,112570 +) +k1,20241:19849389,43646083:245478 +k1,20241:21029410,43646083:245478 +k1,20241:21732986,43646083:245479 +k1,20241:25084871,43646083:245478 +k1,20241:25958184,43646083:245478 +k1,20241:26559522,43646083:245478 +k1,20241:30041169,43646083:245479 +k1,20241:31563944,43646083:245478 +k1,20241:32583029,43646083:0 +) +(1,20242:6630773,44511163:25952256,513147,126483 +k1,20241:9297697,44511163:173279 +k1,20241:12056372,44511163:173280 +k1,20241:13690449,44511163:173279 +k1,20241:14882814,44511163:173280 +(1,20241:14882814,44511163:0,414482,115847 +r1,20244:15241080,44511163:358266,530329,115847 +k1,20241:14882814,44511163:-358266 +) +(1,20241:14882814,44511163:358266,414482,115847 +k1,20241:14882814,44511163:3277 +h1,20241:15237803,44511163:0,411205,112570 +) +k1,20241:15414359,44511163:173279 +k1,20241:18374885,44511163:173280 +k1,20241:19079661,44511163:173279 +k1,20241:20319212,44511163:173280 +k1,20241:22060112,44511163:173279 +(1,20241:22060112,44511163:0,452978,115847 +r1,20244:23473513,44511163:1413401,568825,115847 +k1,20241:22060112,44511163:-1413401 +) +(1,20241:22060112,44511163:1413401,452978,115847 +k1,20241:22060112,44511163:3277 +h1,20241:23470236,44511163:0,411205,112570 +) +k1,20241:23646793,44511163:173280 +k1,20241:24892241,44511163:173279 +k1,20241:27392704,44511163:173280 +k1,20241:30774626,44511163:173279 +k1,20241:31563944,44511163:173280 +k1,20241:32583029,44511163:0 +) +(1,20242:6630773,45376243:25952256,513147,134348 +g1,20241:9683440,45376243 +g1,20241:10568831,45376243 +g1,20241:11787145,45376243 +g1,20241:14472155,45376243 +g1,20241:15330676,45376243 +g1,20241:19601657,45376243 +g1,20241:21822016,45376243 +g1,20241:22637283,45376243 +g1,20241:24288134,45376243 +k1,20242:32583029,45376243:7248941 +g1,20242:32583029,45376243 +) +] +(1,20244:32583029,45706769:0,0,0 +g1,20244:32583029,45706769 +) +) +] +(1,20244:6630773,47279633:25952256,0,0 +h1,20244:6630773,47279633:25952256,0,0 +) +] +(1,20244:4262630,4025873:0,0,0 +[1,20244:-473656,4025873:0,0,0 +(1,20244:-473656,-710413:0,0,0 +(1,20244:-473656,-710413:0,0,0 +g1,20244:-473656,-710413 +) +g1,20244:-473656,-710413 ) ] ) ] !23332 -}339 -Input:3673:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3674:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3675:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3676:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}340 Input:3677:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3678:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3679:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -353758,833 +353962,833 @@ Input:3688:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3689:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3690:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3691:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3692:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3693:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3694:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3695:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{340 -[1,20322:4262630,47279633:28320399,43253760,0 -(1,20322:4262630,4025873:0,0,0 -[1,20322:-473656,4025873:0,0,0 -(1,20322:-473656,-710413:0,0,0 -(1,20322:-473656,-644877:0,0,0 -k1,20322:-473656,-644877:-65536 +{341 +[1,20320:4262630,47279633:28320399,43253760,0 +(1,20320:4262630,4025873:0,0,0 +[1,20320:-473656,4025873:0,0,0 +(1,20320:-473656,-710413:0,0,0 +(1,20320:-473656,-644877:0,0,0 +k1,20320:-473656,-644877:-65536 ) -(1,20322:-473656,4736287:0,0,0 -k1,20322:-473656,4736287:5209943 +(1,20320:-473656,4736287:0,0,0 +k1,20320:-473656,4736287:5209943 ) -g1,20322:-473656,-710413 +g1,20320:-473656,-710413 ) ] ) -[1,20322:6630773,47279633:25952256,43253760,0 -[1,20322:6630773,4812305:25952256,786432,0 -(1,20322:6630773,4812305:25952256,485622,11795 -(1,20322:6630773,4812305:25952256,485622,11795 -g1,20322:3078558,4812305 -[1,20322:3078558,4812305:0,0,0 -(1,20322:3078558,2439708:0,1703936,0 -k1,20322:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20322:2537886,2439708:1179648,16384,0 +[1,20320:6630773,47279633:25952256,43253760,0 +[1,20320:6630773,4812305:25952256,786432,0 +(1,20320:6630773,4812305:25952256,485622,11795 +(1,20320:6630773,4812305:25952256,485622,11795 +g1,20320:3078558,4812305 +[1,20320:3078558,4812305:0,0,0 +(1,20320:3078558,2439708:0,1703936,0 +k1,20320:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20320:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20322:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20320:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20322:3078558,4812305:0,0,0 -(1,20322:3078558,2439708:0,1703936,0 -g1,20322:29030814,2439708 -g1,20322:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20322:36151628,1915420:16384,1179648,0 +[1,20320:3078558,4812305:0,0,0 +(1,20320:3078558,2439708:0,1703936,0 +g1,20320:29030814,2439708 +g1,20320:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20320:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20322:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20320:37855564,2439708:1179648,16384,0 ) ) -k1,20322:3078556,2439708:-34777008 +k1,20320:3078556,2439708:-34777008 ) ] -[1,20322:3078558,4812305:0,0,0 -(1,20322:3078558,49800853:0,16384,2228224 -k1,20322:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20322:2537886,49800853:1179648,16384,0 +[1,20320:3078558,4812305:0,0,0 +(1,20320:3078558,49800853:0,16384,2228224 +k1,20320:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20320:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20322:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20320:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20322:3078558,4812305:0,0,0 -(1,20322:3078558,49800853:0,16384,2228224 -g1,20322:29030814,49800853 -g1,20322:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20322:36151628,51504789:16384,1179648,0 +[1,20320:3078558,4812305:0,0,0 +(1,20320:3078558,49800853:0,16384,2228224 +g1,20320:29030814,49800853 +g1,20320:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20320:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20322:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20320:37855564,49800853:1179648,16384,0 ) ) -k1,20322:3078556,49800853:-34777008 +k1,20320:3078556,49800853:-34777008 ) ] -g1,20322:6630773,4812305 -g1,20322:6630773,4812305 -g1,20322:9560887,4812305 -k1,20322:31387651,4812305:21826764 +g1,20320:6630773,4812305 +g1,20320:6630773,4812305 +g1,20320:9560887,4812305 +k1,20320:31387651,4812305:21826764 ) ) ] -[1,20322:6630773,45706769:25952256,40108032,0 -(1,20322:6630773,45706769:25952256,40108032,0 -(1,20322:6630773,45706769:0,0,0 -g1,20322:6630773,45706769 +[1,20320:6630773,45706769:25952256,40108032,0 +(1,20320:6630773,45706769:25952256,40108032,0 +(1,20320:6630773,45706769:0,0,0 +g1,20320:6630773,45706769 ) -[1,20322:6630773,45706769:25952256,40108032,0 -v1,20246:6630773,6254097:0,393216,0 -(1,20251:6630773,7279635:25952256,1418754,196608 -g1,20251:6630773,7279635 -g1,20251:6630773,7279635 -g1,20251:6434165,7279635 -(1,20251:6434165,7279635:0,1418754,196608 -r1,20322:32779637,7279635:26345472,1615362,196608 -k1,20251:6434165,7279635:-26345472 +[1,20320:6630773,45706769:25952256,40108032,0 +v1,20244:6630773,6254097:0,393216,0 +(1,20249:6630773,7279635:25952256,1418754,196608 +g1,20249:6630773,7279635 +g1,20249:6630773,7279635 +g1,20249:6434165,7279635 +(1,20249:6434165,7279635:0,1418754,196608 +r1,20320:32779637,7279635:26345472,1615362,196608 +k1,20249:6434165,7279635:-26345472 ) -(1,20251:6434165,7279635:26345472,1418754,196608 -[1,20251:6630773,7279635:25952256,1222146,0 -(1,20248:6630773,6481928:25952256,424439,112852 -(1,20247:6630773,6481928:0,0,0 -g1,20247:6630773,6481928 -g1,20247:6630773,6481928 -g1,20247:6303093,6481928 -(1,20247:6303093,6481928:0,0,0 +(1,20249:6434165,7279635:26345472,1418754,196608 +[1,20249:6630773,7279635:25952256,1222146,0 +(1,20246:6630773,6481928:25952256,424439,112852 +(1,20245:6630773,6481928:0,0,0 +g1,20245:6630773,6481928 +g1,20245:6630773,6481928 +g1,20245:6303093,6481928 +(1,20245:6303093,6481928:0,0,0 ) -g1,20247:6630773,6481928 +g1,20245:6630773,6481928 ) -k1,20248:6630773,6481928:0 -g1,20248:10614221,6481928 -g1,20248:11278129,6481928 -g1,20248:14265715,6481928 -g1,20248:16921347,6481928 -g1,20248:17585255,6481928 -g1,20248:19576979,6481928 -g1,20248:20240887,6481928 -g1,20248:21568703,6481928 -h1,20248:21900657,6481928:0,0,0 -k1,20248:32583029,6481928:10682372 -g1,20248:32583029,6481928 -) -(1,20249:6630773,7166783:25952256,424439,112852 -h1,20249:6630773,7166783:0,0,0 -g1,20249:6962727,7166783 -g1,20249:7294681,7166783 -g1,20249:13933760,7166783 -g1,20249:14597668,7166783 -h1,20249:15593530,7166783:0,0,0 -k1,20249:32583030,7166783:16989500 -g1,20249:32583030,7166783 -) -] -) -g1,20251:32583029,7279635 -g1,20251:6630773,7279635 -g1,20251:6630773,7279635 -g1,20251:32583029,7279635 -g1,20251:32583029,7279635 -) -h1,20251:6630773,7476243:0,0,0 -(1,20254:6630773,16625445:25952256,9083666,0 -k1,20254:10523651,16625445:3892878 -h1,20253:10523651,16625445:0,0,0 -(1,20253:10523651,16625445:18166500,9083666,0 -(1,20253:10523651,16625445:18167376,9083688,0 -(1,20253:10523651,16625445:18167376,9083688,0 -(1,20253:10523651,16625445:0,9083688,0 -(1,20253:10523651,16625445:0,14208860,0 -(1,20253:10523651,16625445:28417720,14208860,0 -) -k1,20253:10523651,16625445:-28417720 -) -) -g1,20253:28691027,16625445 -) -) -) -g1,20254:28690151,16625445 -k1,20254:32583029,16625445:3892878 -) -v1,20261:6630773,17490525:0,393216,0 -(1,20272:6630773,21255759:25952256,4158450,0 -g1,20272:6630773,21255759 -g1,20272:6237557,21255759 -r1,20322:6368629,21255759:131072,4158450,0 -g1,20272:6567858,21255759 -g1,20272:6764466,21255759 -[1,20272:6764466,21255759:25818563,4158450,0 -(1,20262:6764466,17798823:25818563,701514,196608 -(1,20261:6764466,17798823:0,701514,196608 -r1,20322:7761522,17798823:997056,898122,196608 -k1,20261:6764466,17798823:-997056 -) -(1,20261:6764466,17798823:997056,701514,196608 -) -k1,20261:7958524,17798823:197002 -k1,20261:8286204,17798823:327680 -k1,20261:8970791,17798823:196999 -k1,20261:11299023,17798823:197001 -k1,20261:12147453,17798823:197002 -k1,20261:13541797,17798823:197001 -k1,20261:15626891,17798823:197002 -k1,20261:17217843,17798823:197001 -(1,20261:17217843,17798823:0,452978,122846 -r1,20322:22851786,17798823:5633943,575824,122846 -k1,20261:17217843,17798823:-5633943 -) -(1,20261:17217843,17798823:5633943,452978,122846 -k1,20261:17217843,17798823:3277 -h1,20261:22848509,17798823:0,411205,112570 -) -k1,20261:23222458,17798823:197002 -k1,20261:25746642,17798823:197001 -k1,20261:26602936,17798823:197002 -k1,20261:28193888,17798823:197001 -(1,20261:28193888,17798823:0,452978,115847 -r1,20322:31717560,17798823:3523672,568825,115847 -k1,20261:28193888,17798823:-3523672 -) -(1,20261:28193888,17798823:3523672,452978,115847 -k1,20261:28193888,17798823:3277 -h1,20261:31714283,17798823:0,411205,112570 -) -k1,20261:31914562,17798823:197002 -k1,20262:32583029,17798823:0 -) -(1,20262:6764466,18663903:25818563,505283,115847 -(1,20261:6764466,18663903:0,452978,115847 -r1,20322:10991562,18663903:4227096,568825,115847 -k1,20261:6764466,18663903:-4227096 -) -(1,20261:6764466,18663903:4227096,452978,115847 -k1,20261:6764466,18663903:3277 -h1,20261:10988285,18663903:0,411205,112570 -) -g1,20261:11190791,18663903 -g1,20261:11921517,18663903 -g1,20261:13405252,18663903 -g1,20261:14392879,18663903 -g1,20261:16330123,18663903 -g1,20261:17060849,18663903 -g1,20261:19130476,18663903 -g1,20261:19981133,18663903 -k1,20262:32583029,18663903:9290362 -g1,20262:32583029,18663903 -) -v1,20264:6764466,19348758:0,393216,0 -(1,20270:6764466,21059151:25818563,2103609,196608 -g1,20270:6764466,21059151 -g1,20270:6764466,21059151 -g1,20270:6567858,21059151 -(1,20270:6567858,21059151:0,2103609,196608 -r1,20322:32779637,21059151:26211779,2300217,196608 -k1,20270:6567857,21059151:-26211780 -) -(1,20270:6567858,21059151:26211779,2103609,196608 -[1,20270:6764466,21059151:25818563,1907001,0 -(1,20266:6764466,19576589:25818563,424439,112852 -(1,20265:6764466,19576589:0,0,0 -g1,20265:6764466,19576589 -g1,20265:6764466,19576589 -g1,20265:6436786,19576589 -(1,20265:6436786,19576589:0,0,0 -) -g1,20265:6764466,19576589 -) -k1,20266:6764466,19576589:0 -g1,20266:10747914,19576589 -g1,20266:11411822,19576589 -k1,20266:11411822,19576589:0 -h1,20266:14067454,19576589:0,0,0 -k1,20266:32583030,19576589:18515576 -g1,20266:32583030,19576589 -) -(1,20267:6764466,20261444:25818563,431045,112852 -h1,20267:6764466,20261444:0,0,0 -g1,20267:7096420,20261444 -g1,20267:7428374,20261444 -g1,20267:7760328,20261444 -g1,20267:8092282,20261444 -g1,20267:8424236,20261444 -g1,20267:8756190,20261444 -g1,20267:9088144,20261444 -g1,20267:11743776,20261444 -g1,20267:12407684,20261444 -g1,20267:14399408,20261444 -g1,20267:15063316,20261444 -g1,20267:16059178,20261444 -g1,20267:17718948,20261444 -g1,20267:18382856,20261444 -g1,20267:21038488,20261444 -h1,20267:21370442,20261444:0,0,0 -k1,20267:32583029,20261444:11212587 -g1,20267:32583029,20261444 -) -(1,20268:6764466,20946299:25818563,424439,112852 -h1,20268:6764466,20946299:0,0,0 -g1,20268:7096420,20946299 -g1,20268:7428374,20946299 -g1,20268:12075729,20946299 -g1,20268:12739637,20946299 -g1,20268:14067453,20946299 -g1,20268:17055038,20946299 -g1,20268:17718946,20946299 -h1,20268:20374578,20946299:0,0,0 -k1,20268:32583029,20946299:12208451 -g1,20268:32583029,20946299 -) -] -) -g1,20270:32583029,21059151 -g1,20270:6764466,21059151 -g1,20270:6764466,21059151 -g1,20270:32583029,21059151 -g1,20270:32583029,21059151 -) -h1,20270:6764466,21255759:0,0,0 -] -g1,20272:32583029,21255759 -) -h1,20272:6630773,21255759:0,0,0 -(1,20275:6630773,22120839:25952256,513147,134348 -h1,20274:6630773,22120839:983040,0,0 -k1,20274:9180719,22120839:370219 -k1,20274:12433867,22120839:370219 -k1,20274:15154207,22120839:370219 -k1,20274:16285954,22120839:370219 -k1,20274:19463735,22120839:370219 -k1,20274:20189814,22120839:370219 -k1,20274:22454023,22120839:370219 -k1,20274:23475670,22120839:370219 -k1,20274:24616592,22120839:370219 -k1,20274:28213804,22120839:370219 -k1,20274:31510860,22120839:370219 -k1,20275:32583029,22120839:0 -) -(1,20275:6630773,22985919:25952256,513147,134348 -k1,20274:8161089,22985919:323143 -k1,20274:9100270,22985919:323143 -k1,20274:10595852,22985919:323143 -k1,20274:13621700,22985919:323143 -k1,20274:17684983,22985919:323143 -k1,20274:19204813,22985919:323143 -k1,20274:22142186,22985919:323142 -k1,20274:23124621,22985919:323143 -k1,20274:24466849,22985919:323143 -k1,20274:25962431,22985919:323143 -k1,20274:28508555,22985919:323143 -k1,20274:29490990,22985919:323143 -k1,20274:31189078,22985919:323143 -k1,20274:32583029,22985919:0 -) -(1,20275:6630773,23850999:25952256,513147,126483 -k1,20274:9278045,23850999:322710 -k1,20274:10252183,23850999:322710 -k1,20274:12026515,23850999:322710 -k1,20274:14051195,23850999:322710 -k1,20274:14905402,23850999:322710 -k1,20274:18489184,23850999:322711 -k1,20274:20205845,23850999:322710 -k1,20274:22975670,23850999:322710 -k1,20274:26324177,23850999:322710 -k1,20274:27878964,23850999:322710 -k1,20274:30480361,23850999:322710 -h1,20274:31450949,23850999:0,0,0 -k1,20274:31773659,23850999:322710 -k1,20274:32583029,23850999:0 -) -(1,20275:6630773,24716079:25952256,513147,134348 -k1,20274:8481625,24716079:352699 -h1,20274:9677002,24716079:0,0,0 -k1,20274:10029702,24716079:352700 -k1,20274:11330052,24716079:352699 -k1,20274:14180984,24716079:352700 -k1,20274:16012831,24716079:352699 -(1,20274:16012831,24716079:0,452978,122846 -r1,20322:22350199,24716079:6337368,575824,122846 -k1,20274:16012831,24716079:-6337368 -) -(1,20274:16012831,24716079:6337368,452978,122846 -g1,20274:19181515,24716079 -g1,20274:19884939,24716079 -h1,20274:22346922,24716079:0,411205,112570 -) -k1,20274:22702899,24716079:352700 -k1,20274:24430543,24716079:352699 -k1,20274:25774803,24716079:352700 -k1,20274:28429782,24716079:352699 -k1,20274:30082061,24716079:352700 -k1,20274:31196288,24716079:352699 -k1,20274:32583029,24716079:0 -) -(1,20275:6630773,25581159:25952256,513147,126483 -k1,20274:8380581,25581159:382071 -(1,20274:8380581,25581159:0,452978,115847 -r1,20322:14717949,25581159:6337368,568825,115847 -k1,20274:8380581,25581159:-6337368 -) -(1,20274:8380581,25581159:6337368,452978,115847 -g1,20274:11549265,25581159 -g1,20274:12252689,25581159 -h1,20274:14714672,25581159:0,411205,112570 -) -k1,20274:15273690,25581159:382071 -k1,20274:16674846,25581159:382071 -k1,20274:19496167,25581159:382071 -k1,20274:22180519,25581159:382072 -k1,20274:23719300,25581159:382071 -k1,20274:25956695,25581159:382071 -k1,20274:27357851,25581159:382071 -k1,20274:29615562,25581159:382071 -k1,20274:31189078,25581159:382071 -k1,20275:32583029,25581159:0 -) -(1,20275:6630773,26446239:25952256,505283,134348 -(1,20274:6630773,26446239:0,452978,115847 -r1,20322:14023276,26446239:7392503,568825,115847 -k1,20274:6630773,26446239:-7392503 -) -(1,20274:6630773,26446239:7392503,452978,115847 -g1,20274:9799457,26446239 -g1,20274:10502881,26446239 -h1,20274:14019999,26446239:0,411205,112570 -) -k1,20274:14270393,26446239:247117 -k1,20274:18471298,26446239:247118 -k1,20274:19346250,26446239:247117 -k1,20274:20796608,26446239:247117 -k1,20274:22191916,26446239:247117 -k1,20274:23979785,26446239:247118 -k1,20274:26414494,26446239:247117 -(1,20274:26414494,26446239:0,452978,115847 -r1,20322:30289878,26446239:3875384,568825,115847 -k1,20274:26414494,26446239:-3875384 -) -(1,20274:26414494,26446239:3875384,452978,115847 -g1,20274:28528042,26446239 -g1,20274:29231466,26446239 -h1,20274:30286601,26446239:0,411205,112570 -) -k1,20274:30536995,26446239:247117 -k1,20274:32583029,26446239:0 -) -(1,20275:6630773,27311319:25952256,505283,126483 -g1,20274:9700479,27311319 -g1,20274:11274653,27311319 -g1,20274:13690310,27311319 -g1,20274:15086226,27311319 -g1,20274:18277174,27311319 -g1,20274:20344834,27311319 -g1,20274:21636548,27311319 -(1,20274:21636548,27311319:0,452978,122846 -r1,20322:27973916,27311319:6337368,575824,122846 -k1,20274:21636548,27311319:-6337368 -) -(1,20274:21636548,27311319:6337368,452978,122846 -g1,20274:24805232,27311319 -g1,20274:25508656,27311319 -h1,20274:27970639,27311319:0,411205,112570 -) -k1,20275:32583029,27311319:4556685 -g1,20275:32583029,27311319 -) -v1,20279:6630773,27996174:0,393216,0 -(1,20285:6630773,29706567:25952256,2103609,196608 -g1,20285:6630773,29706567 -g1,20285:6630773,29706567 -g1,20285:6434165,29706567 -(1,20285:6434165,29706567:0,2103609,196608 -r1,20322:32779637,29706567:26345472,2300217,196608 -k1,20285:6434165,29706567:-26345472 -) -(1,20285:6434165,29706567:26345472,2103609,196608 -[1,20285:6630773,29706567:25952256,1907001,0 -(1,20281:6630773,28224005:25952256,424439,106246 -(1,20280:6630773,28224005:0,0,0 -g1,20280:6630773,28224005 -g1,20280:6630773,28224005 -g1,20280:6303093,28224005 -(1,20280:6303093,28224005:0,0,0 -) -g1,20280:6630773,28224005 -) -g1,20281:8954451,28224005 -k1,20281:8954451,28224005:0 -h1,20281:9618359,28224005:0,0,0 -k1,20281:32583029,28224005:22964670 -g1,20281:32583029,28224005 -) -(1,20282:6630773,28908860:25952256,424439,112852 -h1,20282:6630773,28908860:0,0,0 -g1,20282:6962727,28908860 -g1,20282:7294681,28908860 -g1,20282:11278129,28908860 -g1,20282:11942037,28908860 -k1,20282:11942037,28908860:0 -h1,20282:14597669,28908860:0,0,0 -k1,20282:32583029,28908860:17985360 -g1,20282:32583029,28908860 -) -(1,20283:6630773,29593715:25952256,431045,112852 -h1,20283:6630773,29593715:0,0,0 -g1,20283:6962727,29593715 -g1,20283:7294681,29593715 -g1,20283:7626635,29593715 -g1,20283:7958589,29593715 -g1,20283:8290543,29593715 -g1,20283:8622497,29593715 -g1,20283:8954451,29593715 -g1,20283:9286405,29593715 -g1,20283:9618359,29593715 -g1,20283:12273991,29593715 -g1,20283:12937899,29593715 -g1,20283:14929623,29593715 -g1,20283:15593531,29593715 -g1,20283:16589393,29593715 -g1,20283:18249163,29593715 -g1,20283:18913071,29593715 -h1,20283:21236749,29593715:0,0,0 -k1,20283:32583029,29593715:11346280 -g1,20283:32583029,29593715 -) -] -) -g1,20285:32583029,29706567 -g1,20285:6630773,29706567 -g1,20285:6630773,29706567 -g1,20285:32583029,29706567 -g1,20285:32583029,29706567 -) -h1,20285:6630773,29903175:0,0,0 -v1,20289:6630773,30588030:0,393216,0 -(1,20293:6630773,30928713:25952256,733899,196608 -g1,20293:6630773,30928713 -g1,20293:6630773,30928713 -g1,20293:6434165,30928713 -(1,20293:6434165,30928713:0,733899,196608 -r1,20322:32779637,30928713:26345472,930507,196608 -k1,20293:6434165,30928713:-26345472 -) -(1,20293:6434165,30928713:26345472,733899,196608 -[1,20293:6630773,30928713:25952256,537291,0 -(1,20291:6630773,30815861:25952256,424439,112852 -(1,20290:6630773,30815861:0,0,0 -g1,20290:6630773,30815861 -g1,20290:6630773,30815861 -g1,20290:6303093,30815861 -(1,20290:6303093,30815861:0,0,0 -) -g1,20290:6630773,30815861 -) -g1,20291:7626635,30815861 -g1,20291:8622497,30815861 -g1,20291:10946175,30815861 -g1,20291:11610083,30815861 -g1,20291:18249162,30815861 -g1,20291:18913070,30815861 -g1,20291:20240886,30815861 -g1,20291:23228471,30815861 -g1,20291:23892379,30815861 -h1,20291:26548011,30815861:0,0,0 -k1,20291:32583029,30815861:6035018 -g1,20291:32583029,30815861 -) -] -) -g1,20293:32583029,30928713 -g1,20293:6630773,30928713 -g1,20293:6630773,30928713 -g1,20293:32583029,30928713 -g1,20293:32583029,30928713 -) -h1,20293:6630773,31125321:0,0,0 -(1,20297:6630773,31990401:25952256,513147,126483 -h1,20296:6630773,31990401:983040,0,0 -k1,20296:8532334,31990401:290686 -k1,20296:11489024,31990401:290685 -k1,20296:12431138,31990401:290686 -(1,20296:12431138,31990401:0,414482,115847 -r1,20322:14196251,31990401:1765113,530329,115847 -k1,20296:12431138,31990401:-1765113 -) -(1,20296:12431138,31990401:1765113,414482,115847 -k1,20296:12431138,31990401:3277 -h1,20296:14192974,31990401:0,411205,112570 -) -k1,20296:14660606,31990401:290685 -(1,20296:14660606,31990401:0,452978,115847 -r1,20322:17129143,31990401:2468537,568825,115847 -k1,20296:14660606,31990401:-2468537 -) -(1,20296:14660606,31990401:2468537,452978,115847 -k1,20296:14660606,31990401:3277 -h1,20296:17125866,31990401:0,411205,112570 -) -k1,20296:17593499,31990401:290686 -k1,20296:21092828,31990401:290686 -k1,20296:22069675,31990401:290685 -(1,20296:22069675,31990401:0,414482,115847 -r1,20322:23834788,31990401:1765113,530329,115847 -k1,20296:22069675,31990401:-1765113 -) -(1,20296:22069675,31990401:1765113,414482,115847 -k1,20296:22069675,31990401:3277 -h1,20296:23831511,31990401:0,411205,112570 -) -k1,20296:24125474,31990401:290686 -k1,20296:26785286,31990401:290685 -k1,20296:27837500,31990401:290686 -k1,20296:29147270,31990401:290685 -k1,20296:31923737,31990401:290686 -k1,20296:32583029,31990401:0 -) -(1,20297:6630773,32855481:25952256,505283,134348 -g1,20296:10901754,32855481 -g1,20296:11717021,32855481 -g1,20296:12935335,32855481 -g1,20296:15200914,32855481 -g1,20296:15931640,32855481 -g1,20296:19083266,32855481 -g1,20296:20473940,32855481 -g1,20296:23258564,32855481 -g1,20296:24073831,32855481 -(1,20296:24073831,32855481:0,435480,115847 -r1,20322:24783809,32855481:709978,551327,115847 -k1,20296:24073831,32855481:-709978 -) -(1,20296:24073831,32855481:709978,435480,115847 -k1,20296:24073831,32855481:3277 -h1,20296:24780532,32855481:0,411205,112570 -) -g1,20296:24983038,32855481 -g1,20296:26917660,32855481 -(1,20296:26917660,32855481:0,459977,115847 -r1,20322:31144756,32855481:4227096,575824,115847 -k1,20296:26917660,32855481:-4227096 -) -(1,20296:26917660,32855481:4227096,459977,115847 -k1,20296:26917660,32855481:3277 -h1,20296:31141479,32855481:0,411205,112570 -) -k1,20297:32583029,32855481:1385845 -g1,20297:32583029,32855481 -) -v1,20299:6630773,33540336:0,393216,0 -(1,20304:6630773,34572480:25952256,1425360,196608 -g1,20304:6630773,34572480 -g1,20304:6630773,34572480 -g1,20304:6434165,34572480 -(1,20304:6434165,34572480:0,1425360,196608 -r1,20322:32779637,34572480:26345472,1621968,196608 -k1,20304:6434165,34572480:-26345472 -) -(1,20304:6434165,34572480:26345472,1425360,196608 -[1,20304:6630773,34572480:25952256,1228752,0 -(1,20301:6630773,33774773:25952256,431045,112852 -(1,20300:6630773,33774773:0,0,0 -g1,20300:6630773,33774773 -g1,20300:6630773,33774773 -g1,20300:6303093,33774773 -(1,20300:6303093,33774773:0,0,0 -) -g1,20300:6630773,33774773 -) -g1,20301:7626635,33774773 -g1,20301:8622497,33774773 -g1,20301:10946175,33774773 -g1,20301:11610083,33774773 -g1,20301:19245024,33774773 -g1,20301:19908932,33774773 -g1,20301:21900656,33774773 -g1,20301:22564564,33774773 -k1,20301:22564564,33774773:0 -h1,20301:29535596,33774773:0,0,0 -k1,20301:32583029,33774773:3047433 -g1,20301:32583029,33774773 -) -(1,20302:6630773,34459628:25952256,424439,112852 -h1,20302:6630773,34459628:0,0,0 -g1,20302:6962727,34459628 -g1,20302:7294681,34459628 -g1,20302:7626635,34459628 -g1,20302:7958589,34459628 -g1,20302:8290543,34459628 -g1,20302:8622497,34459628 -g1,20302:8954451,34459628 -g1,20302:9286405,34459628 -g1,20302:9618359,34459628 -g1,20302:9950313,34459628 -g1,20302:10282267,34459628 -g1,20302:10614221,34459628 -g1,20302:10946175,34459628 -g1,20302:11278129,34459628 -g1,20302:11610083,34459628 -g1,20302:11942037,34459628 -g1,20302:12273991,34459628 -g1,20302:12605945,34459628 -g1,20302:12937899,34459628 -g1,20302:13269853,34459628 -g1,20302:13601807,34459628 -g1,20302:13933761,34459628 -g1,20302:14265715,34459628 -g1,20302:14597669,34459628 -g1,20302:14929623,34459628 -g1,20302:15261577,34459628 -g1,20302:15593531,34459628 -g1,20302:15925485,34459628 -g1,20302:16257439,34459628 -g1,20302:16589393,34459628 -g1,20302:18249163,34459628 -g1,20302:18913071,34459628 -g1,20302:20240887,34459628 -g1,20302:23228472,34459628 -g1,20302:23892380,34459628 -h1,20302:26548012,34459628:0,0,0 -k1,20302:32583029,34459628:6035017 -g1,20302:32583029,34459628 -) -] -) -g1,20304:32583029,34572480 -g1,20304:6630773,34572480 -g1,20304:6630773,34572480 -g1,20304:32583029,34572480 -g1,20304:32583029,34572480 -) -h1,20304:6630773,34769088:0,0,0 -v1,20308:6630773,35453943:0,393216,0 -(1,20312:6630773,35771504:25952256,710777,196608 -g1,20312:6630773,35771504 -g1,20312:6630773,35771504 -g1,20312:6434165,35771504 -(1,20312:6434165,35771504:0,710777,196608 -r1,20322:32779637,35771504:26345472,907385,196608 -k1,20312:6434165,35771504:-26345472 -) -(1,20312:6434165,35771504:26345472,710777,196608 -[1,20312:6630773,35771504:25952256,514169,0 -(1,20310:6630773,35665258:25952256,407923,106246 -(1,20309:6630773,35665258:0,0,0 -g1,20309:6630773,35665258 -g1,20309:6630773,35665258 -g1,20309:6303093,35665258 -(1,20309:6303093,35665258:0,0,0 -) -g1,20309:6630773,35665258 -) -g1,20310:7626635,35665258 -g1,20310:8290543,35665258 -h1,20310:8954451,35665258:0,0,0 -k1,20310:32583029,35665258:23628578 -g1,20310:32583029,35665258 -) -] -) -g1,20312:32583029,35771504 -g1,20312:6630773,35771504 -g1,20312:6630773,35771504 -g1,20312:32583029,35771504 -g1,20312:32583029,35771504 -) -h1,20312:6630773,35968112:0,0,0 -(1,20315:6630773,45668443:25952256,9634795,0 -k1,20315:6760463,45668443:129690 -h1,20314:6760463,45668443:0,0,0 -(1,20314:6760463,45668443:25692876,9634795,0 -(1,20314:6760463,45668443:25692851,9634819,0 -(1,20314:6760463,45668443:25692851,9634819,0 -(1,20314:6760463,45668443:0,9634819,0 -(1,20314:6760463,45668443:0,14208860,0 -(1,20314:6760463,45668443:37890292,14208860,0 -) -k1,20314:6760463,45668443:-37890292 -) -) -g1,20314:32453314,45668443 -) -) -) -g1,20315:32453339,45668443 -k1,20315:32583029,45668443:129690 -) -] -(1,20322:32583029,45706769:0,0,0 -g1,20322:32583029,45706769 +k1,20246:6630773,6481928:0 +g1,20246:10614221,6481928 +g1,20246:11278129,6481928 +g1,20246:14265715,6481928 +g1,20246:16921347,6481928 +g1,20246:17585255,6481928 +g1,20246:19576979,6481928 +g1,20246:20240887,6481928 +g1,20246:21568703,6481928 +h1,20246:21900657,6481928:0,0,0 +k1,20246:32583029,6481928:10682372 +g1,20246:32583029,6481928 +) +(1,20247:6630773,7166783:25952256,424439,112852 +h1,20247:6630773,7166783:0,0,0 +g1,20247:6962727,7166783 +g1,20247:7294681,7166783 +g1,20247:13933760,7166783 +g1,20247:14597668,7166783 +h1,20247:15593530,7166783:0,0,0 +k1,20247:32583030,7166783:16989500 +g1,20247:32583030,7166783 +) +] +) +g1,20249:32583029,7279635 +g1,20249:6630773,7279635 +g1,20249:6630773,7279635 +g1,20249:32583029,7279635 +g1,20249:32583029,7279635 +) +h1,20249:6630773,7476243:0,0,0 +(1,20252:6630773,16625445:25952256,9083666,0 +k1,20252:10523651,16625445:3892878 +h1,20251:10523651,16625445:0,0,0 +(1,20251:10523651,16625445:18166500,9083666,0 +(1,20251:10523651,16625445:18167376,9083688,0 +(1,20251:10523651,16625445:18167376,9083688,0 +(1,20251:10523651,16625445:0,9083688,0 +(1,20251:10523651,16625445:0,14208860,0 +(1,20251:10523651,16625445:28417720,14208860,0 +) +k1,20251:10523651,16625445:-28417720 +) +) +g1,20251:28691027,16625445 +) +) +) +g1,20252:28690151,16625445 +k1,20252:32583029,16625445:3892878 +) +v1,20259:6630773,17490525:0,393216,0 +(1,20270:6630773,21255759:25952256,4158450,0 +g1,20270:6630773,21255759 +g1,20270:6237557,21255759 +r1,20320:6368629,21255759:131072,4158450,0 +g1,20270:6567858,21255759 +g1,20270:6764466,21255759 +[1,20270:6764466,21255759:25818563,4158450,0 +(1,20260:6764466,17798823:25818563,701514,196608 +(1,20259:6764466,17798823:0,701514,196608 +r1,20320:7761522,17798823:997056,898122,196608 +k1,20259:6764466,17798823:-997056 +) +(1,20259:6764466,17798823:997056,701514,196608 +) +k1,20259:7958524,17798823:197002 +k1,20259:8286204,17798823:327680 +k1,20259:8970791,17798823:196999 +k1,20259:11299023,17798823:197001 +k1,20259:12147453,17798823:197002 +k1,20259:13541797,17798823:197001 +k1,20259:15626891,17798823:197002 +k1,20259:17217843,17798823:197001 +(1,20259:17217843,17798823:0,452978,122846 +r1,20320:22851786,17798823:5633943,575824,122846 +k1,20259:17217843,17798823:-5633943 +) +(1,20259:17217843,17798823:5633943,452978,122846 +k1,20259:17217843,17798823:3277 +h1,20259:22848509,17798823:0,411205,112570 +) +k1,20259:23222458,17798823:197002 +k1,20259:25746642,17798823:197001 +k1,20259:26602936,17798823:197002 +k1,20259:28193888,17798823:197001 +(1,20259:28193888,17798823:0,452978,115847 +r1,20320:31717560,17798823:3523672,568825,115847 +k1,20259:28193888,17798823:-3523672 +) +(1,20259:28193888,17798823:3523672,452978,115847 +k1,20259:28193888,17798823:3277 +h1,20259:31714283,17798823:0,411205,112570 +) +k1,20259:31914562,17798823:197002 +k1,20260:32583029,17798823:0 +) +(1,20260:6764466,18663903:25818563,505283,115847 +(1,20259:6764466,18663903:0,452978,115847 +r1,20320:10991562,18663903:4227096,568825,115847 +k1,20259:6764466,18663903:-4227096 +) +(1,20259:6764466,18663903:4227096,452978,115847 +k1,20259:6764466,18663903:3277 +h1,20259:10988285,18663903:0,411205,112570 +) +g1,20259:11190791,18663903 +g1,20259:11921517,18663903 +g1,20259:13405252,18663903 +g1,20259:14392879,18663903 +g1,20259:16330123,18663903 +g1,20259:17060849,18663903 +g1,20259:19130476,18663903 +g1,20259:19981133,18663903 +k1,20260:32583029,18663903:9290362 +g1,20260:32583029,18663903 +) +v1,20262:6764466,19348758:0,393216,0 +(1,20268:6764466,21059151:25818563,2103609,196608 +g1,20268:6764466,21059151 +g1,20268:6764466,21059151 +g1,20268:6567858,21059151 +(1,20268:6567858,21059151:0,2103609,196608 +r1,20320:32779637,21059151:26211779,2300217,196608 +k1,20268:6567857,21059151:-26211780 +) +(1,20268:6567858,21059151:26211779,2103609,196608 +[1,20268:6764466,21059151:25818563,1907001,0 +(1,20264:6764466,19576589:25818563,424439,112852 +(1,20263:6764466,19576589:0,0,0 +g1,20263:6764466,19576589 +g1,20263:6764466,19576589 +g1,20263:6436786,19576589 +(1,20263:6436786,19576589:0,0,0 +) +g1,20263:6764466,19576589 +) +k1,20264:6764466,19576589:0 +g1,20264:10747914,19576589 +g1,20264:11411822,19576589 +k1,20264:11411822,19576589:0 +h1,20264:14067454,19576589:0,0,0 +k1,20264:32583030,19576589:18515576 +g1,20264:32583030,19576589 +) +(1,20265:6764466,20261444:25818563,431045,112852 +h1,20265:6764466,20261444:0,0,0 +g1,20265:7096420,20261444 +g1,20265:7428374,20261444 +g1,20265:7760328,20261444 +g1,20265:8092282,20261444 +g1,20265:8424236,20261444 +g1,20265:8756190,20261444 +g1,20265:9088144,20261444 +g1,20265:11743776,20261444 +g1,20265:12407684,20261444 +g1,20265:14399408,20261444 +g1,20265:15063316,20261444 +g1,20265:16059178,20261444 +g1,20265:17718948,20261444 +g1,20265:18382856,20261444 +g1,20265:21038488,20261444 +h1,20265:21370442,20261444:0,0,0 +k1,20265:32583029,20261444:11212587 +g1,20265:32583029,20261444 +) +(1,20266:6764466,20946299:25818563,424439,112852 +h1,20266:6764466,20946299:0,0,0 +g1,20266:7096420,20946299 +g1,20266:7428374,20946299 +g1,20266:12075729,20946299 +g1,20266:12739637,20946299 +g1,20266:14067453,20946299 +g1,20266:17055038,20946299 +g1,20266:17718946,20946299 +h1,20266:20374578,20946299:0,0,0 +k1,20266:32583029,20946299:12208451 +g1,20266:32583029,20946299 +) +] +) +g1,20268:32583029,21059151 +g1,20268:6764466,21059151 +g1,20268:6764466,21059151 +g1,20268:32583029,21059151 +g1,20268:32583029,21059151 +) +h1,20268:6764466,21255759:0,0,0 +] +g1,20270:32583029,21255759 +) +h1,20270:6630773,21255759:0,0,0 +(1,20273:6630773,22120839:25952256,513147,134348 +h1,20272:6630773,22120839:983040,0,0 +k1,20272:9180719,22120839:370219 +k1,20272:12433867,22120839:370219 +k1,20272:15154207,22120839:370219 +k1,20272:16285954,22120839:370219 +k1,20272:19463735,22120839:370219 +k1,20272:20189814,22120839:370219 +k1,20272:22454023,22120839:370219 +k1,20272:23475670,22120839:370219 +k1,20272:24616592,22120839:370219 +k1,20272:28213804,22120839:370219 +k1,20272:31510860,22120839:370219 +k1,20273:32583029,22120839:0 +) +(1,20273:6630773,22985919:25952256,513147,134348 +k1,20272:8161089,22985919:323143 +k1,20272:9100270,22985919:323143 +k1,20272:10595852,22985919:323143 +k1,20272:13621700,22985919:323143 +k1,20272:17684983,22985919:323143 +k1,20272:19204813,22985919:323143 +k1,20272:22142186,22985919:323142 +k1,20272:23124621,22985919:323143 +k1,20272:24466849,22985919:323143 +k1,20272:25962431,22985919:323143 +k1,20272:28508555,22985919:323143 +k1,20272:29490990,22985919:323143 +k1,20272:31189078,22985919:323143 +k1,20272:32583029,22985919:0 +) +(1,20273:6630773,23850999:25952256,513147,126483 +k1,20272:9278045,23850999:322710 +k1,20272:10252183,23850999:322710 +k1,20272:12026515,23850999:322710 +k1,20272:14051195,23850999:322710 +k1,20272:14905402,23850999:322710 +k1,20272:18489184,23850999:322711 +k1,20272:20205845,23850999:322710 +k1,20272:22975670,23850999:322710 +k1,20272:26324177,23850999:322710 +k1,20272:27878964,23850999:322710 +k1,20272:30480361,23850999:322710 +h1,20272:31450949,23850999:0,0,0 +k1,20272:31773659,23850999:322710 +k1,20272:32583029,23850999:0 +) +(1,20273:6630773,24716079:25952256,513147,134348 +k1,20272:8481625,24716079:352699 +h1,20272:9677002,24716079:0,0,0 +k1,20272:10029702,24716079:352700 +k1,20272:11330052,24716079:352699 +k1,20272:14180984,24716079:352700 +k1,20272:16012831,24716079:352699 +(1,20272:16012831,24716079:0,452978,122846 +r1,20320:22350199,24716079:6337368,575824,122846 +k1,20272:16012831,24716079:-6337368 +) +(1,20272:16012831,24716079:6337368,452978,122846 +g1,20272:19181515,24716079 +g1,20272:19884939,24716079 +h1,20272:22346922,24716079:0,411205,112570 +) +k1,20272:22702899,24716079:352700 +k1,20272:24430543,24716079:352699 +k1,20272:25774803,24716079:352700 +k1,20272:28429782,24716079:352699 +k1,20272:30082061,24716079:352700 +k1,20272:31196288,24716079:352699 +k1,20272:32583029,24716079:0 +) +(1,20273:6630773,25581159:25952256,513147,126483 +k1,20272:8380581,25581159:382071 +(1,20272:8380581,25581159:0,452978,115847 +r1,20320:14717949,25581159:6337368,568825,115847 +k1,20272:8380581,25581159:-6337368 +) +(1,20272:8380581,25581159:6337368,452978,115847 +g1,20272:11549265,25581159 +g1,20272:12252689,25581159 +h1,20272:14714672,25581159:0,411205,112570 +) +k1,20272:15273690,25581159:382071 +k1,20272:16674846,25581159:382071 +k1,20272:19496167,25581159:382071 +k1,20272:22180519,25581159:382072 +k1,20272:23719300,25581159:382071 +k1,20272:25956695,25581159:382071 +k1,20272:27357851,25581159:382071 +k1,20272:29615562,25581159:382071 +k1,20272:31189078,25581159:382071 +k1,20273:32583029,25581159:0 +) +(1,20273:6630773,26446239:25952256,505283,134348 +(1,20272:6630773,26446239:0,452978,115847 +r1,20320:14023276,26446239:7392503,568825,115847 +k1,20272:6630773,26446239:-7392503 +) +(1,20272:6630773,26446239:7392503,452978,115847 +g1,20272:9799457,26446239 +g1,20272:10502881,26446239 +h1,20272:14019999,26446239:0,411205,112570 +) +k1,20272:14270393,26446239:247117 +k1,20272:18471298,26446239:247118 +k1,20272:19346250,26446239:247117 +k1,20272:20796608,26446239:247117 +k1,20272:22191916,26446239:247117 +k1,20272:23979785,26446239:247118 +k1,20272:26414494,26446239:247117 +(1,20272:26414494,26446239:0,452978,115847 +r1,20320:30289878,26446239:3875384,568825,115847 +k1,20272:26414494,26446239:-3875384 +) +(1,20272:26414494,26446239:3875384,452978,115847 +g1,20272:28528042,26446239 +g1,20272:29231466,26446239 +h1,20272:30286601,26446239:0,411205,112570 +) +k1,20272:30536995,26446239:247117 +k1,20272:32583029,26446239:0 +) +(1,20273:6630773,27311319:25952256,505283,126483 +g1,20272:9700479,27311319 +g1,20272:11274653,27311319 +g1,20272:13690310,27311319 +g1,20272:15086226,27311319 +g1,20272:18277174,27311319 +g1,20272:20344834,27311319 +g1,20272:21636548,27311319 +(1,20272:21636548,27311319:0,452978,122846 +r1,20320:27973916,27311319:6337368,575824,122846 +k1,20272:21636548,27311319:-6337368 +) +(1,20272:21636548,27311319:6337368,452978,122846 +g1,20272:24805232,27311319 +g1,20272:25508656,27311319 +h1,20272:27970639,27311319:0,411205,112570 +) +k1,20273:32583029,27311319:4556685 +g1,20273:32583029,27311319 +) +v1,20277:6630773,27996174:0,393216,0 +(1,20283:6630773,29706567:25952256,2103609,196608 +g1,20283:6630773,29706567 +g1,20283:6630773,29706567 +g1,20283:6434165,29706567 +(1,20283:6434165,29706567:0,2103609,196608 +r1,20320:32779637,29706567:26345472,2300217,196608 +k1,20283:6434165,29706567:-26345472 +) +(1,20283:6434165,29706567:26345472,2103609,196608 +[1,20283:6630773,29706567:25952256,1907001,0 +(1,20279:6630773,28224005:25952256,424439,106246 +(1,20278:6630773,28224005:0,0,0 +g1,20278:6630773,28224005 +g1,20278:6630773,28224005 +g1,20278:6303093,28224005 +(1,20278:6303093,28224005:0,0,0 +) +g1,20278:6630773,28224005 +) +g1,20279:8954451,28224005 +k1,20279:8954451,28224005:0 +h1,20279:9618359,28224005:0,0,0 +k1,20279:32583029,28224005:22964670 +g1,20279:32583029,28224005 +) +(1,20280:6630773,28908860:25952256,424439,112852 +h1,20280:6630773,28908860:0,0,0 +g1,20280:6962727,28908860 +g1,20280:7294681,28908860 +g1,20280:11278129,28908860 +g1,20280:11942037,28908860 +k1,20280:11942037,28908860:0 +h1,20280:14597669,28908860:0,0,0 +k1,20280:32583029,28908860:17985360 +g1,20280:32583029,28908860 +) +(1,20281:6630773,29593715:25952256,431045,112852 +h1,20281:6630773,29593715:0,0,0 +g1,20281:6962727,29593715 +g1,20281:7294681,29593715 +g1,20281:7626635,29593715 +g1,20281:7958589,29593715 +g1,20281:8290543,29593715 +g1,20281:8622497,29593715 +g1,20281:8954451,29593715 +g1,20281:9286405,29593715 +g1,20281:9618359,29593715 +g1,20281:12273991,29593715 +g1,20281:12937899,29593715 +g1,20281:14929623,29593715 +g1,20281:15593531,29593715 +g1,20281:16589393,29593715 +g1,20281:18249163,29593715 +g1,20281:18913071,29593715 +h1,20281:21236749,29593715:0,0,0 +k1,20281:32583029,29593715:11346280 +g1,20281:32583029,29593715 +) +] +) +g1,20283:32583029,29706567 +g1,20283:6630773,29706567 +g1,20283:6630773,29706567 +g1,20283:32583029,29706567 +g1,20283:32583029,29706567 +) +h1,20283:6630773,29903175:0,0,0 +v1,20287:6630773,30588030:0,393216,0 +(1,20291:6630773,30928713:25952256,733899,196608 +g1,20291:6630773,30928713 +g1,20291:6630773,30928713 +g1,20291:6434165,30928713 +(1,20291:6434165,30928713:0,733899,196608 +r1,20320:32779637,30928713:26345472,930507,196608 +k1,20291:6434165,30928713:-26345472 +) +(1,20291:6434165,30928713:26345472,733899,196608 +[1,20291:6630773,30928713:25952256,537291,0 +(1,20289:6630773,30815861:25952256,424439,112852 +(1,20288:6630773,30815861:0,0,0 +g1,20288:6630773,30815861 +g1,20288:6630773,30815861 +g1,20288:6303093,30815861 +(1,20288:6303093,30815861:0,0,0 +) +g1,20288:6630773,30815861 +) +g1,20289:7626635,30815861 +g1,20289:8622497,30815861 +g1,20289:10946175,30815861 +g1,20289:11610083,30815861 +g1,20289:18249162,30815861 +g1,20289:18913070,30815861 +g1,20289:20240886,30815861 +g1,20289:23228471,30815861 +g1,20289:23892379,30815861 +h1,20289:26548011,30815861:0,0,0 +k1,20289:32583029,30815861:6035018 +g1,20289:32583029,30815861 +) +] +) +g1,20291:32583029,30928713 +g1,20291:6630773,30928713 +g1,20291:6630773,30928713 +g1,20291:32583029,30928713 +g1,20291:32583029,30928713 +) +h1,20291:6630773,31125321:0,0,0 +(1,20295:6630773,31990401:25952256,513147,126483 +h1,20294:6630773,31990401:983040,0,0 +k1,20294:8532334,31990401:290686 +k1,20294:11489024,31990401:290685 +k1,20294:12431138,31990401:290686 +(1,20294:12431138,31990401:0,414482,115847 +r1,20320:14196251,31990401:1765113,530329,115847 +k1,20294:12431138,31990401:-1765113 +) +(1,20294:12431138,31990401:1765113,414482,115847 +k1,20294:12431138,31990401:3277 +h1,20294:14192974,31990401:0,411205,112570 +) +k1,20294:14660606,31990401:290685 +(1,20294:14660606,31990401:0,452978,115847 +r1,20320:17129143,31990401:2468537,568825,115847 +k1,20294:14660606,31990401:-2468537 +) +(1,20294:14660606,31990401:2468537,452978,115847 +k1,20294:14660606,31990401:3277 +h1,20294:17125866,31990401:0,411205,112570 +) +k1,20294:17593499,31990401:290686 +k1,20294:21092828,31990401:290686 +k1,20294:22069675,31990401:290685 +(1,20294:22069675,31990401:0,414482,115847 +r1,20320:23834788,31990401:1765113,530329,115847 +k1,20294:22069675,31990401:-1765113 +) +(1,20294:22069675,31990401:1765113,414482,115847 +k1,20294:22069675,31990401:3277 +h1,20294:23831511,31990401:0,411205,112570 +) +k1,20294:24125474,31990401:290686 +k1,20294:26785286,31990401:290685 +k1,20294:27837500,31990401:290686 +k1,20294:29147270,31990401:290685 +k1,20294:31923737,31990401:290686 +k1,20294:32583029,31990401:0 +) +(1,20295:6630773,32855481:25952256,505283,134348 +g1,20294:10901754,32855481 +g1,20294:11717021,32855481 +g1,20294:12935335,32855481 +g1,20294:15200914,32855481 +g1,20294:15931640,32855481 +g1,20294:19083266,32855481 +g1,20294:20473940,32855481 +g1,20294:23258564,32855481 +g1,20294:24073831,32855481 +(1,20294:24073831,32855481:0,435480,115847 +r1,20320:24783809,32855481:709978,551327,115847 +k1,20294:24073831,32855481:-709978 +) +(1,20294:24073831,32855481:709978,435480,115847 +k1,20294:24073831,32855481:3277 +h1,20294:24780532,32855481:0,411205,112570 +) +g1,20294:24983038,32855481 +g1,20294:26917660,32855481 +(1,20294:26917660,32855481:0,459977,115847 +r1,20320:31144756,32855481:4227096,575824,115847 +k1,20294:26917660,32855481:-4227096 +) +(1,20294:26917660,32855481:4227096,459977,115847 +k1,20294:26917660,32855481:3277 +h1,20294:31141479,32855481:0,411205,112570 +) +k1,20295:32583029,32855481:1385845 +g1,20295:32583029,32855481 +) +v1,20297:6630773,33540336:0,393216,0 +(1,20302:6630773,34572480:25952256,1425360,196608 +g1,20302:6630773,34572480 +g1,20302:6630773,34572480 +g1,20302:6434165,34572480 +(1,20302:6434165,34572480:0,1425360,196608 +r1,20320:32779637,34572480:26345472,1621968,196608 +k1,20302:6434165,34572480:-26345472 +) +(1,20302:6434165,34572480:26345472,1425360,196608 +[1,20302:6630773,34572480:25952256,1228752,0 +(1,20299:6630773,33774773:25952256,431045,112852 +(1,20298:6630773,33774773:0,0,0 +g1,20298:6630773,33774773 +g1,20298:6630773,33774773 +g1,20298:6303093,33774773 +(1,20298:6303093,33774773:0,0,0 +) +g1,20298:6630773,33774773 +) +g1,20299:7626635,33774773 +g1,20299:8622497,33774773 +g1,20299:10946175,33774773 +g1,20299:11610083,33774773 +g1,20299:19245024,33774773 +g1,20299:19908932,33774773 +g1,20299:21900656,33774773 +g1,20299:22564564,33774773 +k1,20299:22564564,33774773:0 +h1,20299:29535596,33774773:0,0,0 +k1,20299:32583029,33774773:3047433 +g1,20299:32583029,33774773 +) +(1,20300:6630773,34459628:25952256,424439,112852 +h1,20300:6630773,34459628:0,0,0 +g1,20300:6962727,34459628 +g1,20300:7294681,34459628 +g1,20300:7626635,34459628 +g1,20300:7958589,34459628 +g1,20300:8290543,34459628 +g1,20300:8622497,34459628 +g1,20300:8954451,34459628 +g1,20300:9286405,34459628 +g1,20300:9618359,34459628 +g1,20300:9950313,34459628 +g1,20300:10282267,34459628 +g1,20300:10614221,34459628 +g1,20300:10946175,34459628 +g1,20300:11278129,34459628 +g1,20300:11610083,34459628 +g1,20300:11942037,34459628 +g1,20300:12273991,34459628 +g1,20300:12605945,34459628 +g1,20300:12937899,34459628 +g1,20300:13269853,34459628 +g1,20300:13601807,34459628 +g1,20300:13933761,34459628 +g1,20300:14265715,34459628 +g1,20300:14597669,34459628 +g1,20300:14929623,34459628 +g1,20300:15261577,34459628 +g1,20300:15593531,34459628 +g1,20300:15925485,34459628 +g1,20300:16257439,34459628 +g1,20300:16589393,34459628 +g1,20300:18249163,34459628 +g1,20300:18913071,34459628 +g1,20300:20240887,34459628 +g1,20300:23228472,34459628 +g1,20300:23892380,34459628 +h1,20300:26548012,34459628:0,0,0 +k1,20300:32583029,34459628:6035017 +g1,20300:32583029,34459628 +) +] +) +g1,20302:32583029,34572480 +g1,20302:6630773,34572480 +g1,20302:6630773,34572480 +g1,20302:32583029,34572480 +g1,20302:32583029,34572480 +) +h1,20302:6630773,34769088:0,0,0 +v1,20306:6630773,35453943:0,393216,0 +(1,20310:6630773,35771504:25952256,710777,196608 +g1,20310:6630773,35771504 +g1,20310:6630773,35771504 +g1,20310:6434165,35771504 +(1,20310:6434165,35771504:0,710777,196608 +r1,20320:32779637,35771504:26345472,907385,196608 +k1,20310:6434165,35771504:-26345472 +) +(1,20310:6434165,35771504:26345472,710777,196608 +[1,20310:6630773,35771504:25952256,514169,0 +(1,20308:6630773,35665258:25952256,407923,106246 +(1,20307:6630773,35665258:0,0,0 +g1,20307:6630773,35665258 +g1,20307:6630773,35665258 +g1,20307:6303093,35665258 +(1,20307:6303093,35665258:0,0,0 +) +g1,20307:6630773,35665258 +) +g1,20308:7626635,35665258 +g1,20308:8290543,35665258 +h1,20308:8954451,35665258:0,0,0 +k1,20308:32583029,35665258:23628578 +g1,20308:32583029,35665258 +) +] +) +g1,20310:32583029,35771504 +g1,20310:6630773,35771504 +g1,20310:6630773,35771504 +g1,20310:32583029,35771504 +g1,20310:32583029,35771504 +) +h1,20310:6630773,35968112:0,0,0 +(1,20313:6630773,45668443:25952256,9634795,0 +k1,20313:6760463,45668443:129690 +h1,20312:6760463,45668443:0,0,0 +(1,20312:6760463,45668443:25692876,9634795,0 +(1,20312:6760463,45668443:25692851,9634819,0 +(1,20312:6760463,45668443:25692851,9634819,0 +(1,20312:6760463,45668443:0,9634819,0 +(1,20312:6760463,45668443:0,14208860,0 +(1,20312:6760463,45668443:37890292,14208860,0 +) +k1,20312:6760463,45668443:-37890292 +) +) +g1,20312:32453314,45668443 +) +) +) +g1,20313:32453339,45668443 +k1,20313:32583029,45668443:129690 +) +] +(1,20320:32583029,45706769:0,0,0 +g1,20320:32583029,45706769 ) ) ] -(1,20322:6630773,47279633:25952256,0,0 -h1,20322:6630773,47279633:25952256,0,0 +(1,20320:6630773,47279633:25952256,0,0 +h1,20320:6630773,47279633:25952256,0,0 ) ] -(1,20322:4262630,4025873:0,0,0 -[1,20322:-473656,4025873:0,0,0 -(1,20322:-473656,-710413:0,0,0 -(1,20322:-473656,-710413:0,0,0 -g1,20322:-473656,-710413 +(1,20320:4262630,4025873:0,0,0 +[1,20320:-473656,4025873:0,0,0 +(1,20320:-473656,-710413:0,0,0 +(1,20320:-473656,-710413:0,0,0 +g1,20320:-473656,-710413 ) -g1,20322:-473656,-710413 +g1,20320:-473656,-710413 ) ] ) ] !22759 -}340 -Input:3692:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3693:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3694:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3695:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}341 Input:3696:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3697:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3698:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -354595,1318 +354799,1318 @@ Input:3702:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3703:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3704:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3705:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3706:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3707:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3708:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{341 -[1,20377:4262630,47279633:28320399,43253760,0 -(1,20377:4262630,4025873:0,0,0 -[1,20377:-473656,4025873:0,0,0 -(1,20377:-473656,-710413:0,0,0 -(1,20377:-473656,-644877:0,0,0 -k1,20377:-473656,-644877:-65536 +{342 +[1,20375:4262630,47279633:28320399,43253760,0 +(1,20375:4262630,4025873:0,0,0 +[1,20375:-473656,4025873:0,0,0 +(1,20375:-473656,-710413:0,0,0 +(1,20375:-473656,-644877:0,0,0 +k1,20375:-473656,-644877:-65536 ) -(1,20377:-473656,4736287:0,0,0 -k1,20377:-473656,4736287:5209943 +(1,20375:-473656,4736287:0,0,0 +k1,20375:-473656,4736287:5209943 ) -g1,20377:-473656,-710413 +g1,20375:-473656,-710413 ) ] ) -[1,20377:6630773,47279633:25952256,43253760,0 -[1,20377:6630773,4812305:25952256,786432,0 -(1,20377:6630773,4812305:25952256,513147,126483 -(1,20377:6630773,4812305:25952256,513147,126483 -g1,20377:3078558,4812305 -[1,20377:3078558,4812305:0,0,0 -(1,20377:3078558,2439708:0,1703936,0 -k1,20377:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20377:2537886,2439708:1179648,16384,0 +[1,20375:6630773,47279633:25952256,43253760,0 +[1,20375:6630773,4812305:25952256,786432,0 +(1,20375:6630773,4812305:25952256,513147,126483 +(1,20375:6630773,4812305:25952256,513147,126483 +g1,20375:3078558,4812305 +[1,20375:3078558,4812305:0,0,0 +(1,20375:3078558,2439708:0,1703936,0 +k1,20375:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20375:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20377:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20375:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20377:3078558,4812305:0,0,0 -(1,20377:3078558,2439708:0,1703936,0 -g1,20377:29030814,2439708 -g1,20377:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20377:36151628,1915420:16384,1179648,0 +[1,20375:3078558,4812305:0,0,0 +(1,20375:3078558,2439708:0,1703936,0 +g1,20375:29030814,2439708 +g1,20375:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20375:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20377:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20375:37855564,2439708:1179648,16384,0 ) ) -k1,20377:3078556,2439708:-34777008 +k1,20375:3078556,2439708:-34777008 ) ] -[1,20377:3078558,4812305:0,0,0 -(1,20377:3078558,49800853:0,16384,2228224 -k1,20377:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20377:2537886,49800853:1179648,16384,0 +[1,20375:3078558,4812305:0,0,0 +(1,20375:3078558,49800853:0,16384,2228224 +k1,20375:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20375:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20377:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20375:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20377:3078558,4812305:0,0,0 -(1,20377:3078558,49800853:0,16384,2228224 -g1,20377:29030814,49800853 -g1,20377:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20377:36151628,51504789:16384,1179648,0 +[1,20375:3078558,4812305:0,0,0 +(1,20375:3078558,49800853:0,16384,2228224 +g1,20375:29030814,49800853 +g1,20375:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20375:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20377:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20375:37855564,49800853:1179648,16384,0 ) ) -k1,20377:3078556,49800853:-34777008 +k1,20375:3078556,49800853:-34777008 ) ] -g1,20377:6630773,4812305 -k1,20377:21386205,4812305:13560055 -g1,20377:21999622,4812305 -g1,20377:25611966,4812305 -g1,20377:28956923,4812305 -g1,20377:29772190,4812305 +g1,20375:6630773,4812305 +k1,20375:21386205,4812305:13560055 +g1,20375:21999622,4812305 +g1,20375:25611966,4812305 +g1,20375:28956923,4812305 +g1,20375:29772190,4812305 ) ) ] -[1,20377:6630773,45706769:25952256,40108032,0 -(1,20377:6630773,45706769:25952256,40108032,0 -(1,20377:6630773,45706769:0,0,0 -g1,20377:6630773,45706769 +[1,20375:6630773,45706769:25952256,40108032,0 +(1,20375:6630773,45706769:25952256,40108032,0 +(1,20375:6630773,45706769:0,0,0 +g1,20375:6630773,45706769 ) -[1,20377:6630773,45706769:25952256,40108032,0 -(1,20322:6630773,6254097:25952256,513147,134348 -h1,20321:6630773,6254097:983040,0,0 -k1,20321:10229423,6254097:139004 -(1,20321:10229423,6254097:0,452978,115847 -r1,20377:14456519,6254097:4227096,568825,115847 -k1,20321:10229423,6254097:-4227096 +[1,20375:6630773,45706769:25952256,40108032,0 +(1,20320:6630773,6254097:25952256,513147,134348 +h1,20319:6630773,6254097:983040,0,0 +k1,20319:10229423,6254097:139004 +(1,20319:10229423,6254097:0,452978,115847 +r1,20375:14456519,6254097:4227096,568825,115847 +k1,20319:10229423,6254097:-4227096 ) -(1,20321:10229423,6254097:4227096,452978,115847 -k1,20321:10229423,6254097:3277 -h1,20321:14453242,6254097:0,411205,112570 -) -k1,20321:14769193,6254097:139004 -k1,20321:16099641,6254097:139003 -k1,20321:17027043,6254097:139004 -k1,20321:20137449,6254097:139004 -k1,20321:23283900,6254097:139004 -(1,20321:23283900,6254097:0,452978,122846 -r1,20377:27510996,6254097:4227096,575824,122846 -k1,20321:23283900,6254097:-4227096 -) -(1,20321:23283900,6254097:4227096,452978,122846 -k1,20321:23283900,6254097:3277 -h1,20321:27507719,6254097:0,411205,112570 -) -k1,20321:27823669,6254097:139003 -k1,20321:28724201,6254097:139004 -k1,20321:31128785,6254097:139004 -k1,20322:32583029,6254097:0 -) -(1,20322:6630773,7119177:25952256,513147,134348 -k1,20321:8303134,7119177:232535 -k1,20321:8891529,7119177:232535 -k1,20321:12300594,7119177:232535 -k1,20321:15769296,7119177:232534 -k1,20321:16617869,7119177:232535 -k1,20321:18022843,7119177:232535 -k1,20321:22104307,7119177:232535 -k1,20321:24081410,7119177:232535 -k1,20321:25333030,7119177:232535 -(1,20321:25333030,7119177:0,414482,115847 -r1,20377:25691296,7119177:358266,530329,115847 -k1,20321:25333030,7119177:-358266 -) -(1,20321:25333030,7119177:358266,414482,115847 -k1,20321:25333030,7119177:3277 -h1,20321:25688019,7119177:0,411205,112570 -) -k1,20321:25923830,7119177:232534 -k1,20321:27347810,7119177:232535 -(1,20321:27347810,7119177:0,414482,115847 -r1,20377:27706076,7119177:358266,530329,115847 -k1,20321:27347810,7119177:-358266 -) -(1,20321:27347810,7119177:358266,414482,115847 -k1,20321:27347810,7119177:3277 -h1,20321:27702799,7119177:0,411205,112570 -) -k1,20321:27938611,7119177:232535 -k1,20321:31386342,7119177:232535 -k1,20322:32583029,7119177:0 -) -(1,20322:6630773,7984257:25952256,513147,134348 -(1,20321:6630773,7984257:0,414482,115847 -r1,20377:8395886,7984257:1765113,530329,115847 -k1,20321:6630773,7984257:-1765113 -) -(1,20321:6630773,7984257:1765113,414482,115847 -k1,20321:6630773,7984257:3277 -h1,20321:8392609,7984257:0,411205,112570 -) -k1,20321:8547370,7984257:151484 -k1,20321:9646505,7984257:151484 -k1,20321:11249611,7984257:151484 -k1,20321:12302822,7984257:151436 -k1,20321:13470769,7984257:151484 -k1,20321:14153750,7984257:151484 -k1,20321:16890629,7984257:151484 -k1,20321:17693541,7984257:151484 -k1,20321:18864110,7984257:151484 -(1,20321:18864110,7984257:0,459977,115847 -r1,20377:20277511,7984257:1413401,575824,115847 -k1,20321:18864110,7984257:-1413401 -) -(1,20321:18864110,7984257:1413401,459977,115847 -k1,20321:18864110,7984257:3277 -h1,20321:20274234,7984257:0,411205,112570 -) -k1,20321:20428994,7984257:151483 -k1,20321:23598411,7984257:151484 -k1,20321:25143846,7984257:151484 -k1,20321:25651190,7984257:151484 -k1,20321:30902686,7984257:151484 -k1,20321:32583029,7984257:0 -) -(1,20322:6630773,8849337:25952256,505283,134348 -g1,20321:8568017,8849337 -g1,20321:12072227,8849337 -g1,20321:12922884,8849337 -g1,20321:13477973,8849337 -g1,20321:15335918,8849337 -g1,20321:16579791,8849337 -g1,20321:17395058,8849337 -g1,20321:17950147,8849337 -g1,20321:19051151,8849337 -k1,20322:32583029,8849337:10243282 -g1,20322:32583029,8849337 -) -v1,20326:6630773,9534192:0,393216,0 -(1,20333:6630773,11929440:25952256,2788464,196608 -g1,20333:6630773,11929440 -g1,20333:6630773,11929440 -g1,20333:6434165,11929440 -(1,20333:6434165,11929440:0,2788464,196608 -r1,20377:32779637,11929440:26345472,2985072,196608 -k1,20333:6434165,11929440:-26345472 -) -(1,20333:6434165,11929440:26345472,2788464,196608 -[1,20333:6630773,11929440:25952256,2591856,0 -(1,20328:6630773,9762023:25952256,424439,106246 -(1,20327:6630773,9762023:0,0,0 -g1,20327:6630773,9762023 -g1,20327:6630773,9762023 -g1,20327:6303093,9762023 -(1,20327:6303093,9762023:0,0,0 -) -g1,20327:6630773,9762023 -) -g1,20328:8954451,9762023 -k1,20328:8954451,9762023:0 -h1,20328:9618359,9762023:0,0,0 -k1,20328:32583029,9762023:22964670 -g1,20328:32583029,9762023 -) -(1,20329:6630773,10446878:25952256,424439,112852 -h1,20329:6630773,10446878:0,0,0 -g1,20329:6962727,10446878 -g1,20329:7294681,10446878 -g1,20329:11278129,10446878 -g1,20329:11942037,10446878 -k1,20329:11942037,10446878:0 -h1,20329:14597669,10446878:0,0,0 -k1,20329:32583029,10446878:17985360 -g1,20329:32583029,10446878 -) -(1,20330:6630773,11131733:25952256,424439,112852 -h1,20330:6630773,11131733:0,0,0 -g1,20330:6962727,11131733 -g1,20330:7294681,11131733 -g1,20330:7626635,11131733 -g1,20330:7958589,11131733 -g1,20330:8290543,11131733 -g1,20330:8622497,11131733 -g1,20330:8954451,11131733 -g1,20330:9286405,11131733 -g1,20330:9618359,11131733 -g1,20330:12273991,11131733 -g1,20330:12937899,11131733 -g1,20330:14929623,11131733 -g1,20330:15593531,11131733 -g1,20330:16589393,11131733 -g1,20330:17253301,11131733 -g1,20330:17917209,11131733 -g1,20330:19245025,11131733 -h1,20330:19576979,11131733:0,0,0 -k1,20330:32583029,11131733:13006050 -g1,20330:32583029,11131733 -) -(1,20331:6630773,11816588:25952256,431045,112852 -h1,20331:6630773,11816588:0,0,0 -g1,20331:6962727,11816588 -g1,20331:7294681,11816588 -g1,20331:13269852,11816588 -g1,20331:13933760,11816588 -k1,20331:13933760,11816588:0 -h1,20331:17917207,11816588:0,0,0 -k1,20331:32583029,11816588:14665822 -g1,20331:32583029,11816588 -) -] -) -g1,20333:32583029,11929440 -g1,20333:6630773,11929440 -g1,20333:6630773,11929440 -g1,20333:32583029,11929440 -g1,20333:32583029,11929440 -) -h1,20333:6630773,12126048:0,0,0 -v1,20337:6630773,12810903:0,393216,0 -(1,20341:6630773,13144980:25952256,727293,196608 -g1,20341:6630773,13144980 -g1,20341:6630773,13144980 -g1,20341:6434165,13144980 -(1,20341:6434165,13144980:0,727293,196608 -r1,20377:32779637,13144980:26345472,923901,196608 -k1,20341:6434165,13144980:-26345472 -) -(1,20341:6434165,13144980:26345472,727293,196608 -[1,20341:6630773,13144980:25952256,530685,0 -(1,20339:6630773,13038734:25952256,424439,106246 -(1,20338:6630773,13038734:0,0,0 -g1,20338:6630773,13038734 -g1,20338:6630773,13038734 -g1,20338:6303093,13038734 -(1,20338:6303093,13038734:0,0,0 -) -g1,20338:6630773,13038734 -) -g1,20339:8954451,13038734 -g1,20339:9618359,13038734 -g1,20339:14929622,13038734 -g1,20339:15593530,13038734 -h1,20339:16257438,13038734:0,0,0 -k1,20339:32583029,13038734:16325591 -g1,20339:32583029,13038734 -) -] -) -g1,20341:32583029,13144980 -g1,20341:6630773,13144980 -g1,20341:6630773,13144980 -g1,20341:32583029,13144980 -g1,20341:32583029,13144980 -) -h1,20341:6630773,13341588:0,0,0 -(1,20344:6630773,22490790:25952256,9083666,0 -k1,20344:10523651,22490790:3892878 -h1,20343:10523651,22490790:0,0,0 -(1,20343:10523651,22490790:18166500,9083666,0 -(1,20343:10523651,22490790:18167376,9083688,0 -(1,20343:10523651,22490790:18167376,9083688,0 -(1,20343:10523651,22490790:0,9083688,0 -(1,20343:10523651,22490790:0,14208860,0 -(1,20343:10523651,22490790:28417720,14208860,0 -) -k1,20343:10523651,22490790:-28417720 -) -) -g1,20343:28691027,22490790 -) -) -) -g1,20344:28690151,22490790 -k1,20344:32583029,22490790:3892878 -) -(1,20351:6630773,23355870:25952256,513147,134348 -h1,20350:6630773,23355870:983040,0,0 -k1,20350:10393107,23355870:302688 -(1,20350:10393107,23355870:0,452978,115847 -r1,20377:15323627,23355870:4930520,568825,115847 -k1,20350:10393107,23355870:-4930520 -) -(1,20350:10393107,23355870:4930520,452978,115847 -k1,20350:10393107,23355870:3277 -h1,20350:15320350,23355870:0,411205,112570 -) -k1,20350:15799986,23355870:302689 -k1,20350:17294119,23355870:302688 -k1,20350:18385205,23355870:302688 -k1,20350:21659296,23355870:302689 -k1,20350:24969431,23355870:302688 -(1,20350:24969431,23355870:0,452978,122846 -r1,20377:28493103,23355870:3523672,575824,122846 -k1,20350:24969431,23355870:-3523672 -) -(1,20350:24969431,23355870:3523672,452978,122846 -k1,20350:24969431,23355870:3277 -h1,20350:28489826,23355870:0,411205,112570 -) -k1,20350:28969462,23355870:302689 -k1,20350:31015408,23355870:302688 -k1,20351:32583029,23355870:0 -) -(1,20351:6630773,24220950:25952256,513147,134348 -(1,20350:6630773,24220950:0,452978,115847 -r1,20377:10857869,24220950:4227096,568825,115847 -k1,20350:6630773,24220950:-4227096 -) -(1,20350:6630773,24220950:4227096,452978,115847 -k1,20350:6630773,24220950:3277 -h1,20350:10854592,24220950:0,411205,112570 -) -g1,20350:11057098,24220950 -g1,20350:12631928,24220950 -g1,20350:13447195,24220950 -g1,20350:15155063,24220950 -g1,20350:16446777,24220950 -g1,20350:17305298,24220950 -g1,20350:20732175,24220950 -g1,20350:23258587,24220950 -g1,20350:24117108,24220950 -g1,20350:26457398,24220950 -g1,20350:28177062,24220950 -g1,20350:29567736,24220950 -k1,20351:32583029,24220950:1621998 -g1,20351:32583029,24220950 -) -v1,20353:6630773,24905805:0,393216,0 -(1,20357:6630773,25239882:25952256,727293,196608 -g1,20357:6630773,25239882 -g1,20357:6630773,25239882 -g1,20357:6434165,25239882 -(1,20357:6434165,25239882:0,727293,196608 -r1,20377:32779637,25239882:26345472,923901,196608 -k1,20357:6434165,25239882:-26345472 -) -(1,20357:6434165,25239882:26345472,727293,196608 -[1,20357:6630773,25239882:25952256,530685,0 -(1,20355:6630773,25133636:25952256,424439,106246 -(1,20354:6630773,25133636:0,0,0 -g1,20354:6630773,25133636 -g1,20354:6630773,25133636 -g1,20354:6303093,25133636 -(1,20354:6303093,25133636:0,0,0 -) -g1,20354:6630773,25133636 -) -g1,20355:8954451,25133636 -g1,20355:9618359,25133636 -g1,20355:15593530,25133636 -g1,20355:16257438,25133636 -h1,20355:16921346,25133636:0,0,0 -k1,20355:32583029,25133636:15661683 -g1,20355:32583029,25133636 -) -] -) -g1,20357:32583029,25239882 -g1,20357:6630773,25239882 -g1,20357:6630773,25239882 -g1,20357:32583029,25239882 -g1,20357:32583029,25239882 -) -h1,20357:6630773,25436490:0,0,0 -(1,20360:6630773,34585692:25952256,9083666,0 -k1,20360:10523651,34585692:3892878 -h1,20359:10523651,34585692:0,0,0 -(1,20359:10523651,34585692:18166500,9083666,0 -(1,20359:10523651,34585692:18167376,9083688,0 -(1,20359:10523651,34585692:18167376,9083688,0 -(1,20359:10523651,34585692:0,9083688,0 -(1,20359:10523651,34585692:0,14208860,0 -(1,20359:10523651,34585692:28417720,14208860,0 -) -k1,20359:10523651,34585692:-28417720 -) -) -g1,20359:28691027,34585692 -) -) -) -g1,20360:28690151,34585692 -k1,20360:32583029,34585692:3892878 -) -(1,20368:6630773,35450772:25952256,505283,126483 -h1,20366:6630773,35450772:983040,0,0 -k1,20366:8627507,35450772:195805 -(1,20366:8627507,35450772:0,452978,115847 -r1,20377:12151179,35450772:3523672,568825,115847 -k1,20366:8627507,35450772:-3523672 -) -(1,20366:8627507,35450772:3523672,452978,115847 -k1,20366:8627507,35450772:3277 -h1,20366:12147902,35450772:0,411205,112570 -) -k1,20366:12520654,35450772:195805 -(1,20366:12520654,35450772:0,452978,115847 -r1,20377:16747750,35450772:4227096,568825,115847 -k1,20366:12520654,35450772:-4227096 -) -(1,20366:12520654,35450772:4227096,452978,115847 -k1,20366:12520654,35450772:3277 -h1,20366:16744473,35450772:0,411205,112570 -) -k1,20366:16943556,35450772:195806 -k1,20366:18330806,35450772:195805 -(1,20366:18330806,35450772:0,452978,115847 -r1,20377:23261326,35450772:4930520,568825,115847 -k1,20366:18330806,35450772:-4930520 -) -(1,20366:18330806,35450772:4930520,452978,115847 -k1,20366:18330806,35450772:3277 -h1,20366:23258049,35450772:0,411205,112570 -) -k1,20366:23457131,35450772:195805 -k1,20366:26440838,35450772:195805 -(1,20366:26440838,35450772:0,452978,115847 -r1,20377:28909375,35450772:2468537,568825,115847 -k1,20366:26440838,35450772:-2468537 -) -(1,20366:26440838,35450772:2468537,452978,115847 -k1,20366:26440838,35450772:3277 -h1,20366:28906098,35450772:0,411205,112570 -) -k1,20366:29105181,35450772:195806 -k1,20366:29917024,35450772:195805 -k1,20366:32583029,35450772:0 -) -(1,20368:6630773,36315852:25952256,505283,134348 -g1,20366:7481430,36315852 -(1,20366:7481430,36315852:0,414482,115847 -r1,20377:9598255,36315852:2116825,530329,115847 -k1,20366:7481430,36315852:-2116825 -) -(1,20366:7481430,36315852:2116825,414482,115847 -k1,20366:7481430,36315852:3277 -h1,20366:9594978,36315852:0,411205,112570 -) -g1,20366:9797484,36315852 -g1,20366:11188158,36315852 -g1,20366:12767575,36315852 -g1,20366:14071086,36315852 -g1,20366:15018081,36315852 -g1,20366:17519590,36315852 -g1,20366:18480347,36315852 -g1,20366:21487138,36315852 -g1,20366:23325422,36315852 -g1,20366:24176079,36315852 -g1,20366:25394393,36315852 -(1,20366:25394393,36315852:0,459977,115847 -r1,20377:26807794,36315852:1413401,575824,115847 -k1,20366:25394393,36315852:-1413401 -) -(1,20366:25394393,36315852:1413401,459977,115847 -k1,20366:25394393,36315852:3277 -h1,20366:26804517,36315852:0,411205,112570 -) -g1,20366:27007023,36315852 -g1,20366:30224185,36315852 -k1,20368:32583029,36315852:2358844 -g1,20368:32583029,36315852 -) -(1,20369:6630773,38432670:25952256,564462,139132 -(1,20369:6630773,38432670:2450326,534184,12975 -g1,20369:6630773,38432670 -g1,20369:9081099,38432670 -) -g1,20369:12118955,38432670 -k1,20369:32583029,38432670:17022516 -g1,20369:32583029,38432670 -) -(1,20373:6630773,39690966:25952256,513147,134348 -k1,20372:9829764,39690966:202030 -k1,20372:12364219,39690966:202029 -k1,20372:15592046,39690966:202030 -k1,20372:16785636,39690966:202030 -k1,20372:18006750,39690966:202029 -k1,20372:21513761,39690966:202030 -k1,20372:22375082,39690966:202029 -k1,20372:22932972,39690966:202030 -k1,20372:26544840,39690966:202030 -k1,20372:27819038,39690966:202029 -k1,20372:29012628,39690966:202030 -k1,20372:32583029,39690966:0 -) -(1,20373:6630773,40556046:25952256,513147,134348 -k1,20372:8055482,40556046:233264 -k1,20372:9355018,40556046:233265 -k1,20372:12817241,40556046:233264 -k1,20372:14785899,40556046:233265 -k1,20372:16539598,40556046:233264 -k1,20372:17845031,40556046:233264 -k1,20372:19964422,40556046:233265 -k1,20372:21755477,40556046:233264 -k1,20372:23093024,40556046:233265 -k1,20372:24074054,40556046:233264 -k1,20372:27443871,40556046:233264 -k1,20372:28293174,40556046:233265 -k1,20372:28924897,40556046:233264 -k1,20372:29841047,40556046:233265 -k1,20372:30472770,40556046:233264 -k1,20373:32583029,40556046:0 -) -(1,20373:6630773,41421126:25952256,513147,134348 -k1,20372:8600843,41421126:298902 -k1,20372:10008514,41421126:298802 -k1,20372:10990301,41421126:298902 -k1,20372:12571744,41421126:298903 -k1,20372:13688535,41421126:298902 -k1,20372:15381388,41421126:298902 -k1,20372:19246759,41421126:298902 -k1,20372:20003758,41421126:298902 -k1,20372:20834157,41421126:298902 -k1,20372:23763020,41421126:298903 -k1,20372:24713350,41421126:298902 -k1,20372:26104737,41421126:298902 -k1,20372:29165982,41421126:298902 -k1,20373:32583029,41421126:0 -) -(1,20373:6630773,42286206:25952256,513147,126483 -k1,20372:8215251,42286206:216741 -k1,20372:10244718,42286206:216741 -k1,20372:13476771,42286206:216742 -k1,20372:14360668,42286206:216741 -(1,20372:14360668,42286206:0,452978,122846 -r1,20377:19291188,42286206:4930520,575824,122846 -k1,20372:14360668,42286206:-4930520 -) -(1,20372:14360668,42286206:4930520,452978,122846 -k1,20372:14360668,42286206:3277 -h1,20372:19287911,42286206:0,411205,112570 -) -k1,20372:19507929,42286206:216741 -k1,20372:21237896,42286206:216741 -k1,20372:22106066,42286206:216742 -k1,20372:24252187,42286206:216741 -k1,20372:25370685,42286206:216723 -k1,20372:27919853,42286206:216742 -k1,20372:29744192,42286206:216741 -k1,20372:32119689,42286206:216741 -k1,20372:32583029,42286206:0 -) -(1,20373:6630773,43151286:25952256,513147,126483 -k1,20372:12121644,43151286:261753 -k1,20372:13224225,43151286:261754 -k1,20372:14017475,43151286:261753 -k1,20372:15792455,43151286:261754 -k1,20372:16670246,43151286:261753 -k1,20372:19598005,43151286:261754 -k1,20372:20511186,43151286:261753 -k1,20372:22977570,43151286:261753 -k1,20372:25654326,43151286:261754 -k1,20372:27523677,43151286:261753 -k1,20372:28733082,43151286:261754 -(1,20372:28733082,43151286:0,414482,115847 -r1,20377:29091348,43151286:358266,530329,115847 -k1,20372:28733082,43151286:-358266 -) -(1,20372:28733082,43151286:358266,414482,115847 -k1,20372:28733082,43151286:3277 -h1,20372:29088071,43151286:0,411205,112570 -) -k1,20372:29353101,43151286:261753 -k1,20372:30806300,43151286:261754 -(1,20372:30806300,43151286:0,414482,115847 -r1,20377:31164566,43151286:358266,530329,115847 -k1,20372:30806300,43151286:-358266 -) -(1,20372:30806300,43151286:358266,414482,115847 -k1,20372:30806300,43151286:3277 -h1,20372:31161289,43151286:0,411205,112570 -) -k1,20372:31599989,43151286:261753 -k1,20372:32583029,43151286:0 -) -(1,20373:6630773,44016366:25952256,505283,134348 -g1,20372:8565395,44016366 -g1,20372:9450786,44016366 -g1,20372:12787879,44016366 -(1,20372:12787879,44016366:0,414482,115847 -r1,20377:14552993,44016366:1765114,530329,115847 -k1,20372:12787879,44016366:-1765114 -) -(1,20372:12787879,44016366:1765114,414482,115847 -g1,20372:13494580,44016366 -g1,20372:14198004,44016366 -h1,20372:14549716,44016366:0,411205,112570 -) -g1,20372:14752222,44016366 -g1,20372:16142896,44016366 -(1,20372:16142896,44016366:0,414482,115847 -r1,20377:17908010,44016366:1765114,530329,115847 -k1,20372:16142896,44016366:-1765114 -) -(1,20372:16142896,44016366:1765114,414482,115847 -g1,20372:16849597,44016366 -g1,20372:17553021,44016366 -h1,20372:17904733,44016366:0,411205,112570 -) -g1,20372:18280909,44016366 -g1,20372:19471698,44016366 -g1,20372:21746452,44016366 -g1,20372:23814112,44016366 -k1,20373:32583029,44016366:4722725 -g1,20373:32583029,44016366 -) -] -(1,20377:32583029,45706769:0,0,0 -g1,20377:32583029,45706769 -) -) -] -(1,20377:6630773,47279633:25952256,0,0 -h1,20377:6630773,47279633:25952256,0,0 -) -] -(1,20377:4262630,4025873:0,0,0 -[1,20377:-473656,4025873:0,0,0 -(1,20377:-473656,-710413:0,0,0 -(1,20377:-473656,-710413:0,0,0 -g1,20377:-473656,-710413 -) -g1,20377:-473656,-710413 +(1,20319:10229423,6254097:4227096,452978,115847 +k1,20319:10229423,6254097:3277 +h1,20319:14453242,6254097:0,411205,112570 +) +k1,20319:14769193,6254097:139004 +k1,20319:16099641,6254097:139003 +k1,20319:17027043,6254097:139004 +k1,20319:20137449,6254097:139004 +k1,20319:23283900,6254097:139004 +(1,20319:23283900,6254097:0,452978,122846 +r1,20375:27510996,6254097:4227096,575824,122846 +k1,20319:23283900,6254097:-4227096 +) +(1,20319:23283900,6254097:4227096,452978,122846 +k1,20319:23283900,6254097:3277 +h1,20319:27507719,6254097:0,411205,112570 +) +k1,20319:27823669,6254097:139003 +k1,20319:28724201,6254097:139004 +k1,20319:31128785,6254097:139004 +k1,20320:32583029,6254097:0 +) +(1,20320:6630773,7119177:25952256,513147,134348 +k1,20319:8303134,7119177:232535 +k1,20319:8891529,7119177:232535 +k1,20319:12300594,7119177:232535 +k1,20319:15769296,7119177:232534 +k1,20319:16617869,7119177:232535 +k1,20319:18022843,7119177:232535 +k1,20319:22104307,7119177:232535 +k1,20319:24081410,7119177:232535 +k1,20319:25333030,7119177:232535 +(1,20319:25333030,7119177:0,414482,115847 +r1,20375:25691296,7119177:358266,530329,115847 +k1,20319:25333030,7119177:-358266 +) +(1,20319:25333030,7119177:358266,414482,115847 +k1,20319:25333030,7119177:3277 +h1,20319:25688019,7119177:0,411205,112570 +) +k1,20319:25923830,7119177:232534 +k1,20319:27347810,7119177:232535 +(1,20319:27347810,7119177:0,414482,115847 +r1,20375:27706076,7119177:358266,530329,115847 +k1,20319:27347810,7119177:-358266 +) +(1,20319:27347810,7119177:358266,414482,115847 +k1,20319:27347810,7119177:3277 +h1,20319:27702799,7119177:0,411205,112570 +) +k1,20319:27938611,7119177:232535 +k1,20319:31386342,7119177:232535 +k1,20320:32583029,7119177:0 +) +(1,20320:6630773,7984257:25952256,513147,134348 +(1,20319:6630773,7984257:0,414482,115847 +r1,20375:8395886,7984257:1765113,530329,115847 +k1,20319:6630773,7984257:-1765113 +) +(1,20319:6630773,7984257:1765113,414482,115847 +k1,20319:6630773,7984257:3277 +h1,20319:8392609,7984257:0,411205,112570 +) +k1,20319:8547370,7984257:151484 +k1,20319:9646505,7984257:151484 +k1,20319:11249611,7984257:151484 +k1,20319:12302822,7984257:151436 +k1,20319:13470769,7984257:151484 +k1,20319:14153750,7984257:151484 +k1,20319:16890629,7984257:151484 +k1,20319:17693541,7984257:151484 +k1,20319:18864110,7984257:151484 +(1,20319:18864110,7984257:0,459977,115847 +r1,20375:20277511,7984257:1413401,575824,115847 +k1,20319:18864110,7984257:-1413401 +) +(1,20319:18864110,7984257:1413401,459977,115847 +k1,20319:18864110,7984257:3277 +h1,20319:20274234,7984257:0,411205,112570 +) +k1,20319:20428994,7984257:151483 +k1,20319:23598411,7984257:151484 +k1,20319:25143846,7984257:151484 +k1,20319:25651190,7984257:151484 +k1,20319:30902686,7984257:151484 +k1,20319:32583029,7984257:0 +) +(1,20320:6630773,8849337:25952256,505283,134348 +g1,20319:8568017,8849337 +g1,20319:12072227,8849337 +g1,20319:12922884,8849337 +g1,20319:13477973,8849337 +g1,20319:15335918,8849337 +g1,20319:16579791,8849337 +g1,20319:17395058,8849337 +g1,20319:17950147,8849337 +g1,20319:19051151,8849337 +k1,20320:32583029,8849337:10243282 +g1,20320:32583029,8849337 +) +v1,20324:6630773,9534192:0,393216,0 +(1,20331:6630773,11929440:25952256,2788464,196608 +g1,20331:6630773,11929440 +g1,20331:6630773,11929440 +g1,20331:6434165,11929440 +(1,20331:6434165,11929440:0,2788464,196608 +r1,20375:32779637,11929440:26345472,2985072,196608 +k1,20331:6434165,11929440:-26345472 +) +(1,20331:6434165,11929440:26345472,2788464,196608 +[1,20331:6630773,11929440:25952256,2591856,0 +(1,20326:6630773,9762023:25952256,424439,106246 +(1,20325:6630773,9762023:0,0,0 +g1,20325:6630773,9762023 +g1,20325:6630773,9762023 +g1,20325:6303093,9762023 +(1,20325:6303093,9762023:0,0,0 +) +g1,20325:6630773,9762023 +) +g1,20326:8954451,9762023 +k1,20326:8954451,9762023:0 +h1,20326:9618359,9762023:0,0,0 +k1,20326:32583029,9762023:22964670 +g1,20326:32583029,9762023 +) +(1,20327:6630773,10446878:25952256,424439,112852 +h1,20327:6630773,10446878:0,0,0 +g1,20327:6962727,10446878 +g1,20327:7294681,10446878 +g1,20327:11278129,10446878 +g1,20327:11942037,10446878 +k1,20327:11942037,10446878:0 +h1,20327:14597669,10446878:0,0,0 +k1,20327:32583029,10446878:17985360 +g1,20327:32583029,10446878 +) +(1,20328:6630773,11131733:25952256,424439,112852 +h1,20328:6630773,11131733:0,0,0 +g1,20328:6962727,11131733 +g1,20328:7294681,11131733 +g1,20328:7626635,11131733 +g1,20328:7958589,11131733 +g1,20328:8290543,11131733 +g1,20328:8622497,11131733 +g1,20328:8954451,11131733 +g1,20328:9286405,11131733 +g1,20328:9618359,11131733 +g1,20328:12273991,11131733 +g1,20328:12937899,11131733 +g1,20328:14929623,11131733 +g1,20328:15593531,11131733 +g1,20328:16589393,11131733 +g1,20328:17253301,11131733 +g1,20328:17917209,11131733 +g1,20328:19245025,11131733 +h1,20328:19576979,11131733:0,0,0 +k1,20328:32583029,11131733:13006050 +g1,20328:32583029,11131733 +) +(1,20329:6630773,11816588:25952256,431045,112852 +h1,20329:6630773,11816588:0,0,0 +g1,20329:6962727,11816588 +g1,20329:7294681,11816588 +g1,20329:13269852,11816588 +g1,20329:13933760,11816588 +k1,20329:13933760,11816588:0 +h1,20329:17917207,11816588:0,0,0 +k1,20329:32583029,11816588:14665822 +g1,20329:32583029,11816588 +) +] +) +g1,20331:32583029,11929440 +g1,20331:6630773,11929440 +g1,20331:6630773,11929440 +g1,20331:32583029,11929440 +g1,20331:32583029,11929440 +) +h1,20331:6630773,12126048:0,0,0 +v1,20335:6630773,12810903:0,393216,0 +(1,20339:6630773,13144980:25952256,727293,196608 +g1,20339:6630773,13144980 +g1,20339:6630773,13144980 +g1,20339:6434165,13144980 +(1,20339:6434165,13144980:0,727293,196608 +r1,20375:32779637,13144980:26345472,923901,196608 +k1,20339:6434165,13144980:-26345472 +) +(1,20339:6434165,13144980:26345472,727293,196608 +[1,20339:6630773,13144980:25952256,530685,0 +(1,20337:6630773,13038734:25952256,424439,106246 +(1,20336:6630773,13038734:0,0,0 +g1,20336:6630773,13038734 +g1,20336:6630773,13038734 +g1,20336:6303093,13038734 +(1,20336:6303093,13038734:0,0,0 +) +g1,20336:6630773,13038734 +) +g1,20337:8954451,13038734 +g1,20337:9618359,13038734 +g1,20337:14929622,13038734 +g1,20337:15593530,13038734 +h1,20337:16257438,13038734:0,0,0 +k1,20337:32583029,13038734:16325591 +g1,20337:32583029,13038734 +) +] +) +g1,20339:32583029,13144980 +g1,20339:6630773,13144980 +g1,20339:6630773,13144980 +g1,20339:32583029,13144980 +g1,20339:32583029,13144980 +) +h1,20339:6630773,13341588:0,0,0 +(1,20342:6630773,22490790:25952256,9083666,0 +k1,20342:10523651,22490790:3892878 +h1,20341:10523651,22490790:0,0,0 +(1,20341:10523651,22490790:18166500,9083666,0 +(1,20341:10523651,22490790:18167376,9083688,0 +(1,20341:10523651,22490790:18167376,9083688,0 +(1,20341:10523651,22490790:0,9083688,0 +(1,20341:10523651,22490790:0,14208860,0 +(1,20341:10523651,22490790:28417720,14208860,0 +) +k1,20341:10523651,22490790:-28417720 +) +) +g1,20341:28691027,22490790 +) +) +) +g1,20342:28690151,22490790 +k1,20342:32583029,22490790:3892878 +) +(1,20349:6630773,23355870:25952256,513147,134348 +h1,20348:6630773,23355870:983040,0,0 +k1,20348:10393107,23355870:302688 +(1,20348:10393107,23355870:0,452978,115847 +r1,20375:15323627,23355870:4930520,568825,115847 +k1,20348:10393107,23355870:-4930520 +) +(1,20348:10393107,23355870:4930520,452978,115847 +k1,20348:10393107,23355870:3277 +h1,20348:15320350,23355870:0,411205,112570 +) +k1,20348:15799986,23355870:302689 +k1,20348:17294119,23355870:302688 +k1,20348:18385205,23355870:302688 +k1,20348:21659296,23355870:302689 +k1,20348:24969431,23355870:302688 +(1,20348:24969431,23355870:0,452978,122846 +r1,20375:28493103,23355870:3523672,575824,122846 +k1,20348:24969431,23355870:-3523672 +) +(1,20348:24969431,23355870:3523672,452978,122846 +k1,20348:24969431,23355870:3277 +h1,20348:28489826,23355870:0,411205,112570 +) +k1,20348:28969462,23355870:302689 +k1,20348:31015408,23355870:302688 +k1,20349:32583029,23355870:0 +) +(1,20349:6630773,24220950:25952256,513147,134348 +(1,20348:6630773,24220950:0,452978,115847 +r1,20375:10857869,24220950:4227096,568825,115847 +k1,20348:6630773,24220950:-4227096 +) +(1,20348:6630773,24220950:4227096,452978,115847 +k1,20348:6630773,24220950:3277 +h1,20348:10854592,24220950:0,411205,112570 +) +g1,20348:11057098,24220950 +g1,20348:12631928,24220950 +g1,20348:13447195,24220950 +g1,20348:15155063,24220950 +g1,20348:16446777,24220950 +g1,20348:17305298,24220950 +g1,20348:20732175,24220950 +g1,20348:23258587,24220950 +g1,20348:24117108,24220950 +g1,20348:26457398,24220950 +g1,20348:28177062,24220950 +g1,20348:29567736,24220950 +k1,20349:32583029,24220950:1621998 +g1,20349:32583029,24220950 +) +v1,20351:6630773,24905805:0,393216,0 +(1,20355:6630773,25239882:25952256,727293,196608 +g1,20355:6630773,25239882 +g1,20355:6630773,25239882 +g1,20355:6434165,25239882 +(1,20355:6434165,25239882:0,727293,196608 +r1,20375:32779637,25239882:26345472,923901,196608 +k1,20355:6434165,25239882:-26345472 +) +(1,20355:6434165,25239882:26345472,727293,196608 +[1,20355:6630773,25239882:25952256,530685,0 +(1,20353:6630773,25133636:25952256,424439,106246 +(1,20352:6630773,25133636:0,0,0 +g1,20352:6630773,25133636 +g1,20352:6630773,25133636 +g1,20352:6303093,25133636 +(1,20352:6303093,25133636:0,0,0 +) +g1,20352:6630773,25133636 +) +g1,20353:8954451,25133636 +g1,20353:9618359,25133636 +g1,20353:15593530,25133636 +g1,20353:16257438,25133636 +h1,20353:16921346,25133636:0,0,0 +k1,20353:32583029,25133636:15661683 +g1,20353:32583029,25133636 +) +] +) +g1,20355:32583029,25239882 +g1,20355:6630773,25239882 +g1,20355:6630773,25239882 +g1,20355:32583029,25239882 +g1,20355:32583029,25239882 +) +h1,20355:6630773,25436490:0,0,0 +(1,20358:6630773,34585692:25952256,9083666,0 +k1,20358:10523651,34585692:3892878 +h1,20357:10523651,34585692:0,0,0 +(1,20357:10523651,34585692:18166500,9083666,0 +(1,20357:10523651,34585692:18167376,9083688,0 +(1,20357:10523651,34585692:18167376,9083688,0 +(1,20357:10523651,34585692:0,9083688,0 +(1,20357:10523651,34585692:0,14208860,0 +(1,20357:10523651,34585692:28417720,14208860,0 +) +k1,20357:10523651,34585692:-28417720 +) +) +g1,20357:28691027,34585692 +) +) +) +g1,20358:28690151,34585692 +k1,20358:32583029,34585692:3892878 +) +(1,20366:6630773,35450772:25952256,505283,126483 +h1,20364:6630773,35450772:983040,0,0 +k1,20364:8627507,35450772:195805 +(1,20364:8627507,35450772:0,452978,115847 +r1,20375:12151179,35450772:3523672,568825,115847 +k1,20364:8627507,35450772:-3523672 +) +(1,20364:8627507,35450772:3523672,452978,115847 +k1,20364:8627507,35450772:3277 +h1,20364:12147902,35450772:0,411205,112570 +) +k1,20364:12520654,35450772:195805 +(1,20364:12520654,35450772:0,452978,115847 +r1,20375:16747750,35450772:4227096,568825,115847 +k1,20364:12520654,35450772:-4227096 +) +(1,20364:12520654,35450772:4227096,452978,115847 +k1,20364:12520654,35450772:3277 +h1,20364:16744473,35450772:0,411205,112570 +) +k1,20364:16943556,35450772:195806 +k1,20364:18330806,35450772:195805 +(1,20364:18330806,35450772:0,452978,115847 +r1,20375:23261326,35450772:4930520,568825,115847 +k1,20364:18330806,35450772:-4930520 +) +(1,20364:18330806,35450772:4930520,452978,115847 +k1,20364:18330806,35450772:3277 +h1,20364:23258049,35450772:0,411205,112570 +) +k1,20364:23457131,35450772:195805 +k1,20364:26440838,35450772:195805 +(1,20364:26440838,35450772:0,452978,115847 +r1,20375:28909375,35450772:2468537,568825,115847 +k1,20364:26440838,35450772:-2468537 +) +(1,20364:26440838,35450772:2468537,452978,115847 +k1,20364:26440838,35450772:3277 +h1,20364:28906098,35450772:0,411205,112570 +) +k1,20364:29105181,35450772:195806 +k1,20364:29917024,35450772:195805 +k1,20364:32583029,35450772:0 +) +(1,20366:6630773,36315852:25952256,505283,134348 +g1,20364:7481430,36315852 +(1,20364:7481430,36315852:0,414482,115847 +r1,20375:9598255,36315852:2116825,530329,115847 +k1,20364:7481430,36315852:-2116825 +) +(1,20364:7481430,36315852:2116825,414482,115847 +k1,20364:7481430,36315852:3277 +h1,20364:9594978,36315852:0,411205,112570 +) +g1,20364:9797484,36315852 +g1,20364:11188158,36315852 +g1,20364:12767575,36315852 +g1,20364:14071086,36315852 +g1,20364:15018081,36315852 +g1,20364:17519590,36315852 +g1,20364:18480347,36315852 +g1,20364:21487138,36315852 +g1,20364:23325422,36315852 +g1,20364:24176079,36315852 +g1,20364:25394393,36315852 +(1,20364:25394393,36315852:0,459977,115847 +r1,20375:26807794,36315852:1413401,575824,115847 +k1,20364:25394393,36315852:-1413401 +) +(1,20364:25394393,36315852:1413401,459977,115847 +k1,20364:25394393,36315852:3277 +h1,20364:26804517,36315852:0,411205,112570 +) +g1,20364:27007023,36315852 +g1,20364:30224185,36315852 +k1,20366:32583029,36315852:2358844 +g1,20366:32583029,36315852 +) +(1,20367:6630773,38432670:25952256,564462,139132 +(1,20367:6630773,38432670:2450326,534184,12975 +g1,20367:6630773,38432670 +g1,20367:9081099,38432670 +) +g1,20367:12118955,38432670 +k1,20367:32583029,38432670:17022516 +g1,20367:32583029,38432670 +) +(1,20371:6630773,39690966:25952256,513147,134348 +k1,20370:9829764,39690966:202030 +k1,20370:12364219,39690966:202029 +k1,20370:15592046,39690966:202030 +k1,20370:16785636,39690966:202030 +k1,20370:18006750,39690966:202029 +k1,20370:21513761,39690966:202030 +k1,20370:22375082,39690966:202029 +k1,20370:22932972,39690966:202030 +k1,20370:26544840,39690966:202030 +k1,20370:27819038,39690966:202029 +k1,20370:29012628,39690966:202030 +k1,20370:32583029,39690966:0 +) +(1,20371:6630773,40556046:25952256,513147,134348 +k1,20370:8055482,40556046:233264 +k1,20370:9355018,40556046:233265 +k1,20370:12817241,40556046:233264 +k1,20370:14785899,40556046:233265 +k1,20370:16539598,40556046:233264 +k1,20370:17845031,40556046:233264 +k1,20370:19964422,40556046:233265 +k1,20370:21755477,40556046:233264 +k1,20370:23093024,40556046:233265 +k1,20370:24074054,40556046:233264 +k1,20370:27443871,40556046:233264 +k1,20370:28293174,40556046:233265 +k1,20370:28924897,40556046:233264 +k1,20370:29841047,40556046:233265 +k1,20370:30472770,40556046:233264 +k1,20371:32583029,40556046:0 +) +(1,20371:6630773,41421126:25952256,513147,134348 +k1,20370:8600843,41421126:298902 +k1,20370:10008514,41421126:298802 +k1,20370:10990301,41421126:298902 +k1,20370:12571744,41421126:298903 +k1,20370:13688535,41421126:298902 +k1,20370:15381388,41421126:298902 +k1,20370:19246759,41421126:298902 +k1,20370:20003758,41421126:298902 +k1,20370:20834157,41421126:298902 +k1,20370:23763020,41421126:298903 +k1,20370:24713350,41421126:298902 +k1,20370:26104737,41421126:298902 +k1,20370:29165982,41421126:298902 +k1,20371:32583029,41421126:0 +) +(1,20371:6630773,42286206:25952256,513147,126483 +k1,20370:8215251,42286206:216741 +k1,20370:10244718,42286206:216741 +k1,20370:13476771,42286206:216742 +k1,20370:14360668,42286206:216741 +(1,20370:14360668,42286206:0,452978,122846 +r1,20375:19291188,42286206:4930520,575824,122846 +k1,20370:14360668,42286206:-4930520 +) +(1,20370:14360668,42286206:4930520,452978,122846 +k1,20370:14360668,42286206:3277 +h1,20370:19287911,42286206:0,411205,112570 +) +k1,20370:19507929,42286206:216741 +k1,20370:21237896,42286206:216741 +k1,20370:22106066,42286206:216742 +k1,20370:24252187,42286206:216741 +k1,20370:25370685,42286206:216723 +k1,20370:27919853,42286206:216742 +k1,20370:29744192,42286206:216741 +k1,20370:32119689,42286206:216741 +k1,20370:32583029,42286206:0 +) +(1,20371:6630773,43151286:25952256,513147,126483 +k1,20370:12121644,43151286:261753 +k1,20370:13224225,43151286:261754 +k1,20370:14017475,43151286:261753 +k1,20370:15792455,43151286:261754 +k1,20370:16670246,43151286:261753 +k1,20370:19598005,43151286:261754 +k1,20370:20511186,43151286:261753 +k1,20370:22977570,43151286:261753 +k1,20370:25654326,43151286:261754 +k1,20370:27523677,43151286:261753 +k1,20370:28733082,43151286:261754 +(1,20370:28733082,43151286:0,414482,115847 +r1,20375:29091348,43151286:358266,530329,115847 +k1,20370:28733082,43151286:-358266 +) +(1,20370:28733082,43151286:358266,414482,115847 +k1,20370:28733082,43151286:3277 +h1,20370:29088071,43151286:0,411205,112570 +) +k1,20370:29353101,43151286:261753 +k1,20370:30806300,43151286:261754 +(1,20370:30806300,43151286:0,414482,115847 +r1,20375:31164566,43151286:358266,530329,115847 +k1,20370:30806300,43151286:-358266 +) +(1,20370:30806300,43151286:358266,414482,115847 +k1,20370:30806300,43151286:3277 +h1,20370:31161289,43151286:0,411205,112570 +) +k1,20370:31599989,43151286:261753 +k1,20370:32583029,43151286:0 +) +(1,20371:6630773,44016366:25952256,505283,134348 +g1,20370:8565395,44016366 +g1,20370:9450786,44016366 +g1,20370:12787879,44016366 +(1,20370:12787879,44016366:0,414482,115847 +r1,20375:14552993,44016366:1765114,530329,115847 +k1,20370:12787879,44016366:-1765114 +) +(1,20370:12787879,44016366:1765114,414482,115847 +g1,20370:13494580,44016366 +g1,20370:14198004,44016366 +h1,20370:14549716,44016366:0,411205,112570 +) +g1,20370:14752222,44016366 +g1,20370:16142896,44016366 +(1,20370:16142896,44016366:0,414482,115847 +r1,20375:17908010,44016366:1765114,530329,115847 +k1,20370:16142896,44016366:-1765114 +) +(1,20370:16142896,44016366:1765114,414482,115847 +g1,20370:16849597,44016366 +g1,20370:17553021,44016366 +h1,20370:17904733,44016366:0,411205,112570 +) +g1,20370:18280909,44016366 +g1,20370:19471698,44016366 +g1,20370:21746452,44016366 +g1,20370:23814112,44016366 +k1,20371:32583029,44016366:4722725 +g1,20371:32583029,44016366 +) +] +(1,20375:32583029,45706769:0,0,0 +g1,20375:32583029,45706769 +) +) +] +(1,20375:6630773,47279633:25952256,0,0 +h1,20375:6630773,47279633:25952256,0,0 +) +] +(1,20375:4262630,4025873:0,0,0 +[1,20375:-473656,4025873:0,0,0 +(1,20375:-473656,-710413:0,0,0 +(1,20375:-473656,-710413:0,0,0 +g1,20375:-473656,-710413 +) +g1,20375:-473656,-710413 ) ] ) ] !20529 -}341 -Input:3706:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3707:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3708:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}342 +Input:3710:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3711:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3712:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{342 -[1,20438:4262630,47279633:28320399,43253760,0 -(1,20438:4262630,4025873:0,0,0 -[1,20438:-473656,4025873:0,0,0 -(1,20438:-473656,-710413:0,0,0 -(1,20438:-473656,-644877:0,0,0 -k1,20438:-473656,-644877:-65536 +{343 +[1,20436:4262630,47279633:28320399,43253760,0 +(1,20436:4262630,4025873:0,0,0 +[1,20436:-473656,4025873:0,0,0 +(1,20436:-473656,-710413:0,0,0 +(1,20436:-473656,-644877:0,0,0 +k1,20436:-473656,-644877:-65536 ) -(1,20438:-473656,4736287:0,0,0 -k1,20438:-473656,4736287:5209943 +(1,20436:-473656,4736287:0,0,0 +k1,20436:-473656,4736287:5209943 ) -g1,20438:-473656,-710413 +g1,20436:-473656,-710413 ) ] ) -[1,20438:6630773,47279633:25952256,43253760,0 -[1,20438:6630773,4812305:25952256,786432,0 -(1,20438:6630773,4812305:25952256,485622,11795 -(1,20438:6630773,4812305:25952256,485622,11795 -g1,20438:3078558,4812305 -[1,20438:3078558,4812305:0,0,0 -(1,20438:3078558,2439708:0,1703936,0 -k1,20438:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20438:2537886,2439708:1179648,16384,0 +[1,20436:6630773,47279633:25952256,43253760,0 +[1,20436:6630773,4812305:25952256,786432,0 +(1,20436:6630773,4812305:25952256,485622,11795 +(1,20436:6630773,4812305:25952256,485622,11795 +g1,20436:3078558,4812305 +[1,20436:3078558,4812305:0,0,0 +(1,20436:3078558,2439708:0,1703936,0 +k1,20436:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20436:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20438:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20436:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20438:3078558,4812305:0,0,0 -(1,20438:3078558,2439708:0,1703936,0 -g1,20438:29030814,2439708 -g1,20438:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20438:36151628,1915420:16384,1179648,0 +[1,20436:3078558,4812305:0,0,0 +(1,20436:3078558,2439708:0,1703936,0 +g1,20436:29030814,2439708 +g1,20436:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20436:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20438:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20436:37855564,2439708:1179648,16384,0 ) ) -k1,20438:3078556,2439708:-34777008 +k1,20436:3078556,2439708:-34777008 ) ] -[1,20438:3078558,4812305:0,0,0 -(1,20438:3078558,49800853:0,16384,2228224 -k1,20438:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20438:2537886,49800853:1179648,16384,0 +[1,20436:3078558,4812305:0,0,0 +(1,20436:3078558,49800853:0,16384,2228224 +k1,20436:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20436:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20438:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20436:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20438:3078558,4812305:0,0,0 -(1,20438:3078558,49800853:0,16384,2228224 -g1,20438:29030814,49800853 -g1,20438:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20438:36151628,51504789:16384,1179648,0 +[1,20436:3078558,4812305:0,0,0 +(1,20436:3078558,49800853:0,16384,2228224 +g1,20436:29030814,49800853 +g1,20436:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20436:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20438:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20436:37855564,49800853:1179648,16384,0 ) ) -k1,20438:3078556,49800853:-34777008 +k1,20436:3078556,49800853:-34777008 ) -] -g1,20438:6630773,4812305 -g1,20438:6630773,4812305 -g1,20438:9560887,4812305 -k1,20438:31387651,4812305:21826764 -) -) -] -[1,20438:6630773,45706769:25952256,40108032,0 -(1,20438:6630773,45706769:25952256,40108032,0 -(1,20438:6630773,45706769:0,0,0 -g1,20438:6630773,45706769 -) -[1,20438:6630773,45706769:25952256,40108032,0 -v1,20377:6630773,6254097:0,393216,0 -(1,20384:6630773,8632829:25952256,2771948,196608 -g1,20384:6630773,8632829 -g1,20384:6630773,8632829 -g1,20384:6434165,8632829 -(1,20384:6434165,8632829:0,2771948,196608 -r1,20438:32779637,8632829:26345472,2968556,196608 -k1,20384:6434165,8632829:-26345472 -) -(1,20384:6434165,8632829:26345472,2771948,196608 -[1,20384:6630773,8632829:25952256,2575340,0 -(1,20379:6630773,6465412:25952256,407923,106246 -(1,20378:6630773,6465412:0,0,0 -g1,20378:6630773,6465412 -g1,20378:6630773,6465412 -g1,20378:6303093,6465412 -(1,20378:6303093,6465412:0,0,0 -) -g1,20378:6630773,6465412 -) -g1,20379:7626635,6465412 -k1,20379:7626635,6465412:0 -h1,20379:8290543,6465412:0,0,0 -k1,20379:32583029,6465412:24292486 -g1,20379:32583029,6465412 -) -(1,20380:6630773,7150267:25952256,424439,112852 -h1,20380:6630773,7150267:0,0,0 -g1,20380:6962727,7150267 -g1,20380:7294681,7150267 -g1,20380:11278129,7150267 -g1,20380:11942037,7150267 -k1,20380:11942037,7150267:0 -h1,20380:14597669,7150267:0,0,0 -k1,20380:32583029,7150267:17985360 -g1,20380:32583029,7150267 -) -(1,20381:6630773,7835122:25952256,431045,112852 -h1,20381:6630773,7835122:0,0,0 -g1,20381:6962727,7835122 -g1,20381:7294681,7835122 -g1,20381:7626635,7835122 -g1,20381:7958589,7835122 -g1,20381:8290543,7835122 -g1,20381:8622497,7835122 -g1,20381:8954451,7835122 -g1,20381:11610083,7835122 -g1,20381:12273991,7835122 -g1,20381:14265715,7835122 -g1,20381:14929623,7835122 -g1,20381:15925485,7835122 -g1,20381:18249163,7835122 -g1,20381:18913071,7835122 -g1,20381:21236749,7835122 -g1,20381:22896519,7835122 -g1,20381:23560427,7835122 -g1,20381:26216059,7835122 -h1,20381:26548013,7835122:0,0,0 -k1,20381:32583029,7835122:6035016 -g1,20381:32583029,7835122 -) -(1,20382:6630773,8519977:25952256,424439,112852 -h1,20382:6630773,8519977:0,0,0 -g1,20382:6962727,8519977 -g1,20382:7294681,8519977 -g1,20382:13601806,8519977 -g1,20382:14265714,8519977 -h1,20382:15593530,8519977:0,0,0 -k1,20382:32583030,8519977:16989500 -g1,20382:32583030,8519977 -) -] -) -g1,20384:32583029,8632829 -g1,20384:6630773,8632829 -g1,20384:6630773,8632829 -g1,20384:32583029,8632829 -g1,20384:32583029,8632829 -) -h1,20384:6630773,8829437:0,0,0 -v1,20388:6630773,9514292:0,393216,0 -(1,20395:6630773,11883115:25952256,2762039,196608 -g1,20395:6630773,11883115 -g1,20395:6630773,11883115 -g1,20395:6434165,11883115 -(1,20395:6434165,11883115:0,2762039,196608 -r1,20438:32779637,11883115:26345472,2958647,196608 -k1,20395:6434165,11883115:-26345472 -) -(1,20395:6434165,11883115:26345472,2762039,196608 -[1,20395:6630773,11883115:25952256,2565431,0 -(1,20390:6630773,9715698:25952256,398014,106246 -(1,20389:6630773,9715698:0,0,0 -g1,20389:6630773,9715698 -g1,20389:6630773,9715698 -g1,20389:6303093,9715698 -(1,20389:6303093,9715698:0,0,0 -) -g1,20389:6630773,9715698 -) -g1,20390:7626635,9715698 -k1,20390:7626635,9715698:0 -h1,20390:8290543,9715698:0,0,0 -k1,20390:32583029,9715698:24292486 -g1,20390:32583029,9715698 -) -(1,20391:6630773,10400553:25952256,424439,112852 -h1,20391:6630773,10400553:0,0,0 -g1,20391:6962727,10400553 -g1,20391:7294681,10400553 -g1,20391:11278129,10400553 -g1,20391:11942037,10400553 -k1,20391:11942037,10400553:0 -h1,20391:14597669,10400553:0,0,0 -k1,20391:32583029,10400553:17985360 -g1,20391:32583029,10400553 -) -(1,20392:6630773,11085408:25952256,431045,112852 -h1,20392:6630773,11085408:0,0,0 -g1,20392:6962727,11085408 -g1,20392:7294681,11085408 -g1,20392:7626635,11085408 -g1,20392:7958589,11085408 -g1,20392:8290543,11085408 -g1,20392:8622497,11085408 -g1,20392:8954451,11085408 -g1,20392:11610083,11085408 -g1,20392:12273991,11085408 -g1,20392:14265715,11085408 -g1,20392:14929623,11085408 -g1,20392:15925485,11085408 -g1,20392:18249163,11085408 -g1,20392:18913071,11085408 -g1,20392:21236749,11085408 -g1,20392:22896519,11085408 -g1,20392:23560427,11085408 -g1,20392:26216059,11085408 -h1,20392:26548013,11085408:0,0,0 -k1,20392:32583029,11085408:6035016 -g1,20392:32583029,11085408 -) -(1,20393:6630773,11770263:25952256,424439,112852 -h1,20393:6630773,11770263:0,0,0 -g1,20393:6962727,11770263 -g1,20393:7294681,11770263 -g1,20393:13601806,11770263 -g1,20393:14265714,11770263 -h1,20393:15593530,11770263:0,0,0 -k1,20393:32583030,11770263:16989500 -g1,20393:32583030,11770263 -) -] -) -g1,20395:32583029,11883115 -g1,20395:6630773,11883115 -g1,20395:6630773,11883115 -g1,20395:32583029,11883115 -g1,20395:32583029,11883115 -) -h1,20395:6630773,12079723:0,0,0 -(1,20399:6630773,12944803:25952256,505283,134348 -h1,20398:6630773,12944803:983040,0,0 -k1,20398:9058479,12944803:212589 -k1,20398:13407044,12944803:212588 -k1,20398:14305795,12944803:212589 -k1,20398:16031609,12944803:212588 -k1,20398:18286300,12944803:212589 -k1,20398:19030386,12944803:212589 -k1,20398:22332997,12944803:212588 -k1,20398:23161624,12944803:212589 -k1,20398:25161380,12944803:212589 -k1,20398:25990006,12944803:212588 -k1,20398:28481282,12944803:212589 -h1,20398:29850329,12944803:0,0,0 -k1,20398:30062917,12944803:212588 -k1,20398:31084876,12944803:212589 -k1,20398:32583029,12944803:0 -) -(1,20399:6630773,13809883:25952256,485622,11795 -h1,20398:7826150,13809883:0,0,0 -k1,20399:32583030,13809883:24704452 -g1,20399:32583030,13809883 -) -v1,20401:6630773,14494738:0,393216,0 -(1,20405:6630773,14828815:25952256,727293,196608 -g1,20405:6630773,14828815 -g1,20405:6630773,14828815 -g1,20405:6434165,14828815 -(1,20405:6434165,14828815:0,727293,196608 -r1,20438:32779637,14828815:26345472,923901,196608 -k1,20405:6434165,14828815:-26345472 -) -(1,20405:6434165,14828815:26345472,727293,196608 -[1,20405:6630773,14828815:25952256,530685,0 -(1,20403:6630773,14722569:25952256,424439,106246 -(1,20402:6630773,14722569:0,0,0 -g1,20402:6630773,14722569 -g1,20402:6630773,14722569 -g1,20402:6303093,14722569 -(1,20402:6303093,14722569:0,0,0 -) -g1,20402:6630773,14722569 -) -g1,20403:7626635,14722569 -g1,20403:8290543,14722569 -g1,20403:9286405,14722569 -g1,20403:9950313,14722569 -g1,20403:11610083,14722569 -k1,20403:11610083,14722569:0 -h1,20403:15261576,14722569:0,0,0 -k1,20403:32583028,14722569:17321452 -g1,20403:32583028,14722569 -) -] -) -g1,20405:32583029,14828815 -g1,20405:6630773,14828815 -g1,20405:6630773,14828815 -g1,20405:32583029,14828815 -g1,20405:32583029,14828815 -) -h1,20405:6630773,15025423:0,0,0 -(1,20408:6630773,24725754:25952256,9634795,0 -k1,20408:6760463,24725754:129690 -h1,20407:6760463,24725754:0,0,0 -(1,20407:6760463,24725754:25692876,9634795,0 -(1,20407:6760463,24725754:25692851,9634819,0 -(1,20407:6760463,24725754:25692851,9634819,0 -(1,20407:6760463,24725754:0,9634819,0 -(1,20407:6760463,24725754:0,14208860,0 -(1,20407:6760463,24725754:37890292,14208860,0 -) -k1,20407:6760463,24725754:-37890292 -) -) -g1,20407:32453314,24725754 -) -) -) -g1,20408:32453339,24725754 -k1,20408:32583029,24725754:129690 -) -(1,20419:6630773,25590834:25952256,513147,134348 -h1,20418:6630773,25590834:983040,0,0 -k1,20418:8353139,25590834:251738 -k1,20418:9506652,25590834:251738 -k1,20418:12090869,25590834:251791 -k1,20418:13619957,25590834:251791 -k1,20418:15607141,25590834:251791 -k1,20418:16878017,25590834:251791 -k1,20418:18783281,25590834:251791 -k1,20418:20424435,25590834:251791 -k1,20418:21362388,25590834:251791 -k1,20418:22561830,25590834:251791 -k1,20418:23832706,25590834:251791 -k1,20418:24986219,25590834:251738 -k1,20418:26845608,25590834:251791 -k1,20418:29126394,25590834:251791 -k1,20418:30006020,25590834:251791 -k1,20418:31276896,25590834:251791 -k1,20418:32583029,25590834:0 -) -(1,20419:6630773,26455914:25952256,505283,134348 -k1,20418:9513167,26455914:220977 -(1,20418:9513167,26455914:0,452978,115847 -r1,20438:15498822,26455914:5985655,568825,115847 -k1,20418:9513167,26455914:-5985655 -) -(1,20418:9513167,26455914:5985655,452978,115847 -k1,20418:9513167,26455914:3277 -h1,20418:15495545,26455914:0,411205,112570 -) -k1,20418:15719798,26455914:220976 -k1,20418:18200456,26455914:220977 -k1,20418:19593871,26455914:220976 -k1,20418:20716601,26455914:220955 -k1,20418:23270003,26455914:220976 -k1,20418:25818163,26455914:220977 -k1,20418:28114664,26455914:220976 -k1,20418:30071034,26455914:220977 -k1,20418:32583029,26455914:0 -) -(1,20419:6630773,27320994:25952256,505283,126483 -k1,20418:8154467,27320994:155957 -(1,20418:8154467,27320994:0,414482,122846 -r1,20438:9919580,27320994:1765113,537328,122846 -k1,20418:8154467,27320994:-1765113 -) -(1,20418:8154467,27320994:1765113,414482,122846 -k1,20418:8154467,27320994:3277 -h1,20418:9916303,27320994:0,411205,112570 -) -k1,20418:10075537,27320994:155957 -k1,20418:12816889,27320994:155957 -k1,20418:13624274,27320994:155957 -k1,20418:14799316,27320994:155957 -(1,20418:14799316,27320994:0,452978,115847 -r1,20438:16916141,27320994:2116825,568825,115847 -k1,20418:14799316,27320994:-2116825 -) -(1,20418:14799316,27320994:2116825,452978,115847 -k1,20418:14799316,27320994:3277 -h1,20418:16912864,27320994:0,411205,112570 -) -k1,20418:17072098,27320994:155957 -k1,20418:20154893,27320994:155958 -k1,20418:22747479,27320994:155957 -k1,20418:24007718,27320994:155957 -k1,20418:24911441,27320994:155957 -k1,20418:26580624,27320994:155957 -k1,20418:28434619,27320994:155957 -k1,20418:29609661,27320994:155957 -k1,20418:32583029,27320994:0 -) -(1,20419:6630773,28186074:25952256,513147,134348 -k1,20418:10955278,28186074:212776 -k1,20418:13710851,28186074:212776 -k1,20418:15120314,28186074:212776 -k1,20418:16234851,28186074:212762 -k1,20418:18055225,28186074:212776 -k1,20418:20123325,28186074:212776 -k1,20418:21996782,28186074:212775 -k1,20418:23228643,28186074:212776 -k1,20418:27050487,28186074:212776 -k1,20418:27922555,28186074:212776 -k1,20418:29154416,28186074:212776 -k1,20418:30268953,28186074:212762 -k1,20418:32583029,28186074:0 -) -(1,20419:6630773,29051154:25952256,505283,126483 -g1,20418:7446040,29051154 -g1,20418:8664354,29051154 -g1,20418:10140880,29051154 -g1,20418:12208540,29051154 -g1,20418:13868567,29051154 -g1,20418:15086881,29051154 -g1,20418:16458549,29051154 -k1,20419:32583029,29051154:14673513 -g1,20419:32583029,29051154 -) -v1,20423:6630773,29736009:0,393216,0 -(1,20429:6630773,31439796:25952256,2097003,196608 -g1,20429:6630773,31439796 -g1,20429:6630773,31439796 -g1,20429:6434165,31439796 -(1,20429:6434165,31439796:0,2097003,196608 -r1,20438:32779637,31439796:26345472,2293611,196608 -k1,20429:6434165,31439796:-26345472 -) -(1,20429:6434165,31439796:26345472,2097003,196608 -[1,20429:6630773,31439796:25952256,1900395,0 -(1,20425:6630773,29963840:25952256,424439,112852 -(1,20424:6630773,29963840:0,0,0 -g1,20424:6630773,29963840 -g1,20424:6630773,29963840 -g1,20424:6303093,29963840 -(1,20424:6303093,29963840:0,0,0 -) -g1,20424:6630773,29963840 -) -k1,20425:6630773,29963840:0 -g1,20425:10614221,29963840 -g1,20425:11278129,29963840 -k1,20425:11278129,29963840:0 -h1,20425:13933761,29963840:0,0,0 -k1,20425:32583029,29963840:18649268 -g1,20425:32583029,29963840 -) -(1,20426:6630773,30648695:25952256,424439,112852 -h1,20426:6630773,30648695:0,0,0 -g1,20426:6962727,30648695 -g1,20426:7294681,30648695 -g1,20426:7626635,30648695 -g1,20426:7958589,30648695 -g1,20426:8290543,30648695 -g1,20426:8622497,30648695 -g1,20426:8954451,30648695 -g1,20426:11610083,30648695 -g1,20426:12273991,30648695 -g1,20426:14265715,30648695 -g1,20426:14929623,30648695 -g1,20426:15925485,30648695 -g1,20426:16589393,30648695 -g1,20426:17253301,30648695 -g1,20426:18249163,30648695 -g1,20426:20572841,30648695 -g1,20426:21236749,30648695 -g1,20426:23892381,30648695 -h1,20426:24224335,30648695:0,0,0 -k1,20426:32583029,30648695:8358694 -g1,20426:32583029,30648695 -) -(1,20427:6630773,31333550:25952256,424439,106246 -h1,20427:6630773,31333550:0,0,0 -g1,20427:6962727,31333550 -g1,20427:7294681,31333550 -k1,20427:7294681,31333550:0 -h1,20427:12937898,31333550:0,0,0 -k1,20427:32583030,31333550:19645132 -g1,20427:32583030,31333550 -) -] -) -g1,20429:32583029,31439796 -g1,20429:6630773,31439796 -g1,20429:6630773,31439796 -g1,20429:32583029,31439796 -g1,20429:32583029,31439796 -) -h1,20429:6630773,31636404:0,0,0 -(1,20432:6630773,43640046:25952256,11938106,0 -k1,20432:13637795,43640046:7007022 -h1,20431:13637795,43640046:0,0,0 -(1,20431:13637795,43640046:11938212,11938106,0 -(1,20431:13637795,43640046:11938136,11938136,0 -(1,20431:13637795,43640046:11938136,11938136,0 -(1,20431:13637795,43640046:0,11938136,0 -(1,20431:13637795,43640046:0,18945146,0 -(1,20431:13637795,43640046:18945146,18945146,0 -) -k1,20431:13637795,43640046:-18945146 -) -) -g1,20431:25575931,43640046 -) -) -) -g1,20432:25576007,43640046 -k1,20432:32583029,43640046:7007022 -) -] -(1,20438:32583029,45706769:0,0,0 -g1,20438:32583029,45706769 -) -) -] -(1,20438:6630773,47279633:25952256,0,0 -h1,20438:6630773,47279633:25952256,0,0 +] +g1,20436:6630773,4812305 +g1,20436:6630773,4812305 +g1,20436:9560887,4812305 +k1,20436:31387651,4812305:21826764 +) +) +] +[1,20436:6630773,45706769:25952256,40108032,0 +(1,20436:6630773,45706769:25952256,40108032,0 +(1,20436:6630773,45706769:0,0,0 +g1,20436:6630773,45706769 +) +[1,20436:6630773,45706769:25952256,40108032,0 +v1,20375:6630773,6254097:0,393216,0 +(1,20382:6630773,8632829:25952256,2771948,196608 +g1,20382:6630773,8632829 +g1,20382:6630773,8632829 +g1,20382:6434165,8632829 +(1,20382:6434165,8632829:0,2771948,196608 +r1,20436:32779637,8632829:26345472,2968556,196608 +k1,20382:6434165,8632829:-26345472 +) +(1,20382:6434165,8632829:26345472,2771948,196608 +[1,20382:6630773,8632829:25952256,2575340,0 +(1,20377:6630773,6465412:25952256,407923,106246 +(1,20376:6630773,6465412:0,0,0 +g1,20376:6630773,6465412 +g1,20376:6630773,6465412 +g1,20376:6303093,6465412 +(1,20376:6303093,6465412:0,0,0 +) +g1,20376:6630773,6465412 +) +g1,20377:7626635,6465412 +k1,20377:7626635,6465412:0 +h1,20377:8290543,6465412:0,0,0 +k1,20377:32583029,6465412:24292486 +g1,20377:32583029,6465412 +) +(1,20378:6630773,7150267:25952256,424439,112852 +h1,20378:6630773,7150267:0,0,0 +g1,20378:6962727,7150267 +g1,20378:7294681,7150267 +g1,20378:11278129,7150267 +g1,20378:11942037,7150267 +k1,20378:11942037,7150267:0 +h1,20378:14597669,7150267:0,0,0 +k1,20378:32583029,7150267:17985360 +g1,20378:32583029,7150267 +) +(1,20379:6630773,7835122:25952256,431045,112852 +h1,20379:6630773,7835122:0,0,0 +g1,20379:6962727,7835122 +g1,20379:7294681,7835122 +g1,20379:7626635,7835122 +g1,20379:7958589,7835122 +g1,20379:8290543,7835122 +g1,20379:8622497,7835122 +g1,20379:8954451,7835122 +g1,20379:11610083,7835122 +g1,20379:12273991,7835122 +g1,20379:14265715,7835122 +g1,20379:14929623,7835122 +g1,20379:15925485,7835122 +g1,20379:18249163,7835122 +g1,20379:18913071,7835122 +g1,20379:21236749,7835122 +g1,20379:22896519,7835122 +g1,20379:23560427,7835122 +g1,20379:26216059,7835122 +h1,20379:26548013,7835122:0,0,0 +k1,20379:32583029,7835122:6035016 +g1,20379:32583029,7835122 +) +(1,20380:6630773,8519977:25952256,424439,112852 +h1,20380:6630773,8519977:0,0,0 +g1,20380:6962727,8519977 +g1,20380:7294681,8519977 +g1,20380:13601806,8519977 +g1,20380:14265714,8519977 +h1,20380:15593530,8519977:0,0,0 +k1,20380:32583030,8519977:16989500 +g1,20380:32583030,8519977 +) +] +) +g1,20382:32583029,8632829 +g1,20382:6630773,8632829 +g1,20382:6630773,8632829 +g1,20382:32583029,8632829 +g1,20382:32583029,8632829 +) +h1,20382:6630773,8829437:0,0,0 +v1,20386:6630773,9514292:0,393216,0 +(1,20393:6630773,11883115:25952256,2762039,196608 +g1,20393:6630773,11883115 +g1,20393:6630773,11883115 +g1,20393:6434165,11883115 +(1,20393:6434165,11883115:0,2762039,196608 +r1,20436:32779637,11883115:26345472,2958647,196608 +k1,20393:6434165,11883115:-26345472 +) +(1,20393:6434165,11883115:26345472,2762039,196608 +[1,20393:6630773,11883115:25952256,2565431,0 +(1,20388:6630773,9715698:25952256,398014,106246 +(1,20387:6630773,9715698:0,0,0 +g1,20387:6630773,9715698 +g1,20387:6630773,9715698 +g1,20387:6303093,9715698 +(1,20387:6303093,9715698:0,0,0 +) +g1,20387:6630773,9715698 +) +g1,20388:7626635,9715698 +k1,20388:7626635,9715698:0 +h1,20388:8290543,9715698:0,0,0 +k1,20388:32583029,9715698:24292486 +g1,20388:32583029,9715698 +) +(1,20389:6630773,10400553:25952256,424439,112852 +h1,20389:6630773,10400553:0,0,0 +g1,20389:6962727,10400553 +g1,20389:7294681,10400553 +g1,20389:11278129,10400553 +g1,20389:11942037,10400553 +k1,20389:11942037,10400553:0 +h1,20389:14597669,10400553:0,0,0 +k1,20389:32583029,10400553:17985360 +g1,20389:32583029,10400553 +) +(1,20390:6630773,11085408:25952256,431045,112852 +h1,20390:6630773,11085408:0,0,0 +g1,20390:6962727,11085408 +g1,20390:7294681,11085408 +g1,20390:7626635,11085408 +g1,20390:7958589,11085408 +g1,20390:8290543,11085408 +g1,20390:8622497,11085408 +g1,20390:8954451,11085408 +g1,20390:11610083,11085408 +g1,20390:12273991,11085408 +g1,20390:14265715,11085408 +g1,20390:14929623,11085408 +g1,20390:15925485,11085408 +g1,20390:18249163,11085408 +g1,20390:18913071,11085408 +g1,20390:21236749,11085408 +g1,20390:22896519,11085408 +g1,20390:23560427,11085408 +g1,20390:26216059,11085408 +h1,20390:26548013,11085408:0,0,0 +k1,20390:32583029,11085408:6035016 +g1,20390:32583029,11085408 +) +(1,20391:6630773,11770263:25952256,424439,112852 +h1,20391:6630773,11770263:0,0,0 +g1,20391:6962727,11770263 +g1,20391:7294681,11770263 +g1,20391:13601806,11770263 +g1,20391:14265714,11770263 +h1,20391:15593530,11770263:0,0,0 +k1,20391:32583030,11770263:16989500 +g1,20391:32583030,11770263 +) +] +) +g1,20393:32583029,11883115 +g1,20393:6630773,11883115 +g1,20393:6630773,11883115 +g1,20393:32583029,11883115 +g1,20393:32583029,11883115 +) +h1,20393:6630773,12079723:0,0,0 +(1,20397:6630773,12944803:25952256,505283,134348 +h1,20396:6630773,12944803:983040,0,0 +k1,20396:9058479,12944803:212589 +k1,20396:13407044,12944803:212588 +k1,20396:14305795,12944803:212589 +k1,20396:16031609,12944803:212588 +k1,20396:18286300,12944803:212589 +k1,20396:19030386,12944803:212589 +k1,20396:22332997,12944803:212588 +k1,20396:23161624,12944803:212589 +k1,20396:25161380,12944803:212589 +k1,20396:25990006,12944803:212588 +k1,20396:28481282,12944803:212589 +h1,20396:29850329,12944803:0,0,0 +k1,20396:30062917,12944803:212588 +k1,20396:31084876,12944803:212589 +k1,20396:32583029,12944803:0 +) +(1,20397:6630773,13809883:25952256,485622,11795 +h1,20396:7826150,13809883:0,0,0 +k1,20397:32583030,13809883:24704452 +g1,20397:32583030,13809883 +) +v1,20399:6630773,14494738:0,393216,0 +(1,20403:6630773,14828815:25952256,727293,196608 +g1,20403:6630773,14828815 +g1,20403:6630773,14828815 +g1,20403:6434165,14828815 +(1,20403:6434165,14828815:0,727293,196608 +r1,20436:32779637,14828815:26345472,923901,196608 +k1,20403:6434165,14828815:-26345472 +) +(1,20403:6434165,14828815:26345472,727293,196608 +[1,20403:6630773,14828815:25952256,530685,0 +(1,20401:6630773,14722569:25952256,424439,106246 +(1,20400:6630773,14722569:0,0,0 +g1,20400:6630773,14722569 +g1,20400:6630773,14722569 +g1,20400:6303093,14722569 +(1,20400:6303093,14722569:0,0,0 +) +g1,20400:6630773,14722569 +) +g1,20401:7626635,14722569 +g1,20401:8290543,14722569 +g1,20401:9286405,14722569 +g1,20401:9950313,14722569 +g1,20401:11610083,14722569 +k1,20401:11610083,14722569:0 +h1,20401:15261576,14722569:0,0,0 +k1,20401:32583028,14722569:17321452 +g1,20401:32583028,14722569 +) +] +) +g1,20403:32583029,14828815 +g1,20403:6630773,14828815 +g1,20403:6630773,14828815 +g1,20403:32583029,14828815 +g1,20403:32583029,14828815 +) +h1,20403:6630773,15025423:0,0,0 +(1,20406:6630773,24725754:25952256,9634795,0 +k1,20406:6760463,24725754:129690 +h1,20405:6760463,24725754:0,0,0 +(1,20405:6760463,24725754:25692876,9634795,0 +(1,20405:6760463,24725754:25692851,9634819,0 +(1,20405:6760463,24725754:25692851,9634819,0 +(1,20405:6760463,24725754:0,9634819,0 +(1,20405:6760463,24725754:0,14208860,0 +(1,20405:6760463,24725754:37890292,14208860,0 +) +k1,20405:6760463,24725754:-37890292 +) +) +g1,20405:32453314,24725754 +) +) +) +g1,20406:32453339,24725754 +k1,20406:32583029,24725754:129690 +) +(1,20417:6630773,25590834:25952256,513147,134348 +h1,20416:6630773,25590834:983040,0,0 +k1,20416:8353139,25590834:251738 +k1,20416:9506652,25590834:251738 +k1,20416:12090869,25590834:251791 +k1,20416:13619957,25590834:251791 +k1,20416:15607141,25590834:251791 +k1,20416:16878017,25590834:251791 +k1,20416:18783281,25590834:251791 +k1,20416:20424435,25590834:251791 +k1,20416:21362388,25590834:251791 +k1,20416:22561830,25590834:251791 +k1,20416:23832706,25590834:251791 +k1,20416:24986219,25590834:251738 +k1,20416:26845608,25590834:251791 +k1,20416:29126394,25590834:251791 +k1,20416:30006020,25590834:251791 +k1,20416:31276896,25590834:251791 +k1,20416:32583029,25590834:0 +) +(1,20417:6630773,26455914:25952256,505283,134348 +k1,20416:9513167,26455914:220977 +(1,20416:9513167,26455914:0,452978,115847 +r1,20436:15498822,26455914:5985655,568825,115847 +k1,20416:9513167,26455914:-5985655 +) +(1,20416:9513167,26455914:5985655,452978,115847 +k1,20416:9513167,26455914:3277 +h1,20416:15495545,26455914:0,411205,112570 +) +k1,20416:15719798,26455914:220976 +k1,20416:18200456,26455914:220977 +k1,20416:19593871,26455914:220976 +k1,20416:20716601,26455914:220955 +k1,20416:23270003,26455914:220976 +k1,20416:25818163,26455914:220977 +k1,20416:28114664,26455914:220976 +k1,20416:30071034,26455914:220977 +k1,20416:32583029,26455914:0 +) +(1,20417:6630773,27320994:25952256,505283,126483 +k1,20416:8154467,27320994:155957 +(1,20416:8154467,27320994:0,414482,122846 +r1,20436:9919580,27320994:1765113,537328,122846 +k1,20416:8154467,27320994:-1765113 +) +(1,20416:8154467,27320994:1765113,414482,122846 +k1,20416:8154467,27320994:3277 +h1,20416:9916303,27320994:0,411205,112570 +) +k1,20416:10075537,27320994:155957 +k1,20416:12816889,27320994:155957 +k1,20416:13624274,27320994:155957 +k1,20416:14799316,27320994:155957 +(1,20416:14799316,27320994:0,452978,115847 +r1,20436:16916141,27320994:2116825,568825,115847 +k1,20416:14799316,27320994:-2116825 +) +(1,20416:14799316,27320994:2116825,452978,115847 +k1,20416:14799316,27320994:3277 +h1,20416:16912864,27320994:0,411205,112570 +) +k1,20416:17072098,27320994:155957 +k1,20416:20154893,27320994:155958 +k1,20416:22747479,27320994:155957 +k1,20416:24007718,27320994:155957 +k1,20416:24911441,27320994:155957 +k1,20416:26580624,27320994:155957 +k1,20416:28434619,27320994:155957 +k1,20416:29609661,27320994:155957 +k1,20416:32583029,27320994:0 +) +(1,20417:6630773,28186074:25952256,513147,134348 +k1,20416:10955278,28186074:212776 +k1,20416:13710851,28186074:212776 +k1,20416:15120314,28186074:212776 +k1,20416:16234851,28186074:212762 +k1,20416:18055225,28186074:212776 +k1,20416:20123325,28186074:212776 +k1,20416:21996782,28186074:212775 +k1,20416:23228643,28186074:212776 +k1,20416:27050487,28186074:212776 +k1,20416:27922555,28186074:212776 +k1,20416:29154416,28186074:212776 +k1,20416:30268953,28186074:212762 +k1,20416:32583029,28186074:0 +) +(1,20417:6630773,29051154:25952256,505283,126483 +g1,20416:7446040,29051154 +g1,20416:8664354,29051154 +g1,20416:10140880,29051154 +g1,20416:12208540,29051154 +g1,20416:13868567,29051154 +g1,20416:15086881,29051154 +g1,20416:16458549,29051154 +k1,20417:32583029,29051154:14673513 +g1,20417:32583029,29051154 +) +v1,20421:6630773,29736009:0,393216,0 +(1,20427:6630773,31439796:25952256,2097003,196608 +g1,20427:6630773,31439796 +g1,20427:6630773,31439796 +g1,20427:6434165,31439796 +(1,20427:6434165,31439796:0,2097003,196608 +r1,20436:32779637,31439796:26345472,2293611,196608 +k1,20427:6434165,31439796:-26345472 +) +(1,20427:6434165,31439796:26345472,2097003,196608 +[1,20427:6630773,31439796:25952256,1900395,0 +(1,20423:6630773,29963840:25952256,424439,112852 +(1,20422:6630773,29963840:0,0,0 +g1,20422:6630773,29963840 +g1,20422:6630773,29963840 +g1,20422:6303093,29963840 +(1,20422:6303093,29963840:0,0,0 +) +g1,20422:6630773,29963840 +) +k1,20423:6630773,29963840:0 +g1,20423:10614221,29963840 +g1,20423:11278129,29963840 +k1,20423:11278129,29963840:0 +h1,20423:13933761,29963840:0,0,0 +k1,20423:32583029,29963840:18649268 +g1,20423:32583029,29963840 +) +(1,20424:6630773,30648695:25952256,424439,112852 +h1,20424:6630773,30648695:0,0,0 +g1,20424:6962727,30648695 +g1,20424:7294681,30648695 +g1,20424:7626635,30648695 +g1,20424:7958589,30648695 +g1,20424:8290543,30648695 +g1,20424:8622497,30648695 +g1,20424:8954451,30648695 +g1,20424:11610083,30648695 +g1,20424:12273991,30648695 +g1,20424:14265715,30648695 +g1,20424:14929623,30648695 +g1,20424:15925485,30648695 +g1,20424:16589393,30648695 +g1,20424:17253301,30648695 +g1,20424:18249163,30648695 +g1,20424:20572841,30648695 +g1,20424:21236749,30648695 +g1,20424:23892381,30648695 +h1,20424:24224335,30648695:0,0,0 +k1,20424:32583029,30648695:8358694 +g1,20424:32583029,30648695 +) +(1,20425:6630773,31333550:25952256,424439,106246 +h1,20425:6630773,31333550:0,0,0 +g1,20425:6962727,31333550 +g1,20425:7294681,31333550 +k1,20425:7294681,31333550:0 +h1,20425:12937898,31333550:0,0,0 +k1,20425:32583030,31333550:19645132 +g1,20425:32583030,31333550 +) +] +) +g1,20427:32583029,31439796 +g1,20427:6630773,31439796 +g1,20427:6630773,31439796 +g1,20427:32583029,31439796 +g1,20427:32583029,31439796 +) +h1,20427:6630773,31636404:0,0,0 +(1,20430:6630773,43640046:25952256,11938106,0 +k1,20430:13637795,43640046:7007022 +h1,20429:13637795,43640046:0,0,0 +(1,20429:13637795,43640046:11938212,11938106,0 +(1,20429:13637795,43640046:11938136,11938136,0 +(1,20429:13637795,43640046:11938136,11938136,0 +(1,20429:13637795,43640046:0,11938136,0 +(1,20429:13637795,43640046:0,18945146,0 +(1,20429:13637795,43640046:18945146,18945146,0 +) +k1,20429:13637795,43640046:-18945146 +) +) +g1,20429:25575931,43640046 +) +) +) +g1,20430:25576007,43640046 +k1,20430:32583029,43640046:7007022 +) +] +(1,20436:32583029,45706769:0,0,0 +g1,20436:32583029,45706769 +) +) +] +(1,20436:6630773,47279633:25952256,0,0 +h1,20436:6630773,47279633:25952256,0,0 ) ] -(1,20438:4262630,4025873:0,0,0 -[1,20438:-473656,4025873:0,0,0 -(1,20438:-473656,-710413:0,0,0 -(1,20438:-473656,-710413:0,0,0 -g1,20438:-473656,-710413 +(1,20436:4262630,4025873:0,0,0 +[1,20436:-473656,4025873:0,0,0 +(1,20436:-473656,-710413:0,0,0 +(1,20436:-473656,-710413:0,0,0 +g1,20436:-473656,-710413 ) -g1,20438:-473656,-710413 +g1,20436:-473656,-710413 ) ] ) ] !15616 -}342 -Input:3709:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3710:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3711:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3712:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}343 Input:3713:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3714:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3715:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -355920,1413 +356124,1413 @@ Input:3722:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3723:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3724:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3725:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3727:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3729:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{343 -[1,20520:4262630,47279633:28320399,43253760,0 -(1,20520:4262630,4025873:0,0,0 -[1,20520:-473656,4025873:0,0,0 -(1,20520:-473656,-710413:0,0,0 -(1,20520:-473656,-644877:0,0,0 -k1,20520:-473656,-644877:-65536 +{344 +[1,20518:4262630,47279633:28320399,43253760,0 +(1,20518:4262630,4025873:0,0,0 +[1,20518:-473656,4025873:0,0,0 +(1,20518:-473656,-710413:0,0,0 +(1,20518:-473656,-644877:0,0,0 +k1,20518:-473656,-644877:-65536 ) -(1,20520:-473656,4736287:0,0,0 -k1,20520:-473656,4736287:5209943 +(1,20518:-473656,4736287:0,0,0 +k1,20518:-473656,4736287:5209943 ) -g1,20520:-473656,-710413 +g1,20518:-473656,-710413 ) ] ) -[1,20520:6630773,47279633:25952256,43253760,0 -[1,20520:6630773,4812305:25952256,786432,0 -(1,20520:6630773,4812305:25952256,513147,126483 -(1,20520:6630773,4812305:25952256,513147,126483 -g1,20520:3078558,4812305 -[1,20520:3078558,4812305:0,0,0 -(1,20520:3078558,2439708:0,1703936,0 -k1,20520:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20520:2537886,2439708:1179648,16384,0 +[1,20518:6630773,47279633:25952256,43253760,0 +[1,20518:6630773,4812305:25952256,786432,0 +(1,20518:6630773,4812305:25952256,513147,126483 +(1,20518:6630773,4812305:25952256,513147,126483 +g1,20518:3078558,4812305 +[1,20518:3078558,4812305:0,0,0 +(1,20518:3078558,2439708:0,1703936,0 +k1,20518:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20518:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20520:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20518:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20520:3078558,4812305:0,0,0 -(1,20520:3078558,2439708:0,1703936,0 -g1,20520:29030814,2439708 -g1,20520:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20520:36151628,1915420:16384,1179648,0 +[1,20518:3078558,4812305:0,0,0 +(1,20518:3078558,2439708:0,1703936,0 +g1,20518:29030814,2439708 +g1,20518:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20518:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20520:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20518:37855564,2439708:1179648,16384,0 ) ) -k1,20520:3078556,2439708:-34777008 +k1,20518:3078556,2439708:-34777008 ) ] -[1,20520:3078558,4812305:0,0,0 -(1,20520:3078558,49800853:0,16384,2228224 -k1,20520:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20520:2537886,49800853:1179648,16384,0 +[1,20518:3078558,4812305:0,0,0 +(1,20518:3078558,49800853:0,16384,2228224 +k1,20518:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20518:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20520:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20518:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20520:3078558,4812305:0,0,0 -(1,20520:3078558,49800853:0,16384,2228224 -g1,20520:29030814,49800853 -g1,20520:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20520:36151628,51504789:16384,1179648,0 +[1,20518:3078558,4812305:0,0,0 +(1,20518:3078558,49800853:0,16384,2228224 +g1,20518:29030814,49800853 +g1,20518:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20518:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20520:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20518:37855564,49800853:1179648,16384,0 ) ) -k1,20520:3078556,49800853:-34777008 +k1,20518:3078556,49800853:-34777008 ) ] -g1,20520:6630773,4812305 -k1,20520:21386205,4812305:13560055 -g1,20520:21999622,4812305 -g1,20520:25611966,4812305 -g1,20520:28956923,4812305 -g1,20520:29772190,4812305 -) -) -] -[1,20520:6630773,45706769:25952256,40108032,0 -(1,20520:6630773,45706769:25952256,40108032,0 -(1,20520:6630773,45706769:0,0,0 -g1,20520:6630773,45706769 -) -[1,20520:6630773,45706769:25952256,40108032,0 -(1,20440:6630773,6254097:25952256,513147,134348 -h1,20439:6630773,6254097:983040,0,0 -k1,20439:9848247,6254097:193643 -k1,20439:11060975,6254097:193643 -k1,20439:12156388,6254097:193638 -k1,20439:14682457,6254097:193643 -k1,20439:15823751,6254097:193643 -k1,20439:17469016,6254097:193643 -k1,20439:19555339,6254097:193643 -k1,20439:20280479,6254097:193643 -k1,20439:22776402,6254097:193643 -k1,20439:23586083,6254097:193643 -k1,20439:24135586,6254097:193643 -k1,20439:27031934,6254097:193643 -k1,20439:29143160,6254097:193643 -k1,20439:30730754,6254097:193643 -(1,20439:30730754,6254097:0,452978,115847 -r1,20520:32495867,6254097:1765113,568825,115847 -k1,20439:30730754,6254097:-1765113 -) -(1,20439:30730754,6254097:1765113,452978,115847 -k1,20439:30730754,6254097:3277 -h1,20439:32492590,6254097:0,411205,112570 -) -k1,20439:32583029,6254097:0 -) -(1,20440:6630773,7119177:25952256,505283,126483 -g1,20439:7185862,7119177 -g1,20439:9896431,7119177 -g1,20439:13304303,7119177 -g1,20439:14265060,7119177 -(1,20439:14265060,7119177:0,452978,115847 -r1,20520:20250715,7119177:5985655,568825,115847 -k1,20439:14265060,7119177:-5985655 -) -(1,20439:14265060,7119177:5985655,452978,115847 -k1,20439:14265060,7119177:3277 -h1,20439:20247438,7119177:0,411205,112570 -) -g1,20439:20623614,7119177 -g1,20439:23408238,7119177 -g1,20439:24258895,7119177 -g1,20439:25477209,7119177 -(1,20439:25477209,7119177:0,459977,115847 -r1,20520:26890610,7119177:1413401,575824,115847 -k1,20439:25477209,7119177:-1413401 -) -(1,20439:25477209,7119177:1413401,459977,115847 -k1,20439:25477209,7119177:3277 -h1,20439:26887333,7119177:0,411205,112570 -) -g1,20439:27089839,7119177 -k1,20440:32583029,7119177:2687595 -g1,20440:32583029,7119177 -) -v1,20444:6630773,7804032:0,393216,0 -(1,20451:6630773,10199280:25952256,2788464,196608 -g1,20451:6630773,10199280 -g1,20451:6630773,10199280 -g1,20451:6434165,10199280 -(1,20451:6434165,10199280:0,2788464,196608 -r1,20520:32779637,10199280:26345472,2985072,196608 -k1,20451:6434165,10199280:-26345472 -) -(1,20451:6434165,10199280:26345472,2788464,196608 -[1,20451:6630773,10199280:25952256,2591856,0 -(1,20446:6630773,8031863:25952256,424439,112852 -(1,20445:6630773,8031863:0,0,0 -g1,20445:6630773,8031863 -g1,20445:6630773,8031863 -g1,20445:6303093,8031863 -(1,20445:6303093,8031863:0,0,0 -) -g1,20445:6630773,8031863 -) -k1,20446:6630773,8031863:0 -g1,20446:10614221,8031863 -g1,20446:11278129,8031863 -k1,20446:11278129,8031863:0 -h1,20446:13933761,8031863:0,0,0 -k1,20446:32583029,8031863:18649268 -g1,20446:32583029,8031863 -) -(1,20447:6630773,8716718:25952256,424439,112852 -h1,20447:6630773,8716718:0,0,0 -g1,20447:6962727,8716718 -g1,20447:7294681,8716718 -g1,20447:7626635,8716718 -g1,20447:7958589,8716718 -g1,20447:8290543,8716718 -g1,20447:8622497,8716718 -g1,20447:8954451,8716718 -g1,20447:11610083,8716718 -g1,20447:12273991,8716718 -g1,20447:14265715,8716718 -g1,20447:14929623,8716718 -g1,20447:15925485,8716718 -g1,20447:16589393,8716718 -g1,20447:17253301,8716718 -g1,20447:18581117,8716718 -h1,20447:18913071,8716718:0,0,0 -k1,20447:32583029,8716718:13669958 -g1,20447:32583029,8716718 -) -(1,20448:6630773,9401573:25952256,431045,112852 -h1,20448:6630773,9401573:0,0,0 -g1,20448:6962727,9401573 -g1,20448:7294681,9401573 -g1,20448:15593530,9401573 -g1,20448:16257438,9401573 -g1,20448:22896516,9401573 -g1,20448:24556286,9401573 -g1,20448:25220194,9401573 -g1,20448:28871687,9401573 -h1,20448:29203641,9401573:0,0,0 -k1,20448:32583029,9401573:3379388 -g1,20448:32583029,9401573 -) -(1,20449:6630773,10086428:25952256,431045,112852 -h1,20449:6630773,10086428:0,0,0 -g1,20449:6962727,10086428 -g1,20449:7294681,10086428 -g1,20449:13269852,10086428 -g1,20449:13933760,10086428 -k1,20449:13933760,10086428:0 -h1,20449:17917207,10086428:0,0,0 -k1,20449:32583029,10086428:14665822 -g1,20449:32583029,10086428 -) -] -) -g1,20451:32583029,10199280 -g1,20451:6630773,10199280 -g1,20451:6630773,10199280 -g1,20451:32583029,10199280 -g1,20451:32583029,10199280 -) -h1,20451:6630773,10395888:0,0,0 -(1,20454:6630773,19545090:25952256,9083666,0 -k1,20454:10523651,19545090:3892878 -h1,20453:10523651,19545090:0,0,0 -(1,20453:10523651,19545090:18166500,9083666,0 -(1,20453:10523651,19545090:18167376,9083688,0 -(1,20453:10523651,19545090:18167376,9083688,0 -(1,20453:10523651,19545090:0,9083688,0 -(1,20453:10523651,19545090:0,14208860,0 -(1,20453:10523651,19545090:28417720,14208860,0 -) -k1,20453:10523651,19545090:-28417720 -) -) -g1,20453:28691027,19545090 -) -) -) -g1,20454:28690151,19545090 -k1,20454:32583029,19545090:3892878 -) -(1,20463:6630773,21661908:25952256,555811,139132 -(1,20463:6630773,21661908:2450326,534184,12975 -g1,20463:6630773,21661908 -g1,20463:9081099,21661908 -) -g1,20463:10649769,21661908 -g1,20463:12216997,21661908 -g1,20463:15747225,21661908 -k1,20463:32583029,21661908:15028518 -g1,20463:32583029,21661908 -) -(1,20468:6630773,22920204:25952256,513147,134348 -k1,20467:7987930,22920204:198480 -k1,20467:9377856,22920204:198481 -k1,20467:12402248,22920204:198480 -k1,20467:14381997,22920204:198480 -k1,20467:15263362,22920204:198480 -k1,20467:16690643,22920204:198481 -k1,20467:18049110,22920204:198480 -k1,20467:20028859,22920204:198480 -k1,20467:21218900,22920204:198481 -k1,20467:24925522,22920204:198480 -k1,20467:26408508,22920204:198480 -k1,20467:28815551,22920204:198480 -k1,20467:30706172,22920204:198481 -k1,20467:31563944,22920204:198480 -k1,20467:32583029,22920204:0 -) -(1,20468:6630773,23785284:25952256,513147,126483 -k1,20467:10135548,23785284:208969 -k1,20467:11003810,23785284:208970 -k1,20467:11568639,23785284:208969 -k1,20467:15732707,23785284:208970 -k1,20467:17499467,23785284:208969 -k1,20467:18699996,23785284:208969 -k1,20467:22137925,23785284:208970 -k1,20467:23538339,23785284:208969 -k1,20467:26049589,23785284:208970 -k1,20467:27652509,23785284:208969 -(1,20467:27652509,23785284:0,452978,115847 -r1,20520:32583029,23785284:4930520,568825,115847 -k1,20467:27652509,23785284:-4930520 -) -(1,20467:27652509,23785284:4930520,452978,115847 -k1,20467:27652509,23785284:3277 -h1,20467:32579752,23785284:0,411205,112570 -) -k1,20467:32583029,23785284:0 -) -(1,20468:6630773,24650364:25952256,505283,134348 -k1,20467:7513413,24650364:199755 -k1,20467:8732253,24650364:199755 -k1,20467:11903410,24650364:199755 -(1,20467:11903410,24650364:0,452978,122846 -r1,20520:16833930,24650364:4930520,575824,122846 -k1,20467:11903410,24650364:-4930520 -) -(1,20467:11903410,24650364:4930520,452978,122846 -k1,20467:11903410,24650364:3277 -h1,20467:16830653,24650364:0,411205,112570 -) -k1,20467:17207355,24650364:199755 -k1,20467:20369993,24650364:199755 -k1,20467:21729735,24650364:199755 -k1,20467:23537087,24650364:199754 -k1,20467:24841124,24650364:199755 -k1,20467:25788645,24650364:199755 -k1,20467:28290680,24650364:199755 -k1,20467:30345104,24650364:199755 -k1,20467:31354229,24650364:199755 -k1,20467:32583029,24650364:0 -) -(1,20468:6630773,25515444:25952256,513147,126483 -k1,20467:7158818,25515444:172185 -k1,20467:8464121,25515444:172185 -k1,20467:12881728,25515444:172185 -k1,20467:14434100,25515444:172184 -k1,20467:15597845,25515444:172185 -k1,20467:16836301,25515444:172185 -k1,20467:18985707,25515444:172185 -k1,20467:21200649,25515444:172185 -k1,20467:22824456,25515444:172185 -k1,20467:24156628,25515444:172185 -k1,20467:25606110,25515444:172185 -k1,20467:26309791,25515444:172184 -k1,20467:28336645,25515444:172185 -k1,20467:29318200,25515444:172185 -k1,20467:31140582,25515444:172185 -k1,20467:32583029,25515444:0 -) -(1,20468:6630773,26380524:25952256,513147,126483 -k1,20467:7636969,26380524:228939 -k1,20467:8517336,26380524:228939 -k1,20467:9543193,26380524:228939 -k1,20467:14017554,26380524:228939 -k1,20467:14874328,26380524:228939 -k1,20467:16122352,26380524:228939 -k1,20467:17735411,26380524:228939 -k1,20467:20625768,26380524:228940 -k1,20467:21210567,26380524:228939 -k1,20467:23718848,26380524:228939 -k1,20467:24607079,26380524:228939 -k1,20467:26537333,26380524:228939 -k1,20467:28334549,26380524:228939 -k1,20467:29767384,26380524:228939 -k1,20467:31563944,26380524:228939 -k1,20467:32583029,26380524:0 -) -(1,20468:6630773,27245604:25952256,513147,115847 -g1,20467:8219365,27245604 -g1,20467:10294890,27245604 -(1,20467:10294890,27245604:0,452978,115847 -r1,20520:12763427,27245604:2468537,568825,115847 -k1,20467:10294890,27245604:-2468537 -) -(1,20467:10294890,27245604:2468537,452978,115847 -k1,20467:10294890,27245604:3277 -h1,20467:12760150,27245604:0,411205,112570 -) -g1,20467:12962656,27245604 -g1,20467:14555836,27245604 -g1,20467:15950442,27245604 -g1,20467:17683869,27245604 -g1,20467:18414595,27245604 -k1,20468:32583029,27245604:12602779 -g1,20468:32583029,27245604 -) -v1,20472:6630773,27930459:0,393216,0 -(1,20478:6630773,29640852:25952256,2103609,196608 -g1,20478:6630773,29640852 -g1,20478:6630773,29640852 -g1,20478:6434165,29640852 -(1,20478:6434165,29640852:0,2103609,196608 -r1,20520:32779637,29640852:26345472,2300217,196608 -k1,20478:6434165,29640852:-26345472 -) -(1,20478:6434165,29640852:26345472,2103609,196608 -[1,20478:6630773,29640852:25952256,1907001,0 -(1,20474:6630773,28158290:25952256,424439,106246 -(1,20473:6630773,28158290:0,0,0 -g1,20473:6630773,28158290 -g1,20473:6630773,28158290 -g1,20473:6303093,28158290 -(1,20473:6303093,28158290:0,0,0 -) -g1,20473:6630773,28158290 -) -g1,20474:8954451,28158290 -k1,20474:8954451,28158290:0 -h1,20474:9618359,28158290:0,0,0 -k1,20474:32583029,28158290:22964670 -g1,20474:32583029,28158290 -) -(1,20475:6630773,28843145:25952256,424439,112852 -h1,20475:6630773,28843145:0,0,0 -g1,20475:6962727,28843145 -g1,20475:7294681,28843145 -g1,20475:11278129,28843145 -g1,20475:11942037,28843145 -g1,20475:17253300,28843145 -g1,20475:20904794,28843145 -g1,20475:22232610,28843145 -g1,20475:22896518,28843145 -k1,20475:22896518,28843145:0 -h1,20475:23560426,28843145:0,0,0 -k1,20475:32583029,28843145:9022603 -g1,20475:32583029,28843145 -) -(1,20476:6630773,29528000:25952256,424439,112852 -h1,20476:6630773,29528000:0,0,0 -g1,20476:6962727,29528000 -g1,20476:7294681,29528000 -g1,20476:7626635,29528000 -g1,20476:7958589,29528000 -g1,20476:8290543,29528000 -g1,20476:8622497,29528000 -g1,20476:8954451,29528000 -g1,20476:9286405,29528000 -g1,20476:9618359,29528000 -g1,20476:12273991,29528000 -g1,20476:12937899,29528000 -g1,20476:14929623,29528000 -g1,20476:15593531,29528000 -g1,20476:17917209,29528000 -g1,20476:18581117,29528000 -g1,20476:19245025,29528000 -h1,20476:20240887,29528000:0,0,0 -k1,20476:32583029,29528000:12342142 -g1,20476:32583029,29528000 -) -] -) -g1,20478:32583029,29640852 -g1,20478:6630773,29640852 -g1,20478:6630773,29640852 -g1,20478:32583029,29640852 -g1,20478:32583029,29640852 -) -h1,20478:6630773,29837460:0,0,0 -v1,20482:6630773,30522315:0,393216,0 -(1,20486:6630773,30856392:25952256,727293,196608 -g1,20486:6630773,30856392 -g1,20486:6630773,30856392 -g1,20486:6434165,30856392 -(1,20486:6434165,30856392:0,727293,196608 -r1,20520:32779637,30856392:26345472,923901,196608 -k1,20486:6434165,30856392:-26345472 -) -(1,20486:6434165,30856392:26345472,727293,196608 -[1,20486:6630773,30856392:25952256,530685,0 -(1,20484:6630773,30750146:25952256,424439,106246 -(1,20483:6630773,30750146:0,0,0 -g1,20483:6630773,30750146 -g1,20483:6630773,30750146 -g1,20483:6303093,30750146 -(1,20483:6303093,30750146:0,0,0 -) -g1,20483:6630773,30750146 -) -g1,20484:7626635,30750146 -g1,20484:8622497,30750146 -g1,20484:10946175,30750146 -g1,20484:11610083,30750146 -k1,20484:11610083,30750146:0 -h1,20484:16257438,30750146:0,0,0 -k1,20484:32583029,30750146:16325591 -g1,20484:32583029,30750146 -) -] -) -g1,20486:32583029,30856392 -g1,20486:6630773,30856392 -g1,20486:6630773,30856392 -g1,20486:32583029,30856392 -g1,20486:32583029,30856392 -) -h1,20486:6630773,31053000:0,0,0 -(1,20490:6630773,31918080:25952256,505283,126483 -h1,20489:6630773,31918080:983040,0,0 -k1,20489:8884556,31918080:452854 -k1,20489:10731360,31918080:452853 -k1,20489:12886184,31918080:452854 -k1,20489:16172158,31918080:452853 -k1,20489:18133651,31918080:452854 -k1,20489:22227030,31918080:452854 -k1,20489:24513580,31918080:452853 -k1,20489:26433130,31918080:452854 -k1,20489:29950448,31918080:452854 -k1,20489:31896867,31918080:452853 -k1,20490:32583029,31918080:0 -) -(1,20490:6630773,32783160:25952256,513147,126483 -(1,20489:6630773,32783160:0,452978,115847 -r1,20520:8747598,32783160:2116825,568825,115847 -k1,20489:6630773,32783160:-2116825 -) -(1,20489:6630773,32783160:2116825,452978,115847 -k1,20489:6630773,32783160:3277 -h1,20489:8744321,32783160:0,411205,112570 -) -k1,20489:9352623,32783160:431355 -k1,20489:10975424,32783160:431356 -k1,20489:15017813,32783160:431355 -k1,20489:17846476,32783160:431356 -k1,20489:18929259,32783160:431355 -k1,20489:20520601,32783160:431355 -k1,20489:22733226,32783160:431356 -(1,20489:22733226,32783160:0,452978,115847 -r1,20520:27663746,32783160:4930520,568825,115847 -k1,20489:22733226,32783160:-4930520 -) -(1,20489:22733226,32783160:4930520,452978,115847 -k1,20489:22733226,32783160:3277 -h1,20489:27660469,32783160:0,411205,112570 -) -k1,20489:28268771,32783160:431355 -(1,20489:28268771,32783160:0,459977,115847 -r1,20520:32495867,32783160:4227096,575824,115847 -k1,20489:28268771,32783160:-4227096 -) -(1,20489:28268771,32783160:4227096,459977,115847 -k1,20489:28268771,32783160:3277 -h1,20489:32492590,32783160:0,411205,112570 -) -k1,20490:32583029,32783160:0 -) -(1,20490:6630773,33648240:25952256,513147,115847 -(1,20489:6630773,33648240:0,452978,115847 -r1,20520:11209581,33648240:4578808,568825,115847 -k1,20489:6630773,33648240:-4578808 -) -(1,20489:6630773,33648240:4578808,452978,115847 -k1,20489:6630773,33648240:3277 -h1,20489:11206304,33648240:0,411205,112570 -) -k1,20489:11538588,33648240:155337 -(1,20489:11538588,33648240:0,452978,115847 -r1,20520:15765684,33648240:4227096,568825,115847 -k1,20489:11538588,33648240:-4227096 -) -(1,20489:11538588,33648240:4227096,452978,115847 -k1,20489:11538588,33648240:3277 -h1,20489:15762407,33648240:0,411205,112570 -) -k1,20489:16094690,33648240:155336 -(1,20489:16094690,33648240:0,452978,115847 -r1,20520:21025210,33648240:4930520,568825,115847 -k1,20489:16094690,33648240:-4930520 -) -(1,20489:16094690,33648240:4930520,452978,115847 -k1,20489:16094690,33648240:3277 -h1,20489:21021933,33648240:0,411205,112570 -) -k1,20489:21180547,33648240:155337 -k1,20489:22527329,33648240:155337 -(1,20489:22527329,33648240:0,452978,115847 -r1,20520:27106137,33648240:4578808,568825,115847 -k1,20489:22527329,33648240:-4578808 -) -(1,20489:22527329,33648240:4578808,452978,115847 -k1,20489:22527329,33648240:3277 -h1,20489:27102860,33648240:0,411205,112570 -) -k1,20489:27435144,33648240:155337 -k1,20489:29475951,33648240:155336 -k1,20489:31410590,33648240:155337 -k1,20490:32583029,33648240:0 -) -(1,20490:6630773,34513320:25952256,513147,126483 -k1,20489:8218121,34513320:215024 -k1,20489:11201385,34513320:215023 -k1,20489:12067837,34513320:215024 -k1,20489:15587841,34513320:215023 -(1,20489:15587841,34513320:0,452978,115847 -r1,20520:19111513,34513320:3523672,568825,115847 -k1,20489:15587841,34513320:-3523672 -) -(1,20489:15587841,34513320:3523672,452978,115847 -k1,20489:15587841,34513320:3277 -h1,20489:19108236,34513320:0,411205,112570 -) -k1,20489:19500207,34513320:215024 -k1,20489:20911918,34513320:215024 -k1,20489:22996028,34513320:215023 -k1,20489:24402497,34513320:215024 -k1,20489:26432213,34513320:215024 -k1,20489:27306528,34513320:215023 -k1,20489:28540637,34513320:215024 -k1,20489:30515957,34513320:215023 -k1,20489:31835263,34513320:215024 -k1,20489:32583029,34513320:0 -) -(1,20490:6630773,35378400:25952256,505283,134348 -k1,20489:9595709,35378400:191452 -k1,20489:11181112,35378400:191452 -(1,20489:11181112,35378400:0,452978,115847 -r1,20520:12946225,35378400:1765113,568825,115847 -k1,20489:11181112,35378400:-1765113 -) -(1,20489:11181112,35378400:1765113,452978,115847 -k1,20489:11181112,35378400:3277 -h1,20489:12942948,35378400:0,411205,112570 -) -k1,20489:13311348,35378400:191453 -(1,20489:13311348,35378400:0,452978,115847 -r1,20520:16835020,35378400:3523672,568825,115847 -k1,20489:13311348,35378400:-3523672 -) -(1,20489:13311348,35378400:3523672,452978,115847 -k1,20489:13311348,35378400:3277 -h1,20489:16831743,35378400:0,411205,112570 -) -k1,20489:17026472,35378400:191452 -k1,20489:18409369,35378400:191452 -(1,20489:18409369,35378400:0,452978,115847 -r1,20520:21229618,35378400:2820249,568825,115847 -k1,20489:18409369,35378400:-2820249 -) -(1,20489:18409369,35378400:2820249,452978,115847 -k1,20489:18409369,35378400:3277 -h1,20489:21226341,35378400:0,411205,112570 -) -k1,20489:21594740,35378400:191452 -k1,20489:24355860,35378400:191453 -k1,20489:25163350,35378400:191452 -k1,20489:26514789,35378400:191452 -k1,20489:28313839,35378400:191452 -k1,20489:29848125,35378400:191453 -k1,20489:30395437,35378400:191452 -k1,20489:32583029,35378400:0 -) -(1,20490:6630773,36243480:25952256,513147,126483 -g1,20489:8065356,36243480 -g1,20489:8950747,36243480 -g1,20489:12587339,36243480 -g1,20489:14601260,36243480 -g1,20489:16143322,36243480 -g1,20489:17290202,36243480 -k1,20490:32583029,36243480:13172082 -g1,20490:32583029,36243480 -) -v1,20492:6630773,36928335:0,393216,0 -(1,20499:6630773,39300461:25952256,2765342,196608 -g1,20499:6630773,39300461 -g1,20499:6630773,39300461 -g1,20499:6434165,39300461 -(1,20499:6434165,39300461:0,2765342,196608 -r1,20520:32779637,39300461:26345472,2961950,196608 -k1,20499:6434165,39300461:-26345472 -) -(1,20499:6434165,39300461:26345472,2765342,196608 -[1,20499:6630773,39300461:25952256,2568734,0 -(1,20494:6630773,37139650:25952256,407923,106246 -(1,20493:6630773,37139650:0,0,0 -g1,20493:6630773,37139650 -g1,20493:6630773,37139650 -g1,20493:6303093,37139650 -(1,20493:6303093,37139650:0,0,0 -) -g1,20493:6630773,37139650 -) -g1,20494:7626635,37139650 -k1,20494:7626635,37139650:0 -h1,20494:8290543,37139650:0,0,0 -k1,20494:32583029,37139650:24292486 -g1,20494:32583029,37139650 -) -(1,20495:6630773,37824505:25952256,424439,106246 -h1,20495:6630773,37824505:0,0,0 -g1,20495:6962727,37824505 -g1,20495:7294681,37824505 -g1,20495:9618359,37824505 -h1,20495:9950313,37824505:0,0,0 -k1,20495:32583029,37824505:22632716 -g1,20495:32583029,37824505 -) -(1,20496:6630773,38509360:25952256,424439,106246 -h1,20496:6630773,38509360:0,0,0 -g1,20496:6962727,38509360 -g1,20496:7294681,38509360 -g1,20496:13601806,38509360 -g1,20496:14265714,38509360 -g1,20496:16257438,38509360 -g1,20496:18249162,38509360 -g1,20496:18913070,38509360 -k1,20496:18913070,38509360:0 -h1,20496:20240886,38509360:0,0,0 -k1,20496:32583029,38509360:12342143 -g1,20496:32583029,38509360 -) -(1,20497:6630773,39194215:25952256,424439,106246 -h1,20497:6630773,39194215:0,0,0 -g1,20497:6962727,39194215 -g1,20497:7294681,39194215 -g1,20497:7626635,39194215 -g1,20497:7958589,39194215 -g1,20497:8290543,39194215 -g1,20497:8622497,39194215 -g1,20497:8954451,39194215 -g1,20497:9286405,39194215 -g1,20497:9618359,39194215 -g1,20497:9950313,39194215 -g1,20497:10282267,39194215 -g1,20497:10614221,39194215 -g1,20497:10946175,39194215 -g1,20497:11278129,39194215 -g1,20497:11610083,39194215 -g1,20497:16589392,39194215 -g1,20497:17253300,39194215 -g1,20497:19576978,39194215 -g1,20497:24224333,39194215 -g1,20497:24888241,39194215 -g1,20497:26548011,39194215 -g1,20497:30863412,39194215 -g1,20497:31527320,39194215 -h1,20497:32191228,39194215:0,0,0 -k1,20497:32583029,39194215:391801 -g1,20497:32583029,39194215 -) -] -) -g1,20499:32583029,39300461 -g1,20499:6630773,39300461 -g1,20499:6630773,39300461 -g1,20499:32583029,39300461 -g1,20499:32583029,39300461 -) -h1,20499:6630773,39497069:0,0,0 -(1,20503:6630773,40362149:25952256,513147,134348 -h1,20502:6630773,40362149:983040,0,0 -k1,20502:9004312,40362149:193812 -k1,20502:10370562,40362149:193811 -k1,20502:12171972,40362149:193812 -k1,20502:13665363,40362149:193812 -k1,20502:14620703,40362149:193812 -k1,20502:16114093,40362149:193811 -k1,20502:17539982,40362149:193812 -k1,20502:20012481,40362149:193812 -h1,20502:21381528,40362149:0,0,0 -k1,20502:21575340,40362149:193812 -k1,20502:22578521,40362149:193811 -k1,20502:24270486,40362149:193812 -h1,20502:25465863,40362149:0,0,0 -k1,20502:25659675,40362149:193812 -k1,20502:26801138,40362149:193812 -k1,20502:29112417,40362149:193811 -k1,20502:31128785,40362149:193812 -k1,20503:32583029,40362149:0 -) -(1,20503:6630773,41227229:25952256,505283,134348 -g1,20502:8965820,41227229 -k1,20503:32583028,41227229:21750088 -g1,20503:32583028,41227229 -) -v1,20505:6630773,41912084:0,393216,0 -(1,20509:6630773,42229645:25952256,710777,196608 -g1,20509:6630773,42229645 -g1,20509:6630773,42229645 -g1,20509:6434165,42229645 -(1,20509:6434165,42229645:0,710777,196608 -r1,20520:32779637,42229645:26345472,907385,196608 -k1,20509:6434165,42229645:-26345472 -) -(1,20509:6434165,42229645:26345472,710777,196608 -[1,20509:6630773,42229645:25952256,514169,0 -(1,20507:6630773,42123399:25952256,407923,106246 -(1,20506:6630773,42123399:0,0,0 -g1,20506:6630773,42123399 -g1,20506:6630773,42123399 -g1,20506:6303093,42123399 -(1,20506:6303093,42123399:0,0,0 -) -g1,20506:6630773,42123399 -) -g1,20507:7626635,42123399 -g1,20507:8290543,42123399 -h1,20507:8954451,42123399:0,0,0 -k1,20507:32583029,42123399:23628578 -g1,20507:32583029,42123399 -) -] -) -g1,20509:32583029,42229645 -g1,20509:6630773,42229645 -g1,20509:6630773,42229645 -g1,20509:32583029,42229645 -g1,20509:32583029,42229645 -) -h1,20509:6630773,42426253:0,0,0 -] -(1,20520:32583029,45706769:0,0,0 -g1,20520:32583029,45706769 -) -) -] -(1,20520:6630773,47279633:25952256,0,0 -h1,20520:6630773,47279633:25952256,0,0 -) -] -(1,20520:4262630,4025873:0,0,0 -[1,20520:-473656,4025873:0,0,0 -(1,20520:-473656,-710413:0,0,0 -(1,20520:-473656,-710413:0,0,0 -g1,20520:-473656,-710413 -) -g1,20520:-473656,-710413 +g1,20518:6630773,4812305 +k1,20518:21386205,4812305:13560055 +g1,20518:21999622,4812305 +g1,20518:25611966,4812305 +g1,20518:28956923,4812305 +g1,20518:29772190,4812305 +) +) +] +[1,20518:6630773,45706769:25952256,40108032,0 +(1,20518:6630773,45706769:25952256,40108032,0 +(1,20518:6630773,45706769:0,0,0 +g1,20518:6630773,45706769 +) +[1,20518:6630773,45706769:25952256,40108032,0 +(1,20438:6630773,6254097:25952256,513147,134348 +h1,20437:6630773,6254097:983040,0,0 +k1,20437:9848247,6254097:193643 +k1,20437:11060975,6254097:193643 +k1,20437:12156388,6254097:193638 +k1,20437:14682457,6254097:193643 +k1,20437:15823751,6254097:193643 +k1,20437:17469016,6254097:193643 +k1,20437:19555339,6254097:193643 +k1,20437:20280479,6254097:193643 +k1,20437:22776402,6254097:193643 +k1,20437:23586083,6254097:193643 +k1,20437:24135586,6254097:193643 +k1,20437:27031934,6254097:193643 +k1,20437:29143160,6254097:193643 +k1,20437:30730754,6254097:193643 +(1,20437:30730754,6254097:0,452978,115847 +r1,20518:32495867,6254097:1765113,568825,115847 +k1,20437:30730754,6254097:-1765113 +) +(1,20437:30730754,6254097:1765113,452978,115847 +k1,20437:30730754,6254097:3277 +h1,20437:32492590,6254097:0,411205,112570 +) +k1,20437:32583029,6254097:0 +) +(1,20438:6630773,7119177:25952256,505283,126483 +g1,20437:7185862,7119177 +g1,20437:9896431,7119177 +g1,20437:13304303,7119177 +g1,20437:14265060,7119177 +(1,20437:14265060,7119177:0,452978,115847 +r1,20518:20250715,7119177:5985655,568825,115847 +k1,20437:14265060,7119177:-5985655 +) +(1,20437:14265060,7119177:5985655,452978,115847 +k1,20437:14265060,7119177:3277 +h1,20437:20247438,7119177:0,411205,112570 +) +g1,20437:20623614,7119177 +g1,20437:23408238,7119177 +g1,20437:24258895,7119177 +g1,20437:25477209,7119177 +(1,20437:25477209,7119177:0,459977,115847 +r1,20518:26890610,7119177:1413401,575824,115847 +k1,20437:25477209,7119177:-1413401 +) +(1,20437:25477209,7119177:1413401,459977,115847 +k1,20437:25477209,7119177:3277 +h1,20437:26887333,7119177:0,411205,112570 +) +g1,20437:27089839,7119177 +k1,20438:32583029,7119177:2687595 +g1,20438:32583029,7119177 +) +v1,20442:6630773,7804032:0,393216,0 +(1,20449:6630773,10199280:25952256,2788464,196608 +g1,20449:6630773,10199280 +g1,20449:6630773,10199280 +g1,20449:6434165,10199280 +(1,20449:6434165,10199280:0,2788464,196608 +r1,20518:32779637,10199280:26345472,2985072,196608 +k1,20449:6434165,10199280:-26345472 +) +(1,20449:6434165,10199280:26345472,2788464,196608 +[1,20449:6630773,10199280:25952256,2591856,0 +(1,20444:6630773,8031863:25952256,424439,112852 +(1,20443:6630773,8031863:0,0,0 +g1,20443:6630773,8031863 +g1,20443:6630773,8031863 +g1,20443:6303093,8031863 +(1,20443:6303093,8031863:0,0,0 +) +g1,20443:6630773,8031863 +) +k1,20444:6630773,8031863:0 +g1,20444:10614221,8031863 +g1,20444:11278129,8031863 +k1,20444:11278129,8031863:0 +h1,20444:13933761,8031863:0,0,0 +k1,20444:32583029,8031863:18649268 +g1,20444:32583029,8031863 +) +(1,20445:6630773,8716718:25952256,424439,112852 +h1,20445:6630773,8716718:0,0,0 +g1,20445:6962727,8716718 +g1,20445:7294681,8716718 +g1,20445:7626635,8716718 +g1,20445:7958589,8716718 +g1,20445:8290543,8716718 +g1,20445:8622497,8716718 +g1,20445:8954451,8716718 +g1,20445:11610083,8716718 +g1,20445:12273991,8716718 +g1,20445:14265715,8716718 +g1,20445:14929623,8716718 +g1,20445:15925485,8716718 +g1,20445:16589393,8716718 +g1,20445:17253301,8716718 +g1,20445:18581117,8716718 +h1,20445:18913071,8716718:0,0,0 +k1,20445:32583029,8716718:13669958 +g1,20445:32583029,8716718 +) +(1,20446:6630773,9401573:25952256,431045,112852 +h1,20446:6630773,9401573:0,0,0 +g1,20446:6962727,9401573 +g1,20446:7294681,9401573 +g1,20446:15593530,9401573 +g1,20446:16257438,9401573 +g1,20446:22896516,9401573 +g1,20446:24556286,9401573 +g1,20446:25220194,9401573 +g1,20446:28871687,9401573 +h1,20446:29203641,9401573:0,0,0 +k1,20446:32583029,9401573:3379388 +g1,20446:32583029,9401573 +) +(1,20447:6630773,10086428:25952256,431045,112852 +h1,20447:6630773,10086428:0,0,0 +g1,20447:6962727,10086428 +g1,20447:7294681,10086428 +g1,20447:13269852,10086428 +g1,20447:13933760,10086428 +k1,20447:13933760,10086428:0 +h1,20447:17917207,10086428:0,0,0 +k1,20447:32583029,10086428:14665822 +g1,20447:32583029,10086428 +) +] +) +g1,20449:32583029,10199280 +g1,20449:6630773,10199280 +g1,20449:6630773,10199280 +g1,20449:32583029,10199280 +g1,20449:32583029,10199280 +) +h1,20449:6630773,10395888:0,0,0 +(1,20452:6630773,19545090:25952256,9083666,0 +k1,20452:10523651,19545090:3892878 +h1,20451:10523651,19545090:0,0,0 +(1,20451:10523651,19545090:18166500,9083666,0 +(1,20451:10523651,19545090:18167376,9083688,0 +(1,20451:10523651,19545090:18167376,9083688,0 +(1,20451:10523651,19545090:0,9083688,0 +(1,20451:10523651,19545090:0,14208860,0 +(1,20451:10523651,19545090:28417720,14208860,0 +) +k1,20451:10523651,19545090:-28417720 +) +) +g1,20451:28691027,19545090 +) +) +) +g1,20452:28690151,19545090 +k1,20452:32583029,19545090:3892878 +) +(1,20461:6630773,21661908:25952256,555811,139132 +(1,20461:6630773,21661908:2450326,534184,12975 +g1,20461:6630773,21661908 +g1,20461:9081099,21661908 +) +g1,20461:10649769,21661908 +g1,20461:12216997,21661908 +g1,20461:15747225,21661908 +k1,20461:32583029,21661908:15028518 +g1,20461:32583029,21661908 +) +(1,20466:6630773,22920204:25952256,513147,134348 +k1,20465:7987930,22920204:198480 +k1,20465:9377856,22920204:198481 +k1,20465:12402248,22920204:198480 +k1,20465:14381997,22920204:198480 +k1,20465:15263362,22920204:198480 +k1,20465:16690643,22920204:198481 +k1,20465:18049110,22920204:198480 +k1,20465:20028859,22920204:198480 +k1,20465:21218900,22920204:198481 +k1,20465:24925522,22920204:198480 +k1,20465:26408508,22920204:198480 +k1,20465:28815551,22920204:198480 +k1,20465:30706172,22920204:198481 +k1,20465:31563944,22920204:198480 +k1,20465:32583029,22920204:0 +) +(1,20466:6630773,23785284:25952256,513147,126483 +k1,20465:10135548,23785284:208969 +k1,20465:11003810,23785284:208970 +k1,20465:11568639,23785284:208969 +k1,20465:15732707,23785284:208970 +k1,20465:17499467,23785284:208969 +k1,20465:18699996,23785284:208969 +k1,20465:22137925,23785284:208970 +k1,20465:23538339,23785284:208969 +k1,20465:26049589,23785284:208970 +k1,20465:27652509,23785284:208969 +(1,20465:27652509,23785284:0,452978,115847 +r1,20518:32583029,23785284:4930520,568825,115847 +k1,20465:27652509,23785284:-4930520 +) +(1,20465:27652509,23785284:4930520,452978,115847 +k1,20465:27652509,23785284:3277 +h1,20465:32579752,23785284:0,411205,112570 +) +k1,20465:32583029,23785284:0 +) +(1,20466:6630773,24650364:25952256,505283,134348 +k1,20465:7513413,24650364:199755 +k1,20465:8732253,24650364:199755 +k1,20465:11903410,24650364:199755 +(1,20465:11903410,24650364:0,452978,122846 +r1,20518:16833930,24650364:4930520,575824,122846 +k1,20465:11903410,24650364:-4930520 +) +(1,20465:11903410,24650364:4930520,452978,122846 +k1,20465:11903410,24650364:3277 +h1,20465:16830653,24650364:0,411205,112570 +) +k1,20465:17207355,24650364:199755 +k1,20465:20369993,24650364:199755 +k1,20465:21729735,24650364:199755 +k1,20465:23537087,24650364:199754 +k1,20465:24841124,24650364:199755 +k1,20465:25788645,24650364:199755 +k1,20465:28290680,24650364:199755 +k1,20465:30345104,24650364:199755 +k1,20465:31354229,24650364:199755 +k1,20465:32583029,24650364:0 +) +(1,20466:6630773,25515444:25952256,513147,126483 +k1,20465:7158818,25515444:172185 +k1,20465:8464121,25515444:172185 +k1,20465:12881728,25515444:172185 +k1,20465:14434100,25515444:172184 +k1,20465:15597845,25515444:172185 +k1,20465:16836301,25515444:172185 +k1,20465:18985707,25515444:172185 +k1,20465:21200649,25515444:172185 +k1,20465:22824456,25515444:172185 +k1,20465:24156628,25515444:172185 +k1,20465:25606110,25515444:172185 +k1,20465:26309791,25515444:172184 +k1,20465:28336645,25515444:172185 +k1,20465:29318200,25515444:172185 +k1,20465:31140582,25515444:172185 +k1,20465:32583029,25515444:0 +) +(1,20466:6630773,26380524:25952256,513147,126483 +k1,20465:7636969,26380524:228939 +k1,20465:8517336,26380524:228939 +k1,20465:9543193,26380524:228939 +k1,20465:14017554,26380524:228939 +k1,20465:14874328,26380524:228939 +k1,20465:16122352,26380524:228939 +k1,20465:17735411,26380524:228939 +k1,20465:20625768,26380524:228940 +k1,20465:21210567,26380524:228939 +k1,20465:23718848,26380524:228939 +k1,20465:24607079,26380524:228939 +k1,20465:26537333,26380524:228939 +k1,20465:28334549,26380524:228939 +k1,20465:29767384,26380524:228939 +k1,20465:31563944,26380524:228939 +k1,20465:32583029,26380524:0 +) +(1,20466:6630773,27245604:25952256,513147,115847 +g1,20465:8219365,27245604 +g1,20465:10294890,27245604 +(1,20465:10294890,27245604:0,452978,115847 +r1,20518:12763427,27245604:2468537,568825,115847 +k1,20465:10294890,27245604:-2468537 +) +(1,20465:10294890,27245604:2468537,452978,115847 +k1,20465:10294890,27245604:3277 +h1,20465:12760150,27245604:0,411205,112570 +) +g1,20465:12962656,27245604 +g1,20465:14555836,27245604 +g1,20465:15950442,27245604 +g1,20465:17683869,27245604 +g1,20465:18414595,27245604 +k1,20466:32583029,27245604:12602779 +g1,20466:32583029,27245604 +) +v1,20470:6630773,27930459:0,393216,0 +(1,20476:6630773,29640852:25952256,2103609,196608 +g1,20476:6630773,29640852 +g1,20476:6630773,29640852 +g1,20476:6434165,29640852 +(1,20476:6434165,29640852:0,2103609,196608 +r1,20518:32779637,29640852:26345472,2300217,196608 +k1,20476:6434165,29640852:-26345472 +) +(1,20476:6434165,29640852:26345472,2103609,196608 +[1,20476:6630773,29640852:25952256,1907001,0 +(1,20472:6630773,28158290:25952256,424439,106246 +(1,20471:6630773,28158290:0,0,0 +g1,20471:6630773,28158290 +g1,20471:6630773,28158290 +g1,20471:6303093,28158290 +(1,20471:6303093,28158290:0,0,0 +) +g1,20471:6630773,28158290 +) +g1,20472:8954451,28158290 +k1,20472:8954451,28158290:0 +h1,20472:9618359,28158290:0,0,0 +k1,20472:32583029,28158290:22964670 +g1,20472:32583029,28158290 +) +(1,20473:6630773,28843145:25952256,424439,112852 +h1,20473:6630773,28843145:0,0,0 +g1,20473:6962727,28843145 +g1,20473:7294681,28843145 +g1,20473:11278129,28843145 +g1,20473:11942037,28843145 +g1,20473:17253300,28843145 +g1,20473:20904794,28843145 +g1,20473:22232610,28843145 +g1,20473:22896518,28843145 +k1,20473:22896518,28843145:0 +h1,20473:23560426,28843145:0,0,0 +k1,20473:32583029,28843145:9022603 +g1,20473:32583029,28843145 +) +(1,20474:6630773,29528000:25952256,424439,112852 +h1,20474:6630773,29528000:0,0,0 +g1,20474:6962727,29528000 +g1,20474:7294681,29528000 +g1,20474:7626635,29528000 +g1,20474:7958589,29528000 +g1,20474:8290543,29528000 +g1,20474:8622497,29528000 +g1,20474:8954451,29528000 +g1,20474:9286405,29528000 +g1,20474:9618359,29528000 +g1,20474:12273991,29528000 +g1,20474:12937899,29528000 +g1,20474:14929623,29528000 +g1,20474:15593531,29528000 +g1,20474:17917209,29528000 +g1,20474:18581117,29528000 +g1,20474:19245025,29528000 +h1,20474:20240887,29528000:0,0,0 +k1,20474:32583029,29528000:12342142 +g1,20474:32583029,29528000 +) +] +) +g1,20476:32583029,29640852 +g1,20476:6630773,29640852 +g1,20476:6630773,29640852 +g1,20476:32583029,29640852 +g1,20476:32583029,29640852 +) +h1,20476:6630773,29837460:0,0,0 +v1,20480:6630773,30522315:0,393216,0 +(1,20484:6630773,30856392:25952256,727293,196608 +g1,20484:6630773,30856392 +g1,20484:6630773,30856392 +g1,20484:6434165,30856392 +(1,20484:6434165,30856392:0,727293,196608 +r1,20518:32779637,30856392:26345472,923901,196608 +k1,20484:6434165,30856392:-26345472 +) +(1,20484:6434165,30856392:26345472,727293,196608 +[1,20484:6630773,30856392:25952256,530685,0 +(1,20482:6630773,30750146:25952256,424439,106246 +(1,20481:6630773,30750146:0,0,0 +g1,20481:6630773,30750146 +g1,20481:6630773,30750146 +g1,20481:6303093,30750146 +(1,20481:6303093,30750146:0,0,0 +) +g1,20481:6630773,30750146 +) +g1,20482:7626635,30750146 +g1,20482:8622497,30750146 +g1,20482:10946175,30750146 +g1,20482:11610083,30750146 +k1,20482:11610083,30750146:0 +h1,20482:16257438,30750146:0,0,0 +k1,20482:32583029,30750146:16325591 +g1,20482:32583029,30750146 +) +] +) +g1,20484:32583029,30856392 +g1,20484:6630773,30856392 +g1,20484:6630773,30856392 +g1,20484:32583029,30856392 +g1,20484:32583029,30856392 +) +h1,20484:6630773,31053000:0,0,0 +(1,20488:6630773,31918080:25952256,505283,126483 +h1,20487:6630773,31918080:983040,0,0 +k1,20487:8884556,31918080:452854 +k1,20487:10731360,31918080:452853 +k1,20487:12886184,31918080:452854 +k1,20487:16172158,31918080:452853 +k1,20487:18133651,31918080:452854 +k1,20487:22227030,31918080:452854 +k1,20487:24513580,31918080:452853 +k1,20487:26433130,31918080:452854 +k1,20487:29950448,31918080:452854 +k1,20487:31896867,31918080:452853 +k1,20488:32583029,31918080:0 +) +(1,20488:6630773,32783160:25952256,513147,126483 +(1,20487:6630773,32783160:0,452978,115847 +r1,20518:8747598,32783160:2116825,568825,115847 +k1,20487:6630773,32783160:-2116825 +) +(1,20487:6630773,32783160:2116825,452978,115847 +k1,20487:6630773,32783160:3277 +h1,20487:8744321,32783160:0,411205,112570 +) +k1,20487:9352623,32783160:431355 +k1,20487:10975424,32783160:431356 +k1,20487:15017813,32783160:431355 +k1,20487:17846476,32783160:431356 +k1,20487:18929259,32783160:431355 +k1,20487:20520601,32783160:431355 +k1,20487:22733226,32783160:431356 +(1,20487:22733226,32783160:0,452978,115847 +r1,20518:27663746,32783160:4930520,568825,115847 +k1,20487:22733226,32783160:-4930520 +) +(1,20487:22733226,32783160:4930520,452978,115847 +k1,20487:22733226,32783160:3277 +h1,20487:27660469,32783160:0,411205,112570 +) +k1,20487:28268771,32783160:431355 +(1,20487:28268771,32783160:0,459977,115847 +r1,20518:32495867,32783160:4227096,575824,115847 +k1,20487:28268771,32783160:-4227096 +) +(1,20487:28268771,32783160:4227096,459977,115847 +k1,20487:28268771,32783160:3277 +h1,20487:32492590,32783160:0,411205,112570 +) +k1,20488:32583029,32783160:0 +) +(1,20488:6630773,33648240:25952256,513147,115847 +(1,20487:6630773,33648240:0,452978,115847 +r1,20518:11209581,33648240:4578808,568825,115847 +k1,20487:6630773,33648240:-4578808 +) +(1,20487:6630773,33648240:4578808,452978,115847 +k1,20487:6630773,33648240:3277 +h1,20487:11206304,33648240:0,411205,112570 +) +k1,20487:11538588,33648240:155337 +(1,20487:11538588,33648240:0,452978,115847 +r1,20518:15765684,33648240:4227096,568825,115847 +k1,20487:11538588,33648240:-4227096 +) +(1,20487:11538588,33648240:4227096,452978,115847 +k1,20487:11538588,33648240:3277 +h1,20487:15762407,33648240:0,411205,112570 +) +k1,20487:16094690,33648240:155336 +(1,20487:16094690,33648240:0,452978,115847 +r1,20518:21025210,33648240:4930520,568825,115847 +k1,20487:16094690,33648240:-4930520 +) +(1,20487:16094690,33648240:4930520,452978,115847 +k1,20487:16094690,33648240:3277 +h1,20487:21021933,33648240:0,411205,112570 +) +k1,20487:21180547,33648240:155337 +k1,20487:22527329,33648240:155337 +(1,20487:22527329,33648240:0,452978,115847 +r1,20518:27106137,33648240:4578808,568825,115847 +k1,20487:22527329,33648240:-4578808 +) +(1,20487:22527329,33648240:4578808,452978,115847 +k1,20487:22527329,33648240:3277 +h1,20487:27102860,33648240:0,411205,112570 +) +k1,20487:27435144,33648240:155337 +k1,20487:29475951,33648240:155336 +k1,20487:31410590,33648240:155337 +k1,20488:32583029,33648240:0 +) +(1,20488:6630773,34513320:25952256,513147,126483 +k1,20487:8218121,34513320:215024 +k1,20487:11201385,34513320:215023 +k1,20487:12067837,34513320:215024 +k1,20487:15587841,34513320:215023 +(1,20487:15587841,34513320:0,452978,115847 +r1,20518:19111513,34513320:3523672,568825,115847 +k1,20487:15587841,34513320:-3523672 +) +(1,20487:15587841,34513320:3523672,452978,115847 +k1,20487:15587841,34513320:3277 +h1,20487:19108236,34513320:0,411205,112570 +) +k1,20487:19500207,34513320:215024 +k1,20487:20911918,34513320:215024 +k1,20487:22996028,34513320:215023 +k1,20487:24402497,34513320:215024 +k1,20487:26432213,34513320:215024 +k1,20487:27306528,34513320:215023 +k1,20487:28540637,34513320:215024 +k1,20487:30515957,34513320:215023 +k1,20487:31835263,34513320:215024 +k1,20487:32583029,34513320:0 +) +(1,20488:6630773,35378400:25952256,505283,134348 +k1,20487:9595709,35378400:191452 +k1,20487:11181112,35378400:191452 +(1,20487:11181112,35378400:0,452978,115847 +r1,20518:12946225,35378400:1765113,568825,115847 +k1,20487:11181112,35378400:-1765113 +) +(1,20487:11181112,35378400:1765113,452978,115847 +k1,20487:11181112,35378400:3277 +h1,20487:12942948,35378400:0,411205,112570 +) +k1,20487:13311348,35378400:191453 +(1,20487:13311348,35378400:0,452978,115847 +r1,20518:16835020,35378400:3523672,568825,115847 +k1,20487:13311348,35378400:-3523672 +) +(1,20487:13311348,35378400:3523672,452978,115847 +k1,20487:13311348,35378400:3277 +h1,20487:16831743,35378400:0,411205,112570 +) +k1,20487:17026472,35378400:191452 +k1,20487:18409369,35378400:191452 +(1,20487:18409369,35378400:0,452978,115847 +r1,20518:21229618,35378400:2820249,568825,115847 +k1,20487:18409369,35378400:-2820249 +) +(1,20487:18409369,35378400:2820249,452978,115847 +k1,20487:18409369,35378400:3277 +h1,20487:21226341,35378400:0,411205,112570 +) +k1,20487:21594740,35378400:191452 +k1,20487:24355860,35378400:191453 +k1,20487:25163350,35378400:191452 +k1,20487:26514789,35378400:191452 +k1,20487:28313839,35378400:191452 +k1,20487:29848125,35378400:191453 +k1,20487:30395437,35378400:191452 +k1,20487:32583029,35378400:0 +) +(1,20488:6630773,36243480:25952256,513147,126483 +g1,20487:8065356,36243480 +g1,20487:8950747,36243480 +g1,20487:12587339,36243480 +g1,20487:14601260,36243480 +g1,20487:16143322,36243480 +g1,20487:17290202,36243480 +k1,20488:32583029,36243480:13172082 +g1,20488:32583029,36243480 +) +v1,20490:6630773,36928335:0,393216,0 +(1,20497:6630773,39300461:25952256,2765342,196608 +g1,20497:6630773,39300461 +g1,20497:6630773,39300461 +g1,20497:6434165,39300461 +(1,20497:6434165,39300461:0,2765342,196608 +r1,20518:32779637,39300461:26345472,2961950,196608 +k1,20497:6434165,39300461:-26345472 +) +(1,20497:6434165,39300461:26345472,2765342,196608 +[1,20497:6630773,39300461:25952256,2568734,0 +(1,20492:6630773,37139650:25952256,407923,106246 +(1,20491:6630773,37139650:0,0,0 +g1,20491:6630773,37139650 +g1,20491:6630773,37139650 +g1,20491:6303093,37139650 +(1,20491:6303093,37139650:0,0,0 +) +g1,20491:6630773,37139650 +) +g1,20492:7626635,37139650 +k1,20492:7626635,37139650:0 +h1,20492:8290543,37139650:0,0,0 +k1,20492:32583029,37139650:24292486 +g1,20492:32583029,37139650 +) +(1,20493:6630773,37824505:25952256,424439,106246 +h1,20493:6630773,37824505:0,0,0 +g1,20493:6962727,37824505 +g1,20493:7294681,37824505 +g1,20493:9618359,37824505 +h1,20493:9950313,37824505:0,0,0 +k1,20493:32583029,37824505:22632716 +g1,20493:32583029,37824505 +) +(1,20494:6630773,38509360:25952256,424439,106246 +h1,20494:6630773,38509360:0,0,0 +g1,20494:6962727,38509360 +g1,20494:7294681,38509360 +g1,20494:13601806,38509360 +g1,20494:14265714,38509360 +g1,20494:16257438,38509360 +g1,20494:18249162,38509360 +g1,20494:18913070,38509360 +k1,20494:18913070,38509360:0 +h1,20494:20240886,38509360:0,0,0 +k1,20494:32583029,38509360:12342143 +g1,20494:32583029,38509360 +) +(1,20495:6630773,39194215:25952256,424439,106246 +h1,20495:6630773,39194215:0,0,0 +g1,20495:6962727,39194215 +g1,20495:7294681,39194215 +g1,20495:7626635,39194215 +g1,20495:7958589,39194215 +g1,20495:8290543,39194215 +g1,20495:8622497,39194215 +g1,20495:8954451,39194215 +g1,20495:9286405,39194215 +g1,20495:9618359,39194215 +g1,20495:9950313,39194215 +g1,20495:10282267,39194215 +g1,20495:10614221,39194215 +g1,20495:10946175,39194215 +g1,20495:11278129,39194215 +g1,20495:11610083,39194215 +g1,20495:16589392,39194215 +g1,20495:17253300,39194215 +g1,20495:19576978,39194215 +g1,20495:24224333,39194215 +g1,20495:24888241,39194215 +g1,20495:26548011,39194215 +g1,20495:30863412,39194215 +g1,20495:31527320,39194215 +h1,20495:32191228,39194215:0,0,0 +k1,20495:32583029,39194215:391801 +g1,20495:32583029,39194215 +) +] +) +g1,20497:32583029,39300461 +g1,20497:6630773,39300461 +g1,20497:6630773,39300461 +g1,20497:32583029,39300461 +g1,20497:32583029,39300461 +) +h1,20497:6630773,39497069:0,0,0 +(1,20501:6630773,40362149:25952256,513147,134348 +h1,20500:6630773,40362149:983040,0,0 +k1,20500:9004312,40362149:193812 +k1,20500:10370562,40362149:193811 +k1,20500:12171972,40362149:193812 +k1,20500:13665363,40362149:193812 +k1,20500:14620703,40362149:193812 +k1,20500:16114093,40362149:193811 +k1,20500:17539982,40362149:193812 +k1,20500:20012481,40362149:193812 +h1,20500:21381528,40362149:0,0,0 +k1,20500:21575340,40362149:193812 +k1,20500:22578521,40362149:193811 +k1,20500:24270486,40362149:193812 +h1,20500:25465863,40362149:0,0,0 +k1,20500:25659675,40362149:193812 +k1,20500:26801138,40362149:193812 +k1,20500:29112417,40362149:193811 +k1,20500:31128785,40362149:193812 +k1,20501:32583029,40362149:0 +) +(1,20501:6630773,41227229:25952256,505283,134348 +g1,20500:8965820,41227229 +k1,20501:32583028,41227229:21750088 +g1,20501:32583028,41227229 +) +v1,20503:6630773,41912084:0,393216,0 +(1,20507:6630773,42229645:25952256,710777,196608 +g1,20507:6630773,42229645 +g1,20507:6630773,42229645 +g1,20507:6434165,42229645 +(1,20507:6434165,42229645:0,710777,196608 +r1,20518:32779637,42229645:26345472,907385,196608 +k1,20507:6434165,42229645:-26345472 +) +(1,20507:6434165,42229645:26345472,710777,196608 +[1,20507:6630773,42229645:25952256,514169,0 +(1,20505:6630773,42123399:25952256,407923,106246 +(1,20504:6630773,42123399:0,0,0 +g1,20504:6630773,42123399 +g1,20504:6630773,42123399 +g1,20504:6303093,42123399 +(1,20504:6303093,42123399:0,0,0 +) +g1,20504:6630773,42123399 +) +g1,20505:7626635,42123399 +g1,20505:8290543,42123399 +h1,20505:8954451,42123399:0,0,0 +k1,20505:32583029,42123399:23628578 +g1,20505:32583029,42123399 +) +] +) +g1,20507:32583029,42229645 +g1,20507:6630773,42229645 +g1,20507:6630773,42229645 +g1,20507:32583029,42229645 +g1,20507:32583029,42229645 +) +h1,20507:6630773,42426253:0,0,0 +] +(1,20518:32583029,45706769:0,0,0 +g1,20518:32583029,45706769 +) +) +] +(1,20518:6630773,47279633:25952256,0,0 +h1,20518:6630773,47279633:25952256,0,0 +) +] +(1,20518:4262630,4025873:0,0,0 +[1,20518:-473656,4025873:0,0,0 +(1,20518:-473656,-710413:0,0,0 +(1,20518:-473656,-710413:0,0,0 +g1,20518:-473656,-710413 +) +g1,20518:-473656,-710413 ) ] ) ] !24282 -}343 -Input:3726:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3727:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3728:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3729:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}344 +Input:3730:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3731:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3732:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3733:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{344 -[1,20574:4262630,47279633:28320399,43253760,0 -(1,20574:4262630,4025873:0,0,0 -[1,20574:-473656,4025873:0,0,0 -(1,20574:-473656,-710413:0,0,0 -(1,20574:-473656,-644877:0,0,0 -k1,20574:-473656,-644877:-65536 +{345 +[1,20572:4262630,47279633:28320399,43253760,0 +(1,20572:4262630,4025873:0,0,0 +[1,20572:-473656,4025873:0,0,0 +(1,20572:-473656,-710413:0,0,0 +(1,20572:-473656,-644877:0,0,0 +k1,20572:-473656,-644877:-65536 ) -(1,20574:-473656,4736287:0,0,0 -k1,20574:-473656,4736287:5209943 +(1,20572:-473656,4736287:0,0,0 +k1,20572:-473656,4736287:5209943 ) -g1,20574:-473656,-710413 +g1,20572:-473656,-710413 ) ] ) -[1,20574:6630773,47279633:25952256,43253760,0 -[1,20574:6630773,4812305:25952256,786432,0 -(1,20574:6630773,4812305:25952256,485622,11795 -(1,20574:6630773,4812305:25952256,485622,11795 -g1,20574:3078558,4812305 -[1,20574:3078558,4812305:0,0,0 -(1,20574:3078558,2439708:0,1703936,0 -k1,20574:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20574:2537886,2439708:1179648,16384,0 +[1,20572:6630773,47279633:25952256,43253760,0 +[1,20572:6630773,4812305:25952256,786432,0 +(1,20572:6630773,4812305:25952256,485622,11795 +(1,20572:6630773,4812305:25952256,485622,11795 +g1,20572:3078558,4812305 +[1,20572:3078558,4812305:0,0,0 +(1,20572:3078558,2439708:0,1703936,0 +k1,20572:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20572:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20574:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20572:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20574:3078558,4812305:0,0,0 -(1,20574:3078558,2439708:0,1703936,0 -g1,20574:29030814,2439708 -g1,20574:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20574:36151628,1915420:16384,1179648,0 +[1,20572:3078558,4812305:0,0,0 +(1,20572:3078558,2439708:0,1703936,0 +g1,20572:29030814,2439708 +g1,20572:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20572:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20574:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20572:37855564,2439708:1179648,16384,0 ) ) -k1,20574:3078556,2439708:-34777008 +k1,20572:3078556,2439708:-34777008 ) ] -[1,20574:3078558,4812305:0,0,0 -(1,20574:3078558,49800853:0,16384,2228224 -k1,20574:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20574:2537886,49800853:1179648,16384,0 +[1,20572:3078558,4812305:0,0,0 +(1,20572:3078558,49800853:0,16384,2228224 +k1,20572:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20572:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20574:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20572:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20574:3078558,4812305:0,0,0 -(1,20574:3078558,49800853:0,16384,2228224 -g1,20574:29030814,49800853 -g1,20574:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20574:36151628,51504789:16384,1179648,0 +[1,20572:3078558,4812305:0,0,0 +(1,20572:3078558,49800853:0,16384,2228224 +g1,20572:29030814,49800853 +g1,20572:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20572:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20574:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20572:37855564,49800853:1179648,16384,0 ) ) -k1,20574:3078556,49800853:-34777008 +k1,20572:3078556,49800853:-34777008 ) ] -g1,20574:6630773,4812305 -g1,20574:6630773,4812305 -g1,20574:9560887,4812305 -k1,20574:31387651,4812305:21826764 -) -) -] -[1,20574:6630773,45706769:25952256,40108032,0 -(1,20574:6630773,45706769:25952256,40108032,0 -(1,20574:6630773,45706769:0,0,0 -g1,20574:6630773,45706769 -) -[1,20574:6630773,45706769:25952256,40108032,0 -(1,20512:6630773,15233532:25952256,9634795,0 -k1,20512:6760463,15233532:129690 -h1,20511:6760463,15233532:0,0,0 -(1,20511:6760463,15233532:25692876,9634795,0 -(1,20511:6760463,15233532:25692851,9634819,0 -(1,20511:6760463,15233532:25692851,9634819,0 -(1,20511:6760463,15233532:0,9634819,0 -(1,20511:6760463,15233532:0,14208860,0 -(1,20511:6760463,15233532:37890292,14208860,0 -) -k1,20511:6760463,15233532:-37890292 -) -) -g1,20511:32453314,15233532 -) -) -) -g1,20512:32453339,15233532 -k1,20512:32583029,15233532:129690 -) -(1,20520:6630773,17350350:25952256,555811,139132 -(1,20520:6630773,17350350:2450326,534184,12975 -g1,20520:6630773,17350350 -g1,20520:9081099,17350350 -) -g1,20520:11467986,17350350 -k1,20520:32583028,17350350:19307756 -g1,20520:32583028,17350350 -) -(1,20524:6630773,18608646:25952256,505283,126483 -k1,20523:8744712,18608646:261892 -k1,20523:10614202,18608646:261892 -k1,20523:11867654,18608646:261892 -k1,20523:12485406,18608646:261892 -k1,20523:14397495,18608646:261892 -k1,20523:16647749,18608646:261892 -k1,20523:21041685,18608646:261891 -k1,20523:22746024,18608646:261892 -k1,20523:24167903,18608646:261892 -k1,20523:26211064,18608646:261892 -k1,20523:27664401,18608646:261892 -k1,20523:29980191,18608646:261892 -k1,20523:31636034,18608646:261892 -k1,20524:32583029,18608646:0 -) -(1,20524:6630773,19473726:25952256,513147,134348 -k1,20523:8966627,19473726:251154 -k1,20523:10788679,19473726:251154 -k1,20523:13855915,19473726:251154 -k1,20523:14766361,19473726:251154 -k1,20523:19262937,19473726:251154 -k1,20523:21071882,19473726:251154 -k1,20523:23091854,19473726:251155 -k1,20523:24090774,19473726:251154 -k1,20523:26868996,19473726:251154 -k1,20523:27779442,19473726:251154 -k1,20523:28716758,19473726:251154 -k1,20523:30705927,19473726:251154 -k1,20523:31312941,19473726:251154 -k1,20523:32583029,19473726:0 -) -(1,20524:6630773,20338806:25952256,513147,134348 -k1,20523:7546475,20338806:256410 -k1,20523:9889550,20338806:256409 -k1,20523:12781163,20338806:256410 -k1,20523:13808275,20338806:256409 -k1,20523:17038053,20338806:256410 -k1,20523:19626888,20338806:256409 -k1,20523:22578794,20338806:256410 -k1,20523:24067280,20338806:256409 -k1,20523:26602377,20338806:256410 -h1,20523:28145095,20338806:0,0,0 -k1,20523:28401504,20338806:256409 -k1,20523:29467284,20338806:256410 -k1,20523:31221846,20338806:256409 -h1,20523:32417223,20338806:0,0,0 -k1,20523:32583029,20338806:0 -) -(1,20524:6630773,21203886:25952256,505283,134348 -k1,20523:8033861,21203886:211643 -k1,20523:8601363,21203886:211642 -k1,20523:9972993,21203886:211643 -k1,20523:11461932,21203886:211642 -k1,20523:12905652,21203886:211643 -k1,20523:15395982,21203886:211643 -h1,20523:16938700,21203886:0,0,0 -k1,20523:17150342,21203886:211642 -k1,20523:18171355,21203886:211643 -k1,20523:19881150,21203886:211642 -h1,20523:21076527,21203886:0,0,0 -k1,20523:21668934,21203886:211643 -k1,20523:22698465,21203886:211642 -k1,20523:23441605,21203886:211643 -k1,20523:24672333,21203886:211643 -k1,20523:26251056,21203886:211642 -k1,20523:27856650,21203886:211643 -k1,20523:29228279,21203886:211642 -k1,20523:31221191,21203886:211643 -k1,20523:32583029,21203886:0 -) -(1,20524:6630773,22068966:25952256,513147,134348 -k1,20523:7824720,22068966:202387 -k1,20523:11714162,22068966:202387 -k1,20523:13893770,22068966:202387 -k1,20523:15794195,22068966:202387 -k1,20523:19399867,22068966:202387 -k1,20523:23713983,22068966:202387 -k1,20523:24575662,22068966:202387 -k1,20523:26999720,22068966:202387 -k1,20523:28765141,22068966:202387 -k1,20523:30267107,22068966:202387 -k1,20523:31231022,22068966:202387 -k1,20523:32583029,22068966:0 -) -(1,20524:6630773,22934046:25952256,505283,126483 -g1,20523:8366166,22934046 -g1,20523:9669677,22934046 -g1,20523:10616672,22934046 -g1,20523:13166022,22934046 -g1,20523:14759202,22934046 -(1,20523:14759202,22934046:0,452978,122846 -r1,20574:19338010,22934046:4578808,575824,122846 -k1,20523:14759202,22934046:-4578808 -) -(1,20523:14759202,22934046:4578808,452978,122846 -k1,20523:14759202,22934046:3277 -h1,20523:19334733,22934046:0,411205,112570 -) -g1,20523:19537239,22934046 -g1,20523:20422630,22934046 -g1,20523:22697384,22934046 -g1,20523:23512651,22934046 -g1,20523:24730965,22934046 -g1,20523:27921913,22934046 -k1,20524:32583029,22934046:2740256 -g1,20524:32583029,22934046 -) -v1,20526:6630773,23618901:0,393216,0 -(1,20532:6630773,25329294:25952256,2103609,196608 -g1,20532:6630773,25329294 -g1,20532:6630773,25329294 -g1,20532:6434165,25329294 -(1,20532:6434165,25329294:0,2103609,196608 -r1,20574:32779637,25329294:26345472,2300217,196608 -k1,20532:6434165,25329294:-26345472 -) -(1,20532:6434165,25329294:26345472,2103609,196608 -[1,20532:6630773,25329294:25952256,1907001,0 -(1,20528:6630773,23846732:25952256,424439,106246 -(1,20527:6630773,23846732:0,0,0 -g1,20527:6630773,23846732 -g1,20527:6630773,23846732 -g1,20527:6303093,23846732 -(1,20527:6303093,23846732:0,0,0 -) -g1,20527:6630773,23846732 -) -g1,20528:7626635,23846732 -g1,20528:8622497,23846732 -g1,20528:10946175,23846732 -h1,20528:11278129,23846732:0,0,0 -k1,20528:32583029,23846732:21304900 -g1,20528:32583029,23846732 -) -(1,20529:6630773,24531587:25952256,431045,112852 -h1,20529:6630773,24531587:0,0,0 -g1,20529:6962727,24531587 -g1,20529:7294681,24531587 -g1,20529:14265714,24531587 -g1,20529:14929622,24531587 -g1,20529:17585254,24531587 -g1,20529:19576978,24531587 -g1,20529:20240886,24531587 -g1,20529:22232610,24531587 -h1,20529:22564564,24531587:0,0,0 -k1,20529:32583029,24531587:10018465 -g1,20529:32583029,24531587 -) -(1,20530:6630773,25216442:25952256,424439,112852 -h1,20530:6630773,25216442:0,0,0 -g1,20530:6962727,25216442 -g1,20530:7294681,25216442 -g1,20530:12937898,25216442 -g1,20530:13601806,25216442 -g1,20530:15593530,25216442 -g1,20530:17253300,25216442 -g1,20530:17917208,25216442 -g1,20530:19576978,25216442 -g1,20530:21900656,25216442 -g1,20530:22564564,25216442 -g1,20530:25552150,25216442 -g1,20530:27543874,25216442 -g1,20530:28207782,25216442 -h1,20530:29203644,25216442:0,0,0 -k1,20530:32583029,25216442:3379385 -g1,20530:32583029,25216442 -) -] -) -g1,20532:32583029,25329294 -g1,20532:6630773,25329294 -g1,20532:6630773,25329294 -g1,20532:32583029,25329294 -g1,20532:32583029,25329294 -) -h1,20532:6630773,25525902:0,0,0 -(1,20536:6630773,26390982:25952256,505283,134348 -h1,20535:6630773,26390982:983040,0,0 -k1,20535:8587797,26390982:156095 -k1,20535:10137842,26390982:156094 -k1,20535:11995907,26390982:156095 -k1,20535:15742719,26390982:156095 -k1,20535:17407453,26390982:156095 -k1,20535:21204072,26390982:156094 -k1,20535:23193864,26390982:156095 -k1,20535:24816655,26390982:156095 -k1,20535:25991835,26390982:156095 -k1,20535:27868904,26390982:156094 -k1,20535:31089463,26390982:156095 -k1,20535:32583029,26390982:0 -) -(1,20536:6630773,27256062:25952256,513147,126483 -g1,20535:7516164,27256062 -g1,20535:9920024,27256062 -g1,20535:11310698,27256062 -g1,20535:13542198,27256062 -g1,20535:16138734,27256062 -g1,20535:16989391,27256062 -g1,20535:18885347,27256062 -g1,20535:20800964,27256062 -g1,20535:21659485,27256062 -g1,20535:23723213,27256062 -k1,20536:32583029,27256062:4142535 -g1,20536:32583029,27256062 -) -(1,20538:6630773,28121142:25952256,513147,126483 -h1,20537:6630773,28121142:983040,0,0 -k1,20537:9730844,28121142:300373 -k1,20537:11747605,28121142:300373 -k1,20537:12707270,28121142:300373 -k1,20537:15633015,28121142:300373 -k1,20537:18155059,28121142:300373 -k1,20537:19106861,28121142:300374 -k1,20537:21181294,28121142:300373 -k1,20537:23089265,28121142:300373 -k1,20537:24381198,28121142:300373 -k1,20537:27893491,28121142:300373 -k1,20537:29801462,28121142:300373 -k1,20537:31293280,28121142:300373 -k1,20538:32583029,28121142:0 -) -(1,20538:6630773,28986222:25952256,513147,134348 -k1,20537:8707806,28986222:295764 -k1,20537:10195015,28986222:295764 -k1,20537:11595060,28986222:295763 -k1,20537:12638590,28986222:295764 -k1,20537:15975225,28986222:295764 -k1,20537:17664940,28986222:295764 -k1,20537:21400689,28986222:295764 -k1,20537:24078030,28986222:295763 -k1,20537:24989832,28986222:295764 -k1,20537:28196050,28986222:295764 -k1,20537:32583029,28986222:0 -) -(1,20538:6630773,29851302:25952256,513147,134348 -k1,20537:7992505,29851302:170287 -k1,20537:11111911,29851302:170287 -k1,20537:15252368,29851302:170286 -k1,20537:15910214,29851302:170258 -k1,20537:18698664,29851302:170287 -k1,20537:21530368,29851302:170287 -k1,20537:22359947,29851302:170287 -k1,20537:22886094,29851302:170287 -k1,20537:26266990,29851302:170287 -k1,20537:27714573,29851302:170286 -k1,20537:28416357,29851302:170287 -k1,20537:30662169,29851302:170287 -k1,20537:32583029,29851302:0 -) -(1,20538:6630773,30716382:25952256,513147,134348 -k1,20537:7856548,30716382:175888 -k1,20537:9051522,30716382:175889 -k1,20537:14053481,30716382:175888 -k1,20537:14888662,30716382:175889 -k1,20537:16083635,30716382:175888 -k1,20537:19169978,30716382:175889 -k1,20537:20293517,30716382:175888 -k1,20537:22586874,30716382:175889 -k1,20537:24585318,30716382:175888 -k1,20537:25780292,30716382:175889 -k1,20537:27707957,30716382:175888 -k1,20537:30296882,30716382:175889 -k1,20537:31088808,30716382:175888 -k1,20537:32583029,30716382:0 -) -(1,20538:6630773,31581462:25952256,355205,7863 -k1,20538:32583029,31581462:24807342 -g1,20538:32583029,31581462 -) -v1,20540:6630773,32266317:0,393216,0 -(1,20544:6630773,32607000:25952256,733899,196608 -g1,20544:6630773,32607000 -g1,20544:6630773,32607000 -g1,20544:6434165,32607000 -(1,20544:6434165,32607000:0,733899,196608 -r1,20574:32779637,32607000:26345472,930507,196608 -k1,20544:6434165,32607000:-26345472 -) -(1,20544:6434165,32607000:26345472,733899,196608 -[1,20544:6630773,32607000:25952256,537291,0 -(1,20542:6630773,32494148:25952256,424439,112852 -(1,20541:6630773,32494148:0,0,0 -g1,20541:6630773,32494148 -g1,20541:6630773,32494148 -g1,20541:6303093,32494148 -(1,20541:6303093,32494148:0,0,0 -) -g1,20541:6630773,32494148 -) -g1,20542:7626635,32494148 -g1,20542:8622497,32494148 -g1,20542:10946175,32494148 -g1,20542:11610083,32494148 -k1,20542:11610083,32494148:0 -h1,20542:17585254,32494148:0,0,0 -k1,20542:32583029,32494148:14997775 -g1,20542:32583029,32494148 -) -] -) -g1,20544:32583029,32607000 -g1,20544:6630773,32607000 -g1,20544:6630773,32607000 -g1,20544:32583029,32607000 -g1,20544:32583029,32607000 -) -h1,20544:6630773,32803608:0,0,0 -v1,20548:6630773,33488463:0,393216,0 -(1,20552:6630773,33806024:25952256,710777,196608 -g1,20552:6630773,33806024 -g1,20552:6630773,33806024 -g1,20552:6434165,33806024 -(1,20552:6434165,33806024:0,710777,196608 -r1,20574:32779637,33806024:26345472,907385,196608 -k1,20552:6434165,33806024:-26345472 -) -(1,20552:6434165,33806024:26345472,710777,196608 -[1,20552:6630773,33806024:25952256,514169,0 -(1,20550:6630773,33699778:25952256,407923,106246 -(1,20549:6630773,33699778:0,0,0 -g1,20549:6630773,33699778 -g1,20549:6630773,33699778 -g1,20549:6303093,33699778 -(1,20549:6303093,33699778:0,0,0 -) -g1,20549:6630773,33699778 -) -g1,20550:7626635,33699778 -g1,20550:8290543,33699778 -h1,20550:8954451,33699778:0,0,0 -k1,20550:32583029,33699778:23628578 -g1,20550:32583029,33699778 -) -] -) -g1,20552:32583029,33806024 -g1,20552:6630773,33806024 -g1,20552:6630773,33806024 -g1,20552:32583029,33806024 -g1,20552:32583029,33806024 +g1,20572:6630773,4812305 +g1,20572:6630773,4812305 +g1,20572:9560887,4812305 +k1,20572:31387651,4812305:21826764 +) +) +] +[1,20572:6630773,45706769:25952256,40108032,0 +(1,20572:6630773,45706769:25952256,40108032,0 +(1,20572:6630773,45706769:0,0,0 +g1,20572:6630773,45706769 +) +[1,20572:6630773,45706769:25952256,40108032,0 +(1,20510:6630773,15233532:25952256,9634795,0 +k1,20510:6760463,15233532:129690 +h1,20509:6760463,15233532:0,0,0 +(1,20509:6760463,15233532:25692876,9634795,0 +(1,20509:6760463,15233532:25692851,9634819,0 +(1,20509:6760463,15233532:25692851,9634819,0 +(1,20509:6760463,15233532:0,9634819,0 +(1,20509:6760463,15233532:0,14208860,0 +(1,20509:6760463,15233532:37890292,14208860,0 +) +k1,20509:6760463,15233532:-37890292 +) +) +g1,20509:32453314,15233532 +) +) +) +g1,20510:32453339,15233532 +k1,20510:32583029,15233532:129690 +) +(1,20518:6630773,17350350:25952256,555811,139132 +(1,20518:6630773,17350350:2450326,534184,12975 +g1,20518:6630773,17350350 +g1,20518:9081099,17350350 +) +g1,20518:11467986,17350350 +k1,20518:32583028,17350350:19307756 +g1,20518:32583028,17350350 +) +(1,20522:6630773,18608646:25952256,505283,126483 +k1,20521:8744712,18608646:261892 +k1,20521:10614202,18608646:261892 +k1,20521:11867654,18608646:261892 +k1,20521:12485406,18608646:261892 +k1,20521:14397495,18608646:261892 +k1,20521:16647749,18608646:261892 +k1,20521:21041685,18608646:261891 +k1,20521:22746024,18608646:261892 +k1,20521:24167903,18608646:261892 +k1,20521:26211064,18608646:261892 +k1,20521:27664401,18608646:261892 +k1,20521:29980191,18608646:261892 +k1,20521:31636034,18608646:261892 +k1,20522:32583029,18608646:0 +) +(1,20522:6630773,19473726:25952256,513147,134348 +k1,20521:8966627,19473726:251154 +k1,20521:10788679,19473726:251154 +k1,20521:13855915,19473726:251154 +k1,20521:14766361,19473726:251154 +k1,20521:19262937,19473726:251154 +k1,20521:21071882,19473726:251154 +k1,20521:23091854,19473726:251155 +k1,20521:24090774,19473726:251154 +k1,20521:26868996,19473726:251154 +k1,20521:27779442,19473726:251154 +k1,20521:28716758,19473726:251154 +k1,20521:30705927,19473726:251154 +k1,20521:31312941,19473726:251154 +k1,20521:32583029,19473726:0 +) +(1,20522:6630773,20338806:25952256,513147,134348 +k1,20521:7546475,20338806:256410 +k1,20521:9889550,20338806:256409 +k1,20521:12781163,20338806:256410 +k1,20521:13808275,20338806:256409 +k1,20521:17038053,20338806:256410 +k1,20521:19626888,20338806:256409 +k1,20521:22578794,20338806:256410 +k1,20521:24067280,20338806:256409 +k1,20521:26602377,20338806:256410 +h1,20521:28145095,20338806:0,0,0 +k1,20521:28401504,20338806:256409 +k1,20521:29467284,20338806:256410 +k1,20521:31221846,20338806:256409 +h1,20521:32417223,20338806:0,0,0 +k1,20521:32583029,20338806:0 +) +(1,20522:6630773,21203886:25952256,505283,134348 +k1,20521:8033861,21203886:211643 +k1,20521:8601363,21203886:211642 +k1,20521:9972993,21203886:211643 +k1,20521:11461932,21203886:211642 +k1,20521:12905652,21203886:211643 +k1,20521:15395982,21203886:211643 +h1,20521:16938700,21203886:0,0,0 +k1,20521:17150342,21203886:211642 +k1,20521:18171355,21203886:211643 +k1,20521:19881150,21203886:211642 +h1,20521:21076527,21203886:0,0,0 +k1,20521:21668934,21203886:211643 +k1,20521:22698465,21203886:211642 +k1,20521:23441605,21203886:211643 +k1,20521:24672333,21203886:211643 +k1,20521:26251056,21203886:211642 +k1,20521:27856650,21203886:211643 +k1,20521:29228279,21203886:211642 +k1,20521:31221191,21203886:211643 +k1,20521:32583029,21203886:0 +) +(1,20522:6630773,22068966:25952256,513147,134348 +k1,20521:7824720,22068966:202387 +k1,20521:11714162,22068966:202387 +k1,20521:13893770,22068966:202387 +k1,20521:15794195,22068966:202387 +k1,20521:19399867,22068966:202387 +k1,20521:23713983,22068966:202387 +k1,20521:24575662,22068966:202387 +k1,20521:26999720,22068966:202387 +k1,20521:28765141,22068966:202387 +k1,20521:30267107,22068966:202387 +k1,20521:31231022,22068966:202387 +k1,20521:32583029,22068966:0 +) +(1,20522:6630773,22934046:25952256,505283,126483 +g1,20521:8366166,22934046 +g1,20521:9669677,22934046 +g1,20521:10616672,22934046 +g1,20521:13166022,22934046 +g1,20521:14759202,22934046 +(1,20521:14759202,22934046:0,452978,122846 +r1,20572:19338010,22934046:4578808,575824,122846 +k1,20521:14759202,22934046:-4578808 +) +(1,20521:14759202,22934046:4578808,452978,122846 +k1,20521:14759202,22934046:3277 +h1,20521:19334733,22934046:0,411205,112570 +) +g1,20521:19537239,22934046 +g1,20521:20422630,22934046 +g1,20521:22697384,22934046 +g1,20521:23512651,22934046 +g1,20521:24730965,22934046 +g1,20521:27921913,22934046 +k1,20522:32583029,22934046:2740256 +g1,20522:32583029,22934046 +) +v1,20524:6630773,23618901:0,393216,0 +(1,20530:6630773,25329294:25952256,2103609,196608 +g1,20530:6630773,25329294 +g1,20530:6630773,25329294 +g1,20530:6434165,25329294 +(1,20530:6434165,25329294:0,2103609,196608 +r1,20572:32779637,25329294:26345472,2300217,196608 +k1,20530:6434165,25329294:-26345472 +) +(1,20530:6434165,25329294:26345472,2103609,196608 +[1,20530:6630773,25329294:25952256,1907001,0 +(1,20526:6630773,23846732:25952256,424439,106246 +(1,20525:6630773,23846732:0,0,0 +g1,20525:6630773,23846732 +g1,20525:6630773,23846732 +g1,20525:6303093,23846732 +(1,20525:6303093,23846732:0,0,0 +) +g1,20525:6630773,23846732 +) +g1,20526:7626635,23846732 +g1,20526:8622497,23846732 +g1,20526:10946175,23846732 +h1,20526:11278129,23846732:0,0,0 +k1,20526:32583029,23846732:21304900 +g1,20526:32583029,23846732 +) +(1,20527:6630773,24531587:25952256,431045,112852 +h1,20527:6630773,24531587:0,0,0 +g1,20527:6962727,24531587 +g1,20527:7294681,24531587 +g1,20527:14265714,24531587 +g1,20527:14929622,24531587 +g1,20527:17585254,24531587 +g1,20527:19576978,24531587 +g1,20527:20240886,24531587 +g1,20527:22232610,24531587 +h1,20527:22564564,24531587:0,0,0 +k1,20527:32583029,24531587:10018465 +g1,20527:32583029,24531587 +) +(1,20528:6630773,25216442:25952256,424439,112852 +h1,20528:6630773,25216442:0,0,0 +g1,20528:6962727,25216442 +g1,20528:7294681,25216442 +g1,20528:12937898,25216442 +g1,20528:13601806,25216442 +g1,20528:15593530,25216442 +g1,20528:17253300,25216442 +g1,20528:17917208,25216442 +g1,20528:19576978,25216442 +g1,20528:21900656,25216442 +g1,20528:22564564,25216442 +g1,20528:25552150,25216442 +g1,20528:27543874,25216442 +g1,20528:28207782,25216442 +h1,20528:29203644,25216442:0,0,0 +k1,20528:32583029,25216442:3379385 +g1,20528:32583029,25216442 +) +] +) +g1,20530:32583029,25329294 +g1,20530:6630773,25329294 +g1,20530:6630773,25329294 +g1,20530:32583029,25329294 +g1,20530:32583029,25329294 +) +h1,20530:6630773,25525902:0,0,0 +(1,20534:6630773,26390982:25952256,505283,134348 +h1,20533:6630773,26390982:983040,0,0 +k1,20533:8587797,26390982:156095 +k1,20533:10137842,26390982:156094 +k1,20533:11995907,26390982:156095 +k1,20533:15742719,26390982:156095 +k1,20533:17407453,26390982:156095 +k1,20533:21204072,26390982:156094 +k1,20533:23193864,26390982:156095 +k1,20533:24816655,26390982:156095 +k1,20533:25991835,26390982:156095 +k1,20533:27868904,26390982:156094 +k1,20533:31089463,26390982:156095 +k1,20533:32583029,26390982:0 +) +(1,20534:6630773,27256062:25952256,513147,126483 +g1,20533:7516164,27256062 +g1,20533:9920024,27256062 +g1,20533:11310698,27256062 +g1,20533:13542198,27256062 +g1,20533:16138734,27256062 +g1,20533:16989391,27256062 +g1,20533:18885347,27256062 +g1,20533:20800964,27256062 +g1,20533:21659485,27256062 +g1,20533:23723213,27256062 +k1,20534:32583029,27256062:4142535 +g1,20534:32583029,27256062 +) +(1,20536:6630773,28121142:25952256,513147,126483 +h1,20535:6630773,28121142:983040,0,0 +k1,20535:9730844,28121142:300373 +k1,20535:11747605,28121142:300373 +k1,20535:12707270,28121142:300373 +k1,20535:15633015,28121142:300373 +k1,20535:18155059,28121142:300373 +k1,20535:19106861,28121142:300374 +k1,20535:21181294,28121142:300373 +k1,20535:23089265,28121142:300373 +k1,20535:24381198,28121142:300373 +k1,20535:27893491,28121142:300373 +k1,20535:29801462,28121142:300373 +k1,20535:31293280,28121142:300373 +k1,20536:32583029,28121142:0 +) +(1,20536:6630773,28986222:25952256,513147,134348 +k1,20535:8707806,28986222:295764 +k1,20535:10195015,28986222:295764 +k1,20535:11595060,28986222:295763 +k1,20535:12638590,28986222:295764 +k1,20535:15975225,28986222:295764 +k1,20535:17664940,28986222:295764 +k1,20535:21400689,28986222:295764 +k1,20535:24078030,28986222:295763 +k1,20535:24989832,28986222:295764 +k1,20535:28196050,28986222:295764 +k1,20535:32583029,28986222:0 +) +(1,20536:6630773,29851302:25952256,513147,134348 +k1,20535:7992505,29851302:170287 +k1,20535:11111911,29851302:170287 +k1,20535:15252368,29851302:170286 +k1,20535:15910214,29851302:170258 +k1,20535:18698664,29851302:170287 +k1,20535:21530368,29851302:170287 +k1,20535:22359947,29851302:170287 +k1,20535:22886094,29851302:170287 +k1,20535:26266990,29851302:170287 +k1,20535:27714573,29851302:170286 +k1,20535:28416357,29851302:170287 +k1,20535:30662169,29851302:170287 +k1,20535:32583029,29851302:0 +) +(1,20536:6630773,30716382:25952256,513147,134348 +k1,20535:7856548,30716382:175888 +k1,20535:9051522,30716382:175889 +k1,20535:14053481,30716382:175888 +k1,20535:14888662,30716382:175889 +k1,20535:16083635,30716382:175888 +k1,20535:19169978,30716382:175889 +k1,20535:20293517,30716382:175888 +k1,20535:22586874,30716382:175889 +k1,20535:24585318,30716382:175888 +k1,20535:25780292,30716382:175889 +k1,20535:27707957,30716382:175888 +k1,20535:30296882,30716382:175889 +k1,20535:31088808,30716382:175888 +k1,20535:32583029,30716382:0 +) +(1,20536:6630773,31581462:25952256,355205,7863 +k1,20536:32583029,31581462:24807342 +g1,20536:32583029,31581462 +) +v1,20538:6630773,32266317:0,393216,0 +(1,20542:6630773,32607000:25952256,733899,196608 +g1,20542:6630773,32607000 +g1,20542:6630773,32607000 +g1,20542:6434165,32607000 +(1,20542:6434165,32607000:0,733899,196608 +r1,20572:32779637,32607000:26345472,930507,196608 +k1,20542:6434165,32607000:-26345472 +) +(1,20542:6434165,32607000:26345472,733899,196608 +[1,20542:6630773,32607000:25952256,537291,0 +(1,20540:6630773,32494148:25952256,424439,112852 +(1,20539:6630773,32494148:0,0,0 +g1,20539:6630773,32494148 +g1,20539:6630773,32494148 +g1,20539:6303093,32494148 +(1,20539:6303093,32494148:0,0,0 +) +g1,20539:6630773,32494148 +) +g1,20540:7626635,32494148 +g1,20540:8622497,32494148 +g1,20540:10946175,32494148 +g1,20540:11610083,32494148 +k1,20540:11610083,32494148:0 +h1,20540:17585254,32494148:0,0,0 +k1,20540:32583029,32494148:14997775 +g1,20540:32583029,32494148 +) +] +) +g1,20542:32583029,32607000 +g1,20542:6630773,32607000 +g1,20542:6630773,32607000 +g1,20542:32583029,32607000 +g1,20542:32583029,32607000 +) +h1,20542:6630773,32803608:0,0,0 +v1,20546:6630773,33488463:0,393216,0 +(1,20550:6630773,33806024:25952256,710777,196608 +g1,20550:6630773,33806024 +g1,20550:6630773,33806024 +g1,20550:6434165,33806024 +(1,20550:6434165,33806024:0,710777,196608 +r1,20572:32779637,33806024:26345472,907385,196608 +k1,20550:6434165,33806024:-26345472 +) +(1,20550:6434165,33806024:26345472,710777,196608 +[1,20550:6630773,33806024:25952256,514169,0 +(1,20548:6630773,33699778:25952256,407923,106246 +(1,20547:6630773,33699778:0,0,0 +g1,20547:6630773,33699778 +g1,20547:6630773,33699778 +g1,20547:6303093,33699778 +(1,20547:6303093,33699778:0,0,0 +) +g1,20547:6630773,33699778 +) +g1,20548:7626635,33699778 +g1,20548:8290543,33699778 +h1,20548:8954451,33699778:0,0,0 +k1,20548:32583029,33699778:23628578 +g1,20548:32583029,33699778 +) +] +) +g1,20550:32583029,33806024 +g1,20550:6630773,33806024 +g1,20550:6630773,33806024 +g1,20550:32583029,33806024 +g1,20550:32583029,33806024 ) -h1,20552:6630773,34002632:0,0,0 -(1,20555:6630773,43702963:25952256,9634795,0 -k1,20555:6760463,43702963:129690 -h1,20554:6760463,43702963:0,0,0 -(1,20554:6760463,43702963:25692876,9634795,0 -(1,20554:6760463,43702963:25692851,9634819,0 -(1,20554:6760463,43702963:25692851,9634819,0 -(1,20554:6760463,43702963:0,9634819,0 -(1,20554:6760463,43702963:0,14208860,0 -(1,20554:6760463,43702963:37890292,14208860,0 +h1,20550:6630773,34002632:0,0,0 +(1,20553:6630773,43702963:25952256,9634795,0 +k1,20553:6760463,43702963:129690 +h1,20552:6760463,43702963:0,0,0 +(1,20552:6760463,43702963:25692876,9634795,0 +(1,20552:6760463,43702963:25692851,9634819,0 +(1,20552:6760463,43702963:25692851,9634819,0 +(1,20552:6760463,43702963:0,9634819,0 +(1,20552:6760463,43702963:0,14208860,0 +(1,20552:6760463,43702963:37890292,14208860,0 ) -k1,20554:6760463,43702963:-37890292 +k1,20552:6760463,43702963:-37890292 ) ) -g1,20554:32453314,43702963 +g1,20552:32453314,43702963 ) ) ) -g1,20555:32453339,43702963 -k1,20555:32583029,43702963:129690 +g1,20553:32453339,43702963 +k1,20553:32583029,43702963:129690 ) ] -(1,20574:32583029,45706769:0,0,0 -g1,20574:32583029,45706769 +(1,20572:32583029,45706769:0,0,0 +g1,20572:32583029,45706769 ) ) ] -(1,20574:6630773,47279633:25952256,0,0 -h1,20574:6630773,47279633:25952256,0,0 +(1,20572:6630773,47279633:25952256,0,0 +h1,20572:6630773,47279633:25952256,0,0 ) ] -(1,20574:4262630,4025873:0,0,0 -[1,20574:-473656,4025873:0,0,0 -(1,20574:-473656,-710413:0,0,0 -(1,20574:-473656,-710413:0,0,0 -g1,20574:-473656,-710413 +(1,20572:4262630,4025873:0,0,0 +[1,20572:-473656,4025873:0,0,0 +(1,20572:-473656,-710413:0,0,0 +(1,20572:-473656,-710413:0,0,0 +g1,20572:-473656,-710413 ) -g1,20574:-473656,-710413 +g1,20572:-473656,-710413 ) ] ) ] !14935 -}344 -Input:3730:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3731:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3732:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3733:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}345 Input:3734:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3735:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3736:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -357340,6302 +357544,6302 @@ Input:3743:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3744:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3745:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3746:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3747:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3748:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3749:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{345 -[1,20610:4262630,47279633:28320399,43253760,0 -(1,20610:4262630,4025873:0,0,0 -[1,20610:-473656,4025873:0,0,0 -(1,20610:-473656,-710413:0,0,0 -(1,20610:-473656,-644877:0,0,0 -k1,20610:-473656,-644877:-65536 +{346 +[1,20608:4262630,47279633:28320399,43253760,0 +(1,20608:4262630,4025873:0,0,0 +[1,20608:-473656,4025873:0,0,0 +(1,20608:-473656,-710413:0,0,0 +(1,20608:-473656,-644877:0,0,0 +k1,20608:-473656,-644877:-65536 ) -(1,20610:-473656,4736287:0,0,0 -k1,20610:-473656,4736287:5209943 +(1,20608:-473656,4736287:0,0,0 +k1,20608:-473656,4736287:5209943 ) -g1,20610:-473656,-710413 +g1,20608:-473656,-710413 ) ] ) -[1,20610:6630773,47279633:25952256,43253760,0 -[1,20610:6630773,4812305:25952256,786432,0 -(1,20610:6630773,4812305:25952256,513147,126483 -(1,20610:6630773,4812305:25952256,513147,126483 -g1,20610:3078558,4812305 -[1,20610:3078558,4812305:0,0,0 -(1,20610:3078558,2439708:0,1703936,0 -k1,20610:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20610:2537886,2439708:1179648,16384,0 +[1,20608:6630773,47279633:25952256,43253760,0 +[1,20608:6630773,4812305:25952256,786432,0 +(1,20608:6630773,4812305:25952256,513147,126483 +(1,20608:6630773,4812305:25952256,513147,126483 +g1,20608:3078558,4812305 +[1,20608:3078558,4812305:0,0,0 +(1,20608:3078558,2439708:0,1703936,0 +k1,20608:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20608:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20610:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20608:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20610:3078558,4812305:0,0,0 -(1,20610:3078558,2439708:0,1703936,0 -g1,20610:29030814,2439708 -g1,20610:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20610:36151628,1915420:16384,1179648,0 +[1,20608:3078558,4812305:0,0,0 +(1,20608:3078558,2439708:0,1703936,0 +g1,20608:29030814,2439708 +g1,20608:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20608:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20610:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20608:37855564,2439708:1179648,16384,0 ) ) -k1,20610:3078556,2439708:-34777008 +k1,20608:3078556,2439708:-34777008 ) ] -[1,20610:3078558,4812305:0,0,0 -(1,20610:3078558,49800853:0,16384,2228224 -k1,20610:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20610:2537886,49800853:1179648,16384,0 +[1,20608:3078558,4812305:0,0,0 +(1,20608:3078558,49800853:0,16384,2228224 +k1,20608:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20608:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20610:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20608:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20610:3078558,4812305:0,0,0 -(1,20610:3078558,49800853:0,16384,2228224 -g1,20610:29030814,49800853 -g1,20610:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20610:36151628,51504789:16384,1179648,0 +[1,20608:3078558,4812305:0,0,0 +(1,20608:3078558,49800853:0,16384,2228224 +g1,20608:29030814,49800853 +g1,20608:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20608:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20610:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20608:37855564,49800853:1179648,16384,0 ) ) -k1,20610:3078556,49800853:-34777008 +k1,20608:3078556,49800853:-34777008 ) ] -g1,20610:6630773,4812305 -k1,20610:21386205,4812305:13560055 -g1,20610:21999622,4812305 -g1,20610:25611966,4812305 -g1,20610:28956923,4812305 -g1,20610:29772190,4812305 +g1,20608:6630773,4812305 +k1,20608:21386205,4812305:13560055 +g1,20608:21999622,4812305 +g1,20608:25611966,4812305 +g1,20608:28956923,4812305 +g1,20608:29772190,4812305 ) ) ] -[1,20610:6630773,45706769:25952256,40108032,0 -(1,20610:6630773,45706769:25952256,40108032,0 -(1,20610:6630773,45706769:0,0,0 -g1,20610:6630773,45706769 +[1,20608:6630773,45706769:25952256,40108032,0 +(1,20608:6630773,45706769:25952256,40108032,0 +(1,20608:6630773,45706769:0,0,0 +g1,20608:6630773,45706769 ) -[1,20610:6630773,45706769:25952256,40108032,0 -[1,20605:6630773,15993421:25952256,10394684,0 -[1,20605:6630773,15993421:25952256,10394684,0 -(1,20592:6630773,7771581:25952256,2172844,0 -k1,20592:9225609,7771581:2594836 -h1,20582:9225609,7771581:0,0,0 -(1,20592:9225609,7771581:20762584,2172844,0 -(1,20592:9225609,7771581:0,2172844,0 -(1,20592:9225609,7771581:0,2673868,0 -(1,20592:9225609,7771581:25550112,2673868,0 -(1,20592:9225609,7771581:25550112,2673868,0 -(1,20592:9225609,7771581:25550112,2673868,0 -g1,20592:11436333,7771581 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3932160,505283,7863 -(1,20592:11436333,6434647:3932160,505283,7863 -[1,20592:11436333,6434647:3932160,505283,7863 -(1,20592:11436333,6434647:3932160,505283,7863 -k1,20592:12711664,6434647:1275331 -h1,20592:12711664,6434647:0,0,0 -h1,20592:12711664,6434647:0,0,0 -k1,20592:14093163,6434647:0 -k1,20592:15368493,6434647:1275330 +[1,20608:6630773,45706769:25952256,40108032,0 +[1,20603:6630773,15993421:25952256,10394684,0 +[1,20603:6630773,15993421:25952256,10394684,0 +(1,20590:6630773,7771581:25952256,2172844,0 +k1,20590:9225609,7771581:2594836 +h1,20580:9225609,7771581:0,0,0 +(1,20590:9225609,7771581:20762584,2172844,0 +(1,20590:9225609,7771581:0,2172844,0 +(1,20590:9225609,7771581:0,2673868,0 +(1,20590:9225609,7771581:25550112,2673868,0 +(1,20590:9225609,7771581:25550112,2673868,0 +(1,20590:9225609,7771581:25550112,2673868,0 +g1,20590:11436333,7771581 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3932160,505283,7863 +(1,20590:11436333,6434647:3932160,505283,7863 +[1,20590:11436333,6434647:3932160,505283,7863 +(1,20590:11436333,6434647:3932160,505283,7863 +k1,20590:12711664,6434647:1275331 +h1,20590:12711664,6434647:0,0,0 +h1,20590:12711664,6434647:0,0,0 +k1,20590:14093163,6434647:0 +k1,20590:15368493,6434647:1275330 ) ] ) -g1,20592:15368493,6434647 +g1,20590:15368493,6434647 ) ) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3932160,473825,7863 -(1,20592:11436333,6434647:3932160,473825,7863 -[1,20592:11436333,6434647:3932160,473825,7863 -(1,20592:11436333,6434647:3932160,473825,7863 -k1,20592:12163127,6434647:726794 -h1,20592:12163127,6434647:0,0,0 -h1,20592:12163127,6434647:0,0,0 -k1,20592:14641699,6434647:0 -k1,20592:15368493,6434647:726794 -) -] -) -g1,20592:15368493,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3932160,416809,134348 -(1,20592:11436333,6434647:3932160,416809,134348 -[1,20592:11436333,6434647:3932160,416809,134348 -(1,20592:11436333,6434647:3932160,416809,134348 -k1,20592:11906881,6434647:470548 -h1,20592:11906881,6434647:0,0,0 -h1,20592:11906881,6434647:0,0,0 -k1,20592:14897945,6434647:0 -k1,20592:15368493,6434647:470548 -) -] -) -g1,20592:15368493,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3932160,505283,991563 -(1,20592:11436333,6434647:3932160,505283,991563 -[1,20592:11436333,6434647:3932160,505283,991563 -(1,20592:11436333,6434647:3932160,505283,7863 -k1,20592:11970779,6434647:534446 -h1,20592:11970779,6434647:0,0,0 -h1,20592:11970779,6434647:0,0,0 -k1,20592:14834047,6434647:0 -k1,20592:15368493,6434647:534446 -) -(1,20592:11436333,7299727:3932160,505283,126483 -k1,20592:12777527,7299727:1341194 -h1,20592:12777527,7299727:0,0,0 -k1,20592:14027299,7299727:0 -k1,20592:15368493,7299727:1341194 -) -] -) -g1,20592:15368493,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3336179,513147,138281 -(1,20592:11436333,6434647:3336179,513147,138281 -g1,20592:11643427,6434647 -g1,20592:11850521,6434647 -g1,20592:12057615,6434647 -g1,20592:12264709,6434647 -g1,20592:12471803,6434647 -g1,20592:12678897,6434647 -$1,20592:12678897,6434647 -g1,20592:13363618,6434647 -g1,20592:14220699,6434647 -$1,20592:14772512,6434647 -) -g1,20592:14772512,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:3336179,513147,138281 -(1,20592:11436333,6434647:3336179,513147,138281 -g1,20592:11643427,6434647 -g1,20592:11850521,6434647 -g1,20592:12057615,6434647 -g1,20592:12264709,6434647 -g1,20592:12471803,6434647 -g1,20592:12678897,6434647 -$1,20592:12678897,6434647 -g1,20592:13412770,6434647 -g1,20592:14269851,6434647 -$1,20592:14772512,6434647 -) -g1,20592:14772512,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -(1,20592:11436333,6434647:0,0,0 -(1,20592:11436333,6434647:0,0,0 -h1,20592:11436333,6434647:0,0,0 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -) -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -g1,20592:11436333,6434647 -) -g1,20592:11436333,6434647 -) -) -) -) -k1,20592:9225609,7771581:-25550112 -) -) -g1,20592:29988193,7771581 -) -g1,20592:29988193,7771581 -k1,20592:32583029,7771581:2594836 -) -(1,20604:6630773,10878313:25952256,2172844,0 -k1,20604:9225609,10878313:2594836 -h1,20593:9225609,10878313:0,0,0 -(1,20603:9225609,10878313:20762584,2172844,0 -(1,20603:9225609,10878313:0,2172844,0 -(1,20603:9225609,10878313:0,2673868,0 -(1,20603:9225609,10878313:25550112,2673868,0 -(1,20603:9225609,10878313:25550112,2673868,0 -(1,20603:9225609,10878313:25550112,2673868,0 -g1,20603:11436333,10878313 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3932160,505283,7863 -(1,20603:11436333,9541379:3932160,505283,7863 -[1,20603:11436333,9541379:3932160,505283,7863 -(1,20603:11436333,9541379:3932160,505283,7863 -k1,20603:12711664,9541379:1275331 -h1,20603:12711664,9541379:0,0,0 -h1,20603:12711664,9541379:0,0,0 -k1,20603:14093163,9541379:0 -k1,20603:15368493,9541379:1275330 -) -] -) -g1,20603:15368493,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3932160,473825,7863 -(1,20603:11436333,9541379:3932160,473825,7863 -[1,20603:11436333,9541379:3932160,473825,7863 -(1,20603:11436333,9541379:3932160,473825,7863 -k1,20603:12163127,9541379:726794 -h1,20603:12163127,9541379:0,0,0 -h1,20603:12163127,9541379:0,0,0 -k1,20603:14641699,9541379:0 -k1,20603:15368493,9541379:726794 -) -] -) -g1,20603:15368493,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3932160,416809,134348 -(1,20603:11436333,9541379:3932160,416809,134348 -[1,20603:11436333,9541379:3932160,416809,134348 -(1,20603:11436333,9541379:3932160,416809,134348 -k1,20603:11906881,9541379:470548 -h1,20603:11906881,9541379:0,0,0 -h1,20603:11906881,9541379:0,0,0 -k1,20603:14897945,9541379:0 -k1,20603:15368493,9541379:470548 -) -] -) -g1,20603:15368493,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3932160,505283,991563 -(1,20603:11436333,9541379:3932160,505283,991563 -[1,20603:11436333,9541379:3932160,505283,991563 -(1,20603:11436333,9541379:3932160,505283,7863 -k1,20603:11970779,9541379:534446 -h1,20603:11970779,9541379:0,0,0 -h1,20603:11970779,9541379:0,0,0 -k1,20603:14834047,9541379:0 -k1,20603:15368493,9541379:534446 -) -(1,20603:11436333,10406459:3932160,505283,126483 -k1,20603:12777527,10406459:1341194 -h1,20603:12777527,10406459:0,0,0 -k1,20603:14027299,10406459:0 -k1,20603:15368493,10406459:1341194 -) -] -) -g1,20603:15368493,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -h1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3336179,513147,138281 -(1,20603:11436333,9541379:3336179,513147,138281 -g1,20603:11643427,9541379 -g1,20603:11850521,9541379 -g1,20603:12057615,9541379 -g1,20603:12264709,9541379 -g1,20603:12471803,9541379 -g1,20603:12678897,9541379 -$1,20603:12678897,9541379 -g1,20603:13363618,9541379 -g1,20603:14220699,9541379 -$1,20603:14772512,9541379 -) -g1,20603:14772512,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:0,0,0 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -(1,20603:11436333,9541379:0,0,0 -(1,20603:11436333,9541379:3336179,513147,138281 -(1,20603:11436333,9541379:3336179,513147,138281 -g1,20603:11643427,9541379 -g1,20603:11850521,9541379 -g1,20603:12057615,9541379 -g1,20603:12264709,9541379 -g1,20603:12471803,9541379 -g1,20603:12678897,9541379 -$1,20603:12678897,9541379 -g1,20603:13412770,9541379 -g1,20603:14269851,9541379 -$1,20603:14772512,9541379 -) -g1,20603:14772512,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -) -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -g1,20603:11436333,9541379 -) -g1,20603:11436333,9541379 -) -) -) -) -k1,20603:9225609,10878313:-25550112 -) -) -g1,20603:29988193,10878313 -) -g1,20604:29988193,10878313 -k1,20604:32583029,10878313:2594836 -) -(1,20604:6630773,12398753:25952256,505283,134348 -h1,20604:6630773,12398753:0,0,0 -g1,20604:8923222,12398753 -k1,20604:32583029,12398753:22669558 -g1,20604:32583029,12398753 -) -(1,20604:6630773,13263833:25952256,513147,134348 -h1,20604:6630773,13263833:0,0,0 -k1,20604:9163056,13263833:157258 -k1,20604:11382077,13263833:157258 -k1,20604:12789108,13263833:157259 -k1,20604:15736234,13263833:157258 -k1,20604:18138755,13263833:157258 -k1,20604:21470577,13263833:157258 -k1,20604:22243874,13263833:157259 -k1,20604:24924268,13263833:157258 -k1,20604:26475477,13263833:157258 -(1,20604:26475477,13263833:0,452978,115847 -r1,20610:32461132,13263833:5985655,568825,115847 -k1,20604:26475477,13263833:-5985655 -) -(1,20604:26475477,13263833:5985655,452978,115847 -g1,20604:30699296,13263833 -g1,20604:31402720,13263833 -h1,20604:32457855,13263833:0,411205,112570 -) -k1,20604:32583029,13263833:0 -) -(1,20604:6630773,14128913:25952256,513147,134348 -k1,20604:9211959,14128913:257935 -k1,20604:12259761,14128913:257934 -k1,20604:14762959,14128913:257935 -k1,20604:18195458,14128913:257935 -k1,20604:19069430,14128913:257934 -k1,20604:22317117,14128913:257935 -k1,20604:23969002,14128913:257934 -(1,20604:23969002,14128913:0,452978,115847 -r1,20610:29954657,14128913:5985655,568825,115847 -k1,20604:23969002,14128913:-5985655 -) -(1,20604:23969002,14128913:5985655,452978,115847 -g1,20604:28192821,14128913 -g1,20604:28896245,14128913 -h1,20604:29951380,14128913:0,411205,112570 -) -k1,20604:30386262,14128913:257935 -k1,20604:32583029,14128913:0 -) -(1,20604:6630773,14993993:25952256,513147,134348 -k1,20604:9443812,14993993:171938 -k1,20604:11837421,14993993:171938 -k1,20604:15183923,14993993:171938 -k1,20604:16849428,14993993:171939 -k1,20604:17707528,14993993:171938 -(1,20604:17707528,14993993:0,452978,115847 -r1,20610:19120929,14993993:1413401,568825,115847 -k1,20604:17707528,14993993:-1413401 -) -(1,20604:17707528,14993993:1413401,452978,115847 -k1,20604:17707528,14993993:3277 -h1,20604:19117652,14993993:0,411205,112570 -) -k1,20604:19292867,14993993:171938 -k1,20604:20656250,14993993:171938 -(1,20604:20656250,14993993:0,452978,115847 -r1,20610:22069651,14993993:1413401,568825,115847 -k1,20604:20656250,14993993:-1413401 -) -(1,20604:20656250,14993993:1413401,452978,115847 -k1,20604:20656250,14993993:3277 -h1,20604:22066374,14993993:0,411205,112570 -) -k1,20604:22241589,14993993:171938 -k1,20604:23405087,14993993:171938 -k1,20604:24862842,14993993:171939 -k1,20604:28025188,14993993:171938 -k1,20604:29269295,14993993:171938 -k1,20604:30507504,14993993:171938 -k1,20604:32583029,14993993:0 -) -(1,20604:6630773,15859073:25952256,505283,134348 -g1,20604:7446040,15859073 -g1,20604:8664354,15859073 -k1,20604:32583028,15859073:21250048 -g1,20604:32583028,15859073 -) -] -] -(1,20566:6630773,17959501:25952256,32768,229376 -(1,20566:6630773,17959501:0,32768,229376 -(1,20566:6630773,17959501:5505024,32768,229376 -r1,20610:12135797,17959501:5505024,262144,229376 -) -k1,20566:6630773,17959501:-5505024 -) -(1,20566:6630773,17959501:25952256,32768,0 -r1,20610:32583029,17959501:25952256,32768,0 -) -) -(1,20566:6630773,19591353:25952256,606339,151780 -(1,20566:6630773,19591353:1974731,582746,14155 -g1,20566:6630773,19591353 -g1,20566:8605504,19591353 -) -g1,20566:11801564,19591353 -g1,20566:13576541,19591353 -k1,20566:32583029,19591353:16378232 -g1,20566:32583029,19591353 -) -(1,20574:6630773,20849649:25952256,505283,134348 -k1,20573:9727554,20849649:158146 -k1,20573:10343798,20849649:158147 -k1,20573:11033441,20849649:158146 -k1,20573:12210672,20849649:158146 -k1,20573:14086518,20849649:158147 -k1,20573:14896092,20849649:158146 -k1,20573:17142871,20849649:158147 -k1,20573:18908615,20849649:158146 -k1,20573:19791589,20849649:158146 -k1,20573:21234242,20849649:158147 -k1,20573:22411473,20849649:158146 -k1,20573:26576490,20849649:158146 -k1,20573:29245977,20849649:158147 -k1,20573:29935620,20849649:158146 -k1,20573:30903137,20849649:158147 -k1,20573:32080368,20849649:158146 -$1,20573:32080368,20849649 -$1,20573:32583029,20849649 -k1,20574:32583029,20849649:0 -) -(1,20574:6630773,21714729:25952256,505283,134348 -k1,20573:8247512,21714729:190676 -k1,20573:9507736,21714729:190676 -k1,20573:12283807,21714729:190676 -k1,20573:13125911,21714729:190676 -k1,20573:14335672,21714729:190676 -(1,20573:14335672,21714729:0,414482,115847 -r1,20610:14693938,21714729:358266,530329,115847 -k1,20573:14335672,21714729:-358266 -) -(1,20573:14335672,21714729:358266,414482,115847 -k1,20573:14335672,21714729:3277 -h1,20573:14690661,21714729:0,411205,112570 -) -k1,20573:14884614,21714729:190676 -k1,20573:18093222,21714729:190675 -k1,20573:19938682,21714729:190676 -k1,20573:21120918,21714729:190676 -k1,20573:24468463,21714729:190676 -k1,20573:26578033,21714729:190676 -k1,20573:29807613,21714729:190676 -k1,20573:31017374,21714729:190676 -k1,20573:32583029,21714729:0 -) -(1,20574:6630773,22579809:25952256,513147,138281 -k1,20573:7426380,22579809:136315 -$1,20573:7426380,22579809 -$1,20573:7929041,22579809 -k1,20573:8065356,22579809:136315 -k1,20573:9393115,22579809:136314 -$1,20573:9393115,22579809 -$1,20573:9944928,22579809 -k1,20573:10081243,22579809:136315 -k1,20573:10749055,22579809:136315 -k1,20573:13036262,22579809:136315 -k1,20573:13800411,22579809:136314 -k1,20573:16708244,22579809:136315 -k1,20573:18047800,22579809:136315 -k1,20573:18715612,22579809:136315 -k1,20573:21941949,22579809:136314 -k1,20573:22764426,22579809:136315 -k1,20573:25307223,22579809:136315 -k1,20573:26429199,22579809:136315 -k1,20573:30017950,22579809:136314 -k1,20573:30813557,22579809:136315 -k1,20573:31305732,22579809:136315 -k1,20573:32583029,22579809:0 -) -(1,20574:6630773,23444889:25952256,513147,134348 -k1,20573:7513586,23444889:199928 -k1,20573:8372807,23444889:199929 -k1,20573:8928595,23444889:199928 -k1,20573:10405821,23444889:199929 -k1,20573:12337210,23444889:199928 -k1,20573:13164974,23444889:199929 -k1,20573:14383987,23444889:199928 -k1,20573:16989743,23444889:199929 -k1,20573:19468358,23444889:199928 -k1,20573:19881278,23444889:199928 -k1,20573:23213827,23444889:199928 -k1,20573:24880452,23444889:199929 -k1,20573:26777762,23444889:199928 -k1,20573:28896585,23444889:199929 -k1,20573:30115598,23444889:199928 -k1,20573:32583029,23444889:0 -) -(1,20574:6630773,24309969:25952256,513147,134348 -k1,20573:7383323,24309969:221053 -k1,20573:10794013,24309969:221053 -k1,20573:12206510,24309969:221052 -k1,20573:14346457,24309969:221053 -k1,20573:17034941,24309969:221053 -k1,20573:19878089,24309969:221053 -k1,20573:21479986,24309969:221053 -k1,20573:25770168,24309969:221052 -k1,20573:27708264,24309969:221053 -k1,20573:31436804,24309969:221053 -k1,20574:32583029,24309969:0 -) -(1,20574:6630773,25175049:25952256,505283,126483 -(1,20573:6630773,25175049:0,452978,122846 -r1,20610:10857869,25175049:4227096,575824,122846 -k1,20573:6630773,25175049:-4227096 -) -(1,20573:6630773,25175049:4227096,452978,122846 -k1,20573:6630773,25175049:3277 -h1,20573:10854592,25175049:0,411205,112570 -) -k1,20573:11033592,25175049:175723 -k1,20573:12200876,25175049:175724 -k1,20573:15735319,25175049:175723 -k1,20573:16720413,25175049:175724 -k1,20573:17915221,25175049:175723 -k1,20573:18455326,25175049:175724 -k1,20573:19822494,25175049:175723 -k1,20573:20405852,25175049:175724 -k1,20573:23929809,25175049:175723 -k1,20573:25177702,25175049:175724 -k1,20573:27385696,25175049:175723 -k1,20573:28707645,25175049:175724 -(1,20573:28707645,25175049:0,452978,122846 -r1,20610:32583029,25175049:3875384,575824,122846 -k1,20573:28707645,25175049:-3875384 -) -(1,20573:28707645,25175049:3875384,452978,122846 -k1,20573:28707645,25175049:3277 -h1,20573:32579752,25175049:0,411205,112570 -) -k1,20573:32583029,25175049:0 -) -(1,20574:6630773,26040129:25952256,513147,126483 -g1,20573:9241072,26040129 -g1,20573:12768875,26040129 -g1,20573:13777474,26040129 -g1,20573:14341084,26040129 -g1,20573:15731758,26040129 -g1,20573:16470348,26040129 -g1,20573:18050421,26040129 -g1,20573:18781147,26040129 -g1,20573:20266192,26040129 -g1,20573:21484506,26040129 -g1,20573:23050816,26040129 -g1,20573:24197696,26040129 -g1,20573:25998625,26040129 -k1,20574:32583029,26040129:3872525 -g1,20574:32583029,26040129 -) -(1,20576:6630773,26905209:25952256,513147,134348 -h1,20575:6630773,26905209:983040,0,0 -k1,20575:10366128,26905209:248840 -k1,20575:12182589,26905209:248840 -k1,20575:15259962,26905209:248840 -k1,20575:17842539,26905209:248840 -k1,20575:19807768,26905209:248841 -k1,20575:21658308,26905209:248840 -k1,20575:25414635,26905209:248840 -k1,20575:26854920,26905209:248840 -k1,20575:29957198,26905209:248840 -k1,20575:32124932,26905209:248840 -k1,20575:32583029,26905209:0 -) -(1,20576:6630773,27770289:25952256,513147,134348 -k1,20575:7410488,27770289:248218 -k1,20575:11445375,27770289:248217 -k1,20575:14220006,27770289:248218 -k1,20575:16935654,27770289:248217 -k1,20575:18919265,27770289:248218 -k1,20575:19523342,27770289:248217 -k1,20575:21054755,27770289:248218 -k1,20575:23560687,27770289:248217 -k1,20575:25189749,27770289:248218 -k1,20575:26721161,27770289:248217 -k1,20575:29953889,27770289:248218 -k1,20575:30733603,27770289:248217 -k1,20576:32583029,27770289:0 -) -(1,20576:6630773,28635369:25952256,513147,126483 -k1,20575:7925343,28635369:275485 -k1,20575:8852256,28635369:275485 -k1,20575:10146826,28635369:275485 -k1,20575:11478752,28635369:275486 -k1,20575:12413529,28635369:275485 -k1,20575:13708099,28635369:275485 -k1,20575:17391456,28635369:275485 -k1,20575:19912860,28635369:275485 -k1,20575:22280910,28635369:275485 -k1,20575:23087892,28635369:275485 -k1,20575:26202398,28635369:275486 -k1,20575:27129311,28635369:275485 -k1,20575:28152562,28635369:275485 -k1,20575:31966991,28635369:275485 -k1,20575:32583029,28635369:0 -) -(1,20576:6630773,29500449:25952256,513147,134348 -k1,20575:7888409,29500449:238551 -k1,20575:10494776,29500449:238551 -k1,20575:11924772,29500449:238551 -k1,20575:16206894,29500449:238551 -k1,20575:18647456,29500449:238552 -k1,20575:19537435,29500449:238551 -k1,20575:21060492,29500449:238551 -k1,20575:25500556,29500449:238551 -k1,20575:26500635,29500449:238551 -k1,20575:29319338,29500449:238551 -k1,20575:32583029,29500449:0 -) -(1,20576:6630773,30365529:25952256,513147,134348 -k1,20575:9832862,30365529:267387 -k1,20575:12427432,30365529:267387 -k1,20575:13354111,30365529:267387 -k1,20575:16225243,30365529:267387 -k1,20575:17775825,30365529:267387 -k1,20575:21359335,30365529:267388 -k1,20575:23184513,30365529:267387 -k1,20575:26477697,30365529:267387 -k1,20575:27431246,30365529:267387 -k1,20575:28314671,30365529:267387 -k1,20575:31966991,30365529:267387 -k1,20575:32583029,30365529:0 -) -(1,20576:6630773,31230609:25952256,513147,134348 -k1,20575:9597697,31230609:190164 -k1,20575:10806945,31230609:190163 -k1,20575:14523601,31230609:190164 -k1,20575:15373056,31230609:190163 -k1,20575:17314997,31230609:190164 -k1,20575:19062951,31230609:190163 -k1,20575:22278912,31230609:190164 -k1,20575:23573358,31230609:190164 -k1,20575:26177867,31230609:190163 -k1,20575:27748875,31230609:190164 -k1,20575:29040043,31230609:190163 -k1,20575:30974120,31230609:190164 -k1,20576:32583029,31230609:0 -) -(1,20576:6630773,32095689:25952256,513147,134348 -k1,20575:7940073,32095689:231888 -k1,20575:11383224,32095689:231888 -k1,20575:13587746,32095689:231888 -k1,20575:17154106,32095689:231888 -k1,20575:18577439,32095689:231888 -k1,20575:19828413,32095689:231889 -k1,20575:22199396,32095689:231888 -k1,20575:23090576,32095689:231888 -k1,20575:25567727,32095689:231888 -k1,20575:27407213,32095689:231888 -k1,20575:29509499,32095689:231888 -k1,20575:30932832,32095689:231888 -k1,20575:32583029,32095689:0 -) -(1,20576:6630773,32960769:25952256,513147,134348 -k1,20575:9665624,32960769:209594 -k1,20575:12838101,32960769:209594 -k1,20575:15876227,32960769:209593 -k1,20575:17186826,32960769:209594 -k1,20575:19680350,32960769:209594 -(1,20575:19680350,32960769:0,459977,115847 -r1,20610:23907446,32960769:4227096,575824,115847 -k1,20575:19680350,32960769:-4227096 -) -(1,20575:19680350,32960769:4227096,459977,115847 -k1,20575:19680350,32960769:3277 -h1,20575:23904169,32960769:0,411205,112570 -) -k1,20575:24117040,32960769:209594 -k1,20575:25274285,32960769:209594 -k1,20575:25839739,32960769:209594 -k1,20575:27438040,32960769:209593 -k1,20575:29246712,32960769:209594 -k1,20575:31923737,32960769:209594 -k1,20575:32583029,32960769:0 -) -(1,20576:6630773,33825849:25952256,513147,126483 -g1,20575:8107299,33825849 -g1,20575:12044702,33825849 -g1,20575:14353535,33825849 -g1,20575:15571849,33825849 -g1,20575:17653927,33825849 -g1,20575:19130453,33825849 -g1,20575:21281344,33825849 -g1,20575:22923020,33825849 -g1,20575:26315163,33825849 -k1,20576:32583029,33825849:4327345 -g1,20576:32583029,33825849 -) -(1,20578:6630773,34690929:25952256,513147,138281 -h1,20577:6630773,34690929:983040,0,0 -k1,20577:9543983,34690929:146935 -k1,20577:10046778,34690929:146935 -k1,20577:12087704,34690929:146936 -k1,20577:12766136,34690929:146935 -k1,20577:15498466,34690929:146935 -k1,20577:16296829,34690929:146935 -$1,20577:16296829,34690929 -$1,20577:16799490,34690929 -k1,20577:16946425,34690929:146935 -k1,20577:17776246,34690929:146936 -$1,20577:17776246,34690929 -$1,20577:18328059,34690929 -k1,20577:18474994,34690929:146935 -k1,20577:21089360,34690929:146935 -k1,20577:21767792,34690929:146935 -k1,20577:25278035,34690929:146935 -k1,20577:25912507,34690929:146884 -k1,20577:27953432,34690929:146935 -k1,20577:30360048,34690929:146935 -k1,20577:32583029,34690929:0 -) -(1,20578:6630773,35556009:25952256,513147,134348 -k1,20577:8006072,35556009:183854 -k1,20577:11698067,35556009:183853 -k1,20577:12873481,35556009:183854 -k1,20577:16265978,35556009:183854 -k1,20577:17506271,35556009:183853 -k1,20577:19756475,35556009:183854 -k1,20577:21009877,35556009:183854 -k1,20577:22250171,35556009:183854 -k1,20577:23896132,35556009:183853 -k1,20577:24739278,35556009:183854 -k1,20577:25942217,35556009:183854 -k1,20577:28020060,35556009:183853 -k1,20577:31923737,35556009:183854 -k1,20577:32583029,35556009:0 -) -(1,20578:6630773,36421089:25952256,513147,138281 -k1,20577:7843626,36421089:193768 -k1,20577:9931384,36421089:193768 -k1,20577:11863167,36421089:193768 -k1,20577:14642330,36421089:193768 -k1,20577:15487526,36421089:193768 -k1,20577:16700379,36421089:193768 -$1,20577:16700379,36421089 -$1,20577:17203040,36421089 -k1,20577:17396808,36421089:193768 -k1,20577:18273462,36421089:193769 -$1,20577:18273462,36421089 -$1,20577:18825275,36421089 -k1,20577:19019043,36421089:193768 -k1,20577:22230744,36421089:193768 -k1,20577:24256899,36421089:193768 -k1,20577:25442227,36421089:193768 -k1,20577:26921811,36421089:193768 -k1,20577:28812961,36421089:193768 -k1,20577:30291235,36421089:193768 -k1,20577:32583029,36421089:0 -) -(1,20578:6630773,37286169:25952256,513147,134348 -k1,20577:8308197,37286169:296580 -k1,20577:12673907,37286169:296580 -k1,20577:14012509,37286169:296580 -k1,20577:17144176,37286169:296580 -k1,20577:19908187,37286169:296580 -k1,20577:21826784,37286169:296581 -k1,20577:22871130,37286169:296580 -k1,20577:26325235,37286169:296580 -k1,20577:29554551,37286169:296580 -k1,20577:30317092,37286169:296580 -k1,20577:32080368,37286169:296580 -$1,20577:32080368,37286169 -$1,20577:32583029,37286169 -k1,20578:32583029,37286169:0 -) -(1,20578:6630773,38151249:25952256,513147,138281 -k1,20577:8110375,38151249:288157 -$1,20577:8110375,38151249 -$1,20577:8662188,38151249 -k1,20577:8950344,38151249:288156 -k1,20577:10230061,38151249:288157 -k1,20577:13103613,38151249:288157 -k1,20577:14043197,38151249:288156 -k1,20577:17901755,38151249:288157 -k1,20577:21205223,38151249:288157 -k1,20577:22874224,38151249:288157 -k1,20577:23867547,38151249:288156 -k1,20577:25103355,38151249:288157 -k1,20577:28226599,38151249:288157 -k1,20577:29533840,38151249:288156 -k1,20577:31189078,38151249:288157 -k1,20578:32583029,38151249:0 -) -(1,20578:6630773,39016329:25952256,505283,122846 -(1,20577:6630773,39016329:0,452978,115847 -r1,20610:11209581,39016329:4578808,568825,115847 -k1,20577:6630773,39016329:-4578808 -) -(1,20577:6630773,39016329:4578808,452978,115847 -k1,20577:6630773,39016329:3277 -h1,20577:11206304,39016329:0,411205,112570 -) -g1,20577:11408810,39016329 -g1,20577:12799484,39016329 -g1,20577:14392664,39016329 -(1,20577:14392664,39016329:0,452978,122846 -r1,20610:18268048,39016329:3875384,575824,122846 -k1,20577:14392664,39016329:-3875384 -) -(1,20577:14392664,39016329:3875384,452978,122846 -k1,20577:14392664,39016329:3277 -h1,20577:18264771,39016329:0,411205,112570 -) -k1,20578:32583029,39016329:14262553 -g1,20578:32583029,39016329 -) -(1,20608:6630773,39881409:25952256,505283,134348 -h1,20607:6630773,39881409:983040,0,0 -k1,20607:8411941,39881409:170293 -k1,20607:11609341,39881409:170292 -k1,20607:14207088,39881409:170293 -(1,20607:14207088,39881409:0,452978,115847 -r1,20610:20192743,39881409:5985655,568825,115847 -k1,20607:14207088,39881409:-5985655 -) -(1,20607:14207088,39881409:5985655,452978,115847 -g1,20607:18430907,39881409 -g1,20607:19134331,39881409 -h1,20607:20189466,39881409:0,411205,112570 -) -k1,20607:20363036,39881409:170293 -k1,20607:21219490,39881409:170292 -k1,20607:24462111,39881409:170293 -k1,20607:26805578,39881409:170293 -k1,20607:27591908,39881409:170292 -k1,20607:28781286,39881409:170293 -k1,20607:32583029,39881409:0 -) -(1,20608:6630773,40746489:25952256,513147,134348 -k1,20607:8507253,40746489:138465 -k1,20607:11017467,40746489:138466 -k1,20607:12669158,40746489:138465 -k1,20607:15846527,40746489:138465 -k1,20607:17004078,40746489:138466 -k1,20607:20280407,40746489:138465 -k1,20607:21078164,40746489:138465 -k1,20607:22235714,40746489:138465 -(1,20607:22235714,40746489:0,414482,115847 -r1,20610:22593980,40746489:358266,530329,115847 -k1,20607:22235714,40746489:-358266 -) -(1,20607:22235714,40746489:358266,414482,115847 -k1,20607:22235714,40746489:3277 -h1,20607:22590703,40746489:0,411205,112570 -) -k1,20607:22732446,40746489:138466 -k1,20607:24062356,40746489:138465 -(1,20607:24062356,40746489:0,414482,115847 -r1,20610:24420622,40746489:358266,530329,115847 -k1,20607:24062356,40746489:-358266 -) -(1,20607:24062356,40746489:358266,414482,115847 -k1,20607:24062356,40746489:3277 -h1,20607:24417345,40746489:0,411205,112570 -) -k1,20607:24559087,40746489:138465 -k1,20607:28045787,40746489:138466 -k1,20607:29829206,40746489:138465 -k1,20607:32583029,40746489:0 -) -(1,20608:6630773,41611569:25952256,513147,138281 -k1,20607:7854028,41611569:204170 -k1,20607:11859940,41611569:204169 -k1,20607:13083195,41611569:204170 -k1,20607:16425229,41611569:204170 -k1,20607:17288690,41611569:204169 -k1,20607:18511945,41611569:204170 -$1,20607:18511945,41611569 -$1,20607:19014606,41611569 -k1,20607:19218776,41611569:204170 -k1,20607:20614391,41611569:204170 -$1,20607:20614391,41611569 -$1,20607:21166204,41611569 -k1,20607:21370373,41611569:204169 -k1,20607:22765988,41611569:204170 -k1,20607:25191829,41611569:204170 -k1,20607:28570562,41611569:204169 -k1,20607:29766292,41611569:204170 -k1,20607:32583029,41611569:0 -) -(1,20608:6630773,42476649:25952256,505283,134348 -g1,20607:8312426,42476649 -g1,20607:10703834,42476649 -h1,20607:11674422,42476649:0,0,0 -k1,20608:32583028,42476649:20649084 -g1,20608:32583028,42476649 -) -(1,20610:6630773,43341729:25952256,513147,134348 -h1,20609:6630773,43341729:983040,0,0 -k1,20609:8402710,43341729:161062 -k1,20609:12244929,43341729:161062 -k1,20609:14833446,43341729:161063 -(1,20609:14833446,43341729:0,452978,115847 -r1,20610:20819101,43341729:5985655,568825,115847 -k1,20609:14833446,43341729:-5985655 -) -(1,20609:14833446,43341729:5985655,452978,115847 -g1,20609:19057265,43341729 -g1,20609:19760689,43341729 -h1,20609:20815824,43341729:0,411205,112570 -) -k1,20609:20980163,43341729:161062 -k1,20609:22427041,43341729:161062 -k1,20609:24761277,43341729:161062 -k1,20609:25538377,43341729:161062 -k1,20609:28166871,43341729:161063 -k1,20609:28987225,43341729:161062 -k1,20609:30167372,43341729:161062 -k1,20610:32583029,43341729:0 -) -(1,20610:6630773,44206809:25952256,513147,134348 -k1,20609:7719961,44206809:224113 -k1,20609:10136254,44206809:224114 -h1,20609:11106842,44206809:0,0,0 -k1,20609:11711719,44206809:224113 -k1,20609:12977854,44206809:224113 -k1,20609:16037054,44206809:224113 -k1,20609:16877206,44206809:224114 -(1,20609:16877206,44206809:0,452978,122846 -r1,20610:20752590,44206809:3875384,575824,122846 -k1,20609:16877206,44206809:-3875384 -) -(1,20609:16877206,44206809:3875384,452978,122846 -k1,20609:16877206,44206809:3277 -h1,20609:20749313,44206809:0,411205,112570 -) -k1,20609:21150373,44206809:224113 -k1,20609:23841917,44206809:224113 -k1,20609:26637007,44206809:224113 -k1,20609:27880206,44206809:224114 -k1,20609:30680539,44206809:224113 -k1,20609:31563944,44206809:224113 -k1,20609:32583029,44206809:0 -) -(1,20610:6630773,45071889:25952256,513147,134348 -k1,20609:8547483,45071889:244231 -k1,20609:11713964,45071889:244231 -k1,20609:16029946,45071889:244230 -k1,20609:17265737,45071889:244231 -k1,20609:19548138,45071889:244231 -k1,20609:21536937,45071889:244231 -k1,20609:22800252,45071889:244230 -$1,20609:22800252,45071889 -$1,20609:23302913,45071889 -k1,20609:23547144,45071889:244231 -k1,20609:25043768,45071889:244231 -k1,20609:27330756,45071889:244231 -k1,20609:30151206,45071889:244230 -k1,20609:31414522,45071889:244231 -k1,20609:32583029,45071889:0 -) -] -(1,20610:32583029,45706769:0,0,0 -g1,20610:32583029,45706769 -) -) -] -(1,20610:6630773,47279633:25952256,0,0 -h1,20610:6630773,47279633:25952256,0,0 -) -] -(1,20610:4262630,4025873:0,0,0 -[1,20610:-473656,4025873:0,0,0 -(1,20610:-473656,-710413:0,0,0 -(1,20610:-473656,-710413:0,0,0 -g1,20610:-473656,-710413 -) -g1,20610:-473656,-710413 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3932160,473825,7863 +(1,20590:11436333,6434647:3932160,473825,7863 +[1,20590:11436333,6434647:3932160,473825,7863 +(1,20590:11436333,6434647:3932160,473825,7863 +k1,20590:12163127,6434647:726794 +h1,20590:12163127,6434647:0,0,0 +h1,20590:12163127,6434647:0,0,0 +k1,20590:14641699,6434647:0 +k1,20590:15368493,6434647:726794 +) +] +) +g1,20590:15368493,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3932160,416809,134348 +(1,20590:11436333,6434647:3932160,416809,134348 +[1,20590:11436333,6434647:3932160,416809,134348 +(1,20590:11436333,6434647:3932160,416809,134348 +k1,20590:11906881,6434647:470548 +h1,20590:11906881,6434647:0,0,0 +h1,20590:11906881,6434647:0,0,0 +k1,20590:14897945,6434647:0 +k1,20590:15368493,6434647:470548 +) +] +) +g1,20590:15368493,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3932160,505283,991563 +(1,20590:11436333,6434647:3932160,505283,991563 +[1,20590:11436333,6434647:3932160,505283,991563 +(1,20590:11436333,6434647:3932160,505283,7863 +k1,20590:11970779,6434647:534446 +h1,20590:11970779,6434647:0,0,0 +h1,20590:11970779,6434647:0,0,0 +k1,20590:14834047,6434647:0 +k1,20590:15368493,6434647:534446 +) +(1,20590:11436333,7299727:3932160,505283,126483 +k1,20590:12777527,7299727:1341194 +h1,20590:12777527,7299727:0,0,0 +k1,20590:14027299,7299727:0 +k1,20590:15368493,7299727:1341194 +) +] +) +g1,20590:15368493,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3336179,513147,138281 +(1,20590:11436333,6434647:3336179,513147,138281 +g1,20590:11643427,6434647 +g1,20590:11850521,6434647 +g1,20590:12057615,6434647 +g1,20590:12264709,6434647 +g1,20590:12471803,6434647 +g1,20590:12678897,6434647 +$1,20590:12678897,6434647 +g1,20590:13363618,6434647 +g1,20590:14220699,6434647 +$1,20590:14772512,6434647 +) +g1,20590:14772512,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:3336179,513147,138281 +(1,20590:11436333,6434647:3336179,513147,138281 +g1,20590:11643427,6434647 +g1,20590:11850521,6434647 +g1,20590:12057615,6434647 +g1,20590:12264709,6434647 +g1,20590:12471803,6434647 +g1,20590:12678897,6434647 +$1,20590:12678897,6434647 +g1,20590:13412770,6434647 +g1,20590:14269851,6434647 +$1,20590:14772512,6434647 +) +g1,20590:14772512,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +(1,20590:11436333,6434647:0,0,0 +(1,20590:11436333,6434647:0,0,0 +h1,20590:11436333,6434647:0,0,0 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +) +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +g1,20590:11436333,6434647 +) +g1,20590:11436333,6434647 +) +) +) +) +k1,20590:9225609,7771581:-25550112 +) +) +g1,20590:29988193,7771581 +) +g1,20590:29988193,7771581 +k1,20590:32583029,7771581:2594836 +) +(1,20602:6630773,10878313:25952256,2172844,0 +k1,20602:9225609,10878313:2594836 +h1,20591:9225609,10878313:0,0,0 +(1,20601:9225609,10878313:20762584,2172844,0 +(1,20601:9225609,10878313:0,2172844,0 +(1,20601:9225609,10878313:0,2673868,0 +(1,20601:9225609,10878313:25550112,2673868,0 +(1,20601:9225609,10878313:25550112,2673868,0 +(1,20601:9225609,10878313:25550112,2673868,0 +g1,20601:11436333,10878313 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3932160,505283,7863 +(1,20601:11436333,9541379:3932160,505283,7863 +[1,20601:11436333,9541379:3932160,505283,7863 +(1,20601:11436333,9541379:3932160,505283,7863 +k1,20601:12711664,9541379:1275331 +h1,20601:12711664,9541379:0,0,0 +h1,20601:12711664,9541379:0,0,0 +k1,20601:14093163,9541379:0 +k1,20601:15368493,9541379:1275330 +) +] +) +g1,20601:15368493,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3932160,473825,7863 +(1,20601:11436333,9541379:3932160,473825,7863 +[1,20601:11436333,9541379:3932160,473825,7863 +(1,20601:11436333,9541379:3932160,473825,7863 +k1,20601:12163127,9541379:726794 +h1,20601:12163127,9541379:0,0,0 +h1,20601:12163127,9541379:0,0,0 +k1,20601:14641699,9541379:0 +k1,20601:15368493,9541379:726794 +) +] +) +g1,20601:15368493,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3932160,416809,134348 +(1,20601:11436333,9541379:3932160,416809,134348 +[1,20601:11436333,9541379:3932160,416809,134348 +(1,20601:11436333,9541379:3932160,416809,134348 +k1,20601:11906881,9541379:470548 +h1,20601:11906881,9541379:0,0,0 +h1,20601:11906881,9541379:0,0,0 +k1,20601:14897945,9541379:0 +k1,20601:15368493,9541379:470548 +) +] +) +g1,20601:15368493,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3932160,505283,991563 +(1,20601:11436333,9541379:3932160,505283,991563 +[1,20601:11436333,9541379:3932160,505283,991563 +(1,20601:11436333,9541379:3932160,505283,7863 +k1,20601:11970779,9541379:534446 +h1,20601:11970779,9541379:0,0,0 +h1,20601:11970779,9541379:0,0,0 +k1,20601:14834047,9541379:0 +k1,20601:15368493,9541379:534446 +) +(1,20601:11436333,10406459:3932160,505283,126483 +k1,20601:12777527,10406459:1341194 +h1,20601:12777527,10406459:0,0,0 +k1,20601:14027299,10406459:0 +k1,20601:15368493,10406459:1341194 +) +] +) +g1,20601:15368493,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +h1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3336179,513147,138281 +(1,20601:11436333,9541379:3336179,513147,138281 +g1,20601:11643427,9541379 +g1,20601:11850521,9541379 +g1,20601:12057615,9541379 +g1,20601:12264709,9541379 +g1,20601:12471803,9541379 +g1,20601:12678897,9541379 +$1,20601:12678897,9541379 +g1,20601:13363618,9541379 +g1,20601:14220699,9541379 +$1,20601:14772512,9541379 +) +g1,20601:14772512,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:0,0,0 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +(1,20601:11436333,9541379:0,0,0 +(1,20601:11436333,9541379:3336179,513147,138281 +(1,20601:11436333,9541379:3336179,513147,138281 +g1,20601:11643427,9541379 +g1,20601:11850521,9541379 +g1,20601:12057615,9541379 +g1,20601:12264709,9541379 +g1,20601:12471803,9541379 +g1,20601:12678897,9541379 +$1,20601:12678897,9541379 +g1,20601:13412770,9541379 +g1,20601:14269851,9541379 +$1,20601:14772512,9541379 +) +g1,20601:14772512,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +) +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +g1,20601:11436333,9541379 +) +g1,20601:11436333,9541379 +) +) +) +) +k1,20601:9225609,10878313:-25550112 +) +) +g1,20601:29988193,10878313 +) +g1,20602:29988193,10878313 +k1,20602:32583029,10878313:2594836 +) +(1,20602:6630773,12398753:25952256,505283,134348 +h1,20602:6630773,12398753:0,0,0 +g1,20602:8923222,12398753 +k1,20602:32583029,12398753:22669558 +g1,20602:32583029,12398753 +) +(1,20602:6630773,13263833:25952256,513147,134348 +h1,20602:6630773,13263833:0,0,0 +k1,20602:9163056,13263833:157258 +k1,20602:11382077,13263833:157258 +k1,20602:12789108,13263833:157259 +k1,20602:15736234,13263833:157258 +k1,20602:18138755,13263833:157258 +k1,20602:21470577,13263833:157258 +k1,20602:22243874,13263833:157259 +k1,20602:24924268,13263833:157258 +k1,20602:26475477,13263833:157258 +(1,20602:26475477,13263833:0,452978,115847 +r1,20608:32461132,13263833:5985655,568825,115847 +k1,20602:26475477,13263833:-5985655 +) +(1,20602:26475477,13263833:5985655,452978,115847 +g1,20602:30699296,13263833 +g1,20602:31402720,13263833 +h1,20602:32457855,13263833:0,411205,112570 +) +k1,20602:32583029,13263833:0 +) +(1,20602:6630773,14128913:25952256,513147,134348 +k1,20602:9211959,14128913:257935 +k1,20602:12259761,14128913:257934 +k1,20602:14762959,14128913:257935 +k1,20602:18195458,14128913:257935 +k1,20602:19069430,14128913:257934 +k1,20602:22317117,14128913:257935 +k1,20602:23969002,14128913:257934 +(1,20602:23969002,14128913:0,452978,115847 +r1,20608:29954657,14128913:5985655,568825,115847 +k1,20602:23969002,14128913:-5985655 +) +(1,20602:23969002,14128913:5985655,452978,115847 +g1,20602:28192821,14128913 +g1,20602:28896245,14128913 +h1,20602:29951380,14128913:0,411205,112570 +) +k1,20602:30386262,14128913:257935 +k1,20602:32583029,14128913:0 +) +(1,20602:6630773,14993993:25952256,513147,134348 +k1,20602:9443812,14993993:171938 +k1,20602:11837421,14993993:171938 +k1,20602:15183923,14993993:171938 +k1,20602:16849428,14993993:171939 +k1,20602:17707528,14993993:171938 +(1,20602:17707528,14993993:0,452978,115847 +r1,20608:19120929,14993993:1413401,568825,115847 +k1,20602:17707528,14993993:-1413401 +) +(1,20602:17707528,14993993:1413401,452978,115847 +k1,20602:17707528,14993993:3277 +h1,20602:19117652,14993993:0,411205,112570 +) +k1,20602:19292867,14993993:171938 +k1,20602:20656250,14993993:171938 +(1,20602:20656250,14993993:0,452978,115847 +r1,20608:22069651,14993993:1413401,568825,115847 +k1,20602:20656250,14993993:-1413401 +) +(1,20602:20656250,14993993:1413401,452978,115847 +k1,20602:20656250,14993993:3277 +h1,20602:22066374,14993993:0,411205,112570 +) +k1,20602:22241589,14993993:171938 +k1,20602:23405087,14993993:171938 +k1,20602:24862842,14993993:171939 +k1,20602:28025188,14993993:171938 +k1,20602:29269295,14993993:171938 +k1,20602:30507504,14993993:171938 +k1,20602:32583029,14993993:0 +) +(1,20602:6630773,15859073:25952256,505283,134348 +g1,20602:7446040,15859073 +g1,20602:8664354,15859073 +k1,20602:32583028,15859073:21250048 +g1,20602:32583028,15859073 +) +] +] +(1,20564:6630773,17959501:25952256,32768,229376 +(1,20564:6630773,17959501:0,32768,229376 +(1,20564:6630773,17959501:5505024,32768,229376 +r1,20608:12135797,17959501:5505024,262144,229376 +) +k1,20564:6630773,17959501:-5505024 +) +(1,20564:6630773,17959501:25952256,32768,0 +r1,20608:32583029,17959501:25952256,32768,0 +) +) +(1,20564:6630773,19591353:25952256,606339,151780 +(1,20564:6630773,19591353:1974731,582746,14155 +g1,20564:6630773,19591353 +g1,20564:8605504,19591353 +) +g1,20564:11801564,19591353 +g1,20564:13576541,19591353 +k1,20564:32583029,19591353:16378232 +g1,20564:32583029,19591353 +) +(1,20572:6630773,20849649:25952256,505283,134348 +k1,20571:9727554,20849649:158146 +k1,20571:10343798,20849649:158147 +k1,20571:11033441,20849649:158146 +k1,20571:12210672,20849649:158146 +k1,20571:14086518,20849649:158147 +k1,20571:14896092,20849649:158146 +k1,20571:17142871,20849649:158147 +k1,20571:18908615,20849649:158146 +k1,20571:19791589,20849649:158146 +k1,20571:21234242,20849649:158147 +k1,20571:22411473,20849649:158146 +k1,20571:26576490,20849649:158146 +k1,20571:29245977,20849649:158147 +k1,20571:29935620,20849649:158146 +k1,20571:30903137,20849649:158147 +k1,20571:32080368,20849649:158146 +$1,20571:32080368,20849649 +$1,20571:32583029,20849649 +k1,20572:32583029,20849649:0 +) +(1,20572:6630773,21714729:25952256,505283,134348 +k1,20571:8247512,21714729:190676 +k1,20571:9507736,21714729:190676 +k1,20571:12283807,21714729:190676 +k1,20571:13125911,21714729:190676 +k1,20571:14335672,21714729:190676 +(1,20571:14335672,21714729:0,414482,115847 +r1,20608:14693938,21714729:358266,530329,115847 +k1,20571:14335672,21714729:-358266 +) +(1,20571:14335672,21714729:358266,414482,115847 +k1,20571:14335672,21714729:3277 +h1,20571:14690661,21714729:0,411205,112570 +) +k1,20571:14884614,21714729:190676 +k1,20571:18093222,21714729:190675 +k1,20571:19938682,21714729:190676 +k1,20571:21120918,21714729:190676 +k1,20571:24468463,21714729:190676 +k1,20571:26578033,21714729:190676 +k1,20571:29807613,21714729:190676 +k1,20571:31017374,21714729:190676 +k1,20571:32583029,21714729:0 +) +(1,20572:6630773,22579809:25952256,513147,138281 +k1,20571:7426380,22579809:136315 +$1,20571:7426380,22579809 +$1,20571:7929041,22579809 +k1,20571:8065356,22579809:136315 +k1,20571:9393115,22579809:136314 +$1,20571:9393115,22579809 +$1,20571:9944928,22579809 +k1,20571:10081243,22579809:136315 +k1,20571:10749055,22579809:136315 +k1,20571:13036262,22579809:136315 +k1,20571:13800411,22579809:136314 +k1,20571:16708244,22579809:136315 +k1,20571:18047800,22579809:136315 +k1,20571:18715612,22579809:136315 +k1,20571:21941949,22579809:136314 +k1,20571:22764426,22579809:136315 +k1,20571:25307223,22579809:136315 +k1,20571:26429199,22579809:136315 +k1,20571:30017950,22579809:136314 +k1,20571:30813557,22579809:136315 +k1,20571:31305732,22579809:136315 +k1,20571:32583029,22579809:0 +) +(1,20572:6630773,23444889:25952256,513147,134348 +k1,20571:7513586,23444889:199928 +k1,20571:8372807,23444889:199929 +k1,20571:8928595,23444889:199928 +k1,20571:10405821,23444889:199929 +k1,20571:12337210,23444889:199928 +k1,20571:13164974,23444889:199929 +k1,20571:14383987,23444889:199928 +k1,20571:16989743,23444889:199929 +k1,20571:19468358,23444889:199928 +k1,20571:19881278,23444889:199928 +k1,20571:23213827,23444889:199928 +k1,20571:24880452,23444889:199929 +k1,20571:26777762,23444889:199928 +k1,20571:28896585,23444889:199929 +k1,20571:30115598,23444889:199928 +k1,20571:32583029,23444889:0 +) +(1,20572:6630773,24309969:25952256,513147,134348 +k1,20571:7383323,24309969:221053 +k1,20571:10794013,24309969:221053 +k1,20571:12206510,24309969:221052 +k1,20571:14346457,24309969:221053 +k1,20571:17034941,24309969:221053 +k1,20571:19878089,24309969:221053 +k1,20571:21479986,24309969:221053 +k1,20571:25770168,24309969:221052 +k1,20571:27708264,24309969:221053 +k1,20571:31436804,24309969:221053 +k1,20572:32583029,24309969:0 +) +(1,20572:6630773,25175049:25952256,505283,126483 +(1,20571:6630773,25175049:0,452978,122846 +r1,20608:10857869,25175049:4227096,575824,122846 +k1,20571:6630773,25175049:-4227096 +) +(1,20571:6630773,25175049:4227096,452978,122846 +k1,20571:6630773,25175049:3277 +h1,20571:10854592,25175049:0,411205,112570 +) +k1,20571:11033592,25175049:175723 +k1,20571:12200876,25175049:175724 +k1,20571:15735319,25175049:175723 +k1,20571:16720413,25175049:175724 +k1,20571:17915221,25175049:175723 +k1,20571:18455326,25175049:175724 +k1,20571:19822494,25175049:175723 +k1,20571:20405852,25175049:175724 +k1,20571:23929809,25175049:175723 +k1,20571:25177702,25175049:175724 +k1,20571:27385696,25175049:175723 +k1,20571:28707645,25175049:175724 +(1,20571:28707645,25175049:0,452978,122846 +r1,20608:32583029,25175049:3875384,575824,122846 +k1,20571:28707645,25175049:-3875384 +) +(1,20571:28707645,25175049:3875384,452978,122846 +k1,20571:28707645,25175049:3277 +h1,20571:32579752,25175049:0,411205,112570 +) +k1,20571:32583029,25175049:0 +) +(1,20572:6630773,26040129:25952256,513147,126483 +g1,20571:9241072,26040129 +g1,20571:12768875,26040129 +g1,20571:13777474,26040129 +g1,20571:14341084,26040129 +g1,20571:15731758,26040129 +g1,20571:16470348,26040129 +g1,20571:18050421,26040129 +g1,20571:18781147,26040129 +g1,20571:20266192,26040129 +g1,20571:21484506,26040129 +g1,20571:23050816,26040129 +g1,20571:24197696,26040129 +g1,20571:25998625,26040129 +k1,20572:32583029,26040129:3872525 +g1,20572:32583029,26040129 +) +(1,20574:6630773,26905209:25952256,513147,134348 +h1,20573:6630773,26905209:983040,0,0 +k1,20573:10366128,26905209:248840 +k1,20573:12182589,26905209:248840 +k1,20573:15259962,26905209:248840 +k1,20573:17842539,26905209:248840 +k1,20573:19807768,26905209:248841 +k1,20573:21658308,26905209:248840 +k1,20573:25414635,26905209:248840 +k1,20573:26854920,26905209:248840 +k1,20573:29957198,26905209:248840 +k1,20573:32124932,26905209:248840 +k1,20573:32583029,26905209:0 +) +(1,20574:6630773,27770289:25952256,513147,134348 +k1,20573:7410488,27770289:248218 +k1,20573:11445375,27770289:248217 +k1,20573:14220006,27770289:248218 +k1,20573:16935654,27770289:248217 +k1,20573:18919265,27770289:248218 +k1,20573:19523342,27770289:248217 +k1,20573:21054755,27770289:248218 +k1,20573:23560687,27770289:248217 +k1,20573:25189749,27770289:248218 +k1,20573:26721161,27770289:248217 +k1,20573:29953889,27770289:248218 +k1,20573:30733603,27770289:248217 +k1,20574:32583029,27770289:0 +) +(1,20574:6630773,28635369:25952256,513147,126483 +k1,20573:7925343,28635369:275485 +k1,20573:8852256,28635369:275485 +k1,20573:10146826,28635369:275485 +k1,20573:11478752,28635369:275486 +k1,20573:12413529,28635369:275485 +k1,20573:13708099,28635369:275485 +k1,20573:17391456,28635369:275485 +k1,20573:19912860,28635369:275485 +k1,20573:22280910,28635369:275485 +k1,20573:23087892,28635369:275485 +k1,20573:26202398,28635369:275486 +k1,20573:27129311,28635369:275485 +k1,20573:28152562,28635369:275485 +k1,20573:31966991,28635369:275485 +k1,20573:32583029,28635369:0 +) +(1,20574:6630773,29500449:25952256,513147,134348 +k1,20573:7888409,29500449:238551 +k1,20573:10494776,29500449:238551 +k1,20573:11924772,29500449:238551 +k1,20573:16206894,29500449:238551 +k1,20573:18647456,29500449:238552 +k1,20573:19537435,29500449:238551 +k1,20573:21060492,29500449:238551 +k1,20573:25500556,29500449:238551 +k1,20573:26500635,29500449:238551 +k1,20573:29319338,29500449:238551 +k1,20573:32583029,29500449:0 +) +(1,20574:6630773,30365529:25952256,513147,134348 +k1,20573:9832862,30365529:267387 +k1,20573:12427432,30365529:267387 +k1,20573:13354111,30365529:267387 +k1,20573:16225243,30365529:267387 +k1,20573:17775825,30365529:267387 +k1,20573:21359335,30365529:267388 +k1,20573:23184513,30365529:267387 +k1,20573:26477697,30365529:267387 +k1,20573:27431246,30365529:267387 +k1,20573:28314671,30365529:267387 +k1,20573:31966991,30365529:267387 +k1,20573:32583029,30365529:0 +) +(1,20574:6630773,31230609:25952256,513147,134348 +k1,20573:9597697,31230609:190164 +k1,20573:10806945,31230609:190163 +k1,20573:14523601,31230609:190164 +k1,20573:15373056,31230609:190163 +k1,20573:17314997,31230609:190164 +k1,20573:19062951,31230609:190163 +k1,20573:22278912,31230609:190164 +k1,20573:23573358,31230609:190164 +k1,20573:26177867,31230609:190163 +k1,20573:27748875,31230609:190164 +k1,20573:29040043,31230609:190163 +k1,20573:30974120,31230609:190164 +k1,20574:32583029,31230609:0 +) +(1,20574:6630773,32095689:25952256,513147,134348 +k1,20573:7940073,32095689:231888 +k1,20573:11383224,32095689:231888 +k1,20573:13587746,32095689:231888 +k1,20573:17154106,32095689:231888 +k1,20573:18577439,32095689:231888 +k1,20573:19828413,32095689:231889 +k1,20573:22199396,32095689:231888 +k1,20573:23090576,32095689:231888 +k1,20573:25567727,32095689:231888 +k1,20573:27407213,32095689:231888 +k1,20573:29509499,32095689:231888 +k1,20573:30932832,32095689:231888 +k1,20573:32583029,32095689:0 +) +(1,20574:6630773,32960769:25952256,513147,134348 +k1,20573:9665624,32960769:209594 +k1,20573:12838101,32960769:209594 +k1,20573:15876227,32960769:209593 +k1,20573:17186826,32960769:209594 +k1,20573:19680350,32960769:209594 +(1,20573:19680350,32960769:0,459977,115847 +r1,20608:23907446,32960769:4227096,575824,115847 +k1,20573:19680350,32960769:-4227096 +) +(1,20573:19680350,32960769:4227096,459977,115847 +k1,20573:19680350,32960769:3277 +h1,20573:23904169,32960769:0,411205,112570 +) +k1,20573:24117040,32960769:209594 +k1,20573:25274285,32960769:209594 +k1,20573:25839739,32960769:209594 +k1,20573:27438040,32960769:209593 +k1,20573:29246712,32960769:209594 +k1,20573:31923737,32960769:209594 +k1,20573:32583029,32960769:0 +) +(1,20574:6630773,33825849:25952256,513147,126483 +g1,20573:8107299,33825849 +g1,20573:12044702,33825849 +g1,20573:14353535,33825849 +g1,20573:15571849,33825849 +g1,20573:17653927,33825849 +g1,20573:19130453,33825849 +g1,20573:21281344,33825849 +g1,20573:22923020,33825849 +g1,20573:26315163,33825849 +k1,20574:32583029,33825849:4327345 +g1,20574:32583029,33825849 +) +(1,20576:6630773,34690929:25952256,513147,138281 +h1,20575:6630773,34690929:983040,0,0 +k1,20575:9543983,34690929:146935 +k1,20575:10046778,34690929:146935 +k1,20575:12087704,34690929:146936 +k1,20575:12766136,34690929:146935 +k1,20575:15498466,34690929:146935 +k1,20575:16296829,34690929:146935 +$1,20575:16296829,34690929 +$1,20575:16799490,34690929 +k1,20575:16946425,34690929:146935 +k1,20575:17776246,34690929:146936 +$1,20575:17776246,34690929 +$1,20575:18328059,34690929 +k1,20575:18474994,34690929:146935 +k1,20575:21089360,34690929:146935 +k1,20575:21767792,34690929:146935 +k1,20575:25278035,34690929:146935 +k1,20575:25912507,34690929:146884 +k1,20575:27953432,34690929:146935 +k1,20575:30360048,34690929:146935 +k1,20575:32583029,34690929:0 +) +(1,20576:6630773,35556009:25952256,513147,134348 +k1,20575:8006072,35556009:183854 +k1,20575:11698067,35556009:183853 +k1,20575:12873481,35556009:183854 +k1,20575:16265978,35556009:183854 +k1,20575:17506271,35556009:183853 +k1,20575:19756475,35556009:183854 +k1,20575:21009877,35556009:183854 +k1,20575:22250171,35556009:183854 +k1,20575:23896132,35556009:183853 +k1,20575:24739278,35556009:183854 +k1,20575:25942217,35556009:183854 +k1,20575:28020060,35556009:183853 +k1,20575:31923737,35556009:183854 +k1,20575:32583029,35556009:0 +) +(1,20576:6630773,36421089:25952256,513147,138281 +k1,20575:7843626,36421089:193768 +k1,20575:9931384,36421089:193768 +k1,20575:11863167,36421089:193768 +k1,20575:14642330,36421089:193768 +k1,20575:15487526,36421089:193768 +k1,20575:16700379,36421089:193768 +$1,20575:16700379,36421089 +$1,20575:17203040,36421089 +k1,20575:17396808,36421089:193768 +k1,20575:18273462,36421089:193769 +$1,20575:18273462,36421089 +$1,20575:18825275,36421089 +k1,20575:19019043,36421089:193768 +k1,20575:22230744,36421089:193768 +k1,20575:24256899,36421089:193768 +k1,20575:25442227,36421089:193768 +k1,20575:26921811,36421089:193768 +k1,20575:28812961,36421089:193768 +k1,20575:30291235,36421089:193768 +k1,20575:32583029,36421089:0 +) +(1,20576:6630773,37286169:25952256,513147,134348 +k1,20575:8308197,37286169:296580 +k1,20575:12673907,37286169:296580 +k1,20575:14012509,37286169:296580 +k1,20575:17144176,37286169:296580 +k1,20575:19908187,37286169:296580 +k1,20575:21826784,37286169:296581 +k1,20575:22871130,37286169:296580 +k1,20575:26325235,37286169:296580 +k1,20575:29554551,37286169:296580 +k1,20575:30317092,37286169:296580 +k1,20575:32080368,37286169:296580 +$1,20575:32080368,37286169 +$1,20575:32583029,37286169 +k1,20576:32583029,37286169:0 +) +(1,20576:6630773,38151249:25952256,513147,138281 +k1,20575:8110375,38151249:288157 +$1,20575:8110375,38151249 +$1,20575:8662188,38151249 +k1,20575:8950344,38151249:288156 +k1,20575:10230061,38151249:288157 +k1,20575:13103613,38151249:288157 +k1,20575:14043197,38151249:288156 +k1,20575:17901755,38151249:288157 +k1,20575:21205223,38151249:288157 +k1,20575:22874224,38151249:288157 +k1,20575:23867547,38151249:288156 +k1,20575:25103355,38151249:288157 +k1,20575:28226599,38151249:288157 +k1,20575:29533840,38151249:288156 +k1,20575:31189078,38151249:288157 +k1,20576:32583029,38151249:0 +) +(1,20576:6630773,39016329:25952256,505283,122846 +(1,20575:6630773,39016329:0,452978,115847 +r1,20608:11209581,39016329:4578808,568825,115847 +k1,20575:6630773,39016329:-4578808 +) +(1,20575:6630773,39016329:4578808,452978,115847 +k1,20575:6630773,39016329:3277 +h1,20575:11206304,39016329:0,411205,112570 +) +g1,20575:11408810,39016329 +g1,20575:12799484,39016329 +g1,20575:14392664,39016329 +(1,20575:14392664,39016329:0,452978,122846 +r1,20608:18268048,39016329:3875384,575824,122846 +k1,20575:14392664,39016329:-3875384 +) +(1,20575:14392664,39016329:3875384,452978,122846 +k1,20575:14392664,39016329:3277 +h1,20575:18264771,39016329:0,411205,112570 +) +k1,20576:32583029,39016329:14262553 +g1,20576:32583029,39016329 +) +(1,20606:6630773,39881409:25952256,505283,134348 +h1,20605:6630773,39881409:983040,0,0 +k1,20605:8411941,39881409:170293 +k1,20605:11609341,39881409:170292 +k1,20605:14207088,39881409:170293 +(1,20605:14207088,39881409:0,452978,115847 +r1,20608:20192743,39881409:5985655,568825,115847 +k1,20605:14207088,39881409:-5985655 +) +(1,20605:14207088,39881409:5985655,452978,115847 +g1,20605:18430907,39881409 +g1,20605:19134331,39881409 +h1,20605:20189466,39881409:0,411205,112570 +) +k1,20605:20363036,39881409:170293 +k1,20605:21219490,39881409:170292 +k1,20605:24462111,39881409:170293 +k1,20605:26805578,39881409:170293 +k1,20605:27591908,39881409:170292 +k1,20605:28781286,39881409:170293 +k1,20605:32583029,39881409:0 +) +(1,20606:6630773,40746489:25952256,513147,134348 +k1,20605:8507253,40746489:138465 +k1,20605:11017467,40746489:138466 +k1,20605:12669158,40746489:138465 +k1,20605:15846527,40746489:138465 +k1,20605:17004078,40746489:138466 +k1,20605:20280407,40746489:138465 +k1,20605:21078164,40746489:138465 +k1,20605:22235714,40746489:138465 +(1,20605:22235714,40746489:0,414482,115847 +r1,20608:22593980,40746489:358266,530329,115847 +k1,20605:22235714,40746489:-358266 +) +(1,20605:22235714,40746489:358266,414482,115847 +k1,20605:22235714,40746489:3277 +h1,20605:22590703,40746489:0,411205,112570 +) +k1,20605:22732446,40746489:138466 +k1,20605:24062356,40746489:138465 +(1,20605:24062356,40746489:0,414482,115847 +r1,20608:24420622,40746489:358266,530329,115847 +k1,20605:24062356,40746489:-358266 +) +(1,20605:24062356,40746489:358266,414482,115847 +k1,20605:24062356,40746489:3277 +h1,20605:24417345,40746489:0,411205,112570 +) +k1,20605:24559087,40746489:138465 +k1,20605:28045787,40746489:138466 +k1,20605:29829206,40746489:138465 +k1,20605:32583029,40746489:0 +) +(1,20606:6630773,41611569:25952256,513147,138281 +k1,20605:7854028,41611569:204170 +k1,20605:11859940,41611569:204169 +k1,20605:13083195,41611569:204170 +k1,20605:16425229,41611569:204170 +k1,20605:17288690,41611569:204169 +k1,20605:18511945,41611569:204170 +$1,20605:18511945,41611569 +$1,20605:19014606,41611569 +k1,20605:19218776,41611569:204170 +k1,20605:20614391,41611569:204170 +$1,20605:20614391,41611569 +$1,20605:21166204,41611569 +k1,20605:21370373,41611569:204169 +k1,20605:22765988,41611569:204170 +k1,20605:25191829,41611569:204170 +k1,20605:28570562,41611569:204169 +k1,20605:29766292,41611569:204170 +k1,20605:32583029,41611569:0 +) +(1,20606:6630773,42476649:25952256,505283,134348 +g1,20605:8312426,42476649 +g1,20605:10703834,42476649 +h1,20605:11674422,42476649:0,0,0 +k1,20606:32583028,42476649:20649084 +g1,20606:32583028,42476649 +) +(1,20608:6630773,43341729:25952256,513147,134348 +h1,20607:6630773,43341729:983040,0,0 +k1,20607:8402710,43341729:161062 +k1,20607:12244929,43341729:161062 +k1,20607:14833446,43341729:161063 +(1,20607:14833446,43341729:0,452978,115847 +r1,20608:20819101,43341729:5985655,568825,115847 +k1,20607:14833446,43341729:-5985655 +) +(1,20607:14833446,43341729:5985655,452978,115847 +g1,20607:19057265,43341729 +g1,20607:19760689,43341729 +h1,20607:20815824,43341729:0,411205,112570 +) +k1,20607:20980163,43341729:161062 +k1,20607:22427041,43341729:161062 +k1,20607:24761277,43341729:161062 +k1,20607:25538377,43341729:161062 +k1,20607:28166871,43341729:161063 +k1,20607:28987225,43341729:161062 +k1,20607:30167372,43341729:161062 +k1,20608:32583029,43341729:0 +) +(1,20608:6630773,44206809:25952256,513147,134348 +k1,20607:7719961,44206809:224113 +k1,20607:10136254,44206809:224114 +h1,20607:11106842,44206809:0,0,0 +k1,20607:11711719,44206809:224113 +k1,20607:12977854,44206809:224113 +k1,20607:16037054,44206809:224113 +k1,20607:16877206,44206809:224114 +(1,20607:16877206,44206809:0,452978,122846 +r1,20608:20752590,44206809:3875384,575824,122846 +k1,20607:16877206,44206809:-3875384 +) +(1,20607:16877206,44206809:3875384,452978,122846 +k1,20607:16877206,44206809:3277 +h1,20607:20749313,44206809:0,411205,112570 +) +k1,20607:21150373,44206809:224113 +k1,20607:23841917,44206809:224113 +k1,20607:26637007,44206809:224113 +k1,20607:27880206,44206809:224114 +k1,20607:30680539,44206809:224113 +k1,20607:31563944,44206809:224113 +k1,20607:32583029,44206809:0 +) +(1,20608:6630773,45071889:25952256,513147,134348 +k1,20607:8547483,45071889:244231 +k1,20607:11713964,45071889:244231 +k1,20607:16029946,45071889:244230 +k1,20607:17265737,45071889:244231 +k1,20607:19548138,45071889:244231 +k1,20607:21536937,45071889:244231 +k1,20607:22800252,45071889:244230 +$1,20607:22800252,45071889 +$1,20607:23302913,45071889 +k1,20607:23547144,45071889:244231 +k1,20607:25043768,45071889:244231 +k1,20607:27330756,45071889:244231 +k1,20607:30151206,45071889:244230 +k1,20607:31414522,45071889:244231 +k1,20607:32583029,45071889:0 +) +] +(1,20608:32583029,45706769:0,0,0 +g1,20608:32583029,45706769 +) +) +] +(1,20608:6630773,47279633:25952256,0,0 +h1,20608:6630773,47279633:25952256,0,0 +) +] +(1,20608:4262630,4025873:0,0,0 +[1,20608:-473656,4025873:0,0,0 +(1,20608:-473656,-710413:0,0,0 +(1,20608:-473656,-710413:0,0,0 +g1,20608:-473656,-710413 +) +g1,20608:-473656,-710413 ) ] ) ] !36150 -}345 -Input:3747:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3748:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3749:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3750:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}346 Input:3751:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3752:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3753:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3754:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3755:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3756:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3757:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3758:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3759:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{346 -[1,20671:4262630,47279633:28320399,43253760,0 -(1,20671:4262630,4025873:0,0,0 -[1,20671:-473656,4025873:0,0,0 -(1,20671:-473656,-710413:0,0,0 -(1,20671:-473656,-644877:0,0,0 -k1,20671:-473656,-644877:-65536 +{347 +[1,20669:4262630,47279633:28320399,43253760,0 +(1,20669:4262630,4025873:0,0,0 +[1,20669:-473656,4025873:0,0,0 +(1,20669:-473656,-710413:0,0,0 +(1,20669:-473656,-644877:0,0,0 +k1,20669:-473656,-644877:-65536 ) -(1,20671:-473656,4736287:0,0,0 -k1,20671:-473656,4736287:5209943 +(1,20669:-473656,4736287:0,0,0 +k1,20669:-473656,4736287:5209943 ) -g1,20671:-473656,-710413 +g1,20669:-473656,-710413 ) ] ) -[1,20671:6630773,47279633:25952256,43253760,0 -[1,20671:6630773,4812305:25952256,786432,0 -(1,20671:6630773,4812305:25952256,505283,126483 -(1,20671:6630773,4812305:25952256,505283,126483 -g1,20671:3078558,4812305 -[1,20671:3078558,4812305:0,0,0 -(1,20671:3078558,2439708:0,1703936,0 -k1,20671:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20671:2537886,2439708:1179648,16384,0 +[1,20669:6630773,47279633:25952256,43253760,0 +[1,20669:6630773,4812305:25952256,786432,0 +(1,20669:6630773,4812305:25952256,505283,126483 +(1,20669:6630773,4812305:25952256,505283,126483 +g1,20669:3078558,4812305 +[1,20669:3078558,4812305:0,0,0 +(1,20669:3078558,2439708:0,1703936,0 +k1,20669:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20669:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20671:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20669:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20671:3078558,4812305:0,0,0 -(1,20671:3078558,2439708:0,1703936,0 -g1,20671:29030814,2439708 -g1,20671:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20671:36151628,1915420:16384,1179648,0 +[1,20669:3078558,4812305:0,0,0 +(1,20669:3078558,2439708:0,1703936,0 +g1,20669:29030814,2439708 +g1,20669:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20669:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20671:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20669:37855564,2439708:1179648,16384,0 ) ) -k1,20671:3078556,2439708:-34777008 +k1,20669:3078556,2439708:-34777008 ) ] -[1,20671:3078558,4812305:0,0,0 -(1,20671:3078558,49800853:0,16384,2228224 -k1,20671:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20671:2537886,49800853:1179648,16384,0 +[1,20669:3078558,4812305:0,0,0 +(1,20669:3078558,49800853:0,16384,2228224 +k1,20669:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20669:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20671:3078558,51504789:16384,1179648,0 -) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20669:3078558,51504789:16384,1179648,0 +) +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] -) -) -) +) +) +) ] -[1,20671:3078558,4812305:0,0,0 -(1,20671:3078558,49800853:0,16384,2228224 -g1,20671:29030814,49800853 -g1,20671:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20671:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20671:37855564,49800853:1179648,16384,0 -) -) -k1,20671:3078556,49800853:-34777008 -) -] -g1,20671:6630773,4812305 -g1,20671:6630773,4812305 -g1,20671:9104757,4812305 -g1,20671:10472493,4812305 -g1,20671:12746592,4812305 -k1,20671:31387652,4812305:18641060 -) -) -] -[1,20671:6630773,45706769:25952256,40108032,0 -(1,20671:6630773,45706769:25952256,40108032,0 -(1,20671:6630773,45706769:0,0,0 -g1,20671:6630773,45706769 -) -[1,20671:6630773,45706769:25952256,40108032,0 -(1,20610:6630773,6254097:25952256,513147,138281 -k1,20609:9866583,6254097:214600 -k1,20609:13567044,6254097:214601 -k1,20609:15594370,6254097:214600 -k1,20609:17453924,6254097:214600 -k1,20609:20309626,6254097:214601 -k1,20609:21210388,6254097:214600 -$1,20609:21210388,6254097 -$1,20609:21713049,6254097 -k1,20609:21927650,6254097:214601 -k1,20609:23333695,6254097:214600 -$1,20609:23333695,6254097 -$1,20609:23885508,6254097 -k1,20609:24100108,6254097:214600 -k1,20609:25306269,6254097:214601 -k1,20609:28511277,6254097:214600 -k1,20609:32583029,6254097:0 -) -(1,20610:6630773,7119177:25952256,513147,138281 -k1,20609:7788794,7119177:166461 -k1,20609:9993426,7119177:166462 -k1,20609:11904455,7119177:166461 -k1,20609:13090002,7119177:166462 -$1,20609:13090002,7119177 -$1,20609:13641815,7119177 -k1,20609:13808276,7119177:166461 -k1,20609:15227130,7119177:166461 -k1,20609:17436349,7119177:166462 -k1,20609:20179030,7119177:166461 -k1,20609:21364577,7119177:166462 -k1,20609:25016898,7119177:166461 -k1,20609:28378240,7119177:166462 -k1,20609:29741388,7119177:166461 -k1,20609:32583029,7119177:0 -) -(1,20610:6630773,7984257:25952256,513147,126483 -k1,20609:8949483,7984257:243185 -k1,20609:10002039,7984257:243186 -k1,20609:11696846,7984257:243185 -k1,20609:13192424,7984257:243185 -k1,20609:15663178,7984257:243185 -k1,20609:16925449,7984257:243186 -k1,20609:18995778,7984257:243185 -k1,20609:19925125,7984257:243185 -k1,20609:21661221,7984257:243186 -k1,20609:22923491,7984257:243185 -k1,20609:25780907,7984257:243185 -k1,20609:26683384,7984257:243185 -k1,20609:28945079,7984257:243186 -k1,20609:31189078,7984257:243185 -k1,20610:32583029,7984257:0 -) -(1,20610:6630773,8849337:25952256,513147,134348 -(1,20609:6630773,8849337:0,452978,122846 -r1,20671:10857869,8849337:4227096,575824,122846 -k1,20609:6630773,8849337:-4227096 -) -(1,20609:6630773,8849337:4227096,452978,122846 -k1,20609:6630773,8849337:3277 -h1,20609:10854592,8849337:0,411205,112570 -) -k1,20609:11212962,8849337:181423 -k1,20609:12466555,8849337:181424 -k1,20609:13667064,8849337:181424 -k1,20609:15016994,8849337:181423 -k1,20609:18684277,8849337:181423 -k1,20609:20504756,8849337:181424 -k1,20609:21217677,8849337:181424 -k1,20609:24335113,8849337:181423 -k1,20609:25132574,8849337:181423 -k1,20609:26333083,8849337:181424 -k1,20609:29175923,8849337:181423 -k1,20609:31225778,8849337:181424 -k1,20609:32583029,8849337:0 -) -(1,20610:6630773,9714417:25952256,513147,134348 -g1,20609:8002441,9714417 -g1,20609:11222880,9714417 -g1,20609:12413669,9714417 -g1,20609:13631983,9714417 -g1,20609:15484685,9714417 -g1,20609:16299952,9714417 -g1,20609:17518266,9714417 -g1,20609:19962758,9714417 -g1,20609:21439284,9714417 -g1,20609:22829958,9714417 -g1,20609:23645225,9714417 -g1,20609:24863539,9714417 -g1,20609:27941765,9714417 -k1,20610:32583029,9714417:3432125 -g1,20610:32583029,9714417 -) -v1,20614:6630773,10399272:0,393216,0 -(1,20623:6630773,14157624:25952256,4151568,196608 -g1,20623:6630773,14157624 -g1,20623:6630773,14157624 -g1,20623:6434165,14157624 -(1,20623:6434165,14157624:0,4151568,196608 -r1,20671:32779637,14157624:26345472,4348176,196608 -k1,20623:6434165,14157624:-26345472 -) -(1,20623:6434165,14157624:26345472,4151568,196608 -[1,20623:6630773,14157624:25952256,3954960,0 -(1,20616:6630773,10627103:25952256,424439,106246 -(1,20615:6630773,10627103:0,0,0 -g1,20615:6630773,10627103 -g1,20615:6630773,10627103 -g1,20615:6303093,10627103 -(1,20615:6303093,10627103:0,0,0 -) -g1,20615:6630773,10627103 -) -g1,20616:8954451,10627103 -k1,20616:8954451,10627103:0 -h1,20616:9618359,10627103:0,0,0 -k1,20616:32583029,10627103:22964670 -g1,20616:32583029,10627103 -) -(1,20617:6630773,11311958:25952256,424439,112852 -h1,20617:6630773,11311958:0,0,0 -g1,20617:6962727,11311958 -g1,20617:7294681,11311958 -g1,20617:7626635,11311958 -g1,20617:11610083,11311958 -g1,20617:12273991,11311958 -g1,20617:16257439,11311958 -g1,20617:17253301,11311958 -g1,20617:19908933,11311958 -g1,20617:20572841,11311958 -g1,20617:22564565,11311958 -g1,20617:23228473,11311958 -g1,20617:24556289,11311958 -g1,20617:25220197,11311958 -g1,20617:25884105,11311958 -g1,20617:27875829,11311958 -h1,20617:28207783,11311958:0,0,0 -k1,20617:32583029,11311958:4375246 -g1,20617:32583029,11311958 -) -(1,20618:6630773,11996813:25952256,424439,112852 -h1,20618:6630773,11996813:0,0,0 -g1,20618:6962727,11996813 -g1,20618:7294681,11996813 -g1,20618:7626635,11996813 -g1,20618:7958589,11996813 -k1,20618:7958589,11996813:0 -h1,20618:11942036,11996813:0,0,0 -k1,20618:32583028,11996813:20640992 -g1,20618:32583028,11996813 -) -(1,20619:6630773,12681668:25952256,431045,112852 -h1,20619:6630773,12681668:0,0,0 -g1,20619:7626635,12681668 -g1,20619:8622497,12681668 -g1,20619:10946175,12681668 -g1,20619:11610083,12681668 -g1,20619:15593530,12681668 -g1,20619:16257438,12681668 -g1,20619:20572840,12681668 -h1,20619:23560425,12681668:0,0,0 -k1,20619:32583029,12681668:9022604 -g1,20619:32583029,12681668 -) -(1,20620:6630773,13366523:25952256,424439,112852 -h1,20620:6630773,13366523:0,0,0 -g1,20620:7626635,13366523 -g1,20620:8622497,13366523 -g1,20620:10946175,13366523 -g1,20620:11610083,13366523 -g1,20620:18913069,13366523 -g1,20620:19576977,13366523 -g1,20620:21236747,13366523 -g1,20620:21900655,13366523 -k1,20620:21900655,13366523:0 -h1,20620:27875826,13366523:0,0,0 -k1,20620:32583029,13366523:4707203 -g1,20620:32583029,13366523 -) -(1,20621:6630773,14051378:25952256,407923,106246 -h1,20621:6630773,14051378:0,0,0 -g1,20621:7626635,14051378 -g1,20621:8290543,14051378 -h1,20621:8954451,14051378:0,0,0 -k1,20621:32583029,14051378:23628578 -g1,20621:32583029,14051378 -) -] -) -g1,20623:32583029,14157624 -g1,20623:6630773,14157624 -g1,20623:6630773,14157624 -g1,20623:32583029,14157624 -g1,20623:32583029,14157624 -) -h1,20623:6630773,14354232:0,0,0 -(1,20626:6630773,24054563:25952256,9634795,0 -k1,20626:6760463,24054563:129690 -h1,20625:6760463,24054563:0,0,0 -(1,20625:6760463,24054563:25692876,9634795,0 -(1,20625:6760463,24054563:25692851,9634819,0 -(1,20625:6760463,24054563:25692851,9634819,0 -(1,20625:6760463,24054563:0,9634819,0 -(1,20625:6760463,24054563:0,14208860,0 -(1,20625:6760463,24054563:37890292,14208860,0 -) -k1,20625:6760463,24054563:-37890292 -) -) -g1,20625:32453314,24054563 -) -) -) -g1,20626:32453339,24054563 -k1,20626:32583029,24054563:129690 -) -(1,20633:6630773,24919643:25952256,513147,134348 -h1,20632:6630773,24919643:983040,0,0 -k1,20632:9524924,24919643:714424 -k1,20632:11623469,24919643:714425 -k1,20632:13604049,24919643:714424 -k1,20632:14977765,24919643:714424 -k1,20632:18683908,24919643:714424 -k1,20632:23761720,24919643:714425 -k1,20632:27665781,24919643:714424 -k1,20632:30847636,24919643:714424 -k1,20633:32583029,24919643:0 -) -(1,20633:6630773,25784723:25952256,513147,138281 -(1,20632:6630773,25784723:0,452978,115847 -r1,20671:11561293,25784723:4930520,568825,115847 -k1,20632:6630773,25784723:-4930520 -) -(1,20632:6630773,25784723:4930520,452978,115847 -k1,20632:6630773,25784723:3277 -h1,20632:11558016,25784723:0,411205,112570 -) -k1,20632:12097827,25784723:362864 -k1,20632:14449054,25784723:362865 -(1,20632:14449054,25784723:0,452978,115847 -r1,20671:16917591,25784723:2468537,568825,115847 -k1,20632:14449054,25784723:-2468537 -) -(1,20632:14449054,25784723:2468537,452978,115847 -k1,20632:14449054,25784723:3277 -h1,20632:16914314,25784723:0,411205,112570 -) -k1,20632:17280455,25784723:362864 -k1,20632:18174817,25784723:362865 -k1,20632:21123076,25784723:362864 -k1,20632:22792074,25784723:362865 -k1,20632:23806366,25784723:362864 -$1,20632:23806366,25784723 -$1,20632:24309027,25784723 -k1,20632:24671892,25784723:362865 -k1,20632:26226201,25784723:362864 -k1,20632:28022994,25784723:362865 -k1,20632:29037286,25784723:362864 -$1,20632:29037286,25784723 -$1,20632:29589099,25784723 -k1,20632:30125634,25784723:362865 -k1,20632:31116333,25784723:362864 -k1,20632:32583029,25784723:0 -) -(1,20633:6630773,26649803:25952256,513147,126483 -k1,20632:8568319,26649803:240164 -k1,20632:9827568,26649803:240164 -k1,20632:11721206,26649803:240165 -k1,20632:14728955,26649803:240164 -k1,20632:16473170,26649803:240164 -k1,20632:19921977,26649803:240164 -k1,20632:21353587,26649803:240165 -k1,20632:23896031,26649803:240164 -k1,20632:25083846,26649803:240164 -k1,20632:26775632,26649803:240164 -k1,20632:28477905,26649803:240165 -k1,20632:29377361,26649803:240164 -k1,20632:30636610,26649803:240164 -k1,20632:32583029,26649803:0 -) -(1,20633:6630773,27514883:25952256,505283,122846 -k1,20632:9731039,27514883:221925 -(1,20632:9731039,27514883:0,452978,115847 -r1,20671:14661559,27514883:4930520,568825,115847 -k1,20632:9731039,27514883:-4930520 -) -(1,20632:9731039,27514883:4930520,452978,115847 -k1,20632:9731039,27514883:3277 -h1,20632:14658282,27514883:0,411205,112570 -) -k1,20632:15057155,27514883:221926 -(1,20632:15057155,27514883:0,452978,115847 -r1,20671:19987675,27514883:4930520,568825,115847 -k1,20632:15057155,27514883:-4930520 -) -(1,20632:15057155,27514883:4930520,452978,115847 -k1,20632:15057155,27514883:3277 -h1,20632:19984398,27514883:0,411205,112570 -) -k1,20632:20383270,27514883:221925 -(1,20632:20383270,27514883:0,452978,122846 -r1,20671:26017213,27514883:5633943,575824,122846 -k1,20632:20383270,27514883:-5633943 -) -(1,20632:20383270,27514883:5633943,452978,122846 -k1,20632:20383270,27514883:3277 -h1,20632:26013936,27514883:0,411205,112570 -) -k1,20632:26239139,27514883:221926 -k1,20632:27652509,27514883:221925 -(1,20632:27652509,27514883:0,452978,115847 -r1,20671:32583029,27514883:4930520,568825,115847 -k1,20632:27652509,27514883:-4930520 -) -(1,20632:27652509,27514883:4930520,452978,115847 -k1,20632:27652509,27514883:3277 -h1,20632:32579752,27514883:0,411205,112570 -) -k1,20632:32583029,27514883:0 -) -(1,20633:6630773,28379963:25952256,513147,134348 -g1,20632:9052983,28379963 -g1,20632:12020453,28379963 -g1,20632:13613633,28379963 -g1,20632:16137424,28379963 -g1,20632:16988081,28379963 -k1,20633:32583029,28379963:13075089 -g1,20633:32583029,28379963 -) -v1,20635:6630773,29064818:0,393216,0 -(1,20641:6630773,30752089:25952256,2080487,196608 -g1,20641:6630773,30752089 -g1,20641:6630773,30752089 -g1,20641:6434165,30752089 -(1,20641:6434165,30752089:0,2080487,196608 -r1,20671:32779637,30752089:26345472,2277095,196608 -k1,20641:6434165,30752089:-26345472 -) -(1,20641:6434165,30752089:26345472,2080487,196608 -[1,20641:6630773,30752089:25952256,1883879,0 -(1,20637:6630773,29276133:25952256,407923,106246 -(1,20636:6630773,29276133:0,0,0 -g1,20636:6630773,29276133 -g1,20636:6630773,29276133 -g1,20636:6303093,29276133 -(1,20636:6303093,29276133:0,0,0 -) -g1,20636:6630773,29276133 -) -g1,20637:7626635,29276133 -k1,20637:7626635,29276133:0 -h1,20637:8290543,29276133:0,0,0 -k1,20637:32583029,29276133:24292486 -g1,20637:32583029,29276133 -) -(1,20638:6630773,29960988:25952256,424439,112852 -h1,20638:6630773,29960988:0,0,0 -g1,20638:6962727,29960988 -g1,20638:7294681,29960988 -g1,20638:11278129,29960988 -g1,20638:11942037,29960988 -g1,20638:13933761,29960988 -g1,20638:16589393,29960988 -g1,20638:17253301,29960988 -g1,20638:19245025,29960988 -g1,20638:19908933,29960988 -g1,20638:22896519,29960988 -g1,20638:23560427,29960988 -g1,20638:24224335,29960988 -g1,20638:29203644,29960988 -h1,20638:29535598,29960988:0,0,0 -k1,20638:32583029,29960988:3047431 -g1,20638:32583029,29960988 -) -(1,20639:6630773,30645843:25952256,424439,106246 -h1,20639:6630773,30645843:0,0,0 -g1,20639:6962727,30645843 -g1,20639:7294681,30645843 -k1,20639:7294681,30645843:0 -h1,20639:11942036,30645843:0,0,0 -k1,20639:32583028,30645843:20640992 -g1,20639:32583028,30645843 -) -] -) -g1,20641:32583029,30752089 -g1,20641:6630773,30752089 -g1,20641:6630773,30752089 -g1,20641:32583029,30752089 -g1,20641:32583029,30752089 -) -h1,20641:6630773,30948697:0,0,0 -v1,20645:6630773,31633552:0,393216,0 -(1,20651:6630773,33310914:25952256,2070578,196608 -g1,20651:6630773,33310914 -g1,20651:6630773,33310914 -g1,20651:6434165,33310914 -(1,20651:6434165,33310914:0,2070578,196608 -r1,20671:32779637,33310914:26345472,2267186,196608 -k1,20651:6434165,33310914:-26345472 -) -(1,20651:6434165,33310914:26345472,2070578,196608 -[1,20651:6630773,33310914:25952256,1873970,0 -(1,20647:6630773,31834958:25952256,398014,106246 -(1,20646:6630773,31834958:0,0,0 -g1,20646:6630773,31834958 -g1,20646:6630773,31834958 -g1,20646:6303093,31834958 -(1,20646:6303093,31834958:0,0,0 -) -g1,20646:6630773,31834958 -) -g1,20647:7626635,31834958 -k1,20647:7626635,31834958:0 -h1,20647:8290543,31834958:0,0,0 -k1,20647:32583029,31834958:24292486 -g1,20647:32583029,31834958 -) -(1,20648:6630773,32519813:25952256,424439,112852 -h1,20648:6630773,32519813:0,0,0 -g1,20648:6962727,32519813 -g1,20648:7294681,32519813 -g1,20648:11278129,32519813 -g1,20648:11942037,32519813 -g1,20648:13933761,32519813 -g1,20648:16589393,32519813 -g1,20648:17253301,32519813 -g1,20648:19245025,32519813 -g1,20648:19908933,32519813 -g1,20648:24556288,32519813 -g1,20648:25220196,32519813 -g1,20648:25884104,32519813 -g1,20648:29203643,32519813 -h1,20648:29535597,32519813:0,0,0 -k1,20648:32583029,32519813:3047432 -g1,20648:32583029,32519813 -) -(1,20649:6630773,33204668:25952256,424439,106246 -h1,20649:6630773,33204668:0,0,0 -g1,20649:6962727,33204668 -g1,20649:7294681,33204668 -k1,20649:7294681,33204668:0 -h1,20649:11942036,33204668:0,0,0 -k1,20649:32583028,33204668:20640992 -g1,20649:32583028,33204668 -) -] -) -g1,20651:32583029,33310914 -g1,20651:6630773,33310914 -g1,20651:6630773,33310914 -g1,20651:32583029,33310914 -g1,20651:32583029,33310914 -) -h1,20651:6630773,33507522:0,0,0 -v1,20655:6630773,34192377:0,393216,0 -(1,20659:6630773,34509938:25952256,710777,196608 -g1,20659:6630773,34509938 -g1,20659:6630773,34509938 -g1,20659:6434165,34509938 -(1,20659:6434165,34509938:0,710777,196608 -r1,20671:32779637,34509938:26345472,907385,196608 -k1,20659:6434165,34509938:-26345472 -) -(1,20659:6434165,34509938:26345472,710777,196608 -[1,20659:6630773,34509938:25952256,514169,0 -(1,20657:6630773,34403692:25952256,407923,106246 -(1,20656:6630773,34403692:0,0,0 -g1,20656:6630773,34403692 -g1,20656:6630773,34403692 -g1,20656:6303093,34403692 -(1,20656:6303093,34403692:0,0,0 +[1,20669:3078558,4812305:0,0,0 +(1,20669:3078558,49800853:0,16384,2228224 +g1,20669:29030814,49800853 +g1,20669:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20669:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20669:37855564,49800853:1179648,16384,0 +) +) +k1,20669:3078556,49800853:-34777008 +) +] +g1,20669:6630773,4812305 +g1,20669:6630773,4812305 +g1,20669:9104757,4812305 +g1,20669:10472493,4812305 +g1,20669:12746592,4812305 +k1,20669:31387652,4812305:18641060 +) +) +] +[1,20669:6630773,45706769:25952256,40108032,0 +(1,20669:6630773,45706769:25952256,40108032,0 +(1,20669:6630773,45706769:0,0,0 +g1,20669:6630773,45706769 +) +[1,20669:6630773,45706769:25952256,40108032,0 +(1,20608:6630773,6254097:25952256,513147,138281 +k1,20607:9866583,6254097:214600 +k1,20607:13567044,6254097:214601 +k1,20607:15594370,6254097:214600 +k1,20607:17453924,6254097:214600 +k1,20607:20309626,6254097:214601 +k1,20607:21210388,6254097:214600 +$1,20607:21210388,6254097 +$1,20607:21713049,6254097 +k1,20607:21927650,6254097:214601 +k1,20607:23333695,6254097:214600 +$1,20607:23333695,6254097 +$1,20607:23885508,6254097 +k1,20607:24100108,6254097:214600 +k1,20607:25306269,6254097:214601 +k1,20607:28511277,6254097:214600 +k1,20607:32583029,6254097:0 +) +(1,20608:6630773,7119177:25952256,513147,138281 +k1,20607:7788794,7119177:166461 +k1,20607:9993426,7119177:166462 +k1,20607:11904455,7119177:166461 +k1,20607:13090002,7119177:166462 +$1,20607:13090002,7119177 +$1,20607:13641815,7119177 +k1,20607:13808276,7119177:166461 +k1,20607:15227130,7119177:166461 +k1,20607:17436349,7119177:166462 +k1,20607:20179030,7119177:166461 +k1,20607:21364577,7119177:166462 +k1,20607:25016898,7119177:166461 +k1,20607:28378240,7119177:166462 +k1,20607:29741388,7119177:166461 +k1,20607:32583029,7119177:0 +) +(1,20608:6630773,7984257:25952256,513147,126483 +k1,20607:8949483,7984257:243185 +k1,20607:10002039,7984257:243186 +k1,20607:11696846,7984257:243185 +k1,20607:13192424,7984257:243185 +k1,20607:15663178,7984257:243185 +k1,20607:16925449,7984257:243186 +k1,20607:18995778,7984257:243185 +k1,20607:19925125,7984257:243185 +k1,20607:21661221,7984257:243186 +k1,20607:22923491,7984257:243185 +k1,20607:25780907,7984257:243185 +k1,20607:26683384,7984257:243185 +k1,20607:28945079,7984257:243186 +k1,20607:31189078,7984257:243185 +k1,20608:32583029,7984257:0 +) +(1,20608:6630773,8849337:25952256,513147,134348 +(1,20607:6630773,8849337:0,452978,122846 +r1,20669:10857869,8849337:4227096,575824,122846 +k1,20607:6630773,8849337:-4227096 +) +(1,20607:6630773,8849337:4227096,452978,122846 +k1,20607:6630773,8849337:3277 +h1,20607:10854592,8849337:0,411205,112570 +) +k1,20607:11212962,8849337:181423 +k1,20607:12466555,8849337:181424 +k1,20607:13667064,8849337:181424 +k1,20607:15016994,8849337:181423 +k1,20607:18684277,8849337:181423 +k1,20607:20504756,8849337:181424 +k1,20607:21217677,8849337:181424 +k1,20607:24335113,8849337:181423 +k1,20607:25132574,8849337:181423 +k1,20607:26333083,8849337:181424 +k1,20607:29175923,8849337:181423 +k1,20607:31225778,8849337:181424 +k1,20607:32583029,8849337:0 +) +(1,20608:6630773,9714417:25952256,513147,134348 +g1,20607:8002441,9714417 +g1,20607:11222880,9714417 +g1,20607:12413669,9714417 +g1,20607:13631983,9714417 +g1,20607:15484685,9714417 +g1,20607:16299952,9714417 +g1,20607:17518266,9714417 +g1,20607:19962758,9714417 +g1,20607:21439284,9714417 +g1,20607:22829958,9714417 +g1,20607:23645225,9714417 +g1,20607:24863539,9714417 +g1,20607:27941765,9714417 +k1,20608:32583029,9714417:3432125 +g1,20608:32583029,9714417 +) +v1,20612:6630773,10399272:0,393216,0 +(1,20621:6630773,14157624:25952256,4151568,196608 +g1,20621:6630773,14157624 +g1,20621:6630773,14157624 +g1,20621:6434165,14157624 +(1,20621:6434165,14157624:0,4151568,196608 +r1,20669:32779637,14157624:26345472,4348176,196608 +k1,20621:6434165,14157624:-26345472 +) +(1,20621:6434165,14157624:26345472,4151568,196608 +[1,20621:6630773,14157624:25952256,3954960,0 +(1,20614:6630773,10627103:25952256,424439,106246 +(1,20613:6630773,10627103:0,0,0 +g1,20613:6630773,10627103 +g1,20613:6630773,10627103 +g1,20613:6303093,10627103 +(1,20613:6303093,10627103:0,0,0 +) +g1,20613:6630773,10627103 +) +g1,20614:8954451,10627103 +k1,20614:8954451,10627103:0 +h1,20614:9618359,10627103:0,0,0 +k1,20614:32583029,10627103:22964670 +g1,20614:32583029,10627103 +) +(1,20615:6630773,11311958:25952256,424439,112852 +h1,20615:6630773,11311958:0,0,0 +g1,20615:6962727,11311958 +g1,20615:7294681,11311958 +g1,20615:7626635,11311958 +g1,20615:11610083,11311958 +g1,20615:12273991,11311958 +g1,20615:16257439,11311958 +g1,20615:17253301,11311958 +g1,20615:19908933,11311958 +g1,20615:20572841,11311958 +g1,20615:22564565,11311958 +g1,20615:23228473,11311958 +g1,20615:24556289,11311958 +g1,20615:25220197,11311958 +g1,20615:25884105,11311958 +g1,20615:27875829,11311958 +h1,20615:28207783,11311958:0,0,0 +k1,20615:32583029,11311958:4375246 +g1,20615:32583029,11311958 +) +(1,20616:6630773,11996813:25952256,424439,112852 +h1,20616:6630773,11996813:0,0,0 +g1,20616:6962727,11996813 +g1,20616:7294681,11996813 +g1,20616:7626635,11996813 +g1,20616:7958589,11996813 +k1,20616:7958589,11996813:0 +h1,20616:11942036,11996813:0,0,0 +k1,20616:32583028,11996813:20640992 +g1,20616:32583028,11996813 +) +(1,20617:6630773,12681668:25952256,431045,112852 +h1,20617:6630773,12681668:0,0,0 +g1,20617:7626635,12681668 +g1,20617:8622497,12681668 +g1,20617:10946175,12681668 +g1,20617:11610083,12681668 +g1,20617:15593530,12681668 +g1,20617:16257438,12681668 +g1,20617:20572840,12681668 +h1,20617:23560425,12681668:0,0,0 +k1,20617:32583029,12681668:9022604 +g1,20617:32583029,12681668 +) +(1,20618:6630773,13366523:25952256,424439,112852 +h1,20618:6630773,13366523:0,0,0 +g1,20618:7626635,13366523 +g1,20618:8622497,13366523 +g1,20618:10946175,13366523 +g1,20618:11610083,13366523 +g1,20618:18913069,13366523 +g1,20618:19576977,13366523 +g1,20618:21236747,13366523 +g1,20618:21900655,13366523 +k1,20618:21900655,13366523:0 +h1,20618:27875826,13366523:0,0,0 +k1,20618:32583029,13366523:4707203 +g1,20618:32583029,13366523 +) +(1,20619:6630773,14051378:25952256,407923,106246 +h1,20619:6630773,14051378:0,0,0 +g1,20619:7626635,14051378 +g1,20619:8290543,14051378 +h1,20619:8954451,14051378:0,0,0 +k1,20619:32583029,14051378:23628578 +g1,20619:32583029,14051378 +) +] +) +g1,20621:32583029,14157624 +g1,20621:6630773,14157624 +g1,20621:6630773,14157624 +g1,20621:32583029,14157624 +g1,20621:32583029,14157624 +) +h1,20621:6630773,14354232:0,0,0 +(1,20624:6630773,24054563:25952256,9634795,0 +k1,20624:6760463,24054563:129690 +h1,20623:6760463,24054563:0,0,0 +(1,20623:6760463,24054563:25692876,9634795,0 +(1,20623:6760463,24054563:25692851,9634819,0 +(1,20623:6760463,24054563:25692851,9634819,0 +(1,20623:6760463,24054563:0,9634819,0 +(1,20623:6760463,24054563:0,14208860,0 +(1,20623:6760463,24054563:37890292,14208860,0 +) +k1,20623:6760463,24054563:-37890292 +) +) +g1,20623:32453314,24054563 +) +) +) +g1,20624:32453339,24054563 +k1,20624:32583029,24054563:129690 +) +(1,20631:6630773,24919643:25952256,513147,134348 +h1,20630:6630773,24919643:983040,0,0 +k1,20630:9524924,24919643:714424 +k1,20630:11623469,24919643:714425 +k1,20630:13604049,24919643:714424 +k1,20630:14977765,24919643:714424 +k1,20630:18683908,24919643:714424 +k1,20630:23761720,24919643:714425 +k1,20630:27665781,24919643:714424 +k1,20630:30847636,24919643:714424 +k1,20631:32583029,24919643:0 +) +(1,20631:6630773,25784723:25952256,513147,138281 +(1,20630:6630773,25784723:0,452978,115847 +r1,20669:11561293,25784723:4930520,568825,115847 +k1,20630:6630773,25784723:-4930520 +) +(1,20630:6630773,25784723:4930520,452978,115847 +k1,20630:6630773,25784723:3277 +h1,20630:11558016,25784723:0,411205,112570 +) +k1,20630:12097827,25784723:362864 +k1,20630:14449054,25784723:362865 +(1,20630:14449054,25784723:0,452978,115847 +r1,20669:16917591,25784723:2468537,568825,115847 +k1,20630:14449054,25784723:-2468537 +) +(1,20630:14449054,25784723:2468537,452978,115847 +k1,20630:14449054,25784723:3277 +h1,20630:16914314,25784723:0,411205,112570 +) +k1,20630:17280455,25784723:362864 +k1,20630:18174817,25784723:362865 +k1,20630:21123076,25784723:362864 +k1,20630:22792074,25784723:362865 +k1,20630:23806366,25784723:362864 +$1,20630:23806366,25784723 +$1,20630:24309027,25784723 +k1,20630:24671892,25784723:362865 +k1,20630:26226201,25784723:362864 +k1,20630:28022994,25784723:362865 +k1,20630:29037286,25784723:362864 +$1,20630:29037286,25784723 +$1,20630:29589099,25784723 +k1,20630:30125634,25784723:362865 +k1,20630:31116333,25784723:362864 +k1,20630:32583029,25784723:0 +) +(1,20631:6630773,26649803:25952256,513147,126483 +k1,20630:8568319,26649803:240164 +k1,20630:9827568,26649803:240164 +k1,20630:11721206,26649803:240165 +k1,20630:14728955,26649803:240164 +k1,20630:16473170,26649803:240164 +k1,20630:19921977,26649803:240164 +k1,20630:21353587,26649803:240165 +k1,20630:23896031,26649803:240164 +k1,20630:25083846,26649803:240164 +k1,20630:26775632,26649803:240164 +k1,20630:28477905,26649803:240165 +k1,20630:29377361,26649803:240164 +k1,20630:30636610,26649803:240164 +k1,20630:32583029,26649803:0 +) +(1,20631:6630773,27514883:25952256,505283,122846 +k1,20630:9731039,27514883:221925 +(1,20630:9731039,27514883:0,452978,115847 +r1,20669:14661559,27514883:4930520,568825,115847 +k1,20630:9731039,27514883:-4930520 +) +(1,20630:9731039,27514883:4930520,452978,115847 +k1,20630:9731039,27514883:3277 +h1,20630:14658282,27514883:0,411205,112570 +) +k1,20630:15057155,27514883:221926 +(1,20630:15057155,27514883:0,452978,115847 +r1,20669:19987675,27514883:4930520,568825,115847 +k1,20630:15057155,27514883:-4930520 +) +(1,20630:15057155,27514883:4930520,452978,115847 +k1,20630:15057155,27514883:3277 +h1,20630:19984398,27514883:0,411205,112570 +) +k1,20630:20383270,27514883:221925 +(1,20630:20383270,27514883:0,452978,122846 +r1,20669:26017213,27514883:5633943,575824,122846 +k1,20630:20383270,27514883:-5633943 +) +(1,20630:20383270,27514883:5633943,452978,122846 +k1,20630:20383270,27514883:3277 +h1,20630:26013936,27514883:0,411205,112570 +) +k1,20630:26239139,27514883:221926 +k1,20630:27652509,27514883:221925 +(1,20630:27652509,27514883:0,452978,115847 +r1,20669:32583029,27514883:4930520,568825,115847 +k1,20630:27652509,27514883:-4930520 +) +(1,20630:27652509,27514883:4930520,452978,115847 +k1,20630:27652509,27514883:3277 +h1,20630:32579752,27514883:0,411205,112570 +) +k1,20630:32583029,27514883:0 +) +(1,20631:6630773,28379963:25952256,513147,134348 +g1,20630:9052983,28379963 +g1,20630:12020453,28379963 +g1,20630:13613633,28379963 +g1,20630:16137424,28379963 +g1,20630:16988081,28379963 +k1,20631:32583029,28379963:13075089 +g1,20631:32583029,28379963 +) +v1,20633:6630773,29064818:0,393216,0 +(1,20639:6630773,30752089:25952256,2080487,196608 +g1,20639:6630773,30752089 +g1,20639:6630773,30752089 +g1,20639:6434165,30752089 +(1,20639:6434165,30752089:0,2080487,196608 +r1,20669:32779637,30752089:26345472,2277095,196608 +k1,20639:6434165,30752089:-26345472 +) +(1,20639:6434165,30752089:26345472,2080487,196608 +[1,20639:6630773,30752089:25952256,1883879,0 +(1,20635:6630773,29276133:25952256,407923,106246 +(1,20634:6630773,29276133:0,0,0 +g1,20634:6630773,29276133 +g1,20634:6630773,29276133 +g1,20634:6303093,29276133 +(1,20634:6303093,29276133:0,0,0 +) +g1,20634:6630773,29276133 +) +g1,20635:7626635,29276133 +k1,20635:7626635,29276133:0 +h1,20635:8290543,29276133:0,0,0 +k1,20635:32583029,29276133:24292486 +g1,20635:32583029,29276133 +) +(1,20636:6630773,29960988:25952256,424439,112852 +h1,20636:6630773,29960988:0,0,0 +g1,20636:6962727,29960988 +g1,20636:7294681,29960988 +g1,20636:11278129,29960988 +g1,20636:11942037,29960988 +g1,20636:13933761,29960988 +g1,20636:16589393,29960988 +g1,20636:17253301,29960988 +g1,20636:19245025,29960988 +g1,20636:19908933,29960988 +g1,20636:22896519,29960988 +g1,20636:23560427,29960988 +g1,20636:24224335,29960988 +g1,20636:29203644,29960988 +h1,20636:29535598,29960988:0,0,0 +k1,20636:32583029,29960988:3047431 +g1,20636:32583029,29960988 +) +(1,20637:6630773,30645843:25952256,424439,106246 +h1,20637:6630773,30645843:0,0,0 +g1,20637:6962727,30645843 +g1,20637:7294681,30645843 +k1,20637:7294681,30645843:0 +h1,20637:11942036,30645843:0,0,0 +k1,20637:32583028,30645843:20640992 +g1,20637:32583028,30645843 +) +] +) +g1,20639:32583029,30752089 +g1,20639:6630773,30752089 +g1,20639:6630773,30752089 +g1,20639:32583029,30752089 +g1,20639:32583029,30752089 +) +h1,20639:6630773,30948697:0,0,0 +v1,20643:6630773,31633552:0,393216,0 +(1,20649:6630773,33310914:25952256,2070578,196608 +g1,20649:6630773,33310914 +g1,20649:6630773,33310914 +g1,20649:6434165,33310914 +(1,20649:6434165,33310914:0,2070578,196608 +r1,20669:32779637,33310914:26345472,2267186,196608 +k1,20649:6434165,33310914:-26345472 +) +(1,20649:6434165,33310914:26345472,2070578,196608 +[1,20649:6630773,33310914:25952256,1873970,0 +(1,20645:6630773,31834958:25952256,398014,106246 +(1,20644:6630773,31834958:0,0,0 +g1,20644:6630773,31834958 +g1,20644:6630773,31834958 +g1,20644:6303093,31834958 +(1,20644:6303093,31834958:0,0,0 +) +g1,20644:6630773,31834958 +) +g1,20645:7626635,31834958 +k1,20645:7626635,31834958:0 +h1,20645:8290543,31834958:0,0,0 +k1,20645:32583029,31834958:24292486 +g1,20645:32583029,31834958 +) +(1,20646:6630773,32519813:25952256,424439,112852 +h1,20646:6630773,32519813:0,0,0 +g1,20646:6962727,32519813 +g1,20646:7294681,32519813 +g1,20646:11278129,32519813 +g1,20646:11942037,32519813 +g1,20646:13933761,32519813 +g1,20646:16589393,32519813 +g1,20646:17253301,32519813 +g1,20646:19245025,32519813 +g1,20646:19908933,32519813 +g1,20646:24556288,32519813 +g1,20646:25220196,32519813 +g1,20646:25884104,32519813 +g1,20646:29203643,32519813 +h1,20646:29535597,32519813:0,0,0 +k1,20646:32583029,32519813:3047432 +g1,20646:32583029,32519813 +) +(1,20647:6630773,33204668:25952256,424439,106246 +h1,20647:6630773,33204668:0,0,0 +g1,20647:6962727,33204668 +g1,20647:7294681,33204668 +k1,20647:7294681,33204668:0 +h1,20647:11942036,33204668:0,0,0 +k1,20647:32583028,33204668:20640992 +g1,20647:32583028,33204668 +) +] +) +g1,20649:32583029,33310914 +g1,20649:6630773,33310914 +g1,20649:6630773,33310914 +g1,20649:32583029,33310914 +g1,20649:32583029,33310914 +) +h1,20649:6630773,33507522:0,0,0 +v1,20653:6630773,34192377:0,393216,0 +(1,20657:6630773,34509938:25952256,710777,196608 +g1,20657:6630773,34509938 +g1,20657:6630773,34509938 +g1,20657:6434165,34509938 +(1,20657:6434165,34509938:0,710777,196608 +r1,20669:32779637,34509938:26345472,907385,196608 +k1,20657:6434165,34509938:-26345472 +) +(1,20657:6434165,34509938:26345472,710777,196608 +[1,20657:6630773,34509938:25952256,514169,0 +(1,20655:6630773,34403692:25952256,407923,106246 +(1,20654:6630773,34403692:0,0,0 +g1,20654:6630773,34403692 +g1,20654:6630773,34403692 +g1,20654:6303093,34403692 +(1,20654:6303093,34403692:0,0,0 ) -g1,20656:6630773,34403692 -) -g1,20657:7626635,34403692 -g1,20657:8290543,34403692 -h1,20657:8954451,34403692:0,0,0 -k1,20657:32583029,34403692:23628578 -g1,20657:32583029,34403692 +g1,20654:6630773,34403692 +) +g1,20655:7626635,34403692 +g1,20655:8290543,34403692 +h1,20655:8954451,34403692:0,0,0 +k1,20655:32583029,34403692:23628578 +g1,20655:32583029,34403692 ) ] ) -g1,20659:32583029,34509938 -g1,20659:6630773,34509938 -g1,20659:6630773,34509938 -g1,20659:32583029,34509938 -g1,20659:32583029,34509938 +g1,20657:32583029,34509938 +g1,20657:6630773,34509938 +g1,20657:6630773,34509938 +g1,20657:32583029,34509938 +g1,20657:32583029,34509938 ) -h1,20659:6630773,34706546:0,0,0 -(1,20662:6630773,44406877:25952256,9634795,0 -k1,20662:6760463,44406877:129690 -h1,20661:6760463,44406877:0,0,0 -(1,20661:6760463,44406877:25692876,9634795,0 -(1,20661:6760463,44406877:25692851,9634819,0 -(1,20661:6760463,44406877:25692851,9634819,0 -(1,20661:6760463,44406877:0,9634819,0 -(1,20661:6760463,44406877:0,14208860,0 -(1,20661:6760463,44406877:37890292,14208860,0 +h1,20657:6630773,34706546:0,0,0 +(1,20660:6630773,44406877:25952256,9634795,0 +k1,20660:6760463,44406877:129690 +h1,20659:6760463,44406877:0,0,0 +(1,20659:6760463,44406877:25692876,9634795,0 +(1,20659:6760463,44406877:25692851,9634819,0 +(1,20659:6760463,44406877:25692851,9634819,0 +(1,20659:6760463,44406877:0,9634819,0 +(1,20659:6760463,44406877:0,14208860,0 +(1,20659:6760463,44406877:37890292,14208860,0 ) -k1,20661:6760463,44406877:-37890292 +k1,20659:6760463,44406877:-37890292 ) ) -g1,20661:32453314,44406877 +g1,20659:32453314,44406877 ) ) ) -g1,20662:32453339,44406877 -k1,20662:32583029,44406877:129690 +g1,20660:32453339,44406877 +k1,20660:32583029,44406877:129690 ) ] -(1,20671:32583029,45706769:0,0,0 -g1,20671:32583029,45706769 +(1,20669:32583029,45706769:0,0,0 +g1,20669:32583029,45706769 ) ) ] -(1,20671:6630773,47279633:25952256,0,0 -h1,20671:6630773,47279633:25952256,0,0 +(1,20669:6630773,47279633:25952256,0,0 +h1,20669:6630773,47279633:25952256,0,0 ) ] -(1,20671:4262630,4025873:0,0,0 -[1,20671:-473656,4025873:0,0,0 -(1,20671:-473656,-710413:0,0,0 -(1,20671:-473656,-710413:0,0,0 -g1,20671:-473656,-710413 +(1,20669:4262630,4025873:0,0,0 +[1,20669:-473656,4025873:0,0,0 +(1,20669:-473656,-710413:0,0,0 +(1,20669:-473656,-710413:0,0,0 +g1,20669:-473656,-710413 ) -g1,20671:-473656,-710413 +g1,20669:-473656,-710413 ) ] ) ] !18110 -}346 -Input:3756:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3757:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3758:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}347 +Input:3760:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3761:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3762:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{347 -[1,20742:4262630,47279633:28320399,43253760,0 -(1,20742:4262630,4025873:0,0,0 -[1,20742:-473656,4025873:0,0,0 -(1,20742:-473656,-710413:0,0,0 -(1,20742:-473656,-644877:0,0,0 -k1,20742:-473656,-644877:-65536 +{348 +[1,20740:4262630,47279633:28320399,43253760,0 +(1,20740:4262630,4025873:0,0,0 +[1,20740:-473656,4025873:0,0,0 +(1,20740:-473656,-710413:0,0,0 +(1,20740:-473656,-644877:0,0,0 +k1,20740:-473656,-644877:-65536 ) -(1,20742:-473656,4736287:0,0,0 -k1,20742:-473656,4736287:5209943 +(1,20740:-473656,4736287:0,0,0 +k1,20740:-473656,4736287:5209943 ) -g1,20742:-473656,-710413 +g1,20740:-473656,-710413 ) ] ) -[1,20742:6630773,47279633:25952256,43253760,0 -[1,20742:6630773,4812305:25952256,786432,0 -(1,20742:6630773,4812305:25952256,513147,126483 -(1,20742:6630773,4812305:25952256,513147,126483 -g1,20742:3078558,4812305 -[1,20742:3078558,4812305:0,0,0 -(1,20742:3078558,2439708:0,1703936,0 -k1,20742:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20742:2537886,2439708:1179648,16384,0 +[1,20740:6630773,47279633:25952256,43253760,0 +[1,20740:6630773,4812305:25952256,786432,0 +(1,20740:6630773,4812305:25952256,513147,126483 +(1,20740:6630773,4812305:25952256,513147,126483 +g1,20740:3078558,4812305 +[1,20740:3078558,4812305:0,0,0 +(1,20740:3078558,2439708:0,1703936,0 +k1,20740:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20740:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20742:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20740:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20742:3078558,4812305:0,0,0 -(1,20742:3078558,2439708:0,1703936,0 -g1,20742:29030814,2439708 -g1,20742:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20742:36151628,1915420:16384,1179648,0 +[1,20740:3078558,4812305:0,0,0 +(1,20740:3078558,2439708:0,1703936,0 +g1,20740:29030814,2439708 +g1,20740:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20740:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20742:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20740:37855564,2439708:1179648,16384,0 ) ) -k1,20742:3078556,2439708:-34777008 +k1,20740:3078556,2439708:-34777008 ) ] -[1,20742:3078558,4812305:0,0,0 -(1,20742:3078558,49800853:0,16384,2228224 -k1,20742:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20742:2537886,49800853:1179648,16384,0 +[1,20740:3078558,4812305:0,0,0 +(1,20740:3078558,49800853:0,16384,2228224 +k1,20740:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20740:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20742:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20740:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20742:3078558,4812305:0,0,0 -(1,20742:3078558,49800853:0,16384,2228224 -g1,20742:29030814,49800853 -g1,20742:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20742:36151628,51504789:16384,1179648,0 +[1,20740:3078558,4812305:0,0,0 +(1,20740:3078558,49800853:0,16384,2228224 +g1,20740:29030814,49800853 +g1,20740:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20740:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20742:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20740:37855564,49800853:1179648,16384,0 ) ) -k1,20742:3078556,49800853:-34777008 +k1,20740:3078556,49800853:-34777008 ) ] -g1,20742:6630773,4812305 -k1,20742:21386205,4812305:13560055 -g1,20742:21999622,4812305 -g1,20742:25611966,4812305 -g1,20742:28956923,4812305 -g1,20742:29772190,4812305 -) -) -] -[1,20742:6630773,45706769:25952256,40108032,0 -(1,20742:6630773,45706769:25952256,40108032,0 -(1,20742:6630773,45706769:0,0,0 -g1,20742:6630773,45706769 -) -[1,20742:6630773,45706769:25952256,40108032,0 -(1,20669:6630773,6254097:25952256,513147,134348 -h1,20668:6630773,6254097:983040,0,0 -k1,20668:8456037,6254097:214389 -k1,20668:9689511,6254097:214389 -k1,20668:11270982,6254097:214390 -k1,20668:12152527,6254097:214389 -(1,20668:12152527,6254097:0,414482,115847 -r1,20742:13917640,6254097:1765113,530329,115847 -k1,20668:12152527,6254097:-1765113 -) -(1,20668:12152527,6254097:1765113,414482,115847 -k1,20668:12152527,6254097:3277 -h1,20668:13914363,6254097:0,411205,112570 -) -k1,20668:14132029,6254097:214389 -k1,20668:15630924,6254097:214389 -k1,20668:16660581,6254097:214389 -k1,20668:21269160,6254097:214390 -k1,20668:22292919,6254097:214389 -k1,20668:22863168,6254097:214389 -k1,20668:24950576,6254097:214389 -k1,20668:27676305,6254097:214389 -k1,20668:30476090,6254097:214390 -k1,20668:31341907,6254097:214389 -(1,20668:31341907,6254097:0,414482,115847 -r1,20742:31700173,6254097:358266,530329,115847 -k1,20668:31341907,6254097:-358266 -) -(1,20668:31341907,6254097:358266,414482,115847 -k1,20668:31341907,6254097:3277 -h1,20668:31696896,6254097:0,411205,112570 -) -k1,20668:31914562,6254097:214389 -k1,20669:32583029,6254097:0 -) -(1,20669:6630773,7119177:25952256,513147,134348 -(1,20668:6630773,7119177:0,414482,115847 -r1,20742:6989039,7119177:358266,530329,115847 -k1,20668:6630773,7119177:-358266 -) -(1,20668:6630773,7119177:358266,414482,115847 -k1,20668:6630773,7119177:3277 -h1,20668:6985762,7119177:0,411205,112570 -) -g1,20668:7188268,7119177 -g1,20668:10735731,7119177 -g1,20668:13402391,7119177 -g1,20668:14133117,7119177 -g1,20668:15618162,7119177 -k1,20669:32583029,7119177:13722801 -g1,20669:32583029,7119177 -) -v1,20671:6630773,7804032:0,393216,0 -(1,20678:6630773,10172855:25952256,2762039,196608 -g1,20678:6630773,10172855 -g1,20678:6630773,10172855 -g1,20678:6434165,10172855 -(1,20678:6434165,10172855:0,2762039,196608 -r1,20742:32779637,10172855:26345472,2958647,196608 -k1,20678:6434165,10172855:-26345472 -) -(1,20678:6434165,10172855:26345472,2762039,196608 -[1,20678:6630773,10172855:25952256,2565431,0 -(1,20673:6630773,8005438:25952256,398014,106246 -(1,20672:6630773,8005438:0,0,0 -g1,20672:6630773,8005438 -g1,20672:6630773,8005438 -g1,20672:6303093,8005438 -(1,20672:6303093,8005438:0,0,0 -) -g1,20672:6630773,8005438 -) -g1,20673:7626635,8005438 -k1,20673:7626635,8005438:0 -h1,20673:8290543,8005438:0,0,0 -k1,20673:32583029,8005438:24292486 -g1,20673:32583029,8005438 -) -(1,20674:6630773,8690293:25952256,424439,112852 -h1,20674:6630773,8690293:0,0,0 -g1,20674:6962727,8690293 -g1,20674:7294681,8690293 -g1,20674:11278129,8690293 -g1,20674:11942037,8690293 -k1,20674:11942037,8690293:0 -h1,20674:13601807,8690293:0,0,0 -k1,20674:32583029,8690293:18981222 -g1,20674:32583029,8690293 -) -(1,20675:6630773,9375148:25952256,424439,112852 -h1,20675:6630773,9375148:0,0,0 -g1,20675:6962727,9375148 -g1,20675:7294681,9375148 -g1,20675:7626635,9375148 -g1,20675:7958589,9375148 -g1,20675:8290543,9375148 -g1,20675:8622497,9375148 -g1,20675:8954451,9375148 -g1,20675:9286405,9375148 -g1,20675:9618359,9375148 -g1,20675:12273991,9375148 -g1,20675:12937899,9375148 -g1,20675:14929623,9375148 -g1,20675:15593531,9375148 -g1,20675:20240886,9375148 -g1,20675:22564564,9375148 -g1,20675:23228472,9375148 -g1,20675:26548011,9375148 -h1,20675:26879965,9375148:0,0,0 -k1,20675:32583029,9375148:5703064 -g1,20675:32583029,9375148 -) -(1,20676:6630773,10060003:25952256,424439,112852 -h1,20676:6630773,10060003:0,0,0 -g1,20676:6962727,10060003 -g1,20676:7294681,10060003 -g1,20676:13269852,10060003 -g1,20676:13933760,10060003 -g1,20676:16589392,10060003 -g1,20676:19576977,10060003 -g1,20676:20240885,10060003 -h1,20676:23892378,10060003:0,0,0 -k1,20676:32583029,10060003:8690651 -g1,20676:32583029,10060003 -) -] -) -g1,20678:32583029,10172855 -g1,20678:6630773,10172855 -g1,20678:6630773,10172855 -g1,20678:32583029,10172855 -g1,20678:32583029,10172855 -) -h1,20678:6630773,10369463:0,0,0 -v1,20682:6630773,11054318:0,393216,0 -(1,20689:6630773,13433050:25952256,2771948,196608 -g1,20689:6630773,13433050 -g1,20689:6630773,13433050 -g1,20689:6434165,13433050 -(1,20689:6434165,13433050:0,2771948,196608 -r1,20742:32779637,13433050:26345472,2968556,196608 -k1,20689:6434165,13433050:-26345472 -) -(1,20689:6434165,13433050:26345472,2771948,196608 -[1,20689:6630773,13433050:25952256,2575340,0 -(1,20684:6630773,11265633:25952256,407923,106246 -(1,20683:6630773,11265633:0,0,0 -g1,20683:6630773,11265633 -g1,20683:6630773,11265633 -g1,20683:6303093,11265633 -(1,20683:6303093,11265633:0,0,0 -) -g1,20683:6630773,11265633 -) -g1,20684:7626635,11265633 -k1,20684:7626635,11265633:0 -h1,20684:8290543,11265633:0,0,0 -k1,20684:32583029,11265633:24292486 -g1,20684:32583029,11265633 -) -(1,20685:6630773,11950488:25952256,424439,112852 -h1,20685:6630773,11950488:0,0,0 -g1,20685:6962727,11950488 -g1,20685:7294681,11950488 -g1,20685:11278129,11950488 -g1,20685:11942037,11950488 -k1,20685:11942037,11950488:0 -h1,20685:13601807,11950488:0,0,0 -k1,20685:32583029,11950488:18981222 -g1,20685:32583029,11950488 -) -(1,20686:6630773,12635343:25952256,424439,112852 -h1,20686:6630773,12635343:0,0,0 -g1,20686:6962727,12635343 -g1,20686:7294681,12635343 -g1,20686:7626635,12635343 -g1,20686:7958589,12635343 -g1,20686:8290543,12635343 -g1,20686:8622497,12635343 -g1,20686:8954451,12635343 -g1,20686:9286405,12635343 -g1,20686:9618359,12635343 -g1,20686:12273991,12635343 -g1,20686:12937899,12635343 -g1,20686:14929623,12635343 -g1,20686:15593531,12635343 -g1,20686:20240886,12635343 -g1,20686:22564564,12635343 -g1,20686:23228472,12635343 -g1,20686:26548011,12635343 -h1,20686:26879965,12635343:0,0,0 -k1,20686:32583029,12635343:5703064 -g1,20686:32583029,12635343 -) -(1,20687:6630773,13320198:25952256,424439,112852 -h1,20687:6630773,13320198:0,0,0 -g1,20687:6962727,13320198 -g1,20687:7294681,13320198 -g1,20687:13269852,13320198 -g1,20687:13933760,13320198 -g1,20687:16589392,13320198 -g1,20687:19576977,13320198 -g1,20687:20240885,13320198 -h1,20687:23892378,13320198:0,0,0 -k1,20687:32583029,13320198:8690651 -g1,20687:32583029,13320198 -) -] -) -g1,20689:32583029,13433050 -g1,20689:6630773,13433050 -g1,20689:6630773,13433050 -g1,20689:32583029,13433050 -g1,20689:32583029,13433050 -) -h1,20689:6630773,13629658:0,0,0 -v1,20693:6630773,14314513:0,393216,0 -(1,20697:6630773,14632074:25952256,710777,196608 -g1,20697:6630773,14632074 -g1,20697:6630773,14632074 -g1,20697:6434165,14632074 -(1,20697:6434165,14632074:0,710777,196608 -r1,20742:32779637,14632074:26345472,907385,196608 -k1,20697:6434165,14632074:-26345472 -) -(1,20697:6434165,14632074:26345472,710777,196608 -[1,20697:6630773,14632074:25952256,514169,0 -(1,20695:6630773,14525828:25952256,407923,106246 -(1,20694:6630773,14525828:0,0,0 -g1,20694:6630773,14525828 -g1,20694:6630773,14525828 -g1,20694:6303093,14525828 -(1,20694:6303093,14525828:0,0,0 -) -g1,20694:6630773,14525828 -) -g1,20695:7626635,14525828 -g1,20695:8290543,14525828 -h1,20695:8954451,14525828:0,0,0 -k1,20695:32583029,14525828:23628578 -g1,20695:32583029,14525828 -) -] -) -g1,20697:32583029,14632074 -g1,20697:6630773,14632074 -g1,20697:6630773,14632074 -g1,20697:32583029,14632074 -g1,20697:32583029,14632074 -) -h1,20697:6630773,14828682:0,0,0 -(1,20700:6630773,24529013:25952256,9634795,0 -k1,20700:6760463,24529013:129690 -h1,20699:6760463,24529013:0,0,0 -(1,20699:6760463,24529013:25692876,9634795,0 -(1,20699:6760463,24529013:25692851,9634819,0 -(1,20699:6760463,24529013:25692851,9634819,0 -(1,20699:6760463,24529013:0,9634819,0 -(1,20699:6760463,24529013:0,14208860,0 -(1,20699:6760463,24529013:37890292,14208860,0 -) -k1,20699:6760463,24529013:-37890292 -) -) -g1,20699:32453314,24529013 -) -) -) -g1,20700:32453339,24529013 -k1,20700:32583029,24529013:129690 -) -v1,20709:6630773,25394093:0,393216,0 -(1,20710:6630773,30987897:25952256,5987020,0 -g1,20710:6630773,30987897 -g1,20710:6237557,30987897 -r1,20742:6368629,30987897:131072,5987020,0 -g1,20710:6567858,30987897 -g1,20710:6764466,30987897 -[1,20710:6764466,30987897:25818563,5987020,0 -(1,20710:6764466,25702391:25818563,701514,196608 -(1,20709:6764466,25702391:0,701514,196608 -r1,20742:7761522,25702391:997056,898122,196608 -k1,20709:6764466,25702391:-997056 -) -(1,20709:6764466,25702391:997056,701514,196608 -) -k1,20709:7998255,25702391:236733 -k1,20709:8325935,25702391:327680 -k1,20709:9190503,25702391:236733 -k1,20709:10446321,25702391:236733 -k1,20709:12050135,25702391:236733 -k1,20709:12946159,25702391:236732 -k1,20709:15907879,25702391:236733 -k1,20709:17640144,25702391:236733 -k1,20709:20348240,25702391:236733 -k1,20709:22402286,25702391:236733 -k1,20709:26286098,25702391:236733 -k1,20709:27182123,25702391:236733 -$1,20709:27182123,25702391 -$1,20709:27733936,25702391 -k1,20709:27970669,25702391:236733 -k1,20709:29016771,25702391:236732 -$1,20709:29016771,25702391 -$1,20709:29519432,25702391 -k1,20709:29756165,25702391:236733 -k1,20709:31184343,25702391:236733 -k1,20709:32080368,25702391:236733 -$1,20709:32080368,25702391 -$1,20709:32583029,25702391 -k1,20710:32583029,25702391:0 -) -(1,20710:6764466,26567471:25818563,615216,138281 -k1,20709:7763825,26567471:189989 -$1,20709:7763825,26567471 -$1,20709:8315638,26567471 -k1,20709:8505626,26567471:189988 -k1,20709:9311653,26567471:189989 -k1,20709:11103342,26567471:189989 -k1,20709:12990713,26567471:189989 -k1,20709:14716210,26567471:189988 -k1,20709:17668542,26567471:189989 -k1,20709:19570987,26567471:189989 -k1,20709:21433455,26567471:189989 -k1,20709:23090139,26567471:189988 -k1,20709:23746089,26567471:189989 -$1,20709:23746089,26567471 -(1,20709:24240230,26292190:311689,339935,0 -) -$1,20709:24551919,26567471 -k1,20709:24741908,26567471:189989 -k1,20709:25463394,26567471:189989 -k1,20709:29107785,26567471:189988 -k1,20709:30678618,26567471:189989 -k1,20709:31400104,26567471:189989 -k1,20709:32583029,26567471:0 -) -(1,20710:6764466,27432551:25818563,505283,126483 -k1,20709:7612451,27432551:196557 -k1,20709:8828094,27432551:196558 -k1,20709:12764135,27432551:196557 -k1,20709:14245199,27432551:196558 -$1,20709:14245199,27432551 -$1,20709:14747860,27432551 -k1,20709:14944417,27432551:196557 -k1,20709:17151620,27432551:196558 -k1,20709:18339737,27432551:196557 -k1,20709:20847750,27432551:196558 -k1,20709:22900287,27432551:196557 -k1,20709:24031388,27432551:196558 -k1,20709:24910830,27432551:196557 -k1,20709:28232145,27432551:196558 -k1,20709:30888924,27432551:196557 -k1,20709:32583029,27432551:0 -) -(1,20710:6764466,28297631:25818563,505283,134348 -k1,20709:8068305,28297631:234291 -k1,20709:9368867,28297631:234291 -k1,20709:11913302,28297631:234291 -k1,20709:12799021,28297631:234291 -k1,20709:16852751,28297631:234292 -k1,20709:19029529,28297631:234291 -k1,20709:20467061,28297631:234291 -k1,20709:24614507,28297631:234291 -k1,20709:25614914,28297631:234291 -k1,20709:29757117,28297631:234291 -k1,20709:32583029,28297631:0 -) -(1,20710:6764466,29162711:25818563,505283,138281 -k1,20709:7606562,29162711:226058 -k1,20709:8851705,29162711:226058 -k1,20709:10467127,29162711:226059 -k1,20709:11224682,29162711:226058 -k1,20709:14650208,29162711:226058 -k1,20709:15527695,29162711:226059 -$1,20709:15527695,29162711 -$1,20709:16079508,29162711 -k1,20709:16479236,29162711:226058 -k1,20709:17755181,29162711:226058 -k1,20709:20259926,29162711:226058 -h1,20709:21230514,29162711:0,0,0 -k1,20709:21456573,29162711:226059 -k1,20709:22492001,29162711:226058 -k1,20709:24216212,29162711:226058 -h1,20709:25411589,29162711:0,0,0 -k1,20709:25637647,29162711:226058 -k1,20709:26546591,29162711:226059 -k1,20709:29122770,29162711:226058 -k1,20709:29704688,29162711:226058 -k1,20709:32583029,29162711:0 -) -(1,20710:6764466,30027791:25818563,513147,134348 -k1,20709:8586848,30027791:240343 -k1,20709:10320757,30027791:240343 -k1,20709:11247262,30027791:240343 -k1,20709:13880979,30027791:240342 -k1,20709:16852207,30027791:240343 -k1,20709:18016608,30027791:240343 -k1,20709:20650326,30027791:240343 -k1,20709:23202779,30027791:240343 -k1,20709:26052766,30027791:240343 -k1,20709:27484553,30027791:240342 -k1,20709:29681146,30027791:240343 -k1,20709:31689118,30027791:240466 -k1,20709:32583029,30027791:0 -) -(1,20710:6764466,30892871:25818563,513147,95026 -g1,20709:9869561,30892871 -g1,20709:11016441,30892871 -g1,20709:14442663,30892871 -k1,20710:32583029,30892871:14280951 -g1,20710:32583029,30892871 -) -] -g1,20710:32583029,30987897 -) -h1,20710:6630773,30987897:0,0,0 -(1,20713:6630773,31852977:25952256,513147,126483 -h1,20712:6630773,31852977:983040,0,0 -k1,20712:9270509,31852977:177548 -k1,20712:10620496,31852977:177548 -k1,20712:14368444,31852977:177547 -k1,20712:17387633,31852977:177548 -k1,20712:20324247,31852977:177548 -k1,20712:21520880,31852977:177548 -k1,20712:23964008,31852977:177548 -k1,20712:24673053,31852977:177548 -k1,20712:25502028,31852977:177547 -k1,20712:27032239,31852977:177548 -$1,20712:27032239,31852977 -$1,20712:27534900,31852977 -k1,20712:27712448,31852977:177548 -k1,20712:28576158,31852977:177548 -k1,20712:32583029,31852977:0 -) -(1,20713:6630773,32718057:25952256,513147,138281 -k1,20712:8083353,32718057:261135 -$1,20712:8083353,32718057 -$1,20712:8635166,32718057 -k1,20712:8896301,32718057:261135 -k1,20712:9843597,32718057:261134 -k1,20712:13669235,32718057:261135 -k1,20712:16312604,32718057:261135 -(1,20712:16312604,32718057:0,452978,115847 -r1,20742:17374293,32718057:1061689,568825,115847 -k1,20712:16312604,32718057:-1061689 -) -(1,20712:16312604,32718057:1061689,452978,115847 -k1,20712:16312604,32718057:3277 -h1,20712:17371016,32718057:0,411205,112570 -) -k1,20712:17635428,32718057:261135 -k1,20712:19122741,32718057:261134 -k1,20712:21856549,32718057:261135 -k1,20712:22800569,32718057:261135 -(1,20712:22800569,32718057:0,452978,115847 -r1,20742:23862258,32718057:1061689,568825,115847 -k1,20712:22800569,32718057:-1061689 -) -(1,20712:22800569,32718057:1061689,452978,115847 -k1,20712:22800569,32718057:3277 -h1,20712:23858981,32718057:0,411205,112570 -) -k1,20712:24123393,32718057:261135 -k1,20712:25070689,32718057:261134 -k1,20712:28404152,32718057:261135 -k1,20712:29316715,32718057:261135 -k1,20713:32583029,32718057:0 -) -(1,20713:6630773,33583137:25952256,513147,138281 -(1,20712:6630773,33583137:0,452978,115847 -r1,20742:10506157,33583137:3875384,568825,115847 -k1,20712:6630773,33583137:-3875384 -) -(1,20712:6630773,33583137:3875384,452978,115847 -k1,20712:6630773,33583137:3277 -h1,20712:10502880,33583137:0,411205,112570 -) -k1,20712:10703073,33583137:196916 -k1,20712:13761945,33583137:196915 -k1,20712:15844332,33583137:196916 -k1,20712:16700540,33583137:196916 -$1,20712:16700540,33583137 -$1,20712:17203201,33583137 -k1,20712:17400116,33583137:196915 -k1,20712:18279917,33583137:196916 -$1,20712:18279917,33583137 -$1,20712:18831730,33583137 -k1,20712:19028646,33583137:196916 -k1,20712:19757058,33583137:196915 -k1,20712:20973059,33583137:196916 -k1,20712:25176846,33583137:196916 -k1,20712:26056646,33583137:196915 -k1,20712:30019261,33583137:196916 -k1,20713:32583029,33583137:0 -k1,20713:32583029,33583137:0 -) -v1,20717:6630773,34267992:0,393216,0 -(1,20725:6630773,37341489:25952256,3466713,196608 -g1,20725:6630773,37341489 -g1,20725:6630773,37341489 -g1,20725:6434165,37341489 -(1,20725:6434165,37341489:0,3466713,196608 -r1,20742:32779637,37341489:26345472,3663321,196608 -k1,20725:6434165,37341489:-26345472 -) -(1,20725:6434165,37341489:26345472,3466713,196608 -[1,20725:6630773,37341489:25952256,3270105,0 -(1,20719:6630773,34495823:25952256,424439,106246 -(1,20718:6630773,34495823:0,0,0 -g1,20718:6630773,34495823 -g1,20718:6630773,34495823 -g1,20718:6303093,34495823 -(1,20718:6303093,34495823:0,0,0 -) -g1,20718:6630773,34495823 -) -g1,20719:8954451,34495823 -k1,20719:8954451,34495823:0 -h1,20719:9618359,34495823:0,0,0 -k1,20719:32583029,34495823:22964670 -g1,20719:32583029,34495823 -) -(1,20720:6630773,35180678:25952256,424439,112852 -h1,20720:6630773,35180678:0,0,0 -g1,20720:6962727,35180678 -g1,20720:7294681,35180678 -g1,20720:11278129,35180678 -g1,20720:11942037,35180678 -k1,20720:11942037,35180678:0 -h1,20720:13601807,35180678:0,0,0 -k1,20720:32583029,35180678:18981222 -g1,20720:32583029,35180678 -) -(1,20721:6630773,35865533:25952256,424439,112852 -h1,20721:6630773,35865533:0,0,0 -g1,20721:6962727,35865533 -g1,20721:7294681,35865533 -g1,20721:7626635,35865533 -g1,20721:7958589,35865533 -g1,20721:8290543,35865533 -g1,20721:8622497,35865533 -g1,20721:8954451,35865533 -g1,20721:11610083,35865533 -g1,20721:12273991,35865533 -g1,20721:14265715,35865533 -g1,20721:14929623,35865533 -g1,20721:19576978,35865533 -g1,20721:20240886,35865533 -g1,20721:20904794,35865533 -g1,20721:25884103,35865533 -h1,20721:26216057,35865533:0,0,0 -k1,20721:32583029,35865533:6366972 -g1,20721:32583029,35865533 -) -(1,20722:6630773,36550388:25952256,424439,112852 -h1,20722:6630773,36550388:0,0,0 -g1,20722:6962727,36550388 -g1,20722:7294681,36550388 -g1,20722:11610082,36550388 -h1,20722:11942036,36550388:0,0,0 -k1,20722:32583028,36550388:20640992 -g1,20722:32583028,36550388 -) -(1,20723:6630773,37235243:25952256,431045,106246 -h1,20723:6630773,37235243:0,0,0 -g1,20723:6962727,37235243 -g1,20723:7294681,37235243 -g1,20723:14265714,37235243 -g1,20723:16589392,37235243 -g1,20723:17253300,37235243 -h1,20723:19576978,37235243:0,0,0 -k1,20723:32583029,37235243:13006051 -g1,20723:32583029,37235243 -) -] -) -g1,20725:32583029,37341489 -g1,20725:6630773,37341489 -g1,20725:6630773,37341489 -g1,20725:32583029,37341489 -g1,20725:32583029,37341489 -) -h1,20725:6630773,37538097:0,0,0 -v1,20729:6630773,38222952:0,393216,0 -(1,20733:6630773,38563635:25952256,733899,196608 -g1,20733:6630773,38563635 -g1,20733:6630773,38563635 -g1,20733:6434165,38563635 -(1,20733:6434165,38563635:0,733899,196608 -r1,20742:32779637,38563635:26345472,930507,196608 -k1,20733:6434165,38563635:-26345472 -) -(1,20733:6434165,38563635:26345472,733899,196608 -[1,20733:6630773,38563635:25952256,537291,0 -(1,20731:6630773,38457389:25952256,431045,106246 -(1,20730:6630773,38457389:0,0,0 -g1,20730:6630773,38457389 -g1,20730:6630773,38457389 -g1,20730:6303093,38457389 -(1,20730:6303093,38457389:0,0,0 -) -g1,20730:6630773,38457389 -) -g1,20731:8954451,38457389 -g1,20731:9618359,38457389 -g1,20731:15925484,38457389 -g1,20731:16589392,38457389 -g1,20731:18581116,38457389 -g1,20731:21236748,38457389 -g1,20731:21900656,38457389 -g1,20731:22564564,38457389 -g1,20731:23228472,38457389 -h1,20731:23892380,38457389:0,0,0 -k1,20731:32583029,38457389:8690649 -g1,20731:32583029,38457389 -) -] -) -g1,20733:32583029,38563635 -g1,20733:6630773,38563635 -g1,20733:6630773,38563635 -g1,20733:32583029,38563635 -g1,20733:32583029,38563635 -) -h1,20733:6630773,38760243:0,0,0 -] -(1,20742:32583029,45706769:0,0,0 -g1,20742:32583029,45706769 -) -) -] -(1,20742:6630773,47279633:25952256,0,0 -h1,20742:6630773,47279633:25952256,0,0 -) -] -(1,20742:4262630,4025873:0,0,0 -[1,20742:-473656,4025873:0,0,0 -(1,20742:-473656,-710413:0,0,0 -(1,20742:-473656,-710413:0,0,0 -g1,20742:-473656,-710413 -) -g1,20742:-473656,-710413 +g1,20740:6630773,4812305 +k1,20740:21386205,4812305:13560055 +g1,20740:21999622,4812305 +g1,20740:25611966,4812305 +g1,20740:28956923,4812305 +g1,20740:29772190,4812305 +) +) +] +[1,20740:6630773,45706769:25952256,40108032,0 +(1,20740:6630773,45706769:25952256,40108032,0 +(1,20740:6630773,45706769:0,0,0 +g1,20740:6630773,45706769 +) +[1,20740:6630773,45706769:25952256,40108032,0 +(1,20667:6630773,6254097:25952256,513147,134348 +h1,20666:6630773,6254097:983040,0,0 +k1,20666:8456037,6254097:214389 +k1,20666:9689511,6254097:214389 +k1,20666:11270982,6254097:214390 +k1,20666:12152527,6254097:214389 +(1,20666:12152527,6254097:0,414482,115847 +r1,20740:13917640,6254097:1765113,530329,115847 +k1,20666:12152527,6254097:-1765113 +) +(1,20666:12152527,6254097:1765113,414482,115847 +k1,20666:12152527,6254097:3277 +h1,20666:13914363,6254097:0,411205,112570 +) +k1,20666:14132029,6254097:214389 +k1,20666:15630924,6254097:214389 +k1,20666:16660581,6254097:214389 +k1,20666:21269160,6254097:214390 +k1,20666:22292919,6254097:214389 +k1,20666:22863168,6254097:214389 +k1,20666:24950576,6254097:214389 +k1,20666:27676305,6254097:214389 +k1,20666:30476090,6254097:214390 +k1,20666:31341907,6254097:214389 +(1,20666:31341907,6254097:0,414482,115847 +r1,20740:31700173,6254097:358266,530329,115847 +k1,20666:31341907,6254097:-358266 +) +(1,20666:31341907,6254097:358266,414482,115847 +k1,20666:31341907,6254097:3277 +h1,20666:31696896,6254097:0,411205,112570 +) +k1,20666:31914562,6254097:214389 +k1,20667:32583029,6254097:0 +) +(1,20667:6630773,7119177:25952256,513147,134348 +(1,20666:6630773,7119177:0,414482,115847 +r1,20740:6989039,7119177:358266,530329,115847 +k1,20666:6630773,7119177:-358266 +) +(1,20666:6630773,7119177:358266,414482,115847 +k1,20666:6630773,7119177:3277 +h1,20666:6985762,7119177:0,411205,112570 +) +g1,20666:7188268,7119177 +g1,20666:10735731,7119177 +g1,20666:13402391,7119177 +g1,20666:14133117,7119177 +g1,20666:15618162,7119177 +k1,20667:32583029,7119177:13722801 +g1,20667:32583029,7119177 +) +v1,20669:6630773,7804032:0,393216,0 +(1,20676:6630773,10172855:25952256,2762039,196608 +g1,20676:6630773,10172855 +g1,20676:6630773,10172855 +g1,20676:6434165,10172855 +(1,20676:6434165,10172855:0,2762039,196608 +r1,20740:32779637,10172855:26345472,2958647,196608 +k1,20676:6434165,10172855:-26345472 +) +(1,20676:6434165,10172855:26345472,2762039,196608 +[1,20676:6630773,10172855:25952256,2565431,0 +(1,20671:6630773,8005438:25952256,398014,106246 +(1,20670:6630773,8005438:0,0,0 +g1,20670:6630773,8005438 +g1,20670:6630773,8005438 +g1,20670:6303093,8005438 +(1,20670:6303093,8005438:0,0,0 +) +g1,20670:6630773,8005438 +) +g1,20671:7626635,8005438 +k1,20671:7626635,8005438:0 +h1,20671:8290543,8005438:0,0,0 +k1,20671:32583029,8005438:24292486 +g1,20671:32583029,8005438 +) +(1,20672:6630773,8690293:25952256,424439,112852 +h1,20672:6630773,8690293:0,0,0 +g1,20672:6962727,8690293 +g1,20672:7294681,8690293 +g1,20672:11278129,8690293 +g1,20672:11942037,8690293 +k1,20672:11942037,8690293:0 +h1,20672:13601807,8690293:0,0,0 +k1,20672:32583029,8690293:18981222 +g1,20672:32583029,8690293 +) +(1,20673:6630773,9375148:25952256,424439,112852 +h1,20673:6630773,9375148:0,0,0 +g1,20673:6962727,9375148 +g1,20673:7294681,9375148 +g1,20673:7626635,9375148 +g1,20673:7958589,9375148 +g1,20673:8290543,9375148 +g1,20673:8622497,9375148 +g1,20673:8954451,9375148 +g1,20673:9286405,9375148 +g1,20673:9618359,9375148 +g1,20673:12273991,9375148 +g1,20673:12937899,9375148 +g1,20673:14929623,9375148 +g1,20673:15593531,9375148 +g1,20673:20240886,9375148 +g1,20673:22564564,9375148 +g1,20673:23228472,9375148 +g1,20673:26548011,9375148 +h1,20673:26879965,9375148:0,0,0 +k1,20673:32583029,9375148:5703064 +g1,20673:32583029,9375148 +) +(1,20674:6630773,10060003:25952256,424439,112852 +h1,20674:6630773,10060003:0,0,0 +g1,20674:6962727,10060003 +g1,20674:7294681,10060003 +g1,20674:13269852,10060003 +g1,20674:13933760,10060003 +g1,20674:16589392,10060003 +g1,20674:19576977,10060003 +g1,20674:20240885,10060003 +h1,20674:23892378,10060003:0,0,0 +k1,20674:32583029,10060003:8690651 +g1,20674:32583029,10060003 +) +] +) +g1,20676:32583029,10172855 +g1,20676:6630773,10172855 +g1,20676:6630773,10172855 +g1,20676:32583029,10172855 +g1,20676:32583029,10172855 +) +h1,20676:6630773,10369463:0,0,0 +v1,20680:6630773,11054318:0,393216,0 +(1,20687:6630773,13433050:25952256,2771948,196608 +g1,20687:6630773,13433050 +g1,20687:6630773,13433050 +g1,20687:6434165,13433050 +(1,20687:6434165,13433050:0,2771948,196608 +r1,20740:32779637,13433050:26345472,2968556,196608 +k1,20687:6434165,13433050:-26345472 +) +(1,20687:6434165,13433050:26345472,2771948,196608 +[1,20687:6630773,13433050:25952256,2575340,0 +(1,20682:6630773,11265633:25952256,407923,106246 +(1,20681:6630773,11265633:0,0,0 +g1,20681:6630773,11265633 +g1,20681:6630773,11265633 +g1,20681:6303093,11265633 +(1,20681:6303093,11265633:0,0,0 +) +g1,20681:6630773,11265633 +) +g1,20682:7626635,11265633 +k1,20682:7626635,11265633:0 +h1,20682:8290543,11265633:0,0,0 +k1,20682:32583029,11265633:24292486 +g1,20682:32583029,11265633 +) +(1,20683:6630773,11950488:25952256,424439,112852 +h1,20683:6630773,11950488:0,0,0 +g1,20683:6962727,11950488 +g1,20683:7294681,11950488 +g1,20683:11278129,11950488 +g1,20683:11942037,11950488 +k1,20683:11942037,11950488:0 +h1,20683:13601807,11950488:0,0,0 +k1,20683:32583029,11950488:18981222 +g1,20683:32583029,11950488 +) +(1,20684:6630773,12635343:25952256,424439,112852 +h1,20684:6630773,12635343:0,0,0 +g1,20684:6962727,12635343 +g1,20684:7294681,12635343 +g1,20684:7626635,12635343 +g1,20684:7958589,12635343 +g1,20684:8290543,12635343 +g1,20684:8622497,12635343 +g1,20684:8954451,12635343 +g1,20684:9286405,12635343 +g1,20684:9618359,12635343 +g1,20684:12273991,12635343 +g1,20684:12937899,12635343 +g1,20684:14929623,12635343 +g1,20684:15593531,12635343 +g1,20684:20240886,12635343 +g1,20684:22564564,12635343 +g1,20684:23228472,12635343 +g1,20684:26548011,12635343 +h1,20684:26879965,12635343:0,0,0 +k1,20684:32583029,12635343:5703064 +g1,20684:32583029,12635343 +) +(1,20685:6630773,13320198:25952256,424439,112852 +h1,20685:6630773,13320198:0,0,0 +g1,20685:6962727,13320198 +g1,20685:7294681,13320198 +g1,20685:13269852,13320198 +g1,20685:13933760,13320198 +g1,20685:16589392,13320198 +g1,20685:19576977,13320198 +g1,20685:20240885,13320198 +h1,20685:23892378,13320198:0,0,0 +k1,20685:32583029,13320198:8690651 +g1,20685:32583029,13320198 +) +] +) +g1,20687:32583029,13433050 +g1,20687:6630773,13433050 +g1,20687:6630773,13433050 +g1,20687:32583029,13433050 +g1,20687:32583029,13433050 +) +h1,20687:6630773,13629658:0,0,0 +v1,20691:6630773,14314513:0,393216,0 +(1,20695:6630773,14632074:25952256,710777,196608 +g1,20695:6630773,14632074 +g1,20695:6630773,14632074 +g1,20695:6434165,14632074 +(1,20695:6434165,14632074:0,710777,196608 +r1,20740:32779637,14632074:26345472,907385,196608 +k1,20695:6434165,14632074:-26345472 +) +(1,20695:6434165,14632074:26345472,710777,196608 +[1,20695:6630773,14632074:25952256,514169,0 +(1,20693:6630773,14525828:25952256,407923,106246 +(1,20692:6630773,14525828:0,0,0 +g1,20692:6630773,14525828 +g1,20692:6630773,14525828 +g1,20692:6303093,14525828 +(1,20692:6303093,14525828:0,0,0 +) +g1,20692:6630773,14525828 +) +g1,20693:7626635,14525828 +g1,20693:8290543,14525828 +h1,20693:8954451,14525828:0,0,0 +k1,20693:32583029,14525828:23628578 +g1,20693:32583029,14525828 +) +] +) +g1,20695:32583029,14632074 +g1,20695:6630773,14632074 +g1,20695:6630773,14632074 +g1,20695:32583029,14632074 +g1,20695:32583029,14632074 +) +h1,20695:6630773,14828682:0,0,0 +(1,20698:6630773,24529013:25952256,9634795,0 +k1,20698:6760463,24529013:129690 +h1,20697:6760463,24529013:0,0,0 +(1,20697:6760463,24529013:25692876,9634795,0 +(1,20697:6760463,24529013:25692851,9634819,0 +(1,20697:6760463,24529013:25692851,9634819,0 +(1,20697:6760463,24529013:0,9634819,0 +(1,20697:6760463,24529013:0,14208860,0 +(1,20697:6760463,24529013:37890292,14208860,0 +) +k1,20697:6760463,24529013:-37890292 +) +) +g1,20697:32453314,24529013 +) +) +) +g1,20698:32453339,24529013 +k1,20698:32583029,24529013:129690 +) +v1,20707:6630773,25394093:0,393216,0 +(1,20708:6630773,30987897:25952256,5987020,0 +g1,20708:6630773,30987897 +g1,20708:6237557,30987897 +r1,20740:6368629,30987897:131072,5987020,0 +g1,20708:6567858,30987897 +g1,20708:6764466,30987897 +[1,20708:6764466,30987897:25818563,5987020,0 +(1,20708:6764466,25702391:25818563,701514,196608 +(1,20707:6764466,25702391:0,701514,196608 +r1,20740:7761522,25702391:997056,898122,196608 +k1,20707:6764466,25702391:-997056 +) +(1,20707:6764466,25702391:997056,701514,196608 +) +k1,20707:7998255,25702391:236733 +k1,20707:8325935,25702391:327680 +k1,20707:9190503,25702391:236733 +k1,20707:10446321,25702391:236733 +k1,20707:12050135,25702391:236733 +k1,20707:12946159,25702391:236732 +k1,20707:15907879,25702391:236733 +k1,20707:17640144,25702391:236733 +k1,20707:20348240,25702391:236733 +k1,20707:22402286,25702391:236733 +k1,20707:26286098,25702391:236733 +k1,20707:27182123,25702391:236733 +$1,20707:27182123,25702391 +$1,20707:27733936,25702391 +k1,20707:27970669,25702391:236733 +k1,20707:29016771,25702391:236732 +$1,20707:29016771,25702391 +$1,20707:29519432,25702391 +k1,20707:29756165,25702391:236733 +k1,20707:31184343,25702391:236733 +k1,20707:32080368,25702391:236733 +$1,20707:32080368,25702391 +$1,20707:32583029,25702391 +k1,20708:32583029,25702391:0 +) +(1,20708:6764466,26567471:25818563,615216,138281 +k1,20707:7763825,26567471:189989 +$1,20707:7763825,26567471 +$1,20707:8315638,26567471 +k1,20707:8505626,26567471:189988 +k1,20707:9311653,26567471:189989 +k1,20707:11103342,26567471:189989 +k1,20707:12990713,26567471:189989 +k1,20707:14716210,26567471:189988 +k1,20707:17668542,26567471:189989 +k1,20707:19570987,26567471:189989 +k1,20707:21433455,26567471:189989 +k1,20707:23090139,26567471:189988 +k1,20707:23746089,26567471:189989 +$1,20707:23746089,26567471 +(1,20707:24240230,26292190:311689,339935,0 +) +$1,20707:24551919,26567471 +k1,20707:24741908,26567471:189989 +k1,20707:25463394,26567471:189989 +k1,20707:29107785,26567471:189988 +k1,20707:30678618,26567471:189989 +k1,20707:31400104,26567471:189989 +k1,20707:32583029,26567471:0 +) +(1,20708:6764466,27432551:25818563,505283,126483 +k1,20707:7612451,27432551:196557 +k1,20707:8828094,27432551:196558 +k1,20707:12764135,27432551:196557 +k1,20707:14245199,27432551:196558 +$1,20707:14245199,27432551 +$1,20707:14747860,27432551 +k1,20707:14944417,27432551:196557 +k1,20707:17151620,27432551:196558 +k1,20707:18339737,27432551:196557 +k1,20707:20847750,27432551:196558 +k1,20707:22900287,27432551:196557 +k1,20707:24031388,27432551:196558 +k1,20707:24910830,27432551:196557 +k1,20707:28232145,27432551:196558 +k1,20707:30888924,27432551:196557 +k1,20707:32583029,27432551:0 +) +(1,20708:6764466,28297631:25818563,505283,134348 +k1,20707:8068305,28297631:234291 +k1,20707:9368867,28297631:234291 +k1,20707:11913302,28297631:234291 +k1,20707:12799021,28297631:234291 +k1,20707:16852751,28297631:234292 +k1,20707:19029529,28297631:234291 +k1,20707:20467061,28297631:234291 +k1,20707:24614507,28297631:234291 +k1,20707:25614914,28297631:234291 +k1,20707:29757117,28297631:234291 +k1,20707:32583029,28297631:0 +) +(1,20708:6764466,29162711:25818563,505283,138281 +k1,20707:7606562,29162711:226058 +k1,20707:8851705,29162711:226058 +k1,20707:10467127,29162711:226059 +k1,20707:11224682,29162711:226058 +k1,20707:14650208,29162711:226058 +k1,20707:15527695,29162711:226059 +$1,20707:15527695,29162711 +$1,20707:16079508,29162711 +k1,20707:16479236,29162711:226058 +k1,20707:17755181,29162711:226058 +k1,20707:20259926,29162711:226058 +h1,20707:21230514,29162711:0,0,0 +k1,20707:21456573,29162711:226059 +k1,20707:22492001,29162711:226058 +k1,20707:24216212,29162711:226058 +h1,20707:25411589,29162711:0,0,0 +k1,20707:25637647,29162711:226058 +k1,20707:26546591,29162711:226059 +k1,20707:29122770,29162711:226058 +k1,20707:29704688,29162711:226058 +k1,20707:32583029,29162711:0 +) +(1,20708:6764466,30027791:25818563,513147,134348 +k1,20707:8586848,30027791:240343 +k1,20707:10320757,30027791:240343 +k1,20707:11247262,30027791:240343 +k1,20707:13880979,30027791:240342 +k1,20707:16852207,30027791:240343 +k1,20707:18016608,30027791:240343 +k1,20707:20650326,30027791:240343 +k1,20707:23202779,30027791:240343 +k1,20707:26052766,30027791:240343 +k1,20707:27484553,30027791:240342 +k1,20707:29681146,30027791:240343 +k1,20707:31689118,30027791:240466 +k1,20707:32583029,30027791:0 +) +(1,20708:6764466,30892871:25818563,513147,95026 +g1,20707:9869561,30892871 +g1,20707:11016441,30892871 +g1,20707:14442663,30892871 +k1,20708:32583029,30892871:14280951 +g1,20708:32583029,30892871 +) +] +g1,20708:32583029,30987897 +) +h1,20708:6630773,30987897:0,0,0 +(1,20711:6630773,31852977:25952256,513147,126483 +h1,20710:6630773,31852977:983040,0,0 +k1,20710:9270509,31852977:177548 +k1,20710:10620496,31852977:177548 +k1,20710:14368444,31852977:177547 +k1,20710:17387633,31852977:177548 +k1,20710:20324247,31852977:177548 +k1,20710:21520880,31852977:177548 +k1,20710:23964008,31852977:177548 +k1,20710:24673053,31852977:177548 +k1,20710:25502028,31852977:177547 +k1,20710:27032239,31852977:177548 +$1,20710:27032239,31852977 +$1,20710:27534900,31852977 +k1,20710:27712448,31852977:177548 +k1,20710:28576158,31852977:177548 +k1,20710:32583029,31852977:0 +) +(1,20711:6630773,32718057:25952256,513147,138281 +k1,20710:8083353,32718057:261135 +$1,20710:8083353,32718057 +$1,20710:8635166,32718057 +k1,20710:8896301,32718057:261135 +k1,20710:9843597,32718057:261134 +k1,20710:13669235,32718057:261135 +k1,20710:16312604,32718057:261135 +(1,20710:16312604,32718057:0,452978,115847 +r1,20740:17374293,32718057:1061689,568825,115847 +k1,20710:16312604,32718057:-1061689 +) +(1,20710:16312604,32718057:1061689,452978,115847 +k1,20710:16312604,32718057:3277 +h1,20710:17371016,32718057:0,411205,112570 +) +k1,20710:17635428,32718057:261135 +k1,20710:19122741,32718057:261134 +k1,20710:21856549,32718057:261135 +k1,20710:22800569,32718057:261135 +(1,20710:22800569,32718057:0,452978,115847 +r1,20740:23862258,32718057:1061689,568825,115847 +k1,20710:22800569,32718057:-1061689 +) +(1,20710:22800569,32718057:1061689,452978,115847 +k1,20710:22800569,32718057:3277 +h1,20710:23858981,32718057:0,411205,112570 +) +k1,20710:24123393,32718057:261135 +k1,20710:25070689,32718057:261134 +k1,20710:28404152,32718057:261135 +k1,20710:29316715,32718057:261135 +k1,20711:32583029,32718057:0 +) +(1,20711:6630773,33583137:25952256,513147,138281 +(1,20710:6630773,33583137:0,452978,115847 +r1,20740:10506157,33583137:3875384,568825,115847 +k1,20710:6630773,33583137:-3875384 +) +(1,20710:6630773,33583137:3875384,452978,115847 +k1,20710:6630773,33583137:3277 +h1,20710:10502880,33583137:0,411205,112570 +) +k1,20710:10703073,33583137:196916 +k1,20710:13761945,33583137:196915 +k1,20710:15844332,33583137:196916 +k1,20710:16700540,33583137:196916 +$1,20710:16700540,33583137 +$1,20710:17203201,33583137 +k1,20710:17400116,33583137:196915 +k1,20710:18279917,33583137:196916 +$1,20710:18279917,33583137 +$1,20710:18831730,33583137 +k1,20710:19028646,33583137:196916 +k1,20710:19757058,33583137:196915 +k1,20710:20973059,33583137:196916 +k1,20710:25176846,33583137:196916 +k1,20710:26056646,33583137:196915 +k1,20710:30019261,33583137:196916 +k1,20711:32583029,33583137:0 +k1,20711:32583029,33583137:0 +) +v1,20715:6630773,34267992:0,393216,0 +(1,20723:6630773,37341489:25952256,3466713,196608 +g1,20723:6630773,37341489 +g1,20723:6630773,37341489 +g1,20723:6434165,37341489 +(1,20723:6434165,37341489:0,3466713,196608 +r1,20740:32779637,37341489:26345472,3663321,196608 +k1,20723:6434165,37341489:-26345472 +) +(1,20723:6434165,37341489:26345472,3466713,196608 +[1,20723:6630773,37341489:25952256,3270105,0 +(1,20717:6630773,34495823:25952256,424439,106246 +(1,20716:6630773,34495823:0,0,0 +g1,20716:6630773,34495823 +g1,20716:6630773,34495823 +g1,20716:6303093,34495823 +(1,20716:6303093,34495823:0,0,0 +) +g1,20716:6630773,34495823 +) +g1,20717:8954451,34495823 +k1,20717:8954451,34495823:0 +h1,20717:9618359,34495823:0,0,0 +k1,20717:32583029,34495823:22964670 +g1,20717:32583029,34495823 +) +(1,20718:6630773,35180678:25952256,424439,112852 +h1,20718:6630773,35180678:0,0,0 +g1,20718:6962727,35180678 +g1,20718:7294681,35180678 +g1,20718:11278129,35180678 +g1,20718:11942037,35180678 +k1,20718:11942037,35180678:0 +h1,20718:13601807,35180678:0,0,0 +k1,20718:32583029,35180678:18981222 +g1,20718:32583029,35180678 +) +(1,20719:6630773,35865533:25952256,424439,112852 +h1,20719:6630773,35865533:0,0,0 +g1,20719:6962727,35865533 +g1,20719:7294681,35865533 +g1,20719:7626635,35865533 +g1,20719:7958589,35865533 +g1,20719:8290543,35865533 +g1,20719:8622497,35865533 +g1,20719:8954451,35865533 +g1,20719:11610083,35865533 +g1,20719:12273991,35865533 +g1,20719:14265715,35865533 +g1,20719:14929623,35865533 +g1,20719:19576978,35865533 +g1,20719:20240886,35865533 +g1,20719:20904794,35865533 +g1,20719:25884103,35865533 +h1,20719:26216057,35865533:0,0,0 +k1,20719:32583029,35865533:6366972 +g1,20719:32583029,35865533 +) +(1,20720:6630773,36550388:25952256,424439,112852 +h1,20720:6630773,36550388:0,0,0 +g1,20720:6962727,36550388 +g1,20720:7294681,36550388 +g1,20720:11610082,36550388 +h1,20720:11942036,36550388:0,0,0 +k1,20720:32583028,36550388:20640992 +g1,20720:32583028,36550388 +) +(1,20721:6630773,37235243:25952256,431045,106246 +h1,20721:6630773,37235243:0,0,0 +g1,20721:6962727,37235243 +g1,20721:7294681,37235243 +g1,20721:14265714,37235243 +g1,20721:16589392,37235243 +g1,20721:17253300,37235243 +h1,20721:19576978,37235243:0,0,0 +k1,20721:32583029,37235243:13006051 +g1,20721:32583029,37235243 +) +] +) +g1,20723:32583029,37341489 +g1,20723:6630773,37341489 +g1,20723:6630773,37341489 +g1,20723:32583029,37341489 +g1,20723:32583029,37341489 +) +h1,20723:6630773,37538097:0,0,0 +v1,20727:6630773,38222952:0,393216,0 +(1,20731:6630773,38563635:25952256,733899,196608 +g1,20731:6630773,38563635 +g1,20731:6630773,38563635 +g1,20731:6434165,38563635 +(1,20731:6434165,38563635:0,733899,196608 +r1,20740:32779637,38563635:26345472,930507,196608 +k1,20731:6434165,38563635:-26345472 +) +(1,20731:6434165,38563635:26345472,733899,196608 +[1,20731:6630773,38563635:25952256,537291,0 +(1,20729:6630773,38457389:25952256,431045,106246 +(1,20728:6630773,38457389:0,0,0 +g1,20728:6630773,38457389 +g1,20728:6630773,38457389 +g1,20728:6303093,38457389 +(1,20728:6303093,38457389:0,0,0 +) +g1,20728:6630773,38457389 +) +g1,20729:8954451,38457389 +g1,20729:9618359,38457389 +g1,20729:15925484,38457389 +g1,20729:16589392,38457389 +g1,20729:18581116,38457389 +g1,20729:21236748,38457389 +g1,20729:21900656,38457389 +g1,20729:22564564,38457389 +g1,20729:23228472,38457389 +h1,20729:23892380,38457389:0,0,0 +k1,20729:32583029,38457389:8690649 +g1,20729:32583029,38457389 +) +] +) +g1,20731:32583029,38563635 +g1,20731:6630773,38563635 +g1,20731:6630773,38563635 +g1,20731:32583029,38563635 +g1,20731:32583029,38563635 +) +h1,20731:6630773,38760243:0,0,0 +] +(1,20740:32583029,45706769:0,0,0 +g1,20740:32583029,45706769 +) +) +] +(1,20740:6630773,47279633:25952256,0,0 +h1,20740:6630773,47279633:25952256,0,0 +) +] +(1,20740:4262630,4025873:0,0,0 +[1,20740:-473656,4025873:0,0,0 +(1,20740:-473656,-710413:0,0,0 +(1,20740:-473656,-710413:0,0,0 +g1,20740:-473656,-710413 +) +g1,20740:-473656,-710413 ) ] ) ] !21573 -}347 -Input:3759:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3760:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3761:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3762:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}348 Input:3763:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3764:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3765:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3766:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3767:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3768:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3769:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{348 -[1,20778:4262630,47279633:28320399,43253760,0 -(1,20778:4262630,4025873:0,0,0 -[1,20778:-473656,4025873:0,0,0 -(1,20778:-473656,-710413:0,0,0 -(1,20778:-473656,-644877:0,0,0 -k1,20778:-473656,-644877:-65536 +{349 +[1,20776:4262630,47279633:28320399,43253760,0 +(1,20776:4262630,4025873:0,0,0 +[1,20776:-473656,4025873:0,0,0 +(1,20776:-473656,-710413:0,0,0 +(1,20776:-473656,-644877:0,0,0 +k1,20776:-473656,-644877:-65536 ) -(1,20778:-473656,4736287:0,0,0 -k1,20778:-473656,4736287:5209943 +(1,20776:-473656,4736287:0,0,0 +k1,20776:-473656,4736287:5209943 ) -g1,20778:-473656,-710413 +g1,20776:-473656,-710413 ) ] ) -[1,20778:6630773,47279633:25952256,43253760,0 -[1,20778:6630773,4812305:25952256,786432,0 -(1,20778:6630773,4812305:25952256,505283,126483 -(1,20778:6630773,4812305:25952256,505283,126483 -g1,20778:3078558,4812305 -[1,20778:3078558,4812305:0,0,0 -(1,20778:3078558,2439708:0,1703936,0 -k1,20778:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20778:2537886,2439708:1179648,16384,0 +[1,20776:6630773,47279633:25952256,43253760,0 +[1,20776:6630773,4812305:25952256,786432,0 +(1,20776:6630773,4812305:25952256,505283,126483 +(1,20776:6630773,4812305:25952256,505283,126483 +g1,20776:3078558,4812305 +[1,20776:3078558,4812305:0,0,0 +(1,20776:3078558,2439708:0,1703936,0 +k1,20776:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20776:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20778:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20776:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20778:3078558,4812305:0,0,0 -(1,20778:3078558,2439708:0,1703936,0 -g1,20778:29030814,2439708 -g1,20778:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20778:36151628,1915420:16384,1179648,0 +[1,20776:3078558,4812305:0,0,0 +(1,20776:3078558,2439708:0,1703936,0 +g1,20776:29030814,2439708 +g1,20776:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20776:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20778:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20776:37855564,2439708:1179648,16384,0 ) ) -k1,20778:3078556,2439708:-34777008 +k1,20776:3078556,2439708:-34777008 ) ] -[1,20778:3078558,4812305:0,0,0 -(1,20778:3078558,49800853:0,16384,2228224 -k1,20778:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20778:2537886,49800853:1179648,16384,0 +[1,20776:3078558,4812305:0,0,0 +(1,20776:3078558,49800853:0,16384,2228224 +k1,20776:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20776:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20778:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20776:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20778:3078558,4812305:0,0,0 -(1,20778:3078558,49800853:0,16384,2228224 -g1,20778:29030814,49800853 -g1,20778:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20778:36151628,51504789:16384,1179648,0 +[1,20776:3078558,4812305:0,0,0 +(1,20776:3078558,49800853:0,16384,2228224 +g1,20776:29030814,49800853 +g1,20776:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20776:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20778:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20776:37855564,49800853:1179648,16384,0 ) ) -k1,20778:3078556,49800853:-34777008 +k1,20776:3078556,49800853:-34777008 ) ] -g1,20778:6630773,4812305 -g1,20778:6630773,4812305 -g1,20778:9104757,4812305 -g1,20778:10472493,4812305 -g1,20778:12746592,4812305 -k1,20778:31387652,4812305:18641060 +g1,20776:6630773,4812305 +g1,20776:6630773,4812305 +g1,20776:9104757,4812305 +g1,20776:10472493,4812305 +g1,20776:12746592,4812305 +k1,20776:31387652,4812305:18641060 ) ) ] -[1,20778:6630773,45706769:25952256,40108032,0 -(1,20778:6630773,45706769:25952256,40108032,0 -(1,20778:6630773,45706769:0,0,0 -g1,20778:6630773,45706769 +[1,20776:6630773,45706769:25952256,40108032,0 +(1,20776:6630773,45706769:25952256,40108032,0 +(1,20776:6630773,45706769:0,0,0 +g1,20776:6630773,45706769 ) -[1,20778:6630773,45706769:25952256,40108032,0 -(1,20736:6630773,15233532:25952256,9634795,0 -k1,20736:6760463,15233532:129690 -h1,20735:6760463,15233532:0,0,0 -(1,20735:6760463,15233532:25692876,9634795,0 -(1,20735:6760463,15233532:25692851,9634819,0 -(1,20735:6760463,15233532:25692851,9634819,0 -(1,20735:6760463,15233532:0,9634819,0 -(1,20735:6760463,15233532:0,14208860,0 -(1,20735:6760463,15233532:37890292,14208860,0 +[1,20776:6630773,45706769:25952256,40108032,0 +(1,20734:6630773,15233532:25952256,9634795,0 +k1,20734:6760463,15233532:129690 +h1,20733:6760463,15233532:0,0,0 +(1,20733:6760463,15233532:25692876,9634795,0 +(1,20733:6760463,15233532:25692851,9634819,0 +(1,20733:6760463,15233532:25692851,9634819,0 +(1,20733:6760463,15233532:0,9634819,0 +(1,20733:6760463,15233532:0,14208860,0 +(1,20733:6760463,15233532:37890292,14208860,0 ) -k1,20735:6760463,15233532:-37890292 +k1,20733:6760463,15233532:-37890292 ) ) -g1,20735:32453314,15233532 -) -) -) -g1,20736:32453339,15233532 -k1,20736:32583029,15233532:129690 -) -(1,20743:6630773,16098612:25952256,505283,134348 -h1,20742:6630773,16098612:983040,0,0 -k1,20742:10234955,16098612:238908 -(1,20742:10234955,16098612:0,452978,115847 -r1,20778:16220610,16098612:5985655,568825,115847 -k1,20742:10234955,16098612:-5985655 -) -(1,20742:10234955,16098612:5985655,452978,115847 -g1,20742:14458774,16098612 -g1,20742:15162198,16098612 -h1,20742:16217333,16098612:0,411205,112570 -) -k1,20742:16459519,16098612:238909 -k1,20742:17349855,16098612:238908 -(1,20742:17349855,16098612:0,452978,122846 -r1,20778:21928663,16098612:4578808,575824,122846 -k1,20742:17349855,16098612:-4578808 -) -(1,20742:17349855,16098612:4578808,452978,122846 -k1,20742:17349855,16098612:3277 -h1,20742:21925386,16098612:0,411205,112570 -) -k1,20742:22167571,16098612:238908 -k1,20742:22937977,16098612:238909 -k1,20742:26481866,16098612:238908 -k1,20742:27372202,16098612:238908 -k1,20742:30650015,16098612:238909 -$1,20742:30650015,16098612 -$1,20742:31152676,16098612 -k1,20742:31391584,16098612:238908 -k1,20742:32583029,16098612:0 -) -(1,20743:6630773,16963692:25952256,513147,138281 -$1,20742:7182586,16963692 -k1,20742:7351449,16963692:168863 -k1,20742:8136351,16963692:168864 -k1,20742:9324299,16963692:168863 -k1,20742:11480869,16963692:168863 -(1,20742:11480869,16963692:0,459977,115847 -r1,20778:13949406,16963692:2468537,575824,115847 -k1,20742:11480869,16963692:-2468537 -) -(1,20742:11480869,16963692:2468537,459977,115847 -k1,20742:11480869,16963692:3277 -h1,20742:13946129,16963692:0,411205,112570 -) -k1,20742:14291940,16963692:168864 -k1,20742:15657490,16963692:168863 -k1,20742:17786535,16963692:168863 -k1,20742:18974484,16963692:168864 -k1,20742:22797634,16963692:168863 -k1,20742:23985583,16963692:168864 -k1,20742:25804643,16963692:168863 -k1,20742:28735849,16963692:168863 -k1,20742:29896273,16963692:168864 -k1,20742:31084221,16963692:168863 -k1,20742:32583029,16963692:0 -) -(1,20743:6630773,17828772:25952256,513147,134348 -g1,20742:8542458,17828772 -g1,20742:10784444,17828772 -g1,20742:12175118,17828772 -g1,20742:13887573,17828772 -k1,20743:32583029,17828772:16175597 -g1,20743:32583029,17828772 -) -v1,20745:6630773,18513627:0,393216,0 -(1,20749:6630773,18854310:25952256,733899,196608 -g1,20749:6630773,18854310 -g1,20749:6630773,18854310 -g1,20749:6434165,18854310 -(1,20749:6434165,18854310:0,733899,196608 -r1,20778:32779637,18854310:26345472,930507,196608 -k1,20749:6434165,18854310:-26345472 -) -(1,20749:6434165,18854310:26345472,733899,196608 -[1,20749:6630773,18854310:25952256,537291,0 -(1,20747:6630773,18748064:25952256,431045,106246 -(1,20746:6630773,18748064:0,0,0 -g1,20746:6630773,18748064 -g1,20746:6630773,18748064 -g1,20746:6303093,18748064 -(1,20746:6303093,18748064:0,0,0 -) -g1,20746:6630773,18748064 -) -g1,20747:8954451,18748064 -g1,20747:9618359,18748064 -g1,20747:15925484,18748064 -g1,20747:16589392,18748064 -g1,20747:18581116,18748064 -g1,20747:21236748,18748064 -g1,20747:21900656,18748064 -g1,20747:22564564,18748064 -g1,20747:23228472,18748064 -g1,20747:24224334,18748064 -g1,20747:28207781,18748064 -g1,20747:28871689,18748064 -h1,20747:30199505,18748064:0,0,0 -k1,20747:32583029,18748064:2383524 -g1,20747:32583029,18748064 -) -] -) -g1,20749:32583029,18854310 -g1,20749:6630773,18854310 -g1,20749:6630773,18854310 -g1,20749:32583029,18854310 -g1,20749:32583029,18854310 -) -h1,20749:6630773,19050918:0,0,0 -(1,20752:6630773,28751249:25952256,9634795,0 -k1,20752:6760463,28751249:129690 -h1,20751:6760463,28751249:0,0,0 -(1,20751:6760463,28751249:25692876,9634795,0 -(1,20751:6760463,28751249:25692851,9634819,0 -(1,20751:6760463,28751249:25692851,9634819,0 -(1,20751:6760463,28751249:0,9634819,0 -(1,20751:6760463,28751249:0,14208860,0 -(1,20751:6760463,28751249:37890292,14208860,0 -) -k1,20751:6760463,28751249:-37890292 -) -) -g1,20751:32453314,28751249 -) -) -) -g1,20752:32453339,28751249 -k1,20752:32583029,28751249:129690 -) -(1,20759:6630773,29616329:25952256,505283,126483 -h1,20758:6630773,29616329:983040,0,0 -k1,20758:8945777,29616329:135277 -k1,20758:10253493,29616329:135277 -k1,20758:13230411,29616329:135277 -k1,20758:13981727,29616329:135278 -k1,20758:15136089,29616329:135277 -k1,20758:17932783,29616329:135277 -k1,20758:20097055,29616329:135277 -k1,20758:21223892,29616329:135277 -k1,20758:22825865,29616329:135277 -k1,20758:25834897,29616329:135278 -k1,20758:28985485,29616329:135277 -k1,20758:30187033,29616329:135277 -k1,20758:32583029,29616329:0 -) -(1,20759:6630773,30481409:25952256,513147,134348 -k1,20758:10130574,30481409:236108 -k1,20758:11128210,30481409:236108 -k1,20758:13146243,30481409:236109 -k1,20758:14573796,30481409:236108 -k1,20758:16754357,30481409:236108 -k1,20758:18181910,30481409:236108 -k1,20758:19811969,30481409:236108 -k1,20758:24721449,30481409:236108 -k1,20758:27267702,30481409:236109 -k1,20758:28155238,30481409:236108 -k1,20758:30593356,30481409:236108 -k1,20758:32583029,30481409:0 -) -(1,20759:6630773,31346489:25952256,513147,134348 -g1,20758:8652558,31346489 -g1,20758:9511079,31346489 -g1,20758:10729393,31346489 -g1,20758:12101061,31346489 -g1,20758:14012746,31346489 -g1,20758:16529983,31346489 -g1,20758:17720772,31346489 -g1,20758:19530876,31346489 -g1,20758:22090712,31346489 -g1,20758:22941369,31346489 -g1,20758:25856410,31346489 -g1,20758:27074724,31346489 -k1,20759:32583029,31346489:1386091 -g1,20759:32583029,31346489 -) -v1,20761:6630773,32211569:0,393216,0 -(1,20778:6630773,41160677:25952256,9342324,0 -g1,20778:6630773,41160677 -g1,20778:6237557,41160677 -r1,20778:6368629,41160677:131072,9342324,0 -g1,20778:6567858,41160677 -g1,20778:6764466,41160677 -[1,20778:6764466,41160677:25818563,9342324,0 -(1,20762:6764466,32519867:25818563,701514,196608 -(1,20761:6764466,32519867:0,701514,196608 -r1,20778:7761522,32519867:997056,898122,196608 -k1,20761:6764466,32519867:-997056 -) -(1,20761:6764466,32519867:997056,701514,196608 -) -k1,20761:8041076,32519867:279554 -k1,20761:8368756,32519867:327680 -k1,20761:11245503,32519867:279555 -k1,20761:12544142,32519867:279554 -k1,20761:16350189,32519867:279555 -k1,20761:17289035,32519867:279554 -k1,20761:18845887,32519867:279555 -k1,20761:21013533,32519867:279554 -k1,20761:22687039,32519867:279555 -(1,20761:22687039,32519867:0,452978,115847 -r1,20778:28672694,32519867:5985655,568825,115847 -k1,20761:22687039,32519867:-5985655 -) -(1,20761:22687039,32519867:5985655,452978,115847 -g1,20761:26910858,32519867 -g1,20761:27614282,32519867 -h1,20761:28669417,32519867:0,411205,112570 -) -k1,20761:28952248,32519867:279554 -k1,20761:29763300,32519867:279555 -k1,20761:31109125,32519867:279554 -k1,20762:32583029,32519867:0 -) -(1,20762:6764466,33384947:25818563,513147,134348 -k1,20761:8941570,33384947:257555 -k1,20761:9850552,33384947:257554 -k1,20761:12575538,33384947:257555 -k1,20761:13852177,33384947:257554 -k1,20761:15992581,33384947:257555 -k1,20761:17527432,33384947:257554 -k1,20761:19178938,33384947:257555 -(1,20761:19178938,33384947:0,459977,115847 -r1,20778:23406034,33384947:4227096,575824,115847 -k1,20761:19178938,33384947:-4227096 -) -(1,20761:19178938,33384947:4227096,459977,115847 -k1,20761:19178938,33384947:3277 -h1,20761:23402757,33384947:0,411205,112570 -) -k1,20761:23837258,33384947:257554 -k1,20761:24722648,33384947:257555 -k1,20761:25999287,33384947:257554 -k1,20761:27562975,33384947:257555 -k1,20761:29187611,33384947:257555 -k1,20761:31330636,33384947:257554 -k1,20761:32583029,33384947:0 -) -(1,20762:6764466,34250027:25818563,513147,134348 -k1,20761:7515806,34250027:219843 -k1,20761:11234617,34250027:219844 -k1,20761:15461331,34250027:219843 -k1,20761:16628826,34250027:219844 -k1,20761:20912556,34250027:219843 -k1,20761:23703377,34250027:219844 -k1,20761:24995389,34250027:219843 -k1,20761:26281504,34250027:219844 -k1,20761:27520432,34250027:219843 -k1,20761:30684809,34250027:219844 -k1,20761:31563944,34250027:219843 -k1,20761:32583029,34250027:0 -) -(1,20762:6764466,35115107:25818563,513147,138281 -k1,20761:8374649,35115107:211645 -k1,20761:9202332,35115107:211645 -k1,20761:10433062,35115107:211645 -k1,20761:12095674,35115107:211645 -k1,20761:13996837,35115107:211645 -k1,20761:14824520,35115107:211645 -k1,20761:16055250,35115107:211645 -k1,20761:18508226,35115107:211645 -k1,20761:20086952,35115107:211645 -k1,20761:21317681,35115107:211644 -k1,20761:24143557,35115107:211645 -k1,20761:25014494,35115107:211645 -k1,20761:26245224,35115107:211645 -$1,20761:26245224,35115107 -$1,20761:26747885,35115107 -k1,20761:26959530,35115107:211645 -k1,20761:28362620,35115107:211645 -$1,20761:28362620,35115107 -$1,20761:28914433,35115107 -k1,20761:29126078,35115107:211645 -k1,20761:30736261,35115107:211645 -k1,20761:31563944,35115107:211645 -k1,20761:32583029,35115107:0 -) -(1,20762:6764466,35980187:25818563,513147,126483 -k1,20761:8212812,35980187:171049 -k1,20761:8915358,35980187:171049 -k1,20761:12076814,35980187:171048 -k1,20761:13171265,35980187:171049 -k1,20761:15040352,35980187:171049 -k1,20761:18949575,35980187:171049 -k1,20761:20112183,35980187:171048 -k1,20761:22528495,35980187:171049 -k1,20761:23718629,35980187:171049 -$1,20761:23718629,35980187 -$1,20761:24221290,35980187 -k1,20761:24392339,35980187:171049 -k1,20761:27407651,35980187:171049 -k1,20761:28110196,35980187:171048 -k1,20761:30583525,35980187:171049 -k1,20761:31563944,35980187:171049 -k1,20761:32583029,35980187:0 -) -(1,20762:6764466,36845267:25818563,513147,138281 -k1,20761:9261956,36845267:169651 -k1,20761:10683999,36845267:169650 -k1,20761:12045095,36845267:169651 -k1,20761:13233831,36845267:169651 -$1,20761:13233831,36845267 -$1,20761:13785644,36845267 -k1,20761:13955294,36845267:169650 -k1,20761:16969208,36845267:169651 -k1,20761:17948229,36845267:169651 -k1,20761:19136964,36845267:169650 -k1,20761:22622737,36845267:169651 -k1,20761:24218451,36845267:169651 -k1,20761:25460270,36845267:169650 -k1,20761:26649006,36845267:169651 -k1,20761:28054011,36845267:169651 -k1,20761:28882953,36845267:169650 -k1,20761:30071689,36845267:169651 -k1,20761:32583029,36845267:0 -) -(1,20762:6764466,37710347:25818563,513147,126483 -k1,20761:9569424,37710347:219563 -k1,20761:10440415,37710347:219563 -k1,20761:11679063,37710347:219563 -(1,20761:11679063,37710347:0,414482,115847 -r1,20778:12037329,37710347:358266,530329,115847 -k1,20761:11679063,37710347:-358266 -) -(1,20761:11679063,37710347:358266,414482,115847 -k1,20761:11679063,37710347:3277 -h1,20761:12034052,37710347:0,411205,112570 -) -k1,20761:12256892,37710347:219563 -k1,20761:15320718,37710347:219563 -k1,20761:18098151,37710347:219563 -k1,20761:19003876,37710347:219563 -k1,20761:22989138,37710347:219563 -k1,20761:25893711,37710347:219563 -k1,20761:27469214,37710347:219563 -k1,20761:28355933,37710347:219563 -(1,20761:28355933,37710347:0,459977,115847 -r1,20778:32583029,37710347:4227096,575824,115847 -k1,20761:28355933,37710347:-4227096 -) -(1,20761:28355933,37710347:4227096,459977,115847 -k1,20761:28355933,37710347:3277 -h1,20761:32579752,37710347:0,411205,112570 -) -k1,20761:32583029,37710347:0 -) -(1,20762:6764466,38575427:25818563,513147,126483 -g1,20761:8069943,38575427 -g1,20761:9981628,38575427 -g1,20761:10928623,38575427 -g1,20761:14666796,38575427 -g1,20761:15482063,38575427 -g1,20761:16700377,38575427 -k1,20762:32583029,38575427:13556124 -g1,20762:32583029,38575427 -) -v1,20764:6764466,39260282:0,393216,0 -(1,20770:6764466,40964069:25818563,2097003,196608 -g1,20770:6764466,40964069 -g1,20770:6764466,40964069 -g1,20770:6567858,40964069 -(1,20770:6567858,40964069:0,2097003,196608 -r1,20778:32779637,40964069:26211779,2293611,196608 -k1,20770:6567857,40964069:-26211780 -) -(1,20770:6567858,40964069:26211779,2097003,196608 -[1,20770:6764466,40964069:25818563,1900395,0 -(1,20766:6764466,39488113:25818563,424439,106246 -(1,20765:6764466,39488113:0,0,0 -g1,20765:6764466,39488113 -g1,20765:6764466,39488113 -g1,20765:6436786,39488113 -(1,20765:6436786,39488113:0,0,0 -) -g1,20765:6764466,39488113 -) -g1,20766:9088144,39488113 -h1,20766:9420098,39488113:0,0,0 -k1,20766:32583030,39488113:23162932 -g1,20766:32583030,39488113 -) -(1,20767:6764466,40172968:25818563,431045,106246 -h1,20767:6764466,40172968:0,0,0 -g1,20767:7096420,40172968 -g1,20767:7428374,40172968 -g1,20767:13735499,40172968 -g1,20767:14399407,40172968 -g1,20767:16391131,40172968 -g1,20767:19046763,40172968 -g1,20767:19710671,40172968 -g1,20767:20374579,40172968 -g1,20767:21038487,40172968 -g1,20767:22034349,40172968 -h1,20767:22366303,40172968:0,0,0 -k1,20767:32583029,40172968:10216726 -g1,20767:32583029,40172968 -) -(1,20768:6764466,40857823:25818563,431045,106246 -h1,20768:6764466,40857823:0,0,0 -g1,20768:7096420,40857823 -g1,20768:7428374,40857823 -k1,20768:7428374,40857823:0 -h1,20768:11411821,40857823:0,0,0 -k1,20768:32583029,40857823:21171208 -g1,20768:32583029,40857823 -) -] -) -g1,20770:32583029,40964069 -g1,20770:6764466,40964069 -g1,20770:6764466,40964069 -g1,20770:32583029,40964069 -g1,20770:32583029,40964069 -) -h1,20770:6764466,41160677:0,0,0 -] -g1,20778:32583029,41160677 -) -] -(1,20778:32583029,45706769:0,0,0 -g1,20778:32583029,45706769 -) -) -] -(1,20778:6630773,47279633:25952256,0,0 -h1,20778:6630773,47279633:25952256,0,0 -) -] -(1,20778:4262630,4025873:0,0,0 -[1,20778:-473656,4025873:0,0,0 -(1,20778:-473656,-710413:0,0,0 -(1,20778:-473656,-710413:0,0,0 -g1,20778:-473656,-710413 +g1,20733:32453314,15233532 +) +) +) +g1,20734:32453339,15233532 +k1,20734:32583029,15233532:129690 +) +(1,20741:6630773,16098612:25952256,505283,134348 +h1,20740:6630773,16098612:983040,0,0 +k1,20740:10234955,16098612:238908 +(1,20740:10234955,16098612:0,452978,115847 +r1,20776:16220610,16098612:5985655,568825,115847 +k1,20740:10234955,16098612:-5985655 +) +(1,20740:10234955,16098612:5985655,452978,115847 +g1,20740:14458774,16098612 +g1,20740:15162198,16098612 +h1,20740:16217333,16098612:0,411205,112570 +) +k1,20740:16459519,16098612:238909 +k1,20740:17349855,16098612:238908 +(1,20740:17349855,16098612:0,452978,122846 +r1,20776:21928663,16098612:4578808,575824,122846 +k1,20740:17349855,16098612:-4578808 +) +(1,20740:17349855,16098612:4578808,452978,122846 +k1,20740:17349855,16098612:3277 +h1,20740:21925386,16098612:0,411205,112570 +) +k1,20740:22167571,16098612:238908 +k1,20740:22937977,16098612:238909 +k1,20740:26481866,16098612:238908 +k1,20740:27372202,16098612:238908 +k1,20740:30650015,16098612:238909 +$1,20740:30650015,16098612 +$1,20740:31152676,16098612 +k1,20740:31391584,16098612:238908 +k1,20740:32583029,16098612:0 +) +(1,20741:6630773,16963692:25952256,513147,138281 +$1,20740:7182586,16963692 +k1,20740:7351449,16963692:168863 +k1,20740:8136351,16963692:168864 +k1,20740:9324299,16963692:168863 +k1,20740:11480869,16963692:168863 +(1,20740:11480869,16963692:0,459977,115847 +r1,20776:13949406,16963692:2468537,575824,115847 +k1,20740:11480869,16963692:-2468537 +) +(1,20740:11480869,16963692:2468537,459977,115847 +k1,20740:11480869,16963692:3277 +h1,20740:13946129,16963692:0,411205,112570 +) +k1,20740:14291940,16963692:168864 +k1,20740:15657490,16963692:168863 +k1,20740:17786535,16963692:168863 +k1,20740:18974484,16963692:168864 +k1,20740:22797634,16963692:168863 +k1,20740:23985583,16963692:168864 +k1,20740:25804643,16963692:168863 +k1,20740:28735849,16963692:168863 +k1,20740:29896273,16963692:168864 +k1,20740:31084221,16963692:168863 +k1,20740:32583029,16963692:0 +) +(1,20741:6630773,17828772:25952256,513147,134348 +g1,20740:8542458,17828772 +g1,20740:10784444,17828772 +g1,20740:12175118,17828772 +g1,20740:13887573,17828772 +k1,20741:32583029,17828772:16175597 +g1,20741:32583029,17828772 +) +v1,20743:6630773,18513627:0,393216,0 +(1,20747:6630773,18854310:25952256,733899,196608 +g1,20747:6630773,18854310 +g1,20747:6630773,18854310 +g1,20747:6434165,18854310 +(1,20747:6434165,18854310:0,733899,196608 +r1,20776:32779637,18854310:26345472,930507,196608 +k1,20747:6434165,18854310:-26345472 +) +(1,20747:6434165,18854310:26345472,733899,196608 +[1,20747:6630773,18854310:25952256,537291,0 +(1,20745:6630773,18748064:25952256,431045,106246 +(1,20744:6630773,18748064:0,0,0 +g1,20744:6630773,18748064 +g1,20744:6630773,18748064 +g1,20744:6303093,18748064 +(1,20744:6303093,18748064:0,0,0 +) +g1,20744:6630773,18748064 +) +g1,20745:8954451,18748064 +g1,20745:9618359,18748064 +g1,20745:15925484,18748064 +g1,20745:16589392,18748064 +g1,20745:18581116,18748064 +g1,20745:21236748,18748064 +g1,20745:21900656,18748064 +g1,20745:22564564,18748064 +g1,20745:23228472,18748064 +g1,20745:24224334,18748064 +g1,20745:28207781,18748064 +g1,20745:28871689,18748064 +h1,20745:30199505,18748064:0,0,0 +k1,20745:32583029,18748064:2383524 +g1,20745:32583029,18748064 +) +] +) +g1,20747:32583029,18854310 +g1,20747:6630773,18854310 +g1,20747:6630773,18854310 +g1,20747:32583029,18854310 +g1,20747:32583029,18854310 +) +h1,20747:6630773,19050918:0,0,0 +(1,20750:6630773,28751249:25952256,9634795,0 +k1,20750:6760463,28751249:129690 +h1,20749:6760463,28751249:0,0,0 +(1,20749:6760463,28751249:25692876,9634795,0 +(1,20749:6760463,28751249:25692851,9634819,0 +(1,20749:6760463,28751249:25692851,9634819,0 +(1,20749:6760463,28751249:0,9634819,0 +(1,20749:6760463,28751249:0,14208860,0 +(1,20749:6760463,28751249:37890292,14208860,0 +) +k1,20749:6760463,28751249:-37890292 +) +) +g1,20749:32453314,28751249 +) +) +) +g1,20750:32453339,28751249 +k1,20750:32583029,28751249:129690 +) +(1,20757:6630773,29616329:25952256,505283,126483 +h1,20756:6630773,29616329:983040,0,0 +k1,20756:8945777,29616329:135277 +k1,20756:10253493,29616329:135277 +k1,20756:13230411,29616329:135277 +k1,20756:13981727,29616329:135278 +k1,20756:15136089,29616329:135277 +k1,20756:17932783,29616329:135277 +k1,20756:20097055,29616329:135277 +k1,20756:21223892,29616329:135277 +k1,20756:22825865,29616329:135277 +k1,20756:25834897,29616329:135278 +k1,20756:28985485,29616329:135277 +k1,20756:30187033,29616329:135277 +k1,20756:32583029,29616329:0 +) +(1,20757:6630773,30481409:25952256,513147,134348 +k1,20756:10130574,30481409:236108 +k1,20756:11128210,30481409:236108 +k1,20756:13146243,30481409:236109 +k1,20756:14573796,30481409:236108 +k1,20756:16754357,30481409:236108 +k1,20756:18181910,30481409:236108 +k1,20756:19811969,30481409:236108 +k1,20756:24721449,30481409:236108 +k1,20756:27267702,30481409:236109 +k1,20756:28155238,30481409:236108 +k1,20756:30593356,30481409:236108 +k1,20756:32583029,30481409:0 +) +(1,20757:6630773,31346489:25952256,513147,134348 +g1,20756:8652558,31346489 +g1,20756:9511079,31346489 +g1,20756:10729393,31346489 +g1,20756:12101061,31346489 +g1,20756:14012746,31346489 +g1,20756:16529983,31346489 +g1,20756:17720772,31346489 +g1,20756:19530876,31346489 +g1,20756:22090712,31346489 +g1,20756:22941369,31346489 +g1,20756:25856410,31346489 +g1,20756:27074724,31346489 +k1,20757:32583029,31346489:1386091 +g1,20757:32583029,31346489 +) +v1,20759:6630773,32211569:0,393216,0 +(1,20776:6630773,41160677:25952256,9342324,0 +g1,20776:6630773,41160677 +g1,20776:6237557,41160677 +r1,20776:6368629,41160677:131072,9342324,0 +g1,20776:6567858,41160677 +g1,20776:6764466,41160677 +[1,20776:6764466,41160677:25818563,9342324,0 +(1,20760:6764466,32519867:25818563,701514,196608 +(1,20759:6764466,32519867:0,701514,196608 +r1,20776:7761522,32519867:997056,898122,196608 +k1,20759:6764466,32519867:-997056 +) +(1,20759:6764466,32519867:997056,701514,196608 +) +k1,20759:8041076,32519867:279554 +k1,20759:8368756,32519867:327680 +k1,20759:11245503,32519867:279555 +k1,20759:12544142,32519867:279554 +k1,20759:16350189,32519867:279555 +k1,20759:17289035,32519867:279554 +k1,20759:18845887,32519867:279555 +k1,20759:21013533,32519867:279554 +k1,20759:22687039,32519867:279555 +(1,20759:22687039,32519867:0,452978,115847 +r1,20776:28672694,32519867:5985655,568825,115847 +k1,20759:22687039,32519867:-5985655 +) +(1,20759:22687039,32519867:5985655,452978,115847 +g1,20759:26910858,32519867 +g1,20759:27614282,32519867 +h1,20759:28669417,32519867:0,411205,112570 +) +k1,20759:28952248,32519867:279554 +k1,20759:29763300,32519867:279555 +k1,20759:31109125,32519867:279554 +k1,20760:32583029,32519867:0 +) +(1,20760:6764466,33384947:25818563,513147,134348 +k1,20759:8941570,33384947:257555 +k1,20759:9850552,33384947:257554 +k1,20759:12575538,33384947:257555 +k1,20759:13852177,33384947:257554 +k1,20759:15992581,33384947:257555 +k1,20759:17527432,33384947:257554 +k1,20759:19178938,33384947:257555 +(1,20759:19178938,33384947:0,459977,115847 +r1,20776:23406034,33384947:4227096,575824,115847 +k1,20759:19178938,33384947:-4227096 +) +(1,20759:19178938,33384947:4227096,459977,115847 +k1,20759:19178938,33384947:3277 +h1,20759:23402757,33384947:0,411205,112570 +) +k1,20759:23837258,33384947:257554 +k1,20759:24722648,33384947:257555 +k1,20759:25999287,33384947:257554 +k1,20759:27562975,33384947:257555 +k1,20759:29187611,33384947:257555 +k1,20759:31330636,33384947:257554 +k1,20759:32583029,33384947:0 +) +(1,20760:6764466,34250027:25818563,513147,134348 +k1,20759:7515806,34250027:219843 +k1,20759:11234617,34250027:219844 +k1,20759:15461331,34250027:219843 +k1,20759:16628826,34250027:219844 +k1,20759:20912556,34250027:219843 +k1,20759:23703377,34250027:219844 +k1,20759:24995389,34250027:219843 +k1,20759:26281504,34250027:219844 +k1,20759:27520432,34250027:219843 +k1,20759:30684809,34250027:219844 +k1,20759:31563944,34250027:219843 +k1,20759:32583029,34250027:0 +) +(1,20760:6764466,35115107:25818563,513147,138281 +k1,20759:8374649,35115107:211645 +k1,20759:9202332,35115107:211645 +k1,20759:10433062,35115107:211645 +k1,20759:12095674,35115107:211645 +k1,20759:13996837,35115107:211645 +k1,20759:14824520,35115107:211645 +k1,20759:16055250,35115107:211645 +k1,20759:18508226,35115107:211645 +k1,20759:20086952,35115107:211645 +k1,20759:21317681,35115107:211644 +k1,20759:24143557,35115107:211645 +k1,20759:25014494,35115107:211645 +k1,20759:26245224,35115107:211645 +$1,20759:26245224,35115107 +$1,20759:26747885,35115107 +k1,20759:26959530,35115107:211645 +k1,20759:28362620,35115107:211645 +$1,20759:28362620,35115107 +$1,20759:28914433,35115107 +k1,20759:29126078,35115107:211645 +k1,20759:30736261,35115107:211645 +k1,20759:31563944,35115107:211645 +k1,20759:32583029,35115107:0 +) +(1,20760:6764466,35980187:25818563,513147,126483 +k1,20759:8212812,35980187:171049 +k1,20759:8915358,35980187:171049 +k1,20759:12076814,35980187:171048 +k1,20759:13171265,35980187:171049 +k1,20759:15040352,35980187:171049 +k1,20759:18949575,35980187:171049 +k1,20759:20112183,35980187:171048 +k1,20759:22528495,35980187:171049 +k1,20759:23718629,35980187:171049 +$1,20759:23718629,35980187 +$1,20759:24221290,35980187 +k1,20759:24392339,35980187:171049 +k1,20759:27407651,35980187:171049 +k1,20759:28110196,35980187:171048 +k1,20759:30583525,35980187:171049 +k1,20759:31563944,35980187:171049 +k1,20759:32583029,35980187:0 +) +(1,20760:6764466,36845267:25818563,513147,138281 +k1,20759:9261956,36845267:169651 +k1,20759:10683999,36845267:169650 +k1,20759:12045095,36845267:169651 +k1,20759:13233831,36845267:169651 +$1,20759:13233831,36845267 +$1,20759:13785644,36845267 +k1,20759:13955294,36845267:169650 +k1,20759:16969208,36845267:169651 +k1,20759:17948229,36845267:169651 +k1,20759:19136964,36845267:169650 +k1,20759:22622737,36845267:169651 +k1,20759:24218451,36845267:169651 +k1,20759:25460270,36845267:169650 +k1,20759:26649006,36845267:169651 +k1,20759:28054011,36845267:169651 +k1,20759:28882953,36845267:169650 +k1,20759:30071689,36845267:169651 +k1,20759:32583029,36845267:0 +) +(1,20760:6764466,37710347:25818563,513147,126483 +k1,20759:9569424,37710347:219563 +k1,20759:10440415,37710347:219563 +k1,20759:11679063,37710347:219563 +(1,20759:11679063,37710347:0,414482,115847 +r1,20776:12037329,37710347:358266,530329,115847 +k1,20759:11679063,37710347:-358266 +) +(1,20759:11679063,37710347:358266,414482,115847 +k1,20759:11679063,37710347:3277 +h1,20759:12034052,37710347:0,411205,112570 +) +k1,20759:12256892,37710347:219563 +k1,20759:15320718,37710347:219563 +k1,20759:18098151,37710347:219563 +k1,20759:19003876,37710347:219563 +k1,20759:22989138,37710347:219563 +k1,20759:25893711,37710347:219563 +k1,20759:27469214,37710347:219563 +k1,20759:28355933,37710347:219563 +(1,20759:28355933,37710347:0,459977,115847 +r1,20776:32583029,37710347:4227096,575824,115847 +k1,20759:28355933,37710347:-4227096 +) +(1,20759:28355933,37710347:4227096,459977,115847 +k1,20759:28355933,37710347:3277 +h1,20759:32579752,37710347:0,411205,112570 +) +k1,20759:32583029,37710347:0 +) +(1,20760:6764466,38575427:25818563,513147,126483 +g1,20759:8069943,38575427 +g1,20759:9981628,38575427 +g1,20759:10928623,38575427 +g1,20759:14666796,38575427 +g1,20759:15482063,38575427 +g1,20759:16700377,38575427 +k1,20760:32583029,38575427:13556124 +g1,20760:32583029,38575427 +) +v1,20762:6764466,39260282:0,393216,0 +(1,20768:6764466,40964069:25818563,2097003,196608 +g1,20768:6764466,40964069 +g1,20768:6764466,40964069 +g1,20768:6567858,40964069 +(1,20768:6567858,40964069:0,2097003,196608 +r1,20776:32779637,40964069:26211779,2293611,196608 +k1,20768:6567857,40964069:-26211780 +) +(1,20768:6567858,40964069:26211779,2097003,196608 +[1,20768:6764466,40964069:25818563,1900395,0 +(1,20764:6764466,39488113:25818563,424439,106246 +(1,20763:6764466,39488113:0,0,0 +g1,20763:6764466,39488113 +g1,20763:6764466,39488113 +g1,20763:6436786,39488113 +(1,20763:6436786,39488113:0,0,0 +) +g1,20763:6764466,39488113 +) +g1,20764:9088144,39488113 +h1,20764:9420098,39488113:0,0,0 +k1,20764:32583030,39488113:23162932 +g1,20764:32583030,39488113 +) +(1,20765:6764466,40172968:25818563,431045,106246 +h1,20765:6764466,40172968:0,0,0 +g1,20765:7096420,40172968 +g1,20765:7428374,40172968 +g1,20765:13735499,40172968 +g1,20765:14399407,40172968 +g1,20765:16391131,40172968 +g1,20765:19046763,40172968 +g1,20765:19710671,40172968 +g1,20765:20374579,40172968 +g1,20765:21038487,40172968 +g1,20765:22034349,40172968 +h1,20765:22366303,40172968:0,0,0 +k1,20765:32583029,40172968:10216726 +g1,20765:32583029,40172968 +) +(1,20766:6764466,40857823:25818563,431045,106246 +h1,20766:6764466,40857823:0,0,0 +g1,20766:7096420,40857823 +g1,20766:7428374,40857823 +k1,20766:7428374,40857823:0 +h1,20766:11411821,40857823:0,0,0 +k1,20766:32583029,40857823:21171208 +g1,20766:32583029,40857823 +) +] +) +g1,20768:32583029,40964069 +g1,20768:6764466,40964069 +g1,20768:6764466,40964069 +g1,20768:32583029,40964069 +g1,20768:32583029,40964069 +) +h1,20768:6764466,41160677:0,0,0 +] +g1,20776:32583029,41160677 +) +] +(1,20776:32583029,45706769:0,0,0 +g1,20776:32583029,45706769 +) +) +] +(1,20776:6630773,47279633:25952256,0,0 +h1,20776:6630773,47279633:25952256,0,0 +) +] +(1,20776:4262630,4025873:0,0,0 +[1,20776:-473656,4025873:0,0,0 +(1,20776:-473656,-710413:0,0,0 +(1,20776:-473656,-710413:0,0,0 +g1,20776:-473656,-710413 ) -g1,20778:-473656,-710413 +g1,20776:-473656,-710413 ) ] ) ] !16609 -}348 -Input:3766:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3767:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3768:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3769:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}349 Input:3770:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3771:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3772:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3773:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3774:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3775:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{349 -[1,20841:4262630,47279633:28320399,43253760,0 -(1,20841:4262630,4025873:0,0,0 -[1,20841:-473656,4025873:0,0,0 -(1,20841:-473656,-710413:0,0,0 -(1,20841:-473656,-644877:0,0,0 -k1,20841:-473656,-644877:-65536 +{350 +[1,20839:4262630,47279633:28320399,43253760,0 +(1,20839:4262630,4025873:0,0,0 +[1,20839:-473656,4025873:0,0,0 +(1,20839:-473656,-710413:0,0,0 +(1,20839:-473656,-644877:0,0,0 +k1,20839:-473656,-644877:-65536 ) -(1,20841:-473656,4736287:0,0,0 -k1,20841:-473656,4736287:5209943 +(1,20839:-473656,4736287:0,0,0 +k1,20839:-473656,4736287:5209943 ) -g1,20841:-473656,-710413 +g1,20839:-473656,-710413 ) ] ) -[1,20841:6630773,47279633:25952256,43253760,0 -[1,20841:6630773,4812305:25952256,786432,0 -(1,20841:6630773,4812305:25952256,513147,126483 -(1,20841:6630773,4812305:25952256,513147,126483 -g1,20841:3078558,4812305 -[1,20841:3078558,4812305:0,0,0 -(1,20841:3078558,2439708:0,1703936,0 -k1,20841:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20841:2537886,2439708:1179648,16384,0 +[1,20839:6630773,47279633:25952256,43253760,0 +[1,20839:6630773,4812305:25952256,786432,0 +(1,20839:6630773,4812305:25952256,513147,126483 +(1,20839:6630773,4812305:25952256,513147,126483 +g1,20839:3078558,4812305 +[1,20839:3078558,4812305:0,0,0 +(1,20839:3078558,2439708:0,1703936,0 +k1,20839:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20839:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20841:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20839:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20841:3078558,4812305:0,0,0 -(1,20841:3078558,2439708:0,1703936,0 -g1,20841:29030814,2439708 -g1,20841:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20841:36151628,1915420:16384,1179648,0 +[1,20839:3078558,4812305:0,0,0 +(1,20839:3078558,2439708:0,1703936,0 +g1,20839:29030814,2439708 +g1,20839:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20839:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20841:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20839:37855564,2439708:1179648,16384,0 ) ) -k1,20841:3078556,2439708:-34777008 +k1,20839:3078556,2439708:-34777008 ) ] -[1,20841:3078558,4812305:0,0,0 -(1,20841:3078558,49800853:0,16384,2228224 -k1,20841:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20841:2537886,49800853:1179648,16384,0 +[1,20839:3078558,4812305:0,0,0 +(1,20839:3078558,49800853:0,16384,2228224 +k1,20839:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20839:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20841:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20839:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20841:3078558,4812305:0,0,0 -(1,20841:3078558,49800853:0,16384,2228224 -g1,20841:29030814,49800853 -g1,20841:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20841:36151628,51504789:16384,1179648,0 +[1,20839:3078558,4812305:0,0,0 +(1,20839:3078558,49800853:0,16384,2228224 +g1,20839:29030814,49800853 +g1,20839:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20839:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20841:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20839:37855564,49800853:1179648,16384,0 ) ) -k1,20841:3078556,49800853:-34777008 +k1,20839:3078556,49800853:-34777008 ) ] -g1,20841:6630773,4812305 -k1,20841:21386205,4812305:13560055 -g1,20841:21999622,4812305 -g1,20841:25611966,4812305 -g1,20841:28956923,4812305 -g1,20841:29772190,4812305 -) -) -] -[1,20841:6630773,45706769:25952256,40108032,0 -(1,20841:6630773,45706769:25952256,40108032,0 -(1,20841:6630773,45706769:0,0,0 -g1,20841:6630773,45706769 +g1,20839:6630773,4812305 +k1,20839:21386205,4812305:13560055 +g1,20839:21999622,4812305 +g1,20839:25611966,4812305 +g1,20839:28956923,4812305 +g1,20839:29772190,4812305 +) +) +] +[1,20839:6630773,45706769:25952256,40108032,0 +(1,20839:6630773,45706769:25952256,40108032,0 +(1,20839:6630773,45706769:0,0,0 +g1,20839:6630773,45706769 ) -[1,20841:6630773,45706769:25952256,40108032,0 -v1,20778:6630773,6254097:0,393216,0 -(1,20778:6630773,15446027:25952256,9585146,0 -g1,20778:6630773,15446027 -g1,20778:6237557,15446027 -r1,20841:6368629,15446027:131072,9585146,0 -g1,20778:6567858,15446027 -g1,20778:6764466,15446027 -[1,20778:6764466,15446027:25818563,9585146,0 -(1,20773:6764466,15446027:25818563,9585146,0 -k1,20773:6893488,15446027:129022 -h1,20772:6893488,15446027:0,0,0 -(1,20772:6893488,15446027:25560519,9585146,0 -(1,20772:6893488,15446027:25560452,9585169,0 -(1,20772:6893488,15446027:25560452,9585169,0 -(1,20772:6893488,15446027:0,9585169,0 -(1,20772:6893488,15446027:0,14208860,0 -(1,20772:6893488,15446027:37890292,14208860,0 -) -k1,20772:6893488,15446027:-37890292 -) -) -g1,20772:32453940,15446027 -) -) -) -g1,20773:32454007,15446027 -k1,20773:32583029,15446027:129022 -) -] -g1,20778:32583029,15446027 -) -h1,20778:6630773,15446027:0,0,0 -(1,20781:6630773,16311107:25952256,513147,134348 -h1,20780:6630773,16311107:983040,0,0 -k1,20780:8404996,16311107:163348 -k1,20780:11148497,16311107:163349 -k1,20780:14359269,16311107:163349 -k1,20780:17063448,16311107:163348 -$1,20780:17063448,16311107 -$1,20780:17631645,16311107 -k1,20780:17794993,16311107:163348 -k1,20780:19708153,16311107:163349 -k1,20780:22724940,16311107:163349 -k1,20780:25109959,16311107:163348 -k1,20780:25924735,16311107:163348 -k1,20780:28075791,16311107:163349 -k1,20780:30173763,16311107:163349 -k1,20780:31812326,16311107:163348 -k1,20781:32583029,16311107:0 -) -(1,20781:6630773,17176187:25952256,513147,134348 -(1,20780:6630773,17176187:0,452978,115847 -r1,20841:10506157,17176187:3875384,568825,115847 -k1,20780:6630773,17176187:-3875384 -) -(1,20780:6630773,17176187:3875384,452978,115847 -k1,20780:6630773,17176187:3277 -h1,20780:10502880,17176187:0,411205,112570 -) -k1,20780:10750227,17176187:244070 -k1,20780:14275029,17176187:244070 -k1,20780:15205261,17176187:244070 -k1,20780:17193244,17176187:244070 -k1,20780:19004935,17176187:244070 -k1,20780:21829158,17176187:244071 -k1,20780:24901761,17176187:244070 -k1,20780:26134769,17176187:244070 -k1,20780:27451008,17176187:244070 -k1,20780:28311116,17176187:244070 -k1,20780:31221191,17176187:244070 -k1,20780:32583029,17176187:0 -) -(1,20781:6630773,18041267:25952256,513147,138281 -k1,20780:8882631,18041267:203858 -k1,20780:11960244,18041267:203859 -k1,20780:14082996,18041267:203858 -$1,20780:14082996,18041267 -$1,20780:14585657,18041267 -k1,20780:14789516,18041267:203859 -k1,20780:15524871,18041267:203858 -k1,20780:16538099,18041267:203858 -k1,20780:17761043,18041267:203859 -k1,20780:18915173,18041267:203858 -k1,20780:20310477,18041267:203859 -$1,20780:20310477,18041267 -$1,20780:20862290,18041267 -k1,20780:21066148,18041267:203858 -k1,20780:22079376,18041267:203858 -k1,20780:23302320,18041267:203859 -k1,20780:24713351,18041267:203858 -k1,20780:26410776,18041267:203859 -k1,20780:27300796,18041267:203858 -(1,20780:27300796,18041267:0,459977,115847 -r1,20841:32583029,18041267:5282233,575824,115847 -k1,20780:27300796,18041267:-5282233 -) -(1,20780:27300796,18041267:5282233,459977,115847 -g1,20780:30117768,18041267 -g1,20780:30821192,18041267 -g1,20780:31524616,18041267 -g1,20780:32228040,18041267 -h1,20780:32579752,18041267:0,411205,112570 -) -k1,20780:32583029,18041267:0 -) -(1,20781:6630773,18906347:25952256,513147,134348 -k1,20780:9953011,18906347:249255 -k1,20780:10558126,18906347:249255 -k1,20780:12891426,18906347:249255 -k1,20780:16421413,18906347:249255 -k1,20780:18064619,18906347:249255 -k1,20780:19232690,18906347:249256 -k1,20780:21469652,18906347:249255 -k1,20780:23653530,18906347:249255 -k1,20780:27102253,18906347:249255 -k1,20780:28830656,18906347:249255 -k1,20780:30252350,18906347:249255 -k1,20780:31931601,18906347:249255 -k1,20781:32583029,18906347:0 -) -(1,20781:6630773,19771427:25952256,513147,134348 -(1,20780:6630773,19771427:0,452978,115847 -r1,20841:12264716,19771427:5633943,568825,115847 -k1,20780:6630773,19771427:-5633943 -) -(1,20780:6630773,19771427:5633943,452978,115847 -k1,20780:6630773,19771427:3277 -h1,20780:12261439,19771427:0,411205,112570 -) -k1,20780:12642415,19771427:204029 -k1,20780:13865529,19771427:204029 -k1,20780:15375691,19771427:204029 -k1,20780:17315113,19771427:204029 -k1,20780:18538228,19771427:204030 -k1,20780:21007837,19771427:204029 -(1,20780:21007837,19771427:0,459977,115847 -r1,20841:26290070,19771427:5282233,575824,115847 -k1,20780:21007837,19771427:-5282233 -) -(1,20780:21007837,19771427:5282233,459977,115847 -g1,20780:23824809,19771427 -g1,20780:24528233,19771427 -g1,20780:25231657,19771427 -g1,20780:25935081,19771427 -h1,20780:26286793,19771427:0,411205,112570 -) -k1,20780:26667769,19771427:204029 -k1,20780:28063243,19771427:204029 -k1,20780:29286357,19771427:204029 -k1,20780:31731717,19771427:204029 -k1,20781:32583029,19771427:0 -) -(1,20781:6630773,20636507:25952256,513147,134348 -k1,20780:7789497,20636507:168475 -(1,20780:7789497,20636507:0,459977,115847 -r1,20841:13071730,20636507:5282233,575824,115847 -k1,20780:7789497,20636507:-5282233 -) -(1,20780:7789497,20636507:5282233,459977,115847 -g1,20780:10606469,20636507 -g1,20780:11309893,20636507 -g1,20780:12013317,20636507 -g1,20780:12716741,20636507 -h1,20780:13068453,20636507:0,411205,112570 -) -k1,20780:13240206,20636507:168476 -k1,20780:14060109,20636507:168475 -k1,20780:15857155,20636507:168476 -k1,20780:17044715,20636507:168475 -k1,20780:19680621,20636507:168475 -k1,20780:20508389,20636507:168476 -k1,20780:21695949,20636507:168475 -k1,20780:23576880,20636507:168475 -k1,20780:25906733,20636507:168476 -k1,20780:27094293,20636507:168475 -k1,20780:28540066,20636507:168476 -k1,20780:31410590,20636507:168475 -k1,20780:32583029,20636507:0 -) -(1,20781:6630773,21501587:25952256,513147,134348 -k1,20780:8616716,21501587:273487 -k1,20780:10389010,21501587:273486 -k1,20780:11718937,21501587:273487 -k1,20780:13910007,21501587:273487 -k1,20780:15577444,21501587:273486 -k1,20780:16870016,21501587:273487 -k1,20780:19388766,21501587:273487 -k1,20780:21149265,21501587:273487 -k1,20780:25048203,21501587:273486 -k1,20780:26007852,21501587:273487 -k1,20780:27337779,21501587:273487 -k1,20780:29110073,21501587:273486 -k1,20780:30575005,21501587:273487 -k1,20780:32583029,21501587:0 -) -(1,20781:6630773,22366667:25952256,505283,7863 -k1,20781:32583028,22366667:23977656 -g1,20781:32583028,22366667 -) -v1,20783:6630773,23051522:0,393216,0 -(1,20789:6630773,24755309:25952256,2097003,196608 -g1,20789:6630773,24755309 -g1,20789:6630773,24755309 -g1,20789:6434165,24755309 -(1,20789:6434165,24755309:0,2097003,196608 -r1,20841:32779637,24755309:26345472,2293611,196608 -k1,20789:6434165,24755309:-26345472 -) -(1,20789:6434165,24755309:26345472,2097003,196608 -[1,20789:6630773,24755309:25952256,1900395,0 -(1,20785:6630773,23279353:25952256,424439,106246 -(1,20784:6630773,23279353:0,0,0 -g1,20784:6630773,23279353 -g1,20784:6630773,23279353 -g1,20784:6303093,23279353 -(1,20784:6303093,23279353:0,0,0 -) -g1,20784:6630773,23279353 -) -g1,20785:8954451,23279353 -h1,20785:9286405,23279353:0,0,0 -k1,20785:32583029,23279353:23296624 -g1,20785:32583029,23279353 -) -(1,20786:6630773,23964208:25952256,424439,106246 -h1,20786:6630773,23964208:0,0,0 -g1,20786:6962727,23964208 -g1,20786:7294681,23964208 -g1,20786:7626635,23964208 -g1,20786:7958589,23964208 -g1,20786:13601806,23964208 -h1,20786:13933760,23964208:0,0,0 -k1,20786:32583028,23964208:18649268 -g1,20786:32583028,23964208 -) -(1,20787:6630773,24649063:25952256,431045,106246 -h1,20787:6630773,24649063:0,0,0 -g1,20787:6962727,24649063 -g1,20787:7294681,24649063 -g1,20787:7626635,24649063 -g1,20787:7958589,24649063 -g1,20787:15593530,24649063 -g1,20787:16257438,24649063 -g1,20787:16921346,24649063 -g1,20787:17585254,24649063 -g1,20787:18581116,24649063 -g1,20787:20904794,24649063 -g1,20787:21568702,24649063 -g1,20787:23892380,24649063 -g1,20787:25552150,24649063 -g1,20787:26216058,24649063 -h1,20787:29203643,24649063:0,0,0 -k1,20787:32583029,24649063:3379386 -g1,20787:32583029,24649063 -) -] -) -g1,20789:32583029,24755309 -g1,20789:6630773,24755309 -g1,20789:6630773,24755309 -g1,20789:32583029,24755309 -g1,20789:32583029,24755309 -) -h1,20789:6630773,24951917:0,0,0 -(1,20792:6630773,34652248:25952256,9634795,0 -k1,20792:6760463,34652248:129690 -h1,20791:6760463,34652248:0,0,0 -(1,20791:6760463,34652248:25692876,9634795,0 -(1,20791:6760463,34652248:25692851,9634819,0 -(1,20791:6760463,34652248:25692851,9634819,0 -(1,20791:6760463,34652248:0,9634819,0 -(1,20791:6760463,34652248:0,14208860,0 -(1,20791:6760463,34652248:37890292,14208860,0 -) -k1,20791:6760463,34652248:-37890292 -) -) -g1,20791:32453314,34652248 -) -) -) -g1,20792:32453339,34652248 -k1,20792:32583029,34652248:129690 -) -(1,20799:6630773,35517328:25952256,513147,126483 -h1,20798:6630773,35517328:983040,0,0 -k1,20798:8511572,35517328:269924 -k1,20798:9800580,35517328:269923 -k1,20798:11437585,35517328:269924 -k1,20798:12366800,35517328:269923 -k1,20798:13655809,35517328:269924 -(1,20798:13655809,35517328:0,452978,115847 -r1,20841:15069210,35517328:1413401,568825,115847 -k1,20798:13655809,35517328:-1413401 -) -(1,20798:13655809,35517328:1413401,452978,115847 -k1,20798:13655809,35517328:3277 -h1,20798:15065933,35517328:0,411205,112570 -) -k1,20798:15339134,35517328:269924 -k1,20798:16998420,35517328:269923 -k1,20798:18781570,35517328:269924 -k1,20798:19999145,35517328:269924 -k1,20798:21965795,35517328:269923 -k1,20798:25401108,35517328:269924 -k1,20798:27137727,35517328:269923 -k1,20798:31069803,35517328:269924 -k1,20798:32583029,35517328:0 -) -(1,20799:6630773,36382408:25952256,505283,134348 -k1,20798:8733542,36382408:247445 -k1,20798:9632415,36382408:247445 -k1,20798:11692586,36382408:247445 -k1,20798:15256808,36382408:247445 -k1,20798:16495813,36382408:247445 -k1,20798:18909878,36382408:247445 -k1,20798:19785159,36382408:247446 -k1,20798:21235845,36382408:247445 -k1,20798:22850371,36382408:247445 -k1,20798:24116901,36382408:247445 -k1,20798:26606988,36382408:247445 -k1,20798:29838943,36382408:247445 -k1,20798:30617885,36382408:247445 -k1,20798:31516758,36382408:247445 -k1,20798:32583029,36382408:0 -) -(1,20799:6630773,37247488:25952256,505283,126483 -k1,20798:9273021,37247488:243630 -k1,20798:10801157,37247488:243630 -k1,20798:12699571,37247488:243630 -k1,20798:13474698,37247488:243630 -k1,20798:14074188,37247488:243630 -k1,20798:16829158,37247488:243630 -k1,20798:18357293,37247488:243629 -k1,20798:19705205,37247488:243630 -k1,20798:20696601,37247488:243630 -k1,20798:24439198,37247488:243630 -k1,20798:28689699,37247488:243630 -k1,20798:30124774,37247488:243630 -k1,20798:32583029,37247488:0 -) -(1,20799:6630773,38112568:25952256,505283,134348 -k1,20798:10311837,38112568:290231 -k1,20798:11411437,38112568:290230 -k1,20798:12333435,38112568:290231 -k1,20798:13815111,38112568:290231 -k1,20798:16432524,38112568:290230 -k1,20798:17815240,38112568:290231 -k1,20798:18461331,38112568:290231 -k1,20798:21205884,38112568:290230 -k1,20798:22642340,38112568:290231 -k1,20798:24818041,38112568:290230 -k1,20798:26360665,38112568:290231 -k1,20798:28116189,38112568:290139 -k1,20798:31896867,38112568:290231 -k1,20798:32583029,38112568:0 -) -(1,20799:6630773,38977648:25952256,505283,7863 -k1,20799:32583029,38977648:24031396 -g1,20799:32583029,38977648 -) -v1,20801:6630773,39662503:0,393216,0 -(1,20805:6630773,39996580:25952256,727293,196608 -g1,20805:6630773,39996580 -g1,20805:6630773,39996580 -g1,20805:6434165,39996580 -(1,20805:6434165,39996580:0,727293,196608 -r1,20841:32779637,39996580:26345472,923901,196608 -k1,20805:6434165,39996580:-26345472 -) -(1,20805:6434165,39996580:26345472,727293,196608 -[1,20805:6630773,39996580:25952256,530685,0 -(1,20803:6630773,39890334:25952256,424439,106246 -(1,20802:6630773,39890334:0,0,0 -g1,20802:6630773,39890334 -g1,20802:6630773,39890334 -g1,20802:6303093,39890334 -(1,20802:6303093,39890334:0,0,0 -) -g1,20802:6630773,39890334 -) -g1,20803:8954451,39890334 -g1,20803:9618359,39890334 -k1,20803:9618359,39890334:0 -h1,20803:14265714,39890334:0,0,0 -k1,20803:32583030,39890334:18317316 -g1,20803:32583030,39890334 -) -] -) -g1,20805:32583029,39996580 -g1,20805:6630773,39996580 -g1,20805:6630773,39996580 -g1,20805:32583029,39996580 -g1,20805:32583029,39996580 -) -h1,20805:6630773,40193188:0,0,0 -] -(1,20841:32583029,45706769:0,0,0 -g1,20841:32583029,45706769 -) -) -] -(1,20841:6630773,47279633:25952256,0,0 -h1,20841:6630773,47279633:25952256,0,0 -) -] -(1,20841:4262630,4025873:0,0,0 -[1,20841:-473656,4025873:0,0,0 -(1,20841:-473656,-710413:0,0,0 -(1,20841:-473656,-710413:0,0,0 -g1,20841:-473656,-710413 -) -g1,20841:-473656,-710413 +[1,20839:6630773,45706769:25952256,40108032,0 +v1,20776:6630773,6254097:0,393216,0 +(1,20776:6630773,15446027:25952256,9585146,0 +g1,20776:6630773,15446027 +g1,20776:6237557,15446027 +r1,20839:6368629,15446027:131072,9585146,0 +g1,20776:6567858,15446027 +g1,20776:6764466,15446027 +[1,20776:6764466,15446027:25818563,9585146,0 +(1,20771:6764466,15446027:25818563,9585146,0 +k1,20771:6893488,15446027:129022 +h1,20770:6893488,15446027:0,0,0 +(1,20770:6893488,15446027:25560519,9585146,0 +(1,20770:6893488,15446027:25560452,9585169,0 +(1,20770:6893488,15446027:25560452,9585169,0 +(1,20770:6893488,15446027:0,9585169,0 +(1,20770:6893488,15446027:0,14208860,0 +(1,20770:6893488,15446027:37890292,14208860,0 +) +k1,20770:6893488,15446027:-37890292 +) +) +g1,20770:32453940,15446027 +) +) +) +g1,20771:32454007,15446027 +k1,20771:32583029,15446027:129022 +) +] +g1,20776:32583029,15446027 +) +h1,20776:6630773,15446027:0,0,0 +(1,20779:6630773,16311107:25952256,513147,134348 +h1,20778:6630773,16311107:983040,0,0 +k1,20778:8404996,16311107:163348 +k1,20778:11148497,16311107:163349 +k1,20778:14359269,16311107:163349 +k1,20778:17063448,16311107:163348 +$1,20778:17063448,16311107 +$1,20778:17631645,16311107 +k1,20778:17794993,16311107:163348 +k1,20778:19708153,16311107:163349 +k1,20778:22724940,16311107:163349 +k1,20778:25109959,16311107:163348 +k1,20778:25924735,16311107:163348 +k1,20778:28075791,16311107:163349 +k1,20778:30173763,16311107:163349 +k1,20778:31812326,16311107:163348 +k1,20779:32583029,16311107:0 +) +(1,20779:6630773,17176187:25952256,513147,134348 +(1,20778:6630773,17176187:0,452978,115847 +r1,20839:10506157,17176187:3875384,568825,115847 +k1,20778:6630773,17176187:-3875384 +) +(1,20778:6630773,17176187:3875384,452978,115847 +k1,20778:6630773,17176187:3277 +h1,20778:10502880,17176187:0,411205,112570 +) +k1,20778:10750227,17176187:244070 +k1,20778:14275029,17176187:244070 +k1,20778:15205261,17176187:244070 +k1,20778:17193244,17176187:244070 +k1,20778:19004935,17176187:244070 +k1,20778:21829158,17176187:244071 +k1,20778:24901761,17176187:244070 +k1,20778:26134769,17176187:244070 +k1,20778:27451008,17176187:244070 +k1,20778:28311116,17176187:244070 +k1,20778:31221191,17176187:244070 +k1,20778:32583029,17176187:0 +) +(1,20779:6630773,18041267:25952256,513147,138281 +k1,20778:8882631,18041267:203858 +k1,20778:11960244,18041267:203859 +k1,20778:14082996,18041267:203858 +$1,20778:14082996,18041267 +$1,20778:14585657,18041267 +k1,20778:14789516,18041267:203859 +k1,20778:15524871,18041267:203858 +k1,20778:16538099,18041267:203858 +k1,20778:17761043,18041267:203859 +k1,20778:18915173,18041267:203858 +k1,20778:20310477,18041267:203859 +$1,20778:20310477,18041267 +$1,20778:20862290,18041267 +k1,20778:21066148,18041267:203858 +k1,20778:22079376,18041267:203858 +k1,20778:23302320,18041267:203859 +k1,20778:24713351,18041267:203858 +k1,20778:26410776,18041267:203859 +k1,20778:27300796,18041267:203858 +(1,20778:27300796,18041267:0,459977,115847 +r1,20839:32583029,18041267:5282233,575824,115847 +k1,20778:27300796,18041267:-5282233 +) +(1,20778:27300796,18041267:5282233,459977,115847 +g1,20778:30117768,18041267 +g1,20778:30821192,18041267 +g1,20778:31524616,18041267 +g1,20778:32228040,18041267 +h1,20778:32579752,18041267:0,411205,112570 +) +k1,20778:32583029,18041267:0 +) +(1,20779:6630773,18906347:25952256,513147,134348 +k1,20778:9953011,18906347:249255 +k1,20778:10558126,18906347:249255 +k1,20778:12891426,18906347:249255 +k1,20778:16421413,18906347:249255 +k1,20778:18064619,18906347:249255 +k1,20778:19232690,18906347:249256 +k1,20778:21469652,18906347:249255 +k1,20778:23653530,18906347:249255 +k1,20778:27102253,18906347:249255 +k1,20778:28830656,18906347:249255 +k1,20778:30252350,18906347:249255 +k1,20778:31931601,18906347:249255 +k1,20779:32583029,18906347:0 +) +(1,20779:6630773,19771427:25952256,513147,134348 +(1,20778:6630773,19771427:0,452978,115847 +r1,20839:12264716,19771427:5633943,568825,115847 +k1,20778:6630773,19771427:-5633943 +) +(1,20778:6630773,19771427:5633943,452978,115847 +k1,20778:6630773,19771427:3277 +h1,20778:12261439,19771427:0,411205,112570 +) +k1,20778:12642415,19771427:204029 +k1,20778:13865529,19771427:204029 +k1,20778:15375691,19771427:204029 +k1,20778:17315113,19771427:204029 +k1,20778:18538228,19771427:204030 +k1,20778:21007837,19771427:204029 +(1,20778:21007837,19771427:0,459977,115847 +r1,20839:26290070,19771427:5282233,575824,115847 +k1,20778:21007837,19771427:-5282233 +) +(1,20778:21007837,19771427:5282233,459977,115847 +g1,20778:23824809,19771427 +g1,20778:24528233,19771427 +g1,20778:25231657,19771427 +g1,20778:25935081,19771427 +h1,20778:26286793,19771427:0,411205,112570 +) +k1,20778:26667769,19771427:204029 +k1,20778:28063243,19771427:204029 +k1,20778:29286357,19771427:204029 +k1,20778:31731717,19771427:204029 +k1,20779:32583029,19771427:0 +) +(1,20779:6630773,20636507:25952256,513147,134348 +k1,20778:7789497,20636507:168475 +(1,20778:7789497,20636507:0,459977,115847 +r1,20839:13071730,20636507:5282233,575824,115847 +k1,20778:7789497,20636507:-5282233 +) +(1,20778:7789497,20636507:5282233,459977,115847 +g1,20778:10606469,20636507 +g1,20778:11309893,20636507 +g1,20778:12013317,20636507 +g1,20778:12716741,20636507 +h1,20778:13068453,20636507:0,411205,112570 +) +k1,20778:13240206,20636507:168476 +k1,20778:14060109,20636507:168475 +k1,20778:15857155,20636507:168476 +k1,20778:17044715,20636507:168475 +k1,20778:19680621,20636507:168475 +k1,20778:20508389,20636507:168476 +k1,20778:21695949,20636507:168475 +k1,20778:23576880,20636507:168475 +k1,20778:25906733,20636507:168476 +k1,20778:27094293,20636507:168475 +k1,20778:28540066,20636507:168476 +k1,20778:31410590,20636507:168475 +k1,20778:32583029,20636507:0 +) +(1,20779:6630773,21501587:25952256,513147,134348 +k1,20778:8616716,21501587:273487 +k1,20778:10389010,21501587:273486 +k1,20778:11718937,21501587:273487 +k1,20778:13910007,21501587:273487 +k1,20778:15577444,21501587:273486 +k1,20778:16870016,21501587:273487 +k1,20778:19388766,21501587:273487 +k1,20778:21149265,21501587:273487 +k1,20778:25048203,21501587:273486 +k1,20778:26007852,21501587:273487 +k1,20778:27337779,21501587:273487 +k1,20778:29110073,21501587:273486 +k1,20778:30575005,21501587:273487 +k1,20778:32583029,21501587:0 +) +(1,20779:6630773,22366667:25952256,505283,7863 +k1,20779:32583028,22366667:23977656 +g1,20779:32583028,22366667 +) +v1,20781:6630773,23051522:0,393216,0 +(1,20787:6630773,24755309:25952256,2097003,196608 +g1,20787:6630773,24755309 +g1,20787:6630773,24755309 +g1,20787:6434165,24755309 +(1,20787:6434165,24755309:0,2097003,196608 +r1,20839:32779637,24755309:26345472,2293611,196608 +k1,20787:6434165,24755309:-26345472 +) +(1,20787:6434165,24755309:26345472,2097003,196608 +[1,20787:6630773,24755309:25952256,1900395,0 +(1,20783:6630773,23279353:25952256,424439,106246 +(1,20782:6630773,23279353:0,0,0 +g1,20782:6630773,23279353 +g1,20782:6630773,23279353 +g1,20782:6303093,23279353 +(1,20782:6303093,23279353:0,0,0 +) +g1,20782:6630773,23279353 +) +g1,20783:8954451,23279353 +h1,20783:9286405,23279353:0,0,0 +k1,20783:32583029,23279353:23296624 +g1,20783:32583029,23279353 +) +(1,20784:6630773,23964208:25952256,424439,106246 +h1,20784:6630773,23964208:0,0,0 +g1,20784:6962727,23964208 +g1,20784:7294681,23964208 +g1,20784:7626635,23964208 +g1,20784:7958589,23964208 +g1,20784:13601806,23964208 +h1,20784:13933760,23964208:0,0,0 +k1,20784:32583028,23964208:18649268 +g1,20784:32583028,23964208 +) +(1,20785:6630773,24649063:25952256,431045,106246 +h1,20785:6630773,24649063:0,0,0 +g1,20785:6962727,24649063 +g1,20785:7294681,24649063 +g1,20785:7626635,24649063 +g1,20785:7958589,24649063 +g1,20785:15593530,24649063 +g1,20785:16257438,24649063 +g1,20785:16921346,24649063 +g1,20785:17585254,24649063 +g1,20785:18581116,24649063 +g1,20785:20904794,24649063 +g1,20785:21568702,24649063 +g1,20785:23892380,24649063 +g1,20785:25552150,24649063 +g1,20785:26216058,24649063 +h1,20785:29203643,24649063:0,0,0 +k1,20785:32583029,24649063:3379386 +g1,20785:32583029,24649063 +) +] +) +g1,20787:32583029,24755309 +g1,20787:6630773,24755309 +g1,20787:6630773,24755309 +g1,20787:32583029,24755309 +g1,20787:32583029,24755309 +) +h1,20787:6630773,24951917:0,0,0 +(1,20790:6630773,34652248:25952256,9634795,0 +k1,20790:6760463,34652248:129690 +h1,20789:6760463,34652248:0,0,0 +(1,20789:6760463,34652248:25692876,9634795,0 +(1,20789:6760463,34652248:25692851,9634819,0 +(1,20789:6760463,34652248:25692851,9634819,0 +(1,20789:6760463,34652248:0,9634819,0 +(1,20789:6760463,34652248:0,14208860,0 +(1,20789:6760463,34652248:37890292,14208860,0 +) +k1,20789:6760463,34652248:-37890292 +) +) +g1,20789:32453314,34652248 +) +) +) +g1,20790:32453339,34652248 +k1,20790:32583029,34652248:129690 +) +(1,20797:6630773,35517328:25952256,513147,126483 +h1,20796:6630773,35517328:983040,0,0 +k1,20796:8511572,35517328:269924 +k1,20796:9800580,35517328:269923 +k1,20796:11437585,35517328:269924 +k1,20796:12366800,35517328:269923 +k1,20796:13655809,35517328:269924 +(1,20796:13655809,35517328:0,452978,115847 +r1,20839:15069210,35517328:1413401,568825,115847 +k1,20796:13655809,35517328:-1413401 +) +(1,20796:13655809,35517328:1413401,452978,115847 +k1,20796:13655809,35517328:3277 +h1,20796:15065933,35517328:0,411205,112570 +) +k1,20796:15339134,35517328:269924 +k1,20796:16998420,35517328:269923 +k1,20796:18781570,35517328:269924 +k1,20796:19999145,35517328:269924 +k1,20796:21965795,35517328:269923 +k1,20796:25401108,35517328:269924 +k1,20796:27137727,35517328:269923 +k1,20796:31069803,35517328:269924 +k1,20796:32583029,35517328:0 +) +(1,20797:6630773,36382408:25952256,505283,134348 +k1,20796:8733542,36382408:247445 +k1,20796:9632415,36382408:247445 +k1,20796:11692586,36382408:247445 +k1,20796:15256808,36382408:247445 +k1,20796:16495813,36382408:247445 +k1,20796:18909878,36382408:247445 +k1,20796:19785159,36382408:247446 +k1,20796:21235845,36382408:247445 +k1,20796:22850371,36382408:247445 +k1,20796:24116901,36382408:247445 +k1,20796:26606988,36382408:247445 +k1,20796:29838943,36382408:247445 +k1,20796:30617885,36382408:247445 +k1,20796:31516758,36382408:247445 +k1,20796:32583029,36382408:0 +) +(1,20797:6630773,37247488:25952256,505283,126483 +k1,20796:9273021,37247488:243630 +k1,20796:10801157,37247488:243630 +k1,20796:12699571,37247488:243630 +k1,20796:13474698,37247488:243630 +k1,20796:14074188,37247488:243630 +k1,20796:16829158,37247488:243630 +k1,20796:18357293,37247488:243629 +k1,20796:19705205,37247488:243630 +k1,20796:20696601,37247488:243630 +k1,20796:24439198,37247488:243630 +k1,20796:28689699,37247488:243630 +k1,20796:30124774,37247488:243630 +k1,20796:32583029,37247488:0 +) +(1,20797:6630773,38112568:25952256,505283,134348 +k1,20796:10311837,38112568:290231 +k1,20796:11411437,38112568:290230 +k1,20796:12333435,38112568:290231 +k1,20796:13815111,38112568:290231 +k1,20796:16432524,38112568:290230 +k1,20796:17815240,38112568:290231 +k1,20796:18461331,38112568:290231 +k1,20796:21205884,38112568:290230 +k1,20796:22642340,38112568:290231 +k1,20796:24818041,38112568:290230 +k1,20796:26360665,38112568:290231 +k1,20796:28116189,38112568:290139 +k1,20796:31896867,38112568:290231 +k1,20796:32583029,38112568:0 +) +(1,20797:6630773,38977648:25952256,505283,7863 +k1,20797:32583029,38977648:24031396 +g1,20797:32583029,38977648 +) +v1,20799:6630773,39662503:0,393216,0 +(1,20803:6630773,39996580:25952256,727293,196608 +g1,20803:6630773,39996580 +g1,20803:6630773,39996580 +g1,20803:6434165,39996580 +(1,20803:6434165,39996580:0,727293,196608 +r1,20839:32779637,39996580:26345472,923901,196608 +k1,20803:6434165,39996580:-26345472 +) +(1,20803:6434165,39996580:26345472,727293,196608 +[1,20803:6630773,39996580:25952256,530685,0 +(1,20801:6630773,39890334:25952256,424439,106246 +(1,20800:6630773,39890334:0,0,0 +g1,20800:6630773,39890334 +g1,20800:6630773,39890334 +g1,20800:6303093,39890334 +(1,20800:6303093,39890334:0,0,0 +) +g1,20800:6630773,39890334 +) +g1,20801:8954451,39890334 +g1,20801:9618359,39890334 +k1,20801:9618359,39890334:0 +h1,20801:14265714,39890334:0,0,0 +k1,20801:32583030,39890334:18317316 +g1,20801:32583030,39890334 +) +] +) +g1,20803:32583029,39996580 +g1,20803:6630773,39996580 +g1,20803:6630773,39996580 +g1,20803:32583029,39996580 +g1,20803:32583029,39996580 +) +h1,20803:6630773,40193188:0,0,0 +] +(1,20839:32583029,45706769:0,0,0 +g1,20839:32583029,45706769 +) +) +] +(1,20839:6630773,47279633:25952256,0,0 +h1,20839:6630773,47279633:25952256,0,0 +) +] +(1,20839:4262630,4025873:0,0,0 +[1,20839:-473656,4025873:0,0,0 +(1,20839:-473656,-710413:0,0,0 +(1,20839:-473656,-710413:0,0,0 +g1,20839:-473656,-710413 +) +g1,20839:-473656,-710413 ) ] ) ] !15400 -}349 -Input:3772:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:3773:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:3774:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:3775:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3776:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3777:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3778:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}350 +Input:3776:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:3777:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:3778:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:3779:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3780:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3781:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:3782:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:3783:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:3781:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3782:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3783:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3784:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3785:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3786:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3787:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3785:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:3786:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:3787:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec Input:3788:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3789:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3790:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3791:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3792:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3793:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3794:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3795:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3796:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1938 -{350 -[1,20869:4262630,47279633:28320399,43253760,0 -(1,20869:4262630,4025873:0,0,0 -[1,20869:-473656,4025873:0,0,0 -(1,20869:-473656,-710413:0,0,0 -(1,20869:-473656,-644877:0,0,0 -k1,20869:-473656,-644877:-65536 +{351 +[1,20867:4262630,47279633:28320399,43253760,0 +(1,20867:4262630,4025873:0,0,0 +[1,20867:-473656,4025873:0,0,0 +(1,20867:-473656,-710413:0,0,0 +(1,20867:-473656,-644877:0,0,0 +k1,20867:-473656,-644877:-65536 ) -(1,20869:-473656,4736287:0,0,0 -k1,20869:-473656,4736287:5209943 +(1,20867:-473656,4736287:0,0,0 +k1,20867:-473656,4736287:5209943 ) -g1,20869:-473656,-710413 +g1,20867:-473656,-710413 ) ] ) -[1,20869:6630773,47279633:25952256,43253760,0 -[1,20869:6630773,4812305:25952256,786432,0 -(1,20869:6630773,4812305:25952256,485622,11795 -(1,20869:6630773,4812305:25952256,485622,11795 -g1,20869:3078558,4812305 -[1,20869:3078558,4812305:0,0,0 -(1,20869:3078558,2439708:0,1703936,0 -k1,20869:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20869:2537886,2439708:1179648,16384,0 +[1,20867:6630773,47279633:25952256,43253760,0 +[1,20867:6630773,4812305:25952256,786432,0 +(1,20867:6630773,4812305:25952256,485622,11795 +(1,20867:6630773,4812305:25952256,485622,11795 +g1,20867:3078558,4812305 +[1,20867:3078558,4812305:0,0,0 +(1,20867:3078558,2439708:0,1703936,0 +k1,20867:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20867:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20869:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20867:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20869:3078558,4812305:0,0,0 -(1,20869:3078558,2439708:0,1703936,0 -g1,20869:29030814,2439708 -g1,20869:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20869:36151628,1915420:16384,1179648,0 +[1,20867:3078558,4812305:0,0,0 +(1,20867:3078558,2439708:0,1703936,0 +g1,20867:29030814,2439708 +g1,20867:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20867:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20869:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20867:37855564,2439708:1179648,16384,0 ) ) -k1,20869:3078556,2439708:-34777008 +k1,20867:3078556,2439708:-34777008 ) ] -[1,20869:3078558,4812305:0,0,0 -(1,20869:3078558,49800853:0,16384,2228224 -k1,20869:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20869:2537886,49800853:1179648,16384,0 +[1,20867:3078558,4812305:0,0,0 +(1,20867:3078558,49800853:0,16384,2228224 +k1,20867:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20867:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20869:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20867:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20869:3078558,4812305:0,0,0 -(1,20869:3078558,49800853:0,16384,2228224 -g1,20869:29030814,49800853 -g1,20869:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20869:36151628,51504789:16384,1179648,0 +[1,20867:3078558,4812305:0,0,0 +(1,20867:3078558,49800853:0,16384,2228224 +g1,20867:29030814,49800853 +g1,20867:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20867:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20869:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20867:37855564,49800853:1179648,16384,0 ) ) -k1,20869:3078556,49800853:-34777008 +k1,20867:3078556,49800853:-34777008 ) ] -g1,20869:6630773,4812305 -g1,20869:6630773,4812305 -g1,20869:8769212,4812305 -k1,20869:31387652,4812305:22618440 +g1,20867:6630773,4812305 +g1,20867:6630773,4812305 +g1,20867:8769212,4812305 +k1,20867:31387652,4812305:22618440 ) ) ] -[1,20869:6630773,45706769:25952256,40108032,0 -(1,20869:6630773,45706769:25952256,40108032,0 -(1,20869:6630773,45706769:0,0,0 -g1,20869:6630773,45706769 +[1,20867:6630773,45706769:25952256,40108032,0 +(1,20867:6630773,45706769:25952256,40108032,0 +(1,20867:6630773,45706769:0,0,0 +g1,20867:6630773,45706769 ) -[1,20869:6630773,45706769:25952256,40108032,0 -(1,20808:6630773,15233532:25952256,9634795,0 -k1,20808:6760463,15233532:129690 -h1,20807:6760463,15233532:0,0,0 -(1,20807:6760463,15233532:25692876,9634795,0 -(1,20807:6760463,15233532:25692851,9634819,0 -(1,20807:6760463,15233532:25692851,9634819,0 -(1,20807:6760463,15233532:0,9634819,0 -(1,20807:6760463,15233532:0,14208860,0 -(1,20807:6760463,15233532:37890292,14208860,0 +[1,20867:6630773,45706769:25952256,40108032,0 +(1,20806:6630773,15233532:25952256,9634795,0 +k1,20806:6760463,15233532:129690 +h1,20805:6760463,15233532:0,0,0 +(1,20805:6760463,15233532:25692876,9634795,0 +(1,20805:6760463,15233532:25692851,9634819,0 +(1,20805:6760463,15233532:25692851,9634819,0 +(1,20805:6760463,15233532:0,9634819,0 +(1,20805:6760463,15233532:0,14208860,0 +(1,20805:6760463,15233532:37890292,14208860,0 ) -k1,20807:6760463,15233532:-37890292 +k1,20805:6760463,15233532:-37890292 ) ) -g1,20807:32453314,15233532 +g1,20805:32453314,15233532 ) ) ) -g1,20808:32453339,15233532 -k1,20808:32583029,15233532:129690 -) -(1,20841:6630773,18064692:25952256,32768,229376 -(1,20841:6630773,18064692:0,32768,229376 -(1,20841:6630773,18064692:5505024,32768,229376 -r1,20869:12135797,18064692:5505024,262144,229376 -) -k1,20841:6630773,18064692:-5505024 -) -(1,20841:6630773,18064692:25952256,32768,0 -r1,20869:32583029,18064692:25952256,32768,0 -) -) -(1,20841:6630773,19696544:25952256,582746,14155 -(1,20841:6630773,19696544:1974731,582746,14155 -g1,20841:6630773,19696544 -g1,20841:8605504,19696544 -) -k1,20841:32583028,19696544:21495544 -g1,20841:32583028,19696544 -) -(1,20845:6630773,20954840:25952256,513147,134348 -k1,20844:8818365,20954840:237238 -k1,20844:10034057,20954840:237238 -k1,20844:11764863,20954840:237239 -k1,20844:12611586,20954840:237238 -k1,20844:13204684,20954840:237238 -k1,20844:15596749,20954840:237238 -k1,20844:17243669,20954840:237239 -k1,20844:18133646,20954840:237238 -k1,20844:19952270,20954840:237238 -k1,20844:23492528,20954840:237238 -k1,20844:26355142,20954840:237238 -k1,20844:28633830,20954840:237239 -k1,20844:29480553,20954840:237238 -k1,20844:31577050,20954840:237238 -k1,20844:32583029,20954840:0 -) -(1,20845:6630773,21819920:25952256,513147,126483 -k1,20844:8837068,21819920:164846 -k1,20844:10712405,21819920:164845 -k1,20844:12549732,21819920:164846 -k1,20844:16118523,21819920:164845 -k1,20844:18131487,21819920:164846 -k1,20844:19541519,21819920:164846 -k1,20844:20359103,21819920:164845 -k1,20844:24287032,21819920:164846 -k1,20844:26493327,21819920:164846 -k1,20844:27636626,21819920:164845 -k1,20844:28157332,21819920:164846 -k1,20844:30266633,21819920:164845 -k1,20844:31662902,21819920:164846 -k1,20844:32583029,21819920:0 -) -(1,20845:6630773,22685000:25952256,505283,134348 -k1,20844:10140248,22685000:206455 -k1,20844:12993707,22685000:206456 -k1,20844:14736984,22685000:206455 -k1,20844:16791558,22685000:206456 -k1,20844:18579399,22685000:206455 -k1,20844:21157605,22685000:206455 -k1,20844:23824942,22685000:206456 -k1,20844:26550605,22685000:206455 -k1,20844:27756487,22685000:206456 -(1,20844:27756487,22685000:0,452978,115847 -r1,20869:30225024,22685000:2468537,568825,115847 -k1,20844:27756487,22685000:-2468537 -) -(1,20844:27756487,22685000:2468537,452978,115847 -k1,20844:27756487,22685000:3277 -h1,20844:30221747,22685000:0,411205,112570 -) -k1,20844:30431479,22685000:206455 -k1,20844:32583029,22685000:0 -) -(1,20845:6630773,23550080:25952256,513147,134348 -k1,20844:7404637,23550080:170932 -k1,20844:8102478,23550080:170932 -k1,20844:9451748,23550080:170931 -k1,20844:10628659,23550080:170932 -k1,20844:13071724,23550080:170932 -k1,20844:15783490,23550080:170932 -k1,20844:16557354,23550080:170932 -k1,20844:17316799,23550080:170932 -k1,20844:18671311,23550080:170931 -k1,20844:20437392,23550080:170932 -k1,20844:21913803,23550080:170932 -k1,20844:22609679,23550080:170932 -k1,20844:23425486,23550080:170932 -k1,20844:25051974,23550080:170932 -k1,20844:26737444,23550080:170931 -k1,20844:29085485,23550080:170932 -k1,20844:31930290,23550080:170932 -k1,20844:32583029,23550080:0 -) -(1,20845:6630773,24415160:25952256,513147,134348 -k1,20844:8410293,24415160:198134 -k1,20844:9982719,24415160:198134 -k1,20844:12925505,24415160:198135 -k1,20844:15160502,24415160:198134 -k1,20844:16111646,24415160:198134 -k1,20844:17891166,24415160:198134 -k1,20844:20700913,24415160:198134 -k1,20844:22876927,24415160:198134 -k1,20844:24009607,24415160:198135 -k1,20844:25213720,24415160:198134 -k1,20844:27045668,24415160:198134 -k1,20844:30071685,24415160:198134 -k1,20844:32583029,24415160:0 -) -(1,20845:6630773,25280240:25952256,513147,126483 -k1,20844:8221987,25280240:251656 -k1,20844:8998586,25280240:251655 -k1,20844:11194698,25280240:251656 -k1,20844:13124733,25280240:251656 -k1,20844:15004960,25280240:251655 -k1,20844:16235070,25280240:251656 -k1,20844:19112102,25280240:251656 -k1,20844:23428963,25280240:251656 -k1,20844:25865592,25280240:251655 -k1,20844:26726733,25280240:251656 -k1,20844:27334249,25280240:251656 -k1,20844:28955608,25280240:251655 -k1,20844:30295819,25280240:251656 -k1,20845:32583029,25280240:0 -) -(1,20845:6630773,26145320:25952256,513147,134348 -k1,20844:9187100,26145320:218654 -k1,20844:11154257,26145320:218653 -k1,20844:12431974,26145320:218654 -k1,20844:14024920,26145320:218654 -k1,20844:15471720,26145320:218653 -k1,20844:17560119,26145320:218654 -k1,20844:18455105,26145320:218654 -k1,20844:20048050,26145320:218653 -k1,20844:21272683,26145320:218654 -k1,20844:23125150,26145320:218653 -k1,20844:24889801,26145320:218654 -k1,20844:26167518,26145320:218654 -k1,20844:26742031,26145320:218653 -k1,20844:29687643,26145320:218654 -k1,20844:32583029,26145320:0 -) -(1,20845:6630773,27010400:25952256,513147,134348 -k1,20844:7777299,27010400:168072 -k1,20844:11340796,27010400:168072 -k1,20844:12775025,27010400:168072 -k1,20844:15054672,27010400:168073 -k1,20844:15844026,27010400:168072 -k1,20844:18834078,27010400:168072 -k1,20844:20630722,27010400:168072 -k1,20844:21777248,27010400:168072 -k1,20844:23104653,27010400:168072 -k1,20844:25856815,27010400:168073 -k1,20844:27715063,27010400:168072 -k1,20844:28535874,27010400:168072 -k1,20844:30727046,27010400:168072 -k1,20844:32583029,27010400:0 -) -(1,20845:6630773,27875480:25952256,513147,134348 -k1,20844:9835111,27875480:129384 -k1,20844:10573981,27875480:129385 -k1,20844:11059225,27875480:129384 -k1,20844:12620573,27875480:129384 -k1,20844:13928296,27875480:129384 -k1,20844:15913664,27875480:129385 -k1,20844:17761404,27875480:129384 -k1,20844:18246648,27875480:129384 -k1,20844:20216287,27875480:129385 -k1,20844:21912640,27875480:129384 -k1,20844:22694763,27875480:129384 -k1,20844:25597635,27875480:129384 -k1,20844:26953200,27875480:129385 -k1,20844:29847553,27875480:129384 -k1,20844:32583029,27875480:0 -) -(1,20845:6630773,28740560:25952256,505283,134348 -k1,20844:8013633,28740560:135053 -k1,20844:9308019,28740560:135053 -k1,20844:10119404,28740560:135053 -k1,20844:11884995,28740560:135053 -k1,20844:13701704,28740560:135053 -k1,20844:15684875,28740560:135053 -k1,20844:16798382,28740560:135053 -k1,20844:19928435,28740560:135053 -k1,20844:20818463,28740560:135053 -k1,20844:23101790,28740560:135053 -(1,20844:23101790,28740560:0,459977,122846 -r1,20869:27328886,28740560:4227096,582823,122846 -k1,20844:23101790,28740560:-4227096 -) -(1,20844:23101790,28740560:4227096,459977,122846 -k1,20844:23101790,28740560:3277 -h1,20844:27325609,28740560:0,411205,112570 -) -k1,20844:27463939,28740560:135053 -k1,20844:28268771,28740560:135053 -(1,20844:28268771,28740560:0,459977,115847 -r1,20869:32495867,28740560:4227096,575824,115847 -k1,20844:28268771,28740560:-4227096 -) -(1,20844:28268771,28740560:4227096,459977,115847 -k1,20844:28268771,28740560:3277 -h1,20844:32492590,28740560:0,411205,112570 -) -k1,20844:32583029,28740560:0 -) -(1,20845:6630773,29605640:25952256,513147,134348 -k1,20844:10705422,29605640:183114 -k1,20844:12890009,29605640:183114 -(1,20844:12890009,29605640:0,452978,122846 -r1,20869:17117105,29605640:4227096,575824,122846 -k1,20844:12890009,29605640:-4227096 -) -(1,20844:12890009,29605640:4227096,452978,122846 -k1,20844:12890009,29605640:3277 -h1,20844:17113828,29605640:0,411205,112570 -) -k1,20844:17300219,29605640:183114 -k1,20844:18008277,29605640:183114 -k1,20844:19684958,29605640:183114 -k1,20844:20477557,29605640:183114 -k1,20844:21666651,29605640:183115 -k1,20844:24962730,29605640:183114 -k1,20844:26204907,29605640:183114 -k1,20844:28890845,29605640:183114 -k1,20844:30165135,29605640:183114 -k1,20844:31089462,29605640:183114 -k1,20844:32583029,29605640:0 -) -(1,20845:6630773,30470720:25952256,505283,134348 -g1,20844:8171527,30470720 -g1,20844:9945589,30470720 -g1,20844:13441285,30470720 -g1,20844:15489288,30470720 -g1,20844:17992767,30470720 -g1,20844:19559735,30470720 -g1,20844:20864559,30470720 -(1,20844:20864559,30470720:0,414482,122846 -r1,20869:22277960,30470720:1413401,537328,122846 -k1,20844:20864559,30470720:-1413401 -) -(1,20844:20864559,30470720:1413401,414482,122846 -k1,20844:20864559,30470720:3277 -h1,20844:22274683,30470720:0,411205,112570 -) -g1,20844:22470636,30470720 -g1,20844:23333091,30470720 -(1,20844:23333091,30470720:0,414482,115847 -r1,20869:24746492,30470720:1413401,530329,115847 -k1,20844:23333091,30470720:-1413401 -) -(1,20844:23333091,30470720:1413401,414482,115847 -k1,20844:23333091,30470720:3277 -h1,20844:24743215,30470720:0,411205,112570 -) -h1,20844:24920162,30470720:0,0,0 -k1,20845:32583029,30470720:7784109 -g1,20845:32583029,30470720 -) -(1,20849:6630773,31335800:25952256,505283,134348 -h1,20848:6630773,31335800:983040,0,0 -k1,20848:8257033,31335800:155632 -k1,20848:12242633,31335800:155676 -k1,20848:13849275,31335800:155675 -k1,20848:15816366,31335800:155676 -k1,20848:16658204,31335800:155676 -(1,20848:16658204,31335800:0,452978,115847 -r1,20869:18775029,31335800:2116825,568825,115847 -k1,20848:16658204,31335800:-2116825 -) -(1,20848:16658204,31335800:2116825,452978,115847 -k1,20848:16658204,31335800:3277 -h1,20848:18771752,31335800:0,411205,112570 -) -k1,20848:19104374,31335800:155675 -k1,20848:20392512,31335800:155676 -k1,20848:21295953,31335800:155675 -k1,20848:22964855,31335800:155676 -k1,20848:25679056,31335800:155675 -k1,20848:27037973,31335800:155676 -k1,20848:29472335,31335800:155675 -k1,20848:30279439,31335800:155676 -k1,20849:32583029,31335800:0 -) -(1,20849:6630773,32200880:25952256,513147,134348 -g1,20848:8665665,32200880 -g1,20848:10195275,32200880 -g1,20848:11413589,32200880 -g1,20848:13266291,32200880 -g1,20848:14742817,32200880 -g1,20848:17513023,32200880 -g1,20848:19410290,32200880 -g1,20848:21498267,32200880 -g1,20848:22689056,32200880 -k1,20849:32583029,32200880:7876120 -g1,20849:32583029,32200880 -) -v1,20851:6630773,32885735:0,393216,0 -(1,20859:6630773,35959232:25952256,3466713,196608 -g1,20859:6630773,35959232 -g1,20859:6630773,35959232 -g1,20859:6434165,35959232 -(1,20859:6434165,35959232:0,3466713,196608 -r1,20869:32779637,35959232:26345472,3663321,196608 -k1,20859:6434165,35959232:-26345472 -) -(1,20859:6434165,35959232:26345472,3466713,196608 -[1,20859:6630773,35959232:25952256,3270105,0 -(1,20853:6630773,33113566:25952256,424439,106246 -(1,20852:6630773,33113566:0,0,0 -g1,20852:6630773,33113566 -g1,20852:6630773,33113566 -g1,20852:6303093,33113566 -(1,20852:6303093,33113566:0,0,0 -) -g1,20852:6630773,33113566 -) -g1,20853:8954451,33113566 -k1,20853:8954451,33113566:0 -h1,20853:9618359,33113566:0,0,0 -k1,20853:32583029,33113566:22964670 -g1,20853:32583029,33113566 -) -(1,20854:6630773,33798421:25952256,424439,112852 -h1,20854:6630773,33798421:0,0,0 -g1,20854:6962727,33798421 -g1,20854:7294681,33798421 -g1,20854:11278129,33798421 -g1,20854:11942037,33798421 -k1,20854:11942037,33798421:0 -h1,20854:14265715,33798421:0,0,0 -k1,20854:32583029,33798421:18317314 -g1,20854:32583029,33798421 -) -(1,20855:6630773,34483276:25952256,424439,112852 -h1,20855:6630773,34483276:0,0,0 -g1,20855:6962727,34483276 -g1,20855:7294681,34483276 -g1,20855:7626635,34483276 -g1,20855:7958589,34483276 -g1,20855:8290543,34483276 -g1,20855:8622497,34483276 -g1,20855:8954451,34483276 -g1,20855:9286405,34483276 -g1,20855:9618359,34483276 -g1,20855:12273991,34483276 -g1,20855:12937899,34483276 -g1,20855:14929623,34483276 -g1,20855:15593531,34483276 -g1,20855:16921347,34483276 -g1,20855:17585255,34483276 -g1,20855:18249163,34483276 -g1,20855:20240887,34483276 -h1,20855:20572841,34483276:0,0,0 -k1,20855:32583029,34483276:12010188 -g1,20855:32583029,34483276 -) -(1,20856:6630773,35168131:25952256,424439,112852 -h1,20856:6630773,35168131:0,0,0 -g1,20856:6962727,35168131 -g1,20856:7294681,35168131 -k1,20856:7294681,35168131:0 -h1,20856:11278128,35168131:0,0,0 -k1,20856:32583028,35168131:21304900 -g1,20856:32583028,35168131 -) -(1,20857:6630773,35852986:25952256,424439,106246 -h1,20857:6630773,35852986:0,0,0 -h1,20857:8622497,35852986:0,0,0 -k1,20857:32583029,35852986:23960532 -g1,20857:32583029,35852986 -) -] -) -g1,20859:32583029,35959232 -g1,20859:6630773,35959232 -g1,20859:6630773,35959232 -g1,20859:32583029,35959232 -g1,20859:32583029,35959232 -) -h1,20859:6630773,36155840:0,0,0 -(1,20862:6630773,45305042:25952256,9083666,0 -k1,20862:10523651,45305042:3892878 -h1,20861:10523651,45305042:0,0,0 -(1,20861:10523651,45305042:18166500,9083666,0 -(1,20861:10523651,45305042:18167376,9083688,0 -(1,20861:10523651,45305042:18167376,9083688,0 -(1,20861:10523651,45305042:0,9083688,0 -(1,20861:10523651,45305042:0,14208860,0 -(1,20861:10523651,45305042:28417720,14208860,0 -) -k1,20861:10523651,45305042:-28417720 -) -) -g1,20861:28691027,45305042 -) -) -) -g1,20862:28690151,45305042 -k1,20862:32583029,45305042:3892878 -) -] -(1,20869:32583029,45706769:0,0,0 -g1,20869:32583029,45706769 -) -) -] -(1,20869:6630773,47279633:25952256,0,0 -h1,20869:6630773,47279633:25952256,0,0 +g1,20806:32453339,15233532 +k1,20806:32583029,15233532:129690 +) +(1,20839:6630773,18064692:25952256,32768,229376 +(1,20839:6630773,18064692:0,32768,229376 +(1,20839:6630773,18064692:5505024,32768,229376 +r1,20867:12135797,18064692:5505024,262144,229376 +) +k1,20839:6630773,18064692:-5505024 +) +(1,20839:6630773,18064692:25952256,32768,0 +r1,20867:32583029,18064692:25952256,32768,0 +) +) +(1,20839:6630773,19696544:25952256,582746,14155 +(1,20839:6630773,19696544:1974731,582746,14155 +g1,20839:6630773,19696544 +g1,20839:8605504,19696544 +) +k1,20839:32583028,19696544:21495544 +g1,20839:32583028,19696544 +) +(1,20843:6630773,20954840:25952256,513147,134348 +k1,20842:8818365,20954840:237238 +k1,20842:10034057,20954840:237238 +k1,20842:11764863,20954840:237239 +k1,20842:12611586,20954840:237238 +k1,20842:13204684,20954840:237238 +k1,20842:15596749,20954840:237238 +k1,20842:17243669,20954840:237239 +k1,20842:18133646,20954840:237238 +k1,20842:19952270,20954840:237238 +k1,20842:23492528,20954840:237238 +k1,20842:26355142,20954840:237238 +k1,20842:28633830,20954840:237239 +k1,20842:29480553,20954840:237238 +k1,20842:31577050,20954840:237238 +k1,20842:32583029,20954840:0 +) +(1,20843:6630773,21819920:25952256,513147,126483 +k1,20842:8837068,21819920:164846 +k1,20842:10712405,21819920:164845 +k1,20842:12549732,21819920:164846 +k1,20842:16118523,21819920:164845 +k1,20842:18131487,21819920:164846 +k1,20842:19541519,21819920:164846 +k1,20842:20359103,21819920:164845 +k1,20842:24287032,21819920:164846 +k1,20842:26493327,21819920:164846 +k1,20842:27636626,21819920:164845 +k1,20842:28157332,21819920:164846 +k1,20842:30266633,21819920:164845 +k1,20842:31662902,21819920:164846 +k1,20842:32583029,21819920:0 +) +(1,20843:6630773,22685000:25952256,505283,134348 +k1,20842:10140248,22685000:206455 +k1,20842:12993707,22685000:206456 +k1,20842:14736984,22685000:206455 +k1,20842:16791558,22685000:206456 +k1,20842:18579399,22685000:206455 +k1,20842:21157605,22685000:206455 +k1,20842:23824942,22685000:206456 +k1,20842:26550605,22685000:206455 +k1,20842:27756487,22685000:206456 +(1,20842:27756487,22685000:0,452978,115847 +r1,20867:30225024,22685000:2468537,568825,115847 +k1,20842:27756487,22685000:-2468537 +) +(1,20842:27756487,22685000:2468537,452978,115847 +k1,20842:27756487,22685000:3277 +h1,20842:30221747,22685000:0,411205,112570 +) +k1,20842:30431479,22685000:206455 +k1,20842:32583029,22685000:0 +) +(1,20843:6630773,23550080:25952256,513147,134348 +k1,20842:7404637,23550080:170932 +k1,20842:8102478,23550080:170932 +k1,20842:9451748,23550080:170931 +k1,20842:10628659,23550080:170932 +k1,20842:13071724,23550080:170932 +k1,20842:15783490,23550080:170932 +k1,20842:16557354,23550080:170932 +k1,20842:17316799,23550080:170932 +k1,20842:18671311,23550080:170931 +k1,20842:20437392,23550080:170932 +k1,20842:21913803,23550080:170932 +k1,20842:22609679,23550080:170932 +k1,20842:23425486,23550080:170932 +k1,20842:25051974,23550080:170932 +k1,20842:26737444,23550080:170931 +k1,20842:29085485,23550080:170932 +k1,20842:31930290,23550080:170932 +k1,20842:32583029,23550080:0 +) +(1,20843:6630773,24415160:25952256,513147,134348 +k1,20842:8410293,24415160:198134 +k1,20842:9982719,24415160:198134 +k1,20842:12925505,24415160:198135 +k1,20842:15160502,24415160:198134 +k1,20842:16111646,24415160:198134 +k1,20842:17891166,24415160:198134 +k1,20842:20700913,24415160:198134 +k1,20842:22876927,24415160:198134 +k1,20842:24009607,24415160:198135 +k1,20842:25213720,24415160:198134 +k1,20842:27045668,24415160:198134 +k1,20842:30071685,24415160:198134 +k1,20842:32583029,24415160:0 +) +(1,20843:6630773,25280240:25952256,513147,126483 +k1,20842:8221987,25280240:251656 +k1,20842:8998586,25280240:251655 +k1,20842:11194698,25280240:251656 +k1,20842:13124733,25280240:251656 +k1,20842:15004960,25280240:251655 +k1,20842:16235070,25280240:251656 +k1,20842:19112102,25280240:251656 +k1,20842:23428963,25280240:251656 +k1,20842:25865592,25280240:251655 +k1,20842:26726733,25280240:251656 +k1,20842:27334249,25280240:251656 +k1,20842:28955608,25280240:251655 +k1,20842:30295819,25280240:251656 +k1,20843:32583029,25280240:0 +) +(1,20843:6630773,26145320:25952256,513147,134348 +k1,20842:9187100,26145320:218654 +k1,20842:11154257,26145320:218653 +k1,20842:12431974,26145320:218654 +k1,20842:14024920,26145320:218654 +k1,20842:15471720,26145320:218653 +k1,20842:17560119,26145320:218654 +k1,20842:18455105,26145320:218654 +k1,20842:20048050,26145320:218653 +k1,20842:21272683,26145320:218654 +k1,20842:23125150,26145320:218653 +k1,20842:24889801,26145320:218654 +k1,20842:26167518,26145320:218654 +k1,20842:26742031,26145320:218653 +k1,20842:29687643,26145320:218654 +k1,20842:32583029,26145320:0 +) +(1,20843:6630773,27010400:25952256,513147,134348 +k1,20842:7777299,27010400:168072 +k1,20842:11340796,27010400:168072 +k1,20842:12775025,27010400:168072 +k1,20842:15054672,27010400:168073 +k1,20842:15844026,27010400:168072 +k1,20842:18834078,27010400:168072 +k1,20842:20630722,27010400:168072 +k1,20842:21777248,27010400:168072 +k1,20842:23104653,27010400:168072 +k1,20842:25856815,27010400:168073 +k1,20842:27715063,27010400:168072 +k1,20842:28535874,27010400:168072 +k1,20842:30727046,27010400:168072 +k1,20842:32583029,27010400:0 +) +(1,20843:6630773,27875480:25952256,513147,134348 +k1,20842:9835111,27875480:129384 +k1,20842:10573981,27875480:129385 +k1,20842:11059225,27875480:129384 +k1,20842:12620573,27875480:129384 +k1,20842:13928296,27875480:129384 +k1,20842:15913664,27875480:129385 +k1,20842:17761404,27875480:129384 +k1,20842:18246648,27875480:129384 +k1,20842:20216287,27875480:129385 +k1,20842:21912640,27875480:129384 +k1,20842:22694763,27875480:129384 +k1,20842:25597635,27875480:129384 +k1,20842:26953200,27875480:129385 +k1,20842:29847553,27875480:129384 +k1,20842:32583029,27875480:0 +) +(1,20843:6630773,28740560:25952256,505283,134348 +k1,20842:8013633,28740560:135053 +k1,20842:9308019,28740560:135053 +k1,20842:10119404,28740560:135053 +k1,20842:11884995,28740560:135053 +k1,20842:13701704,28740560:135053 +k1,20842:15684875,28740560:135053 +k1,20842:16798382,28740560:135053 +k1,20842:19928435,28740560:135053 +k1,20842:20818463,28740560:135053 +k1,20842:23101790,28740560:135053 +(1,20842:23101790,28740560:0,459977,122846 +r1,20867:27328886,28740560:4227096,582823,122846 +k1,20842:23101790,28740560:-4227096 +) +(1,20842:23101790,28740560:4227096,459977,122846 +k1,20842:23101790,28740560:3277 +h1,20842:27325609,28740560:0,411205,112570 +) +k1,20842:27463939,28740560:135053 +k1,20842:28268771,28740560:135053 +(1,20842:28268771,28740560:0,459977,115847 +r1,20867:32495867,28740560:4227096,575824,115847 +k1,20842:28268771,28740560:-4227096 +) +(1,20842:28268771,28740560:4227096,459977,115847 +k1,20842:28268771,28740560:3277 +h1,20842:32492590,28740560:0,411205,112570 +) +k1,20842:32583029,28740560:0 +) +(1,20843:6630773,29605640:25952256,513147,134348 +k1,20842:10705422,29605640:183114 +k1,20842:12890009,29605640:183114 +(1,20842:12890009,29605640:0,452978,122846 +r1,20867:17117105,29605640:4227096,575824,122846 +k1,20842:12890009,29605640:-4227096 +) +(1,20842:12890009,29605640:4227096,452978,122846 +k1,20842:12890009,29605640:3277 +h1,20842:17113828,29605640:0,411205,112570 +) +k1,20842:17300219,29605640:183114 +k1,20842:18008277,29605640:183114 +k1,20842:19684958,29605640:183114 +k1,20842:20477557,29605640:183114 +k1,20842:21666651,29605640:183115 +k1,20842:24962730,29605640:183114 +k1,20842:26204907,29605640:183114 +k1,20842:28890845,29605640:183114 +k1,20842:30165135,29605640:183114 +k1,20842:31089462,29605640:183114 +k1,20842:32583029,29605640:0 +) +(1,20843:6630773,30470720:25952256,505283,134348 +g1,20842:8171527,30470720 +g1,20842:9945589,30470720 +g1,20842:13441285,30470720 +g1,20842:15489288,30470720 +g1,20842:17992767,30470720 +g1,20842:19559735,30470720 +g1,20842:20864559,30470720 +(1,20842:20864559,30470720:0,414482,122846 +r1,20867:22277960,30470720:1413401,537328,122846 +k1,20842:20864559,30470720:-1413401 +) +(1,20842:20864559,30470720:1413401,414482,122846 +k1,20842:20864559,30470720:3277 +h1,20842:22274683,30470720:0,411205,112570 +) +g1,20842:22470636,30470720 +g1,20842:23333091,30470720 +(1,20842:23333091,30470720:0,414482,115847 +r1,20867:24746492,30470720:1413401,530329,115847 +k1,20842:23333091,30470720:-1413401 +) +(1,20842:23333091,30470720:1413401,414482,115847 +k1,20842:23333091,30470720:3277 +h1,20842:24743215,30470720:0,411205,112570 +) +h1,20842:24920162,30470720:0,0,0 +k1,20843:32583029,30470720:7784109 +g1,20843:32583029,30470720 +) +(1,20847:6630773,31335800:25952256,505283,134348 +h1,20846:6630773,31335800:983040,0,0 +k1,20846:8257033,31335800:155632 +k1,20846:12242633,31335800:155676 +k1,20846:13849275,31335800:155675 +k1,20846:15816366,31335800:155676 +k1,20846:16658204,31335800:155676 +(1,20846:16658204,31335800:0,452978,115847 +r1,20867:18775029,31335800:2116825,568825,115847 +k1,20846:16658204,31335800:-2116825 +) +(1,20846:16658204,31335800:2116825,452978,115847 +k1,20846:16658204,31335800:3277 +h1,20846:18771752,31335800:0,411205,112570 +) +k1,20846:19104374,31335800:155675 +k1,20846:20392512,31335800:155676 +k1,20846:21295953,31335800:155675 +k1,20846:22964855,31335800:155676 +k1,20846:25679056,31335800:155675 +k1,20846:27037973,31335800:155676 +k1,20846:29472335,31335800:155675 +k1,20846:30279439,31335800:155676 +k1,20847:32583029,31335800:0 +) +(1,20847:6630773,32200880:25952256,513147,134348 +g1,20846:8665665,32200880 +g1,20846:10195275,32200880 +g1,20846:11413589,32200880 +g1,20846:13266291,32200880 +g1,20846:14742817,32200880 +g1,20846:17513023,32200880 +g1,20846:19410290,32200880 +g1,20846:21498267,32200880 +g1,20846:22689056,32200880 +k1,20847:32583029,32200880:7876120 +g1,20847:32583029,32200880 +) +v1,20849:6630773,32885735:0,393216,0 +(1,20857:6630773,35959232:25952256,3466713,196608 +g1,20857:6630773,35959232 +g1,20857:6630773,35959232 +g1,20857:6434165,35959232 +(1,20857:6434165,35959232:0,3466713,196608 +r1,20867:32779637,35959232:26345472,3663321,196608 +k1,20857:6434165,35959232:-26345472 +) +(1,20857:6434165,35959232:26345472,3466713,196608 +[1,20857:6630773,35959232:25952256,3270105,0 +(1,20851:6630773,33113566:25952256,424439,106246 +(1,20850:6630773,33113566:0,0,0 +g1,20850:6630773,33113566 +g1,20850:6630773,33113566 +g1,20850:6303093,33113566 +(1,20850:6303093,33113566:0,0,0 +) +g1,20850:6630773,33113566 +) +g1,20851:8954451,33113566 +k1,20851:8954451,33113566:0 +h1,20851:9618359,33113566:0,0,0 +k1,20851:32583029,33113566:22964670 +g1,20851:32583029,33113566 +) +(1,20852:6630773,33798421:25952256,424439,112852 +h1,20852:6630773,33798421:0,0,0 +g1,20852:6962727,33798421 +g1,20852:7294681,33798421 +g1,20852:11278129,33798421 +g1,20852:11942037,33798421 +k1,20852:11942037,33798421:0 +h1,20852:14265715,33798421:0,0,0 +k1,20852:32583029,33798421:18317314 +g1,20852:32583029,33798421 +) +(1,20853:6630773,34483276:25952256,424439,112852 +h1,20853:6630773,34483276:0,0,0 +g1,20853:6962727,34483276 +g1,20853:7294681,34483276 +g1,20853:7626635,34483276 +g1,20853:7958589,34483276 +g1,20853:8290543,34483276 +g1,20853:8622497,34483276 +g1,20853:8954451,34483276 +g1,20853:9286405,34483276 +g1,20853:9618359,34483276 +g1,20853:12273991,34483276 +g1,20853:12937899,34483276 +g1,20853:14929623,34483276 +g1,20853:15593531,34483276 +g1,20853:16921347,34483276 +g1,20853:17585255,34483276 +g1,20853:18249163,34483276 +g1,20853:20240887,34483276 +h1,20853:20572841,34483276:0,0,0 +k1,20853:32583029,34483276:12010188 +g1,20853:32583029,34483276 +) +(1,20854:6630773,35168131:25952256,424439,112852 +h1,20854:6630773,35168131:0,0,0 +g1,20854:6962727,35168131 +g1,20854:7294681,35168131 +k1,20854:7294681,35168131:0 +h1,20854:11278128,35168131:0,0,0 +k1,20854:32583028,35168131:21304900 +g1,20854:32583028,35168131 +) +(1,20855:6630773,35852986:25952256,424439,106246 +h1,20855:6630773,35852986:0,0,0 +h1,20855:8622497,35852986:0,0,0 +k1,20855:32583029,35852986:23960532 +g1,20855:32583029,35852986 +) +] +) +g1,20857:32583029,35959232 +g1,20857:6630773,35959232 +g1,20857:6630773,35959232 +g1,20857:32583029,35959232 +g1,20857:32583029,35959232 +) +h1,20857:6630773,36155840:0,0,0 +(1,20860:6630773,45305042:25952256,9083666,0 +k1,20860:10523651,45305042:3892878 +h1,20859:10523651,45305042:0,0,0 +(1,20859:10523651,45305042:18166500,9083666,0 +(1,20859:10523651,45305042:18167376,9083688,0 +(1,20859:10523651,45305042:18167376,9083688,0 +(1,20859:10523651,45305042:0,9083688,0 +(1,20859:10523651,45305042:0,14208860,0 +(1,20859:10523651,45305042:28417720,14208860,0 +) +k1,20859:10523651,45305042:-28417720 +) +) +g1,20859:28691027,45305042 +) +) +) +g1,20860:28690151,45305042 +k1,20860:32583029,45305042:3892878 +) +] +(1,20867:32583029,45706769:0,0,0 +g1,20867:32583029,45706769 +) +) +] +(1,20867:6630773,47279633:25952256,0,0 +h1,20867:6630773,47279633:25952256,0,0 ) ] -(1,20869:4262630,4025873:0,0,0 -[1,20869:-473656,4025873:0,0,0 -(1,20869:-473656,-710413:0,0,0 -(1,20869:-473656,-710413:0,0,0 -g1,20869:-473656,-710413 +(1,20867:4262630,4025873:0,0,0 +[1,20867:-473656,4025873:0,0,0 +(1,20867:-473656,-710413:0,0,0 +(1,20867:-473656,-710413:0,0,0 +g1,20867:-473656,-710413 ) -g1,20869:-473656,-710413 +g1,20867:-473656,-710413 ) ] ) ] !16217 -}350 -Input:3793:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3794:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}351 +Input:3797:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{351 -[1,20930:4262630,47279633:28320399,43253760,0 -(1,20930:4262630,4025873:0,0,0 -[1,20930:-473656,4025873:0,0,0 -(1,20930:-473656,-710413:0,0,0 -(1,20930:-473656,-644877:0,0,0 -k1,20930:-473656,-644877:-65536 +{352 +[1,20928:4262630,47279633:28320399,43253760,0 +(1,20928:4262630,4025873:0,0,0 +[1,20928:-473656,4025873:0,0,0 +(1,20928:-473656,-710413:0,0,0 +(1,20928:-473656,-644877:0,0,0 +k1,20928:-473656,-644877:-65536 ) -(1,20930:-473656,4736287:0,0,0 -k1,20930:-473656,4736287:5209943 +(1,20928:-473656,4736287:0,0,0 +k1,20928:-473656,4736287:5209943 ) -g1,20930:-473656,-710413 +g1,20928:-473656,-710413 ) ] ) -[1,20930:6630773,47279633:25952256,43253760,0 -[1,20930:6630773,4812305:25952256,786432,0 -(1,20930:6630773,4812305:25952256,513147,126483 -(1,20930:6630773,4812305:25952256,513147,126483 -g1,20930:3078558,4812305 -[1,20930:3078558,4812305:0,0,0 -(1,20930:3078558,2439708:0,1703936,0 -k1,20930:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20930:2537886,2439708:1179648,16384,0 +[1,20928:6630773,47279633:25952256,43253760,0 +[1,20928:6630773,4812305:25952256,786432,0 +(1,20928:6630773,4812305:25952256,513147,126483 +(1,20928:6630773,4812305:25952256,513147,126483 +g1,20928:3078558,4812305 +[1,20928:3078558,4812305:0,0,0 +(1,20928:3078558,2439708:0,1703936,0 +k1,20928:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20928:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20930:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20928:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20930:3078558,4812305:0,0,0 -(1,20930:3078558,2439708:0,1703936,0 -g1,20930:29030814,2439708 -g1,20930:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20930:36151628,1915420:16384,1179648,0 +[1,20928:3078558,4812305:0,0,0 +(1,20928:3078558,2439708:0,1703936,0 +g1,20928:29030814,2439708 +g1,20928:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20928:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20930:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20928:37855564,2439708:1179648,16384,0 ) ) -k1,20930:3078556,2439708:-34777008 +k1,20928:3078556,2439708:-34777008 ) ] -[1,20930:3078558,4812305:0,0,0 -(1,20930:3078558,49800853:0,16384,2228224 -k1,20930:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20930:2537886,49800853:1179648,16384,0 +[1,20928:3078558,4812305:0,0,0 +(1,20928:3078558,49800853:0,16384,2228224 +k1,20928:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20928:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20930:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20928:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20930:3078558,4812305:0,0,0 -(1,20930:3078558,49800853:0,16384,2228224 -g1,20930:29030814,49800853 -g1,20930:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20930:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20930:37855564,49800853:1179648,16384,0 +[1,20928:3078558,4812305:0,0,0 +(1,20928:3078558,49800853:0,16384,2228224 +g1,20928:29030814,49800853 +g1,20928:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20928:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20928:37855564,49800853:1179648,16384,0 ) ) -k1,20930:3078556,49800853:-34777008 -) -] -g1,20930:6630773,4812305 -k1,20930:21386205,4812305:13560055 -g1,20930:21999622,4812305 -g1,20930:25611966,4812305 -g1,20930:28956923,4812305 -g1,20930:29772190,4812305 -) -) -] -[1,20930:6630773,45706769:25952256,40108032,0 -(1,20930:6630773,45706769:25952256,40108032,0 -(1,20930:6630773,45706769:0,0,0 -g1,20930:6630773,45706769 -) -[1,20930:6630773,45706769:25952256,40108032,0 -(1,20869:6630773,6254097:25952256,513147,134348 -h1,20868:6630773,6254097:983040,0,0 -k1,20868:8329422,6254097:228021 -k1,20868:9841977,6254097:228049 -k1,20868:10729318,6254097:228049 -k1,20868:13031582,6254097:228050 -k1,20868:14360636,6254097:228049 -k1,20868:15761125,6254097:228050 -k1,20868:19838103,6254097:228049 -(1,20868:19838103,6254097:0,414482,115847 -r1,20930:21251504,6254097:1413401,530329,115847 -k1,20868:19838103,6254097:-1413401 -) -(1,20868:19838103,6254097:1413401,414482,115847 -k1,20868:19838103,6254097:3277 -h1,20868:21248227,6254097:0,411205,112570 -) -k1,20868:21479554,6254097:228050 -k1,20868:22899048,6254097:228049 -(1,20868:22899048,6254097:0,452978,115847 -r1,20930:24312449,6254097:1413401,568825,115847 -k1,20868:22899048,6254097:-1413401 -) -(1,20868:22899048,6254097:1413401,452978,115847 -k1,20868:22899048,6254097:3277 -h1,20868:24309172,6254097:0,411205,112570 -) -k1,20868:24714169,6254097:228050 -k1,20868:26816548,6254097:228049 -k1,20868:30719857,6254097:228050 -k1,20868:31563944,6254097:228049 -k1,20868:32583029,6254097:0 -) -(1,20869:6630773,7119177:25952256,513147,134348 -k1,20868:8184582,7119177:269303 -k1,20868:9113176,7119177:269302 -k1,20868:10659776,7119177:269303 -k1,20868:13003292,7119177:269302 -k1,20868:14376877,7119177:269303 -k1,20868:15393945,7119177:269302 -k1,20868:18848953,7119177:269303 -k1,20868:19769683,7119177:269302 -k1,20868:22436948,7119177:269303 -k1,20868:24255521,7119177:269302 -k1,20868:27079417,7119177:269303 -k1,20868:27704579,7119177:269302 -k1,20868:30517334,7119177:269303 -k1,20868:32583029,7119177:0 -) -(1,20869:6630773,7984257:25952256,513147,134348 -k1,20868:7974807,7984257:163075 -k1,20868:9156967,7984257:163075 -k1,20868:10695643,7984257:163075 -k1,20868:13642688,7984257:163076 -k1,20868:15136144,7984257:163075 -k1,20868:18262102,7984257:163075 -k1,20868:19628418,7984257:163075 -k1,20868:22481091,7984257:163075 -k1,20868:23745171,7984257:163075 -k1,20868:25418197,7984257:163076 -k1,20868:28387524,7984257:163075 -k1,20868:29569684,7984257:163075 -k1,20868:32583029,7984257:0 -) -(1,20869:6630773,8849337:25952256,505283,134348 -k1,20868:8925170,8849337:210352 -k1,20868:9667020,8849337:210353 -k1,20868:12787826,8849337:210352 -k1,20868:13649607,8849337:210353 -k1,20868:14952444,8849337:210352 -k1,20868:16181881,8849337:210352 -k1,20868:20003268,8849337:210353 -(1,20868:20003268,8849337:0,414482,115847 -r1,20930:21416669,8849337:1413401,530329,115847 -k1,20868:20003268,8849337:-1413401 -) -(1,20868:20003268,8849337:1413401,414482,115847 -k1,20868:20003268,8849337:3277 -h1,20868:21413392,8849337:0,411205,112570 -) -k1,20868:21627021,8849337:210352 -k1,20868:23028818,8849337:210352 -(1,20868:23028818,8849337:0,452978,115847 -r1,20930:24442219,8849337:1413401,568825,115847 -k1,20868:23028818,8849337:-1413401 -) -(1,20868:23028818,8849337:1413401,452978,115847 -k1,20868:23028818,8849337:3277 -h1,20868:24438942,8849337:0,411205,112570 -) -k1,20868:24826242,8849337:210353 -k1,20868:26233281,8849337:210352 -k1,20868:29515962,8849337:210353 -k1,20868:31931601,8849337:210352 -k1,20869:32583029,8849337:0 -) -(1,20869:6630773,9714417:25952256,513147,126483 -(1,20868:6630773,9714417:0,452978,115847 -r1,20930:8044174,9714417:1413401,568825,115847 -k1,20868:6630773,9714417:-1413401 -) -(1,20868:6630773,9714417:1413401,452978,115847 -k1,20868:6630773,9714417:3277 -h1,20868:8040897,9714417:0,411205,112570 -) -k1,20868:8293981,9714417:249807 -k1,20868:9159825,9714417:249806 -k1,20868:10612873,9714417:249807 -k1,20868:13524096,9714417:249806 -k1,20868:14305400,9714417:249807 -k1,20868:16449196,9714417:249806 -(1,20868:16449196,9714417:0,452978,115847 -r1,20930:17510885,9714417:1061689,568825,115847 -k1,20868:16449196,9714417:-1061689 -) -(1,20868:16449196,9714417:1061689,452978,115847 -k1,20868:16449196,9714417:3277 -h1,20868:17507608,9714417:0,411205,112570 -) -k1,20868:17760692,9714417:249807 -k1,20868:20865246,9714417:249806 -k1,20868:22682674,9714417:249807 -(1,20868:22682674,9714417:0,452978,115847 -r1,20930:24096075,9714417:1413401,568825,115847 -k1,20868:22682674,9714417:-1413401 -) -(1,20868:22682674,9714417:1413401,452978,115847 -k1,20868:22682674,9714417:3277 -h1,20868:24092798,9714417:0,411205,112570 -) -k1,20868:24345881,9714417:249806 -k1,20868:25989639,9714417:249807 -k1,20868:26595305,9714417:249806 -k1,20868:27944806,9714417:249807 -k1,20868:28846041,9714417:249807 -(1,20868:28846041,9714417:0,452978,115847 -r1,20930:30962866,9714417:2116825,568825,115847 -k1,20868:28846041,9714417:-2116825 -) -(1,20868:28846041,9714417:2116825,452978,115847 -k1,20868:28846041,9714417:3277 -h1,20868:30959589,9714417:0,411205,112570 -) -k1,20868:31386342,9714417:249806 -k1,20868:32583029,9714417:0 -) -(1,20869:6630773,10579497:25952256,513147,134348 -k1,20868:10207974,10579497:207339 -k1,20868:11074606,10579497:207340 -k1,20868:12301030,10579497:207339 -k1,20868:14582584,10579497:207340 -k1,20868:15472808,10579497:207339 -k1,20868:16718894,10579497:207340 -k1,20868:17687761,10579497:207339 -k1,20868:20160680,10579497:207339 -k1,20868:21387105,10579497:207340 -k1,20868:23662760,10579497:207339 -k1,20868:24552985,10579497:207340 -k1,20868:26604507,10579497:207339 -k1,20868:27471139,10579497:207340 -k1,20868:28697563,10579497:207339 -k1,20868:30697313,10579497:207340 -k1,20868:31563944,10579497:207339 -k1,20868:32583029,10579497:0 -) -(1,20869:6630773,11444577:25952256,513147,7863 -k1,20869:32583028,11444577:24005836 -g1,20869:32583028,11444577 -) -v1,20871:6630773,12129432:0,393216,0 -(1,20875:6630773,12476721:25952256,740505,196608 -g1,20875:6630773,12476721 -g1,20875:6630773,12476721 -g1,20875:6434165,12476721 -(1,20875:6434165,12476721:0,740505,196608 -r1,20930:32779637,12476721:26345472,937113,196608 -k1,20875:6434165,12476721:-26345472 -) -(1,20875:6434165,12476721:26345472,740505,196608 -[1,20875:6630773,12476721:25952256,543897,0 -(1,20873:6630773,12363869:25952256,431045,112852 -(1,20872:6630773,12363869:0,0,0 -g1,20872:6630773,12363869 -g1,20872:6630773,12363869 -g1,20872:6303093,12363869 -(1,20872:6303093,12363869:0,0,0 -) -g1,20872:6630773,12363869 -) -g1,20873:8954451,12363869 -g1,20873:9618359,12363869 -g1,20873:14929622,12363869 -g1,20873:15593530,12363869 -k1,20873:15593530,12363869:0 -h1,20873:18913070,12363869:0,0,0 -k1,20873:32583029,12363869:13669959 -g1,20873:32583029,12363869 -) -] -) -g1,20875:32583029,12476721 -g1,20875:6630773,12476721 -g1,20875:6630773,12476721 -g1,20875:32583029,12476721 -g1,20875:32583029,12476721 -) -h1,20875:6630773,12673329:0,0,0 -(1,20878:6630773,21822531:25952256,9083666,0 -k1,20878:10523651,21822531:3892878 -h1,20877:10523651,21822531:0,0,0 -(1,20877:10523651,21822531:18166500,9083666,0 -(1,20877:10523651,21822531:18167376,9083688,0 -(1,20877:10523651,21822531:18167376,9083688,0 -(1,20877:10523651,21822531:0,9083688,0 -(1,20877:10523651,21822531:0,14208860,0 -(1,20877:10523651,21822531:28417720,14208860,0 -) -k1,20877:10523651,21822531:-28417720 -) -) -g1,20877:28691027,21822531 -) -) -) -g1,20878:28690151,21822531 -k1,20878:32583029,21822531:3892878 -) -(1,20885:6630773,22687611:25952256,513147,134348 -h1,20884:6630773,22687611:983040,0,0 -g1,20884:9604796,22687611 -(1,20884:9604796,22687611:0,459977,115847 -r1,20930:13831892,22687611:4227096,575824,115847 -k1,20884:9604796,22687611:-4227096 -) -(1,20884:9604796,22687611:4227096,459977,115847 -k1,20884:9604796,22687611:3277 -h1,20884:13828615,22687611:0,411205,112570 -) -g1,20884:14031121,22687611 -g1,20884:15249435,22687611 -g1,20884:17102137,22687611 -g1,20884:18578663,22687611 -g1,20884:19882174,22687611 -g1,20884:20829169,22687611 -g1,20884:22945326,22687611 -g1,20884:23830717,22687611 -k1,20885:32583029,22687611:6384497 -g1,20885:32583029,22687611 -) -v1,20887:6630773,23372466:0,393216,0 -(1,20891:6630773,23713149:25952256,733899,196608 -g1,20891:6630773,23713149 -g1,20891:6630773,23713149 -g1,20891:6434165,23713149 -(1,20891:6434165,23713149:0,733899,196608 -r1,20930:32779637,23713149:26345472,930507,196608 -k1,20891:6434165,23713149:-26345472 -) -(1,20891:6434165,23713149:26345472,733899,196608 -[1,20891:6630773,23713149:25952256,537291,0 -(1,20889:6630773,23606903:25952256,431045,106246 -(1,20888:6630773,23606903:0,0,0 -g1,20888:6630773,23606903 -g1,20888:6630773,23606903 -g1,20888:6303093,23606903 -(1,20888:6303093,23606903:0,0,0 -) -g1,20888:6630773,23606903 -) -g1,20889:8954451,23606903 -g1,20889:9618359,23606903 -g1,20889:15593530,23606903 -g1,20889:16257438,23606903 -g1,20889:19908932,23606903 -g1,20889:21568702,23606903 -g1,20889:22232610,23606903 -h1,20889:22896518,23606903:0,0,0 -k1,20889:32583029,23606903:9686511 -g1,20889:32583029,23606903 -) -] -) -g1,20891:32583029,23713149 -g1,20891:6630773,23713149 -g1,20891:6630773,23713149 -g1,20891:32583029,23713149 -g1,20891:32583029,23713149 -) -h1,20891:6630773,23909757:0,0,0 -(1,20895:6630773,24774837:25952256,513147,134348 -h1,20894:6630773,24774837:983040,0,0 -k1,20894:8595089,24774837:221058 -k1,20894:11255397,24774837:221058 -k1,20894:12242571,24774837:221058 -k1,20894:14537842,24774837:221057 -k1,20894:16495604,24774837:221058 -k1,20894:17735747,24774837:221058 -k1,20894:19610278,24774837:221058 -k1,20894:21403545,24774837:221058 -k1,20894:23439295,24774837:221058 -k1,20894:24851797,24774837:221057 -k1,20894:26809559,24774837:221058 -k1,20894:28049702,24774837:221058 -k1,20894:30795207,24774837:221058 -k1,20894:32583029,24774837:0 -) -(1,20895:6630773,25639917:25952256,513147,126483 -g1,20894:9036599,25639917 -g1,20894:10307997,25639917 -g1,20894:12203953,25639917 -g1,20894:14999063,25639917 -g1,20894:16302574,25639917 -g1,20894:17249569,25639917 -k1,20895:32583029,25639917:11800415 -g1,20895:32583029,25639917 -) -v1,20897:6630773,26324772:0,393216,0 -(1,20901:6630773,26665455:25952256,733899,196608 -g1,20901:6630773,26665455 -g1,20901:6630773,26665455 -g1,20901:6434165,26665455 -(1,20901:6434165,26665455:0,733899,196608 -r1,20930:32779637,26665455:26345472,930507,196608 -k1,20901:6434165,26665455:-26345472 -) -(1,20901:6434165,26665455:26345472,733899,196608 -[1,20901:6630773,26665455:25952256,537291,0 -(1,20899:6630773,26559209:25952256,431045,106246 -(1,20898:6630773,26559209:0,0,0 -g1,20898:6630773,26559209 -g1,20898:6630773,26559209 -g1,20898:6303093,26559209 -(1,20898:6303093,26559209:0,0,0 -) -g1,20898:6630773,26559209 -) -g1,20899:8954451,26559209 -g1,20899:9618359,26559209 -g1,20899:15593530,26559209 -g1,20899:16257438,26559209 -g1,20899:19908932,26559209 -g1,20899:21568702,26559209 -g1,20899:22232610,26559209 -g1,20899:23228472,26559209 -g1,20899:25552150,26559209 -g1,20899:26216058,26559209 -h1,20899:29203643,26559209:0,0,0 -k1,20899:32583029,26559209:3379386 -g1,20899:32583029,26559209 -) -] -) -g1,20901:32583029,26665455 -g1,20901:6630773,26665455 -g1,20901:6630773,26665455 -g1,20901:32583029,26665455 -g1,20901:32583029,26665455 -) -h1,20901:6630773,26862063:0,0,0 -(1,20904:6630773,36011265:25952256,9083666,0 -k1,20904:10523651,36011265:3892878 -h1,20903:10523651,36011265:0,0,0 -(1,20903:10523651,36011265:18166500,9083666,0 -(1,20903:10523651,36011265:18167376,9083688,0 -(1,20903:10523651,36011265:18167376,9083688,0 -(1,20903:10523651,36011265:0,9083688,0 -(1,20903:10523651,36011265:0,14208860,0 -(1,20903:10523651,36011265:28417720,14208860,0 -) -k1,20903:10523651,36011265:-28417720 -) -) -g1,20903:28691027,36011265 -) -) -) -g1,20904:28690151,36011265 -k1,20904:32583029,36011265:3892878 -) -(1,20913:6630773,36876345:25952256,513147,134348 -h1,20912:6630773,36876345:983040,0,0 -k1,20912:10574049,36876345:258187 -k1,20912:12797661,36876345:258187 -k1,20912:14449800,36876345:258188 -(1,20912:14449800,36876345:0,452978,122846 -r1,20930:19380320,36876345:4930520,575824,122846 -k1,20912:14449800,36876345:-4930520 -) -(1,20912:14449800,36876345:4930520,452978,122846 -g1,20912:17266772,36876345 -g1,20912:17970196,36876345 -h1,20912:19377043,36876345:0,411205,112570 -) -k1,20912:19812177,36876345:258187 -k1,20912:22365435,36876345:258187 -k1,20912:23394325,36876345:258187 -k1,20912:26879505,36876345:258187 -k1,20912:29520582,36876345:258188 -k1,20912:30461654,36876345:258187 -k1,20912:31923737,36876345:258187 -k1,20912:32583029,36876345:0 -) -(1,20913:6630773,37741425:25952256,505283,126483 -g1,20912:8904216,37741425 -g1,20912:10497396,37741425 -g1,20912:11715710,37741425 -g1,20912:15047560,37741425 -k1,20913:32583029,37741425:16093677 -g1,20913:32583029,37741425 -) -v1,20915:6630773,38426280:0,393216,0 -(1,20919:6630773,38773569:25952256,740505,196608 -g1,20919:6630773,38773569 -g1,20919:6630773,38773569 -g1,20919:6434165,38773569 -(1,20919:6434165,38773569:0,740505,196608 -r1,20930:32779637,38773569:26345472,937113,196608 -k1,20919:6434165,38773569:-26345472 -) -(1,20919:6434165,38773569:26345472,740505,196608 -[1,20919:6630773,38773569:25952256,543897,0 -(1,20917:6630773,38660717:25952256,431045,112852 -(1,20916:6630773,38660717:0,0,0 -g1,20916:6630773,38660717 -g1,20916:6630773,38660717 -g1,20916:6303093,38660717 -(1,20916:6303093,38660717:0,0,0 -) -g1,20916:6630773,38660717 -) -g1,20917:8954451,38660717 -g1,20917:9618359,38660717 -g1,20917:14929622,38660717 -g1,20917:15593530,38660717 -g1,20917:19245024,38660717 -g1,20917:21900656,38660717 -g1,20917:22564564,38660717 -h1,20917:24224334,38660717:0,0,0 -k1,20917:32583029,38660717:8358695 -g1,20917:32583029,38660717 +k1,20928:3078556,49800853:-34777008 +) +] +g1,20928:6630773,4812305 +k1,20928:21386205,4812305:13560055 +g1,20928:21999622,4812305 +g1,20928:25611966,4812305 +g1,20928:28956923,4812305 +g1,20928:29772190,4812305 +) +) +] +[1,20928:6630773,45706769:25952256,40108032,0 +(1,20928:6630773,45706769:25952256,40108032,0 +(1,20928:6630773,45706769:0,0,0 +g1,20928:6630773,45706769 +) +[1,20928:6630773,45706769:25952256,40108032,0 +(1,20867:6630773,6254097:25952256,513147,134348 +h1,20866:6630773,6254097:983040,0,0 +k1,20866:8329422,6254097:228021 +k1,20866:9841977,6254097:228049 +k1,20866:10729318,6254097:228049 +k1,20866:13031582,6254097:228050 +k1,20866:14360636,6254097:228049 +k1,20866:15761125,6254097:228050 +k1,20866:19838103,6254097:228049 +(1,20866:19838103,6254097:0,414482,115847 +r1,20928:21251504,6254097:1413401,530329,115847 +k1,20866:19838103,6254097:-1413401 +) +(1,20866:19838103,6254097:1413401,414482,115847 +k1,20866:19838103,6254097:3277 +h1,20866:21248227,6254097:0,411205,112570 +) +k1,20866:21479554,6254097:228050 +k1,20866:22899048,6254097:228049 +(1,20866:22899048,6254097:0,452978,115847 +r1,20928:24312449,6254097:1413401,568825,115847 +k1,20866:22899048,6254097:-1413401 +) +(1,20866:22899048,6254097:1413401,452978,115847 +k1,20866:22899048,6254097:3277 +h1,20866:24309172,6254097:0,411205,112570 +) +k1,20866:24714169,6254097:228050 +k1,20866:26816548,6254097:228049 +k1,20866:30719857,6254097:228050 +k1,20866:31563944,6254097:228049 +k1,20866:32583029,6254097:0 +) +(1,20867:6630773,7119177:25952256,513147,134348 +k1,20866:8184582,7119177:269303 +k1,20866:9113176,7119177:269302 +k1,20866:10659776,7119177:269303 +k1,20866:13003292,7119177:269302 +k1,20866:14376877,7119177:269303 +k1,20866:15393945,7119177:269302 +k1,20866:18848953,7119177:269303 +k1,20866:19769683,7119177:269302 +k1,20866:22436948,7119177:269303 +k1,20866:24255521,7119177:269302 +k1,20866:27079417,7119177:269303 +k1,20866:27704579,7119177:269302 +k1,20866:30517334,7119177:269303 +k1,20866:32583029,7119177:0 +) +(1,20867:6630773,7984257:25952256,513147,134348 +k1,20866:7974807,7984257:163075 +k1,20866:9156967,7984257:163075 +k1,20866:10695643,7984257:163075 +k1,20866:13642688,7984257:163076 +k1,20866:15136144,7984257:163075 +k1,20866:18262102,7984257:163075 +k1,20866:19628418,7984257:163075 +k1,20866:22481091,7984257:163075 +k1,20866:23745171,7984257:163075 +k1,20866:25418197,7984257:163076 +k1,20866:28387524,7984257:163075 +k1,20866:29569684,7984257:163075 +k1,20866:32583029,7984257:0 +) +(1,20867:6630773,8849337:25952256,505283,134348 +k1,20866:8925170,8849337:210352 +k1,20866:9667020,8849337:210353 +k1,20866:12787826,8849337:210352 +k1,20866:13649607,8849337:210353 +k1,20866:14952444,8849337:210352 +k1,20866:16181881,8849337:210352 +k1,20866:20003268,8849337:210353 +(1,20866:20003268,8849337:0,414482,115847 +r1,20928:21416669,8849337:1413401,530329,115847 +k1,20866:20003268,8849337:-1413401 +) +(1,20866:20003268,8849337:1413401,414482,115847 +k1,20866:20003268,8849337:3277 +h1,20866:21413392,8849337:0,411205,112570 +) +k1,20866:21627021,8849337:210352 +k1,20866:23028818,8849337:210352 +(1,20866:23028818,8849337:0,452978,115847 +r1,20928:24442219,8849337:1413401,568825,115847 +k1,20866:23028818,8849337:-1413401 +) +(1,20866:23028818,8849337:1413401,452978,115847 +k1,20866:23028818,8849337:3277 +h1,20866:24438942,8849337:0,411205,112570 +) +k1,20866:24826242,8849337:210353 +k1,20866:26233281,8849337:210352 +k1,20866:29515962,8849337:210353 +k1,20866:31931601,8849337:210352 +k1,20867:32583029,8849337:0 +) +(1,20867:6630773,9714417:25952256,513147,126483 +(1,20866:6630773,9714417:0,452978,115847 +r1,20928:8044174,9714417:1413401,568825,115847 +k1,20866:6630773,9714417:-1413401 +) +(1,20866:6630773,9714417:1413401,452978,115847 +k1,20866:6630773,9714417:3277 +h1,20866:8040897,9714417:0,411205,112570 +) +k1,20866:8293981,9714417:249807 +k1,20866:9159825,9714417:249806 +k1,20866:10612873,9714417:249807 +k1,20866:13524096,9714417:249806 +k1,20866:14305400,9714417:249807 +k1,20866:16449196,9714417:249806 +(1,20866:16449196,9714417:0,452978,115847 +r1,20928:17510885,9714417:1061689,568825,115847 +k1,20866:16449196,9714417:-1061689 +) +(1,20866:16449196,9714417:1061689,452978,115847 +k1,20866:16449196,9714417:3277 +h1,20866:17507608,9714417:0,411205,112570 +) +k1,20866:17760692,9714417:249807 +k1,20866:20865246,9714417:249806 +k1,20866:22682674,9714417:249807 +(1,20866:22682674,9714417:0,452978,115847 +r1,20928:24096075,9714417:1413401,568825,115847 +k1,20866:22682674,9714417:-1413401 +) +(1,20866:22682674,9714417:1413401,452978,115847 +k1,20866:22682674,9714417:3277 +h1,20866:24092798,9714417:0,411205,112570 +) +k1,20866:24345881,9714417:249806 +k1,20866:25989639,9714417:249807 +k1,20866:26595305,9714417:249806 +k1,20866:27944806,9714417:249807 +k1,20866:28846041,9714417:249807 +(1,20866:28846041,9714417:0,452978,115847 +r1,20928:30962866,9714417:2116825,568825,115847 +k1,20866:28846041,9714417:-2116825 +) +(1,20866:28846041,9714417:2116825,452978,115847 +k1,20866:28846041,9714417:3277 +h1,20866:30959589,9714417:0,411205,112570 +) +k1,20866:31386342,9714417:249806 +k1,20866:32583029,9714417:0 +) +(1,20867:6630773,10579497:25952256,513147,134348 +k1,20866:10207974,10579497:207339 +k1,20866:11074606,10579497:207340 +k1,20866:12301030,10579497:207339 +k1,20866:14582584,10579497:207340 +k1,20866:15472808,10579497:207339 +k1,20866:16718894,10579497:207340 +k1,20866:17687761,10579497:207339 +k1,20866:20160680,10579497:207339 +k1,20866:21387105,10579497:207340 +k1,20866:23662760,10579497:207339 +k1,20866:24552985,10579497:207340 +k1,20866:26604507,10579497:207339 +k1,20866:27471139,10579497:207340 +k1,20866:28697563,10579497:207339 +k1,20866:30697313,10579497:207340 +k1,20866:31563944,10579497:207339 +k1,20866:32583029,10579497:0 +) +(1,20867:6630773,11444577:25952256,513147,7863 +k1,20867:32583028,11444577:24005836 +g1,20867:32583028,11444577 +) +v1,20869:6630773,12129432:0,393216,0 +(1,20873:6630773,12476721:25952256,740505,196608 +g1,20873:6630773,12476721 +g1,20873:6630773,12476721 +g1,20873:6434165,12476721 +(1,20873:6434165,12476721:0,740505,196608 +r1,20928:32779637,12476721:26345472,937113,196608 +k1,20873:6434165,12476721:-26345472 +) +(1,20873:6434165,12476721:26345472,740505,196608 +[1,20873:6630773,12476721:25952256,543897,0 +(1,20871:6630773,12363869:25952256,431045,112852 +(1,20870:6630773,12363869:0,0,0 +g1,20870:6630773,12363869 +g1,20870:6630773,12363869 +g1,20870:6303093,12363869 +(1,20870:6303093,12363869:0,0,0 +) +g1,20870:6630773,12363869 +) +g1,20871:8954451,12363869 +g1,20871:9618359,12363869 +g1,20871:14929622,12363869 +g1,20871:15593530,12363869 +k1,20871:15593530,12363869:0 +h1,20871:18913070,12363869:0,0,0 +k1,20871:32583029,12363869:13669959 +g1,20871:32583029,12363869 +) +] +) +g1,20873:32583029,12476721 +g1,20873:6630773,12476721 +g1,20873:6630773,12476721 +g1,20873:32583029,12476721 +g1,20873:32583029,12476721 +) +h1,20873:6630773,12673329:0,0,0 +(1,20876:6630773,21822531:25952256,9083666,0 +k1,20876:10523651,21822531:3892878 +h1,20875:10523651,21822531:0,0,0 +(1,20875:10523651,21822531:18166500,9083666,0 +(1,20875:10523651,21822531:18167376,9083688,0 +(1,20875:10523651,21822531:18167376,9083688,0 +(1,20875:10523651,21822531:0,9083688,0 +(1,20875:10523651,21822531:0,14208860,0 +(1,20875:10523651,21822531:28417720,14208860,0 +) +k1,20875:10523651,21822531:-28417720 +) +) +g1,20875:28691027,21822531 +) +) +) +g1,20876:28690151,21822531 +k1,20876:32583029,21822531:3892878 +) +(1,20883:6630773,22687611:25952256,513147,134348 +h1,20882:6630773,22687611:983040,0,0 +g1,20882:9604796,22687611 +(1,20882:9604796,22687611:0,459977,115847 +r1,20928:13831892,22687611:4227096,575824,115847 +k1,20882:9604796,22687611:-4227096 +) +(1,20882:9604796,22687611:4227096,459977,115847 +k1,20882:9604796,22687611:3277 +h1,20882:13828615,22687611:0,411205,112570 +) +g1,20882:14031121,22687611 +g1,20882:15249435,22687611 +g1,20882:17102137,22687611 +g1,20882:18578663,22687611 +g1,20882:19882174,22687611 +g1,20882:20829169,22687611 +g1,20882:22945326,22687611 +g1,20882:23830717,22687611 +k1,20883:32583029,22687611:6384497 +g1,20883:32583029,22687611 +) +v1,20885:6630773,23372466:0,393216,0 +(1,20889:6630773,23713149:25952256,733899,196608 +g1,20889:6630773,23713149 +g1,20889:6630773,23713149 +g1,20889:6434165,23713149 +(1,20889:6434165,23713149:0,733899,196608 +r1,20928:32779637,23713149:26345472,930507,196608 +k1,20889:6434165,23713149:-26345472 +) +(1,20889:6434165,23713149:26345472,733899,196608 +[1,20889:6630773,23713149:25952256,537291,0 +(1,20887:6630773,23606903:25952256,431045,106246 +(1,20886:6630773,23606903:0,0,0 +g1,20886:6630773,23606903 +g1,20886:6630773,23606903 +g1,20886:6303093,23606903 +(1,20886:6303093,23606903:0,0,0 +) +g1,20886:6630773,23606903 +) +g1,20887:8954451,23606903 +g1,20887:9618359,23606903 +g1,20887:15593530,23606903 +g1,20887:16257438,23606903 +g1,20887:19908932,23606903 +g1,20887:21568702,23606903 +g1,20887:22232610,23606903 +h1,20887:22896518,23606903:0,0,0 +k1,20887:32583029,23606903:9686511 +g1,20887:32583029,23606903 +) +] +) +g1,20889:32583029,23713149 +g1,20889:6630773,23713149 +g1,20889:6630773,23713149 +g1,20889:32583029,23713149 +g1,20889:32583029,23713149 +) +h1,20889:6630773,23909757:0,0,0 +(1,20893:6630773,24774837:25952256,513147,134348 +h1,20892:6630773,24774837:983040,0,0 +k1,20892:8595089,24774837:221058 +k1,20892:11255397,24774837:221058 +k1,20892:12242571,24774837:221058 +k1,20892:14537842,24774837:221057 +k1,20892:16495604,24774837:221058 +k1,20892:17735747,24774837:221058 +k1,20892:19610278,24774837:221058 +k1,20892:21403545,24774837:221058 +k1,20892:23439295,24774837:221058 +k1,20892:24851797,24774837:221057 +k1,20892:26809559,24774837:221058 +k1,20892:28049702,24774837:221058 +k1,20892:30795207,24774837:221058 +k1,20892:32583029,24774837:0 +) +(1,20893:6630773,25639917:25952256,513147,126483 +g1,20892:9036599,25639917 +g1,20892:10307997,25639917 +g1,20892:12203953,25639917 +g1,20892:14999063,25639917 +g1,20892:16302574,25639917 +g1,20892:17249569,25639917 +k1,20893:32583029,25639917:11800415 +g1,20893:32583029,25639917 +) +v1,20895:6630773,26324772:0,393216,0 +(1,20899:6630773,26665455:25952256,733899,196608 +g1,20899:6630773,26665455 +g1,20899:6630773,26665455 +g1,20899:6434165,26665455 +(1,20899:6434165,26665455:0,733899,196608 +r1,20928:32779637,26665455:26345472,930507,196608 +k1,20899:6434165,26665455:-26345472 +) +(1,20899:6434165,26665455:26345472,733899,196608 +[1,20899:6630773,26665455:25952256,537291,0 +(1,20897:6630773,26559209:25952256,431045,106246 +(1,20896:6630773,26559209:0,0,0 +g1,20896:6630773,26559209 +g1,20896:6630773,26559209 +g1,20896:6303093,26559209 +(1,20896:6303093,26559209:0,0,0 +) +g1,20896:6630773,26559209 +) +g1,20897:8954451,26559209 +g1,20897:9618359,26559209 +g1,20897:15593530,26559209 +g1,20897:16257438,26559209 +g1,20897:19908932,26559209 +g1,20897:21568702,26559209 +g1,20897:22232610,26559209 +g1,20897:23228472,26559209 +g1,20897:25552150,26559209 +g1,20897:26216058,26559209 +h1,20897:29203643,26559209:0,0,0 +k1,20897:32583029,26559209:3379386 +g1,20897:32583029,26559209 +) +] +) +g1,20899:32583029,26665455 +g1,20899:6630773,26665455 +g1,20899:6630773,26665455 +g1,20899:32583029,26665455 +g1,20899:32583029,26665455 +) +h1,20899:6630773,26862063:0,0,0 +(1,20902:6630773,36011265:25952256,9083666,0 +k1,20902:10523651,36011265:3892878 +h1,20901:10523651,36011265:0,0,0 +(1,20901:10523651,36011265:18166500,9083666,0 +(1,20901:10523651,36011265:18167376,9083688,0 +(1,20901:10523651,36011265:18167376,9083688,0 +(1,20901:10523651,36011265:0,9083688,0 +(1,20901:10523651,36011265:0,14208860,0 +(1,20901:10523651,36011265:28417720,14208860,0 +) +k1,20901:10523651,36011265:-28417720 +) +) +g1,20901:28691027,36011265 +) +) +) +g1,20902:28690151,36011265 +k1,20902:32583029,36011265:3892878 +) +(1,20911:6630773,36876345:25952256,513147,134348 +h1,20910:6630773,36876345:983040,0,0 +k1,20910:10574049,36876345:258187 +k1,20910:12797661,36876345:258187 +k1,20910:14449800,36876345:258188 +(1,20910:14449800,36876345:0,452978,122846 +r1,20928:19380320,36876345:4930520,575824,122846 +k1,20910:14449800,36876345:-4930520 +) +(1,20910:14449800,36876345:4930520,452978,122846 +g1,20910:17266772,36876345 +g1,20910:17970196,36876345 +h1,20910:19377043,36876345:0,411205,112570 +) +k1,20910:19812177,36876345:258187 +k1,20910:22365435,36876345:258187 +k1,20910:23394325,36876345:258187 +k1,20910:26879505,36876345:258187 +k1,20910:29520582,36876345:258188 +k1,20910:30461654,36876345:258187 +k1,20910:31923737,36876345:258187 +k1,20910:32583029,36876345:0 +) +(1,20911:6630773,37741425:25952256,505283,126483 +g1,20910:8904216,37741425 +g1,20910:10497396,37741425 +g1,20910:11715710,37741425 +g1,20910:15047560,37741425 +k1,20911:32583029,37741425:16093677 +g1,20911:32583029,37741425 +) +v1,20913:6630773,38426280:0,393216,0 +(1,20917:6630773,38773569:25952256,740505,196608 +g1,20917:6630773,38773569 +g1,20917:6630773,38773569 +g1,20917:6434165,38773569 +(1,20917:6434165,38773569:0,740505,196608 +r1,20928:32779637,38773569:26345472,937113,196608 +k1,20917:6434165,38773569:-26345472 +) +(1,20917:6434165,38773569:26345472,740505,196608 +[1,20917:6630773,38773569:25952256,543897,0 +(1,20915:6630773,38660717:25952256,431045,112852 +(1,20914:6630773,38660717:0,0,0 +g1,20914:6630773,38660717 +g1,20914:6630773,38660717 +g1,20914:6303093,38660717 +(1,20914:6303093,38660717:0,0,0 +) +g1,20914:6630773,38660717 +) +g1,20915:8954451,38660717 +g1,20915:9618359,38660717 +g1,20915:14929622,38660717 +g1,20915:15593530,38660717 +g1,20915:19245024,38660717 +g1,20915:21900656,38660717 +g1,20915:22564564,38660717 +h1,20915:24224334,38660717:0,0,0 +k1,20915:32583029,38660717:8358695 +g1,20915:32583029,38660717 ) ] ) -g1,20919:32583029,38773569 -g1,20919:6630773,38773569 -g1,20919:6630773,38773569 -g1,20919:32583029,38773569 -g1,20919:32583029,38773569 +g1,20917:32583029,38773569 +g1,20917:6630773,38773569 +g1,20917:6630773,38773569 +g1,20917:32583029,38773569 +g1,20917:32583029,38773569 ) -h1,20919:6630773,38970177:0,0,0 +h1,20917:6630773,38970177:0,0,0 ] -(1,20930:32583029,45706769:0,0,0 -g1,20930:32583029,45706769 +(1,20928:32583029,45706769:0,0,0 +g1,20928:32583029,45706769 ) ) ] -(1,20930:6630773,47279633:25952256,0,0 -h1,20930:6630773,47279633:25952256,0,0 +(1,20928:6630773,47279633:25952256,0,0 +h1,20928:6630773,47279633:25952256,0,0 ) ] -(1,20930:4262630,4025873:0,0,0 -[1,20930:-473656,4025873:0,0,0 -(1,20930:-473656,-710413:0,0,0 -(1,20930:-473656,-710413:0,0,0 -g1,20930:-473656,-710413 +(1,20928:4262630,4025873:0,0,0 +[1,20928:-473656,4025873:0,0,0 +(1,20928:-473656,-710413:0,0,0 +(1,20928:-473656,-710413:0,0,0 +g1,20928:-473656,-710413 ) -g1,20930:-473656,-710413 +g1,20928:-473656,-710413 ) ] ) ] !16624 -}351 -Input:3795:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3796:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3797:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3798:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}352 Input:3799:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3800:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3801:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3802:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3803:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{352 -[1,20965:4262630,47279633:28320399,43253760,0 -(1,20965:4262630,4025873:0,0,0 -[1,20965:-473656,4025873:0,0,0 -(1,20965:-473656,-710413:0,0,0 -(1,20965:-473656,-644877:0,0,0 -k1,20965:-473656,-644877:-65536 +{353 +[1,20963:4262630,47279633:28320399,43253760,0 +(1,20963:4262630,4025873:0,0,0 +[1,20963:-473656,4025873:0,0,0 +(1,20963:-473656,-710413:0,0,0 +(1,20963:-473656,-644877:0,0,0 +k1,20963:-473656,-644877:-65536 ) -(1,20965:-473656,4736287:0,0,0 -k1,20965:-473656,4736287:5209943 +(1,20963:-473656,4736287:0,0,0 +k1,20963:-473656,4736287:5209943 ) -g1,20965:-473656,-710413 +g1,20963:-473656,-710413 ) ] ) -[1,20965:6630773,47279633:25952256,43253760,0 -[1,20965:6630773,4812305:25952256,786432,0 -(1,20965:6630773,4812305:25952256,485622,11795 -(1,20965:6630773,4812305:25952256,485622,11795 -g1,20965:3078558,4812305 -[1,20965:3078558,4812305:0,0,0 -(1,20965:3078558,2439708:0,1703936,0 -k1,20965:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,20965:2537886,2439708:1179648,16384,0 +[1,20963:6630773,47279633:25952256,43253760,0 +[1,20963:6630773,4812305:25952256,786432,0 +(1,20963:6630773,4812305:25952256,485622,11795 +(1,20963:6630773,4812305:25952256,485622,11795 +g1,20963:3078558,4812305 +[1,20963:3078558,4812305:0,0,0 +(1,20963:3078558,2439708:0,1703936,0 +k1,20963:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,20963:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,20965:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,20963:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,20965:3078558,4812305:0,0,0 -(1,20965:3078558,2439708:0,1703936,0 -g1,20965:29030814,2439708 -g1,20965:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,20965:36151628,1915420:16384,1179648,0 +[1,20963:3078558,4812305:0,0,0 +(1,20963:3078558,2439708:0,1703936,0 +g1,20963:29030814,2439708 +g1,20963:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,20963:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,20965:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,20963:37855564,2439708:1179648,16384,0 ) ) -k1,20965:3078556,2439708:-34777008 +k1,20963:3078556,2439708:-34777008 ) ] -[1,20965:3078558,4812305:0,0,0 -(1,20965:3078558,49800853:0,16384,2228224 -k1,20965:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,20965:2537886,49800853:1179648,16384,0 +[1,20963:3078558,4812305:0,0,0 +(1,20963:3078558,49800853:0,16384,2228224 +k1,20963:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,20963:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,20965:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,20963:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,20965:3078558,4812305:0,0,0 -(1,20965:3078558,49800853:0,16384,2228224 -g1,20965:29030814,49800853 -g1,20965:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,20965:36151628,51504789:16384,1179648,0 +[1,20963:3078558,4812305:0,0,0 +(1,20963:3078558,49800853:0,16384,2228224 +g1,20963:29030814,49800853 +g1,20963:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,20963:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,20965:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,20963:37855564,49800853:1179648,16384,0 ) ) -k1,20965:3078556,49800853:-34777008 +k1,20963:3078556,49800853:-34777008 ) ] -g1,20965:6630773,4812305 -g1,20965:6630773,4812305 -g1,20965:8769212,4812305 -k1,20965:31387652,4812305:22618440 +g1,20963:6630773,4812305 +g1,20963:6630773,4812305 +g1,20963:8769212,4812305 +k1,20963:31387652,4812305:22618440 ) ) ] -[1,20965:6630773,45706769:25952256,40108032,0 -(1,20965:6630773,45706769:25952256,40108032,0 -(1,20965:6630773,45706769:0,0,0 -g1,20965:6630773,45706769 +[1,20963:6630773,45706769:25952256,40108032,0 +(1,20963:6630773,45706769:25952256,40108032,0 +(1,20963:6630773,45706769:0,0,0 +g1,20963:6630773,45706769 ) -[1,20965:6630773,45706769:25952256,40108032,0 -(1,20922:6630773,14682403:25952256,9083666,0 -k1,20922:10523651,14682403:3892878 -h1,20921:10523651,14682403:0,0,0 -(1,20921:10523651,14682403:18166500,9083666,0 -(1,20921:10523651,14682403:18167376,9083688,0 -(1,20921:10523651,14682403:18167376,9083688,0 -(1,20921:10523651,14682403:0,9083688,0 -(1,20921:10523651,14682403:0,14208860,0 -(1,20921:10523651,14682403:28417720,14208860,0 +[1,20963:6630773,45706769:25952256,40108032,0 +(1,20920:6630773,14682403:25952256,9083666,0 +k1,20920:10523651,14682403:3892878 +h1,20919:10523651,14682403:0,0,0 +(1,20919:10523651,14682403:18166500,9083666,0 +(1,20919:10523651,14682403:18167376,9083688,0 +(1,20919:10523651,14682403:18167376,9083688,0 +(1,20919:10523651,14682403:0,9083688,0 +(1,20919:10523651,14682403:0,14208860,0 +(1,20919:10523651,14682403:28417720,14208860,0 ) -k1,20921:10523651,14682403:-28417720 +k1,20919:10523651,14682403:-28417720 ) ) -g1,20921:28691027,14682403 +g1,20919:28691027,14682403 ) ) ) -g1,20922:28690151,14682403 -k1,20922:32583029,14682403:3892878 +g1,20920:28690151,14682403 +k1,20920:32583029,14682403:3892878 ) -(1,20931:6630773,15547483:25952256,513147,134348 -h1,20930:6630773,15547483:983040,0,0 -k1,20930:8619121,15547483:176278 -k1,20930:10819150,15547483:176277 -k1,20930:11351288,15547483:176278 -k1,20930:12429318,15547483:176255 -k1,20930:13890101,15547483:176277 -k1,20930:15533075,15547483:176278 -(1,20930:15533075,15547483:0,414482,115847 -r1,20965:16946476,15547483:1413401,530329,115847 -k1,20930:15533075,15547483:-1413401 +(1,20929:6630773,15547483:25952256,513147,134348 +h1,20928:6630773,15547483:983040,0,0 +k1,20928:8619121,15547483:176278 +k1,20928:10819150,15547483:176277 +k1,20928:11351288,15547483:176278 +k1,20928:12429318,15547483:176255 +k1,20928:13890101,15547483:176277 +k1,20928:15533075,15547483:176278 +(1,20928:15533075,15547483:0,414482,115847 +r1,20963:16946476,15547483:1413401,530329,115847 +k1,20928:15533075,15547483:-1413401 ) -(1,20930:15533075,15547483:1413401,414482,115847 -k1,20930:15533075,15547483:3277 -h1,20930:16943199,15547483:0,411205,112570 +(1,20928:15533075,15547483:1413401,414482,115847 +k1,20928:15533075,15547483:3277 +h1,20928:16943199,15547483:0,411205,112570 ) -k1,20930:17122754,15547483:176278 -k1,20930:18490476,15547483:176277 -(1,20930:18490476,15547483:0,452978,115847 -r1,20965:19903877,15547483:1413401,568825,115847 -k1,20930:18490476,15547483:-1413401 -) -(1,20930:18490476,15547483:1413401,452978,115847 -k1,20930:18490476,15547483:3277 -h1,20930:19900600,15547483:0,411205,112570 -) -k1,20930:20080155,15547483:176278 -k1,20930:21731648,15547483:176278 -k1,20930:22559353,15547483:176277 -k1,20930:23483397,15547483:176278 -k1,20930:25864962,15547483:176278 -k1,20930:28265531,15547483:176277 -k1,20930:29127971,15547483:176278 -k1,20931:32583029,15547483:0 -k1,20931:32583029,15547483:0 -) -v1,20933:6630773,16232338:0,393216,0 -(1,20937:6630773,16579627:25952256,740505,196608 -g1,20937:6630773,16579627 -g1,20937:6630773,16579627 -g1,20937:6434165,16579627 -(1,20937:6434165,16579627:0,740505,196608 -r1,20965:32779637,16579627:26345472,937113,196608 -k1,20937:6434165,16579627:-26345472 -) -(1,20937:6434165,16579627:26345472,740505,196608 -[1,20937:6630773,16579627:25952256,543897,0 -(1,20935:6630773,16466775:25952256,431045,112852 -(1,20934:6630773,16466775:0,0,0 -g1,20934:6630773,16466775 -g1,20934:6630773,16466775 -g1,20934:6303093,16466775 -(1,20934:6303093,16466775:0,0,0 -) -g1,20934:6630773,16466775 -) -g1,20935:8954451,16466775 -g1,20935:9618359,16466775 -g1,20935:14929622,16466775 -g1,20935:15593530,16466775 -g1,20935:18913070,16466775 -g1,20935:20572840,16466775 -g1,20935:21236748,16466775 -g1,20935:24556288,16466775 -g1,20935:27543873,16466775 -g1,20935:28207781,16466775 -h1,20935:31859274,16466775:0,0,0 -k1,20935:32583029,16466775:723755 -g1,20935:32583029,16466775 -) -] -) -g1,20937:32583029,16579627 -g1,20937:6630773,16579627 -g1,20937:6630773,16579627 -g1,20937:32583029,16579627 -g1,20937:32583029,16579627 -) -h1,20937:6630773,16776235:0,0,0 -(1,20940:6630773,29687875:25952256,12846104,0 -k1,20940:13183781,29687875:6553008 -h1,20939:13183781,29687875:0,0,0 -(1,20939:13183781,29687875:12846240,12846104,0 -(1,20939:13183781,29687875:12846136,12846136,0 -(1,20939:13183781,29687875:12846136,12846136,0 -(1,20939:13183781,29687875:0,12846136,0 -(1,20939:13183781,29687875:0,18945146,0 -(1,20939:13183781,29687875:18945146,18945146,0 -) -k1,20939:13183781,29687875:-18945146 -) -) -g1,20939:26029917,29687875 -) -) -) -g1,20940:26030021,29687875 -k1,20940:32583029,29687875:6553008 -) -(1,20949:6630773,30552955:25952256,513147,134348 -h1,20948:6630773,30552955:983040,0,0 -k1,20948:9292744,30552955:203716 -k1,20948:12045155,30552955:203716 -k1,20948:15593829,30552955:203716 -k1,20948:16901827,30552955:203716 -k1,20948:17853309,30552955:203716 -k1,20948:20642420,30552955:203716 -k1,20948:21497565,30552955:203717 -k1,20948:23351478,30552955:203716 -k1,20948:24997641,30552955:203716 -k1,20948:26358067,30552955:203716 -k1,20948:28629444,30552955:203716 -k1,20948:29519322,30552955:203716 -k1,20948:31765140,30552955:203716 -k1,20948:32583029,30552955:0 -) -(1,20949:6630773,31418035:25952256,513147,134348 -k1,20948:7858642,31418035:208784 -k1,20948:9859835,31418035:208783 -k1,20948:11060179,31418035:208784 -k1,20948:12335233,31418035:208783 -k1,20948:13691552,31418035:208784 -k1,20948:17839705,31418035:208784 -(1,20948:17839705,31418035:0,452978,115847 -r1,20965:21363377,31418035:3523672,568825,115847 -k1,20948:17839705,31418035:-3523672 -) -(1,20948:17839705,31418035:3523672,452978,115847 -k1,20948:17839705,31418035:3277 -h1,20948:21360100,31418035:0,411205,112570 -) -k1,20948:21572160,31418035:208783 -k1,20948:22312441,31418035:208784 -k1,20948:24726511,31418035:208783 -k1,20948:25621457,31418035:208784 -k1,20948:28902568,31418035:208783 -k1,20948:29762780,31418035:208784 -(1,20948:29762780,31418035:0,452978,115847 -r1,20965:32583029,31418035:2820249,568825,115847 -k1,20948:29762780,31418035:-2820249 -) -(1,20948:29762780,31418035:2820249,452978,115847 -k1,20948:29762780,31418035:3277 -h1,20948:32579752,31418035:0,411205,112570 -) -k1,20948:32583029,31418035:0 -) -(1,20949:6630773,32283115:25952256,513147,134348 -g1,20948:7554830,32283115 -g1,20948:9038565,32283115 -g1,20948:11131784,32283115 -g1,20948:13399329,32283115 -g1,20948:14590118,32283115 -g1,20948:17547757,32283115 -g1,20948:18363024,32283115 -g1,20948:19581338,32283115 -g1,20948:21197455,32283115 -g1,20948:23215308,32283115 -g1,20948:26094960,32283115 -g1,20948:27688140,32283115 -g1,20948:28906454,32283115 -k1,20949:32583029,32283115:1710495 -g1,20949:32583029,32283115 -) -v1,20951:6630773,32967970:0,393216,0 -(1,20955:6630773,33315259:25952256,740505,196608 -g1,20955:6630773,33315259 -g1,20955:6630773,33315259 -g1,20955:6434165,33315259 -(1,20955:6434165,33315259:0,740505,196608 -r1,20965:32779637,33315259:26345472,937113,196608 -k1,20955:6434165,33315259:-26345472 -) -(1,20955:6434165,33315259:26345472,740505,196608 -[1,20955:6630773,33315259:25952256,543897,0 -(1,20953:6630773,33202407:25952256,431045,112852 -(1,20952:6630773,33202407:0,0,0 -g1,20952:6630773,33202407 -g1,20952:6630773,33202407 -g1,20952:6303093,33202407 -(1,20952:6303093,33202407:0,0,0 -) -g1,20952:6630773,33202407 -) -g1,20953:8954451,33202407 -g1,20953:9618359,33202407 -g1,20953:14929622,33202407 -g1,20953:15593530,33202407 -g1,20953:18581116,33202407 -g1,20953:20240886,33202407 -g1,20953:23228471,33202407 -g1,20953:23892379,33202407 -h1,20953:27543872,33202407:0,0,0 -k1,20953:32583029,33202407:5039157 -g1,20953:32583029,33202407 -) -] -) -g1,20955:32583029,33315259 -g1,20955:6630773,33315259 -g1,20955:6630773,33315259 -g1,20955:32583029,33315259 -g1,20955:32583029,33315259 -) -h1,20955:6630773,33511867:0,0,0 -(1,20958:6630773,42661069:25952256,9083666,0 -k1,20958:10523651,42661069:3892878 -h1,20957:10523651,42661069:0,0,0 -(1,20957:10523651,42661069:18166500,9083666,0 -(1,20957:10523651,42661069:18167376,9083688,0 -(1,20957:10523651,42661069:18167376,9083688,0 -(1,20957:10523651,42661069:0,9083688,0 -(1,20957:10523651,42661069:0,14208860,0 -(1,20957:10523651,42661069:28417720,14208860,0 -) -k1,20957:10523651,42661069:-28417720 -) -) -g1,20957:28691027,42661069 -) -) -) -g1,20958:28690151,42661069 -k1,20958:32583029,42661069:3892878 -) -(1,20965:6630773,43526149:25952256,513147,134348 -h1,20964:6630773,43526149:983040,0,0 -k1,20964:9590117,43526149:193069 -k1,20964:12588782,43526149:193069 -k1,20964:15844348,43526149:193069 -k1,20964:17789194,43526149:193069 -k1,20964:20230148,43526149:193069 -k1,20964:23420179,43526149:193070 -k1,20964:25252303,43526149:193069 -k1,20964:26712838,43526149:193069 -k1,20964:29137408,43526149:193069 -k1,20964:30864675,43526149:193069 -k1,20964:32583029,43526149:0 -) -(1,20965:6630773,44391229:25952256,513147,134348 -k1,20964:8304328,44391229:165572 -k1,20964:9488985,44391229:165572 -k1,20964:11523644,44391229:165572 -k1,20964:12348508,44391229:165572 -k1,20964:13533165,44391229:165572 -k1,20964:15581586,44391229:165572 -k1,20964:17024454,44391229:165571 -k1,20964:21140536,44391229:165572 -k1,20964:21933943,44391229:165572 -k1,20964:23302756,44391229:165572 -k1,20964:26129745,44391229:165572 -k1,20964:27314402,44391229:165572 -k1,20964:29965755,44391229:165572 -k1,20964:30790619,44391229:165572 -k1,20964:32583029,44391229:0 -) -(1,20965:6630773,45256309:25952256,513147,134348 -k1,20964:7394221,45256309:231951 -k1,20964:9516229,45256309:231950 -k1,20964:10939625,45256309:231951 -k1,20964:11980945,45256309:231950 -k1,20964:15209857,45256309:231951 -k1,20964:17124772,45256309:231950 -k1,20964:19019371,45256309:231951 -k1,20964:20012850,45256309:231951 -k1,20964:22684050,45256309:231950 -k1,20964:23543836,45256309:231951 -k1,20964:25473168,45256309:231950 -k1,20964:27403157,45256309:231951 -k1,20964:29285304,45256309:231950 -k1,20964:31591469,45256309:231951 -k1,20964:32583029,45256309:0 -) -] -(1,20965:32583029,45706769:0,0,0 -g1,20965:32583029,45706769 -) -) -] -(1,20965:6630773,47279633:25952256,0,0 -h1,20965:6630773,47279633:25952256,0,0 -) -] -(1,20965:4262630,4025873:0,0,0 -[1,20965:-473656,4025873:0,0,0 -(1,20965:-473656,-710413:0,0,0 -(1,20965:-473656,-710413:0,0,0 -g1,20965:-473656,-710413 -) -g1,20965:-473656,-710413 +k1,20928:17122754,15547483:176278 +k1,20928:18490476,15547483:176277 +(1,20928:18490476,15547483:0,452978,115847 +r1,20963:19903877,15547483:1413401,568825,115847 +k1,20928:18490476,15547483:-1413401 +) +(1,20928:18490476,15547483:1413401,452978,115847 +k1,20928:18490476,15547483:3277 +h1,20928:19900600,15547483:0,411205,112570 +) +k1,20928:20080155,15547483:176278 +k1,20928:21731648,15547483:176278 +k1,20928:22559353,15547483:176277 +k1,20928:23483397,15547483:176278 +k1,20928:25864962,15547483:176278 +k1,20928:28265531,15547483:176277 +k1,20928:29127971,15547483:176278 +k1,20929:32583029,15547483:0 +k1,20929:32583029,15547483:0 +) +v1,20931:6630773,16232338:0,393216,0 +(1,20935:6630773,16579627:25952256,740505,196608 +g1,20935:6630773,16579627 +g1,20935:6630773,16579627 +g1,20935:6434165,16579627 +(1,20935:6434165,16579627:0,740505,196608 +r1,20963:32779637,16579627:26345472,937113,196608 +k1,20935:6434165,16579627:-26345472 +) +(1,20935:6434165,16579627:26345472,740505,196608 +[1,20935:6630773,16579627:25952256,543897,0 +(1,20933:6630773,16466775:25952256,431045,112852 +(1,20932:6630773,16466775:0,0,0 +g1,20932:6630773,16466775 +g1,20932:6630773,16466775 +g1,20932:6303093,16466775 +(1,20932:6303093,16466775:0,0,0 +) +g1,20932:6630773,16466775 +) +g1,20933:8954451,16466775 +g1,20933:9618359,16466775 +g1,20933:14929622,16466775 +g1,20933:15593530,16466775 +g1,20933:18913070,16466775 +g1,20933:20572840,16466775 +g1,20933:21236748,16466775 +g1,20933:24556288,16466775 +g1,20933:27543873,16466775 +g1,20933:28207781,16466775 +h1,20933:31859274,16466775:0,0,0 +k1,20933:32583029,16466775:723755 +g1,20933:32583029,16466775 +) +] +) +g1,20935:32583029,16579627 +g1,20935:6630773,16579627 +g1,20935:6630773,16579627 +g1,20935:32583029,16579627 +g1,20935:32583029,16579627 +) +h1,20935:6630773,16776235:0,0,0 +(1,20938:6630773,29687875:25952256,12846104,0 +k1,20938:13183781,29687875:6553008 +h1,20937:13183781,29687875:0,0,0 +(1,20937:13183781,29687875:12846240,12846104,0 +(1,20937:13183781,29687875:12846136,12846136,0 +(1,20937:13183781,29687875:12846136,12846136,0 +(1,20937:13183781,29687875:0,12846136,0 +(1,20937:13183781,29687875:0,18945146,0 +(1,20937:13183781,29687875:18945146,18945146,0 +) +k1,20937:13183781,29687875:-18945146 +) +) +g1,20937:26029917,29687875 +) +) +) +g1,20938:26030021,29687875 +k1,20938:32583029,29687875:6553008 +) +(1,20947:6630773,30552955:25952256,513147,134348 +h1,20946:6630773,30552955:983040,0,0 +k1,20946:9292744,30552955:203716 +k1,20946:12045155,30552955:203716 +k1,20946:15593829,30552955:203716 +k1,20946:16901827,30552955:203716 +k1,20946:17853309,30552955:203716 +k1,20946:20642420,30552955:203716 +k1,20946:21497565,30552955:203717 +k1,20946:23351478,30552955:203716 +k1,20946:24997641,30552955:203716 +k1,20946:26358067,30552955:203716 +k1,20946:28629444,30552955:203716 +k1,20946:29519322,30552955:203716 +k1,20946:31765140,30552955:203716 +k1,20946:32583029,30552955:0 +) +(1,20947:6630773,31418035:25952256,513147,134348 +k1,20946:7858642,31418035:208784 +k1,20946:9859835,31418035:208783 +k1,20946:11060179,31418035:208784 +k1,20946:12335233,31418035:208783 +k1,20946:13691552,31418035:208784 +k1,20946:17839705,31418035:208784 +(1,20946:17839705,31418035:0,452978,115847 +r1,20963:21363377,31418035:3523672,568825,115847 +k1,20946:17839705,31418035:-3523672 +) +(1,20946:17839705,31418035:3523672,452978,115847 +k1,20946:17839705,31418035:3277 +h1,20946:21360100,31418035:0,411205,112570 +) +k1,20946:21572160,31418035:208783 +k1,20946:22312441,31418035:208784 +k1,20946:24726511,31418035:208783 +k1,20946:25621457,31418035:208784 +k1,20946:28902568,31418035:208783 +k1,20946:29762780,31418035:208784 +(1,20946:29762780,31418035:0,452978,115847 +r1,20963:32583029,31418035:2820249,568825,115847 +k1,20946:29762780,31418035:-2820249 +) +(1,20946:29762780,31418035:2820249,452978,115847 +k1,20946:29762780,31418035:3277 +h1,20946:32579752,31418035:0,411205,112570 +) +k1,20946:32583029,31418035:0 +) +(1,20947:6630773,32283115:25952256,513147,134348 +g1,20946:7554830,32283115 +g1,20946:9038565,32283115 +g1,20946:11131784,32283115 +g1,20946:13399329,32283115 +g1,20946:14590118,32283115 +g1,20946:17547757,32283115 +g1,20946:18363024,32283115 +g1,20946:19581338,32283115 +g1,20946:21197455,32283115 +g1,20946:23215308,32283115 +g1,20946:26094960,32283115 +g1,20946:27688140,32283115 +g1,20946:28906454,32283115 +k1,20947:32583029,32283115:1710495 +g1,20947:32583029,32283115 +) +v1,20949:6630773,32967970:0,393216,0 +(1,20953:6630773,33315259:25952256,740505,196608 +g1,20953:6630773,33315259 +g1,20953:6630773,33315259 +g1,20953:6434165,33315259 +(1,20953:6434165,33315259:0,740505,196608 +r1,20963:32779637,33315259:26345472,937113,196608 +k1,20953:6434165,33315259:-26345472 +) +(1,20953:6434165,33315259:26345472,740505,196608 +[1,20953:6630773,33315259:25952256,543897,0 +(1,20951:6630773,33202407:25952256,431045,112852 +(1,20950:6630773,33202407:0,0,0 +g1,20950:6630773,33202407 +g1,20950:6630773,33202407 +g1,20950:6303093,33202407 +(1,20950:6303093,33202407:0,0,0 +) +g1,20950:6630773,33202407 +) +g1,20951:8954451,33202407 +g1,20951:9618359,33202407 +g1,20951:14929622,33202407 +g1,20951:15593530,33202407 +g1,20951:18581116,33202407 +g1,20951:20240886,33202407 +g1,20951:23228471,33202407 +g1,20951:23892379,33202407 +h1,20951:27543872,33202407:0,0,0 +k1,20951:32583029,33202407:5039157 +g1,20951:32583029,33202407 +) +] +) +g1,20953:32583029,33315259 +g1,20953:6630773,33315259 +g1,20953:6630773,33315259 +g1,20953:32583029,33315259 +g1,20953:32583029,33315259 +) +h1,20953:6630773,33511867:0,0,0 +(1,20956:6630773,42661069:25952256,9083666,0 +k1,20956:10523651,42661069:3892878 +h1,20955:10523651,42661069:0,0,0 +(1,20955:10523651,42661069:18166500,9083666,0 +(1,20955:10523651,42661069:18167376,9083688,0 +(1,20955:10523651,42661069:18167376,9083688,0 +(1,20955:10523651,42661069:0,9083688,0 +(1,20955:10523651,42661069:0,14208860,0 +(1,20955:10523651,42661069:28417720,14208860,0 +) +k1,20955:10523651,42661069:-28417720 +) +) +g1,20955:28691027,42661069 +) +) +) +g1,20956:28690151,42661069 +k1,20956:32583029,42661069:3892878 +) +(1,20963:6630773,43526149:25952256,513147,134348 +h1,20962:6630773,43526149:983040,0,0 +k1,20962:9590117,43526149:193069 +k1,20962:12588782,43526149:193069 +k1,20962:15844348,43526149:193069 +k1,20962:17789194,43526149:193069 +k1,20962:20230148,43526149:193069 +k1,20962:23420179,43526149:193070 +k1,20962:25252303,43526149:193069 +k1,20962:26712838,43526149:193069 +k1,20962:29137408,43526149:193069 +k1,20962:30864675,43526149:193069 +k1,20962:32583029,43526149:0 +) +(1,20963:6630773,44391229:25952256,513147,134348 +k1,20962:8304328,44391229:165572 +k1,20962:9488985,44391229:165572 +k1,20962:11523644,44391229:165572 +k1,20962:12348508,44391229:165572 +k1,20962:13533165,44391229:165572 +k1,20962:15581586,44391229:165572 +k1,20962:17024454,44391229:165571 +k1,20962:21140536,44391229:165572 +k1,20962:21933943,44391229:165572 +k1,20962:23302756,44391229:165572 +k1,20962:26129745,44391229:165572 +k1,20962:27314402,44391229:165572 +k1,20962:29965755,44391229:165572 +k1,20962:30790619,44391229:165572 +k1,20962:32583029,44391229:0 +) +(1,20963:6630773,45256309:25952256,513147,134348 +k1,20962:7394221,45256309:231951 +k1,20962:9516229,45256309:231950 +k1,20962:10939625,45256309:231951 +k1,20962:11980945,45256309:231950 +k1,20962:15209857,45256309:231951 +k1,20962:17124772,45256309:231950 +k1,20962:19019371,45256309:231951 +k1,20962:20012850,45256309:231951 +k1,20962:22684050,45256309:231950 +k1,20962:23543836,45256309:231951 +k1,20962:25473168,45256309:231950 +k1,20962:27403157,45256309:231951 +k1,20962:29285304,45256309:231950 +k1,20962:31591469,45256309:231951 +k1,20962:32583029,45256309:0 +) +] +(1,20963:32583029,45706769:0,0,0 +g1,20963:32583029,45706769 +) +) +] +(1,20963:6630773,47279633:25952256,0,0 +h1,20963:6630773,47279633:25952256,0,0 +) +] +(1,20963:4262630,4025873:0,0,0 +[1,20963:-473656,4025873:0,0,0 +(1,20963:-473656,-710413:0,0,0 +(1,20963:-473656,-710413:0,0,0 +g1,20963:-473656,-710413 +) +g1,20963:-473656,-710413 ) ] ) ] !12033 -}352 -Input:3804:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3805:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3806:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3807:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}353 Input:3808:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3809:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3810:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3811:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3812:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{353 -[1,21017:4262630,47279633:28320399,43253760,0 -(1,21017:4262630,4025873:0,0,0 -[1,21017:-473656,4025873:0,0,0 -(1,21017:-473656,-710413:0,0,0 -(1,21017:-473656,-644877:0,0,0 -k1,21017:-473656,-644877:-65536 +{354 +[1,21015:4262630,47279633:28320399,43253760,0 +(1,21015:4262630,4025873:0,0,0 +[1,21015:-473656,4025873:0,0,0 +(1,21015:-473656,-710413:0,0,0 +(1,21015:-473656,-644877:0,0,0 +k1,21015:-473656,-644877:-65536 ) -(1,21017:-473656,4736287:0,0,0 -k1,21017:-473656,4736287:5209943 +(1,21015:-473656,4736287:0,0,0 +k1,21015:-473656,4736287:5209943 ) -g1,21017:-473656,-710413 +g1,21015:-473656,-710413 ) ] ) -[1,21017:6630773,47279633:25952256,43253760,0 -[1,21017:6630773,4812305:25952256,786432,0 -(1,21017:6630773,4812305:25952256,513147,126483 -(1,21017:6630773,4812305:25952256,513147,126483 -g1,21017:3078558,4812305 -[1,21017:3078558,4812305:0,0,0 -(1,21017:3078558,2439708:0,1703936,0 -k1,21017:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21017:2537886,2439708:1179648,16384,0 +[1,21015:6630773,47279633:25952256,43253760,0 +[1,21015:6630773,4812305:25952256,786432,0 +(1,21015:6630773,4812305:25952256,513147,126483 +(1,21015:6630773,4812305:25952256,513147,126483 +g1,21015:3078558,4812305 +[1,21015:3078558,4812305:0,0,0 +(1,21015:3078558,2439708:0,1703936,0 +k1,21015:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21015:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21017:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21015:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21017:3078558,4812305:0,0,0 -(1,21017:3078558,2439708:0,1703936,0 -g1,21017:29030814,2439708 -g1,21017:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21017:36151628,1915420:16384,1179648,0 +[1,21015:3078558,4812305:0,0,0 +(1,21015:3078558,2439708:0,1703936,0 +g1,21015:29030814,2439708 +g1,21015:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21015:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21017:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21015:37855564,2439708:1179648,16384,0 ) ) -k1,21017:3078556,2439708:-34777008 +k1,21015:3078556,2439708:-34777008 ) ] -[1,21017:3078558,4812305:0,0,0 -(1,21017:3078558,49800853:0,16384,2228224 -k1,21017:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21017:2537886,49800853:1179648,16384,0 +[1,21015:3078558,4812305:0,0,0 +(1,21015:3078558,49800853:0,16384,2228224 +k1,21015:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21015:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21017:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21015:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21017:3078558,4812305:0,0,0 -(1,21017:3078558,49800853:0,16384,2228224 -g1,21017:29030814,49800853 -g1,21017:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21017:36151628,51504789:16384,1179648,0 +[1,21015:3078558,4812305:0,0,0 +(1,21015:3078558,49800853:0,16384,2228224 +g1,21015:29030814,49800853 +g1,21015:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21015:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21017:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21015:37855564,49800853:1179648,16384,0 ) ) -k1,21017:3078556,49800853:-34777008 +k1,21015:3078556,49800853:-34777008 ) ] -g1,21017:6630773,4812305 -k1,21017:21386205,4812305:13560055 -g1,21017:21999622,4812305 -g1,21017:25611966,4812305 -g1,21017:28956923,4812305 -g1,21017:29772190,4812305 -) +g1,21015:6630773,4812305 +k1,21015:21386205,4812305:13560055 +g1,21015:21999622,4812305 +g1,21015:25611966,4812305 +g1,21015:28956923,4812305 +g1,21015:29772190,4812305 +) ) ] -[1,21017:6630773,45706769:25952256,40108032,0 -(1,21017:6630773,45706769:25952256,40108032,0 -(1,21017:6630773,45706769:0,0,0 -g1,21017:6630773,45706769 +[1,21015:6630773,45706769:25952256,40108032,0 +(1,21015:6630773,45706769:25952256,40108032,0 +(1,21015:6630773,45706769:0,0,0 +g1,21015:6630773,45706769 ) -[1,21017:6630773,45706769:25952256,40108032,0 -(1,20965:6630773,6254097:25952256,513147,134348 -k1,20964:9353794,6254097:143524 -k1,20964:12494279,6254097:143524 -k1,20964:13905268,6254097:143523 -k1,20964:15221231,6254097:143524 -k1,20964:16047640,6254097:143524 -k1,20964:17841361,6254097:143524 -k1,20964:22038941,6254097:143523 -k1,20964:23716663,6254097:143524 -k1,20964:24391684,6254097:143524 -k1,20964:25554293,6254097:143524 -k1,20964:28137066,6254097:143523 -k1,20964:29942583,6254097:143524 -k1,20964:30954459,6254097:143524 -k1,20964:32583029,6254097:0 -) -(1,20965:6630773,7119177:25952256,505283,134348 -k1,20964:9871240,7119177:269720 -k1,20964:11534912,7119177:269721 -(1,20964:11534912,7119177:0,435480,115847 -r1,21017:14355161,7119177:2820249,551327,115847 -k1,20964:11534912,7119177:-2820249 -) -(1,20964:11534912,7119177:2820249,435480,115847 -g1,20964:13296748,7119177 -g1,20964:14000172,7119177 -h1,20964:14351884,7119177:0,411205,112570 -) -k1,20964:14798551,7119177:269720 -k1,20964:16851506,7119177:269720 -k1,20964:18856620,7119177:269721 -(1,20964:18856620,7119177:0,459977,115847 -r1,21017:23083716,7119177:4227096,575824,115847 -k1,20964:18856620,7119177:-4227096 -) -(1,20964:18856620,7119177:4227096,459977,115847 -k1,20964:18856620,7119177:3277 -h1,20964:23080439,7119177:0,411205,112570 -) -k1,20964:23353436,7119177:269720 -k1,20964:25277940,7119177:269720 -k1,20964:26079157,7119177:269720 -k1,20964:27724479,7119177:269721 -k1,20964:29150909,7119177:269720 -k1,20964:32583029,7119177:0 -) -(1,20965:6630773,7984257:25952256,513147,126483 -g1,20964:8021447,7984257 -g1,20964:9239761,7984257 -g1,20964:12719722,7984257 -g1,20964:13450448,7984257 -g1,20964:15517453,7984257 -(1,20964:15517453,7984257:0,459977,115847 -r1,21017:17634278,7984257:2116825,575824,115847 -k1,20964:15517453,7984257:-2116825 -) -(1,20964:15517453,7984257:2116825,459977,115847 -k1,20964:15517453,7984257:3277 -h1,20964:17631001,7984257:0,411205,112570 -) -g1,20964:18007177,7984257 -g1,20964:20533589,7984257 -g1,20964:21399974,7984257 -(1,20964:21399974,7984257:0,414482,115847 -r1,21017:22813375,7984257:1413401,530329,115847 -k1,20964:21399974,7984257:-1413401 -) -(1,20964:21399974,7984257:1413401,414482,115847 -k1,20964:21399974,7984257:3277 -h1,20964:22810098,7984257:0,411205,112570 -) -g1,20964:23012604,7984257 -g1,20964:23894718,7984257 -(1,20964:23894718,7984257:0,452978,115847 -r1,21017:25308119,7984257:1413401,568825,115847 -k1,20964:23894718,7984257:-1413401 -) -(1,20964:23894718,7984257:1413401,452978,115847 -k1,20964:23894718,7984257:3277 -h1,20964:25304842,7984257:0,411205,112570 -) -k1,20965:32583029,7984257:7222482 -g1,20965:32583029,7984257 -) -v1,20969:6630773,8669112:0,393216,0 -(1,20973:6630773,9009795:25952256,733899,196608 -g1,20973:6630773,9009795 -g1,20973:6630773,9009795 -g1,20973:6434165,9009795 -(1,20973:6434165,9009795:0,733899,196608 -r1,21017:32779637,9009795:26345472,930507,196608 -k1,20973:6434165,9009795:-26345472 -) -(1,20973:6434165,9009795:26345472,733899,196608 -[1,20973:6630773,9009795:25952256,537291,0 -(1,20971:6630773,8903549:25952256,431045,106246 -(1,20970:6630773,8903549:0,0,0 -g1,20970:6630773,8903549 -g1,20970:6630773,8903549 -g1,20970:6303093,8903549 -(1,20970:6303093,8903549:0,0,0 -) -g1,20970:6630773,8903549 -) -g1,20971:8954451,8903549 -g1,20971:9618359,8903549 -g1,20971:15593530,8903549 -g1,20971:16257438,8903549 -g1,20971:19908932,8903549 -g1,20971:21568702,8903549 -g1,20971:22232610,8903549 -h1,20971:22896518,8903549:0,0,0 -k1,20971:32583029,8903549:9686511 -g1,20971:32583029,8903549 -) -] -) -g1,20973:32583029,9009795 -g1,20973:6630773,9009795 -g1,20973:6630773,9009795 -g1,20973:32583029,9009795 -g1,20973:32583029,9009795 -) -h1,20973:6630773,9206403:0,0,0 -(1,20976:6630773,22118043:25952256,12846104,0 -k1,20976:13183781,22118043:6553008 -h1,20975:13183781,22118043:0,0,0 -(1,20975:13183781,22118043:12846240,12846104,0 -(1,20975:13183781,22118043:12846136,12846136,0 -(1,20975:13183781,22118043:12846136,12846136,0 -(1,20975:13183781,22118043:0,12846136,0 -(1,20975:13183781,22118043:0,18945146,0 -(1,20975:13183781,22118043:18945146,18945146,0 -) -k1,20975:13183781,22118043:-18945146 -) -) -g1,20975:26029917,22118043 -) -) -) -g1,20976:26030021,22118043 -k1,20976:32583029,22118043:6553008 -) -v1,20985:6630773,22983123:0,393216,0 -(1,21017:6630773,40045578:25952256,17455671,0 -g1,21017:6630773,40045578 -g1,21017:6237557,40045578 -r1,21017:6368629,40045578:131072,17455671,0 -g1,21017:6567858,40045578 -g1,21017:6764466,40045578 -[1,21017:6764466,40045578:25818563,17455671,0 -(1,20986:6764466,23291421:25818563,701514,196608 -(1,20985:6764466,23291421:0,701514,196608 -r1,21017:7761522,23291421:997056,898122,196608 -k1,20985:6764466,23291421:-997056 -) -(1,20985:6764466,23291421:997056,701514,196608 -) -k1,20985:7986250,23291421:224728 -k1,20985:8313930,23291421:327680 -k1,20985:9298876,23291421:224728 -k1,20985:11789183,23291421:224727 -k1,20985:13757824,23291421:224728 -k1,20985:16841888,23291421:224728 -k1,20985:18058176,23291421:224728 -k1,20985:19301989,23291421:224728 -k1,20985:21595032,23291421:224727 -k1,20985:22479052,23291421:224728 -k1,20985:23722865,23291421:224728 -k1,20985:25740003,23291421:224728 -k1,20985:26624023,23291421:224728 -k1,20985:27867835,23291421:224727 -k1,20985:29986553,23291421:224728 -k1,20985:31591469,23291421:224728 -k1,20985:32583029,23291421:0 -) -(1,20986:6764466,24156501:25818563,513147,134348 -k1,20985:8799056,24156501:179921 -k1,20985:9962018,24156501:179922 -k1,20985:13147420,24156501:179921 -k1,20985:15024069,24156501:179922 -k1,20985:17272306,24156501:179921 -k1,20985:17983725,24156501:179922 -k1,20985:19320356,24156501:179921 -k1,20985:20738253,24156501:179922 -k1,20985:21577466,24156501:179921 -k1,20985:24640972,24156501:179922 -k1,20985:25839978,24156501:179921 -k1,20985:28037754,24156501:179922 -k1,20985:29598519,24156501:179921 -k1,20985:32583029,24156501:0 -) -(1,20986:6764466,25021581:25818563,505283,126483 -k1,20985:8093083,25021581:224335 -k1,20985:9065184,25021581:224335 -k1,20985:10802745,25021581:224335 -k1,20985:11678507,25021581:224334 -k1,20985:13100185,25021581:224335 -k1,20985:17647930,25021581:224335 -k1,20985:21642551,25021581:224335 -k1,20985:22549771,25021581:224335 -k1,20985:24629430,25021581:224335 -k1,20985:26886035,25021581:224334 -k1,20985:27726408,25021581:224335 -k1,20985:28969828,25021581:224335 -k1,20985:30938076,25021581:224335 -k1,20986:32583029,25021581:0 -) -(1,20986:6764466,25886661:25818563,513147,134348 -k1,20985:8495708,25886661:237021 -k1,20985:10773520,25886661:237021 -k1,20985:12316675,25886661:237022 -k1,20985:14447686,25886661:237021 -k1,20985:16528890,25886661:237021 -k1,20985:17381949,25886661:237021 -k1,20985:18638056,25886661:237022 -k1,20985:20264440,25886661:237021 -k1,20985:22377757,25886661:237021 -k1,20985:24820065,25886661:237021 -k1,20985:25743248,25886661:237021 -k1,20985:29052598,25886661:237022 -k1,20985:29941047,25886661:237021 -(1,20985:29941047,25886661:0,452978,115847 -r1,21017:31354448,25886661:1413401,568825,115847 -k1,20985:29941047,25886661:-1413401 -) -(1,20985:29941047,25886661:1413401,452978,115847 -k1,20985:29941047,25886661:3277 -h1,20985:31351171,25886661:0,411205,112570 -) -k1,20985:31591469,25886661:237021 -k1,20985:32583029,25886661:0 -) -(1,20986:6764466,26751741:25818563,505283,134348 -k1,20985:7943926,26751741:244917 -k1,20985:8840272,26751741:244918 -k1,20985:11281300,26751741:244917 -k1,20985:12810723,26751741:244917 -k1,20985:14159923,26751741:244918 -k1,20985:15152606,26751741:244917 -k1,20985:17560867,26751741:244918 -k1,20985:19073250,26751741:244917 -k1,20985:22243039,26751741:244917 -k1,20985:26431914,26751741:244918 -k1,20985:28462032,26751741:244917 -k1,20985:29322987,26751741:244917 -k1,20985:30586990,26751741:244918 -k1,20985:31931601,26751741:244917 -k1,20986:32583029,26751741:0 -) -(1,20986:6764466,27616821:25818563,513147,134348 -(1,20985:6764466,27616821:0,459977,122846 -r1,21017:10991562,27616821:4227096,582823,122846 -k1,20985:6764466,27616821:-4227096 -) -(1,20985:6764466,27616821:4227096,459977,122846 -k1,20985:6764466,27616821:3277 -h1,20985:10988285,27616821:0,411205,112570 -) -k1,20985:11446654,27616821:281422 -k1,20985:12410960,27616821:281421 -k1,20985:13343810,27616821:281422 -(1,20985:13343810,27616821:0,459977,115847 -r1,21017:17570906,27616821:4227096,575824,115847 -k1,20985:13343810,27616821:-4227096 -) -(1,20985:13343810,27616821:4227096,459977,115847 -k1,20985:13343810,27616821:3277 -h1,20985:17567629,27616821:0,411205,112570 -) -k1,20985:18025998,27616821:281422 -k1,20985:19175771,27616821:281421 -k1,20985:20894398,27616821:281422 -k1,20985:21861981,27616821:281421 -k1,20985:25215731,27616821:281422 -k1,20985:26148581,27616821:281422 -(1,20985:26148581,27616821:0,452978,115847 -r1,21017:28968830,27616821:2820249,568825,115847 -k1,20985:26148581,27616821:-2820249 -) -(1,20985:26148581,27616821:2820249,452978,115847 -k1,20985:26148581,27616821:3277 -h1,20985:28965553,27616821:0,411205,112570 -) -k1,20985:29250251,27616821:281421 -k1,20985:29887533,27616821:281422 -k1,20985:32583029,27616821:0 -) -(1,20986:6764466,28481901:25818563,513147,115847 -g1,20985:10219524,28481901 -(1,20985:10219524,28481901:0,452978,115847 -r1,21017:14446620,28481901:4227096,568825,115847 -k1,20985:10219524,28481901:-4227096 -) -(1,20985:10219524,28481901:4227096,452978,115847 -k1,20985:10219524,28481901:3277 -h1,20985:14443343,28481901:0,411205,112570 -) -k1,20986:32583030,28481901:17962740 -g1,20986:32583030,28481901 -) -v1,20988:6764466,29166756:0,393216,0 -(1,20997:6764466,32938320:25818563,4164780,196608 -g1,20997:6764466,32938320 -g1,20997:6764466,32938320 -g1,20997:6567858,32938320 -(1,20997:6567858,32938320:0,4164780,196608 -r1,21017:32779637,32938320:26211779,4361388,196608 -k1,20997:6567857,32938320:-26211780 -) -(1,20997:6567858,32938320:26211779,4164780,196608 -[1,20997:6764466,32938320:25818563,3968172,0 -(1,20990:6764466,29401193:25818563,431045,106246 -(1,20989:6764466,29401193:0,0,0 -g1,20989:6764466,29401193 -g1,20989:6764466,29401193 -g1,20989:6436786,29401193 -(1,20989:6436786,29401193:0,0,0 -) -g1,20989:6764466,29401193 -) -g1,20990:11079868,29401193 -g1,20990:12075730,29401193 -k1,20990:12075730,29401193:0 -h1,20990:18050902,29401193:0,0,0 -k1,20990:32583029,29401193:14532127 -g1,20990:32583029,29401193 -) -(1,20991:6764466,30086048:25818563,424439,106246 -h1,20991:6764466,30086048:0,0,0 -g1,20991:7096420,30086048 -g1,20991:7428374,30086048 -g1,20991:7760328,30086048 -g1,20991:8092282,30086048 -g1,20991:8424236,30086048 -g1,20991:8756190,30086048 -g1,20991:9088144,30086048 -g1,20991:9420098,30086048 -g1,20991:9752052,30086048 -g1,20991:10084006,30086048 -g1,20991:10415960,30086048 -g1,20991:10747914,30086048 -g1,20991:11079868,30086048 -g1,20991:11411822,30086048 -g1,20991:11743776,30086048 -g1,20991:12075730,30086048 -g1,20991:12407684,30086048 -g1,20991:12739638,30086048 -g1,20991:13071592,30086048 -g1,20991:13403546,30086048 -g1,20991:13735500,30086048 -g1,20991:14067454,30086048 -g1,20991:14399408,30086048 -g1,20991:16723086,30086048 -g1,20991:17386994,30086048 -g1,20991:21038488,30086048 -g1,20991:23694120,30086048 -g1,20991:26681706,30086048 -h1,20991:28341476,30086048:0,0,0 -k1,20991:32583029,30086048:4241553 -g1,20991:32583029,30086048 -) -(1,20992:6764466,30770903:25818563,424439,112852 -h1,20992:6764466,30770903:0,0,0 -g1,20992:10747914,30770903 -g1,20992:11411822,30770903 -k1,20992:11411822,30770903:0 -h1,20992:13735500,30770903:0,0,0 -k1,20992:32583028,30770903:18847528 -g1,20992:32583028,30770903 -) -(1,20993:6764466,31455758:25818563,424439,112852 -h1,20993:6764466,31455758:0,0,0 -g1,20993:7096420,31455758 -g1,20993:7428374,31455758 -g1,20993:7760328,31455758 -g1,20993:8092282,31455758 -g1,20993:8424236,31455758 -g1,20993:8756190,31455758 -g1,20993:9088144,31455758 -g1,20993:11743776,31455758 -g1,20993:12407684,31455758 -g1,20993:15395270,31455758 -g1,20993:17055040,31455758 -h1,20993:17386994,31455758:0,0,0 -k1,20993:32583029,31455758:15196035 -g1,20993:32583029,31455758 -) -(1,20994:6764466,32140613:25818563,424439,112852 -h1,20994:6764466,32140613:0,0,0 -g1,20994:7096420,32140613 -g1,20994:7428374,32140613 -g1,20994:11743775,32140613 -h1,20994:12075729,32140613:0,0,0 -k1,20994:32583029,32140613:20507300 -g1,20994:32583029,32140613 -) -(1,20995:6764466,32825468:25818563,431045,112852 -h1,20995:6764466,32825468:0,0,0 -g1,20995:7096420,32825468 -g1,20995:7428374,32825468 -g1,20995:12739637,32825468 -g1,20995:13403545,32825468 -g1,20995:17718947,32825468 -g1,20995:20706532,32825468 -g1,20995:21370440,32825468 -h1,20995:25685841,32825468:0,0,0 -k1,20995:32583029,32825468:6897188 -g1,20995:32583029,32825468 -) -] -) -g1,20997:32583029,32938320 -g1,20997:6764466,32938320 -g1,20997:6764466,32938320 -g1,20997:32583029,32938320 -g1,20997:32583029,32938320 -) -h1,20997:6764466,33134928:0,0,0 -(1,21001:6764466,34000008:25818563,513147,134348 -h1,21000:6764466,34000008:983040,0,0 -k1,21000:9335724,34000008:391531 -k1,21000:11571438,34000008:391531 -k1,21000:12622261,34000008:391531 -k1,21000:14032876,34000008:391530 -k1,21000:16216817,34000008:391531 -k1,21000:17267640,34000008:391531 -k1,21000:18678256,34000008:391531 -k1,21000:20963777,34000008:391531 -k1,21000:22868534,34000008:391531 -k1,21000:23876103,34000008:391531 -k1,21000:26816329,34000008:391531 -k1,21000:28312141,34000008:391530 -k1,21000:29989488,34000008:391531 -k1,21000:31128785,34000008:391531 -k1,21001:32583029,34000008:0 -) -(1,21001:6764466,34865088:25818563,513147,134348 -k1,21000:8744644,34865088:195633 -k1,21000:10334229,34865088:195634 -k1,21000:10885722,34865088:195633 -k1,21000:14056034,34865088:195633 -k1,21000:16117478,34865088:195634 -k1,21000:19296965,34865088:195633 -k1,21000:21874833,34865088:195634 -k1,21000:22756628,34865088:195633 -k1,21000:26024589,34865088:195633 -k1,21000:26871651,34865088:195634 -(1,21000:26871651,34865088:0,452978,115847 -r1,21017:29691900,34865088:2820249,568825,115847 -k1,21000:26871651,34865088:-2820249 -) -(1,21000:26871651,34865088:2820249,452978,115847 -k1,21000:26871651,34865088:3277 -h1,21000:29688623,34865088:0,411205,112570 -) -k1,21000:29887533,34865088:195633 -k1,21001:32583029,34865088:0 -) -(1,21001:6764466,35730168:25818563,505283,134348 -(1,21000:6764466,35730168:0,452978,115847 -r1,21017:11694986,35730168:4930520,568825,115847 -k1,21000:6764466,35730168:-4930520 -) -(1,21000:6764466,35730168:4930520,452978,115847 -k1,21000:6764466,35730168:3277 -h1,21000:11691709,35730168:0,411205,112570 -) -k1,21000:11894312,35730168:199326 -k1,21000:13285083,35730168:199326 -k1,21000:15219803,35730168:199327 -k1,21000:15774989,35730168:199326 -k1,21000:18899187,35730168:199326 -k1,21000:22538498,35730168:199326 -k1,21000:23423986,35730168:199326 -k1,21000:24411710,35730168:199326 -k1,21000:27683365,35730168:199327 -k1,21000:29928725,35730168:199326 -k1,21000:31331292,35730168:199326 -k1,21001:32583029,35730168:0 -) -(1,21001:6764466,36595248:25818563,513147,126483 -k1,21000:8670022,36595248:247495 -k1,21000:9967404,36595248:247495 -k1,21000:12493587,36595248:247496 -h1,21000:13862634,36595248:0,0,0 -k1,21000:14110129,36595248:247495 -k1,21000:15305275,36595248:247495 -k1,21000:16323473,36595248:247495 -k1,21000:19232385,36595248:247495 -k1,21000:20139172,36595248:247495 -k1,21000:21405752,36595248:247495 -k1,21000:22745733,36595248:247496 -k1,21000:23660384,36595248:247495 -(1,21000:23660384,36595248:0,452978,115847 -r1,21017:26480633,36595248:2820249,568825,115847 -k1,21000:23660384,36595248:-2820249 -) -(1,21000:23660384,36595248:2820249,452978,115847 -k1,21000:23660384,36595248:3277 -h1,21000:26477356,36595248:0,411205,112570 -) -k1,21000:26901798,36595248:247495 -k1,21000:28168378,36595248:247495 -k1,21000:28830668,36595248:247447 -k1,21000:31773659,36595248:247495 -k1,21000:32583029,36595248:0 -) -(1,21001:6764466,37460328:25818563,505283,115847 -g1,21000:8822952,37460328 -(1,21000:8822952,37460328:0,452978,115847 -r1,21017:13753472,37460328:4930520,568825,115847 -k1,21000:8822952,37460328:-4930520 -) -(1,21000:8822952,37460328:4930520,452978,115847 -k1,21000:8822952,37460328:3277 -h1,21000:13750195,37460328:0,411205,112570 -) -g1,21000:14126371,37460328 -g1,21000:14857097,37460328 -k1,21001:32583029,37460328:16195011 -g1,21001:32583029,37460328 -) -v1,21003:6764466,38145183:0,393216,0 -(1,21009:6764466,39848970:25818563,2097003,196608 -g1,21009:6764466,39848970 -g1,21009:6764466,39848970 -g1,21009:6567858,39848970 -(1,21009:6567858,39848970:0,2097003,196608 -r1,21017:32779637,39848970:26211779,2293611,196608 -k1,21009:6567857,39848970:-26211780 -) -(1,21009:6567858,39848970:26211779,2097003,196608 -[1,21009:6764466,39848970:25818563,1900395,0 -(1,21005:6764466,38373014:25818563,424439,106246 -(1,21004:6764466,38373014:0,0,0 -g1,21004:6764466,38373014 -g1,21004:6764466,38373014 -g1,21004:6436786,38373014 -(1,21004:6436786,38373014:0,0,0 -) -g1,21004:6764466,38373014 -) -g1,21005:9088144,38373014 -h1,21005:9420098,38373014:0,0,0 -k1,21005:32583030,38373014:23162932 -g1,21005:32583030,38373014 -) -(1,21006:6764466,39057869:25818563,431045,112852 -h1,21006:6764466,39057869:0,0,0 -g1,21006:7096420,39057869 -g1,21006:7428374,39057869 -g1,21006:12739637,39057869 -g1,21006:13403545,39057869 -k1,21006:13403545,39057869:0 -h1,21006:16723085,39057869:0,0,0 -k1,21006:32583029,39057869:15859944 -g1,21006:32583029,39057869 -) -(1,21007:6764466,39742724:25818563,424439,106246 -h1,21007:6764466,39742724:0,0,0 -g1,21007:7096420,39742724 -g1,21007:7428374,39742724 -g1,21007:7760328,39742724 -g1,21007:8092282,39742724 -g1,21007:8424236,39742724 -g1,21007:8756190,39742724 -g1,21007:9088144,39742724 -g1,21007:9420098,39742724 -g1,21007:9752052,39742724 -g1,21007:10084006,39742724 -g1,21007:10415960,39742724 -g1,21007:10747914,39742724 -g1,21007:11079868,39742724 -g1,21007:14067453,39742724 -g1,21007:14731361,39742724 -g1,21007:20706532,39742724 -g1,21007:21370440,39742724 -k1,21007:21370440,39742724:0 -h1,21007:28009519,39742724:0,0,0 -k1,21007:32583029,39742724:4573510 -g1,21007:32583029,39742724 -) -] -) -g1,21009:32583029,39848970 -g1,21009:6764466,39848970 -g1,21009:6764466,39848970 -g1,21009:32583029,39848970 -g1,21009:32583029,39848970 -) -h1,21009:6764466,40045578:0,0,0 -] -g1,21017:32583029,40045578 -) -] -(1,21017:32583029,45706769:0,0,0 -g1,21017:32583029,45706769 -) -) -] -(1,21017:6630773,47279633:25952256,0,0 -h1,21017:6630773,47279633:25952256,0,0 -) -] -(1,21017:4262630,4025873:0,0,0 -[1,21017:-473656,4025873:0,0,0 -(1,21017:-473656,-710413:0,0,0 -(1,21017:-473656,-710413:0,0,0 -g1,21017:-473656,-710413 -) -g1,21017:-473656,-710413 +[1,21015:6630773,45706769:25952256,40108032,0 +(1,20963:6630773,6254097:25952256,513147,134348 +k1,20962:9353794,6254097:143524 +k1,20962:12494279,6254097:143524 +k1,20962:13905268,6254097:143523 +k1,20962:15221231,6254097:143524 +k1,20962:16047640,6254097:143524 +k1,20962:17841361,6254097:143524 +k1,20962:22038941,6254097:143523 +k1,20962:23716663,6254097:143524 +k1,20962:24391684,6254097:143524 +k1,20962:25554293,6254097:143524 +k1,20962:28137066,6254097:143523 +k1,20962:29942583,6254097:143524 +k1,20962:30954459,6254097:143524 +k1,20962:32583029,6254097:0 +) +(1,20963:6630773,7119177:25952256,505283,134348 +k1,20962:9871240,7119177:269720 +k1,20962:11534912,7119177:269721 +(1,20962:11534912,7119177:0,435480,115847 +r1,21015:14355161,7119177:2820249,551327,115847 +k1,20962:11534912,7119177:-2820249 +) +(1,20962:11534912,7119177:2820249,435480,115847 +g1,20962:13296748,7119177 +g1,20962:14000172,7119177 +h1,20962:14351884,7119177:0,411205,112570 +) +k1,20962:14798551,7119177:269720 +k1,20962:16851506,7119177:269720 +k1,20962:18856620,7119177:269721 +(1,20962:18856620,7119177:0,459977,115847 +r1,21015:23083716,7119177:4227096,575824,115847 +k1,20962:18856620,7119177:-4227096 +) +(1,20962:18856620,7119177:4227096,459977,115847 +k1,20962:18856620,7119177:3277 +h1,20962:23080439,7119177:0,411205,112570 +) +k1,20962:23353436,7119177:269720 +k1,20962:25277940,7119177:269720 +k1,20962:26079157,7119177:269720 +k1,20962:27724479,7119177:269721 +k1,20962:29150909,7119177:269720 +k1,20962:32583029,7119177:0 +) +(1,20963:6630773,7984257:25952256,513147,126483 +g1,20962:8021447,7984257 +g1,20962:9239761,7984257 +g1,20962:12719722,7984257 +g1,20962:13450448,7984257 +g1,20962:15517453,7984257 +(1,20962:15517453,7984257:0,459977,115847 +r1,21015:17634278,7984257:2116825,575824,115847 +k1,20962:15517453,7984257:-2116825 +) +(1,20962:15517453,7984257:2116825,459977,115847 +k1,20962:15517453,7984257:3277 +h1,20962:17631001,7984257:0,411205,112570 +) +g1,20962:18007177,7984257 +g1,20962:20533589,7984257 +g1,20962:21399974,7984257 +(1,20962:21399974,7984257:0,414482,115847 +r1,21015:22813375,7984257:1413401,530329,115847 +k1,20962:21399974,7984257:-1413401 +) +(1,20962:21399974,7984257:1413401,414482,115847 +k1,20962:21399974,7984257:3277 +h1,20962:22810098,7984257:0,411205,112570 +) +g1,20962:23012604,7984257 +g1,20962:23894718,7984257 +(1,20962:23894718,7984257:0,452978,115847 +r1,21015:25308119,7984257:1413401,568825,115847 +k1,20962:23894718,7984257:-1413401 +) +(1,20962:23894718,7984257:1413401,452978,115847 +k1,20962:23894718,7984257:3277 +h1,20962:25304842,7984257:0,411205,112570 +) +k1,20963:32583029,7984257:7222482 +g1,20963:32583029,7984257 +) +v1,20967:6630773,8669112:0,393216,0 +(1,20971:6630773,9009795:25952256,733899,196608 +g1,20971:6630773,9009795 +g1,20971:6630773,9009795 +g1,20971:6434165,9009795 +(1,20971:6434165,9009795:0,733899,196608 +r1,21015:32779637,9009795:26345472,930507,196608 +k1,20971:6434165,9009795:-26345472 +) +(1,20971:6434165,9009795:26345472,733899,196608 +[1,20971:6630773,9009795:25952256,537291,0 +(1,20969:6630773,8903549:25952256,431045,106246 +(1,20968:6630773,8903549:0,0,0 +g1,20968:6630773,8903549 +g1,20968:6630773,8903549 +g1,20968:6303093,8903549 +(1,20968:6303093,8903549:0,0,0 +) +g1,20968:6630773,8903549 +) +g1,20969:8954451,8903549 +g1,20969:9618359,8903549 +g1,20969:15593530,8903549 +g1,20969:16257438,8903549 +g1,20969:19908932,8903549 +g1,20969:21568702,8903549 +g1,20969:22232610,8903549 +h1,20969:22896518,8903549:0,0,0 +k1,20969:32583029,8903549:9686511 +g1,20969:32583029,8903549 +) +] +) +g1,20971:32583029,9009795 +g1,20971:6630773,9009795 +g1,20971:6630773,9009795 +g1,20971:32583029,9009795 +g1,20971:32583029,9009795 +) +h1,20971:6630773,9206403:0,0,0 +(1,20974:6630773,22118043:25952256,12846104,0 +k1,20974:13183781,22118043:6553008 +h1,20973:13183781,22118043:0,0,0 +(1,20973:13183781,22118043:12846240,12846104,0 +(1,20973:13183781,22118043:12846136,12846136,0 +(1,20973:13183781,22118043:12846136,12846136,0 +(1,20973:13183781,22118043:0,12846136,0 +(1,20973:13183781,22118043:0,18945146,0 +(1,20973:13183781,22118043:18945146,18945146,0 +) +k1,20973:13183781,22118043:-18945146 +) +) +g1,20973:26029917,22118043 +) +) +) +g1,20974:26030021,22118043 +k1,20974:32583029,22118043:6553008 +) +v1,20983:6630773,22983123:0,393216,0 +(1,21015:6630773,40045578:25952256,17455671,0 +g1,21015:6630773,40045578 +g1,21015:6237557,40045578 +r1,21015:6368629,40045578:131072,17455671,0 +g1,21015:6567858,40045578 +g1,21015:6764466,40045578 +[1,21015:6764466,40045578:25818563,17455671,0 +(1,20984:6764466,23291421:25818563,701514,196608 +(1,20983:6764466,23291421:0,701514,196608 +r1,21015:7761522,23291421:997056,898122,196608 +k1,20983:6764466,23291421:-997056 +) +(1,20983:6764466,23291421:997056,701514,196608 +) +k1,20983:7986250,23291421:224728 +k1,20983:8313930,23291421:327680 +k1,20983:9298876,23291421:224728 +k1,20983:11789183,23291421:224727 +k1,20983:13757824,23291421:224728 +k1,20983:16841888,23291421:224728 +k1,20983:18058176,23291421:224728 +k1,20983:19301989,23291421:224728 +k1,20983:21595032,23291421:224727 +k1,20983:22479052,23291421:224728 +k1,20983:23722865,23291421:224728 +k1,20983:25740003,23291421:224728 +k1,20983:26624023,23291421:224728 +k1,20983:27867835,23291421:224727 +k1,20983:29986553,23291421:224728 +k1,20983:31591469,23291421:224728 +k1,20983:32583029,23291421:0 +) +(1,20984:6764466,24156501:25818563,513147,134348 +k1,20983:8799056,24156501:179921 +k1,20983:9962018,24156501:179922 +k1,20983:13147420,24156501:179921 +k1,20983:15024069,24156501:179922 +k1,20983:17272306,24156501:179921 +k1,20983:17983725,24156501:179922 +k1,20983:19320356,24156501:179921 +k1,20983:20738253,24156501:179922 +k1,20983:21577466,24156501:179921 +k1,20983:24640972,24156501:179922 +k1,20983:25839978,24156501:179921 +k1,20983:28037754,24156501:179922 +k1,20983:29598519,24156501:179921 +k1,20983:32583029,24156501:0 +) +(1,20984:6764466,25021581:25818563,505283,126483 +k1,20983:8093083,25021581:224335 +k1,20983:9065184,25021581:224335 +k1,20983:10802745,25021581:224335 +k1,20983:11678507,25021581:224334 +k1,20983:13100185,25021581:224335 +k1,20983:17647930,25021581:224335 +k1,20983:21642551,25021581:224335 +k1,20983:22549771,25021581:224335 +k1,20983:24629430,25021581:224335 +k1,20983:26886035,25021581:224334 +k1,20983:27726408,25021581:224335 +k1,20983:28969828,25021581:224335 +k1,20983:30938076,25021581:224335 +k1,20984:32583029,25021581:0 +) +(1,20984:6764466,25886661:25818563,513147,134348 +k1,20983:8495708,25886661:237021 +k1,20983:10773520,25886661:237021 +k1,20983:12316675,25886661:237022 +k1,20983:14447686,25886661:237021 +k1,20983:16528890,25886661:237021 +k1,20983:17381949,25886661:237021 +k1,20983:18638056,25886661:237022 +k1,20983:20264440,25886661:237021 +k1,20983:22377757,25886661:237021 +k1,20983:24820065,25886661:237021 +k1,20983:25743248,25886661:237021 +k1,20983:29052598,25886661:237022 +k1,20983:29941047,25886661:237021 +(1,20983:29941047,25886661:0,452978,115847 +r1,21015:31354448,25886661:1413401,568825,115847 +k1,20983:29941047,25886661:-1413401 +) +(1,20983:29941047,25886661:1413401,452978,115847 +k1,20983:29941047,25886661:3277 +h1,20983:31351171,25886661:0,411205,112570 +) +k1,20983:31591469,25886661:237021 +k1,20983:32583029,25886661:0 +) +(1,20984:6764466,26751741:25818563,505283,134348 +k1,20983:7943926,26751741:244917 +k1,20983:8840272,26751741:244918 +k1,20983:11281300,26751741:244917 +k1,20983:12810723,26751741:244917 +k1,20983:14159923,26751741:244918 +k1,20983:15152606,26751741:244917 +k1,20983:17560867,26751741:244918 +k1,20983:19073250,26751741:244917 +k1,20983:22243039,26751741:244917 +k1,20983:26431914,26751741:244918 +k1,20983:28462032,26751741:244917 +k1,20983:29322987,26751741:244917 +k1,20983:30586990,26751741:244918 +k1,20983:31931601,26751741:244917 +k1,20984:32583029,26751741:0 +) +(1,20984:6764466,27616821:25818563,513147,134348 +(1,20983:6764466,27616821:0,459977,122846 +r1,21015:10991562,27616821:4227096,582823,122846 +k1,20983:6764466,27616821:-4227096 +) +(1,20983:6764466,27616821:4227096,459977,122846 +k1,20983:6764466,27616821:3277 +h1,20983:10988285,27616821:0,411205,112570 +) +k1,20983:11446654,27616821:281422 +k1,20983:12410960,27616821:281421 +k1,20983:13343810,27616821:281422 +(1,20983:13343810,27616821:0,459977,115847 +r1,21015:17570906,27616821:4227096,575824,115847 +k1,20983:13343810,27616821:-4227096 +) +(1,20983:13343810,27616821:4227096,459977,115847 +k1,20983:13343810,27616821:3277 +h1,20983:17567629,27616821:0,411205,112570 +) +k1,20983:18025998,27616821:281422 +k1,20983:19175771,27616821:281421 +k1,20983:20894398,27616821:281422 +k1,20983:21861981,27616821:281421 +k1,20983:25215731,27616821:281422 +k1,20983:26148581,27616821:281422 +(1,20983:26148581,27616821:0,452978,115847 +r1,21015:28968830,27616821:2820249,568825,115847 +k1,20983:26148581,27616821:-2820249 +) +(1,20983:26148581,27616821:2820249,452978,115847 +k1,20983:26148581,27616821:3277 +h1,20983:28965553,27616821:0,411205,112570 +) +k1,20983:29250251,27616821:281421 +k1,20983:29887533,27616821:281422 +k1,20983:32583029,27616821:0 +) +(1,20984:6764466,28481901:25818563,513147,115847 +g1,20983:10219524,28481901 +(1,20983:10219524,28481901:0,452978,115847 +r1,21015:14446620,28481901:4227096,568825,115847 +k1,20983:10219524,28481901:-4227096 +) +(1,20983:10219524,28481901:4227096,452978,115847 +k1,20983:10219524,28481901:3277 +h1,20983:14443343,28481901:0,411205,112570 +) +k1,20984:32583030,28481901:17962740 +g1,20984:32583030,28481901 +) +v1,20986:6764466,29166756:0,393216,0 +(1,20995:6764466,32938320:25818563,4164780,196608 +g1,20995:6764466,32938320 +g1,20995:6764466,32938320 +g1,20995:6567858,32938320 +(1,20995:6567858,32938320:0,4164780,196608 +r1,21015:32779637,32938320:26211779,4361388,196608 +k1,20995:6567857,32938320:-26211780 +) +(1,20995:6567858,32938320:26211779,4164780,196608 +[1,20995:6764466,32938320:25818563,3968172,0 +(1,20988:6764466,29401193:25818563,431045,106246 +(1,20987:6764466,29401193:0,0,0 +g1,20987:6764466,29401193 +g1,20987:6764466,29401193 +g1,20987:6436786,29401193 +(1,20987:6436786,29401193:0,0,0 +) +g1,20987:6764466,29401193 +) +g1,20988:11079868,29401193 +g1,20988:12075730,29401193 +k1,20988:12075730,29401193:0 +h1,20988:18050902,29401193:0,0,0 +k1,20988:32583029,29401193:14532127 +g1,20988:32583029,29401193 +) +(1,20989:6764466,30086048:25818563,424439,106246 +h1,20989:6764466,30086048:0,0,0 +g1,20989:7096420,30086048 +g1,20989:7428374,30086048 +g1,20989:7760328,30086048 +g1,20989:8092282,30086048 +g1,20989:8424236,30086048 +g1,20989:8756190,30086048 +g1,20989:9088144,30086048 +g1,20989:9420098,30086048 +g1,20989:9752052,30086048 +g1,20989:10084006,30086048 +g1,20989:10415960,30086048 +g1,20989:10747914,30086048 +g1,20989:11079868,30086048 +g1,20989:11411822,30086048 +g1,20989:11743776,30086048 +g1,20989:12075730,30086048 +g1,20989:12407684,30086048 +g1,20989:12739638,30086048 +g1,20989:13071592,30086048 +g1,20989:13403546,30086048 +g1,20989:13735500,30086048 +g1,20989:14067454,30086048 +g1,20989:14399408,30086048 +g1,20989:16723086,30086048 +g1,20989:17386994,30086048 +g1,20989:21038488,30086048 +g1,20989:23694120,30086048 +g1,20989:26681706,30086048 +h1,20989:28341476,30086048:0,0,0 +k1,20989:32583029,30086048:4241553 +g1,20989:32583029,30086048 +) +(1,20990:6764466,30770903:25818563,424439,112852 +h1,20990:6764466,30770903:0,0,0 +g1,20990:10747914,30770903 +g1,20990:11411822,30770903 +k1,20990:11411822,30770903:0 +h1,20990:13735500,30770903:0,0,0 +k1,20990:32583028,30770903:18847528 +g1,20990:32583028,30770903 +) +(1,20991:6764466,31455758:25818563,424439,112852 +h1,20991:6764466,31455758:0,0,0 +g1,20991:7096420,31455758 +g1,20991:7428374,31455758 +g1,20991:7760328,31455758 +g1,20991:8092282,31455758 +g1,20991:8424236,31455758 +g1,20991:8756190,31455758 +g1,20991:9088144,31455758 +g1,20991:11743776,31455758 +g1,20991:12407684,31455758 +g1,20991:15395270,31455758 +g1,20991:17055040,31455758 +h1,20991:17386994,31455758:0,0,0 +k1,20991:32583029,31455758:15196035 +g1,20991:32583029,31455758 +) +(1,20992:6764466,32140613:25818563,424439,112852 +h1,20992:6764466,32140613:0,0,0 +g1,20992:7096420,32140613 +g1,20992:7428374,32140613 +g1,20992:11743775,32140613 +h1,20992:12075729,32140613:0,0,0 +k1,20992:32583029,32140613:20507300 +g1,20992:32583029,32140613 +) +(1,20993:6764466,32825468:25818563,431045,112852 +h1,20993:6764466,32825468:0,0,0 +g1,20993:7096420,32825468 +g1,20993:7428374,32825468 +g1,20993:12739637,32825468 +g1,20993:13403545,32825468 +g1,20993:17718947,32825468 +g1,20993:20706532,32825468 +g1,20993:21370440,32825468 +h1,20993:25685841,32825468:0,0,0 +k1,20993:32583029,32825468:6897188 +g1,20993:32583029,32825468 +) +] +) +g1,20995:32583029,32938320 +g1,20995:6764466,32938320 +g1,20995:6764466,32938320 +g1,20995:32583029,32938320 +g1,20995:32583029,32938320 +) +h1,20995:6764466,33134928:0,0,0 +(1,20999:6764466,34000008:25818563,513147,134348 +h1,20998:6764466,34000008:983040,0,0 +k1,20998:9335724,34000008:391531 +k1,20998:11571438,34000008:391531 +k1,20998:12622261,34000008:391531 +k1,20998:14032876,34000008:391530 +k1,20998:16216817,34000008:391531 +k1,20998:17267640,34000008:391531 +k1,20998:18678256,34000008:391531 +k1,20998:20963777,34000008:391531 +k1,20998:22868534,34000008:391531 +k1,20998:23876103,34000008:391531 +k1,20998:26816329,34000008:391531 +k1,20998:28312141,34000008:391530 +k1,20998:29989488,34000008:391531 +k1,20998:31128785,34000008:391531 +k1,20999:32583029,34000008:0 +) +(1,20999:6764466,34865088:25818563,513147,134348 +k1,20998:8744644,34865088:195633 +k1,20998:10334229,34865088:195634 +k1,20998:10885722,34865088:195633 +k1,20998:14056034,34865088:195633 +k1,20998:16117478,34865088:195634 +k1,20998:19296965,34865088:195633 +k1,20998:21874833,34865088:195634 +k1,20998:22756628,34865088:195633 +k1,20998:26024589,34865088:195633 +k1,20998:26871651,34865088:195634 +(1,20998:26871651,34865088:0,452978,115847 +r1,21015:29691900,34865088:2820249,568825,115847 +k1,20998:26871651,34865088:-2820249 +) +(1,20998:26871651,34865088:2820249,452978,115847 +k1,20998:26871651,34865088:3277 +h1,20998:29688623,34865088:0,411205,112570 +) +k1,20998:29887533,34865088:195633 +k1,20999:32583029,34865088:0 +) +(1,20999:6764466,35730168:25818563,505283,134348 +(1,20998:6764466,35730168:0,452978,115847 +r1,21015:11694986,35730168:4930520,568825,115847 +k1,20998:6764466,35730168:-4930520 +) +(1,20998:6764466,35730168:4930520,452978,115847 +k1,20998:6764466,35730168:3277 +h1,20998:11691709,35730168:0,411205,112570 +) +k1,20998:11894312,35730168:199326 +k1,20998:13285083,35730168:199326 +k1,20998:15219803,35730168:199327 +k1,20998:15774989,35730168:199326 +k1,20998:18899187,35730168:199326 +k1,20998:22538498,35730168:199326 +k1,20998:23423986,35730168:199326 +k1,20998:24411710,35730168:199326 +k1,20998:27683365,35730168:199327 +k1,20998:29928725,35730168:199326 +k1,20998:31331292,35730168:199326 +k1,20999:32583029,35730168:0 +) +(1,20999:6764466,36595248:25818563,513147,126483 +k1,20998:8670022,36595248:247495 +k1,20998:9967404,36595248:247495 +k1,20998:12493587,36595248:247496 +h1,20998:13862634,36595248:0,0,0 +k1,20998:14110129,36595248:247495 +k1,20998:15305275,36595248:247495 +k1,20998:16323473,36595248:247495 +k1,20998:19232385,36595248:247495 +k1,20998:20139172,36595248:247495 +k1,20998:21405752,36595248:247495 +k1,20998:22745733,36595248:247496 +k1,20998:23660384,36595248:247495 +(1,20998:23660384,36595248:0,452978,115847 +r1,21015:26480633,36595248:2820249,568825,115847 +k1,20998:23660384,36595248:-2820249 +) +(1,20998:23660384,36595248:2820249,452978,115847 +k1,20998:23660384,36595248:3277 +h1,20998:26477356,36595248:0,411205,112570 +) +k1,20998:26901798,36595248:247495 +k1,20998:28168378,36595248:247495 +k1,20998:28830668,36595248:247447 +k1,20998:31773659,36595248:247495 +k1,20998:32583029,36595248:0 +) +(1,20999:6764466,37460328:25818563,505283,115847 +g1,20998:8822952,37460328 +(1,20998:8822952,37460328:0,452978,115847 +r1,21015:13753472,37460328:4930520,568825,115847 +k1,20998:8822952,37460328:-4930520 +) +(1,20998:8822952,37460328:4930520,452978,115847 +k1,20998:8822952,37460328:3277 +h1,20998:13750195,37460328:0,411205,112570 +) +g1,20998:14126371,37460328 +g1,20998:14857097,37460328 +k1,20999:32583029,37460328:16195011 +g1,20999:32583029,37460328 +) +v1,21001:6764466,38145183:0,393216,0 +(1,21007:6764466,39848970:25818563,2097003,196608 +g1,21007:6764466,39848970 +g1,21007:6764466,39848970 +g1,21007:6567858,39848970 +(1,21007:6567858,39848970:0,2097003,196608 +r1,21015:32779637,39848970:26211779,2293611,196608 +k1,21007:6567857,39848970:-26211780 +) +(1,21007:6567858,39848970:26211779,2097003,196608 +[1,21007:6764466,39848970:25818563,1900395,0 +(1,21003:6764466,38373014:25818563,424439,106246 +(1,21002:6764466,38373014:0,0,0 +g1,21002:6764466,38373014 +g1,21002:6764466,38373014 +g1,21002:6436786,38373014 +(1,21002:6436786,38373014:0,0,0 +) +g1,21002:6764466,38373014 +) +g1,21003:9088144,38373014 +h1,21003:9420098,38373014:0,0,0 +k1,21003:32583030,38373014:23162932 +g1,21003:32583030,38373014 +) +(1,21004:6764466,39057869:25818563,431045,112852 +h1,21004:6764466,39057869:0,0,0 +g1,21004:7096420,39057869 +g1,21004:7428374,39057869 +g1,21004:12739637,39057869 +g1,21004:13403545,39057869 +k1,21004:13403545,39057869:0 +h1,21004:16723085,39057869:0,0,0 +k1,21004:32583029,39057869:15859944 +g1,21004:32583029,39057869 +) +(1,21005:6764466,39742724:25818563,424439,106246 +h1,21005:6764466,39742724:0,0,0 +g1,21005:7096420,39742724 +g1,21005:7428374,39742724 +g1,21005:7760328,39742724 +g1,21005:8092282,39742724 +g1,21005:8424236,39742724 +g1,21005:8756190,39742724 +g1,21005:9088144,39742724 +g1,21005:9420098,39742724 +g1,21005:9752052,39742724 +g1,21005:10084006,39742724 +g1,21005:10415960,39742724 +g1,21005:10747914,39742724 +g1,21005:11079868,39742724 +g1,21005:14067453,39742724 +g1,21005:14731361,39742724 +g1,21005:20706532,39742724 +g1,21005:21370440,39742724 +k1,21005:21370440,39742724:0 +h1,21005:28009519,39742724:0,0,0 +k1,21005:32583029,39742724:4573510 +g1,21005:32583029,39742724 +) +] +) +g1,21007:32583029,39848970 +g1,21007:6764466,39848970 +g1,21007:6764466,39848970 +g1,21007:32583029,39848970 +g1,21007:32583029,39848970 +) +h1,21007:6764466,40045578:0,0,0 +] +g1,21015:32583029,40045578 +) +] +(1,21015:32583029,45706769:0,0,0 +g1,21015:32583029,45706769 +) +) +] +(1,21015:6630773,47279633:25952256,0,0 +h1,21015:6630773,47279633:25952256,0,0 +) +] +(1,21015:4262630,4025873:0,0,0 +[1,21015:-473656,4025873:0,0,0 +(1,21015:-473656,-710413:0,0,0 +(1,21015:-473656,-710413:0,0,0 +g1,21015:-473656,-710413 +) +g1,21015:-473656,-710413 ) ] ) ] !21230 -}353 -Input:3813:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3814:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3815:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3816:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}354 Input:3817:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3818:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3819:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -363658,1945 +363862,1945 @@ Input:3835:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3836:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3837:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3838:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3839:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3840:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3841:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3842:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2404 -{354 -[1,21105:4262630,47279633:28320399,43253760,0 -(1,21105:4262630,4025873:0,0,0 -[1,21105:-473656,4025873:0,0,0 -(1,21105:-473656,-710413:0,0,0 -(1,21105:-473656,-644877:0,0,0 -k1,21105:-473656,-644877:-65536 +{355 +[1,21103:4262630,47279633:28320399,43253760,0 +(1,21103:4262630,4025873:0,0,0 +[1,21103:-473656,4025873:0,0,0 +(1,21103:-473656,-710413:0,0,0 +(1,21103:-473656,-644877:0,0,0 +k1,21103:-473656,-644877:-65536 ) -(1,21105:-473656,4736287:0,0,0 -k1,21105:-473656,4736287:5209943 +(1,21103:-473656,4736287:0,0,0 +k1,21103:-473656,4736287:5209943 ) -g1,21105:-473656,-710413 +g1,21103:-473656,-710413 ) ] ) -[1,21105:6630773,47279633:25952256,43253760,0 -[1,21105:6630773,4812305:25952256,786432,0 -(1,21105:6630773,4812305:25952256,485622,11795 -(1,21105:6630773,4812305:25952256,485622,11795 -g1,21105:3078558,4812305 -[1,21105:3078558,4812305:0,0,0 -(1,21105:3078558,2439708:0,1703936,0 -k1,21105:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21105:2537886,2439708:1179648,16384,0 +[1,21103:6630773,47279633:25952256,43253760,0 +[1,21103:6630773,4812305:25952256,786432,0 +(1,21103:6630773,4812305:25952256,485622,11795 +(1,21103:6630773,4812305:25952256,485622,11795 +g1,21103:3078558,4812305 +[1,21103:3078558,4812305:0,0,0 +(1,21103:3078558,2439708:0,1703936,0 +k1,21103:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21103:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21105:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21103:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21105:3078558,4812305:0,0,0 -(1,21105:3078558,2439708:0,1703936,0 -g1,21105:29030814,2439708 -g1,21105:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21105:36151628,1915420:16384,1179648,0 +[1,21103:3078558,4812305:0,0,0 +(1,21103:3078558,2439708:0,1703936,0 +g1,21103:29030814,2439708 +g1,21103:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21103:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21105:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21103:37855564,2439708:1179648,16384,0 ) ) -k1,21105:3078556,2439708:-34777008 +k1,21103:3078556,2439708:-34777008 ) ] -[1,21105:3078558,4812305:0,0,0 -(1,21105:3078558,49800853:0,16384,2228224 -k1,21105:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21105:2537886,49800853:1179648,16384,0 +[1,21103:3078558,4812305:0,0,0 +(1,21103:3078558,49800853:0,16384,2228224 +k1,21103:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21103:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21105:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21103:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21105:3078558,4812305:0,0,0 -(1,21105:3078558,49800853:0,16384,2228224 -g1,21105:29030814,49800853 -g1,21105:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21105:36151628,51504789:16384,1179648,0 +[1,21103:3078558,4812305:0,0,0 +(1,21103:3078558,49800853:0,16384,2228224 +g1,21103:29030814,49800853 +g1,21103:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21103:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21105:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21103:37855564,49800853:1179648,16384,0 ) ) -k1,21105:3078556,49800853:-34777008 +k1,21103:3078556,49800853:-34777008 ) ] -g1,21105:6630773,4812305 -g1,21105:6630773,4812305 -g1,21105:9545159,4812305 -k1,21105:31387651,4812305:21842492 +g1,21103:6630773,4812305 +g1,21103:6630773,4812305 +g1,21103:9545159,4812305 +k1,21103:31387651,4812305:21842492 ) ) ] -[1,21105:6630773,45706769:25952256,40108032,0 -(1,21105:6630773,45706769:25952256,40108032,0 -(1,21105:6630773,45706769:0,0,0 -g1,21105:6630773,45706769 +[1,21103:6630773,45706769:25952256,40108032,0 +(1,21103:6630773,45706769:25952256,40108032,0 +(1,21103:6630773,45706769:0,0,0 +g1,21103:6630773,45706769 ) -[1,21105:6630773,45706769:25952256,40108032,0 -v1,21017:6630773,6254097:0,393216,0 -(1,21017:6630773,14897716:25952256,9036835,0 -g1,21017:6630773,14897716 -g1,21017:6237557,14897716 -r1,21105:6368629,14897716:131072,9036835,0 -g1,21017:6567858,14897716 -g1,21017:6764466,14897716 -[1,21017:6764466,14897716:25818563,9036835,0 -(1,21012:6764466,14897716:25818563,9036835,0 -k1,21012:10637290,14897716:3872824 -h1,21011:10637290,14897716:0,0,0 -(1,21011:10637290,14897716:18072915,9036835,0 -(1,21011:10637290,14897716:18073715,9036857,0 -(1,21011:10637290,14897716:18073715,9036857,0 -(1,21011:10637290,14897716:0,9036857,0 -(1,21011:10637290,14897716:0,14208860,0 -(1,21011:10637290,14897716:28417720,14208860,0 +[1,21103:6630773,45706769:25952256,40108032,0 +v1,21015:6630773,6254097:0,393216,0 +(1,21015:6630773,14897716:25952256,9036835,0 +g1,21015:6630773,14897716 +g1,21015:6237557,14897716 +r1,21103:6368629,14897716:131072,9036835,0 +g1,21015:6567858,14897716 +g1,21015:6764466,14897716 +[1,21015:6764466,14897716:25818563,9036835,0 +(1,21010:6764466,14897716:25818563,9036835,0 +k1,21010:10637290,14897716:3872824 +h1,21009:10637290,14897716:0,0,0 +(1,21009:10637290,14897716:18072915,9036835,0 +(1,21009:10637290,14897716:18073715,9036857,0 +(1,21009:10637290,14897716:18073715,9036857,0 +(1,21009:10637290,14897716:0,9036857,0 +(1,21009:10637290,14897716:0,14208860,0 +(1,21009:10637290,14897716:28417720,14208860,0 ) -k1,21011:10637290,14897716:-28417720 +k1,21009:10637290,14897716:-28417720 ) ) -g1,21011:28711005,14897716 +g1,21009:28711005,14897716 ) ) ) -g1,21012:28710205,14897716 -k1,21012:32583029,14897716:3872824 +g1,21010:28710205,14897716 +k1,21010:32583029,14897716:3872824 ) ] -g1,21017:32583029,14897716 +g1,21015:32583029,14897716 ) -h1,21017:6630773,14897716:0,0,0 -(1,21021:6630773,17728876:25952256,32768,229376 -(1,21021:6630773,17728876:0,32768,229376 -(1,21021:6630773,17728876:5505024,32768,229376 -r1,21105:12135797,17728876:5505024,262144,229376 +h1,21015:6630773,14897716:0,0,0 +(1,21019:6630773,17728876:25952256,32768,229376 +(1,21019:6630773,17728876:0,32768,229376 +(1,21019:6630773,17728876:5505024,32768,229376 +r1,21103:12135797,17728876:5505024,262144,229376 ) -k1,21021:6630773,17728876:-5505024 -) -(1,21021:6630773,17728876:25952256,32768,0 -r1,21105:32583029,17728876:25952256,32768,0 -) -) -(1,21021:6630773,19360728:25952256,606339,14155 -(1,21021:6630773,19360728:1974731,582746,14155 -g1,21021:6630773,19360728 -g1,21021:8605504,19360728 -) -k1,21021:32583029,19360728:20368588 -g1,21021:32583029,19360728 -) -(1,21026:6630773,20619024:25952256,513147,134348 -k1,21025:9455749,20619024:255965 -k1,21025:12737512,20619024:255966 -k1,21025:13985037,20619024:255965 -k1,21025:16446289,20619024:255965 -k1,21025:17388417,20619024:255966 -k1,21025:21047011,20619024:255965 -k1,21025:21954405,20619024:255966 -k1,21025:23229455,20619024:255965 -(1,21025:23229455,20619024:0,452978,115847 -r1,21105:26049704,20619024:2820249,568825,115847 -k1,21025:23229455,20619024:-2820249 -) -(1,21025:23229455,20619024:2820249,452978,115847 -k1,21025:23229455,20619024:3277 -h1,21025:26046427,20619024:0,411205,112570 -) -k1,21025:26305669,20619024:255965 -k1,21025:29842367,20619024:255966 -k1,21025:30765488,20619024:255965 -(1,21025:30765488,20619024:0,414482,122846 -r1,21105:32530601,20619024:1765113,537328,122846 -k1,21025:30765488,20619024:-1765113 -) -(1,21025:30765488,20619024:1765113,414482,122846 -k1,21025:30765488,20619024:3277 -h1,21025:32527324,20619024:0,411205,112570 -) -k1,21025:32583029,20619024:0 -) -(1,21026:6630773,21484104:25952256,505283,126483 -k1,21025:8456970,21484104:290033 -k1,21025:11361889,21484104:290032 -k1,21025:12671007,21484104:290033 -k1,21025:15905572,21484104:290032 -k1,21025:17421784,21484104:290033 -k1,21025:19722461,21484104:290032 -k1,21025:22597889,21484104:290033 -k1,21025:23539349,21484104:290032 -(1,21025:23539349,21484104:0,414482,115847 -r1,21105:23897615,21484104:358266,530329,115847 -k1,21025:23539349,21484104:-358266 -) -(1,21025:23539349,21484104:358266,414482,115847 -k1,21025:23539349,21484104:3277 -h1,21025:23894338,21484104:0,411205,112570 -) -k1,21025:24187648,21484104:290033 -k1,21025:26687554,21484104:290032 -(1,21025:26687554,21484104:0,414482,115847 -r1,21105:27045820,21484104:358266,530329,115847 -k1,21025:26687554,21484104:-358266 -) -(1,21025:26687554,21484104:358266,414482,115847 -k1,21025:26687554,21484104:3277 -h1,21025:27042543,21484104:0,411205,112570 -) -k1,21025:27335853,21484104:290033 -k1,21025:31007543,21484104:290032 -k1,21025:32583029,21484104:0 -) -(1,21026:6630773,22349184:25952256,513147,134348 -k1,21025:8452280,22349184:253886 -k1,21025:10214806,22349184:253887 -k1,21025:12904010,22349184:253886 -k1,21025:15945798,22349184:253886 -k1,21025:19044603,22349184:253887 -k1,21025:21912720,22349184:253886 -k1,21025:25192403,22349184:253886 -k1,21025:27189547,22349184:253886 -k1,21025:28059472,22349184:253887 -k1,21025:29861974,22349184:253886 -k1,21026:32583029,22349184:0 -) -(1,21026:6630773,23214264:25952256,513147,126483 -k1,21025:8480745,23214264:210917 -k1,21025:9223158,23214264:210916 -k1,21025:11979493,23214264:210917 -k1,21025:13933668,23214264:210917 -h1,21025:14904256,23214264:0,0,0 -k1,21025:15115172,23214264:210916 -k1,21025:16649916,23214264:210917 -k1,21025:18462533,23214264:210917 -k1,21025:19332741,23214264:210916 -k1,21025:20562743,23214264:210917 -k1,21025:23387891,23214264:210917 -k1,21025:26624604,23214264:210916 -k1,21025:29793161,23214264:210917 -k1,21026:32583029,23214264:0 -) -(1,21026:6630773,24079344:25952256,505283,134348 -(1,21025:6630773,24079344:0,452978,115847 -r1,21105:12264716,24079344:5633943,568825,115847 -k1,21025:6630773,24079344:-5633943 -) -(1,21025:6630773,24079344:5633943,452978,115847 -k1,21025:6630773,24079344:3277 -h1,21025:12261439,24079344:0,411205,112570 -) -k1,21025:12469788,24079344:205072 -k1,21025:13866305,24079344:205072 -(1,21025:13866305,24079344:0,459977,115847 -r1,21105:19148536,24079344:5282231,575824,115847 -k1,21025:13866305,24079344:-5282231 -) -(1,21025:13866305,24079344:5282231,459977,115847 -k1,21025:13866305,24079344:3277 -h1,21025:19145259,24079344:0,411205,112570 -) -k1,21025:19353609,24079344:205073 -k1,21025:21062732,24079344:205072 -k1,21025:23602196,24079344:205072 -k1,21025:26897291,24079344:205072 -k1,21025:27911734,24079344:205073 -k1,21025:29614959,24079344:205072 -h1,21025:30810336,24079344:0,0,0 -k1,21025:31189078,24079344:205072 -k1,21025:32583029,24079344:0 -) -(1,21026:6630773,24944424:25952256,505283,126483 -k1,21025:9235072,24944424:167015 -k1,21025:11997967,24944424:167014 -k1,21025:13356427,24944424:167015 -k1,21025:14870861,24944424:167014 -k1,21025:16819145,24944424:167015 -k1,21025:19776027,24944424:167014 -(1,21025:19776027,24944424:0,452978,122846 -r1,21105:25409970,24944424:5633943,575824,122846 -k1,21025:19776027,24944424:-5633943 -) -(1,21025:19776027,24944424:5633943,452978,122846 -k1,21025:19776027,24944424:3277 -h1,21025:25406693,24944424:0,411205,112570 -) -k1,21025:25576985,24944424:167015 -k1,21025:26951172,24944424:167014 -k1,21025:28631413,24944424:167015 -k1,21025:29414465,24944424:167014 -k1,21025:31189078,24944424:167015 -k1,21025:32583029,24944424:0 -) -(1,21026:6630773,25809504:25952256,505283,134348 -k1,21025:10698033,25809504:280590 -k1,21025:13691814,25809504:280590 -k1,21025:14781775,25809504:280591 -k1,21025:16560518,25809504:280590 -h1,21025:17755895,25809504:0,0,0 -k1,21025:18036485,25809504:280590 -k1,21025:19508520,25809504:280590 -(1,21025:19508520,25809504:0,452978,122846 -r1,21105:25494175,25809504:5985655,575824,122846 -k1,21025:19508520,25809504:-5985655 -) -(1,21025:19508520,25809504:5985655,452978,122846 -k1,21025:19508520,25809504:3277 -h1,21025:25490898,25809504:0,411205,112570 -) -k1,21025:25774765,25809504:280590 -k1,21025:27262528,25809504:280590 -k1,21025:29056345,25809504:280591 -k1,21025:29952973,25809504:280590 -k1,21025:31305732,25809504:280590 -k1,21025:32583029,25809504:0 -) -(1,21026:6630773,26674584:25952256,505283,134348 -g1,21025:9821721,26674584 -g1,21025:10830320,26674584 -g1,21025:12527702,26674584 -h1,21025:13723079,26674584:0,0,0 -k1,21026:32583029,26674584:18807522 -g1,21026:32583029,26674584 -) -(1,21068:6630773,27539664:25952256,513147,126483 -h1,21067:6630773,27539664:983040,0,0 -k1,21067:8971247,27539664:160747 -k1,21067:12318353,27539664:160746 -k1,21067:15114303,27539664:160747 -(1,21067:15114303,27539664:0,452978,115847 -r1,21105:20748246,27539664:5633943,568825,115847 -k1,21067:15114303,27539664:-5633943 -) -(1,21067:15114303,27539664:5633943,452978,115847 -k1,21067:15114303,27539664:3277 -h1,21067:20744969,27539664:0,411205,112570 -) -k1,21067:20908993,27539664:160747 -k1,21067:22261185,27539664:160747 -(1,21067:22261185,27539664:0,459977,115847 -r1,21105:27543416,27539664:5282231,575824,115847 -k1,21067:22261185,27539664:-5282231 -) -(1,21067:22261185,27539664:5282231,459977,115847 -k1,21067:22261185,27539664:3277 -h1,21067:27540139,27539664:0,411205,112570 -) -k1,21067:27704162,27539664:160746 -k1,21067:28396406,27539664:160747 -k1,21067:31839851,27539664:160747 -k1,21067:32583029,27539664:0 -) -(1,21068:6630773,28404744:25952256,505283,126483 -g1,21067:7849087,28404744 -g1,21067:10709733,28404744 -k1,21068:32583029,28404744:19952436 -g1,21068:32583029,28404744 -) -v1,21070:6630773,29089599:0,393216,0 -(1,21076:6630773,30799992:25952256,2103609,196608 -g1,21076:6630773,30799992 -g1,21076:6630773,30799992 -g1,21076:6434165,30799992 -(1,21076:6434165,30799992:0,2103609,196608 -r1,21105:32779637,30799992:26345472,2300217,196608 -k1,21076:6434165,30799992:-26345472 -) -(1,21076:6434165,30799992:26345472,2103609,196608 -[1,21076:6630773,30799992:25952256,1907001,0 -(1,21072:6630773,29317430:25952256,424439,106246 -(1,21071:6630773,29317430:0,0,0 -g1,21071:6630773,29317430 -g1,21071:6630773,29317430 -g1,21071:6303093,29317430 -(1,21071:6303093,29317430:0,0,0 -) -g1,21071:6630773,29317430 -) -g1,21072:8954451,29317430 -k1,21072:8954451,29317430:0 -h1,21072:9618359,29317430:0,0,0 -k1,21072:32583029,29317430:22964670 -g1,21072:32583029,29317430 -) -(1,21073:6630773,30002285:25952256,424439,112852 -h1,21073:6630773,30002285:0,0,0 -g1,21073:6962727,30002285 -g1,21073:7294681,30002285 -g1,21073:11278129,30002285 -g1,21073:11942037,30002285 -k1,21073:11942037,30002285:0 -h1,21073:14265715,30002285:0,0,0 -k1,21073:32583029,30002285:18317314 -g1,21073:32583029,30002285 -) -(1,21074:6630773,30687140:25952256,431045,112852 -h1,21074:6630773,30687140:0,0,0 -g1,21074:6962727,30687140 -g1,21074:7294681,30687140 -g1,21074:7626635,30687140 -g1,21074:7958589,30687140 -g1,21074:8290543,30687140 -g1,21074:8622497,30687140 -g1,21074:8954451,30687140 -g1,21074:9286405,30687140 -g1,21074:9618359,30687140 -g1,21074:12273991,30687140 -g1,21074:12937899,30687140 -g1,21074:14929623,30687140 -g1,21074:15593531,30687140 -g1,21074:17253301,30687140 -g1,21074:17917209,30687140 -g1,21074:18581117,30687140 -g1,21074:23560426,30687140 -g1,21074:25220196,30687140 -g1,21074:25884104,30687140 -h1,21074:27875828,30687140:0,0,0 -k1,21074:32583029,30687140:4707201 -g1,21074:32583029,30687140 -) -] -) -g1,21076:32583029,30799992 -g1,21076:6630773,30799992 -g1,21076:6630773,30799992 -g1,21076:32583029,30799992 -g1,21076:32583029,30799992 -) -h1,21076:6630773,30996600:0,0,0 -v1,21080:6630773,31681455:0,393216,0 -(1,21087:6630773,34076703:25952256,2788464,196608 -g1,21087:6630773,34076703 -g1,21087:6630773,34076703 -g1,21087:6434165,34076703 -(1,21087:6434165,34076703:0,2788464,196608 -r1,21105:32779637,34076703:26345472,2985072,196608 -k1,21087:6434165,34076703:-26345472 -) -(1,21087:6434165,34076703:26345472,2788464,196608 -[1,21087:6630773,34076703:25952256,2591856,0 -(1,21082:6630773,31909286:25952256,424439,112852 -(1,21081:6630773,31909286:0,0,0 -g1,21081:6630773,31909286 -g1,21081:6630773,31909286 -g1,21081:6303093,31909286 -(1,21081:6303093,31909286:0,0,0 -) -g1,21081:6630773,31909286 -) -k1,21082:7605704,31909286:311023 -k1,21082:8580634,31909286:311022 -k1,21082:10883381,31909286:311023 -k1,21082:11526358,31909286:311023 -k1,21082:17812550,31909286:311022 -k1,21082:18455527,31909286:311023 -k1,21082:21422182,31909286:311023 -k1,21082:23724929,31909286:311023 -k1,21082:24367905,31909286:311022 -k1,21082:27334560,31909286:311023 -k1,21082:30633168,31909286:311023 -k1,21082:31276144,31909286:311022 -k1,21082:32251075,31909286:311023 -h1,21082:32583029,31909286:0,0,0 -k1,21082:32583029,31909286:0 -k1,21082:32583029,31909286:0 -) -(1,21083:6630773,32594141:25952256,424439,112852 -h1,21083:6630773,32594141:0,0,0 -g1,21083:6962727,32594141 -g1,21083:7294681,32594141 -k1,21083:7294681,32594141:0 -h1,21083:12605945,32594141:0,0,0 -k1,21083:32583029,32594141:19977084 -g1,21083:32583029,32594141 -) -(1,21084:6630773,33278996:25952256,431045,112852 -h1,21084:6630773,33278996:0,0,0 -g1,21084:7626635,33278996 -g1,21084:8622497,33278996 -g1,21084:10946175,33278996 -g1,21084:11610083,33278996 -g1,21084:17917207,33278996 -g1,21084:18581115,33278996 -g1,21084:21236747,33278996 -g1,21084:23560425,33278996 -g1,21084:24224333,33278996 -g1,21084:27211919,33278996 -g1,21084:30531458,33278996 -g1,21084:31195366,33278996 -g1,21084:32191228,33278996 -h1,21084:32523182,33278996:0,0,0 -k1,21084:32583029,33278996:59847 -g1,21084:32583029,33278996 -) -(1,21085:6630773,33963851:25952256,431045,112852 -h1,21085:6630773,33963851:0,0,0 -g1,21085:6962727,33963851 -g1,21085:7294681,33963851 -k1,21085:7294681,33963851:0 -h1,21085:12273991,33963851:0,0,0 -k1,21085:32583029,33963851:20309038 -g1,21085:32583029,33963851 -) -] -) -g1,21087:32583029,34076703 -g1,21087:6630773,34076703 -g1,21087:6630773,34076703 -g1,21087:32583029,34076703 -g1,21087:32583029,34076703 -) -h1,21087:6630773,34273311:0,0,0 -v1,21091:6630773,34958166:0,393216,0 -(1,21095:6630773,35275727:25952256,710777,196608 -g1,21095:6630773,35275727 -g1,21095:6630773,35275727 -g1,21095:6434165,35275727 -(1,21095:6434165,35275727:0,710777,196608 -r1,21105:32779637,35275727:26345472,907385,196608 -k1,21095:6434165,35275727:-26345472 -) -(1,21095:6434165,35275727:26345472,710777,196608 -[1,21095:6630773,35275727:25952256,514169,0 -(1,21093:6630773,35169481:25952256,407923,106246 -(1,21092:6630773,35169481:0,0,0 -g1,21092:6630773,35169481 -g1,21092:6630773,35169481 -g1,21092:6303093,35169481 -(1,21092:6303093,35169481:0,0,0 -) -g1,21092:6630773,35169481 -) -g1,21093:7626635,35169481 -g1,21093:8290543,35169481 -h1,21093:8954451,35169481:0,0,0 -k1,21093:32583029,35169481:23628578 -g1,21093:32583029,35169481 -) -] -) -g1,21095:32583029,35275727 -g1,21095:6630773,35275727 -g1,21095:6630773,35275727 -g1,21095:32583029,35275727 -g1,21095:32583029,35275727 -) -h1,21095:6630773,35472335:0,0,0 -(1,21098:6630773,45172666:25952256,9634795,0 -k1,21098:6760463,45172666:129690 -h1,21097:6760463,45172666:0,0,0 -(1,21097:6760463,45172666:25692876,9634795,0 -(1,21097:6760463,45172666:25692851,9634819,0 -(1,21097:6760463,45172666:25692851,9634819,0 -(1,21097:6760463,45172666:0,9634819,0 -(1,21097:6760463,45172666:0,14208860,0 -(1,21097:6760463,45172666:37890292,14208860,0 -) -k1,21097:6760463,45172666:-37890292 +k1,21019:6630773,17728876:-5505024 +) +(1,21019:6630773,17728876:25952256,32768,0 +r1,21103:32583029,17728876:25952256,32768,0 +) +) +(1,21019:6630773,19360728:25952256,606339,14155 +(1,21019:6630773,19360728:1974731,582746,14155 +g1,21019:6630773,19360728 +g1,21019:8605504,19360728 +) +k1,21019:32583029,19360728:20368588 +g1,21019:32583029,19360728 +) +(1,21024:6630773,20619024:25952256,513147,134348 +k1,21023:9455749,20619024:255965 +k1,21023:12737512,20619024:255966 +k1,21023:13985037,20619024:255965 +k1,21023:16446289,20619024:255965 +k1,21023:17388417,20619024:255966 +k1,21023:21047011,20619024:255965 +k1,21023:21954405,20619024:255966 +k1,21023:23229455,20619024:255965 +(1,21023:23229455,20619024:0,452978,115847 +r1,21103:26049704,20619024:2820249,568825,115847 +k1,21023:23229455,20619024:-2820249 +) +(1,21023:23229455,20619024:2820249,452978,115847 +k1,21023:23229455,20619024:3277 +h1,21023:26046427,20619024:0,411205,112570 +) +k1,21023:26305669,20619024:255965 +k1,21023:29842367,20619024:255966 +k1,21023:30765488,20619024:255965 +(1,21023:30765488,20619024:0,414482,122846 +r1,21103:32530601,20619024:1765113,537328,122846 +k1,21023:30765488,20619024:-1765113 +) +(1,21023:30765488,20619024:1765113,414482,122846 +k1,21023:30765488,20619024:3277 +h1,21023:32527324,20619024:0,411205,112570 +) +k1,21023:32583029,20619024:0 +) +(1,21024:6630773,21484104:25952256,505283,126483 +k1,21023:8456970,21484104:290033 +k1,21023:11361889,21484104:290032 +k1,21023:12671007,21484104:290033 +k1,21023:15905572,21484104:290032 +k1,21023:17421784,21484104:290033 +k1,21023:19722461,21484104:290032 +k1,21023:22597889,21484104:290033 +k1,21023:23539349,21484104:290032 +(1,21023:23539349,21484104:0,414482,115847 +r1,21103:23897615,21484104:358266,530329,115847 +k1,21023:23539349,21484104:-358266 +) +(1,21023:23539349,21484104:358266,414482,115847 +k1,21023:23539349,21484104:3277 +h1,21023:23894338,21484104:0,411205,112570 +) +k1,21023:24187648,21484104:290033 +k1,21023:26687554,21484104:290032 +(1,21023:26687554,21484104:0,414482,115847 +r1,21103:27045820,21484104:358266,530329,115847 +k1,21023:26687554,21484104:-358266 +) +(1,21023:26687554,21484104:358266,414482,115847 +k1,21023:26687554,21484104:3277 +h1,21023:27042543,21484104:0,411205,112570 +) +k1,21023:27335853,21484104:290033 +k1,21023:31007543,21484104:290032 +k1,21023:32583029,21484104:0 +) +(1,21024:6630773,22349184:25952256,513147,134348 +k1,21023:8452280,22349184:253886 +k1,21023:10214806,22349184:253887 +k1,21023:12904010,22349184:253886 +k1,21023:15945798,22349184:253886 +k1,21023:19044603,22349184:253887 +k1,21023:21912720,22349184:253886 +k1,21023:25192403,22349184:253886 +k1,21023:27189547,22349184:253886 +k1,21023:28059472,22349184:253887 +k1,21023:29861974,22349184:253886 +k1,21024:32583029,22349184:0 +) +(1,21024:6630773,23214264:25952256,513147,126483 +k1,21023:8480745,23214264:210917 +k1,21023:9223158,23214264:210916 +k1,21023:11979493,23214264:210917 +k1,21023:13933668,23214264:210917 +h1,21023:14904256,23214264:0,0,0 +k1,21023:15115172,23214264:210916 +k1,21023:16649916,23214264:210917 +k1,21023:18462533,23214264:210917 +k1,21023:19332741,23214264:210916 +k1,21023:20562743,23214264:210917 +k1,21023:23387891,23214264:210917 +k1,21023:26624604,23214264:210916 +k1,21023:29793161,23214264:210917 +k1,21024:32583029,23214264:0 +) +(1,21024:6630773,24079344:25952256,505283,134348 +(1,21023:6630773,24079344:0,452978,115847 +r1,21103:12264716,24079344:5633943,568825,115847 +k1,21023:6630773,24079344:-5633943 +) +(1,21023:6630773,24079344:5633943,452978,115847 +k1,21023:6630773,24079344:3277 +h1,21023:12261439,24079344:0,411205,112570 +) +k1,21023:12469788,24079344:205072 +k1,21023:13866305,24079344:205072 +(1,21023:13866305,24079344:0,459977,115847 +r1,21103:19148536,24079344:5282231,575824,115847 +k1,21023:13866305,24079344:-5282231 +) +(1,21023:13866305,24079344:5282231,459977,115847 +k1,21023:13866305,24079344:3277 +h1,21023:19145259,24079344:0,411205,112570 +) +k1,21023:19353609,24079344:205073 +k1,21023:21062732,24079344:205072 +k1,21023:23602196,24079344:205072 +k1,21023:26897291,24079344:205072 +k1,21023:27911734,24079344:205073 +k1,21023:29614959,24079344:205072 +h1,21023:30810336,24079344:0,0,0 +k1,21023:31189078,24079344:205072 +k1,21023:32583029,24079344:0 +) +(1,21024:6630773,24944424:25952256,505283,126483 +k1,21023:9235072,24944424:167015 +k1,21023:11997967,24944424:167014 +k1,21023:13356427,24944424:167015 +k1,21023:14870861,24944424:167014 +k1,21023:16819145,24944424:167015 +k1,21023:19776027,24944424:167014 +(1,21023:19776027,24944424:0,452978,122846 +r1,21103:25409970,24944424:5633943,575824,122846 +k1,21023:19776027,24944424:-5633943 +) +(1,21023:19776027,24944424:5633943,452978,122846 +k1,21023:19776027,24944424:3277 +h1,21023:25406693,24944424:0,411205,112570 +) +k1,21023:25576985,24944424:167015 +k1,21023:26951172,24944424:167014 +k1,21023:28631413,24944424:167015 +k1,21023:29414465,24944424:167014 +k1,21023:31189078,24944424:167015 +k1,21023:32583029,24944424:0 +) +(1,21024:6630773,25809504:25952256,505283,134348 +k1,21023:10698033,25809504:280590 +k1,21023:13691814,25809504:280590 +k1,21023:14781775,25809504:280591 +k1,21023:16560518,25809504:280590 +h1,21023:17755895,25809504:0,0,0 +k1,21023:18036485,25809504:280590 +k1,21023:19508520,25809504:280590 +(1,21023:19508520,25809504:0,452978,122846 +r1,21103:25494175,25809504:5985655,575824,122846 +k1,21023:19508520,25809504:-5985655 +) +(1,21023:19508520,25809504:5985655,452978,122846 +k1,21023:19508520,25809504:3277 +h1,21023:25490898,25809504:0,411205,112570 +) +k1,21023:25774765,25809504:280590 +k1,21023:27262528,25809504:280590 +k1,21023:29056345,25809504:280591 +k1,21023:29952973,25809504:280590 +k1,21023:31305732,25809504:280590 +k1,21023:32583029,25809504:0 +) +(1,21024:6630773,26674584:25952256,505283,134348 +g1,21023:9821721,26674584 +g1,21023:10830320,26674584 +g1,21023:12527702,26674584 +h1,21023:13723079,26674584:0,0,0 +k1,21024:32583029,26674584:18807522 +g1,21024:32583029,26674584 +) +(1,21066:6630773,27539664:25952256,513147,126483 +h1,21065:6630773,27539664:983040,0,0 +k1,21065:8971247,27539664:160747 +k1,21065:12318353,27539664:160746 +k1,21065:15114303,27539664:160747 +(1,21065:15114303,27539664:0,452978,115847 +r1,21103:20748246,27539664:5633943,568825,115847 +k1,21065:15114303,27539664:-5633943 +) +(1,21065:15114303,27539664:5633943,452978,115847 +k1,21065:15114303,27539664:3277 +h1,21065:20744969,27539664:0,411205,112570 +) +k1,21065:20908993,27539664:160747 +k1,21065:22261185,27539664:160747 +(1,21065:22261185,27539664:0,459977,115847 +r1,21103:27543416,27539664:5282231,575824,115847 +k1,21065:22261185,27539664:-5282231 +) +(1,21065:22261185,27539664:5282231,459977,115847 +k1,21065:22261185,27539664:3277 +h1,21065:27540139,27539664:0,411205,112570 +) +k1,21065:27704162,27539664:160746 +k1,21065:28396406,27539664:160747 +k1,21065:31839851,27539664:160747 +k1,21065:32583029,27539664:0 +) +(1,21066:6630773,28404744:25952256,505283,126483 +g1,21065:7849087,28404744 +g1,21065:10709733,28404744 +k1,21066:32583029,28404744:19952436 +g1,21066:32583029,28404744 +) +v1,21068:6630773,29089599:0,393216,0 +(1,21074:6630773,30799992:25952256,2103609,196608 +g1,21074:6630773,30799992 +g1,21074:6630773,30799992 +g1,21074:6434165,30799992 +(1,21074:6434165,30799992:0,2103609,196608 +r1,21103:32779637,30799992:26345472,2300217,196608 +k1,21074:6434165,30799992:-26345472 +) +(1,21074:6434165,30799992:26345472,2103609,196608 +[1,21074:6630773,30799992:25952256,1907001,0 +(1,21070:6630773,29317430:25952256,424439,106246 +(1,21069:6630773,29317430:0,0,0 +g1,21069:6630773,29317430 +g1,21069:6630773,29317430 +g1,21069:6303093,29317430 +(1,21069:6303093,29317430:0,0,0 +) +g1,21069:6630773,29317430 +) +g1,21070:8954451,29317430 +k1,21070:8954451,29317430:0 +h1,21070:9618359,29317430:0,0,0 +k1,21070:32583029,29317430:22964670 +g1,21070:32583029,29317430 +) +(1,21071:6630773,30002285:25952256,424439,112852 +h1,21071:6630773,30002285:0,0,0 +g1,21071:6962727,30002285 +g1,21071:7294681,30002285 +g1,21071:11278129,30002285 +g1,21071:11942037,30002285 +k1,21071:11942037,30002285:0 +h1,21071:14265715,30002285:0,0,0 +k1,21071:32583029,30002285:18317314 +g1,21071:32583029,30002285 +) +(1,21072:6630773,30687140:25952256,431045,112852 +h1,21072:6630773,30687140:0,0,0 +g1,21072:6962727,30687140 +g1,21072:7294681,30687140 +g1,21072:7626635,30687140 +g1,21072:7958589,30687140 +g1,21072:8290543,30687140 +g1,21072:8622497,30687140 +g1,21072:8954451,30687140 +g1,21072:9286405,30687140 +g1,21072:9618359,30687140 +g1,21072:12273991,30687140 +g1,21072:12937899,30687140 +g1,21072:14929623,30687140 +g1,21072:15593531,30687140 +g1,21072:17253301,30687140 +g1,21072:17917209,30687140 +g1,21072:18581117,30687140 +g1,21072:23560426,30687140 +g1,21072:25220196,30687140 +g1,21072:25884104,30687140 +h1,21072:27875828,30687140:0,0,0 +k1,21072:32583029,30687140:4707201 +g1,21072:32583029,30687140 +) +] +) +g1,21074:32583029,30799992 +g1,21074:6630773,30799992 +g1,21074:6630773,30799992 +g1,21074:32583029,30799992 +g1,21074:32583029,30799992 +) +h1,21074:6630773,30996600:0,0,0 +v1,21078:6630773,31681455:0,393216,0 +(1,21085:6630773,34076703:25952256,2788464,196608 +g1,21085:6630773,34076703 +g1,21085:6630773,34076703 +g1,21085:6434165,34076703 +(1,21085:6434165,34076703:0,2788464,196608 +r1,21103:32779637,34076703:26345472,2985072,196608 +k1,21085:6434165,34076703:-26345472 +) +(1,21085:6434165,34076703:26345472,2788464,196608 +[1,21085:6630773,34076703:25952256,2591856,0 +(1,21080:6630773,31909286:25952256,424439,112852 +(1,21079:6630773,31909286:0,0,0 +g1,21079:6630773,31909286 +g1,21079:6630773,31909286 +g1,21079:6303093,31909286 +(1,21079:6303093,31909286:0,0,0 +) +g1,21079:6630773,31909286 +) +k1,21080:7605704,31909286:311023 +k1,21080:8580634,31909286:311022 +k1,21080:10883381,31909286:311023 +k1,21080:11526358,31909286:311023 +k1,21080:17812550,31909286:311022 +k1,21080:18455527,31909286:311023 +k1,21080:21422182,31909286:311023 +k1,21080:23724929,31909286:311023 +k1,21080:24367905,31909286:311022 +k1,21080:27334560,31909286:311023 +k1,21080:30633168,31909286:311023 +k1,21080:31276144,31909286:311022 +k1,21080:32251075,31909286:311023 +h1,21080:32583029,31909286:0,0,0 +k1,21080:32583029,31909286:0 +k1,21080:32583029,31909286:0 +) +(1,21081:6630773,32594141:25952256,424439,112852 +h1,21081:6630773,32594141:0,0,0 +g1,21081:6962727,32594141 +g1,21081:7294681,32594141 +k1,21081:7294681,32594141:0 +h1,21081:12605945,32594141:0,0,0 +k1,21081:32583029,32594141:19977084 +g1,21081:32583029,32594141 +) +(1,21082:6630773,33278996:25952256,431045,112852 +h1,21082:6630773,33278996:0,0,0 +g1,21082:7626635,33278996 +g1,21082:8622497,33278996 +g1,21082:10946175,33278996 +g1,21082:11610083,33278996 +g1,21082:17917207,33278996 +g1,21082:18581115,33278996 +g1,21082:21236747,33278996 +g1,21082:23560425,33278996 +g1,21082:24224333,33278996 +g1,21082:27211919,33278996 +g1,21082:30531458,33278996 +g1,21082:31195366,33278996 +g1,21082:32191228,33278996 +h1,21082:32523182,33278996:0,0,0 +k1,21082:32583029,33278996:59847 +g1,21082:32583029,33278996 +) +(1,21083:6630773,33963851:25952256,431045,112852 +h1,21083:6630773,33963851:0,0,0 +g1,21083:6962727,33963851 +g1,21083:7294681,33963851 +k1,21083:7294681,33963851:0 +h1,21083:12273991,33963851:0,0,0 +k1,21083:32583029,33963851:20309038 +g1,21083:32583029,33963851 +) +] +) +g1,21085:32583029,34076703 +g1,21085:6630773,34076703 +g1,21085:6630773,34076703 +g1,21085:32583029,34076703 +g1,21085:32583029,34076703 +) +h1,21085:6630773,34273311:0,0,0 +v1,21089:6630773,34958166:0,393216,0 +(1,21093:6630773,35275727:25952256,710777,196608 +g1,21093:6630773,35275727 +g1,21093:6630773,35275727 +g1,21093:6434165,35275727 +(1,21093:6434165,35275727:0,710777,196608 +r1,21103:32779637,35275727:26345472,907385,196608 +k1,21093:6434165,35275727:-26345472 +) +(1,21093:6434165,35275727:26345472,710777,196608 +[1,21093:6630773,35275727:25952256,514169,0 +(1,21091:6630773,35169481:25952256,407923,106246 +(1,21090:6630773,35169481:0,0,0 +g1,21090:6630773,35169481 +g1,21090:6630773,35169481 +g1,21090:6303093,35169481 +(1,21090:6303093,35169481:0,0,0 +) +g1,21090:6630773,35169481 +) +g1,21091:7626635,35169481 +g1,21091:8290543,35169481 +h1,21091:8954451,35169481:0,0,0 +k1,21091:32583029,35169481:23628578 +g1,21091:32583029,35169481 +) +] +) +g1,21093:32583029,35275727 +g1,21093:6630773,35275727 +g1,21093:6630773,35275727 +g1,21093:32583029,35275727 +g1,21093:32583029,35275727 +) +h1,21093:6630773,35472335:0,0,0 +(1,21096:6630773,45172666:25952256,9634795,0 +k1,21096:6760463,45172666:129690 +h1,21095:6760463,45172666:0,0,0 +(1,21095:6760463,45172666:25692876,9634795,0 +(1,21095:6760463,45172666:25692851,9634819,0 +(1,21095:6760463,45172666:25692851,9634819,0 +(1,21095:6760463,45172666:0,9634819,0 +(1,21095:6760463,45172666:0,14208860,0 +(1,21095:6760463,45172666:37890292,14208860,0 +) +k1,21095:6760463,45172666:-37890292 ) ) -g1,21097:32453314,45172666 +g1,21095:32453314,45172666 ) ) ) -g1,21098:32453339,45172666 -k1,21098:32583029,45172666:129690 +g1,21096:32453339,45172666 +k1,21096:32583029,45172666:129690 ) ] -(1,21105:32583029,45706769:0,0,0 -g1,21105:32583029,45706769 +(1,21103:32583029,45706769:0,0,0 +g1,21103:32583029,45706769 ) ) ] -(1,21105:6630773,47279633:25952256,0,0 -h1,21105:6630773,47279633:25952256,0,0 +(1,21103:6630773,47279633:25952256,0,0 +h1,21103:6630773,47279633:25952256,0,0 ) ] -(1,21105:4262630,4025873:0,0,0 -[1,21105:-473656,4025873:0,0,0 -(1,21105:-473656,-710413:0,0,0 -(1,21105:-473656,-710413:0,0,0 -g1,21105:-473656,-710413 +(1,21103:4262630,4025873:0,0,0 +[1,21103:-473656,4025873:0,0,0 +(1,21103:-473656,-710413:0,0,0 +(1,21103:-473656,-710413:0,0,0 +g1,21103:-473656,-710413 ) -g1,21105:-473656,-710413 +g1,21103:-473656,-710413 ) ] ) ] !17172 -}354 -Input:3839:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3840:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}355 +Input:3843:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3844:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{355 -[1,21111:4262630,47279633:28320399,43253760,0 -(1,21111:4262630,4025873:0,0,0 -[1,21111:-473656,4025873:0,0,0 -(1,21111:-473656,-710413:0,0,0 -(1,21111:-473656,-644877:0,0,0 -k1,21111:-473656,-644877:-65536 +{356 +[1,21109:4262630,47279633:28320399,43253760,0 +(1,21109:4262630,4025873:0,0,0 +[1,21109:-473656,4025873:0,0,0 +(1,21109:-473656,-710413:0,0,0 +(1,21109:-473656,-644877:0,0,0 +k1,21109:-473656,-644877:-65536 ) -(1,21111:-473656,4736287:0,0,0 -k1,21111:-473656,4736287:5209943 +(1,21109:-473656,4736287:0,0,0 +k1,21109:-473656,4736287:5209943 ) -g1,21111:-473656,-710413 +g1,21109:-473656,-710413 ) ] ) -[1,21111:6630773,47279633:25952256,43253760,0 -[1,21111:6630773,4812305:25952256,786432,0 -(1,21111:6630773,4812305:25952256,513147,126483 -(1,21111:6630773,4812305:25952256,513147,126483 -g1,21111:3078558,4812305 -[1,21111:3078558,4812305:0,0,0 -(1,21111:3078558,2439708:0,1703936,0 -k1,21111:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21111:2537886,2439708:1179648,16384,0 +[1,21109:6630773,47279633:25952256,43253760,0 +[1,21109:6630773,4812305:25952256,786432,0 +(1,21109:6630773,4812305:25952256,513147,126483 +(1,21109:6630773,4812305:25952256,513147,126483 +g1,21109:3078558,4812305 +[1,21109:3078558,4812305:0,0,0 +(1,21109:3078558,2439708:0,1703936,0 +k1,21109:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21109:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21111:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21109:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21111:3078558,4812305:0,0,0 -(1,21111:3078558,2439708:0,1703936,0 -g1,21111:29030814,2439708 -g1,21111:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21111:36151628,1915420:16384,1179648,0 +[1,21109:3078558,4812305:0,0,0 +(1,21109:3078558,2439708:0,1703936,0 +g1,21109:29030814,2439708 +g1,21109:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21109:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21111:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21109:37855564,2439708:1179648,16384,0 ) ) -k1,21111:3078556,2439708:-34777008 +k1,21109:3078556,2439708:-34777008 ) ] -[1,21111:3078558,4812305:0,0,0 -(1,21111:3078558,49800853:0,16384,2228224 -k1,21111:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21111:2537886,49800853:1179648,16384,0 +[1,21109:3078558,4812305:0,0,0 +(1,21109:3078558,49800853:0,16384,2228224 +k1,21109:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21109:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21111:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21109:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,21111:3078558,4812305:0,0,0 -(1,21111:3078558,49800853:0,16384,2228224 -g1,21111:29030814,49800853 -g1,21111:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21111:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21111:37855564,49800853:1179648,16384,0 -) -) -k1,21111:3078556,49800853:-34777008 -) -] -g1,21111:6630773,4812305 -k1,21111:21386205,4812305:13560055 -g1,21111:21999622,4812305 -g1,21111:25611966,4812305 -g1,21111:28956923,4812305 -g1,21111:29772190,4812305 -) -) -] -[1,21111:6630773,45706769:25952256,40108032,0 -(1,21111:6630773,45706769:25952256,40108032,0 -(1,21111:6630773,45706769:0,0,0 -g1,21111:6630773,45706769 -) -[1,21111:6630773,45706769:25952256,40108032,0 -[1,21065:6630773,27220285:25952256,21621548,0 -[1,21065:6630773,27220285:25952256,21621548,0 -(1,21028:6630773,6759380:25952256,505283,11795 -h1,21028:6607180,6759380:0,0,0 -g1,21028:8644694,6759380 -k1,21028:32583029,6759380:22948086 -g1,21028:32583029,6759380 -) -(1,21028:6630773,7624460:25952256,513147,134348 -h1,21028:6630773,7624460:0,0,0 -k1,21028:9451204,7624460:251420 -k1,21028:12728421,7624460:251420 -k1,21028:14547462,7624460:251420 -k1,21028:17709336,7624460:251420 -k1,21028:20789289,7624460:251420 -k1,21028:22232155,7624460:251421 -k1,21028:24646917,7624460:251420 -k1,21028:26095024,7624460:251420 -k1,21028:27912099,7624460:251420 -k1,21028:28695016,7624460:251420 -k1,21028:31315563,7624460:251420 -k1,21028:32583029,7624460:0 -) -(1,21028:6630773,8489540:25952256,513147,138281 -k1,21028:7957502,8489540:154290 -k1,21028:10894452,8489540:154291 -k1,21028:11710000,8489540:154290 -k1,21028:14763603,8489540:154290 -k1,21028:16202399,8489540:154290 -k1,21028:17732291,8489540:154291 -k1,21028:19897226,8489540:154290 -k1,21028:21070601,8489540:154290 -k1,21028:24059979,8489540:154291 -$1,21028:24059979,8489540 -$1,21028:24562640,8489540 -k1,21028:24716930,8489540:154290 -k1,21028:26062665,8489540:154290 -$1,21028:26062665,8489540 -$1,21028:26614478,8489540 -k1,21028:26768768,8489540:154290 -k1,21028:29107374,8489540:154291 -k1,21028:29834449,8489540:154290 -k1,21028:32583029,8489540:0 -) -(1,21028:6630773,9354620:25952256,513147,138281 -k1,21028:9713540,9354620:138234 -k1,21028:11136280,9354620:138234 -k1,21028:15067738,9354620:138234 -k1,21028:17216617,9354620:138234 -k1,21028:17710711,9354620:138234 -k1,21028:19358895,9354620:138234 -k1,21028:20156421,9354620:138234 -k1,21028:21313740,9354620:138234 -k1,21028:25116747,9354620:138234 -$1,21028:25116747,9354620 -$1,21028:25619408,9354620 -k1,21028:25757642,9354620:138234 -k1,21028:27087321,9354620:138234 -$1,21028:27087321,9354620 -$1,21028:27639134,9354620 -k1,21028:27777368,9354620:138234 -k1,21028:30099917,9354620:138234 -k1,21028:31434838,9354620:138234 -k1,21028:32583029,9354620:0 -) -(1,21028:6630773,10219700:25952256,513147,126483 -k1,21028:9190550,10219700:176888 -k1,21028:12367020,10219700:176887 -k1,21028:13562993,10219700:176888 -k1,21028:15125966,10219700:176887 -k1,21028:15962146,10219700:176888 -k1,21028:20566645,10219700:176887 -k1,21028:22307222,10219700:176888 -k1,21028:23906896,10219700:176887 -k1,21028:26841539,10219700:176888 -k1,21028:29029071,10219700:176887 -k1,21028:31966991,10219700:176888 -k1,21028:32583029,10219700:0 -) -(1,21028:6630773,11084780:25952256,513147,126483 -k1,21028:7932318,11084780:282460 -k1,21028:9488143,11084780:282460 -k1,21028:12438574,11084780:282460 -k1,21028:14143821,11084780:282460 -k1,21028:16920581,11084780:282460 -k1,21028:19213686,11084780:282460 -k1,21028:20443797,11084780:282460 -k1,21028:21745342,11084780:282460 -k1,21028:26455414,11084780:282460 -k1,21028:28747863,11084780:282460 -k1,21028:29386183,11084780:282460 -k1,21028:32583029,11084780:0 -) -(1,21028:6630773,11949860:25952256,505283,126483 -g1,21028:9490764,11949860 -g1,21028:10624536,11949860 -g1,21028:11585293,11949860 -g1,21028:12803607,11949860 -k1,21028:32583029,11949860:18346150 -g1,21028:32583029,11949860 -) -(1,21064:6630773,27220285:25952256,14731065,0 -k1,21064:6773779,27220285:143006 -k1,21031:6916786,27220285:143007 -[1,21064:6916786,27220285:25523237,14731065,0 -(1,21064:6916786,12554756:25523237,65536,0 -g1,21064:6916786,12554756 -(1,21064:6916786,12554756:25523237,65536,0 -r1,21111:32440023,12554756:25523237,65536,0 -) -g1,21064:32440023,12554756 -) -(1,21064:6916786,20027135:25523237,7406843,6996542 -g1,21064:6916786,20027135 -(1,21064:6916786,20027135:25523237,7406843,6996542 -g1,21031:7116015,20027135 -$1,21064:7116015,20027135 -[1,21064:7116015,20027135:25324008,7406843,6996542 -(1,21034:7116015,13411412:25324008,555093,237900 -g1,21033:7116015,13411412 -(1,21033:7116015,13411412:7368472,555093,237900 -r1,21111:7116015,13411412:0,792993,237900 -g1,21033:7116016,13411412 -k1,21033:14156807,13411412:4471780 -g1,21033:14484487,13411412 -) -g1,21033:14484487,13411412 -(1,21033:14484487,13411412:3483894,555093,237900 -g1,21033:14812167,13411412 -g1,21033:14812168,13411412 -k1,21033:17640701,13411412:293600 -g1,21033:17968381,13411412 -) -g1,21033:17968381,13411412 -(1,21033:17968381,13411412:12309608,555093,237900 -g1,21033:18296061,13411412 -[1,21033:18296061,13411412:11654248,475791,237900 -(1,21033:18296061,13411412:11654248,475791,237900 -h1,21033:18296061,13411412:0,0,0 -r1,21111:21861875,13411412:0,237900,237900 -k1,21033:29950309,13411412:8088434 -g1,21033:29950309,13411412 -) -] -g1,21033:29950309,13411412 -g1,21033:30277989,13411412 -) -g1,21033:30277989,13411412 -(1,21034:30277989,13411412:2162034,555093,237900 -g1,21033:30605669,13411412 -g1,21033:30605670,13411412 -g1,21034:32440023,13411412 -) -g1,21034:32440023,13411412 -) -(1,21035:7116015,14533754:25324008,555093,237900 -g1,21035:7116015,14533754 -(1,21035:7116015,14533754:7368472,555093,237900 -r1,21111:7116015,14533754:0,792993,237900 -g1,21035:7116016,14533754 -g1,21035:7976503,14533754 -g1,21035:10183755,14533754 -g1,21035:11396171,14533754 -k1,21035:14156807,14533754:1373239 -g1,21035:14484487,14533754 -) -g1,21035:14484487,14533754 -(1,21035:14484487,14533754:3483894,555093,237900 -g1,21035:14812167,14533754 -k1,21035:17640701,14533754:2828534 -g1,21035:17968381,14533754 -) -g1,21035:17968381,14533754 -(1,21035:17968381,14533754:12309608,555093,237900 -g1,21035:18296061,14533754 -[1,21035:18296061,14533754:11654248,0,237900 -(1,21035:18296061,14533754:11654248,0,237900 -h1,21035:18296061,14533754:0,0,0 -r1,21111:18296061,14533754:0,237900,237900 -k1,21035:29950309,14533754:11654248 -g1,21035:29950309,14533754 -) -] -g1,21035:29950309,14533754 -g1,21035:30277989,14533754 -) -g1,21035:30277989,14533754 -(1,21035:30277989,14533754:2162034,555093,237900 -g1,21035:30605669,14533754 -k1,21035:32440023,14533754:1834354 -) -g1,21035:32440023,14533754 -) -(1,21037:7116015,15654427:25324008,555093,237900 -g1,21036:7116015,15654427 -(1,21036:7116015,15654427:7368472,555093,237900 -r1,21111:7116015,15654427:0,792993,237900 -g1,21036:7116016,15654427 -(1,21036:7116016,15654427:0,452978,115847 -r1,21111:13101671,15654427:5985655,568825,115847 -k1,21036:7116016,15654427:-5985655 -) -(1,21036:7116016,15654427:5985655,452978,115847 -k1,21036:7116016,15654427:3277 -h1,21036:13098394,15654427:0,411205,112570 -) -k1,21036:14156807,15654427:1055136 -g1,21036:14484487,15654427 -) -g1,21036:14484487,15654427 -(1,21036:14484487,15654427:3483894,555093,237900 -g1,21036:14812167,15654427 -g1,21036:14812168,15654427 -g1,21036:17640701,15654427 -g1,21036:17968381,15654427 -) -g1,21036:17968381,15654427 -(1,21036:17968381,15654427:12309608,555093,237900 -g1,21036:18296061,15654427 -[1,21036:18296061,15654427:11654248,211026,237900 -(1,21036:18296061,15654427:11654248,211026,237900 -h1,21036:18197757,15654427:0,0,0 -r1,21111:18853117,15654427:0,237900,237900 -k1,21036:29950309,15654427:11097192 -g1,21036:29950309,15654427 -) -] -g1,21036:29950309,15654427 -g1,21036:30277989,15654427 -) -g1,21036:30277989,15654427 -(1,21037:30277989,15654427:2162034,555093,237900 -g1,21036:30605669,15654427 -g1,21036:30605670,15654427 -k1,21037:32440023,15654427:262800 -) -g1,21037:32440023,15654427 -) -(1,21038:7116015,16447420:25324008,555093,237900 -g1,21037:7116015,16447420 -(1,21037:7116015,16447420:7368472,555093,237900 -r1,21111:7116015,16447420:0,792993,237900 -g1,21037:7116016,16447420 -(1,21037:7116016,16447420:0,452978,115847 -r1,21111:12046536,16447420:4930520,568825,115847 -k1,21037:7116016,16447420:-4930520 -) -(1,21037:7116016,16447420:4930520,452978,115847 -k1,21037:7116016,16447420:3277 -h1,21037:12043259,16447420:0,411205,112570 -) -k1,21037:14156807,16447420:2110271 -g1,21037:14484487,16447420 -) -g1,21037:14484487,16447420 -(1,21037:14484487,16447420:3483894,555093,237900 -g1,21037:14812167,16447420 -g1,21037:14812168,16447420 -g1,21037:17640701,16447420 -g1,21037:17968381,16447420 -) -g1,21037:17968381,16447420 -(1,21037:17968381,16447420:12309608,555093,237900 -g1,21037:18296061,16447420 -[1,21037:18296061,16447420:11654248,473825,237900 -(1,21037:18296061,16447420:11654248,473825,237900 -h1,21037:18278366,16447420:0,0,0 -g1,21037:20237237,16447420 -r1,21111:22543449,16447420:0,237900,237900 -k1,21037:29950309,16447420:7406860 -g1,21037:29950309,16447420 -) -] -g1,21037:29950309,16447420 -g1,21037:30277989,16447420 -) -g1,21037:30277989,16447420 -(1,21038:30277989,16447420:2162034,555093,237900 -g1,21037:30605669,16447420 -g1,21037:30605670,16447420 -k1,21038:32440023,16447420:270664 -) -g1,21038:32440023,16447420 -) -(1,21039:7116015,17240413:25324008,555093,237900 -g1,21038:7116015,17240413 -(1,21038:7116015,17240413:7368472,555093,237900 -r1,21111:7116015,17240413:0,792993,237900 -g1,21038:7116016,17240413 -(1,21038:7116016,17240413:0,459977,115847 -r1,21111:11694824,17240413:4578808,575824,115847 -k1,21038:7116016,17240413:-4578808 -) -(1,21038:7116016,17240413:4578808,459977,115847 -k1,21038:7116016,17240413:3277 -h1,21038:11691547,17240413:0,411205,112570 -) -k1,21038:14156807,17240413:2461983 -g1,21038:14484487,17240413 -) -g1,21038:14484487,17240413 -(1,21038:14484487,17240413:3483894,555093,237900 -g1,21038:14812167,17240413 -g1,21038:14812168,17240413 -g1,21038:17640701,17240413 -g1,21038:17968381,17240413 -) -g1,21038:17968381,17240413 -(1,21038:17968381,17240413:12309608,555093,237900 -g1,21038:18296061,17240413 -[1,21038:18296061,17240413:11654248,473825,237900 -(1,21038:18296061,17240413:11654248,473825,237900 -h1,21038:18278366,17240413:0,0,0 -g1,21038:20237237,17240413 -r1,21111:22543449,17240413:0,237900,237900 -k1,21038:29950309,17240413:7406860 -g1,21038:29950309,17240413 -) -] -g1,21038:29950309,17240413 -g1,21038:30277989,17240413 -) -g1,21038:30277989,17240413 -(1,21039:30277989,17240413:2162034,555093,237900 -g1,21038:30605669,17240413 -g1,21038:30605670,17240413 -k1,21039:32440023,17240413:270664 -) -g1,21039:32440023,17240413 -) -(1,21040:7116015,18033406:25324008,555093,237900 -g1,21039:7116015,18033406 -(1,21039:7116015,18033406:7368472,555093,237900 -r1,21111:7116015,18033406:0,792993,237900 -g1,21039:7116016,18033406 -(1,21039:7116016,18033406:0,452978,122846 -r1,21111:12046536,18033406:4930520,575824,122846 -k1,21039:7116016,18033406:-4930520 -) -(1,21039:7116016,18033406:4930520,452978,122846 -k1,21039:7116016,18033406:3277 -h1,21039:12043259,18033406:0,411205,112570 -) -k1,21039:14156807,18033406:2110271 -g1,21039:14484487,18033406 -) -g1,21039:14484487,18033406 -(1,21039:14484487,18033406:3483894,555093,237900 -g1,21039:14812167,18033406 -g1,21039:14812168,18033406 -g1,21039:17640701,18033406 -g1,21039:17968381,18033406 -) -g1,21039:17968381,18033406 -(1,21039:17968381,18033406:12309608,555093,237900 -g1,21039:18296061,18033406 -[1,21039:18296061,18033406:11654248,505283,237900 -(1,21039:18296061,18033406:11654248,505283,237900 -h1,21039:18269847,18033406:0,0,0 -g1,21039:20457438,18033406 -g1,21039:23557290,18033406 -g1,21039:26538522,18033406 -r1,21111:28844734,18033406:0,237900,237900 -k1,21039:29950309,18033406:1105575 -g1,21039:29950309,18033406 -) -] -g1,21039:29950309,18033406 -g1,21039:30277989,18033406 -) -g1,21039:30277989,18033406 -(1,21040:30277989,18033406:2162034,555093,237900 -g1,21039:30605669,18033406 -g1,21039:30605670,18033406 -k1,21040:32440023,18033406:270664 -) -g1,21040:32440023,18033406 -) -(1,21041:7116015,18826399:25324008,555093,237900 -g1,21040:7116015,18826399 -(1,21040:7116015,18826399:7368472,555093,237900 -r1,21111:7116015,18826399:0,792993,237900 -g1,21040:7116016,18826399 -(1,21040:7116016,18826399:0,452978,122846 -r1,21111:12398247,18826399:5282231,575824,122846 -k1,21040:7116016,18826399:-5282231 -) -(1,21040:7116016,18826399:5282231,452978,122846 -k1,21040:7116016,18826399:3277 -h1,21040:12394970,18826399:0,411205,112570 -) -k1,21040:14156807,18826399:1758560 -g1,21040:14484487,18826399 -) -g1,21040:14484487,18826399 -(1,21040:14484487,18826399:3483894,555093,237900 -g1,21040:14812167,18826399 -g1,21040:14812168,18826399 -g1,21040:17640701,18826399 -g1,21040:17968381,18826399 -) -g1,21040:17968381,18826399 -(1,21040:17968381,18826399:12309608,555093,237900 -g1,21040:18296061,18826399 -[1,21040:18296061,18826399:11654248,505283,237900 -(1,21040:18296061,18826399:11654248,505283,237900 -h1,21040:18269847,18826399:0,0,0 -g1,21040:20457438,18826399 -g1,21040:23557290,18826399 -g1,21040:26538522,18826399 -r1,21111:28844734,18826399:0,237900,237900 -k1,21040:29950309,18826399:1105575 -g1,21040:29950309,18826399 -) -] -g1,21040:29950309,18826399 -g1,21040:30277989,18826399 -) -g1,21040:30277989,18826399 -(1,21041:30277989,18826399:2162034,555093,237900 -g1,21040:30605669,18826399 -g1,21040:30605670,18826399 -k1,21041:32440023,18826399:270664 -) -g1,21041:32440023,18826399 -) -(1,21042:7116015,19619392:25324008,555093,237900 -g1,21041:7116015,19619392 -(1,21041:7116015,19619392:7368472,555093,237900 -r1,21111:7116015,19619392:0,792993,237900 -g1,21041:7116016,19619392 -(1,21041:7116016,19619392:0,452978,122846 -r1,21111:12398247,19619392:5282231,575824,122846 -k1,21041:7116016,19619392:-5282231 -) -(1,21041:7116016,19619392:5282231,452978,122846 -k1,21041:7116016,19619392:3277 -h1,21041:12394970,19619392:0,411205,112570 -) -k1,21041:14156807,19619392:1758560 -g1,21041:14484487,19619392 -) -g1,21041:14484487,19619392 -(1,21041:14484487,19619392:3483894,555093,237900 -g1,21041:14812167,19619392 -g1,21041:14812168,19619392 -g1,21041:17640701,19619392 -g1,21041:17968381,19619392 -) -g1,21041:17968381,19619392 -(1,21041:17968381,19619392:12309608,555093,237900 -g1,21041:18296061,19619392 -[1,21041:18296061,19619392:11654248,505283,237900 -(1,21041:18296061,19619392:11654248,505283,237900 -h1,21041:18269847,19619392:0,0,0 -g1,21041:20457438,19619392 -g1,21041:22839671,19619392 -r1,21111:24285395,19619392:0,237900,237900 -k1,21041:29950309,19619392:5664914 -g1,21041:29950309,19619392 -) -] -g1,21041:29950309,19619392 -g1,21041:30277989,19619392 -) -g1,21041:30277989,19619392 -(1,21042:30277989,19619392:2162034,555093,237900 -g1,21041:30605669,19619392 -g1,21041:30605670,19619392 -k1,21042:32440023,19619392:180880 -) -g1,21042:32440023,19619392 -) -(1,21043:7116015,20412385:25324008,555093,237900 -g1,21042:7116015,20412385 -(1,21042:7116015,20412385:7368472,555093,237900 -r1,21111:7116015,20412385:0,792993,237900 -g1,21042:7116016,20412385 -(1,21042:7116016,20412385:0,452978,122846 -r1,21111:12046536,20412385:4930520,575824,122846 -k1,21042:7116016,20412385:-4930520 -) -(1,21042:7116016,20412385:4930520,452978,122846 -k1,21042:7116016,20412385:3277 -h1,21042:12043259,20412385:0,411205,112570 -) -k1,21042:14156807,20412385:2110271 -g1,21042:14484487,20412385 -) -g1,21042:14484487,20412385 -(1,21042:14484487,20412385:3483894,555093,237900 -g1,21042:14812167,20412385 -g1,21042:14812168,20412385 -g1,21042:17640701,20412385 -g1,21042:17968381,20412385 -) -g1,21042:17968381,20412385 -(1,21042:17968381,20412385:12309608,555093,237900 -g1,21042:18296061,20412385 -[1,21042:18296061,20412385:11654248,347341,237900 -(1,21042:18296061,20412385:11654248,347341,237900 -h1,21042:18277711,20412385:0,0,0 -g1,21042:19015646,20412385 -r1,21111:19376749,20412385:0,237900,237900 -k1,21042:29950309,20412385:10573560 -g1,21042:29950309,20412385 -) -] -g1,21042:29950309,20412385 -g1,21042:30277989,20412385 -) -g1,21042:30277989,20412385 -(1,21043:30277989,20412385:2162034,555093,237900 -g1,21042:30605669,20412385 -g1,21042:30605670,20412385 -k1,21043:32440023,20412385:270664 -) -g1,21043:32440023,20412385 -) -(1,21044:7116015,21534727:25324008,555093,237900 -g1,21044:7116015,21534727 -(1,21044:7116015,21534727:7368472,555093,237900 -r1,21111:7116015,21534727:0,792993,237900 -g1,21044:7116016,21534727 -g1,21044:7888030,21534727 -g1,21044:10095282,21534727 -k1,21044:14156807,21534727:2674128 -g1,21044:14484487,21534727 -) -g1,21044:14484487,21534727 -(1,21044:14484487,21534727:3483894,555093,237900 -g1,21044:14812167,21534727 -k1,21044:17640701,21534727:2828534 -g1,21044:17968381,21534727 -) -g1,21044:17968381,21534727 -(1,21044:17968381,21534727:12309608,555093,237900 -g1,21044:18296061,21534727 -[1,21044:18296061,21534727:11654248,0,237900 -(1,21044:18296061,21534727:11654248,0,237900 -h1,21044:18296061,21534727:0,0,0 -r1,21111:18296061,21534727:0,237900,237900 -k1,21044:29950309,21534727:11654248 -g1,21044:29950309,21534727 -) -] -g1,21044:29950309,21534727 -g1,21044:30277989,21534727 -) -g1,21044:30277989,21534727 -(1,21044:30277989,21534727:2162034,555093,237900 -g1,21044:30605669,21534727 -k1,21044:32440023,21534727:1834354 -) -g1,21044:32440023,21534727 -) -(1,21046:7116015,22655400:25324008,555093,237900 -g1,21045:7116015,22655400 -(1,21045:7116015,22655400:7368472,555093,237900 -r1,21111:7116015,22655400:0,792993,237900 -g1,21045:7116016,22655400 -(1,21045:7116016,22655400:0,452978,115847 -r1,21111:13805094,22655400:6689078,568825,115847 -k1,21045:7116016,22655400:-6689078 -) -(1,21045:7116016,22655400:6689078,452978,115847 -k1,21045:7116016,22655400:3277 -h1,21045:13801817,22655400:0,411205,112570 -) -k1,21045:14156807,22655400:351713 -g1,21045:14484487,22655400 -) -g1,21045:14484487,22655400 -(1,21045:14484487,22655400:3483894,555093,237900 -g1,21045:14812167,22655400 -g1,21045:14812168,22655400 -k1,21045:17640701,22655400:838861 -g1,21045:17968381,22655400 -) -g1,21045:17968381,22655400 -(1,21045:17968381,22655400:12309608,555093,237900 -g1,21045:18296061,22655400 -[1,21045:18296061,22655400:11654248,473825,237900 -(1,21045:18296061,22655400:11654248,473825,237900 -h1,21045:18278366,22655400:0,0,0 -g1,21045:20237237,22655400 -r1,21111:22543449,22655400:0,237900,237900 -k1,21045:29950309,22655400:7406860 -g1,21045:29950309,22655400 -) -] -g1,21045:29950309,22655400 -g1,21045:30277989,22655400 -) -g1,21045:30277989,22655400 -(1,21046:30277989,22655400:2162034,555093,237900 -g1,21045:30605669,22655400 -g1,21045:30605670,22655400 -k1,21046:32440023,22655400:270664 -) -g1,21046:32440023,22655400 -) -(1,21047:7116015,23448393:25324008,555093,237900 -g1,21046:7116015,23448393 -(1,21046:7116015,23448393:7368472,555093,237900 -r1,21111:7116015,23448393:0,792993,237900 -g1,21046:7116016,23448393 -(1,21046:7116016,23448393:0,459977,115847 -r1,21111:13453383,23448393:6337367,575824,115847 -k1,21046:7116016,23448393:-6337367 -) -(1,21046:7116016,23448393:6337367,459977,115847 -k1,21046:7116016,23448393:3277 -h1,21046:13450106,23448393:0,411205,112570 -) -k1,21046:14156807,23448393:703424 -g1,21046:14484487,23448393 -) -g1,21046:14484487,23448393 -(1,21046:14484487,23448393:3483894,555093,237900 -g1,21046:14812167,23448393 -g1,21046:14812168,23448393 -k1,21046:17640701,23448393:838861 -g1,21046:17968381,23448393 -) -g1,21046:17968381,23448393 -(1,21046:17968381,23448393:12309608,555093,237900 -g1,21046:18296061,23448393 -[1,21046:18296061,23448393:11654248,473825,237900 -(1,21046:18296061,23448393:11654248,473825,237900 -h1,21046:18278366,23448393:0,0,0 -g1,21046:20237237,23448393 -r1,21111:22543449,23448393:0,237900,237900 -k1,21046:29950309,23448393:7406860 -g1,21046:29950309,23448393 -) -] -g1,21046:29950309,23448393 -g1,21046:30277989,23448393 -) -g1,21046:30277989,23448393 -(1,21047:30277989,23448393:2162034,555093,237900 -g1,21046:30605669,23448393 -g1,21046:30605670,23448393 -k1,21047:32440023,23448393:270664 -) -g1,21047:32440023,23448393 -) -(1,21048:7116015,24241386:25324008,555093,237900 -g1,21047:7116015,24241386 -(1,21047:7116015,24241386:7368472,555093,237900 -r1,21111:7116015,24241386:0,792993,237900 -g1,21047:7116016,24241386 -(1,21047:7116016,24241386:0,452978,122846 -r1,21111:13805094,24241386:6689078,575824,122846 -k1,21047:7116016,24241386:-6689078 -) -(1,21047:7116016,24241386:6689078,452978,122846 -k1,21047:7116016,24241386:3277 -h1,21047:13801817,24241386:0,411205,112570 -) -k1,21047:14156807,24241386:351713 -g1,21047:14484487,24241386 -) -g1,21047:14484487,24241386 -(1,21047:14484487,24241386:3483894,555093,237900 -g1,21047:14812167,24241386 -g1,21047:14812168,24241386 -k1,21047:17640701,24241386:838861 -g1,21047:17968381,24241386 -) -g1,21047:17968381,24241386 -(1,21047:17968381,24241386:12309608,555093,237900 -g1,21047:18296061,24241386 -[1,21047:18296061,24241386:11654248,505283,237900 -(1,21047:18296061,24241386:11654248,505283,237900 -h1,21047:18269847,24241386:0,0,0 -g1,21047:20457438,24241386 -g1,21047:23557290,24241386 -g1,21047:26538522,24241386 -r1,21111:28844734,24241386:0,237900,237900 -k1,21047:29950309,24241386:1105575 -g1,21047:29950309,24241386 -) -] -g1,21047:29950309,24241386 -g1,21047:30277989,24241386 -) -g1,21047:30277989,24241386 -(1,21048:30277989,24241386:2162034,555093,237900 -g1,21047:30605669,24241386 -g1,21047:30605670,24241386 -k1,21048:32440023,24241386:270664 -) -g1,21048:32440023,24241386 -) -(1,21049:7116015,25034379:25324008,555093,237900 -g1,21048:7116015,25034379 -(1,21048:7116015,25034379:7368472,555093,237900 -r1,21111:7116015,25034379:0,792993,237900 -g1,21048:7116016,25034379 -(1,21048:7116016,25034379:0,452978,122846 -r1,21111:14156807,25034379:7040791,575824,122846 -k1,21048:7116016,25034379:-7040791 -) -(1,21048:7116016,25034379:7040791,452978,122846 -k1,21048:7116016,25034379:3277 -h1,21048:14153530,25034379:0,411205,112570 -) -g1,21048:14156807,25034379 -g1,21048:14484487,25034379 -) -g1,21048:14484487,25034379 -(1,21048:14484487,25034379:3483894,555093,237900 -g1,21048:14812167,25034379 -g1,21048:14812168,25034379 -k1,21048:17640701,25034379:838861 -g1,21048:17968381,25034379 -) -g1,21048:17968381,25034379 -(1,21048:17968381,25034379:12309608,555093,237900 -g1,21048:18296061,25034379 -[1,21048:18296061,25034379:11654248,505283,237900 -(1,21048:18296061,25034379:11654248,505283,237900 -h1,21048:18269847,25034379:0,0,0 -g1,21048:20457438,25034379 -g1,21048:23557290,25034379 -g1,21048:26538522,25034379 -r1,21111:28844734,25034379:0,237900,237900 -k1,21048:29950309,25034379:1105575 -g1,21048:29950309,25034379 -) -] -g1,21048:29950309,25034379 -g1,21048:30277989,25034379 -) -g1,21048:30277989,25034379 -(1,21049:30277989,25034379:2162034,555093,237900 -g1,21048:30605669,25034379 -g1,21048:30605670,25034379 -k1,21049:32440023,25034379:270664 -) -g1,21049:32440023,25034379 -) -(1,21050:7116015,25827372:25324008,555093,237900 -g1,21049:7116015,25827372 -(1,21049:7116015,25827372:7368472,555093,237900 -r1,21111:7116015,25827372:0,792993,237900 -g1,21049:7116016,25827372 -(1,21049:7116016,25827372:0,452978,122846 -r1,21111:14156807,25827372:7040791,575824,122846 -k1,21049:7116016,25827372:-7040791 -) -(1,21049:7116016,25827372:7040791,452978,122846 -k1,21049:7116016,25827372:3277 -h1,21049:14153530,25827372:0,411205,112570 -) -g1,21049:14156807,25827372 -g1,21049:14484487,25827372 -) -g1,21049:14484487,25827372 -(1,21049:14484487,25827372:3483894,555093,237900 -g1,21049:14812167,25827372 -g1,21049:14812168,25827372 -k1,21049:17640701,25827372:838861 -g1,21049:17968381,25827372 -) -g1,21049:17968381,25827372 -(1,21049:17968381,25827372:12309608,555093,237900 -g1,21049:18296061,25827372 -[1,21049:18296061,25827372:11654248,505283,237900 -(1,21049:18296061,25827372:11654248,505283,237900 -h1,21049:18269847,25827372:0,0,0 -g1,21049:20457438,25827372 -g1,21049:22839671,25827372 -r1,21111:24285395,25827372:0,237900,237900 -k1,21049:29950309,25827372:5664914 -g1,21049:29950309,25827372 -) -] -g1,21049:29950309,25827372 -g1,21049:30277989,25827372 -) -g1,21049:30277989,25827372 -(1,21050:30277989,25827372:2162034,555093,237900 -g1,21049:30605669,25827372 -g1,21049:30605670,25827372 -k1,21050:32440023,25827372:180880 -) -g1,21050:32440023,25827372 -) -(1,21063:7116015,26620365:25324008,555093,237900 -g1,21050:7116015,26620365 -(1,21050:7116015,26620365:7368472,555093,237900 -r1,21111:7116015,26620365:0,792993,237900 -g1,21050:7116016,26620365 -(1,21050:7116016,26620365:0,452978,122846 -r1,21111:13805094,26620365:6689078,575824,122846 -k1,21050:7116016,26620365:-6689078 -) -(1,21050:7116016,26620365:6689078,452978,122846 -k1,21050:7116016,26620365:3277 -h1,21050:13801817,26620365:0,411205,112570 -) -k1,21050:14156807,26620365:351713 -g1,21050:14484487,26620365 -) -g1,21050:14484487,26620365 -(1,21050:14484487,26620365:3483894,555093,237900 -g1,21050:14812167,26620365 -g1,21050:14812168,26620365 -k1,21050:17640701,26620365:838861 -g1,21050:17968381,26620365 -) -g1,21050:17968381,26620365 -(1,21050:17968381,26620365:12309608,555093,237900 -g1,21050:18296061,26620365 -[1,21050:18296061,26620365:11654248,347341,237900 -(1,21050:18296061,26620365:11654248,347341,237900 -h1,21050:18277711,26620365:0,0,0 -g1,21050:19015646,26620365 -r1,21111:19376749,26620365:0,237900,237900 -k1,21050:29950309,26620365:10573560 -g1,21050:29950309,26620365 -) -] -g1,21050:29950309,26620365 -g1,21050:30277989,26620365 -) -g1,21050:30277989,26620365 -(1,21063:30277989,26620365:2162034,555093,237900 -g1,21050:30605669,26620365 -g1,21050:30605670,26620365 -k1,21063:32440023,26620365:270664 -) -g1,21063:32440023,26620365 -) -] -$1,21064:32440023,20027135 -) -g1,21064:32440023,20027135 -) -(1,21064:6916786,27220285:25523237,65536,0 -g1,21064:6916786,27220285 -(1,21064:6916786,27220285:25523237,65536,0 -r1,21111:32440023,27220285:25523237,65536,0 -) -g1,21064:32440023,27220285 -) -] -g1,21064:32440023,27220285 -k1,21064:32583029,27220285:143006 -) -] -] -(1,21105:6630773,29186365:25952256,505283,126483 -h1,21104:6630773,29186365:983040,0,0 -k1,21104:10490281,29186365:307457 -(1,21104:10490281,29186365:0,452978,122846 -r1,21111:16124224,29186365:5633943,575824,122846 -k1,21104:10490281,29186365:-5633943 -) -(1,21104:10490281,29186365:5633943,452978,122846 -k1,21104:10490281,29186365:3277 -h1,21104:16120947,29186365:0,411205,112570 -) -k1,21104:16431682,29186365:307458 -k1,21104:17270636,29186365:307457 -k1,21104:19091319,29186365:307457 -k1,21104:20050205,29186365:307458 -k1,21104:24204625,29186365:307457 -k1,21104:27126969,29186365:307457 -k1,21104:30552630,29186365:307458 -k1,21104:32051532,29186365:307457 -k1,21104:32583029,29186365:0 -) -(1,21105:6630773,30051445:25952256,513147,134348 -k1,21104:8399760,30051445:167287 -k1,21104:11872028,30051445:167287 -k1,21104:13552540,30051445:167286 -k1,21104:15113778,30051445:167287 -(1,21104:15113778,30051445:0,452978,122846 -r1,21111:18989162,30051445:3875384,575824,122846 -k1,21104:15113778,30051445:-3875384 -) -(1,21104:15113778,30051445:3875384,452978,122846 -k1,21104:15113778,30051445:3277 -h1,21104:18985885,30051445:0,411205,112570 -) -k1,21104:19156449,30051445:167287 -k1,21104:20515181,30051445:167287 -(1,21104:20515181,30051445:0,452978,122846 -r1,21111:24742277,30051445:4227096,575824,122846 -k1,21104:20515181,30051445:-4227096 -) -(1,21104:20515181,30051445:4227096,452978,122846 -k1,21104:20515181,30051445:3277 -h1,21104:24739000,30051445:0,411205,112570 -) -k1,21104:24909564,30051445:167287 -k1,21104:26774888,30051445:167286 -k1,21104:29129767,30051445:167287 -k1,21104:30686417,30051445:167287 -k1,21104:32583029,30051445:0 -) -(1,21105:6630773,30916525:25952256,513147,134348 -k1,21104:8526249,30916525:142388 -k1,21104:11282868,30916525:142388 -k1,21104:14451052,30916525:142387 -k1,21104:15585000,30916525:142388 -k1,21104:17240614,30916525:142388 -k1,21104:18034430,30916525:142388 -k1,21104:19374161,30916525:142388 -k1,21104:20905911,30916525:142387 -k1,21104:23066153,30916525:142388 -k1,21104:23666638,30916525:142388 -k1,21104:24340523,30916525:142388 -k1,21104:27260327,30916525:142388 -k1,21104:28054142,30916525:142387 -k1,21104:29393873,30916525:142388 -k1,21104:29892121,30916525:142388 -k1,21104:32583029,30916525:0 -) -(1,21105:6630773,31781605:25952256,513147,134348 -k1,21104:9029765,31781605:195016 -k1,21104:10243867,31781605:195017 -k1,21104:11828246,31781605:195016 -k1,21104:13711470,31781605:195017 -k1,21104:14557914,31781605:195016 -k1,21104:15772016,31781605:195017 -k1,21104:17654584,31781605:195016 -k1,21104:18891622,31781605:195016 -k1,21104:20289880,31781605:195017 -k1,21104:21136324,31781605:195016 -k1,21104:22079107,31781605:195017 -k1,21104:25077753,31781605:195016 -k1,21104:27887001,31781605:195017 -k1,21104:31107814,31781605:195016 -k1,21104:32583029,31781605:0 -) -(1,21105:6630773,32646685:25952256,513147,134348 -k1,21104:7545066,32646685:262865 -k1,21104:9315914,32646685:262865 -k1,21104:10597864,32646685:262865 -k1,21104:13296047,32646685:262865 -k1,21104:16346814,32646685:262865 -k1,21104:19178690,32646685:262865 -k1,21104:22467352,32646685:262865 -k1,21104:24297838,32646685:262865 -k1,21104:27140855,32646685:262865 -k1,21104:30232253,32646685:262865 -k1,21104:32583029,32646685:0 -) -(1,21105:6630773,33511765:25952256,513147,134348 -k1,21104:8487467,33511765:217639 -k1,21104:10394625,33511765:217640 -k1,21104:11631349,33511765:217639 -k1,21104:14463219,33511765:217639 -k1,21104:17706655,33511765:217639 -k1,21104:19491916,33511765:217640 -k1,21104:22620009,33511765:217639 -k1,21104:24827320,33511765:217639 -k1,21104:26236404,33511765:217639 -k1,21104:29218352,33511765:217640 -k1,21104:30943974,33511765:217639 -k1,21104:32583029,33511765:0 -) -(1,21105:6630773,34376845:25952256,513147,126483 -k1,21104:7457135,34376845:210324 -k1,21104:9056821,34376845:210323 -k1,21104:11153271,34376845:210324 -k1,21104:11719455,34376845:210324 -k1,21104:14692122,34376845:210324 -k1,21104:16814130,34376845:210323 -k1,21104:18767712,34376845:210324 -h1,21104:19738300,34376845:0,0,0 -k1,21104:19948624,34376845:210324 -k1,21104:20690444,34376845:210323 -k1,21104:23269895,34376845:210324 -k1,21104:24747685,34376845:210324 -k1,21104:27740668,34376845:210324 -k1,21104:29147678,34376845:210323 -k1,21104:30733603,34376845:210324 -k1,21105:32583029,34376845:0 -) -(1,21105:6630773,35241925:25952256,513147,126483 -k1,21104:8276055,35241925:202179 -k1,21104:11113436,35241925:202178 -k1,21104:12334700,35241925:202179 -k1,21104:15151109,35241925:202178 -k1,21104:18379085,35241925:202179 -k1,21104:19197301,35241925:202178 -k1,21104:20418565,35241925:202179 -k1,21104:21793183,35241925:202179 -k1,21104:24604349,35241925:202178 -k1,21104:25465820,35241925:202179 -k1,21104:26687083,35241925:202178 -k1,21104:28454917,35241925:202179 -k1,21104:29188592,35241925:202178 -k1,21104:30006809,35241925:202179 -k1,21104:32583029,35241925:0 -) -(1,21105:6630773,36107005:25952256,513147,134348 -k1,21104:7855288,36107005:205430 -k1,21104:10496036,36107005:205430 -k1,21104:13315697,36107005:205430 -k1,21104:14052625,36107005:205431 -k1,21104:15675599,36107005:205430 -k1,21104:16563914,36107005:205430 -k1,21104:18009285,36107005:205430 -k1,21104:19284263,36107005:205430 -k1,21104:21233606,36107005:205430 -k1,21104:23006658,36107005:205431 -k1,21104:25792240,36107005:205430 -k1,21104:27987342,36107005:205430 -k1,21104:29184332,36107005:205430 -k1,21104:32583029,36107005:0 -) -(1,21105:6630773,36972085:25952256,513147,134348 -g1,21104:10365669,36972085 -g1,21104:11958849,36972085 -g1,21104:13901991,36972085 -g1,21104:15668841,36972085 -g1,21104:18448222,36972085 -k1,21105:32583029,36972085:11253846 -g1,21105:32583029,36972085 -) -(1,21107:6630773,37837165:25952256,513147,134348 -h1,21106:6630773,37837165:983040,0,0 -k1,21106:8992908,37837165:182408 -k1,21106:13429259,37837165:182409 -k1,21106:17104736,37837165:182408 -k1,21106:18048673,37837165:182409 -k1,21106:19808533,37837165:182408 -k1,21106:21182386,37837165:182408 -k1,21106:23336773,37837165:182409 -k1,21106:25262439,37837165:182408 -k1,21106:26060886,37837165:182409 -k1,21106:27527800,37837165:182408 -k1,21106:29287661,37837165:182409 -k1,21106:30001566,37837165:182408 -k1,21106:32583029,37837165:0 -) -(1,21107:6630773,38702245:25952256,505283,134348 -k1,21106:7984151,38702245:161933 -k1,21106:10118063,38702245:161934 -k1,21106:14673530,38702245:161933 -k1,21106:15463298,38702245:161933 -k1,21106:17076853,38702245:161933 -k1,21106:18605868,38702245:161934 -k1,21106:19786886,38702245:161933 -k1,21106:24202761,38702245:161933 -k1,21106:25468976,38702245:161933 -k1,21106:26378676,38702245:161934 -k1,21106:29809545,38702245:161933 -k1,21106:32583029,38702245:0 -) -(1,21107:6630773,39567325:25952256,513147,126483 -k1,21106:9679861,39567325:155018 -k1,21106:11026324,39567325:155018 -k1,21106:15237364,39567325:155017 -k1,21106:17193311,39567325:155018 -k1,21106:18034491,39567325:155018 -k1,21106:20265034,39567325:155018 -k1,21106:22275375,39567325:155017 -k1,21106:22961890,39567325:155018 -k1,21106:25094129,39567325:155018 -k1,21106:26947185,39567325:155018 -k1,21106:27970554,39567325:155017 -k1,21106:30060850,39567325:155018 -k1,21106:30867296,39567325:155018 -k1,21106:32583029,39567325:0 -) -(1,21107:6630773,40432405:25952256,513147,134348 -k1,21106:8817982,40432405:162147 -k1,21106:12760246,40432405:162147 -k1,21106:15114572,40432405:162147 -k1,21106:17326030,40432405:162147 -k1,21106:18019674,40432405:162147 -k1,21106:19783520,40432405:162146 -k1,21106:23250648,40432405:162147 -k1,21106:24926021,40432405:162147 -k1,21106:26482119,40432405:162147 -k1,21106:28033629,40432405:162147 -k1,21106:30039959,40432405:162147 -k1,21106:30853534,40432405:162147 -k1,21106:32583029,40432405:0 -) -(1,21107:6630773,41297485:25952256,513147,134348 -g1,21106:9922646,41297485 -g1,21106:12140384,41297485 -g1,21106:13022498,41297485 -g1,21106:14923697,41297485 -g1,21106:18072701,41297485 -k1,21107:32583029,41297485:11852188 -g1,21107:32583029,41297485 -) -(1,21109:6630773,42162565:25952256,513147,134348 -h1,21108:6630773,42162565:983040,0,0 -k1,21108:9530481,42162565:198969 -k1,21108:12424945,42162565:198968 -(1,21108:12424945,42162565:0,452978,122846 -r1,21111:17355465,42162565:4930520,575824,122846 -k1,21108:12424945,42162565:-4930520 -) -(1,21108:12424945,42162565:4930520,452978,122846 -k1,21108:12424945,42162565:3277 -h1,21108:17352188,42162565:0,411205,112570 -) -k1,21108:17554434,42162565:198969 -k1,21108:19321024,42162565:198969 -k1,21108:22100145,42162565:198969 -k1,21108:24288785,42162565:198968 -k1,21108:25019251,42162565:198969 -k1,21108:26731446,42162565:198969 -k1,21108:28798846,42162565:198969 -k1,21108:29649242,42162565:198968 -k1,21108:31563944,42162565:198969 -k1,21108:32583029,42162565:0 -) -(1,21109:6630773,43027645:25952256,505283,134348 -k1,21108:11094496,43027645:209781 -k1,21108:13347033,43027645:209780 -k1,21108:14318342,43027645:209781 -k1,21108:17104343,43027645:209781 -k1,21108:18084827,43027645:209781 -k1,21108:20142722,43027645:209780 -k1,21108:23838363,43027645:209781 -k1,21108:26483462,43027645:209781 -k1,21108:27884687,43027645:209780 -k1,21108:31130096,43027645:209781 -k1,21109:32583029,43027645:0 -) -(1,21109:6630773,43892725:25952256,513147,126483 -k1,21108:8439691,43892725:211150 -k1,21108:9598492,43892725:211150 -k1,21108:11261264,43892725:211150 -k1,21108:15387535,43892725:211150 -k1,21108:16552234,43892725:211150 -k1,21108:18293650,43892725:211150 -k1,21108:19156228,43892725:211150 -k1,21108:20459862,43892725:211149 -k1,21108:21690097,43892725:211150 -(1,21108:21690097,43892725:0,452978,115847 -r1,21111:23455210,43892725:1765113,568825,115847 -k1,21108:21690097,43892725:-1765113 -) -(1,21108:21690097,43892725:1765113,452978,115847 -k1,21108:21690097,43892725:3277 -h1,21108:23451933,43892725:0,411205,112570 -) -k1,21108:23666360,43892725:211150 -k1,21108:26122773,43892725:211150 -k1,21108:26993215,43892725:211150 -k1,21108:28223450,43892725:211150 -k1,21108:31048831,43892725:211150 -k1,21109:32583029,43892725:0 -) -(1,21109:6630773,44757805:25952256,513147,7863 -g1,21108:8427770,44757805 -g1,21108:9574650,44757805 -g1,21108:11952296,44757805 -g1,21108:12802953,44757805 -g1,21108:13749948,44757805 -k1,21109:32583029,44757805:16779838 -g1,21109:32583029,44757805 -) -] -(1,21111:32583029,45706769:0,0,0 -g1,21111:32583029,45706769 -) -) -] -(1,21111:6630773,47279633:25952256,0,0 -h1,21111:6630773,47279633:25952256,0,0 -) -] -(1,21111:4262630,4025873:0,0,0 -[1,21111:-473656,4025873:0,0,0 -(1,21111:-473656,-710413:0,0,0 -(1,21111:-473656,-710413:0,0,0 -g1,21111:-473656,-710413 -) -g1,21111:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,21109:3078558,4812305:0,0,0 +(1,21109:3078558,49800853:0,16384,2228224 +g1,21109:29030814,49800853 +g1,21109:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21109:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21109:37855564,49800853:1179648,16384,0 +) +) +k1,21109:3078556,49800853:-34777008 +) +] +g1,21109:6630773,4812305 +k1,21109:21386205,4812305:13560055 +g1,21109:21999622,4812305 +g1,21109:25611966,4812305 +g1,21109:28956923,4812305 +g1,21109:29772190,4812305 +) +) +] +[1,21109:6630773,45706769:25952256,40108032,0 +(1,21109:6630773,45706769:25952256,40108032,0 +(1,21109:6630773,45706769:0,0,0 +g1,21109:6630773,45706769 +) +[1,21109:6630773,45706769:25952256,40108032,0 +[1,21063:6630773,27220285:25952256,21621548,0 +[1,21063:6630773,27220285:25952256,21621548,0 +(1,21026:6630773,6759380:25952256,505283,11795 +h1,21026:6607180,6759380:0,0,0 +g1,21026:8644694,6759380 +k1,21026:32583029,6759380:22948086 +g1,21026:32583029,6759380 +) +(1,21026:6630773,7624460:25952256,513147,134348 +h1,21026:6630773,7624460:0,0,0 +k1,21026:9451204,7624460:251420 +k1,21026:12728421,7624460:251420 +k1,21026:14547462,7624460:251420 +k1,21026:17709336,7624460:251420 +k1,21026:20789289,7624460:251420 +k1,21026:22232155,7624460:251421 +k1,21026:24646917,7624460:251420 +k1,21026:26095024,7624460:251420 +k1,21026:27912099,7624460:251420 +k1,21026:28695016,7624460:251420 +k1,21026:31315563,7624460:251420 +k1,21026:32583029,7624460:0 +) +(1,21026:6630773,8489540:25952256,513147,138281 +k1,21026:7957502,8489540:154290 +k1,21026:10894452,8489540:154291 +k1,21026:11710000,8489540:154290 +k1,21026:14763603,8489540:154290 +k1,21026:16202399,8489540:154290 +k1,21026:17732291,8489540:154291 +k1,21026:19897226,8489540:154290 +k1,21026:21070601,8489540:154290 +k1,21026:24059979,8489540:154291 +$1,21026:24059979,8489540 +$1,21026:24562640,8489540 +k1,21026:24716930,8489540:154290 +k1,21026:26062665,8489540:154290 +$1,21026:26062665,8489540 +$1,21026:26614478,8489540 +k1,21026:26768768,8489540:154290 +k1,21026:29107374,8489540:154291 +k1,21026:29834449,8489540:154290 +k1,21026:32583029,8489540:0 +) +(1,21026:6630773,9354620:25952256,513147,138281 +k1,21026:9713540,9354620:138234 +k1,21026:11136280,9354620:138234 +k1,21026:15067738,9354620:138234 +k1,21026:17216617,9354620:138234 +k1,21026:17710711,9354620:138234 +k1,21026:19358895,9354620:138234 +k1,21026:20156421,9354620:138234 +k1,21026:21313740,9354620:138234 +k1,21026:25116747,9354620:138234 +$1,21026:25116747,9354620 +$1,21026:25619408,9354620 +k1,21026:25757642,9354620:138234 +k1,21026:27087321,9354620:138234 +$1,21026:27087321,9354620 +$1,21026:27639134,9354620 +k1,21026:27777368,9354620:138234 +k1,21026:30099917,9354620:138234 +k1,21026:31434838,9354620:138234 +k1,21026:32583029,9354620:0 +) +(1,21026:6630773,10219700:25952256,513147,126483 +k1,21026:9190550,10219700:176888 +k1,21026:12367020,10219700:176887 +k1,21026:13562993,10219700:176888 +k1,21026:15125966,10219700:176887 +k1,21026:15962146,10219700:176888 +k1,21026:20566645,10219700:176887 +k1,21026:22307222,10219700:176888 +k1,21026:23906896,10219700:176887 +k1,21026:26841539,10219700:176888 +k1,21026:29029071,10219700:176887 +k1,21026:31966991,10219700:176888 +k1,21026:32583029,10219700:0 +) +(1,21026:6630773,11084780:25952256,513147,126483 +k1,21026:7932318,11084780:282460 +k1,21026:9488143,11084780:282460 +k1,21026:12438574,11084780:282460 +k1,21026:14143821,11084780:282460 +k1,21026:16920581,11084780:282460 +k1,21026:19213686,11084780:282460 +k1,21026:20443797,11084780:282460 +k1,21026:21745342,11084780:282460 +k1,21026:26455414,11084780:282460 +k1,21026:28747863,11084780:282460 +k1,21026:29386183,11084780:282460 +k1,21026:32583029,11084780:0 +) +(1,21026:6630773,11949860:25952256,505283,126483 +g1,21026:9490764,11949860 +g1,21026:10624536,11949860 +g1,21026:11585293,11949860 +g1,21026:12803607,11949860 +k1,21026:32583029,11949860:18346150 +g1,21026:32583029,11949860 +) +(1,21062:6630773,27220285:25952256,14731065,0 +k1,21062:6773779,27220285:143006 +k1,21029:6916786,27220285:143007 +[1,21062:6916786,27220285:25523237,14731065,0 +(1,21062:6916786,12554756:25523237,65536,0 +g1,21062:6916786,12554756 +(1,21062:6916786,12554756:25523237,65536,0 +r1,21109:32440023,12554756:25523237,65536,0 +) +g1,21062:32440023,12554756 +) +(1,21062:6916786,20027135:25523237,7406843,6996542 +g1,21062:6916786,20027135 +(1,21062:6916786,20027135:25523237,7406843,6996542 +g1,21029:7116015,20027135 +$1,21062:7116015,20027135 +[1,21062:7116015,20027135:25324008,7406843,6996542 +(1,21032:7116015,13411412:25324008,555093,237900 +g1,21031:7116015,13411412 +(1,21031:7116015,13411412:7368472,555093,237900 +r1,21109:7116015,13411412:0,792993,237900 +g1,21031:7116016,13411412 +k1,21031:14156807,13411412:4471780 +g1,21031:14484487,13411412 +) +g1,21031:14484487,13411412 +(1,21031:14484487,13411412:3483894,555093,237900 +g1,21031:14812167,13411412 +g1,21031:14812168,13411412 +k1,21031:17640701,13411412:293600 +g1,21031:17968381,13411412 +) +g1,21031:17968381,13411412 +(1,21031:17968381,13411412:12309608,555093,237900 +g1,21031:18296061,13411412 +[1,21031:18296061,13411412:11654248,475791,237900 +(1,21031:18296061,13411412:11654248,475791,237900 +h1,21031:18296061,13411412:0,0,0 +r1,21109:21861875,13411412:0,237900,237900 +k1,21031:29950309,13411412:8088434 +g1,21031:29950309,13411412 +) +] +g1,21031:29950309,13411412 +g1,21031:30277989,13411412 +) +g1,21031:30277989,13411412 +(1,21032:30277989,13411412:2162034,555093,237900 +g1,21031:30605669,13411412 +g1,21031:30605670,13411412 +g1,21032:32440023,13411412 +) +g1,21032:32440023,13411412 +) +(1,21033:7116015,14533754:25324008,555093,237900 +g1,21033:7116015,14533754 +(1,21033:7116015,14533754:7368472,555093,237900 +r1,21109:7116015,14533754:0,792993,237900 +g1,21033:7116016,14533754 +g1,21033:7976503,14533754 +g1,21033:10183755,14533754 +g1,21033:11396171,14533754 +k1,21033:14156807,14533754:1373239 +g1,21033:14484487,14533754 +) +g1,21033:14484487,14533754 +(1,21033:14484487,14533754:3483894,555093,237900 +g1,21033:14812167,14533754 +k1,21033:17640701,14533754:2828534 +g1,21033:17968381,14533754 +) +g1,21033:17968381,14533754 +(1,21033:17968381,14533754:12309608,555093,237900 +g1,21033:18296061,14533754 +[1,21033:18296061,14533754:11654248,0,237900 +(1,21033:18296061,14533754:11654248,0,237900 +h1,21033:18296061,14533754:0,0,0 +r1,21109:18296061,14533754:0,237900,237900 +k1,21033:29950309,14533754:11654248 +g1,21033:29950309,14533754 +) +] +g1,21033:29950309,14533754 +g1,21033:30277989,14533754 +) +g1,21033:30277989,14533754 +(1,21033:30277989,14533754:2162034,555093,237900 +g1,21033:30605669,14533754 +k1,21033:32440023,14533754:1834354 +) +g1,21033:32440023,14533754 +) +(1,21035:7116015,15654427:25324008,555093,237900 +g1,21034:7116015,15654427 +(1,21034:7116015,15654427:7368472,555093,237900 +r1,21109:7116015,15654427:0,792993,237900 +g1,21034:7116016,15654427 +(1,21034:7116016,15654427:0,452978,115847 +r1,21109:13101671,15654427:5985655,568825,115847 +k1,21034:7116016,15654427:-5985655 +) +(1,21034:7116016,15654427:5985655,452978,115847 +k1,21034:7116016,15654427:3277 +h1,21034:13098394,15654427:0,411205,112570 +) +k1,21034:14156807,15654427:1055136 +g1,21034:14484487,15654427 +) +g1,21034:14484487,15654427 +(1,21034:14484487,15654427:3483894,555093,237900 +g1,21034:14812167,15654427 +g1,21034:14812168,15654427 +g1,21034:17640701,15654427 +g1,21034:17968381,15654427 +) +g1,21034:17968381,15654427 +(1,21034:17968381,15654427:12309608,555093,237900 +g1,21034:18296061,15654427 +[1,21034:18296061,15654427:11654248,211026,237900 +(1,21034:18296061,15654427:11654248,211026,237900 +h1,21034:18197757,15654427:0,0,0 +r1,21109:18853117,15654427:0,237900,237900 +k1,21034:29950309,15654427:11097192 +g1,21034:29950309,15654427 +) +] +g1,21034:29950309,15654427 +g1,21034:30277989,15654427 +) +g1,21034:30277989,15654427 +(1,21035:30277989,15654427:2162034,555093,237900 +g1,21034:30605669,15654427 +g1,21034:30605670,15654427 +k1,21035:32440023,15654427:262800 +) +g1,21035:32440023,15654427 +) +(1,21036:7116015,16447420:25324008,555093,237900 +g1,21035:7116015,16447420 +(1,21035:7116015,16447420:7368472,555093,237900 +r1,21109:7116015,16447420:0,792993,237900 +g1,21035:7116016,16447420 +(1,21035:7116016,16447420:0,452978,115847 +r1,21109:12046536,16447420:4930520,568825,115847 +k1,21035:7116016,16447420:-4930520 +) +(1,21035:7116016,16447420:4930520,452978,115847 +k1,21035:7116016,16447420:3277 +h1,21035:12043259,16447420:0,411205,112570 +) +k1,21035:14156807,16447420:2110271 +g1,21035:14484487,16447420 +) +g1,21035:14484487,16447420 +(1,21035:14484487,16447420:3483894,555093,237900 +g1,21035:14812167,16447420 +g1,21035:14812168,16447420 +g1,21035:17640701,16447420 +g1,21035:17968381,16447420 +) +g1,21035:17968381,16447420 +(1,21035:17968381,16447420:12309608,555093,237900 +g1,21035:18296061,16447420 +[1,21035:18296061,16447420:11654248,473825,237900 +(1,21035:18296061,16447420:11654248,473825,237900 +h1,21035:18278366,16447420:0,0,0 +g1,21035:20237237,16447420 +r1,21109:22543449,16447420:0,237900,237900 +k1,21035:29950309,16447420:7406860 +g1,21035:29950309,16447420 +) +] +g1,21035:29950309,16447420 +g1,21035:30277989,16447420 +) +g1,21035:30277989,16447420 +(1,21036:30277989,16447420:2162034,555093,237900 +g1,21035:30605669,16447420 +g1,21035:30605670,16447420 +k1,21036:32440023,16447420:270664 +) +g1,21036:32440023,16447420 +) +(1,21037:7116015,17240413:25324008,555093,237900 +g1,21036:7116015,17240413 +(1,21036:7116015,17240413:7368472,555093,237900 +r1,21109:7116015,17240413:0,792993,237900 +g1,21036:7116016,17240413 +(1,21036:7116016,17240413:0,459977,115847 +r1,21109:11694824,17240413:4578808,575824,115847 +k1,21036:7116016,17240413:-4578808 +) +(1,21036:7116016,17240413:4578808,459977,115847 +k1,21036:7116016,17240413:3277 +h1,21036:11691547,17240413:0,411205,112570 +) +k1,21036:14156807,17240413:2461983 +g1,21036:14484487,17240413 +) +g1,21036:14484487,17240413 +(1,21036:14484487,17240413:3483894,555093,237900 +g1,21036:14812167,17240413 +g1,21036:14812168,17240413 +g1,21036:17640701,17240413 +g1,21036:17968381,17240413 +) +g1,21036:17968381,17240413 +(1,21036:17968381,17240413:12309608,555093,237900 +g1,21036:18296061,17240413 +[1,21036:18296061,17240413:11654248,473825,237900 +(1,21036:18296061,17240413:11654248,473825,237900 +h1,21036:18278366,17240413:0,0,0 +g1,21036:20237237,17240413 +r1,21109:22543449,17240413:0,237900,237900 +k1,21036:29950309,17240413:7406860 +g1,21036:29950309,17240413 +) +] +g1,21036:29950309,17240413 +g1,21036:30277989,17240413 +) +g1,21036:30277989,17240413 +(1,21037:30277989,17240413:2162034,555093,237900 +g1,21036:30605669,17240413 +g1,21036:30605670,17240413 +k1,21037:32440023,17240413:270664 +) +g1,21037:32440023,17240413 +) +(1,21038:7116015,18033406:25324008,555093,237900 +g1,21037:7116015,18033406 +(1,21037:7116015,18033406:7368472,555093,237900 +r1,21109:7116015,18033406:0,792993,237900 +g1,21037:7116016,18033406 +(1,21037:7116016,18033406:0,452978,122846 +r1,21109:12046536,18033406:4930520,575824,122846 +k1,21037:7116016,18033406:-4930520 +) +(1,21037:7116016,18033406:4930520,452978,122846 +k1,21037:7116016,18033406:3277 +h1,21037:12043259,18033406:0,411205,112570 +) +k1,21037:14156807,18033406:2110271 +g1,21037:14484487,18033406 +) +g1,21037:14484487,18033406 +(1,21037:14484487,18033406:3483894,555093,237900 +g1,21037:14812167,18033406 +g1,21037:14812168,18033406 +g1,21037:17640701,18033406 +g1,21037:17968381,18033406 +) +g1,21037:17968381,18033406 +(1,21037:17968381,18033406:12309608,555093,237900 +g1,21037:18296061,18033406 +[1,21037:18296061,18033406:11654248,505283,237900 +(1,21037:18296061,18033406:11654248,505283,237900 +h1,21037:18269847,18033406:0,0,0 +g1,21037:20457438,18033406 +g1,21037:23557290,18033406 +g1,21037:26538522,18033406 +r1,21109:28844734,18033406:0,237900,237900 +k1,21037:29950309,18033406:1105575 +g1,21037:29950309,18033406 +) +] +g1,21037:29950309,18033406 +g1,21037:30277989,18033406 +) +g1,21037:30277989,18033406 +(1,21038:30277989,18033406:2162034,555093,237900 +g1,21037:30605669,18033406 +g1,21037:30605670,18033406 +k1,21038:32440023,18033406:270664 +) +g1,21038:32440023,18033406 +) +(1,21039:7116015,18826399:25324008,555093,237900 +g1,21038:7116015,18826399 +(1,21038:7116015,18826399:7368472,555093,237900 +r1,21109:7116015,18826399:0,792993,237900 +g1,21038:7116016,18826399 +(1,21038:7116016,18826399:0,452978,122846 +r1,21109:12398247,18826399:5282231,575824,122846 +k1,21038:7116016,18826399:-5282231 +) +(1,21038:7116016,18826399:5282231,452978,122846 +k1,21038:7116016,18826399:3277 +h1,21038:12394970,18826399:0,411205,112570 +) +k1,21038:14156807,18826399:1758560 +g1,21038:14484487,18826399 +) +g1,21038:14484487,18826399 +(1,21038:14484487,18826399:3483894,555093,237900 +g1,21038:14812167,18826399 +g1,21038:14812168,18826399 +g1,21038:17640701,18826399 +g1,21038:17968381,18826399 +) +g1,21038:17968381,18826399 +(1,21038:17968381,18826399:12309608,555093,237900 +g1,21038:18296061,18826399 +[1,21038:18296061,18826399:11654248,505283,237900 +(1,21038:18296061,18826399:11654248,505283,237900 +h1,21038:18269847,18826399:0,0,0 +g1,21038:20457438,18826399 +g1,21038:23557290,18826399 +g1,21038:26538522,18826399 +r1,21109:28844734,18826399:0,237900,237900 +k1,21038:29950309,18826399:1105575 +g1,21038:29950309,18826399 +) +] +g1,21038:29950309,18826399 +g1,21038:30277989,18826399 +) +g1,21038:30277989,18826399 +(1,21039:30277989,18826399:2162034,555093,237900 +g1,21038:30605669,18826399 +g1,21038:30605670,18826399 +k1,21039:32440023,18826399:270664 +) +g1,21039:32440023,18826399 +) +(1,21040:7116015,19619392:25324008,555093,237900 +g1,21039:7116015,19619392 +(1,21039:7116015,19619392:7368472,555093,237900 +r1,21109:7116015,19619392:0,792993,237900 +g1,21039:7116016,19619392 +(1,21039:7116016,19619392:0,452978,122846 +r1,21109:12398247,19619392:5282231,575824,122846 +k1,21039:7116016,19619392:-5282231 +) +(1,21039:7116016,19619392:5282231,452978,122846 +k1,21039:7116016,19619392:3277 +h1,21039:12394970,19619392:0,411205,112570 +) +k1,21039:14156807,19619392:1758560 +g1,21039:14484487,19619392 +) +g1,21039:14484487,19619392 +(1,21039:14484487,19619392:3483894,555093,237900 +g1,21039:14812167,19619392 +g1,21039:14812168,19619392 +g1,21039:17640701,19619392 +g1,21039:17968381,19619392 +) +g1,21039:17968381,19619392 +(1,21039:17968381,19619392:12309608,555093,237900 +g1,21039:18296061,19619392 +[1,21039:18296061,19619392:11654248,505283,237900 +(1,21039:18296061,19619392:11654248,505283,237900 +h1,21039:18269847,19619392:0,0,0 +g1,21039:20457438,19619392 +g1,21039:22839671,19619392 +r1,21109:24285395,19619392:0,237900,237900 +k1,21039:29950309,19619392:5664914 +g1,21039:29950309,19619392 +) +] +g1,21039:29950309,19619392 +g1,21039:30277989,19619392 +) +g1,21039:30277989,19619392 +(1,21040:30277989,19619392:2162034,555093,237900 +g1,21039:30605669,19619392 +g1,21039:30605670,19619392 +k1,21040:32440023,19619392:180880 +) +g1,21040:32440023,19619392 +) +(1,21041:7116015,20412385:25324008,555093,237900 +g1,21040:7116015,20412385 +(1,21040:7116015,20412385:7368472,555093,237900 +r1,21109:7116015,20412385:0,792993,237900 +g1,21040:7116016,20412385 +(1,21040:7116016,20412385:0,452978,122846 +r1,21109:12046536,20412385:4930520,575824,122846 +k1,21040:7116016,20412385:-4930520 +) +(1,21040:7116016,20412385:4930520,452978,122846 +k1,21040:7116016,20412385:3277 +h1,21040:12043259,20412385:0,411205,112570 +) +k1,21040:14156807,20412385:2110271 +g1,21040:14484487,20412385 +) +g1,21040:14484487,20412385 +(1,21040:14484487,20412385:3483894,555093,237900 +g1,21040:14812167,20412385 +g1,21040:14812168,20412385 +g1,21040:17640701,20412385 +g1,21040:17968381,20412385 +) +g1,21040:17968381,20412385 +(1,21040:17968381,20412385:12309608,555093,237900 +g1,21040:18296061,20412385 +[1,21040:18296061,20412385:11654248,347341,237900 +(1,21040:18296061,20412385:11654248,347341,237900 +h1,21040:18277711,20412385:0,0,0 +g1,21040:19015646,20412385 +r1,21109:19376749,20412385:0,237900,237900 +k1,21040:29950309,20412385:10573560 +g1,21040:29950309,20412385 +) +] +g1,21040:29950309,20412385 +g1,21040:30277989,20412385 +) +g1,21040:30277989,20412385 +(1,21041:30277989,20412385:2162034,555093,237900 +g1,21040:30605669,20412385 +g1,21040:30605670,20412385 +k1,21041:32440023,20412385:270664 +) +g1,21041:32440023,20412385 +) +(1,21042:7116015,21534727:25324008,555093,237900 +g1,21042:7116015,21534727 +(1,21042:7116015,21534727:7368472,555093,237900 +r1,21109:7116015,21534727:0,792993,237900 +g1,21042:7116016,21534727 +g1,21042:7888030,21534727 +g1,21042:10095282,21534727 +k1,21042:14156807,21534727:2674128 +g1,21042:14484487,21534727 +) +g1,21042:14484487,21534727 +(1,21042:14484487,21534727:3483894,555093,237900 +g1,21042:14812167,21534727 +k1,21042:17640701,21534727:2828534 +g1,21042:17968381,21534727 +) +g1,21042:17968381,21534727 +(1,21042:17968381,21534727:12309608,555093,237900 +g1,21042:18296061,21534727 +[1,21042:18296061,21534727:11654248,0,237900 +(1,21042:18296061,21534727:11654248,0,237900 +h1,21042:18296061,21534727:0,0,0 +r1,21109:18296061,21534727:0,237900,237900 +k1,21042:29950309,21534727:11654248 +g1,21042:29950309,21534727 +) +] +g1,21042:29950309,21534727 +g1,21042:30277989,21534727 +) +g1,21042:30277989,21534727 +(1,21042:30277989,21534727:2162034,555093,237900 +g1,21042:30605669,21534727 +k1,21042:32440023,21534727:1834354 +) +g1,21042:32440023,21534727 +) +(1,21044:7116015,22655400:25324008,555093,237900 +g1,21043:7116015,22655400 +(1,21043:7116015,22655400:7368472,555093,237900 +r1,21109:7116015,22655400:0,792993,237900 +g1,21043:7116016,22655400 +(1,21043:7116016,22655400:0,452978,115847 +r1,21109:13805094,22655400:6689078,568825,115847 +k1,21043:7116016,22655400:-6689078 +) +(1,21043:7116016,22655400:6689078,452978,115847 +k1,21043:7116016,22655400:3277 +h1,21043:13801817,22655400:0,411205,112570 +) +k1,21043:14156807,22655400:351713 +g1,21043:14484487,22655400 +) +g1,21043:14484487,22655400 +(1,21043:14484487,22655400:3483894,555093,237900 +g1,21043:14812167,22655400 +g1,21043:14812168,22655400 +k1,21043:17640701,22655400:838861 +g1,21043:17968381,22655400 +) +g1,21043:17968381,22655400 +(1,21043:17968381,22655400:12309608,555093,237900 +g1,21043:18296061,22655400 +[1,21043:18296061,22655400:11654248,473825,237900 +(1,21043:18296061,22655400:11654248,473825,237900 +h1,21043:18278366,22655400:0,0,0 +g1,21043:20237237,22655400 +r1,21109:22543449,22655400:0,237900,237900 +k1,21043:29950309,22655400:7406860 +g1,21043:29950309,22655400 +) +] +g1,21043:29950309,22655400 +g1,21043:30277989,22655400 +) +g1,21043:30277989,22655400 +(1,21044:30277989,22655400:2162034,555093,237900 +g1,21043:30605669,22655400 +g1,21043:30605670,22655400 +k1,21044:32440023,22655400:270664 +) +g1,21044:32440023,22655400 +) +(1,21045:7116015,23448393:25324008,555093,237900 +g1,21044:7116015,23448393 +(1,21044:7116015,23448393:7368472,555093,237900 +r1,21109:7116015,23448393:0,792993,237900 +g1,21044:7116016,23448393 +(1,21044:7116016,23448393:0,459977,115847 +r1,21109:13453383,23448393:6337367,575824,115847 +k1,21044:7116016,23448393:-6337367 +) +(1,21044:7116016,23448393:6337367,459977,115847 +k1,21044:7116016,23448393:3277 +h1,21044:13450106,23448393:0,411205,112570 +) +k1,21044:14156807,23448393:703424 +g1,21044:14484487,23448393 +) +g1,21044:14484487,23448393 +(1,21044:14484487,23448393:3483894,555093,237900 +g1,21044:14812167,23448393 +g1,21044:14812168,23448393 +k1,21044:17640701,23448393:838861 +g1,21044:17968381,23448393 +) +g1,21044:17968381,23448393 +(1,21044:17968381,23448393:12309608,555093,237900 +g1,21044:18296061,23448393 +[1,21044:18296061,23448393:11654248,473825,237900 +(1,21044:18296061,23448393:11654248,473825,237900 +h1,21044:18278366,23448393:0,0,0 +g1,21044:20237237,23448393 +r1,21109:22543449,23448393:0,237900,237900 +k1,21044:29950309,23448393:7406860 +g1,21044:29950309,23448393 +) +] +g1,21044:29950309,23448393 +g1,21044:30277989,23448393 +) +g1,21044:30277989,23448393 +(1,21045:30277989,23448393:2162034,555093,237900 +g1,21044:30605669,23448393 +g1,21044:30605670,23448393 +k1,21045:32440023,23448393:270664 +) +g1,21045:32440023,23448393 +) +(1,21046:7116015,24241386:25324008,555093,237900 +g1,21045:7116015,24241386 +(1,21045:7116015,24241386:7368472,555093,237900 +r1,21109:7116015,24241386:0,792993,237900 +g1,21045:7116016,24241386 +(1,21045:7116016,24241386:0,452978,122846 +r1,21109:13805094,24241386:6689078,575824,122846 +k1,21045:7116016,24241386:-6689078 +) +(1,21045:7116016,24241386:6689078,452978,122846 +k1,21045:7116016,24241386:3277 +h1,21045:13801817,24241386:0,411205,112570 +) +k1,21045:14156807,24241386:351713 +g1,21045:14484487,24241386 +) +g1,21045:14484487,24241386 +(1,21045:14484487,24241386:3483894,555093,237900 +g1,21045:14812167,24241386 +g1,21045:14812168,24241386 +k1,21045:17640701,24241386:838861 +g1,21045:17968381,24241386 +) +g1,21045:17968381,24241386 +(1,21045:17968381,24241386:12309608,555093,237900 +g1,21045:18296061,24241386 +[1,21045:18296061,24241386:11654248,505283,237900 +(1,21045:18296061,24241386:11654248,505283,237900 +h1,21045:18269847,24241386:0,0,0 +g1,21045:20457438,24241386 +g1,21045:23557290,24241386 +g1,21045:26538522,24241386 +r1,21109:28844734,24241386:0,237900,237900 +k1,21045:29950309,24241386:1105575 +g1,21045:29950309,24241386 +) +] +g1,21045:29950309,24241386 +g1,21045:30277989,24241386 +) +g1,21045:30277989,24241386 +(1,21046:30277989,24241386:2162034,555093,237900 +g1,21045:30605669,24241386 +g1,21045:30605670,24241386 +k1,21046:32440023,24241386:270664 +) +g1,21046:32440023,24241386 +) +(1,21047:7116015,25034379:25324008,555093,237900 +g1,21046:7116015,25034379 +(1,21046:7116015,25034379:7368472,555093,237900 +r1,21109:7116015,25034379:0,792993,237900 +g1,21046:7116016,25034379 +(1,21046:7116016,25034379:0,452978,122846 +r1,21109:14156807,25034379:7040791,575824,122846 +k1,21046:7116016,25034379:-7040791 +) +(1,21046:7116016,25034379:7040791,452978,122846 +k1,21046:7116016,25034379:3277 +h1,21046:14153530,25034379:0,411205,112570 +) +g1,21046:14156807,25034379 +g1,21046:14484487,25034379 +) +g1,21046:14484487,25034379 +(1,21046:14484487,25034379:3483894,555093,237900 +g1,21046:14812167,25034379 +g1,21046:14812168,25034379 +k1,21046:17640701,25034379:838861 +g1,21046:17968381,25034379 +) +g1,21046:17968381,25034379 +(1,21046:17968381,25034379:12309608,555093,237900 +g1,21046:18296061,25034379 +[1,21046:18296061,25034379:11654248,505283,237900 +(1,21046:18296061,25034379:11654248,505283,237900 +h1,21046:18269847,25034379:0,0,0 +g1,21046:20457438,25034379 +g1,21046:23557290,25034379 +g1,21046:26538522,25034379 +r1,21109:28844734,25034379:0,237900,237900 +k1,21046:29950309,25034379:1105575 +g1,21046:29950309,25034379 +) +] +g1,21046:29950309,25034379 +g1,21046:30277989,25034379 +) +g1,21046:30277989,25034379 +(1,21047:30277989,25034379:2162034,555093,237900 +g1,21046:30605669,25034379 +g1,21046:30605670,25034379 +k1,21047:32440023,25034379:270664 +) +g1,21047:32440023,25034379 +) +(1,21048:7116015,25827372:25324008,555093,237900 +g1,21047:7116015,25827372 +(1,21047:7116015,25827372:7368472,555093,237900 +r1,21109:7116015,25827372:0,792993,237900 +g1,21047:7116016,25827372 +(1,21047:7116016,25827372:0,452978,122846 +r1,21109:14156807,25827372:7040791,575824,122846 +k1,21047:7116016,25827372:-7040791 +) +(1,21047:7116016,25827372:7040791,452978,122846 +k1,21047:7116016,25827372:3277 +h1,21047:14153530,25827372:0,411205,112570 +) +g1,21047:14156807,25827372 +g1,21047:14484487,25827372 +) +g1,21047:14484487,25827372 +(1,21047:14484487,25827372:3483894,555093,237900 +g1,21047:14812167,25827372 +g1,21047:14812168,25827372 +k1,21047:17640701,25827372:838861 +g1,21047:17968381,25827372 +) +g1,21047:17968381,25827372 +(1,21047:17968381,25827372:12309608,555093,237900 +g1,21047:18296061,25827372 +[1,21047:18296061,25827372:11654248,505283,237900 +(1,21047:18296061,25827372:11654248,505283,237900 +h1,21047:18269847,25827372:0,0,0 +g1,21047:20457438,25827372 +g1,21047:22839671,25827372 +r1,21109:24285395,25827372:0,237900,237900 +k1,21047:29950309,25827372:5664914 +g1,21047:29950309,25827372 +) +] +g1,21047:29950309,25827372 +g1,21047:30277989,25827372 +) +g1,21047:30277989,25827372 +(1,21048:30277989,25827372:2162034,555093,237900 +g1,21047:30605669,25827372 +g1,21047:30605670,25827372 +k1,21048:32440023,25827372:180880 +) +g1,21048:32440023,25827372 +) +(1,21061:7116015,26620365:25324008,555093,237900 +g1,21048:7116015,26620365 +(1,21048:7116015,26620365:7368472,555093,237900 +r1,21109:7116015,26620365:0,792993,237900 +g1,21048:7116016,26620365 +(1,21048:7116016,26620365:0,452978,122846 +r1,21109:13805094,26620365:6689078,575824,122846 +k1,21048:7116016,26620365:-6689078 +) +(1,21048:7116016,26620365:6689078,452978,122846 +k1,21048:7116016,26620365:3277 +h1,21048:13801817,26620365:0,411205,112570 +) +k1,21048:14156807,26620365:351713 +g1,21048:14484487,26620365 +) +g1,21048:14484487,26620365 +(1,21048:14484487,26620365:3483894,555093,237900 +g1,21048:14812167,26620365 +g1,21048:14812168,26620365 +k1,21048:17640701,26620365:838861 +g1,21048:17968381,26620365 +) +g1,21048:17968381,26620365 +(1,21048:17968381,26620365:12309608,555093,237900 +g1,21048:18296061,26620365 +[1,21048:18296061,26620365:11654248,347341,237900 +(1,21048:18296061,26620365:11654248,347341,237900 +h1,21048:18277711,26620365:0,0,0 +g1,21048:19015646,26620365 +r1,21109:19376749,26620365:0,237900,237900 +k1,21048:29950309,26620365:10573560 +g1,21048:29950309,26620365 +) +] +g1,21048:29950309,26620365 +g1,21048:30277989,26620365 +) +g1,21048:30277989,26620365 +(1,21061:30277989,26620365:2162034,555093,237900 +g1,21048:30605669,26620365 +g1,21048:30605670,26620365 +k1,21061:32440023,26620365:270664 +) +g1,21061:32440023,26620365 +) +] +$1,21062:32440023,20027135 +) +g1,21062:32440023,20027135 +) +(1,21062:6916786,27220285:25523237,65536,0 +g1,21062:6916786,27220285 +(1,21062:6916786,27220285:25523237,65536,0 +r1,21109:32440023,27220285:25523237,65536,0 +) +g1,21062:32440023,27220285 +) +] +g1,21062:32440023,27220285 +k1,21062:32583029,27220285:143006 +) +] +] +(1,21103:6630773,29186365:25952256,505283,126483 +h1,21102:6630773,29186365:983040,0,0 +k1,21102:10490281,29186365:307457 +(1,21102:10490281,29186365:0,452978,122846 +r1,21109:16124224,29186365:5633943,575824,122846 +k1,21102:10490281,29186365:-5633943 +) +(1,21102:10490281,29186365:5633943,452978,122846 +k1,21102:10490281,29186365:3277 +h1,21102:16120947,29186365:0,411205,112570 +) +k1,21102:16431682,29186365:307458 +k1,21102:17270636,29186365:307457 +k1,21102:19091319,29186365:307457 +k1,21102:20050205,29186365:307458 +k1,21102:24204625,29186365:307457 +k1,21102:27126969,29186365:307457 +k1,21102:30552630,29186365:307458 +k1,21102:32051532,29186365:307457 +k1,21102:32583029,29186365:0 +) +(1,21103:6630773,30051445:25952256,513147,134348 +k1,21102:8399760,30051445:167287 +k1,21102:11872028,30051445:167287 +k1,21102:13552540,30051445:167286 +k1,21102:15113778,30051445:167287 +(1,21102:15113778,30051445:0,452978,122846 +r1,21109:18989162,30051445:3875384,575824,122846 +k1,21102:15113778,30051445:-3875384 +) +(1,21102:15113778,30051445:3875384,452978,122846 +k1,21102:15113778,30051445:3277 +h1,21102:18985885,30051445:0,411205,112570 +) +k1,21102:19156449,30051445:167287 +k1,21102:20515181,30051445:167287 +(1,21102:20515181,30051445:0,452978,122846 +r1,21109:24742277,30051445:4227096,575824,122846 +k1,21102:20515181,30051445:-4227096 +) +(1,21102:20515181,30051445:4227096,452978,122846 +k1,21102:20515181,30051445:3277 +h1,21102:24739000,30051445:0,411205,112570 +) +k1,21102:24909564,30051445:167287 +k1,21102:26774888,30051445:167286 +k1,21102:29129767,30051445:167287 +k1,21102:30686417,30051445:167287 +k1,21102:32583029,30051445:0 +) +(1,21103:6630773,30916525:25952256,513147,134348 +k1,21102:8526249,30916525:142388 +k1,21102:11282868,30916525:142388 +k1,21102:14451052,30916525:142387 +k1,21102:15585000,30916525:142388 +k1,21102:17240614,30916525:142388 +k1,21102:18034430,30916525:142388 +k1,21102:19374161,30916525:142388 +k1,21102:20905911,30916525:142387 +k1,21102:23066153,30916525:142388 +k1,21102:23666638,30916525:142388 +k1,21102:24340523,30916525:142388 +k1,21102:27260327,30916525:142388 +k1,21102:28054142,30916525:142387 +k1,21102:29393873,30916525:142388 +k1,21102:29892121,30916525:142388 +k1,21102:32583029,30916525:0 +) +(1,21103:6630773,31781605:25952256,513147,134348 +k1,21102:9029765,31781605:195016 +k1,21102:10243867,31781605:195017 +k1,21102:11828246,31781605:195016 +k1,21102:13711470,31781605:195017 +k1,21102:14557914,31781605:195016 +k1,21102:15772016,31781605:195017 +k1,21102:17654584,31781605:195016 +k1,21102:18891622,31781605:195016 +k1,21102:20289880,31781605:195017 +k1,21102:21136324,31781605:195016 +k1,21102:22079107,31781605:195017 +k1,21102:25077753,31781605:195016 +k1,21102:27887001,31781605:195017 +k1,21102:31107814,31781605:195016 +k1,21102:32583029,31781605:0 +) +(1,21103:6630773,32646685:25952256,513147,134348 +k1,21102:7545066,32646685:262865 +k1,21102:9315914,32646685:262865 +k1,21102:10597864,32646685:262865 +k1,21102:13296047,32646685:262865 +k1,21102:16346814,32646685:262865 +k1,21102:19178690,32646685:262865 +k1,21102:22467352,32646685:262865 +k1,21102:24297838,32646685:262865 +k1,21102:27140855,32646685:262865 +k1,21102:30232253,32646685:262865 +k1,21102:32583029,32646685:0 +) +(1,21103:6630773,33511765:25952256,513147,134348 +k1,21102:8487467,33511765:217639 +k1,21102:10394625,33511765:217640 +k1,21102:11631349,33511765:217639 +k1,21102:14463219,33511765:217639 +k1,21102:17706655,33511765:217639 +k1,21102:19491916,33511765:217640 +k1,21102:22620009,33511765:217639 +k1,21102:24827320,33511765:217639 +k1,21102:26236404,33511765:217639 +k1,21102:29218352,33511765:217640 +k1,21102:30943974,33511765:217639 +k1,21102:32583029,33511765:0 +) +(1,21103:6630773,34376845:25952256,513147,126483 +k1,21102:7457135,34376845:210324 +k1,21102:9056821,34376845:210323 +k1,21102:11153271,34376845:210324 +k1,21102:11719455,34376845:210324 +k1,21102:14692122,34376845:210324 +k1,21102:16814130,34376845:210323 +k1,21102:18767712,34376845:210324 +h1,21102:19738300,34376845:0,0,0 +k1,21102:19948624,34376845:210324 +k1,21102:20690444,34376845:210323 +k1,21102:23269895,34376845:210324 +k1,21102:24747685,34376845:210324 +k1,21102:27740668,34376845:210324 +k1,21102:29147678,34376845:210323 +k1,21102:30733603,34376845:210324 +k1,21103:32583029,34376845:0 +) +(1,21103:6630773,35241925:25952256,513147,126483 +k1,21102:8276055,35241925:202179 +k1,21102:11113436,35241925:202178 +k1,21102:12334700,35241925:202179 +k1,21102:15151109,35241925:202178 +k1,21102:18379085,35241925:202179 +k1,21102:19197301,35241925:202178 +k1,21102:20418565,35241925:202179 +k1,21102:21793183,35241925:202179 +k1,21102:24604349,35241925:202178 +k1,21102:25465820,35241925:202179 +k1,21102:26687083,35241925:202178 +k1,21102:28454917,35241925:202179 +k1,21102:29188592,35241925:202178 +k1,21102:30006809,35241925:202179 +k1,21102:32583029,35241925:0 +) +(1,21103:6630773,36107005:25952256,513147,134348 +k1,21102:7855288,36107005:205430 +k1,21102:10496036,36107005:205430 +k1,21102:13315697,36107005:205430 +k1,21102:14052625,36107005:205431 +k1,21102:15675599,36107005:205430 +k1,21102:16563914,36107005:205430 +k1,21102:18009285,36107005:205430 +k1,21102:19284263,36107005:205430 +k1,21102:21233606,36107005:205430 +k1,21102:23006658,36107005:205431 +k1,21102:25792240,36107005:205430 +k1,21102:27987342,36107005:205430 +k1,21102:29184332,36107005:205430 +k1,21102:32583029,36107005:0 +) +(1,21103:6630773,36972085:25952256,513147,134348 +g1,21102:10365669,36972085 +g1,21102:11958849,36972085 +g1,21102:13901991,36972085 +g1,21102:15668841,36972085 +g1,21102:18448222,36972085 +k1,21103:32583029,36972085:11253846 +g1,21103:32583029,36972085 +) +(1,21105:6630773,37837165:25952256,513147,134348 +h1,21104:6630773,37837165:983040,0,0 +k1,21104:8992908,37837165:182408 +k1,21104:13429259,37837165:182409 +k1,21104:17104736,37837165:182408 +k1,21104:18048673,37837165:182409 +k1,21104:19808533,37837165:182408 +k1,21104:21182386,37837165:182408 +k1,21104:23336773,37837165:182409 +k1,21104:25262439,37837165:182408 +k1,21104:26060886,37837165:182409 +k1,21104:27527800,37837165:182408 +k1,21104:29287661,37837165:182409 +k1,21104:30001566,37837165:182408 +k1,21104:32583029,37837165:0 +) +(1,21105:6630773,38702245:25952256,505283,134348 +k1,21104:7984151,38702245:161933 +k1,21104:10118063,38702245:161934 +k1,21104:14673530,38702245:161933 +k1,21104:15463298,38702245:161933 +k1,21104:17076853,38702245:161933 +k1,21104:18605868,38702245:161934 +k1,21104:19786886,38702245:161933 +k1,21104:24202761,38702245:161933 +k1,21104:25468976,38702245:161933 +k1,21104:26378676,38702245:161934 +k1,21104:29809545,38702245:161933 +k1,21104:32583029,38702245:0 +) +(1,21105:6630773,39567325:25952256,513147,126483 +k1,21104:9679861,39567325:155018 +k1,21104:11026324,39567325:155018 +k1,21104:15237364,39567325:155017 +k1,21104:17193311,39567325:155018 +k1,21104:18034491,39567325:155018 +k1,21104:20265034,39567325:155018 +k1,21104:22275375,39567325:155017 +k1,21104:22961890,39567325:155018 +k1,21104:25094129,39567325:155018 +k1,21104:26947185,39567325:155018 +k1,21104:27970554,39567325:155017 +k1,21104:30060850,39567325:155018 +k1,21104:30867296,39567325:155018 +k1,21104:32583029,39567325:0 +) +(1,21105:6630773,40432405:25952256,513147,134348 +k1,21104:8817982,40432405:162147 +k1,21104:12760246,40432405:162147 +k1,21104:15114572,40432405:162147 +k1,21104:17326030,40432405:162147 +k1,21104:18019674,40432405:162147 +k1,21104:19783520,40432405:162146 +k1,21104:23250648,40432405:162147 +k1,21104:24926021,40432405:162147 +k1,21104:26482119,40432405:162147 +k1,21104:28033629,40432405:162147 +k1,21104:30039959,40432405:162147 +k1,21104:30853534,40432405:162147 +k1,21104:32583029,40432405:0 +) +(1,21105:6630773,41297485:25952256,513147,134348 +g1,21104:9922646,41297485 +g1,21104:12140384,41297485 +g1,21104:13022498,41297485 +g1,21104:14923697,41297485 +g1,21104:18072701,41297485 +k1,21105:32583029,41297485:11852188 +g1,21105:32583029,41297485 +) +(1,21107:6630773,42162565:25952256,513147,134348 +h1,21106:6630773,42162565:983040,0,0 +k1,21106:9530481,42162565:198969 +k1,21106:12424945,42162565:198968 +(1,21106:12424945,42162565:0,452978,122846 +r1,21109:17355465,42162565:4930520,575824,122846 +k1,21106:12424945,42162565:-4930520 +) +(1,21106:12424945,42162565:4930520,452978,122846 +k1,21106:12424945,42162565:3277 +h1,21106:17352188,42162565:0,411205,112570 +) +k1,21106:17554434,42162565:198969 +k1,21106:19321024,42162565:198969 +k1,21106:22100145,42162565:198969 +k1,21106:24288785,42162565:198968 +k1,21106:25019251,42162565:198969 +k1,21106:26731446,42162565:198969 +k1,21106:28798846,42162565:198969 +k1,21106:29649242,42162565:198968 +k1,21106:31563944,42162565:198969 +k1,21106:32583029,42162565:0 +) +(1,21107:6630773,43027645:25952256,505283,134348 +k1,21106:11094496,43027645:209781 +k1,21106:13347033,43027645:209780 +k1,21106:14318342,43027645:209781 +k1,21106:17104343,43027645:209781 +k1,21106:18084827,43027645:209781 +k1,21106:20142722,43027645:209780 +k1,21106:23838363,43027645:209781 +k1,21106:26483462,43027645:209781 +k1,21106:27884687,43027645:209780 +k1,21106:31130096,43027645:209781 +k1,21107:32583029,43027645:0 +) +(1,21107:6630773,43892725:25952256,513147,126483 +k1,21106:8439691,43892725:211150 +k1,21106:9598492,43892725:211150 +k1,21106:11261264,43892725:211150 +k1,21106:15387535,43892725:211150 +k1,21106:16552234,43892725:211150 +k1,21106:18293650,43892725:211150 +k1,21106:19156228,43892725:211150 +k1,21106:20459862,43892725:211149 +k1,21106:21690097,43892725:211150 +(1,21106:21690097,43892725:0,452978,115847 +r1,21109:23455210,43892725:1765113,568825,115847 +k1,21106:21690097,43892725:-1765113 +) +(1,21106:21690097,43892725:1765113,452978,115847 +k1,21106:21690097,43892725:3277 +h1,21106:23451933,43892725:0,411205,112570 +) +k1,21106:23666360,43892725:211150 +k1,21106:26122773,43892725:211150 +k1,21106:26993215,43892725:211150 +k1,21106:28223450,43892725:211150 +k1,21106:31048831,43892725:211150 +k1,21107:32583029,43892725:0 +) +(1,21107:6630773,44757805:25952256,513147,7863 +g1,21106:8427770,44757805 +g1,21106:9574650,44757805 +g1,21106:11952296,44757805 +g1,21106:12802953,44757805 +g1,21106:13749948,44757805 +k1,21107:32583029,44757805:16779838 +g1,21107:32583029,44757805 +) +] +(1,21109:32583029,45706769:0,0,0 +g1,21109:32583029,45706769 +) +) +] +(1,21109:6630773,47279633:25952256,0,0 +h1,21109:6630773,47279633:25952256,0,0 +) +] +(1,21109:4262630,4025873:0,0,0 +[1,21109:-473656,4025873:0,0,0 +(1,21109:-473656,-710413:0,0,0 +(1,21109:-473656,-710413:0,0,0 +g1,21109:-473656,-710413 +) +g1,21109:-473656,-710413 ) ] ) ] !38103 -}355 -Input:3841:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3842:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3843:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3844:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}356 Input:3845:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3846:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3847:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -365616,886 +365820,886 @@ Input:3860:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3861:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3862:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3863:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3864:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3865:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3866:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2128 -{356 -[1,21162:4262630,47279633:28320399,43253760,0 -(1,21162:4262630,4025873:0,0,0 -[1,21162:-473656,4025873:0,0,0 -(1,21162:-473656,-710413:0,0,0 -(1,21162:-473656,-644877:0,0,0 -k1,21162:-473656,-644877:-65536 +{357 +[1,21160:4262630,47279633:28320399,43253760,0 +(1,21160:4262630,4025873:0,0,0 +[1,21160:-473656,4025873:0,0,0 +(1,21160:-473656,-710413:0,0,0 +(1,21160:-473656,-644877:0,0,0 +k1,21160:-473656,-644877:-65536 ) -(1,21162:-473656,4736287:0,0,0 -k1,21162:-473656,4736287:5209943 +(1,21160:-473656,4736287:0,0,0 +k1,21160:-473656,4736287:5209943 ) -g1,21162:-473656,-710413 +g1,21160:-473656,-710413 ) ] ) -[1,21162:6630773,47279633:25952256,43253760,0 -[1,21162:6630773,4812305:25952256,786432,0 -(1,21162:6630773,4812305:25952256,505283,11795 -(1,21162:6630773,4812305:25952256,505283,11795 -g1,21162:3078558,4812305 -[1,21162:3078558,4812305:0,0,0 -(1,21162:3078558,2439708:0,1703936,0 -k1,21162:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21162:2537886,2439708:1179648,16384,0 +[1,21160:6630773,47279633:25952256,43253760,0 +[1,21160:6630773,4812305:25952256,786432,0 +(1,21160:6630773,4812305:25952256,505283,11795 +(1,21160:6630773,4812305:25952256,505283,11795 +g1,21160:3078558,4812305 +[1,21160:3078558,4812305:0,0,0 +(1,21160:3078558,2439708:0,1703936,0 +k1,21160:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21160:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21162:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21160:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21162:3078558,4812305:0,0,0 -(1,21162:3078558,2439708:0,1703936,0 -g1,21162:29030814,2439708 -g1,21162:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21162:36151628,1915420:16384,1179648,0 +[1,21160:3078558,4812305:0,0,0 +(1,21160:3078558,2439708:0,1703936,0 +g1,21160:29030814,2439708 +g1,21160:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21160:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21162:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21160:37855564,2439708:1179648,16384,0 ) ) -k1,21162:3078556,2439708:-34777008 +k1,21160:3078556,2439708:-34777008 ) ] -[1,21162:3078558,4812305:0,0,0 -(1,21162:3078558,49800853:0,16384,2228224 -k1,21162:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21162:2537886,49800853:1179648,16384,0 +[1,21160:3078558,4812305:0,0,0 +(1,21160:3078558,49800853:0,16384,2228224 +k1,21160:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21160:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21162:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21160:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21162:3078558,4812305:0,0,0 -(1,21162:3078558,49800853:0,16384,2228224 -g1,21162:29030814,49800853 -g1,21162:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21162:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21162:37855564,49800853:1179648,16384,0 -) -) -k1,21162:3078556,49800853:-34777008 -) -] -g1,21162:6630773,4812305 -g1,21162:6630773,4812305 -g1,21162:8724648,4812305 -k1,21162:31387652,4812305:22663004 -) -) -] -[1,21162:6630773,45706769:25952256,40108032,0 -(1,21162:6630773,45706769:25952256,40108032,0 -(1,21162:6630773,45706769:0,0,0 -g1,21162:6630773,45706769 -) -[1,21162:6630773,45706769:25952256,40108032,0 -v1,21111:6630773,6254097:0,393216,0 -(1,21122:6630773,11388765:25952256,5527884,196608 -g1,21122:6630773,11388765 -g1,21122:6630773,11388765 -g1,21122:6434165,11388765 -(1,21122:6434165,11388765:0,5527884,196608 -r1,21162:32779637,11388765:26345472,5724492,196608 -k1,21122:6434165,11388765:-26345472 -) -(1,21122:6434165,11388765:26345472,5527884,196608 -[1,21122:6630773,11388765:25952256,5331276,0 -(1,21113:6630773,6481928:25952256,424439,106246 -(1,21112:6630773,6481928:0,0,0 -g1,21112:6630773,6481928 -g1,21112:6630773,6481928 -g1,21112:6303093,6481928 -(1,21112:6303093,6481928:0,0,0 -) -g1,21112:6630773,6481928 -) -g1,21113:8954451,6481928 -k1,21113:8954451,6481928:0 -h1,21113:9618359,6481928:0,0,0 -k1,21113:32583029,6481928:22964670 -g1,21113:32583029,6481928 -) -(1,21114:6630773,7166783:25952256,424439,112852 -h1,21114:6630773,7166783:0,0,0 -g1,21114:6962727,7166783 -g1,21114:7294681,7166783 -g1,21114:11278129,7166783 -g1,21114:11942037,7166783 -k1,21114:11942037,7166783:0 -h1,21114:14265715,7166783:0,0,0 -k1,21114:32583029,7166783:18317314 -g1,21114:32583029,7166783 -) -(1,21115:6630773,7851638:25952256,431045,112852 -h1,21115:6630773,7851638:0,0,0 -g1,21115:6962727,7851638 -g1,21115:7294681,7851638 -g1,21115:7626635,7851638 -g1,21115:7958589,7851638 -g1,21115:8290543,7851638 -g1,21115:8622497,7851638 -g1,21115:8954451,7851638 -g1,21115:9286405,7851638 -g1,21115:9618359,7851638 -g1,21115:12273991,7851638 -g1,21115:12937899,7851638 -g1,21115:14929623,7851638 -g1,21115:15593531,7851638 -g1,21115:19908933,7851638 -g1,21115:20572841,7851638 -g1,21115:21236749,7851638 -g1,21115:23228473,7851638 -h1,21115:23560427,7851638:0,0,0 -k1,21115:32583029,7851638:9022602 -g1,21115:32583029,7851638 -) -(1,21116:6630773,8536493:25952256,424439,112852 -h1,21116:6630773,8536493:0,0,0 -g1,21116:6962727,8536493 -g1,21116:7294681,8536493 -g1,21116:13269852,8536493 -g1,21116:13933760,8536493 -h1,21116:16257438,8536493:0,0,0 -k1,21116:32583029,8536493:16325591 -g1,21116:32583029,8536493 -) -(1,21117:6630773,9221348:25952256,424439,106246 -h1,21117:6630773,9221348:0,0,0 -g1,21117:7626635,9221348 -g1,21117:8622497,9221348 -g1,21117:10946175,9221348 -h1,21117:11278129,9221348:0,0,0 -k1,21117:32583029,9221348:21304900 -g1,21117:32583029,9221348 -) -(1,21118:6630773,9906203:25952256,424439,112852 -h1,21118:6630773,9906203:0,0,0 -g1,21118:6962727,9906203 -g1,21118:7294681,9906203 -g1,21118:14597667,9906203 -g1,21118:15261575,9906203 -g1,21118:24224332,9906203 -g1,21118:24888240,9906203 -g1,21118:26879964,9906203 -g1,21118:28871688,9906203 -g1,21118:29535596,9906203 -k1,21118:29535596,9906203:0 -h1,21118:31195366,9906203:0,0,0 -k1,21118:32583029,9906203:1387663 -g1,21118:32583029,9906203 -) -(1,21119:6630773,10591058:25952256,424439,79822 -h1,21119:6630773,10591058:0,0,0 -g1,21119:6962727,10591058 -g1,21119:7294681,10591058 -g1,21119:7626635,10591058 -g1,21119:7958589,10591058 -g1,21119:8290543,10591058 -g1,21119:8622497,10591058 -g1,21119:8954451,10591058 -g1,21119:9286405,10591058 -g1,21119:9618359,10591058 -g1,21119:9950313,10591058 -g1,21119:10282267,10591058 -g1,21119:10614221,10591058 -g1,21119:10946175,10591058 -g1,21119:11278129,10591058 -g1,21119:11610083,10591058 -g1,21119:13933761,10591058 -g1,21119:14597669,10591058 -g1,21119:16921347,10591058 -h1,21119:17253301,10591058:0,0,0 -k1,21119:32583029,10591058:15329728 -g1,21119:32583029,10591058 -) -(1,21120:6630773,11275913:25952256,424439,112852 -h1,21120:6630773,11275913:0,0,0 -g1,21120:6962727,11275913 -g1,21120:7294681,11275913 -k1,21120:7294681,11275913:0 -h1,21120:12937898,11275913:0,0,0 -k1,21120:32583030,11275913:19645132 -g1,21120:32583030,11275913 -) -] -) -g1,21122:32583029,11388765 -g1,21122:6630773,11388765 -g1,21122:6630773,11388765 -g1,21122:32583029,11388765 -g1,21122:32583029,11388765 -) -h1,21122:6630773,11585373:0,0,0 -(1,21126:6630773,12450453:25952256,513147,134348 -h1,21125:6630773,12450453:983040,0,0 -k1,21125:9073400,12450453:262900 -k1,21125:11793245,12450453:262900 -k1,21125:12715437,12450453:262900 -k1,21125:15593225,12450453:262901 -k1,21125:16387622,12450453:262900 -k1,21125:17585065,12450453:262900 -k1,21125:18609493,12450453:262900 -k1,21125:19228253,12450453:262900 -k1,21125:22151915,12450453:262900 -k1,21125:25612318,12450453:262901 -k1,21125:26491256,12450453:262900 -k1,21125:28143519,12450453:262900 -k1,21125:30024503,12450453:262900 -k1,21125:32583029,12450453:0 -) -(1,21126:6630773,13315533:25952256,505283,126483 -k1,21125:10458578,13315533:216771 -(1,21125:10458578,13315533:0,414482,115847 -r1,21162:10816844,13315533:358266,530329,115847 -k1,21125:10458578,13315533:-358266 -) -(1,21125:10458578,13315533:358266,414482,115847 -k1,21125:10458578,13315533:3277 -h1,21125:10813567,13315533:0,411205,112570 -) -k1,21125:11033616,13315533:216772 -k1,21125:12441832,13315533:216771 -(1,21125:12441832,13315533:0,414482,115847 -r1,21162:12800098,13315533:358266,530329,115847 -k1,21125:12441832,13315533:-358266 -) -(1,21125:12441832,13315533:358266,414482,115847 -k1,21125:12441832,13315533:3277 -h1,21125:12796821,13315533:0,411205,112570 -) -k1,21125:13190540,13315533:216772 -k1,21125:15933069,13315533:216771 -k1,21125:17625055,13315533:216771 -k1,21125:19624406,13315533:216772 -(1,21125:19624406,13315533:0,452978,115847 -r1,21162:22092943,13315533:2468537,568825,115847 -k1,21125:19624406,13315533:-2468537 -) -(1,21125:19624406,13315533:2468537,452978,115847 -k1,21125:19624406,13315533:3277 -h1,21125:22089666,13315533:0,411205,112570 -) -k1,21125:22309714,13315533:216771 -k1,21125:23717930,13315533:216771 -k1,21125:25386324,13315533:216772 -k1,21125:27065203,13315533:216771 -k1,21125:27813472,13315533:216772 -k1,21125:31839851,13315533:216771 -k1,21125:32583029,13315533:0 -) -(1,21126:6630773,14180613:25952256,513147,134348 -g1,21125:7600705,14180613 -g1,21125:10203795,14180613 -g1,21125:11819912,14180613 -g1,21125:14679903,14180613 -g1,21125:17514335,14180613 -g1,21125:19505974,14180613 -g1,21125:20364495,14180613 -g1,21125:20919584,14180613 -g1,21125:23012803,14180613 -g1,21125:23743529,14180613 -k1,21126:32583029,14180613:8101565 -g1,21126:32583029,14180613 -) -v1,21128:6630773,14865468:0,393216,0 -(1,21135:6630773,17260716:25952256,2788464,196608 -g1,21135:6630773,17260716 -g1,21135:6630773,17260716 -g1,21135:6434165,17260716 -(1,21135:6434165,17260716:0,2788464,196608 -r1,21162:32779637,17260716:26345472,2985072,196608 -k1,21135:6434165,17260716:-26345472 -) -(1,21135:6434165,17260716:26345472,2788464,196608 -[1,21135:6630773,17260716:25952256,2591856,0 -(1,21130:6630773,15093299:25952256,424439,106246 -(1,21129:6630773,15093299:0,0,0 -g1,21129:6630773,15093299 -g1,21129:6630773,15093299 -g1,21129:6303093,15093299 -(1,21129:6303093,15093299:0,0,0 -) -g1,21129:6630773,15093299 -) -g1,21130:7626635,15093299 -g1,21130:8622497,15093299 -g1,21130:10946175,15093299 -h1,21130:11278129,15093299:0,0,0 -k1,21130:32583029,15093299:21304900 -g1,21130:32583029,15093299 -) -(1,21131:6630773,15778154:25952256,424439,112852 -h1,21131:6630773,15778154:0,0,0 -g1,21131:6962727,15778154 -g1,21131:7294681,15778154 -g1,21131:14597667,15778154 -g1,21131:15261575,15778154 -g1,21131:22564561,15778154 -g1,21131:23228469,15778154 -g1,21131:25220193,15778154 -g1,21131:25884101,15778154 -g1,21131:26548009,15778154 -k1,21131:26548009,15778154:0 -h1,21131:27543871,15778154:0,0,0 -k1,21131:32583029,15778154:5039158 -g1,21131:32583029,15778154 -) -(1,21132:6630773,16463009:25952256,424439,79822 -h1,21132:6630773,16463009:0,0,0 -g1,21132:6962727,16463009 -g1,21132:7294681,16463009 -g1,21132:7626635,16463009 -g1,21132:7958589,16463009 -g1,21132:8290543,16463009 -g1,21132:8622497,16463009 -g1,21132:8954451,16463009 -g1,21132:9286405,16463009 -g1,21132:9618359,16463009 -g1,21132:9950313,16463009 -g1,21132:10282267,16463009 -g1,21132:10614221,16463009 -g1,21132:10946175,16463009 -g1,21132:11278129,16463009 -g1,21132:11610083,16463009 -g1,21132:13933761,16463009 -g1,21132:14597669,16463009 -g1,21132:16921347,16463009 -h1,21132:17253301,16463009:0,0,0 -k1,21132:32583029,16463009:15329728 -g1,21132:32583029,16463009 -) -(1,21133:6630773,17147864:25952256,424439,112852 -h1,21133:6630773,17147864:0,0,0 -g1,21133:6962727,17147864 -g1,21133:7294681,17147864 -k1,21133:7294681,17147864:0 -h1,21133:12605945,17147864:0,0,0 -k1,21133:32583029,17147864:19977084 -g1,21133:32583029,17147864 -) -] -) -g1,21135:32583029,17260716 -g1,21135:6630773,17260716 -g1,21135:6630773,17260716 -g1,21135:32583029,17260716 -g1,21135:32583029,17260716 -) -h1,21135:6630773,17457324:0,0,0 -v1,21139:6630773,18142179:0,393216,0 -(1,21143:6630773,18459740:25952256,710777,196608 -g1,21143:6630773,18459740 -g1,21143:6630773,18459740 -g1,21143:6434165,18459740 -(1,21143:6434165,18459740:0,710777,196608 -r1,21162:32779637,18459740:26345472,907385,196608 -k1,21143:6434165,18459740:-26345472 -) -(1,21143:6434165,18459740:26345472,710777,196608 -[1,21143:6630773,18459740:25952256,514169,0 -(1,21141:6630773,18353494:25952256,407923,106246 -(1,21140:6630773,18353494:0,0,0 -g1,21140:6630773,18353494 -g1,21140:6630773,18353494 -g1,21140:6303093,18353494 -(1,21140:6303093,18353494:0,0,0 -) -g1,21140:6630773,18353494 -) -g1,21141:7626635,18353494 -g1,21141:8290543,18353494 -h1,21141:8954451,18353494:0,0,0 -k1,21141:32583029,18353494:23628578 -g1,21141:32583029,18353494 -) -] -) -g1,21143:32583029,18459740 -g1,21143:6630773,18459740 -g1,21143:6630773,18459740 -g1,21143:32583029,18459740 -g1,21143:32583029,18459740 -) -h1,21143:6630773,18656348:0,0,0 -(1,21146:6630773,28356679:25952256,9634795,0 -k1,21146:6760463,28356679:129690 -h1,21145:6760463,28356679:0,0,0 -(1,21145:6760463,28356679:25692876,9634795,0 -(1,21145:6760463,28356679:25692851,9634819,0 -(1,21145:6760463,28356679:25692851,9634819,0 -(1,21145:6760463,28356679:0,9634819,0 -(1,21145:6760463,28356679:0,14208860,0 -(1,21145:6760463,28356679:37890292,14208860,0 -) -k1,21145:6760463,28356679:-37890292 -) -) -g1,21145:32453314,28356679 -) -) -) -g1,21146:32453339,28356679 -k1,21146:32583029,28356679:129690 -) -(1,21154:6630773,31187839:25952256,32768,229376 -(1,21154:6630773,31187839:0,32768,229376 -(1,21154:6630773,31187839:5505024,32768,229376 -r1,21162:12135797,31187839:5505024,262144,229376 -) -k1,21154:6630773,31187839:-5505024 -) -(1,21154:6630773,31187839:25952256,32768,0 -r1,21162:32583029,31187839:25952256,32768,0 -) -) -(1,21154:6630773,32819691:25952256,606339,14155 -(1,21154:6630773,32819691:2464678,582746,14155 -g1,21154:6630773,32819691 -g1,21154:9095451,32819691 -) -k1,21154:32583029,32819691:21077950 -g1,21154:32583029,32819691 -) -(1,21158:6630773,34077987:25952256,513147,126483 -k1,21157:7469130,34077987:210522 -k1,21157:9713233,34077987:210521 -k1,21157:12532743,34077987:210522 -k1,21157:13402557,34077987:210522 -k1,21157:14816319,34077987:210521 -k1,21157:17618135,34077987:210522 -k1,21157:19430357,34077987:210522 -k1,21157:22632598,34077987:210522 -k1,21157:24318334,34077987:210521 -k1,21157:26042082,34077987:210522 -k1,21157:27271689,34077987:210522 -k1,21157:29747790,34077987:210521 -k1,21157:31955194,34077987:210522 -k1,21157:32583029,34077987:0 -) -(1,21158:6630773,34943067:25952256,513147,7863 -k1,21157:8070648,34943067:236634 -k1,21157:10585970,34943067:236635 -k1,21157:11035558,34943067:236596 -k1,21157:13941474,34943067:236635 -k1,21157:14794146,34943067:236634 -k1,21157:16680977,34943067:236634 -k1,21157:18704779,34943067:236635 -k1,21157:19960498,34943067:236634 -k1,21157:21289617,34943067:236634 -k1,21157:22185544,34943067:236635 -k1,21157:24419060,34943067:236634 -k1,21157:26488081,34943067:236634 -k1,21157:27716276,34943067:236635 -k1,21157:29799060,34943067:236634 -k1,21157:32583029,34943067:0 -) -(1,21158:6630773,35808147:25952256,513147,134348 -k1,21157:7875817,35808147:297393 -k1,21157:8939327,35808147:297394 -k1,21157:10255805,35808147:297393 -k1,21157:13315541,35808147:297393 -k1,21157:16677398,35808147:297393 -k1,21157:20427229,35808147:297394 -k1,21157:21486150,35808147:297393 -(1,21157:21486150,35808147:0,414482,122846 -r1,21162:23251263,35808147:1765113,537328,122846 -k1,21157:21486150,35808147:-1765113 -) -(1,21157:21486150,35808147:1765113,414482,122846 -k1,21157:21486150,35808147:3277 -h1,21157:23247986,35808147:0,411205,112570 -) -k1,21157:23722326,35808147:297393 -k1,21157:25513286,35808147:297394 -k1,21157:26496841,35808147:297393 -k1,21157:29408465,35808147:297393 -k1,21157:32583029,35808147:0 -) -(1,21158:6630773,36673227:25952256,505283,126483 -(1,21157:6816895,36673227:0,414482,115847 -r1,21162:9285433,36673227:2468538,530329,115847 -k1,21157:6816895,36673227:-2468538 -) -(1,21157:6816895,36673227:2468538,414482,115847 -g1,21157:7875308,36673227 -g1,21157:8930444,36673227 -h1,21157:9282156,36673227:0,411205,112570 -) -k1,21157:9940710,36673227:274513 -(1,21157:9940710,36673227:0,452978,115847 -r1,21162:11354111,36673227:1413401,568825,115847 -k1,21157:9940710,36673227:-1413401 -) -(1,21157:9940710,36673227:1413401,452978,115847 -k1,21157:9940710,36673227:3277 -h1,21157:11350834,36673227:0,411205,112570 -) -k1,21157:11802293,36673227:274512 -(1,21157:11802293,36673227:0,452978,115847 -r1,21162:13567406,36673227:1765113,568825,115847 -k1,21157:11802293,36673227:-1765113 -) -(1,21157:11802293,36673227:1765113,452978,115847 -k1,21157:11802293,36673227:3277 -h1,21157:13564129,36673227:0,411205,112570 -) -k1,21157:14015589,36673227:274513 -(1,21157:14015589,36673227:0,452978,115847 -r1,21162:17187549,36673227:3171960,568825,115847 -k1,21157:14015589,36673227:-3171960 -) -(1,21157:14015589,36673227:3171960,452978,115847 -k1,21157:14015589,36673227:3277 -h1,21157:17184272,36673227:0,411205,112570 -) -k1,21157:17635731,36673227:274512 -(1,21157:17635731,36673227:0,452978,115847 -r1,21162:20455980,36673227:2820249,568825,115847 -k1,21157:17635731,36673227:-2820249 -) -(1,21157:17635731,36673227:2820249,452978,115847 -k1,21157:17635731,36673227:3277 -h1,21157:20452703,36673227:0,411205,112570 -) -k1,21157:20904163,36673227:274513 -(1,21157:20904163,36673227:0,452978,115847 -r1,21162:23020988,36673227:2116825,568825,115847 -k1,21157:20904163,36673227:-2116825 -) -(1,21157:20904163,36673227:2116825,452978,115847 -k1,21157:20904163,36673227:3277 -h1,21157:23017711,36673227:0,411205,112570 -) -k1,21157:23469170,36673227:274512 -(1,21157:23469170,36673227:0,459977,115847 -r1,21162:24882571,36673227:1413401,575824,115847 -k1,21157:23469170,36673227:-1413401 -) -(1,21157:23469170,36673227:1413401,459977,115847 -k1,21157:23469170,36673227:3277 -h1,21157:24879294,36673227:0,411205,112570 -) -k1,21157:25330754,36673227:274513 -(1,21157:25330754,36673227:0,452978,115847 -r1,21162:27095867,36673227:1765113,568825,115847 -k1,21157:25330754,36673227:-1765113 -) -(1,21157:25330754,36673227:1765113,452978,115847 -k1,21157:25330754,36673227:3277 -h1,21157:27092590,36673227:0,411205,112570 -) -k1,21157:27370379,36673227:274512 -k1,21157:28327777,36673227:274513 -k1,21158:32583029,36673227:0 -) -(1,21158:6630773,37538307:25952256,513147,126483 -(1,21157:6630773,37538307:0,452978,122846 -r1,21162:8395886,37538307:1765113,575824,122846 -k1,21157:6630773,37538307:-1765113 -) -(1,21157:6630773,37538307:1765113,452978,122846 -k1,21157:6630773,37538307:3277 -h1,21157:8392609,37538307:0,411205,112570 -) -k1,21157:8775237,37538307:205681 -k1,21157:10908332,37538307:205681 -k1,21157:14358045,37538307:205681 -k1,21157:15894106,37538307:205680 -k1,21157:18110432,37538307:205681 -k1,21157:18932151,37538307:205681 -(1,21157:18932151,37538307:0,452978,115847 -r1,21162:20345552,37538307:1413401,568825,115847 -k1,21157:18932151,37538307:-1413401 -) -(1,21157:18932151,37538307:1413401,452978,115847 -k1,21157:18932151,37538307:3277 -h1,21157:20342275,37538307:0,411205,112570 -) -k1,21157:20551233,37538307:205681 -k1,21157:21748474,37538307:205681 -k1,21157:24539550,37538307:205681 -k1,21157:25396658,37538307:205680 -k1,21157:27612984,37538307:205681 -k1,21157:28477957,37538307:205681 -k1,21157:29454341,37538307:205681 -k1,21157:32583029,37538307:0 -) -(1,21158:6630773,38403387:25952256,505283,126483 -g1,21157:8021447,38403387 -g1,21157:11604300,38403387 -g1,21157:13089345,38403387 -g1,21157:14618955,38403387 -g1,21157:16514911,38403387 -g1,21157:18724785,38403387 -g1,21157:19915574,38403387 -k1,21158:32583029,38403387:10127935 -g1,21158:32583029,38403387 -) -(1,21160:6630773,39268467:25952256,513147,134348 -h1,21159:6630773,39268467:983040,0,0 -k1,21159:11258229,39268467:199844 -k1,21159:12267443,39268467:199844 -k1,21159:13486373,39268467:199845 -k1,21159:18314370,39268467:199844 -k1,21159:19173506,39268467:199844 -k1,21159:20392435,39268467:199844 -k1,21159:23433920,39268467:199844 -k1,21159:24249802,39268467:199844 -(1,21159:24249802,39268467:0,452978,115847 -r1,21162:25663203,39268467:1413401,568825,115847 -k1,21159:24249802,39268467:-1413401 -) -(1,21159:24249802,39268467:1413401,452978,115847 -k1,21159:24249802,39268467:3277 -h1,21159:25659926,39268467:0,411205,112570 -) -k1,21159:25863048,39268467:199845 -k1,21159:27800907,39268467:199844 -k1,21159:30759817,39268467:199844 -k1,21160:32583029,39268467:0 -) -(1,21160:6630773,40133547:25952256,513147,126483 -k1,21159:7904881,40133547:169826 -k1,21159:8822474,40133547:169827 -k1,21159:12562701,40133547:169826 -k1,21159:13415413,40133547:169827 -k1,21159:16284667,40133547:169826 -k1,21159:17402144,40133547:169826 -(1,21159:17402144,40133547:0,452978,115847 -r1,21162:19870681,40133547:2468537,568825,115847 -k1,21159:17402144,40133547:-2468537 -) -(1,21159:17402144,40133547:2468537,452978,115847 -k1,21159:17402144,40133547:3277 -h1,21159:19867404,40133547:0,411205,112570 -) -k1,21159:20040508,40133547:169827 -k1,21159:20893219,40133547:169826 -(1,21159:20893219,40133547:0,459977,115847 -r1,21162:23010044,40133547:2116825,575824,115847 -k1,21159:20893219,40133547:-2116825 -) -(1,21159:20893219,40133547:2116825,459977,115847 -k1,21159:20893219,40133547:3277 -h1,21159:23006767,40133547:0,411205,112570 -) -k1,21159:23179871,40133547:169827 -k1,21159:26191338,40133547:169826 -k1,21159:26977203,40133547:169827 -(1,21159:26977203,40133547:0,452978,115847 -r1,21162:28390604,40133547:1413401,568825,115847 -k1,21159:26977203,40133547:-1413401 -) -(1,21159:26977203,40133547:1413401,452978,115847 -k1,21159:26977203,40133547:3277 -h1,21159:28387327,40133547:0,411205,112570 -) -k1,21159:28734100,40133547:169826 -k1,21159:32583029,40133547:0 -) -(1,21160:6630773,40998627:25952256,505283,126483 -k1,21159:8612719,40998627:264903 -k1,21159:12092817,40998627:264902 -k1,21159:13503945,40998627:264903 -(1,21159:13503945,40998627:0,452978,115847 -r1,21162:14917346,40998627:1413401,568825,115847 -k1,21159:13503945,40998627:-1413401 -) -(1,21159:13503945,40998627:1413401,452978,115847 -k1,21159:13503945,40998627:3277 -h1,21159:14914069,40998627:0,411205,112570 -) -k1,21159:15182249,40998627:264903 -k1,21159:16638596,40998627:264902 -(1,21159:16638596,40998627:0,452978,115847 -r1,21162:18755421,40998627:2116825,568825,115847 -k1,21159:16638596,40998627:-2116825 -) -(1,21159:16638596,40998627:2116825,452978,115847 -k1,21159:16638596,40998627:3277 -h1,21159:18752144,40998627:0,411205,112570 -) -k1,21159:19193994,40998627:264903 -k1,21159:20450456,40998627:264902 -k1,21159:23967255,40998627:264903 -k1,21159:27802559,40998627:264903 -k1,21159:29139630,40998627:264902 -k1,21159:31436804,40998627:264903 -k1,21160:32583029,40998627:0 -) -(1,21160:6630773,41863707:25952256,513147,126483 -(1,21159:6630773,41863707:0,452978,115847 -r1,21162:9451022,41863707:2820249,568825,115847 -k1,21159:6630773,41863707:-2820249 -) -(1,21159:6630773,41863707:2820249,452978,115847 -k1,21159:6630773,41863707:3277 -h1,21159:9447745,41863707:0,411205,112570 -) -k1,21159:9699838,41863707:248816 -k1,21159:11140099,41863707:248816 -(1,21159:11140099,41863707:0,452978,115847 -r1,21162:12905212,41863707:1765113,568825,115847 -k1,21159:11140099,41863707:-1765113 -) -(1,21159:11140099,41863707:1765113,452978,115847 -k1,21159:11140099,41863707:3277 -h1,21159:12901935,41863707:0,411205,112570 -) -k1,21159:13154028,41863707:248816 -k1,21159:14394404,41863707:248816 -k1,21159:17895116,41863707:248816 -k1,21159:20843359,41863707:248815 -k1,21159:21720010,41863707:248816 -k1,21159:22987911,41863707:248816 -k1,21159:24603808,41863707:248816 -k1,21159:25511916,41863707:248816 -k1,21159:29012628,41863707:248816 -k1,21159:32583029,41863707:0 -) -(1,21160:6630773,42728787:25952256,513147,126483 -k1,21159:10193244,42728787:214237 -k1,21159:11874177,42728787:214237 -k1,21159:14614172,42728787:214237 -k1,21159:16019854,42728787:214237 -k1,21159:19804492,42728787:214237 -k1,21159:21921238,42728787:214236 -k1,21159:23127035,42728787:214237 -k1,21159:26298912,42728787:214237 -k1,21159:28376338,42728787:214237 -k1,21159:31649796,42728787:214237 -k1,21159:32583029,42728787:0 -) -(1,21160:6630773,43593867:25952256,505283,126483 -g1,21159:8573915,43593867 -g1,21159:12025040,43593867 -g1,21159:14750027,43593867 -g1,21159:16324857,43593867 -g1,21159:19049844,43593867 -g1,21159:21151583,43593867 -g1,21159:22342372,43593867 -k1,21160:32583029,43593867:7404259 -g1,21160:32583029,43593867 -) -(1,21162:6630773,44458947:25952256,513147,134348 -h1,21161:6630773,44458947:983040,0,0 -k1,21161:9051836,44458947:241336 -k1,21161:11195683,44458947:241337 -k1,21161:12950245,44458947:241336 -k1,21161:13953109,44458947:241336 -k1,21161:16460025,44458947:241336 -k1,21161:18176577,44458947:241337 -k1,21161:20683493,44458947:241336 -k1,21161:24062693,44458947:241336 -k1,21161:24963321,44458947:241336 -k1,21161:26594021,44458947:241337 -k1,21161:28846002,44458947:241336 -k1,21161:29738766,44458947:241336 -k1,21161:32583029,44458947:0 -) -(1,21162:6630773,45324027:25952256,505283,138281 -k1,21161:8798693,45324027:174970 -k1,21161:10423319,45324027:174970 -k1,21161:12483760,45324027:174970 -k1,21161:14689691,45324027:174970 -k1,21161:16545004,45324027:174970 -k1,21161:20683591,45324027:174970 -k1,21161:21509989,45324027:174970 -$1,21161:21509989,45324027 -k1,21161:22888080,45324027:182060 -k1,21161:23638337,45324027:182060 -$1,21161:24036796,45324027 -k1,21161:24211766,45324027:174970 -k1,21161:25578181,45324027:174970 -k1,21161:27638622,45324027:174970 -k1,21161:28970302,45324027:174970 -k1,21161:29796700,45324027:174970 -$1,21161:29796700,45324027 -k1,21161:31174791,45324027:182060 -k1,21161:31925048,45324027:182060 -$1,21161:32323507,45324027 -k1,21161:32583029,45324027:0 -) -] -(1,21162:32583029,45706769:0,0,0 -g1,21162:32583029,45706769 -) -) -] -(1,21162:6630773,47279633:25952256,0,0 -h1,21162:6630773,47279633:25952256,0,0 -) -] -(1,21162:4262630,4025873:0,0,0 -[1,21162:-473656,4025873:0,0,0 -(1,21162:-473656,-710413:0,0,0 -(1,21162:-473656,-710413:0,0,0 -g1,21162:-473656,-710413 -) -g1,21162:-473656,-710413 +[1,21160:3078558,4812305:0,0,0 +(1,21160:3078558,49800853:0,16384,2228224 +g1,21160:29030814,49800853 +g1,21160:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21160:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21160:37855564,49800853:1179648,16384,0 +) +) +k1,21160:3078556,49800853:-34777008 +) +] +g1,21160:6630773,4812305 +g1,21160:6630773,4812305 +g1,21160:8724648,4812305 +k1,21160:31387652,4812305:22663004 +) +) +] +[1,21160:6630773,45706769:25952256,40108032,0 +(1,21160:6630773,45706769:25952256,40108032,0 +(1,21160:6630773,45706769:0,0,0 +g1,21160:6630773,45706769 +) +[1,21160:6630773,45706769:25952256,40108032,0 +v1,21109:6630773,6254097:0,393216,0 +(1,21120:6630773,11388765:25952256,5527884,196608 +g1,21120:6630773,11388765 +g1,21120:6630773,11388765 +g1,21120:6434165,11388765 +(1,21120:6434165,11388765:0,5527884,196608 +r1,21160:32779637,11388765:26345472,5724492,196608 +k1,21120:6434165,11388765:-26345472 +) +(1,21120:6434165,11388765:26345472,5527884,196608 +[1,21120:6630773,11388765:25952256,5331276,0 +(1,21111:6630773,6481928:25952256,424439,106246 +(1,21110:6630773,6481928:0,0,0 +g1,21110:6630773,6481928 +g1,21110:6630773,6481928 +g1,21110:6303093,6481928 +(1,21110:6303093,6481928:0,0,0 +) +g1,21110:6630773,6481928 +) +g1,21111:8954451,6481928 +k1,21111:8954451,6481928:0 +h1,21111:9618359,6481928:0,0,0 +k1,21111:32583029,6481928:22964670 +g1,21111:32583029,6481928 +) +(1,21112:6630773,7166783:25952256,424439,112852 +h1,21112:6630773,7166783:0,0,0 +g1,21112:6962727,7166783 +g1,21112:7294681,7166783 +g1,21112:11278129,7166783 +g1,21112:11942037,7166783 +k1,21112:11942037,7166783:0 +h1,21112:14265715,7166783:0,0,0 +k1,21112:32583029,7166783:18317314 +g1,21112:32583029,7166783 +) +(1,21113:6630773,7851638:25952256,431045,112852 +h1,21113:6630773,7851638:0,0,0 +g1,21113:6962727,7851638 +g1,21113:7294681,7851638 +g1,21113:7626635,7851638 +g1,21113:7958589,7851638 +g1,21113:8290543,7851638 +g1,21113:8622497,7851638 +g1,21113:8954451,7851638 +g1,21113:9286405,7851638 +g1,21113:9618359,7851638 +g1,21113:12273991,7851638 +g1,21113:12937899,7851638 +g1,21113:14929623,7851638 +g1,21113:15593531,7851638 +g1,21113:19908933,7851638 +g1,21113:20572841,7851638 +g1,21113:21236749,7851638 +g1,21113:23228473,7851638 +h1,21113:23560427,7851638:0,0,0 +k1,21113:32583029,7851638:9022602 +g1,21113:32583029,7851638 +) +(1,21114:6630773,8536493:25952256,424439,112852 +h1,21114:6630773,8536493:0,0,0 +g1,21114:6962727,8536493 +g1,21114:7294681,8536493 +g1,21114:13269852,8536493 +g1,21114:13933760,8536493 +h1,21114:16257438,8536493:0,0,0 +k1,21114:32583029,8536493:16325591 +g1,21114:32583029,8536493 +) +(1,21115:6630773,9221348:25952256,424439,106246 +h1,21115:6630773,9221348:0,0,0 +g1,21115:7626635,9221348 +g1,21115:8622497,9221348 +g1,21115:10946175,9221348 +h1,21115:11278129,9221348:0,0,0 +k1,21115:32583029,9221348:21304900 +g1,21115:32583029,9221348 +) +(1,21116:6630773,9906203:25952256,424439,112852 +h1,21116:6630773,9906203:0,0,0 +g1,21116:6962727,9906203 +g1,21116:7294681,9906203 +g1,21116:14597667,9906203 +g1,21116:15261575,9906203 +g1,21116:24224332,9906203 +g1,21116:24888240,9906203 +g1,21116:26879964,9906203 +g1,21116:28871688,9906203 +g1,21116:29535596,9906203 +k1,21116:29535596,9906203:0 +h1,21116:31195366,9906203:0,0,0 +k1,21116:32583029,9906203:1387663 +g1,21116:32583029,9906203 +) +(1,21117:6630773,10591058:25952256,424439,79822 +h1,21117:6630773,10591058:0,0,0 +g1,21117:6962727,10591058 +g1,21117:7294681,10591058 +g1,21117:7626635,10591058 +g1,21117:7958589,10591058 +g1,21117:8290543,10591058 +g1,21117:8622497,10591058 +g1,21117:8954451,10591058 +g1,21117:9286405,10591058 +g1,21117:9618359,10591058 +g1,21117:9950313,10591058 +g1,21117:10282267,10591058 +g1,21117:10614221,10591058 +g1,21117:10946175,10591058 +g1,21117:11278129,10591058 +g1,21117:11610083,10591058 +g1,21117:13933761,10591058 +g1,21117:14597669,10591058 +g1,21117:16921347,10591058 +h1,21117:17253301,10591058:0,0,0 +k1,21117:32583029,10591058:15329728 +g1,21117:32583029,10591058 +) +(1,21118:6630773,11275913:25952256,424439,112852 +h1,21118:6630773,11275913:0,0,0 +g1,21118:6962727,11275913 +g1,21118:7294681,11275913 +k1,21118:7294681,11275913:0 +h1,21118:12937898,11275913:0,0,0 +k1,21118:32583030,11275913:19645132 +g1,21118:32583030,11275913 +) +] +) +g1,21120:32583029,11388765 +g1,21120:6630773,11388765 +g1,21120:6630773,11388765 +g1,21120:32583029,11388765 +g1,21120:32583029,11388765 +) +h1,21120:6630773,11585373:0,0,0 +(1,21124:6630773,12450453:25952256,513147,134348 +h1,21123:6630773,12450453:983040,0,0 +k1,21123:9073400,12450453:262900 +k1,21123:11793245,12450453:262900 +k1,21123:12715437,12450453:262900 +k1,21123:15593225,12450453:262901 +k1,21123:16387622,12450453:262900 +k1,21123:17585065,12450453:262900 +k1,21123:18609493,12450453:262900 +k1,21123:19228253,12450453:262900 +k1,21123:22151915,12450453:262900 +k1,21123:25612318,12450453:262901 +k1,21123:26491256,12450453:262900 +k1,21123:28143519,12450453:262900 +k1,21123:30024503,12450453:262900 +k1,21123:32583029,12450453:0 +) +(1,21124:6630773,13315533:25952256,505283,126483 +k1,21123:10458578,13315533:216771 +(1,21123:10458578,13315533:0,414482,115847 +r1,21160:10816844,13315533:358266,530329,115847 +k1,21123:10458578,13315533:-358266 +) +(1,21123:10458578,13315533:358266,414482,115847 +k1,21123:10458578,13315533:3277 +h1,21123:10813567,13315533:0,411205,112570 +) +k1,21123:11033616,13315533:216772 +k1,21123:12441832,13315533:216771 +(1,21123:12441832,13315533:0,414482,115847 +r1,21160:12800098,13315533:358266,530329,115847 +k1,21123:12441832,13315533:-358266 +) +(1,21123:12441832,13315533:358266,414482,115847 +k1,21123:12441832,13315533:3277 +h1,21123:12796821,13315533:0,411205,112570 +) +k1,21123:13190540,13315533:216772 +k1,21123:15933069,13315533:216771 +k1,21123:17625055,13315533:216771 +k1,21123:19624406,13315533:216772 +(1,21123:19624406,13315533:0,452978,115847 +r1,21160:22092943,13315533:2468537,568825,115847 +k1,21123:19624406,13315533:-2468537 +) +(1,21123:19624406,13315533:2468537,452978,115847 +k1,21123:19624406,13315533:3277 +h1,21123:22089666,13315533:0,411205,112570 +) +k1,21123:22309714,13315533:216771 +k1,21123:23717930,13315533:216771 +k1,21123:25386324,13315533:216772 +k1,21123:27065203,13315533:216771 +k1,21123:27813472,13315533:216772 +k1,21123:31839851,13315533:216771 +k1,21123:32583029,13315533:0 +) +(1,21124:6630773,14180613:25952256,513147,134348 +g1,21123:7600705,14180613 +g1,21123:10203795,14180613 +g1,21123:11819912,14180613 +g1,21123:14679903,14180613 +g1,21123:17514335,14180613 +g1,21123:19505974,14180613 +g1,21123:20364495,14180613 +g1,21123:20919584,14180613 +g1,21123:23012803,14180613 +g1,21123:23743529,14180613 +k1,21124:32583029,14180613:8101565 +g1,21124:32583029,14180613 +) +v1,21126:6630773,14865468:0,393216,0 +(1,21133:6630773,17260716:25952256,2788464,196608 +g1,21133:6630773,17260716 +g1,21133:6630773,17260716 +g1,21133:6434165,17260716 +(1,21133:6434165,17260716:0,2788464,196608 +r1,21160:32779637,17260716:26345472,2985072,196608 +k1,21133:6434165,17260716:-26345472 +) +(1,21133:6434165,17260716:26345472,2788464,196608 +[1,21133:6630773,17260716:25952256,2591856,0 +(1,21128:6630773,15093299:25952256,424439,106246 +(1,21127:6630773,15093299:0,0,0 +g1,21127:6630773,15093299 +g1,21127:6630773,15093299 +g1,21127:6303093,15093299 +(1,21127:6303093,15093299:0,0,0 +) +g1,21127:6630773,15093299 +) +g1,21128:7626635,15093299 +g1,21128:8622497,15093299 +g1,21128:10946175,15093299 +h1,21128:11278129,15093299:0,0,0 +k1,21128:32583029,15093299:21304900 +g1,21128:32583029,15093299 +) +(1,21129:6630773,15778154:25952256,424439,112852 +h1,21129:6630773,15778154:0,0,0 +g1,21129:6962727,15778154 +g1,21129:7294681,15778154 +g1,21129:14597667,15778154 +g1,21129:15261575,15778154 +g1,21129:22564561,15778154 +g1,21129:23228469,15778154 +g1,21129:25220193,15778154 +g1,21129:25884101,15778154 +g1,21129:26548009,15778154 +k1,21129:26548009,15778154:0 +h1,21129:27543871,15778154:0,0,0 +k1,21129:32583029,15778154:5039158 +g1,21129:32583029,15778154 +) +(1,21130:6630773,16463009:25952256,424439,79822 +h1,21130:6630773,16463009:0,0,0 +g1,21130:6962727,16463009 +g1,21130:7294681,16463009 +g1,21130:7626635,16463009 +g1,21130:7958589,16463009 +g1,21130:8290543,16463009 +g1,21130:8622497,16463009 +g1,21130:8954451,16463009 +g1,21130:9286405,16463009 +g1,21130:9618359,16463009 +g1,21130:9950313,16463009 +g1,21130:10282267,16463009 +g1,21130:10614221,16463009 +g1,21130:10946175,16463009 +g1,21130:11278129,16463009 +g1,21130:11610083,16463009 +g1,21130:13933761,16463009 +g1,21130:14597669,16463009 +g1,21130:16921347,16463009 +h1,21130:17253301,16463009:0,0,0 +k1,21130:32583029,16463009:15329728 +g1,21130:32583029,16463009 +) +(1,21131:6630773,17147864:25952256,424439,112852 +h1,21131:6630773,17147864:0,0,0 +g1,21131:6962727,17147864 +g1,21131:7294681,17147864 +k1,21131:7294681,17147864:0 +h1,21131:12605945,17147864:0,0,0 +k1,21131:32583029,17147864:19977084 +g1,21131:32583029,17147864 +) +] +) +g1,21133:32583029,17260716 +g1,21133:6630773,17260716 +g1,21133:6630773,17260716 +g1,21133:32583029,17260716 +g1,21133:32583029,17260716 +) +h1,21133:6630773,17457324:0,0,0 +v1,21137:6630773,18142179:0,393216,0 +(1,21141:6630773,18459740:25952256,710777,196608 +g1,21141:6630773,18459740 +g1,21141:6630773,18459740 +g1,21141:6434165,18459740 +(1,21141:6434165,18459740:0,710777,196608 +r1,21160:32779637,18459740:26345472,907385,196608 +k1,21141:6434165,18459740:-26345472 +) +(1,21141:6434165,18459740:26345472,710777,196608 +[1,21141:6630773,18459740:25952256,514169,0 +(1,21139:6630773,18353494:25952256,407923,106246 +(1,21138:6630773,18353494:0,0,0 +g1,21138:6630773,18353494 +g1,21138:6630773,18353494 +g1,21138:6303093,18353494 +(1,21138:6303093,18353494:0,0,0 +) +g1,21138:6630773,18353494 +) +g1,21139:7626635,18353494 +g1,21139:8290543,18353494 +h1,21139:8954451,18353494:0,0,0 +k1,21139:32583029,18353494:23628578 +g1,21139:32583029,18353494 +) +] +) +g1,21141:32583029,18459740 +g1,21141:6630773,18459740 +g1,21141:6630773,18459740 +g1,21141:32583029,18459740 +g1,21141:32583029,18459740 +) +h1,21141:6630773,18656348:0,0,0 +(1,21144:6630773,28356679:25952256,9634795,0 +k1,21144:6760463,28356679:129690 +h1,21143:6760463,28356679:0,0,0 +(1,21143:6760463,28356679:25692876,9634795,0 +(1,21143:6760463,28356679:25692851,9634819,0 +(1,21143:6760463,28356679:25692851,9634819,0 +(1,21143:6760463,28356679:0,9634819,0 +(1,21143:6760463,28356679:0,14208860,0 +(1,21143:6760463,28356679:37890292,14208860,0 +) +k1,21143:6760463,28356679:-37890292 +) +) +g1,21143:32453314,28356679 +) +) +) +g1,21144:32453339,28356679 +k1,21144:32583029,28356679:129690 +) +(1,21152:6630773,31187839:25952256,32768,229376 +(1,21152:6630773,31187839:0,32768,229376 +(1,21152:6630773,31187839:5505024,32768,229376 +r1,21160:12135797,31187839:5505024,262144,229376 +) +k1,21152:6630773,31187839:-5505024 +) +(1,21152:6630773,31187839:25952256,32768,0 +r1,21160:32583029,31187839:25952256,32768,0 +) +) +(1,21152:6630773,32819691:25952256,606339,14155 +(1,21152:6630773,32819691:2464678,582746,14155 +g1,21152:6630773,32819691 +g1,21152:9095451,32819691 +) +k1,21152:32583029,32819691:21077950 +g1,21152:32583029,32819691 +) +(1,21156:6630773,34077987:25952256,513147,126483 +k1,21155:7469130,34077987:210522 +k1,21155:9713233,34077987:210521 +k1,21155:12532743,34077987:210522 +k1,21155:13402557,34077987:210522 +k1,21155:14816319,34077987:210521 +k1,21155:17618135,34077987:210522 +k1,21155:19430357,34077987:210522 +k1,21155:22632598,34077987:210522 +k1,21155:24318334,34077987:210521 +k1,21155:26042082,34077987:210522 +k1,21155:27271689,34077987:210522 +k1,21155:29747790,34077987:210521 +k1,21155:31955194,34077987:210522 +k1,21155:32583029,34077987:0 +) +(1,21156:6630773,34943067:25952256,513147,7863 +k1,21155:8070648,34943067:236634 +k1,21155:10585970,34943067:236635 +k1,21155:11035558,34943067:236596 +k1,21155:13941474,34943067:236635 +k1,21155:14794146,34943067:236634 +k1,21155:16680977,34943067:236634 +k1,21155:18704779,34943067:236635 +k1,21155:19960498,34943067:236634 +k1,21155:21289617,34943067:236634 +k1,21155:22185544,34943067:236635 +k1,21155:24419060,34943067:236634 +k1,21155:26488081,34943067:236634 +k1,21155:27716276,34943067:236635 +k1,21155:29799060,34943067:236634 +k1,21155:32583029,34943067:0 +) +(1,21156:6630773,35808147:25952256,513147,134348 +k1,21155:7875817,35808147:297393 +k1,21155:8939327,35808147:297394 +k1,21155:10255805,35808147:297393 +k1,21155:13315541,35808147:297393 +k1,21155:16677398,35808147:297393 +k1,21155:20427229,35808147:297394 +k1,21155:21486150,35808147:297393 +(1,21155:21486150,35808147:0,414482,122846 +r1,21160:23251263,35808147:1765113,537328,122846 +k1,21155:21486150,35808147:-1765113 +) +(1,21155:21486150,35808147:1765113,414482,122846 +k1,21155:21486150,35808147:3277 +h1,21155:23247986,35808147:0,411205,112570 +) +k1,21155:23722326,35808147:297393 +k1,21155:25513286,35808147:297394 +k1,21155:26496841,35808147:297393 +k1,21155:29408465,35808147:297393 +k1,21155:32583029,35808147:0 +) +(1,21156:6630773,36673227:25952256,505283,126483 +(1,21155:6816895,36673227:0,414482,115847 +r1,21160:9285433,36673227:2468538,530329,115847 +k1,21155:6816895,36673227:-2468538 +) +(1,21155:6816895,36673227:2468538,414482,115847 +g1,21155:7875308,36673227 +g1,21155:8930444,36673227 +h1,21155:9282156,36673227:0,411205,112570 +) +k1,21155:9940710,36673227:274513 +(1,21155:9940710,36673227:0,452978,115847 +r1,21160:11354111,36673227:1413401,568825,115847 +k1,21155:9940710,36673227:-1413401 +) +(1,21155:9940710,36673227:1413401,452978,115847 +k1,21155:9940710,36673227:3277 +h1,21155:11350834,36673227:0,411205,112570 +) +k1,21155:11802293,36673227:274512 +(1,21155:11802293,36673227:0,452978,115847 +r1,21160:13567406,36673227:1765113,568825,115847 +k1,21155:11802293,36673227:-1765113 +) +(1,21155:11802293,36673227:1765113,452978,115847 +k1,21155:11802293,36673227:3277 +h1,21155:13564129,36673227:0,411205,112570 +) +k1,21155:14015589,36673227:274513 +(1,21155:14015589,36673227:0,452978,115847 +r1,21160:17187549,36673227:3171960,568825,115847 +k1,21155:14015589,36673227:-3171960 +) +(1,21155:14015589,36673227:3171960,452978,115847 +k1,21155:14015589,36673227:3277 +h1,21155:17184272,36673227:0,411205,112570 +) +k1,21155:17635731,36673227:274512 +(1,21155:17635731,36673227:0,452978,115847 +r1,21160:20455980,36673227:2820249,568825,115847 +k1,21155:17635731,36673227:-2820249 +) +(1,21155:17635731,36673227:2820249,452978,115847 +k1,21155:17635731,36673227:3277 +h1,21155:20452703,36673227:0,411205,112570 +) +k1,21155:20904163,36673227:274513 +(1,21155:20904163,36673227:0,452978,115847 +r1,21160:23020988,36673227:2116825,568825,115847 +k1,21155:20904163,36673227:-2116825 +) +(1,21155:20904163,36673227:2116825,452978,115847 +k1,21155:20904163,36673227:3277 +h1,21155:23017711,36673227:0,411205,112570 +) +k1,21155:23469170,36673227:274512 +(1,21155:23469170,36673227:0,459977,115847 +r1,21160:24882571,36673227:1413401,575824,115847 +k1,21155:23469170,36673227:-1413401 +) +(1,21155:23469170,36673227:1413401,459977,115847 +k1,21155:23469170,36673227:3277 +h1,21155:24879294,36673227:0,411205,112570 +) +k1,21155:25330754,36673227:274513 +(1,21155:25330754,36673227:0,452978,115847 +r1,21160:27095867,36673227:1765113,568825,115847 +k1,21155:25330754,36673227:-1765113 +) +(1,21155:25330754,36673227:1765113,452978,115847 +k1,21155:25330754,36673227:3277 +h1,21155:27092590,36673227:0,411205,112570 +) +k1,21155:27370379,36673227:274512 +k1,21155:28327777,36673227:274513 +k1,21156:32583029,36673227:0 +) +(1,21156:6630773,37538307:25952256,513147,126483 +(1,21155:6630773,37538307:0,452978,122846 +r1,21160:8395886,37538307:1765113,575824,122846 +k1,21155:6630773,37538307:-1765113 +) +(1,21155:6630773,37538307:1765113,452978,122846 +k1,21155:6630773,37538307:3277 +h1,21155:8392609,37538307:0,411205,112570 +) +k1,21155:8775237,37538307:205681 +k1,21155:10908332,37538307:205681 +k1,21155:14358045,37538307:205681 +k1,21155:15894106,37538307:205680 +k1,21155:18110432,37538307:205681 +k1,21155:18932151,37538307:205681 +(1,21155:18932151,37538307:0,452978,115847 +r1,21160:20345552,37538307:1413401,568825,115847 +k1,21155:18932151,37538307:-1413401 +) +(1,21155:18932151,37538307:1413401,452978,115847 +k1,21155:18932151,37538307:3277 +h1,21155:20342275,37538307:0,411205,112570 +) +k1,21155:20551233,37538307:205681 +k1,21155:21748474,37538307:205681 +k1,21155:24539550,37538307:205681 +k1,21155:25396658,37538307:205680 +k1,21155:27612984,37538307:205681 +k1,21155:28477957,37538307:205681 +k1,21155:29454341,37538307:205681 +k1,21155:32583029,37538307:0 +) +(1,21156:6630773,38403387:25952256,505283,126483 +g1,21155:8021447,38403387 +g1,21155:11604300,38403387 +g1,21155:13089345,38403387 +g1,21155:14618955,38403387 +g1,21155:16514911,38403387 +g1,21155:18724785,38403387 +g1,21155:19915574,38403387 +k1,21156:32583029,38403387:10127935 +g1,21156:32583029,38403387 +) +(1,21158:6630773,39268467:25952256,513147,134348 +h1,21157:6630773,39268467:983040,0,0 +k1,21157:11258229,39268467:199844 +k1,21157:12267443,39268467:199844 +k1,21157:13486373,39268467:199845 +k1,21157:18314370,39268467:199844 +k1,21157:19173506,39268467:199844 +k1,21157:20392435,39268467:199844 +k1,21157:23433920,39268467:199844 +k1,21157:24249802,39268467:199844 +(1,21157:24249802,39268467:0,452978,115847 +r1,21160:25663203,39268467:1413401,568825,115847 +k1,21157:24249802,39268467:-1413401 +) +(1,21157:24249802,39268467:1413401,452978,115847 +k1,21157:24249802,39268467:3277 +h1,21157:25659926,39268467:0,411205,112570 +) +k1,21157:25863048,39268467:199845 +k1,21157:27800907,39268467:199844 +k1,21157:30759817,39268467:199844 +k1,21158:32583029,39268467:0 +) +(1,21158:6630773,40133547:25952256,513147,126483 +k1,21157:7904881,40133547:169826 +k1,21157:8822474,40133547:169827 +k1,21157:12562701,40133547:169826 +k1,21157:13415413,40133547:169827 +k1,21157:16284667,40133547:169826 +k1,21157:17402144,40133547:169826 +(1,21157:17402144,40133547:0,452978,115847 +r1,21160:19870681,40133547:2468537,568825,115847 +k1,21157:17402144,40133547:-2468537 +) +(1,21157:17402144,40133547:2468537,452978,115847 +k1,21157:17402144,40133547:3277 +h1,21157:19867404,40133547:0,411205,112570 +) +k1,21157:20040508,40133547:169827 +k1,21157:20893219,40133547:169826 +(1,21157:20893219,40133547:0,459977,115847 +r1,21160:23010044,40133547:2116825,575824,115847 +k1,21157:20893219,40133547:-2116825 +) +(1,21157:20893219,40133547:2116825,459977,115847 +k1,21157:20893219,40133547:3277 +h1,21157:23006767,40133547:0,411205,112570 +) +k1,21157:23179871,40133547:169827 +k1,21157:26191338,40133547:169826 +k1,21157:26977203,40133547:169827 +(1,21157:26977203,40133547:0,452978,115847 +r1,21160:28390604,40133547:1413401,568825,115847 +k1,21157:26977203,40133547:-1413401 +) +(1,21157:26977203,40133547:1413401,452978,115847 +k1,21157:26977203,40133547:3277 +h1,21157:28387327,40133547:0,411205,112570 +) +k1,21157:28734100,40133547:169826 +k1,21157:32583029,40133547:0 +) +(1,21158:6630773,40998627:25952256,505283,126483 +k1,21157:8612719,40998627:264903 +k1,21157:12092817,40998627:264902 +k1,21157:13503945,40998627:264903 +(1,21157:13503945,40998627:0,452978,115847 +r1,21160:14917346,40998627:1413401,568825,115847 +k1,21157:13503945,40998627:-1413401 +) +(1,21157:13503945,40998627:1413401,452978,115847 +k1,21157:13503945,40998627:3277 +h1,21157:14914069,40998627:0,411205,112570 +) +k1,21157:15182249,40998627:264903 +k1,21157:16638596,40998627:264902 +(1,21157:16638596,40998627:0,452978,115847 +r1,21160:18755421,40998627:2116825,568825,115847 +k1,21157:16638596,40998627:-2116825 +) +(1,21157:16638596,40998627:2116825,452978,115847 +k1,21157:16638596,40998627:3277 +h1,21157:18752144,40998627:0,411205,112570 +) +k1,21157:19193994,40998627:264903 +k1,21157:20450456,40998627:264902 +k1,21157:23967255,40998627:264903 +k1,21157:27802559,40998627:264903 +k1,21157:29139630,40998627:264902 +k1,21157:31436804,40998627:264903 +k1,21158:32583029,40998627:0 +) +(1,21158:6630773,41863707:25952256,513147,126483 +(1,21157:6630773,41863707:0,452978,115847 +r1,21160:9451022,41863707:2820249,568825,115847 +k1,21157:6630773,41863707:-2820249 +) +(1,21157:6630773,41863707:2820249,452978,115847 +k1,21157:6630773,41863707:3277 +h1,21157:9447745,41863707:0,411205,112570 +) +k1,21157:9699838,41863707:248816 +k1,21157:11140099,41863707:248816 +(1,21157:11140099,41863707:0,452978,115847 +r1,21160:12905212,41863707:1765113,568825,115847 +k1,21157:11140099,41863707:-1765113 +) +(1,21157:11140099,41863707:1765113,452978,115847 +k1,21157:11140099,41863707:3277 +h1,21157:12901935,41863707:0,411205,112570 +) +k1,21157:13154028,41863707:248816 +k1,21157:14394404,41863707:248816 +k1,21157:17895116,41863707:248816 +k1,21157:20843359,41863707:248815 +k1,21157:21720010,41863707:248816 +k1,21157:22987911,41863707:248816 +k1,21157:24603808,41863707:248816 +k1,21157:25511916,41863707:248816 +k1,21157:29012628,41863707:248816 +k1,21157:32583029,41863707:0 +) +(1,21158:6630773,42728787:25952256,513147,126483 +k1,21157:10193244,42728787:214237 +k1,21157:11874177,42728787:214237 +k1,21157:14614172,42728787:214237 +k1,21157:16019854,42728787:214237 +k1,21157:19804492,42728787:214237 +k1,21157:21921238,42728787:214236 +k1,21157:23127035,42728787:214237 +k1,21157:26298912,42728787:214237 +k1,21157:28376338,42728787:214237 +k1,21157:31649796,42728787:214237 +k1,21157:32583029,42728787:0 +) +(1,21158:6630773,43593867:25952256,505283,126483 +g1,21157:8573915,43593867 +g1,21157:12025040,43593867 +g1,21157:14750027,43593867 +g1,21157:16324857,43593867 +g1,21157:19049844,43593867 +g1,21157:21151583,43593867 +g1,21157:22342372,43593867 +k1,21158:32583029,43593867:7404259 +g1,21158:32583029,43593867 +) +(1,21160:6630773,44458947:25952256,513147,134348 +h1,21159:6630773,44458947:983040,0,0 +k1,21159:9051836,44458947:241336 +k1,21159:11195683,44458947:241337 +k1,21159:12950245,44458947:241336 +k1,21159:13953109,44458947:241336 +k1,21159:16460025,44458947:241336 +k1,21159:18176577,44458947:241337 +k1,21159:20683493,44458947:241336 +k1,21159:24062693,44458947:241336 +k1,21159:24963321,44458947:241336 +k1,21159:26594021,44458947:241337 +k1,21159:28846002,44458947:241336 +k1,21159:29738766,44458947:241336 +k1,21159:32583029,44458947:0 +) +(1,21160:6630773,45324027:25952256,505283,138281 +k1,21159:8798693,45324027:174970 +k1,21159:10423319,45324027:174970 +k1,21159:12483760,45324027:174970 +k1,21159:14689691,45324027:174970 +k1,21159:16545004,45324027:174970 +k1,21159:20683591,45324027:174970 +k1,21159:21509989,45324027:174970 +$1,21159:21509989,45324027 +k1,21159:22888080,45324027:182060 +k1,21159:23638337,45324027:182060 +$1,21159:24036796,45324027 +k1,21159:24211766,45324027:174970 +k1,21159:25578181,45324027:174970 +k1,21159:27638622,45324027:174970 +k1,21159:28970302,45324027:174970 +k1,21159:29796700,45324027:174970 +$1,21159:29796700,45324027 +k1,21159:31174791,45324027:182060 +k1,21159:31925048,45324027:182060 +$1,21159:32323507,45324027 +k1,21159:32583029,45324027:0 +) +] +(1,21160:32583029,45706769:0,0,0 +g1,21160:32583029,45706769 +) +) +] +(1,21160:6630773,47279633:25952256,0,0 +h1,21160:6630773,47279633:25952256,0,0 +) +] +(1,21160:4262630,4025873:0,0,0 +[1,21160:-473656,4025873:0,0,0 +(1,21160:-473656,-710413:0,0,0 +(1,21160:-473656,-710413:0,0,0 +g1,21160:-473656,-710413 +) +g1,21160:-473656,-710413 ) ] ) ] !25164 -}356 -Input:3864:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3865:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3866:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3867:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}357 Input:3868:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3869:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3870:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -366527,1755 +366731,1755 @@ Input:3895:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3896:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3897:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3898:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3899:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3900:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3232 -{357 -[1,21187:4262630,47279633:28320399,43253760,0 -(1,21187:4262630,4025873:0,0,0 -[1,21187:-473656,4025873:0,0,0 -(1,21187:-473656,-710413:0,0,0 -(1,21187:-473656,-644877:0,0,0 -k1,21187:-473656,-644877:-65536 +{358 +[1,21185:4262630,47279633:28320399,43253760,0 +(1,21185:4262630,4025873:0,0,0 +[1,21185:-473656,4025873:0,0,0 +(1,21185:-473656,-710413:0,0,0 +(1,21185:-473656,-644877:0,0,0 +k1,21185:-473656,-644877:-65536 ) -(1,21187:-473656,4736287:0,0,0 -k1,21187:-473656,4736287:5209943 +(1,21185:-473656,4736287:0,0,0 +k1,21185:-473656,4736287:5209943 ) -g1,21187:-473656,-710413 +g1,21185:-473656,-710413 ) ] ) -[1,21187:6630773,47279633:25952256,43253760,0 -[1,21187:6630773,4812305:25952256,786432,0 -(1,21187:6630773,4812305:25952256,513147,126483 -(1,21187:6630773,4812305:25952256,513147,126483 -g1,21187:3078558,4812305 -[1,21187:3078558,4812305:0,0,0 -(1,21187:3078558,2439708:0,1703936,0 -k1,21187:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21187:2537886,2439708:1179648,16384,0 +[1,21185:6630773,47279633:25952256,43253760,0 +[1,21185:6630773,4812305:25952256,786432,0 +(1,21185:6630773,4812305:25952256,513147,126483 +(1,21185:6630773,4812305:25952256,513147,126483 +g1,21185:3078558,4812305 +[1,21185:3078558,4812305:0,0,0 +(1,21185:3078558,2439708:0,1703936,0 +k1,21185:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21185:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21187:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21185:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21187:3078558,4812305:0,0,0 -(1,21187:3078558,2439708:0,1703936,0 -g1,21187:29030814,2439708 -g1,21187:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21187:36151628,1915420:16384,1179648,0 +[1,21185:3078558,4812305:0,0,0 +(1,21185:3078558,2439708:0,1703936,0 +g1,21185:29030814,2439708 +g1,21185:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21185:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21187:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21185:37855564,2439708:1179648,16384,0 ) ) -k1,21187:3078556,2439708:-34777008 +k1,21185:3078556,2439708:-34777008 ) ] -[1,21187:3078558,4812305:0,0,0 -(1,21187:3078558,49800853:0,16384,2228224 -k1,21187:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21187:2537886,49800853:1179648,16384,0 +[1,21185:3078558,4812305:0,0,0 +(1,21185:3078558,49800853:0,16384,2228224 +k1,21185:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21185:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21187:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21185:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21187:3078558,4812305:0,0,0 -(1,21187:3078558,49800853:0,16384,2228224 -g1,21187:29030814,49800853 -g1,21187:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21187:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21187:37855564,49800853:1179648,16384,0 -) -) -k1,21187:3078556,49800853:-34777008 -) -] -g1,21187:6630773,4812305 -k1,21187:21386205,4812305:13560055 -g1,21187:21999622,4812305 -g1,21187:25611966,4812305 -g1,21187:28956923,4812305 -g1,21187:29772190,4812305 -) -) -] -[1,21187:6630773,45706769:25952256,40108032,0 -(1,21187:6630773,45706769:25952256,40108032,0 -(1,21187:6630773,45706769:0,0,0 -g1,21187:6630773,45706769 -) -[1,21187:6630773,45706769:25952256,40108032,0 -(1,21162:6630773,6254097:25952256,513147,126483 -k1,21161:7891936,6254097:219141 -k1,21161:9562700,6254097:219142 -k1,21161:12569087,6254097:219141 -k1,21161:14281795,6254097:219142 -k1,21161:15187098,6254097:219141 -(1,21161:15187098,6254097:0,452978,115847 -r1,21187:17303923,6254097:2116825,568825,115847 -k1,21161:15187098,6254097:-2116825 -) -(1,21161:15187098,6254097:2116825,452978,115847 -k1,21161:15187098,6254097:3277 -h1,21161:17300646,6254097:0,411205,112570 -) -k1,21161:17696734,6254097:219141 -k1,21161:19570660,6254097:219142 -k1,21161:20781361,6254097:219141 -k1,21161:23671749,6254097:219141 -k1,21161:25793401,6254097:219142 -k1,21161:26663970,6254097:219141 -k1,21161:29098229,6254097:219142 -k1,21161:30884991,6254097:219141 -k1,21161:32583029,6254097:0 -) -(1,21162:6630773,7119177:25952256,513147,134348 -k1,21161:9474762,7119177:271701 -k1,21161:10102324,7119177:271702 -k1,21161:11824992,7119177:271701 -k1,21161:13563389,7119177:271701 -k1,21161:17405491,7119177:271701 -k1,21161:18868638,7119177:271702 -k1,21161:21666097,7119177:271701 -k1,21161:23387454,7119177:271701 -k1,21161:24456073,7119177:271701 -k1,21161:27490118,7119177:271702 -k1,21161:29792780,7119177:271701 -k1,21161:31966991,7119177:271701 -k1,21161:32583029,7119177:0 -) -(1,21162:6630773,7984257:25952256,505283,134348 -g1,21161:9606762,7984257 -g1,21161:11729473,7984257 -g1,21161:12556537,7984257 -g1,21161:15595441,7984257 -g1,21161:17486810,7984257 -g1,21161:19588549,7984257 -g1,21161:23221209,7984257 -g1,21161:26091685,7984257 -k1,21162:32583029,7984257:3918401 -g1,21162:32583029,7984257 -) -v1,21164:6630773,8849337:0,393216,0 -(1,21165:6630773,11813617:25952256,3357496,0 -g1,21165:6630773,11813617 -g1,21165:6237557,11813617 -r1,21187:6368629,11813617:131072,3357496,0 -g1,21165:6567858,11813617 -g1,21165:6764466,11813617 -[1,21165:6764466,11813617:25818563,3357496,0 -(1,21165:6764466,9210514:25818563,754393,260573 -(1,21164:6764466,9210514:0,754393,260573 -r1,21187:7856192,9210514:1091726,1014966,260573 -k1,21164:6764466,9210514:-1091726 -) -(1,21164:6764466,9210514:1091726,754393,260573 -) -k1,21164:8089882,9210514:233690 -k1,21164:8417562,9210514:327680 -k1,21164:9469141,9210514:233690 -k1,21164:11142657,9210514:233690 -k1,21164:11992385,9210514:233690 -k1,21164:14980553,9210514:233690 -k1,21164:17996902,9210514:233690 -k1,21164:21295057,9210514:233691 -k1,21164:22144785,9210514:233690 -k1,21164:22734335,9210514:233690 -k1,21164:24245322,9210514:233690 -k1,21164:26210473,9210514:233690 -k1,21164:27060201,9210514:233690 -k1,21164:29959896,9210514:233690 -k1,21164:30845014,9210514:233690 -k1,21164:32583029,9210514:0 -) -(1,21165:6764466,10075594:25818563,505283,134348 -k1,21164:10722786,10075594:293547 -k1,21164:11777861,10075594:293547 -k1,21164:15382941,10075594:293546 -k1,21164:16780770,10075594:293547 -k1,21164:18360133,10075594:293547 -k1,21164:19401446,10075594:293547 -k1,21164:20629535,10075594:293546 -k1,21164:21574510,10075594:293547 -k1,21164:24625812,10075594:293547 -k1,21164:27103674,10075594:293547 -k1,21164:30703511,10075594:293546 -k1,21164:31931601,10075594:293547 -k1,21164:32583029,10075594:0 -) -(1,21165:6764466,10940674:25818563,513147,126483 -k1,21164:9789906,10940674:267685 -k1,21164:12241905,10940674:267684 -k1,21164:13501150,10940674:267685 -k1,21164:14835106,10940674:267685 -k1,21164:17688185,10940674:267684 -k1,21164:18607298,10940674:267685 -k1,21164:20438016,10940674:267684 -k1,21164:21897146,10940674:267685 -k1,21164:23156391,10940674:267685 -k1,21164:27649181,10940674:267684 -k1,21164:31923737,10940674:267685 -k1,21164:32583029,10940674:0 -) -(1,21165:6764466,11805754:25818563,505283,7863 -k1,21165:32583029,11805754:23863624 -g1,21165:32583029,11805754 -) -] -g1,21165:32583029,11813617 -) -h1,21165:6630773,11813617:0,0,0 -(1,21168:6630773,12678697:25952256,505283,134348 -h1,21167:6630773,12678697:983040,0,0 -k1,21167:9301345,12678697:490845 -k1,21167:11393890,12678697:490845 -k1,21167:13732850,12678697:490845 -k1,21167:17031257,12678697:490845 -k1,21167:18173531,12678697:490846 -k1,21167:20053739,12678697:490845 -k1,21167:21076081,12678697:490845 -(1,21167:21076081,12678697:0,452978,115847 -r1,21187:23896330,12678697:2820249,568825,115847 -k1,21167:21076081,12678697:-2820249 -) -(1,21167:21076081,12678697:2820249,452978,115847 -k1,21167:21076081,12678697:3277 -h1,21167:23893053,12678697:0,411205,112570 -) -k1,21167:24560845,12678697:490845 -k1,21167:26445641,12678697:490845 -k1,21167:27955571,12678697:490845 -k1,21167:30457061,12678697:490845 -k1,21167:31563944,12678697:490845 -k1,21167:32583029,12678697:0 -) -(1,21168:6630773,13543777:25952256,505283,126483 -k1,21167:9662403,13543777:446235 -k1,21167:12619977,13543777:446234 -k1,21167:15480558,13543777:446235 -k1,21167:19516854,13543777:446234 -k1,21167:20649251,13543777:446235 -k1,21167:23939749,13543777:446235 -k1,21167:26570298,13543777:446234 -k1,21167:27644368,13543777:446235 -k1,21167:28446463,13543777:446235 -k1,21167:30923658,13543777:446234 -k1,21167:32583029,13543777:0 -) -(1,21168:6630773,14408857:25952256,505283,126483 -k1,21167:8008379,14408857:330341 -(1,21167:8008379,14408857:0,452978,115847 -r1,21187:16104305,14408857:8095926,568825,115847 -k1,21167:8008379,14408857:-8095926 -) -(1,21167:8008379,14408857:8095926,452978,115847 -k1,21167:8008379,14408857:3277 -h1,21167:16101028,14408857:0,411205,112570 -) -k1,21167:16608315,14408857:330340 -k1,21167:17957741,14408857:330341 -k1,21167:20799421,14408857:330340 -k1,21167:21745800,14408857:330341 -k1,21167:23095225,14408857:330340 -k1,21167:24814929,14408857:330341 -k1,21167:27101519,14408857:330340 -k1,21167:28179626,14408857:330341 -k1,21167:31189078,14408857:330340 -k1,21167:32583029,14408857:0 -) -(1,21168:6630773,15273937:25952256,505283,134348 -k1,21167:9132229,15273937:508506 -k1,21167:11134301,15273937:508506 -k1,21167:12328969,15273937:508506 -(1,21167:12328969,15273937:0,452978,115847 -r1,21187:14094082,15273937:1765113,568825,115847 -k1,21167:12328969,15273937:-1765113 -) -(1,21167:12328969,15273937:1765113,452978,115847 -k1,21167:12328969,15273937:3277 -h1,21167:14090805,15273937:0,411205,112570 -) -k1,21167:14776258,15273937:508506 -(1,21167:14776258,15273937:0,452978,115847 -r1,21187:16893083,15273937:2116825,568825,115847 -k1,21167:14776258,15273937:-2116825 -) -(1,21167:14776258,15273937:2116825,452978,115847 -k1,21167:14776258,15273937:3277 -h1,21167:16889806,15273937:0,411205,112570 -) -k1,21167:19126497,15273937:508506 -k1,21167:21175099,15273937:508506 -k1,21167:22098138,15273937:508196 -k1,21167:25141577,15273937:508506 -k1,21167:26277918,15273937:508506 -k1,21167:27142284,15273937:508506 -k1,21167:29775467,15273937:508506 -k1,21167:32583029,15273937:0 -) -(1,21168:6630773,16139017:25952256,513147,134348 -k1,21167:8810517,16139017:444351 -(1,21167:8810517,16139017:0,452978,115847 -r1,21187:16906443,16139017:8095926,568825,115847 -k1,21167:8810517,16139017:-8095926 -) -(1,21167:8810517,16139017:8095926,452978,115847 -k1,21167:8810517,16139017:3277 -h1,21167:16903166,16139017:0,411205,112570 -) -k1,21167:17350794,16139017:444351 -k1,21167:19587554,16139017:444350 -k1,21167:20691197,16139017:444351 -k1,21167:21491408,16139017:444351 -k1,21167:24003420,16139017:444351 -k1,21167:25941337,16139017:444351 -k1,21167:27071849,16139017:444350 -(1,21167:27071849,16139017:0,452978,115847 -r1,21187:30947233,16139017:3875384,568825,115847 -k1,21167:27071849,16139017:-3875384 -) -(1,21167:27071849,16139017:3875384,452978,115847 -k1,21167:27071849,16139017:3277 -h1,21167:30943956,16139017:0,411205,112570 -) -k1,21167:31391584,16139017:444351 -k1,21168:32583029,16139017:0 -) -(1,21168:6630773,17004097:25952256,505283,126483 -(1,21167:6630773,17004097:0,452978,115847 -r1,21187:9802733,17004097:3171960,568825,115847 -k1,21167:6630773,17004097:-3171960 -) -(1,21167:6630773,17004097:3171960,452978,115847 -k1,21167:6630773,17004097:3277 -h1,21167:9799456,17004097:0,411205,112570 -) -k1,21167:10170970,17004097:368237 -k1,21167:12495458,17004097:368238 -k1,21167:13611461,17004097:368237 -k1,21167:17789306,17004097:368237 -k1,21167:18843706,17004097:368238 -k1,21167:21627600,17004097:368237 -k1,21167:24357099,17004097:368237 -k1,21167:26119288,17004097:368238 -k1,21167:27506610,17004097:368237 -k1,21167:32583029,17004097:0 -) -(1,21168:6630773,17869177:25952256,513147,126483 -k1,21167:9546667,17869177:280691 -k1,21167:11721347,17869177:280690 -k1,21167:13794448,17869177:280691 -k1,21167:15266583,17869177:280690 -k1,21167:18740188,17869177:280691 -k1,21167:21382140,17869177:280690 -k1,21167:22597374,17869177:280691 -k1,21167:27368591,17869177:280690 -k1,21167:28277117,17869177:280691 -k1,21167:31189078,17869177:280690 -k1,21168:32583029,17869177:0 -) -(1,21168:6630773,18734257:25952256,513147,134348 -(1,21167:6630773,18734257:0,452978,115847 -r1,21187:14023275,18734257:7392502,568825,115847 -k1,21167:6630773,18734257:-7392502 -) -(1,21167:6630773,18734257:7392502,452978,115847 -k1,21167:6630773,18734257:3277 -h1,21167:14019998,18734257:0,411205,112570 -) -k1,21167:14293360,18734257:270085 -k1,21167:15582530,18734257:270085 -k1,21167:17233459,18734257:270085 -k1,21167:20400891,18734257:270085 -k1,21167:23431352,18734257:270085 -k1,21167:24720522,18734257:270085 -k1,21167:27798169,18734257:270085 -k1,21167:30703457,18734257:270085 -k1,21167:32583029,18734257:0 -) -(1,21168:6630773,19599337:25952256,513147,134348 -k1,21167:8590954,19599337:167771 -k1,21167:9950170,19599337:167771 -k1,21167:12479202,19599337:167770 -k1,21167:13408501,19599337:167771 -k1,21167:16003726,19599337:167771 -k1,21167:19574126,19599337:167771 -k1,21167:20393325,19599337:167771 -k1,21167:21580181,19599337:167771 -k1,21167:23320160,19599337:167770 -k1,21167:26687399,19599337:167771 -k1,21167:30466204,19599337:167771 -(1,21167:30466204,19599337:0,452978,115847 -r1,21187:32583029,19599337:2116825,568825,115847 -k1,21167:30466204,19599337:-2116825 -) -(1,21167:30466204,19599337:2116825,452978,115847 -k1,21167:30466204,19599337:3277 -h1,21167:32579752,19599337:0,411205,112570 -) -k1,21167:32583029,19599337:0 -) -(1,21168:6630773,20464417:25952256,505283,115847 -g1,21167:8021447,20464417 -(1,21167:8021447,20464417:0,452978,115847 -r1,21187:10138272,20464417:2116825,568825,115847 -k1,21167:8021447,20464417:-2116825 -) -(1,21167:8021447,20464417:2116825,452978,115847 -k1,21167:8021447,20464417:3277 -h1,21167:10134995,20464417:0,411205,112570 -) -k1,21168:32583028,20464417:22392328 -g1,21168:32583028,20464417 -) -(1,21170:6630773,21329497:25952256,513147,134348 -h1,21169:6630773,21329497:983040,0,0 -k1,21169:9089129,21329497:278629 -k1,21169:11485226,21329497:278629 -k1,21169:12423147,21329497:278629 -k1,21169:13720861,21329497:278629 -k1,21169:16807052,21329497:278629 -k1,21169:17744973,21329497:278629 -k1,21169:18379461,21329497:278628 -k1,21169:22228491,21329497:278629 -k1,21169:25018460,21329497:278629 -k1,21169:25948517,21329497:278629 -k1,21169:26997849,21329497:278629 -k1,21169:30063724,21329497:278629 -k1,21169:31333913,21329497:278629 -k1,21170:32583029,21329497:0 -) -(1,21170:6630773,22194577:25952256,505283,115847 -k1,21169:9007978,22194577:259081 -k1,21169:10661009,22194577:259080 -k1,21169:11275950,22194577:259081 -k1,21169:15105432,22194577:259081 -k1,21169:16936722,22194577:259081 -k1,21169:18689368,22194577:259080 -k1,21169:19634611,22194577:259081 -(1,21169:19634611,22194577:0,452978,115847 -r1,21187:28433960,22194577:8799349,568825,115847 -k1,21169:19634611,22194577:-8799349 -) -(1,21169:19634611,22194577:8799349,452978,115847 -k1,21169:19634611,22194577:3277 -h1,21169:28430683,22194577:0,411205,112570 -) -k1,21169:28866711,22194577:259081 -k1,21169:29753626,22194577:259080 -k1,21169:31215948,22194577:259081 -k1,21169:32583029,22194577:0 -) -(1,21170:6630773,23059657:25952256,513147,134348 -k1,21169:8892537,23059657:268814 -k1,21169:9777389,23059657:268814 -k1,21169:10402064,23059657:268815 -(1,21169:10402064,23059657:0,452978,115847 -r1,21187:12870601,23059657:2468537,568825,115847 -k1,21169:10402064,23059657:-2468537 -) -(1,21169:10402064,23059657:2468537,452978,115847 -k1,21169:10402064,23059657:3277 -h1,21169:12867324,23059657:0,411205,112570 -) -k1,21169:13139415,23059657:268814 -k1,21169:15919569,23059657:268814 -k1,21169:17320845,23059657:268814 -k1,21169:18337426,23059657:268815 -k1,21169:21191635,23059657:268814 -k1,21169:22727915,23059657:268814 -k1,21169:23352589,23059657:268814 -k1,21169:27191805,23059657:268815 -k1,21169:29241232,23059657:268814 -k1,21169:30169338,23059657:268814 -k1,21169:32583029,23059657:0 -) -(1,21170:6630773,23924737:25952256,505283,126483 -k1,21169:8323634,23924737:272040 -k1,21169:9614758,23924737:272039 -k1,21169:14963217,23924737:272040 -k1,21169:17870460,23924737:272040 -k1,21169:20762629,23924737:272040 -k1,21169:23045313,23924737:272039 -k1,21169:24508798,23924737:272040 -k1,21169:27142100,23924737:272040 -k1,21169:27945636,23924737:272039 -k1,21169:31478747,23924737:272040 -k1,21169:32583029,23924737:0 -) -(1,21170:6630773,24789817:25952256,513147,134348 -k1,21169:8178884,24789817:203312 -k1,21169:10541607,24789817:203312 -k1,21169:12821100,24789817:203312 -k1,21169:13652246,24789817:203311 -k1,21169:14874643,24789817:203312 -k1,21169:16445036,24789817:203312 -k1,21169:17315504,24789817:203312 -(1,21169:17315504,24789817:0,452978,115847 -r1,21187:19432329,24789817:2116825,568825,115847 -k1,21169:17315504,24789817:-2116825 -) -(1,21169:17315504,24789817:2116825,452978,115847 -k1,21169:17315504,24789817:3277 -h1,21169:19429052,24789817:0,411205,112570 -) -k1,21169:19809311,24789817:203312 -k1,21169:21704763,24789817:203312 -k1,21169:23810584,24789817:203311 -k1,21169:25106381,24789817:203312 -k1,21169:27996014,24789817:203312 -k1,21169:30893511,24789817:203312 -k1,21169:32583029,24789817:0 -) -(1,21170:6630773,25654897:25952256,505283,134348 -g1,21169:8862273,25654897 -g1,21169:12494933,25654897 -g1,21169:14818839,25654897 -g1,21169:18007820,25654897 -g1,21169:20842252,25654897 -g1,21169:22213920,25654897 -g1,21169:23096034,25654897 -g1,21169:24950047,25654897 -k1,21170:32583029,25654897:5219291 -g1,21170:32583029,25654897 -) -v1,21172:6630773,26519977:0,393216,0 -(1,21173:6630773,29549998:25952256,3423237,0 -g1,21173:6630773,29549998 -g1,21173:6237557,29549998 -r1,21187:6368629,29549998:131072,3423237,0 -g1,21173:6567858,29549998 -g1,21173:6764466,29549998 -[1,21173:6764466,29549998:25818563,3423237,0 -(1,21173:6764466,26828275:25818563,701514,196608 -(1,21172:6764466,26828275:0,701514,196608 -r1,21187:7761522,26828275:997056,898122,196608 -k1,21172:6764466,26828275:-997056 -) -(1,21172:6764466,26828275:997056,701514,196608 -) -k1,21172:7937171,26828275:175649 -k1,21172:8264851,26828275:327680 -k1,21172:9068335,26828275:175649 -k1,21172:10936124,26828275:175649 -k1,21172:13014284,26828275:175650 -k1,21172:15661951,26828275:175649 -k1,21172:18021915,26828275:175649 -k1,21172:18880449,26828275:175649 -(1,21172:18880449,26828275:0,414482,115847 -r1,21187:19590427,26828275:709978,530329,115847 -k1,21172:18880449,26828275:-709978 -) -(1,21172:18880449,26828275:709978,414482,115847 -k1,21172:18880449,26828275:3277 -h1,21172:19587150,26828275:0,411205,112570 -) -k1,21172:19939746,26828275:175649 -k1,21172:21219677,26828275:175649 -k1,21172:22143092,26828275:175649 -k1,21172:25093536,26828275:175650 -k1,21172:26039888,26828275:175649 -k1,21172:29059800,26828275:175649 -k1,21172:31089463,26828275:175649 -k1,21172:32583029,26828275:0 -) -(1,21173:6764466,27693355:25818563,513147,126483 -k1,21172:7713762,27693355:263134 -(1,21172:7713762,27693355:0,452978,115847 -r1,21187:9830587,27693355:2116825,568825,115847 -k1,21172:7713762,27693355:-2116825 -) -(1,21172:7713762,27693355:2116825,452978,115847 -k1,21172:7713762,27693355:3277 -h1,21172:9827310,27693355:0,411205,112570 -) -k1,21172:10267391,27693355:263134 -k1,21172:12220044,27693355:263135 -k1,21172:13099216,27693355:263134 -k1,21172:15064320,27693355:263134 -k1,21172:17024836,27693355:263134 -(1,21172:17024836,27693355:0,414482,115847 -r1,21187:17734814,27693355:709978,530329,115847 -k1,21172:17024836,27693355:-709978 -) -(1,21172:17024836,27693355:709978,414482,115847 -k1,21172:17024836,27693355:3277 -h1,21172:17731537,27693355:0,411205,112570 -) -k1,21172:17997949,27693355:263135 -k1,21172:20271728,27693355:263134 -k1,21172:21526422,27693355:263134 -k1,21172:23918821,27693355:263134 -k1,21172:26715578,27693355:263135 -k1,21172:29305895,27693355:263134 -k1,21172:30228321,27693355:263134 -k1,21172:32583029,27693355:0 -) -(1,21173:6764466,28558435:25818563,505283,134348 -k1,21172:8135857,28558435:196331 -k1,21172:10812070,28558435:196331 -k1,21172:13815963,28558435:196331 -k1,21172:16022939,28558435:196331 -k1,21172:16835308,28558435:196331 -k1,21172:18421002,28558435:196331 -k1,21172:19268761,28558435:196331 -(1,21172:19268761,28558435:0,414482,115847 -r1,21187:19978739,28558435:709978,530329,115847 -k1,21172:19268761,28558435:-709978 -) -(1,21172:19268761,28558435:709978,414482,115847 -k1,21172:19268761,28558435:3277 -h1,21172:19975462,28558435:0,411205,112570 -) -k1,21172:20175071,28558435:196332 -k1,21172:21057564,28558435:196331 -k1,21172:24098158,28558435:196331 -k1,21172:25974832,28558435:196331 -k1,21172:26702660,28558435:196331 -k1,21172:27515029,28558435:196331 -k1,21172:29403500,28558435:196331 -k1,21172:31297213,28558435:196331 -k1,21172:32583029,28558435:0 -) -(1,21173:6764466,29423515:25818563,505283,126483 -k1,21173:32583030,29423515:23136176 -g1,21173:32583030,29423515 -) -] -g1,21173:32583029,29549998 -) -h1,21173:6630773,29549998:0,0,0 -(1,21175:6630773,31666816:25952256,555811,139132 -(1,21175:6630773,31666816:2899444,534184,12975 -g1,21175:6630773,31666816 -g1,21175:9530217,31666816 -) -g1,21175:11378595,31666816 -g1,21175:12945823,31666816 -g1,21175:14518819,31666816 -k1,21175:32583029,31666816:15950543 -g1,21175:32583029,31666816 -) -(1,21182:6630773,32925112:25952256,513147,115847 -k1,21181:8288995,32925112:222328 -k1,21181:8724291,32925112:222304 -k1,21181:11615900,32925112:222328 -k1,21181:12194088,32925112:222328 -k1,21181:14691825,32925112:222327 -k1,21181:17691569,32925112:222328 -k1,21181:18565325,32925112:222328 -k1,21181:19553768,32925112:222327 -k1,21181:21852277,32925112:222328 -k1,21181:23583244,32925112:222328 -(1,21181:23583244,32925112:0,414482,115847 -r1,21187:24996645,32925112:1413401,530329,115847 -k1,21181:23583244,32925112:-1413401 -) -(1,21181:23583244,32925112:1413401,414482,115847 -k1,21181:23583244,32925112:3277 -h1,21181:24993368,32925112:0,411205,112570 -) -k1,21181:25392642,32925112:222327 -k1,21181:26811657,32925112:222328 -k1,21181:29299565,32925112:222328 -(1,21181:29299565,32925112:0,414482,115847 -r1,21187:30712966,32925112:1413401,530329,115847 -k1,21181:29299565,32925112:-1413401 -) -(1,21181:29299565,32925112:1413401,414482,115847 -k1,21181:29299565,32925112:3277 -h1,21181:30709689,32925112:0,411205,112570 -) -k1,21181:30935293,32925112:222327 -k1,21181:31816913,32925112:222328 -k1,21181:32583029,32925112:0 -) -(1,21182:6630773,33790192:25952256,513147,126483 -k1,21181:8702019,33790192:168736 -k1,21181:9402252,33790192:168736 -k1,21181:10590072,33790192:168735 -k1,21181:12496823,33790192:168736 -k1,21181:13324851,33790192:168736 -k1,21181:14512672,33790192:168736 -k1,21181:17192748,33790192:168736 -k1,21181:18044369,33790192:168736 -k1,21181:19232189,33790192:168735 -k1,21181:22840910,33790192:168736 -k1,21181:25595041,33790192:168736 -k1,21181:26415205,33790192:168736 -k1,21181:27215708,33790192:168736 -k1,21181:28012279,33790192:168736 -k1,21181:29200099,33790192:168735 -k1,21181:30735916,33790192:168736 -k1,21181:31563944,33790192:168736 -k1,21182:32583029,33790192:0 -) -(1,21182:6630773,34655272:25952256,513147,134348 -(1,21181:6630773,34655272:0,414482,115847 -r1,21187:6989039,34655272:358266,530329,115847 -k1,21181:6630773,34655272:-358266 -) -(1,21181:6630773,34655272:358266,414482,115847 -k1,21181:6630773,34655272:3277 -h1,21181:6985762,34655272:0,411205,112570 -) -k1,21181:7333077,34655272:170368 -(1,21181:7333077,34655272:0,414482,115847 -r1,21187:7691343,34655272:358266,530329,115847 -k1,21181:7333077,34655272:-358266 -) -(1,21181:7333077,34655272:358266,414482,115847 -k1,21181:7333077,34655272:3277 -h1,21181:7688066,34655272:0,411205,112570 -) -k1,21181:7861712,34655272:170369 -k1,21181:9223525,34655272:170368 -(1,21181:9223525,34655272:0,414482,115847 -r1,21187:9581791,34655272:358266,530329,115847 -k1,21181:9223525,34655272:-358266 -) -(1,21181:9223525,34655272:358266,414482,115847 -k1,21181:9223525,34655272:3277 -h1,21181:9578514,34655272:0,411205,112570 -) -k1,21181:9752159,34655272:170368 -k1,21181:12986992,34655272:170369 -k1,21181:14176445,34655272:170368 -(1,21181:14176445,34655272:0,414482,115847 -r1,21187:15589846,34655272:1413401,530329,115847 -k1,21181:14176445,34655272:-1413401 -) -(1,21181:14176445,34655272:1413401,414482,115847 -k1,21181:14176445,34655272:3277 -h1,21181:15586569,34655272:0,411205,112570 -) -k1,21181:15760214,34655272:170368 -k1,21181:17625344,34655272:170369 -k1,21181:18447140,34655272:170368 -k1,21181:19636593,34655272:170368 -k1,21181:21379171,34655272:170369 -k1,21181:22081036,34655272:170368 -k1,21181:23764630,34655272:170368 -k1,21181:24882650,34655272:170369 -k1,21181:26072103,34655272:170368 -k1,21181:27494864,34655272:170368 -k1,21181:29683087,34655272:170369 -k1,21181:30895477,34655272:170368 -k1,21181:32583029,34655272:0 -) -(1,21182:6630773,35520352:25952256,513147,134348 -k1,21181:9889529,35520352:194292 -k1,21181:11102907,35520352:194293 -k1,21181:13035214,35520352:194292 -k1,21181:13888798,35520352:194292 -k1,21181:15102175,35520352:194292 -k1,21181:16868677,35520352:194293 -k1,21181:19836453,35520352:194292 -k1,21181:21049830,35520352:194292 -k1,21181:24373466,35520352:194292 -k1,21181:25250644,35520352:194293 -k1,21181:26517105,35520352:194292 -k1,21181:27894977,35520352:194292 -k1,21181:28748561,35520352:194292 -k1,21181:29961939,35520352:194293 -k1,21181:31914562,35520352:194292 -k1,21181:32583029,35520352:0 -) -(1,21182:6630773,36385432:25952256,505283,134348 -k1,21181:8059475,36385432:154027 -k1,21181:9111344,36385432:154026 -k1,21181:11167881,36385432:154027 -k1,21181:12797123,36385432:154027 -k1,21181:13307010,36385432:154027 -(1,21181:13307010,36385432:0,414482,115847 -r1,21187:14720411,36385432:1413401,530329,115847 -k1,21181:13307010,36385432:-1413401 -) -(1,21181:13307010,36385432:1413401,414482,115847 -k1,21181:13307010,36385432:3277 -h1,21181:14717134,36385432:0,411205,112570 -) -k1,21181:14874437,36385432:154026 -k1,21181:18309196,36385432:154027 -k1,21181:19114651,36385432:154027 -k1,21181:21154149,36385432:154027 -k1,21181:21664035,36385432:154026 -k1,21181:24792741,36385432:154027 -k1,21181:26812578,36385432:154027 -k1,21181:27649489,36385432:154026 -k1,21181:28574219,36385432:154027 -k1,21181:29143044,36385432:153982 -k1,21181:32583029,36385432:0 -) -(1,21182:6630773,37250512:25952256,513147,134348 -k1,21181:8057210,37250512:215332 -k1,21181:10551230,37250512:215333 -h1,21181:11920277,37250512:0,0,0 -k1,21181:12342703,37250512:215332 -k1,21181:13662318,37250512:215333 -k1,21181:14625416,37250512:215332 -k1,21181:17046036,37250512:215333 -k1,21181:17947530,37250512:215332 -k1,21181:18933565,37250512:215332 -k1,21181:22221226,37250512:215333 -k1,21181:23087986,37250512:215332 -k1,21181:25948352,37250512:215333 -k1,21181:27182769,37250512:215332 -k1,21181:29837352,37250512:215333 -k1,21181:30680519,37250512:215332 -k1,21181:32583029,37250512:0 -) -(1,21182:6630773,38115592:25952256,513147,134348 -k1,21181:8099769,38115592:184490 -k1,21181:9481602,38115592:184490 -k1,21181:10021952,38115592:184490 -k1,21181:11307447,38115592:184490 -k1,21181:12174822,38115592:184490 -k1,21181:14291313,38115592:184490 -k1,21181:16903256,38115592:184489 -(1,21181:16903256,38115592:0,452978,122846 -r1,21187:21833776,38115592:4930520,575824,122846 -k1,21181:16903256,38115592:-4930520 -) -(1,21181:16903256,38115592:4930520,452978,122846 -g1,21181:19016804,38115592 -g1,21181:19720228,38115592 -h1,21181:21830499,38115592:0,411205,112570 -) -k1,21181:22018266,38115592:184490 -k1,21181:22854184,38115592:184490 -k1,21181:24057759,38115592:184490 -k1,21181:25814458,38115592:184490 -k1,21181:28694444,38115592:184490 -k1,21181:31563944,38115592:184490 -k1,21181:32583029,38115592:0 -) -(1,21182:6630773,38980672:25952256,505283,134348 -g1,21181:7931007,38980672 -g1,21181:12753801,38980672 -g1,21181:13604458,38980672 -g1,21181:14822772,38980672 -k1,21182:32583029,38980672:16135620 -g1,21182:32583029,38980672 -) -(1,21185:6630773,39845752:25952256,513147,115847 -h1,21183:6630773,39845752:983040,0,0 -k1,21183:11923185,39845752:280874 -k1,21183:15229857,39845752:280875 -(1,21183:15229857,39845752:0,452978,115847 -r1,21187:17346682,39845752:2116825,568825,115847 -k1,21183:15229857,39845752:-2116825 -) -(1,21183:15229857,39845752:2116825,452978,115847 -k1,21183:15229857,39845752:3277 -h1,21183:17343405,39845752:0,411205,112570 -) -k1,21183:17627556,39845752:280874 -k1,21183:19099875,39845752:280874 -(1,21183:19099875,39845752:0,452978,115847 -r1,21187:21216700,39845752:2116825,568825,115847 -k1,21183:19099875,39845752:-2116825 -) -(1,21183:19099875,39845752:2116825,452978,115847 -k1,21183:19099875,39845752:3277 -h1,21183:21213423,39845752:0,411205,112570 -) -k1,21183:21497574,39845752:280874 -k1,21183:22882731,39845752:280875 -k1,21183:23911371,39845752:280874 -k1,21183:25705471,39845752:280874 -k1,21183:26637773,39845752:280874 -k1,21183:27853191,39845752:280875 -k1,21183:29153150,39845752:280874 -k1,21183:30686417,39845752:280874 -k1,21183:32583029,39845752:0 -) -(1,21185:6630773,40710832:25952256,513147,134348 -k1,21184:10910392,40710832:251121 -k1,21184:13857009,40710832:251121 -(1,21184:13857009,40710832:0,452978,115847 -r1,21187:15973834,40710832:2116825,568825,115847 -k1,21184:13857009,40710832:-2116825 -) -(1,21184:13857009,40710832:2116825,452978,115847 -k1,21184:13857009,40710832:3277 -h1,21184:15970557,40710832:0,411205,112570 -) -k1,21184:16224954,40710832:251120 -k1,21184:17580357,40710832:251121 -k1,21184:18579244,40710832:251121 -k1,21184:20343591,40710832:251121 -k1,21184:21246140,40710832:251121 -k1,21184:24429997,40710832:251121 -k1,21184:25615660,40710832:251120 -k1,21184:27119174,40710832:251121 -k1,21184:29388149,40710832:251121 -k1,21184:32583029,40710832:0 -) -(1,21185:6630773,41575912:25952256,513147,126483 -k1,21184:8643670,41575912:241459 -k1,21184:10076574,41575912:241459 -k1,21184:11585499,41575912:241459 -k1,21184:13018404,41575912:241460 -k1,21184:14961833,41575912:241459 -k1,21184:17047475,41575912:241459 -k1,21184:18236585,41575912:241459 -k1,21184:19497129,41575912:241459 -k1,21184:21015885,41575912:241459 -k1,21184:21943506,41575912:241459 -k1,21184:22540825,41575912:241459 -k1,21184:24838805,41575912:241460 -k1,21184:26122286,41575912:241459 -k1,21184:27382830,41575912:241459 -k1,21184:29692605,41575912:241459 -k1,21184:30593356,41575912:241459 -k1,21185:32583029,41575912:0 -) -(1,21185:6630773,42440992:25952256,513147,134348 -(1,21184:6630773,42440992:0,452978,115847 -r1,21187:8747598,42440992:2116825,568825,115847 -k1,21184:6630773,42440992:-2116825 -) -(1,21184:6630773,42440992:2116825,452978,115847 -k1,21184:6630773,42440992:3277 -h1,21184:8744321,42440992:0,411205,112570 -) -k1,21184:8888600,42440992:141002 -k1,21184:11407904,42440992:141002 -k1,21184:12567992,42440992:141003 -k1,21184:14777310,42440992:141002 -k1,21184:15577604,42440992:141002 -k1,21184:18893170,42440992:141002 -k1,21184:19720335,42440992:141003 -k1,21184:20327298,42440992:141002 -k1,21184:21848488,42440992:141002 -k1,21184:23493541,42440992:141002 -k1,21184:25763152,42440992:141002 -k1,21184:29515189,42440992:141003 -k1,21184:30847636,42440992:141002 -k1,21185:32583029,42440992:0 -) -(1,21185:6630773,43306072:25952256,513147,126483 -(1,21184:6630773,43306072:0,452978,115847 -r1,21187:8395886,43306072:1765113,568825,115847 -k1,21184:6630773,43306072:-1765113 -) -(1,21184:6630773,43306072:1765113,452978,115847 -k1,21184:6630773,43306072:3277 -h1,21184:8392609,43306072:0,411205,112570 -) -k1,21184:8817046,43306072:247490 -(1,21184:8817046,43306072:0,452978,115847 -r1,21187:11637295,43306072:2820249,568825,115847 -k1,21184:8817046,43306072:-2820249 -) -(1,21184:8817046,43306072:2820249,452978,115847 -k1,21184:8817046,43306072:3277 -h1,21184:11634018,43306072:0,411205,112570 -) -k1,21184:12058454,43306072:247489 -(1,21184:12058454,43306072:0,452978,115847 -r1,21187:14526991,43306072:2468537,568825,115847 -k1,21184:12058454,43306072:-2468537 -) -(1,21184:12058454,43306072:2468537,452978,115847 -k1,21184:12058454,43306072:3277 -h1,21184:14523714,43306072:0,411205,112570 -) -k1,21184:14948151,43306072:247490 -(1,21184:14948151,43306072:0,414482,122846 -r1,21187:16009840,43306072:1061689,537328,122846 -k1,21184:14948151,43306072:-1061689 -) -(1,21184:14948151,43306072:1061689,414482,122846 -k1,21184:14948151,43306072:3277 -h1,21184:16006563,43306072:0,411205,112570 -) -k1,21184:16257329,43306072:247489 -k1,21184:17696264,43306072:247490 -(1,21184:17696264,43306072:0,452978,115847 -r1,21187:18757953,43306072:1061689,568825,115847 -k1,21184:17696264,43306072:-1061689 -) -(1,21184:17696264,43306072:1061689,452978,115847 -k1,21184:17696264,43306072:3277 -h1,21184:18754676,43306072:0,411205,112570 -) -k1,21184:19005442,43306072:247489 -k1,21184:20200583,43306072:247490 -k1,21184:21467157,43306072:247489 -k1,21184:23558830,43306072:247490 -k1,21184:24753970,43306072:247489 -k1,21184:26020545,43306072:247490 -k1,21184:27545331,43306072:247489 -k1,21184:28478983,43306072:247490 -k1,21184:29082332,43306072:247489 -k1,21184:31386342,43306072:247490 -k1,21184:32583029,43306072:0 -) -(1,21185:6630773,44171152:25952256,505283,126483 -k1,21184:8047160,44171152:190208 -k1,21184:10442655,44171152:190208 -k1,21184:11284291,44171152:190208 -(1,21184:11284291,44171152:0,452978,115847 -r1,21187:12345980,44171152:1061689,568825,115847 -k1,21184:11284291,44171152:-1061689 -) -(1,21184:11284291,44171152:1061689,452978,115847 -k1,21184:11284291,44171152:3277 -h1,21184:12342703,44171152:0,411205,112570 -) -k1,21184:12536188,44171152:190208 -k1,21184:13257894,44171152:190209 -k1,21184:14514373,44171152:190208 -k1,21184:16747338,44171152:190208 -k1,21184:17553584,44171152:190208 -k1,21184:18762877,44171152:190208 -k1,21184:20230382,44171152:190208 -k1,21184:21492759,44171152:190208 -k1,21184:22214464,44171152:190208 -k1,21184:25243693,44171152:190209 -k1,21184:26085329,44171152:190208 -k1,21184:27023303,44171152:190208 -k1,21184:28957424,44171152:190208 -k1,21184:31931601,44171152:190208 -k1,21184:32583029,44171152:0 -) -(1,21185:6630773,45036232:25952256,513147,126483 -k1,21184:8064449,45036232:191113 -k1,21184:11156185,45036232:191113 -k1,21184:12538743,45036232:191113 -k1,21184:14243082,45036232:191113 -k1,21184:15085623,45036232:191113 -k1,21184:17905385,45036232:191113 -k1,21184:22128272,45036232:191112 -k1,21184:23723166,45036232:191113 -k1,21184:25183056,45036232:191113 -k1,21184:26033461,45036232:191113 -k1,21184:27492040,45036232:191113 -k1,21184:28874598,45036232:191113 -k1,21184:31478747,45036232:191113 -k1,21184:32583029,45036232:0 -) -] -(1,21187:32583029,45706769:0,0,0 -g1,21187:32583029,45706769 -) -) -] -(1,21187:6630773,47279633:25952256,0,0 -h1,21187:6630773,47279633:25952256,0,0 -) -] -(1,21187:4262630,4025873:0,0,0 -[1,21187:-473656,4025873:0,0,0 -(1,21187:-473656,-710413:0,0,0 -(1,21187:-473656,-710413:0,0,0 -g1,21187:-473656,-710413 -) -g1,21187:-473656,-710413 +[1,21185:3078558,4812305:0,0,0 +(1,21185:3078558,49800853:0,16384,2228224 +g1,21185:29030814,49800853 +g1,21185:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21185:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21185:37855564,49800853:1179648,16384,0 +) +) +k1,21185:3078556,49800853:-34777008 +) +] +g1,21185:6630773,4812305 +k1,21185:21386205,4812305:13560055 +g1,21185:21999622,4812305 +g1,21185:25611966,4812305 +g1,21185:28956923,4812305 +g1,21185:29772190,4812305 +) +) +] +[1,21185:6630773,45706769:25952256,40108032,0 +(1,21185:6630773,45706769:25952256,40108032,0 +(1,21185:6630773,45706769:0,0,0 +g1,21185:6630773,45706769 +) +[1,21185:6630773,45706769:25952256,40108032,0 +(1,21160:6630773,6254097:25952256,513147,126483 +k1,21159:7891936,6254097:219141 +k1,21159:9562700,6254097:219142 +k1,21159:12569087,6254097:219141 +k1,21159:14281795,6254097:219142 +k1,21159:15187098,6254097:219141 +(1,21159:15187098,6254097:0,452978,115847 +r1,21185:17303923,6254097:2116825,568825,115847 +k1,21159:15187098,6254097:-2116825 +) +(1,21159:15187098,6254097:2116825,452978,115847 +k1,21159:15187098,6254097:3277 +h1,21159:17300646,6254097:0,411205,112570 +) +k1,21159:17696734,6254097:219141 +k1,21159:19570660,6254097:219142 +k1,21159:20781361,6254097:219141 +k1,21159:23671749,6254097:219141 +k1,21159:25793401,6254097:219142 +k1,21159:26663970,6254097:219141 +k1,21159:29098229,6254097:219142 +k1,21159:30884991,6254097:219141 +k1,21159:32583029,6254097:0 +) +(1,21160:6630773,7119177:25952256,513147,134348 +k1,21159:9474762,7119177:271701 +k1,21159:10102324,7119177:271702 +k1,21159:11824992,7119177:271701 +k1,21159:13563389,7119177:271701 +k1,21159:17405491,7119177:271701 +k1,21159:18868638,7119177:271702 +k1,21159:21666097,7119177:271701 +k1,21159:23387454,7119177:271701 +k1,21159:24456073,7119177:271701 +k1,21159:27490118,7119177:271702 +k1,21159:29792780,7119177:271701 +k1,21159:31966991,7119177:271701 +k1,21159:32583029,7119177:0 +) +(1,21160:6630773,7984257:25952256,505283,134348 +g1,21159:9606762,7984257 +g1,21159:11729473,7984257 +g1,21159:12556537,7984257 +g1,21159:15595441,7984257 +g1,21159:17486810,7984257 +g1,21159:19588549,7984257 +g1,21159:23221209,7984257 +g1,21159:26091685,7984257 +k1,21160:32583029,7984257:3918401 +g1,21160:32583029,7984257 +) +v1,21162:6630773,8849337:0,393216,0 +(1,21163:6630773,11813617:25952256,3357496,0 +g1,21163:6630773,11813617 +g1,21163:6237557,11813617 +r1,21185:6368629,11813617:131072,3357496,0 +g1,21163:6567858,11813617 +g1,21163:6764466,11813617 +[1,21163:6764466,11813617:25818563,3357496,0 +(1,21163:6764466,9210514:25818563,754393,260573 +(1,21162:6764466,9210514:0,754393,260573 +r1,21185:7856192,9210514:1091726,1014966,260573 +k1,21162:6764466,9210514:-1091726 +) +(1,21162:6764466,9210514:1091726,754393,260573 +) +k1,21162:8089882,9210514:233690 +k1,21162:8417562,9210514:327680 +k1,21162:9469141,9210514:233690 +k1,21162:11142657,9210514:233690 +k1,21162:11992385,9210514:233690 +k1,21162:14980553,9210514:233690 +k1,21162:17996902,9210514:233690 +k1,21162:21295057,9210514:233691 +k1,21162:22144785,9210514:233690 +k1,21162:22734335,9210514:233690 +k1,21162:24245322,9210514:233690 +k1,21162:26210473,9210514:233690 +k1,21162:27060201,9210514:233690 +k1,21162:29959896,9210514:233690 +k1,21162:30845014,9210514:233690 +k1,21162:32583029,9210514:0 +) +(1,21163:6764466,10075594:25818563,505283,134348 +k1,21162:10722786,10075594:293547 +k1,21162:11777861,10075594:293547 +k1,21162:15382941,10075594:293546 +k1,21162:16780770,10075594:293547 +k1,21162:18360133,10075594:293547 +k1,21162:19401446,10075594:293547 +k1,21162:20629535,10075594:293546 +k1,21162:21574510,10075594:293547 +k1,21162:24625812,10075594:293547 +k1,21162:27103674,10075594:293547 +k1,21162:30703511,10075594:293546 +k1,21162:31931601,10075594:293547 +k1,21162:32583029,10075594:0 +) +(1,21163:6764466,10940674:25818563,513147,126483 +k1,21162:9789906,10940674:267685 +k1,21162:12241905,10940674:267684 +k1,21162:13501150,10940674:267685 +k1,21162:14835106,10940674:267685 +k1,21162:17688185,10940674:267684 +k1,21162:18607298,10940674:267685 +k1,21162:20438016,10940674:267684 +k1,21162:21897146,10940674:267685 +k1,21162:23156391,10940674:267685 +k1,21162:27649181,10940674:267684 +k1,21162:31923737,10940674:267685 +k1,21162:32583029,10940674:0 +) +(1,21163:6764466,11805754:25818563,505283,7863 +k1,21163:32583029,11805754:23863624 +g1,21163:32583029,11805754 +) +] +g1,21163:32583029,11813617 +) +h1,21163:6630773,11813617:0,0,0 +(1,21166:6630773,12678697:25952256,505283,134348 +h1,21165:6630773,12678697:983040,0,0 +k1,21165:9301345,12678697:490845 +k1,21165:11393890,12678697:490845 +k1,21165:13732850,12678697:490845 +k1,21165:17031257,12678697:490845 +k1,21165:18173531,12678697:490846 +k1,21165:20053739,12678697:490845 +k1,21165:21076081,12678697:490845 +(1,21165:21076081,12678697:0,452978,115847 +r1,21185:23896330,12678697:2820249,568825,115847 +k1,21165:21076081,12678697:-2820249 +) +(1,21165:21076081,12678697:2820249,452978,115847 +k1,21165:21076081,12678697:3277 +h1,21165:23893053,12678697:0,411205,112570 +) +k1,21165:24560845,12678697:490845 +k1,21165:26445641,12678697:490845 +k1,21165:27955571,12678697:490845 +k1,21165:30457061,12678697:490845 +k1,21165:31563944,12678697:490845 +k1,21165:32583029,12678697:0 +) +(1,21166:6630773,13543777:25952256,505283,126483 +k1,21165:9662403,13543777:446235 +k1,21165:12619977,13543777:446234 +k1,21165:15480558,13543777:446235 +k1,21165:19516854,13543777:446234 +k1,21165:20649251,13543777:446235 +k1,21165:23939749,13543777:446235 +k1,21165:26570298,13543777:446234 +k1,21165:27644368,13543777:446235 +k1,21165:28446463,13543777:446235 +k1,21165:30923658,13543777:446234 +k1,21165:32583029,13543777:0 +) +(1,21166:6630773,14408857:25952256,505283,126483 +k1,21165:8008379,14408857:330341 +(1,21165:8008379,14408857:0,452978,115847 +r1,21185:16104305,14408857:8095926,568825,115847 +k1,21165:8008379,14408857:-8095926 +) +(1,21165:8008379,14408857:8095926,452978,115847 +k1,21165:8008379,14408857:3277 +h1,21165:16101028,14408857:0,411205,112570 +) +k1,21165:16608315,14408857:330340 +k1,21165:17957741,14408857:330341 +k1,21165:20799421,14408857:330340 +k1,21165:21745800,14408857:330341 +k1,21165:23095225,14408857:330340 +k1,21165:24814929,14408857:330341 +k1,21165:27101519,14408857:330340 +k1,21165:28179626,14408857:330341 +k1,21165:31189078,14408857:330340 +k1,21165:32583029,14408857:0 +) +(1,21166:6630773,15273937:25952256,505283,134348 +k1,21165:9132229,15273937:508506 +k1,21165:11134301,15273937:508506 +k1,21165:12328969,15273937:508506 +(1,21165:12328969,15273937:0,452978,115847 +r1,21185:14094082,15273937:1765113,568825,115847 +k1,21165:12328969,15273937:-1765113 +) +(1,21165:12328969,15273937:1765113,452978,115847 +k1,21165:12328969,15273937:3277 +h1,21165:14090805,15273937:0,411205,112570 +) +k1,21165:14776258,15273937:508506 +(1,21165:14776258,15273937:0,452978,115847 +r1,21185:16893083,15273937:2116825,568825,115847 +k1,21165:14776258,15273937:-2116825 +) +(1,21165:14776258,15273937:2116825,452978,115847 +k1,21165:14776258,15273937:3277 +h1,21165:16889806,15273937:0,411205,112570 +) +k1,21165:19126497,15273937:508506 +k1,21165:21175099,15273937:508506 +k1,21165:22098138,15273937:508196 +k1,21165:25141577,15273937:508506 +k1,21165:26277918,15273937:508506 +k1,21165:27142284,15273937:508506 +k1,21165:29775467,15273937:508506 +k1,21165:32583029,15273937:0 +) +(1,21166:6630773,16139017:25952256,513147,134348 +k1,21165:8810517,16139017:444351 +(1,21165:8810517,16139017:0,452978,115847 +r1,21185:16906443,16139017:8095926,568825,115847 +k1,21165:8810517,16139017:-8095926 +) +(1,21165:8810517,16139017:8095926,452978,115847 +k1,21165:8810517,16139017:3277 +h1,21165:16903166,16139017:0,411205,112570 +) +k1,21165:17350794,16139017:444351 +k1,21165:19587554,16139017:444350 +k1,21165:20691197,16139017:444351 +k1,21165:21491408,16139017:444351 +k1,21165:24003420,16139017:444351 +k1,21165:25941337,16139017:444351 +k1,21165:27071849,16139017:444350 +(1,21165:27071849,16139017:0,452978,115847 +r1,21185:30947233,16139017:3875384,568825,115847 +k1,21165:27071849,16139017:-3875384 +) +(1,21165:27071849,16139017:3875384,452978,115847 +k1,21165:27071849,16139017:3277 +h1,21165:30943956,16139017:0,411205,112570 +) +k1,21165:31391584,16139017:444351 +k1,21166:32583029,16139017:0 +) +(1,21166:6630773,17004097:25952256,505283,126483 +(1,21165:6630773,17004097:0,452978,115847 +r1,21185:9802733,17004097:3171960,568825,115847 +k1,21165:6630773,17004097:-3171960 +) +(1,21165:6630773,17004097:3171960,452978,115847 +k1,21165:6630773,17004097:3277 +h1,21165:9799456,17004097:0,411205,112570 +) +k1,21165:10170970,17004097:368237 +k1,21165:12495458,17004097:368238 +k1,21165:13611461,17004097:368237 +k1,21165:17789306,17004097:368237 +k1,21165:18843706,17004097:368238 +k1,21165:21627600,17004097:368237 +k1,21165:24357099,17004097:368237 +k1,21165:26119288,17004097:368238 +k1,21165:27506610,17004097:368237 +k1,21165:32583029,17004097:0 +) +(1,21166:6630773,17869177:25952256,513147,126483 +k1,21165:9546667,17869177:280691 +k1,21165:11721347,17869177:280690 +k1,21165:13794448,17869177:280691 +k1,21165:15266583,17869177:280690 +k1,21165:18740188,17869177:280691 +k1,21165:21382140,17869177:280690 +k1,21165:22597374,17869177:280691 +k1,21165:27368591,17869177:280690 +k1,21165:28277117,17869177:280691 +k1,21165:31189078,17869177:280690 +k1,21166:32583029,17869177:0 +) +(1,21166:6630773,18734257:25952256,513147,134348 +(1,21165:6630773,18734257:0,452978,115847 +r1,21185:14023275,18734257:7392502,568825,115847 +k1,21165:6630773,18734257:-7392502 +) +(1,21165:6630773,18734257:7392502,452978,115847 +k1,21165:6630773,18734257:3277 +h1,21165:14019998,18734257:0,411205,112570 +) +k1,21165:14293360,18734257:270085 +k1,21165:15582530,18734257:270085 +k1,21165:17233459,18734257:270085 +k1,21165:20400891,18734257:270085 +k1,21165:23431352,18734257:270085 +k1,21165:24720522,18734257:270085 +k1,21165:27798169,18734257:270085 +k1,21165:30703457,18734257:270085 +k1,21165:32583029,18734257:0 +) +(1,21166:6630773,19599337:25952256,513147,134348 +k1,21165:8590954,19599337:167771 +k1,21165:9950170,19599337:167771 +k1,21165:12479202,19599337:167770 +k1,21165:13408501,19599337:167771 +k1,21165:16003726,19599337:167771 +k1,21165:19574126,19599337:167771 +k1,21165:20393325,19599337:167771 +k1,21165:21580181,19599337:167771 +k1,21165:23320160,19599337:167770 +k1,21165:26687399,19599337:167771 +k1,21165:30466204,19599337:167771 +(1,21165:30466204,19599337:0,452978,115847 +r1,21185:32583029,19599337:2116825,568825,115847 +k1,21165:30466204,19599337:-2116825 +) +(1,21165:30466204,19599337:2116825,452978,115847 +k1,21165:30466204,19599337:3277 +h1,21165:32579752,19599337:0,411205,112570 +) +k1,21165:32583029,19599337:0 +) +(1,21166:6630773,20464417:25952256,505283,115847 +g1,21165:8021447,20464417 +(1,21165:8021447,20464417:0,452978,115847 +r1,21185:10138272,20464417:2116825,568825,115847 +k1,21165:8021447,20464417:-2116825 +) +(1,21165:8021447,20464417:2116825,452978,115847 +k1,21165:8021447,20464417:3277 +h1,21165:10134995,20464417:0,411205,112570 +) +k1,21166:32583028,20464417:22392328 +g1,21166:32583028,20464417 +) +(1,21168:6630773,21329497:25952256,513147,134348 +h1,21167:6630773,21329497:983040,0,0 +k1,21167:9089129,21329497:278629 +k1,21167:11485226,21329497:278629 +k1,21167:12423147,21329497:278629 +k1,21167:13720861,21329497:278629 +k1,21167:16807052,21329497:278629 +k1,21167:17744973,21329497:278629 +k1,21167:18379461,21329497:278628 +k1,21167:22228491,21329497:278629 +k1,21167:25018460,21329497:278629 +k1,21167:25948517,21329497:278629 +k1,21167:26997849,21329497:278629 +k1,21167:30063724,21329497:278629 +k1,21167:31333913,21329497:278629 +k1,21168:32583029,21329497:0 +) +(1,21168:6630773,22194577:25952256,505283,115847 +k1,21167:9007978,22194577:259081 +k1,21167:10661009,22194577:259080 +k1,21167:11275950,22194577:259081 +k1,21167:15105432,22194577:259081 +k1,21167:16936722,22194577:259081 +k1,21167:18689368,22194577:259080 +k1,21167:19634611,22194577:259081 +(1,21167:19634611,22194577:0,452978,115847 +r1,21185:28433960,22194577:8799349,568825,115847 +k1,21167:19634611,22194577:-8799349 +) +(1,21167:19634611,22194577:8799349,452978,115847 +k1,21167:19634611,22194577:3277 +h1,21167:28430683,22194577:0,411205,112570 +) +k1,21167:28866711,22194577:259081 +k1,21167:29753626,22194577:259080 +k1,21167:31215948,22194577:259081 +k1,21167:32583029,22194577:0 +) +(1,21168:6630773,23059657:25952256,513147,134348 +k1,21167:8892537,23059657:268814 +k1,21167:9777389,23059657:268814 +k1,21167:10402064,23059657:268815 +(1,21167:10402064,23059657:0,452978,115847 +r1,21185:12870601,23059657:2468537,568825,115847 +k1,21167:10402064,23059657:-2468537 +) +(1,21167:10402064,23059657:2468537,452978,115847 +k1,21167:10402064,23059657:3277 +h1,21167:12867324,23059657:0,411205,112570 +) +k1,21167:13139415,23059657:268814 +k1,21167:15919569,23059657:268814 +k1,21167:17320845,23059657:268814 +k1,21167:18337426,23059657:268815 +k1,21167:21191635,23059657:268814 +k1,21167:22727915,23059657:268814 +k1,21167:23352589,23059657:268814 +k1,21167:27191805,23059657:268815 +k1,21167:29241232,23059657:268814 +k1,21167:30169338,23059657:268814 +k1,21167:32583029,23059657:0 +) +(1,21168:6630773,23924737:25952256,505283,126483 +k1,21167:8323634,23924737:272040 +k1,21167:9614758,23924737:272039 +k1,21167:14963217,23924737:272040 +k1,21167:17870460,23924737:272040 +k1,21167:20762629,23924737:272040 +k1,21167:23045313,23924737:272039 +k1,21167:24508798,23924737:272040 +k1,21167:27142100,23924737:272040 +k1,21167:27945636,23924737:272039 +k1,21167:31478747,23924737:272040 +k1,21167:32583029,23924737:0 +) +(1,21168:6630773,24789817:25952256,513147,134348 +k1,21167:8178884,24789817:203312 +k1,21167:10541607,24789817:203312 +k1,21167:12821100,24789817:203312 +k1,21167:13652246,24789817:203311 +k1,21167:14874643,24789817:203312 +k1,21167:16445036,24789817:203312 +k1,21167:17315504,24789817:203312 +(1,21167:17315504,24789817:0,452978,115847 +r1,21185:19432329,24789817:2116825,568825,115847 +k1,21167:17315504,24789817:-2116825 +) +(1,21167:17315504,24789817:2116825,452978,115847 +k1,21167:17315504,24789817:3277 +h1,21167:19429052,24789817:0,411205,112570 +) +k1,21167:19809311,24789817:203312 +k1,21167:21704763,24789817:203312 +k1,21167:23810584,24789817:203311 +k1,21167:25106381,24789817:203312 +k1,21167:27996014,24789817:203312 +k1,21167:30893511,24789817:203312 +k1,21167:32583029,24789817:0 +) +(1,21168:6630773,25654897:25952256,505283,134348 +g1,21167:8862273,25654897 +g1,21167:12494933,25654897 +g1,21167:14818839,25654897 +g1,21167:18007820,25654897 +g1,21167:20842252,25654897 +g1,21167:22213920,25654897 +g1,21167:23096034,25654897 +g1,21167:24950047,25654897 +k1,21168:32583029,25654897:5219291 +g1,21168:32583029,25654897 +) +v1,21170:6630773,26519977:0,393216,0 +(1,21171:6630773,29549998:25952256,3423237,0 +g1,21171:6630773,29549998 +g1,21171:6237557,29549998 +r1,21185:6368629,29549998:131072,3423237,0 +g1,21171:6567858,29549998 +g1,21171:6764466,29549998 +[1,21171:6764466,29549998:25818563,3423237,0 +(1,21171:6764466,26828275:25818563,701514,196608 +(1,21170:6764466,26828275:0,701514,196608 +r1,21185:7761522,26828275:997056,898122,196608 +k1,21170:6764466,26828275:-997056 +) +(1,21170:6764466,26828275:997056,701514,196608 +) +k1,21170:7937171,26828275:175649 +k1,21170:8264851,26828275:327680 +k1,21170:9068335,26828275:175649 +k1,21170:10936124,26828275:175649 +k1,21170:13014284,26828275:175650 +k1,21170:15661951,26828275:175649 +k1,21170:18021915,26828275:175649 +k1,21170:18880449,26828275:175649 +(1,21170:18880449,26828275:0,414482,115847 +r1,21185:19590427,26828275:709978,530329,115847 +k1,21170:18880449,26828275:-709978 +) +(1,21170:18880449,26828275:709978,414482,115847 +k1,21170:18880449,26828275:3277 +h1,21170:19587150,26828275:0,411205,112570 +) +k1,21170:19939746,26828275:175649 +k1,21170:21219677,26828275:175649 +k1,21170:22143092,26828275:175649 +k1,21170:25093536,26828275:175650 +k1,21170:26039888,26828275:175649 +k1,21170:29059800,26828275:175649 +k1,21170:31089463,26828275:175649 +k1,21170:32583029,26828275:0 +) +(1,21171:6764466,27693355:25818563,513147,126483 +k1,21170:7713762,27693355:263134 +(1,21170:7713762,27693355:0,452978,115847 +r1,21185:9830587,27693355:2116825,568825,115847 +k1,21170:7713762,27693355:-2116825 +) +(1,21170:7713762,27693355:2116825,452978,115847 +k1,21170:7713762,27693355:3277 +h1,21170:9827310,27693355:0,411205,112570 +) +k1,21170:10267391,27693355:263134 +k1,21170:12220044,27693355:263135 +k1,21170:13099216,27693355:263134 +k1,21170:15064320,27693355:263134 +k1,21170:17024836,27693355:263134 +(1,21170:17024836,27693355:0,414482,115847 +r1,21185:17734814,27693355:709978,530329,115847 +k1,21170:17024836,27693355:-709978 +) +(1,21170:17024836,27693355:709978,414482,115847 +k1,21170:17024836,27693355:3277 +h1,21170:17731537,27693355:0,411205,112570 +) +k1,21170:17997949,27693355:263135 +k1,21170:20271728,27693355:263134 +k1,21170:21526422,27693355:263134 +k1,21170:23918821,27693355:263134 +k1,21170:26715578,27693355:263135 +k1,21170:29305895,27693355:263134 +k1,21170:30228321,27693355:263134 +k1,21170:32583029,27693355:0 +) +(1,21171:6764466,28558435:25818563,505283,134348 +k1,21170:8135857,28558435:196331 +k1,21170:10812070,28558435:196331 +k1,21170:13815963,28558435:196331 +k1,21170:16022939,28558435:196331 +k1,21170:16835308,28558435:196331 +k1,21170:18421002,28558435:196331 +k1,21170:19268761,28558435:196331 +(1,21170:19268761,28558435:0,414482,115847 +r1,21185:19978739,28558435:709978,530329,115847 +k1,21170:19268761,28558435:-709978 +) +(1,21170:19268761,28558435:709978,414482,115847 +k1,21170:19268761,28558435:3277 +h1,21170:19975462,28558435:0,411205,112570 +) +k1,21170:20175071,28558435:196332 +k1,21170:21057564,28558435:196331 +k1,21170:24098158,28558435:196331 +k1,21170:25974832,28558435:196331 +k1,21170:26702660,28558435:196331 +k1,21170:27515029,28558435:196331 +k1,21170:29403500,28558435:196331 +k1,21170:31297213,28558435:196331 +k1,21170:32583029,28558435:0 +) +(1,21171:6764466,29423515:25818563,505283,126483 +k1,21171:32583030,29423515:23136176 +g1,21171:32583030,29423515 +) +] +g1,21171:32583029,29549998 +) +h1,21171:6630773,29549998:0,0,0 +(1,21173:6630773,31666816:25952256,555811,139132 +(1,21173:6630773,31666816:2899444,534184,12975 +g1,21173:6630773,31666816 +g1,21173:9530217,31666816 +) +g1,21173:11378595,31666816 +g1,21173:12945823,31666816 +g1,21173:14518819,31666816 +k1,21173:32583029,31666816:15950543 +g1,21173:32583029,31666816 +) +(1,21180:6630773,32925112:25952256,513147,115847 +k1,21179:8288995,32925112:222328 +k1,21179:8724291,32925112:222304 +k1,21179:11615900,32925112:222328 +k1,21179:12194088,32925112:222328 +k1,21179:14691825,32925112:222327 +k1,21179:17691569,32925112:222328 +k1,21179:18565325,32925112:222328 +k1,21179:19553768,32925112:222327 +k1,21179:21852277,32925112:222328 +k1,21179:23583244,32925112:222328 +(1,21179:23583244,32925112:0,414482,115847 +r1,21185:24996645,32925112:1413401,530329,115847 +k1,21179:23583244,32925112:-1413401 +) +(1,21179:23583244,32925112:1413401,414482,115847 +k1,21179:23583244,32925112:3277 +h1,21179:24993368,32925112:0,411205,112570 +) +k1,21179:25392642,32925112:222327 +k1,21179:26811657,32925112:222328 +k1,21179:29299565,32925112:222328 +(1,21179:29299565,32925112:0,414482,115847 +r1,21185:30712966,32925112:1413401,530329,115847 +k1,21179:29299565,32925112:-1413401 +) +(1,21179:29299565,32925112:1413401,414482,115847 +k1,21179:29299565,32925112:3277 +h1,21179:30709689,32925112:0,411205,112570 +) +k1,21179:30935293,32925112:222327 +k1,21179:31816913,32925112:222328 +k1,21179:32583029,32925112:0 +) +(1,21180:6630773,33790192:25952256,513147,126483 +k1,21179:8702019,33790192:168736 +k1,21179:9402252,33790192:168736 +k1,21179:10590072,33790192:168735 +k1,21179:12496823,33790192:168736 +k1,21179:13324851,33790192:168736 +k1,21179:14512672,33790192:168736 +k1,21179:17192748,33790192:168736 +k1,21179:18044369,33790192:168736 +k1,21179:19232189,33790192:168735 +k1,21179:22840910,33790192:168736 +k1,21179:25595041,33790192:168736 +k1,21179:26415205,33790192:168736 +k1,21179:27215708,33790192:168736 +k1,21179:28012279,33790192:168736 +k1,21179:29200099,33790192:168735 +k1,21179:30735916,33790192:168736 +k1,21179:31563944,33790192:168736 +k1,21180:32583029,33790192:0 +) +(1,21180:6630773,34655272:25952256,513147,134348 +(1,21179:6630773,34655272:0,414482,115847 +r1,21185:6989039,34655272:358266,530329,115847 +k1,21179:6630773,34655272:-358266 +) +(1,21179:6630773,34655272:358266,414482,115847 +k1,21179:6630773,34655272:3277 +h1,21179:6985762,34655272:0,411205,112570 +) +k1,21179:7333077,34655272:170368 +(1,21179:7333077,34655272:0,414482,115847 +r1,21185:7691343,34655272:358266,530329,115847 +k1,21179:7333077,34655272:-358266 +) +(1,21179:7333077,34655272:358266,414482,115847 +k1,21179:7333077,34655272:3277 +h1,21179:7688066,34655272:0,411205,112570 +) +k1,21179:7861712,34655272:170369 +k1,21179:9223525,34655272:170368 +(1,21179:9223525,34655272:0,414482,115847 +r1,21185:9581791,34655272:358266,530329,115847 +k1,21179:9223525,34655272:-358266 +) +(1,21179:9223525,34655272:358266,414482,115847 +k1,21179:9223525,34655272:3277 +h1,21179:9578514,34655272:0,411205,112570 +) +k1,21179:9752159,34655272:170368 +k1,21179:12986992,34655272:170369 +k1,21179:14176445,34655272:170368 +(1,21179:14176445,34655272:0,414482,115847 +r1,21185:15589846,34655272:1413401,530329,115847 +k1,21179:14176445,34655272:-1413401 +) +(1,21179:14176445,34655272:1413401,414482,115847 +k1,21179:14176445,34655272:3277 +h1,21179:15586569,34655272:0,411205,112570 +) +k1,21179:15760214,34655272:170368 +k1,21179:17625344,34655272:170369 +k1,21179:18447140,34655272:170368 +k1,21179:19636593,34655272:170368 +k1,21179:21379171,34655272:170369 +k1,21179:22081036,34655272:170368 +k1,21179:23764630,34655272:170368 +k1,21179:24882650,34655272:170369 +k1,21179:26072103,34655272:170368 +k1,21179:27494864,34655272:170368 +k1,21179:29683087,34655272:170369 +k1,21179:30895477,34655272:170368 +k1,21179:32583029,34655272:0 +) +(1,21180:6630773,35520352:25952256,513147,134348 +k1,21179:9889529,35520352:194292 +k1,21179:11102907,35520352:194293 +k1,21179:13035214,35520352:194292 +k1,21179:13888798,35520352:194292 +k1,21179:15102175,35520352:194292 +k1,21179:16868677,35520352:194293 +k1,21179:19836453,35520352:194292 +k1,21179:21049830,35520352:194292 +k1,21179:24373466,35520352:194292 +k1,21179:25250644,35520352:194293 +k1,21179:26517105,35520352:194292 +k1,21179:27894977,35520352:194292 +k1,21179:28748561,35520352:194292 +k1,21179:29961939,35520352:194293 +k1,21179:31914562,35520352:194292 +k1,21179:32583029,35520352:0 +) +(1,21180:6630773,36385432:25952256,505283,134348 +k1,21179:8059475,36385432:154027 +k1,21179:9111344,36385432:154026 +k1,21179:11167881,36385432:154027 +k1,21179:12797123,36385432:154027 +k1,21179:13307010,36385432:154027 +(1,21179:13307010,36385432:0,414482,115847 +r1,21185:14720411,36385432:1413401,530329,115847 +k1,21179:13307010,36385432:-1413401 +) +(1,21179:13307010,36385432:1413401,414482,115847 +k1,21179:13307010,36385432:3277 +h1,21179:14717134,36385432:0,411205,112570 +) +k1,21179:14874437,36385432:154026 +k1,21179:18309196,36385432:154027 +k1,21179:19114651,36385432:154027 +k1,21179:21154149,36385432:154027 +k1,21179:21664035,36385432:154026 +k1,21179:24792741,36385432:154027 +k1,21179:26812578,36385432:154027 +k1,21179:27649489,36385432:154026 +k1,21179:28574219,36385432:154027 +k1,21179:29143044,36385432:153982 +k1,21179:32583029,36385432:0 +) +(1,21180:6630773,37250512:25952256,513147,134348 +k1,21179:8057210,37250512:215332 +k1,21179:10551230,37250512:215333 +h1,21179:11920277,37250512:0,0,0 +k1,21179:12342703,37250512:215332 +k1,21179:13662318,37250512:215333 +k1,21179:14625416,37250512:215332 +k1,21179:17046036,37250512:215333 +k1,21179:17947530,37250512:215332 +k1,21179:18933565,37250512:215332 +k1,21179:22221226,37250512:215333 +k1,21179:23087986,37250512:215332 +k1,21179:25948352,37250512:215333 +k1,21179:27182769,37250512:215332 +k1,21179:29837352,37250512:215333 +k1,21179:30680519,37250512:215332 +k1,21179:32583029,37250512:0 +) +(1,21180:6630773,38115592:25952256,513147,134348 +k1,21179:8099769,38115592:184490 +k1,21179:9481602,38115592:184490 +k1,21179:10021952,38115592:184490 +k1,21179:11307447,38115592:184490 +k1,21179:12174822,38115592:184490 +k1,21179:14291313,38115592:184490 +k1,21179:16903256,38115592:184489 +(1,21179:16903256,38115592:0,452978,122846 +r1,21185:21833776,38115592:4930520,575824,122846 +k1,21179:16903256,38115592:-4930520 +) +(1,21179:16903256,38115592:4930520,452978,122846 +g1,21179:19016804,38115592 +g1,21179:19720228,38115592 +h1,21179:21830499,38115592:0,411205,112570 +) +k1,21179:22018266,38115592:184490 +k1,21179:22854184,38115592:184490 +k1,21179:24057759,38115592:184490 +k1,21179:25814458,38115592:184490 +k1,21179:28694444,38115592:184490 +k1,21179:31563944,38115592:184490 +k1,21179:32583029,38115592:0 +) +(1,21180:6630773,38980672:25952256,505283,134348 +g1,21179:7931007,38980672 +g1,21179:12753801,38980672 +g1,21179:13604458,38980672 +g1,21179:14822772,38980672 +k1,21180:32583029,38980672:16135620 +g1,21180:32583029,38980672 +) +(1,21183:6630773,39845752:25952256,513147,115847 +h1,21181:6630773,39845752:983040,0,0 +k1,21181:11923185,39845752:280874 +k1,21181:15229857,39845752:280875 +(1,21181:15229857,39845752:0,452978,115847 +r1,21185:17346682,39845752:2116825,568825,115847 +k1,21181:15229857,39845752:-2116825 +) +(1,21181:15229857,39845752:2116825,452978,115847 +k1,21181:15229857,39845752:3277 +h1,21181:17343405,39845752:0,411205,112570 +) +k1,21181:17627556,39845752:280874 +k1,21181:19099875,39845752:280874 +(1,21181:19099875,39845752:0,452978,115847 +r1,21185:21216700,39845752:2116825,568825,115847 +k1,21181:19099875,39845752:-2116825 +) +(1,21181:19099875,39845752:2116825,452978,115847 +k1,21181:19099875,39845752:3277 +h1,21181:21213423,39845752:0,411205,112570 +) +k1,21181:21497574,39845752:280874 +k1,21181:22882731,39845752:280875 +k1,21181:23911371,39845752:280874 +k1,21181:25705471,39845752:280874 +k1,21181:26637773,39845752:280874 +k1,21181:27853191,39845752:280875 +k1,21181:29153150,39845752:280874 +k1,21181:30686417,39845752:280874 +k1,21181:32583029,39845752:0 +) +(1,21183:6630773,40710832:25952256,513147,134348 +k1,21182:10910392,40710832:251121 +k1,21182:13857009,40710832:251121 +(1,21182:13857009,40710832:0,452978,115847 +r1,21185:15973834,40710832:2116825,568825,115847 +k1,21182:13857009,40710832:-2116825 +) +(1,21182:13857009,40710832:2116825,452978,115847 +k1,21182:13857009,40710832:3277 +h1,21182:15970557,40710832:0,411205,112570 +) +k1,21182:16224954,40710832:251120 +k1,21182:17580357,40710832:251121 +k1,21182:18579244,40710832:251121 +k1,21182:20343591,40710832:251121 +k1,21182:21246140,40710832:251121 +k1,21182:24429997,40710832:251121 +k1,21182:25615660,40710832:251120 +k1,21182:27119174,40710832:251121 +k1,21182:29388149,40710832:251121 +k1,21182:32583029,40710832:0 +) +(1,21183:6630773,41575912:25952256,513147,126483 +k1,21182:8643670,41575912:241459 +k1,21182:10076574,41575912:241459 +k1,21182:11585499,41575912:241459 +k1,21182:13018404,41575912:241460 +k1,21182:14961833,41575912:241459 +k1,21182:17047475,41575912:241459 +k1,21182:18236585,41575912:241459 +k1,21182:19497129,41575912:241459 +k1,21182:21015885,41575912:241459 +k1,21182:21943506,41575912:241459 +k1,21182:22540825,41575912:241459 +k1,21182:24838805,41575912:241460 +k1,21182:26122286,41575912:241459 +k1,21182:27382830,41575912:241459 +k1,21182:29692605,41575912:241459 +k1,21182:30593356,41575912:241459 +k1,21183:32583029,41575912:0 +) +(1,21183:6630773,42440992:25952256,513147,134348 +(1,21182:6630773,42440992:0,452978,115847 +r1,21185:8747598,42440992:2116825,568825,115847 +k1,21182:6630773,42440992:-2116825 +) +(1,21182:6630773,42440992:2116825,452978,115847 +k1,21182:6630773,42440992:3277 +h1,21182:8744321,42440992:0,411205,112570 +) +k1,21182:8888600,42440992:141002 +k1,21182:11407904,42440992:141002 +k1,21182:12567992,42440992:141003 +k1,21182:14777310,42440992:141002 +k1,21182:15577604,42440992:141002 +k1,21182:18893170,42440992:141002 +k1,21182:19720335,42440992:141003 +k1,21182:20327298,42440992:141002 +k1,21182:21848488,42440992:141002 +k1,21182:23493541,42440992:141002 +k1,21182:25763152,42440992:141002 +k1,21182:29515189,42440992:141003 +k1,21182:30847636,42440992:141002 +k1,21183:32583029,42440992:0 +) +(1,21183:6630773,43306072:25952256,513147,126483 +(1,21182:6630773,43306072:0,452978,115847 +r1,21185:8395886,43306072:1765113,568825,115847 +k1,21182:6630773,43306072:-1765113 +) +(1,21182:6630773,43306072:1765113,452978,115847 +k1,21182:6630773,43306072:3277 +h1,21182:8392609,43306072:0,411205,112570 +) +k1,21182:8817046,43306072:247490 +(1,21182:8817046,43306072:0,452978,115847 +r1,21185:11637295,43306072:2820249,568825,115847 +k1,21182:8817046,43306072:-2820249 +) +(1,21182:8817046,43306072:2820249,452978,115847 +k1,21182:8817046,43306072:3277 +h1,21182:11634018,43306072:0,411205,112570 +) +k1,21182:12058454,43306072:247489 +(1,21182:12058454,43306072:0,452978,115847 +r1,21185:14526991,43306072:2468537,568825,115847 +k1,21182:12058454,43306072:-2468537 +) +(1,21182:12058454,43306072:2468537,452978,115847 +k1,21182:12058454,43306072:3277 +h1,21182:14523714,43306072:0,411205,112570 +) +k1,21182:14948151,43306072:247490 +(1,21182:14948151,43306072:0,414482,122846 +r1,21185:16009840,43306072:1061689,537328,122846 +k1,21182:14948151,43306072:-1061689 +) +(1,21182:14948151,43306072:1061689,414482,122846 +k1,21182:14948151,43306072:3277 +h1,21182:16006563,43306072:0,411205,112570 +) +k1,21182:16257329,43306072:247489 +k1,21182:17696264,43306072:247490 +(1,21182:17696264,43306072:0,452978,115847 +r1,21185:18757953,43306072:1061689,568825,115847 +k1,21182:17696264,43306072:-1061689 +) +(1,21182:17696264,43306072:1061689,452978,115847 +k1,21182:17696264,43306072:3277 +h1,21182:18754676,43306072:0,411205,112570 +) +k1,21182:19005442,43306072:247489 +k1,21182:20200583,43306072:247490 +k1,21182:21467157,43306072:247489 +k1,21182:23558830,43306072:247490 +k1,21182:24753970,43306072:247489 +k1,21182:26020545,43306072:247490 +k1,21182:27545331,43306072:247489 +k1,21182:28478983,43306072:247490 +k1,21182:29082332,43306072:247489 +k1,21182:31386342,43306072:247490 +k1,21182:32583029,43306072:0 +) +(1,21183:6630773,44171152:25952256,505283,126483 +k1,21182:8047160,44171152:190208 +k1,21182:10442655,44171152:190208 +k1,21182:11284291,44171152:190208 +(1,21182:11284291,44171152:0,452978,115847 +r1,21185:12345980,44171152:1061689,568825,115847 +k1,21182:11284291,44171152:-1061689 +) +(1,21182:11284291,44171152:1061689,452978,115847 +k1,21182:11284291,44171152:3277 +h1,21182:12342703,44171152:0,411205,112570 +) +k1,21182:12536188,44171152:190208 +k1,21182:13257894,44171152:190209 +k1,21182:14514373,44171152:190208 +k1,21182:16747338,44171152:190208 +k1,21182:17553584,44171152:190208 +k1,21182:18762877,44171152:190208 +k1,21182:20230382,44171152:190208 +k1,21182:21492759,44171152:190208 +k1,21182:22214464,44171152:190208 +k1,21182:25243693,44171152:190209 +k1,21182:26085329,44171152:190208 +k1,21182:27023303,44171152:190208 +k1,21182:28957424,44171152:190208 +k1,21182:31931601,44171152:190208 +k1,21182:32583029,44171152:0 +) +(1,21183:6630773,45036232:25952256,513147,126483 +k1,21182:8064449,45036232:191113 +k1,21182:11156185,45036232:191113 +k1,21182:12538743,45036232:191113 +k1,21182:14243082,45036232:191113 +k1,21182:15085623,45036232:191113 +k1,21182:17905385,45036232:191113 +k1,21182:22128272,45036232:191112 +k1,21182:23723166,45036232:191113 +k1,21182:25183056,45036232:191113 +k1,21182:26033461,45036232:191113 +k1,21182:27492040,45036232:191113 +k1,21182:28874598,45036232:191113 +k1,21182:31478747,45036232:191113 +k1,21182:32583029,45036232:0 +) +] +(1,21185:32583029,45706769:0,0,0 +g1,21185:32583029,45706769 +) +) +] +(1,21185:6630773,47279633:25952256,0,0 +h1,21185:6630773,47279633:25952256,0,0 +) +] +(1,21185:4262630,4025873:0,0,0 +[1,21185:-473656,4025873:0,0,0 +(1,21185:-473656,-710413:0,0,0 +(1,21185:-473656,-710413:0,0,0 +g1,21185:-473656,-710413 +) +g1,21185:-473656,-710413 ) ] ) ] !33791 -}357 -Input:3899:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}358 +Input:3903:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{358 -[1,21243:4262630,47279633:28320399,43253760,0 -(1,21243:4262630,4025873:0,0,0 -[1,21243:-473656,4025873:0,0,0 -(1,21243:-473656,-710413:0,0,0 -(1,21243:-473656,-644877:0,0,0 -k1,21243:-473656,-644877:-65536 +{359 +[1,21241:4262630,47279633:28320399,43253760,0 +(1,21241:4262630,4025873:0,0,0 +[1,21241:-473656,4025873:0,0,0 +(1,21241:-473656,-710413:0,0,0 +(1,21241:-473656,-644877:0,0,0 +k1,21241:-473656,-644877:-65536 ) -(1,21243:-473656,4736287:0,0,0 -k1,21243:-473656,4736287:5209943 +(1,21241:-473656,4736287:0,0,0 +k1,21241:-473656,4736287:5209943 ) -g1,21243:-473656,-710413 +g1,21241:-473656,-710413 ) ] ) -[1,21243:6630773,47279633:25952256,43253760,0 -[1,21243:6630773,4812305:25952256,786432,0 -(1,21243:6630773,4812305:25952256,505283,11795 -(1,21243:6630773,4812305:25952256,505283,11795 -g1,21243:3078558,4812305 -[1,21243:3078558,4812305:0,0,0 -(1,21243:3078558,2439708:0,1703936,0 -k1,21243:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21243:2537886,2439708:1179648,16384,0 +[1,21241:6630773,47279633:25952256,43253760,0 +[1,21241:6630773,4812305:25952256,786432,0 +(1,21241:6630773,4812305:25952256,505283,11795 +(1,21241:6630773,4812305:25952256,505283,11795 +g1,21241:3078558,4812305 +[1,21241:3078558,4812305:0,0,0 +(1,21241:3078558,2439708:0,1703936,0 +k1,21241:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21241:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21243:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21241:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21243:3078558,4812305:0,0,0 -(1,21243:3078558,2439708:0,1703936,0 -g1,21243:29030814,2439708 -g1,21243:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21243:36151628,1915420:16384,1179648,0 +[1,21241:3078558,4812305:0,0,0 +(1,21241:3078558,2439708:0,1703936,0 +g1,21241:29030814,2439708 +g1,21241:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21241:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21243:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21241:37855564,2439708:1179648,16384,0 ) ) -k1,21243:3078556,2439708:-34777008 +k1,21241:3078556,2439708:-34777008 ) ] -[1,21243:3078558,4812305:0,0,0 -(1,21243:3078558,49800853:0,16384,2228224 -k1,21243:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21243:2537886,49800853:1179648,16384,0 +[1,21241:3078558,4812305:0,0,0 +(1,21241:3078558,49800853:0,16384,2228224 +k1,21241:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21241:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21243:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21241:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21243:3078558,4812305:0,0,0 -(1,21243:3078558,49800853:0,16384,2228224 -g1,21243:29030814,49800853 -g1,21243:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21243:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21243:37855564,49800853:1179648,16384,0 -) -) -k1,21243:3078556,49800853:-34777008 -) -] -g1,21243:6630773,4812305 -g1,21243:6630773,4812305 -g1,21243:8724648,4812305 -k1,21243:31387652,4812305:22663004 -) -) -] -[1,21243:6630773,45706769:25952256,40108032,0 -(1,21243:6630773,45706769:25952256,40108032,0 -(1,21243:6630773,45706769:0,0,0 -g1,21243:6630773,45706769 -) -[1,21243:6630773,45706769:25952256,40108032,0 -(1,21185:6630773,6254097:25952256,513147,134348 -k1,21184:8477141,6254097:201414 -k1,21184:9724510,6254097:201414 -k1,21184:10901755,6254097:201414 -k1,21184:12801206,6254097:201413 -k1,21184:16099851,6254097:201414 -k1,21184:18486891,6254097:201414 -k1,21184:19301067,6254097:201414 -k1,21184:19858341,6254097:201414 -k1,21184:21776143,6254097:201414 -k1,21184:23420004,6254097:201414 -k1,21184:24646401,6254097:201414 -k1,21184:27126501,6254097:201413 -h1,21184:28495548,6254097:0,0,0 -k1,21184:28696962,6254097:201414 -k1,21184:29707746,6254097:201414 -k1,21184:31407313,6254097:201414 -h1,21184:32602690,6254097:0,0,0 -k1,21184:32583029,6254097:0 -) -(1,21185:6630773,7119177:25952256,513147,126483 -g1,21184:7639372,7119177 -g1,21184:9168982,7119177 -g1,21184:10019639,7119177 -g1,21184:12517216,7119177 -g1,21184:13907890,7119177 -g1,21184:16369422,7119177 -g1,21184:17587736,7119177 -g1,21184:19773361,7119177 -k1,21185:32583029,7119177:10956966 -g1,21185:32583029,7119177 -) -v1,21187:6630773,7804032:0,393216,0 -(1,21195:6630773,10884135:25952256,3473319,196608 -g1,21195:6630773,10884135 -g1,21195:6630773,10884135 -g1,21195:6434165,10884135 -(1,21195:6434165,10884135:0,3473319,196608 -r1,21243:32779637,10884135:26345472,3669927,196608 -k1,21195:6434165,10884135:-26345472 -) -(1,21195:6434165,10884135:26345472,3473319,196608 -[1,21195:6630773,10884135:25952256,3276711,0 -(1,21189:6630773,8031863:25952256,424439,106246 -(1,21188:6630773,8031863:0,0,0 -g1,21188:6630773,8031863 -g1,21188:6630773,8031863 -g1,21188:6303093,8031863 -(1,21188:6303093,8031863:0,0,0 -) -g1,21188:6630773,8031863 -) -g1,21189:8954451,8031863 -k1,21189:8954451,8031863:0 -h1,21189:9618359,8031863:0,0,0 -k1,21189:32583029,8031863:22964670 -g1,21189:32583029,8031863 -) -(1,21190:6630773,8716718:25952256,424439,112852 -h1,21190:6630773,8716718:0,0,0 -g1,21190:6962727,8716718 -g1,21190:7294681,8716718 -g1,21190:11278129,8716718 -g1,21190:11942037,8716718 -k1,21190:11942037,8716718:0 -h1,21190:14265715,8716718:0,0,0 -k1,21190:32583029,8716718:18317314 -g1,21190:32583029,8716718 -) -(1,21191:6630773,9401573:25952256,431045,112852 -h1,21191:6630773,9401573:0,0,0 -g1,21191:6962727,9401573 -g1,21191:7294681,9401573 -g1,21191:7626635,9401573 -g1,21191:7958589,9401573 -g1,21191:8290543,9401573 -g1,21191:8622497,9401573 -g1,21191:8954451,9401573 -g1,21191:9286405,9401573 -g1,21191:9618359,9401573 -g1,21191:12273991,9401573 -g1,21191:12937899,9401573 -g1,21191:14929623,9401573 -g1,21191:15593531,9401573 -g1,21191:17253301,9401573 -g1,21191:17917209,9401573 -g1,21191:18581117,9401573 -g1,21191:23560426,9401573 -g1,21191:25884104,9401573 -g1,21191:26548012,9401573 -g1,21191:28871690,9401573 -h1,21191:29203644,9401573:0,0,0 -k1,21191:32583029,9401573:3379385 -g1,21191:32583029,9401573 -) -(1,21192:6630773,10086428:25952256,424439,112852 -h1,21192:6630773,10086428:0,0,0 -g1,21192:6962727,10086428 -g1,21192:7294681,10086428 -g1,21192:11278128,10086428 -h1,21192:11610082,10086428:0,0,0 -k1,21192:32583030,10086428:20972948 -g1,21192:32583030,10086428 -) -(1,21193:6630773,10771283:25952256,424439,112852 -h1,21193:6630773,10771283:0,0,0 -g1,21193:6962727,10771283 -g1,21193:7294681,10771283 -k1,21193:7294681,10771283:0 -h1,21193:11278128,10771283:0,0,0 -k1,21193:32583028,10771283:21304900 -g1,21193:32583028,10771283 -) -] -) -g1,21195:32583029,10884135 -g1,21195:6630773,10884135 -g1,21195:6630773,10884135 -g1,21195:32583029,10884135 -g1,21195:32583029,10884135 -) -h1,21195:6630773,11080743:0,0,0 -v1,21199:6630773,11765598:0,393216,0 -(1,21212:6630773,18236946:25952256,6864564,196608 -g1,21212:6630773,18236946 -g1,21212:6630773,18236946 -g1,21212:6434165,18236946 -(1,21212:6434165,18236946:0,6864564,196608 -r1,21243:32779637,18236946:26345472,7061172,196608 -k1,21212:6434165,18236946:-26345472 -) -(1,21212:6434165,18236946:26345472,6864564,196608 -[1,21212:6630773,18236946:25952256,6667956,0 -(1,21201:6630773,11993429:25952256,424439,106246 -(1,21200:6630773,11993429:0,0,0 -g1,21200:6630773,11993429 -g1,21200:6630773,11993429 -g1,21200:6303093,11993429 -(1,21200:6303093,11993429:0,0,0 -) -g1,21200:6630773,11993429 -) -g1,21201:8954451,11993429 -h1,21201:9286405,11993429:0,0,0 -k1,21201:32583029,11993429:23296624 -g1,21201:32583029,11993429 -) -(1,21202:6630773,12678284:25952256,424439,106246 -h1,21202:6630773,12678284:0,0,0 -g1,21202:6962727,12678284 -g1,21202:7294681,12678284 -g1,21202:12605944,12678284 -g1,21202:13269852,12678284 -g1,21202:14265714,12678284 -h1,21202:14597668,12678284:0,0,0 -k1,21202:32583028,12678284:17985360 -g1,21202:32583028,12678284 -) -(1,21203:6630773,13363139:25952256,431045,112852 -h1,21203:6630773,13363139:0,0,0 -g1,21203:6962727,13363139 -g1,21203:7294681,13363139 -g1,21203:10946175,13363139 -g1,21203:11610083,13363139 -g1,21203:14265715,13363139 -g1,21203:15261577,13363139 -g1,21203:17585255,13363139 -k1,21203:17585255,13363139:0 -h1,21203:19908933,13363139:0,0,0 -k1,21203:32583029,13363139:12674096 -g1,21203:32583029,13363139 -) -(1,21204:6630773,14047994:25952256,431045,112852 -h1,21204:6630773,14047994:0,0,0 -g1,21204:6962727,14047994 -g1,21204:7294681,14047994 -g1,21204:7626635,14047994 -g1,21204:7958589,14047994 -g1,21204:8290543,14047994 -g1,21204:8622497,14047994 -g1,21204:8954451,14047994 -g1,21204:11942036,14047994 -g1,21204:12605944,14047994 -g1,21204:15925483,14047994 -g1,21204:17585253,14047994 -k1,21204:17585253,14047994:0 -h1,21204:21568701,14047994:0,0,0 -k1,21204:32583029,14047994:11014328 -g1,21204:32583029,14047994 -) -(1,21205:6630773,14732849:25952256,424439,106246 -h1,21205:6630773,14732849:0,0,0 -g1,21205:6962727,14732849 -g1,21205:7294681,14732849 -g1,21205:7626635,14732849 -g1,21205:7958589,14732849 -g1,21205:8290543,14732849 -g1,21205:8622497,14732849 -g1,21205:8954451,14732849 -g1,21205:11610083,14732849 -g1,21205:12273991,14732849 -g1,21205:13933761,14732849 -g1,21205:16589393,14732849 -g1,21205:17585255,14732849 -g1,21205:18581117,14732849 -g1,21205:19908933,14732849 -g1,21205:22232611,14732849 -g1,21205:23228473,14732849 -k1,21205:23228473,14732849:0 -h1,21205:25884105,14732849:0,0,0 -k1,21205:32583029,14732849:6698924 -g1,21205:32583029,14732849 -) -(1,21206:6630773,15417704:25952256,424439,112852 -h1,21206:6630773,15417704:0,0,0 -g1,21206:6962727,15417704 -g1,21206:7294681,15417704 -g1,21206:7626635,15417704 -g1,21206:7958589,15417704 -g1,21206:8290543,15417704 -g1,21206:8622497,15417704 -g1,21206:8954451,15417704 -g1,21206:10282267,15417704 -g1,21206:10946175,15417704 -k1,21206:10946175,15417704:0 -h1,21206:12273991,15417704:0,0,0 -k1,21206:32583029,15417704:20309038 -g1,21206:32583029,15417704 -) -(1,21207:6630773,16102559:25952256,424439,106246 -h1,21207:6630773,16102559:0,0,0 -g1,21207:6962727,16102559 -g1,21207:7294681,16102559 -g1,21207:7626635,16102559 -g1,21207:7958589,16102559 -g1,21207:8290543,16102559 -g1,21207:8622497,16102559 -g1,21207:8954451,16102559 -g1,21207:10282267,16102559 -g1,21207:10946175,16102559 -g1,21207:11942037,16102559 -g1,21207:13601807,16102559 -k1,21207:13601807,16102559:0 -h1,21207:15593531,16102559:0,0,0 -k1,21207:32583029,16102559:16989498 -g1,21207:32583029,16102559 -) -(1,21208:6630773,16787414:25952256,424439,86428 -h1,21208:6630773,16787414:0,0,0 -g1,21208:6962727,16787414 -g1,21208:7294681,16787414 -g1,21208:7626635,16787414 -g1,21208:7958589,16787414 -g1,21208:8290543,16787414 -g1,21208:8622497,16787414 -g1,21208:8954451,16787414 -g1,21208:9618359,16787414 -g1,21208:10282267,16787414 -g1,21208:12273991,16787414 -k1,21208:12273991,16787414:0 -h1,21208:13933761,16787414:0,0,0 -k1,21208:32583029,16787414:18649268 -g1,21208:32583029,16787414 -) -(1,21209:6630773,17472269:25952256,431045,106246 -h1,21209:6630773,17472269:0,0,0 -g1,21209:6962727,17472269 -g1,21209:7294681,17472269 -g1,21209:7626635,17472269 -g1,21209:7958589,17472269 -g1,21209:8290543,17472269 -g1,21209:8622497,17472269 -g1,21209:8954451,17472269 -g1,21209:9618359,17472269 -g1,21209:10282267,17472269 -g1,21209:15261576,17472269 -k1,21209:15261576,17472269:0 -h1,21209:17253300,17472269:0,0,0 -k1,21209:32583029,17472269:15329729 -g1,21209:32583029,17472269 -) -(1,21210:6630773,18157124:25952256,424439,79822 -h1,21210:6630773,18157124:0,0,0 -g1,21210:6962727,18157124 -g1,21210:7294681,18157124 -g1,21210:7626635,18157124 -g1,21210:7958589,18157124 -g1,21210:8290543,18157124 -g1,21210:8622497,18157124 -g1,21210:8954451,18157124 -g1,21210:11278129,18157124 -g1,21210:11942037,18157124 -h1,21210:16921346,18157124:0,0,0 -k1,21210:32583029,18157124:15661683 -g1,21210:32583029,18157124 -) -] -) -g1,21212:32583029,18236946 -g1,21212:6630773,18236946 -g1,21212:6630773,18236946 -g1,21212:32583029,18236946 -g1,21212:32583029,18236946 -) -h1,21212:6630773,18433554:0,0,0 -(1,21215:6630773,28133668:25952256,9634578,0 -k1,21215:13183781,28133668:6553008 -h1,21214:13183781,28133668:0,0,0 -(1,21214:13183781,28133668:12846240,9634578,0 -(1,21214:13183781,28133668:12846136,9634602,0 -(1,21214:13183781,28133668:12846136,9634602,0 -(1,21214:13183781,28133668:0,9634602,0 -(1,21214:13183781,28133668:0,14208860,0 -(1,21214:13183781,28133668:18945146,14208860,0 -) -k1,21214:13183781,28133668:-18945146 -) -) -g1,21214:26029917,28133668 -) -) -) -g1,21215:26030021,28133668 -k1,21215:32583029,28133668:6553008 -) -(1,21222:6630773,28998748:25952256,505283,134348 -h1,21221:6630773,28998748:983040,0,0 -k1,21221:9594160,28998748:197112 -k1,21221:12218726,28998748:197112 -k1,21221:14484154,28998748:197112 -k1,21221:17095611,28998748:197111 -k1,21221:17944151,28998748:197112 -k1,21221:20217444,28998748:197112 -k1,21221:21433641,28998748:197112 -k1,21221:22908050,28998748:197112 -k1,21221:24372628,28998748:197112 -k1,21221:25761184,28998748:197111 -k1,21221:28371332,28998748:197112 -k1,21221:29672726,28998748:197112 -k1,21221:30617604,28998748:197112 -k1,21221:32583029,28998748:0 -) -(1,21222:6630773,29863828:25952256,513147,134348 -k1,21221:8266438,29863828:267928 -k1,21221:11229861,29863828:267927 -(1,21221:11229861,29863828:0,452978,122846 -r1,21243:14401821,29863828:3171960,575824,122846 -k1,21221:11229861,29863828:-3171960 -) -(1,21221:11229861,29863828:3171960,452978,122846 -k1,21221:11229861,29863828:3277 -h1,21221:14398544,29863828:0,411205,112570 -) -k1,21221:14669749,29863828:267928 -k1,21221:15699205,29863828:267928 -k1,21221:18394586,29863828:267927 -k1,21221:20518494,29863828:267928 -k1,21221:23761100,29863828:267927 -k1,21221:26225139,29863828:267928 -k1,21221:27175952,29863828:267928 -k1,21221:27858653,29863828:267858 -k1,21221:31896867,29863828:267928 -k1,21221:32583029,29863828:0 -) -(1,21222:6630773,30728908:25952256,426639,134348 -k1,21222:32583029,30728908:22497198 -g1,21222:32583029,30728908 -) -v1,21224:6630773,31413763:0,393216,0 -(1,21233:6630773,35178721:25952256,4158174,196608 -g1,21233:6630773,35178721 -g1,21233:6630773,35178721 -g1,21233:6434165,35178721 -(1,21233:6434165,35178721:0,4158174,196608 -r1,21243:32779637,35178721:26345472,4354782,196608 -k1,21233:6434165,35178721:-26345472 -) -(1,21233:6434165,35178721:26345472,4158174,196608 -[1,21233:6630773,35178721:25952256,3961566,0 -(1,21226:6630773,31641594:25952256,424439,106246 -(1,21225:6630773,31641594:0,0,0 -g1,21225:6630773,31641594 -g1,21225:6630773,31641594 -g1,21225:6303093,31641594 -(1,21225:6303093,31641594:0,0,0 -) -g1,21225:6630773,31641594 -) -g1,21226:8954451,31641594 -h1,21226:9286405,31641594:0,0,0 -k1,21226:32583029,31641594:23296624 -g1,21226:32583029,31641594 -) -(1,21227:6630773,32326449:25952256,424439,106246 -h1,21227:6630773,32326449:0,0,0 -g1,21227:6962727,32326449 -g1,21227:7294681,32326449 -g1,21227:12605944,32326449 -g1,21227:13269852,32326449 -g1,21227:14265714,32326449 -h1,21227:14597668,32326449:0,0,0 -k1,21227:32583028,32326449:17985360 -g1,21227:32583028,32326449 -) -(1,21228:6630773,33011304:25952256,424439,79822 -h1,21228:6630773,33011304:0,0,0 -g1,21228:6962727,33011304 -g1,21228:7294681,33011304 -g1,21228:15261576,33011304 -g1,21228:15925484,33011304 -g1,21228:17917208,33011304 -g1,21228:19908932,33011304 -h1,21228:20240886,33011304:0,0,0 -k1,21228:32583029,33011304:12342143 -g1,21228:32583029,33011304 -) -(1,21229:6630773,33696159:25952256,431045,106246 -h1,21229:6630773,33696159:0,0,0 -g1,21229:6962727,33696159 -g1,21229:7294681,33696159 -g1,21229:15261576,33696159 -g1,21229:15925484,33696159 -g1,21229:20904793,33696159 -g1,21229:23228471,33696159 -h1,21229:23560425,33696159:0,0,0 -k1,21229:32583029,33696159:9022604 -g1,21229:32583029,33696159 -) -(1,21230:6630773,34381014:25952256,431045,112852 -h1,21230:6630773,34381014:0,0,0 -g1,21230:6962727,34381014 -g1,21230:7294681,34381014 -g1,21230:11942037,34381014 -g1,21230:12605945,34381014 -g1,21230:15261577,34381014 -g1,21230:16257439,34381014 -g1,21230:18581117,34381014 -k1,21230:18581117,34381014:0 -h1,21230:20904795,34381014:0,0,0 -k1,21230:32583029,34381014:11678234 -g1,21230:32583029,34381014 -) -(1,21231:6630773,35065869:25952256,431045,112852 -h1,21231:6630773,35065869:0,0,0 -g1,21231:6962727,35065869 -g1,21231:7294681,35065869 -g1,21231:7626635,35065869 -g1,21231:7958589,35065869 -g1,21231:8290543,35065869 -g1,21231:8622497,35065869 -g1,21231:8954451,35065869 -g1,21231:9286405,35065869 -g1,21231:9618359,35065869 -g1,21231:9950313,35065869 -g1,21231:12937898,35065869 -g1,21231:13601806,35065869 -g1,21231:16921345,35065869 -g1,21231:18581115,35065869 -k1,21231:18581115,35065869:0 -h1,21231:22564563,35065869:0,0,0 -k1,21231:32583029,35065869:10018466 -g1,21231:32583029,35065869 -) -] -) -g1,21233:32583029,35178721 -g1,21233:6630773,35178721 -g1,21233:6630773,35178721 -g1,21233:32583029,35178721 -g1,21233:32583029,35178721 -) -h1,21233:6630773,35375329:0,0,0 -(1,21236:6630773,45075443:25952256,9634578,0 -k1,21236:13183781,45075443:6553008 -h1,21235:13183781,45075443:0,0,0 -(1,21235:13183781,45075443:12846240,9634578,0 -(1,21235:13183781,45075443:12846136,9634602,0 -(1,21235:13183781,45075443:12846136,9634602,0 -(1,21235:13183781,45075443:0,9634602,0 -(1,21235:13183781,45075443:0,14208860,0 -(1,21235:13183781,45075443:18945146,14208860,0 -) -k1,21235:13183781,45075443:-18945146 -) -) -g1,21235:26029917,45075443 -) -) -) -g1,21236:26030021,45075443 -k1,21236:32583029,45075443:6553008 -) -] -(1,21243:32583029,45706769:0,0,0 -g1,21243:32583029,45706769 -) -) -] -(1,21243:6630773,47279633:25952256,0,0 -h1,21243:6630773,47279633:25952256,0,0 -) -] -(1,21243:4262630,4025873:0,0,0 -[1,21243:-473656,4025873:0,0,0 -(1,21243:-473656,-710413:0,0,0 -(1,21243:-473656,-710413:0,0,0 -g1,21243:-473656,-710413 -) -g1,21243:-473656,-710413 +[1,21241:3078558,4812305:0,0,0 +(1,21241:3078558,49800853:0,16384,2228224 +g1,21241:29030814,49800853 +g1,21241:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21241:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21241:37855564,49800853:1179648,16384,0 +) +) +k1,21241:3078556,49800853:-34777008 +) +] +g1,21241:6630773,4812305 +g1,21241:6630773,4812305 +g1,21241:8724648,4812305 +k1,21241:31387652,4812305:22663004 +) +) +] +[1,21241:6630773,45706769:25952256,40108032,0 +(1,21241:6630773,45706769:25952256,40108032,0 +(1,21241:6630773,45706769:0,0,0 +g1,21241:6630773,45706769 +) +[1,21241:6630773,45706769:25952256,40108032,0 +(1,21183:6630773,6254097:25952256,513147,134348 +k1,21182:8477141,6254097:201414 +k1,21182:9724510,6254097:201414 +k1,21182:10901755,6254097:201414 +k1,21182:12801206,6254097:201413 +k1,21182:16099851,6254097:201414 +k1,21182:18486891,6254097:201414 +k1,21182:19301067,6254097:201414 +k1,21182:19858341,6254097:201414 +k1,21182:21776143,6254097:201414 +k1,21182:23420004,6254097:201414 +k1,21182:24646401,6254097:201414 +k1,21182:27126501,6254097:201413 +h1,21182:28495548,6254097:0,0,0 +k1,21182:28696962,6254097:201414 +k1,21182:29707746,6254097:201414 +k1,21182:31407313,6254097:201414 +h1,21182:32602690,6254097:0,0,0 +k1,21182:32583029,6254097:0 +) +(1,21183:6630773,7119177:25952256,513147,126483 +g1,21182:7639372,7119177 +g1,21182:9168982,7119177 +g1,21182:10019639,7119177 +g1,21182:12517216,7119177 +g1,21182:13907890,7119177 +g1,21182:16369422,7119177 +g1,21182:17587736,7119177 +g1,21182:19773361,7119177 +k1,21183:32583029,7119177:10956966 +g1,21183:32583029,7119177 +) +v1,21185:6630773,7804032:0,393216,0 +(1,21193:6630773,10884135:25952256,3473319,196608 +g1,21193:6630773,10884135 +g1,21193:6630773,10884135 +g1,21193:6434165,10884135 +(1,21193:6434165,10884135:0,3473319,196608 +r1,21241:32779637,10884135:26345472,3669927,196608 +k1,21193:6434165,10884135:-26345472 +) +(1,21193:6434165,10884135:26345472,3473319,196608 +[1,21193:6630773,10884135:25952256,3276711,0 +(1,21187:6630773,8031863:25952256,424439,106246 +(1,21186:6630773,8031863:0,0,0 +g1,21186:6630773,8031863 +g1,21186:6630773,8031863 +g1,21186:6303093,8031863 +(1,21186:6303093,8031863:0,0,0 +) +g1,21186:6630773,8031863 +) +g1,21187:8954451,8031863 +k1,21187:8954451,8031863:0 +h1,21187:9618359,8031863:0,0,0 +k1,21187:32583029,8031863:22964670 +g1,21187:32583029,8031863 +) +(1,21188:6630773,8716718:25952256,424439,112852 +h1,21188:6630773,8716718:0,0,0 +g1,21188:6962727,8716718 +g1,21188:7294681,8716718 +g1,21188:11278129,8716718 +g1,21188:11942037,8716718 +k1,21188:11942037,8716718:0 +h1,21188:14265715,8716718:0,0,0 +k1,21188:32583029,8716718:18317314 +g1,21188:32583029,8716718 +) +(1,21189:6630773,9401573:25952256,431045,112852 +h1,21189:6630773,9401573:0,0,0 +g1,21189:6962727,9401573 +g1,21189:7294681,9401573 +g1,21189:7626635,9401573 +g1,21189:7958589,9401573 +g1,21189:8290543,9401573 +g1,21189:8622497,9401573 +g1,21189:8954451,9401573 +g1,21189:9286405,9401573 +g1,21189:9618359,9401573 +g1,21189:12273991,9401573 +g1,21189:12937899,9401573 +g1,21189:14929623,9401573 +g1,21189:15593531,9401573 +g1,21189:17253301,9401573 +g1,21189:17917209,9401573 +g1,21189:18581117,9401573 +g1,21189:23560426,9401573 +g1,21189:25884104,9401573 +g1,21189:26548012,9401573 +g1,21189:28871690,9401573 +h1,21189:29203644,9401573:0,0,0 +k1,21189:32583029,9401573:3379385 +g1,21189:32583029,9401573 +) +(1,21190:6630773,10086428:25952256,424439,112852 +h1,21190:6630773,10086428:0,0,0 +g1,21190:6962727,10086428 +g1,21190:7294681,10086428 +g1,21190:11278128,10086428 +h1,21190:11610082,10086428:0,0,0 +k1,21190:32583030,10086428:20972948 +g1,21190:32583030,10086428 +) +(1,21191:6630773,10771283:25952256,424439,112852 +h1,21191:6630773,10771283:0,0,0 +g1,21191:6962727,10771283 +g1,21191:7294681,10771283 +k1,21191:7294681,10771283:0 +h1,21191:11278128,10771283:0,0,0 +k1,21191:32583028,10771283:21304900 +g1,21191:32583028,10771283 +) +] +) +g1,21193:32583029,10884135 +g1,21193:6630773,10884135 +g1,21193:6630773,10884135 +g1,21193:32583029,10884135 +g1,21193:32583029,10884135 +) +h1,21193:6630773,11080743:0,0,0 +v1,21197:6630773,11765598:0,393216,0 +(1,21210:6630773,18236946:25952256,6864564,196608 +g1,21210:6630773,18236946 +g1,21210:6630773,18236946 +g1,21210:6434165,18236946 +(1,21210:6434165,18236946:0,6864564,196608 +r1,21241:32779637,18236946:26345472,7061172,196608 +k1,21210:6434165,18236946:-26345472 +) +(1,21210:6434165,18236946:26345472,6864564,196608 +[1,21210:6630773,18236946:25952256,6667956,0 +(1,21199:6630773,11993429:25952256,424439,106246 +(1,21198:6630773,11993429:0,0,0 +g1,21198:6630773,11993429 +g1,21198:6630773,11993429 +g1,21198:6303093,11993429 +(1,21198:6303093,11993429:0,0,0 +) +g1,21198:6630773,11993429 +) +g1,21199:8954451,11993429 +h1,21199:9286405,11993429:0,0,0 +k1,21199:32583029,11993429:23296624 +g1,21199:32583029,11993429 +) +(1,21200:6630773,12678284:25952256,424439,106246 +h1,21200:6630773,12678284:0,0,0 +g1,21200:6962727,12678284 +g1,21200:7294681,12678284 +g1,21200:12605944,12678284 +g1,21200:13269852,12678284 +g1,21200:14265714,12678284 +h1,21200:14597668,12678284:0,0,0 +k1,21200:32583028,12678284:17985360 +g1,21200:32583028,12678284 +) +(1,21201:6630773,13363139:25952256,431045,112852 +h1,21201:6630773,13363139:0,0,0 +g1,21201:6962727,13363139 +g1,21201:7294681,13363139 +g1,21201:10946175,13363139 +g1,21201:11610083,13363139 +g1,21201:14265715,13363139 +g1,21201:15261577,13363139 +g1,21201:17585255,13363139 +k1,21201:17585255,13363139:0 +h1,21201:19908933,13363139:0,0,0 +k1,21201:32583029,13363139:12674096 +g1,21201:32583029,13363139 +) +(1,21202:6630773,14047994:25952256,431045,112852 +h1,21202:6630773,14047994:0,0,0 +g1,21202:6962727,14047994 +g1,21202:7294681,14047994 +g1,21202:7626635,14047994 +g1,21202:7958589,14047994 +g1,21202:8290543,14047994 +g1,21202:8622497,14047994 +g1,21202:8954451,14047994 +g1,21202:11942036,14047994 +g1,21202:12605944,14047994 +g1,21202:15925483,14047994 +g1,21202:17585253,14047994 +k1,21202:17585253,14047994:0 +h1,21202:21568701,14047994:0,0,0 +k1,21202:32583029,14047994:11014328 +g1,21202:32583029,14047994 +) +(1,21203:6630773,14732849:25952256,424439,106246 +h1,21203:6630773,14732849:0,0,0 +g1,21203:6962727,14732849 +g1,21203:7294681,14732849 +g1,21203:7626635,14732849 +g1,21203:7958589,14732849 +g1,21203:8290543,14732849 +g1,21203:8622497,14732849 +g1,21203:8954451,14732849 +g1,21203:11610083,14732849 +g1,21203:12273991,14732849 +g1,21203:13933761,14732849 +g1,21203:16589393,14732849 +g1,21203:17585255,14732849 +g1,21203:18581117,14732849 +g1,21203:19908933,14732849 +g1,21203:22232611,14732849 +g1,21203:23228473,14732849 +k1,21203:23228473,14732849:0 +h1,21203:25884105,14732849:0,0,0 +k1,21203:32583029,14732849:6698924 +g1,21203:32583029,14732849 +) +(1,21204:6630773,15417704:25952256,424439,112852 +h1,21204:6630773,15417704:0,0,0 +g1,21204:6962727,15417704 +g1,21204:7294681,15417704 +g1,21204:7626635,15417704 +g1,21204:7958589,15417704 +g1,21204:8290543,15417704 +g1,21204:8622497,15417704 +g1,21204:8954451,15417704 +g1,21204:10282267,15417704 +g1,21204:10946175,15417704 +k1,21204:10946175,15417704:0 +h1,21204:12273991,15417704:0,0,0 +k1,21204:32583029,15417704:20309038 +g1,21204:32583029,15417704 +) +(1,21205:6630773,16102559:25952256,424439,106246 +h1,21205:6630773,16102559:0,0,0 +g1,21205:6962727,16102559 +g1,21205:7294681,16102559 +g1,21205:7626635,16102559 +g1,21205:7958589,16102559 +g1,21205:8290543,16102559 +g1,21205:8622497,16102559 +g1,21205:8954451,16102559 +g1,21205:10282267,16102559 +g1,21205:10946175,16102559 +g1,21205:11942037,16102559 +g1,21205:13601807,16102559 +k1,21205:13601807,16102559:0 +h1,21205:15593531,16102559:0,0,0 +k1,21205:32583029,16102559:16989498 +g1,21205:32583029,16102559 +) +(1,21206:6630773,16787414:25952256,424439,86428 +h1,21206:6630773,16787414:0,0,0 +g1,21206:6962727,16787414 +g1,21206:7294681,16787414 +g1,21206:7626635,16787414 +g1,21206:7958589,16787414 +g1,21206:8290543,16787414 +g1,21206:8622497,16787414 +g1,21206:8954451,16787414 +g1,21206:9618359,16787414 +g1,21206:10282267,16787414 +g1,21206:12273991,16787414 +k1,21206:12273991,16787414:0 +h1,21206:13933761,16787414:0,0,0 +k1,21206:32583029,16787414:18649268 +g1,21206:32583029,16787414 +) +(1,21207:6630773,17472269:25952256,431045,106246 +h1,21207:6630773,17472269:0,0,0 +g1,21207:6962727,17472269 +g1,21207:7294681,17472269 +g1,21207:7626635,17472269 +g1,21207:7958589,17472269 +g1,21207:8290543,17472269 +g1,21207:8622497,17472269 +g1,21207:8954451,17472269 +g1,21207:9618359,17472269 +g1,21207:10282267,17472269 +g1,21207:15261576,17472269 +k1,21207:15261576,17472269:0 +h1,21207:17253300,17472269:0,0,0 +k1,21207:32583029,17472269:15329729 +g1,21207:32583029,17472269 +) +(1,21208:6630773,18157124:25952256,424439,79822 +h1,21208:6630773,18157124:0,0,0 +g1,21208:6962727,18157124 +g1,21208:7294681,18157124 +g1,21208:7626635,18157124 +g1,21208:7958589,18157124 +g1,21208:8290543,18157124 +g1,21208:8622497,18157124 +g1,21208:8954451,18157124 +g1,21208:11278129,18157124 +g1,21208:11942037,18157124 +h1,21208:16921346,18157124:0,0,0 +k1,21208:32583029,18157124:15661683 +g1,21208:32583029,18157124 +) +] +) +g1,21210:32583029,18236946 +g1,21210:6630773,18236946 +g1,21210:6630773,18236946 +g1,21210:32583029,18236946 +g1,21210:32583029,18236946 +) +h1,21210:6630773,18433554:0,0,0 +(1,21213:6630773,28133668:25952256,9634578,0 +k1,21213:13183781,28133668:6553008 +h1,21212:13183781,28133668:0,0,0 +(1,21212:13183781,28133668:12846240,9634578,0 +(1,21212:13183781,28133668:12846136,9634602,0 +(1,21212:13183781,28133668:12846136,9634602,0 +(1,21212:13183781,28133668:0,9634602,0 +(1,21212:13183781,28133668:0,14208860,0 +(1,21212:13183781,28133668:18945146,14208860,0 +) +k1,21212:13183781,28133668:-18945146 +) +) +g1,21212:26029917,28133668 +) +) +) +g1,21213:26030021,28133668 +k1,21213:32583029,28133668:6553008 +) +(1,21220:6630773,28998748:25952256,505283,134348 +h1,21219:6630773,28998748:983040,0,0 +k1,21219:9594160,28998748:197112 +k1,21219:12218726,28998748:197112 +k1,21219:14484154,28998748:197112 +k1,21219:17095611,28998748:197111 +k1,21219:17944151,28998748:197112 +k1,21219:20217444,28998748:197112 +k1,21219:21433641,28998748:197112 +k1,21219:22908050,28998748:197112 +k1,21219:24372628,28998748:197112 +k1,21219:25761184,28998748:197111 +k1,21219:28371332,28998748:197112 +k1,21219:29672726,28998748:197112 +k1,21219:30617604,28998748:197112 +k1,21219:32583029,28998748:0 +) +(1,21220:6630773,29863828:25952256,513147,134348 +k1,21219:8266438,29863828:267928 +k1,21219:11229861,29863828:267927 +(1,21219:11229861,29863828:0,452978,122846 +r1,21241:14401821,29863828:3171960,575824,122846 +k1,21219:11229861,29863828:-3171960 +) +(1,21219:11229861,29863828:3171960,452978,122846 +k1,21219:11229861,29863828:3277 +h1,21219:14398544,29863828:0,411205,112570 +) +k1,21219:14669749,29863828:267928 +k1,21219:15699205,29863828:267928 +k1,21219:18394586,29863828:267927 +k1,21219:20518494,29863828:267928 +k1,21219:23761100,29863828:267927 +k1,21219:26225139,29863828:267928 +k1,21219:27175952,29863828:267928 +k1,21219:27858653,29863828:267858 +k1,21219:31896867,29863828:267928 +k1,21219:32583029,29863828:0 +) +(1,21220:6630773,30728908:25952256,426639,134348 +k1,21220:32583029,30728908:22497198 +g1,21220:32583029,30728908 +) +v1,21222:6630773,31413763:0,393216,0 +(1,21231:6630773,35178721:25952256,4158174,196608 +g1,21231:6630773,35178721 +g1,21231:6630773,35178721 +g1,21231:6434165,35178721 +(1,21231:6434165,35178721:0,4158174,196608 +r1,21241:32779637,35178721:26345472,4354782,196608 +k1,21231:6434165,35178721:-26345472 +) +(1,21231:6434165,35178721:26345472,4158174,196608 +[1,21231:6630773,35178721:25952256,3961566,0 +(1,21224:6630773,31641594:25952256,424439,106246 +(1,21223:6630773,31641594:0,0,0 +g1,21223:6630773,31641594 +g1,21223:6630773,31641594 +g1,21223:6303093,31641594 +(1,21223:6303093,31641594:0,0,0 +) +g1,21223:6630773,31641594 +) +g1,21224:8954451,31641594 +h1,21224:9286405,31641594:0,0,0 +k1,21224:32583029,31641594:23296624 +g1,21224:32583029,31641594 +) +(1,21225:6630773,32326449:25952256,424439,106246 +h1,21225:6630773,32326449:0,0,0 +g1,21225:6962727,32326449 +g1,21225:7294681,32326449 +g1,21225:12605944,32326449 +g1,21225:13269852,32326449 +g1,21225:14265714,32326449 +h1,21225:14597668,32326449:0,0,0 +k1,21225:32583028,32326449:17985360 +g1,21225:32583028,32326449 +) +(1,21226:6630773,33011304:25952256,424439,79822 +h1,21226:6630773,33011304:0,0,0 +g1,21226:6962727,33011304 +g1,21226:7294681,33011304 +g1,21226:15261576,33011304 +g1,21226:15925484,33011304 +g1,21226:17917208,33011304 +g1,21226:19908932,33011304 +h1,21226:20240886,33011304:0,0,0 +k1,21226:32583029,33011304:12342143 +g1,21226:32583029,33011304 +) +(1,21227:6630773,33696159:25952256,431045,106246 +h1,21227:6630773,33696159:0,0,0 +g1,21227:6962727,33696159 +g1,21227:7294681,33696159 +g1,21227:15261576,33696159 +g1,21227:15925484,33696159 +g1,21227:20904793,33696159 +g1,21227:23228471,33696159 +h1,21227:23560425,33696159:0,0,0 +k1,21227:32583029,33696159:9022604 +g1,21227:32583029,33696159 +) +(1,21228:6630773,34381014:25952256,431045,112852 +h1,21228:6630773,34381014:0,0,0 +g1,21228:6962727,34381014 +g1,21228:7294681,34381014 +g1,21228:11942037,34381014 +g1,21228:12605945,34381014 +g1,21228:15261577,34381014 +g1,21228:16257439,34381014 +g1,21228:18581117,34381014 +k1,21228:18581117,34381014:0 +h1,21228:20904795,34381014:0,0,0 +k1,21228:32583029,34381014:11678234 +g1,21228:32583029,34381014 +) +(1,21229:6630773,35065869:25952256,431045,112852 +h1,21229:6630773,35065869:0,0,0 +g1,21229:6962727,35065869 +g1,21229:7294681,35065869 +g1,21229:7626635,35065869 +g1,21229:7958589,35065869 +g1,21229:8290543,35065869 +g1,21229:8622497,35065869 +g1,21229:8954451,35065869 +g1,21229:9286405,35065869 +g1,21229:9618359,35065869 +g1,21229:9950313,35065869 +g1,21229:12937898,35065869 +g1,21229:13601806,35065869 +g1,21229:16921345,35065869 +g1,21229:18581115,35065869 +k1,21229:18581115,35065869:0 +h1,21229:22564563,35065869:0,0,0 +k1,21229:32583029,35065869:10018466 +g1,21229:32583029,35065869 +) +] +) +g1,21231:32583029,35178721 +g1,21231:6630773,35178721 +g1,21231:6630773,35178721 +g1,21231:32583029,35178721 +g1,21231:32583029,35178721 +) +h1,21231:6630773,35375329:0,0,0 +(1,21234:6630773,45075443:25952256,9634578,0 +k1,21234:13183781,45075443:6553008 +h1,21233:13183781,45075443:0,0,0 +(1,21233:13183781,45075443:12846240,9634578,0 +(1,21233:13183781,45075443:12846136,9634602,0 +(1,21233:13183781,45075443:12846136,9634602,0 +(1,21233:13183781,45075443:0,9634602,0 +(1,21233:13183781,45075443:0,14208860,0 +(1,21233:13183781,45075443:18945146,14208860,0 +) +k1,21233:13183781,45075443:-18945146 +) +) +g1,21233:26029917,45075443 +) +) +) +g1,21234:26030021,45075443 +k1,21234:32583029,45075443:6553008 +) +] +(1,21241:32583029,45706769:0,0,0 +g1,21241:32583029,45706769 +) +) +] +(1,21241:6630773,47279633:25952256,0,0 +h1,21241:6630773,47279633:25952256,0,0 +) +] +(1,21241:4262630,4025873:0,0,0 +[1,21241:-473656,4025873:0,0,0 +(1,21241:-473656,-710413:0,0,0 +(1,21241:-473656,-710413:0,0,0 +g1,21241:-473656,-710413 +) +g1,21241:-473656,-710413 ) ] ) ] !17194 -}358 -Input:3900:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3901:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3902:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3903:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}359 Input:3904:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3905:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3906:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -368321,2035 +368525,2035 @@ Input:3945:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3946:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3947:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3948:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3951:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3952:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !4520 -{359 -[1,21279:4262630,47279633:28320399,43253760,0 -(1,21279:4262630,4025873:0,0,0 -[1,21279:-473656,4025873:0,0,0 -(1,21279:-473656,-710413:0,0,0 -(1,21279:-473656,-644877:0,0,0 -k1,21279:-473656,-644877:-65536 +{360 +[1,21277:4262630,47279633:28320399,43253760,0 +(1,21277:4262630,4025873:0,0,0 +[1,21277:-473656,4025873:0,0,0 +(1,21277:-473656,-710413:0,0,0 +(1,21277:-473656,-644877:0,0,0 +k1,21277:-473656,-644877:-65536 ) -(1,21279:-473656,4736287:0,0,0 -k1,21279:-473656,4736287:5209943 +(1,21277:-473656,4736287:0,0,0 +k1,21277:-473656,4736287:5209943 ) -g1,21279:-473656,-710413 +g1,21277:-473656,-710413 ) ] ) -[1,21279:6630773,47279633:25952256,43253760,0 -[1,21279:6630773,4812305:25952256,786432,0 -(1,21279:6630773,4812305:25952256,513147,126483 -(1,21279:6630773,4812305:25952256,513147,126483 -g1,21279:3078558,4812305 -[1,21279:3078558,4812305:0,0,0 -(1,21279:3078558,2439708:0,1703936,0 -k1,21279:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21279:2537886,2439708:1179648,16384,0 +[1,21277:6630773,47279633:25952256,43253760,0 +[1,21277:6630773,4812305:25952256,786432,0 +(1,21277:6630773,4812305:25952256,513147,126483 +(1,21277:6630773,4812305:25952256,513147,126483 +g1,21277:3078558,4812305 +[1,21277:3078558,4812305:0,0,0 +(1,21277:3078558,2439708:0,1703936,0 +k1,21277:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21277:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21279:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21277:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21279:3078558,4812305:0,0,0 -(1,21279:3078558,2439708:0,1703936,0 -g1,21279:29030814,2439708 -g1,21279:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21279:36151628,1915420:16384,1179648,0 +[1,21277:3078558,4812305:0,0,0 +(1,21277:3078558,2439708:0,1703936,0 +g1,21277:29030814,2439708 +g1,21277:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21277:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21279:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21277:37855564,2439708:1179648,16384,0 ) ) -k1,21279:3078556,2439708:-34777008 +k1,21277:3078556,2439708:-34777008 ) ] -[1,21279:3078558,4812305:0,0,0 -(1,21279:3078558,49800853:0,16384,2228224 -k1,21279:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21279:2537886,49800853:1179648,16384,0 +[1,21277:3078558,4812305:0,0,0 +(1,21277:3078558,49800853:0,16384,2228224 +k1,21277:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21277:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21279:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21277:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21279:3078558,4812305:0,0,0 -(1,21279:3078558,49800853:0,16384,2228224 -g1,21279:29030814,49800853 -g1,21279:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21279:36151628,51504789:16384,1179648,0 +[1,21277:3078558,4812305:0,0,0 +(1,21277:3078558,49800853:0,16384,2228224 +g1,21277:29030814,49800853 +g1,21277:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21277:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21279:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21277:37855564,49800853:1179648,16384,0 ) ) -k1,21279:3078556,49800853:-34777008 +k1,21277:3078556,49800853:-34777008 ) ] -g1,21279:6630773,4812305 -k1,21279:21386205,4812305:13560055 -g1,21279:21999622,4812305 -g1,21279:25611966,4812305 -g1,21279:28956923,4812305 -g1,21279:29772190,4812305 -) -) -] -[1,21279:6630773,45706769:25952256,40108032,0 -(1,21279:6630773,45706769:25952256,40108032,0 -(1,21279:6630773,45706769:0,0,0 -g1,21279:6630773,45706769 +g1,21277:6630773,4812305 +k1,21277:21386205,4812305:13560055 +g1,21277:21999622,4812305 +g1,21277:25611966,4812305 +g1,21277:28956923,4812305 +g1,21277:29772190,4812305 +) +) +] +[1,21277:6630773,45706769:25952256,40108032,0 +(1,21277:6630773,45706769:25952256,40108032,0 +(1,21277:6630773,45706769:0,0,0 +g1,21277:6630773,45706769 ) -[1,21279:6630773,45706769:25952256,40108032,0 -v1,21243:6630773,6254097:0,393216,0 -(1,21244:6630773,8391082:25952256,2530201,0 -g1,21244:6630773,8391082 -g1,21244:6237557,8391082 -r1,21279:6368629,8391082:131072,2530201,0 -g1,21244:6567858,8391082 -g1,21244:6764466,8391082 -[1,21244:6764466,8391082:25818563,2530201,0 -(1,21244:6764466,6526574:25818563,665693,196608 -(1,21243:6764466,6526574:0,665693,196608 -r1,21279:7868133,6526574:1103667,862301,196608 -k1,21243:6764466,6526574:-1103667 -) -(1,21243:6764466,6526574:1103667,665693,196608 -) -k1,21243:8151235,6526574:283102 -k1,21243:9877453,6526574:327680 -k1,21243:11819926,6526574:283101 -k1,21243:12873731,6526574:283102 -k1,21243:15162890,6526574:283102 -k1,21243:16723289,6526574:283102 -(1,21243:16930383,6526574:0,452978,122846 -r1,21279:19750632,6526574:2820249,575824,122846 -k1,21243:16930383,6526574:-2820249 -) -(1,21243:16930383,6526574:2820249,452978,122846 -k1,21243:16930383,6526574:3277 -h1,21243:19747355,6526574:0,411205,112570 -) -k1,21243:20240827,6526574:283101 -k1,21243:21715374,6526574:283102 -k1,21243:23195819,6526574:283102 -k1,21243:24130349,6526574:283102 -k1,21243:24871547,6526574:283101 -k1,21243:25840811,6526574:283102 -k1,21243:27391379,6526574:283102 -k1,21243:28445184,6526574:283102 -k1,21243:29143044,6526574:283017 -k1,21243:32583029,6526574:0 -) -(1,21244:6764466,7391654:25818563,615216,138281 -k1,21243:10224084,7391654:196580 -$1,21243:10224084,7391654 -k1,21243:10957957,7391654:182060 -k1,21243:11708214,7391654:182060 -(1,21243:12132233,7489968:311689,339935,8258 -) -k1,21243:12583760,7391654:139838 -k1,21243:13291796,7391654:139839 -(1,21243:13715815,7489968:311689,334430,0 -) -k1,21243:14670003,7391654:139838 -k1,21243:15378038,7391654:139838 -(1,21243:15802057,7489968:311689,339935,0 -) -(1,21243:16616407,7116373:311689,339935,0 -) -$1,21243:16928096,7391654 -k1,21243:17298346,7391654:196580 -k1,21243:19253913,7391654:196581 -k1,21243:20925708,7391654:196580 -k1,21243:21478148,7391654:196580 -k1,21243:23061470,7391654:196580 -k1,21243:23870812,7391654:196580 -k1,21243:25086477,7391654:196580 -k1,21243:28274776,7391654:196580 -k1,21243:29419007,7391654:196580 -k1,21243:30634672,7391654:196580 -k1,21243:31923737,7391654:196580 -k1,21243:32583029,7391654:0 -) -(1,21244:6764466,8256734:25818563,505283,134348 -k1,21243:10730063,8256734:195311 -k1,21243:11541413,8256734:195312 -k1,21243:12755809,8256734:195311 -(1,21243:12755809,8256734:0,452978,115847 -r1,21279:15576058,8256734:2820249,568825,115847 -k1,21243:12755809,8256734:-2820249 -) -(1,21243:12755809,8256734:2820249,452978,115847 -k1,21243:12755809,8256734:3277 -h1,21243:15572781,8256734:0,411205,112570 -) -k1,21243:15771369,8256734:195311 -k1,21243:17749259,8256734:195311 -k1,21243:18560609,8256734:195312 -k1,21243:19170759,8256734:195307 -k1,21243:20127598,8256734:195311 -k1,21243:22351905,8256734:195312 -(1,21243:22351905,8256734:0,452978,115847 -r1,21279:27282425,8256734:4930520,568825,115847 -k1,21243:22351905,8256734:-4930520 -) -(1,21243:22351905,8256734:4930520,452978,115847 -k1,21243:22351905,8256734:3277 -h1,21243:27279148,8256734:0,411205,112570 -) -k1,21243:27477736,8256734:195311 -k1,21243:28285809,8256734:195311 -k1,21243:29500206,8256734:195312 -k1,21243:30110356,8256734:195307 -k1,21244:32583029,8256734:0 -k1,21244:32583029,8256734:0 -) -] -g1,21244:32583029,8391082 -) -h1,21244:6630773,8391082:0,0,0 -(1,21252:6630773,10507900:25952256,555811,12975 -(1,21252:6630773,10507900:2899444,534184,12975 -g1,21252:6630773,10507900 -g1,21252:9530217,10507900 -) -g1,21252:13935613,10507900 -k1,21252:32583029,10507900:16461659 -g1,21252:32583029,10507900 -) -(1,21255:6630773,11766196:25952256,513147,134348 -k1,21254:7021953,11766196:178188 -k1,21254:8688485,11766196:178209 -k1,21254:9628222,11766196:178209 -k1,21254:11790206,11766196:178209 -k1,21254:12987500,11766196:178209 -k1,21254:14767409,11766196:178209 -k1,21254:18250599,11766196:178209 -k1,21254:19942034,11766196:178209 -k1,21254:23522872,11766196:178209 -k1,21254:24352509,11766196:178209 -k1,21254:25549803,11766196:178209 -k1,21254:29298413,11766196:178209 -k1,21254:31048831,11766196:178209 -k1,21255:32583029,11766196:0 -) -(1,21255:6630773,12631276:25952256,473825,122846 -k1,21254:8651769,12631276:249558 -(1,21254:8651769,12631276:0,414482,115847 -r1,21279:10065170,12631276:1413401,530329,115847 -k1,21254:8651769,12631276:-1413401 -) -(1,21254:8651769,12631276:1413401,414482,115847 -k1,21254:8651769,12631276:3277 -h1,21254:10061893,12631276:0,411205,112570 -) -k1,21254:10488398,12631276:249558 -(1,21254:10488398,12631276:0,452978,115847 -r1,21279:12605223,12631276:2116825,568825,115847 -k1,21254:10488398,12631276:-2116825 -) -(1,21254:10488398,12631276:2116825,452978,115847 -k1,21254:10488398,12631276:3277 -h1,21254:12601946,12631276:0,411205,112570 -) -k1,21254:13028452,12631276:249559 -(1,21254:13028452,12631276:0,452978,115847 -r1,21279:17255548,12631276:4227096,568825,115847 -k1,21254:13028452,12631276:-4227096 -) -(1,21254:13028452,12631276:4227096,452978,115847 -k1,21254:13028452,12631276:3277 -h1,21254:17252271,12631276:0,411205,112570 -) -k1,21254:17678776,12631276:249558 -(1,21254:17678776,12631276:0,452978,115847 -r1,21279:19795601,12631276:2116825,568825,115847 -k1,21254:17678776,12631276:-2116825 -) -(1,21254:17678776,12631276:2116825,452978,115847 -k1,21254:17678776,12631276:3277 -h1,21254:19792324,12631276:0,411205,112570 -) -k1,21254:20218829,12631276:249558 -(1,21254:20218829,12631276:0,452978,115847 -r1,21279:22335654,12631276:2116825,568825,115847 -k1,21254:20218829,12631276:-2116825 -) -(1,21254:20218829,12631276:2116825,452978,115847 -k1,21254:20218829,12631276:3277 -h1,21254:22332377,12631276:0,411205,112570 -) -k1,21254:22758882,12631276:249558 -(1,21254:22758882,12631276:0,452978,115847 -r1,21279:24875707,12631276:2116825,568825,115847 -k1,21254:22758882,12631276:-2116825 -) -(1,21254:22758882,12631276:2116825,452978,115847 -k1,21254:22758882,12631276:3277 -h1,21254:24872430,12631276:0,411205,112570 -) -k1,21254:25298936,12631276:249559 -(1,21254:25298936,12631276:0,452978,115847 -r1,21279:28119185,12631276:2820249,568825,115847 -k1,21254:25298936,12631276:-2820249 -) -(1,21254:25298936,12631276:2820249,452978,115847 -k1,21254:25298936,12631276:3277 -h1,21254:28115908,12631276:0,411205,112570 -) -k1,21254:28542413,12631276:249558 -(1,21254:28542413,12631276:0,414482,115847 -r1,21279:30307526,12631276:1765113,530329,115847 -k1,21254:28542413,12631276:-1765113 -) -(1,21254:28542413,12631276:1765113,414482,115847 -k1,21254:28542413,12631276:3277 -h1,21254:30304249,12631276:0,411205,112570 -) -k1,21254:30730754,12631276:249558 -(1,21254:30730754,12631276:0,452978,122846 -r1,21279:32495867,12631276:1765113,575824,122846 -k1,21254:30730754,12631276:-1765113 -) -(1,21254:30730754,12631276:1765113,452978,122846 -k1,21254:30730754,12631276:3277 -h1,21254:32492590,12631276:0,411205,112570 -) -k1,21254:32583029,12631276:0 -) -(1,21255:6630773,13496356:25952256,513147,126483 -k1,21254:8088170,13496356:265952 -(1,21254:8088170,13496356:0,452978,115847 -r1,21279:10908419,13496356:2820249,568825,115847 -k1,21254:8088170,13496356:-2820249 -) -(1,21254:8088170,13496356:2820249,452978,115847 -k1,21254:8088170,13496356:3277 -h1,21254:10905142,13496356:0,411205,112570 -) -k1,21254:11348041,13496356:265952 -k1,21254:12810679,13496356:265951 -k1,21254:14756974,13496356:265952 -k1,21254:15690082,13496356:265952 -(1,21254:15690082,13496356:0,414482,115847 -r1,21279:17103483,13496356:1413401,530329,115847 -k1,21254:15690082,13496356:-1413401 -) -(1,21254:15690082,13496356:1413401,414482,115847 -k1,21254:15690082,13496356:3277 -h1,21254:17100206,13496356:0,411205,112570 -) -k1,21254:17369435,13496356:265952 -k1,21254:18166884,13496356:265952 -k1,21254:19946062,13496356:265952 -k1,21254:21159664,13496356:265951 -k1,21254:22678009,13496356:265952 -k1,21254:24788144,13496356:265952 -k1,21254:25736981,13496356:265952 -k1,21254:27022018,13496356:265952 -k1,21254:28388974,13496356:265951 -k1,21254:29922392,13496356:265952 -k1,21254:31420421,13496356:265952 -k1,21255:32583029,13496356:0 -) -(1,21255:6630773,14361436:25952256,513147,134348 -k1,21254:8600781,14361436:289665 -k1,21254:11549898,14361436:289666 -k1,21254:13036250,14361436:289665 -k1,21254:16728545,14361436:289666 -k1,21254:17669638,14361436:289665 -(1,21254:17669638,14361436:0,452978,115847 -r1,21279:19786463,14361436:2116825,568825,115847 -k1,21254:17669638,14361436:-2116825 -) -(1,21254:17669638,14361436:2116825,452978,115847 -k1,21254:17669638,14361436:3277 -h1,21254:19783186,14361436:0,411205,112570 -) -k1,21254:20076128,14361436:289665 -k1,21254:21557239,14361436:289666 -(1,21254:21557239,14361436:0,452978,115847 -r1,21279:25784335,14361436:4227096,568825,115847 -k1,21254:21557239,14361436:-4227096 -) -(1,21254:21557239,14361436:4227096,452978,115847 -k1,21254:21557239,14361436:3277 -h1,21254:25781058,14361436:0,411205,112570 -) -k1,21254:26074000,14361436:289665 -k1,21254:29008699,14361436:289666 -k1,21254:30317449,14361436:289665 -k1,21254:32583029,14361436:0 -) -(1,21255:6630773,15226516:25952256,513147,134348 -k1,21254:9692732,15226516:175098 -k1,21254:10527122,15226516:175098 -k1,21254:12587691,15226516:175098 -k1,21254:13954234,15226516:175098 -k1,21254:16048226,15226516:175098 -k1,21254:17737861,15226516:175098 -k1,21254:19104404,15226516:175098 -k1,21254:20564008,15226516:175098 -k1,21254:22411585,15226516:175098 -k1,21254:24793280,15226516:175098 -k1,21254:26607433,15226516:175098 -k1,21254:27433959,15226516:175098 -(1,21254:27433959,15226516:0,414482,115847 -r1,21279:28847360,15226516:1413401,530329,115847 -k1,21254:27433959,15226516:-1413401 -) -(1,21254:27433959,15226516:1413401,414482,115847 -k1,21254:27433959,15226516:3277 -h1,21254:28844083,15226516:0,411205,112570 -) -k1,21254:29022458,15226516:175098 -k1,21254:32583029,15226516:0 -) -(1,21255:6630773,16091596:25952256,513147,134348 -k1,21254:7858742,16091596:208884 -k1,21254:9755833,16091596:208884 -k1,21254:10724936,16091596:208885 -k1,21254:13199400,16091596:208884 -k1,21254:14427369,16091596:208884 -k1,21254:15820489,16091596:208884 -k1,21254:17873556,16091596:208884 -k1,21254:19074001,16091596:208885 -k1,21254:22435822,16091596:208884 -k1,21254:24212327,16091596:208884 -k1,21254:25440296,16091596:208884 -k1,21254:27329523,16091596:208884 -k1,21254:28205564,16091596:208885 -(1,21254:28205564,16091596:0,452978,115847 -r1,21279:30322389,16091596:2116825,568825,115847 -k1,21254:28205564,16091596:-2116825 -) -(1,21254:28205564,16091596:2116825,452978,115847 -k1,21254:28205564,16091596:3277 -h1,21254:30319112,16091596:0,411205,112570 -) -k1,21254:30531273,16091596:208884 -k1,21254:31812326,16091596:208884 -k1,21254:32583029,16091596:0 -) -(1,21255:6630773,16956676:25952256,513147,134348 -k1,21254:9923855,16956676:220754 -k1,21254:10796036,16956676:220753 -(1,21254:10796036,16956676:0,452978,115847 -r1,21279:12912861,16956676:2116825,568825,115847 -k1,21254:10796036,16956676:-2116825 -) -(1,21254:10796036,16956676:2116825,452978,115847 -k1,21254:10796036,16956676:3277 -h1,21254:12909584,16956676:0,411205,112570 -) -k1,21254:13133615,16956676:220754 -k1,21254:14013660,16956676:220753 -k1,21254:15253499,16956676:220754 -k1,21254:17127726,16956676:220754 -k1,21254:19361745,16956676:220753 -k1,21254:20268661,16956676:220754 -(1,21254:20268661,16956676:0,452978,115847 -r1,21279:22385486,16956676:2116825,568825,115847 -k1,21254:20268661,16956676:-2116825 -) -(1,21254:20268661,16956676:2116825,452978,115847 -k1,21254:20268661,16956676:3277 -h1,21254:22382209,16956676:0,411205,112570 -) -k1,21254:22606240,16956676:220754 -k1,21254:23959455,16956676:220753 -k1,21254:26478557,16956676:220754 -k1,21254:28396037,16956676:220753 -k1,21254:31386342,16956676:220754 -k1,21254:32583029,16956676:0 -) -(1,21255:6630773,17821756:25952256,513147,134348 -k1,21254:8838118,17821756:214395 -k1,21254:9719670,17821756:214396 -(1,21254:9719670,17821756:0,452978,115847 -r1,21279:11836495,17821756:2116825,568825,115847 -k1,21254:9719670,17821756:-2116825 -) -(1,21254:9719670,17821756:2116825,452978,115847 -k1,21254:9719670,17821756:3277 -h1,21254:11833218,17821756:0,411205,112570 -) -k1,21254:12050890,17821756:214395 -k1,21254:15509318,17821756:214396 -k1,21254:17190409,17821756:214395 -k1,21254:18423890,17821756:214396 -k1,21254:20418898,17821756:214395 -k1,21254:21292585,17821756:214395 -k1,21254:23517626,17821756:214396 -k1,21254:24348059,17821756:214395 -k1,21254:25581540,17821756:214396 -k1,21254:27185298,17821756:214395 -k1,21254:30158104,17821756:214396 -k1,21254:31563944,17821756:214395 -k1,21254:32583029,17821756:0 -) -(1,21255:6630773,18686836:25952256,513147,134348 -k1,21254:9341050,18686836:185830 -k1,21254:10874300,18686836:185830 -k1,21254:11746292,18686836:185830 -k1,21254:15022145,18686836:185830 -k1,21254:18480188,18686836:185830 -k1,21254:20931598,18686836:185830 -k1,21254:22136513,18686836:185830 -k1,21254:26849570,18686836:185830 -(1,21254:27056664,18686836:0,452978,115847 -r1,21279:28118353,18686836:1061689,568825,115847 -k1,21254:27056664,18686836:-1061689 -) -(1,21254:27056664,18686836:1061689,452978,115847 -k1,21254:27056664,18686836:3277 -h1,21254:28115076,18686836:0,411205,112570 -) -k1,21254:28511277,18686836:185830 -k1,21254:32583029,18686836:0 -) -(1,21255:6630773,19551916:25952256,505283,126483 -k1,21254:7781367,19551916:159034 -k1,21254:10659489,19551916:159033 -k1,21254:11580051,19551916:159034 -(1,21254:11580051,19551916:0,414482,115847 -r1,21279:12290029,19551916:709978,530329,115847 -k1,21254:11580051,19551916:-709978 -) -(1,21254:11580051,19551916:709978,414482,115847 -k1,21254:11580051,19551916:3277 -h1,21254:12286752,19551916:0,411205,112570 -) -k1,21254:12449062,19551916:159033 -k1,21254:13680265,19551916:159034 -k1,21254:14297395,19551916:159033 -k1,21254:14987926,19551916:159034 -k1,21254:17776919,19551916:159033 -k1,21254:18587381,19551916:159034 -k1,21254:21073597,19551916:159033 -k1,21254:23928782,19551916:159034 -k1,21254:25784542,19551916:159033 -k1,21254:30015328,19551916:159034 -k1,21254:32583029,19551916:0 -) -(1,21255:6630773,20416996:25952256,513147,134348 -k1,21254:7874271,20416996:224413 -k1,21254:9588317,20416996:224413 -k1,21254:10472022,20416996:224413 -k1,21254:11715520,20416996:224413 -k1,21254:14464380,20416996:224413 -k1,21254:16209884,20416996:224413 -k1,21254:17630984,20416996:224413 -k1,21254:20927725,20416996:224413 -k1,21254:21803566,20416996:224413 -(1,21254:21803566,20416996:0,452978,115847 -r1,21279:23920391,20416996:2116825,568825,115847 -k1,21254:21803566,20416996:-2116825 -) -(1,21254:21803566,20416996:2116825,452978,115847 -k1,21254:21803566,20416996:3277 -h1,21254:23917114,20416996:0,411205,112570 -) -k1,21254:24144804,20416996:224413 -k1,21254:27943551,20416996:224413 -k1,21254:29187049,20416996:224413 -k1,21254:30680239,20416996:224413 -k1,21254:31563944,20416996:224413 -k1,21254:32583029,20416996:0 -) -(1,21255:6630773,21282076:25952256,505283,134348 -k1,21254:9417330,21282076:201817 -k1,21254:10302031,21282076:201816 -k1,21254:13112181,21282076:201817 -k1,21254:15279422,21282076:201816 -k1,21254:16132667,21282076:201817 -k1,21254:17353568,21282076:201816 -k1,21254:18902805,21282076:201817 -k1,21254:22125175,21282076:201816 -k1,21254:23088520,21282076:201817 -(1,21254:23088520,21282076:0,452978,115847 -r1,21279:24501921,21282076:1413401,568825,115847 -k1,21254:23088520,21282076:-1413401 -) -(1,21254:23088520,21282076:1413401,452978,115847 -k1,21254:23088520,21282076:3277 -h1,21254:24498644,21282076:0,411205,112570 -) -k1,21254:24703737,21282076:201816 -k1,21254:26603592,21282076:201817 -k1,21254:28987102,21282076:201816 -k1,21254:30208004,21282076:201817 -k1,21254:32583029,21282076:0 -) -(1,21255:6630773,22147156:25952256,513147,134348 -k1,21254:9415693,22147156:260473 -k1,21254:11197257,22147156:260473 -k1,21254:12654417,22147156:260473 -k1,21254:14595232,22147156:260472 -k1,21254:17060992,22147156:260473 -k1,21254:17972893,22147156:260473 -(1,21254:17972893,22147156:0,452978,115847 -r1,21279:20793142,22147156:2820249,568825,115847 -k1,21254:17972893,22147156:-2820249 -) -(1,21254:17972893,22147156:2820249,452978,115847 -k1,21254:17972893,22147156:3277 -h1,21254:20789865,22147156:0,411205,112570 -) -k1,21254:21053615,22147156:260473 -k1,21254:21845585,22147156:260473 -k1,21254:23619284,22147156:260473 -k1,21254:24565919,22147156:260473 -k1,21254:25182251,22147156:260472 -k1,21254:29380127,22147156:260473 -k1,21254:30588251,22147156:260473 -(1,21254:30588251,22147156:0,414482,115847 -r1,21279:31298229,22147156:709978,530329,115847 -k1,21254:30588251,22147156:-709978 -) -(1,21254:30588251,22147156:709978,414482,115847 -k1,21254:30588251,22147156:3277 -h1,21254:31294952,22147156:0,411205,112570 -) -k1,21254:31558702,22147156:260473 -k1,21255:32583029,22147156:0 -) -(1,21255:6630773,23012236:25952256,513147,115847 -k1,21254:7970569,23012236:156871 -k1,21254:14456253,23012236:156872 -k1,21254:16590345,23012236:156871 -k1,21254:17694868,23012236:156872 -(1,21254:17694868,23012236:0,452978,115847 -r1,21279:19811693,23012236:2116825,568825,115847 -k1,21254:17694868,23012236:-2116825 -) -(1,21254:17694868,23012236:2116825,452978,115847 -k1,21254:17694868,23012236:3277 -h1,21254:19808416,23012236:0,411205,112570 -) -k1,21254:19968564,23012236:156871 -k1,21254:21316881,23012236:156872 -(1,21254:21316881,23012236:0,459977,115847 -r1,21279:22730282,23012236:1413401,575824,115847 -k1,21254:21316881,23012236:-1413401 -) -(1,21254:21316881,23012236:1413401,459977,115847 -k1,21254:21316881,23012236:3277 -h1,21254:22727005,23012236:0,411205,112570 -) -k1,21254:22887153,23012236:156871 -k1,21254:26392259,23012236:156872 -k1,21254:27745817,23012236:156871 -k1,21254:32583029,23012236:0 -) -(1,21255:6630773,23877316:25952256,513147,134348 -k1,21254:8812640,23877316:222341 -k1,21254:11240267,23877316:222340 -k1,21254:12148770,23877316:222341 -k1,21254:13141814,23877316:222341 -k1,21254:16436483,23877316:222341 -k1,21254:17310251,23877316:222340 -(1,21254:17310251,23877316:0,414482,115847 -r1,21279:19075364,23877316:1765113,530329,115847 -k1,21254:17310251,23877316:-1765113 -) -(1,21254:17310251,23877316:1765113,414482,115847 -k1,21254:17310251,23877316:3277 -h1,21254:19072087,23877316:0,411205,112570 -) -k1,21254:19297705,23877316:222341 -k1,21254:23094380,23877316:222341 -k1,21254:24335805,23877316:222340 -k1,21254:29395358,23877316:222341 -k1,21254:32583029,23877316:0 -) -(1,21255:6630773,24742396:25952256,513147,134348 -k1,21254:11656335,24742396:188350 -k1,21254:13954289,24742396:188350 -k1,21254:15161725,24742396:188351 -k1,21254:18620977,24742396:188350 -k1,21254:19881496,24742396:188350 -k1,21254:22184693,24742396:188350 -k1,21254:23564488,24742396:188350 -k1,21254:24937075,24742396:188351 -k1,21254:26969608,24742396:188350 -k1,21254:29385527,24742396:188350 -k1,21254:32583029,24742396:0 -) -(1,21255:6630773,25607476:25952256,513147,134348 -k1,21254:7436850,25607476:190039 -k1,21254:8645974,25607476:190039 -k1,21254:11271332,25607476:190040 -k1,21254:12850734,25607476:190039 -k1,21254:14832527,25607476:190039 -k1,21254:16219253,25607476:190039 -k1,21254:19481620,25607476:190039 -k1,21254:20323088,25607476:190040 -(1,21254:20323088,25607476:0,452978,122846 -r1,21279:22088201,25607476:1765113,575824,122846 -k1,21254:20323088,25607476:-1765113 -) -(1,21254:20323088,25607476:1765113,452978,122846 -k1,21254:20323088,25607476:3277 -h1,21254:22084924,25607476:0,411205,112570 -) -k1,21254:22278240,25607476:190039 -k1,21254:26042613,25607476:190039 -k1,21254:27251737,25607476:190039 -k1,21254:28827862,25607476:190039 -k1,21254:29677194,25607476:190040 -k1,21254:30968238,25607476:190039 -k1,21254:31841162,25607476:190039 -k1,21255:32583029,25607476:0 -) -(1,21255:6630773,26472556:25952256,513147,134348 -k1,21254:8832228,26472556:152144 -k1,21254:10003457,26472556:152144 -k1,21254:12421181,26472556:152144 -k1,21254:13848001,26472556:152145 -k1,21254:17444717,26472556:152144 -k1,21254:18406231,26472556:152144 -k1,21254:19577460,26472556:152144 -k1,21254:21301813,26472556:152144 -k1,21254:22069995,26472556:152144 -k1,21254:24986449,26472556:152145 -k1,21254:26204864,26472556:152144 -k1,21254:27123124,26472556:152144 -k1,21254:28971995,26472556:152144 -k1,21254:32583029,26472556:0 -) -(1,21255:6630773,27337636:25952256,513147,134348 -k1,21254:7825877,27337636:203544 -k1,21254:10987062,27337636:203545 -k1,21254:11678190,27337636:203540 -k1,21254:13889757,27337636:203544 -k1,21254:14752593,27337636:203544 -k1,21254:18526538,27337636:203544 -k1,21254:20806264,27337636:203545 -k1,21254:23154801,27337636:203544 -k1,21254:25355227,27337636:203544 -k1,21254:26765944,27337636:203544 -k1,21254:28934914,27337636:203545 -k1,21254:29754496,27337636:203544 -k1,21254:32583029,27337636:0 -) -(1,21255:6630773,28202716:25952256,513147,134348 -k1,21254:8567325,28202716:220164 -k1,21254:10661819,28202716:220164 -k1,21254:12784493,28202716:220164 -k1,21254:14401228,28202716:220163 -k1,21254:14977252,28202716:220164 -k1,21254:18767817,28202716:220164 -k1,21254:21499321,28202716:220164 -k1,21254:23287106,28202716:220164 -(1,21254:23287106,28202716:0,452978,115847 -r1,21279:24700507,28202716:1413401,568825,115847 -k1,21254:23287106,28202716:-1413401 -) -(1,21254:23287106,28202716:1413401,452978,115847 -k1,21254:23287106,28202716:3277 -h1,21254:24697230,28202716:0,411205,112570 -) -k1,21254:24920671,28202716:220164 -k1,21254:26601632,28202716:220163 -k1,21254:27177656,28202716:220164 -k1,21254:29923578,28202716:220164 -k1,21254:32583029,28202716:0 -) -(1,21255:6630773,29067796:25952256,513147,126483 -g1,21254:7489294,29067796 -g1,21254:10532786,29067796 -g1,21254:12916330,29067796 -g1,21254:14187728,29067796 -g1,21254:15378517,29067796 -g1,21254:18679565,29067796 -g1,21254:20232768,29067796 -k1,21255:32583029,29067796:10095823 -g1,21255:32583029,29067796 -) -(1,21257:6630773,29932876:25952256,513147,134348 -h1,21256:6630773,29932876:983040,0,0 -g1,21256:9009729,29932876 -g1,21256:10705145,29932876 -g1,21256:12772805,29932876 -g1,21256:16326167,29932876 -g1,21256:17914759,29932876 -g1,21256:19990284,29932876 -(1,21256:19990284,29932876:0,459977,115847 -r1,21279:23513956,29932876:3523672,575824,115847 -k1,21256:19990284,29932876:-3523672 -) -(1,21256:19990284,29932876:3523672,459977,115847 -k1,21256:19990284,29932876:3277 -h1,21256:23510679,29932876:0,411205,112570 -) -g1,21256:23886855,29932876 -g1,21256:27448081,29932876 -g1,21256:30275959,29932876 -k1,21257:32583029,29932876:865278 -g1,21257:32583029,29932876 -) -v1,21259:6630773,30617731:0,393216,0 -(1,21267:6630773,33678016:25952256,3453501,196608 -g1,21267:6630773,33678016 -g1,21267:6630773,33678016 -g1,21267:6434165,33678016 -(1,21267:6434165,33678016:0,3453501,196608 -r1,21279:32779637,33678016:26345472,3650109,196608 -k1,21267:6434165,33678016:-26345472 -) -(1,21267:6434165,33678016:26345472,3453501,196608 -[1,21267:6630773,33678016:25952256,3256893,0 -(1,21261:6630773,30852168:25952256,431045,6605 -(1,21260:6630773,30852168:0,0,0 -g1,21260:6630773,30852168 -g1,21260:6630773,30852168 -g1,21260:6303093,30852168 -(1,21260:6303093,30852168:0,0,0 -) -g1,21260:6630773,30852168 -) -g1,21261:10282266,30852168 -k1,21261:10282266,30852168:0 -h1,21261:10946174,30852168:0,0,0 -k1,21261:32583030,30852168:21636856 -g1,21261:32583030,30852168 -) -(1,21262:6630773,31537023:25952256,431045,106246 -h1,21262:6630773,31537023:0,0,0 -g1,21262:6962727,31537023 -g1,21262:7294681,31537023 -g1,21262:11610082,31537023 -g1,21262:12273990,31537023 -g1,21262:16257438,31537023 -g1,21262:17917208,31537023 -g1,21262:18581116,31537023 -g1,21262:19908932,31537023 -g1,21262:20904794,31537023 -g1,21262:21568702,31537023 -k1,21262:21568702,31537023:0 -h1,21262:22564564,31537023:0,0,0 -k1,21262:32583029,31537023:10018465 -g1,21262:32583029,31537023 -) -(1,21263:6630773,32221878:25952256,424439,86428 -h1,21263:6630773,32221878:0,0,0 -g1,21263:6962727,32221878 -g1,21263:7294681,32221878 -g1,21263:7626635,32221878 -g1,21263:7958589,32221878 -g1,21263:8290543,32221878 -g1,21263:8622497,32221878 -g1,21263:8954451,32221878 -g1,21263:9286405,32221878 -g1,21263:9618359,32221878 -g1,21263:9950313,32221878 -g1,21263:10282267,32221878 -g1,21263:10614221,32221878 -g1,21263:10946175,32221878 -g1,21263:11278129,32221878 -g1,21263:11610083,32221878 -g1,21263:11942037,32221878 -g1,21263:12273991,32221878 -g1,21263:12605945,32221878 -g1,21263:12937899,32221878 -g1,21263:16257439,32221878 -g1,21263:17917209,32221878 -g1,21263:18581117,32221878 -g1,21263:19908933,32221878 -g1,21263:20904795,32221878 -g1,21263:21568703,32221878 -k1,21263:21568703,32221878:0 -h1,21263:23228473,32221878:0,0,0 -k1,21263:32583029,32221878:9354556 -g1,21263:32583029,32221878 -) -(1,21264:6630773,32906733:25952256,431045,112852 -h1,21264:6630773,32906733:0,0,0 -g1,21264:6962727,32906733 -g1,21264:7294681,32906733 -g1,21264:7626635,32906733 -g1,21264:7958589,32906733 -g1,21264:8290543,32906733 -g1,21264:8622497,32906733 -g1,21264:8954451,32906733 -g1,21264:9286405,32906733 -g1,21264:9618359,32906733 -g1,21264:9950313,32906733 -g1,21264:10282267,32906733 -g1,21264:10614221,32906733 -g1,21264:10946175,32906733 -g1,21264:12937899,32906733 -g1,21264:13601807,32906733 -g1,21264:19576979,32906733 -g1,21264:21236749,32906733 -g1,21264:24224335,32906733 -k1,21264:24224335,32906733:0 -h1,21264:26216059,32906733:0,0,0 -k1,21264:32583029,32906733:6366970 -g1,21264:32583029,32906733 -) -(1,21265:6630773,33591588:25952256,424439,86428 -h1,21265:6630773,33591588:0,0,0 -g1,21265:6962727,33591588 -g1,21265:7294681,33591588 -g1,21265:7626635,33591588 -g1,21265:7958589,33591588 -g1,21265:8290543,33591588 -g1,21265:8622497,33591588 -g1,21265:8954451,33591588 -g1,21265:9286405,33591588 -g1,21265:9618359,33591588 -g1,21265:9950313,33591588 -g1,21265:10282267,33591588 -g1,21265:10614221,33591588 -g1,21265:10946175,33591588 -g1,21265:11610083,33591588 -g1,21265:12273991,33591588 -g1,21265:15593531,33591588 -g1,21265:17253301,33591588 -g1,21265:17917209,33591588 -g1,21265:19245025,33591588 -g1,21265:20240887,33591588 -g1,21265:20904795,33591588 -h1,21265:21900657,33591588:0,0,0 -k1,21265:32583029,33591588:10682372 -g1,21265:32583029,33591588 -) -] -) -g1,21267:32583029,33678016 -g1,21267:6630773,33678016 -g1,21267:6630773,33678016 -g1,21267:32583029,33678016 -g1,21267:32583029,33678016 -) -h1,21267:6630773,33874624:0,0,0 -(1,21270:6630773,35526136:25952256,505283,7863 -(1,21270:6630773,35526136:0,0,0 -g1,21270:6630773,35526136 -) -k1,21270:32583028,35526136:23911464 -g1,21270:32583028,35526136 -) -(1,21273:6630773,36784432:25952256,513147,134348 -k1,21272:8814835,36784432:209462 -k1,21272:10015857,36784432:209462 -k1,21272:12798262,36784432:209462 -k1,21272:13659152,36784432:209462 -k1,21272:14634730,36784432:209462 -k1,21272:16603834,36784432:209462 -k1,21272:17472589,36784432:209463 -k1,21272:19678933,36784432:209462 -k1,21272:21862995,36784432:209462 -k1,21272:23064017,36784432:209462 -k1,21272:24208022,36784432:209462 -k1,21272:26976010,36784432:209462 -k1,21272:30466204,36784432:209462 -(1,21272:30466204,36784432:0,452978,115847 -r1,21279:32583029,36784432:2116825,568825,115847 -k1,21272:30466204,36784432:-2116825 -) -(1,21272:30466204,36784432:2116825,452978,115847 -k1,21272:30466204,36784432:3277 -h1,21272:32579752,36784432:0,411205,112570 -) -k1,21272:32583029,36784432:0 -) -(1,21273:6630773,37649512:25952256,513147,126483 -k1,21272:7522008,37649512:231943 -k1,21272:8773035,37649512:231942 -k1,21272:11767321,37649512:231943 -k1,21272:13571473,37649512:231943 -k1,21272:17002883,37649512:231942 -k1,21272:18792617,37649512:231943 -k1,21272:20128842,37649512:231943 -k1,21272:21646600,37649512:231942 -k1,21272:22626309,37649512:231943 -k1,21272:23792795,37649512:231943 -k1,21272:25418688,37649512:231942 -k1,21272:29557232,37649512:231943 -k1,21273:32583029,37649512:0 -) -(1,21273:6630773,38514592:25952256,513147,134348 -(1,21272:6630773,38514592:0,452978,115847 -r1,21279:8747598,38514592:2116825,568825,115847 -k1,21272:6630773,38514592:-2116825 -) -(1,21272:6630773,38514592:2116825,452978,115847 -k1,21272:6630773,38514592:3277 -h1,21272:8744321,38514592:0,411205,112570 -) -k1,21272:8986831,38514592:239233 -k1,21272:10417510,38514592:239234 -(1,21272:10417510,38514592:0,452978,115847 -r1,21279:12534335,38514592:2116825,568825,115847 -k1,21272:10417510,38514592:-2116825 -) -(1,21272:10417510,38514592:2116825,452978,115847 -k1,21272:10417510,38514592:3277 -h1,21272:12531058,38514592:0,411205,112570 -) -k1,21272:12773568,38514592:239233 -k1,21272:13628840,38514592:239234 -k1,21272:14887158,38514592:239233 -k1,21272:16493472,38514592:239233 -k1,21272:17391998,38514592:239234 -k1,21272:18650316,38514592:239233 -(1,21272:18650316,38514592:0,414482,115847 -r1,21279:19008582,38514592:358266,530329,115847 -k1,21272:18650316,38514592:-358266 -) -(1,21272:18650316,38514592:358266,414482,115847 -k1,21272:18650316,38514592:3277 -h1,21272:19005305,38514592:0,411205,112570 -) -k1,21272:19247816,38514592:239234 -k1,21272:20678494,38514592:239233 -(1,21272:20678494,38514592:0,414482,115847 -r1,21279:21036760,38514592:358266,530329,115847 -k1,21272:20678494,38514592:-358266 -) -(1,21272:20678494,38514592:358266,414482,115847 -k1,21272:20678494,38514592:3277 -h1,21272:21033483,38514592:0,411205,112570 -) -k1,21272:21275993,38514592:239233 -k1,21272:24730423,38514592:239234 -k1,21272:26161101,38514592:239233 -k1,21272:28050532,38514592:239234 -k1,21272:31189078,38514592:239233 -k1,21272:32583029,38514592:0 -) -(1,21273:6630773,39379672:25952256,513147,134348 -k1,21272:9512448,39379672:186179 -(1,21272:9512448,39379672:0,452978,115847 -r1,21279:11629273,39379672:2116825,568825,115847 -k1,21272:9512448,39379672:-2116825 -) -(1,21272:9512448,39379672:2116825,452978,115847 -k1,21272:9512448,39379672:3277 -h1,21272:11625996,39379672:0,411205,112570 -) -k1,21272:11815453,39379672:186180 -k1,21272:13887103,39379672:186179 -k1,21272:15219508,39379672:186180 -(1,21272:15219508,39379672:0,452978,115847 -r1,21279:17336333,39379672:2116825,568825,115847 -k1,21272:15219508,39379672:-2116825 -) -(1,21272:15219508,39379672:2116825,452978,115847 -k1,21272:15219508,39379672:3277 -h1,21272:17333056,39379672:0,411205,112570 -) -k1,21272:17696182,39379672:186179 -k1,21272:19565327,39379672:186180 -k1,21272:23154135,39379672:186179 -k1,21272:25499071,39379672:186180 -k1,21272:28802142,39379672:186179 -k1,21272:29639750,39379672:186180 -k1,21272:30845014,39379672:186179 -k1,21272:32583029,39379672:0 -) -(1,21273:6630773,40244752:25952256,513147,134348 -k1,21272:7478808,40244752:188743 -k1,21272:8686636,40244752:188743 -k1,21272:12090574,40244752:188742 -k1,21272:13476004,40244752:188743 -(1,21272:13476004,40244752:0,452978,115847 -r1,21279:15592829,40244752:2116825,568825,115847 -k1,21272:13476004,40244752:-2116825 -) -(1,21272:13476004,40244752:2116825,452978,115847 -k1,21272:13476004,40244752:3277 -h1,21272:15589552,40244752:0,411205,112570 -) -k1,21272:15781572,40244752:188743 -k1,21272:19042643,40244752:188743 -k1,21272:19890677,40244752:188742 -k1,21272:21981930,40244752:188743 -k1,21272:24548975,40244752:188743 -k1,21272:27219566,40244752:188743 -k1,21272:29632600,40244752:188742 -k1,21272:30504228,40244752:188743 -k1,21272:31048831,40244752:188743 -k1,21273:32583029,40244752:0 -) -(1,21273:6630773,41109832:25952256,513147,134348 -k1,21272:8188642,41109832:290403 -k1,21272:11909855,41109832:290403 -k1,21272:13839314,41109832:290404 -k1,21272:15697338,41109832:290403 -(1,21272:15697338,41109832:0,452978,115847 -r1,21279:17110739,41109832:1413401,568825,115847 -k1,21272:15697338,41109832:-1413401 -) -(1,21272:15697338,41109832:1413401,452978,115847 -k1,21272:15697338,41109832:3277 -h1,21272:17107462,41109832:0,411205,112570 -) -k1,21272:17574812,41109832:290403 -k1,21272:18493050,41109832:290403 -k1,21272:21588394,41109832:290403 -k1,21272:22897883,41109832:290404 -k1,21272:27094887,41109832:290403 -k1,21272:30411087,41109832:290403 -k1,21272:31516758,41109832:290403 -k1,21272:32583029,41109832:0 -) -(1,21273:6630773,41974912:25952256,513147,134348 -g1,21272:8878002,41974912 -g1,21272:12103028,41974912 -g1,21272:12988419,41974912 -g1,21272:14696287,41974912 -k1,21273:32583029,41974912:14431684 -g1,21273:32583029,41974912 -) -(1,21275:6630773,42839992:25952256,505283,134348 -h1,21274:6630773,42839992:983040,0,0 -k1,21274:8498787,42839992:257139 -k1,21274:9775012,42839992:257140 -k1,21274:11416271,42839992:257139 -k1,21274:14334827,42839992:257139 -k1,21274:15353494,42839992:257139 -k1,21274:17792328,42839992:257140 -k1,21274:20129580,42839992:257139 -k1,21274:22201411,42839992:257139 -k1,21274:24150690,42839992:257139 -k1,21274:28479582,42839992:257140 -k1,21274:29728281,42839992:257139 -k1,21274:32583029,42839992:0 -) -(1,21275:6630773,43705072:25952256,513147,126483 -k1,21274:8349467,43705072:151073 -k1,21274:9519625,43705072:151073 -k1,21274:11121664,43705072:151072 -k1,21274:12652925,43705072:151073 -k1,21274:13795558,43705072:151073 -k1,21274:15012902,43705072:151073 -k1,21274:16603801,43705072:151073 -k1,21274:17516401,43705072:151072 -(1,21274:17516401,43705072:0,414482,115847 -r1,21279:19281514,43705072:1765113,530329,115847 -k1,21274:17516401,43705072:-1765113 -) -(1,21274:17516401,43705072:1765113,414482,115847 -k1,21274:17516401,43705072:3277 -h1,21274:19278237,43705072:0,411205,112570 -) -k1,21274:19432587,43705072:151073 -k1,21274:20775105,43705072:151073 -(1,21274:20775105,43705072:0,414482,122846 -r1,21279:22540218,43705072:1765113,537328,122846 -k1,21274:20775105,43705072:-1765113 -) -(1,21274:20775105,43705072:1765113,414482,122846 -k1,21274:20775105,43705072:3277 -h1,21274:22536941,43705072:0,411205,112570 -) -k1,21274:22864961,43705072:151073 -k1,21274:24085582,43705072:151073 -k1,21274:25716458,43705072:151073 -k1,21274:27682222,43705072:151072 -k1,21274:28449333,43705072:151073 -k1,21274:30502916,43705072:151073 -k1,21274:32583029,43705072:0 -) -(1,21275:6630773,44570152:25952256,505283,134348 -k1,21274:10859810,44570152:157285 -k1,21274:11633133,44570152:157285 -(1,21274:11633133,44570152:0,452978,115847 -r1,21279:13046534,44570152:1413401,568825,115847 -k1,21274:11633133,44570152:-1413401 -) -(1,21274:11633133,44570152:1413401,452978,115847 -k1,21274:11633133,44570152:3277 -h1,21274:13043257,44570152:0,411205,112570 -) -k1,21274:13203819,44570152:157285 -k1,21274:13973866,44570152:157285 -k1,21274:15150236,44570152:157285 -(1,21274:15150236,44570152:0,414482,115847 -r1,21279:16915349,44570152:1765113,530329,115847 -k1,21274:15150236,44570152:-1765113 -) -(1,21274:15150236,44570152:1765113,414482,115847 -k1,21274:15150236,44570152:3277 -h1,21274:16912072,44570152:0,411205,112570 -) -k1,21274:17072634,44570152:157285 -k1,21274:18894533,44570152:157285 -k1,21274:20283895,44570152:157285 -k1,21274:22426266,44570152:157285 -h1,21274:23396854,44570152:0,0,0 -k1,21274:23554139,44570152:157285 -k1,21274:24520794,44570152:157285 -k1,21274:26176232,44570152:157285 -h1,21274:27371609,44570152:0,0,0 -k1,21274:27909658,44570152:157285 -k1,21274:29660779,44570152:157285 -k1,21274:32583029,44570152:0 -) -] -(1,21279:32583029,45706769:0,0,0 -g1,21279:32583029,45706769 -) -) -] -(1,21279:6630773,47279633:25952256,0,0 -h1,21279:6630773,47279633:25952256,0,0 -) -] -(1,21279:4262630,4025873:0,0,0 -[1,21279:-473656,4025873:0,0,0 -(1,21279:-473656,-710413:0,0,0 -(1,21279:-473656,-710413:0,0,0 -g1,21279:-473656,-710413 -) -g1,21279:-473656,-710413 +[1,21277:6630773,45706769:25952256,40108032,0 +v1,21241:6630773,6254097:0,393216,0 +(1,21242:6630773,8391082:25952256,2530201,0 +g1,21242:6630773,8391082 +g1,21242:6237557,8391082 +r1,21277:6368629,8391082:131072,2530201,0 +g1,21242:6567858,8391082 +g1,21242:6764466,8391082 +[1,21242:6764466,8391082:25818563,2530201,0 +(1,21242:6764466,6526574:25818563,665693,196608 +(1,21241:6764466,6526574:0,665693,196608 +r1,21277:7868133,6526574:1103667,862301,196608 +k1,21241:6764466,6526574:-1103667 +) +(1,21241:6764466,6526574:1103667,665693,196608 +) +k1,21241:8151235,6526574:283102 +k1,21241:9877453,6526574:327680 +k1,21241:11819926,6526574:283101 +k1,21241:12873731,6526574:283102 +k1,21241:15162890,6526574:283102 +k1,21241:16723289,6526574:283102 +(1,21241:16930383,6526574:0,452978,122846 +r1,21277:19750632,6526574:2820249,575824,122846 +k1,21241:16930383,6526574:-2820249 +) +(1,21241:16930383,6526574:2820249,452978,122846 +k1,21241:16930383,6526574:3277 +h1,21241:19747355,6526574:0,411205,112570 +) +k1,21241:20240827,6526574:283101 +k1,21241:21715374,6526574:283102 +k1,21241:23195819,6526574:283102 +k1,21241:24130349,6526574:283102 +k1,21241:24871547,6526574:283101 +k1,21241:25840811,6526574:283102 +k1,21241:27391379,6526574:283102 +k1,21241:28445184,6526574:283102 +k1,21241:29143044,6526574:283017 +k1,21241:32583029,6526574:0 +) +(1,21242:6764466,7391654:25818563,615216,138281 +k1,21241:10224084,7391654:196580 +$1,21241:10224084,7391654 +k1,21241:10957957,7391654:182060 +k1,21241:11708214,7391654:182060 +(1,21241:12132233,7489968:311689,339935,8258 +) +k1,21241:12583760,7391654:139838 +k1,21241:13291796,7391654:139839 +(1,21241:13715815,7489968:311689,334430,0 +) +k1,21241:14670003,7391654:139838 +k1,21241:15378038,7391654:139838 +(1,21241:15802057,7489968:311689,339935,0 +) +(1,21241:16616407,7116373:311689,339935,0 +) +$1,21241:16928096,7391654 +k1,21241:17298346,7391654:196580 +k1,21241:19253913,7391654:196581 +k1,21241:20925708,7391654:196580 +k1,21241:21478148,7391654:196580 +k1,21241:23061470,7391654:196580 +k1,21241:23870812,7391654:196580 +k1,21241:25086477,7391654:196580 +k1,21241:28274776,7391654:196580 +k1,21241:29419007,7391654:196580 +k1,21241:30634672,7391654:196580 +k1,21241:31923737,7391654:196580 +k1,21241:32583029,7391654:0 +) +(1,21242:6764466,8256734:25818563,505283,134348 +k1,21241:10730063,8256734:195311 +k1,21241:11541413,8256734:195312 +k1,21241:12755809,8256734:195311 +(1,21241:12755809,8256734:0,452978,115847 +r1,21277:15576058,8256734:2820249,568825,115847 +k1,21241:12755809,8256734:-2820249 +) +(1,21241:12755809,8256734:2820249,452978,115847 +k1,21241:12755809,8256734:3277 +h1,21241:15572781,8256734:0,411205,112570 +) +k1,21241:15771369,8256734:195311 +k1,21241:17749259,8256734:195311 +k1,21241:18560609,8256734:195312 +k1,21241:19170759,8256734:195307 +k1,21241:20127598,8256734:195311 +k1,21241:22351905,8256734:195312 +(1,21241:22351905,8256734:0,452978,115847 +r1,21277:27282425,8256734:4930520,568825,115847 +k1,21241:22351905,8256734:-4930520 +) +(1,21241:22351905,8256734:4930520,452978,115847 +k1,21241:22351905,8256734:3277 +h1,21241:27279148,8256734:0,411205,112570 +) +k1,21241:27477736,8256734:195311 +k1,21241:28285809,8256734:195311 +k1,21241:29500206,8256734:195312 +k1,21241:30110356,8256734:195307 +k1,21242:32583029,8256734:0 +k1,21242:32583029,8256734:0 +) +] +g1,21242:32583029,8391082 +) +h1,21242:6630773,8391082:0,0,0 +(1,21250:6630773,10507900:25952256,555811,12975 +(1,21250:6630773,10507900:2899444,534184,12975 +g1,21250:6630773,10507900 +g1,21250:9530217,10507900 +) +g1,21250:13935613,10507900 +k1,21250:32583029,10507900:16461659 +g1,21250:32583029,10507900 +) +(1,21253:6630773,11766196:25952256,513147,134348 +k1,21252:7021953,11766196:178188 +k1,21252:8688485,11766196:178209 +k1,21252:9628222,11766196:178209 +k1,21252:11790206,11766196:178209 +k1,21252:12987500,11766196:178209 +k1,21252:14767409,11766196:178209 +k1,21252:18250599,11766196:178209 +k1,21252:19942034,11766196:178209 +k1,21252:23522872,11766196:178209 +k1,21252:24352509,11766196:178209 +k1,21252:25549803,11766196:178209 +k1,21252:29298413,11766196:178209 +k1,21252:31048831,11766196:178209 +k1,21253:32583029,11766196:0 +) +(1,21253:6630773,12631276:25952256,473825,122846 +k1,21252:8651769,12631276:249558 +(1,21252:8651769,12631276:0,414482,115847 +r1,21277:10065170,12631276:1413401,530329,115847 +k1,21252:8651769,12631276:-1413401 +) +(1,21252:8651769,12631276:1413401,414482,115847 +k1,21252:8651769,12631276:3277 +h1,21252:10061893,12631276:0,411205,112570 +) +k1,21252:10488398,12631276:249558 +(1,21252:10488398,12631276:0,452978,115847 +r1,21277:12605223,12631276:2116825,568825,115847 +k1,21252:10488398,12631276:-2116825 +) +(1,21252:10488398,12631276:2116825,452978,115847 +k1,21252:10488398,12631276:3277 +h1,21252:12601946,12631276:0,411205,112570 +) +k1,21252:13028452,12631276:249559 +(1,21252:13028452,12631276:0,452978,115847 +r1,21277:17255548,12631276:4227096,568825,115847 +k1,21252:13028452,12631276:-4227096 +) +(1,21252:13028452,12631276:4227096,452978,115847 +k1,21252:13028452,12631276:3277 +h1,21252:17252271,12631276:0,411205,112570 +) +k1,21252:17678776,12631276:249558 +(1,21252:17678776,12631276:0,452978,115847 +r1,21277:19795601,12631276:2116825,568825,115847 +k1,21252:17678776,12631276:-2116825 +) +(1,21252:17678776,12631276:2116825,452978,115847 +k1,21252:17678776,12631276:3277 +h1,21252:19792324,12631276:0,411205,112570 +) +k1,21252:20218829,12631276:249558 +(1,21252:20218829,12631276:0,452978,115847 +r1,21277:22335654,12631276:2116825,568825,115847 +k1,21252:20218829,12631276:-2116825 +) +(1,21252:20218829,12631276:2116825,452978,115847 +k1,21252:20218829,12631276:3277 +h1,21252:22332377,12631276:0,411205,112570 +) +k1,21252:22758882,12631276:249558 +(1,21252:22758882,12631276:0,452978,115847 +r1,21277:24875707,12631276:2116825,568825,115847 +k1,21252:22758882,12631276:-2116825 +) +(1,21252:22758882,12631276:2116825,452978,115847 +k1,21252:22758882,12631276:3277 +h1,21252:24872430,12631276:0,411205,112570 +) +k1,21252:25298936,12631276:249559 +(1,21252:25298936,12631276:0,452978,115847 +r1,21277:28119185,12631276:2820249,568825,115847 +k1,21252:25298936,12631276:-2820249 +) +(1,21252:25298936,12631276:2820249,452978,115847 +k1,21252:25298936,12631276:3277 +h1,21252:28115908,12631276:0,411205,112570 +) +k1,21252:28542413,12631276:249558 +(1,21252:28542413,12631276:0,414482,115847 +r1,21277:30307526,12631276:1765113,530329,115847 +k1,21252:28542413,12631276:-1765113 +) +(1,21252:28542413,12631276:1765113,414482,115847 +k1,21252:28542413,12631276:3277 +h1,21252:30304249,12631276:0,411205,112570 +) +k1,21252:30730754,12631276:249558 +(1,21252:30730754,12631276:0,452978,122846 +r1,21277:32495867,12631276:1765113,575824,122846 +k1,21252:30730754,12631276:-1765113 +) +(1,21252:30730754,12631276:1765113,452978,122846 +k1,21252:30730754,12631276:3277 +h1,21252:32492590,12631276:0,411205,112570 +) +k1,21252:32583029,12631276:0 +) +(1,21253:6630773,13496356:25952256,513147,126483 +k1,21252:8088170,13496356:265952 +(1,21252:8088170,13496356:0,452978,115847 +r1,21277:10908419,13496356:2820249,568825,115847 +k1,21252:8088170,13496356:-2820249 +) +(1,21252:8088170,13496356:2820249,452978,115847 +k1,21252:8088170,13496356:3277 +h1,21252:10905142,13496356:0,411205,112570 +) +k1,21252:11348041,13496356:265952 +k1,21252:12810679,13496356:265951 +k1,21252:14756974,13496356:265952 +k1,21252:15690082,13496356:265952 +(1,21252:15690082,13496356:0,414482,115847 +r1,21277:17103483,13496356:1413401,530329,115847 +k1,21252:15690082,13496356:-1413401 +) +(1,21252:15690082,13496356:1413401,414482,115847 +k1,21252:15690082,13496356:3277 +h1,21252:17100206,13496356:0,411205,112570 +) +k1,21252:17369435,13496356:265952 +k1,21252:18166884,13496356:265952 +k1,21252:19946062,13496356:265952 +k1,21252:21159664,13496356:265951 +k1,21252:22678009,13496356:265952 +k1,21252:24788144,13496356:265952 +k1,21252:25736981,13496356:265952 +k1,21252:27022018,13496356:265952 +k1,21252:28388974,13496356:265951 +k1,21252:29922392,13496356:265952 +k1,21252:31420421,13496356:265952 +k1,21253:32583029,13496356:0 +) +(1,21253:6630773,14361436:25952256,513147,134348 +k1,21252:8600781,14361436:289665 +k1,21252:11549898,14361436:289666 +k1,21252:13036250,14361436:289665 +k1,21252:16728545,14361436:289666 +k1,21252:17669638,14361436:289665 +(1,21252:17669638,14361436:0,452978,115847 +r1,21277:19786463,14361436:2116825,568825,115847 +k1,21252:17669638,14361436:-2116825 +) +(1,21252:17669638,14361436:2116825,452978,115847 +k1,21252:17669638,14361436:3277 +h1,21252:19783186,14361436:0,411205,112570 +) +k1,21252:20076128,14361436:289665 +k1,21252:21557239,14361436:289666 +(1,21252:21557239,14361436:0,452978,115847 +r1,21277:25784335,14361436:4227096,568825,115847 +k1,21252:21557239,14361436:-4227096 +) +(1,21252:21557239,14361436:4227096,452978,115847 +k1,21252:21557239,14361436:3277 +h1,21252:25781058,14361436:0,411205,112570 +) +k1,21252:26074000,14361436:289665 +k1,21252:29008699,14361436:289666 +k1,21252:30317449,14361436:289665 +k1,21252:32583029,14361436:0 +) +(1,21253:6630773,15226516:25952256,513147,134348 +k1,21252:9692732,15226516:175098 +k1,21252:10527122,15226516:175098 +k1,21252:12587691,15226516:175098 +k1,21252:13954234,15226516:175098 +k1,21252:16048226,15226516:175098 +k1,21252:17737861,15226516:175098 +k1,21252:19104404,15226516:175098 +k1,21252:20564008,15226516:175098 +k1,21252:22411585,15226516:175098 +k1,21252:24793280,15226516:175098 +k1,21252:26607433,15226516:175098 +k1,21252:27433959,15226516:175098 +(1,21252:27433959,15226516:0,414482,115847 +r1,21277:28847360,15226516:1413401,530329,115847 +k1,21252:27433959,15226516:-1413401 +) +(1,21252:27433959,15226516:1413401,414482,115847 +k1,21252:27433959,15226516:3277 +h1,21252:28844083,15226516:0,411205,112570 +) +k1,21252:29022458,15226516:175098 +k1,21252:32583029,15226516:0 +) +(1,21253:6630773,16091596:25952256,513147,134348 +k1,21252:7858742,16091596:208884 +k1,21252:9755833,16091596:208884 +k1,21252:10724936,16091596:208885 +k1,21252:13199400,16091596:208884 +k1,21252:14427369,16091596:208884 +k1,21252:15820489,16091596:208884 +k1,21252:17873556,16091596:208884 +k1,21252:19074001,16091596:208885 +k1,21252:22435822,16091596:208884 +k1,21252:24212327,16091596:208884 +k1,21252:25440296,16091596:208884 +k1,21252:27329523,16091596:208884 +k1,21252:28205564,16091596:208885 +(1,21252:28205564,16091596:0,452978,115847 +r1,21277:30322389,16091596:2116825,568825,115847 +k1,21252:28205564,16091596:-2116825 +) +(1,21252:28205564,16091596:2116825,452978,115847 +k1,21252:28205564,16091596:3277 +h1,21252:30319112,16091596:0,411205,112570 +) +k1,21252:30531273,16091596:208884 +k1,21252:31812326,16091596:208884 +k1,21252:32583029,16091596:0 +) +(1,21253:6630773,16956676:25952256,513147,134348 +k1,21252:9923855,16956676:220754 +k1,21252:10796036,16956676:220753 +(1,21252:10796036,16956676:0,452978,115847 +r1,21277:12912861,16956676:2116825,568825,115847 +k1,21252:10796036,16956676:-2116825 +) +(1,21252:10796036,16956676:2116825,452978,115847 +k1,21252:10796036,16956676:3277 +h1,21252:12909584,16956676:0,411205,112570 +) +k1,21252:13133615,16956676:220754 +k1,21252:14013660,16956676:220753 +k1,21252:15253499,16956676:220754 +k1,21252:17127726,16956676:220754 +k1,21252:19361745,16956676:220753 +k1,21252:20268661,16956676:220754 +(1,21252:20268661,16956676:0,452978,115847 +r1,21277:22385486,16956676:2116825,568825,115847 +k1,21252:20268661,16956676:-2116825 +) +(1,21252:20268661,16956676:2116825,452978,115847 +k1,21252:20268661,16956676:3277 +h1,21252:22382209,16956676:0,411205,112570 +) +k1,21252:22606240,16956676:220754 +k1,21252:23959455,16956676:220753 +k1,21252:26478557,16956676:220754 +k1,21252:28396037,16956676:220753 +k1,21252:31386342,16956676:220754 +k1,21252:32583029,16956676:0 +) +(1,21253:6630773,17821756:25952256,513147,134348 +k1,21252:8838118,17821756:214395 +k1,21252:9719670,17821756:214396 +(1,21252:9719670,17821756:0,452978,115847 +r1,21277:11836495,17821756:2116825,568825,115847 +k1,21252:9719670,17821756:-2116825 +) +(1,21252:9719670,17821756:2116825,452978,115847 +k1,21252:9719670,17821756:3277 +h1,21252:11833218,17821756:0,411205,112570 +) +k1,21252:12050890,17821756:214395 +k1,21252:15509318,17821756:214396 +k1,21252:17190409,17821756:214395 +k1,21252:18423890,17821756:214396 +k1,21252:20418898,17821756:214395 +k1,21252:21292585,17821756:214395 +k1,21252:23517626,17821756:214396 +k1,21252:24348059,17821756:214395 +k1,21252:25581540,17821756:214396 +k1,21252:27185298,17821756:214395 +k1,21252:30158104,17821756:214396 +k1,21252:31563944,17821756:214395 +k1,21252:32583029,17821756:0 +) +(1,21253:6630773,18686836:25952256,513147,134348 +k1,21252:9341050,18686836:185830 +k1,21252:10874300,18686836:185830 +k1,21252:11746292,18686836:185830 +k1,21252:15022145,18686836:185830 +k1,21252:18480188,18686836:185830 +k1,21252:20931598,18686836:185830 +k1,21252:22136513,18686836:185830 +k1,21252:26849570,18686836:185830 +(1,21252:27056664,18686836:0,452978,115847 +r1,21277:28118353,18686836:1061689,568825,115847 +k1,21252:27056664,18686836:-1061689 +) +(1,21252:27056664,18686836:1061689,452978,115847 +k1,21252:27056664,18686836:3277 +h1,21252:28115076,18686836:0,411205,112570 +) +k1,21252:28511277,18686836:185830 +k1,21252:32583029,18686836:0 +) +(1,21253:6630773,19551916:25952256,505283,126483 +k1,21252:7781367,19551916:159034 +k1,21252:10659489,19551916:159033 +k1,21252:11580051,19551916:159034 +(1,21252:11580051,19551916:0,414482,115847 +r1,21277:12290029,19551916:709978,530329,115847 +k1,21252:11580051,19551916:-709978 +) +(1,21252:11580051,19551916:709978,414482,115847 +k1,21252:11580051,19551916:3277 +h1,21252:12286752,19551916:0,411205,112570 +) +k1,21252:12449062,19551916:159033 +k1,21252:13680265,19551916:159034 +k1,21252:14297395,19551916:159033 +k1,21252:14987926,19551916:159034 +k1,21252:17776919,19551916:159033 +k1,21252:18587381,19551916:159034 +k1,21252:21073597,19551916:159033 +k1,21252:23928782,19551916:159034 +k1,21252:25784542,19551916:159033 +k1,21252:30015328,19551916:159034 +k1,21252:32583029,19551916:0 +) +(1,21253:6630773,20416996:25952256,513147,134348 +k1,21252:7874271,20416996:224413 +k1,21252:9588317,20416996:224413 +k1,21252:10472022,20416996:224413 +k1,21252:11715520,20416996:224413 +k1,21252:14464380,20416996:224413 +k1,21252:16209884,20416996:224413 +k1,21252:17630984,20416996:224413 +k1,21252:20927725,20416996:224413 +k1,21252:21803566,20416996:224413 +(1,21252:21803566,20416996:0,452978,115847 +r1,21277:23920391,20416996:2116825,568825,115847 +k1,21252:21803566,20416996:-2116825 +) +(1,21252:21803566,20416996:2116825,452978,115847 +k1,21252:21803566,20416996:3277 +h1,21252:23917114,20416996:0,411205,112570 +) +k1,21252:24144804,20416996:224413 +k1,21252:27943551,20416996:224413 +k1,21252:29187049,20416996:224413 +k1,21252:30680239,20416996:224413 +k1,21252:31563944,20416996:224413 +k1,21252:32583029,20416996:0 +) +(1,21253:6630773,21282076:25952256,505283,134348 +k1,21252:9417330,21282076:201817 +k1,21252:10302031,21282076:201816 +k1,21252:13112181,21282076:201817 +k1,21252:15279422,21282076:201816 +k1,21252:16132667,21282076:201817 +k1,21252:17353568,21282076:201816 +k1,21252:18902805,21282076:201817 +k1,21252:22125175,21282076:201816 +k1,21252:23088520,21282076:201817 +(1,21252:23088520,21282076:0,452978,115847 +r1,21277:24501921,21282076:1413401,568825,115847 +k1,21252:23088520,21282076:-1413401 +) +(1,21252:23088520,21282076:1413401,452978,115847 +k1,21252:23088520,21282076:3277 +h1,21252:24498644,21282076:0,411205,112570 +) +k1,21252:24703737,21282076:201816 +k1,21252:26603592,21282076:201817 +k1,21252:28987102,21282076:201816 +k1,21252:30208004,21282076:201817 +k1,21252:32583029,21282076:0 +) +(1,21253:6630773,22147156:25952256,513147,134348 +k1,21252:9415693,22147156:260473 +k1,21252:11197257,22147156:260473 +k1,21252:12654417,22147156:260473 +k1,21252:14595232,22147156:260472 +k1,21252:17060992,22147156:260473 +k1,21252:17972893,22147156:260473 +(1,21252:17972893,22147156:0,452978,115847 +r1,21277:20793142,22147156:2820249,568825,115847 +k1,21252:17972893,22147156:-2820249 +) +(1,21252:17972893,22147156:2820249,452978,115847 +k1,21252:17972893,22147156:3277 +h1,21252:20789865,22147156:0,411205,112570 +) +k1,21252:21053615,22147156:260473 +k1,21252:21845585,22147156:260473 +k1,21252:23619284,22147156:260473 +k1,21252:24565919,22147156:260473 +k1,21252:25182251,22147156:260472 +k1,21252:29380127,22147156:260473 +k1,21252:30588251,22147156:260473 +(1,21252:30588251,22147156:0,414482,115847 +r1,21277:31298229,22147156:709978,530329,115847 +k1,21252:30588251,22147156:-709978 +) +(1,21252:30588251,22147156:709978,414482,115847 +k1,21252:30588251,22147156:3277 +h1,21252:31294952,22147156:0,411205,112570 +) +k1,21252:31558702,22147156:260473 +k1,21253:32583029,22147156:0 +) +(1,21253:6630773,23012236:25952256,513147,115847 +k1,21252:7970569,23012236:156871 +k1,21252:14456253,23012236:156872 +k1,21252:16590345,23012236:156871 +k1,21252:17694868,23012236:156872 +(1,21252:17694868,23012236:0,452978,115847 +r1,21277:19811693,23012236:2116825,568825,115847 +k1,21252:17694868,23012236:-2116825 +) +(1,21252:17694868,23012236:2116825,452978,115847 +k1,21252:17694868,23012236:3277 +h1,21252:19808416,23012236:0,411205,112570 +) +k1,21252:19968564,23012236:156871 +k1,21252:21316881,23012236:156872 +(1,21252:21316881,23012236:0,459977,115847 +r1,21277:22730282,23012236:1413401,575824,115847 +k1,21252:21316881,23012236:-1413401 +) +(1,21252:21316881,23012236:1413401,459977,115847 +k1,21252:21316881,23012236:3277 +h1,21252:22727005,23012236:0,411205,112570 +) +k1,21252:22887153,23012236:156871 +k1,21252:26392259,23012236:156872 +k1,21252:27745817,23012236:156871 +k1,21252:32583029,23012236:0 +) +(1,21253:6630773,23877316:25952256,513147,134348 +k1,21252:8812640,23877316:222341 +k1,21252:11240267,23877316:222340 +k1,21252:12148770,23877316:222341 +k1,21252:13141814,23877316:222341 +k1,21252:16436483,23877316:222341 +k1,21252:17310251,23877316:222340 +(1,21252:17310251,23877316:0,414482,115847 +r1,21277:19075364,23877316:1765113,530329,115847 +k1,21252:17310251,23877316:-1765113 +) +(1,21252:17310251,23877316:1765113,414482,115847 +k1,21252:17310251,23877316:3277 +h1,21252:19072087,23877316:0,411205,112570 +) +k1,21252:19297705,23877316:222341 +k1,21252:23094380,23877316:222341 +k1,21252:24335805,23877316:222340 +k1,21252:29395358,23877316:222341 +k1,21252:32583029,23877316:0 +) +(1,21253:6630773,24742396:25952256,513147,134348 +k1,21252:11656335,24742396:188350 +k1,21252:13954289,24742396:188350 +k1,21252:15161725,24742396:188351 +k1,21252:18620977,24742396:188350 +k1,21252:19881496,24742396:188350 +k1,21252:22184693,24742396:188350 +k1,21252:23564488,24742396:188350 +k1,21252:24937075,24742396:188351 +k1,21252:26969608,24742396:188350 +k1,21252:29385527,24742396:188350 +k1,21252:32583029,24742396:0 +) +(1,21253:6630773,25607476:25952256,513147,134348 +k1,21252:7436850,25607476:190039 +k1,21252:8645974,25607476:190039 +k1,21252:11271332,25607476:190040 +k1,21252:12850734,25607476:190039 +k1,21252:14832527,25607476:190039 +k1,21252:16219253,25607476:190039 +k1,21252:19481620,25607476:190039 +k1,21252:20323088,25607476:190040 +(1,21252:20323088,25607476:0,452978,122846 +r1,21277:22088201,25607476:1765113,575824,122846 +k1,21252:20323088,25607476:-1765113 +) +(1,21252:20323088,25607476:1765113,452978,122846 +k1,21252:20323088,25607476:3277 +h1,21252:22084924,25607476:0,411205,112570 +) +k1,21252:22278240,25607476:190039 +k1,21252:26042613,25607476:190039 +k1,21252:27251737,25607476:190039 +k1,21252:28827862,25607476:190039 +k1,21252:29677194,25607476:190040 +k1,21252:30968238,25607476:190039 +k1,21252:31841162,25607476:190039 +k1,21253:32583029,25607476:0 +) +(1,21253:6630773,26472556:25952256,513147,134348 +k1,21252:8832228,26472556:152144 +k1,21252:10003457,26472556:152144 +k1,21252:12421181,26472556:152144 +k1,21252:13848001,26472556:152145 +k1,21252:17444717,26472556:152144 +k1,21252:18406231,26472556:152144 +k1,21252:19577460,26472556:152144 +k1,21252:21301813,26472556:152144 +k1,21252:22069995,26472556:152144 +k1,21252:24986449,26472556:152145 +k1,21252:26204864,26472556:152144 +k1,21252:27123124,26472556:152144 +k1,21252:28971995,26472556:152144 +k1,21252:32583029,26472556:0 +) +(1,21253:6630773,27337636:25952256,513147,134348 +k1,21252:7825877,27337636:203544 +k1,21252:10987062,27337636:203545 +k1,21252:11678190,27337636:203540 +k1,21252:13889757,27337636:203544 +k1,21252:14752593,27337636:203544 +k1,21252:18526538,27337636:203544 +k1,21252:20806264,27337636:203545 +k1,21252:23154801,27337636:203544 +k1,21252:25355227,27337636:203544 +k1,21252:26765944,27337636:203544 +k1,21252:28934914,27337636:203545 +k1,21252:29754496,27337636:203544 +k1,21252:32583029,27337636:0 +) +(1,21253:6630773,28202716:25952256,513147,134348 +k1,21252:8567325,28202716:220164 +k1,21252:10661819,28202716:220164 +k1,21252:12784493,28202716:220164 +k1,21252:14401228,28202716:220163 +k1,21252:14977252,28202716:220164 +k1,21252:18767817,28202716:220164 +k1,21252:21499321,28202716:220164 +k1,21252:23287106,28202716:220164 +(1,21252:23287106,28202716:0,452978,115847 +r1,21277:24700507,28202716:1413401,568825,115847 +k1,21252:23287106,28202716:-1413401 +) +(1,21252:23287106,28202716:1413401,452978,115847 +k1,21252:23287106,28202716:3277 +h1,21252:24697230,28202716:0,411205,112570 +) +k1,21252:24920671,28202716:220164 +k1,21252:26601632,28202716:220163 +k1,21252:27177656,28202716:220164 +k1,21252:29923578,28202716:220164 +k1,21252:32583029,28202716:0 +) +(1,21253:6630773,29067796:25952256,513147,126483 +g1,21252:7489294,29067796 +g1,21252:10532786,29067796 +g1,21252:12916330,29067796 +g1,21252:14187728,29067796 +g1,21252:15378517,29067796 +g1,21252:18679565,29067796 +g1,21252:20232768,29067796 +k1,21253:32583029,29067796:10095823 +g1,21253:32583029,29067796 +) +(1,21255:6630773,29932876:25952256,513147,134348 +h1,21254:6630773,29932876:983040,0,0 +g1,21254:9009729,29932876 +g1,21254:10705145,29932876 +g1,21254:12772805,29932876 +g1,21254:16326167,29932876 +g1,21254:17914759,29932876 +g1,21254:19990284,29932876 +(1,21254:19990284,29932876:0,459977,115847 +r1,21277:23513956,29932876:3523672,575824,115847 +k1,21254:19990284,29932876:-3523672 +) +(1,21254:19990284,29932876:3523672,459977,115847 +k1,21254:19990284,29932876:3277 +h1,21254:23510679,29932876:0,411205,112570 +) +g1,21254:23886855,29932876 +g1,21254:27448081,29932876 +g1,21254:30275959,29932876 +k1,21255:32583029,29932876:865278 +g1,21255:32583029,29932876 +) +v1,21257:6630773,30617731:0,393216,0 +(1,21265:6630773,33678016:25952256,3453501,196608 +g1,21265:6630773,33678016 +g1,21265:6630773,33678016 +g1,21265:6434165,33678016 +(1,21265:6434165,33678016:0,3453501,196608 +r1,21277:32779637,33678016:26345472,3650109,196608 +k1,21265:6434165,33678016:-26345472 +) +(1,21265:6434165,33678016:26345472,3453501,196608 +[1,21265:6630773,33678016:25952256,3256893,0 +(1,21259:6630773,30852168:25952256,431045,6605 +(1,21258:6630773,30852168:0,0,0 +g1,21258:6630773,30852168 +g1,21258:6630773,30852168 +g1,21258:6303093,30852168 +(1,21258:6303093,30852168:0,0,0 +) +g1,21258:6630773,30852168 +) +g1,21259:10282266,30852168 +k1,21259:10282266,30852168:0 +h1,21259:10946174,30852168:0,0,0 +k1,21259:32583030,30852168:21636856 +g1,21259:32583030,30852168 +) +(1,21260:6630773,31537023:25952256,431045,106246 +h1,21260:6630773,31537023:0,0,0 +g1,21260:6962727,31537023 +g1,21260:7294681,31537023 +g1,21260:11610082,31537023 +g1,21260:12273990,31537023 +g1,21260:16257438,31537023 +g1,21260:17917208,31537023 +g1,21260:18581116,31537023 +g1,21260:19908932,31537023 +g1,21260:20904794,31537023 +g1,21260:21568702,31537023 +k1,21260:21568702,31537023:0 +h1,21260:22564564,31537023:0,0,0 +k1,21260:32583029,31537023:10018465 +g1,21260:32583029,31537023 +) +(1,21261:6630773,32221878:25952256,424439,86428 +h1,21261:6630773,32221878:0,0,0 +g1,21261:6962727,32221878 +g1,21261:7294681,32221878 +g1,21261:7626635,32221878 +g1,21261:7958589,32221878 +g1,21261:8290543,32221878 +g1,21261:8622497,32221878 +g1,21261:8954451,32221878 +g1,21261:9286405,32221878 +g1,21261:9618359,32221878 +g1,21261:9950313,32221878 +g1,21261:10282267,32221878 +g1,21261:10614221,32221878 +g1,21261:10946175,32221878 +g1,21261:11278129,32221878 +g1,21261:11610083,32221878 +g1,21261:11942037,32221878 +g1,21261:12273991,32221878 +g1,21261:12605945,32221878 +g1,21261:12937899,32221878 +g1,21261:16257439,32221878 +g1,21261:17917209,32221878 +g1,21261:18581117,32221878 +g1,21261:19908933,32221878 +g1,21261:20904795,32221878 +g1,21261:21568703,32221878 +k1,21261:21568703,32221878:0 +h1,21261:23228473,32221878:0,0,0 +k1,21261:32583029,32221878:9354556 +g1,21261:32583029,32221878 +) +(1,21262:6630773,32906733:25952256,431045,112852 +h1,21262:6630773,32906733:0,0,0 +g1,21262:6962727,32906733 +g1,21262:7294681,32906733 +g1,21262:7626635,32906733 +g1,21262:7958589,32906733 +g1,21262:8290543,32906733 +g1,21262:8622497,32906733 +g1,21262:8954451,32906733 +g1,21262:9286405,32906733 +g1,21262:9618359,32906733 +g1,21262:9950313,32906733 +g1,21262:10282267,32906733 +g1,21262:10614221,32906733 +g1,21262:10946175,32906733 +g1,21262:12937899,32906733 +g1,21262:13601807,32906733 +g1,21262:19576979,32906733 +g1,21262:21236749,32906733 +g1,21262:24224335,32906733 +k1,21262:24224335,32906733:0 +h1,21262:26216059,32906733:0,0,0 +k1,21262:32583029,32906733:6366970 +g1,21262:32583029,32906733 +) +(1,21263:6630773,33591588:25952256,424439,86428 +h1,21263:6630773,33591588:0,0,0 +g1,21263:6962727,33591588 +g1,21263:7294681,33591588 +g1,21263:7626635,33591588 +g1,21263:7958589,33591588 +g1,21263:8290543,33591588 +g1,21263:8622497,33591588 +g1,21263:8954451,33591588 +g1,21263:9286405,33591588 +g1,21263:9618359,33591588 +g1,21263:9950313,33591588 +g1,21263:10282267,33591588 +g1,21263:10614221,33591588 +g1,21263:10946175,33591588 +g1,21263:11610083,33591588 +g1,21263:12273991,33591588 +g1,21263:15593531,33591588 +g1,21263:17253301,33591588 +g1,21263:17917209,33591588 +g1,21263:19245025,33591588 +g1,21263:20240887,33591588 +g1,21263:20904795,33591588 +h1,21263:21900657,33591588:0,0,0 +k1,21263:32583029,33591588:10682372 +g1,21263:32583029,33591588 +) +] +) +g1,21265:32583029,33678016 +g1,21265:6630773,33678016 +g1,21265:6630773,33678016 +g1,21265:32583029,33678016 +g1,21265:32583029,33678016 +) +h1,21265:6630773,33874624:0,0,0 +(1,21268:6630773,35526136:25952256,505283,7863 +(1,21268:6630773,35526136:0,0,0 +g1,21268:6630773,35526136 +) +k1,21268:32583028,35526136:23911464 +g1,21268:32583028,35526136 +) +(1,21271:6630773,36784432:25952256,513147,134348 +k1,21270:8814835,36784432:209462 +k1,21270:10015857,36784432:209462 +k1,21270:12798262,36784432:209462 +k1,21270:13659152,36784432:209462 +k1,21270:14634730,36784432:209462 +k1,21270:16603834,36784432:209462 +k1,21270:17472589,36784432:209463 +k1,21270:19678933,36784432:209462 +k1,21270:21862995,36784432:209462 +k1,21270:23064017,36784432:209462 +k1,21270:24208022,36784432:209462 +k1,21270:26976010,36784432:209462 +k1,21270:30466204,36784432:209462 +(1,21270:30466204,36784432:0,452978,115847 +r1,21277:32583029,36784432:2116825,568825,115847 +k1,21270:30466204,36784432:-2116825 +) +(1,21270:30466204,36784432:2116825,452978,115847 +k1,21270:30466204,36784432:3277 +h1,21270:32579752,36784432:0,411205,112570 +) +k1,21270:32583029,36784432:0 +) +(1,21271:6630773,37649512:25952256,513147,126483 +k1,21270:7522008,37649512:231943 +k1,21270:8773035,37649512:231942 +k1,21270:11767321,37649512:231943 +k1,21270:13571473,37649512:231943 +k1,21270:17002883,37649512:231942 +k1,21270:18792617,37649512:231943 +k1,21270:20128842,37649512:231943 +k1,21270:21646600,37649512:231942 +k1,21270:22626309,37649512:231943 +k1,21270:23792795,37649512:231943 +k1,21270:25418688,37649512:231942 +k1,21270:29557232,37649512:231943 +k1,21271:32583029,37649512:0 +) +(1,21271:6630773,38514592:25952256,513147,134348 +(1,21270:6630773,38514592:0,452978,115847 +r1,21277:8747598,38514592:2116825,568825,115847 +k1,21270:6630773,38514592:-2116825 +) +(1,21270:6630773,38514592:2116825,452978,115847 +k1,21270:6630773,38514592:3277 +h1,21270:8744321,38514592:0,411205,112570 +) +k1,21270:8986831,38514592:239233 +k1,21270:10417510,38514592:239234 +(1,21270:10417510,38514592:0,452978,115847 +r1,21277:12534335,38514592:2116825,568825,115847 +k1,21270:10417510,38514592:-2116825 +) +(1,21270:10417510,38514592:2116825,452978,115847 +k1,21270:10417510,38514592:3277 +h1,21270:12531058,38514592:0,411205,112570 +) +k1,21270:12773568,38514592:239233 +k1,21270:13628840,38514592:239234 +k1,21270:14887158,38514592:239233 +k1,21270:16493472,38514592:239233 +k1,21270:17391998,38514592:239234 +k1,21270:18650316,38514592:239233 +(1,21270:18650316,38514592:0,414482,115847 +r1,21277:19008582,38514592:358266,530329,115847 +k1,21270:18650316,38514592:-358266 +) +(1,21270:18650316,38514592:358266,414482,115847 +k1,21270:18650316,38514592:3277 +h1,21270:19005305,38514592:0,411205,112570 +) +k1,21270:19247816,38514592:239234 +k1,21270:20678494,38514592:239233 +(1,21270:20678494,38514592:0,414482,115847 +r1,21277:21036760,38514592:358266,530329,115847 +k1,21270:20678494,38514592:-358266 +) +(1,21270:20678494,38514592:358266,414482,115847 +k1,21270:20678494,38514592:3277 +h1,21270:21033483,38514592:0,411205,112570 +) +k1,21270:21275993,38514592:239233 +k1,21270:24730423,38514592:239234 +k1,21270:26161101,38514592:239233 +k1,21270:28050532,38514592:239234 +k1,21270:31189078,38514592:239233 +k1,21270:32583029,38514592:0 +) +(1,21271:6630773,39379672:25952256,513147,134348 +k1,21270:9512448,39379672:186179 +(1,21270:9512448,39379672:0,452978,115847 +r1,21277:11629273,39379672:2116825,568825,115847 +k1,21270:9512448,39379672:-2116825 +) +(1,21270:9512448,39379672:2116825,452978,115847 +k1,21270:9512448,39379672:3277 +h1,21270:11625996,39379672:0,411205,112570 +) +k1,21270:11815453,39379672:186180 +k1,21270:13887103,39379672:186179 +k1,21270:15219508,39379672:186180 +(1,21270:15219508,39379672:0,452978,115847 +r1,21277:17336333,39379672:2116825,568825,115847 +k1,21270:15219508,39379672:-2116825 +) +(1,21270:15219508,39379672:2116825,452978,115847 +k1,21270:15219508,39379672:3277 +h1,21270:17333056,39379672:0,411205,112570 +) +k1,21270:17696182,39379672:186179 +k1,21270:19565327,39379672:186180 +k1,21270:23154135,39379672:186179 +k1,21270:25499071,39379672:186180 +k1,21270:28802142,39379672:186179 +k1,21270:29639750,39379672:186180 +k1,21270:30845014,39379672:186179 +k1,21270:32583029,39379672:0 +) +(1,21271:6630773,40244752:25952256,513147,134348 +k1,21270:7478808,40244752:188743 +k1,21270:8686636,40244752:188743 +k1,21270:12090574,40244752:188742 +k1,21270:13476004,40244752:188743 +(1,21270:13476004,40244752:0,452978,115847 +r1,21277:15592829,40244752:2116825,568825,115847 +k1,21270:13476004,40244752:-2116825 +) +(1,21270:13476004,40244752:2116825,452978,115847 +k1,21270:13476004,40244752:3277 +h1,21270:15589552,40244752:0,411205,112570 +) +k1,21270:15781572,40244752:188743 +k1,21270:19042643,40244752:188743 +k1,21270:19890677,40244752:188742 +k1,21270:21981930,40244752:188743 +k1,21270:24548975,40244752:188743 +k1,21270:27219566,40244752:188743 +k1,21270:29632600,40244752:188742 +k1,21270:30504228,40244752:188743 +k1,21270:31048831,40244752:188743 +k1,21271:32583029,40244752:0 +) +(1,21271:6630773,41109832:25952256,513147,134348 +k1,21270:8188642,41109832:290403 +k1,21270:11909855,41109832:290403 +k1,21270:13839314,41109832:290404 +k1,21270:15697338,41109832:290403 +(1,21270:15697338,41109832:0,452978,115847 +r1,21277:17110739,41109832:1413401,568825,115847 +k1,21270:15697338,41109832:-1413401 +) +(1,21270:15697338,41109832:1413401,452978,115847 +k1,21270:15697338,41109832:3277 +h1,21270:17107462,41109832:0,411205,112570 +) +k1,21270:17574812,41109832:290403 +k1,21270:18493050,41109832:290403 +k1,21270:21588394,41109832:290403 +k1,21270:22897883,41109832:290404 +k1,21270:27094887,41109832:290403 +k1,21270:30411087,41109832:290403 +k1,21270:31516758,41109832:290403 +k1,21270:32583029,41109832:0 +) +(1,21271:6630773,41974912:25952256,513147,134348 +g1,21270:8878002,41974912 +g1,21270:12103028,41974912 +g1,21270:12988419,41974912 +g1,21270:14696287,41974912 +k1,21271:32583029,41974912:14431684 +g1,21271:32583029,41974912 +) +(1,21273:6630773,42839992:25952256,505283,134348 +h1,21272:6630773,42839992:983040,0,0 +k1,21272:8498787,42839992:257139 +k1,21272:9775012,42839992:257140 +k1,21272:11416271,42839992:257139 +k1,21272:14334827,42839992:257139 +k1,21272:15353494,42839992:257139 +k1,21272:17792328,42839992:257140 +k1,21272:20129580,42839992:257139 +k1,21272:22201411,42839992:257139 +k1,21272:24150690,42839992:257139 +k1,21272:28479582,42839992:257140 +k1,21272:29728281,42839992:257139 +k1,21272:32583029,42839992:0 +) +(1,21273:6630773,43705072:25952256,513147,126483 +k1,21272:8349467,43705072:151073 +k1,21272:9519625,43705072:151073 +k1,21272:11121664,43705072:151072 +k1,21272:12652925,43705072:151073 +k1,21272:13795558,43705072:151073 +k1,21272:15012902,43705072:151073 +k1,21272:16603801,43705072:151073 +k1,21272:17516401,43705072:151072 +(1,21272:17516401,43705072:0,414482,115847 +r1,21277:19281514,43705072:1765113,530329,115847 +k1,21272:17516401,43705072:-1765113 +) +(1,21272:17516401,43705072:1765113,414482,115847 +k1,21272:17516401,43705072:3277 +h1,21272:19278237,43705072:0,411205,112570 +) +k1,21272:19432587,43705072:151073 +k1,21272:20775105,43705072:151073 +(1,21272:20775105,43705072:0,414482,122846 +r1,21277:22540218,43705072:1765113,537328,122846 +k1,21272:20775105,43705072:-1765113 +) +(1,21272:20775105,43705072:1765113,414482,122846 +k1,21272:20775105,43705072:3277 +h1,21272:22536941,43705072:0,411205,112570 +) +k1,21272:22864961,43705072:151073 +k1,21272:24085582,43705072:151073 +k1,21272:25716458,43705072:151073 +k1,21272:27682222,43705072:151072 +k1,21272:28449333,43705072:151073 +k1,21272:30502916,43705072:151073 +k1,21272:32583029,43705072:0 +) +(1,21273:6630773,44570152:25952256,505283,134348 +k1,21272:10859810,44570152:157285 +k1,21272:11633133,44570152:157285 +(1,21272:11633133,44570152:0,452978,115847 +r1,21277:13046534,44570152:1413401,568825,115847 +k1,21272:11633133,44570152:-1413401 +) +(1,21272:11633133,44570152:1413401,452978,115847 +k1,21272:11633133,44570152:3277 +h1,21272:13043257,44570152:0,411205,112570 +) +k1,21272:13203819,44570152:157285 +k1,21272:13973866,44570152:157285 +k1,21272:15150236,44570152:157285 +(1,21272:15150236,44570152:0,414482,115847 +r1,21277:16915349,44570152:1765113,530329,115847 +k1,21272:15150236,44570152:-1765113 +) +(1,21272:15150236,44570152:1765113,414482,115847 +k1,21272:15150236,44570152:3277 +h1,21272:16912072,44570152:0,411205,112570 +) +k1,21272:17072634,44570152:157285 +k1,21272:18894533,44570152:157285 +k1,21272:20283895,44570152:157285 +k1,21272:22426266,44570152:157285 +h1,21272:23396854,44570152:0,0,0 +k1,21272:23554139,44570152:157285 +k1,21272:24520794,44570152:157285 +k1,21272:26176232,44570152:157285 +h1,21272:27371609,44570152:0,0,0 +k1,21272:27909658,44570152:157285 +k1,21272:29660779,44570152:157285 +k1,21272:32583029,44570152:0 +) +] +(1,21277:32583029,45706769:0,0,0 +g1,21277:32583029,45706769 +) +) +] +(1,21277:6630773,47279633:25952256,0,0 +h1,21277:6630773,47279633:25952256,0,0 +) +] +(1,21277:4262630,4025873:0,0,0 +[1,21277:-473656,4025873:0,0,0 +(1,21277:-473656,-710413:0,0,0 +(1,21277:-473656,-710413:0,0,0 +g1,21277:-473656,-710413 +) +g1,21277:-473656,-710413 ) ] ) ] !37541 -}359 -Input:3949:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3950:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3951:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3952:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}360 Input:3953:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3954:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3955:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3956:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3957:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3958:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3959:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3960:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{360 -[1,21351:4262630,47279633:28320399,43253760,0 -(1,21351:4262630,4025873:0,0,0 -[1,21351:-473656,4025873:0,0,0 -(1,21351:-473656,-710413:0,0,0 -(1,21351:-473656,-644877:0,0,0 -k1,21351:-473656,-644877:-65536 +{361 +[1,21349:4262630,47279633:28320399,43253760,0 +(1,21349:4262630,4025873:0,0,0 +[1,21349:-473656,4025873:0,0,0 +(1,21349:-473656,-710413:0,0,0 +(1,21349:-473656,-644877:0,0,0 +k1,21349:-473656,-644877:-65536 ) -(1,21351:-473656,4736287:0,0,0 -k1,21351:-473656,4736287:5209943 +(1,21349:-473656,4736287:0,0,0 +k1,21349:-473656,4736287:5209943 ) -g1,21351:-473656,-710413 +g1,21349:-473656,-710413 ) ] ) -[1,21351:6630773,47279633:25952256,43253760,0 -[1,21351:6630773,4812305:25952256,786432,0 -(1,21351:6630773,4812305:25952256,505283,11795 -(1,21351:6630773,4812305:25952256,505283,11795 -g1,21351:3078558,4812305 -[1,21351:3078558,4812305:0,0,0 -(1,21351:3078558,2439708:0,1703936,0 -k1,21351:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21351:2537886,2439708:1179648,16384,0 +[1,21349:6630773,47279633:25952256,43253760,0 +[1,21349:6630773,4812305:25952256,786432,0 +(1,21349:6630773,4812305:25952256,505283,11795 +(1,21349:6630773,4812305:25952256,505283,11795 +g1,21349:3078558,4812305 +[1,21349:3078558,4812305:0,0,0 +(1,21349:3078558,2439708:0,1703936,0 +k1,21349:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21349:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21351:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21349:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21351:3078558,4812305:0,0,0 -(1,21351:3078558,2439708:0,1703936,0 -g1,21351:29030814,2439708 -g1,21351:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21351:36151628,1915420:16384,1179648,0 +[1,21349:3078558,4812305:0,0,0 +(1,21349:3078558,2439708:0,1703936,0 +g1,21349:29030814,2439708 +g1,21349:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21349:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21351:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21349:37855564,2439708:1179648,16384,0 ) ) -k1,21351:3078556,2439708:-34777008 +k1,21349:3078556,2439708:-34777008 ) ] -[1,21351:3078558,4812305:0,0,0 -(1,21351:3078558,49800853:0,16384,2228224 -k1,21351:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21351:2537886,49800853:1179648,16384,0 +[1,21349:3078558,4812305:0,0,0 +(1,21349:3078558,49800853:0,16384,2228224 +k1,21349:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21349:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21351:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21349:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21351:3078558,4812305:0,0,0 -(1,21351:3078558,49800853:0,16384,2228224 -g1,21351:29030814,49800853 -g1,21351:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21351:36151628,51504789:16384,1179648,0 +[1,21349:3078558,4812305:0,0,0 +(1,21349:3078558,49800853:0,16384,2228224 +g1,21349:29030814,49800853 +g1,21349:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21349:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21351:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21349:37855564,49800853:1179648,16384,0 ) ) -k1,21351:3078556,49800853:-34777008 +k1,21349:3078556,49800853:-34777008 ) ] -g1,21351:6630773,4812305 -g1,21351:6630773,4812305 -g1,21351:8724648,4812305 -k1,21351:31387652,4812305:22663004 -) -) -] -[1,21351:6630773,45706769:25952256,40108032,0 -(1,21351:6630773,45706769:25952256,40108032,0 -(1,21351:6630773,45706769:0,0,0 -g1,21351:6630773,45706769 -) -[1,21351:6630773,45706769:25952256,40108032,0 -(1,21275:6630773,6254097:25952256,513147,126483 -k1,21274:7910126,6254097:260268 -k1,21274:11078227,6254097:260269 -k1,21274:15410247,6254097:260268 -k1,21274:16662076,6254097:260269 -k1,21274:20083145,6254097:260268 -k1,21274:20994842,6254097:260269 -(1,21274:20994842,6254097:0,414482,115847 -r1,21351:21704820,6254097:709978,530329,115847 -k1,21274:20994842,6254097:-709978 +g1,21349:6630773,4812305 +g1,21349:6630773,4812305 +g1,21349:8724648,4812305 +k1,21349:31387652,4812305:22663004 +) +) +] +[1,21349:6630773,45706769:25952256,40108032,0 +(1,21349:6630773,45706769:25952256,40108032,0 +(1,21349:6630773,45706769:0,0,0 +g1,21349:6630773,45706769 +) +[1,21349:6630773,45706769:25952256,40108032,0 +(1,21273:6630773,6254097:25952256,513147,126483 +k1,21272:7910126,6254097:260268 +k1,21272:11078227,6254097:260269 +k1,21272:15410247,6254097:260268 +k1,21272:16662076,6254097:260269 +k1,21272:20083145,6254097:260268 +k1,21272:20994842,6254097:260269 +(1,21272:20994842,6254097:0,414482,115847 +r1,21349:21704820,6254097:709978,530329,115847 +k1,21272:20994842,6254097:-709978 ) -(1,21274:20994842,6254097:709978,414482,115847 -k1,21274:20994842,6254097:3277 -h1,21274:21701543,6254097:0,411205,112570 -) -k1,21274:21965088,6254097:260268 -k1,21274:24236001,6254097:260268 -k1,21274:26539027,6254097:260269 -k1,21274:28179483,6254097:260268 -k1,21274:29431312,6254097:260269 -k1,21274:31896867,6254097:260268 -k1,21275:32583029,6254097:0 -) -(1,21275:6630773,7119177:25952256,505283,134348 -(1,21274:6630773,7119177:0,452978,115847 -r1,21351:8044174,7119177:1413401,568825,115847 -k1,21274:6630773,7119177:-1413401 -) -(1,21274:6630773,7119177:1413401,452978,115847 -k1,21274:6630773,7119177:3277 -h1,21274:8040897,7119177:0,411205,112570 -) -g1,21274:8243403,7119177 -g1,21274:9094060,7119177 -(1,21274:9094060,7119177:0,414482,115847 -r1,21351:10859173,7119177:1765113,530329,115847 -k1,21274:9094060,7119177:-1765113 -) -(1,21274:9094060,7119177:1765113,414482,115847 -k1,21274:9094060,7119177:3277 -h1,21274:10855896,7119177:0,411205,112570 -) -g1,21274:11232072,7119177 -g1,21274:12622746,7119177 -g1,21274:17049703,7119177 -g1,21274:20367790,7119177 -g1,21274:21960970,7119177 -g1,21274:22516059,7119177 -k1,21275:32583029,7119177:7444220 -g1,21275:32583029,7119177 -) -v1,21279:6630773,7804032:0,393216,0 -(1,21285:6630773,9514425:25952256,2103609,196608 -g1,21285:6630773,9514425 -g1,21285:6630773,9514425 -g1,21285:6434165,9514425 -(1,21285:6434165,9514425:0,2103609,196608 -r1,21351:32779637,9514425:26345472,2300217,196608 -k1,21285:6434165,9514425:-26345472 -) -(1,21285:6434165,9514425:26345472,2103609,196608 -[1,21285:6630773,9514425:25952256,1907001,0 -(1,21281:6630773,8031863:25952256,424439,106246 -(1,21280:6630773,8031863:0,0,0 -g1,21280:6630773,8031863 -g1,21280:6630773,8031863 -g1,21280:6303093,8031863 -(1,21280:6303093,8031863:0,0,0 -) -g1,21280:6630773,8031863 -) -g1,21281:9286405,8031863 -k1,21281:9286405,8031863:0 -h1,21281:9950313,8031863:0,0,0 -k1,21281:32583029,8031863:22632716 -g1,21281:32583029,8031863 -) -(1,21282:6630773,8716718:25952256,431045,112852 -h1,21282:6630773,8716718:0,0,0 -g1,21282:6962727,8716718 -g1,21282:7294681,8716718 -g1,21282:11278129,8716718 -g1,21282:11942037,8716718 -g1,21282:15925484,8716718 -g1,21282:18581116,8716718 -g1,21282:19245024,8716718 -g1,21282:21236748,8716718 -g1,21282:21900656,8716718 -g1,21282:22896518,8716718 -g1,21282:23560426,8716718 -g1,21282:24224334,8716718 -g1,21282:25552150,8716718 -h1,21282:25884104,8716718:0,0,0 -k1,21282:32583029,8716718:6698925 -g1,21282:32583029,8716718 -) -(1,21283:6630773,9401573:25952256,424439,112852 -h1,21283:6630773,9401573:0,0,0 -g1,21283:6962727,9401573 -g1,21283:7294681,9401573 -k1,21283:7294681,9401573:0 -h1,21283:11278128,9401573:0,0,0 -k1,21283:32583028,9401573:21304900 -g1,21283:32583028,9401573 -) -] -) -g1,21285:32583029,9514425 -g1,21285:6630773,9514425 -g1,21285:6630773,9514425 -g1,21285:32583029,9514425 -g1,21285:32583029,9514425 -) -h1,21285:6630773,9711033:0,0,0 -v1,21289:6630773,10395888:0,393216,0 -(1,21293:6630773,10729965:25952256,727293,196608 -g1,21293:6630773,10729965 -g1,21293:6630773,10729965 -g1,21293:6434165,10729965 -(1,21293:6434165,10729965:0,727293,196608 -r1,21351:32779637,10729965:26345472,923901,196608 -k1,21293:6434165,10729965:-26345472 -) -(1,21293:6434165,10729965:26345472,727293,196608 -[1,21293:6630773,10729965:25952256,530685,0 -(1,21291:6630773,10623719:25952256,424439,106246 -(1,21290:6630773,10623719:0,0,0 -g1,21290:6630773,10623719 -g1,21290:6630773,10623719 -g1,21290:6303093,10623719 -(1,21290:6303093,10623719:0,0,0 -) -g1,21290:6630773,10623719 -) -g1,21291:7626635,10623719 -g1,21291:8622497,10623719 -g1,21291:11278129,10623719 -g1,21291:11942037,10623719 -g1,21291:20572840,10623719 -g1,21291:21236748,10623719 -g1,21291:22896518,10623719 -h1,21291:24556288,10623719:0,0,0 -k1,21291:32583029,10623719:8026741 -g1,21291:32583029,10623719 -) -] -) -g1,21293:32583029,10729965 -g1,21293:6630773,10729965 -g1,21293:6630773,10729965 -g1,21293:32583029,10729965 -g1,21293:32583029,10729965 -) -h1,21293:6630773,10926573:0,0,0 -(1,21297:6630773,11791653:25952256,513147,134348 -h1,21296:6630773,11791653:983040,0,0 -g1,21296:8642072,11791653 -g1,21296:9775844,11791653 -g1,21296:11350674,11791653 -g1,21296:12706613,11791653 -g1,21296:14390232,11791653 -g1,21296:16845210,11791653 -g1,21296:18063524,11791653 -g1,21296:19964723,11791653 -g1,21296:21585428,11791653 -(1,21296:21585428,11791653:0,414482,115847 -r1,21351:22295406,11791653:709978,530329,115847 -k1,21296:21585428,11791653:-709978 -) -(1,21296:21585428,11791653:709978,414482,115847 -k1,21296:21585428,11791653:3277 -h1,21296:22292129,11791653:0,411205,112570 -) -g1,21296:22494635,11791653 -g1,21296:23225361,11791653 -g1,21296:24937816,11791653 -g1,21296:25823207,11791653 -g1,21296:26378296,11791653 -k1,21297:32583029,11791653:3101604 -g1,21297:32583029,11791653 -) -v1,21299:6630773,12476508:0,393216,0 -(1,21303:6630773,12810585:25952256,727293,196608 -g1,21303:6630773,12810585 -g1,21303:6630773,12810585 -g1,21303:6434165,12810585 -(1,21303:6434165,12810585:0,727293,196608 -r1,21351:32779637,12810585:26345472,923901,196608 -k1,21303:6434165,12810585:-26345472 -) -(1,21303:6434165,12810585:26345472,727293,196608 -[1,21303:6630773,12810585:25952256,530685,0 -(1,21301:6630773,12704339:25952256,424439,106246 -(1,21300:6630773,12704339:0,0,0 -g1,21300:6630773,12704339 -g1,21300:6630773,12704339 -g1,21300:6303093,12704339 -(1,21300:6303093,12704339:0,0,0 -) -g1,21300:6630773,12704339 -) -g1,21301:7626635,12704339 -g1,21301:10946175,12704339 -g1,21301:11610083,12704339 -g1,21301:20240886,12704339 -g1,21301:20904794,12704339 -g1,21301:22896518,12704339 -h1,21301:24224334,12704339:0,0,0 -k1,21301:32583029,12704339:8358695 -g1,21301:32583029,12704339 -) -] -) -g1,21303:32583029,12810585 -g1,21303:6630773,12810585 -g1,21303:6630773,12810585 -g1,21303:32583029,12810585 -g1,21303:32583029,12810585 -) -h1,21303:6630773,13007193:0,0,0 -v1,21307:6630773,13692048:0,393216,0 -(1,21313:6630773,16726140:25952256,3427308,196608 -g1,21313:6630773,16726140 -g1,21313:6630773,16726140 -g1,21313:6434165,16726140 -(1,21313:6434165,16726140:0,3427308,196608 -r1,21351:32779637,16726140:26345472,3623916,196608 -k1,21313:6434165,16726140:-26345472 -) -(1,21313:6434165,16726140:26345472,3427308,196608 -[1,21313:6630773,16726140:25952256,3230700,0 -(1,21309:6630773,13903363:25952256,407923,106246 -(1,21308:6630773,13903363:0,0,0 -g1,21308:6630773,13903363 -g1,21308:6630773,13903363 -g1,21308:6303093,13903363 -(1,21308:6303093,13903363:0,0,0 -) -g1,21308:6630773,13903363 -) -g1,21309:7626635,13903363 -g1,21309:8290543,13903363 -h1,21309:8954451,13903363:0,0,0 -k1,21309:32583029,13903363:23628578 -g1,21309:32583029,13903363 -) -(1,21313:6630773,15243578:25952256,424439,112852 -k1,21313:7722608,15243578:427927 -k1,21313:10806167,15243578:427928 -k1,21313:13557772,15243578:427927 -k1,21313:14649608,15243578:427928 -k1,21313:16405351,15243578:427927 -k1,21313:20152818,15243578:427928 -k1,21313:22904423,15243578:427927 -k1,21313:25324075,15243578:427928 -k1,21313:26415910,15243578:427927 -k1,21313:28835562,15243578:427928 -k1,21313:31587167,15243578:427927 -k1,21313:32583029,15243578:0 -) -(1,21313:6630773,15928433:25952256,424439,112852 -g1,21313:8622497,15928433 -k1,21313:32583029,15928433:22300762 -g1,21313:32583029,15928433 -) -(1,21313:6630773,16613288:25952256,431045,112852 -g1,21313:7626635,16613288 -k1,21313:32583028,16613288:19313176 -g1,21313:32583028,16613288 -) -] -) -g1,21313:32583029,16726140 -g1,21313:6630773,16726140 -g1,21313:6630773,16726140 -g1,21313:32583029,16726140 -g1,21313:32583029,16726140 -) -h1,21313:6630773,16922748:0,0,0 -(1,21316:6630773,26623079:25952256,9634795,0 -k1,21316:6760463,26623079:129690 -h1,21315:6760463,26623079:0,0,0 -(1,21315:6760463,26623079:25692876,9634795,0 -(1,21315:6760463,26623079:25692851,9634819,0 -(1,21315:6760463,26623079:25692851,9634819,0 -(1,21315:6760463,26623079:0,9634819,0 -(1,21315:6760463,26623079:0,14208860,0 -(1,21315:6760463,26623079:37890292,14208860,0 -) -k1,21315:6760463,26623079:-37890292 -) -) -g1,21315:32453314,26623079 -) -) -) -g1,21316:32453339,26623079 -k1,21316:32583029,26623079:129690 -) -(1,21323:6630773,27488159:25952256,513147,115847 -h1,21322:6630773,27488159:983040,0,0 -k1,21322:11875718,27488159:233407 -k1,21322:15134922,27488159:233407 -(1,21322:15134922,27488159:0,452978,115847 -r1,21351:17251747,27488159:2116825,568825,115847 -k1,21322:15134922,27488159:-2116825 -) -(1,21322:15134922,27488159:2116825,452978,115847 -k1,21322:15134922,27488159:3277 -h1,21322:17248470,27488159:0,411205,112570 -) -k1,21322:17485154,27488159:233407 -k1,21322:18910006,27488159:233407 -(1,21322:18910006,27488159:0,452978,115847 -r1,21351:21026831,27488159:2116825,568825,115847 -k1,21322:18910006,27488159:-2116825 -) -(1,21322:18910006,27488159:2116825,452978,115847 -k1,21322:18910006,27488159:3277 -h1,21322:21023554,27488159:0,411205,112570 -) -k1,21322:21260238,27488159:233407 -k1,21322:22597927,27488159:233407 -k1,21322:23579100,27488159:233407 -k1,21322:25325733,27488159:233407 -k1,21322:26210568,27488159:233407 -k1,21322:27378518,27488159:233407 -k1,21322:28631010,27488159:233407 -k1,21322:30679109,27488159:233407 -k1,21322:31563944,27488159:233407 -k1,21322:32583029,27488159:0 -) -(1,21323:6630773,28353239:25952256,513147,138281 -k1,21322:9102041,28353239:205688 -$1,21322:9102041,28353239 -$1,21322:9604702,28353239 -k1,21322:9810389,28353239:205687 -k1,21322:11207522,28353239:205688 -$1,21322:11207522,28353239 -$1,21322:11759335,28353239 -k1,21322:11965022,28353239:205687 -k1,21322:14073220,28353239:205688 -k1,21322:14894945,28353239:205687 -k1,21322:16366789,28353239:205688 -k1,21322:18613268,28353239:205688 -(1,21322:18613268,28353239:0,452978,115847 -r1,21351:20730093,28353239:2116825,568825,115847 -k1,21322:18613268,28353239:-2116825 -) -(1,21322:18613268,28353239:2116825,452978,115847 -k1,21322:18613268,28353239:3277 -h1,21322:20726816,28353239:0,411205,112570 -) -k1,21322:20935780,28353239:205687 -k1,21322:21672965,28353239:205688 -k1,21322:23565549,28353239:205687 -k1,21322:24843406,28353239:205688 -(1,21322:24843406,28353239:0,452978,115847 -r1,21351:26960231,28353239:2116825,568825,115847 -k1,21322:24843406,28353239:-2116825 -) -(1,21322:24843406,28353239:2116825,452978,115847 -k1,21322:24843406,28353239:3277 -h1,21322:26956954,28353239:0,411205,112570 -) -k1,21322:27165918,28353239:205687 -k1,21322:29298364,28353239:205688 -k1,21322:32583029,28353239:0 -) -(1,21323:6630773,29218319:25952256,513147,126483 -g1,21322:8900940,29218319 -g1,21322:10047820,29218319 -g1,21322:11266134,29218319 -g1,21322:13037572,29218319 -g1,21322:13694898,29218319 -g1,21322:16638775,29218319 -g1,21322:18322394,29218319 -g1,21322:21258406,29218319 -g1,21322:22109063,29218319 -(1,21322:22109063,29218319:0,435480,115847 -r1,21351:22819041,29218319:709978,551327,115847 -k1,21322:22109063,29218319:-709978 -) -(1,21322:22109063,29218319:709978,435480,115847 -k1,21322:22109063,29218319:3277 -h1,21322:22815764,29218319:0,411205,112570 -) -g1,21322:23018270,29218319 -g1,21322:25246494,29218319 -g1,21322:26511994,29218319 -k1,21323:32583029,29218319:3735988 -g1,21323:32583029,29218319 -) -v1,21325:6630773,29903174:0,393216,0 -(1,21329:6630773,30237251:25952256,727293,196608 -g1,21329:6630773,30237251 -g1,21329:6630773,30237251 -g1,21329:6434165,30237251 -(1,21329:6434165,30237251:0,727293,196608 -r1,21351:32779637,30237251:26345472,923901,196608 -k1,21329:6434165,30237251:-26345472 -) -(1,21329:6434165,30237251:26345472,727293,196608 -[1,21329:6630773,30237251:25952256,530685,0 -(1,21327:6630773,30131005:25952256,424439,106246 -(1,21326:6630773,30131005:0,0,0 -g1,21326:6630773,30131005 -g1,21326:6630773,30131005 -g1,21326:6303093,30131005 -(1,21326:6303093,30131005:0,0,0 -) -g1,21326:6630773,30131005 -) -g1,21327:9286405,30131005 -g1,21327:9950313,30131005 -g1,21327:10282267,30131005 -g1,21327:13269853,30131005 -h1,21327:14265715,30131005:0,0,0 -k1,21327:32583029,30131005:18317314 -g1,21327:32583029,30131005 -) -] -) -g1,21329:32583029,30237251 -g1,21329:6630773,30237251 -g1,21329:6630773,30237251 -g1,21329:32583029,30237251 -g1,21329:32583029,30237251 -) -h1,21329:6630773,30433859:0,0,0 -(1,21334:6630773,31298939:25952256,505283,134348 -h1,21332:6630773,31298939:983040,0,0 -k1,21332:8538690,31298939:297042 -k1,21332:11342484,31298939:297042 -k1,21332:13821220,31298939:297042 -k1,21332:15598064,31298939:297041 -k1,21332:17709798,31298939:297042 -k1,21332:20187223,31298939:297042 -k1,21332:21232031,31298939:297042 -k1,21332:24200320,31298939:297042 -k1,21332:25964058,31298939:297042 -k1,21332:28531266,31298939:297041 -k1,21332:29184168,31298939:297042 -k1,21332:32051532,31298939:297042 -k1,21332:32583029,31298939:0 -) -(1,21334:6630773,32164019:25952256,505283,134348 -k1,21332:8905933,32164019:230437 -k1,21332:10958925,32164019:230436 -(1,21332:10958925,32164019:0,414482,115847 -r1,21351:11668903,32164019:709978,530329,115847 -k1,21332:10958925,32164019:-709978 -) -(1,21332:10958925,32164019:709978,414482,115847 -k1,21332:10958925,32164019:3277 -h1,21332:11665626,32164019:0,411205,112570 -) -k1,21332:11899340,32164019:230437 -k1,21332:14140422,32164019:230437 -k1,21332:16108873,32164019:230436 -k1,21332:19010557,32164019:230437 -k1,21332:19927156,32164019:230437 -k1,21332:20615689,32164019:230436 -k1,21332:21377623,32164019:230437 -k1,21332:23002665,32164019:230436 -k1,21332:23884530,32164019:230437 -k1,21332:27633595,32164019:230437 -k1,21332:29944144,32164019:230436 -k1,21332:31193666,32164019:230437 -k1,21332:32583029,32164019:0 -) -(1,21334:6630773,33029099:25952256,513147,134348 -k1,21332:8549610,33029099:180822 -k1,21332:11206382,33029099:180822 -k1,21333:11857098,33029099:180823 -k1,21333:12569417,33029099:180822 -k1,21333:16015898,33029099:180822 -k1,21333:16848148,33029099:180822 -k1,21333:18121456,33029099:180823 -k1,21333:20997774,33029099:180822 -(1,21333:20997774,33029099:0,452978,115847 -r1,21351:26280005,33029099:5282231,568825,115847 -k1,21333:20997774,33029099:-5282231 -) -(1,21333:20997774,33029099:5282231,452978,115847 -k1,21333:20997774,33029099:3277 -h1,21333:26276728,33029099:0,411205,112570 -) -k1,21333:26460827,33029099:180822 -k1,21333:27327811,33029099:180822 -k1,21333:27966731,33029099:180823 -k1,21333:30012052,33029099:180822 -k1,21334:32583029,33029099:0 -) -(1,21334:6630773,33894179:25952256,513147,134348 -k1,21333:7823747,33894179:173889 -k1,21333:11832146,33894179:173888 -k1,21333:15214678,33894179:173889 -k1,21333:17654147,33894179:173889 -k1,21333:19642728,33894179:173889 -k1,21333:20475908,33894179:173888 -k1,21333:21005657,33894179:173889 -k1,21333:24426200,33894179:173889 -k1,21333:26172298,33894179:173889 -k1,21333:28160878,33894179:173888 -k1,21333:29467229,33894179:173889 -k1,21333:31219225,33894179:173889 -k1,21333:32583029,33894179:0 -) -(1,21334:6630773,34759259:25952256,505283,126483 -k1,21333:7807800,34759259:157942 -k1,21333:11123266,34759259:157941 -k1,21333:14373852,34759259:157942 -k1,21333:16346485,34759259:157941 -k1,21333:18202465,34759259:157942 -k1,21333:20658755,34759259:157942 -k1,21333:21468124,34759259:157941 -k1,21333:26058921,34759259:157942 -k1,21333:26982978,34759259:157941 -k1,21333:31386342,34759259:157942 -k1,21333:32583029,34759259:0 -) -(1,21334:6630773,35624339:25952256,513147,134348 -k1,21333:10304050,35624339:270648 -k1,21333:11226125,35624339:270647 -(1,21333:11226125,35624339:0,414482,115847 -r1,21351:11584391,35624339:358266,530329,115847 -k1,21333:11226125,35624339:-358266 -) -(1,21333:11226125,35624339:358266,414482,115847 -k1,21333:11226125,35624339:3277 -h1,21333:11581114,35624339:0,411205,112570 -) -k1,21333:11855039,35624339:270648 -k1,21333:13317132,35624339:270648 -(1,21333:13317132,35624339:0,414482,115847 -r1,21351:13675398,35624339:358266,530329,115847 -k1,21333:13317132,35624339:-358266 -) -(1,21333:13317132,35624339:358266,414482,115847 -k1,21333:13317132,35624339:3277 -h1,21333:13672121,35624339:0,411205,112570 -) -k1,21333:13946046,35624339:270648 -k1,21333:15208253,35624339:270647 -k1,21333:18099030,35624339:270648 -k1,21333:20677856,35624339:270648 -k1,21333:21607795,35624339:270647 -k1,21333:23891709,35624339:270648 -k1,21333:25319067,35624339:270648 -k1,21333:26272600,35624339:270648 -k1,21333:27715686,35624339:270647 -k1,21333:29611627,35624339:270648 -k1,21333:32583029,35624339:0 -) -(1,21334:6630773,36489419:25952256,513147,138281 -k1,21333:8159684,36489419:198530 -k1,21333:9377300,36489419:198531 -k1,21333:11390522,36489419:198530 -k1,21333:12248344,36489419:198530 -k1,21333:13465959,36489419:198530 -$1,21333:13465959,36489419 -$1,21333:13968620,36489419 -k1,21333:14167151,36489419:198531 -k1,21333:15557126,36489419:198530 -$1,21333:15557126,36489419 -$1,21333:16108939,36489419 -k1,21333:16307469,36489419:198530 -k1,21333:20076400,36489419:198530 -k1,21333:22177441,36489419:198531 -k1,21333:23367531,36489419:198530 -k1,21333:26121310,36489419:198530 -k1,21333:28360631,36489419:198530 -k1,21333:29578247,36489419:198531 -k1,21333:31591469,36489419:198530 -k1,21333:32583029,36489419:0 -) -(1,21334:6630773,37354499:25952256,505283,134348 -g1,21333:9922646,37354499 -g1,21333:10773303,37354499 -g1,21333:13310201,37354499 -g1,21333:14528515,37354499 -k1,21334:32583029,37354499:16127756 -g1,21334:32583029,37354499 -) -v1,21338:6630773,38039354:0,393216,0 -(1,21342:6630773,38373431:25952256,727293,196608 -g1,21342:6630773,38373431 -g1,21342:6630773,38373431 -g1,21342:6434165,38373431 -(1,21342:6434165,38373431:0,727293,196608 -r1,21351:32779637,38373431:26345472,923901,196608 -k1,21342:6434165,38373431:-26345472 -) -(1,21342:6434165,38373431:26345472,727293,196608 -[1,21342:6630773,38373431:25952256,530685,0 -(1,21340:6630773,38267185:25952256,424439,106246 -(1,21339:6630773,38267185:0,0,0 -g1,21339:6630773,38267185 -g1,21339:6630773,38267185 -g1,21339:6303093,38267185 -(1,21339:6303093,38267185:0,0,0 -) -g1,21339:6630773,38267185 -) -g1,21340:9286405,38267185 -g1,21340:9950313,38267185 -g1,21340:15261576,38267185 -g1,21340:15925484,38267185 -g1,21340:16921346,38267185 -g1,21340:17585254,38267185 -g1,21340:18249162,38267185 -h1,21340:18913070,38267185:0,0,0 -k1,21340:32583029,38267185:13669959 -g1,21340:32583029,38267185 -) -] -) -g1,21342:32583029,38373431 -g1,21342:6630773,38373431 -g1,21342:6630773,38373431 -g1,21342:32583029,38373431 -g1,21342:32583029,38373431 -) -h1,21342:6630773,38570039:0,0,0 -] -(1,21351:32583029,45706769:0,0,0 -g1,21351:32583029,45706769 -) -) -] -(1,21351:6630773,47279633:25952256,0,0 -h1,21351:6630773,47279633:25952256,0,0 -) -] -(1,21351:4262630,4025873:0,0,0 -[1,21351:-473656,4025873:0,0,0 -(1,21351:-473656,-710413:0,0,0 -(1,21351:-473656,-710413:0,0,0 -g1,21351:-473656,-710413 -) -g1,21351:-473656,-710413 +(1,21272:20994842,6254097:709978,414482,115847 +k1,21272:20994842,6254097:3277 +h1,21272:21701543,6254097:0,411205,112570 +) +k1,21272:21965088,6254097:260268 +k1,21272:24236001,6254097:260268 +k1,21272:26539027,6254097:260269 +k1,21272:28179483,6254097:260268 +k1,21272:29431312,6254097:260269 +k1,21272:31896867,6254097:260268 +k1,21273:32583029,6254097:0 +) +(1,21273:6630773,7119177:25952256,505283,134348 +(1,21272:6630773,7119177:0,452978,115847 +r1,21349:8044174,7119177:1413401,568825,115847 +k1,21272:6630773,7119177:-1413401 +) +(1,21272:6630773,7119177:1413401,452978,115847 +k1,21272:6630773,7119177:3277 +h1,21272:8040897,7119177:0,411205,112570 +) +g1,21272:8243403,7119177 +g1,21272:9094060,7119177 +(1,21272:9094060,7119177:0,414482,115847 +r1,21349:10859173,7119177:1765113,530329,115847 +k1,21272:9094060,7119177:-1765113 +) +(1,21272:9094060,7119177:1765113,414482,115847 +k1,21272:9094060,7119177:3277 +h1,21272:10855896,7119177:0,411205,112570 +) +g1,21272:11232072,7119177 +g1,21272:12622746,7119177 +g1,21272:17049703,7119177 +g1,21272:20367790,7119177 +g1,21272:21960970,7119177 +g1,21272:22516059,7119177 +k1,21273:32583029,7119177:7444220 +g1,21273:32583029,7119177 +) +v1,21277:6630773,7804032:0,393216,0 +(1,21283:6630773,9514425:25952256,2103609,196608 +g1,21283:6630773,9514425 +g1,21283:6630773,9514425 +g1,21283:6434165,9514425 +(1,21283:6434165,9514425:0,2103609,196608 +r1,21349:32779637,9514425:26345472,2300217,196608 +k1,21283:6434165,9514425:-26345472 +) +(1,21283:6434165,9514425:26345472,2103609,196608 +[1,21283:6630773,9514425:25952256,1907001,0 +(1,21279:6630773,8031863:25952256,424439,106246 +(1,21278:6630773,8031863:0,0,0 +g1,21278:6630773,8031863 +g1,21278:6630773,8031863 +g1,21278:6303093,8031863 +(1,21278:6303093,8031863:0,0,0 +) +g1,21278:6630773,8031863 +) +g1,21279:9286405,8031863 +k1,21279:9286405,8031863:0 +h1,21279:9950313,8031863:0,0,0 +k1,21279:32583029,8031863:22632716 +g1,21279:32583029,8031863 +) +(1,21280:6630773,8716718:25952256,431045,112852 +h1,21280:6630773,8716718:0,0,0 +g1,21280:6962727,8716718 +g1,21280:7294681,8716718 +g1,21280:11278129,8716718 +g1,21280:11942037,8716718 +g1,21280:15925484,8716718 +g1,21280:18581116,8716718 +g1,21280:19245024,8716718 +g1,21280:21236748,8716718 +g1,21280:21900656,8716718 +g1,21280:22896518,8716718 +g1,21280:23560426,8716718 +g1,21280:24224334,8716718 +g1,21280:25552150,8716718 +h1,21280:25884104,8716718:0,0,0 +k1,21280:32583029,8716718:6698925 +g1,21280:32583029,8716718 +) +(1,21281:6630773,9401573:25952256,424439,112852 +h1,21281:6630773,9401573:0,0,0 +g1,21281:6962727,9401573 +g1,21281:7294681,9401573 +k1,21281:7294681,9401573:0 +h1,21281:11278128,9401573:0,0,0 +k1,21281:32583028,9401573:21304900 +g1,21281:32583028,9401573 +) +] +) +g1,21283:32583029,9514425 +g1,21283:6630773,9514425 +g1,21283:6630773,9514425 +g1,21283:32583029,9514425 +g1,21283:32583029,9514425 +) +h1,21283:6630773,9711033:0,0,0 +v1,21287:6630773,10395888:0,393216,0 +(1,21291:6630773,10729965:25952256,727293,196608 +g1,21291:6630773,10729965 +g1,21291:6630773,10729965 +g1,21291:6434165,10729965 +(1,21291:6434165,10729965:0,727293,196608 +r1,21349:32779637,10729965:26345472,923901,196608 +k1,21291:6434165,10729965:-26345472 +) +(1,21291:6434165,10729965:26345472,727293,196608 +[1,21291:6630773,10729965:25952256,530685,0 +(1,21289:6630773,10623719:25952256,424439,106246 +(1,21288:6630773,10623719:0,0,0 +g1,21288:6630773,10623719 +g1,21288:6630773,10623719 +g1,21288:6303093,10623719 +(1,21288:6303093,10623719:0,0,0 +) +g1,21288:6630773,10623719 +) +g1,21289:7626635,10623719 +g1,21289:8622497,10623719 +g1,21289:11278129,10623719 +g1,21289:11942037,10623719 +g1,21289:20572840,10623719 +g1,21289:21236748,10623719 +g1,21289:22896518,10623719 +h1,21289:24556288,10623719:0,0,0 +k1,21289:32583029,10623719:8026741 +g1,21289:32583029,10623719 +) +] +) +g1,21291:32583029,10729965 +g1,21291:6630773,10729965 +g1,21291:6630773,10729965 +g1,21291:32583029,10729965 +g1,21291:32583029,10729965 +) +h1,21291:6630773,10926573:0,0,0 +(1,21295:6630773,11791653:25952256,513147,134348 +h1,21294:6630773,11791653:983040,0,0 +g1,21294:8642072,11791653 +g1,21294:9775844,11791653 +g1,21294:11350674,11791653 +g1,21294:12706613,11791653 +g1,21294:14390232,11791653 +g1,21294:16845210,11791653 +g1,21294:18063524,11791653 +g1,21294:19964723,11791653 +g1,21294:21585428,11791653 +(1,21294:21585428,11791653:0,414482,115847 +r1,21349:22295406,11791653:709978,530329,115847 +k1,21294:21585428,11791653:-709978 +) +(1,21294:21585428,11791653:709978,414482,115847 +k1,21294:21585428,11791653:3277 +h1,21294:22292129,11791653:0,411205,112570 +) +g1,21294:22494635,11791653 +g1,21294:23225361,11791653 +g1,21294:24937816,11791653 +g1,21294:25823207,11791653 +g1,21294:26378296,11791653 +k1,21295:32583029,11791653:3101604 +g1,21295:32583029,11791653 +) +v1,21297:6630773,12476508:0,393216,0 +(1,21301:6630773,12810585:25952256,727293,196608 +g1,21301:6630773,12810585 +g1,21301:6630773,12810585 +g1,21301:6434165,12810585 +(1,21301:6434165,12810585:0,727293,196608 +r1,21349:32779637,12810585:26345472,923901,196608 +k1,21301:6434165,12810585:-26345472 +) +(1,21301:6434165,12810585:26345472,727293,196608 +[1,21301:6630773,12810585:25952256,530685,0 +(1,21299:6630773,12704339:25952256,424439,106246 +(1,21298:6630773,12704339:0,0,0 +g1,21298:6630773,12704339 +g1,21298:6630773,12704339 +g1,21298:6303093,12704339 +(1,21298:6303093,12704339:0,0,0 +) +g1,21298:6630773,12704339 +) +g1,21299:7626635,12704339 +g1,21299:10946175,12704339 +g1,21299:11610083,12704339 +g1,21299:20240886,12704339 +g1,21299:20904794,12704339 +g1,21299:22896518,12704339 +h1,21299:24224334,12704339:0,0,0 +k1,21299:32583029,12704339:8358695 +g1,21299:32583029,12704339 +) +] +) +g1,21301:32583029,12810585 +g1,21301:6630773,12810585 +g1,21301:6630773,12810585 +g1,21301:32583029,12810585 +g1,21301:32583029,12810585 +) +h1,21301:6630773,13007193:0,0,0 +v1,21305:6630773,13692048:0,393216,0 +(1,21311:6630773,16726140:25952256,3427308,196608 +g1,21311:6630773,16726140 +g1,21311:6630773,16726140 +g1,21311:6434165,16726140 +(1,21311:6434165,16726140:0,3427308,196608 +r1,21349:32779637,16726140:26345472,3623916,196608 +k1,21311:6434165,16726140:-26345472 +) +(1,21311:6434165,16726140:26345472,3427308,196608 +[1,21311:6630773,16726140:25952256,3230700,0 +(1,21307:6630773,13903363:25952256,407923,106246 +(1,21306:6630773,13903363:0,0,0 +g1,21306:6630773,13903363 +g1,21306:6630773,13903363 +g1,21306:6303093,13903363 +(1,21306:6303093,13903363:0,0,0 +) +g1,21306:6630773,13903363 +) +g1,21307:7626635,13903363 +g1,21307:8290543,13903363 +h1,21307:8954451,13903363:0,0,0 +k1,21307:32583029,13903363:23628578 +g1,21307:32583029,13903363 +) +(1,21311:6630773,15243578:25952256,424439,112852 +k1,21311:7722608,15243578:427927 +k1,21311:10806167,15243578:427928 +k1,21311:13557772,15243578:427927 +k1,21311:14649608,15243578:427928 +k1,21311:16405351,15243578:427927 +k1,21311:20152818,15243578:427928 +k1,21311:22904423,15243578:427927 +k1,21311:25324075,15243578:427928 +k1,21311:26415910,15243578:427927 +k1,21311:28835562,15243578:427928 +k1,21311:31587167,15243578:427927 +k1,21311:32583029,15243578:0 +) +(1,21311:6630773,15928433:25952256,424439,112852 +g1,21311:8622497,15928433 +k1,21311:32583029,15928433:22300762 +g1,21311:32583029,15928433 +) +(1,21311:6630773,16613288:25952256,431045,112852 +g1,21311:7626635,16613288 +k1,21311:32583028,16613288:19313176 +g1,21311:32583028,16613288 +) +] +) +g1,21311:32583029,16726140 +g1,21311:6630773,16726140 +g1,21311:6630773,16726140 +g1,21311:32583029,16726140 +g1,21311:32583029,16726140 +) +h1,21311:6630773,16922748:0,0,0 +(1,21314:6630773,26623079:25952256,9634795,0 +k1,21314:6760463,26623079:129690 +h1,21313:6760463,26623079:0,0,0 +(1,21313:6760463,26623079:25692876,9634795,0 +(1,21313:6760463,26623079:25692851,9634819,0 +(1,21313:6760463,26623079:25692851,9634819,0 +(1,21313:6760463,26623079:0,9634819,0 +(1,21313:6760463,26623079:0,14208860,0 +(1,21313:6760463,26623079:37890292,14208860,0 +) +k1,21313:6760463,26623079:-37890292 +) +) +g1,21313:32453314,26623079 +) +) +) +g1,21314:32453339,26623079 +k1,21314:32583029,26623079:129690 +) +(1,21321:6630773,27488159:25952256,513147,115847 +h1,21320:6630773,27488159:983040,0,0 +k1,21320:11875718,27488159:233407 +k1,21320:15134922,27488159:233407 +(1,21320:15134922,27488159:0,452978,115847 +r1,21349:17251747,27488159:2116825,568825,115847 +k1,21320:15134922,27488159:-2116825 +) +(1,21320:15134922,27488159:2116825,452978,115847 +k1,21320:15134922,27488159:3277 +h1,21320:17248470,27488159:0,411205,112570 +) +k1,21320:17485154,27488159:233407 +k1,21320:18910006,27488159:233407 +(1,21320:18910006,27488159:0,452978,115847 +r1,21349:21026831,27488159:2116825,568825,115847 +k1,21320:18910006,27488159:-2116825 +) +(1,21320:18910006,27488159:2116825,452978,115847 +k1,21320:18910006,27488159:3277 +h1,21320:21023554,27488159:0,411205,112570 +) +k1,21320:21260238,27488159:233407 +k1,21320:22597927,27488159:233407 +k1,21320:23579100,27488159:233407 +k1,21320:25325733,27488159:233407 +k1,21320:26210568,27488159:233407 +k1,21320:27378518,27488159:233407 +k1,21320:28631010,27488159:233407 +k1,21320:30679109,27488159:233407 +k1,21320:31563944,27488159:233407 +k1,21320:32583029,27488159:0 +) +(1,21321:6630773,28353239:25952256,513147,138281 +k1,21320:9102041,28353239:205688 +$1,21320:9102041,28353239 +$1,21320:9604702,28353239 +k1,21320:9810389,28353239:205687 +k1,21320:11207522,28353239:205688 +$1,21320:11207522,28353239 +$1,21320:11759335,28353239 +k1,21320:11965022,28353239:205687 +k1,21320:14073220,28353239:205688 +k1,21320:14894945,28353239:205687 +k1,21320:16366789,28353239:205688 +k1,21320:18613268,28353239:205688 +(1,21320:18613268,28353239:0,452978,115847 +r1,21349:20730093,28353239:2116825,568825,115847 +k1,21320:18613268,28353239:-2116825 +) +(1,21320:18613268,28353239:2116825,452978,115847 +k1,21320:18613268,28353239:3277 +h1,21320:20726816,28353239:0,411205,112570 +) +k1,21320:20935780,28353239:205687 +k1,21320:21672965,28353239:205688 +k1,21320:23565549,28353239:205687 +k1,21320:24843406,28353239:205688 +(1,21320:24843406,28353239:0,452978,115847 +r1,21349:26960231,28353239:2116825,568825,115847 +k1,21320:24843406,28353239:-2116825 +) +(1,21320:24843406,28353239:2116825,452978,115847 +k1,21320:24843406,28353239:3277 +h1,21320:26956954,28353239:0,411205,112570 +) +k1,21320:27165918,28353239:205687 +k1,21320:29298364,28353239:205688 +k1,21320:32583029,28353239:0 +) +(1,21321:6630773,29218319:25952256,513147,126483 +g1,21320:8900940,29218319 +g1,21320:10047820,29218319 +g1,21320:11266134,29218319 +g1,21320:13037572,29218319 +g1,21320:13694898,29218319 +g1,21320:16638775,29218319 +g1,21320:18322394,29218319 +g1,21320:21258406,29218319 +g1,21320:22109063,29218319 +(1,21320:22109063,29218319:0,435480,115847 +r1,21349:22819041,29218319:709978,551327,115847 +k1,21320:22109063,29218319:-709978 +) +(1,21320:22109063,29218319:709978,435480,115847 +k1,21320:22109063,29218319:3277 +h1,21320:22815764,29218319:0,411205,112570 +) +g1,21320:23018270,29218319 +g1,21320:25246494,29218319 +g1,21320:26511994,29218319 +k1,21321:32583029,29218319:3735988 +g1,21321:32583029,29218319 +) +v1,21323:6630773,29903174:0,393216,0 +(1,21327:6630773,30237251:25952256,727293,196608 +g1,21327:6630773,30237251 +g1,21327:6630773,30237251 +g1,21327:6434165,30237251 +(1,21327:6434165,30237251:0,727293,196608 +r1,21349:32779637,30237251:26345472,923901,196608 +k1,21327:6434165,30237251:-26345472 +) +(1,21327:6434165,30237251:26345472,727293,196608 +[1,21327:6630773,30237251:25952256,530685,0 +(1,21325:6630773,30131005:25952256,424439,106246 +(1,21324:6630773,30131005:0,0,0 +g1,21324:6630773,30131005 +g1,21324:6630773,30131005 +g1,21324:6303093,30131005 +(1,21324:6303093,30131005:0,0,0 +) +g1,21324:6630773,30131005 +) +g1,21325:9286405,30131005 +g1,21325:9950313,30131005 +g1,21325:10282267,30131005 +g1,21325:13269853,30131005 +h1,21325:14265715,30131005:0,0,0 +k1,21325:32583029,30131005:18317314 +g1,21325:32583029,30131005 +) +] +) +g1,21327:32583029,30237251 +g1,21327:6630773,30237251 +g1,21327:6630773,30237251 +g1,21327:32583029,30237251 +g1,21327:32583029,30237251 +) +h1,21327:6630773,30433859:0,0,0 +(1,21332:6630773,31298939:25952256,505283,134348 +h1,21330:6630773,31298939:983040,0,0 +k1,21330:8538690,31298939:297042 +k1,21330:11342484,31298939:297042 +k1,21330:13821220,31298939:297042 +k1,21330:15598064,31298939:297041 +k1,21330:17709798,31298939:297042 +k1,21330:20187223,31298939:297042 +k1,21330:21232031,31298939:297042 +k1,21330:24200320,31298939:297042 +k1,21330:25964058,31298939:297042 +k1,21330:28531266,31298939:297041 +k1,21330:29184168,31298939:297042 +k1,21330:32051532,31298939:297042 +k1,21330:32583029,31298939:0 +) +(1,21332:6630773,32164019:25952256,505283,134348 +k1,21330:8905933,32164019:230437 +k1,21330:10958925,32164019:230436 +(1,21330:10958925,32164019:0,414482,115847 +r1,21349:11668903,32164019:709978,530329,115847 +k1,21330:10958925,32164019:-709978 +) +(1,21330:10958925,32164019:709978,414482,115847 +k1,21330:10958925,32164019:3277 +h1,21330:11665626,32164019:0,411205,112570 +) +k1,21330:11899340,32164019:230437 +k1,21330:14140422,32164019:230437 +k1,21330:16108873,32164019:230436 +k1,21330:19010557,32164019:230437 +k1,21330:19927156,32164019:230437 +k1,21330:20615689,32164019:230436 +k1,21330:21377623,32164019:230437 +k1,21330:23002665,32164019:230436 +k1,21330:23884530,32164019:230437 +k1,21330:27633595,32164019:230437 +k1,21330:29944144,32164019:230436 +k1,21330:31193666,32164019:230437 +k1,21330:32583029,32164019:0 +) +(1,21332:6630773,33029099:25952256,513147,134348 +k1,21330:8549610,33029099:180822 +k1,21330:11206382,33029099:180822 +k1,21331:11857098,33029099:180823 +k1,21331:12569417,33029099:180822 +k1,21331:16015898,33029099:180822 +k1,21331:16848148,33029099:180822 +k1,21331:18121456,33029099:180823 +k1,21331:20997774,33029099:180822 +(1,21331:20997774,33029099:0,452978,115847 +r1,21349:26280005,33029099:5282231,568825,115847 +k1,21331:20997774,33029099:-5282231 +) +(1,21331:20997774,33029099:5282231,452978,115847 +k1,21331:20997774,33029099:3277 +h1,21331:26276728,33029099:0,411205,112570 +) +k1,21331:26460827,33029099:180822 +k1,21331:27327811,33029099:180822 +k1,21331:27966731,33029099:180823 +k1,21331:30012052,33029099:180822 +k1,21332:32583029,33029099:0 +) +(1,21332:6630773,33894179:25952256,513147,134348 +k1,21331:7823747,33894179:173889 +k1,21331:11832146,33894179:173888 +k1,21331:15214678,33894179:173889 +k1,21331:17654147,33894179:173889 +k1,21331:19642728,33894179:173889 +k1,21331:20475908,33894179:173888 +k1,21331:21005657,33894179:173889 +k1,21331:24426200,33894179:173889 +k1,21331:26172298,33894179:173889 +k1,21331:28160878,33894179:173888 +k1,21331:29467229,33894179:173889 +k1,21331:31219225,33894179:173889 +k1,21331:32583029,33894179:0 +) +(1,21332:6630773,34759259:25952256,505283,126483 +k1,21331:7807800,34759259:157942 +k1,21331:11123266,34759259:157941 +k1,21331:14373852,34759259:157942 +k1,21331:16346485,34759259:157941 +k1,21331:18202465,34759259:157942 +k1,21331:20658755,34759259:157942 +k1,21331:21468124,34759259:157941 +k1,21331:26058921,34759259:157942 +k1,21331:26982978,34759259:157941 +k1,21331:31386342,34759259:157942 +k1,21331:32583029,34759259:0 +) +(1,21332:6630773,35624339:25952256,513147,134348 +k1,21331:10304050,35624339:270648 +k1,21331:11226125,35624339:270647 +(1,21331:11226125,35624339:0,414482,115847 +r1,21349:11584391,35624339:358266,530329,115847 +k1,21331:11226125,35624339:-358266 +) +(1,21331:11226125,35624339:358266,414482,115847 +k1,21331:11226125,35624339:3277 +h1,21331:11581114,35624339:0,411205,112570 +) +k1,21331:11855039,35624339:270648 +k1,21331:13317132,35624339:270648 +(1,21331:13317132,35624339:0,414482,115847 +r1,21349:13675398,35624339:358266,530329,115847 +k1,21331:13317132,35624339:-358266 +) +(1,21331:13317132,35624339:358266,414482,115847 +k1,21331:13317132,35624339:3277 +h1,21331:13672121,35624339:0,411205,112570 +) +k1,21331:13946046,35624339:270648 +k1,21331:15208253,35624339:270647 +k1,21331:18099030,35624339:270648 +k1,21331:20677856,35624339:270648 +k1,21331:21607795,35624339:270647 +k1,21331:23891709,35624339:270648 +k1,21331:25319067,35624339:270648 +k1,21331:26272600,35624339:270648 +k1,21331:27715686,35624339:270647 +k1,21331:29611627,35624339:270648 +k1,21331:32583029,35624339:0 +) +(1,21332:6630773,36489419:25952256,513147,138281 +k1,21331:8159684,36489419:198530 +k1,21331:9377300,36489419:198531 +k1,21331:11390522,36489419:198530 +k1,21331:12248344,36489419:198530 +k1,21331:13465959,36489419:198530 +$1,21331:13465959,36489419 +$1,21331:13968620,36489419 +k1,21331:14167151,36489419:198531 +k1,21331:15557126,36489419:198530 +$1,21331:15557126,36489419 +$1,21331:16108939,36489419 +k1,21331:16307469,36489419:198530 +k1,21331:20076400,36489419:198530 +k1,21331:22177441,36489419:198531 +k1,21331:23367531,36489419:198530 +k1,21331:26121310,36489419:198530 +k1,21331:28360631,36489419:198530 +k1,21331:29578247,36489419:198531 +k1,21331:31591469,36489419:198530 +k1,21331:32583029,36489419:0 +) +(1,21332:6630773,37354499:25952256,505283,134348 +g1,21331:9922646,37354499 +g1,21331:10773303,37354499 +g1,21331:13310201,37354499 +g1,21331:14528515,37354499 +k1,21332:32583029,37354499:16127756 +g1,21332:32583029,37354499 +) +v1,21336:6630773,38039354:0,393216,0 +(1,21340:6630773,38373431:25952256,727293,196608 +g1,21340:6630773,38373431 +g1,21340:6630773,38373431 +g1,21340:6434165,38373431 +(1,21340:6434165,38373431:0,727293,196608 +r1,21349:32779637,38373431:26345472,923901,196608 +k1,21340:6434165,38373431:-26345472 +) +(1,21340:6434165,38373431:26345472,727293,196608 +[1,21340:6630773,38373431:25952256,530685,0 +(1,21338:6630773,38267185:25952256,424439,106246 +(1,21337:6630773,38267185:0,0,0 +g1,21337:6630773,38267185 +g1,21337:6630773,38267185 +g1,21337:6303093,38267185 +(1,21337:6303093,38267185:0,0,0 +) +g1,21337:6630773,38267185 +) +g1,21338:9286405,38267185 +g1,21338:9950313,38267185 +g1,21338:15261576,38267185 +g1,21338:15925484,38267185 +g1,21338:16921346,38267185 +g1,21338:17585254,38267185 +g1,21338:18249162,38267185 +h1,21338:18913070,38267185:0,0,0 +k1,21338:32583029,38267185:13669959 +g1,21338:32583029,38267185 +) +] +) +g1,21340:32583029,38373431 +g1,21340:6630773,38373431 +g1,21340:6630773,38373431 +g1,21340:32583029,38373431 +g1,21340:32583029,38373431 +) +h1,21340:6630773,38570039:0,0,0 +] +(1,21349:32583029,45706769:0,0,0 +g1,21349:32583029,45706769 +) +) +] +(1,21349:6630773,47279633:25952256,0,0 +h1,21349:6630773,47279633:25952256,0,0 +) +] +(1,21349:4262630,4025873:0,0,0 +[1,21349:-473656,4025873:0,0,0 +(1,21349:-473656,-710413:0,0,0 +(1,21349:-473656,-710413:0,0,0 +g1,21349:-473656,-710413 +) +g1,21349:-473656,-710413 ) ] ) ] !21678 -}360 -Input:3959:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3960:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3961:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3962:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}361 Input:3963:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3964:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3965:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -370360,732 +370564,732 @@ Input:3969:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3970:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3971:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3972:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3973:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3974:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3975:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3976:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{361 -[1,21407:4262630,47279633:28320399,43253760,0 -(1,21407:4262630,4025873:0,0,0 -[1,21407:-473656,4025873:0,0,0 -(1,21407:-473656,-710413:0,0,0 -(1,21407:-473656,-644877:0,0,0 -k1,21407:-473656,-644877:-65536 +{362 +[1,21405:4262630,47279633:28320399,43253760,0 +(1,21405:4262630,4025873:0,0,0 +[1,21405:-473656,4025873:0,0,0 +(1,21405:-473656,-710413:0,0,0 +(1,21405:-473656,-644877:0,0,0 +k1,21405:-473656,-644877:-65536 ) -(1,21407:-473656,4736287:0,0,0 -k1,21407:-473656,4736287:5209943 +(1,21405:-473656,4736287:0,0,0 +k1,21405:-473656,4736287:5209943 ) -g1,21407:-473656,-710413 +g1,21405:-473656,-710413 ) ] ) -[1,21407:6630773,47279633:25952256,43253760,0 -[1,21407:6630773,4812305:25952256,786432,0 -(1,21407:6630773,4812305:25952256,513147,126483 -(1,21407:6630773,4812305:25952256,513147,126483 -g1,21407:3078558,4812305 -[1,21407:3078558,4812305:0,0,0 -(1,21407:3078558,2439708:0,1703936,0 -k1,21407:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21407:2537886,2439708:1179648,16384,0 +[1,21405:6630773,47279633:25952256,43253760,0 +[1,21405:6630773,4812305:25952256,786432,0 +(1,21405:6630773,4812305:25952256,513147,126483 +(1,21405:6630773,4812305:25952256,513147,126483 +g1,21405:3078558,4812305 +[1,21405:3078558,4812305:0,0,0 +(1,21405:3078558,2439708:0,1703936,0 +k1,21405:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21405:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21407:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21405:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21407:3078558,4812305:0,0,0 -(1,21407:3078558,2439708:0,1703936,0 -g1,21407:29030814,2439708 -g1,21407:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21407:36151628,1915420:16384,1179648,0 +[1,21405:3078558,4812305:0,0,0 +(1,21405:3078558,2439708:0,1703936,0 +g1,21405:29030814,2439708 +g1,21405:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21405:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21407:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21405:37855564,2439708:1179648,16384,0 ) ) -k1,21407:3078556,2439708:-34777008 +k1,21405:3078556,2439708:-34777008 ) ] -[1,21407:3078558,4812305:0,0,0 -(1,21407:3078558,49800853:0,16384,2228224 -k1,21407:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21407:2537886,49800853:1179648,16384,0 +[1,21405:3078558,4812305:0,0,0 +(1,21405:3078558,49800853:0,16384,2228224 +k1,21405:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21405:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21407:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21405:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21407:3078558,4812305:0,0,0 -(1,21407:3078558,49800853:0,16384,2228224 -g1,21407:29030814,49800853 -g1,21407:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21407:36151628,51504789:16384,1179648,0 +[1,21405:3078558,4812305:0,0,0 +(1,21405:3078558,49800853:0,16384,2228224 +g1,21405:29030814,49800853 +g1,21405:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21405:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21407:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21405:37855564,49800853:1179648,16384,0 ) ) -k1,21407:3078556,49800853:-34777008 +k1,21405:3078556,49800853:-34777008 ) ] -g1,21407:6630773,4812305 -k1,21407:21386205,4812305:13560055 -g1,21407:21999622,4812305 -g1,21407:25611966,4812305 -g1,21407:28956923,4812305 -g1,21407:29772190,4812305 +g1,21405:6630773,4812305 +k1,21405:21386205,4812305:13560055 +g1,21405:21999622,4812305 +g1,21405:25611966,4812305 +g1,21405:28956923,4812305 +g1,21405:29772190,4812305 ) ) ] -[1,21407:6630773,45706769:25952256,40108032,0 -(1,21407:6630773,45706769:25952256,40108032,0 -(1,21407:6630773,45706769:0,0,0 -g1,21407:6630773,45706769 +[1,21405:6630773,45706769:25952256,40108032,0 +(1,21405:6630773,45706769:25952256,40108032,0 +(1,21405:6630773,45706769:0,0,0 +g1,21405:6630773,45706769 ) -[1,21407:6630773,45706769:25952256,40108032,0 -(1,21345:6630773,15233315:25952256,9634578,0 -k1,21345:13183781,15233315:6553008 -h1,21344:13183781,15233315:0,0,0 -(1,21344:13183781,15233315:12846240,9634578,0 -(1,21344:13183781,15233315:12846136,9634602,0 -(1,21344:13183781,15233315:12846136,9634602,0 -(1,21344:13183781,15233315:0,9634602,0 -(1,21344:13183781,15233315:0,14208860,0 -(1,21344:13183781,15233315:18945146,14208860,0 +[1,21405:6630773,45706769:25952256,40108032,0 +(1,21343:6630773,15233315:25952256,9634578,0 +k1,21343:13183781,15233315:6553008 +h1,21342:13183781,15233315:0,0,0 +(1,21342:13183781,15233315:12846240,9634578,0 +(1,21342:13183781,15233315:12846136,9634602,0 +(1,21342:13183781,15233315:12846136,9634602,0 +(1,21342:13183781,15233315:0,9634602,0 +(1,21342:13183781,15233315:0,14208860,0 +(1,21342:13183781,15233315:18945146,14208860,0 ) -k1,21344:13183781,15233315:-18945146 -) -) -g1,21344:26029917,15233315 -) -) -) -g1,21345:26030021,15233315 -k1,21345:32583029,15233315:6553008 -) -(1,21352:6630773,16098395:25952256,513147,126483 -h1,21351:6630773,16098395:983040,0,0 -k1,21351:8991435,16098395:180935 -(1,21351:8991435,16098395:0,452978,115847 -r1,21407:11108260,16098395:2116825,568825,115847 -k1,21351:8991435,16098395:-2116825 -) -(1,21351:8991435,16098395:2116825,452978,115847 -k1,21351:8991435,16098395:3277 -h1,21351:11104983,16098395:0,411205,112570 -) -k1,21351:11289196,16098395:180936 -k1,21351:14750863,16098395:180935 -k1,21351:15591090,16098395:180935 -k1,21351:16791110,16098395:180935 -k1,21351:18874556,16098395:180936 -k1,21351:20728625,16098395:180935 -k1,21351:21265420,16098395:180935 -k1,21351:24208698,16098395:180935 -k1,21351:25624988,16098395:180936 -k1,21351:27248370,16098395:180935 -(1,21351:27248370,16098395:0,452978,115847 -r1,21407:32530601,16098395:5282231,568825,115847 -k1,21351:27248370,16098395:-5282231 -) -(1,21351:27248370,16098395:5282231,452978,115847 -k1,21351:27248370,16098395:3277 -h1,21351:32527324,16098395:0,411205,112570 -) -k1,21351:32583029,16098395:0 -) -(1,21352:6630773,16963475:25952256,505283,134348 -k1,21351:7339772,16963475:239106 -k1,21351:9106521,16963475:239105 -k1,21351:9701487,16963475:239106 -k1,21351:12795340,16963475:239105 -k1,21351:13717331,16963475:239106 -k1,21351:16564769,16963475:239105 -k1,21351:19093048,16963475:239106 -k1,21351:20351238,16963475:239105 -k1,21351:23114791,16963475:239106 -k1,21351:24874987,16963475:239105 -k1,21351:26310780,16963475:239106 -k1,21351:28472056,16963475:239105 -k1,21351:31235609,16963475:239106 -k1,21351:32583029,16963475:0 -) -(1,21352:6630773,17828555:25952256,505283,134348 -k1,21351:7397796,17828555:235526 -k1,21351:9328084,17828555:235527 -k1,21351:10325138,17828555:235526 -k1,21351:11579749,17828555:235526 -k1,21351:13387485,17828555:235527 -k1,21351:15611373,17828555:235526 -k1,21351:16781442,17828555:235526 -k1,21351:18872948,17828555:235526 -k1,21351:22942986,17828555:235527 -k1,21351:23861397,17828555:235526 -k1,21351:27203330,17828555:235526 -k1,21351:28893756,17828555:235527 -k1,21351:30975431,17828555:235526 -k1,21351:32583029,17828555:0 -) -(1,21352:6630773,18693635:25952256,513147,134348 -k1,21351:7865166,18693635:242833 -k1,21351:10108812,18693635:242832 -k1,21351:11076473,18693635:242833 -k1,21351:12603811,18693635:242832 -k1,21351:16918396,18693635:242833 -k1,21351:18152789,18693635:242833 -k1,21351:20697901,18693635:242832 -k1,21351:21750104,18693635:242833 -k1,21351:23065105,18693635:242832 -k1,21351:23967230,18693635:242833 -k1,21351:25229148,18693635:242833 -k1,21351:27044189,18693635:242832 -k1,21351:30006766,18693635:242833 -k1,21351:31452839,18693635:242832 -k1,21351:32227169,18693635:242833 -k1,21351:32583029,18693635:0 -) -(1,21352:6630773,19558715:25952256,513147,134348 -k1,21351:7961052,19558715:229274 -k1,21351:9425680,19558715:229274 -k1,21351:10322110,19558715:229274 -(1,21351:10322110,19558715:0,452978,115847 -r1,21407:12438935,19558715:2116825,568825,115847 -k1,21351:10322110,19558715:-2116825 -) -(1,21351:10322110,19558715:2116825,452978,115847 -k1,21351:10322110,19558715:3277 -h1,21351:12435658,19558715:0,411205,112570 -) -k1,21351:12841879,19558715:229274 -k1,21351:14305196,19558715:229274 -k1,21351:16142068,19558715:229274 -k1,21351:17562788,19558715:229275 -k1,21351:20607489,19558715:229274 -k1,21351:24627365,19558715:229274 -k1,21351:25960921,19558715:229274 -k1,21351:27905928,19558715:229274 -k1,21351:28593299,19558715:229274 -k1,21351:31931601,19558715:229274 -k1,21351:32583029,19558715:0 -) -(1,21352:6630773,20423795:25952256,513147,134348 -g1,21351:9154564,20423795 -g1,21351:10372878,20423795 -g1,21351:13096554,20423795 -g1,21351:14643203,20423795 -g1,21351:16492629,20423795 -g1,21351:18134305,20423795 -g1,21351:19352619,20423795 -g1,21351:21817428,20423795 -g1,21351:22675949,20423795 -g1,21351:23716005,20423795 -g1,21351:24724604,20423795 -g1,21351:26375455,20423795 -k1,21352:32583029,20423795:3900707 -g1,21352:32583029,20423795 -) -(1,21354:6630773,21288875:25952256,513147,134348 -h1,21353:6630773,21288875:983040,0,0 -k1,21353:8391257,21288875:149609 -k1,21353:9559952,21288875:149610 -k1,21353:12370978,21288875:149609 -k1,21353:14562689,21288875:149609 -k1,21353:15731383,21288875:149609 -k1,21353:17773017,21288875:149610 -k1,21353:19412259,21288875:149609 -k1,21353:20221160,21288875:149609 -k1,21353:21389855,21288875:149610 -k1,21353:24063911,21288875:149609 -k1,21353:25560940,21288875:149609 -k1,21353:26242046,21288875:149609 -k1,21353:29484300,21288875:149610 -k1,21353:30395437,21288875:149609 -k1,21353:32583029,21288875:0 -) -(1,21354:6630773,22153955:25952256,513147,134348 -g1,21353:8199049,22153955 -g1,21353:10016362,22153955 -g1,21353:10874883,22153955 -g1,21353:13682445,22153955 -g1,21353:15073119,22153955 -g1,21353:16291433,22153955 -g1,21353:19735349,22153955 -g1,21353:20547340,22153955 -g1,21353:21765654,22153955 -g1,21353:24288134,22153955 -g1,21353:25421906,22153955 -g1,21353:26272563,22153955 -k1,21354:32583029,22153955:4837872 -g1,21354:32583029,22153955 -) -v1,21358:6630773,22838810:0,393216,0 -(1,21365:6630773,25227452:25952256,2781858,196608 -g1,21365:6630773,25227452 -g1,21365:6630773,25227452 -g1,21365:6434165,25227452 -(1,21365:6434165,25227452:0,2781858,196608 -r1,21407:32779637,25227452:26345472,2978466,196608 -k1,21365:6434165,25227452:-26345472 -) -(1,21365:6434165,25227452:26345472,2781858,196608 -[1,21365:6630773,25227452:25952256,2585250,0 -(1,21360:6630773,23066641:25952256,424439,106246 -(1,21359:6630773,23066641:0,0,0 -g1,21359:6630773,23066641 -g1,21359:6630773,23066641 -g1,21359:6303093,23066641 -(1,21359:6303093,23066641:0,0,0 -) -g1,21359:6630773,23066641 -) -g1,21360:9286405,23066641 -k1,21360:9286405,23066641:0 -h1,21360:9950313,23066641:0,0,0 -k1,21360:32583029,23066641:22632716 -g1,21360:32583029,23066641 -) -(1,21361:6630773,23751496:25952256,431045,112852 -h1,21361:6630773,23751496:0,0,0 -g1,21361:6962727,23751496 -g1,21361:7294681,23751496 -g1,21361:11278129,23751496 -g1,21361:11942037,23751496 -k1,21361:11942037,23751496:0 -h1,21361:15593530,23751496:0,0,0 -k1,21361:32583030,23751496:16989500 -g1,21361:32583030,23751496 -) -(1,21362:6630773,24436351:25952256,431045,112852 -h1,21362:6630773,24436351:0,0,0 -g1,21362:6962727,24436351 -g1,21362:7294681,24436351 -g1,21362:7626635,24436351 -g1,21362:7958589,24436351 -g1,21362:8290543,24436351 -g1,21362:8622497,24436351 -g1,21362:8954451,24436351 -g1,21362:9286405,24436351 -g1,21362:9618359,24436351 -g1,21362:12273991,24436351 -g1,21362:12937899,24436351 -g1,21362:15925485,24436351 -g1,21362:16589393,24436351 -g1,21362:18913071,24436351 -g1,21362:21236749,24436351 -g1,21362:21900657,24436351 -g1,21362:24224335,24436351 -g1,21362:24888243,24436351 -g1,21362:25552151,24436351 -g1,21362:26879967,24436351 -h1,21362:27211921,24436351:0,0,0 -k1,21362:32583029,24436351:5371108 -g1,21362:32583029,24436351 -) -(1,21363:6630773,25121206:25952256,424439,106246 -h1,21363:6630773,25121206:0,0,0 -g1,21363:6962727,25121206 -g1,21363:7294681,25121206 -g1,21363:13601806,25121206 -g1,21363:14265714,25121206 -g1,21363:15925484,25121206 -g1,21363:18913069,25121206 -g1,21363:19576977,25121206 -h1,21363:23228470,25121206:0,0,0 -k1,21363:32583029,25121206:9354559 -g1,21363:32583029,25121206 -) -] -) -g1,21365:32583029,25227452 -g1,21365:6630773,25227452 -g1,21365:6630773,25227452 -g1,21365:32583029,25227452 -g1,21365:32583029,25227452 -) -h1,21365:6630773,25424060:0,0,0 -v1,21369:6630773,26108915:0,393216,0 -(1,21374:6630773,27111331:25952256,1395632,196608 -g1,21374:6630773,27111331 -g1,21374:6630773,27111331 -g1,21374:6434165,27111331 -(1,21374:6434165,27111331:0,1395632,196608 -r1,21407:32779637,27111331:26345472,1592240,196608 -k1,21374:6434165,27111331:-26345472 -) -(1,21374:6434165,27111331:26345472,1395632,196608 -[1,21374:6630773,27111331:25952256,1199024,0 -(1,21371:6630773,26320230:25952256,407923,106246 -(1,21370:6630773,26320230:0,0,0 -g1,21370:6630773,26320230 -g1,21370:6630773,26320230 -g1,21370:6303093,26320230 -(1,21370:6303093,26320230:0,0,0 -) -g1,21370:6630773,26320230 -) -g1,21371:7626635,26320230 -k1,21371:7626635,26320230:0 -h1,21371:8290543,26320230:0,0,0 -k1,21371:32583029,26320230:24292486 -g1,21371:32583029,26320230 -) -(1,21372:6630773,27005085:25952256,424439,106246 -h1,21372:6630773,27005085:0,0,0 -g1,21372:6962727,27005085 -g1,21372:7294681,27005085 -g1,21372:9950313,27005085 -g1,21372:10614221,27005085 -g1,21372:19245024,27005085 -g1,21372:19908932,27005085 -g1,21372:24556287,27005085 -g1,21372:25220195,27005085 -g1,21372:26879965,27005085 -h1,21372:29203643,27005085:0,0,0 -k1,21372:32583029,27005085:3379386 -g1,21372:32583029,27005085 -) -] -) -g1,21374:32583029,27111331 -g1,21374:6630773,27111331 -g1,21374:6630773,27111331 -g1,21374:32583029,27111331 -g1,21374:32583029,27111331 -) -h1,21374:6630773,27307939:0,0,0 -(1,21378:6630773,28173019:25952256,505283,134348 -h1,21377:6630773,28173019:983040,0,0 -k1,21377:9614032,28173019:208465 -k1,21377:13313600,28173019:208465 -k1,21377:14623069,28173019:208464 -k1,21377:15850619,28173019:208465 -k1,21377:19297873,28173019:208465 -k1,21377:20790844,28173019:208465 -k1,21377:22018393,28173019:208464 -k1,21377:25471545,28173019:208465 -k1,21377:26211507,28173019:208465 -k1,21377:30629350,28173019:208465 -k1,21377:31325393,28173019:208455 -k1,21378:32583029,28173019:0 -) -(1,21378:6630773,29038099:25952256,513147,134348 -k1,21377:7847730,29038099:166415 -k1,21377:9784927,29038099:166414 -k1,21377:10637504,29038099:166415 -k1,21377:12659242,29038099:166414 -k1,21377:13357154,29038099:166415 -k1,21377:16301639,29038099:166414 -k1,21377:18203447,29038099:166415 -k1,21377:22034635,29038099:166415 -k1,21377:23440335,29038099:166414 -k1,21377:26787868,29038099:166415 -k1,21377:27605710,29038099:166414 -k1,21377:28791210,29038099:166415 -k1,21377:30738237,29038099:166414 -k1,21377:31563944,29038099:166415 -k1,21378:32583029,29038099:0 -) -(1,21378:6630773,29903179:25952256,505283,126483 -(1,21377:6630773,29903179:0,452978,115847 -r1,21407:8747598,29903179:2116825,568825,115847 -k1,21377:6630773,29903179:-2116825 -) -(1,21377:6630773,29903179:2116825,452978,115847 -k1,21377:6630773,29903179:3277 -h1,21377:8744321,29903179:0,411205,112570 -) -g1,21377:8946827,29903179 -g1,21377:9758818,29903179 -g1,21377:10977132,29903179 -g1,21377:12248530,29903179 -g1,21377:13639204,29903179 -g1,21377:15409986,29903179 -g1,21377:16221977,29903179 -g1,21377:17440291,29903179 -k1,21378:32583029,29903179:12767058 -g1,21378:32583029,29903179 -) -v1,21380:6630773,30588034:0,393216,0 -(1,21385:6630773,31590450:25952256,1395632,196608 -g1,21385:6630773,31590450 -g1,21385:6630773,31590450 -g1,21385:6434165,31590450 -(1,21385:6434165,31590450:0,1395632,196608 -r1,21407:32779637,31590450:26345472,1592240,196608 -k1,21385:6434165,31590450:-26345472 -) -(1,21385:6434165,31590450:26345472,1395632,196608 -[1,21385:6630773,31590450:25952256,1199024,0 -(1,21382:6630773,30799349:25952256,407923,106246 -(1,21381:6630773,30799349:0,0,0 -g1,21381:6630773,30799349 -g1,21381:6630773,30799349 -g1,21381:6303093,30799349 -(1,21381:6303093,30799349:0,0,0 -) -g1,21381:6630773,30799349 -) -g1,21382:7626635,30799349 -k1,21382:7626635,30799349:0 -h1,21382:8290543,30799349:0,0,0 -k1,21382:32583029,30799349:24292486 -g1,21382:32583029,30799349 -) -(1,21383:6630773,31484204:25952256,424439,106246 -h1,21383:6630773,31484204:0,0,0 -g1,21383:6962727,31484204 -g1,21383:7294681,31484204 -g1,21383:9950313,31484204 -g1,21383:10614221,31484204 -g1,21383:19245024,31484204 -g1,21383:19908932,31484204 -g1,21383:24888241,31484204 -g1,21383:25552149,31484204 -g1,21383:27211919,31484204 -h1,21383:29203643,31484204:0,0,0 -k1,21383:32583029,31484204:3379386 -g1,21383:32583029,31484204 -) -] -) -g1,21385:32583029,31590450 -g1,21385:6630773,31590450 -g1,21385:6630773,31590450 -g1,21385:32583029,31590450 -g1,21385:32583029,31590450 -) -h1,21385:6630773,31787058:0,0,0 -v1,21389:6630773,32471913:0,393216,0 -(1,21393:6630773,32789474:25952256,710777,196608 -g1,21393:6630773,32789474 -g1,21393:6630773,32789474 -g1,21393:6434165,32789474 -(1,21393:6434165,32789474:0,710777,196608 -r1,21407:32779637,32789474:26345472,907385,196608 -k1,21393:6434165,32789474:-26345472 -) -(1,21393:6434165,32789474:26345472,710777,196608 -[1,21393:6630773,32789474:25952256,514169,0 -(1,21391:6630773,32683228:25952256,407923,106246 -(1,21390:6630773,32683228:0,0,0 -g1,21390:6630773,32683228 -g1,21390:6630773,32683228 -g1,21390:6303093,32683228 -(1,21390:6303093,32683228:0,0,0 -) -g1,21390:6630773,32683228 -) -g1,21391:7626635,32683228 -g1,21391:8290543,32683228 -h1,21391:8954451,32683228:0,0,0 -k1,21391:32583029,32683228:23628578 -g1,21391:32583029,32683228 -) -] -) -g1,21393:32583029,32789474 -g1,21393:6630773,32789474 -g1,21393:6630773,32789474 -g1,21393:32583029,32789474 -g1,21393:32583029,32789474 -) -h1,21393:6630773,32986082:0,0,0 -(1,21396:6630773,42686413:25952256,9634795,0 -k1,21396:6760463,42686413:129690 -h1,21395:6760463,42686413:0,0,0 -(1,21395:6760463,42686413:25692876,9634795,0 -(1,21395:6760463,42686413:25692851,9634819,0 -(1,21395:6760463,42686413:25692851,9634819,0 -(1,21395:6760463,42686413:0,9634819,0 -(1,21395:6760463,42686413:0,14208860,0 -(1,21395:6760463,42686413:37890292,14208860,0 -) -k1,21395:6760463,42686413:-37890292 -) -) -g1,21395:32453314,42686413 -) -) -) -g1,21396:32453339,42686413 -k1,21396:32583029,42686413:129690 -) -v1,21403:6630773,43551493:0,393216,0 -(1,21404:6630773,45669977:25952256,2511700,0 -g1,21404:6630773,45669977 -g1,21404:6237557,45669977 -r1,21407:6368629,45669977:131072,2511700,0 -g1,21404:6567858,45669977 -g1,21404:6764466,45669977 -[1,21404:6764466,45669977:25818563,2511700,0 -(1,21404:6764466,43823970:25818563,665693,196608 -(1,21403:6764466,43823970:0,665693,196608 -r1,21407:7868133,43823970:1103667,862301,196608 -k1,21403:6764466,43823970:-1103667 -) -(1,21403:6764466,43823970:1103667,665693,196608 -) -k1,21403:8090222,43823970:222089 -k1,21403:9816440,43823970:327680 -k1,21403:12920802,43823970:222089 -k1,21403:14161976,43823970:222089 -k1,21403:17259128,43823970:222088 -k1,21403:18758514,43823970:222089 -k1,21403:20548224,43823970:222089 -(1,21403:20548224,43823970:0,452978,115847 -r1,21407:23016761,43823970:2468537,568825,115847 -k1,21403:20548224,43823970:-2468537 -) -(1,21403:20548224,43823970:2468537,452978,115847 -k1,21403:20548224,43823970:3277 -h1,21403:23013484,43823970:0,411205,112570 -) -k1,21403:23238850,43823970:222089 -k1,21403:24112367,43823970:222089 -(1,21403:24112367,43823970:0,435480,115847 -r1,21407:24822345,43823970:709978,551327,115847 -k1,21403:24112367,43823970:-709978 +k1,21342:13183781,15233315:-18945146 +) +) +g1,21342:26029917,15233315 +) +) +) +g1,21343:26030021,15233315 +k1,21343:32583029,15233315:6553008 +) +(1,21350:6630773,16098395:25952256,513147,126483 +h1,21349:6630773,16098395:983040,0,0 +k1,21349:8991435,16098395:180935 +(1,21349:8991435,16098395:0,452978,115847 +r1,21405:11108260,16098395:2116825,568825,115847 +k1,21349:8991435,16098395:-2116825 +) +(1,21349:8991435,16098395:2116825,452978,115847 +k1,21349:8991435,16098395:3277 +h1,21349:11104983,16098395:0,411205,112570 +) +k1,21349:11289196,16098395:180936 +k1,21349:14750863,16098395:180935 +k1,21349:15591090,16098395:180935 +k1,21349:16791110,16098395:180935 +k1,21349:18874556,16098395:180936 +k1,21349:20728625,16098395:180935 +k1,21349:21265420,16098395:180935 +k1,21349:24208698,16098395:180935 +k1,21349:25624988,16098395:180936 +k1,21349:27248370,16098395:180935 +(1,21349:27248370,16098395:0,452978,115847 +r1,21405:32530601,16098395:5282231,568825,115847 +k1,21349:27248370,16098395:-5282231 +) +(1,21349:27248370,16098395:5282231,452978,115847 +k1,21349:27248370,16098395:3277 +h1,21349:32527324,16098395:0,411205,112570 +) +k1,21349:32583029,16098395:0 +) +(1,21350:6630773,16963475:25952256,505283,134348 +k1,21349:7339772,16963475:239106 +k1,21349:9106521,16963475:239105 +k1,21349:9701487,16963475:239106 +k1,21349:12795340,16963475:239105 +k1,21349:13717331,16963475:239106 +k1,21349:16564769,16963475:239105 +k1,21349:19093048,16963475:239106 +k1,21349:20351238,16963475:239105 +k1,21349:23114791,16963475:239106 +k1,21349:24874987,16963475:239105 +k1,21349:26310780,16963475:239106 +k1,21349:28472056,16963475:239105 +k1,21349:31235609,16963475:239106 +k1,21349:32583029,16963475:0 +) +(1,21350:6630773,17828555:25952256,505283,134348 +k1,21349:7397796,17828555:235526 +k1,21349:9328084,17828555:235527 +k1,21349:10325138,17828555:235526 +k1,21349:11579749,17828555:235526 +k1,21349:13387485,17828555:235527 +k1,21349:15611373,17828555:235526 +k1,21349:16781442,17828555:235526 +k1,21349:18872948,17828555:235526 +k1,21349:22942986,17828555:235527 +k1,21349:23861397,17828555:235526 +k1,21349:27203330,17828555:235526 +k1,21349:28893756,17828555:235527 +k1,21349:30975431,17828555:235526 +k1,21349:32583029,17828555:0 +) +(1,21350:6630773,18693635:25952256,513147,134348 +k1,21349:7865166,18693635:242833 +k1,21349:10108812,18693635:242832 +k1,21349:11076473,18693635:242833 +k1,21349:12603811,18693635:242832 +k1,21349:16918396,18693635:242833 +k1,21349:18152789,18693635:242833 +k1,21349:20697901,18693635:242832 +k1,21349:21750104,18693635:242833 +k1,21349:23065105,18693635:242832 +k1,21349:23967230,18693635:242833 +k1,21349:25229148,18693635:242833 +k1,21349:27044189,18693635:242832 +k1,21349:30006766,18693635:242833 +k1,21349:31452839,18693635:242832 +k1,21349:32227169,18693635:242833 +k1,21349:32583029,18693635:0 +) +(1,21350:6630773,19558715:25952256,513147,134348 +k1,21349:7961052,19558715:229274 +k1,21349:9425680,19558715:229274 +k1,21349:10322110,19558715:229274 +(1,21349:10322110,19558715:0,452978,115847 +r1,21405:12438935,19558715:2116825,568825,115847 +k1,21349:10322110,19558715:-2116825 +) +(1,21349:10322110,19558715:2116825,452978,115847 +k1,21349:10322110,19558715:3277 +h1,21349:12435658,19558715:0,411205,112570 +) +k1,21349:12841879,19558715:229274 +k1,21349:14305196,19558715:229274 +k1,21349:16142068,19558715:229274 +k1,21349:17562788,19558715:229275 +k1,21349:20607489,19558715:229274 +k1,21349:24627365,19558715:229274 +k1,21349:25960921,19558715:229274 +k1,21349:27905928,19558715:229274 +k1,21349:28593299,19558715:229274 +k1,21349:31931601,19558715:229274 +k1,21349:32583029,19558715:0 +) +(1,21350:6630773,20423795:25952256,513147,134348 +g1,21349:9154564,20423795 +g1,21349:10372878,20423795 +g1,21349:13096554,20423795 +g1,21349:14643203,20423795 +g1,21349:16492629,20423795 +g1,21349:18134305,20423795 +g1,21349:19352619,20423795 +g1,21349:21817428,20423795 +g1,21349:22675949,20423795 +g1,21349:23716005,20423795 +g1,21349:24724604,20423795 +g1,21349:26375455,20423795 +k1,21350:32583029,20423795:3900707 +g1,21350:32583029,20423795 +) +(1,21352:6630773,21288875:25952256,513147,134348 +h1,21351:6630773,21288875:983040,0,0 +k1,21351:8391257,21288875:149609 +k1,21351:9559952,21288875:149610 +k1,21351:12370978,21288875:149609 +k1,21351:14562689,21288875:149609 +k1,21351:15731383,21288875:149609 +k1,21351:17773017,21288875:149610 +k1,21351:19412259,21288875:149609 +k1,21351:20221160,21288875:149609 +k1,21351:21389855,21288875:149610 +k1,21351:24063911,21288875:149609 +k1,21351:25560940,21288875:149609 +k1,21351:26242046,21288875:149609 +k1,21351:29484300,21288875:149610 +k1,21351:30395437,21288875:149609 +k1,21351:32583029,21288875:0 +) +(1,21352:6630773,22153955:25952256,513147,134348 +g1,21351:8199049,22153955 +g1,21351:10016362,22153955 +g1,21351:10874883,22153955 +g1,21351:13682445,22153955 +g1,21351:15073119,22153955 +g1,21351:16291433,22153955 +g1,21351:19735349,22153955 +g1,21351:20547340,22153955 +g1,21351:21765654,22153955 +g1,21351:24288134,22153955 +g1,21351:25421906,22153955 +g1,21351:26272563,22153955 +k1,21352:32583029,22153955:4837872 +g1,21352:32583029,22153955 +) +v1,21356:6630773,22838810:0,393216,0 +(1,21363:6630773,25227452:25952256,2781858,196608 +g1,21363:6630773,25227452 +g1,21363:6630773,25227452 +g1,21363:6434165,25227452 +(1,21363:6434165,25227452:0,2781858,196608 +r1,21405:32779637,25227452:26345472,2978466,196608 +k1,21363:6434165,25227452:-26345472 +) +(1,21363:6434165,25227452:26345472,2781858,196608 +[1,21363:6630773,25227452:25952256,2585250,0 +(1,21358:6630773,23066641:25952256,424439,106246 +(1,21357:6630773,23066641:0,0,0 +g1,21357:6630773,23066641 +g1,21357:6630773,23066641 +g1,21357:6303093,23066641 +(1,21357:6303093,23066641:0,0,0 +) +g1,21357:6630773,23066641 +) +g1,21358:9286405,23066641 +k1,21358:9286405,23066641:0 +h1,21358:9950313,23066641:0,0,0 +k1,21358:32583029,23066641:22632716 +g1,21358:32583029,23066641 +) +(1,21359:6630773,23751496:25952256,431045,112852 +h1,21359:6630773,23751496:0,0,0 +g1,21359:6962727,23751496 +g1,21359:7294681,23751496 +g1,21359:11278129,23751496 +g1,21359:11942037,23751496 +k1,21359:11942037,23751496:0 +h1,21359:15593530,23751496:0,0,0 +k1,21359:32583030,23751496:16989500 +g1,21359:32583030,23751496 +) +(1,21360:6630773,24436351:25952256,431045,112852 +h1,21360:6630773,24436351:0,0,0 +g1,21360:6962727,24436351 +g1,21360:7294681,24436351 +g1,21360:7626635,24436351 +g1,21360:7958589,24436351 +g1,21360:8290543,24436351 +g1,21360:8622497,24436351 +g1,21360:8954451,24436351 +g1,21360:9286405,24436351 +g1,21360:9618359,24436351 +g1,21360:12273991,24436351 +g1,21360:12937899,24436351 +g1,21360:15925485,24436351 +g1,21360:16589393,24436351 +g1,21360:18913071,24436351 +g1,21360:21236749,24436351 +g1,21360:21900657,24436351 +g1,21360:24224335,24436351 +g1,21360:24888243,24436351 +g1,21360:25552151,24436351 +g1,21360:26879967,24436351 +h1,21360:27211921,24436351:0,0,0 +k1,21360:32583029,24436351:5371108 +g1,21360:32583029,24436351 +) +(1,21361:6630773,25121206:25952256,424439,106246 +h1,21361:6630773,25121206:0,0,0 +g1,21361:6962727,25121206 +g1,21361:7294681,25121206 +g1,21361:13601806,25121206 +g1,21361:14265714,25121206 +g1,21361:15925484,25121206 +g1,21361:18913069,25121206 +g1,21361:19576977,25121206 +h1,21361:23228470,25121206:0,0,0 +k1,21361:32583029,25121206:9354559 +g1,21361:32583029,25121206 +) +] +) +g1,21363:32583029,25227452 +g1,21363:6630773,25227452 +g1,21363:6630773,25227452 +g1,21363:32583029,25227452 +g1,21363:32583029,25227452 +) +h1,21363:6630773,25424060:0,0,0 +v1,21367:6630773,26108915:0,393216,0 +(1,21372:6630773,27111331:25952256,1395632,196608 +g1,21372:6630773,27111331 +g1,21372:6630773,27111331 +g1,21372:6434165,27111331 +(1,21372:6434165,27111331:0,1395632,196608 +r1,21405:32779637,27111331:26345472,1592240,196608 +k1,21372:6434165,27111331:-26345472 +) +(1,21372:6434165,27111331:26345472,1395632,196608 +[1,21372:6630773,27111331:25952256,1199024,0 +(1,21369:6630773,26320230:25952256,407923,106246 +(1,21368:6630773,26320230:0,0,0 +g1,21368:6630773,26320230 +g1,21368:6630773,26320230 +g1,21368:6303093,26320230 +(1,21368:6303093,26320230:0,0,0 +) +g1,21368:6630773,26320230 +) +g1,21369:7626635,26320230 +k1,21369:7626635,26320230:0 +h1,21369:8290543,26320230:0,0,0 +k1,21369:32583029,26320230:24292486 +g1,21369:32583029,26320230 +) +(1,21370:6630773,27005085:25952256,424439,106246 +h1,21370:6630773,27005085:0,0,0 +g1,21370:6962727,27005085 +g1,21370:7294681,27005085 +g1,21370:9950313,27005085 +g1,21370:10614221,27005085 +g1,21370:19245024,27005085 +g1,21370:19908932,27005085 +g1,21370:24556287,27005085 +g1,21370:25220195,27005085 +g1,21370:26879965,27005085 +h1,21370:29203643,27005085:0,0,0 +k1,21370:32583029,27005085:3379386 +g1,21370:32583029,27005085 +) +] +) +g1,21372:32583029,27111331 +g1,21372:6630773,27111331 +g1,21372:6630773,27111331 +g1,21372:32583029,27111331 +g1,21372:32583029,27111331 +) +h1,21372:6630773,27307939:0,0,0 +(1,21376:6630773,28173019:25952256,505283,134348 +h1,21375:6630773,28173019:983040,0,0 +k1,21375:9614032,28173019:208465 +k1,21375:13313600,28173019:208465 +k1,21375:14623069,28173019:208464 +k1,21375:15850619,28173019:208465 +k1,21375:19297873,28173019:208465 +k1,21375:20790844,28173019:208465 +k1,21375:22018393,28173019:208464 +k1,21375:25471545,28173019:208465 +k1,21375:26211507,28173019:208465 +k1,21375:30629350,28173019:208465 +k1,21375:31325393,28173019:208455 +k1,21376:32583029,28173019:0 +) +(1,21376:6630773,29038099:25952256,513147,134348 +k1,21375:7847730,29038099:166415 +k1,21375:9784927,29038099:166414 +k1,21375:10637504,29038099:166415 +k1,21375:12659242,29038099:166414 +k1,21375:13357154,29038099:166415 +k1,21375:16301639,29038099:166414 +k1,21375:18203447,29038099:166415 +k1,21375:22034635,29038099:166415 +k1,21375:23440335,29038099:166414 +k1,21375:26787868,29038099:166415 +k1,21375:27605710,29038099:166414 +k1,21375:28791210,29038099:166415 +k1,21375:30738237,29038099:166414 +k1,21375:31563944,29038099:166415 +k1,21376:32583029,29038099:0 +) +(1,21376:6630773,29903179:25952256,505283,126483 +(1,21375:6630773,29903179:0,452978,115847 +r1,21405:8747598,29903179:2116825,568825,115847 +k1,21375:6630773,29903179:-2116825 +) +(1,21375:6630773,29903179:2116825,452978,115847 +k1,21375:6630773,29903179:3277 +h1,21375:8744321,29903179:0,411205,112570 +) +g1,21375:8946827,29903179 +g1,21375:9758818,29903179 +g1,21375:10977132,29903179 +g1,21375:12248530,29903179 +g1,21375:13639204,29903179 +g1,21375:15409986,29903179 +g1,21375:16221977,29903179 +g1,21375:17440291,29903179 +k1,21376:32583029,29903179:12767058 +g1,21376:32583029,29903179 +) +v1,21378:6630773,30588034:0,393216,0 +(1,21383:6630773,31590450:25952256,1395632,196608 +g1,21383:6630773,31590450 +g1,21383:6630773,31590450 +g1,21383:6434165,31590450 +(1,21383:6434165,31590450:0,1395632,196608 +r1,21405:32779637,31590450:26345472,1592240,196608 +k1,21383:6434165,31590450:-26345472 +) +(1,21383:6434165,31590450:26345472,1395632,196608 +[1,21383:6630773,31590450:25952256,1199024,0 +(1,21380:6630773,30799349:25952256,407923,106246 +(1,21379:6630773,30799349:0,0,0 +g1,21379:6630773,30799349 +g1,21379:6630773,30799349 +g1,21379:6303093,30799349 +(1,21379:6303093,30799349:0,0,0 +) +g1,21379:6630773,30799349 +) +g1,21380:7626635,30799349 +k1,21380:7626635,30799349:0 +h1,21380:8290543,30799349:0,0,0 +k1,21380:32583029,30799349:24292486 +g1,21380:32583029,30799349 +) +(1,21381:6630773,31484204:25952256,424439,106246 +h1,21381:6630773,31484204:0,0,0 +g1,21381:6962727,31484204 +g1,21381:7294681,31484204 +g1,21381:9950313,31484204 +g1,21381:10614221,31484204 +g1,21381:19245024,31484204 +g1,21381:19908932,31484204 +g1,21381:24888241,31484204 +g1,21381:25552149,31484204 +g1,21381:27211919,31484204 +h1,21381:29203643,31484204:0,0,0 +k1,21381:32583029,31484204:3379386 +g1,21381:32583029,31484204 +) +] +) +g1,21383:32583029,31590450 +g1,21383:6630773,31590450 +g1,21383:6630773,31590450 +g1,21383:32583029,31590450 +g1,21383:32583029,31590450 +) +h1,21383:6630773,31787058:0,0,0 +v1,21387:6630773,32471913:0,393216,0 +(1,21391:6630773,32789474:25952256,710777,196608 +g1,21391:6630773,32789474 +g1,21391:6630773,32789474 +g1,21391:6434165,32789474 +(1,21391:6434165,32789474:0,710777,196608 +r1,21405:32779637,32789474:26345472,907385,196608 +k1,21391:6434165,32789474:-26345472 +) +(1,21391:6434165,32789474:26345472,710777,196608 +[1,21391:6630773,32789474:25952256,514169,0 +(1,21389:6630773,32683228:25952256,407923,106246 +(1,21388:6630773,32683228:0,0,0 +g1,21388:6630773,32683228 +g1,21388:6630773,32683228 +g1,21388:6303093,32683228 +(1,21388:6303093,32683228:0,0,0 +) +g1,21388:6630773,32683228 +) +g1,21389:7626635,32683228 +g1,21389:8290543,32683228 +h1,21389:8954451,32683228:0,0,0 +k1,21389:32583029,32683228:23628578 +g1,21389:32583029,32683228 +) +] +) +g1,21391:32583029,32789474 +g1,21391:6630773,32789474 +g1,21391:6630773,32789474 +g1,21391:32583029,32789474 +g1,21391:32583029,32789474 +) +h1,21391:6630773,32986082:0,0,0 +(1,21394:6630773,42686413:25952256,9634795,0 +k1,21394:6760463,42686413:129690 +h1,21393:6760463,42686413:0,0,0 +(1,21393:6760463,42686413:25692876,9634795,0 +(1,21393:6760463,42686413:25692851,9634819,0 +(1,21393:6760463,42686413:25692851,9634819,0 +(1,21393:6760463,42686413:0,9634819,0 +(1,21393:6760463,42686413:0,14208860,0 +(1,21393:6760463,42686413:37890292,14208860,0 +) +k1,21393:6760463,42686413:-37890292 +) +) +g1,21393:32453314,42686413 +) +) +) +g1,21394:32453339,42686413 +k1,21394:32583029,42686413:129690 +) +v1,21401:6630773,43551493:0,393216,0 +(1,21402:6630773,45669977:25952256,2511700,0 +g1,21402:6630773,45669977 +g1,21402:6237557,45669977 +r1,21405:6368629,45669977:131072,2511700,0 +g1,21402:6567858,45669977 +g1,21402:6764466,45669977 +[1,21402:6764466,45669977:25818563,2511700,0 +(1,21402:6764466,43823970:25818563,665693,196608 +(1,21401:6764466,43823970:0,665693,196608 +r1,21405:7868133,43823970:1103667,862301,196608 +k1,21401:6764466,43823970:-1103667 +) +(1,21401:6764466,43823970:1103667,665693,196608 +) +k1,21401:8090222,43823970:222089 +k1,21401:9816440,43823970:327680 +k1,21401:12920802,43823970:222089 +k1,21401:14161976,43823970:222089 +k1,21401:17259128,43823970:222088 +k1,21401:18758514,43823970:222089 +k1,21401:20548224,43823970:222089 +(1,21401:20548224,43823970:0,452978,115847 +r1,21405:23016761,43823970:2468537,568825,115847 +k1,21401:20548224,43823970:-2468537 +) +(1,21401:20548224,43823970:2468537,452978,115847 +k1,21401:20548224,43823970:3277 +h1,21401:23013484,43823970:0,411205,112570 +) +k1,21401:23238850,43823970:222089 +k1,21401:24112367,43823970:222089 +(1,21401:24112367,43823970:0,435480,115847 +r1,21405:24822345,43823970:709978,551327,115847 +k1,21401:24112367,43823970:-709978 ) -(1,21403:24112367,43823970:709978,435480,115847 -k1,21403:24112367,43823970:3277 -h1,21403:24819068,43823970:0,411205,112570 -) -k1,21403:25044434,43823970:222089 -k1,21403:26457967,43823970:222088 -(1,21403:26457967,43823970:0,435480,115847 -r1,21407:27167945,43823970:709978,551327,115847 -k1,21403:26457967,43823970:-709978 -) -(1,21403:26457967,43823970:709978,435480,115847 -k1,21403:26457967,43823970:3277 -h1,21403:27164668,43823970:0,411205,112570 +(1,21401:24112367,43823970:709978,435480,115847 +k1,21401:24112367,43823970:3277 +h1,21401:24819068,43823970:0,411205,112570 +) +k1,21401:25044434,43823970:222089 +k1,21401:26457967,43823970:222088 +(1,21401:26457967,43823970:0,435480,115847 +r1,21405:27167945,43823970:709978,551327,115847 +k1,21401:26457967,43823970:-709978 +) +(1,21401:26457967,43823970:709978,435480,115847 +k1,21401:26457967,43823970:3277 +h1,21401:27164668,43823970:0,411205,112570 ) -k1,21403:27390034,43823970:222089 -k1,21403:30675276,43823970:222089 -k1,21403:32583029,43823970:0 +k1,21401:27390034,43823970:222089 +k1,21401:30675276,43823970:222089 +k1,21401:32583029,43823970:0 ) -(1,21404:6764466,44689050:25818563,513147,134348 -k1,21403:8557402,44689050:189270 -k1,21403:9847676,44689050:189269 -k1,21403:11546896,44689050:189270 -k1,21403:12755250,44689050:189269 -k1,21403:14715303,44689050:189270 -k1,21403:15563864,44689050:189269 -k1,21403:17488527,44689050:189270 -(1,21403:17488527,44689050:0,452978,115847 -r1,21407:21363911,44689050:3875384,568825,115847 -k1,21403:17488527,44689050:-3875384 +(1,21402:6764466,44689050:25818563,513147,134348 +k1,21401:8557402,44689050:189270 +k1,21401:9847676,44689050:189269 +k1,21401:11546896,44689050:189270 +k1,21401:12755250,44689050:189269 +k1,21401:14715303,44689050:189270 +k1,21401:15563864,44689050:189269 +k1,21401:17488527,44689050:189270 +(1,21401:17488527,44689050:0,452978,115847 +r1,21405:21363911,44689050:3875384,568825,115847 +k1,21401:17488527,44689050:-3875384 ) -(1,21403:17488527,44689050:3875384,452978,115847 -k1,21403:17488527,44689050:3277 -h1,21403:21360634,44689050:0,411205,112570 +(1,21401:17488527,44689050:3875384,452978,115847 +k1,21401:17488527,44689050:3277 +h1,21401:21360634,44689050:0,411205,112570 ) -k1,21403:21880206,44689050:189270 -k1,21403:23153441,44689050:189269 -k1,21403:26105054,44689050:189270 -k1,21403:28304968,44689050:189269 -k1,21403:29180400,44689050:189270 -k1,21403:32583029,44689050:0 +k1,21401:21880206,44689050:189270 +k1,21401:23153441,44689050:189269 +k1,21401:26105054,44689050:189270 +k1,21401:28304968,44689050:189269 +k1,21401:29180400,44689050:189270 +k1,21401:32583029,44689050:0 ) -(1,21404:6764466,45554130:25818563,513147,115847 -g1,21403:7911346,45554130 -(1,21403:7911346,45554130:0,452978,115847 -r1,21407:8973035,45554130:1061689,568825,115847 -k1,21403:7911346,45554130:-1061689 +(1,21402:6764466,45554130:25818563,513147,115847 +g1,21401:7911346,45554130 +(1,21401:7911346,45554130:0,452978,115847 +r1,21405:8973035,45554130:1061689,568825,115847 +k1,21401:7911346,45554130:-1061689 ) -(1,21403:7911346,45554130:1061689,452978,115847 -k1,21403:7911346,45554130:3277 -h1,21403:8969758,45554130:0,411205,112570 +(1,21401:7911346,45554130:1061689,452978,115847 +k1,21401:7911346,45554130:3277 +h1,21401:8969758,45554130:0,411205,112570 ) -g1,21403:9172264,45554130 -g1,21403:10562938,45554130 -(1,21403:10562938,45554130:0,452978,115847 -r1,21407:11976339,45554130:1413401,568825,115847 -k1,21403:10562938,45554130:-1413401 +g1,21401:9172264,45554130 +g1,21401:10562938,45554130 +(1,21401:10562938,45554130:0,452978,115847 +r1,21405:11976339,45554130:1413401,568825,115847 +k1,21401:10562938,45554130:-1413401 ) -(1,21403:10562938,45554130:1413401,452978,115847 -k1,21403:10562938,45554130:3277 -h1,21403:11973062,45554130:0,411205,112570 +(1,21401:10562938,45554130:1413401,452978,115847 +k1,21401:10562938,45554130:3277 +h1,21401:11973062,45554130:0,411205,112570 ) -k1,21404:32583029,45554130:20554262 -g1,21404:32583029,45554130 +k1,21402:32583029,45554130:20554262 +g1,21402:32583029,45554130 ) -] -g1,21404:32583029,45669977 +] +g1,21402:32583029,45669977 ) -h1,21404:6630773,45669977:0,0,0 +h1,21402:6630773,45669977:0,0,0 ] -(1,21407:32583029,45706769:0,0,0 -g1,21407:32583029,45706769 +(1,21405:32583029,45706769:0,0,0 +g1,21405:32583029,45706769 ) ) ] -(1,21407:6630773,47279633:25952256,0,0 -h1,21407:6630773,47279633:25952256,0,0 +(1,21405:6630773,47279633:25952256,0,0 +h1,21405:6630773,47279633:25952256,0,0 ) ] -(1,21407:4262630,4025873:0,0,0 -[1,21407:-473656,4025873:0,0,0 -(1,21407:-473656,-710413:0,0,0 -(1,21407:-473656,-710413:0,0,0 -g1,21407:-473656,-710413 +(1,21405:4262630,4025873:0,0,0 +[1,21405:-473656,4025873:0,0,0 +(1,21405:-473656,-710413:0,0,0 +(1,21405:-473656,-710413:0,0,0 +g1,21405:-473656,-710413 ) -g1,21407:-473656,-710413 +g1,21405:-473656,-710413 ) ] ) ] !20256 -}361 -Input:3973:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3974:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3975:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3976:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}362 Input:3977:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3978:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3979:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -371093,1589 +371297,1589 @@ Input:3980:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:3981:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3982:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3983:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3984:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3985:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3986:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3987:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{362 -[1,21482:4262630,47279633:28320399,43253760,0 -(1,21482:4262630,4025873:0,0,0 -[1,21482:-473656,4025873:0,0,0 -(1,21482:-473656,-710413:0,0,0 -(1,21482:-473656,-644877:0,0,0 -k1,21482:-473656,-644877:-65536 +{363 +[1,21480:4262630,47279633:28320399,43253760,0 +(1,21480:4262630,4025873:0,0,0 +[1,21480:-473656,4025873:0,0,0 +(1,21480:-473656,-710413:0,0,0 +(1,21480:-473656,-644877:0,0,0 +k1,21480:-473656,-644877:-65536 ) -(1,21482:-473656,4736287:0,0,0 -k1,21482:-473656,4736287:5209943 +(1,21480:-473656,4736287:0,0,0 +k1,21480:-473656,4736287:5209943 ) -g1,21482:-473656,-710413 +g1,21480:-473656,-710413 ) ] ) -[1,21482:6630773,47279633:25952256,43253760,0 -[1,21482:6630773,4812305:25952256,786432,0 -(1,21482:6630773,4812305:25952256,505283,11795 -(1,21482:6630773,4812305:25952256,505283,11795 -g1,21482:3078558,4812305 -[1,21482:3078558,4812305:0,0,0 -(1,21482:3078558,2439708:0,1703936,0 -k1,21482:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21482:2537886,2439708:1179648,16384,0 +[1,21480:6630773,47279633:25952256,43253760,0 +[1,21480:6630773,4812305:25952256,786432,0 +(1,21480:6630773,4812305:25952256,505283,11795 +(1,21480:6630773,4812305:25952256,505283,11795 +g1,21480:3078558,4812305 +[1,21480:3078558,4812305:0,0,0 +(1,21480:3078558,2439708:0,1703936,0 +k1,21480:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21480:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21482:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21480:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21482:3078558,4812305:0,0,0 -(1,21482:3078558,2439708:0,1703936,0 -g1,21482:29030814,2439708 -g1,21482:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21482:36151628,1915420:16384,1179648,0 +[1,21480:3078558,4812305:0,0,0 +(1,21480:3078558,2439708:0,1703936,0 +g1,21480:29030814,2439708 +g1,21480:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21480:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21482:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21480:37855564,2439708:1179648,16384,0 ) ) -k1,21482:3078556,2439708:-34777008 +k1,21480:3078556,2439708:-34777008 ) ] -[1,21482:3078558,4812305:0,0,0 -(1,21482:3078558,49800853:0,16384,2228224 -k1,21482:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21482:2537886,49800853:1179648,16384,0 +[1,21480:3078558,4812305:0,0,0 +(1,21480:3078558,49800853:0,16384,2228224 +k1,21480:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21480:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21482:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21480:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21482:3078558,4812305:0,0,0 -(1,21482:3078558,49800853:0,16384,2228224 -g1,21482:29030814,49800853 -g1,21482:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21482:36151628,51504789:16384,1179648,0 +[1,21480:3078558,4812305:0,0,0 +(1,21480:3078558,49800853:0,16384,2228224 +g1,21480:29030814,49800853 +g1,21480:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21480:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21482:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21480:37855564,49800853:1179648,16384,0 ) ) -k1,21482:3078556,49800853:-34777008 +k1,21480:3078556,49800853:-34777008 ) ] -g1,21482:6630773,4812305 -g1,21482:6630773,4812305 -g1,21482:8724648,4812305 -k1,21482:31387652,4812305:22663004 -) -) -] -[1,21482:6630773,45706769:25952256,40108032,0 -(1,21482:6630773,45706769:25952256,40108032,0 -(1,21482:6630773,45706769:0,0,0 -g1,21482:6630773,45706769 -) -[1,21482:6630773,45706769:25952256,40108032,0 -(1,21407:6630773,6254097:25952256,513147,134348 -h1,21406:6630773,6254097:983040,0,0 -k1,21406:9086188,6254097:275688 -k1,21406:12220556,6254097:275688 -k1,21406:13155537,6254097:275689 -k1,21406:13787085,6254097:275688 -k1,21406:15634982,6254097:275688 -k1,21406:17014952,6254097:275688 -k1,21406:18038406,6254097:275688 -k1,21406:21041047,6254097:275688 -k1,21406:23052129,6254097:275689 -k1,21406:23683677,6254097:275688 -k1,21406:28796577,6254097:275688 -k1,21406:30304342,6254097:275688 -k1,21406:32583029,6254097:0 -) -(1,21407:6630773,7119177:25952256,505283,134348 -h1,21406:8571949,7119177:0,0,0 -k1,21406:8802847,7119177:230898 -k1,21406:9843116,7119177:230899 -k1,21406:11572167,7119177:230898 -h1,21406:12767544,7119177:0,0,0 -k1,21406:13379207,7119177:230899 -k1,21406:15537519,7119177:230898 -(1,21406:15537519,7119177:0,452978,115847 -r1,21482:21523174,7119177:5985655,568825,115847 -k1,21406:15537519,7119177:-5985655 -) -(1,21406:15537519,7119177:5985655,452978,115847 -k1,21406:15537519,7119177:3277 -h1,21406:21519897,7119177:0,411205,112570 -) -k1,21406:21754072,7119177:230898 -k1,21406:23176416,7119177:230899 -(1,21406:23176416,7119177:0,452978,115847 -r1,21482:29162071,7119177:5985655,568825,115847 -k1,21406:23176416,7119177:-5985655 -) -(1,21406:23176416,7119177:5985655,452978,115847 -k1,21406:23176416,7119177:3277 -h1,21406:29158794,7119177:0,411205,112570 -) -k1,21406:29392969,7119177:230898 -k1,21406:30716353,7119177:230899 -k1,21406:31708779,7119177:230898 -k1,21407:32583029,7119177:0 -) -(1,21407:6630773,7984257:25952256,513147,126483 -k1,21406:8418183,7984257:289912 -k1,21406:9727179,7984257:289911 -k1,21406:13126119,7984257:289912 -k1,21406:18426914,7984257:289912 -k1,21406:21651527,7984257:289911 -k1,21406:26578111,7984257:289912 -(1,21406:26578111,7984257:0,452978,115847 -r1,21482:28694936,7984257:2116825,568825,115847 -k1,21406:26578111,7984257:-2116825 -) -(1,21406:26578111,7984257:2116825,452978,115847 -k1,21406:26578111,7984257:3277 -h1,21406:28691659,7984257:0,411205,112570 -) -k1,21406:28984847,7984257:289911 -k1,21406:30466204,7984257:289912 -(1,21406:30466204,7984257:0,452978,115847 -r1,21482:32583029,7984257:2116825,568825,115847 -k1,21406:30466204,7984257:-2116825 -) -(1,21406:30466204,7984257:2116825,452978,115847 -k1,21406:30466204,7984257:3277 -h1,21406:32579752,7984257:0,411205,112570 -) -k1,21406:32583029,7984257:0 -) -(1,21407:6630773,8849337:25952256,513147,134348 -k1,21406:7976040,8849337:240985 -k1,21406:8964791,8849337:240985 -k1,21406:10719002,8849337:240985 -k1,21406:11611415,8849337:240985 -k1,21406:14158612,8849337:240985 -k1,21406:15418682,8849337:240985 -k1,21406:17231877,8849337:240986 -k1,21406:20331542,8849337:240985 -k1,21406:21334055,8849337:240985 -k1,21406:24002494,8849337:240985 -k1,21406:25262564,8849337:240985 -k1,21406:28123678,8849337:240985 -k1,21406:30375308,8849337:240985 -k1,21406:31563944,8849337:240985 -k1,21406:32583029,8849337:0 -) -(1,21407:6630773,9714417:25952256,505283,134348 -g1,21406:8644694,9714417 -g1,21406:9459961,9714417 -g1,21406:13072960,9714417 -k1,21407:32583030,9714417:17718316 -g1,21407:32583030,9714417 -) -v1,21409:6630773,10579497:0,393216,0 -(1,21418:6630773,13797674:25952256,3611393,0 -g1,21418:6630773,13797674 -g1,21418:6237557,13797674 -r1,21482:6368629,13797674:131072,3611393,0 -g1,21418:6567858,13797674 -g1,21418:6764466,13797674 -[1,21418:6764466,13797674:25818563,3611393,0 -(1,21410:6764466,10851974:25818563,665693,196608 -(1,21409:6764466,10851974:0,665693,196608 -r1,21482:7868133,10851974:1103667,862301,196608 -k1,21409:6764466,10851974:-1103667 -) -(1,21409:6764466,10851974:1103667,665693,196608 -) -k1,21409:8159297,10851974:291164 -k1,21409:9885515,10851974:327680 -k1,21409:11545726,10851974:291164 -k1,21409:13385507,10851974:291165 -k1,21409:14695756,10851974:291164 -k1,21409:16829792,10851974:291164 -k1,21409:17652453,10851974:291164 -k1,21409:19641656,10851974:291165 -k1,21409:20951905,10851974:291164 -k1,21409:22549202,10851974:291164 -k1,21409:24324756,10851974:291164 -k1,21409:25147417,10851974:291164 -k1,21409:27297838,10851974:291165 -k1,21409:29031449,10851974:291164 -k1,21409:30341698,10851974:291164 -k1,21409:32583029,10851974:0 -) -(1,21410:6764466,11717054:25818563,505283,134348 -k1,21409:8290021,11717054:195174 -k1,21409:9028487,11717054:195173 -k1,21409:9681758,11717054:195174 -k1,21409:10896016,11717054:195173 -k1,21409:12744663,11717054:195174 -k1,21409:13625998,11717054:195173 -k1,21409:15519210,11717054:195174 -k1,21409:17896077,11717054:195173 -k1,21409:19787978,11717054:195174 -k1,21409:21636625,11717054:195174 -k1,21409:23842443,11717054:195173 -k1,21409:24723779,11717054:195174 -k1,21409:26733644,11717054:195173 -k1,21409:28322769,11717054:195174 -(1,21409:28322769,11717054:0,452978,115847 -r1,21482:30439594,11717054:2116825,568825,115847 -k1,21409:28322769,11717054:-2116825 -) -(1,21409:28322769,11717054:2116825,452978,115847 -k1,21409:28322769,11717054:3277 -h1,21409:30436317,11717054:0,411205,112570 -) -k1,21409:30961792,11717054:195173 -k1,21409:31839851,11717054:195174 -k1,21409:32583029,11717054:0 -) -(1,21410:6764466,12582134:25818563,505283,134348 -g1,21409:9904951,12582134 -(1,21409:9904951,12582134:0,452978,115847 -r1,21482:16945742,12582134:7040791,568825,115847 -k1,21409:9904951,12582134:-7040791 -) -(1,21409:9904951,12582134:7040791,452978,115847 -k1,21409:9904951,12582134:3277 -h1,21409:16942465,12582134:0,411205,112570 -) -g1,21409:17144971,12582134 -g1,21409:18738151,12582134 -(1,21409:18738151,12582134:0,452978,115847 -r1,21482:24723806,12582134:5985655,568825,115847 -k1,21409:18738151,12582134:-5985655 -) -(1,21409:18738151,12582134:5985655,452978,115847 -k1,21409:18738151,12582134:3277 -h1,21409:24720529,12582134:0,411205,112570 -) -k1,21410:32583029,12582134:7564966 -g1,21410:32583029,12582134 -) -v1,21412:6764466,13266989:0,393216,0 -(1,21416:6764466,13601066:25818563,727293,196608 -g1,21416:6764466,13601066 -g1,21416:6764466,13601066 -g1,21416:6567858,13601066 -(1,21416:6567858,13601066:0,727293,196608 -r1,21482:32779637,13601066:26211779,923901,196608 -k1,21416:6567857,13601066:-26211780 -) -(1,21416:6567858,13601066:26211779,727293,196608 -[1,21416:6764466,13601066:25818563,530685,0 -(1,21414:6764466,13494820:25818563,424439,106246 -(1,21413:6764466,13494820:0,0,0 -g1,21413:6764466,13494820 -g1,21413:6764466,13494820 -g1,21413:6436786,13494820 -(1,21413:6436786,13494820:0,0,0 -) -g1,21413:6764466,13494820 -) -g1,21414:9420098,13494820 -g1,21414:10415960,13494820 -g1,21414:19046763,13494820 -g1,21414:19710671,13494820 -g1,21414:22034349,13494820 -h1,21414:23030211,13494820:0,0,0 -k1,21414:32583029,13494820:9552818 -g1,21414:32583029,13494820 -) -] -) -g1,21416:32583029,13601066 -g1,21416:6764466,13601066 -g1,21416:6764466,13601066 -g1,21416:32583029,13601066 -g1,21416:32583029,13601066 -) -h1,21416:6764466,13797674:0,0,0 -] -g1,21418:32583029,13797674 -) -h1,21418:6630773,13797674:0,0,0 -(1,21420:6630773,15449186:25952256,505283,7863 -(1,21420:6630773,15449186:0,0,0 -g1,21420:6630773,15449186 -) -g1,21420:9061503,15449186 -g1,21420:10486255,15449186 -g1,21420:12258348,15449186 -k1,21420:32583028,15449186:18403164 -g1,21420:32583028,15449186 -) -(1,21423:6630773,16707482:25952256,513147,134348 -k1,21422:10142671,16707482:276386 -(1,21422:10142671,16707482:0,452978,115847 -r1,21482:12259496,16707482:2116825,568825,115847 -k1,21422:10142671,16707482:-2116825 -) -(1,21422:10142671,16707482:2116825,452978,115847 -k1,21422:10142671,16707482:3277 -h1,21422:12256219,16707482:0,411205,112570 -) -k1,21422:12535883,16707482:276387 -k1,21422:13343766,16707482:276386 -k1,21422:15133379,16707482:276387 -k1,21422:16476036,16707482:276386 -k1,21422:18128023,16707482:276386 -k1,21422:19055838,16707482:276387 -k1,21422:20266767,16707482:276386 -k1,21422:21562239,16707482:276387 -k1,21422:24395184,16707482:276386 -k1,21422:25330862,16707482:276386 -k1,21422:27121786,16707482:276387 -k1,21422:29142740,16707482:276386 -k1,21422:30438212,16707482:276387 -k1,21422:31966991,16707482:276386 -k1,21422:32583029,16707482:0 -) -(1,21423:6630773,17572562:25952256,513147,134348 -k1,21422:8808315,17572562:275032 -k1,21422:10030999,17572562:275033 -k1,21422:11325116,17572562:275032 -(1,21422:11325116,17572562:0,414482,115847 -r1,21482:11683382,17572562:358266,530329,115847 -k1,21422:11325116,17572562:-358266 -) -(1,21422:11325116,17572562:358266,414482,115847 -k1,21422:11325116,17572562:3277 -h1,21422:11680105,17572562:0,411205,112570 -) -k1,21422:11958415,17572562:275033 -k1,21422:13424892,17572562:275032 -(1,21422:13424892,17572562:0,414482,115847 -r1,21482:13783158,17572562:358266,530329,115847 -k1,21422:13424892,17572562:-358266 -) -(1,21422:13424892,17572562:358266,414482,115847 -k1,21422:13424892,17572562:3277 -h1,21422:13779881,17572562:0,411205,112570 -) -k1,21422:14058190,17572562:275032 -k1,21422:17681457,17572562:275033 -k1,21422:19028658,17572562:275032 -k1,21422:20589506,17572562:275032 -k1,21422:21812190,17572562:275033 -k1,21422:23106307,17572562:275032 -k1,21422:24812645,17572562:275032 -k1,21422:25770563,17572562:275033 -k1,21422:28134227,17572562:275032 -k1,21422:29356911,17572562:275033 -k1,21422:31333913,17572562:275032 -k1,21423:32583029,17572562:0 -) -(1,21423:6630773,18437642:25952256,513147,115847 -k1,21422:9256753,18437642:198526 -k1,21422:11357790,18437642:198527 -k1,21422:13049882,18437642:198526 -k1,21422:13934570,18437642:198526 -k1,21422:15877010,18437642:198527 -k1,21422:17023187,18437642:198526 -k1,21422:19426344,18437642:198526 -k1,21422:22860383,18437642:198527 -(1,21422:22860383,18437642:0,452978,115847 -r1,21482:24977208,18437642:2116825,568825,115847 -k1,21422:22860383,18437642:-2116825 -) -(1,21422:22860383,18437642:2116825,452978,115847 -k1,21422:22860383,18437642:3277 -h1,21422:24973931,18437642:0,411205,112570 -) -k1,21422:25175734,18437642:198526 -k1,21422:25905758,18437642:198527 -k1,21422:27617510,18437642:198526 -k1,21422:28467464,18437642:198526 -k1,21422:29600534,18437642:198527 -k1,21422:30818145,18437642:198526 -k1,21422:32583029,18437642:0 -) -(1,21423:6630773,19302722:25952256,513147,134348 -k1,21422:8823881,19302722:175254 -k1,21422:11979712,19302722:175254 -k1,21422:13339202,19302722:175254 -k1,21422:15532310,19302722:175254 -k1,21422:16904251,19302722:175254 -k1,21422:20151833,19302722:175254 -k1,21422:22532374,19302722:175254 -k1,21422:23359056,19302722:175254 -k1,21422:24985932,19302722:175254 -k1,21422:25820478,19302722:175254 -k1,21422:27692459,19302722:175254 -k1,21422:31478747,19302722:175254 -k1,21422:32583029,19302722:0 -) -(1,21423:6630773,20167802:25952256,513147,134348 -k1,21422:7563263,20167802:184724 -k1,21422:9725864,20167802:184724 -k1,21422:10593473,20167802:184724 -k1,21422:11134057,20167802:184724 -k1,21422:14187947,20167802:184724 -k1,21422:15569358,20167802:184724 -k1,21422:18019662,20167802:184724 -k1,21422:18735883,20167802:184724 -k1,21422:19572035,20167802:184724 -k1,21422:22544661,20167802:184724 -k1,21422:24913700,20167802:184724 -k1,21422:27213271,20167802:184724 -k1,21422:29252664,20167802:184724 -k1,21422:30246758,20167802:184724 -k1,21422:31450567,20167802:184724 -k1,21423:32583029,20167802:0 -) -(1,21423:6630773,21032882:25952256,513147,126483 -k1,21422:7676306,21032882:257135 -k1,21422:9124886,21032882:257135 -k1,21422:10474506,21032882:257135 -k1,21422:11383069,21032882:257135 -k1,21422:12937162,21032882:257135 -k1,21422:16010379,21032882:257135 -k1,21422:18779509,21032882:257135 -k1,21422:19984295,21032882:257135 -k1,21422:22259284,21032882:257135 -k1,21422:25531730,21032882:257135 -k1,21422:26404903,21032882:257135 -k1,21422:27865279,21032882:257135 -k1,21422:30401101,21032882:257135 -k1,21422:31649796,21032882:257135 -k1,21422:32583029,21032882:0 -) -(1,21423:6630773,21897962:25952256,513147,134348 -k1,21422:10370304,21897962:169130 -k1,21422:12615614,21897962:169129 -k1,21422:13809727,21897962:169130 -k1,21422:16257543,21897962:169129 -h1,21422:18198719,21897962:0,0,0 -k1,21422:18367849,21897962:169130 -k1,21422:19346348,21897962:169129 -k1,21422:21013631,21897962:169130 -h1,21422:22209008,21897962:0,0,0 -k1,21422:22378138,21897962:169130 -k1,21422:23494918,21897962:169129 -k1,21422:25448593,21897962:169130 -k1,21422:27461905,21897962:169129 -k1,21422:28247073,21897962:169130 -k1,21422:29841610,21897962:169129 -k1,21422:31202185,21897962:169130 -k1,21422:32583029,21897962:0 -) -(1,21423:6630773,22763042:25952256,505283,7863 -k1,21423:32583028,22763042:23997316 -g1,21423:32583028,22763042 -) -(1,21425:6630773,23628122:25952256,513147,134348 -h1,21424:6630773,23628122:983040,0,0 -k1,21424:9530871,23628122:133823 -k1,21424:12597430,23628122:133823 -k1,21424:14912947,23628122:133823 -k1,21424:17335287,23628122:133823 -k1,21424:19313293,23628122:133823 -k1,21424:20394767,23628122:133823 -k1,21424:21547675,23628122:133823 -(1,21424:21547675,23628122:0,452978,115847 -r1,21482:23664500,23628122:2116825,568825,115847 -k1,21424:21547675,23628122:-2116825 -) -(1,21424:21547675,23628122:2116825,452978,115847 -k1,21424:21547675,23628122:3277 -h1,21424:23661223,23628122:0,411205,112570 -) -k1,21424:23798323,23628122:133823 -k1,21424:24923706,23628122:133823 -k1,21424:29374386,23628122:133823 -k1,21424:32583029,23628122:0 -) -(1,21425:6630773,24493202:25952256,505283,7863 -g1,21424:8872759,24493202 -k1,21425:32583028,24493202:20177224 -g1,21425:32583028,24493202 -) -v1,21427:6630773,25178057:0,393216,0 -(1,21433:6630773,26888450:25952256,2103609,196608 -g1,21433:6630773,26888450 -g1,21433:6630773,26888450 -g1,21433:6434165,26888450 -(1,21433:6434165,26888450:0,2103609,196608 -r1,21482:32779637,26888450:26345472,2300217,196608 -k1,21433:6434165,26888450:-26345472 -) -(1,21433:6434165,26888450:26345472,2103609,196608 -[1,21433:6630773,26888450:25952256,1907001,0 -(1,21429:6630773,25405888:25952256,424439,106246 -(1,21428:6630773,25405888:0,0,0 -g1,21428:6630773,25405888 -g1,21428:6630773,25405888 -g1,21428:6303093,25405888 -(1,21428:6303093,25405888:0,0,0 -) -g1,21428:6630773,25405888 -) -g1,21429:9286405,25405888 -k1,21429:9286405,25405888:0 -h1,21429:9950313,25405888:0,0,0 -k1,21429:32583029,25405888:22632716 -g1,21429:32583029,25405888 -) -(1,21430:6630773,26090743:25952256,431045,112852 -h1,21430:6630773,26090743:0,0,0 -g1,21430:6962727,26090743 -g1,21430:7294681,26090743 -g1,21430:11278129,26090743 -g1,21430:11942037,26090743 -g1,21430:15925484,26090743 -g1,21430:18581116,26090743 -g1,21430:19245024,26090743 -g1,21430:21236748,26090743 -g1,21430:21900656,26090743 -g1,21430:22896518,26090743 -g1,21430:23560426,26090743 -g1,21430:24224334,26090743 -g1,21430:25552150,26090743 -h1,21430:25884104,26090743:0,0,0 -k1,21430:32583029,26090743:6698925 -g1,21430:32583029,26090743 -) -(1,21431:6630773,26775598:25952256,424439,112852 -h1,21431:6630773,26775598:0,0,0 -g1,21431:6962727,26775598 -g1,21431:7294681,26775598 -k1,21431:7294681,26775598:0 -h1,21431:11278128,26775598:0,0,0 -k1,21431:32583028,26775598:21304900 -g1,21431:32583028,26775598 -) -] -) -g1,21433:32583029,26888450 -g1,21433:6630773,26888450 -g1,21433:6630773,26888450 -g1,21433:32583029,26888450 -g1,21433:32583029,26888450 -) -h1,21433:6630773,27085058:0,0,0 -v1,21437:6630773,27769913:0,393216,0 -(1,21441:6630773,28103990:25952256,727293,196608 -g1,21441:6630773,28103990 -g1,21441:6630773,28103990 -g1,21441:6434165,28103990 -(1,21441:6434165,28103990:0,727293,196608 -r1,21482:32779637,28103990:26345472,923901,196608 -k1,21441:6434165,28103990:-26345472 -) -(1,21441:6434165,28103990:26345472,727293,196608 -[1,21441:6630773,28103990:25952256,530685,0 -(1,21439:6630773,27997744:25952256,424439,106246 -(1,21438:6630773,27997744:0,0,0 -g1,21438:6630773,27997744 -g1,21438:6630773,27997744 -g1,21438:6303093,27997744 -(1,21438:6303093,27997744:0,0,0 -) -g1,21438:6630773,27997744 -) -g1,21439:9286405,27997744 -g1,21439:9950313,27997744 -g1,21439:18581116,27997744 -g1,21439:19245024,27997744 -g1,21439:21236748,27997744 -g1,21439:22232610,27997744 -g1,21439:22896518,27997744 -g1,21439:24224334,27997744 -g1,21439:25552150,27997744 -h1,21439:26879966,27997744:0,0,0 -k1,21439:32583029,27997744:5703063 -g1,21439:32583029,27997744 -) -] -) -g1,21441:32583029,28103990 -g1,21441:6630773,28103990 -g1,21441:6630773,28103990 -g1,21441:32583029,28103990 -g1,21441:32583029,28103990 -) -h1,21441:6630773,28300598:0,0,0 -(1,21445:6630773,29165678:25952256,513147,126483 -h1,21444:6630773,29165678:983040,0,0 -k1,21444:9095651,29165678:285151 -k1,21444:11646382,29165678:285151 -k1,21444:14046381,29165678:285152 -k1,21444:15323092,29165678:285151 -k1,21444:18816886,29165678:285151 -k1,21444:19863565,29165678:285151 -k1,21444:22844213,29165678:285152 -(1,21444:22844213,29165678:0,452978,115847 -r1,21482:28126444,29165678:5282231,568825,115847 -k1,21444:22844213,29165678:-5282231 -) -(1,21444:22844213,29165678:5282231,452978,115847 -k1,21444:22844213,29165678:3277 -h1,21444:28123167,29165678:0,411205,112570 -) -k1,21444:28411595,29165678:285151 -k1,21444:30264367,29165678:285151 -k1,21444:32583029,29165678:0 -) -(1,21445:6630773,30030758:25952256,505283,134348 -k1,21444:8001852,30030758:196019 -k1,21444:11270200,30030758:196020 -k1,21444:13671506,30030758:196019 -k1,21444:14518954,30030758:196020 -k1,21444:15503371,30030758:196019 -k1,21444:18980123,30030758:196020 -(1,21444:18980123,30030758:0,414482,115847 -r1,21482:19338389,30030758:358266,530329,115847 -k1,21444:18980123,30030758:-358266 -) -(1,21444:18980123,30030758:358266,414482,115847 -k1,21444:18980123,30030758:3277 -h1,21444:19335112,30030758:0,411205,112570 -) -k1,21444:19534408,30030758:196019 -k1,21444:23304762,30030758:196020 -k1,21444:24519866,30030758:196019 -k1,21444:26595459,30030758:196020 -k1,21444:29277259,30030758:196019 -k1,21444:30987816,30030758:196020 -k1,21444:31835263,30030758:196019 -k1,21444:32583029,30030758:0 -) -(1,21445:6630773,30895838:25952256,513147,134348 -k1,21444:9966615,30895838:182905 -k1,21444:14640047,30895838:182905 -k1,21444:15895121,30895838:182905 -k1,21444:17097111,30895838:182905 -k1,21444:19202187,30895838:182905 -k1,21444:21870872,30895838:182904 -k1,21444:22713069,30895838:182905 -k1,21444:24410511,30895838:182905 -k1,21444:27802059,30895838:182905 -k1,21444:29321898,30895838:182905 -k1,21444:30252569,30895838:182905 -k1,21444:32583029,30895838:0 -) -(1,21445:6630773,31760918:25952256,513147,134348 -g1,21444:9592345,31760918 -g1,21444:13153571,31760918 -g1,21444:14162170,31760918 -g1,21444:15380484,31760918 -g1,21444:17360326,31760918 -g1,21444:18218847,31760918 -g1,21444:19437161,31760918 -k1,21445:32583029,31760918:11704076 -g1,21445:32583029,31760918 -) -v1,21447:6630773,32445773:0,393216,0 -(1,21452:6630773,33448189:25952256,1395632,196608 -g1,21452:6630773,33448189 -g1,21452:6630773,33448189 -g1,21452:6434165,33448189 -(1,21452:6434165,33448189:0,1395632,196608 -r1,21482:32779637,33448189:26345472,1592240,196608 -k1,21452:6434165,33448189:-26345472 -) -(1,21452:6434165,33448189:26345472,1395632,196608 -[1,21452:6630773,33448189:25952256,1199024,0 -(1,21449:6630773,32657088:25952256,407923,106246 -(1,21448:6630773,32657088:0,0,0 -g1,21448:6630773,32657088 -g1,21448:6630773,32657088 -g1,21448:6303093,32657088 -(1,21448:6303093,32657088:0,0,0 -) -g1,21448:6630773,32657088 -) -g1,21449:7626635,32657088 -k1,21449:7626635,32657088:0 -h1,21449:8290543,32657088:0,0,0 -k1,21449:32583029,32657088:24292486 -g1,21449:32583029,32657088 -) -(1,21450:6630773,33341943:25952256,424439,106246 -h1,21450:6630773,33341943:0,0,0 -g1,21450:6962727,33341943 -g1,21450:7294681,33341943 -g1,21450:9950313,33341943 -g1,21450:10614221,33341943 -g1,21450:19245024,33341943 -g1,21450:19908932,33341943 -g1,21450:25220195,33341943 -g1,21450:25884103,33341943 -h1,21450:26879965,33341943:0,0,0 -k1,21450:32583029,33341943:5703064 -g1,21450:32583029,33341943 -) -] -) -g1,21452:32583029,33448189 -g1,21452:6630773,33448189 -g1,21452:6630773,33448189 -g1,21452:32583029,33448189 -g1,21452:32583029,33448189 -) -h1,21452:6630773,33644797:0,0,0 -(1,21456:6630773,34509877:25952256,513147,134348 -h1,21455:6630773,34509877:983040,0,0 -k1,21455:8782881,34509877:215519 -k1,21455:10102682,34509877:215519 -k1,21455:11252744,34509877:215519 -k1,21455:12652498,34509877:215518 -k1,21455:14712200,34509877:215519 -k1,21455:18034126,34509877:215519 -k1,21455:18865683,34509877:215519 -k1,21455:21464746,34509877:215519 -k1,21455:22331693,34509877:215519 -k1,21455:23566297,34509877:215519 -k1,21455:25963509,34509877:215518 -k1,21455:26846184,34509877:215519 -(1,21455:26846184,34509877:0,452978,115847 -r1,21482:28963009,34509877:2116825,568825,115847 -k1,21455:26846184,34509877:-2116825 -) -(1,21455:26846184,34509877:2116825,452978,115847 -k1,21455:26846184,34509877:3277 -h1,21455:28959732,34509877:0,411205,112570 -) -k1,21455:29178528,34509877:215519 -k1,21455:30155575,34509877:215519 -k1,21455:32583029,34509877:0 -) -(1,21456:6630773,35374957:25952256,513147,134348 -k1,21455:7511073,35374957:194138 -k1,21455:11107840,35374957:194138 -k1,21455:12474417,35374957:194138 -k1,21455:14976732,35374957:194137 -k1,21455:15830162,35374957:194138 -k1,21455:17751829,35374957:194138 -k1,21455:20132903,35374957:194138 -k1,21455:22367832,35374957:194138 -k1,21455:23332673,35374957:194138 -k1,21455:26966795,35374957:194137 -k1,21455:27692430,35374957:194138 -k1,21455:29399794,35374957:194138 -k1,21455:30245360,35374957:194138 -k1,21455:32583029,35374957:0 -) -(1,21456:6630773,36240037:25952256,505283,11795 -g1,21455:7185862,36240037 -g1,21455:9240415,36240037 -g1,21455:11141614,36240037 -g1,21455:11956881,36240037 -g1,21455:13175195,36240037 -k1,21456:32583029,36240037:17841524 -g1,21456:32583029,36240037 -) -v1,21458:6630773,36924892:0,393216,0 -(1,21465:6630773,39287109:25952256,2755433,196608 -g1,21465:6630773,39287109 -g1,21465:6630773,39287109 -g1,21465:6434165,39287109 -(1,21465:6434165,39287109:0,2755433,196608 -r1,21482:32779637,39287109:26345472,2952041,196608 -k1,21465:6434165,39287109:-26345472 -) -(1,21465:6434165,39287109:26345472,2755433,196608 -[1,21465:6630773,39287109:25952256,2558825,0 -(1,21460:6630773,37126298:25952256,398014,106246 -(1,21459:6630773,37126298:0,0,0 -g1,21459:6630773,37126298 -g1,21459:6630773,37126298 -g1,21459:6303093,37126298 -(1,21459:6303093,37126298:0,0,0 -) -g1,21459:6630773,37126298 -) -g1,21460:7626635,37126298 -k1,21460:7626635,37126298:0 -h1,21460:8290543,37126298:0,0,0 -k1,21460:32583029,37126298:24292486 -g1,21460:32583029,37126298 -) -(1,21461:6630773,37811153:25952256,424439,106246 -h1,21461:6630773,37811153:0,0,0 -g1,21461:6962727,37811153 -g1,21461:7294681,37811153 -g1,21461:9950313,37811153 -h1,21461:10282267,37811153:0,0,0 -k1,21461:32583029,37811153:22300762 -g1,21461:32583029,37811153 -) -(1,21462:6630773,38496008:25952256,424439,106246 -h1,21462:6630773,38496008:0,0,0 -g1,21462:6962727,38496008 -g1,21462:7294681,38496008 -g1,21462:15925484,38496008 -g1,21462:16589392,38496008 -g1,21462:18581116,38496008 -g1,21462:19576978,38496008 -g1,21462:20240886,38496008 -g1,21462:21568702,38496008 -g1,21462:22896518,38496008 -k1,21462:22896518,38496008:0 -h1,21462:24224334,38496008:0,0,0 -k1,21462:32583029,38496008:8358695 -g1,21462:32583029,38496008 -) -(1,21463:6630773,39180863:25952256,424439,106246 -h1,21463:6630773,39180863:0,0,0 -g1,21463:6962727,39180863 -g1,21463:7294681,39180863 -g1,21463:7626635,39180863 -g1,21463:7958589,39180863 -g1,21463:8290543,39180863 -g1,21463:8622497,39180863 -g1,21463:8954451,39180863 -g1,21463:9286405,39180863 -g1,21463:9618359,39180863 -g1,21463:9950313,39180863 -g1,21463:10282267,39180863 -g1,21463:10614221,39180863 -g1,21463:10946175,39180863 -g1,21463:11278129,39180863 -g1,21463:11610083,39180863 -g1,21463:11942037,39180863 -g1,21463:12273991,39180863 -g1,21463:12605945,39180863 -g1,21463:12937899,39180863 -g1,21463:13269853,39180863 -g1,21463:13601807,39180863 -g1,21463:15925485,39180863 -g1,21463:16589393,39180863 -g1,21463:19245025,39180863 -g1,21463:25552150,39180863 -g1,21463:27543874,39180863 -h1,21463:29535598,39180863:0,0,0 -k1,21463:32583029,39180863:3047431 -g1,21463:32583029,39180863 -) -] -) -g1,21465:32583029,39287109 -g1,21465:6630773,39287109 -g1,21465:6630773,39287109 -g1,21465:32583029,39287109 -g1,21465:32583029,39287109 -) -h1,21465:6630773,39483717:0,0,0 -] -(1,21482:32583029,45706769:0,0,0 -g1,21482:32583029,45706769 -) -) -] -(1,21482:6630773,47279633:25952256,0,0 -h1,21482:6630773,47279633:25952256,0,0 -) -] -(1,21482:4262630,4025873:0,0,0 -[1,21482:-473656,4025873:0,0,0 -(1,21482:-473656,-710413:0,0,0 -(1,21482:-473656,-710413:0,0,0 -g1,21482:-473656,-710413 -) -g1,21482:-473656,-710413 +g1,21480:6630773,4812305 +g1,21480:6630773,4812305 +g1,21480:8724648,4812305 +k1,21480:31387652,4812305:22663004 +) +) +] +[1,21480:6630773,45706769:25952256,40108032,0 +(1,21480:6630773,45706769:25952256,40108032,0 +(1,21480:6630773,45706769:0,0,0 +g1,21480:6630773,45706769 +) +[1,21480:6630773,45706769:25952256,40108032,0 +(1,21405:6630773,6254097:25952256,513147,134348 +h1,21404:6630773,6254097:983040,0,0 +k1,21404:9086188,6254097:275688 +k1,21404:12220556,6254097:275688 +k1,21404:13155537,6254097:275689 +k1,21404:13787085,6254097:275688 +k1,21404:15634982,6254097:275688 +k1,21404:17014952,6254097:275688 +k1,21404:18038406,6254097:275688 +k1,21404:21041047,6254097:275688 +k1,21404:23052129,6254097:275689 +k1,21404:23683677,6254097:275688 +k1,21404:28796577,6254097:275688 +k1,21404:30304342,6254097:275688 +k1,21404:32583029,6254097:0 +) +(1,21405:6630773,7119177:25952256,505283,134348 +h1,21404:8571949,7119177:0,0,0 +k1,21404:8802847,7119177:230898 +k1,21404:9843116,7119177:230899 +k1,21404:11572167,7119177:230898 +h1,21404:12767544,7119177:0,0,0 +k1,21404:13379207,7119177:230899 +k1,21404:15537519,7119177:230898 +(1,21404:15537519,7119177:0,452978,115847 +r1,21480:21523174,7119177:5985655,568825,115847 +k1,21404:15537519,7119177:-5985655 +) +(1,21404:15537519,7119177:5985655,452978,115847 +k1,21404:15537519,7119177:3277 +h1,21404:21519897,7119177:0,411205,112570 +) +k1,21404:21754072,7119177:230898 +k1,21404:23176416,7119177:230899 +(1,21404:23176416,7119177:0,452978,115847 +r1,21480:29162071,7119177:5985655,568825,115847 +k1,21404:23176416,7119177:-5985655 +) +(1,21404:23176416,7119177:5985655,452978,115847 +k1,21404:23176416,7119177:3277 +h1,21404:29158794,7119177:0,411205,112570 +) +k1,21404:29392969,7119177:230898 +k1,21404:30716353,7119177:230899 +k1,21404:31708779,7119177:230898 +k1,21405:32583029,7119177:0 +) +(1,21405:6630773,7984257:25952256,513147,126483 +k1,21404:8418183,7984257:289912 +k1,21404:9727179,7984257:289911 +k1,21404:13126119,7984257:289912 +k1,21404:18426914,7984257:289912 +k1,21404:21651527,7984257:289911 +k1,21404:26578111,7984257:289912 +(1,21404:26578111,7984257:0,452978,115847 +r1,21480:28694936,7984257:2116825,568825,115847 +k1,21404:26578111,7984257:-2116825 +) +(1,21404:26578111,7984257:2116825,452978,115847 +k1,21404:26578111,7984257:3277 +h1,21404:28691659,7984257:0,411205,112570 +) +k1,21404:28984847,7984257:289911 +k1,21404:30466204,7984257:289912 +(1,21404:30466204,7984257:0,452978,115847 +r1,21480:32583029,7984257:2116825,568825,115847 +k1,21404:30466204,7984257:-2116825 +) +(1,21404:30466204,7984257:2116825,452978,115847 +k1,21404:30466204,7984257:3277 +h1,21404:32579752,7984257:0,411205,112570 +) +k1,21404:32583029,7984257:0 +) +(1,21405:6630773,8849337:25952256,513147,134348 +k1,21404:7976040,8849337:240985 +k1,21404:8964791,8849337:240985 +k1,21404:10719002,8849337:240985 +k1,21404:11611415,8849337:240985 +k1,21404:14158612,8849337:240985 +k1,21404:15418682,8849337:240985 +k1,21404:17231877,8849337:240986 +k1,21404:20331542,8849337:240985 +k1,21404:21334055,8849337:240985 +k1,21404:24002494,8849337:240985 +k1,21404:25262564,8849337:240985 +k1,21404:28123678,8849337:240985 +k1,21404:30375308,8849337:240985 +k1,21404:31563944,8849337:240985 +k1,21404:32583029,8849337:0 +) +(1,21405:6630773,9714417:25952256,505283,134348 +g1,21404:8644694,9714417 +g1,21404:9459961,9714417 +g1,21404:13072960,9714417 +k1,21405:32583030,9714417:17718316 +g1,21405:32583030,9714417 +) +v1,21407:6630773,10579497:0,393216,0 +(1,21416:6630773,13797674:25952256,3611393,0 +g1,21416:6630773,13797674 +g1,21416:6237557,13797674 +r1,21480:6368629,13797674:131072,3611393,0 +g1,21416:6567858,13797674 +g1,21416:6764466,13797674 +[1,21416:6764466,13797674:25818563,3611393,0 +(1,21408:6764466,10851974:25818563,665693,196608 +(1,21407:6764466,10851974:0,665693,196608 +r1,21480:7868133,10851974:1103667,862301,196608 +k1,21407:6764466,10851974:-1103667 +) +(1,21407:6764466,10851974:1103667,665693,196608 +) +k1,21407:8159297,10851974:291164 +k1,21407:9885515,10851974:327680 +k1,21407:11545726,10851974:291164 +k1,21407:13385507,10851974:291165 +k1,21407:14695756,10851974:291164 +k1,21407:16829792,10851974:291164 +k1,21407:17652453,10851974:291164 +k1,21407:19641656,10851974:291165 +k1,21407:20951905,10851974:291164 +k1,21407:22549202,10851974:291164 +k1,21407:24324756,10851974:291164 +k1,21407:25147417,10851974:291164 +k1,21407:27297838,10851974:291165 +k1,21407:29031449,10851974:291164 +k1,21407:30341698,10851974:291164 +k1,21407:32583029,10851974:0 +) +(1,21408:6764466,11717054:25818563,505283,134348 +k1,21407:8290021,11717054:195174 +k1,21407:9028487,11717054:195173 +k1,21407:9681758,11717054:195174 +k1,21407:10896016,11717054:195173 +k1,21407:12744663,11717054:195174 +k1,21407:13625998,11717054:195173 +k1,21407:15519210,11717054:195174 +k1,21407:17896077,11717054:195173 +k1,21407:19787978,11717054:195174 +k1,21407:21636625,11717054:195174 +k1,21407:23842443,11717054:195173 +k1,21407:24723779,11717054:195174 +k1,21407:26733644,11717054:195173 +k1,21407:28322769,11717054:195174 +(1,21407:28322769,11717054:0,452978,115847 +r1,21480:30439594,11717054:2116825,568825,115847 +k1,21407:28322769,11717054:-2116825 +) +(1,21407:28322769,11717054:2116825,452978,115847 +k1,21407:28322769,11717054:3277 +h1,21407:30436317,11717054:0,411205,112570 +) +k1,21407:30961792,11717054:195173 +k1,21407:31839851,11717054:195174 +k1,21407:32583029,11717054:0 +) +(1,21408:6764466,12582134:25818563,505283,134348 +g1,21407:9904951,12582134 +(1,21407:9904951,12582134:0,452978,115847 +r1,21480:16945742,12582134:7040791,568825,115847 +k1,21407:9904951,12582134:-7040791 +) +(1,21407:9904951,12582134:7040791,452978,115847 +k1,21407:9904951,12582134:3277 +h1,21407:16942465,12582134:0,411205,112570 +) +g1,21407:17144971,12582134 +g1,21407:18738151,12582134 +(1,21407:18738151,12582134:0,452978,115847 +r1,21480:24723806,12582134:5985655,568825,115847 +k1,21407:18738151,12582134:-5985655 +) +(1,21407:18738151,12582134:5985655,452978,115847 +k1,21407:18738151,12582134:3277 +h1,21407:24720529,12582134:0,411205,112570 +) +k1,21408:32583029,12582134:7564966 +g1,21408:32583029,12582134 +) +v1,21410:6764466,13266989:0,393216,0 +(1,21414:6764466,13601066:25818563,727293,196608 +g1,21414:6764466,13601066 +g1,21414:6764466,13601066 +g1,21414:6567858,13601066 +(1,21414:6567858,13601066:0,727293,196608 +r1,21480:32779637,13601066:26211779,923901,196608 +k1,21414:6567857,13601066:-26211780 +) +(1,21414:6567858,13601066:26211779,727293,196608 +[1,21414:6764466,13601066:25818563,530685,0 +(1,21412:6764466,13494820:25818563,424439,106246 +(1,21411:6764466,13494820:0,0,0 +g1,21411:6764466,13494820 +g1,21411:6764466,13494820 +g1,21411:6436786,13494820 +(1,21411:6436786,13494820:0,0,0 +) +g1,21411:6764466,13494820 +) +g1,21412:9420098,13494820 +g1,21412:10415960,13494820 +g1,21412:19046763,13494820 +g1,21412:19710671,13494820 +g1,21412:22034349,13494820 +h1,21412:23030211,13494820:0,0,0 +k1,21412:32583029,13494820:9552818 +g1,21412:32583029,13494820 +) +] +) +g1,21414:32583029,13601066 +g1,21414:6764466,13601066 +g1,21414:6764466,13601066 +g1,21414:32583029,13601066 +g1,21414:32583029,13601066 +) +h1,21414:6764466,13797674:0,0,0 +] +g1,21416:32583029,13797674 +) +h1,21416:6630773,13797674:0,0,0 +(1,21418:6630773,15449186:25952256,505283,7863 +(1,21418:6630773,15449186:0,0,0 +g1,21418:6630773,15449186 +) +g1,21418:9061503,15449186 +g1,21418:10486255,15449186 +g1,21418:12258348,15449186 +k1,21418:32583028,15449186:18403164 +g1,21418:32583028,15449186 +) +(1,21421:6630773,16707482:25952256,513147,134348 +k1,21420:10142671,16707482:276386 +(1,21420:10142671,16707482:0,452978,115847 +r1,21480:12259496,16707482:2116825,568825,115847 +k1,21420:10142671,16707482:-2116825 +) +(1,21420:10142671,16707482:2116825,452978,115847 +k1,21420:10142671,16707482:3277 +h1,21420:12256219,16707482:0,411205,112570 +) +k1,21420:12535883,16707482:276387 +k1,21420:13343766,16707482:276386 +k1,21420:15133379,16707482:276387 +k1,21420:16476036,16707482:276386 +k1,21420:18128023,16707482:276386 +k1,21420:19055838,16707482:276387 +k1,21420:20266767,16707482:276386 +k1,21420:21562239,16707482:276387 +k1,21420:24395184,16707482:276386 +k1,21420:25330862,16707482:276386 +k1,21420:27121786,16707482:276387 +k1,21420:29142740,16707482:276386 +k1,21420:30438212,16707482:276387 +k1,21420:31966991,16707482:276386 +k1,21420:32583029,16707482:0 +) +(1,21421:6630773,17572562:25952256,513147,134348 +k1,21420:8808315,17572562:275032 +k1,21420:10030999,17572562:275033 +k1,21420:11325116,17572562:275032 +(1,21420:11325116,17572562:0,414482,115847 +r1,21480:11683382,17572562:358266,530329,115847 +k1,21420:11325116,17572562:-358266 +) +(1,21420:11325116,17572562:358266,414482,115847 +k1,21420:11325116,17572562:3277 +h1,21420:11680105,17572562:0,411205,112570 +) +k1,21420:11958415,17572562:275033 +k1,21420:13424892,17572562:275032 +(1,21420:13424892,17572562:0,414482,115847 +r1,21480:13783158,17572562:358266,530329,115847 +k1,21420:13424892,17572562:-358266 +) +(1,21420:13424892,17572562:358266,414482,115847 +k1,21420:13424892,17572562:3277 +h1,21420:13779881,17572562:0,411205,112570 +) +k1,21420:14058190,17572562:275032 +k1,21420:17681457,17572562:275033 +k1,21420:19028658,17572562:275032 +k1,21420:20589506,17572562:275032 +k1,21420:21812190,17572562:275033 +k1,21420:23106307,17572562:275032 +k1,21420:24812645,17572562:275032 +k1,21420:25770563,17572562:275033 +k1,21420:28134227,17572562:275032 +k1,21420:29356911,17572562:275033 +k1,21420:31333913,17572562:275032 +k1,21421:32583029,17572562:0 +) +(1,21421:6630773,18437642:25952256,513147,115847 +k1,21420:9256753,18437642:198526 +k1,21420:11357790,18437642:198527 +k1,21420:13049882,18437642:198526 +k1,21420:13934570,18437642:198526 +k1,21420:15877010,18437642:198527 +k1,21420:17023187,18437642:198526 +k1,21420:19426344,18437642:198526 +k1,21420:22860383,18437642:198527 +(1,21420:22860383,18437642:0,452978,115847 +r1,21480:24977208,18437642:2116825,568825,115847 +k1,21420:22860383,18437642:-2116825 +) +(1,21420:22860383,18437642:2116825,452978,115847 +k1,21420:22860383,18437642:3277 +h1,21420:24973931,18437642:0,411205,112570 +) +k1,21420:25175734,18437642:198526 +k1,21420:25905758,18437642:198527 +k1,21420:27617510,18437642:198526 +k1,21420:28467464,18437642:198526 +k1,21420:29600534,18437642:198527 +k1,21420:30818145,18437642:198526 +k1,21420:32583029,18437642:0 +) +(1,21421:6630773,19302722:25952256,513147,134348 +k1,21420:8823881,19302722:175254 +k1,21420:11979712,19302722:175254 +k1,21420:13339202,19302722:175254 +k1,21420:15532310,19302722:175254 +k1,21420:16904251,19302722:175254 +k1,21420:20151833,19302722:175254 +k1,21420:22532374,19302722:175254 +k1,21420:23359056,19302722:175254 +k1,21420:24985932,19302722:175254 +k1,21420:25820478,19302722:175254 +k1,21420:27692459,19302722:175254 +k1,21420:31478747,19302722:175254 +k1,21420:32583029,19302722:0 +) +(1,21421:6630773,20167802:25952256,513147,134348 +k1,21420:7563263,20167802:184724 +k1,21420:9725864,20167802:184724 +k1,21420:10593473,20167802:184724 +k1,21420:11134057,20167802:184724 +k1,21420:14187947,20167802:184724 +k1,21420:15569358,20167802:184724 +k1,21420:18019662,20167802:184724 +k1,21420:18735883,20167802:184724 +k1,21420:19572035,20167802:184724 +k1,21420:22544661,20167802:184724 +k1,21420:24913700,20167802:184724 +k1,21420:27213271,20167802:184724 +k1,21420:29252664,20167802:184724 +k1,21420:30246758,20167802:184724 +k1,21420:31450567,20167802:184724 +k1,21421:32583029,20167802:0 +) +(1,21421:6630773,21032882:25952256,513147,126483 +k1,21420:7676306,21032882:257135 +k1,21420:9124886,21032882:257135 +k1,21420:10474506,21032882:257135 +k1,21420:11383069,21032882:257135 +k1,21420:12937162,21032882:257135 +k1,21420:16010379,21032882:257135 +k1,21420:18779509,21032882:257135 +k1,21420:19984295,21032882:257135 +k1,21420:22259284,21032882:257135 +k1,21420:25531730,21032882:257135 +k1,21420:26404903,21032882:257135 +k1,21420:27865279,21032882:257135 +k1,21420:30401101,21032882:257135 +k1,21420:31649796,21032882:257135 +k1,21420:32583029,21032882:0 +) +(1,21421:6630773,21897962:25952256,513147,134348 +k1,21420:10370304,21897962:169130 +k1,21420:12615614,21897962:169129 +k1,21420:13809727,21897962:169130 +k1,21420:16257543,21897962:169129 +h1,21420:18198719,21897962:0,0,0 +k1,21420:18367849,21897962:169130 +k1,21420:19346348,21897962:169129 +k1,21420:21013631,21897962:169130 +h1,21420:22209008,21897962:0,0,0 +k1,21420:22378138,21897962:169130 +k1,21420:23494918,21897962:169129 +k1,21420:25448593,21897962:169130 +k1,21420:27461905,21897962:169129 +k1,21420:28247073,21897962:169130 +k1,21420:29841610,21897962:169129 +k1,21420:31202185,21897962:169130 +k1,21420:32583029,21897962:0 +) +(1,21421:6630773,22763042:25952256,505283,7863 +k1,21421:32583028,22763042:23997316 +g1,21421:32583028,22763042 +) +(1,21423:6630773,23628122:25952256,513147,134348 +h1,21422:6630773,23628122:983040,0,0 +k1,21422:9530871,23628122:133823 +k1,21422:12597430,23628122:133823 +k1,21422:14912947,23628122:133823 +k1,21422:17335287,23628122:133823 +k1,21422:19313293,23628122:133823 +k1,21422:20394767,23628122:133823 +k1,21422:21547675,23628122:133823 +(1,21422:21547675,23628122:0,452978,115847 +r1,21480:23664500,23628122:2116825,568825,115847 +k1,21422:21547675,23628122:-2116825 +) +(1,21422:21547675,23628122:2116825,452978,115847 +k1,21422:21547675,23628122:3277 +h1,21422:23661223,23628122:0,411205,112570 +) +k1,21422:23798323,23628122:133823 +k1,21422:24923706,23628122:133823 +k1,21422:29374386,23628122:133823 +k1,21422:32583029,23628122:0 +) +(1,21423:6630773,24493202:25952256,505283,7863 +g1,21422:8872759,24493202 +k1,21423:32583028,24493202:20177224 +g1,21423:32583028,24493202 +) +v1,21425:6630773,25178057:0,393216,0 +(1,21431:6630773,26888450:25952256,2103609,196608 +g1,21431:6630773,26888450 +g1,21431:6630773,26888450 +g1,21431:6434165,26888450 +(1,21431:6434165,26888450:0,2103609,196608 +r1,21480:32779637,26888450:26345472,2300217,196608 +k1,21431:6434165,26888450:-26345472 +) +(1,21431:6434165,26888450:26345472,2103609,196608 +[1,21431:6630773,26888450:25952256,1907001,0 +(1,21427:6630773,25405888:25952256,424439,106246 +(1,21426:6630773,25405888:0,0,0 +g1,21426:6630773,25405888 +g1,21426:6630773,25405888 +g1,21426:6303093,25405888 +(1,21426:6303093,25405888:0,0,0 +) +g1,21426:6630773,25405888 +) +g1,21427:9286405,25405888 +k1,21427:9286405,25405888:0 +h1,21427:9950313,25405888:0,0,0 +k1,21427:32583029,25405888:22632716 +g1,21427:32583029,25405888 +) +(1,21428:6630773,26090743:25952256,431045,112852 +h1,21428:6630773,26090743:0,0,0 +g1,21428:6962727,26090743 +g1,21428:7294681,26090743 +g1,21428:11278129,26090743 +g1,21428:11942037,26090743 +g1,21428:15925484,26090743 +g1,21428:18581116,26090743 +g1,21428:19245024,26090743 +g1,21428:21236748,26090743 +g1,21428:21900656,26090743 +g1,21428:22896518,26090743 +g1,21428:23560426,26090743 +g1,21428:24224334,26090743 +g1,21428:25552150,26090743 +h1,21428:25884104,26090743:0,0,0 +k1,21428:32583029,26090743:6698925 +g1,21428:32583029,26090743 +) +(1,21429:6630773,26775598:25952256,424439,112852 +h1,21429:6630773,26775598:0,0,0 +g1,21429:6962727,26775598 +g1,21429:7294681,26775598 +k1,21429:7294681,26775598:0 +h1,21429:11278128,26775598:0,0,0 +k1,21429:32583028,26775598:21304900 +g1,21429:32583028,26775598 +) +] +) +g1,21431:32583029,26888450 +g1,21431:6630773,26888450 +g1,21431:6630773,26888450 +g1,21431:32583029,26888450 +g1,21431:32583029,26888450 +) +h1,21431:6630773,27085058:0,0,0 +v1,21435:6630773,27769913:0,393216,0 +(1,21439:6630773,28103990:25952256,727293,196608 +g1,21439:6630773,28103990 +g1,21439:6630773,28103990 +g1,21439:6434165,28103990 +(1,21439:6434165,28103990:0,727293,196608 +r1,21480:32779637,28103990:26345472,923901,196608 +k1,21439:6434165,28103990:-26345472 +) +(1,21439:6434165,28103990:26345472,727293,196608 +[1,21439:6630773,28103990:25952256,530685,0 +(1,21437:6630773,27997744:25952256,424439,106246 +(1,21436:6630773,27997744:0,0,0 +g1,21436:6630773,27997744 +g1,21436:6630773,27997744 +g1,21436:6303093,27997744 +(1,21436:6303093,27997744:0,0,0 +) +g1,21436:6630773,27997744 +) +g1,21437:9286405,27997744 +g1,21437:9950313,27997744 +g1,21437:18581116,27997744 +g1,21437:19245024,27997744 +g1,21437:21236748,27997744 +g1,21437:22232610,27997744 +g1,21437:22896518,27997744 +g1,21437:24224334,27997744 +g1,21437:25552150,27997744 +h1,21437:26879966,27997744:0,0,0 +k1,21437:32583029,27997744:5703063 +g1,21437:32583029,27997744 +) +] +) +g1,21439:32583029,28103990 +g1,21439:6630773,28103990 +g1,21439:6630773,28103990 +g1,21439:32583029,28103990 +g1,21439:32583029,28103990 +) +h1,21439:6630773,28300598:0,0,0 +(1,21443:6630773,29165678:25952256,513147,126483 +h1,21442:6630773,29165678:983040,0,0 +k1,21442:9095651,29165678:285151 +k1,21442:11646382,29165678:285151 +k1,21442:14046381,29165678:285152 +k1,21442:15323092,29165678:285151 +k1,21442:18816886,29165678:285151 +k1,21442:19863565,29165678:285151 +k1,21442:22844213,29165678:285152 +(1,21442:22844213,29165678:0,452978,115847 +r1,21480:28126444,29165678:5282231,568825,115847 +k1,21442:22844213,29165678:-5282231 +) +(1,21442:22844213,29165678:5282231,452978,115847 +k1,21442:22844213,29165678:3277 +h1,21442:28123167,29165678:0,411205,112570 +) +k1,21442:28411595,29165678:285151 +k1,21442:30264367,29165678:285151 +k1,21442:32583029,29165678:0 +) +(1,21443:6630773,30030758:25952256,505283,134348 +k1,21442:8001852,30030758:196019 +k1,21442:11270200,30030758:196020 +k1,21442:13671506,30030758:196019 +k1,21442:14518954,30030758:196020 +k1,21442:15503371,30030758:196019 +k1,21442:18980123,30030758:196020 +(1,21442:18980123,30030758:0,414482,115847 +r1,21480:19338389,30030758:358266,530329,115847 +k1,21442:18980123,30030758:-358266 +) +(1,21442:18980123,30030758:358266,414482,115847 +k1,21442:18980123,30030758:3277 +h1,21442:19335112,30030758:0,411205,112570 +) +k1,21442:19534408,30030758:196019 +k1,21442:23304762,30030758:196020 +k1,21442:24519866,30030758:196019 +k1,21442:26595459,30030758:196020 +k1,21442:29277259,30030758:196019 +k1,21442:30987816,30030758:196020 +k1,21442:31835263,30030758:196019 +k1,21442:32583029,30030758:0 +) +(1,21443:6630773,30895838:25952256,513147,134348 +k1,21442:9966615,30895838:182905 +k1,21442:14640047,30895838:182905 +k1,21442:15895121,30895838:182905 +k1,21442:17097111,30895838:182905 +k1,21442:19202187,30895838:182905 +k1,21442:21870872,30895838:182904 +k1,21442:22713069,30895838:182905 +k1,21442:24410511,30895838:182905 +k1,21442:27802059,30895838:182905 +k1,21442:29321898,30895838:182905 +k1,21442:30252569,30895838:182905 +k1,21442:32583029,30895838:0 +) +(1,21443:6630773,31760918:25952256,513147,134348 +g1,21442:9592345,31760918 +g1,21442:13153571,31760918 +g1,21442:14162170,31760918 +g1,21442:15380484,31760918 +g1,21442:17360326,31760918 +g1,21442:18218847,31760918 +g1,21442:19437161,31760918 +k1,21443:32583029,31760918:11704076 +g1,21443:32583029,31760918 +) +v1,21445:6630773,32445773:0,393216,0 +(1,21450:6630773,33448189:25952256,1395632,196608 +g1,21450:6630773,33448189 +g1,21450:6630773,33448189 +g1,21450:6434165,33448189 +(1,21450:6434165,33448189:0,1395632,196608 +r1,21480:32779637,33448189:26345472,1592240,196608 +k1,21450:6434165,33448189:-26345472 +) +(1,21450:6434165,33448189:26345472,1395632,196608 +[1,21450:6630773,33448189:25952256,1199024,0 +(1,21447:6630773,32657088:25952256,407923,106246 +(1,21446:6630773,32657088:0,0,0 +g1,21446:6630773,32657088 +g1,21446:6630773,32657088 +g1,21446:6303093,32657088 +(1,21446:6303093,32657088:0,0,0 +) +g1,21446:6630773,32657088 +) +g1,21447:7626635,32657088 +k1,21447:7626635,32657088:0 +h1,21447:8290543,32657088:0,0,0 +k1,21447:32583029,32657088:24292486 +g1,21447:32583029,32657088 +) +(1,21448:6630773,33341943:25952256,424439,106246 +h1,21448:6630773,33341943:0,0,0 +g1,21448:6962727,33341943 +g1,21448:7294681,33341943 +g1,21448:9950313,33341943 +g1,21448:10614221,33341943 +g1,21448:19245024,33341943 +g1,21448:19908932,33341943 +g1,21448:25220195,33341943 +g1,21448:25884103,33341943 +h1,21448:26879965,33341943:0,0,0 +k1,21448:32583029,33341943:5703064 +g1,21448:32583029,33341943 +) +] +) +g1,21450:32583029,33448189 +g1,21450:6630773,33448189 +g1,21450:6630773,33448189 +g1,21450:32583029,33448189 +g1,21450:32583029,33448189 +) +h1,21450:6630773,33644797:0,0,0 +(1,21454:6630773,34509877:25952256,513147,134348 +h1,21453:6630773,34509877:983040,0,0 +k1,21453:8782881,34509877:215519 +k1,21453:10102682,34509877:215519 +k1,21453:11252744,34509877:215519 +k1,21453:12652498,34509877:215518 +k1,21453:14712200,34509877:215519 +k1,21453:18034126,34509877:215519 +k1,21453:18865683,34509877:215519 +k1,21453:21464746,34509877:215519 +k1,21453:22331693,34509877:215519 +k1,21453:23566297,34509877:215519 +k1,21453:25963509,34509877:215518 +k1,21453:26846184,34509877:215519 +(1,21453:26846184,34509877:0,452978,115847 +r1,21480:28963009,34509877:2116825,568825,115847 +k1,21453:26846184,34509877:-2116825 +) +(1,21453:26846184,34509877:2116825,452978,115847 +k1,21453:26846184,34509877:3277 +h1,21453:28959732,34509877:0,411205,112570 +) +k1,21453:29178528,34509877:215519 +k1,21453:30155575,34509877:215519 +k1,21453:32583029,34509877:0 +) +(1,21454:6630773,35374957:25952256,513147,134348 +k1,21453:7511073,35374957:194138 +k1,21453:11107840,35374957:194138 +k1,21453:12474417,35374957:194138 +k1,21453:14976732,35374957:194137 +k1,21453:15830162,35374957:194138 +k1,21453:17751829,35374957:194138 +k1,21453:20132903,35374957:194138 +k1,21453:22367832,35374957:194138 +k1,21453:23332673,35374957:194138 +k1,21453:26966795,35374957:194137 +k1,21453:27692430,35374957:194138 +k1,21453:29399794,35374957:194138 +k1,21453:30245360,35374957:194138 +k1,21453:32583029,35374957:0 +) +(1,21454:6630773,36240037:25952256,505283,11795 +g1,21453:7185862,36240037 +g1,21453:9240415,36240037 +g1,21453:11141614,36240037 +g1,21453:11956881,36240037 +g1,21453:13175195,36240037 +k1,21454:32583029,36240037:17841524 +g1,21454:32583029,36240037 +) +v1,21456:6630773,36924892:0,393216,0 +(1,21463:6630773,39287109:25952256,2755433,196608 +g1,21463:6630773,39287109 +g1,21463:6630773,39287109 +g1,21463:6434165,39287109 +(1,21463:6434165,39287109:0,2755433,196608 +r1,21480:32779637,39287109:26345472,2952041,196608 +k1,21463:6434165,39287109:-26345472 +) +(1,21463:6434165,39287109:26345472,2755433,196608 +[1,21463:6630773,39287109:25952256,2558825,0 +(1,21458:6630773,37126298:25952256,398014,106246 +(1,21457:6630773,37126298:0,0,0 +g1,21457:6630773,37126298 +g1,21457:6630773,37126298 +g1,21457:6303093,37126298 +(1,21457:6303093,37126298:0,0,0 +) +g1,21457:6630773,37126298 +) +g1,21458:7626635,37126298 +k1,21458:7626635,37126298:0 +h1,21458:8290543,37126298:0,0,0 +k1,21458:32583029,37126298:24292486 +g1,21458:32583029,37126298 +) +(1,21459:6630773,37811153:25952256,424439,106246 +h1,21459:6630773,37811153:0,0,0 +g1,21459:6962727,37811153 +g1,21459:7294681,37811153 +g1,21459:9950313,37811153 +h1,21459:10282267,37811153:0,0,0 +k1,21459:32583029,37811153:22300762 +g1,21459:32583029,37811153 +) +(1,21460:6630773,38496008:25952256,424439,106246 +h1,21460:6630773,38496008:0,0,0 +g1,21460:6962727,38496008 +g1,21460:7294681,38496008 +g1,21460:15925484,38496008 +g1,21460:16589392,38496008 +g1,21460:18581116,38496008 +g1,21460:19576978,38496008 +g1,21460:20240886,38496008 +g1,21460:21568702,38496008 +g1,21460:22896518,38496008 +k1,21460:22896518,38496008:0 +h1,21460:24224334,38496008:0,0,0 +k1,21460:32583029,38496008:8358695 +g1,21460:32583029,38496008 +) +(1,21461:6630773,39180863:25952256,424439,106246 +h1,21461:6630773,39180863:0,0,0 +g1,21461:6962727,39180863 +g1,21461:7294681,39180863 +g1,21461:7626635,39180863 +g1,21461:7958589,39180863 +g1,21461:8290543,39180863 +g1,21461:8622497,39180863 +g1,21461:8954451,39180863 +g1,21461:9286405,39180863 +g1,21461:9618359,39180863 +g1,21461:9950313,39180863 +g1,21461:10282267,39180863 +g1,21461:10614221,39180863 +g1,21461:10946175,39180863 +g1,21461:11278129,39180863 +g1,21461:11610083,39180863 +g1,21461:11942037,39180863 +g1,21461:12273991,39180863 +g1,21461:12605945,39180863 +g1,21461:12937899,39180863 +g1,21461:13269853,39180863 +g1,21461:13601807,39180863 +g1,21461:15925485,39180863 +g1,21461:16589393,39180863 +g1,21461:19245025,39180863 +g1,21461:25552150,39180863 +g1,21461:27543874,39180863 +h1,21461:29535598,39180863:0,0,0 +k1,21461:32583029,39180863:3047431 +g1,21461:32583029,39180863 +) +] +) +g1,21463:32583029,39287109 +g1,21463:6630773,39287109 +g1,21463:6630773,39287109 +g1,21463:32583029,39287109 +g1,21463:32583029,39287109 +) +h1,21463:6630773,39483717:0,0,0 +] +(1,21480:32583029,45706769:0,0,0 +g1,21480:32583029,45706769 +) +) +] +(1,21480:6630773,47279633:25952256,0,0 +h1,21480:6630773,47279633:25952256,0,0 +) +] +(1,21480:4262630,4025873:0,0,0 +[1,21480:-473656,4025873:0,0,0 +(1,21480:-473656,-710413:0,0,0 +(1,21480:-473656,-710413:0,0,0 +g1,21480:-473656,-710413 +) +g1,21480:-473656,-710413 ) ] ) ] !26976 -}362 -Input:3984:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3985:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3986:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3987:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}363 Input:3988:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3989:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3990:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3991:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:3995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{363 -[1,21525:4262630,47279633:28320399,43253760,0 -(1,21525:4262630,4025873:0,0,0 -[1,21525:-473656,4025873:0,0,0 -(1,21525:-473656,-710413:0,0,0 -(1,21525:-473656,-644877:0,0,0 -k1,21525:-473656,-644877:-65536 +{364 +[1,21523:4262630,47279633:28320399,43253760,0 +(1,21523:4262630,4025873:0,0,0 +[1,21523:-473656,4025873:0,0,0 +(1,21523:-473656,-710413:0,0,0 +(1,21523:-473656,-644877:0,0,0 +k1,21523:-473656,-644877:-65536 ) -(1,21525:-473656,4736287:0,0,0 -k1,21525:-473656,4736287:5209943 +(1,21523:-473656,4736287:0,0,0 +k1,21523:-473656,4736287:5209943 ) -g1,21525:-473656,-710413 +g1,21523:-473656,-710413 ) ] ) -[1,21525:6630773,47279633:25952256,43253760,0 -[1,21525:6630773,4812305:25952256,786432,0 -(1,21525:6630773,4812305:25952256,513147,126483 -(1,21525:6630773,4812305:25952256,513147,126483 -g1,21525:3078558,4812305 -[1,21525:3078558,4812305:0,0,0 -(1,21525:3078558,2439708:0,1703936,0 -k1,21525:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21525:2537886,2439708:1179648,16384,0 +[1,21523:6630773,47279633:25952256,43253760,0 +[1,21523:6630773,4812305:25952256,786432,0 +(1,21523:6630773,4812305:25952256,513147,126483 +(1,21523:6630773,4812305:25952256,513147,126483 +g1,21523:3078558,4812305 +[1,21523:3078558,4812305:0,0,0 +(1,21523:3078558,2439708:0,1703936,0 +k1,21523:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21523:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21525:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21523:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21525:3078558,4812305:0,0,0 -(1,21525:3078558,2439708:0,1703936,0 -g1,21525:29030814,2439708 -g1,21525:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21525:36151628,1915420:16384,1179648,0 +[1,21523:3078558,4812305:0,0,0 +(1,21523:3078558,2439708:0,1703936,0 +g1,21523:29030814,2439708 +g1,21523:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21523:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21525:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21523:37855564,2439708:1179648,16384,0 ) ) -k1,21525:3078556,2439708:-34777008 +k1,21523:3078556,2439708:-34777008 ) ] -[1,21525:3078558,4812305:0,0,0 -(1,21525:3078558,49800853:0,16384,2228224 -k1,21525:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21525:2537886,49800853:1179648,16384,0 +[1,21523:3078558,4812305:0,0,0 +(1,21523:3078558,49800853:0,16384,2228224 +k1,21523:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21523:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21525:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21523:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21525:3078558,4812305:0,0,0 -(1,21525:3078558,49800853:0,16384,2228224 -g1,21525:29030814,49800853 -g1,21525:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21525:36151628,51504789:16384,1179648,0 +[1,21523:3078558,4812305:0,0,0 +(1,21523:3078558,49800853:0,16384,2228224 +g1,21523:29030814,49800853 +g1,21523:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21523:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21525:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21523:37855564,49800853:1179648,16384,0 ) ) -k1,21525:3078556,49800853:-34777008 +k1,21523:3078556,49800853:-34777008 ) ] -g1,21525:6630773,4812305 -k1,21525:21386205,4812305:13560055 -g1,21525:21999622,4812305 -g1,21525:25611966,4812305 -g1,21525:28956923,4812305 -g1,21525:29772190,4812305 +g1,21523:6630773,4812305 +k1,21523:21386205,4812305:13560055 +g1,21523:21999622,4812305 +g1,21523:25611966,4812305 +g1,21523:28956923,4812305 +g1,21523:29772190,4812305 ) ) ] -[1,21525:6630773,45706769:25952256,40108032,0 -(1,21525:6630773,45706769:25952256,40108032,0 -(1,21525:6630773,45706769:0,0,0 -g1,21525:6630773,45706769 +[1,21523:6630773,45706769:25952256,40108032,0 +(1,21523:6630773,45706769:25952256,40108032,0 +(1,21523:6630773,45706769:0,0,0 +g1,21523:6630773,45706769 ) -[1,21525:6630773,45706769:25952256,40108032,0 -v1,21469:6630773,6254097:0,393216,0 -(1,21473:6630773,6571658:25952256,710777,196608 -g1,21473:6630773,6571658 -g1,21473:6630773,6571658 -g1,21473:6434165,6571658 -(1,21473:6434165,6571658:0,710777,196608 -r1,21525:32779637,6571658:26345472,907385,196608 -k1,21473:6434165,6571658:-26345472 +[1,21523:6630773,45706769:25952256,40108032,0 +v1,21467:6630773,6254097:0,393216,0 +(1,21471:6630773,6571658:25952256,710777,196608 +g1,21471:6630773,6571658 +g1,21471:6630773,6571658 +g1,21471:6434165,6571658 +(1,21471:6434165,6571658:0,710777,196608 +r1,21523:32779637,6571658:26345472,907385,196608 +k1,21471:6434165,6571658:-26345472 ) -(1,21473:6434165,6571658:26345472,710777,196608 -[1,21473:6630773,6571658:25952256,514169,0 -(1,21471:6630773,6465412:25952256,407923,106246 -(1,21470:6630773,6465412:0,0,0 -g1,21470:6630773,6465412 -g1,21470:6630773,6465412 -g1,21470:6303093,6465412 -(1,21470:6303093,6465412:0,0,0 -) -g1,21470:6630773,6465412 -) -g1,21471:7626635,6465412 -g1,21471:8290543,6465412 -h1,21471:8954451,6465412:0,0,0 -k1,21471:32583029,6465412:23628578 -g1,21471:32583029,6465412 -) -] -) -g1,21473:32583029,6571658 -g1,21473:6630773,6571658 -g1,21473:6630773,6571658 -g1,21473:32583029,6571658 -g1,21473:32583029,6571658 -) -h1,21473:6630773,6768266:0,0,0 -(1,21476:6630773,16468597:25952256,9634795,0 -k1,21476:6760463,16468597:129690 -h1,21475:6760463,16468597:0,0,0 -(1,21475:6760463,16468597:25692876,9634795,0 -(1,21475:6760463,16468597:25692851,9634819,0 -(1,21475:6760463,16468597:25692851,9634819,0 -(1,21475:6760463,16468597:0,9634819,0 -(1,21475:6760463,16468597:0,14208860,0 -(1,21475:6760463,16468597:37890292,14208860,0 -) -k1,21475:6760463,16468597:-37890292 -) -) -g1,21475:32453314,16468597 -) -) -) -g1,21476:32453339,16468597 -k1,21476:32583029,16468597:129690 -) -(1,21483:6630773,17333677:25952256,513147,134348 -h1,21482:6630773,17333677:983040,0,0 -k1,21482:10326217,17333677:177471 -k1,21482:12769923,17333677:177472 -k1,21482:15707770,17333677:177471 -k1,21482:18116743,17333677:177472 -k1,21482:21320011,17333677:177471 -k1,21482:22445134,17333677:177472 -k1,21482:23641690,17333677:177471 -k1,21482:27008799,17333677:177472 -k1,21482:30581690,17333677:177471 -k1,21482:31418454,17333677:177472 -k1,21482:32583029,17333677:0 -) -(1,21483:6630773,18198757:25952256,513147,126483 -k1,21482:8879464,18198757:230837 -k1,21482:10152322,18198757:230836 -k1,21482:13218246,18198757:230837 -k1,21482:16144578,18198757:230836 -(1,21482:16144578,18198757:0,452978,115847 -r1,21525:19316538,18198757:3171960,568825,115847 -k1,21482:16144578,18198757:-3171960 -) -(1,21482:16144578,18198757:3171960,452978,115847 -k1,21482:16144578,18198757:3277 -h1,21482:19313261,18198757:0,411205,112570 -) -k1,21482:19547375,18198757:230837 -k1,21482:20882493,18198757:230836 -k1,21482:21861096,18198757:230837 -k1,21482:23605158,18198757:230836 -k1,21482:24487423,18198757:230837 -k1,21482:27013330,18198757:230836 -k1,21482:28428403,18198757:230837 -k1,21482:30503422,18198757:230836 -k1,21482:31420421,18198757:230837 -k1,21483:32583029,18198757:0 -) -(1,21483:6630773,19063837:25952256,513147,134348 -k1,21482:9631685,19063837:240536 -k1,21482:11570259,19063837:240536 -k1,21482:12829880,19063837:240536 -k1,21482:15081061,19063837:240536 -k1,21482:17906992,19063837:240536 -k1,21482:19715150,19063837:240537 -(1,21482:19715150,19063837:0,452978,115847 -r1,21525:21128551,19063837:1413401,568825,115847 -k1,21482:19715150,19063837:-1413401 -) -(1,21482:19715150,19063837:1413401,452978,115847 -k1,21482:19715150,19063837:3277 -h1,21482:21125274,19063837:0,411205,112570 -) -k1,21482:21369087,19063837:240536 -k1,21482:22601183,19063837:240536 -k1,21482:26039221,19063837:240536 -k1,21482:26965919,19063837:240536 -k1,21482:29690270,19063837:240536 -k1,21482:32583029,19063837:0 -) -(1,21483:6630773,19928917:25952256,513147,126483 -g1,21482:8189219,19928917 -g1,21482:13825970,19928917 -g1,21482:14556696,19928917 -g1,21482:17127673,19928917 -g1,21482:18702503,19928917 -g1,21482:19553160,19928917 -g1,21482:20771474,19928917 -g1,21482:22154939,19928917 -k1,21483:32583029,19928917:8531478 -g1,21483:32583029,19928917 -) -v1,21485:6630773,20613772:0,393216,0 -(1,21492:6630773,22975989:25952256,2755433,196608 -g1,21492:6630773,22975989 -g1,21492:6630773,22975989 -g1,21492:6434165,22975989 -(1,21492:6434165,22975989:0,2755433,196608 -r1,21525:32779637,22975989:26345472,2952041,196608 -k1,21492:6434165,22975989:-26345472 -) -(1,21492:6434165,22975989:26345472,2755433,196608 -[1,21492:6630773,22975989:25952256,2558825,0 -(1,21487:6630773,20815178:25952256,398014,106246 -(1,21486:6630773,20815178:0,0,0 -g1,21486:6630773,20815178 -g1,21486:6630773,20815178 -g1,21486:6303093,20815178 -(1,21486:6303093,20815178:0,0,0 -) -g1,21486:6630773,20815178 -) -g1,21487:7626635,20815178 -k1,21487:7626635,20815178:0 -h1,21487:8290543,20815178:0,0,0 -k1,21487:32583029,20815178:24292486 -g1,21487:32583029,20815178 -) -(1,21488:6630773,21500033:25952256,431045,112852 -h1,21488:6630773,21500033:0,0,0 -g1,21488:6962727,21500033 -g1,21488:7294681,21500033 -g1,21488:11278129,21500033 -g1,21488:11942037,21500033 -g1,21488:15925484,21500033 -g1,21488:18581116,21500033 -g1,21488:19245024,21500033 -g1,21488:21236748,21500033 -g1,21488:21900656,21500033 -g1,21488:22896518,21500033 -g1,21488:23560426,21500033 -g1,21488:24224334,21500033 -g1,21488:24888242,21500033 -g1,21488:25552150,21500033 -g1,21488:28539736,21500033 -h1,21488:28871690,21500033:0,0,0 -k1,21488:32583029,21500033:3711339 -g1,21488:32583029,21500033 -) -(1,21489:6630773,22184888:25952256,424439,112852 -h1,21489:6630773,22184888:0,0,0 -g1,21489:6962727,22184888 -g1,21489:7294681,22184888 -g1,21489:11610082,22184888 -h1,21489:11942036,22184888:0,0,0 -k1,21489:32583028,22184888:20640992 -g1,21489:32583028,22184888 -) -(1,21490:6630773,22869743:25952256,424439,106246 -h1,21490:6630773,22869743:0,0,0 -g1,21490:6962727,22869743 -g1,21490:7294681,22869743 -g1,21490:15925484,22869743 -g1,21490:16589392,22869743 -h1,21490:19245023,22869743:0,0,0 -k1,21490:32583029,22869743:13338006 -g1,21490:32583029,22869743 -) -] -) -g1,21492:32583029,22975989 -g1,21492:6630773,22975989 -g1,21492:6630773,22975989 -g1,21492:32583029,22975989 -g1,21492:32583029,22975989 -) -h1,21492:6630773,23172597:0,0,0 -(1,21498:6630773,23857452:25952256,513147,126483 -h1,21496:6630773,23857452:983040,0,0 -k1,21496:8880293,23857452:224458 -k1,21496:12060425,23857452:224458 -k1,21496:15310681,23857452:224459 -(1,21496:15310681,23857452:0,452978,115847 -r1,21525:18130930,23857452:2820249,568825,115847 -k1,21496:15310681,23857452:-2820249 -) -(1,21496:15310681,23857452:2820249,452978,115847 -k1,21496:15310681,23857452:3277 -h1,21496:18127653,23857452:0,411205,112570 -) -k1,21496:18355388,23857452:224458 -k1,21496:19771291,23857452:224458 -(1,21496:19771291,23857452:0,452978,115847 -r1,21525:22239828,23857452:2468537,568825,115847 -k1,21496:19771291,23857452:-2468537 -) -(1,21496:19771291,23857452:2468537,452978,115847 -k1,21496:19771291,23857452:3277 -h1,21496:22236551,23857452:0,411205,112570 -) -k1,21496:22464286,23857452:224458 -k1,21496:23793026,23857452:224458 -k1,21496:24765250,23857452:224458 -k1,21496:26502935,23857452:224459 -k1,21496:27378821,23857452:224458 -k1,21496:29783662,23857452:224458 -k1,21496:31027205,23857452:224458 -k1,21498:32583029,23857452:0 -) -(1,21498:6630773,24542307:25952256,513147,126483 -k1,21496:8298617,24542307:301418 -k1,21496:9216073,24542307:301418 -k1,21496:10536576,24542307:301418 -k1,21496:12682177,24542307:301418 -k1,21496:13669758,24542307:301419 -k1,21496:15484402,24542307:301418 -k1,21496:16733471,24542307:301418 -k1,21496:19990563,24542307:301418 -k1,21496:23081849,24542307:301418 -(1,21496:23081849,24542307:0,459977,115847 -r1,21525:29770927,24542307:6689078,575824,115847 -k1,21496:23081849,24542307:-6689078 -) -(1,21496:23081849,24542307:6689078,459977,115847 -k1,21496:23081849,24542307:3277 -h1,21496:29767650,24542307:0,411205,112570 -) -k1,21496:30072345,24542307:301418 -k1,21496:32583029,24542307:0 -) -(1,21498:6630773,25227162:25952256,513147,134348 -k1,21496:9636745,25227162:189890 -k1,21496:11562029,25227162:189891 -k1,21496:15043792,25227162:189890 -k1,21496:15892975,25227162:189891 -k1,21496:19512364,25227162:189890 -k1,21496:20649906,25227162:189891 -k1,21496:28680523,25227162:189890 -k1,21496:30946595,25227162:189891 -k1,21498:32583029,25227162:0 -) -(1,21498:6630773,25912017:25952256,513147,122846 -k1,21496:8684972,25912017:225745 -k1,21496:12110185,25912017:225745 -(1,21496:12110185,25912017:0,452978,115847 -r1,21525:27240348,25912017:15130163,568825,115847 -k1,21496:12110185,25912017:-15130163 -) -(1,21496:12110185,25912017:15130163,452978,115847 -g1,21496:20202834,25912017 -g1,21496:20906258,25912017 -h1,21496:27237071,25912017:0,411205,112570 -) -k1,21496:27639763,25912017:225745 -(1,21496:27639763,25912017:0,452978,122846 -r1,21525:31515147,25912017:3875384,575824,122846 -k1,21496:27639763,25912017:-3875384 -) -(1,21496:27639763,25912017:3875384,452978,122846 -k1,21496:27639763,25912017:3277 -h1,21496:31511870,25912017:0,411205,112570 -) -k1,21496:31914562,25912017:225745 -k1,21498:32583029,25912017:0 -) -(1,21498:6630773,26596872:25952256,505283,126483 -(1,21496:6630773,26596872:0,452978,122846 -r1,21525:19298953,26596872:12668180,575824,122846 -k1,21496:6630773,26596872:-12668180 -) -(1,21496:6630773,26596872:12668180,452978,122846 -g1,21496:14723422,26596872 -g1,21496:15426846,26596872 -h1,21496:19295676,26596872:0,411205,112570 -) -k1,21496:19585006,26596872:286053 -k1,21496:22301134,26596872:286053 -k1,21496:24289157,26596872:286053 -k1,21496:27161915,26596872:286052 -k1,21496:28265857,26596872:286053 -k1,21496:30627435,26596872:286053 -k1,21496:32583029,26596872:0 -) -(1,21498:6630773,27281727:25952256,513147,7863 -g1,21496:8522142,27281727 -g1,21496:9380663,27281727 -g1,21496:11276619,27281727 -g1,21496:14501645,27281727 -g1,21496:15805156,27281727 -g1,21496:16752151,27281727 -g1,21496:18928601,27281727 -g1,21496:20521781,27281727 -g1,21496:25532663,27281727 -g1,21496:29302293,27281727 -g1,21496:31577703,27281727 -k1,21498:32583029,27281727:1005326 -g1,21498:32583029,27281727 -) -v1,21498:6630773,27966582:0,393216,0 -(1,21506:6630773,31030169:25952256,3456803,196608 -g1,21506:6630773,31030169 -g1,21506:6630773,31030169 -g1,21506:6434165,31030169 -(1,21506:6434165,31030169:0,3456803,196608 -r1,21525:32779637,31030169:26345472,3653411,196608 -k1,21506:6434165,31030169:-26345472 -) -(1,21506:6434165,31030169:26345472,3456803,196608 -[1,21506:6630773,31030169:25952256,3260195,0 -(1,21500:6630773,28177897:25952256,407923,106246 -(1,21499:6630773,28177897:0,0,0 -g1,21499:6630773,28177897 -g1,21499:6630773,28177897 -g1,21499:6303093,28177897 -(1,21499:6303093,28177897:0,0,0 -) -g1,21499:6630773,28177897 -) -g1,21500:7626635,28177897 -k1,21500:7626635,28177897:0 -h1,21500:8290543,28177897:0,0,0 -k1,21500:32583029,28177897:24292486 -g1,21500:32583029,28177897 -) -(1,21501:6630773,28862752:25952256,431045,112852 -h1,21501:6630773,28862752:0,0,0 -g1,21501:6962727,28862752 -g1,21501:7294681,28862752 -g1,21501:11278129,28862752 -g1,21501:11942037,28862752 -g1,21501:15925484,28862752 -g1,21501:18581116,28862752 -g1,21501:19245024,28862752 -g1,21501:21236748,28862752 -g1,21501:21900656,28862752 -g1,21501:22896518,28862752 -g1,21501:23560426,28862752 -g1,21501:24224334,28862752 -g1,21501:24888242,28862752 -g1,21501:25552150,28862752 -g1,21501:27875828,28862752 -h1,21501:28207782,28862752:0,0,0 -k1,21501:32583029,28862752:4375247 -g1,21501:32583029,28862752 -) -(1,21502:6630773,29547607:25952256,424439,112852 -h1,21502:6630773,29547607:0,0,0 -g1,21502:6962727,29547607 -g1,21502:7294681,29547607 -g1,21502:11610082,29547607 -h1,21502:11942036,29547607:0,0,0 -k1,21502:32583028,29547607:20640992 -g1,21502:32583028,29547607 -) -(1,21503:6630773,30232462:25952256,424439,106246 -h1,21503:6630773,30232462:0,0,0 -g1,21503:6962727,30232462 -g1,21503:7294681,30232462 -g1,21503:15261576,30232462 -g1,21503:15925484,30232462 -k1,21503:15925484,30232462:0 -h1,21503:18249162,30232462:0,0,0 -k1,21503:32583029,30232462:14333867 -g1,21503:32583029,30232462 -) -(1,21504:6630773,30917317:25952256,424439,112852 -h1,21504:6630773,30917317:0,0,0 -g1,21504:6962727,30917317 -g1,21504:7294681,30917317 -g1,21504:7626635,30917317 -g1,21504:7958589,30917317 -g1,21504:8290543,30917317 -g1,21504:8622497,30917317 -g1,21504:8954451,30917317 -g1,21504:9286405,30917317 -g1,21504:9618359,30917317 -g1,21504:9950313,30917317 -g1,21504:10282267,30917317 -g1,21504:10614221,30917317 -g1,21504:10946175,30917317 -g1,21504:11278129,30917317 -g1,21504:11610083,30917317 -g1,21504:11942037,30917317 -g1,21504:12273991,30917317 -g1,21504:12605945,30917317 -g1,21504:12937899,30917317 -g1,21504:13269853,30917317 -g1,21504:13601807,30917317 -g1,21504:15925485,30917317 -g1,21504:16589393,30917317 -g1,21504:24224333,30917317 -g1,21504:24888241,30917317 -k1,21504:24888241,30917317:0 -h1,21504:29203643,30917317:0,0,0 -k1,21504:32583029,30917317:3379386 -g1,21504:32583029,30917317 -) -] -) -g1,21506:32583029,31030169 -g1,21506:6630773,31030169 -g1,21506:6630773,31030169 -g1,21506:32583029,31030169 -g1,21506:32583029,31030169 -) -h1,21506:6630773,31226777:0,0,0 -v1,21510:6630773,31911632:0,393216,0 -(1,21514:6630773,32229193:25952256,710777,196608 -g1,21514:6630773,32229193 -g1,21514:6630773,32229193 -g1,21514:6434165,32229193 -(1,21514:6434165,32229193:0,710777,196608 -r1,21525:32779637,32229193:26345472,907385,196608 -k1,21514:6434165,32229193:-26345472 -) -(1,21514:6434165,32229193:26345472,710777,196608 -[1,21514:6630773,32229193:25952256,514169,0 -(1,21512:6630773,32122947:25952256,407923,106246 -(1,21511:6630773,32122947:0,0,0 -g1,21511:6630773,32122947 -g1,21511:6630773,32122947 -g1,21511:6303093,32122947 -(1,21511:6303093,32122947:0,0,0 -) -g1,21511:6630773,32122947 -) -g1,21512:7626635,32122947 -g1,21512:8290543,32122947 -h1,21512:8954451,32122947:0,0,0 -k1,21512:32583029,32122947:23628578 -g1,21512:32583029,32122947 -) -] -) -g1,21514:32583029,32229193 -g1,21514:6630773,32229193 -g1,21514:6630773,32229193 -g1,21514:32583029,32229193 -g1,21514:32583029,32229193 -) -h1,21514:6630773,32425801:0,0,0 -(1,21517:6630773,42126132:25952256,9634795,0 -k1,21517:6760463,42126132:129690 -h1,21516:6760463,42126132:0,0,0 -(1,21516:6760463,42126132:25692876,9634795,0 -(1,21516:6760463,42126132:25692851,9634819,0 -(1,21516:6760463,42126132:25692851,9634819,0 -(1,21516:6760463,42126132:0,9634819,0 -(1,21516:6760463,42126132:0,14208860,0 -(1,21516:6760463,42126132:37890292,14208860,0 -) -k1,21516:6760463,42126132:-37890292 -) -) -g1,21516:32453314,42126132 -) -) -) -g1,21517:32453339,42126132 -k1,21517:32583029,42126132:129690 +(1,21471:6434165,6571658:26345472,710777,196608 +[1,21471:6630773,6571658:25952256,514169,0 +(1,21469:6630773,6465412:25952256,407923,106246 +(1,21468:6630773,6465412:0,0,0 +g1,21468:6630773,6465412 +g1,21468:6630773,6465412 +g1,21468:6303093,6465412 +(1,21468:6303093,6465412:0,0,0 +) +g1,21468:6630773,6465412 +) +g1,21469:7626635,6465412 +g1,21469:8290543,6465412 +h1,21469:8954451,6465412:0,0,0 +k1,21469:32583029,6465412:23628578 +g1,21469:32583029,6465412 +) +] +) +g1,21471:32583029,6571658 +g1,21471:6630773,6571658 +g1,21471:6630773,6571658 +g1,21471:32583029,6571658 +g1,21471:32583029,6571658 +) +h1,21471:6630773,6768266:0,0,0 +(1,21474:6630773,16468597:25952256,9634795,0 +k1,21474:6760463,16468597:129690 +h1,21473:6760463,16468597:0,0,0 +(1,21473:6760463,16468597:25692876,9634795,0 +(1,21473:6760463,16468597:25692851,9634819,0 +(1,21473:6760463,16468597:25692851,9634819,0 +(1,21473:6760463,16468597:0,9634819,0 +(1,21473:6760463,16468597:0,14208860,0 +(1,21473:6760463,16468597:37890292,14208860,0 +) +k1,21473:6760463,16468597:-37890292 +) +) +g1,21473:32453314,16468597 +) +) +) +g1,21474:32453339,16468597 +k1,21474:32583029,16468597:129690 +) +(1,21481:6630773,17333677:25952256,513147,134348 +h1,21480:6630773,17333677:983040,0,0 +k1,21480:10326217,17333677:177471 +k1,21480:12769923,17333677:177472 +k1,21480:15707770,17333677:177471 +k1,21480:18116743,17333677:177472 +k1,21480:21320011,17333677:177471 +k1,21480:22445134,17333677:177472 +k1,21480:23641690,17333677:177471 +k1,21480:27008799,17333677:177472 +k1,21480:30581690,17333677:177471 +k1,21480:31418454,17333677:177472 +k1,21480:32583029,17333677:0 +) +(1,21481:6630773,18198757:25952256,513147,126483 +k1,21480:8879464,18198757:230837 +k1,21480:10152322,18198757:230836 +k1,21480:13218246,18198757:230837 +k1,21480:16144578,18198757:230836 +(1,21480:16144578,18198757:0,452978,115847 +r1,21523:19316538,18198757:3171960,568825,115847 +k1,21480:16144578,18198757:-3171960 +) +(1,21480:16144578,18198757:3171960,452978,115847 +k1,21480:16144578,18198757:3277 +h1,21480:19313261,18198757:0,411205,112570 +) +k1,21480:19547375,18198757:230837 +k1,21480:20882493,18198757:230836 +k1,21480:21861096,18198757:230837 +k1,21480:23605158,18198757:230836 +k1,21480:24487423,18198757:230837 +k1,21480:27013330,18198757:230836 +k1,21480:28428403,18198757:230837 +k1,21480:30503422,18198757:230836 +k1,21480:31420421,18198757:230837 +k1,21481:32583029,18198757:0 +) +(1,21481:6630773,19063837:25952256,513147,134348 +k1,21480:9631685,19063837:240536 +k1,21480:11570259,19063837:240536 +k1,21480:12829880,19063837:240536 +k1,21480:15081061,19063837:240536 +k1,21480:17906992,19063837:240536 +k1,21480:19715150,19063837:240537 +(1,21480:19715150,19063837:0,452978,115847 +r1,21523:21128551,19063837:1413401,568825,115847 +k1,21480:19715150,19063837:-1413401 +) +(1,21480:19715150,19063837:1413401,452978,115847 +k1,21480:19715150,19063837:3277 +h1,21480:21125274,19063837:0,411205,112570 +) +k1,21480:21369087,19063837:240536 +k1,21480:22601183,19063837:240536 +k1,21480:26039221,19063837:240536 +k1,21480:26965919,19063837:240536 +k1,21480:29690270,19063837:240536 +k1,21480:32583029,19063837:0 +) +(1,21481:6630773,19928917:25952256,513147,126483 +g1,21480:8189219,19928917 +g1,21480:13825970,19928917 +g1,21480:14556696,19928917 +g1,21480:17127673,19928917 +g1,21480:18702503,19928917 +g1,21480:19553160,19928917 +g1,21480:20771474,19928917 +g1,21480:22154939,19928917 +k1,21481:32583029,19928917:8531478 +g1,21481:32583029,19928917 +) +v1,21483:6630773,20613772:0,393216,0 +(1,21490:6630773,22975989:25952256,2755433,196608 +g1,21490:6630773,22975989 +g1,21490:6630773,22975989 +g1,21490:6434165,22975989 +(1,21490:6434165,22975989:0,2755433,196608 +r1,21523:32779637,22975989:26345472,2952041,196608 +k1,21490:6434165,22975989:-26345472 +) +(1,21490:6434165,22975989:26345472,2755433,196608 +[1,21490:6630773,22975989:25952256,2558825,0 +(1,21485:6630773,20815178:25952256,398014,106246 +(1,21484:6630773,20815178:0,0,0 +g1,21484:6630773,20815178 +g1,21484:6630773,20815178 +g1,21484:6303093,20815178 +(1,21484:6303093,20815178:0,0,0 +) +g1,21484:6630773,20815178 +) +g1,21485:7626635,20815178 +k1,21485:7626635,20815178:0 +h1,21485:8290543,20815178:0,0,0 +k1,21485:32583029,20815178:24292486 +g1,21485:32583029,20815178 +) +(1,21486:6630773,21500033:25952256,431045,112852 +h1,21486:6630773,21500033:0,0,0 +g1,21486:6962727,21500033 +g1,21486:7294681,21500033 +g1,21486:11278129,21500033 +g1,21486:11942037,21500033 +g1,21486:15925484,21500033 +g1,21486:18581116,21500033 +g1,21486:19245024,21500033 +g1,21486:21236748,21500033 +g1,21486:21900656,21500033 +g1,21486:22896518,21500033 +g1,21486:23560426,21500033 +g1,21486:24224334,21500033 +g1,21486:24888242,21500033 +g1,21486:25552150,21500033 +g1,21486:28539736,21500033 +h1,21486:28871690,21500033:0,0,0 +k1,21486:32583029,21500033:3711339 +g1,21486:32583029,21500033 +) +(1,21487:6630773,22184888:25952256,424439,112852 +h1,21487:6630773,22184888:0,0,0 +g1,21487:6962727,22184888 +g1,21487:7294681,22184888 +g1,21487:11610082,22184888 +h1,21487:11942036,22184888:0,0,0 +k1,21487:32583028,22184888:20640992 +g1,21487:32583028,22184888 +) +(1,21488:6630773,22869743:25952256,424439,106246 +h1,21488:6630773,22869743:0,0,0 +g1,21488:6962727,22869743 +g1,21488:7294681,22869743 +g1,21488:15925484,22869743 +g1,21488:16589392,22869743 +h1,21488:19245023,22869743:0,0,0 +k1,21488:32583029,22869743:13338006 +g1,21488:32583029,22869743 +) +] +) +g1,21490:32583029,22975989 +g1,21490:6630773,22975989 +g1,21490:6630773,22975989 +g1,21490:32583029,22975989 +g1,21490:32583029,22975989 +) +h1,21490:6630773,23172597:0,0,0 +(1,21496:6630773,23857452:25952256,513147,126483 +h1,21494:6630773,23857452:983040,0,0 +k1,21494:8880293,23857452:224458 +k1,21494:12060425,23857452:224458 +k1,21494:15310681,23857452:224459 +(1,21494:15310681,23857452:0,452978,115847 +r1,21523:18130930,23857452:2820249,568825,115847 +k1,21494:15310681,23857452:-2820249 +) +(1,21494:15310681,23857452:2820249,452978,115847 +k1,21494:15310681,23857452:3277 +h1,21494:18127653,23857452:0,411205,112570 +) +k1,21494:18355388,23857452:224458 +k1,21494:19771291,23857452:224458 +(1,21494:19771291,23857452:0,452978,115847 +r1,21523:22239828,23857452:2468537,568825,115847 +k1,21494:19771291,23857452:-2468537 +) +(1,21494:19771291,23857452:2468537,452978,115847 +k1,21494:19771291,23857452:3277 +h1,21494:22236551,23857452:0,411205,112570 +) +k1,21494:22464286,23857452:224458 +k1,21494:23793026,23857452:224458 +k1,21494:24765250,23857452:224458 +k1,21494:26502935,23857452:224459 +k1,21494:27378821,23857452:224458 +k1,21494:29783662,23857452:224458 +k1,21494:31027205,23857452:224458 +k1,21496:32583029,23857452:0 +) +(1,21496:6630773,24542307:25952256,513147,126483 +k1,21494:8298617,24542307:301418 +k1,21494:9216073,24542307:301418 +k1,21494:10536576,24542307:301418 +k1,21494:12682177,24542307:301418 +k1,21494:13669758,24542307:301419 +k1,21494:15484402,24542307:301418 +k1,21494:16733471,24542307:301418 +k1,21494:19990563,24542307:301418 +k1,21494:23081849,24542307:301418 +(1,21494:23081849,24542307:0,459977,115847 +r1,21523:29770927,24542307:6689078,575824,115847 +k1,21494:23081849,24542307:-6689078 +) +(1,21494:23081849,24542307:6689078,459977,115847 +k1,21494:23081849,24542307:3277 +h1,21494:29767650,24542307:0,411205,112570 +) +k1,21494:30072345,24542307:301418 +k1,21494:32583029,24542307:0 +) +(1,21496:6630773,25227162:25952256,513147,134348 +k1,21494:9636745,25227162:189890 +k1,21494:11562029,25227162:189891 +k1,21494:15043792,25227162:189890 +k1,21494:15892975,25227162:189891 +k1,21494:19512364,25227162:189890 +k1,21494:20649906,25227162:189891 +k1,21494:28680523,25227162:189890 +k1,21494:30946595,25227162:189891 +k1,21496:32583029,25227162:0 +) +(1,21496:6630773,25912017:25952256,513147,122846 +k1,21494:8684972,25912017:225745 +k1,21494:12110185,25912017:225745 +(1,21494:12110185,25912017:0,452978,115847 +r1,21523:27240348,25912017:15130163,568825,115847 +k1,21494:12110185,25912017:-15130163 +) +(1,21494:12110185,25912017:15130163,452978,115847 +g1,21494:20202834,25912017 +g1,21494:20906258,25912017 +h1,21494:27237071,25912017:0,411205,112570 +) +k1,21494:27639763,25912017:225745 +(1,21494:27639763,25912017:0,452978,122846 +r1,21523:31515147,25912017:3875384,575824,122846 +k1,21494:27639763,25912017:-3875384 +) +(1,21494:27639763,25912017:3875384,452978,122846 +k1,21494:27639763,25912017:3277 +h1,21494:31511870,25912017:0,411205,112570 +) +k1,21494:31914562,25912017:225745 +k1,21496:32583029,25912017:0 +) +(1,21496:6630773,26596872:25952256,505283,126483 +(1,21494:6630773,26596872:0,452978,122846 +r1,21523:19298953,26596872:12668180,575824,122846 +k1,21494:6630773,26596872:-12668180 +) +(1,21494:6630773,26596872:12668180,452978,122846 +g1,21494:14723422,26596872 +g1,21494:15426846,26596872 +h1,21494:19295676,26596872:0,411205,112570 +) +k1,21494:19585006,26596872:286053 +k1,21494:22301134,26596872:286053 +k1,21494:24289157,26596872:286053 +k1,21494:27161915,26596872:286052 +k1,21494:28265857,26596872:286053 +k1,21494:30627435,26596872:286053 +k1,21494:32583029,26596872:0 +) +(1,21496:6630773,27281727:25952256,513147,7863 +g1,21494:8522142,27281727 +g1,21494:9380663,27281727 +g1,21494:11276619,27281727 +g1,21494:14501645,27281727 +g1,21494:15805156,27281727 +g1,21494:16752151,27281727 +g1,21494:18928601,27281727 +g1,21494:20521781,27281727 +g1,21494:25532663,27281727 +g1,21494:29302293,27281727 +g1,21494:31577703,27281727 +k1,21496:32583029,27281727:1005326 +g1,21496:32583029,27281727 +) +v1,21496:6630773,27966582:0,393216,0 +(1,21504:6630773,31030169:25952256,3456803,196608 +g1,21504:6630773,31030169 +g1,21504:6630773,31030169 +g1,21504:6434165,31030169 +(1,21504:6434165,31030169:0,3456803,196608 +r1,21523:32779637,31030169:26345472,3653411,196608 +k1,21504:6434165,31030169:-26345472 +) +(1,21504:6434165,31030169:26345472,3456803,196608 +[1,21504:6630773,31030169:25952256,3260195,0 +(1,21498:6630773,28177897:25952256,407923,106246 +(1,21497:6630773,28177897:0,0,0 +g1,21497:6630773,28177897 +g1,21497:6630773,28177897 +g1,21497:6303093,28177897 +(1,21497:6303093,28177897:0,0,0 +) +g1,21497:6630773,28177897 +) +g1,21498:7626635,28177897 +k1,21498:7626635,28177897:0 +h1,21498:8290543,28177897:0,0,0 +k1,21498:32583029,28177897:24292486 +g1,21498:32583029,28177897 +) +(1,21499:6630773,28862752:25952256,431045,112852 +h1,21499:6630773,28862752:0,0,0 +g1,21499:6962727,28862752 +g1,21499:7294681,28862752 +g1,21499:11278129,28862752 +g1,21499:11942037,28862752 +g1,21499:15925484,28862752 +g1,21499:18581116,28862752 +g1,21499:19245024,28862752 +g1,21499:21236748,28862752 +g1,21499:21900656,28862752 +g1,21499:22896518,28862752 +g1,21499:23560426,28862752 +g1,21499:24224334,28862752 +g1,21499:24888242,28862752 +g1,21499:25552150,28862752 +g1,21499:27875828,28862752 +h1,21499:28207782,28862752:0,0,0 +k1,21499:32583029,28862752:4375247 +g1,21499:32583029,28862752 +) +(1,21500:6630773,29547607:25952256,424439,112852 +h1,21500:6630773,29547607:0,0,0 +g1,21500:6962727,29547607 +g1,21500:7294681,29547607 +g1,21500:11610082,29547607 +h1,21500:11942036,29547607:0,0,0 +k1,21500:32583028,29547607:20640992 +g1,21500:32583028,29547607 +) +(1,21501:6630773,30232462:25952256,424439,106246 +h1,21501:6630773,30232462:0,0,0 +g1,21501:6962727,30232462 +g1,21501:7294681,30232462 +g1,21501:15261576,30232462 +g1,21501:15925484,30232462 +k1,21501:15925484,30232462:0 +h1,21501:18249162,30232462:0,0,0 +k1,21501:32583029,30232462:14333867 +g1,21501:32583029,30232462 +) +(1,21502:6630773,30917317:25952256,424439,112852 +h1,21502:6630773,30917317:0,0,0 +g1,21502:6962727,30917317 +g1,21502:7294681,30917317 +g1,21502:7626635,30917317 +g1,21502:7958589,30917317 +g1,21502:8290543,30917317 +g1,21502:8622497,30917317 +g1,21502:8954451,30917317 +g1,21502:9286405,30917317 +g1,21502:9618359,30917317 +g1,21502:9950313,30917317 +g1,21502:10282267,30917317 +g1,21502:10614221,30917317 +g1,21502:10946175,30917317 +g1,21502:11278129,30917317 +g1,21502:11610083,30917317 +g1,21502:11942037,30917317 +g1,21502:12273991,30917317 +g1,21502:12605945,30917317 +g1,21502:12937899,30917317 +g1,21502:13269853,30917317 +g1,21502:13601807,30917317 +g1,21502:15925485,30917317 +g1,21502:16589393,30917317 +g1,21502:24224333,30917317 +g1,21502:24888241,30917317 +k1,21502:24888241,30917317:0 +h1,21502:29203643,30917317:0,0,0 +k1,21502:32583029,30917317:3379386 +g1,21502:32583029,30917317 +) +] +) +g1,21504:32583029,31030169 +g1,21504:6630773,31030169 +g1,21504:6630773,31030169 +g1,21504:32583029,31030169 +g1,21504:32583029,31030169 +) +h1,21504:6630773,31226777:0,0,0 +v1,21508:6630773,31911632:0,393216,0 +(1,21512:6630773,32229193:25952256,710777,196608 +g1,21512:6630773,32229193 +g1,21512:6630773,32229193 +g1,21512:6434165,32229193 +(1,21512:6434165,32229193:0,710777,196608 +r1,21523:32779637,32229193:26345472,907385,196608 +k1,21512:6434165,32229193:-26345472 +) +(1,21512:6434165,32229193:26345472,710777,196608 +[1,21512:6630773,32229193:25952256,514169,0 +(1,21510:6630773,32122947:25952256,407923,106246 +(1,21509:6630773,32122947:0,0,0 +g1,21509:6630773,32122947 +g1,21509:6630773,32122947 +g1,21509:6303093,32122947 +(1,21509:6303093,32122947:0,0,0 +) +g1,21509:6630773,32122947 +) +g1,21510:7626635,32122947 +g1,21510:8290543,32122947 +h1,21510:8954451,32122947:0,0,0 +k1,21510:32583029,32122947:23628578 +g1,21510:32583029,32122947 +) +] +) +g1,21512:32583029,32229193 +g1,21512:6630773,32229193 +g1,21512:6630773,32229193 +g1,21512:32583029,32229193 +g1,21512:32583029,32229193 +) +h1,21512:6630773,32425801:0,0,0 +(1,21515:6630773,42126132:25952256,9634795,0 +k1,21515:6760463,42126132:129690 +h1,21514:6760463,42126132:0,0,0 +(1,21514:6760463,42126132:25692876,9634795,0 +(1,21514:6760463,42126132:25692851,9634819,0 +(1,21514:6760463,42126132:25692851,9634819,0 +(1,21514:6760463,42126132:0,9634819,0 +(1,21514:6760463,42126132:0,14208860,0 +(1,21514:6760463,42126132:37890292,14208860,0 +) +k1,21514:6760463,42126132:-37890292 +) +) +g1,21514:32453314,42126132 +) +) +) +g1,21515:32453339,42126132 +k1,21515:32583029,42126132:129690 ) ] -(1,21525:32583029,45706769:0,0,0 -g1,21525:32583029,45706769 +(1,21523:32583029,45706769:0,0,0 +g1,21523:32583029,45706769 ) ) ] -(1,21525:6630773,47279633:25952256,0,0 -h1,21525:6630773,47279633:25952256,0,0 +(1,21523:6630773,47279633:25952256,0,0 +h1,21523:6630773,47279633:25952256,0,0 ) ] -(1,21525:4262630,4025873:0,0,0 -[1,21525:-473656,4025873:0,0,0 -(1,21525:-473656,-710413:0,0,0 -(1,21525:-473656,-710413:0,0,0 -g1,21525:-473656,-710413 +(1,21523:4262630,4025873:0,0,0 +[1,21523:-473656,4025873:0,0,0 +(1,21523:-473656,-710413:0,0,0 +(1,21523:-473656,-710413:0,0,0 +g1,21523:-473656,-710413 ) -g1,21525:-473656,-710413 +g1,21523:-473656,-710413 ) ] ) ] !17462 -}363 -Input:3992:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3993:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3994:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:3995:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}364 Input:3996:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3997:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:3998:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -372691,819 +372895,819 @@ Input:4007:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4008:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4009:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4010:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4013:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4014:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{364 -[1,21569:4262630,47279633:28320399,43253760,0 -(1,21569:4262630,4025873:0,0,0 -[1,21569:-473656,4025873:0,0,0 -(1,21569:-473656,-710413:0,0,0 -(1,21569:-473656,-644877:0,0,0 -k1,21569:-473656,-644877:-65536 +{365 +[1,21567:4262630,47279633:28320399,43253760,0 +(1,21567:4262630,4025873:0,0,0 +[1,21567:-473656,4025873:0,0,0 +(1,21567:-473656,-710413:0,0,0 +(1,21567:-473656,-644877:0,0,0 +k1,21567:-473656,-644877:-65536 ) -(1,21569:-473656,4736287:0,0,0 -k1,21569:-473656,4736287:5209943 +(1,21567:-473656,4736287:0,0,0 +k1,21567:-473656,4736287:5209943 ) -g1,21569:-473656,-710413 +g1,21567:-473656,-710413 ) ] ) -[1,21569:6630773,47279633:25952256,43253760,0 -[1,21569:6630773,4812305:25952256,786432,0 -(1,21569:6630773,4812305:25952256,505283,11795 -(1,21569:6630773,4812305:25952256,505283,11795 -g1,21569:3078558,4812305 -[1,21569:3078558,4812305:0,0,0 -(1,21569:3078558,2439708:0,1703936,0 -k1,21569:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21569:2537886,2439708:1179648,16384,0 +[1,21567:6630773,47279633:25952256,43253760,0 +[1,21567:6630773,4812305:25952256,786432,0 +(1,21567:6630773,4812305:25952256,505283,11795 +(1,21567:6630773,4812305:25952256,505283,11795 +g1,21567:3078558,4812305 +[1,21567:3078558,4812305:0,0,0 +(1,21567:3078558,2439708:0,1703936,0 +k1,21567:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21567:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21569:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21567:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21569:3078558,4812305:0,0,0 -(1,21569:3078558,2439708:0,1703936,0 -g1,21569:29030814,2439708 -g1,21569:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21569:36151628,1915420:16384,1179648,0 +[1,21567:3078558,4812305:0,0,0 +(1,21567:3078558,2439708:0,1703936,0 +g1,21567:29030814,2439708 +g1,21567:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21567:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21569:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21567:37855564,2439708:1179648,16384,0 ) ) -k1,21569:3078556,2439708:-34777008 +k1,21567:3078556,2439708:-34777008 ) ] -[1,21569:3078558,4812305:0,0,0 -(1,21569:3078558,49800853:0,16384,2228224 -k1,21569:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21569:2537886,49800853:1179648,16384,0 +[1,21567:3078558,4812305:0,0,0 +(1,21567:3078558,49800853:0,16384,2228224 +k1,21567:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21567:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21569:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21567:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21569:3078558,4812305:0,0,0 -(1,21569:3078558,49800853:0,16384,2228224 -g1,21569:29030814,49800853 -g1,21569:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21569:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +[1,21567:3078558,4812305:0,0,0 +(1,21567:3078558,49800853:0,16384,2228224 +g1,21567:29030814,49800853 +g1,21567:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21567:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21569:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21567:37855564,49800853:1179648,16384,0 ) -) -k1,21569:3078556,49800853:-34777008 -) -] -g1,21569:6630773,4812305 -g1,21569:6630773,4812305 -g1,21569:8724648,4812305 -k1,21569:31387652,4812305:22663004 -) -) -] -[1,21569:6630773,45706769:25952256,40108032,0 -(1,21569:6630773,45706769:25952256,40108032,0 -(1,21569:6630773,45706769:0,0,0 -g1,21569:6630773,45706769 -) -[1,21569:6630773,45706769:25952256,40108032,0 -v1,21527:6630773,6254097:0,393216,0 -(1,21528:6630773,11760738:25952256,5899857,0 -g1,21528:6630773,11760738 -g1,21528:6237557,11760738 -r1,21569:6368629,11760738:131072,5899857,0 -g1,21528:6567858,11760738 -g1,21528:6764466,11760738 -[1,21528:6764466,11760738:25818563,5899857,0 -(1,21528:6764466,6562395:25818563,701514,196608 -(1,21527:6764466,6562395:0,701514,196608 -r1,21569:7761522,6562395:997056,898122,196608 -k1,21527:6764466,6562395:-997056 -) -(1,21527:6764466,6562395:997056,701514,196608 -) -k1,21527:8026041,6562395:264519 -k1,21527:8353721,6562395:327680 -k1,21527:11408107,6562395:264518 -(1,21527:11408107,6562395:0,452978,115847 -r1,21569:16338627,6562395:4930520,568825,115847 -k1,21527:11408107,6562395:-4930520 -) -(1,21527:11408107,6562395:4930520,452978,115847 -k1,21527:11408107,6562395:3277 -h1,21527:16335350,6562395:0,411205,112570 -) -k1,21527:16603146,6562395:264519 -k1,21527:18059109,6562395:264518 -k1,21527:19342713,6562395:264519 -k1,21527:21809242,6562395:264519 -k1,21527:25099557,6562395:264518 -k1,21527:27125684,6562395:264519 -k1,21527:29419197,6562395:264518 -k1,21527:31326048,6562395:264519 -k1,21527:32583029,6562395:0 -) -(1,21528:6764466,7427475:25818563,513147,134348 -k1,21527:10110788,7427475:320525 -k1,21527:11865242,7427475:320526 -k1,21527:12995137,7427475:320525 -k1,21527:14334748,7427475:320526 -k1,21527:18057902,7427475:320525 -k1,21527:20583715,7427475:320526 -k1,21527:21555668,7427475:320525 -k1,21527:23688919,7427475:320525 -k1,21527:25200890,7427475:320526 -k1,21527:26540500,7427475:320525 -k1,21527:28871671,7427475:320526 -k1,21527:30572384,7427475:320525 -k1,21527:32583029,7427475:0 -) -(1,21528:6764466,8292555:25818563,513147,126483 -k1,21527:8163958,8292555:407932 -k1,21527:11267386,8292555:407932 -k1,21527:15261448,8292555:407932 -k1,21527:17437540,8292555:407931 -k1,21527:18461510,8292555:407932 -k1,21527:19888527,8292555:407932 -k1,21527:22957876,8292555:407932 -k1,21527:25221132,8292555:407932 -k1,21527:27095760,8292555:407932 -k1,21527:27969652,8292555:407931 -k1,21527:29396669,8292555:407932 -k1,21527:32583029,8292555:0 -) -(1,21528:6764466,9157635:25818563,513147,134348 -k1,21527:9204825,9157635:235072 -k1,21527:10126058,9157635:235071 -k1,21527:13433458,9157635:235072 -k1,21527:14319957,9157635:235071 -(1,21527:14319957,9157635:0,452978,115847 -r1,21569:16436782,9157635:2116825,568825,115847 -k1,21527:14319957,9157635:-2116825 -) -(1,21527:14319957,9157635:2116825,452978,115847 -k1,21527:14319957,9157635:3277 -h1,21527:16433505,9157635:0,411205,112570 -) -k1,21527:16671854,9157635:235072 -k1,21527:17438422,9157635:235071 -k1,21527:18029354,9157635:235072 -k1,21527:20959921,9157635:235071 -k1,21527:22468358,9157635:235072 -k1,21527:23722514,9157635:235071 -k1,21527:25637929,9157635:235072 -k1,21527:28361402,9157635:235071 -k1,21527:31839851,9157635:235072 -k1,21528:32583029,9157635:0 -) -(1,21528:6764466,10022715:25818563,513147,126483 -(1,21527:6764466,10022715:0,452978,115847 -r1,21569:13805257,10022715:7040791,568825,115847 -k1,21527:6764466,10022715:-7040791 -) -(1,21527:6764466,10022715:7040791,452978,115847 -k1,21527:6764466,10022715:3277 -h1,21527:13801980,10022715:0,411205,112570 -) -k1,21527:14080407,10022715:275150 -k1,21527:14887053,10022715:275149 -k1,21527:15932906,10022715:275150 -k1,21527:17004974,10022715:275150 -k1,21527:18413896,10022715:275149 -k1,21527:21384542,10022715:275150 -k1,21527:24741850,10022715:275150 -k1,21527:27367120,10022715:275149 -k1,21527:30865986,10022715:275150 -k1,21527:32583029,10022715:0 -) -(1,21528:6764466,10887795:25818563,513147,134348 -k1,21527:9925136,10887795:250216 -k1,21527:12136190,10887795:250217 -k1,21527:15613399,10887795:250216 -k1,21527:18889413,10887795:250217 -k1,21527:20424135,10887795:250216 -k1,21527:22270808,10887795:250216 -k1,21527:25289266,10887795:250217 -k1,21527:26190910,10887795:250216 -k1,21527:28185040,10887795:250217 -k1,21527:30002877,10887795:250216 -k1,21527:32583029,10887795:0 -) -(1,21528:6764466,11752875:25818563,505283,7863 -k1,21528:32583029,11752875:23551674 -g1,21528:32583029,11752875 -) -] -g1,21528:32583029,11760738 -) -h1,21528:6630773,11760738:0,0,0 -(1,21530:6630773,13412250:25952256,513147,7863 -(1,21530:6630773,13412250:0,0,0 -g1,21530:6630773,13412250 -) -g1,21530:11151446,13412250 -k1,21530:32583030,13412250:19444532 -g1,21530:32583030,13412250 -) -(1,21533:6630773,14670546:25952256,513147,126483 -k1,21532:8153726,14670546:347893 -k1,21532:10767198,14670546:347892 -k1,21532:13017601,14670546:347893 -k1,21532:14878720,14670546:347893 -k1,21532:15988141,14670546:347893 -k1,21532:17355118,14670546:347892 -(1,21532:17355118,14670546:0,414482,115847 -r1,21569:17713384,14670546:358266,530329,115847 -k1,21532:17355118,14670546:-358266 -) -(1,21532:17355118,14670546:358266,414482,115847 -k1,21532:17355118,14670546:3277 -h1,21532:17710107,14670546:0,411205,112570 -) -k1,21532:18061277,14670546:347893 -k1,21532:19600615,14670546:347893 -(1,21532:19600615,14670546:0,414482,115847 -r1,21569:19958881,14670546:358266,530329,115847 -k1,21532:19600615,14670546:-358266 -) -(1,21532:19600615,14670546:358266,414482,115847 -k1,21532:19600615,14670546:3277 -h1,21532:19955604,14670546:0,411205,112570 -) -k1,21532:20306774,14670546:347893 -k1,21532:24002900,14670546:347892 -(1,21532:24002900,14670546:0,452978,115847 -r1,21569:31043691,14670546:7040791,568825,115847 -k1,21532:24002900,14670546:-7040791 -) -(1,21532:24002900,14670546:7040791,452978,115847 -k1,21532:24002900,14670546:3277 -h1,21532:31040414,14670546:0,411205,112570 -) -k1,21532:31391584,14670546:347893 -k1,21533:32583029,14670546:0 -) -(1,21533:6630773,15535626:25952256,513147,126483 -(1,21532:6630773,15535626:0,452978,115847 -r1,21569:13671564,15535626:7040791,568825,115847 -k1,21532:6630773,15535626:-7040791 -) -(1,21532:6630773,15535626:7040791,452978,115847 -k1,21532:6630773,15535626:3277 -h1,21532:13668287,15535626:0,411205,112570 -) -k1,21532:14125123,15535626:279889 -k1,21532:16453011,15535626:279888 -k1,21532:17088760,15535626:279889 -k1,21532:21723515,15535626:279888 -k1,21532:26840616,15535626:279889 -k1,21532:29816000,15535626:279888 -k1,21532:30782051,15535626:279889 -k1,21532:31832642,15535626:279888 -k1,21533:32583029,15535626:0 -) -(1,21533:6630773,16400706:25952256,513147,134348 -k1,21532:9351549,16400706:292667 -k1,21532:10295644,16400706:292667 -(1,21532:10295644,16400706:0,414482,115847 -r1,21569:12060757,16400706:1765113,530329,115847 -k1,21532:10295644,16400706:-1765113 -) -(1,21532:10295644,16400706:1765113,414482,115847 -k1,21532:10295644,16400706:3277 -h1,21532:12057480,16400706:0,411205,112570 -) -k1,21532:12353424,16400706:292667 -k1,21532:14040042,16400706:292667 -k1,21532:16598288,16400706:292666 -(1,21532:16598288,16400706:0,452978,115847 -r1,21569:22935655,16400706:6337367,568825,115847 -k1,21532:16598288,16400706:-6337367 -) -(1,21532:16598288,16400706:6337367,452978,115847 -g1,21532:18711836,16400706 -g1,21532:19415260,16400706 -h1,21532:22932378,16400706:0,411205,112570 -) -k1,21532:23228322,16400706:292667 -k1,21532:24537452,16400706:292667 -k1,21532:30048096,16400706:292667 -k1,21532:32583029,16400706:0 -) -(1,21533:6630773,17265786:25952256,513147,134348 -k1,21532:9076496,17265786:231262 -k1,21532:11598896,17265786:231261 -k1,21532:14061659,17265786:231262 -k1,21532:19460435,17265786:231262 -k1,21532:20976202,17265786:231261 -k1,21532:22311746,17265786:231262 -k1,21532:23290773,17265786:231261 -k1,21532:25035261,17265786:231262 -k1,21532:25952685,17265786:231262 -k1,21532:29586575,17265786:231261 -k1,21532:30765488,17265786:231262 -(1,21532:30765488,17265786:0,414482,115847 -r1,21569:32530601,17265786:1765113,530329,115847 -k1,21532:30765488,17265786:-1765113 -) -(1,21532:30765488,17265786:1765113,414482,115847 -k1,21532:30765488,17265786:3277 -h1,21532:32527324,17265786:0,411205,112570 -) -k1,21532:32583029,17265786:0 -) -(1,21533:6630773,18130866:25952256,513147,126483 -k1,21532:10803843,18130866:141295 -k1,21532:16112653,18130866:141296 -k1,21532:17358230,18130866:141295 -k1,21532:18247292,18130866:141296 -k1,21532:19674403,18130866:141295 -k1,21532:24017211,18130866:141295 -k1,21532:25349952,18130866:141296 -k1,21532:27178144,18130866:141295 -k1,21532:27947275,18130866:141296 -k1,21532:30928245,18130866:141295 -k1,21532:32583029,18130866:0 -) -(1,21533:6630773,18995946:25952256,513147,126483 -g1,21532:7821562,18995946 -g1,21532:11458810,18995946 -g1,21532:15564640,18995946 -g1,21532:17336078,18995946 -g1,21532:20561104,18995946 -g1,21532:21707984,18995946 -(1,21532:21707984,18995946:0,452978,122846 -r1,21569:23473097,18995946:1765113,575824,122846 -k1,21532:21707984,18995946:-1765113 -) -(1,21532:21707984,18995946:1765113,452978,122846 -k1,21532:21707984,18995946:3277 -h1,21532:23469820,18995946:0,411205,112570 -) -g1,21532:23845996,18995946 -(1,21532:23845996,18995946:0,414482,115847 -r1,21569:25259397,18995946:1413401,530329,115847 -k1,21532:23845996,18995946:-1413401 -) -(1,21532:23845996,18995946:1413401,414482,115847 -k1,21532:23845996,18995946:3277 -h1,21532:25256120,18995946:0,411205,112570 -) -g1,21532:25458626,18995946 -g1,21532:26849300,18995946 -(1,21532:26849300,18995946:0,414482,115847 -r1,21569:29317837,18995946:2468537,530329,115847 -k1,21532:26849300,18995946:-2468537 -) -(1,21532:26849300,18995946:2468537,414482,115847 -k1,21532:26849300,18995946:3277 -h1,21532:29314560,18995946:0,411205,112570 -) -k1,21533:32583029,18995946:3212764 -g1,21533:32583029,18995946 -) -v1,21535:6630773,19861026:0,393216,0 -(1,21536:6630773,22086711:25952256,2618901,0 -g1,21536:6630773,22086711 -g1,21536:6237557,22086711 -r1,21569:6368629,22086711:131072,2618901,0 -g1,21536:6567858,22086711 -g1,21536:6764466,22086711 -[1,21536:6764466,22086711:25818563,2618901,0 -(1,21536:6764466,20222203:25818563,754393,260573 -(1,21535:6764466,20222203:0,754393,260573 -r1,21569:7856192,20222203:1091726,1014966,260573 -k1,21535:6764466,20222203:-1091726 -) -(1,21535:6764466,20222203:1091726,754393,260573 -) -k1,21535:8286881,20222203:430689 -k1,21535:8614561,20222203:327680 -k1,21535:13014111,20222203:430690 -k1,21535:14838751,20222203:430689 -k1,21535:17247318,20222203:430690 -k1,21535:20703804,20222203:430689 -k1,21535:21750532,20222203:430690 -k1,21535:22769734,20222203:430689 -k1,21535:24219508,20222203:430689 -k1,21535:26718514,20222203:430690 -k1,21535:27808495,20222203:430689 -k1,21535:29258270,20222203:430690 -k1,21535:31591469,20222203:430689 -k1,21536:32583029,20222203:0 -) -(1,21536:6764466,21087283:25818563,505283,122846 -(1,21535:6764466,21087283:0,452978,122846 -r1,21569:12046697,21087283:5282231,575824,122846 -k1,21535:6764466,21087283:-5282231 -) -(1,21535:6764466,21087283:5282231,452978,122846 -k1,21535:6764466,21087283:3277 -h1,21535:12043420,21087283:0,411205,112570 -) -k1,21535:12330239,21087283:283542 -k1,21535:13805226,21087283:283542 -(1,21535:13805226,21087283:0,452978,122846 -r1,21569:19087457,21087283:5282231,575824,122846 -k1,21535:13805226,21087283:-5282231 -) -(1,21535:13805226,21087283:5282231,452978,122846 -k1,21535:13805226,21087283:3277 -h1,21535:19084180,21087283:0,411205,112570 -) -k1,21535:19544669,21087283:283542 -k1,21535:21779873,21087283:283542 -k1,21535:23505862,21087283:283542 -(1,21535:23505862,21087283:0,452978,122846 -r1,21569:28084670,21087283:4578808,575824,122846 -k1,21535:23505862,21087283:-4578808 -) -(1,21535:23505862,21087283:4578808,452978,122846 -k1,21535:23505862,21087283:3277 -h1,21535:28081393,21087283:0,411205,112570 -) -k1,21535:28368212,21087283:283542 -k1,21535:31181444,21087283:283542 -k1,21535:32081024,21087283:283542 -k1,21535:32583029,21087283:0 -) -(1,21536:6764466,21952363:25818563,513147,134348 -g1,21535:9659191,21952363 -(1,21535:9659191,21952363:0,452978,122846 -r1,21569:11424304,21952363:1765113,575824,122846 -k1,21535:9659191,21952363:-1765113 -) -(1,21535:9659191,21952363:1765113,452978,122846 -k1,21535:9659191,21952363:3277 -h1,21535:11421027,21952363:0,411205,112570 -) -g1,21535:11623533,21952363 -g1,21535:14940965,21952363 -g1,21535:16159279,21952363 -g1,21535:18650302,21952363 -k1,21536:32583029,21952363:10769305 -g1,21536:32583029,21952363 -) -] -g1,21536:32583029,22086711 -) -h1,21536:6630773,22086711:0,0,0 -(1,21539:6630773,22951791:25952256,513147,134348 -h1,21538:6630773,22951791:983040,0,0 -k1,21538:9175297,22951791:177364 -k1,21538:12594072,22951791:177364 -k1,21538:15066508,22951791:177365 -k1,21538:16262957,22951791:177364 -k1,21538:18875639,22951791:177364 -k1,21538:21237318,22951791:177364 -k1,21538:22480953,22951791:177364 -k1,21538:26640284,22951791:177364 -k1,21538:28478331,22951791:177365 -k1,21538:29847140,22951791:177364 -k1,21538:31043589,22951791:177364 -k1,21539:32583029,22951791:0 -) -(1,21539:6630773,23816871:25952256,513147,165547 -k1,21538:8455220,23816871:185392 -k1,21538:9292039,23816871:185391 -(1,21538:9292039,23816871:0,452978,115847 -r1,21569:11408864,23816871:2116825,568825,115847 -k1,21538:9292039,23816871:-2116825 -) -(1,21538:9292039,23816871:2116825,452978,115847 -k1,21538:9292039,23816871:3277 -h1,21538:11405587,23816871:0,411205,112570 -) -k1,21538:11594256,23816871:185392 -k1,21538:13065464,23816871:185392 -k1,21538:15117320,23816871:185391 -k1,21538:15954140,23816871:185392 -k1,21538:18009929,23816871:185391 -k1,21538:19987075,23816871:185392 -(1,21538:19987075,23816871:0,452978,122846 -r1,21569:25269306,23816871:5282231,575824,122846 -k1,21538:19987075,23816871:-5282231 -) -(1,21538:19987075,23816871:5282231,452978,122846 -k1,21538:19987075,23816871:3277 -h1,21538:25266029,23816871:0,411205,112570 -) -k1,21538:25454698,23816871:185392 -k1,21538:25995949,23816871:185391 -$1,21538:25995949,23816871 -(1,21538:25995949,23816871:973866,505283,134349 -) -(1,21538:26969815,23974160:590610,339935,8258 -) -$1,21538:27560425,23816871 -k1,21538:27745817,23816871:185392 -k1,21538:32583029,23816871:0 -) -(1,21539:6630773,24681951:25952256,505283,138281 -g1,21538:7361499,24681951 -g1,21538:9932476,24681951 -g1,21538:10783133,24681951 -g1,21538:12001447,24681951 -$1,21538:12001447,24681951 -$1,21538:12553260,24681951 -g1,21538:12752489,24681951 -k1,21539:32583030,24681951:17767468 -g1,21539:32583030,24681951 -) -v1,21541:6630773,25366806:0,393216,0 -(1,21547:6630773,27083805:25952256,2110215,196608 -g1,21547:6630773,27083805 -g1,21547:6630773,27083805 -g1,21547:6434165,27083805 -(1,21547:6434165,27083805:0,2110215,196608 -r1,21569:32779637,27083805:26345472,2306823,196608 -k1,21547:6434165,27083805:-26345472 -) -(1,21547:6434165,27083805:26345472,2110215,196608 -[1,21547:6630773,27083805:25952256,1913607,0 -(1,21543:6630773,25601243:25952256,431045,112852 -(1,21542:6630773,25601243:0,0,0 -g1,21542:6630773,25601243 -g1,21542:6630773,25601243 -g1,21542:6303093,25601243 -(1,21542:6303093,25601243:0,0,0 -) -g1,21542:6630773,25601243 -) -k1,21543:6630773,25601243:0 -g1,21543:10614221,25601243 -g1,21543:11278129,25601243 -g1,21543:15261576,25601243 -g1,21543:17917208,25601243 -g1,21543:18581116,25601243 -g1,21543:20572840,25601243 -g1,21543:21236748,25601243 -g1,21543:22232610,25601243 -g1,21543:22896518,25601243 -g1,21543:23560426,25601243 -g1,21543:24888242,25601243 -h1,21543:25220196,25601243:0,0,0 -k1,21543:32583029,25601243:7362833 -g1,21543:32583029,25601243 -) -(1,21544:6630773,26286098:25952256,424439,112852 -h1,21544:6630773,26286098:0,0,0 -g1,21544:6962727,26286098 -g1,21544:7294681,26286098 -g1,21544:11610082,26286098 -h1,21544:11942036,26286098:0,0,0 -k1,21544:32583028,26286098:20640992 -g1,21544:32583028,26286098 -) -(1,21545:6630773,26970953:25952256,424439,112852 -h1,21545:6630773,26970953:0,0,0 -g1,21545:6962727,26970953 -g1,21545:7294681,26970953 -k1,21545:7294681,26970953:0 -h1,21545:19576978,26970953:0,0,0 -k1,21545:32583029,26970953:13006051 -g1,21545:32583029,26970953 -) -] -) -g1,21547:32583029,27083805 -g1,21547:6630773,27083805 -g1,21547:6630773,27083805 -g1,21547:32583029,27083805 -g1,21547:32583029,27083805 -) -h1,21547:6630773,27280413:0,0,0 -(1,21550:6630773,36980527:25952256,9634578,0 -k1,21550:13183781,36980527:6553008 -h1,21549:13183781,36980527:0,0,0 -(1,21549:13183781,36980527:12846240,9634578,0 -(1,21549:13183781,36980527:12846136,9634602,0 -(1,21549:13183781,36980527:12846136,9634602,0 -(1,21549:13183781,36980527:0,9634602,0 -(1,21549:13183781,36980527:0,14208860,0 -(1,21549:13183781,36980527:18945146,14208860,0 -) -k1,21549:13183781,36980527:-18945146 -) -) -g1,21549:26029917,36980527 -) -) -) -g1,21550:26030021,36980527 -k1,21550:32583029,36980527:6553008 -) -v1,21557:6630773,37845607:0,393216,0 -(1,21567:6630773,42626931:25952256,5174540,0 -g1,21567:6630773,42626931 -g1,21567:6237557,42626931 -r1,21569:6368629,42626931:131072,5174540,0 -g1,21567:6567858,42626931 -g1,21567:6764466,42626931 -[1,21567:6764466,42626931:25818563,5174540,0 -(1,21558:6764466,38118084:25818563,665693,196608 -(1,21557:6764466,38118084:0,665693,196608 -r1,21569:7868133,38118084:1103667,862301,196608 -k1,21557:6764466,38118084:-1103667 -) -(1,21557:6764466,38118084:1103667,665693,196608 -) -k1,21557:8058840,38118084:190707 -k1,21557:9785058,38118084:327680 -k1,21557:11767518,38118084:190706 -k1,21557:12314085,38118084:190707 -k1,21557:17342004,38118084:190707 -k1,21557:18148748,38118084:190706 -k1,21557:18695315,38118084:190707 -k1,21557:20458231,38118084:190707 -k1,21557:21180435,38118084:190707 -k1,21557:22437412,38118084:190706 -k1,21557:25933100,38118084:190707 -k1,21557:26775235,38118084:190707 -k1,21557:29719764,38118084:190706 -k1,21557:30929556,38118084:190707 -k1,21557:32583029,38118084:0 -) -(1,21558:6764466,38983164:25818563,513147,138281 -k1,21557:11804606,38983164:202928 -k1,21557:12816903,38983164:202927 -k1,21557:14038916,38983164:202928 -k1,21557:15037450,38983164:202927 -k1,21557:16938416,38983164:202928 -k1,21557:19948905,38983164:202927 -k1,21557:20507693,38983164:202928 -k1,21557:23221960,38983164:202927 -k1,21557:24076316,38983164:202928 -k1,21557:25298328,38983164:202927 -$1,21557:25298328,38983164 -$1,21557:25800989,38983164 -k1,21557:26003917,38983164:202928 -k1,21557:27096823,38983164:202927 -$1,21557:27096823,38983164 -$1,21557:27648636,38983164 -k1,21557:28058658,38983164:202928 -k1,21557:31188422,38983164:202927 -k1,21557:32583029,38983164:0 -) -(1,21558:6764466,39848244:25818563,513147,134348 -k1,21557:8523733,39848244:266357 -k1,21557:9809175,39848244:266357 -k1,21557:11352829,39848244:266357 -k1,21557:14660057,39848244:266357 -k1,21557:15687942,39848244:266357 -k1,21557:16973384,39848244:266357 -k1,21557:18735928,39848244:266357 -k1,21557:20870716,39848244:266357 -k1,21557:22880331,39848244:266357 -k1,21557:24714309,39848244:266357 -k1,21557:25999751,39848244:266357 -k1,21557:27543405,39848244:266357 -k1,21557:29545155,39848244:266357 -k1,21557:30830597,39848244:266357 -k1,21558:32583029,39848244:0 -) -(1,21558:6764466,40713324:25818563,513147,102891 -g1,21557:9299398,40713324 -g1,21557:11244506,40713324 -g1,21557:13519260,40713324 -k1,21558:32583029,40713324:16914188 -g1,21558:32583029,40713324 -) -v1,21560:6764466,41398179:0,393216,0 -(1,21565:6764466,42430323:25818563,1425360,196608 -g1,21565:6764466,42430323 -g1,21565:6764466,42430323 -g1,21565:6567858,42430323 -(1,21565:6567858,42430323:0,1425360,196608 -r1,21569:32779637,42430323:26211779,1621968,196608 -k1,21565:6567857,42430323:-26211780 -) -(1,21565:6567858,42430323:26211779,1425360,196608 -[1,21565:6764466,42430323:25818563,1228752,0 -(1,21562:6764466,41632616:25818563,431045,112852 -(1,21561:6764466,41632616:0,0,0 -g1,21561:6764466,41632616 -g1,21561:6764466,41632616 -g1,21561:6436786,41632616 -(1,21561:6436786,41632616:0,0,0 -) -g1,21561:6764466,41632616 -) -k1,21562:6764466,41632616:0 -g1,21562:10747914,41632616 -g1,21562:11411822,41632616 -g1,21562:15395269,41632616 -g1,21562:18050901,41632616 -g1,21562:18714809,41632616 -g1,21562:20706533,41632616 -g1,21562:21370441,41632616 -g1,21562:22366303,41632616 -g1,21562:23030211,41632616 -g1,21562:23694119,41632616 -g1,21562:27345613,41632616 -h1,21562:27677567,41632616:0,0,0 -k1,21562:32583029,41632616:4905462 -g1,21562:32583029,41632616 -) -(1,21563:6764466,42317471:25818563,424439,112852 -h1,21563:6764466,42317471:0,0,0 -g1,21563:7096420,42317471 -g1,21563:7428374,42317471 -k1,21563:7428374,42317471:0 -h1,21563:11411821,42317471:0,0,0 -k1,21563:32583029,42317471:21171208 -g1,21563:32583029,42317471 -) -] -) -g1,21565:32583029,42430323 -g1,21565:6764466,42430323 -g1,21565:6764466,42430323 -g1,21565:32583029,42430323 -g1,21565:32583029,42430323 -) -h1,21565:6764466,42626931:0,0,0 -] -g1,21567:32583029,42626931 -) -h1,21567:6630773,42626931:0,0,0 -] -(1,21569:32583029,45706769:0,0,0 -g1,21569:32583029,45706769 -) -) -] -(1,21569:6630773,47279633:25952256,0,0 -h1,21569:6630773,47279633:25952256,0,0 -) -] -(1,21569:4262630,4025873:0,0,0 -[1,21569:-473656,4025873:0,0,0 -(1,21569:-473656,-710413:0,0,0 -(1,21569:-473656,-710413:0,0,0 -g1,21569:-473656,-710413 -) -g1,21569:-473656,-710413 +) +k1,21567:3078556,49800853:-34777008 +) +] +g1,21567:6630773,4812305 +g1,21567:6630773,4812305 +g1,21567:8724648,4812305 +k1,21567:31387652,4812305:22663004 +) +) +] +[1,21567:6630773,45706769:25952256,40108032,0 +(1,21567:6630773,45706769:25952256,40108032,0 +(1,21567:6630773,45706769:0,0,0 +g1,21567:6630773,45706769 +) +[1,21567:6630773,45706769:25952256,40108032,0 +v1,21525:6630773,6254097:0,393216,0 +(1,21526:6630773,11760738:25952256,5899857,0 +g1,21526:6630773,11760738 +g1,21526:6237557,11760738 +r1,21567:6368629,11760738:131072,5899857,0 +g1,21526:6567858,11760738 +g1,21526:6764466,11760738 +[1,21526:6764466,11760738:25818563,5899857,0 +(1,21526:6764466,6562395:25818563,701514,196608 +(1,21525:6764466,6562395:0,701514,196608 +r1,21567:7761522,6562395:997056,898122,196608 +k1,21525:6764466,6562395:-997056 +) +(1,21525:6764466,6562395:997056,701514,196608 +) +k1,21525:8026041,6562395:264519 +k1,21525:8353721,6562395:327680 +k1,21525:11408107,6562395:264518 +(1,21525:11408107,6562395:0,452978,115847 +r1,21567:16338627,6562395:4930520,568825,115847 +k1,21525:11408107,6562395:-4930520 +) +(1,21525:11408107,6562395:4930520,452978,115847 +k1,21525:11408107,6562395:3277 +h1,21525:16335350,6562395:0,411205,112570 +) +k1,21525:16603146,6562395:264519 +k1,21525:18059109,6562395:264518 +k1,21525:19342713,6562395:264519 +k1,21525:21809242,6562395:264519 +k1,21525:25099557,6562395:264518 +k1,21525:27125684,6562395:264519 +k1,21525:29419197,6562395:264518 +k1,21525:31326048,6562395:264519 +k1,21525:32583029,6562395:0 +) +(1,21526:6764466,7427475:25818563,513147,134348 +k1,21525:10110788,7427475:320525 +k1,21525:11865242,7427475:320526 +k1,21525:12995137,7427475:320525 +k1,21525:14334748,7427475:320526 +k1,21525:18057902,7427475:320525 +k1,21525:20583715,7427475:320526 +k1,21525:21555668,7427475:320525 +k1,21525:23688919,7427475:320525 +k1,21525:25200890,7427475:320526 +k1,21525:26540500,7427475:320525 +k1,21525:28871671,7427475:320526 +k1,21525:30572384,7427475:320525 +k1,21525:32583029,7427475:0 +) +(1,21526:6764466,8292555:25818563,513147,126483 +k1,21525:8163958,8292555:407932 +k1,21525:11267386,8292555:407932 +k1,21525:15261448,8292555:407932 +k1,21525:17437540,8292555:407931 +k1,21525:18461510,8292555:407932 +k1,21525:19888527,8292555:407932 +k1,21525:22957876,8292555:407932 +k1,21525:25221132,8292555:407932 +k1,21525:27095760,8292555:407932 +k1,21525:27969652,8292555:407931 +k1,21525:29396669,8292555:407932 +k1,21525:32583029,8292555:0 +) +(1,21526:6764466,9157635:25818563,513147,134348 +k1,21525:9204825,9157635:235072 +k1,21525:10126058,9157635:235071 +k1,21525:13433458,9157635:235072 +k1,21525:14319957,9157635:235071 +(1,21525:14319957,9157635:0,452978,115847 +r1,21567:16436782,9157635:2116825,568825,115847 +k1,21525:14319957,9157635:-2116825 +) +(1,21525:14319957,9157635:2116825,452978,115847 +k1,21525:14319957,9157635:3277 +h1,21525:16433505,9157635:0,411205,112570 +) +k1,21525:16671854,9157635:235072 +k1,21525:17438422,9157635:235071 +k1,21525:18029354,9157635:235072 +k1,21525:20959921,9157635:235071 +k1,21525:22468358,9157635:235072 +k1,21525:23722514,9157635:235071 +k1,21525:25637929,9157635:235072 +k1,21525:28361402,9157635:235071 +k1,21525:31839851,9157635:235072 +k1,21526:32583029,9157635:0 +) +(1,21526:6764466,10022715:25818563,513147,126483 +(1,21525:6764466,10022715:0,452978,115847 +r1,21567:13805257,10022715:7040791,568825,115847 +k1,21525:6764466,10022715:-7040791 +) +(1,21525:6764466,10022715:7040791,452978,115847 +k1,21525:6764466,10022715:3277 +h1,21525:13801980,10022715:0,411205,112570 +) +k1,21525:14080407,10022715:275150 +k1,21525:14887053,10022715:275149 +k1,21525:15932906,10022715:275150 +k1,21525:17004974,10022715:275150 +k1,21525:18413896,10022715:275149 +k1,21525:21384542,10022715:275150 +k1,21525:24741850,10022715:275150 +k1,21525:27367120,10022715:275149 +k1,21525:30865986,10022715:275150 +k1,21525:32583029,10022715:0 +) +(1,21526:6764466,10887795:25818563,513147,134348 +k1,21525:9925136,10887795:250216 +k1,21525:12136190,10887795:250217 +k1,21525:15613399,10887795:250216 +k1,21525:18889413,10887795:250217 +k1,21525:20424135,10887795:250216 +k1,21525:22270808,10887795:250216 +k1,21525:25289266,10887795:250217 +k1,21525:26190910,10887795:250216 +k1,21525:28185040,10887795:250217 +k1,21525:30002877,10887795:250216 +k1,21525:32583029,10887795:0 +) +(1,21526:6764466,11752875:25818563,505283,7863 +k1,21526:32583029,11752875:23551674 +g1,21526:32583029,11752875 +) +] +g1,21526:32583029,11760738 +) +h1,21526:6630773,11760738:0,0,0 +(1,21528:6630773,13412250:25952256,513147,7863 +(1,21528:6630773,13412250:0,0,0 +g1,21528:6630773,13412250 +) +g1,21528:11151446,13412250 +k1,21528:32583030,13412250:19444532 +g1,21528:32583030,13412250 +) +(1,21531:6630773,14670546:25952256,513147,126483 +k1,21530:8153726,14670546:347893 +k1,21530:10767198,14670546:347892 +k1,21530:13017601,14670546:347893 +k1,21530:14878720,14670546:347893 +k1,21530:15988141,14670546:347893 +k1,21530:17355118,14670546:347892 +(1,21530:17355118,14670546:0,414482,115847 +r1,21567:17713384,14670546:358266,530329,115847 +k1,21530:17355118,14670546:-358266 +) +(1,21530:17355118,14670546:358266,414482,115847 +k1,21530:17355118,14670546:3277 +h1,21530:17710107,14670546:0,411205,112570 +) +k1,21530:18061277,14670546:347893 +k1,21530:19600615,14670546:347893 +(1,21530:19600615,14670546:0,414482,115847 +r1,21567:19958881,14670546:358266,530329,115847 +k1,21530:19600615,14670546:-358266 +) +(1,21530:19600615,14670546:358266,414482,115847 +k1,21530:19600615,14670546:3277 +h1,21530:19955604,14670546:0,411205,112570 +) +k1,21530:20306774,14670546:347893 +k1,21530:24002900,14670546:347892 +(1,21530:24002900,14670546:0,452978,115847 +r1,21567:31043691,14670546:7040791,568825,115847 +k1,21530:24002900,14670546:-7040791 +) +(1,21530:24002900,14670546:7040791,452978,115847 +k1,21530:24002900,14670546:3277 +h1,21530:31040414,14670546:0,411205,112570 +) +k1,21530:31391584,14670546:347893 +k1,21531:32583029,14670546:0 +) +(1,21531:6630773,15535626:25952256,513147,126483 +(1,21530:6630773,15535626:0,452978,115847 +r1,21567:13671564,15535626:7040791,568825,115847 +k1,21530:6630773,15535626:-7040791 +) +(1,21530:6630773,15535626:7040791,452978,115847 +k1,21530:6630773,15535626:3277 +h1,21530:13668287,15535626:0,411205,112570 +) +k1,21530:14125123,15535626:279889 +k1,21530:16453011,15535626:279888 +k1,21530:17088760,15535626:279889 +k1,21530:21723515,15535626:279888 +k1,21530:26840616,15535626:279889 +k1,21530:29816000,15535626:279888 +k1,21530:30782051,15535626:279889 +k1,21530:31832642,15535626:279888 +k1,21531:32583029,15535626:0 +) +(1,21531:6630773,16400706:25952256,513147,134348 +k1,21530:9351549,16400706:292667 +k1,21530:10295644,16400706:292667 +(1,21530:10295644,16400706:0,414482,115847 +r1,21567:12060757,16400706:1765113,530329,115847 +k1,21530:10295644,16400706:-1765113 +) +(1,21530:10295644,16400706:1765113,414482,115847 +k1,21530:10295644,16400706:3277 +h1,21530:12057480,16400706:0,411205,112570 +) +k1,21530:12353424,16400706:292667 +k1,21530:14040042,16400706:292667 +k1,21530:16598288,16400706:292666 +(1,21530:16598288,16400706:0,452978,115847 +r1,21567:22935655,16400706:6337367,568825,115847 +k1,21530:16598288,16400706:-6337367 +) +(1,21530:16598288,16400706:6337367,452978,115847 +g1,21530:18711836,16400706 +g1,21530:19415260,16400706 +h1,21530:22932378,16400706:0,411205,112570 +) +k1,21530:23228322,16400706:292667 +k1,21530:24537452,16400706:292667 +k1,21530:30048096,16400706:292667 +k1,21530:32583029,16400706:0 +) +(1,21531:6630773,17265786:25952256,513147,134348 +k1,21530:9076496,17265786:231262 +k1,21530:11598896,17265786:231261 +k1,21530:14061659,17265786:231262 +k1,21530:19460435,17265786:231262 +k1,21530:20976202,17265786:231261 +k1,21530:22311746,17265786:231262 +k1,21530:23290773,17265786:231261 +k1,21530:25035261,17265786:231262 +k1,21530:25952685,17265786:231262 +k1,21530:29586575,17265786:231261 +k1,21530:30765488,17265786:231262 +(1,21530:30765488,17265786:0,414482,115847 +r1,21567:32530601,17265786:1765113,530329,115847 +k1,21530:30765488,17265786:-1765113 +) +(1,21530:30765488,17265786:1765113,414482,115847 +k1,21530:30765488,17265786:3277 +h1,21530:32527324,17265786:0,411205,112570 +) +k1,21530:32583029,17265786:0 +) +(1,21531:6630773,18130866:25952256,513147,126483 +k1,21530:10803843,18130866:141295 +k1,21530:16112653,18130866:141296 +k1,21530:17358230,18130866:141295 +k1,21530:18247292,18130866:141296 +k1,21530:19674403,18130866:141295 +k1,21530:24017211,18130866:141295 +k1,21530:25349952,18130866:141296 +k1,21530:27178144,18130866:141295 +k1,21530:27947275,18130866:141296 +k1,21530:30928245,18130866:141295 +k1,21530:32583029,18130866:0 +) +(1,21531:6630773,18995946:25952256,513147,126483 +g1,21530:7821562,18995946 +g1,21530:11458810,18995946 +g1,21530:15564640,18995946 +g1,21530:17336078,18995946 +g1,21530:20561104,18995946 +g1,21530:21707984,18995946 +(1,21530:21707984,18995946:0,452978,122846 +r1,21567:23473097,18995946:1765113,575824,122846 +k1,21530:21707984,18995946:-1765113 +) +(1,21530:21707984,18995946:1765113,452978,122846 +k1,21530:21707984,18995946:3277 +h1,21530:23469820,18995946:0,411205,112570 +) +g1,21530:23845996,18995946 +(1,21530:23845996,18995946:0,414482,115847 +r1,21567:25259397,18995946:1413401,530329,115847 +k1,21530:23845996,18995946:-1413401 +) +(1,21530:23845996,18995946:1413401,414482,115847 +k1,21530:23845996,18995946:3277 +h1,21530:25256120,18995946:0,411205,112570 +) +g1,21530:25458626,18995946 +g1,21530:26849300,18995946 +(1,21530:26849300,18995946:0,414482,115847 +r1,21567:29317837,18995946:2468537,530329,115847 +k1,21530:26849300,18995946:-2468537 +) +(1,21530:26849300,18995946:2468537,414482,115847 +k1,21530:26849300,18995946:3277 +h1,21530:29314560,18995946:0,411205,112570 +) +k1,21531:32583029,18995946:3212764 +g1,21531:32583029,18995946 +) +v1,21533:6630773,19861026:0,393216,0 +(1,21534:6630773,22086711:25952256,2618901,0 +g1,21534:6630773,22086711 +g1,21534:6237557,22086711 +r1,21567:6368629,22086711:131072,2618901,0 +g1,21534:6567858,22086711 +g1,21534:6764466,22086711 +[1,21534:6764466,22086711:25818563,2618901,0 +(1,21534:6764466,20222203:25818563,754393,260573 +(1,21533:6764466,20222203:0,754393,260573 +r1,21567:7856192,20222203:1091726,1014966,260573 +k1,21533:6764466,20222203:-1091726 +) +(1,21533:6764466,20222203:1091726,754393,260573 +) +k1,21533:8286881,20222203:430689 +k1,21533:8614561,20222203:327680 +k1,21533:13014111,20222203:430690 +k1,21533:14838751,20222203:430689 +k1,21533:17247318,20222203:430690 +k1,21533:20703804,20222203:430689 +k1,21533:21750532,20222203:430690 +k1,21533:22769734,20222203:430689 +k1,21533:24219508,20222203:430689 +k1,21533:26718514,20222203:430690 +k1,21533:27808495,20222203:430689 +k1,21533:29258270,20222203:430690 +k1,21533:31591469,20222203:430689 +k1,21534:32583029,20222203:0 +) +(1,21534:6764466,21087283:25818563,505283,122846 +(1,21533:6764466,21087283:0,452978,122846 +r1,21567:12046697,21087283:5282231,575824,122846 +k1,21533:6764466,21087283:-5282231 +) +(1,21533:6764466,21087283:5282231,452978,122846 +k1,21533:6764466,21087283:3277 +h1,21533:12043420,21087283:0,411205,112570 +) +k1,21533:12330239,21087283:283542 +k1,21533:13805226,21087283:283542 +(1,21533:13805226,21087283:0,452978,122846 +r1,21567:19087457,21087283:5282231,575824,122846 +k1,21533:13805226,21087283:-5282231 +) +(1,21533:13805226,21087283:5282231,452978,122846 +k1,21533:13805226,21087283:3277 +h1,21533:19084180,21087283:0,411205,112570 +) +k1,21533:19544669,21087283:283542 +k1,21533:21779873,21087283:283542 +k1,21533:23505862,21087283:283542 +(1,21533:23505862,21087283:0,452978,122846 +r1,21567:28084670,21087283:4578808,575824,122846 +k1,21533:23505862,21087283:-4578808 +) +(1,21533:23505862,21087283:4578808,452978,122846 +k1,21533:23505862,21087283:3277 +h1,21533:28081393,21087283:0,411205,112570 +) +k1,21533:28368212,21087283:283542 +k1,21533:31181444,21087283:283542 +k1,21533:32081024,21087283:283542 +k1,21533:32583029,21087283:0 +) +(1,21534:6764466,21952363:25818563,513147,134348 +g1,21533:9659191,21952363 +(1,21533:9659191,21952363:0,452978,122846 +r1,21567:11424304,21952363:1765113,575824,122846 +k1,21533:9659191,21952363:-1765113 +) +(1,21533:9659191,21952363:1765113,452978,122846 +k1,21533:9659191,21952363:3277 +h1,21533:11421027,21952363:0,411205,112570 +) +g1,21533:11623533,21952363 +g1,21533:14940965,21952363 +g1,21533:16159279,21952363 +g1,21533:18650302,21952363 +k1,21534:32583029,21952363:10769305 +g1,21534:32583029,21952363 +) +] +g1,21534:32583029,22086711 +) +h1,21534:6630773,22086711:0,0,0 +(1,21537:6630773,22951791:25952256,513147,134348 +h1,21536:6630773,22951791:983040,0,0 +k1,21536:9175297,22951791:177364 +k1,21536:12594072,22951791:177364 +k1,21536:15066508,22951791:177365 +k1,21536:16262957,22951791:177364 +k1,21536:18875639,22951791:177364 +k1,21536:21237318,22951791:177364 +k1,21536:22480953,22951791:177364 +k1,21536:26640284,22951791:177364 +k1,21536:28478331,22951791:177365 +k1,21536:29847140,22951791:177364 +k1,21536:31043589,22951791:177364 +k1,21537:32583029,22951791:0 +) +(1,21537:6630773,23816871:25952256,513147,165547 +k1,21536:8455220,23816871:185392 +k1,21536:9292039,23816871:185391 +(1,21536:9292039,23816871:0,452978,115847 +r1,21567:11408864,23816871:2116825,568825,115847 +k1,21536:9292039,23816871:-2116825 +) +(1,21536:9292039,23816871:2116825,452978,115847 +k1,21536:9292039,23816871:3277 +h1,21536:11405587,23816871:0,411205,112570 +) +k1,21536:11594256,23816871:185392 +k1,21536:13065464,23816871:185392 +k1,21536:15117320,23816871:185391 +k1,21536:15954140,23816871:185392 +k1,21536:18009929,23816871:185391 +k1,21536:19987075,23816871:185392 +(1,21536:19987075,23816871:0,452978,122846 +r1,21567:25269306,23816871:5282231,575824,122846 +k1,21536:19987075,23816871:-5282231 +) +(1,21536:19987075,23816871:5282231,452978,122846 +k1,21536:19987075,23816871:3277 +h1,21536:25266029,23816871:0,411205,112570 +) +k1,21536:25454698,23816871:185392 +k1,21536:25995949,23816871:185391 +$1,21536:25995949,23816871 +(1,21536:25995949,23816871:973866,505283,134349 +) +(1,21536:26969815,23974160:590610,339935,8258 +) +$1,21536:27560425,23816871 +k1,21536:27745817,23816871:185392 +k1,21536:32583029,23816871:0 +) +(1,21537:6630773,24681951:25952256,505283,138281 +g1,21536:7361499,24681951 +g1,21536:9932476,24681951 +g1,21536:10783133,24681951 +g1,21536:12001447,24681951 +$1,21536:12001447,24681951 +$1,21536:12553260,24681951 +g1,21536:12752489,24681951 +k1,21537:32583030,24681951:17767468 +g1,21537:32583030,24681951 +) +v1,21539:6630773,25366806:0,393216,0 +(1,21545:6630773,27083805:25952256,2110215,196608 +g1,21545:6630773,27083805 +g1,21545:6630773,27083805 +g1,21545:6434165,27083805 +(1,21545:6434165,27083805:0,2110215,196608 +r1,21567:32779637,27083805:26345472,2306823,196608 +k1,21545:6434165,27083805:-26345472 +) +(1,21545:6434165,27083805:26345472,2110215,196608 +[1,21545:6630773,27083805:25952256,1913607,0 +(1,21541:6630773,25601243:25952256,431045,112852 +(1,21540:6630773,25601243:0,0,0 +g1,21540:6630773,25601243 +g1,21540:6630773,25601243 +g1,21540:6303093,25601243 +(1,21540:6303093,25601243:0,0,0 +) +g1,21540:6630773,25601243 +) +k1,21541:6630773,25601243:0 +g1,21541:10614221,25601243 +g1,21541:11278129,25601243 +g1,21541:15261576,25601243 +g1,21541:17917208,25601243 +g1,21541:18581116,25601243 +g1,21541:20572840,25601243 +g1,21541:21236748,25601243 +g1,21541:22232610,25601243 +g1,21541:22896518,25601243 +g1,21541:23560426,25601243 +g1,21541:24888242,25601243 +h1,21541:25220196,25601243:0,0,0 +k1,21541:32583029,25601243:7362833 +g1,21541:32583029,25601243 +) +(1,21542:6630773,26286098:25952256,424439,112852 +h1,21542:6630773,26286098:0,0,0 +g1,21542:6962727,26286098 +g1,21542:7294681,26286098 +g1,21542:11610082,26286098 +h1,21542:11942036,26286098:0,0,0 +k1,21542:32583028,26286098:20640992 +g1,21542:32583028,26286098 +) +(1,21543:6630773,26970953:25952256,424439,112852 +h1,21543:6630773,26970953:0,0,0 +g1,21543:6962727,26970953 +g1,21543:7294681,26970953 +k1,21543:7294681,26970953:0 +h1,21543:19576978,26970953:0,0,0 +k1,21543:32583029,26970953:13006051 +g1,21543:32583029,26970953 +) +] +) +g1,21545:32583029,27083805 +g1,21545:6630773,27083805 +g1,21545:6630773,27083805 +g1,21545:32583029,27083805 +g1,21545:32583029,27083805 +) +h1,21545:6630773,27280413:0,0,0 +(1,21548:6630773,36980527:25952256,9634578,0 +k1,21548:13183781,36980527:6553008 +h1,21547:13183781,36980527:0,0,0 +(1,21547:13183781,36980527:12846240,9634578,0 +(1,21547:13183781,36980527:12846136,9634602,0 +(1,21547:13183781,36980527:12846136,9634602,0 +(1,21547:13183781,36980527:0,9634602,0 +(1,21547:13183781,36980527:0,14208860,0 +(1,21547:13183781,36980527:18945146,14208860,0 +) +k1,21547:13183781,36980527:-18945146 +) +) +g1,21547:26029917,36980527 +) +) +) +g1,21548:26030021,36980527 +k1,21548:32583029,36980527:6553008 +) +v1,21555:6630773,37845607:0,393216,0 +(1,21565:6630773,42626931:25952256,5174540,0 +g1,21565:6630773,42626931 +g1,21565:6237557,42626931 +r1,21567:6368629,42626931:131072,5174540,0 +g1,21565:6567858,42626931 +g1,21565:6764466,42626931 +[1,21565:6764466,42626931:25818563,5174540,0 +(1,21556:6764466,38118084:25818563,665693,196608 +(1,21555:6764466,38118084:0,665693,196608 +r1,21567:7868133,38118084:1103667,862301,196608 +k1,21555:6764466,38118084:-1103667 +) +(1,21555:6764466,38118084:1103667,665693,196608 +) +k1,21555:8058840,38118084:190707 +k1,21555:9785058,38118084:327680 +k1,21555:11767518,38118084:190706 +k1,21555:12314085,38118084:190707 +k1,21555:17342004,38118084:190707 +k1,21555:18148748,38118084:190706 +k1,21555:18695315,38118084:190707 +k1,21555:20458231,38118084:190707 +k1,21555:21180435,38118084:190707 +k1,21555:22437412,38118084:190706 +k1,21555:25933100,38118084:190707 +k1,21555:26775235,38118084:190707 +k1,21555:29719764,38118084:190706 +k1,21555:30929556,38118084:190707 +k1,21555:32583029,38118084:0 +) +(1,21556:6764466,38983164:25818563,513147,138281 +k1,21555:11804606,38983164:202928 +k1,21555:12816903,38983164:202927 +k1,21555:14038916,38983164:202928 +k1,21555:15037450,38983164:202927 +k1,21555:16938416,38983164:202928 +k1,21555:19948905,38983164:202927 +k1,21555:20507693,38983164:202928 +k1,21555:23221960,38983164:202927 +k1,21555:24076316,38983164:202928 +k1,21555:25298328,38983164:202927 +$1,21555:25298328,38983164 +$1,21555:25800989,38983164 +k1,21555:26003917,38983164:202928 +k1,21555:27096823,38983164:202927 +$1,21555:27096823,38983164 +$1,21555:27648636,38983164 +k1,21555:28058658,38983164:202928 +k1,21555:31188422,38983164:202927 +k1,21555:32583029,38983164:0 +) +(1,21556:6764466,39848244:25818563,513147,134348 +k1,21555:8523733,39848244:266357 +k1,21555:9809175,39848244:266357 +k1,21555:11352829,39848244:266357 +k1,21555:14660057,39848244:266357 +k1,21555:15687942,39848244:266357 +k1,21555:16973384,39848244:266357 +k1,21555:18735928,39848244:266357 +k1,21555:20870716,39848244:266357 +k1,21555:22880331,39848244:266357 +k1,21555:24714309,39848244:266357 +k1,21555:25999751,39848244:266357 +k1,21555:27543405,39848244:266357 +k1,21555:29545155,39848244:266357 +k1,21555:30830597,39848244:266357 +k1,21556:32583029,39848244:0 +) +(1,21556:6764466,40713324:25818563,513147,102891 +g1,21555:9299398,40713324 +g1,21555:11244506,40713324 +g1,21555:13519260,40713324 +k1,21556:32583029,40713324:16914188 +g1,21556:32583029,40713324 +) +v1,21558:6764466,41398179:0,393216,0 +(1,21563:6764466,42430323:25818563,1425360,196608 +g1,21563:6764466,42430323 +g1,21563:6764466,42430323 +g1,21563:6567858,42430323 +(1,21563:6567858,42430323:0,1425360,196608 +r1,21567:32779637,42430323:26211779,1621968,196608 +k1,21563:6567857,42430323:-26211780 +) +(1,21563:6567858,42430323:26211779,1425360,196608 +[1,21563:6764466,42430323:25818563,1228752,0 +(1,21560:6764466,41632616:25818563,431045,112852 +(1,21559:6764466,41632616:0,0,0 +g1,21559:6764466,41632616 +g1,21559:6764466,41632616 +g1,21559:6436786,41632616 +(1,21559:6436786,41632616:0,0,0 +) +g1,21559:6764466,41632616 +) +k1,21560:6764466,41632616:0 +g1,21560:10747914,41632616 +g1,21560:11411822,41632616 +g1,21560:15395269,41632616 +g1,21560:18050901,41632616 +g1,21560:18714809,41632616 +g1,21560:20706533,41632616 +g1,21560:21370441,41632616 +g1,21560:22366303,41632616 +g1,21560:23030211,41632616 +g1,21560:23694119,41632616 +g1,21560:27345613,41632616 +h1,21560:27677567,41632616:0,0,0 +k1,21560:32583029,41632616:4905462 +g1,21560:32583029,41632616 +) +(1,21561:6764466,42317471:25818563,424439,112852 +h1,21561:6764466,42317471:0,0,0 +g1,21561:7096420,42317471 +g1,21561:7428374,42317471 +k1,21561:7428374,42317471:0 +h1,21561:11411821,42317471:0,0,0 +k1,21561:32583029,42317471:21171208 +g1,21561:32583029,42317471 +) +] +) +g1,21563:32583029,42430323 +g1,21563:6764466,42430323 +g1,21563:6764466,42430323 +g1,21563:32583029,42430323 +g1,21563:32583029,42430323 +) +h1,21563:6764466,42626931:0,0,0 +] +g1,21565:32583029,42626931 +) +h1,21565:6630773,42626931:0,0,0 +] +(1,21567:32583029,45706769:0,0,0 +g1,21567:32583029,45706769 +) +) +] +(1,21567:6630773,47279633:25952256,0,0 +h1,21567:6630773,47279633:25952256,0,0 +) +] +(1,21567:4262630,4025873:0,0,0 +[1,21567:-473656,4025873:0,0,0 +(1,21567:-473656,-710413:0,0,0 +(1,21567:-473656,-710413:0,0,0 +g1,21567:-473656,-710413 +) +g1,21567:-473656,-710413 ) ] ) ] !23424 -}364 -Input:4011:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4012:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4013:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4014:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}365 Input:4015:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4016:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4017:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -373514,2274 +373718,2274 @@ Input:4021:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4022:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4023:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4024:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{365 -[1,21630:4262630,47279633:28320399,43253760,0 -(1,21630:4262630,4025873:0,0,0 -[1,21630:-473656,4025873:0,0,0 -(1,21630:-473656,-710413:0,0,0 -(1,21630:-473656,-644877:0,0,0 -k1,21630:-473656,-644877:-65536 +{366 +[1,21628:4262630,47279633:28320399,43253760,0 +(1,21628:4262630,4025873:0,0,0 +[1,21628:-473656,4025873:0,0,0 +(1,21628:-473656,-710413:0,0,0 +(1,21628:-473656,-644877:0,0,0 +k1,21628:-473656,-644877:-65536 ) -(1,21630:-473656,4736287:0,0,0 -k1,21630:-473656,4736287:5209943 +(1,21628:-473656,4736287:0,0,0 +k1,21628:-473656,4736287:5209943 ) -g1,21630:-473656,-710413 +g1,21628:-473656,-710413 ) ] ) -[1,21630:6630773,47279633:25952256,43253760,0 -[1,21630:6630773,4812305:25952256,786432,0 -(1,21630:6630773,4812305:25952256,513147,126483 -(1,21630:6630773,4812305:25952256,513147,126483 -g1,21630:3078558,4812305 -[1,21630:3078558,4812305:0,0,0 -(1,21630:3078558,2439708:0,1703936,0 -k1,21630:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21630:2537886,2439708:1179648,16384,0 +[1,21628:6630773,47279633:25952256,43253760,0 +[1,21628:6630773,4812305:25952256,786432,0 +(1,21628:6630773,4812305:25952256,513147,126483 +(1,21628:6630773,4812305:25952256,513147,126483 +g1,21628:3078558,4812305 +[1,21628:3078558,4812305:0,0,0 +(1,21628:3078558,2439708:0,1703936,0 +k1,21628:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21628:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21630:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21628:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21630:3078558,4812305:0,0,0 -(1,21630:3078558,2439708:0,1703936,0 -g1,21630:29030814,2439708 -g1,21630:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21630:36151628,1915420:16384,1179648,0 +[1,21628:3078558,4812305:0,0,0 +(1,21628:3078558,2439708:0,1703936,0 +g1,21628:29030814,2439708 +g1,21628:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21628:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21630:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21628:37855564,2439708:1179648,16384,0 ) ) -k1,21630:3078556,2439708:-34777008 +k1,21628:3078556,2439708:-34777008 ) ] -[1,21630:3078558,4812305:0,0,0 -(1,21630:3078558,49800853:0,16384,2228224 -k1,21630:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21630:2537886,49800853:1179648,16384,0 +[1,21628:3078558,4812305:0,0,0 +(1,21628:3078558,49800853:0,16384,2228224 +k1,21628:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21628:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21630:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21628:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21630:3078558,4812305:0,0,0 -(1,21630:3078558,49800853:0,16384,2228224 -g1,21630:29030814,49800853 -g1,21630:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21630:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21630:37855564,49800853:1179648,16384,0 +[1,21628:3078558,4812305:0,0,0 +(1,21628:3078558,49800853:0,16384,2228224 +g1,21628:29030814,49800853 +g1,21628:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21628:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21628:37855564,49800853:1179648,16384,0 ) ) -k1,21630:3078556,49800853:-34777008 -) -] -g1,21630:6630773,4812305 -k1,21630:21386205,4812305:13560055 -g1,21630:21999622,4812305 -g1,21630:25611966,4812305 -g1,21630:28956923,4812305 -g1,21630:29772190,4812305 -) -) -] -[1,21630:6630773,45706769:25952256,40108032,0 -(1,21630:6630773,45706769:25952256,40108032,0 -(1,21630:6630773,45706769:0,0,0 -g1,21630:6630773,45706769 -) -[1,21630:6630773,45706769:25952256,40108032,0 -(1,21571:6630773,6254097:25952256,513147,122846 -h1,21570:6630773,6254097:983040,0,0 -k1,21570:8933859,6254097:278024 -k1,21570:10230968,6254097:278024 -k1,21570:12110692,6254097:278024 -k1,21570:15166132,6254097:278024 -k1,21570:20611671,6254097:278025 -k1,21570:22035920,6254097:278024 -(1,21570:22035920,6254097:0,452978,122846 -r1,21630:24504457,6254097:2468537,575824,122846 -k1,21570:22035920,6254097:-2468537 -) -(1,21570:22035920,6254097:2468537,452978,122846 -k1,21570:22035920,6254097:3277 -h1,21570:24501180,6254097:0,411205,112570 -) -k1,21570:24956151,6254097:278024 -k1,21570:27136685,6254097:278024 -k1,21570:28808660,6254097:278024 -k1,21570:30830597,6254097:278024 -k1,21571:32583029,6254097:0 -) -(1,21571:6630773,7119177:25952256,513147,102891 -k1,21570:10374407,7119177:222385 -k1,21570:11282955,7119177:222386 -k1,21570:13013979,7119177:222385 -k1,21570:15501944,7119177:222385 -k1,21570:16715889,7119177:222385 -k1,21570:19895915,7119177:222386 -k1,21570:20746135,7119177:222385 -k1,21570:22670490,7119177:222385 -k1,21570:24763928,7119177:222385 -k1,21570:25672476,7119177:222386 -k1,21570:29312564,7119177:222385 -k1,21570:31563944,7119177:222385 -k1,21570:32583029,7119177:0 -) -(1,21571:6630773,7984257:25952256,513147,134348 -k1,21570:11712533,7984257:244548 -k1,21570:12488577,7984257:244547 -k1,21570:13667668,7984257:244548 -k1,21570:14673744,7984257:244548 -k1,21570:17345746,7984257:244548 -k1,21570:18360996,7984257:244547 -k1,21570:21677872,7984257:244548 -k1,21570:22573848,7984257:244548 -k1,21570:26099128,7984257:244548 -(1,21570:26099128,7984257:0,414482,115847 -r1,21630:27864241,7984257:1765113,530329,115847 -k1,21570:26099128,7984257:-1765113 -) -(1,21570:26099128,7984257:1765113,414482,115847 -k1,21570:26099128,7984257:3277 -h1,21570:27860964,7984257:0,411205,112570 -) -k1,21570:28108788,7984257:244547 -k1,21570:29012628,7984257:244548 -k1,21570:32583029,7984257:0 -) -(1,21571:6630773,8849337:25952256,513147,126483 -k1,21570:8385991,8849337:183009 -k1,21570:11594797,8849337:183009 -k1,21570:13062312,8849337:183009 -k1,21570:14006850,8849337:183010 -k1,21570:16455439,8849337:183009 -k1,21570:17453716,8849337:183009 -k1,21570:18702996,8849337:183009 -k1,21570:20649579,8849337:183009 -k1,21570:21188448,8849337:183009 -k1,21570:26382341,8849337:183010 -k1,21570:28606141,8849337:183009 -k1,21570:29145010,8849337:183009 -k1,21570:32583029,8849337:0 -) -(1,21571:6630773,9714417:25952256,513147,138281 -g1,21570:11840885,9714417 -(1,21570:11840885,9714417:0,452978,115847 -r1,21630:16067981,9714417:4227096,568825,115847 -k1,21570:11840885,9714417:-4227096 -) -(1,21570:11840885,9714417:4227096,452978,115847 -k1,21570:11840885,9714417:3277 -h1,21570:16064704,9714417:0,411205,112570 -) -g1,21570:16267210,9714417 -g1,21570:17149324,9714417 -$1,21570:17149324,9714417 -$1,21570:18443660,9714417 -g1,21570:18642889,9714417 -g1,21570:19373615,9714417 -g1,21570:21086070,9714417 -g1,21570:22769689,9714417 -g1,21570:24035189,9714417 -k1,21571:32583029,9714417:6212793 -g1,21571:32583029,9714417 -) -v1,21573:6630773,10399272:0,393216,0 -(1,21579:6630773,12109665:25952256,2103609,196608 -g1,21579:6630773,12109665 -g1,21579:6630773,12109665 -g1,21579:6434165,12109665 -(1,21579:6434165,12109665:0,2103609,196608 -r1,21630:32779637,12109665:26345472,2300217,196608 -k1,21579:6434165,12109665:-26345472 -) -(1,21579:6434165,12109665:26345472,2103609,196608 -[1,21579:6630773,12109665:25952256,1907001,0 -(1,21575:6630773,10633709:25952256,431045,112852 -(1,21574:6630773,10633709:0,0,0 -g1,21574:6630773,10633709 -g1,21574:6630773,10633709 -g1,21574:6303093,10633709 -(1,21574:6303093,10633709:0,0,0 -) -g1,21574:6630773,10633709 -) -k1,21575:6630773,10633709:0 -g1,21575:10614221,10633709 -g1,21575:11278129,10633709 -g1,21575:15261576,10633709 -g1,21575:17917208,10633709 -g1,21575:18581116,10633709 -g1,21575:20572840,10633709 -g1,21575:21236748,10633709 -g1,21575:22232610,10633709 -g1,21575:22896518,10633709 -g1,21575:23560426,10633709 -g1,21575:24888242,10633709 -h1,21575:25220196,10633709:0,0,0 -k1,21575:32583029,10633709:7362833 -g1,21575:32583029,10633709 -) -(1,21576:6630773,11318564:25952256,424439,112852 -h1,21576:6630773,11318564:0,0,0 -g1,21576:6962727,11318564 -g1,21576:7294681,11318564 -g1,21576:11610082,11318564 -h1,21576:11942036,11318564:0,0,0 -k1,21576:32583028,11318564:20640992 -g1,21576:32583028,11318564 -) -(1,21577:6630773,12003419:25952256,424439,106246 -h1,21577:6630773,12003419:0,0,0 -g1,21577:6962727,12003419 -g1,21577:7294681,12003419 -g1,21577:15593530,12003419 -g1,21577:16257438,12003419 -h1,21577:20572839,12003419:0,0,0 -k1,21577:32583029,12003419:12010190 -g1,21577:32583029,12003419 -) -] -) -g1,21579:32583029,12109665 -g1,21579:6630773,12109665 -g1,21579:6630773,12109665 -g1,21579:32583029,12109665 -g1,21579:32583029,12109665 -) -h1,21579:6630773,12306273:0,0,0 -(1,21583:6630773,13171353:25952256,505283,134348 -h1,21582:6630773,13171353:983040,0,0 -k1,21582:10202903,13171353:219963 -k1,21582:13864160,13171353:219962 -k1,21582:15075683,13171353:219963 -k1,21582:18504943,13171353:219962 -k1,21582:19340944,13171353:219963 -k1,21582:21810757,13171353:219962 -k1,21582:24585313,13171353:219963 -k1,21582:25491437,13171353:219962 -k1,21582:26730485,13171353:219963 -k1,21582:28648485,13171353:219962 -k1,21582:31157621,13171353:219963 -k1,21582:32583029,13171353:0 -) -(1,21583:6630773,14036433:25952256,513147,134348 -k1,21582:8525419,14036433:284426 -k1,21582:9828930,14036433:284426 -k1,21582:12472653,14036433:284427 -k1,21582:15006930,14036433:284426 -k1,21582:16713487,14036433:284426 -k1,21582:18194600,14036433:284426 -k1,21582:20728878,14036433:284427 -k1,21582:22402667,14036433:284426 -k1,21582:23634744,14036433:284426 -k1,21582:26094310,14036433:284426 -k1,21582:28122650,14036433:284427 -k1,21582:29974697,14036433:284426 -k1,21582:31648486,14036433:284426 -k1,21583:32583029,14036433:0 -) -(1,21583:6630773,14901513:25952256,513147,134348 -(1,21582:6630773,14901513:0,414482,122846 -r1,21630:8747598,14901513:2116825,537328,122846 -k1,21582:6630773,14901513:-2116825 -) -(1,21582:6630773,14901513:2116825,414482,122846 -k1,21582:6630773,14901513:3277 -h1,21582:8744321,14901513:0,411205,112570 -) -k1,21582:9154356,14901513:233088 -k1,21582:10379004,14901513:233088 -k1,21582:12914372,14901513:233088 -k1,21582:14882853,14901513:233088 -k1,21582:15471801,14901513:233088 -(1,21582:15471801,14901513:0,452978,122846 -r1,21630:17236914,14901513:1765113,575824,122846 -k1,21582:15471801,14901513:-1765113 -) -(1,21582:15471801,14901513:1765113,452978,122846 -k1,21582:15471801,14901513:3277 -h1,21582:17233637,14901513:0,411205,112570 -) -k1,21582:17470002,14901513:233088 -k1,21582:18389252,14901513:233088 -k1,21582:23633223,14901513:233088 -k1,21582:25979847,14901513:233088 -k1,21582:27204495,14901513:233088 -k1,21582:28372126,14901513:233088 -k1,21582:30340607,14901513:233088 -k1,21582:31592780,14901513:233088 -k1,21583:32583029,14901513:0 -) -(1,21583:6630773,15766593:25952256,505283,134348 -g1,21582:8381239,15766593 -k1,21583:32583028,15766593:22138716 -g1,21583:32583028,15766593 -) -v1,21587:6630773,16451448:0,393216,0 -(1,21595:6630773,19531551:25952256,3473319,196608 -g1,21595:6630773,19531551 -g1,21595:6630773,19531551 -g1,21595:6434165,19531551 -(1,21595:6434165,19531551:0,3473319,196608 -r1,21630:32779637,19531551:26345472,3669927,196608 -k1,21595:6434165,19531551:-26345472 -) -(1,21595:6434165,19531551:26345472,3473319,196608 -[1,21595:6630773,19531551:25952256,3276711,0 -(1,21589:6630773,16679279:25952256,424439,112852 -(1,21588:6630773,16679279:0,0,0 -g1,21588:6630773,16679279 -g1,21588:6630773,16679279 -g1,21588:6303093,16679279 -(1,21588:6303093,16679279:0,0,0 -) -g1,21588:6630773,16679279 -) -k1,21589:6630773,16679279:0 -g1,21589:10614221,16679279 -g1,21589:11278129,16679279 -k1,21589:11278129,16679279:0 -h1,21589:13601807,16679279:0,0,0 -k1,21589:32583029,16679279:18981222 -g1,21589:32583029,16679279 -) -(1,21590:6630773,17364134:25952256,431045,112852 -h1,21590:6630773,17364134:0,0,0 -g1,21590:6962727,17364134 -g1,21590:7294681,17364134 -g1,21590:7626635,17364134 -g1,21590:7958589,17364134 -g1,21590:8290543,17364134 -g1,21590:8622497,17364134 -g1,21590:8954451,17364134 -g1,21590:11610083,17364134 -g1,21590:12273991,17364134 -g1,21590:14265715,17364134 -g1,21590:14929623,17364134 -g1,21590:16589393,17364134 -g1,21590:17253301,17364134 -g1,21590:17917209,17364134 -g1,21590:22896518,17364134 -g1,21590:25220196,17364134 -g1,21590:25884104,17364134 -g1,21590:28207782,17364134 -h1,21590:28539736,17364134:0,0,0 -k1,21590:32583029,17364134:4043293 -g1,21590:32583029,17364134 -) -(1,21591:6630773,18048989:25952256,424439,112852 -h1,21591:6630773,18048989:0,0,0 -g1,21591:6962727,18048989 -g1,21591:7294681,18048989 -g1,21591:11278128,18048989 -h1,21591:11610082,18048989:0,0,0 -k1,21591:32583030,18048989:20972948 -g1,21591:32583030,18048989 -) -(1,21592:6630773,18733844:25952256,424439,112852 -h1,21592:6630773,18733844:0,0,0 -g1,21592:6962727,18733844 -g1,21592:7294681,18733844 -g1,21592:11610082,18733844 -h1,21592:11942036,18733844:0,0,0 -k1,21592:32583028,18733844:20640992 -g1,21592:32583028,18733844 -) -(1,21593:6630773,19418699:25952256,424439,112852 -h1,21593:6630773,19418699:0,0,0 -g1,21593:6962727,19418699 -g1,21593:7294681,19418699 -g1,21593:15593530,19418699 -g1,21593:16257438,19418699 -g1,21593:18581116,19418699 -g1,21593:20904794,19418699 -g1,21593:21568702,19418699 -g1,21593:23560426,19418699 -g1,21593:24888242,19418699 -g1,21593:26548012,19418699 -h1,21593:28207782,19418699:0,0,0 -k1,21593:32583029,19418699:4375247 -g1,21593:32583029,19418699 -) -] -) -g1,21595:32583029,19531551 -g1,21595:6630773,19531551 -g1,21595:6630773,19531551 -g1,21595:32583029,19531551 -g1,21595:32583029,19531551 -) -h1,21595:6630773,19728159:0,0,0 -(1,21598:6630773,28877361:25952256,9083666,0 -k1,21598:10523651,28877361:3892878 -h1,21597:10523651,28877361:0,0,0 -(1,21597:10523651,28877361:18166500,9083666,0 -(1,21597:10523651,28877361:18167376,9083688,0 -(1,21597:10523651,28877361:18167376,9083688,0 -(1,21597:10523651,28877361:0,9083688,0 -(1,21597:10523651,28877361:0,14208860,0 -(1,21597:10523651,28877361:28417720,14208860,0 -) -k1,21597:10523651,28877361:-28417720 -) -) -g1,21597:28691027,28877361 -) -) -) -g1,21598:28690151,28877361 -k1,21598:32583029,28877361:3892878 -) -v1,21605:6630773,29742441:0,393216,0 -(1,21606:6630773,33518922:25952256,4169697,0 -g1,21606:6630773,33518922 -g1,21606:6237557,33518922 -r1,21630:6368629,33518922:131072,4169697,0 -g1,21606:6567858,33518922 -g1,21606:6764466,33518922 -[1,21606:6764466,33518922:25818563,4169697,0 -(1,21606:6764466,30050739:25818563,701514,196608 -(1,21605:6764466,30050739:0,701514,196608 -r1,21630:7761522,30050739:997056,898122,196608 -k1,21605:6764466,30050739:-997056 -) -(1,21605:6764466,30050739:997056,701514,196608 -) -k1,21605:7965316,30050739:203794 -k1,21605:8292996,30050739:327680 -k1,21605:9124624,30050739:203793 -k1,21605:10347503,30050739:203794 -k1,21605:13543016,30050739:203794 -k1,21605:15775805,30050739:203794 -k1,21605:17171043,30050739:203793 -k1,21605:17990875,30050739:203794 -k1,21605:20732223,30050739:203794 -k1,21605:22537717,30050739:203794 -k1,21605:26220161,30050739:203793 -k1,21605:31591469,30050739:203794 -k1,21605:32583029,30050739:0 -) -(1,21606:6764466,30915819:25818563,513147,134348 -k1,21605:9346517,30915819:210303 -k1,21605:10208248,30915819:210303 -k1,21605:13032782,30915819:210303 -k1,21605:16591319,30915819:210303 -(1,21605:16591319,30915819:0,414482,115847 -r1,21630:16949585,30915819:358266,530329,115847 -k1,21605:16591319,30915819:-358266 -) -(1,21605:16591319,30915819:358266,414482,115847 -k1,21605:16591319,30915819:3277 -h1,21605:16946308,30915819:0,411205,112570 -) -k1,21605:17159888,30915819:210303 -k1,21605:18561636,30915819:210303 -(1,21605:18561636,30915819:0,414482,115847 -r1,21630:18919902,30915819:358266,530329,115847 -k1,21605:18561636,30915819:-358266 -) -(1,21605:18561636,30915819:358266,414482,115847 -k1,21605:18561636,30915819:3277 -h1,21605:18916625,30915819:0,411205,112570 -) -k1,21605:19303874,30915819:210302 -k1,21605:20332066,30915819:210303 -k1,21605:21561454,30915819:210303 -k1,21605:24674347,30915819:210303 -k1,21605:25543942,30915819:210303 -k1,21605:28473334,30915819:210303 -k1,21605:29215134,30915819:210303 -k1,21605:32583029,30915819:0 -) -(1,21606:6764466,31780899:25818563,513147,126483 -k1,21605:8576427,31780899:210261 -k1,21605:9252650,31780899:210262 -k1,21605:10529182,31780899:210261 -k1,21605:11505559,31780899:210261 -k1,21605:15286221,31780899:210261 -k1,21605:17572664,31780899:210262 -k1,21605:19068741,31780899:210261 -k1,21605:21327002,31780899:210261 -k1,21605:26878447,31780899:210261 -k1,21605:27716544,31780899:210262 -k1,21605:29618945,31780899:210261 -k1,21605:31700259,31780899:210261 -k1,21606:32583029,31780899:0 -) -(1,21606:6764466,32645979:25818563,513147,134348 -k1,21605:9000243,32645979:258556 -k1,21605:9614659,32645979:258556 -k1,21605:14710428,32645979:258557 -k1,21605:15620412,32645979:258556 -k1,21605:16234828,32645979:258556 -(1,21605:16234828,32645979:0,452978,115847 -r1,21630:17648229,32645979:1413401,568825,115847 -k1,21605:16234828,32645979:-1413401 -) -(1,21605:16234828,32645979:1413401,452978,115847 -k1,21605:16234828,32645979:3277 -h1,21605:17644952,32645979:0,411205,112570 -) -k1,21605:17906785,32645979:258556 -k1,21605:18848226,32645979:258556 -(1,21605:18848226,32645979:0,452978,115847 -r1,21630:20965051,32645979:2116825,568825,115847 -k1,21605:18848226,32645979:-2116825 -) -(1,21605:18848226,32645979:2116825,452978,115847 -k1,21605:18848226,32645979:3277 -h1,21605:20961774,32645979:0,411205,112570 -) -k1,21605:21223607,32645979:258556 -k1,21605:23054373,32645979:258557 -k1,21605:25031283,32645979:258556 -k1,21605:27498402,32645979:258556 -k1,21605:28776043,32645979:258556 -k1,21605:32583029,32645979:0 -) -(1,21606:6764466,33511059:25818563,505283,7863 -g1,21605:10103525,33511059 -g1,21605:10918792,33511059 -g1,21605:12137106,33511059 -k1,21606:32583030,33511059:19004132 -g1,21606:32583030,33511059 -) -] -g1,21606:32583029,33518922 -) -h1,21606:6630773,33518922:0,0,0 -(1,21608:6630773,35170434:25952256,513147,138281 -(1,21608:6630773,35170434:0,0,0 -g1,21608:6630773,35170434 -) -g1,21608:9499284,35170434 -g1,21608:10380743,35170434 -$1,21608:10380743,35170434 -$1,21608:10883404,35170434 -g1,21608:11087876,35170434 -g1,21608:12512628,35170434 -$1,21608:12512628,35170434 -$1,21608:13064441,35170434 -g1,21608:13268913,35170434 -k1,21608:32583029,35170434:17839556 -g1,21608:32583029,35170434 -) -(1,21612:6630773,36428730:25952256,513147,134348 -k1,21611:8056517,36428730:250684 -k1,21611:10572780,36428730:250683 -k1,21611:13437695,36428730:250684 -k1,21611:14347671,36428730:250684 -k1,21611:15996892,36428730:250683 -k1,21611:17351858,36428730:250684 -k1,21611:18350307,36428730:250683 -k1,21611:21262408,36428730:250684 -k1,21611:24071618,36428730:250684 -k1,21611:27603033,36428730:250683 -(1,21611:27603033,36428730:0,452978,115847 -r1,21630:30423282,36428730:2820249,568825,115847 -k1,21611:27603033,36428730:-2820249 -) -(1,21611:27603033,36428730:2820249,452978,115847 -k1,21611:27603033,36428730:3277 -h1,21611:30420005,36428730:0,411205,112570 -) -k1,21611:30847636,36428730:250684 -k1,21611:32583029,36428730:0 -) -(1,21612:6630773,37293810:25952256,505283,122846 -g1,21611:9804681,37293810 -g1,21611:13091966,37293810 -(1,21611:13091966,37293810:0,452978,115847 -r1,21630:15912215,37293810:2820249,568825,115847 -k1,21611:13091966,37293810:-2820249 -) -(1,21611:13091966,37293810:2820249,452978,115847 -k1,21611:13091966,37293810:3277 -h1,21611:15908938,37293810:0,411205,112570 -) -g1,21611:16285114,37293810 -(1,21611:16285114,37293810:0,452978,115847 -r1,21630:18050227,37293810:1765113,568825,115847 -k1,21611:16285114,37293810:-1765113 -) -(1,21611:16285114,37293810:1765113,452978,115847 -k1,21611:16285114,37293810:3277 -h1,21611:18046950,37293810:0,411205,112570 -) -g1,21611:18423126,37293810 -(1,21611:18423126,37293810:0,459977,115847 -r1,21630:20539951,37293810:2116825,575824,115847 -k1,21611:18423126,37293810:-2116825 -) -(1,21611:18423126,37293810:2116825,459977,115847 -k1,21611:18423126,37293810:3277 -h1,21611:20536674,37293810:0,411205,112570 -) -g1,21611:20739180,37293810 -g1,21611:22129854,37293810 -(1,21611:22129854,37293810:0,452978,122846 -r1,21630:24598391,37293810:2468537,575824,122846 -k1,21611:22129854,37293810:-2468537 -) -(1,21611:22129854,37293810:2468537,452978,122846 -k1,21611:22129854,37293810:3277 -h1,21611:24595114,37293810:0,411205,112570 -) -k1,21612:32583029,37293810:7932210 -g1,21612:32583029,37293810 -) -v1,21614:6630773,37978665:0,393216,0 -(1,21621:6630773,40373913:25952256,2788464,196608 -g1,21621:6630773,40373913 -g1,21621:6630773,40373913 -g1,21621:6434165,40373913 -(1,21621:6434165,40373913:0,2788464,196608 -r1,21630:32779637,40373913:26345472,2985072,196608 -k1,21621:6434165,40373913:-26345472 -) -(1,21621:6434165,40373913:26345472,2788464,196608 -[1,21621:6630773,40373913:25952256,2591856,0 -(1,21616:6630773,38206496:25952256,424439,112852 -(1,21615:6630773,38206496:0,0,0 -g1,21615:6630773,38206496 -g1,21615:6630773,38206496 -g1,21615:6303093,38206496 -(1,21615:6303093,38206496:0,0,0 -) -g1,21615:6630773,38206496 -) -k1,21616:6630773,38206496:0 -g1,21616:10614221,38206496 -g1,21616:11278129,38206496 -g1,21616:13933761,38206496 -g1,21616:16589393,38206496 -g1,21616:17253301,38206496 -g1,21616:19245025,38206496 -g1,21616:19908933,38206496 -g1,21616:21236749,38206496 -g1,21616:21900657,38206496 -g1,21616:22564565,38206496 -g1,21616:24556289,38206496 -h1,21616:24888243,38206496:0,0,0 -k1,21616:32583029,38206496:7694786 -g1,21616:32583029,38206496 -) -(1,21617:6630773,38891351:25952256,424439,112852 -h1,21617:6630773,38891351:0,0,0 -g1,21617:6962727,38891351 -g1,21617:7294681,38891351 -g1,21617:11610082,38891351 -h1,21617:11942036,38891351:0,0,0 -k1,21617:32583028,38891351:20640992 -g1,21617:32583028,38891351 -) -(1,21618:6630773,39576206:25952256,424439,106246 -h1,21618:6630773,39576206:0,0,0 -g1,21618:6962727,39576206 -g1,21618:7294681,39576206 -g1,21618:16589391,39576206 -g1,21618:17253299,39576206 -g1,21618:19576977,39576206 -h1,21618:19908931,39576206:0,0,0 -k1,21618:32583029,39576206:12674098 -g1,21618:32583029,39576206 -) -(1,21619:6630773,40261061:25952256,424439,112852 -h1,21619:6630773,40261061:0,0,0 -g1,21619:6962727,40261061 -g1,21619:7294681,40261061 -g1,21619:16589391,40261061 -g1,21619:17253299,40261061 -h1,21619:19908931,40261061:0,0,0 -k1,21619:32583029,40261061:12674098 -g1,21619:32583029,40261061 -) -] -) -g1,21621:32583029,40373913 -g1,21621:6630773,40373913 -g1,21621:6630773,40373913 -g1,21621:32583029,40373913 -g1,21621:32583029,40373913 -) -h1,21621:6630773,40570521:0,0,0 -] -(1,21630:32583029,45706769:0,0,0 -g1,21630:32583029,45706769 -) -) -] -(1,21630:6630773,47279633:25952256,0,0 -h1,21630:6630773,47279633:25952256,0,0 -) -] -(1,21630:4262630,4025873:0,0,0 -[1,21630:-473656,4025873:0,0,0 -(1,21630:-473656,-710413:0,0,0 -(1,21630:-473656,-710413:0,0,0 -g1,21630:-473656,-710413 -) -g1,21630:-473656,-710413 +k1,21628:3078556,49800853:-34777008 +) +] +g1,21628:6630773,4812305 +k1,21628:21386205,4812305:13560055 +g1,21628:21999622,4812305 +g1,21628:25611966,4812305 +g1,21628:28956923,4812305 +g1,21628:29772190,4812305 +) +) +] +[1,21628:6630773,45706769:25952256,40108032,0 +(1,21628:6630773,45706769:25952256,40108032,0 +(1,21628:6630773,45706769:0,0,0 +g1,21628:6630773,45706769 +) +[1,21628:6630773,45706769:25952256,40108032,0 +(1,21569:6630773,6254097:25952256,513147,122846 +h1,21568:6630773,6254097:983040,0,0 +k1,21568:8933859,6254097:278024 +k1,21568:10230968,6254097:278024 +k1,21568:12110692,6254097:278024 +k1,21568:15166132,6254097:278024 +k1,21568:20611671,6254097:278025 +k1,21568:22035920,6254097:278024 +(1,21568:22035920,6254097:0,452978,122846 +r1,21628:24504457,6254097:2468537,575824,122846 +k1,21568:22035920,6254097:-2468537 +) +(1,21568:22035920,6254097:2468537,452978,122846 +k1,21568:22035920,6254097:3277 +h1,21568:24501180,6254097:0,411205,112570 +) +k1,21568:24956151,6254097:278024 +k1,21568:27136685,6254097:278024 +k1,21568:28808660,6254097:278024 +k1,21568:30830597,6254097:278024 +k1,21569:32583029,6254097:0 +) +(1,21569:6630773,7119177:25952256,513147,102891 +k1,21568:10374407,7119177:222385 +k1,21568:11282955,7119177:222386 +k1,21568:13013979,7119177:222385 +k1,21568:15501944,7119177:222385 +k1,21568:16715889,7119177:222385 +k1,21568:19895915,7119177:222386 +k1,21568:20746135,7119177:222385 +k1,21568:22670490,7119177:222385 +k1,21568:24763928,7119177:222385 +k1,21568:25672476,7119177:222386 +k1,21568:29312564,7119177:222385 +k1,21568:31563944,7119177:222385 +k1,21568:32583029,7119177:0 +) +(1,21569:6630773,7984257:25952256,513147,134348 +k1,21568:11712533,7984257:244548 +k1,21568:12488577,7984257:244547 +k1,21568:13667668,7984257:244548 +k1,21568:14673744,7984257:244548 +k1,21568:17345746,7984257:244548 +k1,21568:18360996,7984257:244547 +k1,21568:21677872,7984257:244548 +k1,21568:22573848,7984257:244548 +k1,21568:26099128,7984257:244548 +(1,21568:26099128,7984257:0,414482,115847 +r1,21628:27864241,7984257:1765113,530329,115847 +k1,21568:26099128,7984257:-1765113 +) +(1,21568:26099128,7984257:1765113,414482,115847 +k1,21568:26099128,7984257:3277 +h1,21568:27860964,7984257:0,411205,112570 +) +k1,21568:28108788,7984257:244547 +k1,21568:29012628,7984257:244548 +k1,21568:32583029,7984257:0 +) +(1,21569:6630773,8849337:25952256,513147,126483 +k1,21568:8385991,8849337:183009 +k1,21568:11594797,8849337:183009 +k1,21568:13062312,8849337:183009 +k1,21568:14006850,8849337:183010 +k1,21568:16455439,8849337:183009 +k1,21568:17453716,8849337:183009 +k1,21568:18702996,8849337:183009 +k1,21568:20649579,8849337:183009 +k1,21568:21188448,8849337:183009 +k1,21568:26382341,8849337:183010 +k1,21568:28606141,8849337:183009 +k1,21568:29145010,8849337:183009 +k1,21568:32583029,8849337:0 +) +(1,21569:6630773,9714417:25952256,513147,138281 +g1,21568:11840885,9714417 +(1,21568:11840885,9714417:0,452978,115847 +r1,21628:16067981,9714417:4227096,568825,115847 +k1,21568:11840885,9714417:-4227096 +) +(1,21568:11840885,9714417:4227096,452978,115847 +k1,21568:11840885,9714417:3277 +h1,21568:16064704,9714417:0,411205,112570 +) +g1,21568:16267210,9714417 +g1,21568:17149324,9714417 +$1,21568:17149324,9714417 +$1,21568:18443660,9714417 +g1,21568:18642889,9714417 +g1,21568:19373615,9714417 +g1,21568:21086070,9714417 +g1,21568:22769689,9714417 +g1,21568:24035189,9714417 +k1,21569:32583029,9714417:6212793 +g1,21569:32583029,9714417 +) +v1,21571:6630773,10399272:0,393216,0 +(1,21577:6630773,12109665:25952256,2103609,196608 +g1,21577:6630773,12109665 +g1,21577:6630773,12109665 +g1,21577:6434165,12109665 +(1,21577:6434165,12109665:0,2103609,196608 +r1,21628:32779637,12109665:26345472,2300217,196608 +k1,21577:6434165,12109665:-26345472 +) +(1,21577:6434165,12109665:26345472,2103609,196608 +[1,21577:6630773,12109665:25952256,1907001,0 +(1,21573:6630773,10633709:25952256,431045,112852 +(1,21572:6630773,10633709:0,0,0 +g1,21572:6630773,10633709 +g1,21572:6630773,10633709 +g1,21572:6303093,10633709 +(1,21572:6303093,10633709:0,0,0 +) +g1,21572:6630773,10633709 +) +k1,21573:6630773,10633709:0 +g1,21573:10614221,10633709 +g1,21573:11278129,10633709 +g1,21573:15261576,10633709 +g1,21573:17917208,10633709 +g1,21573:18581116,10633709 +g1,21573:20572840,10633709 +g1,21573:21236748,10633709 +g1,21573:22232610,10633709 +g1,21573:22896518,10633709 +g1,21573:23560426,10633709 +g1,21573:24888242,10633709 +h1,21573:25220196,10633709:0,0,0 +k1,21573:32583029,10633709:7362833 +g1,21573:32583029,10633709 +) +(1,21574:6630773,11318564:25952256,424439,112852 +h1,21574:6630773,11318564:0,0,0 +g1,21574:6962727,11318564 +g1,21574:7294681,11318564 +g1,21574:11610082,11318564 +h1,21574:11942036,11318564:0,0,0 +k1,21574:32583028,11318564:20640992 +g1,21574:32583028,11318564 +) +(1,21575:6630773,12003419:25952256,424439,106246 +h1,21575:6630773,12003419:0,0,0 +g1,21575:6962727,12003419 +g1,21575:7294681,12003419 +g1,21575:15593530,12003419 +g1,21575:16257438,12003419 +h1,21575:20572839,12003419:0,0,0 +k1,21575:32583029,12003419:12010190 +g1,21575:32583029,12003419 +) +] +) +g1,21577:32583029,12109665 +g1,21577:6630773,12109665 +g1,21577:6630773,12109665 +g1,21577:32583029,12109665 +g1,21577:32583029,12109665 +) +h1,21577:6630773,12306273:0,0,0 +(1,21581:6630773,13171353:25952256,505283,134348 +h1,21580:6630773,13171353:983040,0,0 +k1,21580:10202903,13171353:219963 +k1,21580:13864160,13171353:219962 +k1,21580:15075683,13171353:219963 +k1,21580:18504943,13171353:219962 +k1,21580:19340944,13171353:219963 +k1,21580:21810757,13171353:219962 +k1,21580:24585313,13171353:219963 +k1,21580:25491437,13171353:219962 +k1,21580:26730485,13171353:219963 +k1,21580:28648485,13171353:219962 +k1,21580:31157621,13171353:219963 +k1,21580:32583029,13171353:0 +) +(1,21581:6630773,14036433:25952256,513147,134348 +k1,21580:8525419,14036433:284426 +k1,21580:9828930,14036433:284426 +k1,21580:12472653,14036433:284427 +k1,21580:15006930,14036433:284426 +k1,21580:16713487,14036433:284426 +k1,21580:18194600,14036433:284426 +k1,21580:20728878,14036433:284427 +k1,21580:22402667,14036433:284426 +k1,21580:23634744,14036433:284426 +k1,21580:26094310,14036433:284426 +k1,21580:28122650,14036433:284427 +k1,21580:29974697,14036433:284426 +k1,21580:31648486,14036433:284426 +k1,21581:32583029,14036433:0 +) +(1,21581:6630773,14901513:25952256,513147,134348 +(1,21580:6630773,14901513:0,414482,122846 +r1,21628:8747598,14901513:2116825,537328,122846 +k1,21580:6630773,14901513:-2116825 +) +(1,21580:6630773,14901513:2116825,414482,122846 +k1,21580:6630773,14901513:3277 +h1,21580:8744321,14901513:0,411205,112570 +) +k1,21580:9154356,14901513:233088 +k1,21580:10379004,14901513:233088 +k1,21580:12914372,14901513:233088 +k1,21580:14882853,14901513:233088 +k1,21580:15471801,14901513:233088 +(1,21580:15471801,14901513:0,452978,122846 +r1,21628:17236914,14901513:1765113,575824,122846 +k1,21580:15471801,14901513:-1765113 +) +(1,21580:15471801,14901513:1765113,452978,122846 +k1,21580:15471801,14901513:3277 +h1,21580:17233637,14901513:0,411205,112570 +) +k1,21580:17470002,14901513:233088 +k1,21580:18389252,14901513:233088 +k1,21580:23633223,14901513:233088 +k1,21580:25979847,14901513:233088 +k1,21580:27204495,14901513:233088 +k1,21580:28372126,14901513:233088 +k1,21580:30340607,14901513:233088 +k1,21580:31592780,14901513:233088 +k1,21581:32583029,14901513:0 +) +(1,21581:6630773,15766593:25952256,505283,134348 +g1,21580:8381239,15766593 +k1,21581:32583028,15766593:22138716 +g1,21581:32583028,15766593 +) +v1,21585:6630773,16451448:0,393216,0 +(1,21593:6630773,19531551:25952256,3473319,196608 +g1,21593:6630773,19531551 +g1,21593:6630773,19531551 +g1,21593:6434165,19531551 +(1,21593:6434165,19531551:0,3473319,196608 +r1,21628:32779637,19531551:26345472,3669927,196608 +k1,21593:6434165,19531551:-26345472 +) +(1,21593:6434165,19531551:26345472,3473319,196608 +[1,21593:6630773,19531551:25952256,3276711,0 +(1,21587:6630773,16679279:25952256,424439,112852 +(1,21586:6630773,16679279:0,0,0 +g1,21586:6630773,16679279 +g1,21586:6630773,16679279 +g1,21586:6303093,16679279 +(1,21586:6303093,16679279:0,0,0 +) +g1,21586:6630773,16679279 +) +k1,21587:6630773,16679279:0 +g1,21587:10614221,16679279 +g1,21587:11278129,16679279 +k1,21587:11278129,16679279:0 +h1,21587:13601807,16679279:0,0,0 +k1,21587:32583029,16679279:18981222 +g1,21587:32583029,16679279 +) +(1,21588:6630773,17364134:25952256,431045,112852 +h1,21588:6630773,17364134:0,0,0 +g1,21588:6962727,17364134 +g1,21588:7294681,17364134 +g1,21588:7626635,17364134 +g1,21588:7958589,17364134 +g1,21588:8290543,17364134 +g1,21588:8622497,17364134 +g1,21588:8954451,17364134 +g1,21588:11610083,17364134 +g1,21588:12273991,17364134 +g1,21588:14265715,17364134 +g1,21588:14929623,17364134 +g1,21588:16589393,17364134 +g1,21588:17253301,17364134 +g1,21588:17917209,17364134 +g1,21588:22896518,17364134 +g1,21588:25220196,17364134 +g1,21588:25884104,17364134 +g1,21588:28207782,17364134 +h1,21588:28539736,17364134:0,0,0 +k1,21588:32583029,17364134:4043293 +g1,21588:32583029,17364134 +) +(1,21589:6630773,18048989:25952256,424439,112852 +h1,21589:6630773,18048989:0,0,0 +g1,21589:6962727,18048989 +g1,21589:7294681,18048989 +g1,21589:11278128,18048989 +h1,21589:11610082,18048989:0,0,0 +k1,21589:32583030,18048989:20972948 +g1,21589:32583030,18048989 +) +(1,21590:6630773,18733844:25952256,424439,112852 +h1,21590:6630773,18733844:0,0,0 +g1,21590:6962727,18733844 +g1,21590:7294681,18733844 +g1,21590:11610082,18733844 +h1,21590:11942036,18733844:0,0,0 +k1,21590:32583028,18733844:20640992 +g1,21590:32583028,18733844 +) +(1,21591:6630773,19418699:25952256,424439,112852 +h1,21591:6630773,19418699:0,0,0 +g1,21591:6962727,19418699 +g1,21591:7294681,19418699 +g1,21591:15593530,19418699 +g1,21591:16257438,19418699 +g1,21591:18581116,19418699 +g1,21591:20904794,19418699 +g1,21591:21568702,19418699 +g1,21591:23560426,19418699 +g1,21591:24888242,19418699 +g1,21591:26548012,19418699 +h1,21591:28207782,19418699:0,0,0 +k1,21591:32583029,19418699:4375247 +g1,21591:32583029,19418699 +) +] +) +g1,21593:32583029,19531551 +g1,21593:6630773,19531551 +g1,21593:6630773,19531551 +g1,21593:32583029,19531551 +g1,21593:32583029,19531551 +) +h1,21593:6630773,19728159:0,0,0 +(1,21596:6630773,28877361:25952256,9083666,0 +k1,21596:10523651,28877361:3892878 +h1,21595:10523651,28877361:0,0,0 +(1,21595:10523651,28877361:18166500,9083666,0 +(1,21595:10523651,28877361:18167376,9083688,0 +(1,21595:10523651,28877361:18167376,9083688,0 +(1,21595:10523651,28877361:0,9083688,0 +(1,21595:10523651,28877361:0,14208860,0 +(1,21595:10523651,28877361:28417720,14208860,0 +) +k1,21595:10523651,28877361:-28417720 +) +) +g1,21595:28691027,28877361 +) +) +) +g1,21596:28690151,28877361 +k1,21596:32583029,28877361:3892878 +) +v1,21603:6630773,29742441:0,393216,0 +(1,21604:6630773,33518922:25952256,4169697,0 +g1,21604:6630773,33518922 +g1,21604:6237557,33518922 +r1,21628:6368629,33518922:131072,4169697,0 +g1,21604:6567858,33518922 +g1,21604:6764466,33518922 +[1,21604:6764466,33518922:25818563,4169697,0 +(1,21604:6764466,30050739:25818563,701514,196608 +(1,21603:6764466,30050739:0,701514,196608 +r1,21628:7761522,30050739:997056,898122,196608 +k1,21603:6764466,30050739:-997056 +) +(1,21603:6764466,30050739:997056,701514,196608 +) +k1,21603:7965316,30050739:203794 +k1,21603:8292996,30050739:327680 +k1,21603:9124624,30050739:203793 +k1,21603:10347503,30050739:203794 +k1,21603:13543016,30050739:203794 +k1,21603:15775805,30050739:203794 +k1,21603:17171043,30050739:203793 +k1,21603:17990875,30050739:203794 +k1,21603:20732223,30050739:203794 +k1,21603:22537717,30050739:203794 +k1,21603:26220161,30050739:203793 +k1,21603:31591469,30050739:203794 +k1,21603:32583029,30050739:0 +) +(1,21604:6764466,30915819:25818563,513147,134348 +k1,21603:9346517,30915819:210303 +k1,21603:10208248,30915819:210303 +k1,21603:13032782,30915819:210303 +k1,21603:16591319,30915819:210303 +(1,21603:16591319,30915819:0,414482,115847 +r1,21628:16949585,30915819:358266,530329,115847 +k1,21603:16591319,30915819:-358266 +) +(1,21603:16591319,30915819:358266,414482,115847 +k1,21603:16591319,30915819:3277 +h1,21603:16946308,30915819:0,411205,112570 +) +k1,21603:17159888,30915819:210303 +k1,21603:18561636,30915819:210303 +(1,21603:18561636,30915819:0,414482,115847 +r1,21628:18919902,30915819:358266,530329,115847 +k1,21603:18561636,30915819:-358266 +) +(1,21603:18561636,30915819:358266,414482,115847 +k1,21603:18561636,30915819:3277 +h1,21603:18916625,30915819:0,411205,112570 +) +k1,21603:19303874,30915819:210302 +k1,21603:20332066,30915819:210303 +k1,21603:21561454,30915819:210303 +k1,21603:24674347,30915819:210303 +k1,21603:25543942,30915819:210303 +k1,21603:28473334,30915819:210303 +k1,21603:29215134,30915819:210303 +k1,21603:32583029,30915819:0 +) +(1,21604:6764466,31780899:25818563,513147,126483 +k1,21603:8576427,31780899:210261 +k1,21603:9252650,31780899:210262 +k1,21603:10529182,31780899:210261 +k1,21603:11505559,31780899:210261 +k1,21603:15286221,31780899:210261 +k1,21603:17572664,31780899:210262 +k1,21603:19068741,31780899:210261 +k1,21603:21327002,31780899:210261 +k1,21603:26878447,31780899:210261 +k1,21603:27716544,31780899:210262 +k1,21603:29618945,31780899:210261 +k1,21603:31700259,31780899:210261 +k1,21604:32583029,31780899:0 +) +(1,21604:6764466,32645979:25818563,513147,134348 +k1,21603:9000243,32645979:258556 +k1,21603:9614659,32645979:258556 +k1,21603:14710428,32645979:258557 +k1,21603:15620412,32645979:258556 +k1,21603:16234828,32645979:258556 +(1,21603:16234828,32645979:0,452978,115847 +r1,21628:17648229,32645979:1413401,568825,115847 +k1,21603:16234828,32645979:-1413401 +) +(1,21603:16234828,32645979:1413401,452978,115847 +k1,21603:16234828,32645979:3277 +h1,21603:17644952,32645979:0,411205,112570 +) +k1,21603:17906785,32645979:258556 +k1,21603:18848226,32645979:258556 +(1,21603:18848226,32645979:0,452978,115847 +r1,21628:20965051,32645979:2116825,568825,115847 +k1,21603:18848226,32645979:-2116825 +) +(1,21603:18848226,32645979:2116825,452978,115847 +k1,21603:18848226,32645979:3277 +h1,21603:20961774,32645979:0,411205,112570 +) +k1,21603:21223607,32645979:258556 +k1,21603:23054373,32645979:258557 +k1,21603:25031283,32645979:258556 +k1,21603:27498402,32645979:258556 +k1,21603:28776043,32645979:258556 +k1,21603:32583029,32645979:0 +) +(1,21604:6764466,33511059:25818563,505283,7863 +g1,21603:10103525,33511059 +g1,21603:10918792,33511059 +g1,21603:12137106,33511059 +k1,21604:32583030,33511059:19004132 +g1,21604:32583030,33511059 +) +] +g1,21604:32583029,33518922 +) +h1,21604:6630773,33518922:0,0,0 +(1,21606:6630773,35170434:25952256,513147,138281 +(1,21606:6630773,35170434:0,0,0 +g1,21606:6630773,35170434 +) +g1,21606:9499284,35170434 +g1,21606:10380743,35170434 +$1,21606:10380743,35170434 +$1,21606:10883404,35170434 +g1,21606:11087876,35170434 +g1,21606:12512628,35170434 +$1,21606:12512628,35170434 +$1,21606:13064441,35170434 +g1,21606:13268913,35170434 +k1,21606:32583029,35170434:17839556 +g1,21606:32583029,35170434 +) +(1,21610:6630773,36428730:25952256,513147,134348 +k1,21609:8056517,36428730:250684 +k1,21609:10572780,36428730:250683 +k1,21609:13437695,36428730:250684 +k1,21609:14347671,36428730:250684 +k1,21609:15996892,36428730:250683 +k1,21609:17351858,36428730:250684 +k1,21609:18350307,36428730:250683 +k1,21609:21262408,36428730:250684 +k1,21609:24071618,36428730:250684 +k1,21609:27603033,36428730:250683 +(1,21609:27603033,36428730:0,452978,115847 +r1,21628:30423282,36428730:2820249,568825,115847 +k1,21609:27603033,36428730:-2820249 +) +(1,21609:27603033,36428730:2820249,452978,115847 +k1,21609:27603033,36428730:3277 +h1,21609:30420005,36428730:0,411205,112570 +) +k1,21609:30847636,36428730:250684 +k1,21609:32583029,36428730:0 +) +(1,21610:6630773,37293810:25952256,505283,122846 +g1,21609:9804681,37293810 +g1,21609:13091966,37293810 +(1,21609:13091966,37293810:0,452978,115847 +r1,21628:15912215,37293810:2820249,568825,115847 +k1,21609:13091966,37293810:-2820249 +) +(1,21609:13091966,37293810:2820249,452978,115847 +k1,21609:13091966,37293810:3277 +h1,21609:15908938,37293810:0,411205,112570 +) +g1,21609:16285114,37293810 +(1,21609:16285114,37293810:0,452978,115847 +r1,21628:18050227,37293810:1765113,568825,115847 +k1,21609:16285114,37293810:-1765113 +) +(1,21609:16285114,37293810:1765113,452978,115847 +k1,21609:16285114,37293810:3277 +h1,21609:18046950,37293810:0,411205,112570 +) +g1,21609:18423126,37293810 +(1,21609:18423126,37293810:0,459977,115847 +r1,21628:20539951,37293810:2116825,575824,115847 +k1,21609:18423126,37293810:-2116825 +) +(1,21609:18423126,37293810:2116825,459977,115847 +k1,21609:18423126,37293810:3277 +h1,21609:20536674,37293810:0,411205,112570 +) +g1,21609:20739180,37293810 +g1,21609:22129854,37293810 +(1,21609:22129854,37293810:0,452978,122846 +r1,21628:24598391,37293810:2468537,575824,122846 +k1,21609:22129854,37293810:-2468537 +) +(1,21609:22129854,37293810:2468537,452978,122846 +k1,21609:22129854,37293810:3277 +h1,21609:24595114,37293810:0,411205,112570 +) +k1,21610:32583029,37293810:7932210 +g1,21610:32583029,37293810 +) +v1,21612:6630773,37978665:0,393216,0 +(1,21619:6630773,40373913:25952256,2788464,196608 +g1,21619:6630773,40373913 +g1,21619:6630773,40373913 +g1,21619:6434165,40373913 +(1,21619:6434165,40373913:0,2788464,196608 +r1,21628:32779637,40373913:26345472,2985072,196608 +k1,21619:6434165,40373913:-26345472 +) +(1,21619:6434165,40373913:26345472,2788464,196608 +[1,21619:6630773,40373913:25952256,2591856,0 +(1,21614:6630773,38206496:25952256,424439,112852 +(1,21613:6630773,38206496:0,0,0 +g1,21613:6630773,38206496 +g1,21613:6630773,38206496 +g1,21613:6303093,38206496 +(1,21613:6303093,38206496:0,0,0 +) +g1,21613:6630773,38206496 +) +k1,21614:6630773,38206496:0 +g1,21614:10614221,38206496 +g1,21614:11278129,38206496 +g1,21614:13933761,38206496 +g1,21614:16589393,38206496 +g1,21614:17253301,38206496 +g1,21614:19245025,38206496 +g1,21614:19908933,38206496 +g1,21614:21236749,38206496 +g1,21614:21900657,38206496 +g1,21614:22564565,38206496 +g1,21614:24556289,38206496 +h1,21614:24888243,38206496:0,0,0 +k1,21614:32583029,38206496:7694786 +g1,21614:32583029,38206496 +) +(1,21615:6630773,38891351:25952256,424439,112852 +h1,21615:6630773,38891351:0,0,0 +g1,21615:6962727,38891351 +g1,21615:7294681,38891351 +g1,21615:11610082,38891351 +h1,21615:11942036,38891351:0,0,0 +k1,21615:32583028,38891351:20640992 +g1,21615:32583028,38891351 +) +(1,21616:6630773,39576206:25952256,424439,106246 +h1,21616:6630773,39576206:0,0,0 +g1,21616:6962727,39576206 +g1,21616:7294681,39576206 +g1,21616:16589391,39576206 +g1,21616:17253299,39576206 +g1,21616:19576977,39576206 +h1,21616:19908931,39576206:0,0,0 +k1,21616:32583029,39576206:12674098 +g1,21616:32583029,39576206 +) +(1,21617:6630773,40261061:25952256,424439,112852 +h1,21617:6630773,40261061:0,0,0 +g1,21617:6962727,40261061 +g1,21617:7294681,40261061 +g1,21617:16589391,40261061 +g1,21617:17253299,40261061 +h1,21617:19908931,40261061:0,0,0 +k1,21617:32583029,40261061:12674098 +g1,21617:32583029,40261061 +) +] +) +g1,21619:32583029,40373913 +g1,21619:6630773,40373913 +g1,21619:6630773,40373913 +g1,21619:32583029,40373913 +g1,21619:32583029,40373913 +) +h1,21619:6630773,40570521:0,0,0 +] +(1,21628:32583029,45706769:0,0,0 +g1,21628:32583029,45706769 +) +) +] +(1,21628:6630773,47279633:25952256,0,0 +h1,21628:6630773,47279633:25952256,0,0 +) +] +(1,21628:4262630,4025873:0,0,0 +[1,21628:-473656,4025873:0,0,0 +(1,21628:-473656,-710413:0,0,0 +(1,21628:-473656,-710413:0,0,0 +g1,21628:-473656,-710413 +) +g1,21628:-473656,-710413 ) ] ) ] !21743 -}365 -Input:4025:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4026:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4027:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4028:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}366 Input:4029:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4030:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4031:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4032:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4033:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4034:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4035:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4036:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4037:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{366 -[1,21669:4262630,47279633:28320399,43253760,0 -(1,21669:4262630,4025873:0,0,0 -[1,21669:-473656,4025873:0,0,0 -(1,21669:-473656,-710413:0,0,0 -(1,21669:-473656,-644877:0,0,0 -k1,21669:-473656,-644877:-65536 +{367 +[1,21667:4262630,47279633:28320399,43253760,0 +(1,21667:4262630,4025873:0,0,0 +[1,21667:-473656,4025873:0,0,0 +(1,21667:-473656,-710413:0,0,0 +(1,21667:-473656,-644877:0,0,0 +k1,21667:-473656,-644877:-65536 ) -(1,21669:-473656,4736287:0,0,0 -k1,21669:-473656,4736287:5209943 +(1,21667:-473656,4736287:0,0,0 +k1,21667:-473656,4736287:5209943 ) -g1,21669:-473656,-710413 +g1,21667:-473656,-710413 ) ] ) -[1,21669:6630773,47279633:25952256,43253760,0 -[1,21669:6630773,4812305:25952256,786432,0 -(1,21669:6630773,4812305:25952256,505283,11795 -(1,21669:6630773,4812305:25952256,505283,11795 -g1,21669:3078558,4812305 -[1,21669:3078558,4812305:0,0,0 -(1,21669:3078558,2439708:0,1703936,0 -k1,21669:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21669:2537886,2439708:1179648,16384,0 +[1,21667:6630773,47279633:25952256,43253760,0 +[1,21667:6630773,4812305:25952256,786432,0 +(1,21667:6630773,4812305:25952256,505283,11795 +(1,21667:6630773,4812305:25952256,505283,11795 +g1,21667:3078558,4812305 +[1,21667:3078558,4812305:0,0,0 +(1,21667:3078558,2439708:0,1703936,0 +k1,21667:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21667:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21669:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21667:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21669:3078558,4812305:0,0,0 -(1,21669:3078558,2439708:0,1703936,0 -g1,21669:29030814,2439708 -g1,21669:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21669:36151628,1915420:16384,1179648,0 +[1,21667:3078558,4812305:0,0,0 +(1,21667:3078558,2439708:0,1703936,0 +g1,21667:29030814,2439708 +g1,21667:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21667:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21669:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21667:37855564,2439708:1179648,16384,0 ) ) -k1,21669:3078556,2439708:-34777008 +k1,21667:3078556,2439708:-34777008 ) ] -[1,21669:3078558,4812305:0,0,0 -(1,21669:3078558,49800853:0,16384,2228224 -k1,21669:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21669:2537886,49800853:1179648,16384,0 +[1,21667:3078558,4812305:0,0,0 +(1,21667:3078558,49800853:0,16384,2228224 +k1,21667:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21667:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21669:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21667:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21669:3078558,4812305:0,0,0 -(1,21669:3078558,49800853:0,16384,2228224 -g1,21669:29030814,49800853 -g1,21669:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21669:36151628,51504789:16384,1179648,0 +[1,21667:3078558,4812305:0,0,0 +(1,21667:3078558,49800853:0,16384,2228224 +g1,21667:29030814,49800853 +g1,21667:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21667:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21669:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21667:37855564,49800853:1179648,16384,0 ) ) -k1,21669:3078556,49800853:-34777008 +k1,21667:3078556,49800853:-34777008 ) ] -g1,21669:6630773,4812305 -g1,21669:6630773,4812305 -g1,21669:8724648,4812305 -k1,21669:31387652,4812305:22663004 +g1,21667:6630773,4812305 +g1,21667:6630773,4812305 +g1,21667:8724648,4812305 +k1,21667:31387652,4812305:22663004 ) ) ] -[1,21669:6630773,45706769:25952256,40108032,0 -(1,21669:6630773,45706769:25952256,40108032,0 -(1,21669:6630773,45706769:0,0,0 -g1,21669:6630773,45706769 +[1,21667:6630773,45706769:25952256,40108032,0 +(1,21667:6630773,45706769:25952256,40108032,0 +(1,21667:6630773,45706769:0,0,0 +g1,21667:6630773,45706769 ) -[1,21669:6630773,45706769:25952256,40108032,0 -(1,21624:6630773,14682403:25952256,9083666,0 -k1,21624:10523651,14682403:3892878 -h1,21623:10523651,14682403:0,0,0 -(1,21623:10523651,14682403:18166500,9083666,0 -(1,21623:10523651,14682403:18167376,9083688,0 -(1,21623:10523651,14682403:18167376,9083688,0 -(1,21623:10523651,14682403:0,9083688,0 -(1,21623:10523651,14682403:0,14208860,0 -(1,21623:10523651,14682403:28417720,14208860,0 +[1,21667:6630773,45706769:25952256,40108032,0 +(1,21622:6630773,14682403:25952256,9083666,0 +k1,21622:10523651,14682403:3892878 +h1,21621:10523651,14682403:0,0,0 +(1,21621:10523651,14682403:18166500,9083666,0 +(1,21621:10523651,14682403:18167376,9083688,0 +(1,21621:10523651,14682403:18167376,9083688,0 +(1,21621:10523651,14682403:0,9083688,0 +(1,21621:10523651,14682403:0,14208860,0 +(1,21621:10523651,14682403:28417720,14208860,0 ) -k1,21623:10523651,14682403:-28417720 +k1,21621:10523651,14682403:-28417720 ) ) -g1,21623:28691027,14682403 +g1,21621:28691027,14682403 ) -) -) -g1,21624:28690151,14682403 -k1,21624:32583029,14682403:3892878 -) -(1,21630:6630773,16333915:25952256,505283,126483 -(1,21630:6630773,16333915:0,0,0 -g1,21630:6630773,16333915 -) -g1,21630:10278507,16333915 -k1,21630:32583029,16333915:20829962 -g1,21630:32583029,16333915 -) -(1,21633:6630773,17592211:25952256,513147,126483 -k1,21632:7378791,17592211:278125 -k1,21632:8188412,17592211:278124 -k1,21632:9752353,17592211:278125 -k1,21632:12660438,17592211:278125 -k1,21632:13589990,17592211:278124 -k1,21632:15065458,17592211:278125 -k1,21632:18590237,17592211:278125 -k1,21632:20266900,17592211:278125 -k1,21632:21938975,17592211:278124 -k1,21632:23731637,17592211:278125 -k1,21632:27072915,17592211:278125 -k1,21632:27967077,17592211:278124 -k1,21632:28601062,17592211:278125 -k1,21632:32583029,17592211:0 -) -(1,21633:6630773,18457291:25952256,505283,7863 -k1,21633:32583030,18457291:24327620 -g1,21633:32583030,18457291 -) -v1,21635:6630773,19142146:0,393216,0 -(1,21641:6630773,20852539:25952256,2103609,196608 -g1,21641:6630773,20852539 -g1,21641:6630773,20852539 -g1,21641:6434165,20852539 -(1,21641:6434165,20852539:0,2103609,196608 -r1,21669:32779637,20852539:26345472,2300217,196608 -k1,21641:6434165,20852539:-26345472 -) -(1,21641:6434165,20852539:26345472,2103609,196608 -[1,21641:6630773,20852539:25952256,1907001,0 -(1,21637:6630773,19369977:25952256,424439,112852 -(1,21636:6630773,19369977:0,0,0 -g1,21636:6630773,19369977 -g1,21636:6630773,19369977 -g1,21636:6303093,19369977 -(1,21636:6303093,19369977:0,0,0 -) -g1,21636:6630773,19369977 -) -k1,21637:6630773,19369977:0 -g1,21637:10614221,19369977 -g1,21637:11278129,19369977 -g1,21637:13933761,19369977 -g1,21637:16589393,19369977 -g1,21637:17253301,19369977 -g1,21637:19245025,19369977 -g1,21637:19908933,19369977 -g1,21637:21236749,19369977 -g1,21637:21900657,19369977 -g1,21637:22564565,19369977 -g1,21637:24556289,19369977 -h1,21637:24888243,19369977:0,0,0 -k1,21637:32583029,19369977:7694786 -g1,21637:32583029,19369977 -) -(1,21638:6630773,20054832:25952256,424439,112852 -h1,21638:6630773,20054832:0,0,0 -g1,21638:6962727,20054832 -g1,21638:7294681,20054832 -g1,21638:11610082,20054832 -h1,21638:11942036,20054832:0,0,0 -k1,21638:32583028,20054832:20640992 -g1,21638:32583028,20054832 -) -(1,21639:6630773,20739687:25952256,424439,112852 -h1,21639:6630773,20739687:0,0,0 -g1,21639:6962727,20739687 -g1,21639:7294681,20739687 -g1,21639:16589391,20739687 -g1,21639:17253299,20739687 -g1,21639:20904792,20739687 -g1,21639:21568700,20739687 -g1,21639:23228470,20739687 -g1,21639:24888240,20739687 -g1,21639:25552148,20739687 -g1,21639:27875826,20739687 -h1,21639:28207780,20739687:0,0,0 -k1,21639:32583029,20739687:4375249 -g1,21639:32583029,20739687 -) -] -) -g1,21641:32583029,20852539 -g1,21641:6630773,20852539 -g1,21641:6630773,20852539 -g1,21641:32583029,20852539 -g1,21641:32583029,20852539 -) -h1,21641:6630773,21049147:0,0,0 -(1,21644:6630773,30198349:25952256,9083666,0 -k1,21644:10523651,30198349:3892878 -h1,21643:10523651,30198349:0,0,0 -(1,21643:10523651,30198349:18166500,9083666,0 -(1,21643:10523651,30198349:18167376,9083688,0 -(1,21643:10523651,30198349:18167376,9083688,0 -(1,21643:10523651,30198349:0,9083688,0 -(1,21643:10523651,30198349:0,14208860,0 -(1,21643:10523651,30198349:28417720,14208860,0 -) -k1,21643:10523651,30198349:-28417720 -) -) -g1,21643:28691027,30198349 -) -) -) -g1,21644:28690151,30198349 -k1,21644:32583029,30198349:3892878 -) -(1,21651:6630773,31063429:25952256,513147,126483 -h1,21650:6630773,31063429:983040,0,0 -k1,21650:8343274,31063429:259568 -k1,21650:9134338,31063429:259567 -k1,21650:10679722,31063429:259568 -k1,21650:13569249,31063429:259567 -k1,21650:14480245,31063429:259568 -k1,21650:15832297,31063429:259567 -k1,21650:18854208,31063429:259568 -(1,21650:18854208,31063429:0,452978,115847 -r1,21669:20971033,31063429:2116825,568825,115847 -k1,21650:18854208,31063429:-2116825 -) -(1,21650:18854208,31063429:2116825,452978,115847 -k1,21650:18854208,31063429:3277 -h1,21650:20967756,31063429:0,411205,112570 -) -k1,21650:21230600,31063429:259567 -k1,21650:22681613,31063429:259568 -(1,21650:22681613,31063429:0,452978,115847 -r1,21669:24798438,31063429:2116825,568825,115847 -k1,21650:22681613,31063429:-2116825 -) -(1,21650:22681613,31063429:2116825,452978,115847 -k1,21650:22681613,31063429:3277 -h1,21650:24795161,31063429:0,411205,112570 -) -k1,21650:25058005,31063429:259567 -k1,21650:26760020,31063429:259568 -k1,21650:27967238,31063429:259567 -k1,21650:29245891,31063429:259568 -k1,21650:31097328,31063429:259567 -k1,21650:32583029,31063429:0 -) -(1,21651:6630773,31928509:25952256,513147,126483 -g1,21650:8021447,31928509 -g1,21650:8872104,31928509 -g1,21650:11501408,31928509 -g1,21650:12056497,31928509 -g1,21650:15018069,31928509 -(1,21650:15018069,31928509:0,414482,115847 -r1,21669:16431470,31928509:1413401,530329,115847 -k1,21650:15018069,31928509:-1413401 -) -(1,21650:15018069,31928509:1413401,414482,115847 -k1,21650:15018069,31928509:3277 -h1,21650:16428193,31928509:0,411205,112570 -) -g1,21650:16630699,31928509 -g1,21650:17481356,31928509 -g1,21650:18428351,31928509 -g1,21650:20140806,31928509 -g1,21650:21026197,31928509 -g1,21650:21581286,31928509 -g1,21650:25027169,31928509 -g1,21650:26478791,31928509 -k1,21651:32583029,31928509:4537928 -g1,21651:32583029,31928509 -) -v1,21653:6630773,32613364:0,393216,0 -(1,21661:6630773,35667043:25952256,3446895,196608 -g1,21661:6630773,35667043 -g1,21661:6630773,35667043 -g1,21661:6434165,35667043 -(1,21661:6434165,35667043:0,3446895,196608 -r1,21669:32779637,35667043:26345472,3643503,196608 -k1,21661:6434165,35667043:-26345472 -) -(1,21661:6434165,35667043:26345472,3446895,196608 -[1,21661:6630773,35667043:25952256,3250287,0 -(1,21655:6630773,32841195:25952256,424439,112852 -(1,21654:6630773,32841195:0,0,0 -g1,21654:6630773,32841195 -g1,21654:6630773,32841195 -g1,21654:6303093,32841195 -(1,21654:6303093,32841195:0,0,0 -) -g1,21654:6630773,32841195 -) -k1,21655:6630773,32841195:0 -g1,21655:10614221,32841195 -g1,21655:11278129,32841195 -g1,21655:13933761,32841195 -g1,21655:16589393,32841195 -g1,21655:17253301,32841195 -g1,21655:19245025,32841195 -g1,21655:19908933,32841195 -g1,21655:21236749,32841195 -g1,21655:21900657,32841195 -g1,21655:22564565,32841195 -g1,21655:24556289,32841195 -h1,21655:24888243,32841195:0,0,0 -k1,21655:32583029,32841195:7694786 -g1,21655:32583029,32841195 -) -(1,21656:6630773,33526050:25952256,424439,112852 -h1,21656:6630773,33526050:0,0,0 -g1,21656:6962727,33526050 -g1,21656:7294681,33526050 -g1,21656:11610082,33526050 -h1,21656:11942036,33526050:0,0,0 -k1,21656:32583028,33526050:20640992 -g1,21656:32583028,33526050 -) -(1,21657:6630773,34210905:25952256,424439,106246 -h1,21657:6630773,34210905:0,0,0 -g1,21657:6962727,34210905 -g1,21657:7294681,34210905 -g1,21657:16589391,34210905 -g1,21657:17253299,34210905 -g1,21657:20904792,34210905 -g1,21657:21568700,34210905 -g1,21657:22232608,34210905 -k1,21657:22232608,34210905:0 -h1,21657:25552147,34210905:0,0,0 -k1,21657:32583029,34210905:7030882 -g1,21657:32583029,34210905 -) -(1,21658:6630773,34895760:25952256,424439,106246 -h1,21658:6630773,34895760:0,0,0 -g1,21658:6962727,34895760 -g1,21658:7294681,34895760 -g1,21658:7626635,34895760 -g1,21658:7958589,34895760 -g1,21658:8290543,34895760 -g1,21658:8622497,34895760 -g1,21658:8954451,34895760 -g1,21658:9286405,34895760 -g1,21658:9618359,34895760 -g1,21658:9950313,34895760 -g1,21658:10282267,34895760 -g1,21658:10614221,34895760 -g1,21658:10946175,34895760 -g1,21658:11278129,34895760 -g1,21658:11610083,34895760 -g1,21658:11942037,34895760 -g1,21658:12273991,34895760 -g1,21658:12605945,34895760 -g1,21658:12937899,34895760 -g1,21658:13269853,34895760 -g1,21658:13601807,34895760 -g1,21658:13933761,34895760 -g1,21658:14265715,34895760 -g1,21658:14597669,34895760 -g1,21658:14929623,34895760 -g1,21658:15261577,34895760 -g1,21658:15593531,34895760 -g1,21658:15925485,34895760 -g1,21658:16257439,34895760 -g1,21658:16589393,34895760 -g1,21658:16921347,34895760 -g1,21658:17253301,34895760 -g1,21658:17585255,34895760 -g1,21658:17917209,34895760 -g1,21658:18249163,34895760 -g1,21658:18581117,34895760 -g1,21658:18913071,34895760 -g1,21658:19245025,34895760 -g1,21658:19576979,34895760 -g1,21658:19908933,34895760 -g1,21658:20240887,34895760 -g1,21658:21900657,34895760 -g1,21658:22564565,34895760 -g1,21658:27211920,34895760 -g1,21658:27875828,34895760 -k1,21658:27875828,34895760:0 -h1,21658:28871690,34895760:0,0,0 -k1,21658:32583029,34895760:3711339 -g1,21658:32583029,34895760 -) -(1,21659:6630773,35580615:25952256,424439,86428 -h1,21659:6630773,35580615:0,0,0 -g1,21659:6962727,35580615 -g1,21659:7294681,35580615 -g1,21659:7626635,35580615 -g1,21659:7958589,35580615 -g1,21659:8290543,35580615 -g1,21659:8622497,35580615 -g1,21659:8954451,35580615 -g1,21659:9286405,35580615 -g1,21659:9618359,35580615 -g1,21659:9950313,35580615 -g1,21659:10282267,35580615 -g1,21659:10614221,35580615 -g1,21659:10946175,35580615 -g1,21659:11278129,35580615 -g1,21659:11610083,35580615 -g1,21659:11942037,35580615 -g1,21659:12273991,35580615 -g1,21659:12605945,35580615 -g1,21659:12937899,35580615 -g1,21659:13269853,35580615 -g1,21659:13601807,35580615 -g1,21659:13933761,35580615 -g1,21659:14265715,35580615 -g1,21659:14597669,35580615 -g1,21659:14929623,35580615 -g1,21659:15261577,35580615 -g1,21659:15593531,35580615 -g1,21659:15925485,35580615 -g1,21659:16257439,35580615 -g1,21659:16589393,35580615 -g1,21659:16921347,35580615 -g1,21659:17253301,35580615 -g1,21659:17585255,35580615 -g1,21659:17917209,35580615 -g1,21659:18249163,35580615 -g1,21659:18581117,35580615 -g1,21659:18913071,35580615 -g1,21659:19245025,35580615 -g1,21659:19576979,35580615 -g1,21659:19908933,35580615 -g1,21659:20240887,35580615 -g1,21659:22564565,35580615 -g1,21659:23228473,35580615 -g1,21659:24888243,35580615 -g1,21659:26548013,35580615 -g1,21659:27875829,35580615 -h1,21659:30199507,35580615:0,0,0 -k1,21659:32583029,35580615:2383522 -g1,21659:32583029,35580615 -) -] -) -g1,21661:32583029,35667043 -g1,21661:6630773,35667043 -g1,21661:6630773,35667043 -g1,21661:32583029,35667043 -g1,21661:32583029,35667043 -) -h1,21661:6630773,35863651:0,0,0 -(1,21665:6630773,37980469:25952256,564462,152109 -(1,21665:6630773,37980469:2899444,534184,12975 -g1,21665:6630773,37980469 -g1,21665:9530217,37980469 -) -g1,21665:11606398,37980469 -g1,21665:13173626,37980469 -g1,21665:14954961,37980469 -g1,21665:17365638,37980469 -g1,21665:18668298,37980469 -$1,21665:18668298,37980469 -$1,21665:19221225,37980469 -g1,21665:19446145,37980469 -g1,21665:21013373,37980469 -$1,21665:21013373,37980469 -$1,21665:21620367,37980469 -k1,21665:32583029,37980469:10962662 -g1,21665:32583029,37980469 -) -(1,21669:6630773,39238765:25952256,513147,126483 -k1,21667:8487732,39238765:275575 -k1,21667:10665817,39238765:275575 -k1,21667:11932952,39238765:275575 -k1,21667:14410538,39238765:275576 -k1,21667:15337541,39238765:275575 -k1,21667:19183517,39238765:275575 -k1,21667:21361602,39238765:275575 -k1,21667:22584828,39238765:275575 -(1,21667:22584828,39238765:0,452978,115847 -r1,21669:25053365,39238765:2468537,568825,115847 -k1,21667:22584828,39238765:-2468537 -) -(1,21667:22584828,39238765:2468537,452978,115847 -k1,21667:22584828,39238765:3277 -h1,21667:25050088,39238765:0,411205,112570 -) -k1,21667:25328940,39238765:275575 -k1,21667:27788830,39238765:275575 -k1,21667:28692240,39238765:275575 -k1,21667:29382582,39238765:275499 -k1,21667:30849602,39238765:275575 -k1,21667:32583029,39238765:0 -) -(1,21669:6630773,40103845:25952256,505283,134348 -k1,21667:8616275,40103845:283532 -k1,21667:12330618,40103845:283533 -k1,21667:15960418,40103845:283532 -k1,21667:17669358,40103845:283532 -k1,21667:19963536,40103845:283533 -k1,21667:21238628,40103845:283532 -k1,21667:23560331,40103845:283533 -k1,21667:24530025,40103845:283532 -k1,21667:27043747,40103845:283532 -k1,21667:29337925,40103845:283533 -k1,21667:31931601,40103845:283532 -k1,21667:32583029,40103845:0 -) -(1,21669:6630773,40968925:25952256,513147,134348 -k1,21667:9103337,40968925:278419 -k1,21667:13827062,40968925:278418 -k1,21667:15337558,40968925:278419 -k1,21667:17894664,40968925:278419 -h1,21667:18865252,40968925:0,0,0 -k1,21667:19143670,40968925:278418 -k1,21667:20231459,40968925:278419 -k1,21667:22008031,40968925:278419 -h1,21667:23203408,40968925:0,0,0 -k1,21667:23862590,40968925:278418 -k1,21667:26074321,40968925:278419 -k1,21667:28390910,40968925:278419 -k1,21667:29355490,40968925:278418 -k1,21667:31923737,40968925:278419 -k1,21667:32583029,40968925:0 -) -(1,21669:6630773,41834005:25952256,505283,126483 -k1,21667:8453797,41834005:267855 -(1,21667:8453797,41834005:0,414482,115847 -r1,21669:10922334,41834005:2468537,530329,115847 -k1,21667:8453797,41834005:-2468537 -) -(1,21667:8453797,41834005:2468537,414482,115847 -k1,21667:8453797,41834005:3277 -h1,21667:10919057,41834005:0,411205,112570 -) -k1,21667:11190189,41834005:267855 -k1,21667:12348022,41834005:267854 -(1,21667:12348022,41834005:0,452978,115847 -r1,21669:14816559,41834005:2468537,568825,115847 -k1,21667:12348022,41834005:-2468537 -) -(1,21667:12348022,41834005:2468537,452978,115847 -k1,21667:12348022,41834005:3277 -h1,21667:14813282,41834005:0,411205,112570 -) -k1,21667:15291508,41834005:267855 -k1,21667:16663645,41834005:267855 -k1,21667:17679266,41834005:267855 -k1,21667:20532515,41834005:267854 -k1,21667:21451798,41834005:267855 -k1,21667:25290054,41834005:267855 -k1,21667:28622373,41834005:267855 -k1,21667:30383794,41834005:267855 -k1,21667:31337810,41834005:267854 -(1,21667:31337810,41834005:0,414482,115847 -r1,21669:31696076,41834005:358266,530329,115847 -k1,21667:31337810,41834005:-358266 -) -(1,21667:31337810,41834005:358266,414482,115847 -k1,21667:31337810,41834005:3277 -h1,21667:31692799,41834005:0,411205,112570 -) -k1,21667:32137601,41834005:267855 -(1,21667:32137601,41834005:0,414482,115847 -r1,21669:32495867,41834005:358266,530329,115847 -k1,21667:32137601,41834005:-358266 -) -(1,21667:32137601,41834005:358266,414482,115847 -k1,21667:32137601,41834005:3277 -h1,21667:32492590,41834005:0,411205,112570 -) -k1,21669:32583029,41834005:0 -) -(1,21669:6630773,42699085:25952256,513147,126483 -(1,21667:6630773,42699085:0,452978,115847 -r1,21669:8747598,42699085:2116825,568825,115847 -k1,21667:6630773,42699085:-2116825 -) -(1,21667:6630773,42699085:2116825,452978,115847 -k1,21667:6630773,42699085:3277 -h1,21667:8744321,42699085:0,411205,112570 -) -k1,21667:9217358,42699085:296090 -k1,21667:10624939,42699085:296090 -k1,21667:13140079,42699085:296091 -k1,21667:15338679,42699085:296090 -k1,21667:16582420,42699085:296090 -k1,21667:19640853,42699085:296090 -k1,21667:23111507,42699085:296090 -k1,21667:24399158,42699085:296091 -k1,21667:27479217,42699085:296090 -k1,21667:28722958,42699085:296090 -k1,21667:32583029,42699085:0 -) -(1,21669:6630773,43564165:25952256,505283,7863 -g1,21667:8393036,43564165 -k1,21669:32583028,43564165:24189992 -g1,21669:32583028,43564165 -) -] -(1,21669:32583029,45706769:0,0,0 -g1,21669:32583029,45706769 -) -) -] -(1,21669:6630773,47279633:25952256,0,0 -h1,21669:6630773,47279633:25952256,0,0 -) -] -(1,21669:4262630,4025873:0,0,0 -[1,21669:-473656,4025873:0,0,0 -(1,21669:-473656,-710413:0,0,0 -(1,21669:-473656,-710413:0,0,0 -g1,21669:-473656,-710413 -) -g1,21669:-473656,-710413 +) +) +g1,21622:28690151,14682403 +k1,21622:32583029,14682403:3892878 +) +(1,21628:6630773,16333915:25952256,505283,126483 +(1,21628:6630773,16333915:0,0,0 +g1,21628:6630773,16333915 +) +g1,21628:10278507,16333915 +k1,21628:32583029,16333915:20829962 +g1,21628:32583029,16333915 +) +(1,21631:6630773,17592211:25952256,513147,126483 +k1,21630:7378791,17592211:278125 +k1,21630:8188412,17592211:278124 +k1,21630:9752353,17592211:278125 +k1,21630:12660438,17592211:278125 +k1,21630:13589990,17592211:278124 +k1,21630:15065458,17592211:278125 +k1,21630:18590237,17592211:278125 +k1,21630:20266900,17592211:278125 +k1,21630:21938975,17592211:278124 +k1,21630:23731637,17592211:278125 +k1,21630:27072915,17592211:278125 +k1,21630:27967077,17592211:278124 +k1,21630:28601062,17592211:278125 +k1,21630:32583029,17592211:0 +) +(1,21631:6630773,18457291:25952256,505283,7863 +k1,21631:32583030,18457291:24327620 +g1,21631:32583030,18457291 +) +v1,21633:6630773,19142146:0,393216,0 +(1,21639:6630773,20852539:25952256,2103609,196608 +g1,21639:6630773,20852539 +g1,21639:6630773,20852539 +g1,21639:6434165,20852539 +(1,21639:6434165,20852539:0,2103609,196608 +r1,21667:32779637,20852539:26345472,2300217,196608 +k1,21639:6434165,20852539:-26345472 +) +(1,21639:6434165,20852539:26345472,2103609,196608 +[1,21639:6630773,20852539:25952256,1907001,0 +(1,21635:6630773,19369977:25952256,424439,112852 +(1,21634:6630773,19369977:0,0,0 +g1,21634:6630773,19369977 +g1,21634:6630773,19369977 +g1,21634:6303093,19369977 +(1,21634:6303093,19369977:0,0,0 +) +g1,21634:6630773,19369977 +) +k1,21635:6630773,19369977:0 +g1,21635:10614221,19369977 +g1,21635:11278129,19369977 +g1,21635:13933761,19369977 +g1,21635:16589393,19369977 +g1,21635:17253301,19369977 +g1,21635:19245025,19369977 +g1,21635:19908933,19369977 +g1,21635:21236749,19369977 +g1,21635:21900657,19369977 +g1,21635:22564565,19369977 +g1,21635:24556289,19369977 +h1,21635:24888243,19369977:0,0,0 +k1,21635:32583029,19369977:7694786 +g1,21635:32583029,19369977 +) +(1,21636:6630773,20054832:25952256,424439,112852 +h1,21636:6630773,20054832:0,0,0 +g1,21636:6962727,20054832 +g1,21636:7294681,20054832 +g1,21636:11610082,20054832 +h1,21636:11942036,20054832:0,0,0 +k1,21636:32583028,20054832:20640992 +g1,21636:32583028,20054832 +) +(1,21637:6630773,20739687:25952256,424439,112852 +h1,21637:6630773,20739687:0,0,0 +g1,21637:6962727,20739687 +g1,21637:7294681,20739687 +g1,21637:16589391,20739687 +g1,21637:17253299,20739687 +g1,21637:20904792,20739687 +g1,21637:21568700,20739687 +g1,21637:23228470,20739687 +g1,21637:24888240,20739687 +g1,21637:25552148,20739687 +g1,21637:27875826,20739687 +h1,21637:28207780,20739687:0,0,0 +k1,21637:32583029,20739687:4375249 +g1,21637:32583029,20739687 +) +] +) +g1,21639:32583029,20852539 +g1,21639:6630773,20852539 +g1,21639:6630773,20852539 +g1,21639:32583029,20852539 +g1,21639:32583029,20852539 +) +h1,21639:6630773,21049147:0,0,0 +(1,21642:6630773,30198349:25952256,9083666,0 +k1,21642:10523651,30198349:3892878 +h1,21641:10523651,30198349:0,0,0 +(1,21641:10523651,30198349:18166500,9083666,0 +(1,21641:10523651,30198349:18167376,9083688,0 +(1,21641:10523651,30198349:18167376,9083688,0 +(1,21641:10523651,30198349:0,9083688,0 +(1,21641:10523651,30198349:0,14208860,0 +(1,21641:10523651,30198349:28417720,14208860,0 +) +k1,21641:10523651,30198349:-28417720 +) +) +g1,21641:28691027,30198349 +) +) +) +g1,21642:28690151,30198349 +k1,21642:32583029,30198349:3892878 +) +(1,21649:6630773,31063429:25952256,513147,126483 +h1,21648:6630773,31063429:983040,0,0 +k1,21648:8343274,31063429:259568 +k1,21648:9134338,31063429:259567 +k1,21648:10679722,31063429:259568 +k1,21648:13569249,31063429:259567 +k1,21648:14480245,31063429:259568 +k1,21648:15832297,31063429:259567 +k1,21648:18854208,31063429:259568 +(1,21648:18854208,31063429:0,452978,115847 +r1,21667:20971033,31063429:2116825,568825,115847 +k1,21648:18854208,31063429:-2116825 +) +(1,21648:18854208,31063429:2116825,452978,115847 +k1,21648:18854208,31063429:3277 +h1,21648:20967756,31063429:0,411205,112570 +) +k1,21648:21230600,31063429:259567 +k1,21648:22681613,31063429:259568 +(1,21648:22681613,31063429:0,452978,115847 +r1,21667:24798438,31063429:2116825,568825,115847 +k1,21648:22681613,31063429:-2116825 +) +(1,21648:22681613,31063429:2116825,452978,115847 +k1,21648:22681613,31063429:3277 +h1,21648:24795161,31063429:0,411205,112570 +) +k1,21648:25058005,31063429:259567 +k1,21648:26760020,31063429:259568 +k1,21648:27967238,31063429:259567 +k1,21648:29245891,31063429:259568 +k1,21648:31097328,31063429:259567 +k1,21648:32583029,31063429:0 +) +(1,21649:6630773,31928509:25952256,513147,126483 +g1,21648:8021447,31928509 +g1,21648:8872104,31928509 +g1,21648:11501408,31928509 +g1,21648:12056497,31928509 +g1,21648:15018069,31928509 +(1,21648:15018069,31928509:0,414482,115847 +r1,21667:16431470,31928509:1413401,530329,115847 +k1,21648:15018069,31928509:-1413401 +) +(1,21648:15018069,31928509:1413401,414482,115847 +k1,21648:15018069,31928509:3277 +h1,21648:16428193,31928509:0,411205,112570 +) +g1,21648:16630699,31928509 +g1,21648:17481356,31928509 +g1,21648:18428351,31928509 +g1,21648:20140806,31928509 +g1,21648:21026197,31928509 +g1,21648:21581286,31928509 +g1,21648:25027169,31928509 +g1,21648:26478791,31928509 +k1,21649:32583029,31928509:4537928 +g1,21649:32583029,31928509 +) +v1,21651:6630773,32613364:0,393216,0 +(1,21659:6630773,35667043:25952256,3446895,196608 +g1,21659:6630773,35667043 +g1,21659:6630773,35667043 +g1,21659:6434165,35667043 +(1,21659:6434165,35667043:0,3446895,196608 +r1,21667:32779637,35667043:26345472,3643503,196608 +k1,21659:6434165,35667043:-26345472 +) +(1,21659:6434165,35667043:26345472,3446895,196608 +[1,21659:6630773,35667043:25952256,3250287,0 +(1,21653:6630773,32841195:25952256,424439,112852 +(1,21652:6630773,32841195:0,0,0 +g1,21652:6630773,32841195 +g1,21652:6630773,32841195 +g1,21652:6303093,32841195 +(1,21652:6303093,32841195:0,0,0 +) +g1,21652:6630773,32841195 +) +k1,21653:6630773,32841195:0 +g1,21653:10614221,32841195 +g1,21653:11278129,32841195 +g1,21653:13933761,32841195 +g1,21653:16589393,32841195 +g1,21653:17253301,32841195 +g1,21653:19245025,32841195 +g1,21653:19908933,32841195 +g1,21653:21236749,32841195 +g1,21653:21900657,32841195 +g1,21653:22564565,32841195 +g1,21653:24556289,32841195 +h1,21653:24888243,32841195:0,0,0 +k1,21653:32583029,32841195:7694786 +g1,21653:32583029,32841195 +) +(1,21654:6630773,33526050:25952256,424439,112852 +h1,21654:6630773,33526050:0,0,0 +g1,21654:6962727,33526050 +g1,21654:7294681,33526050 +g1,21654:11610082,33526050 +h1,21654:11942036,33526050:0,0,0 +k1,21654:32583028,33526050:20640992 +g1,21654:32583028,33526050 +) +(1,21655:6630773,34210905:25952256,424439,106246 +h1,21655:6630773,34210905:0,0,0 +g1,21655:6962727,34210905 +g1,21655:7294681,34210905 +g1,21655:16589391,34210905 +g1,21655:17253299,34210905 +g1,21655:20904792,34210905 +g1,21655:21568700,34210905 +g1,21655:22232608,34210905 +k1,21655:22232608,34210905:0 +h1,21655:25552147,34210905:0,0,0 +k1,21655:32583029,34210905:7030882 +g1,21655:32583029,34210905 +) +(1,21656:6630773,34895760:25952256,424439,106246 +h1,21656:6630773,34895760:0,0,0 +g1,21656:6962727,34895760 +g1,21656:7294681,34895760 +g1,21656:7626635,34895760 +g1,21656:7958589,34895760 +g1,21656:8290543,34895760 +g1,21656:8622497,34895760 +g1,21656:8954451,34895760 +g1,21656:9286405,34895760 +g1,21656:9618359,34895760 +g1,21656:9950313,34895760 +g1,21656:10282267,34895760 +g1,21656:10614221,34895760 +g1,21656:10946175,34895760 +g1,21656:11278129,34895760 +g1,21656:11610083,34895760 +g1,21656:11942037,34895760 +g1,21656:12273991,34895760 +g1,21656:12605945,34895760 +g1,21656:12937899,34895760 +g1,21656:13269853,34895760 +g1,21656:13601807,34895760 +g1,21656:13933761,34895760 +g1,21656:14265715,34895760 +g1,21656:14597669,34895760 +g1,21656:14929623,34895760 +g1,21656:15261577,34895760 +g1,21656:15593531,34895760 +g1,21656:15925485,34895760 +g1,21656:16257439,34895760 +g1,21656:16589393,34895760 +g1,21656:16921347,34895760 +g1,21656:17253301,34895760 +g1,21656:17585255,34895760 +g1,21656:17917209,34895760 +g1,21656:18249163,34895760 +g1,21656:18581117,34895760 +g1,21656:18913071,34895760 +g1,21656:19245025,34895760 +g1,21656:19576979,34895760 +g1,21656:19908933,34895760 +g1,21656:20240887,34895760 +g1,21656:21900657,34895760 +g1,21656:22564565,34895760 +g1,21656:27211920,34895760 +g1,21656:27875828,34895760 +k1,21656:27875828,34895760:0 +h1,21656:28871690,34895760:0,0,0 +k1,21656:32583029,34895760:3711339 +g1,21656:32583029,34895760 +) +(1,21657:6630773,35580615:25952256,424439,86428 +h1,21657:6630773,35580615:0,0,0 +g1,21657:6962727,35580615 +g1,21657:7294681,35580615 +g1,21657:7626635,35580615 +g1,21657:7958589,35580615 +g1,21657:8290543,35580615 +g1,21657:8622497,35580615 +g1,21657:8954451,35580615 +g1,21657:9286405,35580615 +g1,21657:9618359,35580615 +g1,21657:9950313,35580615 +g1,21657:10282267,35580615 +g1,21657:10614221,35580615 +g1,21657:10946175,35580615 +g1,21657:11278129,35580615 +g1,21657:11610083,35580615 +g1,21657:11942037,35580615 +g1,21657:12273991,35580615 +g1,21657:12605945,35580615 +g1,21657:12937899,35580615 +g1,21657:13269853,35580615 +g1,21657:13601807,35580615 +g1,21657:13933761,35580615 +g1,21657:14265715,35580615 +g1,21657:14597669,35580615 +g1,21657:14929623,35580615 +g1,21657:15261577,35580615 +g1,21657:15593531,35580615 +g1,21657:15925485,35580615 +g1,21657:16257439,35580615 +g1,21657:16589393,35580615 +g1,21657:16921347,35580615 +g1,21657:17253301,35580615 +g1,21657:17585255,35580615 +g1,21657:17917209,35580615 +g1,21657:18249163,35580615 +g1,21657:18581117,35580615 +g1,21657:18913071,35580615 +g1,21657:19245025,35580615 +g1,21657:19576979,35580615 +g1,21657:19908933,35580615 +g1,21657:20240887,35580615 +g1,21657:22564565,35580615 +g1,21657:23228473,35580615 +g1,21657:24888243,35580615 +g1,21657:26548013,35580615 +g1,21657:27875829,35580615 +h1,21657:30199507,35580615:0,0,0 +k1,21657:32583029,35580615:2383522 +g1,21657:32583029,35580615 +) +] +) +g1,21659:32583029,35667043 +g1,21659:6630773,35667043 +g1,21659:6630773,35667043 +g1,21659:32583029,35667043 +g1,21659:32583029,35667043 +) +h1,21659:6630773,35863651:0,0,0 +(1,21663:6630773,37980469:25952256,564462,152109 +(1,21663:6630773,37980469:2899444,534184,12975 +g1,21663:6630773,37980469 +g1,21663:9530217,37980469 +) +g1,21663:11606398,37980469 +g1,21663:13173626,37980469 +g1,21663:14954961,37980469 +g1,21663:17365638,37980469 +g1,21663:18668298,37980469 +$1,21663:18668298,37980469 +$1,21663:19221225,37980469 +g1,21663:19446145,37980469 +g1,21663:21013373,37980469 +$1,21663:21013373,37980469 +$1,21663:21620367,37980469 +k1,21663:32583029,37980469:10962662 +g1,21663:32583029,37980469 +) +(1,21667:6630773,39238765:25952256,513147,126483 +k1,21665:8487732,39238765:275575 +k1,21665:10665817,39238765:275575 +k1,21665:11932952,39238765:275575 +k1,21665:14410538,39238765:275576 +k1,21665:15337541,39238765:275575 +k1,21665:19183517,39238765:275575 +k1,21665:21361602,39238765:275575 +k1,21665:22584828,39238765:275575 +(1,21665:22584828,39238765:0,452978,115847 +r1,21667:25053365,39238765:2468537,568825,115847 +k1,21665:22584828,39238765:-2468537 +) +(1,21665:22584828,39238765:2468537,452978,115847 +k1,21665:22584828,39238765:3277 +h1,21665:25050088,39238765:0,411205,112570 +) +k1,21665:25328940,39238765:275575 +k1,21665:27788830,39238765:275575 +k1,21665:28692240,39238765:275575 +k1,21665:29382582,39238765:275499 +k1,21665:30849602,39238765:275575 +k1,21665:32583029,39238765:0 +) +(1,21667:6630773,40103845:25952256,505283,134348 +k1,21665:8616275,40103845:283532 +k1,21665:12330618,40103845:283533 +k1,21665:15960418,40103845:283532 +k1,21665:17669358,40103845:283532 +k1,21665:19963536,40103845:283533 +k1,21665:21238628,40103845:283532 +k1,21665:23560331,40103845:283533 +k1,21665:24530025,40103845:283532 +k1,21665:27043747,40103845:283532 +k1,21665:29337925,40103845:283533 +k1,21665:31931601,40103845:283532 +k1,21665:32583029,40103845:0 +) +(1,21667:6630773,40968925:25952256,513147,134348 +k1,21665:9103337,40968925:278419 +k1,21665:13827062,40968925:278418 +k1,21665:15337558,40968925:278419 +k1,21665:17894664,40968925:278419 +h1,21665:18865252,40968925:0,0,0 +k1,21665:19143670,40968925:278418 +k1,21665:20231459,40968925:278419 +k1,21665:22008031,40968925:278419 +h1,21665:23203408,40968925:0,0,0 +k1,21665:23862590,40968925:278418 +k1,21665:26074321,40968925:278419 +k1,21665:28390910,40968925:278419 +k1,21665:29355490,40968925:278418 +k1,21665:31923737,40968925:278419 +k1,21665:32583029,40968925:0 +) +(1,21667:6630773,41834005:25952256,505283,126483 +k1,21665:8453797,41834005:267855 +(1,21665:8453797,41834005:0,414482,115847 +r1,21667:10922334,41834005:2468537,530329,115847 +k1,21665:8453797,41834005:-2468537 +) +(1,21665:8453797,41834005:2468537,414482,115847 +k1,21665:8453797,41834005:3277 +h1,21665:10919057,41834005:0,411205,112570 +) +k1,21665:11190189,41834005:267855 +k1,21665:12348022,41834005:267854 +(1,21665:12348022,41834005:0,452978,115847 +r1,21667:14816559,41834005:2468537,568825,115847 +k1,21665:12348022,41834005:-2468537 +) +(1,21665:12348022,41834005:2468537,452978,115847 +k1,21665:12348022,41834005:3277 +h1,21665:14813282,41834005:0,411205,112570 +) +k1,21665:15291508,41834005:267855 +k1,21665:16663645,41834005:267855 +k1,21665:17679266,41834005:267855 +k1,21665:20532515,41834005:267854 +k1,21665:21451798,41834005:267855 +k1,21665:25290054,41834005:267855 +k1,21665:28622373,41834005:267855 +k1,21665:30383794,41834005:267855 +k1,21665:31337810,41834005:267854 +(1,21665:31337810,41834005:0,414482,115847 +r1,21667:31696076,41834005:358266,530329,115847 +k1,21665:31337810,41834005:-358266 +) +(1,21665:31337810,41834005:358266,414482,115847 +k1,21665:31337810,41834005:3277 +h1,21665:31692799,41834005:0,411205,112570 +) +k1,21665:32137601,41834005:267855 +(1,21665:32137601,41834005:0,414482,115847 +r1,21667:32495867,41834005:358266,530329,115847 +k1,21665:32137601,41834005:-358266 +) +(1,21665:32137601,41834005:358266,414482,115847 +k1,21665:32137601,41834005:3277 +h1,21665:32492590,41834005:0,411205,112570 +) +k1,21667:32583029,41834005:0 +) +(1,21667:6630773,42699085:25952256,513147,126483 +(1,21665:6630773,42699085:0,452978,115847 +r1,21667:8747598,42699085:2116825,568825,115847 +k1,21665:6630773,42699085:-2116825 +) +(1,21665:6630773,42699085:2116825,452978,115847 +k1,21665:6630773,42699085:3277 +h1,21665:8744321,42699085:0,411205,112570 +) +k1,21665:9217358,42699085:296090 +k1,21665:10624939,42699085:296090 +k1,21665:13140079,42699085:296091 +k1,21665:15338679,42699085:296090 +k1,21665:16582420,42699085:296090 +k1,21665:19640853,42699085:296090 +k1,21665:23111507,42699085:296090 +k1,21665:24399158,42699085:296091 +k1,21665:27479217,42699085:296090 +k1,21665:28722958,42699085:296090 +k1,21665:32583029,42699085:0 +) +(1,21667:6630773,43564165:25952256,505283,7863 +g1,21665:8393036,43564165 +k1,21667:32583028,43564165:24189992 +g1,21667:32583028,43564165 +) +] +(1,21667:32583029,45706769:0,0,0 +g1,21667:32583029,45706769 +) +) +] +(1,21667:6630773,47279633:25952256,0,0 +h1,21667:6630773,47279633:25952256,0,0 +) +] +(1,21667:4262630,4025873:0,0,0 +[1,21667:-473656,4025873:0,0,0 +(1,21667:-473656,-710413:0,0,0 +(1,21667:-473656,-710413:0,0,0 +g1,21667:-473656,-710413 +) +g1,21667:-473656,-710413 ) ] ) ] !18408 -}366 -Input:4034:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4035:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4036:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4037:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}367 Input:4038:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4039:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{367 -[1,21725:4262630,47279633:28320399,43253760,0 -(1,21725:4262630,4025873:0,0,0 -[1,21725:-473656,4025873:0,0,0 -(1,21725:-473656,-710413:0,0,0 -(1,21725:-473656,-644877:0,0,0 -k1,21725:-473656,-644877:-65536 +{368 +[1,21723:4262630,47279633:28320399,43253760,0 +(1,21723:4262630,4025873:0,0,0 +[1,21723:-473656,4025873:0,0,0 +(1,21723:-473656,-710413:0,0,0 +(1,21723:-473656,-644877:0,0,0 +k1,21723:-473656,-644877:-65536 ) -(1,21725:-473656,4736287:0,0,0 -k1,21725:-473656,4736287:5209943 +(1,21723:-473656,4736287:0,0,0 +k1,21723:-473656,4736287:5209943 ) -g1,21725:-473656,-710413 +g1,21723:-473656,-710413 ) ] ) -[1,21725:6630773,47279633:25952256,43253760,0 -[1,21725:6630773,4812305:25952256,786432,0 -(1,21725:6630773,4812305:25952256,513147,126483 -(1,21725:6630773,4812305:25952256,513147,126483 -g1,21725:3078558,4812305 -[1,21725:3078558,4812305:0,0,0 -(1,21725:3078558,2439708:0,1703936,0 -k1,21725:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21725:2537886,2439708:1179648,16384,0 +[1,21723:6630773,47279633:25952256,43253760,0 +[1,21723:6630773,4812305:25952256,786432,0 +(1,21723:6630773,4812305:25952256,513147,126483 +(1,21723:6630773,4812305:25952256,513147,126483 +g1,21723:3078558,4812305 +[1,21723:3078558,4812305:0,0,0 +(1,21723:3078558,2439708:0,1703936,0 +k1,21723:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21723:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21725:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21723:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21725:3078558,4812305:0,0,0 -(1,21725:3078558,2439708:0,1703936,0 -g1,21725:29030814,2439708 -g1,21725:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21725:36151628,1915420:16384,1179648,0 +[1,21723:3078558,4812305:0,0,0 +(1,21723:3078558,2439708:0,1703936,0 +g1,21723:29030814,2439708 +g1,21723:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21723:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21725:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21723:37855564,2439708:1179648,16384,0 ) ) -k1,21725:3078556,2439708:-34777008 +k1,21723:3078556,2439708:-34777008 ) ] -[1,21725:3078558,4812305:0,0,0 -(1,21725:3078558,49800853:0,16384,2228224 -k1,21725:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21725:2537886,49800853:1179648,16384,0 +[1,21723:3078558,4812305:0,0,0 +(1,21723:3078558,49800853:0,16384,2228224 +k1,21723:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21723:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21725:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21723:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21725:3078558,4812305:0,0,0 -(1,21725:3078558,49800853:0,16384,2228224 -g1,21725:29030814,49800853 -g1,21725:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21725:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21725:37855564,49800853:1179648,16384,0 -) -) -k1,21725:3078556,49800853:-34777008 -) -] -g1,21725:6630773,4812305 -k1,21725:21386205,4812305:13560055 -g1,21725:21999622,4812305 -g1,21725:25611966,4812305 -g1,21725:28956923,4812305 -g1,21725:29772190,4812305 -) -) -] -[1,21725:6630773,45706769:25952256,40108032,0 -(1,21725:6630773,45706769:25952256,40108032,0 -(1,21725:6630773,45706769:0,0,0 -g1,21725:6630773,45706769 -) -[1,21725:6630773,45706769:25952256,40108032,0 -(1,21671:6630773,6254097:25952256,513147,134348 -h1,21670:6630773,6254097:983040,0,0 -k1,21670:9883284,6254097:294871 -k1,21670:11369600,6254097:294871 -k1,21670:13779318,6254097:294871 -k1,21670:15065749,6254097:294871 -k1,21670:18640042,6254097:294871 -k1,21670:19869455,6254097:294870 -k1,21670:21899719,6254097:294871 -k1,21670:24952345,6254097:294871 -k1,21670:27257861,6254097:294871 -k1,21670:28212024,6254097:294871 -k1,21670:30062064,6254097:294871 -(1,21670:30062064,6254097:0,414482,115847 -r1,21725:32530601,6254097:2468537,530329,115847 -k1,21670:30062064,6254097:-2468537 -) -(1,21670:30062064,6254097:2468537,414482,115847 -k1,21670:30062064,6254097:3277 -h1,21670:32527324,6254097:0,411205,112570 -) -k1,21670:32583029,6254097:0 -) -(1,21671:6630773,7119177:25952256,513147,134348 -k1,21670:8673585,7119177:190109 -k1,21670:9855254,7119177:190109 -k1,21670:11647063,7119177:190109 -k1,21670:13638101,7119177:190109 -k1,21670:15536734,7119177:190109 -k1,21670:17120794,7119177:190109 -k1,21670:18329989,7119177:190110 -k1,21670:21545895,7119177:190109 -k1,21670:22352042,7119177:190109 -k1,21670:25452605,7119177:190109 -k1,21670:28840870,7119177:190109 -k1,21670:29713864,7119177:190109 -k1,21670:32583029,7119177:0 -) -(1,21671:6630773,7984257:25952256,513147,134348 -g1,21670:8114508,7984257 -g1,21670:10706456,7984257 -g1,21670:12616830,7984257 -g1,21670:14007504,7984257 -g1,21670:15962443,7984257 -g1,21670:17729293,7984257 -g1,21670:20903201,7984257 -k1,21671:32583029,7984257:9431288 -g1,21671:32583029,7984257 -) -v1,21674:6630773,8849337:0,393216,0 -(1,21675:6630773,11022143:25952256,2566022,0 -g1,21675:6630773,11022143 -g1,21675:6237557,11022143 -r1,21725:6368629,11022143:131072,2566022,0 -g1,21675:6567858,11022143 -g1,21675:6764466,11022143 -[1,21675:6764466,11022143:25818563,2566022,0 -(1,21675:6764466,9157635:25818563,701514,196608 -(1,21674:6764466,9157635:0,701514,196608 -r1,21725:7761522,9157635:997056,898122,196608 -k1,21674:6764466,9157635:-997056 -) -(1,21674:6764466,9157635:997056,701514,196608 -) -k1,21674:7953571,9157635:192049 -k1,21674:8281251,9157635:327680 -k1,21674:9101135,9157635:192049 -k1,21674:10312269,9157635:192049 -k1,21674:11888439,9157635:192050 -k1,21674:13252927,9157635:192049 -k1,21674:15745945,9157635:192049 -k1,21674:17510203,9157635:192049 -k1,21674:19516944,9157635:192049 -k1,21674:21789106,9157635:192049 -k1,21674:22337015,9157635:192049 -k1,21674:23850926,9157635:192050 -k1,21674:24702267,9157635:192049 -k1,21674:25913401,9157635:192049 -k1,21674:30177202,9157635:192049 -k1,21674:32583029,9157635:0 -) -(1,21675:6764466,10022715:25818563,513147,134348 -k1,21674:7648455,10022715:267951 -(1,21674:7648455,10022715:0,452978,115847 -r1,21725:9061856,10022715:1413401,568825,115847 -k1,21674:7648455,10022715:-1413401 -) -(1,21674:7648455,10022715:1413401,452978,115847 -k1,21674:7648455,10022715:3277 -h1,21674:9058579,10022715:0,411205,112570 -) -k1,21674:9503477,10022715:267951 -k1,21674:12153662,10022715:267951 -(1,21674:12153662,10022715:0,414482,115847 -r1,21725:16380758,10022715:4227096,530329,115847 -k1,21674:12153662,10022715:-4227096 -) -(1,21674:12153662,10022715:4227096,414482,115847 -g1,21674:14267210,10022715 -g1,21674:14970634,10022715 -h1,21674:16377481,10022715:0,411205,112570 -) -k1,21674:16648709,10022715:267951 -k1,21674:18614698,10022715:267951 -k1,21674:20972591,10022715:267950 -k1,21674:22259627,10022715:267951 -(1,21674:22259627,10022715:0,414482,122846 -r1,21725:23673028,10022715:1413401,537328,122846 -k1,21674:22259627,10022715:-1413401 -) -(1,21674:22259627,10022715:1413401,414482,122846 -k1,21674:22259627,10022715:3277 -h1,21674:23669751,10022715:0,411205,112570 -) -k1,21674:23940979,10022715:267951 -k1,21674:27234727,10022715:267951 -k1,21674:30012707,10022715:267951 -k1,21674:32583029,10022715:0 -) -(1,21675:6764466,10887795:25818563,355205,134348 -k1,21675:32583030,10887795:22730508 -g1,21675:32583030,10887795 -) -] -g1,21675:32583029,11022143 -) -h1,21675:6630773,11022143:0,0,0 -v1,21678:6630773,11706998:0,393216,0 -(1,21690:6630773,17519915:25952256,6206133,196608 -g1,21690:6630773,17519915 -g1,21690:6630773,17519915 -g1,21690:6434165,17519915 -(1,21690:6434165,17519915:0,6206133,196608 -r1,21725:32779637,17519915:26345472,6402741,196608 -k1,21690:6434165,17519915:-26345472 -) -(1,21690:6434165,17519915:26345472,6206133,196608 -[1,21690:6630773,17519915:25952256,6009525,0 -(1,21680:6630773,11934829:25952256,424439,112852 -(1,21679:6630773,11934829:0,0,0 -g1,21679:6630773,11934829 -g1,21679:6630773,11934829 -g1,21679:6303093,11934829 -(1,21679:6303093,11934829:0,0,0 -) -g1,21679:6630773,11934829 -) -k1,21680:6630773,11934829:0 -g1,21680:10614221,11934829 -g1,21680:11278129,11934829 -k1,21680:11278129,11934829:0 -h1,21680:18581115,11934829:0,0,0 -k1,21680:32583029,11934829:14001914 -g1,21680:32583029,11934829 -) -(1,21681:6630773,12619684:25952256,424439,112852 -h1,21681:6630773,12619684:0,0,0 -g1,21681:6962727,12619684 -g1,21681:7294681,12619684 -g1,21681:7626635,12619684 -g1,21681:7958589,12619684 -g1,21681:8290543,12619684 -g1,21681:8622497,12619684 -g1,21681:8954451,12619684 -g1,21681:11610083,12619684 -g1,21681:12273991,12619684 -g1,21681:14265715,12619684 -g1,21681:14929623,12619684 -g1,21681:19576979,12619684 -g1,21681:21568703,12619684 -g1,21681:22232611,12619684 -k1,21681:22232611,12619684:0 -h1,21681:24556289,12619684:0,0,0 -k1,21681:32583029,12619684:8026740 -g1,21681:32583029,12619684 -) -(1,21682:6630773,13304539:25952256,424439,106246 -h1,21682:6630773,13304539:0,0,0 -g1,21682:6962727,13304539 -g1,21682:7294681,13304539 -g1,21682:7626635,13304539 -g1,21682:7958589,13304539 -g1,21682:8290543,13304539 -g1,21682:8622497,13304539 -g1,21682:8954451,13304539 -g1,21682:9286405,13304539 -g1,21682:9618359,13304539 -g1,21682:9950313,13304539 -g1,21682:10282267,13304539 -g1,21682:10614221,13304539 -g1,21682:10946175,13304539 -g1,21682:11278129,13304539 -g1,21682:11610083,13304539 -g1,21682:11942037,13304539 -g1,21682:12273991,13304539 -g1,21682:12605945,13304539 -g1,21682:12937899,13304539 -g1,21682:13269853,13304539 -g1,21682:13601807,13304539 -g1,21682:14265715,13304539 -g1,21682:14929623,13304539 -g1,21682:19245024,13304539 -h1,21682:19576978,13304539:0,0,0 -k1,21682:32583029,13304539:13006051 -g1,21682:32583029,13304539 -) -(1,21683:6630773,13989394:25952256,424439,112852 -h1,21683:6630773,13989394:0,0,0 -g1,21683:6962727,13989394 -g1,21683:7294681,13989394 -g1,21683:12605944,13989394 -g1,21683:13269852,13989394 -g1,21683:15261576,13989394 -h1,21683:15593530,13989394:0,0,0 -k1,21683:32583030,13989394:16989500 -g1,21683:32583030,13989394 -) -(1,21684:6630773,14674249:25952256,424439,86428 -h1,21684:6630773,14674249:0,0,0 -g1,21684:6962727,14674249 -g1,21684:7294681,14674249 -g1,21684:14597668,14674249 -g1,21684:15261576,14674249 -k1,21684:15261576,14674249:0 -h1,21684:16921346,14674249:0,0,0 -k1,21684:32583029,14674249:15661683 -g1,21684:32583029,14674249 -) -(1,21685:6630773,15359104:25952256,424439,106246 -h1,21685:6630773,15359104:0,0,0 -g1,21685:6962727,15359104 -g1,21685:7294681,15359104 -g1,21685:7626635,15359104 -g1,21685:7958589,15359104 -g1,21685:8290543,15359104 -g1,21685:8622497,15359104 -g1,21685:8954451,15359104 -g1,21685:9286405,15359104 -g1,21685:9618359,15359104 -g1,21685:9950313,15359104 -g1,21685:10282267,15359104 -g1,21685:10614221,15359104 -g1,21685:10946175,15359104 -g1,21685:11278129,15359104 -g1,21685:11610083,15359104 -g1,21685:11942037,15359104 -g1,21685:12273991,15359104 -g1,21685:12605945,15359104 -g1,21685:12937899,15359104 -g1,21685:15261577,15359104 -g1,21685:15925485,15359104 -g1,21685:21900657,15359104 -g1,21685:23560427,15359104 -g1,21685:24556289,15359104 -g1,21685:25220197,15359104 -g1,21685:27543875,15359104 -g1,21685:28207783,15359104 -k1,21685:28207783,15359104:0 -h1,21685:31527323,15359104:0,0,0 -k1,21685:32583029,15359104:1055706 -g1,21685:32583029,15359104 -) -(1,21686:6630773,16043959:25952256,424439,106246 -h1,21686:6630773,16043959:0,0,0 -k1,21686:6930451,16043959:299678 -k1,21686:7230128,16043959:299677 -k1,21686:7529806,16043959:299678 -k1,21686:7829483,16043959:299677 -k1,21686:8129161,16043959:299678 -k1,21686:8428838,16043959:299677 -k1,21686:8728516,16043959:299678 -k1,21686:9028193,16043959:299677 -k1,21686:9327871,16043959:299678 -k1,21686:9627548,16043959:299677 -k1,21686:9927226,16043959:299678 -k1,21686:10226903,16043959:299677 -k1,21686:10526581,16043959:299678 -k1,21686:10826258,16043959:299677 -k1,21686:11125936,16043959:299678 -k1,21686:11425613,16043959:299677 -k1,21686:11725291,16043959:299678 -k1,21686:12024968,16043959:299677 -k1,21686:12324646,16043959:299678 -k1,21686:14616047,16043959:299677 -k1,21686:15247679,16043959:299678 -k1,21686:21190574,16043959:299677 -k1,21686:22818068,16043959:299678 -k1,21686:23781653,16043959:299677 -k1,21686:24413285,16043959:299678 -k1,21686:26704686,16043959:299677 -k1,21686:27336318,16043959:299678 -k1,21686:30623581,16043959:299677 -k1,21686:32251075,16043959:299678 -h1,21686:32583029,16043959:0,0,0 -k1,21686:32583029,16043959:0 -k1,21686:32583029,16043959:0 -) -(1,21687:6630773,16728814:25952256,424439,106246 -h1,21687:6630773,16728814:0,0,0 -g1,21687:6962727,16728814 -g1,21687:7294681,16728814 -g1,21687:15261576,16728814 -g1,21687:15925484,16728814 -g1,21687:17585254,16728814 -g1,21687:21568701,16728814 -g1,21687:23560425,16728814 -h1,21687:23892379,16728814:0,0,0 -k1,21687:32583029,16728814:8690650 -g1,21687:32583029,16728814 -) -(1,21688:6630773,17413669:25952256,424439,106246 -h1,21688:6630773,17413669:0,0,0 -g1,21688:6962727,17413669 -g1,21688:7294681,17413669 -g1,21688:12605944,17413669 -g1,21688:13269852,17413669 -h1,21688:13933760,17413669:0,0,0 -k1,21688:32583028,17413669:18649268 -g1,21688:32583028,17413669 -) -] -) -g1,21690:32583029,17519915 -g1,21690:6630773,17519915 -g1,21690:6630773,17519915 -g1,21690:32583029,17519915 -g1,21690:32583029,17519915 -) -h1,21690:6630773,17716523:0,0,0 -(1,21693:6630773,26540727:25952256,8758668,0 -k1,21693:7928465,26540727:1297692 -h1,21692:7928465,26540727:0,0,0 -(1,21692:7928465,26540727:23356872,8758668,0 -(1,21692:7928465,26540727:23356506,8758690,0 -(1,21692:7928465,26540727:23356506,8758690,0 -(1,21692:7928465,26540727:0,8758690,0 -(1,21692:7928465,26540727:0,14208860,0 -(1,21692:7928465,26540727:37890292,14208860,0 -) -k1,21692:7928465,26540727:-37890292 -) -) -g1,21692:31284971,26540727 -) -) -) -g1,21693:31285337,26540727 -k1,21693:32583029,26540727:1297692 -) -(1,21700:6630773,27405807:25952256,513147,134348 -h1,21699:6630773,27405807:983040,0,0 -k1,21699:8580960,27405807:149258 -k1,21699:9677869,27405807:149258 -k1,21699:12447256,27405807:149258 -k1,21699:14499024,27405807:149258 -k1,21699:16763129,27405807:149258 -k1,21699:18103832,27405807:149258 -k1,21699:19272176,27405807:149259 -k1,21699:24044999,27405807:149258 -k1,21699:26038440,27405807:149258 -k1,21699:27291980,27405807:149258 -k1,21699:28189004,27405807:149258 -k1,21699:29272805,27405807:149258 -k1,21699:32583029,27405807:0 -) -(1,21700:6630773,28270887:25952256,513147,134348 -k1,21699:7555705,28270887:273504 -k1,21699:10598759,28270887:273503 -k1,21699:11914285,28270887:273504 -k1,21699:15022875,28270887:273503 -k1,21699:15762340,28270887:273504 -k1,21699:16801960,28270887:273504 -k1,21699:21147215,28270887:273503 -k1,21699:22895934,28270887:273504 -k1,21699:24679387,28270887:273503 -k1,21699:27797154,28270887:273504 -k1,21699:30080646,28270887:273503 -k1,21699:30710010,28270887:273504 -k1,21699:32583029,28270887:0 -) -(1,21700:6630773,29135967:25952256,513147,126483 -k1,21699:8121364,29135967:179216 -k1,21699:10566159,29135967:179215 -k1,21699:11929611,29135967:179216 -k1,21699:13953009,29135967:179215 -k1,21699:15264687,29135967:179216 -k1,21699:17104585,29135967:179216 -k1,21699:19126672,29135967:179215 -k1,21699:20497333,29135967:179216 -k1,21699:23435615,29135967:179216 -k1,21699:25093978,29135967:179215 -k1,21699:27504695,29135967:179216 -k1,21699:29540545,29135967:179215 -k1,21699:30738846,29135967:179216 -k1,21699:32583029,29135967:0 -) -(1,21700:6630773,30001047:25952256,513147,134348 -k1,21699:7961700,30001047:224679 -k1,21699:9847061,30001047:224679 -k1,21699:11447342,30001047:224680 -k1,21699:13556836,30001047:224679 -k1,21699:14978202,30001047:224679 -k1,21699:17468461,30001047:224679 -k1,21699:19537323,30001047:224679 -k1,21699:20753562,30001047:224679 -k1,21699:24283223,30001047:224680 -k1,21699:26091907,30001047:224679 -k1,21699:28850863,30001047:224679 -k1,21699:31116333,30001047:224679 -k1,21699:32583029,30001047:0 -) -(1,21700:6630773,30866127:25952256,513147,134348 -k1,21699:8951918,30866127:206298 -k1,21699:10349661,30866127:206298 -k1,21699:11575043,30866127:206297 -k1,21699:13961724,30866127:206298 -k1,21699:14827314,30866127:206298 -k1,21699:16052697,30866127:206298 -k1,21699:18103177,30866127:206297 -k1,21699:19301035,30866127:206298 -k1,21699:20441876,30866127:206298 -k1,21699:23206700,30866127:206298 -k1,21699:27024032,30866127:206298 -k1,21699:29435616,30866127:206297 -k1,21699:30257952,30866127:206298 -k1,21699:31483335,30866127:206298 -k1,21699:32583029,30866127:0 -) -(1,21700:6630773,31731207:25952256,452978,115847 -g1,21699:7481430,31731207 -(1,21699:7481430,31731207:0,452978,115847 -r1,21725:13818797,31731207:6337367,568825,115847 -k1,21699:7481430,31731207:-6337367 -) -(1,21699:7481430,31731207:6337367,452978,115847 -k1,21699:7481430,31731207:3277 -h1,21699:13815520,31731207:0,411205,112570 -) -k1,21700:32583029,31731207:18711804 -g1,21700:32583029,31731207 -) -v1,21702:6630773,32416062:0,393216,0 -(1,21715:6630773,38913834:25952256,6890988,196608 -g1,21715:6630773,38913834 -g1,21715:6630773,38913834 -g1,21715:6434165,38913834 -(1,21715:6434165,38913834:0,6890988,196608 -r1,21725:32779637,38913834:26345472,7087596,196608 -k1,21715:6434165,38913834:-26345472 -) -(1,21715:6434165,38913834:26345472,6890988,196608 -[1,21715:6630773,38913834:25952256,6694380,0 -(1,21704:6630773,32643893:25952256,424439,112852 -(1,21703:6630773,32643893:0,0,0 -g1,21703:6630773,32643893 -g1,21703:6630773,32643893 -g1,21703:6303093,32643893 -(1,21703:6303093,32643893:0,0,0 -) -g1,21703:6630773,32643893 -) -k1,21704:6630773,32643893:0 -g1,21704:10614221,32643893 -g1,21704:11278129,32643893 -k1,21704:11278129,32643893:0 -h1,21704:18581115,32643893:0,0,0 -k1,21704:32583029,32643893:14001914 -g1,21704:32583029,32643893 -) -(1,21705:6630773,33328748:25952256,424439,112852 -h1,21705:6630773,33328748:0,0,0 -g1,21705:6962727,33328748 -g1,21705:7294681,33328748 -g1,21705:7626635,33328748 -g1,21705:7958589,33328748 -g1,21705:8290543,33328748 -g1,21705:8622497,33328748 -g1,21705:8954451,33328748 -g1,21705:11610083,33328748 -g1,21705:12273991,33328748 -g1,21705:14265715,33328748 -g1,21705:14929623,33328748 -g1,21705:19576979,33328748 -g1,21705:21568703,33328748 -g1,21705:22232611,33328748 -k1,21705:22232611,33328748:0 -h1,21705:24556289,33328748:0,0,0 -k1,21705:32583029,33328748:8026740 -g1,21705:32583029,33328748 -) -(1,21706:6630773,34013603:25952256,424439,106246 -h1,21706:6630773,34013603:0,0,0 -g1,21706:6962727,34013603 -g1,21706:7294681,34013603 -g1,21706:7626635,34013603 -g1,21706:7958589,34013603 -g1,21706:8290543,34013603 -g1,21706:8622497,34013603 -g1,21706:8954451,34013603 -g1,21706:9286405,34013603 -g1,21706:9618359,34013603 -g1,21706:9950313,34013603 -g1,21706:10282267,34013603 -g1,21706:10614221,34013603 -g1,21706:10946175,34013603 -g1,21706:11278129,34013603 -g1,21706:11610083,34013603 -g1,21706:11942037,34013603 -g1,21706:12273991,34013603 -g1,21706:12605945,34013603 -g1,21706:12937899,34013603 -g1,21706:13269853,34013603 -g1,21706:13601807,34013603 -g1,21706:14265715,34013603 -g1,21706:14929623,34013603 -g1,21706:19245024,34013603 -h1,21706:19576978,34013603:0,0,0 -k1,21706:32583029,34013603:13006051 -g1,21706:32583029,34013603 -) -(1,21707:6630773,34698458:25952256,424439,112852 -h1,21707:6630773,34698458:0,0,0 -g1,21707:6962727,34698458 -g1,21707:7294681,34698458 -g1,21707:12605944,34698458 -g1,21707:13269852,34698458 -g1,21707:15261576,34698458 -h1,21707:15593530,34698458:0,0,0 -k1,21707:32583030,34698458:16989500 -g1,21707:32583030,34698458 -) -(1,21708:6630773,35383313:25952256,424439,86428 -h1,21708:6630773,35383313:0,0,0 -g1,21708:6962727,35383313 -g1,21708:7294681,35383313 -g1,21708:14597668,35383313 -g1,21708:15261576,35383313 -k1,21708:15261576,35383313:0 -h1,21708:16921346,35383313:0,0,0 -k1,21708:32583029,35383313:15661683 -g1,21708:32583029,35383313 -) -(1,21709:6630773,36068168:25952256,424439,86428 -h1,21709:6630773,36068168:0,0,0 -g1,21709:6962727,36068168 -g1,21709:7294681,36068168 -g1,21709:7626635,36068168 -g1,21709:7958589,36068168 -g1,21709:8290543,36068168 -g1,21709:8622497,36068168 -g1,21709:8954451,36068168 -g1,21709:9286405,36068168 -g1,21709:9618359,36068168 -g1,21709:9950313,36068168 -g1,21709:10282267,36068168 -g1,21709:10614221,36068168 -g1,21709:10946175,36068168 -g1,21709:11278129,36068168 -g1,21709:11610083,36068168 -g1,21709:11942037,36068168 -g1,21709:12273991,36068168 -g1,21709:12605945,36068168 -g1,21709:12937899,36068168 -g1,21709:16921346,36068168 -g1,21709:17585254,36068168 -g1,21709:18581116,36068168 -k1,21709:18581116,36068168:0 -h1,21709:20572840,36068168:0,0,0 -k1,21709:32583029,36068168:12010189 -g1,21709:32583029,36068168 -) -(1,21710:6630773,36753023:25952256,424439,106246 -h1,21710:6630773,36753023:0,0,0 -k1,21710:6929298,36753023:298525 -k1,21710:7227823,36753023:298525 -k1,21710:7526347,36753023:298524 -k1,21710:7824872,36753023:298525 -k1,21710:8123397,36753023:298525 -k1,21710:8421922,36753023:298525 -k1,21710:8720446,36753023:298524 -k1,21710:9018971,36753023:298525 -k1,21710:9317496,36753023:298525 -k1,21710:9616021,36753023:298525 -k1,21710:9914546,36753023:298525 -k1,21710:10213070,36753023:298524 -k1,21710:10511595,36753023:298525 -k1,21710:10810120,36753023:298525 -k1,21710:11108645,36753023:298525 -k1,21710:11407170,36753023:298525 -k1,21710:11705694,36753023:298524 -k1,21710:12004219,36753023:298525 -k1,21710:12302744,36753023:298525 -k1,21710:14592993,36753023:298525 -k1,21710:15223471,36753023:298524 -k1,21710:21165214,36753023:298525 -k1,21710:22791555,36753023:298525 -k1,21710:23753988,36753023:298525 -k1,21710:24384467,36753023:298525 -k1,21710:26674715,36753023:298524 -k1,21710:27305194,36753023:298525 -k1,21710:30923259,36753023:298525 -k1,21710:30923259,36753023:0 -h1,21710:32583029,36753023:0,0,0 -k1,21710:32583029,36753023:0 -k1,21710:32583029,36753023:0 -) -(1,21711:6630773,37437878:25952256,424439,79822 -h1,21711:6630773,37437878:0,0,0 -g1,21711:6962727,37437878 -g1,21711:7294681,37437878 -g1,21711:7626635,37437878 -g1,21711:7958589,37437878 -g1,21711:8290543,37437878 -g1,21711:8622497,37437878 -g1,21711:8954451,37437878 -g1,21711:9286405,37437878 -g1,21711:9618359,37437878 -g1,21711:9950313,37437878 -g1,21711:10282267,37437878 -g1,21711:10614221,37437878 -g1,21711:10946175,37437878 -g1,21711:11278129,37437878 -g1,21711:11610083,37437878 -g1,21711:11942037,37437878 -g1,21711:12273991,37437878 -g1,21711:12605945,37437878 -g1,21711:12937899,37437878 -g1,21711:16921346,37437878 -g1,21711:17585254,37437878 -g1,21711:20572840,37437878 -h1,21711:20904794,37437878:0,0,0 -k1,21711:32583029,37437878:11678235 -g1,21711:32583029,37437878 -) -(1,21712:6630773,38122733:25952256,424439,106246 -h1,21712:6630773,38122733:0,0,0 -g1,21712:6962727,38122733 -g1,21712:7294681,38122733 -g1,21712:15261576,38122733 -g1,21712:15925484,38122733 -g1,21712:17585254,38122733 -g1,21712:21568701,38122733 -g1,21712:23560425,38122733 -h1,21712:23892379,38122733:0,0,0 -k1,21712:32583029,38122733:8690650 -g1,21712:32583029,38122733 -) -(1,21713:6630773,38807588:25952256,424439,106246 -h1,21713:6630773,38807588:0,0,0 -g1,21713:6962727,38807588 -g1,21713:7294681,38807588 -g1,21713:12605944,38807588 -g1,21713:13269852,38807588 -h1,21713:13933760,38807588:0,0,0 -k1,21713:32583028,38807588:18649268 -g1,21713:32583028,38807588 -) -] -) -g1,21715:32583029,38913834 -g1,21715:6630773,38913834 -g1,21715:6630773,38913834 -g1,21715:32583029,38913834 -g1,21715:32583029,38913834 -) -h1,21715:6630773,39110442:0,0,0 -] -(1,21725:32583029,45706769:0,0,0 -g1,21725:32583029,45706769 -) -) -] -(1,21725:6630773,47279633:25952256,0,0 -h1,21725:6630773,47279633:25952256,0,0 -) -] -(1,21725:4262630,4025873:0,0,0 -[1,21725:-473656,4025873:0,0,0 -(1,21725:-473656,-710413:0,0,0 -(1,21725:-473656,-710413:0,0,0 -g1,21725:-473656,-710413 -) -g1,21725:-473656,-710413 +[1,21723:3078558,4812305:0,0,0 +(1,21723:3078558,49800853:0,16384,2228224 +g1,21723:29030814,49800853 +g1,21723:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21723:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21723:37855564,49800853:1179648,16384,0 +) +) +k1,21723:3078556,49800853:-34777008 +) +] +g1,21723:6630773,4812305 +k1,21723:21386205,4812305:13560055 +g1,21723:21999622,4812305 +g1,21723:25611966,4812305 +g1,21723:28956923,4812305 +g1,21723:29772190,4812305 +) +) +] +[1,21723:6630773,45706769:25952256,40108032,0 +(1,21723:6630773,45706769:25952256,40108032,0 +(1,21723:6630773,45706769:0,0,0 +g1,21723:6630773,45706769 +) +[1,21723:6630773,45706769:25952256,40108032,0 +(1,21669:6630773,6254097:25952256,513147,134348 +h1,21668:6630773,6254097:983040,0,0 +k1,21668:9883284,6254097:294871 +k1,21668:11369600,6254097:294871 +k1,21668:13779318,6254097:294871 +k1,21668:15065749,6254097:294871 +k1,21668:18640042,6254097:294871 +k1,21668:19869455,6254097:294870 +k1,21668:21899719,6254097:294871 +k1,21668:24952345,6254097:294871 +k1,21668:27257861,6254097:294871 +k1,21668:28212024,6254097:294871 +k1,21668:30062064,6254097:294871 +(1,21668:30062064,6254097:0,414482,115847 +r1,21723:32530601,6254097:2468537,530329,115847 +k1,21668:30062064,6254097:-2468537 +) +(1,21668:30062064,6254097:2468537,414482,115847 +k1,21668:30062064,6254097:3277 +h1,21668:32527324,6254097:0,411205,112570 +) +k1,21668:32583029,6254097:0 +) +(1,21669:6630773,7119177:25952256,513147,134348 +k1,21668:8673585,7119177:190109 +k1,21668:9855254,7119177:190109 +k1,21668:11647063,7119177:190109 +k1,21668:13638101,7119177:190109 +k1,21668:15536734,7119177:190109 +k1,21668:17120794,7119177:190109 +k1,21668:18329989,7119177:190110 +k1,21668:21545895,7119177:190109 +k1,21668:22352042,7119177:190109 +k1,21668:25452605,7119177:190109 +k1,21668:28840870,7119177:190109 +k1,21668:29713864,7119177:190109 +k1,21668:32583029,7119177:0 +) +(1,21669:6630773,7984257:25952256,513147,134348 +g1,21668:8114508,7984257 +g1,21668:10706456,7984257 +g1,21668:12616830,7984257 +g1,21668:14007504,7984257 +g1,21668:15962443,7984257 +g1,21668:17729293,7984257 +g1,21668:20903201,7984257 +k1,21669:32583029,7984257:9431288 +g1,21669:32583029,7984257 +) +v1,21672:6630773,8849337:0,393216,0 +(1,21673:6630773,11022143:25952256,2566022,0 +g1,21673:6630773,11022143 +g1,21673:6237557,11022143 +r1,21723:6368629,11022143:131072,2566022,0 +g1,21673:6567858,11022143 +g1,21673:6764466,11022143 +[1,21673:6764466,11022143:25818563,2566022,0 +(1,21673:6764466,9157635:25818563,701514,196608 +(1,21672:6764466,9157635:0,701514,196608 +r1,21723:7761522,9157635:997056,898122,196608 +k1,21672:6764466,9157635:-997056 +) +(1,21672:6764466,9157635:997056,701514,196608 +) +k1,21672:7953571,9157635:192049 +k1,21672:8281251,9157635:327680 +k1,21672:9101135,9157635:192049 +k1,21672:10312269,9157635:192049 +k1,21672:11888439,9157635:192050 +k1,21672:13252927,9157635:192049 +k1,21672:15745945,9157635:192049 +k1,21672:17510203,9157635:192049 +k1,21672:19516944,9157635:192049 +k1,21672:21789106,9157635:192049 +k1,21672:22337015,9157635:192049 +k1,21672:23850926,9157635:192050 +k1,21672:24702267,9157635:192049 +k1,21672:25913401,9157635:192049 +k1,21672:30177202,9157635:192049 +k1,21672:32583029,9157635:0 +) +(1,21673:6764466,10022715:25818563,513147,134348 +k1,21672:7648455,10022715:267951 +(1,21672:7648455,10022715:0,452978,115847 +r1,21723:9061856,10022715:1413401,568825,115847 +k1,21672:7648455,10022715:-1413401 +) +(1,21672:7648455,10022715:1413401,452978,115847 +k1,21672:7648455,10022715:3277 +h1,21672:9058579,10022715:0,411205,112570 +) +k1,21672:9503477,10022715:267951 +k1,21672:12153662,10022715:267951 +(1,21672:12153662,10022715:0,414482,115847 +r1,21723:16380758,10022715:4227096,530329,115847 +k1,21672:12153662,10022715:-4227096 +) +(1,21672:12153662,10022715:4227096,414482,115847 +g1,21672:14267210,10022715 +g1,21672:14970634,10022715 +h1,21672:16377481,10022715:0,411205,112570 +) +k1,21672:16648709,10022715:267951 +k1,21672:18614698,10022715:267951 +k1,21672:20972591,10022715:267950 +k1,21672:22259627,10022715:267951 +(1,21672:22259627,10022715:0,414482,122846 +r1,21723:23673028,10022715:1413401,537328,122846 +k1,21672:22259627,10022715:-1413401 +) +(1,21672:22259627,10022715:1413401,414482,122846 +k1,21672:22259627,10022715:3277 +h1,21672:23669751,10022715:0,411205,112570 +) +k1,21672:23940979,10022715:267951 +k1,21672:27234727,10022715:267951 +k1,21672:30012707,10022715:267951 +k1,21672:32583029,10022715:0 +) +(1,21673:6764466,10887795:25818563,355205,134348 +k1,21673:32583030,10887795:22730508 +g1,21673:32583030,10887795 +) +] +g1,21673:32583029,11022143 +) +h1,21673:6630773,11022143:0,0,0 +v1,21676:6630773,11706998:0,393216,0 +(1,21688:6630773,17519915:25952256,6206133,196608 +g1,21688:6630773,17519915 +g1,21688:6630773,17519915 +g1,21688:6434165,17519915 +(1,21688:6434165,17519915:0,6206133,196608 +r1,21723:32779637,17519915:26345472,6402741,196608 +k1,21688:6434165,17519915:-26345472 +) +(1,21688:6434165,17519915:26345472,6206133,196608 +[1,21688:6630773,17519915:25952256,6009525,0 +(1,21678:6630773,11934829:25952256,424439,112852 +(1,21677:6630773,11934829:0,0,0 +g1,21677:6630773,11934829 +g1,21677:6630773,11934829 +g1,21677:6303093,11934829 +(1,21677:6303093,11934829:0,0,0 +) +g1,21677:6630773,11934829 +) +k1,21678:6630773,11934829:0 +g1,21678:10614221,11934829 +g1,21678:11278129,11934829 +k1,21678:11278129,11934829:0 +h1,21678:18581115,11934829:0,0,0 +k1,21678:32583029,11934829:14001914 +g1,21678:32583029,11934829 +) +(1,21679:6630773,12619684:25952256,424439,112852 +h1,21679:6630773,12619684:0,0,0 +g1,21679:6962727,12619684 +g1,21679:7294681,12619684 +g1,21679:7626635,12619684 +g1,21679:7958589,12619684 +g1,21679:8290543,12619684 +g1,21679:8622497,12619684 +g1,21679:8954451,12619684 +g1,21679:11610083,12619684 +g1,21679:12273991,12619684 +g1,21679:14265715,12619684 +g1,21679:14929623,12619684 +g1,21679:19576979,12619684 +g1,21679:21568703,12619684 +g1,21679:22232611,12619684 +k1,21679:22232611,12619684:0 +h1,21679:24556289,12619684:0,0,0 +k1,21679:32583029,12619684:8026740 +g1,21679:32583029,12619684 +) +(1,21680:6630773,13304539:25952256,424439,106246 +h1,21680:6630773,13304539:0,0,0 +g1,21680:6962727,13304539 +g1,21680:7294681,13304539 +g1,21680:7626635,13304539 +g1,21680:7958589,13304539 +g1,21680:8290543,13304539 +g1,21680:8622497,13304539 +g1,21680:8954451,13304539 +g1,21680:9286405,13304539 +g1,21680:9618359,13304539 +g1,21680:9950313,13304539 +g1,21680:10282267,13304539 +g1,21680:10614221,13304539 +g1,21680:10946175,13304539 +g1,21680:11278129,13304539 +g1,21680:11610083,13304539 +g1,21680:11942037,13304539 +g1,21680:12273991,13304539 +g1,21680:12605945,13304539 +g1,21680:12937899,13304539 +g1,21680:13269853,13304539 +g1,21680:13601807,13304539 +g1,21680:14265715,13304539 +g1,21680:14929623,13304539 +g1,21680:19245024,13304539 +h1,21680:19576978,13304539:0,0,0 +k1,21680:32583029,13304539:13006051 +g1,21680:32583029,13304539 +) +(1,21681:6630773,13989394:25952256,424439,112852 +h1,21681:6630773,13989394:0,0,0 +g1,21681:6962727,13989394 +g1,21681:7294681,13989394 +g1,21681:12605944,13989394 +g1,21681:13269852,13989394 +g1,21681:15261576,13989394 +h1,21681:15593530,13989394:0,0,0 +k1,21681:32583030,13989394:16989500 +g1,21681:32583030,13989394 +) +(1,21682:6630773,14674249:25952256,424439,86428 +h1,21682:6630773,14674249:0,0,0 +g1,21682:6962727,14674249 +g1,21682:7294681,14674249 +g1,21682:14597668,14674249 +g1,21682:15261576,14674249 +k1,21682:15261576,14674249:0 +h1,21682:16921346,14674249:0,0,0 +k1,21682:32583029,14674249:15661683 +g1,21682:32583029,14674249 +) +(1,21683:6630773,15359104:25952256,424439,106246 +h1,21683:6630773,15359104:0,0,0 +g1,21683:6962727,15359104 +g1,21683:7294681,15359104 +g1,21683:7626635,15359104 +g1,21683:7958589,15359104 +g1,21683:8290543,15359104 +g1,21683:8622497,15359104 +g1,21683:8954451,15359104 +g1,21683:9286405,15359104 +g1,21683:9618359,15359104 +g1,21683:9950313,15359104 +g1,21683:10282267,15359104 +g1,21683:10614221,15359104 +g1,21683:10946175,15359104 +g1,21683:11278129,15359104 +g1,21683:11610083,15359104 +g1,21683:11942037,15359104 +g1,21683:12273991,15359104 +g1,21683:12605945,15359104 +g1,21683:12937899,15359104 +g1,21683:15261577,15359104 +g1,21683:15925485,15359104 +g1,21683:21900657,15359104 +g1,21683:23560427,15359104 +g1,21683:24556289,15359104 +g1,21683:25220197,15359104 +g1,21683:27543875,15359104 +g1,21683:28207783,15359104 +k1,21683:28207783,15359104:0 +h1,21683:31527323,15359104:0,0,0 +k1,21683:32583029,15359104:1055706 +g1,21683:32583029,15359104 +) +(1,21684:6630773,16043959:25952256,424439,106246 +h1,21684:6630773,16043959:0,0,0 +k1,21684:6930451,16043959:299678 +k1,21684:7230128,16043959:299677 +k1,21684:7529806,16043959:299678 +k1,21684:7829483,16043959:299677 +k1,21684:8129161,16043959:299678 +k1,21684:8428838,16043959:299677 +k1,21684:8728516,16043959:299678 +k1,21684:9028193,16043959:299677 +k1,21684:9327871,16043959:299678 +k1,21684:9627548,16043959:299677 +k1,21684:9927226,16043959:299678 +k1,21684:10226903,16043959:299677 +k1,21684:10526581,16043959:299678 +k1,21684:10826258,16043959:299677 +k1,21684:11125936,16043959:299678 +k1,21684:11425613,16043959:299677 +k1,21684:11725291,16043959:299678 +k1,21684:12024968,16043959:299677 +k1,21684:12324646,16043959:299678 +k1,21684:14616047,16043959:299677 +k1,21684:15247679,16043959:299678 +k1,21684:21190574,16043959:299677 +k1,21684:22818068,16043959:299678 +k1,21684:23781653,16043959:299677 +k1,21684:24413285,16043959:299678 +k1,21684:26704686,16043959:299677 +k1,21684:27336318,16043959:299678 +k1,21684:30623581,16043959:299677 +k1,21684:32251075,16043959:299678 +h1,21684:32583029,16043959:0,0,0 +k1,21684:32583029,16043959:0 +k1,21684:32583029,16043959:0 +) +(1,21685:6630773,16728814:25952256,424439,106246 +h1,21685:6630773,16728814:0,0,0 +g1,21685:6962727,16728814 +g1,21685:7294681,16728814 +g1,21685:15261576,16728814 +g1,21685:15925484,16728814 +g1,21685:17585254,16728814 +g1,21685:21568701,16728814 +g1,21685:23560425,16728814 +h1,21685:23892379,16728814:0,0,0 +k1,21685:32583029,16728814:8690650 +g1,21685:32583029,16728814 +) +(1,21686:6630773,17413669:25952256,424439,106246 +h1,21686:6630773,17413669:0,0,0 +g1,21686:6962727,17413669 +g1,21686:7294681,17413669 +g1,21686:12605944,17413669 +g1,21686:13269852,17413669 +h1,21686:13933760,17413669:0,0,0 +k1,21686:32583028,17413669:18649268 +g1,21686:32583028,17413669 +) +] +) +g1,21688:32583029,17519915 +g1,21688:6630773,17519915 +g1,21688:6630773,17519915 +g1,21688:32583029,17519915 +g1,21688:32583029,17519915 +) +h1,21688:6630773,17716523:0,0,0 +(1,21691:6630773,26540727:25952256,8758668,0 +k1,21691:7928465,26540727:1297692 +h1,21690:7928465,26540727:0,0,0 +(1,21690:7928465,26540727:23356872,8758668,0 +(1,21690:7928465,26540727:23356506,8758690,0 +(1,21690:7928465,26540727:23356506,8758690,0 +(1,21690:7928465,26540727:0,8758690,0 +(1,21690:7928465,26540727:0,14208860,0 +(1,21690:7928465,26540727:37890292,14208860,0 +) +k1,21690:7928465,26540727:-37890292 +) +) +g1,21690:31284971,26540727 +) +) +) +g1,21691:31285337,26540727 +k1,21691:32583029,26540727:1297692 +) +(1,21698:6630773,27405807:25952256,513147,134348 +h1,21697:6630773,27405807:983040,0,0 +k1,21697:8580960,27405807:149258 +k1,21697:9677869,27405807:149258 +k1,21697:12447256,27405807:149258 +k1,21697:14499024,27405807:149258 +k1,21697:16763129,27405807:149258 +k1,21697:18103832,27405807:149258 +k1,21697:19272176,27405807:149259 +k1,21697:24044999,27405807:149258 +k1,21697:26038440,27405807:149258 +k1,21697:27291980,27405807:149258 +k1,21697:28189004,27405807:149258 +k1,21697:29272805,27405807:149258 +k1,21697:32583029,27405807:0 +) +(1,21698:6630773,28270887:25952256,513147,134348 +k1,21697:7555705,28270887:273504 +k1,21697:10598759,28270887:273503 +k1,21697:11914285,28270887:273504 +k1,21697:15022875,28270887:273503 +k1,21697:15762340,28270887:273504 +k1,21697:16801960,28270887:273504 +k1,21697:21147215,28270887:273503 +k1,21697:22895934,28270887:273504 +k1,21697:24679387,28270887:273503 +k1,21697:27797154,28270887:273504 +k1,21697:30080646,28270887:273503 +k1,21697:30710010,28270887:273504 +k1,21697:32583029,28270887:0 +) +(1,21698:6630773,29135967:25952256,513147,126483 +k1,21697:8121364,29135967:179216 +k1,21697:10566159,29135967:179215 +k1,21697:11929611,29135967:179216 +k1,21697:13953009,29135967:179215 +k1,21697:15264687,29135967:179216 +k1,21697:17104585,29135967:179216 +k1,21697:19126672,29135967:179215 +k1,21697:20497333,29135967:179216 +k1,21697:23435615,29135967:179216 +k1,21697:25093978,29135967:179215 +k1,21697:27504695,29135967:179216 +k1,21697:29540545,29135967:179215 +k1,21697:30738846,29135967:179216 +k1,21697:32583029,29135967:0 +) +(1,21698:6630773,30001047:25952256,513147,134348 +k1,21697:7961700,30001047:224679 +k1,21697:9847061,30001047:224679 +k1,21697:11447342,30001047:224680 +k1,21697:13556836,30001047:224679 +k1,21697:14978202,30001047:224679 +k1,21697:17468461,30001047:224679 +k1,21697:19537323,30001047:224679 +k1,21697:20753562,30001047:224679 +k1,21697:24283223,30001047:224680 +k1,21697:26091907,30001047:224679 +k1,21697:28850863,30001047:224679 +k1,21697:31116333,30001047:224679 +k1,21697:32583029,30001047:0 +) +(1,21698:6630773,30866127:25952256,513147,134348 +k1,21697:8951918,30866127:206298 +k1,21697:10349661,30866127:206298 +k1,21697:11575043,30866127:206297 +k1,21697:13961724,30866127:206298 +k1,21697:14827314,30866127:206298 +k1,21697:16052697,30866127:206298 +k1,21697:18103177,30866127:206297 +k1,21697:19301035,30866127:206298 +k1,21697:20441876,30866127:206298 +k1,21697:23206700,30866127:206298 +k1,21697:27024032,30866127:206298 +k1,21697:29435616,30866127:206297 +k1,21697:30257952,30866127:206298 +k1,21697:31483335,30866127:206298 +k1,21697:32583029,30866127:0 +) +(1,21698:6630773,31731207:25952256,452978,115847 +g1,21697:7481430,31731207 +(1,21697:7481430,31731207:0,452978,115847 +r1,21723:13818797,31731207:6337367,568825,115847 +k1,21697:7481430,31731207:-6337367 +) +(1,21697:7481430,31731207:6337367,452978,115847 +k1,21697:7481430,31731207:3277 +h1,21697:13815520,31731207:0,411205,112570 +) +k1,21698:32583029,31731207:18711804 +g1,21698:32583029,31731207 +) +v1,21700:6630773,32416062:0,393216,0 +(1,21713:6630773,38913834:25952256,6890988,196608 +g1,21713:6630773,38913834 +g1,21713:6630773,38913834 +g1,21713:6434165,38913834 +(1,21713:6434165,38913834:0,6890988,196608 +r1,21723:32779637,38913834:26345472,7087596,196608 +k1,21713:6434165,38913834:-26345472 +) +(1,21713:6434165,38913834:26345472,6890988,196608 +[1,21713:6630773,38913834:25952256,6694380,0 +(1,21702:6630773,32643893:25952256,424439,112852 +(1,21701:6630773,32643893:0,0,0 +g1,21701:6630773,32643893 +g1,21701:6630773,32643893 +g1,21701:6303093,32643893 +(1,21701:6303093,32643893:0,0,0 +) +g1,21701:6630773,32643893 +) +k1,21702:6630773,32643893:0 +g1,21702:10614221,32643893 +g1,21702:11278129,32643893 +k1,21702:11278129,32643893:0 +h1,21702:18581115,32643893:0,0,0 +k1,21702:32583029,32643893:14001914 +g1,21702:32583029,32643893 +) +(1,21703:6630773,33328748:25952256,424439,112852 +h1,21703:6630773,33328748:0,0,0 +g1,21703:6962727,33328748 +g1,21703:7294681,33328748 +g1,21703:7626635,33328748 +g1,21703:7958589,33328748 +g1,21703:8290543,33328748 +g1,21703:8622497,33328748 +g1,21703:8954451,33328748 +g1,21703:11610083,33328748 +g1,21703:12273991,33328748 +g1,21703:14265715,33328748 +g1,21703:14929623,33328748 +g1,21703:19576979,33328748 +g1,21703:21568703,33328748 +g1,21703:22232611,33328748 +k1,21703:22232611,33328748:0 +h1,21703:24556289,33328748:0,0,0 +k1,21703:32583029,33328748:8026740 +g1,21703:32583029,33328748 +) +(1,21704:6630773,34013603:25952256,424439,106246 +h1,21704:6630773,34013603:0,0,0 +g1,21704:6962727,34013603 +g1,21704:7294681,34013603 +g1,21704:7626635,34013603 +g1,21704:7958589,34013603 +g1,21704:8290543,34013603 +g1,21704:8622497,34013603 +g1,21704:8954451,34013603 +g1,21704:9286405,34013603 +g1,21704:9618359,34013603 +g1,21704:9950313,34013603 +g1,21704:10282267,34013603 +g1,21704:10614221,34013603 +g1,21704:10946175,34013603 +g1,21704:11278129,34013603 +g1,21704:11610083,34013603 +g1,21704:11942037,34013603 +g1,21704:12273991,34013603 +g1,21704:12605945,34013603 +g1,21704:12937899,34013603 +g1,21704:13269853,34013603 +g1,21704:13601807,34013603 +g1,21704:14265715,34013603 +g1,21704:14929623,34013603 +g1,21704:19245024,34013603 +h1,21704:19576978,34013603:0,0,0 +k1,21704:32583029,34013603:13006051 +g1,21704:32583029,34013603 +) +(1,21705:6630773,34698458:25952256,424439,112852 +h1,21705:6630773,34698458:0,0,0 +g1,21705:6962727,34698458 +g1,21705:7294681,34698458 +g1,21705:12605944,34698458 +g1,21705:13269852,34698458 +g1,21705:15261576,34698458 +h1,21705:15593530,34698458:0,0,0 +k1,21705:32583030,34698458:16989500 +g1,21705:32583030,34698458 +) +(1,21706:6630773,35383313:25952256,424439,86428 +h1,21706:6630773,35383313:0,0,0 +g1,21706:6962727,35383313 +g1,21706:7294681,35383313 +g1,21706:14597668,35383313 +g1,21706:15261576,35383313 +k1,21706:15261576,35383313:0 +h1,21706:16921346,35383313:0,0,0 +k1,21706:32583029,35383313:15661683 +g1,21706:32583029,35383313 +) +(1,21707:6630773,36068168:25952256,424439,86428 +h1,21707:6630773,36068168:0,0,0 +g1,21707:6962727,36068168 +g1,21707:7294681,36068168 +g1,21707:7626635,36068168 +g1,21707:7958589,36068168 +g1,21707:8290543,36068168 +g1,21707:8622497,36068168 +g1,21707:8954451,36068168 +g1,21707:9286405,36068168 +g1,21707:9618359,36068168 +g1,21707:9950313,36068168 +g1,21707:10282267,36068168 +g1,21707:10614221,36068168 +g1,21707:10946175,36068168 +g1,21707:11278129,36068168 +g1,21707:11610083,36068168 +g1,21707:11942037,36068168 +g1,21707:12273991,36068168 +g1,21707:12605945,36068168 +g1,21707:12937899,36068168 +g1,21707:16921346,36068168 +g1,21707:17585254,36068168 +g1,21707:18581116,36068168 +k1,21707:18581116,36068168:0 +h1,21707:20572840,36068168:0,0,0 +k1,21707:32583029,36068168:12010189 +g1,21707:32583029,36068168 +) +(1,21708:6630773,36753023:25952256,424439,106246 +h1,21708:6630773,36753023:0,0,0 +k1,21708:6929298,36753023:298525 +k1,21708:7227823,36753023:298525 +k1,21708:7526347,36753023:298524 +k1,21708:7824872,36753023:298525 +k1,21708:8123397,36753023:298525 +k1,21708:8421922,36753023:298525 +k1,21708:8720446,36753023:298524 +k1,21708:9018971,36753023:298525 +k1,21708:9317496,36753023:298525 +k1,21708:9616021,36753023:298525 +k1,21708:9914546,36753023:298525 +k1,21708:10213070,36753023:298524 +k1,21708:10511595,36753023:298525 +k1,21708:10810120,36753023:298525 +k1,21708:11108645,36753023:298525 +k1,21708:11407170,36753023:298525 +k1,21708:11705694,36753023:298524 +k1,21708:12004219,36753023:298525 +k1,21708:12302744,36753023:298525 +k1,21708:14592993,36753023:298525 +k1,21708:15223471,36753023:298524 +k1,21708:21165214,36753023:298525 +k1,21708:22791555,36753023:298525 +k1,21708:23753988,36753023:298525 +k1,21708:24384467,36753023:298525 +k1,21708:26674715,36753023:298524 +k1,21708:27305194,36753023:298525 +k1,21708:30923259,36753023:298525 +k1,21708:30923259,36753023:0 +h1,21708:32583029,36753023:0,0,0 +k1,21708:32583029,36753023:0 +k1,21708:32583029,36753023:0 +) +(1,21709:6630773,37437878:25952256,424439,79822 +h1,21709:6630773,37437878:0,0,0 +g1,21709:6962727,37437878 +g1,21709:7294681,37437878 +g1,21709:7626635,37437878 +g1,21709:7958589,37437878 +g1,21709:8290543,37437878 +g1,21709:8622497,37437878 +g1,21709:8954451,37437878 +g1,21709:9286405,37437878 +g1,21709:9618359,37437878 +g1,21709:9950313,37437878 +g1,21709:10282267,37437878 +g1,21709:10614221,37437878 +g1,21709:10946175,37437878 +g1,21709:11278129,37437878 +g1,21709:11610083,37437878 +g1,21709:11942037,37437878 +g1,21709:12273991,37437878 +g1,21709:12605945,37437878 +g1,21709:12937899,37437878 +g1,21709:16921346,37437878 +g1,21709:17585254,37437878 +g1,21709:20572840,37437878 +h1,21709:20904794,37437878:0,0,0 +k1,21709:32583029,37437878:11678235 +g1,21709:32583029,37437878 +) +(1,21710:6630773,38122733:25952256,424439,106246 +h1,21710:6630773,38122733:0,0,0 +g1,21710:6962727,38122733 +g1,21710:7294681,38122733 +g1,21710:15261576,38122733 +g1,21710:15925484,38122733 +g1,21710:17585254,38122733 +g1,21710:21568701,38122733 +g1,21710:23560425,38122733 +h1,21710:23892379,38122733:0,0,0 +k1,21710:32583029,38122733:8690650 +g1,21710:32583029,38122733 +) +(1,21711:6630773,38807588:25952256,424439,106246 +h1,21711:6630773,38807588:0,0,0 +g1,21711:6962727,38807588 +g1,21711:7294681,38807588 +g1,21711:12605944,38807588 +g1,21711:13269852,38807588 +h1,21711:13933760,38807588:0,0,0 +k1,21711:32583028,38807588:18649268 +g1,21711:32583028,38807588 +) +] +) +g1,21713:32583029,38913834 +g1,21713:6630773,38913834 +g1,21713:6630773,38913834 +g1,21713:32583029,38913834 +g1,21713:32583029,38913834 +) +h1,21713:6630773,39110442:0,0,0 +] +(1,21723:32583029,45706769:0,0,0 +g1,21723:32583029,45706769 +) +) +] +(1,21723:6630773,47279633:25952256,0,0 +h1,21723:6630773,47279633:25952256,0,0 +) +] +(1,21723:4262630,4025873:0,0,0 +[1,21723:-473656,4025873:0,0,0 +(1,21723:-473656,-710413:0,0,0 +(1,21723:-473656,-710413:0,0,0 +g1,21723:-473656,-710413 +) +g1,21723:-473656,-710413 ) ] ) ] !23002 -}367 -Input:4039:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4040:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4041:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4042:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}368 Input:4043:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4044:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4045:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -375793,848 +375997,848 @@ Input:4050:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4051:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4052:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4053:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4057:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{368 -[1,21755:4262630,47279633:28320399,43253760,0 -(1,21755:4262630,4025873:0,0,0 -[1,21755:-473656,4025873:0,0,0 -(1,21755:-473656,-710413:0,0,0 -(1,21755:-473656,-644877:0,0,0 -k1,21755:-473656,-644877:-65536 +{369 +[1,21753:4262630,47279633:28320399,43253760,0 +(1,21753:4262630,4025873:0,0,0 +[1,21753:-473656,4025873:0,0,0 +(1,21753:-473656,-710413:0,0,0 +(1,21753:-473656,-644877:0,0,0 +k1,21753:-473656,-644877:-65536 ) -(1,21755:-473656,4736287:0,0,0 -k1,21755:-473656,4736287:5209943 +(1,21753:-473656,4736287:0,0,0 +k1,21753:-473656,4736287:5209943 ) -g1,21755:-473656,-710413 +g1,21753:-473656,-710413 ) ] ) -[1,21755:6630773,47279633:25952256,43253760,0 -[1,21755:6630773,4812305:25952256,786432,0 -(1,21755:6630773,4812305:25952256,505283,11795 -(1,21755:6630773,4812305:25952256,505283,11795 -g1,21755:3078558,4812305 -[1,21755:3078558,4812305:0,0,0 -(1,21755:3078558,2439708:0,1703936,0 -k1,21755:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21755:2537886,2439708:1179648,16384,0 +[1,21753:6630773,47279633:25952256,43253760,0 +[1,21753:6630773,4812305:25952256,786432,0 +(1,21753:6630773,4812305:25952256,505283,11795 +(1,21753:6630773,4812305:25952256,505283,11795 +g1,21753:3078558,4812305 +[1,21753:3078558,4812305:0,0,0 +(1,21753:3078558,2439708:0,1703936,0 +k1,21753:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21753:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21755:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21753:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21755:3078558,4812305:0,0,0 -(1,21755:3078558,2439708:0,1703936,0 -g1,21755:29030814,2439708 -g1,21755:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21755:36151628,1915420:16384,1179648,0 +[1,21753:3078558,4812305:0,0,0 +(1,21753:3078558,2439708:0,1703936,0 +g1,21753:29030814,2439708 +g1,21753:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21753:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21755:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21753:37855564,2439708:1179648,16384,0 ) ) -k1,21755:3078556,2439708:-34777008 +k1,21753:3078556,2439708:-34777008 ) ] -[1,21755:3078558,4812305:0,0,0 -(1,21755:3078558,49800853:0,16384,2228224 -k1,21755:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21755:2537886,49800853:1179648,16384,0 +[1,21753:3078558,4812305:0,0,0 +(1,21753:3078558,49800853:0,16384,2228224 +k1,21753:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21753:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21755:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21753:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21755:3078558,4812305:0,0,0 -(1,21755:3078558,49800853:0,16384,2228224 -g1,21755:29030814,49800853 -g1,21755:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21755:36151628,51504789:16384,1179648,0 +[1,21753:3078558,4812305:0,0,0 +(1,21753:3078558,49800853:0,16384,2228224 +g1,21753:29030814,49800853 +g1,21753:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21753:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21755:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21753:37855564,49800853:1179648,16384,0 ) ) -k1,21755:3078556,49800853:-34777008 +k1,21753:3078556,49800853:-34777008 ) ] -g1,21755:6630773,4812305 -g1,21755:6630773,4812305 -g1,21755:8724648,4812305 -k1,21755:31387652,4812305:22663004 +g1,21753:6630773,4812305 +g1,21753:6630773,4812305 +g1,21753:8724648,4812305 +k1,21753:31387652,4812305:22663004 ) ) ] -[1,21755:6630773,45706769:25952256,40108032,0 -(1,21755:6630773,45706769:25952256,40108032,0 -(1,21755:6630773,45706769:0,0,0 -g1,21755:6630773,45706769 +[1,21753:6630773,45706769:25952256,40108032,0 +(1,21753:6630773,45706769:25952256,40108032,0 +(1,21753:6630773,45706769:0,0,0 +g1,21753:6630773,45706769 ) -[1,21755:6630773,45706769:25952256,40108032,0 -(1,21718:6630773,14357405:25952256,8758668,0 -k1,21718:7928465,14357405:1297692 -h1,21717:7928465,14357405:0,0,0 -(1,21717:7928465,14357405:23356872,8758668,0 -(1,21717:7928465,14357405:23356506,8758690,0 -(1,21717:7928465,14357405:23356506,8758690,0 -(1,21717:7928465,14357405:0,8758690,0 -(1,21717:7928465,14357405:0,14208860,0 -(1,21717:7928465,14357405:37890292,14208860,0 +[1,21753:6630773,45706769:25952256,40108032,0 +(1,21716:6630773,14357405:25952256,8758668,0 +k1,21716:7928465,14357405:1297692 +h1,21715:7928465,14357405:0,0,0 +(1,21715:7928465,14357405:23356872,8758668,0 +(1,21715:7928465,14357405:23356506,8758690,0 +(1,21715:7928465,14357405:23356506,8758690,0 +(1,21715:7928465,14357405:0,8758690,0 +(1,21715:7928465,14357405:0,14208860,0 +(1,21715:7928465,14357405:37890292,14208860,0 ) -k1,21717:7928465,14357405:-37890292 +k1,21715:7928465,14357405:-37890292 ) ) -g1,21717:31284971,14357405 -) -) -) -g1,21718:31285337,14357405 -k1,21718:32583029,14357405:1297692 -) -v1,21725:6630773,15222485:0,393216,0 -(1,21726:6630773,19954710:25952256,5125441,0 -g1,21726:6630773,19954710 -g1,21726:6237557,19954710 -r1,21755:6368629,19954710:131072,5125441,0 -g1,21726:6567858,19954710 -g1,21726:6764466,19954710 -[1,21726:6764466,19954710:25818563,5125441,0 -(1,21726:6764466,15494962:25818563,665693,196608 -(1,21725:6764466,15494962:0,665693,196608 -r1,21755:7868133,15494962:1103667,862301,196608 -k1,21725:6764466,15494962:-1103667 -) -(1,21725:6764466,15494962:1103667,665693,196608 -) -k1,21725:8182984,15494962:314851 -k1,21725:9909202,15494962:327680 -k1,21725:11420740,15494962:314851 -k1,21725:15163123,15494962:314850 -k1,21725:17674085,15494962:314851 -k1,21725:19502162,15494962:314851 -k1,21725:20808573,15494962:314851 -k1,21725:22867337,15494962:314851 -k1,21725:26476682,15494962:314850 -k1,21725:27553061,15494962:314851 -(1,21725:27553061,15494962:0,452978,115847 -r1,21755:31076733,15494962:3523672,568825,115847 -k1,21725:27553061,15494962:-3523672 -) -(1,21725:27553061,15494962:3523672,452978,115847 -k1,21725:27553061,15494962:3277 -h1,21725:31073456,15494962:0,411205,112570 -) -k1,21725:31391584,15494962:314851 -k1,21726:32583029,15494962:0 -) -(1,21726:6764466,16360042:25818563,505283,138281 -(1,21725:6764466,16360042:0,452978,115847 -r1,21755:11694986,16360042:4930520,568825,115847 -k1,21725:6764466,16360042:-4930520 -) -(1,21725:6764466,16360042:4930520,452978,115847 -k1,21725:6764466,16360042:3277 -h1,21725:11691709,16360042:0,411205,112570 -) -k1,21725:12029853,16360042:334867 -k1,21725:13688546,16360042:334866 -k1,21725:15836139,16360042:334867 -k1,21725:18707248,16360042:334866 -k1,21725:19658153,16360042:334867 -k1,21725:21012104,16360042:334866 -k1,21725:22519410,16360042:334867 -k1,21725:25845995,16360042:334866 -k1,21725:28209857,16360042:334867 -k1,21725:29563809,16360042:334867 -$1,21725:29563809,16360042 -$1,21725:30115622,16360042 -k1,21725:31915873,16360042:334866 -k1,21726:32583029,16360042:0 -) -(1,21726:6764466,17225122:25818563,513147,134348 -k1,21725:8358676,17225122:311015 -k1,21725:10182917,17225122:311015 -k1,21725:11685377,17225122:311015 -k1,21725:13015478,17225122:311016 -k1,21725:17039108,17225122:311015 -k1,21725:19687792,17225122:311015 -k1,21725:20354667,17225122:311015 -k1,21725:22538701,17225122:311015 -k1,21725:24362287,17225122:311015 -k1,21725:25356187,17225122:311015 -k1,21725:26023063,17225122:311016 -k1,21725:28216927,17225122:311015 -k1,21725:30136196,17225122:311015 -k1,21725:31106503,17225122:311015 -k1,21725:32583029,17225122:0 -) -(1,21726:6764466,18090202:25818563,513147,134348 -k1,21725:8850326,18090202:263959 -k1,21725:10999755,18090202:263958 -k1,21725:12447950,18090202:263959 -k1,21725:14556091,18090202:263958 -k1,21725:15811610,18090202:263959 -k1,21725:19116440,18090202:263959 -k1,21725:20141926,18090202:263958 -k1,21725:22671465,18090202:263959 -k1,21725:24126869,18090202:263959 -k1,21725:25824755,18090202:263958 -k1,21725:27525919,18090202:263959 -k1,21725:28476039,18090202:263958 -k1,21725:29510701,18090202:263959 -k1,21725:32583029,18090202:0 -) -(1,21726:6764466,18955282:25818563,513147,134348 -k1,21725:7688085,18955282:272191 -(1,21725:7688085,18955282:0,452978,115847 -r1,21755:11563469,18955282:3875384,568825,115847 -k1,21725:7688085,18955282:-3875384 -) -(1,21725:7688085,18955282:3875384,452978,115847 -k1,21725:7688085,18955282:3277 -h1,21725:11560192,18955282:0,411205,112570 -) -k1,21725:11835659,18955282:272190 -k1,21725:14870193,18955282:272191 -k1,21725:17322767,18955282:272191 -k1,21725:19964740,18955282:272191 -k1,21725:22232501,18955282:272190 -k1,21725:23772158,18955282:272191 -k1,21725:26548480,18955282:272191 -k1,21725:28105177,18955282:272191 -k1,21725:28993405,18955282:272190 -k1,21725:31931601,18955282:272191 -k1,21725:32583029,18955282:0 -) -(1,21726:6764466,19820362:25818563,513147,134348 -g1,21725:7982780,19820362 -g1,21725:11553181,19820362 -g1,21725:15623622,19820362 -g1,21725:17823010,19820362 -g1,21725:20202622,19820362 -g1,21725:22597962,19820362 -g1,21725:23901473,19820362 -g1,21725:26438371,19820362 -g1,21725:29864593,19820362 -k1,21726:32583029,19820362:1439829 -g1,21726:32583029,19820362 -) -] -g1,21726:32583029,19954710 -) -h1,21726:6630773,19954710:0,0,0 -(1,21729:6630773,20819790:25952256,513147,115847 -h1,21728:6630773,20819790:983040,0,0 -k1,21728:8780089,20819790:538441 -k1,21728:10687578,20819790:538442 -k1,21728:13128529,20819790:538441 -k1,21728:14851206,20819790:538441 -k1,21728:17233831,20819790:538442 -k1,21728:18763832,20819790:538441 -k1,21728:21652394,20819790:538441 -k1,21728:23584786,20819790:538441 -k1,21728:27149025,20819790:538442 -(1,21728:27149025,20819790:0,452978,115847 -r1,21755:31376121,20819790:4227096,568825,115847 -k1,21728:27149025,20819790:-4227096 -) -(1,21728:27149025,20819790:4227096,452978,115847 -k1,21728:27149025,20819790:3277 -h1,21728:31372844,20819790:0,411205,112570 -) -k1,21728:31914562,20819790:538441 -k1,21729:32583029,20819790:0 -) -(1,21729:6630773,21684870:25952256,513147,115847 -(1,21728:6630773,21684870:0,452978,115847 -r1,21755:12968140,21684870:6337367,568825,115847 -k1,21728:6630773,21684870:-6337367 -) -(1,21728:6630773,21684870:6337367,452978,115847 -k1,21728:6630773,21684870:3277 -h1,21728:12964863,21684870:0,411205,112570 -) -k1,21728:13392919,21684870:251109 -k1,21728:14271863,21684870:251109 -k1,21728:15542057,21684870:251109 -k1,21728:17160247,21684870:251109 -k1,21728:18070648,21684870:251109 -k1,21728:19701945,21684870:251109 -k1,21728:22029235,21684870:251109 -k1,21728:23464580,21684870:251109 -k1,21728:25559872,21684870:251109 -k1,21728:26802541,21684870:251109 -k1,21728:29403771,21684870:251109 -k1,21728:31048831,21684870:251109 -k1,21729:32583029,21684870:0 -) -(1,21729:6630773,22549950:25952256,513147,115847 -k1,21728:8160798,22549950:262559 -(1,21728:8160798,22549950:0,452978,115847 -r1,21755:12387894,22549950:4227096,568825,115847 -k1,21728:8160798,22549950:-4227096 -) -(1,21728:8160798,22549950:4227096,452978,115847 -k1,21728:8160798,22549950:3277 -h1,21728:12384617,22549950:0,411205,112570 -) -k1,21728:12824123,22549950:262559 -k1,21728:13904570,22549950:262558 -k1,21728:16242654,22549950:262559 -k1,21728:17452864,22549950:262559 -k1,21728:21285824,22549950:262559 -k1,21728:23624564,22549950:262559 -k1,21728:25317119,22549950:262559 -k1,21728:26231105,22549950:262558 -k1,21728:28190391,22549950:262559 -k1,21728:31478747,22549950:262559 -k1,21728:32583029,22549950:0 -) -(1,21729:6630773,23415030:25952256,505283,134348 -g1,21728:9035289,23415030 -g1,21728:9920680,23415030 -g1,21728:13192237,23415030 -g1,21728:14042894,23415030 -g1,21728:15261208,23415030 -k1,21729:32583029,23415030:15366882 -g1,21729:32583029,23415030 -) -(1,21732:6630773,25531848:25952256,564462,152109 -(1,21732:6630773,25531848:2899444,534184,12975 -g1,21732:6630773,25531848 -g1,21732:9530217,25531848 -) -g1,21732:12753344,25531848 -g1,21732:15164021,25531848 -g1,21732:16466681,25531848 -$1,21732:16466681,25531848 -$1,21732:17019608,25531848 -g1,21732:17244528,25531848 -g1,21732:18811756,25531848 -$1,21732:18811756,25531848 -$1,21732:19418750,25531848 -k1,21732:32583029,25531848:13164279 -g1,21732:32583029,25531848 -) -(1,21736:6630773,26790144:25952256,513147,126483 -k1,21735:7405278,26790144:146670 -k1,21735:8571032,26790144:146669 -k1,21735:10084783,26790144:146670 -k1,21735:10890744,26790144:146669 -k1,21735:13544821,26790144:146670 -k1,21735:14374375,26790144:146669 -k1,21735:17858138,26790144:146670 -k1,21735:20402769,26790144:146669 -k1,21735:21568524,26790144:146670 -k1,21735:22899429,26790144:146669 -k1,21735:24890282,26790144:146670 -k1,21735:26028511,26790144:146669 -k1,21735:26936709,26790144:146670 -k1,21735:29348958,26790144:146669 -k1,21735:30514713,26790144:146670 -k1,21735:32583029,26790144:0 -) -(1,21736:6630773,27655224:25952256,513147,134348 -k1,21735:7534991,27655224:244926 -k1,21735:8799002,27655224:244926 -k1,21735:10937918,27655224:244926 -k1,21735:13148924,27655224:244926 -k1,21735:17914524,27655224:244926 -k1,21735:19316159,27655224:244925 -k1,21735:23316953,27655224:244926 -k1,21735:24799854,27655224:244926 -k1,21735:25704072,27655224:244926 -k1,21735:28962999,27655224:244926 -k1,21735:30227010,27655224:244926 -k1,21735:32583029,27655224:0 -) -(1,21736:6630773,28520304:25952256,513147,126483 -k1,21735:8046597,28520304:231588 -k1,21735:10122368,28520304:231588 -k1,21735:10885452,28520304:231587 -k1,21735:11768468,28520304:231588 -k1,21735:12934599,28520304:231588 -k1,21735:14805242,28520304:231588 -k1,21735:15722992,28520304:231588 -k1,21735:17848570,28520304:231588 -k1,21735:19924340,28520304:231587 -k1,21735:20771966,28520304:231588 -k1,21735:22022639,28520304:231588 -k1,21735:23643590,28520304:231588 -k1,21735:25925144,28520304:231588 -k1,21735:27537575,28520304:231587 -k1,21735:30753673,28520304:231588 -k1,21735:31516758,28520304:231588 -k1,21735:32583029,28520304:0 -) -(1,21736:6630773,29385384:25952256,513147,126483 -k1,21735:11440941,29385384:255416 -k1,21735:12382518,29385384:255415 -k1,21735:13253972,29385384:255416 -k1,21735:15261165,29385384:255416 -k1,21735:17213962,29385384:255415 -k1,21735:18488463,29385384:255416 -k1,21735:19970058,29385384:255416 -k1,21735:20884765,29385384:255415 -k1,21735:22159266,29385384:255416 -k1,21735:24770701,29385384:255416 -k1,21735:26210352,29385384:255415 -k1,21735:28309951,29385384:255416 -k1,21735:29902301,29385384:255416 -k1,21735:31223987,29385384:255415 -k1,21735:32227169,29385384:255416 -k1,21735:32583029,29385384:0 -) -(1,21736:6630773,30250464:25952256,505283,134348 -k1,21735:8384144,30250464:230970 -k1,21735:9029925,30250464:230938 -k1,21735:10998909,30250464:230969 -k1,21735:13588520,30250464:230970 -k1,21735:15469687,30250464:230970 -k1,21735:18386978,30250464:230970 -k1,21735:19379476,30250464:230970 -k1,21735:20629530,30250464:230969 -k1,21735:22390766,30250464:230970 -k1,21735:23273164,30250464:230970 -k1,21735:25248047,30250464:230970 -k1,21735:27175743,30250464:230969 -k1,21735:29475029,30250464:230970 -k1,21735:31157621,30250464:230970 -k1,21735:32583029,30250464:0 -) -(1,21736:6630773,31115544:25952256,513147,126483 -k1,21735:8195204,31115544:184243 -k1,21735:9371008,31115544:184244 -k1,21735:11242148,31115544:184243 -k1,21735:11896285,31115544:184244 -k1,21735:12612025,31115544:184243 -k1,21735:14131237,31115544:184244 -k1,21735:14966908,31115544:184243 -k1,21735:16243637,31115544:184244 -k1,21735:18552557,31115544:184243 -k1,21735:22083069,31115544:184244 -k1,21735:23952243,31115544:184243 -k1,21735:26204803,31115544:184244 -k1,21735:27336697,31115544:184243 -k1,21735:29414931,31115544:184244 -k1,21735:31391584,31115544:184243 -k1,21735:32583029,31115544:0 -) -(1,21736:6630773,31980624:25952256,505283,134348 -g1,21735:9827618,31980624 -g1,21735:11218292,31980624 -g1,21735:12068949,31980624 -g1,21735:13202721,31980624 -g1,21735:15913945,31980624 -g1,21735:17957357,31980624 -g1,21735:20715112,31980624 -k1,21736:32583029,31980624:9912978 -g1,21736:32583029,31980624 -) -(1,21738:6630773,32845704:25952256,505283,115847 -h1,21737:6630773,32845704:983040,0,0 -k1,21737:9718166,32845704:176939 -(1,21737:9718166,32845704:0,452978,115847 -r1,21755:16055533,32845704:6337367,568825,115847 -k1,21737:9718166,32845704:-6337367 -) -(1,21737:9718166,32845704:6337367,452978,115847 -k1,21737:9718166,32845704:3277 -h1,21737:16052256,32845704:0,411205,112570 -) -k1,21737:16232472,32845704:176939 -k1,21737:17600856,32845704:176939 -(1,21737:17600856,32845704:0,452978,115847 -r1,21755:23938223,32845704:6337367,568825,115847 -k1,21737:17600856,32845704:-6337367 -) -(1,21737:17600856,32845704:6337367,452978,115847 -k1,21737:17600856,32845704:3277 -h1,21737:23934946,32845704:0,411205,112570 -) -k1,21737:24115162,32845704:176939 -k1,21737:25396383,32845704:176939 -k1,21737:26321088,32845704:176939 -k1,21737:28011253,32845704:176939 -k1,21737:28839620,32845704:176939 -k1,21737:31391584,32845704:176939 -k1,21737:32583029,32845704:0 -) -(1,21738:6630773,33710784:25952256,513147,134348 -k1,21737:8749879,33710784:298516 -k1,21737:10067481,33710784:298517 -k1,21737:12259987,33710784:298516 -k1,21737:14350913,33710784:298516 -k1,21737:17109651,33710784:298516 -k1,21737:19852006,33710784:298517 -k1,21737:21169607,33710784:298516 -k1,21737:23031157,33710784:298516 -k1,21737:25112908,33710784:298516 -k1,21737:27146818,33710784:298517 -k1,21737:28648575,33710784:298516 -k1,21737:31931601,33710784:298516 -k1,21737:32583029,33710784:0 -) -(1,21738:6630773,34575864:25952256,513147,126483 -k1,21737:9024989,34575864:314103 -k1,21737:10358177,34575864:314103 -k1,21737:12235313,34575864:314102 -k1,21737:13007513,34575864:314103 -k1,21737:13853113,34575864:314103 -k1,21737:17276244,34575864:314103 -k1,21737:18241775,34575864:314103 -k1,21737:19993082,34575864:314102 -(1,21737:19993082,34575864:0,414482,115847 -r1,21755:24220178,34575864:4227096,530329,115847 -k1,21737:19993082,34575864:-4227096 -) -(1,21737:19993082,34575864:4227096,414482,115847 -g1,21737:22106630,34575864 -g1,21737:22810054,34575864 -h1,21737:24216901,34575864:0,411205,112570 -) -k1,21737:24534281,34575864:314103 -k1,21737:25464422,34575864:314103 -k1,21737:26797610,34575864:314103 -k1,21737:28211407,34575864:314103 -k1,21737:29176937,34575864:314102 -k1,21737:31048831,34575864:314103 -k1,21738:32583029,34575864:0 -) -(1,21738:6630773,35440944:25952256,505283,134348 -k1,21737:8523451,35440944:294910 -k1,21737:9469789,35440944:294910 -k1,21737:11494194,35440944:294910 -k1,21737:14863397,35440944:294909 -k1,21737:17199098,35440944:294910 -k1,21737:20896637,35440944:294910 -k1,21737:23396834,35440944:294910 -k1,21737:24343172,35440944:294910 -(1,21737:24343172,35440944:0,452978,115847 -r1,21755:26459997,35440944:2116825,568825,115847 -k1,21737:24343172,35440944:-2116825 -) -(1,21737:24343172,35440944:2116825,452978,115847 -k1,21737:24343172,35440944:3277 -h1,21737:26456720,35440944:0,411205,112570 -) -k1,21737:26754907,35440944:294910 -k1,21737:28241261,35440944:294909 -(1,21737:28241261,35440944:0,452978,115847 -r1,21755:30358086,35440944:2116825,568825,115847 -k1,21737:28241261,35440944:-2116825 -) -(1,21737:28241261,35440944:2116825,452978,115847 -k1,21737:28241261,35440944:3277 -h1,21737:30354809,35440944:0,411205,112570 -) -k1,21737:30652996,35440944:294910 -k1,21737:31563944,35440944:294910 -k1,21737:32583029,35440944:0 -) -(1,21738:6630773,36306024:25952256,505283,126483 -k1,21737:7904353,36306024:173886 -(1,21737:7904353,36306024:0,452978,115847 -r1,21755:13538296,36306024:5633943,568825,115847 -k1,21737:7904353,36306024:-5633943 -) -(1,21737:7904353,36306024:5633943,452978,115847 -k1,21737:7904353,36306024:3277 -h1,21737:13535019,36306024:0,411205,112570 -) -k1,21737:13712182,36306024:173886 -k1,21737:16818803,36306024:173885 -k1,21737:19385408,36306024:173886 -k1,21737:21021402,36306024:173886 -k1,21737:23263604,36306024:173886 -k1,21737:24088918,36306024:173886 -k1,21737:27521908,36306024:173885 -k1,21737:29180184,36306024:173886 -k1,21737:30420341,36306024:173886 -k1,21737:32583029,36306024:0 -) -(1,21738:6630773,37171104:25952256,513147,134348 -g1,21737:9566785,37171104 -g1,21737:11043311,37171104 -g1,21737:13318065,37171104 -g1,21737:15733722,37171104 -g1,21737:17684073,37171104 -g1,21737:19618695,37171104 -g1,21737:23204825,37171104 -k1,21738:32583029,37171104:7622495 -g1,21738:32583029,37171104 -) -v1,21741:6630773,37855959:0,393216,0 -(1,21749:6630773,40909638:25952256,3446895,196608 -g1,21749:6630773,40909638 -g1,21749:6630773,40909638 -g1,21749:6434165,40909638 -(1,21749:6434165,40909638:0,3446895,196608 -r1,21755:32779637,40909638:26345472,3643503,196608 -k1,21749:6434165,40909638:-26345472 -) -(1,21749:6434165,40909638:26345472,3446895,196608 -[1,21749:6630773,40909638:25952256,3250287,0 -(1,21743:6630773,38083790:25952256,424439,112852 -(1,21742:6630773,38083790:0,0,0 -g1,21742:6630773,38083790 -g1,21742:6630773,38083790 -g1,21742:6303093,38083790 -(1,21742:6303093,38083790:0,0,0 -) -g1,21742:6630773,38083790 -) -k1,21743:6630773,38083790:0 -g1,21743:10614221,38083790 -g1,21743:11278129,38083790 -k1,21743:11278129,38083790:0 -h1,21743:12605945,38083790:0,0,0 -k1,21743:32583029,38083790:19977084 -g1,21743:32583029,38083790 -) -(1,21744:6630773,38768645:25952256,424439,112852 -h1,21744:6630773,38768645:0,0,0 -g1,21744:6962727,38768645 -g1,21744:7294681,38768645 -g1,21744:7626635,38768645 -g1,21744:7958589,38768645 -g1,21744:8290543,38768645 -g1,21744:8622497,38768645 -g1,21744:8954451,38768645 -g1,21744:11610083,38768645 -g1,21744:12273991,38768645 -g1,21744:14265715,38768645 -g1,21744:14929623,38768645 -g1,21744:17253301,38768645 -g1,21744:17917209,38768645 -g1,21744:18581117,38768645 -g1,21744:20572841,38768645 -h1,21744:20904795,38768645:0,0,0 -k1,21744:32583029,38768645:11678234 -g1,21744:32583029,38768645 -) -(1,21745:6630773,39453500:25952256,431045,112852 -h1,21745:6630773,39453500:0,0,0 -g1,21745:6962727,39453500 -g1,21745:7294681,39453500 -g1,21745:13269852,39453500 -g1,21745:13933760,39453500 -g1,21745:16257438,39453500 -g1,21745:17585254,39453500 -g1,21745:18249162,39453500 -g1,21745:20240886,39453500 -g1,21745:22232610,39453500 -g1,21745:22896518,39453500 -g1,21745:24888242,39453500 -h1,21745:25220196,39453500:0,0,0 -k1,21745:32583029,39453500:7362833 -g1,21745:32583029,39453500 -) -(1,21746:6630773,40138355:25952256,424439,106246 -h1,21746:6630773,40138355:0,0,0 -g1,21746:6962727,40138355 -g1,21746:7294681,40138355 -g1,21746:15261576,40138355 -g1,21746:15925484,40138355 -g1,21746:20240885,40138355 -g1,21746:24888240,40138355 -k1,21746:24888240,40138355:0 -h1,21746:28539733,40138355:0,0,0 -k1,21746:32583029,40138355:4043296 -g1,21746:32583029,40138355 -) -(1,21747:6630773,40823210:25952256,424439,86428 -h1,21747:6630773,40823210:0,0,0 -g1,21747:6962727,40823210 -g1,21747:7294681,40823210 -g1,21747:7626635,40823210 -g1,21747:7958589,40823210 -g1,21747:8290543,40823210 -g1,21747:8622497,40823210 -g1,21747:8954451,40823210 -g1,21747:9286405,40823210 -g1,21747:9618359,40823210 -g1,21747:9950313,40823210 -g1,21747:10282267,40823210 -g1,21747:10614221,40823210 -g1,21747:10946175,40823210 -g1,21747:11278129,40823210 -g1,21747:11610083,40823210 -g1,21747:11942037,40823210 -g1,21747:12273991,40823210 -g1,21747:12605945,40823210 -g1,21747:12937899,40823210 -g1,21747:15261577,40823210 -g1,21747:15925485,40823210 -g1,21747:20240886,40823210 -g1,21747:24888241,40823210 -h1,21747:28539734,40823210:0,0,0 -k1,21747:32583029,40823210:4043295 -g1,21747:32583029,40823210 -) -] -) -g1,21749:32583029,40909638 -g1,21749:6630773,40909638 -g1,21749:6630773,40909638 -g1,21749:32583029,40909638 -g1,21749:32583029,40909638 -) -h1,21749:6630773,41106246:0,0,0 -(1,21753:6630773,41971326:25952256,513147,134348 -h1,21752:6630773,41971326:983040,0,0 -k1,21752:8495121,41971326:229880 -k1,21752:9411163,41971326:229880 -k1,21752:11670038,41971326:229880 -k1,21752:15837321,41971326:229880 -k1,21752:16598698,41971326:229880 -k1,21752:18222529,41971326:229880 -k1,21752:19471495,41971326:229881 -k1,21752:21354848,41971326:229880 -k1,21752:23653044,41971326:229880 -k1,21752:24498962,41971326:229880 -k1,21752:26620866,41971326:229880 -k1,21752:28391497,41971326:229880 -k1,21752:31048831,41971326:229880 -k1,21753:32583029,41971326:0 -) -(1,21753:6630773,42836406:25952256,505283,126483 -k1,21752:8104545,42836406:206306 -(1,21752:8104545,42836406:0,452978,115847 -r1,21755:11276505,42836406:3171960,568825,115847 -k1,21752:8104545,42836406:-3171960 -) -(1,21752:8104545,42836406:3171960,452978,115847 -k1,21752:8104545,42836406:3277 -h1,21752:11273228,42836406:0,411205,112570 -) -k1,21752:11482810,42836406:206305 -k1,21752:15021622,42836406:206306 -k1,21752:16247012,42836406:206305 -k1,21752:19701282,42836406:206306 -k1,21752:20535422,42836406:206305 -k1,21752:23581403,42836406:206306 -k1,21752:24806793,42836406:206305 -k1,21752:26509286,42836406:206306 -k1,21752:29489075,42836406:206305 -k1,21753:32583029,42836406:0 -) -(1,21753:6630773,43701486:25952256,513147,134348 -k1,21752:7940357,43701486:290499 -k1,21752:8890148,43701486:290499 -k1,21752:10199732,43701486:290499 -k1,21752:12334415,43701486:290500 -k1,21752:14138140,43701486:290499 -k1,21752:15044677,43701486:290499 -k1,21752:16354261,43701486:290499 -k1,21752:18207794,43701486:290499 -k1,21752:19879137,43701486:290499 -k1,21752:20701133,43701486:290499 -k1,21752:21347492,43701486:290499 -k1,21752:23288189,43701486:290500 -k1,21752:25911770,43701486:290499 -k1,21752:27393714,43701486:290499 -k1,21752:28897284,43701486:290499 -k1,21752:32583029,43701486:0 -) -(1,21753:6630773,44566566:25952256,513147,126483 -k1,21752:10051861,44566566:262908 -k1,21752:11578302,44566566:262907 -k1,21752:14710376,44566566:262908 -k1,21752:16354127,44566566:262907 -k1,21752:18998613,44566566:262908 -k1,21752:19944405,44566566:262907 -k1,21752:21447254,44566566:262908 -k1,21752:22994667,44566566:262907 -k1,21752:25980596,44566566:262908 -k1,21752:27262588,44566566:262907 -k1,21752:29536141,44566566:262908 -k1,21752:30466204,44566566:262907 -(1,21752:30466204,44566566:0,452978,115847 -r1,21755:32583029,44566566:2116825,568825,115847 -k1,21752:30466204,44566566:-2116825 -) -(1,21752:30466204,44566566:2116825,452978,115847 -k1,21752:30466204,44566566:3277 -h1,21752:32579752,44566566:0,411205,112570 -) -k1,21752:32583029,44566566:0 -) -] -(1,21755:32583029,45706769:0,0,0 -g1,21755:32583029,45706769 -) -) -] -(1,21755:6630773,47279633:25952256,0,0 -h1,21755:6630773,47279633:25952256,0,0 -) -] -(1,21755:4262630,4025873:0,0,0 -[1,21755:-473656,4025873:0,0,0 -(1,21755:-473656,-710413:0,0,0 -(1,21755:-473656,-710413:0,0,0 -g1,21755:-473656,-710413 -) -g1,21755:-473656,-710413 +g1,21715:31284971,14357405 +) +) +) +g1,21716:31285337,14357405 +k1,21716:32583029,14357405:1297692 +) +v1,21723:6630773,15222485:0,393216,0 +(1,21724:6630773,19954710:25952256,5125441,0 +g1,21724:6630773,19954710 +g1,21724:6237557,19954710 +r1,21753:6368629,19954710:131072,5125441,0 +g1,21724:6567858,19954710 +g1,21724:6764466,19954710 +[1,21724:6764466,19954710:25818563,5125441,0 +(1,21724:6764466,15494962:25818563,665693,196608 +(1,21723:6764466,15494962:0,665693,196608 +r1,21753:7868133,15494962:1103667,862301,196608 +k1,21723:6764466,15494962:-1103667 +) +(1,21723:6764466,15494962:1103667,665693,196608 +) +k1,21723:8182984,15494962:314851 +k1,21723:9909202,15494962:327680 +k1,21723:11420740,15494962:314851 +k1,21723:15163123,15494962:314850 +k1,21723:17674085,15494962:314851 +k1,21723:19502162,15494962:314851 +k1,21723:20808573,15494962:314851 +k1,21723:22867337,15494962:314851 +k1,21723:26476682,15494962:314850 +k1,21723:27553061,15494962:314851 +(1,21723:27553061,15494962:0,452978,115847 +r1,21753:31076733,15494962:3523672,568825,115847 +k1,21723:27553061,15494962:-3523672 +) +(1,21723:27553061,15494962:3523672,452978,115847 +k1,21723:27553061,15494962:3277 +h1,21723:31073456,15494962:0,411205,112570 +) +k1,21723:31391584,15494962:314851 +k1,21724:32583029,15494962:0 +) +(1,21724:6764466,16360042:25818563,505283,138281 +(1,21723:6764466,16360042:0,452978,115847 +r1,21753:11694986,16360042:4930520,568825,115847 +k1,21723:6764466,16360042:-4930520 +) +(1,21723:6764466,16360042:4930520,452978,115847 +k1,21723:6764466,16360042:3277 +h1,21723:11691709,16360042:0,411205,112570 +) +k1,21723:12029853,16360042:334867 +k1,21723:13688546,16360042:334866 +k1,21723:15836139,16360042:334867 +k1,21723:18707248,16360042:334866 +k1,21723:19658153,16360042:334867 +k1,21723:21012104,16360042:334866 +k1,21723:22519410,16360042:334867 +k1,21723:25845995,16360042:334866 +k1,21723:28209857,16360042:334867 +k1,21723:29563809,16360042:334867 +$1,21723:29563809,16360042 +$1,21723:30115622,16360042 +k1,21723:31915873,16360042:334866 +k1,21724:32583029,16360042:0 +) +(1,21724:6764466,17225122:25818563,513147,134348 +k1,21723:8358676,17225122:311015 +k1,21723:10182917,17225122:311015 +k1,21723:11685377,17225122:311015 +k1,21723:13015478,17225122:311016 +k1,21723:17039108,17225122:311015 +k1,21723:19687792,17225122:311015 +k1,21723:20354667,17225122:311015 +k1,21723:22538701,17225122:311015 +k1,21723:24362287,17225122:311015 +k1,21723:25356187,17225122:311015 +k1,21723:26023063,17225122:311016 +k1,21723:28216927,17225122:311015 +k1,21723:30136196,17225122:311015 +k1,21723:31106503,17225122:311015 +k1,21723:32583029,17225122:0 +) +(1,21724:6764466,18090202:25818563,513147,134348 +k1,21723:8850326,18090202:263959 +k1,21723:10999755,18090202:263958 +k1,21723:12447950,18090202:263959 +k1,21723:14556091,18090202:263958 +k1,21723:15811610,18090202:263959 +k1,21723:19116440,18090202:263959 +k1,21723:20141926,18090202:263958 +k1,21723:22671465,18090202:263959 +k1,21723:24126869,18090202:263959 +k1,21723:25824755,18090202:263958 +k1,21723:27525919,18090202:263959 +k1,21723:28476039,18090202:263958 +k1,21723:29510701,18090202:263959 +k1,21723:32583029,18090202:0 +) +(1,21724:6764466,18955282:25818563,513147,134348 +k1,21723:7688085,18955282:272191 +(1,21723:7688085,18955282:0,452978,115847 +r1,21753:11563469,18955282:3875384,568825,115847 +k1,21723:7688085,18955282:-3875384 +) +(1,21723:7688085,18955282:3875384,452978,115847 +k1,21723:7688085,18955282:3277 +h1,21723:11560192,18955282:0,411205,112570 +) +k1,21723:11835659,18955282:272190 +k1,21723:14870193,18955282:272191 +k1,21723:17322767,18955282:272191 +k1,21723:19964740,18955282:272191 +k1,21723:22232501,18955282:272190 +k1,21723:23772158,18955282:272191 +k1,21723:26548480,18955282:272191 +k1,21723:28105177,18955282:272191 +k1,21723:28993405,18955282:272190 +k1,21723:31931601,18955282:272191 +k1,21723:32583029,18955282:0 +) +(1,21724:6764466,19820362:25818563,513147,134348 +g1,21723:7982780,19820362 +g1,21723:11553181,19820362 +g1,21723:15623622,19820362 +g1,21723:17823010,19820362 +g1,21723:20202622,19820362 +g1,21723:22597962,19820362 +g1,21723:23901473,19820362 +g1,21723:26438371,19820362 +g1,21723:29864593,19820362 +k1,21724:32583029,19820362:1439829 +g1,21724:32583029,19820362 +) +] +g1,21724:32583029,19954710 +) +h1,21724:6630773,19954710:0,0,0 +(1,21727:6630773,20819790:25952256,513147,115847 +h1,21726:6630773,20819790:983040,0,0 +k1,21726:8780089,20819790:538441 +k1,21726:10687578,20819790:538442 +k1,21726:13128529,20819790:538441 +k1,21726:14851206,20819790:538441 +k1,21726:17233831,20819790:538442 +k1,21726:18763832,20819790:538441 +k1,21726:21652394,20819790:538441 +k1,21726:23584786,20819790:538441 +k1,21726:27149025,20819790:538442 +(1,21726:27149025,20819790:0,452978,115847 +r1,21753:31376121,20819790:4227096,568825,115847 +k1,21726:27149025,20819790:-4227096 +) +(1,21726:27149025,20819790:4227096,452978,115847 +k1,21726:27149025,20819790:3277 +h1,21726:31372844,20819790:0,411205,112570 +) +k1,21726:31914562,20819790:538441 +k1,21727:32583029,20819790:0 +) +(1,21727:6630773,21684870:25952256,513147,115847 +(1,21726:6630773,21684870:0,452978,115847 +r1,21753:12968140,21684870:6337367,568825,115847 +k1,21726:6630773,21684870:-6337367 +) +(1,21726:6630773,21684870:6337367,452978,115847 +k1,21726:6630773,21684870:3277 +h1,21726:12964863,21684870:0,411205,112570 +) +k1,21726:13392919,21684870:251109 +k1,21726:14271863,21684870:251109 +k1,21726:15542057,21684870:251109 +k1,21726:17160247,21684870:251109 +k1,21726:18070648,21684870:251109 +k1,21726:19701945,21684870:251109 +k1,21726:22029235,21684870:251109 +k1,21726:23464580,21684870:251109 +k1,21726:25559872,21684870:251109 +k1,21726:26802541,21684870:251109 +k1,21726:29403771,21684870:251109 +k1,21726:31048831,21684870:251109 +k1,21727:32583029,21684870:0 +) +(1,21727:6630773,22549950:25952256,513147,115847 +k1,21726:8160798,22549950:262559 +(1,21726:8160798,22549950:0,452978,115847 +r1,21753:12387894,22549950:4227096,568825,115847 +k1,21726:8160798,22549950:-4227096 +) +(1,21726:8160798,22549950:4227096,452978,115847 +k1,21726:8160798,22549950:3277 +h1,21726:12384617,22549950:0,411205,112570 +) +k1,21726:12824123,22549950:262559 +k1,21726:13904570,22549950:262558 +k1,21726:16242654,22549950:262559 +k1,21726:17452864,22549950:262559 +k1,21726:21285824,22549950:262559 +k1,21726:23624564,22549950:262559 +k1,21726:25317119,22549950:262559 +k1,21726:26231105,22549950:262558 +k1,21726:28190391,22549950:262559 +k1,21726:31478747,22549950:262559 +k1,21726:32583029,22549950:0 +) +(1,21727:6630773,23415030:25952256,505283,134348 +g1,21726:9035289,23415030 +g1,21726:9920680,23415030 +g1,21726:13192237,23415030 +g1,21726:14042894,23415030 +g1,21726:15261208,23415030 +k1,21727:32583029,23415030:15366882 +g1,21727:32583029,23415030 +) +(1,21730:6630773,25531848:25952256,564462,152109 +(1,21730:6630773,25531848:2899444,534184,12975 +g1,21730:6630773,25531848 +g1,21730:9530217,25531848 +) +g1,21730:12753344,25531848 +g1,21730:15164021,25531848 +g1,21730:16466681,25531848 +$1,21730:16466681,25531848 +$1,21730:17019608,25531848 +g1,21730:17244528,25531848 +g1,21730:18811756,25531848 +$1,21730:18811756,25531848 +$1,21730:19418750,25531848 +k1,21730:32583029,25531848:13164279 +g1,21730:32583029,25531848 +) +(1,21734:6630773,26790144:25952256,513147,126483 +k1,21733:7405278,26790144:146670 +k1,21733:8571032,26790144:146669 +k1,21733:10084783,26790144:146670 +k1,21733:10890744,26790144:146669 +k1,21733:13544821,26790144:146670 +k1,21733:14374375,26790144:146669 +k1,21733:17858138,26790144:146670 +k1,21733:20402769,26790144:146669 +k1,21733:21568524,26790144:146670 +k1,21733:22899429,26790144:146669 +k1,21733:24890282,26790144:146670 +k1,21733:26028511,26790144:146669 +k1,21733:26936709,26790144:146670 +k1,21733:29348958,26790144:146669 +k1,21733:30514713,26790144:146670 +k1,21733:32583029,26790144:0 +) +(1,21734:6630773,27655224:25952256,513147,134348 +k1,21733:7534991,27655224:244926 +k1,21733:8799002,27655224:244926 +k1,21733:10937918,27655224:244926 +k1,21733:13148924,27655224:244926 +k1,21733:17914524,27655224:244926 +k1,21733:19316159,27655224:244925 +k1,21733:23316953,27655224:244926 +k1,21733:24799854,27655224:244926 +k1,21733:25704072,27655224:244926 +k1,21733:28962999,27655224:244926 +k1,21733:30227010,27655224:244926 +k1,21733:32583029,27655224:0 +) +(1,21734:6630773,28520304:25952256,513147,126483 +k1,21733:8046597,28520304:231588 +k1,21733:10122368,28520304:231588 +k1,21733:10885452,28520304:231587 +k1,21733:11768468,28520304:231588 +k1,21733:12934599,28520304:231588 +k1,21733:14805242,28520304:231588 +k1,21733:15722992,28520304:231588 +k1,21733:17848570,28520304:231588 +k1,21733:19924340,28520304:231587 +k1,21733:20771966,28520304:231588 +k1,21733:22022639,28520304:231588 +k1,21733:23643590,28520304:231588 +k1,21733:25925144,28520304:231588 +k1,21733:27537575,28520304:231587 +k1,21733:30753673,28520304:231588 +k1,21733:31516758,28520304:231588 +k1,21733:32583029,28520304:0 +) +(1,21734:6630773,29385384:25952256,513147,126483 +k1,21733:11440941,29385384:255416 +k1,21733:12382518,29385384:255415 +k1,21733:13253972,29385384:255416 +k1,21733:15261165,29385384:255416 +k1,21733:17213962,29385384:255415 +k1,21733:18488463,29385384:255416 +k1,21733:19970058,29385384:255416 +k1,21733:20884765,29385384:255415 +k1,21733:22159266,29385384:255416 +k1,21733:24770701,29385384:255416 +k1,21733:26210352,29385384:255415 +k1,21733:28309951,29385384:255416 +k1,21733:29902301,29385384:255416 +k1,21733:31223987,29385384:255415 +k1,21733:32227169,29385384:255416 +k1,21733:32583029,29385384:0 +) +(1,21734:6630773,30250464:25952256,505283,134348 +k1,21733:8384144,30250464:230970 +k1,21733:9029925,30250464:230938 +k1,21733:10998909,30250464:230969 +k1,21733:13588520,30250464:230970 +k1,21733:15469687,30250464:230970 +k1,21733:18386978,30250464:230970 +k1,21733:19379476,30250464:230970 +k1,21733:20629530,30250464:230969 +k1,21733:22390766,30250464:230970 +k1,21733:23273164,30250464:230970 +k1,21733:25248047,30250464:230970 +k1,21733:27175743,30250464:230969 +k1,21733:29475029,30250464:230970 +k1,21733:31157621,30250464:230970 +k1,21733:32583029,30250464:0 +) +(1,21734:6630773,31115544:25952256,513147,126483 +k1,21733:8195204,31115544:184243 +k1,21733:9371008,31115544:184244 +k1,21733:11242148,31115544:184243 +k1,21733:11896285,31115544:184244 +k1,21733:12612025,31115544:184243 +k1,21733:14131237,31115544:184244 +k1,21733:14966908,31115544:184243 +k1,21733:16243637,31115544:184244 +k1,21733:18552557,31115544:184243 +k1,21733:22083069,31115544:184244 +k1,21733:23952243,31115544:184243 +k1,21733:26204803,31115544:184244 +k1,21733:27336697,31115544:184243 +k1,21733:29414931,31115544:184244 +k1,21733:31391584,31115544:184243 +k1,21733:32583029,31115544:0 +) +(1,21734:6630773,31980624:25952256,505283,134348 +g1,21733:9827618,31980624 +g1,21733:11218292,31980624 +g1,21733:12068949,31980624 +g1,21733:13202721,31980624 +g1,21733:15913945,31980624 +g1,21733:17957357,31980624 +g1,21733:20715112,31980624 +k1,21734:32583029,31980624:9912978 +g1,21734:32583029,31980624 +) +(1,21736:6630773,32845704:25952256,505283,115847 +h1,21735:6630773,32845704:983040,0,0 +k1,21735:9718166,32845704:176939 +(1,21735:9718166,32845704:0,452978,115847 +r1,21753:16055533,32845704:6337367,568825,115847 +k1,21735:9718166,32845704:-6337367 +) +(1,21735:9718166,32845704:6337367,452978,115847 +k1,21735:9718166,32845704:3277 +h1,21735:16052256,32845704:0,411205,112570 +) +k1,21735:16232472,32845704:176939 +k1,21735:17600856,32845704:176939 +(1,21735:17600856,32845704:0,452978,115847 +r1,21753:23938223,32845704:6337367,568825,115847 +k1,21735:17600856,32845704:-6337367 +) +(1,21735:17600856,32845704:6337367,452978,115847 +k1,21735:17600856,32845704:3277 +h1,21735:23934946,32845704:0,411205,112570 +) +k1,21735:24115162,32845704:176939 +k1,21735:25396383,32845704:176939 +k1,21735:26321088,32845704:176939 +k1,21735:28011253,32845704:176939 +k1,21735:28839620,32845704:176939 +k1,21735:31391584,32845704:176939 +k1,21735:32583029,32845704:0 +) +(1,21736:6630773,33710784:25952256,513147,134348 +k1,21735:8749879,33710784:298516 +k1,21735:10067481,33710784:298517 +k1,21735:12259987,33710784:298516 +k1,21735:14350913,33710784:298516 +k1,21735:17109651,33710784:298516 +k1,21735:19852006,33710784:298517 +k1,21735:21169607,33710784:298516 +k1,21735:23031157,33710784:298516 +k1,21735:25112908,33710784:298516 +k1,21735:27146818,33710784:298517 +k1,21735:28648575,33710784:298516 +k1,21735:31931601,33710784:298516 +k1,21735:32583029,33710784:0 +) +(1,21736:6630773,34575864:25952256,513147,126483 +k1,21735:9024989,34575864:314103 +k1,21735:10358177,34575864:314103 +k1,21735:12235313,34575864:314102 +k1,21735:13007513,34575864:314103 +k1,21735:13853113,34575864:314103 +k1,21735:17276244,34575864:314103 +k1,21735:18241775,34575864:314103 +k1,21735:19993082,34575864:314102 +(1,21735:19993082,34575864:0,414482,115847 +r1,21753:24220178,34575864:4227096,530329,115847 +k1,21735:19993082,34575864:-4227096 +) +(1,21735:19993082,34575864:4227096,414482,115847 +g1,21735:22106630,34575864 +g1,21735:22810054,34575864 +h1,21735:24216901,34575864:0,411205,112570 +) +k1,21735:24534281,34575864:314103 +k1,21735:25464422,34575864:314103 +k1,21735:26797610,34575864:314103 +k1,21735:28211407,34575864:314103 +k1,21735:29176937,34575864:314102 +k1,21735:31048831,34575864:314103 +k1,21736:32583029,34575864:0 +) +(1,21736:6630773,35440944:25952256,505283,134348 +k1,21735:8523451,35440944:294910 +k1,21735:9469789,35440944:294910 +k1,21735:11494194,35440944:294910 +k1,21735:14863397,35440944:294909 +k1,21735:17199098,35440944:294910 +k1,21735:20896637,35440944:294910 +k1,21735:23396834,35440944:294910 +k1,21735:24343172,35440944:294910 +(1,21735:24343172,35440944:0,452978,115847 +r1,21753:26459997,35440944:2116825,568825,115847 +k1,21735:24343172,35440944:-2116825 +) +(1,21735:24343172,35440944:2116825,452978,115847 +k1,21735:24343172,35440944:3277 +h1,21735:26456720,35440944:0,411205,112570 +) +k1,21735:26754907,35440944:294910 +k1,21735:28241261,35440944:294909 +(1,21735:28241261,35440944:0,452978,115847 +r1,21753:30358086,35440944:2116825,568825,115847 +k1,21735:28241261,35440944:-2116825 +) +(1,21735:28241261,35440944:2116825,452978,115847 +k1,21735:28241261,35440944:3277 +h1,21735:30354809,35440944:0,411205,112570 +) +k1,21735:30652996,35440944:294910 +k1,21735:31563944,35440944:294910 +k1,21735:32583029,35440944:0 +) +(1,21736:6630773,36306024:25952256,505283,126483 +k1,21735:7904353,36306024:173886 +(1,21735:7904353,36306024:0,452978,115847 +r1,21753:13538296,36306024:5633943,568825,115847 +k1,21735:7904353,36306024:-5633943 +) +(1,21735:7904353,36306024:5633943,452978,115847 +k1,21735:7904353,36306024:3277 +h1,21735:13535019,36306024:0,411205,112570 +) +k1,21735:13712182,36306024:173886 +k1,21735:16818803,36306024:173885 +k1,21735:19385408,36306024:173886 +k1,21735:21021402,36306024:173886 +k1,21735:23263604,36306024:173886 +k1,21735:24088918,36306024:173886 +k1,21735:27521908,36306024:173885 +k1,21735:29180184,36306024:173886 +k1,21735:30420341,36306024:173886 +k1,21735:32583029,36306024:0 +) +(1,21736:6630773,37171104:25952256,513147,134348 +g1,21735:9566785,37171104 +g1,21735:11043311,37171104 +g1,21735:13318065,37171104 +g1,21735:15733722,37171104 +g1,21735:17684073,37171104 +g1,21735:19618695,37171104 +g1,21735:23204825,37171104 +k1,21736:32583029,37171104:7622495 +g1,21736:32583029,37171104 +) +v1,21739:6630773,37855959:0,393216,0 +(1,21747:6630773,40909638:25952256,3446895,196608 +g1,21747:6630773,40909638 +g1,21747:6630773,40909638 +g1,21747:6434165,40909638 +(1,21747:6434165,40909638:0,3446895,196608 +r1,21753:32779637,40909638:26345472,3643503,196608 +k1,21747:6434165,40909638:-26345472 +) +(1,21747:6434165,40909638:26345472,3446895,196608 +[1,21747:6630773,40909638:25952256,3250287,0 +(1,21741:6630773,38083790:25952256,424439,112852 +(1,21740:6630773,38083790:0,0,0 +g1,21740:6630773,38083790 +g1,21740:6630773,38083790 +g1,21740:6303093,38083790 +(1,21740:6303093,38083790:0,0,0 +) +g1,21740:6630773,38083790 +) +k1,21741:6630773,38083790:0 +g1,21741:10614221,38083790 +g1,21741:11278129,38083790 +k1,21741:11278129,38083790:0 +h1,21741:12605945,38083790:0,0,0 +k1,21741:32583029,38083790:19977084 +g1,21741:32583029,38083790 +) +(1,21742:6630773,38768645:25952256,424439,112852 +h1,21742:6630773,38768645:0,0,0 +g1,21742:6962727,38768645 +g1,21742:7294681,38768645 +g1,21742:7626635,38768645 +g1,21742:7958589,38768645 +g1,21742:8290543,38768645 +g1,21742:8622497,38768645 +g1,21742:8954451,38768645 +g1,21742:11610083,38768645 +g1,21742:12273991,38768645 +g1,21742:14265715,38768645 +g1,21742:14929623,38768645 +g1,21742:17253301,38768645 +g1,21742:17917209,38768645 +g1,21742:18581117,38768645 +g1,21742:20572841,38768645 +h1,21742:20904795,38768645:0,0,0 +k1,21742:32583029,38768645:11678234 +g1,21742:32583029,38768645 +) +(1,21743:6630773,39453500:25952256,431045,112852 +h1,21743:6630773,39453500:0,0,0 +g1,21743:6962727,39453500 +g1,21743:7294681,39453500 +g1,21743:13269852,39453500 +g1,21743:13933760,39453500 +g1,21743:16257438,39453500 +g1,21743:17585254,39453500 +g1,21743:18249162,39453500 +g1,21743:20240886,39453500 +g1,21743:22232610,39453500 +g1,21743:22896518,39453500 +g1,21743:24888242,39453500 +h1,21743:25220196,39453500:0,0,0 +k1,21743:32583029,39453500:7362833 +g1,21743:32583029,39453500 +) +(1,21744:6630773,40138355:25952256,424439,106246 +h1,21744:6630773,40138355:0,0,0 +g1,21744:6962727,40138355 +g1,21744:7294681,40138355 +g1,21744:15261576,40138355 +g1,21744:15925484,40138355 +g1,21744:20240885,40138355 +g1,21744:24888240,40138355 +k1,21744:24888240,40138355:0 +h1,21744:28539733,40138355:0,0,0 +k1,21744:32583029,40138355:4043296 +g1,21744:32583029,40138355 +) +(1,21745:6630773,40823210:25952256,424439,86428 +h1,21745:6630773,40823210:0,0,0 +g1,21745:6962727,40823210 +g1,21745:7294681,40823210 +g1,21745:7626635,40823210 +g1,21745:7958589,40823210 +g1,21745:8290543,40823210 +g1,21745:8622497,40823210 +g1,21745:8954451,40823210 +g1,21745:9286405,40823210 +g1,21745:9618359,40823210 +g1,21745:9950313,40823210 +g1,21745:10282267,40823210 +g1,21745:10614221,40823210 +g1,21745:10946175,40823210 +g1,21745:11278129,40823210 +g1,21745:11610083,40823210 +g1,21745:11942037,40823210 +g1,21745:12273991,40823210 +g1,21745:12605945,40823210 +g1,21745:12937899,40823210 +g1,21745:15261577,40823210 +g1,21745:15925485,40823210 +g1,21745:20240886,40823210 +g1,21745:24888241,40823210 +h1,21745:28539734,40823210:0,0,0 +k1,21745:32583029,40823210:4043295 +g1,21745:32583029,40823210 +) +] +) +g1,21747:32583029,40909638 +g1,21747:6630773,40909638 +g1,21747:6630773,40909638 +g1,21747:32583029,40909638 +g1,21747:32583029,40909638 +) +h1,21747:6630773,41106246:0,0,0 +(1,21751:6630773,41971326:25952256,513147,134348 +h1,21750:6630773,41971326:983040,0,0 +k1,21750:8495121,41971326:229880 +k1,21750:9411163,41971326:229880 +k1,21750:11670038,41971326:229880 +k1,21750:15837321,41971326:229880 +k1,21750:16598698,41971326:229880 +k1,21750:18222529,41971326:229880 +k1,21750:19471495,41971326:229881 +k1,21750:21354848,41971326:229880 +k1,21750:23653044,41971326:229880 +k1,21750:24498962,41971326:229880 +k1,21750:26620866,41971326:229880 +k1,21750:28391497,41971326:229880 +k1,21750:31048831,41971326:229880 +k1,21751:32583029,41971326:0 +) +(1,21751:6630773,42836406:25952256,505283,126483 +k1,21750:8104545,42836406:206306 +(1,21750:8104545,42836406:0,452978,115847 +r1,21753:11276505,42836406:3171960,568825,115847 +k1,21750:8104545,42836406:-3171960 +) +(1,21750:8104545,42836406:3171960,452978,115847 +k1,21750:8104545,42836406:3277 +h1,21750:11273228,42836406:0,411205,112570 +) +k1,21750:11482810,42836406:206305 +k1,21750:15021622,42836406:206306 +k1,21750:16247012,42836406:206305 +k1,21750:19701282,42836406:206306 +k1,21750:20535422,42836406:206305 +k1,21750:23581403,42836406:206306 +k1,21750:24806793,42836406:206305 +k1,21750:26509286,42836406:206306 +k1,21750:29489075,42836406:206305 +k1,21751:32583029,42836406:0 +) +(1,21751:6630773,43701486:25952256,513147,134348 +k1,21750:7940357,43701486:290499 +k1,21750:8890148,43701486:290499 +k1,21750:10199732,43701486:290499 +k1,21750:12334415,43701486:290500 +k1,21750:14138140,43701486:290499 +k1,21750:15044677,43701486:290499 +k1,21750:16354261,43701486:290499 +k1,21750:18207794,43701486:290499 +k1,21750:19879137,43701486:290499 +k1,21750:20701133,43701486:290499 +k1,21750:21347492,43701486:290499 +k1,21750:23288189,43701486:290500 +k1,21750:25911770,43701486:290499 +k1,21750:27393714,43701486:290499 +k1,21750:28897284,43701486:290499 +k1,21750:32583029,43701486:0 +) +(1,21751:6630773,44566566:25952256,513147,126483 +k1,21750:10051861,44566566:262908 +k1,21750:11578302,44566566:262907 +k1,21750:14710376,44566566:262908 +k1,21750:16354127,44566566:262907 +k1,21750:18998613,44566566:262908 +k1,21750:19944405,44566566:262907 +k1,21750:21447254,44566566:262908 +k1,21750:22994667,44566566:262907 +k1,21750:25980596,44566566:262908 +k1,21750:27262588,44566566:262907 +k1,21750:29536141,44566566:262908 +k1,21750:30466204,44566566:262907 +(1,21750:30466204,44566566:0,452978,115847 +r1,21753:32583029,44566566:2116825,568825,115847 +k1,21750:30466204,44566566:-2116825 +) +(1,21750:30466204,44566566:2116825,452978,115847 +k1,21750:30466204,44566566:3277 +h1,21750:32579752,44566566:0,411205,112570 +) +k1,21750:32583029,44566566:0 +) +] +(1,21753:32583029,45706769:0,0,0 +g1,21753:32583029,45706769 +) +) +] +(1,21753:6630773,47279633:25952256,0,0 +h1,21753:6630773,47279633:25952256,0,0 +) +] +(1,21753:4262630,4025873:0,0,0 +[1,21753:-473656,4025873:0,0,0 +(1,21753:-473656,-710413:0,0,0 +(1,21753:-473656,-710413:0,0,0 +g1,21753:-473656,-710413 +) +g1,21753:-473656,-710413 ) ] ) ] !24658 -}368 -Input:4054:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4055:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4056:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4057:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}369 Input:4058:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4059:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4060:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -376665,961 +376869,961 @@ Input:4084:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4085:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4086:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4087:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4088:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4089:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4090:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4091:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !3140 -{369 -[1,21799:4262630,47279633:28320399,43253760,0 -(1,21799:4262630,4025873:0,0,0 -[1,21799:-473656,4025873:0,0,0 -(1,21799:-473656,-710413:0,0,0 -(1,21799:-473656,-644877:0,0,0 -k1,21799:-473656,-644877:-65536 +{370 +[1,21797:4262630,47279633:28320399,43253760,0 +(1,21797:4262630,4025873:0,0,0 +[1,21797:-473656,4025873:0,0,0 +(1,21797:-473656,-710413:0,0,0 +(1,21797:-473656,-644877:0,0,0 +k1,21797:-473656,-644877:-65536 ) -(1,21799:-473656,4736287:0,0,0 -k1,21799:-473656,4736287:5209943 +(1,21797:-473656,4736287:0,0,0 +k1,21797:-473656,4736287:5209943 ) -g1,21799:-473656,-710413 +g1,21797:-473656,-710413 ) ] ) -[1,21799:6630773,47279633:25952256,43253760,0 -[1,21799:6630773,4812305:25952256,786432,0 -(1,21799:6630773,4812305:25952256,513147,126483 -(1,21799:6630773,4812305:25952256,513147,126483 -g1,21799:3078558,4812305 -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,2439708:0,1703936,0 -k1,21799:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21799:2537886,2439708:1179648,16384,0 +[1,21797:6630773,47279633:25952256,43253760,0 +[1,21797:6630773,4812305:25952256,786432,0 +(1,21797:6630773,4812305:25952256,513147,126483 +(1,21797:6630773,4812305:25952256,513147,126483 +g1,21797:3078558,4812305 +[1,21797:3078558,4812305:0,0,0 +(1,21797:3078558,2439708:0,1703936,0 +k1,21797:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21797:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21799:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21797:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,2439708:0,1703936,0 -g1,21799:29030814,2439708 -g1,21799:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21799:36151628,1915420:16384,1179648,0 +[1,21797:3078558,4812305:0,0,0 +(1,21797:3078558,2439708:0,1703936,0 +g1,21797:29030814,2439708 +g1,21797:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21797:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21799:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21797:37855564,2439708:1179648,16384,0 ) ) -k1,21799:3078556,2439708:-34777008 +k1,21797:3078556,2439708:-34777008 ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,49800853:0,16384,2228224 -k1,21799:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21799:2537886,49800853:1179648,16384,0 +[1,21797:3078558,4812305:0,0,0 +(1,21797:3078558,49800853:0,16384,2228224 +k1,21797:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21797:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21799:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21797:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21799:3078558,4812305:0,0,0 -(1,21799:3078558,49800853:0,16384,2228224 -g1,21799:29030814,49800853 -g1,21799:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21799:36151628,51504789:16384,1179648,0 +[1,21797:3078558,4812305:0,0,0 +(1,21797:3078558,49800853:0,16384,2228224 +g1,21797:29030814,49800853 +g1,21797:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21797:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21799:37855564,49800853:1179648,16384,0 -) -) -k1,21799:3078556,49800853:-34777008 -) -] -g1,21799:6630773,4812305 -k1,21799:21386205,4812305:13560055 -g1,21799:21999622,4812305 -g1,21799:25611966,4812305 -g1,21799:28956923,4812305 -g1,21799:29772190,4812305 -) -) -] -[1,21799:6630773,45706769:25952256,40108032,0 -(1,21799:6630773,45706769:25952256,40108032,0 -(1,21799:6630773,45706769:0,0,0 -g1,21799:6630773,45706769 -) -[1,21799:6630773,45706769:25952256,40108032,0 -(1,21753:6630773,6254097:25952256,513147,134348 -k1,21752:8085484,6254097:187245 -k1,21752:9291813,6254097:187244 -k1,21752:11835077,6254097:187245 -k1,21752:14032967,6254097:187245 -k1,21752:15324494,6254097:187245 -k1,21752:16259504,6254097:187244 -k1,21752:18652036,6254097:187245 -k1,21752:19525443,6254097:187245 -k1,21752:20483390,6254097:187244 -k1,21752:23742963,6254097:187245 -k1,21752:24581636,6254097:187245 -(1,21752:24581636,6254097:0,452978,115847 -r1,21799:26698461,6254097:2116825,568825,115847 -k1,21752:24581636,6254097:-2116825 -) -(1,21752:24581636,6254097:2116825,452978,115847 -k1,21752:24581636,6254097:3277 -h1,21752:26695184,6254097:0,411205,112570 -) -k1,21752:27059376,6254097:187245 -k1,21752:28627464,6254097:187244 -k1,21752:31649796,6254097:187245 -k1,21752:32583029,6254097:0 -) -(1,21753:6630773,7119177:25952256,513147,126483 -g1,21752:11351986,7119177 -g1,21752:12816060,7119177 -g1,21752:14587498,7119177 -g1,21752:16855043,7119177 -g1,21752:18245717,7119177 -g1,21752:20433308,7119177 -g1,21752:21318699,7119177 -g1,21752:22796535,7119177 -g1,21752:23681926,7119177 -g1,21752:24900240,7119177 -g1,21752:26914161,7119177 -g1,21752:27772682,7119177 -g1,21752:28990996,7119177 -k1,21753:32583029,7119177:826414 -g1,21753:32583029,7119177 -) -v1,21755:6630773,7804032:0,393216,0 -(1,21765:6630773,12253845:25952256,4843029,196608 -g1,21765:6630773,12253845 -g1,21765:6630773,12253845 -g1,21765:6434165,12253845 -(1,21765:6434165,12253845:0,4843029,196608 -r1,21799:32779637,12253845:26345472,5039637,196608 -k1,21765:6434165,12253845:-26345472 -) -(1,21765:6434165,12253845:26345472,4843029,196608 -[1,21765:6630773,12253845:25952256,4646421,0 -(1,21757:6630773,8031863:25952256,424439,112852 -(1,21756:6630773,8031863:0,0,0 -g1,21756:6630773,8031863 -g1,21756:6630773,8031863 -g1,21756:6303093,8031863 -(1,21756:6303093,8031863:0,0,0 -) -g1,21756:6630773,8031863 -) -k1,21757:6630773,8031863:0 -g1,21757:10614221,8031863 -g1,21757:11278129,8031863 -k1,21757:11278129,8031863:0 -h1,21757:12605945,8031863:0,0,0 -k1,21757:32583029,8031863:19977084 -g1,21757:32583029,8031863 -) -(1,21758:6630773,8716718:25952256,424439,112852 -h1,21758:6630773,8716718:0,0,0 -g1,21758:6962727,8716718 -g1,21758:7294681,8716718 -g1,21758:7626635,8716718 -g1,21758:7958589,8716718 -g1,21758:8290543,8716718 -g1,21758:8622497,8716718 -g1,21758:8954451,8716718 -g1,21758:11610083,8716718 -g1,21758:12273991,8716718 -g1,21758:14265715,8716718 -g1,21758:14929623,8716718 -g1,21758:17253301,8716718 -g1,21758:17917209,8716718 -g1,21758:18581117,8716718 -g1,21758:20572841,8716718 -h1,21758:20904795,8716718:0,0,0 -k1,21758:32583029,8716718:11678234 -g1,21758:32583029,8716718 -) -(1,21759:6630773,9401573:25952256,431045,112852 -h1,21759:6630773,9401573:0,0,0 -g1,21759:6962727,9401573 -g1,21759:7294681,9401573 -g1,21759:13269852,9401573 -g1,21759:13933760,9401573 -g1,21759:16257438,9401573 -g1,21759:17585254,9401573 -g1,21759:18249162,9401573 -g1,21759:20240886,9401573 -g1,21759:22232610,9401573 -g1,21759:22896518,9401573 -g1,21759:24888242,9401573 -g1,21759:26879966,9401573 -g1,21759:27543874,9401573 -g1,21759:29203644,9401573 -h1,21759:29535598,9401573:0,0,0 -k1,21759:32583029,9401573:3047431 -g1,21759:32583029,9401573 -) -(1,21760:6630773,10086428:25952256,424439,86428 -h1,21760:6630773,10086428:0,0,0 -g1,21760:6962727,10086428 -g1,21760:7294681,10086428 -g1,21760:14597668,10086428 -g1,21760:15261576,10086428 -g1,21760:18249161,10086428 -k1,21760:18249161,10086428:0 -h1,21760:20572839,10086428:0,0,0 -k1,21760:32583029,10086428:12010190 -g1,21760:32583029,10086428 -) -(1,21761:6630773,10771283:25952256,424439,106246 -h1,21761:6630773,10771283:0,0,0 -g1,21761:6962727,10771283 -g1,21761:7294681,10771283 -g1,21761:7626635,10771283 -g1,21761:7958589,10771283 -g1,21761:8290543,10771283 -g1,21761:8622497,10771283 -g1,21761:8954451,10771283 -g1,21761:9286405,10771283 -g1,21761:9618359,10771283 -g1,21761:9950313,10771283 -g1,21761:10282267,10771283 -g1,21761:10614221,10771283 -g1,21761:10946175,10771283 -g1,21761:11278129,10771283 -g1,21761:11610083,10771283 -g1,21761:11942037,10771283 -g1,21761:12273991,10771283 -g1,21761:12605945,10771283 -g1,21761:12937899,10771283 -g1,21761:15261577,10771283 -g1,21761:15925485,10771283 -g1,21761:20240886,10771283 -g1,21761:24888241,10771283 -k1,21761:24888241,10771283:0 -h1,21761:28539734,10771283:0,0,0 -k1,21761:32583029,10771283:4043295 -g1,21761:32583029,10771283 -) -(1,21762:6630773,11456138:25952256,424439,106246 -h1,21762:6630773,11456138:0,0,0 -g1,21762:6962727,11456138 -g1,21762:7294681,11456138 -g1,21762:7626635,11456138 -g1,21762:7958589,11456138 -g1,21762:8290543,11456138 -g1,21762:8622497,11456138 -g1,21762:8954451,11456138 -g1,21762:9286405,11456138 -g1,21762:9618359,11456138 -g1,21762:9950313,11456138 -g1,21762:10282267,11456138 -g1,21762:10614221,11456138 -g1,21762:10946175,11456138 -g1,21762:11278129,11456138 -g1,21762:11610083,11456138 -g1,21762:11942037,11456138 -g1,21762:12273991,11456138 -g1,21762:12605945,11456138 -g1,21762:12937899,11456138 -g1,21762:15261577,11456138 -g1,21762:15925485,11456138 -g1,21762:18913070,11456138 -h1,21762:19245024,11456138:0,0,0 -k1,21762:32583029,11456138:13338005 -g1,21762:32583029,11456138 -) -(1,21763:6630773,12140993:25952256,431045,112852 -h1,21763:6630773,12140993:0,0,0 -g1,21763:6962727,12140993 -g1,21763:7294681,12140993 -g1,21763:15261576,12140993 -g1,21763:15925484,12140993 -g1,21763:18581116,12140993 -g1,21763:19908932,12140993 -g1,21763:23560425,12140993 -g1,21763:26216057,12140993 -g1,21763:28539735,12140993 -g1,21763:29203643,12140993 -g1,21763:30863413,12140993 -h1,21763:32191229,12140993:0,0,0 -k1,21763:32583029,12140993:391800 -g1,21763:32583029,12140993 -) -] -) -g1,21765:32583029,12253845 -g1,21765:6630773,12253845 -g1,21765:6630773,12253845 -g1,21765:32583029,12253845 -g1,21765:32583029,12253845 -) -h1,21765:6630773,12450453:0,0,0 -(1,21768:6630773,22150567:25952256,9634578,0 -k1,21768:13183781,22150567:6553008 -h1,21767:13183781,22150567:0,0,0 -(1,21767:13183781,22150567:12846240,9634578,0 -(1,21767:13183781,22150567:12846136,9634602,0 -(1,21767:13183781,22150567:12846136,9634602,0 -(1,21767:13183781,22150567:0,9634602,0 -(1,21767:13183781,22150567:0,14208860,0 -(1,21767:13183781,22150567:18945146,14208860,0 -) -k1,21767:13183781,22150567:-18945146 -) -) -g1,21767:26029917,22150567 -) -) -) -g1,21768:26030021,22150567 -k1,21768:32583029,22150567:6553008 -) -(1,21775:6630773,23015647:25952256,513147,126483 -h1,21774:6630773,23015647:983040,0,0 -k1,21774:8971022,23015647:160522 -k1,21774:10870870,23015647:160522 -k1,21774:11690684,23015647:160522 -k1,21774:12870291,23015647:160522 -k1,21774:15744005,23015647:160523 -k1,21774:16520565,23015647:160522 -k1,21774:17700172,23015647:160522 -k1,21774:19137991,23015647:160522 -k1,21774:21613900,23015647:160522 -k1,21774:22793507,23015647:160522 -k1,21774:24693355,23015647:160522 -k1,21774:25513169,23015647:160522 -k1,21774:26692777,23015647:160523 -k1,21774:28645709,23015647:160522 -k1,21774:29422269,23015647:160522 -k1,21774:30601876,23015647:160522 -k1,21774:32583029,23015647:0 -) -(1,21775:6630773,23880727:25952256,513147,134348 -k1,21774:8207210,23880727:159549 -k1,21774:11250342,23880727:159548 -k1,21774:12613132,23880727:159549 -k1,21774:15502256,23880727:159549 -k1,21774:16277843,23880727:159549 -k1,21774:18331381,23880727:159548 -(1,21774:18331381,23880727:0,459977,122846 -r1,21799:21503341,23880727:3171960,582823,122846 -k1,21774:18331381,23880727:-3171960 -) -(1,21774:18331381,23880727:3171960,459977,122846 -k1,21774:18331381,23880727:3277 -h1,21774:21500064,23880727:0,411205,112570 -) -k1,21774:21662890,23880727:159549 -k1,21774:23922868,23880727:159549 -k1,21774:25463261,23880727:159549 -k1,21774:28607319,23880727:159548 -k1,21774:30812902,23880727:159549 -k1,21774:32583029,23880727:0 -) -(1,21775:6630773,24745807:25952256,505283,134348 -k1,21774:8471082,24745807:168485 -k1,21774:9658652,24745807:168485 -k1,21774:11110332,24745807:168485 -k1,21774:14008392,24745807:168485 -k1,21774:16037444,24745807:168485 -k1,21774:16857357,24745807:168485 -k1,21774:17773608,24745807:168485 -k1,21774:21150736,24745807:168485 -k1,21774:23173890,24745807:168485 -k1,21774:24151745,24745807:168485 -k1,21774:26330875,24745807:168485 -k1,21774:27115398,24745807:168485 -(1,21774:27115398,24745807:0,452978,115847 -r1,21799:28528799,24745807:1413401,568825,115847 -k1,21774:27115398,24745807:-1413401 -) -(1,21774:27115398,24745807:1413401,452978,115847 -k1,21774:27115398,24745807:3277 -h1,21774:28525522,24745807:0,411205,112570 -) -k1,21774:28870954,24745807:168485 -k1,21774:30111608,24745807:168485 -k1,21774:31384375,24745807:168485 -k1,21774:32583029,24745807:0 -) -(1,21775:6630773,25610887:25952256,505283,134348 -k1,21774:7665536,25610887:286997 -k1,21774:10324281,25610887:286997 -k1,21774:11227316,25610887:286997 -k1,21774:12533399,25610887:286998 -k1,21774:15344843,25610887:286997 -k1,21774:17301697,25610887:286997 -k1,21774:19629485,25610887:286997 -k1,21774:20935567,25610887:286997 -k1,21774:23511081,25610887:286997 -k1,21774:24989524,25610887:286998 -k1,21774:27956944,25610887:286997 -k1,21774:29637892,25610887:286997 -k1,21774:31563944,25610887:286997 -k1,21774:32583029,25610887:0 -) -(1,21775:6630773,26475967:25952256,513147,126483 -k1,21774:9780170,26475967:262536 -k1,21774:11034266,26475967:262536 -k1,21774:13804209,26475967:262536 -k1,21774:15921414,26475967:262536 -k1,21774:16993320,26475967:262536 -k1,21774:18274941,26475967:262536 -(1,21774:18274941,26475967:0,452978,115847 -r1,21799:20391766,26475967:2116825,568825,115847 -k1,21774:18274941,26475967:-2116825 -) -(1,21774:18274941,26475967:2116825,452978,115847 -k1,21774:18274941,26475967:3277 -h1,21774:20388489,26475967:0,411205,112570 -) -k1,21774:20654302,26475967:262536 -k1,21774:21576130,26475967:262536 -k1,21774:24350006,26475967:262536 -(1,21774:24350006,26475967:0,452978,115847 -r1,21799:25411695,26475967:1061689,568825,115847 -k1,21774:24350006,26475967:-1061689 -) -(1,21774:24350006,26475967:1061689,452978,115847 -k1,21774:24350006,26475967:3277 -h1,21774:25408418,26475967:0,411205,112570 -) -k1,21774:25674231,26475967:262536 -k1,21774:26698295,26475967:262536 -k1,21774:29029147,26475967:262536 -k1,21774:29950975,26475967:262536 -k1,21774:30569371,26475967:262536 -k1,21774:31931601,26475967:262536 -k1,21775:32583029,26475967:0 -) -(1,21775:6630773,27341047:25952256,505283,115847 -(1,21774:6630773,27341047:0,452978,115847 -r1,21799:9802733,27341047:3171960,568825,115847 -k1,21774:6630773,27341047:-3171960 -) -(1,21774:6630773,27341047:3171960,452978,115847 -k1,21774:6630773,27341047:3277 -h1,21774:9799456,27341047:0,411205,112570 -) -g1,21774:10001962,27341047 -g1,21774:12211180,27341047 -g1,21774:13429494,27341047 -g1,21774:14728417,27341047 -g1,21774:15579074,27341047 -(1,21774:15579074,27341047:0,452978,115847 -r1,21799:17344187,27341047:1765113,568825,115847 -k1,21774:15579074,27341047:-1765113 -) -(1,21774:15579074,27341047:1765113,452978,115847 -k1,21774:15579074,27341047:3277 -h1,21774:17340910,27341047:0,411205,112570 -) -k1,21775:32583029,27341047:15186414 -g1,21775:32583029,27341047 -) -v1,21777:6630773,28025902:0,393216,0 -(1,21784:6630773,30421150:25952256,2788464,196608 -g1,21784:6630773,30421150 -g1,21784:6630773,30421150 -g1,21784:6434165,30421150 -(1,21784:6434165,30421150:0,2788464,196608 -r1,21799:32779637,30421150:26345472,2985072,196608 -k1,21784:6434165,30421150:-26345472 -) -(1,21784:6434165,30421150:26345472,2788464,196608 -[1,21784:6630773,30421150:25952256,2591856,0 -(1,21779:6630773,28253733:25952256,424439,112852 -(1,21778:6630773,28253733:0,0,0 -g1,21778:6630773,28253733 -g1,21778:6630773,28253733 -g1,21778:6303093,28253733 -(1,21778:6303093,28253733:0,0,0 -) -g1,21778:6630773,28253733 -) -k1,21779:6630773,28253733:0 -g1,21779:10614221,28253733 -g1,21779:11278129,28253733 -k1,21779:11278129,28253733:0 -h1,21779:12605945,28253733:0,0,0 -k1,21779:32583029,28253733:19977084 -g1,21779:32583029,28253733 -) -(1,21780:6630773,28938588:25952256,431045,112852 -h1,21780:6630773,28938588:0,0,0 -g1,21780:6962727,28938588 -g1,21780:7294681,28938588 -g1,21780:7626635,28938588 -g1,21780:7958589,28938588 -g1,21780:8290543,28938588 -g1,21780:8622497,28938588 -g1,21780:8954451,28938588 -g1,21780:11610083,28938588 -g1,21780:12273991,28938588 -g1,21780:14265715,28938588 -g1,21780:14929623,28938588 -g1,21780:18249163,28938588 -g1,21780:18913071,28938588 -g1,21780:23892381,28938588 -g1,21780:24556289,28938588 -g1,21780:25220197,28938588 -g1,21780:26879967,28938588 -g1,21780:28207783,28938588 -g1,21780:28871691,28938588 -k1,21780:28871691,28938588:0 -h1,21780:30863415,28938588:0,0,0 -k1,21780:32583029,28938588:1719614 -g1,21780:32583029,28938588 -) -(1,21781:6630773,29623443:25952256,424439,106246 -h1,21781:6630773,29623443:0,0,0 -g1,21781:6962727,29623443 -g1,21781:7294681,29623443 -g1,21781:7626635,29623443 -g1,21781:7958589,29623443 -g1,21781:8290543,29623443 -g1,21781:8622497,29623443 -g1,21781:8954451,29623443 -g1,21781:9286405,29623443 -g1,21781:9618359,29623443 -g1,21781:9950313,29623443 -g1,21781:10282267,29623443 -g1,21781:10614221,29623443 -g1,21781:10946175,29623443 -g1,21781:11278129,29623443 -g1,21781:11610083,29623443 -g1,21781:11942037,29623443 -g1,21781:12273991,29623443 -g1,21781:12605945,29623443 -g1,21781:12937899,29623443 -g1,21781:13269853,29623443 -g1,21781:13601807,29623443 -g1,21781:14265715,29623443 -g1,21781:14929623,29623443 -g1,21781:16921347,29623443 -h1,21781:17253301,29623443:0,0,0 -k1,21781:32583029,29623443:15329728 -g1,21781:32583029,29623443 -) -(1,21782:6630773,30308298:25952256,431045,112852 -h1,21782:6630773,30308298:0,0,0 -g1,21782:6962727,30308298 -g1,21782:7294681,30308298 -g1,21782:13269852,30308298 -g1,21782:13933760,30308298 -g1,21782:16257438,30308298 -g1,21782:17585254,30308298 -g1,21782:18249162,30308298 -h1,21782:19908932,30308298:0,0,0 -k1,21782:32583029,30308298:12674097 -g1,21782:32583029,30308298 -) -] -) -g1,21784:32583029,30421150 -g1,21784:6630773,30421150 -g1,21784:6630773,30421150 -g1,21784:32583029,30421150 -g1,21784:32583029,30421150 -) -h1,21784:6630773,30617758:0,0,0 -(1,21789:6630773,32734576:25952256,555811,12975 -(1,21789:6630773,32734576:2899444,534184,12975 -g1,21789:6630773,32734576 -g1,21789:9530217,32734576 -) -g1,21789:11216393,32734576 -g1,21789:12783621,32734576 -g1,21789:14353733,32734576 -k1,21789:32583029,32734576:16138698 -g1,21789:32583029,32734576 -) -v1,21793:6630773,33992872:0,393216,0 -(1,21794:6630773,36957152:25952256,3357496,0 -g1,21794:6630773,36957152 -g1,21794:6237557,36957152 -r1,21799:6368629,36957152:131072,3357496,0 -g1,21794:6567858,36957152 -g1,21794:6764466,36957152 -[1,21794:6764466,36957152:25818563,3357496,0 -(1,21794:6764466,34354049:25818563,754393,260573 -(1,21793:6764466,34354049:0,754393,260573 -r1,21799:7856192,34354049:1091726,1014966,260573 -k1,21793:6764466,34354049:-1091726 -) -(1,21793:6764466,34354049:1091726,754393,260573 -) -k1,21793:8037024,34354049:180832 -k1,21793:8364704,34354049:327680 -k1,21793:9742223,34354049:180832 -(1,21793:9742223,34354049:0,452978,115847 -r1,21799:12914183,34354049:3171960,568825,115847 -k1,21793:9742223,34354049:-3171960 -) -(1,21793:9742223,34354049:3171960,452978,115847 -k1,21793:9742223,34354049:3277 -h1,21793:12910906,34354049:0,411205,112570 -) -k1,21793:13095015,34354049:180832 -k1,21793:16120110,34354049:180832 -k1,21793:17508115,34354049:180832 -k1,21793:19654372,34354049:180832 -k1,21793:20486632,34354049:180832 -k1,21793:23247616,34354049:180832 -k1,21793:26256981,34354049:180832 -k1,21793:27053851,34354049:180832 -k1,21793:29568420,34354049:180832 -k1,21793:31465640,34354049:180832 -k1,21794:32583029,34354049:0 -) -(1,21794:6764466,35219129:25818563,513147,126483 -k1,21793:9387580,35219129:202870 -k1,21793:12434712,35219129:202869 -(1,21793:12434712,35219129:0,452978,115847 -r1,21799:13848113,35219129:1413401,568825,115847 -k1,21793:12434712,35219129:-1413401 -) -(1,21793:12434712,35219129:1413401,452978,115847 -k1,21793:12434712,35219129:3277 -h1,21793:13844836,35219129:0,411205,112570 -) -k1,21793:14050983,35219129:202870 -k1,21793:17343876,35219129:202870 -k1,21793:18565831,35219129:202870 -k1,21793:20583392,35219129:202869 -k1,21793:21445554,35219129:202870 -k1,21793:23147232,35219129:202870 -k1,21793:24036264,35219129:202870 -k1,21793:25517740,35219129:202869 -k1,21793:26406772,35219129:202870 -k1,21793:27628727,35219129:202870 -k1,21793:29100374,35219129:202870 -k1,21793:29962535,35219129:202869 -k1,21793:31391584,35219129:202870 -k1,21793:32583029,35219129:0 -) -(1,21794:6764466,36084209:25818563,505283,134348 -k1,21793:8981952,36084209:198977 -k1,21793:9863815,36084209:198978 -k1,21793:12435851,36084209:198977 -k1,21793:14501949,36084209:198977 -k1,21793:14913918,36084209:198977 -k1,21793:17782176,36084209:198977 -k1,21793:19000238,36084209:198977 -k1,21793:21101726,36084209:198978 -k1,21793:24417595,36084209:198977 -k1,21793:25268000,36084209:198977 -k1,21793:27800714,36084209:198977 -k1,21793:29542410,36084209:198978 -k1,21793:30932832,36084209:198977 -k1,21793:32583029,36084209:0 -) -(1,21794:6764466,36949289:25818563,426639,7863 -k1,21794:32583029,36949289:23777772 -g1,21794:32583029,36949289 -) -] -g1,21794:32583029,36957152 -) -h1,21794:6630773,36957152:0,0,0 -(1,21797:6630773,37822232:25952256,505283,115847 -k1,21796:8179278,37822232:506483 -k1,21796:9704847,37822232:506484 -(1,21796:9704847,37822232:0,452978,115847 -r1,21799:11118248,37822232:1413401,568825,115847 -k1,21796:9704847,37822232:-1413401 -) -(1,21796:9704847,37822232:1413401,452978,115847 -k1,21796:9704847,37822232:3277 -h1,21796:11114971,37822232:0,411205,112570 -) -k1,21796:11624731,37822232:506483 -k1,21796:15058051,37822232:506483 -k1,21796:17796036,37822232:506484 -k1,21796:20205029,37822232:506483 -k1,21796:21703072,37822232:506483 -k1,21796:25167196,37822232:506484 -k1,21796:28373107,37822232:506483 -k1,21796:31333913,37822232:506483 -k1,21797:32583029,37822232:0 -) -(1,21797:6630773,38687312:25952256,505283,126483 -k1,21796:9606370,38687312:548143 -k1,21796:11345958,38687312:548143 -k1,21796:14267159,38687312:548142 -k1,21796:16373093,38687312:548143 -k1,21796:17912796,38687312:548143 -k1,21796:20662949,38687312:548143 -k1,21796:21862520,38687312:548143 -k1,21796:24154576,38687312:548143 -k1,21796:27037110,38687312:548142 -k1,21796:30675276,38687312:548143 -k1,21796:32583029,38687312:0 -) -(1,21797:6630773,39552392:25952256,505283,126483 -k1,21796:10689899,39552392:446126 -(1,21796:10689899,39552392:0,452978,122846 -r1,21799:14916995,39552392:4227096,575824,122846 -k1,21796:10689899,39552392:-4227096 -) -(1,21796:10689899,39552392:4227096,452978,122846 -k1,21796:10689899,39552392:3277 -h1,21796:14913718,39552392:0,411205,112570 -) -k1,21796:15536792,39552392:446127 -(1,21796:15536792,39552392:0,452978,122846 -r1,21799:19412176,39552392:3875384,575824,122846 -k1,21796:15536792,39552392:-3875384 -) -(1,21796:15536792,39552392:3875384,452978,122846 -k1,21796:15536792,39552392:3277 -h1,21796:19408899,39552392:0,411205,112570 -) -k1,21796:19858303,39552392:446127 -k1,21796:21495874,39552392:446126 -(1,21796:21495874,39552392:0,452978,122846 -r1,21799:25722970,39552392:4227096,575824,122846 -k1,21796:21495874,39552392:-4227096 -) -(1,21796:21495874,39552392:4227096,452978,122846 -k1,21796:21495874,39552392:3277 -h1,21796:25719693,39552392:0,411205,112570 -) -k1,21796:26169097,39552392:446127 -k1,21796:28118619,39552392:446126 -k1,21796:29583831,39552392:446127 -(1,21796:29583831,39552392:0,452978,115847 -r1,21799:30997232,39552392:1413401,568825,115847 -k1,21796:29583831,39552392:-1413401 -) -(1,21796:29583831,39552392:1413401,452978,115847 -k1,21796:29583831,39552392:3277 -h1,21796:30993955,39552392:0,411205,112570 -) -k1,21796:31443358,39552392:446126 -k1,21797:32583029,39552392:0 -) -(1,21797:6630773,40417472:25952256,505283,126483 -k1,21796:8894982,40417472:453449 -k1,21796:10034594,40417472:453450 -k1,21796:13500733,40417472:453449 -k1,21796:15247864,40417472:453450 -k1,21796:17603823,40417472:453449 -k1,21796:19161555,40417472:453450 -k1,21796:20362770,40417472:453449 -k1,21796:22329446,40417472:453450 -k1,21796:24176846,40417472:453449 -k1,21796:28200697,40417472:453450 -k1,21796:31274275,40417472:453449 -k1,21797:32583029,40417472:0 -) -(1,21797:6630773,41282552:25952256,513147,126483 -k1,21796:8865660,41282552:422161 -k1,21796:10668665,41282552:422161 -k1,21796:12282271,41282552:422161 -k1,21796:14633812,41282552:422161 -k1,21796:16247418,41282552:422161 -k1,21796:18063530,41282552:422161 -k1,21796:21011449,41282552:422161 -k1,21796:24448920,41282552:422160 -k1,21796:27886392,41282552:422161 -k1,21796:28967845,41282552:422161 -k1,21796:30409091,41282552:422161 -k1,21796:31923737,41282552:422161 -k1,21797:32583029,41282552:0 -) -(1,21797:6630773,42147632:25952256,505283,134348 -(1,21796:6630773,42147632:0,452978,115847 -r1,21799:10857869,42147632:4227096,568825,115847 -k1,21796:6630773,42147632:-4227096 -) -(1,21796:6630773,42147632:4227096,452978,115847 -k1,21796:6630773,42147632:3277 -h1,21796:10854592,42147632:0,411205,112570 -) -k1,21796:11006789,42147632:148920 -k1,21796:12347155,42147632:148921 -(1,21796:12347155,42147632:0,452978,115847 -r1,21799:18332810,42147632:5985655,568825,115847 -k1,21796:12347155,42147632:-5985655 -) -(1,21796:12347155,42147632:5985655,452978,115847 -k1,21796:12347155,42147632:3277 -h1,21796:18329533,42147632:0,411205,112570 -) -k1,21796:18481730,42147632:148920 -k1,21796:20134701,42147632:148920 -k1,21796:21978382,42147632:148920 -k1,21796:22743341,42147632:148921 -k1,21796:25170948,42147632:148920 -h1,21796:26713666,42147632:0,0,0 -k1,21796:26862586,42147632:148920 -k1,21796:27820876,42147632:148920 -k1,21796:29467950,42147632:148921 -h1,21796:30663327,42147632:0,0,0 -k1,21796:30985917,42147632:148920 -k1,21797:32583029,42147632:0 -) -(1,21797:6630773,43012712:25952256,505283,126483 -(1,21796:6630773,43012712:0,452978,115847 -r1,21799:13319851,43012712:6689078,568825,115847 -k1,21796:6630773,43012712:-6689078 -) -(1,21796:6630773,43012712:6689078,452978,115847 -k1,21796:6630773,43012712:3277 -h1,21796:13316574,43012712:0,411205,112570 -) -k1,21796:13492335,43012712:172484 -k1,21796:14196316,43012712:172484 -k1,21796:16214949,43012712:172484 -k1,21796:17900659,43012712:172484 -k1,21796:18759305,43012712:172484 -k1,21796:19389886,43012712:172484 -k1,21796:21055280,43012712:172484 -k1,21796:22294035,43012712:172484 -k1,21796:24447672,43012712:172484 -k1,21796:26840516,43012712:172484 -k1,21796:28877499,43012712:172484 -k1,21796:30318760,43012712:172484 -k1,21797:32583029,43012712:0 -) -(1,21797:6630773,43877792:25952256,473825,7863 -k1,21797:32583028,43877792:24632360 -g1,21797:32583028,43877792 -) -(1,21799:6630773,44742872:25952256,513147,115847 -h1,21798:6630773,44742872:983040,0,0 -k1,21798:8450021,44742872:348620 -k1,21798:11000800,44742872:348769 -k1,21798:12284113,44742872:348770 -k1,21798:13292175,44742872:348770 -k1,21798:15543454,44742872:348769 -k1,21798:16423721,44742872:348770 -k1,21798:19556459,44742872:348769 -k1,21798:20852880,44742872:348770 -(1,21798:20852880,44742872:0,452978,115847 -r1,21799:24024840,44742872:3171960,568825,115847 -k1,21798:20852880,44742872:-3171960 -) -(1,21798:20852880,44742872:3171960,452978,115847 -k1,21798:20852880,44742872:3277 -h1,21798:24021563,44742872:0,411205,112570 -) -k1,21798:24373610,44742872:348770 -k1,21798:25408541,44742872:348769 -k1,21798:27412095,44742872:348770 -k1,21798:28292362,44742872:348770 -k1,21798:29588782,44742872:348769 -(1,21798:29588782,44742872:0,452978,115847 -r1,21799:31002183,44742872:1413401,568825,115847 -k1,21798:29588782,44742872:-1413401 -) -(1,21798:29588782,44742872:1413401,452978,115847 -k1,21798:29588782,44742872:3277 -h1,21798:30998906,44742872:0,411205,112570 -) -k1,21798:31524623,44742872:348770 -k1,21799:32583029,44742872:0 -) -(1,21799:6630773,45607952:25952256,505283,122846 -k1,21798:8755038,45607952:377075 -k1,21798:11586436,45607952:377075 -k1,21798:15533912,45607952:377075 -k1,21798:17102433,45607952:377076 -k1,21798:19852567,45607952:377075 -k1,21798:23842642,45607952:377075 -(1,21798:23842642,45607952:0,452978,122846 -r1,21799:27718026,45607952:3875384,575824,122846 -k1,21798:23842642,45607952:-3875384 -) -(1,21798:23842642,45607952:3875384,452978,122846 -k1,21798:23842642,45607952:3277 -h1,21798:27714749,45607952:0,411205,112570 -) -k1,21798:28268771,45607952:377075 -(1,21798:28268771,45607952:0,452978,122846 -r1,21799:32495867,45607952:4227096,575824,122846 -k1,21798:28268771,45607952:-4227096 -) -(1,21798:28268771,45607952:4227096,452978,122846 -k1,21798:28268771,45607952:3277 -h1,21798:32492590,45607952:0,411205,112570 -) -k1,21799:32583029,45607952:0 -) -] -(1,21799:32583029,45706769:0,0,0 -g1,21799:32583029,45706769 -) -) -] -(1,21799:6630773,47279633:25952256,0,0 -h1,21799:6630773,47279633:25952256,0,0 -) -] -(1,21799:4262630,4025873:0,0,0 -[1,21799:-473656,4025873:0,0,0 -(1,21799:-473656,-710413:0,0,0 -(1,21799:-473656,-710413:0,0,0 -g1,21799:-473656,-710413 -) -g1,21799:-473656,-710413 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21797:37855564,49800853:1179648,16384,0 +) +) +k1,21797:3078556,49800853:-34777008 +) +] +g1,21797:6630773,4812305 +k1,21797:21386205,4812305:13560055 +g1,21797:21999622,4812305 +g1,21797:25611966,4812305 +g1,21797:28956923,4812305 +g1,21797:29772190,4812305 +) +) +] +[1,21797:6630773,45706769:25952256,40108032,0 +(1,21797:6630773,45706769:25952256,40108032,0 +(1,21797:6630773,45706769:0,0,0 +g1,21797:6630773,45706769 +) +[1,21797:6630773,45706769:25952256,40108032,0 +(1,21751:6630773,6254097:25952256,513147,134348 +k1,21750:8085484,6254097:187245 +k1,21750:9291813,6254097:187244 +k1,21750:11835077,6254097:187245 +k1,21750:14032967,6254097:187245 +k1,21750:15324494,6254097:187245 +k1,21750:16259504,6254097:187244 +k1,21750:18652036,6254097:187245 +k1,21750:19525443,6254097:187245 +k1,21750:20483390,6254097:187244 +k1,21750:23742963,6254097:187245 +k1,21750:24581636,6254097:187245 +(1,21750:24581636,6254097:0,452978,115847 +r1,21797:26698461,6254097:2116825,568825,115847 +k1,21750:24581636,6254097:-2116825 +) +(1,21750:24581636,6254097:2116825,452978,115847 +k1,21750:24581636,6254097:3277 +h1,21750:26695184,6254097:0,411205,112570 +) +k1,21750:27059376,6254097:187245 +k1,21750:28627464,6254097:187244 +k1,21750:31649796,6254097:187245 +k1,21750:32583029,6254097:0 +) +(1,21751:6630773,7119177:25952256,513147,126483 +g1,21750:11351986,7119177 +g1,21750:12816060,7119177 +g1,21750:14587498,7119177 +g1,21750:16855043,7119177 +g1,21750:18245717,7119177 +g1,21750:20433308,7119177 +g1,21750:21318699,7119177 +g1,21750:22796535,7119177 +g1,21750:23681926,7119177 +g1,21750:24900240,7119177 +g1,21750:26914161,7119177 +g1,21750:27772682,7119177 +g1,21750:28990996,7119177 +k1,21751:32583029,7119177:826414 +g1,21751:32583029,7119177 +) +v1,21753:6630773,7804032:0,393216,0 +(1,21763:6630773,12253845:25952256,4843029,196608 +g1,21763:6630773,12253845 +g1,21763:6630773,12253845 +g1,21763:6434165,12253845 +(1,21763:6434165,12253845:0,4843029,196608 +r1,21797:32779637,12253845:26345472,5039637,196608 +k1,21763:6434165,12253845:-26345472 +) +(1,21763:6434165,12253845:26345472,4843029,196608 +[1,21763:6630773,12253845:25952256,4646421,0 +(1,21755:6630773,8031863:25952256,424439,112852 +(1,21754:6630773,8031863:0,0,0 +g1,21754:6630773,8031863 +g1,21754:6630773,8031863 +g1,21754:6303093,8031863 +(1,21754:6303093,8031863:0,0,0 +) +g1,21754:6630773,8031863 +) +k1,21755:6630773,8031863:0 +g1,21755:10614221,8031863 +g1,21755:11278129,8031863 +k1,21755:11278129,8031863:0 +h1,21755:12605945,8031863:0,0,0 +k1,21755:32583029,8031863:19977084 +g1,21755:32583029,8031863 +) +(1,21756:6630773,8716718:25952256,424439,112852 +h1,21756:6630773,8716718:0,0,0 +g1,21756:6962727,8716718 +g1,21756:7294681,8716718 +g1,21756:7626635,8716718 +g1,21756:7958589,8716718 +g1,21756:8290543,8716718 +g1,21756:8622497,8716718 +g1,21756:8954451,8716718 +g1,21756:11610083,8716718 +g1,21756:12273991,8716718 +g1,21756:14265715,8716718 +g1,21756:14929623,8716718 +g1,21756:17253301,8716718 +g1,21756:17917209,8716718 +g1,21756:18581117,8716718 +g1,21756:20572841,8716718 +h1,21756:20904795,8716718:0,0,0 +k1,21756:32583029,8716718:11678234 +g1,21756:32583029,8716718 +) +(1,21757:6630773,9401573:25952256,431045,112852 +h1,21757:6630773,9401573:0,0,0 +g1,21757:6962727,9401573 +g1,21757:7294681,9401573 +g1,21757:13269852,9401573 +g1,21757:13933760,9401573 +g1,21757:16257438,9401573 +g1,21757:17585254,9401573 +g1,21757:18249162,9401573 +g1,21757:20240886,9401573 +g1,21757:22232610,9401573 +g1,21757:22896518,9401573 +g1,21757:24888242,9401573 +g1,21757:26879966,9401573 +g1,21757:27543874,9401573 +g1,21757:29203644,9401573 +h1,21757:29535598,9401573:0,0,0 +k1,21757:32583029,9401573:3047431 +g1,21757:32583029,9401573 +) +(1,21758:6630773,10086428:25952256,424439,86428 +h1,21758:6630773,10086428:0,0,0 +g1,21758:6962727,10086428 +g1,21758:7294681,10086428 +g1,21758:14597668,10086428 +g1,21758:15261576,10086428 +g1,21758:18249161,10086428 +k1,21758:18249161,10086428:0 +h1,21758:20572839,10086428:0,0,0 +k1,21758:32583029,10086428:12010190 +g1,21758:32583029,10086428 +) +(1,21759:6630773,10771283:25952256,424439,106246 +h1,21759:6630773,10771283:0,0,0 +g1,21759:6962727,10771283 +g1,21759:7294681,10771283 +g1,21759:7626635,10771283 +g1,21759:7958589,10771283 +g1,21759:8290543,10771283 +g1,21759:8622497,10771283 +g1,21759:8954451,10771283 +g1,21759:9286405,10771283 +g1,21759:9618359,10771283 +g1,21759:9950313,10771283 +g1,21759:10282267,10771283 +g1,21759:10614221,10771283 +g1,21759:10946175,10771283 +g1,21759:11278129,10771283 +g1,21759:11610083,10771283 +g1,21759:11942037,10771283 +g1,21759:12273991,10771283 +g1,21759:12605945,10771283 +g1,21759:12937899,10771283 +g1,21759:15261577,10771283 +g1,21759:15925485,10771283 +g1,21759:20240886,10771283 +g1,21759:24888241,10771283 +k1,21759:24888241,10771283:0 +h1,21759:28539734,10771283:0,0,0 +k1,21759:32583029,10771283:4043295 +g1,21759:32583029,10771283 +) +(1,21760:6630773,11456138:25952256,424439,106246 +h1,21760:6630773,11456138:0,0,0 +g1,21760:6962727,11456138 +g1,21760:7294681,11456138 +g1,21760:7626635,11456138 +g1,21760:7958589,11456138 +g1,21760:8290543,11456138 +g1,21760:8622497,11456138 +g1,21760:8954451,11456138 +g1,21760:9286405,11456138 +g1,21760:9618359,11456138 +g1,21760:9950313,11456138 +g1,21760:10282267,11456138 +g1,21760:10614221,11456138 +g1,21760:10946175,11456138 +g1,21760:11278129,11456138 +g1,21760:11610083,11456138 +g1,21760:11942037,11456138 +g1,21760:12273991,11456138 +g1,21760:12605945,11456138 +g1,21760:12937899,11456138 +g1,21760:15261577,11456138 +g1,21760:15925485,11456138 +g1,21760:18913070,11456138 +h1,21760:19245024,11456138:0,0,0 +k1,21760:32583029,11456138:13338005 +g1,21760:32583029,11456138 +) +(1,21761:6630773,12140993:25952256,431045,112852 +h1,21761:6630773,12140993:0,0,0 +g1,21761:6962727,12140993 +g1,21761:7294681,12140993 +g1,21761:15261576,12140993 +g1,21761:15925484,12140993 +g1,21761:18581116,12140993 +g1,21761:19908932,12140993 +g1,21761:23560425,12140993 +g1,21761:26216057,12140993 +g1,21761:28539735,12140993 +g1,21761:29203643,12140993 +g1,21761:30863413,12140993 +h1,21761:32191229,12140993:0,0,0 +k1,21761:32583029,12140993:391800 +g1,21761:32583029,12140993 +) +] +) +g1,21763:32583029,12253845 +g1,21763:6630773,12253845 +g1,21763:6630773,12253845 +g1,21763:32583029,12253845 +g1,21763:32583029,12253845 +) +h1,21763:6630773,12450453:0,0,0 +(1,21766:6630773,22150567:25952256,9634578,0 +k1,21766:13183781,22150567:6553008 +h1,21765:13183781,22150567:0,0,0 +(1,21765:13183781,22150567:12846240,9634578,0 +(1,21765:13183781,22150567:12846136,9634602,0 +(1,21765:13183781,22150567:12846136,9634602,0 +(1,21765:13183781,22150567:0,9634602,0 +(1,21765:13183781,22150567:0,14208860,0 +(1,21765:13183781,22150567:18945146,14208860,0 +) +k1,21765:13183781,22150567:-18945146 +) +) +g1,21765:26029917,22150567 +) +) +) +g1,21766:26030021,22150567 +k1,21766:32583029,22150567:6553008 +) +(1,21773:6630773,23015647:25952256,513147,126483 +h1,21772:6630773,23015647:983040,0,0 +k1,21772:8971022,23015647:160522 +k1,21772:10870870,23015647:160522 +k1,21772:11690684,23015647:160522 +k1,21772:12870291,23015647:160522 +k1,21772:15744005,23015647:160523 +k1,21772:16520565,23015647:160522 +k1,21772:17700172,23015647:160522 +k1,21772:19137991,23015647:160522 +k1,21772:21613900,23015647:160522 +k1,21772:22793507,23015647:160522 +k1,21772:24693355,23015647:160522 +k1,21772:25513169,23015647:160522 +k1,21772:26692777,23015647:160523 +k1,21772:28645709,23015647:160522 +k1,21772:29422269,23015647:160522 +k1,21772:30601876,23015647:160522 +k1,21772:32583029,23015647:0 +) +(1,21773:6630773,23880727:25952256,513147,134348 +k1,21772:8207210,23880727:159549 +k1,21772:11250342,23880727:159548 +k1,21772:12613132,23880727:159549 +k1,21772:15502256,23880727:159549 +k1,21772:16277843,23880727:159549 +k1,21772:18331381,23880727:159548 +(1,21772:18331381,23880727:0,459977,122846 +r1,21797:21503341,23880727:3171960,582823,122846 +k1,21772:18331381,23880727:-3171960 +) +(1,21772:18331381,23880727:3171960,459977,122846 +k1,21772:18331381,23880727:3277 +h1,21772:21500064,23880727:0,411205,112570 +) +k1,21772:21662890,23880727:159549 +k1,21772:23922868,23880727:159549 +k1,21772:25463261,23880727:159549 +k1,21772:28607319,23880727:159548 +k1,21772:30812902,23880727:159549 +k1,21772:32583029,23880727:0 +) +(1,21773:6630773,24745807:25952256,505283,134348 +k1,21772:8471082,24745807:168485 +k1,21772:9658652,24745807:168485 +k1,21772:11110332,24745807:168485 +k1,21772:14008392,24745807:168485 +k1,21772:16037444,24745807:168485 +k1,21772:16857357,24745807:168485 +k1,21772:17773608,24745807:168485 +k1,21772:21150736,24745807:168485 +k1,21772:23173890,24745807:168485 +k1,21772:24151745,24745807:168485 +k1,21772:26330875,24745807:168485 +k1,21772:27115398,24745807:168485 +(1,21772:27115398,24745807:0,452978,115847 +r1,21797:28528799,24745807:1413401,568825,115847 +k1,21772:27115398,24745807:-1413401 +) +(1,21772:27115398,24745807:1413401,452978,115847 +k1,21772:27115398,24745807:3277 +h1,21772:28525522,24745807:0,411205,112570 +) +k1,21772:28870954,24745807:168485 +k1,21772:30111608,24745807:168485 +k1,21772:31384375,24745807:168485 +k1,21772:32583029,24745807:0 +) +(1,21773:6630773,25610887:25952256,505283,134348 +k1,21772:7665536,25610887:286997 +k1,21772:10324281,25610887:286997 +k1,21772:11227316,25610887:286997 +k1,21772:12533399,25610887:286998 +k1,21772:15344843,25610887:286997 +k1,21772:17301697,25610887:286997 +k1,21772:19629485,25610887:286997 +k1,21772:20935567,25610887:286997 +k1,21772:23511081,25610887:286997 +k1,21772:24989524,25610887:286998 +k1,21772:27956944,25610887:286997 +k1,21772:29637892,25610887:286997 +k1,21772:31563944,25610887:286997 +k1,21772:32583029,25610887:0 +) +(1,21773:6630773,26475967:25952256,513147,126483 +k1,21772:9780170,26475967:262536 +k1,21772:11034266,26475967:262536 +k1,21772:13804209,26475967:262536 +k1,21772:15921414,26475967:262536 +k1,21772:16993320,26475967:262536 +k1,21772:18274941,26475967:262536 +(1,21772:18274941,26475967:0,452978,115847 +r1,21797:20391766,26475967:2116825,568825,115847 +k1,21772:18274941,26475967:-2116825 +) +(1,21772:18274941,26475967:2116825,452978,115847 +k1,21772:18274941,26475967:3277 +h1,21772:20388489,26475967:0,411205,112570 +) +k1,21772:20654302,26475967:262536 +k1,21772:21576130,26475967:262536 +k1,21772:24350006,26475967:262536 +(1,21772:24350006,26475967:0,452978,115847 +r1,21797:25411695,26475967:1061689,568825,115847 +k1,21772:24350006,26475967:-1061689 +) +(1,21772:24350006,26475967:1061689,452978,115847 +k1,21772:24350006,26475967:3277 +h1,21772:25408418,26475967:0,411205,112570 +) +k1,21772:25674231,26475967:262536 +k1,21772:26698295,26475967:262536 +k1,21772:29029147,26475967:262536 +k1,21772:29950975,26475967:262536 +k1,21772:30569371,26475967:262536 +k1,21772:31931601,26475967:262536 +k1,21773:32583029,26475967:0 +) +(1,21773:6630773,27341047:25952256,505283,115847 +(1,21772:6630773,27341047:0,452978,115847 +r1,21797:9802733,27341047:3171960,568825,115847 +k1,21772:6630773,27341047:-3171960 +) +(1,21772:6630773,27341047:3171960,452978,115847 +k1,21772:6630773,27341047:3277 +h1,21772:9799456,27341047:0,411205,112570 +) +g1,21772:10001962,27341047 +g1,21772:12211180,27341047 +g1,21772:13429494,27341047 +g1,21772:14728417,27341047 +g1,21772:15579074,27341047 +(1,21772:15579074,27341047:0,452978,115847 +r1,21797:17344187,27341047:1765113,568825,115847 +k1,21772:15579074,27341047:-1765113 +) +(1,21772:15579074,27341047:1765113,452978,115847 +k1,21772:15579074,27341047:3277 +h1,21772:17340910,27341047:0,411205,112570 +) +k1,21773:32583029,27341047:15186414 +g1,21773:32583029,27341047 +) +v1,21775:6630773,28025902:0,393216,0 +(1,21782:6630773,30421150:25952256,2788464,196608 +g1,21782:6630773,30421150 +g1,21782:6630773,30421150 +g1,21782:6434165,30421150 +(1,21782:6434165,30421150:0,2788464,196608 +r1,21797:32779637,30421150:26345472,2985072,196608 +k1,21782:6434165,30421150:-26345472 +) +(1,21782:6434165,30421150:26345472,2788464,196608 +[1,21782:6630773,30421150:25952256,2591856,0 +(1,21777:6630773,28253733:25952256,424439,112852 +(1,21776:6630773,28253733:0,0,0 +g1,21776:6630773,28253733 +g1,21776:6630773,28253733 +g1,21776:6303093,28253733 +(1,21776:6303093,28253733:0,0,0 +) +g1,21776:6630773,28253733 +) +k1,21777:6630773,28253733:0 +g1,21777:10614221,28253733 +g1,21777:11278129,28253733 +k1,21777:11278129,28253733:0 +h1,21777:12605945,28253733:0,0,0 +k1,21777:32583029,28253733:19977084 +g1,21777:32583029,28253733 +) +(1,21778:6630773,28938588:25952256,431045,112852 +h1,21778:6630773,28938588:0,0,0 +g1,21778:6962727,28938588 +g1,21778:7294681,28938588 +g1,21778:7626635,28938588 +g1,21778:7958589,28938588 +g1,21778:8290543,28938588 +g1,21778:8622497,28938588 +g1,21778:8954451,28938588 +g1,21778:11610083,28938588 +g1,21778:12273991,28938588 +g1,21778:14265715,28938588 +g1,21778:14929623,28938588 +g1,21778:18249163,28938588 +g1,21778:18913071,28938588 +g1,21778:23892381,28938588 +g1,21778:24556289,28938588 +g1,21778:25220197,28938588 +g1,21778:26879967,28938588 +g1,21778:28207783,28938588 +g1,21778:28871691,28938588 +k1,21778:28871691,28938588:0 +h1,21778:30863415,28938588:0,0,0 +k1,21778:32583029,28938588:1719614 +g1,21778:32583029,28938588 +) +(1,21779:6630773,29623443:25952256,424439,106246 +h1,21779:6630773,29623443:0,0,0 +g1,21779:6962727,29623443 +g1,21779:7294681,29623443 +g1,21779:7626635,29623443 +g1,21779:7958589,29623443 +g1,21779:8290543,29623443 +g1,21779:8622497,29623443 +g1,21779:8954451,29623443 +g1,21779:9286405,29623443 +g1,21779:9618359,29623443 +g1,21779:9950313,29623443 +g1,21779:10282267,29623443 +g1,21779:10614221,29623443 +g1,21779:10946175,29623443 +g1,21779:11278129,29623443 +g1,21779:11610083,29623443 +g1,21779:11942037,29623443 +g1,21779:12273991,29623443 +g1,21779:12605945,29623443 +g1,21779:12937899,29623443 +g1,21779:13269853,29623443 +g1,21779:13601807,29623443 +g1,21779:14265715,29623443 +g1,21779:14929623,29623443 +g1,21779:16921347,29623443 +h1,21779:17253301,29623443:0,0,0 +k1,21779:32583029,29623443:15329728 +g1,21779:32583029,29623443 +) +(1,21780:6630773,30308298:25952256,431045,112852 +h1,21780:6630773,30308298:0,0,0 +g1,21780:6962727,30308298 +g1,21780:7294681,30308298 +g1,21780:13269852,30308298 +g1,21780:13933760,30308298 +g1,21780:16257438,30308298 +g1,21780:17585254,30308298 +g1,21780:18249162,30308298 +h1,21780:19908932,30308298:0,0,0 +k1,21780:32583029,30308298:12674097 +g1,21780:32583029,30308298 +) +] +) +g1,21782:32583029,30421150 +g1,21782:6630773,30421150 +g1,21782:6630773,30421150 +g1,21782:32583029,30421150 +g1,21782:32583029,30421150 +) +h1,21782:6630773,30617758:0,0,0 +(1,21787:6630773,32734576:25952256,555811,12975 +(1,21787:6630773,32734576:2899444,534184,12975 +g1,21787:6630773,32734576 +g1,21787:9530217,32734576 +) +g1,21787:11216393,32734576 +g1,21787:12783621,32734576 +g1,21787:14353733,32734576 +k1,21787:32583029,32734576:16138698 +g1,21787:32583029,32734576 +) +v1,21791:6630773,33992872:0,393216,0 +(1,21792:6630773,36957152:25952256,3357496,0 +g1,21792:6630773,36957152 +g1,21792:6237557,36957152 +r1,21797:6368629,36957152:131072,3357496,0 +g1,21792:6567858,36957152 +g1,21792:6764466,36957152 +[1,21792:6764466,36957152:25818563,3357496,0 +(1,21792:6764466,34354049:25818563,754393,260573 +(1,21791:6764466,34354049:0,754393,260573 +r1,21797:7856192,34354049:1091726,1014966,260573 +k1,21791:6764466,34354049:-1091726 +) +(1,21791:6764466,34354049:1091726,754393,260573 +) +k1,21791:8037024,34354049:180832 +k1,21791:8364704,34354049:327680 +k1,21791:9742223,34354049:180832 +(1,21791:9742223,34354049:0,452978,115847 +r1,21797:12914183,34354049:3171960,568825,115847 +k1,21791:9742223,34354049:-3171960 +) +(1,21791:9742223,34354049:3171960,452978,115847 +k1,21791:9742223,34354049:3277 +h1,21791:12910906,34354049:0,411205,112570 +) +k1,21791:13095015,34354049:180832 +k1,21791:16120110,34354049:180832 +k1,21791:17508115,34354049:180832 +k1,21791:19654372,34354049:180832 +k1,21791:20486632,34354049:180832 +k1,21791:23247616,34354049:180832 +k1,21791:26256981,34354049:180832 +k1,21791:27053851,34354049:180832 +k1,21791:29568420,34354049:180832 +k1,21791:31465640,34354049:180832 +k1,21792:32583029,34354049:0 +) +(1,21792:6764466,35219129:25818563,513147,126483 +k1,21791:9387580,35219129:202870 +k1,21791:12434712,35219129:202869 +(1,21791:12434712,35219129:0,452978,115847 +r1,21797:13848113,35219129:1413401,568825,115847 +k1,21791:12434712,35219129:-1413401 +) +(1,21791:12434712,35219129:1413401,452978,115847 +k1,21791:12434712,35219129:3277 +h1,21791:13844836,35219129:0,411205,112570 +) +k1,21791:14050983,35219129:202870 +k1,21791:17343876,35219129:202870 +k1,21791:18565831,35219129:202870 +k1,21791:20583392,35219129:202869 +k1,21791:21445554,35219129:202870 +k1,21791:23147232,35219129:202870 +k1,21791:24036264,35219129:202870 +k1,21791:25517740,35219129:202869 +k1,21791:26406772,35219129:202870 +k1,21791:27628727,35219129:202870 +k1,21791:29100374,35219129:202870 +k1,21791:29962535,35219129:202869 +k1,21791:31391584,35219129:202870 +k1,21791:32583029,35219129:0 +) +(1,21792:6764466,36084209:25818563,505283,134348 +k1,21791:8981952,36084209:198977 +k1,21791:9863815,36084209:198978 +k1,21791:12435851,36084209:198977 +k1,21791:14501949,36084209:198977 +k1,21791:14913918,36084209:198977 +k1,21791:17782176,36084209:198977 +k1,21791:19000238,36084209:198977 +k1,21791:21101726,36084209:198978 +k1,21791:24417595,36084209:198977 +k1,21791:25268000,36084209:198977 +k1,21791:27800714,36084209:198977 +k1,21791:29542410,36084209:198978 +k1,21791:30932832,36084209:198977 +k1,21791:32583029,36084209:0 +) +(1,21792:6764466,36949289:25818563,426639,7863 +k1,21792:32583029,36949289:23777772 +g1,21792:32583029,36949289 +) +] +g1,21792:32583029,36957152 +) +h1,21792:6630773,36957152:0,0,0 +(1,21795:6630773,37822232:25952256,505283,115847 +k1,21794:8179278,37822232:506483 +k1,21794:9704847,37822232:506484 +(1,21794:9704847,37822232:0,452978,115847 +r1,21797:11118248,37822232:1413401,568825,115847 +k1,21794:9704847,37822232:-1413401 +) +(1,21794:9704847,37822232:1413401,452978,115847 +k1,21794:9704847,37822232:3277 +h1,21794:11114971,37822232:0,411205,112570 +) +k1,21794:11624731,37822232:506483 +k1,21794:15058051,37822232:506483 +k1,21794:17796036,37822232:506484 +k1,21794:20205029,37822232:506483 +k1,21794:21703072,37822232:506483 +k1,21794:25167196,37822232:506484 +k1,21794:28373107,37822232:506483 +k1,21794:31333913,37822232:506483 +k1,21795:32583029,37822232:0 +) +(1,21795:6630773,38687312:25952256,505283,126483 +k1,21794:9606370,38687312:548143 +k1,21794:11345958,38687312:548143 +k1,21794:14267159,38687312:548142 +k1,21794:16373093,38687312:548143 +k1,21794:17912796,38687312:548143 +k1,21794:20662949,38687312:548143 +k1,21794:21862520,38687312:548143 +k1,21794:24154576,38687312:548143 +k1,21794:27037110,38687312:548142 +k1,21794:30675276,38687312:548143 +k1,21794:32583029,38687312:0 +) +(1,21795:6630773,39552392:25952256,505283,126483 +k1,21794:10689899,39552392:446126 +(1,21794:10689899,39552392:0,452978,122846 +r1,21797:14916995,39552392:4227096,575824,122846 +k1,21794:10689899,39552392:-4227096 +) +(1,21794:10689899,39552392:4227096,452978,122846 +k1,21794:10689899,39552392:3277 +h1,21794:14913718,39552392:0,411205,112570 +) +k1,21794:15536792,39552392:446127 +(1,21794:15536792,39552392:0,452978,122846 +r1,21797:19412176,39552392:3875384,575824,122846 +k1,21794:15536792,39552392:-3875384 +) +(1,21794:15536792,39552392:3875384,452978,122846 +k1,21794:15536792,39552392:3277 +h1,21794:19408899,39552392:0,411205,112570 +) +k1,21794:19858303,39552392:446127 +k1,21794:21495874,39552392:446126 +(1,21794:21495874,39552392:0,452978,122846 +r1,21797:25722970,39552392:4227096,575824,122846 +k1,21794:21495874,39552392:-4227096 +) +(1,21794:21495874,39552392:4227096,452978,122846 +k1,21794:21495874,39552392:3277 +h1,21794:25719693,39552392:0,411205,112570 +) +k1,21794:26169097,39552392:446127 +k1,21794:28118619,39552392:446126 +k1,21794:29583831,39552392:446127 +(1,21794:29583831,39552392:0,452978,115847 +r1,21797:30997232,39552392:1413401,568825,115847 +k1,21794:29583831,39552392:-1413401 +) +(1,21794:29583831,39552392:1413401,452978,115847 +k1,21794:29583831,39552392:3277 +h1,21794:30993955,39552392:0,411205,112570 +) +k1,21794:31443358,39552392:446126 +k1,21795:32583029,39552392:0 +) +(1,21795:6630773,40417472:25952256,505283,126483 +k1,21794:8894982,40417472:453449 +k1,21794:10034594,40417472:453450 +k1,21794:13500733,40417472:453449 +k1,21794:15247864,40417472:453450 +k1,21794:17603823,40417472:453449 +k1,21794:19161555,40417472:453450 +k1,21794:20362770,40417472:453449 +k1,21794:22329446,40417472:453450 +k1,21794:24176846,40417472:453449 +k1,21794:28200697,40417472:453450 +k1,21794:31274275,40417472:453449 +k1,21795:32583029,40417472:0 +) +(1,21795:6630773,41282552:25952256,513147,126483 +k1,21794:8865660,41282552:422161 +k1,21794:10668665,41282552:422161 +k1,21794:12282271,41282552:422161 +k1,21794:14633812,41282552:422161 +k1,21794:16247418,41282552:422161 +k1,21794:18063530,41282552:422161 +k1,21794:21011449,41282552:422161 +k1,21794:24448920,41282552:422160 +k1,21794:27886392,41282552:422161 +k1,21794:28967845,41282552:422161 +k1,21794:30409091,41282552:422161 +k1,21794:31923737,41282552:422161 +k1,21795:32583029,41282552:0 +) +(1,21795:6630773,42147632:25952256,505283,134348 +(1,21794:6630773,42147632:0,452978,115847 +r1,21797:10857869,42147632:4227096,568825,115847 +k1,21794:6630773,42147632:-4227096 +) +(1,21794:6630773,42147632:4227096,452978,115847 +k1,21794:6630773,42147632:3277 +h1,21794:10854592,42147632:0,411205,112570 +) +k1,21794:11006789,42147632:148920 +k1,21794:12347155,42147632:148921 +(1,21794:12347155,42147632:0,452978,115847 +r1,21797:18332810,42147632:5985655,568825,115847 +k1,21794:12347155,42147632:-5985655 +) +(1,21794:12347155,42147632:5985655,452978,115847 +k1,21794:12347155,42147632:3277 +h1,21794:18329533,42147632:0,411205,112570 +) +k1,21794:18481730,42147632:148920 +k1,21794:20134701,42147632:148920 +k1,21794:21978382,42147632:148920 +k1,21794:22743341,42147632:148921 +k1,21794:25170948,42147632:148920 +h1,21794:26713666,42147632:0,0,0 +k1,21794:26862586,42147632:148920 +k1,21794:27820876,42147632:148920 +k1,21794:29467950,42147632:148921 +h1,21794:30663327,42147632:0,0,0 +k1,21794:30985917,42147632:148920 +k1,21795:32583029,42147632:0 +) +(1,21795:6630773,43012712:25952256,505283,126483 +(1,21794:6630773,43012712:0,452978,115847 +r1,21797:13319851,43012712:6689078,568825,115847 +k1,21794:6630773,43012712:-6689078 +) +(1,21794:6630773,43012712:6689078,452978,115847 +k1,21794:6630773,43012712:3277 +h1,21794:13316574,43012712:0,411205,112570 +) +k1,21794:13492335,43012712:172484 +k1,21794:14196316,43012712:172484 +k1,21794:16214949,43012712:172484 +k1,21794:17900659,43012712:172484 +k1,21794:18759305,43012712:172484 +k1,21794:19389886,43012712:172484 +k1,21794:21055280,43012712:172484 +k1,21794:22294035,43012712:172484 +k1,21794:24447672,43012712:172484 +k1,21794:26840516,43012712:172484 +k1,21794:28877499,43012712:172484 +k1,21794:30318760,43012712:172484 +k1,21795:32583029,43012712:0 +) +(1,21795:6630773,43877792:25952256,473825,7863 +k1,21795:32583028,43877792:24632360 +g1,21795:32583028,43877792 +) +(1,21797:6630773,44742872:25952256,513147,115847 +h1,21796:6630773,44742872:983040,0,0 +k1,21796:8450021,44742872:348620 +k1,21796:11000800,44742872:348769 +k1,21796:12284113,44742872:348770 +k1,21796:13292175,44742872:348770 +k1,21796:15543454,44742872:348769 +k1,21796:16423721,44742872:348770 +k1,21796:19556459,44742872:348769 +k1,21796:20852880,44742872:348770 +(1,21796:20852880,44742872:0,452978,115847 +r1,21797:24024840,44742872:3171960,568825,115847 +k1,21796:20852880,44742872:-3171960 +) +(1,21796:20852880,44742872:3171960,452978,115847 +k1,21796:20852880,44742872:3277 +h1,21796:24021563,44742872:0,411205,112570 +) +k1,21796:24373610,44742872:348770 +k1,21796:25408541,44742872:348769 +k1,21796:27412095,44742872:348770 +k1,21796:28292362,44742872:348770 +k1,21796:29588782,44742872:348769 +(1,21796:29588782,44742872:0,452978,115847 +r1,21797:31002183,44742872:1413401,568825,115847 +k1,21796:29588782,44742872:-1413401 +) +(1,21796:29588782,44742872:1413401,452978,115847 +k1,21796:29588782,44742872:3277 +h1,21796:30998906,44742872:0,411205,112570 +) +k1,21796:31524623,44742872:348770 +k1,21797:32583029,44742872:0 +) +(1,21797:6630773,45607952:25952256,505283,122846 +k1,21796:8755038,45607952:377075 +k1,21796:11586436,45607952:377075 +k1,21796:15533912,45607952:377075 +k1,21796:17102433,45607952:377076 +k1,21796:19852567,45607952:377075 +k1,21796:23842642,45607952:377075 +(1,21796:23842642,45607952:0,452978,122846 +r1,21797:27718026,45607952:3875384,575824,122846 +k1,21796:23842642,45607952:-3875384 +) +(1,21796:23842642,45607952:3875384,452978,122846 +k1,21796:23842642,45607952:3277 +h1,21796:27714749,45607952:0,411205,112570 +) +k1,21796:28268771,45607952:377075 +(1,21796:28268771,45607952:0,452978,122846 +r1,21797:32495867,45607952:4227096,575824,122846 +k1,21796:28268771,45607952:-4227096 +) +(1,21796:28268771,45607952:4227096,452978,122846 +k1,21796:28268771,45607952:3277 +h1,21796:32492590,45607952:0,411205,112570 +) +k1,21797:32583029,45607952:0 +) +] +(1,21797:32583029,45706769:0,0,0 +g1,21797:32583029,45706769 +) +) +] +(1,21797:6630773,47279633:25952256,0,0 +h1,21797:6630773,47279633:25952256,0,0 +) +] +(1,21797:4262630,4025873:0,0,0 +[1,21797:-473656,4025873:0,0,0 +(1,21797:-473656,-710413:0,0,0 +(1,21797:-473656,-710413:0,0,0 +g1,21797:-473656,-710413 +) +g1,21797:-473656,-710413 ) ] ) ] !27522 -}369 -Input:4088:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4089:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4090:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4091:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}370 Input:4092:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4093:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4094:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -377639,2203 +377843,2203 @@ Input:4107:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4108:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4109:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4110:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4111:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4112:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4113:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4114:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2128 -{370 -[1,21844:4262630,47279633:28320399,43253760,0 -(1,21844:4262630,4025873:0,0,0 -[1,21844:-473656,4025873:0,0,0 -(1,21844:-473656,-710413:0,0,0 -(1,21844:-473656,-644877:0,0,0 -k1,21844:-473656,-644877:-65536 +{371 +[1,21842:4262630,47279633:28320399,43253760,0 +(1,21842:4262630,4025873:0,0,0 +[1,21842:-473656,4025873:0,0,0 +(1,21842:-473656,-710413:0,0,0 +(1,21842:-473656,-644877:0,0,0 +k1,21842:-473656,-644877:-65536 ) -(1,21844:-473656,4736287:0,0,0 -k1,21844:-473656,4736287:5209943 +(1,21842:-473656,4736287:0,0,0 +k1,21842:-473656,4736287:5209943 ) -g1,21844:-473656,-710413 +g1,21842:-473656,-710413 ) ] ) -[1,21844:6630773,47279633:25952256,43253760,0 -[1,21844:6630773,4812305:25952256,786432,0 -(1,21844:6630773,4812305:25952256,505283,11795 -(1,21844:6630773,4812305:25952256,505283,11795 -g1,21844:3078558,4812305 -[1,21844:3078558,4812305:0,0,0 -(1,21844:3078558,2439708:0,1703936,0 -k1,21844:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21844:2537886,2439708:1179648,16384,0 +[1,21842:6630773,47279633:25952256,43253760,0 +[1,21842:6630773,4812305:25952256,786432,0 +(1,21842:6630773,4812305:25952256,505283,11795 +(1,21842:6630773,4812305:25952256,505283,11795 +g1,21842:3078558,4812305 +[1,21842:3078558,4812305:0,0,0 +(1,21842:3078558,2439708:0,1703936,0 +k1,21842:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21842:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21844:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21842:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21844:3078558,4812305:0,0,0 -(1,21844:3078558,2439708:0,1703936,0 -g1,21844:29030814,2439708 -g1,21844:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21844:36151628,1915420:16384,1179648,0 +[1,21842:3078558,4812305:0,0,0 +(1,21842:3078558,2439708:0,1703936,0 +g1,21842:29030814,2439708 +g1,21842:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21842:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21844:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21842:37855564,2439708:1179648,16384,0 ) ) -k1,21844:3078556,2439708:-34777008 +k1,21842:3078556,2439708:-34777008 ) ] -[1,21844:3078558,4812305:0,0,0 -(1,21844:3078558,49800853:0,16384,2228224 -k1,21844:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21844:2537886,49800853:1179648,16384,0 +[1,21842:3078558,4812305:0,0,0 +(1,21842:3078558,49800853:0,16384,2228224 +k1,21842:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21842:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21844:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21842:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21844:3078558,4812305:0,0,0 -(1,21844:3078558,49800853:0,16384,2228224 -g1,21844:29030814,49800853 -g1,21844:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21844:36151628,51504789:16384,1179648,0 +[1,21842:3078558,4812305:0,0,0 +(1,21842:3078558,49800853:0,16384,2228224 +g1,21842:29030814,49800853 +g1,21842:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21842:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21844:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21842:37855564,49800853:1179648,16384,0 ) ) -k1,21844:3078556,49800853:-34777008 +k1,21842:3078556,49800853:-34777008 ) ] -g1,21844:6630773,4812305 -g1,21844:6630773,4812305 -g1,21844:8724648,4812305 -k1,21844:31387652,4812305:22663004 +g1,21842:6630773,4812305 +g1,21842:6630773,4812305 +g1,21842:8724648,4812305 +k1,21842:31387652,4812305:22663004 ) ) ] -[1,21844:6630773,45706769:25952256,40108032,0 -(1,21844:6630773,45706769:25952256,40108032,0 -(1,21844:6630773,45706769:0,0,0 -g1,21844:6630773,45706769 +[1,21842:6630773,45706769:25952256,40108032,0 +(1,21842:6630773,45706769:25952256,40108032,0 +(1,21842:6630773,45706769:0,0,0 +g1,21842:6630773,45706769 ) -[1,21844:6630773,45706769:25952256,40108032,0 -(1,21799:6630773,6254097:25952256,505283,122846 -(1,21798:6630773,6254097:0,452978,122846 -r1,21844:10857869,6254097:4227096,575824,122846 -k1,21798:6630773,6254097:-4227096 +[1,21842:6630773,45706769:25952256,40108032,0 +(1,21797:6630773,6254097:25952256,505283,122846 +(1,21796:6630773,6254097:0,452978,122846 +r1,21842:10857869,6254097:4227096,575824,122846 +k1,21796:6630773,6254097:-4227096 ) -(1,21798:6630773,6254097:4227096,452978,122846 -k1,21798:6630773,6254097:3277 -h1,21798:10854592,6254097:0,411205,112570 +(1,21796:6630773,6254097:4227096,452978,122846 +k1,21796:6630773,6254097:3277 +h1,21796:10854592,6254097:0,411205,112570 ) -k1,21798:11444945,6254097:413406 -(1,21798:11444945,6254097:0,452978,122846 -r1,21844:16023753,6254097:4578808,575824,122846 -k1,21798:11444945,6254097:-4578808 +k1,21796:11444945,6254097:413406 +(1,21796:11444945,6254097:0,452978,122846 +r1,21842:16023753,6254097:4578808,575824,122846 +k1,21796:11444945,6254097:-4578808 ) -(1,21798:11444945,6254097:4578808,452978,122846 -k1,21798:11444945,6254097:3277 -h1,21798:16020476,6254097:0,411205,112570 -) -k1,21798:16610829,6254097:413406 -(1,21798:16610829,6254097:0,452978,122846 -r1,21844:21541349,6254097:4930520,575824,122846 -k1,21798:16610829,6254097:-4930520 +(1,21796:11444945,6254097:4578808,452978,122846 +k1,21796:11444945,6254097:3277 +h1,21796:16020476,6254097:0,411205,112570 +) +k1,21796:16610829,6254097:413406 +(1,21796:16610829,6254097:0,452978,122846 +r1,21842:21541349,6254097:4930520,575824,122846 +k1,21796:16610829,6254097:-4930520 ) -(1,21798:16610829,6254097:4930520,452978,122846 -k1,21798:16610829,6254097:3277 -h1,21798:21538072,6254097:0,411205,112570 +(1,21796:16610829,6254097:4930520,452978,122846 +k1,21796:16610829,6254097:3277 +h1,21796:21538072,6254097:0,411205,112570 ) -k1,21798:22128425,6254097:413406 -(1,21798:22128425,6254097:0,452978,122846 -r1,21844:26355521,6254097:4227096,575824,122846 -k1,21798:22128425,6254097:-4227096 +k1,21796:22128425,6254097:413406 +(1,21796:22128425,6254097:0,452978,122846 +r1,21842:26355521,6254097:4227096,575824,122846 +k1,21796:22128425,6254097:-4227096 ) -(1,21798:22128425,6254097:4227096,452978,122846 -k1,21798:22128425,6254097:3277 -h1,21798:26352244,6254097:0,411205,112570 -) -k1,21798:26768927,6254097:413406 -k1,21798:28373778,6254097:413406 -k1,21798:31008855,6254097:413406 -k1,21798:32583029,6254097:0 -) -(1,21799:6630773,7119177:25952256,505283,126483 -k1,21798:8333774,7119177:199605 -k1,21798:9552465,7119177:199606 -(1,21798:9552465,7119177:0,452978,115847 -r1,21844:12724425,7119177:3171960,568825,115847 -k1,21798:9552465,7119177:-3171960 -) -(1,21798:9552465,7119177:3171960,452978,115847 -k1,21798:9552465,7119177:3277 -h1,21798:12721148,7119177:0,411205,112570 -) -k1,21798:12924030,7119177:199605 -k1,21798:16141569,7119177:199606 -k1,21798:19436439,7119177:199605 -(1,21798:19436439,7119177:0,452978,122846 -r1,21844:25422094,7119177:5985655,575824,122846 -k1,21798:19436439,7119177:-5985655 -) -(1,21798:19436439,7119177:5985655,452978,122846 -k1,21798:19436439,7119177:3277 -h1,21798:25418817,7119177:0,411205,112570 -) -k1,21798:25621699,7119177:199605 -k1,21798:27655002,7119177:199606 -k1,21798:29321303,7119177:199605 -k1,21798:32583029,7119177:0 -) -(1,21799:6630773,7984257:25952256,513147,134348 -k1,21798:7545709,7984257:228774 -k1,21798:10787172,7984257:228773 -(1,21798:10787172,7984257:0,452978,115847 -r1,21844:12200573,7984257:1413401,568825,115847 -k1,21798:10787172,7984257:-1413401 -) -(1,21798:10787172,7984257:1413401,452978,115847 -k1,21798:10787172,7984257:3277 -h1,21798:12197296,7984257:0,411205,112570 -) -k1,21798:12429347,7984257:228774 -k1,21798:13189617,7984257:228773 -k1,21798:14931617,7984257:228774 -k1,21798:16108041,7984257:228773 -k1,21798:17355900,7984257:228774 -k1,21798:18853451,7984257:228774 -k1,21798:19741516,7984257:228773 -k1,21798:20989375,7984257:228774 -k1,21798:22906355,7984257:228773 -k1,21798:24326574,7984257:228774 -(1,21798:24326574,7984257:0,452978,115847 -r1,21844:27498534,7984257:3171960,568825,115847 -k1,21798:24326574,7984257:-3171960 -) -(1,21798:24326574,7984257:3171960,452978,115847 -k1,21798:24326574,7984257:3277 -h1,21798:27495257,7984257:0,411205,112570 -) -k1,21798:27727307,7984257:228773 -k1,21798:28903732,7984257:228774 -k1,21798:30151590,7984257:228773 -k1,21798:31425008,7984257:228774 -k1,21799:32583029,7984257:0 -) -(1,21799:6630773,8849337:25952256,505283,134348 -k1,21798:8696512,8849337:253013 -k1,21798:9577359,8849337:253012 -k1,21798:13337859,8849337:253013 -(1,21798:13337859,8849337:0,452978,122846 -r1,21844:16861531,8849337:3523672,575824,122846 -k1,21798:13337859,8849337:-3523672 -) -(1,21798:13337859,8849337:3523672,452978,122846 -k1,21798:13337859,8849337:3277 -h1,21798:16858254,8849337:0,411205,112570 -) -k1,21798:17288214,8849337:253013 -(1,21798:17288214,8849337:0,452978,122846 -r1,21844:20811886,8849337:3523672,575824,122846 -k1,21798:17288214,8849337:-3523672 -) -(1,21798:17288214,8849337:3523672,452978,122846 -k1,21798:17288214,8849337:3277 -h1,21798:20808609,8849337:0,411205,112570 -) -k1,21798:21238568,8849337:253012 -(1,21798:21238568,8849337:0,452978,122846 -r1,21844:25113952,8849337:3875384,575824,122846 -k1,21798:21238568,8849337:-3875384 -) -(1,21798:21238568,8849337:3875384,452978,122846 -k1,21798:21238568,8849337:3277 -h1,21798:25110675,8849337:0,411205,112570 -) -k1,21798:25540635,8849337:253013 -(1,21798:25540635,8849337:0,452978,122846 -r1,21844:30119443,8849337:4578808,575824,122846 -k1,21798:25540635,8849337:-4578808 -) -(1,21798:25540635,8849337:4578808,452978,122846 -k1,21798:25540635,8849337:3277 -h1,21798:30116166,8849337:0,411205,112570 -) -k1,21798:30372455,8849337:253012 -k1,21798:31816913,8849337:253013 -k1,21798:32583029,8849337:0 -) -(1,21799:6630773,9714417:25952256,513147,134348 -k1,21798:8505101,9714417:172358 -k1,21798:11840882,9714417:172358 -k1,21798:14882406,9714417:172358 -k1,21798:17962596,9714417:172358 -k1,21798:18896482,9714417:172358 -k1,21798:20741320,9714417:172359 -(1,21798:20741320,9714417:0,452978,115847 -r1,21844:23913280,9714417:3171960,568825,115847 -k1,21798:20741320,9714417:-3171960 -) -(1,21798:20741320,9714417:3171960,452978,115847 -k1,21798:20741320,9714417:3277 -h1,21798:23910003,9714417:0,411205,112570 -) -k1,21798:24085638,9714417:172358 -k1,21798:26876159,9714417:172358 -k1,21798:28067602,9714417:172358 -k1,21798:30054652,9714417:172358 -k1,21798:30886302,9714417:172358 -k1,21798:32583029,9714417:0 -) -(1,21799:6630773,10579497:25952256,505283,134348 -g1,21798:8502481,10579497 -g1,21798:10007843,10579497 -g1,21798:11879551,10579497 -g1,21798:13775507,10579497 -g1,21798:16444788,10579497 -g1,21798:17835462,10579497 -g1,21798:21055901,10579497 -g1,21798:22540946,10579497 -g1,21798:24243571,10579497 -g1,21798:25461885,10579497 -(1,21798:25461885,10579497:0,452978,115847 -r1,21844:28282134,10579497:2820249,568825,115847 -k1,21798:25461885,10579497:-2820249 -) -(1,21798:25461885,10579497:2820249,452978,115847 -k1,21798:25461885,10579497:3277 -h1,21798:28278857,10579497:0,411205,112570 -) -g1,21798:28481363,10579497 -k1,21799:32583029,10579497:1204975 -g1,21799:32583029,10579497 -) -v1,21801:6630773,11444577:0,393216,0 -(1,21802:6630773,14527477:25952256,3476116,0 -g1,21802:6630773,14527477 -g1,21802:6237557,14527477 -r1,21844:6368629,14527477:131072,3476116,0 -g1,21802:6567858,14527477 -g1,21802:6764466,14527477 -[1,21802:6764466,14527477:25818563,3476116,0 -(1,21802:6764466,11805754:25818563,754393,260573 -(1,21801:6764466,11805754:0,754393,260573 -r1,21844:7856192,11805754:1091726,1014966,260573 -k1,21801:6764466,11805754:-1091726 -) -(1,21801:6764466,11805754:1091726,754393,260573 -) -k1,21801:8057872,11805754:201680 -k1,21801:8385552,11805754:327680 -k1,21801:10378986,11805754:201680 -(1,21801:10378986,11805754:0,452978,115847 -r1,21844:13550946,11805754:3171960,568825,115847 -k1,21801:10378986,11805754:-3171960 -) -(1,21801:10378986,11805754:3171960,452978,115847 -k1,21801:10378986,11805754:3277 -h1,21801:13547669,11805754:0,411205,112570 -) -k1,21801:13752626,11805754:201680 -k1,21801:16000340,11805754:201680 -k1,21801:17698207,11805754:201680 -k1,21801:22051593,11805754:201680 -k1,21801:23647224,11805754:201680 -k1,21801:26512943,11805754:201680 -k1,21801:27373915,11805754:201680 -k1,21801:30404128,11805754:201680 -k1,21801:31004267,11805754:201680 -k1,21801:32583029,11805754:0 -) -(1,21802:6764466,12670834:25818563,505283,134348 -k1,21801:7631088,12670834:215194 -k1,21801:9562670,12670834:215194 -k1,21801:11467382,12670834:215194 -k1,21801:15103556,12670834:215195 -k1,21801:15970178,12670834:215194 -k1,21801:17277857,12670834:215194 -(1,21801:17277857,12670834:0,452978,115847 -r1,21844:18691258,12670834:1413401,568825,115847 -k1,21801:17277857,12670834:-1413401 -) -(1,21801:17277857,12670834:1413401,452978,115847 -k1,21801:17277857,12670834:3277 -h1,21801:18687981,12670834:0,411205,112570 -) -k1,21801:18906452,12670834:215194 -k1,21801:20254108,12670834:215194 -k1,21801:22599878,12670834:215195 -k1,21801:26596499,12670834:215194 -k1,21801:29847321,12670834:215194 -k1,21801:30678553,12670834:215194 -k1,21801:32583029,12670834:0 -) -(1,21802:6764466,13535914:25818563,513147,134348 -k1,21801:9637814,13535914:227004 -k1,21801:10524110,13535914:227004 -k1,21801:13579647,13535914:227004 -k1,21801:14378779,13535914:227003 -k1,21801:18068705,13535914:227004 -k1,21801:19388194,13535914:227004 -k1,21801:20282354,13535914:227004 -(1,21801:20282354,13535914:0,452978,115847 -r1,21844:21695755,13535914:1413401,568825,115847 -k1,21801:20282354,13535914:-1413401 -) -(1,21801:20282354,13535914:1413401,452978,115847 -k1,21801:20282354,13535914:3277 -h1,21801:21692478,13535914:0,411205,112570 -) -k1,21801:21922759,13535914:227004 -k1,21801:23097414,13535914:227004 -k1,21801:24823226,13535914:227004 -k1,21801:26182691,13535914:227003 -k1,21801:28852877,13535914:227004 -k1,21801:29850584,13535914:227004 -k1,21801:31858201,13535914:227004 -k1,21801:32583029,13535914:0 -) -(1,21802:6764466,14400994:25818563,513147,126483 -g1,21801:8635519,14400994 -g1,21801:11638378,14400994 -g1,21801:12295704,14400994 -g1,21801:13026430,14400994 -g1,21801:16491318,14400994 -g1,21801:17341975,14400994 -g1,21801:18633689,14400994 -g1,21801:19852003,14400994 -g1,21801:21334427,14400994 -(1,21801:21334427,14400994:0,452978,115847 -r1,21844:24506387,14400994:3171960,568825,115847 -k1,21801:21334427,14400994:-3171960 -) -(1,21801:21334427,14400994:3171960,452978,115847 -k1,21801:21334427,14400994:3277 -h1,21801:24503110,14400994:0,411205,112570 -) -g1,21801:24705616,14400994 -k1,21802:32583029,14400994:4980722 -g1,21802:32583029,14400994 -) -] -g1,21802:32583029,14527477 -) -h1,21802:6630773,14527477:0,0,0 -(1,21807:6630773,16644295:25952256,564462,12975 -(1,21807:6630773,16644295:2899444,534184,12975 -g1,21807:6630773,16644295 -g1,21807:9530217,16644295 -) -g1,21807:12196091,16644295 -g1,21807:13763319,16644295 -k1,21807:32583028,16644295:17866684 -g1,21807:32583028,16644295 -) -(1,21812:6630773,17902591:25952256,513147,126483 -k1,21811:8029628,17902591:223795 -(1,21811:8029628,17902591:0,452978,115847 -r1,21844:10146453,17902591:2116825,568825,115847 -k1,21811:8029628,17902591:-2116825 -) -(1,21811:8029628,17902591:2116825,452978,115847 -k1,21811:8029628,17902591:3277 -h1,21811:10143176,17902591:0,411205,112570 -) -k1,21811:10370249,17902591:223796 -k1,21811:11785489,17902591:223795 -(1,21811:11785489,17902591:0,459977,115847 -r1,21844:13198890,17902591:1413401,575824,115847 -k1,21811:11785489,17902591:-1413401 -) -(1,21811:11785489,17902591:1413401,459977,115847 -k1,21811:11785489,17902591:3277 -h1,21811:13195613,17902591:0,411205,112570 -) -k1,21811:13422686,17902591:223796 -k1,21811:15548991,17902591:223795 -k1,21811:16764347,17902591:223796 -k1,21811:18342116,17902591:223795 -k1,21811:20941592,17902591:223796 -k1,21811:22237556,17902591:223795 -k1,21811:23841540,17902591:223796 -k1,21811:25844637,17902591:223795 -k1,21811:28830776,17902591:223796 -k1,21811:31923737,17902591:223795 -k1,21811:32583029,17902591:0 -) -(1,21812:6630773,18767671:25952256,505283,126483 -k1,21811:7844031,18767671:194173 -k1,21811:9489171,18767671:194173 -k1,21811:10581187,18767671:194173 -k1,21811:12639859,18767671:194173 -k1,21811:15703198,18767671:194173 -k1,21811:16513409,18767671:194173 -k1,21811:17063442,18767671:194173 -k1,21811:18534912,18767671:194173 -k1,21811:20232481,18767671:194173 -k1,21811:21445739,18767671:194173 -(1,21811:21445739,18767671:0,452978,115847 -r1,21844:23562564,18767671:2116825,568825,115847 -k1,21811:21445739,18767671:-2116825 -) -(1,21811:21445739,18767671:2116825,452978,115847 -k1,21811:21445739,18767671:3277 -h1,21811:23559287,18767671:0,411205,112570 -) -k1,21811:23756737,18767671:194173 -k1,21811:26877747,18767671:194173 -k1,21811:28144089,18767671:194173 -k1,21811:29713863,18767671:194173 -k1,21811:32583029,18767671:0 -) -(1,21812:6630773,19632751:25952256,505283,134348 -k1,21811:8159693,19632751:244414 -k1,21811:9879322,19632751:244414 -k1,21811:10894439,19632751:244414 -k1,21811:12805434,19632751:244414 -k1,21811:15070323,19632751:244414 -k1,21811:16506182,19632751:244414 -k1,21811:17106457,19632751:244415 -k1,21811:20575242,19632751:244414 -k1,21811:22323052,19632751:244414 -k1,21811:24034162,19632751:244414 -(1,21811:24034162,19632751:0,452978,115847 -r1,21844:26150987,19632751:2116825,568825,115847 -k1,21811:24034162,19632751:-2116825 -) -(1,21811:24034162,19632751:2116825,452978,115847 -k1,21811:24034162,19632751:3277 -h1,21811:26147710,19632751:0,411205,112570 -) -k1,21811:26395401,19632751:244414 -k1,21811:27831260,19632751:244414 -(1,21811:27831260,19632751:0,459977,115847 -r1,21844:29244661,19632751:1413401,575824,115847 -k1,21811:27831260,19632751:-1413401 -) -(1,21811:27831260,19632751:1413401,459977,115847 -k1,21811:27831260,19632751:3277 -h1,21811:29241384,19632751:0,411205,112570 -) -k1,21811:29489075,19632751:244414 -k1,21811:32583029,19632751:0 -) -(1,21812:6630773,20497831:25952256,505283,126483 -k1,21811:8037568,20497831:231735 -k1,21811:11320005,20497831:231736 -k1,21811:13044650,20497831:231735 -k1,21811:14342656,20497831:231735 -k1,21811:16104657,20497831:231735 -k1,21811:16987821,20497831:231736 -k1,21811:17967322,20497831:231735 -k1,21811:21074121,20497831:231735 -k1,21811:21992018,20497831:231735 -k1,21811:22579614,20497831:231736 -k1,21811:23979856,20497831:231735 -k1,21811:25909629,20497831:231735 -k1,21811:27160449,20497831:231735 -k1,21811:28669482,20497831:231736 -k1,21811:29432714,20497831:231735 -k1,21811:32583029,20497831:0 -) -(1,21812:6630773,21362911:25952256,513147,122846 -k1,21811:7870430,21362911:167488 -k1,21811:8496014,21362911:167487 -k1,21811:10285518,21362911:167488 -k1,21811:12127451,21362911:167488 -k1,21811:13675783,21362911:167488 -k1,21811:14374767,21362911:167487 -k1,21811:15561340,21362911:167488 -k1,21811:17095909,21362911:167488 -k1,21811:18211047,21362911:167487 -(1,21811:18211047,21362911:0,452978,122846 -r1,21844:22086431,21362911:3875384,575824,122846 -k1,21811:18211047,21362911:-3875384 -) -(1,21811:18211047,21362911:3875384,452978,122846 -k1,21811:18211047,21362911:3277 -h1,21811:22083154,21362911:0,411205,112570 -) -k1,21811:22253919,21362911:167488 -k1,21811:23612852,21362911:167488 -(1,21811:23612852,21362911:0,452978,122846 -r1,21844:28191660,21362911:4578808,575824,122846 -k1,21811:23612852,21362911:-4578808 -) -(1,21811:23612852,21362911:4578808,452978,122846 -k1,21811:23612852,21362911:3277 -h1,21811:28188383,21362911:0,411205,112570 -) -k1,21811:28359148,21362911:167488 -k1,21811:29811141,21362911:167487 -k1,21811:30594667,21362911:167488 -k1,21811:32583029,21362911:0 -) -(1,21812:6630773,22227991:25952256,513147,134348 -k1,21811:9513551,22227991:236434 -k1,21811:10409276,22227991:236433 -k1,21811:13474243,22227991:236434 -k1,21811:14702236,22227991:236433 -k1,21811:18001823,22227991:236434 -k1,21811:19632208,22227991:236434 -k1,21811:21367449,22227991:236433 -k1,21811:22979484,22227991:236434 -k1,21811:24025288,22227991:236434 -k1,21811:25953861,22227991:236433 -k1,21811:28183900,22227991:236434 -k1,21811:29910622,22227991:236433 -k1,21811:30502916,22227991:236434 -k1,21811:32583029,22227991:0 -) -(1,21812:6630773,23093071:25952256,513147,126483 -k1,21811:7586559,23093071:296494 -k1,21811:8902137,23093071:296493 -k1,21811:11398019,23093071:296494 -k1,21811:14989008,23093071:296494 -k1,21811:16047029,23093071:296493 -(1,21811:16047029,23093071:0,452978,122846 -r1,21844:20274125,23093071:4227096,575824,122846 -k1,21811:16047029,23093071:-4227096 -) -(1,21811:16047029,23093071:4227096,452978,122846 -k1,21811:16047029,23093071:3277 -h1,21811:20270848,23093071:0,411205,112570 -) -k1,21811:20570619,23093071:296494 -k1,21811:21971395,23093071:296494 -k1,21811:23015654,23093071:296493 -k1,21811:25094727,23093071:296494 -k1,21811:27223608,23093071:296494 -k1,21811:28511661,23093071:296493 -k1,21811:31510860,23093071:296494 -k1,21811:32583029,23093071:0 -) -(1,21812:6630773,23958151:25952256,513147,126483 -k1,21811:10145268,23958151:209514 -k1,21811:11619628,23958151:209515 -k1,21811:12488434,23958151:209514 -k1,21811:14600458,23958151:209514 -k1,21811:17593942,23958151:209515 -k1,21811:18751107,23958151:209514 -k1,21811:20657348,23958151:209514 -k1,21811:22039302,23958151:209515 -k1,21811:25464012,23958151:209514 -k1,21811:25886508,23958151:209504 -k1,21811:27228484,23958151:209514 -k1,21811:30107280,23958151:209515 -k1,21811:30932832,23958151:209514 -k1,21811:32583029,23958151:0 -) -(1,21812:6630773,24823231:25952256,513147,134348 -k1,21811:8640981,24823231:223041 -k1,21811:9883107,24823231:223041 -(1,21811:9883107,24823231:0,452978,115847 -r1,21844:11999932,24823231:2116825,568825,115847 -k1,21811:9883107,24823231:-2116825 -) -(1,21811:9883107,24823231:2116825,452978,115847 -k1,21811:9883107,24823231:3277 -h1,21811:11996655,24823231:0,411205,112570 -) -k1,21811:12222973,24823231:223041 -k1,21811:15233260,24823231:223041 -k1,21811:16647746,24823231:223041 -k1,21811:18150705,24823231:223041 -k1,21811:19749346,24823231:223040 -k1,21811:21664527,24823231:223041 -k1,21811:24879287,24823231:223041 -k1,21811:26049979,24823231:223041 -(1,21811:26049979,24823231:0,459977,115847 -r1,21844:27463380,24823231:1413401,575824,115847 -k1,21811:26049979,24823231:-1413401 -) -(1,21811:26049979,24823231:1413401,459977,115847 -k1,21811:26049979,24823231:3277 -h1,21811:27460103,24823231:0,411205,112570 -) -k1,21811:27860091,24823231:223041 -k1,21811:28296100,24823231:223017 -k1,21811:29825274,24823231:223041 -k1,21811:32583029,24823231:0 -) -(1,21812:6630773,25688311:25952256,513147,134348 -g1,21811:8318325,25688311 -g1,21811:9279082,25688311 -g1,21811:12530978,25688311 -g1,21811:14060588,25688311 -g1,21811:16621079,25688311 -g1,21811:17811868,25688311 -g1,21811:20392675,25688311 -g1,21811:21783349,25688311 -g1,21811:23495804,25688311 -g1,21811:24311071,25688311 -k1,21812:32583029,25688311:7804687 -g1,21812:32583029,25688311 -) -(1,21813:6630773,27339823:25952256,513147,11795 -(1,21813:6630773,27339823:0,0,0 -g1,21813:6630773,27339823 -) -g1,21813:9054294,27339823 -g1,21813:12780671,27339823 -g1,21813:13626740,27339823 -k1,21813:32583030,27339823:18504092 -g1,21813:32583030,27339823 -) -(1,21816:6630773,28598119:25952256,513147,134348 -k1,21815:9352536,28598119:238604 -k1,21815:10695423,28598119:238605 -k1,21815:11681793,28598119:238604 -k1,21815:14752208,28598119:238604 -k1,21815:15606851,28598119:238605 -k1,21815:16260259,28598119:238565 -k1,21815:17565134,28598119:238604 -k1,21815:19179339,28598119:238604 -k1,21815:21976470,28598119:238605 -k1,21815:25189753,28598119:238604 -k1,21815:27624468,28598119:238604 -k1,21815:29257024,28598119:238605 -k1,21815:30514713,28598119:238604 -k1,21815:32583029,28598119:0 -) -(1,21816:6630773,29463199:25952256,513147,134348 -k1,21815:7480738,29463199:190673 -k1,21815:10992120,29463199:190673 -k1,21815:13564371,29463199:190673 -(1,21815:13564371,29463199:0,452978,115847 -r1,21844:16032908,29463199:2468537,568825,115847 -k1,21815:13564371,29463199:-2468537 -) -(1,21815:13564371,29463199:2468537,452978,115847 -k1,21815:13564371,29463199:3277 -h1,21815:16029631,29463199:0,411205,112570 -) -k1,21815:16397251,29463199:190673 -k1,21815:17660093,29463199:190673 -k1,21815:19136582,29463199:190673 -k1,21815:21741601,29463199:190673 -k1,21815:22618436,29463199:190673 -k1,21815:25005220,29463199:190673 -k1,21815:28508083,29463199:190673 -k1,21815:29717841,29463199:190673 -k1,21815:31232332,29463199:190664 -k1,21815:32583029,29463199:0 -) -(1,21816:6630773,30328279:25952256,505283,134348 -k1,21815:8569864,30328279:166997 -k1,21815:9928307,30328279:166998 -k1,21815:11670134,30328279:166997 -k1,21815:15764705,30328279:166998 -k1,21815:16617864,30328279:166997 -k1,21815:20751756,30328279:166998 -k1,21815:23734835,30328279:166997 -k1,21815:24918296,30328279:166998 -k1,21815:26519221,30328279:166997 -k1,21815:27483137,30328279:166998 -k1,21815:30847636,30328279:166997 -k1,21815:32583029,30328279:0 -) -(1,21816:6630773,31193359:25952256,513147,134348 -k1,21815:7423312,31193359:220410 -k1,21815:8215850,31193359:220409 -k1,21815:9008389,31193359:220410 -k1,21815:9800928,31193359:220410 -k1,21815:10593466,31193359:220409 -k1,21815:11386005,31193359:220410 -k1,21815:12178544,31193359:220410 -k1,21815:12971082,31193359:220409 -k1,21815:13763621,31193359:220410 -k1,21815:14645288,31193359:220409 -k1,21815:15438483,31193359:220410 -k1,21815:16288039,31193359:220410 -k1,21815:17185435,31193359:220409 -k1,21815:17950449,31193359:220410 -k1,21815:19362304,31193359:220410 -k1,21815:19941829,31193359:220388 -k1,21815:20848401,31193359:220410 -k1,21815:23660759,31193359:220409 -k1,21815:25374735,31193359:220410 -k1,21815:26281307,31193359:220410 -(1,21815:26281307,31193359:0,452978,115847 -r1,21844:29453267,31193359:3171960,568825,115847 -k1,21815:26281307,31193359:-3171960 -) -(1,21815:26281307,31193359:3171960,452978,115847 -k1,21815:26281307,31193359:3277 -h1,21815:29449990,31193359:0,411205,112570 -) -k1,21815:29673676,31193359:220409 -k1,21815:30841737,31193359:220410 -k1,21815:32583029,31193359:0 -) -(1,21816:6630773,32058439:25952256,513147,134348 -g1,21815:7512887,32058439 -(1,21815:7512887,32058439:0,452978,115847 -r1,21844:10684847,32058439:3171960,568825,115847 -k1,21815:7512887,32058439:-3171960 -) -(1,21815:7512887,32058439:3171960,452978,115847 -k1,21815:7512887,32058439:3277 -h1,21815:10681570,32058439:0,411205,112570 -) -g1,21815:10884076,32058439 -g1,21815:12030956,32058439 -g1,21815:14091407,32058439 -g1,21815:14973521,32058439 -(1,21815:14973521,32058439:0,452978,115847 -r1,21844:18145481,32058439:3171960,568825,115847 -k1,21815:14973521,32058439:-3171960 -) -(1,21815:14973521,32058439:3171960,452978,115847 -k1,21815:14973521,32058439:3277 -h1,21815:18142204,32058439:0,411205,112570 -) -g1,21815:18344710,32058439 -g1,21815:19491590,32058439 -g1,21815:20709904,32058439 -g1,21815:23779610,32058439 -g1,21815:26762808,32058439 -g1,21815:28433320,32058439 -k1,21816:32583029,32058439:3040840 -g1,21816:32583029,32058439 -) -(1,21819:6630773,32923519:25952256,513147,134348 -h1,21817:6630773,32923519:983040,0,0 -k1,21817:8968552,32923519:158052 -k1,21817:10120131,32923519:158053 -k1,21817:10937475,32923519:158052 -k1,21817:13126488,32923519:158052 -k1,21817:15352857,32923519:158053 -k1,21817:17648693,32923519:158052 -k1,21817:18458174,32923519:158053 -k1,21817:19031028,32923519:158011 -k1,21817:20293362,32923519:158052 -k1,21817:21199181,32923519:158053 -k1,21817:24149067,32923519:158052 -k1,21817:25054886,32923519:158053 -k1,21817:27241933,32923519:158052 -(1,21817:27241933,32923519:0,452978,115847 -r1,21844:30062182,32923519:2820249,568825,115847 -k1,21817:27241933,32923519:-2820249 -) -(1,21817:27241933,32923519:2820249,452978,115847 -k1,21817:27241933,32923519:3277 -h1,21817:30058905,32923519:0,411205,112570 -) -k1,21817:30220234,32923519:158052 -k1,21817:30991049,32923519:158053 -k1,21817:32168186,32923519:158052 -k1,21819:32583029,32923519:0 -) -(1,21819:6630773,33788599:25952256,513147,134348 -k1,21817:9358914,33788599:134226 -k1,21817:12904289,33788599:134226 -k1,21817:13689943,33788599:134226 -k1,21817:16404321,33788599:134226 -k1,21817:19540750,33788599:134226 -k1,21817:21108904,33788599:134226 -k1,21817:21657908,33788599:134161 -k1,21817:24648848,33788599:134226 -k1,21817:26158675,33788599:134226 -(1,21817:26158675,33788599:0,452978,115847 -r1,21844:27923788,33788599:1765113,568825,115847 -k1,21817:26158675,33788599:-1765113 -) -(1,21817:26158675,33788599:1765113,452978,115847 -k1,21817:26158675,33788599:3277 -h1,21817:27920511,33788599:0,411205,112570 -) -k1,21817:28058014,33788599:134226 -k1,21817:28878402,33788599:134226 -k1,21817:30031713,33788599:134226 -k1,21817:32583029,33788599:0 -) -(1,21819:6630773,34653679:25952256,513147,134348 -k1,21818:8675223,34653679:244176 -k1,21818:9938484,34653679:244176 -k1,21818:12668441,34653679:244176 -k1,21818:13571909,34653679:244176 -k1,21818:16177347,34653679:244176 -k1,21818:19379164,34653679:244177 -k1,21818:22950603,34653679:244176 -k1,21818:24833834,34653679:244176 -k1,21818:26932679,34653679:244176 -k1,21818:27986225,34653679:244176 -k1,21818:29739040,34653679:244176 -k1,21818:32051532,34653679:244176 -k1,21818:32583029,34653679:0 -) -(1,21819:6630773,35518759:25952256,513147,134348 -k1,21818:10176428,35518759:240674 -k1,21818:10772963,35518759:240675 -k1,21818:12597642,35518759:240674 -k1,21818:14144450,35518759:240675 -k1,21818:15914079,35518759:240674 -k1,21818:18944622,35518759:240675 -(1,21818:18944622,35518759:0,452978,115847 -r1,21844:21764871,35518759:2820249,568825,115847 -k1,21818:18944622,35518759:-2820249 -) -(1,21818:18944622,35518759:2820249,452978,115847 -k1,21818:18944622,35518759:3277 -h1,21818:21761594,35518759:0,411205,112570 -) -k1,21818:22005545,35518759:240674 -k1,21818:24587166,35518759:240675 -k1,21818:25183700,35518759:240674 -k1,21818:28399054,35518759:240675 -k1,21818:30791275,35518759:240674 -k1,21819:32583029,35518759:0 -) -(1,21819:6630773,36383839:25952256,513147,134348 -(1,21818:6630773,36383839:0,452978,122846 -r1,21844:8747598,36383839:2116825,575824,122846 -k1,21818:6630773,36383839:-2116825 -) -(1,21818:6630773,36383839:2116825,452978,122846 -k1,21818:6630773,36383839:3277 -h1,21818:8744321,36383839:0,411205,112570 -) -k1,21818:8937651,36383839:190053 -k1,21818:9585802,36383839:190054 -k1,21818:10307352,36383839:190053 -k1,21818:13127366,36383839:190054 -k1,21818:14583575,36383839:190053 -k1,21818:15792713,36383839:190053 -k1,21818:18051083,36383839:190054 -k1,21818:21603133,36383839:190053 -k1,21818:22149046,36383839:190053 -k1,21818:24033861,36383839:190054 -k1,21818:27198593,36383839:190053 -k1,21818:30573697,36383839:190054 -k1,21818:31379788,36383839:190053 -k1,21818:32583029,36383839:0 -) -(1,21819:6630773,37248919:25952256,505283,126483 -g1,21818:9491419,37248919 -(1,21818:9491419,37248919:0,452978,115847 -r1,21844:11608244,37248919:2116825,568825,115847 -k1,21818:9491419,37248919:-2116825 -) -(1,21818:9491419,37248919:2116825,452978,115847 -k1,21818:9491419,37248919:3277 -h1,21818:11604967,37248919:0,411205,112570 -) -k1,21819:32583028,37248919:20922356 -g1,21819:32583028,37248919 -) -v1,21821:6630773,37933774:0,393216,0 -(1,21844:6630773,45510161:25952256,7969603,196608 -g1,21844:6630773,45510161 -g1,21844:6630773,45510161 -g1,21844:6434165,45510161 -(1,21844:6434165,45510161:0,7969603,196608 -r1,21844:32779637,45510161:26345472,8166211,196608 -k1,21844:6434165,45510161:-26345472 -) -(1,21844:6434165,45510161:26345472,7969603,196608 -[1,21844:6630773,45510161:25952256,7772995,0 -(1,21823:6630773,38161605:25952256,424439,112852 -(1,21822:6630773,38161605:0,0,0 -g1,21822:6630773,38161605 -g1,21822:6630773,38161605 -g1,21822:6303093,38161605 -(1,21822:6303093,38161605:0,0,0 -) -g1,21822:6630773,38161605 -) -k1,21823:6630773,38161605:0 -k1,21823:6630773,38161605:0 -h1,21823:11942037,38161605:0,0,0 -k1,21823:32583029,38161605:20640992 -g1,21823:32583029,38161605 -) -(1,21827:6630773,38975511:25952256,424439,79822 -(1,21825:6630773,38975511:0,0,0 -g1,21825:6630773,38975511 -g1,21825:6630773,38975511 -g1,21825:6303093,38975511 -(1,21825:6303093,38975511:0,0,0 -) -g1,21825:6630773,38975511 -) -g1,21827:7626635,38975511 -g1,21827:8954451,38975511 -h1,21827:9950313,38975511:0,0,0 -k1,21827:32583029,38975511:22632716 -g1,21827:32583029,38975511 -) -(1,21829:6630773,39789418:25952256,424439,112852 -(1,21828:6630773,39789418:0,0,0 -g1,21828:6630773,39789418 -g1,21828:6630773,39789418 -g1,21828:6303093,39789418 -(1,21828:6303093,39789418:0,0,0 -) -g1,21828:6630773,39789418 -) -k1,21829:6630773,39789418:0 -g1,21829:13933761,39789418 -g1,21829:15925485,39789418 -g1,21829:16589393,39789418 -h1,21829:18249163,39789418:0,0,0 -k1,21829:32583029,39789418:14333866 -g1,21829:32583029,39789418 -) -(1,21843:6630773,40603324:25952256,424439,112852 -(1,21831:6630773,40603324:0,0,0 -g1,21831:6630773,40603324 -g1,21831:6630773,40603324 -g1,21831:6303093,40603324 -(1,21831:6303093,40603324:0,0,0 -) -g1,21831:6630773,40603324 -) -g1,21843:7626635,40603324 -g1,21843:7958589,40603324 -g1,21843:9286405,40603324 -g1,21843:12937898,40603324 -g1,21843:13269852,40603324 -g1,21843:13601806,40603324 -g1,21843:13933760,40603324 -g1,21843:14265714,40603324 -g1,21843:14597668,40603324 -g1,21843:14929622,40603324 -g1,21843:15261576,40603324 -g1,21843:18913069,40603324 -g1,21843:19245023,40603324 -g1,21843:19576977,40603324 -g1,21843:19908931,40603324 -g1,21843:20240885,40603324 -g1,21843:20572839,40603324 -g1,21843:20904793,40603324 -g1,21843:21236747,40603324 -g1,21843:26548010,40603324 -g1,21843:26879964,40603324 -g1,21843:27211918,40603324 -h1,21843:32523181,40603324:0,0,0 -k1,21843:32583029,40603324:59848 -g1,21843:32583029,40603324 -) -(1,21843:6630773,41288179:25952256,424439,112852 -h1,21843:6630773,41288179:0,0,0 -g1,21843:7626635,41288179 -g1,21843:7958589,41288179 -g1,21843:9286405,41288179 -g1,21843:14929622,41288179 -g1,21843:15261576,41288179 -g1,21843:20904793,41288179 -g1,21843:21236747,41288179 -g1,21843:26879964,41288179 -g1,21843:27211918,41288179 -h1,21843:30531457,41288179:0,0,0 -k1,21843:32583029,41288179:2051572 -g1,21843:32583029,41288179 -) -(1,21843:6630773,41973034:25952256,424439,112852 -h1,21843:6630773,41973034:0,0,0 -g1,21843:7626635,41973034 -g1,21843:7958589,41973034 -g1,21843:9286405,41973034 -g1,21843:13269852,41973034 -g1,21843:13601806,41973034 -g1,21843:13933760,41973034 -g1,21843:14265714,41973034 -g1,21843:14597668,41973034 -g1,21843:14929622,41973034 -g1,21843:15261576,41973034 -g1,21843:18913069,41973034 -g1,21843:19245023,41973034 -g1,21843:19576977,41973034 -g1,21843:19908931,41973034 -g1,21843:20240885,41973034 -g1,21843:20572839,41973034 -g1,21843:20904793,41973034 -g1,21843:21236747,41973034 -g1,21843:25220194,41973034 -g1,21843:25552148,41973034 -g1,21843:25884102,41973034 -g1,21843:26216056,41973034 -g1,21843:26548010,41973034 -g1,21843:26879964,41973034 -g1,21843:27211918,41973034 -h1,21843:31527319,41973034:0,0,0 -k1,21843:32583029,41973034:1055710 -g1,21843:32583029,41973034 -) -(1,21843:6630773,42657889:25952256,424439,112852 -h1,21843:6630773,42657889:0,0,0 -k1,21843:7581284,42657889:286603 -k1,21843:9195703,42657889:286603 -k1,21843:14793569,42657889:286603 -k1,21843:15080172,42657889:286603 -k1,21843:21009992,42657889:286603 -k1,21843:26939812,42657889:286603 -h1,21843:32583029,42657889:0,0,0 -k1,21843:32583029,42657889:0 -k1,21843:32583029,42657889:0 -) -(1,21843:6630773,43342744:25952256,424439,112852 -h1,21843:6630773,43342744:0,0,0 -g1,21843:7626635,43342744 -g1,21843:9286405,43342744 -g1,21843:15261576,43342744 -g1,21843:19576977,43342744 -g1,21843:19908931,43342744 -g1,21843:20240885,43342744 -g1,21843:20572839,43342744 -g1,21843:20904793,43342744 -g1,21843:21236747,43342744 -g1,21843:25884102,43342744 -g1,21843:26216056,43342744 -g1,21843:26548010,43342744 -g1,21843:26879964,43342744 -g1,21843:27211918,43342744 -h1,21843:31527319,43342744:0,0,0 -k1,21843:32583029,43342744:1055710 -g1,21843:32583029,43342744 -) -(1,21843:6630773,44027599:25952256,424439,112852 -h1,21843:6630773,44027599:0,0,0 -g1,21843:7626635,44027599 -g1,21843:9286405,44027599 -g1,21843:13933760,44027599 -g1,21843:14265714,44027599 -g1,21843:14597668,44027599 -g1,21843:14929622,44027599 -g1,21843:15261576,44027599 -g1,21843:19908931,44027599 -g1,21843:20240885,44027599 -g1,21843:20572839,44027599 -g1,21843:20904793,44027599 -g1,21843:21236747,44027599 -g1,21843:25552148,44027599 -g1,21843:25884102,44027599 -g1,21843:26216056,44027599 -g1,21843:26548010,44027599 -g1,21843:26879964,44027599 -g1,21843:27211918,44027599 -h1,21843:31527319,44027599:0,0,0 -k1,21843:32583029,44027599:1055710 -g1,21843:32583029,44027599 -) -(1,21843:6630773,44712454:25952256,424439,79822 -h1,21843:6630773,44712454:0,0,0 -g1,21843:7626635,44712454 -g1,21843:9286405,44712454 -g1,21843:13933760,44712454 -g1,21843:14265714,44712454 -g1,21843:14597668,44712454 -g1,21843:14929622,44712454 -g1,21843:15261576,44712454 -g1,21843:19908931,44712454 -g1,21843:20240885,44712454 -g1,21843:20572839,44712454 -g1,21843:20904793,44712454 -g1,21843:21236747,44712454 -g1,21843:25884102,44712454 -g1,21843:26216056,44712454 -g1,21843:26548010,44712454 -g1,21843:26879964,44712454 -g1,21843:27211918,44712454 -h1,21843:30199503,44712454:0,0,0 -k1,21843:32583029,44712454:2383526 -g1,21843:32583029,44712454 -) -(1,21843:6630773,45397309:25952256,424439,112852 -h1,21843:6630773,45397309:0,0,0 -g1,21843:7626635,45397309 -g1,21843:9286405,45397309 -g1,21843:13601806,45397309 -g1,21843:13933760,45397309 -g1,21843:14265714,45397309 -g1,21843:14597668,45397309 -g1,21843:14929622,45397309 -g1,21843:15261576,45397309 -g1,21843:20240885,45397309 -g1,21843:20572839,45397309 -g1,21843:20904793,45397309 -g1,21843:21236747,45397309 -g1,21843:26548010,45397309 -g1,21843:26879964,45397309 -g1,21843:27211918,45397309 -h1,21843:32191227,45397309:0,0,0 -k1,21843:32583029,45397309:391802 -g1,21843:32583029,45397309 -) -] -) -g1,21844:32583029,45510161 -g1,21844:6630773,45510161 -g1,21844:6630773,45510161 -g1,21844:32583029,45510161 -g1,21844:32583029,45510161 -) -] -(1,21844:32583029,45706769:0,0,0 -g1,21844:32583029,45706769 -) -) -] -(1,21844:6630773,47279633:25952256,0,0 -h1,21844:6630773,47279633:25952256,0,0 -) -] -(1,21844:4262630,4025873:0,0,0 -[1,21844:-473656,4025873:0,0,0 -(1,21844:-473656,-710413:0,0,0 -(1,21844:-473656,-710413:0,0,0 -g1,21844:-473656,-710413 -) -g1,21844:-473656,-710413 +(1,21796:22128425,6254097:4227096,452978,122846 +k1,21796:22128425,6254097:3277 +h1,21796:26352244,6254097:0,411205,112570 +) +k1,21796:26768927,6254097:413406 +k1,21796:28373778,6254097:413406 +k1,21796:31008855,6254097:413406 +k1,21796:32583029,6254097:0 +) +(1,21797:6630773,7119177:25952256,505283,126483 +k1,21796:8333774,7119177:199605 +k1,21796:9552465,7119177:199606 +(1,21796:9552465,7119177:0,452978,115847 +r1,21842:12724425,7119177:3171960,568825,115847 +k1,21796:9552465,7119177:-3171960 +) +(1,21796:9552465,7119177:3171960,452978,115847 +k1,21796:9552465,7119177:3277 +h1,21796:12721148,7119177:0,411205,112570 +) +k1,21796:12924030,7119177:199605 +k1,21796:16141569,7119177:199606 +k1,21796:19436439,7119177:199605 +(1,21796:19436439,7119177:0,452978,122846 +r1,21842:25422094,7119177:5985655,575824,122846 +k1,21796:19436439,7119177:-5985655 +) +(1,21796:19436439,7119177:5985655,452978,122846 +k1,21796:19436439,7119177:3277 +h1,21796:25418817,7119177:0,411205,112570 +) +k1,21796:25621699,7119177:199605 +k1,21796:27655002,7119177:199606 +k1,21796:29321303,7119177:199605 +k1,21796:32583029,7119177:0 +) +(1,21797:6630773,7984257:25952256,513147,134348 +k1,21796:7545709,7984257:228774 +k1,21796:10787172,7984257:228773 +(1,21796:10787172,7984257:0,452978,115847 +r1,21842:12200573,7984257:1413401,568825,115847 +k1,21796:10787172,7984257:-1413401 +) +(1,21796:10787172,7984257:1413401,452978,115847 +k1,21796:10787172,7984257:3277 +h1,21796:12197296,7984257:0,411205,112570 +) +k1,21796:12429347,7984257:228774 +k1,21796:13189617,7984257:228773 +k1,21796:14931617,7984257:228774 +k1,21796:16108041,7984257:228773 +k1,21796:17355900,7984257:228774 +k1,21796:18853451,7984257:228774 +k1,21796:19741516,7984257:228773 +k1,21796:20989375,7984257:228774 +k1,21796:22906355,7984257:228773 +k1,21796:24326574,7984257:228774 +(1,21796:24326574,7984257:0,452978,115847 +r1,21842:27498534,7984257:3171960,568825,115847 +k1,21796:24326574,7984257:-3171960 +) +(1,21796:24326574,7984257:3171960,452978,115847 +k1,21796:24326574,7984257:3277 +h1,21796:27495257,7984257:0,411205,112570 +) +k1,21796:27727307,7984257:228773 +k1,21796:28903732,7984257:228774 +k1,21796:30151590,7984257:228773 +k1,21796:31425008,7984257:228774 +k1,21797:32583029,7984257:0 +) +(1,21797:6630773,8849337:25952256,505283,134348 +k1,21796:8696512,8849337:253013 +k1,21796:9577359,8849337:253012 +k1,21796:13337859,8849337:253013 +(1,21796:13337859,8849337:0,452978,122846 +r1,21842:16861531,8849337:3523672,575824,122846 +k1,21796:13337859,8849337:-3523672 +) +(1,21796:13337859,8849337:3523672,452978,122846 +k1,21796:13337859,8849337:3277 +h1,21796:16858254,8849337:0,411205,112570 +) +k1,21796:17288214,8849337:253013 +(1,21796:17288214,8849337:0,452978,122846 +r1,21842:20811886,8849337:3523672,575824,122846 +k1,21796:17288214,8849337:-3523672 +) +(1,21796:17288214,8849337:3523672,452978,122846 +k1,21796:17288214,8849337:3277 +h1,21796:20808609,8849337:0,411205,112570 +) +k1,21796:21238568,8849337:253012 +(1,21796:21238568,8849337:0,452978,122846 +r1,21842:25113952,8849337:3875384,575824,122846 +k1,21796:21238568,8849337:-3875384 +) +(1,21796:21238568,8849337:3875384,452978,122846 +k1,21796:21238568,8849337:3277 +h1,21796:25110675,8849337:0,411205,112570 +) +k1,21796:25540635,8849337:253013 +(1,21796:25540635,8849337:0,452978,122846 +r1,21842:30119443,8849337:4578808,575824,122846 +k1,21796:25540635,8849337:-4578808 +) +(1,21796:25540635,8849337:4578808,452978,122846 +k1,21796:25540635,8849337:3277 +h1,21796:30116166,8849337:0,411205,112570 +) +k1,21796:30372455,8849337:253012 +k1,21796:31816913,8849337:253013 +k1,21796:32583029,8849337:0 +) +(1,21797:6630773,9714417:25952256,513147,134348 +k1,21796:8505101,9714417:172358 +k1,21796:11840882,9714417:172358 +k1,21796:14882406,9714417:172358 +k1,21796:17962596,9714417:172358 +k1,21796:18896482,9714417:172358 +k1,21796:20741320,9714417:172359 +(1,21796:20741320,9714417:0,452978,115847 +r1,21842:23913280,9714417:3171960,568825,115847 +k1,21796:20741320,9714417:-3171960 +) +(1,21796:20741320,9714417:3171960,452978,115847 +k1,21796:20741320,9714417:3277 +h1,21796:23910003,9714417:0,411205,112570 +) +k1,21796:24085638,9714417:172358 +k1,21796:26876159,9714417:172358 +k1,21796:28067602,9714417:172358 +k1,21796:30054652,9714417:172358 +k1,21796:30886302,9714417:172358 +k1,21796:32583029,9714417:0 +) +(1,21797:6630773,10579497:25952256,505283,134348 +g1,21796:8502481,10579497 +g1,21796:10007843,10579497 +g1,21796:11879551,10579497 +g1,21796:13775507,10579497 +g1,21796:16444788,10579497 +g1,21796:17835462,10579497 +g1,21796:21055901,10579497 +g1,21796:22540946,10579497 +g1,21796:24243571,10579497 +g1,21796:25461885,10579497 +(1,21796:25461885,10579497:0,452978,115847 +r1,21842:28282134,10579497:2820249,568825,115847 +k1,21796:25461885,10579497:-2820249 +) +(1,21796:25461885,10579497:2820249,452978,115847 +k1,21796:25461885,10579497:3277 +h1,21796:28278857,10579497:0,411205,112570 +) +g1,21796:28481363,10579497 +k1,21797:32583029,10579497:1204975 +g1,21797:32583029,10579497 +) +v1,21799:6630773,11444577:0,393216,0 +(1,21800:6630773,14527477:25952256,3476116,0 +g1,21800:6630773,14527477 +g1,21800:6237557,14527477 +r1,21842:6368629,14527477:131072,3476116,0 +g1,21800:6567858,14527477 +g1,21800:6764466,14527477 +[1,21800:6764466,14527477:25818563,3476116,0 +(1,21800:6764466,11805754:25818563,754393,260573 +(1,21799:6764466,11805754:0,754393,260573 +r1,21842:7856192,11805754:1091726,1014966,260573 +k1,21799:6764466,11805754:-1091726 +) +(1,21799:6764466,11805754:1091726,754393,260573 +) +k1,21799:8057872,11805754:201680 +k1,21799:8385552,11805754:327680 +k1,21799:10378986,11805754:201680 +(1,21799:10378986,11805754:0,452978,115847 +r1,21842:13550946,11805754:3171960,568825,115847 +k1,21799:10378986,11805754:-3171960 +) +(1,21799:10378986,11805754:3171960,452978,115847 +k1,21799:10378986,11805754:3277 +h1,21799:13547669,11805754:0,411205,112570 +) +k1,21799:13752626,11805754:201680 +k1,21799:16000340,11805754:201680 +k1,21799:17698207,11805754:201680 +k1,21799:22051593,11805754:201680 +k1,21799:23647224,11805754:201680 +k1,21799:26512943,11805754:201680 +k1,21799:27373915,11805754:201680 +k1,21799:30404128,11805754:201680 +k1,21799:31004267,11805754:201680 +k1,21799:32583029,11805754:0 +) +(1,21800:6764466,12670834:25818563,505283,134348 +k1,21799:7631088,12670834:215194 +k1,21799:9562670,12670834:215194 +k1,21799:11467382,12670834:215194 +k1,21799:15103556,12670834:215195 +k1,21799:15970178,12670834:215194 +k1,21799:17277857,12670834:215194 +(1,21799:17277857,12670834:0,452978,115847 +r1,21842:18691258,12670834:1413401,568825,115847 +k1,21799:17277857,12670834:-1413401 +) +(1,21799:17277857,12670834:1413401,452978,115847 +k1,21799:17277857,12670834:3277 +h1,21799:18687981,12670834:0,411205,112570 +) +k1,21799:18906452,12670834:215194 +k1,21799:20254108,12670834:215194 +k1,21799:22599878,12670834:215195 +k1,21799:26596499,12670834:215194 +k1,21799:29847321,12670834:215194 +k1,21799:30678553,12670834:215194 +k1,21799:32583029,12670834:0 +) +(1,21800:6764466,13535914:25818563,513147,134348 +k1,21799:9637814,13535914:227004 +k1,21799:10524110,13535914:227004 +k1,21799:13579647,13535914:227004 +k1,21799:14378779,13535914:227003 +k1,21799:18068705,13535914:227004 +k1,21799:19388194,13535914:227004 +k1,21799:20282354,13535914:227004 +(1,21799:20282354,13535914:0,452978,115847 +r1,21842:21695755,13535914:1413401,568825,115847 +k1,21799:20282354,13535914:-1413401 +) +(1,21799:20282354,13535914:1413401,452978,115847 +k1,21799:20282354,13535914:3277 +h1,21799:21692478,13535914:0,411205,112570 +) +k1,21799:21922759,13535914:227004 +k1,21799:23097414,13535914:227004 +k1,21799:24823226,13535914:227004 +k1,21799:26182691,13535914:227003 +k1,21799:28852877,13535914:227004 +k1,21799:29850584,13535914:227004 +k1,21799:31858201,13535914:227004 +k1,21799:32583029,13535914:0 +) +(1,21800:6764466,14400994:25818563,513147,126483 +g1,21799:8635519,14400994 +g1,21799:11638378,14400994 +g1,21799:12295704,14400994 +g1,21799:13026430,14400994 +g1,21799:16491318,14400994 +g1,21799:17341975,14400994 +g1,21799:18633689,14400994 +g1,21799:19852003,14400994 +g1,21799:21334427,14400994 +(1,21799:21334427,14400994:0,452978,115847 +r1,21842:24506387,14400994:3171960,568825,115847 +k1,21799:21334427,14400994:-3171960 +) +(1,21799:21334427,14400994:3171960,452978,115847 +k1,21799:21334427,14400994:3277 +h1,21799:24503110,14400994:0,411205,112570 +) +g1,21799:24705616,14400994 +k1,21800:32583029,14400994:4980722 +g1,21800:32583029,14400994 +) +] +g1,21800:32583029,14527477 +) +h1,21800:6630773,14527477:0,0,0 +(1,21805:6630773,16644295:25952256,564462,12975 +(1,21805:6630773,16644295:2899444,534184,12975 +g1,21805:6630773,16644295 +g1,21805:9530217,16644295 +) +g1,21805:12196091,16644295 +g1,21805:13763319,16644295 +k1,21805:32583028,16644295:17866684 +g1,21805:32583028,16644295 +) +(1,21810:6630773,17902591:25952256,513147,126483 +k1,21809:8029628,17902591:223795 +(1,21809:8029628,17902591:0,452978,115847 +r1,21842:10146453,17902591:2116825,568825,115847 +k1,21809:8029628,17902591:-2116825 +) +(1,21809:8029628,17902591:2116825,452978,115847 +k1,21809:8029628,17902591:3277 +h1,21809:10143176,17902591:0,411205,112570 +) +k1,21809:10370249,17902591:223796 +k1,21809:11785489,17902591:223795 +(1,21809:11785489,17902591:0,459977,115847 +r1,21842:13198890,17902591:1413401,575824,115847 +k1,21809:11785489,17902591:-1413401 +) +(1,21809:11785489,17902591:1413401,459977,115847 +k1,21809:11785489,17902591:3277 +h1,21809:13195613,17902591:0,411205,112570 +) +k1,21809:13422686,17902591:223796 +k1,21809:15548991,17902591:223795 +k1,21809:16764347,17902591:223796 +k1,21809:18342116,17902591:223795 +k1,21809:20941592,17902591:223796 +k1,21809:22237556,17902591:223795 +k1,21809:23841540,17902591:223796 +k1,21809:25844637,17902591:223795 +k1,21809:28830776,17902591:223796 +k1,21809:31923737,17902591:223795 +k1,21809:32583029,17902591:0 +) +(1,21810:6630773,18767671:25952256,505283,126483 +k1,21809:7844031,18767671:194173 +k1,21809:9489171,18767671:194173 +k1,21809:10581187,18767671:194173 +k1,21809:12639859,18767671:194173 +k1,21809:15703198,18767671:194173 +k1,21809:16513409,18767671:194173 +k1,21809:17063442,18767671:194173 +k1,21809:18534912,18767671:194173 +k1,21809:20232481,18767671:194173 +k1,21809:21445739,18767671:194173 +(1,21809:21445739,18767671:0,452978,115847 +r1,21842:23562564,18767671:2116825,568825,115847 +k1,21809:21445739,18767671:-2116825 +) +(1,21809:21445739,18767671:2116825,452978,115847 +k1,21809:21445739,18767671:3277 +h1,21809:23559287,18767671:0,411205,112570 +) +k1,21809:23756737,18767671:194173 +k1,21809:26877747,18767671:194173 +k1,21809:28144089,18767671:194173 +k1,21809:29713863,18767671:194173 +k1,21809:32583029,18767671:0 +) +(1,21810:6630773,19632751:25952256,505283,134348 +k1,21809:8159693,19632751:244414 +k1,21809:9879322,19632751:244414 +k1,21809:10894439,19632751:244414 +k1,21809:12805434,19632751:244414 +k1,21809:15070323,19632751:244414 +k1,21809:16506182,19632751:244414 +k1,21809:17106457,19632751:244415 +k1,21809:20575242,19632751:244414 +k1,21809:22323052,19632751:244414 +k1,21809:24034162,19632751:244414 +(1,21809:24034162,19632751:0,452978,115847 +r1,21842:26150987,19632751:2116825,568825,115847 +k1,21809:24034162,19632751:-2116825 +) +(1,21809:24034162,19632751:2116825,452978,115847 +k1,21809:24034162,19632751:3277 +h1,21809:26147710,19632751:0,411205,112570 +) +k1,21809:26395401,19632751:244414 +k1,21809:27831260,19632751:244414 +(1,21809:27831260,19632751:0,459977,115847 +r1,21842:29244661,19632751:1413401,575824,115847 +k1,21809:27831260,19632751:-1413401 +) +(1,21809:27831260,19632751:1413401,459977,115847 +k1,21809:27831260,19632751:3277 +h1,21809:29241384,19632751:0,411205,112570 +) +k1,21809:29489075,19632751:244414 +k1,21809:32583029,19632751:0 +) +(1,21810:6630773,20497831:25952256,505283,126483 +k1,21809:8037568,20497831:231735 +k1,21809:11320005,20497831:231736 +k1,21809:13044650,20497831:231735 +k1,21809:14342656,20497831:231735 +k1,21809:16104657,20497831:231735 +k1,21809:16987821,20497831:231736 +k1,21809:17967322,20497831:231735 +k1,21809:21074121,20497831:231735 +k1,21809:21992018,20497831:231735 +k1,21809:22579614,20497831:231736 +k1,21809:23979856,20497831:231735 +k1,21809:25909629,20497831:231735 +k1,21809:27160449,20497831:231735 +k1,21809:28669482,20497831:231736 +k1,21809:29432714,20497831:231735 +k1,21809:32583029,20497831:0 +) +(1,21810:6630773,21362911:25952256,513147,122846 +k1,21809:7870430,21362911:167488 +k1,21809:8496014,21362911:167487 +k1,21809:10285518,21362911:167488 +k1,21809:12127451,21362911:167488 +k1,21809:13675783,21362911:167488 +k1,21809:14374767,21362911:167487 +k1,21809:15561340,21362911:167488 +k1,21809:17095909,21362911:167488 +k1,21809:18211047,21362911:167487 +(1,21809:18211047,21362911:0,452978,122846 +r1,21842:22086431,21362911:3875384,575824,122846 +k1,21809:18211047,21362911:-3875384 +) +(1,21809:18211047,21362911:3875384,452978,122846 +k1,21809:18211047,21362911:3277 +h1,21809:22083154,21362911:0,411205,112570 +) +k1,21809:22253919,21362911:167488 +k1,21809:23612852,21362911:167488 +(1,21809:23612852,21362911:0,452978,122846 +r1,21842:28191660,21362911:4578808,575824,122846 +k1,21809:23612852,21362911:-4578808 +) +(1,21809:23612852,21362911:4578808,452978,122846 +k1,21809:23612852,21362911:3277 +h1,21809:28188383,21362911:0,411205,112570 +) +k1,21809:28359148,21362911:167488 +k1,21809:29811141,21362911:167487 +k1,21809:30594667,21362911:167488 +k1,21809:32583029,21362911:0 +) +(1,21810:6630773,22227991:25952256,513147,134348 +k1,21809:9513551,22227991:236434 +k1,21809:10409276,22227991:236433 +k1,21809:13474243,22227991:236434 +k1,21809:14702236,22227991:236433 +k1,21809:18001823,22227991:236434 +k1,21809:19632208,22227991:236434 +k1,21809:21367449,22227991:236433 +k1,21809:22979484,22227991:236434 +k1,21809:24025288,22227991:236434 +k1,21809:25953861,22227991:236433 +k1,21809:28183900,22227991:236434 +k1,21809:29910622,22227991:236433 +k1,21809:30502916,22227991:236434 +k1,21809:32583029,22227991:0 +) +(1,21810:6630773,23093071:25952256,513147,126483 +k1,21809:7586559,23093071:296494 +k1,21809:8902137,23093071:296493 +k1,21809:11398019,23093071:296494 +k1,21809:14989008,23093071:296494 +k1,21809:16047029,23093071:296493 +(1,21809:16047029,23093071:0,452978,122846 +r1,21842:20274125,23093071:4227096,575824,122846 +k1,21809:16047029,23093071:-4227096 +) +(1,21809:16047029,23093071:4227096,452978,122846 +k1,21809:16047029,23093071:3277 +h1,21809:20270848,23093071:0,411205,112570 +) +k1,21809:20570619,23093071:296494 +k1,21809:21971395,23093071:296494 +k1,21809:23015654,23093071:296493 +k1,21809:25094727,23093071:296494 +k1,21809:27223608,23093071:296494 +k1,21809:28511661,23093071:296493 +k1,21809:31510860,23093071:296494 +k1,21809:32583029,23093071:0 +) +(1,21810:6630773,23958151:25952256,513147,126483 +k1,21809:10145268,23958151:209514 +k1,21809:11619628,23958151:209515 +k1,21809:12488434,23958151:209514 +k1,21809:14600458,23958151:209514 +k1,21809:17593942,23958151:209515 +k1,21809:18751107,23958151:209514 +k1,21809:20657348,23958151:209514 +k1,21809:22039302,23958151:209515 +k1,21809:25464012,23958151:209514 +k1,21809:25886508,23958151:209504 +k1,21809:27228484,23958151:209514 +k1,21809:30107280,23958151:209515 +k1,21809:30932832,23958151:209514 +k1,21809:32583029,23958151:0 +) +(1,21810:6630773,24823231:25952256,513147,134348 +k1,21809:8640981,24823231:223041 +k1,21809:9883107,24823231:223041 +(1,21809:9883107,24823231:0,452978,115847 +r1,21842:11999932,24823231:2116825,568825,115847 +k1,21809:9883107,24823231:-2116825 +) +(1,21809:9883107,24823231:2116825,452978,115847 +k1,21809:9883107,24823231:3277 +h1,21809:11996655,24823231:0,411205,112570 +) +k1,21809:12222973,24823231:223041 +k1,21809:15233260,24823231:223041 +k1,21809:16647746,24823231:223041 +k1,21809:18150705,24823231:223041 +k1,21809:19749346,24823231:223040 +k1,21809:21664527,24823231:223041 +k1,21809:24879287,24823231:223041 +k1,21809:26049979,24823231:223041 +(1,21809:26049979,24823231:0,459977,115847 +r1,21842:27463380,24823231:1413401,575824,115847 +k1,21809:26049979,24823231:-1413401 +) +(1,21809:26049979,24823231:1413401,459977,115847 +k1,21809:26049979,24823231:3277 +h1,21809:27460103,24823231:0,411205,112570 +) +k1,21809:27860091,24823231:223041 +k1,21809:28296100,24823231:223017 +k1,21809:29825274,24823231:223041 +k1,21809:32583029,24823231:0 +) +(1,21810:6630773,25688311:25952256,513147,134348 +g1,21809:8318325,25688311 +g1,21809:9279082,25688311 +g1,21809:12530978,25688311 +g1,21809:14060588,25688311 +g1,21809:16621079,25688311 +g1,21809:17811868,25688311 +g1,21809:20392675,25688311 +g1,21809:21783349,25688311 +g1,21809:23495804,25688311 +g1,21809:24311071,25688311 +k1,21810:32583029,25688311:7804687 +g1,21810:32583029,25688311 +) +(1,21811:6630773,27339823:25952256,513147,11795 +(1,21811:6630773,27339823:0,0,0 +g1,21811:6630773,27339823 +) +g1,21811:9054294,27339823 +g1,21811:12780671,27339823 +g1,21811:13626740,27339823 +k1,21811:32583030,27339823:18504092 +g1,21811:32583030,27339823 +) +(1,21814:6630773,28598119:25952256,513147,134348 +k1,21813:9352536,28598119:238604 +k1,21813:10695423,28598119:238605 +k1,21813:11681793,28598119:238604 +k1,21813:14752208,28598119:238604 +k1,21813:15606851,28598119:238605 +k1,21813:16260259,28598119:238565 +k1,21813:17565134,28598119:238604 +k1,21813:19179339,28598119:238604 +k1,21813:21976470,28598119:238605 +k1,21813:25189753,28598119:238604 +k1,21813:27624468,28598119:238604 +k1,21813:29257024,28598119:238605 +k1,21813:30514713,28598119:238604 +k1,21813:32583029,28598119:0 +) +(1,21814:6630773,29463199:25952256,513147,134348 +k1,21813:7480738,29463199:190673 +k1,21813:10992120,29463199:190673 +k1,21813:13564371,29463199:190673 +(1,21813:13564371,29463199:0,452978,115847 +r1,21842:16032908,29463199:2468537,568825,115847 +k1,21813:13564371,29463199:-2468537 +) +(1,21813:13564371,29463199:2468537,452978,115847 +k1,21813:13564371,29463199:3277 +h1,21813:16029631,29463199:0,411205,112570 +) +k1,21813:16397251,29463199:190673 +k1,21813:17660093,29463199:190673 +k1,21813:19136582,29463199:190673 +k1,21813:21741601,29463199:190673 +k1,21813:22618436,29463199:190673 +k1,21813:25005220,29463199:190673 +k1,21813:28508083,29463199:190673 +k1,21813:29717841,29463199:190673 +k1,21813:31232332,29463199:190664 +k1,21813:32583029,29463199:0 +) +(1,21814:6630773,30328279:25952256,505283,134348 +k1,21813:8569864,30328279:166997 +k1,21813:9928307,30328279:166998 +k1,21813:11670134,30328279:166997 +k1,21813:15764705,30328279:166998 +k1,21813:16617864,30328279:166997 +k1,21813:20751756,30328279:166998 +k1,21813:23734835,30328279:166997 +k1,21813:24918296,30328279:166998 +k1,21813:26519221,30328279:166997 +k1,21813:27483137,30328279:166998 +k1,21813:30847636,30328279:166997 +k1,21813:32583029,30328279:0 +) +(1,21814:6630773,31193359:25952256,513147,134348 +k1,21813:7423312,31193359:220410 +k1,21813:8215850,31193359:220409 +k1,21813:9008389,31193359:220410 +k1,21813:9800928,31193359:220410 +k1,21813:10593466,31193359:220409 +k1,21813:11386005,31193359:220410 +k1,21813:12178544,31193359:220410 +k1,21813:12971082,31193359:220409 +k1,21813:13763621,31193359:220410 +k1,21813:14645288,31193359:220409 +k1,21813:15438483,31193359:220410 +k1,21813:16288039,31193359:220410 +k1,21813:17185435,31193359:220409 +k1,21813:17950449,31193359:220410 +k1,21813:19362304,31193359:220410 +k1,21813:19941829,31193359:220388 +k1,21813:20848401,31193359:220410 +k1,21813:23660759,31193359:220409 +k1,21813:25374735,31193359:220410 +k1,21813:26281307,31193359:220410 +(1,21813:26281307,31193359:0,452978,115847 +r1,21842:29453267,31193359:3171960,568825,115847 +k1,21813:26281307,31193359:-3171960 +) +(1,21813:26281307,31193359:3171960,452978,115847 +k1,21813:26281307,31193359:3277 +h1,21813:29449990,31193359:0,411205,112570 +) +k1,21813:29673676,31193359:220409 +k1,21813:30841737,31193359:220410 +k1,21813:32583029,31193359:0 +) +(1,21814:6630773,32058439:25952256,513147,134348 +g1,21813:7512887,32058439 +(1,21813:7512887,32058439:0,452978,115847 +r1,21842:10684847,32058439:3171960,568825,115847 +k1,21813:7512887,32058439:-3171960 +) +(1,21813:7512887,32058439:3171960,452978,115847 +k1,21813:7512887,32058439:3277 +h1,21813:10681570,32058439:0,411205,112570 +) +g1,21813:10884076,32058439 +g1,21813:12030956,32058439 +g1,21813:14091407,32058439 +g1,21813:14973521,32058439 +(1,21813:14973521,32058439:0,452978,115847 +r1,21842:18145481,32058439:3171960,568825,115847 +k1,21813:14973521,32058439:-3171960 +) +(1,21813:14973521,32058439:3171960,452978,115847 +k1,21813:14973521,32058439:3277 +h1,21813:18142204,32058439:0,411205,112570 +) +g1,21813:18344710,32058439 +g1,21813:19491590,32058439 +g1,21813:20709904,32058439 +g1,21813:23779610,32058439 +g1,21813:26762808,32058439 +g1,21813:28433320,32058439 +k1,21814:32583029,32058439:3040840 +g1,21814:32583029,32058439 +) +(1,21817:6630773,32923519:25952256,513147,134348 +h1,21815:6630773,32923519:983040,0,0 +k1,21815:8968552,32923519:158052 +k1,21815:10120131,32923519:158053 +k1,21815:10937475,32923519:158052 +k1,21815:13126488,32923519:158052 +k1,21815:15352857,32923519:158053 +k1,21815:17648693,32923519:158052 +k1,21815:18458174,32923519:158053 +k1,21815:19031028,32923519:158011 +k1,21815:20293362,32923519:158052 +k1,21815:21199181,32923519:158053 +k1,21815:24149067,32923519:158052 +k1,21815:25054886,32923519:158053 +k1,21815:27241933,32923519:158052 +(1,21815:27241933,32923519:0,452978,115847 +r1,21842:30062182,32923519:2820249,568825,115847 +k1,21815:27241933,32923519:-2820249 +) +(1,21815:27241933,32923519:2820249,452978,115847 +k1,21815:27241933,32923519:3277 +h1,21815:30058905,32923519:0,411205,112570 +) +k1,21815:30220234,32923519:158052 +k1,21815:30991049,32923519:158053 +k1,21815:32168186,32923519:158052 +k1,21817:32583029,32923519:0 +) +(1,21817:6630773,33788599:25952256,513147,134348 +k1,21815:9358914,33788599:134226 +k1,21815:12904289,33788599:134226 +k1,21815:13689943,33788599:134226 +k1,21815:16404321,33788599:134226 +k1,21815:19540750,33788599:134226 +k1,21815:21108904,33788599:134226 +k1,21815:21657908,33788599:134161 +k1,21815:24648848,33788599:134226 +k1,21815:26158675,33788599:134226 +(1,21815:26158675,33788599:0,452978,115847 +r1,21842:27923788,33788599:1765113,568825,115847 +k1,21815:26158675,33788599:-1765113 +) +(1,21815:26158675,33788599:1765113,452978,115847 +k1,21815:26158675,33788599:3277 +h1,21815:27920511,33788599:0,411205,112570 +) +k1,21815:28058014,33788599:134226 +k1,21815:28878402,33788599:134226 +k1,21815:30031713,33788599:134226 +k1,21815:32583029,33788599:0 +) +(1,21817:6630773,34653679:25952256,513147,134348 +k1,21816:8675223,34653679:244176 +k1,21816:9938484,34653679:244176 +k1,21816:12668441,34653679:244176 +k1,21816:13571909,34653679:244176 +k1,21816:16177347,34653679:244176 +k1,21816:19379164,34653679:244177 +k1,21816:22950603,34653679:244176 +k1,21816:24833834,34653679:244176 +k1,21816:26932679,34653679:244176 +k1,21816:27986225,34653679:244176 +k1,21816:29739040,34653679:244176 +k1,21816:32051532,34653679:244176 +k1,21816:32583029,34653679:0 +) +(1,21817:6630773,35518759:25952256,513147,134348 +k1,21816:10176428,35518759:240674 +k1,21816:10772963,35518759:240675 +k1,21816:12597642,35518759:240674 +k1,21816:14144450,35518759:240675 +k1,21816:15914079,35518759:240674 +k1,21816:18944622,35518759:240675 +(1,21816:18944622,35518759:0,452978,115847 +r1,21842:21764871,35518759:2820249,568825,115847 +k1,21816:18944622,35518759:-2820249 +) +(1,21816:18944622,35518759:2820249,452978,115847 +k1,21816:18944622,35518759:3277 +h1,21816:21761594,35518759:0,411205,112570 +) +k1,21816:22005545,35518759:240674 +k1,21816:24587166,35518759:240675 +k1,21816:25183700,35518759:240674 +k1,21816:28399054,35518759:240675 +k1,21816:30791275,35518759:240674 +k1,21817:32583029,35518759:0 +) +(1,21817:6630773,36383839:25952256,513147,134348 +(1,21816:6630773,36383839:0,452978,122846 +r1,21842:8747598,36383839:2116825,575824,122846 +k1,21816:6630773,36383839:-2116825 +) +(1,21816:6630773,36383839:2116825,452978,122846 +k1,21816:6630773,36383839:3277 +h1,21816:8744321,36383839:0,411205,112570 +) +k1,21816:8937651,36383839:190053 +k1,21816:9585802,36383839:190054 +k1,21816:10307352,36383839:190053 +k1,21816:13127366,36383839:190054 +k1,21816:14583575,36383839:190053 +k1,21816:15792713,36383839:190053 +k1,21816:18051083,36383839:190054 +k1,21816:21603133,36383839:190053 +k1,21816:22149046,36383839:190053 +k1,21816:24033861,36383839:190054 +k1,21816:27198593,36383839:190053 +k1,21816:30573697,36383839:190054 +k1,21816:31379788,36383839:190053 +k1,21816:32583029,36383839:0 +) +(1,21817:6630773,37248919:25952256,505283,126483 +g1,21816:9491419,37248919 +(1,21816:9491419,37248919:0,452978,115847 +r1,21842:11608244,37248919:2116825,568825,115847 +k1,21816:9491419,37248919:-2116825 +) +(1,21816:9491419,37248919:2116825,452978,115847 +k1,21816:9491419,37248919:3277 +h1,21816:11604967,37248919:0,411205,112570 +) +k1,21817:32583028,37248919:20922356 +g1,21817:32583028,37248919 +) +v1,21819:6630773,37933774:0,393216,0 +(1,21842:6630773,45510161:25952256,7969603,196608 +g1,21842:6630773,45510161 +g1,21842:6630773,45510161 +g1,21842:6434165,45510161 +(1,21842:6434165,45510161:0,7969603,196608 +r1,21842:32779637,45510161:26345472,8166211,196608 +k1,21842:6434165,45510161:-26345472 +) +(1,21842:6434165,45510161:26345472,7969603,196608 +[1,21842:6630773,45510161:25952256,7772995,0 +(1,21821:6630773,38161605:25952256,424439,112852 +(1,21820:6630773,38161605:0,0,0 +g1,21820:6630773,38161605 +g1,21820:6630773,38161605 +g1,21820:6303093,38161605 +(1,21820:6303093,38161605:0,0,0 +) +g1,21820:6630773,38161605 +) +k1,21821:6630773,38161605:0 +k1,21821:6630773,38161605:0 +h1,21821:11942037,38161605:0,0,0 +k1,21821:32583029,38161605:20640992 +g1,21821:32583029,38161605 +) +(1,21825:6630773,38975511:25952256,424439,79822 +(1,21823:6630773,38975511:0,0,0 +g1,21823:6630773,38975511 +g1,21823:6630773,38975511 +g1,21823:6303093,38975511 +(1,21823:6303093,38975511:0,0,0 +) +g1,21823:6630773,38975511 +) +g1,21825:7626635,38975511 +g1,21825:8954451,38975511 +h1,21825:9950313,38975511:0,0,0 +k1,21825:32583029,38975511:22632716 +g1,21825:32583029,38975511 +) +(1,21827:6630773,39789418:25952256,424439,112852 +(1,21826:6630773,39789418:0,0,0 +g1,21826:6630773,39789418 +g1,21826:6630773,39789418 +g1,21826:6303093,39789418 +(1,21826:6303093,39789418:0,0,0 +) +g1,21826:6630773,39789418 +) +k1,21827:6630773,39789418:0 +g1,21827:13933761,39789418 +g1,21827:15925485,39789418 +g1,21827:16589393,39789418 +h1,21827:18249163,39789418:0,0,0 +k1,21827:32583029,39789418:14333866 +g1,21827:32583029,39789418 +) +(1,21841:6630773,40603324:25952256,424439,112852 +(1,21829:6630773,40603324:0,0,0 +g1,21829:6630773,40603324 +g1,21829:6630773,40603324 +g1,21829:6303093,40603324 +(1,21829:6303093,40603324:0,0,0 +) +g1,21829:6630773,40603324 +) +g1,21841:7626635,40603324 +g1,21841:7958589,40603324 +g1,21841:9286405,40603324 +g1,21841:12937898,40603324 +g1,21841:13269852,40603324 +g1,21841:13601806,40603324 +g1,21841:13933760,40603324 +g1,21841:14265714,40603324 +g1,21841:14597668,40603324 +g1,21841:14929622,40603324 +g1,21841:15261576,40603324 +g1,21841:18913069,40603324 +g1,21841:19245023,40603324 +g1,21841:19576977,40603324 +g1,21841:19908931,40603324 +g1,21841:20240885,40603324 +g1,21841:20572839,40603324 +g1,21841:20904793,40603324 +g1,21841:21236747,40603324 +g1,21841:26548010,40603324 +g1,21841:26879964,40603324 +g1,21841:27211918,40603324 +h1,21841:32523181,40603324:0,0,0 +k1,21841:32583029,40603324:59848 +g1,21841:32583029,40603324 +) +(1,21841:6630773,41288179:25952256,424439,112852 +h1,21841:6630773,41288179:0,0,0 +g1,21841:7626635,41288179 +g1,21841:7958589,41288179 +g1,21841:9286405,41288179 +g1,21841:14929622,41288179 +g1,21841:15261576,41288179 +g1,21841:20904793,41288179 +g1,21841:21236747,41288179 +g1,21841:26879964,41288179 +g1,21841:27211918,41288179 +h1,21841:30531457,41288179:0,0,0 +k1,21841:32583029,41288179:2051572 +g1,21841:32583029,41288179 +) +(1,21841:6630773,41973034:25952256,424439,112852 +h1,21841:6630773,41973034:0,0,0 +g1,21841:7626635,41973034 +g1,21841:7958589,41973034 +g1,21841:9286405,41973034 +g1,21841:13269852,41973034 +g1,21841:13601806,41973034 +g1,21841:13933760,41973034 +g1,21841:14265714,41973034 +g1,21841:14597668,41973034 +g1,21841:14929622,41973034 +g1,21841:15261576,41973034 +g1,21841:18913069,41973034 +g1,21841:19245023,41973034 +g1,21841:19576977,41973034 +g1,21841:19908931,41973034 +g1,21841:20240885,41973034 +g1,21841:20572839,41973034 +g1,21841:20904793,41973034 +g1,21841:21236747,41973034 +g1,21841:25220194,41973034 +g1,21841:25552148,41973034 +g1,21841:25884102,41973034 +g1,21841:26216056,41973034 +g1,21841:26548010,41973034 +g1,21841:26879964,41973034 +g1,21841:27211918,41973034 +h1,21841:31527319,41973034:0,0,0 +k1,21841:32583029,41973034:1055710 +g1,21841:32583029,41973034 +) +(1,21841:6630773,42657889:25952256,424439,112852 +h1,21841:6630773,42657889:0,0,0 +k1,21841:7581284,42657889:286603 +k1,21841:9195703,42657889:286603 +k1,21841:14793569,42657889:286603 +k1,21841:15080172,42657889:286603 +k1,21841:21009992,42657889:286603 +k1,21841:26939812,42657889:286603 +h1,21841:32583029,42657889:0,0,0 +k1,21841:32583029,42657889:0 +k1,21841:32583029,42657889:0 +) +(1,21841:6630773,43342744:25952256,424439,112852 +h1,21841:6630773,43342744:0,0,0 +g1,21841:7626635,43342744 +g1,21841:9286405,43342744 +g1,21841:15261576,43342744 +g1,21841:19576977,43342744 +g1,21841:19908931,43342744 +g1,21841:20240885,43342744 +g1,21841:20572839,43342744 +g1,21841:20904793,43342744 +g1,21841:21236747,43342744 +g1,21841:25884102,43342744 +g1,21841:26216056,43342744 +g1,21841:26548010,43342744 +g1,21841:26879964,43342744 +g1,21841:27211918,43342744 +h1,21841:31527319,43342744:0,0,0 +k1,21841:32583029,43342744:1055710 +g1,21841:32583029,43342744 +) +(1,21841:6630773,44027599:25952256,424439,112852 +h1,21841:6630773,44027599:0,0,0 +g1,21841:7626635,44027599 +g1,21841:9286405,44027599 +g1,21841:13933760,44027599 +g1,21841:14265714,44027599 +g1,21841:14597668,44027599 +g1,21841:14929622,44027599 +g1,21841:15261576,44027599 +g1,21841:19908931,44027599 +g1,21841:20240885,44027599 +g1,21841:20572839,44027599 +g1,21841:20904793,44027599 +g1,21841:21236747,44027599 +g1,21841:25552148,44027599 +g1,21841:25884102,44027599 +g1,21841:26216056,44027599 +g1,21841:26548010,44027599 +g1,21841:26879964,44027599 +g1,21841:27211918,44027599 +h1,21841:31527319,44027599:0,0,0 +k1,21841:32583029,44027599:1055710 +g1,21841:32583029,44027599 +) +(1,21841:6630773,44712454:25952256,424439,79822 +h1,21841:6630773,44712454:0,0,0 +g1,21841:7626635,44712454 +g1,21841:9286405,44712454 +g1,21841:13933760,44712454 +g1,21841:14265714,44712454 +g1,21841:14597668,44712454 +g1,21841:14929622,44712454 +g1,21841:15261576,44712454 +g1,21841:19908931,44712454 +g1,21841:20240885,44712454 +g1,21841:20572839,44712454 +g1,21841:20904793,44712454 +g1,21841:21236747,44712454 +g1,21841:25884102,44712454 +g1,21841:26216056,44712454 +g1,21841:26548010,44712454 +g1,21841:26879964,44712454 +g1,21841:27211918,44712454 +h1,21841:30199503,44712454:0,0,0 +k1,21841:32583029,44712454:2383526 +g1,21841:32583029,44712454 +) +(1,21841:6630773,45397309:25952256,424439,112852 +h1,21841:6630773,45397309:0,0,0 +g1,21841:7626635,45397309 +g1,21841:9286405,45397309 +g1,21841:13601806,45397309 +g1,21841:13933760,45397309 +g1,21841:14265714,45397309 +g1,21841:14597668,45397309 +g1,21841:14929622,45397309 +g1,21841:15261576,45397309 +g1,21841:20240885,45397309 +g1,21841:20572839,45397309 +g1,21841:20904793,45397309 +g1,21841:21236747,45397309 +g1,21841:26548010,45397309 +g1,21841:26879964,45397309 +g1,21841:27211918,45397309 +h1,21841:32191227,45397309:0,0,0 +k1,21841:32583029,45397309:391802 +g1,21841:32583029,45397309 +) +] +) +g1,21842:32583029,45510161 +g1,21842:6630773,45510161 +g1,21842:6630773,45510161 +g1,21842:32583029,45510161 +g1,21842:32583029,45510161 +) +] +(1,21842:32583029,45706769:0,0,0 +g1,21842:32583029,45706769 +) +) +] +(1,21842:6630773,47279633:25952256,0,0 +h1,21842:6630773,47279633:25952256,0,0 +) +] +(1,21842:4262630,4025873:0,0,0 +[1,21842:-473656,4025873:0,0,0 +(1,21842:-473656,-710413:0,0,0 +(1,21842:-473656,-710413:0,0,0 +g1,21842:-473656,-710413 +) +g1,21842:-473656,-710413 ) ] ) ] !35507 -}370 -Input:4111:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4112:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4113:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4114:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}371 Input:4115:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4116:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4117:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4118:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4119:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4120:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{371 -[1,21944:4262630,47279633:28320399,43253760,0 -(1,21944:4262630,4025873:0,0,0 -[1,21944:-473656,4025873:0,0,0 -(1,21944:-473656,-710413:0,0,0 -(1,21944:-473656,-644877:0,0,0 -k1,21944:-473656,-644877:-65536 +{372 +[1,21942:4262630,47279633:28320399,43253760,0 +(1,21942:4262630,4025873:0,0,0 +[1,21942:-473656,4025873:0,0,0 +(1,21942:-473656,-710413:0,0,0 +(1,21942:-473656,-644877:0,0,0 +k1,21942:-473656,-644877:-65536 ) -(1,21944:-473656,4736287:0,0,0 -k1,21944:-473656,4736287:5209943 +(1,21942:-473656,4736287:0,0,0 +k1,21942:-473656,4736287:5209943 ) -g1,21944:-473656,-710413 +g1,21942:-473656,-710413 ) ] ) -[1,21944:6630773,47279633:25952256,43253760,0 -[1,21944:6630773,4812305:25952256,786432,0 -(1,21944:6630773,4812305:25952256,513147,126483 -(1,21944:6630773,4812305:25952256,513147,126483 -g1,21944:3078558,4812305 -[1,21944:3078558,4812305:0,0,0 -(1,21944:3078558,2439708:0,1703936,0 -k1,21944:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21944:2537886,2439708:1179648,16384,0 +[1,21942:6630773,47279633:25952256,43253760,0 +[1,21942:6630773,4812305:25952256,786432,0 +(1,21942:6630773,4812305:25952256,513147,126483 +(1,21942:6630773,4812305:25952256,513147,126483 +g1,21942:3078558,4812305 +[1,21942:3078558,4812305:0,0,0 +(1,21942:3078558,2439708:0,1703936,0 +k1,21942:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21942:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21944:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21942:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21944:3078558,4812305:0,0,0 -(1,21944:3078558,2439708:0,1703936,0 -g1,21944:29030814,2439708 -g1,21944:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21944:36151628,1915420:16384,1179648,0 +[1,21942:3078558,4812305:0,0,0 +(1,21942:3078558,2439708:0,1703936,0 +g1,21942:29030814,2439708 +g1,21942:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21942:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21944:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21942:37855564,2439708:1179648,16384,0 ) ) -k1,21944:3078556,2439708:-34777008 +k1,21942:3078556,2439708:-34777008 ) ] -[1,21944:3078558,4812305:0,0,0 -(1,21944:3078558,49800853:0,16384,2228224 -k1,21944:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21944:2537886,49800853:1179648,16384,0 +[1,21942:3078558,4812305:0,0,0 +(1,21942:3078558,49800853:0,16384,2228224 +k1,21942:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21942:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21944:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21942:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,21944:3078558,4812305:0,0,0 -(1,21944:3078558,49800853:0,16384,2228224 -g1,21944:29030814,49800853 -g1,21944:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21944:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21944:37855564,49800853:1179648,16384,0 +[1,21942:3078558,4812305:0,0,0 +(1,21942:3078558,49800853:0,16384,2228224 +g1,21942:29030814,49800853 +g1,21942:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21942:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21942:37855564,49800853:1179648,16384,0 ) -) -k1,21944:3078556,49800853:-34777008 -) -] -g1,21944:6630773,4812305 -k1,21944:21386205,4812305:13560055 -g1,21944:21999622,4812305 -g1,21944:25611966,4812305 -g1,21944:28956923,4812305 -g1,21944:29772190,4812305 -) -) -] -[1,21944:6630773,45706769:25952256,40108032,0 -(1,21944:6630773,45706769:25952256,40108032,0 -(1,21944:6630773,45706769:0,0,0 -g1,21944:6630773,45706769 -) -[1,21944:6630773,45706769:25952256,40108032,0 -v1,21844:6630773,6254097:0,393216,0 -(1,21844:6630773,7964490:25952256,2103609,196608 -g1,21844:6630773,7964490 -g1,21844:6630773,7964490 -g1,21844:6434165,7964490 -(1,21844:6434165,7964490:0,2103609,196608 -r1,21944:32779637,7964490:26345472,2300217,196608 -k1,21844:6434165,7964490:-26345472 -) -(1,21844:6434165,7964490:26345472,2103609,196608 -[1,21844:6630773,7964490:25952256,1907001,0 -(1,21843:6630773,6481928:25952256,424439,112852 -h1,21843:6630773,6481928:0,0,0 -g1,21843:7626635,6481928 -g1,21843:9286405,6481928 -g1,21843:14597668,6481928 -g1,21843:14929622,6481928 -g1,21843:15261576,6481928 -g1,21843:20572839,6481928 -g1,21843:20904793,6481928 -g1,21843:21236747,6481928 -g1,21843:26548010,6481928 -g1,21843:26879964,6481928 -g1,21843:27211918,6481928 -h1,21843:32191227,6481928:0,0,0 -k1,21843:32583029,6481928:391802 -g1,21843:32583029,6481928 -) -(1,21843:6630773,7166783:25952256,424439,112852 -h1,21843:6630773,7166783:0,0,0 -g1,21843:7626635,7166783 -g1,21843:9286405,7166783 -g1,21843:14929622,7166783 -g1,21843:15261576,7166783 -g1,21843:20904793,7166783 -g1,21843:21236747,7166783 -g1,21843:26879964,7166783 -g1,21843:27211918,7166783 -h1,21843:32523181,7166783:0,0,0 -k1,21843:32583029,7166783:59848 -g1,21843:32583029,7166783 -) -(1,21843:6630773,7851638:25952256,424439,112852 -h1,21843:6630773,7851638:0,0,0 -g1,21843:7626635,7851638 -g1,21843:9286405,7851638 -g1,21843:14597668,7851638 -g1,21843:14929622,7851638 -g1,21843:15261576,7851638 -g1,21843:20572839,7851638 -g1,21843:20904793,7851638 -g1,21843:21236747,7851638 -h1,21843:25220194,7851638:0,0,0 -k1,21843:32583029,7851638:7362835 -g1,21843:32583029,7851638 -) -] -) -g1,21844:32583029,7964490 -g1,21844:6630773,7964490 -g1,21844:6630773,7964490 -g1,21844:32583029,7964490 -g1,21844:32583029,7964490 -) -h1,21844:6630773,8161098:0,0,0 -(1,21848:6630773,9026178:25952256,513147,126483 -h1,21847:6630773,9026178:983040,0,0 -g1,21847:9009729,9026178 -g1,21847:10532785,9026178 -g1,21847:12742659,9026178 -g1,21847:13889539,9026178 -g1,21847:14859471,9026178 -g1,21847:15473543,9026178 -(1,21847:15473543,9026178:0,452978,115847 -r1,21944:17238656,9026178:1765113,568825,115847 -k1,21847:15473543,9026178:-1765113 -) -(1,21847:15473543,9026178:1765113,452978,115847 -k1,21847:15473543,9026178:3277 -h1,21847:17235379,9026178:0,411205,112570 -) -g1,21847:17437885,9026178 -g1,21847:20719272,9026178 -g1,21847:21910061,9026178 -g1,21847:24888017,9026178 -g1,21847:25848774,9026178 -g1,21847:28743499,9026178 -(1,21847:28743499,9026178:0,452978,122846 -r1,21944:31915459,9026178:3171960,575824,122846 -k1,21847:28743499,9026178:-3171960 -) -(1,21847:28743499,9026178:3171960,452978,122846 -k1,21847:28743499,9026178:3277 -h1,21847:31912182,9026178:0,411205,112570 -) -k1,21848:32583029,9026178:615142 -g1,21848:32583029,9026178 -) -v1,21850:6630773,9711033:0,393216,0 -(1,21869:6630773,16505683:25952256,7187866,196608 -g1,21869:6630773,16505683 -g1,21869:6630773,16505683 -g1,21869:6434165,16505683 -(1,21869:6434165,16505683:0,7187866,196608 -r1,21944:32779637,16505683:26345472,7384474,196608 -k1,21869:6434165,16505683:-26345472 -) -(1,21869:6434165,16505683:26345472,7187866,196608 -[1,21869:6630773,16505683:25952256,6991258,0 -(1,21852:6630773,9938864:25952256,424439,112852 -(1,21851:6630773,9938864:0,0,0 -g1,21851:6630773,9938864 -g1,21851:6630773,9938864 -g1,21851:6303093,9938864 -(1,21851:6303093,9938864:0,0,0 -) -g1,21851:6630773,9938864 -) -k1,21852:6630773,9938864:0 -h1,21852:12273990,9938864:0,0,0 -k1,21852:32583030,9938864:20309040 -g1,21852:32583030,9938864 -) -(1,21859:6630773,10754791:25952256,424439,86428 -(1,21854:6630773,10754791:0,0,0 -g1,21854:6630773,10754791 -g1,21854:6630773,10754791 -g1,21854:6303093,10754791 -(1,21854:6303093,10754791:0,0,0 -) -g1,21854:6630773,10754791 -) -g1,21859:7626635,10754791 -g1,21859:7958589,10754791 -g1,21859:8290543,10754791 -g1,21859:8622497,10754791 -g1,21859:8954451,10754791 -g1,21859:9286405,10754791 -g1,21859:9618359,10754791 -k1,21859:9618359,10754791:0 -h1,21859:10946175,10754791:0,0,0 -k1,21859:32583029,10754791:21636854 -g1,21859:32583029,10754791 -) -(1,21859:6630773,11439646:25952256,424439,9908 -h1,21859:6630773,11439646:0,0,0 -g1,21859:7626635,11439646 -g1,21859:8954451,11439646 -g1,21859:9286405,11439646 -g1,21859:9618359,11439646 -g1,21859:9950313,11439646 -h1,21859:10946175,11439646:0,0,0 -k1,21859:32583029,11439646:21636854 -g1,21859:32583029,11439646 -) -(1,21859:6630773,12124501:25952256,407923,112852 -h1,21859:6630773,12124501:0,0,0 -g1,21859:7626635,12124501 -g1,21859:9618359,12124501 -g1,21859:9950313,12124501 -g1,21859:10282267,12124501 -h1,21859:10946175,12124501:0,0,0 -k1,21859:32583029,12124501:21636854 -g1,21859:32583029,12124501 -) -(1,21859:6630773,12809356:25952256,424439,9908 -h1,21859:6630773,12809356:0,0,0 -g1,21859:7626635,12809356 -g1,21859:9286405,12809356 -g1,21859:9618359,12809356 -g1,21859:9950313,12809356 -h1,21859:10946175,12809356:0,0,0 -k1,21859:32583029,12809356:21636854 -g1,21859:32583029,12809356 -) -(1,21861:6630773,13625283:25952256,424439,112852 -(1,21860:6630773,13625283:0,0,0 -g1,21860:6630773,13625283 -g1,21860:6630773,13625283 -g1,21860:6303093,13625283 -(1,21860:6303093,13625283:0,0,0 -) -g1,21860:6630773,13625283 -) -k1,21861:6630773,13625283:0 -h1,21861:12605944,13625283:0,0,0 -k1,21861:32583028,13625283:19977084 -g1,21861:32583028,13625283 -) -(1,21868:6630773,14441210:25952256,424439,86428 -(1,21863:6630773,14441210:0,0,0 -g1,21863:6630773,14441210 -g1,21863:6630773,14441210 -g1,21863:6303093,14441210 -(1,21863:6303093,14441210:0,0,0 -) -g1,21863:6630773,14441210 -) -g1,21868:7626635,14441210 -g1,21868:7958589,14441210 -g1,21868:8290543,14441210 -g1,21868:8622497,14441210 -g1,21868:8954451,14441210 -g1,21868:9286405,14441210 -g1,21868:9618359,14441210 -k1,21868:9618359,14441210:0 -h1,21868:10946175,14441210:0,0,0 -k1,21868:32583029,14441210:21636854 -g1,21868:32583029,14441210 -) -(1,21868:6630773,15126065:25952256,424439,9908 -h1,21868:6630773,15126065:0,0,0 -g1,21868:7626635,15126065 -g1,21868:8954451,15126065 -g1,21868:9286405,15126065 -g1,21868:9618359,15126065 -g1,21868:9950313,15126065 -h1,21868:10946175,15126065:0,0,0 -k1,21868:32583029,15126065:21636854 -g1,21868:32583029,15126065 -) -(1,21868:6630773,15810920:25952256,407923,112852 -h1,21868:6630773,15810920:0,0,0 -g1,21868:7626635,15810920 -g1,21868:9618359,15810920 -g1,21868:9950313,15810920 -g1,21868:10282267,15810920 -g1,21868:10614221,15810920 -h1,21868:10946175,15810920:0,0,0 -k1,21868:32583029,15810920:21636854 -g1,21868:32583029,15810920 -) -(1,21868:6630773,16495775:25952256,424439,9908 -h1,21868:6630773,16495775:0,0,0 -g1,21868:7626635,16495775 -g1,21868:9286405,16495775 -g1,21868:9618359,16495775 -g1,21868:9950313,16495775 -g1,21868:10282267,16495775 -g1,21868:10614221,16495775 -h1,21868:10946175,16495775:0,0,0 -k1,21868:32583029,16495775:21636854 -g1,21868:32583029,16495775 -) -] -) -g1,21869:32583029,16505683 -g1,21869:6630773,16505683 -g1,21869:6630773,16505683 -g1,21869:32583029,16505683 -g1,21869:32583029,16505683 -) -h1,21869:6630773,16702291:0,0,0 -(1,21873:6630773,17567371:25952256,513147,126483 -h1,21872:6630773,17567371:983040,0,0 -k1,21872:9957203,17567371:190532 -k1,21872:13560195,17567371:190532 -k1,21872:14366764,17567371:190531 -k1,21872:14972130,17567371:190523 -k1,21872:16266944,17567371:190532 -k1,21872:18829224,17567371:190532 -k1,21872:19375616,17567371:190532 -k1,21872:23791909,17567371:190532 -k1,21872:27579711,17567371:190531 -k1,21872:30860266,17567371:190532 -k1,21872:31812326,17567371:190532 -k1,21873:32583029,17567371:0 -) -(1,21873:6630773,18432451:25952256,513147,126483 -(1,21872:6630773,18432451:0,452978,115847 -r1,21944:8395886,18432451:1765113,568825,115847 -k1,21872:6630773,18432451:-1765113 -) -(1,21872:6630773,18432451:1765113,452978,115847 -k1,21872:6630773,18432451:3277 -h1,21872:8392609,18432451:0,411205,112570 -) -g1,21872:8595115,18432451 -g1,21872:10648358,18432451 -g1,21872:12733058,18432451 -g1,21872:13693815,18432451 -g1,21872:16158624,18432451 -g1,21872:16889350,18432451 -g1,21872:18154850,18432451 -k1,21873:32583029,18432451:11597024 -g1,21873:32583029,18432451 -) -v1,21875:6630773,19117306:0,393216,0 -(1,21886:6630773,23006730:25952256,4282640,196608 -g1,21886:6630773,23006730 -g1,21886:6630773,23006730 -g1,21886:6434165,23006730 -(1,21886:6434165,23006730:0,4282640,196608 -r1,21944:32779637,23006730:26345472,4479248,196608 -k1,21886:6434165,23006730:-26345472 -) -(1,21886:6434165,23006730:26345472,4282640,196608 -[1,21886:6630773,23006730:25952256,4086032,0 -(1,21877:6630773,19345137:25952256,424439,112852 -(1,21876:6630773,19345137:0,0,0 -g1,21876:6630773,19345137 -g1,21876:6630773,19345137 -g1,21876:6303093,19345137 -(1,21876:6303093,19345137:0,0,0 -) -g1,21876:6630773,19345137 -) -k1,21877:6630773,19345137:0 -g1,21877:12605944,19345137 -g1,21877:14597668,19345137 -g1,21877:15261576,19345137 -h1,21877:16921346,19345137:0,0,0 -k1,21877:32583029,19345137:15661683 -g1,21877:32583029,19345137 -) -(1,21885:6630773,20161064:25952256,424439,86428 -(1,21879:6630773,20161064:0,0,0 -g1,21879:6630773,20161064 -g1,21879:6630773,20161064 -g1,21879:6303093,20161064 -(1,21879:6303093,20161064:0,0,0 -) -g1,21879:6630773,20161064 -) -g1,21885:7626635,20161064 -g1,21885:7958589,20161064 -g1,21885:8290543,20161064 -g1,21885:8622497,20161064 -g1,21885:8954451,20161064 -g1,21885:9286405,20161064 -g1,21885:9618359,20161064 -k1,21885:9618359,20161064:0 -h1,21885:10946175,20161064:0,0,0 -k1,21885:32583029,20161064:21636854 -g1,21885:32583029,20161064 -) -(1,21885:6630773,20845919:25952256,424439,9908 -h1,21885:6630773,20845919:0,0,0 -g1,21885:7626635,20845919 -g1,21885:8954451,20845919 -g1,21885:9286405,20845919 -g1,21885:9618359,20845919 -g1,21885:9950313,20845919 -h1,21885:10946175,20845919:0,0,0 -k1,21885:32583029,20845919:21636854 -g1,21885:32583029,20845919 -) -(1,21885:6630773,21530774:25952256,407923,112852 -h1,21885:6630773,21530774:0,0,0 -g1,21885:7626635,21530774 -g1,21885:9618359,21530774 -g1,21885:9950313,21530774 -g1,21885:10282267,21530774 -h1,21885:10946175,21530774:0,0,0 -k1,21885:32583029,21530774:21636854 -g1,21885:32583029,21530774 -) -(1,21885:6630773,22215629:25952256,424439,9908 -h1,21885:6630773,22215629:0,0,0 -g1,21885:7626635,22215629 -g1,21885:9286405,22215629 -g1,21885:9618359,22215629 -g1,21885:9950313,22215629 -h1,21885:10946175,22215629:0,0,0 -k1,21885:32583029,22215629:21636854 -g1,21885:32583029,22215629 -) -(1,21885:6630773,22900484:25952256,424439,106246 -h1,21885:6630773,22900484:0,0,0 -g1,21885:7626635,22900484 -g1,21885:9618359,22900484 -g1,21885:9950313,22900484 -h1,21885:10946175,22900484:0,0,0 -k1,21885:32583029,22900484:21636854 -g1,21885:32583029,22900484 -) -] -) -g1,21886:32583029,23006730 -g1,21886:6630773,23006730 -g1,21886:6630773,23006730 -g1,21886:32583029,23006730 -g1,21886:32583029,23006730 -) -h1,21886:6630773,23203338:0,0,0 -(1,21890:6630773,24068418:25952256,513147,122846 -h1,21889:6630773,24068418:983040,0,0 -k1,21889:9315217,24068418:222256 -k1,21889:12232968,24068418:222255 -(1,21889:12232968,24068418:0,452978,122846 -r1,21944:13998081,24068418:1765113,575824,122846 -k1,21889:12232968,24068418:-1765113 -) -(1,21889:12232968,24068418:1765113,452978,122846 -k1,21889:12232968,24068418:3277 -h1,21889:13994804,24068418:0,411205,112570 -) -k1,21889:14220337,24068418:222256 -k1,21889:15599302,24068418:222255 -k1,21889:16925840,24068418:222256 -k1,21889:19108933,24068418:222256 -k1,21889:20614383,24068418:222255 -k1,21889:23371572,24068418:222256 -k1,21889:25272204,24068418:222255 -(1,21889:25272204,24068418:0,452978,122846 -r1,21944:28444164,24068418:3171960,575824,122846 -k1,21889:25272204,24068418:-3171960 -) -(1,21889:25272204,24068418:3171960,452978,122846 -k1,21889:25272204,24068418:3277 -h1,21889:28440887,24068418:0,411205,112570 -) -k1,21889:28666420,24068418:222256 -k1,21889:29836326,24068418:222255 -k1,21889:31708779,24068418:222256 -k1,21890:32583029,24068418:0 -) -(1,21890:6630773,24933498:25952256,505283,7863 -k1,21890:32583028,24933498:24550440 -g1,21890:32583028,24933498 -) -v1,21892:6630773,25618353:0,393216,0 -(1,21913:6630773,31305437:25952256,6080300,196608 -g1,21913:6630773,31305437 -g1,21913:6630773,31305437 -g1,21913:6434165,31305437 -(1,21913:6434165,31305437:0,6080300,196608 -r1,21944:32779637,31305437:26345472,6276908,196608 -k1,21913:6434165,31305437:-26345472 -) -(1,21913:6434165,31305437:26345472,6080300,196608 -[1,21913:6630773,31305437:25952256,5883692,0 -(1,21894:6630773,25846184:25952256,424439,112852 -(1,21893:6630773,25846184:0,0,0 -g1,21893:6630773,25846184 -g1,21893:6630773,25846184 -g1,21893:6303093,25846184 -(1,21893:6303093,25846184:0,0,0 -) -g1,21893:6630773,25846184 -) -k1,21894:6630773,25846184:0 -g1,21894:8954451,25846184 -g1,21894:9950313,25846184 -h1,21894:10614221,25846184:0,0,0 -k1,21894:32583029,25846184:21968808 -g1,21894:32583029,25846184 -) -(1,21898:6630773,26662111:25952256,424439,79822 -(1,21896:6630773,26662111:0,0,0 -g1,21896:6630773,26662111 -g1,21896:6630773,26662111 -g1,21896:6303093,26662111 -(1,21896:6303093,26662111:0,0,0 -) -g1,21896:6630773,26662111 -) -g1,21898:7626635,26662111 -g1,21898:8954451,26662111 -h1,21898:11942036,26662111:0,0,0 -k1,21898:32583028,26662111:20640992 -g1,21898:32583028,26662111 -) -(1,21900:6630773,27478038:25952256,424439,112852 -(1,21899:6630773,27478038:0,0,0 -g1,21899:6630773,27478038 -g1,21899:6630773,27478038 -g1,21899:6303093,27478038 -(1,21899:6303093,27478038:0,0,0 -) -g1,21899:6630773,27478038 -) -k1,21900:6630773,27478038:0 -g1,21900:8954451,27478038 -g1,21900:9950313,27478038 -g1,21900:10946175,27478038 -g1,21900:12937899,27478038 -g1,21900:13601807,27478038 -h1,21900:17253300,27478038:0,0,0 -k1,21900:32583029,27478038:15329729 -g1,21900:32583029,27478038 -) -(1,21905:6630773,28293965:25952256,424439,106246 -(1,21902:6630773,28293965:0,0,0 -g1,21902:6630773,28293965 -g1,21902:6630773,28293965 -g1,21902:6303093,28293965 -(1,21902:6303093,28293965:0,0,0 -) -g1,21902:6630773,28293965 -) -g1,21905:7626635,28293965 -g1,21905:7958589,28293965 -h1,21905:10614220,28293965:0,0,0 -k1,21905:32583028,28293965:21968808 -g1,21905:32583028,28293965 -) -(1,21905:6630773,28978820:25952256,424439,9908 -h1,21905:6630773,28978820:0,0,0 -g1,21905:7626635,28978820 -h1,21905:10614220,28978820:0,0,0 -k1,21905:32583028,28978820:21968808 -g1,21905:32583028,28978820 -) -(1,21907:6630773,29794747:25952256,424439,112852 -(1,21906:6630773,29794747:0,0,0 -g1,21906:6630773,29794747 -g1,21906:6630773,29794747 -g1,21906:6303093,29794747 -(1,21906:6303093,29794747:0,0,0 -) -g1,21906:6630773,29794747 -) -k1,21907:6630773,29794747:0 -g1,21907:9618359,29794747 -g1,21907:11278129,29794747 -g1,21907:12273991,29794747 -g1,21907:14265715,29794747 -g1,21907:14929623,29794747 -g1,21907:18913070,29794747 -g1,21907:23560425,29794747 -g1,21907:24224333,29794747 -h1,21907:25552149,29794747:0,0,0 -k1,21907:32583029,29794747:7030880 -g1,21907:32583029,29794747 -) -(1,21912:6630773,30610674:25952256,424439,106246 -(1,21909:6630773,30610674:0,0,0 -g1,21909:6630773,30610674 -g1,21909:6630773,30610674 -g1,21909:6303093,30610674 -(1,21909:6303093,30610674:0,0,0 -) -g1,21909:6630773,30610674 -) -g1,21912:7626635,30610674 -g1,21912:7958589,30610674 -h1,21912:10614220,30610674:0,0,0 -k1,21912:32583028,30610674:21968808 -g1,21912:32583028,30610674 -) -(1,21912:6630773,31295529:25952256,424439,9908 -h1,21912:6630773,31295529:0,0,0 -g1,21912:7626635,31295529 -h1,21912:10614220,31295529:0,0,0 -k1,21912:32583028,31295529:21968808 -g1,21912:32583028,31295529 -) -] -) -g1,21913:32583029,31305437 -g1,21913:6630773,31305437 -g1,21913:6630773,31305437 -g1,21913:32583029,31305437 -g1,21913:32583029,31305437 -) -h1,21913:6630773,31502045:0,0,0 -(1,21917:6630773,32367125:25952256,513147,126483 -h1,21916:6630773,32367125:983040,0,0 -k1,21916:8668345,32367125:236643 -k1,21916:11995010,32367125:236642 -k1,21916:14260648,32367125:236643 -k1,21916:16858553,32367125:236643 -k1,21916:18199477,32367125:236642 -k1,21916:19183886,32367125:236643 -k1,21916:21802106,32367125:236642 -k1,21916:22654787,32367125:236643 -k1,21916:23910515,32367125:236643 -k1,21916:25470947,32367125:236605 -k1,21916:27671048,32367125:236642 -k1,21916:29825274,32367125:236643 -k1,21916:32583029,32367125:0 -) -(1,21917:6630773,33232205:25952256,513147,102891 -k1,21916:8493543,33232205:160800 -k1,21916:10685304,33232205:160800 -k1,21916:13164112,33232205:160800 -k1,21916:14818477,33232205:160799 -k1,21916:15665439,33232205:160800 -k1,21916:17144785,33232205:160762 -k1,21916:18863376,33232205:160800 -k1,21916:22467438,33232205:160800 -k1,21916:24515675,33232205:160800 -k1,21916:25780757,33232205:160800 -k1,21916:26689322,33232205:160799 -k1,21916:28135938,33232205:160800 -k1,21916:29809964,33232205:160800 -k1,21916:30622192,33232205:160800 -k1,21916:32583029,33232205:0 -) -(1,21917:6630773,34097285:25952256,505283,7863 -k1,21917:32583030,34097285:23417324 -g1,21917:32583030,34097285 -) -v1,21919:6630773,34782140:0,393216,0 -(1,21926:6630773,35905720:25952256,1516796,196608 -g1,21926:6630773,35905720 -g1,21926:6630773,35905720 -g1,21926:6434165,35905720 -(1,21926:6434165,35905720:0,1516796,196608 -r1,21944:32779637,35905720:26345472,1713404,196608 -k1,21926:6434165,35905720:-26345472 -) -(1,21926:6434165,35905720:26345472,1516796,196608 -[1,21926:6630773,35905720:25952256,1320188,0 -(1,21921:6630773,35009971:25952256,424439,86428 -(1,21920:6630773,35009971:0,0,0 -g1,21920:6630773,35009971 -g1,21920:6630773,35009971 -g1,21920:6303093,35009971 -(1,21920:6303093,35009971:0,0,0 -) -g1,21920:6630773,35009971 -) -k1,21921:6630773,35009971:0 -g1,21921:15261577,35009971 -g1,21921:16921347,35009971 -h1,21921:18249163,35009971:0,0,0 -k1,21921:32583029,35009971:14333866 -g1,21921:32583029,35009971 -) -(1,21925:6630773,35825898:25952256,424439,79822 -(1,21923:6630773,35825898:0,0,0 -g1,21923:6630773,35825898 -g1,21923:6630773,35825898 -g1,21923:6303093,35825898 -(1,21923:6303093,35825898:0,0,0 -) -g1,21923:6630773,35825898 -) -g1,21925:7626635,35825898 -g1,21925:8954451,35825898 -g1,21925:12273990,35825898 -g1,21925:15593529,35825898 -g1,21925:18913068,35825898 -g1,21925:22232607,35825898 -h1,21925:25220192,35825898:0,0,0 -k1,21925:32583029,35825898:7362837 -g1,21925:32583029,35825898 -) -] -) -g1,21926:32583029,35905720 -g1,21926:6630773,35905720 -g1,21926:6630773,35905720 -g1,21926:32583029,35905720 -g1,21926:32583029,35905720 -) -h1,21926:6630773,36102328:0,0,0 -(1,21930:6630773,36967408:25952256,513147,134348 -h1,21929:6630773,36967408:983040,0,0 -k1,21929:11379968,36967408:193132 -k1,21929:12837946,36967408:193133 -k1,21929:13690370,36967408:193132 -k1,21929:15202080,36967408:193126 -k1,21929:17756474,36967408:193132 -k1,21929:20728334,36967408:193133 -k1,21929:21682994,36967408:193132 -k1,21929:24571622,36967408:193132 -(1,21929:24571622,36967408:0,452978,115847 -r1,21944:26336735,36967408:1765113,568825,115847 -k1,21929:24571622,36967408:-1765113 -) -(1,21929:24571622,36967408:1765113,452978,115847 -k1,21929:24571622,36967408:3277 -h1,21929:26333458,36967408:0,411205,112570 -) -k1,21929:26703537,36967408:193132 -k1,21929:28632063,36967408:193133 -k1,21929:30175892,36967408:193132 -k1,21929:32583029,36967408:0 -) -(1,21930:6630773,37832488:25952256,513147,126483 -k1,21929:7983577,37832488:161359 -k1,21929:11452538,37832488:161359 -k1,21929:12300059,37832488:161359 -k1,21929:14673912,37832488:161358 -k1,21929:15826831,37832488:161359 -k1,21929:17885457,37832488:161359 -k1,21929:18994467,37832488:161359 -k1,21929:20248311,37832488:161359 -k1,21929:21025708,37832488:161359 -k1,21929:23263248,37832488:161359 -k1,21929:25199321,37832488:161358 -k1,21929:26379765,37832488:161359 -k1,21929:28821777,37832488:161359 -k1,21929:30174581,37832488:161359 -k1,21930:32583029,37832488:0 -) -(1,21930:6630773,38697568:25952256,505283,126483 -k1,21929:8370302,38697568:171908 -k1,21929:9158248,38697568:171908 -k1,21929:10648713,38697568:171881 -k1,21929:11812181,38697568:171908 -k1,21929:13838758,38697568:171908 -k1,21929:14820035,38697568:171907 -k1,21929:17614694,38697568:171908 -k1,21929:19970917,38697568:171908 -k1,21929:21161910,38697568:171908 -k1,21929:24341265,38697568:171908 -k1,21929:25704618,38697568:171908 -k1,21929:29784438,38697568:171908 -k1,21929:31966991,38697568:171908 -k1,21929:32583029,38697568:0 -) -(1,21930:6630773,39562648:25952256,505283,126483 -k1,21929:8164416,39562648:207850 -k1,21929:9363835,39562648:207859 -k1,21929:11426363,39562648:207859 -k1,21929:12443592,39562648:207859 -k1,21929:14871811,39562648:207859 -k1,21929:16944169,39562648:207859 -k1,21929:20751265,39562648:207859 -k1,21929:23442283,39562648:207859 -k1,21929:25044093,39562648:207859 -k1,21929:26979481,39562648:207859 -k1,21929:30494942,39562648:207859 -k1,21929:31835263,39562648:207859 -k1,21929:32583029,39562648:0 -) -(1,21930:6630773,40427728:25952256,513147,134348 -k1,21929:8295902,40427728:225303 -k1,21929:9207368,40427728:225304 -k1,21929:11726431,40427728:225303 -k1,21929:13887668,40427728:225303 -k1,21929:14874499,40427728:225303 -k1,21929:15870506,40427728:225304 -k1,21929:19122262,40427728:225303 -k1,21929:21741595,40427728:225303 -k1,21929:22594734,40427728:225304 -k1,21929:23175897,40427728:225303 -k1,21929:24973409,40427728:225303 -k1,21929:27053381,40427728:225303 -k1,21929:28088055,40427728:225304 -k1,21929:31075701,40427728:225303 -k1,21929:32583029,40427728:0 -) -(1,21930:6630773,41292808:25952256,513147,134348 -k1,21929:7917791,41292808:214849 -k1,21929:9860169,41292808:214849 -k1,21929:12482155,41292808:214849 -k1,21929:13888449,41292808:214849 -k1,21929:17410900,41292808:214849 -k1,21929:19810064,41292808:214849 -k1,21929:20711075,41292808:214849 -k1,21929:22439150,41292808:214849 -k1,21929:23415527,41292808:214849 -k1,21929:25895956,41292808:214849 -k1,21929:26872333,41292808:214849 -k1,21929:29667334,41292808:214849 -k1,21929:32583029,41292808:0 -) -(1,21930:6630773,42157888:25952256,505283,134348 -k1,21929:7549400,42157888:152511 -k1,21929:10063174,42157888:152512 -k1,21929:11207245,42157888:152511 -k1,21929:14423565,42157888:152512 -k1,21929:15262238,42157888:152511 -k1,21929:17708510,42157888:152512 -k1,21929:19970625,42157888:152511 -k1,21929:21319824,42157888:152512 -k1,21929:22979663,42157888:152511 -k1,21929:24662441,42157888:152512 -k1,21929:25466380,42157888:152511 -k1,21929:26366658,42157888:152512 -k1,21929:29716671,42157888:152511 -k1,21929:30555345,42157888:152512 -k1,21929:32583029,42157888:0 -) -(1,21930:6630773,43022968:25952256,505283,134348 -g1,21929:7446040,43022968 -g1,21929:10274573,43022968 -g1,21929:11867753,43022968 -g1,21929:14077627,43022968 -g1,21929:16912059,43022968 -g1,21929:18531453,43022968 -g1,21929:19922127,43022968 -k1,21930:32583029,43022968:11413097 -g1,21930:32583029,43022968 -) -v1,21932:6630773,43707823:0,393216,0 -(1,21939:6630773,44831403:25952256,1516796,196608 -g1,21939:6630773,44831403 -g1,21939:6630773,44831403 -g1,21939:6434165,44831403 -(1,21939:6434165,44831403:0,1516796,196608 -r1,21944:32779637,44831403:26345472,1713404,196608 -k1,21939:6434165,44831403:-26345472 -) -(1,21939:6434165,44831403:26345472,1516796,196608 -[1,21939:6630773,44831403:25952256,1320188,0 -(1,21934:6630773,43935654:25952256,424439,86428 -(1,21933:6630773,43935654:0,0,0 -g1,21933:6630773,43935654 -g1,21933:6630773,43935654 -g1,21933:6303093,43935654 -(1,21933:6303093,43935654:0,0,0 -) -g1,21933:6630773,43935654 -) -k1,21934:6630773,43935654:0 -g1,21934:14929623,43935654 -g1,21934:15593531,43935654 -h1,21934:16921347,43935654:0,0,0 -k1,21934:32583029,43935654:15661682 -g1,21934:32583029,43935654 -) -(1,21938:6630773,44751581:25952256,424439,79822 -(1,21936:6630773,44751581:0,0,0 -g1,21936:6630773,44751581 -g1,21936:6630773,44751581 -g1,21936:6303093,44751581 -(1,21936:6303093,44751581:0,0,0 -) -g1,21936:6630773,44751581 -) -g1,21938:7626635,44751581 -g1,21938:8954451,44751581 -g1,21938:12273990,44751581 -g1,21938:15593529,44751581 -g1,21938:18913068,44751581 -g1,21938:22232607,44751581 -h1,21938:25220192,44751581:0,0,0 -k1,21938:32583029,44751581:7362837 -g1,21938:32583029,44751581 -) -] -) -g1,21939:32583029,44831403 -g1,21939:6630773,44831403 -g1,21939:6630773,44831403 -g1,21939:32583029,44831403 -g1,21939:32583029,44831403 -) -h1,21939:6630773,45028011:0,0,0 -] -(1,21944:32583029,45706769:0,0,0 -g1,21944:32583029,45706769 -) -) -] -(1,21944:6630773,47279633:25952256,0,0 -h1,21944:6630773,47279633:25952256,0,0 -) -] -(1,21944:4262630,4025873:0,0,0 -[1,21944:-473656,4025873:0,0,0 -(1,21944:-473656,-710413:0,0,0 -(1,21944:-473656,-710413:0,0,0 -g1,21944:-473656,-710413 -) -g1,21944:-473656,-710413 +) +k1,21942:3078556,49800853:-34777008 +) +] +g1,21942:6630773,4812305 +k1,21942:21386205,4812305:13560055 +g1,21942:21999622,4812305 +g1,21942:25611966,4812305 +g1,21942:28956923,4812305 +g1,21942:29772190,4812305 +) +) +] +[1,21942:6630773,45706769:25952256,40108032,0 +(1,21942:6630773,45706769:25952256,40108032,0 +(1,21942:6630773,45706769:0,0,0 +g1,21942:6630773,45706769 +) +[1,21942:6630773,45706769:25952256,40108032,0 +v1,21842:6630773,6254097:0,393216,0 +(1,21842:6630773,7964490:25952256,2103609,196608 +g1,21842:6630773,7964490 +g1,21842:6630773,7964490 +g1,21842:6434165,7964490 +(1,21842:6434165,7964490:0,2103609,196608 +r1,21942:32779637,7964490:26345472,2300217,196608 +k1,21842:6434165,7964490:-26345472 +) +(1,21842:6434165,7964490:26345472,2103609,196608 +[1,21842:6630773,7964490:25952256,1907001,0 +(1,21841:6630773,6481928:25952256,424439,112852 +h1,21841:6630773,6481928:0,0,0 +g1,21841:7626635,6481928 +g1,21841:9286405,6481928 +g1,21841:14597668,6481928 +g1,21841:14929622,6481928 +g1,21841:15261576,6481928 +g1,21841:20572839,6481928 +g1,21841:20904793,6481928 +g1,21841:21236747,6481928 +g1,21841:26548010,6481928 +g1,21841:26879964,6481928 +g1,21841:27211918,6481928 +h1,21841:32191227,6481928:0,0,0 +k1,21841:32583029,6481928:391802 +g1,21841:32583029,6481928 +) +(1,21841:6630773,7166783:25952256,424439,112852 +h1,21841:6630773,7166783:0,0,0 +g1,21841:7626635,7166783 +g1,21841:9286405,7166783 +g1,21841:14929622,7166783 +g1,21841:15261576,7166783 +g1,21841:20904793,7166783 +g1,21841:21236747,7166783 +g1,21841:26879964,7166783 +g1,21841:27211918,7166783 +h1,21841:32523181,7166783:0,0,0 +k1,21841:32583029,7166783:59848 +g1,21841:32583029,7166783 +) +(1,21841:6630773,7851638:25952256,424439,112852 +h1,21841:6630773,7851638:0,0,0 +g1,21841:7626635,7851638 +g1,21841:9286405,7851638 +g1,21841:14597668,7851638 +g1,21841:14929622,7851638 +g1,21841:15261576,7851638 +g1,21841:20572839,7851638 +g1,21841:20904793,7851638 +g1,21841:21236747,7851638 +h1,21841:25220194,7851638:0,0,0 +k1,21841:32583029,7851638:7362835 +g1,21841:32583029,7851638 +) +] +) +g1,21842:32583029,7964490 +g1,21842:6630773,7964490 +g1,21842:6630773,7964490 +g1,21842:32583029,7964490 +g1,21842:32583029,7964490 +) +h1,21842:6630773,8161098:0,0,0 +(1,21846:6630773,9026178:25952256,513147,126483 +h1,21845:6630773,9026178:983040,0,0 +g1,21845:9009729,9026178 +g1,21845:10532785,9026178 +g1,21845:12742659,9026178 +g1,21845:13889539,9026178 +g1,21845:14859471,9026178 +g1,21845:15473543,9026178 +(1,21845:15473543,9026178:0,452978,115847 +r1,21942:17238656,9026178:1765113,568825,115847 +k1,21845:15473543,9026178:-1765113 +) +(1,21845:15473543,9026178:1765113,452978,115847 +k1,21845:15473543,9026178:3277 +h1,21845:17235379,9026178:0,411205,112570 +) +g1,21845:17437885,9026178 +g1,21845:20719272,9026178 +g1,21845:21910061,9026178 +g1,21845:24888017,9026178 +g1,21845:25848774,9026178 +g1,21845:28743499,9026178 +(1,21845:28743499,9026178:0,452978,122846 +r1,21942:31915459,9026178:3171960,575824,122846 +k1,21845:28743499,9026178:-3171960 +) +(1,21845:28743499,9026178:3171960,452978,122846 +k1,21845:28743499,9026178:3277 +h1,21845:31912182,9026178:0,411205,112570 +) +k1,21846:32583029,9026178:615142 +g1,21846:32583029,9026178 +) +v1,21848:6630773,9711033:0,393216,0 +(1,21867:6630773,16505683:25952256,7187866,196608 +g1,21867:6630773,16505683 +g1,21867:6630773,16505683 +g1,21867:6434165,16505683 +(1,21867:6434165,16505683:0,7187866,196608 +r1,21942:32779637,16505683:26345472,7384474,196608 +k1,21867:6434165,16505683:-26345472 +) +(1,21867:6434165,16505683:26345472,7187866,196608 +[1,21867:6630773,16505683:25952256,6991258,0 +(1,21850:6630773,9938864:25952256,424439,112852 +(1,21849:6630773,9938864:0,0,0 +g1,21849:6630773,9938864 +g1,21849:6630773,9938864 +g1,21849:6303093,9938864 +(1,21849:6303093,9938864:0,0,0 +) +g1,21849:6630773,9938864 +) +k1,21850:6630773,9938864:0 +h1,21850:12273990,9938864:0,0,0 +k1,21850:32583030,9938864:20309040 +g1,21850:32583030,9938864 +) +(1,21857:6630773,10754791:25952256,424439,86428 +(1,21852:6630773,10754791:0,0,0 +g1,21852:6630773,10754791 +g1,21852:6630773,10754791 +g1,21852:6303093,10754791 +(1,21852:6303093,10754791:0,0,0 +) +g1,21852:6630773,10754791 +) +g1,21857:7626635,10754791 +g1,21857:7958589,10754791 +g1,21857:8290543,10754791 +g1,21857:8622497,10754791 +g1,21857:8954451,10754791 +g1,21857:9286405,10754791 +g1,21857:9618359,10754791 +k1,21857:9618359,10754791:0 +h1,21857:10946175,10754791:0,0,0 +k1,21857:32583029,10754791:21636854 +g1,21857:32583029,10754791 +) +(1,21857:6630773,11439646:25952256,424439,9908 +h1,21857:6630773,11439646:0,0,0 +g1,21857:7626635,11439646 +g1,21857:8954451,11439646 +g1,21857:9286405,11439646 +g1,21857:9618359,11439646 +g1,21857:9950313,11439646 +h1,21857:10946175,11439646:0,0,0 +k1,21857:32583029,11439646:21636854 +g1,21857:32583029,11439646 +) +(1,21857:6630773,12124501:25952256,407923,112852 +h1,21857:6630773,12124501:0,0,0 +g1,21857:7626635,12124501 +g1,21857:9618359,12124501 +g1,21857:9950313,12124501 +g1,21857:10282267,12124501 +h1,21857:10946175,12124501:0,0,0 +k1,21857:32583029,12124501:21636854 +g1,21857:32583029,12124501 +) +(1,21857:6630773,12809356:25952256,424439,9908 +h1,21857:6630773,12809356:0,0,0 +g1,21857:7626635,12809356 +g1,21857:9286405,12809356 +g1,21857:9618359,12809356 +g1,21857:9950313,12809356 +h1,21857:10946175,12809356:0,0,0 +k1,21857:32583029,12809356:21636854 +g1,21857:32583029,12809356 +) +(1,21859:6630773,13625283:25952256,424439,112852 +(1,21858:6630773,13625283:0,0,0 +g1,21858:6630773,13625283 +g1,21858:6630773,13625283 +g1,21858:6303093,13625283 +(1,21858:6303093,13625283:0,0,0 +) +g1,21858:6630773,13625283 +) +k1,21859:6630773,13625283:0 +h1,21859:12605944,13625283:0,0,0 +k1,21859:32583028,13625283:19977084 +g1,21859:32583028,13625283 +) +(1,21866:6630773,14441210:25952256,424439,86428 +(1,21861:6630773,14441210:0,0,0 +g1,21861:6630773,14441210 +g1,21861:6630773,14441210 +g1,21861:6303093,14441210 +(1,21861:6303093,14441210:0,0,0 +) +g1,21861:6630773,14441210 +) +g1,21866:7626635,14441210 +g1,21866:7958589,14441210 +g1,21866:8290543,14441210 +g1,21866:8622497,14441210 +g1,21866:8954451,14441210 +g1,21866:9286405,14441210 +g1,21866:9618359,14441210 +k1,21866:9618359,14441210:0 +h1,21866:10946175,14441210:0,0,0 +k1,21866:32583029,14441210:21636854 +g1,21866:32583029,14441210 +) +(1,21866:6630773,15126065:25952256,424439,9908 +h1,21866:6630773,15126065:0,0,0 +g1,21866:7626635,15126065 +g1,21866:8954451,15126065 +g1,21866:9286405,15126065 +g1,21866:9618359,15126065 +g1,21866:9950313,15126065 +h1,21866:10946175,15126065:0,0,0 +k1,21866:32583029,15126065:21636854 +g1,21866:32583029,15126065 +) +(1,21866:6630773,15810920:25952256,407923,112852 +h1,21866:6630773,15810920:0,0,0 +g1,21866:7626635,15810920 +g1,21866:9618359,15810920 +g1,21866:9950313,15810920 +g1,21866:10282267,15810920 +g1,21866:10614221,15810920 +h1,21866:10946175,15810920:0,0,0 +k1,21866:32583029,15810920:21636854 +g1,21866:32583029,15810920 +) +(1,21866:6630773,16495775:25952256,424439,9908 +h1,21866:6630773,16495775:0,0,0 +g1,21866:7626635,16495775 +g1,21866:9286405,16495775 +g1,21866:9618359,16495775 +g1,21866:9950313,16495775 +g1,21866:10282267,16495775 +g1,21866:10614221,16495775 +h1,21866:10946175,16495775:0,0,0 +k1,21866:32583029,16495775:21636854 +g1,21866:32583029,16495775 +) +] +) +g1,21867:32583029,16505683 +g1,21867:6630773,16505683 +g1,21867:6630773,16505683 +g1,21867:32583029,16505683 +g1,21867:32583029,16505683 +) +h1,21867:6630773,16702291:0,0,0 +(1,21871:6630773,17567371:25952256,513147,126483 +h1,21870:6630773,17567371:983040,0,0 +k1,21870:9957203,17567371:190532 +k1,21870:13560195,17567371:190532 +k1,21870:14366764,17567371:190531 +k1,21870:14972130,17567371:190523 +k1,21870:16266944,17567371:190532 +k1,21870:18829224,17567371:190532 +k1,21870:19375616,17567371:190532 +k1,21870:23791909,17567371:190532 +k1,21870:27579711,17567371:190531 +k1,21870:30860266,17567371:190532 +k1,21870:31812326,17567371:190532 +k1,21871:32583029,17567371:0 +) +(1,21871:6630773,18432451:25952256,513147,126483 +(1,21870:6630773,18432451:0,452978,115847 +r1,21942:8395886,18432451:1765113,568825,115847 +k1,21870:6630773,18432451:-1765113 +) +(1,21870:6630773,18432451:1765113,452978,115847 +k1,21870:6630773,18432451:3277 +h1,21870:8392609,18432451:0,411205,112570 +) +g1,21870:8595115,18432451 +g1,21870:10648358,18432451 +g1,21870:12733058,18432451 +g1,21870:13693815,18432451 +g1,21870:16158624,18432451 +g1,21870:16889350,18432451 +g1,21870:18154850,18432451 +k1,21871:32583029,18432451:11597024 +g1,21871:32583029,18432451 +) +v1,21873:6630773,19117306:0,393216,0 +(1,21884:6630773,23006730:25952256,4282640,196608 +g1,21884:6630773,23006730 +g1,21884:6630773,23006730 +g1,21884:6434165,23006730 +(1,21884:6434165,23006730:0,4282640,196608 +r1,21942:32779637,23006730:26345472,4479248,196608 +k1,21884:6434165,23006730:-26345472 +) +(1,21884:6434165,23006730:26345472,4282640,196608 +[1,21884:6630773,23006730:25952256,4086032,0 +(1,21875:6630773,19345137:25952256,424439,112852 +(1,21874:6630773,19345137:0,0,0 +g1,21874:6630773,19345137 +g1,21874:6630773,19345137 +g1,21874:6303093,19345137 +(1,21874:6303093,19345137:0,0,0 +) +g1,21874:6630773,19345137 +) +k1,21875:6630773,19345137:0 +g1,21875:12605944,19345137 +g1,21875:14597668,19345137 +g1,21875:15261576,19345137 +h1,21875:16921346,19345137:0,0,0 +k1,21875:32583029,19345137:15661683 +g1,21875:32583029,19345137 +) +(1,21883:6630773,20161064:25952256,424439,86428 +(1,21877:6630773,20161064:0,0,0 +g1,21877:6630773,20161064 +g1,21877:6630773,20161064 +g1,21877:6303093,20161064 +(1,21877:6303093,20161064:0,0,0 +) +g1,21877:6630773,20161064 +) +g1,21883:7626635,20161064 +g1,21883:7958589,20161064 +g1,21883:8290543,20161064 +g1,21883:8622497,20161064 +g1,21883:8954451,20161064 +g1,21883:9286405,20161064 +g1,21883:9618359,20161064 +k1,21883:9618359,20161064:0 +h1,21883:10946175,20161064:0,0,0 +k1,21883:32583029,20161064:21636854 +g1,21883:32583029,20161064 +) +(1,21883:6630773,20845919:25952256,424439,9908 +h1,21883:6630773,20845919:0,0,0 +g1,21883:7626635,20845919 +g1,21883:8954451,20845919 +g1,21883:9286405,20845919 +g1,21883:9618359,20845919 +g1,21883:9950313,20845919 +h1,21883:10946175,20845919:0,0,0 +k1,21883:32583029,20845919:21636854 +g1,21883:32583029,20845919 +) +(1,21883:6630773,21530774:25952256,407923,112852 +h1,21883:6630773,21530774:0,0,0 +g1,21883:7626635,21530774 +g1,21883:9618359,21530774 +g1,21883:9950313,21530774 +g1,21883:10282267,21530774 +h1,21883:10946175,21530774:0,0,0 +k1,21883:32583029,21530774:21636854 +g1,21883:32583029,21530774 +) +(1,21883:6630773,22215629:25952256,424439,9908 +h1,21883:6630773,22215629:0,0,0 +g1,21883:7626635,22215629 +g1,21883:9286405,22215629 +g1,21883:9618359,22215629 +g1,21883:9950313,22215629 +h1,21883:10946175,22215629:0,0,0 +k1,21883:32583029,22215629:21636854 +g1,21883:32583029,22215629 +) +(1,21883:6630773,22900484:25952256,424439,106246 +h1,21883:6630773,22900484:0,0,0 +g1,21883:7626635,22900484 +g1,21883:9618359,22900484 +g1,21883:9950313,22900484 +h1,21883:10946175,22900484:0,0,0 +k1,21883:32583029,22900484:21636854 +g1,21883:32583029,22900484 +) +] +) +g1,21884:32583029,23006730 +g1,21884:6630773,23006730 +g1,21884:6630773,23006730 +g1,21884:32583029,23006730 +g1,21884:32583029,23006730 +) +h1,21884:6630773,23203338:0,0,0 +(1,21888:6630773,24068418:25952256,513147,122846 +h1,21887:6630773,24068418:983040,0,0 +k1,21887:9315217,24068418:222256 +k1,21887:12232968,24068418:222255 +(1,21887:12232968,24068418:0,452978,122846 +r1,21942:13998081,24068418:1765113,575824,122846 +k1,21887:12232968,24068418:-1765113 +) +(1,21887:12232968,24068418:1765113,452978,122846 +k1,21887:12232968,24068418:3277 +h1,21887:13994804,24068418:0,411205,112570 +) +k1,21887:14220337,24068418:222256 +k1,21887:15599302,24068418:222255 +k1,21887:16925840,24068418:222256 +k1,21887:19108933,24068418:222256 +k1,21887:20614383,24068418:222255 +k1,21887:23371572,24068418:222256 +k1,21887:25272204,24068418:222255 +(1,21887:25272204,24068418:0,452978,122846 +r1,21942:28444164,24068418:3171960,575824,122846 +k1,21887:25272204,24068418:-3171960 +) +(1,21887:25272204,24068418:3171960,452978,122846 +k1,21887:25272204,24068418:3277 +h1,21887:28440887,24068418:0,411205,112570 +) +k1,21887:28666420,24068418:222256 +k1,21887:29836326,24068418:222255 +k1,21887:31708779,24068418:222256 +k1,21888:32583029,24068418:0 +) +(1,21888:6630773,24933498:25952256,505283,7863 +k1,21888:32583028,24933498:24550440 +g1,21888:32583028,24933498 +) +v1,21890:6630773,25618353:0,393216,0 +(1,21911:6630773,31305437:25952256,6080300,196608 +g1,21911:6630773,31305437 +g1,21911:6630773,31305437 +g1,21911:6434165,31305437 +(1,21911:6434165,31305437:0,6080300,196608 +r1,21942:32779637,31305437:26345472,6276908,196608 +k1,21911:6434165,31305437:-26345472 +) +(1,21911:6434165,31305437:26345472,6080300,196608 +[1,21911:6630773,31305437:25952256,5883692,0 +(1,21892:6630773,25846184:25952256,424439,112852 +(1,21891:6630773,25846184:0,0,0 +g1,21891:6630773,25846184 +g1,21891:6630773,25846184 +g1,21891:6303093,25846184 +(1,21891:6303093,25846184:0,0,0 +) +g1,21891:6630773,25846184 +) +k1,21892:6630773,25846184:0 +g1,21892:8954451,25846184 +g1,21892:9950313,25846184 +h1,21892:10614221,25846184:0,0,0 +k1,21892:32583029,25846184:21968808 +g1,21892:32583029,25846184 +) +(1,21896:6630773,26662111:25952256,424439,79822 +(1,21894:6630773,26662111:0,0,0 +g1,21894:6630773,26662111 +g1,21894:6630773,26662111 +g1,21894:6303093,26662111 +(1,21894:6303093,26662111:0,0,0 +) +g1,21894:6630773,26662111 +) +g1,21896:7626635,26662111 +g1,21896:8954451,26662111 +h1,21896:11942036,26662111:0,0,0 +k1,21896:32583028,26662111:20640992 +g1,21896:32583028,26662111 +) +(1,21898:6630773,27478038:25952256,424439,112852 +(1,21897:6630773,27478038:0,0,0 +g1,21897:6630773,27478038 +g1,21897:6630773,27478038 +g1,21897:6303093,27478038 +(1,21897:6303093,27478038:0,0,0 +) +g1,21897:6630773,27478038 +) +k1,21898:6630773,27478038:0 +g1,21898:8954451,27478038 +g1,21898:9950313,27478038 +g1,21898:10946175,27478038 +g1,21898:12937899,27478038 +g1,21898:13601807,27478038 +h1,21898:17253300,27478038:0,0,0 +k1,21898:32583029,27478038:15329729 +g1,21898:32583029,27478038 +) +(1,21903:6630773,28293965:25952256,424439,106246 +(1,21900:6630773,28293965:0,0,0 +g1,21900:6630773,28293965 +g1,21900:6630773,28293965 +g1,21900:6303093,28293965 +(1,21900:6303093,28293965:0,0,0 +) +g1,21900:6630773,28293965 +) +g1,21903:7626635,28293965 +g1,21903:7958589,28293965 +h1,21903:10614220,28293965:0,0,0 +k1,21903:32583028,28293965:21968808 +g1,21903:32583028,28293965 +) +(1,21903:6630773,28978820:25952256,424439,9908 +h1,21903:6630773,28978820:0,0,0 +g1,21903:7626635,28978820 +h1,21903:10614220,28978820:0,0,0 +k1,21903:32583028,28978820:21968808 +g1,21903:32583028,28978820 +) +(1,21905:6630773,29794747:25952256,424439,112852 +(1,21904:6630773,29794747:0,0,0 +g1,21904:6630773,29794747 +g1,21904:6630773,29794747 +g1,21904:6303093,29794747 +(1,21904:6303093,29794747:0,0,0 +) +g1,21904:6630773,29794747 +) +k1,21905:6630773,29794747:0 +g1,21905:9618359,29794747 +g1,21905:11278129,29794747 +g1,21905:12273991,29794747 +g1,21905:14265715,29794747 +g1,21905:14929623,29794747 +g1,21905:18913070,29794747 +g1,21905:23560425,29794747 +g1,21905:24224333,29794747 +h1,21905:25552149,29794747:0,0,0 +k1,21905:32583029,29794747:7030880 +g1,21905:32583029,29794747 +) +(1,21910:6630773,30610674:25952256,424439,106246 +(1,21907:6630773,30610674:0,0,0 +g1,21907:6630773,30610674 +g1,21907:6630773,30610674 +g1,21907:6303093,30610674 +(1,21907:6303093,30610674:0,0,0 +) +g1,21907:6630773,30610674 +) +g1,21910:7626635,30610674 +g1,21910:7958589,30610674 +h1,21910:10614220,30610674:0,0,0 +k1,21910:32583028,30610674:21968808 +g1,21910:32583028,30610674 +) +(1,21910:6630773,31295529:25952256,424439,9908 +h1,21910:6630773,31295529:0,0,0 +g1,21910:7626635,31295529 +h1,21910:10614220,31295529:0,0,0 +k1,21910:32583028,31295529:21968808 +g1,21910:32583028,31295529 +) +] +) +g1,21911:32583029,31305437 +g1,21911:6630773,31305437 +g1,21911:6630773,31305437 +g1,21911:32583029,31305437 +g1,21911:32583029,31305437 +) +h1,21911:6630773,31502045:0,0,0 +(1,21915:6630773,32367125:25952256,513147,126483 +h1,21914:6630773,32367125:983040,0,0 +k1,21914:8668345,32367125:236643 +k1,21914:11995010,32367125:236642 +k1,21914:14260648,32367125:236643 +k1,21914:16858553,32367125:236643 +k1,21914:18199477,32367125:236642 +k1,21914:19183886,32367125:236643 +k1,21914:21802106,32367125:236642 +k1,21914:22654787,32367125:236643 +k1,21914:23910515,32367125:236643 +k1,21914:25470947,32367125:236605 +k1,21914:27671048,32367125:236642 +k1,21914:29825274,32367125:236643 +k1,21914:32583029,32367125:0 +) +(1,21915:6630773,33232205:25952256,513147,102891 +k1,21914:8493543,33232205:160800 +k1,21914:10685304,33232205:160800 +k1,21914:13164112,33232205:160800 +k1,21914:14818477,33232205:160799 +k1,21914:15665439,33232205:160800 +k1,21914:17144785,33232205:160762 +k1,21914:18863376,33232205:160800 +k1,21914:22467438,33232205:160800 +k1,21914:24515675,33232205:160800 +k1,21914:25780757,33232205:160800 +k1,21914:26689322,33232205:160799 +k1,21914:28135938,33232205:160800 +k1,21914:29809964,33232205:160800 +k1,21914:30622192,33232205:160800 +k1,21914:32583029,33232205:0 +) +(1,21915:6630773,34097285:25952256,505283,7863 +k1,21915:32583030,34097285:23417324 +g1,21915:32583030,34097285 +) +v1,21917:6630773,34782140:0,393216,0 +(1,21924:6630773,35905720:25952256,1516796,196608 +g1,21924:6630773,35905720 +g1,21924:6630773,35905720 +g1,21924:6434165,35905720 +(1,21924:6434165,35905720:0,1516796,196608 +r1,21942:32779637,35905720:26345472,1713404,196608 +k1,21924:6434165,35905720:-26345472 +) +(1,21924:6434165,35905720:26345472,1516796,196608 +[1,21924:6630773,35905720:25952256,1320188,0 +(1,21919:6630773,35009971:25952256,424439,86428 +(1,21918:6630773,35009971:0,0,0 +g1,21918:6630773,35009971 +g1,21918:6630773,35009971 +g1,21918:6303093,35009971 +(1,21918:6303093,35009971:0,0,0 +) +g1,21918:6630773,35009971 +) +k1,21919:6630773,35009971:0 +g1,21919:15261577,35009971 +g1,21919:16921347,35009971 +h1,21919:18249163,35009971:0,0,0 +k1,21919:32583029,35009971:14333866 +g1,21919:32583029,35009971 +) +(1,21923:6630773,35825898:25952256,424439,79822 +(1,21921:6630773,35825898:0,0,0 +g1,21921:6630773,35825898 +g1,21921:6630773,35825898 +g1,21921:6303093,35825898 +(1,21921:6303093,35825898:0,0,0 +) +g1,21921:6630773,35825898 +) +g1,21923:7626635,35825898 +g1,21923:8954451,35825898 +g1,21923:12273990,35825898 +g1,21923:15593529,35825898 +g1,21923:18913068,35825898 +g1,21923:22232607,35825898 +h1,21923:25220192,35825898:0,0,0 +k1,21923:32583029,35825898:7362837 +g1,21923:32583029,35825898 +) +] +) +g1,21924:32583029,35905720 +g1,21924:6630773,35905720 +g1,21924:6630773,35905720 +g1,21924:32583029,35905720 +g1,21924:32583029,35905720 +) +h1,21924:6630773,36102328:0,0,0 +(1,21928:6630773,36967408:25952256,513147,134348 +h1,21927:6630773,36967408:983040,0,0 +k1,21927:11379968,36967408:193132 +k1,21927:12837946,36967408:193133 +k1,21927:13690370,36967408:193132 +k1,21927:15202080,36967408:193126 +k1,21927:17756474,36967408:193132 +k1,21927:20728334,36967408:193133 +k1,21927:21682994,36967408:193132 +k1,21927:24571622,36967408:193132 +(1,21927:24571622,36967408:0,452978,115847 +r1,21942:26336735,36967408:1765113,568825,115847 +k1,21927:24571622,36967408:-1765113 +) +(1,21927:24571622,36967408:1765113,452978,115847 +k1,21927:24571622,36967408:3277 +h1,21927:26333458,36967408:0,411205,112570 +) +k1,21927:26703537,36967408:193132 +k1,21927:28632063,36967408:193133 +k1,21927:30175892,36967408:193132 +k1,21927:32583029,36967408:0 +) +(1,21928:6630773,37832488:25952256,513147,126483 +k1,21927:7983577,37832488:161359 +k1,21927:11452538,37832488:161359 +k1,21927:12300059,37832488:161359 +k1,21927:14673912,37832488:161358 +k1,21927:15826831,37832488:161359 +k1,21927:17885457,37832488:161359 +k1,21927:18994467,37832488:161359 +k1,21927:20248311,37832488:161359 +k1,21927:21025708,37832488:161359 +k1,21927:23263248,37832488:161359 +k1,21927:25199321,37832488:161358 +k1,21927:26379765,37832488:161359 +k1,21927:28821777,37832488:161359 +k1,21927:30174581,37832488:161359 +k1,21928:32583029,37832488:0 +) +(1,21928:6630773,38697568:25952256,505283,126483 +k1,21927:8370302,38697568:171908 +k1,21927:9158248,38697568:171908 +k1,21927:10648713,38697568:171881 +k1,21927:11812181,38697568:171908 +k1,21927:13838758,38697568:171908 +k1,21927:14820035,38697568:171907 +k1,21927:17614694,38697568:171908 +k1,21927:19970917,38697568:171908 +k1,21927:21161910,38697568:171908 +k1,21927:24341265,38697568:171908 +k1,21927:25704618,38697568:171908 +k1,21927:29784438,38697568:171908 +k1,21927:31966991,38697568:171908 +k1,21927:32583029,38697568:0 +) +(1,21928:6630773,39562648:25952256,505283,126483 +k1,21927:8164416,39562648:207850 +k1,21927:9363835,39562648:207859 +k1,21927:11426363,39562648:207859 +k1,21927:12443592,39562648:207859 +k1,21927:14871811,39562648:207859 +k1,21927:16944169,39562648:207859 +k1,21927:20751265,39562648:207859 +k1,21927:23442283,39562648:207859 +k1,21927:25044093,39562648:207859 +k1,21927:26979481,39562648:207859 +k1,21927:30494942,39562648:207859 +k1,21927:31835263,39562648:207859 +k1,21927:32583029,39562648:0 +) +(1,21928:6630773,40427728:25952256,513147,134348 +k1,21927:8295902,40427728:225303 +k1,21927:9207368,40427728:225304 +k1,21927:11726431,40427728:225303 +k1,21927:13887668,40427728:225303 +k1,21927:14874499,40427728:225303 +k1,21927:15870506,40427728:225304 +k1,21927:19122262,40427728:225303 +k1,21927:21741595,40427728:225303 +k1,21927:22594734,40427728:225304 +k1,21927:23175897,40427728:225303 +k1,21927:24973409,40427728:225303 +k1,21927:27053381,40427728:225303 +k1,21927:28088055,40427728:225304 +k1,21927:31075701,40427728:225303 +k1,21927:32583029,40427728:0 +) +(1,21928:6630773,41292808:25952256,513147,134348 +k1,21927:7917791,41292808:214849 +k1,21927:9860169,41292808:214849 +k1,21927:12482155,41292808:214849 +k1,21927:13888449,41292808:214849 +k1,21927:17410900,41292808:214849 +k1,21927:19810064,41292808:214849 +k1,21927:20711075,41292808:214849 +k1,21927:22439150,41292808:214849 +k1,21927:23415527,41292808:214849 +k1,21927:25895956,41292808:214849 +k1,21927:26872333,41292808:214849 +k1,21927:29667334,41292808:214849 +k1,21927:32583029,41292808:0 +) +(1,21928:6630773,42157888:25952256,505283,134348 +k1,21927:7549400,42157888:152511 +k1,21927:10063174,42157888:152512 +k1,21927:11207245,42157888:152511 +k1,21927:14423565,42157888:152512 +k1,21927:15262238,42157888:152511 +k1,21927:17708510,42157888:152512 +k1,21927:19970625,42157888:152511 +k1,21927:21319824,42157888:152512 +k1,21927:22979663,42157888:152511 +k1,21927:24662441,42157888:152512 +k1,21927:25466380,42157888:152511 +k1,21927:26366658,42157888:152512 +k1,21927:29716671,42157888:152511 +k1,21927:30555345,42157888:152512 +k1,21927:32583029,42157888:0 +) +(1,21928:6630773,43022968:25952256,505283,134348 +g1,21927:7446040,43022968 +g1,21927:10274573,43022968 +g1,21927:11867753,43022968 +g1,21927:14077627,43022968 +g1,21927:16912059,43022968 +g1,21927:18531453,43022968 +g1,21927:19922127,43022968 +k1,21928:32583029,43022968:11413097 +g1,21928:32583029,43022968 +) +v1,21930:6630773,43707823:0,393216,0 +(1,21937:6630773,44831403:25952256,1516796,196608 +g1,21937:6630773,44831403 +g1,21937:6630773,44831403 +g1,21937:6434165,44831403 +(1,21937:6434165,44831403:0,1516796,196608 +r1,21942:32779637,44831403:26345472,1713404,196608 +k1,21937:6434165,44831403:-26345472 +) +(1,21937:6434165,44831403:26345472,1516796,196608 +[1,21937:6630773,44831403:25952256,1320188,0 +(1,21932:6630773,43935654:25952256,424439,86428 +(1,21931:6630773,43935654:0,0,0 +g1,21931:6630773,43935654 +g1,21931:6630773,43935654 +g1,21931:6303093,43935654 +(1,21931:6303093,43935654:0,0,0 +) +g1,21931:6630773,43935654 +) +k1,21932:6630773,43935654:0 +g1,21932:14929623,43935654 +g1,21932:15593531,43935654 +h1,21932:16921347,43935654:0,0,0 +k1,21932:32583029,43935654:15661682 +g1,21932:32583029,43935654 +) +(1,21936:6630773,44751581:25952256,424439,79822 +(1,21934:6630773,44751581:0,0,0 +g1,21934:6630773,44751581 +g1,21934:6630773,44751581 +g1,21934:6303093,44751581 +(1,21934:6303093,44751581:0,0,0 +) +g1,21934:6630773,44751581 +) +g1,21936:7626635,44751581 +g1,21936:8954451,44751581 +g1,21936:12273990,44751581 +g1,21936:15593529,44751581 +g1,21936:18913068,44751581 +g1,21936:22232607,44751581 +h1,21936:25220192,44751581:0,0,0 +k1,21936:32583029,44751581:7362837 +g1,21936:32583029,44751581 +) +] +) +g1,21937:32583029,44831403 +g1,21937:6630773,44831403 +g1,21937:6630773,44831403 +g1,21937:32583029,44831403 +g1,21937:32583029,44831403 +) +h1,21937:6630773,45028011:0,0,0 +] +(1,21942:32583029,45706769:0,0,0 +g1,21942:32583029,45706769 +) +) +] +(1,21942:6630773,47279633:25952256,0,0 +h1,21942:6630773,47279633:25952256,0,0 +) +] +(1,21942:4262630,4025873:0,0,0 +[1,21942:-473656,4025873:0,0,0 +(1,21942:-473656,-710413:0,0,0 +(1,21942:-473656,-710413:0,0,0 +g1,21942:-473656,-710413 +) +g1,21942:-473656,-710413 ) ] ) ] !27027 -}371 -Input:4117:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4118:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4119:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4120:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}372 Input:4121:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4122:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4123:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -379855,814 +380059,814 @@ Input:4136:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4137:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4138:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4139:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4142:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4143:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2128 -{372 -[1,21973:4262630,47279633:28320399,43253760,0 -(1,21973:4262630,4025873:0,0,0 -[1,21973:-473656,4025873:0,0,0 -(1,21973:-473656,-710413:0,0,0 -(1,21973:-473656,-644877:0,0,0 -k1,21973:-473656,-644877:-65536 +{373 +[1,21971:4262630,47279633:28320399,43253760,0 +(1,21971:4262630,4025873:0,0,0 +[1,21971:-473656,4025873:0,0,0 +(1,21971:-473656,-710413:0,0,0 +(1,21971:-473656,-644877:0,0,0 +k1,21971:-473656,-644877:-65536 ) -(1,21973:-473656,4736287:0,0,0 -k1,21973:-473656,4736287:5209943 +(1,21971:-473656,4736287:0,0,0 +k1,21971:-473656,4736287:5209943 ) -g1,21973:-473656,-710413 +g1,21971:-473656,-710413 ) ] ) -[1,21973:6630773,47279633:25952256,43253760,0 -[1,21973:6630773,4812305:25952256,786432,0 -(1,21973:6630773,4812305:25952256,505283,11795 -(1,21973:6630773,4812305:25952256,505283,11795 -g1,21973:3078558,4812305 -[1,21973:3078558,4812305:0,0,0 -(1,21973:3078558,2439708:0,1703936,0 -k1,21973:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,21973:2537886,2439708:1179648,16384,0 +[1,21971:6630773,47279633:25952256,43253760,0 +[1,21971:6630773,4812305:25952256,786432,0 +(1,21971:6630773,4812305:25952256,505283,11795 +(1,21971:6630773,4812305:25952256,505283,11795 +g1,21971:3078558,4812305 +[1,21971:3078558,4812305:0,0,0 +(1,21971:3078558,2439708:0,1703936,0 +k1,21971:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,21971:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,21973:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,21971:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,21973:3078558,4812305:0,0,0 -(1,21973:3078558,2439708:0,1703936,0 -g1,21973:29030814,2439708 -g1,21973:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,21973:36151628,1915420:16384,1179648,0 +[1,21971:3078558,4812305:0,0,0 +(1,21971:3078558,2439708:0,1703936,0 +g1,21971:29030814,2439708 +g1,21971:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,21971:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,21973:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,21971:37855564,2439708:1179648,16384,0 ) ) -k1,21973:3078556,2439708:-34777008 +k1,21971:3078556,2439708:-34777008 ) ] -[1,21973:3078558,4812305:0,0,0 -(1,21973:3078558,49800853:0,16384,2228224 -k1,21973:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,21973:2537886,49800853:1179648,16384,0 +[1,21971:3078558,4812305:0,0,0 +(1,21971:3078558,49800853:0,16384,2228224 +k1,21971:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,21971:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,21973:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,21971:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,21973:3078558,4812305:0,0,0 -(1,21973:3078558,49800853:0,16384,2228224 -g1,21973:29030814,49800853 -g1,21973:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,21973:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,21973:37855564,49800853:1179648,16384,0 -) -) -k1,21973:3078556,49800853:-34777008 -) -] -g1,21973:6630773,4812305 -g1,21973:6630773,4812305 -g1,21973:8724648,4812305 -k1,21973:31387652,4812305:22663004 -) -) -] -[1,21973:6630773,45706769:25952256,40108032,0 -(1,21973:6630773,45706769:25952256,40108032,0 -(1,21973:6630773,45706769:0,0,0 -g1,21973:6630773,45706769 -) -[1,21973:6630773,45706769:25952256,40108032,0 -(1,21944:6630773,6254097:25952256,505283,134348 -h1,21942:6630773,6254097:983040,0,0 -k1,21942:8340225,6254097:256519 -k1,21942:9128241,6254097:256519 -k1,21942:10670576,6254097:256519 -k1,21942:14136392,6254097:256518 -k1,21942:15044339,6254097:256519 -k1,21942:18559963,6254097:256519 -k1,21942:20100988,6254097:256519 -k1,21942:22908168,6254097:256519 -k1,21942:24268969,6254097:256519 -k1,21942:25901088,6254097:256518 -k1,21942:29718178,6254097:256519 -k1,21942:30330557,6254097:256519 -k1,21942:32583029,6254097:0 -) -(1,21944:6630773,7119177:25952256,513147,134348 -k1,21942:7761974,7119177:196658 -k1,21942:8617924,7119177:196658 -k1,21942:11349516,7119177:196659 -k1,21942:12737619,7119177:196658 -k1,21942:14400973,7119177:196658 -k1,21942:16949718,7119177:196658 -k1,21942:19177338,7119177:196659 -k1,21942:21726083,7119177:196658 -k1,21942:23027023,7119177:196658 -k1,21942:23971447,7119177:196658 -k1,21942:27844676,7119177:196659 -k1,21942:28802862,7119177:196658 -k1,21942:31391584,7119177:196658 -k1,21942:32583029,7119177:0 -) -(1,21944:6630773,7984257:25952256,513147,126483 -k1,21942:9549025,7984257:196542 -k1,21942:13939217,7984257:196543 -k1,21942:16961671,7984257:196542 -k1,21942:18725835,7984257:196543 -k1,21942:22115291,7984257:196542 -k1,21942:22963262,7984257:196543 -k1,21942:26352718,7984257:196542 -k1,21942:28380337,7984257:196543 -k1,21942:29192917,7984257:196542 -k1,21942:31420421,7984257:196543 -k1,21944:32583029,7984257:0 -) -(1,21944:6630773,8849337:25952256,513147,134348 -k1,21942:9390494,8849337:216924 -k1,21942:12587995,8849337:216924 -k1,21942:15567262,8849337:216924 -k1,21942:17500574,8849337:216924 -k1,21942:18376790,8849337:216924 -k1,21942:20624676,8849337:216925 -k1,21942:24080389,8849337:216924 -k1,21942:24767206,8849337:216924 -k1,21942:25515627,8849337:216924 -k1,21942:28941849,8849337:216924 -k1,21942:29810201,8849337:216924 -k1,21942:31379788,8849337:216924 -k1,21942:32583029,8849337:0 -) -(1,21944:6630773,9714417:25952256,505283,134348 -g1,21942:8097468,9714417 -g1,21942:10800828,9714417 -g1,21942:12698095,9714417 -g1,21942:15755349,9714417 -g1,21942:16973663,9714417 -g1,21942:19534154,9714417 -g1,21942:21246609,9714417 -g1,21942:22061876,9714417 -g1,21942:26290258,9714417 -k1,21944:32583029,9714417:6292771 -g1,21944:32583029,9714417 -) -(1,21945:6630773,11831235:25952256,555811,12975 -(1,21945:6630773,11831235:2899444,534184,12975 -g1,21945:6630773,11831235 -g1,21945:9530217,11831235 -) -g1,21945:13935613,11831235 -g1,21945:19216177,11831235 -k1,21945:32583029,11831235:11181095 -g1,21945:32583029,11831235 -) -(1,21948:6630773,13089531:25952256,505283,122846 -k1,21947:10615666,13089531:292595 -k1,21947:12939222,13089531:292595 -k1,21947:15134327,13089531:292595 -(1,21947:15134327,13089531:0,452978,115847 -r1,21973:23933676,13089531:8799349,568825,115847 -k1,21947:15134327,13089531:-8799349 -) -(1,21947:15134327,13089531:8799349,452978,115847 -k1,21947:15134327,13089531:3277 -h1,21947:23930399,13089531:0,411205,112570 -) -k1,21947:24399941,13089531:292595 -(1,21947:24399941,13089531:0,452978,122846 -r1,21973:32495867,13089531:8095926,575824,122846 -k1,21947:24399941,13089531:-8095926 -) -(1,21947:24399941,13089531:8095926,452978,122846 -k1,21947:24399941,13089531:3277 -h1,21947:32492590,13089531:0,411205,112570 -) -k1,21948:32583029,13089531:0 -) -(1,21948:6630773,13954611:25952256,505283,122846 -(1,21947:6630773,13954611:0,452978,122846 -r1,21973:15078410,13954611:8447637,575824,122846 -k1,21947:6630773,13954611:-8447637 -) -(1,21947:6630773,13954611:8447637,452978,122846 -k1,21947:6630773,13954611:3277 -h1,21947:15075133,13954611:0,411205,112570 -) -k1,21947:15528453,13954611:276373 -(1,21947:15528453,13954611:0,452978,122846 -r1,21973:23976090,13954611:8447637,575824,122846 -k1,21947:15528453,13954611:-8447637 -) -(1,21947:15528453,13954611:8447637,452978,122846 -k1,21947:15528453,13954611:3277 -h1,21947:23972813,13954611:0,411205,112570 -) -k1,21947:24426133,13954611:276373 -(1,21947:24426133,13954611:0,452978,115847 -r1,21973:31115211,13954611:6689078,568825,115847 -k1,21947:24426133,13954611:-6689078 -) -(1,21947:24426133,13954611:6689078,452978,115847 -k1,21947:24426133,13954611:3277 -h1,21947:31111934,13954611:0,411205,112570 -) -k1,21947:31391584,13954611:276373 -k1,21948:32583029,13954611:0 -) -(1,21948:6630773,14819691:25952256,505283,134348 -(1,21947:6630773,14819691:0,452978,115847 -r1,21973:14726699,14819691:8095926,568825,115847 -k1,21947:6630773,14819691:-8095926 -) -(1,21947:6630773,14819691:8095926,452978,115847 -k1,21947:6630773,14819691:3277 -h1,21947:14723422,14819691:0,411205,112570 -) -k1,21947:15061718,14819691:161349 -k1,21947:16502986,14819691:161350 -k1,21947:19075405,14819691:161349 -k1,21947:22807155,14819691:161349 -k1,21947:25958257,14819691:161350 -k1,21947:28754809,14819691:161349 -k1,21947:30088598,14819691:161350 -k1,21947:30932832,14819691:161349 -k1,21947:32583029,14819691:0 -) -(1,21948:6630773,15684771:25952256,505283,134348 -k1,21947:9493794,15684771:328088 -k1,21947:11379673,15684771:328088 -k1,21947:12699321,15684771:328088 -k1,21947:14540635,15684771:328088 -k1,21947:16262674,15684771:328088 -(1,21947:16262674,15684771:0,452978,115847 -r1,21973:18731211,15684771:2468537,568825,115847 -k1,21947:16262674,15684771:-2468537 -) -(1,21947:16262674,15684771:2468537,452978,115847 -k1,21947:16262674,15684771:3277 -h1,21947:18727934,15684771:0,411205,112570 -) -k1,21947:19232969,15684771:328088 -(1,21947:19232969,15684771:0,452978,115847 -r1,21973:20646370,15684771:1413401,568825,115847 -k1,21947:19232969,15684771:-1413401 -) -(1,21947:19232969,15684771:1413401,452978,115847 -k1,21947:19232969,15684771:3277 -h1,21947:20643093,15684771:0,411205,112570 -) -k1,21947:20974458,15684771:328088 -k1,21947:22493991,15684771:328088 -(1,21947:22493991,15684771:0,452978,115847 -r1,21973:25314240,15684771:2820249,568825,115847 -k1,21947:22493991,15684771:-2820249 -) -(1,21947:22493991,15684771:2820249,452978,115847 -k1,21947:22493991,15684771:3277 -h1,21947:25310963,15684771:0,411205,112570 -) -k1,21947:25642328,15684771:328088 -k1,21947:27533450,15684771:328088 -k1,21947:28348996,15684771:327958 -k1,21947:31648486,15684771:328088 -k1,21947:32583029,15684771:0 -) -(1,21948:6630773,16549851:25952256,513147,115847 -k1,21947:7566905,16549851:268976 -(1,21947:7566905,16549851:0,459977,115847 -r1,21973:8980306,16549851:1413401,575824,115847 -k1,21947:7566905,16549851:-1413401 -) -(1,21947:7566905,16549851:1413401,459977,115847 -k1,21947:7566905,16549851:3277 -h1,21947:8977029,16549851:0,411205,112570 -) -k1,21947:9249282,16549851:268976 -k1,21947:11420768,16549851:268976 -k1,21947:12221241,16549851:268976 -k1,21947:13776034,16549851:268977 -k1,21947:17002650,16549851:268976 -k1,21947:19088284,16549851:268976 -k1,21947:21259770,16549851:268976 -k1,21947:22674971,16549851:268976 -(1,21947:22674971,16549851:0,452978,115847 -r1,21973:31122608,16549851:8447637,568825,115847 -k1,21947:22674971,16549851:-8447637 -) -(1,21947:22674971,16549851:8447637,452978,115847 -k1,21947:22674971,16549851:3277 -h1,21947:31119331,16549851:0,411205,112570 -) -k1,21947:31391584,16549851:268976 -k1,21948:32583029,16549851:0 -) -(1,21948:6630773,17414931:25952256,513147,126483 -(1,21947:6630773,17414931:0,452978,115847 -r1,21973:15078410,17414931:8447637,568825,115847 -k1,21947:6630773,17414931:-8447637 -) -(1,21947:6630773,17414931:8447637,452978,115847 -k1,21947:6630773,17414931:3277 -h1,21947:15075133,17414931:0,411205,112570 -) -k1,21947:15282401,17414931:203991 -k1,21947:16477953,17414931:203992 -k1,21947:18536613,17414931:203991 -k1,21947:19549974,17414931:203991 -k1,21947:20773051,17414931:203992 -k1,21947:22069527,17414931:203991 -k1,21947:22932811,17414931:203992 -k1,21947:26867111,17414931:203991 -k1,21947:29591617,17414931:203991 -k1,21947:30454901,17414931:203992 -k1,21947:31923737,17414931:203991 -k1,21947:32583029,17414931:0 -) -(1,21948:6630773,18280011:25952256,513147,134348 -k1,21947:8930193,18280011:268459 -k1,21947:12188405,18280011:268460 -k1,21947:14692297,18280011:268459 -k1,21947:15612184,18280011:268459 -k1,21947:17477100,18280011:268459 -k1,21947:19024167,18280011:268460 -k1,21947:21973049,18280011:268459 -k1,21947:24127634,18280011:268459 -k1,21947:27067341,18280011:268460 -k1,21947:30698452,18280011:268459 -k1,21947:31649796,18280011:268459 -k1,21947:32583029,18280011:0 -) -(1,21948:6630773,19145091:25952256,513147,134348 -g1,21947:9050362,19145091 -g1,21947:11148824,19145091 -g1,21947:14328630,19145091 -g1,21947:17290202,19145091 -g1,21947:19205819,19145091 -g1,21947:20064340,19145091 -g1,21947:22294530,19145091 -k1,21948:32583029,19145091:7170952 -g1,21948:32583029,19145091 -) -(1,21949:6630773,21261909:25952256,555811,12975 -(1,21949:6630773,21261909:2899444,534184,12975 -g1,21949:6630773,21261909 -g1,21949:9530217,21261909 -) -g1,21949:12753344,21261909 -g1,21949:18033908,21261909 -k1,21949:32583029,21261909:12363364 -g1,21949:32583029,21261909 -) -(1,21953:6630773,22520205:25952256,505283,115847 -k1,21951:11184552,22520205:2400921 -k1,21951:15487983,22520205:2400921 -(1,21951:15487983,22520205:0,452978,115847 -r1,21973:23583909,22520205:8095926,568825,115847 -k1,21951:15487983,22520205:-8095926 -) -(1,21951:15487983,22520205:8095926,452978,115847 -k1,21951:15487983,22520205:3277 -h1,21951:23580632,22520205:0,411205,112570 -) -k1,21951:26158500,22520205:2400921 -(1,21951:26158500,22520205:0,452978,115847 -r1,21973:32495867,22520205:6337367,568825,115847 -k1,21951:26158500,22520205:-6337367 -) -(1,21951:26158500,22520205:6337367,452978,115847 -k1,21951:26158500,22520205:3277 -h1,21951:32492590,22520205:0,411205,112570 -) -k1,21953:32583029,22520205:0 -) -(1,21953:6630773,23385285:25952256,513147,134348 -(1,21951:6630773,23385285:0,452978,122846 -r1,21973:13319851,23385285:6689078,575824,122846 -k1,21951:6630773,23385285:-6689078 -) -(1,21951:6630773,23385285:6689078,452978,122846 -k1,21951:6630773,23385285:3277 -h1,21951:13316574,23385285:0,411205,112570 -) -k1,21951:13720296,23385285:400445 -k1,21951:15112301,23385285:400445 -k1,21951:17025972,23385285:400445 -k1,21951:18820369,23385285:400446 -k1,21951:22667352,23385285:400445 -k1,21951:24457160,23385285:400445 -k1,21951:26895775,23385285:400445 -k1,21951:27982382,23385285:400445 -k1,21951:30780789,23385285:400445 -k1,21951:32583029,23385285:0 -) -(1,21953:6630773,24250365:25952256,505283,126483 -k1,21951:8930526,24250365:397243 -k1,21951:10473993,24250365:397242 -(1,21951:10473993,24250365:0,452978,115847 -r1,21973:18921630,24250365:8447637,568825,115847 -k1,21951:10473993,24250365:-8447637 -) -(1,21951:10473993,24250365:8447637,452978,115847 -k1,21951:10473993,24250365:3277 -h1,21951:18918353,24250365:0,411205,112570 -) -k1,21951:19318873,24250365:397243 -k1,21951:20907561,24250365:397243 -(1,21951:20907561,24250365:0,452978,115847 -r1,21973:28300063,24250365:7392502,568825,115847 -k1,21951:20907561,24250365:-7392502 -) -(1,21951:20907561,24250365:7392502,452978,115847 -k1,21951:20907561,24250365:3277 -h1,21951:28296786,24250365:0,411205,112570 -) -k1,21951:28697305,24250365:397242 -k1,21951:31524623,24250365:397243 -k1,21953:32583029,24250365:0 -) -(1,21953:6630773,25115445:25952256,513147,134348 -k1,21951:8417909,25115445:213617 -k1,21951:9896370,25115445:213616 -k1,21951:10769279,25115445:213617 -k1,21951:13344158,25115445:213617 -k1,21951:15412443,25115445:213616 -k1,21951:16435430,25115445:213617 -k1,21951:19343232,25115445:213617 -k1,21951:20044422,25115445:213602 -k1,21951:23229441,25115445:213617 -k1,21951:24377600,25115445:213616 -k1,21951:25258373,25115445:213617 -(1,21951:25258373,25115445:0,459977,115847 -r1,21973:26671774,25115445:1413401,575824,115847 -k1,21951:25258373,25115445:-1413401 -) -(1,21951:25258373,25115445:1413401,459977,115847 -k1,21951:25258373,25115445:3277 -h1,21951:26668497,25115445:0,411205,112570 -) -k1,21951:26885391,25115445:213617 -k1,21951:29001517,25115445:213616 -k1,21951:29746631,25115445:213617 -k1,21951:32583029,25115445:0 -) -(1,21953:6630773,25980525:25952256,505283,126483 -k1,21952:9370273,25980525:344159 -k1,21952:11616942,25980525:344159 -(1,21952:11616942,25980525:0,452978,115847 -r1,21973:19361156,25980525:7744214,568825,115847 -k1,21952:11616942,25980525:-7744214 -) -(1,21952:11616942,25980525:7744214,452978,115847 -k1,21952:11616942,25980525:3277 -h1,21952:19357879,25980525:0,411205,112570 -) -k1,21952:19705316,25980525:344160 -k1,21952:21240920,25980525:344159 -(1,21952:21240920,25980525:0,459977,115847 -r1,21973:28281711,25980525:7040791,575824,115847 -k1,21952:21240920,25980525:-7040791 -) -(1,21952:21240920,25980525:7040791,459977,115847 -k1,21952:21240920,25980525:3277 -h1,21952:28278434,25980525:0,411205,112570 -) -k1,21952:28625870,25980525:344159 -k1,21952:30062514,25980525:344159 -k1,21952:32583029,25980525:0 -) -(1,21953:6630773,26845605:25952256,505283,126483 -k1,21952:8107098,26845605:191819 -k1,21952:9233459,26845605:191818 -k1,21952:12269541,26845605:191819 -k1,21952:14472004,26845605:191818 -k1,21952:15948329,26845605:191819 -k1,21952:17825079,26845605:191819 -k1,21952:18632935,26845605:191818 -k1,21952:20510340,26845605:191819 -k1,21952:23337362,26845605:191819 -k1,21952:24701619,26845605:191818 -k1,21952:27465726,26845605:191819 -k1,21952:29841859,26845605:191818 -k1,21952:31591469,26845605:191819 -k1,21952:32583029,26845605:0 -) -(1,21953:6630773,27710685:25952256,513147,126483 -g1,21952:8343228,27710685 -g1,21952:10240495,27710685 -(1,21952:10240495,27710685:0,452978,115847 -r1,21973:12709032,27710685:2468537,568825,115847 -k1,21952:10240495,27710685:-2468537 -) -(1,21952:10240495,27710685:2468537,452978,115847 -k1,21952:10240495,27710685:3277 -h1,21952:12705755,27710685:0,411205,112570 -) -g1,21952:12908261,27710685 -g1,21952:15331782,27710685 -g1,21952:16522571,27710685 -g1,21952:19307195,27710685 -g1,21952:20157852,27710685 -g1,21952:21376166,27710685 -k1,21953:32583029,27710685:7979871 -g1,21953:32583029,27710685 -) -(1,21954:6630773,29827503:25952256,555811,12975 -(1,21954:6630773,29827503:2899444,534184,12975 -g1,21954:6630773,29827503 -g1,21954:9530217,29827503 -) -g1,21954:12268181,29827503 -k1,21954:32583030,29827503:18129092 -g1,21954:32583030,29827503 -) -(1,21957:6630773,31085799:25952256,513147,134348 -k1,21956:8899028,31085799:226809 -k1,21956:11459575,31085799:226810 -k1,21956:13229102,31085799:226809 -k1,21956:14115203,31085799:226809 -k1,21956:17170545,31085799:226809 -k1,21956:18772956,31085799:226810 -k1,21956:20172204,31085799:226809 -k1,21956:22115401,31085799:226809 -k1,21956:23001502,31085799:226809 -k1,21956:25130822,31085799:226810 -k1,21956:26861682,31085799:226809 -k1,21956:30046131,31085799:226809 -k1,21957:32583029,31085799:0 -) -(1,21957:6630773,31950879:25952256,513147,126483 -k1,21956:8032189,31950879:261745 -k1,21956:9485380,31950879:261746 -k1,21956:12446553,31950879:261745 -k1,21956:13195824,31950879:261683 -k1,21956:15039608,31950879:261745 -k1,21956:16687440,31950879:261746 -k1,21956:17608477,31950879:261745 -k1,21956:19946404,31950879:261746 -k1,21956:22075925,31950879:261745 -k1,21956:24656334,31950879:261746 -k1,21956:29326686,31950879:261745 -k1,21956:30536083,31950879:261746 -k1,21956:31563944,31950879:261745 -k1,21956:32583029,31950879:0 -) -(1,21957:6630773,32815959:25952256,505283,126483 -k1,21956:9992551,32815959:187214 -k1,21956:12098660,32815959:187215 -k1,21956:15065911,32815959:187214 -k1,21956:16460299,32815959:187215 -k1,21956:18612938,32815959:187214 -k1,21956:19416191,32815959:187215 -k1,21956:21937142,32815959:187214 -k1,21956:23840745,32815959:187215 -k1,21956:25585750,32815959:187214 -k1,21956:26764525,32815959:187215 -k1,21956:28464965,32815959:187214 -k1,21956:30046131,32815959:187215 -k1,21957:32583029,32815959:0 -) -(1,21957:6630773,33681039:25952256,505283,134348 -k1,21956:7921778,33681039:151334 -k1,21956:11088422,33681039:151333 -k1,21956:12311925,33681039:151334 -k1,21956:13843446,33681039:151333 -k1,21956:16387499,33681039:151334 -k1,21956:17557917,33681039:151333 -k1,21956:21279652,33681039:151334 -k1,21956:23441631,33681039:151334 -k1,21956:24860430,33681039:151333 -k1,21956:27537522,33681039:151334 -k1,21956:29349537,33681039:151333 -k1,21956:31236264,33681039:151334 -k1,21956:32583029,33681039:0 -) -(1,21957:6630773,34546119:25952256,513147,134348 -k1,21956:11482840,34546119:228502 -k1,21956:12362770,34546119:228502 -k1,21956:15353615,34546119:228502 -k1,21956:17693032,34546119:228502 -k1,21956:18580826,34546119:228502 -k1,21956:20993643,34546119:228502 -k1,21956:22413590,34546119:228502 -k1,21956:24076020,34546119:228502 -k1,21956:27346048,34546119:228502 -k1,21956:29213605,34546119:228502 -k1,21956:30058145,34546119:228502 -k1,21956:31305732,34546119:228502 -k1,21956:32583029,34546119:0 -) -(1,21957:6630773,35411199:25952256,513147,134348 -k1,21956:8549199,35411199:183033 -k1,21956:9088091,35411199:183032 -k1,21956:11796882,35411199:183033 -k1,21956:12914458,35411199:183033 -k1,21956:13756783,35411199:183033 -k1,21956:16784078,35411199:183032 -k1,21956:18977756,35411199:183033 -k1,21956:20728410,35411199:183033 -k1,21956:21267302,35411199:183032 -k1,21956:24283456,35411199:183033 -k1,21956:25420038,35411199:183033 -k1,21956:27267030,35411199:183033 -k1,21956:28469147,35411199:183032 -k1,21956:30507504,35411199:183033 -k1,21956:32583029,35411199:0 -) -(1,21957:6630773,36276279:25952256,505283,134348 -g1,21956:7639372,36276279 -g1,21956:9336754,36276279 -h1,21956:10532131,36276279:0,0,0 -g1,21956:10731360,36276279 -g1,21956:12002758,36276279 -g1,21956:15143243,36276279 -(1,21956:15143243,36276279:0,452978,122846 -r1,21973:23239169,36276279:8095926,575824,122846 -k1,21956:15143243,36276279:-8095926 -) -(1,21956:15143243,36276279:8095926,452978,122846 -k1,21956:15143243,36276279:3277 -h1,21956:23235892,36276279:0,411205,112570 -) -g1,21956:23438398,36276279 -g1,21956:24399155,36276279 -(1,21956:24399155,36276279:0,452978,115847 -r1,21973:31791657,36276279:7392502,568825,115847 -k1,21956:24399155,36276279:-7392502 -) -(1,21956:24399155,36276279:7392502,452978,115847 -k1,21956:24399155,36276279:3277 -h1,21956:31788380,36276279:0,411205,112570 -) -k1,21957:32583029,36276279:738944 -g1,21957:32583029,36276279 -) -v1,21959:6630773,36961134:0,393216,0 -(1,21968:6630773,40699668:25952256,4131750,196608 -g1,21968:6630773,40699668 -g1,21968:6630773,40699668 -g1,21968:6434165,40699668 -(1,21968:6434165,40699668:0,4131750,196608 -r1,21973:32779637,40699668:26345472,4328358,196608 -k1,21968:6434165,40699668:-26345472 -) -(1,21968:6434165,40699668:26345472,4131750,196608 -[1,21968:6630773,40699668:25952256,3935142,0 -(1,21961:6630773,37188965:25952256,424439,79822 -(1,21960:6630773,37188965:0,0,0 -g1,21960:6630773,37188965 -g1,21960:6630773,37188965 -g1,21960:6303093,37188965 -(1,21960:6303093,37188965:0,0,0 -) -g1,21960:6630773,37188965 -) -k1,21961:6630773,37188965:0 -h1,21961:11278128,37188965:0,0,0 -k1,21961:32583028,37188965:21304900 -g1,21961:32583028,37188965 -) -(1,21962:6630773,37873820:25952256,407923,9908 -h1,21962:6630773,37873820:0,0,0 -g1,21962:7294681,37873820 -g1,21962:8290543,37873820 -h1,21962:9618359,37873820:0,0,0 -k1,21962:32583029,37873820:22964670 -g1,21962:32583029,37873820 -) -(1,21963:6630773,38558675:25952256,424439,112852 -h1,21963:6630773,38558675:0,0,0 -g1,21963:7294681,38558675 -g1,21963:8290543,38558675 -g1,21963:9286405,38558675 -g1,21963:9950313,38558675 -g1,21963:11278129,38558675 -g1,21963:11942037,38558675 -g1,21963:13601807,38558675 -g1,21963:14265715,38558675 -g1,21963:19908933,38558675 -g1,21963:21568703,38558675 -g1,21963:22232611,38558675 -g1,21963:23228473,38558675 -g1,21963:24224335,38558675 -g1,21963:24888243,38558675 -g1,21963:28207783,38558675 -g1,21963:28871691,38558675 -h1,21963:29535599,38558675:0,0,0 -k1,21963:32583029,38558675:3047430 -g1,21963:32583029,38558675 -) -(1,21964:6630773,39243530:25952256,431045,86428 -h1,21964:6630773,39243530:0,0,0 -g1,21964:7958589,39243530 -g1,21964:8954451,39243530 -g1,21964:13601806,39243530 -h1,21964:14265714,39243530:0,0,0 -k1,21964:32583030,39243530:18317316 -g1,21964:32583030,39243530 -) -(1,21965:6630773,39928385:25952256,431045,6605 -h1,21965:6630773,39928385:0,0,0 -g1,21965:7958589,39928385 -g1,21965:8954451,39928385 -h1,21965:9950313,39928385:0,0,0 -k1,21965:32583029,39928385:22632716 -g1,21965:32583029,39928385 -) -(1,21966:6630773,40613240:25952256,431045,86428 -h1,21966:6630773,40613240:0,0,0 -g1,21966:8954451,40613240 -g1,21966:10614221,40613240 -g1,21966:13601807,40613240 -g1,21966:15261577,40613240 -g1,21966:15925485,40613240 -h1,21966:16589393,40613240:0,0,0 -k1,21966:32583029,40613240:15993636 -g1,21966:32583029,40613240 -) -] -) -g1,21968:32583029,40699668 -g1,21968:6630773,40699668 -g1,21968:6630773,40699668 -g1,21968:32583029,40699668 -g1,21968:32583029,40699668 -) -h1,21968:6630773,40896276:0,0,0 -] -(1,21973:32583029,45706769:0,0,0 -g1,21973:32583029,45706769 -) -) -] -(1,21973:6630773,47279633:25952256,0,0 -h1,21973:6630773,47279633:25952256,0,0 -) -] -(1,21973:4262630,4025873:0,0,0 -[1,21973:-473656,4025873:0,0,0 -(1,21973:-473656,-710413:0,0,0 -(1,21973:-473656,-710413:0,0,0 -g1,21973:-473656,-710413 -) -g1,21973:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,21971:3078558,4812305:0,0,0 +(1,21971:3078558,49800853:0,16384,2228224 +g1,21971:29030814,49800853 +g1,21971:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,21971:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,21971:37855564,49800853:1179648,16384,0 +) +) +k1,21971:3078556,49800853:-34777008 +) +] +g1,21971:6630773,4812305 +g1,21971:6630773,4812305 +g1,21971:8724648,4812305 +k1,21971:31387652,4812305:22663004 +) +) +] +[1,21971:6630773,45706769:25952256,40108032,0 +(1,21971:6630773,45706769:25952256,40108032,0 +(1,21971:6630773,45706769:0,0,0 +g1,21971:6630773,45706769 +) +[1,21971:6630773,45706769:25952256,40108032,0 +(1,21942:6630773,6254097:25952256,505283,134348 +h1,21940:6630773,6254097:983040,0,0 +k1,21940:8340225,6254097:256519 +k1,21940:9128241,6254097:256519 +k1,21940:10670576,6254097:256519 +k1,21940:14136392,6254097:256518 +k1,21940:15044339,6254097:256519 +k1,21940:18559963,6254097:256519 +k1,21940:20100988,6254097:256519 +k1,21940:22908168,6254097:256519 +k1,21940:24268969,6254097:256519 +k1,21940:25901088,6254097:256518 +k1,21940:29718178,6254097:256519 +k1,21940:30330557,6254097:256519 +k1,21940:32583029,6254097:0 +) +(1,21942:6630773,7119177:25952256,513147,134348 +k1,21940:7761974,7119177:196658 +k1,21940:8617924,7119177:196658 +k1,21940:11349516,7119177:196659 +k1,21940:12737619,7119177:196658 +k1,21940:14400973,7119177:196658 +k1,21940:16949718,7119177:196658 +k1,21940:19177338,7119177:196659 +k1,21940:21726083,7119177:196658 +k1,21940:23027023,7119177:196658 +k1,21940:23971447,7119177:196658 +k1,21940:27844676,7119177:196659 +k1,21940:28802862,7119177:196658 +k1,21940:31391584,7119177:196658 +k1,21940:32583029,7119177:0 +) +(1,21942:6630773,7984257:25952256,513147,126483 +k1,21940:9549025,7984257:196542 +k1,21940:13939217,7984257:196543 +k1,21940:16961671,7984257:196542 +k1,21940:18725835,7984257:196543 +k1,21940:22115291,7984257:196542 +k1,21940:22963262,7984257:196543 +k1,21940:26352718,7984257:196542 +k1,21940:28380337,7984257:196543 +k1,21940:29192917,7984257:196542 +k1,21940:31420421,7984257:196543 +k1,21942:32583029,7984257:0 +) +(1,21942:6630773,8849337:25952256,513147,134348 +k1,21940:9390494,8849337:216924 +k1,21940:12587995,8849337:216924 +k1,21940:15567262,8849337:216924 +k1,21940:17500574,8849337:216924 +k1,21940:18376790,8849337:216924 +k1,21940:20624676,8849337:216925 +k1,21940:24080389,8849337:216924 +k1,21940:24767206,8849337:216924 +k1,21940:25515627,8849337:216924 +k1,21940:28941849,8849337:216924 +k1,21940:29810201,8849337:216924 +k1,21940:31379788,8849337:216924 +k1,21940:32583029,8849337:0 +) +(1,21942:6630773,9714417:25952256,505283,134348 +g1,21940:8097468,9714417 +g1,21940:10800828,9714417 +g1,21940:12698095,9714417 +g1,21940:15755349,9714417 +g1,21940:16973663,9714417 +g1,21940:19534154,9714417 +g1,21940:21246609,9714417 +g1,21940:22061876,9714417 +g1,21940:26290258,9714417 +k1,21942:32583029,9714417:6292771 +g1,21942:32583029,9714417 +) +(1,21943:6630773,11831235:25952256,555811,12975 +(1,21943:6630773,11831235:2899444,534184,12975 +g1,21943:6630773,11831235 +g1,21943:9530217,11831235 +) +g1,21943:13935613,11831235 +g1,21943:19216177,11831235 +k1,21943:32583029,11831235:11181095 +g1,21943:32583029,11831235 +) +(1,21946:6630773,13089531:25952256,505283,122846 +k1,21945:10615666,13089531:292595 +k1,21945:12939222,13089531:292595 +k1,21945:15134327,13089531:292595 +(1,21945:15134327,13089531:0,452978,115847 +r1,21971:23933676,13089531:8799349,568825,115847 +k1,21945:15134327,13089531:-8799349 +) +(1,21945:15134327,13089531:8799349,452978,115847 +k1,21945:15134327,13089531:3277 +h1,21945:23930399,13089531:0,411205,112570 +) +k1,21945:24399941,13089531:292595 +(1,21945:24399941,13089531:0,452978,122846 +r1,21971:32495867,13089531:8095926,575824,122846 +k1,21945:24399941,13089531:-8095926 +) +(1,21945:24399941,13089531:8095926,452978,122846 +k1,21945:24399941,13089531:3277 +h1,21945:32492590,13089531:0,411205,112570 +) +k1,21946:32583029,13089531:0 +) +(1,21946:6630773,13954611:25952256,505283,122846 +(1,21945:6630773,13954611:0,452978,122846 +r1,21971:15078410,13954611:8447637,575824,122846 +k1,21945:6630773,13954611:-8447637 +) +(1,21945:6630773,13954611:8447637,452978,122846 +k1,21945:6630773,13954611:3277 +h1,21945:15075133,13954611:0,411205,112570 +) +k1,21945:15528453,13954611:276373 +(1,21945:15528453,13954611:0,452978,122846 +r1,21971:23976090,13954611:8447637,575824,122846 +k1,21945:15528453,13954611:-8447637 +) +(1,21945:15528453,13954611:8447637,452978,122846 +k1,21945:15528453,13954611:3277 +h1,21945:23972813,13954611:0,411205,112570 +) +k1,21945:24426133,13954611:276373 +(1,21945:24426133,13954611:0,452978,115847 +r1,21971:31115211,13954611:6689078,568825,115847 +k1,21945:24426133,13954611:-6689078 +) +(1,21945:24426133,13954611:6689078,452978,115847 +k1,21945:24426133,13954611:3277 +h1,21945:31111934,13954611:0,411205,112570 +) +k1,21945:31391584,13954611:276373 +k1,21946:32583029,13954611:0 +) +(1,21946:6630773,14819691:25952256,505283,134348 +(1,21945:6630773,14819691:0,452978,115847 +r1,21971:14726699,14819691:8095926,568825,115847 +k1,21945:6630773,14819691:-8095926 +) +(1,21945:6630773,14819691:8095926,452978,115847 +k1,21945:6630773,14819691:3277 +h1,21945:14723422,14819691:0,411205,112570 +) +k1,21945:15061718,14819691:161349 +k1,21945:16502986,14819691:161350 +k1,21945:19075405,14819691:161349 +k1,21945:22807155,14819691:161349 +k1,21945:25958257,14819691:161350 +k1,21945:28754809,14819691:161349 +k1,21945:30088598,14819691:161350 +k1,21945:30932832,14819691:161349 +k1,21945:32583029,14819691:0 +) +(1,21946:6630773,15684771:25952256,505283,134348 +k1,21945:9493794,15684771:328088 +k1,21945:11379673,15684771:328088 +k1,21945:12699321,15684771:328088 +k1,21945:14540635,15684771:328088 +k1,21945:16262674,15684771:328088 +(1,21945:16262674,15684771:0,452978,115847 +r1,21971:18731211,15684771:2468537,568825,115847 +k1,21945:16262674,15684771:-2468537 +) +(1,21945:16262674,15684771:2468537,452978,115847 +k1,21945:16262674,15684771:3277 +h1,21945:18727934,15684771:0,411205,112570 +) +k1,21945:19232969,15684771:328088 +(1,21945:19232969,15684771:0,452978,115847 +r1,21971:20646370,15684771:1413401,568825,115847 +k1,21945:19232969,15684771:-1413401 +) +(1,21945:19232969,15684771:1413401,452978,115847 +k1,21945:19232969,15684771:3277 +h1,21945:20643093,15684771:0,411205,112570 +) +k1,21945:20974458,15684771:328088 +k1,21945:22493991,15684771:328088 +(1,21945:22493991,15684771:0,452978,115847 +r1,21971:25314240,15684771:2820249,568825,115847 +k1,21945:22493991,15684771:-2820249 +) +(1,21945:22493991,15684771:2820249,452978,115847 +k1,21945:22493991,15684771:3277 +h1,21945:25310963,15684771:0,411205,112570 +) +k1,21945:25642328,15684771:328088 +k1,21945:27533450,15684771:328088 +k1,21945:28348996,15684771:327958 +k1,21945:31648486,15684771:328088 +k1,21945:32583029,15684771:0 +) +(1,21946:6630773,16549851:25952256,513147,115847 +k1,21945:7566905,16549851:268976 +(1,21945:7566905,16549851:0,459977,115847 +r1,21971:8980306,16549851:1413401,575824,115847 +k1,21945:7566905,16549851:-1413401 +) +(1,21945:7566905,16549851:1413401,459977,115847 +k1,21945:7566905,16549851:3277 +h1,21945:8977029,16549851:0,411205,112570 +) +k1,21945:9249282,16549851:268976 +k1,21945:11420768,16549851:268976 +k1,21945:12221241,16549851:268976 +k1,21945:13776034,16549851:268977 +k1,21945:17002650,16549851:268976 +k1,21945:19088284,16549851:268976 +k1,21945:21259770,16549851:268976 +k1,21945:22674971,16549851:268976 +(1,21945:22674971,16549851:0,452978,115847 +r1,21971:31122608,16549851:8447637,568825,115847 +k1,21945:22674971,16549851:-8447637 +) +(1,21945:22674971,16549851:8447637,452978,115847 +k1,21945:22674971,16549851:3277 +h1,21945:31119331,16549851:0,411205,112570 +) +k1,21945:31391584,16549851:268976 +k1,21946:32583029,16549851:0 +) +(1,21946:6630773,17414931:25952256,513147,126483 +(1,21945:6630773,17414931:0,452978,115847 +r1,21971:15078410,17414931:8447637,568825,115847 +k1,21945:6630773,17414931:-8447637 +) +(1,21945:6630773,17414931:8447637,452978,115847 +k1,21945:6630773,17414931:3277 +h1,21945:15075133,17414931:0,411205,112570 +) +k1,21945:15282401,17414931:203991 +k1,21945:16477953,17414931:203992 +k1,21945:18536613,17414931:203991 +k1,21945:19549974,17414931:203991 +k1,21945:20773051,17414931:203992 +k1,21945:22069527,17414931:203991 +k1,21945:22932811,17414931:203992 +k1,21945:26867111,17414931:203991 +k1,21945:29591617,17414931:203991 +k1,21945:30454901,17414931:203992 +k1,21945:31923737,17414931:203991 +k1,21945:32583029,17414931:0 +) +(1,21946:6630773,18280011:25952256,513147,134348 +k1,21945:8930193,18280011:268459 +k1,21945:12188405,18280011:268460 +k1,21945:14692297,18280011:268459 +k1,21945:15612184,18280011:268459 +k1,21945:17477100,18280011:268459 +k1,21945:19024167,18280011:268460 +k1,21945:21973049,18280011:268459 +k1,21945:24127634,18280011:268459 +k1,21945:27067341,18280011:268460 +k1,21945:30698452,18280011:268459 +k1,21945:31649796,18280011:268459 +k1,21945:32583029,18280011:0 +) +(1,21946:6630773,19145091:25952256,513147,134348 +g1,21945:9050362,19145091 +g1,21945:11148824,19145091 +g1,21945:14328630,19145091 +g1,21945:17290202,19145091 +g1,21945:19205819,19145091 +g1,21945:20064340,19145091 +g1,21945:22294530,19145091 +k1,21946:32583029,19145091:7170952 +g1,21946:32583029,19145091 +) +(1,21947:6630773,21261909:25952256,555811,12975 +(1,21947:6630773,21261909:2899444,534184,12975 +g1,21947:6630773,21261909 +g1,21947:9530217,21261909 +) +g1,21947:12753344,21261909 +g1,21947:18033908,21261909 +k1,21947:32583029,21261909:12363364 +g1,21947:32583029,21261909 +) +(1,21951:6630773,22520205:25952256,505283,115847 +k1,21949:11184552,22520205:2400921 +k1,21949:15487983,22520205:2400921 +(1,21949:15487983,22520205:0,452978,115847 +r1,21971:23583909,22520205:8095926,568825,115847 +k1,21949:15487983,22520205:-8095926 +) +(1,21949:15487983,22520205:8095926,452978,115847 +k1,21949:15487983,22520205:3277 +h1,21949:23580632,22520205:0,411205,112570 +) +k1,21949:26158500,22520205:2400921 +(1,21949:26158500,22520205:0,452978,115847 +r1,21971:32495867,22520205:6337367,568825,115847 +k1,21949:26158500,22520205:-6337367 +) +(1,21949:26158500,22520205:6337367,452978,115847 +k1,21949:26158500,22520205:3277 +h1,21949:32492590,22520205:0,411205,112570 +) +k1,21951:32583029,22520205:0 +) +(1,21951:6630773,23385285:25952256,513147,134348 +(1,21949:6630773,23385285:0,452978,122846 +r1,21971:13319851,23385285:6689078,575824,122846 +k1,21949:6630773,23385285:-6689078 +) +(1,21949:6630773,23385285:6689078,452978,122846 +k1,21949:6630773,23385285:3277 +h1,21949:13316574,23385285:0,411205,112570 +) +k1,21949:13720296,23385285:400445 +k1,21949:15112301,23385285:400445 +k1,21949:17025972,23385285:400445 +k1,21949:18820369,23385285:400446 +k1,21949:22667352,23385285:400445 +k1,21949:24457160,23385285:400445 +k1,21949:26895775,23385285:400445 +k1,21949:27982382,23385285:400445 +k1,21949:30780789,23385285:400445 +k1,21949:32583029,23385285:0 +) +(1,21951:6630773,24250365:25952256,505283,126483 +k1,21949:8930526,24250365:397243 +k1,21949:10473993,24250365:397242 +(1,21949:10473993,24250365:0,452978,115847 +r1,21971:18921630,24250365:8447637,568825,115847 +k1,21949:10473993,24250365:-8447637 +) +(1,21949:10473993,24250365:8447637,452978,115847 +k1,21949:10473993,24250365:3277 +h1,21949:18918353,24250365:0,411205,112570 +) +k1,21949:19318873,24250365:397243 +k1,21949:20907561,24250365:397243 +(1,21949:20907561,24250365:0,452978,115847 +r1,21971:28300063,24250365:7392502,568825,115847 +k1,21949:20907561,24250365:-7392502 +) +(1,21949:20907561,24250365:7392502,452978,115847 +k1,21949:20907561,24250365:3277 +h1,21949:28296786,24250365:0,411205,112570 +) +k1,21949:28697305,24250365:397242 +k1,21949:31524623,24250365:397243 +k1,21951:32583029,24250365:0 +) +(1,21951:6630773,25115445:25952256,513147,134348 +k1,21949:8417909,25115445:213617 +k1,21949:9896370,25115445:213616 +k1,21949:10769279,25115445:213617 +k1,21949:13344158,25115445:213617 +k1,21949:15412443,25115445:213616 +k1,21949:16435430,25115445:213617 +k1,21949:19343232,25115445:213617 +k1,21949:20044422,25115445:213602 +k1,21949:23229441,25115445:213617 +k1,21949:24377600,25115445:213616 +k1,21949:25258373,25115445:213617 +(1,21949:25258373,25115445:0,459977,115847 +r1,21971:26671774,25115445:1413401,575824,115847 +k1,21949:25258373,25115445:-1413401 +) +(1,21949:25258373,25115445:1413401,459977,115847 +k1,21949:25258373,25115445:3277 +h1,21949:26668497,25115445:0,411205,112570 +) +k1,21949:26885391,25115445:213617 +k1,21949:29001517,25115445:213616 +k1,21949:29746631,25115445:213617 +k1,21949:32583029,25115445:0 +) +(1,21951:6630773,25980525:25952256,505283,126483 +k1,21950:9370273,25980525:344159 +k1,21950:11616942,25980525:344159 +(1,21950:11616942,25980525:0,452978,115847 +r1,21971:19361156,25980525:7744214,568825,115847 +k1,21950:11616942,25980525:-7744214 +) +(1,21950:11616942,25980525:7744214,452978,115847 +k1,21950:11616942,25980525:3277 +h1,21950:19357879,25980525:0,411205,112570 +) +k1,21950:19705316,25980525:344160 +k1,21950:21240920,25980525:344159 +(1,21950:21240920,25980525:0,459977,115847 +r1,21971:28281711,25980525:7040791,575824,115847 +k1,21950:21240920,25980525:-7040791 +) +(1,21950:21240920,25980525:7040791,459977,115847 +k1,21950:21240920,25980525:3277 +h1,21950:28278434,25980525:0,411205,112570 +) +k1,21950:28625870,25980525:344159 +k1,21950:30062514,25980525:344159 +k1,21950:32583029,25980525:0 +) +(1,21951:6630773,26845605:25952256,505283,126483 +k1,21950:8107098,26845605:191819 +k1,21950:9233459,26845605:191818 +k1,21950:12269541,26845605:191819 +k1,21950:14472004,26845605:191818 +k1,21950:15948329,26845605:191819 +k1,21950:17825079,26845605:191819 +k1,21950:18632935,26845605:191818 +k1,21950:20510340,26845605:191819 +k1,21950:23337362,26845605:191819 +k1,21950:24701619,26845605:191818 +k1,21950:27465726,26845605:191819 +k1,21950:29841859,26845605:191818 +k1,21950:31591469,26845605:191819 +k1,21950:32583029,26845605:0 +) +(1,21951:6630773,27710685:25952256,513147,126483 +g1,21950:8343228,27710685 +g1,21950:10240495,27710685 +(1,21950:10240495,27710685:0,452978,115847 +r1,21971:12709032,27710685:2468537,568825,115847 +k1,21950:10240495,27710685:-2468537 +) +(1,21950:10240495,27710685:2468537,452978,115847 +k1,21950:10240495,27710685:3277 +h1,21950:12705755,27710685:0,411205,112570 +) +g1,21950:12908261,27710685 +g1,21950:15331782,27710685 +g1,21950:16522571,27710685 +g1,21950:19307195,27710685 +g1,21950:20157852,27710685 +g1,21950:21376166,27710685 +k1,21951:32583029,27710685:7979871 +g1,21951:32583029,27710685 +) +(1,21952:6630773,29827503:25952256,555811,12975 +(1,21952:6630773,29827503:2899444,534184,12975 +g1,21952:6630773,29827503 +g1,21952:9530217,29827503 +) +g1,21952:12268181,29827503 +k1,21952:32583030,29827503:18129092 +g1,21952:32583030,29827503 +) +(1,21955:6630773,31085799:25952256,513147,134348 +k1,21954:8899028,31085799:226809 +k1,21954:11459575,31085799:226810 +k1,21954:13229102,31085799:226809 +k1,21954:14115203,31085799:226809 +k1,21954:17170545,31085799:226809 +k1,21954:18772956,31085799:226810 +k1,21954:20172204,31085799:226809 +k1,21954:22115401,31085799:226809 +k1,21954:23001502,31085799:226809 +k1,21954:25130822,31085799:226810 +k1,21954:26861682,31085799:226809 +k1,21954:30046131,31085799:226809 +k1,21955:32583029,31085799:0 +) +(1,21955:6630773,31950879:25952256,513147,126483 +k1,21954:8032189,31950879:261745 +k1,21954:9485380,31950879:261746 +k1,21954:12446553,31950879:261745 +k1,21954:13195824,31950879:261683 +k1,21954:15039608,31950879:261745 +k1,21954:16687440,31950879:261746 +k1,21954:17608477,31950879:261745 +k1,21954:19946404,31950879:261746 +k1,21954:22075925,31950879:261745 +k1,21954:24656334,31950879:261746 +k1,21954:29326686,31950879:261745 +k1,21954:30536083,31950879:261746 +k1,21954:31563944,31950879:261745 +k1,21954:32583029,31950879:0 +) +(1,21955:6630773,32815959:25952256,505283,126483 +k1,21954:9992551,32815959:187214 +k1,21954:12098660,32815959:187215 +k1,21954:15065911,32815959:187214 +k1,21954:16460299,32815959:187215 +k1,21954:18612938,32815959:187214 +k1,21954:19416191,32815959:187215 +k1,21954:21937142,32815959:187214 +k1,21954:23840745,32815959:187215 +k1,21954:25585750,32815959:187214 +k1,21954:26764525,32815959:187215 +k1,21954:28464965,32815959:187214 +k1,21954:30046131,32815959:187215 +k1,21955:32583029,32815959:0 +) +(1,21955:6630773,33681039:25952256,505283,134348 +k1,21954:7921778,33681039:151334 +k1,21954:11088422,33681039:151333 +k1,21954:12311925,33681039:151334 +k1,21954:13843446,33681039:151333 +k1,21954:16387499,33681039:151334 +k1,21954:17557917,33681039:151333 +k1,21954:21279652,33681039:151334 +k1,21954:23441631,33681039:151334 +k1,21954:24860430,33681039:151333 +k1,21954:27537522,33681039:151334 +k1,21954:29349537,33681039:151333 +k1,21954:31236264,33681039:151334 +k1,21954:32583029,33681039:0 +) +(1,21955:6630773,34546119:25952256,513147,134348 +k1,21954:11482840,34546119:228502 +k1,21954:12362770,34546119:228502 +k1,21954:15353615,34546119:228502 +k1,21954:17693032,34546119:228502 +k1,21954:18580826,34546119:228502 +k1,21954:20993643,34546119:228502 +k1,21954:22413590,34546119:228502 +k1,21954:24076020,34546119:228502 +k1,21954:27346048,34546119:228502 +k1,21954:29213605,34546119:228502 +k1,21954:30058145,34546119:228502 +k1,21954:31305732,34546119:228502 +k1,21954:32583029,34546119:0 +) +(1,21955:6630773,35411199:25952256,513147,134348 +k1,21954:8549199,35411199:183033 +k1,21954:9088091,35411199:183032 +k1,21954:11796882,35411199:183033 +k1,21954:12914458,35411199:183033 +k1,21954:13756783,35411199:183033 +k1,21954:16784078,35411199:183032 +k1,21954:18977756,35411199:183033 +k1,21954:20728410,35411199:183033 +k1,21954:21267302,35411199:183032 +k1,21954:24283456,35411199:183033 +k1,21954:25420038,35411199:183033 +k1,21954:27267030,35411199:183033 +k1,21954:28469147,35411199:183032 +k1,21954:30507504,35411199:183033 +k1,21954:32583029,35411199:0 +) +(1,21955:6630773,36276279:25952256,505283,134348 +g1,21954:7639372,36276279 +g1,21954:9336754,36276279 +h1,21954:10532131,36276279:0,0,0 +g1,21954:10731360,36276279 +g1,21954:12002758,36276279 +g1,21954:15143243,36276279 +(1,21954:15143243,36276279:0,452978,122846 +r1,21971:23239169,36276279:8095926,575824,122846 +k1,21954:15143243,36276279:-8095926 +) +(1,21954:15143243,36276279:8095926,452978,122846 +k1,21954:15143243,36276279:3277 +h1,21954:23235892,36276279:0,411205,112570 +) +g1,21954:23438398,36276279 +g1,21954:24399155,36276279 +(1,21954:24399155,36276279:0,452978,115847 +r1,21971:31791657,36276279:7392502,568825,115847 +k1,21954:24399155,36276279:-7392502 +) +(1,21954:24399155,36276279:7392502,452978,115847 +k1,21954:24399155,36276279:3277 +h1,21954:31788380,36276279:0,411205,112570 +) +k1,21955:32583029,36276279:738944 +g1,21955:32583029,36276279 +) +v1,21957:6630773,36961134:0,393216,0 +(1,21966:6630773,40699668:25952256,4131750,196608 +g1,21966:6630773,40699668 +g1,21966:6630773,40699668 +g1,21966:6434165,40699668 +(1,21966:6434165,40699668:0,4131750,196608 +r1,21971:32779637,40699668:26345472,4328358,196608 +k1,21966:6434165,40699668:-26345472 +) +(1,21966:6434165,40699668:26345472,4131750,196608 +[1,21966:6630773,40699668:25952256,3935142,0 +(1,21959:6630773,37188965:25952256,424439,79822 +(1,21958:6630773,37188965:0,0,0 +g1,21958:6630773,37188965 +g1,21958:6630773,37188965 +g1,21958:6303093,37188965 +(1,21958:6303093,37188965:0,0,0 +) +g1,21958:6630773,37188965 +) +k1,21959:6630773,37188965:0 +h1,21959:11278128,37188965:0,0,0 +k1,21959:32583028,37188965:21304900 +g1,21959:32583028,37188965 +) +(1,21960:6630773,37873820:25952256,407923,9908 +h1,21960:6630773,37873820:0,0,0 +g1,21960:7294681,37873820 +g1,21960:8290543,37873820 +h1,21960:9618359,37873820:0,0,0 +k1,21960:32583029,37873820:22964670 +g1,21960:32583029,37873820 +) +(1,21961:6630773,38558675:25952256,424439,112852 +h1,21961:6630773,38558675:0,0,0 +g1,21961:7294681,38558675 +g1,21961:8290543,38558675 +g1,21961:9286405,38558675 +g1,21961:9950313,38558675 +g1,21961:11278129,38558675 +g1,21961:11942037,38558675 +g1,21961:13601807,38558675 +g1,21961:14265715,38558675 +g1,21961:19908933,38558675 +g1,21961:21568703,38558675 +g1,21961:22232611,38558675 +g1,21961:23228473,38558675 +g1,21961:24224335,38558675 +g1,21961:24888243,38558675 +g1,21961:28207783,38558675 +g1,21961:28871691,38558675 +h1,21961:29535599,38558675:0,0,0 +k1,21961:32583029,38558675:3047430 +g1,21961:32583029,38558675 +) +(1,21962:6630773,39243530:25952256,431045,86428 +h1,21962:6630773,39243530:0,0,0 +g1,21962:7958589,39243530 +g1,21962:8954451,39243530 +g1,21962:13601806,39243530 +h1,21962:14265714,39243530:0,0,0 +k1,21962:32583030,39243530:18317316 +g1,21962:32583030,39243530 +) +(1,21963:6630773,39928385:25952256,431045,6605 +h1,21963:6630773,39928385:0,0,0 +g1,21963:7958589,39928385 +g1,21963:8954451,39928385 +h1,21963:9950313,39928385:0,0,0 +k1,21963:32583029,39928385:22632716 +g1,21963:32583029,39928385 +) +(1,21964:6630773,40613240:25952256,431045,86428 +h1,21964:6630773,40613240:0,0,0 +g1,21964:8954451,40613240 +g1,21964:10614221,40613240 +g1,21964:13601807,40613240 +g1,21964:15261577,40613240 +g1,21964:15925485,40613240 +h1,21964:16589393,40613240:0,0,0 +k1,21964:32583029,40613240:15993636 +g1,21964:32583029,40613240 +) +] +) +g1,21966:32583029,40699668 +g1,21966:6630773,40699668 +g1,21966:6630773,40699668 +g1,21966:32583029,40699668 +g1,21966:32583029,40699668 +) +h1,21966:6630773,40896276:0,0,0 +] +(1,21971:32583029,45706769:0,0,0 +g1,21971:32583029,45706769 +) +) +] +(1,21971:6630773,47279633:25952256,0,0 +h1,21971:6630773,47279633:25952256,0,0 +) +] +(1,21971:4262630,4025873:0,0,0 +[1,21971:-473656,4025873:0,0,0 +(1,21971:-473656,-710413:0,0,0 +(1,21971:-473656,-710413:0,0,0 +g1,21971:-473656,-710413 +) +g1,21971:-473656,-710413 ) ] ) ] !23672 -}372 -Input:4140:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4141:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4142:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4143:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}373 Input:4144:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4145:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4146:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -380671,969 +380875,969 @@ Input:4148:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4149:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4150:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4151:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4154:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4155:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{373 -[1,22026:4262630,47279633:28320399,43253760,0 -(1,22026:4262630,4025873:0,0,0 -[1,22026:-473656,4025873:0,0,0 -(1,22026:-473656,-710413:0,0,0 -(1,22026:-473656,-644877:0,0,0 -k1,22026:-473656,-644877:-65536 +{374 +[1,22024:4262630,47279633:28320399,43253760,0 +(1,22024:4262630,4025873:0,0,0 +[1,22024:-473656,4025873:0,0,0 +(1,22024:-473656,-710413:0,0,0 +(1,22024:-473656,-644877:0,0,0 +k1,22024:-473656,-644877:-65536 ) -(1,22026:-473656,4736287:0,0,0 -k1,22026:-473656,4736287:5209943 +(1,22024:-473656,4736287:0,0,0 +k1,22024:-473656,4736287:5209943 ) -g1,22026:-473656,-710413 +g1,22024:-473656,-710413 ) ] ) -[1,22026:6630773,47279633:25952256,43253760,0 -[1,22026:6630773,4812305:25952256,786432,0 -(1,22026:6630773,4812305:25952256,513147,126483 -(1,22026:6630773,4812305:25952256,513147,126483 -g1,22026:3078558,4812305 -[1,22026:3078558,4812305:0,0,0 -(1,22026:3078558,2439708:0,1703936,0 -k1,22026:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22026:2537886,2439708:1179648,16384,0 +[1,22024:6630773,47279633:25952256,43253760,0 +[1,22024:6630773,4812305:25952256,786432,0 +(1,22024:6630773,4812305:25952256,513147,126483 +(1,22024:6630773,4812305:25952256,513147,126483 +g1,22024:3078558,4812305 +[1,22024:3078558,4812305:0,0,0 +(1,22024:3078558,2439708:0,1703936,0 +k1,22024:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22024:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22026:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22024:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22026:3078558,4812305:0,0,0 -(1,22026:3078558,2439708:0,1703936,0 -g1,22026:29030814,2439708 -g1,22026:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22026:36151628,1915420:16384,1179648,0 +[1,22024:3078558,4812305:0,0,0 +(1,22024:3078558,2439708:0,1703936,0 +g1,22024:29030814,2439708 +g1,22024:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22024:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22026:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22024:37855564,2439708:1179648,16384,0 ) ) -k1,22026:3078556,2439708:-34777008 +k1,22024:3078556,2439708:-34777008 ) ] -[1,22026:3078558,4812305:0,0,0 -(1,22026:3078558,49800853:0,16384,2228224 -k1,22026:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22026:2537886,49800853:1179648,16384,0 +[1,22024:3078558,4812305:0,0,0 +(1,22024:3078558,49800853:0,16384,2228224 +k1,22024:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22024:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22026:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22024:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22026:3078558,4812305:0,0,0 -(1,22026:3078558,49800853:0,16384,2228224 -g1,22026:29030814,49800853 -g1,22026:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22026:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22026:37855564,49800853:1179648,16384,0 -) -) -k1,22026:3078556,49800853:-34777008 -) -] -g1,22026:6630773,4812305 -k1,22026:21386205,4812305:13560055 -g1,22026:21999622,4812305 -g1,22026:25611966,4812305 -g1,22026:28956923,4812305 -g1,22026:29772190,4812305 -) -) -] -[1,22026:6630773,45706769:25952256,40108032,0 -(1,22026:6630773,45706769:25952256,40108032,0 -(1,22026:6630773,45706769:0,0,0 -g1,22026:6630773,45706769 -) -[1,22026:6630773,45706769:25952256,40108032,0 -v1,21975:6630773,6254097:0,393216,0 -(1,21988:6630773,12765081:25952256,6904200,196608 -g1,21988:6630773,12765081 -g1,21988:6630773,12765081 -g1,21988:6434165,12765081 -(1,21988:6434165,12765081:0,6904200,196608 -r1,22026:32779637,12765081:26345472,7100808,196608 -k1,21988:6434165,12765081:-26345472 -) -(1,21988:6434165,12765081:26345472,6904200,196608 -[1,21988:6630773,12765081:25952256,6707592,0 -(1,21977:6630773,6488534:25952256,431045,112852 -(1,21976:6630773,6488534:0,0,0 -g1,21976:6630773,6488534 -g1,21976:6630773,6488534 -g1,21976:6303093,6488534 -(1,21976:6303093,6488534:0,0,0 -) -g1,21976:6630773,6488534 -) -k1,21977:6630773,6488534:0 -g1,21977:10614221,6488534 -g1,21977:11278129,6488534 -g1,21977:12937899,6488534 -h1,21977:13269853,6488534:0,0,0 -k1,21977:32583029,6488534:19313176 -g1,21977:32583029,6488534 -) -(1,21978:6630773,7173389:25952256,431045,106246 -h1,21978:6630773,7173389:0,0,0 -g1,21978:6962727,7173389 -g1,21978:7294681,7173389 -g1,21978:16257438,7173389 -g1,21978:16921346,7173389 -g1,21978:17585254,7173389 -g1,21978:18249162,7173389 -g1,21978:20904794,7173389 -g1,21978:21900656,7173389 -g1,21978:23228472,7173389 -g1,21978:23892380,7173389 -k1,21978:23892380,7173389:0 -h1,21978:25884104,7173389:0,0,0 -k1,21978:32583029,7173389:6698925 -g1,21978:32583029,7173389 -) -(1,21979:6630773,7858244:25952256,424439,86428 -h1,21979:6630773,7858244:0,0,0 -g1,21979:6962727,7858244 -g1,21979:7294681,7858244 -g1,21979:7626635,7858244 -g1,21979:7958589,7858244 -g1,21979:8290543,7858244 -g1,21979:8622497,7858244 -g1,21979:8954451,7858244 -g1,21979:9286405,7858244 -g1,21979:9618359,7858244 -g1,21979:9950313,7858244 -g1,21979:10282267,7858244 -g1,21979:10614221,7858244 -g1,21979:10946175,7858244 -g1,21979:11278129,7858244 -g1,21979:11610083,7858244 -g1,21979:11942037,7858244 -g1,21979:12273991,7858244 -g1,21979:12605945,7858244 -g1,21979:12937899,7858244 -g1,21979:13269853,7858244 -g1,21979:13601807,7858244 -g1,21979:15925485,7858244 -g1,21979:16589393,7858244 -k1,21979:16589393,7858244:0 -h1,21979:18581117,7858244:0,0,0 -k1,21979:32583029,7858244:14001912 -g1,21979:32583029,7858244 -) -(1,21980:6630773,8543099:25952256,424439,112852 -h1,21980:6630773,8543099:0,0,0 -g1,21980:6962727,8543099 -g1,21980:7294681,8543099 -g1,21980:7626635,8543099 -g1,21980:7958589,8543099 -g1,21980:8290543,8543099 -g1,21980:8622497,8543099 -g1,21980:8954451,8543099 -g1,21980:9286405,8543099 -g1,21980:9618359,8543099 -g1,21980:9950313,8543099 -g1,21980:10282267,8543099 -g1,21980:10614221,8543099 -g1,21980:10946175,8543099 -g1,21980:11278129,8543099 -g1,21980:11610083,8543099 -g1,21980:11942037,8543099 -g1,21980:12273991,8543099 -g1,21980:12605945,8543099 -g1,21980:12937899,8543099 -g1,21980:13269853,8543099 -g1,21980:13601807,8543099 -g1,21980:16257439,8543099 -g1,21980:16921347,8543099 -g1,21980:18913071,8543099 -g1,21980:19576979,8543099 -k1,21980:19576979,8543099:0 -h1,21980:20240887,8543099:0,0,0 -k1,21980:32583029,8543099:12342142 -g1,21980:32583029,8543099 -) -(1,21981:6630773,9227954:25952256,424439,112852 -h1,21981:6630773,9227954:0,0,0 -g1,21981:6962727,9227954 -g1,21981:7294681,9227954 -g1,21981:7626635,9227954 -g1,21981:7958589,9227954 -g1,21981:8290543,9227954 -g1,21981:8622497,9227954 -g1,21981:8954451,9227954 -g1,21981:9286405,9227954 -g1,21981:9618359,9227954 -g1,21981:9950313,9227954 -g1,21981:10282267,9227954 -g1,21981:10614221,9227954 -g1,21981:10946175,9227954 -g1,21981:11278129,9227954 -g1,21981:11610083,9227954 -g1,21981:11942037,9227954 -g1,21981:12273991,9227954 -g1,21981:12605945,9227954 -g1,21981:12937899,9227954 -g1,21981:13269853,9227954 -g1,21981:13601807,9227954 -g1,21981:13933761,9227954 -g1,21981:14265715,9227954 -g1,21981:14597669,9227954 -g1,21981:14929623,9227954 -g1,21981:15261577,9227954 -g1,21981:15593531,9227954 -g1,21981:15925485,9227954 -g1,21981:16257439,9227954 -g1,21981:16589393,9227954 -g1,21981:16921347,9227954 -g1,21981:17253301,9227954 -g1,21981:17585255,9227954 -g1,21981:17917209,9227954 -g1,21981:18249163,9227954 -g1,21981:18913071,9227954 -g1,21981:19576979,9227954 -g1,21981:23560427,9227954 -g1,21981:24224335,9227954 -k1,21981:24224335,9227954:0 -h1,21981:24888243,9227954:0,0,0 -k1,21981:32583029,9227954:7694786 -g1,21981:32583029,9227954 -) -(1,21982:6630773,9912809:25952256,431045,112852 -h1,21982:6630773,9912809:0,0,0 -g1,21982:6962727,9912809 -g1,21982:7294681,9912809 -g1,21982:7626635,9912809 -g1,21982:7958589,9912809 -g1,21982:8290543,9912809 -g1,21982:8622497,9912809 -g1,21982:8954451,9912809 -g1,21982:9286405,9912809 -g1,21982:9618359,9912809 -g1,21982:9950313,9912809 -g1,21982:10282267,9912809 -g1,21982:10614221,9912809 -g1,21982:10946175,9912809 -g1,21982:11278129,9912809 -g1,21982:11610083,9912809 -g1,21982:11942037,9912809 -g1,21982:12273991,9912809 -g1,21982:12605945,9912809 -g1,21982:12937899,9912809 -g1,21982:13269853,9912809 -g1,21982:13601807,9912809 -g1,21982:13933761,9912809 -g1,21982:14265715,9912809 -g1,21982:14597669,9912809 -g1,21982:14929623,9912809 -g1,21982:15261577,9912809 -g1,21982:15593531,9912809 -g1,21982:15925485,9912809 -g1,21982:16257439,9912809 -g1,21982:16589393,9912809 -g1,21982:16921347,9912809 -g1,21982:17253301,9912809 -g1,21982:17585255,9912809 -g1,21982:17917209,9912809 -g1,21982:18249163,9912809 -g1,21982:18581117,9912809 -g1,21982:18913071,9912809 -g1,21982:19245025,9912809 -g1,21982:19576979,9912809 -g1,21982:19908933,9912809 -g1,21982:20240887,9912809 -g1,21982:20572841,9912809 -g1,21982:20904795,9912809 -g1,21982:21236749,9912809 -g1,21982:21568703,9912809 -g1,21982:25220196,9912809 -g1,21982:25884104,9912809 -g1,21982:26548012,9912809 -g1,21982:27211920,9912809 -k1,21982:27211920,9912809:0 -h1,21982:30199505,9912809:0,0,0 -k1,21982:32583029,9912809:2383524 -g1,21982:32583029,9912809 -) -(1,21983:6630773,10597664:25952256,431045,112852 -h1,21983:6630773,10597664:0,0,0 -g1,21983:6962727,10597664 -g1,21983:7294681,10597664 -g1,21983:7626635,10597664 -g1,21983:7958589,10597664 -g1,21983:8290543,10597664 -g1,21983:8622497,10597664 -g1,21983:8954451,10597664 -g1,21983:9286405,10597664 -g1,21983:9618359,10597664 -g1,21983:9950313,10597664 -g1,21983:10282267,10597664 -g1,21983:10614221,10597664 -g1,21983:10946175,10597664 -g1,21983:11278129,10597664 -g1,21983:11610083,10597664 -g1,21983:11942037,10597664 -g1,21983:12273991,10597664 -g1,21983:12605945,10597664 -g1,21983:12937899,10597664 -g1,21983:13269853,10597664 -g1,21983:13601807,10597664 -g1,21983:13933761,10597664 -g1,21983:14265715,10597664 -g1,21983:14597669,10597664 -g1,21983:14929623,10597664 -g1,21983:15261577,10597664 -g1,21983:15593531,10597664 -g1,21983:15925485,10597664 -g1,21983:16257439,10597664 -g1,21983:16589393,10597664 -g1,21983:16921347,10597664 -g1,21983:17253301,10597664 -g1,21983:17585255,10597664 -g1,21983:17917209,10597664 -g1,21983:18249163,10597664 -g1,21983:20572841,10597664 -g1,21983:21236749,10597664 -k1,21983:21236749,10597664:0 -h1,21983:28207781,10597664:0,0,0 -k1,21983:32583029,10597664:4375248 -g1,21983:32583029,10597664 -) -(1,21984:6630773,11282519:25952256,424439,112852 -h1,21984:6630773,11282519:0,0,0 -g1,21984:6962727,11282519 -g1,21984:7294681,11282519 -g1,21984:7626635,11282519 -g1,21984:7958589,11282519 -g1,21984:8290543,11282519 -g1,21984:8622497,11282519 -g1,21984:8954451,11282519 -g1,21984:9286405,11282519 -g1,21984:9618359,11282519 -g1,21984:9950313,11282519 -g1,21984:10282267,11282519 -g1,21984:10614221,11282519 -g1,21984:10946175,11282519 -g1,21984:11278129,11282519 -g1,21984:11610083,11282519 -g1,21984:11942037,11282519 -g1,21984:12273991,11282519 -g1,21984:12605945,11282519 -g1,21984:12937899,11282519 -g1,21984:13269853,11282519 -g1,21984:13601807,11282519 -g1,21984:17585254,11282519 -g1,21984:18249162,11282519 -g1,21984:20240886,11282519 -h1,21984:20572840,11282519:0,0,0 -k1,21984:32583029,11282519:12010189 -g1,21984:32583029,11282519 -) -(1,21985:6630773,11967374:25952256,424439,112852 -h1,21985:6630773,11967374:0,0,0 -g1,21985:6962727,11967374 -g1,21985:7294681,11967374 -g1,21985:15261575,11967374 -g1,21985:15925483,11967374 -g1,21985:18249161,11967374 -g1,21985:19908931,11967374 -g1,21985:20572839,11967374 -g1,21985:23228471,11967374 -g1,21985:25552149,11967374 -g1,21985:26216057,11967374 -g1,21985:27875827,11967374 -k1,21985:27875827,11967374:0 -h1,21985:28871689,11967374:0,0,0 -k1,21985:32583029,11967374:3711340 -g1,21985:32583029,11967374 -) -(1,21986:6630773,12652229:25952256,424439,112852 -h1,21986:6630773,12652229:0,0,0 -g1,21986:6962727,12652229 -g1,21986:7294681,12652229 -g1,21986:7626635,12652229 -g1,21986:7958589,12652229 -g1,21986:8290543,12652229 -g1,21986:8622497,12652229 -g1,21986:8954451,12652229 -g1,21986:9286405,12652229 -g1,21986:9618359,12652229 -g1,21986:9950313,12652229 -g1,21986:10282267,12652229 -g1,21986:10614221,12652229 -g1,21986:10946175,12652229 -g1,21986:11278129,12652229 -g1,21986:11610083,12652229 -g1,21986:11942037,12652229 -g1,21986:12273991,12652229 -g1,21986:12605945,12652229 -g1,21986:12937899,12652229 -g1,21986:13269853,12652229 -g1,21986:13601807,12652229 -g1,21986:15593531,12652229 -g1,21986:16257439,12652229 -g1,21986:20572840,12652229 -g1,21986:23560425,12652229 -g1,21986:24224333,12652229 -h1,21986:24888241,12652229:0,0,0 -k1,21986:32583029,12652229:7694788 -g1,21986:32583029,12652229 -) -] -) -g1,21988:32583029,12765081 -g1,21988:6630773,12765081 -g1,21988:6630773,12765081 -g1,21988:32583029,12765081 -g1,21988:32583029,12765081 -) -h1,21988:6630773,12961689:0,0,0 -(1,21991:6630773,22110891:25952256,9083666,0 -k1,21991:10523651,22110891:3892878 -h1,21990:10523651,22110891:0,0,0 -(1,21990:10523651,22110891:18166500,9083666,0 -(1,21990:10523651,22110891:18167376,9083688,0 -(1,21990:10523651,22110891:18167376,9083688,0 -(1,21990:10523651,22110891:0,9083688,0 -(1,21990:10523651,22110891:0,14208860,0 -(1,21990:10523651,22110891:28417720,14208860,0 -) -k1,21990:10523651,22110891:-28417720 -) -) -g1,21990:28691027,22110891 -) -) -) -g1,21991:28690151,22110891 -k1,21991:32583029,22110891:3892878 -) -(1,21998:6630773,22975971:25952256,513147,134348 -h1,21997:6630773,22975971:983040,0,0 -k1,21997:9078945,22975971:268445 -k1,21997:12586180,22975971:268446 -k1,21997:13513917,22975971:268445 -k1,21997:15981751,22975971:268446 -k1,21997:18152706,22975971:268445 -k1,21997:18952649,22975971:268446 -k1,21997:20505600,22975971:268445 -k1,21997:22154234,22975971:268446 -k1,21997:25201406,22975971:268445 -k1,21997:26488937,22975971:268446 -k1,21997:27965211,22975971:268445 -k1,21997:30636207,22975971:268446 -k1,21997:31563944,22975971:268445 -k1,21997:32583029,22975971:0 -) -(1,21998:6630773,23841051:25952256,513147,134348 -k1,21997:8091430,23841051:183360 -k1,21997:9964309,23841051:183361 -k1,21997:11656308,23841051:183360 -k1,21997:16030696,23841051:183361 -k1,21997:16745553,23841051:183360 -k1,21997:17947999,23841051:183361 -k1,21997:21322962,23841051:183360 -k1,21997:24754286,23841051:183360 -k1,21997:25596939,23841051:183361 -k1,21997:26799384,23841051:183360 -k1,21997:28728624,23841051:183361 -k1,21997:30108671,23841051:183360 -k1,21997:31384517,23841051:183361 -k1,21997:32227169,23841051:183360 -k1,21997:32583029,23841051:0 -) -(1,21998:6630773,24706131:25952256,513147,126483 -k1,21997:9025224,24706131:195063 -k1,21997:11547471,24706131:195064 -k1,21997:12401826,24706131:195063 -k1,21997:12952749,24706131:195063 -k1,21997:16718213,24706131:195063 -k1,21997:18485486,24706131:195064 -k1,21997:19212046,24706131:195063 -k1,21997:22937533,24706131:195063 -k1,21997:24329284,24706131:195064 -k1,21997:27010128,24706131:195063 -k1,21997:27864483,24706131:195063 -k1,21997:29406311,24706131:195063 -k1,21997:30705657,24706131:195064 -k1,21997:31648486,24706131:195063 -k1,21997:32583029,24706131:0 -) -(1,21998:6630773,25571211:25952256,505283,134348 -k1,21997:7625964,25571211:233663 -k1,21997:10287081,25571211:233663 -k1,21997:11291446,25571211:233662 -k1,21997:14597437,25571211:233663 -k1,21997:15482528,25571211:233663 -k1,21997:18996923,25571211:233663 -(1,21997:18996923,25571211:0,452978,115847 -r1,22026:21817172,25571211:2820249,568825,115847 -k1,21997:18996923,25571211:-2820249 -) -(1,21997:18996923,25571211:2820249,452978,115847 -k1,21997:18996923,25571211:3277 -h1,21997:21813895,25571211:0,411205,112570 -) -k1,21997:22050835,25571211:233663 -k1,21997:22967383,25571211:233663 -k1,21997:27327847,25571211:233662 -k1,21997:27917370,25571211:233663 -(1,21997:27917370,25571211:0,452978,115847 -r1,22026:30385907,25571211:2468537,568825,115847 -k1,21997:27917370,25571211:-2468537 -) -(1,21997:27917370,25571211:2468537,452978,115847 -k1,21997:27917370,25571211:3277 -h1,21997:30382630,25571211:0,411205,112570 -) -k1,21997:30619570,25571211:233663 -k1,21997:32583029,25571211:0 -) -(1,21998:6630773,26436291:25952256,505283,134348 -k1,21997:9053739,26436291:217679 -k1,21997:9957580,26436291:217679 -k1,21997:13247588,26436291:217680 -k1,21997:14116695,26436291:217679 -(1,21997:14116695,26436291:0,452978,115847 -r1,22026:16233520,26436291:2116825,568825,115847 -k1,21997:14116695,26436291:-2116825 -) -(1,21997:14116695,26436291:2116825,452978,115847 -k1,21997:14116695,26436291:3277 -h1,21997:16230243,26436291:0,411205,112570 -) -k1,21997:16451199,26436291:217679 -k1,21997:17773160,26436291:217679 -k1,21997:18738606,26436291:217680 -k1,21997:20469511,26436291:217679 -k1,21997:21338618,26436291:217679 -k1,21997:24453644,26436291:217679 -k1,21997:25605867,26436291:217680 -k1,21997:26840009,26436291:217679 -k1,21997:30799794,26436291:217679 -k1,21997:32583029,26436291:0 -) -(1,21998:6630773,27301371:25952256,505283,134348 -k1,21997:9542210,27301371:197591 -k1,21997:11070182,27301371:197591 -k1,21997:13019550,27301371:197591 -k1,21997:14563906,27301371:197591 -k1,21997:15412925,27301371:197591 -k1,21997:16876672,27301371:197591 -k1,21997:18230972,27301371:197590 -k1,21997:20289130,27301371:197591 -k1,21997:21138149,27301371:197591 -k1,21997:22688403,27301371:197591 -k1,21997:24153460,27301371:197591 -k1,21997:26855182,27301371:197591 -k1,21997:28071858,27301371:197591 -k1,21997:31278862,27301371:197591 -k1,21997:32583029,27301371:0 -) -(1,21998:6630773,28166451:25952256,513147,134348 -k1,21997:7873523,28166451:223665 -k1,21997:9952512,28166451:223665 -k1,21997:11308639,28166451:223665 -k1,21997:12280070,28166451:223665 -k1,21997:15378799,28166451:223665 -k1,21997:16793909,28166451:223665 -k1,21997:20254397,28166451:223665 -k1,21997:21669506,28166451:223664 -k1,21997:22912256,28166451:223665 -k1,21997:25149187,28166451:223665 -k1,21997:26032144,28166451:223665 -k1,21997:27681217,28166451:223665 -k1,21997:30688851,28166451:223665 -k1,21997:31563944,28166451:223665 -k1,21997:32583029,28166451:0 -) -(1,21998:6630773,29031531:25952256,513147,126483 -k1,21997:9199724,29031531:193927 -k1,21997:10045079,29031531:193927 -k1,21997:12387932,29031531:193927 -k1,21997:13600944,29031531:193927 -k1,21997:15072168,29031531:193927 -k1,21997:17625390,29031531:193926 -k1,21997:18470745,29031531:193927 -k1,21997:19683757,29031531:193927 -k1,21997:22210110,29031531:193927 -k1,21997:23063329,29031531:193927 -k1,21997:27237913,29031531:193927 -k1,21997:32583029,29031531:0 -) -(1,21998:6630773,29896611:25952256,505283,7863 -g1,21997:7821562,29896611 -g1,21997:9306607,29896611 -g1,21997:11955572,29896611 -g1,21997:12770839,29896611 -g1,21997:14666795,29896611 -g1,21997:16768534,29896611 -g1,21997:17653925,29896611 -g1,21997:18469192,29896611 -k1,21998:32583029,29896611:12029137 -g1,21998:32583029,29896611 -) -(1,22001:6630773,32013429:25952256,555811,139132 -(1,22001:6630773,32013429:3348562,534184,12975 -g1,22001:6630773,32013429 -g1,22001:9979335,32013429 -) -g1,22001:13069096,32013429 -k1,22001:32583029,32013429:17328176 -g1,22001:32583029,32013429 -) -(1,22004:6630773,33271725:25952256,513147,134348 -k1,22003:7422980,33271725:164372 -k1,22003:8606438,33271725:164373 -k1,22003:10137891,33271725:164372 -k1,22003:10961556,33271725:164373 -k1,22003:13586150,33271725:164372 -k1,22003:15826704,33271725:164373 -k1,22003:17010161,33271725:164372 -k1,22003:19982095,33271725:164372 -k1,22003:20677965,33271725:164373 -k1,22003:21999047,33271725:164372 -k1,22003:24184550,33271725:164373 -k1,22003:25000350,33271725:164372 -k1,22003:26183808,33271725:164373 -k1,22003:27911214,33271725:164372 -k1,22003:29117609,33271725:164373 -k1,22003:32117068,33271725:164372 -k1,22003:32583029,33271725:0 -) -(1,22004:6630773,34136805:25952256,505283,134348 -k1,22003:7686016,34136805:213105 -k1,22003:9295693,34136805:213105 -k1,22003:10527884,34136805:213106 -(1,22003:10527884,34136805:0,452978,115847 -r1,22026:12644709,34136805:2116825,568825,115847 -k1,22003:10527884,34136805:-2116825 -) -(1,22003:10527884,34136805:2116825,452978,115847 -k1,22003:10527884,34136805:3277 -h1,22003:12641432,34136805:0,411205,112570 -) -k1,22003:12857814,34136805:213105 -k1,22003:13753804,34136805:213105 -(1,22003:13753804,34136805:0,459977,115847 -r1,22026:15167205,34136805:1413401,575824,115847 -k1,22003:13753804,34136805:-1413401 -) -(1,22003:13753804,34136805:1413401,459977,115847 -k1,22003:13753804,34136805:3277 -h1,22003:15163928,34136805:0,411205,112570 -) -k1,22003:15380310,34136805:213105 -k1,22003:18380661,34136805:213105 -k1,22003:19245194,34136805:213105 -k1,22003:19814160,34136805:213106 -k1,22003:22538605,34136805:213105 -k1,22003:24487103,34136805:213105 -(1,22003:24487103,34136805:0,452978,115847 -r1,22026:32583029,34136805:8095926,568825,115847 -k1,22003:24487103,34136805:-8095926 -) -(1,22003:24487103,34136805:8095926,452978,115847 -k1,22003:24487103,34136805:3277 -h1,22003:32579752,34136805:0,411205,112570 -) -k1,22003:32583029,34136805:0 -) -(1,22004:6630773,35001885:25952256,505283,126483 -k1,22003:7467580,35001885:153922 -(1,22003:7467580,35001885:0,459977,115847 -r1,22026:14860082,35001885:7392502,575824,115847 -k1,22003:7467580,35001885:-7392502 -) -(1,22003:7467580,35001885:7392502,459977,115847 -k1,22003:7467580,35001885:3277 -h1,22003:14856805,35001885:0,411205,112570 -) -k1,22003:15187673,35001885:153921 -k1,22003:16360680,35001885:153922 -k1,22003:19099996,35001885:153921 -k1,22003:21765258,35001885:153922 -k1,22003:23541196,35001885:153922 -k1,22003:26029509,35001885:153921 -k1,22003:28555179,35001885:153922 -k1,22003:30249196,35001885:153921 -k1,22003:30817916,35001885:153877 -(1,22003:30817916,35001885:0,452978,115847 -r1,22026:32583029,35001885:1765113,568825,115847 -k1,22003:30817916,35001885:-1765113 -) -(1,22003:30817916,35001885:1765113,452978,115847 -k1,22003:30817916,35001885:3277 -h1,22003:32579752,35001885:0,411205,112570 -) -k1,22003:32583029,35001885:0 -) -(1,22004:6630773,35866965:25952256,513147,134348 -k1,22003:10366197,35866965:149294 -k1,22003:11143325,35866965:149293 -k1,22003:12311704,35866965:149294 -k1,22003:13828079,35866965:149294 -k1,22003:14636665,35866965:149294 -k1,22003:17593520,35866965:149293 -(1,22003:17593520,35866965:0,452978,115847 -r1,22026:19358633,35866965:1765113,568825,115847 -k1,22003:17593520,35866965:-1765113 -) -(1,22003:17593520,35866965:1765113,452978,115847 -k1,22003:17593520,35866965:3277 -h1,22003:19355356,35866965:0,411205,112570 -) -k1,22003:19681597,35866965:149294 -k1,22003:20849976,35866965:149294 -k1,22003:23510610,35866965:149294 -k1,22003:25281919,35866965:149293 -k1,22003:27802961,35866965:149294 -k1,22003:30572384,35866965:149294 -k1,22003:32583029,35866965:0 -) -(1,22004:6630773,36732045:25952256,505283,134348 -g1,22003:7446040,36732045 -g1,22003:8664354,36732045 -g1,22003:10644196,36732045 -g1,22003:11241884,36732045 -g1,22003:12092541,36732045 -k1,22004:32583028,36732045:20039600 -g1,22004:32583028,36732045 -) -(1,22006:6630773,37597125:25952256,513147,134348 -h1,22005:6630773,37597125:983040,0,0 -k1,22005:8755648,37597125:188286 -k1,22005:10036418,37597125:188285 -k1,22005:10580564,37597125:188286 -k1,22005:12158213,37597125:188286 -k1,22005:14222794,37597125:188285 -k1,22005:17773077,37597125:188286 -k1,22005:18317222,37597125:188285 -k1,22005:21016848,37597125:188286 -(1,22005:21016848,37597125:0,452978,115847 -r1,22026:23485385,37597125:2468537,568825,115847 -k1,22005:21016848,37597125:-2468537 -) -(1,22005:21016848,37597125:2468537,452978,115847 -k1,22005:21016848,37597125:3277 -h1,22005:23482108,37597125:0,411205,112570 -) -k1,22005:23673671,37597125:188286 -k1,22005:27223953,37597125:188285 -k1,22005:30386918,37597125:188286 -k1,22005:32583029,37597125:0 -) -(1,22006:6630773,38462205:25952256,513147,126483 -k1,22005:11046621,38462205:285114 -k1,22005:12017898,38462205:285115 -k1,22005:13322097,38462205:285114 -k1,22005:15675528,38462205:285115 -k1,22005:16627798,38462205:285114 -(1,22005:16627798,38462205:0,452978,115847 -r1,22026:18392911,38462205:1765113,568825,115847 -k1,22005:16627798,38462205:-1765113 -) -(1,22005:16627798,38462205:1765113,452978,115847 -k1,22005:16627798,38462205:3277 -h1,22005:18389634,38462205:0,411205,112570 -) -k1,22005:18678026,38462205:285115 -k1,22005:22375600,38462205:285114 -k1,22005:24798499,38462205:285115 -k1,22005:25735041,38462205:285114 -k1,22005:26608669,38462205:285115 -k1,22005:27847332,38462205:285114 -k1,22005:29566375,38462205:285115 -k1,22005:30943974,38462205:285114 -k1,22005:32583029,38462205:0 -) -(1,22006:6630773,39327285:25952256,505283,134348 -g1,22005:9244348,39327285 -g1,22005:10059615,39327285 -g1,22005:11277929,39327285 -g1,22005:12754455,39327285 -g1,22005:13715212,39327285 -g1,22005:16341895,39327285 -(1,22005:16341895,39327285:0,452978,115847 -r1,22026:24437821,39327285:8095926,568825,115847 -k1,22005:16341895,39327285:-8095926 -) -(1,22005:16341895,39327285:8095926,452978,115847 -k1,22005:16341895,39327285:3277 -h1,22005:24434544,39327285:0,411205,112570 -) -k1,22006:32583029,39327285:8092780 -g1,22006:32583029,39327285 -) -v1,22008:6630773,40012140:0,393216,0 -(1,22016:6630773,43092243:25952256,3473319,196608 -g1,22016:6630773,43092243 -g1,22016:6630773,43092243 -g1,22016:6434165,43092243 -(1,22016:6434165,43092243:0,3473319,196608 -r1,22026:32779637,43092243:26345472,3669927,196608 -k1,22016:6434165,43092243:-26345472 -) -(1,22016:6434165,43092243:26345472,3473319,196608 -[1,22016:6630773,43092243:25952256,3276711,0 -(1,22010:6630773,40246577:25952256,431045,106246 -(1,22009:6630773,40246577:0,0,0 -g1,22009:6630773,40246577 -g1,22009:6630773,40246577 -g1,22009:6303093,40246577 -(1,22009:6303093,40246577:0,0,0 -) -g1,22009:6630773,40246577 -) -g1,22010:7958589,40246577 -g1,22010:8954451,40246577 -g1,22010:13269852,40246577 -g1,22010:13933760,40246577 -g1,22010:15925484,40246577 -g1,22010:16589392,40246577 -g1,22010:17253300,40246577 -g1,22010:20904794,40246577 -g1,22010:23560426,40246577 -g1,22010:24224334,40246577 -g1,22010:28539736,40246577 -g1,22010:31527322,40246577 -h1,22010:32523184,40246577:0,0,0 -k1,22010:32583029,40246577:59845 -g1,22010:32583029,40246577 -) -(1,22011:6630773,40931432:25952256,0,0 -h1,22011:6630773,40931432:0,0,0 -h1,22011:6630773,40931432:0,0,0 -k1,22011:32583029,40931432:25952256 -g1,22011:32583029,40931432 -) -(1,22012:6630773,41616287:25952256,431045,112852 -h1,22012:6630773,41616287:0,0,0 -g1,22012:10614221,41616287 -g1,22012:11278129,41616287 -g1,22012:12937899,41616287 -g1,22012:15593531,41616287 -g1,22012:16257439,41616287 -g1,22012:18249163,41616287 -g1,22012:18913071,41616287 -g1,22012:19908933,41616287 -g1,22012:20572841,41616287 -g1,22012:21236749,41616287 -g1,22012:22232611,41616287 -g1,22012:24556289,41616287 -g1,22012:25220197,41616287 -g1,22012:28539736,41616287 -h1,22012:28871690,41616287:0,0,0 -k1,22012:32583029,41616287:3711339 -g1,22012:32583029,41616287 -) -(1,22013:6630773,42301142:25952256,424439,112852 -h1,22013:6630773,42301142:0,0,0 -g1,22013:6962727,42301142 -g1,22013:7294681,42301142 -g1,22013:11610082,42301142 -h1,22013:11942036,42301142:0,0,0 -k1,22013:32583028,42301142:20640992 -g1,22013:32583028,42301142 -) -(1,22014:6630773,42985997:25952256,424439,106246 -h1,22014:6630773,42985997:0,0,0 -g1,22014:6962727,42985997 -g1,22014:7294681,42985997 -k1,22014:7294681,42985997:0 -h1,22014:14929621,42985997:0,0,0 -k1,22014:32583029,42985997:17653408 -g1,22014:32583029,42985997 -) -] -) -g1,22016:32583029,43092243 -g1,22016:6630773,43092243 -g1,22016:6630773,43092243 -g1,22016:32583029,43092243 -g1,22016:32583029,43092243 -) -h1,22016:6630773,43288851:0,0,0 -] -(1,22026:32583029,45706769:0,0,0 -g1,22026:32583029,45706769 -) -) -] -(1,22026:6630773,47279633:25952256,0,0 -h1,22026:6630773,47279633:25952256,0,0 -) -] -(1,22026:4262630,4025873:0,0,0 -[1,22026:-473656,4025873:0,0,0 -(1,22026:-473656,-710413:0,0,0 -(1,22026:-473656,-710413:0,0,0 -g1,22026:-473656,-710413 -) -g1,22026:-473656,-710413 +[1,22024:3078558,4812305:0,0,0 +(1,22024:3078558,49800853:0,16384,2228224 +g1,22024:29030814,49800853 +g1,22024:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22024:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22024:37855564,49800853:1179648,16384,0 +) +) +k1,22024:3078556,49800853:-34777008 +) +] +g1,22024:6630773,4812305 +k1,22024:21386205,4812305:13560055 +g1,22024:21999622,4812305 +g1,22024:25611966,4812305 +g1,22024:28956923,4812305 +g1,22024:29772190,4812305 +) +) +] +[1,22024:6630773,45706769:25952256,40108032,0 +(1,22024:6630773,45706769:25952256,40108032,0 +(1,22024:6630773,45706769:0,0,0 +g1,22024:6630773,45706769 +) +[1,22024:6630773,45706769:25952256,40108032,0 +v1,21973:6630773,6254097:0,393216,0 +(1,21986:6630773,12765081:25952256,6904200,196608 +g1,21986:6630773,12765081 +g1,21986:6630773,12765081 +g1,21986:6434165,12765081 +(1,21986:6434165,12765081:0,6904200,196608 +r1,22024:32779637,12765081:26345472,7100808,196608 +k1,21986:6434165,12765081:-26345472 +) +(1,21986:6434165,12765081:26345472,6904200,196608 +[1,21986:6630773,12765081:25952256,6707592,0 +(1,21975:6630773,6488534:25952256,431045,112852 +(1,21974:6630773,6488534:0,0,0 +g1,21974:6630773,6488534 +g1,21974:6630773,6488534 +g1,21974:6303093,6488534 +(1,21974:6303093,6488534:0,0,0 +) +g1,21974:6630773,6488534 +) +k1,21975:6630773,6488534:0 +g1,21975:10614221,6488534 +g1,21975:11278129,6488534 +g1,21975:12937899,6488534 +h1,21975:13269853,6488534:0,0,0 +k1,21975:32583029,6488534:19313176 +g1,21975:32583029,6488534 +) +(1,21976:6630773,7173389:25952256,431045,106246 +h1,21976:6630773,7173389:0,0,0 +g1,21976:6962727,7173389 +g1,21976:7294681,7173389 +g1,21976:16257438,7173389 +g1,21976:16921346,7173389 +g1,21976:17585254,7173389 +g1,21976:18249162,7173389 +g1,21976:20904794,7173389 +g1,21976:21900656,7173389 +g1,21976:23228472,7173389 +g1,21976:23892380,7173389 +k1,21976:23892380,7173389:0 +h1,21976:25884104,7173389:0,0,0 +k1,21976:32583029,7173389:6698925 +g1,21976:32583029,7173389 +) +(1,21977:6630773,7858244:25952256,424439,86428 +h1,21977:6630773,7858244:0,0,0 +g1,21977:6962727,7858244 +g1,21977:7294681,7858244 +g1,21977:7626635,7858244 +g1,21977:7958589,7858244 +g1,21977:8290543,7858244 +g1,21977:8622497,7858244 +g1,21977:8954451,7858244 +g1,21977:9286405,7858244 +g1,21977:9618359,7858244 +g1,21977:9950313,7858244 +g1,21977:10282267,7858244 +g1,21977:10614221,7858244 +g1,21977:10946175,7858244 +g1,21977:11278129,7858244 +g1,21977:11610083,7858244 +g1,21977:11942037,7858244 +g1,21977:12273991,7858244 +g1,21977:12605945,7858244 +g1,21977:12937899,7858244 +g1,21977:13269853,7858244 +g1,21977:13601807,7858244 +g1,21977:15925485,7858244 +g1,21977:16589393,7858244 +k1,21977:16589393,7858244:0 +h1,21977:18581117,7858244:0,0,0 +k1,21977:32583029,7858244:14001912 +g1,21977:32583029,7858244 +) +(1,21978:6630773,8543099:25952256,424439,112852 +h1,21978:6630773,8543099:0,0,0 +g1,21978:6962727,8543099 +g1,21978:7294681,8543099 +g1,21978:7626635,8543099 +g1,21978:7958589,8543099 +g1,21978:8290543,8543099 +g1,21978:8622497,8543099 +g1,21978:8954451,8543099 +g1,21978:9286405,8543099 +g1,21978:9618359,8543099 +g1,21978:9950313,8543099 +g1,21978:10282267,8543099 +g1,21978:10614221,8543099 +g1,21978:10946175,8543099 +g1,21978:11278129,8543099 +g1,21978:11610083,8543099 +g1,21978:11942037,8543099 +g1,21978:12273991,8543099 +g1,21978:12605945,8543099 +g1,21978:12937899,8543099 +g1,21978:13269853,8543099 +g1,21978:13601807,8543099 +g1,21978:16257439,8543099 +g1,21978:16921347,8543099 +g1,21978:18913071,8543099 +g1,21978:19576979,8543099 +k1,21978:19576979,8543099:0 +h1,21978:20240887,8543099:0,0,0 +k1,21978:32583029,8543099:12342142 +g1,21978:32583029,8543099 +) +(1,21979:6630773,9227954:25952256,424439,112852 +h1,21979:6630773,9227954:0,0,0 +g1,21979:6962727,9227954 +g1,21979:7294681,9227954 +g1,21979:7626635,9227954 +g1,21979:7958589,9227954 +g1,21979:8290543,9227954 +g1,21979:8622497,9227954 +g1,21979:8954451,9227954 +g1,21979:9286405,9227954 +g1,21979:9618359,9227954 +g1,21979:9950313,9227954 +g1,21979:10282267,9227954 +g1,21979:10614221,9227954 +g1,21979:10946175,9227954 +g1,21979:11278129,9227954 +g1,21979:11610083,9227954 +g1,21979:11942037,9227954 +g1,21979:12273991,9227954 +g1,21979:12605945,9227954 +g1,21979:12937899,9227954 +g1,21979:13269853,9227954 +g1,21979:13601807,9227954 +g1,21979:13933761,9227954 +g1,21979:14265715,9227954 +g1,21979:14597669,9227954 +g1,21979:14929623,9227954 +g1,21979:15261577,9227954 +g1,21979:15593531,9227954 +g1,21979:15925485,9227954 +g1,21979:16257439,9227954 +g1,21979:16589393,9227954 +g1,21979:16921347,9227954 +g1,21979:17253301,9227954 +g1,21979:17585255,9227954 +g1,21979:17917209,9227954 +g1,21979:18249163,9227954 +g1,21979:18913071,9227954 +g1,21979:19576979,9227954 +g1,21979:23560427,9227954 +g1,21979:24224335,9227954 +k1,21979:24224335,9227954:0 +h1,21979:24888243,9227954:0,0,0 +k1,21979:32583029,9227954:7694786 +g1,21979:32583029,9227954 +) +(1,21980:6630773,9912809:25952256,431045,112852 +h1,21980:6630773,9912809:0,0,0 +g1,21980:6962727,9912809 +g1,21980:7294681,9912809 +g1,21980:7626635,9912809 +g1,21980:7958589,9912809 +g1,21980:8290543,9912809 +g1,21980:8622497,9912809 +g1,21980:8954451,9912809 +g1,21980:9286405,9912809 +g1,21980:9618359,9912809 +g1,21980:9950313,9912809 +g1,21980:10282267,9912809 +g1,21980:10614221,9912809 +g1,21980:10946175,9912809 +g1,21980:11278129,9912809 +g1,21980:11610083,9912809 +g1,21980:11942037,9912809 +g1,21980:12273991,9912809 +g1,21980:12605945,9912809 +g1,21980:12937899,9912809 +g1,21980:13269853,9912809 +g1,21980:13601807,9912809 +g1,21980:13933761,9912809 +g1,21980:14265715,9912809 +g1,21980:14597669,9912809 +g1,21980:14929623,9912809 +g1,21980:15261577,9912809 +g1,21980:15593531,9912809 +g1,21980:15925485,9912809 +g1,21980:16257439,9912809 +g1,21980:16589393,9912809 +g1,21980:16921347,9912809 +g1,21980:17253301,9912809 +g1,21980:17585255,9912809 +g1,21980:17917209,9912809 +g1,21980:18249163,9912809 +g1,21980:18581117,9912809 +g1,21980:18913071,9912809 +g1,21980:19245025,9912809 +g1,21980:19576979,9912809 +g1,21980:19908933,9912809 +g1,21980:20240887,9912809 +g1,21980:20572841,9912809 +g1,21980:20904795,9912809 +g1,21980:21236749,9912809 +g1,21980:21568703,9912809 +g1,21980:25220196,9912809 +g1,21980:25884104,9912809 +g1,21980:26548012,9912809 +g1,21980:27211920,9912809 +k1,21980:27211920,9912809:0 +h1,21980:30199505,9912809:0,0,0 +k1,21980:32583029,9912809:2383524 +g1,21980:32583029,9912809 +) +(1,21981:6630773,10597664:25952256,431045,112852 +h1,21981:6630773,10597664:0,0,0 +g1,21981:6962727,10597664 +g1,21981:7294681,10597664 +g1,21981:7626635,10597664 +g1,21981:7958589,10597664 +g1,21981:8290543,10597664 +g1,21981:8622497,10597664 +g1,21981:8954451,10597664 +g1,21981:9286405,10597664 +g1,21981:9618359,10597664 +g1,21981:9950313,10597664 +g1,21981:10282267,10597664 +g1,21981:10614221,10597664 +g1,21981:10946175,10597664 +g1,21981:11278129,10597664 +g1,21981:11610083,10597664 +g1,21981:11942037,10597664 +g1,21981:12273991,10597664 +g1,21981:12605945,10597664 +g1,21981:12937899,10597664 +g1,21981:13269853,10597664 +g1,21981:13601807,10597664 +g1,21981:13933761,10597664 +g1,21981:14265715,10597664 +g1,21981:14597669,10597664 +g1,21981:14929623,10597664 +g1,21981:15261577,10597664 +g1,21981:15593531,10597664 +g1,21981:15925485,10597664 +g1,21981:16257439,10597664 +g1,21981:16589393,10597664 +g1,21981:16921347,10597664 +g1,21981:17253301,10597664 +g1,21981:17585255,10597664 +g1,21981:17917209,10597664 +g1,21981:18249163,10597664 +g1,21981:20572841,10597664 +g1,21981:21236749,10597664 +k1,21981:21236749,10597664:0 +h1,21981:28207781,10597664:0,0,0 +k1,21981:32583029,10597664:4375248 +g1,21981:32583029,10597664 +) +(1,21982:6630773,11282519:25952256,424439,112852 +h1,21982:6630773,11282519:0,0,0 +g1,21982:6962727,11282519 +g1,21982:7294681,11282519 +g1,21982:7626635,11282519 +g1,21982:7958589,11282519 +g1,21982:8290543,11282519 +g1,21982:8622497,11282519 +g1,21982:8954451,11282519 +g1,21982:9286405,11282519 +g1,21982:9618359,11282519 +g1,21982:9950313,11282519 +g1,21982:10282267,11282519 +g1,21982:10614221,11282519 +g1,21982:10946175,11282519 +g1,21982:11278129,11282519 +g1,21982:11610083,11282519 +g1,21982:11942037,11282519 +g1,21982:12273991,11282519 +g1,21982:12605945,11282519 +g1,21982:12937899,11282519 +g1,21982:13269853,11282519 +g1,21982:13601807,11282519 +g1,21982:17585254,11282519 +g1,21982:18249162,11282519 +g1,21982:20240886,11282519 +h1,21982:20572840,11282519:0,0,0 +k1,21982:32583029,11282519:12010189 +g1,21982:32583029,11282519 +) +(1,21983:6630773,11967374:25952256,424439,112852 +h1,21983:6630773,11967374:0,0,0 +g1,21983:6962727,11967374 +g1,21983:7294681,11967374 +g1,21983:15261575,11967374 +g1,21983:15925483,11967374 +g1,21983:18249161,11967374 +g1,21983:19908931,11967374 +g1,21983:20572839,11967374 +g1,21983:23228471,11967374 +g1,21983:25552149,11967374 +g1,21983:26216057,11967374 +g1,21983:27875827,11967374 +k1,21983:27875827,11967374:0 +h1,21983:28871689,11967374:0,0,0 +k1,21983:32583029,11967374:3711340 +g1,21983:32583029,11967374 +) +(1,21984:6630773,12652229:25952256,424439,112852 +h1,21984:6630773,12652229:0,0,0 +g1,21984:6962727,12652229 +g1,21984:7294681,12652229 +g1,21984:7626635,12652229 +g1,21984:7958589,12652229 +g1,21984:8290543,12652229 +g1,21984:8622497,12652229 +g1,21984:8954451,12652229 +g1,21984:9286405,12652229 +g1,21984:9618359,12652229 +g1,21984:9950313,12652229 +g1,21984:10282267,12652229 +g1,21984:10614221,12652229 +g1,21984:10946175,12652229 +g1,21984:11278129,12652229 +g1,21984:11610083,12652229 +g1,21984:11942037,12652229 +g1,21984:12273991,12652229 +g1,21984:12605945,12652229 +g1,21984:12937899,12652229 +g1,21984:13269853,12652229 +g1,21984:13601807,12652229 +g1,21984:15593531,12652229 +g1,21984:16257439,12652229 +g1,21984:20572840,12652229 +g1,21984:23560425,12652229 +g1,21984:24224333,12652229 +h1,21984:24888241,12652229:0,0,0 +k1,21984:32583029,12652229:7694788 +g1,21984:32583029,12652229 +) +] +) +g1,21986:32583029,12765081 +g1,21986:6630773,12765081 +g1,21986:6630773,12765081 +g1,21986:32583029,12765081 +g1,21986:32583029,12765081 +) +h1,21986:6630773,12961689:0,0,0 +(1,21989:6630773,22110891:25952256,9083666,0 +k1,21989:10523651,22110891:3892878 +h1,21988:10523651,22110891:0,0,0 +(1,21988:10523651,22110891:18166500,9083666,0 +(1,21988:10523651,22110891:18167376,9083688,0 +(1,21988:10523651,22110891:18167376,9083688,0 +(1,21988:10523651,22110891:0,9083688,0 +(1,21988:10523651,22110891:0,14208860,0 +(1,21988:10523651,22110891:28417720,14208860,0 +) +k1,21988:10523651,22110891:-28417720 +) +) +g1,21988:28691027,22110891 +) +) +) +g1,21989:28690151,22110891 +k1,21989:32583029,22110891:3892878 +) +(1,21996:6630773,22975971:25952256,513147,134348 +h1,21995:6630773,22975971:983040,0,0 +k1,21995:9078945,22975971:268445 +k1,21995:12586180,22975971:268446 +k1,21995:13513917,22975971:268445 +k1,21995:15981751,22975971:268446 +k1,21995:18152706,22975971:268445 +k1,21995:18952649,22975971:268446 +k1,21995:20505600,22975971:268445 +k1,21995:22154234,22975971:268446 +k1,21995:25201406,22975971:268445 +k1,21995:26488937,22975971:268446 +k1,21995:27965211,22975971:268445 +k1,21995:30636207,22975971:268446 +k1,21995:31563944,22975971:268445 +k1,21995:32583029,22975971:0 +) +(1,21996:6630773,23841051:25952256,513147,134348 +k1,21995:8091430,23841051:183360 +k1,21995:9964309,23841051:183361 +k1,21995:11656308,23841051:183360 +k1,21995:16030696,23841051:183361 +k1,21995:16745553,23841051:183360 +k1,21995:17947999,23841051:183361 +k1,21995:21322962,23841051:183360 +k1,21995:24754286,23841051:183360 +k1,21995:25596939,23841051:183361 +k1,21995:26799384,23841051:183360 +k1,21995:28728624,23841051:183361 +k1,21995:30108671,23841051:183360 +k1,21995:31384517,23841051:183361 +k1,21995:32227169,23841051:183360 +k1,21995:32583029,23841051:0 +) +(1,21996:6630773,24706131:25952256,513147,126483 +k1,21995:9025224,24706131:195063 +k1,21995:11547471,24706131:195064 +k1,21995:12401826,24706131:195063 +k1,21995:12952749,24706131:195063 +k1,21995:16718213,24706131:195063 +k1,21995:18485486,24706131:195064 +k1,21995:19212046,24706131:195063 +k1,21995:22937533,24706131:195063 +k1,21995:24329284,24706131:195064 +k1,21995:27010128,24706131:195063 +k1,21995:27864483,24706131:195063 +k1,21995:29406311,24706131:195063 +k1,21995:30705657,24706131:195064 +k1,21995:31648486,24706131:195063 +k1,21995:32583029,24706131:0 +) +(1,21996:6630773,25571211:25952256,505283,134348 +k1,21995:7625964,25571211:233663 +k1,21995:10287081,25571211:233663 +k1,21995:11291446,25571211:233662 +k1,21995:14597437,25571211:233663 +k1,21995:15482528,25571211:233663 +k1,21995:18996923,25571211:233663 +(1,21995:18996923,25571211:0,452978,115847 +r1,22024:21817172,25571211:2820249,568825,115847 +k1,21995:18996923,25571211:-2820249 +) +(1,21995:18996923,25571211:2820249,452978,115847 +k1,21995:18996923,25571211:3277 +h1,21995:21813895,25571211:0,411205,112570 +) +k1,21995:22050835,25571211:233663 +k1,21995:22967383,25571211:233663 +k1,21995:27327847,25571211:233662 +k1,21995:27917370,25571211:233663 +(1,21995:27917370,25571211:0,452978,115847 +r1,22024:30385907,25571211:2468537,568825,115847 +k1,21995:27917370,25571211:-2468537 +) +(1,21995:27917370,25571211:2468537,452978,115847 +k1,21995:27917370,25571211:3277 +h1,21995:30382630,25571211:0,411205,112570 +) +k1,21995:30619570,25571211:233663 +k1,21995:32583029,25571211:0 +) +(1,21996:6630773,26436291:25952256,505283,134348 +k1,21995:9053739,26436291:217679 +k1,21995:9957580,26436291:217679 +k1,21995:13247588,26436291:217680 +k1,21995:14116695,26436291:217679 +(1,21995:14116695,26436291:0,452978,115847 +r1,22024:16233520,26436291:2116825,568825,115847 +k1,21995:14116695,26436291:-2116825 +) +(1,21995:14116695,26436291:2116825,452978,115847 +k1,21995:14116695,26436291:3277 +h1,21995:16230243,26436291:0,411205,112570 +) +k1,21995:16451199,26436291:217679 +k1,21995:17773160,26436291:217679 +k1,21995:18738606,26436291:217680 +k1,21995:20469511,26436291:217679 +k1,21995:21338618,26436291:217679 +k1,21995:24453644,26436291:217679 +k1,21995:25605867,26436291:217680 +k1,21995:26840009,26436291:217679 +k1,21995:30799794,26436291:217679 +k1,21995:32583029,26436291:0 +) +(1,21996:6630773,27301371:25952256,505283,134348 +k1,21995:9542210,27301371:197591 +k1,21995:11070182,27301371:197591 +k1,21995:13019550,27301371:197591 +k1,21995:14563906,27301371:197591 +k1,21995:15412925,27301371:197591 +k1,21995:16876672,27301371:197591 +k1,21995:18230972,27301371:197590 +k1,21995:20289130,27301371:197591 +k1,21995:21138149,27301371:197591 +k1,21995:22688403,27301371:197591 +k1,21995:24153460,27301371:197591 +k1,21995:26855182,27301371:197591 +k1,21995:28071858,27301371:197591 +k1,21995:31278862,27301371:197591 +k1,21995:32583029,27301371:0 +) +(1,21996:6630773,28166451:25952256,513147,134348 +k1,21995:7873523,28166451:223665 +k1,21995:9952512,28166451:223665 +k1,21995:11308639,28166451:223665 +k1,21995:12280070,28166451:223665 +k1,21995:15378799,28166451:223665 +k1,21995:16793909,28166451:223665 +k1,21995:20254397,28166451:223665 +k1,21995:21669506,28166451:223664 +k1,21995:22912256,28166451:223665 +k1,21995:25149187,28166451:223665 +k1,21995:26032144,28166451:223665 +k1,21995:27681217,28166451:223665 +k1,21995:30688851,28166451:223665 +k1,21995:31563944,28166451:223665 +k1,21995:32583029,28166451:0 +) +(1,21996:6630773,29031531:25952256,513147,126483 +k1,21995:9199724,29031531:193927 +k1,21995:10045079,29031531:193927 +k1,21995:12387932,29031531:193927 +k1,21995:13600944,29031531:193927 +k1,21995:15072168,29031531:193927 +k1,21995:17625390,29031531:193926 +k1,21995:18470745,29031531:193927 +k1,21995:19683757,29031531:193927 +k1,21995:22210110,29031531:193927 +k1,21995:23063329,29031531:193927 +k1,21995:27237913,29031531:193927 +k1,21995:32583029,29031531:0 +) +(1,21996:6630773,29896611:25952256,505283,7863 +g1,21995:7821562,29896611 +g1,21995:9306607,29896611 +g1,21995:11955572,29896611 +g1,21995:12770839,29896611 +g1,21995:14666795,29896611 +g1,21995:16768534,29896611 +g1,21995:17653925,29896611 +g1,21995:18469192,29896611 +k1,21996:32583029,29896611:12029137 +g1,21996:32583029,29896611 +) +(1,21999:6630773,32013429:25952256,555811,139132 +(1,21999:6630773,32013429:3348562,534184,12975 +g1,21999:6630773,32013429 +g1,21999:9979335,32013429 +) +g1,21999:13069096,32013429 +k1,21999:32583029,32013429:17328176 +g1,21999:32583029,32013429 +) +(1,22002:6630773,33271725:25952256,513147,134348 +k1,22001:7422980,33271725:164372 +k1,22001:8606438,33271725:164373 +k1,22001:10137891,33271725:164372 +k1,22001:10961556,33271725:164373 +k1,22001:13586150,33271725:164372 +k1,22001:15826704,33271725:164373 +k1,22001:17010161,33271725:164372 +k1,22001:19982095,33271725:164372 +k1,22001:20677965,33271725:164373 +k1,22001:21999047,33271725:164372 +k1,22001:24184550,33271725:164373 +k1,22001:25000350,33271725:164372 +k1,22001:26183808,33271725:164373 +k1,22001:27911214,33271725:164372 +k1,22001:29117609,33271725:164373 +k1,22001:32117068,33271725:164372 +k1,22001:32583029,33271725:0 +) +(1,22002:6630773,34136805:25952256,505283,134348 +k1,22001:7686016,34136805:213105 +k1,22001:9295693,34136805:213105 +k1,22001:10527884,34136805:213106 +(1,22001:10527884,34136805:0,452978,115847 +r1,22024:12644709,34136805:2116825,568825,115847 +k1,22001:10527884,34136805:-2116825 +) +(1,22001:10527884,34136805:2116825,452978,115847 +k1,22001:10527884,34136805:3277 +h1,22001:12641432,34136805:0,411205,112570 +) +k1,22001:12857814,34136805:213105 +k1,22001:13753804,34136805:213105 +(1,22001:13753804,34136805:0,459977,115847 +r1,22024:15167205,34136805:1413401,575824,115847 +k1,22001:13753804,34136805:-1413401 +) +(1,22001:13753804,34136805:1413401,459977,115847 +k1,22001:13753804,34136805:3277 +h1,22001:15163928,34136805:0,411205,112570 +) +k1,22001:15380310,34136805:213105 +k1,22001:18380661,34136805:213105 +k1,22001:19245194,34136805:213105 +k1,22001:19814160,34136805:213106 +k1,22001:22538605,34136805:213105 +k1,22001:24487103,34136805:213105 +(1,22001:24487103,34136805:0,452978,115847 +r1,22024:32583029,34136805:8095926,568825,115847 +k1,22001:24487103,34136805:-8095926 +) +(1,22001:24487103,34136805:8095926,452978,115847 +k1,22001:24487103,34136805:3277 +h1,22001:32579752,34136805:0,411205,112570 +) +k1,22001:32583029,34136805:0 +) +(1,22002:6630773,35001885:25952256,505283,126483 +k1,22001:7467580,35001885:153922 +(1,22001:7467580,35001885:0,459977,115847 +r1,22024:14860082,35001885:7392502,575824,115847 +k1,22001:7467580,35001885:-7392502 +) +(1,22001:7467580,35001885:7392502,459977,115847 +k1,22001:7467580,35001885:3277 +h1,22001:14856805,35001885:0,411205,112570 +) +k1,22001:15187673,35001885:153921 +k1,22001:16360680,35001885:153922 +k1,22001:19099996,35001885:153921 +k1,22001:21765258,35001885:153922 +k1,22001:23541196,35001885:153922 +k1,22001:26029509,35001885:153921 +k1,22001:28555179,35001885:153922 +k1,22001:30249196,35001885:153921 +k1,22001:30817916,35001885:153877 +(1,22001:30817916,35001885:0,452978,115847 +r1,22024:32583029,35001885:1765113,568825,115847 +k1,22001:30817916,35001885:-1765113 +) +(1,22001:30817916,35001885:1765113,452978,115847 +k1,22001:30817916,35001885:3277 +h1,22001:32579752,35001885:0,411205,112570 +) +k1,22001:32583029,35001885:0 +) +(1,22002:6630773,35866965:25952256,513147,134348 +k1,22001:10366197,35866965:149294 +k1,22001:11143325,35866965:149293 +k1,22001:12311704,35866965:149294 +k1,22001:13828079,35866965:149294 +k1,22001:14636665,35866965:149294 +k1,22001:17593520,35866965:149293 +(1,22001:17593520,35866965:0,452978,115847 +r1,22024:19358633,35866965:1765113,568825,115847 +k1,22001:17593520,35866965:-1765113 +) +(1,22001:17593520,35866965:1765113,452978,115847 +k1,22001:17593520,35866965:3277 +h1,22001:19355356,35866965:0,411205,112570 +) +k1,22001:19681597,35866965:149294 +k1,22001:20849976,35866965:149294 +k1,22001:23510610,35866965:149294 +k1,22001:25281919,35866965:149293 +k1,22001:27802961,35866965:149294 +k1,22001:30572384,35866965:149294 +k1,22001:32583029,35866965:0 +) +(1,22002:6630773,36732045:25952256,505283,134348 +g1,22001:7446040,36732045 +g1,22001:8664354,36732045 +g1,22001:10644196,36732045 +g1,22001:11241884,36732045 +g1,22001:12092541,36732045 +k1,22002:32583028,36732045:20039600 +g1,22002:32583028,36732045 +) +(1,22004:6630773,37597125:25952256,513147,134348 +h1,22003:6630773,37597125:983040,0,0 +k1,22003:8755648,37597125:188286 +k1,22003:10036418,37597125:188285 +k1,22003:10580564,37597125:188286 +k1,22003:12158213,37597125:188286 +k1,22003:14222794,37597125:188285 +k1,22003:17773077,37597125:188286 +k1,22003:18317222,37597125:188285 +k1,22003:21016848,37597125:188286 +(1,22003:21016848,37597125:0,452978,115847 +r1,22024:23485385,37597125:2468537,568825,115847 +k1,22003:21016848,37597125:-2468537 +) +(1,22003:21016848,37597125:2468537,452978,115847 +k1,22003:21016848,37597125:3277 +h1,22003:23482108,37597125:0,411205,112570 +) +k1,22003:23673671,37597125:188286 +k1,22003:27223953,37597125:188285 +k1,22003:30386918,37597125:188286 +k1,22003:32583029,37597125:0 +) +(1,22004:6630773,38462205:25952256,513147,126483 +k1,22003:11046621,38462205:285114 +k1,22003:12017898,38462205:285115 +k1,22003:13322097,38462205:285114 +k1,22003:15675528,38462205:285115 +k1,22003:16627798,38462205:285114 +(1,22003:16627798,38462205:0,452978,115847 +r1,22024:18392911,38462205:1765113,568825,115847 +k1,22003:16627798,38462205:-1765113 +) +(1,22003:16627798,38462205:1765113,452978,115847 +k1,22003:16627798,38462205:3277 +h1,22003:18389634,38462205:0,411205,112570 +) +k1,22003:18678026,38462205:285115 +k1,22003:22375600,38462205:285114 +k1,22003:24798499,38462205:285115 +k1,22003:25735041,38462205:285114 +k1,22003:26608669,38462205:285115 +k1,22003:27847332,38462205:285114 +k1,22003:29566375,38462205:285115 +k1,22003:30943974,38462205:285114 +k1,22003:32583029,38462205:0 +) +(1,22004:6630773,39327285:25952256,505283,134348 +g1,22003:9244348,39327285 +g1,22003:10059615,39327285 +g1,22003:11277929,39327285 +g1,22003:12754455,39327285 +g1,22003:13715212,39327285 +g1,22003:16341895,39327285 +(1,22003:16341895,39327285:0,452978,115847 +r1,22024:24437821,39327285:8095926,568825,115847 +k1,22003:16341895,39327285:-8095926 +) +(1,22003:16341895,39327285:8095926,452978,115847 +k1,22003:16341895,39327285:3277 +h1,22003:24434544,39327285:0,411205,112570 +) +k1,22004:32583029,39327285:8092780 +g1,22004:32583029,39327285 +) +v1,22006:6630773,40012140:0,393216,0 +(1,22014:6630773,43092243:25952256,3473319,196608 +g1,22014:6630773,43092243 +g1,22014:6630773,43092243 +g1,22014:6434165,43092243 +(1,22014:6434165,43092243:0,3473319,196608 +r1,22024:32779637,43092243:26345472,3669927,196608 +k1,22014:6434165,43092243:-26345472 +) +(1,22014:6434165,43092243:26345472,3473319,196608 +[1,22014:6630773,43092243:25952256,3276711,0 +(1,22008:6630773,40246577:25952256,431045,106246 +(1,22007:6630773,40246577:0,0,0 +g1,22007:6630773,40246577 +g1,22007:6630773,40246577 +g1,22007:6303093,40246577 +(1,22007:6303093,40246577:0,0,0 +) +g1,22007:6630773,40246577 +) +g1,22008:7958589,40246577 +g1,22008:8954451,40246577 +g1,22008:13269852,40246577 +g1,22008:13933760,40246577 +g1,22008:15925484,40246577 +g1,22008:16589392,40246577 +g1,22008:17253300,40246577 +g1,22008:20904794,40246577 +g1,22008:23560426,40246577 +g1,22008:24224334,40246577 +g1,22008:28539736,40246577 +g1,22008:31527322,40246577 +h1,22008:32523184,40246577:0,0,0 +k1,22008:32583029,40246577:59845 +g1,22008:32583029,40246577 +) +(1,22009:6630773,40931432:25952256,0,0 +h1,22009:6630773,40931432:0,0,0 +h1,22009:6630773,40931432:0,0,0 +k1,22009:32583029,40931432:25952256 +g1,22009:32583029,40931432 +) +(1,22010:6630773,41616287:25952256,431045,112852 +h1,22010:6630773,41616287:0,0,0 +g1,22010:10614221,41616287 +g1,22010:11278129,41616287 +g1,22010:12937899,41616287 +g1,22010:15593531,41616287 +g1,22010:16257439,41616287 +g1,22010:18249163,41616287 +g1,22010:18913071,41616287 +g1,22010:19908933,41616287 +g1,22010:20572841,41616287 +g1,22010:21236749,41616287 +g1,22010:22232611,41616287 +g1,22010:24556289,41616287 +g1,22010:25220197,41616287 +g1,22010:28539736,41616287 +h1,22010:28871690,41616287:0,0,0 +k1,22010:32583029,41616287:3711339 +g1,22010:32583029,41616287 +) +(1,22011:6630773,42301142:25952256,424439,112852 +h1,22011:6630773,42301142:0,0,0 +g1,22011:6962727,42301142 +g1,22011:7294681,42301142 +g1,22011:11610082,42301142 +h1,22011:11942036,42301142:0,0,0 +k1,22011:32583028,42301142:20640992 +g1,22011:32583028,42301142 +) +(1,22012:6630773,42985997:25952256,424439,106246 +h1,22012:6630773,42985997:0,0,0 +g1,22012:6962727,42985997 +g1,22012:7294681,42985997 +k1,22012:7294681,42985997:0 +h1,22012:14929621,42985997:0,0,0 +k1,22012:32583029,42985997:17653408 +g1,22012:32583029,42985997 +) +] +) +g1,22014:32583029,43092243 +g1,22014:6630773,43092243 +g1,22014:6630773,43092243 +g1,22014:32583029,43092243 +g1,22014:32583029,43092243 +) +h1,22014:6630773,43288851:0,0,0 +] +(1,22024:32583029,45706769:0,0,0 +g1,22024:32583029,45706769 +) +) +] +(1,22024:6630773,47279633:25952256,0,0 +h1,22024:6630773,47279633:25952256,0,0 +) +] +(1,22024:4262630,4025873:0,0,0 +[1,22024:-473656,4025873:0,0,0 +(1,22024:-473656,-710413:0,0,0 +(1,22024:-473656,-710413:0,0,0 +g1,22024:-473656,-710413 +) +g1,22024:-473656,-710413 ) ] ) ] !26984 -}373 -Input:4152:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4153:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4154:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4155:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}374 Input:4156:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4157:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4158:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -381655,1581 +381859,1581 @@ Input:4173:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4174:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4175:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4176:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4177:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4178:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4179:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4180:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !2312 -{374 -[1,22052:4262630,47279633:28320399,43253760,0 -(1,22052:4262630,4025873:0,0,0 -[1,22052:-473656,4025873:0,0,0 -(1,22052:-473656,-710413:0,0,0 -(1,22052:-473656,-644877:0,0,0 -k1,22052:-473656,-644877:-65536 +{375 +[1,22050:4262630,47279633:28320399,43253760,0 +(1,22050:4262630,4025873:0,0,0 +[1,22050:-473656,4025873:0,0,0 +(1,22050:-473656,-710413:0,0,0 +(1,22050:-473656,-644877:0,0,0 +k1,22050:-473656,-644877:-65536 ) -(1,22052:-473656,4736287:0,0,0 -k1,22052:-473656,4736287:5209943 +(1,22050:-473656,4736287:0,0,0 +k1,22050:-473656,4736287:5209943 ) -g1,22052:-473656,-710413 +g1,22050:-473656,-710413 ) ] ) -[1,22052:6630773,47279633:25952256,43253760,0 -[1,22052:6630773,4812305:25952256,786432,0 -(1,22052:6630773,4812305:25952256,505283,134348 -(1,22052:6630773,4812305:25952256,505283,134348 -g1,22052:3078558,4812305 -[1,22052:3078558,4812305:0,0,0 -(1,22052:3078558,2439708:0,1703936,0 -k1,22052:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22052:2537886,2439708:1179648,16384,0 +[1,22050:6630773,47279633:25952256,43253760,0 +[1,22050:6630773,4812305:25952256,786432,0 +(1,22050:6630773,4812305:25952256,505283,134348 +(1,22050:6630773,4812305:25952256,505283,134348 +g1,22050:3078558,4812305 +[1,22050:3078558,4812305:0,0,0 +(1,22050:3078558,2439708:0,1703936,0 +k1,22050:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22050:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22052:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22050:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22052:3078558,4812305:0,0,0 -(1,22052:3078558,2439708:0,1703936,0 -g1,22052:29030814,2439708 -g1,22052:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22052:36151628,1915420:16384,1179648,0 +[1,22050:3078558,4812305:0,0,0 +(1,22050:3078558,2439708:0,1703936,0 +g1,22050:29030814,2439708 +g1,22050:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22050:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22052:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22050:37855564,2439708:1179648,16384,0 ) ) -k1,22052:3078556,2439708:-34777008 +k1,22050:3078556,2439708:-34777008 ) ] -[1,22052:3078558,4812305:0,0,0 -(1,22052:3078558,49800853:0,16384,2228224 -k1,22052:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22052:2537886,49800853:1179648,16384,0 +[1,22050:3078558,4812305:0,0,0 +(1,22050:3078558,49800853:0,16384,2228224 +k1,22050:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22050:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22052:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22050:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22052:3078558,4812305:0,0,0 -(1,22052:3078558,49800853:0,16384,2228224 -g1,22052:29030814,49800853 -g1,22052:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22052:36151628,51504789:16384,1179648,0 +[1,22050:3078558,4812305:0,0,0 +(1,22050:3078558,49800853:0,16384,2228224 +g1,22050:29030814,49800853 +g1,22050:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22050:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22052:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22050:37855564,49800853:1179648,16384,0 ) ) -k1,22052:3078556,49800853:-34777008 +k1,22050:3078556,49800853:-34777008 ) ] -g1,22052:6630773,4812305 -g1,22052:6630773,4812305 -g1,22052:9113932,4812305 -g1,22052:13118837,4812305 -k1,22052:31387653,4812305:18268816 -) +g1,22050:6630773,4812305 +g1,22050:6630773,4812305 +g1,22050:9113932,4812305 +g1,22050:13118837,4812305 +k1,22050:31387653,4812305:18268816 +) ) ] -[1,22052:6630773,45706769:25952256,40108032,0 -(1,22052:6630773,45706769:25952256,40108032,0 -(1,22052:6630773,45706769:0,0,0 -g1,22052:6630773,45706769 +[1,22050:6630773,45706769:25952256,40108032,0 +(1,22050:6630773,45706769:25952256,40108032,0 +(1,22050:6630773,45706769:0,0,0 +g1,22050:6630773,45706769 ) -[1,22052:6630773,45706769:25952256,40108032,0 -(1,22019:6630773,14682403:25952256,9083666,0 -k1,22019:10523651,14682403:3892878 -h1,22018:10523651,14682403:0,0,0 -(1,22018:10523651,14682403:18166500,9083666,0 -(1,22018:10523651,14682403:18167376,9083688,0 -(1,22018:10523651,14682403:18167376,9083688,0 -(1,22018:10523651,14682403:0,9083688,0 -(1,22018:10523651,14682403:0,14208860,0 -(1,22018:10523651,14682403:28417720,14208860,0 +[1,22050:6630773,45706769:25952256,40108032,0 +(1,22017:6630773,14682403:25952256,9083666,0 +k1,22017:10523651,14682403:3892878 +h1,22016:10523651,14682403:0,0,0 +(1,22016:10523651,14682403:18166500,9083666,0 +(1,22016:10523651,14682403:18167376,9083688,0 +(1,22016:10523651,14682403:18167376,9083688,0 +(1,22016:10523651,14682403:0,9083688,0 +(1,22016:10523651,14682403:0,14208860,0 +(1,22016:10523651,14682403:28417720,14208860,0 ) -k1,22018:10523651,14682403:-28417720 +k1,22016:10523651,14682403:-28417720 ) ) -g1,22018:28691027,14682403 -) -) -) -g1,22019:28690151,14682403 -k1,22019:32583029,14682403:3892878 -) -v1,22026:6630773,15547483:0,393216,0 -(1,22029:6630773,18549548:25952256,3395281,0 -g1,22029:6630773,18549548 -g1,22029:6237557,18549548 -r1,22052:6368629,18549548:131072,3395281,0 -g1,22029:6567858,18549548 -g1,22029:6764466,18549548 -[1,22029:6764466,18549548:25818563,3395281,0 -(1,22027:6764466,15819960:25818563,665693,196608 -(1,22026:6764466,15819960:0,665693,196608 -r1,22052:7868133,15819960:1103667,862301,196608 -k1,22026:6764466,15819960:-1103667 -) -(1,22026:6764466,15819960:1103667,665693,196608 -) -k1,22026:8052099,15819960:183966 -k1,22026:9778317,15819960:327680 -k1,22026:11383104,15819960:183966 -k1,22026:13059980,15819960:183966 -k1,22026:14263030,15819960:183965 -k1,22026:15724293,15819960:183966 -k1,22026:17468671,15819960:183966 -k1,22026:18118598,15819960:183966 -k1,22026:19321649,15819960:183966 -k1,22026:21965837,15819960:183966 -k1,22026:23722012,15819960:183966 -k1,22026:24437474,15819960:183965 -k1,22026:26966974,15819960:183966 -k1,22026:28718561,15819960:183966 -k1,22026:29921612,15819960:183966 -k1,22026:32583029,15819960:0 -) -(1,22027:6764466,16685040:25818563,505283,126483 -g1,22026:9146044,16685040 -g1,22026:10595045,16685040 -g1,22026:11985719,16685040 -g1,22026:14151683,16685040 -g1,22026:15369997,16685040 -g1,22026:18230643,16685040 -k1,22027:32583029,16685040:12803771 -g1,22027:32583029,16685040 -) -(1,22029:6764466,17550120:25818563,505283,134348 -h1,22028:6764466,17550120:983040,0,0 -k1,22028:9679457,17550120:157236 -k1,22028:11572086,17550120:157236 -k1,22028:12748407,17550120:157236 -k1,22028:15365864,17550120:157235 -k1,22028:17268979,17550120:157236 -k1,22028:18756596,17550120:157236 -k1,22028:20870082,17550120:157236 -k1,22028:22197791,17550120:157236 -k1,22028:23885293,17550120:157236 -k1,22028:24693956,17550120:157235 -k1,22028:27091868,17550120:157236 -k1,22028:28268189,17550120:157236 -k1,22028:29921612,17550120:157236 -k1,22028:32583029,17550120:0 -) -(1,22029:6764466,18415200:25818563,505283,134348 -g1,22028:8992690,18415200 -g1,22028:9843347,18415200 -g1,22028:12662705,18415200 -g1,22028:13217794,18415200 -g1,22028:14694320,18415200 -g1,22028:16287500,18415200 -g1,22028:18258823,18415200 -g1,22028:19649497,18415200 -g1,22028:21945878,18415200 -k1,22029:32583029,18415200:8324385 -g1,22029:32583029,18415200 -) -] -g1,22029:32583029,18549548 -) -h1,22029:6630773,18549548:0,0,0 -v1,22033:6630773,19414628:0,393216,0 -(1,22035:6630773,23306092:25952256,4284680,0 -g1,22035:6630773,23306092 -g1,22035:6237557,23306092 -r1,22052:6368629,23306092:131072,4284680,0 -g1,22035:6567858,23306092 -g1,22035:6764466,23306092 -[1,22035:6764466,23306092:25818563,4284680,0 -(1,22035:6764466,19722926:25818563,701514,196608 -(1,22033:6764466,19722926:0,701514,196608 -r1,22052:7761522,19722926:997056,898122,196608 -k1,22033:6764466,19722926:-997056 -) -(1,22033:6764466,19722926:997056,701514,196608 -) -k1,22033:7937356,19722926:175834 -k1,22033:8265036,19722926:327680 -k1,22033:8265036,19722926:0 -k1,22034:8265036,19722926:0 -k1,22034:9637557,19722926:175834 -(1,22034:9637557,19722926:0,452978,115847 -r1,22052:11754382,19722926:2116825,568825,115847 -k1,22034:9637557,19722926:-2116825 -) -(1,22034:9637557,19722926:2116825,452978,115847 -k1,22034:9637557,19722926:3277 -h1,22034:11751105,19722926:0,411205,112570 -) -k1,22034:11930216,19722926:175834 -k1,22034:13297495,19722926:175834 -(1,22034:13297495,19722926:0,459977,115847 -r1,22052:14710896,19722926:1413401,575824,115847 -k1,22034:13297495,19722926:-1413401 -) -(1,22034:13297495,19722926:1413401,459977,115847 -k1,22034:13297495,19722926:3277 -h1,22034:14707619,19722926:0,411205,112570 -) -k1,22034:14886730,19722926:175834 -k1,22034:16965074,19722926:175834 -k1,22034:18654134,19722926:175834 -k1,22034:19591496,19722926:175834 -k1,22034:22032910,19722926:175834 -k1,22034:22970272,19722926:175834 -k1,22034:26653593,19722926:175834 -k1,22034:29211005,19722926:175834 -k1,22034:30002877,19722926:175834 -k1,22034:32583029,19722926:0 -) -(1,22035:6764466,20588006:25818563,505283,134348 -k1,22034:10048699,20588006:507473 -k1,22034:11660453,20588006:507472 -k1,22034:12915691,20588006:507472 -k1,22034:16084581,20588006:507473 -k1,22034:19150580,20588006:507473 -k1,22034:20072586,20588006:507163 -k1,22034:22993094,20588006:507472 -(1,22034:22993094,20588006:0,452978,122846 -r1,22052:32495867,20588006:9502773,575824,122846 -k1,22034:22993094,20588006:-9502773 -) -(1,22034:22993094,20588006:9502773,452978,122846 -k1,22034:22993094,20588006:3277 -h1,22034:32492590,20588006:0,411205,112570 -) -k1,22035:32583029,20588006:0 -) -(1,22035:6764466,21453086:25818563,452978,122846 -(1,22034:6764466,21453086:0,452978,122846 -r1,22052:15563815,21453086:8799349,575824,122846 -k1,22034:6764466,21453086:-8799349 -) -(1,22034:6764466,21453086:8799349,452978,122846 -k1,22034:6764466,21453086:3277 -h1,22034:15560538,21453086:0,411205,112570 -) -k1,22034:24048231,21453086:8310746 -(1,22034:24048231,21453086:0,452978,122846 -r1,22052:32495868,21453086:8447637,575824,122846 -k1,22034:24048231,21453086:-8447637 -) -(1,22034:24048231,21453086:8447637,452978,122846 -k1,22034:24048231,21453086:3277 -h1,22034:32492591,21453086:0,411205,112570 -) -k1,22035:32583030,21453086:0 -) -(1,22035:6764466,22318166:25818563,459977,122846 -(1,22034:6764466,22318166:0,452978,122846 -r1,22052:14860392,22318166:8095926,575824,122846 -k1,22034:6764466,22318166:-8095926 -) -(1,22034:6764466,22318166:8095926,452978,122846 -k1,22034:6764466,22318166:3277 -h1,22034:14857115,22318166:0,411205,112570 -) -k1,22034:15230492,22318166:196430 -(1,22034:15230492,22318166:0,459977,122846 -r1,22052:24029841,22318166:8799349,582823,122846 -k1,22034:15230492,22318166:-8799349 -) -(1,22034:15230492,22318166:8799349,459977,122846 -k1,22034:15230492,22318166:3277 -h1,22034:24026564,22318166:0,411205,112570 -) -k1,22034:24399941,22318166:196430 -(1,22034:24399941,22318166:0,459977,122846 -r1,22052:32495867,22318166:8095926,582823,122846 -k1,22034:24399941,22318166:-8095926 -) -(1,22034:24399941,22318166:8095926,459977,122846 -k1,22034:24399941,22318166:3277 -h1,22034:32492590,22318166:0,411205,112570 -) -k1,22035:32583029,22318166:0 -) -(1,22035:6764466,23183246:25818563,505283,122846 -(1,22034:6764466,23183246:0,459977,122846 -r1,22052:14508680,23183246:7744214,582823,122846 -k1,22034:6764466,23183246:-7744214 -) -(1,22034:6764466,23183246:7744214,459977,122846 -k1,22034:6764466,23183246:3277 -h1,22034:14505403,23183246:0,411205,112570 -) -g1,22034:14707909,23183246 -g1,22034:16098583,23183246 -(1,22034:16098583,23183246:0,459977,122846 -r1,22052:23491085,23183246:7392502,582823,122846 -k1,22034:16098583,23183246:-7392502 -) -(1,22034:16098583,23183246:7392502,459977,122846 -k1,22034:16098583,23183246:3277 -h1,22034:23487808,23183246:0,411205,112570 -) -k1,22035:32583029,23183246:9039516 -g1,22035:32583029,23183246 -) -] -g1,22035:32583029,23306092 -) -h1,22035:6630773,23306092:0,0,0 -(1,22041:6630773,26137252:25952256,32768,229376 -(1,22041:6630773,26137252:0,32768,229376 -(1,22041:6630773,26137252:5505024,32768,229376 -r1,22052:12135797,26137252:5505024,262144,229376 -) -k1,22041:6630773,26137252:-5505024 -) -(1,22041:6630773,26137252:25952256,32768,0 -r1,22052:32583029,26137252:25952256,32768,0 -) -) -(1,22041:6630773,27769104:25952256,606339,161218 -(1,22041:6630773,27769104:2464678,582746,14155 -g1,22041:6630773,27769104 -g1,22041:9095451,27769104 -) -g1,22041:12232529,27769104 -k1,22041:32583029,27769104:15495069 -g1,22041:32583029,27769104 -) -(1,22044:6630773,29027400:25952256,513147,126483 -k1,22043:8052716,29027400:246883 -k1,22043:9624738,29027400:246884 -k1,22043:10530913,29027400:246883 -k1,22043:14568399,29027400:246884 -k1,22043:15346779,29027400:246883 -k1,22043:16878169,29027400:246884 -k1,22043:18505240,29027400:246883 -k1,22043:19949466,29027400:246883 -k1,22043:21473647,29027400:246884 -k1,22043:24589696,29027400:246883 -k1,22043:26121086,29027400:246884 -k1,22043:27359529,29027400:246883 -k1,22043:28672684,29027400:246884 -k1,22043:31333913,29027400:246883 -k1,22044:32583029,29027400:0 -) -(1,22044:6630773,29892480:25952256,505283,134348 -k1,22043:8964529,29892480:213011 -k1,22043:12370454,29892480:213011 -k1,22043:16655217,29892480:213011 -k1,22043:17484266,29892480:213011 -(1,22043:17484266,29892480:0,452978,115847 -r1,22052:18897667,29892480:1413401,568825,115847 -k1,22043:17484266,29892480:-1413401 -) -(1,22043:17484266,29892480:1413401,452978,115847 -k1,22043:17484266,29892480:3277 -h1,22043:18894390,29892480:0,411205,112570 -) -k1,22043:19284348,29892480:213011 -k1,22043:21214403,29892480:213012 -k1,22043:22573639,29892480:213011 -k1,22043:25687273,29892480:213011 -k1,22043:27772648,29892480:213011 -k1,22043:29754476,29892480:213011 -k1,22043:30715253,29892480:213011 -k1,22043:32583029,29892480:0 -) -(1,22044:6630773,30757560:25952256,513147,134348 -k1,22043:11196667,30757560:143524 -k1,22043:12412359,30757560:143523 -k1,22043:14588154,30757560:143524 -k1,22043:15877903,30757560:143524 -k1,22043:17247605,30757560:143523 -k1,22043:20565693,30757560:143524 -k1,22043:21728302,30757560:143524 -k1,22043:24357606,30757560:143523 -k1,22043:25160422,30757560:143524 -k1,22043:29375698,30757560:143524 -k1,22043:30202106,30757560:143523 -k1,22043:31812326,30757560:143524 -k1,22043:32583029,30757560:0 -) -(1,22044:6630773,31622640:25952256,513147,126483 -k1,22043:8354501,31622640:173146 -k1,22043:9804944,31622640:173146 -k1,22043:10660975,31622640:173146 -k1,22043:12399777,31622640:173147 -k1,22043:13909857,31622640:173146 -k1,22043:16291566,31622640:173146 -k1,22043:20271698,31622640:173146 -k1,22043:22267400,31622640:173146 -k1,22043:23459631,31622640:173146 -k1,22043:25022140,31622640:173146 -k1,22043:26129829,31622640:173146 -k1,22043:26989138,31622640:173147 -k1,22043:27518144,31622640:173146 -k1,22043:29747810,31622640:173146 -k1,22043:31478747,31622640:173146 -k1,22043:32583029,31622640:0 -) -(1,22044:6630773,32487720:25952256,513147,126483 -k1,22043:7557351,32487720:178812 -k1,22043:9736978,32487720:178813 -k1,22043:13315798,32487720:178812 -k1,22043:14146038,32487720:178812 -k1,22043:15343936,32487720:178813 -k1,22043:18056370,32487720:178812 -k1,22043:19624545,32487720:178812 -k1,22043:23541531,32487720:178812 -k1,22043:25233570,32487720:178813 -k1,22043:26063810,32487720:178812 -k1,22043:27519919,32487720:178812 -k1,22043:28770901,32487720:178813 -k1,22043:29968798,32487720:178812 -k1,22043:32583029,32487720:0 -) -(1,22044:6630773,33352800:25952256,513147,126483 -k1,22043:8429343,33352800:192938 -k1,22043:10115191,33352800:192938 -k1,22043:12516692,33352800:192938 -k1,22043:16690287,33352800:192938 -k1,22043:20805554,33352800:192937 -k1,22043:21990052,33352800:192938 -k1,22043:24598647,33352800:192938 -k1,22043:26359206,33352800:192938 -k1,22043:27941507,33352800:192938 -k1,22043:30152299,33352800:192938 -k1,22044:32583029,33352800:0 -) -(1,22044:6630773,34217880:25952256,513147,134348 -k1,22043:8477826,34217880:249285 -k1,22043:9718671,34217880:249285 -k1,22043:11933381,34217880:249285 -k1,22043:12834094,34217880:249285 -k1,22043:13439239,34217880:249285 -k1,22043:15714242,34217880:249285 -k1,22043:17357478,34217880:249285 -k1,22043:20302258,34217880:249284 -(1,22043:20302258,34217880:0,452978,115847 -r1,22052:23825930,34217880:3523672,568825,115847 -k1,22043:20302258,34217880:-3523672 -) -(1,22043:20302258,34217880:3523672,452978,115847 -k1,22043:20302258,34217880:3277 -h1,22043:23822653,34217880:0,411205,112570 -) -k1,22043:24075215,34217880:249285 -k1,22043:25010662,34217880:249285 -k1,22043:26537244,34217880:249285 -k1,22043:28674621,34217880:249285 -k1,22043:30582622,34217880:249285 -k1,22043:31931601,34217880:249285 -k1,22044:32583029,34217880:0 -) -(1,22044:6630773,35082960:25952256,513147,126483 -(1,22043:6630773,35082960:0,452978,115847 -r1,22052:10154445,35082960:3523672,568825,115847 -k1,22043:6630773,35082960:-3523672 -) -(1,22043:6630773,35082960:3523672,452978,115847 -k1,22043:6630773,35082960:3277 -h1,22043:10151168,35082960:0,411205,112570 -) -k1,22043:10321282,35082960:166837 -k1,22043:12747800,35082960:166837 -k1,22043:13270497,35082960:166837 -k1,22043:14720529,35082960:166837 -k1,22043:16825921,35082960:166837 -k1,22043:17821788,35082960:166837 -k1,22043:20345955,35082960:166837 -k1,22043:21531877,35082960:166837 -k1,22043:24873278,35082960:166837 -k1,22043:27879135,35082960:166837 -k1,22043:28705264,35082960:166837 -k1,22044:32583029,35082960:0 -) -(1,22044:6630773,35948040:25952256,513147,122846 -(1,22043:6630773,35948040:0,452978,115847 -r1,22052:10154445,35948040:3523672,568825,115847 -k1,22043:6630773,35948040:-3523672 -) -(1,22043:6630773,35948040:3523672,452978,115847 -k1,22043:6630773,35948040:3277 -h1,22043:10151168,35948040:0,411205,112570 -) -k1,22043:10375189,35948040:220744 -k1,22043:12088842,35948040:220743 -k1,22043:13375857,35948040:220744 -k1,22043:15721277,35948040:220743 -k1,22043:16961106,35948040:220744 -k1,22043:19447430,35948040:220744 -(1,22043:19447430,35948040:0,452978,115847 -r1,22052:20860831,35948040:1413401,568825,115847 -k1,22043:19447430,35948040:-1413401 -) -(1,22043:19447430,35948040:1413401,452978,115847 -k1,22043:19447430,35948040:3277 -h1,22043:20857554,35948040:0,411205,112570 -) -k1,22043:21081574,35948040:220743 -k1,22043:21985203,35948040:220744 -(1,22043:21985203,35948040:0,452978,122846 -r1,22052:24453740,35948040:2468537,575824,122846 -k1,22043:21985203,35948040:-2468537 -) -(1,22043:21985203,35948040:2468537,452978,122846 -k1,22043:21985203,35948040:3277 -h1,22043:24450463,35948040:0,411205,112570 -) -k1,22043:24674483,35948040:220743 -k1,22043:25554519,35948040:220744 -k1,22043:28616903,35948040:220743 -k1,22043:29489075,35948040:220744 -k1,22043:32583029,35948040:0 -) -(1,22044:6630773,36813120:25952256,513147,134348 -k1,22043:10749993,36813120:221138 -k1,22043:14276111,36813120:221137 -k1,22043:16212982,36813120:221138 -k1,22043:17526604,36813120:221137 -k1,22043:18414898,36813120:221138 -(1,22043:18414898,36813120:0,452978,115847 -r1,22052:20531723,36813120:2116825,568825,115847 -k1,22043:18414898,36813120:-2116825 -) -(1,22043:18414898,36813120:2116825,452978,115847 -k1,22043:18414898,36813120:3277 -h1,22043:20528446,36813120:0,411205,112570 -) -k1,22043:20752860,36813120:221137 -k1,22043:21656883,36813120:221138 -(1,22043:21656883,36813120:0,452978,115847 -r1,22052:24125420,36813120:2468537,568825,115847 -k1,22043:21656883,36813120:-2468537 -) -(1,22043:21656883,36813120:2468537,452978,115847 -k1,22043:21656883,36813120:3277 -h1,22043:24122143,36813120:0,411205,112570 -) -k1,22043:24346557,36813120:221137 -k1,22043:28007680,36813120:221138 -k1,22043:29622768,36813120:221137 -k1,22043:32583029,36813120:0 -) -(1,22044:6630773,37678200:25952256,513147,134348 -k1,22043:9011595,37678200:184711 -k1,22043:9882467,37678200:184710 -k1,22043:11630212,37678200:184711 -k1,22043:14458644,37678200:184710 -k1,22043:15294783,37678200:184711 -k1,22043:16227260,37678200:184711 -k1,22043:18575313,37678200:184710 -k1,22043:19446186,37678200:184711 -k1,22043:23574854,37678200:184711 -k1,22043:24387399,37678200:184710 -k1,22043:27411785,37678200:184711 -k1,22043:28544146,37678200:184710 -k1,22043:31563944,37678200:184711 -k1,22044:32583029,37678200:0 -) -(1,22044:6630773,38543280:25952256,505283,134348 -(1,22043:6630773,38543280:0,452978,122846 -r1,22052:9802733,38543280:3171960,575824,122846 -k1,22043:6630773,38543280:-3171960 -) -(1,22043:6630773,38543280:3171960,452978,122846 -k1,22043:6630773,38543280:3277 -h1,22043:9799456,38543280:0,411205,112570 -) -g1,22043:10001962,38543280 -g1,22043:13190943,38543280 -g1,22043:14494454,38543280 -g1,22043:15441449,38543280 -g1,22043:17153904,38543280 -g1,22043:18004561,38543280 -g1,22043:19401133,38543280 -k1,22044:32583029,38543280:10951051 -g1,22044:32583029,38543280 -) -v1,22046:6630773,39408360:0,393216,0 -(1,22047:6630773,43364205:25952256,4349061,0 -g1,22047:6630773,43364205 -g1,22047:6237557,43364205 -r1,22052:6368629,43364205:131072,4349061,0 -g1,22047:6567858,43364205 -g1,22047:6764466,43364205 -[1,22047:6764466,43364205:25818563,4349061,0 -(1,22047:6764466,39769537:25818563,754393,260573 -(1,22046:6764466,39769537:0,754393,260573 -r1,22052:7856192,39769537:1091726,1014966,260573 -k1,22046:6764466,39769537:-1091726 -) -(1,22046:6764466,39769537:1091726,754393,260573 -) -k1,22046:8062584,39769537:206392 -k1,22046:8390264,39769537:327680 -k1,22046:10371372,39769537:206393 -k1,22046:12465856,39769537:206392 -k1,22046:14637673,39769537:206392 -k1,22046:15495494,39769537:206393 -k1,22046:16057746,39769537:206392 -k1,22046:17541435,39769537:206392 -k1,22046:19483221,39769537:206393 -k1,22046:23129598,39769537:206392 -k1,22046:24527435,39769537:206392 -k1,22046:27416217,39769537:206393 -k1,22046:29947171,39769537:206392 -k1,22046:32583029,39769537:0 -) -(1,22047:6764466,40634617:25818563,513147,134348 -k1,22046:8868352,40634617:215794 -k1,22046:11049571,40634617:215794 -k1,22046:12659316,40634617:215794 -(1,22046:12659316,40634617:0,452978,115847 -r1,22052:16182988,40634617:3523672,568825,115847 -k1,22046:12659316,40634617:-3523672 -) -(1,22046:12659316,40634617:3523672,452978,115847 -k1,22046:12659316,40634617:3277 -h1,22046:16179711,40634617:0,411205,112570 -) -k1,22046:16398782,40634617:215794 -k1,22046:17606136,40634617:215794 -k1,22046:20999114,40634617:215793 -k1,22046:24706011,40634617:215794 -k1,22046:25537843,40634617:215794 -k1,22046:26519753,40634617:215794 -k1,22046:28809761,40634617:215794 -k1,22046:29684847,40634617:215794 -k1,22046:30256501,40634617:215794 -k1,22046:32583029,40634617:0 -) -(1,22047:6764466,41499697:25818563,505283,126483 -k1,22046:8376488,41499697:161055 -k1,22046:9734229,41499697:161054 -k1,22046:12026515,41499697:161055 -k1,22046:12719066,41499697:161054 -k1,22046:14164627,41499697:161055 -k1,22046:17785982,41499697:161054 -k1,22046:19835129,41499697:161055 -k1,22046:22044184,41499697:161055 -k1,22046:25269702,41499697:161054 -k1,22046:26806358,41499697:161055 -k1,22046:27653574,41499697:161054 -k1,22046:30572384,41499697:161055 -k1,22046:32583029,41499697:0 -) -(1,22047:6764466,42364777:25818563,513147,134348 -k1,22046:8843564,42364777:219841 -k1,22046:10054965,42364777:219841 -k1,22046:11293891,42364777:219841 -k1,22046:13167204,42364777:219840 -k1,22046:14334696,42364777:219841 -k1,22046:16255852,42364777:219841 -k1,22046:18219606,42364777:219841 -k1,22046:19125609,42364777:219841 -k1,22046:20154820,42364777:219841 -k1,22046:23257590,42364777:219841 -k1,22046:24008927,42364777:219840 -k1,22046:26858728,42364777:219841 -k1,22046:29538791,42364777:219841 -k1,22046:30114492,42364777:219841 -(1,22046:30114492,42364777:0,452978,122846 -r1,22052:32583029,42364777:2468537,575824,122846 -k1,22046:30114492,42364777:-2468537 -) -(1,22046:30114492,42364777:2468537,452978,122846 -k1,22046:30114492,42364777:3277 -h1,22046:32579752,42364777:0,411205,112570 -) -k1,22046:32583029,42364777:0 -) -(1,22047:6764466,43229857:25818563,505283,134348 -g1,22046:7615123,43229857 -(1,22046:7615123,43229857:0,452978,115847 -r1,22052:9028524,43229857:1413401,568825,115847 -k1,22046:7615123,43229857:-1413401 -) -(1,22046:7615123,43229857:1413401,452978,115847 -k1,22046:7615123,43229857:3277 -h1,22046:9025247,43229857:0,411205,112570 -) -g1,22046:9401423,43229857 -g1,22046:13623252,43229857 -g1,22046:15557874,43229857 -g1,22046:17040298,43229857 -g1,22046:20747014,43229857 -g1,22046:21937803,43229857 -g1,22046:24987848,43229857 -g1,22046:25948605,43229857 -g1,22046:28727986,43229857 -k1,22047:32583029,43229857:1812943 -g1,22047:32583029,43229857 -) -] -g1,22047:32583029,43364205 -) -h1,22047:6630773,43364205:0,0,0 -(1,22050:6630773,44229285:25952256,513147,134348 -h1,22049:6630773,44229285:983040,0,0 -k1,22049:10637257,44229285:233576 -(1,22049:10637257,44229285:0,452978,115847 -r1,22052:14160929,44229285:3523672,568825,115847 -k1,22049:10637257,44229285:-3523672 -) -(1,22049:10637257,44229285:3523672,452978,115847 -k1,22049:10637257,44229285:3277 -h1,22049:14157652,44229285:0,411205,112570 -) -k1,22049:14394504,44229285:233575 -k1,22049:16311045,44229285:233576 -k1,22049:17563705,44229285:233575 -k1,22049:19535296,44229285:233576 -k1,22049:20428163,44229285:233575 -k1,22049:21017599,44229285:233576 -k1,22049:24240926,44229285:233575 -k1,22049:25160664,44229285:233576 -k1,22049:26182637,44229285:233575 -k1,22049:29662211,44229285:233576 -k1,22049:30511824,44229285:233575 -k1,22049:31764485,44229285:233576 -k1,22050:32583029,44229285:0 -) -(1,22050:6630773,45094365:25952256,505283,134348 -k1,22049:8848328,45094365:268514 -k1,22049:11158943,45094365:268513 -(1,22049:11158943,45094365:0,452978,115847 -r1,22052:13275768,45094365:2116825,568825,115847 -k1,22049:11158943,45094365:-2116825 -) -(1,22049:11158943,45094365:2116825,452978,115847 -k1,22049:11158943,45094365:3277 -h1,22049:13272491,45094365:0,411205,112570 -) -k1,22049:13717952,45094365:268514 -k1,22049:16776333,45094365:268513 -(1,22049:16776333,45094365:0,452978,115847 -r1,22052:18541446,45094365:1765113,568825,115847 -k1,22049:16776333,45094365:-1765113 -) -(1,22049:16776333,45094365:1765113,452978,115847 -k1,22049:16776333,45094365:3277 -h1,22049:18538169,45094365:0,411205,112570 -) -k1,22049:18809960,45094365:268514 -k1,22049:19609970,45094365:268513 -k1,22049:20944755,45094365:268514 -k1,22049:22900165,45094365:268513 -k1,22049:23854841,45094365:268514 -k1,22049:25498955,45094365:268513 -k1,22049:28905333,45094365:268514 -k1,22049:29825274,45094365:268513 -k1,22049:32583029,45094365:0 -) -] -(1,22052:32583029,45706769:0,0,0 -g1,22052:32583029,45706769 -) -) -] -(1,22052:6630773,47279633:25952256,0,0 -h1,22052:6630773,47279633:25952256,0,0 -) -] -(1,22052:4262630,4025873:0,0,0 -[1,22052:-473656,4025873:0,0,0 -(1,22052:-473656,-710413:0,0,0 -(1,22052:-473656,-710413:0,0,0 -g1,22052:-473656,-710413 -) -g1,22052:-473656,-710413 +g1,22016:28691027,14682403 +) +) +) +g1,22017:28690151,14682403 +k1,22017:32583029,14682403:3892878 +) +v1,22024:6630773,15547483:0,393216,0 +(1,22027:6630773,18549548:25952256,3395281,0 +g1,22027:6630773,18549548 +g1,22027:6237557,18549548 +r1,22050:6368629,18549548:131072,3395281,0 +g1,22027:6567858,18549548 +g1,22027:6764466,18549548 +[1,22027:6764466,18549548:25818563,3395281,0 +(1,22025:6764466,15819960:25818563,665693,196608 +(1,22024:6764466,15819960:0,665693,196608 +r1,22050:7868133,15819960:1103667,862301,196608 +k1,22024:6764466,15819960:-1103667 +) +(1,22024:6764466,15819960:1103667,665693,196608 +) +k1,22024:8052099,15819960:183966 +k1,22024:9778317,15819960:327680 +k1,22024:11383104,15819960:183966 +k1,22024:13059980,15819960:183966 +k1,22024:14263030,15819960:183965 +k1,22024:15724293,15819960:183966 +k1,22024:17468671,15819960:183966 +k1,22024:18118598,15819960:183966 +k1,22024:19321649,15819960:183966 +k1,22024:21965837,15819960:183966 +k1,22024:23722012,15819960:183966 +k1,22024:24437474,15819960:183965 +k1,22024:26966974,15819960:183966 +k1,22024:28718561,15819960:183966 +k1,22024:29921612,15819960:183966 +k1,22024:32583029,15819960:0 +) +(1,22025:6764466,16685040:25818563,505283,126483 +g1,22024:9146044,16685040 +g1,22024:10595045,16685040 +g1,22024:11985719,16685040 +g1,22024:14151683,16685040 +g1,22024:15369997,16685040 +g1,22024:18230643,16685040 +k1,22025:32583029,16685040:12803771 +g1,22025:32583029,16685040 +) +(1,22027:6764466,17550120:25818563,505283,134348 +h1,22026:6764466,17550120:983040,0,0 +k1,22026:9679457,17550120:157236 +k1,22026:11572086,17550120:157236 +k1,22026:12748407,17550120:157236 +k1,22026:15365864,17550120:157235 +k1,22026:17268979,17550120:157236 +k1,22026:18756596,17550120:157236 +k1,22026:20870082,17550120:157236 +k1,22026:22197791,17550120:157236 +k1,22026:23885293,17550120:157236 +k1,22026:24693956,17550120:157235 +k1,22026:27091868,17550120:157236 +k1,22026:28268189,17550120:157236 +k1,22026:29921612,17550120:157236 +k1,22026:32583029,17550120:0 +) +(1,22027:6764466,18415200:25818563,505283,134348 +g1,22026:8992690,18415200 +g1,22026:9843347,18415200 +g1,22026:12662705,18415200 +g1,22026:13217794,18415200 +g1,22026:14694320,18415200 +g1,22026:16287500,18415200 +g1,22026:18258823,18415200 +g1,22026:19649497,18415200 +g1,22026:21945878,18415200 +k1,22027:32583029,18415200:8324385 +g1,22027:32583029,18415200 +) +] +g1,22027:32583029,18549548 +) +h1,22027:6630773,18549548:0,0,0 +v1,22031:6630773,19414628:0,393216,0 +(1,22033:6630773,23306092:25952256,4284680,0 +g1,22033:6630773,23306092 +g1,22033:6237557,23306092 +r1,22050:6368629,23306092:131072,4284680,0 +g1,22033:6567858,23306092 +g1,22033:6764466,23306092 +[1,22033:6764466,23306092:25818563,4284680,0 +(1,22033:6764466,19722926:25818563,701514,196608 +(1,22031:6764466,19722926:0,701514,196608 +r1,22050:7761522,19722926:997056,898122,196608 +k1,22031:6764466,19722926:-997056 +) +(1,22031:6764466,19722926:997056,701514,196608 +) +k1,22031:7937356,19722926:175834 +k1,22031:8265036,19722926:327680 +k1,22031:8265036,19722926:0 +k1,22032:8265036,19722926:0 +k1,22032:9637557,19722926:175834 +(1,22032:9637557,19722926:0,452978,115847 +r1,22050:11754382,19722926:2116825,568825,115847 +k1,22032:9637557,19722926:-2116825 +) +(1,22032:9637557,19722926:2116825,452978,115847 +k1,22032:9637557,19722926:3277 +h1,22032:11751105,19722926:0,411205,112570 +) +k1,22032:11930216,19722926:175834 +k1,22032:13297495,19722926:175834 +(1,22032:13297495,19722926:0,459977,115847 +r1,22050:14710896,19722926:1413401,575824,115847 +k1,22032:13297495,19722926:-1413401 +) +(1,22032:13297495,19722926:1413401,459977,115847 +k1,22032:13297495,19722926:3277 +h1,22032:14707619,19722926:0,411205,112570 +) +k1,22032:14886730,19722926:175834 +k1,22032:16965074,19722926:175834 +k1,22032:18654134,19722926:175834 +k1,22032:19591496,19722926:175834 +k1,22032:22032910,19722926:175834 +k1,22032:22970272,19722926:175834 +k1,22032:26653593,19722926:175834 +k1,22032:29211005,19722926:175834 +k1,22032:30002877,19722926:175834 +k1,22032:32583029,19722926:0 +) +(1,22033:6764466,20588006:25818563,505283,134348 +k1,22032:10048699,20588006:507473 +k1,22032:11660453,20588006:507472 +k1,22032:12915691,20588006:507472 +k1,22032:16084581,20588006:507473 +k1,22032:19150580,20588006:507473 +k1,22032:20072586,20588006:507163 +k1,22032:22993094,20588006:507472 +(1,22032:22993094,20588006:0,452978,122846 +r1,22050:32495867,20588006:9502773,575824,122846 +k1,22032:22993094,20588006:-9502773 +) +(1,22032:22993094,20588006:9502773,452978,122846 +k1,22032:22993094,20588006:3277 +h1,22032:32492590,20588006:0,411205,112570 +) +k1,22033:32583029,20588006:0 +) +(1,22033:6764466,21453086:25818563,452978,122846 +(1,22032:6764466,21453086:0,452978,122846 +r1,22050:15563815,21453086:8799349,575824,122846 +k1,22032:6764466,21453086:-8799349 +) +(1,22032:6764466,21453086:8799349,452978,122846 +k1,22032:6764466,21453086:3277 +h1,22032:15560538,21453086:0,411205,112570 +) +k1,22032:24048231,21453086:8310746 +(1,22032:24048231,21453086:0,452978,122846 +r1,22050:32495868,21453086:8447637,575824,122846 +k1,22032:24048231,21453086:-8447637 +) +(1,22032:24048231,21453086:8447637,452978,122846 +k1,22032:24048231,21453086:3277 +h1,22032:32492591,21453086:0,411205,112570 +) +k1,22033:32583030,21453086:0 +) +(1,22033:6764466,22318166:25818563,459977,122846 +(1,22032:6764466,22318166:0,452978,122846 +r1,22050:14860392,22318166:8095926,575824,122846 +k1,22032:6764466,22318166:-8095926 +) +(1,22032:6764466,22318166:8095926,452978,122846 +k1,22032:6764466,22318166:3277 +h1,22032:14857115,22318166:0,411205,112570 +) +k1,22032:15230492,22318166:196430 +(1,22032:15230492,22318166:0,459977,122846 +r1,22050:24029841,22318166:8799349,582823,122846 +k1,22032:15230492,22318166:-8799349 +) +(1,22032:15230492,22318166:8799349,459977,122846 +k1,22032:15230492,22318166:3277 +h1,22032:24026564,22318166:0,411205,112570 +) +k1,22032:24399941,22318166:196430 +(1,22032:24399941,22318166:0,459977,122846 +r1,22050:32495867,22318166:8095926,582823,122846 +k1,22032:24399941,22318166:-8095926 +) +(1,22032:24399941,22318166:8095926,459977,122846 +k1,22032:24399941,22318166:3277 +h1,22032:32492590,22318166:0,411205,112570 +) +k1,22033:32583029,22318166:0 +) +(1,22033:6764466,23183246:25818563,505283,122846 +(1,22032:6764466,23183246:0,459977,122846 +r1,22050:14508680,23183246:7744214,582823,122846 +k1,22032:6764466,23183246:-7744214 +) +(1,22032:6764466,23183246:7744214,459977,122846 +k1,22032:6764466,23183246:3277 +h1,22032:14505403,23183246:0,411205,112570 +) +g1,22032:14707909,23183246 +g1,22032:16098583,23183246 +(1,22032:16098583,23183246:0,459977,122846 +r1,22050:23491085,23183246:7392502,582823,122846 +k1,22032:16098583,23183246:-7392502 +) +(1,22032:16098583,23183246:7392502,459977,122846 +k1,22032:16098583,23183246:3277 +h1,22032:23487808,23183246:0,411205,112570 +) +k1,22033:32583029,23183246:9039516 +g1,22033:32583029,23183246 +) +] +g1,22033:32583029,23306092 +) +h1,22033:6630773,23306092:0,0,0 +(1,22039:6630773,26137252:25952256,32768,229376 +(1,22039:6630773,26137252:0,32768,229376 +(1,22039:6630773,26137252:5505024,32768,229376 +r1,22050:12135797,26137252:5505024,262144,229376 +) +k1,22039:6630773,26137252:-5505024 +) +(1,22039:6630773,26137252:25952256,32768,0 +r1,22050:32583029,26137252:25952256,32768,0 +) +) +(1,22039:6630773,27769104:25952256,606339,161218 +(1,22039:6630773,27769104:2464678,582746,14155 +g1,22039:6630773,27769104 +g1,22039:9095451,27769104 +) +g1,22039:12232529,27769104 +k1,22039:32583029,27769104:15495069 +g1,22039:32583029,27769104 +) +(1,22042:6630773,29027400:25952256,513147,126483 +k1,22041:8052716,29027400:246883 +k1,22041:9624738,29027400:246884 +k1,22041:10530913,29027400:246883 +k1,22041:14568399,29027400:246884 +k1,22041:15346779,29027400:246883 +k1,22041:16878169,29027400:246884 +k1,22041:18505240,29027400:246883 +k1,22041:19949466,29027400:246883 +k1,22041:21473647,29027400:246884 +k1,22041:24589696,29027400:246883 +k1,22041:26121086,29027400:246884 +k1,22041:27359529,29027400:246883 +k1,22041:28672684,29027400:246884 +k1,22041:31333913,29027400:246883 +k1,22042:32583029,29027400:0 +) +(1,22042:6630773,29892480:25952256,505283,134348 +k1,22041:8964529,29892480:213011 +k1,22041:12370454,29892480:213011 +k1,22041:16655217,29892480:213011 +k1,22041:17484266,29892480:213011 +(1,22041:17484266,29892480:0,452978,115847 +r1,22050:18897667,29892480:1413401,568825,115847 +k1,22041:17484266,29892480:-1413401 +) +(1,22041:17484266,29892480:1413401,452978,115847 +k1,22041:17484266,29892480:3277 +h1,22041:18894390,29892480:0,411205,112570 +) +k1,22041:19284348,29892480:213011 +k1,22041:21214403,29892480:213012 +k1,22041:22573639,29892480:213011 +k1,22041:25687273,29892480:213011 +k1,22041:27772648,29892480:213011 +k1,22041:29754476,29892480:213011 +k1,22041:30715253,29892480:213011 +k1,22041:32583029,29892480:0 +) +(1,22042:6630773,30757560:25952256,513147,134348 +k1,22041:11196667,30757560:143524 +k1,22041:12412359,30757560:143523 +k1,22041:14588154,30757560:143524 +k1,22041:15877903,30757560:143524 +k1,22041:17247605,30757560:143523 +k1,22041:20565693,30757560:143524 +k1,22041:21728302,30757560:143524 +k1,22041:24357606,30757560:143523 +k1,22041:25160422,30757560:143524 +k1,22041:29375698,30757560:143524 +k1,22041:30202106,30757560:143523 +k1,22041:31812326,30757560:143524 +k1,22041:32583029,30757560:0 +) +(1,22042:6630773,31622640:25952256,513147,126483 +k1,22041:8354501,31622640:173146 +k1,22041:9804944,31622640:173146 +k1,22041:10660975,31622640:173146 +k1,22041:12399777,31622640:173147 +k1,22041:13909857,31622640:173146 +k1,22041:16291566,31622640:173146 +k1,22041:20271698,31622640:173146 +k1,22041:22267400,31622640:173146 +k1,22041:23459631,31622640:173146 +k1,22041:25022140,31622640:173146 +k1,22041:26129829,31622640:173146 +k1,22041:26989138,31622640:173147 +k1,22041:27518144,31622640:173146 +k1,22041:29747810,31622640:173146 +k1,22041:31478747,31622640:173146 +k1,22041:32583029,31622640:0 +) +(1,22042:6630773,32487720:25952256,513147,126483 +k1,22041:7557351,32487720:178812 +k1,22041:9736978,32487720:178813 +k1,22041:13315798,32487720:178812 +k1,22041:14146038,32487720:178812 +k1,22041:15343936,32487720:178813 +k1,22041:18056370,32487720:178812 +k1,22041:19624545,32487720:178812 +k1,22041:23541531,32487720:178812 +k1,22041:25233570,32487720:178813 +k1,22041:26063810,32487720:178812 +k1,22041:27519919,32487720:178812 +k1,22041:28770901,32487720:178813 +k1,22041:29968798,32487720:178812 +k1,22041:32583029,32487720:0 +) +(1,22042:6630773,33352800:25952256,513147,126483 +k1,22041:8429343,33352800:192938 +k1,22041:10115191,33352800:192938 +k1,22041:12516692,33352800:192938 +k1,22041:16690287,33352800:192938 +k1,22041:20805554,33352800:192937 +k1,22041:21990052,33352800:192938 +k1,22041:24598647,33352800:192938 +k1,22041:26359206,33352800:192938 +k1,22041:27941507,33352800:192938 +k1,22041:30152299,33352800:192938 +k1,22042:32583029,33352800:0 +) +(1,22042:6630773,34217880:25952256,513147,134348 +k1,22041:8477826,34217880:249285 +k1,22041:9718671,34217880:249285 +k1,22041:11933381,34217880:249285 +k1,22041:12834094,34217880:249285 +k1,22041:13439239,34217880:249285 +k1,22041:15714242,34217880:249285 +k1,22041:17357478,34217880:249285 +k1,22041:20302258,34217880:249284 +(1,22041:20302258,34217880:0,452978,115847 +r1,22050:23825930,34217880:3523672,568825,115847 +k1,22041:20302258,34217880:-3523672 +) +(1,22041:20302258,34217880:3523672,452978,115847 +k1,22041:20302258,34217880:3277 +h1,22041:23822653,34217880:0,411205,112570 +) +k1,22041:24075215,34217880:249285 +k1,22041:25010662,34217880:249285 +k1,22041:26537244,34217880:249285 +k1,22041:28674621,34217880:249285 +k1,22041:30582622,34217880:249285 +k1,22041:31931601,34217880:249285 +k1,22042:32583029,34217880:0 +) +(1,22042:6630773,35082960:25952256,513147,126483 +(1,22041:6630773,35082960:0,452978,115847 +r1,22050:10154445,35082960:3523672,568825,115847 +k1,22041:6630773,35082960:-3523672 +) +(1,22041:6630773,35082960:3523672,452978,115847 +k1,22041:6630773,35082960:3277 +h1,22041:10151168,35082960:0,411205,112570 +) +k1,22041:10321282,35082960:166837 +k1,22041:12747800,35082960:166837 +k1,22041:13270497,35082960:166837 +k1,22041:14720529,35082960:166837 +k1,22041:16825921,35082960:166837 +k1,22041:17821788,35082960:166837 +k1,22041:20345955,35082960:166837 +k1,22041:21531877,35082960:166837 +k1,22041:24873278,35082960:166837 +k1,22041:27879135,35082960:166837 +k1,22041:28705264,35082960:166837 +k1,22042:32583029,35082960:0 +) +(1,22042:6630773,35948040:25952256,513147,122846 +(1,22041:6630773,35948040:0,452978,115847 +r1,22050:10154445,35948040:3523672,568825,115847 +k1,22041:6630773,35948040:-3523672 +) +(1,22041:6630773,35948040:3523672,452978,115847 +k1,22041:6630773,35948040:3277 +h1,22041:10151168,35948040:0,411205,112570 +) +k1,22041:10375189,35948040:220744 +k1,22041:12088842,35948040:220743 +k1,22041:13375857,35948040:220744 +k1,22041:15721277,35948040:220743 +k1,22041:16961106,35948040:220744 +k1,22041:19447430,35948040:220744 +(1,22041:19447430,35948040:0,452978,115847 +r1,22050:20860831,35948040:1413401,568825,115847 +k1,22041:19447430,35948040:-1413401 +) +(1,22041:19447430,35948040:1413401,452978,115847 +k1,22041:19447430,35948040:3277 +h1,22041:20857554,35948040:0,411205,112570 +) +k1,22041:21081574,35948040:220743 +k1,22041:21985203,35948040:220744 +(1,22041:21985203,35948040:0,452978,122846 +r1,22050:24453740,35948040:2468537,575824,122846 +k1,22041:21985203,35948040:-2468537 +) +(1,22041:21985203,35948040:2468537,452978,122846 +k1,22041:21985203,35948040:3277 +h1,22041:24450463,35948040:0,411205,112570 +) +k1,22041:24674483,35948040:220743 +k1,22041:25554519,35948040:220744 +k1,22041:28616903,35948040:220743 +k1,22041:29489075,35948040:220744 +k1,22041:32583029,35948040:0 +) +(1,22042:6630773,36813120:25952256,513147,134348 +k1,22041:10749993,36813120:221138 +k1,22041:14276111,36813120:221137 +k1,22041:16212982,36813120:221138 +k1,22041:17526604,36813120:221137 +k1,22041:18414898,36813120:221138 +(1,22041:18414898,36813120:0,452978,115847 +r1,22050:20531723,36813120:2116825,568825,115847 +k1,22041:18414898,36813120:-2116825 +) +(1,22041:18414898,36813120:2116825,452978,115847 +k1,22041:18414898,36813120:3277 +h1,22041:20528446,36813120:0,411205,112570 +) +k1,22041:20752860,36813120:221137 +k1,22041:21656883,36813120:221138 +(1,22041:21656883,36813120:0,452978,115847 +r1,22050:24125420,36813120:2468537,568825,115847 +k1,22041:21656883,36813120:-2468537 +) +(1,22041:21656883,36813120:2468537,452978,115847 +k1,22041:21656883,36813120:3277 +h1,22041:24122143,36813120:0,411205,112570 +) +k1,22041:24346557,36813120:221137 +k1,22041:28007680,36813120:221138 +k1,22041:29622768,36813120:221137 +k1,22041:32583029,36813120:0 +) +(1,22042:6630773,37678200:25952256,513147,134348 +k1,22041:9011595,37678200:184711 +k1,22041:9882467,37678200:184710 +k1,22041:11630212,37678200:184711 +k1,22041:14458644,37678200:184710 +k1,22041:15294783,37678200:184711 +k1,22041:16227260,37678200:184711 +k1,22041:18575313,37678200:184710 +k1,22041:19446186,37678200:184711 +k1,22041:23574854,37678200:184711 +k1,22041:24387399,37678200:184710 +k1,22041:27411785,37678200:184711 +k1,22041:28544146,37678200:184710 +k1,22041:31563944,37678200:184711 +k1,22042:32583029,37678200:0 +) +(1,22042:6630773,38543280:25952256,505283,134348 +(1,22041:6630773,38543280:0,452978,122846 +r1,22050:9802733,38543280:3171960,575824,122846 +k1,22041:6630773,38543280:-3171960 +) +(1,22041:6630773,38543280:3171960,452978,122846 +k1,22041:6630773,38543280:3277 +h1,22041:9799456,38543280:0,411205,112570 +) +g1,22041:10001962,38543280 +g1,22041:13190943,38543280 +g1,22041:14494454,38543280 +g1,22041:15441449,38543280 +g1,22041:17153904,38543280 +g1,22041:18004561,38543280 +g1,22041:19401133,38543280 +k1,22042:32583029,38543280:10951051 +g1,22042:32583029,38543280 +) +v1,22044:6630773,39408360:0,393216,0 +(1,22045:6630773,43364205:25952256,4349061,0 +g1,22045:6630773,43364205 +g1,22045:6237557,43364205 +r1,22050:6368629,43364205:131072,4349061,0 +g1,22045:6567858,43364205 +g1,22045:6764466,43364205 +[1,22045:6764466,43364205:25818563,4349061,0 +(1,22045:6764466,39769537:25818563,754393,260573 +(1,22044:6764466,39769537:0,754393,260573 +r1,22050:7856192,39769537:1091726,1014966,260573 +k1,22044:6764466,39769537:-1091726 +) +(1,22044:6764466,39769537:1091726,754393,260573 +) +k1,22044:8062584,39769537:206392 +k1,22044:8390264,39769537:327680 +k1,22044:10371372,39769537:206393 +k1,22044:12465856,39769537:206392 +k1,22044:14637673,39769537:206392 +k1,22044:15495494,39769537:206393 +k1,22044:16057746,39769537:206392 +k1,22044:17541435,39769537:206392 +k1,22044:19483221,39769537:206393 +k1,22044:23129598,39769537:206392 +k1,22044:24527435,39769537:206392 +k1,22044:27416217,39769537:206393 +k1,22044:29947171,39769537:206392 +k1,22044:32583029,39769537:0 +) +(1,22045:6764466,40634617:25818563,513147,134348 +k1,22044:8868352,40634617:215794 +k1,22044:11049571,40634617:215794 +k1,22044:12659316,40634617:215794 +(1,22044:12659316,40634617:0,452978,115847 +r1,22050:16182988,40634617:3523672,568825,115847 +k1,22044:12659316,40634617:-3523672 +) +(1,22044:12659316,40634617:3523672,452978,115847 +k1,22044:12659316,40634617:3277 +h1,22044:16179711,40634617:0,411205,112570 +) +k1,22044:16398782,40634617:215794 +k1,22044:17606136,40634617:215794 +k1,22044:20999114,40634617:215793 +k1,22044:24706011,40634617:215794 +k1,22044:25537843,40634617:215794 +k1,22044:26519753,40634617:215794 +k1,22044:28809761,40634617:215794 +k1,22044:29684847,40634617:215794 +k1,22044:30256501,40634617:215794 +k1,22044:32583029,40634617:0 +) +(1,22045:6764466,41499697:25818563,505283,126483 +k1,22044:8376488,41499697:161055 +k1,22044:9734229,41499697:161054 +k1,22044:12026515,41499697:161055 +k1,22044:12719066,41499697:161054 +k1,22044:14164627,41499697:161055 +k1,22044:17785982,41499697:161054 +k1,22044:19835129,41499697:161055 +k1,22044:22044184,41499697:161055 +k1,22044:25269702,41499697:161054 +k1,22044:26806358,41499697:161055 +k1,22044:27653574,41499697:161054 +k1,22044:30572384,41499697:161055 +k1,22044:32583029,41499697:0 +) +(1,22045:6764466,42364777:25818563,513147,134348 +k1,22044:8843564,42364777:219841 +k1,22044:10054965,42364777:219841 +k1,22044:11293891,42364777:219841 +k1,22044:13167204,42364777:219840 +k1,22044:14334696,42364777:219841 +k1,22044:16255852,42364777:219841 +k1,22044:18219606,42364777:219841 +k1,22044:19125609,42364777:219841 +k1,22044:20154820,42364777:219841 +k1,22044:23257590,42364777:219841 +k1,22044:24008927,42364777:219840 +k1,22044:26858728,42364777:219841 +k1,22044:29538791,42364777:219841 +k1,22044:30114492,42364777:219841 +(1,22044:30114492,42364777:0,452978,122846 +r1,22050:32583029,42364777:2468537,575824,122846 +k1,22044:30114492,42364777:-2468537 +) +(1,22044:30114492,42364777:2468537,452978,122846 +k1,22044:30114492,42364777:3277 +h1,22044:32579752,42364777:0,411205,112570 +) +k1,22044:32583029,42364777:0 +) +(1,22045:6764466,43229857:25818563,505283,134348 +g1,22044:7615123,43229857 +(1,22044:7615123,43229857:0,452978,115847 +r1,22050:9028524,43229857:1413401,568825,115847 +k1,22044:7615123,43229857:-1413401 +) +(1,22044:7615123,43229857:1413401,452978,115847 +k1,22044:7615123,43229857:3277 +h1,22044:9025247,43229857:0,411205,112570 +) +g1,22044:9401423,43229857 +g1,22044:13623252,43229857 +g1,22044:15557874,43229857 +g1,22044:17040298,43229857 +g1,22044:20747014,43229857 +g1,22044:21937803,43229857 +g1,22044:24987848,43229857 +g1,22044:25948605,43229857 +g1,22044:28727986,43229857 +k1,22045:32583029,43229857:1812943 +g1,22045:32583029,43229857 +) +] +g1,22045:32583029,43364205 +) +h1,22045:6630773,43364205:0,0,0 +(1,22048:6630773,44229285:25952256,513147,134348 +h1,22047:6630773,44229285:983040,0,0 +k1,22047:10637257,44229285:233576 +(1,22047:10637257,44229285:0,452978,115847 +r1,22050:14160929,44229285:3523672,568825,115847 +k1,22047:10637257,44229285:-3523672 +) +(1,22047:10637257,44229285:3523672,452978,115847 +k1,22047:10637257,44229285:3277 +h1,22047:14157652,44229285:0,411205,112570 +) +k1,22047:14394504,44229285:233575 +k1,22047:16311045,44229285:233576 +k1,22047:17563705,44229285:233575 +k1,22047:19535296,44229285:233576 +k1,22047:20428163,44229285:233575 +k1,22047:21017599,44229285:233576 +k1,22047:24240926,44229285:233575 +k1,22047:25160664,44229285:233576 +k1,22047:26182637,44229285:233575 +k1,22047:29662211,44229285:233576 +k1,22047:30511824,44229285:233575 +k1,22047:31764485,44229285:233576 +k1,22048:32583029,44229285:0 +) +(1,22048:6630773,45094365:25952256,505283,134348 +k1,22047:8848328,45094365:268514 +k1,22047:11158943,45094365:268513 +(1,22047:11158943,45094365:0,452978,115847 +r1,22050:13275768,45094365:2116825,568825,115847 +k1,22047:11158943,45094365:-2116825 +) +(1,22047:11158943,45094365:2116825,452978,115847 +k1,22047:11158943,45094365:3277 +h1,22047:13272491,45094365:0,411205,112570 +) +k1,22047:13717952,45094365:268514 +k1,22047:16776333,45094365:268513 +(1,22047:16776333,45094365:0,452978,115847 +r1,22050:18541446,45094365:1765113,568825,115847 +k1,22047:16776333,45094365:-1765113 +) +(1,22047:16776333,45094365:1765113,452978,115847 +k1,22047:16776333,45094365:3277 +h1,22047:18538169,45094365:0,411205,112570 +) +k1,22047:18809960,45094365:268514 +k1,22047:19609970,45094365:268513 +k1,22047:20944755,45094365:268514 +k1,22047:22900165,45094365:268513 +k1,22047:23854841,45094365:268514 +k1,22047:25498955,45094365:268513 +k1,22047:28905333,45094365:268514 +k1,22047:29825274,45094365:268513 +k1,22047:32583029,45094365:0 +) +] +(1,22050:32583029,45706769:0,0,0 +g1,22050:32583029,45706769 +) +) +] +(1,22050:6630773,47279633:25952256,0,0 +h1,22050:6630773,47279633:25952256,0,0 +) +] +(1,22050:4262630,4025873:0,0,0 +[1,22050:-473656,4025873:0,0,0 +(1,22050:-473656,-710413:0,0,0 +(1,22050:-473656,-710413:0,0,0 +g1,22050:-473656,-710413 +) +g1,22050:-473656,-710413 ) ] ) ] !24870 -}374 -Input:4177:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4178:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4179:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4180:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}375 Input:4181:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4182:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4183:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4184:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4185:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{375 -[1,22100:4262630,47279633:28320399,43253760,0 -(1,22100:4262630,4025873:0,0,0 -[1,22100:-473656,4025873:0,0,0 -(1,22100:-473656,-710413:0,0,0 -(1,22100:-473656,-644877:0,0,0 -k1,22100:-473656,-644877:-65536 +{376 +[1,22098:4262630,47279633:28320399,43253760,0 +(1,22098:4262630,4025873:0,0,0 +[1,22098:-473656,4025873:0,0,0 +(1,22098:-473656,-710413:0,0,0 +(1,22098:-473656,-644877:0,0,0 +k1,22098:-473656,-644877:-65536 ) -(1,22100:-473656,4736287:0,0,0 -k1,22100:-473656,4736287:5209943 +(1,22098:-473656,4736287:0,0,0 +k1,22098:-473656,4736287:5209943 ) -g1,22100:-473656,-710413 +g1,22098:-473656,-710413 ) ] ) -[1,22100:6630773,47279633:25952256,43253760,0 -[1,22100:6630773,4812305:25952256,786432,0 -(1,22100:6630773,4812305:25952256,513147,126483 -(1,22100:6630773,4812305:25952256,513147,126483 -g1,22100:3078558,4812305 -[1,22100:3078558,4812305:0,0,0 -(1,22100:3078558,2439708:0,1703936,0 -k1,22100:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22100:2537886,2439708:1179648,16384,0 +[1,22098:6630773,47279633:25952256,43253760,0 +[1,22098:6630773,4812305:25952256,786432,0 +(1,22098:6630773,4812305:25952256,513147,126483 +(1,22098:6630773,4812305:25952256,513147,126483 +g1,22098:3078558,4812305 +[1,22098:3078558,4812305:0,0,0 +(1,22098:3078558,2439708:0,1703936,0 +k1,22098:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22098:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22100:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22098:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22100:3078558,4812305:0,0,0 -(1,22100:3078558,2439708:0,1703936,0 -g1,22100:29030814,2439708 -g1,22100:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22100:36151628,1915420:16384,1179648,0 +[1,22098:3078558,4812305:0,0,0 +(1,22098:3078558,2439708:0,1703936,0 +g1,22098:29030814,2439708 +g1,22098:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22098:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22100:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22098:37855564,2439708:1179648,16384,0 ) ) -k1,22100:3078556,2439708:-34777008 +k1,22098:3078556,2439708:-34777008 ) ] -[1,22100:3078558,4812305:0,0,0 -(1,22100:3078558,49800853:0,16384,2228224 -k1,22100:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22100:2537886,49800853:1179648,16384,0 +[1,22098:3078558,4812305:0,0,0 +(1,22098:3078558,49800853:0,16384,2228224 +k1,22098:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22098:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22100:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22098:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22100:3078558,4812305:0,0,0 -(1,22100:3078558,49800853:0,16384,2228224 -g1,22100:29030814,49800853 -g1,22100:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22100:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22100:37855564,49800853:1179648,16384,0 -) -) -k1,22100:3078556,49800853:-34777008 -) -] -g1,22100:6630773,4812305 -k1,22100:21386205,4812305:13560055 -g1,22100:21999622,4812305 -g1,22100:25611966,4812305 -g1,22100:28956923,4812305 -g1,22100:29772190,4812305 -) -) -] -[1,22100:6630773,45706769:25952256,40108032,0 -(1,22100:6630773,45706769:25952256,40108032,0 -(1,22100:6630773,45706769:0,0,0 -g1,22100:6630773,45706769 -) -[1,22100:6630773,45706769:25952256,40108032,0 -(1,22050:6630773,6254097:25952256,505283,126483 -k1,22049:8800725,6254097:177002 -k1,22049:9969286,6254097:177001 -k1,22049:13136040,6254097:177002 -k1,22049:15187371,6254097:177001 -k1,22049:17375018,6254097:177002 -k1,22049:18656301,6254097:177001 -k1,22049:19581069,6254097:177002 -k1,22049:22239919,6254097:177002 -k1,22049:24007479,6254097:177001 -k1,22049:26072573,6254097:177002 -k1,22049:28214999,6254097:177001 -k1,22049:29785952,6254097:177002 -k1,22049:32583029,6254097:0 -) -(1,22050:6630773,7119177:25952256,513147,134348 -g1,22049:7934284,7119177 -g1,22049:9330856,7119177 -g1,22049:12201332,7119177 -g1,22049:14789348,7119177 -g1,22049:17278405,7119177 -g1,22049:18136926,7119177 -g1,22049:19355240,7119177 -g1,22049:21207942,7119177 -g1,22049:22793257,7119177 -g1,22049:23643914,7119177 -g1,22049:24199003,7119177 -k1,22050:32583029,7119177:7054301 -g1,22050:32583029,7119177 -) -v1,22052:6630773,7804032:0,393216,0 -(1,22062:6630773,12227421:25952256,4816605,196608 -g1,22062:6630773,12227421 -g1,22062:6630773,12227421 -g1,22062:6434165,12227421 -(1,22062:6434165,12227421:0,4816605,196608 -r1,22100:32779637,12227421:26345472,5013213,196608 -k1,22062:6434165,12227421:-26345472 -) -(1,22062:6434165,12227421:26345472,4816605,196608 -[1,22062:6630773,12227421:25952256,4619997,0 -(1,22054:6630773,8038469:25952256,431045,112852 -(1,22053:6630773,8038469:0,0,0 -g1,22053:6630773,8038469 -g1,22053:6630773,8038469 -g1,22053:6303093,8038469 -(1,22053:6303093,8038469:0,0,0 -) -g1,22053:6630773,8038469 -) -k1,22054:6630773,8038469:0 -g1,22054:10614221,8038469 -g1,22054:11278129,8038469 -g1,22054:15261576,8038469 -g1,22054:17917208,8038469 -g1,22054:18581116,8038469 -g1,22054:20572840,8038469 -g1,22054:21236748,8038469 -g1,22054:22232610,8038469 -g1,22054:22896518,8038469 -g1,22054:23560426,8038469 -g1,22054:24888242,8038469 -h1,22054:25220196,8038469:0,0,0 -k1,22054:32583029,8038469:7362833 -g1,22054:32583029,8038469 -) -(1,22055:6630773,8723324:25952256,424439,112852 -h1,22055:6630773,8723324:0,0,0 -g1,22055:6962727,8723324 -g1,22055:7294681,8723324 -g1,22055:11610082,8723324 -h1,22055:11942036,8723324:0,0,0 -k1,22055:32583028,8723324:20640992 -g1,22055:32583028,8723324 -) -(1,22056:6630773,9408179:25952256,424439,112852 -h1,22056:6630773,9408179:0,0,0 -g1,22056:6962727,9408179 -g1,22056:7294681,9408179 -g1,22056:11942036,9408179 -g1,22056:12605944,9408179 -k1,22056:12605944,9408179:0 -h1,22056:14929622,9408179:0,0,0 -k1,22056:32583030,9408179:17653408 -g1,22056:32583030,9408179 -) -(1,22057:6630773,10093034:25952256,424439,112852 -h1,22057:6630773,10093034:0,0,0 -g1,22057:6962727,10093034 -g1,22057:7294681,10093034 -g1,22057:7626635,10093034 -g1,22057:7958589,10093034 -g1,22057:8290543,10093034 -g1,22057:8622497,10093034 -g1,22057:8954451,10093034 -g1,22057:9286405,10093034 -g1,22057:9618359,10093034 -g1,22057:9950313,10093034 -g1,22057:10282267,10093034 -g1,22057:12273991,10093034 -g1,22057:12937899,10093034 -k1,22057:12937899,10093034:0 -h1,22057:15925484,10093034:0,0,0 -k1,22057:32583029,10093034:16657545 -g1,22057:32583029,10093034 -) -(1,22058:6630773,10777889:25952256,407923,106246 -h1,22058:6630773,10777889:0,0,0 -g1,22058:6962727,10777889 -g1,22058:7294681,10777889 -g1,22058:7626635,10777889 -g1,22058:7958589,10777889 -g1,22058:8290543,10777889 -g1,22058:8622497,10777889 -g1,22058:8954451,10777889 -g1,22058:9286405,10777889 -g1,22058:9618359,10777889 -g1,22058:9950313,10777889 -g1,22058:10282267,10777889 -g1,22058:10946175,10777889 -g1,22058:11610083,10777889 -g1,22058:12605945,10777889 -g1,22058:13269853,10777889 -g1,22058:13933761,10777889 -k1,22058:13933761,10777889:0 -h1,22058:14597669,10777889:0,0,0 -k1,22058:32583029,10777889:17985360 -g1,22058:32583029,10777889 -) -(1,22059:6630773,11462744:25952256,424439,86428 -h1,22059:6630773,11462744:0,0,0 -g1,22059:6962727,11462744 -g1,22059:7294681,11462744 -g1,22059:7626635,11462744 -g1,22059:7958589,11462744 -g1,22059:8290543,11462744 -g1,22059:8622497,11462744 -g1,22059:8954451,11462744 -g1,22059:9286405,11462744 -g1,22059:9618359,11462744 -g1,22059:9950313,11462744 -g1,22059:10282267,11462744 -g1,22059:12605945,11462744 -g1,22059:13269853,11462744 -k1,22059:13269853,11462744:0 -h1,22059:15593531,11462744:0,0,0 -k1,22059:32583029,11462744:16989498 -g1,22059:32583029,11462744 -) -(1,22060:6630773,12147599:25952256,424439,79822 -h1,22060:6630773,12147599:0,0,0 -g1,22060:6962727,12147599 -g1,22060:7294681,12147599 -g1,22060:7626635,12147599 -g1,22060:7958589,12147599 -g1,22060:8290543,12147599 -g1,22060:8622497,12147599 -g1,22060:8954451,12147599 -g1,22060:9286405,12147599 -g1,22060:9618359,12147599 -g1,22060:9950313,12147599 -g1,22060:10282267,12147599 -h1,22060:12605945,12147599:0,0,0 -k1,22060:32583029,12147599:19977084 -g1,22060:32583029,12147599 -) -] -) -g1,22062:32583029,12227421 -g1,22062:6630773,12227421 -g1,22062:6630773,12227421 -g1,22062:32583029,12227421 -g1,22062:32583029,12227421 -) -h1,22062:6630773,12424029:0,0,0 -(1,22065:6630773,21573231:25952256,9083666,0 -k1,22065:10523651,21573231:3892878 -h1,22064:10523651,21573231:0,0,0 -(1,22064:10523651,21573231:18166500,9083666,0 -(1,22064:10523651,21573231:18167376,9083688,0 -(1,22064:10523651,21573231:18167376,9083688,0 -(1,22064:10523651,21573231:0,9083688,0 -(1,22064:10523651,21573231:0,14208860,0 -(1,22064:10523651,21573231:28417720,14208860,0 -) -k1,22064:10523651,21573231:-28417720 -) -) -g1,22064:28691027,21573231 -) -) -) -g1,22065:28690151,21573231 -k1,22065:32583029,21573231:3892878 -) -v1,22072:6630773,22438311:0,393216,0 -(1,22073:6630773,24448811:25952256,2403716,0 -g1,22073:6630773,24448811 -g1,22073:6237557,24448811 -r1,22100:6368629,24448811:131072,2403716,0 -g1,22073:6567858,24448811 -g1,22073:6764466,24448811 -[1,22073:6764466,24448811:25818563,2403716,0 -(1,22073:6764466,22710788:25818563,665693,196608 -(1,22072:6764466,22710788:0,665693,196608 -r1,22100:7868133,22710788:1103667,862301,196608 -k1,22072:6764466,22710788:-1103667 -) -(1,22072:6764466,22710788:1103667,665693,196608 -) -k1,22072:8043277,22710788:175144 -k1,22072:9769495,22710788:327680 -k1,22072:11242253,22710788:175145 -k1,22072:12811348,22710788:175144 -k1,22072:14005578,22710788:175145 -k1,22072:16191367,22710788:175144 -k1,22072:17025803,22710788:175144 -k1,22072:18220033,22710788:175145 -k1,22072:21797806,22710788:175144 -k1,22072:22624378,22710788:175144 -(1,22072:22624378,22710788:0,452978,115847 -r1,22100:26148050,22710788:3523672,568825,115847 -k1,22072:22624378,22710788:-3523672 -) -(1,22072:22624378,22710788:3523672,452978,115847 -k1,22072:22624378,22710788:3277 -h1,22072:26144773,22710788:0,411205,112570 -) -k1,22072:26323195,22710788:175145 -k1,22072:27149767,22710788:175144 -k1,22072:28687406,22710788:175145 -k1,22072:29881635,22710788:175144 -k1,22072:32583029,22710788:0 -) -(1,22073:6764466,23575868:25818563,513147,134348 -k1,22072:8424056,23575868:217143 -k1,22072:10845829,23575868:217142 -k1,22072:12394008,23575868:217143 -k1,22072:14792845,23575868:217143 -k1,22072:16341023,23575868:217142 -k1,22072:18033381,23575868:217143 -k1,22072:20813637,23575868:217143 -k1,22072:22728161,23575868:217142 -k1,22072:24136749,23575868:217143 -k1,22072:28171364,23575868:217143 -k1,22072:29047798,23575868:217142 -k1,22072:30284026,23575868:217143 -k1,22073:32583029,23575868:0 -) -(1,22073:6764466,24440948:25818563,473825,7863 -k1,22073:32583029,24440948:24498668 -g1,22073:32583029,24440948 -) -] -g1,22073:32583029,24448811 -) -h1,22073:6630773,24448811:0,0,0 -(1,22077:6630773,25313891:25952256,505283,134348 -h1,22076:6630773,25313891:983040,0,0 -k1,22076:8273559,25313891:189853 -k1,22076:8994908,25313891:189852 -k1,22076:12110288,25313891:189853 -k1,22076:15077556,25313891:189852 -k1,22076:15918837,25313891:189853 -k1,22076:17201175,25313891:189853 -k1,22076:18941609,25313891:189852 -k1,22076:21201089,25313891:189853 -k1,22076:23172211,25313891:189853 -k1,22076:25947458,25313891:189852 -k1,22076:26820196,25313891:189853 -k1,22076:28987925,25313891:189852 -k1,22076:31896867,25313891:189853 -k1,22076:32583029,25313891:0 -) -(1,22077:6630773,26178971:25952256,513147,134348 -k1,22076:10784629,26178971:189583 -k1,22076:11602047,26178971:189583 -k1,22076:14070317,26178971:189583 -h1,22076:15613035,26178971:0,0,0 -k1,22076:15802618,26178971:189583 -k1,22076:16801571,26178971:189583 -k1,22076:18489307,26178971:189583 -h1,22076:19684684,26178971:0,0,0 -k1,22076:19874268,26178971:189584 -(1,22076:19874268,26178971:0,414482,122846 -r1,22100:21639381,26178971:1765113,537328,122846 -k1,22076:19874268,26178971:-1765113 -) -(1,22076:19874268,26178971:1765113,414482,122846 -k1,22076:19874268,26178971:3277 -h1,22076:21636104,26178971:0,411205,112570 -) -k1,22076:21828964,26178971:189583 -k1,22076:23586168,26178971:189583 -k1,22076:26355903,26178971:189583 -k1,22076:28535158,26178971:189583 -k1,22076:30228792,26178971:189583 -k1,22076:31931601,26178971:189583 -k1,22076:32583029,26178971:0 -) -(1,22077:6630773,27044051:25952256,505283,126483 -k1,22076:8808986,27044051:248833 -k1,22076:10938703,27044051:248834 -k1,22076:11803574,27044051:248833 -k1,22076:13833676,27044051:248833 -k1,22076:14984941,27044051:248834 -k1,22076:16889869,27044051:248833 -k1,22076:20525603,27044051:248833 -k1,22076:21305934,27044051:248834 -k1,22076:22206195,27044051:248833 -k1,22076:23547513,27044051:248833 -(1,22076:23547513,27044051:0,452978,115847 -r1,22100:30236591,27044051:6689078,568825,115847 -k1,22076:23547513,27044051:-6689078 -) -(1,22076:23547513,27044051:6689078,452978,115847 -k1,22076:23547513,27044051:3277 -h1,22076:30233314,27044051:0,411205,112570 -) -k1,22076:30485425,27044051:248834 -k1,22076:31385686,27044051:248833 -k1,22076:32583029,27044051:0 -) -(1,22077:6630773,27909131:25952256,505283,134348 -k1,22076:8580819,27909131:162224 -k1,22076:10576083,27909131:162223 -k1,22076:13688082,27909131:162224 -k1,22076:16016926,27909131:162224 -k1,22076:16535009,27909131:162223 -k1,22076:18896621,27909131:162224 -k1,22076:19887875,27909131:162224 -k1,22076:21247441,27909131:162223 -k1,22076:23882338,27909131:162224 -k1,22076:24727447,27909131:162224 -k1,22076:25908755,27909131:162223 -k1,22076:27724452,27909131:162224 -k1,22076:29163973,27909131:162224 -k1,22076:30012358,27909131:162223 -k1,22076:30945285,27909131:162224 -k1,22076:32583029,27909131:0 -) -(1,22077:6630773,28774211:25952256,513147,134348 -k1,22076:7241326,28774211:152456 -k1,22076:8699915,28774211:152456 -k1,22076:10712938,28774211:152456 -k1,22076:11516822,28774211:152456 -k1,22076:12417044,28774211:152456 -k1,22076:15730300,28774211:152455 -k1,22076:16340853,28774211:152456 -k1,22076:17760775,28774211:152456 -k1,22076:18269091,28774211:152456 -k1,22076:20052738,28774211:152456 -k1,22076:20692735,28774211:152409 -k1,22076:22870909,28774211:152456 -k1,22076:24127647,28774211:152456 -k1,22076:25027869,28774211:152456 -k1,22076:28341126,28774211:152456 -k1,22076:29887533,28774211:152456 -k1,22077:32583029,28774211:0 -) -(1,22077:6630773,29639291:25952256,505283,126483 -(1,22076:6630773,29639291:0,452978,122846 -r1,22100:10857869,29639291:4227096,575824,122846 -k1,22076:6630773,29639291:-4227096 -) -(1,22076:6630773,29639291:4227096,452978,122846 -k1,22076:6630773,29639291:3277 -h1,22076:10854592,29639291:0,411205,112570 -) -k1,22076:11225725,29639291:194186 -k1,22076:12047747,29639291:194187 -k1,22076:13445174,29639291:194186 -k1,22076:16300777,29639291:194186 -k1,22076:17514049,29639291:194187 -k1,22076:19258817,29639291:194186 -k1,22076:19984500,29639291:194186 -k1,22076:20534546,29639291:194186 -k1,22076:24124809,29639291:194187 -k1,22076:26792324,29639291:194186 -k1,22076:28253976,29639291:194186 -k1,22076:29467248,29639291:194187 -k1,22076:31253304,29639291:194186 -k1,22076:32583029,29639291:0 -) -(1,22077:6630773,30504371:25952256,513147,134348 -k1,22076:7438598,30504371:179990 -k1,22076:10284593,30504371:179990 -k1,22076:11116011,30504371:179990 -k1,22076:12315085,30504371:179989 -k1,22076:14126266,30504371:179990 -k1,22076:18044430,30504371:179990 -k1,22076:19172071,30504371:179990 -k1,22076:20140459,30504371:179990 -k1,22076:22877008,30504371:179990 -k1,22076:24048558,30504371:179990 -k1,22076:26433834,30504371:179989 -k1,22076:27229862,30504371:179990 -k1,22076:29343164,30504371:179990 -k1,22076:30912517,30504371:179990 -k1,22077:32583029,30504371:0 -k1,22077:32583029,30504371:0 -) -v1,22079:6630773,31189226:0,393216,0 -(1,22088:6630773,34954184:25952256,4158174,196608 -g1,22088:6630773,34954184 -g1,22088:6630773,34954184 -g1,22088:6434165,34954184 -(1,22088:6434165,34954184:0,4158174,196608 -r1,22100:32779637,34954184:26345472,4354782,196608 -k1,22088:6434165,34954184:-26345472 -) -(1,22088:6434165,34954184:26345472,4158174,196608 -[1,22088:6630773,34954184:25952256,3961566,0 -(1,22081:6630773,31423663:25952256,431045,112852 -(1,22080:6630773,31423663:0,0,0 -g1,22080:6630773,31423663 -g1,22080:6630773,31423663 -g1,22080:6303093,31423663 -(1,22080:6303093,31423663:0,0,0 -) -g1,22080:6630773,31423663 -) -g1,22081:7294681,31423663 -g1,22081:8290543,31423663 -g1,22081:12273991,31423663 -g1,22081:12937899,31423663 -g1,22081:16921346,31423663 -g1,22081:19576978,31423663 -g1,22081:20240886,31423663 -g1,22081:22232610,31423663 -g1,22081:22896518,31423663 -g1,22081:23892380,31423663 -g1,22081:24556288,31423663 -g1,22081:25220196,31423663 -g1,22081:26548012,31423663 -h1,22081:26879966,31423663:0,0,0 -k1,22081:32583029,31423663:5703063 -g1,22081:32583029,31423663 -) -(1,22082:6630773,32108518:25952256,424439,112852 -h1,22082:6630773,32108518:0,0,0 -g1,22082:6962727,32108518 -g1,22082:7294681,32108518 -k1,22082:7294681,32108518:0 -h1,22082:11278128,32108518:0,0,0 -k1,22082:32583028,32108518:21304900 -g1,22082:32583028,32108518 -) -(1,22083:6630773,32793373:25952256,424439,106246 -h1,22083:6630773,32793373:0,0,0 -g1,22083:7294681,32793373 -g1,22083:7958589,32793373 -g1,22083:13269852,32793373 -g1,22083:13933760,32793373 -g1,22083:15261576,32793373 -h1,22083:15593530,32793373:0,0,0 -k1,22083:32583030,32793373:16989500 -g1,22083:32583030,32793373 -) -(1,22084:6630773,33478228:25952256,424439,112852 -h1,22084:6630773,33478228:0,0,0 -k1,22084:6852076,33478228:221303 -k1,22084:7073379,33478228:221303 -k1,22084:17253300,33478228:221303 -k1,22084:17806557,33478228:221303 -k1,22084:24666939,33478228:221303 -k1,22084:25220196,33478228:221303 -k1,22084:26769315,33478228:221303 -k1,22084:28318434,33478228:221303 -k1,22084:29867553,33478228:221303 -k1,22084:30420810,33478228:221303 -k1,22084:32301883,33478228:221303 -k1,22084:33851002,33478228:221303 -h1,22084:34182956,33478228:0,0,0 -k1,22084:34182956,33478228:0 -k1,22084:34182956,33478228:0 -) -(1,22085:6630773,34163083:25952256,424439,86428 -h1,22085:6630773,34163083:0,0,0 -g1,22085:6962727,34163083 -g1,22085:7294681,34163083 -g1,22085:7626635,34163083 -g1,22085:7958589,34163083 -g1,22085:8290543,34163083 -g1,22085:8622497,34163083 -g1,22085:8954451,34163083 -g1,22085:9286405,34163083 -g1,22085:9618359,34163083 -g1,22085:9950313,34163083 -g1,22085:10282267,34163083 -g1,22085:10614221,34163083 -g1,22085:10946175,34163083 -g1,22085:11278129,34163083 -g1,22085:11610083,34163083 -g1,22085:11942037,34163083 -g1,22085:12273991,34163083 -g1,22085:12605945,34163083 -g1,22085:12937899,34163083 -g1,22085:13269853,34163083 -g1,22085:13601807,34163083 -g1,22085:13933761,34163083 -g1,22085:14265715,34163083 -g1,22085:14597669,34163083 -g1,22085:14929623,34163083 -g1,22085:15261577,34163083 -g1,22085:15593531,34163083 -g1,22085:15925485,34163083 -g1,22085:16257439,34163083 -g1,22085:16589393,34163083 -g1,22085:16921347,34163083 -k1,22085:16921347,34163083:0 -h1,22085:21568702,34163083:0,0,0 -k1,22085:32583029,34163083:11014327 -g1,22085:32583029,34163083 -) -(1,22086:6630773,34847938:25952256,424439,106246 -h1,22086:6630773,34847938:0,0,0 -g1,22086:6962727,34847938 -g1,22086:7294681,34847938 -g1,22086:7626635,34847938 -g1,22086:7958589,34847938 -g1,22086:8290543,34847938 -g1,22086:8622497,34847938 -g1,22086:8954451,34847938 -g1,22086:9286405,34847938 -g1,22086:9618359,34847938 -g1,22086:9950313,34847938 -g1,22086:10282267,34847938 -g1,22086:10614221,34847938 -g1,22086:10946175,34847938 -g1,22086:11278129,34847938 -g1,22086:11610083,34847938 -g1,22086:11942037,34847938 -g1,22086:12273991,34847938 -g1,22086:12605945,34847938 -g1,22086:12937899,34847938 -g1,22086:13269853,34847938 -g1,22086:14929623,34847938 -g1,22086:15593531,34847938 -g1,22086:16921347,34847938 -g1,22086:18581117,34847938 -g1,22086:19245025,34847938 -g1,22086:20572841,34847938 -g1,22086:22232611,34847938 -g1,22086:22896519,34847938 -g1,22086:24224335,34847938 -g1,22086:25884105,34847938 -g1,22086:26548013,34847938 -h1,22086:27543875,34847938:0,0,0 -k1,22086:32583029,34847938:5039154 -g1,22086:32583029,34847938 -) -] -) -g1,22088:32583029,34954184 -g1,22088:6630773,34954184 -g1,22088:6630773,34954184 -g1,22088:32583029,34954184 -g1,22088:32583029,34954184 -) -h1,22088:6630773,35150792:0,0,0 -(1,22091:6630773,44299994:25952256,9083666,0 -k1,22091:10523651,44299994:3892878 -h1,22090:10523651,44299994:0,0,0 -(1,22090:10523651,44299994:18166500,9083666,0 -(1,22090:10523651,44299994:18167376,9083688,0 -(1,22090:10523651,44299994:18167376,9083688,0 -(1,22090:10523651,44299994:0,9083688,0 -(1,22090:10523651,44299994:0,14208860,0 -(1,22090:10523651,44299994:28417720,14208860,0 -) -k1,22090:10523651,44299994:-28417720 -) -) -g1,22090:28691027,44299994 -) -) -) -g1,22091:28690151,44299994 -k1,22091:32583029,44299994:3892878 -) -] -(1,22100:32583029,45706769:0,0,0 -g1,22100:32583029,45706769 -) -) -] -(1,22100:6630773,47279633:25952256,0,0 -h1,22100:6630773,47279633:25952256,0,0 -) -] -(1,22100:4262630,4025873:0,0,0 -[1,22100:-473656,4025873:0,0,0 -(1,22100:-473656,-710413:0,0,0 -(1,22100:-473656,-710413:0,0,0 -g1,22100:-473656,-710413 -) -g1,22100:-473656,-710413 +[1,22098:3078558,4812305:0,0,0 +(1,22098:3078558,49800853:0,16384,2228224 +g1,22098:29030814,49800853 +g1,22098:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22098:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22098:37855564,49800853:1179648,16384,0 +) +) +k1,22098:3078556,49800853:-34777008 +) +] +g1,22098:6630773,4812305 +k1,22098:21386205,4812305:13560055 +g1,22098:21999622,4812305 +g1,22098:25611966,4812305 +g1,22098:28956923,4812305 +g1,22098:29772190,4812305 +) +) +] +[1,22098:6630773,45706769:25952256,40108032,0 +(1,22098:6630773,45706769:25952256,40108032,0 +(1,22098:6630773,45706769:0,0,0 +g1,22098:6630773,45706769 +) +[1,22098:6630773,45706769:25952256,40108032,0 +(1,22048:6630773,6254097:25952256,505283,126483 +k1,22047:8800725,6254097:177002 +k1,22047:9969286,6254097:177001 +k1,22047:13136040,6254097:177002 +k1,22047:15187371,6254097:177001 +k1,22047:17375018,6254097:177002 +k1,22047:18656301,6254097:177001 +k1,22047:19581069,6254097:177002 +k1,22047:22239919,6254097:177002 +k1,22047:24007479,6254097:177001 +k1,22047:26072573,6254097:177002 +k1,22047:28214999,6254097:177001 +k1,22047:29785952,6254097:177002 +k1,22047:32583029,6254097:0 +) +(1,22048:6630773,7119177:25952256,513147,134348 +g1,22047:7934284,7119177 +g1,22047:9330856,7119177 +g1,22047:12201332,7119177 +g1,22047:14789348,7119177 +g1,22047:17278405,7119177 +g1,22047:18136926,7119177 +g1,22047:19355240,7119177 +g1,22047:21207942,7119177 +g1,22047:22793257,7119177 +g1,22047:23643914,7119177 +g1,22047:24199003,7119177 +k1,22048:32583029,7119177:7054301 +g1,22048:32583029,7119177 +) +v1,22050:6630773,7804032:0,393216,0 +(1,22060:6630773,12227421:25952256,4816605,196608 +g1,22060:6630773,12227421 +g1,22060:6630773,12227421 +g1,22060:6434165,12227421 +(1,22060:6434165,12227421:0,4816605,196608 +r1,22098:32779637,12227421:26345472,5013213,196608 +k1,22060:6434165,12227421:-26345472 +) +(1,22060:6434165,12227421:26345472,4816605,196608 +[1,22060:6630773,12227421:25952256,4619997,0 +(1,22052:6630773,8038469:25952256,431045,112852 +(1,22051:6630773,8038469:0,0,0 +g1,22051:6630773,8038469 +g1,22051:6630773,8038469 +g1,22051:6303093,8038469 +(1,22051:6303093,8038469:0,0,0 +) +g1,22051:6630773,8038469 +) +k1,22052:6630773,8038469:0 +g1,22052:10614221,8038469 +g1,22052:11278129,8038469 +g1,22052:15261576,8038469 +g1,22052:17917208,8038469 +g1,22052:18581116,8038469 +g1,22052:20572840,8038469 +g1,22052:21236748,8038469 +g1,22052:22232610,8038469 +g1,22052:22896518,8038469 +g1,22052:23560426,8038469 +g1,22052:24888242,8038469 +h1,22052:25220196,8038469:0,0,0 +k1,22052:32583029,8038469:7362833 +g1,22052:32583029,8038469 +) +(1,22053:6630773,8723324:25952256,424439,112852 +h1,22053:6630773,8723324:0,0,0 +g1,22053:6962727,8723324 +g1,22053:7294681,8723324 +g1,22053:11610082,8723324 +h1,22053:11942036,8723324:0,0,0 +k1,22053:32583028,8723324:20640992 +g1,22053:32583028,8723324 +) +(1,22054:6630773,9408179:25952256,424439,112852 +h1,22054:6630773,9408179:0,0,0 +g1,22054:6962727,9408179 +g1,22054:7294681,9408179 +g1,22054:11942036,9408179 +g1,22054:12605944,9408179 +k1,22054:12605944,9408179:0 +h1,22054:14929622,9408179:0,0,0 +k1,22054:32583030,9408179:17653408 +g1,22054:32583030,9408179 +) +(1,22055:6630773,10093034:25952256,424439,112852 +h1,22055:6630773,10093034:0,0,0 +g1,22055:6962727,10093034 +g1,22055:7294681,10093034 +g1,22055:7626635,10093034 +g1,22055:7958589,10093034 +g1,22055:8290543,10093034 +g1,22055:8622497,10093034 +g1,22055:8954451,10093034 +g1,22055:9286405,10093034 +g1,22055:9618359,10093034 +g1,22055:9950313,10093034 +g1,22055:10282267,10093034 +g1,22055:12273991,10093034 +g1,22055:12937899,10093034 +k1,22055:12937899,10093034:0 +h1,22055:15925484,10093034:0,0,0 +k1,22055:32583029,10093034:16657545 +g1,22055:32583029,10093034 +) +(1,22056:6630773,10777889:25952256,407923,106246 +h1,22056:6630773,10777889:0,0,0 +g1,22056:6962727,10777889 +g1,22056:7294681,10777889 +g1,22056:7626635,10777889 +g1,22056:7958589,10777889 +g1,22056:8290543,10777889 +g1,22056:8622497,10777889 +g1,22056:8954451,10777889 +g1,22056:9286405,10777889 +g1,22056:9618359,10777889 +g1,22056:9950313,10777889 +g1,22056:10282267,10777889 +g1,22056:10946175,10777889 +g1,22056:11610083,10777889 +g1,22056:12605945,10777889 +g1,22056:13269853,10777889 +g1,22056:13933761,10777889 +k1,22056:13933761,10777889:0 +h1,22056:14597669,10777889:0,0,0 +k1,22056:32583029,10777889:17985360 +g1,22056:32583029,10777889 +) +(1,22057:6630773,11462744:25952256,424439,86428 +h1,22057:6630773,11462744:0,0,0 +g1,22057:6962727,11462744 +g1,22057:7294681,11462744 +g1,22057:7626635,11462744 +g1,22057:7958589,11462744 +g1,22057:8290543,11462744 +g1,22057:8622497,11462744 +g1,22057:8954451,11462744 +g1,22057:9286405,11462744 +g1,22057:9618359,11462744 +g1,22057:9950313,11462744 +g1,22057:10282267,11462744 +g1,22057:12605945,11462744 +g1,22057:13269853,11462744 +k1,22057:13269853,11462744:0 +h1,22057:15593531,11462744:0,0,0 +k1,22057:32583029,11462744:16989498 +g1,22057:32583029,11462744 +) +(1,22058:6630773,12147599:25952256,424439,79822 +h1,22058:6630773,12147599:0,0,0 +g1,22058:6962727,12147599 +g1,22058:7294681,12147599 +g1,22058:7626635,12147599 +g1,22058:7958589,12147599 +g1,22058:8290543,12147599 +g1,22058:8622497,12147599 +g1,22058:8954451,12147599 +g1,22058:9286405,12147599 +g1,22058:9618359,12147599 +g1,22058:9950313,12147599 +g1,22058:10282267,12147599 +h1,22058:12605945,12147599:0,0,0 +k1,22058:32583029,12147599:19977084 +g1,22058:32583029,12147599 +) +] +) +g1,22060:32583029,12227421 +g1,22060:6630773,12227421 +g1,22060:6630773,12227421 +g1,22060:32583029,12227421 +g1,22060:32583029,12227421 +) +h1,22060:6630773,12424029:0,0,0 +(1,22063:6630773,21573231:25952256,9083666,0 +k1,22063:10523651,21573231:3892878 +h1,22062:10523651,21573231:0,0,0 +(1,22062:10523651,21573231:18166500,9083666,0 +(1,22062:10523651,21573231:18167376,9083688,0 +(1,22062:10523651,21573231:18167376,9083688,0 +(1,22062:10523651,21573231:0,9083688,0 +(1,22062:10523651,21573231:0,14208860,0 +(1,22062:10523651,21573231:28417720,14208860,0 +) +k1,22062:10523651,21573231:-28417720 +) +) +g1,22062:28691027,21573231 +) +) +) +g1,22063:28690151,21573231 +k1,22063:32583029,21573231:3892878 +) +v1,22070:6630773,22438311:0,393216,0 +(1,22071:6630773,24448811:25952256,2403716,0 +g1,22071:6630773,24448811 +g1,22071:6237557,24448811 +r1,22098:6368629,24448811:131072,2403716,0 +g1,22071:6567858,24448811 +g1,22071:6764466,24448811 +[1,22071:6764466,24448811:25818563,2403716,0 +(1,22071:6764466,22710788:25818563,665693,196608 +(1,22070:6764466,22710788:0,665693,196608 +r1,22098:7868133,22710788:1103667,862301,196608 +k1,22070:6764466,22710788:-1103667 +) +(1,22070:6764466,22710788:1103667,665693,196608 +) +k1,22070:8043277,22710788:175144 +k1,22070:9769495,22710788:327680 +k1,22070:11242253,22710788:175145 +k1,22070:12811348,22710788:175144 +k1,22070:14005578,22710788:175145 +k1,22070:16191367,22710788:175144 +k1,22070:17025803,22710788:175144 +k1,22070:18220033,22710788:175145 +k1,22070:21797806,22710788:175144 +k1,22070:22624378,22710788:175144 +(1,22070:22624378,22710788:0,452978,115847 +r1,22098:26148050,22710788:3523672,568825,115847 +k1,22070:22624378,22710788:-3523672 +) +(1,22070:22624378,22710788:3523672,452978,115847 +k1,22070:22624378,22710788:3277 +h1,22070:26144773,22710788:0,411205,112570 +) +k1,22070:26323195,22710788:175145 +k1,22070:27149767,22710788:175144 +k1,22070:28687406,22710788:175145 +k1,22070:29881635,22710788:175144 +k1,22070:32583029,22710788:0 +) +(1,22071:6764466,23575868:25818563,513147,134348 +k1,22070:8424056,23575868:217143 +k1,22070:10845829,23575868:217142 +k1,22070:12394008,23575868:217143 +k1,22070:14792845,23575868:217143 +k1,22070:16341023,23575868:217142 +k1,22070:18033381,23575868:217143 +k1,22070:20813637,23575868:217143 +k1,22070:22728161,23575868:217142 +k1,22070:24136749,23575868:217143 +k1,22070:28171364,23575868:217143 +k1,22070:29047798,23575868:217142 +k1,22070:30284026,23575868:217143 +k1,22071:32583029,23575868:0 +) +(1,22071:6764466,24440948:25818563,473825,7863 +k1,22071:32583029,24440948:24498668 +g1,22071:32583029,24440948 +) +] +g1,22071:32583029,24448811 +) +h1,22071:6630773,24448811:0,0,0 +(1,22075:6630773,25313891:25952256,505283,134348 +h1,22074:6630773,25313891:983040,0,0 +k1,22074:8273559,25313891:189853 +k1,22074:8994908,25313891:189852 +k1,22074:12110288,25313891:189853 +k1,22074:15077556,25313891:189852 +k1,22074:15918837,25313891:189853 +k1,22074:17201175,25313891:189853 +k1,22074:18941609,25313891:189852 +k1,22074:21201089,25313891:189853 +k1,22074:23172211,25313891:189853 +k1,22074:25947458,25313891:189852 +k1,22074:26820196,25313891:189853 +k1,22074:28987925,25313891:189852 +k1,22074:31896867,25313891:189853 +k1,22074:32583029,25313891:0 +) +(1,22075:6630773,26178971:25952256,513147,134348 +k1,22074:10784629,26178971:189583 +k1,22074:11602047,26178971:189583 +k1,22074:14070317,26178971:189583 +h1,22074:15613035,26178971:0,0,0 +k1,22074:15802618,26178971:189583 +k1,22074:16801571,26178971:189583 +k1,22074:18489307,26178971:189583 +h1,22074:19684684,26178971:0,0,0 +k1,22074:19874268,26178971:189584 +(1,22074:19874268,26178971:0,414482,122846 +r1,22098:21639381,26178971:1765113,537328,122846 +k1,22074:19874268,26178971:-1765113 +) +(1,22074:19874268,26178971:1765113,414482,122846 +k1,22074:19874268,26178971:3277 +h1,22074:21636104,26178971:0,411205,112570 +) +k1,22074:21828964,26178971:189583 +k1,22074:23586168,26178971:189583 +k1,22074:26355903,26178971:189583 +k1,22074:28535158,26178971:189583 +k1,22074:30228792,26178971:189583 +k1,22074:31931601,26178971:189583 +k1,22074:32583029,26178971:0 +) +(1,22075:6630773,27044051:25952256,505283,126483 +k1,22074:8808986,27044051:248833 +k1,22074:10938703,27044051:248834 +k1,22074:11803574,27044051:248833 +k1,22074:13833676,27044051:248833 +k1,22074:14984941,27044051:248834 +k1,22074:16889869,27044051:248833 +k1,22074:20525603,27044051:248833 +k1,22074:21305934,27044051:248834 +k1,22074:22206195,27044051:248833 +k1,22074:23547513,27044051:248833 +(1,22074:23547513,27044051:0,452978,115847 +r1,22098:30236591,27044051:6689078,568825,115847 +k1,22074:23547513,27044051:-6689078 +) +(1,22074:23547513,27044051:6689078,452978,115847 +k1,22074:23547513,27044051:3277 +h1,22074:30233314,27044051:0,411205,112570 +) +k1,22074:30485425,27044051:248834 +k1,22074:31385686,27044051:248833 +k1,22074:32583029,27044051:0 +) +(1,22075:6630773,27909131:25952256,505283,134348 +k1,22074:8580819,27909131:162224 +k1,22074:10576083,27909131:162223 +k1,22074:13688082,27909131:162224 +k1,22074:16016926,27909131:162224 +k1,22074:16535009,27909131:162223 +k1,22074:18896621,27909131:162224 +k1,22074:19887875,27909131:162224 +k1,22074:21247441,27909131:162223 +k1,22074:23882338,27909131:162224 +k1,22074:24727447,27909131:162224 +k1,22074:25908755,27909131:162223 +k1,22074:27724452,27909131:162224 +k1,22074:29163973,27909131:162224 +k1,22074:30012358,27909131:162223 +k1,22074:30945285,27909131:162224 +k1,22074:32583029,27909131:0 +) +(1,22075:6630773,28774211:25952256,513147,134348 +k1,22074:7241326,28774211:152456 +k1,22074:8699915,28774211:152456 +k1,22074:10712938,28774211:152456 +k1,22074:11516822,28774211:152456 +k1,22074:12417044,28774211:152456 +k1,22074:15730300,28774211:152455 +k1,22074:16340853,28774211:152456 +k1,22074:17760775,28774211:152456 +k1,22074:18269091,28774211:152456 +k1,22074:20052738,28774211:152456 +k1,22074:20692735,28774211:152409 +k1,22074:22870909,28774211:152456 +k1,22074:24127647,28774211:152456 +k1,22074:25027869,28774211:152456 +k1,22074:28341126,28774211:152456 +k1,22074:29887533,28774211:152456 +k1,22075:32583029,28774211:0 +) +(1,22075:6630773,29639291:25952256,505283,126483 +(1,22074:6630773,29639291:0,452978,122846 +r1,22098:10857869,29639291:4227096,575824,122846 +k1,22074:6630773,29639291:-4227096 +) +(1,22074:6630773,29639291:4227096,452978,122846 +k1,22074:6630773,29639291:3277 +h1,22074:10854592,29639291:0,411205,112570 +) +k1,22074:11225725,29639291:194186 +k1,22074:12047747,29639291:194187 +k1,22074:13445174,29639291:194186 +k1,22074:16300777,29639291:194186 +k1,22074:17514049,29639291:194187 +k1,22074:19258817,29639291:194186 +k1,22074:19984500,29639291:194186 +k1,22074:20534546,29639291:194186 +k1,22074:24124809,29639291:194187 +k1,22074:26792324,29639291:194186 +k1,22074:28253976,29639291:194186 +k1,22074:29467248,29639291:194187 +k1,22074:31253304,29639291:194186 +k1,22074:32583029,29639291:0 +) +(1,22075:6630773,30504371:25952256,513147,134348 +k1,22074:7438598,30504371:179990 +k1,22074:10284593,30504371:179990 +k1,22074:11116011,30504371:179990 +k1,22074:12315085,30504371:179989 +k1,22074:14126266,30504371:179990 +k1,22074:18044430,30504371:179990 +k1,22074:19172071,30504371:179990 +k1,22074:20140459,30504371:179990 +k1,22074:22877008,30504371:179990 +k1,22074:24048558,30504371:179990 +k1,22074:26433834,30504371:179989 +k1,22074:27229862,30504371:179990 +k1,22074:29343164,30504371:179990 +k1,22074:30912517,30504371:179990 +k1,22075:32583029,30504371:0 +k1,22075:32583029,30504371:0 +) +v1,22077:6630773,31189226:0,393216,0 +(1,22086:6630773,34954184:25952256,4158174,196608 +g1,22086:6630773,34954184 +g1,22086:6630773,34954184 +g1,22086:6434165,34954184 +(1,22086:6434165,34954184:0,4158174,196608 +r1,22098:32779637,34954184:26345472,4354782,196608 +k1,22086:6434165,34954184:-26345472 +) +(1,22086:6434165,34954184:26345472,4158174,196608 +[1,22086:6630773,34954184:25952256,3961566,0 +(1,22079:6630773,31423663:25952256,431045,112852 +(1,22078:6630773,31423663:0,0,0 +g1,22078:6630773,31423663 +g1,22078:6630773,31423663 +g1,22078:6303093,31423663 +(1,22078:6303093,31423663:0,0,0 +) +g1,22078:6630773,31423663 +) +g1,22079:7294681,31423663 +g1,22079:8290543,31423663 +g1,22079:12273991,31423663 +g1,22079:12937899,31423663 +g1,22079:16921346,31423663 +g1,22079:19576978,31423663 +g1,22079:20240886,31423663 +g1,22079:22232610,31423663 +g1,22079:22896518,31423663 +g1,22079:23892380,31423663 +g1,22079:24556288,31423663 +g1,22079:25220196,31423663 +g1,22079:26548012,31423663 +h1,22079:26879966,31423663:0,0,0 +k1,22079:32583029,31423663:5703063 +g1,22079:32583029,31423663 +) +(1,22080:6630773,32108518:25952256,424439,112852 +h1,22080:6630773,32108518:0,0,0 +g1,22080:6962727,32108518 +g1,22080:7294681,32108518 +k1,22080:7294681,32108518:0 +h1,22080:11278128,32108518:0,0,0 +k1,22080:32583028,32108518:21304900 +g1,22080:32583028,32108518 +) +(1,22081:6630773,32793373:25952256,424439,106246 +h1,22081:6630773,32793373:0,0,0 +g1,22081:7294681,32793373 +g1,22081:7958589,32793373 +g1,22081:13269852,32793373 +g1,22081:13933760,32793373 +g1,22081:15261576,32793373 +h1,22081:15593530,32793373:0,0,0 +k1,22081:32583030,32793373:16989500 +g1,22081:32583030,32793373 +) +(1,22082:6630773,33478228:25952256,424439,112852 +h1,22082:6630773,33478228:0,0,0 +k1,22082:6852076,33478228:221303 +k1,22082:7073379,33478228:221303 +k1,22082:17253300,33478228:221303 +k1,22082:17806557,33478228:221303 +k1,22082:24666939,33478228:221303 +k1,22082:25220196,33478228:221303 +k1,22082:26769315,33478228:221303 +k1,22082:28318434,33478228:221303 +k1,22082:29867553,33478228:221303 +k1,22082:30420810,33478228:221303 +k1,22082:32301883,33478228:221303 +k1,22082:33851002,33478228:221303 +h1,22082:34182956,33478228:0,0,0 +k1,22082:34182956,33478228:0 +k1,22082:34182956,33478228:0 +) +(1,22083:6630773,34163083:25952256,424439,86428 +h1,22083:6630773,34163083:0,0,0 +g1,22083:6962727,34163083 +g1,22083:7294681,34163083 +g1,22083:7626635,34163083 +g1,22083:7958589,34163083 +g1,22083:8290543,34163083 +g1,22083:8622497,34163083 +g1,22083:8954451,34163083 +g1,22083:9286405,34163083 +g1,22083:9618359,34163083 +g1,22083:9950313,34163083 +g1,22083:10282267,34163083 +g1,22083:10614221,34163083 +g1,22083:10946175,34163083 +g1,22083:11278129,34163083 +g1,22083:11610083,34163083 +g1,22083:11942037,34163083 +g1,22083:12273991,34163083 +g1,22083:12605945,34163083 +g1,22083:12937899,34163083 +g1,22083:13269853,34163083 +g1,22083:13601807,34163083 +g1,22083:13933761,34163083 +g1,22083:14265715,34163083 +g1,22083:14597669,34163083 +g1,22083:14929623,34163083 +g1,22083:15261577,34163083 +g1,22083:15593531,34163083 +g1,22083:15925485,34163083 +g1,22083:16257439,34163083 +g1,22083:16589393,34163083 +g1,22083:16921347,34163083 +k1,22083:16921347,34163083:0 +h1,22083:21568702,34163083:0,0,0 +k1,22083:32583029,34163083:11014327 +g1,22083:32583029,34163083 +) +(1,22084:6630773,34847938:25952256,424439,106246 +h1,22084:6630773,34847938:0,0,0 +g1,22084:6962727,34847938 +g1,22084:7294681,34847938 +g1,22084:7626635,34847938 +g1,22084:7958589,34847938 +g1,22084:8290543,34847938 +g1,22084:8622497,34847938 +g1,22084:8954451,34847938 +g1,22084:9286405,34847938 +g1,22084:9618359,34847938 +g1,22084:9950313,34847938 +g1,22084:10282267,34847938 +g1,22084:10614221,34847938 +g1,22084:10946175,34847938 +g1,22084:11278129,34847938 +g1,22084:11610083,34847938 +g1,22084:11942037,34847938 +g1,22084:12273991,34847938 +g1,22084:12605945,34847938 +g1,22084:12937899,34847938 +g1,22084:13269853,34847938 +g1,22084:14929623,34847938 +g1,22084:15593531,34847938 +g1,22084:16921347,34847938 +g1,22084:18581117,34847938 +g1,22084:19245025,34847938 +g1,22084:20572841,34847938 +g1,22084:22232611,34847938 +g1,22084:22896519,34847938 +g1,22084:24224335,34847938 +g1,22084:25884105,34847938 +g1,22084:26548013,34847938 +h1,22084:27543875,34847938:0,0,0 +k1,22084:32583029,34847938:5039154 +g1,22084:32583029,34847938 +) +] +) +g1,22086:32583029,34954184 +g1,22086:6630773,34954184 +g1,22086:6630773,34954184 +g1,22086:32583029,34954184 +g1,22086:32583029,34954184 +) +h1,22086:6630773,35150792:0,0,0 +(1,22089:6630773,44299994:25952256,9083666,0 +k1,22089:10523651,44299994:3892878 +h1,22088:10523651,44299994:0,0,0 +(1,22088:10523651,44299994:18166500,9083666,0 +(1,22088:10523651,44299994:18167376,9083688,0 +(1,22088:10523651,44299994:18167376,9083688,0 +(1,22088:10523651,44299994:0,9083688,0 +(1,22088:10523651,44299994:0,14208860,0 +(1,22088:10523651,44299994:28417720,14208860,0 +) +k1,22088:10523651,44299994:-28417720 +) +) +g1,22088:28691027,44299994 +) +) +) +g1,22089:28690151,44299994 +k1,22089:32583029,44299994:3892878 +) +] +(1,22098:32583029,45706769:0,0,0 +g1,22098:32583029,45706769 +) +) +] +(1,22098:6630773,47279633:25952256,0,0 +h1,22098:6630773,47279633:25952256,0,0 +) +] +(1,22098:4262630,4025873:0,0,0 +[1,22098:-473656,4025873:0,0,0 +(1,22098:-473656,-710413:0,0,0 +(1,22098:-473656,-710413:0,0,0 +g1,22098:-473656,-710413 +) +g1,22098:-473656,-710413 ) ] ) ] !20436 -}375 -Input:4182:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4183:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4184:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4185:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}376 Input:4186:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4187:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4188:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -383241,2972 +383445,2972 @@ Input:4193:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4194:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4195:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4196:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4197:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4198:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4199:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4200:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{376 -[1,22147:4262630,47279633:28320399,43253760,0 -(1,22147:4262630,4025873:0,0,0 -[1,22147:-473656,4025873:0,0,0 -(1,22147:-473656,-710413:0,0,0 -(1,22147:-473656,-644877:0,0,0 -k1,22147:-473656,-644877:-65536 +{377 +[1,22145:4262630,47279633:28320399,43253760,0 +(1,22145:4262630,4025873:0,0,0 +[1,22145:-473656,4025873:0,0,0 +(1,22145:-473656,-710413:0,0,0 +(1,22145:-473656,-644877:0,0,0 +k1,22145:-473656,-644877:-65536 ) -(1,22147:-473656,4736287:0,0,0 -k1,22147:-473656,4736287:5209943 +(1,22145:-473656,4736287:0,0,0 +k1,22145:-473656,4736287:5209943 ) -g1,22147:-473656,-710413 +g1,22145:-473656,-710413 ) ] ) -[1,22147:6630773,47279633:25952256,43253760,0 -[1,22147:6630773,4812305:25952256,786432,0 -(1,22147:6630773,4812305:25952256,505283,134348 -(1,22147:6630773,4812305:25952256,505283,134348 -g1,22147:3078558,4812305 -[1,22147:3078558,4812305:0,0,0 -(1,22147:3078558,2439708:0,1703936,0 -k1,22147:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22147:2537886,2439708:1179648,16384,0 +[1,22145:6630773,47279633:25952256,43253760,0 +[1,22145:6630773,4812305:25952256,786432,0 +(1,22145:6630773,4812305:25952256,505283,134348 +(1,22145:6630773,4812305:25952256,505283,134348 +g1,22145:3078558,4812305 +[1,22145:3078558,4812305:0,0,0 +(1,22145:3078558,2439708:0,1703936,0 +k1,22145:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22145:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22147:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22145:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22147:3078558,4812305:0,0,0 -(1,22147:3078558,2439708:0,1703936,0 -g1,22147:29030814,2439708 -g1,22147:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22147:36151628,1915420:16384,1179648,0 +[1,22145:3078558,4812305:0,0,0 +(1,22145:3078558,2439708:0,1703936,0 +g1,22145:29030814,2439708 +g1,22145:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22145:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22147:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22145:37855564,2439708:1179648,16384,0 ) ) -k1,22147:3078556,2439708:-34777008 +k1,22145:3078556,2439708:-34777008 ) ] -[1,22147:3078558,4812305:0,0,0 -(1,22147:3078558,49800853:0,16384,2228224 -k1,22147:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22147:2537886,49800853:1179648,16384,0 +[1,22145:3078558,4812305:0,0,0 +(1,22145:3078558,49800853:0,16384,2228224 +k1,22145:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22145:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22147:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22145:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22147:3078558,4812305:0,0,0 -(1,22147:3078558,49800853:0,16384,2228224 -g1,22147:29030814,49800853 -g1,22147:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22147:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22147:37855564,49800853:1179648,16384,0 -) -) -k1,22147:3078556,49800853:-34777008 -) -] -g1,22147:6630773,4812305 -g1,22147:6630773,4812305 -g1,22147:9113932,4812305 -g1,22147:13118837,4812305 -k1,22147:31387653,4812305:18268816 -) -) -] -[1,22147:6630773,45706769:25952256,40108032,0 -(1,22147:6630773,45706769:25952256,40108032,0 -(1,22147:6630773,45706769:0,0,0 -g1,22147:6630773,45706769 -) -[1,22147:6630773,45706769:25952256,40108032,0 -(1,22099:6630773,6254097:25952256,513147,126483 -h1,22097:6630773,6254097:983040,0,0 -k1,22097:9155034,6254097:160377 -k1,22097:12299920,6254097:160376 -k1,22097:13561302,6254097:160377 -k1,22097:14740764,6254097:160377 -k1,22097:18182528,6254097:160376 -k1,22097:20500350,6254097:160377 -k1,22097:22054678,6254097:160377 -k1,22097:23234140,6254097:160377 -k1,22097:24487001,6254097:160376 -k1,22097:25314534,6254097:160377 -(1,22097:25314534,6254097:0,452978,115847 -r1,22147:28838206,6254097:3523672,568825,115847 -k1,22097:25314534,6254097:-3523672 -) -(1,22097:25314534,6254097:3523672,452978,115847 -k1,22097:25314534,6254097:3277 -h1,22097:28834929,6254097:0,411205,112570 -) -k1,22097:28998583,6254097:160377 -k1,22097:30443465,6254097:160376 -k1,22097:31069803,6254097:160377 -k1,22097:32583029,6254097:0 -) -(1,22099:6630773,7119177:25952256,513147,134348 -g1,22097:9510425,7119177 -g1,22097:11103605,7119177 -g1,22097:14025200,7119177 -g1,22097:15243514,7119177 -g1,22097:16993325,7119177 -g1,22097:17724051,7119177 -g1,22097:19888705,7119177 -g1,22097:23390949,7119177 -g1,22097:24241606,7119177 -g1,22097:25206951,7119177 -g1,22097:26683477,7119177 -g1,22097:29130591,7119177 -k1,22099:32583029,7119177:3452438 -g1,22099:32583029,7119177 -) -(1,22101:6630773,7984257:25952256,505283,126483 -h1,22100:6630773,7984257:983040,0,0 -k1,22100:9093325,7984257:851677 -k1,22100:10964087,7984257:851677 -k1,22100:13199883,7984257:851676 -k1,22100:16886647,7984257:851677 -k1,22100:21508610,7984257:851677 -k1,22100:23351847,7984257:851677 -k1,22100:25716750,7984257:851677 -k1,22100:27254588,7984257:851676 -k1,22100:31896867,7984257:851677 -k1,22100:32583029,7984257:0 -) -(1,22101:6630773,8849337:25952256,513147,134348 -k1,22100:8626890,8849337:743724 -k1,22100:10056777,8849337:743725 -k1,22100:11748152,8849337:743724 -k1,22100:13676112,8849337:743724 -k1,22100:16437690,8849337:743724 -k1,22100:18079258,8849337:743725 -k1,22100:20771367,8849337:743724 -k1,22100:22799597,8849337:743724 -k1,22100:24411674,8849337:743725 -k1,22100:26247883,8849337:743724 -k1,22100:29850943,8849337:743724 -k1,22100:31542318,8849337:743724 -k1,22101:32583029,8849337:0 -) -(1,22101:6630773,9714417:25952256,505283,134348 -k1,22100:8938507,9714417:1060584 -k1,22100:11018175,9714417:1060583 -k1,22100:14367276,9714417:1060584 -k1,22100:16114022,9714417:1060584 -(1,22100:16114022,9714417:0,452978,115847 -r1,22147:24913373,9714417:8799351,568825,115847 -k1,22100:16114022,9714417:-8799351 -) -(1,22100:16114022,9714417:8799351,452978,115847 -g1,22100:17875858,9714417 -g1,22100:19634417,9714417 -g1,22100:20689553,9714417 -g1,22100:22448112,9714417 -g1,22100:23503248,9714417 -g1,22100:24206672,9714417 -h1,22100:24910096,9714417:0,411205,112570 -) -k1,22100:25973956,9714417:1060583 -k1,22100:27566037,9714417:1060584 -k1,22100:31931601,9714417:1060583 -k1,22101:32583029,9714417:0 -) -(1,22101:6630773,10579497:25952256,505283,126483 -(1,22100:6630773,10579497:0,452978,115847 -r1,22147:18947241,10579497:12316468,568825,115847 -k1,22100:6630773,10579497:-12316468 -) -(1,22100:6630773,10579497:12316468,452978,115847 -g1,22100:8392609,10579497 -g1,22100:9799456,10579497 -g1,22100:10502880,10579497 -g1,22100:11909727,10579497 -g1,22100:13316574,10579497 -g1,22100:14723421,10579497 -g1,22100:15426845,10579497 -g1,22100:16833692,10579497 -g1,22100:17537116,10579497 -g1,22100:18240540,10579497 -h1,22100:18943964,10579497:0,411205,112570 -) -k1,22100:19586605,10579497:465694 -k1,22100:23974630,10579497:465695 -k1,22100:25431884,10579497:465694 -k1,22100:28199858,10579497:465694 -k1,22100:29278315,10579497:465695 -k1,22100:31252648,10579497:465694 -k1,22100:32583029,10579497:0 -) -(1,22101:6630773,11444577:25952256,505283,134348 -k1,22100:9599663,11444577:180988 -k1,22100:12832008,11444577:180989 -k1,22100:13664424,11444577:180988 -k1,22100:14977220,11444577:180989 -k1,22100:18899658,11444577:180988 -k1,22100:19696685,11444577:180989 -k1,22100:20896758,11444577:180988 -k1,22100:22640781,11444577:180989 -k1,22100:23893938,11444577:180988 -k1,22100:25810320,11444577:180989 -k1,22100:27010393,11444577:180988 -k1,22100:28844855,11444577:180989 -k1,22100:32583029,11444577:0 -) -(1,22101:6630773,12309657:25952256,513147,134348 -g1,22100:8021447,12309657 -g1,22100:9838760,12309657 -g1,22100:10724151,12309657 -g1,22100:11871031,12309657 -g1,22100:14594707,12309657 -g1,22100:15813021,12309657 -k1,22101:32583029,12309657:15328216 -g1,22101:32583029,12309657 -) -v1,22103:6630773,12994512:0,393216,0 -(1,22124:6630773,24951306:25952256,12350010,196608 -g1,22124:6630773,24951306 -g1,22124:6630773,24951306 -g1,22124:6434165,24951306 -(1,22124:6434165,24951306:0,12350010,196608 -r1,22147:32779637,24951306:26345472,12546618,196608 -k1,22124:6434165,24951306:-26345472 -) -(1,22124:6434165,24951306:26345472,12350010,196608 -[1,22124:6630773,24951306:25952256,12153402,0 -(1,22105:6630773,13228949:25952256,431045,112852 -(1,22104:6630773,13228949:0,0,0 -g1,22104:6630773,13228949 -g1,22104:6630773,13228949 -g1,22104:6303093,13228949 -(1,22104:6303093,13228949:0,0,0 -) -g1,22104:6630773,13228949 -) -k1,22105:6630773,13228949:0 -g1,22105:10614221,13228949 -g1,22105:11278129,13228949 -g1,22105:15593530,13228949 -g1,22105:16257438,13228949 -g1,22105:17917208,13228949 -g1,22105:18581116,13228949 -g1,22105:19245024,13228949 -k1,22105:19245024,13228949:0 -h1,22105:20904794,13228949:0,0,0 -k1,22105:32583029,13228949:11678235 -g1,22105:32583029,13228949 -) -(1,22106:6630773,13913804:25952256,424439,112852 -h1,22106:6630773,13913804:0,0,0 -g1,22106:6962727,13913804 -g1,22106:7294681,13913804 -g1,22106:7626635,13913804 -g1,22106:7958589,13913804 -g1,22106:8290543,13913804 -g1,22106:8622497,13913804 -g1,22106:8954451,13913804 -g1,22106:11610083,13913804 -g1,22106:12273991,13913804 -g1,22106:14265715,13913804 -g1,22106:14929623,13913804 -g1,22106:16257439,13913804 -h1,22106:16589393,13913804:0,0,0 -k1,22106:32583029,13913804:15993636 -g1,22106:32583029,13913804 -) -(1,22107:6630773,14598659:25952256,431045,79822 -h1,22107:6630773,14598659:0,0,0 -g1,22107:6962727,14598659 -g1,22107:7294681,14598659 -g1,22107:13269852,14598659 -g1,22107:13933760,14598659 -g1,22107:15593530,14598659 -h1,22107:15925484,14598659:0,0,0 -k1,22107:32583029,14598659:16657545 -g1,22107:32583029,14598659 -) -(1,22108:6630773,15283514:25952256,424439,79822 -h1,22108:6630773,15283514:0,0,0 -g1,22108:6962727,15283514 -g1,22108:7294681,15283514 -k1,22108:7294681,15283514:0 -h1,22108:13601806,15283514:0,0,0 -k1,22108:32583030,15283514:18981224 -g1,22108:32583030,15283514 -) -(1,22109:6630773,15968369:25952256,424439,106246 -h1,22109:6630773,15968369:0,0,0 -g1,22109:6962727,15968369 -g1,22109:7294681,15968369 -g1,22109:7626635,15968369 -g1,22109:7958589,15968369 -g1,22109:10282267,15968369 -g1,22109:10946175,15968369 -g1,22109:12605945,15968369 -g1,22109:14265715,15968369 -g1,22109:15261577,15968369 -g1,22109:16921347,15968369 -g1,22109:17917209,15968369 -g1,22109:18581117,15968369 -k1,22109:18581117,15968369:0 -h1,22109:19576979,15968369:0,0,0 -k1,22109:32583029,15968369:13006050 -g1,22109:32583029,15968369 -) -(1,22110:6630773,16653224:25952256,424439,106246 -h1,22110:6630773,16653224:0,0,0 -g1,22110:6962727,16653224 -g1,22110:7294681,16653224 -g1,22110:7626635,16653224 -g1,22110:7958589,16653224 -g1,22110:10282267,16653224 -g1,22110:10946175,16653224 -g1,22110:13269853,16653224 -g1,22110:19908932,16653224 -k1,22110:19908932,16653224:0 -h1,22110:24888241,16653224:0,0,0 -k1,22110:32583029,16653224:7694788 -g1,22110:32583029,16653224 -) -(1,22111:6630773,17338079:25952256,424439,106246 -h1,22111:6630773,17338079:0,0,0 -g1,22111:6962727,17338079 -g1,22111:7294681,17338079 -g1,22111:7626635,17338079 -g1,22111:7958589,17338079 -g1,22111:8290543,17338079 -g1,22111:8622497,17338079 -g1,22111:8954451,17338079 -g1,22111:9286405,17338079 -g1,22111:9618359,17338079 -g1,22111:9950313,17338079 -g1,22111:10282267,17338079 -g1,22111:10614221,17338079 -g1,22111:10946175,17338079 -g1,22111:17585254,17338079 -g1,22111:23892379,17338079 -h1,22111:24224333,17338079:0,0,0 -k1,22111:32583029,17338079:8358696 -g1,22111:32583029,17338079 -) -(1,22112:6630773,18022934:25952256,424439,106246 -h1,22112:6630773,18022934:0,0,0 -g1,22112:6962727,18022934 -g1,22112:7294681,18022934 -g1,22112:9618359,18022934 -g1,22112:10282267,18022934 -g1,22112:13601806,18022934 -h1,22112:13933760,18022934:0,0,0 -k1,22112:32583028,18022934:18649268 -g1,22112:32583028,18022934 -) -(1,22113:6630773,18707789:25952256,424439,112852 -h1,22113:6630773,18707789:0,0,0 -g1,22113:6962727,18707789 -g1,22113:7294681,18707789 -g1,22113:11942036,18707789 -g1,22113:12605944,18707789 -k1,22113:12605944,18707789:0 -h1,22113:14929622,18707789:0,0,0 -k1,22113:32583030,18707789:17653408 -g1,22113:32583030,18707789 -) -(1,22114:6630773,19392644:25952256,424439,86428 -h1,22114:6630773,19392644:0,0,0 -g1,22114:6962727,19392644 -g1,22114:7294681,19392644 -g1,22114:7626635,19392644 -g1,22114:7958589,19392644 -g1,22114:8290543,19392644 -g1,22114:8622497,19392644 -g1,22114:8954451,19392644 -g1,22114:9286405,19392644 -g1,22114:9618359,19392644 -g1,22114:9950313,19392644 -g1,22114:10282267,19392644 -g1,22114:12273991,19392644 -g1,22114:12937899,19392644 -g1,22114:15261577,19392644 -k1,22114:15261577,19392644:0 -h1,22114:16921347,19392644:0,0,0 -k1,22114:32583029,19392644:15661682 -g1,22114:32583029,19392644 -) -(1,22115:6630773,20077499:25952256,424439,106246 -h1,22115:6630773,20077499:0,0,0 -g1,22115:6962727,20077499 -g1,22115:7294681,20077499 -g1,22115:7626635,20077499 -g1,22115:7958589,20077499 -g1,22115:8290543,20077499 -g1,22115:8622497,20077499 -g1,22115:8954451,20077499 -g1,22115:9286405,20077499 -g1,22115:9618359,20077499 -g1,22115:9950313,20077499 -g1,22115:10282267,20077499 -g1,22115:10946175,20077499 -g1,22115:11610083,20077499 -g1,22115:13933761,20077499 -g1,22115:15593531,20077499 -g1,22115:16257439,20077499 -g1,22115:17585255,20077499 -g1,22115:18249163,20077499 -g1,22115:18913071,20077499 -g1,22115:21236749,20077499 -k1,22115:21236749,20077499:0 -h1,22115:23228473,20077499:0,0,0 -k1,22115:32583029,20077499:9354556 -g1,22115:32583029,20077499 -) -(1,22116:6630773,20762354:25952256,424439,79822 -h1,22116:6630773,20762354:0,0,0 -g1,22116:6962727,20762354 -g1,22116:7294681,20762354 -g1,22116:7626635,20762354 -g1,22116:7958589,20762354 -g1,22116:8290543,20762354 -g1,22116:8622497,20762354 -g1,22116:8954451,20762354 -g1,22116:9286405,20762354 -g1,22116:9618359,20762354 -g1,22116:9950313,20762354 -g1,22116:10282267,20762354 -g1,22116:11942037,20762354 -g1,22116:12605945,20762354 -g1,22116:13933761,20762354 -h1,22116:14265715,20762354:0,0,0 -k1,22116:32583029,20762354:18317314 -g1,22116:32583029,20762354 -) -(1,22117:6630773,21447209:25952256,424439,112852 -h1,22117:6630773,21447209:0,0,0 -g1,22117:6962727,21447209 -g1,22117:7294681,21447209 -g1,22117:11942036,21447209 -g1,22117:12605944,21447209 -k1,22117:12605944,21447209:0 -h1,22117:15261576,21447209:0,0,0 -k1,22117:32583028,21447209:17321452 -g1,22117:32583028,21447209 -) -(1,22118:6630773,22132064:25952256,424439,86428 -h1,22118:6630773,22132064:0,0,0 -g1,22118:6962727,22132064 -g1,22118:7294681,22132064 -g1,22118:7626635,22132064 -g1,22118:7958589,22132064 -g1,22118:8290543,22132064 -g1,22118:8622497,22132064 -g1,22118:8954451,22132064 -g1,22118:9286405,22132064 -g1,22118:9618359,22132064 -g1,22118:9950313,22132064 -g1,22118:10282267,22132064 -g1,22118:12605945,22132064 -g1,22118:13269853,22132064 -k1,22118:13269853,22132064:0 -h1,22118:15261577,22132064:0,0,0 -k1,22118:32583029,22132064:17321452 -g1,22118:32583029,22132064 -) -(1,22119:6630773,22816919:25952256,424439,106246 -h1,22119:6630773,22816919:0,0,0 -g1,22119:6962727,22816919 -g1,22119:7294681,22816919 -g1,22119:7626635,22816919 -g1,22119:7958589,22816919 -g1,22119:8290543,22816919 -g1,22119:8622497,22816919 -g1,22119:8954451,22816919 -g1,22119:9286405,22816919 -g1,22119:9618359,22816919 -g1,22119:9950313,22816919 -g1,22119:10282267,22816919 -g1,22119:12273991,22816919 -g1,22119:12937899,22816919 -k1,22119:12937899,22816919:0 -h1,22119:13933761,22816919:0,0,0 -k1,22119:32583029,22816919:18649268 -g1,22119:32583029,22816919 -) -(1,22120:6630773,23501774:25952256,431045,86428 -h1,22120:6630773,23501774:0,0,0 -g1,22120:6962727,23501774 -g1,22120:7294681,23501774 -g1,22120:7626635,23501774 -g1,22120:7958589,23501774 -g1,22120:8290543,23501774 -g1,22120:8622497,23501774 -g1,22120:8954451,23501774 -g1,22120:9286405,23501774 -g1,22120:9618359,23501774 -g1,22120:9950313,23501774 -g1,22120:10282267,23501774 -g1,22120:11942037,23501774 -g1,22120:12605945,23501774 -k1,22120:12605945,23501774:0 -h1,22120:15261577,23501774:0,0,0 -k1,22120:32583029,23501774:17321452 -g1,22120:32583029,23501774 -) -(1,22121:6630773,24186629:25952256,424439,106246 -h1,22121:6630773,24186629:0,0,0 -g1,22121:6962727,24186629 -g1,22121:7294681,24186629 -g1,22121:7626635,24186629 -g1,22121:7958589,24186629 -g1,22121:8290543,24186629 -g1,22121:8622497,24186629 -g1,22121:8954451,24186629 -g1,22121:9286405,24186629 -g1,22121:9618359,24186629 -g1,22121:9950313,24186629 -g1,22121:10282267,24186629 -g1,22121:10946175,24186629 -g1,22121:11610083,24186629 -g1,22121:13269853,24186629 -g1,22121:14265715,24186629 -g1,22121:15261577,24186629 -g1,22121:15925485,24186629 -g1,22121:17253301,24186629 -g1,22121:17917209,24186629 -g1,22121:18581117,24186629 -k1,22121:18581117,24186629:0 -h1,22121:19245025,24186629:0,0,0 -k1,22121:32583029,24186629:13338004 -g1,22121:32583029,24186629 -) -(1,22122:6630773,24871484:25952256,424439,79822 -h1,22122:6630773,24871484:0,0,0 -g1,22122:6962727,24871484 -g1,22122:7294681,24871484 -g1,22122:7626635,24871484 -g1,22122:7958589,24871484 -g1,22122:8290543,24871484 -g1,22122:8622497,24871484 -g1,22122:8954451,24871484 -g1,22122:9286405,24871484 -g1,22122:9618359,24871484 -g1,22122:9950313,24871484 -g1,22122:10282267,24871484 -g1,22122:11942037,24871484 -g1,22122:12605945,24871484 -h1,22122:13269853,24871484:0,0,0 -k1,22122:32583029,24871484:19313176 -g1,22122:32583029,24871484 -) -] -) -g1,22124:32583029,24951306 -g1,22124:6630773,24951306 -g1,22124:6630773,24951306 -g1,22124:32583029,24951306 -g1,22124:32583029,24951306 -) -h1,22124:6630773,25147914:0,0,0 -(1,22127:6630773,34297116:25952256,9083666,0 -k1,22127:10523651,34297116:3892878 -h1,22126:10523651,34297116:0,0,0 -(1,22126:10523651,34297116:18166500,9083666,0 -(1,22126:10523651,34297116:18167376,9083688,0 -(1,22126:10523651,34297116:18167376,9083688,0 -(1,22126:10523651,34297116:0,9083688,0 -(1,22126:10523651,34297116:0,14208860,0 -(1,22126:10523651,34297116:28417720,14208860,0 -) -k1,22126:10523651,34297116:-28417720 -) -) -g1,22126:28691027,34297116 -) -) -) -g1,22127:28690151,34297116 -k1,22127:32583029,34297116:3892878 -) -v1,22134:6630773,35162196:0,393216,0 -(1,22135:6630773,37172696:25952256,2403716,0 -g1,22135:6630773,37172696 -g1,22135:6237557,37172696 -r1,22147:6368629,37172696:131072,2403716,0 -g1,22135:6567858,37172696 -g1,22135:6764466,37172696 -[1,22135:6764466,37172696:25818563,2403716,0 -(1,22135:6764466,35434673:25818563,665693,196608 -(1,22134:6764466,35434673:0,665693,196608 -r1,22147:7868133,35434673:1103667,862301,196608 -k1,22134:6764466,35434673:-1103667 -) -(1,22134:6764466,35434673:1103667,665693,196608 -) -k1,22134:8113991,35434673:245858 -k1,22134:9840209,35434673:327680 -k1,22134:12292008,35434673:245857 -k1,22134:13556951,35434673:245858 -k1,22134:15080106,35434673:245858 -k1,22134:17181287,35434673:245857 -k1,22134:18078573,35434673:245858 -k1,22134:19985113,35434673:245858 -k1,22134:21250056,35434673:245858 -k1,22134:23517699,35434673:245857 -k1,22134:26090740,35434673:245858 -k1,22134:26995890,35434673:245858 -k1,22134:28260832,35434673:245857 -k1,22134:29800371,35434673:245858 -k1,22134:32583029,35434673:0 -) -(1,22135:6764466,36299753:25818563,505283,134348 -k1,22134:9898848,36299753:193126 -(1,22134:9898848,36299753:0,452978,115847 -r1,22147:10960537,36299753:1061689,568825,115847 -k1,22134:9898848,36299753:-1061689 -) -(1,22134:9898848,36299753:1061689,452978,115847 -k1,22134:9898848,36299753:3277 -h1,22134:10957260,36299753:0,411205,112570 -) -k1,22134:11153662,36299753:193125 -k1,22134:12740739,36299753:193126 -(1,22134:12740739,36299753:0,414482,115847 -r1,22147:13802428,36299753:1061689,530329,115847 -k1,22134:12740739,36299753:-1061689 -) -(1,22134:12740739,36299753:1061689,414482,115847 -k1,22134:12740739,36299753:3277 -h1,22134:13799151,36299753:0,411205,112570 -) -k1,22134:14169223,36299753:193125 -k1,22134:15743193,36299753:193126 -k1,22134:16467815,36299753:193125 -k1,22134:18229218,36299753:193126 -k1,22134:19494513,36299753:193126 -k1,22134:20706723,36299753:193125 -k1,22134:22594610,36299753:193126 -k1,22134:23319232,36299753:193125 -k1,22134:24796864,36299753:193126 -k1,22134:26160462,36299753:193125 -k1,22134:27486050,36299753:193126 -k1,22134:29209441,36299753:193125 -k1,22134:30053995,36299753:193126 -k1,22134:32583029,36299753:0 -) -(1,22135:6764466,37164833:25818563,505283,7863 -g1,22134:7982780,37164833 -k1,22135:32583029,37164833:20757218 -g1,22135:32583029,37164833 -) -] -g1,22135:32583029,37172696 -) -h1,22135:6630773,37172696:0,0,0 -v1,22138:6630773,38037776:0,393216,0 -(1,22139:6630773,41128541:25952256,3483981,0 -g1,22139:6630773,41128541 -g1,22139:6237557,41128541 -r1,22147:6368629,41128541:131072,3483981,0 -g1,22139:6567858,41128541 -g1,22139:6764466,41128541 -[1,22139:6764466,41128541:25818563,3483981,0 -(1,22139:6764466,38398953:25818563,754393,260573 -(1,22138:6764466,38398953:0,754393,260573 -r1,22147:7856192,38398953:1091726,1014966,260573 -k1,22138:6764466,38398953:-1091726 -) -(1,22138:6764466,38398953:1091726,754393,260573 -) -k1,22138:8046881,38398953:190689 -k1,22138:8374561,38398953:327680 -k1,22138:11355117,38398953:190688 -(1,22138:11355117,38398953:0,452978,115847 -r1,22147:14878789,38398953:3523672,568825,115847 -k1,22138:11355117,38398953:-3523672 -) -(1,22138:11355117,38398953:3523672,452978,115847 -k1,22138:11355117,38398953:3277 -h1,22138:14875512,38398953:0,411205,112570 -) -k1,22138:15069478,38398953:190689 -k1,22138:17430718,38398953:190688 -k1,22138:18369173,38398953:190689 -k1,22138:20073087,38398953:190688 -k1,22138:21657727,38398953:190689 -(1,22138:21657727,38398953:0,452978,122846 -r1,22147:26588247,38398953:4930520,575824,122846 -k1,22138:21657727,38398953:-4930520 -) -(1,22138:21657727,38398953:4930520,452978,122846 -g1,22138:23419563,38398953 -g1,22138:24122987,38398953 -h1,22138:26584970,38398953:0,411205,112570 -) -k1,22138:26778935,38398953:190688 -k1,22138:27652509,38398953:190689 -(1,22138:27652509,38398953:0,452978,122846 -r1,22147:32583029,38398953:4930520,575824,122846 -k1,22138:27652509,38398953:-4930520 -) -(1,22138:27652509,38398953:4930520,452978,122846 -g1,22138:29414345,38398953 -g1,22138:30117769,38398953 -h1,22138:32579752,38398953:0,411205,112570 -) -k1,22138:32583029,38398953:0 -) -(1,22139:6764466,39264033:25818563,505283,122846 -k1,22138:7679825,39264033:229197 -k1,22138:8777374,39264033:229197 -k1,22138:10110853,39264033:229197 -k1,22138:11432535,39264033:229197 -(1,22138:11432535,39264033:0,452978,122846 -r1,22147:16011343,39264033:4578808,575824,122846 -k1,22138:11432535,39264033:-4578808 -) -(1,22138:11432535,39264033:4578808,452978,122846 -g1,22138:13194371,39264033 -g1,22138:13897795,39264033 -h1,22138:16008066,39264033:0,411205,112570 -) -k1,22138:16240541,39264033:229198 -k1,22138:17152623,39264033:229197 -(1,22138:17152623,39264033:0,452978,122846 -r1,22147:22786566,39264033:5633943,575824,122846 -k1,22138:17152623,39264033:-5633943 -) -(1,22138:17152623,39264033:5633943,452978,122846 -g1,22138:18914459,39264033 -g1,22138:19617883,39264033 -h1,22138:22783289,39264033:0,411205,112570 -) -k1,22138:23189433,39264033:229197 -k1,22138:25931280,39264033:229197 -(1,22138:25931280,39264033:0,452978,122846 -r1,22147:30158376,39264033:4227096,575824,122846 -k1,22138:25931280,39264033:-4227096 -) -(1,22138:25931280,39264033:4227096,452978,122846 -k1,22138:25931280,39264033:3277 -h1,22138:30155099,39264033:0,411205,112570 -) -k1,22138:30387573,39264033:229197 -k1,22139:32583029,39264033:0 -) -(1,22139:6764466,40129113:25818563,505283,134348 -(1,22138:6764466,40129113:0,452978,122846 -r1,22147:10991562,40129113:4227096,575824,122846 -k1,22138:6764466,40129113:-4227096 -) -(1,22138:6764466,40129113:4227096,452978,122846 -k1,22138:6764466,40129113:3277 -h1,22138:10988285,40129113:0,411205,112570 -) -k1,22138:11227251,40129113:235689 -k1,22138:12567222,40129113:235689 -k1,22138:13550677,40129113:235689 -k1,22138:15299592,40129113:235689 -k1,22138:17949627,40129113:235689 -k1,22138:20612770,40129113:235689 -k1,22138:23606214,40129113:235689 -k1,22138:27244532,40129113:235689 -k1,22138:28131649,40129113:235689 -k1,22138:30180064,40129113:235689 -k1,22138:31465640,40129113:235689 -k1,22139:32583029,40129113:0 -) -(1,22139:6764466,40994193:25818563,485622,134348 -g1,22138:8231161,40994193 -h1,22138:9773879,40994193:0,0,0 -g1,22138:9973108,40994193 -g1,22138:10981707,40994193 -g1,22138:12679089,40994193 -h1,22138:13874466,40994193:0,0,0 -k1,22139:32583030,40994193:18656136 -g1,22139:32583030,40994193 -) -] -g1,22139:32583029,41128541 +[1,22145:3078558,4812305:0,0,0 +(1,22145:3078558,49800853:0,16384,2228224 +g1,22145:29030814,49800853 +g1,22145:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22145:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22145:37855564,49800853:1179648,16384,0 +) +) +k1,22145:3078556,49800853:-34777008 +) +] +g1,22145:6630773,4812305 +g1,22145:6630773,4812305 +g1,22145:9113932,4812305 +g1,22145:13118837,4812305 +k1,22145:31387653,4812305:18268816 +) +) +] +[1,22145:6630773,45706769:25952256,40108032,0 +(1,22145:6630773,45706769:25952256,40108032,0 +(1,22145:6630773,45706769:0,0,0 +g1,22145:6630773,45706769 +) +[1,22145:6630773,45706769:25952256,40108032,0 +(1,22097:6630773,6254097:25952256,513147,126483 +h1,22095:6630773,6254097:983040,0,0 +k1,22095:9155034,6254097:160377 +k1,22095:12299920,6254097:160376 +k1,22095:13561302,6254097:160377 +k1,22095:14740764,6254097:160377 +k1,22095:18182528,6254097:160376 +k1,22095:20500350,6254097:160377 +k1,22095:22054678,6254097:160377 +k1,22095:23234140,6254097:160377 +k1,22095:24487001,6254097:160376 +k1,22095:25314534,6254097:160377 +(1,22095:25314534,6254097:0,452978,115847 +r1,22145:28838206,6254097:3523672,568825,115847 +k1,22095:25314534,6254097:-3523672 +) +(1,22095:25314534,6254097:3523672,452978,115847 +k1,22095:25314534,6254097:3277 +h1,22095:28834929,6254097:0,411205,112570 +) +k1,22095:28998583,6254097:160377 +k1,22095:30443465,6254097:160376 +k1,22095:31069803,6254097:160377 +k1,22095:32583029,6254097:0 +) +(1,22097:6630773,7119177:25952256,513147,134348 +g1,22095:9510425,7119177 +g1,22095:11103605,7119177 +g1,22095:14025200,7119177 +g1,22095:15243514,7119177 +g1,22095:16993325,7119177 +g1,22095:17724051,7119177 +g1,22095:19888705,7119177 +g1,22095:23390949,7119177 +g1,22095:24241606,7119177 +g1,22095:25206951,7119177 +g1,22095:26683477,7119177 +g1,22095:29130591,7119177 +k1,22097:32583029,7119177:3452438 +g1,22097:32583029,7119177 +) +(1,22099:6630773,7984257:25952256,505283,126483 +h1,22098:6630773,7984257:983040,0,0 +k1,22098:9093325,7984257:851677 +k1,22098:10964087,7984257:851677 +k1,22098:13199883,7984257:851676 +k1,22098:16886647,7984257:851677 +k1,22098:21508610,7984257:851677 +k1,22098:23351847,7984257:851677 +k1,22098:25716750,7984257:851677 +k1,22098:27254588,7984257:851676 +k1,22098:31896867,7984257:851677 +k1,22098:32583029,7984257:0 +) +(1,22099:6630773,8849337:25952256,513147,134348 +k1,22098:8626890,8849337:743724 +k1,22098:10056777,8849337:743725 +k1,22098:11748152,8849337:743724 +k1,22098:13676112,8849337:743724 +k1,22098:16437690,8849337:743724 +k1,22098:18079258,8849337:743725 +k1,22098:20771367,8849337:743724 +k1,22098:22799597,8849337:743724 +k1,22098:24411674,8849337:743725 +k1,22098:26247883,8849337:743724 +k1,22098:29850943,8849337:743724 +k1,22098:31542318,8849337:743724 +k1,22099:32583029,8849337:0 +) +(1,22099:6630773,9714417:25952256,505283,134348 +k1,22098:8938507,9714417:1060584 +k1,22098:11018175,9714417:1060583 +k1,22098:14367276,9714417:1060584 +k1,22098:16114022,9714417:1060584 +(1,22098:16114022,9714417:0,452978,115847 +r1,22145:24913373,9714417:8799351,568825,115847 +k1,22098:16114022,9714417:-8799351 +) +(1,22098:16114022,9714417:8799351,452978,115847 +g1,22098:17875858,9714417 +g1,22098:19634417,9714417 +g1,22098:20689553,9714417 +g1,22098:22448112,9714417 +g1,22098:23503248,9714417 +g1,22098:24206672,9714417 +h1,22098:24910096,9714417:0,411205,112570 +) +k1,22098:25973956,9714417:1060583 +k1,22098:27566037,9714417:1060584 +k1,22098:31931601,9714417:1060583 +k1,22099:32583029,9714417:0 +) +(1,22099:6630773,10579497:25952256,505283,126483 +(1,22098:6630773,10579497:0,452978,115847 +r1,22145:18947241,10579497:12316468,568825,115847 +k1,22098:6630773,10579497:-12316468 +) +(1,22098:6630773,10579497:12316468,452978,115847 +g1,22098:8392609,10579497 +g1,22098:9799456,10579497 +g1,22098:10502880,10579497 +g1,22098:11909727,10579497 +g1,22098:13316574,10579497 +g1,22098:14723421,10579497 +g1,22098:15426845,10579497 +g1,22098:16833692,10579497 +g1,22098:17537116,10579497 +g1,22098:18240540,10579497 +h1,22098:18943964,10579497:0,411205,112570 +) +k1,22098:19586605,10579497:465694 +k1,22098:23974630,10579497:465695 +k1,22098:25431884,10579497:465694 +k1,22098:28199858,10579497:465694 +k1,22098:29278315,10579497:465695 +k1,22098:31252648,10579497:465694 +k1,22098:32583029,10579497:0 +) +(1,22099:6630773,11444577:25952256,505283,134348 +k1,22098:9599663,11444577:180988 +k1,22098:12832008,11444577:180989 +k1,22098:13664424,11444577:180988 +k1,22098:14977220,11444577:180989 +k1,22098:18899658,11444577:180988 +k1,22098:19696685,11444577:180989 +k1,22098:20896758,11444577:180988 +k1,22098:22640781,11444577:180989 +k1,22098:23893938,11444577:180988 +k1,22098:25810320,11444577:180989 +k1,22098:27010393,11444577:180988 +k1,22098:28844855,11444577:180989 +k1,22098:32583029,11444577:0 +) +(1,22099:6630773,12309657:25952256,513147,134348 +g1,22098:8021447,12309657 +g1,22098:9838760,12309657 +g1,22098:10724151,12309657 +g1,22098:11871031,12309657 +g1,22098:14594707,12309657 +g1,22098:15813021,12309657 +k1,22099:32583029,12309657:15328216 +g1,22099:32583029,12309657 +) +v1,22101:6630773,12994512:0,393216,0 +(1,22122:6630773,24951306:25952256,12350010,196608 +g1,22122:6630773,24951306 +g1,22122:6630773,24951306 +g1,22122:6434165,24951306 +(1,22122:6434165,24951306:0,12350010,196608 +r1,22145:32779637,24951306:26345472,12546618,196608 +k1,22122:6434165,24951306:-26345472 +) +(1,22122:6434165,24951306:26345472,12350010,196608 +[1,22122:6630773,24951306:25952256,12153402,0 +(1,22103:6630773,13228949:25952256,431045,112852 +(1,22102:6630773,13228949:0,0,0 +g1,22102:6630773,13228949 +g1,22102:6630773,13228949 +g1,22102:6303093,13228949 +(1,22102:6303093,13228949:0,0,0 +) +g1,22102:6630773,13228949 +) +k1,22103:6630773,13228949:0 +g1,22103:10614221,13228949 +g1,22103:11278129,13228949 +g1,22103:15593530,13228949 +g1,22103:16257438,13228949 +g1,22103:17917208,13228949 +g1,22103:18581116,13228949 +g1,22103:19245024,13228949 +k1,22103:19245024,13228949:0 +h1,22103:20904794,13228949:0,0,0 +k1,22103:32583029,13228949:11678235 +g1,22103:32583029,13228949 +) +(1,22104:6630773,13913804:25952256,424439,112852 +h1,22104:6630773,13913804:0,0,0 +g1,22104:6962727,13913804 +g1,22104:7294681,13913804 +g1,22104:7626635,13913804 +g1,22104:7958589,13913804 +g1,22104:8290543,13913804 +g1,22104:8622497,13913804 +g1,22104:8954451,13913804 +g1,22104:11610083,13913804 +g1,22104:12273991,13913804 +g1,22104:14265715,13913804 +g1,22104:14929623,13913804 +g1,22104:16257439,13913804 +h1,22104:16589393,13913804:0,0,0 +k1,22104:32583029,13913804:15993636 +g1,22104:32583029,13913804 +) +(1,22105:6630773,14598659:25952256,431045,79822 +h1,22105:6630773,14598659:0,0,0 +g1,22105:6962727,14598659 +g1,22105:7294681,14598659 +g1,22105:13269852,14598659 +g1,22105:13933760,14598659 +g1,22105:15593530,14598659 +h1,22105:15925484,14598659:0,0,0 +k1,22105:32583029,14598659:16657545 +g1,22105:32583029,14598659 +) +(1,22106:6630773,15283514:25952256,424439,79822 +h1,22106:6630773,15283514:0,0,0 +g1,22106:6962727,15283514 +g1,22106:7294681,15283514 +k1,22106:7294681,15283514:0 +h1,22106:13601806,15283514:0,0,0 +k1,22106:32583030,15283514:18981224 +g1,22106:32583030,15283514 +) +(1,22107:6630773,15968369:25952256,424439,106246 +h1,22107:6630773,15968369:0,0,0 +g1,22107:6962727,15968369 +g1,22107:7294681,15968369 +g1,22107:7626635,15968369 +g1,22107:7958589,15968369 +g1,22107:10282267,15968369 +g1,22107:10946175,15968369 +g1,22107:12605945,15968369 +g1,22107:14265715,15968369 +g1,22107:15261577,15968369 +g1,22107:16921347,15968369 +g1,22107:17917209,15968369 +g1,22107:18581117,15968369 +k1,22107:18581117,15968369:0 +h1,22107:19576979,15968369:0,0,0 +k1,22107:32583029,15968369:13006050 +g1,22107:32583029,15968369 +) +(1,22108:6630773,16653224:25952256,424439,106246 +h1,22108:6630773,16653224:0,0,0 +g1,22108:6962727,16653224 +g1,22108:7294681,16653224 +g1,22108:7626635,16653224 +g1,22108:7958589,16653224 +g1,22108:10282267,16653224 +g1,22108:10946175,16653224 +g1,22108:13269853,16653224 +g1,22108:19908932,16653224 +k1,22108:19908932,16653224:0 +h1,22108:24888241,16653224:0,0,0 +k1,22108:32583029,16653224:7694788 +g1,22108:32583029,16653224 +) +(1,22109:6630773,17338079:25952256,424439,106246 +h1,22109:6630773,17338079:0,0,0 +g1,22109:6962727,17338079 +g1,22109:7294681,17338079 +g1,22109:7626635,17338079 +g1,22109:7958589,17338079 +g1,22109:8290543,17338079 +g1,22109:8622497,17338079 +g1,22109:8954451,17338079 +g1,22109:9286405,17338079 +g1,22109:9618359,17338079 +g1,22109:9950313,17338079 +g1,22109:10282267,17338079 +g1,22109:10614221,17338079 +g1,22109:10946175,17338079 +g1,22109:17585254,17338079 +g1,22109:23892379,17338079 +h1,22109:24224333,17338079:0,0,0 +k1,22109:32583029,17338079:8358696 +g1,22109:32583029,17338079 +) +(1,22110:6630773,18022934:25952256,424439,106246 +h1,22110:6630773,18022934:0,0,0 +g1,22110:6962727,18022934 +g1,22110:7294681,18022934 +g1,22110:9618359,18022934 +g1,22110:10282267,18022934 +g1,22110:13601806,18022934 +h1,22110:13933760,18022934:0,0,0 +k1,22110:32583028,18022934:18649268 +g1,22110:32583028,18022934 +) +(1,22111:6630773,18707789:25952256,424439,112852 +h1,22111:6630773,18707789:0,0,0 +g1,22111:6962727,18707789 +g1,22111:7294681,18707789 +g1,22111:11942036,18707789 +g1,22111:12605944,18707789 +k1,22111:12605944,18707789:0 +h1,22111:14929622,18707789:0,0,0 +k1,22111:32583030,18707789:17653408 +g1,22111:32583030,18707789 +) +(1,22112:6630773,19392644:25952256,424439,86428 +h1,22112:6630773,19392644:0,0,0 +g1,22112:6962727,19392644 +g1,22112:7294681,19392644 +g1,22112:7626635,19392644 +g1,22112:7958589,19392644 +g1,22112:8290543,19392644 +g1,22112:8622497,19392644 +g1,22112:8954451,19392644 +g1,22112:9286405,19392644 +g1,22112:9618359,19392644 +g1,22112:9950313,19392644 +g1,22112:10282267,19392644 +g1,22112:12273991,19392644 +g1,22112:12937899,19392644 +g1,22112:15261577,19392644 +k1,22112:15261577,19392644:0 +h1,22112:16921347,19392644:0,0,0 +k1,22112:32583029,19392644:15661682 +g1,22112:32583029,19392644 +) +(1,22113:6630773,20077499:25952256,424439,106246 +h1,22113:6630773,20077499:0,0,0 +g1,22113:6962727,20077499 +g1,22113:7294681,20077499 +g1,22113:7626635,20077499 +g1,22113:7958589,20077499 +g1,22113:8290543,20077499 +g1,22113:8622497,20077499 +g1,22113:8954451,20077499 +g1,22113:9286405,20077499 +g1,22113:9618359,20077499 +g1,22113:9950313,20077499 +g1,22113:10282267,20077499 +g1,22113:10946175,20077499 +g1,22113:11610083,20077499 +g1,22113:13933761,20077499 +g1,22113:15593531,20077499 +g1,22113:16257439,20077499 +g1,22113:17585255,20077499 +g1,22113:18249163,20077499 +g1,22113:18913071,20077499 +g1,22113:21236749,20077499 +k1,22113:21236749,20077499:0 +h1,22113:23228473,20077499:0,0,0 +k1,22113:32583029,20077499:9354556 +g1,22113:32583029,20077499 +) +(1,22114:6630773,20762354:25952256,424439,79822 +h1,22114:6630773,20762354:0,0,0 +g1,22114:6962727,20762354 +g1,22114:7294681,20762354 +g1,22114:7626635,20762354 +g1,22114:7958589,20762354 +g1,22114:8290543,20762354 +g1,22114:8622497,20762354 +g1,22114:8954451,20762354 +g1,22114:9286405,20762354 +g1,22114:9618359,20762354 +g1,22114:9950313,20762354 +g1,22114:10282267,20762354 +g1,22114:11942037,20762354 +g1,22114:12605945,20762354 +g1,22114:13933761,20762354 +h1,22114:14265715,20762354:0,0,0 +k1,22114:32583029,20762354:18317314 +g1,22114:32583029,20762354 +) +(1,22115:6630773,21447209:25952256,424439,112852 +h1,22115:6630773,21447209:0,0,0 +g1,22115:6962727,21447209 +g1,22115:7294681,21447209 +g1,22115:11942036,21447209 +g1,22115:12605944,21447209 +k1,22115:12605944,21447209:0 +h1,22115:15261576,21447209:0,0,0 +k1,22115:32583028,21447209:17321452 +g1,22115:32583028,21447209 +) +(1,22116:6630773,22132064:25952256,424439,86428 +h1,22116:6630773,22132064:0,0,0 +g1,22116:6962727,22132064 +g1,22116:7294681,22132064 +g1,22116:7626635,22132064 +g1,22116:7958589,22132064 +g1,22116:8290543,22132064 +g1,22116:8622497,22132064 +g1,22116:8954451,22132064 +g1,22116:9286405,22132064 +g1,22116:9618359,22132064 +g1,22116:9950313,22132064 +g1,22116:10282267,22132064 +g1,22116:12605945,22132064 +g1,22116:13269853,22132064 +k1,22116:13269853,22132064:0 +h1,22116:15261577,22132064:0,0,0 +k1,22116:32583029,22132064:17321452 +g1,22116:32583029,22132064 +) +(1,22117:6630773,22816919:25952256,424439,106246 +h1,22117:6630773,22816919:0,0,0 +g1,22117:6962727,22816919 +g1,22117:7294681,22816919 +g1,22117:7626635,22816919 +g1,22117:7958589,22816919 +g1,22117:8290543,22816919 +g1,22117:8622497,22816919 +g1,22117:8954451,22816919 +g1,22117:9286405,22816919 +g1,22117:9618359,22816919 +g1,22117:9950313,22816919 +g1,22117:10282267,22816919 +g1,22117:12273991,22816919 +g1,22117:12937899,22816919 +k1,22117:12937899,22816919:0 +h1,22117:13933761,22816919:0,0,0 +k1,22117:32583029,22816919:18649268 +g1,22117:32583029,22816919 +) +(1,22118:6630773,23501774:25952256,431045,86428 +h1,22118:6630773,23501774:0,0,0 +g1,22118:6962727,23501774 +g1,22118:7294681,23501774 +g1,22118:7626635,23501774 +g1,22118:7958589,23501774 +g1,22118:8290543,23501774 +g1,22118:8622497,23501774 +g1,22118:8954451,23501774 +g1,22118:9286405,23501774 +g1,22118:9618359,23501774 +g1,22118:9950313,23501774 +g1,22118:10282267,23501774 +g1,22118:11942037,23501774 +g1,22118:12605945,23501774 +k1,22118:12605945,23501774:0 +h1,22118:15261577,23501774:0,0,0 +k1,22118:32583029,23501774:17321452 +g1,22118:32583029,23501774 +) +(1,22119:6630773,24186629:25952256,424439,106246 +h1,22119:6630773,24186629:0,0,0 +g1,22119:6962727,24186629 +g1,22119:7294681,24186629 +g1,22119:7626635,24186629 +g1,22119:7958589,24186629 +g1,22119:8290543,24186629 +g1,22119:8622497,24186629 +g1,22119:8954451,24186629 +g1,22119:9286405,24186629 +g1,22119:9618359,24186629 +g1,22119:9950313,24186629 +g1,22119:10282267,24186629 +g1,22119:10946175,24186629 +g1,22119:11610083,24186629 +g1,22119:13269853,24186629 +g1,22119:14265715,24186629 +g1,22119:15261577,24186629 +g1,22119:15925485,24186629 +g1,22119:17253301,24186629 +g1,22119:17917209,24186629 +g1,22119:18581117,24186629 +k1,22119:18581117,24186629:0 +h1,22119:19245025,24186629:0,0,0 +k1,22119:32583029,24186629:13338004 +g1,22119:32583029,24186629 +) +(1,22120:6630773,24871484:25952256,424439,79822 +h1,22120:6630773,24871484:0,0,0 +g1,22120:6962727,24871484 +g1,22120:7294681,24871484 +g1,22120:7626635,24871484 +g1,22120:7958589,24871484 +g1,22120:8290543,24871484 +g1,22120:8622497,24871484 +g1,22120:8954451,24871484 +g1,22120:9286405,24871484 +g1,22120:9618359,24871484 +g1,22120:9950313,24871484 +g1,22120:10282267,24871484 +g1,22120:11942037,24871484 +g1,22120:12605945,24871484 +h1,22120:13269853,24871484:0,0,0 +k1,22120:32583029,24871484:19313176 +g1,22120:32583029,24871484 +) +] +) +g1,22122:32583029,24951306 +g1,22122:6630773,24951306 +g1,22122:6630773,24951306 +g1,22122:32583029,24951306 +g1,22122:32583029,24951306 +) +h1,22122:6630773,25147914:0,0,0 +(1,22125:6630773,34297116:25952256,9083666,0 +k1,22125:10523651,34297116:3892878 +h1,22124:10523651,34297116:0,0,0 +(1,22124:10523651,34297116:18166500,9083666,0 +(1,22124:10523651,34297116:18167376,9083688,0 +(1,22124:10523651,34297116:18167376,9083688,0 +(1,22124:10523651,34297116:0,9083688,0 +(1,22124:10523651,34297116:0,14208860,0 +(1,22124:10523651,34297116:28417720,14208860,0 +) +k1,22124:10523651,34297116:-28417720 +) +) +g1,22124:28691027,34297116 +) +) +) +g1,22125:28690151,34297116 +k1,22125:32583029,34297116:3892878 +) +v1,22132:6630773,35162196:0,393216,0 +(1,22133:6630773,37172696:25952256,2403716,0 +g1,22133:6630773,37172696 +g1,22133:6237557,37172696 +r1,22145:6368629,37172696:131072,2403716,0 +g1,22133:6567858,37172696 +g1,22133:6764466,37172696 +[1,22133:6764466,37172696:25818563,2403716,0 +(1,22133:6764466,35434673:25818563,665693,196608 +(1,22132:6764466,35434673:0,665693,196608 +r1,22145:7868133,35434673:1103667,862301,196608 +k1,22132:6764466,35434673:-1103667 +) +(1,22132:6764466,35434673:1103667,665693,196608 +) +k1,22132:8113991,35434673:245858 +k1,22132:9840209,35434673:327680 +k1,22132:12292008,35434673:245857 +k1,22132:13556951,35434673:245858 +k1,22132:15080106,35434673:245858 +k1,22132:17181287,35434673:245857 +k1,22132:18078573,35434673:245858 +k1,22132:19985113,35434673:245858 +k1,22132:21250056,35434673:245858 +k1,22132:23517699,35434673:245857 +k1,22132:26090740,35434673:245858 +k1,22132:26995890,35434673:245858 +k1,22132:28260832,35434673:245857 +k1,22132:29800371,35434673:245858 +k1,22132:32583029,35434673:0 +) +(1,22133:6764466,36299753:25818563,505283,134348 +k1,22132:9898848,36299753:193126 +(1,22132:9898848,36299753:0,452978,115847 +r1,22145:10960537,36299753:1061689,568825,115847 +k1,22132:9898848,36299753:-1061689 +) +(1,22132:9898848,36299753:1061689,452978,115847 +k1,22132:9898848,36299753:3277 +h1,22132:10957260,36299753:0,411205,112570 +) +k1,22132:11153662,36299753:193125 +k1,22132:12740739,36299753:193126 +(1,22132:12740739,36299753:0,414482,115847 +r1,22145:13802428,36299753:1061689,530329,115847 +k1,22132:12740739,36299753:-1061689 +) +(1,22132:12740739,36299753:1061689,414482,115847 +k1,22132:12740739,36299753:3277 +h1,22132:13799151,36299753:0,411205,112570 +) +k1,22132:14169223,36299753:193125 +k1,22132:15743193,36299753:193126 +k1,22132:16467815,36299753:193125 +k1,22132:18229218,36299753:193126 +k1,22132:19494513,36299753:193126 +k1,22132:20706723,36299753:193125 +k1,22132:22594610,36299753:193126 +k1,22132:23319232,36299753:193125 +k1,22132:24796864,36299753:193126 +k1,22132:26160462,36299753:193125 +k1,22132:27486050,36299753:193126 +k1,22132:29209441,36299753:193125 +k1,22132:30053995,36299753:193126 +k1,22132:32583029,36299753:0 +) +(1,22133:6764466,37164833:25818563,505283,7863 +g1,22132:7982780,37164833 +k1,22133:32583029,37164833:20757218 +g1,22133:32583029,37164833 +) +] +g1,22133:32583029,37172696 +) +h1,22133:6630773,37172696:0,0,0 +v1,22136:6630773,38037776:0,393216,0 +(1,22137:6630773,41128541:25952256,3483981,0 +g1,22137:6630773,41128541 +g1,22137:6237557,41128541 +r1,22145:6368629,41128541:131072,3483981,0 +g1,22137:6567858,41128541 +g1,22137:6764466,41128541 +[1,22137:6764466,41128541:25818563,3483981,0 +(1,22137:6764466,38398953:25818563,754393,260573 +(1,22136:6764466,38398953:0,754393,260573 +r1,22145:7856192,38398953:1091726,1014966,260573 +k1,22136:6764466,38398953:-1091726 +) +(1,22136:6764466,38398953:1091726,754393,260573 +) +k1,22136:8046881,38398953:190689 +k1,22136:8374561,38398953:327680 +k1,22136:11355117,38398953:190688 +(1,22136:11355117,38398953:0,452978,115847 +r1,22145:14878789,38398953:3523672,568825,115847 +k1,22136:11355117,38398953:-3523672 +) +(1,22136:11355117,38398953:3523672,452978,115847 +k1,22136:11355117,38398953:3277 +h1,22136:14875512,38398953:0,411205,112570 +) +k1,22136:15069478,38398953:190689 +k1,22136:17430718,38398953:190688 +k1,22136:18369173,38398953:190689 +k1,22136:20073087,38398953:190688 +k1,22136:21657727,38398953:190689 +(1,22136:21657727,38398953:0,452978,122846 +r1,22145:26588247,38398953:4930520,575824,122846 +k1,22136:21657727,38398953:-4930520 +) +(1,22136:21657727,38398953:4930520,452978,122846 +g1,22136:23419563,38398953 +g1,22136:24122987,38398953 +h1,22136:26584970,38398953:0,411205,112570 +) +k1,22136:26778935,38398953:190688 +k1,22136:27652509,38398953:190689 +(1,22136:27652509,38398953:0,452978,122846 +r1,22145:32583029,38398953:4930520,575824,122846 +k1,22136:27652509,38398953:-4930520 +) +(1,22136:27652509,38398953:4930520,452978,122846 +g1,22136:29414345,38398953 +g1,22136:30117769,38398953 +h1,22136:32579752,38398953:0,411205,112570 +) +k1,22136:32583029,38398953:0 +) +(1,22137:6764466,39264033:25818563,505283,122846 +k1,22136:7679825,39264033:229197 +k1,22136:8777374,39264033:229197 +k1,22136:10110853,39264033:229197 +k1,22136:11432535,39264033:229197 +(1,22136:11432535,39264033:0,452978,122846 +r1,22145:16011343,39264033:4578808,575824,122846 +k1,22136:11432535,39264033:-4578808 +) +(1,22136:11432535,39264033:4578808,452978,122846 +g1,22136:13194371,39264033 +g1,22136:13897795,39264033 +h1,22136:16008066,39264033:0,411205,112570 +) +k1,22136:16240541,39264033:229198 +k1,22136:17152623,39264033:229197 +(1,22136:17152623,39264033:0,452978,122846 +r1,22145:22786566,39264033:5633943,575824,122846 +k1,22136:17152623,39264033:-5633943 +) +(1,22136:17152623,39264033:5633943,452978,122846 +g1,22136:18914459,39264033 +g1,22136:19617883,39264033 +h1,22136:22783289,39264033:0,411205,112570 +) +k1,22136:23189433,39264033:229197 +k1,22136:25931280,39264033:229197 +(1,22136:25931280,39264033:0,452978,122846 +r1,22145:30158376,39264033:4227096,575824,122846 +k1,22136:25931280,39264033:-4227096 +) +(1,22136:25931280,39264033:4227096,452978,122846 +k1,22136:25931280,39264033:3277 +h1,22136:30155099,39264033:0,411205,112570 +) +k1,22136:30387573,39264033:229197 +k1,22137:32583029,39264033:0 +) +(1,22137:6764466,40129113:25818563,505283,134348 +(1,22136:6764466,40129113:0,452978,122846 +r1,22145:10991562,40129113:4227096,575824,122846 +k1,22136:6764466,40129113:-4227096 +) +(1,22136:6764466,40129113:4227096,452978,122846 +k1,22136:6764466,40129113:3277 +h1,22136:10988285,40129113:0,411205,112570 +) +k1,22136:11227251,40129113:235689 +k1,22136:12567222,40129113:235689 +k1,22136:13550677,40129113:235689 +k1,22136:15299592,40129113:235689 +k1,22136:17949627,40129113:235689 +k1,22136:20612770,40129113:235689 +k1,22136:23606214,40129113:235689 +k1,22136:27244532,40129113:235689 +k1,22136:28131649,40129113:235689 +k1,22136:30180064,40129113:235689 +k1,22136:31465640,40129113:235689 +k1,22137:32583029,40129113:0 +) +(1,22137:6764466,40994193:25818563,485622,134348 +g1,22136:8231161,40994193 +h1,22136:9773879,40994193:0,0,0 +g1,22136:9973108,40994193 +g1,22136:10981707,40994193 +g1,22136:12679089,40994193 +h1,22136:13874466,40994193:0,0,0 +k1,22137:32583030,40994193:18656136 +g1,22137:32583030,40994193 +) +] +g1,22137:32583029,41128541 ) -h1,22139:6630773,41128541:0,0,0 -] -(1,22147:32583029,45706769:0,0,0 -g1,22147:32583029,45706769 +h1,22137:6630773,41128541:0,0,0 +] +(1,22145:32583029,45706769:0,0,0 +g1,22145:32583029,45706769 ) ) ] -(1,22147:6630773,47279633:25952256,0,0 -h1,22147:6630773,47279633:25952256,0,0 +(1,22145:6630773,47279633:25952256,0,0 +h1,22145:6630773,47279633:25952256,0,0 ) ] -(1,22147:4262630,4025873:0,0,0 -[1,22147:-473656,4025873:0,0,0 -(1,22147:-473656,-710413:0,0,0 -(1,22147:-473656,-710413:0,0,0 -g1,22147:-473656,-710413 +(1,22145:4262630,4025873:0,0,0 +[1,22145:-473656,4025873:0,0,0 +(1,22145:-473656,-710413:0,0,0 +(1,22145:-473656,-710413:0,0,0 +g1,22145:-473656,-710413 ) -g1,22147:-473656,-710413 +g1,22145:-473656,-710413 ) ] ) ] !24050 -}376 -Input:4197:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4198:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}377 +Input:4201:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4202:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !196 -{377 -[1,22183:4262630,47279633:28320399,43253760,0 -(1,22183:4262630,4025873:0,0,0 -[1,22183:-473656,4025873:0,0,0 -(1,22183:-473656,-710413:0,0,0 -(1,22183:-473656,-644877:0,0,0 -k1,22183:-473656,-644877:-65536 +{378 +[1,22181:4262630,47279633:28320399,43253760,0 +(1,22181:4262630,4025873:0,0,0 +[1,22181:-473656,4025873:0,0,0 +(1,22181:-473656,-710413:0,0,0 +(1,22181:-473656,-644877:0,0,0 +k1,22181:-473656,-644877:-65536 ) -(1,22183:-473656,4736287:0,0,0 -k1,22183:-473656,4736287:5209943 +(1,22181:-473656,4736287:0,0,0 +k1,22181:-473656,4736287:5209943 ) -g1,22183:-473656,-710413 +g1,22181:-473656,-710413 ) ] ) -[1,22183:6630773,47279633:25952256,43253760,0 -[1,22183:6630773,4812305:25952256,786432,0 -(1,22183:6630773,4812305:25952256,513147,126483 -(1,22183:6630773,4812305:25952256,513147,126483 -g1,22183:3078558,4812305 -[1,22183:3078558,4812305:0,0,0 -(1,22183:3078558,2439708:0,1703936,0 -k1,22183:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22183:2537886,2439708:1179648,16384,0 +[1,22181:6630773,47279633:25952256,43253760,0 +[1,22181:6630773,4812305:25952256,786432,0 +(1,22181:6630773,4812305:25952256,513147,126483 +(1,22181:6630773,4812305:25952256,513147,126483 +g1,22181:3078558,4812305 +[1,22181:3078558,4812305:0,0,0 +(1,22181:3078558,2439708:0,1703936,0 +k1,22181:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22181:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22183:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22181:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22183:3078558,4812305:0,0,0 -(1,22183:3078558,2439708:0,1703936,0 -g1,22183:29030814,2439708 -g1,22183:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22183:36151628,1915420:16384,1179648,0 +[1,22181:3078558,4812305:0,0,0 +(1,22181:3078558,2439708:0,1703936,0 +g1,22181:29030814,2439708 +g1,22181:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22181:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22183:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22181:37855564,2439708:1179648,16384,0 ) ) -k1,22183:3078556,2439708:-34777008 +k1,22181:3078556,2439708:-34777008 ) ] -[1,22183:3078558,4812305:0,0,0 -(1,22183:3078558,49800853:0,16384,2228224 -k1,22183:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22183:2537886,49800853:1179648,16384,0 +[1,22181:3078558,4812305:0,0,0 +(1,22181:3078558,49800853:0,16384,2228224 +k1,22181:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22181:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22183:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22181:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22183:3078558,4812305:0,0,0 -(1,22183:3078558,49800853:0,16384,2228224 -g1,22183:29030814,49800853 -g1,22183:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22183:36151628,51504789:16384,1179648,0 +[1,22181:3078558,4812305:0,0,0 +(1,22181:3078558,49800853:0,16384,2228224 +g1,22181:29030814,49800853 +g1,22181:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22181:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22183:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22181:37855564,49800853:1179648,16384,0 ) -) -k1,22183:3078556,49800853:-34777008 -) -] -g1,22183:6630773,4812305 -k1,22183:21386205,4812305:13560055 -g1,22183:21999622,4812305 -g1,22183:25611966,4812305 -g1,22183:28956923,4812305 -g1,22183:29772190,4812305 -) -) -] -[1,22183:6630773,45706769:25952256,40108032,0 -(1,22183:6630773,45706769:25952256,40108032,0 -(1,22183:6630773,45706769:0,0,0 -g1,22183:6630773,45706769 -) -[1,22183:6630773,45706769:25952256,40108032,0 -(1,22142:6630773,6254097:25952256,32768,229376 -(1,22142:6630773,6254097:0,32768,229376 -(1,22142:6630773,6254097:5505024,32768,229376 -r1,22183:12135797,6254097:5505024,262144,229376 -) -k1,22142:6630773,6254097:-5505024 -) -(1,22142:6630773,6254097:25952256,32768,0 -r1,22183:32583029,6254097:25952256,32768,0 -) -) -(1,22142:6630773,7885949:25952256,606339,14155 -(1,22142:6630773,7885949:2464678,582746,14155 -g1,22142:6630773,7885949 -g1,22142:9095451,7885949 -) -g1,22142:14113674,7885949 -g1,22142:15823377,7885949 -g1,22142:19242784,7885949 -k1,22142:32583029,7885949:11398544 -g1,22142:32583029,7885949 -) -(1,22147:6630773,9144245:25952256,513147,134348 -k1,22145:9406626,9144245:233056 -k1,22145:11247280,9144245:233056 -k1,22145:12584618,9144245:233056 -k1,22145:13565440,9144245:233056 -k1,22145:16325564,9144245:233056 -k1,22145:17217912,9144245:233056 -k1,22145:18137130,9144245:233056 -k1,22145:19977784,9144245:233056 -k1,22145:23515821,9144245:233056 -k1,22145:24400305,9144245:233056 -k1,22145:26377274,9144245:233056 -k1,22145:29700353,9144245:233056 -k1,22145:31966991,9144245:233056 -k1,22145:32583029,9144245:0 -) -(1,22147:6630773,10009325:25952256,513147,134348 -k1,22145:8083753,10009325:249739 -k1,22145:10751115,10009325:249739 -k1,22145:12073023,10009325:249739 -k1,22145:14323576,10009325:249739 -k1,22145:16308708,10009325:249739 -k1,22145:16914307,10009325:249739 -k1,22145:19926389,10009325:249739 -k1,22145:22422047,10009325:249739 -k1,22145:23331078,10009325:249739 -k1,22145:27492661,10009325:249739 -k1,22145:29123244,10009325:249739 -k1,22145:29904480,10009325:249739 -k1,22145:30510079,10009325:249739 -k1,22145:31860823,10009325:249739 -k1,22147:32583029,10009325:0 -) -(1,22147:6630773,10874405:25952256,513147,134348 -k1,22145:8668069,10874405:286174 -k1,22145:10238749,10874405:286174 -k1,22145:11544008,10874405:286174 -k1,22145:14732771,10874405:286173 -k1,22145:15678237,10874405:286174 -k1,22145:18683500,10874405:286174 -k1,22145:19655836,10874405:286174 -k1,22145:24143523,10874405:286174 -k1,22145:25045735,10874405:286174 -k1,22145:28160441,10874405:286173 -k1,22145:30492649,10874405:286174 -k1,22145:31871308,10874405:286174 -k1,22145:32583029,10874405:0 -) -(1,22147:6630773,11739485:25952256,505283,134348 -k1,22145:7653941,11739485:215765 -k1,22145:9893457,11739485:215764 -k1,22145:12530122,11739485:215765 -k1,22145:14353484,11739485:215764 -k1,22145:15437601,11739485:215765 -k1,22145:16745851,11739485:215765 -k1,22145:17980700,11739485:215764 -k1,22145:19849938,11739485:215765 -k1,22145:23656420,11739485:215765 -k1,22145:26554573,11739485:215764 -k1,22145:27961783,11739485:215765 -k1,22145:30023697,11739485:215764 -k1,22145:31107814,11739485:215765 -k1,22145:32583029,11739485:0 -) -(1,22147:6630773,12604565:25952256,513147,134348 -k1,22145:8289943,12604565:149220 -k1,22145:10174557,12604565:149221 -k1,22145:11717728,12604565:149220 -k1,22145:12886033,12604565:149220 -k1,22145:15300834,12604565:149221 -k1,22145:17695973,12604565:149220 -k1,22145:18504485,12604565:149220 -k1,22145:21537944,12604565:149220 -k1,22145:25599009,12604565:149221 -k1,22145:26944916,12604565:149220 -k1,22145:28469737,12604565:149220 -k1,22145:30280951,12604565:149221 -k1,22145:31714677,12604565:149220 -k1,22145:32583029,12604565:0 -) -(1,22147:6630773,13469645:25952256,513147,126483 -k1,22145:8320348,13469645:159309 -k1,22145:9131085,13469645:159309 -k1,22145:10105661,13469645:159308 -k1,22145:10796467,13469645:159309 -k1,22145:11607204,13469645:159309 -k1,22145:12963856,13469645:159309 -(1,22145:12963856,13469645:0,452978,115847 -r1,22183:17542664,13469645:4578808,568825,115847 -k1,22145:12963856,13469645:-4578808 -) -(1,22145:12963856,13469645:4578808,452978,115847 -k1,22145:12963856,13469645:3277 -h1,22145:17539387,13469645:0,411205,112570 -) -k1,22145:17701973,13469645:159309 -k1,22145:18512709,13469645:159308 -k1,22145:21317051,13469645:159309 -k1,22145:22495445,13469645:159309 -k1,22145:25094004,13469645:159309 -k1,22145:26027293,13469645:159309 -k1,22145:28295550,13469645:159308 -k1,22145:29830460,13469645:159309 -k1,22145:31681909,13469645:159309 -k1,22147:32583029,13469645:0 -) -(1,22147:6630773,14334725:25952256,505283,126483 -k1,22145:8940098,14334725:218071 -k1,22145:12341908,14334725:218071 -k1,22145:13664261,14334725:218071 -k1,22145:14630098,14334725:218071 -k1,22145:16745436,14334725:218071 -k1,22145:20027316,14334725:218072 -k1,22145:20861425,14334725:218071 -k1,22145:23500396,14334725:218071 -k1,22145:25326065,14334725:218071 -k1,22145:26986583,14334725:218071 -k1,22145:27820692,14334725:218071 -k1,22145:30923002,14334725:218071 -k1,22145:32583029,14334725:0 -) -(1,22147:6630773,15199805:25952256,513147,134348 -k1,22145:7908089,15199805:258231 -k1,22145:11068910,15199805:258231 -k1,22145:11986433,15199805:258231 -k1,22145:15137423,15199805:258231 -k1,22145:19190844,15199805:258232 -k1,22145:20942641,15199805:258231 -k1,22145:21887034,15199805:258231 -(1,22145:21887034,15199805:0,452978,115847 -r1,22183:26465842,15199805:4578808,568825,115847 -k1,22145:21887034,15199805:-4578808 -) -(1,22145:21887034,15199805:4578808,452978,115847 -k1,22145:21887034,15199805:3277 -h1,22145:26462565,15199805:0,411205,112570 -) -k1,22145:26897743,15199805:258231 -k1,22146:28939209,15199805:258231 -k1,22146:30932833,15199805:258231 -k1,22146:32583029,15199805:0 -) -(1,22147:6630773,16064885:25952256,505283,134348 -k1,22146:10816047,16064885:273430 -k1,22146:12108562,16064885:273430 -(1,22146:12108562,16064885:0,414482,115847 -r1,22183:12466828,16064885:358266,530329,115847 -k1,22146:12108562,16064885:-358266 -) -(1,22146:12108562,16064885:358266,414482,115847 -k1,22146:12108562,16064885:3277 -h1,22146:12463551,16064885:0,411205,112570 -) -k1,22146:12740259,16064885:273431 -k1,22146:14205134,16064885:273430 -(1,22146:14205134,16064885:0,414482,115847 -r1,22183:14563400,16064885:358266,530329,115847 -k1,22146:14205134,16064885:-358266 -) -(1,22146:14205134,16064885:358266,414482,115847 -k1,22146:14205134,16064885:3277 -h1,22146:14560123,16064885:0,411205,112570 -) -k1,22146:14836830,16064885:273430 -k1,22146:18174724,16064885:273430 -k1,22146:22081470,16064885:273430 -k1,22146:23006328,16064885:273430 -k1,22146:24298844,16064885:273431 -k1,22146:26269656,16064885:273430 -k1,22146:27734531,16064885:273430 -k1,22146:29835105,16064885:273430 -k1,22146:32583029,16064885:0 -) -(1,22147:6630773,16929965:25952256,505283,126483 -k1,22147:32583030,16929965:22103328 -g1,22147:32583030,16929965 -) -(1,22148:6630773,19046783:25952256,555811,139132 -(1,22148:6630773,19046783:2899444,534184,12975 -g1,22148:6630773,19046783 -g1,22148:9530217,19046783 -) -g1,22148:13388453,19046783 -k1,22148:32583029,19046783:17387290 -g1,22148:32583029,19046783 -) -(1,22151:6630773,20305079:25952256,513147,134348 -k1,22150:8507888,20305079:160072 -k1,22150:10384347,20305079:160071 -k1,22150:11203711,20305079:160072 -k1,22150:12753145,20305079:160071 -k1,22150:13904777,20305079:160072 -k1,22150:15715045,20305079:160071 -k1,22150:18733142,20305079:160072 -k1,22150:22090716,20305079:160072 -k1,22150:22936949,20305079:160071 -k1,22150:25124705,20305079:160072 -k1,22150:27020169,20305079:160071 -k1,22150:28844855,20305079:160072 -k1,22150:32583029,20305079:0 -) -(1,22151:6630773,21170159:25952256,513147,126483 -k1,22150:8255648,21170159:182428 -k1,22150:9247447,21170159:182429 -k1,22150:12314114,21170159:182428 -k1,22150:16408386,21170159:182428 -k1,22150:17787502,21170159:182429 -k1,22150:20434739,21170159:182428 -k1,22150:23278585,21170159:182429 -k1,22150:23992510,21170159:182428 -k1,22150:25732729,21170159:182428 -k1,22150:28947509,21170159:182429 -k1,22150:30697558,21170159:182428 -k1,22150:32583029,21170159:0 -) -(1,22151:6630773,22035239:25952256,513147,134348 -k1,22150:7788373,22035239:138515 -k1,22150:9664903,22035239:138515 -k1,22150:12840356,22035239:138515 -k1,22150:15444991,22035239:138515 -k1,22150:16211341,22035239:138515 -k1,22150:18041996,22035239:138515 -k1,22150:19877893,22035239:138515 -k1,22150:20675700,22035239:138515 -k1,22150:22239623,22035239:138515 -k1,22150:24222976,22035239:138515 -k1,22150:25750854,22035239:138515 -k1,22150:27283320,22035239:138515 -k1,22150:27777695,22035239:138515 -k1,22150:29975351,22035239:138515 -k1,22150:32583029,22035239:0 -) -(1,22151:6630773,22900319:25952256,513147,134348 -k1,22150:9875679,22900319:263018 -k1,22150:11803311,22900319:263018 -k1,22150:15804502,22900319:263017 -k1,22150:17171802,22900319:263018 -k1,22150:18182586,22900319:263018 -k1,22150:19958830,22900319:263018 -k1,22150:20873275,22900319:263017 -k1,22150:23993663,22900319:263018 -k1,22150:26125768,22900319:263018 -k1,22150:28187094,22900319:263018 -k1,22150:29132996,22900319:263017 -k1,22150:31966991,22900319:263018 -k1,22150:32583029,22900319:0 -) -(1,22151:6630773,23765399:25952256,513147,126483 -k1,22150:10170318,23765399:189345 -k1,22150:10847241,23765399:189335 -k1,22150:12686784,23765399:189346 -k1,22150:15864571,23765399:189345 -k1,22150:19614487,23765399:189345 -k1,22150:20335329,23765399:189345 -k1,22150:21176102,23765399:189345 -k1,22150:22642744,23765399:189345 -k1,22150:25658002,23765399:189346 -k1,22150:26463385,23765399:189345 -k1,22150:27008590,23765399:189345 -k1,22150:30071689,23765399:189345 -k1,22150:32583029,23765399:0 -) -(1,22151:6630773,24630479:25952256,513147,134348 -g1,22150:9388528,24630479 -g1,22150:10606842,24630479 -g1,22150:11943776,24630479 -g1,22150:13536956,24630479 -g1,22150:14092045,24630479 -g1,22150:18824399,24630479 -g1,22150:23688481,24630479 -g1,22150:24547002,24630479 -g1,22150:26171639,24630479 -g1,22150:27030160,24630479 -k1,22151:32583029,24630479:4362736 -g1,22151:32583029,24630479 -) -(1,22153:6630773,25495559:25952256,513147,134348 -h1,22152:6630773,25495559:983040,0,0 -k1,22152:9440575,25495559:183774 -k1,22152:10984876,25495559:183774 -k1,22152:12776247,25495559:183773 -k1,22152:13951581,25495559:183774 -k1,22152:17440336,25495559:183774 -k1,22152:21190579,25495559:183774 -k1,22152:23375167,25495559:183774 -k1,22152:24368311,25495559:183774 -k1,22152:24907944,25495559:183773 -k1,22152:26756332,25495559:183774 -k1,22152:29186025,25495559:183774 -k1,22152:30029091,25495559:183774 -k1,22153:32583029,25495559:0 -) -(1,22153:6630773,26360639:25952256,505283,134348 -k1,22152:8138850,26360639:217673 -k1,22152:9588600,26360639:217673 -k1,22152:12084960,26360639:217673 -h1,22152:13627678,26360639:0,0,0 -k1,22152:13845351,26360639:217673 -k1,22152:14872394,26360639:217673 -k1,22152:16588220,26360639:217673 -h1,22152:17783597,26360639:0,0,0 -k1,22152:18382034,26360639:217673 -k1,22152:19227541,26360639:217672 -k1,22152:20464299,26360639:217673 -k1,22152:23673691,26360639:217673 -k1,22152:24759716,26360639:217673 -k1,22152:26254686,26360639:217673 -k1,22152:28030150,26360639:217673 -k1,22152:31106503,26360639:217673 -k1,22152:32583029,26360639:0 -) -(1,22153:6630773,27225719:25952256,513147,134348 -k1,22152:10064573,27225719:309043 -k1,22152:11863905,27225719:309043 -k1,22152:13229388,27225719:309043 -k1,22152:15793525,27225719:309043 -k1,22152:18216760,27225719:309044 -k1,22152:19322721,27225719:309043 -k1,22152:20046607,27225719:309043 -k1,22152:22886650,27225719:309043 -(1,22152:22886650,27225719:0,452978,115847 -r1,22183:27817170,27225719:4930520,568825,115847 -k1,22152:22886650,27225719:-4930520 -) -(1,22152:22886650,27225719:4930520,452978,115847 -k1,22152:22886650,27225719:3277 -h1,22152:27813893,27225719:0,411205,112570 -) -k1,22152:28126213,27225719:309043 -k1,22152:30002877,27225719:309043 -k1,22152:32583029,27225719:0 -) -(1,22153:6630773,28090799:25952256,505283,95026 -k1,22153:32583028,28090799:21938176 -g1,22153:32583028,28090799 -) -(1,22155:6630773,28955879:25952256,513147,134348 -h1,22154:6630773,28955879:983040,0,0 -k1,22154:8250182,28955879:148781 -k1,22154:10819912,28955879:148830 -k1,22154:14204911,28955879:148831 -k1,22154:15013033,28955879:148830 -k1,22154:16719655,28955879:148831 -k1,22154:20057468,28955879:148831 -k1,22154:21600249,28955879:148830 -k1,22154:26587603,28955879:148831 -k1,22154:28083199,28955879:148831 -k1,22154:29336311,28955879:148830 -k1,22154:30232908,28955879:148831 -k1,22154:32583029,28955879:0 -) -(1,22155:6630773,29820959:25952256,513147,134348 -k1,22154:8563064,29820959:196898 -(1,22154:8563064,29820959:0,452978,115847 -r1,22183:12086736,29820959:3523672,568825,115847 -k1,22154:8563064,29820959:-3523672 -) -(1,22154:8563064,29820959:3523672,452978,115847 -k1,22154:8563064,29820959:3277 -h1,22154:12083459,29820959:0,411205,112570 -) -k1,22154:12457303,29820959:196897 -k1,22154:13850888,29820959:196898 -k1,22154:16192779,29820959:196898 -k1,22154:19431202,29820959:196897 -k1,22154:20647185,29820959:196898 -k1,22154:23329864,29820959:196898 -k1,22154:24186053,29820959:196897 -k1,22154:26968346,29820959:196898 -k1,22154:29279435,29820959:196898 -k1,22154:30273250,29820959:196897 -k1,22154:30884991,29820959:196898 -k1,22154:32583029,29820959:0 -) -(1,22155:6630773,30686039:25952256,505283,102891 -k1,22154:7882813,30686039:232955 -k1,22154:9673560,30686039:232956 -k1,22154:12765195,30686039:232955 -k1,22154:14205324,30686039:232956 -k1,22154:16448268,30686039:232955 -k1,22154:18132845,30686039:232955 -k1,22154:19555935,30686039:232956 -k1,22154:20475052,30686039:232955 -k1,22154:21727092,30686039:232955 -k1,22154:23349411,30686039:232956 -k1,22154:24516909,30686039:232955 -k1,22154:27451914,30686039:232956 -k1,22154:28841579,30686039:232955 -k1,22154:32583029,30686039:0 -) -(1,22155:6630773,31551119:25952256,473825,126483 -g1,22154:7886442,31551119 -k1,22155:32583028,31551119:22389064 -g1,22155:32583028,31551119 -) -v1,22157:6630773,32235974:0,393216,0 -(1,22173:6630773,40788311:25952256,8945553,196608 -g1,22173:6630773,40788311 -g1,22173:6630773,40788311 -g1,22173:6434165,40788311 -(1,22173:6434165,40788311:0,8945553,196608 -r1,22183:32779637,40788311:26345472,9142161,196608 -k1,22173:6434165,40788311:-26345472 -) -(1,22173:6434165,40788311:26345472,8945553,196608 -[1,22173:6630773,40788311:25952256,8748945,0 -(1,22159:6630773,32463805:25952256,424439,106246 -(1,22158:6630773,32463805:0,0,0 -g1,22158:6630773,32463805 -g1,22158:6630773,32463805 -g1,22158:6303093,32463805 -(1,22158:6303093,32463805:0,0,0 -) -g1,22158:6630773,32463805 -) -g1,22159:8954451,32463805 -k1,22159:8954451,32463805:0 -h1,22159:9618359,32463805:0,0,0 -k1,22159:32583029,32463805:22964670 -g1,22159:32583029,32463805 -) -(1,22160:6630773,33148660:25952256,424439,112852 -h1,22160:6630773,33148660:0,0,0 -g1,22160:6962727,33148660 -g1,22160:7294681,33148660 -g1,22160:11278129,33148660 -g1,22160:11942037,33148660 -k1,22160:11942037,33148660:0 -h1,22160:16921346,33148660:0,0,0 -k1,22160:32583029,33148660:15661683 -g1,22160:32583029,33148660 -) -(1,22161:6630773,33833515:25952256,424439,112852 -h1,22161:6630773,33833515:0,0,0 -g1,22161:6962727,33833515 -g1,22161:7294681,33833515 -g1,22161:7626635,33833515 -g1,22161:7958589,33833515 -g1,22161:8290543,33833515 -g1,22161:8622497,33833515 -g1,22161:8954451,33833515 -g1,22161:11610083,33833515 -g1,22161:12273991,33833515 -g1,22161:14265715,33833515 -g1,22161:14929623,33833515 -g1,22161:20572840,33833515 -g1,22161:20904794,33833515 -h1,22161:21236748,33833515:0,0,0 -k1,22161:32583029,33833515:11346281 -g1,22161:32583029,33833515 -) -(1,22162:6630773,34518370:25952256,431045,112852 -h1,22162:6630773,34518370:0,0,0 -g1,22162:6962727,34518370 -g1,22162:7294681,34518370 -g1,22162:12605944,34518370 -g1,22162:13269852,34518370 -g1,22162:16257438,34518370 -g1,22162:17917208,34518370 -g1,22162:18581116,34518370 -g1,22162:21900655,34518370 -g1,22162:23560425,34518370 -g1,22162:24224333,34518370 -k1,22162:24224333,34518370:0 -h1,22162:26216057,34518370:0,0,0 -k1,22162:32583029,34518370:6366972 -g1,22162:32583029,34518370 -) -(1,22163:6630773,35203225:25952256,424439,106246 -h1,22163:6630773,35203225:0,0,0 -g1,22163:6962727,35203225 -g1,22163:7294681,35203225 -g1,22163:7626635,35203225 -g1,22163:7958589,35203225 -g1,22163:8290543,35203225 -g1,22163:8622497,35203225 -g1,22163:8954451,35203225 -g1,22163:9286405,35203225 -g1,22163:9618359,35203225 -g1,22163:9950313,35203225 -g1,22163:10282267,35203225 -g1,22163:13269852,35203225 -g1,22163:13933760,35203225 -g1,22163:15261576,35203225 -g1,22163:18249161,35203225 -g1,22163:18913069,35203225 -g1,22163:19908931,35203225 -g1,22163:21900655,35203225 -g1,22163:22564563,35203225 -g1,22163:24556287,35203225 -h1,22163:24888241,35203225:0,0,0 -k1,22163:32583029,35203225:7694788 -g1,22163:32583029,35203225 -) -(1,22164:6630773,35888080:25952256,424439,106246 -h1,22164:6630773,35888080:0,0,0 -g1,22164:6962727,35888080 -g1,22164:7294681,35888080 -g1,22164:11942036,35888080 -h1,22164:12273990,35888080:0,0,0 -k1,22164:32583030,35888080:20309040 -g1,22164:32583030,35888080 -) -(1,22165:6630773,36572935:25952256,424439,86428 -h1,22165:6630773,36572935:0,0,0 -g1,22165:6962727,36572935 -g1,22165:7294681,36572935 -g1,22165:15925484,36572935 -g1,22165:16589392,36572935 -g1,22165:18249162,36572935 -g1,22165:19576978,36572935 -g1,22165:21236748,36572935 -k1,22165:21236748,36572935:0 -h1,22165:22896518,36572935:0,0,0 -k1,22165:32583029,36572935:9686511 -g1,22165:32583029,36572935 -) -(1,22166:6630773,37257790:25952256,424439,86428 -h1,22166:6630773,37257790:0,0,0 -g1,22166:6962727,37257790 -g1,22166:7294681,37257790 -g1,22166:7626635,37257790 -g1,22166:7958589,37257790 -g1,22166:8290543,37257790 -g1,22166:8622497,37257790 -g1,22166:8954451,37257790 -g1,22166:9286405,37257790 -g1,22166:9618359,37257790 -g1,22166:9950313,37257790 -g1,22166:10282267,37257790 -g1,22166:10614221,37257790 -g1,22166:10946175,37257790 -g1,22166:11278129,37257790 -g1,22166:11610083,37257790 -g1,22166:11942037,37257790 -g1,22166:12273991,37257790 -g1,22166:12605945,37257790 -g1,22166:12937899,37257790 -g1,22166:13269853,37257790 -g1,22166:13601807,37257790 -g1,22166:15925485,37257790 -g1,22166:16589393,37257790 -g1,22166:18913071,37257790 -g1,22166:20572841,37257790 -g1,22166:22232611,37257790 -k1,22166:22232611,37257790:0 -h1,22166:23892381,37257790:0,0,0 -k1,22166:32583029,37257790:8690648 -g1,22166:32583029,37257790 -) -(1,22167:6630773,37942645:25952256,424439,86428 -h1,22167:6630773,37942645:0,0,0 -g1,22167:6962727,37942645 -g1,22167:7294681,37942645 -g1,22167:7626635,37942645 -g1,22167:7958589,37942645 -g1,22167:8290543,37942645 -g1,22167:8622497,37942645 -g1,22167:8954451,37942645 -g1,22167:9286405,37942645 -g1,22167:9618359,37942645 -g1,22167:9950313,37942645 -g1,22167:10282267,37942645 -g1,22167:10614221,37942645 -g1,22167:10946175,37942645 -g1,22167:11278129,37942645 -g1,22167:11610083,37942645 -g1,22167:11942037,37942645 -g1,22167:12273991,37942645 -g1,22167:12605945,37942645 -g1,22167:12937899,37942645 -g1,22167:13269853,37942645 -g1,22167:13601807,37942645 -g1,22167:15925485,37942645 -g1,22167:16589393,37942645 -g1,22167:18249163,37942645 -k1,22167:18249163,37942645:0 -h1,22167:19908933,37942645:0,0,0 -k1,22167:32583029,37942645:12674096 -g1,22167:32583029,37942645 -) -(1,22168:6630773,38627500:25952256,424439,106246 -h1,22168:6630773,38627500:0,0,0 -g1,22168:6962727,38627500 -g1,22168:7294681,38627500 -g1,22168:7626635,38627500 -g1,22168:7958589,38627500 -g1,22168:8290543,38627500 -g1,22168:8622497,38627500 -g1,22168:8954451,38627500 -g1,22168:9286405,38627500 -g1,22168:9618359,38627500 -g1,22168:9950313,38627500 -g1,22168:10282267,38627500 -g1,22168:10614221,38627500 -g1,22168:10946175,38627500 -g1,22168:11278129,38627500 -g1,22168:11610083,38627500 -g1,22168:11942037,38627500 -g1,22168:12273991,38627500 -g1,22168:12605945,38627500 -g1,22168:12937899,38627500 -g1,22168:13269853,38627500 -g1,22168:13601807,38627500 -g1,22168:15925485,38627500 -g1,22168:16589393,38627500 -g1,22168:18249163,38627500 -k1,22168:18249163,38627500:0 -h1,22168:19245025,38627500:0,0,0 -k1,22168:32583029,38627500:13338004 -g1,22168:32583029,38627500 -) -(1,22169:6630773,39312355:25952256,424439,79822 -h1,22169:6630773,39312355:0,0,0 -g1,22169:6962727,39312355 -g1,22169:7294681,39312355 -g1,22169:7626635,39312355 -g1,22169:7958589,39312355 -g1,22169:8290543,39312355 -g1,22169:8622497,39312355 -g1,22169:8954451,39312355 -g1,22169:9286405,39312355 -g1,22169:9618359,39312355 -g1,22169:9950313,39312355 -g1,22169:10282267,39312355 -g1,22169:10614221,39312355 -g1,22169:10946175,39312355 -g1,22169:11278129,39312355 -g1,22169:11610083,39312355 -g1,22169:11942037,39312355 -g1,22169:12273991,39312355 -g1,22169:12605945,39312355 -g1,22169:12937899,39312355 -g1,22169:13269853,39312355 -g1,22169:13601807,39312355 -g1,22169:15261577,39312355 -g1,22169:15925485,39312355 -g1,22169:17917209,39312355 -g1,22169:21900656,39312355 -h1,22169:22232610,39312355:0,0,0 -k1,22169:32583029,39312355:10350419 -g1,22169:32583029,39312355 -) -(1,22170:6630773,39997210:25952256,424439,106246 -h1,22170:6630773,39997210:0,0,0 -g1,22170:6962727,39997210 -g1,22170:7294681,39997210 -g1,22170:15261576,39997210 -g1,22170:15925484,39997210 -g1,22170:19576977,39997210 -h1,22170:22564562,39997210:0,0,0 -k1,22170:32583029,39997210:10018467 -g1,22170:32583029,39997210 -) -(1,22171:6630773,40682065:25952256,424439,106246 -h1,22171:6630773,40682065:0,0,0 -h1,22171:8622497,40682065:0,0,0 -k1,22171:32583029,40682065:23960532 -g1,22171:32583029,40682065 -) -] -) -g1,22173:32583029,40788311 -g1,22173:6630773,40788311 -g1,22173:6630773,40788311 -g1,22173:32583029,40788311 -g1,22173:32583029,40788311 -) -h1,22173:6630773,40984919:0,0,0 -] -(1,22183:32583029,45706769:0,0,0 -g1,22183:32583029,45706769 -) -) -] -(1,22183:6630773,47279633:25952256,0,0 -h1,22183:6630773,47279633:25952256,0,0 -) -] -(1,22183:4262630,4025873:0,0,0 -[1,22183:-473656,4025873:0,0,0 -(1,22183:-473656,-710413:0,0,0 -(1,22183:-473656,-710413:0,0,0 -g1,22183:-473656,-710413 -) -g1,22183:-473656,-710413 +) +k1,22181:3078556,49800853:-34777008 +) +] +g1,22181:6630773,4812305 +k1,22181:21386205,4812305:13560055 +g1,22181:21999622,4812305 +g1,22181:25611966,4812305 +g1,22181:28956923,4812305 +g1,22181:29772190,4812305 +) +) +] +[1,22181:6630773,45706769:25952256,40108032,0 +(1,22181:6630773,45706769:25952256,40108032,0 +(1,22181:6630773,45706769:0,0,0 +g1,22181:6630773,45706769 +) +[1,22181:6630773,45706769:25952256,40108032,0 +(1,22140:6630773,6254097:25952256,32768,229376 +(1,22140:6630773,6254097:0,32768,229376 +(1,22140:6630773,6254097:5505024,32768,229376 +r1,22181:12135797,6254097:5505024,262144,229376 +) +k1,22140:6630773,6254097:-5505024 +) +(1,22140:6630773,6254097:25952256,32768,0 +r1,22181:32583029,6254097:25952256,32768,0 +) +) +(1,22140:6630773,7885949:25952256,606339,14155 +(1,22140:6630773,7885949:2464678,582746,14155 +g1,22140:6630773,7885949 +g1,22140:9095451,7885949 +) +g1,22140:14113674,7885949 +g1,22140:15823377,7885949 +g1,22140:19242784,7885949 +k1,22140:32583029,7885949:11398544 +g1,22140:32583029,7885949 +) +(1,22145:6630773,9144245:25952256,513147,134348 +k1,22143:9406626,9144245:233056 +k1,22143:11247280,9144245:233056 +k1,22143:12584618,9144245:233056 +k1,22143:13565440,9144245:233056 +k1,22143:16325564,9144245:233056 +k1,22143:17217912,9144245:233056 +k1,22143:18137130,9144245:233056 +k1,22143:19977784,9144245:233056 +k1,22143:23515821,9144245:233056 +k1,22143:24400305,9144245:233056 +k1,22143:26377274,9144245:233056 +k1,22143:29700353,9144245:233056 +k1,22143:31966991,9144245:233056 +k1,22143:32583029,9144245:0 +) +(1,22145:6630773,10009325:25952256,513147,134348 +k1,22143:8083753,10009325:249739 +k1,22143:10751115,10009325:249739 +k1,22143:12073023,10009325:249739 +k1,22143:14323576,10009325:249739 +k1,22143:16308708,10009325:249739 +k1,22143:16914307,10009325:249739 +k1,22143:19926389,10009325:249739 +k1,22143:22422047,10009325:249739 +k1,22143:23331078,10009325:249739 +k1,22143:27492661,10009325:249739 +k1,22143:29123244,10009325:249739 +k1,22143:29904480,10009325:249739 +k1,22143:30510079,10009325:249739 +k1,22143:31860823,10009325:249739 +k1,22145:32583029,10009325:0 +) +(1,22145:6630773,10874405:25952256,513147,134348 +k1,22143:8668069,10874405:286174 +k1,22143:10238749,10874405:286174 +k1,22143:11544008,10874405:286174 +k1,22143:14732771,10874405:286173 +k1,22143:15678237,10874405:286174 +k1,22143:18683500,10874405:286174 +k1,22143:19655836,10874405:286174 +k1,22143:24143523,10874405:286174 +k1,22143:25045735,10874405:286174 +k1,22143:28160441,10874405:286173 +k1,22143:30492649,10874405:286174 +k1,22143:31871308,10874405:286174 +k1,22143:32583029,10874405:0 +) +(1,22145:6630773,11739485:25952256,505283,134348 +k1,22143:7653941,11739485:215765 +k1,22143:9893457,11739485:215764 +k1,22143:12530122,11739485:215765 +k1,22143:14353484,11739485:215764 +k1,22143:15437601,11739485:215765 +k1,22143:16745851,11739485:215765 +k1,22143:17980700,11739485:215764 +k1,22143:19849938,11739485:215765 +k1,22143:23656420,11739485:215765 +k1,22143:26554573,11739485:215764 +k1,22143:27961783,11739485:215765 +k1,22143:30023697,11739485:215764 +k1,22143:31107814,11739485:215765 +k1,22143:32583029,11739485:0 +) +(1,22145:6630773,12604565:25952256,513147,134348 +k1,22143:8289943,12604565:149220 +k1,22143:10174557,12604565:149221 +k1,22143:11717728,12604565:149220 +k1,22143:12886033,12604565:149220 +k1,22143:15300834,12604565:149221 +k1,22143:17695973,12604565:149220 +k1,22143:18504485,12604565:149220 +k1,22143:21537944,12604565:149220 +k1,22143:25599009,12604565:149221 +k1,22143:26944916,12604565:149220 +k1,22143:28469737,12604565:149220 +k1,22143:30280951,12604565:149221 +k1,22143:31714677,12604565:149220 +k1,22143:32583029,12604565:0 +) +(1,22145:6630773,13469645:25952256,513147,126483 +k1,22143:8320348,13469645:159309 +k1,22143:9131085,13469645:159309 +k1,22143:10105661,13469645:159308 +k1,22143:10796467,13469645:159309 +k1,22143:11607204,13469645:159309 +k1,22143:12963856,13469645:159309 +(1,22143:12963856,13469645:0,452978,115847 +r1,22181:17542664,13469645:4578808,568825,115847 +k1,22143:12963856,13469645:-4578808 +) +(1,22143:12963856,13469645:4578808,452978,115847 +k1,22143:12963856,13469645:3277 +h1,22143:17539387,13469645:0,411205,112570 +) +k1,22143:17701973,13469645:159309 +k1,22143:18512709,13469645:159308 +k1,22143:21317051,13469645:159309 +k1,22143:22495445,13469645:159309 +k1,22143:25094004,13469645:159309 +k1,22143:26027293,13469645:159309 +k1,22143:28295550,13469645:159308 +k1,22143:29830460,13469645:159309 +k1,22143:31681909,13469645:159309 +k1,22145:32583029,13469645:0 +) +(1,22145:6630773,14334725:25952256,505283,126483 +k1,22143:8940098,14334725:218071 +k1,22143:12341908,14334725:218071 +k1,22143:13664261,14334725:218071 +k1,22143:14630098,14334725:218071 +k1,22143:16745436,14334725:218071 +k1,22143:20027316,14334725:218072 +k1,22143:20861425,14334725:218071 +k1,22143:23500396,14334725:218071 +k1,22143:25326065,14334725:218071 +k1,22143:26986583,14334725:218071 +k1,22143:27820692,14334725:218071 +k1,22143:30923002,14334725:218071 +k1,22143:32583029,14334725:0 +) +(1,22145:6630773,15199805:25952256,513147,134348 +k1,22143:7908089,15199805:258231 +k1,22143:11068910,15199805:258231 +k1,22143:11986433,15199805:258231 +k1,22143:15137423,15199805:258231 +k1,22143:19190844,15199805:258232 +k1,22143:20942641,15199805:258231 +k1,22143:21887034,15199805:258231 +(1,22143:21887034,15199805:0,452978,115847 +r1,22181:26465842,15199805:4578808,568825,115847 +k1,22143:21887034,15199805:-4578808 +) +(1,22143:21887034,15199805:4578808,452978,115847 +k1,22143:21887034,15199805:3277 +h1,22143:26462565,15199805:0,411205,112570 +) +k1,22143:26897743,15199805:258231 +k1,22144:28939209,15199805:258231 +k1,22144:30932833,15199805:258231 +k1,22144:32583029,15199805:0 +) +(1,22145:6630773,16064885:25952256,505283,134348 +k1,22144:10816047,16064885:273430 +k1,22144:12108562,16064885:273430 +(1,22144:12108562,16064885:0,414482,115847 +r1,22181:12466828,16064885:358266,530329,115847 +k1,22144:12108562,16064885:-358266 +) +(1,22144:12108562,16064885:358266,414482,115847 +k1,22144:12108562,16064885:3277 +h1,22144:12463551,16064885:0,411205,112570 +) +k1,22144:12740259,16064885:273431 +k1,22144:14205134,16064885:273430 +(1,22144:14205134,16064885:0,414482,115847 +r1,22181:14563400,16064885:358266,530329,115847 +k1,22144:14205134,16064885:-358266 +) +(1,22144:14205134,16064885:358266,414482,115847 +k1,22144:14205134,16064885:3277 +h1,22144:14560123,16064885:0,411205,112570 +) +k1,22144:14836830,16064885:273430 +k1,22144:18174724,16064885:273430 +k1,22144:22081470,16064885:273430 +k1,22144:23006328,16064885:273430 +k1,22144:24298844,16064885:273431 +k1,22144:26269656,16064885:273430 +k1,22144:27734531,16064885:273430 +k1,22144:29835105,16064885:273430 +k1,22144:32583029,16064885:0 +) +(1,22145:6630773,16929965:25952256,505283,126483 +k1,22145:32583030,16929965:22103328 +g1,22145:32583030,16929965 +) +(1,22146:6630773,19046783:25952256,555811,139132 +(1,22146:6630773,19046783:2899444,534184,12975 +g1,22146:6630773,19046783 +g1,22146:9530217,19046783 +) +g1,22146:13388453,19046783 +k1,22146:32583029,19046783:17387290 +g1,22146:32583029,19046783 +) +(1,22149:6630773,20305079:25952256,513147,134348 +k1,22148:8507888,20305079:160072 +k1,22148:10384347,20305079:160071 +k1,22148:11203711,20305079:160072 +k1,22148:12753145,20305079:160071 +k1,22148:13904777,20305079:160072 +k1,22148:15715045,20305079:160071 +k1,22148:18733142,20305079:160072 +k1,22148:22090716,20305079:160072 +k1,22148:22936949,20305079:160071 +k1,22148:25124705,20305079:160072 +k1,22148:27020169,20305079:160071 +k1,22148:28844855,20305079:160072 +k1,22148:32583029,20305079:0 +) +(1,22149:6630773,21170159:25952256,513147,126483 +k1,22148:8255648,21170159:182428 +k1,22148:9247447,21170159:182429 +k1,22148:12314114,21170159:182428 +k1,22148:16408386,21170159:182428 +k1,22148:17787502,21170159:182429 +k1,22148:20434739,21170159:182428 +k1,22148:23278585,21170159:182429 +k1,22148:23992510,21170159:182428 +k1,22148:25732729,21170159:182428 +k1,22148:28947509,21170159:182429 +k1,22148:30697558,21170159:182428 +k1,22148:32583029,21170159:0 +) +(1,22149:6630773,22035239:25952256,513147,134348 +k1,22148:7788373,22035239:138515 +k1,22148:9664903,22035239:138515 +k1,22148:12840356,22035239:138515 +k1,22148:15444991,22035239:138515 +k1,22148:16211341,22035239:138515 +k1,22148:18041996,22035239:138515 +k1,22148:19877893,22035239:138515 +k1,22148:20675700,22035239:138515 +k1,22148:22239623,22035239:138515 +k1,22148:24222976,22035239:138515 +k1,22148:25750854,22035239:138515 +k1,22148:27283320,22035239:138515 +k1,22148:27777695,22035239:138515 +k1,22148:29975351,22035239:138515 +k1,22148:32583029,22035239:0 +) +(1,22149:6630773,22900319:25952256,513147,134348 +k1,22148:9875679,22900319:263018 +k1,22148:11803311,22900319:263018 +k1,22148:15804502,22900319:263017 +k1,22148:17171802,22900319:263018 +k1,22148:18182586,22900319:263018 +k1,22148:19958830,22900319:263018 +k1,22148:20873275,22900319:263017 +k1,22148:23993663,22900319:263018 +k1,22148:26125768,22900319:263018 +k1,22148:28187094,22900319:263018 +k1,22148:29132996,22900319:263017 +k1,22148:31966991,22900319:263018 +k1,22148:32583029,22900319:0 +) +(1,22149:6630773,23765399:25952256,513147,126483 +k1,22148:10170318,23765399:189345 +k1,22148:10847241,23765399:189335 +k1,22148:12686784,23765399:189346 +k1,22148:15864571,23765399:189345 +k1,22148:19614487,23765399:189345 +k1,22148:20335329,23765399:189345 +k1,22148:21176102,23765399:189345 +k1,22148:22642744,23765399:189345 +k1,22148:25658002,23765399:189346 +k1,22148:26463385,23765399:189345 +k1,22148:27008590,23765399:189345 +k1,22148:30071689,23765399:189345 +k1,22148:32583029,23765399:0 +) +(1,22149:6630773,24630479:25952256,513147,134348 +g1,22148:9388528,24630479 +g1,22148:10606842,24630479 +g1,22148:11943776,24630479 +g1,22148:13536956,24630479 +g1,22148:14092045,24630479 +g1,22148:18824399,24630479 +g1,22148:23688481,24630479 +g1,22148:24547002,24630479 +g1,22148:26171639,24630479 +g1,22148:27030160,24630479 +k1,22149:32583029,24630479:4362736 +g1,22149:32583029,24630479 +) +(1,22151:6630773,25495559:25952256,513147,134348 +h1,22150:6630773,25495559:983040,0,0 +k1,22150:9440575,25495559:183774 +k1,22150:10984876,25495559:183774 +k1,22150:12776247,25495559:183773 +k1,22150:13951581,25495559:183774 +k1,22150:17440336,25495559:183774 +k1,22150:21190579,25495559:183774 +k1,22150:23375167,25495559:183774 +k1,22150:24368311,25495559:183774 +k1,22150:24907944,25495559:183773 +k1,22150:26756332,25495559:183774 +k1,22150:29186025,25495559:183774 +k1,22150:30029091,25495559:183774 +k1,22151:32583029,25495559:0 +) +(1,22151:6630773,26360639:25952256,505283,134348 +k1,22150:8138850,26360639:217673 +k1,22150:9588600,26360639:217673 +k1,22150:12084960,26360639:217673 +h1,22150:13627678,26360639:0,0,0 +k1,22150:13845351,26360639:217673 +k1,22150:14872394,26360639:217673 +k1,22150:16588220,26360639:217673 +h1,22150:17783597,26360639:0,0,0 +k1,22150:18382034,26360639:217673 +k1,22150:19227541,26360639:217672 +k1,22150:20464299,26360639:217673 +k1,22150:23673691,26360639:217673 +k1,22150:24759716,26360639:217673 +k1,22150:26254686,26360639:217673 +k1,22150:28030150,26360639:217673 +k1,22150:31106503,26360639:217673 +k1,22150:32583029,26360639:0 +) +(1,22151:6630773,27225719:25952256,513147,134348 +k1,22150:10064573,27225719:309043 +k1,22150:11863905,27225719:309043 +k1,22150:13229388,27225719:309043 +k1,22150:15793525,27225719:309043 +k1,22150:18216760,27225719:309044 +k1,22150:19322721,27225719:309043 +k1,22150:20046607,27225719:309043 +k1,22150:22886650,27225719:309043 +(1,22150:22886650,27225719:0,452978,115847 +r1,22181:27817170,27225719:4930520,568825,115847 +k1,22150:22886650,27225719:-4930520 +) +(1,22150:22886650,27225719:4930520,452978,115847 +k1,22150:22886650,27225719:3277 +h1,22150:27813893,27225719:0,411205,112570 +) +k1,22150:28126213,27225719:309043 +k1,22150:30002877,27225719:309043 +k1,22150:32583029,27225719:0 +) +(1,22151:6630773,28090799:25952256,505283,95026 +k1,22151:32583028,28090799:21938176 +g1,22151:32583028,28090799 +) +(1,22153:6630773,28955879:25952256,513147,134348 +h1,22152:6630773,28955879:983040,0,0 +k1,22152:8250182,28955879:148781 +k1,22152:10819912,28955879:148830 +k1,22152:14204911,28955879:148831 +k1,22152:15013033,28955879:148830 +k1,22152:16719655,28955879:148831 +k1,22152:20057468,28955879:148831 +k1,22152:21600249,28955879:148830 +k1,22152:26587603,28955879:148831 +k1,22152:28083199,28955879:148831 +k1,22152:29336311,28955879:148830 +k1,22152:30232908,28955879:148831 +k1,22152:32583029,28955879:0 +) +(1,22153:6630773,29820959:25952256,513147,134348 +k1,22152:8563064,29820959:196898 +(1,22152:8563064,29820959:0,452978,115847 +r1,22181:12086736,29820959:3523672,568825,115847 +k1,22152:8563064,29820959:-3523672 +) +(1,22152:8563064,29820959:3523672,452978,115847 +k1,22152:8563064,29820959:3277 +h1,22152:12083459,29820959:0,411205,112570 +) +k1,22152:12457303,29820959:196897 +k1,22152:13850888,29820959:196898 +k1,22152:16192779,29820959:196898 +k1,22152:19431202,29820959:196897 +k1,22152:20647185,29820959:196898 +k1,22152:23329864,29820959:196898 +k1,22152:24186053,29820959:196897 +k1,22152:26968346,29820959:196898 +k1,22152:29279435,29820959:196898 +k1,22152:30273250,29820959:196897 +k1,22152:30884991,29820959:196898 +k1,22152:32583029,29820959:0 +) +(1,22153:6630773,30686039:25952256,505283,102891 +k1,22152:7882813,30686039:232955 +k1,22152:9673560,30686039:232956 +k1,22152:12765195,30686039:232955 +k1,22152:14205324,30686039:232956 +k1,22152:16448268,30686039:232955 +k1,22152:18132845,30686039:232955 +k1,22152:19555935,30686039:232956 +k1,22152:20475052,30686039:232955 +k1,22152:21727092,30686039:232955 +k1,22152:23349411,30686039:232956 +k1,22152:24516909,30686039:232955 +k1,22152:27451914,30686039:232956 +k1,22152:28841579,30686039:232955 +k1,22152:32583029,30686039:0 +) +(1,22153:6630773,31551119:25952256,473825,126483 +g1,22152:7886442,31551119 +k1,22153:32583028,31551119:22389064 +g1,22153:32583028,31551119 +) +v1,22155:6630773,32235974:0,393216,0 +(1,22171:6630773,40788311:25952256,8945553,196608 +g1,22171:6630773,40788311 +g1,22171:6630773,40788311 +g1,22171:6434165,40788311 +(1,22171:6434165,40788311:0,8945553,196608 +r1,22181:32779637,40788311:26345472,9142161,196608 +k1,22171:6434165,40788311:-26345472 +) +(1,22171:6434165,40788311:26345472,8945553,196608 +[1,22171:6630773,40788311:25952256,8748945,0 +(1,22157:6630773,32463805:25952256,424439,106246 +(1,22156:6630773,32463805:0,0,0 +g1,22156:6630773,32463805 +g1,22156:6630773,32463805 +g1,22156:6303093,32463805 +(1,22156:6303093,32463805:0,0,0 +) +g1,22156:6630773,32463805 +) +g1,22157:8954451,32463805 +k1,22157:8954451,32463805:0 +h1,22157:9618359,32463805:0,0,0 +k1,22157:32583029,32463805:22964670 +g1,22157:32583029,32463805 +) +(1,22158:6630773,33148660:25952256,424439,112852 +h1,22158:6630773,33148660:0,0,0 +g1,22158:6962727,33148660 +g1,22158:7294681,33148660 +g1,22158:11278129,33148660 +g1,22158:11942037,33148660 +k1,22158:11942037,33148660:0 +h1,22158:16921346,33148660:0,0,0 +k1,22158:32583029,33148660:15661683 +g1,22158:32583029,33148660 +) +(1,22159:6630773,33833515:25952256,424439,112852 +h1,22159:6630773,33833515:0,0,0 +g1,22159:6962727,33833515 +g1,22159:7294681,33833515 +g1,22159:7626635,33833515 +g1,22159:7958589,33833515 +g1,22159:8290543,33833515 +g1,22159:8622497,33833515 +g1,22159:8954451,33833515 +g1,22159:11610083,33833515 +g1,22159:12273991,33833515 +g1,22159:14265715,33833515 +g1,22159:14929623,33833515 +g1,22159:20572840,33833515 +g1,22159:20904794,33833515 +h1,22159:21236748,33833515:0,0,0 +k1,22159:32583029,33833515:11346281 +g1,22159:32583029,33833515 +) +(1,22160:6630773,34518370:25952256,431045,112852 +h1,22160:6630773,34518370:0,0,0 +g1,22160:6962727,34518370 +g1,22160:7294681,34518370 +g1,22160:12605944,34518370 +g1,22160:13269852,34518370 +g1,22160:16257438,34518370 +g1,22160:17917208,34518370 +g1,22160:18581116,34518370 +g1,22160:21900655,34518370 +g1,22160:23560425,34518370 +g1,22160:24224333,34518370 +k1,22160:24224333,34518370:0 +h1,22160:26216057,34518370:0,0,0 +k1,22160:32583029,34518370:6366972 +g1,22160:32583029,34518370 +) +(1,22161:6630773,35203225:25952256,424439,106246 +h1,22161:6630773,35203225:0,0,0 +g1,22161:6962727,35203225 +g1,22161:7294681,35203225 +g1,22161:7626635,35203225 +g1,22161:7958589,35203225 +g1,22161:8290543,35203225 +g1,22161:8622497,35203225 +g1,22161:8954451,35203225 +g1,22161:9286405,35203225 +g1,22161:9618359,35203225 +g1,22161:9950313,35203225 +g1,22161:10282267,35203225 +g1,22161:13269852,35203225 +g1,22161:13933760,35203225 +g1,22161:15261576,35203225 +g1,22161:18249161,35203225 +g1,22161:18913069,35203225 +g1,22161:19908931,35203225 +g1,22161:21900655,35203225 +g1,22161:22564563,35203225 +g1,22161:24556287,35203225 +h1,22161:24888241,35203225:0,0,0 +k1,22161:32583029,35203225:7694788 +g1,22161:32583029,35203225 +) +(1,22162:6630773,35888080:25952256,424439,106246 +h1,22162:6630773,35888080:0,0,0 +g1,22162:6962727,35888080 +g1,22162:7294681,35888080 +g1,22162:11942036,35888080 +h1,22162:12273990,35888080:0,0,0 +k1,22162:32583030,35888080:20309040 +g1,22162:32583030,35888080 +) +(1,22163:6630773,36572935:25952256,424439,86428 +h1,22163:6630773,36572935:0,0,0 +g1,22163:6962727,36572935 +g1,22163:7294681,36572935 +g1,22163:15925484,36572935 +g1,22163:16589392,36572935 +g1,22163:18249162,36572935 +g1,22163:19576978,36572935 +g1,22163:21236748,36572935 +k1,22163:21236748,36572935:0 +h1,22163:22896518,36572935:0,0,0 +k1,22163:32583029,36572935:9686511 +g1,22163:32583029,36572935 +) +(1,22164:6630773,37257790:25952256,424439,86428 +h1,22164:6630773,37257790:0,0,0 +g1,22164:6962727,37257790 +g1,22164:7294681,37257790 +g1,22164:7626635,37257790 +g1,22164:7958589,37257790 +g1,22164:8290543,37257790 +g1,22164:8622497,37257790 +g1,22164:8954451,37257790 +g1,22164:9286405,37257790 +g1,22164:9618359,37257790 +g1,22164:9950313,37257790 +g1,22164:10282267,37257790 +g1,22164:10614221,37257790 +g1,22164:10946175,37257790 +g1,22164:11278129,37257790 +g1,22164:11610083,37257790 +g1,22164:11942037,37257790 +g1,22164:12273991,37257790 +g1,22164:12605945,37257790 +g1,22164:12937899,37257790 +g1,22164:13269853,37257790 +g1,22164:13601807,37257790 +g1,22164:15925485,37257790 +g1,22164:16589393,37257790 +g1,22164:18913071,37257790 +g1,22164:20572841,37257790 +g1,22164:22232611,37257790 +k1,22164:22232611,37257790:0 +h1,22164:23892381,37257790:0,0,0 +k1,22164:32583029,37257790:8690648 +g1,22164:32583029,37257790 +) +(1,22165:6630773,37942645:25952256,424439,86428 +h1,22165:6630773,37942645:0,0,0 +g1,22165:6962727,37942645 +g1,22165:7294681,37942645 +g1,22165:7626635,37942645 +g1,22165:7958589,37942645 +g1,22165:8290543,37942645 +g1,22165:8622497,37942645 +g1,22165:8954451,37942645 +g1,22165:9286405,37942645 +g1,22165:9618359,37942645 +g1,22165:9950313,37942645 +g1,22165:10282267,37942645 +g1,22165:10614221,37942645 +g1,22165:10946175,37942645 +g1,22165:11278129,37942645 +g1,22165:11610083,37942645 +g1,22165:11942037,37942645 +g1,22165:12273991,37942645 +g1,22165:12605945,37942645 +g1,22165:12937899,37942645 +g1,22165:13269853,37942645 +g1,22165:13601807,37942645 +g1,22165:15925485,37942645 +g1,22165:16589393,37942645 +g1,22165:18249163,37942645 +k1,22165:18249163,37942645:0 +h1,22165:19908933,37942645:0,0,0 +k1,22165:32583029,37942645:12674096 +g1,22165:32583029,37942645 +) +(1,22166:6630773,38627500:25952256,424439,106246 +h1,22166:6630773,38627500:0,0,0 +g1,22166:6962727,38627500 +g1,22166:7294681,38627500 +g1,22166:7626635,38627500 +g1,22166:7958589,38627500 +g1,22166:8290543,38627500 +g1,22166:8622497,38627500 +g1,22166:8954451,38627500 +g1,22166:9286405,38627500 +g1,22166:9618359,38627500 +g1,22166:9950313,38627500 +g1,22166:10282267,38627500 +g1,22166:10614221,38627500 +g1,22166:10946175,38627500 +g1,22166:11278129,38627500 +g1,22166:11610083,38627500 +g1,22166:11942037,38627500 +g1,22166:12273991,38627500 +g1,22166:12605945,38627500 +g1,22166:12937899,38627500 +g1,22166:13269853,38627500 +g1,22166:13601807,38627500 +g1,22166:15925485,38627500 +g1,22166:16589393,38627500 +g1,22166:18249163,38627500 +k1,22166:18249163,38627500:0 +h1,22166:19245025,38627500:0,0,0 +k1,22166:32583029,38627500:13338004 +g1,22166:32583029,38627500 +) +(1,22167:6630773,39312355:25952256,424439,79822 +h1,22167:6630773,39312355:0,0,0 +g1,22167:6962727,39312355 +g1,22167:7294681,39312355 +g1,22167:7626635,39312355 +g1,22167:7958589,39312355 +g1,22167:8290543,39312355 +g1,22167:8622497,39312355 +g1,22167:8954451,39312355 +g1,22167:9286405,39312355 +g1,22167:9618359,39312355 +g1,22167:9950313,39312355 +g1,22167:10282267,39312355 +g1,22167:10614221,39312355 +g1,22167:10946175,39312355 +g1,22167:11278129,39312355 +g1,22167:11610083,39312355 +g1,22167:11942037,39312355 +g1,22167:12273991,39312355 +g1,22167:12605945,39312355 +g1,22167:12937899,39312355 +g1,22167:13269853,39312355 +g1,22167:13601807,39312355 +g1,22167:15261577,39312355 +g1,22167:15925485,39312355 +g1,22167:17917209,39312355 +g1,22167:21900656,39312355 +h1,22167:22232610,39312355:0,0,0 +k1,22167:32583029,39312355:10350419 +g1,22167:32583029,39312355 +) +(1,22168:6630773,39997210:25952256,424439,106246 +h1,22168:6630773,39997210:0,0,0 +g1,22168:6962727,39997210 +g1,22168:7294681,39997210 +g1,22168:15261576,39997210 +g1,22168:15925484,39997210 +g1,22168:19576977,39997210 +h1,22168:22564562,39997210:0,0,0 +k1,22168:32583029,39997210:10018467 +g1,22168:32583029,39997210 +) +(1,22169:6630773,40682065:25952256,424439,106246 +h1,22169:6630773,40682065:0,0,0 +h1,22169:8622497,40682065:0,0,0 +k1,22169:32583029,40682065:23960532 +g1,22169:32583029,40682065 +) +] +) +g1,22171:32583029,40788311 +g1,22171:6630773,40788311 +g1,22171:6630773,40788311 +g1,22171:32583029,40788311 +g1,22171:32583029,40788311 +) +h1,22171:6630773,40984919:0,0,0 +] +(1,22181:32583029,45706769:0,0,0 +g1,22181:32583029,45706769 +) +) +] +(1,22181:6630773,47279633:25952256,0,0 +h1,22181:6630773,47279633:25952256,0,0 +) +] +(1,22181:4262630,4025873:0,0,0 +[1,22181:-473656,4025873:0,0,0 +(1,22181:-473656,-710413:0,0,0 +(1,22181:-473656,-710413:0,0,0 +g1,22181:-473656,-710413 +) +g1,22181:-473656,-710413 ) ] ) ] !24290 -}377 -Input:4199:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4200:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4201:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4202:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}378 Input:4203:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4204:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4205:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4206:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4207:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4208:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{378 -[1,22214:4262630,47279633:28320399,43253760,0 -(1,22214:4262630,4025873:0,0,0 -[1,22214:-473656,4025873:0,0,0 -(1,22214:-473656,-710413:0,0,0 -(1,22214:-473656,-644877:0,0,0 -k1,22214:-473656,-644877:-65536 +{379 +[1,22212:4262630,47279633:28320399,43253760,0 +(1,22212:4262630,4025873:0,0,0 +[1,22212:-473656,4025873:0,0,0 +(1,22212:-473656,-710413:0,0,0 +(1,22212:-473656,-644877:0,0,0 +k1,22212:-473656,-644877:-65536 ) -(1,22214:-473656,4736287:0,0,0 -k1,22214:-473656,4736287:5209943 +(1,22212:-473656,4736287:0,0,0 +k1,22212:-473656,4736287:5209943 ) -g1,22214:-473656,-710413 +g1,22212:-473656,-710413 ) ] ) -[1,22214:6630773,47279633:25952256,43253760,0 -[1,22214:6630773,4812305:25952256,786432,0 -(1,22214:6630773,4812305:25952256,505283,11795 -(1,22214:6630773,4812305:25952256,505283,11795 -g1,22214:3078558,4812305 -[1,22214:3078558,4812305:0,0,0 -(1,22214:3078558,2439708:0,1703936,0 -k1,22214:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22214:2537886,2439708:1179648,16384,0 +[1,22212:6630773,47279633:25952256,43253760,0 +[1,22212:6630773,4812305:25952256,786432,0 +(1,22212:6630773,4812305:25952256,505283,11795 +(1,22212:6630773,4812305:25952256,505283,11795 +g1,22212:3078558,4812305 +[1,22212:3078558,4812305:0,0,0 +(1,22212:3078558,2439708:0,1703936,0 +k1,22212:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22212:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22214:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22212:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22214:3078558,4812305:0,0,0 -(1,22214:3078558,2439708:0,1703936,0 -g1,22214:29030814,2439708 -g1,22214:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22214:36151628,1915420:16384,1179648,0 +[1,22212:3078558,4812305:0,0,0 +(1,22212:3078558,2439708:0,1703936,0 +g1,22212:29030814,2439708 +g1,22212:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22212:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22214:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22212:37855564,2439708:1179648,16384,0 ) ) -k1,22214:3078556,2439708:-34777008 +k1,22212:3078556,2439708:-34777008 ) ] -[1,22214:3078558,4812305:0,0,0 -(1,22214:3078558,49800853:0,16384,2228224 -k1,22214:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22214:2537886,49800853:1179648,16384,0 +[1,22212:3078558,4812305:0,0,0 +(1,22212:3078558,49800853:0,16384,2228224 +k1,22212:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22212:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22214:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22212:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22214:3078558,4812305:0,0,0 -(1,22214:3078558,49800853:0,16384,2228224 -g1,22214:29030814,49800853 -g1,22214:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22214:36151628,51504789:16384,1179648,0 +[1,22212:3078558,4812305:0,0,0 +(1,22212:3078558,49800853:0,16384,2228224 +g1,22212:29030814,49800853 +g1,22212:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22212:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22214:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22212:37855564,49800853:1179648,16384,0 ) ) -k1,22214:3078556,49800853:-34777008 +k1,22212:3078556,49800853:-34777008 ) ] -g1,22214:6630773,4812305 -g1,22214:6630773,4812305 -g1,22214:10600288,4812305 -g1,22214:12009967,4812305 -g1,22214:14802456,4812305 -g1,22214:16458550,4812305 -k1,22214:31387652,4812305:14929102 +g1,22212:6630773,4812305 +g1,22212:6630773,4812305 +g1,22212:10600288,4812305 +g1,22212:12009967,4812305 +g1,22212:14802456,4812305 +g1,22212:16458550,4812305 +k1,22212:31387652,4812305:14929102 ) ) ] -[1,22214:6630773,45706769:25952256,40108032,0 -(1,22214:6630773,45706769:25952256,40108032,0 -(1,22214:6630773,45706769:0,0,0 -g1,22214:6630773,45706769 +[1,22212:6630773,45706769:25952256,40108032,0 +(1,22212:6630773,45706769:25952256,40108032,0 +(1,22212:6630773,45706769:0,0,0 +g1,22212:6630773,45706769 ) -[1,22214:6630773,45706769:25952256,40108032,0 -(1,22176:6630773,14682403:25952256,9083666,0 -k1,22176:10523651,14682403:3892878 -h1,22175:10523651,14682403:0,0,0 -(1,22175:10523651,14682403:18166500,9083666,0 -(1,22175:10523651,14682403:18167376,9083688,0 -(1,22175:10523651,14682403:18167376,9083688,0 -(1,22175:10523651,14682403:0,9083688,0 -(1,22175:10523651,14682403:0,14208860,0 -(1,22175:10523651,14682403:28417720,14208860,0 +[1,22212:6630773,45706769:25952256,40108032,0 +(1,22174:6630773,14682403:25952256,9083666,0 +k1,22174:10523651,14682403:3892878 +h1,22173:10523651,14682403:0,0,0 +(1,22173:10523651,14682403:18166500,9083666,0 +(1,22173:10523651,14682403:18167376,9083688,0 +(1,22173:10523651,14682403:18167376,9083688,0 +(1,22173:10523651,14682403:0,9083688,0 +(1,22173:10523651,14682403:0,14208860,0 +(1,22173:10523651,14682403:28417720,14208860,0 ) -k1,22175:10523651,14682403:-28417720 +k1,22173:10523651,14682403:-28417720 ) ) -g1,22175:28691027,14682403 -) -) -) -g1,22176:28690151,14682403 -k1,22176:32583029,14682403:3892878 +g1,22173:28691027,14682403 +) +) +) +g1,22174:28690151,14682403 +k1,22174:32583029,14682403:3892878 ) -v1,22183:6630773,15547483:0,393216,0 -(1,22184:6630773,16819388:25952256,1665121,0 -g1,22184:6630773,16819388 -g1,22184:6237557,16819388 -r1,22214:6368629,16819388:131072,1665121,0 -g1,22184:6567858,16819388 -g1,22184:6764466,16819388 -[1,22184:6764466,16819388:25818563,1665121,0 -(1,22184:6764466,15819960:25818563,665693,196608 -(1,22183:6764466,15819960:0,665693,196608 -r1,22214:7868133,15819960:1103667,862301,196608 -k1,22183:6764466,15819960:-1103667 -) -(1,22183:6764466,15819960:1103667,665693,196608 -) -k1,22183:8101756,15819960:233623 -k1,22183:9827974,15819960:327680 -k1,22183:10689431,15819960:233622 -k1,22183:11942139,15819960:233623 -k1,22183:14837179,15819960:233623 -k1,22183:17099796,15819960:233622 -(1,22183:17099796,15819960:0,452978,122846 -r1,22214:20623468,15819960:3523672,575824,122846 -k1,22183:17099796,15819960:-3523672 -) -(1,22183:17099796,15819960:3523672,452978,122846 -k1,22183:17099796,15819960:3277 -h1,22183:20620191,15819960:0,411205,112570 -) -k1,22183:20857091,15819960:233623 -k1,22183:22297887,15819960:233623 -k1,22183:24218407,15819960:233623 -k1,22183:25701801,15819960:233622 -k1,22183:26954509,15819960:233623 -k1,22183:28684319,15819960:233623 -k1,22183:29569369,15819960:233622 -k1,22183:30895477,15819960:233623 -k1,22183:32583029,15819960:0 -) -(1,22184:6764466,16685040:25818563,505283,134348 -g1,22183:10644852,16685040 -g1,22183:12086644,16685040 -(1,22183:12086644,16685040:0,452978,122846 -r1,22214:15962028,16685040:3875384,575824,122846 -k1,22183:12086644,16685040:-3875384 -) -(1,22183:12086644,16685040:3875384,452978,122846 -k1,22183:12086644,16685040:3277 -h1,22183:15958751,16685040:0,411205,112570 -) -g1,22183:16161257,16685040 -g1,22183:17551931,16685040 -(1,22183:17551931,16685040:0,452978,122846 -r1,22214:21427315,16685040:3875384,575824,122846 -k1,22183:17551931,16685040:-3875384 -) -(1,22183:17551931,16685040:3875384,452978,122846 -k1,22183:17551931,16685040:3277 -h1,22183:21424038,16685040:0,411205,112570 -) -k1,22184:32583029,16685040:11103286 -g1,22184:32583029,16685040 -) -] -g1,22184:32583029,16819388 -) -h1,22184:6630773,16819388:0,0,0 -v1,22187:6630773,17684468:0,393216,0 -(1,22190:6630773,27695873:25952256,10404621,0 -g1,22190:6630773,27695873 -g1,22190:6237557,27695873 -r1,22214:6368629,27695873:131072,10404621,0 -g1,22190:6567858,27695873 -g1,22190:6764466,27695873 -[1,22190:6764466,27695873:25818563,10404621,0 -(1,22188:6764466,18045645:25818563,754393,260573 -(1,22187:6764466,18045645:0,754393,260573 -r1,22214:7856192,18045645:1091726,1014966,260573 -k1,22187:6764466,18045645:-1091726 -) -(1,22187:6764466,18045645:1091726,754393,260573 -) -k1,22187:8070252,18045645:214060 -k1,22187:8397932,18045645:327680 -k1,22187:9099565,18045645:214045 -k1,22187:10590921,18045645:214059 -k1,22187:13155102,18045645:214060 -k1,22187:15104555,18045645:214060 -k1,22187:16983229,18045645:214060 -k1,22187:20935462,18045645:214059 -k1,22187:21681019,18045645:214060 -k1,22187:22961350,18045645:214060 -k1,22187:24701744,18045645:214060 -k1,22187:27510373,18045645:214059 -k1,22187:28796602,18045645:214060 -k1,22187:32227169,18045645:214060 -k1,22187:32583029,18045645:0 -) -(1,22188:6764466,18910725:25818563,513147,126483 -k1,22187:8278457,18910725:236694 -k1,22187:10369821,18910725:236695 -k1,22187:11415885,18910725:236694 -k1,22187:14536818,18910725:236694 -k1,22187:18511686,18910725:236694 -k1,22187:20609603,18910725:236695 -k1,22187:22113763,18910725:236694 -k1,22187:22706317,18910725:236694 -k1,22187:24825860,18910725:236694 -k1,22187:26259242,18910725:236695 -k1,22187:29682296,18910725:236694 -k1,22187:30450487,18910725:236694 -k1,22187:32583029,18910725:0 -) -(1,22188:6764466,19775805:25818563,513147,126483 -k1,22187:7628711,19775805:248207 -k1,22187:8896002,19775805:248206 -k1,22187:10511290,19775805:248207 -k1,22187:11418789,19775805:248207 -k1,22187:13359135,19775805:248206 -k1,22187:16738652,19775805:248207 -k1,22187:18768128,19775805:248207 -k1,22187:19644169,19775805:248206 -k1,22187:20248236,19775805:248207 -k1,22187:21803886,19775805:248207 -k1,22187:24472992,19775805:248206 -k1,22187:25998496,19775805:248207 -k1,22187:27265788,19775805:248207 -k1,22187:28903357,19775805:248206 -k1,22187:31107814,19775805:248207 -k1,22187:32583029,19775805:0 -) -(1,22188:6764466,20640885:25818563,505283,134348 -k1,22187:7631961,20640885:216067 -k1,22187:8595794,20640885:216067 -k1,22187:11848144,20640885:216067 -k1,22187:13525009,20640885:216067 -k1,22187:14096936,20640885:216067 -k1,22187:16885291,20640885:216067 -k1,22187:19561581,20640885:216068 -k1,22187:20909455,20640885:216067 -k1,22187:25501361,20640885:216067 -k1,22187:26914115,20640885:216067 -k1,22187:28407479,20640885:216067 -k1,22187:29491898,20640885:216067 -k1,22187:31731717,20640885:216067 -k1,22188:32583029,20640885:0 -) -(1,22188:6764466,21505965:25818563,505283,134348 -k1,22187:7932060,21505965:177345 -(1,22187:7932060,21505965:0,452978,115847 -r1,22214:12510868,21505965:4578808,568825,115847 -k1,22187:7932060,21505965:-4578808 -) -(1,22187:7932060,21505965:4578808,452978,115847 -k1,22187:7932060,21505965:3277 -h1,22187:12507591,21505965:0,411205,112570 -) -k1,22187:12688214,21505965:177346 -k1,22187:15060360,21505965:177345 -k1,22187:15593565,21505965:177345 -k1,22187:19973080,21505965:177346 -k1,22187:20763187,21505965:177345 -k1,22187:21959617,21505965:177345 -k1,22187:24157438,21505965:177346 -k1,22187:24947545,21505965:177345 -k1,22187:26143975,21505965:177345 -k1,22187:29372022,21505965:177346 -k1,22187:32184570,21505965:177345 -k1,22187:32583029,21505965:0 -) -(1,22188:6764466,22371045:25818563,513147,134348 -k1,22187:8154026,22371045:198115 -k1,22187:9547519,22371045:198116 -k1,22187:12374938,22371045:198115 -k1,22187:14167545,22371045:198116 -k1,22187:15313311,22371045:198115 -k1,22187:15867287,22371045:198116 -k1,22187:19301570,22371045:198115 -k1,22187:22708329,22371045:198116 -k1,22187:24300395,22371045:198115 -(1,22187:24300395,22371045:0,452978,115847 -r1,22214:27824067,22371045:3523672,568825,115847 -k1,22187:24300395,22371045:-3523672 -) -(1,22187:24300395,22371045:3523672,452978,115847 -k1,22187:24300395,22371045:3277 -h1,22187:27820790,22371045:0,411205,112570 -) -k1,22187:28195853,22371045:198116 -k1,22187:29550678,22371045:198115 -k1,22187:32583029,22371045:0 -) -(1,22188:6764466,23236125:25818563,505283,126483 -k1,22187:9599503,23236125:199834 -k1,22187:11146103,23236125:199835 -k1,22187:12967953,23236125:199834 -k1,22187:16012706,23236125:199835 -k1,22187:18859539,23236125:199834 -k1,22187:20453324,23236125:199834 -k1,22187:21856400,23236125:199835 -k1,22187:24178290,23236125:199834 -k1,22187:25005959,23236125:199834 -k1,22187:25561654,23236125:199835 -k1,22187:28093914,23236125:199834 -k1,22187:29744716,23236125:199835 -k1,22187:30963635,23236125:199834 -k1,22188:32583029,23236125:0 -) -(1,22188:6764466,24101205:25818563,513147,134348 -k1,22187:8336183,24101205:234783 -k1,22187:9380335,24101205:234782 -k1,22187:11081814,24101205:234783 -k1,22187:12946477,24101205:234783 -k1,22187:13840551,24101205:234782 -k1,22187:15094419,24101205:234783 -k1,22187:17176007,24101205:234783 -k1,22187:19359174,24101205:234782 -k1,22187:20585517,24101205:234783 -k1,22187:22532756,24101205:234783 -k1,22187:26210144,24101205:234782 -k1,22187:29749908,24101205:234783 -k1,22187:32583029,24101205:0 -) -(1,22188:6764466,24966285:25818563,505283,134348 -g1,22187:7579733,24966285 -g1,22187:9014971,24966285 -g1,22187:11591191,24966285 -k1,22188:32583030,24966285:19331812 -g1,22188:32583030,24966285 -) -(1,22190:6764466,25831365:25818563,505283,134348 -h1,22189:6764466,25831365:983040,0,0 -k1,22189:9316219,25831365:297315 -k1,22189:12598044,25831365:297315 -k1,22189:13546787,25831365:297315 -k1,22189:16475372,25831365:297314 -k1,22189:17791772,25831365:297315 -k1,22189:19435852,25831365:297315 -k1,22189:20542537,25831365:297315 -k1,22189:21858937,25831365:297315 -k1,22189:24731817,25831365:297315 -k1,22189:28218113,25831365:297314 -k1,22189:30471678,25831365:297315 -k1,22189:31420421,25831365:297315 -k1,22190:32583029,25831365:0 -) -(1,22190:6764466,26696445:25818563,513147,134348 -k1,22189:9697679,26696445:145311 -k1,22189:10862075,26696445:145311 -k1,22189:14875321,26696445:145311 -k1,22189:17208224,26696445:145311 -k1,22189:18189119,26696445:145311 -k1,22189:19353516,26696445:145312 -k1,22189:23193091,26696445:145311 -k1,22189:24286053,26696445:145311 -k1,22189:27149797,26696445:145311 -k1,22189:28486553,26696445:145311 -k1,22189:30040233,26696445:145311 -k1,22189:32583029,26696445:0 -) -(1,22190:6764466,27561525:25818563,505283,134348 -g1,22189:8155140,27561525 -g1,22189:10878816,27561525 -g1,22189:12717100,27561525 -g1,22189:14651722,27561525 -(1,22189:14651722,27561525:0,452978,122846 -r1,22214:18175394,27561525:3523672,575824,122846 -k1,22189:14651722,27561525:-3523672 -) -(1,22189:14651722,27561525:3523672,452978,122846 -k1,22189:14651722,27561525:3277 -h1,22189:18172117,27561525:0,411205,112570 -) -g1,22189:18374623,27561525 -g1,22189:19847217,27561525 -k1,22190:32583029,27561525:10400765 -g1,22190:32583029,27561525 -) -] -g1,22190:32583029,27695873 -) -h1,22190:6630773,27695873:0,0,0 -(1,22195:6630773,28560953:25952256,513147,134348 -h1,22194:6630773,28560953:983040,0,0 -k1,22194:8643635,28560953:211933 -k1,22194:10553606,28560953:211933 -k1,22194:12500933,28560953:211934 -k1,22194:14414836,28560953:211933 -k1,22194:18364943,28560953:211933 -k1,22194:19445228,28560953:211933 -k1,22194:20761444,28560953:211934 -k1,22194:22170720,28560953:211933 -k1,22194:24445071,28560953:211933 -k1,22194:25284839,28560953:211933 -k1,22194:26700014,28560953:211934 -k1,22194:29573364,28560953:211933 -k1,22194:30653649,28560953:211933 -k1,22194:32583029,28560953:0 -) -(1,22195:6630773,29426033:25952256,513147,126483 -k1,22194:7240308,29426033:253675 -k1,22194:9387972,29426033:253674 -k1,22194:11496316,29426033:253675 -k1,22194:12559361,29426033:253675 -k1,22194:14387210,29426033:253674 -k1,22194:16239963,29426033:253675 -k1,22194:17145066,29426033:253675 -k1,22194:18676038,29426033:253675 -k1,22194:22198648,29426033:253674 -k1,22194:23471408,29426033:253675 -k1,22194:27796835,29426033:253675 -k1,22194:29618130,29426033:253674 -k1,22194:31914562,29426033:253675 -k1,22194:32583029,29426033:0 -) -(1,22195:6630773,30291113:25952256,513147,7863 -g1,22194:8343228,30291113 -g1,22194:10036678,30291113 -g1,22194:11810082,30291113 -k1,22195:32583030,30291113:19101780 -g1,22195:32583030,30291113 -) -v1,22197:6630773,30975968:0,393216,0 -(1,22202:6630773,31994900:25952256,1412148,196608 -g1,22202:6630773,31994900 -g1,22202:6630773,31994900 -g1,22202:6434165,31994900 -(1,22202:6434165,31994900:0,1412148,196608 -r1,22214:32779637,31994900:26345472,1608756,196608 -k1,22202:6434165,31994900:-26345472 -) -(1,22202:6434165,31994900:26345472,1412148,196608 -[1,22202:6630773,31994900:25952256,1215540,0 -(1,22199:6630773,31203799:25952256,424439,106246 -(1,22198:6630773,31203799:0,0,0 -g1,22198:6630773,31203799 -g1,22198:6630773,31203799 -g1,22198:6303093,31203799 -(1,22198:6303093,31203799:0,0,0 -) -g1,22198:6630773,31203799 -) -g1,22199:8954451,31203799 -h1,22199:9286405,31203799:0,0,0 -k1,22199:32583029,31203799:23296624 -g1,22199:32583029,31203799 -) -(1,22200:6630773,31888654:25952256,431045,106246 -h1,22200:6630773,31888654:0,0,0 -g1,22200:6962727,31888654 -g1,22200:7294681,31888654 -g1,22200:21568701,31888654 -g1,22200:22232609,31888654 -g1,22200:23560425,31888654 -g1,22200:25552149,31888654 -h1,22200:27875827,31888654:0,0,0 -k1,22200:32583029,31888654:4707202 -g1,22200:32583029,31888654 -) -] -) -g1,22202:32583029,31994900 -g1,22202:6630773,31994900 -g1,22202:6630773,31994900 -g1,22202:32583029,31994900 -g1,22202:32583029,31994900 -) -h1,22202:6630773,32191508:0,0,0 -(1,22205:6630773,41015712:25952256,8758668,0 -k1,22205:7928465,41015712:1297692 -h1,22204:7928465,41015712:0,0,0 -(1,22204:7928465,41015712:23356872,8758668,0 -(1,22204:7928465,41015712:23356506,8758690,0 -(1,22204:7928465,41015712:23356506,8758690,0 -(1,22204:7928465,41015712:0,8758690,0 -(1,22204:7928465,41015712:0,14208860,0 -(1,22204:7928465,41015712:37890292,14208860,0 -) -k1,22204:7928465,41015712:-37890292 -) -) -g1,22204:31284971,41015712 -) -) -) -g1,22205:31285337,41015712 -k1,22205:32583029,41015712:1297692 -) -] -(1,22214:32583029,45706769:0,0,0 -g1,22214:32583029,45706769 +v1,22181:6630773,15547483:0,393216,0 +(1,22182:6630773,16819388:25952256,1665121,0 +g1,22182:6630773,16819388 +g1,22182:6237557,16819388 +r1,22212:6368629,16819388:131072,1665121,0 +g1,22182:6567858,16819388 +g1,22182:6764466,16819388 +[1,22182:6764466,16819388:25818563,1665121,0 +(1,22182:6764466,15819960:25818563,665693,196608 +(1,22181:6764466,15819960:0,665693,196608 +r1,22212:7868133,15819960:1103667,862301,196608 +k1,22181:6764466,15819960:-1103667 +) +(1,22181:6764466,15819960:1103667,665693,196608 +) +k1,22181:8101756,15819960:233623 +k1,22181:9827974,15819960:327680 +k1,22181:10689431,15819960:233622 +k1,22181:11942139,15819960:233623 +k1,22181:14837179,15819960:233623 +k1,22181:17099796,15819960:233622 +(1,22181:17099796,15819960:0,452978,122846 +r1,22212:20623468,15819960:3523672,575824,122846 +k1,22181:17099796,15819960:-3523672 +) +(1,22181:17099796,15819960:3523672,452978,122846 +k1,22181:17099796,15819960:3277 +h1,22181:20620191,15819960:0,411205,112570 +) +k1,22181:20857091,15819960:233623 +k1,22181:22297887,15819960:233623 +k1,22181:24218407,15819960:233623 +k1,22181:25701801,15819960:233622 +k1,22181:26954509,15819960:233623 +k1,22181:28684319,15819960:233623 +k1,22181:29569369,15819960:233622 +k1,22181:30895477,15819960:233623 +k1,22181:32583029,15819960:0 +) +(1,22182:6764466,16685040:25818563,505283,134348 +g1,22181:10644852,16685040 +g1,22181:12086644,16685040 +(1,22181:12086644,16685040:0,452978,122846 +r1,22212:15962028,16685040:3875384,575824,122846 +k1,22181:12086644,16685040:-3875384 +) +(1,22181:12086644,16685040:3875384,452978,122846 +k1,22181:12086644,16685040:3277 +h1,22181:15958751,16685040:0,411205,112570 +) +g1,22181:16161257,16685040 +g1,22181:17551931,16685040 +(1,22181:17551931,16685040:0,452978,122846 +r1,22212:21427315,16685040:3875384,575824,122846 +k1,22181:17551931,16685040:-3875384 +) +(1,22181:17551931,16685040:3875384,452978,122846 +k1,22181:17551931,16685040:3277 +h1,22181:21424038,16685040:0,411205,112570 +) +k1,22182:32583029,16685040:11103286 +g1,22182:32583029,16685040 +) +] +g1,22182:32583029,16819388 +) +h1,22182:6630773,16819388:0,0,0 +v1,22185:6630773,17684468:0,393216,0 +(1,22188:6630773,27695873:25952256,10404621,0 +g1,22188:6630773,27695873 +g1,22188:6237557,27695873 +r1,22212:6368629,27695873:131072,10404621,0 +g1,22188:6567858,27695873 +g1,22188:6764466,27695873 +[1,22188:6764466,27695873:25818563,10404621,0 +(1,22186:6764466,18045645:25818563,754393,260573 +(1,22185:6764466,18045645:0,754393,260573 +r1,22212:7856192,18045645:1091726,1014966,260573 +k1,22185:6764466,18045645:-1091726 +) +(1,22185:6764466,18045645:1091726,754393,260573 +) +k1,22185:8070252,18045645:214060 +k1,22185:8397932,18045645:327680 +k1,22185:9099565,18045645:214045 +k1,22185:10590921,18045645:214059 +k1,22185:13155102,18045645:214060 +k1,22185:15104555,18045645:214060 +k1,22185:16983229,18045645:214060 +k1,22185:20935462,18045645:214059 +k1,22185:21681019,18045645:214060 +k1,22185:22961350,18045645:214060 +k1,22185:24701744,18045645:214060 +k1,22185:27510373,18045645:214059 +k1,22185:28796602,18045645:214060 +k1,22185:32227169,18045645:214060 +k1,22185:32583029,18045645:0 +) +(1,22186:6764466,18910725:25818563,513147,126483 +k1,22185:8278457,18910725:236694 +k1,22185:10369821,18910725:236695 +k1,22185:11415885,18910725:236694 +k1,22185:14536818,18910725:236694 +k1,22185:18511686,18910725:236694 +k1,22185:20609603,18910725:236695 +k1,22185:22113763,18910725:236694 +k1,22185:22706317,18910725:236694 +k1,22185:24825860,18910725:236694 +k1,22185:26259242,18910725:236695 +k1,22185:29682296,18910725:236694 +k1,22185:30450487,18910725:236694 +k1,22185:32583029,18910725:0 +) +(1,22186:6764466,19775805:25818563,513147,126483 +k1,22185:7628711,19775805:248207 +k1,22185:8896002,19775805:248206 +k1,22185:10511290,19775805:248207 +k1,22185:11418789,19775805:248207 +k1,22185:13359135,19775805:248206 +k1,22185:16738652,19775805:248207 +k1,22185:18768128,19775805:248207 +k1,22185:19644169,19775805:248206 +k1,22185:20248236,19775805:248207 +k1,22185:21803886,19775805:248207 +k1,22185:24472992,19775805:248206 +k1,22185:25998496,19775805:248207 +k1,22185:27265788,19775805:248207 +k1,22185:28903357,19775805:248206 +k1,22185:31107814,19775805:248207 +k1,22185:32583029,19775805:0 +) +(1,22186:6764466,20640885:25818563,505283,134348 +k1,22185:7631961,20640885:216067 +k1,22185:8595794,20640885:216067 +k1,22185:11848144,20640885:216067 +k1,22185:13525009,20640885:216067 +k1,22185:14096936,20640885:216067 +k1,22185:16885291,20640885:216067 +k1,22185:19561581,20640885:216068 +k1,22185:20909455,20640885:216067 +k1,22185:25501361,20640885:216067 +k1,22185:26914115,20640885:216067 +k1,22185:28407479,20640885:216067 +k1,22185:29491898,20640885:216067 +k1,22185:31731717,20640885:216067 +k1,22186:32583029,20640885:0 +) +(1,22186:6764466,21505965:25818563,505283,134348 +k1,22185:7932060,21505965:177345 +(1,22185:7932060,21505965:0,452978,115847 +r1,22212:12510868,21505965:4578808,568825,115847 +k1,22185:7932060,21505965:-4578808 +) +(1,22185:7932060,21505965:4578808,452978,115847 +k1,22185:7932060,21505965:3277 +h1,22185:12507591,21505965:0,411205,112570 +) +k1,22185:12688214,21505965:177346 +k1,22185:15060360,21505965:177345 +k1,22185:15593565,21505965:177345 +k1,22185:19973080,21505965:177346 +k1,22185:20763187,21505965:177345 +k1,22185:21959617,21505965:177345 +k1,22185:24157438,21505965:177346 +k1,22185:24947545,21505965:177345 +k1,22185:26143975,21505965:177345 +k1,22185:29372022,21505965:177346 +k1,22185:32184570,21505965:177345 +k1,22185:32583029,21505965:0 +) +(1,22186:6764466,22371045:25818563,513147,134348 +k1,22185:8154026,22371045:198115 +k1,22185:9547519,22371045:198116 +k1,22185:12374938,22371045:198115 +k1,22185:14167545,22371045:198116 +k1,22185:15313311,22371045:198115 +k1,22185:15867287,22371045:198116 +k1,22185:19301570,22371045:198115 +k1,22185:22708329,22371045:198116 +k1,22185:24300395,22371045:198115 +(1,22185:24300395,22371045:0,452978,115847 +r1,22212:27824067,22371045:3523672,568825,115847 +k1,22185:24300395,22371045:-3523672 +) +(1,22185:24300395,22371045:3523672,452978,115847 +k1,22185:24300395,22371045:3277 +h1,22185:27820790,22371045:0,411205,112570 +) +k1,22185:28195853,22371045:198116 +k1,22185:29550678,22371045:198115 +k1,22185:32583029,22371045:0 +) +(1,22186:6764466,23236125:25818563,505283,126483 +k1,22185:9599503,23236125:199834 +k1,22185:11146103,23236125:199835 +k1,22185:12967953,23236125:199834 +k1,22185:16012706,23236125:199835 +k1,22185:18859539,23236125:199834 +k1,22185:20453324,23236125:199834 +k1,22185:21856400,23236125:199835 +k1,22185:24178290,23236125:199834 +k1,22185:25005959,23236125:199834 +k1,22185:25561654,23236125:199835 +k1,22185:28093914,23236125:199834 +k1,22185:29744716,23236125:199835 +k1,22185:30963635,23236125:199834 +k1,22186:32583029,23236125:0 +) +(1,22186:6764466,24101205:25818563,513147,134348 +k1,22185:8336183,24101205:234783 +k1,22185:9380335,24101205:234782 +k1,22185:11081814,24101205:234783 +k1,22185:12946477,24101205:234783 +k1,22185:13840551,24101205:234782 +k1,22185:15094419,24101205:234783 +k1,22185:17176007,24101205:234783 +k1,22185:19359174,24101205:234782 +k1,22185:20585517,24101205:234783 +k1,22185:22532756,24101205:234783 +k1,22185:26210144,24101205:234782 +k1,22185:29749908,24101205:234783 +k1,22185:32583029,24101205:0 +) +(1,22186:6764466,24966285:25818563,505283,134348 +g1,22185:7579733,24966285 +g1,22185:9014971,24966285 +g1,22185:11591191,24966285 +k1,22186:32583030,24966285:19331812 +g1,22186:32583030,24966285 +) +(1,22188:6764466,25831365:25818563,505283,134348 +h1,22187:6764466,25831365:983040,0,0 +k1,22187:9316219,25831365:297315 +k1,22187:12598044,25831365:297315 +k1,22187:13546787,25831365:297315 +k1,22187:16475372,25831365:297314 +k1,22187:17791772,25831365:297315 +k1,22187:19435852,25831365:297315 +k1,22187:20542537,25831365:297315 +k1,22187:21858937,25831365:297315 +k1,22187:24731817,25831365:297315 +k1,22187:28218113,25831365:297314 +k1,22187:30471678,25831365:297315 +k1,22187:31420421,25831365:297315 +k1,22188:32583029,25831365:0 +) +(1,22188:6764466,26696445:25818563,513147,134348 +k1,22187:9697679,26696445:145311 +k1,22187:10862075,26696445:145311 +k1,22187:14875321,26696445:145311 +k1,22187:17208224,26696445:145311 +k1,22187:18189119,26696445:145311 +k1,22187:19353516,26696445:145312 +k1,22187:23193091,26696445:145311 +k1,22187:24286053,26696445:145311 +k1,22187:27149797,26696445:145311 +k1,22187:28486553,26696445:145311 +k1,22187:30040233,26696445:145311 +k1,22187:32583029,26696445:0 +) +(1,22188:6764466,27561525:25818563,505283,134348 +g1,22187:8155140,27561525 +g1,22187:10878816,27561525 +g1,22187:12717100,27561525 +g1,22187:14651722,27561525 +(1,22187:14651722,27561525:0,452978,122846 +r1,22212:18175394,27561525:3523672,575824,122846 +k1,22187:14651722,27561525:-3523672 +) +(1,22187:14651722,27561525:3523672,452978,122846 +k1,22187:14651722,27561525:3277 +h1,22187:18172117,27561525:0,411205,112570 +) +g1,22187:18374623,27561525 +g1,22187:19847217,27561525 +k1,22188:32583029,27561525:10400765 +g1,22188:32583029,27561525 +) +] +g1,22188:32583029,27695873 +) +h1,22188:6630773,27695873:0,0,0 +(1,22193:6630773,28560953:25952256,513147,134348 +h1,22192:6630773,28560953:983040,0,0 +k1,22192:8643635,28560953:211933 +k1,22192:10553606,28560953:211933 +k1,22192:12500933,28560953:211934 +k1,22192:14414836,28560953:211933 +k1,22192:18364943,28560953:211933 +k1,22192:19445228,28560953:211933 +k1,22192:20761444,28560953:211934 +k1,22192:22170720,28560953:211933 +k1,22192:24445071,28560953:211933 +k1,22192:25284839,28560953:211933 +k1,22192:26700014,28560953:211934 +k1,22192:29573364,28560953:211933 +k1,22192:30653649,28560953:211933 +k1,22192:32583029,28560953:0 +) +(1,22193:6630773,29426033:25952256,513147,126483 +k1,22192:7240308,29426033:253675 +k1,22192:9387972,29426033:253674 +k1,22192:11496316,29426033:253675 +k1,22192:12559361,29426033:253675 +k1,22192:14387210,29426033:253674 +k1,22192:16239963,29426033:253675 +k1,22192:17145066,29426033:253675 +k1,22192:18676038,29426033:253675 +k1,22192:22198648,29426033:253674 +k1,22192:23471408,29426033:253675 +k1,22192:27796835,29426033:253675 +k1,22192:29618130,29426033:253674 +k1,22192:31914562,29426033:253675 +k1,22192:32583029,29426033:0 +) +(1,22193:6630773,30291113:25952256,513147,7863 +g1,22192:8343228,30291113 +g1,22192:10036678,30291113 +g1,22192:11810082,30291113 +k1,22193:32583030,30291113:19101780 +g1,22193:32583030,30291113 +) +v1,22195:6630773,30975968:0,393216,0 +(1,22200:6630773,31994900:25952256,1412148,196608 +g1,22200:6630773,31994900 +g1,22200:6630773,31994900 +g1,22200:6434165,31994900 +(1,22200:6434165,31994900:0,1412148,196608 +r1,22212:32779637,31994900:26345472,1608756,196608 +k1,22200:6434165,31994900:-26345472 +) +(1,22200:6434165,31994900:26345472,1412148,196608 +[1,22200:6630773,31994900:25952256,1215540,0 +(1,22197:6630773,31203799:25952256,424439,106246 +(1,22196:6630773,31203799:0,0,0 +g1,22196:6630773,31203799 +g1,22196:6630773,31203799 +g1,22196:6303093,31203799 +(1,22196:6303093,31203799:0,0,0 +) +g1,22196:6630773,31203799 +) +g1,22197:8954451,31203799 +h1,22197:9286405,31203799:0,0,0 +k1,22197:32583029,31203799:23296624 +g1,22197:32583029,31203799 +) +(1,22198:6630773,31888654:25952256,431045,106246 +h1,22198:6630773,31888654:0,0,0 +g1,22198:6962727,31888654 +g1,22198:7294681,31888654 +g1,22198:21568701,31888654 +g1,22198:22232609,31888654 +g1,22198:23560425,31888654 +g1,22198:25552149,31888654 +h1,22198:27875827,31888654:0,0,0 +k1,22198:32583029,31888654:4707202 +g1,22198:32583029,31888654 +) +] +) +g1,22200:32583029,31994900 +g1,22200:6630773,31994900 +g1,22200:6630773,31994900 +g1,22200:32583029,31994900 +g1,22200:32583029,31994900 +) +h1,22200:6630773,32191508:0,0,0 +(1,22203:6630773,41015712:25952256,8758668,0 +k1,22203:7928465,41015712:1297692 +h1,22202:7928465,41015712:0,0,0 +(1,22202:7928465,41015712:23356872,8758668,0 +(1,22202:7928465,41015712:23356506,8758690,0 +(1,22202:7928465,41015712:23356506,8758690,0 +(1,22202:7928465,41015712:0,8758690,0 +(1,22202:7928465,41015712:0,14208860,0 +(1,22202:7928465,41015712:37890292,14208860,0 +) +k1,22202:7928465,41015712:-37890292 +) +) +g1,22202:31284971,41015712 +) +) +) +g1,22203:31285337,41015712 +k1,22203:32583029,41015712:1297692 +) +] +(1,22212:32583029,45706769:0,0,0 +g1,22212:32583029,45706769 ) ) ] -(1,22214:6630773,47279633:25952256,0,0 -h1,22214:6630773,47279633:25952256,0,0 +(1,22212:6630773,47279633:25952256,0,0 +h1,22212:6630773,47279633:25952256,0,0 ) ] -(1,22214:4262630,4025873:0,0,0 -[1,22214:-473656,4025873:0,0,0 -(1,22214:-473656,-710413:0,0,0 -(1,22214:-473656,-710413:0,0,0 -g1,22214:-473656,-710413 +(1,22212:4262630,4025873:0,0,0 +[1,22212:-473656,4025873:0,0,0 +(1,22212:-473656,-710413:0,0,0 +(1,22212:-473656,-710413:0,0,0 +g1,22212:-473656,-710413 ) -g1,22214:-473656,-710413 +g1,22212:-473656,-710413 ) ] ) ] !15993 -}378 -Input:4205:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4206:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4207:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4208:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}379 Input:4209:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{379 -[1,22255:4262630,47279633:28320399,43253760,0 -(1,22255:4262630,4025873:0,0,0 -[1,22255:-473656,4025873:0,0,0 -(1,22255:-473656,-710413:0,0,0 -(1,22255:-473656,-644877:0,0,0 -k1,22255:-473656,-644877:-65536 +{380 +[1,22253:4262630,47279633:28320399,43253760,0 +(1,22253:4262630,4025873:0,0,0 +[1,22253:-473656,4025873:0,0,0 +(1,22253:-473656,-710413:0,0,0 +(1,22253:-473656,-644877:0,0,0 +k1,22253:-473656,-644877:-65536 ) -(1,22255:-473656,4736287:0,0,0 -k1,22255:-473656,4736287:5209943 +(1,22253:-473656,4736287:0,0,0 +k1,22253:-473656,4736287:5209943 ) -g1,22255:-473656,-710413 +g1,22253:-473656,-710413 ) ] ) -[1,22255:6630773,47279633:25952256,43253760,0 -[1,22255:6630773,4812305:25952256,786432,0 -(1,22255:6630773,4812305:25952256,513147,126483 -(1,22255:6630773,4812305:25952256,513147,126483 -g1,22255:3078558,4812305 -[1,22255:3078558,4812305:0,0,0 -(1,22255:3078558,2439708:0,1703936,0 -k1,22255:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22255:2537886,2439708:1179648,16384,0 +[1,22253:6630773,47279633:25952256,43253760,0 +[1,22253:6630773,4812305:25952256,786432,0 +(1,22253:6630773,4812305:25952256,513147,126483 +(1,22253:6630773,4812305:25952256,513147,126483 +g1,22253:3078558,4812305 +[1,22253:3078558,4812305:0,0,0 +(1,22253:3078558,2439708:0,1703936,0 +k1,22253:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22253:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22255:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22253:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22255:3078558,4812305:0,0,0 -(1,22255:3078558,2439708:0,1703936,0 -g1,22255:29030814,2439708 -g1,22255:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22255:36151628,1915420:16384,1179648,0 +[1,22253:3078558,4812305:0,0,0 +(1,22253:3078558,2439708:0,1703936,0 +g1,22253:29030814,2439708 +g1,22253:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22253:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22255:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22253:37855564,2439708:1179648,16384,0 ) ) -k1,22255:3078556,2439708:-34777008 +k1,22253:3078556,2439708:-34777008 ) ] -[1,22255:3078558,4812305:0,0,0 -(1,22255:3078558,49800853:0,16384,2228224 -k1,22255:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22255:2537886,49800853:1179648,16384,0 +[1,22253:3078558,4812305:0,0,0 +(1,22253:3078558,49800853:0,16384,2228224 +k1,22253:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22253:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22255:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22253:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22255:3078558,4812305:0,0,0 -(1,22255:3078558,49800853:0,16384,2228224 -g1,22255:29030814,49800853 -g1,22255:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22255:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22255:37855564,49800853:1179648,16384,0 -) -) -k1,22255:3078556,49800853:-34777008 -) -] -g1,22255:6630773,4812305 -k1,22255:21386205,4812305:13560055 -g1,22255:21999622,4812305 -g1,22255:25611966,4812305 -g1,22255:28956923,4812305 -g1,22255:29772190,4812305 -) -) -] -[1,22255:6630773,45706769:25952256,40108032,0 -(1,22255:6630773,45706769:25952256,40108032,0 -(1,22255:6630773,45706769:0,0,0 -g1,22255:6630773,45706769 -) -[1,22255:6630773,45706769:25952256,40108032,0 -(1,22215:6630773,6254097:25952256,555811,12975 -(1,22215:6630773,6254097:2899444,534184,12975 -g1,22215:6630773,6254097 -g1,22215:9530217,6254097 -) -g1,22215:10837202,6254097 -k1,22215:32583029,6254097:19492306 -g1,22215:32583029,6254097 -) -v1,22219:6630773,7512393:0,393216,0 -(1,22220:6630773,11468238:25952256,4349061,0 -g1,22220:6630773,11468238 -g1,22220:6237557,11468238 -r1,22255:6368629,11468238:131072,4349061,0 -g1,22220:6567858,11468238 -g1,22220:6764466,11468238 -[1,22220:6764466,11468238:25818563,4349061,0 -(1,22220:6764466,7873570:25818563,754393,260573 -(1,22219:6764466,7873570:0,754393,260573 -r1,22255:7856192,7873570:1091726,1014966,260573 -k1,22219:6764466,7873570:-1091726 -) -(1,22219:6764466,7873570:1091726,754393,260573 -) -k1,22219:7998630,7873570:142438 -k1,22219:8326310,7873570:327680 -k1,22219:9392807,7873570:142439 -k1,22219:11515088,7873570:142438 -k1,22219:12649086,7873570:142438 -k1,22219:14441722,7873570:142439 -k1,22219:17067975,7873570:142438 -k1,22219:17861841,7873570:142438 -k1,22219:19416581,7873570:142439 -k1,22219:21001466,7873570:142438 -k1,22219:22188548,7873570:142438 -k1,22219:24310830,7873570:142439 -k1,22219:26982958,7873570:142438 -k1,22219:28223124,7873570:142438 -k1,22219:30026245,7873570:142439 -k1,22219:30700180,7873570:142438 -k1,22219:32583029,7873570:0 -) -(1,22220:6764466,8738650:25818563,513147,134348 -k1,22219:7562835,8738650:185607 -k1,22219:11151728,8738650:185608 -k1,22219:13680902,8738650:185607 -k1,22219:15308956,8738650:185607 -k1,22219:17695917,8738650:185607 -k1,22219:18359282,8738650:185608 -k1,22219:20231786,8738650:185607 -k1,22219:21386670,8738650:185607 -k1,22219:23552121,8738650:185608 -k1,22219:25918111,8738650:185607 -k1,22219:27479319,8738650:185607 -k1,22219:28412692,8738650:185607 -k1,22219:30111526,8738650:185608 -k1,22219:30948561,8738650:185607 -k1,22219:32583029,8738650:0 -) -(1,22220:6764466,9603730:25818563,513147,126483 -k1,22219:11142624,9603730:242181 -k1,22219:12067689,9603730:242180 -k1,22219:15380887,9603730:242181 -k1,22219:19550641,9603730:242181 -k1,22219:21077327,9603730:242180 -k1,22219:22516851,9603730:242181 -k1,22219:23594616,9603730:242181 -k1,22219:24488225,9603730:242181 -k1,22219:25086265,9603730:242180 -k1,22219:26971434,9603730:242181 -k1,22219:27841450,9603730:242181 -k1,22219:29286871,9603730:242180 -k1,22219:31069803,9603730:242181 -k1,22219:32583029,9603730:0 -) -(1,22220:6764466,10468810:25818563,513147,126483 -k1,22219:8326495,10468810:186428 -k1,22219:8978884,10468810:186428 -k1,22219:10184397,10468810:186428 -k1,22219:12856606,10468810:186428 -k1,22219:13702326,10468810:186428 -k1,22219:15158186,10468810:186428 -k1,22219:17392614,10468810:186428 -k1,22219:18110539,10468810:186428 -k1,22219:20013355,10468810:186428 -k1,22219:21662547,10468810:186428 -k1,22219:22508267,10468810:186428 -k1,22219:24975348,10468810:186428 -k1,22219:26958773,10468810:186428 -k1,22219:27757963,10468810:186428 -k1,22219:29926855,10468810:186428 -k1,22219:32583029,10468810:0 -) -(1,22220:6764466,11333890:25818563,505283,134348 -g1,22219:7579733,11333890 -g1,22219:10285714,11333890 -g1,22219:11865131,11333890 -g1,22219:13055920,11333890 -g1,22219:14590117,11333890 -k1,22220:32583029,11333890:15442907 -g1,22220:32583029,11333890 -) -] -g1,22220:32583029,11468238 -) -h1,22220:6630773,11468238:0,0,0 -(1,22223:6630773,12333318:25952256,513147,134348 -k1,22222:7405304,12333318:311191 -k1,22222:8685884,12333318:311303 -k1,22222:10646728,12333318:311303 -k1,22222:11617323,12333318:311303 -k1,22222:14073619,12333318:311303 -k1,22222:14916419,12333318:311303 -k1,22222:16373947,12333318:311303 -k1,22222:17041110,12333318:311303 -k1,22222:18397057,12333318:311303 -k1,22222:19985658,12333318:311304 -k1,22222:20912999,12333318:311303 -k1,22222:23109773,12333318:311303 -k1,22222:25748259,12333318:311303 -k1,22222:26718854,12333318:311303 -k1,22222:29369792,12333318:311303 -k1,22222:31708779,12333318:311303 -k1,22223:32583029,12333318:0 -) -(1,22223:6630773,13198398:25952256,513147,122846 -k1,22222:8865109,13198398:333137 -k1,22222:10217331,13198398:333137 -k1,22222:13036249,13198398:333137 -k1,22222:14028678,13198398:333137 -k1,22222:16680479,13198398:333137 -(1,22222:16680479,13198398:0,452978,122846 -r1,22255:20204151,13198398:3523672,575824,122846 -k1,22222:16680479,13198398:-3523672 -) -(1,22222:16680479,13198398:3523672,452978,122846 -k1,22222:16680479,13198398:3277 -h1,22222:20200874,13198398:0,411205,112570 -) -k1,22222:20710958,13198398:333137 -k1,22222:22929566,13198398:333137 -k1,22222:25858584,13198398:333137 -k1,22222:26843149,13198398:333137 -k1,22222:28268771,13198398:333137 -(1,22222:28268771,13198398:0,452978,115847 -r1,22255:32495867,13198398:4227096,568825,115847 -k1,22222:28268771,13198398:-4227096 -) -(1,22222:28268771,13198398:4227096,452978,115847 -k1,22222:28268771,13198398:3277 -h1,22222:32492590,13198398:0,411205,112570 -) -k1,22222:32583029,13198398:0 -) -(1,22223:6630773,14063478:25952256,505283,134348 -k1,22222:9583724,14063478:272528 -k1,22222:11250203,14063478:272528 -(1,22222:11250203,14063478:0,452978,115847 -r1,22255:15829011,14063478:4578808,568825,115847 -k1,22222:11250203,14063478:-4578808 -) -(1,22222:11250203,14063478:4578808,452978,115847 -k1,22222:11250203,14063478:3277 -h1,22222:15825734,14063478:0,411205,112570 -) -k1,22222:16101539,14063478:272528 -k1,22222:18633748,14063478:272528 -k1,22222:19262136,14063478:272528 -k1,22222:20503941,14063478:272528 -k1,22222:22599681,14063478:272528 -k1,22222:24068896,14063478:272528 -k1,22222:26534259,14063478:272528 -k1,22222:29466238,14063478:272528 -k1,22222:31310975,14063478:272528 -k1,22223:32583029,14063478:0 -) -(1,22223:6630773,14928558:25952256,513147,126483 -k1,22222:8491515,14928558:356035 -k1,22222:9866635,14928558:356035 -k1,22222:12412883,14928558:356035 -k1,22222:13716569,14928558:356035 -k1,22222:15091689,14928558:356035 -k1,22222:16792523,14928558:356035 -k1,22222:18838077,14928558:356036 -k1,22222:20213197,14928558:356035 -k1,22222:22600193,14928558:356035 -k1,22222:23615520,14928558:356035 -k1,22222:24990640,14928558:356035 -k1,22222:27486426,14928558:356035 -k1,22222:29010968,14928558:356035 -k1,22222:29898500,14928558:356035 -k1,22222:31189078,14928558:356035 -k1,22223:32583029,14928558:0 -) -(1,22223:6630773,15793638:25952256,452978,115847 -(1,22222:6630773,15793638:0,452978,115847 -r1,22255:12616429,15793638:5985656,568825,115847 -k1,22222:6630773,15793638:-5985656 -) -(1,22222:6630773,15793638:5985656,452978,115847 -g1,22222:9096033,15793638 -g1,22222:9799457,15793638 -h1,22222:12613152,15793638:0,411205,112570 -) -k1,22223:32583029,15793638:19914172 -g1,22223:32583029,15793638 -) -v1,22225:6630773,16478493:0,393216,0 -(1,22235:6630773,20901882:25952256,4816605,196608 -g1,22235:6630773,20901882 -g1,22235:6630773,20901882 -g1,22235:6434165,20901882 -(1,22235:6434165,20901882:0,4816605,196608 -r1,22255:32779637,20901882:26345472,5013213,196608 -k1,22235:6434165,20901882:-26345472 -) -(1,22235:6434165,20901882:26345472,4816605,196608 -[1,22235:6630773,20901882:25952256,4619997,0 -(1,22227:6630773,16706324:25952256,424439,112852 -(1,22226:6630773,16706324:0,0,0 -g1,22226:6630773,16706324 -g1,22226:6630773,16706324 -g1,22226:6303093,16706324 -(1,22226:6303093,16706324:0,0,0 -) -g1,22226:6630773,16706324 -) -k1,22227:6630773,16706324:0 -g1,22227:10614221,16706324 -g1,22227:11278129,16706324 -k1,22227:11278129,16706324:0 -h1,22227:12605945,16706324:0,0,0 -k1,22227:32583029,16706324:19977084 -g1,22227:32583029,16706324 -) -(1,22228:6630773,17391179:25952256,431045,112852 -h1,22228:6630773,17391179:0,0,0 -g1,22228:6962727,17391179 -g1,22228:7294681,17391179 -g1,22228:7626635,17391179 -g1,22228:7958589,17391179 -g1,22228:8290543,17391179 -g1,22228:8622497,17391179 -g1,22228:8954451,17391179 -g1,22228:11610083,17391179 -g1,22228:12273991,17391179 -g1,22228:14265715,17391179 -g1,22228:14929623,17391179 -g1,22228:18581117,17391179 -g1,22228:20240887,17391179 -g1,22228:20904795,17391179 -g1,22228:26216058,17391179 -h1,22228:26548012,17391179:0,0,0 -k1,22228:32583029,17391179:6035017 -g1,22228:32583029,17391179 -) -(1,22229:6630773,18076034:25952256,424439,112852 -h1,22229:6630773,18076034:0,0,0 -g1,22229:6962727,18076034 -g1,22229:7294681,18076034 -g1,22229:12273990,18076034 -g1,22229:12937898,18076034 -g1,22229:13933760,18076034 -g1,22229:16257438,18076034 -g1,22229:16921346,18076034 -g1,22229:19908932,18076034 -h1,22229:20240886,18076034:0,0,0 -k1,22229:32583029,18076034:12342143 -g1,22229:32583029,18076034 -) -(1,22230:6630773,18760889:25952256,424439,106246 -h1,22230:6630773,18760889:0,0,0 -g1,22230:6962727,18760889 -g1,22230:7294681,18760889 -g1,22230:13269852,18760889 -g1,22230:13933760,18760889 -g1,22230:15593530,18760889 -h1,22230:15925484,18760889:0,0,0 -k1,22230:32583029,18760889:16657545 -g1,22230:32583029,18760889 -) -(1,22231:6630773,19445744:25952256,431045,79822 -h1,22231:6630773,19445744:0,0,0 -g1,22231:6962727,19445744 -g1,22231:7294681,19445744 -g1,22231:13933760,19445744 -h1,22231:14265714,19445744:0,0,0 -k1,22231:32583030,19445744:18317316 -g1,22231:32583030,19445744 -) -(1,22232:6630773,20130599:25952256,424439,79822 -h1,22232:6630773,20130599:0,0,0 -g1,22232:6962727,20130599 -g1,22232:7294681,20130599 -g1,22232:15261576,20130599 -g1,22232:15925484,20130599 -g1,22232:17917208,20130599 -h1,22232:18249162,20130599:0,0,0 -k1,22232:32583029,20130599:14333867 -g1,22232:32583029,20130599 -) -(1,22233:6630773,20815454:25952256,431045,86428 -h1,22233:6630773,20815454:0,0,0 -g1,22233:6962727,20815454 -g1,22233:7294681,20815454 -g1,22233:9618359,20815454 -g1,22233:10282267,20815454 -g1,22233:12273991,20815454 -g1,22233:13933761,20815454 -g1,22233:14597669,20815454 -g1,22233:17585254,20815454 -h1,22233:19908932,20815454:0,0,0 -k1,22233:32583029,20815454:12674097 -g1,22233:32583029,20815454 -) -] -) -g1,22235:32583029,20901882 -g1,22235:6630773,20901882 -g1,22235:6630773,20901882 -g1,22235:32583029,20901882 -g1,22235:32583029,20901882 -) -h1,22235:6630773,21098490:0,0,0 -(1,22238:6630773,30798604:25952256,9634578,0 -k1,22238:13183781,30798604:6553008 -h1,22237:13183781,30798604:0,0,0 -(1,22237:13183781,30798604:12846240,9634578,0 -(1,22237:13183781,30798604:12846136,9634602,0 -(1,22237:13183781,30798604:12846136,9634602,0 -(1,22237:13183781,30798604:0,9634602,0 -(1,22237:13183781,30798604:0,14208860,0 -(1,22237:13183781,30798604:18945146,14208860,0 -) -k1,22237:13183781,30798604:-18945146 -) -) -g1,22237:26029917,30798604 -) -) -) -g1,22238:26030021,30798604 -k1,22238:32583029,30798604:6553008 -) -v1,22248:6630773,31663684:0,393216,0 -(1,22249:6630773,32927724:25952256,1657256,0 -g1,22249:6630773,32927724 -g1,22249:6237557,32927724 -r1,22255:6368629,32927724:131072,1657256,0 -g1,22249:6567858,32927724 -g1,22249:6764466,32927724 -[1,22249:6764466,32927724:25818563,1657256,0 -(1,22249:6764466,31936161:25818563,665693,196608 -(1,22248:6764466,31936161:0,665693,196608 -r1,22255:7868133,31936161:1103667,862301,196608 -k1,22248:6764466,31936161:-1103667 -) -(1,22248:6764466,31936161:1103667,665693,196608 -) -k1,22248:8061707,31936161:193574 -k1,22248:9787925,31936161:327680 -k1,22248:11231272,31936161:193575 -k1,22248:12443931,31936161:193574 -k1,22248:14133692,31936161:193574 -k1,22248:15274918,31936161:193575 -k1,22248:16487577,31936161:193574 -k1,22248:17650429,31936161:193575 -k1,22248:19493544,31936161:193574 -k1,22248:21542442,31936161:193574 -k1,22248:22387445,31936161:193575 -k1,22248:24604771,31936161:193574 -k1,22248:25154205,31936161:193574 -k1,22248:26392424,31936161:193575 -k1,22248:28409210,31936161:193574 -k1,22248:30573453,31936161:193575 -k1,22248:31923737,31936161:193574 -k1,22248:32583029,31936161:0 -) -(1,22249:6764466,32801241:25818563,505283,126483 -g1,22248:7982780,32801241 -g1,22248:9354448,32801241 -g1,22248:11161275,32801241 -g1,22248:11892001,32801241 -g1,22248:13961628,32801241 -g1,22248:14812285,32801241 -k1,22249:32583029,32801241:16064186 -g1,22249:32583029,32801241 -) -] -g1,22249:32583029,32927724 -) -h1,22249:6630773,32927724:0,0,0 -(1,22251:6630773,35758884:25952256,32768,229376 -(1,22251:6630773,35758884:0,32768,229376 -(1,22251:6630773,35758884:5505024,32768,229376 -r1,22255:12135797,35758884:5505024,262144,229376 -) -k1,22251:6630773,35758884:-5505024 -) -(1,22251:6630773,35758884:25952256,32768,0 -r1,22255:32583029,35758884:25952256,32768,0 -) -) -(1,22251:6630773,37390736:25952256,606339,14155 -(1,22251:6630773,37390736:2464678,582746,14155 -g1,22251:6630773,37390736 -g1,22251:9095451,37390736 -) -k1,22251:32583030,37390736:20355220 -g1,22251:32583030,37390736 -) -(1,22255:6630773,38649032:25952256,513147,134348 -k1,22254:7528562,38649032:269954 -k1,22254:10800718,38649032:269953 -k1,22254:13325766,38649032:269954 -k1,22254:14587280,38649032:269954 -k1,22254:15876318,38649032:269953 -k1,22254:19451253,38649032:269954 -k1,22254:20380499,38649032:269954 -k1,22254:22151226,38649032:269953 -k1,22254:24621879,38649032:269954 -k1,22254:26449624,38649032:269954 -k1,22254:29963609,38649032:269953 -k1,22254:31563944,38649032:269954 -k1,22254:32583029,38649032:0 -) -(1,22255:6630773,39514112:25952256,513147,126483 -k1,22254:9652739,39514112:259623 -k1,22254:12781529,39514112:259624 -k1,22254:13700444,39514112:259623 -k1,22254:14315928,39514112:259624 -k1,22254:15852848,39514112:259623 -k1,22254:17104031,39514112:259623 -k1,22254:20238719,39514112:259624 -k1,22254:22196380,39514112:259623 -k1,22254:25692826,39514112:259623 -k1,22254:28302571,39514112:259624 -k1,22254:29245079,39514112:259623 -k1,22254:31316118,39514112:259624 -k1,22254:32227169,39514112:259623 -k1,22254:32583029,39514112:0 -) -(1,22255:6630773,40379192:25952256,513147,126483 -k1,22254:8049065,40379192:261582 -k1,22254:10767592,40379192:261582 -k1,22254:11844442,40379192:261582 -k1,22254:13172296,40379192:261583 -k1,22254:14887467,40379192:261582 -k1,22254:16697665,40379192:261582 -k1,22254:20133811,40379192:261582 -k1,22254:21078278,40379192:261582 -k1,22254:23242370,40379192:261582 -k1,22254:24495512,40379192:261582 -k1,22254:26270321,40379192:261583 -k1,22254:27183331,40379192:261582 -k1,22254:28722210,40379192:261582 -k1,22254:30002877,40379192:261582 -k1,22255:32583029,40379192:0 -) -(1,22255:6630773,41244272:25952256,505283,134348 -k1,22254:8487146,41244272:258605 -k1,22254:9428636,41244272:258605 -k1,22254:13369054,41244272:258605 -k1,22254:14699828,41244272:258605 -k1,22254:17285616,41244272:258605 -k1,22254:18874601,41244272:258604 -k1,22254:22590230,41244272:258605 -k1,22254:24620273,41244272:258605 -k1,22254:26451087,41244272:258605 -k1,22254:28498170,41244272:258605 -k1,22254:32583029,41244272:0 -) -(1,22255:6630773,42109352:25952256,513147,134348 -k1,22254:10589366,42109352:168646 -k1,22254:11949457,42109352:168646 -k1,22254:13576278,42109352:168645 -k1,22254:15030085,42109352:168646 -k1,22254:16190291,42109352:168646 -k1,22254:19564303,42109352:168646 -k1,22254:20924394,42109352:168646 -k1,22254:21559001,42109352:168646 -k1,22254:24790799,42109352:168645 -k1,22254:25642330,42109352:168646 -k1,22254:27050917,42109352:168646 -k1,22254:29754496,42109352:168646 -k1,22254:32583029,42109352:0 -) -(1,22255:6630773,42974432:25952256,513147,126483 -k1,22254:9486905,42974432:188161 -k1,22254:11906567,42974432:188161 -k1,22254:15532746,42974432:188160 -k1,22254:17664705,42974432:188161 -k1,22254:21732598,42974432:188161 -k1,22254:24415059,42974432:188161 -k1,22254:27693242,42974432:188160 -k1,22254:28567565,42974432:188161 -k1,22254:31391584,42974432:188161 -k1,22254:32583029,42974432:0 -) -(1,22255:6630773,43839512:25952256,513147,134348 -k1,22254:11474293,43839512:270418 -k1,22254:15005782,43839512:270418 -k1,22254:18348528,43839512:270418 -k1,22254:21529400,43839512:270418 -k1,22254:23760654,43839512:270417 -k1,22254:27258065,43839512:270418 -k1,22254:29189165,43839512:270418 -k1,22254:31333913,43839512:270418 -k1,22255:32583029,43839512:0 -) -(1,22255:6630773,44704592:25952256,505283,126483 -k1,22254:9708835,44704592:183992 -k1,22254:11903472,44704592:183992 -k1,22254:15012991,44704592:183992 -k1,22254:17687352,44704592:183993 -k1,22254:19756815,44704592:183992 -k1,22254:21638845,44704592:183992 -k1,22254:23788262,44704592:183992 -k1,22254:24623682,44704592:183992 -k1,22254:25163534,44704592:183992 -k1,22254:26798494,44704592:183993 -k1,22254:29280834,44704592:183992 -k1,22254:30596633,44704592:183992 -k1,22254:32583029,44704592:0 -) -(1,22255:6630773,45569672:25952256,505283,134348 -k1,22254:9216227,45569672:251062 -k1,22254:11873117,45569672:251063 -k1,22254:12740217,45569672:251062 -k1,22254:15047800,45569672:251063 -k1,22254:15926697,45569672:251062 -k1,22254:18843765,45569672:251063 -k1,22254:19746255,45569672:251062 -k1,22254:22855343,45569672:251063 -k1,22254:25265816,45569672:251062 -k1,22254:27213606,45569672:251063 -k1,22254:29799060,45569672:251062 -k1,22254:32583029,45569672:0 -) -] -(1,22255:32583029,45706769:0,0,0 -g1,22255:32583029,45706769 -) -) -] -(1,22255:6630773,47279633:25952256,0,0 -h1,22255:6630773,47279633:25952256,0,0 -) -] -(1,22255:4262630,4025873:0,0,0 -[1,22255:-473656,4025873:0,0,0 -(1,22255:-473656,-710413:0,0,0 -(1,22255:-473656,-710413:0,0,0 -g1,22255:-473656,-710413 -) -g1,22255:-473656,-710413 +[1,22253:3078558,4812305:0,0,0 +(1,22253:3078558,49800853:0,16384,2228224 +g1,22253:29030814,49800853 +g1,22253:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22253:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22253:37855564,49800853:1179648,16384,0 +) +) +k1,22253:3078556,49800853:-34777008 +) +] +g1,22253:6630773,4812305 +k1,22253:21386205,4812305:13560055 +g1,22253:21999622,4812305 +g1,22253:25611966,4812305 +g1,22253:28956923,4812305 +g1,22253:29772190,4812305 +) +) +] +[1,22253:6630773,45706769:25952256,40108032,0 +(1,22253:6630773,45706769:25952256,40108032,0 +(1,22253:6630773,45706769:0,0,0 +g1,22253:6630773,45706769 +) +[1,22253:6630773,45706769:25952256,40108032,0 +(1,22213:6630773,6254097:25952256,555811,12975 +(1,22213:6630773,6254097:2899444,534184,12975 +g1,22213:6630773,6254097 +g1,22213:9530217,6254097 +) +g1,22213:10837202,6254097 +k1,22213:32583029,6254097:19492306 +g1,22213:32583029,6254097 +) +v1,22217:6630773,7512393:0,393216,0 +(1,22218:6630773,11468238:25952256,4349061,0 +g1,22218:6630773,11468238 +g1,22218:6237557,11468238 +r1,22253:6368629,11468238:131072,4349061,0 +g1,22218:6567858,11468238 +g1,22218:6764466,11468238 +[1,22218:6764466,11468238:25818563,4349061,0 +(1,22218:6764466,7873570:25818563,754393,260573 +(1,22217:6764466,7873570:0,754393,260573 +r1,22253:7856192,7873570:1091726,1014966,260573 +k1,22217:6764466,7873570:-1091726 +) +(1,22217:6764466,7873570:1091726,754393,260573 +) +k1,22217:7998630,7873570:142438 +k1,22217:8326310,7873570:327680 +k1,22217:9392807,7873570:142439 +k1,22217:11515088,7873570:142438 +k1,22217:12649086,7873570:142438 +k1,22217:14441722,7873570:142439 +k1,22217:17067975,7873570:142438 +k1,22217:17861841,7873570:142438 +k1,22217:19416581,7873570:142439 +k1,22217:21001466,7873570:142438 +k1,22217:22188548,7873570:142438 +k1,22217:24310830,7873570:142439 +k1,22217:26982958,7873570:142438 +k1,22217:28223124,7873570:142438 +k1,22217:30026245,7873570:142439 +k1,22217:30700180,7873570:142438 +k1,22217:32583029,7873570:0 +) +(1,22218:6764466,8738650:25818563,513147,134348 +k1,22217:7562835,8738650:185607 +k1,22217:11151728,8738650:185608 +k1,22217:13680902,8738650:185607 +k1,22217:15308956,8738650:185607 +k1,22217:17695917,8738650:185607 +k1,22217:18359282,8738650:185608 +k1,22217:20231786,8738650:185607 +k1,22217:21386670,8738650:185607 +k1,22217:23552121,8738650:185608 +k1,22217:25918111,8738650:185607 +k1,22217:27479319,8738650:185607 +k1,22217:28412692,8738650:185607 +k1,22217:30111526,8738650:185608 +k1,22217:30948561,8738650:185607 +k1,22217:32583029,8738650:0 +) +(1,22218:6764466,9603730:25818563,513147,126483 +k1,22217:11142624,9603730:242181 +k1,22217:12067689,9603730:242180 +k1,22217:15380887,9603730:242181 +k1,22217:19550641,9603730:242181 +k1,22217:21077327,9603730:242180 +k1,22217:22516851,9603730:242181 +k1,22217:23594616,9603730:242181 +k1,22217:24488225,9603730:242181 +k1,22217:25086265,9603730:242180 +k1,22217:26971434,9603730:242181 +k1,22217:27841450,9603730:242181 +k1,22217:29286871,9603730:242180 +k1,22217:31069803,9603730:242181 +k1,22217:32583029,9603730:0 +) +(1,22218:6764466,10468810:25818563,513147,126483 +k1,22217:8326495,10468810:186428 +k1,22217:8978884,10468810:186428 +k1,22217:10184397,10468810:186428 +k1,22217:12856606,10468810:186428 +k1,22217:13702326,10468810:186428 +k1,22217:15158186,10468810:186428 +k1,22217:17392614,10468810:186428 +k1,22217:18110539,10468810:186428 +k1,22217:20013355,10468810:186428 +k1,22217:21662547,10468810:186428 +k1,22217:22508267,10468810:186428 +k1,22217:24975348,10468810:186428 +k1,22217:26958773,10468810:186428 +k1,22217:27757963,10468810:186428 +k1,22217:29926855,10468810:186428 +k1,22217:32583029,10468810:0 +) +(1,22218:6764466,11333890:25818563,505283,134348 +g1,22217:7579733,11333890 +g1,22217:10285714,11333890 +g1,22217:11865131,11333890 +g1,22217:13055920,11333890 +g1,22217:14590117,11333890 +k1,22218:32583029,11333890:15442907 +g1,22218:32583029,11333890 +) +] +g1,22218:32583029,11468238 +) +h1,22218:6630773,11468238:0,0,0 +(1,22221:6630773,12333318:25952256,513147,134348 +k1,22220:7405304,12333318:311191 +k1,22220:8685884,12333318:311303 +k1,22220:10646728,12333318:311303 +k1,22220:11617323,12333318:311303 +k1,22220:14073619,12333318:311303 +k1,22220:14916419,12333318:311303 +k1,22220:16373947,12333318:311303 +k1,22220:17041110,12333318:311303 +k1,22220:18397057,12333318:311303 +k1,22220:19985658,12333318:311304 +k1,22220:20912999,12333318:311303 +k1,22220:23109773,12333318:311303 +k1,22220:25748259,12333318:311303 +k1,22220:26718854,12333318:311303 +k1,22220:29369792,12333318:311303 +k1,22220:31708779,12333318:311303 +k1,22221:32583029,12333318:0 +) +(1,22221:6630773,13198398:25952256,513147,122846 +k1,22220:8865109,13198398:333137 +k1,22220:10217331,13198398:333137 +k1,22220:13036249,13198398:333137 +k1,22220:14028678,13198398:333137 +k1,22220:16680479,13198398:333137 +(1,22220:16680479,13198398:0,452978,122846 +r1,22253:20204151,13198398:3523672,575824,122846 +k1,22220:16680479,13198398:-3523672 +) +(1,22220:16680479,13198398:3523672,452978,122846 +k1,22220:16680479,13198398:3277 +h1,22220:20200874,13198398:0,411205,112570 +) +k1,22220:20710958,13198398:333137 +k1,22220:22929566,13198398:333137 +k1,22220:25858584,13198398:333137 +k1,22220:26843149,13198398:333137 +k1,22220:28268771,13198398:333137 +(1,22220:28268771,13198398:0,452978,115847 +r1,22253:32495867,13198398:4227096,568825,115847 +k1,22220:28268771,13198398:-4227096 +) +(1,22220:28268771,13198398:4227096,452978,115847 +k1,22220:28268771,13198398:3277 +h1,22220:32492590,13198398:0,411205,112570 +) +k1,22220:32583029,13198398:0 +) +(1,22221:6630773,14063478:25952256,505283,134348 +k1,22220:9583724,14063478:272528 +k1,22220:11250203,14063478:272528 +(1,22220:11250203,14063478:0,452978,115847 +r1,22253:15829011,14063478:4578808,568825,115847 +k1,22220:11250203,14063478:-4578808 +) +(1,22220:11250203,14063478:4578808,452978,115847 +k1,22220:11250203,14063478:3277 +h1,22220:15825734,14063478:0,411205,112570 +) +k1,22220:16101539,14063478:272528 +k1,22220:18633748,14063478:272528 +k1,22220:19262136,14063478:272528 +k1,22220:20503941,14063478:272528 +k1,22220:22599681,14063478:272528 +k1,22220:24068896,14063478:272528 +k1,22220:26534259,14063478:272528 +k1,22220:29466238,14063478:272528 +k1,22220:31310975,14063478:272528 +k1,22221:32583029,14063478:0 +) +(1,22221:6630773,14928558:25952256,513147,126483 +k1,22220:8491515,14928558:356035 +k1,22220:9866635,14928558:356035 +k1,22220:12412883,14928558:356035 +k1,22220:13716569,14928558:356035 +k1,22220:15091689,14928558:356035 +k1,22220:16792523,14928558:356035 +k1,22220:18838077,14928558:356036 +k1,22220:20213197,14928558:356035 +k1,22220:22600193,14928558:356035 +k1,22220:23615520,14928558:356035 +k1,22220:24990640,14928558:356035 +k1,22220:27486426,14928558:356035 +k1,22220:29010968,14928558:356035 +k1,22220:29898500,14928558:356035 +k1,22220:31189078,14928558:356035 +k1,22221:32583029,14928558:0 +) +(1,22221:6630773,15793638:25952256,452978,115847 +(1,22220:6630773,15793638:0,452978,115847 +r1,22253:12616429,15793638:5985656,568825,115847 +k1,22220:6630773,15793638:-5985656 +) +(1,22220:6630773,15793638:5985656,452978,115847 +g1,22220:9096033,15793638 +g1,22220:9799457,15793638 +h1,22220:12613152,15793638:0,411205,112570 +) +k1,22221:32583029,15793638:19914172 +g1,22221:32583029,15793638 +) +v1,22223:6630773,16478493:0,393216,0 +(1,22233:6630773,20901882:25952256,4816605,196608 +g1,22233:6630773,20901882 +g1,22233:6630773,20901882 +g1,22233:6434165,20901882 +(1,22233:6434165,20901882:0,4816605,196608 +r1,22253:32779637,20901882:26345472,5013213,196608 +k1,22233:6434165,20901882:-26345472 +) +(1,22233:6434165,20901882:26345472,4816605,196608 +[1,22233:6630773,20901882:25952256,4619997,0 +(1,22225:6630773,16706324:25952256,424439,112852 +(1,22224:6630773,16706324:0,0,0 +g1,22224:6630773,16706324 +g1,22224:6630773,16706324 +g1,22224:6303093,16706324 +(1,22224:6303093,16706324:0,0,0 +) +g1,22224:6630773,16706324 +) +k1,22225:6630773,16706324:0 +g1,22225:10614221,16706324 +g1,22225:11278129,16706324 +k1,22225:11278129,16706324:0 +h1,22225:12605945,16706324:0,0,0 +k1,22225:32583029,16706324:19977084 +g1,22225:32583029,16706324 +) +(1,22226:6630773,17391179:25952256,431045,112852 +h1,22226:6630773,17391179:0,0,0 +g1,22226:6962727,17391179 +g1,22226:7294681,17391179 +g1,22226:7626635,17391179 +g1,22226:7958589,17391179 +g1,22226:8290543,17391179 +g1,22226:8622497,17391179 +g1,22226:8954451,17391179 +g1,22226:11610083,17391179 +g1,22226:12273991,17391179 +g1,22226:14265715,17391179 +g1,22226:14929623,17391179 +g1,22226:18581117,17391179 +g1,22226:20240887,17391179 +g1,22226:20904795,17391179 +g1,22226:26216058,17391179 +h1,22226:26548012,17391179:0,0,0 +k1,22226:32583029,17391179:6035017 +g1,22226:32583029,17391179 +) +(1,22227:6630773,18076034:25952256,424439,112852 +h1,22227:6630773,18076034:0,0,0 +g1,22227:6962727,18076034 +g1,22227:7294681,18076034 +g1,22227:12273990,18076034 +g1,22227:12937898,18076034 +g1,22227:13933760,18076034 +g1,22227:16257438,18076034 +g1,22227:16921346,18076034 +g1,22227:19908932,18076034 +h1,22227:20240886,18076034:0,0,0 +k1,22227:32583029,18076034:12342143 +g1,22227:32583029,18076034 +) +(1,22228:6630773,18760889:25952256,424439,106246 +h1,22228:6630773,18760889:0,0,0 +g1,22228:6962727,18760889 +g1,22228:7294681,18760889 +g1,22228:13269852,18760889 +g1,22228:13933760,18760889 +g1,22228:15593530,18760889 +h1,22228:15925484,18760889:0,0,0 +k1,22228:32583029,18760889:16657545 +g1,22228:32583029,18760889 +) +(1,22229:6630773,19445744:25952256,431045,79822 +h1,22229:6630773,19445744:0,0,0 +g1,22229:6962727,19445744 +g1,22229:7294681,19445744 +g1,22229:13933760,19445744 +h1,22229:14265714,19445744:0,0,0 +k1,22229:32583030,19445744:18317316 +g1,22229:32583030,19445744 +) +(1,22230:6630773,20130599:25952256,424439,79822 +h1,22230:6630773,20130599:0,0,0 +g1,22230:6962727,20130599 +g1,22230:7294681,20130599 +g1,22230:15261576,20130599 +g1,22230:15925484,20130599 +g1,22230:17917208,20130599 +h1,22230:18249162,20130599:0,0,0 +k1,22230:32583029,20130599:14333867 +g1,22230:32583029,20130599 +) +(1,22231:6630773,20815454:25952256,431045,86428 +h1,22231:6630773,20815454:0,0,0 +g1,22231:6962727,20815454 +g1,22231:7294681,20815454 +g1,22231:9618359,20815454 +g1,22231:10282267,20815454 +g1,22231:12273991,20815454 +g1,22231:13933761,20815454 +g1,22231:14597669,20815454 +g1,22231:17585254,20815454 +h1,22231:19908932,20815454:0,0,0 +k1,22231:32583029,20815454:12674097 +g1,22231:32583029,20815454 +) +] +) +g1,22233:32583029,20901882 +g1,22233:6630773,20901882 +g1,22233:6630773,20901882 +g1,22233:32583029,20901882 +g1,22233:32583029,20901882 +) +h1,22233:6630773,21098490:0,0,0 +(1,22236:6630773,30798604:25952256,9634578,0 +k1,22236:13183781,30798604:6553008 +h1,22235:13183781,30798604:0,0,0 +(1,22235:13183781,30798604:12846240,9634578,0 +(1,22235:13183781,30798604:12846136,9634602,0 +(1,22235:13183781,30798604:12846136,9634602,0 +(1,22235:13183781,30798604:0,9634602,0 +(1,22235:13183781,30798604:0,14208860,0 +(1,22235:13183781,30798604:18945146,14208860,0 +) +k1,22235:13183781,30798604:-18945146 +) +) +g1,22235:26029917,30798604 +) +) +) +g1,22236:26030021,30798604 +k1,22236:32583029,30798604:6553008 +) +v1,22246:6630773,31663684:0,393216,0 +(1,22247:6630773,32927724:25952256,1657256,0 +g1,22247:6630773,32927724 +g1,22247:6237557,32927724 +r1,22253:6368629,32927724:131072,1657256,0 +g1,22247:6567858,32927724 +g1,22247:6764466,32927724 +[1,22247:6764466,32927724:25818563,1657256,0 +(1,22247:6764466,31936161:25818563,665693,196608 +(1,22246:6764466,31936161:0,665693,196608 +r1,22253:7868133,31936161:1103667,862301,196608 +k1,22246:6764466,31936161:-1103667 +) +(1,22246:6764466,31936161:1103667,665693,196608 +) +k1,22246:8061707,31936161:193574 +k1,22246:9787925,31936161:327680 +k1,22246:11231272,31936161:193575 +k1,22246:12443931,31936161:193574 +k1,22246:14133692,31936161:193574 +k1,22246:15274918,31936161:193575 +k1,22246:16487577,31936161:193574 +k1,22246:17650429,31936161:193575 +k1,22246:19493544,31936161:193574 +k1,22246:21542442,31936161:193574 +k1,22246:22387445,31936161:193575 +k1,22246:24604771,31936161:193574 +k1,22246:25154205,31936161:193574 +k1,22246:26392424,31936161:193575 +k1,22246:28409210,31936161:193574 +k1,22246:30573453,31936161:193575 +k1,22246:31923737,31936161:193574 +k1,22246:32583029,31936161:0 +) +(1,22247:6764466,32801241:25818563,505283,126483 +g1,22246:7982780,32801241 +g1,22246:9354448,32801241 +g1,22246:11161275,32801241 +g1,22246:11892001,32801241 +g1,22246:13961628,32801241 +g1,22246:14812285,32801241 +k1,22247:32583029,32801241:16064186 +g1,22247:32583029,32801241 +) +] +g1,22247:32583029,32927724 +) +h1,22247:6630773,32927724:0,0,0 +(1,22249:6630773,35758884:25952256,32768,229376 +(1,22249:6630773,35758884:0,32768,229376 +(1,22249:6630773,35758884:5505024,32768,229376 +r1,22253:12135797,35758884:5505024,262144,229376 +) +k1,22249:6630773,35758884:-5505024 +) +(1,22249:6630773,35758884:25952256,32768,0 +r1,22253:32583029,35758884:25952256,32768,0 +) +) +(1,22249:6630773,37390736:25952256,606339,14155 +(1,22249:6630773,37390736:2464678,582746,14155 +g1,22249:6630773,37390736 +g1,22249:9095451,37390736 +) +k1,22249:32583030,37390736:20355220 +g1,22249:32583030,37390736 +) +(1,22253:6630773,38649032:25952256,513147,134348 +k1,22252:7528562,38649032:269954 +k1,22252:10800718,38649032:269953 +k1,22252:13325766,38649032:269954 +k1,22252:14587280,38649032:269954 +k1,22252:15876318,38649032:269953 +k1,22252:19451253,38649032:269954 +k1,22252:20380499,38649032:269954 +k1,22252:22151226,38649032:269953 +k1,22252:24621879,38649032:269954 +k1,22252:26449624,38649032:269954 +k1,22252:29963609,38649032:269953 +k1,22252:31563944,38649032:269954 +k1,22252:32583029,38649032:0 +) +(1,22253:6630773,39514112:25952256,513147,126483 +k1,22252:9652739,39514112:259623 +k1,22252:12781529,39514112:259624 +k1,22252:13700444,39514112:259623 +k1,22252:14315928,39514112:259624 +k1,22252:15852848,39514112:259623 +k1,22252:17104031,39514112:259623 +k1,22252:20238719,39514112:259624 +k1,22252:22196380,39514112:259623 +k1,22252:25692826,39514112:259623 +k1,22252:28302571,39514112:259624 +k1,22252:29245079,39514112:259623 +k1,22252:31316118,39514112:259624 +k1,22252:32227169,39514112:259623 +k1,22252:32583029,39514112:0 +) +(1,22253:6630773,40379192:25952256,513147,126483 +k1,22252:8049065,40379192:261582 +k1,22252:10767592,40379192:261582 +k1,22252:11844442,40379192:261582 +k1,22252:13172296,40379192:261583 +k1,22252:14887467,40379192:261582 +k1,22252:16697665,40379192:261582 +k1,22252:20133811,40379192:261582 +k1,22252:21078278,40379192:261582 +k1,22252:23242370,40379192:261582 +k1,22252:24495512,40379192:261582 +k1,22252:26270321,40379192:261583 +k1,22252:27183331,40379192:261582 +k1,22252:28722210,40379192:261582 +k1,22252:30002877,40379192:261582 +k1,22253:32583029,40379192:0 +) +(1,22253:6630773,41244272:25952256,505283,134348 +k1,22252:8487146,41244272:258605 +k1,22252:9428636,41244272:258605 +k1,22252:13369054,41244272:258605 +k1,22252:14699828,41244272:258605 +k1,22252:17285616,41244272:258605 +k1,22252:18874601,41244272:258604 +k1,22252:22590230,41244272:258605 +k1,22252:24620273,41244272:258605 +k1,22252:26451087,41244272:258605 +k1,22252:28498170,41244272:258605 +k1,22252:32583029,41244272:0 +) +(1,22253:6630773,42109352:25952256,513147,134348 +k1,22252:10589366,42109352:168646 +k1,22252:11949457,42109352:168646 +k1,22252:13576278,42109352:168645 +k1,22252:15030085,42109352:168646 +k1,22252:16190291,42109352:168646 +k1,22252:19564303,42109352:168646 +k1,22252:20924394,42109352:168646 +k1,22252:21559001,42109352:168646 +k1,22252:24790799,42109352:168645 +k1,22252:25642330,42109352:168646 +k1,22252:27050917,42109352:168646 +k1,22252:29754496,42109352:168646 +k1,22252:32583029,42109352:0 +) +(1,22253:6630773,42974432:25952256,513147,126483 +k1,22252:9486905,42974432:188161 +k1,22252:11906567,42974432:188161 +k1,22252:15532746,42974432:188160 +k1,22252:17664705,42974432:188161 +k1,22252:21732598,42974432:188161 +k1,22252:24415059,42974432:188161 +k1,22252:27693242,42974432:188160 +k1,22252:28567565,42974432:188161 +k1,22252:31391584,42974432:188161 +k1,22252:32583029,42974432:0 +) +(1,22253:6630773,43839512:25952256,513147,134348 +k1,22252:11474293,43839512:270418 +k1,22252:15005782,43839512:270418 +k1,22252:18348528,43839512:270418 +k1,22252:21529400,43839512:270418 +k1,22252:23760654,43839512:270417 +k1,22252:27258065,43839512:270418 +k1,22252:29189165,43839512:270418 +k1,22252:31333913,43839512:270418 +k1,22253:32583029,43839512:0 +) +(1,22253:6630773,44704592:25952256,505283,126483 +k1,22252:9708835,44704592:183992 +k1,22252:11903472,44704592:183992 +k1,22252:15012991,44704592:183992 +k1,22252:17687352,44704592:183993 +k1,22252:19756815,44704592:183992 +k1,22252:21638845,44704592:183992 +k1,22252:23788262,44704592:183992 +k1,22252:24623682,44704592:183992 +k1,22252:25163534,44704592:183992 +k1,22252:26798494,44704592:183993 +k1,22252:29280834,44704592:183992 +k1,22252:30596633,44704592:183992 +k1,22252:32583029,44704592:0 +) +(1,22253:6630773,45569672:25952256,505283,134348 +k1,22252:9216227,45569672:251062 +k1,22252:11873117,45569672:251063 +k1,22252:12740217,45569672:251062 +k1,22252:15047800,45569672:251063 +k1,22252:15926697,45569672:251062 +k1,22252:18843765,45569672:251063 +k1,22252:19746255,45569672:251062 +k1,22252:22855343,45569672:251063 +k1,22252:25265816,45569672:251062 +k1,22252:27213606,45569672:251063 +k1,22252:29799060,45569672:251062 +k1,22252:32583029,45569672:0 +) +] +(1,22253:32583029,45706769:0,0,0 +g1,22253:32583029,45706769 +) +) +] +(1,22253:6630773,47279633:25952256,0,0 +h1,22253:6630773,47279633:25952256,0,0 +) +] +(1,22253:4262630,4025873:0,0,0 +[1,22253:-473656,4025873:0,0,0 +(1,22253:-473656,-710413:0,0,0 +(1,22253:-473656,-710413:0,0,0 +g1,22253:-473656,-710413 +) +g1,22253:-473656,-710413 ) ] ) ] !19886 -}379 -Input:4210:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4211:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4212:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4213:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}380 Input:4214:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4215:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4216:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -386218,5408 +386422,5408 @@ Input:4221:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4222:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4223:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4224:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4225:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{380 -[1,22289:4262630,47279633:28320399,43253760,0 -(1,22289:4262630,4025873:0,0,0 -[1,22289:-473656,4025873:0,0,0 -(1,22289:-473656,-710413:0,0,0 -(1,22289:-473656,-644877:0,0,0 -k1,22289:-473656,-644877:-65536 +{381 +[1,22287:4262630,47279633:28320399,43253760,0 +(1,22287:4262630,4025873:0,0,0 +[1,22287:-473656,4025873:0,0,0 +(1,22287:-473656,-710413:0,0,0 +(1,22287:-473656,-644877:0,0,0 +k1,22287:-473656,-644877:-65536 ) -(1,22289:-473656,4736287:0,0,0 -k1,22289:-473656,4736287:5209943 +(1,22287:-473656,4736287:0,0,0 +k1,22287:-473656,4736287:5209943 ) -g1,22289:-473656,-710413 +g1,22287:-473656,-710413 ) ] ) -[1,22289:6630773,47279633:25952256,43253760,0 -[1,22289:6630773,4812305:25952256,786432,0 -(1,22289:6630773,4812305:25952256,505283,11795 -(1,22289:6630773,4812305:25952256,505283,11795 -g1,22289:3078558,4812305 -[1,22289:3078558,4812305:0,0,0 -(1,22289:3078558,2439708:0,1703936,0 -k1,22289:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22289:2537886,2439708:1179648,16384,0 +[1,22287:6630773,47279633:25952256,43253760,0 +[1,22287:6630773,4812305:25952256,786432,0 +(1,22287:6630773,4812305:25952256,505283,11795 +(1,22287:6630773,4812305:25952256,505283,11795 +g1,22287:3078558,4812305 +[1,22287:3078558,4812305:0,0,0 +(1,22287:3078558,2439708:0,1703936,0 +k1,22287:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22287:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22289:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22287:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22289:3078558,4812305:0,0,0 -(1,22289:3078558,2439708:0,1703936,0 -g1,22289:29030814,2439708 -g1,22289:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22289:36151628,1915420:16384,1179648,0 +[1,22287:3078558,4812305:0,0,0 +(1,22287:3078558,2439708:0,1703936,0 +g1,22287:29030814,2439708 +g1,22287:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22287:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22289:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22287:37855564,2439708:1179648,16384,0 ) ) -k1,22289:3078556,2439708:-34777008 +k1,22287:3078556,2439708:-34777008 ) ] -[1,22289:3078558,4812305:0,0,0 -(1,22289:3078558,49800853:0,16384,2228224 -k1,22289:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22289:2537886,49800853:1179648,16384,0 +[1,22287:3078558,4812305:0,0,0 +(1,22287:3078558,49800853:0,16384,2228224 +k1,22287:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22287:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22289:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22287:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22289:3078558,4812305:0,0,0 -(1,22289:3078558,49800853:0,16384,2228224 -g1,22289:29030814,49800853 -g1,22289:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22289:36151628,51504789:16384,1179648,0 +[1,22287:3078558,4812305:0,0,0 +(1,22287:3078558,49800853:0,16384,2228224 +g1,22287:29030814,49800853 +g1,22287:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22287:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22289:37855564,49800853:1179648,16384,0 -) -) -k1,22289:3078556,49800853:-34777008 -) -] -g1,22289:6630773,4812305 -g1,22289:6630773,4812305 -g1,22289:9264009,4812305 -k1,22289:31387653,4812305:22123644 -) -) -] -[1,22289:6630773,45706769:25952256,40108032,0 -(1,22289:6630773,45706769:25952256,40108032,0 -(1,22289:6630773,45706769:0,0,0 -g1,22289:6630773,45706769 -) -[1,22289:6630773,45706769:25952256,40108032,0 -(1,22255:6630773,6254097:25952256,513147,134348 -k1,22254:9622492,6254097:187433 -k1,22254:12215751,6254097:187433 -k1,22254:14114328,6254097:187432 -k1,22254:15406043,6254097:187433 -k1,22254:17855779,6254097:187433 -k1,22254:19062297,6254097:187433 -k1,22254:20736742,6254097:187433 -k1,22254:23258567,6254097:187433 -k1,22254:25851826,6254097:187432 -k1,22254:26800787,6254097:187433 -k1,22254:29175812,6254097:187433 -k1,22254:32583029,6254097:0 -) -(1,22255:6630773,7119177:25952256,505283,126483 -k1,22254:9072364,7119177:186497 -k1,22254:9910288,7119177:186496 -k1,22254:10452645,7119177:186497 -k1,22254:12090108,7119177:186496 -k1,22254:14059840,7119177:186497 -k1,22254:15759562,7119177:186496 -k1,22254:16562097,7119177:186497 -k1,22254:17951835,7119177:186497 -k1,22254:19549977,7119177:186496 -k1,22254:23143691,7119177:186497 -k1,22254:25585281,7119177:186496 -k1,22254:28058985,7119177:186497 -k1,22254:29237041,7119177:186496 -k1,22254:31773659,7119177:186497 -k1,22254:32583029,7119177:0 -) -(1,22255:6630773,7984257:25952256,513147,126483 -k1,22254:7875907,7984257:226049 -k1,22254:9071232,7984257:226048 -k1,22254:9767174,7984257:226049 -k1,22254:10524720,7984257:226049 -k1,22254:12036584,7984257:226048 -k1,22254:14892593,7984257:226049 -k1,22254:15770070,7984257:226049 -k1,22254:17925499,7984257:226049 -k1,22254:19434742,7984257:226048 -k1,22254:21647187,7984257:226049 -k1,22254:25910254,7984257:226049 -k1,22254:27420808,7984257:226048 -k1,22254:29657502,7984257:226049 -k1,22254:32583029,7984257:0 -) -(1,22255:6630773,8849337:25952256,513147,134348 -g1,22254:9320370,8849337 -g1,22254:11721609,8849337 -g1,22254:12572266,8849337 -(1,22254:12572266,8849337:0,452978,122846 -r1,22289:16799362,8849337:4227096,575824,122846 -k1,22254:12572266,8849337:-4227096 -) -(1,22254:12572266,8849337:4227096,452978,122846 -k1,22254:12572266,8849337:3277 -h1,22254:16796085,8849337:0,411205,112570 -) -g1,22254:16998591,8849337 -g1,22254:18765441,8849337 -k1,22255:32583029,8849337:10936627 -g1,22255:32583029,8849337 -) -(1,22256:6630773,10966155:25952256,555811,139132 -(1,22256:6630773,10966155:2899444,534184,12975 -g1,22256:6630773,10966155 -g1,22256:9530217,10966155 -) -g1,22256:13204624,10966155 -k1,22256:32583029,10966155:16741367 -g1,22256:32583029,10966155 -) -(1,22259:6630773,12224451:25952256,513147,134348 -k1,22258:8052425,12224451:246592 -k1,22258:10285413,12224451:246592 -k1,22258:12045231,12224451:246592 -k1,22258:13053351,12224451:246592 -k1,22258:15565523,12224451:246592 -k1,22258:16343611,12224451:246591 -(1,22258:16343611,12224451:0,452978,122846 -r1,22289:20570707,12224451:4227096,575824,122846 -k1,22258:16343611,12224451:-4227096 -) -(1,22258:16343611,12224451:4227096,452978,122846 -k1,22258:16343611,12224451:3277 -h1,22258:20567430,12224451:0,411205,112570 -) -k1,22258:20817299,12224451:246592 -k1,22258:22457842,12224451:246592 -k1,22258:24970014,12224451:246592 -k1,22258:28792906,12224451:246592 -k1,22258:29667333,12224451:246592 -k1,22258:32583029,12224451:0 -) -(1,22259:6630773,13089531:25952256,513147,126483 -k1,22258:10310911,13089531:242119 -k1,22258:12869728,13089531:242119 -k1,22258:14103407,13089531:242119 -k1,22258:16727104,13089531:242119 -k1,22258:17655384,13089531:242118 -k1,22258:21604219,13089531:242119 -k1,22258:25045806,13089531:242119 -k1,22258:26681876,13089531:242119 -k1,22258:30708699,13089531:242119 -k1,22258:32583029,13089531:0 -) -(1,22259:6630773,13954611:25952256,513147,134348 -k1,22258:10544975,13954611:303168 -k1,22258:12529796,13954611:303167 -k1,22258:15716548,13954611:303168 -k1,22258:17711855,13954611:303167 -k1,22258:20049261,13954611:303168 -k1,22258:23821905,13954611:303168 -k1,22258:25321759,13954611:303167 -(1,22258:25321759,13954611:0,452978,115847 -r1,22289:28493719,13954611:3171960,568825,115847 -k1,22258:25321759,13954611:-3171960 -) -(1,22258:25321759,13954611:3171960,452978,115847 -k1,22258:25321759,13954611:3277 -h1,22258:28490442,13954611:0,411205,112570 -) -k1,22258:28796887,13954611:303168 -k1,22258:30047705,13954611:303167 -k1,22258:31577052,13954611:303168 -k1,22259:32583029,13954611:0 -) -(1,22259:6630773,14819691:25952256,513147,134348 -k1,22258:8773426,14819691:173296 -k1,22258:9478219,14819691:173296 -k1,22258:11346276,14819691:173296 -k1,22258:12135609,14819691:173295 -k1,22258:14501084,14819691:173296 -k1,22258:15865825,14819691:173296 -k1,22258:18148725,14819691:173296 -k1,22258:19088137,14819691:173296 -k1,22258:20487612,14819691:173296 -k1,22258:23530074,14819691:173296 -k1,22258:24319407,14819691:173295 -k1,22258:25511788,14819691:173296 -k1,22258:28463811,14819691:173296 -k1,22258:30623503,14819691:173296 -k1,22258:32583029,14819691:0 -) -(1,22259:6630773,15684771:25952256,513147,126483 -k1,22258:7471381,15684771:154446 -k1,22258:8644913,15684771:154447 -k1,22258:10068136,15684771:154446 -k1,22258:10881875,15684771:154447 -k1,22258:12733048,15684771:154446 -k1,22258:15756661,15684771:154447 -k1,22258:16442604,15684771:154446 -k1,22258:17358579,15684771:154447 -k1,22258:19778605,15684771:154446 -k1,22258:22314630,15684771:154447 -k1,22258:24828372,15684771:154446 -k1,22258:25634247,15684771:154447 -k1,22258:26807778,15684771:154446 -k1,22258:28396152,15684771:154446 -k1,22258:29993046,15684771:154447 -k1,22258:32583029,15684771:0 -) -(1,22259:6630773,16549851:25952256,513147,126483 -k1,22258:10327041,16549851:241865 -(1,22258:10327041,16549851:0,459977,115847 -r1,22289:14202425,16549851:3875384,575824,115847 -k1,22258:10327041,16549851:-3875384 -) -(1,22258:10327041,16549851:3875384,459977,115847 -k1,22258:10327041,16549851:3277 -h1,22258:14199148,16549851:0,411205,112570 -) -k1,22258:14617961,16549851:241866 -k1,22258:16871781,16549851:241865 -k1,22258:18132732,16549851:241866 -k1,22258:19705633,16549851:241865 -k1,22258:21955522,16549851:241866 -k1,22258:22848815,16549851:241865 -k1,22258:23838447,16549851:241866 -k1,22258:25188526,16549851:241865 -k1,22258:27304722,16549851:241866 -k1,22258:30572384,16549851:241865 -k1,22258:32583029,16549851:0 -) -(1,22259:6630773,17414931:25952256,505283,126483 -g1,22258:9755529,17414931 -k1,22259:32583029,17414931:20458374 -g1,22259:32583029,17414931 -) -v1,22261:6630773,18280011:0,393216,0 -(1,22262:6630773,25677675:25952256,7790880,0 -g1,22262:6630773,25677675 -g1,22262:6237557,25677675 -r1,22289:6368629,25677675:131072,7790880,0 -g1,22262:6567858,25677675 -g1,22262:6764466,25677675 -[1,22262:6764466,25677675:25818563,7790880,0 -(1,22262:6764466,18641188:25818563,754393,260573 -(1,22261:6764466,18641188:0,754393,260573 -r1,22289:7856192,18641188:1091726,1014966,260573 -k1,22261:6764466,18641188:-1091726 -) -(1,22261:6764466,18641188:1091726,754393,260573 -) -k1,22261:8060773,18641188:204581 -k1,22261:8388453,18641188:327680 -k1,22261:11049979,18641188:204581 -k1,22261:12729775,18641188:204581 -k1,22261:13743726,18641188:204581 -k1,22261:15719090,18641188:204581 -k1,22261:16733041,18641188:204581 -k1,22261:18825714,18641188:204581 -k1,22261:22071166,18641188:204581 -k1,22261:23037275,18641188:204581 -k1,22261:26681841,18641188:204581 -k1,22261:27572584,18641188:204581 -k1,22261:30093863,18641188:204581 -k1,22261:31773659,18641188:204581 -k1,22261:32583029,18641188:0 -) -(1,22262:6764466,19506268:25818563,513147,134348 -k1,22261:8761827,19506268:226578 -k1,22261:9797774,19506268:226577 -k1,22261:13297875,19506268:226578 -k1,22261:15370603,19506268:226578 -k1,22261:16280066,19506268:226578 -k1,22261:19721839,19506268:226577 -k1,22261:20576252,19506268:226578 -k1,22261:21821915,19506268:226578 -k1,22261:23786507,19506268:226577 -(1,22261:23786507,19506268:0,452978,115847 -r1,22289:27310179,19506268:3523672,568825,115847 -k1,22261:23786507,19506268:-3523672 -) -(1,22261:23786507,19506268:3523672,452978,115847 -k1,22261:23786507,19506268:3277 -h1,22261:27306902,19506268:0,411205,112570 -) -k1,22261:27536757,19506268:226578 -k1,22261:32583029,19506268:0 -) -(1,22262:6764466,20371348:25818563,513147,134348 -k1,22261:8867472,20371348:236541 -k1,22261:9755441,20371348:236541 -k1,22261:11011068,20371348:236542 -k1,22261:13278570,20371348:236541 -k1,22261:14174403,20371348:236541 -k1,22261:15430029,20371348:236541 -k1,22261:19456517,20371348:236541 -k1,22261:20352351,20371348:236542 -k1,22261:21607977,20371348:236541 -k1,22261:24368965,20371348:236541 -k1,22261:25952926,20371348:236541 -k1,22261:27380912,20371348:236541 -k1,22261:29635308,20371348:236542 -k1,22261:30349606,20371348:236541 -k1,22261:31605232,20371348:236541 -k1,22262:32583029,20371348:0 -) -(1,22262:6764466,21236428:25818563,513147,134348 -k1,22261:8151577,21236428:242852 -k1,22261:9077314,21236428:242852 -k1,22261:10160992,21236428:242851 -k1,22261:13468308,21236428:242852 -k1,22261:14702720,21236428:242852 -k1,22261:17530967,21236428:242852 -k1,22261:18456704,21236428:242852 -k1,22261:19634099,21236428:242852 -k1,22261:20528378,21236428:242851 -k1,22261:21127090,21236428:242852 -k1,22261:24127697,21236428:242852 -k1,22261:24986587,21236428:242852 -k1,22261:26248524,21236428:242852 -k1,22261:28520370,21236428:242851 -k1,22261:30459949,21236428:242852 -k1,22261:31835263,21236428:242852 -k1,22261:32583029,21236428:0 -) -(1,22262:6764466,22101508:25818563,513147,134348 -k1,22261:10146069,22101508:288959 -k1,22261:14154852,22101508:288960 -k1,22261:15103103,22101508:288959 -k1,22261:16411147,22101508:288959 -k1,22261:18860174,22101508:288960 -k1,22261:20420531,22101508:288959 -k1,22261:22880042,22101508:288959 -k1,22261:25561721,22101508:288960 -k1,22261:26206540,22101508:288959 -k1,22261:28526460,22101508:288959 -k1,22261:30670744,22101508:288960 -k1,22261:32227169,22101508:288959 -k1,22261:32583029,22101508:0 -) -(1,22262:6764466,22966588:25818563,505283,134348 -k1,22261:12008165,22966588:197427 -k1,22261:13362302,22966588:197427 -k1,22261:14321258,22966588:197428 -k1,22261:16706277,22966588:197427 -k1,22261:17259564,22966588:197427 -k1,22261:19574459,22966588:197427 -k1,22261:20813909,22966588:197428 -k1,22261:23042297,22966588:197427 -k1,22261:26229476,22966588:197427 -k1,22261:27618348,22966588:197427 -k1,22261:31202677,22966588:197428 -k1,22261:31931601,22966588:197427 -k1,22261:32583029,22966588:0 -) -(1,22262:6764466,23831668:25818563,505283,134348 -k1,22261:8096813,23831668:239862 -k1,22261:8692535,23831668:239862 -k1,22261:11875619,23831668:239862 -k1,22261:14774931,23831668:239861 -k1,22261:15776321,23831668:239862 -k1,22261:18899767,23831668:239862 -k1,22261:20158714,23831668:239862 -k1,22261:21933429,23831668:239862 -k1,22261:23686517,23831668:239862 -k1,22261:24577806,23831668:239861 -k1,22261:26214240,23831668:239862 -k1,22261:28464747,23831668:239862 -k1,22261:29356037,23831668:239862 -k1,22261:32583029,23831668:0 -) -(1,22262:6764466,24696748:25818563,513147,126483 -k1,22261:8065287,24696748:258799 -k1,22261:10849844,24696748:258799 -k1,22261:13184824,24696748:258799 -k1,22261:13799483,24696748:258799 -k1,22261:16820625,24696748:258799 -k1,22261:19923687,24696748:258799 -k1,22261:21286769,24696748:258800 -k1,22261:22293334,24696748:258799 -k1,22261:24239030,24696748:258799 -k1,22261:25445480,24696748:258799 -k1,22261:28539366,24696748:258799 -k1,22261:29890650,24696748:258799 -(1,22261:29890650,24696748:0,452978,115847 -r1,22289:31655763,24696748:1765113,568825,115847 -k1,22261:29890650,24696748:-1765113 -) -(1,22261:29890650,24696748:1765113,452978,115847 -k1,22261:29890650,24696748:3277 -h1,22261:31652486,24696748:0,411205,112570 -) -k1,22261:31914562,24696748:258799 -k1,22262:32583029,24696748:0 -) -(1,22262:6764466,25561828:25818563,513147,115847 -(1,22261:6764466,25561828:0,452978,115847 -r1,22289:9584715,25561828:2820249,568825,115847 -k1,22261:6764466,25561828:-2820249 -) -(1,22261:6764466,25561828:2820249,452978,115847 -k1,22261:6764466,25561828:3277 -h1,22261:9581438,25561828:0,411205,112570 -) -g1,22261:9783944,25561828 -g1,22261:12310356,25561828 -g1,22261:13176741,25561828 -(1,22261:13176741,25561828:0,452978,115847 -r1,22289:15293566,25561828:2116825,568825,115847 -k1,22261:13176741,25561828:-2116825 -) -(1,22261:13176741,25561828:2116825,452978,115847 -k1,22261:13176741,25561828:3277 -h1,22261:15290289,25561828:0,411205,112570 -) -k1,22262:32583030,25561828:17237036 -g1,22262:32583030,25561828 -) -] -g1,22262:32583029,25677675 -) -h1,22262:6630773,25677675:0,0,0 -(1,22265:6630773,26542755:25952256,513147,126483 -h1,22264:6630773,26542755:983040,0,0 -k1,22264:9370025,26542755:265923 -k1,22264:10655033,26542755:265923 -k1,22264:13186536,26542755:265923 -(1,22264:13186536,26542755:0,452978,122846 -r1,22289:17413632,26542755:4227096,575824,122846 -k1,22264:13186536,26542755:-4227096 -) -(1,22264:13186536,26542755:4227096,452978,122846 -k1,22264:13186536,26542755:3277 -h1,22264:17410355,26542755:0,411205,112570 -) -k1,22264:17679554,26542755:265922 -k1,22264:19049759,26542755:265923 -k1,22264:20063448,26542755:265923 -k1,22264:22294796,26542755:265923 -k1,22264:23212147,26542755:265923 -k1,22264:23833930,26542755:265923 -k1,22264:25550819,26542755:265922 -k1,22264:26468170,26542755:265923 -k1,22264:29032441,26542755:265923 -k1,22264:30317449,26542755:265923 -k1,22264:32583029,26542755:0 -) -(1,22265:6630773,27407835:25952256,513147,134348 -k1,22264:7960170,27407835:172687 -k1,22264:9526809,27407835:172688 -k1,22264:10055356,27407835:172687 -k1,22264:12077469,27407835:172687 -k1,22264:16042070,27407835:172688 -k1,22264:17371467,27407835:172687 -k1,22264:19894275,27407835:172687 -k1,22264:21460914,27407835:172688 -k1,22264:25036230,27407835:172687 -k1,22264:27971260,27407835:172687 -k1,22264:28795376,27407835:172688 -k1,22264:29987148,27407835:172687 -k1,22264:32583029,27407835:0 -) -(1,22265:6630773,28272915:25952256,513147,134348 -g1,22264:8490684,28272915 -g1,22264:10730704,28272915 -g1,22264:11285793,28272915 -g1,22264:12916984,28272915 -g1,22264:14447249,28272915 -g1,22264:15259240,28272915 -g1,22264:15814329,28272915 -g1,22264:17872814,28272915 -g1,22264:19340820,28272915 -g1,22264:20982496,28272915 -g1,22264:22200810,28272915 -g1,22264:24665619,28272915 -g1,22264:25396345,28272915 -k1,22265:32583029,28272915:5621029 -g1,22265:32583029,28272915 -) -v1,22267:6630773,28957770:0,393216,0 -(1,22275:6630773,32037873:25952256,3473319,196608 -g1,22275:6630773,32037873 -g1,22275:6630773,32037873 -g1,22275:6434165,32037873 -(1,22275:6434165,32037873:0,3473319,196608 -r1,22289:32779637,32037873:26345472,3669927,196608 -k1,22275:6434165,32037873:-26345472 -) -(1,22275:6434165,32037873:26345472,3473319,196608 -[1,22275:6630773,32037873:25952256,3276711,0 -(1,22269:6630773,29192207:25952256,431045,112852 -(1,22268:6630773,29192207:0,0,0 -g1,22268:6630773,29192207 -g1,22268:6630773,29192207 -g1,22268:6303093,29192207 -(1,22268:6303093,29192207:0,0,0 -) -g1,22268:6630773,29192207 -) -k1,22269:6630773,29192207:0 -g1,22269:10614221,29192207 -g1,22269:11278129,29192207 -k1,22269:11278129,29192207:0 -h1,22269:14929622,29192207:0,0,0 -k1,22269:32583030,29192207:17653408 -g1,22269:32583030,29192207 -) -(1,22270:6630773,29877062:25952256,424439,112852 -h1,22270:6630773,29877062:0,0,0 -g1,22270:6962727,29877062 -g1,22270:7294681,29877062 -g1,22270:7626635,29877062 -g1,22270:7958589,29877062 -g1,22270:8290543,29877062 -g1,22270:8622497,29877062 -g1,22270:8954451,29877062 -g1,22270:11610083,29877062 -g1,22270:12273991,29877062 -g1,22270:14265715,29877062 -g1,22270:14929623,29877062 -g1,22270:15925485,29877062 -g1,22270:16589393,29877062 -g1,22270:17253301,29877062 -g1,22270:18581117,29877062 -h1,22270:18913071,29877062:0,0,0 -k1,22270:32583029,29877062:13669958 -g1,22270:32583029,29877062 -) -(1,22271:6630773,30561917:25952256,424439,112852 -h1,22271:6630773,30561917:0,0,0 -g1,22271:6962727,30561917 -g1,22271:7294681,30561917 -g1,22271:11610082,30561917 -h1,22271:11942036,30561917:0,0,0 -k1,22271:32583028,30561917:20640992 -g1,22271:32583028,30561917 -) -(1,22272:6630773,31246772:25952256,424439,112852 -h1,22272:6630773,31246772:0,0,0 -g1,22272:6962727,31246772 -g1,22272:7294681,31246772 -g1,22272:14265713,31246772 -g1,22272:14929621,31246772 -k1,22272:14929621,31246772:0 -h1,22272:15925483,31246772:0,0,0 -k1,22272:32583029,31246772:16657546 -g1,22272:32583029,31246772 -) -(1,22273:6630773,31931627:25952256,431045,106246 -h1,22273:6630773,31931627:0,0,0 -g1,22273:6962727,31931627 -g1,22273:7294681,31931627 -g1,22273:7626635,31931627 -g1,22273:7958589,31931627 -g1,22273:8290543,31931627 -g1,22273:8622497,31931627 -g1,22273:8954451,31931627 -g1,22273:9286405,31931627 -g1,22273:9618359,31931627 -g1,22273:9950313,31931627 -g1,22273:10282267,31931627 -g1,22273:10614221,31931627 -g1,22273:10946175,31931627 -g1,22273:14929622,31931627 -g1,22273:15593530,31931627 -h1,22273:18249162,31931627:0,0,0 -k1,22273:32583029,31931627:14333867 -g1,22273:32583029,31931627 -) -] -) -g1,22275:32583029,32037873 -g1,22275:6630773,32037873 -g1,22275:6630773,32037873 -g1,22275:32583029,32037873 -g1,22275:32583029,32037873 -) -h1,22275:6630773,32234481:0,0,0 -(1,22278:6630773,41934595:25952256,9634578,0 -k1,22278:13183781,41934595:6553008 -h1,22277:13183781,41934595:0,0,0 -(1,22277:13183781,41934595:12846240,9634578,0 -(1,22277:13183781,41934595:12846136,9634602,0 -(1,22277:13183781,41934595:12846136,9634602,0 -(1,22277:13183781,41934595:0,9634602,0 -(1,22277:13183781,41934595:0,14208860,0 -(1,22277:13183781,41934595:18945146,14208860,0 -) -k1,22277:13183781,41934595:-18945146 -) -) -g1,22277:26029917,41934595 -) -) -) -g1,22278:26030021,41934595 -k1,22278:32583029,41934595:6553008 -) -v1,22285:6630773,42799675:0,393216,0 -(1,22286:6630773,44925158:25952256,2518699,0 -g1,22286:6630773,44925158 -g1,22286:6237557,44925158 -r1,22289:6368629,44925158:131072,2518699,0 -g1,22286:6567858,44925158 -g1,22286:6764466,44925158 -[1,22286:6764466,44925158:25818563,2518699,0 -(1,22286:6764466,43072152:25818563,665693,196608 -(1,22285:6764466,43072152:0,665693,196608 -r1,22289:7868133,43072152:1103667,862301,196608 -k1,22285:6764466,43072152:-1103667 -) -(1,22285:6764466,43072152:1103667,665693,196608 -) -k1,22285:8054294,43072152:186161 -k1,22285:9780512,43072152:327680 -k1,22285:12329245,43072152:186160 -k1,22285:13534491,43072152:186161 -k1,22285:15216839,43072152:186161 -k1,22285:16019037,43072152:186160 -k1,22285:17224283,43072152:186161 -k1,22285:20164922,43072152:186161 -k1,22285:22321750,43072152:186160 -k1,22285:23159339,43072152:186161 -k1,22285:24611656,43072152:186161 -k1,22285:25954527,43072152:186161 -k1,22285:26753449,43072152:186160 -k1,22285:27295470,43072152:186161 -k1,22285:29080709,43072152:186161 -k1,22285:30718491,43072152:186160 -k1,22285:31563944,43072152:186161 -k1,22285:32583029,43072152:0 -) -(1,22286:6764466,43937232:25818563,513147,134348 -k1,22285:10364383,43937232:161898 -k1,22285:12842978,43937232:161897 -k1,22285:14572497,43937232:161898 -k1,22285:17736598,43937232:161898 -(1,22285:17736598,43937232:0,452978,115847 -r1,22289:21260270,43937232:3523672,568825,115847 -k1,22285:17736598,43937232:-3523672 -) -(1,22285:17736598,43937232:3523672,452978,115847 -k1,22285:17736598,43937232:3277 -h1,22285:21256993,43937232:0,411205,112570 -) -k1,22285:21595837,43937232:161897 -(1,22285:21595837,43937232:0,452978,115847 -r1,22289:26878068,43937232:5282231,568825,115847 -k1,22285:21595837,43937232:-5282231 -) -(1,22285:21595837,43937232:5282231,452978,115847 -k1,22285:21595837,43937232:3277 -h1,22285:26874791,43937232:0,411205,112570 -) -k1,22285:27213636,43937232:161898 -(1,22285:27213636,43937232:0,452978,115847 -r1,22289:32495867,43937232:5282231,568825,115847 -k1,22285:27213636,43937232:-5282231 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22287:37855564,49800853:1179648,16384,0 +) +) +k1,22287:3078556,49800853:-34777008 +) +] +g1,22287:6630773,4812305 +g1,22287:6630773,4812305 +g1,22287:9264009,4812305 +k1,22287:31387653,4812305:22123644 +) +) +] +[1,22287:6630773,45706769:25952256,40108032,0 +(1,22287:6630773,45706769:25952256,40108032,0 +(1,22287:6630773,45706769:0,0,0 +g1,22287:6630773,45706769 +) +[1,22287:6630773,45706769:25952256,40108032,0 +(1,22253:6630773,6254097:25952256,513147,134348 +k1,22252:9622492,6254097:187433 +k1,22252:12215751,6254097:187433 +k1,22252:14114328,6254097:187432 +k1,22252:15406043,6254097:187433 +k1,22252:17855779,6254097:187433 +k1,22252:19062297,6254097:187433 +k1,22252:20736742,6254097:187433 +k1,22252:23258567,6254097:187433 +k1,22252:25851826,6254097:187432 +k1,22252:26800787,6254097:187433 +k1,22252:29175812,6254097:187433 +k1,22252:32583029,6254097:0 +) +(1,22253:6630773,7119177:25952256,505283,126483 +k1,22252:9072364,7119177:186497 +k1,22252:9910288,7119177:186496 +k1,22252:10452645,7119177:186497 +k1,22252:12090108,7119177:186496 +k1,22252:14059840,7119177:186497 +k1,22252:15759562,7119177:186496 +k1,22252:16562097,7119177:186497 +k1,22252:17951835,7119177:186497 +k1,22252:19549977,7119177:186496 +k1,22252:23143691,7119177:186497 +k1,22252:25585281,7119177:186496 +k1,22252:28058985,7119177:186497 +k1,22252:29237041,7119177:186496 +k1,22252:31773659,7119177:186497 +k1,22252:32583029,7119177:0 +) +(1,22253:6630773,7984257:25952256,513147,126483 +k1,22252:7875907,7984257:226049 +k1,22252:9071232,7984257:226048 +k1,22252:9767174,7984257:226049 +k1,22252:10524720,7984257:226049 +k1,22252:12036584,7984257:226048 +k1,22252:14892593,7984257:226049 +k1,22252:15770070,7984257:226049 +k1,22252:17925499,7984257:226049 +k1,22252:19434742,7984257:226048 +k1,22252:21647187,7984257:226049 +k1,22252:25910254,7984257:226049 +k1,22252:27420808,7984257:226048 +k1,22252:29657502,7984257:226049 +k1,22252:32583029,7984257:0 +) +(1,22253:6630773,8849337:25952256,513147,134348 +g1,22252:9320370,8849337 +g1,22252:11721609,8849337 +g1,22252:12572266,8849337 +(1,22252:12572266,8849337:0,452978,122846 +r1,22287:16799362,8849337:4227096,575824,122846 +k1,22252:12572266,8849337:-4227096 +) +(1,22252:12572266,8849337:4227096,452978,122846 +k1,22252:12572266,8849337:3277 +h1,22252:16796085,8849337:0,411205,112570 +) +g1,22252:16998591,8849337 +g1,22252:18765441,8849337 +k1,22253:32583029,8849337:10936627 +g1,22253:32583029,8849337 +) +(1,22254:6630773,10966155:25952256,555811,139132 +(1,22254:6630773,10966155:2899444,534184,12975 +g1,22254:6630773,10966155 +g1,22254:9530217,10966155 +) +g1,22254:13204624,10966155 +k1,22254:32583029,10966155:16741367 +g1,22254:32583029,10966155 +) +(1,22257:6630773,12224451:25952256,513147,134348 +k1,22256:8052425,12224451:246592 +k1,22256:10285413,12224451:246592 +k1,22256:12045231,12224451:246592 +k1,22256:13053351,12224451:246592 +k1,22256:15565523,12224451:246592 +k1,22256:16343611,12224451:246591 +(1,22256:16343611,12224451:0,452978,122846 +r1,22287:20570707,12224451:4227096,575824,122846 +k1,22256:16343611,12224451:-4227096 +) +(1,22256:16343611,12224451:4227096,452978,122846 +k1,22256:16343611,12224451:3277 +h1,22256:20567430,12224451:0,411205,112570 +) +k1,22256:20817299,12224451:246592 +k1,22256:22457842,12224451:246592 +k1,22256:24970014,12224451:246592 +k1,22256:28792906,12224451:246592 +k1,22256:29667333,12224451:246592 +k1,22256:32583029,12224451:0 +) +(1,22257:6630773,13089531:25952256,513147,126483 +k1,22256:10310911,13089531:242119 +k1,22256:12869728,13089531:242119 +k1,22256:14103407,13089531:242119 +k1,22256:16727104,13089531:242119 +k1,22256:17655384,13089531:242118 +k1,22256:21604219,13089531:242119 +k1,22256:25045806,13089531:242119 +k1,22256:26681876,13089531:242119 +k1,22256:30708699,13089531:242119 +k1,22256:32583029,13089531:0 +) +(1,22257:6630773,13954611:25952256,513147,134348 +k1,22256:10544975,13954611:303168 +k1,22256:12529796,13954611:303167 +k1,22256:15716548,13954611:303168 +k1,22256:17711855,13954611:303167 +k1,22256:20049261,13954611:303168 +k1,22256:23821905,13954611:303168 +k1,22256:25321759,13954611:303167 +(1,22256:25321759,13954611:0,452978,115847 +r1,22287:28493719,13954611:3171960,568825,115847 +k1,22256:25321759,13954611:-3171960 +) +(1,22256:25321759,13954611:3171960,452978,115847 +k1,22256:25321759,13954611:3277 +h1,22256:28490442,13954611:0,411205,112570 +) +k1,22256:28796887,13954611:303168 +k1,22256:30047705,13954611:303167 +k1,22256:31577052,13954611:303168 +k1,22257:32583029,13954611:0 +) +(1,22257:6630773,14819691:25952256,513147,134348 +k1,22256:8773426,14819691:173296 +k1,22256:9478219,14819691:173296 +k1,22256:11346276,14819691:173296 +k1,22256:12135609,14819691:173295 +k1,22256:14501084,14819691:173296 +k1,22256:15865825,14819691:173296 +k1,22256:18148725,14819691:173296 +k1,22256:19088137,14819691:173296 +k1,22256:20487612,14819691:173296 +k1,22256:23530074,14819691:173296 +k1,22256:24319407,14819691:173295 +k1,22256:25511788,14819691:173296 +k1,22256:28463811,14819691:173296 +k1,22256:30623503,14819691:173296 +k1,22256:32583029,14819691:0 +) +(1,22257:6630773,15684771:25952256,513147,126483 +k1,22256:7471381,15684771:154446 +k1,22256:8644913,15684771:154447 +k1,22256:10068136,15684771:154446 +k1,22256:10881875,15684771:154447 +k1,22256:12733048,15684771:154446 +k1,22256:15756661,15684771:154447 +k1,22256:16442604,15684771:154446 +k1,22256:17358579,15684771:154447 +k1,22256:19778605,15684771:154446 +k1,22256:22314630,15684771:154447 +k1,22256:24828372,15684771:154446 +k1,22256:25634247,15684771:154447 +k1,22256:26807778,15684771:154446 +k1,22256:28396152,15684771:154446 +k1,22256:29993046,15684771:154447 +k1,22256:32583029,15684771:0 +) +(1,22257:6630773,16549851:25952256,513147,126483 +k1,22256:10327041,16549851:241865 +(1,22256:10327041,16549851:0,459977,115847 +r1,22287:14202425,16549851:3875384,575824,115847 +k1,22256:10327041,16549851:-3875384 +) +(1,22256:10327041,16549851:3875384,459977,115847 +k1,22256:10327041,16549851:3277 +h1,22256:14199148,16549851:0,411205,112570 +) +k1,22256:14617961,16549851:241866 +k1,22256:16871781,16549851:241865 +k1,22256:18132732,16549851:241866 +k1,22256:19705633,16549851:241865 +k1,22256:21955522,16549851:241866 +k1,22256:22848815,16549851:241865 +k1,22256:23838447,16549851:241866 +k1,22256:25188526,16549851:241865 +k1,22256:27304722,16549851:241866 +k1,22256:30572384,16549851:241865 +k1,22256:32583029,16549851:0 +) +(1,22257:6630773,17414931:25952256,505283,126483 +g1,22256:9755529,17414931 +k1,22257:32583029,17414931:20458374 +g1,22257:32583029,17414931 +) +v1,22259:6630773,18280011:0,393216,0 +(1,22260:6630773,25677675:25952256,7790880,0 +g1,22260:6630773,25677675 +g1,22260:6237557,25677675 +r1,22287:6368629,25677675:131072,7790880,0 +g1,22260:6567858,25677675 +g1,22260:6764466,25677675 +[1,22260:6764466,25677675:25818563,7790880,0 +(1,22260:6764466,18641188:25818563,754393,260573 +(1,22259:6764466,18641188:0,754393,260573 +r1,22287:7856192,18641188:1091726,1014966,260573 +k1,22259:6764466,18641188:-1091726 +) +(1,22259:6764466,18641188:1091726,754393,260573 +) +k1,22259:8060773,18641188:204581 +k1,22259:8388453,18641188:327680 +k1,22259:11049979,18641188:204581 +k1,22259:12729775,18641188:204581 +k1,22259:13743726,18641188:204581 +k1,22259:15719090,18641188:204581 +k1,22259:16733041,18641188:204581 +k1,22259:18825714,18641188:204581 +k1,22259:22071166,18641188:204581 +k1,22259:23037275,18641188:204581 +k1,22259:26681841,18641188:204581 +k1,22259:27572584,18641188:204581 +k1,22259:30093863,18641188:204581 +k1,22259:31773659,18641188:204581 +k1,22259:32583029,18641188:0 +) +(1,22260:6764466,19506268:25818563,513147,134348 +k1,22259:8761827,19506268:226578 +k1,22259:9797774,19506268:226577 +k1,22259:13297875,19506268:226578 +k1,22259:15370603,19506268:226578 +k1,22259:16280066,19506268:226578 +k1,22259:19721839,19506268:226577 +k1,22259:20576252,19506268:226578 +k1,22259:21821915,19506268:226578 +k1,22259:23786507,19506268:226577 +(1,22259:23786507,19506268:0,452978,115847 +r1,22287:27310179,19506268:3523672,568825,115847 +k1,22259:23786507,19506268:-3523672 +) +(1,22259:23786507,19506268:3523672,452978,115847 +k1,22259:23786507,19506268:3277 +h1,22259:27306902,19506268:0,411205,112570 +) +k1,22259:27536757,19506268:226578 +k1,22259:32583029,19506268:0 +) +(1,22260:6764466,20371348:25818563,513147,134348 +k1,22259:8867472,20371348:236541 +k1,22259:9755441,20371348:236541 +k1,22259:11011068,20371348:236542 +k1,22259:13278570,20371348:236541 +k1,22259:14174403,20371348:236541 +k1,22259:15430029,20371348:236541 +k1,22259:19456517,20371348:236541 +k1,22259:20352351,20371348:236542 +k1,22259:21607977,20371348:236541 +k1,22259:24368965,20371348:236541 +k1,22259:25952926,20371348:236541 +k1,22259:27380912,20371348:236541 +k1,22259:29635308,20371348:236542 +k1,22259:30349606,20371348:236541 +k1,22259:31605232,20371348:236541 +k1,22260:32583029,20371348:0 +) +(1,22260:6764466,21236428:25818563,513147,134348 +k1,22259:8151577,21236428:242852 +k1,22259:9077314,21236428:242852 +k1,22259:10160992,21236428:242851 +k1,22259:13468308,21236428:242852 +k1,22259:14702720,21236428:242852 +k1,22259:17530967,21236428:242852 +k1,22259:18456704,21236428:242852 +k1,22259:19634099,21236428:242852 +k1,22259:20528378,21236428:242851 +k1,22259:21127090,21236428:242852 +k1,22259:24127697,21236428:242852 +k1,22259:24986587,21236428:242852 +k1,22259:26248524,21236428:242852 +k1,22259:28520370,21236428:242851 +k1,22259:30459949,21236428:242852 +k1,22259:31835263,21236428:242852 +k1,22259:32583029,21236428:0 +) +(1,22260:6764466,22101508:25818563,513147,134348 +k1,22259:10146069,22101508:288959 +k1,22259:14154852,22101508:288960 +k1,22259:15103103,22101508:288959 +k1,22259:16411147,22101508:288959 +k1,22259:18860174,22101508:288960 +k1,22259:20420531,22101508:288959 +k1,22259:22880042,22101508:288959 +k1,22259:25561721,22101508:288960 +k1,22259:26206540,22101508:288959 +k1,22259:28526460,22101508:288959 +k1,22259:30670744,22101508:288960 +k1,22259:32227169,22101508:288959 +k1,22259:32583029,22101508:0 +) +(1,22260:6764466,22966588:25818563,505283,134348 +k1,22259:12008165,22966588:197427 +k1,22259:13362302,22966588:197427 +k1,22259:14321258,22966588:197428 +k1,22259:16706277,22966588:197427 +k1,22259:17259564,22966588:197427 +k1,22259:19574459,22966588:197427 +k1,22259:20813909,22966588:197428 +k1,22259:23042297,22966588:197427 +k1,22259:26229476,22966588:197427 +k1,22259:27618348,22966588:197427 +k1,22259:31202677,22966588:197428 +k1,22259:31931601,22966588:197427 +k1,22259:32583029,22966588:0 +) +(1,22260:6764466,23831668:25818563,505283,134348 +k1,22259:8096813,23831668:239862 +k1,22259:8692535,23831668:239862 +k1,22259:11875619,23831668:239862 +k1,22259:14774931,23831668:239861 +k1,22259:15776321,23831668:239862 +k1,22259:18899767,23831668:239862 +k1,22259:20158714,23831668:239862 +k1,22259:21933429,23831668:239862 +k1,22259:23686517,23831668:239862 +k1,22259:24577806,23831668:239861 +k1,22259:26214240,23831668:239862 +k1,22259:28464747,23831668:239862 +k1,22259:29356037,23831668:239862 +k1,22259:32583029,23831668:0 +) +(1,22260:6764466,24696748:25818563,513147,126483 +k1,22259:8065287,24696748:258799 +k1,22259:10849844,24696748:258799 +k1,22259:13184824,24696748:258799 +k1,22259:13799483,24696748:258799 +k1,22259:16820625,24696748:258799 +k1,22259:19923687,24696748:258799 +k1,22259:21286769,24696748:258800 +k1,22259:22293334,24696748:258799 +k1,22259:24239030,24696748:258799 +k1,22259:25445480,24696748:258799 +k1,22259:28539366,24696748:258799 +k1,22259:29890650,24696748:258799 +(1,22259:29890650,24696748:0,452978,115847 +r1,22287:31655763,24696748:1765113,568825,115847 +k1,22259:29890650,24696748:-1765113 +) +(1,22259:29890650,24696748:1765113,452978,115847 +k1,22259:29890650,24696748:3277 +h1,22259:31652486,24696748:0,411205,112570 +) +k1,22259:31914562,24696748:258799 +k1,22260:32583029,24696748:0 +) +(1,22260:6764466,25561828:25818563,513147,115847 +(1,22259:6764466,25561828:0,452978,115847 +r1,22287:9584715,25561828:2820249,568825,115847 +k1,22259:6764466,25561828:-2820249 +) +(1,22259:6764466,25561828:2820249,452978,115847 +k1,22259:6764466,25561828:3277 +h1,22259:9581438,25561828:0,411205,112570 +) +g1,22259:9783944,25561828 +g1,22259:12310356,25561828 +g1,22259:13176741,25561828 +(1,22259:13176741,25561828:0,452978,115847 +r1,22287:15293566,25561828:2116825,568825,115847 +k1,22259:13176741,25561828:-2116825 +) +(1,22259:13176741,25561828:2116825,452978,115847 +k1,22259:13176741,25561828:3277 +h1,22259:15290289,25561828:0,411205,112570 +) +k1,22260:32583030,25561828:17237036 +g1,22260:32583030,25561828 +) +] +g1,22260:32583029,25677675 +) +h1,22260:6630773,25677675:0,0,0 +(1,22263:6630773,26542755:25952256,513147,126483 +h1,22262:6630773,26542755:983040,0,0 +k1,22262:9370025,26542755:265923 +k1,22262:10655033,26542755:265923 +k1,22262:13186536,26542755:265923 +(1,22262:13186536,26542755:0,452978,122846 +r1,22287:17413632,26542755:4227096,575824,122846 +k1,22262:13186536,26542755:-4227096 +) +(1,22262:13186536,26542755:4227096,452978,122846 +k1,22262:13186536,26542755:3277 +h1,22262:17410355,26542755:0,411205,112570 +) +k1,22262:17679554,26542755:265922 +k1,22262:19049759,26542755:265923 +k1,22262:20063448,26542755:265923 +k1,22262:22294796,26542755:265923 +k1,22262:23212147,26542755:265923 +k1,22262:23833930,26542755:265923 +k1,22262:25550819,26542755:265922 +k1,22262:26468170,26542755:265923 +k1,22262:29032441,26542755:265923 +k1,22262:30317449,26542755:265923 +k1,22262:32583029,26542755:0 +) +(1,22263:6630773,27407835:25952256,513147,134348 +k1,22262:7960170,27407835:172687 +k1,22262:9526809,27407835:172688 +k1,22262:10055356,27407835:172687 +k1,22262:12077469,27407835:172687 +k1,22262:16042070,27407835:172688 +k1,22262:17371467,27407835:172687 +k1,22262:19894275,27407835:172687 +k1,22262:21460914,27407835:172688 +k1,22262:25036230,27407835:172687 +k1,22262:27971260,27407835:172687 +k1,22262:28795376,27407835:172688 +k1,22262:29987148,27407835:172687 +k1,22262:32583029,27407835:0 +) +(1,22263:6630773,28272915:25952256,513147,134348 +g1,22262:8490684,28272915 +g1,22262:10730704,28272915 +g1,22262:11285793,28272915 +g1,22262:12916984,28272915 +g1,22262:14447249,28272915 +g1,22262:15259240,28272915 +g1,22262:15814329,28272915 +g1,22262:17872814,28272915 +g1,22262:19340820,28272915 +g1,22262:20982496,28272915 +g1,22262:22200810,28272915 +g1,22262:24665619,28272915 +g1,22262:25396345,28272915 +k1,22263:32583029,28272915:5621029 +g1,22263:32583029,28272915 +) +v1,22265:6630773,28957770:0,393216,0 +(1,22273:6630773,32037873:25952256,3473319,196608 +g1,22273:6630773,32037873 +g1,22273:6630773,32037873 +g1,22273:6434165,32037873 +(1,22273:6434165,32037873:0,3473319,196608 +r1,22287:32779637,32037873:26345472,3669927,196608 +k1,22273:6434165,32037873:-26345472 +) +(1,22273:6434165,32037873:26345472,3473319,196608 +[1,22273:6630773,32037873:25952256,3276711,0 +(1,22267:6630773,29192207:25952256,431045,112852 +(1,22266:6630773,29192207:0,0,0 +g1,22266:6630773,29192207 +g1,22266:6630773,29192207 +g1,22266:6303093,29192207 +(1,22266:6303093,29192207:0,0,0 +) +g1,22266:6630773,29192207 +) +k1,22267:6630773,29192207:0 +g1,22267:10614221,29192207 +g1,22267:11278129,29192207 +k1,22267:11278129,29192207:0 +h1,22267:14929622,29192207:0,0,0 +k1,22267:32583030,29192207:17653408 +g1,22267:32583030,29192207 +) +(1,22268:6630773,29877062:25952256,424439,112852 +h1,22268:6630773,29877062:0,0,0 +g1,22268:6962727,29877062 +g1,22268:7294681,29877062 +g1,22268:7626635,29877062 +g1,22268:7958589,29877062 +g1,22268:8290543,29877062 +g1,22268:8622497,29877062 +g1,22268:8954451,29877062 +g1,22268:11610083,29877062 +g1,22268:12273991,29877062 +g1,22268:14265715,29877062 +g1,22268:14929623,29877062 +g1,22268:15925485,29877062 +g1,22268:16589393,29877062 +g1,22268:17253301,29877062 +g1,22268:18581117,29877062 +h1,22268:18913071,29877062:0,0,0 +k1,22268:32583029,29877062:13669958 +g1,22268:32583029,29877062 +) +(1,22269:6630773,30561917:25952256,424439,112852 +h1,22269:6630773,30561917:0,0,0 +g1,22269:6962727,30561917 +g1,22269:7294681,30561917 +g1,22269:11610082,30561917 +h1,22269:11942036,30561917:0,0,0 +k1,22269:32583028,30561917:20640992 +g1,22269:32583028,30561917 +) +(1,22270:6630773,31246772:25952256,424439,112852 +h1,22270:6630773,31246772:0,0,0 +g1,22270:6962727,31246772 +g1,22270:7294681,31246772 +g1,22270:14265713,31246772 +g1,22270:14929621,31246772 +k1,22270:14929621,31246772:0 +h1,22270:15925483,31246772:0,0,0 +k1,22270:32583029,31246772:16657546 +g1,22270:32583029,31246772 +) +(1,22271:6630773,31931627:25952256,431045,106246 +h1,22271:6630773,31931627:0,0,0 +g1,22271:6962727,31931627 +g1,22271:7294681,31931627 +g1,22271:7626635,31931627 +g1,22271:7958589,31931627 +g1,22271:8290543,31931627 +g1,22271:8622497,31931627 +g1,22271:8954451,31931627 +g1,22271:9286405,31931627 +g1,22271:9618359,31931627 +g1,22271:9950313,31931627 +g1,22271:10282267,31931627 +g1,22271:10614221,31931627 +g1,22271:10946175,31931627 +g1,22271:14929622,31931627 +g1,22271:15593530,31931627 +h1,22271:18249162,31931627:0,0,0 +k1,22271:32583029,31931627:14333867 +g1,22271:32583029,31931627 +) +] +) +g1,22273:32583029,32037873 +g1,22273:6630773,32037873 +g1,22273:6630773,32037873 +g1,22273:32583029,32037873 +g1,22273:32583029,32037873 +) +h1,22273:6630773,32234481:0,0,0 +(1,22276:6630773,41934595:25952256,9634578,0 +k1,22276:13183781,41934595:6553008 +h1,22275:13183781,41934595:0,0,0 +(1,22275:13183781,41934595:12846240,9634578,0 +(1,22275:13183781,41934595:12846136,9634602,0 +(1,22275:13183781,41934595:12846136,9634602,0 +(1,22275:13183781,41934595:0,9634602,0 +(1,22275:13183781,41934595:0,14208860,0 +(1,22275:13183781,41934595:18945146,14208860,0 +) +k1,22275:13183781,41934595:-18945146 +) +) +g1,22275:26029917,41934595 +) +) +) +g1,22276:26030021,41934595 +k1,22276:32583029,41934595:6553008 +) +v1,22283:6630773,42799675:0,393216,0 +(1,22284:6630773,44925158:25952256,2518699,0 +g1,22284:6630773,44925158 +g1,22284:6237557,44925158 +r1,22287:6368629,44925158:131072,2518699,0 +g1,22284:6567858,44925158 +g1,22284:6764466,44925158 +[1,22284:6764466,44925158:25818563,2518699,0 +(1,22284:6764466,43072152:25818563,665693,196608 +(1,22283:6764466,43072152:0,665693,196608 +r1,22287:7868133,43072152:1103667,862301,196608 +k1,22283:6764466,43072152:-1103667 +) +(1,22283:6764466,43072152:1103667,665693,196608 +) +k1,22283:8054294,43072152:186161 +k1,22283:9780512,43072152:327680 +k1,22283:12329245,43072152:186160 +k1,22283:13534491,43072152:186161 +k1,22283:15216839,43072152:186161 +k1,22283:16019037,43072152:186160 +k1,22283:17224283,43072152:186161 +k1,22283:20164922,43072152:186161 +k1,22283:22321750,43072152:186160 +k1,22283:23159339,43072152:186161 +k1,22283:24611656,43072152:186161 +k1,22283:25954527,43072152:186161 +k1,22283:26753449,43072152:186160 +k1,22283:27295470,43072152:186161 +k1,22283:29080709,43072152:186161 +k1,22283:30718491,43072152:186160 +k1,22283:31563944,43072152:186161 +k1,22283:32583029,43072152:0 +) +(1,22284:6764466,43937232:25818563,513147,134348 +k1,22283:10364383,43937232:161898 +k1,22283:12842978,43937232:161897 +k1,22283:14572497,43937232:161898 +k1,22283:17736598,43937232:161898 +(1,22283:17736598,43937232:0,452978,115847 +r1,22287:21260270,43937232:3523672,568825,115847 +k1,22283:17736598,43937232:-3523672 +) +(1,22283:17736598,43937232:3523672,452978,115847 +k1,22283:17736598,43937232:3277 +h1,22283:21256993,43937232:0,411205,112570 +) +k1,22283:21595837,43937232:161897 +(1,22283:21595837,43937232:0,452978,115847 +r1,22287:26878068,43937232:5282231,568825,115847 +k1,22283:21595837,43937232:-5282231 +) +(1,22283:21595837,43937232:5282231,452978,115847 +k1,22283:21595837,43937232:3277 +h1,22283:26874791,43937232:0,411205,112570 +) +k1,22283:27213636,43937232:161898 +(1,22283:27213636,43937232:0,452978,115847 +r1,22287:32495867,43937232:5282231,568825,115847 +k1,22283:27213636,43937232:-5282231 ) -(1,22285:27213636,43937232:5282231,452978,115847 -k1,22285:27213636,43937232:3277 -h1,22285:32492590,43937232:0,411205,112570 +(1,22283:27213636,43937232:5282231,452978,115847 +k1,22283:27213636,43937232:3277 +h1,22283:32492590,43937232:0,411205,112570 ) -k1,22286:32583029,43937232:0 +k1,22284:32583029,43937232:0 ) -(1,22286:6764466,44802312:25818563,505283,122846 -(1,22285:6764466,44802312:0,452978,115847 -r1,22289:12398409,44802312:5633943,568825,115847 -k1,22285:6764466,44802312:-5633943 +(1,22284:6764466,44802312:25818563,505283,122846 +(1,22283:6764466,44802312:0,452978,115847 +r1,22287:12398409,44802312:5633943,568825,115847 +k1,22283:6764466,44802312:-5633943 ) -(1,22285:6764466,44802312:5633943,452978,115847 -k1,22285:6764466,44802312:3277 -h1,22285:12395132,44802312:0,411205,112570 +(1,22283:6764466,44802312:5633943,452978,115847 +k1,22283:6764466,44802312:3277 +h1,22283:12395132,44802312:0,411205,112570 ) -g1,22285:12771308,44802312 -(1,22285:12771308,44802312:0,452978,122846 -r1,22289:17350116,44802312:4578808,575824,122846 -k1,22285:12771308,44802312:-4578808 +g1,22283:12771308,44802312 +(1,22283:12771308,44802312:0,452978,122846 +r1,22287:17350116,44802312:4578808,575824,122846 +k1,22283:12771308,44802312:-4578808 ) -(1,22285:12771308,44802312:4578808,452978,122846 -k1,22285:12771308,44802312:3277 -h1,22285:17346839,44802312:0,411205,112570 +(1,22283:12771308,44802312:4578808,452978,122846 +k1,22283:12771308,44802312:3277 +h1,22283:17346839,44802312:0,411205,112570 ) -g1,22285:17723015,44802312 -(1,22285:17723015,44802312:0,452978,115847 -r1,22289:21950111,44802312:4227096,568825,115847 -k1,22285:17723015,44802312:-4227096 +g1,22283:17723015,44802312 +(1,22283:17723015,44802312:0,452978,115847 +r1,22287:21950111,44802312:4227096,568825,115847 +k1,22283:17723015,44802312:-4227096 ) -(1,22285:17723015,44802312:4227096,452978,115847 -k1,22285:17723015,44802312:3277 -h1,22285:21946834,44802312:0,411205,112570 +(1,22283:17723015,44802312:4227096,452978,115847 +k1,22283:17723015,44802312:3277 +h1,22283:21946834,44802312:0,411205,112570 ) -g1,22285:22149340,44802312 -g1,22285:23540014,44802312 -(1,22285:23540014,44802312:0,452978,115847 -r1,22289:27767110,44802312:4227096,568825,115847 -k1,22285:23540014,44802312:-4227096 +g1,22283:22149340,44802312 +g1,22283:23540014,44802312 +(1,22283:23540014,44802312:0,452978,115847 +r1,22287:27767110,44802312:4227096,568825,115847 +k1,22283:23540014,44802312:-4227096 ) -(1,22285:23540014,44802312:4227096,452978,115847 -k1,22285:23540014,44802312:3277 -h1,22285:27763833,44802312:0,411205,112570 +(1,22283:23540014,44802312:4227096,452978,115847 +k1,22283:23540014,44802312:3277 +h1,22283:27763833,44802312:0,411205,112570 ) -k1,22286:32583029,44802312:4763491 -g1,22286:32583029,44802312 +k1,22284:32583029,44802312:4763491 +g1,22284:32583029,44802312 ) ] -g1,22286:32583029,44925158 +g1,22284:32583029,44925158 ) -h1,22286:6630773,44925158:0,0,0 +h1,22284:6630773,44925158:0,0,0 ] -(1,22289:32583029,45706769:0,0,0 -g1,22289:32583029,45706769 +(1,22287:32583029,45706769:0,0,0 +g1,22287:32583029,45706769 ) ) ] -(1,22289:6630773,47279633:25952256,0,0 -h1,22289:6630773,47279633:25952256,0,0 +(1,22287:6630773,47279633:25952256,0,0 +h1,22287:6630773,47279633:25952256,0,0 ) ] -(1,22289:4262630,4025873:0,0,0 -[1,22289:-473656,4025873:0,0,0 -(1,22289:-473656,-710413:0,0,0 -(1,22289:-473656,-710413:0,0,0 -g1,22289:-473656,-710413 +(1,22287:4262630,4025873:0,0,0 +[1,22287:-473656,4025873:0,0,0 +(1,22287:-473656,-710413:0,0,0 +(1,22287:-473656,-710413:0,0,0 +g1,22287:-473656,-710413 ) -g1,22289:-473656,-710413 +g1,22287:-473656,-710413 ) ] ) ] !23858 -}380 -Input:4225:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4226:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4227:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4228:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}381 Input:4229:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4230:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4231:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4232:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4233:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4234:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4235:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4236:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4237:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{381 -[1,22340:4262630,47279633:28320399,43253760,0 -(1,22340:4262630,4025873:0,0,0 -[1,22340:-473656,4025873:0,0,0 -(1,22340:-473656,-710413:0,0,0 -(1,22340:-473656,-644877:0,0,0 -k1,22340:-473656,-644877:-65536 +{382 +[1,22338:4262630,47279633:28320399,43253760,0 +(1,22338:4262630,4025873:0,0,0 +[1,22338:-473656,4025873:0,0,0 +(1,22338:-473656,-710413:0,0,0 +(1,22338:-473656,-644877:0,0,0 +k1,22338:-473656,-644877:-65536 ) -(1,22340:-473656,4736287:0,0,0 -k1,22340:-473656,4736287:5209943 +(1,22338:-473656,4736287:0,0,0 +k1,22338:-473656,4736287:5209943 ) -g1,22340:-473656,-710413 +g1,22338:-473656,-710413 ) ] ) -[1,22340:6630773,47279633:25952256,43253760,0 -[1,22340:6630773,4812305:25952256,786432,0 -(1,22340:6630773,4812305:25952256,513147,126483 -(1,22340:6630773,4812305:25952256,513147,126483 -g1,22340:3078558,4812305 -[1,22340:3078558,4812305:0,0,0 -(1,22340:3078558,2439708:0,1703936,0 -k1,22340:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22340:2537886,2439708:1179648,16384,0 +[1,22338:6630773,47279633:25952256,43253760,0 +[1,22338:6630773,4812305:25952256,786432,0 +(1,22338:6630773,4812305:25952256,513147,126483 +(1,22338:6630773,4812305:25952256,513147,126483 +g1,22338:3078558,4812305 +[1,22338:3078558,4812305:0,0,0 +(1,22338:3078558,2439708:0,1703936,0 +k1,22338:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22338:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22340:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22338:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22340:3078558,4812305:0,0,0 -(1,22340:3078558,2439708:0,1703936,0 -g1,22340:29030814,2439708 -g1,22340:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22340:36151628,1915420:16384,1179648,0 +[1,22338:3078558,4812305:0,0,0 +(1,22338:3078558,2439708:0,1703936,0 +g1,22338:29030814,2439708 +g1,22338:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22338:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22340:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22338:37855564,2439708:1179648,16384,0 ) ) -k1,22340:3078556,2439708:-34777008 +k1,22338:3078556,2439708:-34777008 ) ] -[1,22340:3078558,4812305:0,0,0 -(1,22340:3078558,49800853:0,16384,2228224 -k1,22340:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22340:2537886,49800853:1179648,16384,0 +[1,22338:3078558,4812305:0,0,0 +(1,22338:3078558,49800853:0,16384,2228224 +k1,22338:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22338:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22340:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22338:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22340:3078558,4812305:0,0,0 -(1,22340:3078558,49800853:0,16384,2228224 -g1,22340:29030814,49800853 -g1,22340:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22340:36151628,51504789:16384,1179648,0 +[1,22338:3078558,4812305:0,0,0 +(1,22338:3078558,49800853:0,16384,2228224 +g1,22338:29030814,49800853 +g1,22338:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22338:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22340:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22338:37855564,49800853:1179648,16384,0 ) ) -k1,22340:3078556,49800853:-34777008 +k1,22338:3078556,49800853:-34777008 ) ] -g1,22340:6630773,4812305 -k1,22340:21386205,4812305:13560055 -g1,22340:21999622,4812305 -g1,22340:25611966,4812305 -g1,22340:28956923,4812305 -g1,22340:29772190,4812305 -) -) -] -[1,22340:6630773,45706769:25952256,40108032,0 -(1,22340:6630773,45706769:25952256,40108032,0 -(1,22340:6630773,45706769:0,0,0 -g1,22340:6630773,45706769 -) -[1,22340:6630773,45706769:25952256,40108032,0 -v1,22289:6630773,6254097:0,393216,0 -(1,22290:6630773,12752303:25952256,6891422,0 -g1,22290:6630773,12752303 -g1,22290:6237557,12752303 -r1,22340:6368629,12752303:131072,6891422,0 -g1,22290:6567858,12752303 -g1,22290:6764466,12752303 -[1,22290:6764466,12752303:25818563,6891422,0 -(1,22290:6764466,6562395:25818563,701514,196608 -(1,22289:6764466,6562395:0,701514,196608 -r1,22340:7761522,6562395:997056,898122,196608 -k1,22289:6764466,6562395:-997056 -) -(1,22289:6764466,6562395:997056,701514,196608 -) -k1,22289:8367845,6562395:606323 -k1,22289:8695525,6562395:327680 -k1,22289:12694647,6562395:606323 -k1,22289:16217976,6562395:606322 -k1,22289:17970524,6562395:606323 -(1,22289:17970524,6562395:0,452978,122846 -r1,22340:22197620,6562395:4227096,575824,122846 -k1,22289:17970524,6562395:-4227096 -) -(1,22289:17970524,6562395:4227096,452978,122846 -k1,22289:17970524,6562395:3277 -h1,22289:22194343,6562395:0,411205,112570 -) -k1,22289:22803943,6562395:606323 -k1,22289:24575496,6562395:606323 -k1,22289:25797856,6562395:606322 -k1,22289:28593737,6562395:606323 -k1,22289:30266331,6562395:606323 -k1,22289:32583029,6562395:0 -) -(1,22290:6764466,7427475:25818563,513147,134348 -k1,22289:8380518,7427475:543883 -k1,22289:11251585,7427475:543884 -k1,22289:12787028,7427475:543883 -k1,22289:17367929,7427475:543883 -k1,22289:18571105,7427475:543884 -k1,22289:21101384,7427475:543883 -k1,22289:24108765,7427475:543883 -k1,22289:25849336,7427475:543884 -k1,22289:28648313,7427475:543883 -k1,22289:30572384,7427475:543883 -k1,22289:32583029,7427475:0 -) -(1,22290:6764466,8292555:25818563,505283,134348 -k1,22289:9026114,8292555:589824 -k1,22289:11483714,8292555:589824 -k1,22289:14445285,8292555:589823 -k1,22289:15844479,8292555:589824 -k1,22289:17453388,8292555:589824 -k1,22289:21445841,8292555:589824 -k1,22289:24240952,8292555:589824 -k1,22289:25482204,8292555:589824 -k1,22289:27580666,8292555:589823 -k1,22289:31955194,8292555:589824 -k1,22289:32583029,8292555:0 -) -(1,22290:6764466,9157635:25818563,513147,122846 -k1,22289:9017368,9157635:550932 -k1,22289:11696909,9157635:550932 -(1,22289:11696909,9157635:0,452978,122846 -r1,22340:20847971,9157635:9151062,575824,122846 -k1,22289:11696909,9157635:-9151062 -) -(1,22289:11696909,9157635:9151062,452978,122846 -g1,22289:19086135,9157635 -g1,22289:19789559,9157635 -h1,22289:20844694,9157635:0,411205,112570 -) -k1,22289:21572573,9157635:550932 -k1,22289:24383187,9157635:550933 -k1,22289:25289979,9157635:550932 -k1,22289:28603254,9157635:550932 -k1,22289:31140582,9157635:550932 -k1,22290:32583029,9157635:0 -) -(1,22290:6764466,10022715:25818563,513147,122846 -(1,22289:6764466,10022715:0,452978,122846 -r1,22340:15915528,10022715:9151062,575824,122846 -k1,22289:6764466,10022715:-9151062 -) -(1,22289:6764466,10022715:9151062,452978,122846 -g1,22289:14153692,10022715 -g1,22289:14857116,10022715 -h1,22289:15912251,10022715:0,411205,112570 -) -k1,22289:16322020,10022715:232822 -k1,22289:17182678,10022715:232823 -k1,22289:18618741,10022715:232822 -k1,22289:20392315,10022715:232823 -k1,22289:21311299,10022715:232822 -k1,22289:23143199,10022715:232822 -k1,22289:24035314,10022715:232823 -k1,22289:27030479,10022715:232822 -k1,22289:28489481,10022715:232823 -k1,22289:31591469,10022715:232822 -k1,22289:32583029,10022715:0 -) -(1,22290:6764466,10887795:25818563,513147,134348 -k1,22289:9358989,10887795:212945 -k1,22289:11931230,10887795:212945 -k1,22289:12795604,10887795:212946 -k1,22289:14027634,10887795:212945 -k1,22289:15674507,10887795:212945 -k1,22289:17329899,10887795:212945 -k1,22289:18561930,10887795:212946 -k1,22289:20043652,10887795:212945 -k1,22289:20915889,10887795:212945 -k1,22289:21894950,10887795:212945 -k1,22289:23334074,10887795:212945 -k1,22289:26416186,10887795:212946 -k1,22289:29200108,10887795:212945 -k1,22289:30029091,10887795:212945 -k1,22290:32583029,10887795:0 -) -(1,22290:6764466,11752875:25818563,513147,134348 -k1,22289:8779288,11752875:217825 -k1,22289:10422522,11752875:217826 -k1,22289:11909124,11752875:217825 -k1,22289:14697926,11752875:217825 -k1,22289:15677280,11752875:217826 -k1,22289:18150199,11752875:217825 -k1,22289:19183292,11752875:217825 -k1,22289:20467389,11752875:217826 -k1,22289:22464516,11752875:217825 -k1,22289:23701426,11752875:217825 -k1,22289:25188028,11752875:217825 -k1,22289:26065146,11752875:217826 -k1,22289:27509150,11752875:217825 -k1,22289:28409860,11752875:217825 -k1,22289:30471869,11752875:217826 -k1,22289:31305732,11752875:217825 -k1,22289:32583029,11752875:0 -) -(1,22290:6764466,12617955:25818563,505283,134348 -g1,22289:8851787,12617955 -g1,22289:11401137,12617955 -g1,22289:12994317,12617955 -g1,22289:16874703,12617955 -g1,22289:17760094,12617955 -g1,22289:19467962,12617955 -g1,22289:20935968,12617955 -g1,22289:21666694,12617955 -g1,22289:25126994,12617955 -g1,22289:26087751,12617955 -g1,22289:27306065,12617955 -(1,22289:27306065,12617955:0,452978,115847 -r1,22340:28719466,12617955:1413401,568825,115847 -k1,22289:27306065,12617955:-1413401 -) -(1,22289:27306065,12617955:1413401,452978,115847 -k1,22289:27306065,12617955:3277 -h1,22289:28716189,12617955:0,411205,112570 -) -g1,22289:28918695,12617955 -k1,22290:32583029,12617955:858739 -g1,22290:32583029,12617955 -) -] -g1,22290:32583029,12752303 -) -h1,22290:6630773,12752303:0,0,0 -(1,22293:6630773,13617383:25952256,513147,134348 -h1,22292:6630773,13617383:983040,0,0 -k1,22292:8252885,13617383:151484 -k1,22292:11143167,13617383:151532 -k1,22292:13132329,13617383:151532 -k1,22292:13815358,13617383:151532 -k1,22292:14618317,13617383:151531 -k1,22292:16699229,13617383:151532 -k1,22292:17206621,13617383:151532 -k1,22292:18635450,13617383:151532 -k1,22292:21247203,13617383:151531 -k1,22292:24648010,13617383:151532 -k1,22292:25155402,13617383:151532 -k1,22292:27467000,13617383:151531 -k1,22292:28809977,13617383:151532 -k1,22292:30395437,13617383:151532 -k1,22292:32583029,13617383:0 -) -(1,22293:6630773,14482463:25952256,513147,134348 -k1,22292:7863552,14482463:213694 -k1,22292:10063642,14482463:213694 -k1,22292:11975374,14482463:213694 -k1,22292:14761357,14482463:213695 -k1,22292:15657936,14482463:213694 -k1,22292:17905212,14482463:213694 -k1,22292:18750673,14482463:213694 -k1,22292:20345211,14482463:213694 -k1,22292:21663187,14482463:213694 -k1,22292:23267555,14482463:213694 -k1,22292:25251377,14482463:213695 -k1,22292:26412722,14482463:213694 -k1,22292:29461503,14482463:213694 -k1,22292:31373235,14482463:213694 -k1,22293:32583029,14482463:0 -) -(1,22293:6630773,15347543:25952256,513147,134348 -g1,22292:8989413,15347543 -g1,22292:11950985,15347543 -g1,22292:14814253,15347543 -g1,22292:15672774,15347543 -g1,22292:16891088,15347543 -g1,22292:18743790,15347543 -g1,22292:20220316,15347543 -g1,22292:21367196,15347543 -g1,22292:21922285,15347543 -g1,22292:25720751,15347543 -g1,22292:27111425,15347543 -g1,22292:27666514,15347543 -k1,22293:32583029,15347543:3653637 -g1,22293:32583029,15347543 -) -v1,22295:6630773,16032398:0,393216,0 -(1,22303:6630773,19105895:25952256,3466713,196608 -g1,22303:6630773,19105895 -g1,22303:6630773,19105895 -g1,22303:6434165,19105895 -(1,22303:6434165,19105895:0,3466713,196608 -r1,22340:32779637,19105895:26345472,3663321,196608 -k1,22303:6434165,19105895:-26345472 -) -(1,22303:6434165,19105895:26345472,3466713,196608 -[1,22303:6630773,19105895:25952256,3270105,0 -(1,22297:6630773,16260229:25952256,424439,106246 -(1,22296:6630773,16260229:0,0,0 -g1,22296:6630773,16260229 -g1,22296:6630773,16260229 -g1,22296:6303093,16260229 -(1,22296:6303093,16260229:0,0,0 -) -g1,22296:6630773,16260229 -) -g1,22297:8954451,16260229 -k1,22297:8954451,16260229:0 -h1,22297:9618359,16260229:0,0,0 -k1,22297:32583029,16260229:22964670 -g1,22297:32583029,16260229 -) -(1,22298:6630773,16945084:25952256,431045,112852 -h1,22298:6630773,16945084:0,0,0 -g1,22298:6962727,16945084 -g1,22298:7294681,16945084 -g1,22298:11278129,16945084 -g1,22298:11942037,16945084 -k1,22298:11942037,16945084:0 -h1,22298:15593530,16945084:0,0,0 -k1,22298:32583030,16945084:16989500 -g1,22298:32583030,16945084 -) -(1,22299:6630773,17629939:25952256,424439,112852 -h1,22299:6630773,17629939:0,0,0 -g1,22299:6962727,17629939 -g1,22299:7294681,17629939 -g1,22299:7626635,17629939 -g1,22299:7958589,17629939 -g1,22299:8290543,17629939 -g1,22299:8622497,17629939 -g1,22299:8954451,17629939 -g1,22299:9286405,17629939 -g1,22299:9618359,17629939 -g1,22299:12273991,17629939 -g1,22299:12937899,17629939 -g1,22299:14929623,17629939 -g1,22299:15593531,17629939 -g1,22299:16589393,17629939 -g1,22299:17253301,17629939 -g1,22299:17917209,17629939 -g1,22299:19245025,17629939 -h1,22299:19576979,17629939:0,0,0 -k1,22299:32583029,17629939:13006050 -g1,22299:32583029,17629939 -) -(1,22300:6630773,18314794:25952256,424439,112852 -h1,22300:6630773,18314794:0,0,0 -g1,22300:6962727,18314794 -g1,22300:7294681,18314794 -k1,22300:7294681,18314794:0 -h1,22300:11278128,18314794:0,0,0 -k1,22300:32583028,18314794:21304900 -g1,22300:32583028,18314794 -) -(1,22301:6630773,18999649:25952256,424439,106246 -h1,22301:6630773,18999649:0,0,0 -g1,22301:10946175,18999649 -g1,22301:11610083,18999649 -k1,22301:11610083,18999649:0 -h1,22301:15261576,18999649:0,0,0 -k1,22301:32583028,18999649:17321452 -g1,22301:32583028,18999649 -) -] -) -g1,22303:32583029,19105895 -g1,22303:6630773,19105895 -g1,22303:6630773,19105895 -g1,22303:32583029,19105895 -g1,22303:32583029,19105895 -) -h1,22303:6630773,19302503:0,0,0 -(1,22306:6630773,29002617:25952256,9634578,0 -k1,22306:13183781,29002617:6553008 -h1,22305:13183781,29002617:0,0,0 -(1,22305:13183781,29002617:12846240,9634578,0 -(1,22305:13183781,29002617:12846136,9634602,0 -(1,22305:13183781,29002617:12846136,9634602,0 -(1,22305:13183781,29002617:0,9634602,0 -(1,22305:13183781,29002617:0,14208860,0 -(1,22305:13183781,29002617:18945146,14208860,0 -) -k1,22305:13183781,29002617:-18945146 -) -) -g1,22305:26029917,29002617 -) -) -) -g1,22306:26030021,29002617 -k1,22306:32583029,29002617:6553008 -) -(1,22313:6630773,29867697:25952256,513147,134348 -h1,22312:6630773,29867697:983040,0,0 -k1,22312:8275115,29867697:191409 -k1,22312:8998022,29867697:191410 -k1,22312:10475247,29867697:191409 -k1,22312:13296616,29867697:191409 -k1,22312:14139454,29867697:191410 -k1,22312:16571539,29867697:191409 -k1,22312:17782033,29867697:191409 -k1,22312:19959839,29867697:191410 -k1,22312:21664474,29867697:191409 -k1,22312:22617411,29867697:191409 -k1,22312:25074400,29867697:191409 -k1,22312:25881848,29867697:191410 -k1,22312:27092342,29867697:191409 -k1,22312:29627974,29867697:191409 -k1,22312:30234219,29867697:191402 -k1,22312:32583029,29867697:0 -) -(1,22313:6630773,30732777:25952256,505283,115847 -g1,22312:8197739,30732777 -(1,22312:8197739,30732777:0,452978,115847 -r1,22340:12073123,30732777:3875384,568825,115847 -k1,22312:8197739,30732777:-3875384 -) -(1,22312:8197739,30732777:3875384,452978,115847 -k1,22312:8197739,30732777:3277 -h1,22312:12069846,30732777:0,411205,112570 -) -k1,22313:32583029,30732777:20457478 -g1,22313:32583029,30732777 -) -v1,22315:6630773,31417632:0,393216,0 -(1,22319:6630773,31725285:25952256,700869,196608 -g1,22319:6630773,31725285 -g1,22319:6630773,31725285 -g1,22319:6434165,31725285 -(1,22319:6434165,31725285:0,700869,196608 -r1,22340:32779637,31725285:26345472,897477,196608 -k1,22319:6434165,31725285:-26345472 -) -(1,22319:6434165,31725285:26345472,700869,196608 -[1,22319:6630773,31725285:25952256,504261,0 -(1,22317:6630773,31645463:25952256,424439,79822 -(1,22316:6630773,31645463:0,0,0 -g1,22316:6630773,31645463 -g1,22316:6630773,31645463 -g1,22316:6303093,31645463 -(1,22316:6303093,31645463:0,0,0 -) -g1,22316:6630773,31645463 -) -g1,22317:9950312,31645463 -g1,22317:10946174,31645463 -k1,22317:10946174,31645463:0 -h1,22317:18581114,31645463:0,0,0 -k1,22317:32583029,31645463:14001915 -g1,22317:32583029,31645463 -) -] -) -g1,22319:32583029,31725285 -g1,22319:6630773,31725285 -g1,22319:6630773,31725285 -g1,22319:32583029,31725285 -g1,22319:32583029,31725285 -) -h1,22319:6630773,31921893:0,0,0 -(1,22323:6630773,32786973:25952256,513147,134348 -h1,22322:6630773,32786973:983040,0,0 -k1,22322:10016124,32786973:175398 -k1,22322:10842950,32786973:175398 -k1,22322:12720318,32786973:175398 -k1,22322:15921513,32786973:175398 -k1,22322:17610137,32786973:175398 -k1,22322:18436963,32786973:175398 -k1,22322:20853037,32786973:175398 -k1,22322:23441471,32786973:175398 -k1,22322:24232907,32786973:175398 -k1,22322:24996818,32786973:175398 -(1,22322:24996818,32786973:0,452978,115847 -r1,22340:28872202,32786973:3875384,568825,115847 -k1,22322:24996818,32786973:-3875384 -) -(1,22322:24996818,32786973:3875384,452978,115847 -k1,22322:24996818,32786973:3277 -h1,22322:28868925,32786973:0,411205,112570 -) -k1,22322:29047600,32786973:175398 -k1,22322:31563944,32786973:175398 -k1,22322:32583029,32786973:0 -) -(1,22323:6630773,33652053:25952256,505283,134348 -k1,22322:9593046,33652053:207795 -k1,22322:12156204,33652053:207794 -k1,22322:13124217,33652053:207795 -k1,22322:15365594,33652053:207795 -k1,22322:16776629,33652053:207794 -k1,22322:18664767,33652053:207795 -k1,22322:19523990,33652053:207795 -k1,22322:20087644,33652053:207794 -k1,22322:22980449,33652053:207795 -k1,22322:24586126,33652053:207794 -(1,22322:24586126,33652053:0,452978,115847 -r1,22340:27758086,33652053:3171960,568825,115847 -k1,22322:24586126,33652053:-3171960 -) -(1,22322:24586126,33652053:3171960,452978,115847 -k1,22322:24586126,33652053:3277 -h1,22322:27754809,33652053:0,411205,112570 -) -k1,22322:28139551,33652053:207795 -k1,22322:29215698,33652053:207795 -k1,22322:30415052,33652053:207794 -k1,22322:31931601,33652053:207795 -k1,22322:32583029,33652053:0 -) -(1,22323:6630773,34517133:25952256,513147,134348 -g1,22322:9083130,34517133 -g1,22322:10301444,34517133 -g1,22322:13255151,34517133 -g1,22322:15893630,34517133 -g1,22322:16775744,34517133 -g1,22322:18619927,34517133 -g1,22322:19838241,34517133 -k1,22323:32583029,34517133:10451684 -g1,22323:32583029,34517133 -) -v1,22325:6630773,35201988:0,393216,0 -(1,22329:6630773,35509641:25952256,700869,196608 -g1,22329:6630773,35509641 -g1,22329:6630773,35509641 -g1,22329:6434165,35509641 -(1,22329:6434165,35509641:0,700869,196608 -r1,22340:32779637,35509641:26345472,897477,196608 -k1,22329:6434165,35509641:-26345472 -) -(1,22329:6434165,35509641:26345472,700869,196608 -[1,22329:6630773,35509641:25952256,504261,0 -(1,22327:6630773,35429819:25952256,424439,79822 -(1,22326:6630773,35429819:0,0,0 -g1,22326:6630773,35429819 -g1,22326:6630773,35429819 -g1,22326:6303093,35429819 -(1,22326:6303093,35429819:0,0,0 -) -g1,22326:6630773,35429819 -) -k1,22327:6630773,35429819:0 -h1,22327:13269851,35429819:0,0,0 -k1,22327:32583029,35429819:19313178 -g1,22327:32583029,35429819 -) -] -) -g1,22329:32583029,35509641 -g1,22329:6630773,35509641 -g1,22329:6630773,35509641 -g1,22329:32583029,35509641 -g1,22329:32583029,35509641 -) -h1,22329:6630773,35706249:0,0,0 -v1,22333:6630773,36571329:0,393216,0 -(1,22334:6630773,42943050:25952256,6764937,0 -g1,22334:6630773,42943050 -g1,22334:6237557,42943050 -r1,22340:6368629,42943050:131072,6764937,0 -g1,22334:6567858,42943050 -g1,22334:6764466,42943050 -[1,22334:6764466,42943050:25818563,6764937,0 -(1,22334:6764466,36879627:25818563,701514,196608 -(1,22333:6764466,36879627:0,701514,196608 -r1,22340:7761522,36879627:997056,898122,196608 -k1,22333:6764466,36879627:-997056 -) -(1,22333:6764466,36879627:997056,701514,196608 -) -k1,22333:8011243,36879627:249721 -k1,22333:8338923,36879627:327680 -k1,22333:9785331,36879627:249721 -k1,22333:11127537,36879627:249721 -k1,22333:12036549,36879627:249720 -k1,22333:12642130,36879627:249721 -k1,22333:14262864,36879627:249721 -k1,22333:18302532,36879627:249721 -k1,22333:19238415,36879627:249721 -k1,22333:21753716,36879627:249721 -k1,22333:22951088,36879627:249721 -k1,22333:24808406,36879627:249720 -k1,22333:25589624,36879627:249721 -k1,22333:28563677,36879627:249721 -k1,22333:30194242,36879627:249721 -k1,22333:32583029,36879627:0 -) -(1,22334:6764466,37744707:25818563,513147,134348 -k1,22333:9073001,37744707:219903 -k1,22333:11936626,37744707:219903 -k1,22333:15321263,37744707:219903 -k1,22333:16157204,37744707:219903 -k1,22333:17396192,37744707:219903 -k1,22333:21159627,37744707:219903 -k1,22333:23314808,37744707:219903 -k1,22333:24186139,37744707:219903 -k1,22333:27226712,37744707:219903 -k1,22333:27802475,37744707:219903 -k1,22333:30620881,37744707:219903 -k1,22334:32583029,37744707:0 -) -(1,22334:6764466,38609787:25818563,513147,134348 -k1,22333:8525872,38609787:217378 -k1,22333:12368046,38609787:217378 -k1,22333:13604509,38609787:217378 -k1,22333:15048066,38609787:217378 -k1,22333:16456889,38609787:217378 -k1,22333:18281865,38609787:217378 -k1,22333:19115281,38609787:217378 -k1,22333:19688519,38609787:217378 -k1,22333:21577720,38609787:217378 -k1,22333:23490514,38609787:217378 -k1,22333:26557397,38609787:217378 -k1,22333:29405390,38609787:217378 -k1,22333:31914562,38609787:217378 -k1,22333:32583029,38609787:0 -) -(1,22334:6764466,39474867:25818563,513147,134348 -k1,22333:7619291,39474867:242063 -k1,22333:9356886,39474867:242063 -k1,22333:11555853,39474867:242062 -k1,22333:12153776,39474867:242063 -k1,22333:14046036,39474867:242063 -k1,22333:17639610,39474867:242063 -k1,22333:20270459,39474867:242062 -k1,22333:22774825,39474867:242063 -k1,22333:25180887,39474867:242063 -(1,22333:25180887,39474867:0,452978,115847 -r1,22340:28704559,39474867:3523672,568825,115847 -k1,22333:25180887,39474867:-3523672 -) -(1,22333:25180887,39474867:3523672,452978,115847 -k1,22333:25180887,39474867:3277 -h1,22333:28701282,39474867:0,411205,112570 -) -k1,22333:28946622,39474867:242063 -k1,22333:29720181,39474867:242062 -k1,22333:30981329,39474867:242063 -k1,22333:32583029,39474867:0 -) -(1,22334:6764466,40339947:25818563,513147,134348 -k1,22333:9640241,40339947:203872 -k1,22333:10503404,40339947:203871 -k1,22333:11726361,40339947:203872 -k1,22333:15281743,40339947:203871 -k1,22333:17904549,40339947:203872 -k1,22333:21402915,40339947:203871 -k1,22333:22292949,40339947:203872 -k1,22333:22954917,40339947:203871 -k1,22333:25085547,40339947:203872 -k1,22333:26568025,40339947:203871 -k1,22333:28238593,40339947:203872 -k1,22333:29390115,40339947:203871 -k1,22333:32583029,40339947:0 -) -(1,22334:6764466,41205027:25818563,513147,134348 -k1,22333:8561410,41205027:189346 -k1,22333:9436918,41205027:189346 -k1,22333:10573916,41205027:189347 -k1,22333:12370860,41205027:189346 -k1,22333:13954157,41205027:189346 -k1,22333:16032251,41205027:189346 -k1,22333:16907760,41205027:189347 -k1,22333:17555203,41205027:189346 -k1,22333:20412520,41205027:189346 -k1,22333:20957726,41205027:189346 -k1,22333:22480731,41205027:189347 -k1,22333:24834076,41205027:189346 -(1,22333:24834076,41205027:0,452978,115847 -r1,22340:30116307,41205027:5282231,568825,115847 -k1,22333:24834076,41205027:-5282231 -) -(1,22333:24834076,41205027:5282231,452978,115847 -k1,22333:24834076,41205027:3277 -h1,22333:30113030,41205027:0,411205,112570 -) -k1,22333:30305653,41205027:189346 -k1,22333:32583029,41205027:0 -) -(1,22334:6764466,42070107:25818563,513147,134348 -k1,22333:7292153,42070107:171827 -k1,22333:8623967,42070107:171827 -k1,22333:9987240,42070107:171828 -k1,22333:11443573,42070107:171827 -k1,22333:13542158,42070107:171827 -k1,22333:14992592,42070107:171827 -k1,22333:16112071,42070107:171828 -k1,22333:19476812,42070107:171827 -k1,22333:21256237,42070107:171827 -k1,22333:22114226,42070107:171827 -k1,22333:22991221,42070107:171828 -k1,22333:24235217,42070107:171827 -k1,22333:26267611,42070107:171827 -k1,22333:29010415,42070107:171827 -k1,22333:29833671,42070107:171828 -k1,22333:31024583,42070107:171827 -k1,22333:32583029,42070107:0 -) -(1,22334:6764466,42935187:25818563,513147,7863 -g1,22333:8338640,42935187 -g1,22333:10235907,42935187 -g1,22333:11948362,42935187 -g1,22333:13541542,42935187 -k1,22334:32583030,42935187:17100312 -g1,22334:32583030,42935187 -) -] -g1,22334:32583029,42943050 -) -h1,22334:6630773,42943050:0,0,0 -] -(1,22340:32583029,45706769:0,0,0 -g1,22340:32583029,45706769 -) -) -] -(1,22340:6630773,47279633:25952256,0,0 -h1,22340:6630773,47279633:25952256,0,0 -) -] -(1,22340:4262630,4025873:0,0,0 -[1,22340:-473656,4025873:0,0,0 -(1,22340:-473656,-710413:0,0,0 -(1,22340:-473656,-710413:0,0,0 -g1,22340:-473656,-710413 -) -g1,22340:-473656,-710413 +g1,22338:6630773,4812305 +k1,22338:21386205,4812305:13560055 +g1,22338:21999622,4812305 +g1,22338:25611966,4812305 +g1,22338:28956923,4812305 +g1,22338:29772190,4812305 +) +) +] +[1,22338:6630773,45706769:25952256,40108032,0 +(1,22338:6630773,45706769:25952256,40108032,0 +(1,22338:6630773,45706769:0,0,0 +g1,22338:6630773,45706769 +) +[1,22338:6630773,45706769:25952256,40108032,0 +v1,22287:6630773,6254097:0,393216,0 +(1,22288:6630773,12752303:25952256,6891422,0 +g1,22288:6630773,12752303 +g1,22288:6237557,12752303 +r1,22338:6368629,12752303:131072,6891422,0 +g1,22288:6567858,12752303 +g1,22288:6764466,12752303 +[1,22288:6764466,12752303:25818563,6891422,0 +(1,22288:6764466,6562395:25818563,701514,196608 +(1,22287:6764466,6562395:0,701514,196608 +r1,22338:7761522,6562395:997056,898122,196608 +k1,22287:6764466,6562395:-997056 +) +(1,22287:6764466,6562395:997056,701514,196608 +) +k1,22287:8367845,6562395:606323 +k1,22287:8695525,6562395:327680 +k1,22287:12694647,6562395:606323 +k1,22287:16217976,6562395:606322 +k1,22287:17970524,6562395:606323 +(1,22287:17970524,6562395:0,452978,122846 +r1,22338:22197620,6562395:4227096,575824,122846 +k1,22287:17970524,6562395:-4227096 +) +(1,22287:17970524,6562395:4227096,452978,122846 +k1,22287:17970524,6562395:3277 +h1,22287:22194343,6562395:0,411205,112570 +) +k1,22287:22803943,6562395:606323 +k1,22287:24575496,6562395:606323 +k1,22287:25797856,6562395:606322 +k1,22287:28593737,6562395:606323 +k1,22287:30266331,6562395:606323 +k1,22287:32583029,6562395:0 +) +(1,22288:6764466,7427475:25818563,513147,134348 +k1,22287:8380518,7427475:543883 +k1,22287:11251585,7427475:543884 +k1,22287:12787028,7427475:543883 +k1,22287:17367929,7427475:543883 +k1,22287:18571105,7427475:543884 +k1,22287:21101384,7427475:543883 +k1,22287:24108765,7427475:543883 +k1,22287:25849336,7427475:543884 +k1,22287:28648313,7427475:543883 +k1,22287:30572384,7427475:543883 +k1,22287:32583029,7427475:0 +) +(1,22288:6764466,8292555:25818563,505283,134348 +k1,22287:9026114,8292555:589824 +k1,22287:11483714,8292555:589824 +k1,22287:14445285,8292555:589823 +k1,22287:15844479,8292555:589824 +k1,22287:17453388,8292555:589824 +k1,22287:21445841,8292555:589824 +k1,22287:24240952,8292555:589824 +k1,22287:25482204,8292555:589824 +k1,22287:27580666,8292555:589823 +k1,22287:31955194,8292555:589824 +k1,22287:32583029,8292555:0 +) +(1,22288:6764466,9157635:25818563,513147,122846 +k1,22287:9017368,9157635:550932 +k1,22287:11696909,9157635:550932 +(1,22287:11696909,9157635:0,452978,122846 +r1,22338:20847971,9157635:9151062,575824,122846 +k1,22287:11696909,9157635:-9151062 +) +(1,22287:11696909,9157635:9151062,452978,122846 +g1,22287:19086135,9157635 +g1,22287:19789559,9157635 +h1,22287:20844694,9157635:0,411205,112570 +) +k1,22287:21572573,9157635:550932 +k1,22287:24383187,9157635:550933 +k1,22287:25289979,9157635:550932 +k1,22287:28603254,9157635:550932 +k1,22287:31140582,9157635:550932 +k1,22288:32583029,9157635:0 +) +(1,22288:6764466,10022715:25818563,513147,122846 +(1,22287:6764466,10022715:0,452978,122846 +r1,22338:15915528,10022715:9151062,575824,122846 +k1,22287:6764466,10022715:-9151062 +) +(1,22287:6764466,10022715:9151062,452978,122846 +g1,22287:14153692,10022715 +g1,22287:14857116,10022715 +h1,22287:15912251,10022715:0,411205,112570 +) +k1,22287:16322020,10022715:232822 +k1,22287:17182678,10022715:232823 +k1,22287:18618741,10022715:232822 +k1,22287:20392315,10022715:232823 +k1,22287:21311299,10022715:232822 +k1,22287:23143199,10022715:232822 +k1,22287:24035314,10022715:232823 +k1,22287:27030479,10022715:232822 +k1,22287:28489481,10022715:232823 +k1,22287:31591469,10022715:232822 +k1,22287:32583029,10022715:0 +) +(1,22288:6764466,10887795:25818563,513147,134348 +k1,22287:9358989,10887795:212945 +k1,22287:11931230,10887795:212945 +k1,22287:12795604,10887795:212946 +k1,22287:14027634,10887795:212945 +k1,22287:15674507,10887795:212945 +k1,22287:17329899,10887795:212945 +k1,22287:18561930,10887795:212946 +k1,22287:20043652,10887795:212945 +k1,22287:20915889,10887795:212945 +k1,22287:21894950,10887795:212945 +k1,22287:23334074,10887795:212945 +k1,22287:26416186,10887795:212946 +k1,22287:29200108,10887795:212945 +k1,22287:30029091,10887795:212945 +k1,22288:32583029,10887795:0 +) +(1,22288:6764466,11752875:25818563,513147,134348 +k1,22287:8779288,11752875:217825 +k1,22287:10422522,11752875:217826 +k1,22287:11909124,11752875:217825 +k1,22287:14697926,11752875:217825 +k1,22287:15677280,11752875:217826 +k1,22287:18150199,11752875:217825 +k1,22287:19183292,11752875:217825 +k1,22287:20467389,11752875:217826 +k1,22287:22464516,11752875:217825 +k1,22287:23701426,11752875:217825 +k1,22287:25188028,11752875:217825 +k1,22287:26065146,11752875:217826 +k1,22287:27509150,11752875:217825 +k1,22287:28409860,11752875:217825 +k1,22287:30471869,11752875:217826 +k1,22287:31305732,11752875:217825 +k1,22287:32583029,11752875:0 +) +(1,22288:6764466,12617955:25818563,505283,134348 +g1,22287:8851787,12617955 +g1,22287:11401137,12617955 +g1,22287:12994317,12617955 +g1,22287:16874703,12617955 +g1,22287:17760094,12617955 +g1,22287:19467962,12617955 +g1,22287:20935968,12617955 +g1,22287:21666694,12617955 +g1,22287:25126994,12617955 +g1,22287:26087751,12617955 +g1,22287:27306065,12617955 +(1,22287:27306065,12617955:0,452978,115847 +r1,22338:28719466,12617955:1413401,568825,115847 +k1,22287:27306065,12617955:-1413401 +) +(1,22287:27306065,12617955:1413401,452978,115847 +k1,22287:27306065,12617955:3277 +h1,22287:28716189,12617955:0,411205,112570 +) +g1,22287:28918695,12617955 +k1,22288:32583029,12617955:858739 +g1,22288:32583029,12617955 +) +] +g1,22288:32583029,12752303 +) +h1,22288:6630773,12752303:0,0,0 +(1,22291:6630773,13617383:25952256,513147,134348 +h1,22290:6630773,13617383:983040,0,0 +k1,22290:8252885,13617383:151484 +k1,22290:11143167,13617383:151532 +k1,22290:13132329,13617383:151532 +k1,22290:13815358,13617383:151532 +k1,22290:14618317,13617383:151531 +k1,22290:16699229,13617383:151532 +k1,22290:17206621,13617383:151532 +k1,22290:18635450,13617383:151532 +k1,22290:21247203,13617383:151531 +k1,22290:24648010,13617383:151532 +k1,22290:25155402,13617383:151532 +k1,22290:27467000,13617383:151531 +k1,22290:28809977,13617383:151532 +k1,22290:30395437,13617383:151532 +k1,22290:32583029,13617383:0 +) +(1,22291:6630773,14482463:25952256,513147,134348 +k1,22290:7863552,14482463:213694 +k1,22290:10063642,14482463:213694 +k1,22290:11975374,14482463:213694 +k1,22290:14761357,14482463:213695 +k1,22290:15657936,14482463:213694 +k1,22290:17905212,14482463:213694 +k1,22290:18750673,14482463:213694 +k1,22290:20345211,14482463:213694 +k1,22290:21663187,14482463:213694 +k1,22290:23267555,14482463:213694 +k1,22290:25251377,14482463:213695 +k1,22290:26412722,14482463:213694 +k1,22290:29461503,14482463:213694 +k1,22290:31373235,14482463:213694 +k1,22291:32583029,14482463:0 +) +(1,22291:6630773,15347543:25952256,513147,134348 +g1,22290:8989413,15347543 +g1,22290:11950985,15347543 +g1,22290:14814253,15347543 +g1,22290:15672774,15347543 +g1,22290:16891088,15347543 +g1,22290:18743790,15347543 +g1,22290:20220316,15347543 +g1,22290:21367196,15347543 +g1,22290:21922285,15347543 +g1,22290:25720751,15347543 +g1,22290:27111425,15347543 +g1,22290:27666514,15347543 +k1,22291:32583029,15347543:3653637 +g1,22291:32583029,15347543 +) +v1,22293:6630773,16032398:0,393216,0 +(1,22301:6630773,19105895:25952256,3466713,196608 +g1,22301:6630773,19105895 +g1,22301:6630773,19105895 +g1,22301:6434165,19105895 +(1,22301:6434165,19105895:0,3466713,196608 +r1,22338:32779637,19105895:26345472,3663321,196608 +k1,22301:6434165,19105895:-26345472 +) +(1,22301:6434165,19105895:26345472,3466713,196608 +[1,22301:6630773,19105895:25952256,3270105,0 +(1,22295:6630773,16260229:25952256,424439,106246 +(1,22294:6630773,16260229:0,0,0 +g1,22294:6630773,16260229 +g1,22294:6630773,16260229 +g1,22294:6303093,16260229 +(1,22294:6303093,16260229:0,0,0 +) +g1,22294:6630773,16260229 +) +g1,22295:8954451,16260229 +k1,22295:8954451,16260229:0 +h1,22295:9618359,16260229:0,0,0 +k1,22295:32583029,16260229:22964670 +g1,22295:32583029,16260229 +) +(1,22296:6630773,16945084:25952256,431045,112852 +h1,22296:6630773,16945084:0,0,0 +g1,22296:6962727,16945084 +g1,22296:7294681,16945084 +g1,22296:11278129,16945084 +g1,22296:11942037,16945084 +k1,22296:11942037,16945084:0 +h1,22296:15593530,16945084:0,0,0 +k1,22296:32583030,16945084:16989500 +g1,22296:32583030,16945084 +) +(1,22297:6630773,17629939:25952256,424439,112852 +h1,22297:6630773,17629939:0,0,0 +g1,22297:6962727,17629939 +g1,22297:7294681,17629939 +g1,22297:7626635,17629939 +g1,22297:7958589,17629939 +g1,22297:8290543,17629939 +g1,22297:8622497,17629939 +g1,22297:8954451,17629939 +g1,22297:9286405,17629939 +g1,22297:9618359,17629939 +g1,22297:12273991,17629939 +g1,22297:12937899,17629939 +g1,22297:14929623,17629939 +g1,22297:15593531,17629939 +g1,22297:16589393,17629939 +g1,22297:17253301,17629939 +g1,22297:17917209,17629939 +g1,22297:19245025,17629939 +h1,22297:19576979,17629939:0,0,0 +k1,22297:32583029,17629939:13006050 +g1,22297:32583029,17629939 +) +(1,22298:6630773,18314794:25952256,424439,112852 +h1,22298:6630773,18314794:0,0,0 +g1,22298:6962727,18314794 +g1,22298:7294681,18314794 +k1,22298:7294681,18314794:0 +h1,22298:11278128,18314794:0,0,0 +k1,22298:32583028,18314794:21304900 +g1,22298:32583028,18314794 +) +(1,22299:6630773,18999649:25952256,424439,106246 +h1,22299:6630773,18999649:0,0,0 +g1,22299:10946175,18999649 +g1,22299:11610083,18999649 +k1,22299:11610083,18999649:0 +h1,22299:15261576,18999649:0,0,0 +k1,22299:32583028,18999649:17321452 +g1,22299:32583028,18999649 +) +] +) +g1,22301:32583029,19105895 +g1,22301:6630773,19105895 +g1,22301:6630773,19105895 +g1,22301:32583029,19105895 +g1,22301:32583029,19105895 +) +h1,22301:6630773,19302503:0,0,0 +(1,22304:6630773,29002617:25952256,9634578,0 +k1,22304:13183781,29002617:6553008 +h1,22303:13183781,29002617:0,0,0 +(1,22303:13183781,29002617:12846240,9634578,0 +(1,22303:13183781,29002617:12846136,9634602,0 +(1,22303:13183781,29002617:12846136,9634602,0 +(1,22303:13183781,29002617:0,9634602,0 +(1,22303:13183781,29002617:0,14208860,0 +(1,22303:13183781,29002617:18945146,14208860,0 +) +k1,22303:13183781,29002617:-18945146 +) +) +g1,22303:26029917,29002617 +) +) +) +g1,22304:26030021,29002617 +k1,22304:32583029,29002617:6553008 +) +(1,22311:6630773,29867697:25952256,513147,134348 +h1,22310:6630773,29867697:983040,0,0 +k1,22310:8275115,29867697:191409 +k1,22310:8998022,29867697:191410 +k1,22310:10475247,29867697:191409 +k1,22310:13296616,29867697:191409 +k1,22310:14139454,29867697:191410 +k1,22310:16571539,29867697:191409 +k1,22310:17782033,29867697:191409 +k1,22310:19959839,29867697:191410 +k1,22310:21664474,29867697:191409 +k1,22310:22617411,29867697:191409 +k1,22310:25074400,29867697:191409 +k1,22310:25881848,29867697:191410 +k1,22310:27092342,29867697:191409 +k1,22310:29627974,29867697:191409 +k1,22310:30234219,29867697:191402 +k1,22310:32583029,29867697:0 +) +(1,22311:6630773,30732777:25952256,505283,115847 +g1,22310:8197739,30732777 +(1,22310:8197739,30732777:0,452978,115847 +r1,22338:12073123,30732777:3875384,568825,115847 +k1,22310:8197739,30732777:-3875384 +) +(1,22310:8197739,30732777:3875384,452978,115847 +k1,22310:8197739,30732777:3277 +h1,22310:12069846,30732777:0,411205,112570 +) +k1,22311:32583029,30732777:20457478 +g1,22311:32583029,30732777 +) +v1,22313:6630773,31417632:0,393216,0 +(1,22317:6630773,31725285:25952256,700869,196608 +g1,22317:6630773,31725285 +g1,22317:6630773,31725285 +g1,22317:6434165,31725285 +(1,22317:6434165,31725285:0,700869,196608 +r1,22338:32779637,31725285:26345472,897477,196608 +k1,22317:6434165,31725285:-26345472 +) +(1,22317:6434165,31725285:26345472,700869,196608 +[1,22317:6630773,31725285:25952256,504261,0 +(1,22315:6630773,31645463:25952256,424439,79822 +(1,22314:6630773,31645463:0,0,0 +g1,22314:6630773,31645463 +g1,22314:6630773,31645463 +g1,22314:6303093,31645463 +(1,22314:6303093,31645463:0,0,0 +) +g1,22314:6630773,31645463 +) +g1,22315:9950312,31645463 +g1,22315:10946174,31645463 +k1,22315:10946174,31645463:0 +h1,22315:18581114,31645463:0,0,0 +k1,22315:32583029,31645463:14001915 +g1,22315:32583029,31645463 +) +] +) +g1,22317:32583029,31725285 +g1,22317:6630773,31725285 +g1,22317:6630773,31725285 +g1,22317:32583029,31725285 +g1,22317:32583029,31725285 +) +h1,22317:6630773,31921893:0,0,0 +(1,22321:6630773,32786973:25952256,513147,134348 +h1,22320:6630773,32786973:983040,0,0 +k1,22320:10016124,32786973:175398 +k1,22320:10842950,32786973:175398 +k1,22320:12720318,32786973:175398 +k1,22320:15921513,32786973:175398 +k1,22320:17610137,32786973:175398 +k1,22320:18436963,32786973:175398 +k1,22320:20853037,32786973:175398 +k1,22320:23441471,32786973:175398 +k1,22320:24232907,32786973:175398 +k1,22320:24996818,32786973:175398 +(1,22320:24996818,32786973:0,452978,115847 +r1,22338:28872202,32786973:3875384,568825,115847 +k1,22320:24996818,32786973:-3875384 +) +(1,22320:24996818,32786973:3875384,452978,115847 +k1,22320:24996818,32786973:3277 +h1,22320:28868925,32786973:0,411205,112570 +) +k1,22320:29047600,32786973:175398 +k1,22320:31563944,32786973:175398 +k1,22320:32583029,32786973:0 +) +(1,22321:6630773,33652053:25952256,505283,134348 +k1,22320:9593046,33652053:207795 +k1,22320:12156204,33652053:207794 +k1,22320:13124217,33652053:207795 +k1,22320:15365594,33652053:207795 +k1,22320:16776629,33652053:207794 +k1,22320:18664767,33652053:207795 +k1,22320:19523990,33652053:207795 +k1,22320:20087644,33652053:207794 +k1,22320:22980449,33652053:207795 +k1,22320:24586126,33652053:207794 +(1,22320:24586126,33652053:0,452978,115847 +r1,22338:27758086,33652053:3171960,568825,115847 +k1,22320:24586126,33652053:-3171960 +) +(1,22320:24586126,33652053:3171960,452978,115847 +k1,22320:24586126,33652053:3277 +h1,22320:27754809,33652053:0,411205,112570 +) +k1,22320:28139551,33652053:207795 +k1,22320:29215698,33652053:207795 +k1,22320:30415052,33652053:207794 +k1,22320:31931601,33652053:207795 +k1,22320:32583029,33652053:0 +) +(1,22321:6630773,34517133:25952256,513147,134348 +g1,22320:9083130,34517133 +g1,22320:10301444,34517133 +g1,22320:13255151,34517133 +g1,22320:15893630,34517133 +g1,22320:16775744,34517133 +g1,22320:18619927,34517133 +g1,22320:19838241,34517133 +k1,22321:32583029,34517133:10451684 +g1,22321:32583029,34517133 +) +v1,22323:6630773,35201988:0,393216,0 +(1,22327:6630773,35509641:25952256,700869,196608 +g1,22327:6630773,35509641 +g1,22327:6630773,35509641 +g1,22327:6434165,35509641 +(1,22327:6434165,35509641:0,700869,196608 +r1,22338:32779637,35509641:26345472,897477,196608 +k1,22327:6434165,35509641:-26345472 +) +(1,22327:6434165,35509641:26345472,700869,196608 +[1,22327:6630773,35509641:25952256,504261,0 +(1,22325:6630773,35429819:25952256,424439,79822 +(1,22324:6630773,35429819:0,0,0 +g1,22324:6630773,35429819 +g1,22324:6630773,35429819 +g1,22324:6303093,35429819 +(1,22324:6303093,35429819:0,0,0 +) +g1,22324:6630773,35429819 +) +k1,22325:6630773,35429819:0 +h1,22325:13269851,35429819:0,0,0 +k1,22325:32583029,35429819:19313178 +g1,22325:32583029,35429819 +) +] +) +g1,22327:32583029,35509641 +g1,22327:6630773,35509641 +g1,22327:6630773,35509641 +g1,22327:32583029,35509641 +g1,22327:32583029,35509641 +) +h1,22327:6630773,35706249:0,0,0 +v1,22331:6630773,36571329:0,393216,0 +(1,22332:6630773,42943050:25952256,6764937,0 +g1,22332:6630773,42943050 +g1,22332:6237557,42943050 +r1,22338:6368629,42943050:131072,6764937,0 +g1,22332:6567858,42943050 +g1,22332:6764466,42943050 +[1,22332:6764466,42943050:25818563,6764937,0 +(1,22332:6764466,36879627:25818563,701514,196608 +(1,22331:6764466,36879627:0,701514,196608 +r1,22338:7761522,36879627:997056,898122,196608 +k1,22331:6764466,36879627:-997056 +) +(1,22331:6764466,36879627:997056,701514,196608 +) +k1,22331:8011243,36879627:249721 +k1,22331:8338923,36879627:327680 +k1,22331:9785331,36879627:249721 +k1,22331:11127537,36879627:249721 +k1,22331:12036549,36879627:249720 +k1,22331:12642130,36879627:249721 +k1,22331:14262864,36879627:249721 +k1,22331:18302532,36879627:249721 +k1,22331:19238415,36879627:249721 +k1,22331:21753716,36879627:249721 +k1,22331:22951088,36879627:249721 +k1,22331:24808406,36879627:249720 +k1,22331:25589624,36879627:249721 +k1,22331:28563677,36879627:249721 +k1,22331:30194242,36879627:249721 +k1,22331:32583029,36879627:0 +) +(1,22332:6764466,37744707:25818563,513147,134348 +k1,22331:9073001,37744707:219903 +k1,22331:11936626,37744707:219903 +k1,22331:15321263,37744707:219903 +k1,22331:16157204,37744707:219903 +k1,22331:17396192,37744707:219903 +k1,22331:21159627,37744707:219903 +k1,22331:23314808,37744707:219903 +k1,22331:24186139,37744707:219903 +k1,22331:27226712,37744707:219903 +k1,22331:27802475,37744707:219903 +k1,22331:30620881,37744707:219903 +k1,22332:32583029,37744707:0 +) +(1,22332:6764466,38609787:25818563,513147,134348 +k1,22331:8525872,38609787:217378 +k1,22331:12368046,38609787:217378 +k1,22331:13604509,38609787:217378 +k1,22331:15048066,38609787:217378 +k1,22331:16456889,38609787:217378 +k1,22331:18281865,38609787:217378 +k1,22331:19115281,38609787:217378 +k1,22331:19688519,38609787:217378 +k1,22331:21577720,38609787:217378 +k1,22331:23490514,38609787:217378 +k1,22331:26557397,38609787:217378 +k1,22331:29405390,38609787:217378 +k1,22331:31914562,38609787:217378 +k1,22331:32583029,38609787:0 +) +(1,22332:6764466,39474867:25818563,513147,134348 +k1,22331:7619291,39474867:242063 +k1,22331:9356886,39474867:242063 +k1,22331:11555853,39474867:242062 +k1,22331:12153776,39474867:242063 +k1,22331:14046036,39474867:242063 +k1,22331:17639610,39474867:242063 +k1,22331:20270459,39474867:242062 +k1,22331:22774825,39474867:242063 +k1,22331:25180887,39474867:242063 +(1,22331:25180887,39474867:0,452978,115847 +r1,22338:28704559,39474867:3523672,568825,115847 +k1,22331:25180887,39474867:-3523672 +) +(1,22331:25180887,39474867:3523672,452978,115847 +k1,22331:25180887,39474867:3277 +h1,22331:28701282,39474867:0,411205,112570 +) +k1,22331:28946622,39474867:242063 +k1,22331:29720181,39474867:242062 +k1,22331:30981329,39474867:242063 +k1,22331:32583029,39474867:0 +) +(1,22332:6764466,40339947:25818563,513147,134348 +k1,22331:9640241,40339947:203872 +k1,22331:10503404,40339947:203871 +k1,22331:11726361,40339947:203872 +k1,22331:15281743,40339947:203871 +k1,22331:17904549,40339947:203872 +k1,22331:21402915,40339947:203871 +k1,22331:22292949,40339947:203872 +k1,22331:22954917,40339947:203871 +k1,22331:25085547,40339947:203872 +k1,22331:26568025,40339947:203871 +k1,22331:28238593,40339947:203872 +k1,22331:29390115,40339947:203871 +k1,22331:32583029,40339947:0 +) +(1,22332:6764466,41205027:25818563,513147,134348 +k1,22331:8561410,41205027:189346 +k1,22331:9436918,41205027:189346 +k1,22331:10573916,41205027:189347 +k1,22331:12370860,41205027:189346 +k1,22331:13954157,41205027:189346 +k1,22331:16032251,41205027:189346 +k1,22331:16907760,41205027:189347 +k1,22331:17555203,41205027:189346 +k1,22331:20412520,41205027:189346 +k1,22331:20957726,41205027:189346 +k1,22331:22480731,41205027:189347 +k1,22331:24834076,41205027:189346 +(1,22331:24834076,41205027:0,452978,115847 +r1,22338:30116307,41205027:5282231,568825,115847 +k1,22331:24834076,41205027:-5282231 +) +(1,22331:24834076,41205027:5282231,452978,115847 +k1,22331:24834076,41205027:3277 +h1,22331:30113030,41205027:0,411205,112570 +) +k1,22331:30305653,41205027:189346 +k1,22331:32583029,41205027:0 +) +(1,22332:6764466,42070107:25818563,513147,134348 +k1,22331:7292153,42070107:171827 +k1,22331:8623967,42070107:171827 +k1,22331:9987240,42070107:171828 +k1,22331:11443573,42070107:171827 +k1,22331:13542158,42070107:171827 +k1,22331:14992592,42070107:171827 +k1,22331:16112071,42070107:171828 +k1,22331:19476812,42070107:171827 +k1,22331:21256237,42070107:171827 +k1,22331:22114226,42070107:171827 +k1,22331:22991221,42070107:171828 +k1,22331:24235217,42070107:171827 +k1,22331:26267611,42070107:171827 +k1,22331:29010415,42070107:171827 +k1,22331:29833671,42070107:171828 +k1,22331:31024583,42070107:171827 +k1,22331:32583029,42070107:0 +) +(1,22332:6764466,42935187:25818563,513147,7863 +g1,22331:8338640,42935187 +g1,22331:10235907,42935187 +g1,22331:11948362,42935187 +g1,22331:13541542,42935187 +k1,22332:32583030,42935187:17100312 +g1,22332:32583030,42935187 +) +] +g1,22332:32583029,42943050 +) +h1,22332:6630773,42943050:0,0,0 +] +(1,22338:32583029,45706769:0,0,0 +g1,22338:32583029,45706769 +) +) +] +(1,22338:6630773,47279633:25952256,0,0 +h1,22338:6630773,47279633:25952256,0,0 +) +] +(1,22338:4262630,4025873:0,0,0 +[1,22338:-473656,4025873:0,0,0 +(1,22338:-473656,-710413:0,0,0 +(1,22338:-473656,-710413:0,0,0 +g1,22338:-473656,-710413 +) +g1,22338:-473656,-710413 ) ] ) ] !22859 -}381 -Input:4234:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4235:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4236:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4237:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}382 Input:4238:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4239:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4240:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4241:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4242:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4243:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4244:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4245:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4246:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{382 -[1,22385:4262630,47279633:28320399,43253760,0 -(1,22385:4262630,4025873:0,0,0 -[1,22385:-473656,4025873:0,0,0 -(1,22385:-473656,-710413:0,0,0 -(1,22385:-473656,-644877:0,0,0 -k1,22385:-473656,-644877:-65536 +{383 +[1,22383:4262630,47279633:28320399,43253760,0 +(1,22383:4262630,4025873:0,0,0 +[1,22383:-473656,4025873:0,0,0 +(1,22383:-473656,-710413:0,0,0 +(1,22383:-473656,-644877:0,0,0 +k1,22383:-473656,-644877:-65536 ) -(1,22385:-473656,4736287:0,0,0 -k1,22385:-473656,4736287:5209943 +(1,22383:-473656,4736287:0,0,0 +k1,22383:-473656,4736287:5209943 ) -g1,22385:-473656,-710413 +g1,22383:-473656,-710413 ) ] ) -[1,22385:6630773,47279633:25952256,43253760,0 -[1,22385:6630773,4812305:25952256,786432,0 -(1,22385:6630773,4812305:25952256,505283,11795 -(1,22385:6630773,4812305:25952256,505283,11795 -g1,22385:3078558,4812305 -[1,22385:3078558,4812305:0,0,0 -(1,22385:3078558,2439708:0,1703936,0 -k1,22385:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22385:2537886,2439708:1179648,16384,0 +[1,22383:6630773,47279633:25952256,43253760,0 +[1,22383:6630773,4812305:25952256,786432,0 +(1,22383:6630773,4812305:25952256,505283,11795 +(1,22383:6630773,4812305:25952256,505283,11795 +g1,22383:3078558,4812305 +[1,22383:3078558,4812305:0,0,0 +(1,22383:3078558,2439708:0,1703936,0 +k1,22383:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22383:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22385:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22383:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22385:3078558,4812305:0,0,0 -(1,22385:3078558,2439708:0,1703936,0 -g1,22385:29030814,2439708 -g1,22385:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22385:36151628,1915420:16384,1179648,0 +[1,22383:3078558,4812305:0,0,0 +(1,22383:3078558,2439708:0,1703936,0 +g1,22383:29030814,2439708 +g1,22383:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22383:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22385:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22383:37855564,2439708:1179648,16384,0 ) ) -k1,22385:3078556,2439708:-34777008 +k1,22383:3078556,2439708:-34777008 ) ] -[1,22385:3078558,4812305:0,0,0 -(1,22385:3078558,49800853:0,16384,2228224 -k1,22385:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22385:2537886,49800853:1179648,16384,0 +[1,22383:3078558,4812305:0,0,0 +(1,22383:3078558,49800853:0,16384,2228224 +k1,22383:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22383:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22385:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22383:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22385:3078558,4812305:0,0,0 -(1,22385:3078558,49800853:0,16384,2228224 -g1,22385:29030814,49800853 -g1,22385:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22385:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22385:37855564,49800853:1179648,16384,0 -) -) -k1,22385:3078556,49800853:-34777008 -) -] -g1,22385:6630773,4812305 -g1,22385:6630773,4812305 -g1,22385:9264009,4812305 -k1,22385:31387653,4812305:22123644 -) -) -] -[1,22385:6630773,45706769:25952256,40108032,0 -(1,22385:6630773,45706769:25952256,40108032,0 -(1,22385:6630773,45706769:0,0,0 -g1,22385:6630773,45706769 -) -[1,22385:6630773,45706769:25952256,40108032,0 -(1,22337:6630773,6254097:25952256,555811,139132 -(1,22337:6630773,6254097:2899444,534184,12975 -g1,22337:6630773,6254097 -g1,22337:9530217,6254097 -) -g1,22337:13805131,6254097 -k1,22337:32583029,6254097:16140860 -g1,22337:32583029,6254097 -) -(1,22340:6630773,7512393:25952256,513147,134348 -k1,22339:7715343,7512393:277167 -k1,22339:9921890,7512393:277167 -k1,22339:10554917,7512393:277167 -k1,22339:14711814,7512393:277166 -k1,22339:17751324,7512393:277167 -k1,22339:20188558,7512393:277167 -k1,22339:22675599,7512393:277167 -k1,22339:24680950,7512393:277167 -k1,22339:25416214,7512393:277167 -k1,22339:26309418,7512393:277166 -k1,22339:29257832,7512393:277167 -k1,22339:31316268,7512393:277167 -k1,22339:32051532,7512393:277167 -k1,22339:32583029,7512393:0 -) -(1,22340:6630773,8377473:25952256,513147,126483 -k1,22339:8222592,8377473:256851 -k1,22339:9130871,8377473:256851 -k1,22339:11317101,8377473:256850 -k1,22339:11929812,8377473:256851 -k1,22339:13469858,8377473:256851 -k1,22339:17607096,8377473:256851 -k1,22339:18546831,8377473:256850 -k1,22339:19159542,8377473:256851 -k1,22339:22251480,8377473:256851 -k1,22339:25433858,8377473:256851 -k1,22339:27677104,8377473:256850 -k1,22339:28620117,8377473:256851 -k1,22339:31966991,8377473:256851 -k1,22339:32583029,8377473:0 -) -(1,22340:6630773,9242553:25952256,505283,134348 -k1,22339:9121890,9242553:212430 -h1,22339:11063066,9242553:0,0,0 -k1,22339:11275496,9242553:212430 -k1,22339:12297297,9242553:212431 -k1,22339:14007880,9242553:212430 -h1,22339:15203257,9242553:0,0,0 -k1,22339:15589357,9242553:212430 -k1,22339:16429622,9242553:212430 -k1,22339:18344023,9242553:212431 -k1,22339:20253835,9242553:212430 -k1,22339:20924362,9242553:212430 -k1,22339:21668289,9242553:212430 -k1,22339:24241326,9242553:212430 -k1,22339:25105185,9242553:212431 -k1,22339:27191289,9242553:212430 -k1,22339:30596633,9242553:212430 -k1,22339:32583029,9242553:0 -) -(1,22340:6630773,10107633:25952256,513147,134348 -k1,22339:9370127,10107633:227359 -k1,22339:10545138,10107633:227360 -k1,22339:11128357,10107633:227359 -k1,22339:13228736,10107633:227360 -k1,22339:14907062,10107633:227359 -k1,22339:17175213,10107633:227360 -k1,22339:21182689,10107633:227359 -$1,22339:21182689,10107633 -$1,22339:21685350,10107633 -k1,22339:23378095,10107633:227360 -k1,22339:24789690,10107633:227359 -k1,22339:26861233,10107633:227360 -k1,22339:28080152,10107633:227359 -k1,22339:30805089,10107633:227360 -k1,22339:31793976,10107633:227359 -k1,22340:32583029,10107633:0 -) -(1,22340:6630773,10972713:25952256,505283,134348 -k1,22339:8734759,10972713:223758 -k1,22339:9977603,10972713:223759 -k1,22339:11453754,10972713:223758 -k1,22339:12861749,10972713:223759 -k1,22339:15103361,10972713:223758 -k1,22339:17110355,10972713:223759 -k1,22339:19876910,10972713:223758 -k1,22339:21119753,10972713:223758 -k1,22339:23187695,10972713:223759 -k1,22339:23869550,10972713:223758 -k1,22339:24624806,10972713:223759 -k1,22339:26134380,10972713:223758 -k1,22339:29467167,10972713:223759 -k1,22339:30342353,10972713:223758 -k1,22339:32583029,10972713:0 -) -(1,22340:6630773,11837793:25952256,513147,134348 -g1,22339:8338641,11837793 -g1,22339:12529013,11837793 -g1,22339:13414404,11837793 -g1,22339:17431105,11837793 -g1,22339:18161831,11837793 -g1,22339:20720356,11837793 -g1,22339:21571013,11837793 -g1,22339:22789327,11837793 -g1,22339:26515048,11837793 -g1,22339:27373569,11837793 -g1,22339:28591883,11837793 -k1,22340:32583029,11837793:2712539 -g1,22340:32583029,11837793 -) -v1,22342:6630773,12522648:0,393216,0 -(1,22350:6630773,15609357:25952256,3479925,196608 -g1,22350:6630773,15609357 -g1,22350:6630773,15609357 -g1,22350:6434165,15609357 -(1,22350:6434165,15609357:0,3479925,196608 -r1,22385:32779637,15609357:26345472,3676533,196608 -k1,22350:6434165,15609357:-26345472 -) -(1,22350:6434165,15609357:26345472,3479925,196608 -[1,22350:6630773,15609357:25952256,3283317,0 -(1,22344:6630773,12757085:25952256,431045,112852 -(1,22343:6630773,12757085:0,0,0 -g1,22343:6630773,12757085 -g1,22343:6630773,12757085 -g1,22343:6303093,12757085 -(1,22343:6303093,12757085:0,0,0 -) -g1,22343:6630773,12757085 -) -k1,22344:6630773,12757085:0 -g1,22344:10614221,12757085 -g1,22344:11278129,12757085 -k1,22344:11278129,12757085:0 -h1,22344:14929622,12757085:0,0,0 -k1,22344:32583030,12757085:17653408 -g1,22344:32583030,12757085 -) -(1,22345:6630773,13441940:25952256,424439,112852 -h1,22345:6630773,13441940:0,0,0 -g1,22345:6962727,13441940 -g1,22345:7294681,13441940 -g1,22345:7626635,13441940 -g1,22345:7958589,13441940 -g1,22345:8290543,13441940 -g1,22345:8622497,13441940 -g1,22345:8954451,13441940 -g1,22345:11610083,13441940 -g1,22345:12273991,13441940 -g1,22345:14265715,13441940 -g1,22345:14929623,13441940 -g1,22345:15593531,13441940 -g1,22345:16257439,13441940 -g1,22345:18249163,13441940 -g1,22345:18913071,13441940 -g1,22345:19576979,13441940 -g1,22345:20904795,13441940 -h1,22345:21236749,13441940:0,0,0 -k1,22345:32583029,13441940:11346280 -g1,22345:32583029,13441940 -) -(1,22346:6630773,14126795:25952256,424439,112852 -h1,22346:6630773,14126795:0,0,0 -g1,22346:6962727,14126795 -g1,22346:7294681,14126795 -g1,22346:11610082,14126795 -h1,22346:11942036,14126795:0,0,0 -k1,22346:32583028,14126795:20640992 -g1,22346:32583028,14126795 -) -(1,22347:6630773,14811650:25952256,424439,106246 -h1,22347:6630773,14811650:0,0,0 -g1,22347:6962727,14811650 -g1,22347:7294681,14811650 -g1,22347:15925484,14811650 -g1,22347:16589392,14811650 -g1,22347:24556287,14811650 -g1,22347:25220195,14811650 -g1,22347:26548011,14811650 -h1,22347:26879965,14811650:0,0,0 -k1,22347:32583029,14811650:5703064 -g1,22347:32583029,14811650 -) -(1,22348:6630773,15496505:25952256,424439,112852 -h1,22348:6630773,15496505:0,0,0 -g1,22348:6962727,15496505 -g1,22348:7294681,15496505 -g1,22348:13269852,15496505 -g1,22348:13933760,15496505 -g1,22348:20240885,15496505 -g1,22348:20904793,15496505 -g1,22348:22232609,15496505 -g1,22348:24224333,15496505 -g1,22348:24888241,15496505 -g1,22348:25884103,15496505 -g1,22348:27875827,15496505 -g1,22348:28539735,15496505 -h1,22348:29535597,15496505:0,0,0 -k1,22348:32583029,15496505:3047432 -g1,22348:32583029,15496505 -) -] -) -g1,22350:32583029,15609357 -g1,22350:6630773,15609357 -g1,22350:6630773,15609357 -g1,22350:32583029,15609357 -g1,22350:32583029,15609357 -) -h1,22350:6630773,15805965:0,0,0 -(1,22353:6630773,25506079:25952256,9634578,0 -k1,22353:13183781,25506079:6553008 -h1,22352:13183781,25506079:0,0,0 -(1,22352:13183781,25506079:12846240,9634578,0 -(1,22352:13183781,25506079:12846136,9634602,0 -(1,22352:13183781,25506079:12846136,9634602,0 -(1,22352:13183781,25506079:0,9634602,0 -(1,22352:13183781,25506079:0,14208860,0 -(1,22352:13183781,25506079:18945146,14208860,0 -) -k1,22352:13183781,25506079:-18945146 -) -) -g1,22352:26029917,25506079 -) -) -) -g1,22353:26030021,25506079 -k1,22353:32583029,25506079:6553008 -) -v1,22360:6630773,26371159:0,393216,0 -(1,22361:6630773,28468822:25952256,2490879,0 -g1,22361:6630773,28468822 -g1,22361:6237557,28468822 -r1,22385:6368629,28468822:131072,2490879,0 -g1,22361:6567858,28468822 -g1,22361:6764466,28468822 -[1,22361:6764466,28468822:25818563,2490879,0 -(1,22361:6764466,26643636:25818563,665693,196608 -(1,22360:6764466,26643636:0,665693,196608 -r1,22385:7868133,26643636:1103667,862301,196608 -k1,22360:6764466,26643636:-1103667 -) -(1,22360:6764466,26643636:1103667,665693,196608 -) -k1,22360:8114545,26643636:246412 -k1,22360:9840763,26643636:327680 -k1,22360:11384788,26643636:246412 -k1,22360:13025151,26643636:246412 -k1,22360:14290648,26643636:246412 -k1,22360:16033247,26643636:246412 -k1,22360:16895697,26643636:246412 -k1,22360:18161195,26643636:246413 -k1,22360:19555798,26643636:246412 -k1,22360:21772878,26643636:246412 -k1,22360:24048285,26643636:246412 -k1,22360:27547249,26643636:246412 -k1,22360:28812746,26643636:246412 -k1,22360:31069803,26643636:246412 -k1,22360:32583029,26643636:0 -) -(1,22361:6764466,27508716:25818563,513147,134348 -k1,22360:7864868,27508716:152751 -(1,22360:7864868,27508716:0,452978,122846 -r1,22385:9629981,27508716:1765113,575824,122846 -k1,22360:7864868,27508716:-1765113 -) -(1,22360:7864868,27508716:1765113,452978,122846 -k1,22360:7864868,27508716:3277 -h1,22360:9626704,27508716:0,411205,112570 -) -k1,22360:9956402,27508716:152751 -(1,22360:9956402,27508716:0,452978,122846 -r1,22385:11721515,27508716:1765113,575824,122846 -k1,22360:9956402,27508716:-1765113 -) -(1,22360:9956402,27508716:1765113,452978,122846 -k1,22360:9956402,27508716:3277 -h1,22360:11718238,27508716:0,411205,112570 -) -k1,22360:11874266,27508716:152751 -k1,22360:13218462,27508716:152751 -(1,22360:13218462,27508716:0,452978,122846 -r1,22385:14983575,27508716:1765113,575824,122846 -k1,22360:13218462,27508716:-1765113 -) -(1,22360:13218462,27508716:1765113,452978,122846 -k1,22360:13218462,27508716:3277 -h1,22360:14980298,27508716:0,411205,112570 -) -k1,22360:15309996,27508716:152751 -k1,22360:17829251,27508716:152750 -k1,22360:18973562,27508716:152751 -k1,22360:22323815,27508716:152751 -k1,22360:23092604,27508716:152751 -k1,22360:25874659,27508716:152751 -k1,22360:27218855,27508716:152751 -k1,22360:31189078,27508716:152751 -k1,22360:32583029,27508716:0 -) -(1,22361:6764466,28373796:25818563,505283,95026 -g1,22360:8956645,28373796 -g1,22360:11791077,28373796 -g1,22360:12388765,28373796 -g1,22360:13779439,28373796 -k1,22361:32583028,28373796:18145608 -g1,22361:32583028,28373796 -) -] -g1,22361:32583029,28468822 -) -h1,22361:6630773,28468822:0,0,0 -(1,22364:6630773,29333902:25952256,513147,134348 -h1,22363:6630773,29333902:983040,0,0 -k1,22363:8316209,29333902:214808 -k1,22363:9744104,29333902:214824 -k1,22363:12260552,29333902:214824 -k1,22363:15459886,29333902:214824 -k1,22363:16206206,29333902:214823 -k1,22363:17072458,29333902:214824 -k1,22363:18379767,29333902:214824 -k1,22363:18950451,29333902:214824 -k1,22363:21517362,29333902:214824 -k1,22363:23063222,29333902:214824 -k1,22363:24720492,29333902:214823 -k1,22363:27030502,29333902:214824 -(1,22363:27030502,29333902:0,452978,115847 -r1,22385:29499039,29333902:2468537,568825,115847 -k1,22363:27030502,29333902:-2468537 -) -(1,22363:27030502,29333902:2468537,452978,115847 -k1,22363:27030502,29333902:3277 -h1,22363:29495762,29333902:0,411205,112570 -) -k1,22363:29887533,29333902:214824 -k1,22364:32583029,29333902:0 -) -(1,22364:6630773,30198982:25952256,505283,126483 -(1,22363:6630773,30198982:0,452978,115847 -r1,22385:8395886,30198982:1765113,568825,115847 -k1,22363:6630773,30198982:-1765113 -) -(1,22363:6630773,30198982:1765113,452978,115847 -k1,22363:6630773,30198982:3277 -h1,22363:8392609,30198982:0,411205,112570 -) -k1,22363:8673007,30198982:277121 -k1,22363:10054410,30198982:277121 -k1,22363:11079297,30198982:277121 -k1,22363:12869644,30198982:277121 -k1,22363:13798193,30198982:277121 -k1,22363:15009857,30198982:277121 -k1,22363:16555755,30198982:277121 -k1,22363:19192173,30198982:277122 -k1,22363:20120722,30198982:277121 -k1,22363:21416928,30198982:277121 -k1,22363:23127977,30198982:277121 -k1,22363:24847545,30198982:277121 -k1,22363:25752501,30198982:277121 -k1,22363:27232863,30198982:277121 -k1,22363:30345071,30198982:277121 -k1,22363:31490544,30198982:277121 -k1,22364:32583029,30198982:0 -) -(1,22364:6630773,31064062:25952256,513147,134348 -(1,22363:6630773,31064062:0,452978,115847 -r1,22385:10506157,31064062:3875384,568825,115847 -k1,22363:6630773,31064062:-3875384 -) -(1,22363:6630773,31064062:3875384,452978,115847 -k1,22363:6630773,31064062:3277 -h1,22363:10502880,31064062:0,411205,112570 -) -g1,22363:10705386,31064062 -g1,22363:11629443,31064062 -g1,22363:12514834,31064062 -g1,22363:13365491,31064062 -g1,22363:15805396,31064062 -g1,22363:17023710,31064062 -g1,22363:18491716,31064062 -g1,22363:19350237,31064062 -g1,22363:20733702,31064062 -g1,22363:22777114,31064062 -g1,22363:24351944,31064062 -g1,22363:25498824,31064062 -g1,22363:26717138,31064062 -$1,22363:26717138,31064062 -$1,22363:27219799,31064062 -g1,22363:27419028,31064062 -k1,22364:32583029,31064062:3859180 -g1,22364:32583029,31064062 -) -v1,22366:6630773,31748917:0,393216,0 -(1,22373:6630773,34117741:25952256,2762040,196608 -g1,22373:6630773,34117741 -g1,22373:6630773,34117741 -g1,22373:6434165,34117741 -(1,22373:6434165,34117741:0,2762040,196608 -r1,22385:32779637,34117741:26345472,2958648,196608 -k1,22373:6434165,34117741:-26345472 -) -(1,22373:6434165,34117741:26345472,2762040,196608 -[1,22373:6630773,34117741:25952256,2565432,0 -(1,22368:6630773,31983354:25952256,431045,112852 -(1,22367:6630773,31983354:0,0,0 -g1,22367:6630773,31983354 -g1,22367:6630773,31983354 -g1,22367:6303093,31983354 -(1,22367:6303093,31983354:0,0,0 -) -g1,22367:6630773,31983354 -) -k1,22368:6630773,31983354:0 -g1,22368:12937898,31983354 -g1,22368:14929622,31983354 -g1,22368:15593530,31983354 -g1,22368:17253300,31983354 -g1,22368:18581116,31983354 -h1,22368:18913070,31983354:0,0,0 -k1,22368:32583029,31983354:13669959 -g1,22368:32583029,31983354 -) -(1,22369:6630773,32668209:25952256,424439,112852 -h1,22369:6630773,32668209:0,0,0 -g1,22369:6962727,32668209 -g1,22369:7294681,32668209 -g1,22369:11610082,32668209 -h1,22369:11942036,32668209:0,0,0 -k1,22369:32583028,32668209:20640992 -g1,22369:32583028,32668209 -) -(1,22370:6630773,33353064:25952256,424439,106246 -h1,22370:6630773,33353064:0,0,0 -g1,22370:6962727,33353064 -g1,22370:7294681,33353064 -g1,22370:15925484,33353064 -g1,22370:16589392,33353064 -g1,22370:24556287,33353064 -g1,22370:25220195,33353064 -g1,22370:26879965,33353064 -h1,22370:27211919,33353064:0,0,0 -k1,22370:32583029,33353064:5371110 -g1,22370:32583029,33353064 -) -(1,22371:6630773,34037919:25952256,424439,79822 -h1,22371:6630773,34037919:0,0,0 -g1,22371:6962727,34037919 -g1,22371:7294681,34037919 -g1,22371:13269852,34037919 -g1,22371:13933760,34037919 -g1,22371:19908931,34037919 -g1,22371:20572839,34037919 -k1,22371:20572839,34037919:0 -h1,22371:23892379,34037919:0,0,0 -k1,22371:32583029,34037919:8690650 -g1,22371:32583029,34037919 -) -] -) -g1,22373:32583029,34117741 -g1,22373:6630773,34117741 -g1,22373:6630773,34117741 -g1,22373:32583029,34117741 -g1,22373:32583029,34117741 -) -h1,22373:6630773,34314349:0,0,0 -(1,22377:6630773,35179429:25952256,513147,134348 -h1,22376:6630773,35179429:983040,0,0 -k1,22376:9999264,35179429:221452 -k1,22376:13633176,35179429:221452 -k1,22376:15839714,35179429:221452 -k1,22376:16417026,35179429:221452 -k1,22376:19817629,35179429:221452 -k1,22376:22710984,35179429:221452 -k1,22376:23677580,35179429:221452 -k1,22376:24550460,35179429:221452 -k1,22376:27034215,35179429:221452 -k1,22376:28274752,35179429:221452 -k1,22376:31923737,35179429:221452 -k1,22376:32583029,35179429:0 -) -(1,22377:6630773,36044509:25952256,513147,134348 -k1,22376:9062915,36044509:209161 -k1,22376:9931367,36044509:209160 -k1,22376:12342538,36044509:209161 -k1,22376:15594535,36044509:209160 -k1,22376:16489858,36044509:209161 -k1,22376:17977625,36044509:209160 -k1,22376:18872948,36044509:209161 -k1,22376:19741400,36044509:209160 -k1,22376:23143475,36044509:209161 -k1,22376:26395472,36044509:209160 -k1,22376:27232468,36044509:209161 -k1,22376:28460713,36044509:209160 -k1,22376:30640542,36044509:209161 -k1,22376:32583029,36044509:0 -) -(1,22377:6630773,36909589:25952256,513147,134348 -k1,22376:8523868,36909589:157702 -(1,22376:8523868,36909589:0,452978,115847 -r1,22385:11695828,36909589:3171960,568825,115847 -k1,22376:8523868,36909589:-3171960 -) -(1,22376:8523868,36909589:3171960,452978,115847 -k1,22376:8523868,36909589:3277 -h1,22376:11692551,36909589:0,411205,112570 -) -k1,22376:11853530,36909589:157702 -k1,22376:14338415,36909589:157702 -k1,22376:15163273,36909589:157702 -(1,22376:15163273,36909589:0,452978,115847 -r1,22385:19038657,36909589:3875384,568825,115847 -k1,22376:15163273,36909589:-3875384 -) -(1,22376:15163273,36909589:3875384,452978,115847 -k1,22376:15163273,36909589:3277 -h1,22376:19035380,36909589:0,411205,112570 -) -k1,22376:19370029,36909589:157702 -k1,22376:21483980,36909589:157701 -k1,22376:23116897,36909589:157702 -k1,22376:25821983,36909589:157702 -k1,22376:26998770,36909589:157702 -k1,22376:28340708,36909589:157702 -k1,22376:30342593,36909589:157702 -k1,22376:31116333,36909589:157702 -k1,22376:32583029,36909589:0 -) -(1,22377:6630773,37774669:25952256,505283,138281 -$1,22376:7133434,37774669 -g1,22376:7332663,37774669 -g1,22376:8723337,37774669 -$1,22376:8723337,37774669 -$1,22376:9275150,37774669 -g1,22376:9474379,37774669 -k1,22377:32583030,37774669:21657684 -g1,22377:32583030,37774669 -) -v1,22379:6630773,38639749:0,393216,0 -(1,22380:6630773,43371974:25952256,5125441,0 -g1,22380:6630773,43371974 -g1,22380:6237557,43371974 -r1,22385:6368629,43371974:131072,5125441,0 -g1,22380:6567858,43371974 -g1,22380:6764466,43371974 -[1,22380:6764466,43371974:25818563,5125441,0 -(1,22380:6764466,38912226:25818563,665693,196608 -(1,22379:6764466,38912226:0,665693,196608 -r1,22385:7868133,38912226:1103667,862301,196608 -k1,22379:6764466,38912226:-1103667 -) -(1,22379:6764466,38912226:1103667,665693,196608 -) -k1,22379:8072462,38912226:204329 -k1,22379:9798680,38912226:327680 -k1,22379:12208951,38912226:204329 -k1,22379:13432365,38912226:204329 -k1,22379:16298110,38912226:204328 -k1,22379:18531434,38912226:204329 -k1,22379:19460591,38912226:204329 -k1,22379:20949426,38912226:204329 -k1,22379:22172840,38912226:204329 -k1,22379:23561405,38912226:204329 -k1,22379:25609917,38912226:204329 -k1,22379:26623615,38912226:204328 -k1,22379:27847029,38912226:204329 -$1,22379:27847029,38912226 -$1,22379:28349690,38912226 -k1,22379:30019404,38912226:204329 -k1,22379:31215293,38912226:204329 -k1,22379:32583029,38912226:0 -) -(1,22380:6764466,39777306:25818563,513147,138281 -k1,22379:8251806,39777306:295895 -k1,22379:10291614,39777306:295895 -k1,22379:11396879,39777306:295895 -k1,22379:12711859,39777306:295895 -$1,22379:12711859,39777306 -$1,22379:13263672,39777306 -k1,22379:15024951,39777306:295894 -k1,22379:16550957,39777306:295895 -k1,22379:18038297,39777306:295895 -k1,22379:19353277,39777306:295895 -k1,22379:20980208,39777306:295895 -k1,22379:22544880,39777306:295895 -k1,22379:23372272,39777306:295895 -k1,22379:24687252,39777306:295895 -k1,22379:26636619,39777306:295894 -k1,22379:27880165,39777306:295895 -k1,22379:29642756,39777306:295895 -k1,22379:31510860,39777306:295895 -k1,22379:32583029,39777306:0 -) -(1,22380:6764466,40642386:25818563,513147,134348 -k1,22379:9625457,40642386:199574 -k1,22379:11392652,40642386:199574 -k1,22379:12611311,40642386:199574 -k1,22379:15250135,40642386:199574 -k1,22379:17921727,40642386:199574 -k1,22379:19140386,40642386:199574 -k1,22379:24166031,40642386:199574 -k1,22379:25313256,40642386:199574 -(1,22379:25313256,40642386:0,452978,115847 -r1,22385:27781793,40642386:2468537,568825,115847 -k1,22379:25313256,40642386:-2468537 -) -(1,22379:25313256,40642386:2468537,452978,115847 -k1,22379:25313256,40642386:3277 -h1,22379:27778516,40642386:0,411205,112570 -) -k1,22379:27981367,40642386:199574 -k1,22379:28832369,40642386:199574 -k1,22379:30298099,40642386:199574 -k1,22379:31563944,40642386:199574 -k1,22379:32583029,40642386:0 -) -(1,22380:6764466,41507466:25818563,513147,134348 -k1,22379:8985060,41507466:152278 -k1,22379:9796629,41507466:152277 -k1,22379:10967992,41507466:152278 -k1,22379:13989435,41507466:152277 -k1,22379:15426219,41507466:152278 -k1,22379:17108762,41507466:152277 -k1,22379:17912468,41507466:152278 -k1,22379:18812512,41507466:152278 -k1,22379:20659550,41507466:152277 -k1,22379:22095023,41507466:152278 -k1,22379:24431615,41507466:152277 -k1,22379:25625915,41507466:152278 -k1,22379:28943581,41507466:152277 -k1,22379:30120842,41507466:152278 -k1,22379:32583029,41507466:0 -) -(1,22380:6764466,42372546:25818563,513147,134348 -k1,22379:9363028,42372546:257616 -k1,22379:12431483,42372546:257616 -k1,22379:13613157,42372546:257616 -k1,22379:15404971,42372546:257616 -k1,22379:18308276,42372546:257616 -k1,22379:21697201,42372546:257615 -k1,22379:23146262,42372546:257616 -k1,22379:25557391,42372546:257616 -k1,22379:27615936,42372546:257616 -k1,22379:29064997,42372546:257616 -k1,22379:29772190,42372546:257616 -k1,22379:32583029,42372546:0 -) -(1,22380:6764466,43237626:25818563,505283,134348 -g1,22379:10046508,43237626 -g1,22379:12468063,43237626 -k1,22380:32583029,43237626:18261608 -g1,22380:32583029,43237626 -) -] -g1,22380:32583029,43371974 -) -h1,22380:6630773,43371974:0,0,0 -(1,22383:6630773,44237054:25952256,513147,134348 -h1,22382:6630773,44237054:983040,0,0 -k1,22382:11359196,44237054:223478 -k1,22382:12241965,44237054:223477 -k1,22382:14167413,44237054:223478 -k1,22382:15617070,44237054:223478 -k1,22382:18709713,44237054:223477 -k1,22382:20037473,44237054:223478 -k1,22382:21008717,44237054:223478 -k1,22382:24005678,44237054:223477 -k1,22382:24845194,44237054:223478 -k1,22382:25424531,44237054:223477 -k1,22382:27850019,44237054:223478 -k1,22382:29485143,44237054:223478 -k1,22382:30394782,44237054:223477 -k1,22382:31896867,44237054:223478 -k1,22382:32583029,44237054:0 -) -(1,22383:6630773,45102134:25952256,513147,134348 -k1,22382:9800234,45102134:147596 -k1,22382:10607123,45102134:147597 -k1,22382:12326928,45102134:147596 -k1,22382:14487790,45102134:147596 -k1,22382:15294679,45102134:147597 -k1,22382:16626511,45102134:147596 -k1,22382:18934829,45102134:147596 -k1,22382:20366932,45102134:147597 -k1,22382:22187007,45102134:147596 -k1,22382:23446095,45102134:147597 -k1,22382:26528393,45102134:147596 -k1,22382:27292027,45102134:147596 -k1,22382:29041324,45102134:147597 -k1,22382:30886302,45102134:147596 -k1,22382:32583029,45102134:0 -) -] -(1,22385:32583029,45706769:0,0,0 -g1,22385:32583029,45706769 -) -) -] -(1,22385:6630773,47279633:25952256,0,0 -h1,22385:6630773,47279633:25952256,0,0 -) -] -(1,22385:4262630,4025873:0,0,0 -[1,22385:-473656,4025873:0,0,0 -(1,22385:-473656,-710413:0,0,0 -(1,22385:-473656,-710413:0,0,0 -g1,22385:-473656,-710413 -) -g1,22385:-473656,-710413 +[1,22383:3078558,4812305:0,0,0 +(1,22383:3078558,49800853:0,16384,2228224 +g1,22383:29030814,49800853 +g1,22383:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22383:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22383:37855564,49800853:1179648,16384,0 +) +) +k1,22383:3078556,49800853:-34777008 +) +] +g1,22383:6630773,4812305 +g1,22383:6630773,4812305 +g1,22383:9264009,4812305 +k1,22383:31387653,4812305:22123644 +) +) +] +[1,22383:6630773,45706769:25952256,40108032,0 +(1,22383:6630773,45706769:25952256,40108032,0 +(1,22383:6630773,45706769:0,0,0 +g1,22383:6630773,45706769 +) +[1,22383:6630773,45706769:25952256,40108032,0 +(1,22335:6630773,6254097:25952256,555811,139132 +(1,22335:6630773,6254097:2899444,534184,12975 +g1,22335:6630773,6254097 +g1,22335:9530217,6254097 +) +g1,22335:13805131,6254097 +k1,22335:32583029,6254097:16140860 +g1,22335:32583029,6254097 +) +(1,22338:6630773,7512393:25952256,513147,134348 +k1,22337:7715343,7512393:277167 +k1,22337:9921890,7512393:277167 +k1,22337:10554917,7512393:277167 +k1,22337:14711814,7512393:277166 +k1,22337:17751324,7512393:277167 +k1,22337:20188558,7512393:277167 +k1,22337:22675599,7512393:277167 +k1,22337:24680950,7512393:277167 +k1,22337:25416214,7512393:277167 +k1,22337:26309418,7512393:277166 +k1,22337:29257832,7512393:277167 +k1,22337:31316268,7512393:277167 +k1,22337:32051532,7512393:277167 +k1,22337:32583029,7512393:0 +) +(1,22338:6630773,8377473:25952256,513147,126483 +k1,22337:8222592,8377473:256851 +k1,22337:9130871,8377473:256851 +k1,22337:11317101,8377473:256850 +k1,22337:11929812,8377473:256851 +k1,22337:13469858,8377473:256851 +k1,22337:17607096,8377473:256851 +k1,22337:18546831,8377473:256850 +k1,22337:19159542,8377473:256851 +k1,22337:22251480,8377473:256851 +k1,22337:25433858,8377473:256851 +k1,22337:27677104,8377473:256850 +k1,22337:28620117,8377473:256851 +k1,22337:31966991,8377473:256851 +k1,22337:32583029,8377473:0 +) +(1,22338:6630773,9242553:25952256,505283,134348 +k1,22337:9121890,9242553:212430 +h1,22337:11063066,9242553:0,0,0 +k1,22337:11275496,9242553:212430 +k1,22337:12297297,9242553:212431 +k1,22337:14007880,9242553:212430 +h1,22337:15203257,9242553:0,0,0 +k1,22337:15589357,9242553:212430 +k1,22337:16429622,9242553:212430 +k1,22337:18344023,9242553:212431 +k1,22337:20253835,9242553:212430 +k1,22337:20924362,9242553:212430 +k1,22337:21668289,9242553:212430 +k1,22337:24241326,9242553:212430 +k1,22337:25105185,9242553:212431 +k1,22337:27191289,9242553:212430 +k1,22337:30596633,9242553:212430 +k1,22337:32583029,9242553:0 +) +(1,22338:6630773,10107633:25952256,513147,134348 +k1,22337:9370127,10107633:227359 +k1,22337:10545138,10107633:227360 +k1,22337:11128357,10107633:227359 +k1,22337:13228736,10107633:227360 +k1,22337:14907062,10107633:227359 +k1,22337:17175213,10107633:227360 +k1,22337:21182689,10107633:227359 +$1,22337:21182689,10107633 +$1,22337:21685350,10107633 +k1,22337:23378095,10107633:227360 +k1,22337:24789690,10107633:227359 +k1,22337:26861233,10107633:227360 +k1,22337:28080152,10107633:227359 +k1,22337:30805089,10107633:227360 +k1,22337:31793976,10107633:227359 +k1,22338:32583029,10107633:0 +) +(1,22338:6630773,10972713:25952256,505283,134348 +k1,22337:8734759,10972713:223758 +k1,22337:9977603,10972713:223759 +k1,22337:11453754,10972713:223758 +k1,22337:12861749,10972713:223759 +k1,22337:15103361,10972713:223758 +k1,22337:17110355,10972713:223759 +k1,22337:19876910,10972713:223758 +k1,22337:21119753,10972713:223758 +k1,22337:23187695,10972713:223759 +k1,22337:23869550,10972713:223758 +k1,22337:24624806,10972713:223759 +k1,22337:26134380,10972713:223758 +k1,22337:29467167,10972713:223759 +k1,22337:30342353,10972713:223758 +k1,22337:32583029,10972713:0 +) +(1,22338:6630773,11837793:25952256,513147,134348 +g1,22337:8338641,11837793 +g1,22337:12529013,11837793 +g1,22337:13414404,11837793 +g1,22337:17431105,11837793 +g1,22337:18161831,11837793 +g1,22337:20720356,11837793 +g1,22337:21571013,11837793 +g1,22337:22789327,11837793 +g1,22337:26515048,11837793 +g1,22337:27373569,11837793 +g1,22337:28591883,11837793 +k1,22338:32583029,11837793:2712539 +g1,22338:32583029,11837793 +) +v1,22340:6630773,12522648:0,393216,0 +(1,22348:6630773,15609357:25952256,3479925,196608 +g1,22348:6630773,15609357 +g1,22348:6630773,15609357 +g1,22348:6434165,15609357 +(1,22348:6434165,15609357:0,3479925,196608 +r1,22383:32779637,15609357:26345472,3676533,196608 +k1,22348:6434165,15609357:-26345472 +) +(1,22348:6434165,15609357:26345472,3479925,196608 +[1,22348:6630773,15609357:25952256,3283317,0 +(1,22342:6630773,12757085:25952256,431045,112852 +(1,22341:6630773,12757085:0,0,0 +g1,22341:6630773,12757085 +g1,22341:6630773,12757085 +g1,22341:6303093,12757085 +(1,22341:6303093,12757085:0,0,0 +) +g1,22341:6630773,12757085 +) +k1,22342:6630773,12757085:0 +g1,22342:10614221,12757085 +g1,22342:11278129,12757085 +k1,22342:11278129,12757085:0 +h1,22342:14929622,12757085:0,0,0 +k1,22342:32583030,12757085:17653408 +g1,22342:32583030,12757085 +) +(1,22343:6630773,13441940:25952256,424439,112852 +h1,22343:6630773,13441940:0,0,0 +g1,22343:6962727,13441940 +g1,22343:7294681,13441940 +g1,22343:7626635,13441940 +g1,22343:7958589,13441940 +g1,22343:8290543,13441940 +g1,22343:8622497,13441940 +g1,22343:8954451,13441940 +g1,22343:11610083,13441940 +g1,22343:12273991,13441940 +g1,22343:14265715,13441940 +g1,22343:14929623,13441940 +g1,22343:15593531,13441940 +g1,22343:16257439,13441940 +g1,22343:18249163,13441940 +g1,22343:18913071,13441940 +g1,22343:19576979,13441940 +g1,22343:20904795,13441940 +h1,22343:21236749,13441940:0,0,0 +k1,22343:32583029,13441940:11346280 +g1,22343:32583029,13441940 +) +(1,22344:6630773,14126795:25952256,424439,112852 +h1,22344:6630773,14126795:0,0,0 +g1,22344:6962727,14126795 +g1,22344:7294681,14126795 +g1,22344:11610082,14126795 +h1,22344:11942036,14126795:0,0,0 +k1,22344:32583028,14126795:20640992 +g1,22344:32583028,14126795 +) +(1,22345:6630773,14811650:25952256,424439,106246 +h1,22345:6630773,14811650:0,0,0 +g1,22345:6962727,14811650 +g1,22345:7294681,14811650 +g1,22345:15925484,14811650 +g1,22345:16589392,14811650 +g1,22345:24556287,14811650 +g1,22345:25220195,14811650 +g1,22345:26548011,14811650 +h1,22345:26879965,14811650:0,0,0 +k1,22345:32583029,14811650:5703064 +g1,22345:32583029,14811650 +) +(1,22346:6630773,15496505:25952256,424439,112852 +h1,22346:6630773,15496505:0,0,0 +g1,22346:6962727,15496505 +g1,22346:7294681,15496505 +g1,22346:13269852,15496505 +g1,22346:13933760,15496505 +g1,22346:20240885,15496505 +g1,22346:20904793,15496505 +g1,22346:22232609,15496505 +g1,22346:24224333,15496505 +g1,22346:24888241,15496505 +g1,22346:25884103,15496505 +g1,22346:27875827,15496505 +g1,22346:28539735,15496505 +h1,22346:29535597,15496505:0,0,0 +k1,22346:32583029,15496505:3047432 +g1,22346:32583029,15496505 +) +] +) +g1,22348:32583029,15609357 +g1,22348:6630773,15609357 +g1,22348:6630773,15609357 +g1,22348:32583029,15609357 +g1,22348:32583029,15609357 +) +h1,22348:6630773,15805965:0,0,0 +(1,22351:6630773,25506079:25952256,9634578,0 +k1,22351:13183781,25506079:6553008 +h1,22350:13183781,25506079:0,0,0 +(1,22350:13183781,25506079:12846240,9634578,0 +(1,22350:13183781,25506079:12846136,9634602,0 +(1,22350:13183781,25506079:12846136,9634602,0 +(1,22350:13183781,25506079:0,9634602,0 +(1,22350:13183781,25506079:0,14208860,0 +(1,22350:13183781,25506079:18945146,14208860,0 +) +k1,22350:13183781,25506079:-18945146 +) +) +g1,22350:26029917,25506079 +) +) +) +g1,22351:26030021,25506079 +k1,22351:32583029,25506079:6553008 +) +v1,22358:6630773,26371159:0,393216,0 +(1,22359:6630773,28468822:25952256,2490879,0 +g1,22359:6630773,28468822 +g1,22359:6237557,28468822 +r1,22383:6368629,28468822:131072,2490879,0 +g1,22359:6567858,28468822 +g1,22359:6764466,28468822 +[1,22359:6764466,28468822:25818563,2490879,0 +(1,22359:6764466,26643636:25818563,665693,196608 +(1,22358:6764466,26643636:0,665693,196608 +r1,22383:7868133,26643636:1103667,862301,196608 +k1,22358:6764466,26643636:-1103667 +) +(1,22358:6764466,26643636:1103667,665693,196608 +) +k1,22358:8114545,26643636:246412 +k1,22358:9840763,26643636:327680 +k1,22358:11384788,26643636:246412 +k1,22358:13025151,26643636:246412 +k1,22358:14290648,26643636:246412 +k1,22358:16033247,26643636:246412 +k1,22358:16895697,26643636:246412 +k1,22358:18161195,26643636:246413 +k1,22358:19555798,26643636:246412 +k1,22358:21772878,26643636:246412 +k1,22358:24048285,26643636:246412 +k1,22358:27547249,26643636:246412 +k1,22358:28812746,26643636:246412 +k1,22358:31069803,26643636:246412 +k1,22358:32583029,26643636:0 +) +(1,22359:6764466,27508716:25818563,513147,134348 +k1,22358:7864868,27508716:152751 +(1,22358:7864868,27508716:0,452978,122846 +r1,22383:9629981,27508716:1765113,575824,122846 +k1,22358:7864868,27508716:-1765113 +) +(1,22358:7864868,27508716:1765113,452978,122846 +k1,22358:7864868,27508716:3277 +h1,22358:9626704,27508716:0,411205,112570 +) +k1,22358:9956402,27508716:152751 +(1,22358:9956402,27508716:0,452978,122846 +r1,22383:11721515,27508716:1765113,575824,122846 +k1,22358:9956402,27508716:-1765113 +) +(1,22358:9956402,27508716:1765113,452978,122846 +k1,22358:9956402,27508716:3277 +h1,22358:11718238,27508716:0,411205,112570 +) +k1,22358:11874266,27508716:152751 +k1,22358:13218462,27508716:152751 +(1,22358:13218462,27508716:0,452978,122846 +r1,22383:14983575,27508716:1765113,575824,122846 +k1,22358:13218462,27508716:-1765113 +) +(1,22358:13218462,27508716:1765113,452978,122846 +k1,22358:13218462,27508716:3277 +h1,22358:14980298,27508716:0,411205,112570 +) +k1,22358:15309996,27508716:152751 +k1,22358:17829251,27508716:152750 +k1,22358:18973562,27508716:152751 +k1,22358:22323815,27508716:152751 +k1,22358:23092604,27508716:152751 +k1,22358:25874659,27508716:152751 +k1,22358:27218855,27508716:152751 +k1,22358:31189078,27508716:152751 +k1,22358:32583029,27508716:0 +) +(1,22359:6764466,28373796:25818563,505283,95026 +g1,22358:8956645,28373796 +g1,22358:11791077,28373796 +g1,22358:12388765,28373796 +g1,22358:13779439,28373796 +k1,22359:32583028,28373796:18145608 +g1,22359:32583028,28373796 +) +] +g1,22359:32583029,28468822 +) +h1,22359:6630773,28468822:0,0,0 +(1,22362:6630773,29333902:25952256,513147,134348 +h1,22361:6630773,29333902:983040,0,0 +k1,22361:8316209,29333902:214808 +k1,22361:9744104,29333902:214824 +k1,22361:12260552,29333902:214824 +k1,22361:15459886,29333902:214824 +k1,22361:16206206,29333902:214823 +k1,22361:17072458,29333902:214824 +k1,22361:18379767,29333902:214824 +k1,22361:18950451,29333902:214824 +k1,22361:21517362,29333902:214824 +k1,22361:23063222,29333902:214824 +k1,22361:24720492,29333902:214823 +k1,22361:27030502,29333902:214824 +(1,22361:27030502,29333902:0,452978,115847 +r1,22383:29499039,29333902:2468537,568825,115847 +k1,22361:27030502,29333902:-2468537 +) +(1,22361:27030502,29333902:2468537,452978,115847 +k1,22361:27030502,29333902:3277 +h1,22361:29495762,29333902:0,411205,112570 +) +k1,22361:29887533,29333902:214824 +k1,22362:32583029,29333902:0 +) +(1,22362:6630773,30198982:25952256,505283,126483 +(1,22361:6630773,30198982:0,452978,115847 +r1,22383:8395886,30198982:1765113,568825,115847 +k1,22361:6630773,30198982:-1765113 +) +(1,22361:6630773,30198982:1765113,452978,115847 +k1,22361:6630773,30198982:3277 +h1,22361:8392609,30198982:0,411205,112570 +) +k1,22361:8673007,30198982:277121 +k1,22361:10054410,30198982:277121 +k1,22361:11079297,30198982:277121 +k1,22361:12869644,30198982:277121 +k1,22361:13798193,30198982:277121 +k1,22361:15009857,30198982:277121 +k1,22361:16555755,30198982:277121 +k1,22361:19192173,30198982:277122 +k1,22361:20120722,30198982:277121 +k1,22361:21416928,30198982:277121 +k1,22361:23127977,30198982:277121 +k1,22361:24847545,30198982:277121 +k1,22361:25752501,30198982:277121 +k1,22361:27232863,30198982:277121 +k1,22361:30345071,30198982:277121 +k1,22361:31490544,30198982:277121 +k1,22362:32583029,30198982:0 +) +(1,22362:6630773,31064062:25952256,513147,134348 +(1,22361:6630773,31064062:0,452978,115847 +r1,22383:10506157,31064062:3875384,568825,115847 +k1,22361:6630773,31064062:-3875384 +) +(1,22361:6630773,31064062:3875384,452978,115847 +k1,22361:6630773,31064062:3277 +h1,22361:10502880,31064062:0,411205,112570 +) +g1,22361:10705386,31064062 +g1,22361:11629443,31064062 +g1,22361:12514834,31064062 +g1,22361:13365491,31064062 +g1,22361:15805396,31064062 +g1,22361:17023710,31064062 +g1,22361:18491716,31064062 +g1,22361:19350237,31064062 +g1,22361:20733702,31064062 +g1,22361:22777114,31064062 +g1,22361:24351944,31064062 +g1,22361:25498824,31064062 +g1,22361:26717138,31064062 +$1,22361:26717138,31064062 +$1,22361:27219799,31064062 +g1,22361:27419028,31064062 +k1,22362:32583029,31064062:3859180 +g1,22362:32583029,31064062 +) +v1,22364:6630773,31748917:0,393216,0 +(1,22371:6630773,34117741:25952256,2762040,196608 +g1,22371:6630773,34117741 +g1,22371:6630773,34117741 +g1,22371:6434165,34117741 +(1,22371:6434165,34117741:0,2762040,196608 +r1,22383:32779637,34117741:26345472,2958648,196608 +k1,22371:6434165,34117741:-26345472 +) +(1,22371:6434165,34117741:26345472,2762040,196608 +[1,22371:6630773,34117741:25952256,2565432,0 +(1,22366:6630773,31983354:25952256,431045,112852 +(1,22365:6630773,31983354:0,0,0 +g1,22365:6630773,31983354 +g1,22365:6630773,31983354 +g1,22365:6303093,31983354 +(1,22365:6303093,31983354:0,0,0 +) +g1,22365:6630773,31983354 +) +k1,22366:6630773,31983354:0 +g1,22366:12937898,31983354 +g1,22366:14929622,31983354 +g1,22366:15593530,31983354 +g1,22366:17253300,31983354 +g1,22366:18581116,31983354 +h1,22366:18913070,31983354:0,0,0 +k1,22366:32583029,31983354:13669959 +g1,22366:32583029,31983354 +) +(1,22367:6630773,32668209:25952256,424439,112852 +h1,22367:6630773,32668209:0,0,0 +g1,22367:6962727,32668209 +g1,22367:7294681,32668209 +g1,22367:11610082,32668209 +h1,22367:11942036,32668209:0,0,0 +k1,22367:32583028,32668209:20640992 +g1,22367:32583028,32668209 +) +(1,22368:6630773,33353064:25952256,424439,106246 +h1,22368:6630773,33353064:0,0,0 +g1,22368:6962727,33353064 +g1,22368:7294681,33353064 +g1,22368:15925484,33353064 +g1,22368:16589392,33353064 +g1,22368:24556287,33353064 +g1,22368:25220195,33353064 +g1,22368:26879965,33353064 +h1,22368:27211919,33353064:0,0,0 +k1,22368:32583029,33353064:5371110 +g1,22368:32583029,33353064 +) +(1,22369:6630773,34037919:25952256,424439,79822 +h1,22369:6630773,34037919:0,0,0 +g1,22369:6962727,34037919 +g1,22369:7294681,34037919 +g1,22369:13269852,34037919 +g1,22369:13933760,34037919 +g1,22369:19908931,34037919 +g1,22369:20572839,34037919 +k1,22369:20572839,34037919:0 +h1,22369:23892379,34037919:0,0,0 +k1,22369:32583029,34037919:8690650 +g1,22369:32583029,34037919 +) +] +) +g1,22371:32583029,34117741 +g1,22371:6630773,34117741 +g1,22371:6630773,34117741 +g1,22371:32583029,34117741 +g1,22371:32583029,34117741 +) +h1,22371:6630773,34314349:0,0,0 +(1,22375:6630773,35179429:25952256,513147,134348 +h1,22374:6630773,35179429:983040,0,0 +k1,22374:9999264,35179429:221452 +k1,22374:13633176,35179429:221452 +k1,22374:15839714,35179429:221452 +k1,22374:16417026,35179429:221452 +k1,22374:19817629,35179429:221452 +k1,22374:22710984,35179429:221452 +k1,22374:23677580,35179429:221452 +k1,22374:24550460,35179429:221452 +k1,22374:27034215,35179429:221452 +k1,22374:28274752,35179429:221452 +k1,22374:31923737,35179429:221452 +k1,22374:32583029,35179429:0 +) +(1,22375:6630773,36044509:25952256,513147,134348 +k1,22374:9062915,36044509:209161 +k1,22374:9931367,36044509:209160 +k1,22374:12342538,36044509:209161 +k1,22374:15594535,36044509:209160 +k1,22374:16489858,36044509:209161 +k1,22374:17977625,36044509:209160 +k1,22374:18872948,36044509:209161 +k1,22374:19741400,36044509:209160 +k1,22374:23143475,36044509:209161 +k1,22374:26395472,36044509:209160 +k1,22374:27232468,36044509:209161 +k1,22374:28460713,36044509:209160 +k1,22374:30640542,36044509:209161 +k1,22374:32583029,36044509:0 +) +(1,22375:6630773,36909589:25952256,513147,134348 +k1,22374:8523868,36909589:157702 +(1,22374:8523868,36909589:0,452978,115847 +r1,22383:11695828,36909589:3171960,568825,115847 +k1,22374:8523868,36909589:-3171960 +) +(1,22374:8523868,36909589:3171960,452978,115847 +k1,22374:8523868,36909589:3277 +h1,22374:11692551,36909589:0,411205,112570 +) +k1,22374:11853530,36909589:157702 +k1,22374:14338415,36909589:157702 +k1,22374:15163273,36909589:157702 +(1,22374:15163273,36909589:0,452978,115847 +r1,22383:19038657,36909589:3875384,568825,115847 +k1,22374:15163273,36909589:-3875384 +) +(1,22374:15163273,36909589:3875384,452978,115847 +k1,22374:15163273,36909589:3277 +h1,22374:19035380,36909589:0,411205,112570 +) +k1,22374:19370029,36909589:157702 +k1,22374:21483980,36909589:157701 +k1,22374:23116897,36909589:157702 +k1,22374:25821983,36909589:157702 +k1,22374:26998770,36909589:157702 +k1,22374:28340708,36909589:157702 +k1,22374:30342593,36909589:157702 +k1,22374:31116333,36909589:157702 +k1,22374:32583029,36909589:0 +) +(1,22375:6630773,37774669:25952256,505283,138281 +$1,22374:7133434,37774669 +g1,22374:7332663,37774669 +g1,22374:8723337,37774669 +$1,22374:8723337,37774669 +$1,22374:9275150,37774669 +g1,22374:9474379,37774669 +k1,22375:32583030,37774669:21657684 +g1,22375:32583030,37774669 +) +v1,22377:6630773,38639749:0,393216,0 +(1,22378:6630773,43371974:25952256,5125441,0 +g1,22378:6630773,43371974 +g1,22378:6237557,43371974 +r1,22383:6368629,43371974:131072,5125441,0 +g1,22378:6567858,43371974 +g1,22378:6764466,43371974 +[1,22378:6764466,43371974:25818563,5125441,0 +(1,22378:6764466,38912226:25818563,665693,196608 +(1,22377:6764466,38912226:0,665693,196608 +r1,22383:7868133,38912226:1103667,862301,196608 +k1,22377:6764466,38912226:-1103667 +) +(1,22377:6764466,38912226:1103667,665693,196608 +) +k1,22377:8072462,38912226:204329 +k1,22377:9798680,38912226:327680 +k1,22377:12208951,38912226:204329 +k1,22377:13432365,38912226:204329 +k1,22377:16298110,38912226:204328 +k1,22377:18531434,38912226:204329 +k1,22377:19460591,38912226:204329 +k1,22377:20949426,38912226:204329 +k1,22377:22172840,38912226:204329 +k1,22377:23561405,38912226:204329 +k1,22377:25609917,38912226:204329 +k1,22377:26623615,38912226:204328 +k1,22377:27847029,38912226:204329 +$1,22377:27847029,38912226 +$1,22377:28349690,38912226 +k1,22377:30019404,38912226:204329 +k1,22377:31215293,38912226:204329 +k1,22377:32583029,38912226:0 +) +(1,22378:6764466,39777306:25818563,513147,138281 +k1,22377:8251806,39777306:295895 +k1,22377:10291614,39777306:295895 +k1,22377:11396879,39777306:295895 +k1,22377:12711859,39777306:295895 +$1,22377:12711859,39777306 +$1,22377:13263672,39777306 +k1,22377:15024951,39777306:295894 +k1,22377:16550957,39777306:295895 +k1,22377:18038297,39777306:295895 +k1,22377:19353277,39777306:295895 +k1,22377:20980208,39777306:295895 +k1,22377:22544880,39777306:295895 +k1,22377:23372272,39777306:295895 +k1,22377:24687252,39777306:295895 +k1,22377:26636619,39777306:295894 +k1,22377:27880165,39777306:295895 +k1,22377:29642756,39777306:295895 +k1,22377:31510860,39777306:295895 +k1,22377:32583029,39777306:0 +) +(1,22378:6764466,40642386:25818563,513147,134348 +k1,22377:9625457,40642386:199574 +k1,22377:11392652,40642386:199574 +k1,22377:12611311,40642386:199574 +k1,22377:15250135,40642386:199574 +k1,22377:17921727,40642386:199574 +k1,22377:19140386,40642386:199574 +k1,22377:24166031,40642386:199574 +k1,22377:25313256,40642386:199574 +(1,22377:25313256,40642386:0,452978,115847 +r1,22383:27781793,40642386:2468537,568825,115847 +k1,22377:25313256,40642386:-2468537 +) +(1,22377:25313256,40642386:2468537,452978,115847 +k1,22377:25313256,40642386:3277 +h1,22377:27778516,40642386:0,411205,112570 +) +k1,22377:27981367,40642386:199574 +k1,22377:28832369,40642386:199574 +k1,22377:30298099,40642386:199574 +k1,22377:31563944,40642386:199574 +k1,22377:32583029,40642386:0 +) +(1,22378:6764466,41507466:25818563,513147,134348 +k1,22377:8985060,41507466:152278 +k1,22377:9796629,41507466:152277 +k1,22377:10967992,41507466:152278 +k1,22377:13989435,41507466:152277 +k1,22377:15426219,41507466:152278 +k1,22377:17108762,41507466:152277 +k1,22377:17912468,41507466:152278 +k1,22377:18812512,41507466:152278 +k1,22377:20659550,41507466:152277 +k1,22377:22095023,41507466:152278 +k1,22377:24431615,41507466:152277 +k1,22377:25625915,41507466:152278 +k1,22377:28943581,41507466:152277 +k1,22377:30120842,41507466:152278 +k1,22377:32583029,41507466:0 +) +(1,22378:6764466,42372546:25818563,513147,134348 +k1,22377:9363028,42372546:257616 +k1,22377:12431483,42372546:257616 +k1,22377:13613157,42372546:257616 +k1,22377:15404971,42372546:257616 +k1,22377:18308276,42372546:257616 +k1,22377:21697201,42372546:257615 +k1,22377:23146262,42372546:257616 +k1,22377:25557391,42372546:257616 +k1,22377:27615936,42372546:257616 +k1,22377:29064997,42372546:257616 +k1,22377:29772190,42372546:257616 +k1,22377:32583029,42372546:0 +) +(1,22378:6764466,43237626:25818563,505283,134348 +g1,22377:10046508,43237626 +g1,22377:12468063,43237626 +k1,22378:32583029,43237626:18261608 +g1,22378:32583029,43237626 +) +] +g1,22378:32583029,43371974 +) +h1,22378:6630773,43371974:0,0,0 +(1,22381:6630773,44237054:25952256,513147,134348 +h1,22380:6630773,44237054:983040,0,0 +k1,22380:11359196,44237054:223478 +k1,22380:12241965,44237054:223477 +k1,22380:14167413,44237054:223478 +k1,22380:15617070,44237054:223478 +k1,22380:18709713,44237054:223477 +k1,22380:20037473,44237054:223478 +k1,22380:21008717,44237054:223478 +k1,22380:24005678,44237054:223477 +k1,22380:24845194,44237054:223478 +k1,22380:25424531,44237054:223477 +k1,22380:27850019,44237054:223478 +k1,22380:29485143,44237054:223478 +k1,22380:30394782,44237054:223477 +k1,22380:31896867,44237054:223478 +k1,22380:32583029,44237054:0 +) +(1,22381:6630773,45102134:25952256,513147,134348 +k1,22380:9800234,45102134:147596 +k1,22380:10607123,45102134:147597 +k1,22380:12326928,45102134:147596 +k1,22380:14487790,45102134:147596 +k1,22380:15294679,45102134:147597 +k1,22380:16626511,45102134:147596 +k1,22380:18934829,45102134:147596 +k1,22380:20366932,45102134:147597 +k1,22380:22187007,45102134:147596 +k1,22380:23446095,45102134:147597 +k1,22380:26528393,45102134:147596 +k1,22380:27292027,45102134:147596 +k1,22380:29041324,45102134:147597 +k1,22380:30886302,45102134:147596 +k1,22380:32583029,45102134:0 +) +] +(1,22383:32583029,45706769:0,0,0 +g1,22383:32583029,45706769 +) +) +] +(1,22383:6630773,47279633:25952256,0,0 +h1,22383:6630773,47279633:25952256,0,0 +) +] +(1,22383:4262630,4025873:0,0,0 +[1,22383:-473656,4025873:0,0,0 +(1,22383:-473656,-710413:0,0,0 +(1,22383:-473656,-710413:0,0,0 +g1,22383:-473656,-710413 +) +g1,22383:-473656,-710413 ) ] ) ] !24368 -}382 -Input:4243:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4244:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4245:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4246:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}383 Input:4247:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4248:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4249:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4250:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4251:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4252:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4253:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{383 -[1,22484:4262630,47279633:28320399,43253760,0 -(1,22484:4262630,4025873:0,0,0 -[1,22484:-473656,4025873:0,0,0 -(1,22484:-473656,-710413:0,0,0 -(1,22484:-473656,-644877:0,0,0 -k1,22484:-473656,-644877:-65536 +{384 +[1,22482:4262630,47279633:28320399,43253760,0 +(1,22482:4262630,4025873:0,0,0 +[1,22482:-473656,4025873:0,0,0 +(1,22482:-473656,-710413:0,0,0 +(1,22482:-473656,-644877:0,0,0 +k1,22482:-473656,-644877:-65536 ) -(1,22484:-473656,4736287:0,0,0 -k1,22484:-473656,4736287:5209943 +(1,22482:-473656,4736287:0,0,0 +k1,22482:-473656,4736287:5209943 ) -g1,22484:-473656,-710413 +g1,22482:-473656,-710413 ) ] ) -[1,22484:6630773,47279633:25952256,43253760,0 -[1,22484:6630773,4812305:25952256,786432,0 -(1,22484:6630773,4812305:25952256,513147,126483 -(1,22484:6630773,4812305:25952256,513147,126483 -g1,22484:3078558,4812305 -[1,22484:3078558,4812305:0,0,0 -(1,22484:3078558,2439708:0,1703936,0 -k1,22484:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22484:2537886,2439708:1179648,16384,0 +[1,22482:6630773,47279633:25952256,43253760,0 +[1,22482:6630773,4812305:25952256,786432,0 +(1,22482:6630773,4812305:25952256,513147,126483 +(1,22482:6630773,4812305:25952256,513147,126483 +g1,22482:3078558,4812305 +[1,22482:3078558,4812305:0,0,0 +(1,22482:3078558,2439708:0,1703936,0 +k1,22482:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22482:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22484:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22482:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22484:3078558,4812305:0,0,0 -(1,22484:3078558,2439708:0,1703936,0 -g1,22484:29030814,2439708 -g1,22484:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22484:36151628,1915420:16384,1179648,0 +[1,22482:3078558,4812305:0,0,0 +(1,22482:3078558,2439708:0,1703936,0 +g1,22482:29030814,2439708 +g1,22482:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22482:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22484:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22482:37855564,2439708:1179648,16384,0 ) ) -k1,22484:3078556,2439708:-34777008 +k1,22482:3078556,2439708:-34777008 ) ] -[1,22484:3078558,4812305:0,0,0 -(1,22484:3078558,49800853:0,16384,2228224 -k1,22484:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22484:2537886,49800853:1179648,16384,0 +[1,22482:3078558,4812305:0,0,0 +(1,22482:3078558,49800853:0,16384,2228224 +k1,22482:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22482:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22484:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22482:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] -) +) ) ) ] -[1,22484:3078558,4812305:0,0,0 -(1,22484:3078558,49800853:0,16384,2228224 -g1,22484:29030814,49800853 -g1,22484:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22484:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22484:37855564,49800853:1179648,16384,0 -) -) -k1,22484:3078556,49800853:-34777008 -) -] -g1,22484:6630773,4812305 -k1,22484:21386205,4812305:13560055 -g1,22484:21999622,4812305 -g1,22484:25611966,4812305 -g1,22484:28956923,4812305 -g1,22484:29772190,4812305 -) -) -] -[1,22484:6630773,45706769:25952256,40108032,0 -(1,22484:6630773,45706769:25952256,40108032,0 -(1,22484:6630773,45706769:0,0,0 -g1,22484:6630773,45706769 -) -[1,22484:6630773,45706769:25952256,40108032,0 -(1,22383:6630773,6254097:25952256,513147,134348 -k1,22382:7801355,6254097:179022 -k1,22382:10369165,6254097:179023 -k1,22382:12636819,6254097:179022 -k1,22382:15685008,6254097:179023 -k1,22382:17148536,6254097:179022 -k1,22382:18319119,6254097:179023 -k1,22382:19833109,6254097:179022 -k1,22382:21429676,6254097:179023 -k1,22382:24889430,6254097:179022 -k1,22382:28693249,6254097:179023 -k1,22382:30137116,6254097:179022 -k1,22382:30975431,6254097:179023 -k1,22382:32583029,6254097:0 -) -(1,22383:6630773,7119177:25952256,505283,134348 -g1,22382:8021447,7119177 -g1,22382:9555644,7119177 -g1,22382:12334370,7119177 -g1,22382:13295127,7119177 -g1,22382:16066644,7119177 -g1,22382:16621733,7119177 -g1,22382:18104157,7119177 -k1,22383:32583029,7119177:12482646 -g1,22383:32583029,7119177 -) -v1,22385:6630773,7984257:0,393216,0 -(1,22386:6630773,11075022:25952256,3483981,0 -g1,22386:6630773,11075022 -g1,22386:6237557,11075022 -r1,22484:6368629,11075022:131072,3483981,0 -g1,22386:6567858,11075022 -g1,22386:6764466,11075022 -[1,22386:6764466,11075022:25818563,3483981,0 -(1,22386:6764466,8345434:25818563,754393,260573 -(1,22385:6764466,8345434:0,754393,260573 -r1,22484:7856192,8345434:1091726,1014966,260573 -k1,22385:6764466,8345434:-1091726 -) -(1,22385:6764466,8345434:1091726,754393,260573 -) -k1,22385:8071725,8345434:215533 -k1,22385:8399405,8345434:327680 -k1,22385:9092695,8345434:215533 -k1,22385:10478701,8345434:215533 -k1,22385:12160929,8345434:215532 -k1,22385:13573805,8345434:215533 -k1,22385:14145198,8345434:215533 -k1,22385:17165017,8345434:215533 -k1,22385:19324348,8345434:215533 -k1,22385:20731326,8345434:215533 -k1,22385:22495475,8345434:215533 -k1,22385:23362436,8345434:215533 -k1,22385:25840271,8345434:215532 -k1,22385:27747944,8345434:215533 -k1,22385:28622769,8345434:215533 -k1,22385:29626700,8345434:215533 -k1,22385:32583029,8345434:0 -) -(1,22386:6764466,9210514:25818563,513147,134348 -k1,22385:8112813,9210514:177874 -k1,22385:10471069,9210514:177873 -k1,22385:11846286,9210514:177874 -k1,22385:13043244,9210514:177873 -k1,22385:15103967,9210514:177874 -k1,22385:17268237,9210514:177874 -k1,22385:19488867,9210514:177873 -k1,22385:22919293,9210514:177874 -k1,22385:23555263,9210514:177873 -k1,22385:25127088,9210514:177874 -(1,22385:25127088,9210514:0,452978,115847 -r1,22484:29354184,9210514:4227096,568825,115847 -k1,22385:25127088,9210514:-4227096 -) -(1,22385:25127088,9210514:4227096,452978,115847 -g1,22385:25833789,9210514 -h1,22385:29350907,9210514:0,411205,112570 -) -k1,22385:29705727,9210514:177873 -k1,22385:31264445,9210514:177874 -k1,22385:32583029,9210514:0 -) -(1,22386:6764466,10075594:25818563,513147,134348 -k1,22385:8620490,10075594:211070 -k1,22385:11324549,10075594:211069 -k1,22385:13025908,10075594:211070 -k1,22385:14393687,10075594:211069 -k1,22385:15705762,10075594:211070 -k1,22385:16272691,10075594:211069 -k1,22385:18067766,10075594:211070 -k1,22385:20048307,10075594:211069 -k1,22385:20918669,10075594:211070 -k1,22385:22148823,10075594:211069 -k1,22385:25262483,10075594:211070 -k1,22385:26132844,10075594:211069 -k1,22385:29236673,10075594:211070 -k1,22385:30519911,10075594:211069 -k1,22385:31835263,10075594:211070 -k1,22385:32583029,10075594:0 -) -(1,22386:6764466,10940674:25818563,513147,134348 -g1,22385:7576457,10940674 -g1,22385:9081819,10940674 -k1,22386:32583029,10940674:19137168 -g1,22386:32583029,10940674 -) -] -g1,22386:32583029,11075022 -) -h1,22386:6630773,11075022:0,0,0 -(1,22389:6630773,11940102:25952256,513147,134348 -h1,22388:6630773,11940102:983040,0,0 -k1,22388:8228440,11940102:144734 -k1,22388:8904670,11940102:144733 -k1,22388:10335220,11940102:144734 -k1,22388:13109914,11940102:144734 -k1,22388:13906075,11940102:144733 -k1,22388:16313112,11940102:144734 -k1,22388:17476931,11940102:144734 -k1,22388:19887245,11940102:144734 -k1,22388:22018374,11940102:144733 -k1,22388:23676334,11940102:144734 -k1,22388:24768719,11940102:144734 -k1,22388:28010683,11940102:144733 -k1,22388:28921533,11940102:144734 -k1,22388:32583029,11940102:0 -) -(1,22389:6630773,12805182:25952256,505283,126483 -k1,22389:32583028,12805182:24292228 -g1,22389:32583028,12805182 -) -v1,22391:6630773,13490037:0,393216,0 -(1,22395:6630773,13824114:25952256,727293,196608 -g1,22395:6630773,13824114 -g1,22395:6630773,13824114 -g1,22395:6434165,13824114 -(1,22395:6434165,13824114:0,727293,196608 -r1,22484:32779637,13824114:26345472,923901,196608 -k1,22395:6434165,13824114:-26345472 -) -(1,22395:6434165,13824114:26345472,727293,196608 -[1,22395:6630773,13824114:25952256,530685,0 -(1,22393:6630773,13717868:25952256,424439,106246 -(1,22392:6630773,13717868:0,0,0 -g1,22392:6630773,13717868 -g1,22392:6630773,13717868 -g1,22392:6303093,13717868 -(1,22392:6303093,13717868:0,0,0 -) -g1,22392:6630773,13717868 -) -g1,22393:9950312,13717868 -g1,22393:10946174,13717868 -g1,22393:16921345,13717868 -g1,22393:17585253,13717868 -g1,22393:24224332,13717868 -g1,22393:24888240,13717868 -h1,22393:28539733,13717868:0,0,0 -k1,22393:32583029,13717868:4043296 -g1,22393:32583029,13717868 -) -] -) -g1,22395:32583029,13824114 -g1,22395:6630773,13824114 -g1,22395:6630773,13824114 -g1,22395:32583029,13824114 -g1,22395:32583029,13824114 -) -h1,22395:6630773,14020722:0,0,0 -(1,22399:6630773,14885802:25952256,513147,134348 -h1,22398:6630773,14885802:983040,0,0 -k1,22398:9993533,14885802:171157 -k1,22398:11976104,14885802:171156 -k1,22398:13166346,14885802:171157 -k1,22398:16091980,14885802:171156 -k1,22398:18528717,14885802:171157 -k1,22398:19351301,14885802:171156 -(1,22398:19351301,14885802:0,452978,115847 -r1,22484:22523261,14885802:3171960,568825,115847 -k1,22398:19351301,14885802:-3171960 -) -(1,22398:19351301,14885802:3171960,452978,115847 -k1,22398:19351301,14885802:3277 -h1,22398:22519984,14885802:0,411205,112570 -) -k1,22398:22694418,14885802:171157 -k1,22398:23323672,14885802:171157 -k1,22398:24599110,14885802:171156 -k1,22398:25518033,14885802:171157 -k1,22398:28363058,14885802:171156 -k1,22398:30232253,14885802:171157 -k1,22399:32583029,14885802:0 -k1,22399:32583029,14885802:0 -) -v1,22401:6630773,15570657:0,393216,0 -(1,22405:6630773,15878310:25952256,700869,196608 -g1,22405:6630773,15878310 -g1,22405:6630773,15878310 -g1,22405:6434165,15878310 -(1,22405:6434165,15878310:0,700869,196608 -r1,22484:32779637,15878310:26345472,897477,196608 -k1,22405:6434165,15878310:-26345472 -) -(1,22405:6434165,15878310:26345472,700869,196608 -[1,22405:6630773,15878310:25952256,504261,0 -(1,22403:6630773,15798488:25952256,424439,79822 -(1,22402:6630773,15798488:0,0,0 -g1,22402:6630773,15798488 -g1,22402:6630773,15798488 -g1,22402:6303093,15798488 -(1,22402:6303093,15798488:0,0,0 -) -g1,22402:6630773,15798488 -) -k1,22403:6630773,15798488:0 -h1,22403:13269851,15798488:0,0,0 -k1,22403:32583029,15798488:19313178 -g1,22403:32583029,15798488 -) -] -) -g1,22405:32583029,15878310 -g1,22405:6630773,15878310 -g1,22405:6630773,15878310 -g1,22405:32583029,15878310 -g1,22405:32583029,15878310 -) -h1,22405:6630773,16074918:0,0,0 -(1,22409:6630773,18191736:25952256,564462,147783 -(1,22409:6630773,18191736:2899444,534184,12975 -g1,22409:6630773,18191736 -g1,22409:9530217,18191736 -) -g1,22409:12826154,18191736 -g1,22409:13451892,18191736 -g1,22409:15187810,18191736 -k1,22409:32583029,18191736:15135931 -g1,22409:32583029,18191736 -) -(1,22412:6630773,19450032:25952256,513147,134348 -k1,22411:9296886,19450032:193440 -k1,22411:10594609,19450032:193441 -k1,22411:11535815,19450032:193440 -k1,22411:14110834,19450032:193441 -k1,22411:15770971,19450032:193441 -k1,22411:17532032,19450032:193440 -k1,22411:20212563,19450032:193440 -k1,22411:21088889,19450032:193441 -k1,22411:22043857,19450032:193440 -k1,22411:25489850,19450032:193441 -k1,22411:28174314,19450032:193441 -k1,22411:30179169,19450032:193440 -k1,22411:32583029,19450032:0 -) -(1,22412:6630773,20315112:25952256,513147,134348 -k1,22411:8043125,20315112:220907 -k1,22411:10297613,20315112:220906 -k1,22411:11537605,20315112:220907 -k1,22411:14593599,20315112:220907 -k1,22411:17321912,20315112:220906 -k1,22411:18360708,20315112:220907 -k1,22411:21710959,20315112:220907 -k1,22411:23960861,20315112:220907 -k1,22411:24639864,20315112:220906 -k1,22411:25392268,20315112:220907 -k1,22411:26898991,20315112:220907 -k1,22411:29749857,20315112:220906 -k1,22411:30622192,20315112:220907 -k1,22411:32583029,20315112:0 -) -(1,22412:6630773,21180192:25952256,513147,126483 -g1,22411:7185862,21180192 -g1,22411:8841956,21180192 -g1,22411:13621496,21180192 -g1,22411:15807121,21180192 -g1,22411:19713066,21180192 -k1,22412:32583029,21180192:10122039 -g1,22412:32583029,21180192 -) -(1,22414:6630773,22045272:25952256,513147,126483 -h1,22413:6630773,22045272:983040,0,0 -k1,22413:9865018,22045272:152087 -k1,22413:10885457,22045272:152087 -k1,22413:12434116,22045272:152087 -k1,22413:13237631,22045272:152087 -k1,22413:15446238,22045272:152087 -k1,22413:17326509,22045272:152087 -k1,22413:18497681,22045272:152087 -k1,22413:19932964,22045272:152088 -k1,22413:22245118,22045272:152087 -k1,22413:24051989,22045272:152087 -k1,22413:24735573,22045272:152087 -k1,22413:27174867,22045272:152087 -k1,22413:28136324,22045272:152087 -k1,22413:29818677,22045272:152087 -k1,22413:30622192,22045272:152087 -k1,22413:32583029,22045272:0 -) -(1,22414:6630773,22910352:25952256,513147,126483 -k1,22413:7174107,22910352:187474 -k1,22413:8644776,22910352:187474 -k1,22413:11701415,22910352:187473 -k1,22413:12842438,22910352:187474 -k1,22413:14134194,22910352:187474 -k1,22413:16460108,22910352:187474 -k1,22413:18038256,22910352:187474 -k1,22413:19244814,22910352:187473 -k1,22413:22267375,22910352:187474 -k1,22413:24441245,22910352:187474 -k1,22413:25280147,22910352:187474 -k1,22413:25823481,22910352:187474 -k1,22413:28522295,22910352:187474 -k1,22413:29901213,22910352:187473 -k1,22413:31286030,22910352:187474 -k1,22413:31931601,22910352:187474 -k1,22413:32583029,22910352:0 -) -(1,22414:6630773,23775432:25952256,513147,134348 -k1,22413:9562501,23775432:169385 -k1,22413:11339485,23775432:169386 -k1,22413:12195032,23775432:169385 -k1,22413:14836436,23775432:169386 -k1,22413:15823710,23775432:169385 -k1,22413:16861447,23775432:169385 -k1,22413:18163295,23775432:169386 -k1,22413:19080446,23775432:169385 -k1,22413:21437423,23775432:169385 -k1,22413:21962669,23775432:169386 -k1,22413:26361092,23775432:169385 -k1,22413:28516874,23775432:169386 -k1,22413:30645785,23775432:169385 -k1,22413:32583029,23775432:0 -) -(1,22414:6630773,24640512:25952256,513147,126483 -g1,22413:8272449,24640512 -g1,22413:8827538,24640512 -g1,22413:11895933,24640512 -g1,22413:12963514,24640512 -g1,22413:13978011,24640512 -g1,22413:15243511,24640512 -g1,22413:16535225,24640512 -k1,22414:32583029,24640512:12141203 -g1,22414:32583029,24640512 -) -v1,22416:6630773,25325367:0,393216,0 -(1,22421:6630773,26344299:25952256,1412148,196608 -g1,22421:6630773,26344299 -g1,22421:6630773,26344299 -g1,22421:6434165,26344299 -(1,22421:6434165,26344299:0,1412148,196608 -r1,22484:32779637,26344299:26345472,1608756,196608 -k1,22421:6434165,26344299:-26345472 -) -(1,22421:6434165,26344299:26345472,1412148,196608 -[1,22421:6630773,26344299:25952256,1215540,0 -(1,22418:6630773,25553198:25952256,424439,106246 -(1,22417:6630773,25553198:0,0,0 -g1,22417:6630773,25553198 -g1,22417:6630773,25553198 -g1,22417:6303093,25553198 -(1,22417:6303093,25553198:0,0,0 -) -g1,22417:6630773,25553198 -) -g1,22418:9618358,25553198 -g1,22418:10614220,25553198 -g1,22418:14929621,25553198 -g1,22418:15593529,25553198 -g1,22418:19245023,25553198 -g1,22418:19908931,25553198 -g1,22418:26548010,25553198 -g1,22418:27211918,25553198 -h1,22418:30863411,25553198:0,0,0 -k1,22418:32583029,25553198:1719618 -g1,22418:32583029,25553198 -) -(1,22419:6630773,26238053:25952256,424439,106246 -h1,22419:6630773,26238053:0,0,0 -g1,22419:8954451,26238053 -g1,22419:9618359,26238053 -h1,22419:12273990,26238053:0,0,0 -k1,22419:32583030,26238053:20309040 -g1,22419:32583030,26238053 -) -] -) -g1,22421:32583029,26344299 -g1,22421:6630773,26344299 -g1,22421:6630773,26344299 -g1,22421:32583029,26344299 -g1,22421:32583029,26344299 -) -h1,22421:6630773,26540907:0,0,0 -(1,22424:6630773,36241021:25952256,9634578,0 -k1,22424:13183781,36241021:6553008 -h1,22423:13183781,36241021:0,0,0 -(1,22423:13183781,36241021:12846240,9634578,0 -(1,22423:13183781,36241021:12846136,9634602,0 -(1,22423:13183781,36241021:12846136,9634602,0 -(1,22423:13183781,36241021:0,9634602,0 -(1,22423:13183781,36241021:0,14208860,0 -(1,22423:13183781,36241021:18945146,14208860,0 -) -k1,22423:13183781,36241021:-18945146 -) -) -g1,22423:26029917,36241021 -) -) -) -g1,22424:26030021,36241021 -k1,22424:32583029,36241021:6553008 -) -v1,22431:6630773,37106101:0,393216,0 -(1,22484:6630773,45334467:25952256,8621582,0 -g1,22484:6630773,45334467 -g1,22484:6237557,45334467 -r1,22484:6368629,45334467:131072,8621582,0 -g1,22484:6567858,45334467 -g1,22484:6764466,45334467 -[1,22484:6764466,45334467:25818563,8621582,0 -(1,22432:6764466,37414399:25818563,701514,196608 -(1,22431:6764466,37414399:0,701514,196608 -r1,22484:7761522,37414399:997056,898122,196608 -k1,22431:6764466,37414399:-997056 -) -(1,22431:6764466,37414399:997056,701514,196608 -) -k1,22431:8024596,37414399:263074 -k1,22431:8352276,37414399:327680 -k1,22431:11309536,37414399:263075 -k1,22431:11928470,37414399:263074 -k1,22431:13474739,37414399:263074 -k1,22431:15724210,37414399:263075 -k1,22431:19694000,37414399:263074 -k1,22431:22159085,37414399:263075 -k1,22431:23073587,37414399:263074 -k1,22431:25080574,37414399:263074 -k1,22431:26911270,37414399:263075 -k1,22431:29754496,37414399:263074 -k1,22431:32583029,37414399:0 -) -(1,22432:6764466,38279479:25818563,513147,134348 -k1,22431:8022617,38279479:153869 -k1,22431:8924252,38279479:153869 -k1,22431:10754532,38279479:153869 -k1,22431:13033079,38279479:153870 -k1,22431:13652909,38279479:153869 -k1,22431:14825863,38279479:153869 -k1,22431:17550709,38279479:153869 -k1,22431:18696138,38279479:153869 -k1,22431:20156795,38279479:153869 -k1,22431:21128553,38279479:153869 -k1,22431:22301508,38279479:153870 -k1,22431:27512135,38279479:153869 -k1,22431:29783472,38279479:153869 -k1,22431:30596633,38279479:153869 -k1,22431:32583029,38279479:0 -) -(1,22432:6764466,39144559:25818563,513147,134348 -k1,22431:9267135,39144559:212841 -k1,22431:10816910,39144559:212841 -k1,22431:13270426,39144559:212840 -k1,22431:14099305,39144559:212841 -k1,22431:16299198,39144559:212841 -k1,22431:19176078,39144559:212841 -k1,22431:20048210,39144559:212840 -k1,22431:23263254,39144559:212841 -k1,22431:24495180,39144559:212841 -k1,22431:26593492,39144559:212841 -k1,22431:29790842,39144559:212840 -k1,22431:30535180,39144559:212841 -k1,22431:31399449,39144559:212841 -k1,22431:32583029,39144559:0 -) -(1,22432:6764466,40009639:25818563,513147,134348 -k1,22431:8389322,40009639:249255 -k1,22431:9447948,40009639:249256 -k1,22431:10716288,40009639:249255 -k1,22431:12941453,40009639:249255 -k1,22431:16000892,40009639:249255 -k1,22431:16909440,40009639:249256 -k1,22431:18177780,40009639:249255 -k1,22431:21180858,40009639:249255 -k1,22431:22626800,40009639:249255 -k1,22431:25901853,40009639:249256 -k1,22431:28992094,40009639:249255 -k1,22431:30002877,40009639:249255 -k1,22431:32583029,40009639:0 -) -(1,22432:6764466,40874719:25818563,513147,134348 -k1,22431:9798509,40874719:257283 -k1,22431:11160075,40874719:257284 -k1,22431:12165124,40874719:257283 -k1,22431:15197202,40874719:257284 -k1,22431:17370102,40874719:257283 -k1,22431:17983246,40874719:257284 -k1,22431:19523724,40874719:257283 -k1,22431:22476503,40874719:257283 -k1,22431:24018293,40874719:257284 -k1,22431:27020224,40874719:257283 -k1,22431:28296593,40874719:257284 -k1,22431:30540272,40874719:257283 -k1,22431:32583029,40874719:0 -) -(1,22432:6764466,41739799:25818563,513147,134348 -k1,22431:9989136,41739799:223776 -k1,22431:10844678,41739799:223775 -k1,22431:12265141,41739799:223776 -k1,22431:15472771,41739799:223776 -k1,22431:19481250,41739799:223775 -k1,22431:20364318,41739799:223776 -k1,22431:21607178,41739799:223775 -k1,22431:24605748,41739799:223776 -k1,22431:27525020,41739799:223776 -k1,22431:28853077,41739799:223775 -k1,22431:29824619,41739799:223776 -k1,22431:32583029,41739799:0 -) -(1,22432:6764466,42604879:25818563,513147,134348 -k1,22431:7579165,42604879:198661 -k1,22431:8796912,42604879:198662 -k1,22431:10278768,42604879:198661 -k1,22431:11634140,42604879:198662 -k1,22431:13024246,42604879:198661 -k1,22431:14241993,42604879:198662 -k1,22431:17843283,42604879:198661 -k1,22431:20247232,42604879:198662 -k1,22431:22190461,42604879:198661 -k1,22431:23040551,42604879:198662 -k1,22431:24258297,42604879:198661 -k1,22431:27231753,42604879:198662 -k1,22431:30299580,42604879:198661 -k1,22431:31184404,42604879:198662 -k1,22431:31914562,42604879:198661 -k1,22431:32583029,42604879:0 -) -(1,22432:6764466,43469959:25818563,513147,126483 -k1,22431:9960165,43469959:186941 -k1,22431:10624864,43469959:186942 -k1,22431:13110153,43469959:186941 -k1,22431:16524087,43469959:186941 -k1,22431:20322063,43469959:186942 -k1,22431:21613286,43469959:186941 -k1,22431:22547993,43469959:186941 -k1,22431:25314432,43469959:186942 -k1,22431:26262901,43469959:186941 -k1,22431:27946029,43469959:186941 -k1,22431:28749009,43469959:186942 -k1,22431:29955035,43469959:186941 -k1,22431:32583029,43469959:0 -) -(1,22432:6764466,44335039:25818563,513147,134348 -k1,22431:9814050,44335039:180418 -k1,22431:12035260,44335039:180419 -k1,22431:12571538,44335039:180418 -k1,22431:15394368,44335039:180418 -k1,22431:16384156,44335039:180418 -(1,22431:16384156,44335039:0,452978,122846 -r1,22484:20611252,44335039:4227096,575824,122846 -k1,22431:16384156,44335039:-4227096 -) -(1,22431:16384156,44335039:4227096,452978,122846 -k1,22431:16384156,44335039:3277 -h1,22431:20607975,44335039:0,411205,112570 -) -k1,22431:20791671,44335039:180419 -k1,22431:21503586,44335039:180418 -k1,22431:25475917,44335039:180418 -k1,22431:28511084,44335039:180419 -k1,22431:29047362,44335039:180418 -k1,22431:32583029,44335039:0 -) -(1,22432:6764466,45200119:25818563,513147,134348 -k1,22431:10016644,45200119:268324 -k1,22431:11357138,45200119:268325 -k1,22431:13813054,45200119:268324 -k1,22431:14437239,45200119:268325 -k1,22431:15988758,45200119:268324 -k1,22431:17691011,45200119:268325 -k1,22431:21413738,45200119:268324 -(1,22431:21413738,45200119:0,452978,115847 -r1,22484:25289122,45200119:3875384,568825,115847 -k1,22431:21413738,45200119:-3875384 -) -(1,22431:21413738,45200119:3875384,452978,115847 -k1,22431:21413738,45200119:3277 -h1,22431:25285845,45200119:0,411205,112570 -) -k1,22431:25731117,45200119:268325 -k1,22431:26486960,45200119:268255 -k1,22431:29517628,45200119:268325 -k1,22431:32051532,45200119:268324 -k1,22431:32583029,45200119:0 -) -] -g1,22484:32583029,45334467 -) -] -(1,22484:32583029,45706769:0,0,0 -g1,22484:32583029,45706769 -) -) -] -(1,22484:6630773,47279633:25952256,0,0 -h1,22484:6630773,47279633:25952256,0,0 -) -] -(1,22484:4262630,4025873:0,0,0 -[1,22484:-473656,4025873:0,0,0 -(1,22484:-473656,-710413:0,0,0 -(1,22484:-473656,-710413:0,0,0 -g1,22484:-473656,-710413 -) -g1,22484:-473656,-710413 +[1,22482:3078558,4812305:0,0,0 +(1,22482:3078558,49800853:0,16384,2228224 +g1,22482:29030814,49800853 +g1,22482:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22482:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22482:37855564,49800853:1179648,16384,0 +) +) +k1,22482:3078556,49800853:-34777008 +) +] +g1,22482:6630773,4812305 +k1,22482:21386205,4812305:13560055 +g1,22482:21999622,4812305 +g1,22482:25611966,4812305 +g1,22482:28956923,4812305 +g1,22482:29772190,4812305 +) +) +] +[1,22482:6630773,45706769:25952256,40108032,0 +(1,22482:6630773,45706769:25952256,40108032,0 +(1,22482:6630773,45706769:0,0,0 +g1,22482:6630773,45706769 +) +[1,22482:6630773,45706769:25952256,40108032,0 +(1,22381:6630773,6254097:25952256,513147,134348 +k1,22380:7801355,6254097:179022 +k1,22380:10369165,6254097:179023 +k1,22380:12636819,6254097:179022 +k1,22380:15685008,6254097:179023 +k1,22380:17148536,6254097:179022 +k1,22380:18319119,6254097:179023 +k1,22380:19833109,6254097:179022 +k1,22380:21429676,6254097:179023 +k1,22380:24889430,6254097:179022 +k1,22380:28693249,6254097:179023 +k1,22380:30137116,6254097:179022 +k1,22380:30975431,6254097:179023 +k1,22380:32583029,6254097:0 +) +(1,22381:6630773,7119177:25952256,505283,134348 +g1,22380:8021447,7119177 +g1,22380:9555644,7119177 +g1,22380:12334370,7119177 +g1,22380:13295127,7119177 +g1,22380:16066644,7119177 +g1,22380:16621733,7119177 +g1,22380:18104157,7119177 +k1,22381:32583029,7119177:12482646 +g1,22381:32583029,7119177 +) +v1,22383:6630773,7984257:0,393216,0 +(1,22384:6630773,11075022:25952256,3483981,0 +g1,22384:6630773,11075022 +g1,22384:6237557,11075022 +r1,22482:6368629,11075022:131072,3483981,0 +g1,22384:6567858,11075022 +g1,22384:6764466,11075022 +[1,22384:6764466,11075022:25818563,3483981,0 +(1,22384:6764466,8345434:25818563,754393,260573 +(1,22383:6764466,8345434:0,754393,260573 +r1,22482:7856192,8345434:1091726,1014966,260573 +k1,22383:6764466,8345434:-1091726 +) +(1,22383:6764466,8345434:1091726,754393,260573 +) +k1,22383:8071725,8345434:215533 +k1,22383:8399405,8345434:327680 +k1,22383:9092695,8345434:215533 +k1,22383:10478701,8345434:215533 +k1,22383:12160929,8345434:215532 +k1,22383:13573805,8345434:215533 +k1,22383:14145198,8345434:215533 +k1,22383:17165017,8345434:215533 +k1,22383:19324348,8345434:215533 +k1,22383:20731326,8345434:215533 +k1,22383:22495475,8345434:215533 +k1,22383:23362436,8345434:215533 +k1,22383:25840271,8345434:215532 +k1,22383:27747944,8345434:215533 +k1,22383:28622769,8345434:215533 +k1,22383:29626700,8345434:215533 +k1,22383:32583029,8345434:0 +) +(1,22384:6764466,9210514:25818563,513147,134348 +k1,22383:8112813,9210514:177874 +k1,22383:10471069,9210514:177873 +k1,22383:11846286,9210514:177874 +k1,22383:13043244,9210514:177873 +k1,22383:15103967,9210514:177874 +k1,22383:17268237,9210514:177874 +k1,22383:19488867,9210514:177873 +k1,22383:22919293,9210514:177874 +k1,22383:23555263,9210514:177873 +k1,22383:25127088,9210514:177874 +(1,22383:25127088,9210514:0,452978,115847 +r1,22482:29354184,9210514:4227096,568825,115847 +k1,22383:25127088,9210514:-4227096 +) +(1,22383:25127088,9210514:4227096,452978,115847 +g1,22383:25833789,9210514 +h1,22383:29350907,9210514:0,411205,112570 +) +k1,22383:29705727,9210514:177873 +k1,22383:31264445,9210514:177874 +k1,22383:32583029,9210514:0 +) +(1,22384:6764466,10075594:25818563,513147,134348 +k1,22383:8620490,10075594:211070 +k1,22383:11324549,10075594:211069 +k1,22383:13025908,10075594:211070 +k1,22383:14393687,10075594:211069 +k1,22383:15705762,10075594:211070 +k1,22383:16272691,10075594:211069 +k1,22383:18067766,10075594:211070 +k1,22383:20048307,10075594:211069 +k1,22383:20918669,10075594:211070 +k1,22383:22148823,10075594:211069 +k1,22383:25262483,10075594:211070 +k1,22383:26132844,10075594:211069 +k1,22383:29236673,10075594:211070 +k1,22383:30519911,10075594:211069 +k1,22383:31835263,10075594:211070 +k1,22383:32583029,10075594:0 +) +(1,22384:6764466,10940674:25818563,513147,134348 +g1,22383:7576457,10940674 +g1,22383:9081819,10940674 +k1,22384:32583029,10940674:19137168 +g1,22384:32583029,10940674 +) +] +g1,22384:32583029,11075022 +) +h1,22384:6630773,11075022:0,0,0 +(1,22387:6630773,11940102:25952256,513147,134348 +h1,22386:6630773,11940102:983040,0,0 +k1,22386:8228440,11940102:144734 +k1,22386:8904670,11940102:144733 +k1,22386:10335220,11940102:144734 +k1,22386:13109914,11940102:144734 +k1,22386:13906075,11940102:144733 +k1,22386:16313112,11940102:144734 +k1,22386:17476931,11940102:144734 +k1,22386:19887245,11940102:144734 +k1,22386:22018374,11940102:144733 +k1,22386:23676334,11940102:144734 +k1,22386:24768719,11940102:144734 +k1,22386:28010683,11940102:144733 +k1,22386:28921533,11940102:144734 +k1,22386:32583029,11940102:0 +) +(1,22387:6630773,12805182:25952256,505283,126483 +k1,22387:32583028,12805182:24292228 +g1,22387:32583028,12805182 +) +v1,22389:6630773,13490037:0,393216,0 +(1,22393:6630773,13824114:25952256,727293,196608 +g1,22393:6630773,13824114 +g1,22393:6630773,13824114 +g1,22393:6434165,13824114 +(1,22393:6434165,13824114:0,727293,196608 +r1,22482:32779637,13824114:26345472,923901,196608 +k1,22393:6434165,13824114:-26345472 +) +(1,22393:6434165,13824114:26345472,727293,196608 +[1,22393:6630773,13824114:25952256,530685,0 +(1,22391:6630773,13717868:25952256,424439,106246 +(1,22390:6630773,13717868:0,0,0 +g1,22390:6630773,13717868 +g1,22390:6630773,13717868 +g1,22390:6303093,13717868 +(1,22390:6303093,13717868:0,0,0 +) +g1,22390:6630773,13717868 +) +g1,22391:9950312,13717868 +g1,22391:10946174,13717868 +g1,22391:16921345,13717868 +g1,22391:17585253,13717868 +g1,22391:24224332,13717868 +g1,22391:24888240,13717868 +h1,22391:28539733,13717868:0,0,0 +k1,22391:32583029,13717868:4043296 +g1,22391:32583029,13717868 +) +] +) +g1,22393:32583029,13824114 +g1,22393:6630773,13824114 +g1,22393:6630773,13824114 +g1,22393:32583029,13824114 +g1,22393:32583029,13824114 +) +h1,22393:6630773,14020722:0,0,0 +(1,22397:6630773,14885802:25952256,513147,134348 +h1,22396:6630773,14885802:983040,0,0 +k1,22396:9993533,14885802:171157 +k1,22396:11976104,14885802:171156 +k1,22396:13166346,14885802:171157 +k1,22396:16091980,14885802:171156 +k1,22396:18528717,14885802:171157 +k1,22396:19351301,14885802:171156 +(1,22396:19351301,14885802:0,452978,115847 +r1,22482:22523261,14885802:3171960,568825,115847 +k1,22396:19351301,14885802:-3171960 +) +(1,22396:19351301,14885802:3171960,452978,115847 +k1,22396:19351301,14885802:3277 +h1,22396:22519984,14885802:0,411205,112570 +) +k1,22396:22694418,14885802:171157 +k1,22396:23323672,14885802:171157 +k1,22396:24599110,14885802:171156 +k1,22396:25518033,14885802:171157 +k1,22396:28363058,14885802:171156 +k1,22396:30232253,14885802:171157 +k1,22397:32583029,14885802:0 +k1,22397:32583029,14885802:0 +) +v1,22399:6630773,15570657:0,393216,0 +(1,22403:6630773,15878310:25952256,700869,196608 +g1,22403:6630773,15878310 +g1,22403:6630773,15878310 +g1,22403:6434165,15878310 +(1,22403:6434165,15878310:0,700869,196608 +r1,22482:32779637,15878310:26345472,897477,196608 +k1,22403:6434165,15878310:-26345472 +) +(1,22403:6434165,15878310:26345472,700869,196608 +[1,22403:6630773,15878310:25952256,504261,0 +(1,22401:6630773,15798488:25952256,424439,79822 +(1,22400:6630773,15798488:0,0,0 +g1,22400:6630773,15798488 +g1,22400:6630773,15798488 +g1,22400:6303093,15798488 +(1,22400:6303093,15798488:0,0,0 +) +g1,22400:6630773,15798488 +) +k1,22401:6630773,15798488:0 +h1,22401:13269851,15798488:0,0,0 +k1,22401:32583029,15798488:19313178 +g1,22401:32583029,15798488 +) +] +) +g1,22403:32583029,15878310 +g1,22403:6630773,15878310 +g1,22403:6630773,15878310 +g1,22403:32583029,15878310 +g1,22403:32583029,15878310 +) +h1,22403:6630773,16074918:0,0,0 +(1,22407:6630773,18191736:25952256,564462,147783 +(1,22407:6630773,18191736:2899444,534184,12975 +g1,22407:6630773,18191736 +g1,22407:9530217,18191736 +) +g1,22407:12826154,18191736 +g1,22407:13451892,18191736 +g1,22407:15187810,18191736 +k1,22407:32583029,18191736:15135931 +g1,22407:32583029,18191736 +) +(1,22410:6630773,19450032:25952256,513147,134348 +k1,22409:9296886,19450032:193440 +k1,22409:10594609,19450032:193441 +k1,22409:11535815,19450032:193440 +k1,22409:14110834,19450032:193441 +k1,22409:15770971,19450032:193441 +k1,22409:17532032,19450032:193440 +k1,22409:20212563,19450032:193440 +k1,22409:21088889,19450032:193441 +k1,22409:22043857,19450032:193440 +k1,22409:25489850,19450032:193441 +k1,22409:28174314,19450032:193441 +k1,22409:30179169,19450032:193440 +k1,22409:32583029,19450032:0 +) +(1,22410:6630773,20315112:25952256,513147,134348 +k1,22409:8043125,20315112:220907 +k1,22409:10297613,20315112:220906 +k1,22409:11537605,20315112:220907 +k1,22409:14593599,20315112:220907 +k1,22409:17321912,20315112:220906 +k1,22409:18360708,20315112:220907 +k1,22409:21710959,20315112:220907 +k1,22409:23960861,20315112:220907 +k1,22409:24639864,20315112:220906 +k1,22409:25392268,20315112:220907 +k1,22409:26898991,20315112:220907 +k1,22409:29749857,20315112:220906 +k1,22409:30622192,20315112:220907 +k1,22409:32583029,20315112:0 +) +(1,22410:6630773,21180192:25952256,513147,126483 +g1,22409:7185862,21180192 +g1,22409:8841956,21180192 +g1,22409:13621496,21180192 +g1,22409:15807121,21180192 +g1,22409:19713066,21180192 +k1,22410:32583029,21180192:10122039 +g1,22410:32583029,21180192 +) +(1,22412:6630773,22045272:25952256,513147,126483 +h1,22411:6630773,22045272:983040,0,0 +k1,22411:9865018,22045272:152087 +k1,22411:10885457,22045272:152087 +k1,22411:12434116,22045272:152087 +k1,22411:13237631,22045272:152087 +k1,22411:15446238,22045272:152087 +k1,22411:17326509,22045272:152087 +k1,22411:18497681,22045272:152087 +k1,22411:19932964,22045272:152088 +k1,22411:22245118,22045272:152087 +k1,22411:24051989,22045272:152087 +k1,22411:24735573,22045272:152087 +k1,22411:27174867,22045272:152087 +k1,22411:28136324,22045272:152087 +k1,22411:29818677,22045272:152087 +k1,22411:30622192,22045272:152087 +k1,22411:32583029,22045272:0 +) +(1,22412:6630773,22910352:25952256,513147,126483 +k1,22411:7174107,22910352:187474 +k1,22411:8644776,22910352:187474 +k1,22411:11701415,22910352:187473 +k1,22411:12842438,22910352:187474 +k1,22411:14134194,22910352:187474 +k1,22411:16460108,22910352:187474 +k1,22411:18038256,22910352:187474 +k1,22411:19244814,22910352:187473 +k1,22411:22267375,22910352:187474 +k1,22411:24441245,22910352:187474 +k1,22411:25280147,22910352:187474 +k1,22411:25823481,22910352:187474 +k1,22411:28522295,22910352:187474 +k1,22411:29901213,22910352:187473 +k1,22411:31286030,22910352:187474 +k1,22411:31931601,22910352:187474 +k1,22411:32583029,22910352:0 +) +(1,22412:6630773,23775432:25952256,513147,134348 +k1,22411:9562501,23775432:169385 +k1,22411:11339485,23775432:169386 +k1,22411:12195032,23775432:169385 +k1,22411:14836436,23775432:169386 +k1,22411:15823710,23775432:169385 +k1,22411:16861447,23775432:169385 +k1,22411:18163295,23775432:169386 +k1,22411:19080446,23775432:169385 +k1,22411:21437423,23775432:169385 +k1,22411:21962669,23775432:169386 +k1,22411:26361092,23775432:169385 +k1,22411:28516874,23775432:169386 +k1,22411:30645785,23775432:169385 +k1,22411:32583029,23775432:0 +) +(1,22412:6630773,24640512:25952256,513147,126483 +g1,22411:8272449,24640512 +g1,22411:8827538,24640512 +g1,22411:11895933,24640512 +g1,22411:12963514,24640512 +g1,22411:13978011,24640512 +g1,22411:15243511,24640512 +g1,22411:16535225,24640512 +k1,22412:32583029,24640512:12141203 +g1,22412:32583029,24640512 +) +v1,22414:6630773,25325367:0,393216,0 +(1,22419:6630773,26344299:25952256,1412148,196608 +g1,22419:6630773,26344299 +g1,22419:6630773,26344299 +g1,22419:6434165,26344299 +(1,22419:6434165,26344299:0,1412148,196608 +r1,22482:32779637,26344299:26345472,1608756,196608 +k1,22419:6434165,26344299:-26345472 +) +(1,22419:6434165,26344299:26345472,1412148,196608 +[1,22419:6630773,26344299:25952256,1215540,0 +(1,22416:6630773,25553198:25952256,424439,106246 +(1,22415:6630773,25553198:0,0,0 +g1,22415:6630773,25553198 +g1,22415:6630773,25553198 +g1,22415:6303093,25553198 +(1,22415:6303093,25553198:0,0,0 +) +g1,22415:6630773,25553198 +) +g1,22416:9618358,25553198 +g1,22416:10614220,25553198 +g1,22416:14929621,25553198 +g1,22416:15593529,25553198 +g1,22416:19245023,25553198 +g1,22416:19908931,25553198 +g1,22416:26548010,25553198 +g1,22416:27211918,25553198 +h1,22416:30863411,25553198:0,0,0 +k1,22416:32583029,25553198:1719618 +g1,22416:32583029,25553198 +) +(1,22417:6630773,26238053:25952256,424439,106246 +h1,22417:6630773,26238053:0,0,0 +g1,22417:8954451,26238053 +g1,22417:9618359,26238053 +h1,22417:12273990,26238053:0,0,0 +k1,22417:32583030,26238053:20309040 +g1,22417:32583030,26238053 +) +] +) +g1,22419:32583029,26344299 +g1,22419:6630773,26344299 +g1,22419:6630773,26344299 +g1,22419:32583029,26344299 +g1,22419:32583029,26344299 +) +h1,22419:6630773,26540907:0,0,0 +(1,22422:6630773,36241021:25952256,9634578,0 +k1,22422:13183781,36241021:6553008 +h1,22421:13183781,36241021:0,0,0 +(1,22421:13183781,36241021:12846240,9634578,0 +(1,22421:13183781,36241021:12846136,9634602,0 +(1,22421:13183781,36241021:12846136,9634602,0 +(1,22421:13183781,36241021:0,9634602,0 +(1,22421:13183781,36241021:0,14208860,0 +(1,22421:13183781,36241021:18945146,14208860,0 +) +k1,22421:13183781,36241021:-18945146 +) +) +g1,22421:26029917,36241021 +) +) +) +g1,22422:26030021,36241021 +k1,22422:32583029,36241021:6553008 +) +v1,22429:6630773,37106101:0,393216,0 +(1,22482:6630773,45334467:25952256,8621582,0 +g1,22482:6630773,45334467 +g1,22482:6237557,45334467 +r1,22482:6368629,45334467:131072,8621582,0 +g1,22482:6567858,45334467 +g1,22482:6764466,45334467 +[1,22482:6764466,45334467:25818563,8621582,0 +(1,22430:6764466,37414399:25818563,701514,196608 +(1,22429:6764466,37414399:0,701514,196608 +r1,22482:7761522,37414399:997056,898122,196608 +k1,22429:6764466,37414399:-997056 +) +(1,22429:6764466,37414399:997056,701514,196608 +) +k1,22429:8024596,37414399:263074 +k1,22429:8352276,37414399:327680 +k1,22429:11309536,37414399:263075 +k1,22429:11928470,37414399:263074 +k1,22429:13474739,37414399:263074 +k1,22429:15724210,37414399:263075 +k1,22429:19694000,37414399:263074 +k1,22429:22159085,37414399:263075 +k1,22429:23073587,37414399:263074 +k1,22429:25080574,37414399:263074 +k1,22429:26911270,37414399:263075 +k1,22429:29754496,37414399:263074 +k1,22429:32583029,37414399:0 +) +(1,22430:6764466,38279479:25818563,513147,134348 +k1,22429:8022617,38279479:153869 +k1,22429:8924252,38279479:153869 +k1,22429:10754532,38279479:153869 +k1,22429:13033079,38279479:153870 +k1,22429:13652909,38279479:153869 +k1,22429:14825863,38279479:153869 +k1,22429:17550709,38279479:153869 +k1,22429:18696138,38279479:153869 +k1,22429:20156795,38279479:153869 +k1,22429:21128553,38279479:153869 +k1,22429:22301508,38279479:153870 +k1,22429:27512135,38279479:153869 +k1,22429:29783472,38279479:153869 +k1,22429:30596633,38279479:153869 +k1,22429:32583029,38279479:0 +) +(1,22430:6764466,39144559:25818563,513147,134348 +k1,22429:9267135,39144559:212841 +k1,22429:10816910,39144559:212841 +k1,22429:13270426,39144559:212840 +k1,22429:14099305,39144559:212841 +k1,22429:16299198,39144559:212841 +k1,22429:19176078,39144559:212841 +k1,22429:20048210,39144559:212840 +k1,22429:23263254,39144559:212841 +k1,22429:24495180,39144559:212841 +k1,22429:26593492,39144559:212841 +k1,22429:29790842,39144559:212840 +k1,22429:30535180,39144559:212841 +k1,22429:31399449,39144559:212841 +k1,22429:32583029,39144559:0 +) +(1,22430:6764466,40009639:25818563,513147,134348 +k1,22429:8389322,40009639:249255 +k1,22429:9447948,40009639:249256 +k1,22429:10716288,40009639:249255 +k1,22429:12941453,40009639:249255 +k1,22429:16000892,40009639:249255 +k1,22429:16909440,40009639:249256 +k1,22429:18177780,40009639:249255 +k1,22429:21180858,40009639:249255 +k1,22429:22626800,40009639:249255 +k1,22429:25901853,40009639:249256 +k1,22429:28992094,40009639:249255 +k1,22429:30002877,40009639:249255 +k1,22429:32583029,40009639:0 +) +(1,22430:6764466,40874719:25818563,513147,134348 +k1,22429:9798509,40874719:257283 +k1,22429:11160075,40874719:257284 +k1,22429:12165124,40874719:257283 +k1,22429:15197202,40874719:257284 +k1,22429:17370102,40874719:257283 +k1,22429:17983246,40874719:257284 +k1,22429:19523724,40874719:257283 +k1,22429:22476503,40874719:257283 +k1,22429:24018293,40874719:257284 +k1,22429:27020224,40874719:257283 +k1,22429:28296593,40874719:257284 +k1,22429:30540272,40874719:257283 +k1,22429:32583029,40874719:0 +) +(1,22430:6764466,41739799:25818563,513147,134348 +k1,22429:9989136,41739799:223776 +k1,22429:10844678,41739799:223775 +k1,22429:12265141,41739799:223776 +k1,22429:15472771,41739799:223776 +k1,22429:19481250,41739799:223775 +k1,22429:20364318,41739799:223776 +k1,22429:21607178,41739799:223775 +k1,22429:24605748,41739799:223776 +k1,22429:27525020,41739799:223776 +k1,22429:28853077,41739799:223775 +k1,22429:29824619,41739799:223776 +k1,22429:32583029,41739799:0 +) +(1,22430:6764466,42604879:25818563,513147,134348 +k1,22429:7579165,42604879:198661 +k1,22429:8796912,42604879:198662 +k1,22429:10278768,42604879:198661 +k1,22429:11634140,42604879:198662 +k1,22429:13024246,42604879:198661 +k1,22429:14241993,42604879:198662 +k1,22429:17843283,42604879:198661 +k1,22429:20247232,42604879:198662 +k1,22429:22190461,42604879:198661 +k1,22429:23040551,42604879:198662 +k1,22429:24258297,42604879:198661 +k1,22429:27231753,42604879:198662 +k1,22429:30299580,42604879:198661 +k1,22429:31184404,42604879:198662 +k1,22429:31914562,42604879:198661 +k1,22429:32583029,42604879:0 +) +(1,22430:6764466,43469959:25818563,513147,126483 +k1,22429:9960165,43469959:186941 +k1,22429:10624864,43469959:186942 +k1,22429:13110153,43469959:186941 +k1,22429:16524087,43469959:186941 +k1,22429:20322063,43469959:186942 +k1,22429:21613286,43469959:186941 +k1,22429:22547993,43469959:186941 +k1,22429:25314432,43469959:186942 +k1,22429:26262901,43469959:186941 +k1,22429:27946029,43469959:186941 +k1,22429:28749009,43469959:186942 +k1,22429:29955035,43469959:186941 +k1,22429:32583029,43469959:0 +) +(1,22430:6764466,44335039:25818563,513147,134348 +k1,22429:9814050,44335039:180418 +k1,22429:12035260,44335039:180419 +k1,22429:12571538,44335039:180418 +k1,22429:15394368,44335039:180418 +k1,22429:16384156,44335039:180418 +(1,22429:16384156,44335039:0,452978,122846 +r1,22482:20611252,44335039:4227096,575824,122846 +k1,22429:16384156,44335039:-4227096 +) +(1,22429:16384156,44335039:4227096,452978,122846 +k1,22429:16384156,44335039:3277 +h1,22429:20607975,44335039:0,411205,112570 +) +k1,22429:20791671,44335039:180419 +k1,22429:21503586,44335039:180418 +k1,22429:25475917,44335039:180418 +k1,22429:28511084,44335039:180419 +k1,22429:29047362,44335039:180418 +k1,22429:32583029,44335039:0 +) +(1,22430:6764466,45200119:25818563,513147,134348 +k1,22429:10016644,45200119:268324 +k1,22429:11357138,45200119:268325 +k1,22429:13813054,45200119:268324 +k1,22429:14437239,45200119:268325 +k1,22429:15988758,45200119:268324 +k1,22429:17691011,45200119:268325 +k1,22429:21413738,45200119:268324 +(1,22429:21413738,45200119:0,452978,115847 +r1,22482:25289122,45200119:3875384,568825,115847 +k1,22429:21413738,45200119:-3875384 +) +(1,22429:21413738,45200119:3875384,452978,115847 +k1,22429:21413738,45200119:3277 +h1,22429:25285845,45200119:0,411205,112570 +) +k1,22429:25731117,45200119:268325 +k1,22429:26486960,45200119:268255 +k1,22429:29517628,45200119:268325 +k1,22429:32051532,45200119:268324 +k1,22429:32583029,45200119:0 +) +] +g1,22482:32583029,45334467 +) +] +(1,22482:32583029,45706769:0,0,0 +g1,22482:32583029,45706769 +) +) +] +(1,22482:6630773,47279633:25952256,0,0 +h1,22482:6630773,47279633:25952256,0,0 +) +] +(1,22482:4262630,4025873:0,0,0 +[1,22482:-473656,4025873:0,0,0 +(1,22482:-473656,-710413:0,0,0 +(1,22482:-473656,-710413:0,0,0 +g1,22482:-473656,-710413 +) +g1,22482:-473656,-710413 ) ] ) ] !21713 -}383 -Input:4253:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}384 +Input:4257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{384 -[1,22492:4262630,47279633:28320399,43253760,0 -(1,22492:4262630,4025873:0,0,0 -[1,22492:-473656,4025873:0,0,0 -(1,22492:-473656,-710413:0,0,0 -(1,22492:-473656,-644877:0,0,0 -k1,22492:-473656,-644877:-65536 +{385 +[1,22490:4262630,47279633:28320399,43253760,0 +(1,22490:4262630,4025873:0,0,0 +[1,22490:-473656,4025873:0,0,0 +(1,22490:-473656,-710413:0,0,0 +(1,22490:-473656,-644877:0,0,0 +k1,22490:-473656,-644877:-65536 ) -(1,22492:-473656,4736287:0,0,0 -k1,22492:-473656,4736287:5209943 +(1,22490:-473656,4736287:0,0,0 +k1,22490:-473656,4736287:5209943 ) -g1,22492:-473656,-710413 +g1,22490:-473656,-710413 ) ] ) -[1,22492:6630773,47279633:25952256,43253760,0 -[1,22492:6630773,4812305:25952256,786432,0 -(1,22492:6630773,4812305:25952256,505283,134348 -(1,22492:6630773,4812305:25952256,505283,134348 -g1,22492:3078558,4812305 -[1,22492:3078558,4812305:0,0,0 -(1,22492:3078558,2439708:0,1703936,0 -k1,22492:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22492:2537886,2439708:1179648,16384,0 +[1,22490:6630773,47279633:25952256,43253760,0 +[1,22490:6630773,4812305:25952256,786432,0 +(1,22490:6630773,4812305:25952256,505283,134348 +(1,22490:6630773,4812305:25952256,505283,134348 +g1,22490:3078558,4812305 +[1,22490:3078558,4812305:0,0,0 +(1,22490:3078558,2439708:0,1703936,0 +k1,22490:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22490:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22492:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22490:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22492:3078558,4812305:0,0,0 -(1,22492:3078558,2439708:0,1703936,0 -g1,22492:29030814,2439708 -g1,22492:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22492:36151628,1915420:16384,1179648,0 +[1,22490:3078558,4812305:0,0,0 +(1,22490:3078558,2439708:0,1703936,0 +g1,22490:29030814,2439708 +g1,22490:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22490:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22492:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22490:37855564,2439708:1179648,16384,0 ) ) -k1,22492:3078556,2439708:-34777008 +k1,22490:3078556,2439708:-34777008 ) ] -[1,22492:3078558,4812305:0,0,0 -(1,22492:3078558,49800853:0,16384,2228224 -k1,22492:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22492:2537886,49800853:1179648,16384,0 +[1,22490:3078558,4812305:0,0,0 +(1,22490:3078558,49800853:0,16384,2228224 +k1,22490:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22490:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22492:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22490:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22492:3078558,4812305:0,0,0 -(1,22492:3078558,49800853:0,16384,2228224 -g1,22492:29030814,49800853 -g1,22492:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22492:36151628,51504789:16384,1179648,0 +[1,22490:3078558,4812305:0,0,0 +(1,22490:3078558,49800853:0,16384,2228224 +g1,22490:29030814,49800853 +g1,22490:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22490:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22492:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22490:37855564,49800853:1179648,16384,0 ) ) -k1,22492:3078556,49800853:-34777008 -) -] -g1,22492:6630773,4812305 -g1,22492:6630773,4812305 -g1,22492:10334867,4812305 -g1,22492:11990961,4812305 -k1,22492:31387653,4812305:19396692 -) -) -] -[1,22492:6630773,45706769:25952256,40108032,0 -(1,22492:6630773,45706769:25952256,40108032,0 -(1,22492:6630773,45706769:0,0,0 -g1,22492:6630773,45706769 -) -[1,22492:6630773,45706769:25952256,40108032,0 -v1,22484:6630773,6254097:0,393216,0 -(1,22484:6630773,37175771:25952256,31314890,0 -g1,22484:6630773,37175771 -g1,22484:6237557,37175771 -r1,22492:6368629,37175771:131072,31314890,0 -g1,22484:6567858,37175771 -g1,22484:6764466,37175771 -[1,22484:6764466,37175771:25818563,31314890,0 -(1,22432:6764466,6374028:25818563,513147,134348 -k1,22431:8550673,6374028:272981 -k1,22431:9771305,6374028:272981 -(1,22431:9771305,6374028:0,459977,115847 -r1,22492:13646689,6374028:3875384,575824,115847 -k1,22431:9771305,6374028:-3875384 -) -(1,22431:9771305,6374028:3875384,459977,115847 -k1,22431:9771305,6374028:3277 -h1,22431:13643412,6374028:0,411205,112570 -) -k1,22431:14093341,6374028:272982 -k1,22431:15563009,6374028:272981 -k1,22431:16936995,6374028:272981 -k1,22431:18997143,6374028:272981 -k1,22431:19801621,6374028:272981 -k1,22431:22502056,6374028:272981 -(1,22431:22502056,6374028:0,452978,115847 -r1,22492:27784288,6374028:5282232,568825,115847 -k1,22431:22502056,6374028:-5282232 -) -(1,22431:22502056,6374028:5282232,452978,115847 -g1,22431:25670740,6374028 -g1,22431:26374164,6374028 -h1,22431:27781011,6374028:0,411205,112570 -) -k1,22431:28057270,6374028:272982 -k1,22431:28981679,6374028:272981 -(1,22431:28981679,6374028:0,452978,115847 -r1,22492:31450216,6374028:2468537,568825,115847 -k1,22431:28981679,6374028:-2468537 -) -(1,22431:28981679,6374028:2468537,452978,115847 -k1,22431:28981679,6374028:3277 -h1,22431:31446939,6374028:0,411205,112570 -) -k1,22431:31896867,6374028:272981 -k1,22431:32583029,6374028:0 -) -(1,22432:6764466,7239108:25818563,513147,134348 -k1,22431:8156098,7239108:188391 -k1,22431:9661763,7239108:188391 -k1,22431:10869239,7239108:188391 -k1,22431:13836356,7239108:188390 -k1,22431:16011143,7239108:188391 -k1,22431:16885696,7239108:188391 -k1,22431:18812102,7239108:188391 -k1,22431:21054391,7239108:188391 -k1,22431:22004310,7239108:188391 -k1,22431:23972002,7239108:188390 -k1,22431:26993514,7239108:188391 -k1,22431:27797943,7239108:188391 -k1,22431:31923737,7239108:188391 -k1,22431:32583029,7239108:0 -) -(1,22432:6764466,8104188:25818563,505283,126483 -g1,22431:8095502,8104188 -g1,22431:10281127,8104188 -g1,22431:12814748,8104188 -g1,22431:13630015,8104188 -g1,22431:14185104,8104188 -g1,22431:15661630,8104188 -g1,22431:17558897,8104188 -g1,22431:18216223,8104188 -g1,22431:18946949,8104188 -k1,22432:32583029,8104188:11618227 -g1,22432:32583029,8104188 -) -v1,22434:6764466,8789043:0,393216,0 -(1,22456:6764466,21424086:25818563,13028259,196608 -g1,22456:6764466,21424086 -g1,22456:6764466,21424086 -g1,22456:6567858,21424086 -(1,22456:6567858,21424086:0,13028259,196608 -r1,22492:32779637,21424086:26211779,13224867,196608 -k1,22456:6567857,21424086:-26211780 -) -(1,22456:6567858,21424086:26211779,13028259,196608 -[1,22456:6764466,21424086:25818563,12831651,0 -(1,22436:6764466,9016874:25818563,424439,112852 -(1,22435:6764466,9016874:0,0,0 -g1,22435:6764466,9016874 -g1,22435:6764466,9016874 -g1,22435:6436786,9016874 -(1,22435:6436786,9016874:0,0,0 -) -g1,22435:6764466,9016874 -) -g1,22436:11411821,9016874 -k1,22436:11411821,9016874:0 -h1,22436:12075729,9016874:0,0,0 -k1,22436:32583029,9016874:20507300 -g1,22436:32583029,9016874 -) -(1,22437:6764466,9701729:25818563,431045,86428 -h1,22437:6764466,9701729:0,0,0 -g1,22437:7096420,9701729 -g1,22437:7428374,9701729 -g1,22437:10415959,9701729 -g1,22437:14067452,9701729 -g1,22437:14731360,9701729 -k1,22437:14731360,9701729:0 -h1,22437:15727222,9701729:0,0,0 -k1,22437:32583030,9701729:16855808 -g1,22437:32583030,9701729 -) -(1,22438:6764466,10386584:25818563,431045,106246 -h1,22438:6764466,10386584:0,0,0 -g1,22438:7096420,10386584 -g1,22438:7428374,10386584 -g1,22438:7760328,10386584 -g1,22438:8092282,10386584 -g1,22438:8424236,10386584 -g1,22438:8756190,10386584 -g1,22438:9088144,10386584 -g1,22438:9420098,10386584 -g1,22438:9752052,10386584 -g1,22438:10084006,10386584 -g1,22438:10415960,10386584 -g1,22438:10747914,10386584 -g1,22438:14731361,10386584 -g1,22438:15395269,10386584 -k1,22438:15395269,10386584:0 -h1,22438:18050901,10386584:0,0,0 -k1,22438:32583029,10386584:14532128 -g1,22438:32583029,10386584 -) -(1,22439:6764466,11071439:25818563,424439,86428 -h1,22439:6764466,11071439:0,0,0 -g1,22439:7096420,11071439 -g1,22439:7428374,11071439 -g1,22439:7760328,11071439 -g1,22439:8092282,11071439 -g1,22439:8424236,11071439 -g1,22439:8756190,11071439 -g1,22439:9088144,11071439 -g1,22439:9420098,11071439 -g1,22439:9752052,11071439 -g1,22439:10084006,11071439 -g1,22439:10415960,11071439 -g1,22439:10747914,11071439 -g1,22439:15727223,11071439 -g1,22439:16391131,11071439 -k1,22439:16391131,11071439:0 -h1,22439:20706532,11071439:0,0,0 -k1,22439:32583029,11071439:11876497 -g1,22439:32583029,11071439 -) -(1,22440:6764466,11756294:25818563,424439,86428 -h1,22440:6764466,11756294:0,0,0 -g1,22440:7096420,11756294 -g1,22440:7428374,11756294 -g1,22440:7760328,11756294 -g1,22440:8092282,11756294 -g1,22440:8424236,11756294 -g1,22440:8756190,11756294 -g1,22440:9088144,11756294 -g1,22440:9420098,11756294 -g1,22440:9752052,11756294 -g1,22440:10084006,11756294 -g1,22440:10415960,11756294 -g1,22440:10747914,11756294 -g1,22440:15727223,11756294 -g1,22440:16391131,11756294 -k1,22440:16391131,11756294:0 -h1,22440:20706532,11756294:0,0,0 -k1,22440:32583029,11756294:11876497 -g1,22440:32583029,11756294 -) -(1,22441:6764466,12441149:25818563,424439,79822 -h1,22441:6764466,12441149:0,0,0 -g1,22441:7096420,12441149 -g1,22441:7428374,12441149 -g1,22441:7760328,12441149 -g1,22441:8092282,12441149 -g1,22441:8424236,12441149 -g1,22441:8756190,12441149 -g1,22441:9088144,12441149 -g1,22441:9420098,12441149 -g1,22441:9752052,12441149 -g1,22441:10084006,12441149 -g1,22441:10415960,12441149 -g1,22441:10747914,12441149 -g1,22441:14731361,12441149 -g1,22441:15395269,12441149 -g1,22441:19378716,12441149 -h1,22441:19710670,12441149:0,0,0 -k1,22441:32583029,12441149:12872359 -g1,22441:32583029,12441149 -) -(1,22442:6764466,13126004:25818563,0,0 -h1,22442:6764466,13126004:0,0,0 -h1,22442:6764466,13126004:0,0,0 -k1,22442:32583030,13126004:25818564 -g1,22442:32583030,13126004 -) -(1,22443:6764466,13810859:25818563,424439,112852 -h1,22443:6764466,13810859:0,0,0 -g1,22443:7096420,13810859 -g1,22443:7428374,13810859 -g1,22443:7760328,13810859 -g1,22443:8092282,13810859 -g1,22443:15063314,13810859 -g1,22443:15727222,13810859 -k1,22443:15727222,13810859:0 -h1,22443:19046761,13810859:0,0,0 -k1,22443:32583029,13810859:13536268 -g1,22443:32583029,13810859 -) -(1,22444:6764466,14495714:25818563,431045,106246 -h1,22444:6764466,14495714:0,0,0 -g1,22444:7096420,14495714 -g1,22444:7428374,14495714 -g1,22444:7760328,14495714 -g1,22444:8092282,14495714 -g1,22444:8424236,14495714 -g1,22444:8756190,14495714 -g1,22444:9088144,14495714 -g1,22444:9420098,14495714 -g1,22444:9752052,14495714 -g1,22444:10084006,14495714 -g1,22444:10415960,14495714 -g1,22444:10747914,14495714 -g1,22444:11079868,14495714 -g1,22444:11411822,14495714 -g1,22444:11743776,14495714 -g1,22444:15727223,14495714 -g1,22444:16391131,14495714 -k1,22444:16391131,14495714:0 -h1,22444:20374578,14495714:0,0,0 -k1,22444:32583029,14495714:12208451 -g1,22444:32583029,14495714 -) -(1,22445:6764466,15180569:25818563,424439,86428 -h1,22445:6764466,15180569:0,0,0 -g1,22445:7096420,15180569 -g1,22445:7428374,15180569 -g1,22445:7760328,15180569 -g1,22445:8092282,15180569 -g1,22445:8424236,15180569 -g1,22445:8756190,15180569 -g1,22445:9088144,15180569 -g1,22445:9420098,15180569 -g1,22445:9752052,15180569 -g1,22445:10084006,15180569 -g1,22445:10415960,15180569 -g1,22445:10747914,15180569 -g1,22445:11079868,15180569 -g1,22445:11411822,15180569 -g1,22445:11743776,15180569 -g1,22445:16723085,15180569 -g1,22445:17386993,15180569 -k1,22445:17386993,15180569:0 -h1,22445:22366302,15180569:0,0,0 -k1,22445:32583029,15180569:10216727 -g1,22445:32583029,15180569 -) -(1,22446:6764466,15865424:25818563,424439,79822 -h1,22446:6764466,15865424:0,0,0 -g1,22446:7096420,15865424 -g1,22446:7428374,15865424 -g1,22446:7760328,15865424 -g1,22446:8092282,15865424 -g1,22446:8424236,15865424 -g1,22446:8756190,15865424 -g1,22446:9088144,15865424 -g1,22446:9420098,15865424 -g1,22446:9752052,15865424 -g1,22446:10084006,15865424 -g1,22446:10415960,15865424 -g1,22446:10747914,15865424 -g1,22446:11079868,15865424 -g1,22446:11411822,15865424 -g1,22446:11743776,15865424 -g1,22446:16723085,15865424 -g1,22446:17386993,15865424 -g1,22446:22698256,15865424 -h1,22446:23030210,15865424:0,0,0 -k1,22446:32583029,15865424:9552819 -g1,22446:32583029,15865424 -) -(1,22447:6764466,16550279:25818563,0,0 -h1,22447:6764466,16550279:0,0,0 -h1,22447:6764466,16550279:0,0,0 -k1,22447:32583030,16550279:25818564 -g1,22447:32583030,16550279 -) -(1,22448:6764466,17235134:25818563,424439,86428 -h1,22448:6764466,17235134:0,0,0 -g1,22448:7096420,17235134 -g1,22448:7428374,17235134 -g1,22448:7760328,17235134 -g1,22448:8092282,17235134 -g1,22448:11743776,17235134 -g1,22448:12407684,17235134 -g1,22448:19046763,17235134 -g1,22448:19710671,17235134 -k1,22448:19710671,17235134:0 -h1,22448:24026072,17235134:0,0,0 -k1,22448:32583029,17235134:8556957 -g1,22448:32583029,17235134 -) -(1,22449:6764466,17919989:25818563,424439,86428 -h1,22449:6764466,17919989:0,0,0 -g1,22449:7096420,17919989 -g1,22449:7428374,17919989 -g1,22449:7760328,17919989 -g1,22449:8092282,17919989 -g1,22449:8424236,17919989 -g1,22449:8756190,17919989 -g1,22449:9088144,17919989 -g1,22449:9420098,17919989 -g1,22449:9752052,17919989 -g1,22449:10084006,17919989 -g1,22449:11743776,17919989 -g1,22449:12407684,17919989 -g1,22449:19046763,17919989 -g1,22449:19710671,17919989 -k1,22449:19710671,17919989:0 -h1,22449:24026072,17919989:0,0,0 -k1,22449:32583029,17919989:8556957 -g1,22449:32583029,17919989 -) -(1,22450:6764466,18604844:25818563,424439,86428 -h1,22450:6764466,18604844:0,0,0 -g1,22450:7096420,18604844 -g1,22450:7428374,18604844 -g1,22450:7760328,18604844 -g1,22450:8092282,18604844 -g1,22450:8424236,18604844 -g1,22450:8756190,18604844 -g1,22450:9088144,18604844 -g1,22450:9420098,18604844 -g1,22450:9752052,18604844 -g1,22450:10084006,18604844 -g1,22450:11743776,18604844 -g1,22450:12407684,18604844 -g1,22450:19046763,18604844 -g1,22450:19710671,18604844 -k1,22450:19710671,18604844:0 -h1,22450:24026072,18604844:0,0,0 -k1,22450:32583029,18604844:8556957 -g1,22450:32583029,18604844 -) -(1,22451:6764466,19289699:25818563,424439,86428 -h1,22451:6764466,19289699:0,0,0 -g1,22451:7096420,19289699 -g1,22451:7428374,19289699 -g1,22451:7760328,19289699 -g1,22451:8092282,19289699 -g1,22451:8424236,19289699 -g1,22451:8756190,19289699 -g1,22451:9088144,19289699 -g1,22451:9420098,19289699 -g1,22451:9752052,19289699 -g1,22451:10084006,19289699 -g1,22451:12075730,19289699 -g1,22451:12739638,19289699 -g1,22451:19378717,19289699 -g1,22451:20042625,19289699 -k1,22451:20042625,19289699:0 -h1,22451:24358026,19289699:0,0,0 -k1,22451:32583029,19289699:8225003 -g1,22451:32583029,19289699 -) -(1,22452:6764466,19974554:25818563,424439,86428 -h1,22452:6764466,19974554:0,0,0 -g1,22452:7096420,19974554 -g1,22452:7428374,19974554 -g1,22452:7760328,19974554 -g1,22452:8092282,19974554 -g1,22452:8424236,19974554 -g1,22452:8756190,19974554 -g1,22452:9088144,19974554 -g1,22452:9420098,19974554 -g1,22452:9752052,19974554 -g1,22452:10084006,19974554 -g1,22452:13403545,19974554 -g1,22452:14067453,19974554 -g1,22452:20706532,19974554 -g1,22452:21370440,19974554 -k1,22452:21370440,19974554:0 -h1,22452:25685841,19974554:0,0,0 -k1,22452:32583029,19974554:6897188 -g1,22452:32583029,19974554 -) -(1,22453:6764466,20659409:25818563,424439,106246 -h1,22453:6764466,20659409:0,0,0 -g1,22453:7096420,20659409 -g1,22453:7428374,20659409 -g1,22453:7760328,20659409 -g1,22453:8092282,20659409 -g1,22453:8424236,20659409 -g1,22453:8756190,20659409 -g1,22453:9088144,20659409 -g1,22453:9420098,20659409 -g1,22453:9752052,20659409 -g1,22453:10084006,20659409 -g1,22453:13071591,20659409 -g1,22453:13735499,20659409 -h1,22453:15395269,20659409:0,0,0 -k1,22453:32583029,20659409:17187760 -g1,22453:32583029,20659409 -) -(1,22454:6764466,21344264:25818563,424439,79822 -h1,22454:6764466,21344264:0,0,0 -g1,22454:7096420,21344264 -g1,22454:7428374,21344264 -h1,22454:7760328,21344264:0,0,0 -k1,22454:32583028,21344264:24822700 -g1,22454:32583028,21344264 -) -] -) -g1,22456:32583029,21424086 -g1,22456:6764466,21424086 -g1,22456:6764466,21424086 -g1,22456:32583029,21424086 -g1,22456:32583029,21424086 -) -h1,22456:6764466,21620694:0,0,0 -(1,22460:6764466,22485774:25818563,513147,126483 -h1,22459:6764466,22485774:983040,0,0 -k1,22459:9221247,22485774:261325 -k1,22459:10812952,22485774:261324 -k1,22459:13060673,22485774:261325 -k1,22459:17202385,22485774:261325 -k1,22459:19813830,22485774:261324 -k1,22459:22535377,22485774:261325 -k1,22459:23842657,22485774:261325 -k1,22459:25887216,22485774:261324 -k1,22459:28094960,22485774:261325 -k1,22459:28887782,22485774:261325 -k1,22459:30922510,22485774:261324 -k1,22459:31835263,22485774:261325 -k1,22459:32583029,22485774:0 -) -(1,22460:6764466,23350854:25818563,513147,134348 -k1,22459:8627451,23350854:176088 -k1,22459:9632569,23350854:176088 -k1,22459:11538152,23350854:176088 -k1,22459:14978588,23350854:176088 -k1,22459:17039491,23350854:176088 -k1,22459:17673676,23350854:176088 -k1,22459:18381261,23350854:176088 -k1,22459:20141354,23350854:176088 -k1,22459:20968870,23350854:176088 -k1,22459:22860691,23350854:176088 -(1,22459:22860691,23350854:0,452978,122846 -r1,22492:28142922,23350854:5282231,575824,122846 -k1,22459:22860691,23350854:-5282231 -) -(1,22459:22860691,23350854:5282231,452978,122846 -k1,22459:22860691,23350854:3277 -h1,22459:28139645,23350854:0,411205,112570 -) -k1,22459:28319010,23350854:176088 -k1,22459:28850958,23350854:176088 -k1,22459:31923737,23350854:176088 -k1,22460:32583029,23350854:0 -) -(1,22460:6764466,24215934:25818563,513147,134348 -(1,22459:6764466,24215934:0,452978,122846 -r1,22492:12046697,24215934:5282231,575824,122846 -k1,22459:6764466,24215934:-5282231 -) -(1,22459:6764466,24215934:5282231,452978,122846 -k1,22459:6764466,24215934:3277 -h1,22459:12043420,24215934:0,411205,112570 -) -g1,22459:12245926,24215934 -g1,22459:15420490,24215934 -g1,22459:18448252,24215934 -k1,22460:32583029,24215934:11544795 -g1,22460:32583029,24215934 -) -v1,22462:6764466,24900789:0,393216,0 -(1,22466:6764466,25241472:25818563,733899,196608 -g1,22466:6764466,25241472 -g1,22466:6764466,25241472 -g1,22466:6567858,25241472 -(1,22466:6567858,25241472:0,733899,196608 -r1,22492:32779637,25241472:26211779,930507,196608 -k1,22466:6567857,25241472:-26211780 -) -(1,22466:6567858,25241472:26211779,733899,196608 -[1,22466:6764466,25241472:25818563,537291,0 -(1,22464:6764466,25128620:25818563,424439,112852 -(1,22463:6764466,25128620:0,0,0 -g1,22463:6764466,25128620 -g1,22463:6764466,25128620 -g1,22463:6436786,25128620 -(1,22463:6436786,25128620:0,0,0 -) -g1,22463:6764466,25128620 -) -g1,22464:11411821,25128620 -g1,22464:12407683,25128620 -h1,22464:16723084,25128620:0,0,0 -k1,22464:32583029,25128620:15859945 -g1,22464:32583029,25128620 -) -] -) -g1,22466:32583029,25241472 -g1,22466:6764466,25241472 -g1,22466:6764466,25241472 -g1,22466:32583029,25241472 -g1,22466:32583029,25241472 -) -h1,22466:6764466,25438080:0,0,0 -(1,22470:6764466,26303160:25818563,505283,134348 -h1,22469:6764466,26303160:983040,0,0 -g1,22469:8434323,26303160 -g1,22469:9910849,26303160 -g1,22469:12460199,26303160 -g1,22469:14394821,26303160 -(1,22469:14394821,26303160:0,452978,122846 -r1,22492:19677052,26303160:5282231,575824,122846 -k1,22469:14394821,26303160:-5282231 -) -(1,22469:14394821,26303160:5282231,452978,122846 -k1,22469:14394821,26303160:3277 -h1,22469:19673775,26303160:0,411205,112570 -) -g1,22469:19876281,26303160 -g1,22469:21469461,26303160 -g1,22469:22894869,26303160 -g1,22469:25125059,26303160 -g1,22469:26258831,26303160 -g1,22469:27109488,26303160 -g1,22469:28766238,26303160 -k1,22470:32583029,26303160:2707922 -g1,22470:32583029,26303160 -) -v1,22472:6764466,26988015:0,393216,0 -(1,22476:6764466,27328698:25818563,733899,196608 -g1,22476:6764466,27328698 -g1,22476:6764466,27328698 -g1,22476:6567858,27328698 -(1,22476:6567858,27328698:0,733899,196608 -r1,22492:32779637,27328698:26211779,930507,196608 -k1,22476:6567857,27328698:-26211780 -) -(1,22476:6567858,27328698:26211779,733899,196608 -[1,22476:6764466,27328698:25818563,537291,0 -(1,22474:6764466,27215846:25818563,424439,112852 -(1,22473:6764466,27215846:0,0,0 -g1,22473:6764466,27215846 -g1,22473:6764466,27215846 -g1,22473:6436786,27215846 -(1,22473:6436786,27215846:0,0,0 -) -g1,22473:6764466,27215846 -) -g1,22474:9088144,27215846 -g1,22474:9752052,27215846 -g1,22474:15727223,27215846 -g1,22474:19710670,27215846 -g1,22474:20374578,27215846 -h1,22474:23694117,27215846:0,0,0 -k1,22474:32583029,27215846:8888912 -g1,22474:32583029,27215846 -) -] -) -g1,22476:32583029,27328698 -g1,22476:6764466,27328698 -g1,22476:6764466,27328698 -g1,22476:32583029,27328698 -g1,22476:32583029,27328698 -) -h1,22476:6764466,27525306:0,0,0 -(1,22479:6764466,37175771:25818563,9584929,0 -k1,22479:13283717,37175771:6519251 -h1,22478:13283717,37175771:0,0,0 -(1,22478:13283717,37175771:12780062,9584929,0 -(1,22478:13283717,37175771:12779937,9584953,0 -(1,22478:13283717,37175771:12779937,9584953,0 -(1,22478:13283717,37175771:0,9584953,0 -(1,22478:13283717,37175771:0,14208860,0 -(1,22478:13283717,37175771:18945146,14208860,0 -) -k1,22478:13283717,37175771:-18945146 -) -) -g1,22478:26063654,37175771 -) -) -) -g1,22479:26063779,37175771 -k1,22479:32583029,37175771:6519250 -) -] -g1,22484:32583029,37175771 -) -h1,22484:6630773,37175771:0,0,0 -(1,22489:6630773,40006931:25952256,32768,229376 -(1,22489:6630773,40006931:0,32768,229376 -(1,22489:6630773,40006931:5505024,32768,229376 -r1,22492:12135797,40006931:5505024,262144,229376 -) -k1,22489:6630773,40006931:-5505024 -) -(1,22489:6630773,40006931:25952256,32768,0 -r1,22492:32583029,40006931:25952256,32768,0 -) -) -(1,22489:6630773,41638783:25952256,606339,161218 -(1,22489:6630773,41638783:2464678,582746,14155 -g1,22489:6630773,41638783 -g1,22489:9095451,41638783 -) -g1,22489:13796742,41638783 -k1,22489:32583029,41638783:16844586 -g1,22489:32583029,41638783 -) -(1,22492:6630773,42897079:25952256,513147,126483 -k1,22491:8565489,42897079:190148 -k1,22491:10644385,42897079:190148 -k1,22491:12550266,42897079:190148 -k1,22491:13198511,42897079:190148 -k1,22491:16018619,42897079:190148 -k1,22491:16860195,42897079:190148 -k1,22491:18979722,42897079:190147 -k1,22491:20777468,42897079:190148 -k1,22491:22361567,42897079:190148 -k1,22491:24625929,42897079:190148 -k1,22491:26100583,42897079:190148 -k1,22491:28027435,42897079:190148 -k1,22491:29236668,42897079:190148 -k1,22491:31080289,42897079:190148 -k1,22492:32583029,42897079:0 -) -(1,22492:6630773,43762159:25952256,505283,134348 -k1,22491:8594484,43762159:222419 -k1,22491:10008348,43762159:222419 -k1,22491:11620130,43762159:222419 -k1,22491:13074625,43762159:222418 -k1,22491:15575731,43762159:222419 -h1,22491:16546319,43762159:0,0,0 -k1,22491:16768738,43762159:222419 -k1,22491:17800527,43762159:222419 -k1,22491:19521099,43762159:222419 -h1,22491:20716476,43762159:0,0,0 -k1,22491:21319659,43762159:222419 -k1,22491:22819374,43762159:222418 -k1,22491:27004100,43762159:222419 -k1,22491:29272553,43762159:222419 -k1,22491:29953069,43762159:222419 -k1,22491:32583029,43762159:0 -) -(1,22492:6630773,44627239:25952256,505283,134348 -k1,22491:7551096,44627239:268895 -k1,22491:10531872,44627239:268896 -k1,22491:14069703,44627239:268895 -k1,22491:16688719,44627239:268895 -(1,22491:16688719,44627239:0,452978,122846 -r1,22492:18102120,44627239:1413401,575824,122846 -k1,22491:16688719,44627239:-1413401 -) -(1,22491:16688719,44627239:1413401,452978,122846 -k1,22491:16688719,44627239:3277 -h1,22491:18098843,44627239:0,411205,112570 -) -k1,22491:18371016,44627239:268896 -k1,22491:19917208,44627239:268895 -k1,22491:22475932,44627239:268896 -k1,22491:24012293,44627239:268895 -k1,22491:24637048,44627239:268895 -k1,22491:26778963,44627239:268896 -k1,22491:28498825,44627239:268895 -k1,22491:32583029,44627239:0 -) -(1,22492:6630773,45492319:25952256,513147,134348 -k1,22491:8966083,45492319:292553 -k1,22491:12355866,45492319:292552 -k1,22491:14694453,45492319:292553 -k1,22491:15445103,45492319:292553 -k1,22491:18367616,45492319:292553 -k1,22491:19311596,45492319:292552 -k1,22491:22606353,45492319:292553 -k1,22491:23917991,45492319:292553 -k1,22491:26453185,45492319:292552 -k1,22491:30440002,45492319:292553 -k1,22491:32583029,45492319:0 -) -] -(1,22492:32583029,45706769:0,0,0 -g1,22492:32583029,45706769 -) -) -] -(1,22492:6630773,47279633:25952256,0,0 -h1,22492:6630773,47279633:25952256,0,0 -) -] -(1,22492:4262630,4025873:0,0,0 -[1,22492:-473656,4025873:0,0,0 -(1,22492:-473656,-710413:0,0,0 -(1,22492:-473656,-710413:0,0,0 -g1,22492:-473656,-710413 -) -g1,22492:-473656,-710413 +k1,22490:3078556,49800853:-34777008 +) +] +g1,22490:6630773,4812305 +g1,22490:6630773,4812305 +g1,22490:10334867,4812305 +g1,22490:11990961,4812305 +k1,22490:31387653,4812305:19396692 +) +) +] +[1,22490:6630773,45706769:25952256,40108032,0 +(1,22490:6630773,45706769:25952256,40108032,0 +(1,22490:6630773,45706769:0,0,0 +g1,22490:6630773,45706769 +) +[1,22490:6630773,45706769:25952256,40108032,0 +v1,22482:6630773,6254097:0,393216,0 +(1,22482:6630773,37175771:25952256,31314890,0 +g1,22482:6630773,37175771 +g1,22482:6237557,37175771 +r1,22490:6368629,37175771:131072,31314890,0 +g1,22482:6567858,37175771 +g1,22482:6764466,37175771 +[1,22482:6764466,37175771:25818563,31314890,0 +(1,22430:6764466,6374028:25818563,513147,134348 +k1,22429:8550673,6374028:272981 +k1,22429:9771305,6374028:272981 +(1,22429:9771305,6374028:0,459977,115847 +r1,22490:13646689,6374028:3875384,575824,115847 +k1,22429:9771305,6374028:-3875384 +) +(1,22429:9771305,6374028:3875384,459977,115847 +k1,22429:9771305,6374028:3277 +h1,22429:13643412,6374028:0,411205,112570 +) +k1,22429:14093341,6374028:272982 +k1,22429:15563009,6374028:272981 +k1,22429:16936995,6374028:272981 +k1,22429:18997143,6374028:272981 +k1,22429:19801621,6374028:272981 +k1,22429:22502056,6374028:272981 +(1,22429:22502056,6374028:0,452978,115847 +r1,22490:27784288,6374028:5282232,568825,115847 +k1,22429:22502056,6374028:-5282232 +) +(1,22429:22502056,6374028:5282232,452978,115847 +g1,22429:25670740,6374028 +g1,22429:26374164,6374028 +h1,22429:27781011,6374028:0,411205,112570 +) +k1,22429:28057270,6374028:272982 +k1,22429:28981679,6374028:272981 +(1,22429:28981679,6374028:0,452978,115847 +r1,22490:31450216,6374028:2468537,568825,115847 +k1,22429:28981679,6374028:-2468537 +) +(1,22429:28981679,6374028:2468537,452978,115847 +k1,22429:28981679,6374028:3277 +h1,22429:31446939,6374028:0,411205,112570 +) +k1,22429:31896867,6374028:272981 +k1,22429:32583029,6374028:0 +) +(1,22430:6764466,7239108:25818563,513147,134348 +k1,22429:8156098,7239108:188391 +k1,22429:9661763,7239108:188391 +k1,22429:10869239,7239108:188391 +k1,22429:13836356,7239108:188390 +k1,22429:16011143,7239108:188391 +k1,22429:16885696,7239108:188391 +k1,22429:18812102,7239108:188391 +k1,22429:21054391,7239108:188391 +k1,22429:22004310,7239108:188391 +k1,22429:23972002,7239108:188390 +k1,22429:26993514,7239108:188391 +k1,22429:27797943,7239108:188391 +k1,22429:31923737,7239108:188391 +k1,22429:32583029,7239108:0 +) +(1,22430:6764466,8104188:25818563,505283,126483 +g1,22429:8095502,8104188 +g1,22429:10281127,8104188 +g1,22429:12814748,8104188 +g1,22429:13630015,8104188 +g1,22429:14185104,8104188 +g1,22429:15661630,8104188 +g1,22429:17558897,8104188 +g1,22429:18216223,8104188 +g1,22429:18946949,8104188 +k1,22430:32583029,8104188:11618227 +g1,22430:32583029,8104188 +) +v1,22432:6764466,8789043:0,393216,0 +(1,22454:6764466,21424086:25818563,13028259,196608 +g1,22454:6764466,21424086 +g1,22454:6764466,21424086 +g1,22454:6567858,21424086 +(1,22454:6567858,21424086:0,13028259,196608 +r1,22490:32779637,21424086:26211779,13224867,196608 +k1,22454:6567857,21424086:-26211780 +) +(1,22454:6567858,21424086:26211779,13028259,196608 +[1,22454:6764466,21424086:25818563,12831651,0 +(1,22434:6764466,9016874:25818563,424439,112852 +(1,22433:6764466,9016874:0,0,0 +g1,22433:6764466,9016874 +g1,22433:6764466,9016874 +g1,22433:6436786,9016874 +(1,22433:6436786,9016874:0,0,0 +) +g1,22433:6764466,9016874 +) +g1,22434:11411821,9016874 +k1,22434:11411821,9016874:0 +h1,22434:12075729,9016874:0,0,0 +k1,22434:32583029,9016874:20507300 +g1,22434:32583029,9016874 +) +(1,22435:6764466,9701729:25818563,431045,86428 +h1,22435:6764466,9701729:0,0,0 +g1,22435:7096420,9701729 +g1,22435:7428374,9701729 +g1,22435:10415959,9701729 +g1,22435:14067452,9701729 +g1,22435:14731360,9701729 +k1,22435:14731360,9701729:0 +h1,22435:15727222,9701729:0,0,0 +k1,22435:32583030,9701729:16855808 +g1,22435:32583030,9701729 +) +(1,22436:6764466,10386584:25818563,431045,106246 +h1,22436:6764466,10386584:0,0,0 +g1,22436:7096420,10386584 +g1,22436:7428374,10386584 +g1,22436:7760328,10386584 +g1,22436:8092282,10386584 +g1,22436:8424236,10386584 +g1,22436:8756190,10386584 +g1,22436:9088144,10386584 +g1,22436:9420098,10386584 +g1,22436:9752052,10386584 +g1,22436:10084006,10386584 +g1,22436:10415960,10386584 +g1,22436:10747914,10386584 +g1,22436:14731361,10386584 +g1,22436:15395269,10386584 +k1,22436:15395269,10386584:0 +h1,22436:18050901,10386584:0,0,0 +k1,22436:32583029,10386584:14532128 +g1,22436:32583029,10386584 +) +(1,22437:6764466,11071439:25818563,424439,86428 +h1,22437:6764466,11071439:0,0,0 +g1,22437:7096420,11071439 +g1,22437:7428374,11071439 +g1,22437:7760328,11071439 +g1,22437:8092282,11071439 +g1,22437:8424236,11071439 +g1,22437:8756190,11071439 +g1,22437:9088144,11071439 +g1,22437:9420098,11071439 +g1,22437:9752052,11071439 +g1,22437:10084006,11071439 +g1,22437:10415960,11071439 +g1,22437:10747914,11071439 +g1,22437:15727223,11071439 +g1,22437:16391131,11071439 +k1,22437:16391131,11071439:0 +h1,22437:20706532,11071439:0,0,0 +k1,22437:32583029,11071439:11876497 +g1,22437:32583029,11071439 +) +(1,22438:6764466,11756294:25818563,424439,86428 +h1,22438:6764466,11756294:0,0,0 +g1,22438:7096420,11756294 +g1,22438:7428374,11756294 +g1,22438:7760328,11756294 +g1,22438:8092282,11756294 +g1,22438:8424236,11756294 +g1,22438:8756190,11756294 +g1,22438:9088144,11756294 +g1,22438:9420098,11756294 +g1,22438:9752052,11756294 +g1,22438:10084006,11756294 +g1,22438:10415960,11756294 +g1,22438:10747914,11756294 +g1,22438:15727223,11756294 +g1,22438:16391131,11756294 +k1,22438:16391131,11756294:0 +h1,22438:20706532,11756294:0,0,0 +k1,22438:32583029,11756294:11876497 +g1,22438:32583029,11756294 +) +(1,22439:6764466,12441149:25818563,424439,79822 +h1,22439:6764466,12441149:0,0,0 +g1,22439:7096420,12441149 +g1,22439:7428374,12441149 +g1,22439:7760328,12441149 +g1,22439:8092282,12441149 +g1,22439:8424236,12441149 +g1,22439:8756190,12441149 +g1,22439:9088144,12441149 +g1,22439:9420098,12441149 +g1,22439:9752052,12441149 +g1,22439:10084006,12441149 +g1,22439:10415960,12441149 +g1,22439:10747914,12441149 +g1,22439:14731361,12441149 +g1,22439:15395269,12441149 +g1,22439:19378716,12441149 +h1,22439:19710670,12441149:0,0,0 +k1,22439:32583029,12441149:12872359 +g1,22439:32583029,12441149 +) +(1,22440:6764466,13126004:25818563,0,0 +h1,22440:6764466,13126004:0,0,0 +h1,22440:6764466,13126004:0,0,0 +k1,22440:32583030,13126004:25818564 +g1,22440:32583030,13126004 +) +(1,22441:6764466,13810859:25818563,424439,112852 +h1,22441:6764466,13810859:0,0,0 +g1,22441:7096420,13810859 +g1,22441:7428374,13810859 +g1,22441:7760328,13810859 +g1,22441:8092282,13810859 +g1,22441:15063314,13810859 +g1,22441:15727222,13810859 +k1,22441:15727222,13810859:0 +h1,22441:19046761,13810859:0,0,0 +k1,22441:32583029,13810859:13536268 +g1,22441:32583029,13810859 +) +(1,22442:6764466,14495714:25818563,431045,106246 +h1,22442:6764466,14495714:0,0,0 +g1,22442:7096420,14495714 +g1,22442:7428374,14495714 +g1,22442:7760328,14495714 +g1,22442:8092282,14495714 +g1,22442:8424236,14495714 +g1,22442:8756190,14495714 +g1,22442:9088144,14495714 +g1,22442:9420098,14495714 +g1,22442:9752052,14495714 +g1,22442:10084006,14495714 +g1,22442:10415960,14495714 +g1,22442:10747914,14495714 +g1,22442:11079868,14495714 +g1,22442:11411822,14495714 +g1,22442:11743776,14495714 +g1,22442:15727223,14495714 +g1,22442:16391131,14495714 +k1,22442:16391131,14495714:0 +h1,22442:20374578,14495714:0,0,0 +k1,22442:32583029,14495714:12208451 +g1,22442:32583029,14495714 +) +(1,22443:6764466,15180569:25818563,424439,86428 +h1,22443:6764466,15180569:0,0,0 +g1,22443:7096420,15180569 +g1,22443:7428374,15180569 +g1,22443:7760328,15180569 +g1,22443:8092282,15180569 +g1,22443:8424236,15180569 +g1,22443:8756190,15180569 +g1,22443:9088144,15180569 +g1,22443:9420098,15180569 +g1,22443:9752052,15180569 +g1,22443:10084006,15180569 +g1,22443:10415960,15180569 +g1,22443:10747914,15180569 +g1,22443:11079868,15180569 +g1,22443:11411822,15180569 +g1,22443:11743776,15180569 +g1,22443:16723085,15180569 +g1,22443:17386993,15180569 +k1,22443:17386993,15180569:0 +h1,22443:22366302,15180569:0,0,0 +k1,22443:32583029,15180569:10216727 +g1,22443:32583029,15180569 +) +(1,22444:6764466,15865424:25818563,424439,79822 +h1,22444:6764466,15865424:0,0,0 +g1,22444:7096420,15865424 +g1,22444:7428374,15865424 +g1,22444:7760328,15865424 +g1,22444:8092282,15865424 +g1,22444:8424236,15865424 +g1,22444:8756190,15865424 +g1,22444:9088144,15865424 +g1,22444:9420098,15865424 +g1,22444:9752052,15865424 +g1,22444:10084006,15865424 +g1,22444:10415960,15865424 +g1,22444:10747914,15865424 +g1,22444:11079868,15865424 +g1,22444:11411822,15865424 +g1,22444:11743776,15865424 +g1,22444:16723085,15865424 +g1,22444:17386993,15865424 +g1,22444:22698256,15865424 +h1,22444:23030210,15865424:0,0,0 +k1,22444:32583029,15865424:9552819 +g1,22444:32583029,15865424 +) +(1,22445:6764466,16550279:25818563,0,0 +h1,22445:6764466,16550279:0,0,0 +h1,22445:6764466,16550279:0,0,0 +k1,22445:32583030,16550279:25818564 +g1,22445:32583030,16550279 +) +(1,22446:6764466,17235134:25818563,424439,86428 +h1,22446:6764466,17235134:0,0,0 +g1,22446:7096420,17235134 +g1,22446:7428374,17235134 +g1,22446:7760328,17235134 +g1,22446:8092282,17235134 +g1,22446:11743776,17235134 +g1,22446:12407684,17235134 +g1,22446:19046763,17235134 +g1,22446:19710671,17235134 +k1,22446:19710671,17235134:0 +h1,22446:24026072,17235134:0,0,0 +k1,22446:32583029,17235134:8556957 +g1,22446:32583029,17235134 +) +(1,22447:6764466,17919989:25818563,424439,86428 +h1,22447:6764466,17919989:0,0,0 +g1,22447:7096420,17919989 +g1,22447:7428374,17919989 +g1,22447:7760328,17919989 +g1,22447:8092282,17919989 +g1,22447:8424236,17919989 +g1,22447:8756190,17919989 +g1,22447:9088144,17919989 +g1,22447:9420098,17919989 +g1,22447:9752052,17919989 +g1,22447:10084006,17919989 +g1,22447:11743776,17919989 +g1,22447:12407684,17919989 +g1,22447:19046763,17919989 +g1,22447:19710671,17919989 +k1,22447:19710671,17919989:0 +h1,22447:24026072,17919989:0,0,0 +k1,22447:32583029,17919989:8556957 +g1,22447:32583029,17919989 +) +(1,22448:6764466,18604844:25818563,424439,86428 +h1,22448:6764466,18604844:0,0,0 +g1,22448:7096420,18604844 +g1,22448:7428374,18604844 +g1,22448:7760328,18604844 +g1,22448:8092282,18604844 +g1,22448:8424236,18604844 +g1,22448:8756190,18604844 +g1,22448:9088144,18604844 +g1,22448:9420098,18604844 +g1,22448:9752052,18604844 +g1,22448:10084006,18604844 +g1,22448:11743776,18604844 +g1,22448:12407684,18604844 +g1,22448:19046763,18604844 +g1,22448:19710671,18604844 +k1,22448:19710671,18604844:0 +h1,22448:24026072,18604844:0,0,0 +k1,22448:32583029,18604844:8556957 +g1,22448:32583029,18604844 +) +(1,22449:6764466,19289699:25818563,424439,86428 +h1,22449:6764466,19289699:0,0,0 +g1,22449:7096420,19289699 +g1,22449:7428374,19289699 +g1,22449:7760328,19289699 +g1,22449:8092282,19289699 +g1,22449:8424236,19289699 +g1,22449:8756190,19289699 +g1,22449:9088144,19289699 +g1,22449:9420098,19289699 +g1,22449:9752052,19289699 +g1,22449:10084006,19289699 +g1,22449:12075730,19289699 +g1,22449:12739638,19289699 +g1,22449:19378717,19289699 +g1,22449:20042625,19289699 +k1,22449:20042625,19289699:0 +h1,22449:24358026,19289699:0,0,0 +k1,22449:32583029,19289699:8225003 +g1,22449:32583029,19289699 +) +(1,22450:6764466,19974554:25818563,424439,86428 +h1,22450:6764466,19974554:0,0,0 +g1,22450:7096420,19974554 +g1,22450:7428374,19974554 +g1,22450:7760328,19974554 +g1,22450:8092282,19974554 +g1,22450:8424236,19974554 +g1,22450:8756190,19974554 +g1,22450:9088144,19974554 +g1,22450:9420098,19974554 +g1,22450:9752052,19974554 +g1,22450:10084006,19974554 +g1,22450:13403545,19974554 +g1,22450:14067453,19974554 +g1,22450:20706532,19974554 +g1,22450:21370440,19974554 +k1,22450:21370440,19974554:0 +h1,22450:25685841,19974554:0,0,0 +k1,22450:32583029,19974554:6897188 +g1,22450:32583029,19974554 +) +(1,22451:6764466,20659409:25818563,424439,106246 +h1,22451:6764466,20659409:0,0,0 +g1,22451:7096420,20659409 +g1,22451:7428374,20659409 +g1,22451:7760328,20659409 +g1,22451:8092282,20659409 +g1,22451:8424236,20659409 +g1,22451:8756190,20659409 +g1,22451:9088144,20659409 +g1,22451:9420098,20659409 +g1,22451:9752052,20659409 +g1,22451:10084006,20659409 +g1,22451:13071591,20659409 +g1,22451:13735499,20659409 +h1,22451:15395269,20659409:0,0,0 +k1,22451:32583029,20659409:17187760 +g1,22451:32583029,20659409 +) +(1,22452:6764466,21344264:25818563,424439,79822 +h1,22452:6764466,21344264:0,0,0 +g1,22452:7096420,21344264 +g1,22452:7428374,21344264 +h1,22452:7760328,21344264:0,0,0 +k1,22452:32583028,21344264:24822700 +g1,22452:32583028,21344264 +) +] +) +g1,22454:32583029,21424086 +g1,22454:6764466,21424086 +g1,22454:6764466,21424086 +g1,22454:32583029,21424086 +g1,22454:32583029,21424086 +) +h1,22454:6764466,21620694:0,0,0 +(1,22458:6764466,22485774:25818563,513147,126483 +h1,22457:6764466,22485774:983040,0,0 +k1,22457:9221247,22485774:261325 +k1,22457:10812952,22485774:261324 +k1,22457:13060673,22485774:261325 +k1,22457:17202385,22485774:261325 +k1,22457:19813830,22485774:261324 +k1,22457:22535377,22485774:261325 +k1,22457:23842657,22485774:261325 +k1,22457:25887216,22485774:261324 +k1,22457:28094960,22485774:261325 +k1,22457:28887782,22485774:261325 +k1,22457:30922510,22485774:261324 +k1,22457:31835263,22485774:261325 +k1,22457:32583029,22485774:0 +) +(1,22458:6764466,23350854:25818563,513147,134348 +k1,22457:8627451,23350854:176088 +k1,22457:9632569,23350854:176088 +k1,22457:11538152,23350854:176088 +k1,22457:14978588,23350854:176088 +k1,22457:17039491,23350854:176088 +k1,22457:17673676,23350854:176088 +k1,22457:18381261,23350854:176088 +k1,22457:20141354,23350854:176088 +k1,22457:20968870,23350854:176088 +k1,22457:22860691,23350854:176088 +(1,22457:22860691,23350854:0,452978,122846 +r1,22490:28142922,23350854:5282231,575824,122846 +k1,22457:22860691,23350854:-5282231 +) +(1,22457:22860691,23350854:5282231,452978,122846 +k1,22457:22860691,23350854:3277 +h1,22457:28139645,23350854:0,411205,112570 +) +k1,22457:28319010,23350854:176088 +k1,22457:28850958,23350854:176088 +k1,22457:31923737,23350854:176088 +k1,22458:32583029,23350854:0 +) +(1,22458:6764466,24215934:25818563,513147,134348 +(1,22457:6764466,24215934:0,452978,122846 +r1,22490:12046697,24215934:5282231,575824,122846 +k1,22457:6764466,24215934:-5282231 +) +(1,22457:6764466,24215934:5282231,452978,122846 +k1,22457:6764466,24215934:3277 +h1,22457:12043420,24215934:0,411205,112570 +) +g1,22457:12245926,24215934 +g1,22457:15420490,24215934 +g1,22457:18448252,24215934 +k1,22458:32583029,24215934:11544795 +g1,22458:32583029,24215934 +) +v1,22460:6764466,24900789:0,393216,0 +(1,22464:6764466,25241472:25818563,733899,196608 +g1,22464:6764466,25241472 +g1,22464:6764466,25241472 +g1,22464:6567858,25241472 +(1,22464:6567858,25241472:0,733899,196608 +r1,22490:32779637,25241472:26211779,930507,196608 +k1,22464:6567857,25241472:-26211780 +) +(1,22464:6567858,25241472:26211779,733899,196608 +[1,22464:6764466,25241472:25818563,537291,0 +(1,22462:6764466,25128620:25818563,424439,112852 +(1,22461:6764466,25128620:0,0,0 +g1,22461:6764466,25128620 +g1,22461:6764466,25128620 +g1,22461:6436786,25128620 +(1,22461:6436786,25128620:0,0,0 +) +g1,22461:6764466,25128620 +) +g1,22462:11411821,25128620 +g1,22462:12407683,25128620 +h1,22462:16723084,25128620:0,0,0 +k1,22462:32583029,25128620:15859945 +g1,22462:32583029,25128620 +) +] +) +g1,22464:32583029,25241472 +g1,22464:6764466,25241472 +g1,22464:6764466,25241472 +g1,22464:32583029,25241472 +g1,22464:32583029,25241472 +) +h1,22464:6764466,25438080:0,0,0 +(1,22468:6764466,26303160:25818563,505283,134348 +h1,22467:6764466,26303160:983040,0,0 +g1,22467:8434323,26303160 +g1,22467:9910849,26303160 +g1,22467:12460199,26303160 +g1,22467:14394821,26303160 +(1,22467:14394821,26303160:0,452978,122846 +r1,22490:19677052,26303160:5282231,575824,122846 +k1,22467:14394821,26303160:-5282231 +) +(1,22467:14394821,26303160:5282231,452978,122846 +k1,22467:14394821,26303160:3277 +h1,22467:19673775,26303160:0,411205,112570 +) +g1,22467:19876281,26303160 +g1,22467:21469461,26303160 +g1,22467:22894869,26303160 +g1,22467:25125059,26303160 +g1,22467:26258831,26303160 +g1,22467:27109488,26303160 +g1,22467:28766238,26303160 +k1,22468:32583029,26303160:2707922 +g1,22468:32583029,26303160 +) +v1,22470:6764466,26988015:0,393216,0 +(1,22474:6764466,27328698:25818563,733899,196608 +g1,22474:6764466,27328698 +g1,22474:6764466,27328698 +g1,22474:6567858,27328698 +(1,22474:6567858,27328698:0,733899,196608 +r1,22490:32779637,27328698:26211779,930507,196608 +k1,22474:6567857,27328698:-26211780 +) +(1,22474:6567858,27328698:26211779,733899,196608 +[1,22474:6764466,27328698:25818563,537291,0 +(1,22472:6764466,27215846:25818563,424439,112852 +(1,22471:6764466,27215846:0,0,0 +g1,22471:6764466,27215846 +g1,22471:6764466,27215846 +g1,22471:6436786,27215846 +(1,22471:6436786,27215846:0,0,0 +) +g1,22471:6764466,27215846 +) +g1,22472:9088144,27215846 +g1,22472:9752052,27215846 +g1,22472:15727223,27215846 +g1,22472:19710670,27215846 +g1,22472:20374578,27215846 +h1,22472:23694117,27215846:0,0,0 +k1,22472:32583029,27215846:8888912 +g1,22472:32583029,27215846 +) +] +) +g1,22474:32583029,27328698 +g1,22474:6764466,27328698 +g1,22474:6764466,27328698 +g1,22474:32583029,27328698 +g1,22474:32583029,27328698 +) +h1,22474:6764466,27525306:0,0,0 +(1,22477:6764466,37175771:25818563,9584929,0 +k1,22477:13283717,37175771:6519251 +h1,22476:13283717,37175771:0,0,0 +(1,22476:13283717,37175771:12780062,9584929,0 +(1,22476:13283717,37175771:12779937,9584953,0 +(1,22476:13283717,37175771:12779937,9584953,0 +(1,22476:13283717,37175771:0,9584953,0 +(1,22476:13283717,37175771:0,14208860,0 +(1,22476:13283717,37175771:18945146,14208860,0 +) +k1,22476:13283717,37175771:-18945146 +) +) +g1,22476:26063654,37175771 +) +) +) +g1,22477:26063779,37175771 +k1,22477:32583029,37175771:6519250 +) +] +g1,22482:32583029,37175771 +) +h1,22482:6630773,37175771:0,0,0 +(1,22487:6630773,40006931:25952256,32768,229376 +(1,22487:6630773,40006931:0,32768,229376 +(1,22487:6630773,40006931:5505024,32768,229376 +r1,22490:12135797,40006931:5505024,262144,229376 +) +k1,22487:6630773,40006931:-5505024 +) +(1,22487:6630773,40006931:25952256,32768,0 +r1,22490:32583029,40006931:25952256,32768,0 +) +) +(1,22487:6630773,41638783:25952256,606339,161218 +(1,22487:6630773,41638783:2464678,582746,14155 +g1,22487:6630773,41638783 +g1,22487:9095451,41638783 +) +g1,22487:13796742,41638783 +k1,22487:32583029,41638783:16844586 +g1,22487:32583029,41638783 +) +(1,22490:6630773,42897079:25952256,513147,126483 +k1,22489:8565489,42897079:190148 +k1,22489:10644385,42897079:190148 +k1,22489:12550266,42897079:190148 +k1,22489:13198511,42897079:190148 +k1,22489:16018619,42897079:190148 +k1,22489:16860195,42897079:190148 +k1,22489:18979722,42897079:190147 +k1,22489:20777468,42897079:190148 +k1,22489:22361567,42897079:190148 +k1,22489:24625929,42897079:190148 +k1,22489:26100583,42897079:190148 +k1,22489:28027435,42897079:190148 +k1,22489:29236668,42897079:190148 +k1,22489:31080289,42897079:190148 +k1,22490:32583029,42897079:0 +) +(1,22490:6630773,43762159:25952256,505283,134348 +k1,22489:8594484,43762159:222419 +k1,22489:10008348,43762159:222419 +k1,22489:11620130,43762159:222419 +k1,22489:13074625,43762159:222418 +k1,22489:15575731,43762159:222419 +h1,22489:16546319,43762159:0,0,0 +k1,22489:16768738,43762159:222419 +k1,22489:17800527,43762159:222419 +k1,22489:19521099,43762159:222419 +h1,22489:20716476,43762159:0,0,0 +k1,22489:21319659,43762159:222419 +k1,22489:22819374,43762159:222418 +k1,22489:27004100,43762159:222419 +k1,22489:29272553,43762159:222419 +k1,22489:29953069,43762159:222419 +k1,22489:32583029,43762159:0 +) +(1,22490:6630773,44627239:25952256,505283,134348 +k1,22489:7551096,44627239:268895 +k1,22489:10531872,44627239:268896 +k1,22489:14069703,44627239:268895 +k1,22489:16688719,44627239:268895 +(1,22489:16688719,44627239:0,452978,122846 +r1,22490:18102120,44627239:1413401,575824,122846 +k1,22489:16688719,44627239:-1413401 +) +(1,22489:16688719,44627239:1413401,452978,122846 +k1,22489:16688719,44627239:3277 +h1,22489:18098843,44627239:0,411205,112570 +) +k1,22489:18371016,44627239:268896 +k1,22489:19917208,44627239:268895 +k1,22489:22475932,44627239:268896 +k1,22489:24012293,44627239:268895 +k1,22489:24637048,44627239:268895 +k1,22489:26778963,44627239:268896 +k1,22489:28498825,44627239:268895 +k1,22489:32583029,44627239:0 +) +(1,22490:6630773,45492319:25952256,513147,134348 +k1,22489:8966083,45492319:292553 +k1,22489:12355866,45492319:292552 +k1,22489:14694453,45492319:292553 +k1,22489:15445103,45492319:292553 +k1,22489:18367616,45492319:292553 +k1,22489:19311596,45492319:292552 +k1,22489:22606353,45492319:292553 +k1,22489:23917991,45492319:292553 +k1,22489:26453185,45492319:292552 +k1,22489:30440002,45492319:292553 +k1,22489:32583029,45492319:0 +) +] +(1,22490:32583029,45706769:0,0,0 +g1,22490:32583029,45706769 +) +) +] +(1,22490:6630773,47279633:25952256,0,0 +h1,22490:6630773,47279633:25952256,0,0 +) +] +(1,22490:4262630,4025873:0,0,0 +[1,22490:-473656,4025873:0,0,0 +(1,22490:-473656,-710413:0,0,0 +(1,22490:-473656,-710413:0,0,0 +g1,22490:-473656,-710413 +) +g1,22490:-473656,-710413 ) ] ) ] !23324 -}384 -Input:4254:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4255:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4256:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4257:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}385 Input:4258:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4259:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4260:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4261:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4262:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4263:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4264:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4265:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4266:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{385 -[1,22557:4262630,47279633:28320399,43253760,0 -(1,22557:4262630,4025873:0,0,0 -[1,22557:-473656,4025873:0,0,0 -(1,22557:-473656,-710413:0,0,0 -(1,22557:-473656,-644877:0,0,0 -k1,22557:-473656,-644877:-65536 +{386 +[1,22555:4262630,47279633:28320399,43253760,0 +(1,22555:4262630,4025873:0,0,0 +[1,22555:-473656,4025873:0,0,0 +(1,22555:-473656,-710413:0,0,0 +(1,22555:-473656,-644877:0,0,0 +k1,22555:-473656,-644877:-65536 ) -(1,22557:-473656,4736287:0,0,0 -k1,22557:-473656,4736287:5209943 +(1,22555:-473656,4736287:0,0,0 +k1,22555:-473656,4736287:5209943 ) -g1,22557:-473656,-710413 +g1,22555:-473656,-710413 ) ] ) -[1,22557:6630773,47279633:25952256,43253760,0 -[1,22557:6630773,4812305:25952256,786432,0 -(1,22557:6630773,4812305:25952256,513147,126483 -(1,22557:6630773,4812305:25952256,513147,126483 -g1,22557:3078558,4812305 -[1,22557:3078558,4812305:0,0,0 -(1,22557:3078558,2439708:0,1703936,0 -k1,22557:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22557:2537886,2439708:1179648,16384,0 +[1,22555:6630773,47279633:25952256,43253760,0 +[1,22555:6630773,4812305:25952256,786432,0 +(1,22555:6630773,4812305:25952256,513147,126483 +(1,22555:6630773,4812305:25952256,513147,126483 +g1,22555:3078558,4812305 +[1,22555:3078558,4812305:0,0,0 +(1,22555:3078558,2439708:0,1703936,0 +k1,22555:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22555:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22557:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22555:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22557:3078558,4812305:0,0,0 -(1,22557:3078558,2439708:0,1703936,0 -g1,22557:29030814,2439708 -g1,22557:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22557:36151628,1915420:16384,1179648,0 +[1,22555:3078558,4812305:0,0,0 +(1,22555:3078558,2439708:0,1703936,0 +g1,22555:29030814,2439708 +g1,22555:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22555:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22557:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22555:37855564,2439708:1179648,16384,0 ) ) -k1,22557:3078556,2439708:-34777008 +k1,22555:3078556,2439708:-34777008 ) ] -[1,22557:3078558,4812305:0,0,0 -(1,22557:3078558,49800853:0,16384,2228224 -k1,22557:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22557:2537886,49800853:1179648,16384,0 +[1,22555:3078558,4812305:0,0,0 +(1,22555:3078558,49800853:0,16384,2228224 +k1,22555:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22555:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22557:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22555:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,22557:3078558,4812305:0,0,0 -(1,22557:3078558,49800853:0,16384,2228224 -g1,22557:29030814,49800853 -g1,22557:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22557:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22557:37855564,49800853:1179648,16384,0 -) -) -k1,22557:3078556,49800853:-34777008 -) -] -g1,22557:6630773,4812305 -k1,22557:21386205,4812305:13560055 -g1,22557:21999622,4812305 -g1,22557:25611966,4812305 -g1,22557:28956923,4812305 -g1,22557:29772190,4812305 -) -) -] -[1,22557:6630773,45706769:25952256,40108032,0 -(1,22557:6630773,45706769:25952256,40108032,0 -(1,22557:6630773,45706769:0,0,0 -g1,22557:6630773,45706769 -) -[1,22557:6630773,45706769:25952256,40108032,0 -(1,22492:6630773,6254097:25952256,513147,134348 -k1,22491:10550372,6254097:201086 -k1,22491:11410750,6254097:201086 -k1,22491:12838016,6254097:201087 -k1,22491:14307879,6254097:201086 -k1,22491:15700410,6254097:201086 -k1,22491:17368192,6254097:201086 -k1,22491:19546499,6254097:201086 -k1,22491:22703914,6254097:201086 -k1,22491:24663332,6254097:201087 -k1,22491:25547303,6254097:201086 -k1,22491:27353366,6254097:201086 -k1,22491:30975431,6254097:201086 -k1,22491:32583029,6254097:0 -) -(1,22492:6630773,7119177:25952256,505283,134348 -k1,22491:8002543,7119177:267488 -k1,22491:9660704,7119177:267487 -k1,22491:11716014,7119177:267488 -k1,22491:12792871,7119177:267487 -k1,22491:14079444,7119177:267488 -k1,22491:16408694,7119177:267487 -k1,22491:17359067,7119177:267488 -k1,22491:19298377,7119177:267487 -k1,22491:20638034,7119177:267488 -k1,22491:22555718,7119177:267487 -k1,22491:26598735,7119177:267488 -k1,22491:27970504,7119177:267487 -k1,22491:29917024,7119177:267488 -k1,22491:32583029,7119177:0 -) -(1,22492:6630773,7984257:25952256,505283,126483 -g1,22491:8219365,7984257 -g1,22491:12768219,7984257 -g1,22491:14251954,7984257 -g1,22491:15981449,7984257 -g1,22491:16832106,7984257 -g1,22491:17779101,7984257 -g1,22491:21159448,7984257 -g1,22491:22041562,7984257 -g1,22491:23653092,7984257 -g1,22491:24538483,7984257 -g1,22491:25093572,7984257 -k1,22492:32583029,7984257:5554179 -g1,22492:32583029,7984257 -) -(1,22494:6630773,8849337:25952256,513147,134348 -h1,22493:6630773,8849337:983040,0,0 -k1,22493:10449192,8849337:300446 -k1,22493:14416377,8849337:300446 -k1,22493:17007962,8849337:300446 -k1,22493:17664268,8849337:300446 -k1,22493:20089391,8849337:300446 -k1,22493:23292427,8849337:300446 -k1,22493:24540524,8849337:300446 -k1,22493:28324864,8849337:300446 -k1,22493:30232908,8849337:300446 -k1,22493:32583029,8849337:0 -) -(1,22494:6630773,9714417:25952256,513147,134348 -k1,22493:8298532,9714417:300022 -k1,22493:11600756,9714417:300021 -k1,22493:13185284,9714417:300022 -k1,22493:13698197,9714417:299921 -k1,22493:15473433,9714417:300021 -k1,22493:17286681,9714417:300022 -k1,22493:19620285,9714417:300022 -k1,22493:20536345,9714417:300022 -k1,22493:21855451,9714417:300021 -k1,22493:24573096,9714417:300022 -k1,22493:25524546,9714417:300022 -k1,22493:28119639,9714417:300022 -k1,22493:30016117,9714417:300021 -k1,22493:30975431,9714417:300022 -k1,22493:32583029,9714417:0 -) -(1,22494:6630773,10579497:25952256,505283,134348 -k1,22493:8109325,10579497:178973 -k1,22493:9049826,10579497:178973 -k1,22493:10702048,10579497:178973 -k1,22493:14965225,10579497:178973 -k1,22493:16538149,10579497:178973 -k1,22493:20383860,10579497:178972 -k1,22493:21667115,10579497:178973 -k1,22493:23131904,10579497:178973 -k1,22493:25648546,10579497:178973 -k1,22493:27112025,10579497:178973 -k1,22493:30240773,10579497:178973 -k1,22493:32583029,10579497:0 -) -(1,22494:6630773,11444577:25952256,505283,134348 -k1,22493:8080726,11444577:274893 -k1,22493:9632916,11444577:274893 -k1,22493:13870116,11444577:274893 -k1,22493:17047599,11444577:274893 -k1,22493:18745279,11444577:274893 -k1,22493:22097087,11444577:274893 -(1,22493:22097087,11444577:0,414482,115847 -r1,22557:22455353,11444577:358266,530329,115847 -k1,22493:22097087,11444577:-358266 -) -(1,22493:22097087,11444577:358266,414482,115847 -k1,22493:22097087,11444577:3277 -h1,22493:22452076,11444577:0,411205,112570 -) -k1,22493:22903916,11444577:274893 -(1,22493:22903916,11444577:0,452978,115847 -r1,22557:23262182,11444577:358266,568825,115847 -k1,22493:22903916,11444577:-358266 -) -(1,22493:22903916,11444577:358266,452978,115847 -k1,22493:22903916,11444577:3277 -h1,22493:23258905,11444577:0,411205,112570 -) -k1,22493:23537075,11444577:274893 -k1,22493:25003413,11444577:274893 -(1,22493:25003413,11444577:0,452978,115847 -r1,22557:25361679,11444577:358266,568825,115847 -k1,22493:25003413,11444577:-358266 -) -(1,22493:25003413,11444577:358266,452978,115847 -k1,22493:25003413,11444577:3277 -h1,22493:25358402,11444577:0,411205,112570 -) -k1,22493:25810242,11444577:274893 -k1,22493:28916290,11444577:274893 -k1,22493:32583029,11444577:0 -) -(1,22494:6630773,12309657:25952256,513147,134348 -k1,22493:9643423,12309657:252274 -k1,22493:13122689,12309657:252273 -k1,22493:14956347,12309657:252274 -k1,22493:16156271,12309657:252273 -k1,22493:19012290,12309657:252274 -k1,22493:21950884,12309657:252273 -k1,22493:24521822,12309657:252274 -k1,22493:25433387,12309657:252273 -k1,22493:27933546,12309657:252274 -k1,22493:29960535,12309657:252274 -(1,22493:29960535,12309657:0,414482,115847 -r1,22557:30318801,12309657:358266,530329,115847 -k1,22493:29960535,12309657:-358266 -) -(1,22493:29960535,12309657:358266,414482,115847 -k1,22493:29960535,12309657:3277 -h1,22493:30315524,12309657:0,411205,112570 -) -k1,22493:30571074,12309657:252273 -k1,22493:32583029,12309657:0 -) -(1,22494:6630773,13174737:25952256,513147,126483 -k1,22493:9614863,13174737:221747 -k1,22493:12328943,13174737:221746 -(1,22493:12328943,13174737:0,452978,115847 -r1,22557:12687209,13174737:358266,568825,115847 -k1,22493:12328943,13174737:-358266 -) -(1,22493:12328943,13174737:358266,452978,115847 -k1,22493:12328943,13174737:3277 -h1,22493:12683932,13174737:0,411205,112570 -) -k1,22493:12908956,13174737:221747 -k1,22493:16301989,13174737:221746 -k1,22493:18597950,13174737:221747 -k1,22493:20119275,13174737:221746 -k1,22493:21102550,13174737:221747 -k1,22493:22797545,13174737:221746 -k1,22493:24210737,13174737:221747 -(1,22493:24210737,13174737:0,452978,115847 -r1,22557:24569003,13174737:358266,568825,115847 -k1,22493:24210737,13174737:-358266 -) -(1,22493:24210737,13174737:358266,452978,115847 -k1,22493:24210737,13174737:3277 -h1,22493:24565726,13174737:0,411205,112570 -) -k1,22493:24790749,13174737:221746 -k1,22493:28183783,13174737:221747 -k1,22493:30479743,13174737:221746 -k1,22493:31510860,13174737:221747 -k1,22493:32583029,13174737:0 -) -(1,22494:6630773,14039817:25952256,513147,134348 -k1,22493:7528195,14039817:238130 -k1,22493:9217947,14039817:238130 -k1,22493:11331716,14039817:238129 -k1,22493:12766533,14039817:238130 -k1,22493:14612261,14039817:238130 -k1,22493:15501819,14039817:238130 -k1,22493:16487715,14039817:238130 -k1,22493:18239070,14039817:238129 -k1,22493:19163362,14039817:238130 -k1,22493:21475706,14039817:238130 -k1,22493:22818118,14039817:238130 -k1,22493:23804013,14039817:238129 -k1,22493:26702905,14039817:238130 -k1,22493:28676428,14039817:238130 -k1,22493:32583029,14039817:0 -) -(1,22494:6630773,14904897:25952256,505283,134348 -k1,22493:8050844,14904897:245011 -k1,22493:11268568,14904897:245011 -k1,22493:13135595,14904897:245011 -k1,22493:14128372,14904897:245011 -k1,22493:16256232,14904897:245011 -k1,22493:18282512,14904897:245011 -k1,22493:20569626,14904897:245012 -k1,22493:22017878,14904897:245011 -k1,22493:24826657,14904897:245011 -k1,22493:25833196,14904897:245011 -k1,22493:28111789,14904897:245011 -k1,22493:29808422,14904897:245011 -k1,22493:31330730,14904897:245011 -k1,22493:32227169,14904897:245011 -k1,22493:32583029,14904897:0 -) -(1,22494:6630773,15769977:25952256,505283,134348 -k1,22493:9458913,15769977:160825 -k1,22493:11402974,15769977:160826 -k1,22493:15047693,15769977:160825 -k1,22493:18909336,15769977:160825 -k1,22493:20677759,15769977:160825 -k1,22493:22218773,15769977:160826 -k1,22493:24001614,15769977:160825 -k1,22493:24910205,15769977:160825 -k1,22493:27864831,15769977:160826 -k1,22493:28641694,15769977:160825 -k1,22493:32583029,15769977:0 -) -(1,22494:6630773,16635057:25952256,505283,126483 -g1,22493:7481430,16635057 -g1,22493:9823686,16635057 -g1,22493:11307421,16635057 -g1,22493:12525735,16635057 -g1,22493:14967606,16635057 -g1,22493:18243750,16635057 -g1,22493:19434539,16635057 -k1,22494:32583029,16635057:9593818 -g1,22494:32583029,16635057 -) -(1,22496:6630773,17500137:25952256,505283,126483 -h1,22495:6630773,17500137:983040,0,0 -g1,22495:9645429,17500137 -g1,22495:11969335,17500137 -g1,22495:13949833,17500137 -(1,22495:13949833,17500137:0,435480,115847 -r1,22557:14659811,17500137:709978,551327,115847 -k1,22495:13949833,17500137:-709978 -) -(1,22495:13949833,17500137:709978,435480,115847 -k1,22495:13949833,17500137:3277 -h1,22495:14656534,17500137:0,411205,112570 -) -g1,22495:15032710,17500137 -(1,22495:15032710,17500137:0,435480,115847 -r1,22557:15742688,17500137:709978,551327,115847 -k1,22495:15032710,17500137:-709978 -) -(1,22495:15032710,17500137:709978,435480,115847 -k1,22495:15032710,17500137:3277 -h1,22495:15739411,17500137:0,411205,112570 -) -g1,22495:15941917,17500137 -g1,22495:17332591,17500137 -(1,22495:17332591,17500137:0,435480,115847 -r1,22557:18042569,17500137:709978,551327,115847 -k1,22495:17332591,17500137:-709978 -) -(1,22495:17332591,17500137:709978,435480,115847 -k1,22495:17332591,17500137:3277 -h1,22495:18039292,17500137:0,411205,112570 -) -g1,22495:18241798,17500137 -g1,22495:19573489,17500137 -g1,22495:20520484,17500137 -g1,22495:22232939,17500137 -k1,22496:32583029,17500137:8429230 -g1,22496:32583029,17500137 -) -v1,22498:6630773,18184992:0,393216,0 -(1,22511:6630773,24695976:25952256,6904200,196608 -g1,22511:6630773,24695976 -g1,22511:6630773,24695976 -g1,22511:6434165,24695976 -(1,22511:6434165,24695976:0,6904200,196608 -r1,22557:32779637,24695976:26345472,7100808,196608 -k1,22511:6434165,24695976:-26345472 -) -(1,22511:6434165,24695976:26345472,6904200,196608 -[1,22511:6630773,24695976:25952256,6707592,0 -(1,22500:6630773,18419429:25952256,431045,112852 -(1,22499:6630773,18419429:0,0,0 -g1,22499:6630773,18419429 -g1,22499:6630773,18419429 -g1,22499:6303093,18419429 -(1,22499:6303093,18419429:0,0,0 -) -g1,22499:6630773,18419429 -) -g1,22500:7626635,18419429 -g1,22500:8622497,18419429 -g1,22500:12605945,18419429 -g1,22500:16257439,18419429 -g1,22500:17917209,18419429 -g1,22500:20240887,18419429 -g1,22500:20904795,18419429 -g1,22500:25552151,18419429 -h1,22500:25884105,18419429:0,0,0 -k1,22500:32583029,18419429:6698924 -g1,22500:32583029,18419429 -) -(1,22501:6630773,19104284:25952256,424439,112852 -h1,22501:6630773,19104284:0,0,0 -g1,22501:6962727,19104284 -g1,22501:7294681,19104284 -g1,22501:7626635,19104284 -g1,22501:7958589,19104284 -g1,22501:8290543,19104284 -g1,22501:8622497,19104284 -g1,22501:8954451,19104284 -g1,22501:9286405,19104284 -g1,22501:13601806,19104284 -h1,22501:13933760,19104284:0,0,0 -k1,22501:32583028,19104284:18649268 -g1,22501:32583028,19104284 -) -(1,22502:6630773,19789139:25952256,424439,112852 -h1,22502:6630773,19789139:0,0,0 -g1,22502:6962727,19789139 -g1,22502:7294681,19789139 -g1,22502:7626635,19789139 -g1,22502:7958589,19789139 -g1,22502:8290543,19789139 -g1,22502:8622497,19789139 -g1,22502:8954451,19789139 -g1,22502:9286405,19789139 -g1,22502:16589392,19789139 -g1,22502:17253300,19789139 -h1,22502:19245024,19789139:0,0,0 -k1,22502:32583029,19789139:13338005 -g1,22502:32583029,19789139 -) -(1,22503:6630773,20473994:25952256,431045,112852 -h1,22503:6630773,20473994:0,0,0 -g1,22503:7626635,20473994 -g1,22503:8622497,20473994 -g1,22503:12605945,20473994 -g1,22503:16257439,20473994 -g1,22503:17917209,20473994 -g1,22503:20240887,20473994 -g1,22503:20904795,20473994 -g1,22503:25884104,20473994 -h1,22503:26216058,20473994:0,0,0 -k1,22503:32583029,20473994:6366971 -g1,22503:32583029,20473994 -) -(1,22504:6630773,21158849:25952256,424439,112852 -h1,22504:6630773,21158849:0,0,0 -g1,22504:6962727,21158849 -g1,22504:7294681,21158849 -g1,22504:7626635,21158849 -g1,22504:7958589,21158849 -g1,22504:8290543,21158849 -g1,22504:8622497,21158849 -g1,22504:8954451,21158849 -g1,22504:9286405,21158849 -g1,22504:13601806,21158849 -h1,22504:13933760,21158849:0,0,0 -k1,22504:32583028,21158849:18649268 -g1,22504:32583028,21158849 -) -(1,22505:6630773,21843704:25952256,424439,112852 -h1,22505:6630773,21843704:0,0,0 -g1,22505:6962727,21843704 -g1,22505:7294681,21843704 -g1,22505:7626635,21843704 -g1,22505:7958589,21843704 -g1,22505:8290543,21843704 -g1,22505:8622497,21843704 -g1,22505:8954451,21843704 -g1,22505:9286405,21843704 -g1,22505:16589392,21843704 -g1,22505:17253300,21843704 -h1,22505:19245024,21843704:0,0,0 -k1,22505:32583029,21843704:13338005 -g1,22505:32583029,21843704 -) -(1,22506:6630773,22528559:25952256,431045,112852 -h1,22506:6630773,22528559:0,0,0 -g1,22506:7626635,22528559 -g1,22506:8622497,22528559 -g1,22506:12605945,22528559 -g1,22506:18913071,22528559 -g1,22506:20904795,22528559 -h1,22506:21236749,22528559:0,0,0 -k1,22506:32583029,22528559:11346280 -g1,22506:32583029,22528559 -) -(1,22507:6630773,23213414:25952256,424439,112852 -h1,22507:6630773,23213414:0,0,0 -g1,22507:6962727,23213414 -g1,22507:7294681,23213414 -g1,22507:7626635,23213414 -g1,22507:7958589,23213414 -g1,22507:8290543,23213414 -g1,22507:8622497,23213414 -g1,22507:8954451,23213414 -g1,22507:9286405,23213414 -g1,22507:13601806,23213414 -h1,22507:13933760,23213414:0,0,0 -k1,22507:32583028,23213414:18649268 -g1,22507:32583028,23213414 -) -(1,22508:6630773,23898269:25952256,424439,79822 -h1,22508:6630773,23898269:0,0,0 -g1,22508:6962727,23898269 -g1,22508:7294681,23898269 -g1,22508:7626635,23898269 -g1,22508:7958589,23898269 -g1,22508:8290543,23898269 -g1,22508:8622497,23898269 -g1,22508:8954451,23898269 -g1,22508:9286405,23898269 -g1,22508:15261576,23898269 -h1,22508:15593530,23898269:0,0,0 -k1,22508:32583030,23898269:16989500 -g1,22508:32583030,23898269 -) -(1,22509:6630773,24583124:25952256,424439,112852 -h1,22509:6630773,24583124:0,0,0 -g1,22509:6962727,24583124 -g1,22509:7294681,24583124 -g1,22509:7626635,24583124 -g1,22509:7958589,24583124 -g1,22509:8290543,24583124 -g1,22509:8622497,24583124 -g1,22509:8954451,24583124 -g1,22509:9286405,24583124 -g1,22509:9618359,24583124 -g1,22509:9950313,24583124 -g1,22509:10282267,24583124 -g1,22509:10614221,24583124 -g1,22509:10946175,24583124 -g1,22509:11278129,24583124 -g1,22509:11610083,24583124 -g1,22509:11942037,24583124 -g1,22509:18249162,24583124 -g1,22509:18913070,24583124 -g1,22509:20240886,24583124 -g1,22509:22232610,24583124 -g1,22509:22896518,24583124 -g1,22509:23892380,24583124 -g1,22509:25884104,24583124 -g1,22509:26548012,24583124 -h1,22509:28207782,24583124:0,0,0 -k1,22509:32583029,24583124:4375247 -g1,22509:32583029,24583124 -) -] -) -g1,22511:32583029,24695976 -g1,22511:6630773,24695976 -g1,22511:6630773,24695976 -g1,22511:32583029,24695976 -g1,22511:32583029,24695976 -) -h1,22511:6630773,24892584:0,0,0 -v1,22517:6630773,25757664:0,393216,0 -(1,22536:6630773,33786049:25952256,8421601,0 -g1,22536:6630773,33786049 -g1,22536:6237557,33786049 -r1,22557:6368629,33786049:131072,8421601,0 -g1,22536:6567858,33786049 -g1,22536:6764466,33786049 -[1,22536:6764466,33786049:25818563,8421601,0 -(1,22518:6764466,26030141:25818563,665693,196608 -(1,22517:6764466,26030141:0,665693,196608 -r1,22557:7868133,26030141:1103667,862301,196608 -k1,22517:6764466,26030141:-1103667 -) -(1,22517:6764466,26030141:1103667,665693,196608 -) -k1,22517:8064902,26030141:196769 -k1,22517:9791120,26030141:327680 -k1,22517:10475474,26030141:196766 -k1,22517:13804863,26030141:196768 -k1,22517:15278929,26030141:196769 -k1,22517:16579980,26030141:196769 -k1,22517:17524514,26030141:196768 -k1,22517:19859723,26030141:196769 -k1,22517:23413901,26030141:196769 -k1,22517:25346062,26030141:196768 -k1,22517:26561916,26030141:196769 -k1,22517:29835599,26030141:196768 -k1,22517:31516758,26030141:196769 -k1,22517:32583029,26030141:0 -) -(1,22518:6764466,26895221:25818563,505283,95026 -k1,22518:32583029,26895221:23483516 -g1,22518:32583029,26895221 -) -v1,22520:6764466,27580076:0,393216,0 -(1,22524:6764466,27914153:25818563,727293,196608 -g1,22524:6764466,27914153 -g1,22524:6764466,27914153 -g1,22524:6567858,27914153 -(1,22524:6567858,27914153:0,727293,196608 -r1,22557:32779637,27914153:26211779,923901,196608 -k1,22524:6567857,27914153:-26211780 -) -(1,22524:6567858,27914153:26211779,727293,196608 -[1,22524:6764466,27914153:25818563,530685,0 -(1,22522:6764466,27807907:25818563,424439,106246 -(1,22521:6764466,27807907:0,0,0 -g1,22521:6764466,27807907 -g1,22521:6764466,27807907 -g1,22521:6436786,27807907 -(1,22521:6436786,27807907:0,0,0 -) -g1,22521:6764466,27807907 -) -g1,22522:7760328,27807907 -g1,22522:8424236,27807907 -g1,22522:9752052,27807907 -g1,22522:10415960,27807907 -h1,22522:11411822,27807907:0,0,0 -k1,22522:32583030,27807907:21171208 -g1,22522:32583030,27807907 -) -] -) -g1,22524:32583029,27914153 -g1,22524:6764466,27914153 -g1,22524:6764466,27914153 -g1,22524:32583029,27914153 -g1,22524:32583029,27914153 -) -h1,22524:6764466,28110761:0,0,0 -v1,22528:6764466,28795616:0,393216,0 -(1,22532:6764466,29129693:25818563,727293,196608 -g1,22532:6764466,29129693 -g1,22532:6764466,29129693 -g1,22532:6567858,29129693 -(1,22532:6567858,29129693:0,727293,196608 -r1,22557:32779637,29129693:26211779,923901,196608 -k1,22532:6567857,29129693:-26211780 -) -(1,22532:6567858,29129693:26211779,727293,196608 -[1,22532:6764466,29129693:25818563,530685,0 -(1,22530:6764466,29023447:25818563,424439,106246 -(1,22529:6764466,29023447:0,0,0 -g1,22529:6764466,29023447 -g1,22529:6764466,29023447 -g1,22529:6436786,29023447 -(1,22529:6436786,29023447:0,0,0 -) -g1,22529:6764466,29023447 -) -g1,22530:8092282,29023447 -g1,22530:8756190,29023447 -g1,22530:10084006,29023447 -g1,22530:10747914,29023447 -h1,22530:11411822,29023447:0,0,0 -k1,22530:32583030,29023447:21171208 -g1,22530:32583030,29023447 -) -] -) -g1,22532:32583029,29129693 -g1,22532:6764466,29129693 -g1,22532:6764466,29129693 -g1,22532:32583029,29129693 -g1,22532:32583029,29129693 -) -h1,22532:6764466,29326301:0,0,0 -(1,22536:6764466,30191381:25818563,513147,126483 -h1,22535:6764466,30191381:983040,0,0 -k1,22535:9157021,30191381:212828 -k1,22535:12446764,30191381:212828 -k1,22535:14172818,30191381:212828 -k1,22535:15333297,30191381:212828 -k1,22535:19508432,30191381:212828 -k1,22535:20712821,30191381:212829 -k1,22535:21944734,30191381:212828 -k1,22535:25433707,30191381:212828 -k1,22535:27307217,30191381:212828 -k1,22535:28711490,30191381:212828 -k1,22535:30391014,30191381:212828 -k1,22535:31069803,30191381:212828 -k1,22535:32583029,30191381:0 -) -(1,22536:6764466,31056461:25818563,513147,126483 -k1,22535:7910472,31056461:198355 -k1,22535:8464688,31056461:198356 -k1,22535:11425386,31056461:198355 -k1,22535:14240595,31056461:198356 -k1,22535:15637604,31056461:198355 -k1,22535:17339356,31056461:198356 -k1,22535:18556796,31056461:198355 -k1,22535:22356355,31056461:198356 -k1,22535:24140681,31056461:198355 -k1,22535:24998329,31056461:198356 -k1,22535:29463078,31056461:198355 -k1,22535:30858121,31056461:198356 -k1,22535:32583029,31056461:0 -) -(1,22536:6764466,31921541:25818563,513147,134348 -k1,22535:7587871,31921541:164113 -k1,22535:11353187,31921541:164113 -k1,22535:12621582,31921541:164113 -k1,22535:13533461,31921541:164113 -k1,22535:16092915,31921541:164113 -k1,22535:16943189,31921541:164112 -k1,22535:18684754,31921541:164113 -k1,22535:20877862,31921541:164113 -k1,22535:22777368,31921541:164113 -k1,22535:26969324,31921541:164113 -k1,22535:28408112,31921541:164113 -k1,22535:29591310,31921541:164113 -k1,22535:32583029,31921541:0 -) -(1,22536:6764466,32786621:25818563,513147,134348 -k1,22535:8861454,32786621:241664 -k1,22535:10616344,32786621:241664 -k1,22535:13430296,32786621:241664 -k1,22535:15326744,32786621:241664 -k1,22535:17349677,32786621:241664 -k1,22535:19797283,32786621:241664 -k1,22535:21058031,32786621:241663 -k1,22535:22795882,32786621:241664 -k1,22535:24934158,32786621:241664 -k1,22535:27938165,32786621:241664 -k1,22535:29748106,32786621:241664 -k1,22535:30649062,32786621:241664 -k1,22536:32583029,32786621:0 -) -(1,22536:6764466,33651701:25818563,505283,134348 -g1,22535:8485441,33651701 -g1,22535:9703755,33651701 -g1,22535:11557768,33651701 -k1,22536:32583029,33651701:18898618 -g1,22536:32583029,33651701 -) -] -g1,22536:32583029,33786049 -) -h1,22536:6630773,33786049:0,0,0 -(1,22539:6630773,34651129:25952256,513147,134348 -h1,22538:6630773,34651129:983040,0,0 -k1,22538:8269909,34651129:168508 -k1,22538:9705913,34651129:168538 -k1,22538:10822103,34651129:168539 -k1,22538:12009726,34651129:168538 -k1,22538:14061114,34651129:168539 -k1,22538:15506949,34651129:168538 -k1,22538:16866932,34651129:168538 -k1,22538:17391331,34651129:168539 -k1,22538:19261839,34651129:168538 -k1,22538:20116540,34651129:168539 -k1,22538:21272050,34651129:168538 -k1,22538:22388239,34651129:168538 -k1,22538:24008400,34651129:168539 -k1,22538:25920851,34651129:168538 -k1,22538:27080950,34651129:168539 -k1,22538:29214913,34651129:168538 -k1,22538:30069614,34651129:168539 -k1,22538:30594012,34651129:168538 -k1,22539:32583029,34651129:0 -) -(1,22539:6630773,35516209:25952256,505283,126483 -g1,22538:8107299,35516209 -k1,22539:32583028,35516209:20963000 -g1,22539:32583028,35516209 -) -v1,22541:6630773,36201064:0,393216,0 -(1,22546:6630773,37226602:25952256,1418754,196608 -g1,22546:6630773,37226602 -g1,22546:6630773,37226602 -g1,22546:6434165,37226602 -(1,22546:6434165,37226602:0,1418754,196608 -r1,22557:32779637,37226602:26345472,1615362,196608 -k1,22546:6434165,37226602:-26345472 -) -(1,22546:6434165,37226602:26345472,1418754,196608 -[1,22546:6630773,37226602:25952256,1222146,0 -(1,22543:6630773,36428895:25952256,424439,106246 -(1,22542:6630773,36428895:0,0,0 -g1,22542:6630773,36428895 -g1,22542:6630773,36428895 -g1,22542:6303093,36428895 -(1,22542:6303093,36428895:0,0,0 -) -g1,22542:6630773,36428895 -) -g1,22543:8290543,36428895 -g1,22543:8954451,36428895 -g1,22543:10282267,36428895 -g1,22543:10946175,36428895 -g1,22543:12273991,36428895 -h1,22543:12605945,36428895:0,0,0 -k1,22543:32583029,36428895:19977084 -g1,22543:32583029,36428895 -) -(1,22544:6630773,37113750:25952256,431045,112852 -h1,22544:6630773,37113750:0,0,0 -g1,22544:6962727,37113750 -g1,22544:7294681,37113750 -g1,22544:7626635,37113750 -g1,22544:14929622,37113750 -g1,22544:15593530,37113750 -g1,22544:17585254,37113750 -g1,22544:18913070,37113750 -g1,22544:19908932,37113750 -g1,22544:21568702,37113750 -g1,22544:25220195,37113750 -g1,22544:28871688,37113750 -g1,22544:29535596,37113750 -h1,22544:30863412,37113750:0,0,0 -k1,22544:32583029,37113750:1719617 -g1,22544:32583029,37113750 -) -] -) -g1,22546:32583029,37226602 -g1,22546:6630773,37226602 -g1,22546:6630773,37226602 -g1,22546:32583029,37226602 -g1,22546:32583029,37226602 -) -h1,22546:6630773,37423210:0,0,0 -] -(1,22557:32583029,45706769:0,0,0 -g1,22557:32583029,45706769 -) -) -] -(1,22557:6630773,47279633:25952256,0,0 -h1,22557:6630773,47279633:25952256,0,0 -) -] -(1,22557:4262630,4025873:0,0,0 -[1,22557:-473656,4025873:0,0,0 -(1,22557:-473656,-710413:0,0,0 -(1,22557:-473656,-710413:0,0,0 -g1,22557:-473656,-710413 -) -g1,22557:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,22555:3078558,4812305:0,0,0 +(1,22555:3078558,49800853:0,16384,2228224 +g1,22555:29030814,49800853 +g1,22555:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22555:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22555:37855564,49800853:1179648,16384,0 +) +) +k1,22555:3078556,49800853:-34777008 +) +] +g1,22555:6630773,4812305 +k1,22555:21386205,4812305:13560055 +g1,22555:21999622,4812305 +g1,22555:25611966,4812305 +g1,22555:28956923,4812305 +g1,22555:29772190,4812305 +) +) +] +[1,22555:6630773,45706769:25952256,40108032,0 +(1,22555:6630773,45706769:25952256,40108032,0 +(1,22555:6630773,45706769:0,0,0 +g1,22555:6630773,45706769 +) +[1,22555:6630773,45706769:25952256,40108032,0 +(1,22490:6630773,6254097:25952256,513147,134348 +k1,22489:10550372,6254097:201086 +k1,22489:11410750,6254097:201086 +k1,22489:12838016,6254097:201087 +k1,22489:14307879,6254097:201086 +k1,22489:15700410,6254097:201086 +k1,22489:17368192,6254097:201086 +k1,22489:19546499,6254097:201086 +k1,22489:22703914,6254097:201086 +k1,22489:24663332,6254097:201087 +k1,22489:25547303,6254097:201086 +k1,22489:27353366,6254097:201086 +k1,22489:30975431,6254097:201086 +k1,22489:32583029,6254097:0 +) +(1,22490:6630773,7119177:25952256,505283,134348 +k1,22489:8002543,7119177:267488 +k1,22489:9660704,7119177:267487 +k1,22489:11716014,7119177:267488 +k1,22489:12792871,7119177:267487 +k1,22489:14079444,7119177:267488 +k1,22489:16408694,7119177:267487 +k1,22489:17359067,7119177:267488 +k1,22489:19298377,7119177:267487 +k1,22489:20638034,7119177:267488 +k1,22489:22555718,7119177:267487 +k1,22489:26598735,7119177:267488 +k1,22489:27970504,7119177:267487 +k1,22489:29917024,7119177:267488 +k1,22489:32583029,7119177:0 +) +(1,22490:6630773,7984257:25952256,505283,126483 +g1,22489:8219365,7984257 +g1,22489:12768219,7984257 +g1,22489:14251954,7984257 +g1,22489:15981449,7984257 +g1,22489:16832106,7984257 +g1,22489:17779101,7984257 +g1,22489:21159448,7984257 +g1,22489:22041562,7984257 +g1,22489:23653092,7984257 +g1,22489:24538483,7984257 +g1,22489:25093572,7984257 +k1,22490:32583029,7984257:5554179 +g1,22490:32583029,7984257 +) +(1,22492:6630773,8849337:25952256,513147,134348 +h1,22491:6630773,8849337:983040,0,0 +k1,22491:10449192,8849337:300446 +k1,22491:14416377,8849337:300446 +k1,22491:17007962,8849337:300446 +k1,22491:17664268,8849337:300446 +k1,22491:20089391,8849337:300446 +k1,22491:23292427,8849337:300446 +k1,22491:24540524,8849337:300446 +k1,22491:28324864,8849337:300446 +k1,22491:30232908,8849337:300446 +k1,22491:32583029,8849337:0 +) +(1,22492:6630773,9714417:25952256,513147,134348 +k1,22491:8298532,9714417:300022 +k1,22491:11600756,9714417:300021 +k1,22491:13185284,9714417:300022 +k1,22491:13698197,9714417:299921 +k1,22491:15473433,9714417:300021 +k1,22491:17286681,9714417:300022 +k1,22491:19620285,9714417:300022 +k1,22491:20536345,9714417:300022 +k1,22491:21855451,9714417:300021 +k1,22491:24573096,9714417:300022 +k1,22491:25524546,9714417:300022 +k1,22491:28119639,9714417:300022 +k1,22491:30016117,9714417:300021 +k1,22491:30975431,9714417:300022 +k1,22491:32583029,9714417:0 +) +(1,22492:6630773,10579497:25952256,505283,134348 +k1,22491:8109325,10579497:178973 +k1,22491:9049826,10579497:178973 +k1,22491:10702048,10579497:178973 +k1,22491:14965225,10579497:178973 +k1,22491:16538149,10579497:178973 +k1,22491:20383860,10579497:178972 +k1,22491:21667115,10579497:178973 +k1,22491:23131904,10579497:178973 +k1,22491:25648546,10579497:178973 +k1,22491:27112025,10579497:178973 +k1,22491:30240773,10579497:178973 +k1,22491:32583029,10579497:0 +) +(1,22492:6630773,11444577:25952256,505283,134348 +k1,22491:8080726,11444577:274893 +k1,22491:9632916,11444577:274893 +k1,22491:13870116,11444577:274893 +k1,22491:17047599,11444577:274893 +k1,22491:18745279,11444577:274893 +k1,22491:22097087,11444577:274893 +(1,22491:22097087,11444577:0,414482,115847 +r1,22555:22455353,11444577:358266,530329,115847 +k1,22491:22097087,11444577:-358266 +) +(1,22491:22097087,11444577:358266,414482,115847 +k1,22491:22097087,11444577:3277 +h1,22491:22452076,11444577:0,411205,112570 +) +k1,22491:22903916,11444577:274893 +(1,22491:22903916,11444577:0,452978,115847 +r1,22555:23262182,11444577:358266,568825,115847 +k1,22491:22903916,11444577:-358266 +) +(1,22491:22903916,11444577:358266,452978,115847 +k1,22491:22903916,11444577:3277 +h1,22491:23258905,11444577:0,411205,112570 +) +k1,22491:23537075,11444577:274893 +k1,22491:25003413,11444577:274893 +(1,22491:25003413,11444577:0,452978,115847 +r1,22555:25361679,11444577:358266,568825,115847 +k1,22491:25003413,11444577:-358266 +) +(1,22491:25003413,11444577:358266,452978,115847 +k1,22491:25003413,11444577:3277 +h1,22491:25358402,11444577:0,411205,112570 +) +k1,22491:25810242,11444577:274893 +k1,22491:28916290,11444577:274893 +k1,22491:32583029,11444577:0 +) +(1,22492:6630773,12309657:25952256,513147,134348 +k1,22491:9643423,12309657:252274 +k1,22491:13122689,12309657:252273 +k1,22491:14956347,12309657:252274 +k1,22491:16156271,12309657:252273 +k1,22491:19012290,12309657:252274 +k1,22491:21950884,12309657:252273 +k1,22491:24521822,12309657:252274 +k1,22491:25433387,12309657:252273 +k1,22491:27933546,12309657:252274 +k1,22491:29960535,12309657:252274 +(1,22491:29960535,12309657:0,414482,115847 +r1,22555:30318801,12309657:358266,530329,115847 +k1,22491:29960535,12309657:-358266 +) +(1,22491:29960535,12309657:358266,414482,115847 +k1,22491:29960535,12309657:3277 +h1,22491:30315524,12309657:0,411205,112570 +) +k1,22491:30571074,12309657:252273 +k1,22491:32583029,12309657:0 +) +(1,22492:6630773,13174737:25952256,513147,126483 +k1,22491:9614863,13174737:221747 +k1,22491:12328943,13174737:221746 +(1,22491:12328943,13174737:0,452978,115847 +r1,22555:12687209,13174737:358266,568825,115847 +k1,22491:12328943,13174737:-358266 +) +(1,22491:12328943,13174737:358266,452978,115847 +k1,22491:12328943,13174737:3277 +h1,22491:12683932,13174737:0,411205,112570 +) +k1,22491:12908956,13174737:221747 +k1,22491:16301989,13174737:221746 +k1,22491:18597950,13174737:221747 +k1,22491:20119275,13174737:221746 +k1,22491:21102550,13174737:221747 +k1,22491:22797545,13174737:221746 +k1,22491:24210737,13174737:221747 +(1,22491:24210737,13174737:0,452978,115847 +r1,22555:24569003,13174737:358266,568825,115847 +k1,22491:24210737,13174737:-358266 +) +(1,22491:24210737,13174737:358266,452978,115847 +k1,22491:24210737,13174737:3277 +h1,22491:24565726,13174737:0,411205,112570 +) +k1,22491:24790749,13174737:221746 +k1,22491:28183783,13174737:221747 +k1,22491:30479743,13174737:221746 +k1,22491:31510860,13174737:221747 +k1,22491:32583029,13174737:0 +) +(1,22492:6630773,14039817:25952256,513147,134348 +k1,22491:7528195,14039817:238130 +k1,22491:9217947,14039817:238130 +k1,22491:11331716,14039817:238129 +k1,22491:12766533,14039817:238130 +k1,22491:14612261,14039817:238130 +k1,22491:15501819,14039817:238130 +k1,22491:16487715,14039817:238130 +k1,22491:18239070,14039817:238129 +k1,22491:19163362,14039817:238130 +k1,22491:21475706,14039817:238130 +k1,22491:22818118,14039817:238130 +k1,22491:23804013,14039817:238129 +k1,22491:26702905,14039817:238130 +k1,22491:28676428,14039817:238130 +k1,22491:32583029,14039817:0 +) +(1,22492:6630773,14904897:25952256,505283,134348 +k1,22491:8050844,14904897:245011 +k1,22491:11268568,14904897:245011 +k1,22491:13135595,14904897:245011 +k1,22491:14128372,14904897:245011 +k1,22491:16256232,14904897:245011 +k1,22491:18282512,14904897:245011 +k1,22491:20569626,14904897:245012 +k1,22491:22017878,14904897:245011 +k1,22491:24826657,14904897:245011 +k1,22491:25833196,14904897:245011 +k1,22491:28111789,14904897:245011 +k1,22491:29808422,14904897:245011 +k1,22491:31330730,14904897:245011 +k1,22491:32227169,14904897:245011 +k1,22491:32583029,14904897:0 +) +(1,22492:6630773,15769977:25952256,505283,134348 +k1,22491:9458913,15769977:160825 +k1,22491:11402974,15769977:160826 +k1,22491:15047693,15769977:160825 +k1,22491:18909336,15769977:160825 +k1,22491:20677759,15769977:160825 +k1,22491:22218773,15769977:160826 +k1,22491:24001614,15769977:160825 +k1,22491:24910205,15769977:160825 +k1,22491:27864831,15769977:160826 +k1,22491:28641694,15769977:160825 +k1,22491:32583029,15769977:0 +) +(1,22492:6630773,16635057:25952256,505283,126483 +g1,22491:7481430,16635057 +g1,22491:9823686,16635057 +g1,22491:11307421,16635057 +g1,22491:12525735,16635057 +g1,22491:14967606,16635057 +g1,22491:18243750,16635057 +g1,22491:19434539,16635057 +k1,22492:32583029,16635057:9593818 +g1,22492:32583029,16635057 +) +(1,22494:6630773,17500137:25952256,505283,126483 +h1,22493:6630773,17500137:983040,0,0 +g1,22493:9645429,17500137 +g1,22493:11969335,17500137 +g1,22493:13949833,17500137 +(1,22493:13949833,17500137:0,435480,115847 +r1,22555:14659811,17500137:709978,551327,115847 +k1,22493:13949833,17500137:-709978 +) +(1,22493:13949833,17500137:709978,435480,115847 +k1,22493:13949833,17500137:3277 +h1,22493:14656534,17500137:0,411205,112570 +) +g1,22493:15032710,17500137 +(1,22493:15032710,17500137:0,435480,115847 +r1,22555:15742688,17500137:709978,551327,115847 +k1,22493:15032710,17500137:-709978 +) +(1,22493:15032710,17500137:709978,435480,115847 +k1,22493:15032710,17500137:3277 +h1,22493:15739411,17500137:0,411205,112570 +) +g1,22493:15941917,17500137 +g1,22493:17332591,17500137 +(1,22493:17332591,17500137:0,435480,115847 +r1,22555:18042569,17500137:709978,551327,115847 +k1,22493:17332591,17500137:-709978 +) +(1,22493:17332591,17500137:709978,435480,115847 +k1,22493:17332591,17500137:3277 +h1,22493:18039292,17500137:0,411205,112570 +) +g1,22493:18241798,17500137 +g1,22493:19573489,17500137 +g1,22493:20520484,17500137 +g1,22493:22232939,17500137 +k1,22494:32583029,17500137:8429230 +g1,22494:32583029,17500137 +) +v1,22496:6630773,18184992:0,393216,0 +(1,22509:6630773,24695976:25952256,6904200,196608 +g1,22509:6630773,24695976 +g1,22509:6630773,24695976 +g1,22509:6434165,24695976 +(1,22509:6434165,24695976:0,6904200,196608 +r1,22555:32779637,24695976:26345472,7100808,196608 +k1,22509:6434165,24695976:-26345472 +) +(1,22509:6434165,24695976:26345472,6904200,196608 +[1,22509:6630773,24695976:25952256,6707592,0 +(1,22498:6630773,18419429:25952256,431045,112852 +(1,22497:6630773,18419429:0,0,0 +g1,22497:6630773,18419429 +g1,22497:6630773,18419429 +g1,22497:6303093,18419429 +(1,22497:6303093,18419429:0,0,0 +) +g1,22497:6630773,18419429 +) +g1,22498:7626635,18419429 +g1,22498:8622497,18419429 +g1,22498:12605945,18419429 +g1,22498:16257439,18419429 +g1,22498:17917209,18419429 +g1,22498:20240887,18419429 +g1,22498:20904795,18419429 +g1,22498:25552151,18419429 +h1,22498:25884105,18419429:0,0,0 +k1,22498:32583029,18419429:6698924 +g1,22498:32583029,18419429 +) +(1,22499:6630773,19104284:25952256,424439,112852 +h1,22499:6630773,19104284:0,0,0 +g1,22499:6962727,19104284 +g1,22499:7294681,19104284 +g1,22499:7626635,19104284 +g1,22499:7958589,19104284 +g1,22499:8290543,19104284 +g1,22499:8622497,19104284 +g1,22499:8954451,19104284 +g1,22499:9286405,19104284 +g1,22499:13601806,19104284 +h1,22499:13933760,19104284:0,0,0 +k1,22499:32583028,19104284:18649268 +g1,22499:32583028,19104284 +) +(1,22500:6630773,19789139:25952256,424439,112852 +h1,22500:6630773,19789139:0,0,0 +g1,22500:6962727,19789139 +g1,22500:7294681,19789139 +g1,22500:7626635,19789139 +g1,22500:7958589,19789139 +g1,22500:8290543,19789139 +g1,22500:8622497,19789139 +g1,22500:8954451,19789139 +g1,22500:9286405,19789139 +g1,22500:16589392,19789139 +g1,22500:17253300,19789139 +h1,22500:19245024,19789139:0,0,0 +k1,22500:32583029,19789139:13338005 +g1,22500:32583029,19789139 +) +(1,22501:6630773,20473994:25952256,431045,112852 +h1,22501:6630773,20473994:0,0,0 +g1,22501:7626635,20473994 +g1,22501:8622497,20473994 +g1,22501:12605945,20473994 +g1,22501:16257439,20473994 +g1,22501:17917209,20473994 +g1,22501:20240887,20473994 +g1,22501:20904795,20473994 +g1,22501:25884104,20473994 +h1,22501:26216058,20473994:0,0,0 +k1,22501:32583029,20473994:6366971 +g1,22501:32583029,20473994 +) +(1,22502:6630773,21158849:25952256,424439,112852 +h1,22502:6630773,21158849:0,0,0 +g1,22502:6962727,21158849 +g1,22502:7294681,21158849 +g1,22502:7626635,21158849 +g1,22502:7958589,21158849 +g1,22502:8290543,21158849 +g1,22502:8622497,21158849 +g1,22502:8954451,21158849 +g1,22502:9286405,21158849 +g1,22502:13601806,21158849 +h1,22502:13933760,21158849:0,0,0 +k1,22502:32583028,21158849:18649268 +g1,22502:32583028,21158849 +) +(1,22503:6630773,21843704:25952256,424439,112852 +h1,22503:6630773,21843704:0,0,0 +g1,22503:6962727,21843704 +g1,22503:7294681,21843704 +g1,22503:7626635,21843704 +g1,22503:7958589,21843704 +g1,22503:8290543,21843704 +g1,22503:8622497,21843704 +g1,22503:8954451,21843704 +g1,22503:9286405,21843704 +g1,22503:16589392,21843704 +g1,22503:17253300,21843704 +h1,22503:19245024,21843704:0,0,0 +k1,22503:32583029,21843704:13338005 +g1,22503:32583029,21843704 +) +(1,22504:6630773,22528559:25952256,431045,112852 +h1,22504:6630773,22528559:0,0,0 +g1,22504:7626635,22528559 +g1,22504:8622497,22528559 +g1,22504:12605945,22528559 +g1,22504:18913071,22528559 +g1,22504:20904795,22528559 +h1,22504:21236749,22528559:0,0,0 +k1,22504:32583029,22528559:11346280 +g1,22504:32583029,22528559 +) +(1,22505:6630773,23213414:25952256,424439,112852 +h1,22505:6630773,23213414:0,0,0 +g1,22505:6962727,23213414 +g1,22505:7294681,23213414 +g1,22505:7626635,23213414 +g1,22505:7958589,23213414 +g1,22505:8290543,23213414 +g1,22505:8622497,23213414 +g1,22505:8954451,23213414 +g1,22505:9286405,23213414 +g1,22505:13601806,23213414 +h1,22505:13933760,23213414:0,0,0 +k1,22505:32583028,23213414:18649268 +g1,22505:32583028,23213414 +) +(1,22506:6630773,23898269:25952256,424439,79822 +h1,22506:6630773,23898269:0,0,0 +g1,22506:6962727,23898269 +g1,22506:7294681,23898269 +g1,22506:7626635,23898269 +g1,22506:7958589,23898269 +g1,22506:8290543,23898269 +g1,22506:8622497,23898269 +g1,22506:8954451,23898269 +g1,22506:9286405,23898269 +g1,22506:15261576,23898269 +h1,22506:15593530,23898269:0,0,0 +k1,22506:32583030,23898269:16989500 +g1,22506:32583030,23898269 +) +(1,22507:6630773,24583124:25952256,424439,112852 +h1,22507:6630773,24583124:0,0,0 +g1,22507:6962727,24583124 +g1,22507:7294681,24583124 +g1,22507:7626635,24583124 +g1,22507:7958589,24583124 +g1,22507:8290543,24583124 +g1,22507:8622497,24583124 +g1,22507:8954451,24583124 +g1,22507:9286405,24583124 +g1,22507:9618359,24583124 +g1,22507:9950313,24583124 +g1,22507:10282267,24583124 +g1,22507:10614221,24583124 +g1,22507:10946175,24583124 +g1,22507:11278129,24583124 +g1,22507:11610083,24583124 +g1,22507:11942037,24583124 +g1,22507:18249162,24583124 +g1,22507:18913070,24583124 +g1,22507:20240886,24583124 +g1,22507:22232610,24583124 +g1,22507:22896518,24583124 +g1,22507:23892380,24583124 +g1,22507:25884104,24583124 +g1,22507:26548012,24583124 +h1,22507:28207782,24583124:0,0,0 +k1,22507:32583029,24583124:4375247 +g1,22507:32583029,24583124 +) +] +) +g1,22509:32583029,24695976 +g1,22509:6630773,24695976 +g1,22509:6630773,24695976 +g1,22509:32583029,24695976 +g1,22509:32583029,24695976 +) +h1,22509:6630773,24892584:0,0,0 +v1,22515:6630773,25757664:0,393216,0 +(1,22534:6630773,33786049:25952256,8421601,0 +g1,22534:6630773,33786049 +g1,22534:6237557,33786049 +r1,22555:6368629,33786049:131072,8421601,0 +g1,22534:6567858,33786049 +g1,22534:6764466,33786049 +[1,22534:6764466,33786049:25818563,8421601,0 +(1,22516:6764466,26030141:25818563,665693,196608 +(1,22515:6764466,26030141:0,665693,196608 +r1,22555:7868133,26030141:1103667,862301,196608 +k1,22515:6764466,26030141:-1103667 +) +(1,22515:6764466,26030141:1103667,665693,196608 +) +k1,22515:8064902,26030141:196769 +k1,22515:9791120,26030141:327680 +k1,22515:10475474,26030141:196766 +k1,22515:13804863,26030141:196768 +k1,22515:15278929,26030141:196769 +k1,22515:16579980,26030141:196769 +k1,22515:17524514,26030141:196768 +k1,22515:19859723,26030141:196769 +k1,22515:23413901,26030141:196769 +k1,22515:25346062,26030141:196768 +k1,22515:26561916,26030141:196769 +k1,22515:29835599,26030141:196768 +k1,22515:31516758,26030141:196769 +k1,22515:32583029,26030141:0 +) +(1,22516:6764466,26895221:25818563,505283,95026 +k1,22516:32583029,26895221:23483516 +g1,22516:32583029,26895221 +) +v1,22518:6764466,27580076:0,393216,0 +(1,22522:6764466,27914153:25818563,727293,196608 +g1,22522:6764466,27914153 +g1,22522:6764466,27914153 +g1,22522:6567858,27914153 +(1,22522:6567858,27914153:0,727293,196608 +r1,22555:32779637,27914153:26211779,923901,196608 +k1,22522:6567857,27914153:-26211780 +) +(1,22522:6567858,27914153:26211779,727293,196608 +[1,22522:6764466,27914153:25818563,530685,0 +(1,22520:6764466,27807907:25818563,424439,106246 +(1,22519:6764466,27807907:0,0,0 +g1,22519:6764466,27807907 +g1,22519:6764466,27807907 +g1,22519:6436786,27807907 +(1,22519:6436786,27807907:0,0,0 +) +g1,22519:6764466,27807907 +) +g1,22520:7760328,27807907 +g1,22520:8424236,27807907 +g1,22520:9752052,27807907 +g1,22520:10415960,27807907 +h1,22520:11411822,27807907:0,0,0 +k1,22520:32583030,27807907:21171208 +g1,22520:32583030,27807907 +) +] +) +g1,22522:32583029,27914153 +g1,22522:6764466,27914153 +g1,22522:6764466,27914153 +g1,22522:32583029,27914153 +g1,22522:32583029,27914153 +) +h1,22522:6764466,28110761:0,0,0 +v1,22526:6764466,28795616:0,393216,0 +(1,22530:6764466,29129693:25818563,727293,196608 +g1,22530:6764466,29129693 +g1,22530:6764466,29129693 +g1,22530:6567858,29129693 +(1,22530:6567858,29129693:0,727293,196608 +r1,22555:32779637,29129693:26211779,923901,196608 +k1,22530:6567857,29129693:-26211780 +) +(1,22530:6567858,29129693:26211779,727293,196608 +[1,22530:6764466,29129693:25818563,530685,0 +(1,22528:6764466,29023447:25818563,424439,106246 +(1,22527:6764466,29023447:0,0,0 +g1,22527:6764466,29023447 +g1,22527:6764466,29023447 +g1,22527:6436786,29023447 +(1,22527:6436786,29023447:0,0,0 +) +g1,22527:6764466,29023447 +) +g1,22528:8092282,29023447 +g1,22528:8756190,29023447 +g1,22528:10084006,29023447 +g1,22528:10747914,29023447 +h1,22528:11411822,29023447:0,0,0 +k1,22528:32583030,29023447:21171208 +g1,22528:32583030,29023447 +) +] +) +g1,22530:32583029,29129693 +g1,22530:6764466,29129693 +g1,22530:6764466,29129693 +g1,22530:32583029,29129693 +g1,22530:32583029,29129693 +) +h1,22530:6764466,29326301:0,0,0 +(1,22534:6764466,30191381:25818563,513147,126483 +h1,22533:6764466,30191381:983040,0,0 +k1,22533:9157021,30191381:212828 +k1,22533:12446764,30191381:212828 +k1,22533:14172818,30191381:212828 +k1,22533:15333297,30191381:212828 +k1,22533:19508432,30191381:212828 +k1,22533:20712821,30191381:212829 +k1,22533:21944734,30191381:212828 +k1,22533:25433707,30191381:212828 +k1,22533:27307217,30191381:212828 +k1,22533:28711490,30191381:212828 +k1,22533:30391014,30191381:212828 +k1,22533:31069803,30191381:212828 +k1,22533:32583029,30191381:0 +) +(1,22534:6764466,31056461:25818563,513147,126483 +k1,22533:7910472,31056461:198355 +k1,22533:8464688,31056461:198356 +k1,22533:11425386,31056461:198355 +k1,22533:14240595,31056461:198356 +k1,22533:15637604,31056461:198355 +k1,22533:17339356,31056461:198356 +k1,22533:18556796,31056461:198355 +k1,22533:22356355,31056461:198356 +k1,22533:24140681,31056461:198355 +k1,22533:24998329,31056461:198356 +k1,22533:29463078,31056461:198355 +k1,22533:30858121,31056461:198356 +k1,22533:32583029,31056461:0 +) +(1,22534:6764466,31921541:25818563,513147,134348 +k1,22533:7587871,31921541:164113 +k1,22533:11353187,31921541:164113 +k1,22533:12621582,31921541:164113 +k1,22533:13533461,31921541:164113 +k1,22533:16092915,31921541:164113 +k1,22533:16943189,31921541:164112 +k1,22533:18684754,31921541:164113 +k1,22533:20877862,31921541:164113 +k1,22533:22777368,31921541:164113 +k1,22533:26969324,31921541:164113 +k1,22533:28408112,31921541:164113 +k1,22533:29591310,31921541:164113 +k1,22533:32583029,31921541:0 +) +(1,22534:6764466,32786621:25818563,513147,134348 +k1,22533:8861454,32786621:241664 +k1,22533:10616344,32786621:241664 +k1,22533:13430296,32786621:241664 +k1,22533:15326744,32786621:241664 +k1,22533:17349677,32786621:241664 +k1,22533:19797283,32786621:241664 +k1,22533:21058031,32786621:241663 +k1,22533:22795882,32786621:241664 +k1,22533:24934158,32786621:241664 +k1,22533:27938165,32786621:241664 +k1,22533:29748106,32786621:241664 +k1,22533:30649062,32786621:241664 +k1,22534:32583029,32786621:0 +) +(1,22534:6764466,33651701:25818563,505283,134348 +g1,22533:8485441,33651701 +g1,22533:9703755,33651701 +g1,22533:11557768,33651701 +k1,22534:32583029,33651701:18898618 +g1,22534:32583029,33651701 +) +] +g1,22534:32583029,33786049 +) +h1,22534:6630773,33786049:0,0,0 +(1,22537:6630773,34651129:25952256,513147,134348 +h1,22536:6630773,34651129:983040,0,0 +k1,22536:8269909,34651129:168508 +k1,22536:9705913,34651129:168538 +k1,22536:10822103,34651129:168539 +k1,22536:12009726,34651129:168538 +k1,22536:14061114,34651129:168539 +k1,22536:15506949,34651129:168538 +k1,22536:16866932,34651129:168538 +k1,22536:17391331,34651129:168539 +k1,22536:19261839,34651129:168538 +k1,22536:20116540,34651129:168539 +k1,22536:21272050,34651129:168538 +k1,22536:22388239,34651129:168538 +k1,22536:24008400,34651129:168539 +k1,22536:25920851,34651129:168538 +k1,22536:27080950,34651129:168539 +k1,22536:29214913,34651129:168538 +k1,22536:30069614,34651129:168539 +k1,22536:30594012,34651129:168538 +k1,22537:32583029,34651129:0 +) +(1,22537:6630773,35516209:25952256,505283,126483 +g1,22536:8107299,35516209 +k1,22537:32583028,35516209:20963000 +g1,22537:32583028,35516209 +) +v1,22539:6630773,36201064:0,393216,0 +(1,22544:6630773,37226602:25952256,1418754,196608 +g1,22544:6630773,37226602 +g1,22544:6630773,37226602 +g1,22544:6434165,37226602 +(1,22544:6434165,37226602:0,1418754,196608 +r1,22555:32779637,37226602:26345472,1615362,196608 +k1,22544:6434165,37226602:-26345472 +) +(1,22544:6434165,37226602:26345472,1418754,196608 +[1,22544:6630773,37226602:25952256,1222146,0 +(1,22541:6630773,36428895:25952256,424439,106246 +(1,22540:6630773,36428895:0,0,0 +g1,22540:6630773,36428895 +g1,22540:6630773,36428895 +g1,22540:6303093,36428895 +(1,22540:6303093,36428895:0,0,0 +) +g1,22540:6630773,36428895 +) +g1,22541:8290543,36428895 +g1,22541:8954451,36428895 +g1,22541:10282267,36428895 +g1,22541:10946175,36428895 +g1,22541:12273991,36428895 +h1,22541:12605945,36428895:0,0,0 +k1,22541:32583029,36428895:19977084 +g1,22541:32583029,36428895 +) +(1,22542:6630773,37113750:25952256,431045,112852 +h1,22542:6630773,37113750:0,0,0 +g1,22542:6962727,37113750 +g1,22542:7294681,37113750 +g1,22542:7626635,37113750 +g1,22542:14929622,37113750 +g1,22542:15593530,37113750 +g1,22542:17585254,37113750 +g1,22542:18913070,37113750 +g1,22542:19908932,37113750 +g1,22542:21568702,37113750 +g1,22542:25220195,37113750 +g1,22542:28871688,37113750 +g1,22542:29535596,37113750 +h1,22542:30863412,37113750:0,0,0 +k1,22542:32583029,37113750:1719617 +g1,22542:32583029,37113750 +) +] +) +g1,22544:32583029,37226602 +g1,22544:6630773,37226602 +g1,22544:6630773,37226602 +g1,22544:32583029,37226602 +g1,22544:32583029,37226602 +) +h1,22544:6630773,37423210:0,0,0 +] +(1,22555:32583029,45706769:0,0,0 +g1,22555:32583029,45706769 +) +) +] +(1,22555:6630773,47279633:25952256,0,0 +h1,22555:6630773,47279633:25952256,0,0 +) +] +(1,22555:4262630,4025873:0,0,0 +[1,22555:-473656,4025873:0,0,0 +(1,22555:-473656,-710413:0,0,0 +(1,22555:-473656,-710413:0,0,0 +g1,22555:-473656,-710413 +) +g1,22555:-473656,-710413 ) ] ) ] !25099 -}385 -Input:4263:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}386 +Input:4267:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{386 -[1,22574:4262630,47279633:28320399,43253760,0 -(1,22574:4262630,4025873:0,0,0 -[1,22574:-473656,4025873:0,0,0 -(1,22574:-473656,-710413:0,0,0 -(1,22574:-473656,-644877:0,0,0 -k1,22574:-473656,-644877:-65536 +{387 +[1,22572:4262630,47279633:28320399,43253760,0 +(1,22572:4262630,4025873:0,0,0 +[1,22572:-473656,4025873:0,0,0 +(1,22572:-473656,-710413:0,0,0 +(1,22572:-473656,-644877:0,0,0 +k1,22572:-473656,-644877:-65536 ) -(1,22574:-473656,4736287:0,0,0 -k1,22574:-473656,4736287:5209943 +(1,22572:-473656,4736287:0,0,0 +k1,22572:-473656,4736287:5209943 ) -g1,22574:-473656,-710413 +g1,22572:-473656,-710413 ) ] ) -[1,22574:6630773,47279633:25952256,43253760,0 -[1,22574:6630773,4812305:25952256,786432,0 -(1,22574:6630773,4812305:25952256,530548,134348 -(1,22574:6630773,4812305:25952256,530548,134348 -g1,22574:3078558,4812305 -[1,22574:3078558,4812305:0,0,0 -(1,22574:3078558,2439708:0,1703936,0 -k1,22574:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22574:2537886,2439708:1179648,16384,0 +[1,22572:6630773,47279633:25952256,43253760,0 +[1,22572:6630773,4812305:25952256,786432,0 +(1,22572:6630773,4812305:25952256,530548,134348 +(1,22572:6630773,4812305:25952256,530548,134348 +g1,22572:3078558,4812305 +[1,22572:3078558,4812305:0,0,0 +(1,22572:3078558,2439708:0,1703936,0 +k1,22572:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22572:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22574:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22572:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22574:3078558,4812305:0,0,0 -(1,22574:3078558,2439708:0,1703936,0 -g1,22574:29030814,2439708 -g1,22574:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22574:36151628,1915420:16384,1179648,0 +[1,22572:3078558,4812305:0,0,0 +(1,22572:3078558,2439708:0,1703936,0 +g1,22572:29030814,2439708 +g1,22572:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22572:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22574:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22572:37855564,2439708:1179648,16384,0 ) ) -k1,22574:3078556,2439708:-34777008 +k1,22572:3078556,2439708:-34777008 ) ] -[1,22574:3078558,4812305:0,0,0 -(1,22574:3078558,49800853:0,16384,2228224 -k1,22574:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22574:2537886,49800853:1179648,16384,0 +[1,22572:3078558,4812305:0,0,0 +(1,22572:3078558,49800853:0,16384,2228224 +k1,22572:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22572:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22574:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22572:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22574:3078558,4812305:0,0,0 -(1,22574:3078558,49800853:0,16384,2228224 -g1,22574:29030814,49800853 -g1,22574:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22574:36151628,51504789:16384,1179648,0 +[1,22572:3078558,4812305:0,0,0 +(1,22572:3078558,49800853:0,16384,2228224 +g1,22572:29030814,49800853 +g1,22572:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22572:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22574:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22572:37855564,49800853:1179648,16384,0 ) ) -k1,22574:3078556,49800853:-34777008 +k1,22572:3078556,49800853:-34777008 ) ] -g1,22574:6630773,4812305 -g1,22574:6630773,4812305 -g1,22574:8592265,4812305 -g1,22574:12111033,4812305 -g1,22574:15898358,4812305 -k1,22574:31387652,4812305:15489294 -) -) -] -[1,22574:6630773,45706769:25952256,40108032,0 -(1,22574:6630773,45706769:25952256,40108032,0 -(1,22574:6630773,45706769:0,0,0 -g1,22574:6630773,45706769 -) -[1,22574:6630773,45706769:25952256,40108032,0 -(1,22549:6630773,28955186:25952256,23356449,0 -k1,22549:7928465,28955186:1297692 -h1,22548:7928465,28955186:0,0,0 -(1,22548:7928465,28955186:23356872,23356449,0 -(1,22548:7928465,28955186:23356506,23356506,0 -(1,22548:7928465,28955186:23356506,23356506,0 -(1,22548:7928465,28955186:0,23356506,0 -(1,22548:7928465,28955186:0,37890292,0 -(1,22548:7928465,28955186:37890292,37890292,0 -) -k1,22548:7928465,28955186:-37890292 -) -) -g1,22548:31284971,28955186 -) -) -) -g1,22549:31285337,28955186 -k1,22549:32583029,28955186:1297692 -) -(1,22558:6630773,29820266:25952256,513147,134348 -h1,22557:6630773,29820266:983040,0,0 -k1,22557:10305705,29820266:156959 -k1,22557:14129402,29820266:156958 -k1,22557:15387366,29820266:156959 -k1,22557:16160362,29820266:156958 -k1,22557:18305683,29820266:156959 -k1,22557:21126680,29820266:156958 -k1,22557:22865023,29820266:156959 -k1,22557:23969633,29820266:156959 -k1,22557:25145676,29820266:156958 -k1,22557:27895239,29820266:156959 -k1,22557:28711489,29820266:156958 -k1,22557:31554769,29820266:156959 -k1,22558:32583029,29820266:0 -) -(1,22558:6630773,30685346:25952256,513147,134348 -k1,22557:8390465,30685346:189449 -k1,22557:11245920,30685346:189450 -k1,22557:12094661,30685346:189449 -k1,22557:14164994,30685346:189450 -k1,22557:15545888,30685346:189449 -k1,22557:19090125,30685346:189449 -k1,22557:19895613,30685346:189450 -k1,22557:21104147,30685346:189449 -k1,22557:22947069,30685346:189449 -k1,22557:25124881,30685346:189450 -k1,22557:26921928,30685346:189449 -k1,22557:28302823,30685346:189450 -k1,22557:30194242,30685346:189449 -k1,22557:32583029,30685346:0 -) -(1,22558:6630773,31550426:25952256,505283,134348 -g1,22557:9119830,31550426 -g1,22557:10812625,31550426 -g1,22557:11698016,31550426 -g1,22557:14656311,31550426 -g1,22557:18921394,31550426 -g1,22557:20312068,31550426 -g1,22557:21977993,31550426 -k1,22558:32583029,31550426:8656651 -g1,22558:32583029,31550426 -) -v1,22560:6630773,32415506:0,393216,0 -(1,22561:6630773,34580447:25952256,2558157,0 -g1,22561:6630773,34580447 -g1,22561:6237557,34580447 -r1,22574:6368629,34580447:131072,2558157,0 -g1,22561:6567858,34580447 -g1,22561:6764466,34580447 -[1,22561:6764466,34580447:25818563,2558157,0 -(1,22561:6764466,32723804:25818563,701514,196608 -(1,22560:6764466,32723804:0,701514,196608 -r1,22574:8471973,32723804:1707507,898122,196608 -k1,22560:6764466,32723804:-1707507 -) -(1,22560:6764466,32723804:1707507,701514,196608 -) -k1,22560:8670059,32723804:198086 -k1,22560:10396277,32723804:327680 -k1,22560:13129295,32723804:198085 -k1,22560:16994120,32723804:198086 -k1,22560:18296488,32723804:198086 -k1,22560:19242339,32723804:198085 -k1,22560:20794399,32723804:198086 -k1,22560:23143377,32723804:198086 -k1,22560:25150257,32723804:198086 -k1,22560:26367427,32723804:198085 -k1,22560:31391584,32723804:198086 -k1,22560:32583029,32723804:0 -) -(1,22561:6764466,33588884:25818563,513147,126483 -k1,22560:7749554,33588884:196690 -k1,22560:11111633,33588884:196690 -k1,22560:12499767,33588884:196689 -k1,22560:13602820,33588884:196690 -k1,22560:14450938,33588884:196690 -k1,22560:16327971,33588884:196690 -k1,22560:17855042,33588884:196690 -k1,22560:18509828,33588884:196689 -k1,22560:20475335,33588884:196690 -k1,22560:21419791,33588884:196690 -k1,22560:23593702,33588884:196690 -k1,22560:24441820,33588884:196690 -k1,22560:25982653,33588884:196690 -k1,22560:27790872,33588884:196689 -k1,22560:28893925,33588884:196690 -k1,22560:29742043,33588884:196690 -k1,22560:32583029,33588884:0 -) -(1,22561:6764466,34453964:25818563,505283,126483 -g1,22560:8571293,34453964 -g1,22560:9916747,34453964 -g1,22560:11859889,34453964 -g1,22560:13229591,34453964 -g1,22560:15197637,34453964 -g1,22560:16489351,34453964 -g1,22560:17304618,34453964 -g1,22560:18962678,34453964 -g1,22560:20758364,34453964 -g1,22560:21640478,34453964 -k1,22561:32583029,34453964:8588498 -g1,22561:32583029,34453964 -) -] -g1,22561:32583029,34580447 -) -h1,22561:6630773,34580447:0,0,0 -(1,22565:6630773,37411607:25952256,32768,229376 -(1,22565:6630773,37411607:0,32768,229376 -(1,22565:6630773,37411607:5505024,32768,229376 -r1,22574:12135797,37411607:5505024,262144,229376 -) -k1,22565:6630773,37411607:-5505024 -) -(1,22565:6630773,37411607:25952256,32768,0 -r1,22574:32583029,37411607:25952256,32768,0 -) -) -(1,22565:6630773,39043459:25952256,606339,161218 -(1,22565:6630773,39043459:2464678,582746,14155 -g1,22565:6630773,39043459 -g1,22565:9095451,39043459 -) -g1,22565:11581363,39043459 -(1,22565:11581363,39043459:0,542918,138361 -r1,22574:14964351,39043459:3382988,681279,138361 -k1,22565:11581363,39043459:-3382988 -) -(1,22565:11581363,39043459:3382988,542918,138361 -k1,22565:11581363,39043459:3277 -h1,22565:14961074,39043459:0,493446,135084 -) -g1,22565:15209718,39043459 -k1,22565:32583029,39043459:12613038 -g1,22565:32583029,39043459 -) -(1,22569:6630773,40301755:25952256,505283,134348 -k1,22568:9712730,40301755:202305 -k1,22568:13355019,40301755:202304 -k1,22568:14548884,40301755:202305 -k1,22568:16953198,40301755:202304 -k1,22568:17806931,40301755:202305 -k1,22568:18424075,40301755:202301 -k1,22568:22570337,40301755:202305 -k1,22568:23844810,40301755:202304 -k1,22568:25427303,40301755:202305 -k1,22568:26621167,40301755:202304 -k1,22568:29471127,40301755:202305 -k1,22568:30286193,40301755:202304 -k1,22568:31507583,40301755:202305 -k1,22569:32583029,40301755:0 -) -(1,22569:6630773,41166835:25952256,513147,126483 -k1,22568:8463706,41166835:209606 -k1,22568:9332604,41166835:209606 -k1,22568:13865620,41166835:209606 -k1,22568:18039498,41166835:209605 -k1,22568:18876939,41166835:209606 -k1,22568:20778685,41166835:209606 -k1,22568:23643154,41166835:209606 -k1,22568:25232948,41166835:209606 -k1,22568:26434114,41166835:209606 -k1,22568:28845729,41166835:209605 -k1,22568:29706763,41166835:209606 -k1,22568:30935454,41166835:209606 -k1,22568:32583029,41166835:0 -) -(1,22569:6630773,42031915:25952256,505283,173670 -k1,22568:8607182,42031915:193830 -k1,22568:9417050,42031915:193830 -[1,22568:9546156,42031915:341312,473825,0 -(1,22568:9546156,41893896:341312,335806,0 -) -] -(1,22568:10114422,42205585:370934,473825,0 -) -k1,22568:11201508,42031915:193830 -k1,22568:12953129,42031915:193830 -k1,22568:14138519,42031915:193830 -k1,22568:15845575,42031915:193830 -k1,22568:16655443,42031915:193830 -k1,22568:19799048,42031915:193830 -k1,22568:22151634,42031915:193830 -k1,22568:23491689,42031915:193830 -k1,22568:25466788,42031915:193830 -k1,22568:26857305,42031915:193830 -k1,22568:29135180,42031915:193830 -k1,22568:32583029,42031915:0 -) -(1,22569:6630773,42896995:25952256,513147,134348 -g1,22568:8324878,42896995 -g1,22568:11379511,42896995 -g1,22568:12770185,42896995 -g1,22568:14652379,42896995 -g1,22568:16543748,42896995 -g1,22568:18168385,42896995 -g1,22568:19019042,42896995 -g1,22568:19966037,42896995 -g1,22568:22207368,42896995 -g1,22568:23478766,42896995 -g1,22568:24136092,42896995 -g1,22568:25644075,42896995 -g1,22568:26862389,42896995 -g1,22568:28083324,42896995 -k1,22569:32583029,42896995:2869825 -g1,22569:32583029,42896995 -) -v1,22571:6630773,43762075:0,393216,0 -(1,22574:6630773,45109123:25952256,1740264,0 -g1,22574:6630773,45109123 -g1,22574:6237557,45109123 -r1,22574:6368629,45109123:131072,1740264,0 -g1,22574:6567858,45109123 -g1,22574:6764466,45109123 -[1,22574:6764466,45109123:25818563,1740264,0 -(1,22572:6764466,44070373:25818563,701514,196608 -(1,22571:6764466,44070373:0,701514,196608 -r1,22574:7761522,44070373:997056,898122,196608 -k1,22571:6764466,44070373:-997056 -) -(1,22571:6764466,44070373:997056,701514,196608 -) -k1,22571:7976915,44070373:215393 -k1,22571:8304595,44070373:327680 -k1,22571:9716676,44070373:215394 -k1,22571:11523939,44070373:215393 -k1,22571:14847050,44070373:215394 -k1,22571:15713871,44070373:215393 -k1,22571:19192303,44070373:215394 -k1,22571:20645671,44070373:215393 -k1,22571:22087244,44070373:215394 -k1,22571:26093239,44070373:215393 -k1,22571:26924671,44070373:215394 -k1,22571:27554891,44070373:215377 -k1,22571:29972295,44070373:215394 -k1,22571:30839116,44070373:215393 -k1,22571:32583029,44070373:0 -) -(1,22572:6764466,44935453:25818563,513147,173670 -k1,22571:9598977,44935453:204551 -k1,22571:11538920,44935453:204550 -[1,22571:11668026,44935453:341312,473825,0 -(1,22571:11668026,44797434:341312,335806,0 -) -] -(1,22571:12236292,45109123:370934,473825,0 -) -k1,22571:13160429,44935453:204551 -k1,22571:14047864,44935453:204550 -k1,22571:15987808,44935453:204551 -k1,22571:18060784,44935453:204545 -k1,22571:18796831,44935453:204550 -k1,22571:19614144,44935453:204551 -k1,22571:20837780,44935453:204551 -k1,22571:22406134,44935453:204550 -k1,22571:23269977,44935453:204551 -k1,22571:24493612,44935453:204550 -k1,22571:25113000,44935453:204545 -k1,22571:28233248,44935453:204551 -k1,22571:30270185,44935453:204550 -k1,22571:31006233,44935453:204551 -k1,22571:32583029,44935453:0 -) -] -g1,22574:32583029,45109123 -) -] -(1,22574:32583029,45706769:0,0,0 -g1,22574:32583029,45706769 -) -) -] -(1,22574:6630773,47279633:25952256,0,0 -h1,22574:6630773,47279633:25952256,0,0 -) -] -(1,22574:4262630,4025873:0,0,0 -[1,22574:-473656,4025873:0,0,0 -(1,22574:-473656,-710413:0,0,0 -(1,22574:-473656,-710413:0,0,0 -g1,22574:-473656,-710413 -) -g1,22574:-473656,-710413 +g1,22572:6630773,4812305 +g1,22572:6630773,4812305 +g1,22572:8592265,4812305 +g1,22572:12111033,4812305 +g1,22572:15898358,4812305 +k1,22572:31387652,4812305:15489294 +) +) +] +[1,22572:6630773,45706769:25952256,40108032,0 +(1,22572:6630773,45706769:25952256,40108032,0 +(1,22572:6630773,45706769:0,0,0 +g1,22572:6630773,45706769 +) +[1,22572:6630773,45706769:25952256,40108032,0 +(1,22547:6630773,28955186:25952256,23356449,0 +k1,22547:7928465,28955186:1297692 +h1,22546:7928465,28955186:0,0,0 +(1,22546:7928465,28955186:23356872,23356449,0 +(1,22546:7928465,28955186:23356506,23356506,0 +(1,22546:7928465,28955186:23356506,23356506,0 +(1,22546:7928465,28955186:0,23356506,0 +(1,22546:7928465,28955186:0,37890292,0 +(1,22546:7928465,28955186:37890292,37890292,0 +) +k1,22546:7928465,28955186:-37890292 +) +) +g1,22546:31284971,28955186 +) +) +) +g1,22547:31285337,28955186 +k1,22547:32583029,28955186:1297692 +) +(1,22556:6630773,29820266:25952256,513147,134348 +h1,22555:6630773,29820266:983040,0,0 +k1,22555:10305705,29820266:156959 +k1,22555:14129402,29820266:156958 +k1,22555:15387366,29820266:156959 +k1,22555:16160362,29820266:156958 +k1,22555:18305683,29820266:156959 +k1,22555:21126680,29820266:156958 +k1,22555:22865023,29820266:156959 +k1,22555:23969633,29820266:156959 +k1,22555:25145676,29820266:156958 +k1,22555:27895239,29820266:156959 +k1,22555:28711489,29820266:156958 +k1,22555:31554769,29820266:156959 +k1,22556:32583029,29820266:0 +) +(1,22556:6630773,30685346:25952256,513147,134348 +k1,22555:8390465,30685346:189449 +k1,22555:11245920,30685346:189450 +k1,22555:12094661,30685346:189449 +k1,22555:14164994,30685346:189450 +k1,22555:15545888,30685346:189449 +k1,22555:19090125,30685346:189449 +k1,22555:19895613,30685346:189450 +k1,22555:21104147,30685346:189449 +k1,22555:22947069,30685346:189449 +k1,22555:25124881,30685346:189450 +k1,22555:26921928,30685346:189449 +k1,22555:28302823,30685346:189450 +k1,22555:30194242,30685346:189449 +k1,22555:32583029,30685346:0 +) +(1,22556:6630773,31550426:25952256,505283,134348 +g1,22555:9119830,31550426 +g1,22555:10812625,31550426 +g1,22555:11698016,31550426 +g1,22555:14656311,31550426 +g1,22555:18921394,31550426 +g1,22555:20312068,31550426 +g1,22555:21977993,31550426 +k1,22556:32583029,31550426:8656651 +g1,22556:32583029,31550426 +) +v1,22558:6630773,32415506:0,393216,0 +(1,22559:6630773,34580447:25952256,2558157,0 +g1,22559:6630773,34580447 +g1,22559:6237557,34580447 +r1,22572:6368629,34580447:131072,2558157,0 +g1,22559:6567858,34580447 +g1,22559:6764466,34580447 +[1,22559:6764466,34580447:25818563,2558157,0 +(1,22559:6764466,32723804:25818563,701514,196608 +(1,22558:6764466,32723804:0,701514,196608 +r1,22572:8471973,32723804:1707507,898122,196608 +k1,22558:6764466,32723804:-1707507 +) +(1,22558:6764466,32723804:1707507,701514,196608 +) +k1,22558:8670059,32723804:198086 +k1,22558:10396277,32723804:327680 +k1,22558:13129295,32723804:198085 +k1,22558:16994120,32723804:198086 +k1,22558:18296488,32723804:198086 +k1,22558:19242339,32723804:198085 +k1,22558:20794399,32723804:198086 +k1,22558:23143377,32723804:198086 +k1,22558:25150257,32723804:198086 +k1,22558:26367427,32723804:198085 +k1,22558:31391584,32723804:198086 +k1,22558:32583029,32723804:0 +) +(1,22559:6764466,33588884:25818563,513147,126483 +k1,22558:7749554,33588884:196690 +k1,22558:11111633,33588884:196690 +k1,22558:12499767,33588884:196689 +k1,22558:13602820,33588884:196690 +k1,22558:14450938,33588884:196690 +k1,22558:16327971,33588884:196690 +k1,22558:17855042,33588884:196690 +k1,22558:18509828,33588884:196689 +k1,22558:20475335,33588884:196690 +k1,22558:21419791,33588884:196690 +k1,22558:23593702,33588884:196690 +k1,22558:24441820,33588884:196690 +k1,22558:25982653,33588884:196690 +k1,22558:27790872,33588884:196689 +k1,22558:28893925,33588884:196690 +k1,22558:29742043,33588884:196690 +k1,22558:32583029,33588884:0 +) +(1,22559:6764466,34453964:25818563,505283,126483 +g1,22558:8571293,34453964 +g1,22558:9916747,34453964 +g1,22558:11859889,34453964 +g1,22558:13229591,34453964 +g1,22558:15197637,34453964 +g1,22558:16489351,34453964 +g1,22558:17304618,34453964 +g1,22558:18962678,34453964 +g1,22558:20758364,34453964 +g1,22558:21640478,34453964 +k1,22559:32583029,34453964:8588498 +g1,22559:32583029,34453964 +) +] +g1,22559:32583029,34580447 +) +h1,22559:6630773,34580447:0,0,0 +(1,22563:6630773,37411607:25952256,32768,229376 +(1,22563:6630773,37411607:0,32768,229376 +(1,22563:6630773,37411607:5505024,32768,229376 +r1,22572:12135797,37411607:5505024,262144,229376 +) +k1,22563:6630773,37411607:-5505024 +) +(1,22563:6630773,37411607:25952256,32768,0 +r1,22572:32583029,37411607:25952256,32768,0 +) +) +(1,22563:6630773,39043459:25952256,606339,161218 +(1,22563:6630773,39043459:2464678,582746,14155 +g1,22563:6630773,39043459 +g1,22563:9095451,39043459 +) +g1,22563:11581363,39043459 +(1,22563:11581363,39043459:0,542918,138361 +r1,22572:14964351,39043459:3382988,681279,138361 +k1,22563:11581363,39043459:-3382988 +) +(1,22563:11581363,39043459:3382988,542918,138361 +k1,22563:11581363,39043459:3277 +h1,22563:14961074,39043459:0,493446,135084 +) +g1,22563:15209718,39043459 +k1,22563:32583029,39043459:12613038 +g1,22563:32583029,39043459 +) +(1,22567:6630773,40301755:25952256,505283,134348 +k1,22566:9712730,40301755:202305 +k1,22566:13355019,40301755:202304 +k1,22566:14548884,40301755:202305 +k1,22566:16953198,40301755:202304 +k1,22566:17806931,40301755:202305 +k1,22566:18424075,40301755:202301 +k1,22566:22570337,40301755:202305 +k1,22566:23844810,40301755:202304 +k1,22566:25427303,40301755:202305 +k1,22566:26621167,40301755:202304 +k1,22566:29471127,40301755:202305 +k1,22566:30286193,40301755:202304 +k1,22566:31507583,40301755:202305 +k1,22567:32583029,40301755:0 +) +(1,22567:6630773,41166835:25952256,513147,126483 +k1,22566:8463706,41166835:209606 +k1,22566:9332604,41166835:209606 +k1,22566:13865620,41166835:209606 +k1,22566:18039498,41166835:209605 +k1,22566:18876939,41166835:209606 +k1,22566:20778685,41166835:209606 +k1,22566:23643154,41166835:209606 +k1,22566:25232948,41166835:209606 +k1,22566:26434114,41166835:209606 +k1,22566:28845729,41166835:209605 +k1,22566:29706763,41166835:209606 +k1,22566:30935454,41166835:209606 +k1,22566:32583029,41166835:0 +) +(1,22567:6630773,42031915:25952256,505283,173670 +k1,22566:8607182,42031915:193830 +k1,22566:9417050,42031915:193830 +[1,22566:9546156,42031915:341312,473825,0 +(1,22566:9546156,41893896:341312,335806,0 +) +] +(1,22566:10114422,42205585:370934,473825,0 +) +k1,22566:11201508,42031915:193830 +k1,22566:12953129,42031915:193830 +k1,22566:14138519,42031915:193830 +k1,22566:15845575,42031915:193830 +k1,22566:16655443,42031915:193830 +k1,22566:19799048,42031915:193830 +k1,22566:22151634,42031915:193830 +k1,22566:23491689,42031915:193830 +k1,22566:25466788,42031915:193830 +k1,22566:26857305,42031915:193830 +k1,22566:29135180,42031915:193830 +k1,22566:32583029,42031915:0 +) +(1,22567:6630773,42896995:25952256,513147,134348 +g1,22566:8324878,42896995 +g1,22566:11379511,42896995 +g1,22566:12770185,42896995 +g1,22566:14652379,42896995 +g1,22566:16543748,42896995 +g1,22566:18168385,42896995 +g1,22566:19019042,42896995 +g1,22566:19966037,42896995 +g1,22566:22207368,42896995 +g1,22566:23478766,42896995 +g1,22566:24136092,42896995 +g1,22566:25644075,42896995 +g1,22566:26862389,42896995 +g1,22566:28083324,42896995 +k1,22567:32583029,42896995:2869825 +g1,22567:32583029,42896995 +) +v1,22569:6630773,43762075:0,393216,0 +(1,22572:6630773,45109123:25952256,1740264,0 +g1,22572:6630773,45109123 +g1,22572:6237557,45109123 +r1,22572:6368629,45109123:131072,1740264,0 +g1,22572:6567858,45109123 +g1,22572:6764466,45109123 +[1,22572:6764466,45109123:25818563,1740264,0 +(1,22570:6764466,44070373:25818563,701514,196608 +(1,22569:6764466,44070373:0,701514,196608 +r1,22572:7761522,44070373:997056,898122,196608 +k1,22569:6764466,44070373:-997056 +) +(1,22569:6764466,44070373:997056,701514,196608 +) +k1,22569:7976915,44070373:215393 +k1,22569:8304595,44070373:327680 +k1,22569:9716676,44070373:215394 +k1,22569:11523939,44070373:215393 +k1,22569:14847050,44070373:215394 +k1,22569:15713871,44070373:215393 +k1,22569:19192303,44070373:215394 +k1,22569:20645671,44070373:215393 +k1,22569:22087244,44070373:215394 +k1,22569:26093239,44070373:215393 +k1,22569:26924671,44070373:215394 +k1,22569:27554891,44070373:215377 +k1,22569:29972295,44070373:215394 +k1,22569:30839116,44070373:215393 +k1,22569:32583029,44070373:0 +) +(1,22570:6764466,44935453:25818563,513147,173670 +k1,22569:9598977,44935453:204551 +k1,22569:11538920,44935453:204550 +[1,22569:11668026,44935453:341312,473825,0 +(1,22569:11668026,44797434:341312,335806,0 +) +] +(1,22569:12236292,45109123:370934,473825,0 +) +k1,22569:13160429,44935453:204551 +k1,22569:14047864,44935453:204550 +k1,22569:15987808,44935453:204551 +k1,22569:18060784,44935453:204545 +k1,22569:18796831,44935453:204550 +k1,22569:19614144,44935453:204551 +k1,22569:20837780,44935453:204551 +k1,22569:22406134,44935453:204550 +k1,22569:23269977,44935453:204551 +k1,22569:24493612,44935453:204550 +k1,22569:25113000,44935453:204545 +k1,22569:28233248,44935453:204551 +k1,22569:30270185,44935453:204550 +k1,22569:31006233,44935453:204551 +k1,22569:32583029,44935453:0 +) +] +g1,22572:32583029,45109123 +) +] +(1,22572:32583029,45706769:0,0,0 +g1,22572:32583029,45706769 +) +) +] +(1,22572:6630773,47279633:25952256,0,0 +h1,22572:6630773,47279633:25952256,0,0 +) +] +(1,22572:4262630,4025873:0,0,0 +[1,22572:-473656,4025873:0,0,0 +(1,22572:-473656,-710413:0,0,0 +(1,22572:-473656,-710413:0,0,0 +g1,22572:-473656,-710413 +) +g1,22572:-473656,-710413 ) ] ) ] !12160 -}386 -Input:4264:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4265:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4266:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4267:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}387 Input:4268:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4269:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4270:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -391630,1554 +391834,1553 @@ Input:4274:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4275:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4276:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4277:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1300 -{387 -[1,22604:4262630,47279633:28320399,43253760,0 -(1,22604:4262630,4025873:0,0,0 -[1,22604:-473656,4025873:0,0,0 -(1,22604:-473656,-710413:0,0,0 -(1,22604:-473656,-644877:0,0,0 -k1,22604:-473656,-644877:-65536 +{388 +[1,22602:4262630,47279633:28320399,43253760,0 +(1,22602:4262630,4025873:0,0,0 +[1,22602:-473656,4025873:0,0,0 +(1,22602:-473656,-710413:0,0,0 +(1,22602:-473656,-644877:0,0,0 +k1,22602:-473656,-644877:-65536 ) -(1,22604:-473656,4736287:0,0,0 -k1,22604:-473656,4736287:5209943 +(1,22602:-473656,4736287:0,0,0 +k1,22602:-473656,4736287:5209943 ) -g1,22604:-473656,-710413 +g1,22602:-473656,-710413 ) ] ) -[1,22604:6630773,47279633:25952256,43253760,0 -[1,22604:6630773,4812305:25952256,786432,0 -(1,22604:6630773,4812305:25952256,513147,126483 -(1,22604:6630773,4812305:25952256,513147,126483 -g1,22604:3078558,4812305 -[1,22604:3078558,4812305:0,0,0 -(1,22604:3078558,2439708:0,1703936,0 -k1,22604:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22604:2537886,2439708:1179648,16384,0 +[1,22602:6630773,47279633:25952256,43253760,0 +[1,22602:6630773,4812305:25952256,786432,0 +(1,22602:6630773,4812305:25952256,513147,126483 +(1,22602:6630773,4812305:25952256,513147,126483 +g1,22602:3078558,4812305 +[1,22602:3078558,4812305:0,0,0 +(1,22602:3078558,2439708:0,1703936,0 +k1,22602:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22602:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22604:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22602:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22604:3078558,4812305:0,0,0 -(1,22604:3078558,2439708:0,1703936,0 -g1,22604:29030814,2439708 -g1,22604:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22604:36151628,1915420:16384,1179648,0 +[1,22602:3078558,4812305:0,0,0 +(1,22602:3078558,2439708:0,1703936,0 +g1,22602:29030814,2439708 +g1,22602:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22602:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22604:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22602:37855564,2439708:1179648,16384,0 ) ) -k1,22604:3078556,2439708:-34777008 +k1,22602:3078556,2439708:-34777008 ) ] -[1,22604:3078558,4812305:0,0,0 -(1,22604:3078558,49800853:0,16384,2228224 -k1,22604:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22604:2537886,49800853:1179648,16384,0 +[1,22602:3078558,4812305:0,0,0 +(1,22602:3078558,49800853:0,16384,2228224 +k1,22602:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22602:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22604:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22602:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] -) -) -) -] -[1,22604:3078558,4812305:0,0,0 -(1,22604:3078558,49800853:0,16384,2228224 -g1,22604:29030814,49800853 -g1,22604:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22604:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22604:37855564,49800853:1179648,16384,0 -) -) -k1,22604:3078556,49800853:-34777008 -) -] -g1,22604:6630773,4812305 -k1,22604:21386205,4812305:13560055 -g1,22604:21999622,4812305 -g1,22604:25611966,4812305 -g1,22604:28956923,4812305 -g1,22604:29772190,4812305 -) -) -] -[1,22604:6630773,45706769:25952256,40108032,0 -(1,22604:6630773,45706769:25952256,40108032,0 -(1,22604:6630773,45706769:0,0,0 -g1,22604:6630773,45706769 -) -[1,22604:6630773,45706769:25952256,40108032,0 -v1,22574:6630773,6254097:0,393216,0 -(1,22574:6630773,10818047:25952256,4957166,0 -g1,22574:6630773,10818047 -g1,22574:6237557,10818047 -r1,22604:6368629,10818047:131072,4957166,0 -g1,22574:6567858,10818047 -g1,22574:6764466,10818047 -[1,22574:6764466,10818047:25818563,4957166,0 -(1,22572:6764466,6366164:25818563,505283,134348 -k1,22571:7614348,6366164:233844 -k1,22571:10622332,6366164:233845 -k1,22571:12047621,6366164:233844 -k1,22571:16880126,6366164:233844 -k1,22571:18218252,6366164:233844 -k1,22571:19199863,6366164:233845 -k1,22571:22272727,6366164:233844 -k1,22571:23122609,6366164:233844 -k1,22571:25694778,6366164:233844 -k1,22571:27785258,6366164:233845 -k1,22571:31563944,6366164:233844 -k1,22571:32583029,6366164:0 -) -(1,22572:6764466,7231244:25818563,513147,134348 -k1,22571:9418510,7231244:319652 -k1,22571:13939675,7231244:319652 -k1,22571:18857333,7231244:319652 -k1,22571:22158218,7231244:319652 -k1,22571:24666772,7231244:319651 -k1,22571:25672586,7231244:319652 -k1,22571:29041628,7231244:319652 -k1,22571:31966991,7231244:319652 -k1,22571:32583029,7231244:0 -) -(1,22572:6764466,8096324:25818563,505283,134348 -g1,22571:9740455,8096324 -g1,22571:11131129,8096324 -g1,22571:12118756,8096324 -k1,22572:32583030,8096324:17009216 -g1,22572:32583030,8096324 -) -(1,22574:6764466,8961404:25818563,513147,134348 -h1,22573:6764466,8961404:983040,0,0 -k1,22573:10576124,8961404:293685 -k1,22573:13290707,8961404:293684 -k1,22573:16344768,8961404:293685 -k1,22573:19315598,8961404:293684 -k1,22573:21437737,8961404:293685 -k1,22573:23540775,8961404:293589 -k1,22573:25025905,8961404:293685 -k1,22573:28829699,8961404:293685 -k1,22573:31649796,8961404:293684 -k1,22573:32583029,8961404:0 -) -(1,22574:6764466,9826484:25818563,513147,134348 -k1,22573:9899926,9826484:185030 -k1,22573:11551652,9826484:185030 -k1,22573:12684333,9826484:185030 -k1,22573:16659965,9826484:185030 -k1,22573:18036440,9826484:185030 -k1,22573:19169120,9826484:185029 -k1,22573:20743513,9826484:185030 -k1,22573:25121536,9826484:185030 -k1,22573:26687410,9826484:185030 -k1,22573:27403937,9826484:185030 -k1,22573:28359670,9826484:185030 -k1,22573:31931601,9826484:185030 -k1,22573:32583029,9826484:0 -) -(1,22574:6764466,10691564:25818563,513147,126483 -g1,22573:7982780,10691564 -g1,22573:9274494,10691564 -g1,22573:10140879,10691564 -g1,22573:10754951,10691564 -k1,22574:32583030,10691564:18005364 -g1,22574:32583030,10691564 -) -] -g1,22574:32583029,10818047 -) -h1,22574:6630773,10818047:0,0,0 -(1,22577:6630773,11683127:25952256,513147,126483 -h1,22576:6630773,11683127:983040,0,0 -k1,22576:8634662,11683127:393014 -k1,22576:11636663,11683127:393013 -h1,22576:13179381,11683127:0,0,0 -k1,22576:13572395,11683127:393014 -k1,22576:15156854,11683127:393014 -h1,22576:16699572,11683127:0,0,0 -k1,22576:17092585,11683127:393013 -k1,22576:19610276,11683127:393014 -k1,22576:22995008,11683127:393013 -k1,22576:24047314,11683127:393014 -k1,22576:25459413,11683127:393014 -k1,22576:26944911,11683127:393013 -k1,22576:28005081,11683127:393014 -k1,22576:28812743,11683127:392819 -k1,22576:32583029,11683127:0 -) -(1,22577:6630773,12548207:25952256,513147,134348 -k1,22576:7970128,12548207:391704 -k1,22576:11071090,12548207:391704 -k1,22576:13070392,12548207:391704 -k1,22576:14966147,12548207:391704 -k1,22576:17226282,12548207:391704 -k1,22576:18814674,12548207:391705 -(1,22576:18814674,12548207:0,452978,115847 -r1,22604:23745194,12548207:4930520,568825,115847 -k1,22576:18814674,12548207:-4930520 -) -(1,22576:18814674,12548207:4930520,452978,115847 -k1,22576:18814674,12548207:3277 -h1,22576:23741917,12548207:0,411205,112570 -) -k1,22576:24136898,12548207:391704 -k1,22576:26311181,12548207:391704 -k1,22576:27894330,12548207:391704 -k1,22576:29305119,12548207:391704 -k1,22576:31084876,12548207:391704 -k1,22577:32583029,12548207:0 -) -(1,22577:6630773,13413287:25952256,513147,134348 -(1,22576:6630773,13413287:0,452978,115847 -r1,22604:11561293,13413287:4930520,568825,115847 -k1,22576:6630773,13413287:-4930520 -) -(1,22576:6630773,13413287:4930520,452978,115847 -k1,22576:6630773,13413287:3277 -h1,22576:11558016,13413287:0,411205,112570 -) -k1,22576:11839357,13413287:278064 -k1,22576:14547495,13413287:278063 -k1,22576:17186166,13413287:278064 -k1,22576:21271216,13413287:278064 -k1,22576:22200707,13413287:278063 -k1,22576:23967094,13413287:278064 -k1,22576:25980551,13413287:278064 -k1,22576:30028900,13413287:278063 -k1,22576:30923002,13413287:278064 -k1,22576:32583029,13413287:0 -) -(1,22577:6630773,14278367:25952256,513147,134348 -k1,22576:9742171,14278367:172763 -k1,22576:13685220,14278367:172763 -k1,22576:14849543,14278367:172763 -k1,22576:17097831,14278367:172763 -k1,22576:18668477,14278367:172763 -k1,22576:19457278,14278367:172763 -k1,22576:20649125,14278367:172762 -k1,22576:23191015,14278367:172763 -k1,22576:24023070,14278367:172763 -k1,22576:26893950,14278367:172763 -k1,22576:28446901,14278367:172763 -k1,22576:29611224,14278367:172763 -k1,22576:31069803,14278367:172763 -k1,22576:32583029,14278367:0 -) -(1,22577:6630773,15143447:25952256,505283,7863 -g1,22576:7446040,15143447 -g1,22576:9347239,15143447 -g1,22576:12245896,15143447 -g1,22576:13061163,15143447 -g1,22576:13675235,15143447 -k1,22577:32583030,15143447:17359180 -g1,22577:32583030,15143447 -) -(1,22579:6630773,16008527:25952256,513147,134348 -h1,22578:6630773,16008527:983040,0,0 -k1,22578:8766001,16008527:524353 -k1,22578:11623436,16008527:524353 -k1,22578:12605887,16008527:524354 -k1,22578:13661737,16008527:524353 -k1,22578:16816050,16008527:524353 -k1,22578:17991831,16008527:524353 -k1,22578:20445565,16008527:524354 -k1,22578:24547529,16008527:524353 -k1,22578:27969229,16008527:524353 -k1,22578:29887533,16008527:524353 -k1,22579:32583029,16008527:0 -) -(1,22579:6630773,16873607:25952256,513147,134348 -(1,22578:6630773,16873607:0,452978,115847 -r1,22604:10857869,16873607:4227096,568825,115847 -k1,22578:6630773,16873607:-4227096 -) -(1,22578:6630773,16873607:4227096,452978,115847 -k1,22578:6630773,16873607:3277 -h1,22578:10854592,16873607:0,411205,112570 -) -k1,22578:11278457,16873607:246918 -k1,22578:12208259,16873607:246917 -k1,22578:13216705,16873607:246918 -k1,22578:15849134,16873607:246918 -k1,22578:16451911,16873607:246917 -k1,22578:19673508,16873607:246918 -k1,22578:21959906,16873607:246918 -k1,22578:22834659,16873607:246918 -k1,22578:24100661,16873607:246917 -k1,22578:25714660,16873607:246918 -k1,22578:26620870,16873607:246918 -k1,22578:29696320,16873607:246917 -k1,22578:30890889,16873607:246918 -k1,22578:32583029,16873607:0 -) -(1,22579:6630773,17738687:25952256,505283,126483 -k1,22578:8104177,17738687:196107 -k1,22578:11343121,17738687:196107 -k1,22578:13427321,17738687:196108 -k1,22578:15973549,17738687:196107 -k1,22578:17563607,17738687:196107 -(1,22578:17563607,17738687:0,452978,122846 -r1,22604:21438991,17738687:3875384,575824,122846 -k1,22578:17563607,17738687:-3875384 -) -(1,22578:17563607,17738687:3875384,452978,122846 -k1,22578:17563607,17738687:3277 -h1,22578:21435714,17738687:0,411205,112570 -) -k1,22578:21635098,17738687:196107 -k1,22578:23022650,17738687:196107 -(1,22578:23022650,17738687:0,452978,122846 -r1,22604:27249746,17738687:4227096,575824,122846 -k1,22578:23022650,17738687:-4227096 -) -(1,22578:23022650,17738687:4227096,452978,122846 -k1,22578:23022650,17738687:3277 -h1,22578:27246469,17738687:0,411205,112570 -) -k1,22578:27619523,17738687:196107 -k1,22578:29007076,17738687:196108 -k1,22578:30222268,17738687:196107 -k1,22578:31915873,17738687:196107 -k1,22579:32583029,17738687:0 -) -(1,22579:6630773,18603767:25952256,513147,134348 -k1,22578:8173163,18603767:259195 -k1,22578:9091650,18603767:259195 -k1,22578:11239592,18603767:259194 -k1,22578:12517872,18603767:259195 -k1,22578:15162578,18603767:259195 -k1,22578:15953270,18603767:259195 -k1,22578:18670719,18603767:259194 -k1,22578:20121359,18603767:259195 -k1,22578:22752302,18603767:259195 -k1,22578:23662925,18603767:259195 -k1,22578:26507514,18603767:259194 -k1,22578:29741388,18603767:259195 -k1,22578:32583029,18603767:0 -) -(1,22579:6630773,19468847:25952256,513147,134348 -k1,22578:7445730,19468847:198919 -(1,22578:7445730,19468847:0,452978,115847 -r1,22604:8859131,19468847:1413401,568825,115847 -k1,22578:7445730,19468847:-1413401 -) -(1,22578:7445730,19468847:1413401,452978,115847 -k1,22578:7445730,19468847:3277 -h1,22578:8855854,19468847:0,411205,112570 -) -k1,22578:9231720,19468847:198919 -k1,22578:10058474,19468847:198919 -k1,22578:13062335,19468847:198920 -k1,22578:14208905,19468847:198919 -k1,22578:16179262,19468847:198919 -k1,22578:19295188,19468847:198919 -k1,22578:22375725,19468847:198919 -k1,22578:26057883,19468847:198919 -k1,22578:27368294,19468847:198920 -k1,22578:30568107,19468847:198919 -k1,22578:32051532,19468847:198919 -k1,22578:32583029,19468847:0 -) -(1,22579:6630773,20333927:25952256,513147,126483 -k1,22578:9253905,20333927:241554 -k1,22578:11505448,20333927:241554 -(1,22578:11505448,20333927:0,452978,115847 -r1,22604:13622273,20333927:2116825,568825,115847 -k1,22578:11505448,20333927:-2116825 -) -(1,22578:11505448,20333927:2116825,452978,115847 -k1,22578:11505448,20333927:3277 -h1,22578:13618996,20333927:0,411205,112570 -) -k1,22578:14070920,20333927:241553 -k1,22578:15331559,20333927:241554 -k1,22578:19343399,20333927:241554 -k1,22578:21060168,20333927:241554 -k1,22578:21953149,20333927:241553 -k1,22578:22942469,20333927:241554 -k1,22578:25606889,20333927:241554 -k1,22578:28919460,20333927:241554 -k1,22578:29843898,20333927:241553 -k1,22578:31896867,20333927:241554 -k1,22578:32583029,20333927:0 -) -(1,22579:6630773,21199007:25952256,505283,134348 -g1,22578:8323568,21199007 -g1,22578:9790263,21199007 -g1,22578:10345352,21199007 -g1,22578:13229591,21199007 -g1,22578:14620265,21199007 -g1,22578:15838579,21199007 -g1,22578:18549148,21199007 -g1,22578:20953664,21199007 -g1,22578:21839055,21199007 -g1,22578:22808987,21199007 -k1,22579:32583029,21199007:6649286 -g1,22579:32583029,21199007 -) -(1,22581:6630773,22064087:25952256,513147,134348 -h1,22580:6630773,22064087:983040,0,0 -k1,22580:9605062,22064087:208014 -k1,22580:12337522,22064087:208013 -k1,22580:16315822,22064087:208014 -k1,22580:18259229,22064087:208014 -(1,22580:18259229,22064087:0,452978,122846 -r1,22604:22134613,22064087:3875384,575824,122846 -k1,22580:18259229,22064087:-3875384 -) -(1,22580:18259229,22064087:3875384,452978,122846 -k1,22580:18259229,22064087:3277 -h1,22580:22131336,22064087:0,411205,112570 -) -k1,22580:22516296,22064087:208013 -k1,22580:23743395,22064087:208014 -k1,22580:26336920,22064087:208014 -k1,22580:27204225,22064087:208013 -k1,22580:30386918,22064087:208014 -k1,22580:32583029,22064087:0 -) -(1,22581:6630773,22929167:25952256,513147,134348 -k1,22580:7398245,22929167:235975 -k1,22580:10488967,22929167:235974 -k1,22580:11486470,22929167:235975 -k1,22580:14149899,22929167:235975 -(1,22580:14149899,22929167:0,414482,115847 -r1,22604:18376995,22929167:4227096,530329,115847 -k1,22580:14149899,22929167:-4227096 -) -(1,22580:14149899,22929167:4227096,414482,115847 -g1,22580:16263447,22929167 -g1,22580:16966871,22929167 -h1,22580:18373718,22929167:0,411205,112570 -) -k1,22580:18612969,22929167:235974 -k1,22580:19464982,22929167:235975 -k1,22580:20720042,22929167:235975 -k1,22580:22055710,22929167:235974 -k1,22580:22943113,22929167:235975 -k1,22580:24198172,22929167:235974 -k1,22580:25991938,22929167:235975 -k1,22580:29097079,22929167:235975 -k1,22580:29960888,22929167:235974 -k1,22580:31215948,22929167:235975 -k1,22580:32583029,22929167:0 -) -(1,22581:6630773,23794247:25952256,513147,134348 -k1,22580:7548882,23794247:258817 -k1,22580:9870116,23794247:258816 -k1,22580:11626431,23794247:258817 -k1,22580:13903101,23794247:258816 -k1,22580:16547429,23794247:258817 -k1,22580:17489130,23794247:258816 -k1,22580:18814218,23794247:258817 -k1,22580:21775083,23794247:258816 -k1,22580:22843270,23794247:258817 -k1,22580:24121171,23794247:258816 -k1,22580:26780572,23794247:258817 -k1,22580:29734884,23794247:258816 -k1,22580:31680598,23794247:258817 -k1,22580:32583029,23794247:0 -) -(1,22581:6630773,24659327:25952256,513147,134348 -k1,22580:10037871,24659327:180105 -k1,22580:11784285,24659327:180104 -k1,22580:12495887,24659327:180105 -k1,22580:13695077,24659327:180105 -k1,22580:17178197,24659327:180105 -k1,22580:18017593,24659327:180104 -k1,22580:21552486,24659327:180105 -k1,22580:23467329,24659327:180105 -k1,22580:26622113,24659327:180105 -k1,22580:28998328,24659327:180104 -k1,22580:30572384,24659327:180105 -k1,22580:32583029,24659327:0 -) -(1,22581:6630773,25524407:25952256,513147,134348 -g1,22580:8597508,25524407 -g1,22580:10364358,25524407 -(1,22580:10364358,25524407:0,452978,115847 -r1,22604:11777759,25524407:1413401,568825,115847 -k1,22580:10364358,25524407:-1413401 -) -(1,22580:10364358,25524407:1413401,452978,115847 -k1,22580:10364358,25524407:3277 -h1,22580:11774482,25524407:0,411205,112570 -) -g1,22580:11976988,25524407 -g1,22580:13408294,25524407 -g1,22580:15886210,25524407 -h1,22580:16856798,25524407:0,0,0 -g1,22580:17056027,25524407 -g1,22580:18064626,25524407 -g1,22580:19762008,25524407 -h1,22580:20957385,25524407:0,0,0 -k1,22581:32583029,25524407:11366122 -g1,22581:32583029,25524407 -) -(1,22583:6630773,26389487:25952256,513147,134348 -h1,22582:6630773,26389487:983040,0,0 -k1,22582:9029336,26389487:218836 -k1,22582:10849871,26389487:218835 -k1,22582:13552522,26389487:218836 -k1,22582:15433350,26389487:218835 -k1,22582:16303614,26389487:218836 -k1,22582:19781555,26389487:218836 -k1,22582:21698428,26389487:218835 -k1,22582:24174979,26389487:218836 -k1,22582:28164100,26389487:218835 -k1,22582:28914433,26389487:218836 -k1,22582:30463649,26389487:218835 -k1,22582:31333913,26389487:218836 -k1,22583:32583029,26389487:0 -) -(1,22583:6630773,27254567:25952256,513147,126483 -k1,22582:8155407,27254567:171971 -k1,22582:9346463,27254567:171971 -k1,22582:12280777,27254567:171971 -k1,22582:14278581,27254567:171971 -k1,22582:14938113,27254567:171944 -k1,22582:16541390,27254567:171971 -(1,22582:16748484,27254567:0,414482,115847 -r1,22604:17106750,27254567:358266,530329,115847 -k1,22582:16748484,27254567:-358266 -) -(1,22582:16748484,27254567:358266,414482,115847 -k1,22582:16748484,27254567:3277 -h1,22582:17103473,27254567:0,411205,112570 -) -k1,22582:17485815,27254567:171971 -k1,22582:19185430,27254567:171971 -k1,22582:21145223,27254567:171971 -k1,22582:21933232,27254567:171971 -k1,22582:24740406,27254567:171971 -k1,22582:27727804,27254567:171971 -k1,22582:30534322,27254567:171971 -(1,22582:30741416,27254567:0,414482,115847 -r1,22604:31099682,27254567:358266,530329,115847 -k1,22582:30741416,27254567:-358266 -) -(1,22582:30741416,27254567:358266,414482,115847 -k1,22582:30741416,27254567:3277 -h1,22582:31096405,27254567:0,411205,112570 -) -k1,22582:31478747,27254567:171971 -k1,22582:32583029,27254567:0 -) -(1,22583:6630773,28119647:25952256,505283,134348 -k1,22582:7540998,28119647:162459 -k1,22582:8989272,28119647:162458 -k1,22582:10664957,28119647:162459 -k1,22582:11513578,28119647:162459 -k1,22582:12031896,28119647:162458 -k1,22582:15546522,28119647:162459 -k1,22582:16196532,28119647:162422 -(1,22582:16196532,28119647:0,414482,115847 -r1,22604:16554798,28119647:358266,530329,115847 -k1,22582:16196532,28119647:-358266 -) -(1,22582:16196532,28119647:358266,414482,115847 -k1,22582:16196532,28119647:3277 -h1,22582:16551521,28119647:0,411205,112570 -) -k1,22582:16717257,28119647:162459 -k1,22582:17411212,28119647:162458 -k1,22582:19860878,28119647:162459 -k1,22582:22321684,28119647:162458 -k1,22582:24182181,28119647:162459 -k1,22582:26663959,28119647:162459 -k1,22582:28220368,28119647:162458 -k1,22582:31198909,28119647:162459 -k1,22582:32583029,28119647:0 -) -(1,22583:6630773,28984727:25952256,505283,134348 -k1,22582:7478996,28984727:196795 -k1,22582:10491218,28984727:196795 -k1,22582:12479767,28984727:196795 -k1,22582:14417855,28984727:196796 -k1,22582:16402472,28984727:196795 -k1,22582:17130764,28984727:196795 -k1,22582:19777295,28984727:196795 -k1,22582:20590128,28984727:196795 -k1,22582:22479063,28984727:196795 -k1,22582:26006398,28984727:196795 -k1,22582:27275363,28984727:196796 -k1,22582:28538429,28984727:196795 -k1,22582:29351262,28984727:196795 -k1,22582:31753999,28984727:196795 -k1,22582:32583029,28984727:0 -) -(1,22583:6630773,29849807:25952256,505283,126483 -k1,22582:9207195,29849807:238753 -k1,22582:11455936,29849807:238752 -k1,22582:12465392,29849807:238753 -k1,22582:16144129,29849807:238752 -k1,22582:17609061,29849807:238753 -k1,22582:19132319,29849807:238752 -k1,22582:21551455,29849807:238753 -k1,22582:22856478,29849807:238752 -k1,22582:23842997,29849807:238753 -k1,22582:26245092,29849807:238752 -k1,22582:26941942,29849807:238753 -k1,22582:28802710,29849807:238752 -k1,22582:29789229,29849807:238753 -k1,22582:32583029,29849807:0 -) -(1,22583:6630773,30714887:25952256,513147,134348 -k1,22582:7498329,30714887:251518 -k1,22582:10843802,30714887:251518 -k1,22582:13256041,30714887:251517 -k1,22582:15393030,30714887:251518 -k1,22582:16981482,30714887:251518 -k1,22582:18763266,30714887:251518 -k1,22582:22571423,30714887:251518 -k1,22582:23474368,30714887:251517 -k1,22582:24473652,30714887:251518 -k1,22582:27137550,30714887:251518 -k1,22582:28431090,30714887:251518 -k1,22582:29038467,30714887:251517 -k1,22582:30678693,30714887:251518 -k1,22582:31923737,30714887:251518 -k1,22582:32583029,30714887:0 -) -(1,22583:6630773,31579967:25952256,505283,126483 -k1,22582:9843833,31579967:221341 -k1,22582:11540390,31579967:221342 -k1,22582:12117591,31579967:221341 -k1,22582:13725674,31579967:221341 -k1,22582:14559778,31579967:221342 -k1,22582:15800204,31579967:221341 -k1,22582:18180301,31579967:221341 -k1,22582:19593087,31579967:221341 -k1,22582:21310616,31579967:221342 -k1,22582:24595110,31579967:221341 -k1,22582:25577979,31579967:221341 -(1,22582:25577979,31579967:0,452978,115847 -r1,22604:30508499,31579967:4930520,568825,115847 -k1,22582:25577979,31579967:-4930520 -) -(1,22582:25577979,31579967:4930520,452978,115847 -k1,22582:25577979,31579967:3277 -h1,22582:30505222,31579967:0,411205,112570 -) -k1,22582:30729841,31579967:221342 -k1,22582:31563944,31579967:221341 -k1,22583:32583029,31579967:0 -) -(1,22583:6630773,32445047:25952256,505283,126483 -g1,22582:7244845,32445047 -g1,22582:10603565,32445047 -k1,22583:32583029,32445047:19525796 -g1,22583:32583029,32445047 -) -(1,22585:6630773,33310127:25952256,513147,134348 -h1,22584:6630773,33310127:983040,0,0 -k1,22584:11594797,33310127:187105 -k1,22584:12773462,33310127:187105 -k1,22584:16265548,33310127:187105 -k1,22584:17965879,33310127:187105 -k1,22584:19100635,33310127:187105 -k1,22584:20540133,33310127:187105 -k1,22584:22745093,33310127:187106 -k1,22584:24174761,33310127:187105 -k1,22584:26059904,33310127:187105 -k1,22584:27266094,33310127:187105 -k1,22584:29071283,33310127:187105 -k1,22584:29941273,33310127:187105 -k1,22584:32583029,33310127:0 -) -(1,22585:6630773,34175207:25952256,513147,126483 -k1,22584:9058460,34175207:135893 -k1,22584:10213439,34175207:135894 -k1,22584:11441817,34175207:135893 -k1,22584:12237003,34175207:135894 -k1,22584:16335858,34175207:135893 -k1,22584:17154637,34175207:135894 -k1,22584:19145854,34175207:135893 -k1,22584:21487690,34175207:135894 -k1,22584:22251418,34175207:135893 -k1,22584:23590553,34175207:135894 -k1,22584:25093527,34175207:135893 -k1,22584:26609609,34175207:135894 -k1,22584:27737062,34175207:135893 -k1,22584:30160163,34175207:135894 -k1,22584:32583029,34175207:0 -) -(1,22585:6630773,35040287:25952256,473825,126483 -g1,22584:7516164,35040287 -k1,22585:32583029,35040287:21244150 -g1,22585:32583029,35040287 -) -v1,22587:6630773,35725142:0,393216,0 -(1,22594:6630773,38120390:25952256,2788464,196608 -g1,22594:6630773,38120390 -g1,22594:6630773,38120390 -g1,22594:6434165,38120390 -(1,22594:6434165,38120390:0,2788464,196608 -r1,22604:32779637,38120390:26345472,2985072,196608 -k1,22594:6434165,38120390:-26345472 -) -(1,22594:6434165,38120390:26345472,2788464,196608 -[1,22594:6630773,38120390:25952256,2591856,0 -(1,22589:6630773,35952973:25952256,424439,112852 -(1,22588:6630773,35952973:0,0,0 -g1,22588:6630773,35952973 -g1,22588:6630773,35952973 -g1,22588:6303093,35952973 -(1,22588:6303093,35952973:0,0,0 -) -g1,22588:6630773,35952973 -) -g1,22589:7626635,35952973 -g1,22589:8290543,35952973 -g1,22589:10614221,35952973 -g1,22589:11278129,35952973 -g1,22589:16921346,35952973 -k1,22589:16921346,35952973:0 -h1,22589:22896518,35952973:0,0,0 -k1,22589:32583029,35952973:9686511 -g1,22589:32583029,35952973 -) -(1,22590:6630773,36637828:25952256,424439,112852 -h1,22590:6630773,36637828:0,0,0 -g1,22590:6962727,36637828 -g1,22590:7294681,36637828 -g1,22590:7626635,36637828 -g1,22590:7958589,36637828 -g1,22590:8290543,36637828 -g1,22590:8622497,36637828 -g1,22590:8954451,36637828 -g1,22590:9286405,36637828 -g1,22590:9618359,36637828 -g1,22590:9950313,36637828 -g1,22590:10614221,36637828 -g1,22590:11278129,36637828 -g1,22590:13933761,36637828 -g1,22590:18249162,36637828 -k1,22590:18249162,36637828:0 -h1,22590:19908932,36637828:0,0,0 -k1,22590:32583029,36637828:12674097 -g1,22590:32583029,36637828 -) -(1,22591:6630773,37322683:25952256,424439,112852 -h1,22591:6630773,37322683:0,0,0 -g1,22591:6962727,37322683 -g1,22591:7294681,37322683 -g1,22591:7626635,37322683 -g1,22591:7958589,37322683 -g1,22591:8290543,37322683 -g1,22591:8622497,37322683 -g1,22591:8954451,37322683 -g1,22591:9286405,37322683 -g1,22591:9618359,37322683 -g1,22591:9950313,37322683 -g1,22591:12273991,37322683 -g1,22591:12937899,37322683 -g1,22591:19908931,37322683 -h1,22591:20240885,37322683:0,0,0 -k1,22591:32583029,37322683:12342144 -g1,22591:32583029,37322683 -) -(1,22592:6630773,38007538:25952256,424439,112852 -h1,22592:6630773,38007538:0,0,0 -g1,22592:6962727,38007538 -g1,22592:7294681,38007538 -g1,22592:7626635,38007538 -g1,22592:7958589,38007538 -g1,22592:8290543,38007538 -g1,22592:8622497,38007538 -g1,22592:8954451,38007538 -g1,22592:9286405,38007538 -g1,22592:9618359,38007538 -g1,22592:9950313,38007538 -g1,22592:17253300,38007538 -g1,22592:17917208,38007538 -h1,22592:20572840,38007538:0,0,0 -k1,22592:32583029,38007538:12010189 -g1,22592:32583029,38007538 -) -] -) -g1,22594:32583029,38120390 -g1,22594:6630773,38120390 -g1,22594:6630773,38120390 -g1,22594:32583029,38120390 -g1,22594:32583029,38120390 -) -h1,22594:6630773,38316998:0,0,0 -] -(1,22604:32583029,45706769:0,0,0 -g1,22604:32583029,45706769 -) -) -] -(1,22604:6630773,47279633:25952256,0,0 -h1,22604:6630773,47279633:25952256,0,0 -) -] -(1,22604:4262630,4025873:0,0,0 -[1,22604:-473656,4025873:0,0,0 -(1,22604:-473656,-710413:0,0,0 -(1,22604:-473656,-710413:0,0,0 -g1,22604:-473656,-710413 -) -g1,22604:-473656,-710413 -) -] -) -] -!25193 -}387 -Input:4278:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4279:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4280:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4281:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +) +) +] +[1,22602:3078558,4812305:0,0,0 +(1,22602:3078558,49800853:0,16384,2228224 +g1,22602:29030814,49800853 +g1,22602:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22602:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22602:37855564,49800853:1179648,16384,0 +) +) +k1,22602:3078556,49800853:-34777008 +) +] +g1,22602:6630773,4812305 +k1,22602:21386205,4812305:13560055 +g1,22602:21999622,4812305 +g1,22602:25611966,4812305 +g1,22602:28956923,4812305 +g1,22602:29772190,4812305 +) +) +] +[1,22602:6630773,45706769:25952256,40108032,0 +(1,22602:6630773,45706769:25952256,40108032,0 +(1,22602:6630773,45706769:0,0,0 +g1,22602:6630773,45706769 +) +[1,22602:6630773,45706769:25952256,40108032,0 +v1,22572:6630773,6254097:0,393216,0 +(1,22572:6630773,10818047:25952256,4957166,0 +g1,22572:6630773,10818047 +g1,22572:6237557,10818047 +r1,22602:6368629,10818047:131072,4957166,0 +g1,22572:6567858,10818047 +g1,22572:6764466,10818047 +[1,22572:6764466,10818047:25818563,4957166,0 +(1,22570:6764466,6366164:25818563,505283,134348 +k1,22569:7614348,6366164:233844 +k1,22569:10622332,6366164:233845 +k1,22569:12047621,6366164:233844 +k1,22569:16880126,6366164:233844 +k1,22569:18218252,6366164:233844 +k1,22569:19199863,6366164:233845 +k1,22569:22272727,6366164:233844 +k1,22569:23122609,6366164:233844 +k1,22569:25694778,6366164:233844 +k1,22569:27785258,6366164:233845 +k1,22569:31563944,6366164:233844 +k1,22569:32583029,6366164:0 +) +(1,22570:6764466,7231244:25818563,513147,134348 +k1,22569:9418510,7231244:319652 +k1,22569:13939675,7231244:319652 +k1,22569:18857333,7231244:319652 +k1,22569:22158218,7231244:319652 +k1,22569:24666772,7231244:319651 +k1,22569:25672586,7231244:319652 +k1,22569:29041628,7231244:319652 +k1,22569:31966991,7231244:319652 +k1,22569:32583029,7231244:0 +) +(1,22570:6764466,8096324:25818563,505283,134348 +g1,22569:9740455,8096324 +g1,22569:11131129,8096324 +g1,22569:12118756,8096324 +k1,22570:32583030,8096324:17009216 +g1,22570:32583030,8096324 +) +(1,22572:6764466,8961404:25818563,513147,134348 +h1,22571:6764466,8961404:983040,0,0 +k1,22571:10576124,8961404:293685 +k1,22571:13290707,8961404:293684 +k1,22571:16344768,8961404:293685 +k1,22571:19315598,8961404:293684 +k1,22571:21437737,8961404:293685 +k1,22571:23540775,8961404:293589 +k1,22571:25025905,8961404:293685 +k1,22571:28829699,8961404:293685 +k1,22571:31649796,8961404:293684 +k1,22571:32583029,8961404:0 +) +(1,22572:6764466,9826484:25818563,513147,134348 +k1,22571:9899926,9826484:185030 +k1,22571:11551652,9826484:185030 +k1,22571:12684333,9826484:185030 +k1,22571:16659965,9826484:185030 +k1,22571:18036440,9826484:185030 +k1,22571:19169120,9826484:185029 +k1,22571:20743513,9826484:185030 +k1,22571:25121536,9826484:185030 +k1,22571:26687410,9826484:185030 +k1,22571:27403937,9826484:185030 +k1,22571:28359670,9826484:185030 +k1,22571:31931601,9826484:185030 +k1,22571:32583029,9826484:0 +) +(1,22572:6764466,10691564:25818563,513147,126483 +g1,22571:7982780,10691564 +g1,22571:9274494,10691564 +g1,22571:10140879,10691564 +g1,22571:10754951,10691564 +k1,22572:32583030,10691564:18005364 +g1,22572:32583030,10691564 +) +] +g1,22572:32583029,10818047 +) +h1,22572:6630773,10818047:0,0,0 +(1,22575:6630773,11683127:25952256,513147,126483 +h1,22574:6630773,11683127:983040,0,0 +k1,22574:8634662,11683127:393014 +k1,22574:11636663,11683127:393013 +h1,22574:13179381,11683127:0,0,0 +k1,22574:13572395,11683127:393014 +k1,22574:15156854,11683127:393014 +h1,22574:16699572,11683127:0,0,0 +k1,22574:17092585,11683127:393013 +k1,22574:19610276,11683127:393014 +k1,22574:22995008,11683127:393013 +k1,22574:24047314,11683127:393014 +k1,22574:25459413,11683127:393014 +k1,22574:26944911,11683127:393013 +k1,22574:28005081,11683127:393014 +k1,22574:28812743,11683127:392819 +k1,22574:32583029,11683127:0 +) +(1,22575:6630773,12548207:25952256,513147,134348 +k1,22574:7970128,12548207:391704 +k1,22574:11071090,12548207:391704 +k1,22574:13070392,12548207:391704 +k1,22574:14966147,12548207:391704 +k1,22574:17226282,12548207:391704 +k1,22574:18814674,12548207:391705 +(1,22574:18814674,12548207:0,452978,115847 +r1,22602:23745194,12548207:4930520,568825,115847 +k1,22574:18814674,12548207:-4930520 +) +(1,22574:18814674,12548207:4930520,452978,115847 +k1,22574:18814674,12548207:3277 +h1,22574:23741917,12548207:0,411205,112570 +) +k1,22574:24136898,12548207:391704 +k1,22574:26311181,12548207:391704 +k1,22574:27894330,12548207:391704 +k1,22574:29305119,12548207:391704 +k1,22574:31084876,12548207:391704 +k1,22575:32583029,12548207:0 +) +(1,22575:6630773,13413287:25952256,513147,134348 +(1,22574:6630773,13413287:0,452978,115847 +r1,22602:11561293,13413287:4930520,568825,115847 +k1,22574:6630773,13413287:-4930520 +) +(1,22574:6630773,13413287:4930520,452978,115847 +k1,22574:6630773,13413287:3277 +h1,22574:11558016,13413287:0,411205,112570 +) +k1,22574:11839357,13413287:278064 +k1,22574:14547495,13413287:278063 +k1,22574:17186166,13413287:278064 +k1,22574:21271216,13413287:278064 +k1,22574:22200707,13413287:278063 +k1,22574:23967094,13413287:278064 +k1,22574:25980551,13413287:278064 +k1,22574:30028900,13413287:278063 +k1,22574:30923002,13413287:278064 +k1,22574:32583029,13413287:0 +) +(1,22575:6630773,14278367:25952256,513147,134348 +k1,22574:9742171,14278367:172763 +k1,22574:13685220,14278367:172763 +k1,22574:14849543,14278367:172763 +k1,22574:17097831,14278367:172763 +k1,22574:18668477,14278367:172763 +k1,22574:19457278,14278367:172763 +k1,22574:20649125,14278367:172762 +k1,22574:23191015,14278367:172763 +k1,22574:24023070,14278367:172763 +k1,22574:26893950,14278367:172763 +k1,22574:28446901,14278367:172763 +k1,22574:29611224,14278367:172763 +k1,22574:31069803,14278367:172763 +k1,22574:32583029,14278367:0 +) +(1,22575:6630773,15143447:25952256,505283,7863 +g1,22574:7446040,15143447 +g1,22574:9347239,15143447 +g1,22574:12245896,15143447 +g1,22574:13061163,15143447 +g1,22574:13675235,15143447 +k1,22575:32583030,15143447:17359180 +g1,22575:32583030,15143447 +) +(1,22577:6630773,16008527:25952256,513147,134348 +h1,22576:6630773,16008527:983040,0,0 +k1,22576:8766001,16008527:524353 +k1,22576:11623436,16008527:524353 +k1,22576:12605887,16008527:524354 +k1,22576:13661737,16008527:524353 +k1,22576:16816050,16008527:524353 +k1,22576:17991831,16008527:524353 +k1,22576:20445565,16008527:524354 +k1,22576:24547529,16008527:524353 +k1,22576:27969229,16008527:524353 +k1,22576:29887533,16008527:524353 +k1,22577:32583029,16008527:0 +) +(1,22577:6630773,16873607:25952256,513147,134348 +(1,22576:6630773,16873607:0,452978,115847 +r1,22602:10857869,16873607:4227096,568825,115847 +k1,22576:6630773,16873607:-4227096 +) +(1,22576:6630773,16873607:4227096,452978,115847 +k1,22576:6630773,16873607:3277 +h1,22576:10854592,16873607:0,411205,112570 +) +k1,22576:11278457,16873607:246918 +k1,22576:12208259,16873607:246917 +k1,22576:13216705,16873607:246918 +k1,22576:15849134,16873607:246918 +k1,22576:16451911,16873607:246917 +k1,22576:19673508,16873607:246918 +k1,22576:21959906,16873607:246918 +k1,22576:22834659,16873607:246918 +k1,22576:24100661,16873607:246917 +k1,22576:25714660,16873607:246918 +k1,22576:26620870,16873607:246918 +k1,22576:29696320,16873607:246917 +k1,22576:30890889,16873607:246918 +k1,22576:32583029,16873607:0 +) +(1,22577:6630773,17738687:25952256,505283,126483 +k1,22576:8104177,17738687:196107 +k1,22576:11343121,17738687:196107 +k1,22576:13427321,17738687:196108 +k1,22576:15973549,17738687:196107 +k1,22576:17563607,17738687:196107 +(1,22576:17563607,17738687:0,452978,122846 +r1,22602:21438991,17738687:3875384,575824,122846 +k1,22576:17563607,17738687:-3875384 +) +(1,22576:17563607,17738687:3875384,452978,122846 +k1,22576:17563607,17738687:3277 +h1,22576:21435714,17738687:0,411205,112570 +) +k1,22576:21635098,17738687:196107 +k1,22576:23022650,17738687:196107 +(1,22576:23022650,17738687:0,452978,122846 +r1,22602:27249746,17738687:4227096,575824,122846 +k1,22576:23022650,17738687:-4227096 +) +(1,22576:23022650,17738687:4227096,452978,122846 +k1,22576:23022650,17738687:3277 +h1,22576:27246469,17738687:0,411205,112570 +) +k1,22576:27619523,17738687:196107 +k1,22576:29007076,17738687:196108 +k1,22576:30222268,17738687:196107 +k1,22576:31915873,17738687:196107 +k1,22577:32583029,17738687:0 +) +(1,22577:6630773,18603767:25952256,513147,134348 +k1,22576:8173163,18603767:259195 +k1,22576:9091650,18603767:259195 +k1,22576:11239592,18603767:259194 +k1,22576:12517872,18603767:259195 +k1,22576:15162578,18603767:259195 +k1,22576:15953270,18603767:259195 +k1,22576:18670719,18603767:259194 +k1,22576:20121359,18603767:259195 +k1,22576:22752302,18603767:259195 +k1,22576:23662925,18603767:259195 +k1,22576:26507514,18603767:259194 +k1,22576:29741388,18603767:259195 +k1,22576:32583029,18603767:0 +) +(1,22577:6630773,19468847:25952256,513147,134348 +k1,22576:7445730,19468847:198919 +(1,22576:7445730,19468847:0,452978,115847 +r1,22602:8859131,19468847:1413401,568825,115847 +k1,22576:7445730,19468847:-1413401 +) +(1,22576:7445730,19468847:1413401,452978,115847 +k1,22576:7445730,19468847:3277 +h1,22576:8855854,19468847:0,411205,112570 +) +k1,22576:9231720,19468847:198919 +k1,22576:10058474,19468847:198919 +k1,22576:13062335,19468847:198920 +k1,22576:14208905,19468847:198919 +k1,22576:16179262,19468847:198919 +k1,22576:19295188,19468847:198919 +k1,22576:22375725,19468847:198919 +k1,22576:26057883,19468847:198919 +k1,22576:27368294,19468847:198920 +k1,22576:30568107,19468847:198919 +k1,22576:32051532,19468847:198919 +k1,22576:32583029,19468847:0 +) +(1,22577:6630773,20333927:25952256,513147,126483 +k1,22576:9253905,20333927:241554 +k1,22576:11505448,20333927:241554 +(1,22576:11505448,20333927:0,452978,115847 +r1,22602:13622273,20333927:2116825,568825,115847 +k1,22576:11505448,20333927:-2116825 +) +(1,22576:11505448,20333927:2116825,452978,115847 +k1,22576:11505448,20333927:3277 +h1,22576:13618996,20333927:0,411205,112570 +) +k1,22576:14070920,20333927:241553 +k1,22576:15331559,20333927:241554 +k1,22576:19343399,20333927:241554 +k1,22576:21060168,20333927:241554 +k1,22576:21953149,20333927:241553 +k1,22576:22942469,20333927:241554 +k1,22576:25606889,20333927:241554 +k1,22576:28919460,20333927:241554 +k1,22576:29843898,20333927:241553 +k1,22576:31896867,20333927:241554 +k1,22576:32583029,20333927:0 +) +(1,22577:6630773,21199007:25952256,505283,134348 +g1,22576:8323568,21199007 +g1,22576:9790263,21199007 +g1,22576:10345352,21199007 +g1,22576:13229591,21199007 +g1,22576:14620265,21199007 +g1,22576:15838579,21199007 +g1,22576:18549148,21199007 +g1,22576:20953664,21199007 +g1,22576:21839055,21199007 +g1,22576:22808987,21199007 +k1,22577:32583029,21199007:6649286 +g1,22577:32583029,21199007 +) +(1,22579:6630773,22064087:25952256,513147,134348 +h1,22578:6630773,22064087:983040,0,0 +k1,22578:9605062,22064087:208014 +k1,22578:12337522,22064087:208013 +k1,22578:16315822,22064087:208014 +k1,22578:18259229,22064087:208014 +(1,22578:18259229,22064087:0,452978,122846 +r1,22602:22134613,22064087:3875384,575824,122846 +k1,22578:18259229,22064087:-3875384 +) +(1,22578:18259229,22064087:3875384,452978,122846 +k1,22578:18259229,22064087:3277 +h1,22578:22131336,22064087:0,411205,112570 +) +k1,22578:22516296,22064087:208013 +k1,22578:23743395,22064087:208014 +k1,22578:26336920,22064087:208014 +k1,22578:27204225,22064087:208013 +k1,22578:30386918,22064087:208014 +k1,22578:32583029,22064087:0 +) +(1,22579:6630773,22929167:25952256,513147,134348 +k1,22578:7398245,22929167:235975 +k1,22578:10488967,22929167:235974 +k1,22578:11486470,22929167:235975 +k1,22578:14149899,22929167:235975 +(1,22578:14149899,22929167:0,414482,115847 +r1,22602:18376995,22929167:4227096,530329,115847 +k1,22578:14149899,22929167:-4227096 +) +(1,22578:14149899,22929167:4227096,414482,115847 +g1,22578:16263447,22929167 +g1,22578:16966871,22929167 +h1,22578:18373718,22929167:0,411205,112570 +) +k1,22578:18612969,22929167:235974 +k1,22578:19464982,22929167:235975 +k1,22578:20720042,22929167:235975 +k1,22578:22055710,22929167:235974 +k1,22578:22943113,22929167:235975 +k1,22578:24198172,22929167:235974 +k1,22578:25991938,22929167:235975 +k1,22578:29097079,22929167:235975 +k1,22578:29960888,22929167:235974 +k1,22578:31215948,22929167:235975 +k1,22578:32583029,22929167:0 +) +(1,22579:6630773,23794247:25952256,513147,134348 +k1,22578:7548882,23794247:258817 +k1,22578:9870116,23794247:258816 +k1,22578:11626431,23794247:258817 +k1,22578:13903101,23794247:258816 +k1,22578:16547429,23794247:258817 +k1,22578:17489130,23794247:258816 +k1,22578:18814218,23794247:258817 +k1,22578:21775083,23794247:258816 +k1,22578:22843270,23794247:258817 +k1,22578:24121171,23794247:258816 +k1,22578:26780572,23794247:258817 +k1,22578:29734884,23794247:258816 +k1,22578:31680598,23794247:258817 +k1,22578:32583029,23794247:0 +) +(1,22579:6630773,24659327:25952256,513147,134348 +k1,22578:10037871,24659327:180105 +k1,22578:11784285,24659327:180104 +k1,22578:12495887,24659327:180105 +k1,22578:13695077,24659327:180105 +k1,22578:17178197,24659327:180105 +k1,22578:18017593,24659327:180104 +k1,22578:21552486,24659327:180105 +k1,22578:23467329,24659327:180105 +k1,22578:26622113,24659327:180105 +k1,22578:28998328,24659327:180104 +k1,22578:30572384,24659327:180105 +k1,22578:32583029,24659327:0 +) +(1,22579:6630773,25524407:25952256,513147,134348 +g1,22578:8597508,25524407 +g1,22578:10364358,25524407 +(1,22578:10364358,25524407:0,452978,115847 +r1,22602:11777759,25524407:1413401,568825,115847 +k1,22578:10364358,25524407:-1413401 +) +(1,22578:10364358,25524407:1413401,452978,115847 +k1,22578:10364358,25524407:3277 +h1,22578:11774482,25524407:0,411205,112570 +) +g1,22578:11976988,25524407 +g1,22578:13408294,25524407 +g1,22578:15886210,25524407 +h1,22578:16856798,25524407:0,0,0 +g1,22578:17056027,25524407 +g1,22578:18064626,25524407 +g1,22578:19762008,25524407 +h1,22578:20957385,25524407:0,0,0 +k1,22579:32583029,25524407:11366122 +g1,22579:32583029,25524407 +) +(1,22581:6630773,26389487:25952256,513147,134348 +h1,22580:6630773,26389487:983040,0,0 +k1,22580:9029336,26389487:218836 +k1,22580:10849871,26389487:218835 +k1,22580:13552522,26389487:218836 +k1,22580:15433350,26389487:218835 +k1,22580:16303614,26389487:218836 +k1,22580:19781555,26389487:218836 +k1,22580:21698428,26389487:218835 +k1,22580:24174979,26389487:218836 +k1,22580:28164100,26389487:218835 +k1,22580:28914433,26389487:218836 +k1,22580:30463649,26389487:218835 +k1,22580:31333913,26389487:218836 +k1,22581:32583029,26389487:0 +) +(1,22581:6630773,27254567:25952256,513147,126483 +k1,22580:8155407,27254567:171971 +k1,22580:9346463,27254567:171971 +k1,22580:12280777,27254567:171971 +k1,22580:14278581,27254567:171971 +k1,22580:14938113,27254567:171944 +k1,22580:16541390,27254567:171971 +(1,22580:16748484,27254567:0,414482,115847 +r1,22602:17106750,27254567:358266,530329,115847 +k1,22580:16748484,27254567:-358266 +) +(1,22580:16748484,27254567:358266,414482,115847 +k1,22580:16748484,27254567:3277 +h1,22580:17103473,27254567:0,411205,112570 +) +k1,22580:17485815,27254567:171971 +k1,22580:19185430,27254567:171971 +k1,22580:21145223,27254567:171971 +k1,22580:21933232,27254567:171971 +k1,22580:24740406,27254567:171971 +k1,22580:27727804,27254567:171971 +k1,22580:30534322,27254567:171971 +(1,22580:30741416,27254567:0,414482,115847 +r1,22602:31099682,27254567:358266,530329,115847 +k1,22580:30741416,27254567:-358266 +) +(1,22580:30741416,27254567:358266,414482,115847 +k1,22580:30741416,27254567:3277 +h1,22580:31096405,27254567:0,411205,112570 +) +k1,22580:31478747,27254567:171971 +k1,22580:32583029,27254567:0 +) +(1,22581:6630773,28119647:25952256,505283,134348 +k1,22580:7540998,28119647:162459 +k1,22580:8989272,28119647:162458 +k1,22580:10664957,28119647:162459 +k1,22580:11513578,28119647:162459 +k1,22580:12031896,28119647:162458 +k1,22580:15546522,28119647:162459 +k1,22580:16196532,28119647:162422 +(1,22580:16196532,28119647:0,414482,115847 +r1,22602:16554798,28119647:358266,530329,115847 +k1,22580:16196532,28119647:-358266 +) +(1,22580:16196532,28119647:358266,414482,115847 +k1,22580:16196532,28119647:3277 +h1,22580:16551521,28119647:0,411205,112570 +) +k1,22580:16717257,28119647:162459 +k1,22580:17411212,28119647:162458 +k1,22580:19860878,28119647:162459 +k1,22580:22321684,28119647:162458 +k1,22580:24182181,28119647:162459 +k1,22580:26663959,28119647:162459 +k1,22580:28220368,28119647:162458 +k1,22580:31198909,28119647:162459 +k1,22580:32583029,28119647:0 +) +(1,22581:6630773,28984727:25952256,505283,134348 +k1,22580:7494134,28984727:211933 +k1,22580:10521494,28984727:211933 +k1,22580:12525182,28984727:211934 +k1,22580:16266229,28984727:211933 +k1,22580:17009659,28984727:211933 +k1,22580:19671328,28984727:211933 +k1,22580:20499300,28984727:211934 +k1,22580:22403373,28984727:211933 +k1,22580:25945846,28984727:211933 +k1,22580:27229948,28984727:211933 +k1,22580:28508153,28984727:211934 +k1,22580:29336124,28984727:211933 +k1,22580:31753999,28984727:211933 +k1,22580:32583029,28984727:0 +) +(1,22581:6630773,29849807:25952256,505283,126483 +k1,22580:9207195,29849807:238753 +k1,22580:11455936,29849807:238752 +k1,22580:12465392,29849807:238753 +k1,22580:16144129,29849807:238752 +k1,22580:17609061,29849807:238753 +k1,22580:19132319,29849807:238752 +k1,22580:21551455,29849807:238753 +k1,22580:22856478,29849807:238752 +k1,22580:23842997,29849807:238753 +k1,22580:26245092,29849807:238752 +k1,22580:26941942,29849807:238753 +k1,22580:28802710,29849807:238752 +k1,22580:29789229,29849807:238753 +k1,22580:32583029,29849807:0 +) +(1,22581:6630773,30714887:25952256,513147,134348 +k1,22580:7498329,30714887:251518 +k1,22580:10843802,30714887:251518 +k1,22580:13256041,30714887:251517 +k1,22580:15393030,30714887:251518 +k1,22580:16981482,30714887:251518 +k1,22580:18763266,30714887:251518 +k1,22580:22571423,30714887:251518 +k1,22580:23474368,30714887:251517 +k1,22580:24473652,30714887:251518 +k1,22580:27137550,30714887:251518 +k1,22580:28431090,30714887:251518 +k1,22580:29038467,30714887:251517 +k1,22580:30678693,30714887:251518 +k1,22580:31923737,30714887:251518 +k1,22580:32583029,30714887:0 +) +(1,22581:6630773,31579967:25952256,505283,126483 +k1,22580:9843833,31579967:221341 +k1,22580:11540390,31579967:221342 +k1,22580:12117591,31579967:221341 +k1,22580:13725674,31579967:221341 +k1,22580:14559778,31579967:221342 +k1,22580:15800204,31579967:221341 +k1,22580:18180301,31579967:221341 +k1,22580:19593087,31579967:221341 +k1,22580:21310616,31579967:221342 +k1,22580:24595110,31579967:221341 +k1,22580:25577979,31579967:221341 +(1,22580:25577979,31579967:0,452978,115847 +r1,22602:30508499,31579967:4930520,568825,115847 +k1,22580:25577979,31579967:-4930520 +) +(1,22580:25577979,31579967:4930520,452978,115847 +k1,22580:25577979,31579967:3277 +h1,22580:30505222,31579967:0,411205,112570 +) +k1,22580:30729841,31579967:221342 +k1,22580:31563944,31579967:221341 +k1,22581:32583029,31579967:0 +) +(1,22581:6630773,32445047:25952256,505283,126483 +g1,22580:7244845,32445047 +g1,22580:10603565,32445047 +k1,22581:32583029,32445047:19525796 +g1,22581:32583029,32445047 +) +(1,22583:6630773,33310127:25952256,513147,134348 +h1,22582:6630773,33310127:983040,0,0 +k1,22582:11594797,33310127:187105 +k1,22582:12773462,33310127:187105 +k1,22582:16265548,33310127:187105 +k1,22582:17965879,33310127:187105 +k1,22582:19100635,33310127:187105 +k1,22582:20540133,33310127:187105 +k1,22582:22745093,33310127:187106 +k1,22582:24174761,33310127:187105 +k1,22582:26059904,33310127:187105 +k1,22582:27266094,33310127:187105 +k1,22582:29071283,33310127:187105 +k1,22582:29941273,33310127:187105 +k1,22582:32583029,33310127:0 +) +(1,22583:6630773,34175207:25952256,513147,126483 +k1,22582:9058460,34175207:135893 +k1,22582:10213439,34175207:135894 +k1,22582:11441817,34175207:135893 +k1,22582:12237003,34175207:135894 +k1,22582:16335858,34175207:135893 +k1,22582:17154637,34175207:135894 +k1,22582:19145854,34175207:135893 +k1,22582:21487690,34175207:135894 +k1,22582:22251418,34175207:135893 +k1,22582:23590553,34175207:135894 +k1,22582:25093527,34175207:135893 +k1,22582:26609609,34175207:135894 +k1,22582:27737062,34175207:135893 +k1,22582:30160163,34175207:135894 +k1,22582:32583029,34175207:0 +) +(1,22583:6630773,35040287:25952256,473825,126483 +g1,22582:7516164,35040287 +k1,22583:32583029,35040287:21244150 +g1,22583:32583029,35040287 +) +v1,22585:6630773,35725142:0,393216,0 +(1,22592:6630773,38120390:25952256,2788464,196608 +g1,22592:6630773,38120390 +g1,22592:6630773,38120390 +g1,22592:6434165,38120390 +(1,22592:6434165,38120390:0,2788464,196608 +r1,22602:32779637,38120390:26345472,2985072,196608 +k1,22592:6434165,38120390:-26345472 +) +(1,22592:6434165,38120390:26345472,2788464,196608 +[1,22592:6630773,38120390:25952256,2591856,0 +(1,22587:6630773,35952973:25952256,424439,112852 +(1,22586:6630773,35952973:0,0,0 +g1,22586:6630773,35952973 +g1,22586:6630773,35952973 +g1,22586:6303093,35952973 +(1,22586:6303093,35952973:0,0,0 +) +g1,22586:6630773,35952973 +) +g1,22587:7626635,35952973 +g1,22587:8290543,35952973 +g1,22587:10614221,35952973 +g1,22587:11278129,35952973 +g1,22587:16921346,35952973 +k1,22587:16921346,35952973:0 +h1,22587:22896518,35952973:0,0,0 +k1,22587:32583029,35952973:9686511 +g1,22587:32583029,35952973 +) +(1,22588:6630773,36637828:25952256,424439,112852 +h1,22588:6630773,36637828:0,0,0 +g1,22588:6962727,36637828 +g1,22588:7294681,36637828 +g1,22588:7626635,36637828 +g1,22588:7958589,36637828 +g1,22588:8290543,36637828 +g1,22588:8622497,36637828 +g1,22588:8954451,36637828 +g1,22588:9286405,36637828 +g1,22588:9618359,36637828 +g1,22588:9950313,36637828 +g1,22588:10614221,36637828 +g1,22588:11278129,36637828 +g1,22588:13933761,36637828 +g1,22588:18249162,36637828 +k1,22588:18249162,36637828:0 +h1,22588:19908932,36637828:0,0,0 +k1,22588:32583029,36637828:12674097 +g1,22588:32583029,36637828 +) +(1,22589:6630773,37322683:25952256,424439,112852 +h1,22589:6630773,37322683:0,0,0 +g1,22589:6962727,37322683 +g1,22589:7294681,37322683 +g1,22589:7626635,37322683 +g1,22589:7958589,37322683 +g1,22589:8290543,37322683 +g1,22589:8622497,37322683 +g1,22589:8954451,37322683 +g1,22589:9286405,37322683 +g1,22589:9618359,37322683 +g1,22589:9950313,37322683 +g1,22589:12273991,37322683 +g1,22589:12937899,37322683 +g1,22589:19908931,37322683 +h1,22589:20240885,37322683:0,0,0 +k1,22589:32583029,37322683:12342144 +g1,22589:32583029,37322683 +) +(1,22590:6630773,38007538:25952256,424439,112852 +h1,22590:6630773,38007538:0,0,0 +g1,22590:6962727,38007538 +g1,22590:7294681,38007538 +g1,22590:7626635,38007538 +g1,22590:7958589,38007538 +g1,22590:8290543,38007538 +g1,22590:8622497,38007538 +g1,22590:8954451,38007538 +g1,22590:9286405,38007538 +g1,22590:9618359,38007538 +g1,22590:9950313,38007538 +g1,22590:17253300,38007538 +g1,22590:17917208,38007538 +h1,22590:20572840,38007538:0,0,0 +k1,22590:32583029,38007538:12010189 +g1,22590:32583029,38007538 +) +] +) +g1,22592:32583029,38120390 +g1,22592:6630773,38120390 +g1,22592:6630773,38120390 +g1,22592:32583029,38120390 +g1,22592:32583029,38120390 +) +h1,22592:6630773,38316998:0,0,0 +] +(1,22602:32583029,45706769:0,0,0 +g1,22602:32583029,45706769 +) +) +] +(1,22602:6630773,47279633:25952256,0,0 +h1,22602:6630773,47279633:25952256,0,0 +) +] +(1,22602:4262630,4025873:0,0,0 +[1,22602:-473656,4025873:0,0,0 +(1,22602:-473656,-710413:0,0,0 +(1,22602:-473656,-710413:0,0,0 +g1,22602:-473656,-710413 +) +g1,22602:-473656,-710413 +) +] +) +] +!25159 +}388 Input:4282:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4283:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4284:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4285:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4286:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{388 -[1,22642:4262630,47279633:28320399,43253760,0 -(1,22642:4262630,4025873:0,0,0 -[1,22642:-473656,4025873:0,0,0 -(1,22642:-473656,-710413:0,0,0 -(1,22642:-473656,-644877:0,0,0 -k1,22642:-473656,-644877:-65536 +{389 +[1,22640:4262630,47279633:28320399,43253760,0 +(1,22640:4262630,4025873:0,0,0 +[1,22640:-473656,4025873:0,0,0 +(1,22640:-473656,-710413:0,0,0 +(1,22640:-473656,-644877:0,0,0 +k1,22640:-473656,-644877:-65536 ) -(1,22642:-473656,4736287:0,0,0 -k1,22642:-473656,4736287:5209943 +(1,22640:-473656,4736287:0,0,0 +k1,22640:-473656,4736287:5209943 ) -g1,22642:-473656,-710413 +g1,22640:-473656,-710413 ) ] ) -[1,22642:6630773,47279633:25952256,43253760,0 -[1,22642:6630773,4812305:25952256,786432,0 -(1,22642:6630773,4812305:25952256,530548,134348 -(1,22642:6630773,4812305:25952256,530548,134348 -g1,22642:3078558,4812305 -[1,22642:3078558,4812305:0,0,0 -(1,22642:3078558,2439708:0,1703936,0 -k1,22642:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22642:2537886,2439708:1179648,16384,0 +[1,22640:6630773,47279633:25952256,43253760,0 +[1,22640:6630773,4812305:25952256,786432,0 +(1,22640:6630773,4812305:25952256,530548,134348 +(1,22640:6630773,4812305:25952256,530548,134348 +g1,22640:3078558,4812305 +[1,22640:3078558,4812305:0,0,0 +(1,22640:3078558,2439708:0,1703936,0 +k1,22640:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22640:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22642:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22640:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22642:3078558,4812305:0,0,0 -(1,22642:3078558,2439708:0,1703936,0 -g1,22642:29030814,2439708 -g1,22642:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22642:36151628,1915420:16384,1179648,0 +[1,22640:3078558,4812305:0,0,0 +(1,22640:3078558,2439708:0,1703936,0 +g1,22640:29030814,2439708 +g1,22640:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22640:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22642:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22640:37855564,2439708:1179648,16384,0 ) ) -k1,22642:3078556,2439708:-34777008 +k1,22640:3078556,2439708:-34777008 ) ] -[1,22642:3078558,4812305:0,0,0 -(1,22642:3078558,49800853:0,16384,2228224 -k1,22642:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22642:2537886,49800853:1179648,16384,0 +[1,22640:3078558,4812305:0,0,0 +(1,22640:3078558,49800853:0,16384,2228224 +k1,22640:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22640:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22642:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22640:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22642:3078558,4812305:0,0,0 -(1,22642:3078558,49800853:0,16384,2228224 -g1,22642:29030814,49800853 -g1,22642:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22642:36151628,51504789:16384,1179648,0 +[1,22640:3078558,4812305:0,0,0 +(1,22640:3078558,49800853:0,16384,2228224 +g1,22640:29030814,49800853 +g1,22640:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22640:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22642:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22640:37855564,49800853:1179648,16384,0 ) ) -k1,22642:3078556,49800853:-34777008 +k1,22640:3078556,49800853:-34777008 ) ] -g1,22642:6630773,4812305 -g1,22642:6630773,4812305 -g1,22642:8592265,4812305 -g1,22642:12111033,4812305 -g1,22642:15898358,4812305 -k1,22642:31387652,4812305:15489294 -) -) -] -[1,22642:6630773,45706769:25952256,40108032,0 -(1,22642:6630773,45706769:25952256,40108032,0 -(1,22642:6630773,45706769:0,0,0 -g1,22642:6630773,45706769 +g1,22640:6630773,4812305 +g1,22640:6630773,4812305 +g1,22640:8592265,4812305 +g1,22640:12111033,4812305 +g1,22640:15898358,4812305 +k1,22640:31387652,4812305:15489294 +) +) +] +[1,22640:6630773,45706769:25952256,40108032,0 +(1,22640:6630773,45706769:25952256,40108032,0 +(1,22640:6630773,45706769:0,0,0 +g1,22640:6630773,45706769 ) -[1,22642:6630773,45706769:25952256,40108032,0 -(1,22597:6630773,14682403:25952256,9083666,0 -k1,22597:10523651,14682403:3892878 -h1,22596:10523651,14682403:0,0,0 -(1,22596:10523651,14682403:18166500,9083666,0 -(1,22596:10523651,14682403:18167376,9083688,0 -(1,22596:10523651,14682403:18167376,9083688,0 -(1,22596:10523651,14682403:0,9083688,0 -(1,22596:10523651,14682403:0,14208860,0 -(1,22596:10523651,14682403:28417720,14208860,0 -) -k1,22596:10523651,14682403:-28417720 -) -) -g1,22596:28691027,14682403 -) -) -) -g1,22597:28690151,14682403 -k1,22597:32583029,14682403:3892878 -) -v1,22604:6630773,15367258:0,393216,0 -(1,22612:6630773,18447361:25952256,3473319,196608 -g1,22612:6630773,18447361 -g1,22612:6630773,18447361 -g1,22612:6434165,18447361 -(1,22612:6434165,18447361:0,3473319,196608 -r1,22642:32779637,18447361:26345472,3669927,196608 -k1,22612:6434165,18447361:-26345472 -) -(1,22612:6434165,18447361:26345472,3473319,196608 -[1,22612:6630773,18447361:25952256,3276711,0 -(1,22606:6630773,15595089:25952256,424439,112852 -(1,22605:6630773,15595089:0,0,0 -g1,22605:6630773,15595089 -g1,22605:6630773,15595089 -g1,22605:6303093,15595089 -(1,22605:6303093,15595089:0,0,0 -) -g1,22605:6630773,15595089 -) -k1,22606:6630773,15595089:0 -g1,22606:11942036,15595089 -g1,22606:12605944,15595089 -g1,22606:14265714,15595089 -g1,22606:15925484,15595089 -g1,22606:16921346,15595089 -g1,22606:19245024,15595089 -g1,22606:22232609,15595089 -g1,22606:23560425,15595089 -g1,22606:25220195,15595089 -k1,22606:25220195,15595089:12111 -h1,22606:26560122,15595089:0,0,0 -k1,22606:32583029,15595089:6022907 -g1,22606:32583029,15595089 -) -(1,22607:6630773,16279944:25952256,424439,106246 -h1,22607:6630773,16279944:0,0,0 -g1,22607:9286405,16279944 -k1,22607:9286405,16279944:0 -h1,22607:9950313,16279944:0,0,0 -k1,22607:32583029,16279944:22632716 -g1,22607:32583029,16279944 -) -(1,22608:6630773,16964799:25952256,431045,86428 -h1,22608:6630773,16964799:0,0,0 -g1,22608:6962727,16964799 -g1,22608:7294681,16964799 -g1,22608:11610082,16964799 -g1,22608:12273990,16964799 -k1,22608:12273990,16964799:0 -h1,22608:13601806,16964799:0,0,0 -k1,22608:32583030,16964799:18981224 -g1,22608:32583030,16964799 -) -(1,22609:6630773,17649654:25952256,424439,106246 -h1,22609:6630773,17649654:0,0,0 -g1,22609:6962727,17649654 -g1,22609:7294681,17649654 -g1,22609:7626635,17649654 -g1,22609:7958589,17649654 -g1,22609:8290543,17649654 -g1,22609:8622497,17649654 -g1,22609:8954451,17649654 -g1,22609:9286405,17649654 -g1,22609:9618359,17649654 -g1,22609:9950313,17649654 -g1,22609:10282267,17649654 -g1,22609:10614221,17649654 -g1,22609:10946175,17649654 -g1,22609:11610083,17649654 -g1,22609:12273991,17649654 -k1,22609:12273991,17649654:0 -h1,22609:15261577,17649654:0,0,0 -k1,22609:32583029,17649654:17321452 -g1,22609:32583029,17649654 -) -(1,22610:6630773,18334509:25952256,424439,112852 -h1,22610:6630773,18334509:0,0,0 -g1,22610:6962727,18334509 -g1,22610:7294681,18334509 -g1,22610:7626635,18334509 -g1,22610:7958589,18334509 -g1,22610:8290543,18334509 -g1,22610:8622497,18334509 -g1,22610:8954451,18334509 -g1,22610:9286405,18334509 -g1,22610:9618359,18334509 -g1,22610:9950313,18334509 -g1,22610:10282267,18334509 -g1,22610:10614221,18334509 -g1,22610:10946175,18334509 -g1,22610:14929622,18334509 -g1,22610:15593530,18334509 -g1,22610:20904793,18334509 -g1,22610:22564563,18334509 -g1,22610:24224333,18334509 -g1,22610:25552149,18334509 -g1,22610:26216057,18334509 -h1,22610:27543873,18334509:0,0,0 -k1,22610:32583029,18334509:5039156 -g1,22610:32583029,18334509 -) -] -) -g1,22612:32583029,18447361 -g1,22612:6630773,18447361 -g1,22612:6630773,18447361 -g1,22612:32583029,18447361 -g1,22612:32583029,18447361 -) -h1,22612:6630773,18643969:0,0,0 -(1,22616:6630773,19509049:25952256,505283,138281 -h1,22615:6630773,19509049:983040,0,0 -k1,22615:8997627,19509049:187127 -$1,22615:8997627,19509049 -$1,22615:9500288,19509049 -k1,22615:11152800,19509049:187127 -k1,22615:12853809,19509049:187127 -k1,22615:13572433,19509049:187127 -k1,22615:14115420,19509049:187127 -k1,22615:16157871,19509049:187127 -$1,22615:16157871,19509049 -$1,22615:16665775,19509049 -k1,22615:16852902,19509049:187127 -k1,22615:20014709,19509049:187128 -k1,22615:21595787,19509049:187127 -$1,22615:21595787,19509049 -$1,22615:21882179,19509049 -k1,22615:22069306,19509049:187127 -k1,22615:22942595,19509049:187127 -k1,22615:26280038,19509049:187127 -k1,22615:27658610,19509049:187127 -k1,22615:28864822,19509049:187127 -$1,22615:28864822,19509049 -$1,22615:29416635,19509049 -k1,22615:31069147,19509049:187127 -k1,22615:32583029,19509049:0 -) -(1,22616:6630773,20374129:25952256,505283,134348 -k1,22615:9583217,20374129:284473 -k1,22615:10223550,20374129:284473 -k1,22615:14140684,20374129:284473 -k1,22615:15041196,20374129:284474 -k1,22615:16344754,20374129:284473 -k1,22615:18420981,20374129:284473 -k1,22615:19902141,20374129:284473 -k1,22615:21454080,20374129:284473 -k1,22615:22606905,20374129:284473 -k1,22615:23983863,20374129:284473 -k1,22615:24624197,20374129:284474 -k1,22615:27883349,20374129:284473 -k1,22615:30207302,20374129:284473 -k1,22615:31563944,20374129:284473 -k1,22615:32583029,20374129:0 -) -(1,22616:6630773,21239209:25952256,505283,126483 -g1,22615:9243038,21239209 -g1,22615:9973764,21239209 -g1,22615:12124655,21239209 -g1,22615:15010205,21239209 -k1,22616:32583029,21239209:14080411 -g1,22616:32583029,21239209 -) -(1,22618:6630773,22104289:25952256,505283,138281 -h1,22617:6630773,22104289:983040,0,0 -k1,22617:9369321,22104289:280293 -k1,22617:13391065,22104289:280294 -k1,22617:14772363,22104289:280293 -k1,22617:15738818,22104289:280293 -k1,22617:17408475,22104289:280294 -k1,22617:19202650,22104289:280293 -k1,22617:19838803,22104289:280293 -k1,22617:23863824,22104289:280294 -$1,22617:23863824,22104289 -$1,22617:26000297,22104289 -k1,22617:26454260,22104289:280293 -k1,22617:28517788,22104289:280293 -k1,22617:30533475,22104289:280294 -k1,22617:31169628,22104289:280293 -(1,22617:31169628,22104289:0,414482,122846 -r1,22642:32583029,22104289:1413401,537328,122846 -k1,22617:31169628,22104289:-1413401 -) -(1,22617:31169628,22104289:1413401,414482,122846 -k1,22617:31169628,22104289:3277 -h1,22617:32579752,22104289:0,411205,112570 -) -k1,22617:32583029,22104289:0 -) -(1,22618:6630773,22969369:25952256,513147,134348 -k1,22617:9153858,22969369:195902 -k1,22617:10009053,22969369:195903 -k1,22617:10975658,22969369:195902 -k1,22617:14611545,22969369:195902 -k1,22617:15675800,22969369:195903 -k1,22617:17268274,22969369:195902 -k1,22617:20438855,22969369:195902 -k1,22617:22830868,22969369:195902 -k1,22617:24311277,22969369:195903 -k1,22617:25611461,22969369:195902 -k1,22617:26555129,22969369:195902 -k1,22617:28914375,22969369:195903 -k1,22617:30377743,22969369:195902 -k1,22618:32583029,22969369:0 -) -(1,22618:6630773,23834449:25952256,513147,134348 -k1,22617:8739116,23834449:263505 -k1,22617:9630456,23834449:263505 -k1,22617:11595931,23834449:263505 -k1,22617:13988046,23834449:263506 -k1,22617:17226230,23834449:263505 -k1,22617:19859517,23834449:263505 -k1,22617:21407528,23834449:263505 -k1,22617:22662593,23834449:263505 -k1,22617:25212649,23834449:263505 -k1,22617:27211548,23834449:263506 -k1,22617:28494138,23834449:263505 -k1,22617:30841688,23834449:263505 -k1,22617:31764485,23834449:263505 -k1,22618:32583029,23834449:0 -) -(1,22618:6630773,24699529:25952256,505283,134348 -k1,22617:10146824,24699529:284471 -k1,22617:11384845,24699529:284472 -k1,22617:13199582,24699529:284471 -k1,22617:14135481,24699529:284471 -k1,22617:15354495,24699529:284471 -(1,22617:15354495,24699529:0,414482,115847 -r1,22642:19581591,24699529:4227096,530329,115847 -k1,22617:15354495,24699529:-4227096 -) -(1,22617:15354495,24699529:4227096,414482,115847 -g1,22617:17468043,24699529 -g1,22617:18171467,24699529 -h1,22617:19578314,24699529:0,411205,112570 -) -k1,22617:19866063,24699529:284472 -k1,22617:20766572,24699529:284471 -k1,22617:22070128,24699529:284471 -k1,22617:23454294,24699529:284472 -k1,22617:24390193,24699529:284471 -k1,22617:25693749,24699529:284471 -k1,22617:28985667,24699529:284471 -k1,22617:29994967,24699529:284472 -k1,22617:31563944,24699529:284471 -k1,22617:32583029,24699529:0 -) -(1,22618:6630773,25564609:25952256,513147,134348 -k1,22617:9056109,25564609:229225 -k1,22617:11612517,25564609:229225 -k1,22617:12501033,25564609:229224 -k1,22617:14468273,25564609:229225 -k1,22617:16999778,25564609:229225 -k1,22617:17915165,25564609:229225 -k1,22617:18675886,25564609:229224 -k1,22617:19896671,25564609:229225 -k1,22617:22289239,25564609:229225 -k1,22617:23785930,25564609:229225 -k1,22617:27785440,25564609:229224 -k1,22617:30057422,25564609:229225 -k1,22617:31305732,25564609:229225 -k1,22617:32583029,25564609:0 -) -(1,22618:6630773,26429689:25952256,505283,7863 -g1,22617:7361499,26429689 -k1,22618:32583028,26429689:22294036 -g1,22618:32583028,26429689 -) -v1,22620:6630773,27114544:0,393216,0 -(1,22630:6630773,31564357:25952256,4843029,196608 -g1,22630:6630773,31564357 -g1,22630:6630773,31564357 -g1,22630:6434165,31564357 -(1,22630:6434165,31564357:0,4843029,196608 -r1,22642:32779637,31564357:26345472,5039637,196608 -k1,22630:6434165,31564357:-26345472 -) -(1,22630:6434165,31564357:26345472,4843029,196608 -[1,22630:6630773,31564357:25952256,4646421,0 -(1,22622:6630773,27342375:25952256,424439,112852 -(1,22621:6630773,27342375:0,0,0 -g1,22621:6630773,27342375 -g1,22621:6630773,27342375 -g1,22621:6303093,27342375 -(1,22621:6303093,27342375:0,0,0 -) -g1,22621:6630773,27342375 -) -k1,22622:6630773,27342375:0 -g1,22622:11942036,27342375 -g1,22622:14265714,27342375 -g1,22622:15261576,27342375 -g1,22622:17253300,27342375 -g1,22622:17917208,27342375 -g1,22622:22564563,27342375 -h1,22622:22896517,27342375:0,0,0 -k1,22622:32583029,27342375:9686512 -g1,22622:32583029,27342375 -) -(1,22623:6630773,28027230:25952256,424439,112852 -h1,22623:6630773,28027230:0,0,0 -g1,22623:6962727,28027230 -g1,22623:7294681,28027230 -g1,22623:7626635,28027230 -g1,22623:11942036,28027230 -h1,22623:12273990,28027230:0,0,0 -k1,22623:32583030,28027230:20309040 -g1,22623:32583030,28027230 -) -(1,22624:6630773,28712085:25952256,424439,112852 -h1,22624:6630773,28712085:0,0,0 -g1,22624:6962727,28712085 -g1,22624:7294681,28712085 -g1,22624:7626635,28712085 -g1,22624:12937898,28712085 -g1,22624:13601806,28712085 -g1,22624:14929622,28712085 -g1,22624:16921346,28712085 -g1,22624:17585254,28712085 -g1,22624:19245024,28712085 -g1,22624:21236748,28712085 -g1,22624:21900656,28712085 -g1,22624:23892380,28712085 -h1,22624:24224334,28712085:0,0,0 -k1,22624:32583029,28712085:8358695 -g1,22624:32583029,28712085 -) -(1,22625:6630773,29396940:25952256,424439,106246 -h1,22625:6630773,29396940:0,0,0 -g1,22625:6962727,29396940 -g1,22625:7294681,29396940 -g1,22625:7626635,29396940 -g1,22625:9950313,29396940 -g1,22625:10614221,29396940 -k1,22625:10614221,29396940:0 -h1,22625:17585253,29396940:0,0,0 -k1,22625:32583029,29396940:14997776 -g1,22625:32583029,29396940 -) -(1,22626:6630773,30081795:25952256,424439,106246 -h1,22626:6630773,30081795:0,0,0 -g1,22626:6962727,30081795 -g1,22626:7294681,30081795 -g1,22626:7626635,30081795 -g1,22626:7958589,30081795 -g1,22626:8290543,30081795 -g1,22626:8622497,30081795 -g1,22626:8954451,30081795 -g1,22626:9286405,30081795 -g1,22626:9950313,30081795 -g1,22626:10614221,30081795 -k1,22626:10614221,30081795:0 -h1,22626:20572840,30081795:0,0,0 -k1,22626:32583029,30081795:12010189 -g1,22626:32583029,30081795 -) -(1,22627:6630773,30766650:25952256,424439,112852 -h1,22627:6630773,30766650:0,0,0 -g1,22627:6962727,30766650 -g1,22627:7294681,30766650 -g1,22627:7626635,30766650 -g1,22627:7958589,30766650 -g1,22627:8290543,30766650 -g1,22627:8622497,30766650 -g1,22627:8954451,30766650 -g1,22627:9286405,30766650 -g1,22627:11278129,30766650 -g1,22627:11942037,30766650 -g1,22627:14265715,30766650 -k1,22627:14265715,30766650:0 -h1,22627:18581116,30766650:0,0,0 -k1,22627:32583029,30766650:14001913 -g1,22627:32583029,30766650 -) -(1,22628:6630773,31451505:25952256,431045,112852 -h1,22628:6630773,31451505:0,0,0 -g1,22628:6962727,31451505 -g1,22628:7294681,31451505 -g1,22628:7626635,31451505 -g1,22628:7958589,31451505 -g1,22628:8290543,31451505 -g1,22628:8622497,31451505 -g1,22628:8954451,31451505 -g1,22628:9286405,31451505 -g1,22628:12273990,31451505 -g1,22628:12937898,31451505 -g1,22628:21236747,31451505 -g1,22628:21900655,31451505 -g1,22628:25552149,31451505 -h1,22628:28539734,31451505:0,0,0 -k1,22628:32583029,31451505:4043295 -g1,22628:32583029,31451505 -) -] -) -g1,22630:32583029,31564357 -g1,22630:6630773,31564357 -g1,22630:6630773,31564357 -g1,22630:32583029,31564357 -g1,22630:32583029,31564357 -) -h1,22630:6630773,31760965:0,0,0 -(1,22633:6630773,40910167:25952256,9083666,0 -k1,22633:10523651,40910167:3892878 -h1,22632:10523651,40910167:0,0,0 -(1,22632:10523651,40910167:18166500,9083666,0 -(1,22632:10523651,40910167:18167376,9083688,0 -(1,22632:10523651,40910167:18167376,9083688,0 -(1,22632:10523651,40910167:0,9083688,0 -(1,22632:10523651,40910167:0,14208860,0 -(1,22632:10523651,40910167:28417720,14208860,0 -) -k1,22632:10523651,40910167:-28417720 -) -) -g1,22632:28691027,40910167 -) -) -) -g1,22633:28690151,40910167 -k1,22633:32583029,40910167:3892878 -) -(1,22640:6630773,41775247:25952256,513147,134348 -h1,22639:6630773,41775247:983040,0,0 -k1,22639:8639809,41775247:208107 -k1,22639:11233426,41775247:208106 -k1,22639:14416212,41775247:208107 -k1,22639:16820429,41775247:208106 -k1,22639:17560033,41775247:208107 -k1,22639:18538842,41775247:208106 -k1,22639:22133850,41775247:208107 -k1,22639:23579931,41775247:208106 -k1,22639:24447330,41775247:208107 -k1,22639:27227724,41775247:208106 -k1,22639:31379788,41775247:208107 -k1,22639:32583029,41775247:0 -) -(1,22640:6630773,42640327:25952256,505283,134348 -k1,22639:9914837,42640327:299554 -k1,22639:11318673,42640327:299554 -k1,22639:12365994,42640327:299555 -k1,22639:13951364,42640327:299554 -k1,22639:15764144,42640327:299554 -k1,22639:16679736,42640327:299554 -k1,22639:18681260,42640327:299554 -k1,22639:22311354,42640327:299554 -k1,22639:23652931,42640327:299555 -k1,22639:26787572,42640327:299554 -k1,22639:27442986,42640327:299554 -k1,22639:30717219,42640327:299554 -k1,22639:32583029,42640327:0 -) -(1,22640:6630773,43505407:25952256,513147,126483 -k1,22639:8882916,43505407:213973 -k1,22639:9712927,43505407:213973 -k1,22639:10282759,43505407:213972 -k1,22639:13008072,43505407:213973 -k1,22639:14326327,43505407:213973 -k1,22639:15288066,43505407:213973 -k1,22639:17665381,43505407:213972 -k1,22639:19273305,43505407:213973 -(1,22639:19273305,43505407:0,452978,115847 -r1,22642:21741842,43505407:2468537,568825,115847 -k1,22639:19273305,43505407:-2468537 -) -(1,22639:19273305,43505407:2468537,452978,115847 -k1,22639:19273305,43505407:3277 -h1,22639:21738565,43505407:0,411205,112570 -) -k1,22639:21955815,43505407:213973 -k1,22639:22855950,43505407:213973 -k1,22639:24647375,43505407:213973 -k1,22639:26259230,43505407:213972 -k1,22639:27420854,43505407:213973 -(1,22639:27420854,43505407:0,452978,115847 -r1,22642:30241103,43505407:2820249,568825,115847 -k1,22639:27420854,43505407:-2820249 -) -(1,22639:27420854,43505407:2820249,452978,115847 -k1,22639:27420854,43505407:3277 -h1,22639:30237826,43505407:0,411205,112570 -) -k1,22639:30628746,43505407:213973 -k1,22639:32583029,43505407:0 -) -(1,22640:6630773,44370487:25952256,505283,134348 -k1,22639:7996124,44370487:181115 -k1,22639:10021423,44370487:181116 -k1,22639:11194098,44370487:181115 -k1,22639:12661029,44370487:181115 -k1,22639:13776688,44370487:181116 -k1,22639:14609231,44370487:181115 -k1,22639:18734304,44370487:181116 -k1,22639:20910990,44370487:181115 -k1,22639:24330894,44370487:181115 -k1,22639:25796516,44370487:181116 -(1,22639:25796516,44370487:0,452978,115847 -r1,22642:30023612,44370487:4227096,568825,115847 -k1,22639:25796516,44370487:-4227096 -) -(1,22639:25796516,44370487:4227096,452978,115847 -k1,22639:25796516,44370487:3277 -h1,22639:30020335,44370487:0,411205,112570 -) -k1,22639:30204727,44370487:181115 -k1,22639:32583029,44370487:0 -) -(1,22640:6630773,45235567:25952256,513147,134348 -g1,22639:9501249,45235567 -g1,22639:13103107,45235567 -g1,22639:16425782,45235567 -g1,22639:17386539,45235567 -g1,22639:20239976,45235567 -g1,22639:23440099,45235567 -g1,22639:23995188,45235567 -g1,22639:26172294,45235567 -g1,22639:27030815,45235567 -k1,22640:32583029,45235567:1729499 -g1,22640:32583029,45235567 -) -] -(1,22642:32583029,45706769:0,0,0 -g1,22642:32583029,45706769 -) -) -] -(1,22642:6630773,47279633:25952256,0,0 -h1,22642:6630773,47279633:25952256,0,0 -) -] -(1,22642:4262630,4025873:0,0,0 -[1,22642:-473656,4025873:0,0,0 -(1,22642:-473656,-710413:0,0,0 -(1,22642:-473656,-710413:0,0,0 -g1,22642:-473656,-710413 -) -g1,22642:-473656,-710413 +[1,22640:6630773,45706769:25952256,40108032,0 +(1,22595:6630773,14682403:25952256,9083666,0 +k1,22595:10523651,14682403:3892878 +h1,22594:10523651,14682403:0,0,0 +(1,22594:10523651,14682403:18166500,9083666,0 +(1,22594:10523651,14682403:18167376,9083688,0 +(1,22594:10523651,14682403:18167376,9083688,0 +(1,22594:10523651,14682403:0,9083688,0 +(1,22594:10523651,14682403:0,14208860,0 +(1,22594:10523651,14682403:28417720,14208860,0 +) +k1,22594:10523651,14682403:-28417720 +) +) +g1,22594:28691027,14682403 +) +) +) +g1,22595:28690151,14682403 +k1,22595:32583029,14682403:3892878 +) +v1,22602:6630773,15367258:0,393216,0 +(1,22610:6630773,18447361:25952256,3473319,196608 +g1,22610:6630773,18447361 +g1,22610:6630773,18447361 +g1,22610:6434165,18447361 +(1,22610:6434165,18447361:0,3473319,196608 +r1,22640:32779637,18447361:26345472,3669927,196608 +k1,22610:6434165,18447361:-26345472 +) +(1,22610:6434165,18447361:26345472,3473319,196608 +[1,22610:6630773,18447361:25952256,3276711,0 +(1,22604:6630773,15595089:25952256,424439,112852 +(1,22603:6630773,15595089:0,0,0 +g1,22603:6630773,15595089 +g1,22603:6630773,15595089 +g1,22603:6303093,15595089 +(1,22603:6303093,15595089:0,0,0 +) +g1,22603:6630773,15595089 +) +k1,22604:6630773,15595089:0 +g1,22604:11942036,15595089 +g1,22604:12605944,15595089 +g1,22604:14265714,15595089 +g1,22604:15925484,15595089 +g1,22604:16921346,15595089 +g1,22604:19245024,15595089 +g1,22604:22232609,15595089 +g1,22604:23560425,15595089 +g1,22604:25220195,15595089 +k1,22604:25220195,15595089:12111 +h1,22604:26560122,15595089:0,0,0 +k1,22604:32583029,15595089:6022907 +g1,22604:32583029,15595089 +) +(1,22605:6630773,16279944:25952256,424439,106246 +h1,22605:6630773,16279944:0,0,0 +g1,22605:9286405,16279944 +k1,22605:9286405,16279944:0 +h1,22605:9950313,16279944:0,0,0 +k1,22605:32583029,16279944:22632716 +g1,22605:32583029,16279944 +) +(1,22606:6630773,16964799:25952256,431045,86428 +h1,22606:6630773,16964799:0,0,0 +g1,22606:6962727,16964799 +g1,22606:7294681,16964799 +g1,22606:11610082,16964799 +g1,22606:12273990,16964799 +k1,22606:12273990,16964799:0 +h1,22606:13601806,16964799:0,0,0 +k1,22606:32583030,16964799:18981224 +g1,22606:32583030,16964799 +) +(1,22607:6630773,17649654:25952256,424439,106246 +h1,22607:6630773,17649654:0,0,0 +g1,22607:6962727,17649654 +g1,22607:7294681,17649654 +g1,22607:7626635,17649654 +g1,22607:7958589,17649654 +g1,22607:8290543,17649654 +g1,22607:8622497,17649654 +g1,22607:8954451,17649654 +g1,22607:9286405,17649654 +g1,22607:9618359,17649654 +g1,22607:9950313,17649654 +g1,22607:10282267,17649654 +g1,22607:10614221,17649654 +g1,22607:10946175,17649654 +g1,22607:11610083,17649654 +g1,22607:12273991,17649654 +k1,22607:12273991,17649654:0 +h1,22607:15261577,17649654:0,0,0 +k1,22607:32583029,17649654:17321452 +g1,22607:32583029,17649654 +) +(1,22608:6630773,18334509:25952256,424439,112852 +h1,22608:6630773,18334509:0,0,0 +g1,22608:6962727,18334509 +g1,22608:7294681,18334509 +g1,22608:7626635,18334509 +g1,22608:7958589,18334509 +g1,22608:8290543,18334509 +g1,22608:8622497,18334509 +g1,22608:8954451,18334509 +g1,22608:9286405,18334509 +g1,22608:9618359,18334509 +g1,22608:9950313,18334509 +g1,22608:10282267,18334509 +g1,22608:10614221,18334509 +g1,22608:10946175,18334509 +g1,22608:14929622,18334509 +g1,22608:15593530,18334509 +g1,22608:20904793,18334509 +g1,22608:22564563,18334509 +g1,22608:24224333,18334509 +g1,22608:25552149,18334509 +g1,22608:26216057,18334509 +h1,22608:27543873,18334509:0,0,0 +k1,22608:32583029,18334509:5039156 +g1,22608:32583029,18334509 +) +] +) +g1,22610:32583029,18447361 +g1,22610:6630773,18447361 +g1,22610:6630773,18447361 +g1,22610:32583029,18447361 +g1,22610:32583029,18447361 +) +h1,22610:6630773,18643969:0,0,0 +(1,22614:6630773,19509049:25952256,505283,138281 +h1,22613:6630773,19509049:983040,0,0 +k1,22613:8997627,19509049:187127 +$1,22613:8997627,19509049 +$1,22613:9500288,19509049 +k1,22613:11152800,19509049:187127 +k1,22613:12853809,19509049:187127 +k1,22613:13572433,19509049:187127 +k1,22613:14115420,19509049:187127 +k1,22613:16157871,19509049:187127 +$1,22613:16157871,19509049 +$1,22613:16665775,19509049 +k1,22613:16852902,19509049:187127 +k1,22613:20014709,19509049:187128 +k1,22613:21595787,19509049:187127 +$1,22613:21595787,19509049 +$1,22613:21882179,19509049 +k1,22613:22069306,19509049:187127 +k1,22613:22942595,19509049:187127 +k1,22613:26280038,19509049:187127 +k1,22613:27658610,19509049:187127 +k1,22613:28864822,19509049:187127 +$1,22613:28864822,19509049 +$1,22613:29416635,19509049 +k1,22613:31069147,19509049:187127 +k1,22613:32583029,19509049:0 +) +(1,22614:6630773,20374129:25952256,505283,134348 +k1,22613:9583217,20374129:284473 +k1,22613:10223550,20374129:284473 +k1,22613:14140684,20374129:284473 +k1,22613:15041196,20374129:284474 +k1,22613:16344754,20374129:284473 +k1,22613:18420981,20374129:284473 +k1,22613:19902141,20374129:284473 +k1,22613:21454080,20374129:284473 +k1,22613:22606905,20374129:284473 +k1,22613:23983863,20374129:284473 +k1,22613:24624197,20374129:284474 +k1,22613:27883349,20374129:284473 +k1,22613:30207302,20374129:284473 +k1,22613:31563944,20374129:284473 +k1,22613:32583029,20374129:0 +) +(1,22614:6630773,21239209:25952256,505283,126483 +g1,22613:9243038,21239209 +g1,22613:9973764,21239209 +g1,22613:12124655,21239209 +g1,22613:15010205,21239209 +k1,22614:32583029,21239209:14080411 +g1,22614:32583029,21239209 +) +(1,22616:6630773,22104289:25952256,505283,138281 +h1,22615:6630773,22104289:983040,0,0 +k1,22615:9369321,22104289:280293 +k1,22615:13391065,22104289:280294 +k1,22615:14772363,22104289:280293 +k1,22615:15738818,22104289:280293 +k1,22615:17408475,22104289:280294 +k1,22615:19202650,22104289:280293 +k1,22615:19838803,22104289:280293 +k1,22615:23863824,22104289:280294 +$1,22615:23863824,22104289 +$1,22615:26000297,22104289 +k1,22615:26454260,22104289:280293 +k1,22615:28517788,22104289:280293 +k1,22615:30533475,22104289:280294 +k1,22615:31169628,22104289:280293 +(1,22615:31169628,22104289:0,414482,122846 +r1,22640:32583029,22104289:1413401,537328,122846 +k1,22615:31169628,22104289:-1413401 +) +(1,22615:31169628,22104289:1413401,414482,122846 +k1,22615:31169628,22104289:3277 +h1,22615:32579752,22104289:0,411205,112570 +) +k1,22615:32583029,22104289:0 +) +(1,22616:6630773,22969369:25952256,513147,134348 +k1,22615:9153858,22969369:195902 +k1,22615:10009053,22969369:195903 +k1,22615:10975658,22969369:195902 +k1,22615:14611545,22969369:195902 +k1,22615:15675800,22969369:195903 +k1,22615:17268274,22969369:195902 +k1,22615:20438855,22969369:195902 +k1,22615:22830868,22969369:195902 +k1,22615:24311277,22969369:195903 +k1,22615:25611461,22969369:195902 +k1,22615:26555129,22969369:195902 +k1,22615:28914375,22969369:195903 +k1,22615:30377743,22969369:195902 +k1,22616:32583029,22969369:0 +) +(1,22616:6630773,23834449:25952256,513147,134348 +k1,22615:8739116,23834449:263505 +k1,22615:9630456,23834449:263505 +k1,22615:11595931,23834449:263505 +k1,22615:13988046,23834449:263506 +k1,22615:17226230,23834449:263505 +k1,22615:19859517,23834449:263505 +k1,22615:21407528,23834449:263505 +k1,22615:22662593,23834449:263505 +k1,22615:25212649,23834449:263505 +k1,22615:27211548,23834449:263506 +k1,22615:28494138,23834449:263505 +k1,22615:30841688,23834449:263505 +k1,22615:31764485,23834449:263505 +k1,22616:32583029,23834449:0 +) +(1,22616:6630773,24699529:25952256,505283,134348 +k1,22615:10146824,24699529:284471 +k1,22615:11384845,24699529:284472 +k1,22615:13199582,24699529:284471 +k1,22615:14135481,24699529:284471 +k1,22615:15354495,24699529:284471 +(1,22615:15354495,24699529:0,414482,115847 +r1,22640:19581591,24699529:4227096,530329,115847 +k1,22615:15354495,24699529:-4227096 +) +(1,22615:15354495,24699529:4227096,414482,115847 +g1,22615:17468043,24699529 +g1,22615:18171467,24699529 +h1,22615:19578314,24699529:0,411205,112570 +) +k1,22615:19866063,24699529:284472 +k1,22615:20766572,24699529:284471 +k1,22615:22070128,24699529:284471 +k1,22615:23454294,24699529:284472 +k1,22615:24390193,24699529:284471 +k1,22615:25693749,24699529:284471 +k1,22615:28985667,24699529:284471 +k1,22615:29994967,24699529:284472 +k1,22615:31563944,24699529:284471 +k1,22615:32583029,24699529:0 +) +(1,22616:6630773,25564609:25952256,513147,134348 +k1,22615:9056109,25564609:229225 +k1,22615:11612517,25564609:229225 +k1,22615:12501033,25564609:229224 +k1,22615:14468273,25564609:229225 +k1,22615:16999778,25564609:229225 +k1,22615:17915165,25564609:229225 +k1,22615:18675886,25564609:229224 +k1,22615:19896671,25564609:229225 +k1,22615:22289239,25564609:229225 +k1,22615:23785930,25564609:229225 +k1,22615:27785440,25564609:229224 +k1,22615:30057422,25564609:229225 +k1,22615:31305732,25564609:229225 +k1,22615:32583029,25564609:0 +) +(1,22616:6630773,26429689:25952256,505283,7863 +g1,22615:7361499,26429689 +k1,22616:32583028,26429689:22294036 +g1,22616:32583028,26429689 +) +v1,22618:6630773,27114544:0,393216,0 +(1,22628:6630773,31564357:25952256,4843029,196608 +g1,22628:6630773,31564357 +g1,22628:6630773,31564357 +g1,22628:6434165,31564357 +(1,22628:6434165,31564357:0,4843029,196608 +r1,22640:32779637,31564357:26345472,5039637,196608 +k1,22628:6434165,31564357:-26345472 +) +(1,22628:6434165,31564357:26345472,4843029,196608 +[1,22628:6630773,31564357:25952256,4646421,0 +(1,22620:6630773,27342375:25952256,424439,112852 +(1,22619:6630773,27342375:0,0,0 +g1,22619:6630773,27342375 +g1,22619:6630773,27342375 +g1,22619:6303093,27342375 +(1,22619:6303093,27342375:0,0,0 +) +g1,22619:6630773,27342375 +) +k1,22620:6630773,27342375:0 +g1,22620:11942036,27342375 +g1,22620:14265714,27342375 +g1,22620:15261576,27342375 +g1,22620:17253300,27342375 +g1,22620:17917208,27342375 +g1,22620:22564563,27342375 +h1,22620:22896517,27342375:0,0,0 +k1,22620:32583029,27342375:9686512 +g1,22620:32583029,27342375 +) +(1,22621:6630773,28027230:25952256,424439,112852 +h1,22621:6630773,28027230:0,0,0 +g1,22621:6962727,28027230 +g1,22621:7294681,28027230 +g1,22621:7626635,28027230 +g1,22621:11942036,28027230 +h1,22621:12273990,28027230:0,0,0 +k1,22621:32583030,28027230:20309040 +g1,22621:32583030,28027230 +) +(1,22622:6630773,28712085:25952256,424439,112852 +h1,22622:6630773,28712085:0,0,0 +g1,22622:6962727,28712085 +g1,22622:7294681,28712085 +g1,22622:7626635,28712085 +g1,22622:12937898,28712085 +g1,22622:13601806,28712085 +g1,22622:14929622,28712085 +g1,22622:16921346,28712085 +g1,22622:17585254,28712085 +g1,22622:19245024,28712085 +g1,22622:21236748,28712085 +g1,22622:21900656,28712085 +g1,22622:23892380,28712085 +h1,22622:24224334,28712085:0,0,0 +k1,22622:32583029,28712085:8358695 +g1,22622:32583029,28712085 +) +(1,22623:6630773,29396940:25952256,424439,106246 +h1,22623:6630773,29396940:0,0,0 +g1,22623:6962727,29396940 +g1,22623:7294681,29396940 +g1,22623:7626635,29396940 +g1,22623:9950313,29396940 +g1,22623:10614221,29396940 +k1,22623:10614221,29396940:0 +h1,22623:17585253,29396940:0,0,0 +k1,22623:32583029,29396940:14997776 +g1,22623:32583029,29396940 +) +(1,22624:6630773,30081795:25952256,424439,106246 +h1,22624:6630773,30081795:0,0,0 +g1,22624:6962727,30081795 +g1,22624:7294681,30081795 +g1,22624:7626635,30081795 +g1,22624:7958589,30081795 +g1,22624:8290543,30081795 +g1,22624:8622497,30081795 +g1,22624:8954451,30081795 +g1,22624:9286405,30081795 +g1,22624:9950313,30081795 +g1,22624:10614221,30081795 +k1,22624:10614221,30081795:0 +h1,22624:20572840,30081795:0,0,0 +k1,22624:32583029,30081795:12010189 +g1,22624:32583029,30081795 +) +(1,22625:6630773,30766650:25952256,424439,112852 +h1,22625:6630773,30766650:0,0,0 +g1,22625:6962727,30766650 +g1,22625:7294681,30766650 +g1,22625:7626635,30766650 +g1,22625:7958589,30766650 +g1,22625:8290543,30766650 +g1,22625:8622497,30766650 +g1,22625:8954451,30766650 +g1,22625:9286405,30766650 +g1,22625:11278129,30766650 +g1,22625:11942037,30766650 +g1,22625:14265715,30766650 +k1,22625:14265715,30766650:0 +h1,22625:18581116,30766650:0,0,0 +k1,22625:32583029,30766650:14001913 +g1,22625:32583029,30766650 +) +(1,22626:6630773,31451505:25952256,431045,112852 +h1,22626:6630773,31451505:0,0,0 +g1,22626:6962727,31451505 +g1,22626:7294681,31451505 +g1,22626:7626635,31451505 +g1,22626:7958589,31451505 +g1,22626:8290543,31451505 +g1,22626:8622497,31451505 +g1,22626:8954451,31451505 +g1,22626:9286405,31451505 +g1,22626:12273990,31451505 +g1,22626:12937898,31451505 +g1,22626:21236747,31451505 +g1,22626:21900655,31451505 +g1,22626:25552149,31451505 +h1,22626:28539734,31451505:0,0,0 +k1,22626:32583029,31451505:4043295 +g1,22626:32583029,31451505 +) +] +) +g1,22628:32583029,31564357 +g1,22628:6630773,31564357 +g1,22628:6630773,31564357 +g1,22628:32583029,31564357 +g1,22628:32583029,31564357 +) +h1,22628:6630773,31760965:0,0,0 +(1,22631:6630773,40910167:25952256,9083666,0 +k1,22631:10523651,40910167:3892878 +h1,22630:10523651,40910167:0,0,0 +(1,22630:10523651,40910167:18166500,9083666,0 +(1,22630:10523651,40910167:18167376,9083688,0 +(1,22630:10523651,40910167:18167376,9083688,0 +(1,22630:10523651,40910167:0,9083688,0 +(1,22630:10523651,40910167:0,14208860,0 +(1,22630:10523651,40910167:28417720,14208860,0 +) +k1,22630:10523651,40910167:-28417720 +) +) +g1,22630:28691027,40910167 +) +) +) +g1,22631:28690151,40910167 +k1,22631:32583029,40910167:3892878 +) +(1,22638:6630773,41775247:25952256,513147,134348 +h1,22637:6630773,41775247:983040,0,0 +k1,22637:8639809,41775247:208107 +k1,22637:11233426,41775247:208106 +k1,22637:14416212,41775247:208107 +k1,22637:16820429,41775247:208106 +k1,22637:17560033,41775247:208107 +k1,22637:18538842,41775247:208106 +k1,22637:22133850,41775247:208107 +k1,22637:23579931,41775247:208106 +k1,22637:24447330,41775247:208107 +k1,22637:27227724,41775247:208106 +k1,22637:31379788,41775247:208107 +k1,22637:32583029,41775247:0 +) +(1,22638:6630773,42640327:25952256,505283,134348 +k1,22637:9914837,42640327:299554 +k1,22637:11318673,42640327:299554 +k1,22637:12365994,42640327:299555 +k1,22637:13951364,42640327:299554 +k1,22637:15764144,42640327:299554 +k1,22637:16679736,42640327:299554 +k1,22637:18681260,42640327:299554 +k1,22637:22311354,42640327:299554 +k1,22637:23652931,42640327:299555 +k1,22637:26787572,42640327:299554 +k1,22637:27442986,42640327:299554 +k1,22637:30717219,42640327:299554 +k1,22637:32583029,42640327:0 +) +(1,22638:6630773,43505407:25952256,513147,126483 +k1,22637:8882916,43505407:213973 +k1,22637:9712927,43505407:213973 +k1,22637:10282759,43505407:213972 +k1,22637:13008072,43505407:213973 +k1,22637:14326327,43505407:213973 +k1,22637:15288066,43505407:213973 +k1,22637:17665381,43505407:213972 +k1,22637:19273305,43505407:213973 +(1,22637:19273305,43505407:0,452978,115847 +r1,22640:21741842,43505407:2468537,568825,115847 +k1,22637:19273305,43505407:-2468537 +) +(1,22637:19273305,43505407:2468537,452978,115847 +k1,22637:19273305,43505407:3277 +h1,22637:21738565,43505407:0,411205,112570 +) +k1,22637:21955815,43505407:213973 +k1,22637:22855950,43505407:213973 +k1,22637:24647375,43505407:213973 +k1,22637:26259230,43505407:213972 +k1,22637:27420854,43505407:213973 +(1,22637:27420854,43505407:0,452978,115847 +r1,22640:30241103,43505407:2820249,568825,115847 +k1,22637:27420854,43505407:-2820249 +) +(1,22637:27420854,43505407:2820249,452978,115847 +k1,22637:27420854,43505407:3277 +h1,22637:30237826,43505407:0,411205,112570 +) +k1,22637:30628746,43505407:213973 +k1,22637:32583029,43505407:0 +) +(1,22638:6630773,44370487:25952256,505283,134348 +k1,22637:7996124,44370487:181115 +k1,22637:10021423,44370487:181116 +k1,22637:11194098,44370487:181115 +k1,22637:12661029,44370487:181115 +k1,22637:13776688,44370487:181116 +k1,22637:14609231,44370487:181115 +k1,22637:18734304,44370487:181116 +k1,22637:20910990,44370487:181115 +k1,22637:24330894,44370487:181115 +k1,22637:25796516,44370487:181116 +(1,22637:25796516,44370487:0,452978,115847 +r1,22640:30023612,44370487:4227096,568825,115847 +k1,22637:25796516,44370487:-4227096 +) +(1,22637:25796516,44370487:4227096,452978,115847 +k1,22637:25796516,44370487:3277 +h1,22637:30020335,44370487:0,411205,112570 +) +k1,22637:30204727,44370487:181115 +k1,22637:32583029,44370487:0 +) +(1,22638:6630773,45235567:25952256,513147,134348 +g1,22637:9501249,45235567 +g1,22637:13103107,45235567 +g1,22637:16425782,45235567 +g1,22637:17386539,45235567 +g1,22637:20239976,45235567 +g1,22637:23440099,45235567 +g1,22637:23995188,45235567 +g1,22637:26172294,45235567 +g1,22637:27030815,45235567 +k1,22638:32583029,45235567:1729499 +g1,22638:32583029,45235567 +) +] +(1,22640:32583029,45706769:0,0,0 +g1,22640:32583029,45706769 +) +) +] +(1,22640:6630773,47279633:25952256,0,0 +h1,22640:6630773,47279633:25952256,0,0 +) +] +(1,22640:4262630,4025873:0,0,0 +[1,22640:-473656,4025873:0,0,0 +(1,22640:-473656,-710413:0,0,0 +(1,22640:-473656,-710413:0,0,0 +g1,22640:-473656,-710413 +) +g1,22640:-473656,-710413 ) ] ) ] !19394 -}388 -Input:4283:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4284:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4285:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4286:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}389 Input:4287:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4288:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4289:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -393193,936 +393396,936 @@ Input:4298:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4299:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4300:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4301:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4303:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4304:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1760 -{389 -[1,22745:4262630,47279633:28320399,43253760,0 -(1,22745:4262630,4025873:0,0,0 -[1,22745:-473656,4025873:0,0,0 -(1,22745:-473656,-710413:0,0,0 -(1,22745:-473656,-644877:0,0,0 -k1,22745:-473656,-644877:-65536 +{390 +[1,22743:4262630,47279633:28320399,43253760,0 +(1,22743:4262630,4025873:0,0,0 +[1,22743:-473656,4025873:0,0,0 +(1,22743:-473656,-710413:0,0,0 +(1,22743:-473656,-644877:0,0,0 +k1,22743:-473656,-644877:-65536 ) -(1,22745:-473656,4736287:0,0,0 -k1,22745:-473656,4736287:5209943 +(1,22743:-473656,4736287:0,0,0 +k1,22743:-473656,4736287:5209943 ) -g1,22745:-473656,-710413 +g1,22743:-473656,-710413 ) ] ) -[1,22745:6630773,47279633:25952256,43253760,0 -[1,22745:6630773,4812305:25952256,786432,0 -(1,22745:6630773,4812305:25952256,513147,126483 -(1,22745:6630773,4812305:25952256,513147,126483 -g1,22745:3078558,4812305 -[1,22745:3078558,4812305:0,0,0 -(1,22745:3078558,2439708:0,1703936,0 -k1,22745:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22745:2537886,2439708:1179648,16384,0 +[1,22743:6630773,47279633:25952256,43253760,0 +[1,22743:6630773,4812305:25952256,786432,0 +(1,22743:6630773,4812305:25952256,513147,126483 +(1,22743:6630773,4812305:25952256,513147,126483 +g1,22743:3078558,4812305 +[1,22743:3078558,4812305:0,0,0 +(1,22743:3078558,2439708:0,1703936,0 +k1,22743:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22743:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22745:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22743:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22745:3078558,4812305:0,0,0 -(1,22745:3078558,2439708:0,1703936,0 -g1,22745:29030814,2439708 -g1,22745:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22745:36151628,1915420:16384,1179648,0 +[1,22743:3078558,4812305:0,0,0 +(1,22743:3078558,2439708:0,1703936,0 +g1,22743:29030814,2439708 +g1,22743:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22743:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22745:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22743:37855564,2439708:1179648,16384,0 ) ) -k1,22745:3078556,2439708:-34777008 +k1,22743:3078556,2439708:-34777008 ) ] -[1,22745:3078558,4812305:0,0,0 -(1,22745:3078558,49800853:0,16384,2228224 -k1,22745:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22745:2537886,49800853:1179648,16384,0 +[1,22743:3078558,4812305:0,0,0 +(1,22743:3078558,49800853:0,16384,2228224 +k1,22743:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22743:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22745:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22743:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22745:3078558,4812305:0,0,0 -(1,22745:3078558,49800853:0,16384,2228224 -g1,22745:29030814,49800853 -g1,22745:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22745:36151628,51504789:16384,1179648,0 +[1,22743:3078558,4812305:0,0,0 +(1,22743:3078558,49800853:0,16384,2228224 +g1,22743:29030814,49800853 +g1,22743:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22743:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22745:37855564,49800853:1179648,16384,0 -) -) -k1,22745:3078556,49800853:-34777008 -) -] -g1,22745:6630773,4812305 -k1,22745:21386205,4812305:13560055 -g1,22745:21999622,4812305 -g1,22745:25611966,4812305 -g1,22745:28956923,4812305 -g1,22745:29772190,4812305 -) -) -] -[1,22745:6630773,45706769:25952256,40108032,0 -(1,22745:6630773,45706769:25952256,40108032,0 -(1,22745:6630773,45706769:0,0,0 -g1,22745:6630773,45706769 -) -[1,22745:6630773,45706769:25952256,40108032,0 -v1,22642:6630773,6254097:0,393216,0 -(1,22652:6630773,10697304:25952256,4836423,196608 -g1,22652:6630773,10697304 -g1,22652:6630773,10697304 -g1,22652:6434165,10697304 -(1,22652:6434165,10697304:0,4836423,196608 -r1,22745:32779637,10697304:26345472,5033031,196608 -k1,22652:6434165,10697304:-26345472 -) -(1,22652:6434165,10697304:26345472,4836423,196608 -[1,22652:6630773,10697304:25952256,4639815,0 -(1,22644:6630773,6481928:25952256,424439,106246 -(1,22643:6630773,6481928:0,0,0 -g1,22643:6630773,6481928 -g1,22643:6630773,6481928 -g1,22643:6303093,6481928 -(1,22643:6303093,6481928:0,0,0 -) -g1,22643:6630773,6481928 -) -g1,22644:10282266,6481928 -g1,22644:11278128,6481928 -h1,22644:14597667,6481928:0,0,0 -k1,22644:32583029,6481928:17985362 -g1,22644:32583029,6481928 -) -(1,22645:6630773,7166783:25952256,424439,112852 -h1,22645:6630773,7166783:0,0,0 -g1,22645:11942036,7166783 -g1,22645:14265714,7166783 -g1,22645:15593530,7166783 -h1,22645:15925484,7166783:0,0,0 -k1,22645:32583029,7166783:16657545 -g1,22645:32583029,7166783 -) -(1,22646:6630773,7851638:25952256,424439,112852 -h1,22646:6630773,7851638:0,0,0 -g1,22646:6962727,7851638 -g1,22646:7294681,7851638 -g1,22646:7626635,7851638 -g1,22646:11942036,7851638 -h1,22646:12273990,7851638:0,0,0 -k1,22646:32583030,7851638:20309040 -g1,22646:32583030,7851638 -) -(1,22647:6630773,8536493:25952256,424439,106246 -h1,22647:6630773,8536493:0,0,0 -g1,22647:6962727,8536493 -g1,22647:7294681,8536493 -g1,22647:7626635,8536493 -g1,22647:11278129,8536493 -g1,22647:11942037,8536493 -g1,22647:15593531,8536493 -g1,22647:16257439,8536493 -g1,22647:20572840,8536493 -h1,22647:20904794,8536493:0,0,0 -k1,22647:32583029,8536493:11678235 -g1,22647:32583029,8536493 -) -(1,22648:6630773,9221348:25952256,424439,106246 -h1,22648:6630773,9221348:0,0,0 -g1,22648:6962727,9221348 -g1,22648:7294681,9221348 -g1,22648:7626635,9221348 -g1,22648:15593530,9221348 -g1,22648:16257438,9221348 -k1,22648:16257438,9221348:0 -h1,22648:23228470,9221348:0,0,0 -k1,22648:32583029,9221348:9354559 -g1,22648:32583029,9221348 -) -(1,22649:6630773,9906203:25952256,424439,86428 -h1,22649:6630773,9906203:0,0,0 -g1,22649:6962727,9906203 -g1,22649:7294681,9906203 -g1,22649:7626635,9906203 -g1,22649:7958589,9906203 -g1,22649:8290543,9906203 -g1,22649:8622497,9906203 -g1,22649:8954451,9906203 -g1,22649:9286405,9906203 -g1,22649:9618359,9906203 -g1,22649:9950313,9906203 -g1,22649:10282267,9906203 -g1,22649:10614221,9906203 -g1,22649:10946175,9906203 -g1,22649:11278129,9906203 -g1,22649:11610083,9906203 -g1,22649:11942037,9906203 -g1,22649:12273991,9906203 -g1,22649:12605945,9906203 -g1,22649:12937899,9906203 -g1,22649:13269853,9906203 -g1,22649:13601807,9906203 -g1,22649:13933761,9906203 -g1,22649:16257439,9906203 -g1,22649:16921347,9906203 -k1,22649:16921347,9906203:0 -h1,22649:19908933,9906203:0,0,0 -k1,22649:32583029,9906203:12674096 -g1,22649:32583029,9906203 -) -(1,22650:6630773,10591058:25952256,424439,106246 -h1,22650:6630773,10591058:0,0,0 -g1,22650:6962727,10591058 -g1,22650:7294681,10591058 -g1,22650:7626635,10591058 -g1,22650:7958589,10591058 -g1,22650:8290543,10591058 -g1,22650:8622497,10591058 -g1,22650:8954451,10591058 -g1,22650:9286405,10591058 -g1,22650:9618359,10591058 -g1,22650:9950313,10591058 -g1,22650:10282267,10591058 -g1,22650:10614221,10591058 -g1,22650:10946175,10591058 -g1,22650:11278129,10591058 -g1,22650:11610083,10591058 -g1,22650:11942037,10591058 -g1,22650:12273991,10591058 -g1,22650:12605945,10591058 -g1,22650:12937899,10591058 -g1,22650:13269853,10591058 -g1,22650:13601807,10591058 -g1,22650:13933761,10591058 -g1,22650:16257439,10591058 -g1,22650:16921347,10591058 -g1,22650:23892380,10591058 -g1,22650:27211920,10591058 -h1,22650:30531460,10591058:0,0,0 -k1,22650:32583029,10591058:2051569 -g1,22650:32583029,10591058 -) -] -) -g1,22652:32583029,10697304 -g1,22652:6630773,10697304 -g1,22652:6630773,10697304 -g1,22652:32583029,10697304 -g1,22652:32583029,10697304 -) -h1,22652:6630773,10893912:0,0,0 -(1,22655:6630773,20043114:25952256,9083666,0 -k1,22655:10523651,20043114:3892878 -h1,22654:10523651,20043114:0,0,0 -(1,22654:10523651,20043114:18166500,9083666,0 -(1,22654:10523651,20043114:18167376,9083688,0 -(1,22654:10523651,20043114:18167376,9083688,0 -(1,22654:10523651,20043114:0,9083688,0 -(1,22654:10523651,20043114:0,14208860,0 -(1,22654:10523651,20043114:28417720,14208860,0 -) -k1,22654:10523651,20043114:-28417720 -) -) -g1,22654:28691027,20043114 -) -) -) -g1,22655:28690151,20043114 -k1,22655:32583029,20043114:3892878 -) -(1,22662:6630773,20908194:25952256,513147,126483 -h1,22661:6630773,20908194:983040,0,0 -k1,22661:8270309,20908194:168908 -k1,22661:11201591,20908194:168939 -k1,22661:14355039,20908194:168938 -k1,22661:15540440,20908194:168938 -k1,22661:18370796,20908194:168939 -k1,22661:20822353,20908194:168938 -k1,22661:22947541,20908194:168938 -k1,22661:23864246,20908194:168939 -k1,22661:24684612,20908194:168938 -k1,22661:25946035,20908194:168938 -(1,22661:25946035,20908194:0,452978,115847 -r1,22745:28414572,20908194:2468537,568825,115847 -k1,22661:25946035,20908194:-2468537 -) -(1,22661:25946035,20908194:2468537,452978,115847 -k1,22661:25946035,20908194:3277 -h1,22661:28411295,20908194:0,411205,112570 -) -k1,22661:28583511,20908194:168939 -k1,22661:31649796,20908194:168938 -k1,22661:32583029,20908194:0 -) -(1,22662:6630773,21773274:25952256,513147,134348 -k1,22661:8269921,21773274:187526 -k1,22661:11650362,21773274:187527 -k1,22661:13525440,21773274:187526 -k1,22661:17067099,21773274:187526 -k1,22661:18539132,21773274:187527 -k1,22661:20593779,21773274:187526 -k1,22661:21529071,21773274:187526 -k1,22661:24014946,21773274:187527 -k1,22661:24668433,21773274:187526 -k1,22661:25875045,21773274:187527 -k1,22661:27246807,21773274:187526 -k1,22661:29278516,21773274:187526 -k1,22661:30996309,21773274:187527 -k1,22661:31835263,21773274:187526 -k1,22661:32583029,21773274:0 -) -(1,22662:6630773,22638354:25952256,513147,134348 -g1,22661:10697937,22638354 -g1,22661:16533918,22638354 -g1,22661:19060330,22638354 -g1,22661:19918851,22638354 -g1,22661:21052623,22638354 -g1,22661:21938014,22638354 -k1,22662:32583029,22638354:7504530 -g1,22662:32583029,22638354 -) -v1,22664:6630773,23503434:0,393216,0 -(1,22745:6630773,45543110:25952256,22432892,0 -g1,22745:6630773,45543110 -g1,22745:6237557,45543110 -r1,22745:6368629,45543110:131072,22432892,0 -g1,22745:6567858,45543110 -g1,22745:6764466,45543110 -[1,22745:6764466,45543110:25818563,22432892,0 -(1,22665:6764466,23811732:25818563,701514,196608 -(1,22664:6764466,23811732:0,701514,196608 -r1,22745:7761522,23811732:997056,898122,196608 -k1,22664:6764466,23811732:-997056 -) -(1,22664:6764466,23811732:997056,701514,196608 -) -k1,22664:8006542,23811732:245020 -k1,22664:8334222,23811732:327680 -k1,22664:12346802,23811732:251469 -k1,22664:15382896,23811732:251469 -(1,22664:15382896,23811732:0,452978,115847 -r1,22745:17851433,23811732:2468537,568825,115847 -k1,22664:15382896,23811732:-2468537 -) -(1,22664:15382896,23811732:2468537,452978,115847 -k1,22664:15382896,23811732:3277 -h1,22664:17848156,23811732:0,411205,112570 -) -k1,22664:18102901,23811732:251468 -k1,22664:19574650,23811732:251469 -(1,22664:19574650,23811732:0,452978,115847 -r1,22745:23801746,23811732:4227096,568825,115847 -k1,22664:19574650,23811732:-4227096 -) -(1,22664:19574650,23811732:4227096,452978,115847 -k1,22664:19574650,23811732:3277 -h1,22664:23798469,23811732:0,411205,112570 -) -k1,22664:24220436,23811732:245020 -k1,22664:27255324,23811732:245020 -(1,22664:27255324,23811732:0,452978,115847 -r1,22745:29723861,23811732:2468537,568825,115847 -k1,22664:27255324,23811732:-2468537 -) -(1,22664:27255324,23811732:2468537,452978,115847 -k1,22664:27255324,23811732:3277 -h1,22664:29720584,23811732:0,411205,112570 -) -k1,22664:29968882,23811732:245021 -k1,22664:31896867,23811732:245020 -k1,22664:32583029,23811732:0 -) -(1,22665:6764466,24676812:25818563,513147,134348 -k1,22664:7746897,24676812:211728 -k1,22664:11030953,24676812:211728 -k1,22664:11598541,24676812:211728 -k1,22664:14784948,24676812:211728 -k1,22664:17036156,24676812:211728 -k1,22664:18628728,24676812:211728 -k1,22664:19371954,24676812:211729 -k1,22664:20937656,24676812:211728 -k1,22664:23126605,24676812:211728 -k1,22664:24024495,24676812:211728 -k1,22664:25255308,24676812:211728 -k1,22664:28441715,24676812:211728 -k1,22664:30519253,24676812:211728 -k1,22664:31835263,24676812:211728 -k1,22664:32583029,24676812:0 -) -(1,22665:6764466,25541892:25818563,505283,134348 -k1,22664:9363111,25541892:248524 -k1,22664:15422058,25541892:248525 -k1,22664:17453817,25541892:248524 -k1,22664:19437734,25541892:248524 -(1,22664:19437734,25541892:0,452978,115847 -r1,22745:23664830,25541892:4227096,568825,115847 -k1,22664:19437734,25541892:-4227096 -) -(1,22664:19437734,25541892:4227096,452978,115847 -k1,22664:19437734,25541892:3277 -h1,22664:23661553,25541892:0,411205,112570 -) -k1,22664:23913355,25541892:248525 -k1,22664:25365120,25541892:248524 -k1,22664:26145141,25541892:248524 -k1,22664:27459937,25541892:248525 -k1,22664:30512091,25541892:248524 -k1,22664:32583029,25541892:0 -) -(1,22665:6764466,26406972:25818563,513147,126483 -k1,22664:7871672,26406972:159555 -k1,22664:11904405,26406972:159555 -k1,22664:12676722,26406972:159555 -k1,22664:15911881,26406972:159554 -k1,22664:17496844,26406972:159555 -k1,22664:18315691,26406972:159555 -k1,22664:19494331,26406972:159555 -k1,22664:21334229,26406972:159555 -k1,22664:22153076,26406972:159555 -k1,22664:25154271,26406972:159554 -k1,22664:26581292,26406972:159555 -k1,22664:27759932,26406972:159555 -k1,22664:31533142,26406972:159555 -k1,22664:32583029,26406972:0 -) -(1,22665:6764466,27272052:25818563,513147,134348 -g1,22664:7982780,27272052 -g1,22664:9570062,27272052 -g1,22664:11597745,27272052 -g1,22664:12744625,27272052 -g1,22664:14410550,27272052 -k1,22665:32583029,27272052:15094253 -g1,22665:32583029,27272052 -) -(1,22667:6764466,28137132:25818563,505283,134348 -h1,22666:6764466,28137132:983040,0,0 -k1,22666:10721773,28137132:184399 -(1,22666:10721773,28137132:0,452978,115847 -r1,22745:14948869,28137132:4227096,568825,115847 -k1,22666:10721773,28137132:-4227096 -) -(1,22666:10721773,28137132:4227096,452978,115847 -k1,22666:10721773,28137132:3277 -h1,22666:14945592,28137132:0,411205,112570 -) -k1,22666:15133267,28137132:184398 -k1,22666:17695968,28137132:184399 -k1,22666:18668765,28137132:184399 -k1,22666:22255793,28137132:184399 -k1,22666:24900413,28137132:184398 -k1,22666:26216619,28137132:184399 -k1,22666:29793161,28137132:184399 -k1,22667:32583029,28137132:0 -) -(1,22667:6764466,29002212:25818563,505283,134348 -(1,22666:6764466,29002212:0,452978,115847 -r1,22745:9233003,29002212:2468537,568825,115847 -k1,22666:6764466,29002212:-2468537 -) -(1,22666:6764466,29002212:2468537,452978,115847 -k1,22666:6764466,29002212:3277 -h1,22666:9229726,29002212:0,411205,112570 -) -k1,22666:9408982,29002212:175979 -k1,22666:11267925,29002212:175978 -k1,22666:11799764,29002212:175979 -k1,22666:13848762,29002212:175979 -k1,22666:16999420,29002212:175979 -k1,22666:19041208,29002212:175978 -k1,22666:19903349,29002212:175979 -k1,22666:20850031,29002212:175979 -k1,22666:24098337,29002212:175978 -k1,22666:24925744,29002212:175979 -k1,22666:25849489,29002212:175979 -k1,22666:28362482,29002212:175979 -k1,22666:29154498,29002212:175978 -k1,22666:31215948,29002212:175979 -k1,22666:32583029,29002212:0 -) -(1,22667:6764466,29867292:25818563,505283,134348 -k1,22666:10090605,29867292:232184 -k1,22666:12309841,29867292:232184 -k1,22666:14552014,29867292:232184 -k1,22666:15803284,29867292:232185 -k1,22666:17901278,29867292:232184 -k1,22666:19663728,29867292:232184 -k1,22666:20547340,29867292:232184 -k1,22666:21527290,29867292:232184 -k1,22666:24276711,29867292:232184 -k1,22666:26451382,29867292:232184 -(1,22666:26451382,29867292:0,452978,115847 -r1,22745:27161360,29867292:709978,568825,115847 -k1,22666:26451382,29867292:-709978 -) -(1,22666:26451382,29867292:709978,452978,115847 -k1,22666:26451382,29867292:3277 -h1,22666:27158083,29867292:0,411205,112570 -) -k1,22666:27393545,29867292:232185 -k1,22666:29544623,29867292:232184 -k1,22666:30132667,29867292:232184 -k1,22666:32224763,29867292:232184 -(1,22666:32224763,29867292:0,452978,115847 -r1,22745:32583029,29867292:358266,568825,115847 -k1,22666:32224763,29867292:-358266 -) -(1,22666:32224763,29867292:358266,452978,115847 -k1,22666:32224763,29867292:3277 -h1,22666:32579752,29867292:0,411205,112570 -) -k1,22666:32583029,29867292:0 -) -(1,22667:6764466,30732372:25818563,513147,134348 -k1,22666:7556047,30732372:260084 -k1,22666:10552915,30732372:260085 -k1,22666:11440834,30732372:260084 -k1,22666:13167614,30732372:260084 -k1,22666:15298752,30732372:260085 -k1,22666:15914696,30732372:260084 -k1,22666:19149459,30732372:260084 -k1,22666:21275354,30732372:260085 -k1,22666:22639720,30732372:260084 -k1,22666:23647571,30732372:260085 -k1,22666:27232296,30732372:260084 -k1,22666:29227773,30732372:260084 -k1,22666:30644568,30732372:260085 -k1,22666:31563944,30732372:260084 -k1,22666:32583029,30732372:0 -) -(1,22667:6764466,31597452:25818563,513147,115847 -k1,22666:10073175,31597452:282912 -(1,22666:10073175,31597452:0,452978,115847 -r1,22745:12541712,31597452:2468537,568825,115847 -k1,22666:10073175,31597452:-2468537 -) -(1,22666:10073175,31597452:2468537,452978,115847 -k1,22666:10073175,31597452:3277 -h1,22666:12538435,31597452:0,411205,112570 -) -k1,22666:12998295,31597452:282913 -(1,22666:12998295,31597452:0,452978,115847 -r1,22745:15818544,31597452:2820249,568825,115847 -k1,22666:12998295,31597452:-2820249 -) -(1,22666:12998295,31597452:2820249,452978,115847 -k1,22666:12998295,31597452:3277 -h1,22666:15815267,31597452:0,411205,112570 -) -k1,22666:16275126,31597452:282912 -(1,22666:16275126,31597452:0,452978,115847 -r1,22745:18391951,31597452:2116825,568825,115847 -k1,22666:16275126,31597452:-2116825 -) -(1,22666:16275126,31597452:2116825,452978,115847 -k1,22666:16275126,31597452:3277 -h1,22666:18388674,31597452:0,411205,112570 -) -k1,22666:18674864,31597452:282913 -k1,22666:19640661,31597452:282912 -(1,22666:19640661,31597452:0,452978,115847 -r1,22745:23867757,31597452:4227096,568825,115847 -k1,22666:19640661,31597452:-4227096 -) -(1,22666:19640661,31597452:4227096,452978,115847 -k1,22666:19640661,31597452:3277 -h1,22666:23864480,31597452:0,411205,112570 -) -k1,22666:24150669,31597452:282912 -k1,22666:26319053,31597452:282913 -k1,22666:27887781,31597452:282912 -k1,22666:29949996,31597452:282913 -k1,22666:31251993,31597452:282912 -k1,22666:32583029,31597452:0 -) -(1,22667:6764466,32462532:25818563,513147,134348 -k1,22666:8625890,32462532:174527 -k1,22666:9997105,32462532:174528 -k1,22666:13243960,32462532:174527 -k1,22666:14069916,32462532:174528 -k1,22666:15941170,32462532:174527 -k1,22666:19141495,32462532:174528 -k1,22666:21176589,32462532:174527 -k1,22666:22002545,32462532:174528 -k1,22666:22924838,32462532:174527 -k1,22666:23455226,32462532:174528 -k1,22666:26604432,32462532:174527 -k1,22666:28644770,32462532:174528 -k1,22666:31839851,32462532:174527 -k1,22666:32583029,32462532:0 -) -(1,22667:6764466,33327612:25818563,513147,126483 -g1,22666:10057650,33327612 -g1,22666:12243931,33327612 -g1,22666:12909121,33327612 -g1,22666:13566447,33327612 -g1,22666:14297173,33327612 -g1,22666:15562673,33327612 -g1,22666:16413330,33327612 -g1,22666:17360325,33327612 -k1,22667:32583029,33327612:13006932 -g1,22667:32583029,33327612 -) -(1,22669:6764466,34192692:25818563,505283,134348 -h1,22668:6764466,34192692:983040,0,0 -g1,22668:9729970,34192692 -g1,22668:11664592,34192692 -(1,22668:11664592,34192692:0,452978,115847 -r1,22745:15891688,34192692:4227096,568825,115847 -k1,22668:11664592,34192692:-4227096 -) -(1,22668:11664592,34192692:4227096,452978,115847 -k1,22668:11664592,34192692:3277 -h1,22668:15888411,34192692:0,411205,112570 -) -g1,22668:16264587,34192692 -g1,22668:17855801,34192692 -g1,22668:21148985,34192692 -g1,22668:23335266,34192692 -g1,22668:24638777,34192692 -g1,22668:25585772,34192692 -k1,22669:32583029,34192692:3585453 -g1,22669:32583029,34192692 -) -v1,22671:6764466,34877547:0,393216,0 -(1,22677:6764466,36581334:25818563,2097003,196608 -g1,22677:6764466,36581334 -g1,22677:6764466,36581334 -g1,22677:6567858,36581334 -(1,22677:6567858,36581334:0,2097003,196608 -r1,22745:32779637,36581334:26211779,2293611,196608 -k1,22677:6567857,36581334:-26211780 -) -(1,22677:6567858,36581334:26211779,2097003,196608 -[1,22677:6764466,36581334:25818563,1900395,0 -(1,22673:6764466,35105378:25818563,424439,112852 -(1,22672:6764466,35105378:0,0,0 -g1,22672:6764466,35105378 -g1,22672:6764466,35105378 -g1,22672:6436786,35105378 -(1,22672:6436786,35105378:0,0,0 -) -g1,22672:6764466,35105378 -) -k1,22673:6764466,35105378:0 -g1,22673:11079868,35105378 -g1,22673:14731362,35105378 -g1,22673:17055040,35105378 -h1,22673:17386994,35105378:0,0,0 -k1,22673:32583029,35105378:15196035 -g1,22673:32583029,35105378 -) -(1,22674:6764466,35790233:25818563,424439,112852 -h1,22674:6764466,35790233:0,0,0 -g1,22674:7096420,35790233 -g1,22674:7428374,35790233 -g1,22674:11743775,35790233 -h1,22674:12075729,35790233:0,0,0 -k1,22674:32583029,35790233:20507300 -g1,22674:32583029,35790233 -) -(1,22675:6764466,36475088:25818563,424439,106246 -h1,22675:6764466,36475088:0,0,0 -g1,22675:7096420,36475088 -g1,22675:7428374,36475088 -g1,22675:15063315,36475088 -g1,22675:15395269,36475088 -h1,22675:17718947,36475088:0,0,0 -k1,22675:32583029,36475088:14864082 -g1,22675:32583029,36475088 -) -] -) -g1,22677:32583029,36581334 -g1,22677:6764466,36581334 -g1,22677:6764466,36581334 -g1,22677:32583029,36581334 -g1,22677:32583029,36581334 -) -h1,22677:6764466,36777942:0,0,0 -(1,22681:6764466,37643022:25818563,513147,126483 -h1,22680:6764466,37643022:983040,0,0 -g1,22680:9636253,37643022 -g1,22680:10451520,37643022 -g1,22680:11669834,37643022 -g1,22680:13236144,37643022 -g1,22680:14102529,37643022 -(1,22680:14102529,37643022:0,452978,115847 -r1,22745:16571066,37643022:2468537,568825,115847 -k1,22680:14102529,37643022:-2468537 -) -(1,22680:14102529,37643022:2468537,452978,115847 -k1,22680:14102529,37643022:3277 -h1,22680:16567789,37643022:0,411205,112570 -) -g1,22680:16770295,37643022 -g1,22680:18349712,37643022 -g1,22680:20079207,37643022 -g1,22680:20929864,37643022 -g1,22680:21876859,37643022 -k1,22681:32583029,37643022:8137160 -g1,22681:32583029,37643022 -) -v1,22683:6764466,38327877:0,393216,0 -(1,22689:6764466,40031664:25818563,2097003,196608 -g1,22689:6764466,40031664 -g1,22689:6764466,40031664 -g1,22689:6567858,40031664 -(1,22689:6567858,40031664:0,2097003,196608 -r1,22745:32779637,40031664:26211779,2293611,196608 -k1,22689:6567857,40031664:-26211780 -) -(1,22689:6567858,40031664:26211779,2097003,196608 -[1,22689:6764466,40031664:25818563,1900395,0 -(1,22685:6764466,38555708:25818563,424439,112852 -(1,22684:6764466,38555708:0,0,0 -g1,22684:6764466,38555708 -g1,22684:6764466,38555708 -g1,22684:6436786,38555708 -(1,22684:6436786,38555708:0,0,0 -) -g1,22684:6764466,38555708 -) -k1,22685:6764466,38555708:0 -g1,22685:11079868,38555708 -g1,22685:14731362,38555708 -g1,22685:17055040,38555708 -h1,22685:17386994,38555708:0,0,0 -k1,22685:32583029,38555708:15196035 -g1,22685:32583029,38555708 -) -(1,22686:6764466,39240563:25818563,424439,112852 -h1,22686:6764466,39240563:0,0,0 -g1,22686:7096420,39240563 -g1,22686:7428374,39240563 -g1,22686:11743775,39240563 -h1,22686:12075729,39240563:0,0,0 -k1,22686:32583029,39240563:20507300 -g1,22686:32583029,39240563 -) -(1,22687:6764466,39925418:25818563,424439,106246 -h1,22687:6764466,39925418:0,0,0 -g1,22687:7096420,39925418 -g1,22687:7428374,39925418 -g1,22687:12739638,39925418 -g1,22687:13403546,39925418 -g1,22687:16391131,39925418 -g1,22687:16723085,39925418 -h1,22687:19710671,39925418:0,0,0 -k1,22687:32583029,39925418:12872358 -g1,22687:32583029,39925418 -) -] -) -g1,22689:32583029,40031664 -g1,22689:6764466,40031664 -g1,22689:6764466,40031664 -g1,22689:32583029,40031664 -g1,22689:32583029,40031664 -) -h1,22689:6764466,40228272:0,0,0 -(1,22693:6764466,41093352:25818563,513147,7863 -h1,22692:6764466,41093352:983040,0,0 -g1,22692:9138180,41093352 -g1,22692:9953447,41093352 -g1,22692:11844816,41093352 -g1,22692:13741427,41093352 -g1,22692:15073118,41093352 -g1,22692:16020113,41093352 -g1,22692:19013142,41093352 -g1,22692:21222360,41093352 -g1,22692:21777449,41093352 -g1,22692:24157061,41093352 -k1,22693:32583029,41093352:5678044 -g1,22693:32583029,41093352 -) -v1,22695:6764466,41778207:0,393216,0 -(1,22701:6764466,43481994:25818563,2097003,196608 -g1,22701:6764466,43481994 -g1,22701:6764466,43481994 -g1,22701:6567858,43481994 -(1,22701:6567858,43481994:0,2097003,196608 -r1,22745:32779637,43481994:26211779,2293611,196608 -k1,22701:6567857,43481994:-26211780 -) -(1,22701:6567858,43481994:26211779,2097003,196608 -[1,22701:6764466,43481994:25818563,1900395,0 -(1,22697:6764466,42006038:25818563,424439,112852 -(1,22696:6764466,42006038:0,0,0 -g1,22696:6764466,42006038 -g1,22696:6764466,42006038 -g1,22696:6436786,42006038 -(1,22696:6436786,42006038:0,0,0 -) -g1,22696:6764466,42006038 -) -k1,22697:6764466,42006038:0 -g1,22697:11079868,42006038 -g1,22697:14731362,42006038 -g1,22697:17055040,42006038 -h1,22697:17386994,42006038:0,0,0 -k1,22697:32583029,42006038:15196035 -g1,22697:32583029,42006038 -) -(1,22698:6764466,42690893:25818563,424439,112852 -h1,22698:6764466,42690893:0,0,0 -g1,22698:7096420,42690893 -g1,22698:7428374,42690893 -g1,22698:11743775,42690893 -h1,22698:12075729,42690893:0,0,0 -k1,22698:32583029,42690893:20507300 -g1,22698:32583029,42690893 -) -(1,22699:6764466,43375748:25818563,424439,106246 -h1,22699:6764466,43375748:0,0,0 -g1,22699:7096420,43375748 -g1,22699:7428374,43375748 -g1,22699:12739638,43375748 -g1,22699:13403546,43375748 -g1,22699:18714809,43375748 -g1,22699:19046763,43375748 -h1,22699:22366302,43375748:0,0,0 -k1,22699:32583029,43375748:10216727 -g1,22699:32583029,43375748 -) -] -) -g1,22701:32583029,43481994 -g1,22701:6764466,43481994 -g1,22701:6764466,43481994 -g1,22701:32583029,43481994 -g1,22701:32583029,43481994 -) -h1,22701:6764466,43678602:0,0,0 -(1,22705:6764466,44543682:25818563,513147,134348 -h1,22704:6764466,44543682:983040,0,0 -k1,22704:9684354,44543682:219805 -k1,22704:13131153,44543682:219806 -k1,22704:16147379,44543682:219805 -k1,22704:16852806,44543682:219806 -(1,22704:16852806,44543682:0,452978,115847 -r1,22745:21079902,44543682:4227096,568825,115847 -k1,22704:16852806,44543682:-4227096 -) -(1,22704:16852806,44543682:4227096,452978,115847 -k1,22704:16852806,44543682:3277 -h1,22704:21076625,44543682:0,411205,112570 -) -k1,22704:21299707,44543682:219805 -k1,22704:22051009,44543682:219805 -k1,22704:24476102,44543682:219806 -k1,22704:27367154,44543682:219805 -k1,22704:31163260,44543682:219806 -k1,22704:31841162,44543682:219805 -k1,22705:32583029,44543682:0 -) -(1,22705:6764466,45408762:25818563,513147,134348 -k1,22704:8703961,45408762:234248 -k1,22704:9294069,45408762:234248 -k1,22704:11506194,45408762:234248 -k1,22704:12399734,45408762:234248 -k1,22704:16577939,45408762:234248 -k1,22704:18816278,45408762:234248 -(1,22704:18816278,45408762:0,452978,122846 -r1,22745:21636527,45408762:2820249,575824,122846 -k1,22704:18816278,45408762:-2820249 -) -(1,22704:18816278,45408762:2820249,452978,122846 -k1,22704:18816278,45408762:3277 -h1,22704:21633250,45408762:0,411205,112570 -) -k1,22704:21870775,45408762:234248 -k1,22704:24506262,45408762:234248 -k1,22704:25096370,45408762:234248 -k1,22704:27203637,45408762:234248 -k1,22704:29118228,45408762:234248 -k1,22704:30038638,45408762:234248 -k1,22704:31043589,45408762:234248 -k1,22705:32583029,45408762:0 -) -] -g1,22745:32583029,45543110 -) -] -(1,22745:32583029,45706769:0,0,0 -g1,22745:32583029,45706769 -) -) -] -(1,22745:6630773,47279633:25952256,0,0 -h1,22745:6630773,47279633:25952256,0,0 -) -] -(1,22745:4262630,4025873:0,0,0 -[1,22745:-473656,4025873:0,0,0 -(1,22745:-473656,-710413:0,0,0 -(1,22745:-473656,-710413:0,0,0 -g1,22745:-473656,-710413 -) -g1,22745:-473656,-710413 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22743:37855564,49800853:1179648,16384,0 +) +) +k1,22743:3078556,49800853:-34777008 +) +] +g1,22743:6630773,4812305 +k1,22743:21386205,4812305:13560055 +g1,22743:21999622,4812305 +g1,22743:25611966,4812305 +g1,22743:28956923,4812305 +g1,22743:29772190,4812305 +) +) +] +[1,22743:6630773,45706769:25952256,40108032,0 +(1,22743:6630773,45706769:25952256,40108032,0 +(1,22743:6630773,45706769:0,0,0 +g1,22743:6630773,45706769 +) +[1,22743:6630773,45706769:25952256,40108032,0 +v1,22640:6630773,6254097:0,393216,0 +(1,22650:6630773,10697304:25952256,4836423,196608 +g1,22650:6630773,10697304 +g1,22650:6630773,10697304 +g1,22650:6434165,10697304 +(1,22650:6434165,10697304:0,4836423,196608 +r1,22743:32779637,10697304:26345472,5033031,196608 +k1,22650:6434165,10697304:-26345472 +) +(1,22650:6434165,10697304:26345472,4836423,196608 +[1,22650:6630773,10697304:25952256,4639815,0 +(1,22642:6630773,6481928:25952256,424439,106246 +(1,22641:6630773,6481928:0,0,0 +g1,22641:6630773,6481928 +g1,22641:6630773,6481928 +g1,22641:6303093,6481928 +(1,22641:6303093,6481928:0,0,0 +) +g1,22641:6630773,6481928 +) +g1,22642:10282266,6481928 +g1,22642:11278128,6481928 +h1,22642:14597667,6481928:0,0,0 +k1,22642:32583029,6481928:17985362 +g1,22642:32583029,6481928 +) +(1,22643:6630773,7166783:25952256,424439,112852 +h1,22643:6630773,7166783:0,0,0 +g1,22643:11942036,7166783 +g1,22643:14265714,7166783 +g1,22643:15593530,7166783 +h1,22643:15925484,7166783:0,0,0 +k1,22643:32583029,7166783:16657545 +g1,22643:32583029,7166783 +) +(1,22644:6630773,7851638:25952256,424439,112852 +h1,22644:6630773,7851638:0,0,0 +g1,22644:6962727,7851638 +g1,22644:7294681,7851638 +g1,22644:7626635,7851638 +g1,22644:11942036,7851638 +h1,22644:12273990,7851638:0,0,0 +k1,22644:32583030,7851638:20309040 +g1,22644:32583030,7851638 +) +(1,22645:6630773,8536493:25952256,424439,106246 +h1,22645:6630773,8536493:0,0,0 +g1,22645:6962727,8536493 +g1,22645:7294681,8536493 +g1,22645:7626635,8536493 +g1,22645:11278129,8536493 +g1,22645:11942037,8536493 +g1,22645:15593531,8536493 +g1,22645:16257439,8536493 +g1,22645:20572840,8536493 +h1,22645:20904794,8536493:0,0,0 +k1,22645:32583029,8536493:11678235 +g1,22645:32583029,8536493 +) +(1,22646:6630773,9221348:25952256,424439,106246 +h1,22646:6630773,9221348:0,0,0 +g1,22646:6962727,9221348 +g1,22646:7294681,9221348 +g1,22646:7626635,9221348 +g1,22646:15593530,9221348 +g1,22646:16257438,9221348 +k1,22646:16257438,9221348:0 +h1,22646:23228470,9221348:0,0,0 +k1,22646:32583029,9221348:9354559 +g1,22646:32583029,9221348 +) +(1,22647:6630773,9906203:25952256,424439,86428 +h1,22647:6630773,9906203:0,0,0 +g1,22647:6962727,9906203 +g1,22647:7294681,9906203 +g1,22647:7626635,9906203 +g1,22647:7958589,9906203 +g1,22647:8290543,9906203 +g1,22647:8622497,9906203 +g1,22647:8954451,9906203 +g1,22647:9286405,9906203 +g1,22647:9618359,9906203 +g1,22647:9950313,9906203 +g1,22647:10282267,9906203 +g1,22647:10614221,9906203 +g1,22647:10946175,9906203 +g1,22647:11278129,9906203 +g1,22647:11610083,9906203 +g1,22647:11942037,9906203 +g1,22647:12273991,9906203 +g1,22647:12605945,9906203 +g1,22647:12937899,9906203 +g1,22647:13269853,9906203 +g1,22647:13601807,9906203 +g1,22647:13933761,9906203 +g1,22647:16257439,9906203 +g1,22647:16921347,9906203 +k1,22647:16921347,9906203:0 +h1,22647:19908933,9906203:0,0,0 +k1,22647:32583029,9906203:12674096 +g1,22647:32583029,9906203 +) +(1,22648:6630773,10591058:25952256,424439,106246 +h1,22648:6630773,10591058:0,0,0 +g1,22648:6962727,10591058 +g1,22648:7294681,10591058 +g1,22648:7626635,10591058 +g1,22648:7958589,10591058 +g1,22648:8290543,10591058 +g1,22648:8622497,10591058 +g1,22648:8954451,10591058 +g1,22648:9286405,10591058 +g1,22648:9618359,10591058 +g1,22648:9950313,10591058 +g1,22648:10282267,10591058 +g1,22648:10614221,10591058 +g1,22648:10946175,10591058 +g1,22648:11278129,10591058 +g1,22648:11610083,10591058 +g1,22648:11942037,10591058 +g1,22648:12273991,10591058 +g1,22648:12605945,10591058 +g1,22648:12937899,10591058 +g1,22648:13269853,10591058 +g1,22648:13601807,10591058 +g1,22648:13933761,10591058 +g1,22648:16257439,10591058 +g1,22648:16921347,10591058 +g1,22648:23892380,10591058 +g1,22648:27211920,10591058 +h1,22648:30531460,10591058:0,0,0 +k1,22648:32583029,10591058:2051569 +g1,22648:32583029,10591058 +) +] +) +g1,22650:32583029,10697304 +g1,22650:6630773,10697304 +g1,22650:6630773,10697304 +g1,22650:32583029,10697304 +g1,22650:32583029,10697304 +) +h1,22650:6630773,10893912:0,0,0 +(1,22653:6630773,20043114:25952256,9083666,0 +k1,22653:10523651,20043114:3892878 +h1,22652:10523651,20043114:0,0,0 +(1,22652:10523651,20043114:18166500,9083666,0 +(1,22652:10523651,20043114:18167376,9083688,0 +(1,22652:10523651,20043114:18167376,9083688,0 +(1,22652:10523651,20043114:0,9083688,0 +(1,22652:10523651,20043114:0,14208860,0 +(1,22652:10523651,20043114:28417720,14208860,0 +) +k1,22652:10523651,20043114:-28417720 +) +) +g1,22652:28691027,20043114 +) +) +) +g1,22653:28690151,20043114 +k1,22653:32583029,20043114:3892878 +) +(1,22660:6630773,20908194:25952256,513147,126483 +h1,22659:6630773,20908194:983040,0,0 +k1,22659:8270309,20908194:168908 +k1,22659:11201591,20908194:168939 +k1,22659:14355039,20908194:168938 +k1,22659:15540440,20908194:168938 +k1,22659:18370796,20908194:168939 +k1,22659:20822353,20908194:168938 +k1,22659:22947541,20908194:168938 +k1,22659:23864246,20908194:168939 +k1,22659:24684612,20908194:168938 +k1,22659:25946035,20908194:168938 +(1,22659:25946035,20908194:0,452978,115847 +r1,22743:28414572,20908194:2468537,568825,115847 +k1,22659:25946035,20908194:-2468537 +) +(1,22659:25946035,20908194:2468537,452978,115847 +k1,22659:25946035,20908194:3277 +h1,22659:28411295,20908194:0,411205,112570 +) +k1,22659:28583511,20908194:168939 +k1,22659:31649796,20908194:168938 +k1,22659:32583029,20908194:0 +) +(1,22660:6630773,21773274:25952256,513147,134348 +k1,22659:8269921,21773274:187526 +k1,22659:11650362,21773274:187527 +k1,22659:13525440,21773274:187526 +k1,22659:17067099,21773274:187526 +k1,22659:18539132,21773274:187527 +k1,22659:20593779,21773274:187526 +k1,22659:21529071,21773274:187526 +k1,22659:24014946,21773274:187527 +k1,22659:24668433,21773274:187526 +k1,22659:25875045,21773274:187527 +k1,22659:27246807,21773274:187526 +k1,22659:29278516,21773274:187526 +k1,22659:30996309,21773274:187527 +k1,22659:31835263,21773274:187526 +k1,22659:32583029,21773274:0 +) +(1,22660:6630773,22638354:25952256,513147,134348 +g1,22659:10697937,22638354 +g1,22659:16533918,22638354 +g1,22659:19060330,22638354 +g1,22659:19918851,22638354 +g1,22659:21052623,22638354 +g1,22659:21938014,22638354 +k1,22660:32583029,22638354:7504530 +g1,22660:32583029,22638354 +) +v1,22662:6630773,23503434:0,393216,0 +(1,22743:6630773,45543110:25952256,22432892,0 +g1,22743:6630773,45543110 +g1,22743:6237557,45543110 +r1,22743:6368629,45543110:131072,22432892,0 +g1,22743:6567858,45543110 +g1,22743:6764466,45543110 +[1,22743:6764466,45543110:25818563,22432892,0 +(1,22663:6764466,23811732:25818563,701514,196608 +(1,22662:6764466,23811732:0,701514,196608 +r1,22743:7761522,23811732:997056,898122,196608 +k1,22662:6764466,23811732:-997056 +) +(1,22662:6764466,23811732:997056,701514,196608 +) +k1,22662:8006542,23811732:245020 +k1,22662:8334222,23811732:327680 +k1,22662:12346802,23811732:251469 +k1,22662:15382896,23811732:251469 +(1,22662:15382896,23811732:0,452978,115847 +r1,22743:17851433,23811732:2468537,568825,115847 +k1,22662:15382896,23811732:-2468537 +) +(1,22662:15382896,23811732:2468537,452978,115847 +k1,22662:15382896,23811732:3277 +h1,22662:17848156,23811732:0,411205,112570 +) +k1,22662:18102901,23811732:251468 +k1,22662:19574650,23811732:251469 +(1,22662:19574650,23811732:0,452978,115847 +r1,22743:23801746,23811732:4227096,568825,115847 +k1,22662:19574650,23811732:-4227096 +) +(1,22662:19574650,23811732:4227096,452978,115847 +k1,22662:19574650,23811732:3277 +h1,22662:23798469,23811732:0,411205,112570 +) +k1,22662:24220436,23811732:245020 +k1,22662:27255324,23811732:245020 +(1,22662:27255324,23811732:0,452978,115847 +r1,22743:29723861,23811732:2468537,568825,115847 +k1,22662:27255324,23811732:-2468537 +) +(1,22662:27255324,23811732:2468537,452978,115847 +k1,22662:27255324,23811732:3277 +h1,22662:29720584,23811732:0,411205,112570 +) +k1,22662:29968882,23811732:245021 +k1,22662:31896867,23811732:245020 +k1,22662:32583029,23811732:0 +) +(1,22663:6764466,24676812:25818563,513147,134348 +k1,22662:7746897,24676812:211728 +k1,22662:11030953,24676812:211728 +k1,22662:11598541,24676812:211728 +k1,22662:14784948,24676812:211728 +k1,22662:17036156,24676812:211728 +k1,22662:18628728,24676812:211728 +k1,22662:19371954,24676812:211729 +k1,22662:20937656,24676812:211728 +k1,22662:23126605,24676812:211728 +k1,22662:24024495,24676812:211728 +k1,22662:25255308,24676812:211728 +k1,22662:28441715,24676812:211728 +k1,22662:30519253,24676812:211728 +k1,22662:31835263,24676812:211728 +k1,22662:32583029,24676812:0 +) +(1,22663:6764466,25541892:25818563,505283,134348 +k1,22662:9363111,25541892:248524 +k1,22662:15422058,25541892:248525 +k1,22662:17453817,25541892:248524 +k1,22662:19437734,25541892:248524 +(1,22662:19437734,25541892:0,452978,115847 +r1,22743:23664830,25541892:4227096,568825,115847 +k1,22662:19437734,25541892:-4227096 +) +(1,22662:19437734,25541892:4227096,452978,115847 +k1,22662:19437734,25541892:3277 +h1,22662:23661553,25541892:0,411205,112570 +) +k1,22662:23913355,25541892:248525 +k1,22662:25365120,25541892:248524 +k1,22662:26145141,25541892:248524 +k1,22662:27459937,25541892:248525 +k1,22662:30512091,25541892:248524 +k1,22662:32583029,25541892:0 +) +(1,22663:6764466,26406972:25818563,513147,126483 +k1,22662:7871672,26406972:159555 +k1,22662:11904405,26406972:159555 +k1,22662:12676722,26406972:159555 +k1,22662:15911881,26406972:159554 +k1,22662:17496844,26406972:159555 +k1,22662:18315691,26406972:159555 +k1,22662:19494331,26406972:159555 +k1,22662:21334229,26406972:159555 +k1,22662:22153076,26406972:159555 +k1,22662:25154271,26406972:159554 +k1,22662:26581292,26406972:159555 +k1,22662:27759932,26406972:159555 +k1,22662:31533142,26406972:159555 +k1,22662:32583029,26406972:0 +) +(1,22663:6764466,27272052:25818563,513147,134348 +g1,22662:7982780,27272052 +g1,22662:9570062,27272052 +g1,22662:11597745,27272052 +g1,22662:12744625,27272052 +g1,22662:14410550,27272052 +k1,22663:32583029,27272052:15094253 +g1,22663:32583029,27272052 +) +(1,22665:6764466,28137132:25818563,505283,134348 +h1,22664:6764466,28137132:983040,0,0 +k1,22664:10721773,28137132:184399 +(1,22664:10721773,28137132:0,452978,115847 +r1,22743:14948869,28137132:4227096,568825,115847 +k1,22664:10721773,28137132:-4227096 +) +(1,22664:10721773,28137132:4227096,452978,115847 +k1,22664:10721773,28137132:3277 +h1,22664:14945592,28137132:0,411205,112570 +) +k1,22664:15133267,28137132:184398 +k1,22664:17695968,28137132:184399 +k1,22664:18668765,28137132:184399 +k1,22664:22255793,28137132:184399 +k1,22664:24900413,28137132:184398 +k1,22664:26216619,28137132:184399 +k1,22664:29793161,28137132:184399 +k1,22665:32583029,28137132:0 +) +(1,22665:6764466,29002212:25818563,505283,134348 +(1,22664:6764466,29002212:0,452978,115847 +r1,22743:9233003,29002212:2468537,568825,115847 +k1,22664:6764466,29002212:-2468537 +) +(1,22664:6764466,29002212:2468537,452978,115847 +k1,22664:6764466,29002212:3277 +h1,22664:9229726,29002212:0,411205,112570 +) +k1,22664:9408982,29002212:175979 +k1,22664:11267925,29002212:175978 +k1,22664:11799764,29002212:175979 +k1,22664:13848762,29002212:175979 +k1,22664:16999420,29002212:175979 +k1,22664:19041208,29002212:175978 +k1,22664:19903349,29002212:175979 +k1,22664:20850031,29002212:175979 +k1,22664:24098337,29002212:175978 +k1,22664:24925744,29002212:175979 +k1,22664:25849489,29002212:175979 +k1,22664:28362482,29002212:175979 +k1,22664:29154498,29002212:175978 +k1,22664:31215948,29002212:175979 +k1,22664:32583029,29002212:0 +) +(1,22665:6764466,29867292:25818563,505283,134348 +k1,22664:10090605,29867292:232184 +k1,22664:12309841,29867292:232184 +k1,22664:14552014,29867292:232184 +k1,22664:15803284,29867292:232185 +k1,22664:17901278,29867292:232184 +k1,22664:19663728,29867292:232184 +k1,22664:20547340,29867292:232184 +k1,22664:21527290,29867292:232184 +k1,22664:24276711,29867292:232184 +k1,22664:26451382,29867292:232184 +(1,22664:26451382,29867292:0,452978,115847 +r1,22743:27161360,29867292:709978,568825,115847 +k1,22664:26451382,29867292:-709978 +) +(1,22664:26451382,29867292:709978,452978,115847 +k1,22664:26451382,29867292:3277 +h1,22664:27158083,29867292:0,411205,112570 +) +k1,22664:27393545,29867292:232185 +k1,22664:29544623,29867292:232184 +k1,22664:30132667,29867292:232184 +k1,22664:32224763,29867292:232184 +(1,22664:32224763,29867292:0,452978,115847 +r1,22743:32583029,29867292:358266,568825,115847 +k1,22664:32224763,29867292:-358266 +) +(1,22664:32224763,29867292:358266,452978,115847 +k1,22664:32224763,29867292:3277 +h1,22664:32579752,29867292:0,411205,112570 +) +k1,22664:32583029,29867292:0 +) +(1,22665:6764466,30732372:25818563,513147,134348 +k1,22664:7556047,30732372:260084 +k1,22664:10552915,30732372:260085 +k1,22664:11440834,30732372:260084 +k1,22664:13167614,30732372:260084 +k1,22664:15298752,30732372:260085 +k1,22664:15914696,30732372:260084 +k1,22664:19149459,30732372:260084 +k1,22664:21275354,30732372:260085 +k1,22664:22639720,30732372:260084 +k1,22664:23647571,30732372:260085 +k1,22664:27232296,30732372:260084 +k1,22664:29227773,30732372:260084 +k1,22664:30644568,30732372:260085 +k1,22664:31563944,30732372:260084 +k1,22664:32583029,30732372:0 +) +(1,22665:6764466,31597452:25818563,513147,115847 +k1,22664:10073175,31597452:282912 +(1,22664:10073175,31597452:0,452978,115847 +r1,22743:12541712,31597452:2468537,568825,115847 +k1,22664:10073175,31597452:-2468537 +) +(1,22664:10073175,31597452:2468537,452978,115847 +k1,22664:10073175,31597452:3277 +h1,22664:12538435,31597452:0,411205,112570 +) +k1,22664:12998295,31597452:282913 +(1,22664:12998295,31597452:0,452978,115847 +r1,22743:15818544,31597452:2820249,568825,115847 +k1,22664:12998295,31597452:-2820249 +) +(1,22664:12998295,31597452:2820249,452978,115847 +k1,22664:12998295,31597452:3277 +h1,22664:15815267,31597452:0,411205,112570 +) +k1,22664:16275126,31597452:282912 +(1,22664:16275126,31597452:0,452978,115847 +r1,22743:18391951,31597452:2116825,568825,115847 +k1,22664:16275126,31597452:-2116825 +) +(1,22664:16275126,31597452:2116825,452978,115847 +k1,22664:16275126,31597452:3277 +h1,22664:18388674,31597452:0,411205,112570 +) +k1,22664:18674864,31597452:282913 +k1,22664:19640661,31597452:282912 +(1,22664:19640661,31597452:0,452978,115847 +r1,22743:23867757,31597452:4227096,568825,115847 +k1,22664:19640661,31597452:-4227096 +) +(1,22664:19640661,31597452:4227096,452978,115847 +k1,22664:19640661,31597452:3277 +h1,22664:23864480,31597452:0,411205,112570 +) +k1,22664:24150669,31597452:282912 +k1,22664:26319053,31597452:282913 +k1,22664:27887781,31597452:282912 +k1,22664:29949996,31597452:282913 +k1,22664:31251993,31597452:282912 +k1,22664:32583029,31597452:0 +) +(1,22665:6764466,32462532:25818563,513147,134348 +k1,22664:8625890,32462532:174527 +k1,22664:9997105,32462532:174528 +k1,22664:13243960,32462532:174527 +k1,22664:14069916,32462532:174528 +k1,22664:15941170,32462532:174527 +k1,22664:19141495,32462532:174528 +k1,22664:21176589,32462532:174527 +k1,22664:22002545,32462532:174528 +k1,22664:22924838,32462532:174527 +k1,22664:23455226,32462532:174528 +k1,22664:26604432,32462532:174527 +k1,22664:28644770,32462532:174528 +k1,22664:31839851,32462532:174527 +k1,22664:32583029,32462532:0 +) +(1,22665:6764466,33327612:25818563,513147,126483 +g1,22664:10057650,33327612 +g1,22664:12243931,33327612 +g1,22664:12909121,33327612 +g1,22664:13566447,33327612 +g1,22664:14297173,33327612 +g1,22664:15562673,33327612 +g1,22664:16413330,33327612 +g1,22664:17360325,33327612 +k1,22665:32583029,33327612:13006932 +g1,22665:32583029,33327612 +) +(1,22667:6764466,34192692:25818563,505283,134348 +h1,22666:6764466,34192692:983040,0,0 +g1,22666:9729970,34192692 +g1,22666:11664592,34192692 +(1,22666:11664592,34192692:0,452978,115847 +r1,22743:15891688,34192692:4227096,568825,115847 +k1,22666:11664592,34192692:-4227096 +) +(1,22666:11664592,34192692:4227096,452978,115847 +k1,22666:11664592,34192692:3277 +h1,22666:15888411,34192692:0,411205,112570 +) +g1,22666:16264587,34192692 +g1,22666:17855801,34192692 +g1,22666:21148985,34192692 +g1,22666:23335266,34192692 +g1,22666:24638777,34192692 +g1,22666:25585772,34192692 +k1,22667:32583029,34192692:3585453 +g1,22667:32583029,34192692 +) +v1,22669:6764466,34877547:0,393216,0 +(1,22675:6764466,36581334:25818563,2097003,196608 +g1,22675:6764466,36581334 +g1,22675:6764466,36581334 +g1,22675:6567858,36581334 +(1,22675:6567858,36581334:0,2097003,196608 +r1,22743:32779637,36581334:26211779,2293611,196608 +k1,22675:6567857,36581334:-26211780 +) +(1,22675:6567858,36581334:26211779,2097003,196608 +[1,22675:6764466,36581334:25818563,1900395,0 +(1,22671:6764466,35105378:25818563,424439,112852 +(1,22670:6764466,35105378:0,0,0 +g1,22670:6764466,35105378 +g1,22670:6764466,35105378 +g1,22670:6436786,35105378 +(1,22670:6436786,35105378:0,0,0 +) +g1,22670:6764466,35105378 +) +k1,22671:6764466,35105378:0 +g1,22671:11079868,35105378 +g1,22671:14731362,35105378 +g1,22671:17055040,35105378 +h1,22671:17386994,35105378:0,0,0 +k1,22671:32583029,35105378:15196035 +g1,22671:32583029,35105378 +) +(1,22672:6764466,35790233:25818563,424439,112852 +h1,22672:6764466,35790233:0,0,0 +g1,22672:7096420,35790233 +g1,22672:7428374,35790233 +g1,22672:11743775,35790233 +h1,22672:12075729,35790233:0,0,0 +k1,22672:32583029,35790233:20507300 +g1,22672:32583029,35790233 +) +(1,22673:6764466,36475088:25818563,424439,106246 +h1,22673:6764466,36475088:0,0,0 +g1,22673:7096420,36475088 +g1,22673:7428374,36475088 +g1,22673:15063315,36475088 +g1,22673:15395269,36475088 +h1,22673:17718947,36475088:0,0,0 +k1,22673:32583029,36475088:14864082 +g1,22673:32583029,36475088 +) +] +) +g1,22675:32583029,36581334 +g1,22675:6764466,36581334 +g1,22675:6764466,36581334 +g1,22675:32583029,36581334 +g1,22675:32583029,36581334 +) +h1,22675:6764466,36777942:0,0,0 +(1,22679:6764466,37643022:25818563,513147,126483 +h1,22678:6764466,37643022:983040,0,0 +g1,22678:9636253,37643022 +g1,22678:10451520,37643022 +g1,22678:11669834,37643022 +g1,22678:13236144,37643022 +g1,22678:14102529,37643022 +(1,22678:14102529,37643022:0,452978,115847 +r1,22743:16571066,37643022:2468537,568825,115847 +k1,22678:14102529,37643022:-2468537 +) +(1,22678:14102529,37643022:2468537,452978,115847 +k1,22678:14102529,37643022:3277 +h1,22678:16567789,37643022:0,411205,112570 +) +g1,22678:16770295,37643022 +g1,22678:18349712,37643022 +g1,22678:20079207,37643022 +g1,22678:20929864,37643022 +g1,22678:21876859,37643022 +k1,22679:32583029,37643022:8137160 +g1,22679:32583029,37643022 +) +v1,22681:6764466,38327877:0,393216,0 +(1,22687:6764466,40031664:25818563,2097003,196608 +g1,22687:6764466,40031664 +g1,22687:6764466,40031664 +g1,22687:6567858,40031664 +(1,22687:6567858,40031664:0,2097003,196608 +r1,22743:32779637,40031664:26211779,2293611,196608 +k1,22687:6567857,40031664:-26211780 +) +(1,22687:6567858,40031664:26211779,2097003,196608 +[1,22687:6764466,40031664:25818563,1900395,0 +(1,22683:6764466,38555708:25818563,424439,112852 +(1,22682:6764466,38555708:0,0,0 +g1,22682:6764466,38555708 +g1,22682:6764466,38555708 +g1,22682:6436786,38555708 +(1,22682:6436786,38555708:0,0,0 +) +g1,22682:6764466,38555708 +) +k1,22683:6764466,38555708:0 +g1,22683:11079868,38555708 +g1,22683:14731362,38555708 +g1,22683:17055040,38555708 +h1,22683:17386994,38555708:0,0,0 +k1,22683:32583029,38555708:15196035 +g1,22683:32583029,38555708 +) +(1,22684:6764466,39240563:25818563,424439,112852 +h1,22684:6764466,39240563:0,0,0 +g1,22684:7096420,39240563 +g1,22684:7428374,39240563 +g1,22684:11743775,39240563 +h1,22684:12075729,39240563:0,0,0 +k1,22684:32583029,39240563:20507300 +g1,22684:32583029,39240563 +) +(1,22685:6764466,39925418:25818563,424439,106246 +h1,22685:6764466,39925418:0,0,0 +g1,22685:7096420,39925418 +g1,22685:7428374,39925418 +g1,22685:12739638,39925418 +g1,22685:13403546,39925418 +g1,22685:16391131,39925418 +g1,22685:16723085,39925418 +h1,22685:19710671,39925418:0,0,0 +k1,22685:32583029,39925418:12872358 +g1,22685:32583029,39925418 +) +] +) +g1,22687:32583029,40031664 +g1,22687:6764466,40031664 +g1,22687:6764466,40031664 +g1,22687:32583029,40031664 +g1,22687:32583029,40031664 +) +h1,22687:6764466,40228272:0,0,0 +(1,22691:6764466,41093352:25818563,513147,7863 +h1,22690:6764466,41093352:983040,0,0 +g1,22690:9138180,41093352 +g1,22690:9953447,41093352 +g1,22690:11844816,41093352 +g1,22690:13741427,41093352 +g1,22690:15073118,41093352 +g1,22690:16020113,41093352 +g1,22690:19013142,41093352 +g1,22690:21222360,41093352 +g1,22690:21777449,41093352 +g1,22690:24157061,41093352 +k1,22691:32583029,41093352:5678044 +g1,22691:32583029,41093352 +) +v1,22693:6764466,41778207:0,393216,0 +(1,22699:6764466,43481994:25818563,2097003,196608 +g1,22699:6764466,43481994 +g1,22699:6764466,43481994 +g1,22699:6567858,43481994 +(1,22699:6567858,43481994:0,2097003,196608 +r1,22743:32779637,43481994:26211779,2293611,196608 +k1,22699:6567857,43481994:-26211780 +) +(1,22699:6567858,43481994:26211779,2097003,196608 +[1,22699:6764466,43481994:25818563,1900395,0 +(1,22695:6764466,42006038:25818563,424439,112852 +(1,22694:6764466,42006038:0,0,0 +g1,22694:6764466,42006038 +g1,22694:6764466,42006038 +g1,22694:6436786,42006038 +(1,22694:6436786,42006038:0,0,0 +) +g1,22694:6764466,42006038 +) +k1,22695:6764466,42006038:0 +g1,22695:11079868,42006038 +g1,22695:14731362,42006038 +g1,22695:17055040,42006038 +h1,22695:17386994,42006038:0,0,0 +k1,22695:32583029,42006038:15196035 +g1,22695:32583029,42006038 +) +(1,22696:6764466,42690893:25818563,424439,112852 +h1,22696:6764466,42690893:0,0,0 +g1,22696:7096420,42690893 +g1,22696:7428374,42690893 +g1,22696:11743775,42690893 +h1,22696:12075729,42690893:0,0,0 +k1,22696:32583029,42690893:20507300 +g1,22696:32583029,42690893 +) +(1,22697:6764466,43375748:25818563,424439,106246 +h1,22697:6764466,43375748:0,0,0 +g1,22697:7096420,43375748 +g1,22697:7428374,43375748 +g1,22697:12739638,43375748 +g1,22697:13403546,43375748 +g1,22697:18714809,43375748 +g1,22697:19046763,43375748 +h1,22697:22366302,43375748:0,0,0 +k1,22697:32583029,43375748:10216727 +g1,22697:32583029,43375748 +) +] +) +g1,22699:32583029,43481994 +g1,22699:6764466,43481994 +g1,22699:6764466,43481994 +g1,22699:32583029,43481994 +g1,22699:32583029,43481994 +) +h1,22699:6764466,43678602:0,0,0 +(1,22703:6764466,44543682:25818563,513147,134348 +h1,22702:6764466,44543682:983040,0,0 +k1,22702:9684354,44543682:219805 +k1,22702:13131153,44543682:219806 +k1,22702:16147379,44543682:219805 +k1,22702:16852806,44543682:219806 +(1,22702:16852806,44543682:0,452978,115847 +r1,22743:21079902,44543682:4227096,568825,115847 +k1,22702:16852806,44543682:-4227096 +) +(1,22702:16852806,44543682:4227096,452978,115847 +k1,22702:16852806,44543682:3277 +h1,22702:21076625,44543682:0,411205,112570 +) +k1,22702:21299707,44543682:219805 +k1,22702:22051009,44543682:219805 +k1,22702:24476102,44543682:219806 +k1,22702:27367154,44543682:219805 +k1,22702:31163260,44543682:219806 +k1,22702:31841162,44543682:219805 +k1,22703:32583029,44543682:0 +) +(1,22703:6764466,45408762:25818563,513147,134348 +k1,22702:8703961,45408762:234248 +k1,22702:9294069,45408762:234248 +k1,22702:11506194,45408762:234248 +k1,22702:12399734,45408762:234248 +k1,22702:16577939,45408762:234248 +k1,22702:18816278,45408762:234248 +(1,22702:18816278,45408762:0,452978,122846 +r1,22743:21636527,45408762:2820249,575824,122846 +k1,22702:18816278,45408762:-2820249 +) +(1,22702:18816278,45408762:2820249,452978,122846 +k1,22702:18816278,45408762:3277 +h1,22702:21633250,45408762:0,411205,112570 +) +k1,22702:21870775,45408762:234248 +k1,22702:24506262,45408762:234248 +k1,22702:25096370,45408762:234248 +k1,22702:27203637,45408762:234248 +k1,22702:29118228,45408762:234248 +k1,22702:30038638,45408762:234248 +k1,22702:31043589,45408762:234248 +k1,22703:32583029,45408762:0 +) +] +g1,22743:32583029,45543110 +) +] +(1,22743:32583029,45706769:0,0,0 +g1,22743:32583029,45706769 +) +) +] +(1,22743:6630773,47279633:25952256,0,0 +h1,22743:6630773,47279633:25952256,0,0 +) +] +(1,22743:4262630,4025873:0,0,0 +[1,22743:-473656,4025873:0,0,0 +(1,22743:-473656,-710413:0,0,0 +(1,22743:-473656,-710413:0,0,0 +g1,22743:-473656,-710413 +) +g1,22743:-473656,-710413 ) ] ) ] !26424 -}389 -Input:4302:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4303:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4304:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4305:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}390 Input:4306:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4307:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4308:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -394135,2475 +394338,2473 @@ Input:4314:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4315:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4316:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4317:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4318:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1484 -{390 -[1,22794:4262630,47279633:28320399,43253760,0 -(1,22794:4262630,4025873:0,0,0 -[1,22794:-473656,4025873:0,0,0 -(1,22794:-473656,-710413:0,0,0 -(1,22794:-473656,-644877:0,0,0 -k1,22794:-473656,-644877:-65536 +{391 +[1,22792:4262630,47279633:28320399,43253760,0 +(1,22792:4262630,4025873:0,0,0 +[1,22792:-473656,4025873:0,0,0 +(1,22792:-473656,-710413:0,0,0 +(1,22792:-473656,-644877:0,0,0 +k1,22792:-473656,-644877:-65536 ) -(1,22794:-473656,4736287:0,0,0 -k1,22794:-473656,4736287:5209943 +(1,22792:-473656,4736287:0,0,0 +k1,22792:-473656,4736287:5209943 ) -g1,22794:-473656,-710413 +g1,22792:-473656,-710413 ) ] ) -[1,22794:6630773,47279633:25952256,43253760,0 -[1,22794:6630773,4812305:25952256,786432,0 -(1,22794:6630773,4812305:25952256,530548,134348 -(1,22794:6630773,4812305:25952256,530548,134348 -g1,22794:3078558,4812305 -[1,22794:3078558,4812305:0,0,0 -(1,22794:3078558,2439708:0,1703936,0 -k1,22794:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22794:2537886,2439708:1179648,16384,0 +[1,22792:6630773,47279633:25952256,43253760,0 +[1,22792:6630773,4812305:25952256,786432,0 +(1,22792:6630773,4812305:25952256,530548,134348 +(1,22792:6630773,4812305:25952256,530548,134348 +g1,22792:3078558,4812305 +[1,22792:3078558,4812305:0,0,0 +(1,22792:3078558,2439708:0,1703936,0 +k1,22792:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22792:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22794:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22792:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22794:3078558,4812305:0,0,0 -(1,22794:3078558,2439708:0,1703936,0 -g1,22794:29030814,2439708 -g1,22794:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22794:36151628,1915420:16384,1179648,0 +[1,22792:3078558,4812305:0,0,0 +(1,22792:3078558,2439708:0,1703936,0 +g1,22792:29030814,2439708 +g1,22792:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22792:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22794:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22792:37855564,2439708:1179648,16384,0 ) ) -k1,22794:3078556,2439708:-34777008 +k1,22792:3078556,2439708:-34777008 ) ] -[1,22794:3078558,4812305:0,0,0 -(1,22794:3078558,49800853:0,16384,2228224 -k1,22794:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22794:2537886,49800853:1179648,16384,0 +[1,22792:3078558,4812305:0,0,0 +(1,22792:3078558,49800853:0,16384,2228224 +k1,22792:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22792:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22794:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22792:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22794:3078558,4812305:0,0,0 -(1,22794:3078558,49800853:0,16384,2228224 -g1,22794:29030814,49800853 -g1,22794:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22794:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22794:37855564,49800853:1179648,16384,0 +[1,22792:3078558,4812305:0,0,0 +(1,22792:3078558,49800853:0,16384,2228224 +g1,22792:29030814,49800853 +g1,22792:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22792:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22792:37855564,49800853:1179648,16384,0 ) ) -k1,22794:3078556,49800853:-34777008 +k1,22792:3078556,49800853:-34777008 ) -] -g1,22794:6630773,4812305 -g1,22794:6630773,4812305 -g1,22794:8592265,4812305 -g1,22794:12111033,4812305 -g1,22794:15898358,4812305 -k1,22794:31387652,4812305:15489294 -) -) -] -[1,22794:6630773,45706769:25952256,40108032,0 -(1,22794:6630773,45706769:25952256,40108032,0 -(1,22794:6630773,45706769:0,0,0 -g1,22794:6630773,45706769 -) -[1,22794:6630773,45706769:25952256,40108032,0 -v1,22745:6630773,6254097:0,393216,0 -(1,22745:6630773,19653021:25952256,13792140,0 -g1,22745:6630773,19653021 -g1,22745:6237557,19653021 -r1,22794:6368629,19653021:131072,13792140,0 -g1,22745:6567858,19653021 -g1,22745:6764466,19653021 -[1,22745:6764466,19653021:25818563,13792140,0 -(1,22705:6764466,6374028:25818563,513147,126483 -k1,22704:8860144,6374028:282952 -k1,22704:9829257,6374028:282951 -k1,22704:10728247,6374028:282952 -k1,22704:12030283,6374028:282951 -k1,22704:13680316,6374028:282952 -k1,22704:14622559,6374028:282951 -k1,22704:16157904,6374028:282952 -k1,22704:18458710,6374028:282952 -k1,22704:20117262,6374028:282951 -k1,22704:21419299,6374028:282952 -k1,22704:23008383,6374028:282951 -k1,22704:25914741,6374028:282952 -k1,22704:26856984,6374028:282951 -k1,22704:28159021,6374028:282952 -k1,22704:30419849,6374028:282951 -k1,22704:31835263,6374028:282952 -k1,22704:32583029,6374028:0 -) -(1,22705:6764466,7239108:25818563,505283,7863 -k1,22705:32583029,7239108:24252908 -g1,22705:32583029,7239108 -) -v1,22707:6764466,7923963:0,393216,0 -(1,22713:6764466,9627750:25818563,2097003,196608 -g1,22713:6764466,9627750 -g1,22713:6764466,9627750 -g1,22713:6567858,9627750 -(1,22713:6567858,9627750:0,2097003,196608 -r1,22794:32779637,9627750:26211779,2293611,196608 -k1,22713:6567857,9627750:-26211780 -) -(1,22713:6567858,9627750:26211779,2097003,196608 -[1,22713:6764466,9627750:25818563,1900395,0 -(1,22709:6764466,8151794:25818563,424439,112852 -(1,22708:6764466,8151794:0,0,0 -g1,22708:6764466,8151794 -g1,22708:6764466,8151794 -g1,22708:6436786,8151794 -(1,22708:6436786,8151794:0,0,0 -) -g1,22708:6764466,8151794 -) -k1,22709:6764466,8151794:0 -g1,22709:11079868,8151794 -g1,22709:14731362,8151794 -g1,22709:17055040,8151794 -h1,22709:17386994,8151794:0,0,0 -k1,22709:32583029,8151794:15196035 -g1,22709:32583029,8151794 -) -(1,22710:6764466,8836649:25818563,424439,112852 -h1,22710:6764466,8836649:0,0,0 -g1,22710:7096420,8836649 -g1,22710:7428374,8836649 -g1,22710:11743775,8836649 -h1,22710:12075729,8836649:0,0,0 -k1,22710:32583029,8836649:20507300 -g1,22710:32583029,8836649 -) -(1,22711:6764466,9521504:25818563,424439,106246 -h1,22711:6764466,9521504:0,0,0 -g1,22711:7096420,9521504 -g1,22711:7428374,9521504 -g1,22711:14731361,9521504 -g1,22711:15395269,9521504 -g1,22711:15727223,9521504 -h1,22711:18050901,9521504:0,0,0 -k1,22711:32583029,9521504:14532128 -g1,22711:32583029,9521504 -) -] -) -g1,22713:32583029,9627750 -g1,22713:6764466,9627750 -g1,22713:6764466,9627750 -g1,22713:32583029,9627750 -g1,22713:32583029,9627750 -) -h1,22713:6764466,9824358:0,0,0 -(1,22717:6764466,10689438:25818563,505283,134348 -h1,22716:6764466,10689438:983040,0,0 -k1,22716:11335661,10689438:143583 -k1,22716:12288615,10689438:143584 -k1,22716:13451283,10689438:143583 -k1,22716:16151426,10689438:143584 -k1,22716:18304998,10689438:143583 -k1,22716:18804442,10689438:143584 -k1,22716:22561680,10689438:143583 -k1,22716:24823388,10689438:143584 -k1,22716:27051671,10689438:143583 -k1,22716:29810142,10689438:143584 -k1,22716:30636610,10689438:143583 -k1,22716:32583029,10689438:0 -) -(1,22717:6764466,11554518:25818563,505283,134348 -k1,22716:7735672,11554518:163803 -k1,22716:11011781,11554518:163804 -k1,22716:14044750,11554518:163803 -k1,22716:16668775,11554518:163803 -k1,22716:19020171,11554518:163804 -k1,22716:20971796,11554518:163803 -k1,22716:22228084,11554518:163803 -(1,22716:22228084,11554518:0,414482,115847 -r1,22794:22586350,11554518:358266,530329,115847 -k1,22716:22228084,11554518:-358266 -) -(1,22716:22228084,11554518:358266,414482,115847 -k1,22716:22228084,11554518:3277 -h1,22716:22583073,11554518:0,411205,112570 -) -k1,22716:22923824,11554518:163804 -k1,22716:23739055,11554518:163803 -k1,22716:26800205,11554518:163803 -k1,22716:28802949,11554518:163804 -k1,22716:30708044,11554518:163803 -k1,22716:32583029,11554518:0 -) -(1,22717:6764466,12419598:25818563,505283,126483 -k1,22716:8036756,12419598:179805 -(1,22716:8036756,12419598:0,414482,115847 -r1,22794:8395022,12419598:358266,530329,115847 -k1,22716:8036756,12419598:-358266 -) -(1,22716:8036756,12419598:358266,414482,115847 -k1,22716:8036756,12419598:3277 -h1,22716:8391745,12419598:0,411205,112570 -) -k1,22716:8748497,12419598:179805 -k1,22716:9746191,12419598:179805 -k1,22716:12001521,12419598:179805 -k1,22716:14210321,12419598:179805 -k1,22716:16508250,12419598:179805 -k1,22716:17679615,12419598:179805 -k1,22716:20675502,12419598:179805 -k1,22716:22865296,12419598:179805 -k1,22716:25283811,12419598:179805 -k1,22716:26863465,12419598:179805 -k1,22716:31563944,12419598:179805 -k1,22716:32583029,12419598:0 -) -(1,22717:6764466,13284678:25818563,513147,134348 -g1,22716:9939030,13284678 -g1,22716:13855461,13284678 -g1,22716:15158972,13284678 -g1,22716:16644017,13284678 -g1,22716:17591012,13284678 -k1,22717:32583029,13284678:13426362 -g1,22717:32583029,13284678 -) -v1,22719:6764466,13969533:0,393216,0 -(1,22723:6764466,14303610:25818563,727293,196608 -g1,22723:6764466,14303610 -g1,22723:6764466,14303610 -g1,22723:6567858,14303610 -(1,22723:6567858,14303610:0,727293,196608 -r1,22794:32779637,14303610:26211779,923901,196608 -k1,22723:6567857,14303610:-26211780 -) -(1,22723:6567858,14303610:26211779,727293,196608 -[1,22723:6764466,14303610:25818563,530685,0 -(1,22721:6764466,14197364:25818563,424439,106246 -(1,22720:6764466,14197364:0,0,0 -g1,22720:6764466,14197364 -g1,22720:6764466,14197364 -g1,22720:6436786,14197364 -(1,22720:6436786,14197364:0,0,0 -) -g1,22720:6764466,14197364 -) -g1,22721:7096420,14197364 -g1,22721:7428374,14197364 -g1,22721:12739638,14197364 -g1,22721:13403546,14197364 -h1,22721:20042625,14197364:0,0,0 -k1,22721:32583029,14197364:12540404 -g1,22721:32583029,14197364 -) -] -) -g1,22723:32583029,14303610 -g1,22723:6764466,14303610 -g1,22723:6764466,14303610 -g1,22723:32583029,14303610 -g1,22723:32583029,14303610 -) -h1,22723:6764466,14500218:0,0,0 -v1,22727:6764466,15185073:0,393216,0 -(1,22731:6764466,15519150:25818563,727293,196608 -g1,22731:6764466,15519150 -g1,22731:6764466,15519150 -g1,22731:6567858,15519150 -(1,22731:6567858,15519150:0,727293,196608 -r1,22794:32779637,15519150:26211779,923901,196608 -k1,22731:6567857,15519150:-26211780 -) -(1,22731:6567858,15519150:26211779,727293,196608 -[1,22731:6764466,15519150:25818563,530685,0 -(1,22729:6764466,15412904:25818563,424439,106246 -(1,22728:6764466,15412904:0,0,0 -g1,22728:6764466,15412904 -g1,22728:6764466,15412904 -g1,22728:6436786,15412904 -(1,22728:6436786,15412904:0,0,0 -) -g1,22728:6764466,15412904 -) -g1,22729:7096420,15412904 -g1,22729:7428374,15412904 -g1,22729:12739638,15412904 -g1,22729:13403546,15412904 -h1,22729:21038486,15412904:0,0,0 -k1,22729:32583029,15412904:11544543 -g1,22729:32583029,15412904 -) -] -) -g1,22731:32583029,15519150 -g1,22731:6764466,15519150 -g1,22731:6764466,15519150 -g1,22731:32583029,15519150 -g1,22731:32583029,15519150 -) -h1,22731:6764466,15715758:0,0,0 -(1,22735:6764466,16580838:25818563,505283,126483 -h1,22734:6764466,16580838:983040,0,0 -g1,22734:10881437,16580838 -g1,22734:14149062,16580838 -g1,22734:16089583,16580838 -g1,22734:18076634,16580838 -g1,22734:18807360,16580838 -k1,22735:32583029,16580838:10604382 -g1,22735:32583029,16580838 -) -v1,22737:6764466,17265693:0,393216,0 -(1,22741:6764466,17599770:25818563,727293,196608 -g1,22741:6764466,17599770 -g1,22741:6764466,17599770 -g1,22741:6567858,17599770 -(1,22741:6567858,17599770:0,727293,196608 -r1,22794:32779637,17599770:26211779,923901,196608 -k1,22741:6567857,17599770:-26211780 -) -(1,22741:6567858,17599770:26211779,727293,196608 -[1,22741:6764466,17599770:25818563,530685,0 -(1,22739:6764466,17493524:25818563,424439,106246 -(1,22738:6764466,17493524:0,0,0 -g1,22738:6764466,17493524 -g1,22738:6764466,17493524 -g1,22738:6436786,17493524 -(1,22738:6436786,17493524:0,0,0 -) -g1,22738:6764466,17493524 -) -g1,22739:7096420,17493524 -g1,22739:7428374,17493524 -g1,22739:12739638,17493524 -g1,22739:13403546,17493524 -g1,22739:17718947,17493524 -g1,22739:18050901,17493524 -g1,22739:18382855,17493524 -h1,22739:21038487,17493524:0,0,0 -k1,22739:32583029,17493524:11544542 -g1,22739:32583029,17493524 -) -] -) -g1,22741:32583029,17599770 -g1,22741:6764466,17599770 -g1,22741:6764466,17599770 -g1,22741:32583029,17599770 -g1,22741:32583029,17599770 -) -h1,22741:6764466,17796378:0,0,0 -(1,22745:6764466,18661458:25818563,505283,134348 -h1,22744:6764466,18661458:983040,0,0 -k1,22744:10316874,18661458:293303 -k1,22744:11068275,18661458:293304 -k1,22744:12465860,18661458:293303 -k1,22744:13506929,18661458:293303 -k1,22744:17064581,18661458:293304 -k1,22744:18642390,18661458:293303 -k1,22744:21233386,18661458:293304 -k1,22744:23277156,18661458:293303 -k1,22744:24186497,18661458:293303 -k1,22744:27099930,18661458:293304 -k1,22744:29403878,18661458:293303 -k1,22744:32583029,18661458:0 -) -(1,22745:6764466,19526538:25818563,505283,126483 -g1,22744:8947470,19526538 -g1,22744:9917402,19526538 -g1,22744:13556616,19526538 -g1,22744:14747405,19526538 -k1,22745:32583029,19526538:15070005 -g1,22745:32583029,19526538 -) -] -g1,22745:32583029,19653021 -) -h1,22745:6630773,19653021:0,0,0 -(1,22748:6630773,20518101:25952256,513147,115847 -h1,22747:6630773,20518101:983040,0,0 -k1,22747:10563114,20518101:159433 -(1,22747:10563114,20518101:0,452978,115847 -r1,22794:13031651,20518101:2468537,568825,115847 -k1,22747:10563114,20518101:-2468537 -) -(1,22747:10563114,20518101:2468537,452978,115847 -k1,22747:10563114,20518101:3277 -h1,22747:13028374,20518101:0,411205,112570 -) -k1,22747:13191085,20518101:159434 -k1,22747:14557691,20518101:159433 -k1,22747:16230350,20518101:159433 -k1,22747:18245108,20518101:159434 -k1,22747:19055969,20518101:159433 -k1,22747:21054342,20518101:159433 -k1,22747:23224421,20518101:159434 -k1,22747:25422024,20518101:159433 -k1,22747:26197495,20518101:159433 -k1,22747:26712789,20518101:159434 -k1,22747:29557232,20518101:159433 -k1,22748:32583029,20518101:0 -) -(1,22748:6630773,21383181:25952256,513147,134348 -(1,22747:6630773,21383181:0,459977,115847 -r1,22794:9451022,21383181:2820249,575824,115847 -k1,22747:6630773,21383181:-2820249 -) -(1,22747:6630773,21383181:2820249,459977,115847 -k1,22747:6630773,21383181:3277 -h1,22747:9447745,21383181:0,411205,112570 -) -k1,22747:9804321,21383181:179629 -(1,22747:9804321,21383181:0,459977,115847 -r1,22794:12976281,21383181:3171960,575824,115847 -k1,22747:9804321,21383181:-3171960 -) -(1,22747:9804321,21383181:3171960,459977,115847 -k1,22747:9804321,21383181:3277 -h1,22747:12973004,21383181:0,411205,112570 -) -k1,22747:13155910,21383181:179629 -k1,22747:14526983,21383181:179628 -(1,22747:14526983,21383181:0,459977,115847 -r1,22794:18050655,21383181:3523672,575824,115847 -k1,22747:14526983,21383181:-3523672 -) -(1,22747:14526983,21383181:3523672,459977,115847 -k1,22747:14526983,21383181:3277 -h1,22747:18047378,21383181:0,411205,112570 -) -k1,22747:18230284,21383181:179629 -k1,22747:20091567,21383181:179629 -k1,22747:21290281,21383181:179629 -k1,22747:24946595,21383181:179629 -k1,22747:26393689,21383181:179628 -k1,22747:29547997,21383181:179629 -k1,22747:31923737,21383181:179629 -k1,22747:32583029,21383181:0 -) -(1,22748:6630773,22248261:25952256,513147,134348 -k1,22747:8501662,22248261:168919 -k1,22747:10854896,22248261:168919 -k1,22747:12898145,22248261:168919 -k1,22747:16092861,22248261:168919 -k1,22747:17366062,22248261:168919 -k1,22747:18282746,22248261:168918 -k1,22747:19964891,22248261:168919 -k1,22747:21831848,22248261:168919 -k1,22747:24573055,22248261:168919 -k1,22747:26349572,22248261:168919 -k1,22747:27169919,22248261:168919 -k1,22747:30071034,22248261:168919 -k1,22747:32583029,22248261:0 -) -(1,22748:6630773,23113341:25952256,513147,134348 -k1,22747:9868342,23113341:262890 -k1,22747:12327342,23113341:262889 -k1,22747:13537883,23113341:262890 -k1,22747:14819857,23113341:262889 -(1,22747:14819857,23113341:0,452978,115847 -r1,22794:16584970,23113341:1765113,568825,115847 -k1,22747:14819857,23113341:-1765113 -) -(1,22747:14819857,23113341:1765113,452978,115847 -k1,22747:14819857,23113341:3277 -h1,22747:16581693,23113341:0,411205,112570 -) -k1,22747:16847860,23113341:262890 -k1,22747:19897995,23113341:262889 -k1,22747:21227156,23113341:262890 -k1,22747:22149337,23113341:262889 -k1,22747:25206027,23113341:262890 -k1,22747:27712213,23113341:262889 -k1,22747:29529617,23113341:262890 -k1,22747:31391584,23113341:262889 -k1,22747:32583029,23113341:0 -) -(1,22748:6630773,23978421:25952256,513147,126483 -k1,22747:8280080,23978421:182611 -k1,22747:11437371,23978421:182612 -k1,22747:13804297,23978421:182611 -k1,22747:15544699,23978421:182611 -k1,22747:16831593,23978421:182612 -k1,22747:17935640,23978421:182611 -k1,22747:19065902,23978421:182611 -k1,22747:22083601,23978421:182612 -k1,22747:23779438,23978421:182611 -k1,22747:24613478,23978421:182612 -k1,22747:26725469,23978421:182611 -k1,22747:28752263,23978421:182611 -k1,22747:30944864,23978421:182612 -k1,22747:31483335,23978421:182611 -k1,22747:32583029,23978421:0 -) -(1,22748:6630773,24843501:25952256,452978,115847 -g1,22747:7481430,24843501 -(1,22747:7481430,24843501:0,452978,115847 -r1,22794:9246543,24843501:1765113,568825,115847 -k1,22747:7481430,24843501:-1765113 -) -(1,22747:7481430,24843501:1765113,452978,115847 -k1,22747:7481430,24843501:3277 -h1,22747:9243266,24843501:0,411205,112570 -) -k1,22748:32583029,24843501:23284058 -g1,22748:32583029,24843501 -) -v1,22750:6630773,25528356:0,393216,0 -(1,22763:6630773,28323426:25952256,3188286,196608 -g1,22763:6630773,28323426 -g1,22763:6630773,28323426 -g1,22763:6434165,28323426 -(1,22763:6434165,28323426:0,3188286,196608 -r1,22794:32779637,28323426:26345472,3384894,196608 -k1,22763:6434165,28323426:-26345472 -) -(1,22763:6434165,28323426:26345472,3188286,196608 -[1,22763:6630773,28323426:25952256,2991678,0 -(1,22752:6630773,25762793:25952256,431045,112852 -(1,22751:6630773,25762793:0,0,0 -g1,22751:6630773,25762793 -g1,22751:6630773,25762793 -g1,22751:6303093,25762793 -(1,22751:6303093,25762793:0,0,0 -) -g1,22751:6630773,25762793 -) -k1,22752:6630773,25762793:0 -g1,22752:12937898,25762793 -g1,22752:13601806,25762793 -g1,22752:15925484,25762793 -g1,22752:16921346,25762793 -k1,22752:16921346,25762793:0 -h1,22752:19245024,25762793:0,0,0 -k1,22752:32583029,25762793:13338005 -g1,22752:32583029,25762793 -) -(1,22756:6630773,26578720:25952256,424439,112852 -(1,22754:6630773,26578720:0,0,0 -g1,22754:6630773,26578720 -g1,22754:6630773,26578720 -g1,22754:6303093,26578720 -(1,22754:6303093,26578720:0,0,0 -) -g1,22754:6630773,26578720 -) -g1,22756:7626635,26578720 -g1,22756:8954451,26578720 -g1,22756:12937898,26578720 -g1,22756:13601806,26578720 -h1,22756:15593530,26578720:0,0,0 -k1,22756:32583030,26578720:16989500 -g1,22756:32583030,26578720 -) -(1,22758:6630773,27394647:25952256,431045,112852 -(1,22757:6630773,27394647:0,0,0 -g1,22757:6630773,27394647 -g1,22757:6630773,27394647 -g1,22757:6303093,27394647 -(1,22757:6303093,27394647:0,0,0 -) -g1,22757:6630773,27394647 -) -k1,22758:6630773,27394647:0 -g1,22758:12937898,27394647 -g1,22758:13601806,27394647 -g1,22758:15925484,27394647 -g1,22758:16921346,27394647 -k1,22758:16921346,27394647:0 -h1,22758:19245024,27394647:0,0,0 -k1,22758:32583029,27394647:13338005 -g1,22758:32583029,27394647 -) -(1,22762:6630773,28210574:25952256,424439,112852 -(1,22760:6630773,28210574:0,0,0 -g1,22760:6630773,28210574 -g1,22760:6630773,28210574 -g1,22760:6303093,28210574 -(1,22760:6303093,28210574:0,0,0 -) -g1,22760:6630773,28210574 -) -g1,22762:7626635,28210574 -g1,22762:8954451,28210574 -g1,22762:11610083,28210574 -g1,22762:12273991,28210574 -h1,22762:13933761,28210574:0,0,0 -k1,22762:32583029,28210574:18649268 -g1,22762:32583029,28210574 -) -] -) -g1,22763:32583029,28323426 -g1,22763:6630773,28323426 -g1,22763:6630773,28323426 -g1,22763:32583029,28323426 -g1,22763:32583029,28323426 -) -h1,22763:6630773,28520034:0,0,0 -v1,22767:6630773,29385114:0,393216,0 -(1,22770:6630773,33252259:25952256,4260361,0 -g1,22770:6630773,33252259 -g1,22770:6237557,33252259 -r1,22794:6368629,33252259:131072,4260361,0 -g1,22770:6567858,33252259 -g1,22770:6764466,33252259 -[1,22770:6764466,33252259:25818563,4260361,0 -(1,22768:6764466,29657591:25818563,665693,196608 -(1,22767:6764466,29657591:0,665693,196608 -r1,22794:7868133,29657591:1103667,862301,196608 -k1,22767:6764466,29657591:-1103667 -) -(1,22767:6764466,29657591:1103667,665693,196608 -) -k1,22767:8215835,29657591:347702 -k1,22767:9942053,29657591:327680 -k1,22767:12098549,29657591:347702 -k1,22767:13465336,29657591:347702 -k1,22767:15783706,29657591:347702 -k1,22767:18160403,29657591:347702 -k1,22767:18985862,29657591:347702 -k1,22767:20504037,29657591:347702 -k1,22767:21843299,29657591:347702 -k1,22767:24683334,29657591:347701 -k1,22767:26424987,29657591:347702 -k1,22767:27226049,29657591:347553 -k1,22767:28256636,29657591:347702 -k1,22767:29887533,29657591:347702 -k1,22768:32583029,29657591:0 -) -(1,22768:6764466,30522671:25818563,513147,134348 -(1,22767:6764466,30522671:0,459977,115847 -r1,22794:9936426,30522671:3171960,575824,115847 -k1,22767:6764466,30522671:-3171960 -) -(1,22767:6764466,30522671:3171960,459977,115847 -k1,22767:6764466,30522671:3277 -h1,22767:9933149,30522671:0,411205,112570 -) -g1,22767:10135655,30522671 -g1,22767:11467346,30522671 -g1,22767:14000967,30522671 -g1,22767:14947962,30522671 -g1,22767:17639525,30522671 -g1,22767:18490182,30522671 -g1,22767:20033554,30522671 -g1,22767:23334602,30522671 -g1,22767:25317721,30522671 -g1,22767:26305348,30522671 -g1,22767:27892630,30522671 -k1,22768:32583029,30522671:3139818 -g1,22768:32583029,30522671 -) -(1,22770:6764466,31387751:25818563,513147,134348 -h1,22769:6764466,31387751:983040,0,0 -k1,22769:9279322,31387751:234203 -k1,22769:10907475,31387751:234202 -k1,22769:14167475,31387751:234203 -(1,22769:14167475,31387751:0,459977,115847 -r1,22794:16987724,31387751:2820249,575824,115847 -k1,22769:14167475,31387751:-2820249 -) -(1,22769:14167475,31387751:2820249,459977,115847 -k1,22769:14167475,31387751:3277 -h1,22769:16984447,31387751:0,411205,112570 -) -k1,22769:17395596,31387751:234202 -(1,22769:17395596,31387751:0,459977,115847 -r1,22794:20567556,31387751:3171960,575824,115847 -k1,22769:17395596,31387751:-3171960 -) -(1,22769:17395596,31387751:3171960,459977,115847 -k1,22769:17395596,31387751:3277 -h1,22769:20564279,31387751:0,411205,112570 -) -k1,22769:20801759,31387751:234203 -k1,22769:22227406,31387751:234202 -(1,22769:22227406,31387751:0,459977,115847 -r1,22794:25751078,31387751:3523672,575824,115847 -k1,22769:22227406,31387751:-3523672 -) -(1,22769:22227406,31387751:3523672,459977,115847 -k1,22769:22227406,31387751:3277 -h1,22769:25747801,31387751:0,411205,112570 -) -k1,22769:26158951,31387751:234203 -k1,22769:29820686,31387751:234202 -k1,22769:32583029,31387751:0 -) -(1,22770:6764466,32252831:25818563,513147,134348 -k1,22769:8653323,32252831:172469 -k1,22769:9485084,32252831:172469 -k1,22769:11220586,32252831:172468 -k1,22769:12660521,32252831:172469 -k1,22769:15807669,32252831:172469 -k1,22769:18176249,32252831:172469 -k1,22769:19008010,32252831:172469 -k1,22769:21942822,32252831:172469 -k1,22769:24433954,32252831:172468 -k1,22769:26000374,32252831:172469 -k1,22769:28935186,32252831:172469 -k1,22769:31923737,32252831:172469 -k1,22769:32583029,32252831:0 -) -(1,22770:6764466,33117911:25818563,505283,134348 -g1,22769:8921911,33117911 -k1,22770:32583028,33117911:22670868 -g1,22770:32583028,33117911 -) -] -g1,22770:32583029,33252259 -) -h1,22770:6630773,33252259:0,0,0 -(1,22773:6630773,34117339:25952256,513147,126483 -h1,22772:6630773,34117339:983040,0,0 -k1,22772:8324485,34117339:240779 -k1,22772:9096762,34117339:240780 -k1,22772:10623357,34117339:240779 -k1,22772:13494096,34117339:240779 -k1,22772:14386303,34117339:240779 -k1,22772:17837036,34117339:240780 -k1,22772:19096900,34117339:240779 -k1,22772:21018022,34117339:240779 -k1,22772:21918093,34117339:240779 -k1,22772:25000514,34117339:240780 -k1,22772:26097849,34117339:240779 -k1,22772:26954666,34117339:240779 -k1,22772:28580221,34117339:240779 -k1,22772:29840086,34117339:240780 -k1,22772:31923737,34117339:240779 -k1,22772:32583029,34117339:0 -) -(1,22773:6630773,34982419:25952256,513147,134348 -k1,22772:10302874,34982419:194761 -k1,22772:11765101,34982419:194761 -k1,22772:12315722,34982419:194761 -k1,22772:13793678,34982419:194761 -k1,22772:17602094,34982419:194761 -k1,22772:20468759,34982419:194762 -k1,22772:21472890,34982419:194761 -k1,22772:22686736,34982419:194761 -k1,22772:23677104,34982419:194761 -k1,22772:27906261,34982419:194761 -k1,22772:28760314,34982419:194761 -k1,22772:32583029,34982419:0 -) -(1,22773:6630773,35847499:25952256,513147,134348 -k1,22772:8372337,35847499:223095 -k1,22772:12365719,35847499:223096 -k1,22772:13580374,35847499:223095 -k1,22772:17108450,35847499:223095 -k1,22772:18844772,35847499:223096 -k1,22772:19754029,35847499:223095 -k1,22772:21821307,35847499:223095 -k1,22772:22660441,35847499:223096 -k1,22772:24664805,35847499:223095 -k1,22772:26268744,35847499:223095 -k1,22772:27023337,35847499:223096 -k1,22772:30024503,35847499:223095 -k1,22772:32583029,35847499:0 -) -(1,22773:6630773,36712579:25952256,513147,134348 -g1,22772:7922487,36712579 -g1,22772:8781008,36712579 -g1,22772:11392617,36712579 -g1,22772:12783291,36712579 -k1,22773:32583029,36712579:16096955 -g1,22773:32583029,36712579 -) -(1,22775:6630773,37577659:25952256,505283,126483 -h1,22774:6630773,37577659:983040,0,0 -k1,22774:10608064,37577659:204383 -(1,22774:10608064,37577659:0,452978,115847 -r1,22794:13428313,37577659:2820249,568825,115847 -k1,22774:10608064,37577659:-2820249 -) -(1,22774:10608064,37577659:2820249,452978,115847 -k1,22774:10608064,37577659:3277 -h1,22774:13425036,37577659:0,411205,112570 -) -k1,22774:13632696,37577659:204383 -k1,22774:14941362,37577659:204384 -k1,22774:15893511,37577659:204383 -k1,22774:17611120,37577659:204383 -k1,22774:18466931,37577659:204383 -k1,22774:21881267,37577659:204383 -k1,22774:24927292,37577659:204384 -k1,22774:25814560,37577659:204383 -k1,22774:29789229,37577659:204383 -k1,22774:32583029,37577659:0 -) -(1,22775:6630773,38442739:25952256,505283,134348 -k1,22774:7432800,38442739:185989 -(1,22774:7432800,38442739:0,452978,115847 -r1,22794:8846202,38442739:1413402,568825,115847 -k1,22774:7432800,38442739:-1413402 -) -(1,22774:7432800,38442739:1413402,452978,115847 -g1,22774:8491213,38442739 -h1,22774:8842925,38442739:0,411205,112570 -) -k1,22774:9032192,38442739:185990 -k1,22774:9979709,38442739:185989 -k1,22774:11674338,38442739:185990 -k1,22774:13714341,38442739:185989 -k1,22774:14646785,38442739:185989 -k1,22774:16701206,38442739:185990 -k1,22774:18171701,38442739:185989 -k1,22774:19376776,38442739:185990 -k1,22774:22635093,38442739:185989 -k1,22774:23472510,38442739:185989 -(1,22774:23472510,38442739:0,452978,115847 -r1,22794:26292759,38442739:2820249,568825,115847 -k1,22774:23472510,38442739:-2820249 -) -(1,22774:23472510,38442739:2820249,452978,115847 -k1,22774:23472510,38442739:3277 -h1,22774:26289482,38442739:0,411205,112570 -) -k1,22774:26478749,38442739:185990 -k1,22774:28525305,38442739:185989 -k1,22774:29362723,38442739:185990 -k1,22774:30296478,38442739:185989 -k1,22774:32583029,38442739:0 -) -(1,22775:6630773,39307819:25952256,505283,126483 -k1,22774:7578580,39307819:261645 -k1,22774:8610927,39307819:261644 -k1,22774:12486227,39307819:261645 -k1,22774:13363909,39307819:261644 -k1,22774:14828795,39307819:261645 -k1,22774:17751856,39307819:261644 -k1,22774:18369361,39307819:261645 -k1,22774:20235983,39307819:261645 -(1,22774:20235983,39307819:0,414482,115847 -r1,22794:20594249,39307819:358266,530329,115847 -k1,22774:20235983,39307819:-358266 -) -(1,22774:20235983,39307819:358266,414482,115847 -k1,22774:20235983,39307819:3277 -h1,22774:20590972,39307819:0,411205,112570 -) -k1,22774:21029563,39307819:261644 -k1,22774:23460450,39307819:261645 -k1,22774:24077954,39307819:261644 -k1,22774:26127421,39307819:261645 -k1,22774:29024268,39307819:261644 -k1,22774:31414522,39307819:261645 -k1,22775:32583029,39307819:0 -) -(1,22775:6630773,40172899:25952256,513147,126483 -k1,22774:10029961,40172899:267878 -k1,22774:10763801,40172899:267879 -k1,22774:12050764,40172899:267878 -k1,22774:16088929,40172899:267879 -k1,22774:18694476,40172899:267878 -k1,22774:21977666,40172899:267879 -k1,22774:23942271,40172899:267878 -k1,22774:25342611,40172899:267878 -k1,22774:26358256,40172899:267879 -k1,22774:29464498,40172899:267878 -k1,22774:30680028,40172899:267879 -k1,22774:31563944,40172899:267878 -k1,22774:32583029,40172899:0 -) -(1,22775:6630773,41037979:25952256,505283,126483 -g1,22774:10887336,41037979 -g1,22774:13038227,41037979 -g1,22774:14679903,41037979 -g1,22774:15495170,41037979 -(1,22774:15495170,41037979:0,452978,115847 -r1,22794:16908571,41037979:1413401,568825,115847 -k1,22774:15495170,41037979:-1413401 -) -(1,22774:15495170,41037979:1413401,452978,115847 -k1,22774:15495170,41037979:3277 -h1,22774:16905294,41037979:0,411205,112570 -) -g1,22774:17281470,41037979 -g1,22774:19551637,41037979 -g1,22774:21760855,41037979 -g1,22774:22315944,41037979 -g1,22774:23614867,41037979 -g1,22774:24465524,41037979 -(1,22774:24465524,41037979:0,452978,115847 -r1,22794:26230637,41037979:1765113,568825,115847 -k1,22774:24465524,41037979:-1765113 -) -(1,22774:24465524,41037979:1765113,452978,115847 -k1,22774:24465524,41037979:3277 -h1,22774:26227360,41037979:0,411205,112570 -) -k1,22775:32583029,41037979:6299964 -g1,22775:32583029,41037979 -) -v1,22777:6630773,41722834:0,393216,0 -(1,22785:6630773,44769907:25952256,3440289,196608 -g1,22785:6630773,44769907 -g1,22785:6630773,44769907 -g1,22785:6434165,44769907 -(1,22785:6434165,44769907:0,3440289,196608 -r1,22794:32779637,44769907:26345472,3636897,196608 -k1,22785:6434165,44769907:-26345472 -) -(1,22785:6434165,44769907:26345472,3440289,196608 -[1,22785:6630773,44769907:25952256,3243681,0 -(1,22779:6630773,41950665:25952256,424439,112852 -(1,22778:6630773,41950665:0,0,0 -g1,22778:6630773,41950665 -g1,22778:6630773,41950665 -g1,22778:6303093,41950665 -(1,22778:6303093,41950665:0,0,0 -) -g1,22778:6630773,41950665 -) -k1,22779:6630773,41950665:0 -g1,22779:10946175,41950665 -g1,22779:14597669,41950665 -g1,22779:16921347,41950665 -h1,22779:17253301,41950665:0,0,0 -k1,22779:32583029,41950665:15329728 -g1,22779:32583029,41950665 -) -(1,22780:6630773,42635520:25952256,424439,112852 -h1,22780:6630773,42635520:0,0,0 -g1,22780:6962727,42635520 -g1,22780:7294681,42635520 -g1,22780:11610082,42635520 -h1,22780:11942036,42635520:0,0,0 -k1,22780:32583028,42635520:20640992 -g1,22780:32583028,42635520 -) -(1,22781:6630773,43320375:25952256,424439,106246 -h1,22781:6630773,43320375:0,0,0 -g1,22781:6962727,43320375 -g1,22781:7294681,43320375 -g1,22781:10946175,43320375 -g1,22781:11610083,43320375 -g1,22781:17585255,43320375 -k1,22781:17585255,43320375:0 -h1,22781:23892380,43320375:0,0,0 -k1,22781:32583029,43320375:8690649 -g1,22781:32583029,43320375 -) -(1,22782:6630773,44005230:25952256,424439,106246 -h1,22782:6630773,44005230:0,0,0 -g1,22782:6962727,44005230 -g1,22782:7294681,44005230 -g1,22782:7626635,44005230 -g1,22782:7958589,44005230 -g1,22782:8290543,44005230 -g1,22782:8622497,44005230 -g1,22782:8954451,44005230 -g1,22782:11942036,44005230 -g1,22782:12605944,44005230 -g1,22782:16921346,44005230 -k1,22782:16921346,44005230:0 -h1,22782:25220195,44005230:0,0,0 -k1,22782:32583029,44005230:7362834 -g1,22782:32583029,44005230 -) -(1,22783:6630773,44690085:25952256,424439,79822 -h1,22783:6630773,44690085:0,0,0 -g1,22783:6962727,44690085 -g1,22783:7294681,44690085 -g1,22783:7626635,44690085 -g1,22783:7958589,44690085 -g1,22783:8290543,44690085 -g1,22783:8622497,44690085 -g1,22783:8954451,44690085 -h1,22783:9286405,44690085:0,0,0 -k1,22783:32583029,44690085:23296624 -g1,22783:32583029,44690085 -) -] -) -g1,22785:32583029,44769907 -g1,22785:6630773,44769907 -g1,22785:6630773,44769907 -g1,22785:32583029,44769907 -g1,22785:32583029,44769907 -) -h1,22785:6630773,44966515:0,0,0 -] -(1,22794:32583029,45706769:0,0,0 -g1,22794:32583029,45706769 -) -) -] -(1,22794:6630773,47279633:25952256,0,0 -h1,22794:6630773,47279633:25952256,0,0 -) -] -(1,22794:4262630,4025873:0,0,0 -[1,22794:-473656,4025873:0,0,0 -(1,22794:-473656,-710413:0,0,0 -(1,22794:-473656,-710413:0,0,0 -g1,22794:-473656,-710413 -) -g1,22794:-473656,-710413 -) -] -) -] -!30572 -}390 -Input:4318:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4319:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4320:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4321:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +] +g1,22792:6630773,4812305 +g1,22792:6630773,4812305 +g1,22792:8592265,4812305 +g1,22792:12111033,4812305 +g1,22792:15898358,4812305 +k1,22792:31387652,4812305:15489294 +) +) +] +[1,22792:6630773,45706769:25952256,40108032,0 +(1,22792:6630773,45706769:25952256,40108032,0 +(1,22792:6630773,45706769:0,0,0 +g1,22792:6630773,45706769 +) +[1,22792:6630773,45706769:25952256,40108032,0 +v1,22743:6630773,6254097:0,393216,0 +(1,22743:6630773,19653021:25952256,13792140,0 +g1,22743:6630773,19653021 +g1,22743:6237557,19653021 +r1,22792:6368629,19653021:131072,13792140,0 +g1,22743:6567858,19653021 +g1,22743:6764466,19653021 +[1,22743:6764466,19653021:25818563,13792140,0 +(1,22703:6764466,6374028:25818563,513147,126483 +k1,22702:8860144,6374028:282952 +k1,22702:9829257,6374028:282951 +k1,22702:10728247,6374028:282952 +k1,22702:12030283,6374028:282951 +k1,22702:13680316,6374028:282952 +k1,22702:14622559,6374028:282951 +k1,22702:16157904,6374028:282952 +k1,22702:18458710,6374028:282952 +k1,22702:20117262,6374028:282951 +k1,22702:21419299,6374028:282952 +k1,22702:23008383,6374028:282951 +k1,22702:25914741,6374028:282952 +k1,22702:26856984,6374028:282951 +k1,22702:28159021,6374028:282952 +k1,22702:30419849,6374028:282951 +k1,22702:31835263,6374028:282952 +k1,22702:32583029,6374028:0 +) +(1,22703:6764466,7239108:25818563,505283,7863 +k1,22703:32583029,7239108:24252908 +g1,22703:32583029,7239108 +) +v1,22705:6764466,7923963:0,393216,0 +(1,22711:6764466,9627750:25818563,2097003,196608 +g1,22711:6764466,9627750 +g1,22711:6764466,9627750 +g1,22711:6567858,9627750 +(1,22711:6567858,9627750:0,2097003,196608 +r1,22792:32779637,9627750:26211779,2293611,196608 +k1,22711:6567857,9627750:-26211780 +) +(1,22711:6567858,9627750:26211779,2097003,196608 +[1,22711:6764466,9627750:25818563,1900395,0 +(1,22707:6764466,8151794:25818563,424439,112852 +(1,22706:6764466,8151794:0,0,0 +g1,22706:6764466,8151794 +g1,22706:6764466,8151794 +g1,22706:6436786,8151794 +(1,22706:6436786,8151794:0,0,0 +) +g1,22706:6764466,8151794 +) +k1,22707:6764466,8151794:0 +g1,22707:11079868,8151794 +g1,22707:14731362,8151794 +g1,22707:17055040,8151794 +h1,22707:17386994,8151794:0,0,0 +k1,22707:32583029,8151794:15196035 +g1,22707:32583029,8151794 +) +(1,22708:6764466,8836649:25818563,424439,112852 +h1,22708:6764466,8836649:0,0,0 +g1,22708:7096420,8836649 +g1,22708:7428374,8836649 +g1,22708:11743775,8836649 +h1,22708:12075729,8836649:0,0,0 +k1,22708:32583029,8836649:20507300 +g1,22708:32583029,8836649 +) +(1,22709:6764466,9521504:25818563,424439,106246 +h1,22709:6764466,9521504:0,0,0 +g1,22709:7096420,9521504 +g1,22709:7428374,9521504 +g1,22709:14731361,9521504 +g1,22709:15395269,9521504 +g1,22709:15727223,9521504 +h1,22709:18050901,9521504:0,0,0 +k1,22709:32583029,9521504:14532128 +g1,22709:32583029,9521504 +) +] +) +g1,22711:32583029,9627750 +g1,22711:6764466,9627750 +g1,22711:6764466,9627750 +g1,22711:32583029,9627750 +g1,22711:32583029,9627750 +) +h1,22711:6764466,9824358:0,0,0 +(1,22715:6764466,10689438:25818563,505283,134348 +h1,22714:6764466,10689438:983040,0,0 +k1,22714:11335661,10689438:143583 +k1,22714:12288615,10689438:143584 +k1,22714:13451283,10689438:143583 +k1,22714:16151426,10689438:143584 +k1,22714:18304998,10689438:143583 +k1,22714:18804442,10689438:143584 +k1,22714:22561680,10689438:143583 +k1,22714:24823388,10689438:143584 +k1,22714:27051671,10689438:143583 +k1,22714:29810142,10689438:143584 +k1,22714:30636610,10689438:143583 +k1,22714:32583029,10689438:0 +) +(1,22715:6764466,11554518:25818563,505283,134348 +k1,22714:7750564,11554518:178695 +k1,22714:11041563,11554518:178694 +k1,22714:14089424,11554518:178695 +k1,22714:16728341,11554518:178695 +k1,22714:19094627,11554518:178694 +k1,22714:21061144,11554518:178695 +k1,22714:22332323,11554518:178694 +(1,22714:22332323,11554518:0,414482,115847 +r1,22792:22690589,11554518:358266,530329,115847 +k1,22714:22332323,11554518:-358266 +) +(1,22714:22332323,11554518:358266,414482,115847 +k1,22714:22332323,11554518:3277 +h1,22714:22687312,11554518:0,411205,112570 +) +k1,22714:23042954,11554518:178695 +k1,22714:23873077,11554518:178695 +k1,22714:26949118,11554518:178694 +k1,22714:28966753,11554518:178695 +k1,22714:32583029,11554518:0 +) +(1,22715:6764466,12419598:25818563,505283,126483 +k1,22714:8036756,12419598:179805 +(1,22714:8036756,12419598:0,414482,115847 +r1,22792:8395022,12419598:358266,530329,115847 +k1,22714:8036756,12419598:-358266 +) +(1,22714:8036756,12419598:358266,414482,115847 +k1,22714:8036756,12419598:3277 +h1,22714:8391745,12419598:0,411205,112570 +) +k1,22714:8748497,12419598:179805 +k1,22714:9746191,12419598:179805 +k1,22714:12001521,12419598:179805 +k1,22714:14210321,12419598:179805 +k1,22714:16508250,12419598:179805 +k1,22714:17679615,12419598:179805 +k1,22714:20675502,12419598:179805 +k1,22714:22865296,12419598:179805 +k1,22714:25283811,12419598:179805 +k1,22714:26863465,12419598:179805 +k1,22714:31563944,12419598:179805 +k1,22714:32583029,12419598:0 +) +(1,22715:6764466,13284678:25818563,513147,134348 +g1,22714:9939030,13284678 +g1,22714:13855461,13284678 +g1,22714:15158972,13284678 +g1,22714:16644017,13284678 +g1,22714:17591012,13284678 +k1,22715:32583029,13284678:13426362 +g1,22715:32583029,13284678 +) +v1,22717:6764466,13969533:0,393216,0 +(1,22721:6764466,14303610:25818563,727293,196608 +g1,22721:6764466,14303610 +g1,22721:6764466,14303610 +g1,22721:6567858,14303610 +(1,22721:6567858,14303610:0,727293,196608 +r1,22792:32779637,14303610:26211779,923901,196608 +k1,22721:6567857,14303610:-26211780 +) +(1,22721:6567858,14303610:26211779,727293,196608 +[1,22721:6764466,14303610:25818563,530685,0 +(1,22719:6764466,14197364:25818563,424439,106246 +(1,22718:6764466,14197364:0,0,0 +g1,22718:6764466,14197364 +g1,22718:6764466,14197364 +g1,22718:6436786,14197364 +(1,22718:6436786,14197364:0,0,0 +) +g1,22718:6764466,14197364 +) +g1,22719:7096420,14197364 +g1,22719:7428374,14197364 +g1,22719:12739638,14197364 +g1,22719:13403546,14197364 +h1,22719:20042625,14197364:0,0,0 +k1,22719:32583029,14197364:12540404 +g1,22719:32583029,14197364 +) +] +) +g1,22721:32583029,14303610 +g1,22721:6764466,14303610 +g1,22721:6764466,14303610 +g1,22721:32583029,14303610 +g1,22721:32583029,14303610 +) +h1,22721:6764466,14500218:0,0,0 +v1,22725:6764466,15185073:0,393216,0 +(1,22729:6764466,15519150:25818563,727293,196608 +g1,22729:6764466,15519150 +g1,22729:6764466,15519150 +g1,22729:6567858,15519150 +(1,22729:6567858,15519150:0,727293,196608 +r1,22792:32779637,15519150:26211779,923901,196608 +k1,22729:6567857,15519150:-26211780 +) +(1,22729:6567858,15519150:26211779,727293,196608 +[1,22729:6764466,15519150:25818563,530685,0 +(1,22727:6764466,15412904:25818563,424439,106246 +(1,22726:6764466,15412904:0,0,0 +g1,22726:6764466,15412904 +g1,22726:6764466,15412904 +g1,22726:6436786,15412904 +(1,22726:6436786,15412904:0,0,0 +) +g1,22726:6764466,15412904 +) +g1,22727:7096420,15412904 +g1,22727:7428374,15412904 +g1,22727:12739638,15412904 +g1,22727:13403546,15412904 +h1,22727:21038486,15412904:0,0,0 +k1,22727:32583029,15412904:11544543 +g1,22727:32583029,15412904 +) +] +) +g1,22729:32583029,15519150 +g1,22729:6764466,15519150 +g1,22729:6764466,15519150 +g1,22729:32583029,15519150 +g1,22729:32583029,15519150 +) +h1,22729:6764466,15715758:0,0,0 +(1,22733:6764466,16580838:25818563,505283,126483 +h1,22732:6764466,16580838:983040,0,0 +g1,22732:10881437,16580838 +g1,22732:14149062,16580838 +g1,22732:17877405,16580838 +g1,22732:18608131,16580838 +k1,22733:32583029,16580838:10803611 +g1,22733:32583029,16580838 +) +v1,22735:6764466,17265693:0,393216,0 +(1,22739:6764466,17599770:25818563,727293,196608 +g1,22739:6764466,17599770 +g1,22739:6764466,17599770 +g1,22739:6567858,17599770 +(1,22739:6567858,17599770:0,727293,196608 +r1,22792:32779637,17599770:26211779,923901,196608 +k1,22739:6567857,17599770:-26211780 +) +(1,22739:6567858,17599770:26211779,727293,196608 +[1,22739:6764466,17599770:25818563,530685,0 +(1,22737:6764466,17493524:25818563,424439,106246 +(1,22736:6764466,17493524:0,0,0 +g1,22736:6764466,17493524 +g1,22736:6764466,17493524 +g1,22736:6436786,17493524 +(1,22736:6436786,17493524:0,0,0 +) +g1,22736:6764466,17493524 +) +g1,22737:7096420,17493524 +g1,22737:7428374,17493524 +g1,22737:12739638,17493524 +g1,22737:13403546,17493524 +g1,22737:17718947,17493524 +g1,22737:18050901,17493524 +g1,22737:18382855,17493524 +h1,22737:21038487,17493524:0,0,0 +k1,22737:32583029,17493524:11544542 +g1,22737:32583029,17493524 +) +] +) +g1,22739:32583029,17599770 +g1,22739:6764466,17599770 +g1,22739:6764466,17599770 +g1,22739:32583029,17599770 +g1,22739:32583029,17599770 +) +h1,22739:6764466,17796378:0,0,0 +(1,22743:6764466,18661458:25818563,505283,134348 +h1,22742:6764466,18661458:983040,0,0 +k1,22742:10316874,18661458:293303 +k1,22742:11068275,18661458:293304 +k1,22742:12465860,18661458:293303 +k1,22742:13506929,18661458:293303 +k1,22742:17064581,18661458:293304 +k1,22742:18642390,18661458:293303 +k1,22742:21233386,18661458:293304 +k1,22742:23277156,18661458:293303 +k1,22742:24186497,18661458:293303 +k1,22742:27099930,18661458:293304 +k1,22742:29403878,18661458:293303 +k1,22742:32583029,18661458:0 +) +(1,22743:6764466,19526538:25818563,505283,126483 +g1,22742:8947470,19526538 +g1,22742:9917402,19526538 +g1,22742:13556616,19526538 +g1,22742:14747405,19526538 +k1,22743:32583029,19526538:15070005 +g1,22743:32583029,19526538 +) +] +g1,22743:32583029,19653021 +) +h1,22743:6630773,19653021:0,0,0 +(1,22746:6630773,20518101:25952256,513147,115847 +h1,22745:6630773,20518101:983040,0,0 +k1,22745:10563114,20518101:159433 +(1,22745:10563114,20518101:0,452978,115847 +r1,22792:13031651,20518101:2468537,568825,115847 +k1,22745:10563114,20518101:-2468537 +) +(1,22745:10563114,20518101:2468537,452978,115847 +k1,22745:10563114,20518101:3277 +h1,22745:13028374,20518101:0,411205,112570 +) +k1,22745:13191085,20518101:159434 +k1,22745:14557691,20518101:159433 +k1,22745:16230350,20518101:159433 +k1,22745:18245108,20518101:159434 +k1,22745:19055969,20518101:159433 +k1,22745:21054342,20518101:159433 +k1,22745:23224421,20518101:159434 +k1,22745:25422024,20518101:159433 +k1,22745:26197495,20518101:159433 +k1,22745:26712789,20518101:159434 +k1,22745:29557232,20518101:159433 +k1,22746:32583029,20518101:0 +) +(1,22746:6630773,21383181:25952256,513147,134348 +(1,22745:6630773,21383181:0,459977,115847 +r1,22792:9451022,21383181:2820249,575824,115847 +k1,22745:6630773,21383181:-2820249 +) +(1,22745:6630773,21383181:2820249,459977,115847 +k1,22745:6630773,21383181:3277 +h1,22745:9447745,21383181:0,411205,112570 +) +k1,22745:9804321,21383181:179629 +(1,22745:9804321,21383181:0,459977,115847 +r1,22792:12976281,21383181:3171960,575824,115847 +k1,22745:9804321,21383181:-3171960 +) +(1,22745:9804321,21383181:3171960,459977,115847 +k1,22745:9804321,21383181:3277 +h1,22745:12973004,21383181:0,411205,112570 +) +k1,22745:13155910,21383181:179629 +k1,22745:14526983,21383181:179628 +(1,22745:14526983,21383181:0,459977,115847 +r1,22792:18050655,21383181:3523672,575824,115847 +k1,22745:14526983,21383181:-3523672 +) +(1,22745:14526983,21383181:3523672,459977,115847 +k1,22745:14526983,21383181:3277 +h1,22745:18047378,21383181:0,411205,112570 +) +k1,22745:18230284,21383181:179629 +k1,22745:20091567,21383181:179629 +k1,22745:21290281,21383181:179629 +k1,22745:24946595,21383181:179629 +k1,22745:26393689,21383181:179628 +k1,22745:29547997,21383181:179629 +k1,22745:31923737,21383181:179629 +k1,22745:32583029,21383181:0 +) +(1,22746:6630773,22248261:25952256,513147,134348 +k1,22745:8501662,22248261:168919 +k1,22745:10854896,22248261:168919 +k1,22745:12898145,22248261:168919 +k1,22745:16092861,22248261:168919 +k1,22745:17366062,22248261:168919 +k1,22745:18282746,22248261:168918 +k1,22745:19964891,22248261:168919 +k1,22745:21831848,22248261:168919 +k1,22745:24573055,22248261:168919 +k1,22745:26349572,22248261:168919 +k1,22745:27169919,22248261:168919 +k1,22745:30071034,22248261:168919 +k1,22745:32583029,22248261:0 +) +(1,22746:6630773,23113341:25952256,513147,134348 +k1,22745:9868342,23113341:262890 +k1,22745:12327342,23113341:262889 +k1,22745:13537883,23113341:262890 +k1,22745:14819857,23113341:262889 +(1,22745:14819857,23113341:0,452978,115847 +r1,22792:16584970,23113341:1765113,568825,115847 +k1,22745:14819857,23113341:-1765113 +) +(1,22745:14819857,23113341:1765113,452978,115847 +k1,22745:14819857,23113341:3277 +h1,22745:16581693,23113341:0,411205,112570 +) +k1,22745:16847860,23113341:262890 +k1,22745:19897995,23113341:262889 +k1,22745:21227156,23113341:262890 +k1,22745:22149337,23113341:262889 +k1,22745:25206027,23113341:262890 +k1,22745:27712213,23113341:262889 +k1,22745:29529617,23113341:262890 +k1,22745:31391584,23113341:262889 +k1,22745:32583029,23113341:0 +) +(1,22746:6630773,23978421:25952256,513147,126483 +k1,22745:8280080,23978421:182611 +k1,22745:11437371,23978421:182612 +k1,22745:13804297,23978421:182611 +k1,22745:15544699,23978421:182611 +k1,22745:16831593,23978421:182612 +k1,22745:17935640,23978421:182611 +k1,22745:19065902,23978421:182611 +k1,22745:22083601,23978421:182612 +k1,22745:23779438,23978421:182611 +k1,22745:24613478,23978421:182612 +k1,22745:26725469,23978421:182611 +k1,22745:28752263,23978421:182611 +k1,22745:30944864,23978421:182612 +k1,22745:31483335,23978421:182611 +k1,22745:32583029,23978421:0 +) +(1,22746:6630773,24843501:25952256,452978,115847 +g1,22745:7481430,24843501 +(1,22745:7481430,24843501:0,452978,115847 +r1,22792:9246543,24843501:1765113,568825,115847 +k1,22745:7481430,24843501:-1765113 +) +(1,22745:7481430,24843501:1765113,452978,115847 +k1,22745:7481430,24843501:3277 +h1,22745:9243266,24843501:0,411205,112570 +) +k1,22746:32583029,24843501:23284058 +g1,22746:32583029,24843501 +) +v1,22748:6630773,25528356:0,393216,0 +(1,22761:6630773,28323426:25952256,3188286,196608 +g1,22761:6630773,28323426 +g1,22761:6630773,28323426 +g1,22761:6434165,28323426 +(1,22761:6434165,28323426:0,3188286,196608 +r1,22792:32779637,28323426:26345472,3384894,196608 +k1,22761:6434165,28323426:-26345472 +) +(1,22761:6434165,28323426:26345472,3188286,196608 +[1,22761:6630773,28323426:25952256,2991678,0 +(1,22750:6630773,25762793:25952256,431045,112852 +(1,22749:6630773,25762793:0,0,0 +g1,22749:6630773,25762793 +g1,22749:6630773,25762793 +g1,22749:6303093,25762793 +(1,22749:6303093,25762793:0,0,0 +) +g1,22749:6630773,25762793 +) +k1,22750:6630773,25762793:0 +g1,22750:12937898,25762793 +g1,22750:13601806,25762793 +g1,22750:15925484,25762793 +g1,22750:16921346,25762793 +k1,22750:16921346,25762793:0 +h1,22750:19245024,25762793:0,0,0 +k1,22750:32583029,25762793:13338005 +g1,22750:32583029,25762793 +) +(1,22754:6630773,26578720:25952256,424439,112852 +(1,22752:6630773,26578720:0,0,0 +g1,22752:6630773,26578720 +g1,22752:6630773,26578720 +g1,22752:6303093,26578720 +(1,22752:6303093,26578720:0,0,0 +) +g1,22752:6630773,26578720 +) +g1,22754:7626635,26578720 +g1,22754:8954451,26578720 +g1,22754:12937898,26578720 +g1,22754:13601806,26578720 +h1,22754:15593530,26578720:0,0,0 +k1,22754:32583030,26578720:16989500 +g1,22754:32583030,26578720 +) +(1,22756:6630773,27394647:25952256,431045,112852 +(1,22755:6630773,27394647:0,0,0 +g1,22755:6630773,27394647 +g1,22755:6630773,27394647 +g1,22755:6303093,27394647 +(1,22755:6303093,27394647:0,0,0 +) +g1,22755:6630773,27394647 +) +k1,22756:6630773,27394647:0 +g1,22756:12937898,27394647 +g1,22756:13601806,27394647 +g1,22756:15925484,27394647 +g1,22756:16921346,27394647 +k1,22756:16921346,27394647:0 +h1,22756:19245024,27394647:0,0,0 +k1,22756:32583029,27394647:13338005 +g1,22756:32583029,27394647 +) +(1,22760:6630773,28210574:25952256,424439,112852 +(1,22758:6630773,28210574:0,0,0 +g1,22758:6630773,28210574 +g1,22758:6630773,28210574 +g1,22758:6303093,28210574 +(1,22758:6303093,28210574:0,0,0 +) +g1,22758:6630773,28210574 +) +g1,22760:7626635,28210574 +g1,22760:8954451,28210574 +g1,22760:11610083,28210574 +g1,22760:12273991,28210574 +h1,22760:13933761,28210574:0,0,0 +k1,22760:32583029,28210574:18649268 +g1,22760:32583029,28210574 +) +] +) +g1,22761:32583029,28323426 +g1,22761:6630773,28323426 +g1,22761:6630773,28323426 +g1,22761:32583029,28323426 +g1,22761:32583029,28323426 +) +h1,22761:6630773,28520034:0,0,0 +v1,22765:6630773,29385114:0,393216,0 +(1,22768:6630773,33252259:25952256,4260361,0 +g1,22768:6630773,33252259 +g1,22768:6237557,33252259 +r1,22792:6368629,33252259:131072,4260361,0 +g1,22768:6567858,33252259 +g1,22768:6764466,33252259 +[1,22768:6764466,33252259:25818563,4260361,0 +(1,22766:6764466,29657591:25818563,665693,196608 +(1,22765:6764466,29657591:0,665693,196608 +r1,22792:7868133,29657591:1103667,862301,196608 +k1,22765:6764466,29657591:-1103667 +) +(1,22765:6764466,29657591:1103667,665693,196608 +) +k1,22765:8215835,29657591:347702 +k1,22765:9942053,29657591:327680 +k1,22765:12098549,29657591:347702 +k1,22765:13465336,29657591:347702 +k1,22765:15783706,29657591:347702 +k1,22765:18160403,29657591:347702 +k1,22765:18985862,29657591:347702 +k1,22765:20504037,29657591:347702 +k1,22765:21843299,29657591:347702 +k1,22765:24683334,29657591:347701 +k1,22765:26424987,29657591:347702 +k1,22765:27226049,29657591:347553 +k1,22765:28256636,29657591:347702 +k1,22765:29887533,29657591:347702 +k1,22766:32583029,29657591:0 +) +(1,22766:6764466,30522671:25818563,513147,134348 +(1,22765:6764466,30522671:0,459977,115847 +r1,22792:9936426,30522671:3171960,575824,115847 +k1,22765:6764466,30522671:-3171960 +) +(1,22765:6764466,30522671:3171960,459977,115847 +k1,22765:6764466,30522671:3277 +h1,22765:9933149,30522671:0,411205,112570 +) +g1,22765:10135655,30522671 +g1,22765:11467346,30522671 +g1,22765:14000967,30522671 +g1,22765:14947962,30522671 +g1,22765:17639525,30522671 +g1,22765:18490182,30522671 +g1,22765:20033554,30522671 +g1,22765:23334602,30522671 +g1,22765:25317721,30522671 +g1,22765:26305348,30522671 +g1,22765:27892630,30522671 +k1,22766:32583029,30522671:3139818 +g1,22766:32583029,30522671 +) +(1,22768:6764466,31387751:25818563,513147,134348 +h1,22767:6764466,31387751:983040,0,0 +k1,22767:9279322,31387751:234203 +k1,22767:10907475,31387751:234202 +k1,22767:14167475,31387751:234203 +(1,22767:14167475,31387751:0,459977,115847 +r1,22792:16987724,31387751:2820249,575824,115847 +k1,22767:14167475,31387751:-2820249 +) +(1,22767:14167475,31387751:2820249,459977,115847 +k1,22767:14167475,31387751:3277 +h1,22767:16984447,31387751:0,411205,112570 +) +k1,22767:17395596,31387751:234202 +(1,22767:17395596,31387751:0,459977,115847 +r1,22792:20567556,31387751:3171960,575824,115847 +k1,22767:17395596,31387751:-3171960 +) +(1,22767:17395596,31387751:3171960,459977,115847 +k1,22767:17395596,31387751:3277 +h1,22767:20564279,31387751:0,411205,112570 +) +k1,22767:20801759,31387751:234203 +k1,22767:22227406,31387751:234202 +(1,22767:22227406,31387751:0,459977,115847 +r1,22792:25751078,31387751:3523672,575824,115847 +k1,22767:22227406,31387751:-3523672 +) +(1,22767:22227406,31387751:3523672,459977,115847 +k1,22767:22227406,31387751:3277 +h1,22767:25747801,31387751:0,411205,112570 +) +k1,22767:26158951,31387751:234203 +k1,22767:29820686,31387751:234202 +k1,22767:32583029,31387751:0 +) +(1,22768:6764466,32252831:25818563,513147,134348 +k1,22767:8653323,32252831:172469 +k1,22767:9485084,32252831:172469 +k1,22767:11220586,32252831:172468 +k1,22767:12660521,32252831:172469 +k1,22767:15807669,32252831:172469 +k1,22767:18176249,32252831:172469 +k1,22767:19008010,32252831:172469 +k1,22767:21942822,32252831:172469 +k1,22767:24433954,32252831:172468 +k1,22767:26000374,32252831:172469 +k1,22767:28935186,32252831:172469 +k1,22767:31923737,32252831:172469 +k1,22767:32583029,32252831:0 +) +(1,22768:6764466,33117911:25818563,505283,134348 +g1,22767:8921911,33117911 +k1,22768:32583028,33117911:22670868 +g1,22768:32583028,33117911 +) +] +g1,22768:32583029,33252259 +) +h1,22768:6630773,33252259:0,0,0 +(1,22771:6630773,34117339:25952256,513147,126483 +h1,22770:6630773,34117339:983040,0,0 +k1,22770:8324485,34117339:240779 +k1,22770:9096762,34117339:240780 +k1,22770:10623357,34117339:240779 +k1,22770:13494096,34117339:240779 +k1,22770:14386303,34117339:240779 +k1,22770:17837036,34117339:240780 +k1,22770:19096900,34117339:240779 +k1,22770:21018022,34117339:240779 +k1,22770:21918093,34117339:240779 +k1,22770:25000514,34117339:240780 +k1,22770:26097849,34117339:240779 +k1,22770:26954666,34117339:240779 +k1,22770:28580221,34117339:240779 +k1,22770:29840086,34117339:240780 +k1,22770:31923737,34117339:240779 +k1,22770:32583029,34117339:0 +) +(1,22771:6630773,34982419:25952256,513147,134348 +k1,22770:10302874,34982419:194761 +k1,22770:11765101,34982419:194761 +k1,22770:12315722,34982419:194761 +k1,22770:13793678,34982419:194761 +k1,22770:17602094,34982419:194761 +k1,22770:20468759,34982419:194762 +k1,22770:21472890,34982419:194761 +k1,22770:22686736,34982419:194761 +k1,22770:23677104,34982419:194761 +k1,22770:27906261,34982419:194761 +k1,22770:28760314,34982419:194761 +k1,22770:32583029,34982419:0 +) +(1,22771:6630773,35847499:25952256,513147,134348 +k1,22770:8372337,35847499:223095 +k1,22770:12365719,35847499:223096 +k1,22770:13580374,35847499:223095 +k1,22770:17108450,35847499:223095 +k1,22770:18844772,35847499:223096 +k1,22770:19754029,35847499:223095 +k1,22770:21821307,35847499:223095 +k1,22770:22660441,35847499:223096 +k1,22770:24664805,35847499:223095 +k1,22770:26268744,35847499:223095 +k1,22770:27023337,35847499:223096 +k1,22770:30024503,35847499:223095 +k1,22770:32583029,35847499:0 +) +(1,22771:6630773,36712579:25952256,513147,134348 +g1,22770:7922487,36712579 +g1,22770:8781008,36712579 +g1,22770:11392617,36712579 +g1,22770:12783291,36712579 +k1,22771:32583029,36712579:16096955 +g1,22771:32583029,36712579 +) +(1,22773:6630773,37577659:25952256,505283,126483 +h1,22772:6630773,37577659:983040,0,0 +k1,22772:10608064,37577659:204383 +(1,22772:10608064,37577659:0,452978,115847 +r1,22792:13428313,37577659:2820249,568825,115847 +k1,22772:10608064,37577659:-2820249 +) +(1,22772:10608064,37577659:2820249,452978,115847 +k1,22772:10608064,37577659:3277 +h1,22772:13425036,37577659:0,411205,112570 +) +k1,22772:13632696,37577659:204383 +k1,22772:14941362,37577659:204384 +k1,22772:15893511,37577659:204383 +k1,22772:17611120,37577659:204383 +k1,22772:18466931,37577659:204383 +k1,22772:21881267,37577659:204383 +k1,22772:24927292,37577659:204384 +k1,22772:25814560,37577659:204383 +k1,22772:29789229,37577659:204383 +k1,22772:32583029,37577659:0 +) +(1,22773:6630773,38442739:25952256,505283,134348 +k1,22772:7432800,38442739:185989 +(1,22772:7432800,38442739:0,452978,115847 +r1,22792:8846202,38442739:1413402,568825,115847 +k1,22772:7432800,38442739:-1413402 +) +(1,22772:7432800,38442739:1413402,452978,115847 +g1,22772:8491213,38442739 +h1,22772:8842925,38442739:0,411205,112570 +) +k1,22772:9032192,38442739:185990 +k1,22772:9979709,38442739:185989 +k1,22772:11674338,38442739:185990 +k1,22772:13714341,38442739:185989 +k1,22772:14646785,38442739:185989 +k1,22772:16701206,38442739:185990 +k1,22772:18171701,38442739:185989 +k1,22772:19376776,38442739:185990 +k1,22772:22635093,38442739:185989 +k1,22772:23472510,38442739:185989 +(1,22772:23472510,38442739:0,452978,115847 +r1,22792:26292759,38442739:2820249,568825,115847 +k1,22772:23472510,38442739:-2820249 +) +(1,22772:23472510,38442739:2820249,452978,115847 +k1,22772:23472510,38442739:3277 +h1,22772:26289482,38442739:0,411205,112570 +) +k1,22772:26478749,38442739:185990 +k1,22772:28525305,38442739:185989 +k1,22772:29362723,38442739:185990 +k1,22772:30296478,38442739:185989 +k1,22772:32583029,38442739:0 +) +(1,22773:6630773,39307819:25952256,505283,126483 +k1,22772:7578580,39307819:261645 +k1,22772:8610927,39307819:261644 +k1,22772:12486227,39307819:261645 +k1,22772:13363909,39307819:261644 +k1,22772:14828795,39307819:261645 +k1,22772:17751856,39307819:261644 +k1,22772:18369361,39307819:261645 +k1,22772:20235983,39307819:261645 +(1,22772:20235983,39307819:0,414482,115847 +r1,22792:20594249,39307819:358266,530329,115847 +k1,22772:20235983,39307819:-358266 +) +(1,22772:20235983,39307819:358266,414482,115847 +k1,22772:20235983,39307819:3277 +h1,22772:20590972,39307819:0,411205,112570 +) +k1,22772:21029563,39307819:261644 +k1,22772:23460450,39307819:261645 +k1,22772:24077954,39307819:261644 +k1,22772:26127421,39307819:261645 +k1,22772:29024268,39307819:261644 +k1,22772:31414522,39307819:261645 +k1,22773:32583029,39307819:0 +) +(1,22773:6630773,40172899:25952256,513147,126483 +k1,22772:10029961,40172899:267878 +k1,22772:10763801,40172899:267879 +k1,22772:12050764,40172899:267878 +k1,22772:16088929,40172899:267879 +k1,22772:18694476,40172899:267878 +k1,22772:21977666,40172899:267879 +k1,22772:23942271,40172899:267878 +k1,22772:25342611,40172899:267878 +k1,22772:26358256,40172899:267879 +k1,22772:29464498,40172899:267878 +k1,22772:30680028,40172899:267879 +k1,22772:31563944,40172899:267878 +k1,22772:32583029,40172899:0 +) +(1,22773:6630773,41037979:25952256,505283,126483 +g1,22772:10887336,41037979 +g1,22772:13038227,41037979 +g1,22772:14679903,41037979 +g1,22772:15495170,41037979 +(1,22772:15495170,41037979:0,452978,115847 +r1,22792:16908571,41037979:1413401,568825,115847 +k1,22772:15495170,41037979:-1413401 +) +(1,22772:15495170,41037979:1413401,452978,115847 +k1,22772:15495170,41037979:3277 +h1,22772:16905294,41037979:0,411205,112570 +) +g1,22772:17281470,41037979 +g1,22772:19551637,41037979 +g1,22772:21760855,41037979 +g1,22772:22315944,41037979 +g1,22772:23614867,41037979 +g1,22772:24465524,41037979 +(1,22772:24465524,41037979:0,452978,115847 +r1,22792:26230637,41037979:1765113,568825,115847 +k1,22772:24465524,41037979:-1765113 +) +(1,22772:24465524,41037979:1765113,452978,115847 +k1,22772:24465524,41037979:3277 +h1,22772:26227360,41037979:0,411205,112570 +) +k1,22773:32583029,41037979:6299964 +g1,22773:32583029,41037979 +) +v1,22775:6630773,41722834:0,393216,0 +(1,22783:6630773,44769907:25952256,3440289,196608 +g1,22783:6630773,44769907 +g1,22783:6630773,44769907 +g1,22783:6434165,44769907 +(1,22783:6434165,44769907:0,3440289,196608 +r1,22792:32779637,44769907:26345472,3636897,196608 +k1,22783:6434165,44769907:-26345472 +) +(1,22783:6434165,44769907:26345472,3440289,196608 +[1,22783:6630773,44769907:25952256,3243681,0 +(1,22777:6630773,41950665:25952256,424439,112852 +(1,22776:6630773,41950665:0,0,0 +g1,22776:6630773,41950665 +g1,22776:6630773,41950665 +g1,22776:6303093,41950665 +(1,22776:6303093,41950665:0,0,0 +) +g1,22776:6630773,41950665 +) +k1,22777:6630773,41950665:0 +g1,22777:10946175,41950665 +g1,22777:14597669,41950665 +g1,22777:16921347,41950665 +h1,22777:17253301,41950665:0,0,0 +k1,22777:32583029,41950665:15329728 +g1,22777:32583029,41950665 +) +(1,22778:6630773,42635520:25952256,424439,112852 +h1,22778:6630773,42635520:0,0,0 +g1,22778:6962727,42635520 +g1,22778:7294681,42635520 +g1,22778:11610082,42635520 +h1,22778:11942036,42635520:0,0,0 +k1,22778:32583028,42635520:20640992 +g1,22778:32583028,42635520 +) +(1,22779:6630773,43320375:25952256,424439,106246 +h1,22779:6630773,43320375:0,0,0 +g1,22779:6962727,43320375 +g1,22779:7294681,43320375 +g1,22779:10946175,43320375 +g1,22779:11610083,43320375 +g1,22779:17585255,43320375 +k1,22779:17585255,43320375:0 +h1,22779:23892380,43320375:0,0,0 +k1,22779:32583029,43320375:8690649 +g1,22779:32583029,43320375 +) +(1,22780:6630773,44005230:25952256,424439,106246 +h1,22780:6630773,44005230:0,0,0 +g1,22780:6962727,44005230 +g1,22780:7294681,44005230 +g1,22780:7626635,44005230 +g1,22780:7958589,44005230 +g1,22780:8290543,44005230 +g1,22780:8622497,44005230 +g1,22780:8954451,44005230 +g1,22780:11942036,44005230 +g1,22780:12605944,44005230 +g1,22780:16921346,44005230 +k1,22780:16921346,44005230:0 +h1,22780:25220195,44005230:0,0,0 +k1,22780:32583029,44005230:7362834 +g1,22780:32583029,44005230 +) +(1,22781:6630773,44690085:25952256,424439,79822 +h1,22781:6630773,44690085:0,0,0 +g1,22781:6962727,44690085 +g1,22781:7294681,44690085 +g1,22781:7626635,44690085 +g1,22781:7958589,44690085 +g1,22781:8290543,44690085 +g1,22781:8622497,44690085 +g1,22781:8954451,44690085 +h1,22781:9286405,44690085:0,0,0 +k1,22781:32583029,44690085:23296624 +g1,22781:32583029,44690085 +) +] +) +g1,22783:32583029,44769907 +g1,22783:6630773,44769907 +g1,22783:6630773,44769907 +g1,22783:32583029,44769907 +g1,22783:32583029,44769907 +) +h1,22783:6630773,44966515:0,0,0 +] +(1,22792:32583029,45706769:0,0,0 +g1,22792:32583029,45706769 +) +) +] +(1,22792:6630773,47279633:25952256,0,0 +h1,22792:6630773,47279633:25952256,0,0 +) +] +(1,22792:4262630,4025873:0,0,0 +[1,22792:-473656,4025873:0,0,0 +(1,22792:-473656,-710413:0,0,0 +(1,22792:-473656,-710413:0,0,0 +g1,22792:-473656,-710413 +) +g1,22792:-473656,-710413 +) +] +) +] +!30511 +}391 Input:4322:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4323:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4324:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4325:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4326:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{391 -[1,22851:4262630,47279633:28320399,43253760,0 -(1,22851:4262630,4025873:0,0,0 -[1,22851:-473656,4025873:0,0,0 -(1,22851:-473656,-710413:0,0,0 -(1,22851:-473656,-644877:0,0,0 -k1,22851:-473656,-644877:-65536 +{392 +[1,22849:4262630,47279633:28320399,43253760,0 +(1,22849:4262630,4025873:0,0,0 +[1,22849:-473656,4025873:0,0,0 +(1,22849:-473656,-710413:0,0,0 +(1,22849:-473656,-644877:0,0,0 +k1,22849:-473656,-644877:-65536 ) -(1,22851:-473656,4736287:0,0,0 -k1,22851:-473656,4736287:5209943 +(1,22849:-473656,4736287:0,0,0 +k1,22849:-473656,4736287:5209943 ) -g1,22851:-473656,-710413 +g1,22849:-473656,-710413 ) ] ) -[1,22851:6630773,47279633:25952256,43253760,0 -[1,22851:6630773,4812305:25952256,786432,0 -(1,22851:6630773,4812305:25952256,513147,126483 -(1,22851:6630773,4812305:25952256,513147,126483 -g1,22851:3078558,4812305 -[1,22851:3078558,4812305:0,0,0 -(1,22851:3078558,2439708:0,1703936,0 -k1,22851:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22851:2537886,2439708:1179648,16384,0 +[1,22849:6630773,47279633:25952256,43253760,0 +[1,22849:6630773,4812305:25952256,786432,0 +(1,22849:6630773,4812305:25952256,513147,126483 +(1,22849:6630773,4812305:25952256,513147,126483 +g1,22849:3078558,4812305 +[1,22849:3078558,4812305:0,0,0 +(1,22849:3078558,2439708:0,1703936,0 +k1,22849:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22849:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22851:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22849:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22851:3078558,4812305:0,0,0 -(1,22851:3078558,2439708:0,1703936,0 -g1,22851:29030814,2439708 -g1,22851:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22851:36151628,1915420:16384,1179648,0 +[1,22849:3078558,4812305:0,0,0 +(1,22849:3078558,2439708:0,1703936,0 +g1,22849:29030814,2439708 +g1,22849:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22849:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22851:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22849:37855564,2439708:1179648,16384,0 ) ) -k1,22851:3078556,2439708:-34777008 +k1,22849:3078556,2439708:-34777008 ) ] -[1,22851:3078558,4812305:0,0,0 -(1,22851:3078558,49800853:0,16384,2228224 -k1,22851:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22851:2537886,49800853:1179648,16384,0 +[1,22849:3078558,4812305:0,0,0 +(1,22849:3078558,49800853:0,16384,2228224 +k1,22849:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22849:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22851:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22849:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22851:3078558,4812305:0,0,0 -(1,22851:3078558,49800853:0,16384,2228224 -g1,22851:29030814,49800853 -g1,22851:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22851:36151628,51504789:16384,1179648,0 +[1,22849:3078558,4812305:0,0,0 +(1,22849:3078558,49800853:0,16384,2228224 +g1,22849:29030814,49800853 +g1,22849:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22849:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22851:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22849:37855564,49800853:1179648,16384,0 ) ) -k1,22851:3078556,49800853:-34777008 +k1,22849:3078556,49800853:-34777008 ) ] -g1,22851:6630773,4812305 -k1,22851:21386205,4812305:13560055 -g1,22851:21999622,4812305 -g1,22851:25611966,4812305 -g1,22851:28956923,4812305 -g1,22851:29772190,4812305 +g1,22849:6630773,4812305 +k1,22849:21386205,4812305:13560055 +g1,22849:21999622,4812305 +g1,22849:25611966,4812305 +g1,22849:28956923,4812305 +g1,22849:29772190,4812305 ) ) ] -[1,22851:6630773,45706769:25952256,40108032,0 -(1,22851:6630773,45706769:25952256,40108032,0 -(1,22851:6630773,45706769:0,0,0 -g1,22851:6630773,45706769 +[1,22849:6630773,45706769:25952256,40108032,0 +(1,22849:6630773,45706769:25952256,40108032,0 +(1,22849:6630773,45706769:0,0,0 +g1,22849:6630773,45706769 ) -[1,22851:6630773,45706769:25952256,40108032,0 -(1,22788:6630773,14682403:25952256,9083666,0 -k1,22788:10523651,14682403:3892878 -h1,22787:10523651,14682403:0,0,0 -(1,22787:10523651,14682403:18166500,9083666,0 -(1,22787:10523651,14682403:18167376,9083688,0 -(1,22787:10523651,14682403:18167376,9083688,0 -(1,22787:10523651,14682403:0,9083688,0 -(1,22787:10523651,14682403:0,14208860,0 -(1,22787:10523651,14682403:28417720,14208860,0 +[1,22849:6630773,45706769:25952256,40108032,0 +(1,22786:6630773,14682403:25952256,9083666,0 +k1,22786:10523651,14682403:3892878 +h1,22785:10523651,14682403:0,0,0 +(1,22785:10523651,14682403:18166500,9083666,0 +(1,22785:10523651,14682403:18167376,9083688,0 +(1,22785:10523651,14682403:18167376,9083688,0 +(1,22785:10523651,14682403:0,9083688,0 +(1,22785:10523651,14682403:0,14208860,0 +(1,22785:10523651,14682403:28417720,14208860,0 ) -k1,22787:10523651,14682403:-28417720 -) -) -g1,22787:28691027,14682403 -) -) -) -g1,22788:28690151,14682403 -k1,22788:32583029,14682403:3892878 -) -(1,22795:6630773,15547483:25952256,513147,134348 -h1,22794:6630773,15547483:983040,0,0 -g1,22794:8440877,15547483 -g1,22794:9659191,15547483 -g1,22794:11225501,15547483 -g1,22794:12091886,15547483 -(1,22794:12091886,15547483:0,452978,115847 -r1,22851:16318982,15547483:4227096,568825,115847 -k1,22794:12091886,15547483:-4227096 -) -(1,22794:12091886,15547483:4227096,452978,115847 -k1,22794:12091886,15547483:3277 -h1,22794:16315705,15547483:0,411205,112570 -) -g1,22794:16518211,15547483 -g1,22794:17073300,15547483 -g1,22794:19431285,15547483 -g1,22794:20624040,15547483 -g1,22794:21927551,15547483 -g1,22794:22874546,15547483 -g1,22794:25279062,15547483 -g1,22794:26164453,15547483 -k1,22795:32583029,15547483:3293820 -g1,22795:32583029,15547483 -) -v1,22797:6630773,16232338:0,393216,0 -(1,22805:6630773,19279411:25952256,3440289,196608 -g1,22805:6630773,19279411 -g1,22805:6630773,19279411 -g1,22805:6434165,19279411 -(1,22805:6434165,19279411:0,3440289,196608 -r1,22851:32779637,19279411:26345472,3636897,196608 -k1,22805:6434165,19279411:-26345472 -) -(1,22805:6434165,19279411:26345472,3440289,196608 -[1,22805:6630773,19279411:25952256,3243681,0 -(1,22799:6630773,16460169:25952256,424439,112852 -(1,22798:6630773,16460169:0,0,0 -g1,22798:6630773,16460169 -g1,22798:6630773,16460169 -g1,22798:6303093,16460169 -(1,22798:6303093,16460169:0,0,0 -) -g1,22798:6630773,16460169 -) -k1,22799:6630773,16460169:0 -g1,22799:10946175,16460169 -g1,22799:14597669,16460169 -g1,22799:16921347,16460169 -h1,22799:17253301,16460169:0,0,0 -k1,22799:32583029,16460169:15329728 -g1,22799:32583029,16460169 -) -(1,22800:6630773,17145024:25952256,424439,112852 -h1,22800:6630773,17145024:0,0,0 -g1,22800:6962727,17145024 -g1,22800:7294681,17145024 -g1,22800:11610082,17145024 -h1,22800:11942036,17145024:0,0,0 -k1,22800:32583028,17145024:20640992 -g1,22800:32583028,17145024 -) -(1,22801:6630773,17829879:25952256,424439,106246 -h1,22801:6630773,17829879:0,0,0 -g1,22801:6962727,17829879 -g1,22801:7294681,17829879 -g1,22801:10946175,17829879 -g1,22801:11610083,17829879 -g1,22801:18913070,17829879 -g1,22801:20240886,17829879 -g1,22801:22896518,17829879 -g1,22801:23560426,17829879 -k1,22801:23560426,17829879:0 -h1,22801:29203643,17829879:0,0,0 -k1,22801:32583029,17829879:3379386 -g1,22801:32583029,17829879 -) -(1,22802:6630773,18514734:25952256,424439,106246 -h1,22802:6630773,18514734:0,0,0 -g1,22802:6962727,18514734 -g1,22802:7294681,18514734 -g1,22802:7626635,18514734 -g1,22802:7958589,18514734 -g1,22802:8290543,18514734 -g1,22802:8622497,18514734 -g1,22802:8954451,18514734 -g1,22802:11942036,18514734 -g1,22802:12605944,18514734 -g1,22802:18249161,18514734 -g1,22802:20240885,18514734 -g1,22802:23560425,18514734 -g1,22802:24224333,18514734 -k1,22802:24224333,18514734:0 -h1,22802:31859274,18514734:0,0,0 -k1,22802:32583029,18514734:723755 -g1,22802:32583029,18514734 -) -(1,22803:6630773,19199589:25952256,424439,79822 -h1,22803:6630773,19199589:0,0,0 -g1,22803:6962727,19199589 -g1,22803:7294681,19199589 -g1,22803:7626635,19199589 -g1,22803:7958589,19199589 -g1,22803:8290543,19199589 -g1,22803:8622497,19199589 -g1,22803:8954451,19199589 -h1,22803:9286405,19199589:0,0,0 -k1,22803:32583029,19199589:23296624 -g1,22803:32583029,19199589 -) -] -) -g1,22805:32583029,19279411 -g1,22805:6630773,19279411 -g1,22805:6630773,19279411 -g1,22805:32583029,19279411 -g1,22805:32583029,19279411 -) -h1,22805:6630773,19476019:0,0,0 -(1,22808:6630773,28625221:25952256,9083666,0 -k1,22808:10523651,28625221:3892878 -h1,22807:10523651,28625221:0,0,0 -(1,22807:10523651,28625221:18166500,9083666,0 -(1,22807:10523651,28625221:18167376,9083688,0 -(1,22807:10523651,28625221:18167376,9083688,0 -(1,22807:10523651,28625221:0,9083688,0 -(1,22807:10523651,28625221:0,14208860,0 -(1,22807:10523651,28625221:28417720,14208860,0 -) -k1,22807:10523651,28625221:-28417720 -) -) -g1,22807:28691027,28625221 -) -) -) -g1,22808:28690151,28625221 -k1,22808:32583029,28625221:3892878 -) -(1,22815:6630773,29490301:25952256,513147,126483 -h1,22814:6630773,29490301:983040,0,0 -k1,22814:8835404,29490301:179569 -k1,22814:11850059,29490301:179568 -k1,22814:15902806,29490301:179569 -k1,22814:17186657,29490301:179569 -k1,22814:18113991,29490301:179568 -k1,22814:19806786,29490301:179569 -k1,22814:20637783,29490301:179569 -k1,22814:23754019,29490301:179568 -k1,22814:24704291,29490301:179569 -k1,22814:28323845,29490301:179569 -k1,22814:30513402,29490301:179568 -k1,22814:31048831,29490301:179569 -k1,22815:32583029,29490301:0 -) -(1,22815:6630773,30355381:25952256,513147,134348 -k1,22814:8120032,30355381:221793 -k1,22814:10196493,30355381:221792 -k1,22814:11227656,30355381:221793 -k1,22814:12468533,30355381:221792 -k1,22814:16092955,30355381:221793 -k1,22814:18693704,30355381:221792 -k1,22814:20186895,30355381:221793 -k1,22814:21775768,30355381:221792 -k1,22814:22656853,30355381:221793 -k1,22814:25321827,30355381:221792 -k1,22814:26075117,30355381:221793 -k1,22814:26948337,30355381:221792 -k1,22814:29604137,30355381:221793 -k1,22814:30845014,30355381:221792 -k1,22814:32583029,30355381:0 -) -(1,22815:6630773,31220461:25952256,513147,134348 -g1,22814:7489294,31220461 -g1,22814:8707608,31220461 -g1,22814:10866363,31220461 -g1,22814:13270879,31220461 -g1,22814:14156270,31220461 -g1,22814:15126202,31220461 -g1,22814:18571429,31220461 -g1,22814:20338279,31220461 -g1,22814:22547497,31220461 -g1,22814:23102586,31220461 -k1,22815:32583029,31220461:6732519 -g1,22815:32583029,31220461 -) -v1,22817:6630773,31905316:0,393216,0 -(1,22842:6630773,40408340:25952256,8896240,196608 -g1,22842:6630773,40408340 -g1,22842:6630773,40408340 -g1,22842:6434165,40408340 -(1,22842:6434165,40408340:0,8896240,196608 -r1,22851:32779637,40408340:26345472,9092848,196608 -k1,22842:6434165,40408340:-26345472 -) -(1,22842:6434165,40408340:26345472,8896240,196608 -[1,22842:6630773,40408340:25952256,8699632,0 -(1,22819:6630773,32139753:25952256,431045,106246 -(1,22818:6630773,32139753:0,0,0 -g1,22818:6630773,32139753 -g1,22818:6630773,32139753 -g1,22818:6303093,32139753 -(1,22818:6303093,32139753:0,0,0 -) -g1,22818:6630773,32139753 -) -g1,22819:10946174,32139753 -g1,22819:11942036,32139753 -g1,22819:15925483,32139753 -h1,22819:16257437,32139753:0,0,0 -k1,22819:32583029,32139753:16325592 -g1,22819:32583029,32139753 -) -(1,22820:6630773,32824608:25952256,424439,106246 -h1,22820:6630773,32824608:0,0,0 -g1,22820:6962727,32824608 -g1,22820:7294681,32824608 -k1,22820:7294681,32824608:0 -h1,22820:16921346,32824608:0,0,0 -k1,22820:32583029,32824608:15661683 -g1,22820:32583029,32824608 -) -(1,22821:6630773,33509463:25952256,424439,79822 -h1,22821:6630773,33509463:0,0,0 -h1,22821:6962727,33509463:0,0,0 -k1,22821:32583029,33509463:25620302 -g1,22821:32583029,33509463 -) -(1,22822:6630773,34194318:25952256,0,0 -h1,22822:6630773,34194318:0,0,0 -h1,22822:6630773,34194318:0,0,0 -k1,22822:32583029,34194318:25952256 -g1,22822:32583029,34194318 -) -(1,22823:6630773,34879173:25952256,424439,6605 -h1,22823:6630773,34879173:0,0,0 -g1,22823:7294681,34879173 -g1,22823:8290543,34879173 -g1,22823:10614221,34879173 -g1,22823:11610083,34879173 -h1,22823:14597668,34879173:0,0,0 -k1,22823:32583028,34879173:17985360 -g1,22823:32583028,34879173 -) -(1,22824:6630773,35564028:25952256,0,0 -h1,22824:6630773,35564028:0,0,0 -h1,22824:6630773,35564028:0,0,0 -k1,22824:32583029,35564028:25952256 -g1,22824:32583029,35564028 -) -(1,22825:6630773,36248883:25952256,424439,106246 -h1,22825:6630773,36248883:0,0,0 -k1,22825:6630773,36248883:0 -h1,22825:14597667,36248883:0,0,0 -k1,22825:32583029,36248883:17985362 -g1,22825:32583029,36248883 -) -(1,22829:6630773,37064810:25952256,424439,79822 -(1,22827:6630773,37064810:0,0,0 -g1,22827:6630773,37064810 -g1,22827:6630773,37064810 -g1,22827:6303093,37064810 -(1,22827:6303093,37064810:0,0,0 -) -g1,22827:6630773,37064810 -) -g1,22829:7626635,37064810 -g1,22829:8954451,37064810 -h1,22829:13601806,37064810:0,0,0 -k1,22829:32583030,37064810:18981224 -g1,22829:32583030,37064810 -) -(1,22831:6630773,37880737:25952256,424439,106246 -(1,22830:6630773,37880737:0,0,0 -g1,22830:6630773,37880737 -g1,22830:6630773,37880737 -g1,22830:6303093,37880737 -(1,22830:6303093,37880737:0,0,0 -) -g1,22830:6630773,37880737 -) -k1,22831:6630773,37880737:0 -g1,22831:11610082,37880737 -g1,22831:12273990,37880737 -h1,22831:12937898,37880737:0,0,0 -k1,22831:32583030,37880737:19645132 -g1,22831:32583030,37880737 -) -(1,22835:6630773,38696664:25952256,424439,79822 -(1,22833:6630773,38696664:0,0,0 -g1,22833:6630773,38696664 -g1,22833:6630773,38696664 -g1,22833:6303093,38696664 -(1,22833:6303093,38696664:0,0,0 -) -g1,22833:6630773,38696664 -) -g1,22835:7626635,38696664 -g1,22835:8954451,38696664 -g1,22835:9950313,38696664 -g1,22835:10614221,38696664 -h1,22835:11278129,38696664:0,0,0 -k1,22835:32583029,38696664:21304900 -g1,22835:32583029,38696664 -) -(1,22837:6630773,39512591:25952256,424439,106246 -(1,22836:6630773,39512591:0,0,0 -g1,22836:6630773,39512591 -g1,22836:6630773,39512591 -g1,22836:6303093,39512591 -(1,22836:6303093,39512591:0,0,0 -) -g1,22836:6630773,39512591 -) -k1,22837:6630773,39512591:0 -h1,22837:11610082,39512591:0,0,0 -k1,22837:32583030,39512591:20972948 -g1,22837:32583030,39512591 -) -(1,22841:6630773,40328518:25952256,424439,79822 -(1,22839:6630773,40328518:0,0,0 -g1,22839:6630773,40328518 -g1,22839:6630773,40328518 -g1,22839:6303093,40328518 -(1,22839:6303093,40328518:0,0,0 +k1,22785:10523651,14682403:-28417720 +) +) +g1,22785:28691027,14682403 +) +) +) +g1,22786:28690151,14682403 +k1,22786:32583029,14682403:3892878 +) +(1,22793:6630773,15547483:25952256,513147,134348 +h1,22792:6630773,15547483:983040,0,0 +g1,22792:8440877,15547483 +g1,22792:9659191,15547483 +g1,22792:11225501,15547483 +g1,22792:12091886,15547483 +(1,22792:12091886,15547483:0,452978,115847 +r1,22849:16318982,15547483:4227096,568825,115847 +k1,22792:12091886,15547483:-4227096 +) +(1,22792:12091886,15547483:4227096,452978,115847 +k1,22792:12091886,15547483:3277 +h1,22792:16315705,15547483:0,411205,112570 +) +g1,22792:16518211,15547483 +g1,22792:17073300,15547483 +g1,22792:19431285,15547483 +g1,22792:20624040,15547483 +g1,22792:21927551,15547483 +g1,22792:22874546,15547483 +g1,22792:25279062,15547483 +g1,22792:26164453,15547483 +k1,22793:32583029,15547483:3293820 +g1,22793:32583029,15547483 +) +v1,22795:6630773,16232338:0,393216,0 +(1,22803:6630773,19279411:25952256,3440289,196608 +g1,22803:6630773,19279411 +g1,22803:6630773,19279411 +g1,22803:6434165,19279411 +(1,22803:6434165,19279411:0,3440289,196608 +r1,22849:32779637,19279411:26345472,3636897,196608 +k1,22803:6434165,19279411:-26345472 +) +(1,22803:6434165,19279411:26345472,3440289,196608 +[1,22803:6630773,19279411:25952256,3243681,0 +(1,22797:6630773,16460169:25952256,424439,112852 +(1,22796:6630773,16460169:0,0,0 +g1,22796:6630773,16460169 +g1,22796:6630773,16460169 +g1,22796:6303093,16460169 +(1,22796:6303093,16460169:0,0,0 +) +g1,22796:6630773,16460169 +) +k1,22797:6630773,16460169:0 +g1,22797:10946175,16460169 +g1,22797:14597669,16460169 +g1,22797:16921347,16460169 +h1,22797:17253301,16460169:0,0,0 +k1,22797:32583029,16460169:15329728 +g1,22797:32583029,16460169 +) +(1,22798:6630773,17145024:25952256,424439,112852 +h1,22798:6630773,17145024:0,0,0 +g1,22798:6962727,17145024 +g1,22798:7294681,17145024 +g1,22798:11610082,17145024 +h1,22798:11942036,17145024:0,0,0 +k1,22798:32583028,17145024:20640992 +g1,22798:32583028,17145024 +) +(1,22799:6630773,17829879:25952256,424439,106246 +h1,22799:6630773,17829879:0,0,0 +g1,22799:6962727,17829879 +g1,22799:7294681,17829879 +g1,22799:10946175,17829879 +g1,22799:11610083,17829879 +g1,22799:18913070,17829879 +g1,22799:20240886,17829879 +g1,22799:22896518,17829879 +g1,22799:23560426,17829879 +k1,22799:23560426,17829879:0 +h1,22799:29203643,17829879:0,0,0 +k1,22799:32583029,17829879:3379386 +g1,22799:32583029,17829879 +) +(1,22800:6630773,18514734:25952256,424439,106246 +h1,22800:6630773,18514734:0,0,0 +g1,22800:6962727,18514734 +g1,22800:7294681,18514734 +g1,22800:7626635,18514734 +g1,22800:7958589,18514734 +g1,22800:8290543,18514734 +g1,22800:8622497,18514734 +g1,22800:8954451,18514734 +g1,22800:11942036,18514734 +g1,22800:12605944,18514734 +g1,22800:18249161,18514734 +g1,22800:20240885,18514734 +g1,22800:23560425,18514734 +g1,22800:24224333,18514734 +k1,22800:24224333,18514734:0 +h1,22800:31859274,18514734:0,0,0 +k1,22800:32583029,18514734:723755 +g1,22800:32583029,18514734 +) +(1,22801:6630773,19199589:25952256,424439,79822 +h1,22801:6630773,19199589:0,0,0 +g1,22801:6962727,19199589 +g1,22801:7294681,19199589 +g1,22801:7626635,19199589 +g1,22801:7958589,19199589 +g1,22801:8290543,19199589 +g1,22801:8622497,19199589 +g1,22801:8954451,19199589 +h1,22801:9286405,19199589:0,0,0 +k1,22801:32583029,19199589:23296624 +g1,22801:32583029,19199589 +) +] +) +g1,22803:32583029,19279411 +g1,22803:6630773,19279411 +g1,22803:6630773,19279411 +g1,22803:32583029,19279411 +g1,22803:32583029,19279411 +) +h1,22803:6630773,19476019:0,0,0 +(1,22806:6630773,28625221:25952256,9083666,0 +k1,22806:10523651,28625221:3892878 +h1,22805:10523651,28625221:0,0,0 +(1,22805:10523651,28625221:18166500,9083666,0 +(1,22805:10523651,28625221:18167376,9083688,0 +(1,22805:10523651,28625221:18167376,9083688,0 +(1,22805:10523651,28625221:0,9083688,0 +(1,22805:10523651,28625221:0,14208860,0 +(1,22805:10523651,28625221:28417720,14208860,0 +) +k1,22805:10523651,28625221:-28417720 +) +) +g1,22805:28691027,28625221 +) +) +) +g1,22806:28690151,28625221 +k1,22806:32583029,28625221:3892878 +) +(1,22813:6630773,29490301:25952256,513147,126483 +h1,22812:6630773,29490301:983040,0,0 +k1,22812:8835404,29490301:179569 +k1,22812:11850059,29490301:179568 +k1,22812:15902806,29490301:179569 +k1,22812:17186657,29490301:179569 +k1,22812:18113991,29490301:179568 +k1,22812:19806786,29490301:179569 +k1,22812:20637783,29490301:179569 +k1,22812:23754019,29490301:179568 +k1,22812:24704291,29490301:179569 +k1,22812:28323845,29490301:179569 +k1,22812:30513402,29490301:179568 +k1,22812:31048831,29490301:179569 +k1,22813:32583029,29490301:0 +) +(1,22813:6630773,30355381:25952256,513147,134348 +k1,22812:8120032,30355381:221793 +k1,22812:10196493,30355381:221792 +k1,22812:11227656,30355381:221793 +k1,22812:12468533,30355381:221792 +k1,22812:16092955,30355381:221793 +k1,22812:18693704,30355381:221792 +k1,22812:20186895,30355381:221793 +k1,22812:21775768,30355381:221792 +k1,22812:22656853,30355381:221793 +k1,22812:25321827,30355381:221792 +k1,22812:26075117,30355381:221793 +k1,22812:26948337,30355381:221792 +k1,22812:29604137,30355381:221793 +k1,22812:30845014,30355381:221792 +k1,22812:32583029,30355381:0 +) +(1,22813:6630773,31220461:25952256,513147,134348 +g1,22812:7489294,31220461 +g1,22812:8707608,31220461 +g1,22812:10866363,31220461 +g1,22812:13270879,31220461 +g1,22812:14156270,31220461 +g1,22812:15126202,31220461 +g1,22812:18571429,31220461 +g1,22812:20338279,31220461 +g1,22812:22547497,31220461 +g1,22812:23102586,31220461 +k1,22813:32583029,31220461:6732519 +g1,22813:32583029,31220461 +) +v1,22815:6630773,31905316:0,393216,0 +(1,22840:6630773,40408340:25952256,8896240,196608 +g1,22840:6630773,40408340 +g1,22840:6630773,40408340 +g1,22840:6434165,40408340 +(1,22840:6434165,40408340:0,8896240,196608 +r1,22849:32779637,40408340:26345472,9092848,196608 +k1,22840:6434165,40408340:-26345472 +) +(1,22840:6434165,40408340:26345472,8896240,196608 +[1,22840:6630773,40408340:25952256,8699632,0 +(1,22817:6630773,32139753:25952256,431045,106246 +(1,22816:6630773,32139753:0,0,0 +g1,22816:6630773,32139753 +g1,22816:6630773,32139753 +g1,22816:6303093,32139753 +(1,22816:6303093,32139753:0,0,0 +) +g1,22816:6630773,32139753 +) +g1,22817:10946174,32139753 +g1,22817:11942036,32139753 +g1,22817:15925483,32139753 +h1,22817:16257437,32139753:0,0,0 +k1,22817:32583029,32139753:16325592 +g1,22817:32583029,32139753 +) +(1,22818:6630773,32824608:25952256,424439,106246 +h1,22818:6630773,32824608:0,0,0 +g1,22818:6962727,32824608 +g1,22818:7294681,32824608 +k1,22818:7294681,32824608:0 +h1,22818:16921346,32824608:0,0,0 +k1,22818:32583029,32824608:15661683 +g1,22818:32583029,32824608 +) +(1,22819:6630773,33509463:25952256,424439,79822 +h1,22819:6630773,33509463:0,0,0 +h1,22819:6962727,33509463:0,0,0 +k1,22819:32583029,33509463:25620302 +g1,22819:32583029,33509463 +) +(1,22820:6630773,34194318:25952256,0,0 +h1,22820:6630773,34194318:0,0,0 +h1,22820:6630773,34194318:0,0,0 +k1,22820:32583029,34194318:25952256 +g1,22820:32583029,34194318 +) +(1,22821:6630773,34879173:25952256,424439,6605 +h1,22821:6630773,34879173:0,0,0 +g1,22821:7294681,34879173 +g1,22821:8290543,34879173 +g1,22821:10614221,34879173 +g1,22821:11610083,34879173 +h1,22821:14597668,34879173:0,0,0 +k1,22821:32583028,34879173:17985360 +g1,22821:32583028,34879173 +) +(1,22822:6630773,35564028:25952256,0,0 +h1,22822:6630773,35564028:0,0,0 +h1,22822:6630773,35564028:0,0,0 +k1,22822:32583029,35564028:25952256 +g1,22822:32583029,35564028 +) +(1,22823:6630773,36248883:25952256,424439,106246 +h1,22823:6630773,36248883:0,0,0 +k1,22823:6630773,36248883:0 +h1,22823:14597667,36248883:0,0,0 +k1,22823:32583029,36248883:17985362 +g1,22823:32583029,36248883 +) +(1,22827:6630773,37064810:25952256,424439,79822 +(1,22825:6630773,37064810:0,0,0 +g1,22825:6630773,37064810 +g1,22825:6630773,37064810 +g1,22825:6303093,37064810 +(1,22825:6303093,37064810:0,0,0 +) +g1,22825:6630773,37064810 +) +g1,22827:7626635,37064810 +g1,22827:8954451,37064810 +h1,22827:13601806,37064810:0,0,0 +k1,22827:32583030,37064810:18981224 +g1,22827:32583030,37064810 +) +(1,22829:6630773,37880737:25952256,424439,106246 +(1,22828:6630773,37880737:0,0,0 +g1,22828:6630773,37880737 +g1,22828:6630773,37880737 +g1,22828:6303093,37880737 +(1,22828:6303093,37880737:0,0,0 +) +g1,22828:6630773,37880737 +) +k1,22829:6630773,37880737:0 +g1,22829:11610082,37880737 +g1,22829:12273990,37880737 +h1,22829:12937898,37880737:0,0,0 +k1,22829:32583030,37880737:19645132 +g1,22829:32583030,37880737 +) +(1,22833:6630773,38696664:25952256,424439,79822 +(1,22831:6630773,38696664:0,0,0 +g1,22831:6630773,38696664 +g1,22831:6630773,38696664 +g1,22831:6303093,38696664 +(1,22831:6303093,38696664:0,0,0 +) +g1,22831:6630773,38696664 +) +g1,22833:7626635,38696664 +g1,22833:8954451,38696664 +g1,22833:9950313,38696664 +g1,22833:10614221,38696664 +h1,22833:11278129,38696664:0,0,0 +k1,22833:32583029,38696664:21304900 +g1,22833:32583029,38696664 +) +(1,22835:6630773,39512591:25952256,424439,106246 +(1,22834:6630773,39512591:0,0,0 +g1,22834:6630773,39512591 +g1,22834:6630773,39512591 +g1,22834:6303093,39512591 +(1,22834:6303093,39512591:0,0,0 +) +g1,22834:6630773,39512591 +) +k1,22835:6630773,39512591:0 +h1,22835:11610082,39512591:0,0,0 +k1,22835:32583030,39512591:20972948 +g1,22835:32583030,39512591 +) +(1,22839:6630773,40328518:25952256,424439,79822 +(1,22837:6630773,40328518:0,0,0 +g1,22837:6630773,40328518 +g1,22837:6630773,40328518 +g1,22837:6303093,40328518 +(1,22837:6303093,40328518:0,0,0 ) -g1,22839:6630773,40328518 +g1,22837:6630773,40328518 ) -g1,22841:7626635,40328518 -g1,22841:8954451,40328518 -h1,22841:9950313,40328518:0,0,0 -k1,22841:32583029,40328518:22632716 -g1,22841:32583029,40328518 +g1,22839:7626635,40328518 +g1,22839:8954451,40328518 +h1,22839:9950313,40328518:0,0,0 +k1,22839:32583029,40328518:22632716 +g1,22839:32583029,40328518 ) ] ) -g1,22842:32583029,40408340 -g1,22842:6630773,40408340 -g1,22842:6630773,40408340 -g1,22842:32583029,40408340 -g1,22842:32583029,40408340 +g1,22840:32583029,40408340 +g1,22840:6630773,40408340 +g1,22840:6630773,40408340 +g1,22840:32583029,40408340 +g1,22840:32583029,40408340 ) -h1,22842:6630773,40604948:0,0,0 +h1,22840:6630773,40604948:0,0,0 ] -(1,22851:32583029,45706769:0,0,0 -g1,22851:32583029,45706769 +(1,22849:32583029,45706769:0,0,0 +g1,22849:32583029,45706769 ) ) ] -(1,22851:6630773,47279633:25952256,0,0 -h1,22851:6630773,47279633:25952256,0,0 +(1,22849:6630773,47279633:25952256,0,0 +h1,22849:6630773,47279633:25952256,0,0 ) ] -(1,22851:4262630,4025873:0,0,0 -[1,22851:-473656,4025873:0,0,0 -(1,22851:-473656,-710413:0,0,0 -(1,22851:-473656,-710413:0,0,0 -g1,22851:-473656,-710413 +(1,22849:4262630,4025873:0,0,0 +[1,22849:-473656,4025873:0,0,0 +(1,22849:-473656,-710413:0,0,0 +(1,22849:-473656,-710413:0,0,0 +g1,22849:-473656,-710413 ) -g1,22851:-473656,-710413 +g1,22849:-473656,-710413 ) ] ) ] !13487 -}391 -Input:4323:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4324:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4325:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4326:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}392 +Input:4327:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4328:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4329:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4330:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{392 -[1,22881:4262630,47279633:28320399,43253760,0 -(1,22881:4262630,4025873:0,0,0 -[1,22881:-473656,4025873:0,0,0 -(1,22881:-473656,-710413:0,0,0 -(1,22881:-473656,-644877:0,0,0 -k1,22881:-473656,-644877:-65536 +{393 +[1,22879:4262630,47279633:28320399,43253760,0 +(1,22879:4262630,4025873:0,0,0 +[1,22879:-473656,4025873:0,0,0 +(1,22879:-473656,-710413:0,0,0 +(1,22879:-473656,-644877:0,0,0 +k1,22879:-473656,-644877:-65536 ) -(1,22881:-473656,4736287:0,0,0 -k1,22881:-473656,4736287:5209943 +(1,22879:-473656,4736287:0,0,0 +k1,22879:-473656,4736287:5209943 ) -g1,22881:-473656,-710413 +g1,22879:-473656,-710413 ) ] ) -[1,22881:6630773,47279633:25952256,43253760,0 -[1,22881:6630773,4812305:25952256,786432,0 -(1,22881:6630773,4812305:25952256,505283,134348 -(1,22881:6630773,4812305:25952256,505283,134348 -g1,22881:3078558,4812305 -[1,22881:3078558,4812305:0,0,0 -(1,22881:3078558,2439708:0,1703936,0 -k1,22881:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22881:2537886,2439708:1179648,16384,0 +[1,22879:6630773,47279633:25952256,43253760,0 +[1,22879:6630773,4812305:25952256,786432,0 +(1,22879:6630773,4812305:25952256,505283,134348 +(1,22879:6630773,4812305:25952256,505283,134348 +g1,22879:3078558,4812305 +[1,22879:3078558,4812305:0,0,0 +(1,22879:3078558,2439708:0,1703936,0 +k1,22879:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22879:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22881:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22879:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22881:3078558,4812305:0,0,0 -(1,22881:3078558,2439708:0,1703936,0 -g1,22881:29030814,2439708 -g1,22881:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22881:36151628,1915420:16384,1179648,0 +[1,22879:3078558,4812305:0,0,0 +(1,22879:3078558,2439708:0,1703936,0 +g1,22879:29030814,2439708 +g1,22879:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22879:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22881:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22879:37855564,2439708:1179648,16384,0 ) ) -k1,22881:3078556,2439708:-34777008 +k1,22879:3078556,2439708:-34777008 ) ] -[1,22881:3078558,4812305:0,0,0 -(1,22881:3078558,49800853:0,16384,2228224 -k1,22881:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22881:2537886,49800853:1179648,16384,0 +[1,22879:3078558,4812305:0,0,0 +(1,22879:3078558,49800853:0,16384,2228224 +k1,22879:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22879:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22881:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22879:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,22881:3078558,4812305:0,0,0 -(1,22881:3078558,49800853:0,16384,2228224 -g1,22881:29030814,49800853 -g1,22881:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22881:36151628,51504789:16384,1179648,0 +[1,22879:3078558,4812305:0,0,0 +(1,22879:3078558,49800853:0,16384,2228224 +g1,22879:29030814,49800853 +g1,22879:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22879:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22881:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22879:37855564,49800853:1179648,16384,0 ) ) -k1,22881:3078556,49800853:-34777008 +k1,22879:3078556,49800853:-34777008 ) ] -g1,22881:6630773,4812305 -g1,22881:6630773,4812305 -g1,22881:9573994,4812305 -g1,22881:12488380,4812305 -g1,22881:14221807,4812305 -g1,22881:17043787,4812305 -k1,22881:31387652,4812305:14343865 -) -) -] -[1,22881:6630773,45706769:25952256,40108032,0 -(1,22881:6630773,45706769:25952256,40108032,0 -(1,22881:6630773,45706769:0,0,0 -g1,22881:6630773,45706769 -) -[1,22881:6630773,45706769:25952256,40108032,0 -(1,22847:6630773,6254097:25952256,32768,229376 -(1,22847:6630773,6254097:0,32768,229376 -(1,22847:6630773,6254097:5505024,32768,229376 -r1,22881:12135797,6254097:5505024,262144,229376 -) -k1,22847:6630773,6254097:-5505024 -) -(1,22847:6630773,6254097:25952256,32768,0 -r1,22881:32583029,6254097:25952256,32768,0 -) -) -(1,22847:6630773,7885949:25952256,606339,161218 -(1,22847:6630773,7885949:2464678,582746,14155 -g1,22847:6630773,7885949 -g1,22847:9095451,7885949 -) -g1,22847:12689446,7885949 -g1,22847:16428144,7885949 -g1,22847:18478373,7885949 -k1,22847:32583029,7885949:10680531 -g1,22847:32583029,7885949 -) -(1,22851:6630773,9144245:25952256,513147,134348 -k1,22850:7987721,9144245:181888 -k1,22850:11072198,9144245:181887 -k1,22850:11913378,9144245:181888 -k1,22850:14814354,9144245:181887 -k1,22850:17008197,9144245:181888 -k1,22850:18346794,9144245:181887 -k1,22850:19180110,9144245:181888 -k1,22850:21004329,9144245:181887 -k1,22850:22377662,9144245:181888 -k1,22850:23750994,9144245:181887 -k1,22850:25540480,9144245:181888 -k1,22850:30247628,9144245:181887 -k1,22850:31057351,9144245:181888 -k1,22850:32583029,9144245:0 -) -(1,22851:6630773,10009325:25952256,505283,134348 -k1,22850:8124033,10009325:227104 -k1,22850:10049175,10009325:227104 -k1,22850:12848567,10009325:227104 -k1,22850:13431531,10009325:227104 -k1,22850:17150393,10009325:227104 -k1,22850:18660692,10009325:227104 -k1,22850:20338763,10009325:227104 -k1,22850:21023965,10009325:227105 -k1,22850:21782566,10009325:227104 -k1,22850:23344638,10009325:227104 -k1,22850:24223170,10009325:227104 -k1,22850:25938597,10009325:227104 -k1,22850:27559652,10009325:227104 -k1,22850:28142616,10009325:227104 -k1,22850:30494397,10009325:227104 -k1,22850:32583029,10009325:0 -) -(1,22851:6630773,10874405:25952256,513147,134348 -k1,22850:7780900,10874405:202476 -k1,22850:8339236,10874405:202476 -k1,22850:9992679,10874405:202476 -(1,22850:9992679,10874405:0,452978,115847 -r1,22881:12461216,10874405:2468537,568825,115847 -k1,22850:9992679,10874405:-2468537 -) -(1,22850:9992679,10874405:2468537,452978,115847 -k1,22850:9992679,10874405:3277 -h1,22850:12457939,10874405:0,411205,112570 -) -k1,22850:12663692,10874405:202476 -k1,22850:14069409,10874405:202476 -k1,22850:15722852,10874405:202476 -k1,22850:18737478,10874405:202476 -k1,22850:20224460,10874405:202476 -k1,22850:21446021,10874405:202476 -k1,22850:23807253,10874405:202476 -k1,22850:24541226,10874405:202476 -k1,22850:25429864,10874405:202476 -k1,22850:28471360,10874405:202476 -k1,22850:29865281,10874405:202476 -k1,22850:31086842,10874405:202476 -k1,22850:32583029,10874405:0 -) -(1,22851:6630773,11739485:25952256,513147,134348 -k1,22850:10072855,11739485:200671 -k1,22850:14008423,11739485:200671 -k1,22850:15365804,11739485:200671 -k1,22850:16670757,11739485:200671 -k1,22850:18268000,11739485:200671 -k1,22850:21695663,11739485:200670 -k1,22850:24960798,11739485:200671 -k1,22850:26352914,11739485:200671 -k1,22850:27750928,11739485:200671 -k1,22850:31391584,11739485:200671 -k1,22850:32583029,11739485:0 -) -(1,22851:6630773,12604565:25952256,513147,134348 -k1,22850:9598495,12604565:285333 -k1,22850:13038732,12604565:285334 -k1,22850:14520752,12604565:285333 -k1,22850:16212489,12604565:285334 -k1,22850:18183408,12604565:285333 -k1,22850:19460301,12604565:285333 -k1,22850:21179563,12604565:285334 -k1,22850:22116324,12604565:285333 -k1,22850:23599000,12604565:285333 -k1,22850:27621853,12604565:285334 -k1,22850:29098631,12604565:285333 -k1,22850:30403050,12604565:285334 -k1,22850:31914562,12604565:285333 -k1,22850:32583029,12604565:0 -) -(1,22851:6630773,13469645:25952256,513147,126483 -k1,22850:10626855,13469645:225796 -k1,22850:12365878,13469645:225797 -k1,22850:13539325,13469645:225796 -k1,22850:15536560,13469645:225797 -k1,22850:16953801,13469645:225796 -k1,22850:18431991,13469645:225797 -k1,22850:19849232,13469645:225796 -k1,22850:21176034,13469645:225797 -k1,22850:23419684,13469645:225796 -k1,22850:26249882,13469645:225797 -k1,22850:29460188,13469645:225796 -k1,22850:30217482,13469645:225797 -k1,22850:31094706,13469645:225796 -k1,22850:32583029,13469645:0 -) -(1,22851:6630773,14334725:25952256,513147,134348 -k1,22850:8293750,14334725:295240 -k1,22850:9359692,14334725:295239 -k1,22850:12145955,14334725:295240 -k1,22850:13718491,14334725:295239 -k1,22850:15205176,14334725:295240 -k1,22850:17762718,14334725:295239 -k1,22850:18689725,14334725:295240 -k1,22850:20227528,14334725:295240 -k1,22850:21284295,14334725:295239 -k1,22850:23314928,14334725:295240 -k1,22850:24629252,14334725:295239 -k1,22850:26577965,14334725:295240 -k1,22850:29397651,14334725:295239 -k1,22850:31189078,14334725:295240 -k1,22850:32583029,14334725:0 -) -(1,22851:6630773,15199805:25952256,513147,134348 -k1,22850:9646938,15199805:253822 -(1,22850:9646938,15199805:0,452978,115847 -r1,22881:11060339,15199805:1413401,568825,115847 -k1,22850:9646938,15199805:-1413401 -) -(1,22850:9646938,15199805:1413401,452978,115847 -k1,22850:9646938,15199805:3277 -h1,22850:11057062,15199805:0,411205,112570 -) -k1,22850:11314161,15199805:253822 -k1,22850:12250868,15199805:253822 -k1,22850:15312252,15199805:253822 -k1,22850:18328417,15199805:253822 -k1,22850:21597550,15199805:253822 -k1,22850:23634607,15199805:253822 -k1,22850:26259522,15199805:253822 -k1,22850:28009531,15199805:253822 -k1,22850:29211004,15199805:253822 -k1,22850:29820686,15199805:253822 -k1,22850:32583029,15199805:0 -) -(1,22851:6630773,16064885:25952256,505283,126483 -g1,22850:8219365,16064885 -g1,22850:9526808,16064885 -g1,22850:11298246,16064885 -(1,22850:11298246,16064885:0,452978,115847 -r1,22881:13415071,16064885:2116825,568825,115847 -k1,22850:11298246,16064885:-2116825 -) -(1,22850:11298246,16064885:2116825,452978,115847 -k1,22850:11298246,16064885:3277 -h1,22850:13411794,16064885:0,411205,112570 -) -g1,22850:13614300,16064885 -g1,22850:15004974,16064885 -(1,22850:15004974,16064885:0,414482,115847 -r1,22881:16770087,16064885:1765113,530329,115847 -k1,22850:15004974,16064885:-1765113 -) -(1,22850:15004974,16064885:1765113,414482,115847 -k1,22850:15004974,16064885:3277 -h1,22850:16766810,16064885:0,411205,112570 -) -g1,22850:16969316,16064885 -g1,22850:18160105,16064885 -g1,22850:20071790,16064885 -g1,22850:20922447,16064885 -g1,22850:22651942,16064885 -g1,22850:23502599,16064885 -g1,22850:24449594,16064885 -k1,22851:32583029,16064885:6086746 -g1,22851:32583029,16064885 -) -v1,22853:6630773,16929965:0,393216,0 -(1,22854:6630773,21662190:25952256,5125441,0 -g1,22854:6630773,21662190 -g1,22854:6237557,21662190 -r1,22881:6368629,21662190:131072,5125441,0 -g1,22854:6567858,21662190 -g1,22854:6764466,21662190 -[1,22854:6764466,21662190:25818563,5125441,0 -(1,22854:6764466,17202442:25818563,665693,196608 -(1,22853:6764466,17202442:0,665693,196608 -r1,22881:7868133,17202442:1103667,862301,196608 -k1,22853:6764466,17202442:-1103667 -) -(1,22853:6764466,17202442:1103667,665693,196608 -) -k1,22853:8098917,17202442:230784 -k1,22853:9825135,17202442:327680 -k1,22853:11696942,17202442:230785 -k1,22853:12283586,17202442:230784 -k1,22853:16030377,17202442:230784 -k1,22853:18947483,17202442:230785 -k1,22853:20567630,17202442:230784 -k1,22853:22075711,17202442:230784 -k1,22853:22965787,17202442:230784 -k1,22853:24655403,17202442:230785 -k1,22853:27503040,17202442:230784 -k1,22853:29089109,17202442:230784 -k1,22853:30081422,17202442:230785 -k1,22853:31841161,17202442:230784 -k1,22853:32583029,17202442:0 -) -(1,22854:6764466,18067522:25818563,513147,134348 -k1,22853:8345278,18067522:225527 -k1,22853:9332334,18067522:225528 -k1,22853:11086816,18067522:225527 -k1,22853:11525309,18067522:225501 -k1,22853:12566104,18067522:225527 -k1,22853:13857903,18067522:225528 -k1,22853:15619594,18067522:225527 -k1,22853:16496549,18067522:225527 -k1,22853:18457470,18067522:225528 -k1,22853:19702082,18067522:225527 -k1,22853:22830199,18067522:225527 -k1,22853:23671765,18067522:225528 -k1,22853:24916377,18067522:225527 -k1,22853:29176300,18067522:225527 -k1,22853:30061120,18067522:225528 -k1,22853:31305732,18067522:225527 -k1,22853:32583029,18067522:0 -) -(1,22854:6764466,18932602:25818563,513147,134348 -k1,22853:7618400,18932602:167772 -k1,22853:9993425,18932602:167772 -k1,22853:11233366,18932602:167772 -k1,22853:12060430,18932602:167772 -k1,22853:14223773,18932602:167772 -k1,22853:17630334,18932602:167772 -k1,22853:18457399,18932602:167773 -k1,22853:19828412,18932602:167772 -k1,22853:23514812,18932602:167772 -k1,22853:24334012,18932602:167772 -k1,22853:25693229,18932602:167772 -k1,22853:29918990,18932602:167772 -k1,22853:32583029,18932602:0 -) -(1,22854:6764466,19797682:25818563,513147,134348 -k1,22853:7615966,19797682:235462 -k1,22853:8622130,19797682:235461 -k1,22853:11469857,19797682:235462 -k1,22853:13793950,19797682:235461 -k1,22853:16648231,19797682:235462 -k1,22853:18189825,19797682:235461 -k1,22853:19186815,19797682:235462 -k1,22853:22054857,19797682:235461 -k1,22853:23125903,19797682:235462 -k1,22853:24380449,19797682:235461 -k1,22853:27302232,19797682:235462 -k1,22853:28814990,19797682:235461 -k1,22853:29666490,19797682:235462 -k1,22853:31896867,19797682:235461 -k1,22853:32583029,19797682:0 -) -(1,22854:6764466,20662762:25818563,513147,134348 -k1,22853:7373698,20662762:253372 -k1,22853:8878152,20662762:253372 -k1,22853:9747563,20662762:253373 -k1,22853:13496625,20662762:253372 -k1,22853:14941442,20662762:253372 -k1,22853:16648403,20662762:253372 -k1,22853:18637169,20662762:253373 -k1,22853:21607664,20662762:253372 -k1,22853:22477074,20662762:253372 -k1,22853:23749531,20662762:253372 -k1,22853:27125695,20662762:253373 -k1,22853:28038359,20662762:253372 -k1,22853:31563944,20662762:253372 -k1,22853:32583029,20662762:0 -) -(1,22854:6764466,21527842:25818563,513147,134348 -g1,22853:9352482,21527842 -g1,22853:11640343,21527842 -g1,22853:12498864,21527842 -g1,22853:13717178,21527842 -g1,22853:15193704,21527842 -g1,22853:16584378,21527842 -g1,22853:20055820,21527842 -g1,22853:21043447,21527842 -g1,22853:24636786,21527842 -g1,22853:26027460,21527842 -k1,22854:32583029,21527842:2403864 -g1,22854:32583029,21527842 -) -] -g1,22854:32583029,21662190 -) -h1,22854:6630773,21662190:0,0,0 -(1,22856:6630773,24493350:25952256,32768,229376 -(1,22856:6630773,24493350:0,32768,229376 -(1,22856:6630773,24493350:5505024,32768,229376 -r1,22881:12135797,24493350:5505024,262144,229376 -) -k1,22856:6630773,24493350:-5505024 -) -(1,22856:6630773,24493350:25952256,32768,0 -r1,22881:32583029,24493350:25952256,32768,0 -) -) -(1,22856:6630773,26125202:25952256,615776,161218 -(1,22856:6630773,26125202:2464678,582746,14155 -g1,22856:6630773,26125202 -g1,22856:9095451,26125202 -) -g1,22856:12689446,26125202 -g1,22856:14532056,26125202 -g1,22856:15589807,26125202 -k1,22856:32583029,26125202:15051521 -g1,22856:32583029,26125202 -) -(1,22859:6630773,27383498:25952256,513147,134348 -k1,22858:8435809,27383498:242658 -k1,22858:9329895,27383498:242658 -k1,22858:10320319,27383498:242658 -k1,22858:13736886,27383498:242658 -k1,22858:14592306,27383498:242658 -k1,22858:15190824,27383498:242658 -k1,22858:17128243,27383498:242658 -k1,22858:20129310,27383498:242657 -k1,22858:21054853,27383498:242658 -k1,22858:24453070,27383498:242658 -k1,22858:25381890,27383498:242658 -k1,22858:26946409,27383498:242658 -k1,22858:27848359,27383498:242658 -k1,22858:29110102,27383498:242658 -k1,22858:31006233,27383498:242658 -k1,22858:32583029,27383498:0 -) -(1,22859:6630773,28248578:25952256,505283,126483 -k1,22858:8324581,28248578:163542 -k1,22858:9139551,28248578:163542 -k1,22858:10050859,28248578:163542 -k1,22858:13495133,28248578:163542 -k1,22858:14274713,28248578:163542 -k1,22858:16780512,28248578:163542 -k1,22858:19772588,28248578:163542 -k1,22858:22426498,28248578:163542 -k1,22858:24492550,28248578:163542 -k1,22858:25847537,28248578:163542 -k1,22858:28705264,28248578:163542 -k1,22858:32583029,28248578:0 -) -(1,22859:6630773,29113658:25952256,505283,134348 -k1,22858:8380857,29113658:152316 -k1,22858:9724619,29113658:152317 -k1,22858:12758553,29113658:152316 -k1,22858:13739900,29113658:152317 -k1,22858:17047775,29113658:152316 -k1,22858:18403332,29113658:152316 -k1,22858:22274162,29113658:152317 -k1,22858:23294830,29113658:152316 -k1,22858:24977413,29113658:152317 -k1,22858:25781157,29113658:152316 -k1,22858:27575806,29113658:152317 -k1,22858:29335720,29113658:152316 -k1,22858:32583029,29113658:0 -) -(1,22859:6630773,29978738:25952256,505283,134348 -k1,22858:8079472,29978738:257254 -k1,22858:10066221,29978738:257254 -k1,22858:13452819,29978738:257254 -k1,22858:14471601,29978738:257254 -k1,22858:17725816,29978738:257254 -k1,22858:20051386,29978738:257254 -k1,22858:20960067,29978738:257253 -k1,22858:22236406,29978738:257254 -k1,22858:25826821,29978738:257254 -k1,22858:27368581,29978738:257254 -k1,22858:29156101,29978738:257254 -k1,22858:30064783,29978738:257254 -k1,22858:31069803,29978738:257254 -k1,22858:32583029,29978738:0 -) -(1,22859:6630773,30843818:25952256,505283,126483 -g1,22858:9501249,30843818 -k1,22859:32583029,30843818:21273642 -g1,22859:32583029,30843818 -) -(1,22861:6630773,31708898:25952256,513147,126483 -h1,22860:6630773,31708898:983040,0,0 -k1,22860:8445667,31708898:204019 -k1,22860:9005545,31708898:204018 -k1,22860:11334241,31708898:204019 -k1,22860:13871996,31708898:204018 -k1,22860:14735307,31708898:204019 -k1,22860:16142567,31708898:204019 -k1,22860:19331095,31708898:204018 -k1,22860:20742287,31708898:204019 -k1,22860:22459532,31708898:204019 -k1,22860:23279588,31708898:204018 -k1,22860:25235384,31708898:204019 -k1,22860:28431121,31708898:204018 -k1,22860:30664135,31708898:204019 -k1,22860:32583029,31708898:0 -) -(1,22861:6630773,32573978:25952256,513147,126483 -g1,22860:7185862,32573978 -g1,22860:8819019,32573978 -g1,22860:10295545,32573978 -g1,22860:11701947,32573978 -g1,22860:14736263,32573978 -g1,22860:15697020,32573978 -g1,22860:18562254,32573978 -g1,22860:19420775,32573978 -g1,22860:22382347,32573978 -g1,22860:24469668,32573978 -g1,22860:25351782,32573978 -k1,22861:32583029,32573978:5276308 -g1,22861:32583029,32573978 -) -(1,22862:6630773,34690796:25952256,555811,147783 -(1,22862:6630773,34690796:2899444,534184,12975 -g1,22862:6630773,34690796 -g1,22862:9530217,34690796 -) -g1,22862:12167976,34690796 -g1,22862:13822433,34690796 -g1,22862:16269875,34690796 -g1,22862:17837103,34690796 -g1,22862:20247780,34690796 -g1,22862:21178457,34690796 -k1,22862:32583029,34690796:8083404 -g1,22862:32583029,34690796 -) -(1,22865:6630773,35949092:25952256,505283,134348 -k1,22864:8616860,35949092:232999 -k1,22864:11422146,35949092:232998 -k1,22864:13262743,35949092:232999 -k1,22864:14889692,35949092:232998 -k1,22864:18124894,35949092:232999 -k1,22864:20647720,35949092:232998 -k1,22864:21872279,35949092:232999 -k1,22864:25367004,35949092:232998 -k1,22864:27335396,35949092:232999 -k1,22864:30315008,35949092:232998 -(1,22864:30315008,35949092:0,414482,115847 -r1,22881:30673274,35949092:358266,530329,115847 -k1,22864:30315008,35949092:-358266 -) -(1,22864:30315008,35949092:358266,414482,115847 -k1,22864:30315008,35949092:3277 -h1,22864:30669997,35949092:0,411205,112570 -) -k1,22864:30906273,35949092:232999 -k1,22864:31790699,35949092:232998 -k1,22865:32583029,35949092:0 -) -(1,22865:6630773,36814172:25952256,513147,134348 -k1,22864:9083195,36814172:201916 -k1,22864:11965535,36814172:201917 -k1,22864:13186536,36814172:201916 -k1,22864:16581366,36814172:201916 -k1,22864:20884526,36814172:201917 -k1,22864:22283129,36814172:201916 -k1,22864:25510842,36814172:201916 -k1,22864:26997264,36814172:201916 -k1,22864:29128561,36814172:201917 -k1,22864:30607774,36814172:201916 -k1,22864:32583029,36814172:0 -) -(1,22865:6630773,37679252:25952256,513147,134348 -k1,22864:8938145,37679252:231191 -k1,22864:10280826,37679252:231190 -k1,22864:11503577,37679252:231191 -k1,22864:15771785,37679252:231190 -k1,22864:16662268,37679252:231191 -k1,22864:19183286,37679252:231190 -k1,22864:20605922,37679252:231191 -k1,22864:21856197,37679252:231190 -k1,22864:24377216,37679252:231191 -k1,22864:25988594,37679252:231190 -k1,22864:28230430,37679252:231191 -k1,22864:29565902,37679252:231190 -k1,22864:30544859,37679252:231191 -k1,22864:32583029,37679252:0 -) -(1,22865:6630773,38544332:25952256,505283,126483 -g1,22864:7446040,38544332 -g1,22864:10660580,38544332 -g1,22864:12051254,38544332 -g1,22864:13740772,38544332 -g1,22864:15925087,38544332 -g1,22864:18089741,38544332 -g1,22864:18940398,38544332 -g1,22864:21810874,38544332 -g1,22864:23617701,38544332 -g1,22864:24429692,38544332 -g1,22864:24984781,38544332 -g1,22864:26637599,38544332 -k1,22865:32583029,38544332:4467594 -g1,22865:32583029,38544332 -) -(1,22867:6630773,39409412:25952256,505283,134348 -h1,22866:6630773,39409412:983040,0,0 -k1,22866:8383215,39409412:281814 -k1,22866:9942408,39409412:281896 -k1,22866:11328587,39409412:281897 -k1,22866:13421899,39409412:281897 -k1,22866:14355224,39409412:281897 -k1,22866:17148460,39409412:281896 -(1,22866:17148460,39409412:0,452978,115847 -r1,22881:19265285,39409412:2116825,568825,115847 -k1,22866:17148460,39409412:-2116825 -) -(1,22866:17148460,39409412:2116825,452978,115847 -k1,22866:17148460,39409412:3277 -h1,22866:19262008,39409412:0,411205,112570 -) -k1,22866:19547182,39409412:281897 -k1,22866:21020524,39409412:281897 -k1,22866:22544984,39409412:281897 -k1,22866:23845965,39409412:281896 -k1,22866:25808205,39409412:281897 -k1,22866:28868829,39409412:281897 -k1,22866:29912254,39409412:281897 -k1,22866:30550010,39409412:281896 -k1,22866:31931601,39409412:281897 -k1,22866:32583029,39409412:0 -) -(1,22867:6630773,40274492:25952256,513147,115847 -g1,22866:9525498,40274492 -(1,22866:9525498,40274492:0,452978,115847 -r1,22881:11642323,40274492:2116825,568825,115847 -k1,22866:9525498,40274492:-2116825 -) -(1,22866:9525498,40274492:2116825,452978,115847 -k1,22866:9525498,40274492:3277 -h1,22866:11639046,40274492:0,411205,112570 -) -g1,22866:11841552,40274492 -g1,22866:13308247,40274492 -g1,22866:13863336,40274492 -g1,22866:16824908,40274492 -g1,22866:19709147,40274492 -(1,22866:19709147,40274492:0,452978,115847 -r1,22881:22529396,40274492:2820249,568825,115847 -k1,22866:19709147,40274492:-2820249 -) -(1,22866:19709147,40274492:2820249,452978,115847 -k1,22866:19709147,40274492:3277 -h1,22866:22526119,40274492:0,411205,112570 -) -k1,22867:32583029,40274492:10001205 -g1,22867:32583029,40274492 -) -v1,22869:6630773,40959347:0,393216,0 -(1,22881:6630773,45402554:25952256,4836423,196608 -g1,22881:6630773,45402554 -g1,22881:6630773,45402554 -g1,22881:6434165,45402554 -(1,22881:6434165,45402554:0,4836423,196608 -r1,22881:32779637,45402554:26345472,5033031,196608 -k1,22881:6434165,45402554:-26345472 -) -(1,22881:6434165,45402554:26345472,4836423,196608 -[1,22881:6630773,45402554:25952256,4639815,0 -(1,22871:6630773,41187178:25952256,424439,112852 -(1,22870:6630773,41187178:0,0,0 -g1,22870:6630773,41187178 -g1,22870:6630773,41187178 -g1,22870:6303093,41187178 -(1,22870:6303093,41187178:0,0,0 -) -g1,22870:6630773,41187178 -) -g1,22871:8954451,41187178 -g1,22871:9950313,41187178 -g1,22871:13933761,41187178 -g1,22871:14597669,41187178 -k1,22871:14597669,41187178:0 -h1,22871:16921347,41187178:0,0,0 -k1,22871:32583029,41187178:15661682 -g1,22871:32583029,41187178 -) -(1,22872:6630773,41872033:25952256,424439,112852 -h1,22872:6630773,41872033:0,0,0 -g1,22872:6962727,41872033 -g1,22872:7294681,41872033 -g1,22872:7626635,41872033 -g1,22872:7958589,41872033 -g1,22872:8290543,41872033 -g1,22872:8622497,41872033 -g1,22872:8954451,41872033 -g1,22872:9286405,41872033 -g1,22872:9618359,41872033 -g1,22872:9950313,41872033 -g1,22872:10282267,41872033 -g1,22872:10614221,41872033 -g1,22872:10946175,41872033 -g1,22872:11278129,41872033 -g1,22872:11610083,41872033 -g1,22872:11942037,41872033 -g1,22872:12273991,41872033 -g1,22872:14265715,41872033 -g1,22872:14929623,41872033 -g1,22872:16921347,41872033 -g1,22872:17585255,41872033 -g1,22872:18249163,41872033 -k1,22872:18249163,41872033:0 -h1,22872:19576979,41872033:0,0,0 -k1,22872:32583029,41872033:13006050 -g1,22872:32583029,41872033 -) -(1,22873:6630773,42556888:25952256,431045,106246 -h1,22873:6630773,42556888:0,0,0 -g1,22873:6962727,42556888 -g1,22873:7294681,42556888 -g1,22873:7626635,42556888 -g1,22873:7958589,42556888 -g1,22873:8290543,42556888 -g1,22873:8622497,42556888 -g1,22873:8954451,42556888 -g1,22873:9286405,42556888 -g1,22873:9618359,42556888 -g1,22873:9950313,42556888 -g1,22873:10282267,42556888 -g1,22873:10614221,42556888 -g1,22873:10946175,42556888 -g1,22873:11278129,42556888 -g1,22873:11610083,42556888 -g1,22873:11942037,42556888 -g1,22873:12273991,42556888 -g1,22873:14597669,42556888 -g1,22873:15261577,42556888 -g1,22873:19908933,42556888 -h1,22873:20240887,42556888:0,0,0 -k1,22873:32583029,42556888:12342142 -g1,22873:32583029,42556888 -) -(1,22874:6630773,43241743:25952256,424439,112852 -h1,22874:6630773,43241743:0,0,0 -g1,22874:6962727,43241743 -g1,22874:7294681,43241743 -g1,22874:7626635,43241743 -g1,22874:7958589,43241743 -g1,22874:8290543,43241743 -g1,22874:8622497,43241743 -g1,22874:8954451,43241743 -g1,22874:9286405,43241743 -g1,22874:9618359,43241743 -g1,22874:9950313,43241743 -k1,22874:9950313,43241743:0 -h1,22874:13933760,43241743:0,0,0 -k1,22874:32583028,43241743:18649268 -g1,22874:32583028,43241743 -) -(1,22875:6630773,43926598:25952256,0,0 -h1,22875:6630773,43926598:0,0,0 -h1,22875:6630773,43926598:0,0,0 -k1,22875:32583029,43926598:25952256 -g1,22875:32583029,43926598 -) -(1,22876:6630773,44611453:25952256,424439,112852 -h1,22876:6630773,44611453:0,0,0 -g1,22876:9618358,44611453 -g1,22876:10614220,44611453 -g1,22876:12937898,44611453 -g1,22876:13601806,44611453 -g1,22876:16257438,44611453 -k1,22876:16257438,44611453:0 -h1,22876:21236747,44611453:0,0,0 -k1,22876:32583029,44611453:11346282 -g1,22876:32583029,44611453 -) -(1,22877:6630773,45296308:25952256,424439,106246 -h1,22877:6630773,45296308:0,0,0 -g1,22877:6962727,45296308 -g1,22877:7294681,45296308 -g1,22877:7626635,45296308 -g1,22877:7958589,45296308 -g1,22877:8290543,45296308 -g1,22877:8622497,45296308 -g1,22877:8954451,45296308 -g1,22877:9286405,45296308 -g1,22877:9618359,45296308 -g1,22877:9950313,45296308 -g1,22877:10282267,45296308 -g1,22877:10614221,45296308 -g1,22877:10946175,45296308 -g1,22877:11278129,45296308 -g1,22877:11610083,45296308 -g1,22877:11942037,45296308 -g1,22877:12273991,45296308 -g1,22877:12937899,45296308 -g1,22877:13601807,45296308 -g1,22877:15925485,45296308 -k1,22877:15925485,45296308:0 -h1,22877:19908932,45296308:0,0,0 -k1,22877:32583029,45296308:12674097 -g1,22877:32583029,45296308 -) -] -) -g1,22881:32583029,45402554 -g1,22881:6630773,45402554 -g1,22881:6630773,45402554 -g1,22881:32583029,45402554 -g1,22881:32583029,45402554 -) -] -(1,22881:32583029,45706769:0,0,0 -g1,22881:32583029,45706769 -) -) -] -(1,22881:6630773,47279633:25952256,0,0 -h1,22881:6630773,47279633:25952256,0,0 -) -] -(1,22881:4262630,4025873:0,0,0 -[1,22881:-473656,4025873:0,0,0 -(1,22881:-473656,-710413:0,0,0 -(1,22881:-473656,-710413:0,0,0 -g1,22881:-473656,-710413 -) -g1,22881:-473656,-710413 +g1,22879:6630773,4812305 +g1,22879:6630773,4812305 +g1,22879:9573994,4812305 +g1,22879:12488380,4812305 +g1,22879:14221807,4812305 +g1,22879:17043787,4812305 +k1,22879:31387652,4812305:14343865 +) +) +] +[1,22879:6630773,45706769:25952256,40108032,0 +(1,22879:6630773,45706769:25952256,40108032,0 +(1,22879:6630773,45706769:0,0,0 +g1,22879:6630773,45706769 +) +[1,22879:6630773,45706769:25952256,40108032,0 +(1,22845:6630773,6254097:25952256,32768,229376 +(1,22845:6630773,6254097:0,32768,229376 +(1,22845:6630773,6254097:5505024,32768,229376 +r1,22879:12135797,6254097:5505024,262144,229376 +) +k1,22845:6630773,6254097:-5505024 +) +(1,22845:6630773,6254097:25952256,32768,0 +r1,22879:32583029,6254097:25952256,32768,0 +) +) +(1,22845:6630773,7885949:25952256,606339,161218 +(1,22845:6630773,7885949:2464678,582746,14155 +g1,22845:6630773,7885949 +g1,22845:9095451,7885949 +) +g1,22845:12689446,7885949 +g1,22845:16428144,7885949 +g1,22845:18478373,7885949 +k1,22845:32583029,7885949:10680531 +g1,22845:32583029,7885949 +) +(1,22849:6630773,9144245:25952256,513147,134348 +k1,22848:7987721,9144245:181888 +k1,22848:11072198,9144245:181887 +k1,22848:11913378,9144245:181888 +k1,22848:14814354,9144245:181887 +k1,22848:17008197,9144245:181888 +k1,22848:18346794,9144245:181887 +k1,22848:19180110,9144245:181888 +k1,22848:21004329,9144245:181887 +k1,22848:22377662,9144245:181888 +k1,22848:23750994,9144245:181887 +k1,22848:25540480,9144245:181888 +k1,22848:30247628,9144245:181887 +k1,22848:31057351,9144245:181888 +k1,22848:32583029,9144245:0 +) +(1,22849:6630773,10009325:25952256,505283,134348 +k1,22848:8124033,10009325:227104 +k1,22848:10049175,10009325:227104 +k1,22848:12848567,10009325:227104 +k1,22848:13431531,10009325:227104 +k1,22848:17150393,10009325:227104 +k1,22848:18660692,10009325:227104 +k1,22848:20338763,10009325:227104 +k1,22848:21023965,10009325:227105 +k1,22848:21782566,10009325:227104 +k1,22848:23344638,10009325:227104 +k1,22848:24223170,10009325:227104 +k1,22848:25938597,10009325:227104 +k1,22848:27559652,10009325:227104 +k1,22848:28142616,10009325:227104 +k1,22848:30494397,10009325:227104 +k1,22848:32583029,10009325:0 +) +(1,22849:6630773,10874405:25952256,513147,134348 +k1,22848:7780900,10874405:202476 +k1,22848:8339236,10874405:202476 +k1,22848:9992679,10874405:202476 +(1,22848:9992679,10874405:0,452978,115847 +r1,22879:12461216,10874405:2468537,568825,115847 +k1,22848:9992679,10874405:-2468537 +) +(1,22848:9992679,10874405:2468537,452978,115847 +k1,22848:9992679,10874405:3277 +h1,22848:12457939,10874405:0,411205,112570 +) +k1,22848:12663692,10874405:202476 +k1,22848:14069409,10874405:202476 +k1,22848:15722852,10874405:202476 +k1,22848:18737478,10874405:202476 +k1,22848:20224460,10874405:202476 +k1,22848:21446021,10874405:202476 +k1,22848:23807253,10874405:202476 +k1,22848:24541226,10874405:202476 +k1,22848:25429864,10874405:202476 +k1,22848:28471360,10874405:202476 +k1,22848:29865281,10874405:202476 +k1,22848:31086842,10874405:202476 +k1,22848:32583029,10874405:0 +) +(1,22849:6630773,11739485:25952256,513147,134348 +k1,22848:10072855,11739485:200671 +k1,22848:14008423,11739485:200671 +k1,22848:15365804,11739485:200671 +k1,22848:16670757,11739485:200671 +k1,22848:18268000,11739485:200671 +k1,22848:21695663,11739485:200670 +k1,22848:24960798,11739485:200671 +k1,22848:26352914,11739485:200671 +k1,22848:27750928,11739485:200671 +k1,22848:31391584,11739485:200671 +k1,22848:32583029,11739485:0 +) +(1,22849:6630773,12604565:25952256,513147,134348 +k1,22848:9598495,12604565:285333 +k1,22848:13038732,12604565:285334 +k1,22848:14520752,12604565:285333 +k1,22848:16212489,12604565:285334 +k1,22848:18183408,12604565:285333 +k1,22848:19460301,12604565:285333 +k1,22848:21179563,12604565:285334 +k1,22848:22116324,12604565:285333 +k1,22848:23599000,12604565:285333 +k1,22848:27621853,12604565:285334 +k1,22848:29098631,12604565:285333 +k1,22848:30403050,12604565:285334 +k1,22848:31914562,12604565:285333 +k1,22848:32583029,12604565:0 +) +(1,22849:6630773,13469645:25952256,513147,126483 +k1,22848:10626855,13469645:225796 +k1,22848:12365878,13469645:225797 +k1,22848:13539325,13469645:225796 +k1,22848:15536560,13469645:225797 +k1,22848:16953801,13469645:225796 +k1,22848:18431991,13469645:225797 +k1,22848:19849232,13469645:225796 +k1,22848:21176034,13469645:225797 +k1,22848:23419684,13469645:225796 +k1,22848:26249882,13469645:225797 +k1,22848:29460188,13469645:225796 +k1,22848:30217482,13469645:225797 +k1,22848:31094706,13469645:225796 +k1,22848:32583029,13469645:0 +) +(1,22849:6630773,14334725:25952256,513147,134348 +k1,22848:8293750,14334725:295240 +k1,22848:9359692,14334725:295239 +k1,22848:12145955,14334725:295240 +k1,22848:13718491,14334725:295239 +k1,22848:15205176,14334725:295240 +k1,22848:17762718,14334725:295239 +k1,22848:18689725,14334725:295240 +k1,22848:20227528,14334725:295240 +k1,22848:21284295,14334725:295239 +k1,22848:23314928,14334725:295240 +k1,22848:24629252,14334725:295239 +k1,22848:26577965,14334725:295240 +k1,22848:29397651,14334725:295239 +k1,22848:31189078,14334725:295240 +k1,22848:32583029,14334725:0 +) +(1,22849:6630773,15199805:25952256,513147,134348 +k1,22848:9646938,15199805:253822 +(1,22848:9646938,15199805:0,452978,115847 +r1,22879:11060339,15199805:1413401,568825,115847 +k1,22848:9646938,15199805:-1413401 +) +(1,22848:9646938,15199805:1413401,452978,115847 +k1,22848:9646938,15199805:3277 +h1,22848:11057062,15199805:0,411205,112570 +) +k1,22848:11314161,15199805:253822 +k1,22848:12250868,15199805:253822 +k1,22848:15312252,15199805:253822 +k1,22848:18328417,15199805:253822 +k1,22848:21597550,15199805:253822 +k1,22848:23634607,15199805:253822 +k1,22848:26259522,15199805:253822 +k1,22848:28009531,15199805:253822 +k1,22848:29211004,15199805:253822 +k1,22848:29820686,15199805:253822 +k1,22848:32583029,15199805:0 +) +(1,22849:6630773,16064885:25952256,505283,126483 +g1,22848:8219365,16064885 +g1,22848:9526808,16064885 +g1,22848:11298246,16064885 +(1,22848:11298246,16064885:0,452978,115847 +r1,22879:13415071,16064885:2116825,568825,115847 +k1,22848:11298246,16064885:-2116825 +) +(1,22848:11298246,16064885:2116825,452978,115847 +k1,22848:11298246,16064885:3277 +h1,22848:13411794,16064885:0,411205,112570 +) +g1,22848:13614300,16064885 +g1,22848:15004974,16064885 +(1,22848:15004974,16064885:0,414482,115847 +r1,22879:16770087,16064885:1765113,530329,115847 +k1,22848:15004974,16064885:-1765113 +) +(1,22848:15004974,16064885:1765113,414482,115847 +k1,22848:15004974,16064885:3277 +h1,22848:16766810,16064885:0,411205,112570 +) +g1,22848:16969316,16064885 +g1,22848:18160105,16064885 +g1,22848:20071790,16064885 +g1,22848:20922447,16064885 +g1,22848:22651942,16064885 +g1,22848:23502599,16064885 +g1,22848:24449594,16064885 +k1,22849:32583029,16064885:6086746 +g1,22849:32583029,16064885 +) +v1,22851:6630773,16929965:0,393216,0 +(1,22852:6630773,21662190:25952256,5125441,0 +g1,22852:6630773,21662190 +g1,22852:6237557,21662190 +r1,22879:6368629,21662190:131072,5125441,0 +g1,22852:6567858,21662190 +g1,22852:6764466,21662190 +[1,22852:6764466,21662190:25818563,5125441,0 +(1,22852:6764466,17202442:25818563,665693,196608 +(1,22851:6764466,17202442:0,665693,196608 +r1,22879:7868133,17202442:1103667,862301,196608 +k1,22851:6764466,17202442:-1103667 +) +(1,22851:6764466,17202442:1103667,665693,196608 +) +k1,22851:8098917,17202442:230784 +k1,22851:9825135,17202442:327680 +k1,22851:11696942,17202442:230785 +k1,22851:12283586,17202442:230784 +k1,22851:16030377,17202442:230784 +k1,22851:18947483,17202442:230785 +k1,22851:20567630,17202442:230784 +k1,22851:22075711,17202442:230784 +k1,22851:22965787,17202442:230784 +k1,22851:24655403,17202442:230785 +k1,22851:27503040,17202442:230784 +k1,22851:29089109,17202442:230784 +k1,22851:30081422,17202442:230785 +k1,22851:31841161,17202442:230784 +k1,22851:32583029,17202442:0 +) +(1,22852:6764466,18067522:25818563,513147,134348 +k1,22851:8345278,18067522:225527 +k1,22851:9332334,18067522:225528 +k1,22851:11086816,18067522:225527 +k1,22851:11525309,18067522:225501 +k1,22851:12566104,18067522:225527 +k1,22851:13857903,18067522:225528 +k1,22851:15619594,18067522:225527 +k1,22851:16496549,18067522:225527 +k1,22851:18457470,18067522:225528 +k1,22851:19702082,18067522:225527 +k1,22851:22830199,18067522:225527 +k1,22851:23671765,18067522:225528 +k1,22851:24916377,18067522:225527 +k1,22851:29176300,18067522:225527 +k1,22851:30061120,18067522:225528 +k1,22851:31305732,18067522:225527 +k1,22851:32583029,18067522:0 +) +(1,22852:6764466,18932602:25818563,513147,134348 +k1,22851:7618400,18932602:167772 +k1,22851:9993425,18932602:167772 +k1,22851:11233366,18932602:167772 +k1,22851:12060430,18932602:167772 +k1,22851:14223773,18932602:167772 +k1,22851:17630334,18932602:167772 +k1,22851:18457399,18932602:167773 +k1,22851:19828412,18932602:167772 +k1,22851:23514812,18932602:167772 +k1,22851:24334012,18932602:167772 +k1,22851:25693229,18932602:167772 +k1,22851:29918990,18932602:167772 +k1,22851:32583029,18932602:0 +) +(1,22852:6764466,19797682:25818563,513147,134348 +k1,22851:7615966,19797682:235462 +k1,22851:8622130,19797682:235461 +k1,22851:11469857,19797682:235462 +k1,22851:13793950,19797682:235461 +k1,22851:16648231,19797682:235462 +k1,22851:18189825,19797682:235461 +k1,22851:19186815,19797682:235462 +k1,22851:22054857,19797682:235461 +k1,22851:23125903,19797682:235462 +k1,22851:24380449,19797682:235461 +k1,22851:27302232,19797682:235462 +k1,22851:28814990,19797682:235461 +k1,22851:29666490,19797682:235462 +k1,22851:31896867,19797682:235461 +k1,22851:32583029,19797682:0 +) +(1,22852:6764466,20662762:25818563,513147,134348 +k1,22851:7373698,20662762:253372 +k1,22851:8878152,20662762:253372 +k1,22851:9747563,20662762:253373 +k1,22851:13496625,20662762:253372 +k1,22851:14941442,20662762:253372 +k1,22851:16648403,20662762:253372 +k1,22851:18637169,20662762:253373 +k1,22851:21607664,20662762:253372 +k1,22851:22477074,20662762:253372 +k1,22851:23749531,20662762:253372 +k1,22851:27125695,20662762:253373 +k1,22851:28038359,20662762:253372 +k1,22851:31563944,20662762:253372 +k1,22851:32583029,20662762:0 +) +(1,22852:6764466,21527842:25818563,513147,134348 +g1,22851:9352482,21527842 +g1,22851:11640343,21527842 +g1,22851:12498864,21527842 +g1,22851:13717178,21527842 +g1,22851:15193704,21527842 +g1,22851:16584378,21527842 +g1,22851:20055820,21527842 +g1,22851:21043447,21527842 +g1,22851:24636786,21527842 +g1,22851:26027460,21527842 +k1,22852:32583029,21527842:2403864 +g1,22852:32583029,21527842 +) +] +g1,22852:32583029,21662190 +) +h1,22852:6630773,21662190:0,0,0 +(1,22854:6630773,24493350:25952256,32768,229376 +(1,22854:6630773,24493350:0,32768,229376 +(1,22854:6630773,24493350:5505024,32768,229376 +r1,22879:12135797,24493350:5505024,262144,229376 +) +k1,22854:6630773,24493350:-5505024 +) +(1,22854:6630773,24493350:25952256,32768,0 +r1,22879:32583029,24493350:25952256,32768,0 +) +) +(1,22854:6630773,26125202:25952256,615776,161218 +(1,22854:6630773,26125202:2464678,582746,14155 +g1,22854:6630773,26125202 +g1,22854:9095451,26125202 +) +g1,22854:12689446,26125202 +g1,22854:14532056,26125202 +g1,22854:15589807,26125202 +k1,22854:32583029,26125202:15051521 +g1,22854:32583029,26125202 +) +(1,22857:6630773,27383498:25952256,513147,134348 +k1,22856:8435809,27383498:242658 +k1,22856:9329895,27383498:242658 +k1,22856:10320319,27383498:242658 +k1,22856:13736886,27383498:242658 +k1,22856:14592306,27383498:242658 +k1,22856:15190824,27383498:242658 +k1,22856:17128243,27383498:242658 +k1,22856:20129310,27383498:242657 +k1,22856:21054853,27383498:242658 +k1,22856:24453070,27383498:242658 +k1,22856:25381890,27383498:242658 +k1,22856:26946409,27383498:242658 +k1,22856:27848359,27383498:242658 +k1,22856:29110102,27383498:242658 +k1,22856:31006233,27383498:242658 +k1,22856:32583029,27383498:0 +) +(1,22857:6630773,28248578:25952256,505283,126483 +k1,22856:8324581,28248578:163542 +k1,22856:9139551,28248578:163542 +k1,22856:10050859,28248578:163542 +k1,22856:13495133,28248578:163542 +k1,22856:14274713,28248578:163542 +k1,22856:16780512,28248578:163542 +k1,22856:19772588,28248578:163542 +k1,22856:22426498,28248578:163542 +k1,22856:24492550,28248578:163542 +k1,22856:25847537,28248578:163542 +k1,22856:28705264,28248578:163542 +k1,22856:32583029,28248578:0 +) +(1,22857:6630773,29113658:25952256,505283,134348 +k1,22856:8380857,29113658:152316 +k1,22856:9724619,29113658:152317 +k1,22856:12758553,29113658:152316 +k1,22856:13739900,29113658:152317 +k1,22856:17047775,29113658:152316 +k1,22856:18403332,29113658:152316 +k1,22856:22274162,29113658:152317 +k1,22856:23294830,29113658:152316 +k1,22856:24977413,29113658:152317 +k1,22856:25781157,29113658:152316 +k1,22856:27575806,29113658:152317 +k1,22856:29335720,29113658:152316 +k1,22856:32583029,29113658:0 +) +(1,22857:6630773,29978738:25952256,505283,134348 +k1,22856:8079472,29978738:257254 +k1,22856:10066221,29978738:257254 +k1,22856:13452819,29978738:257254 +k1,22856:14471601,29978738:257254 +k1,22856:17725816,29978738:257254 +k1,22856:20051386,29978738:257254 +k1,22856:20960067,29978738:257253 +k1,22856:22236406,29978738:257254 +k1,22856:25826821,29978738:257254 +k1,22856:27368581,29978738:257254 +k1,22856:29156101,29978738:257254 +k1,22856:30064783,29978738:257254 +k1,22856:31069803,29978738:257254 +k1,22856:32583029,29978738:0 +) +(1,22857:6630773,30843818:25952256,505283,126483 +g1,22856:9501249,30843818 +k1,22857:32583029,30843818:21273642 +g1,22857:32583029,30843818 +) +(1,22859:6630773,31708898:25952256,513147,126483 +h1,22858:6630773,31708898:983040,0,0 +k1,22858:8445667,31708898:204019 +k1,22858:9005545,31708898:204018 +k1,22858:11334241,31708898:204019 +k1,22858:13871996,31708898:204018 +k1,22858:14735307,31708898:204019 +k1,22858:16142567,31708898:204019 +k1,22858:19331095,31708898:204018 +k1,22858:20742287,31708898:204019 +k1,22858:22459532,31708898:204019 +k1,22858:23279588,31708898:204018 +k1,22858:25235384,31708898:204019 +k1,22858:28431121,31708898:204018 +k1,22858:30664135,31708898:204019 +k1,22858:32583029,31708898:0 +) +(1,22859:6630773,32573978:25952256,513147,126483 +g1,22858:7185862,32573978 +g1,22858:8819019,32573978 +g1,22858:10295545,32573978 +g1,22858:11701947,32573978 +g1,22858:14736263,32573978 +g1,22858:15697020,32573978 +g1,22858:18562254,32573978 +g1,22858:19420775,32573978 +g1,22858:22382347,32573978 +g1,22858:24469668,32573978 +g1,22858:25351782,32573978 +k1,22859:32583029,32573978:5276308 +g1,22859:32583029,32573978 +) +(1,22860:6630773,34690796:25952256,555811,147783 +(1,22860:6630773,34690796:2899444,534184,12975 +g1,22860:6630773,34690796 +g1,22860:9530217,34690796 +) +g1,22860:12167976,34690796 +g1,22860:13822433,34690796 +g1,22860:16269875,34690796 +g1,22860:17837103,34690796 +g1,22860:20247780,34690796 +g1,22860:21178457,34690796 +k1,22860:32583029,34690796:8083404 +g1,22860:32583029,34690796 +) +(1,22863:6630773,35949092:25952256,505283,134348 +k1,22862:8616860,35949092:232999 +k1,22862:11422146,35949092:232998 +k1,22862:13262743,35949092:232999 +k1,22862:14889692,35949092:232998 +k1,22862:18124894,35949092:232999 +k1,22862:20647720,35949092:232998 +k1,22862:21872279,35949092:232999 +k1,22862:25367004,35949092:232998 +k1,22862:27335396,35949092:232999 +k1,22862:30315008,35949092:232998 +(1,22862:30315008,35949092:0,414482,115847 +r1,22879:30673274,35949092:358266,530329,115847 +k1,22862:30315008,35949092:-358266 +) +(1,22862:30315008,35949092:358266,414482,115847 +k1,22862:30315008,35949092:3277 +h1,22862:30669997,35949092:0,411205,112570 +) +k1,22862:30906273,35949092:232999 +k1,22862:31790699,35949092:232998 +k1,22863:32583029,35949092:0 +) +(1,22863:6630773,36814172:25952256,513147,134348 +k1,22862:9083195,36814172:201916 +k1,22862:11965535,36814172:201917 +k1,22862:13186536,36814172:201916 +k1,22862:16581366,36814172:201916 +k1,22862:20884526,36814172:201917 +k1,22862:22283129,36814172:201916 +k1,22862:25510842,36814172:201916 +k1,22862:26997264,36814172:201916 +k1,22862:29128561,36814172:201917 +k1,22862:30607774,36814172:201916 +k1,22862:32583029,36814172:0 +) +(1,22863:6630773,37679252:25952256,513147,134348 +k1,22862:8938145,37679252:231191 +k1,22862:10280826,37679252:231190 +k1,22862:11503577,37679252:231191 +k1,22862:15771785,37679252:231190 +k1,22862:16662268,37679252:231191 +k1,22862:19183286,37679252:231190 +k1,22862:20605922,37679252:231191 +k1,22862:21856197,37679252:231190 +k1,22862:24377216,37679252:231191 +k1,22862:25988594,37679252:231190 +k1,22862:28230430,37679252:231191 +k1,22862:29565902,37679252:231190 +k1,22862:30544859,37679252:231191 +k1,22862:32583029,37679252:0 +) +(1,22863:6630773,38544332:25952256,505283,126483 +g1,22862:7446040,38544332 +g1,22862:10660580,38544332 +g1,22862:12051254,38544332 +g1,22862:13740772,38544332 +g1,22862:15925087,38544332 +g1,22862:18089741,38544332 +g1,22862:18940398,38544332 +g1,22862:21810874,38544332 +g1,22862:23617701,38544332 +g1,22862:24429692,38544332 +g1,22862:24984781,38544332 +g1,22862:26637599,38544332 +k1,22863:32583029,38544332:4467594 +g1,22863:32583029,38544332 +) +(1,22865:6630773,39409412:25952256,505283,134348 +h1,22864:6630773,39409412:983040,0,0 +k1,22864:8383215,39409412:281814 +k1,22864:9942408,39409412:281896 +k1,22864:11328587,39409412:281897 +k1,22864:13421899,39409412:281897 +k1,22864:14355224,39409412:281897 +k1,22864:17148460,39409412:281896 +(1,22864:17148460,39409412:0,452978,115847 +r1,22879:19265285,39409412:2116825,568825,115847 +k1,22864:17148460,39409412:-2116825 +) +(1,22864:17148460,39409412:2116825,452978,115847 +k1,22864:17148460,39409412:3277 +h1,22864:19262008,39409412:0,411205,112570 +) +k1,22864:19547182,39409412:281897 +k1,22864:21020524,39409412:281897 +k1,22864:22544984,39409412:281897 +k1,22864:23845965,39409412:281896 +k1,22864:25808205,39409412:281897 +k1,22864:28868829,39409412:281897 +k1,22864:29912254,39409412:281897 +k1,22864:30550010,39409412:281896 +k1,22864:31931601,39409412:281897 +k1,22864:32583029,39409412:0 +) +(1,22865:6630773,40274492:25952256,513147,115847 +g1,22864:9525498,40274492 +(1,22864:9525498,40274492:0,452978,115847 +r1,22879:11642323,40274492:2116825,568825,115847 +k1,22864:9525498,40274492:-2116825 +) +(1,22864:9525498,40274492:2116825,452978,115847 +k1,22864:9525498,40274492:3277 +h1,22864:11639046,40274492:0,411205,112570 +) +g1,22864:11841552,40274492 +g1,22864:13308247,40274492 +g1,22864:13863336,40274492 +g1,22864:16824908,40274492 +g1,22864:19709147,40274492 +(1,22864:19709147,40274492:0,452978,115847 +r1,22879:22529396,40274492:2820249,568825,115847 +k1,22864:19709147,40274492:-2820249 +) +(1,22864:19709147,40274492:2820249,452978,115847 +k1,22864:19709147,40274492:3277 +h1,22864:22526119,40274492:0,411205,112570 +) +k1,22865:32583029,40274492:10001205 +g1,22865:32583029,40274492 +) +v1,22867:6630773,40959347:0,393216,0 +(1,22879:6630773,45402554:25952256,4836423,196608 +g1,22879:6630773,45402554 +g1,22879:6630773,45402554 +g1,22879:6434165,45402554 +(1,22879:6434165,45402554:0,4836423,196608 +r1,22879:32779637,45402554:26345472,5033031,196608 +k1,22879:6434165,45402554:-26345472 +) +(1,22879:6434165,45402554:26345472,4836423,196608 +[1,22879:6630773,45402554:25952256,4639815,0 +(1,22869:6630773,41187178:25952256,424439,112852 +(1,22868:6630773,41187178:0,0,0 +g1,22868:6630773,41187178 +g1,22868:6630773,41187178 +g1,22868:6303093,41187178 +(1,22868:6303093,41187178:0,0,0 +) +g1,22868:6630773,41187178 +) +g1,22869:8954451,41187178 +g1,22869:9950313,41187178 +g1,22869:13933761,41187178 +g1,22869:14597669,41187178 +k1,22869:14597669,41187178:0 +h1,22869:16921347,41187178:0,0,0 +k1,22869:32583029,41187178:15661682 +g1,22869:32583029,41187178 +) +(1,22870:6630773,41872033:25952256,424439,112852 +h1,22870:6630773,41872033:0,0,0 +g1,22870:6962727,41872033 +g1,22870:7294681,41872033 +g1,22870:7626635,41872033 +g1,22870:7958589,41872033 +g1,22870:8290543,41872033 +g1,22870:8622497,41872033 +g1,22870:8954451,41872033 +g1,22870:9286405,41872033 +g1,22870:9618359,41872033 +g1,22870:9950313,41872033 +g1,22870:10282267,41872033 +g1,22870:10614221,41872033 +g1,22870:10946175,41872033 +g1,22870:11278129,41872033 +g1,22870:11610083,41872033 +g1,22870:11942037,41872033 +g1,22870:12273991,41872033 +g1,22870:14265715,41872033 +g1,22870:14929623,41872033 +g1,22870:16921347,41872033 +g1,22870:17585255,41872033 +g1,22870:18249163,41872033 +k1,22870:18249163,41872033:0 +h1,22870:19576979,41872033:0,0,0 +k1,22870:32583029,41872033:13006050 +g1,22870:32583029,41872033 +) +(1,22871:6630773,42556888:25952256,431045,106246 +h1,22871:6630773,42556888:0,0,0 +g1,22871:6962727,42556888 +g1,22871:7294681,42556888 +g1,22871:7626635,42556888 +g1,22871:7958589,42556888 +g1,22871:8290543,42556888 +g1,22871:8622497,42556888 +g1,22871:8954451,42556888 +g1,22871:9286405,42556888 +g1,22871:9618359,42556888 +g1,22871:9950313,42556888 +g1,22871:10282267,42556888 +g1,22871:10614221,42556888 +g1,22871:10946175,42556888 +g1,22871:11278129,42556888 +g1,22871:11610083,42556888 +g1,22871:11942037,42556888 +g1,22871:12273991,42556888 +g1,22871:14597669,42556888 +g1,22871:15261577,42556888 +g1,22871:19908933,42556888 +h1,22871:20240887,42556888:0,0,0 +k1,22871:32583029,42556888:12342142 +g1,22871:32583029,42556888 +) +(1,22872:6630773,43241743:25952256,424439,112852 +h1,22872:6630773,43241743:0,0,0 +g1,22872:6962727,43241743 +g1,22872:7294681,43241743 +g1,22872:7626635,43241743 +g1,22872:7958589,43241743 +g1,22872:8290543,43241743 +g1,22872:8622497,43241743 +g1,22872:8954451,43241743 +g1,22872:9286405,43241743 +g1,22872:9618359,43241743 +g1,22872:9950313,43241743 +k1,22872:9950313,43241743:0 +h1,22872:13933760,43241743:0,0,0 +k1,22872:32583028,43241743:18649268 +g1,22872:32583028,43241743 +) +(1,22873:6630773,43926598:25952256,0,0 +h1,22873:6630773,43926598:0,0,0 +h1,22873:6630773,43926598:0,0,0 +k1,22873:32583029,43926598:25952256 +g1,22873:32583029,43926598 +) +(1,22874:6630773,44611453:25952256,424439,112852 +h1,22874:6630773,44611453:0,0,0 +g1,22874:9618358,44611453 +g1,22874:10614220,44611453 +g1,22874:12937898,44611453 +g1,22874:13601806,44611453 +g1,22874:16257438,44611453 +k1,22874:16257438,44611453:0 +h1,22874:21236747,44611453:0,0,0 +k1,22874:32583029,44611453:11346282 +g1,22874:32583029,44611453 +) +(1,22875:6630773,45296308:25952256,424439,106246 +h1,22875:6630773,45296308:0,0,0 +g1,22875:6962727,45296308 +g1,22875:7294681,45296308 +g1,22875:7626635,45296308 +g1,22875:7958589,45296308 +g1,22875:8290543,45296308 +g1,22875:8622497,45296308 +g1,22875:8954451,45296308 +g1,22875:9286405,45296308 +g1,22875:9618359,45296308 +g1,22875:9950313,45296308 +g1,22875:10282267,45296308 +g1,22875:10614221,45296308 +g1,22875:10946175,45296308 +g1,22875:11278129,45296308 +g1,22875:11610083,45296308 +g1,22875:11942037,45296308 +g1,22875:12273991,45296308 +g1,22875:12937899,45296308 +g1,22875:13601807,45296308 +g1,22875:15925485,45296308 +k1,22875:15925485,45296308:0 +h1,22875:19908932,45296308:0,0,0 +k1,22875:32583029,45296308:12674097 +g1,22875:32583029,45296308 +) +] +) +g1,22879:32583029,45402554 +g1,22879:6630773,45402554 +g1,22879:6630773,45402554 +g1,22879:32583029,45402554 +g1,22879:32583029,45402554 +) +] +(1,22879:32583029,45706769:0,0,0 +g1,22879:32583029,45706769 +) +) +] +(1,22879:6630773,47279633:25952256,0,0 +h1,22879:6630773,47279633:25952256,0,0 +) +] +(1,22879:4262630,4025873:0,0,0 +[1,22879:-473656,4025873:0,0,0 +(1,22879:-473656,-710413:0,0,0 +(1,22879:-473656,-710413:0,0,0 +g1,22879:-473656,-710413 +) +g1,22879:-473656,-710413 ) ] ) ] !25524 -}392 -Input:4327:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4328:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4329:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4330:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}393 Input:4331:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4332:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4333:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -396613,1922 +396814,1922 @@ Input:4336:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4337:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4338:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4339:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4340:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4341:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1208 -{393 -[1,22940:4262630,47279633:28320399,43253760,0 -(1,22940:4262630,4025873:0,0,0 -[1,22940:-473656,4025873:0,0,0 -(1,22940:-473656,-710413:0,0,0 -(1,22940:-473656,-644877:0,0,0 -k1,22940:-473656,-644877:-65536 +{394 +[1,22938:4262630,47279633:28320399,43253760,0 +(1,22938:4262630,4025873:0,0,0 +[1,22938:-473656,4025873:0,0,0 +(1,22938:-473656,-710413:0,0,0 +(1,22938:-473656,-644877:0,0,0 +k1,22938:-473656,-644877:-65536 ) -(1,22940:-473656,4736287:0,0,0 -k1,22940:-473656,4736287:5209943 +(1,22938:-473656,4736287:0,0,0 +k1,22938:-473656,4736287:5209943 ) -g1,22940:-473656,-710413 +g1,22938:-473656,-710413 ) ] ) -[1,22940:6630773,47279633:25952256,43253760,0 -[1,22940:6630773,4812305:25952256,786432,0 -(1,22940:6630773,4812305:25952256,513147,126483 -(1,22940:6630773,4812305:25952256,513147,126483 -g1,22940:3078558,4812305 -[1,22940:3078558,4812305:0,0,0 -(1,22940:3078558,2439708:0,1703936,0 -k1,22940:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,22940:2537886,2439708:1179648,16384,0 +[1,22938:6630773,47279633:25952256,43253760,0 +[1,22938:6630773,4812305:25952256,786432,0 +(1,22938:6630773,4812305:25952256,513147,126483 +(1,22938:6630773,4812305:25952256,513147,126483 +g1,22938:3078558,4812305 +[1,22938:3078558,4812305:0,0,0 +(1,22938:3078558,2439708:0,1703936,0 +k1,22938:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,22938:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,22940:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,22938:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,22940:3078558,4812305:0,0,0 -(1,22940:3078558,2439708:0,1703936,0 -g1,22940:29030814,2439708 -g1,22940:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,22940:36151628,1915420:16384,1179648,0 +[1,22938:3078558,4812305:0,0,0 +(1,22938:3078558,2439708:0,1703936,0 +g1,22938:29030814,2439708 +g1,22938:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,22938:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,22940:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,22938:37855564,2439708:1179648,16384,0 ) ) -k1,22940:3078556,2439708:-34777008 +k1,22938:3078556,2439708:-34777008 ) ] -[1,22940:3078558,4812305:0,0,0 -(1,22940:3078558,49800853:0,16384,2228224 -k1,22940:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,22940:2537886,49800853:1179648,16384,0 +[1,22938:3078558,4812305:0,0,0 +(1,22938:3078558,49800853:0,16384,2228224 +k1,22938:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,22938:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,22940:3078558,51504789:16384,1179648,0 -) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,22940:3078558,4812305:0,0,0 -(1,22940:3078558,49800853:0,16384,2228224 -g1,22940:29030814,49800853 -g1,22940:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,22940:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,22940:37855564,49800853:1179648,16384,0 -) -) -k1,22940:3078556,49800853:-34777008 -) -] -g1,22940:6630773,4812305 -k1,22940:21386205,4812305:13560055 -g1,22940:21999622,4812305 -g1,22940:25611966,4812305 -g1,22940:28956923,4812305 -g1,22940:29772190,4812305 -) -) -] -[1,22940:6630773,45706769:25952256,40108032,0 -(1,22940:6630773,45706769:25952256,40108032,0 -(1,22940:6630773,45706769:0,0,0 -g1,22940:6630773,45706769 -) -[1,22940:6630773,45706769:25952256,40108032,0 -v1,22881:6630773,6254097:0,393216,0 -(1,22881:6630773,7279635:25952256,1418754,196608 -g1,22881:6630773,7279635 -g1,22881:6630773,7279635 -g1,22881:6434165,7279635 -(1,22881:6434165,7279635:0,1418754,196608 -r1,22940:32779637,7279635:26345472,1615362,196608 -k1,22881:6434165,7279635:-26345472 -) -(1,22881:6434165,7279635:26345472,1418754,196608 -[1,22881:6630773,7279635:25952256,1222146,0 -(1,22878:6630773,6488534:25952256,431045,106246 -h1,22878:6630773,6488534:0,0,0 -g1,22878:6962727,6488534 -g1,22878:7294681,6488534 -g1,22878:7626635,6488534 -g1,22878:7958589,6488534 -g1,22878:8290543,6488534 -g1,22878:8622497,6488534 -g1,22878:8954451,6488534 -g1,22878:9286405,6488534 -g1,22878:9618359,6488534 -g1,22878:9950313,6488534 -g1,22878:10282267,6488534 -g1,22878:10614221,6488534 -g1,22878:10946175,6488534 -g1,22878:11278129,6488534 -g1,22878:11610083,6488534 -g1,22878:11942037,6488534 -g1,22878:12273991,6488534 -g1,22878:14597669,6488534 -g1,22878:15261577,6488534 -g1,22878:17917209,6488534 -k1,22878:17917209,6488534:0 -h1,22878:22896518,6488534:0,0,0 -k1,22878:32583029,6488534:9686511 -g1,22878:32583029,6488534 -) -(1,22879:6630773,7173389:25952256,431045,106246 -h1,22879:6630773,7173389:0,0,0 -g1,22879:6962727,7173389 -g1,22879:7294681,7173389 -g1,22879:7626635,7173389 -g1,22879:7958589,7173389 -g1,22879:8290543,7173389 -g1,22879:8622497,7173389 -g1,22879:8954451,7173389 -g1,22879:9286405,7173389 -g1,22879:9618359,7173389 -g1,22879:9950313,7173389 -g1,22879:10282267,7173389 -g1,22879:10614221,7173389 -g1,22879:10946175,7173389 -g1,22879:11278129,7173389 -g1,22879:11610083,7173389 -g1,22879:11942037,7173389 -g1,22879:12273991,7173389 -g1,22879:14265715,7173389 -g1,22879:14929623,7173389 -g1,22879:17585255,7173389 -h1,22879:22564564,7173389:0,0,0 -k1,22879:32583029,7173389:10018465 -g1,22879:32583029,7173389 -) -] -) -g1,22881:32583029,7279635 -g1,22881:6630773,7279635 -g1,22881:6630773,7279635 -g1,22881:32583029,7279635 -g1,22881:32583029,7279635 -) -h1,22881:6630773,7476243:0,0,0 -v1,22885:6630773,8341323:0,393216,0 -(1,22886:6630773,10567008:25952256,2618901,0 -g1,22886:6630773,10567008 -g1,22886:6237557,10567008 -r1,22940:6368629,10567008:131072,2618901,0 -g1,22886:6567858,10567008 -g1,22886:6764466,10567008 -[1,22886:6764466,10567008:25818563,2618901,0 -(1,22886:6764466,8702500:25818563,754393,260573 -(1,22885:6764466,8702500:0,754393,260573 -r1,22940:7856192,8702500:1091726,1014966,260573 -k1,22885:6764466,8702500:-1091726 -) -(1,22885:6764466,8702500:1091726,754393,260573 -) -k1,22885:8051042,8702500:194850 -k1,22885:8378722,8702500:327680 -k1,22885:10356806,8702500:194849 -k1,22885:14035550,8702500:194850 -k1,22885:15837997,8702500:194849 -k1,22885:17426798,8702500:194850 -k1,22885:18640732,8702500:194849 -(1,22885:18640732,8702500:0,414482,115847 -r1,22940:18998998,8702500:358266,530329,115847 -k1,22885:18640732,8702500:-358266 -) -(1,22885:18640732,8702500:358266,414482,115847 -k1,22885:18640732,8702500:3277 -h1,22885:18995721,8702500:0,411205,112570 -) -k1,22885:19193848,8702500:194850 -k1,22885:22308981,8702500:194849 -k1,22885:23522916,8702500:194850 -k1,22885:28123751,8702500:194849 -k1,22885:30961013,8702500:194850 -k1,22885:32583029,8702500:0 -) -(1,22886:6764466,9567580:25818563,513147,134348 -k1,22885:7723735,9567580:211503 -k1,22885:8291098,9567580:211503 -(1,22885:8291098,9567580:0,452978,122846 -r1,22940:9704499,9567580:1413401,575824,122846 -k1,22885:8291098,9567580:-1413401 -) -(1,22885:8291098,9567580:1413401,452978,122846 -k1,22885:8291098,9567580:3277 -h1,22885:9701222,9567580:0,411205,112570 -) -k1,22885:9916001,9567580:211502 -k1,22885:12260701,9567580:211503 -k1,22885:13668891,9567580:211503 -k1,22885:14954529,9567580:211503 -k1,22885:17808443,9567580:211502 -k1,22885:18551443,9567580:211503 -k1,22885:20728371,9567580:211503 -k1,22885:21591302,9567580:211503 -k1,22885:22821889,9567580:211502 -(1,22885:22821889,9567580:0,452978,122846 -r1,22940:24235290,9567580:1413401,575824,122846 -k1,22885:22821889,9567580:-1413401 -) -(1,22885:22821889,9567580:1413401,452978,122846 -k1,22885:22821889,9567580:3277 -h1,22885:24232013,9567580:0,411205,112570 -) -k1,22885:24446793,9567580:211503 -k1,22885:25935593,9567580:211503 -k1,22885:28106622,9567580:211503 -k1,22885:29509569,9567580:211502 -k1,22885:30740157,9567580:211503 -k1,22885:32583029,9567580:0 -) -(1,22886:6764466,10432660:25818563,505283,134348 -g1,22885:9742422,10432660 -g1,22885:10627813,10432660 -g1,22885:11182902,10432660 -(1,22885:11182902,10432660:0,452978,122846 -r1,22940:12596303,10432660:1413401,575824,122846 -k1,22885:11182902,10432660:-1413401 -) -(1,22885:11182902,10432660:1413401,452978,122846 -k1,22885:11182902,10432660:3277 -h1,22885:12593026,10432660:0,411205,112570 -) -g1,22885:12795532,10432660 -g1,22885:14272058,10432660 -k1,22886:32583029,10432660:16299016 -g1,22886:32583029,10432660 -) -] -g1,22886:32583029,10567008 -) -h1,22886:6630773,10567008:0,0,0 -(1,22889:6630773,11432088:25952256,513147,134348 -h1,22888:6630773,11432088:983040,0,0 -k1,22888:9088373,11432088:277873 -k1,22888:10772648,11432088:277872 -k1,22888:12327818,11432088:277873 -k1,22888:13709972,11432088:277872 -k1,22888:14735611,11432088:277873 -k1,22888:18370892,11432088:277872 -k1,22888:20216386,11432088:277873 -k1,22888:21513343,11432088:277872 -k1,22888:24081044,11432088:277873 -k1,22888:26170331,11432088:277872 -k1,22888:27099632,11432088:277873 -k1,22888:30392815,11432088:277872 -k1,22888:32051532,11432088:277873 -k1,22888:32583029,11432088:0 -) -(1,22889:6630773,12297168:25952256,513147,134348 -k1,22888:8860427,12297168:252433 -k1,22888:10810897,12297168:252432 -k1,22888:13635618,12297168:252433 -k1,22888:16119552,12297168:252433 -k1,22888:17979583,12297168:252433 -k1,22888:19516521,12297168:252432 -k1,22888:21949337,12297168:252433 -k1,22888:23676985,12297168:252433 -k1,22888:27210150,12297168:252433 -k1,22888:29480436,12297168:252432 -k1,22888:30929556,12297168:252433 -k1,22888:32583029,12297168:0 -) -(1,22889:6630773,13162248:25952256,505283,134348 -k1,22888:9881776,13162248:266493 -k1,22888:11252551,13162248:266493 -k1,22888:12266810,13162248:266493 -k1,22888:14046529,13162248:266493 -k1,22888:15706973,13162248:266493 -k1,22888:17675436,13162248:266493 -k1,22888:22043172,13162248:266493 -k1,22888:24350456,13162248:266493 -k1,22888:25636034,13162248:266493 -k1,22888:28192355,13162248:266493 -k1,22888:29450408,13162248:266493 -k1,22888:32583029,13162248:0 -) -(1,22889:6630773,14027328:25952256,513147,126483 -g1,22888:8197739,14027328 -g1,22888:11623961,14027328 -g1,22888:15750763,14027328 -g1,22888:16601420,14027328 -g1,22888:18730029,14027328 -g1,22888:21691601,14027328 -g1,22888:24554869,14027328 -g1,22888:25413390,14027328 -g1,22888:26631704,14027328 -g1,22888:28484406,14027328 -k1,22889:32583029,14027328:2768898 -g1,22889:32583029,14027328 -) -v1,22891:6630773,14712183:0,393216,0 -(1,22897:6630773,16415970:25952256,2097003,196608 -g1,22897:6630773,16415970 -g1,22897:6630773,16415970 -g1,22897:6434165,16415970 -(1,22897:6434165,16415970:0,2097003,196608 -r1,22940:32779637,16415970:26345472,2293611,196608 -k1,22897:6434165,16415970:-26345472 -) -(1,22897:6434165,16415970:26345472,2097003,196608 -[1,22897:6630773,16415970:25952256,1900395,0 -(1,22893:6630773,14940014:25952256,424439,106246 -(1,22892:6630773,14940014:0,0,0 -g1,22892:6630773,14940014 -g1,22892:6630773,14940014 -g1,22892:6303093,14940014 -(1,22892:6303093,14940014:0,0,0 -) -g1,22892:6630773,14940014 -) -h1,22893:8622497,14940014:0,0,0 -k1,22893:32583029,14940014:23960532 -g1,22893:32583029,14940014 -) -(1,22894:6630773,15624869:25952256,424439,106246 -h1,22894:6630773,15624869:0,0,0 -g1,22894:8954451,15624869 -g1,22894:9618359,15624869 -g1,22894:12605944,15624869 -g1,22894:13269852,15624869 -k1,22894:13269852,15624869:0 -h1,22894:17253299,15624869:0,0,0 -k1,22894:32583029,15624869:15329730 -g1,22894:32583029,15624869 -) -(1,22895:6630773,16309724:25952256,424439,106246 -h1,22895:6630773,16309724:0,0,0 -g1,22895:8954451,16309724 -g1,22895:9618359,16309724 -g1,22895:12605944,16309724 -g1,22895:13269852,16309724 -g1,22895:17585253,16309724 -g1,22895:18249161,16309724 -g1,22895:20904793,16309724 -h1,22895:21900655,16309724:0,0,0 -k1,22895:32583029,16309724:10682374 -g1,22895:32583029,16309724 -) -] -) -g1,22897:32583029,16415970 -g1,22897:6630773,16415970 -g1,22897:6630773,16415970 -g1,22897:32583029,16415970 -g1,22897:32583029,16415970 -) -h1,22897:6630773,16612578:0,0,0 -(1,22901:6630773,17477658:25952256,505283,7863 -h1,22900:6630773,17477658:983040,0,0 -g1,22900:8766591,17477658 -g1,22900:10070102,17477658 -g1,22900:11555147,17477658 -g1,22900:13145050,17477658 -g1,22900:17402268,17477658 -k1,22901:32583029,17477658:12955159 -g1,22901:32583029,17477658 -) -v1,22903:6630773,18162513:0,393216,0 -(1,22908:6630773,19188051:25952256,1418754,196608 -g1,22908:6630773,19188051 -g1,22908:6630773,19188051 -g1,22908:6434165,19188051 -(1,22908:6434165,19188051:0,1418754,196608 -r1,22940:32779637,19188051:26345472,1615362,196608 -k1,22908:6434165,19188051:-26345472 -) -(1,22908:6434165,19188051:26345472,1418754,196608 -[1,22908:6630773,19188051:25952256,1222146,0 -(1,22905:6630773,18390344:25952256,424439,112852 -(1,22904:6630773,18390344:0,0,0 -g1,22904:6630773,18390344 -g1,22904:6630773,18390344 -g1,22904:6303093,18390344 -(1,22904:6303093,18390344:0,0,0 -) -g1,22904:6630773,18390344 -) -g1,22905:8622497,18390344 -g1,22905:9618359,18390344 -g1,22905:11942037,18390344 -g1,22905:12605945,18390344 -k1,22905:12605945,18390344:0 -h1,22905:22232610,18390344:0,0,0 -k1,22905:32583029,18390344:10350419 -g1,22905:32583029,18390344 -) -(1,22906:6630773,19075199:25952256,424439,112852 -h1,22906:6630773,19075199:0,0,0 -g1,22906:8622497,19075199 -g1,22906:9286405,19075199 -g1,22906:12273990,19075199 -g1,22906:12937898,19075199 -k1,22906:12937898,19075199:0 -h1,22906:16921345,19075199:0,0,0 -k1,22906:32583029,19075199:15661684 -g1,22906:32583029,19075199 -) -] -) -g1,22908:32583029,19188051 -g1,22908:6630773,19188051 -g1,22908:6630773,19188051 -g1,22908:32583029,19188051 -g1,22908:32583029,19188051 -) -h1,22908:6630773,19384659:0,0,0 -(1,22911:6630773,21501477:25952256,555811,147783 -(1,22911:6630773,21501477:2899444,534184,12975 -g1,22911:6630773,21501477 -g1,22911:9530217,21501477 -) -g1,22911:12167976,21501477 -g1,22911:13822433,21501477 -g1,22911:16269875,21501477 -g1,22911:17837103,21501477 -g1,22911:20247780,21501477 -g1,22911:21178457,21501477 -k1,22911:32583029,21501477:9900062 -g1,22911:32583029,21501477 -) -(1,22914:6630773,22759773:25952256,513147,134348 -k1,22913:7302571,22759773:194041 -k1,22913:8515696,22759773:194040 -k1,22913:10690235,22759773:194041 -k1,22913:11535703,22759773:194040 -k1,22913:12477510,22759773:194041 -k1,22913:13764035,22759773:194040 -k1,22913:16638499,22759773:194041 -k1,22913:17647807,22759773:194040 -k1,22913:18908119,22759773:194041 -k1,22913:21439829,22759773:194041 -k1,22913:21989729,22759773:194040 -(1,22913:21989729,22759773:0,452978,122846 -r1,22940:23403130,22759773:1413401,575824,122846 -k1,22913:21989729,22759773:-1413401 -) -(1,22913:21989729,22759773:1413401,452978,122846 -k1,22913:21989729,22759773:3277 -h1,22913:23399853,22759773:0,411205,112570 -) -k1,22913:23597171,22759773:194041 -k1,22913:25924408,22759773:194040 -k1,22913:27498637,22759773:194041 -k1,22913:28796959,22759773:194040 -k1,22913:29738766,22759773:194041 -k1,22913:32583029,22759773:0 -) -(1,22914:6630773,23624853:25952256,513147,134348 -k1,22913:8098406,23624853:200167 -k1,22913:8654433,23624853:200167 -k1,22913:9848126,23624853:200167 -k1,22913:11239738,23624853:200167 -k1,22913:13424990,23624853:200166 -k1,22913:15408392,23624853:200167 -k1,22913:16627644,23624853:200167 -k1,22913:17821337,23624853:200167 -k1,22913:18553001,23624853:200167 -k1,22913:20718593,23624853:200167 -k1,22913:21570188,23624853:200167 -k1,22913:22126215,23624853:200167 -(1,22913:22126215,23624853:0,452978,122846 -r1,22940:23539616,23624853:1413401,575824,122846 -k1,22913:22126215,23624853:-1413401 -) -(1,22913:22126215,23624853:1413401,452978,122846 -k1,22913:22126215,23624853:3277 -h1,22913:23536339,23624853:0,411205,112570 -) -k1,22913:23739782,23624853:200166 -k1,22913:25217246,23624853:200167 -k1,22913:27550610,23624853:200167 -k1,22913:28769862,23624853:200167 -k1,22913:31923737,23624853:200167 -k1,22913:32583029,23624853:0 -) -(1,22914:6630773,24489933:25952256,505283,134348 -g1,22913:7849087,24489933 -g1,22913:9041842,24489933 -g1,22913:10232631,24489933 -g1,22913:12397285,24489933 -g1,22913:13753224,24489933 -g1,22913:14713981,24489933 -g1,22913:16069920,24489933 -g1,22913:16920577,24489933 -g1,22913:18138891,24489933 -g1,22913:19615417,24489933 -g1,22913:23129457,24489933 -g1,22913:24837325,24489933 -k1,22914:32583029,24489933:5953950 -g1,22914:32583029,24489933 -) -v1,22916:6630773,25174788:0,393216,0 -(1,22921:6630773,26193720:25952256,1412148,196608 -g1,22921:6630773,26193720 -g1,22921:6630773,26193720 -g1,22921:6434165,26193720 -(1,22921:6434165,26193720:0,1412148,196608 -r1,22940:32779637,26193720:26345472,1608756,196608 -k1,22921:6434165,26193720:-26345472 -) -(1,22921:6434165,26193720:26345472,1412148,196608 -[1,22921:6630773,26193720:25952256,1215540,0 -(1,22918:6630773,25402619:25952256,424439,106246 -(1,22917:6630773,25402619:0,0,0 -g1,22917:6630773,25402619 -g1,22917:6630773,25402619 -g1,22917:6303093,25402619 -(1,22917:6303093,25402619:0,0,0 -) -g1,22917:6630773,25402619 -) -g1,22918:9286405,25402619 -g1,22918:10282267,25402619 -g1,22918:15261576,25402619 -k1,22918:15261576,25402619:0 -h1,22918:19576977,25402619:0,0,0 -k1,22918:32583029,25402619:13006052 -g1,22918:32583029,25402619 -) -(1,22919:6630773,26087474:25952256,407923,106246 -h1,22919:6630773,26087474:0,0,0 -g1,22919:7626635,26087474 -g1,22919:8290543,26087474 -h1,22919:10614221,26087474:0,0,0 -k1,22919:32583029,26087474:21968808 -g1,22919:32583029,26087474 -) -] -) -g1,22921:32583029,26193720 -g1,22921:6630773,26193720 -g1,22921:6630773,26193720 -g1,22921:32583029,26193720 -g1,22921:32583029,26193720 -) -h1,22921:6630773,26390328:0,0,0 -v1,22925:6630773,27255408:0,393216,0 -(1,22926:6630773,30249608:25952256,3387416,0 -g1,22926:6630773,30249608 -g1,22926:6237557,30249608 -r1,22940:6368629,30249608:131072,3387416,0 -g1,22926:6567858,30249608 -g1,22926:6764466,30249608 -[1,22926:6764466,30249608:25818563,3387416,0 -(1,22926:6764466,27527885:25818563,665693,196608 -(1,22925:6764466,27527885:0,665693,196608 -r1,22940:7868133,27527885:1103667,862301,196608 -k1,22925:6764466,27527885:-1103667 -) -(1,22925:6764466,27527885:1103667,665693,196608 -) -k1,22925:8062935,27527885:194802 -k1,22925:9789153,27527885:327680 -k1,22925:12012295,27527885:194803 -k1,22925:13226182,27527885:194802 -k1,22925:14917172,27527885:194803 -k1,22925:16282447,27527885:194802 -k1,22925:18285388,27527885:194803 -k1,22925:19427841,27527885:194802 -k1,22925:20641728,27527885:194802 -k1,22925:25087196,27527885:194803 -k1,22925:27842490,27527885:194802 -k1,22925:28653331,27527885:194803 -k1,22925:31126820,27527885:194802 -h1,22925:32495867,27527885:0,0,0 -k1,22925:32583029,27527885:0 -) -(1,22926:6764466,28392965:25818563,513147,134348 -k1,22925:8078211,28392965:241576 -k1,22925:9523027,28392965:241575 -k1,22925:11363681,28392965:241576 -k1,22925:15507271,28392965:241576 -k1,22925:16940291,28392965:241575 -k1,22925:19215449,28392965:241576 -k1,22925:21680006,28392965:241576 -k1,22925:22580874,28392965:241576 -k1,22925:25691615,28392965:241575 -k1,22925:27217697,28392965:241576 -k1,22925:28629746,28392965:241576 -k1,22925:30942259,28392965:241575 -k1,22925:31835263,28392965:241576 -k1,22925:32583029,28392965:0 -) -(1,22926:6764466,29258045:25818563,513147,134348 -k1,22925:8949249,29258045:207562 -k1,22925:12647914,29258045:207562 -k1,22925:14553514,29258045:207562 -k1,22925:18244969,29258045:207561 -k1,22925:18808391,29258045:207562 -k1,22925:21778296,29258045:207562 -k1,22925:23263155,29258045:207562 -k1,22925:24130009,29258045:207562 -k1,22925:25356656,29258045:207562 -k1,22925:27217691,29258045:207562 -k1,22925:28985009,29258045:207561 -k1,22925:29875456,29258045:207562 -k1,22925:30438878,29258045:207562 -k1,22925:31923737,29258045:207562 -k1,22925:32583029,29258045:0 -) -(1,22926:6764466,30123125:25818563,513147,126483 -g1,22925:7319555,30123125 -g1,22925:10281127,30123125 -g1,22925:11866442,30123125 -g1,22925:13633292,30123125 -g1,22925:14851606,30123125 -g1,22925:16704308,30123125 -k1,22926:32583029,30123125:14436929 -g1,22926:32583029,30123125 -) -] -g1,22926:32583029,30249608 -) -h1,22926:6630773,30249608:0,0,0 -(1,22928:6630773,32366426:25952256,564462,147783 -(1,22928:6630773,32366426:2899444,534184,12975 -g1,22928:6630773,32366426 -g1,22928:9530217,32366426 -) -g1,22928:11808970,32366426 -g1,22928:15475448,32366426 -g1,22928:16478936,32366426 -g1,22928:19712876,32366426 -k1,22928:32583029,32366426:10490475 -g1,22928:32583029,32366426 -) -(1,22931:6630773,33624722:25952256,505283,134348 -k1,22930:8036937,33624722:231104 -k1,22930:11869243,33624722:231103 -k1,22930:13707945,33624722:231104 -k1,22930:15591212,33624722:231104 -k1,22930:19270164,33624722:231103 -k1,22930:21681651,33624722:231104 -k1,22930:23918156,33624722:231103 -k1,22930:25657899,33624722:231104 -k1,22930:29063567,33624722:231104 -k1,22930:29907432,33624722:231103 -k1,22930:31157621,33624722:231104 -k1,22930:32583029,33624722:0 -) -(1,22931:6630773,34489802:25952256,513147,134348 -k1,22930:8249425,34489802:238464 -k1,22930:9479448,34489802:238463 -k1,22930:11683337,34489802:238464 -k1,22930:12573228,34489802:238463 -k1,22930:13167552,34489802:238464 -k1,22930:14856983,34489802:238464 -k1,22930:15723281,34489802:238463 -k1,22930:17164986,34489802:238464 -k1,22930:18770530,34489802:238463 -k1,22930:19364854,34489802:238464 -k1,22930:22298814,34489802:238464 -k1,22930:23821783,34489802:238463 -k1,22930:26438549,34489802:238464 -k1,22930:27696097,34489802:238463 -k1,22930:31043589,34489802:238464 -k1,22931:32583029,34489802:0 -) -(1,22931:6630773,35354882:25952256,513147,134348 -k1,22930:8738760,35354882:138630 -k1,22930:9981673,35354882:138631 -k1,22930:10868069,35354882:138630 -k1,22930:13466922,35354882:138631 -k1,22930:15557214,35354882:138630 -k1,22930:18464085,35354882:138630 -k1,22930:19288878,35354882:138631 -k1,22930:20043546,35354882:138630 -k1,22930:21201262,35354882:138631 -k1,22930:24001309,35354882:138630 -k1,22930:25087590,35354882:138630 -k1,22930:27798509,35354882:138631 -k1,22930:28292999,35354882:138630 -k1,22930:29714825,35354882:138631 -k1,22930:31839851,35354882:138630 -k1,22930:32583029,35354882:0 -) -(1,22931:6630773,36219962:25952256,513147,134348 -k1,22930:9783839,36219962:182319 -k1,22930:12661653,36219962:182318 -(1,22930:12661653,36219962:0,452978,122846 -r1,22940:16888749,36219962:4227096,575824,122846 -k1,22930:12661653,36219962:-4227096 -) -(1,22930:12661653,36219962:4227096,452978,122846 -k1,22930:12661653,36219962:3277 -h1,22930:16885472,36219962:0,411205,112570 -) -k1,22930:17071068,36219962:182319 -k1,22930:18485463,36219962:182318 -k1,22930:20946469,36219962:182319 -h1,22930:22887645,36219962:0,0,0 -k1,22930:23069964,36219962:182319 -k1,22930:24061652,36219962:182318 -k1,22930:25742124,36219962:182319 -h1,22930:26937501,36219962:0,0,0 -k1,22930:27500583,36219962:182318 -k1,22930:29557232,36219962:182319 -k1,22930:32583029,36219962:0 -) -(1,22931:6630773,37085042:25952256,513147,134348 -k1,22930:7894453,37085042:159398 -k1,22930:10064495,37085042:159397 -k1,22930:10579753,37085042:159398 -(1,22930:10579753,37085042:0,452978,122846 -r1,22940:11993154,37085042:1413401,575824,122846 -k1,22930:10579753,37085042:-1413401 -) -(1,22930:10579753,37085042:1413401,452978,122846 -k1,22930:10579753,37085042:3277 -h1,22930:11989877,37085042:0,411205,112570 -) -k1,22930:12152551,37085042:159397 -k1,22930:14445146,37085042:159398 -k1,22930:14960403,37085042:159397 -k1,22930:16113327,37085042:159398 -k1,22930:16932016,37085042:159397 -k1,22930:18368711,37085042:159398 -k1,22930:22629351,37085042:159397 -k1,22930:23471634,37085042:159398 -k1,22930:23986891,37085042:159397 -k1,22930:26019308,37085042:159398 -k1,22930:27456002,37085042:159397 -k1,22930:31386342,37085042:159398 -k1,22930:32583029,37085042:0 -) -(1,22931:6630773,37950122:25952256,513147,134348 -k1,22930:9559279,37950122:216626 -k1,22930:10868390,37950122:216626 -k1,22930:11616514,37950122:216627 -k1,22930:12484568,37950122:216626 -k1,22930:14154783,37950122:216626 -k1,22930:16063549,37950122:216626 -k1,22930:18876056,37950122:216626 -k1,22930:19708720,37950122:216626 -k1,22930:22416370,37950122:216627 -k1,22930:26339712,37950122:216626 -k1,22930:29582135,37950122:216626 -k1,22931:32583029,37950122:0 -) -(1,22931:6630773,38815202:25952256,505283,134348 -(1,22930:6630773,38815202:0,452978,122846 -r1,22940:8044174,38815202:1413401,575824,122846 -k1,22930:6630773,38815202:-1413401 -) -(1,22930:6630773,38815202:1413401,452978,122846 -k1,22930:6630773,38815202:3277 -h1,22930:8040897,38815202:0,411205,112570 -) -k1,22930:8227539,38815202:183365 -k1,22930:10700733,38815202:183366 -k1,22930:11566983,38815202:183365 -k1,22930:13812111,38815202:183365 -k1,22930:15192164,38815202:183366 -k1,22930:17616860,38815202:183365 -(1,22930:17823954,38815202:0,414482,115847 -r1,22940:18885643,38815202:1061689,530329,115847 -k1,22930:17823954,38815202:-1061689 -) -(1,22930:17823954,38815202:1061689,414482,115847 -k1,22930:17823954,38815202:3277 -h1,22930:18882366,38815202:0,411205,112570 -) -k1,22930:19276102,38815202:183365 -k1,22930:21471422,38815202:183365 -k1,22930:24082242,38815202:183366 -k1,22930:26424363,38815202:183365 -k1,22930:30010357,38815202:183365 -k1,22930:30845151,38815202:183366 -k1,22930:31384376,38815202:183365 -k1,22931:32583029,38815202:0 -) -(1,22931:6630773,39680282:25952256,513147,134348 -k1,22930:7889754,39680282:233998 -k1,22930:10992918,39680282:233998 -k1,22930:11854751,39680282:233998 -k1,22930:13291990,39680282:233998 -k1,22930:15066739,39680282:233998 -k1,22930:17002052,39680282:233998 -k1,22930:19109069,39680282:233998 -k1,22930:22415395,39680282:233998 -k1,22930:24854680,39680282:233998 -k1,22930:25850206,39680282:233998 -k1,22930:27822219,39680282:233998 -k1,22930:28707645,39680282:233998 -(1,22930:28707645,39680282:0,452978,122846 -r1,22940:32583029,39680282:3875384,575824,122846 -k1,22930:28707645,39680282:-3875384 -) -(1,22930:28707645,39680282:3875384,452978,122846 -k1,22930:28707645,39680282:3277 -h1,22930:32579752,39680282:0,411205,112570 -) -k1,22930:32583029,39680282:0 -) -(1,22931:6630773,40545362:25952256,505283,134348 -k1,22930:7975207,40545362:238186 -k1,22930:8961158,40545362:238185 -k1,22930:11317468,40545362:238186 -k1,22930:12241816,40545362:238186 -k1,22930:13250705,40545362:238186 -k1,22930:16561218,40545362:238185 -k1,22930:17450832,40545362:238186 -k1,22930:18708103,40545362:238186 -k1,22930:21063757,40545362:238186 -k1,22930:22401636,40545362:238185 -k1,22930:23291250,40545362:238186 -(1,22930:23291250,40545362:0,452978,122846 -r1,22940:26111499,40545362:2820249,575824,122846 -k1,22930:23291250,40545362:-2820249 -) -(1,22930:23291250,40545362:2820249,452978,122846 -k1,22930:23291250,40545362:3277 -h1,22930:26108222,40545362:0,411205,112570 -) -k1,22930:26523355,40545362:238186 -k1,22930:27507996,40545362:238186 -k1,22930:29788283,40545362:238185 -k1,22930:31310975,40545362:238186 -k1,22931:32583029,40545362:0 -) -(1,22931:6630773,41410442:25952256,513147,134348 -k1,22930:8835142,41410442:227148 -k1,22930:12464918,41410442:227147 -k1,22930:13453594,41410442:227148 -k1,22930:16468643,41410442:227147 -k1,22930:17227288,41410442:227148 -k1,22930:20084396,41410442:227148 -k1,22930:21687144,41410442:227147 -k1,22930:22861943,41410442:227148 -k1,22930:26700124,41410442:227147 -k1,22930:29824619,41410442:227148 -k1,22930:32583029,41410442:0 -) -(1,22931:6630773,42275522:25952256,513147,126483 -k1,22930:7439285,42275522:192474 -k1,22930:8650844,42275522:192474 -k1,22930:11925476,42275522:192474 -k1,22930:12777242,42275522:192474 -k1,22930:13988801,42275522:192474 -k1,22930:16823687,42275522:192474 -k1,22930:19885328,42275522:192475 -k1,22930:21668361,42275522:192474 -k1,22930:22927106,42275522:192474 -k1,22930:26414075,42275522:192474 -k1,22930:28000500,42275522:192474 -k1,22930:28548834,42275522:192474 -k1,22930:31436804,42275522:192474 -k1,22930:32583029,42275522:0 -) -(1,22931:6630773,43140602:25952256,513147,126483 -g1,22930:8206913,43140602 -g1,22930:9800093,43140602 -(1,22930:9800093,43140602:0,414482,115847 -r1,22940:10861782,43140602:1061689,530329,115847 -k1,22930:9800093,43140602:-1061689 -) -(1,22930:9800093,43140602:1061689,414482,115847 -k1,22930:9800093,43140602:3277 -h1,22930:10858505,43140602:0,411205,112570 -) -g1,22930:11061011,43140602 -g1,22930:11946402,43140602 -g1,22930:12934029,43140602 -g1,22930:14508859,43140602 -g1,22930:16836697,43140602 -k1,22931:32583029,43140602:12413171 -g1,22931:32583029,43140602 -) -v1,22933:6630773,43825457:0,393216,0 -(1,22940:6630773,45509426:25952256,2077185,196608 -g1,22940:6630773,45509426 -g1,22940:6630773,45509426 -g1,22940:6434165,45509426 -(1,22940:6434165,45509426:0,2077185,196608 -r1,22940:32779637,45509426:26345472,2273793,196608 -k1,22940:6434165,45509426:-26345472 -) -(1,22940:6434165,45509426:26345472,2077185,196608 -[1,22940:6630773,45509426:25952256,1880577,0 -(1,22935:6630773,44059894:25952256,431045,112852 -(1,22934:6630773,44059894:0,0,0 -g1,22934:6630773,44059894 -g1,22934:6630773,44059894 -g1,22934:6303093,44059894 -(1,22934:6303093,44059894:0,0,0 -) -g1,22934:6630773,44059894 -) -g1,22935:9950312,44059894 -g1,22935:10946174,44059894 -g1,22935:15593529,44059894 -h1,22935:15925483,44059894:0,0,0 -k1,22935:32583029,44059894:16657546 -g1,22935:32583029,44059894 -) -(1,22936:6630773,44744749:25952256,424439,112852 -h1,22936:6630773,44744749:0,0,0 -g1,22936:6962727,44744749 -g1,22936:7294681,44744749 -g1,22936:11278129,44744749 -h1,22936:11610083,44744749:0,0,0 -k1,22936:32583029,44744749:20972946 -g1,22936:32583029,44744749 -) -(1,22937:6630773,45429604:25952256,424439,79822 -h1,22937:6630773,45429604:0,0,0 -g1,22937:6962727,45429604 -g1,22937:7294681,45429604 -k1,22937:7294681,45429604:0 -h1,22937:10614220,45429604:0,0,0 -k1,22937:32583028,45429604:21968808 -g1,22937:32583028,45429604 -) -] -) -g1,22940:32583029,45509426 -g1,22940:6630773,45509426 -g1,22940:6630773,45509426 -g1,22940:32583029,45509426 -g1,22940:32583029,45509426 -) -] -(1,22940:32583029,45706769:0,0,0 -g1,22940:32583029,45706769 -) -) -] -(1,22940:6630773,47279633:25952256,0,0 -h1,22940:6630773,47279633:25952256,0,0 -) -] -(1,22940:4262630,4025873:0,0,0 -[1,22940:-473656,4025873:0,0,0 -(1,22940:-473656,-710413:0,0,0 -(1,22940:-473656,-710413:0,0,0 -g1,22940:-473656,-710413 -) -g1,22940:-473656,-710413 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,22938:3078558,51504789:16384,1179648,0 +) +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,22938:3078558,4812305:0,0,0 +(1,22938:3078558,49800853:0,16384,2228224 +g1,22938:29030814,49800853 +g1,22938:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,22938:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,22938:37855564,49800853:1179648,16384,0 +) +) +k1,22938:3078556,49800853:-34777008 +) +] +g1,22938:6630773,4812305 +k1,22938:21386205,4812305:13560055 +g1,22938:21999622,4812305 +g1,22938:25611966,4812305 +g1,22938:28956923,4812305 +g1,22938:29772190,4812305 +) +) +] +[1,22938:6630773,45706769:25952256,40108032,0 +(1,22938:6630773,45706769:25952256,40108032,0 +(1,22938:6630773,45706769:0,0,0 +g1,22938:6630773,45706769 +) +[1,22938:6630773,45706769:25952256,40108032,0 +v1,22879:6630773,6254097:0,393216,0 +(1,22879:6630773,7279635:25952256,1418754,196608 +g1,22879:6630773,7279635 +g1,22879:6630773,7279635 +g1,22879:6434165,7279635 +(1,22879:6434165,7279635:0,1418754,196608 +r1,22938:32779637,7279635:26345472,1615362,196608 +k1,22879:6434165,7279635:-26345472 +) +(1,22879:6434165,7279635:26345472,1418754,196608 +[1,22879:6630773,7279635:25952256,1222146,0 +(1,22876:6630773,6488534:25952256,431045,106246 +h1,22876:6630773,6488534:0,0,0 +g1,22876:6962727,6488534 +g1,22876:7294681,6488534 +g1,22876:7626635,6488534 +g1,22876:7958589,6488534 +g1,22876:8290543,6488534 +g1,22876:8622497,6488534 +g1,22876:8954451,6488534 +g1,22876:9286405,6488534 +g1,22876:9618359,6488534 +g1,22876:9950313,6488534 +g1,22876:10282267,6488534 +g1,22876:10614221,6488534 +g1,22876:10946175,6488534 +g1,22876:11278129,6488534 +g1,22876:11610083,6488534 +g1,22876:11942037,6488534 +g1,22876:12273991,6488534 +g1,22876:14597669,6488534 +g1,22876:15261577,6488534 +g1,22876:17917209,6488534 +k1,22876:17917209,6488534:0 +h1,22876:22896518,6488534:0,0,0 +k1,22876:32583029,6488534:9686511 +g1,22876:32583029,6488534 +) +(1,22877:6630773,7173389:25952256,431045,106246 +h1,22877:6630773,7173389:0,0,0 +g1,22877:6962727,7173389 +g1,22877:7294681,7173389 +g1,22877:7626635,7173389 +g1,22877:7958589,7173389 +g1,22877:8290543,7173389 +g1,22877:8622497,7173389 +g1,22877:8954451,7173389 +g1,22877:9286405,7173389 +g1,22877:9618359,7173389 +g1,22877:9950313,7173389 +g1,22877:10282267,7173389 +g1,22877:10614221,7173389 +g1,22877:10946175,7173389 +g1,22877:11278129,7173389 +g1,22877:11610083,7173389 +g1,22877:11942037,7173389 +g1,22877:12273991,7173389 +g1,22877:14265715,7173389 +g1,22877:14929623,7173389 +g1,22877:17585255,7173389 +h1,22877:22564564,7173389:0,0,0 +k1,22877:32583029,7173389:10018465 +g1,22877:32583029,7173389 +) +] +) +g1,22879:32583029,7279635 +g1,22879:6630773,7279635 +g1,22879:6630773,7279635 +g1,22879:32583029,7279635 +g1,22879:32583029,7279635 +) +h1,22879:6630773,7476243:0,0,0 +v1,22883:6630773,8341323:0,393216,0 +(1,22884:6630773,10567008:25952256,2618901,0 +g1,22884:6630773,10567008 +g1,22884:6237557,10567008 +r1,22938:6368629,10567008:131072,2618901,0 +g1,22884:6567858,10567008 +g1,22884:6764466,10567008 +[1,22884:6764466,10567008:25818563,2618901,0 +(1,22884:6764466,8702500:25818563,754393,260573 +(1,22883:6764466,8702500:0,754393,260573 +r1,22938:7856192,8702500:1091726,1014966,260573 +k1,22883:6764466,8702500:-1091726 +) +(1,22883:6764466,8702500:1091726,754393,260573 +) +k1,22883:8051042,8702500:194850 +k1,22883:8378722,8702500:327680 +k1,22883:10356806,8702500:194849 +k1,22883:14035550,8702500:194850 +k1,22883:15837997,8702500:194849 +k1,22883:17426798,8702500:194850 +k1,22883:18640732,8702500:194849 +(1,22883:18640732,8702500:0,414482,115847 +r1,22938:18998998,8702500:358266,530329,115847 +k1,22883:18640732,8702500:-358266 +) +(1,22883:18640732,8702500:358266,414482,115847 +k1,22883:18640732,8702500:3277 +h1,22883:18995721,8702500:0,411205,112570 +) +k1,22883:19193848,8702500:194850 +k1,22883:22308981,8702500:194849 +k1,22883:23522916,8702500:194850 +k1,22883:28123751,8702500:194849 +k1,22883:30961013,8702500:194850 +k1,22883:32583029,8702500:0 +) +(1,22884:6764466,9567580:25818563,513147,134348 +k1,22883:7723735,9567580:211503 +k1,22883:8291098,9567580:211503 +(1,22883:8291098,9567580:0,452978,122846 +r1,22938:9704499,9567580:1413401,575824,122846 +k1,22883:8291098,9567580:-1413401 +) +(1,22883:8291098,9567580:1413401,452978,122846 +k1,22883:8291098,9567580:3277 +h1,22883:9701222,9567580:0,411205,112570 +) +k1,22883:9916001,9567580:211502 +k1,22883:12260701,9567580:211503 +k1,22883:13668891,9567580:211503 +k1,22883:14954529,9567580:211503 +k1,22883:17808443,9567580:211502 +k1,22883:18551443,9567580:211503 +k1,22883:20728371,9567580:211503 +k1,22883:21591302,9567580:211503 +k1,22883:22821889,9567580:211502 +(1,22883:22821889,9567580:0,452978,122846 +r1,22938:24235290,9567580:1413401,575824,122846 +k1,22883:22821889,9567580:-1413401 +) +(1,22883:22821889,9567580:1413401,452978,122846 +k1,22883:22821889,9567580:3277 +h1,22883:24232013,9567580:0,411205,112570 +) +k1,22883:24446793,9567580:211503 +k1,22883:25935593,9567580:211503 +k1,22883:28106622,9567580:211503 +k1,22883:29509569,9567580:211502 +k1,22883:30740157,9567580:211503 +k1,22883:32583029,9567580:0 +) +(1,22884:6764466,10432660:25818563,505283,134348 +g1,22883:9742422,10432660 +g1,22883:10627813,10432660 +g1,22883:11182902,10432660 +(1,22883:11182902,10432660:0,452978,122846 +r1,22938:12596303,10432660:1413401,575824,122846 +k1,22883:11182902,10432660:-1413401 +) +(1,22883:11182902,10432660:1413401,452978,122846 +k1,22883:11182902,10432660:3277 +h1,22883:12593026,10432660:0,411205,112570 +) +g1,22883:12795532,10432660 +g1,22883:14272058,10432660 +k1,22884:32583029,10432660:16299016 +g1,22884:32583029,10432660 +) +] +g1,22884:32583029,10567008 +) +h1,22884:6630773,10567008:0,0,0 +(1,22887:6630773,11432088:25952256,513147,134348 +h1,22886:6630773,11432088:983040,0,0 +k1,22886:9088373,11432088:277873 +k1,22886:10772648,11432088:277872 +k1,22886:12327818,11432088:277873 +k1,22886:13709972,11432088:277872 +k1,22886:14735611,11432088:277873 +k1,22886:18370892,11432088:277872 +k1,22886:20216386,11432088:277873 +k1,22886:21513343,11432088:277872 +k1,22886:24081044,11432088:277873 +k1,22886:26170331,11432088:277872 +k1,22886:27099632,11432088:277873 +k1,22886:30392815,11432088:277872 +k1,22886:32051532,11432088:277873 +k1,22886:32583029,11432088:0 +) +(1,22887:6630773,12297168:25952256,513147,134348 +k1,22886:8860427,12297168:252433 +k1,22886:10810897,12297168:252432 +k1,22886:13635618,12297168:252433 +k1,22886:16119552,12297168:252433 +k1,22886:17979583,12297168:252433 +k1,22886:19516521,12297168:252432 +k1,22886:21949337,12297168:252433 +k1,22886:23676985,12297168:252433 +k1,22886:27210150,12297168:252433 +k1,22886:29480436,12297168:252432 +k1,22886:30929556,12297168:252433 +k1,22886:32583029,12297168:0 +) +(1,22887:6630773,13162248:25952256,505283,134348 +k1,22886:9881776,13162248:266493 +k1,22886:11252551,13162248:266493 +k1,22886:12266810,13162248:266493 +k1,22886:14046529,13162248:266493 +k1,22886:15706973,13162248:266493 +k1,22886:17675436,13162248:266493 +k1,22886:22043172,13162248:266493 +k1,22886:24350456,13162248:266493 +k1,22886:25636034,13162248:266493 +k1,22886:28192355,13162248:266493 +k1,22886:29450408,13162248:266493 +k1,22886:32583029,13162248:0 +) +(1,22887:6630773,14027328:25952256,513147,126483 +g1,22886:8197739,14027328 +g1,22886:11623961,14027328 +g1,22886:15750763,14027328 +g1,22886:16601420,14027328 +g1,22886:18730029,14027328 +g1,22886:21691601,14027328 +g1,22886:24554869,14027328 +g1,22886:25413390,14027328 +g1,22886:26631704,14027328 +g1,22886:28484406,14027328 +k1,22887:32583029,14027328:2768898 +g1,22887:32583029,14027328 +) +v1,22889:6630773,14712183:0,393216,0 +(1,22895:6630773,16415970:25952256,2097003,196608 +g1,22895:6630773,16415970 +g1,22895:6630773,16415970 +g1,22895:6434165,16415970 +(1,22895:6434165,16415970:0,2097003,196608 +r1,22938:32779637,16415970:26345472,2293611,196608 +k1,22895:6434165,16415970:-26345472 +) +(1,22895:6434165,16415970:26345472,2097003,196608 +[1,22895:6630773,16415970:25952256,1900395,0 +(1,22891:6630773,14940014:25952256,424439,106246 +(1,22890:6630773,14940014:0,0,0 +g1,22890:6630773,14940014 +g1,22890:6630773,14940014 +g1,22890:6303093,14940014 +(1,22890:6303093,14940014:0,0,0 +) +g1,22890:6630773,14940014 +) +h1,22891:8622497,14940014:0,0,0 +k1,22891:32583029,14940014:23960532 +g1,22891:32583029,14940014 +) +(1,22892:6630773,15624869:25952256,424439,106246 +h1,22892:6630773,15624869:0,0,0 +g1,22892:8954451,15624869 +g1,22892:9618359,15624869 +g1,22892:12605944,15624869 +g1,22892:13269852,15624869 +k1,22892:13269852,15624869:0 +h1,22892:17253299,15624869:0,0,0 +k1,22892:32583029,15624869:15329730 +g1,22892:32583029,15624869 +) +(1,22893:6630773,16309724:25952256,424439,106246 +h1,22893:6630773,16309724:0,0,0 +g1,22893:8954451,16309724 +g1,22893:9618359,16309724 +g1,22893:12605944,16309724 +g1,22893:13269852,16309724 +g1,22893:17585253,16309724 +g1,22893:18249161,16309724 +g1,22893:20904793,16309724 +h1,22893:21900655,16309724:0,0,0 +k1,22893:32583029,16309724:10682374 +g1,22893:32583029,16309724 +) +] +) +g1,22895:32583029,16415970 +g1,22895:6630773,16415970 +g1,22895:6630773,16415970 +g1,22895:32583029,16415970 +g1,22895:32583029,16415970 +) +h1,22895:6630773,16612578:0,0,0 +(1,22899:6630773,17477658:25952256,505283,7863 +h1,22898:6630773,17477658:983040,0,0 +g1,22898:8766591,17477658 +g1,22898:10070102,17477658 +g1,22898:11555147,17477658 +g1,22898:13145050,17477658 +g1,22898:17402268,17477658 +k1,22899:32583029,17477658:12955159 +g1,22899:32583029,17477658 +) +v1,22901:6630773,18162513:0,393216,0 +(1,22906:6630773,19188051:25952256,1418754,196608 +g1,22906:6630773,19188051 +g1,22906:6630773,19188051 +g1,22906:6434165,19188051 +(1,22906:6434165,19188051:0,1418754,196608 +r1,22938:32779637,19188051:26345472,1615362,196608 +k1,22906:6434165,19188051:-26345472 +) +(1,22906:6434165,19188051:26345472,1418754,196608 +[1,22906:6630773,19188051:25952256,1222146,0 +(1,22903:6630773,18390344:25952256,424439,112852 +(1,22902:6630773,18390344:0,0,0 +g1,22902:6630773,18390344 +g1,22902:6630773,18390344 +g1,22902:6303093,18390344 +(1,22902:6303093,18390344:0,0,0 +) +g1,22902:6630773,18390344 +) +g1,22903:8622497,18390344 +g1,22903:9618359,18390344 +g1,22903:11942037,18390344 +g1,22903:12605945,18390344 +k1,22903:12605945,18390344:0 +h1,22903:22232610,18390344:0,0,0 +k1,22903:32583029,18390344:10350419 +g1,22903:32583029,18390344 +) +(1,22904:6630773,19075199:25952256,424439,112852 +h1,22904:6630773,19075199:0,0,0 +g1,22904:8622497,19075199 +g1,22904:9286405,19075199 +g1,22904:12273990,19075199 +g1,22904:12937898,19075199 +k1,22904:12937898,19075199:0 +h1,22904:16921345,19075199:0,0,0 +k1,22904:32583029,19075199:15661684 +g1,22904:32583029,19075199 +) +] +) +g1,22906:32583029,19188051 +g1,22906:6630773,19188051 +g1,22906:6630773,19188051 +g1,22906:32583029,19188051 +g1,22906:32583029,19188051 +) +h1,22906:6630773,19384659:0,0,0 +(1,22909:6630773,21501477:25952256,555811,147783 +(1,22909:6630773,21501477:2899444,534184,12975 +g1,22909:6630773,21501477 +g1,22909:9530217,21501477 +) +g1,22909:12167976,21501477 +g1,22909:13822433,21501477 +g1,22909:16269875,21501477 +g1,22909:17837103,21501477 +g1,22909:20247780,21501477 +g1,22909:21178457,21501477 +k1,22909:32583029,21501477:9900062 +g1,22909:32583029,21501477 +) +(1,22912:6630773,22759773:25952256,513147,134348 +k1,22911:7302571,22759773:194041 +k1,22911:8515696,22759773:194040 +k1,22911:10690235,22759773:194041 +k1,22911:11535703,22759773:194040 +k1,22911:12477510,22759773:194041 +k1,22911:13764035,22759773:194040 +k1,22911:16638499,22759773:194041 +k1,22911:17647807,22759773:194040 +k1,22911:18908119,22759773:194041 +k1,22911:21439829,22759773:194041 +k1,22911:21989729,22759773:194040 +(1,22911:21989729,22759773:0,452978,122846 +r1,22938:23403130,22759773:1413401,575824,122846 +k1,22911:21989729,22759773:-1413401 +) +(1,22911:21989729,22759773:1413401,452978,122846 +k1,22911:21989729,22759773:3277 +h1,22911:23399853,22759773:0,411205,112570 +) +k1,22911:23597171,22759773:194041 +k1,22911:25924408,22759773:194040 +k1,22911:27498637,22759773:194041 +k1,22911:28796959,22759773:194040 +k1,22911:29738766,22759773:194041 +k1,22911:32583029,22759773:0 +) +(1,22912:6630773,23624853:25952256,513147,134348 +k1,22911:8098406,23624853:200167 +k1,22911:8654433,23624853:200167 +k1,22911:9848126,23624853:200167 +k1,22911:11239738,23624853:200167 +k1,22911:13424990,23624853:200166 +k1,22911:15408392,23624853:200167 +k1,22911:16627644,23624853:200167 +k1,22911:17821337,23624853:200167 +k1,22911:18553001,23624853:200167 +k1,22911:20718593,23624853:200167 +k1,22911:21570188,23624853:200167 +k1,22911:22126215,23624853:200167 +(1,22911:22126215,23624853:0,452978,122846 +r1,22938:23539616,23624853:1413401,575824,122846 +k1,22911:22126215,23624853:-1413401 +) +(1,22911:22126215,23624853:1413401,452978,122846 +k1,22911:22126215,23624853:3277 +h1,22911:23536339,23624853:0,411205,112570 +) +k1,22911:23739782,23624853:200166 +k1,22911:25217246,23624853:200167 +k1,22911:27550610,23624853:200167 +k1,22911:28769862,23624853:200167 +k1,22911:31923737,23624853:200167 +k1,22911:32583029,23624853:0 +) +(1,22912:6630773,24489933:25952256,505283,134348 +g1,22911:7849087,24489933 +g1,22911:9041842,24489933 +g1,22911:10232631,24489933 +g1,22911:12397285,24489933 +g1,22911:13753224,24489933 +g1,22911:14713981,24489933 +g1,22911:16069920,24489933 +g1,22911:16920577,24489933 +g1,22911:18138891,24489933 +g1,22911:19615417,24489933 +g1,22911:23129457,24489933 +g1,22911:24837325,24489933 +k1,22912:32583029,24489933:5953950 +g1,22912:32583029,24489933 +) +v1,22914:6630773,25174788:0,393216,0 +(1,22919:6630773,26193720:25952256,1412148,196608 +g1,22919:6630773,26193720 +g1,22919:6630773,26193720 +g1,22919:6434165,26193720 +(1,22919:6434165,26193720:0,1412148,196608 +r1,22938:32779637,26193720:26345472,1608756,196608 +k1,22919:6434165,26193720:-26345472 +) +(1,22919:6434165,26193720:26345472,1412148,196608 +[1,22919:6630773,26193720:25952256,1215540,0 +(1,22916:6630773,25402619:25952256,424439,106246 +(1,22915:6630773,25402619:0,0,0 +g1,22915:6630773,25402619 +g1,22915:6630773,25402619 +g1,22915:6303093,25402619 +(1,22915:6303093,25402619:0,0,0 +) +g1,22915:6630773,25402619 +) +g1,22916:9286405,25402619 +g1,22916:10282267,25402619 +g1,22916:15261576,25402619 +k1,22916:15261576,25402619:0 +h1,22916:19576977,25402619:0,0,0 +k1,22916:32583029,25402619:13006052 +g1,22916:32583029,25402619 +) +(1,22917:6630773,26087474:25952256,407923,106246 +h1,22917:6630773,26087474:0,0,0 +g1,22917:7626635,26087474 +g1,22917:8290543,26087474 +h1,22917:10614221,26087474:0,0,0 +k1,22917:32583029,26087474:21968808 +g1,22917:32583029,26087474 +) +] +) +g1,22919:32583029,26193720 +g1,22919:6630773,26193720 +g1,22919:6630773,26193720 +g1,22919:32583029,26193720 +g1,22919:32583029,26193720 +) +h1,22919:6630773,26390328:0,0,0 +v1,22923:6630773,27255408:0,393216,0 +(1,22924:6630773,30249608:25952256,3387416,0 +g1,22924:6630773,30249608 +g1,22924:6237557,30249608 +r1,22938:6368629,30249608:131072,3387416,0 +g1,22924:6567858,30249608 +g1,22924:6764466,30249608 +[1,22924:6764466,30249608:25818563,3387416,0 +(1,22924:6764466,27527885:25818563,665693,196608 +(1,22923:6764466,27527885:0,665693,196608 +r1,22938:7868133,27527885:1103667,862301,196608 +k1,22923:6764466,27527885:-1103667 +) +(1,22923:6764466,27527885:1103667,665693,196608 +) +k1,22923:8062935,27527885:194802 +k1,22923:9789153,27527885:327680 +k1,22923:12012295,27527885:194803 +k1,22923:13226182,27527885:194802 +k1,22923:14917172,27527885:194803 +k1,22923:16282447,27527885:194802 +k1,22923:18285388,27527885:194803 +k1,22923:19427841,27527885:194802 +k1,22923:20641728,27527885:194802 +k1,22923:25087196,27527885:194803 +k1,22923:27842490,27527885:194802 +k1,22923:28653331,27527885:194803 +k1,22923:31126820,27527885:194802 +h1,22923:32495867,27527885:0,0,0 +k1,22923:32583029,27527885:0 +) +(1,22924:6764466,28392965:25818563,513147,134348 +k1,22923:8078211,28392965:241576 +k1,22923:9523027,28392965:241575 +k1,22923:11363681,28392965:241576 +k1,22923:15507271,28392965:241576 +k1,22923:16940291,28392965:241575 +k1,22923:19215449,28392965:241576 +k1,22923:21680006,28392965:241576 +k1,22923:22580874,28392965:241576 +k1,22923:25691615,28392965:241575 +k1,22923:27217697,28392965:241576 +k1,22923:28629746,28392965:241576 +k1,22923:30942259,28392965:241575 +k1,22923:31835263,28392965:241576 +k1,22923:32583029,28392965:0 +) +(1,22924:6764466,29258045:25818563,513147,134348 +k1,22923:8949249,29258045:207562 +k1,22923:12647914,29258045:207562 +k1,22923:14553514,29258045:207562 +k1,22923:18244969,29258045:207561 +k1,22923:18808391,29258045:207562 +k1,22923:21778296,29258045:207562 +k1,22923:23263155,29258045:207562 +k1,22923:24130009,29258045:207562 +k1,22923:25356656,29258045:207562 +k1,22923:27217691,29258045:207562 +k1,22923:28985009,29258045:207561 +k1,22923:29875456,29258045:207562 +k1,22923:30438878,29258045:207562 +k1,22923:31923737,29258045:207562 +k1,22923:32583029,29258045:0 +) +(1,22924:6764466,30123125:25818563,513147,126483 +g1,22923:7319555,30123125 +g1,22923:10281127,30123125 +g1,22923:11866442,30123125 +g1,22923:13633292,30123125 +g1,22923:14851606,30123125 +g1,22923:16704308,30123125 +k1,22924:32583029,30123125:14436929 +g1,22924:32583029,30123125 +) +] +g1,22924:32583029,30249608 +) +h1,22924:6630773,30249608:0,0,0 +(1,22926:6630773,32366426:25952256,564462,147783 +(1,22926:6630773,32366426:2899444,534184,12975 +g1,22926:6630773,32366426 +g1,22926:9530217,32366426 +) +g1,22926:11808970,32366426 +g1,22926:15475448,32366426 +g1,22926:16478936,32366426 +g1,22926:19712876,32366426 +k1,22926:32583029,32366426:10490475 +g1,22926:32583029,32366426 +) +(1,22929:6630773,33624722:25952256,505283,134348 +k1,22928:8036937,33624722:231104 +k1,22928:11869243,33624722:231103 +k1,22928:13707945,33624722:231104 +k1,22928:15591212,33624722:231104 +k1,22928:19270164,33624722:231103 +k1,22928:21681651,33624722:231104 +k1,22928:23918156,33624722:231103 +k1,22928:25657899,33624722:231104 +k1,22928:29063567,33624722:231104 +k1,22928:29907432,33624722:231103 +k1,22928:31157621,33624722:231104 +k1,22928:32583029,33624722:0 +) +(1,22929:6630773,34489802:25952256,513147,134348 +k1,22928:8249425,34489802:238464 +k1,22928:9479448,34489802:238463 +k1,22928:11683337,34489802:238464 +k1,22928:12573228,34489802:238463 +k1,22928:13167552,34489802:238464 +k1,22928:14856983,34489802:238464 +k1,22928:15723281,34489802:238463 +k1,22928:17164986,34489802:238464 +k1,22928:18770530,34489802:238463 +k1,22928:19364854,34489802:238464 +k1,22928:22298814,34489802:238464 +k1,22928:23821783,34489802:238463 +k1,22928:26438549,34489802:238464 +k1,22928:27696097,34489802:238463 +k1,22928:31043589,34489802:238464 +k1,22929:32583029,34489802:0 +) +(1,22929:6630773,35354882:25952256,513147,134348 +k1,22928:8738760,35354882:138630 +k1,22928:9981673,35354882:138631 +k1,22928:10868069,35354882:138630 +k1,22928:13466922,35354882:138631 +k1,22928:15557214,35354882:138630 +k1,22928:18464085,35354882:138630 +k1,22928:19288878,35354882:138631 +k1,22928:20043546,35354882:138630 +k1,22928:21201262,35354882:138631 +k1,22928:24001309,35354882:138630 +k1,22928:25087590,35354882:138630 +k1,22928:27798509,35354882:138631 +k1,22928:28292999,35354882:138630 +k1,22928:29714825,35354882:138631 +k1,22928:31839851,35354882:138630 +k1,22928:32583029,35354882:0 +) +(1,22929:6630773,36219962:25952256,513147,134348 +k1,22928:9783839,36219962:182319 +k1,22928:12661653,36219962:182318 +(1,22928:12661653,36219962:0,452978,122846 +r1,22938:16888749,36219962:4227096,575824,122846 +k1,22928:12661653,36219962:-4227096 +) +(1,22928:12661653,36219962:4227096,452978,122846 +k1,22928:12661653,36219962:3277 +h1,22928:16885472,36219962:0,411205,112570 +) +k1,22928:17071068,36219962:182319 +k1,22928:18485463,36219962:182318 +k1,22928:20946469,36219962:182319 +h1,22928:22887645,36219962:0,0,0 +k1,22928:23069964,36219962:182319 +k1,22928:24061652,36219962:182318 +k1,22928:25742124,36219962:182319 +h1,22928:26937501,36219962:0,0,0 +k1,22928:27500583,36219962:182318 +k1,22928:29557232,36219962:182319 +k1,22928:32583029,36219962:0 +) +(1,22929:6630773,37085042:25952256,513147,134348 +k1,22928:7894453,37085042:159398 +k1,22928:10064495,37085042:159397 +k1,22928:10579753,37085042:159398 +(1,22928:10579753,37085042:0,452978,122846 +r1,22938:11993154,37085042:1413401,575824,122846 +k1,22928:10579753,37085042:-1413401 +) +(1,22928:10579753,37085042:1413401,452978,122846 +k1,22928:10579753,37085042:3277 +h1,22928:11989877,37085042:0,411205,112570 +) +k1,22928:12152551,37085042:159397 +k1,22928:14445146,37085042:159398 +k1,22928:14960403,37085042:159397 +k1,22928:16113327,37085042:159398 +k1,22928:16932016,37085042:159397 +k1,22928:18368711,37085042:159398 +k1,22928:22629351,37085042:159397 +k1,22928:23471634,37085042:159398 +k1,22928:23986891,37085042:159397 +k1,22928:26019308,37085042:159398 +k1,22928:27456002,37085042:159397 +k1,22928:31386342,37085042:159398 +k1,22928:32583029,37085042:0 +) +(1,22929:6630773,37950122:25952256,513147,134348 +k1,22928:9559279,37950122:216626 +k1,22928:10868390,37950122:216626 +k1,22928:11616514,37950122:216627 +k1,22928:12484568,37950122:216626 +k1,22928:14154783,37950122:216626 +k1,22928:16063549,37950122:216626 +k1,22928:18876056,37950122:216626 +k1,22928:19708720,37950122:216626 +k1,22928:22416370,37950122:216627 +k1,22928:26339712,37950122:216626 +k1,22928:29582135,37950122:216626 +k1,22929:32583029,37950122:0 +) +(1,22929:6630773,38815202:25952256,505283,134348 +(1,22928:6630773,38815202:0,452978,122846 +r1,22938:8044174,38815202:1413401,575824,122846 +k1,22928:6630773,38815202:-1413401 +) +(1,22928:6630773,38815202:1413401,452978,122846 +k1,22928:6630773,38815202:3277 +h1,22928:8040897,38815202:0,411205,112570 +) +k1,22928:8227539,38815202:183365 +k1,22928:10700733,38815202:183366 +k1,22928:11566983,38815202:183365 +k1,22928:13812111,38815202:183365 +k1,22928:15192164,38815202:183366 +k1,22928:17616860,38815202:183365 +(1,22928:17823954,38815202:0,414482,115847 +r1,22938:18885643,38815202:1061689,530329,115847 +k1,22928:17823954,38815202:-1061689 +) +(1,22928:17823954,38815202:1061689,414482,115847 +k1,22928:17823954,38815202:3277 +h1,22928:18882366,38815202:0,411205,112570 +) +k1,22928:19276102,38815202:183365 +k1,22928:21471422,38815202:183365 +k1,22928:24082242,38815202:183366 +k1,22928:26424363,38815202:183365 +k1,22928:30010357,38815202:183365 +k1,22928:30845151,38815202:183366 +k1,22928:31384376,38815202:183365 +k1,22929:32583029,38815202:0 +) +(1,22929:6630773,39680282:25952256,513147,134348 +k1,22928:7889754,39680282:233998 +k1,22928:10992918,39680282:233998 +k1,22928:11854751,39680282:233998 +k1,22928:13291990,39680282:233998 +k1,22928:15066739,39680282:233998 +k1,22928:17002052,39680282:233998 +k1,22928:19109069,39680282:233998 +k1,22928:22415395,39680282:233998 +k1,22928:24854680,39680282:233998 +k1,22928:25850206,39680282:233998 +k1,22928:27822219,39680282:233998 +k1,22928:28707645,39680282:233998 +(1,22928:28707645,39680282:0,452978,122846 +r1,22938:32583029,39680282:3875384,575824,122846 +k1,22928:28707645,39680282:-3875384 +) +(1,22928:28707645,39680282:3875384,452978,122846 +k1,22928:28707645,39680282:3277 +h1,22928:32579752,39680282:0,411205,112570 +) +k1,22928:32583029,39680282:0 +) +(1,22929:6630773,40545362:25952256,505283,134348 +k1,22928:7975207,40545362:238186 +k1,22928:8961158,40545362:238185 +k1,22928:11317468,40545362:238186 +k1,22928:12241816,40545362:238186 +k1,22928:13250705,40545362:238186 +k1,22928:16561218,40545362:238185 +k1,22928:17450832,40545362:238186 +k1,22928:18708103,40545362:238186 +k1,22928:21063757,40545362:238186 +k1,22928:22401636,40545362:238185 +k1,22928:23291250,40545362:238186 +(1,22928:23291250,40545362:0,452978,122846 +r1,22938:26111499,40545362:2820249,575824,122846 +k1,22928:23291250,40545362:-2820249 +) +(1,22928:23291250,40545362:2820249,452978,122846 +k1,22928:23291250,40545362:3277 +h1,22928:26108222,40545362:0,411205,112570 +) +k1,22928:26523355,40545362:238186 +k1,22928:27507996,40545362:238186 +k1,22928:29788283,40545362:238185 +k1,22928:31310975,40545362:238186 +k1,22929:32583029,40545362:0 +) +(1,22929:6630773,41410442:25952256,513147,134348 +k1,22928:8835142,41410442:227148 +k1,22928:12464918,41410442:227147 +k1,22928:13453594,41410442:227148 +k1,22928:16468643,41410442:227147 +k1,22928:17227288,41410442:227148 +k1,22928:20084396,41410442:227148 +k1,22928:21687144,41410442:227147 +k1,22928:22861943,41410442:227148 +k1,22928:26700124,41410442:227147 +k1,22928:29824619,41410442:227148 +k1,22928:32583029,41410442:0 +) +(1,22929:6630773,42275522:25952256,513147,126483 +k1,22928:7439285,42275522:192474 +k1,22928:8650844,42275522:192474 +k1,22928:11925476,42275522:192474 +k1,22928:12777242,42275522:192474 +k1,22928:13988801,42275522:192474 +k1,22928:16823687,42275522:192474 +k1,22928:19885328,42275522:192475 +k1,22928:21668361,42275522:192474 +k1,22928:22927106,42275522:192474 +k1,22928:26414075,42275522:192474 +k1,22928:28000500,42275522:192474 +k1,22928:28548834,42275522:192474 +k1,22928:31436804,42275522:192474 +k1,22928:32583029,42275522:0 +) +(1,22929:6630773,43140602:25952256,513147,126483 +g1,22928:8206913,43140602 +g1,22928:9800093,43140602 +(1,22928:9800093,43140602:0,414482,115847 +r1,22938:10861782,43140602:1061689,530329,115847 +k1,22928:9800093,43140602:-1061689 +) +(1,22928:9800093,43140602:1061689,414482,115847 +k1,22928:9800093,43140602:3277 +h1,22928:10858505,43140602:0,411205,112570 +) +g1,22928:11061011,43140602 +g1,22928:11946402,43140602 +g1,22928:12934029,43140602 +g1,22928:14508859,43140602 +g1,22928:16836697,43140602 +k1,22929:32583029,43140602:12413171 +g1,22929:32583029,43140602 +) +v1,22931:6630773,43825457:0,393216,0 +(1,22938:6630773,45509426:25952256,2077185,196608 +g1,22938:6630773,45509426 +g1,22938:6630773,45509426 +g1,22938:6434165,45509426 +(1,22938:6434165,45509426:0,2077185,196608 +r1,22938:32779637,45509426:26345472,2273793,196608 +k1,22938:6434165,45509426:-26345472 +) +(1,22938:6434165,45509426:26345472,2077185,196608 +[1,22938:6630773,45509426:25952256,1880577,0 +(1,22933:6630773,44059894:25952256,431045,112852 +(1,22932:6630773,44059894:0,0,0 +g1,22932:6630773,44059894 +g1,22932:6630773,44059894 +g1,22932:6303093,44059894 +(1,22932:6303093,44059894:0,0,0 +) +g1,22932:6630773,44059894 +) +g1,22933:9950312,44059894 +g1,22933:10946174,44059894 +g1,22933:15593529,44059894 +h1,22933:15925483,44059894:0,0,0 +k1,22933:32583029,44059894:16657546 +g1,22933:32583029,44059894 +) +(1,22934:6630773,44744749:25952256,424439,112852 +h1,22934:6630773,44744749:0,0,0 +g1,22934:6962727,44744749 +g1,22934:7294681,44744749 +g1,22934:11278129,44744749 +h1,22934:11610083,44744749:0,0,0 +k1,22934:32583029,44744749:20972946 +g1,22934:32583029,44744749 +) +(1,22935:6630773,45429604:25952256,424439,79822 +h1,22935:6630773,45429604:0,0,0 +g1,22935:6962727,45429604 +g1,22935:7294681,45429604 +k1,22935:7294681,45429604:0 +h1,22935:10614220,45429604:0,0,0 +k1,22935:32583028,45429604:21968808 +g1,22935:32583028,45429604 +) +] +) +g1,22938:32583029,45509426 +g1,22938:6630773,45509426 +g1,22938:6630773,45509426 +g1,22938:32583029,45509426 +g1,22938:32583029,45509426 +) +] +(1,22938:32583029,45706769:0,0,0 +g1,22938:32583029,45706769 +) +) +] +(1,22938:6630773,47279633:25952256,0,0 +h1,22938:6630773,47279633:25952256,0,0 +) +] +(1,22938:4262630,4025873:0,0,0 +[1,22938:-473656,4025873:0,0,0 +(1,22938:-473656,-710413:0,0,0 +(1,22938:-473656,-710413:0,0,0 +g1,22938:-473656,-710413 +) +g1,22938:-473656,-710413 ) ] ) ] !29127 -}393 -Input:4340:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4341:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4342:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4343:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}394 Input:4344:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4345:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4346:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4349:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4350:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{394 -[1,23014:4262630,47279633:28320399,43253760,0 -(1,23014:4262630,4025873:0,0,0 -[1,23014:-473656,4025873:0,0,0 -(1,23014:-473656,-710413:0,0,0 -(1,23014:-473656,-644877:0,0,0 -k1,23014:-473656,-644877:-65536 +{395 +[1,23012:4262630,47279633:28320399,43253760,0 +(1,23012:4262630,4025873:0,0,0 +[1,23012:-473656,4025873:0,0,0 +(1,23012:-473656,-710413:0,0,0 +(1,23012:-473656,-644877:0,0,0 +k1,23012:-473656,-644877:-65536 ) -(1,23014:-473656,4736287:0,0,0 -k1,23014:-473656,4736287:5209943 +(1,23012:-473656,4736287:0,0,0 +k1,23012:-473656,4736287:5209943 ) -g1,23014:-473656,-710413 +g1,23012:-473656,-710413 ) ] ) -[1,23014:6630773,47279633:25952256,43253760,0 -[1,23014:6630773,4812305:25952256,786432,0 -(1,23014:6630773,4812305:25952256,505283,134348 -(1,23014:6630773,4812305:25952256,505283,134348 -g1,23014:3078558,4812305 -[1,23014:3078558,4812305:0,0,0 -(1,23014:3078558,2439708:0,1703936,0 -k1,23014:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,23014:2537886,2439708:1179648,16384,0 +[1,23012:6630773,47279633:25952256,43253760,0 +[1,23012:6630773,4812305:25952256,786432,0 +(1,23012:6630773,4812305:25952256,505283,134348 +(1,23012:6630773,4812305:25952256,505283,134348 +g1,23012:3078558,4812305 +[1,23012:3078558,4812305:0,0,0 +(1,23012:3078558,2439708:0,1703936,0 +k1,23012:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,23012:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,23014:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,23012:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,23014:3078558,4812305:0,0,0 -(1,23014:3078558,2439708:0,1703936,0 -g1,23014:29030814,2439708 -g1,23014:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,23014:36151628,1915420:16384,1179648,0 +[1,23012:3078558,4812305:0,0,0 +(1,23012:3078558,2439708:0,1703936,0 +g1,23012:29030814,2439708 +g1,23012:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,23012:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,23014:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,23012:37855564,2439708:1179648,16384,0 ) ) -k1,23014:3078556,2439708:-34777008 +k1,23012:3078556,2439708:-34777008 ) ] -[1,23014:3078558,4812305:0,0,0 -(1,23014:3078558,49800853:0,16384,2228224 -k1,23014:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,23014:2537886,49800853:1179648,16384,0 +[1,23012:3078558,4812305:0,0,0 +(1,23012:3078558,49800853:0,16384,2228224 +k1,23012:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,23012:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,23014:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,23012:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 ) ] ) ) ) ] -[1,23014:3078558,4812305:0,0,0 -(1,23014:3078558,49800853:0,16384,2228224 -g1,23014:29030814,49800853 -g1,23014:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,23014:36151628,51504789:16384,1179648,0 +[1,23012:3078558,4812305:0,0,0 +(1,23012:3078558,49800853:0,16384,2228224 +g1,23012:29030814,49800853 +g1,23012:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,23012:36151628,51504789:16384,1179648,0 ) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 ) ] ) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,23014:37855564,49800853:1179648,16384,0 +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,23012:37855564,49800853:1179648,16384,0 ) ) -k1,23014:3078556,49800853:-34777008 +k1,23012:3078556,49800853:-34777008 ) -] -g1,23014:6630773,4812305 -g1,23014:6630773,4812305 -g1,23014:10354528,4812305 -g1,23014:12756422,4812305 -g1,23014:14323387,4812305 -k1,23014:31387651,4812305:17064264 -) -) -] -[1,23014:6630773,45706769:25952256,40108032,0 -(1,23014:6630773,45706769:25952256,40108032,0 -(1,23014:6630773,45706769:0,0,0 -g1,23014:6630773,45706769 -) -[1,23014:6630773,45706769:25952256,40108032,0 -v1,22940:6630773,6254097:0,393216,0 -(1,22940:6630773,6561750:25952256,700869,196608 -g1,22940:6630773,6561750 -g1,22940:6630773,6561750 -g1,22940:6434165,6561750 -(1,22940:6434165,6561750:0,700869,196608 -r1,23014:32779637,6561750:26345472,897477,196608 -k1,22940:6434165,6561750:-26345472 -) -(1,22940:6434165,6561750:26345472,700869,196608 -[1,22940:6630773,6561750:25952256,504261,0 -(1,22938:6630773,6481928:25952256,424439,79822 -h1,22938:6630773,6481928:0,0,0 -h1,22938:6962727,6481928:0,0,0 -k1,22938:32583029,6481928:25620302 -g1,22938:32583029,6481928 -) -] -) -g1,22940:32583029,6561750 -g1,22940:6630773,6561750 -g1,22940:6630773,6561750 -g1,22940:32583029,6561750 -g1,22940:32583029,6561750 -) -h1,22940:6630773,6758358:0,0,0 -(1,22944:6630773,7623438:25952256,513147,7863 -h1,22943:6630773,7623438:983040,0,0 -g1,22943:9698513,7623438 -g1,22943:11666559,7623438 -g1,22943:12613554,7623438 -g1,22943:14326009,7623438 -g1,22943:15211400,7623438 -k1,22944:32583029,7623438:15003814 -g1,22944:32583029,7623438 -) -v1,22946:6630773,8308293:0,393216,0 -(1,22953:6630773,10703541:25952256,2788464,196608 -g1,22953:6630773,10703541 -g1,22953:6630773,10703541 -g1,22953:6434165,10703541 -(1,22953:6434165,10703541:0,2788464,196608 -r1,23014:32779637,10703541:26345472,2985072,196608 -k1,22953:6434165,10703541:-26345472 -) -(1,22953:6434165,10703541:26345472,2788464,196608 -[1,22953:6630773,10703541:25952256,2591856,0 -(1,22948:6630773,8536124:25952256,424439,112852 -(1,22947:6630773,8536124:0,0,0 -g1,22947:6630773,8536124 -g1,22947:6630773,8536124 -g1,22947:6303093,8536124 -(1,22947:6303093,8536124:0,0,0 -) -g1,22947:6630773,8536124 -) -k1,22948:6630773,8536124:0 -g1,22948:11610082,8536124 -g1,22948:12273990,8536124 -k1,22948:12273990,8536124:0 -h1,22948:14597668,8536124:0,0,0 -k1,22948:32583028,8536124:17985360 -g1,22948:32583028,8536124 -) -(1,22949:6630773,9220979:25952256,424439,112852 -h1,22949:6630773,9220979:0,0,0 -g1,22949:6962727,9220979 -g1,22949:7294681,9220979 -g1,22949:7626635,9220979 -g1,22949:7958589,9220979 -g1,22949:8290543,9220979 -g1,22949:8622497,9220979 -g1,22949:8954451,9220979 -g1,22949:9286405,9220979 -g1,22949:9618359,9220979 -g1,22949:9950313,9220979 -g1,22949:11942037,9220979 -g1,22949:12605945,9220979 -g1,22949:14597669,9220979 -g1,22949:15261577,9220979 -g1,22949:15925485,9220979 -k1,22949:15925485,9220979:0 -h1,22949:17253301,9220979:0,0,0 -k1,22949:32583029,9220979:15329728 -g1,22949:32583029,9220979 -) -(1,22950:6630773,9905834:25952256,431045,106246 -h1,22950:6630773,9905834:0,0,0 -g1,22950:6962727,9905834 -g1,22950:7294681,9905834 -g1,22950:7626635,9905834 -g1,22950:7958589,9905834 -g1,22950:8290543,9905834 -g1,22950:8622497,9905834 -g1,22950:8954451,9905834 -g1,22950:9286405,9905834 -g1,22950:9618359,9905834 -g1,22950:9950313,9905834 -g1,22950:12273991,9905834 -g1,22950:12937899,9905834 -g1,22950:17585255,9905834 -h1,22950:17917209,9905834:0,0,0 -k1,22950:32583029,9905834:14665820 -g1,22950:32583029,9905834 -) -(1,22951:6630773,10590689:25952256,424439,112852 -h1,22951:6630773,10590689:0,0,0 -g1,22951:6962727,10590689 -g1,22951:7294681,10590689 -g1,22951:7626635,10590689 -g1,22951:7958589,10590689 -g1,22951:8290543,10590689 -g1,22951:8622497,10590689 -g1,22951:8954451,10590689 -g1,22951:9286405,10590689 -g1,22951:9618359,10590689 -g1,22951:9950313,10590689 -k1,22951:9950313,10590689:0 -h1,22951:13933760,10590689:0,0,0 -k1,22951:32583028,10590689:18649268 -g1,22951:32583028,10590689 -) -] -) -g1,22953:32583029,10703541 -g1,22953:6630773,10703541 -g1,22953:6630773,10703541 -g1,22953:32583029,10703541 -g1,22953:32583029,10703541 -) -h1,22953:6630773,10900149:0,0,0 -(1,22959:6630773,13731309:25952256,32768,229376 -(1,22959:6630773,13731309:0,32768,229376 -(1,22959:6630773,13731309:5505024,32768,229376 -r1,23014:12135797,13731309:5505024,262144,229376 -) -k1,22959:6630773,13731309:-5505024 -) -(1,22959:6630773,13731309:25952256,32768,0 -r1,23014:32583029,13731309:25952256,32768,0 -) -) -(1,22959:6630773,15363161:25952256,606339,161218 -(1,22959:6630773,15363161:2464678,582746,14155 -g1,22959:6630773,15363161 -g1,22959:9095451,15363161 -) -g1,22959:13678777,15363161 -g1,22959:16714405,15363161 -k1,22959:32583029,15363161:14044102 -g1,22959:32583029,15363161 -) -(1,22965:6630773,16621457:25952256,513147,134348 -k1,22964:7359767,16621457:259101 -k1,22964:8150365,16621457:259101 -k1,22964:11213097,16621457:259102 -k1,22964:13170236,16621457:259101 -k1,22964:15164730,16621457:259101 -k1,22964:18021678,16621457:259101 -k1,22964:18932208,16621457:259102 -k1,22964:21605655,16621457:259101 -k1,22964:23937660,16621457:259101 -k1,22964:25215846,16621457:259101 -k1,22964:28538100,16621457:259101 -k1,22964:30074499,16621457:259102 -k1,22964:30985028,16621457:259101 -k1,22964:31599989,16621457:259101 -k1,22964:32583029,16621457:0 -) -(1,22965:6630773,17486537:25952256,513147,134348 -k1,22964:8538873,17486537:172707 -k1,22964:9067439,17486537:172706 -k1,22964:11210814,17486537:172707 -k1,22964:14318223,17486537:172707 -k1,22964:14956890,17486537:172706 -k1,22964:16148682,17486537:172707 -k1,22964:17304429,17486537:172707 -k1,22964:18609597,17486537:172706 -k1,22964:20257519,17486537:172707 -k1,22964:21081653,17486537:172706 -k1,22964:22002126,17486537:172707 -k1,22964:25327770,17486537:172707 -k1,22964:27202446,17486537:172706 -k1,22964:27987915,17486537:172707 -k1,22964:28516482,17486537:172707 -k1,22964:30142777,17486537:172706 -k1,22964:31914562,17486537:172707 -k1,22964:32583029,17486537:0 -) -(1,22965:6630773,18351617:25952256,513147,126483 -k1,22964:7198096,18351617:211463 -k1,22964:9254397,18351617:211463 -k1,22964:10125151,18351617:211462 -k1,22964:11944212,18351617:211463 -k1,22964:13685941,18351617:211463 -k1,22964:14548832,18351617:211463 -k1,22964:15508061,18351617:211463 -k1,22964:18760394,18351617:211462 -k1,22964:20365808,18351617:211463 -k1,22964:23858003,18351617:211463 -k1,22964:26423519,18351617:211463 -k1,22964:27093079,18351617:211463 -k1,22964:27836038,18351617:211462 -k1,22964:29382469,18351617:211463 -k1,22964:30245360,18351617:211463 -k1,22964:32583029,18351617:0 -) -(1,22965:6630773,19216697:25952256,505283,126483 -g1,22964:7849087,19216697 -g1,22964:11538108,19216697 -g1,22964:12388765,19216697 -g1,22964:14660898,19216697 -g1,22964:15879212,19216697 -g1,22964:17355738,19216697 -g1,22964:18171005,19216697 -g1,22964:19389319,19216697 -k1,22965:32583029,19216697:11310206 -g1,22965:32583029,19216697 -) -(1,22967:6630773,20081777:25952256,513147,134348 -h1,22966:6630773,20081777:983040,0,0 -k1,22966:8511858,20081777:270210 -k1,22966:9370581,20081777:270210 -k1,22966:10954133,20081777:270210 -k1,22966:12215902,20081777:270209 -k1,22966:14836233,20081777:270210 -k1,22966:15867971,20081777:270210 -k1,22966:18710469,20081777:270210 -k1,22966:19632107,20081777:270210 -k1,22966:22664660,20081777:270210 -k1,22966:25446209,20081777:270209 -k1,22966:28243487,20081777:270210 -k1,22966:29045194,20081777:270210 -k1,22966:31931601,20081777:270210 -k1,22966:32583029,20081777:0 -) -(1,22967:6630773,20946857:25952256,505283,126483 -k1,22966:7222290,20946857:235657 -k1,22966:10368400,20946857:235656 -k1,22966:12181508,20946857:235656 -k1,22966:14424533,20946857:235657 -k1,22966:16153756,20946857:235657 -k1,22966:16745272,20946857:235656 -k1,22966:19454257,20946857:235656 -k1,22966:20305952,20946857:235657 -k1,22966:23139456,20946857:235657 -k1,22966:25092155,20946857:235656 -k1,22966:27665481,20946857:235657 -k1,22966:30521266,20946857:235656 -k1,22966:32583029,20946857:0 -) -(1,22967:6630773,21811937:25952256,513147,126483 -k1,22966:9228838,21811937:265639 -k1,22966:11526748,21811937:265639 -k1,22966:13279399,21811937:265639 -k1,22966:15965283,21811937:265639 -k1,22966:18602670,21811937:265639 -k1,22966:19677680,21811937:265640 -k1,22966:22350456,21811937:265639 -k1,22966:24448482,21811937:265639 -k1,22966:25705681,21811937:265639 -k1,22966:27438016,21811937:265639 -k1,22966:30041324,21811937:265639 -k1,22966:31591469,21811937:265639 -k1,22966:32583029,21811937:0 -) -(1,22967:6630773,22677017:25952256,513147,134348 -g1,22966:8151863,22677017 -g1,22966:9018248,22677017 -g1,22966:9632320,22677017 -g1,22966:11022994,22677017 -g1,22966:14449216,22677017 -g1,22966:16135457,22677017 -g1,22966:18716264,22677017 -g1,22966:19531531,22677017 -g1,22966:23460414,22677017 -k1,22967:32583029,22677017:6159733 -g1,22967:32583029,22677017 -) -(1,22969:6630773,23542097:25952256,513147,134348 -h1,22968:6630773,23542097:983040,0,0 -k1,22968:10604985,23542097:296987 -k1,22968:11257833,23542097:296988 -k1,22968:12537860,23542097:296987 -k1,22968:15442525,23542097:296987 -k1,22968:18307213,23542097:296987 -k1,22968:18960061,23542097:296988 -k1,22968:21438086,23542097:296987 -k1,22968:24307361,23542097:296987 -k1,22968:25795793,23542097:296987 -k1,22968:28346564,23542097:296988 -k1,22968:29662636,23542097:296987 -k1,22968:31966991,23542097:296987 -k1,22968:32583029,23542097:0 -) -(1,22969:6630773,24407177:25952256,513147,126483 -g1,22968:9943617,24407177 -g1,22968:10770681,24407177 -g1,22968:12571610,24407177 -g1,22968:14468221,24407177 -g1,22968:15686535,24407177 -g1,22968:16868804,24407177 -g1,22968:19625903,24407177 -g1,22968:21919007,24407177 -g1,22968:23611146,24407177 -g1,22968:24829460,24407177 -g1,22968:27036057,24407177 -g1,22968:27766783,24407177 -k1,22969:32583029,24407177:3152943 -g1,22969:32583029,24407177 -) -(1,22971:6630773,25272257:25952256,505283,134348 -h1,22970:6630773,25272257:983040,0,0 -k1,22970:8948909,25272257:293074 -k1,22970:11903399,25272257:293073 -k1,22970:13894511,25272257:293074 -k1,22970:17284816,25272257:293074 -k1,22970:17933749,25272257:293073 -k1,22970:19504120,25272257:293074 -k1,22970:20448622,25272257:293074 -k1,22970:22153341,25272257:293073 -k1,22970:26673487,25272257:293074 -k1,22970:30328558,25272257:293074 -k1,22970:31914562,25272257:292979 -k1,22970:32583029,25272257:0 -) -(1,22971:6630773,26137337:25952256,513147,134348 -k1,22970:8671482,26137337:338739 -k1,22970:10988099,26137337:338740 -k1,22970:14045927,26137337:338739 -k1,22970:17069022,26137337:338740 -k1,22970:20810390,26137337:338739 -k1,22970:23354417,26137337:338740 -k1,22970:24344584,26137337:338739 -(1,22970:24344584,26137337:0,452978,115847 -r1,23014:26109697,26137337:1765113,568825,115847 -k1,22970:24344584,26137337:-1765113 -) -(1,22970:24344584,26137337:1765113,452978,115847 -k1,22970:24344584,26137337:3277 -h1,22970:26106420,26137337:0,411205,112570 -) -k1,22970:26448437,26137337:338740 -k1,22970:27978621,26137337:338739 -(1,22970:27978621,26137337:0,452978,122846 -r1,23014:30095446,26137337:2116825,575824,122846 -k1,22970:27978621,26137337:-2116825 -) -(1,22970:27978621,26137337:2116825,452978,122846 -k1,22970:27978621,26137337:3277 -h1,22970:30092169,26137337:0,411205,112570 -) -k1,22970:30434186,26137337:338740 -k1,22970:31764485,26137337:338739 -k1,22971:32583029,26137337:0 -) -(1,22971:6630773,27002417:25952256,505283,126483 -g1,22970:9315127,27002417 -g1,22970:10130394,27002417 -k1,22971:32583028,27002417:20358104 -g1,22971:32583028,27002417 -) -v1,22973:6630773,27687272:0,393216,0 -(1,22981:6630773,30740951:25952256,3446895,196608 -g1,22981:6630773,30740951 -g1,22981:6630773,30740951 -g1,22981:6434165,30740951 -(1,22981:6434165,30740951:0,3446895,196608 -r1,23014:32779637,30740951:26345472,3643503,196608 -k1,22981:6434165,30740951:-26345472 -) -(1,22981:6434165,30740951:26345472,3446895,196608 -[1,22981:6630773,30740951:25952256,3250287,0 -(1,22975:6630773,27921709:25952256,431045,112852 -(1,22974:6630773,27921709:0,0,0 -g1,22974:6630773,27921709 -g1,22974:6630773,27921709 -g1,22974:6303093,27921709 -(1,22974:6303093,27921709:0,0,0 -) -g1,22974:6630773,27921709 -) -g1,22975:8290543,27921709 -g1,22975:9286405,27921709 -g1,22975:15925484,27921709 -g1,22975:16589392,27921709 -g1,22975:18913070,27921709 -g1,22975:20904794,27921709 -g1,22975:21568702,27921709 -g1,22975:22896518,27921709 -h1,22975:23228472,27921709:0,0,0 -k1,22975:32583029,27921709:9354557 -g1,22975:32583029,27921709 -) -(1,22976:6630773,28606564:25952256,431045,79822 -h1,22976:6630773,28606564:0,0,0 -g1,22976:6962727,28606564 -g1,22976:7294681,28606564 -g1,22976:13269852,28606564 -g1,22976:13933760,28606564 -h1,22976:15925484,28606564:0,0,0 -k1,22976:32583029,28606564:16657545 -g1,22976:32583029,28606564 -) -(1,22977:6630773,29291419:25952256,431045,112852 -h1,22977:6630773,29291419:0,0,0 -g1,22977:9618359,29291419 -g1,22977:10282267,29291419 -g1,22977:14265714,29291419 -g1,22977:16257438,29291419 -g1,22977:16921346,29291419 -g1,22977:17917208,29291419 -g1,22977:20240886,29291419 -g1,22977:20904794,29291419 -h1,22977:21568702,29291419:0,0,0 -k1,22977:32583029,29291419:11014327 -g1,22977:32583029,29291419 -) -(1,22978:6630773,29976274:25952256,431045,112852 -h1,22978:6630773,29976274:0,0,0 -k1,22978:6630773,29976274:0 -h1,22978:10282267,29976274:0,0,0 -k1,22978:32583029,29976274:22300762 -g1,22978:32583029,29976274 -) -(1,22979:6630773,30661129:25952256,431045,79822 -h1,22979:6630773,30661129:0,0,0 -k1,22979:6630773,30661129:0 -h1,22979:9618359,30661129:0,0,0 -k1,22979:32583029,30661129:22964670 -g1,22979:32583029,30661129 -) -] -) -g1,22981:32583029,30740951 -g1,22981:6630773,30740951 -g1,22981:6630773,30740951 -g1,22981:32583029,30740951 -g1,22981:32583029,30740951 -) -h1,22981:6630773,30937559:0,0,0 -(1,22985:6630773,31802639:25952256,505283,126483 -h1,22984:6630773,31802639:983040,0,0 -k1,22984:8864398,31802639:208563 -k1,22984:13300033,31802639:208563 -k1,22984:16696924,31802639:208564 -k1,22984:18096932,31802639:208563 -k1,22984:19598511,31802639:208554 -k1,22984:22139500,31802639:208563 -k1,22984:23216415,31802639:208563 -k1,22984:24800579,31802639:208563 -k1,22984:26539409,31802639:208564 -k1,22984:27399400,31802639:208563 -k1,22984:30817916,31802639:208563 -(1,22984:30817916,31802639:0,459977,115847 -r1,23014:32583029,31802639:1765113,575824,115847 -k1,22984:30817916,31802639:-1765113 -) -(1,22984:30817916,31802639:1765113,459977,115847 -k1,22984:30817916,31802639:3277 -h1,22984:32579752,31802639:0,411205,112570 -) -k1,22984:32583029,31802639:0 -) -(1,22985:6630773,32667719:25952256,505283,126483 -g1,22984:8197739,32667719 -(1,22984:8197739,32667719:0,452978,115847 -r1,23014:12424835,32667719:4227096,568825,115847 -k1,22984:8197739,32667719:-4227096 -) -(1,22984:8197739,32667719:4227096,452978,115847 -k1,22984:8197739,32667719:3277 -h1,22984:12421558,32667719:0,411205,112570 -) -g1,22984:12624064,32667719 -g1,22984:13506178,32667719 -(1,22984:13506178,32667719:0,452978,122846 -r1,23014:15271291,32667719:1765113,575824,122846 -k1,22984:13506178,32667719:-1765113 -) -(1,22984:13506178,32667719:1765113,452978,122846 -k1,22984:13506178,32667719:3277 -h1,22984:15268014,32667719:0,411205,112570 -) -g1,22984:15644190,32667719 -k1,22985:32583029,32667719:13089910 -g1,22985:32583029,32667719 -) -v1,22987:6630773,33352574:0,393216,0 -(1,22993:6630773,35036543:25952256,2077185,196608 -g1,22993:6630773,35036543 -g1,22993:6630773,35036543 -g1,22993:6434165,35036543 -(1,22993:6434165,35036543:0,2077185,196608 -r1,23014:32779637,35036543:26345472,2273793,196608 -k1,22993:6434165,35036543:-26345472 -) -(1,22993:6434165,35036543:26345472,2077185,196608 -[1,22993:6630773,35036543:25952256,1880577,0 -(1,22989:6630773,33587011:25952256,431045,112852 -(1,22988:6630773,33587011:0,0,0 -g1,22988:6630773,33587011 -g1,22988:6630773,33587011 -g1,22988:6303093,33587011 -(1,22988:6303093,33587011:0,0,0 -) -g1,22988:6630773,33587011 -) -k1,22989:6630773,33587011:0 -g1,22989:11942036,33587011 -g1,22989:12605944,33587011 -g1,22989:16589391,33587011 -g1,22989:18581115,33587011 -g1,22989:19245023,33587011 -g1,22989:20240885,33587011 -g1,22989:22564563,33587011 -g1,22989:23228471,33587011 -h1,22989:23892379,33587011:0,0,0 -k1,22989:32583029,33587011:8690650 -g1,22989:32583029,33587011 -) -(1,22990:6630773,34271866:25952256,431045,112852 -h1,22990:6630773,34271866:0,0,0 -k1,22990:6630773,34271866:0 -h1,22990:10282267,34271866:0,0,0 -k1,22990:32583029,34271866:22300762 -g1,22990:32583029,34271866 -) -(1,22991:6630773,34956721:25952256,431045,79822 -h1,22991:6630773,34956721:0,0,0 -k1,22991:6630773,34956721:0 -h1,22991:9618359,34956721:0,0,0 -k1,22991:32583029,34956721:22964670 -g1,22991:32583029,34956721 -) -] -) -g1,22993:32583029,35036543 -g1,22993:6630773,35036543 -g1,22993:6630773,35036543 -g1,22993:32583029,35036543 -g1,22993:32583029,35036543 -) -h1,22993:6630773,35233151:0,0,0 -(1,22997:6630773,36098231:25952256,513147,134348 -h1,22996:6630773,36098231:983040,0,0 -k1,22996:8387363,36098231:145715 -k1,22996:9552164,36098231:145716 -k1,22996:11064960,36098231:145715 -k1,22996:11869967,36098231:145715 -k1,22996:14734772,36098231:145716 -k1,22996:17218156,36098231:145715 -k1,22996:18311523,36098231:145716 -k1,22996:19440278,36098231:145715 -k1,22996:21744749,36098231:145715 -k1,22996:22506503,36098231:145716 -k1,22996:24164134,36098231:145715 -k1,22996:25986260,36098231:145715 -k1,22996:27479342,36098231:145662 -k1,22996:28816503,36098231:145716 -k1,22996:30327935,36098231:145662 -k1,22996:32583029,36098231:0 -) -(1,22997:6630773,36963311:25952256,513147,134348 -g1,22996:9514357,36963311 -g1,22996:13116215,36963311 -g1,22996:15520731,36963311 -g1,22996:16371388,36963311 -(1,22996:16371388,36963311:0,452978,115847 -r1,23014:18136501,36963311:1765113,568825,115847 -k1,22996:16371388,36963311:-1765113 -) -(1,22996:16371388,36963311:1765113,452978,115847 -k1,22996:16371388,36963311:3277 -h1,22996:18133224,36963311:0,411205,112570 -) -g1,22996:18335730,36963311 -g1,22996:19726404,36963311 -(1,22996:19726404,36963311:0,452978,122846 -r1,23014:21843229,36963311:2116825,575824,122846 -k1,22996:19726404,36963311:-2116825 -) -(1,22996:19726404,36963311:2116825,452978,122846 -k1,22996:19726404,36963311:3277 -h1,22996:21839952,36963311:0,411205,112570 -) -g1,22996:22042458,36963311 -g1,22996:23233247,36963311 -g1,22996:26629978,36963311 -g1,22996:27445245,36963311 -k1,22997:32583029,36963311:3215613 -g1,22997:32583029,36963311 -) -v1,22999:6630773,37648166:0,393216,0 -(1,23005:6630773,39332135:25952256,2077185,196608 -g1,23005:6630773,39332135 -g1,23005:6630773,39332135 -g1,23005:6434165,39332135 -(1,23005:6434165,39332135:0,2077185,196608 -r1,23014:32779637,39332135:26345472,2273793,196608 -k1,23005:6434165,39332135:-26345472 -) -(1,23005:6434165,39332135:26345472,2077185,196608 -[1,23005:6630773,39332135:25952256,1880577,0 -(1,23001:6630773,37882603:25952256,431045,112852 -(1,23000:6630773,37882603:0,0,0 -g1,23000:6630773,37882603 -g1,23000:6630773,37882603 -g1,23000:6303093,37882603 -(1,23000:6303093,37882603:0,0,0 -) -g1,23000:6630773,37882603 -) -k1,23001:6630773,37882603:0 -g1,23001:9950313,37882603 -g1,23001:10614221,37882603 -g1,23001:14929622,37882603 -g1,23001:16921346,37882603 -g1,23001:17585254,37882603 -g1,23001:19576978,37882603 -g1,23001:21900656,37882603 -g1,23001:22564564,37882603 -h1,23001:23892380,37882603:0,0,0 -k1,23001:32583029,37882603:8690649 -g1,23001:32583029,37882603 -) -(1,23002:6630773,38567458:25952256,431045,112852 -h1,23002:6630773,38567458:0,0,0 -k1,23002:6630773,38567458:0 -h1,23002:10282267,38567458:0,0,0 -k1,23002:32583029,38567458:22300762 -g1,23002:32583029,38567458 -) -(1,23003:6630773,39252313:25952256,431045,79822 -h1,23003:6630773,39252313:0,0,0 -k1,23003:6630773,39252313:0 -h1,23003:9618359,39252313:0,0,0 -k1,23003:32583029,39252313:22964670 -g1,23003:32583029,39252313 -) -] -) -g1,23005:32583029,39332135 -g1,23005:6630773,39332135 -g1,23005:6630773,39332135 -g1,23005:32583029,39332135 -g1,23005:32583029,39332135 -) -h1,23005:6630773,39528743:0,0,0 -v1,23011:6630773,40393823:0,393216,0 -(1,23014:6630773,45088263:25952256,5087656,0 -g1,23014:6630773,45088263 -g1,23014:6237557,45088263 -r1,23014:6368629,45088263:131072,5087656,0 -g1,23014:6567858,45088263 -g1,23014:6764466,45088263 -[1,23014:6764466,45088263:25818563,5087656,0 -(1,23012:6764466,40755000:25818563,754393,260573 -(1,23011:6764466,40755000:0,754393,260573 -r1,23014:7856192,40755000:1091726,1014966,260573 -k1,23011:6764466,40755000:-1091726 -) -(1,23011:6764466,40755000:1091726,754393,260573 -) -k1,23011:8020443,40755000:164251 -k1,23011:8348123,40755000:327680 -k1,23011:10229418,40755000:164252 -k1,23011:13112758,40755000:164251 -k1,23011:15614678,40755000:164251 -k1,23011:16770490,40755000:164252 -k1,23011:18256602,40755000:164251 -k1,23011:19080145,40755000:164251 -k1,23011:21479829,40755000:164251 -k1,23011:22835526,40755000:164252 -k1,23011:25032048,40755000:164251 -k1,23011:26187859,40755000:164251 -k1,23011:30553624,40755000:164252 -k1,23011:31333913,40755000:164251 -k1,23012:32583029,40755000:0 -) -(1,23012:6764466,41620080:25818563,513147,134348 -k1,23011:9550759,41620080:199587 -k1,23011:12834470,41620080:199587 -k1,23011:13661892,41620080:199587 -k1,23011:15553619,41620080:199587 -k1,23011:17624259,41620080:199587 -k1,23011:19478629,41620080:199586 -k1,23011:20669776,41620080:199587 -k1,23011:23540610,41620080:199587 -k1,23011:26128984,41620080:199587 -k1,23011:28666240,41620080:199587 -k1,23011:31649796,41620080:199587 -k1,23011:32583029,41620080:0 -) -(1,23012:6764466,42485160:25818563,513147,134348 -k1,23011:10011611,42485160:149914 -k1,23011:12880613,42485160:149913 -k1,23011:13646565,42485160:149914 -k1,23011:14152338,42485160:149913 -k1,23011:15997013,42485160:149914 -k1,23011:17129966,42485160:149913 -k1,23011:19633933,42485160:149914 -k1,23011:21658177,42485160:149914 -k1,23011:24145759,42485160:149913 -k1,23011:26582880,42485160:149914 -k1,23011:27825278,42485160:149913 -k1,23011:30737535,42485160:149914 -k1,23012:32583029,42485160:0 -) -(1,23012:6764466,43350240:25818563,513147,134348 -k1,23011:8036639,43350240:219665 -k1,23011:8939188,43350240:219664 -k1,23011:10634068,43350240:219665 -k1,23011:12363683,43350240:219665 -k1,23011:15440062,43350240:219665 -k1,23011:17053677,43350240:219664 -k1,23011:20035685,43350240:219665 -k1,23011:21936348,43350240:219665 -k1,23011:24030343,43350240:219665 -k1,23011:27636908,43350240:219664 -k1,23011:30245360,43350240:219665 -k1,23011:32583029,43350240:0 -) -(1,23012:6764466,44215320:25818563,513147,134348 -k1,23011:8068742,44215320:199994 -k1,23011:9554552,44215320:199994 -k1,23011:11497804,44215320:199994 -k1,23011:12313836,44215320:199994 -k1,23011:14022469,44215320:199994 -k1,23011:16917959,44215320:199994 -k1,23011:20275477,44215320:199993 -k1,23011:21545019,44215320:199994 -k1,23011:23220228,44215320:199994 -k1,23011:26936884,44215320:199994 -k1,23011:27752916,44215320:199994 -k1,23011:28971995,44215320:199994 -k1,23011:32583029,44215320:0 -) -(1,23012:6764466,45080400:25818563,505283,7863 -g1,23011:8155140,45080400 -g1,23011:9863008,45080400 -k1,23012:32583029,45080400:20599276 -g1,23012:32583029,45080400 -) -] -g1,23014:32583029,45088263 -) -] -(1,23014:32583029,45706769:0,0,0 -g1,23014:32583029,45706769 -) -) -] -(1,23014:6630773,47279633:25952256,0,0 -h1,23014:6630773,47279633:25952256,0,0 -) -] -(1,23014:4262630,4025873:0,0,0 -[1,23014:-473656,4025873:0,0,0 -(1,23014:-473656,-710413:0,0,0 -(1,23014:-473656,-710413:0,0,0 -g1,23014:-473656,-710413 -) -g1,23014:-473656,-710413 +] +g1,23012:6630773,4812305 +g1,23012:6630773,4812305 +g1,23012:10354528,4812305 +g1,23012:12756422,4812305 +g1,23012:14323387,4812305 +k1,23012:31387651,4812305:17064264 +) +) +] +[1,23012:6630773,45706769:25952256,40108032,0 +(1,23012:6630773,45706769:25952256,40108032,0 +(1,23012:6630773,45706769:0,0,0 +g1,23012:6630773,45706769 +) +[1,23012:6630773,45706769:25952256,40108032,0 +v1,22938:6630773,6254097:0,393216,0 +(1,22938:6630773,6561750:25952256,700869,196608 +g1,22938:6630773,6561750 +g1,22938:6630773,6561750 +g1,22938:6434165,6561750 +(1,22938:6434165,6561750:0,700869,196608 +r1,23012:32779637,6561750:26345472,897477,196608 +k1,22938:6434165,6561750:-26345472 +) +(1,22938:6434165,6561750:26345472,700869,196608 +[1,22938:6630773,6561750:25952256,504261,0 +(1,22936:6630773,6481928:25952256,424439,79822 +h1,22936:6630773,6481928:0,0,0 +h1,22936:6962727,6481928:0,0,0 +k1,22936:32583029,6481928:25620302 +g1,22936:32583029,6481928 +) +] +) +g1,22938:32583029,6561750 +g1,22938:6630773,6561750 +g1,22938:6630773,6561750 +g1,22938:32583029,6561750 +g1,22938:32583029,6561750 +) +h1,22938:6630773,6758358:0,0,0 +(1,22942:6630773,7623438:25952256,513147,7863 +h1,22941:6630773,7623438:983040,0,0 +g1,22941:9698513,7623438 +g1,22941:11666559,7623438 +g1,22941:12613554,7623438 +g1,22941:14326009,7623438 +g1,22941:15211400,7623438 +k1,22942:32583029,7623438:15003814 +g1,22942:32583029,7623438 +) +v1,22944:6630773,8308293:0,393216,0 +(1,22951:6630773,10703541:25952256,2788464,196608 +g1,22951:6630773,10703541 +g1,22951:6630773,10703541 +g1,22951:6434165,10703541 +(1,22951:6434165,10703541:0,2788464,196608 +r1,23012:32779637,10703541:26345472,2985072,196608 +k1,22951:6434165,10703541:-26345472 +) +(1,22951:6434165,10703541:26345472,2788464,196608 +[1,22951:6630773,10703541:25952256,2591856,0 +(1,22946:6630773,8536124:25952256,424439,112852 +(1,22945:6630773,8536124:0,0,0 +g1,22945:6630773,8536124 +g1,22945:6630773,8536124 +g1,22945:6303093,8536124 +(1,22945:6303093,8536124:0,0,0 +) +g1,22945:6630773,8536124 +) +k1,22946:6630773,8536124:0 +g1,22946:11610082,8536124 +g1,22946:12273990,8536124 +k1,22946:12273990,8536124:0 +h1,22946:14597668,8536124:0,0,0 +k1,22946:32583028,8536124:17985360 +g1,22946:32583028,8536124 +) +(1,22947:6630773,9220979:25952256,424439,112852 +h1,22947:6630773,9220979:0,0,0 +g1,22947:6962727,9220979 +g1,22947:7294681,9220979 +g1,22947:7626635,9220979 +g1,22947:7958589,9220979 +g1,22947:8290543,9220979 +g1,22947:8622497,9220979 +g1,22947:8954451,9220979 +g1,22947:9286405,9220979 +g1,22947:9618359,9220979 +g1,22947:9950313,9220979 +g1,22947:11942037,9220979 +g1,22947:12605945,9220979 +g1,22947:14597669,9220979 +g1,22947:15261577,9220979 +g1,22947:15925485,9220979 +k1,22947:15925485,9220979:0 +h1,22947:17253301,9220979:0,0,0 +k1,22947:32583029,9220979:15329728 +g1,22947:32583029,9220979 +) +(1,22948:6630773,9905834:25952256,431045,106246 +h1,22948:6630773,9905834:0,0,0 +g1,22948:6962727,9905834 +g1,22948:7294681,9905834 +g1,22948:7626635,9905834 +g1,22948:7958589,9905834 +g1,22948:8290543,9905834 +g1,22948:8622497,9905834 +g1,22948:8954451,9905834 +g1,22948:9286405,9905834 +g1,22948:9618359,9905834 +g1,22948:9950313,9905834 +g1,22948:12273991,9905834 +g1,22948:12937899,9905834 +g1,22948:17585255,9905834 +h1,22948:17917209,9905834:0,0,0 +k1,22948:32583029,9905834:14665820 +g1,22948:32583029,9905834 +) +(1,22949:6630773,10590689:25952256,424439,112852 +h1,22949:6630773,10590689:0,0,0 +g1,22949:6962727,10590689 +g1,22949:7294681,10590689 +g1,22949:7626635,10590689 +g1,22949:7958589,10590689 +g1,22949:8290543,10590689 +g1,22949:8622497,10590689 +g1,22949:8954451,10590689 +g1,22949:9286405,10590689 +g1,22949:9618359,10590689 +g1,22949:9950313,10590689 +k1,22949:9950313,10590689:0 +h1,22949:13933760,10590689:0,0,0 +k1,22949:32583028,10590689:18649268 +g1,22949:32583028,10590689 +) +] +) +g1,22951:32583029,10703541 +g1,22951:6630773,10703541 +g1,22951:6630773,10703541 +g1,22951:32583029,10703541 +g1,22951:32583029,10703541 +) +h1,22951:6630773,10900149:0,0,0 +(1,22957:6630773,13731309:25952256,32768,229376 +(1,22957:6630773,13731309:0,32768,229376 +(1,22957:6630773,13731309:5505024,32768,229376 +r1,23012:12135797,13731309:5505024,262144,229376 +) +k1,22957:6630773,13731309:-5505024 +) +(1,22957:6630773,13731309:25952256,32768,0 +r1,23012:32583029,13731309:25952256,32768,0 +) +) +(1,22957:6630773,15363161:25952256,606339,161218 +(1,22957:6630773,15363161:2464678,582746,14155 +g1,22957:6630773,15363161 +g1,22957:9095451,15363161 +) +g1,22957:13678777,15363161 +g1,22957:16714405,15363161 +k1,22957:32583029,15363161:14044102 +g1,22957:32583029,15363161 +) +(1,22963:6630773,16621457:25952256,513147,134348 +k1,22962:7359767,16621457:259101 +k1,22962:8150365,16621457:259101 +k1,22962:11213097,16621457:259102 +k1,22962:13170236,16621457:259101 +k1,22962:15164730,16621457:259101 +k1,22962:18021678,16621457:259101 +k1,22962:18932208,16621457:259102 +k1,22962:21605655,16621457:259101 +k1,22962:23937660,16621457:259101 +k1,22962:25215846,16621457:259101 +k1,22962:28538100,16621457:259101 +k1,22962:30074499,16621457:259102 +k1,22962:30985028,16621457:259101 +k1,22962:31599989,16621457:259101 +k1,22962:32583029,16621457:0 +) +(1,22963:6630773,17486537:25952256,513147,134348 +k1,22962:8538873,17486537:172707 +k1,22962:9067439,17486537:172706 +k1,22962:11210814,17486537:172707 +k1,22962:14318223,17486537:172707 +k1,22962:14956890,17486537:172706 +k1,22962:16148682,17486537:172707 +k1,22962:17304429,17486537:172707 +k1,22962:18609597,17486537:172706 +k1,22962:20257519,17486537:172707 +k1,22962:21081653,17486537:172706 +k1,22962:22002126,17486537:172707 +k1,22962:25327770,17486537:172707 +k1,22962:27202446,17486537:172706 +k1,22962:27987915,17486537:172707 +k1,22962:28516482,17486537:172707 +k1,22962:30142777,17486537:172706 +k1,22962:31914562,17486537:172707 +k1,22962:32583029,17486537:0 +) +(1,22963:6630773,18351617:25952256,513147,126483 +k1,22962:7198096,18351617:211463 +k1,22962:9254397,18351617:211463 +k1,22962:10125151,18351617:211462 +k1,22962:11944212,18351617:211463 +k1,22962:13685941,18351617:211463 +k1,22962:14548832,18351617:211463 +k1,22962:15508061,18351617:211463 +k1,22962:18760394,18351617:211462 +k1,22962:20365808,18351617:211463 +k1,22962:23858003,18351617:211463 +k1,22962:26423519,18351617:211463 +k1,22962:27093079,18351617:211463 +k1,22962:27836038,18351617:211462 +k1,22962:29382469,18351617:211463 +k1,22962:30245360,18351617:211463 +k1,22962:32583029,18351617:0 +) +(1,22963:6630773,19216697:25952256,505283,126483 +g1,22962:7849087,19216697 +g1,22962:11538108,19216697 +g1,22962:12388765,19216697 +g1,22962:14660898,19216697 +g1,22962:15879212,19216697 +g1,22962:17355738,19216697 +g1,22962:18171005,19216697 +g1,22962:19389319,19216697 +k1,22963:32583029,19216697:11310206 +g1,22963:32583029,19216697 +) +(1,22965:6630773,20081777:25952256,513147,134348 +h1,22964:6630773,20081777:983040,0,0 +k1,22964:8511858,20081777:270210 +k1,22964:9370581,20081777:270210 +k1,22964:10954133,20081777:270210 +k1,22964:12215902,20081777:270209 +k1,22964:14836233,20081777:270210 +k1,22964:15867971,20081777:270210 +k1,22964:18710469,20081777:270210 +k1,22964:19632107,20081777:270210 +k1,22964:22664660,20081777:270210 +k1,22964:25446209,20081777:270209 +k1,22964:28243487,20081777:270210 +k1,22964:29045194,20081777:270210 +k1,22964:31931601,20081777:270210 +k1,22964:32583029,20081777:0 +) +(1,22965:6630773,20946857:25952256,505283,126483 +k1,22964:7222290,20946857:235657 +k1,22964:10368400,20946857:235656 +k1,22964:12181508,20946857:235656 +k1,22964:14424533,20946857:235657 +k1,22964:16153756,20946857:235657 +k1,22964:16745272,20946857:235656 +k1,22964:19454257,20946857:235656 +k1,22964:20305952,20946857:235657 +k1,22964:23139456,20946857:235657 +k1,22964:25092155,20946857:235656 +k1,22964:27665481,20946857:235657 +k1,22964:30521266,20946857:235656 +k1,22964:32583029,20946857:0 +) +(1,22965:6630773,21811937:25952256,513147,126483 +k1,22964:9228838,21811937:265639 +k1,22964:11526748,21811937:265639 +k1,22964:13279399,21811937:265639 +k1,22964:15965283,21811937:265639 +k1,22964:18602670,21811937:265639 +k1,22964:19677680,21811937:265640 +k1,22964:22350456,21811937:265639 +k1,22964:24448482,21811937:265639 +k1,22964:25705681,21811937:265639 +k1,22964:27438016,21811937:265639 +k1,22964:30041324,21811937:265639 +k1,22964:31591469,21811937:265639 +k1,22964:32583029,21811937:0 +) +(1,22965:6630773,22677017:25952256,513147,134348 +g1,22964:8151863,22677017 +g1,22964:9018248,22677017 +g1,22964:9632320,22677017 +g1,22964:11022994,22677017 +g1,22964:14449216,22677017 +g1,22964:16135457,22677017 +g1,22964:18716264,22677017 +g1,22964:19531531,22677017 +g1,22964:23460414,22677017 +k1,22965:32583029,22677017:6159733 +g1,22965:32583029,22677017 +) +(1,22967:6630773,23542097:25952256,513147,134348 +h1,22966:6630773,23542097:983040,0,0 +k1,22966:10604985,23542097:296987 +k1,22966:11257833,23542097:296988 +k1,22966:12537860,23542097:296987 +k1,22966:15442525,23542097:296987 +k1,22966:18307213,23542097:296987 +k1,22966:18960061,23542097:296988 +k1,22966:21438086,23542097:296987 +k1,22966:24307361,23542097:296987 +k1,22966:25795793,23542097:296987 +k1,22966:28346564,23542097:296988 +k1,22966:29662636,23542097:296987 +k1,22966:31966991,23542097:296987 +k1,22966:32583029,23542097:0 +) +(1,22967:6630773,24407177:25952256,513147,126483 +g1,22966:9943617,24407177 +g1,22966:10770681,24407177 +g1,22966:12571610,24407177 +g1,22966:14468221,24407177 +g1,22966:15686535,24407177 +g1,22966:16868804,24407177 +g1,22966:19625903,24407177 +g1,22966:21919007,24407177 +g1,22966:23611146,24407177 +g1,22966:24829460,24407177 +g1,22966:27036057,24407177 +g1,22966:27766783,24407177 +k1,22967:32583029,24407177:3152943 +g1,22967:32583029,24407177 +) +(1,22969:6630773,25272257:25952256,505283,134348 +h1,22968:6630773,25272257:983040,0,0 +k1,22968:8948909,25272257:293074 +k1,22968:11903399,25272257:293073 +k1,22968:13894511,25272257:293074 +k1,22968:17284816,25272257:293074 +k1,22968:17933749,25272257:293073 +k1,22968:19504120,25272257:293074 +k1,22968:20448622,25272257:293074 +k1,22968:22153341,25272257:293073 +k1,22968:26673487,25272257:293074 +k1,22968:30328558,25272257:293074 +k1,22968:31914562,25272257:292979 +k1,22968:32583029,25272257:0 +) +(1,22969:6630773,26137337:25952256,513147,134348 +k1,22968:8671482,26137337:338739 +k1,22968:10988099,26137337:338740 +k1,22968:14045927,26137337:338739 +k1,22968:17069022,26137337:338740 +k1,22968:20810390,26137337:338739 +k1,22968:23354417,26137337:338740 +k1,22968:24344584,26137337:338739 +(1,22968:24344584,26137337:0,452978,115847 +r1,23012:26109697,26137337:1765113,568825,115847 +k1,22968:24344584,26137337:-1765113 +) +(1,22968:24344584,26137337:1765113,452978,115847 +k1,22968:24344584,26137337:3277 +h1,22968:26106420,26137337:0,411205,112570 +) +k1,22968:26448437,26137337:338740 +k1,22968:27978621,26137337:338739 +(1,22968:27978621,26137337:0,452978,122846 +r1,23012:30095446,26137337:2116825,575824,122846 +k1,22968:27978621,26137337:-2116825 +) +(1,22968:27978621,26137337:2116825,452978,122846 +k1,22968:27978621,26137337:3277 +h1,22968:30092169,26137337:0,411205,112570 +) +k1,22968:30434186,26137337:338740 +k1,22968:31764485,26137337:338739 +k1,22969:32583029,26137337:0 +) +(1,22969:6630773,27002417:25952256,505283,126483 +g1,22968:9315127,27002417 +g1,22968:10130394,27002417 +k1,22969:32583028,27002417:20358104 +g1,22969:32583028,27002417 +) +v1,22971:6630773,27687272:0,393216,0 +(1,22979:6630773,30740951:25952256,3446895,196608 +g1,22979:6630773,30740951 +g1,22979:6630773,30740951 +g1,22979:6434165,30740951 +(1,22979:6434165,30740951:0,3446895,196608 +r1,23012:32779637,30740951:26345472,3643503,196608 +k1,22979:6434165,30740951:-26345472 +) +(1,22979:6434165,30740951:26345472,3446895,196608 +[1,22979:6630773,30740951:25952256,3250287,0 +(1,22973:6630773,27921709:25952256,431045,112852 +(1,22972:6630773,27921709:0,0,0 +g1,22972:6630773,27921709 +g1,22972:6630773,27921709 +g1,22972:6303093,27921709 +(1,22972:6303093,27921709:0,0,0 +) +g1,22972:6630773,27921709 +) +g1,22973:8290543,27921709 +g1,22973:9286405,27921709 +g1,22973:15925484,27921709 +g1,22973:16589392,27921709 +g1,22973:18913070,27921709 +g1,22973:20904794,27921709 +g1,22973:21568702,27921709 +g1,22973:22896518,27921709 +h1,22973:23228472,27921709:0,0,0 +k1,22973:32583029,27921709:9354557 +g1,22973:32583029,27921709 +) +(1,22974:6630773,28606564:25952256,431045,79822 +h1,22974:6630773,28606564:0,0,0 +g1,22974:6962727,28606564 +g1,22974:7294681,28606564 +g1,22974:13269852,28606564 +g1,22974:13933760,28606564 +h1,22974:15925484,28606564:0,0,0 +k1,22974:32583029,28606564:16657545 +g1,22974:32583029,28606564 +) +(1,22975:6630773,29291419:25952256,431045,112852 +h1,22975:6630773,29291419:0,0,0 +g1,22975:9618359,29291419 +g1,22975:10282267,29291419 +g1,22975:14265714,29291419 +g1,22975:16257438,29291419 +g1,22975:16921346,29291419 +g1,22975:17917208,29291419 +g1,22975:20240886,29291419 +g1,22975:20904794,29291419 +h1,22975:21568702,29291419:0,0,0 +k1,22975:32583029,29291419:11014327 +g1,22975:32583029,29291419 +) +(1,22976:6630773,29976274:25952256,431045,112852 +h1,22976:6630773,29976274:0,0,0 +k1,22976:6630773,29976274:0 +h1,22976:10282267,29976274:0,0,0 +k1,22976:32583029,29976274:22300762 +g1,22976:32583029,29976274 +) +(1,22977:6630773,30661129:25952256,431045,79822 +h1,22977:6630773,30661129:0,0,0 +k1,22977:6630773,30661129:0 +h1,22977:9618359,30661129:0,0,0 +k1,22977:32583029,30661129:22964670 +g1,22977:32583029,30661129 +) +] +) +g1,22979:32583029,30740951 +g1,22979:6630773,30740951 +g1,22979:6630773,30740951 +g1,22979:32583029,30740951 +g1,22979:32583029,30740951 +) +h1,22979:6630773,30937559:0,0,0 +(1,22983:6630773,31802639:25952256,505283,126483 +h1,22982:6630773,31802639:983040,0,0 +k1,22982:8864398,31802639:208563 +k1,22982:13300033,31802639:208563 +k1,22982:16696924,31802639:208564 +k1,22982:18096932,31802639:208563 +k1,22982:19598511,31802639:208554 +k1,22982:22139500,31802639:208563 +k1,22982:23216415,31802639:208563 +k1,22982:24800579,31802639:208563 +k1,22982:26539409,31802639:208564 +k1,22982:27399400,31802639:208563 +k1,22982:30817916,31802639:208563 +(1,22982:30817916,31802639:0,459977,115847 +r1,23012:32583029,31802639:1765113,575824,115847 +k1,22982:30817916,31802639:-1765113 +) +(1,22982:30817916,31802639:1765113,459977,115847 +k1,22982:30817916,31802639:3277 +h1,22982:32579752,31802639:0,411205,112570 +) +k1,22982:32583029,31802639:0 +) +(1,22983:6630773,32667719:25952256,505283,126483 +g1,22982:8197739,32667719 +(1,22982:8197739,32667719:0,452978,115847 +r1,23012:12424835,32667719:4227096,568825,115847 +k1,22982:8197739,32667719:-4227096 +) +(1,22982:8197739,32667719:4227096,452978,115847 +k1,22982:8197739,32667719:3277 +h1,22982:12421558,32667719:0,411205,112570 +) +g1,22982:12624064,32667719 +g1,22982:13506178,32667719 +(1,22982:13506178,32667719:0,452978,122846 +r1,23012:15271291,32667719:1765113,575824,122846 +k1,22982:13506178,32667719:-1765113 +) +(1,22982:13506178,32667719:1765113,452978,122846 +k1,22982:13506178,32667719:3277 +h1,22982:15268014,32667719:0,411205,112570 +) +g1,22982:15644190,32667719 +k1,22983:32583029,32667719:13089910 +g1,22983:32583029,32667719 +) +v1,22985:6630773,33352574:0,393216,0 +(1,22991:6630773,35036543:25952256,2077185,196608 +g1,22991:6630773,35036543 +g1,22991:6630773,35036543 +g1,22991:6434165,35036543 +(1,22991:6434165,35036543:0,2077185,196608 +r1,23012:32779637,35036543:26345472,2273793,196608 +k1,22991:6434165,35036543:-26345472 +) +(1,22991:6434165,35036543:26345472,2077185,196608 +[1,22991:6630773,35036543:25952256,1880577,0 +(1,22987:6630773,33587011:25952256,431045,112852 +(1,22986:6630773,33587011:0,0,0 +g1,22986:6630773,33587011 +g1,22986:6630773,33587011 +g1,22986:6303093,33587011 +(1,22986:6303093,33587011:0,0,0 +) +g1,22986:6630773,33587011 +) +k1,22987:6630773,33587011:0 +g1,22987:11942036,33587011 +g1,22987:12605944,33587011 +g1,22987:16589391,33587011 +g1,22987:18581115,33587011 +g1,22987:19245023,33587011 +g1,22987:20240885,33587011 +g1,22987:22564563,33587011 +g1,22987:23228471,33587011 +h1,22987:23892379,33587011:0,0,0 +k1,22987:32583029,33587011:8690650 +g1,22987:32583029,33587011 +) +(1,22988:6630773,34271866:25952256,431045,112852 +h1,22988:6630773,34271866:0,0,0 +k1,22988:6630773,34271866:0 +h1,22988:10282267,34271866:0,0,0 +k1,22988:32583029,34271866:22300762 +g1,22988:32583029,34271866 +) +(1,22989:6630773,34956721:25952256,431045,79822 +h1,22989:6630773,34956721:0,0,0 +k1,22989:6630773,34956721:0 +h1,22989:9618359,34956721:0,0,0 +k1,22989:32583029,34956721:22964670 +g1,22989:32583029,34956721 +) +] +) +g1,22991:32583029,35036543 +g1,22991:6630773,35036543 +g1,22991:6630773,35036543 +g1,22991:32583029,35036543 +g1,22991:32583029,35036543 +) +h1,22991:6630773,35233151:0,0,0 +(1,22995:6630773,36098231:25952256,513147,134348 +h1,22994:6630773,36098231:983040,0,0 +k1,22994:8387363,36098231:145715 +k1,22994:9552164,36098231:145716 +k1,22994:11064960,36098231:145715 +k1,22994:11869967,36098231:145715 +k1,22994:14734772,36098231:145716 +k1,22994:17218156,36098231:145715 +k1,22994:18311523,36098231:145716 +k1,22994:19440278,36098231:145715 +k1,22994:21744749,36098231:145715 +k1,22994:22506503,36098231:145716 +k1,22994:24164134,36098231:145715 +k1,22994:25986260,36098231:145715 +k1,22994:27479342,36098231:145662 +k1,22994:28816503,36098231:145716 +k1,22994:30327935,36098231:145662 +k1,22994:32583029,36098231:0 +) +(1,22995:6630773,36963311:25952256,513147,134348 +g1,22994:9514357,36963311 +g1,22994:13116215,36963311 +g1,22994:15520731,36963311 +g1,22994:16371388,36963311 +(1,22994:16371388,36963311:0,452978,115847 +r1,23012:18136501,36963311:1765113,568825,115847 +k1,22994:16371388,36963311:-1765113 +) +(1,22994:16371388,36963311:1765113,452978,115847 +k1,22994:16371388,36963311:3277 +h1,22994:18133224,36963311:0,411205,112570 +) +g1,22994:18335730,36963311 +g1,22994:19726404,36963311 +(1,22994:19726404,36963311:0,452978,122846 +r1,23012:21843229,36963311:2116825,575824,122846 +k1,22994:19726404,36963311:-2116825 +) +(1,22994:19726404,36963311:2116825,452978,122846 +k1,22994:19726404,36963311:3277 +h1,22994:21839952,36963311:0,411205,112570 +) +g1,22994:22042458,36963311 +g1,22994:23233247,36963311 +g1,22994:26629978,36963311 +g1,22994:27445245,36963311 +k1,22995:32583029,36963311:3215613 +g1,22995:32583029,36963311 +) +v1,22997:6630773,37648166:0,393216,0 +(1,23003:6630773,39332135:25952256,2077185,196608 +g1,23003:6630773,39332135 +g1,23003:6630773,39332135 +g1,23003:6434165,39332135 +(1,23003:6434165,39332135:0,2077185,196608 +r1,23012:32779637,39332135:26345472,2273793,196608 +k1,23003:6434165,39332135:-26345472 +) +(1,23003:6434165,39332135:26345472,2077185,196608 +[1,23003:6630773,39332135:25952256,1880577,0 +(1,22999:6630773,37882603:25952256,431045,112852 +(1,22998:6630773,37882603:0,0,0 +g1,22998:6630773,37882603 +g1,22998:6630773,37882603 +g1,22998:6303093,37882603 +(1,22998:6303093,37882603:0,0,0 +) +g1,22998:6630773,37882603 +) +k1,22999:6630773,37882603:0 +g1,22999:9950313,37882603 +g1,22999:10614221,37882603 +g1,22999:14929622,37882603 +g1,22999:16921346,37882603 +g1,22999:17585254,37882603 +g1,22999:19576978,37882603 +g1,22999:21900656,37882603 +g1,22999:22564564,37882603 +h1,22999:23892380,37882603:0,0,0 +k1,22999:32583029,37882603:8690649 +g1,22999:32583029,37882603 +) +(1,23000:6630773,38567458:25952256,431045,112852 +h1,23000:6630773,38567458:0,0,0 +k1,23000:6630773,38567458:0 +h1,23000:10282267,38567458:0,0,0 +k1,23000:32583029,38567458:22300762 +g1,23000:32583029,38567458 +) +(1,23001:6630773,39252313:25952256,431045,79822 +h1,23001:6630773,39252313:0,0,0 +k1,23001:6630773,39252313:0 +h1,23001:9618359,39252313:0,0,0 +k1,23001:32583029,39252313:22964670 +g1,23001:32583029,39252313 +) +] +) +g1,23003:32583029,39332135 +g1,23003:6630773,39332135 +g1,23003:6630773,39332135 +g1,23003:32583029,39332135 +g1,23003:32583029,39332135 +) +h1,23003:6630773,39528743:0,0,0 +v1,23009:6630773,40393823:0,393216,0 +(1,23012:6630773,45088263:25952256,5087656,0 +g1,23012:6630773,45088263 +g1,23012:6237557,45088263 +r1,23012:6368629,45088263:131072,5087656,0 +g1,23012:6567858,45088263 +g1,23012:6764466,45088263 +[1,23012:6764466,45088263:25818563,5087656,0 +(1,23010:6764466,40755000:25818563,754393,260573 +(1,23009:6764466,40755000:0,754393,260573 +r1,23012:7856192,40755000:1091726,1014966,260573 +k1,23009:6764466,40755000:-1091726 +) +(1,23009:6764466,40755000:1091726,754393,260573 +) +k1,23009:8020443,40755000:164251 +k1,23009:8348123,40755000:327680 +k1,23009:10229418,40755000:164252 +k1,23009:13112758,40755000:164251 +k1,23009:15614678,40755000:164251 +k1,23009:16770490,40755000:164252 +k1,23009:18256602,40755000:164251 +k1,23009:19080145,40755000:164251 +k1,23009:21479829,40755000:164251 +k1,23009:22835526,40755000:164252 +k1,23009:25032048,40755000:164251 +k1,23009:26187859,40755000:164251 +k1,23009:30553624,40755000:164252 +k1,23009:31333913,40755000:164251 +k1,23010:32583029,40755000:0 +) +(1,23010:6764466,41620080:25818563,513147,134348 +k1,23009:9550759,41620080:199587 +k1,23009:12834470,41620080:199587 +k1,23009:13661892,41620080:199587 +k1,23009:15553619,41620080:199587 +k1,23009:17624259,41620080:199587 +k1,23009:19478629,41620080:199586 +k1,23009:20669776,41620080:199587 +k1,23009:23540610,41620080:199587 +k1,23009:26128984,41620080:199587 +k1,23009:28666240,41620080:199587 +k1,23009:31649796,41620080:199587 +k1,23009:32583029,41620080:0 +) +(1,23010:6764466,42485160:25818563,513147,134348 +k1,23009:10011611,42485160:149914 +k1,23009:12880613,42485160:149913 +k1,23009:13646565,42485160:149914 +k1,23009:14152338,42485160:149913 +k1,23009:15997013,42485160:149914 +k1,23009:17129966,42485160:149913 +k1,23009:19633933,42485160:149914 +k1,23009:21658177,42485160:149914 +k1,23009:24145759,42485160:149913 +k1,23009:26582880,42485160:149914 +k1,23009:27825278,42485160:149913 +k1,23009:30737535,42485160:149914 +k1,23010:32583029,42485160:0 +) +(1,23010:6764466,43350240:25818563,513147,134348 +k1,23009:8036639,43350240:219665 +k1,23009:8939188,43350240:219664 +k1,23009:10634068,43350240:219665 +k1,23009:12363683,43350240:219665 +k1,23009:15440062,43350240:219665 +k1,23009:17053677,43350240:219664 +k1,23009:20035685,43350240:219665 +k1,23009:21936348,43350240:219665 +k1,23009:24030343,43350240:219665 +k1,23009:27636908,43350240:219664 +k1,23009:30245360,43350240:219665 +k1,23009:32583029,43350240:0 +) +(1,23010:6764466,44215320:25818563,513147,134348 +k1,23009:8068742,44215320:199994 +k1,23009:9554552,44215320:199994 +k1,23009:11497804,44215320:199994 +k1,23009:12313836,44215320:199994 +k1,23009:14022469,44215320:199994 +k1,23009:16917959,44215320:199994 +k1,23009:20275477,44215320:199993 +k1,23009:21545019,44215320:199994 +k1,23009:23220228,44215320:199994 +k1,23009:26936884,44215320:199994 +k1,23009:27752916,44215320:199994 +k1,23009:28971995,44215320:199994 +k1,23009:32583029,44215320:0 +) +(1,23010:6764466,45080400:25818563,505283,7863 +g1,23009:8155140,45080400 +g1,23009:9863008,45080400 +k1,23010:32583029,45080400:20599276 +g1,23010:32583029,45080400 +) +] +g1,23012:32583029,45088263 +) +] +(1,23012:32583029,45706769:0,0,0 +g1,23012:32583029,45706769 +) +) +] +(1,23012:6630773,47279633:25952256,0,0 +h1,23012:6630773,47279633:25952256,0,0 +) +] +(1,23012:4262630,4025873:0,0,0 +[1,23012:-473656,4025873:0,0,0 +(1,23012:-473656,-710413:0,0,0 +(1,23012:-473656,-710413:0,0,0 +g1,23012:-473656,-710413 +) +g1,23012:-473656,-710413 ) ] ) ] !25577 -}394 -Input:4347:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4348:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4349:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4350:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}395 Input:4351:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4352:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4353:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -398536,4803 +398737,4803 @@ Input:4354:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4355:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4356:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4357:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4358:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4359:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{395 -[1,23073:4262630,47279633:28320399,43253760,0 -(1,23073:4262630,4025873:0,0,0 -[1,23073:-473656,4025873:0,0,0 -(1,23073:-473656,-710413:0,0,0 -(1,23073:-473656,-644877:0,0,0 -k1,23073:-473656,-644877:-65536 +{396 +[1,23071:4262630,47279633:28320399,43253760,0 +(1,23071:4262630,4025873:0,0,0 +[1,23071:-473656,4025873:0,0,0 +(1,23071:-473656,-710413:0,0,0 +(1,23071:-473656,-644877:0,0,0 +k1,23071:-473656,-644877:-65536 ) -(1,23073:-473656,4736287:0,0,0 -k1,23073:-473656,4736287:5209943 +(1,23071:-473656,4736287:0,0,0 +k1,23071:-473656,4736287:5209943 ) -g1,23073:-473656,-710413 +g1,23071:-473656,-710413 ) ] ) -[1,23073:6630773,47279633:25952256,43253760,0 -[1,23073:6630773,4812305:25952256,786432,0 -(1,23073:6630773,4812305:25952256,513147,126483 -(1,23073:6630773,4812305:25952256,513147,126483 -g1,23073:3078558,4812305 -[1,23073:3078558,4812305:0,0,0 -(1,23073:3078558,2439708:0,1703936,0 -k1,23073:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,23073:2537886,2439708:1179648,16384,0 +[1,23071:6630773,47279633:25952256,43253760,0 +[1,23071:6630773,4812305:25952256,786432,0 +(1,23071:6630773,4812305:25952256,513147,126483 +(1,23071:6630773,4812305:25952256,513147,126483 +g1,23071:3078558,4812305 +[1,23071:3078558,4812305:0,0,0 +(1,23071:3078558,2439708:0,1703936,0 +k1,23071:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,23071:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,23073:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,23071:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,23073:3078558,4812305:0,0,0 -(1,23073:3078558,2439708:0,1703936,0 -g1,23073:29030814,2439708 -g1,23073:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,23073:36151628,1915420:16384,1179648,0 +[1,23071:3078558,4812305:0,0,0 +(1,23071:3078558,2439708:0,1703936,0 +g1,23071:29030814,2439708 +g1,23071:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,23071:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,23073:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,23071:37855564,2439708:1179648,16384,0 ) ) -k1,23073:3078556,2439708:-34777008 +k1,23071:3078556,2439708:-34777008 ) ] -[1,23073:3078558,4812305:0,0,0 -(1,23073:3078558,49800853:0,16384,2228224 -k1,23073:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,23073:2537886,49800853:1179648,16384,0 +[1,23071:3078558,4812305:0,0,0 +(1,23071:3078558,49800853:0,16384,2228224 +k1,23071:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,23071:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,23073:3078558,51504789:16384,1179648,0 -) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,23073:3078558,4812305:0,0,0 -(1,23073:3078558,49800853:0,16384,2228224 -g1,23073:29030814,49800853 -g1,23073:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,23073:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,23073:37855564,49800853:1179648,16384,0 -) -) -k1,23073:3078556,49800853:-34777008 -) -] -g1,23073:6630773,4812305 -k1,23073:21386205,4812305:13560055 -g1,23073:21999622,4812305 -g1,23073:25611966,4812305 -g1,23073:28956923,4812305 -g1,23073:29772190,4812305 -) -) -] -[1,23073:6630773,45706769:25952256,40108032,0 -(1,23073:6630773,45706769:25952256,40108032,0 -(1,23073:6630773,45706769:0,0,0 -g1,23073:6630773,45706769 -) -[1,23073:6630773,45706769:25952256,40108032,0 -v1,23014:6630773,6254097:0,393216,0 -(1,23014:6630773,9968696:25952256,4107815,0 -g1,23014:6630773,9968696 -g1,23014:6237557,9968696 -r1,23073:6368629,9968696:131072,4107815,0 -g1,23014:6567858,9968696 -g1,23014:6764466,9968696 -[1,23014:6764466,9968696:25818563,4107815,0 -(1,23014:6764466,6374028:25818563,513147,126483 -h1,23013:6764466,6374028:983040,0,0 -k1,23013:11581600,6374028:234857 -k1,23013:13102274,6374028:234858 -k1,23013:14837905,6374028:234857 -k1,23013:15688800,6374028:234857 -k1,23013:17432296,6374028:234857 -k1,23013:21105173,6374028:234858 -k1,23013:22531475,6374028:234857 -k1,23013:26060827,6374028:234857 -k1,23013:29075066,6374028:234857 -k1,23013:30034752,6374028:234858 -k1,23013:30885647,6374028:234857 -k1,23013:32583029,6374028:0 -) -(1,23014:6764466,7239108:25818563,513147,134348 -k1,23013:8575772,7239108:139482 -k1,23013:11812486,7239108:139483 -k1,23013:13309219,7239108:139482 -k1,23013:17433945,7239108:139482 -k1,23013:18031525,7239108:139483 -k1,23013:18702504,7239108:139482 -k1,23013:22407145,7239108:139482 -k1,23013:23198056,7239108:139483 -k1,23013:25395368,7239108:139482 -k1,23013:26186278,7239108:139482 -k1,23013:27096464,7239108:139483 -k1,23013:30622847,7239108:139482 -k1,23014:32583029,7239108:0 -) -(1,23014:6764466,8104188:25818563,513147,134348 -k1,23013:7835555,8104188:206014 -k1,23013:10048938,8104188:206015 -k1,23013:10906380,8104188:206014 -k1,23013:12378550,8104188:206014 -k1,23013:13650836,8104188:206015 -k1,23013:14322811,8104188:206014 -k1,23013:15547910,8104188:206014 -k1,23013:18430415,8104188:206015 -k1,23013:19167926,8104188:206014 -k1,23013:19989979,8104188:206015 -k1,23013:21215078,8104188:206014 -k1,23013:22698389,8104188:206014 -k1,23013:23587289,8104188:206015 -k1,23013:24409341,8104188:206014 -k1,23013:25634440,8104188:206014 -k1,23013:28937686,8104188:206015 -k1,23013:31417144,8104188:206014 -k1,23014:32583029,8104188:0 -) -(1,23014:6764466,8969268:25818563,513147,134348 -k1,23013:8129364,8969268:168211 -k1,23013:8956867,8969268:168211 -k1,23013:10144163,8969268:168211 -k1,23013:12918085,8969268:168211 -k1,23013:15051721,8969268:168211 -k1,23013:15871360,8969268:168211 -k1,23013:17665518,8969268:168211 -k1,23013:18449767,8969268:168211 -k1,23013:19032791,8969268:168181 -k1,23013:21865041,8969268:168211 -k1,23013:23749640,8969268:168211 -k1,23013:25460569,8969268:168211 -k1,23013:26820225,8969268:168211 -k1,23013:28531154,8969268:168211 -k1,23013:29690925,8969268:168211 -k1,23013:32583029,8969268:0 -) -(1,23014:6764466,9834348:25818563,513147,134348 -g1,23013:10258190,9834348 -g1,23013:11833020,9834348 -g1,23013:12793777,9834348 -g1,23013:14685146,9834348 -g1,23013:15543667,9834348 -g1,23013:16761981,9834348 -g1,23013:19680299,9834348 -k1,23014:32583029,9834348:10512632 -g1,23014:32583029,9834348 -) -] -g1,23014:32583029,9968696 -) -h1,23014:6630773,9968696:0,0,0 -(1,23016:6630773,12799856:25952256,32768,229376 -(1,23016:6630773,12799856:0,32768,229376 -(1,23016:6630773,12799856:5505024,32768,229376 -r1,23073:12135797,12799856:5505024,262144,229376 -) -k1,23016:6630773,12799856:-5505024 -) -(1,23016:6630773,12799856:25952256,32768,0 -r1,23073:32583029,12799856:25952256,32768,0 -) -) -(1,23016:6630773,14431708:25952256,606339,161218 -(1,23016:6630773,14431708:2464678,582746,14155 -g1,23016:6630773,14431708 -g1,23016:9095451,14431708 -) -g1,23016:13607998,14431708 -k1,23016:32583029,14431708:15940190 -g1,23016:32583029,14431708 -) -(1,23019:6630773,15690004:25952256,505283,134348 -k1,23018:9773844,15690004:608138 -k1,23018:13924203,15690004:608139 -k1,23018:17292717,15690004:608138 -k1,23018:18671558,15690004:608138 -k1,23018:22329087,15690004:608139 -(1,23018:22329087,15690004:0,452978,115847 -r1,23073:24094200,15690004:1765113,568825,115847 -k1,23018:22329087,15690004:-1765113 -) -(1,23018:22329087,15690004:1765113,452978,115847 -k1,23018:22329087,15690004:3277 -h1,23018:24090923,15690004:0,411205,112570 -) -k1,23018:24702338,15690004:608138 -k1,23018:28268771,15690004:608138 -(1,23018:28268771,15690004:0,452978,115847 -r1,23073:32495867,15690004:4227096,568825,115847 -k1,23018:28268771,15690004:-4227096 -) -(1,23018:28268771,15690004:4227096,452978,115847 -k1,23018:28268771,15690004:3277 -h1,23018:32492590,15690004:0,411205,112570 -) -k1,23019:32583029,15690004:0 -) -(1,23019:6630773,16555084:25952256,513147,122846 -(1,23018:6630773,16555084:0,452978,115847 -r1,23073:10506157,16555084:3875384,568825,115847 -k1,23018:6630773,16555084:-3875384 -) -(1,23018:6630773,16555084:3875384,452978,115847 -k1,23018:6630773,16555084:3277 -h1,23018:10502880,16555084:0,411205,112570 -) -k1,23018:10930965,16555084:251138 -(1,23018:10930965,16555084:0,452978,115847 -r1,23073:15861485,16555084:4930520,568825,115847 -k1,23018:10930965,16555084:-4930520 -) -(1,23018:10930965,16555084:4930520,452978,115847 -k1,23018:10930965,16555084:3277 -h1,23018:15858208,16555084:0,411205,112570 -) -k1,23018:16112623,16555084:251138 -k1,23018:17555205,16555084:251137 -(1,23018:17555205,16555084:0,452978,115847 -r1,23073:22134013,16555084:4578808,568825,115847 -k1,23018:17555205,16555084:-4578808 -) -(1,23018:17555205,16555084:4578808,452978,115847 -k1,23018:17555205,16555084:3277 -h1,23018:22130736,16555084:0,411205,112570 -) -k1,23018:22558821,16555084:251138 -k1,23018:23279852,16555084:251138 -k1,23018:24816806,16555084:251138 -k1,23018:27359082,16555084:251137 -(1,23018:27359082,16555084:0,414482,122846 -r1,23073:29124195,16555084:1765113,537328,122846 -k1,23018:27359082,16555084:-1765113 -) -(1,23018:27359082,16555084:1765113,414482,122846 -k1,23018:27359082,16555084:3277 -h1,23018:29120918,16555084:0,411205,112570 -) -k1,23018:29375333,16555084:251138 -k1,23018:30817916,16555084:251138 -(1,23018:30817916,16555084:0,414482,115847 -r1,23073:32583029,16555084:1765113,530329,115847 -k1,23018:30817916,16555084:-1765113 -) -(1,23018:30817916,16555084:1765113,414482,115847 -k1,23018:30817916,16555084:3277 -h1,23018:32579752,16555084:0,411205,112570 -) -k1,23018:32583029,16555084:0 -) -(1,23019:6630773,17420164:25952256,513147,134348 -k1,23018:8091990,17420164:176711 -k1,23018:10595885,17420164:176712 -k1,23018:11431888,17420164:176711 -k1,23018:14180888,17420164:176712 -k1,23018:14713459,17420164:176711 -k1,23018:16447961,17420164:176711 -k1,23018:18206712,17420164:176712 -k1,23018:19402508,17420164:176711 -k1,23018:20968582,17420164:176711 -k1,23018:22525482,17420164:176712 -k1,23018:24924519,17420164:176711 -k1,23018:27659757,17420164:176712 -k1,23018:31117200,17420164:176711 -(1,23018:31117200,17420164:0,452978,115847 -r1,23073:32530601,17420164:1413401,568825,115847 -k1,23018:31117200,17420164:-1413401 -) -(1,23018:31117200,17420164:1413401,452978,115847 -k1,23018:31117200,17420164:3277 -h1,23018:32527324,17420164:0,411205,112570 -) -k1,23018:32583029,17420164:0 -) -(1,23019:6630773,18285244:25952256,513147,134348 -k1,23018:8720061,18285244:236585 -k1,23018:9948206,18285244:236585 -k1,23018:12309467,18285244:236584 -k1,23018:15571849,18285244:236585 -k1,23018:17092940,18285244:236585 -k1,23018:18796221,18285244:236585 -k1,23018:19498767,18285244:236585 -k1,23018:23126185,18285244:236585 -k1,23018:24172140,18285244:236585 -k1,23018:27237257,18285244:236584 -k1,23018:30288613,18285244:236585 -k1,23018:31516758,18285244:236585 -k1,23018:32583029,18285244:0 -) -(1,23019:6630773,19150324:25952256,505283,134348 -g1,23018:8695812,19150324 -g1,23018:9546469,19150324 -g1,23018:11546627,19150324 -g1,23018:13530401,19150324 -g1,23018:15123581,19150324 -g1,23018:18151343,19150324 -k1,23019:32583029,19150324:11832529 -g1,23019:32583029,19150324 -) -(1,23021:6630773,20015404:25952256,505283,134348 -h1,23020:6630773,20015404:983040,0,0 -k1,23020:10377221,20015404:228475 -k1,23020:13345099,20015404:228474 -k1,23020:16333950,20015404:228475 -k1,23020:18345660,20015404:228475 -k1,23020:20224331,20015404:228474 -k1,23020:23008055,20015404:228475 -k1,23020:24427974,20015404:228474 -k1,23020:28920877,20015404:228475 -k1,23020:32583029,20015404:0 -) -(1,23021:6630773,20880484:25952256,513147,134348 -k1,23020:7504440,20880484:222239 -k1,23020:10095150,20880484:222239 -k1,23020:11336475,20880484:222240 -k1,23020:14373485,20880484:222239 -k1,23020:15262880,20880484:222239 -(1,23020:15262880,20880484:0,452978,122846 -r1,23073:16676281,20880484:1413401,575824,122846 -k1,23020:15262880,20880484:-1413401 -) -(1,23020:15262880,20880484:1413401,452978,122846 -k1,23020:15262880,20880484:3277 -h1,23020:16673004,20880484:0,411205,112570 -) -k1,23020:16898520,20880484:222239 -k1,23020:18398056,20880484:222239 -k1,23020:21083793,20880484:222239 -k1,23020:23840966,20880484:222240 -k1,23020:26891738,20880484:222239 -k1,23020:28719609,20880484:222239 -k1,23020:30552068,20880484:222239 -k1,23020:32583029,20880484:0 -) -(1,23021:6630773,21745564:25952256,505283,134348 -g1,23020:7481430,21745564 -g1,23020:9372799,21745564 -g1,23020:11531554,21745564 -k1,23021:32583029,21745564:17071474 -g1,23021:32583029,21745564 -) -(1,23023:6630773,22610644:25952256,513147,126483 -h1,23022:6630773,22610644:983040,0,0 -k1,23022:8597809,22610644:210016 -k1,23022:10504551,22610644:210015 -k1,23022:12469621,22610644:210016 -(1,23022:12469621,22610644:0,452978,122846 -r1,23073:16696717,22610644:4227096,575824,122846 -k1,23022:12469621,22610644:-4227096 -) -(1,23022:12469621,22610644:4227096,452978,122846 -k1,23022:12469621,22610644:3277 -h1,23022:16693440,22610644:0,411205,112570 -) -k1,23022:17080403,22610644:210016 -k1,23022:17821915,22610644:210015 -k1,23022:20858499,22610644:210016 -k1,23022:22087600,22610644:210016 -k1,23022:23899316,22610644:210016 -k1,23022:26760918,22610644:210015 -k1,23022:27622362,22610644:210016 -k1,23022:29098534,22610644:210016 -k1,23022:30775245,22610644:210015 -k1,23022:31794631,22610644:210016 -k1,23022:32583029,22610644:0 -) -(1,23023:6630773,23475724:25952256,505283,134348 -g1,23022:8160383,23475724 -g1,23022:9551057,23475724 -g1,23022:10436448,23475724 -g1,23022:11406380,23475724 -g1,23022:14677937,23475724 -g1,23022:15528594,23475724 -(1,23022:15528594,23475724:0,414482,115847 -r1,23073:17293707,23475724:1765113,530329,115847 -k1,23022:15528594,23475724:-1765113 -) -(1,23022:15528594,23475724:1765113,414482,115847 -k1,23022:15528594,23475724:3277 -h1,23022:17290430,23475724:0,411205,112570 -) -k1,23023:32583029,23475724:15236894 -g1,23023:32583029,23475724 -) -v1,23025:6630773,24160579:0,393216,0 -(1,23039:6630773,29847663:25952256,6080300,196608 -g1,23039:6630773,29847663 -g1,23039:6630773,29847663 -g1,23039:6434165,29847663 -(1,23039:6434165,29847663:0,6080300,196608 -r1,23073:32779637,29847663:26345472,6276908,196608 -k1,23039:6434165,29847663:-26345472 -) -(1,23039:6434165,29847663:26345472,6080300,196608 -[1,23039:6630773,29847663:25952256,5883692,0 -(1,23027:6630773,24388410:25952256,424439,112852 -(1,23026:6630773,24388410:0,0,0 -g1,23026:6630773,24388410 -g1,23026:6630773,24388410 -g1,23026:6303093,24388410 -(1,23026:6303093,24388410:0,0,0 -) -g1,23026:6630773,24388410 -) -k1,23027:6630773,24388410:0 -g1,23027:10614221,24388410 -g1,23027:11278129,24388410 -g1,23027:13269853,24388410 -g1,23027:15925485,24388410 -g1,23027:16589393,24388410 -g1,23027:18581117,24388410 -g1,23027:19245025,24388410 -g1,23027:23892380,24388410 -g1,23027:24556288,24388410 -g1,23027:25220196,24388410 -g1,23027:28539735,24388410 -h1,23027:28871689,24388410:0,0,0 -k1,23027:32583029,24388410:3711340 -g1,23027:32583029,24388410 -) -(1,23028:6630773,25073265:25952256,424439,112852 -h1,23028:6630773,25073265:0,0,0 -g1,23028:6962727,25073265 -g1,23028:7294681,25073265 -g1,23028:13269852,25073265 -g1,23028:13933760,25073265 -h1,23028:16589392,25073265:0,0,0 -k1,23028:32583029,25073265:15993637 -g1,23028:32583029,25073265 -) -(1,23032:6630773,26413480:25952256,431045,112852 -g1,23032:7626635,26413480 -g1,23032:8622497,26413480 -g1,23032:11278129,26413480 -g1,23032:14265714,26413480 -g1,23032:17585253,26413480 -g1,23032:21236746,26413480 -g1,23032:22232608,26413480 -k1,23032:32583029,26413480:6698928 -g1,23032:32583029,26413480 -) -(1,23038:6630773,27098335:25952256,431045,106246 -(1,23032:6630773,27098335:0,0,0 -g1,23032:6630773,27098335 -g1,23032:6630773,27098335 -g1,23032:6303093,27098335 -(1,23032:6303093,27098335:0,0,0 -) -g1,23032:6630773,27098335 -) -g1,23038:7626635,27098335 -g1,23038:8954451,27098335 -g1,23038:11942036,27098335 -g1,23038:12937898,27098335 -g1,23038:14929622,27098335 -g1,23038:17253300,27098335 -g1,23038:18249162,27098335 -h1,23038:23560425,27098335:0,0,0 -k1,23038:32583029,27098335:9022604 -g1,23038:32583029,27098335 -) -(1,23038:6630773,27783190:25952256,431045,112852 -h1,23038:6630773,27783190:0,0,0 -g1,23038:7626635,27783190 -g1,23038:7958589,27783190 -g1,23038:8290543,27783190 -g1,23038:8954451,27783190 -g1,23038:10946175,27783190 -g1,23038:11278129,27783190 -g1,23038:11610083,27783190 -g1,23038:11942037,27783190 -g1,23038:12273991,27783190 -g1,23038:12937899,27783190 -g1,23038:13269853,27783190 -g1,23038:13601807,27783190 -g1,23038:13933761,27783190 -g1,23038:14265715,27783190 -g1,23038:15925485,27783190 -g1,23038:16257439,27783190 -g1,23038:16589393,27783190 -g1,23038:16921347,27783190 -g1,23038:17253301,27783190 -g1,23038:18913071,27783190 -g1,23038:20904795,27783190 -h1,23038:24556288,27783190:0,0,0 -k1,23038:32583029,27783190:8026741 -g1,23038:32583029,27783190 -) -(1,23038:6630773,28468045:25952256,407923,9908 -h1,23038:6630773,28468045:0,0,0 -g1,23038:7626635,28468045 -g1,23038:8290543,28468045 -g1,23038:8954451,28468045 -g1,23038:9286405,28468045 -g1,23038:9618359,28468045 -g1,23038:9950313,28468045 -g1,23038:10282267,28468045 -g1,23038:10946175,28468045 -g1,23038:12937899,28468045 -g1,23038:15925484,28468045 -g1,23038:18913069,28468045 -g1,23038:19245023,28468045 -g1,23038:19576977,28468045 -g1,23038:19908931,28468045 -g1,23038:20240885,28468045 -g1,23038:20904793,28468045 -g1,23038:21236747,28468045 -g1,23038:21568701,28468045 -g1,23038:21900655,28468045 -g1,23038:22232609,28468045 -g1,23038:22564563,28468045 -g1,23038:22896517,28468045 -g1,23038:23228471,28468045 -h1,23038:24556287,28468045:0,0,0 -k1,23038:32583029,28468045:8026742 -g1,23038:32583029,28468045 -) -(1,23038:6630773,29152900:25952256,407923,9908 -h1,23038:6630773,29152900:0,0,0 -g1,23038:7626635,29152900 -g1,23038:8290543,29152900 -g1,23038:8954451,29152900 -g1,23038:9286405,29152900 -g1,23038:9618359,29152900 -g1,23038:9950313,29152900 -g1,23038:10282267,29152900 -g1,23038:10946175,29152900 -g1,23038:12937899,29152900 -g1,23038:15925484,29152900 -g1,23038:18913069,29152900 -g1,23038:19245023,29152900 -g1,23038:19576977,29152900 -g1,23038:19908931,29152900 -g1,23038:20240885,29152900 -g1,23038:20904793,29152900 -g1,23038:21236747,29152900 -g1,23038:21568701,29152900 -g1,23038:21900655,29152900 -g1,23038:22232609,29152900 -g1,23038:22564563,29152900 -g1,23038:22896517,29152900 -g1,23038:23228471,29152900 -h1,23038:24556287,29152900:0,0,0 -k1,23038:32583029,29152900:8026742 -g1,23038:32583029,29152900 -) -(1,23038:6630773,29837755:25952256,407923,9908 -h1,23038:6630773,29837755:0,0,0 -g1,23038:7626635,29837755 -g1,23038:8290543,29837755 -g1,23038:8954451,29837755 -g1,23038:9286405,29837755 -g1,23038:9618359,29837755 -g1,23038:9950313,29837755 -g1,23038:10282267,29837755 -g1,23038:10946175,29837755 -g1,23038:12937899,29837755 -g1,23038:15925484,29837755 -g1,23038:18913069,29837755 -g1,23038:19245023,29837755 -g1,23038:19576977,29837755 -g1,23038:19908931,29837755 -g1,23038:20240885,29837755 -g1,23038:20904793,29837755 -g1,23038:21236747,29837755 -g1,23038:21568701,29837755 -g1,23038:21900655,29837755 -g1,23038:22232609,29837755 -g1,23038:22564563,29837755 -g1,23038:22896517,29837755 -g1,23038:23228471,29837755 -h1,23038:24556287,29837755:0,0,0 -k1,23038:32583029,29837755:8026742 -g1,23038:32583029,29837755 -) -] -) -g1,23039:32583029,29847663 -g1,23039:6630773,29847663 -g1,23039:6630773,29847663 -g1,23039:32583029,29847663 -g1,23039:32583029,29847663 -) -h1,23039:6630773,30044271:0,0,0 -(1,23042:6630773,39193473:25952256,9083666,0 -k1,23042:10523651,39193473:3892878 -h1,23041:10523651,39193473:0,0,0 -(1,23041:10523651,39193473:18166500,9083666,0 -(1,23041:10523651,39193473:18167376,9083688,0 -(1,23041:10523651,39193473:18167376,9083688,0 -(1,23041:10523651,39193473:0,9083688,0 -(1,23041:10523651,39193473:0,14208860,0 -(1,23041:10523651,39193473:28417720,14208860,0 -) -k1,23041:10523651,39193473:-28417720 -) -) -g1,23041:28691027,39193473 -) -) -) -g1,23042:28690151,39193473 -k1,23042:32583029,39193473:3892878 -) -v1,23049:6630773,39878328:0,393216,0 -(1,23073:6630773,45510161:25952256,6025049,196608 -g1,23073:6630773,45510161 -g1,23073:6630773,45510161 -g1,23073:6434165,45510161 -(1,23073:6434165,45510161:0,6025049,196608 -r1,23073:32779637,45510161:26345472,6221657,196608 -k1,23073:6434165,45510161:-26345472 -) -(1,23073:6434165,45510161:26345472,6025049,196608 -[1,23073:6630773,45510161:25952256,5828441,0 -(1,23051:6630773,40106159:25952256,424439,112852 -(1,23050:6630773,40106159:0,0,0 -g1,23050:6630773,40106159 -g1,23050:6630773,40106159 -g1,23050:6303093,40106159 -(1,23050:6303093,40106159:0,0,0 -) -g1,23050:6630773,40106159 -) -k1,23051:6630773,40106159:0 -g1,23051:10614221,40106159 -g1,23051:11278129,40106159 -g1,23051:13269853,40106159 -g1,23051:15925485,40106159 -g1,23051:16589393,40106159 -g1,23051:18581117,40106159 -g1,23051:19245025,40106159 -g1,23051:24224334,40106159 -h1,23051:24556288,40106159:0,0,0 -k1,23051:32583029,40106159:8026741 -g1,23051:32583029,40106159 -) -(1,23052:6630773,40791014:25952256,424439,112852 -h1,23052:6630773,40791014:0,0,0 -g1,23052:6962727,40791014 -g1,23052:7294681,40791014 -g1,23052:11942036,40791014 -g1,23052:12605944,40791014 -h1,23052:15261576,40791014:0,0,0 -k1,23052:32583028,40791014:17321452 -g1,23052:32583028,40791014 -) -(1,23056:6630773,42075978:25952256,431045,112852 -g1,23056:7626635,42075978 -g1,23056:11942036,42075978 -g1,23056:13933760,42075978 -g1,23056:15925484,42075978 -g1,23056:16589392,42075978 -g1,23056:18249162,42075978 -g1,23056:19908932,42075978 -g1,23056:22232610,42075978 -g1,23056:24224334,42075978 -g1,23056:25884104,42075978 -k1,23056:32583029,42075978:3047432 -g1,23056:32583029,42075978 -) -(1,23072:6630773,42760833:25952256,431045,106246 -(1,23056:6630773,42760833:0,0,0 -g1,23056:6630773,42760833 -g1,23056:6630773,42760833 -g1,23056:6303093,42760833 -(1,23056:6303093,42760833:0,0,0 -) -g1,23056:6630773,42760833 -) -g1,23072:7626635,42760833 -g1,23072:8954451,42760833 -g1,23072:11942036,42760833 -g1,23072:12937898,42760833 -g1,23072:14929622,42760833 -g1,23072:17253300,42760833 -g1,23072:18249162,42760833 -h1,23072:23560425,42760833:0,0,0 -k1,23072:32583029,42760833:9022604 -g1,23072:32583029,42760833 -) -(1,23072:6630773,43445688:25952256,424439,106246 -h1,23072:6630773,43445688:0,0,0 -g1,23072:7626635,43445688 -g1,23072:7958589,43445688 -g1,23072:8290543,43445688 -g1,23072:8622497,43445688 -g1,23072:9286405,43445688 -g1,23072:11278129,43445688 -g1,23072:11610083,43445688 -g1,23072:11942037,43445688 -g1,23072:12273991,43445688 -g1,23072:12605945,43445688 -g1,23072:12937899,43445688 -g1,23072:13269853,43445688 -g1,23072:13601807,43445688 -g1,23072:14265715,43445688 -g1,23072:14597669,43445688 -g1,23072:14929623,43445688 -g1,23072:15261577,43445688 -g1,23072:15593531,43445688 -g1,23072:15925485,43445688 -g1,23072:17585255,43445688 -g1,23072:17917209,43445688 -g1,23072:18249163,43445688 -g1,23072:18581117,43445688 -g1,23072:18913071,43445688 -g1,23072:20572841,43445688 -g1,23072:20904795,43445688 -g1,23072:21236749,43445688 -g1,23072:21568703,43445688 -g1,23072:21900657,43445688 -g1,23072:23892381,43445688 -g1,23072:24224335,43445688 -g1,23072:24556289,43445688 -g1,23072:24888243,43445688 -g1,23072:27543875,43445688 -g1,23072:27875829,43445688 -g1,23072:28207783,43445688 -g1,23072:28539737,43445688 -g1,23072:28871691,43445688 -h1,23072:30863415,43445688:0,0,0 -k1,23072:32583029,43445688:1719614 -g1,23072:32583029,43445688 -) -(1,23072:6630773,44130543:25952256,407923,9908 -h1,23072:6630773,44130543:0,0,0 -g1,23072:7626635,44130543 -g1,23072:8290543,44130543 -g1,23072:8622497,44130543 -g1,23072:9286405,44130543 -g1,23072:9618359,44130543 -g1,23072:9950313,44130543 -g1,23072:10282267,44130543 -g1,23072:10614221,44130543 -g1,23072:11278129,44130543 -g1,23072:14265714,44130543 -g1,23072:17585253,44130543 -g1,23072:20572838,44130543 -g1,23072:23892377,44130543 -g1,23072:27543870,44130543 -h1,23072:30863409,44130543:0,0,0 -k1,23072:32583029,44130543:1719620 -g1,23072:32583029,44130543 -) -(1,23072:6630773,44815398:25952256,407923,9908 -h1,23072:6630773,44815398:0,0,0 -g1,23072:7626635,44815398 -g1,23072:8290543,44815398 -g1,23072:8622497,44815398 -g1,23072:9286405,44815398 -g1,23072:9618359,44815398 -g1,23072:9950313,44815398 -g1,23072:10282267,44815398 -g1,23072:10614221,44815398 -g1,23072:11278129,44815398 -g1,23072:14265714,44815398 -g1,23072:17585253,44815398 -g1,23072:20572838,44815398 -g1,23072:23892377,44815398 -g1,23072:27543870,44815398 -h1,23072:30863409,44815398:0,0,0 -k1,23072:32583029,44815398:1719620 -g1,23072:32583029,44815398 -) -(1,23072:6630773,45500253:25952256,407923,9908 -h1,23072:6630773,45500253:0,0,0 -g1,23072:7626635,45500253 -g1,23072:8290543,45500253 -g1,23072:9286405,45500253 -g1,23072:9618359,45500253 -g1,23072:9950313,45500253 -g1,23072:10282267,45500253 -g1,23072:11278129,45500253 -g1,23072:14265714,45500253 -g1,23072:17585253,45500253 -g1,23072:20572838,45500253 -g1,23072:23892377,45500253 -g1,23072:27543870,45500253 -h1,23072:30863409,45500253:0,0,0 -k1,23072:32583029,45500253:1719620 -g1,23072:32583029,45500253 -) -] -) -g1,23073:32583029,45510161 -g1,23073:6630773,45510161 -g1,23073:6630773,45510161 -g1,23073:32583029,45510161 -g1,23073:32583029,45510161 -) -] -(1,23073:32583029,45706769:0,0,0 -g1,23073:32583029,45706769 -) -) -] -(1,23073:6630773,47279633:25952256,0,0 -h1,23073:6630773,47279633:25952256,0,0 -) -] -(1,23073:4262630,4025873:0,0,0 -[1,23073:-473656,4025873:0,0,0 -(1,23073:-473656,-710413:0,0,0 -(1,23073:-473656,-710413:0,0,0 -g1,23073:-473656,-710413 -) -g1,23073:-473656,-710413 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,23071:3078558,51504789:16384,1179648,0 +) +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,23071:3078558,4812305:0,0,0 +(1,23071:3078558,49800853:0,16384,2228224 +g1,23071:29030814,49800853 +g1,23071:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,23071:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,23071:37855564,49800853:1179648,16384,0 +) +) +k1,23071:3078556,49800853:-34777008 +) +] +g1,23071:6630773,4812305 +k1,23071:21386205,4812305:13560055 +g1,23071:21999622,4812305 +g1,23071:25611966,4812305 +g1,23071:28956923,4812305 +g1,23071:29772190,4812305 +) +) +] +[1,23071:6630773,45706769:25952256,40108032,0 +(1,23071:6630773,45706769:25952256,40108032,0 +(1,23071:6630773,45706769:0,0,0 +g1,23071:6630773,45706769 +) +[1,23071:6630773,45706769:25952256,40108032,0 +v1,23012:6630773,6254097:0,393216,0 +(1,23012:6630773,9968696:25952256,4107815,0 +g1,23012:6630773,9968696 +g1,23012:6237557,9968696 +r1,23071:6368629,9968696:131072,4107815,0 +g1,23012:6567858,9968696 +g1,23012:6764466,9968696 +[1,23012:6764466,9968696:25818563,4107815,0 +(1,23012:6764466,6374028:25818563,513147,126483 +h1,23011:6764466,6374028:983040,0,0 +k1,23011:11581600,6374028:234857 +k1,23011:13102274,6374028:234858 +k1,23011:14837905,6374028:234857 +k1,23011:15688800,6374028:234857 +k1,23011:17432296,6374028:234857 +k1,23011:21105173,6374028:234858 +k1,23011:22531475,6374028:234857 +k1,23011:26060827,6374028:234857 +k1,23011:29075066,6374028:234857 +k1,23011:30034752,6374028:234858 +k1,23011:30885647,6374028:234857 +k1,23011:32583029,6374028:0 +) +(1,23012:6764466,7239108:25818563,513147,134348 +k1,23011:8575772,7239108:139482 +k1,23011:11812486,7239108:139483 +k1,23011:13309219,7239108:139482 +k1,23011:17433945,7239108:139482 +k1,23011:18031525,7239108:139483 +k1,23011:18702504,7239108:139482 +k1,23011:22407145,7239108:139482 +k1,23011:23198056,7239108:139483 +k1,23011:25395368,7239108:139482 +k1,23011:26186278,7239108:139482 +k1,23011:27096464,7239108:139483 +k1,23011:30622847,7239108:139482 +k1,23012:32583029,7239108:0 +) +(1,23012:6764466,8104188:25818563,513147,134348 +k1,23011:7835555,8104188:206014 +k1,23011:10048938,8104188:206015 +k1,23011:10906380,8104188:206014 +k1,23011:12378550,8104188:206014 +k1,23011:13650836,8104188:206015 +k1,23011:14322811,8104188:206014 +k1,23011:15547910,8104188:206014 +k1,23011:18430415,8104188:206015 +k1,23011:19167926,8104188:206014 +k1,23011:19989979,8104188:206015 +k1,23011:21215078,8104188:206014 +k1,23011:22698389,8104188:206014 +k1,23011:23587289,8104188:206015 +k1,23011:24409341,8104188:206014 +k1,23011:25634440,8104188:206014 +k1,23011:28937686,8104188:206015 +k1,23011:31417144,8104188:206014 +k1,23012:32583029,8104188:0 +) +(1,23012:6764466,8969268:25818563,513147,134348 +k1,23011:8129364,8969268:168211 +k1,23011:8956867,8969268:168211 +k1,23011:10144163,8969268:168211 +k1,23011:12918085,8969268:168211 +k1,23011:15051721,8969268:168211 +k1,23011:15871360,8969268:168211 +k1,23011:17665518,8969268:168211 +k1,23011:18449767,8969268:168211 +k1,23011:19032791,8969268:168181 +k1,23011:21865041,8969268:168211 +k1,23011:23749640,8969268:168211 +k1,23011:25460569,8969268:168211 +k1,23011:26820225,8969268:168211 +k1,23011:28531154,8969268:168211 +k1,23011:29690925,8969268:168211 +k1,23011:32583029,8969268:0 +) +(1,23012:6764466,9834348:25818563,513147,134348 +g1,23011:10258190,9834348 +g1,23011:11833020,9834348 +g1,23011:12793777,9834348 +g1,23011:14685146,9834348 +g1,23011:15543667,9834348 +g1,23011:16761981,9834348 +g1,23011:19680299,9834348 +k1,23012:32583029,9834348:10512632 +g1,23012:32583029,9834348 +) +] +g1,23012:32583029,9968696 +) +h1,23012:6630773,9968696:0,0,0 +(1,23014:6630773,12799856:25952256,32768,229376 +(1,23014:6630773,12799856:0,32768,229376 +(1,23014:6630773,12799856:5505024,32768,229376 +r1,23071:12135797,12799856:5505024,262144,229376 +) +k1,23014:6630773,12799856:-5505024 +) +(1,23014:6630773,12799856:25952256,32768,0 +r1,23071:32583029,12799856:25952256,32768,0 +) +) +(1,23014:6630773,14431708:25952256,606339,161218 +(1,23014:6630773,14431708:2464678,582746,14155 +g1,23014:6630773,14431708 +g1,23014:9095451,14431708 +) +g1,23014:13607998,14431708 +k1,23014:32583029,14431708:15940190 +g1,23014:32583029,14431708 +) +(1,23017:6630773,15690004:25952256,505283,134348 +k1,23016:9773844,15690004:608138 +k1,23016:13924203,15690004:608139 +k1,23016:17292717,15690004:608138 +k1,23016:18671558,15690004:608138 +k1,23016:22329087,15690004:608139 +(1,23016:22329087,15690004:0,452978,115847 +r1,23071:24094200,15690004:1765113,568825,115847 +k1,23016:22329087,15690004:-1765113 +) +(1,23016:22329087,15690004:1765113,452978,115847 +k1,23016:22329087,15690004:3277 +h1,23016:24090923,15690004:0,411205,112570 +) +k1,23016:24702338,15690004:608138 +k1,23016:28268771,15690004:608138 +(1,23016:28268771,15690004:0,452978,115847 +r1,23071:32495867,15690004:4227096,568825,115847 +k1,23016:28268771,15690004:-4227096 +) +(1,23016:28268771,15690004:4227096,452978,115847 +k1,23016:28268771,15690004:3277 +h1,23016:32492590,15690004:0,411205,112570 +) +k1,23017:32583029,15690004:0 +) +(1,23017:6630773,16555084:25952256,513147,122846 +(1,23016:6630773,16555084:0,452978,115847 +r1,23071:10506157,16555084:3875384,568825,115847 +k1,23016:6630773,16555084:-3875384 +) +(1,23016:6630773,16555084:3875384,452978,115847 +k1,23016:6630773,16555084:3277 +h1,23016:10502880,16555084:0,411205,112570 +) +k1,23016:10930965,16555084:251138 +(1,23016:10930965,16555084:0,452978,115847 +r1,23071:15861485,16555084:4930520,568825,115847 +k1,23016:10930965,16555084:-4930520 +) +(1,23016:10930965,16555084:4930520,452978,115847 +k1,23016:10930965,16555084:3277 +h1,23016:15858208,16555084:0,411205,112570 +) +k1,23016:16112623,16555084:251138 +k1,23016:17555205,16555084:251137 +(1,23016:17555205,16555084:0,452978,115847 +r1,23071:22134013,16555084:4578808,568825,115847 +k1,23016:17555205,16555084:-4578808 +) +(1,23016:17555205,16555084:4578808,452978,115847 +k1,23016:17555205,16555084:3277 +h1,23016:22130736,16555084:0,411205,112570 +) +k1,23016:22558821,16555084:251138 +k1,23016:23279852,16555084:251138 +k1,23016:24816806,16555084:251138 +k1,23016:27359082,16555084:251137 +(1,23016:27359082,16555084:0,414482,122846 +r1,23071:29124195,16555084:1765113,537328,122846 +k1,23016:27359082,16555084:-1765113 +) +(1,23016:27359082,16555084:1765113,414482,122846 +k1,23016:27359082,16555084:3277 +h1,23016:29120918,16555084:0,411205,112570 +) +k1,23016:29375333,16555084:251138 +k1,23016:30817916,16555084:251138 +(1,23016:30817916,16555084:0,414482,115847 +r1,23071:32583029,16555084:1765113,530329,115847 +k1,23016:30817916,16555084:-1765113 +) +(1,23016:30817916,16555084:1765113,414482,115847 +k1,23016:30817916,16555084:3277 +h1,23016:32579752,16555084:0,411205,112570 +) +k1,23016:32583029,16555084:0 +) +(1,23017:6630773,17420164:25952256,513147,134348 +k1,23016:8091990,17420164:176711 +k1,23016:10595885,17420164:176712 +k1,23016:11431888,17420164:176711 +k1,23016:14180888,17420164:176712 +k1,23016:14713459,17420164:176711 +k1,23016:16447961,17420164:176711 +k1,23016:18206712,17420164:176712 +k1,23016:19402508,17420164:176711 +k1,23016:20968582,17420164:176711 +k1,23016:22525482,17420164:176712 +k1,23016:24924519,17420164:176711 +k1,23016:27659757,17420164:176712 +k1,23016:31117200,17420164:176711 +(1,23016:31117200,17420164:0,452978,115847 +r1,23071:32530601,17420164:1413401,568825,115847 +k1,23016:31117200,17420164:-1413401 +) +(1,23016:31117200,17420164:1413401,452978,115847 +k1,23016:31117200,17420164:3277 +h1,23016:32527324,17420164:0,411205,112570 +) +k1,23016:32583029,17420164:0 +) +(1,23017:6630773,18285244:25952256,513147,134348 +k1,23016:8720061,18285244:236585 +k1,23016:9948206,18285244:236585 +k1,23016:12309467,18285244:236584 +k1,23016:15571849,18285244:236585 +k1,23016:17092940,18285244:236585 +k1,23016:18796221,18285244:236585 +k1,23016:19498767,18285244:236585 +k1,23016:23126185,18285244:236585 +k1,23016:24172140,18285244:236585 +k1,23016:27237257,18285244:236584 +k1,23016:30288613,18285244:236585 +k1,23016:31516758,18285244:236585 +k1,23016:32583029,18285244:0 +) +(1,23017:6630773,19150324:25952256,505283,134348 +g1,23016:8695812,19150324 +g1,23016:9546469,19150324 +g1,23016:11546627,19150324 +g1,23016:13530401,19150324 +g1,23016:15123581,19150324 +g1,23016:18151343,19150324 +k1,23017:32583029,19150324:11832529 +g1,23017:32583029,19150324 +) +(1,23019:6630773,20015404:25952256,505283,134348 +h1,23018:6630773,20015404:983040,0,0 +k1,23018:10377221,20015404:228475 +k1,23018:13345099,20015404:228474 +k1,23018:16333950,20015404:228475 +k1,23018:18345660,20015404:228475 +k1,23018:20224331,20015404:228474 +k1,23018:23008055,20015404:228475 +k1,23018:24427974,20015404:228474 +k1,23018:28920877,20015404:228475 +k1,23018:32583029,20015404:0 +) +(1,23019:6630773,20880484:25952256,513147,134348 +k1,23018:7504440,20880484:222239 +k1,23018:10095150,20880484:222239 +k1,23018:11336475,20880484:222240 +k1,23018:14373485,20880484:222239 +k1,23018:15262880,20880484:222239 +(1,23018:15262880,20880484:0,452978,122846 +r1,23071:16676281,20880484:1413401,575824,122846 +k1,23018:15262880,20880484:-1413401 +) +(1,23018:15262880,20880484:1413401,452978,122846 +k1,23018:15262880,20880484:3277 +h1,23018:16673004,20880484:0,411205,112570 +) +k1,23018:16898520,20880484:222239 +k1,23018:18398056,20880484:222239 +k1,23018:21083793,20880484:222239 +k1,23018:23840966,20880484:222240 +k1,23018:26891738,20880484:222239 +k1,23018:28719609,20880484:222239 +k1,23018:30552068,20880484:222239 +k1,23018:32583029,20880484:0 +) +(1,23019:6630773,21745564:25952256,505283,134348 +g1,23018:7481430,21745564 +g1,23018:9372799,21745564 +g1,23018:11531554,21745564 +k1,23019:32583029,21745564:17071474 +g1,23019:32583029,21745564 +) +(1,23021:6630773,22610644:25952256,513147,126483 +h1,23020:6630773,22610644:983040,0,0 +k1,23020:8597809,22610644:210016 +k1,23020:10504551,22610644:210015 +k1,23020:12469621,22610644:210016 +(1,23020:12469621,22610644:0,452978,122846 +r1,23071:16696717,22610644:4227096,575824,122846 +k1,23020:12469621,22610644:-4227096 +) +(1,23020:12469621,22610644:4227096,452978,122846 +k1,23020:12469621,22610644:3277 +h1,23020:16693440,22610644:0,411205,112570 +) +k1,23020:17080403,22610644:210016 +k1,23020:17821915,22610644:210015 +k1,23020:20858499,22610644:210016 +k1,23020:22087600,22610644:210016 +k1,23020:23899316,22610644:210016 +k1,23020:26760918,22610644:210015 +k1,23020:27622362,22610644:210016 +k1,23020:29098534,22610644:210016 +k1,23020:30775245,22610644:210015 +k1,23020:31794631,22610644:210016 +k1,23020:32583029,22610644:0 +) +(1,23021:6630773,23475724:25952256,505283,134348 +g1,23020:8160383,23475724 +g1,23020:9551057,23475724 +g1,23020:10436448,23475724 +g1,23020:11406380,23475724 +g1,23020:14677937,23475724 +g1,23020:15528594,23475724 +(1,23020:15528594,23475724:0,414482,115847 +r1,23071:17293707,23475724:1765113,530329,115847 +k1,23020:15528594,23475724:-1765113 +) +(1,23020:15528594,23475724:1765113,414482,115847 +k1,23020:15528594,23475724:3277 +h1,23020:17290430,23475724:0,411205,112570 +) +k1,23021:32583029,23475724:15236894 +g1,23021:32583029,23475724 +) +v1,23023:6630773,24160579:0,393216,0 +(1,23037:6630773,29847663:25952256,6080300,196608 +g1,23037:6630773,29847663 +g1,23037:6630773,29847663 +g1,23037:6434165,29847663 +(1,23037:6434165,29847663:0,6080300,196608 +r1,23071:32779637,29847663:26345472,6276908,196608 +k1,23037:6434165,29847663:-26345472 +) +(1,23037:6434165,29847663:26345472,6080300,196608 +[1,23037:6630773,29847663:25952256,5883692,0 +(1,23025:6630773,24388410:25952256,424439,112852 +(1,23024:6630773,24388410:0,0,0 +g1,23024:6630773,24388410 +g1,23024:6630773,24388410 +g1,23024:6303093,24388410 +(1,23024:6303093,24388410:0,0,0 +) +g1,23024:6630773,24388410 +) +k1,23025:6630773,24388410:0 +g1,23025:10614221,24388410 +g1,23025:11278129,24388410 +g1,23025:13269853,24388410 +g1,23025:15925485,24388410 +g1,23025:16589393,24388410 +g1,23025:18581117,24388410 +g1,23025:19245025,24388410 +g1,23025:23892380,24388410 +g1,23025:24556288,24388410 +g1,23025:25220196,24388410 +g1,23025:28539735,24388410 +h1,23025:28871689,24388410:0,0,0 +k1,23025:32583029,24388410:3711340 +g1,23025:32583029,24388410 +) +(1,23026:6630773,25073265:25952256,424439,112852 +h1,23026:6630773,25073265:0,0,0 +g1,23026:6962727,25073265 +g1,23026:7294681,25073265 +g1,23026:13269852,25073265 +g1,23026:13933760,25073265 +h1,23026:16589392,25073265:0,0,0 +k1,23026:32583029,25073265:15993637 +g1,23026:32583029,25073265 +) +(1,23030:6630773,26413480:25952256,431045,112852 +g1,23030:7626635,26413480 +g1,23030:8622497,26413480 +g1,23030:11278129,26413480 +g1,23030:14265714,26413480 +g1,23030:17585253,26413480 +g1,23030:21236746,26413480 +g1,23030:22232608,26413480 +k1,23030:32583029,26413480:6698928 +g1,23030:32583029,26413480 +) +(1,23036:6630773,27098335:25952256,431045,106246 +(1,23030:6630773,27098335:0,0,0 +g1,23030:6630773,27098335 +g1,23030:6630773,27098335 +g1,23030:6303093,27098335 +(1,23030:6303093,27098335:0,0,0 +) +g1,23030:6630773,27098335 +) +g1,23036:7626635,27098335 +g1,23036:8954451,27098335 +g1,23036:11942036,27098335 +g1,23036:12937898,27098335 +g1,23036:14929622,27098335 +g1,23036:17253300,27098335 +g1,23036:18249162,27098335 +h1,23036:23560425,27098335:0,0,0 +k1,23036:32583029,27098335:9022604 +g1,23036:32583029,27098335 +) +(1,23036:6630773,27783190:25952256,431045,112852 +h1,23036:6630773,27783190:0,0,0 +g1,23036:7626635,27783190 +g1,23036:7958589,27783190 +g1,23036:8290543,27783190 +g1,23036:8954451,27783190 +g1,23036:10946175,27783190 +g1,23036:11278129,27783190 +g1,23036:11610083,27783190 +g1,23036:11942037,27783190 +g1,23036:12273991,27783190 +g1,23036:12937899,27783190 +g1,23036:13269853,27783190 +g1,23036:13601807,27783190 +g1,23036:13933761,27783190 +g1,23036:14265715,27783190 +g1,23036:15925485,27783190 +g1,23036:16257439,27783190 +g1,23036:16589393,27783190 +g1,23036:16921347,27783190 +g1,23036:17253301,27783190 +g1,23036:18913071,27783190 +g1,23036:20904795,27783190 +h1,23036:24556288,27783190:0,0,0 +k1,23036:32583029,27783190:8026741 +g1,23036:32583029,27783190 +) +(1,23036:6630773,28468045:25952256,407923,9908 +h1,23036:6630773,28468045:0,0,0 +g1,23036:7626635,28468045 +g1,23036:8290543,28468045 +g1,23036:8954451,28468045 +g1,23036:9286405,28468045 +g1,23036:9618359,28468045 +g1,23036:9950313,28468045 +g1,23036:10282267,28468045 +g1,23036:10946175,28468045 +g1,23036:12937899,28468045 +g1,23036:15925484,28468045 +g1,23036:18913069,28468045 +g1,23036:19245023,28468045 +g1,23036:19576977,28468045 +g1,23036:19908931,28468045 +g1,23036:20240885,28468045 +g1,23036:20904793,28468045 +g1,23036:21236747,28468045 +g1,23036:21568701,28468045 +g1,23036:21900655,28468045 +g1,23036:22232609,28468045 +g1,23036:22564563,28468045 +g1,23036:22896517,28468045 +g1,23036:23228471,28468045 +h1,23036:24556287,28468045:0,0,0 +k1,23036:32583029,28468045:8026742 +g1,23036:32583029,28468045 +) +(1,23036:6630773,29152900:25952256,407923,9908 +h1,23036:6630773,29152900:0,0,0 +g1,23036:7626635,29152900 +g1,23036:8290543,29152900 +g1,23036:8954451,29152900 +g1,23036:9286405,29152900 +g1,23036:9618359,29152900 +g1,23036:9950313,29152900 +g1,23036:10282267,29152900 +g1,23036:10946175,29152900 +g1,23036:12937899,29152900 +g1,23036:15925484,29152900 +g1,23036:18913069,29152900 +g1,23036:19245023,29152900 +g1,23036:19576977,29152900 +g1,23036:19908931,29152900 +g1,23036:20240885,29152900 +g1,23036:20904793,29152900 +g1,23036:21236747,29152900 +g1,23036:21568701,29152900 +g1,23036:21900655,29152900 +g1,23036:22232609,29152900 +g1,23036:22564563,29152900 +g1,23036:22896517,29152900 +g1,23036:23228471,29152900 +h1,23036:24556287,29152900:0,0,0 +k1,23036:32583029,29152900:8026742 +g1,23036:32583029,29152900 +) +(1,23036:6630773,29837755:25952256,407923,9908 +h1,23036:6630773,29837755:0,0,0 +g1,23036:7626635,29837755 +g1,23036:8290543,29837755 +g1,23036:8954451,29837755 +g1,23036:9286405,29837755 +g1,23036:9618359,29837755 +g1,23036:9950313,29837755 +g1,23036:10282267,29837755 +g1,23036:10946175,29837755 +g1,23036:12937899,29837755 +g1,23036:15925484,29837755 +g1,23036:18913069,29837755 +g1,23036:19245023,29837755 +g1,23036:19576977,29837755 +g1,23036:19908931,29837755 +g1,23036:20240885,29837755 +g1,23036:20904793,29837755 +g1,23036:21236747,29837755 +g1,23036:21568701,29837755 +g1,23036:21900655,29837755 +g1,23036:22232609,29837755 +g1,23036:22564563,29837755 +g1,23036:22896517,29837755 +g1,23036:23228471,29837755 +h1,23036:24556287,29837755:0,0,0 +k1,23036:32583029,29837755:8026742 +g1,23036:32583029,29837755 +) +] +) +g1,23037:32583029,29847663 +g1,23037:6630773,29847663 +g1,23037:6630773,29847663 +g1,23037:32583029,29847663 +g1,23037:32583029,29847663 +) +h1,23037:6630773,30044271:0,0,0 +(1,23040:6630773,39193473:25952256,9083666,0 +k1,23040:10523651,39193473:3892878 +h1,23039:10523651,39193473:0,0,0 +(1,23039:10523651,39193473:18166500,9083666,0 +(1,23039:10523651,39193473:18167376,9083688,0 +(1,23039:10523651,39193473:18167376,9083688,0 +(1,23039:10523651,39193473:0,9083688,0 +(1,23039:10523651,39193473:0,14208860,0 +(1,23039:10523651,39193473:28417720,14208860,0 +) +k1,23039:10523651,39193473:-28417720 +) +) +g1,23039:28691027,39193473 +) +) +) +g1,23040:28690151,39193473 +k1,23040:32583029,39193473:3892878 +) +v1,23047:6630773,39878328:0,393216,0 +(1,23071:6630773,45510161:25952256,6025049,196608 +g1,23071:6630773,45510161 +g1,23071:6630773,45510161 +g1,23071:6434165,45510161 +(1,23071:6434165,45510161:0,6025049,196608 +r1,23071:32779637,45510161:26345472,6221657,196608 +k1,23071:6434165,45510161:-26345472 +) +(1,23071:6434165,45510161:26345472,6025049,196608 +[1,23071:6630773,45510161:25952256,5828441,0 +(1,23049:6630773,40106159:25952256,424439,112852 +(1,23048:6630773,40106159:0,0,0 +g1,23048:6630773,40106159 +g1,23048:6630773,40106159 +g1,23048:6303093,40106159 +(1,23048:6303093,40106159:0,0,0 +) +g1,23048:6630773,40106159 +) +k1,23049:6630773,40106159:0 +g1,23049:10614221,40106159 +g1,23049:11278129,40106159 +g1,23049:13269853,40106159 +g1,23049:15925485,40106159 +g1,23049:16589393,40106159 +g1,23049:18581117,40106159 +g1,23049:19245025,40106159 +g1,23049:24224334,40106159 +h1,23049:24556288,40106159:0,0,0 +k1,23049:32583029,40106159:8026741 +g1,23049:32583029,40106159 +) +(1,23050:6630773,40791014:25952256,424439,112852 +h1,23050:6630773,40791014:0,0,0 +g1,23050:6962727,40791014 +g1,23050:7294681,40791014 +g1,23050:11942036,40791014 +g1,23050:12605944,40791014 +h1,23050:15261576,40791014:0,0,0 +k1,23050:32583028,40791014:17321452 +g1,23050:32583028,40791014 +) +(1,23054:6630773,42075978:25952256,431045,112852 +g1,23054:7626635,42075978 +g1,23054:11942036,42075978 +g1,23054:13933760,42075978 +g1,23054:15925484,42075978 +g1,23054:16589392,42075978 +g1,23054:18249162,42075978 +g1,23054:19908932,42075978 +g1,23054:22232610,42075978 +g1,23054:24224334,42075978 +g1,23054:25884104,42075978 +k1,23054:32583029,42075978:3047432 +g1,23054:32583029,42075978 +) +(1,23070:6630773,42760833:25952256,431045,106246 +(1,23054:6630773,42760833:0,0,0 +g1,23054:6630773,42760833 +g1,23054:6630773,42760833 +g1,23054:6303093,42760833 +(1,23054:6303093,42760833:0,0,0 +) +g1,23054:6630773,42760833 +) +g1,23070:7626635,42760833 +g1,23070:8954451,42760833 +g1,23070:11942036,42760833 +g1,23070:12937898,42760833 +g1,23070:14929622,42760833 +g1,23070:17253300,42760833 +g1,23070:18249162,42760833 +h1,23070:23560425,42760833:0,0,0 +k1,23070:32583029,42760833:9022604 +g1,23070:32583029,42760833 +) +(1,23070:6630773,43445688:25952256,424439,106246 +h1,23070:6630773,43445688:0,0,0 +g1,23070:7626635,43445688 +g1,23070:7958589,43445688 +g1,23070:8290543,43445688 +g1,23070:8622497,43445688 +g1,23070:9286405,43445688 +g1,23070:11278129,43445688 +g1,23070:11610083,43445688 +g1,23070:11942037,43445688 +g1,23070:12273991,43445688 +g1,23070:12605945,43445688 +g1,23070:12937899,43445688 +g1,23070:13269853,43445688 +g1,23070:13601807,43445688 +g1,23070:14265715,43445688 +g1,23070:14597669,43445688 +g1,23070:14929623,43445688 +g1,23070:15261577,43445688 +g1,23070:15593531,43445688 +g1,23070:15925485,43445688 +g1,23070:17585255,43445688 +g1,23070:17917209,43445688 +g1,23070:18249163,43445688 +g1,23070:18581117,43445688 +g1,23070:18913071,43445688 +g1,23070:20572841,43445688 +g1,23070:20904795,43445688 +g1,23070:21236749,43445688 +g1,23070:21568703,43445688 +g1,23070:21900657,43445688 +g1,23070:23892381,43445688 +g1,23070:24224335,43445688 +g1,23070:24556289,43445688 +g1,23070:24888243,43445688 +g1,23070:27543875,43445688 +g1,23070:27875829,43445688 +g1,23070:28207783,43445688 +g1,23070:28539737,43445688 +g1,23070:28871691,43445688 +h1,23070:30863415,43445688:0,0,0 +k1,23070:32583029,43445688:1719614 +g1,23070:32583029,43445688 +) +(1,23070:6630773,44130543:25952256,407923,9908 +h1,23070:6630773,44130543:0,0,0 +g1,23070:7626635,44130543 +g1,23070:8290543,44130543 +g1,23070:8622497,44130543 +g1,23070:9286405,44130543 +g1,23070:9618359,44130543 +g1,23070:9950313,44130543 +g1,23070:10282267,44130543 +g1,23070:10614221,44130543 +g1,23070:11278129,44130543 +g1,23070:14265714,44130543 +g1,23070:17585253,44130543 +g1,23070:20572838,44130543 +g1,23070:23892377,44130543 +g1,23070:27543870,44130543 +h1,23070:30863409,44130543:0,0,0 +k1,23070:32583029,44130543:1719620 +g1,23070:32583029,44130543 +) +(1,23070:6630773,44815398:25952256,407923,9908 +h1,23070:6630773,44815398:0,0,0 +g1,23070:7626635,44815398 +g1,23070:8290543,44815398 +g1,23070:8622497,44815398 +g1,23070:9286405,44815398 +g1,23070:9618359,44815398 +g1,23070:9950313,44815398 +g1,23070:10282267,44815398 +g1,23070:10614221,44815398 +g1,23070:11278129,44815398 +g1,23070:14265714,44815398 +g1,23070:17585253,44815398 +g1,23070:20572838,44815398 +g1,23070:23892377,44815398 +g1,23070:27543870,44815398 +h1,23070:30863409,44815398:0,0,0 +k1,23070:32583029,44815398:1719620 +g1,23070:32583029,44815398 +) +(1,23070:6630773,45500253:25952256,407923,9908 +h1,23070:6630773,45500253:0,0,0 +g1,23070:7626635,45500253 +g1,23070:8290543,45500253 +g1,23070:9286405,45500253 +g1,23070:9618359,45500253 +g1,23070:9950313,45500253 +g1,23070:10282267,45500253 +g1,23070:11278129,45500253 +g1,23070:14265714,45500253 +g1,23070:17585253,45500253 +g1,23070:20572838,45500253 +g1,23070:23892377,45500253 +g1,23070:27543870,45500253 +h1,23070:30863409,45500253:0,0,0 +k1,23070:32583029,45500253:1719620 +g1,23070:32583029,45500253 +) +] +) +g1,23071:32583029,45510161 +g1,23071:6630773,45510161 +g1,23071:6630773,45510161 +g1,23071:32583029,45510161 +g1,23071:32583029,45510161 +) +] +(1,23071:32583029,45706769:0,0,0 +g1,23071:32583029,45706769 +) +) +] +(1,23071:6630773,47279633:25952256,0,0 +h1,23071:6630773,47279633:25952256,0,0 +) +] +(1,23071:4262630,4025873:0,0,0 +[1,23071:-473656,4025873:0,0,0 +(1,23071:-473656,-710413:0,0,0 +(1,23071:-473656,-710413:0,0,0 +g1,23071:-473656,-710413 +) +g1,23071:-473656,-710413 ) ] ) ] !24567 -}395 +}396 !12 -{396 -[1,23097:4262630,47279633:28320399,43253760,0 -(1,23097:4262630,4025873:0,0,0 -[1,23097:-473656,4025873:0,0,0 -(1,23097:-473656,-710413:0,0,0 -(1,23097:-473656,-644877:0,0,0 -k1,23097:-473656,-644877:-65536 +{397 +[1,23095:4262630,47279633:28320399,43253760,0 +(1,23095:4262630,4025873:0,0,0 +[1,23095:-473656,4025873:0,0,0 +(1,23095:-473656,-710413:0,0,0 +(1,23095:-473656,-644877:0,0,0 +k1,23095:-473656,-644877:-65536 ) -(1,23097:-473656,4736287:0,0,0 -k1,23097:-473656,4736287:5209943 +(1,23095:-473656,4736287:0,0,0 +k1,23095:-473656,4736287:5209943 ) -g1,23097:-473656,-710413 +g1,23095:-473656,-710413 ) ] ) -[1,23097:6630773,47279633:25952256,43253760,0 -[1,23097:6630773,4812305:25952256,786432,0 -(1,23097:6630773,4812305:25952256,505283,134348 -(1,23097:6630773,4812305:25952256,505283,134348 -g1,23097:3078558,4812305 -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,2439708:0,1703936,0 -k1,23097:1358238,2439708:-1720320 -(1,17848:1358238,2439708:1720320,1703936,0 -(1,17848:1358238,2439708:1179648,16384,0 -r1,23097:2537886,2439708:1179648,16384,0 +[1,23095:6630773,47279633:25952256,43253760,0 +[1,23095:6630773,4812305:25952256,786432,0 +(1,23095:6630773,4812305:25952256,505283,134348 +(1,23095:6630773,4812305:25952256,505283,134348 +g1,23095:3078558,4812305 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,2439708:0,1703936,0 +k1,23095:1358238,2439708:-1720320 +(1,17846:1358238,2439708:1720320,1703936,0 +(1,17846:1358238,2439708:1179648,16384,0 +r1,23095:2537886,2439708:1179648,16384,0 ) -g1,17848:3062174,2439708 -(1,17848:3062174,2439708:16384,1703936,0 -[1,17848:3062174,2439708:25952256,1703936,0 -(1,17848:3062174,1915420:25952256,1179648,0 -(1,17848:3062174,1915420:16384,1179648,0 -r1,23097:3078558,1915420:16384,1179648,0 +g1,17846:3062174,2439708 +(1,17846:3062174,2439708:16384,1703936,0 +[1,17846:3062174,2439708:25952256,1703936,0 +(1,17846:3062174,1915420:25952256,1179648,0 +(1,17846:3062174,1915420:16384,1179648,0 +r1,23095:3078558,1915420:16384,1179648,0 ) -k1,17848:29014430,1915420:25935872 -g1,17848:29014430,1915420 +k1,17846:29014430,1915420:25935872 +g1,17846:29014430,1915420 ) ] ) ) ) ] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,2439708:0,1703936,0 -g1,23097:29030814,2439708 -g1,23097:36135244,2439708 -(1,17848:36135244,2439708:1720320,1703936,0 -(1,17848:36135244,2439708:16384,1703936,0 -[1,17848:36135244,2439708:25952256,1703936,0 -(1,17848:36135244,1915420:25952256,1179648,0 -(1,17848:36135244,1915420:16384,1179648,0 -r1,23097:36151628,1915420:16384,1179648,0 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,2439708:0,1703936,0 +g1,23095:29030814,2439708 +g1,23095:36135244,2439708 +(1,17846:36135244,2439708:1720320,1703936,0 +(1,17846:36135244,2439708:16384,1703936,0 +[1,17846:36135244,2439708:25952256,1703936,0 +(1,17846:36135244,1915420:25952256,1179648,0 +(1,17846:36135244,1915420:16384,1179648,0 +r1,23095:36151628,1915420:16384,1179648,0 ) -k1,17848:62087500,1915420:25935872 -g1,17848:62087500,1915420 +k1,17846:62087500,1915420:25935872 +g1,17846:62087500,1915420 ) ] ) -g1,17848:36675916,2439708 -(1,17848:36675916,2439708:1179648,16384,0 -r1,23097:37855564,2439708:1179648,16384,0 +g1,17846:36675916,2439708 +(1,17846:36675916,2439708:1179648,16384,0 +r1,23095:37855564,2439708:1179648,16384,0 ) ) -k1,23097:3078556,2439708:-34777008 +k1,23095:3078556,2439708:-34777008 ) ] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,49800853:0,16384,2228224 -k1,23097:1358238,49800853:-1720320 -(1,17848:1358238,49800853:1720320,16384,2228224 -(1,17848:1358238,49800853:1179648,16384,0 -r1,23097:2537886,49800853:1179648,16384,0 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,49800853:0,16384,2228224 +k1,23095:1358238,49800853:-1720320 +(1,17846:1358238,49800853:1720320,16384,2228224 +(1,17846:1358238,49800853:1179648,16384,0 +r1,23095:2537886,49800853:1179648,16384,0 ) -g1,17848:3062174,49800853 -(1,17848:3062174,52029077:16384,1703936,0 -[1,17848:3062174,52029077:25952256,1703936,0 -(1,17848:3062174,51504789:25952256,1179648,0 -(1,17848:3062174,51504789:16384,1179648,0 -r1,23097:3078558,51504789:16384,1179648,0 +g1,17846:3062174,49800853 +(1,17846:3062174,52029077:16384,1703936,0 +[1,17846:3062174,52029077:25952256,1703936,0 +(1,17846:3062174,51504789:25952256,1179648,0 +(1,17846:3062174,51504789:16384,1179648,0 +r1,23095:3078558,51504789:16384,1179648,0 ) -k1,17848:29014430,51504789:25935872 -g1,17848:29014430,51504789 -) -] -) -) -) -] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,49800853:0,16384,2228224 -g1,23097:29030814,49800853 -g1,23097:36135244,49800853 -(1,17848:36135244,49800853:1720320,16384,2228224 -(1,17848:36135244,52029077:16384,1703936,0 -[1,17848:36135244,52029077:25952256,1703936,0 -(1,17848:36135244,51504789:25952256,1179648,0 -(1,17848:36135244,51504789:16384,1179648,0 -r1,23097:36151628,51504789:16384,1179648,0 -) -k1,17848:62087500,51504789:25935872 -g1,17848:62087500,51504789 -) -] -) -g1,17848:36675916,49800853 -(1,17848:36675916,49800853:1179648,16384,0 -r1,23097:37855564,49800853:1179648,16384,0 -) -) -k1,23097:3078556,49800853:-34777008 -) -] -g1,23097:6630773,4812305 -g1,23097:6630773,4812305 -g1,23097:9205682,4812305 -g1,23097:11988340,4812305 -k1,23097:31387652,4812305:19399312 -) -) -] -[1,23097:6630773,45706769:25952256,40108032,0 -(1,23097:6630773,45706769:25952256,40108032,0 -(1,23097:6630773,45706769:0,0,0 -g1,23097:6630773,45706769 -) -[1,23097:6630773,45706769:25952256,40108032,0 -v1,23073:6630773,6254097:0,393216,0 -(1,23073:6630773,12639015:25952256,6778134,196608 -g1,23073:6630773,12639015 -g1,23073:6630773,12639015 -g1,23073:6434165,12639015 -(1,23073:6434165,12639015:0,6778134,196608 -r1,23097:32779637,12639015:26345472,6974742,196608 -k1,23073:6434165,12639015:-26345472 -) -(1,23073:6434165,12639015:26345472,6778134,196608 -[1,23073:6630773,12639015:25952256,6581526,0 -(1,23072:6630773,6465412:25952256,407923,9908 -h1,23072:6630773,6465412:0,0,0 -g1,23072:7626635,6465412 -g1,23072:8290543,6465412 -g1,23072:9286405,6465412 -g1,23072:9618359,6465412 -g1,23072:9950313,6465412 -g1,23072:10282267,6465412 -g1,23072:11278129,6465412 -g1,23072:14265714,6465412 -g1,23072:17585253,6465412 -g1,23072:20572838,6465412 -g1,23072:23892377,6465412 -g1,23072:27543870,6465412 -h1,23072:30863409,6465412:0,0,0 -k1,23072:32583029,6465412:1719620 -g1,23072:32583029,6465412 -) -(1,23072:6630773,7150267:25952256,407923,9908 -h1,23072:6630773,7150267:0,0,0 -g1,23072:7626635,7150267 -g1,23072:8290543,7150267 -g1,23072:8622497,7150267 -g1,23072:9286405,7150267 -g1,23072:9618359,7150267 -g1,23072:9950313,7150267 -g1,23072:10282267,7150267 -g1,23072:10614221,7150267 -g1,23072:11278129,7150267 -g1,23072:14265714,7150267 -g1,23072:17585253,7150267 -g1,23072:20572838,7150267 -g1,23072:23892377,7150267 -g1,23072:27543870,7150267 -h1,23072:30863409,7150267:0,0,0 -k1,23072:32583029,7150267:1719620 -g1,23072:32583029,7150267 -) -(1,23072:6630773,7835122:25952256,407923,9908 -h1,23072:6630773,7835122:0,0,0 -g1,23072:7626635,7835122 -g1,23072:8290543,7835122 -g1,23072:8622497,7835122 -g1,23072:9286405,7835122 -g1,23072:9618359,7835122 -g1,23072:9950313,7835122 -g1,23072:10282267,7835122 -g1,23072:10614221,7835122 -g1,23072:11278129,7835122 -g1,23072:14265714,7835122 -g1,23072:17585253,7835122 -g1,23072:20572838,7835122 -g1,23072:23892377,7835122 -g1,23072:27543870,7835122 -h1,23072:30863409,7835122:0,0,0 -k1,23072:32583029,7835122:1719620 -g1,23072:32583029,7835122 -) -(1,23072:6630773,8519977:25952256,431045,112852 -h1,23072:6630773,8519977:0,0,0 -g1,23072:7626635,8519977 -g1,23072:7958589,8519977 -g1,23072:8290543,8519977 -g1,23072:8622497,8519977 -g1,23072:8954451,8519977 -g1,23072:11942036,8519977 -g1,23072:15925483,8519977 -g1,23072:17917207,8519977 -g1,23072:19908931,8519977 -g1,23072:21568701,8519977 -h1,23072:22896517,8519977:0,0,0 -k1,23072:32583029,8519977:9686512 -g1,23072:32583029,8519977 -) -(1,23072:6630773,9204832:25952256,407923,9908 -h1,23072:6630773,9204832:0,0,0 -g1,23072:7626635,9204832 -g1,23072:8290543,9204832 -g1,23072:11942036,9204832 -g1,23072:12273990,9204832 -g1,23072:12605944,9204832 -g1,23072:12937898,9204832 -g1,23072:13269852,9204832 -g1,23072:13601806,9204832 -g1,23072:13933760,9204832 -g1,23072:15925484,9204832 -g1,23072:16257438,9204832 -g1,23072:16589392,9204832 -g1,23072:16921346,9204832 -g1,23072:17253300,9204832 -g1,23072:17917208,9204832 -g1,23072:18249162,9204832 -g1,23072:18581116,9204832 -g1,23072:18913070,9204832 -g1,23072:19908932,9204832 -g1,23072:20240886,9204832 -g1,23072:20572840,9204832 -g1,23072:20904794,9204832 -g1,23072:21568702,9204832 -g1,23072:21900656,9204832 -g1,23072:22232610,9204832 -g1,23072:22564564,9204832 -h1,23072:22896518,9204832:0,0,0 -k1,23072:32583029,9204832:9686511 -g1,23072:32583029,9204832 -) -(1,23072:6630773,9889687:25952256,407923,9908 -h1,23072:6630773,9889687:0,0,0 -g1,23072:7626635,9889687 -g1,23072:8290543,9889687 -g1,23072:11942036,9889687 -g1,23072:12273990,9889687 -g1,23072:12605944,9889687 -g1,23072:12937898,9889687 -g1,23072:13269852,9889687 -g1,23072:13601806,9889687 -g1,23072:13933760,9889687 -g1,23072:15925484,9889687 -g1,23072:16257438,9889687 -g1,23072:16589392,9889687 -g1,23072:16921346,9889687 -g1,23072:17253300,9889687 -g1,23072:17917208,9889687 -g1,23072:18249162,9889687 -g1,23072:18581116,9889687 -g1,23072:18913070,9889687 -g1,23072:19908932,9889687 -g1,23072:20240886,9889687 -g1,23072:20572840,9889687 -g1,23072:20904794,9889687 -g1,23072:21568702,9889687 -g1,23072:21900656,9889687 -g1,23072:22232610,9889687 -g1,23072:22564564,9889687 -h1,23072:22896518,9889687:0,0,0 -k1,23072:32583029,9889687:9686511 -g1,23072:32583029,9889687 -) -(1,23072:6630773,10574542:25952256,407923,9908 -h1,23072:6630773,10574542:0,0,0 -g1,23072:7626635,10574542 -g1,23072:8290543,10574542 -g1,23072:11942036,10574542 -g1,23072:12273990,10574542 -g1,23072:12605944,10574542 -g1,23072:12937898,10574542 -g1,23072:13269852,10574542 -g1,23072:13601806,10574542 -g1,23072:13933760,10574542 -g1,23072:15925484,10574542 -g1,23072:16257438,10574542 -g1,23072:16589392,10574542 -g1,23072:16921346,10574542 -g1,23072:17253300,10574542 -g1,23072:17917208,10574542 -g1,23072:18249162,10574542 -g1,23072:18581116,10574542 -g1,23072:18913070,10574542 -g1,23072:19908932,10574542 -g1,23072:20240886,10574542 -g1,23072:20572840,10574542 -g1,23072:21568702,10574542 -g1,23072:21900656,10574542 -g1,23072:22232610,10574542 -g1,23072:22564564,10574542 -h1,23072:22896518,10574542:0,0,0 -k1,23072:32583029,10574542:9686511 -g1,23072:32583029,10574542 -) -(1,23072:6630773,11259397:25952256,407923,9908 -h1,23072:6630773,11259397:0,0,0 -g1,23072:7626635,11259397 -g1,23072:8290543,11259397 -g1,23072:11942036,11259397 -g1,23072:12273990,11259397 -g1,23072:12605944,11259397 -g1,23072:12937898,11259397 -g1,23072:13269852,11259397 -g1,23072:13601806,11259397 -g1,23072:13933760,11259397 -g1,23072:15925484,11259397 -g1,23072:16257438,11259397 -g1,23072:16589392,11259397 -g1,23072:16921346,11259397 -g1,23072:17253300,11259397 -g1,23072:17917208,11259397 -g1,23072:18249162,11259397 -g1,23072:18581116,11259397 -g1,23072:18913070,11259397 -g1,23072:19908932,11259397 -g1,23072:20240886,11259397 -g1,23072:20572840,11259397 -g1,23072:21568702,11259397 -g1,23072:21900656,11259397 -g1,23072:22232610,11259397 -g1,23072:22564564,11259397 -h1,23072:22896518,11259397:0,0,0 -k1,23072:32583029,11259397:9686511 -g1,23072:32583029,11259397 -) -(1,23072:6630773,11944252:25952256,407923,9908 -h1,23072:6630773,11944252:0,0,0 -g1,23072:7626635,11944252 -g1,23072:8290543,11944252 -g1,23072:11942036,11944252 -g1,23072:12273990,11944252 -g1,23072:12605944,11944252 -g1,23072:12937898,11944252 -g1,23072:13269852,11944252 -g1,23072:13601806,11944252 -g1,23072:13933760,11944252 -g1,23072:15925484,11944252 -g1,23072:16257438,11944252 -g1,23072:16589392,11944252 -g1,23072:16921346,11944252 -g1,23072:17253300,11944252 -g1,23072:17917208,11944252 -g1,23072:18249162,11944252 -g1,23072:18581116,11944252 -g1,23072:18913070,11944252 -g1,23072:19908932,11944252 -g1,23072:20240886,11944252 -g1,23072:20572840,11944252 -g1,23072:20904794,11944252 -g1,23072:21568702,11944252 -g1,23072:21900656,11944252 -g1,23072:22232610,11944252 -g1,23072:22564564,11944252 -h1,23072:22896518,11944252:0,0,0 -k1,23072:32583029,11944252:9686511 -g1,23072:32583029,11944252 -) -(1,23072:6630773,12629107:25952256,407923,9908 -h1,23072:6630773,12629107:0,0,0 -g1,23072:7626635,12629107 -g1,23072:8290543,12629107 -g1,23072:11942036,12629107 -g1,23072:12273990,12629107 -g1,23072:12605944,12629107 -g1,23072:12937898,12629107 -g1,23072:13269852,12629107 -g1,23072:13601806,12629107 -g1,23072:13933760,12629107 -g1,23072:15925484,12629107 -g1,23072:16257438,12629107 -g1,23072:16589392,12629107 -g1,23072:16921346,12629107 -g1,23072:17253300,12629107 -g1,23072:17917208,12629107 -g1,23072:18249162,12629107 -g1,23072:18581116,12629107 -g1,23072:18913070,12629107 -g1,23072:19908932,12629107 -g1,23072:20240886,12629107 -g1,23072:20572840,12629107 -g1,23072:20904794,12629107 -g1,23072:21568702,12629107 -g1,23072:21900656,12629107 -g1,23072:22232610,12629107 -g1,23072:22564564,12629107 -h1,23072:22896518,12629107:0,0,0 -k1,23072:32583029,12629107:9686511 -g1,23072:32583029,12629107 -) -] -) -g1,23073:32583029,12639015 -g1,23073:6630773,12639015 -g1,23073:6630773,12639015 -g1,23073:32583029,12639015 -g1,23073:32583029,12639015 -) -h1,23073:6630773,12835623:0,0,0 -(1,23076:6630773,21984825:25952256,9083666,0 -k1,23076:10523651,21984825:3892878 -h1,23075:10523651,21984825:0,0,0 -(1,23075:10523651,21984825:18166500,9083666,0 -(1,23075:10523651,21984825:18167376,9083688,0 -(1,23075:10523651,21984825:18167376,9083688,0 -(1,23075:10523651,21984825:0,9083688,0 -(1,23075:10523651,21984825:0,14208860,0 -(1,23075:10523651,21984825:28417720,14208860,0 -) -k1,23075:10523651,21984825:-28417720 -) -) -g1,23075:28691027,21984825 -) -) -) -g1,23076:28690151,21984825 -k1,23076:32583029,21984825:3892878 -) -(1,23082:6630773,24815985:25952256,32768,229376 -(1,23082:6630773,24815985:0,32768,229376 -(1,23082:6630773,24815985:5505024,32768,229376 -r1,23097:12135797,24815985:5505024,262144,229376 -) -k1,23082:6630773,24815985:-5505024 -) -(1,23082:6630773,24815985:25952256,32768,0 -r1,23097:32583029,24815985:25952256,32768,0 -) -) -(1,23082:6630773,26447837:25952256,606339,161218 -(1,23082:6630773,26447837:2464678,582746,14155 -g1,23082:6630773,26447837 -g1,23082:9095451,26447837 -) -g1,23082:12303307,26447837 -k1,23082:32583029,26447837:17080516 -g1,23082:32583029,26447837 -) -(1,23084:6630773,27706133:25952256,513147,134348 -k1,23083:7692566,27706133:183610 -k1,23083:10565774,27706133:183610 -k1,23083:14121211,27706133:183610 -k1,23083:14964113,27706133:183610 -k1,23083:16166808,27706133:183610 -k1,23083:18102195,27706133:183610 -k1,23083:21688434,27706133:183610 -k1,23083:22523472,27706133:183610 -k1,23083:25287234,27706133:183610 -k1,23083:28299377,27706133:183610 -k1,23083:29014484,27706133:183610 -k1,23083:31563944,27706133:183610 -k1,23083:32583029,27706133:0 -) -(1,23084:6630773,28571213:25952256,513147,134348 -k1,23083:8746124,28571213:288863 -k1,23083:9694278,28571213:288862 -k1,23083:11186382,28571213:288863 -k1,23083:13230954,28571213:288862 -k1,23083:15776222,28571213:288863 -k1,23083:17977425,28571213:288862 -k1,23083:20935569,28571213:288863 -k1,23083:21840469,28571213:288862 -k1,23083:23916499,28571213:288863 -k1,23083:25224446,28571213:288862 -k1,23083:26605794,28571213:288863 -k1,23083:27553949,28571213:288863 -k1,23083:30845014,28571213:288862 -k1,23083:32583029,28571213:0 -) -(1,23084:6630773,29436293:25952256,513147,134348 -k1,23083:9424661,29436293:245193 -k1,23083:12010572,29436293:244965 -k1,23083:15066375,29436293:244964 -k1,23083:16235398,29436293:244965 -k1,23083:18014561,29436293:244965 -k1,23083:20905214,29436293:244964 -k1,23083:24281489,29436293:244965 -k1,23083:25717898,29436293:244964 -k1,23083:28116376,29436293:244965 -k1,23083:30162269,29436293:244964 -k1,23083:31426319,29436293:244965 -k1,23083:32583029,29436293:0 -) -(1,23084:6630773,30301373:25952256,513147,134348 -k1,23083:9048598,30301373:157488 -k1,23083:9967614,30301373:157488 -k1,23083:11144187,30301373:157488 -k1,23083:12893545,30301373:157488 -k1,23083:15176366,30301373:157488 -k1,23083:15993146,30301373:157488 -k1,23083:17169718,30301373:157487 -k1,23083:20081029,30301373:157488 -k1,23083:21280539,30301373:157488 -k1,23083:24917989,30301373:157488 -k1,23083:25758362,30301373:157488 -k1,23083:28280389,30301373:157488 -k1,23083:29504148,30301373:157488 -k1,23083:32583029,30301373:0 -) -(1,23084:6630773,31166453:25952256,513147,134348 -k1,23083:7918064,31166453:268206 -k1,23083:9768309,31166453:268206 -k1,23083:10486092,31166453:268206 -k1,23083:13565137,31166453:268206 -k1,23083:16916156,31166453:268206 -k1,23083:19406689,31166453:268207 -k1,23083:21475824,31166453:268206 -k1,23083:22275527,31166453:268206 -k1,23083:23314436,31166453:268206 -k1,23083:26405278,31166453:268206 -k1,23083:29826421,31166453:268206 -k1,23083:30722462,31166453:268206 -k1,23083:32583029,31166453:0 -) -(1,23084:6630773,32031533:25952256,513147,134348 -k1,23083:10980253,32031533:286903 -k1,23083:11926448,32031533:286903 -k1,23083:13232436,32031533:286903 -k1,23083:16382608,32031533:286904 -k1,23083:19044536,32031533:286903 -k1,23083:19998595,32031533:286903 -k1,23083:20700253,32031533:286815 -k1,23083:23706245,32031533:286903 -k1,23083:24984708,32031533:286903 -k1,23083:28055581,32031533:286904 -k1,23083:28958522,32031533:286903 -k1,23083:30264510,32031533:286903 -k1,23083:32133452,32031533:286903 -k1,23083:32583029,32031533:0 -) -(1,23084:6630773,32896613:25952256,505283,126483 -g1,23083:9663779,32896613 -g1,23083:12382868,32896613 -k1,23084:32583030,32896613:18346804 -g1,23084:32583030,32896613 -) -] -(1,23097:32583029,45706769:0,0,0 -g1,23097:32583029,45706769 -) -) -] -(1,23097:6630773,47279633:25952256,0,0 -h1,23097:6630773,47279633:25952256,0,0 -) -] -(1,23097:4262630,4025873:0,0,0 -[1,23097:-473656,4025873:0,0,0 -(1,23097:-473656,-710413:0,0,0 -(1,23097:-473656,-710413:0,0,0 -g1,23097:-473656,-710413 -) -g1,23097:-473656,-710413 +k1,17846:29014430,51504789:25935872 +g1,17846:29014430,51504789 +) +] +) +) +) +] +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,49800853:0,16384,2228224 +g1,23095:29030814,49800853 +g1,23095:36135244,49800853 +(1,17846:36135244,49800853:1720320,16384,2228224 +(1,17846:36135244,52029077:16384,1703936,0 +[1,17846:36135244,52029077:25952256,1703936,0 +(1,17846:36135244,51504789:25952256,1179648,0 +(1,17846:36135244,51504789:16384,1179648,0 +r1,23095:36151628,51504789:16384,1179648,0 +) +k1,17846:62087500,51504789:25935872 +g1,17846:62087500,51504789 +) +] +) +g1,17846:36675916,49800853 +(1,17846:36675916,49800853:1179648,16384,0 +r1,23095:37855564,49800853:1179648,16384,0 +) +) +k1,23095:3078556,49800853:-34777008 +) +] +g1,23095:6630773,4812305 +g1,23095:6630773,4812305 +g1,23095:9205682,4812305 +g1,23095:11988340,4812305 +k1,23095:31387652,4812305:19399312 +) +) +] +[1,23095:6630773,45706769:25952256,40108032,0 +(1,23095:6630773,45706769:25952256,40108032,0 +(1,23095:6630773,45706769:0,0,0 +g1,23095:6630773,45706769 +) +[1,23095:6630773,45706769:25952256,40108032,0 +v1,23071:6630773,6254097:0,393216,0 +(1,23071:6630773,12639015:25952256,6778134,196608 +g1,23071:6630773,12639015 +g1,23071:6630773,12639015 +g1,23071:6434165,12639015 +(1,23071:6434165,12639015:0,6778134,196608 +r1,23095:32779637,12639015:26345472,6974742,196608 +k1,23071:6434165,12639015:-26345472 +) +(1,23071:6434165,12639015:26345472,6778134,196608 +[1,23071:6630773,12639015:25952256,6581526,0 +(1,23070:6630773,6465412:25952256,407923,9908 +h1,23070:6630773,6465412:0,0,0 +g1,23070:7626635,6465412 +g1,23070:8290543,6465412 +g1,23070:9286405,6465412 +g1,23070:9618359,6465412 +g1,23070:9950313,6465412 +g1,23070:10282267,6465412 +g1,23070:11278129,6465412 +g1,23070:14265714,6465412 +g1,23070:17585253,6465412 +g1,23070:20572838,6465412 +g1,23070:23892377,6465412 +g1,23070:27543870,6465412 +h1,23070:30863409,6465412:0,0,0 +k1,23070:32583029,6465412:1719620 +g1,23070:32583029,6465412 +) +(1,23070:6630773,7150267:25952256,407923,9908 +h1,23070:6630773,7150267:0,0,0 +g1,23070:7626635,7150267 +g1,23070:8290543,7150267 +g1,23070:8622497,7150267 +g1,23070:9286405,7150267 +g1,23070:9618359,7150267 +g1,23070:9950313,7150267 +g1,23070:10282267,7150267 +g1,23070:10614221,7150267 +g1,23070:11278129,7150267 +g1,23070:14265714,7150267 +g1,23070:17585253,7150267 +g1,23070:20572838,7150267 +g1,23070:23892377,7150267 +g1,23070:27543870,7150267 +h1,23070:30863409,7150267:0,0,0 +k1,23070:32583029,7150267:1719620 +g1,23070:32583029,7150267 +) +(1,23070:6630773,7835122:25952256,407923,9908 +h1,23070:6630773,7835122:0,0,0 +g1,23070:7626635,7835122 +g1,23070:8290543,7835122 +g1,23070:8622497,7835122 +g1,23070:9286405,7835122 +g1,23070:9618359,7835122 +g1,23070:9950313,7835122 +g1,23070:10282267,7835122 +g1,23070:10614221,7835122 +g1,23070:11278129,7835122 +g1,23070:14265714,7835122 +g1,23070:17585253,7835122 +g1,23070:20572838,7835122 +g1,23070:23892377,7835122 +g1,23070:27543870,7835122 +h1,23070:30863409,7835122:0,0,0 +k1,23070:32583029,7835122:1719620 +g1,23070:32583029,7835122 +) +(1,23070:6630773,8519977:25952256,431045,112852 +h1,23070:6630773,8519977:0,0,0 +g1,23070:7626635,8519977 +g1,23070:7958589,8519977 +g1,23070:8290543,8519977 +g1,23070:8622497,8519977 +g1,23070:8954451,8519977 +g1,23070:11942036,8519977 +g1,23070:15925483,8519977 +g1,23070:17917207,8519977 +g1,23070:19908931,8519977 +g1,23070:21568701,8519977 +h1,23070:22896517,8519977:0,0,0 +k1,23070:32583029,8519977:9686512 +g1,23070:32583029,8519977 +) +(1,23070:6630773,9204832:25952256,407923,9908 +h1,23070:6630773,9204832:0,0,0 +g1,23070:7626635,9204832 +g1,23070:8290543,9204832 +g1,23070:11942036,9204832 +g1,23070:12273990,9204832 +g1,23070:12605944,9204832 +g1,23070:12937898,9204832 +g1,23070:13269852,9204832 +g1,23070:13601806,9204832 +g1,23070:13933760,9204832 +g1,23070:15925484,9204832 +g1,23070:16257438,9204832 +g1,23070:16589392,9204832 +g1,23070:16921346,9204832 +g1,23070:17253300,9204832 +g1,23070:17917208,9204832 +g1,23070:18249162,9204832 +g1,23070:18581116,9204832 +g1,23070:18913070,9204832 +g1,23070:19908932,9204832 +g1,23070:20240886,9204832 +g1,23070:20572840,9204832 +g1,23070:20904794,9204832 +g1,23070:21568702,9204832 +g1,23070:21900656,9204832 +g1,23070:22232610,9204832 +g1,23070:22564564,9204832 +h1,23070:22896518,9204832:0,0,0 +k1,23070:32583029,9204832:9686511 +g1,23070:32583029,9204832 +) +(1,23070:6630773,9889687:25952256,407923,9908 +h1,23070:6630773,9889687:0,0,0 +g1,23070:7626635,9889687 +g1,23070:8290543,9889687 +g1,23070:11942036,9889687 +g1,23070:12273990,9889687 +g1,23070:12605944,9889687 +g1,23070:12937898,9889687 +g1,23070:13269852,9889687 +g1,23070:13601806,9889687 +g1,23070:13933760,9889687 +g1,23070:15925484,9889687 +g1,23070:16257438,9889687 +g1,23070:16589392,9889687 +g1,23070:16921346,9889687 +g1,23070:17253300,9889687 +g1,23070:17917208,9889687 +g1,23070:18249162,9889687 +g1,23070:18581116,9889687 +g1,23070:18913070,9889687 +g1,23070:19908932,9889687 +g1,23070:20240886,9889687 +g1,23070:20572840,9889687 +g1,23070:20904794,9889687 +g1,23070:21568702,9889687 +g1,23070:21900656,9889687 +g1,23070:22232610,9889687 +g1,23070:22564564,9889687 +h1,23070:22896518,9889687:0,0,0 +k1,23070:32583029,9889687:9686511 +g1,23070:32583029,9889687 +) +(1,23070:6630773,10574542:25952256,407923,9908 +h1,23070:6630773,10574542:0,0,0 +g1,23070:7626635,10574542 +g1,23070:8290543,10574542 +g1,23070:11942036,10574542 +g1,23070:12273990,10574542 +g1,23070:12605944,10574542 +g1,23070:12937898,10574542 +g1,23070:13269852,10574542 +g1,23070:13601806,10574542 +g1,23070:13933760,10574542 +g1,23070:15925484,10574542 +g1,23070:16257438,10574542 +g1,23070:16589392,10574542 +g1,23070:16921346,10574542 +g1,23070:17253300,10574542 +g1,23070:17917208,10574542 +g1,23070:18249162,10574542 +g1,23070:18581116,10574542 +g1,23070:18913070,10574542 +g1,23070:19908932,10574542 +g1,23070:20240886,10574542 +g1,23070:20572840,10574542 +g1,23070:21568702,10574542 +g1,23070:21900656,10574542 +g1,23070:22232610,10574542 +g1,23070:22564564,10574542 +h1,23070:22896518,10574542:0,0,0 +k1,23070:32583029,10574542:9686511 +g1,23070:32583029,10574542 +) +(1,23070:6630773,11259397:25952256,407923,9908 +h1,23070:6630773,11259397:0,0,0 +g1,23070:7626635,11259397 +g1,23070:8290543,11259397 +g1,23070:11942036,11259397 +g1,23070:12273990,11259397 +g1,23070:12605944,11259397 +g1,23070:12937898,11259397 +g1,23070:13269852,11259397 +g1,23070:13601806,11259397 +g1,23070:13933760,11259397 +g1,23070:15925484,11259397 +g1,23070:16257438,11259397 +g1,23070:16589392,11259397 +g1,23070:16921346,11259397 +g1,23070:17253300,11259397 +g1,23070:17917208,11259397 +g1,23070:18249162,11259397 +g1,23070:18581116,11259397 +g1,23070:18913070,11259397 +g1,23070:19908932,11259397 +g1,23070:20240886,11259397 +g1,23070:20572840,11259397 +g1,23070:21568702,11259397 +g1,23070:21900656,11259397 +g1,23070:22232610,11259397 +g1,23070:22564564,11259397 +h1,23070:22896518,11259397:0,0,0 +k1,23070:32583029,11259397:9686511 +g1,23070:32583029,11259397 +) +(1,23070:6630773,11944252:25952256,407923,9908 +h1,23070:6630773,11944252:0,0,0 +g1,23070:7626635,11944252 +g1,23070:8290543,11944252 +g1,23070:11942036,11944252 +g1,23070:12273990,11944252 +g1,23070:12605944,11944252 +g1,23070:12937898,11944252 +g1,23070:13269852,11944252 +g1,23070:13601806,11944252 +g1,23070:13933760,11944252 +g1,23070:15925484,11944252 +g1,23070:16257438,11944252 +g1,23070:16589392,11944252 +g1,23070:16921346,11944252 +g1,23070:17253300,11944252 +g1,23070:17917208,11944252 +g1,23070:18249162,11944252 +g1,23070:18581116,11944252 +g1,23070:18913070,11944252 +g1,23070:19908932,11944252 +g1,23070:20240886,11944252 +g1,23070:20572840,11944252 +g1,23070:20904794,11944252 +g1,23070:21568702,11944252 +g1,23070:21900656,11944252 +g1,23070:22232610,11944252 +g1,23070:22564564,11944252 +h1,23070:22896518,11944252:0,0,0 +k1,23070:32583029,11944252:9686511 +g1,23070:32583029,11944252 +) +(1,23070:6630773,12629107:25952256,407923,9908 +h1,23070:6630773,12629107:0,0,0 +g1,23070:7626635,12629107 +g1,23070:8290543,12629107 +g1,23070:11942036,12629107 +g1,23070:12273990,12629107 +g1,23070:12605944,12629107 +g1,23070:12937898,12629107 +g1,23070:13269852,12629107 +g1,23070:13601806,12629107 +g1,23070:13933760,12629107 +g1,23070:15925484,12629107 +g1,23070:16257438,12629107 +g1,23070:16589392,12629107 +g1,23070:16921346,12629107 +g1,23070:17253300,12629107 +g1,23070:17917208,12629107 +g1,23070:18249162,12629107 +g1,23070:18581116,12629107 +g1,23070:18913070,12629107 +g1,23070:19908932,12629107 +g1,23070:20240886,12629107 +g1,23070:20572840,12629107 +g1,23070:20904794,12629107 +g1,23070:21568702,12629107 +g1,23070:21900656,12629107 +g1,23070:22232610,12629107 +g1,23070:22564564,12629107 +h1,23070:22896518,12629107:0,0,0 +k1,23070:32583029,12629107:9686511 +g1,23070:32583029,12629107 +) +] +) +g1,23071:32583029,12639015 +g1,23071:6630773,12639015 +g1,23071:6630773,12639015 +g1,23071:32583029,12639015 +g1,23071:32583029,12639015 +) +h1,23071:6630773,12835623:0,0,0 +(1,23074:6630773,21984825:25952256,9083666,0 +k1,23074:10523651,21984825:3892878 +h1,23073:10523651,21984825:0,0,0 +(1,23073:10523651,21984825:18166500,9083666,0 +(1,23073:10523651,21984825:18167376,9083688,0 +(1,23073:10523651,21984825:18167376,9083688,0 +(1,23073:10523651,21984825:0,9083688,0 +(1,23073:10523651,21984825:0,14208860,0 +(1,23073:10523651,21984825:28417720,14208860,0 +) +k1,23073:10523651,21984825:-28417720 +) +) +g1,23073:28691027,21984825 +) +) +) +g1,23074:28690151,21984825 +k1,23074:32583029,21984825:3892878 +) +(1,23080:6630773,24815985:25952256,32768,229376 +(1,23080:6630773,24815985:0,32768,229376 +(1,23080:6630773,24815985:5505024,32768,229376 +r1,23095:12135797,24815985:5505024,262144,229376 +) +k1,23080:6630773,24815985:-5505024 +) +(1,23080:6630773,24815985:25952256,32768,0 +r1,23095:32583029,24815985:25952256,32768,0 +) +) +(1,23080:6630773,26447837:25952256,606339,161218 +(1,23080:6630773,26447837:2464678,582746,14155 +g1,23080:6630773,26447837 +g1,23080:9095451,26447837 +) +g1,23080:12303307,26447837 +k1,23080:32583029,26447837:17080516 +g1,23080:32583029,26447837 +) +(1,23082:6630773,27706133:25952256,513147,134348 +k1,23081:7692566,27706133:183610 +k1,23081:10565774,27706133:183610 +k1,23081:14121211,27706133:183610 +k1,23081:14964113,27706133:183610 +k1,23081:16166808,27706133:183610 +k1,23081:18102195,27706133:183610 +k1,23081:21688434,27706133:183610 +k1,23081:22523472,27706133:183610 +k1,23081:25287234,27706133:183610 +k1,23081:28299377,27706133:183610 +k1,23081:29014484,27706133:183610 +k1,23081:31563944,27706133:183610 +k1,23081:32583029,27706133:0 +) +(1,23082:6630773,28571213:25952256,513147,134348 +k1,23081:8746124,28571213:288863 +k1,23081:9694278,28571213:288862 +k1,23081:11186382,28571213:288863 +k1,23081:13230954,28571213:288862 +k1,23081:15776222,28571213:288863 +k1,23081:17977425,28571213:288862 +k1,23081:20935569,28571213:288863 +k1,23081:21840469,28571213:288862 +k1,23081:23916499,28571213:288863 +k1,23081:25224446,28571213:288862 +k1,23081:26605794,28571213:288863 +k1,23081:27553949,28571213:288863 +k1,23081:30845014,28571213:288862 +k1,23081:32583029,28571213:0 +) +(1,23082:6630773,29436293:25952256,513147,134348 +k1,23081:9424661,29436293:245193 +k1,23081:12010572,29436293:244965 +k1,23081:15066375,29436293:244964 +k1,23081:16235398,29436293:244965 +k1,23081:18014561,29436293:244965 +k1,23081:20905214,29436293:244964 +k1,23081:24281489,29436293:244965 +k1,23081:25717898,29436293:244964 +k1,23081:28116376,29436293:244965 +k1,23081:30162269,29436293:244964 +k1,23081:31426319,29436293:244965 +k1,23081:32583029,29436293:0 +) +(1,23082:6630773,30301373:25952256,513147,134348 +k1,23081:9048598,30301373:157488 +k1,23081:9967614,30301373:157488 +k1,23081:11144187,30301373:157488 +k1,23081:12893545,30301373:157488 +k1,23081:15176366,30301373:157488 +k1,23081:15993146,30301373:157488 +k1,23081:17169718,30301373:157487 +k1,23081:20081029,30301373:157488 +k1,23081:21280539,30301373:157488 +k1,23081:24917989,30301373:157488 +k1,23081:25758362,30301373:157488 +k1,23081:28280389,30301373:157488 +k1,23081:29504148,30301373:157488 +k1,23081:32583029,30301373:0 +) +(1,23082:6630773,31166453:25952256,513147,134348 +k1,23081:7918064,31166453:268206 +k1,23081:9768309,31166453:268206 +k1,23081:10486092,31166453:268206 +k1,23081:13565137,31166453:268206 +k1,23081:16916156,31166453:268206 +k1,23081:19406689,31166453:268207 +k1,23081:21475824,31166453:268206 +k1,23081:22275527,31166453:268206 +k1,23081:23314436,31166453:268206 +k1,23081:26405278,31166453:268206 +k1,23081:29826421,31166453:268206 +k1,23081:30722462,31166453:268206 +k1,23081:32583029,31166453:0 +) +(1,23082:6630773,32031533:25952256,513147,134348 +k1,23081:10980253,32031533:286903 +k1,23081:11926448,32031533:286903 +k1,23081:13232436,32031533:286903 +k1,23081:16382608,32031533:286904 +k1,23081:19044536,32031533:286903 +k1,23081:19998595,32031533:286903 +k1,23081:20700253,32031533:286815 +k1,23081:23706245,32031533:286903 +k1,23081:24984708,32031533:286903 +k1,23081:28055581,32031533:286904 +k1,23081:28958522,32031533:286903 +k1,23081:30264510,32031533:286903 +k1,23081:32133452,32031533:286903 +k1,23081:32583029,32031533:0 +) +(1,23082:6630773,32896613:25952256,505283,126483 +g1,23081:9663779,32896613 +g1,23081:12382868,32896613 +k1,23082:32583030,32896613:18346804 +g1,23082:32583030,32896613 +) +] +(1,23095:32583029,45706769:0,0,0 +g1,23095:32583029,45706769 +) +) +] +(1,23095:6630773,47279633:25952256,0,0 +h1,23095:6630773,47279633:25952256,0,0 +) +] +(1,23095:4262630,4025873:0,0,0 +[1,23095:-473656,4025873:0,0,0 +(1,23095:-473656,-710413:0,0,0 +(1,23095:-473656,-710413:0,0,0 +g1,23095:-473656,-710413 +) +g1,23095:-473656,-710413 ) ] ) ] !15417 -}396 +}397 !12 -{397 -[1,23097:4262630,47279633:28320399,43253760,0 -(1,23097:4262630,4025873:0,0,0 -[1,23097:-473656,4025873:0,0,0 -(1,23097:-473656,-710413:0,0,0 -(1,23097:-473656,-644877:0,0,0 -k1,23097:-473656,-644877:-65536 +{398 +[1,23095:4262630,47279633:28320399,43253760,0 +(1,23095:4262630,4025873:0,0,0 +[1,23095:-473656,4025873:0,0,0 +(1,23095:-473656,-710413:0,0,0 +(1,23095:-473656,-644877:0,0,0 +k1,23095:-473656,-644877:-65536 ) -(1,23097:-473656,4736287:0,0,0 -k1,23097:-473656,4736287:5209943 +(1,23095:-473656,4736287:0,0,0 +k1,23095:-473656,4736287:5209943 ) -g1,23097:-473656,-710413 +g1,23095:-473656,-710413 ) ] ) -[1,23097:6630773,47279633:25952256,43253760,0 -[1,23097:6630773,4812305:25952256,786432,0 -(1,23097:6630773,4812305:25952256,0,0 -(1,23097:6630773,4812305:25952256,0,0 -g1,23097:3078558,4812305 -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,2439708:0,1703936,0 -k1,23097:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23097:2537886,2439708:1179648,16384,0 +[1,23095:6630773,47279633:25952256,43253760,0 +[1,23095:6630773,4812305:25952256,786432,0 +(1,23095:6630773,4812305:25952256,0,0 +(1,23095:6630773,4812305:25952256,0,0 +g1,23095:3078558,4812305 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,2439708:0,1703936,0 +k1,23095:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23095:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23097:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23095:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,2439708:0,1703936,0 -g1,23097:29030814,2439708 -g1,23097:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23097:36151628,1915420:16384,1179648,0 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,2439708:0,1703936,0 +g1,23095:29030814,2439708 +g1,23095:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23095:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23097:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23095:37855564,2439708:1179648,16384,0 ) ) -k1,23097:3078556,2439708:-34777008 +k1,23095:3078556,2439708:-34777008 ) ] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,49800853:0,16384,2228224 -k1,23097:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23097:2537886,49800853:1179648,16384,0 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,49800853:0,16384,2228224 +k1,23095:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23095:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23097:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23095:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23097:3078558,4812305:0,0,0 -(1,23097:3078558,49800853:0,16384,2228224 -g1,23097:29030814,49800853 -g1,23097:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23097:36151628,51504789:16384,1179648,0 +[1,23095:3078558,4812305:0,0,0 +(1,23095:3078558,49800853:0,16384,2228224 +g1,23095:29030814,49800853 +g1,23095:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23095:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23097:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23095:37855564,49800853:1179648,16384,0 ) ) -k1,23097:3078556,49800853:-34777008 +k1,23095:3078556,49800853:-34777008 ) ] -g1,23097:6630773,4812305 +g1,23095:6630773,4812305 ) ) ] -[1,23097:6630773,45706769:0,40108032,0 -(1,23097:6630773,45706769:0,40108032,0 -(1,23097:6630773,45706769:0,0,0 -g1,23097:6630773,45706769 +[1,23095:6630773,45706769:0,40108032,0 +(1,23095:6630773,45706769:0,40108032,0 +(1,23095:6630773,45706769:0,0,0 +g1,23095:6630773,45706769 ) -[1,23097:6630773,45706769:0,40108032,0 -h1,23097:6630773,6254097:0,0,0 +[1,23095:6630773,45706769:0,40108032,0 +h1,23095:6630773,6254097:0,0,0 ] -(1,23097:6630773,45706769:0,0,0 -g1,23097:6630773,45706769 +(1,23095:6630773,45706769:0,0,0 +g1,23095:6630773,45706769 ) ) ] -(1,23097:6630773,47279633:25952256,0,0 -h1,23097:6630773,47279633:25952256,0,0 +(1,23095:6630773,47279633:25952256,0,0 +h1,23095:6630773,47279633:25952256,0,0 ) ] -(1,23097:4262630,4025873:0,0,0 -[1,23097:-473656,4025873:0,0,0 -(1,23097:-473656,-710413:0,0,0 -(1,23097:-473656,-710413:0,0,0 -g1,23097:-473656,-710413 +(1,23095:4262630,4025873:0,0,0 +[1,23095:-473656,4025873:0,0,0 +(1,23095:-473656,-710413:0,0,0 +(1,23095:-473656,-710413:0,0,0 +g1,23095:-473656,-710413 ) -g1,23097:-473656,-710413 +g1,23095:-473656,-710413 ) ] ) ] !3399 -}397 -Input:4358:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4359:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4360:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4361:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}398 +Input:4362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !379 -{398 -[1,23117:4262630,47279633:28320399,43253760,11795 -(1,23117:4262630,4025873:0,0,0 -[1,23117:-473656,4025873:0,0,0 -(1,23117:-473656,-710413:0,0,0 -(1,23117:-473656,-644877:0,0,0 -k1,23117:-473656,-644877:-65536 +{399 +[1,23115:4262630,47279633:28320399,43253760,11795 +(1,23115:4262630,4025873:0,0,0 +[1,23115:-473656,4025873:0,0,0 +(1,23115:-473656,-710413:0,0,0 +(1,23115:-473656,-644877:0,0,0 +k1,23115:-473656,-644877:-65536 ) -(1,23117:-473656,4736287:0,0,0 -k1,23117:-473656,4736287:5209943 +(1,23115:-473656,4736287:0,0,0 +k1,23115:-473656,4736287:5209943 ) -g1,23117:-473656,-710413 +g1,23115:-473656,-710413 ) ] ) -[1,23117:6630773,47279633:25952256,43253760,11795 -[1,23117:6630773,4812305:25952256,786432,0 -(1,23117:6630773,4812305:25952256,0,0 -(1,23117:6630773,4812305:25952256,0,0 -g1,23117:3078558,4812305 -[1,23117:3078558,4812305:0,0,0 -(1,23117:3078558,2439708:0,1703936,0 -k1,23117:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23117:2537886,2439708:1179648,16384,0 +[1,23115:6630773,47279633:25952256,43253760,11795 +[1,23115:6630773,4812305:25952256,786432,0 +(1,23115:6630773,4812305:25952256,0,0 +(1,23115:6630773,4812305:25952256,0,0 +g1,23115:3078558,4812305 +[1,23115:3078558,4812305:0,0,0 +(1,23115:3078558,2439708:0,1703936,0 +k1,23115:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23115:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23117:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23115:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23117:3078558,4812305:0,0,0 -(1,23117:3078558,2439708:0,1703936,0 -g1,23117:29030814,2439708 -g1,23117:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23117:36151628,1915420:16384,1179648,0 +[1,23115:3078558,4812305:0,0,0 +(1,23115:3078558,2439708:0,1703936,0 +g1,23115:29030814,2439708 +g1,23115:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23115:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23117:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23115:37855564,2439708:1179648,16384,0 ) ) -k1,23117:3078556,2439708:-34777008 +k1,23115:3078556,2439708:-34777008 ) ] -[1,23117:3078558,4812305:0,0,0 -(1,23117:3078558,49800853:0,16384,2228224 -k1,23117:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23117:2537886,49800853:1179648,16384,0 +[1,23115:3078558,4812305:0,0,0 +(1,23115:3078558,49800853:0,16384,2228224 +k1,23115:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23115:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23117:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23115:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23117:3078558,4812305:0,0,0 -(1,23117:3078558,49800853:0,16384,2228224 -g1,23117:29030814,49800853 -g1,23117:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23117:36151628,51504789:16384,1179648,0 +[1,23115:3078558,4812305:0,0,0 +(1,23115:3078558,49800853:0,16384,2228224 +g1,23115:29030814,49800853 +g1,23115:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23115:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23117:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23115:37855564,49800853:1179648,16384,0 ) ) -k1,23117:3078556,49800853:-34777008 +k1,23115:3078556,49800853:-34777008 ) ] -g1,23117:6630773,4812305 +g1,23115:6630773,4812305 ) ) ] -[1,23117:6630773,45706769:25952256,40108032,0 -(1,23117:6630773,45706769:25952256,40108032,0 -(1,23117:6630773,45706769:0,0,0 -g1,23117:6630773,45706769 +[1,23115:6630773,45706769:25952256,40108032,0 +(1,23115:6630773,45706769:25952256,40108032,0 +(1,23115:6630773,45706769:0,0,0 +g1,23115:6630773,45706769 ) -[1,23117:6630773,45706769:25952256,40108032,0 -[1,23097:6630773,11797421:25952256,6198684,0 -(1,23097:6630773,6633157:25952256,1165492,28311 -h1,23097:6582014,6633157:0,0,0 -k1,23097:20562416,6633157:12020613 -k1,23097:32583029,6633157:12020613 +[1,23115:6630773,45706769:25952256,40108032,0 +[1,23095:6630773,11797421:25952256,6198684,0 +(1,23095:6630773,6633157:25952256,1165492,28311 +h1,23095:6582014,6633157:0,0,0 +k1,23095:20562416,6633157:12020613 +k1,23095:32583029,6633157:12020613 ) -(1,23097:6630773,7380277:25952256,32768,229376 -(1,23097:6630773,7380277:0,32768,229376 -(1,23097:6630773,7380277:5505024,32768,229376 -r1,23117:12135797,7380277:5505024,262144,229376 +(1,23095:6630773,7380277:25952256,32768,229376 +(1,23095:6630773,7380277:0,32768,229376 +(1,23095:6630773,7380277:5505024,32768,229376 +r1,23115:12135797,7380277:5505024,262144,229376 ) -k1,23097:6630773,7380277:-5505024 +k1,23095:6630773,7380277:-5505024 ) -(1,23097:6630773,7380277:25952256,32768,0 -r1,23117:32583029,7380277:25952256,32768,0 +(1,23095:6630773,7380277:25952256,32768,0 +r1,23115:32583029,7380277:25952256,32768,0 ) ) -(1,23097:6630773,9215293:25952256,909509,241827 -h1,23097:6630773,9215293:0,0,0 -g1,23097:9551582,9215293 -g1,23097:10655733,9215293 -g1,23097:13193156,9215293 -g1,23097:19695376,9215293 -g1,23097:22815545,9215293 -k1,23097:29928822,9215293:2654207 -k1,23097:32583029,9215293:2654207 +(1,23095:6630773,9215293:25952256,909509,241827 +h1,23095:6630773,9215293:0,0,0 +g1,23095:9551582,9215293 +g1,23095:10655733,9215293 +g1,23095:13193156,9215293 +g1,23095:19695376,9215293 +g1,23095:22815545,9215293 +k1,23095:29928822,9215293:2654207 +k1,23095:32583029,9215293:2654207 ) -(1,23097:6630773,9962413:25952256,32768,0 -(1,23097:6630773,9962413:5505024,32768,0 -r1,23117:12135797,9962413:5505024,32768,0 +(1,23095:6630773,9962413:25952256,32768,0 +(1,23095:6630773,9962413:5505024,32768,0 +r1,23115:12135797,9962413:5505024,32768,0 ) -k1,23097:22359413,9962413:10223616 -k1,23097:32583029,9962413:10223616 -) -] -(1,23099:6630773,14713778:25952256,131072,0 -r1,23117:32583029,14713778:25952256,131072,0 -g1,23099:32583029,14713778 -g1,23099:32583029,14713778 -) -(1,23101:6630773,16057271:25952256,505283,134348 -k1,23101:8596853,16057271:1966080 -k1,23100:10298969,16057271:156777 -k1,23100:14783743,16057271:156776 -k1,23100:16415735,16057271:156777 -k1,23100:18012337,16057271:156776 -k1,23100:19981840,16057271:156777 -k1,23100:21330061,16057271:156776 -k1,23100:23088538,16057271:156777 -k1,23100:24829319,16057271:156776 -k1,23100:29314094,16057271:156777 -k1,23101:32583029,16057271:1966080 -) -(1,23101:6630773,16922351:25952256,505283,134348 -k1,23101:8596853,16922351:1966080 -k1,23100:9684155,16922351:208464 -k1,23100:12150989,16922351:208463 -k1,23100:14646004,16922351:208464 -k1,23100:15467230,16922351:208464 -k1,23100:17171226,16922351:208464 -k1,23100:18710070,16922351:208463 -k1,23100:20476325,16922351:208464 -k1,23100:21676349,16922351:208464 -k1,23100:23609721,16922351:208464 -k1,23100:25980872,16922351:208463 -k1,23100:27544621,16922351:208464 -k1,23100:32583029,16922351:1966080 -) -(1,23101:6630773,17787431:25952256,513147,134348 -g1,23101:8596853,17787431 -g1,23100:10080588,17787431 -g1,23100:12460200,17787431 -g1,23100:14134644,17787431 -g1,23100:15843823,17787431 -g1,23100:17901653,17787431 -g1,23100:19931303,17787431 -g1,23100:22991834,17787431 -k1,23101:30616949,17787431:4500359 -g1,23101:32583029,17787431 -) -(1,23102:6630773,19438943:25952256,505283,126483 -k1,23102:26617289,19438943:19986516 -h1,23102:26603526,19438943:0,0,0 -g1,23102:28303529,19438943 -g1,23102:30616950,19438943 -g1,23102:32583030,19438943 -) -(1,23103:6630773,20304023:25952256,505283,134348 -k1,23103:22157562,20304023:15526789 -h1,23102:22157562,20304023:0,0,0 -g1,23102:26747048,20304023 -g1,23102:29023113,20304023 -g1,23103:30616949,20304023 -g1,23103:32583029,20304023 -) -(1,23103:6630773,21562319:25952256,131072,0 -r1,23117:32583029,21562319:25952256,131072,0 -g1,23103:32583029,21562319 -g1,23103:34549109,21562319 -) -(1,23107:6630773,24393479:25952256,32768,229376 -(1,23107:6630773,24393479:0,32768,229376 -(1,23107:6630773,24393479:5505024,32768,229376 -r1,23117:12135797,24393479:5505024,262144,229376 -) -k1,23107:6630773,24393479:-5505024 -) -(1,23107:6630773,24393479:25952256,32768,0 -r1,23117:32583029,24393479:25952256,32768,0 -) -) -(1,23107:6630773,26025331:25952256,615776,151780 -(1,23107:6630773,26025331:2464678,582746,14155 -g1,23107:6630773,26025331 -g1,23107:9095451,26025331 -) -g1,23107:11394192,26025331 -g1,23107:12451943,26025331 -g1,23107:14440830,26025331 -k1,23107:32583029,26025331:15025569 -g1,23107:32583029,26025331 -) -(1,23110:6630773,27283627:25952256,513147,134348 -k1,23109:8258568,27283627:195178 -k1,23109:8868586,27283627:195175 -k1,23109:10255209,27283627:195178 -k1,23109:11469472,27283627:195178 -k1,23109:16219403,27283627:195179 -k1,23109:19325035,27283627:195178 -k1,23109:22464747,27283627:195179 -k1,23109:23421453,27283627:195178 -k1,23109:26089304,27283627:195178 -k1,23109:28622152,27283627:195179 -k1,23109:31048831,27283627:195178 -k1,23110:32583029,27283627:0 -) -(1,23110:6630773,28148707:25952256,513147,134348 -k1,23109:8363938,28148707:135397 -k1,23109:9446986,28148707:135397 -k1,23109:12754326,28148707:135397 -k1,23109:14081168,28148707:135397 -k1,23109:17279718,28148707:135397 -k1,23109:18978149,28148707:135397 -k1,23109:22965097,28148707:135397 -k1,23109:26010948,28148707:135397 -k1,23109:28576420,28148707:135397 -k1,23109:30178513,28148707:135397 -k1,23110:32583029,28148707:0 -) -(1,23110:6630773,29013787:25952256,513147,126483 -k1,23109:8791058,29013787:190928 -k1,23109:9929637,29013787:190928 -k1,23109:11812705,29013787:190928 -k1,23109:12662925,29013787:190928 -k1,23109:14550580,29013787:190928 -k1,23109:17767305,29013787:190928 -k1,23109:19149678,29013787:190928 -k1,23109:21867019,29013787:190928 -k1,23109:23005598,29013787:190928 -k1,23109:25428027,29013787:190928 -k1,23109:28845948,29013787:190928 -k1,23109:30019916,29013787:190928 -k1,23109:32583029,29013787:0 -) -(1,23110:6630773,29878867:25952256,505283,134348 -k1,23109:7455122,29878867:196514 -k1,23109:8670722,29878867:196515 -k1,23109:11273063,29878867:196514 -k1,23109:14060871,29878867:196514 -k1,23109:14470375,29878867:196512 -k1,23109:15843916,29878867:196514 -k1,23109:16653193,29878867:196515 -k1,23109:20161897,29878867:196514 -k1,23109:21825107,29878867:196514 -k1,23109:23410985,29878867:196515 -k1,23109:25316023,29878867:196514 -k1,23109:26703982,29878867:196514 -k1,23109:29059253,29878867:196515 -k1,23109:31966991,29878867:196514 -k1,23109:32583029,29878867:0 -) -(1,23110:6630773,30743947:25952256,513147,134348 -g1,23109:8617169,30743947 -g1,23109:10191999,30743947 -g1,23109:11410313,30743947 -g1,23109:13211242,30743947 -g1,23109:16187887,30743947 -g1,23109:19272666,30743947 -g1,23109:20861258,30743947 -g1,23109:23571171,30743947 -g1,23109:25721407,30743947 -g1,23109:26986907,30743947 -g1,23109:29119448,30743947 -g1,23109:29970105,30743947 -k1,23110:32583029,30743947:1938559 -g1,23110:32583029,30743947 -) -(1,23112:6630773,31609027:25952256,513147,134348 -h1,23111:6630773,31609027:983040,0,0 -k1,23111:9338491,31609027:252739 -k1,23111:10574269,31609027:252738 -k1,23111:13337692,31609027:252739 -k1,23111:14874936,31609027:252738 -k1,23111:16119235,31609027:252739 -k1,23111:18657213,31609027:252738 -k1,23111:19561380,31609027:252739 -k1,23111:20228908,31609027:252685 -k1,23111:21473206,31609027:252738 -k1,23111:22792216,31609027:252739 -k1,23111:25174219,31609027:252738 -k1,23111:26705565,31609027:252739 -k1,23111:29513552,31609027:252738 -k1,23111:32124932,31609027:252739 -k1,23111:32583029,31609027:0 -) -(1,23112:6630773,32474107:25952256,513147,134348 -k1,23111:9922777,32474107:182976 -k1,23111:10757182,32474107:182977 -k1,23111:16194835,32474107:182976 -k1,23111:17396896,32474107:182976 -k1,23111:21021167,32474107:182976 -k1,23111:23502492,32474107:182977 -k1,23111:24336896,32474107:182976 -k1,23111:25932173,32474107:182976 -k1,23111:27927876,32474107:182977 -k1,23111:29985182,32474107:182976 -k1,23111:32583029,32474107:0 -) -(1,23112:6630773,33339187:25952256,513147,134348 -k1,23111:8317317,33339187:219848 -k1,23111:10235203,33339187:219848 -k1,23111:12551548,33339187:219848 -k1,23111:15326645,33339187:219848 -k1,23111:16883427,33339187:219848 -k1,23111:17851041,33339187:219848 -k1,23111:20708058,33339187:219848 -k1,23111:21689434,33339187:219848 -k1,23111:22928367,33339187:219848 -k1,23111:26607205,33339187:219848 -k1,23111:27486345,33339187:219848 -k1,23111:28725278,33339187:219848 -k1,23111:31230366,33339187:219848 -k1,23112:32583029,33339187:0 -) -(1,23112:6630773,34204267:25952256,513147,134348 -k1,23111:8265787,34204267:148657 -k1,23111:9698950,34204267:148657 -k1,23111:11792716,34204267:148657 -k1,23111:12960458,34204267:148657 -k1,23111:14596127,34204267:148657 -k1,23111:19265458,34204267:148657 -k1,23111:22897355,34204267:148658 -k1,23111:25805078,34204267:148657 -k1,23111:26605163,34204267:148657 -k1,23111:28166121,34204267:148657 -k1,23111:29506223,34204267:148657 -k1,23111:31269687,34204267:148657 -k1,23111:32583029,34204267:0 -) -(1,23112:6630773,35069347:25952256,513147,134348 -k1,23111:8578831,35069347:212665 -k1,23111:11076736,35069347:212665 -k1,23111:13800086,35069347:212666 -k1,23111:15117033,35069347:212665 -k1,23111:17130627,35069347:212665 -k1,23111:19186164,35069347:212665 -k1,23111:20014868,35069347:212666 -k1,23111:21789911,35069347:212665 -k1,23111:24165264,35069347:212665 -k1,23111:25569374,35069347:212665 -k1,23111:27137325,35069347:212666 -k1,23111:27764820,35069347:212652 -k1,23111:30312533,35069347:212665 -k1,23111:31478747,35069347:212665 -k1,23111:32583029,35069347:0 -) -(1,23112:6630773,35934427:25952256,513147,134348 -k1,23111:8137683,35934427:221094 -k1,23111:11877406,35934427:221095 -k1,23111:13713307,35934427:221094 -k1,23111:15430589,35934427:221095 -k1,23111:16936189,35934427:221094 -k1,23111:19444491,35934427:221095 -k1,23111:21592343,35934427:221094 -k1,23111:22885607,35934427:221095 -k1,23111:26992331,35934427:221094 -k1,23111:28570677,35934427:221095 -k1,23111:30185722,35934427:221094 -k1,23111:32583029,35934427:0 -) -(1,23112:6630773,36799507:25952256,513147,126483 -k1,23111:8347816,36799507:230031 -k1,23111:9260733,36799507:230032 -k1,23111:10957460,36799507:230031 -k1,23111:13242700,36799507:230031 -k1,23111:17358361,36799507:230031 -k1,23111:19910334,36799507:230032 -k1,23111:22867973,36799507:230031 -k1,23111:24117089,36799507:230031 -k1,23111:27296895,36799507:230031 -k1,23111:29089961,36799507:230032 -k1,23111:30516679,36799507:230031 -k1,23111:31923737,36799507:230031 -k1,23111:32583029,36799507:0 -) -(1,23112:6630773,37664587:25952256,513147,134348 -k1,23111:8017951,37664587:183937 -k1,23111:10619512,37664587:183938 -k1,23111:11334946,37664587:183937 -k1,23111:12170312,37664587:183938 -k1,23111:14784324,37664587:183937 -k1,23111:17830875,37664587:183938 -k1,23111:18962463,37664587:183937 -k1,23111:21402806,37664587:183938 -k1,23111:24612540,37664587:183937 -k1,23111:25744129,37664587:183938 -k1,23111:28330616,37664587:183937 -k1,23111:29903917,37664587:183938 -k1,23111:32583029,37664587:0 -) -(1,23112:6630773,38529667:25952256,513147,134348 -k1,23111:8591133,38529667:224967 -k1,23111:11101340,38529667:224967 -k1,23111:14010663,38529667:224968 -k1,23111:16946854,38529667:224967 -k1,23111:18638517,38529667:224967 -k1,23111:20297412,38529667:224967 -k1,23111:21110892,38529667:224967 -k1,23111:24316436,38529667:224967 -k1,23111:25560489,38529667:224968 -k1,23111:28412794,38529667:224967 -k1,23111:31391584,38529667:224967 -k1,23111:32583029,38529667:0 -) -(1,23112:6630773,39394747:25952256,513147,134348 -g1,23111:11403104,39394747 -g1,23111:15331987,39394747 -g1,23111:18615340,39394747 -g1,23111:20333038,39394747 -g1,23111:23558064,39394747 -g1,23111:24748853,39394747 -g1,23111:26226689,39394747 -g1,23111:28385444,39394747 -g1,23111:29267558,39394747 -k1,23112:32583029,39394747:342103 -g1,23112:32583029,39394747 -) -(1,23114:6630773,40259827:25952256,513147,134348 -h1,23113:6630773,40259827:983040,0,0 -k1,23113:8415537,40259827:173889 -k1,23113:9792666,40259827:173888 -k1,23113:12384178,40259827:173889 -k1,23113:13728540,40259827:173889 -k1,23113:15034891,40259827:173889 -k1,23113:18579951,40259827:173888 -k1,23113:21360207,40259827:173889 -k1,23113:22928047,40259827:173889 -k1,23113:24432317,40259827:173889 -k1,23113:25257633,40259827:173888 -k1,23113:28384574,40259827:173889 -k1,23113:29947826,40259827:173889 -k1,23114:32583029,40259827:0 -) -(1,23114:6630773,41124907:25952256,513147,126483 -k1,23113:7336746,41124907:291130 -k1,23113:8819414,41124907:291223 -k1,23113:10812606,41124907:291222 -k1,23113:15168372,41124907:291223 -k1,23113:16656282,41124907:291223 -k1,23113:19973301,41124907:291222 -(1,23113:19973301,41124907:0,452978,115847 -r1,23117:22090126,41124907:2116825,568825,115847 -k1,23113:19973301,41124907:-2116825 -) -(1,23113:19973301,41124907:2116825,452978,115847 -k1,23113:19973301,41124907:3277 -h1,23113:22086849,41124907:0,411205,112570 -) -k1,23113:22381349,41124907:291223 -k1,23113:23864016,41124907:291222 -(1,23113:23864016,41124907:0,452978,115847 -r1,23117:25980841,41124907:2116825,568825,115847 -k1,23113:23864016,41124907:-2116825 -) -(1,23113:23864016,41124907:2116825,452978,115847 -k1,23113:23864016,41124907:3277 -h1,23113:25977564,41124907:0,411205,112570 -) -k1,23113:26445734,41124907:291223 -k1,23113:27928401,41124907:291222 -(1,23113:27928401,41124907:0,452978,115847 -r1,23117:31100361,41124907:3171960,568825,115847 -k1,23113:27928401,41124907:-3171960 -) -(1,23113:27928401,41124907:3171960,452978,115847 -k1,23113:27928401,41124907:3277 -h1,23113:31097084,41124907:0,411205,112570 -) -k1,23113:31391584,41124907:291223 -k1,23114:32583029,41124907:0 -) -(1,23114:6630773,41989987:25952256,513147,115847 -(1,23113:6630773,41989987:0,452978,115847 -r1,23117:9802733,41989987:3171960,568825,115847 -k1,23113:6630773,41989987:-3171960 -) -(1,23113:6630773,41989987:3171960,452978,115847 -k1,23113:6630773,41989987:3277 -h1,23113:9799456,41989987:0,411205,112570 -) -k1,23113:10195105,41989987:218702 -k1,23113:11179922,41989987:218701 -k1,23113:12057916,41989987:218702 -k1,23113:14162089,41989987:218702 -k1,23113:15771464,41989987:218701 -k1,23113:17181611,41989987:218702 -k1,23113:18812614,41989987:218702 -k1,23113:20420678,41989987:218701 -k1,23113:21255418,41989987:218702 -k1,23113:22392934,41989987:218701 -k1,23113:24544948,41989987:218702 -k1,23113:27448005,41989987:218702 -k1,23113:28658266,41989987:218701 -k1,23113:31966991,41989987:218702 -k1,23113:32583029,41989987:0 -) -(1,23114:6630773,42855067:25952256,505283,134348 -g1,23113:9438990,42855067 -h1,23113:10981708,42855067:0,0,0 -g1,23113:11180937,42855067 -g1,23113:12571611,42855067 -h1,23113:14114329,42855067:0,0,0 -g1,23113:14313558,42855067 -g1,23113:16991359,42855067 -g1,23113:17999958,42855067 -g1,23113:19697340,42855067 -h1,23113:20892717,42855067:0,0,0 -k1,23114:32583029,42855067:11637884 -g1,23114:32583029,42855067 -) -v1,23116:6630773,43720147:0,393216,0 -(1,23117:6630773,45080752:25952256,1753821,0 -g1,23117:6630773,45080752 -g1,23117:6237557,45080752 -r1,23117:6368629,45080752:131072,1753821,0 -g1,23117:6567858,45080752 -g1,23117:6764466,45080752 -[1,23117:6764466,45080752:25818563,1753821,0 -(1,23117:6764466,44081324:25818563,754393,260573 -(1,23116:6764466,44081324:0,754393,260573 -r1,23117:7856192,44081324:1091726,1014966,260573 -k1,23116:6764466,44081324:-1091726 -) -(1,23116:6764466,44081324:1091726,754393,260573 -) -k1,23116:8075036,44081324:218844 -k1,23116:8402716,44081324:327680 -k1,23116:10877966,44081324:218845 -k1,23116:14088529,44081324:218844 -k1,23116:14923411,44081324:218844 -k1,23116:16345496,44081324:218844 -k1,23116:18981964,44081324:218845 -k1,23116:20916541,44081324:218844 -k1,23116:22227870,44081324:218844 -k1,23116:23106006,44081324:218844 -k1,23116:26350648,44081324:218845 -k1,23116:28137113,44081324:218844 -k1,23116:29375042,44081324:218844 -k1,23116:32583029,44081324:0 -) -(1,23117:6764466,44946404:25818563,513147,134348 -k1,23116:7894710,44946404:182593 -k1,23116:9466667,44946404:182594 -k1,23116:12798920,44946404:182593 -k1,23116:15511203,44946404:182593 -k1,23116:17385937,44946404:182594 -k1,23116:18227822,44946404:182593 -k1,23116:19429500,44946404:182593 -k1,23116:22522547,44946404:182593 -k1,23116:24218367,44946404:182594 -k1,23116:25052388,44946404:182593 -k1,23116:27416675,44946404:182593 -k1,23116:28988632,44946404:182594 -k1,23116:29787263,44946404:182593 -k1,23116:32583029,44946404:0 -) -] -g1,23117:32583029,45080752 -) -] -(1,23117:32583029,45706769:0,0,0 -g1,23117:32583029,45706769 -) -) -] -(1,23117:6630773,47279633:25952256,485622,11795 -(1,23117:6630773,47279633:25952256,485622,11795 -(1,23117:6630773,47279633:0,0,0 -v1,23117:6630773,47279633:0,0,0 -) -g1,23117:6830002,47279633 -k1,23117:31387652,47279633:24557650 -) -) -] -(1,23117:4262630,4025873:0,0,0 -[1,23117:-473656,4025873:0,0,0 -(1,23117:-473656,-710413:0,0,0 -(1,23117:-473656,-710413:0,0,0 -g1,23117:-473656,-710413 -) -g1,23117:-473656,-710413 +k1,23095:22359413,9962413:10223616 +k1,23095:32583029,9962413:10223616 +) +] +(1,23097:6630773,14713778:25952256,131072,0 +r1,23115:32583029,14713778:25952256,131072,0 +g1,23097:32583029,14713778 +g1,23097:32583029,14713778 +) +(1,23099:6630773,16057271:25952256,505283,134348 +k1,23099:8596853,16057271:1966080 +k1,23098:10298969,16057271:156777 +k1,23098:14783743,16057271:156776 +k1,23098:16415735,16057271:156777 +k1,23098:18012337,16057271:156776 +k1,23098:19981840,16057271:156777 +k1,23098:21330061,16057271:156776 +k1,23098:23088538,16057271:156777 +k1,23098:24829319,16057271:156776 +k1,23098:29314094,16057271:156777 +k1,23099:32583029,16057271:1966080 +) +(1,23099:6630773,16922351:25952256,505283,134348 +k1,23099:8596853,16922351:1966080 +k1,23098:9684155,16922351:208464 +k1,23098:12150989,16922351:208463 +k1,23098:14646004,16922351:208464 +k1,23098:15467230,16922351:208464 +k1,23098:17171226,16922351:208464 +k1,23098:18710070,16922351:208463 +k1,23098:20476325,16922351:208464 +k1,23098:21676349,16922351:208464 +k1,23098:23609721,16922351:208464 +k1,23098:25980872,16922351:208463 +k1,23098:27544621,16922351:208464 +k1,23098:32583029,16922351:1966080 +) +(1,23099:6630773,17787431:25952256,513147,134348 +g1,23099:8596853,17787431 +g1,23098:10080588,17787431 +g1,23098:12460200,17787431 +g1,23098:14134644,17787431 +g1,23098:15843823,17787431 +g1,23098:17901653,17787431 +g1,23098:19931303,17787431 +g1,23098:22991834,17787431 +k1,23099:30616949,17787431:4500359 +g1,23099:32583029,17787431 +) +(1,23100:6630773,19438943:25952256,505283,126483 +k1,23100:26617289,19438943:19986516 +h1,23100:26603526,19438943:0,0,0 +g1,23100:28303529,19438943 +g1,23100:30616950,19438943 +g1,23100:32583030,19438943 +) +(1,23101:6630773,20304023:25952256,505283,134348 +k1,23101:22157562,20304023:15526789 +h1,23100:22157562,20304023:0,0,0 +g1,23100:26747048,20304023 +g1,23100:29023113,20304023 +g1,23101:30616949,20304023 +g1,23101:32583029,20304023 +) +(1,23101:6630773,21562319:25952256,131072,0 +r1,23115:32583029,21562319:25952256,131072,0 +g1,23101:32583029,21562319 +g1,23101:34549109,21562319 +) +(1,23105:6630773,24393479:25952256,32768,229376 +(1,23105:6630773,24393479:0,32768,229376 +(1,23105:6630773,24393479:5505024,32768,229376 +r1,23115:12135797,24393479:5505024,262144,229376 +) +k1,23105:6630773,24393479:-5505024 +) +(1,23105:6630773,24393479:25952256,32768,0 +r1,23115:32583029,24393479:25952256,32768,0 +) +) +(1,23105:6630773,26025331:25952256,615776,151780 +(1,23105:6630773,26025331:2464678,582746,14155 +g1,23105:6630773,26025331 +g1,23105:9095451,26025331 +) +g1,23105:11394192,26025331 +g1,23105:12451943,26025331 +g1,23105:14440830,26025331 +k1,23105:32583029,26025331:15025569 +g1,23105:32583029,26025331 +) +(1,23108:6630773,27283627:25952256,513147,134348 +k1,23107:8258568,27283627:195178 +k1,23107:8868586,27283627:195175 +k1,23107:10255209,27283627:195178 +k1,23107:11469472,27283627:195178 +k1,23107:16219403,27283627:195179 +k1,23107:19325035,27283627:195178 +k1,23107:22464747,27283627:195179 +k1,23107:23421453,27283627:195178 +k1,23107:26089304,27283627:195178 +k1,23107:28622152,27283627:195179 +k1,23107:31048831,27283627:195178 +k1,23108:32583029,27283627:0 +) +(1,23108:6630773,28148707:25952256,513147,134348 +k1,23107:8363938,28148707:135397 +k1,23107:9446986,28148707:135397 +k1,23107:12754326,28148707:135397 +k1,23107:14081168,28148707:135397 +k1,23107:17279718,28148707:135397 +k1,23107:18978149,28148707:135397 +k1,23107:22965097,28148707:135397 +k1,23107:26010948,28148707:135397 +k1,23107:28576420,28148707:135397 +k1,23107:30178513,28148707:135397 +k1,23108:32583029,28148707:0 +) +(1,23108:6630773,29013787:25952256,513147,126483 +k1,23107:8791058,29013787:190928 +k1,23107:9929637,29013787:190928 +k1,23107:11812705,29013787:190928 +k1,23107:12662925,29013787:190928 +k1,23107:14550580,29013787:190928 +k1,23107:17767305,29013787:190928 +k1,23107:19149678,29013787:190928 +k1,23107:21867019,29013787:190928 +k1,23107:23005598,29013787:190928 +k1,23107:25428027,29013787:190928 +k1,23107:28845948,29013787:190928 +k1,23107:30019916,29013787:190928 +k1,23107:32583029,29013787:0 +) +(1,23108:6630773,29878867:25952256,505283,134348 +k1,23107:7455122,29878867:196514 +k1,23107:8670722,29878867:196515 +k1,23107:11273063,29878867:196514 +k1,23107:14060871,29878867:196514 +k1,23107:14470375,29878867:196512 +k1,23107:15843916,29878867:196514 +k1,23107:16653193,29878867:196515 +k1,23107:20161897,29878867:196514 +k1,23107:21825107,29878867:196514 +k1,23107:23410985,29878867:196515 +k1,23107:25316023,29878867:196514 +k1,23107:26703982,29878867:196514 +k1,23107:29059253,29878867:196515 +k1,23107:31966991,29878867:196514 +k1,23107:32583029,29878867:0 +) +(1,23108:6630773,30743947:25952256,513147,134348 +g1,23107:8617169,30743947 +g1,23107:10191999,30743947 +g1,23107:11410313,30743947 +g1,23107:13211242,30743947 +g1,23107:16187887,30743947 +g1,23107:19272666,30743947 +g1,23107:20861258,30743947 +g1,23107:23571171,30743947 +g1,23107:25721407,30743947 +g1,23107:26986907,30743947 +g1,23107:29119448,30743947 +g1,23107:29970105,30743947 +k1,23108:32583029,30743947:1938559 +g1,23108:32583029,30743947 +) +(1,23110:6630773,31609027:25952256,513147,134348 +h1,23109:6630773,31609027:983040,0,0 +k1,23109:9338491,31609027:252739 +k1,23109:10574269,31609027:252738 +k1,23109:13337692,31609027:252739 +k1,23109:14874936,31609027:252738 +k1,23109:16119235,31609027:252739 +k1,23109:18657213,31609027:252738 +k1,23109:19561380,31609027:252739 +k1,23109:20228908,31609027:252685 +k1,23109:21473206,31609027:252738 +k1,23109:22792216,31609027:252739 +k1,23109:25174219,31609027:252738 +k1,23109:26705565,31609027:252739 +k1,23109:29513552,31609027:252738 +k1,23109:32124932,31609027:252739 +k1,23109:32583029,31609027:0 +) +(1,23110:6630773,32474107:25952256,513147,134348 +k1,23109:9922777,32474107:182976 +k1,23109:10757182,32474107:182977 +k1,23109:16194835,32474107:182976 +k1,23109:17396896,32474107:182976 +k1,23109:21021167,32474107:182976 +k1,23109:23502492,32474107:182977 +k1,23109:24336896,32474107:182976 +k1,23109:25932173,32474107:182976 +k1,23109:27927876,32474107:182977 +k1,23109:29985182,32474107:182976 +k1,23109:32583029,32474107:0 +) +(1,23110:6630773,33339187:25952256,513147,134348 +k1,23109:8317317,33339187:219848 +k1,23109:10235203,33339187:219848 +k1,23109:12551548,33339187:219848 +k1,23109:15326645,33339187:219848 +k1,23109:16883427,33339187:219848 +k1,23109:17851041,33339187:219848 +k1,23109:20708058,33339187:219848 +k1,23109:21689434,33339187:219848 +k1,23109:22928367,33339187:219848 +k1,23109:26607205,33339187:219848 +k1,23109:27486345,33339187:219848 +k1,23109:28725278,33339187:219848 +k1,23109:31230366,33339187:219848 +k1,23110:32583029,33339187:0 +) +(1,23110:6630773,34204267:25952256,513147,134348 +k1,23109:8265787,34204267:148657 +k1,23109:9698950,34204267:148657 +k1,23109:11792716,34204267:148657 +k1,23109:12960458,34204267:148657 +k1,23109:14596127,34204267:148657 +k1,23109:19265458,34204267:148657 +k1,23109:22897355,34204267:148658 +k1,23109:25805078,34204267:148657 +k1,23109:26605163,34204267:148657 +k1,23109:28166121,34204267:148657 +k1,23109:29506223,34204267:148657 +k1,23109:31269687,34204267:148657 +k1,23109:32583029,34204267:0 +) +(1,23110:6630773,35069347:25952256,513147,134348 +k1,23109:8578831,35069347:212665 +k1,23109:11076736,35069347:212665 +k1,23109:13800086,35069347:212666 +k1,23109:15117033,35069347:212665 +k1,23109:17130627,35069347:212665 +k1,23109:19186164,35069347:212665 +k1,23109:20014868,35069347:212666 +k1,23109:21789911,35069347:212665 +k1,23109:24165264,35069347:212665 +k1,23109:25569374,35069347:212665 +k1,23109:27137325,35069347:212666 +k1,23109:27764820,35069347:212652 +k1,23109:30312533,35069347:212665 +k1,23109:31478747,35069347:212665 +k1,23109:32583029,35069347:0 +) +(1,23110:6630773,35934427:25952256,513147,134348 +k1,23109:8137683,35934427:221094 +k1,23109:11877406,35934427:221095 +k1,23109:13713307,35934427:221094 +k1,23109:15430589,35934427:221095 +k1,23109:16936189,35934427:221094 +k1,23109:19444491,35934427:221095 +k1,23109:21592343,35934427:221094 +k1,23109:22885607,35934427:221095 +k1,23109:26992331,35934427:221094 +k1,23109:28570677,35934427:221095 +k1,23109:30185722,35934427:221094 +k1,23109:32583029,35934427:0 +) +(1,23110:6630773,36799507:25952256,513147,126483 +k1,23109:8347816,36799507:230031 +k1,23109:9260733,36799507:230032 +k1,23109:10957460,36799507:230031 +k1,23109:13242700,36799507:230031 +k1,23109:17358361,36799507:230031 +k1,23109:19910334,36799507:230032 +k1,23109:22867973,36799507:230031 +k1,23109:24117089,36799507:230031 +k1,23109:27296895,36799507:230031 +k1,23109:29089961,36799507:230032 +k1,23109:30516679,36799507:230031 +k1,23109:31923737,36799507:230031 +k1,23109:32583029,36799507:0 +) +(1,23110:6630773,37664587:25952256,513147,134348 +k1,23109:8017951,37664587:183937 +k1,23109:10619512,37664587:183938 +k1,23109:11334946,37664587:183937 +k1,23109:12170312,37664587:183938 +k1,23109:14784324,37664587:183937 +k1,23109:17830875,37664587:183938 +k1,23109:18962463,37664587:183937 +k1,23109:21402806,37664587:183938 +k1,23109:24612540,37664587:183937 +k1,23109:25744129,37664587:183938 +k1,23109:28330616,37664587:183937 +k1,23109:29903917,37664587:183938 +k1,23109:32583029,37664587:0 +) +(1,23110:6630773,38529667:25952256,513147,134348 +k1,23109:8591133,38529667:224967 +k1,23109:11101340,38529667:224967 +k1,23109:14010663,38529667:224968 +k1,23109:16946854,38529667:224967 +k1,23109:18638517,38529667:224967 +k1,23109:20297412,38529667:224967 +k1,23109:21110892,38529667:224967 +k1,23109:24316436,38529667:224967 +k1,23109:25560489,38529667:224968 +k1,23109:28412794,38529667:224967 +k1,23109:31391584,38529667:224967 +k1,23109:32583029,38529667:0 +) +(1,23110:6630773,39394747:25952256,513147,134348 +g1,23109:11403104,39394747 +g1,23109:15331987,39394747 +g1,23109:18615340,39394747 +g1,23109:20333038,39394747 +g1,23109:23558064,39394747 +g1,23109:24748853,39394747 +g1,23109:26226689,39394747 +g1,23109:28385444,39394747 +g1,23109:29267558,39394747 +k1,23110:32583029,39394747:342103 +g1,23110:32583029,39394747 +) +(1,23112:6630773,40259827:25952256,513147,134348 +h1,23111:6630773,40259827:983040,0,0 +k1,23111:8415537,40259827:173889 +k1,23111:9792666,40259827:173888 +k1,23111:12384178,40259827:173889 +k1,23111:13728540,40259827:173889 +k1,23111:15034891,40259827:173889 +k1,23111:18579951,40259827:173888 +k1,23111:21360207,40259827:173889 +k1,23111:22928047,40259827:173889 +k1,23111:24432317,40259827:173889 +k1,23111:25257633,40259827:173888 +k1,23111:28384574,40259827:173889 +k1,23111:29947826,40259827:173889 +k1,23112:32583029,40259827:0 +) +(1,23112:6630773,41124907:25952256,513147,126483 +k1,23111:7336746,41124907:291130 +k1,23111:8819414,41124907:291223 +k1,23111:10812606,41124907:291222 +k1,23111:15168372,41124907:291223 +k1,23111:16656282,41124907:291223 +k1,23111:19973301,41124907:291222 +(1,23111:19973301,41124907:0,452978,115847 +r1,23115:22090126,41124907:2116825,568825,115847 +k1,23111:19973301,41124907:-2116825 +) +(1,23111:19973301,41124907:2116825,452978,115847 +k1,23111:19973301,41124907:3277 +h1,23111:22086849,41124907:0,411205,112570 +) +k1,23111:22381349,41124907:291223 +k1,23111:23864016,41124907:291222 +(1,23111:23864016,41124907:0,452978,115847 +r1,23115:25980841,41124907:2116825,568825,115847 +k1,23111:23864016,41124907:-2116825 +) +(1,23111:23864016,41124907:2116825,452978,115847 +k1,23111:23864016,41124907:3277 +h1,23111:25977564,41124907:0,411205,112570 +) +k1,23111:26445734,41124907:291223 +k1,23111:27928401,41124907:291222 +(1,23111:27928401,41124907:0,452978,115847 +r1,23115:31100361,41124907:3171960,568825,115847 +k1,23111:27928401,41124907:-3171960 +) +(1,23111:27928401,41124907:3171960,452978,115847 +k1,23111:27928401,41124907:3277 +h1,23111:31097084,41124907:0,411205,112570 +) +k1,23111:31391584,41124907:291223 +k1,23112:32583029,41124907:0 +) +(1,23112:6630773,41989987:25952256,513147,115847 +(1,23111:6630773,41989987:0,452978,115847 +r1,23115:9802733,41989987:3171960,568825,115847 +k1,23111:6630773,41989987:-3171960 +) +(1,23111:6630773,41989987:3171960,452978,115847 +k1,23111:6630773,41989987:3277 +h1,23111:9799456,41989987:0,411205,112570 +) +k1,23111:10195105,41989987:218702 +k1,23111:11179922,41989987:218701 +k1,23111:12057916,41989987:218702 +k1,23111:14162089,41989987:218702 +k1,23111:15771464,41989987:218701 +k1,23111:17181611,41989987:218702 +k1,23111:18812614,41989987:218702 +k1,23111:20420678,41989987:218701 +k1,23111:21255418,41989987:218702 +k1,23111:22392934,41989987:218701 +k1,23111:24544948,41989987:218702 +k1,23111:27448005,41989987:218702 +k1,23111:28658266,41989987:218701 +k1,23111:31966991,41989987:218702 +k1,23111:32583029,41989987:0 +) +(1,23112:6630773,42855067:25952256,505283,134348 +g1,23111:9438990,42855067 +h1,23111:10981708,42855067:0,0,0 +g1,23111:11180937,42855067 +g1,23111:12571611,42855067 +h1,23111:14114329,42855067:0,0,0 +g1,23111:14313558,42855067 +g1,23111:16991359,42855067 +g1,23111:17999958,42855067 +g1,23111:19697340,42855067 +h1,23111:20892717,42855067:0,0,0 +k1,23112:32583029,42855067:11637884 +g1,23112:32583029,42855067 +) +v1,23114:6630773,43720147:0,393216,0 +(1,23115:6630773,45080752:25952256,1753821,0 +g1,23115:6630773,45080752 +g1,23115:6237557,45080752 +r1,23115:6368629,45080752:131072,1753821,0 +g1,23115:6567858,45080752 +g1,23115:6764466,45080752 +[1,23115:6764466,45080752:25818563,1753821,0 +(1,23115:6764466,44081324:25818563,754393,260573 +(1,23114:6764466,44081324:0,754393,260573 +r1,23115:7856192,44081324:1091726,1014966,260573 +k1,23114:6764466,44081324:-1091726 +) +(1,23114:6764466,44081324:1091726,754393,260573 +) +k1,23114:8075036,44081324:218844 +k1,23114:8402716,44081324:327680 +k1,23114:10877966,44081324:218845 +k1,23114:14088529,44081324:218844 +k1,23114:14923411,44081324:218844 +k1,23114:16345496,44081324:218844 +k1,23114:18981964,44081324:218845 +k1,23114:20916541,44081324:218844 +k1,23114:22227870,44081324:218844 +k1,23114:23106006,44081324:218844 +k1,23114:26350648,44081324:218845 +k1,23114:28137113,44081324:218844 +k1,23114:29375042,44081324:218844 +k1,23114:32583029,44081324:0 +) +(1,23115:6764466,44946404:25818563,513147,134348 +k1,23114:7894710,44946404:182593 +k1,23114:9466667,44946404:182594 +k1,23114:12798920,44946404:182593 +k1,23114:15511203,44946404:182593 +k1,23114:17385937,44946404:182594 +k1,23114:18227822,44946404:182593 +k1,23114:19429500,44946404:182593 +k1,23114:22522547,44946404:182593 +k1,23114:24218367,44946404:182594 +k1,23114:25052388,44946404:182593 +k1,23114:27416675,44946404:182593 +k1,23114:28988632,44946404:182594 +k1,23114:29787263,44946404:182593 +k1,23114:32583029,44946404:0 +) +] +g1,23115:32583029,45080752 +) +] +(1,23115:32583029,45706769:0,0,0 +g1,23115:32583029,45706769 +) +) +] +(1,23115:6630773,47279633:25952256,485622,11795 +(1,23115:6630773,47279633:25952256,485622,11795 +(1,23115:6630773,47279633:0,0,0 +v1,23115:6630773,47279633:0,0,0 +) +g1,23115:6830002,47279633 +k1,23115:31387652,47279633:24557650 +) +) +] +(1,23115:4262630,4025873:0,0,0 +[1,23115:-473656,4025873:0,0,0 +(1,23115:-473656,-710413:0,0,0 +(1,23115:-473656,-710413:0,0,0 +g1,23115:-473656,-710413 +) +g1,23115:-473656,-710413 ) ] ) ] !18734 -}398 +}399 !12 -{399 -[1,23164:4262630,47279633:28320399,43253760,0 -(1,23164:4262630,4025873:0,0,0 -[1,23164:-473656,4025873:0,0,0 -(1,23164:-473656,-710413:0,0,0 -(1,23164:-473656,-644877:0,0,0 -k1,23164:-473656,-644877:-65536 +{400 +[1,23162:4262630,47279633:28320399,43253760,0 +(1,23162:4262630,4025873:0,0,0 +[1,23162:-473656,4025873:0,0,0 +(1,23162:-473656,-710413:0,0,0 +(1,23162:-473656,-644877:0,0,0 +k1,23162:-473656,-644877:-65536 ) -(1,23164:-473656,4736287:0,0,0 -k1,23164:-473656,4736287:5209943 +(1,23162:-473656,4736287:0,0,0 +k1,23162:-473656,4736287:5209943 ) -g1,23164:-473656,-710413 +g1,23162:-473656,-710413 ) ] ) -[1,23164:6630773,47279633:25952256,43253760,0 -[1,23164:6630773,4812305:25952256,786432,0 -(1,23164:6630773,4812305:25952256,505283,134348 -(1,23164:6630773,4812305:25952256,505283,134348 -g1,23164:3078558,4812305 -[1,23164:3078558,4812305:0,0,0 -(1,23164:3078558,2439708:0,1703936,0 -k1,23164:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23164:2537886,2439708:1179648,16384,0 +[1,23162:6630773,47279633:25952256,43253760,0 +[1,23162:6630773,4812305:25952256,786432,0 +(1,23162:6630773,4812305:25952256,505283,134348 +(1,23162:6630773,4812305:25952256,505283,134348 +g1,23162:3078558,4812305 +[1,23162:3078558,4812305:0,0,0 +(1,23162:3078558,2439708:0,1703936,0 +k1,23162:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23162:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23164:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23162:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23164:3078558,4812305:0,0,0 -(1,23164:3078558,2439708:0,1703936,0 -g1,23164:29030814,2439708 -g1,23164:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23164:36151628,1915420:16384,1179648,0 +[1,23162:3078558,4812305:0,0,0 +(1,23162:3078558,2439708:0,1703936,0 +g1,23162:29030814,2439708 +g1,23162:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23162:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23164:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23162:37855564,2439708:1179648,16384,0 ) ) -k1,23164:3078556,2439708:-34777008 +k1,23162:3078556,2439708:-34777008 ) ] -[1,23164:3078558,4812305:0,0,0 -(1,23164:3078558,49800853:0,16384,2228224 -k1,23164:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23164:2537886,49800853:1179648,16384,0 +[1,23162:3078558,4812305:0,0,0 +(1,23162:3078558,49800853:0,16384,2228224 +k1,23162:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23162:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23164:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23162:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23164:3078558,4812305:0,0,0 -(1,23164:3078558,49800853:0,16384,2228224 -g1,23164:29030814,49800853 -g1,23164:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23164:36151628,51504789:16384,1179648,0 +[1,23162:3078558,4812305:0,0,0 +(1,23162:3078558,49800853:0,16384,2228224 +g1,23162:29030814,49800853 +g1,23162:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23162:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23164:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23162:37855564,49800853:1179648,16384,0 ) ) -k1,23164:3078556,49800853:-34777008 +k1,23162:3078556,49800853:-34777008 ) ] -g1,23164:6630773,4812305 -k1,23164:21114230,4812305:13288080 -g1,23164:22736901,4812305 -g1,23164:23350318,4812305 -g1,23164:24759997,4812305 -g1,23164:28372341,4812305 -g1,23164:30105768,4812305 -) -) -] -[1,23164:6630773,45706769:25952256,40108032,0 -(1,23164:6630773,45706769:25952256,40108032,0 -(1,23164:6630773,45706769:0,0,0 -g1,23164:6630773,45706769 -) -[1,23164:6630773,45706769:25952256,40108032,0 -v1,23117:6630773,6254097:0,393216,0 -(1,23117:6630773,7365591:25952256,1504710,0 -g1,23117:6630773,7365591 -g1,23117:6237557,7365591 -r1,23164:6368629,7365591:131072,1504710,0 -g1,23117:6567858,7365591 -g1,23117:6764466,7365591 -[1,23117:6764466,7365591:25818563,1504710,0 -(1,23117:6764466,6374028:25818563,513147,126483 -k1,23116:9464221,6374028:189071 -k1,23116:10644853,6374028:189072 -k1,23116:14390563,6374028:189071 -k1,23116:15901496,6374028:189072 -k1,23116:16749859,6374028:189071 -k1,23116:17958015,6374028:189071 -k1,23116:21528744,6374028:189072 -k1,23116:23434858,6374028:189071 -k1,23116:24283222,6374028:189072 -k1,23116:25491378,6374028:189071 -k1,23116:28706247,6374028:189072 -k1,23116:30408544,6374028:189071 -k1,23116:32583029,6374028:0 -) -(1,23117:6764466,7239108:25818563,513147,126483 -g1,23116:7579733,7239108 -g1,23116:8982203,7239108 -g1,23116:11599055,7239108 -g1,23116:12745935,7239108 -g1,23116:13964249,7239108 -g1,23116:15469611,7239108 -g1,23116:17094248,7239108 -g1,23116:17909515,7239108 -g1,23116:19127829,7239108 -k1,23117:32583029,7239108:11820732 -g1,23117:32583029,7239108 -) -] -g1,23117:32583029,7365591 -) -h1,23117:6630773,7365591:0,0,0 -(1,23119:6630773,10196751:25952256,32768,229376 -(1,23119:6630773,10196751:0,32768,229376 -(1,23119:6630773,10196751:5505024,32768,229376 -r1,23164:12135797,10196751:5505024,262144,229376 -) -k1,23119:6630773,10196751:-5505024 -) -(1,23119:6630773,10196751:25952256,32768,0 -r1,23164:32583029,10196751:25952256,32768,0 -) -) -(1,23119:6630773,11828603:25952256,606339,14155 -(1,23119:6630773,11828603:2464678,582746,14155 -g1,23119:6630773,11828603 -g1,23119:9095451,11828603 -) -k1,23119:32583028,11828603:18530696 -g1,23119:32583028,11828603 -) -(1,23122:6630773,13086899:25952256,513147,126483 -k1,23121:8012190,13086899:206357 -k1,23121:9524680,13086899:206357 -k1,23121:11086321,13086899:206356 -k1,23121:11908716,13086899:206357 -k1,23121:13246880,13086899:206357 -k1,23121:14842600,13086899:206357 -k1,23121:17603550,13086899:206357 -k1,23121:19203858,13086899:206357 -k1,23121:19825050,13086899:206349 -k1,23121:20562904,13086899:206357 -k1,23121:21420689,13086899:206357 -k1,23121:23335570,13086899:206357 -k1,23121:24224812,13086899:206357 -k1,23121:26672499,13086899:206356 -k1,23121:27897941,13086899:206357 -k1,23121:29667332,13086899:206357 -k1,23121:32583029,13086899:0 -) -(1,23122:6630773,13951979:25952256,513147,134348 -k1,23121:9357726,13951979:287703 -k1,23121:10304721,13951979:287703 -k1,23121:11981787,13951979:287703 -k1,23121:13261050,13951979:287703 -k1,23121:15300530,13951979:287703 -k1,23121:16779678,13951979:287703 -k1,23121:18456743,13951979:287702 -k1,23121:19848728,13951979:287703 -k1,23121:20884197,13951979:287703 -k1,23121:23210070,13951979:287703 -k1,23121:24180658,13951979:287703 -k1,23121:28217676,13951979:287703 -k1,23121:30240772,13951979:287703 -k1,23121:32583029,13951979:0 -) -(1,23122:6630773,14817059:25952256,513147,134348 -k1,23121:9460050,14817059:144922 -k1,23121:11071667,14817059:144921 -k1,23121:13071258,14817059:144922 -k1,23121:14025550,14817059:144922 -k1,23121:15396650,14817059:144921 -k1,23121:16224457,14817059:144922 -k1,23121:18391165,14817059:144922 -k1,23121:21941337,14817059:144921 -k1,23121:22556152,14817059:144922 -k1,23121:23232571,14817059:144922 -k1,23121:25510034,14817059:144921 -k1,23121:26939462,14817059:144922 -k1,23121:28473747,14817059:144922 -k1,23121:29150165,14817059:144921 -k1,23121:30361358,14817059:144922 -k1,23121:32583029,14817059:0 -) -(1,23122:6630773,15682139:25952256,513147,126483 -k1,23121:10395675,15682139:206298 -k1,23121:12300011,15682139:206298 -k1,23121:13918610,15682139:206298 -k1,23121:15316353,15682139:206298 -k1,23121:16807157,15682139:206298 -k1,23121:17629493,15682139:206298 -k1,23121:18854876,15682139:206298 -k1,23121:21760601,15682139:206297 -k1,23121:23333980,15682139:206298 -k1,23121:24199570,15682139:206298 -k1,23121:25176571,15682139:206298 -k1,23121:27163482,15682139:206298 -k1,23121:29307024,15682139:206298 -k1,23121:30504882,15682139:206298 -k1,23121:32583029,15682139:0 -) -(1,23122:6630773,16547219:25952256,505283,134348 -g1,23121:9767981,16547219 -g1,23121:11512549,16547219 -g1,23121:15052803,16547219 -g1,23121:16243592,16547219 -g1,23121:18198531,16547219 -g1,23121:23777610,16547219 -k1,23122:32583029,16547219:6815746 -g1,23122:32583029,16547219 -) -(1,23124:6630773,17412299:25952256,513147,126483 -h1,23123:6630773,17412299:983040,0,0 -k1,23123:8945403,17412299:134903 -k1,23123:10434280,17412299:134903 -k1,23123:13338080,17412299:134904 -k1,23123:16091802,17412299:134903 -k1,23123:16885997,17412299:134903 -k1,23123:20312118,17412299:134903 -k1,23123:21106314,17412299:134904 -k1,23123:22260302,17412299:134903 -k1,23123:23925471,17412299:134903 -k1,23123:25008025,17412299:134903 -k1,23123:26720380,17412299:134903 -k1,23123:30312308,17412299:134904 -k1,23123:31106503,17412299:134903 -k1,23123:32583029,17412299:0 -) -(1,23124:6630773,18277379:25952256,513147,134348 -k1,23123:8861560,18277379:184753 -k1,23123:10065398,18277379:184753 -k1,23123:12408908,18277379:184754 -k1,23123:13252953,18277379:184753 -k1,23123:14827069,18277379:184753 -k1,23123:16579443,18277379:184753 -k1,23123:17179025,18277379:184739 -k1,23123:18631244,18277379:184753 -k1,23123:22689176,18277379:184754 -k1,23123:27429337,18277379:184753 -k1,23123:30124774,18277379:184753 -k1,23123:32583029,18277379:0 -) -(1,23124:6630773,19142459:25952256,505283,126483 -k1,23123:8965368,19142459:202053 -k1,23123:10696375,19142459:202052 -k1,23123:15419102,19142459:202053 -k1,23123:16237192,19142459:202052 -k1,23123:18191022,19142459:202053 -k1,23123:20090456,19142459:202052 -k1,23123:21063212,19142459:202053 -k1,23123:24474562,19142459:202052 -k1,23123:26031900,19142459:202053 -k1,23123:26849990,19142459:202052 -k1,23123:28441406,19142459:202053 -k1,23123:31198051,19142459:202052 -k1,23123:31931601,19142459:202053 -k1,23123:32583029,19142459:0 -) -(1,23124:6630773,20007539:25952256,513147,126483 -k1,23123:8950596,20007539:246919 -k1,23123:10216601,20007539:246920 -k1,23123:11852883,20007539:246919 -k1,23123:13047454,20007539:246920 -k1,23123:16932276,20007539:246919 -k1,23123:17830624,20007539:246920 -k1,23123:18433403,20007539:246919 -k1,23123:22137347,20007539:246920 -k1,23123:23000304,20007539:246919 -k1,23123:25913229,20007539:246920 -k1,23123:26811576,20007539:246919 -k1,23123:30657733,20007539:246920 -k1,23123:31563944,20007539:246919 -k1,23123:32583029,20007539:0 -) -(1,23124:6630773,20872619:25952256,513147,126483 -g1,23123:9003176,20872619 -g1,23123:9861697,20872619 -g1,23123:11080011,20872619 -k1,23124:32583029,20872619:18895996 -g1,23124:32583029,20872619 -) -(1,23126:6630773,21737699:25952256,505283,126483 -h1,23125:6630773,21737699:983040,0,0 -k1,23125:9878592,21737699:326879 -k1,23125:12733194,21737699:326878 -k1,23125:15091034,21737699:326879 -k1,23125:16069341,21737699:326879 -k1,23125:17785582,21737699:326878 -k1,23125:20551711,21737699:326879 -k1,23125:22070035,21737699:326879 -k1,23125:24904976,21737699:326878 -k1,23125:29970108,21737699:326879 -k1,23125:32583029,21737699:0 -) -(1,23126:6630773,22602779:25952256,513147,134348 -k1,23125:8797219,22602779:277044 -k1,23125:10175347,22602779:277123 -k1,23125:12196382,22602779:277122 -k1,23125:12931602,22602779:277123 -k1,23125:15838684,22602779:277122 -k1,23125:16767235,22602779:277123 -k1,23125:20163215,22602779:277122 -k1,23125:22036795,22602779:277123 -k1,23125:23707868,22602779:277122 -k1,23125:26910518,22602779:277123 -k1,23125:28758538,22602779:277122 -k1,23125:30425024,22602779:277123 -k1,23125:31966991,22602779:277122 -k1,23126:32583029,22602779:0 -) -(1,23126:6630773,23467859:25952256,513147,126483 -k1,23125:7488029,23467859:268743 -k1,23125:9218880,23467859:268743 -k1,23125:9902396,23467859:268673 -k1,23125:12009424,23467859:268743 -k1,23125:13044283,23467859:268743 -k1,23125:14702388,23467859:268742 -k1,23125:15587169,23467859:268743 -k1,23125:18487183,23467859:268743 -k1,23125:20839971,23467859:268743 -k1,23125:23753092,23467859:268743 -k1,23125:25836527,23467859:268743 -k1,23125:26756698,23467859:268743 -k1,23125:28044525,23467859:268742 -k1,23125:29582045,23467859:268743 -k1,23125:30510080,23467859:268743 -k1,23125:32168186,23467859:268743 -k1,23126:32583029,23467859:0 -) -(1,23126:6630773,24332939:25952256,513147,134348 -k1,23125:9879392,24332939:222822 -k1,23125:11206497,24332939:222823 -k1,23125:13840389,24332939:222822 -k1,23125:15046251,24332939:222822 -k1,23125:16311096,24332939:222823 -k1,23125:17923281,24332939:222822 -k1,23125:19410949,24332939:222823 -k1,23125:21204669,24332939:222822 -k1,23125:23788098,24332939:222822 -k1,23125:25077192,24332939:222823 -k1,23125:25951442,24332939:222822 -k1,23125:26861737,24332939:222822 -k1,23125:27700598,24332939:222823 -k1,23125:30999680,24332939:222822 -k1,23125:32583029,24332939:0 -) -(1,23126:6630773,25198019:25952256,513147,134348 -k1,23125:7993921,25198019:206438 -k1,23125:9304642,25198019:206439 -k1,23125:10603565,25198019:206438 -k1,23125:13536302,25198019:206439 -k1,23125:16145290,25198019:206438 -k1,23125:17011021,25198019:206439 -k1,23125:18606822,25198019:206438 -k1,23125:20380881,25198019:206438 -k1,23125:21634585,25198019:206439 -k1,23125:23328035,25198019:206438 -k1,23125:24217359,25198019:206439 -k1,23125:25991418,25198019:206438 -k1,23125:29351449,25198019:206439 -k1,23125:31923737,25198019:206438 -k1,23126:32583029,25198019:0 -) -(1,23126:6630773,26063099:25952256,473825,0 -k1,23126:32583028,26063099:25484984 -g1,23126:32583028,26063099 -) -(1,23128:6630773,26928179:25952256,513147,134348 -h1,23127:6630773,26928179:983040,0,0 -k1,23127:9483340,26928179:152484 -k1,23127:13365479,26928179:152485 -k1,23127:13932759,26928179:152437 -k1,23127:16995698,26928179:152485 -k1,23127:19674595,26928179:152484 -k1,23127:22008773,26928179:152484 -k1,23127:22820550,26928179:152485 -k1,23127:24362397,26928179:152484 -k1,23127:26326296,26928179:152484 -k1,23127:27094818,26928179:152484 -k1,23127:28266388,26928179:152485 -k1,23127:30072345,26928179:152484 -k1,23127:32583029,26928179:0 -) -(1,23128:6630773,27793259:25952256,513147,134348 -k1,23127:9159414,27793259:194249 -k1,23127:12648157,27793259:194248 -k1,23127:13603934,27793259:194249 -k1,23127:15232110,27793259:194248 -k1,23127:16014872,27793259:194249 -k1,23127:17281290,27793259:194249 -k1,23127:19210931,27793259:194248 -k1,23127:22167523,27793259:194249 -k1,23127:26642583,27793259:194248 -k1,23127:29472035,27793259:194249 -k1,23127:32583029,27793259:0 -) -(1,23128:6630773,28658339:25952256,513147,126483 -k1,23127:8221029,28658339:195650 -k1,23127:9075972,28658339:195651 -k1,23127:10364107,28658339:195650 -k1,23127:11751202,28658339:195650 -k1,23127:16196207,28658339:195651 -k1,23127:19512026,28658339:195650 -k1,23127:20323714,28658339:195650 -k1,23127:21953293,28658339:195651 -k1,23127:22563783,28658339:195647 -k1,23127:24199259,28658339:195650 -k1,23127:25046337,28658339:195650 -k1,23127:28172103,28658339:195651 -k1,23127:31391584,28658339:195650 -k1,23127:32583029,28658339:0 -) -(1,23128:6630773,29523419:25952256,513147,134348 -k1,23127:10180130,29523419:240444 -k1,23127:11988195,29523419:240444 -k1,23127:13618003,29523419:240445 -k1,23127:17266319,29523419:240444 -k1,23127:19196281,29523419:240444 -k1,23127:21128865,29523419:240444 -k1,23127:25098964,29523419:240445 -k1,23127:28249862,29523419:240444 -k1,23127:31420421,29523419:240444 -k1,23128:32583029,29523419:0 -) -(1,23128:6630773,30388499:25952256,513147,134348 -k1,23127:10006592,30388499:182905 -k1,23127:12006154,30388499:182904 -k1,23127:15918713,30388499:182905 -k1,23127:19012072,30388499:182905 -k1,23127:20910710,30388499:182905 -k1,23127:21551711,30388499:182904 -k1,23127:24364576,30388499:182905 -k1,23127:25198909,30388499:182905 -k1,23127:27563508,30388499:182905 -k1,23127:28937857,30388499:182904 -k1,23127:31193666,30388499:182905 -k1,23127:32583029,30388499:0 -) -(1,23128:6630773,31253579:25952256,513147,126483 -k1,23127:8903565,31253579:234622 -k1,23127:9754224,31253579:234621 -k1,23127:10971886,31253579:234622 -k1,23127:13717191,31253579:234621 -k1,23127:15018084,31253579:234622 -k1,23127:18547200,31253579:234621 -k1,23127:19543350,31253579:234622 -k1,23127:21211900,31253579:234622 -k1,23127:21861329,31253579:234586 -k1,23127:25295418,31253579:234621 -k1,23127:27247083,31253579:234622 -k1,23127:28140996,31253579:234621 -k1,23127:30072345,31253579:234622 -k1,23127:32583029,31253579:0 -) -(1,23128:6630773,32118659:25952256,513147,134348 -k1,23127:7828509,32118659:206176 -k1,23127:11905241,32118659:206176 -k1,23127:14508725,32118659:206177 -k1,23127:16404419,32118659:206176 -k1,23127:18642866,32118659:206176 -k1,23127:19840602,32118659:206176 -k1,23127:20662816,32118659:206176 -k1,23127:24522625,32118659:206177 -k1,23127:25994957,32118659:206176 -k1,23127:29066367,32118659:206176 -k1,23127:32583029,32118659:0 -) -(1,23128:6630773,32983739:25952256,513147,134348 -k1,23127:8672100,32983739:193212 -k1,23127:11992690,32983739:193212 -k1,23127:12845195,32983739:193213 -k1,23127:14427770,32983739:193212 -k1,23127:15885827,32983739:193212 -k1,23127:17646660,32983739:193212 -k1,23127:19815782,32983739:193212 -k1,23127:23810082,32983739:193212 -k1,23127:24994855,32983739:193213 -k1,23127:28274157,32983739:193212 -k1,23127:29753185,32983739:193212 -k1,23128:32583029,32983739:0 -k1,23128:32583029,32983739:0 -) -(1,23129:6630773,35814899:25952256,32768,229376 -(1,23129:6630773,35814899:0,32768,229376 -(1,23129:6630773,35814899:5505024,32768,229376 -r1,23164:12135797,35814899:5505024,262144,229376 -) -k1,23129:6630773,35814899:-5505024 -) -(1,23129:6630773,35814899:25952256,32768,0 -r1,23164:32583029,35814899:25952256,32768,0 -) -) -(1,23129:6630773,37446751:25952256,606339,161218 -(1,23129:6630773,37446751:2464678,582746,14155 -g1,23129:6630773,37446751 -g1,23129:9095451,37446751 -) -g1,23129:12963124,37446751 -g1,23129:15162775,37446751 -g1,23129:16178059,37446751 -g1,23129:18166946,37446751 -k1,23129:32583029,37446751:11299453 -g1,23129:32583029,37446751 -) -v1,23132:6630773,38524822:0,393216,0 -(1,23136:6630773,38865505:25952256,733899,196608 -g1,23136:6630773,38865505 -g1,23136:6630773,38865505 -g1,23136:6434165,38865505 -(1,23136:6434165,38865505:0,733899,196608 -r1,23164:32779637,38865505:26345472,930507,196608 -k1,23136:6434165,38865505:-26345472 -) -(1,23136:6434165,38865505:26345472,733899,196608 -[1,23136:6630773,38865505:25952256,537291,0 -(1,23134:6630773,38752653:25952256,424439,112852 -(1,23133:6630773,38752653:0,0,0 -g1,23133:6630773,38752653 -g1,23133:6630773,38752653 -g1,23133:6303093,38752653 -(1,23133:6303093,38752653:0,0,0 -) -g1,23133:6630773,38752653 -) -k1,23134:6630773,38752653:0 -h1,23134:20904792,38752653:0,0,0 -k1,23134:32583029,38752653:11678237 -g1,23134:32583029,38752653 -) -] -) -g1,23136:32583029,38865505 -g1,23136:6630773,38865505 -g1,23136:6630773,38865505 -g1,23136:32583029,38865505 -g1,23136:32583029,38865505 -) -h1,23136:6630773,39062113:0,0,0 -(1,23140:6630773,39927193:25952256,513147,126483 -h1,23139:6630773,39927193:983040,0,0 -k1,23139:8621897,39927193:179054 -k1,23139:9918994,39927193:179053 -k1,23139:11117133,39927193:179054 -k1,23139:14287905,39927193:179053 -k1,23139:17225369,39927193:179054 -k1,23139:18020460,39927193:179053 -k1,23139:19402755,39927193:179054 -k1,23139:22173103,39927193:179054 -k1,23139:23522629,39927193:179053 -k1,23139:25231949,39927193:179054 -k1,23139:26717135,39927193:179053 -k1,23139:27547617,39927193:179054 -k1,23139:29102926,39927193:179053 -k1,23139:30974120,39927193:179054 -k1,23140:32583029,39927193:0 -) -(1,23140:6630773,40792273:25952256,513147,134348 -k1,23139:8264667,40792273:226181 -k1,23139:10058469,40792273:226181 -k1,23139:11303735,40792273:226181 -k1,23139:13630345,40792273:226181 -k1,23139:15088603,40792273:226181 -k1,23139:17593471,40792273:226181 -h1,23139:18564059,40792273:0,0,0 -k1,23139:18790240,40792273:226181 -k1,23139:19825791,40792273:226181 -k1,23139:21550125,40792273:226181 -h1,23139:22745502,40792273:0,0,0 -k1,23139:22971683,40792273:226181 -k1,23139:24145515,40792273:226181 -k1,23139:26489164,40792273:226181 -k1,23139:27524715,40792273:226181 -k1,23139:28769981,40792273:226181 -k1,23139:30088647,40792273:226181 -k1,23139:30974120,40792273:226181 -k1,23140:32583029,40792273:0 -) -(1,23140:6630773,41657353:25952256,505283,134348 -k1,23140:32583029,41657353:24285020 -g1,23140:32583029,41657353 -) -v1,23142:6630773,42342208:0,393216,0 -(1,23164:6630773,45415705:25952256,3466713,196608 -g1,23164:6630773,45415705 -g1,23164:6630773,45415705 -g1,23164:6434165,45415705 -(1,23164:6434165,45415705:0,3466713,196608 -r1,23164:32779637,45415705:26345472,3663321,196608 -k1,23164:6434165,45415705:-26345472 -) -(1,23164:6434165,45415705:26345472,3466713,196608 -[1,23164:6630773,45415705:25952256,3270105,0 -(1,23144:6630773,42570039:25952256,424439,106246 -(1,23143:6630773,42570039:0,0,0 -g1,23143:6630773,42570039 -g1,23143:6630773,42570039 -g1,23143:6303093,42570039 -(1,23143:6303093,42570039:0,0,0 -) -g1,23143:6630773,42570039 -) -k1,23144:6630773,42570039:0 -h1,23144:12937898,42570039:0,0,0 -k1,23144:32583030,42570039:19645132 -g1,23144:32583030,42570039 -) -(1,23145:6630773,43254894:25952256,424439,106246 -h1,23145:6630773,43254894:0,0,0 -k1,23145:6630773,43254894:0 -h1,23145:11610082,43254894:0,0,0 -k1,23145:32583030,43254894:20972948 -g1,23145:32583030,43254894 -) -(1,23146:6630773,43939749:25952256,424439,106246 -h1,23146:6630773,43939749:0,0,0 -k1,23146:6630773,43939749:0 -h1,23146:11278129,43939749:0,0,0 -k1,23146:32583029,43939749:21304900 -g1,23146:32583029,43939749 -) -(1,23147:6630773,44624604:25952256,424439,112852 -h1,23147:6630773,44624604:0,0,0 -k1,23147:6630773,44624604:0 -h1,23147:11942036,44624604:0,0,0 -k1,23147:32583028,44624604:20640992 -g1,23147:32583028,44624604 -) -(1,23148:6630773,45309459:25952256,424439,106246 -h1,23148:6630773,45309459:0,0,0 -k1,23148:6630773,45309459:0 -h1,23148:11278129,45309459:0,0,0 -k1,23148:32583029,45309459:21304900 -g1,23148:32583029,45309459 -) -] -) -g1,23164:32583029,45415705 -g1,23164:6630773,45415705 -g1,23164:6630773,45415705 -g1,23164:32583029,45415705 -g1,23164:32583029,45415705 -) -] -(1,23164:32583029,45706769:0,0,0 -g1,23164:32583029,45706769 -) -) -] -(1,23164:6630773,47279633:25952256,0,0 -h1,23164:6630773,47279633:25952256,0,0 -) -] -(1,23164:4262630,4025873:0,0,0 -[1,23164:-473656,4025873:0,0,0 -(1,23164:-473656,-710413:0,0,0 -(1,23164:-473656,-710413:0,0,0 -g1,23164:-473656,-710413 -) -g1,23164:-473656,-710413 +g1,23162:6630773,4812305 +k1,23162:21114230,4812305:13288080 +g1,23162:22736901,4812305 +g1,23162:23350318,4812305 +g1,23162:24759997,4812305 +g1,23162:28372341,4812305 +g1,23162:30105768,4812305 +) +) +] +[1,23162:6630773,45706769:25952256,40108032,0 +(1,23162:6630773,45706769:25952256,40108032,0 +(1,23162:6630773,45706769:0,0,0 +g1,23162:6630773,45706769 +) +[1,23162:6630773,45706769:25952256,40108032,0 +v1,23115:6630773,6254097:0,393216,0 +(1,23115:6630773,7365591:25952256,1504710,0 +g1,23115:6630773,7365591 +g1,23115:6237557,7365591 +r1,23162:6368629,7365591:131072,1504710,0 +g1,23115:6567858,7365591 +g1,23115:6764466,7365591 +[1,23115:6764466,7365591:25818563,1504710,0 +(1,23115:6764466,6374028:25818563,513147,126483 +k1,23114:9464221,6374028:189071 +k1,23114:10644853,6374028:189072 +k1,23114:14390563,6374028:189071 +k1,23114:15901496,6374028:189072 +k1,23114:16749859,6374028:189071 +k1,23114:17958015,6374028:189071 +k1,23114:21528744,6374028:189072 +k1,23114:23434858,6374028:189071 +k1,23114:24283222,6374028:189072 +k1,23114:25491378,6374028:189071 +k1,23114:28706247,6374028:189072 +k1,23114:30408544,6374028:189071 +k1,23114:32583029,6374028:0 +) +(1,23115:6764466,7239108:25818563,513147,126483 +g1,23114:7579733,7239108 +g1,23114:8982203,7239108 +g1,23114:11599055,7239108 +g1,23114:12745935,7239108 +g1,23114:13964249,7239108 +g1,23114:15469611,7239108 +g1,23114:17094248,7239108 +g1,23114:17909515,7239108 +g1,23114:19127829,7239108 +k1,23115:32583029,7239108:11820732 +g1,23115:32583029,7239108 +) +] +g1,23115:32583029,7365591 +) +h1,23115:6630773,7365591:0,0,0 +(1,23117:6630773,10196751:25952256,32768,229376 +(1,23117:6630773,10196751:0,32768,229376 +(1,23117:6630773,10196751:5505024,32768,229376 +r1,23162:12135797,10196751:5505024,262144,229376 +) +k1,23117:6630773,10196751:-5505024 +) +(1,23117:6630773,10196751:25952256,32768,0 +r1,23162:32583029,10196751:25952256,32768,0 +) +) +(1,23117:6630773,11828603:25952256,606339,14155 +(1,23117:6630773,11828603:2464678,582746,14155 +g1,23117:6630773,11828603 +g1,23117:9095451,11828603 +) +k1,23117:32583028,11828603:18530696 +g1,23117:32583028,11828603 +) +(1,23120:6630773,13086899:25952256,513147,126483 +k1,23119:8012190,13086899:206357 +k1,23119:9524680,13086899:206357 +k1,23119:11086321,13086899:206356 +k1,23119:11908716,13086899:206357 +k1,23119:13246880,13086899:206357 +k1,23119:14842600,13086899:206357 +k1,23119:17603550,13086899:206357 +k1,23119:19203858,13086899:206357 +k1,23119:19825050,13086899:206349 +k1,23119:20562904,13086899:206357 +k1,23119:21420689,13086899:206357 +k1,23119:23335570,13086899:206357 +k1,23119:24224812,13086899:206357 +k1,23119:26672499,13086899:206356 +k1,23119:27897941,13086899:206357 +k1,23119:29667332,13086899:206357 +k1,23119:32583029,13086899:0 +) +(1,23120:6630773,13951979:25952256,513147,134348 +k1,23119:9357726,13951979:287703 +k1,23119:10304721,13951979:287703 +k1,23119:11981787,13951979:287703 +k1,23119:13261050,13951979:287703 +k1,23119:15300530,13951979:287703 +k1,23119:16779678,13951979:287703 +k1,23119:18456743,13951979:287702 +k1,23119:19848728,13951979:287703 +k1,23119:20884197,13951979:287703 +k1,23119:23210070,13951979:287703 +k1,23119:24180658,13951979:287703 +k1,23119:28217676,13951979:287703 +k1,23119:30240772,13951979:287703 +k1,23119:32583029,13951979:0 +) +(1,23120:6630773,14817059:25952256,513147,134348 +k1,23119:9460050,14817059:144922 +k1,23119:11071667,14817059:144921 +k1,23119:13071258,14817059:144922 +k1,23119:14025550,14817059:144922 +k1,23119:15396650,14817059:144921 +k1,23119:16224457,14817059:144922 +k1,23119:18391165,14817059:144922 +k1,23119:21941337,14817059:144921 +k1,23119:22556152,14817059:144922 +k1,23119:23232571,14817059:144922 +k1,23119:25510034,14817059:144921 +k1,23119:26939462,14817059:144922 +k1,23119:28473747,14817059:144922 +k1,23119:29150165,14817059:144921 +k1,23119:30361358,14817059:144922 +k1,23119:32583029,14817059:0 +) +(1,23120:6630773,15682139:25952256,513147,126483 +k1,23119:10395675,15682139:206298 +k1,23119:12300011,15682139:206298 +k1,23119:13918610,15682139:206298 +k1,23119:15316353,15682139:206298 +k1,23119:16807157,15682139:206298 +k1,23119:17629493,15682139:206298 +k1,23119:18854876,15682139:206298 +k1,23119:21760601,15682139:206297 +k1,23119:23333980,15682139:206298 +k1,23119:24199570,15682139:206298 +k1,23119:25176571,15682139:206298 +k1,23119:27163482,15682139:206298 +k1,23119:29307024,15682139:206298 +k1,23119:30504882,15682139:206298 +k1,23119:32583029,15682139:0 +) +(1,23120:6630773,16547219:25952256,505283,134348 +g1,23119:9767981,16547219 +g1,23119:11512549,16547219 +g1,23119:15052803,16547219 +g1,23119:16243592,16547219 +g1,23119:18198531,16547219 +g1,23119:23777610,16547219 +k1,23120:32583029,16547219:6815746 +g1,23120:32583029,16547219 +) +(1,23122:6630773,17412299:25952256,513147,126483 +h1,23121:6630773,17412299:983040,0,0 +k1,23121:8945403,17412299:134903 +k1,23121:10434280,17412299:134903 +k1,23121:13338080,17412299:134904 +k1,23121:16091802,17412299:134903 +k1,23121:16885997,17412299:134903 +k1,23121:20312118,17412299:134903 +k1,23121:21106314,17412299:134904 +k1,23121:22260302,17412299:134903 +k1,23121:23925471,17412299:134903 +k1,23121:25008025,17412299:134903 +k1,23121:26720380,17412299:134903 +k1,23121:30312308,17412299:134904 +k1,23121:31106503,17412299:134903 +k1,23121:32583029,17412299:0 +) +(1,23122:6630773,18277379:25952256,513147,134348 +k1,23121:8861560,18277379:184753 +k1,23121:10065398,18277379:184753 +k1,23121:12408908,18277379:184754 +k1,23121:13252953,18277379:184753 +k1,23121:14827069,18277379:184753 +k1,23121:16579443,18277379:184753 +k1,23121:17179025,18277379:184739 +k1,23121:18631244,18277379:184753 +k1,23121:22689176,18277379:184754 +k1,23121:27429337,18277379:184753 +k1,23121:30124774,18277379:184753 +k1,23121:32583029,18277379:0 +) +(1,23122:6630773,19142459:25952256,505283,126483 +k1,23121:8965368,19142459:202053 +k1,23121:10696375,19142459:202052 +k1,23121:15419102,19142459:202053 +k1,23121:16237192,19142459:202052 +k1,23121:18191022,19142459:202053 +k1,23121:20090456,19142459:202052 +k1,23121:21063212,19142459:202053 +k1,23121:24474562,19142459:202052 +k1,23121:26031900,19142459:202053 +k1,23121:26849990,19142459:202052 +k1,23121:28441406,19142459:202053 +k1,23121:31198051,19142459:202052 +k1,23121:31931601,19142459:202053 +k1,23121:32583029,19142459:0 +) +(1,23122:6630773,20007539:25952256,513147,126483 +k1,23121:8950596,20007539:246919 +k1,23121:10216601,20007539:246920 +k1,23121:11852883,20007539:246919 +k1,23121:13047454,20007539:246920 +k1,23121:16932276,20007539:246919 +k1,23121:17830624,20007539:246920 +k1,23121:18433403,20007539:246919 +k1,23121:22137347,20007539:246920 +k1,23121:23000304,20007539:246919 +k1,23121:25913229,20007539:246920 +k1,23121:26811576,20007539:246919 +k1,23121:30657733,20007539:246920 +k1,23121:31563944,20007539:246919 +k1,23121:32583029,20007539:0 +) +(1,23122:6630773,20872619:25952256,513147,126483 +g1,23121:9003176,20872619 +g1,23121:9861697,20872619 +g1,23121:11080011,20872619 +k1,23122:32583029,20872619:18895996 +g1,23122:32583029,20872619 +) +(1,23124:6630773,21737699:25952256,505283,126483 +h1,23123:6630773,21737699:983040,0,0 +k1,23123:9878592,21737699:326879 +k1,23123:12733194,21737699:326878 +k1,23123:15091034,21737699:326879 +k1,23123:16069341,21737699:326879 +k1,23123:17785582,21737699:326878 +k1,23123:20551711,21737699:326879 +k1,23123:22070035,21737699:326879 +k1,23123:24904976,21737699:326878 +k1,23123:29970108,21737699:326879 +k1,23123:32583029,21737699:0 +) +(1,23124:6630773,22602779:25952256,513147,134348 +k1,23123:8797219,22602779:277044 +k1,23123:10175347,22602779:277123 +k1,23123:12196382,22602779:277122 +k1,23123:12931602,22602779:277123 +k1,23123:15838684,22602779:277122 +k1,23123:16767235,22602779:277123 +k1,23123:20163215,22602779:277122 +k1,23123:22036795,22602779:277123 +k1,23123:23707868,22602779:277122 +k1,23123:26910518,22602779:277123 +k1,23123:28758538,22602779:277122 +k1,23123:30425024,22602779:277123 +k1,23123:31966991,22602779:277122 +k1,23124:32583029,22602779:0 +) +(1,23124:6630773,23467859:25952256,513147,126483 +k1,23123:7488029,23467859:268743 +k1,23123:9218880,23467859:268743 +k1,23123:9902396,23467859:268673 +k1,23123:12009424,23467859:268743 +k1,23123:13044283,23467859:268743 +k1,23123:14702388,23467859:268742 +k1,23123:15587169,23467859:268743 +k1,23123:18487183,23467859:268743 +k1,23123:20839971,23467859:268743 +k1,23123:23753092,23467859:268743 +k1,23123:25836527,23467859:268743 +k1,23123:26756698,23467859:268743 +k1,23123:28044525,23467859:268742 +k1,23123:29582045,23467859:268743 +k1,23123:30510080,23467859:268743 +k1,23123:32168186,23467859:268743 +k1,23124:32583029,23467859:0 +) +(1,23124:6630773,24332939:25952256,513147,134348 +k1,23123:9879392,24332939:222822 +k1,23123:11206497,24332939:222823 +k1,23123:13840389,24332939:222822 +k1,23123:15046251,24332939:222822 +k1,23123:16311096,24332939:222823 +k1,23123:17923281,24332939:222822 +k1,23123:19410949,24332939:222823 +k1,23123:21204669,24332939:222822 +k1,23123:23788098,24332939:222822 +k1,23123:25077192,24332939:222823 +k1,23123:25951442,24332939:222822 +k1,23123:26861737,24332939:222822 +k1,23123:27700598,24332939:222823 +k1,23123:30999680,24332939:222822 +k1,23123:32583029,24332939:0 +) +(1,23124:6630773,25198019:25952256,513147,134348 +k1,23123:7993921,25198019:206438 +k1,23123:9304642,25198019:206439 +k1,23123:10603565,25198019:206438 +k1,23123:13536302,25198019:206439 +k1,23123:16145290,25198019:206438 +k1,23123:17011021,25198019:206439 +k1,23123:18606822,25198019:206438 +k1,23123:20380881,25198019:206438 +k1,23123:21634585,25198019:206439 +k1,23123:23328035,25198019:206438 +k1,23123:24217359,25198019:206439 +k1,23123:25991418,25198019:206438 +k1,23123:29351449,25198019:206439 +k1,23123:31923737,25198019:206438 +k1,23124:32583029,25198019:0 +) +(1,23124:6630773,26063099:25952256,473825,0 +k1,23124:32583028,26063099:25484984 +g1,23124:32583028,26063099 +) +(1,23126:6630773,26928179:25952256,513147,134348 +h1,23125:6630773,26928179:983040,0,0 +k1,23125:9483340,26928179:152484 +k1,23125:13365479,26928179:152485 +k1,23125:13932759,26928179:152437 +k1,23125:16995698,26928179:152485 +k1,23125:19674595,26928179:152484 +k1,23125:22008773,26928179:152484 +k1,23125:22820550,26928179:152485 +k1,23125:24362397,26928179:152484 +k1,23125:26326296,26928179:152484 +k1,23125:27094818,26928179:152484 +k1,23125:28266388,26928179:152485 +k1,23125:30072345,26928179:152484 +k1,23125:32583029,26928179:0 +) +(1,23126:6630773,27793259:25952256,513147,134348 +k1,23125:9159414,27793259:194249 +k1,23125:12648157,27793259:194248 +k1,23125:13603934,27793259:194249 +k1,23125:15232110,27793259:194248 +k1,23125:16014872,27793259:194249 +k1,23125:17281290,27793259:194249 +k1,23125:19210931,27793259:194248 +k1,23125:22167523,27793259:194249 +k1,23125:26642583,27793259:194248 +k1,23125:29472035,27793259:194249 +k1,23125:32583029,27793259:0 +) +(1,23126:6630773,28658339:25952256,513147,126483 +k1,23125:8221029,28658339:195650 +k1,23125:9075972,28658339:195651 +k1,23125:10364107,28658339:195650 +k1,23125:11751202,28658339:195650 +k1,23125:16196207,28658339:195651 +k1,23125:19512026,28658339:195650 +k1,23125:20323714,28658339:195650 +k1,23125:21953293,28658339:195651 +k1,23125:22563783,28658339:195647 +k1,23125:24199259,28658339:195650 +k1,23125:25046337,28658339:195650 +k1,23125:28172103,28658339:195651 +k1,23125:31391584,28658339:195650 +k1,23125:32583029,28658339:0 +) +(1,23126:6630773,29523419:25952256,513147,134348 +k1,23125:10180130,29523419:240444 +k1,23125:11988195,29523419:240444 +k1,23125:13618003,29523419:240445 +k1,23125:17266319,29523419:240444 +k1,23125:19196281,29523419:240444 +k1,23125:21128865,29523419:240444 +k1,23125:25098964,29523419:240445 +k1,23125:28249862,29523419:240444 +k1,23125:31420421,29523419:240444 +k1,23126:32583029,29523419:0 +) +(1,23126:6630773,30388499:25952256,513147,134348 +k1,23125:10006592,30388499:182905 +k1,23125:12006154,30388499:182904 +k1,23125:15918713,30388499:182905 +k1,23125:19012072,30388499:182905 +k1,23125:20910710,30388499:182905 +k1,23125:21551711,30388499:182904 +k1,23125:24364576,30388499:182905 +k1,23125:25198909,30388499:182905 +k1,23125:27563508,30388499:182905 +k1,23125:28937857,30388499:182904 +k1,23125:31193666,30388499:182905 +k1,23125:32583029,30388499:0 +) +(1,23126:6630773,31253579:25952256,513147,126483 +k1,23125:8903565,31253579:234622 +k1,23125:9754224,31253579:234621 +k1,23125:10971886,31253579:234622 +k1,23125:13717191,31253579:234621 +k1,23125:15018084,31253579:234622 +k1,23125:18547200,31253579:234621 +k1,23125:19543350,31253579:234622 +k1,23125:21211900,31253579:234622 +k1,23125:21861329,31253579:234586 +k1,23125:25295418,31253579:234621 +k1,23125:27247083,31253579:234622 +k1,23125:28140996,31253579:234621 +k1,23125:30072345,31253579:234622 +k1,23125:32583029,31253579:0 +) +(1,23126:6630773,32118659:25952256,513147,134348 +k1,23125:7828509,32118659:206176 +k1,23125:11905241,32118659:206176 +k1,23125:14508725,32118659:206177 +k1,23125:16404419,32118659:206176 +k1,23125:18642866,32118659:206176 +k1,23125:19840602,32118659:206176 +k1,23125:20662816,32118659:206176 +k1,23125:24522625,32118659:206177 +k1,23125:25994957,32118659:206176 +k1,23125:29066367,32118659:206176 +k1,23125:32583029,32118659:0 +) +(1,23126:6630773,32983739:25952256,513147,134348 +k1,23125:8672100,32983739:193212 +k1,23125:11992690,32983739:193212 +k1,23125:12845195,32983739:193213 +k1,23125:14427770,32983739:193212 +k1,23125:15885827,32983739:193212 +k1,23125:17646660,32983739:193212 +k1,23125:19815782,32983739:193212 +k1,23125:23810082,32983739:193212 +k1,23125:24994855,32983739:193213 +k1,23125:28274157,32983739:193212 +k1,23125:29753185,32983739:193212 +k1,23126:32583029,32983739:0 +k1,23126:32583029,32983739:0 +) +(1,23127:6630773,35814899:25952256,32768,229376 +(1,23127:6630773,35814899:0,32768,229376 +(1,23127:6630773,35814899:5505024,32768,229376 +r1,23162:12135797,35814899:5505024,262144,229376 +) +k1,23127:6630773,35814899:-5505024 +) +(1,23127:6630773,35814899:25952256,32768,0 +r1,23162:32583029,35814899:25952256,32768,0 +) +) +(1,23127:6630773,37446751:25952256,606339,161218 +(1,23127:6630773,37446751:2464678,582746,14155 +g1,23127:6630773,37446751 +g1,23127:9095451,37446751 +) +g1,23127:12963124,37446751 +g1,23127:15162775,37446751 +g1,23127:16178059,37446751 +g1,23127:18166946,37446751 +k1,23127:32583029,37446751:11299453 +g1,23127:32583029,37446751 +) +v1,23130:6630773,38524822:0,393216,0 +(1,23134:6630773,38865505:25952256,733899,196608 +g1,23134:6630773,38865505 +g1,23134:6630773,38865505 +g1,23134:6434165,38865505 +(1,23134:6434165,38865505:0,733899,196608 +r1,23162:32779637,38865505:26345472,930507,196608 +k1,23134:6434165,38865505:-26345472 +) +(1,23134:6434165,38865505:26345472,733899,196608 +[1,23134:6630773,38865505:25952256,537291,0 +(1,23132:6630773,38752653:25952256,424439,112852 +(1,23131:6630773,38752653:0,0,0 +g1,23131:6630773,38752653 +g1,23131:6630773,38752653 +g1,23131:6303093,38752653 +(1,23131:6303093,38752653:0,0,0 +) +g1,23131:6630773,38752653 +) +k1,23132:6630773,38752653:0 +h1,23132:20904792,38752653:0,0,0 +k1,23132:32583029,38752653:11678237 +g1,23132:32583029,38752653 +) +] +) +g1,23134:32583029,38865505 +g1,23134:6630773,38865505 +g1,23134:6630773,38865505 +g1,23134:32583029,38865505 +g1,23134:32583029,38865505 +) +h1,23134:6630773,39062113:0,0,0 +(1,23138:6630773,39927193:25952256,513147,126483 +h1,23137:6630773,39927193:983040,0,0 +k1,23137:8621897,39927193:179054 +k1,23137:9918994,39927193:179053 +k1,23137:11117133,39927193:179054 +k1,23137:14287905,39927193:179053 +k1,23137:17225369,39927193:179054 +k1,23137:18020460,39927193:179053 +k1,23137:19402755,39927193:179054 +k1,23137:22173103,39927193:179054 +k1,23137:23522629,39927193:179053 +k1,23137:25231949,39927193:179054 +k1,23137:26717135,39927193:179053 +k1,23137:27547617,39927193:179054 +k1,23137:29102926,39927193:179053 +k1,23137:30974120,39927193:179054 +k1,23138:32583029,39927193:0 +) +(1,23138:6630773,40792273:25952256,513147,134348 +k1,23137:8264667,40792273:226181 +k1,23137:10058469,40792273:226181 +k1,23137:11303735,40792273:226181 +k1,23137:13630345,40792273:226181 +k1,23137:15088603,40792273:226181 +k1,23137:17593471,40792273:226181 +h1,23137:18564059,40792273:0,0,0 +k1,23137:18790240,40792273:226181 +k1,23137:19825791,40792273:226181 +k1,23137:21550125,40792273:226181 +h1,23137:22745502,40792273:0,0,0 +k1,23137:22971683,40792273:226181 +k1,23137:24145515,40792273:226181 +k1,23137:26489164,40792273:226181 +k1,23137:27524715,40792273:226181 +k1,23137:28769981,40792273:226181 +k1,23137:30088647,40792273:226181 +k1,23137:30974120,40792273:226181 +k1,23138:32583029,40792273:0 +) +(1,23138:6630773,41657353:25952256,505283,134348 +k1,23138:32583029,41657353:24285020 +g1,23138:32583029,41657353 +) +v1,23140:6630773,42342208:0,393216,0 +(1,23162:6630773,45415705:25952256,3466713,196608 +g1,23162:6630773,45415705 +g1,23162:6630773,45415705 +g1,23162:6434165,45415705 +(1,23162:6434165,45415705:0,3466713,196608 +r1,23162:32779637,45415705:26345472,3663321,196608 +k1,23162:6434165,45415705:-26345472 +) +(1,23162:6434165,45415705:26345472,3466713,196608 +[1,23162:6630773,45415705:25952256,3270105,0 +(1,23142:6630773,42570039:25952256,424439,106246 +(1,23141:6630773,42570039:0,0,0 +g1,23141:6630773,42570039 +g1,23141:6630773,42570039 +g1,23141:6303093,42570039 +(1,23141:6303093,42570039:0,0,0 +) +g1,23141:6630773,42570039 +) +k1,23142:6630773,42570039:0 +h1,23142:12937898,42570039:0,0,0 +k1,23142:32583030,42570039:19645132 +g1,23142:32583030,42570039 +) +(1,23143:6630773,43254894:25952256,424439,106246 +h1,23143:6630773,43254894:0,0,0 +k1,23143:6630773,43254894:0 +h1,23143:11610082,43254894:0,0,0 +k1,23143:32583030,43254894:20972948 +g1,23143:32583030,43254894 +) +(1,23144:6630773,43939749:25952256,424439,106246 +h1,23144:6630773,43939749:0,0,0 +k1,23144:6630773,43939749:0 +h1,23144:11278129,43939749:0,0,0 +k1,23144:32583029,43939749:21304900 +g1,23144:32583029,43939749 +) +(1,23145:6630773,44624604:25952256,424439,112852 +h1,23145:6630773,44624604:0,0,0 +k1,23145:6630773,44624604:0 +h1,23145:11942036,44624604:0,0,0 +k1,23145:32583028,44624604:20640992 +g1,23145:32583028,44624604 +) +(1,23146:6630773,45309459:25952256,424439,106246 +h1,23146:6630773,45309459:0,0,0 +k1,23146:6630773,45309459:0 +h1,23146:11278129,45309459:0,0,0 +k1,23146:32583029,45309459:21304900 +g1,23146:32583029,45309459 +) +] +) +g1,23162:32583029,45415705 +g1,23162:6630773,45415705 +g1,23162:6630773,45415705 +g1,23162:32583029,45415705 +g1,23162:32583029,45415705 +) +] +(1,23162:32583029,45706769:0,0,0 +g1,23162:32583029,45706769 +) +) +] +(1,23162:6630773,47279633:25952256,0,0 +h1,23162:6630773,47279633:25952256,0,0 +) +] +(1,23162:4262630,4025873:0,0,0 +[1,23162:-473656,4025873:0,0,0 +(1,23162:-473656,-710413:0,0,0 +(1,23162:-473656,-710413:0,0,0 +g1,23162:-473656,-710413 +) +g1,23162:-473656,-710413 ) ] ) ] !21205 -}399 -Input:4362:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4363:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4364:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}400 +Input:4366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4368:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{400 -[1,23206:4262630,47279633:28320399,43253760,0 -(1,23206:4262630,4025873:0,0,0 -[1,23206:-473656,4025873:0,0,0 -(1,23206:-473656,-710413:0,0,0 -(1,23206:-473656,-644877:0,0,0 -k1,23206:-473656,-644877:-65536 +{401 +[1,23204:4262630,47279633:28320399,43253760,0 +(1,23204:4262630,4025873:0,0,0 +[1,23204:-473656,4025873:0,0,0 +(1,23204:-473656,-710413:0,0,0 +(1,23204:-473656,-644877:0,0,0 +k1,23204:-473656,-644877:-65536 ) -(1,23206:-473656,4736287:0,0,0 -k1,23206:-473656,4736287:5209943 +(1,23204:-473656,4736287:0,0,0 +k1,23204:-473656,4736287:5209943 ) -g1,23206:-473656,-710413 +g1,23204:-473656,-710413 ) ] ) -[1,23206:6630773,47279633:25952256,43253760,0 -[1,23206:6630773,4812305:25952256,786432,0 -(1,23206:6630773,4812305:25952256,505283,126483 -(1,23206:6630773,4812305:25952256,505283,126483 -g1,23206:3078558,4812305 -[1,23206:3078558,4812305:0,0,0 -(1,23206:3078558,2439708:0,1703936,0 -k1,23206:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23206:2537886,2439708:1179648,16384,0 +[1,23204:6630773,47279633:25952256,43253760,0 +[1,23204:6630773,4812305:25952256,786432,0 +(1,23204:6630773,4812305:25952256,505283,126483 +(1,23204:6630773,4812305:25952256,505283,126483 +g1,23204:3078558,4812305 +[1,23204:3078558,4812305:0,0,0 +(1,23204:3078558,2439708:0,1703936,0 +k1,23204:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23204:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23206:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23204:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23206:3078558,4812305:0,0,0 -(1,23206:3078558,2439708:0,1703936,0 -g1,23206:29030814,2439708 -g1,23206:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23206:36151628,1915420:16384,1179648,0 +[1,23204:3078558,4812305:0,0,0 +(1,23204:3078558,2439708:0,1703936,0 +g1,23204:29030814,2439708 +g1,23204:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23204:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23206:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23204:37855564,2439708:1179648,16384,0 ) ) -k1,23206:3078556,2439708:-34777008 +k1,23204:3078556,2439708:-34777008 ) ] -[1,23206:3078558,4812305:0,0,0 -(1,23206:3078558,49800853:0,16384,2228224 -k1,23206:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23206:2537886,49800853:1179648,16384,0 +[1,23204:3078558,4812305:0,0,0 +(1,23204:3078558,49800853:0,16384,2228224 +k1,23204:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23204:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23206:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23204:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23206:3078558,4812305:0,0,0 -(1,23206:3078558,49800853:0,16384,2228224 -g1,23206:29030814,49800853 -g1,23206:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23206:36151628,51504789:16384,1179648,0 +[1,23204:3078558,4812305:0,0,0 +(1,23204:3078558,49800853:0,16384,2228224 +g1,23204:29030814,49800853 +g1,23204:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23204:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23206:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23204:37855564,49800853:1179648,16384,0 ) ) -k1,23206:3078556,49800853:-34777008 +k1,23204:3078556,49800853:-34777008 ) ] -g1,23206:6630773,4812305 -g1,23206:6630773,4812305 -g1,23206:7909380,4812305 -g1,23206:10252947,4812305 -g1,23206:11662626,4812305 -g1,23206:15310359,4812305 -k1,23206:31387652,4812305:16077293 -) -) -] -[1,23206:6630773,45706769:25952256,40108032,0 -(1,23206:6630773,45706769:25952256,40108032,0 -(1,23206:6630773,45706769:0,0,0 -g1,23206:6630773,45706769 -) -[1,23206:6630773,45706769:25952256,40108032,0 -v1,23164:6630773,6254097:0,393216,0 -(1,23164:6630773,15497895:25952256,9637014,196608 -g1,23164:6630773,15497895 -g1,23164:6630773,15497895 -g1,23164:6434165,15497895 -(1,23164:6434165,15497895:0,9637014,196608 -r1,23206:32779637,15497895:26345472,9833622,196608 -k1,23164:6434165,15497895:-26345472 -) -(1,23164:6434165,15497895:26345472,9637014,196608 -[1,23164:6630773,15497895:25952256,9440406,0 -(1,23149:6630773,6481928:25952256,424439,106246 -h1,23149:6630773,6481928:0,0,0 -k1,23149:6630773,6481928:0 -h1,23149:11278129,6481928:0,0,0 -k1,23149:32583029,6481928:21304900 -g1,23149:32583029,6481928 -) -(1,23150:6630773,7166783:25952256,424439,106246 -h1,23150:6630773,7166783:0,0,0 -k1,23150:6630773,7166783:0 -h1,23150:11278129,7166783:0,0,0 -k1,23150:32583029,7166783:21304900 -g1,23150:32583029,7166783 -) -(1,23151:6630773,7851638:25952256,424439,106246 -h1,23151:6630773,7851638:0,0,0 -k1,23151:6630773,7851638:0 -h1,23151:11610082,7851638:0,0,0 -k1,23151:32583030,7851638:20972948 -g1,23151:32583030,7851638 -) -(1,23152:6630773,8536493:25952256,424439,106246 -h1,23152:6630773,8536493:0,0,0 -k1,23152:6630773,8536493:0 -h1,23152:10946175,8536493:0,0,0 -k1,23152:32583029,8536493:21636854 -g1,23152:32583029,8536493 -) -(1,23153:6630773,9221348:25952256,424439,106246 -h1,23153:6630773,9221348:0,0,0 -k1,23153:6630773,9221348:0 -h1,23153:11942036,9221348:0,0,0 -k1,23153:32583028,9221348:20640992 -g1,23153:32583028,9221348 -) -(1,23154:6630773,9906203:25952256,431045,106246 -h1,23154:6630773,9906203:0,0,0 -k1,23154:6630773,9906203:0 -h1,23154:12273990,9906203:0,0,0 -k1,23154:32583030,9906203:20309040 -g1,23154:32583030,9906203 -) -(1,23155:6630773,10591058:25952256,431045,112852 -h1,23155:6630773,10591058:0,0,0 -k1,23155:6630773,10591058:0 -h1,23155:11942036,10591058:0,0,0 -k1,23155:32583028,10591058:20640992 -g1,23155:32583028,10591058 -) -(1,23156:6630773,11275913:25952256,424439,106246 -h1,23156:6630773,11275913:0,0,0 -k1,23156:6630773,11275913:0 -h1,23156:11278129,11275913:0,0,0 -k1,23156:32583029,11275913:21304900 -g1,23156:32583029,11275913 -) -(1,23157:6630773,11960768:25952256,424439,106246 -h1,23157:6630773,11960768:0,0,0 -k1,23157:6630773,11960768:0 -h1,23157:10946175,11960768:0,0,0 -k1,23157:32583029,11960768:21636854 -g1,23157:32583029,11960768 -) -(1,23158:6630773,12645623:25952256,424439,106246 -h1,23158:6630773,12645623:0,0,0 -k1,23158:6630773,12645623:0 -h1,23158:10614221,12645623:0,0,0 -k1,23158:32583029,12645623:21968808 -g1,23158:32583029,12645623 -) -(1,23159:6630773,13330478:25952256,431045,106246 -h1,23159:6630773,13330478:0,0,0 -k1,23159:6630773,13330478:0 -h1,23159:11278129,13330478:0,0,0 -k1,23159:32583029,13330478:21304900 -g1,23159:32583029,13330478 -) -(1,23160:6630773,14015333:25952256,424439,106246 -h1,23160:6630773,14015333:0,0,0 -k1,23160:6630773,14015333:0 -h1,23160:11610082,14015333:0,0,0 -k1,23160:32583030,14015333:20972948 -g1,23160:32583030,14015333 -) -(1,23161:6630773,14700188:25952256,424439,106246 -h1,23161:6630773,14700188:0,0,0 -k1,23161:6630773,14700188:0 -h1,23161:12605944,14700188:0,0,0 -k1,23161:32583028,14700188:19977084 -g1,23161:32583028,14700188 -) -(1,23162:6630773,15385043:25952256,424439,112852 -h1,23162:6630773,15385043:0,0,0 -k1,23162:6630773,15385043:0 -h1,23162:12273990,15385043:0,0,0 -k1,23162:32583030,15385043:20309040 -g1,23162:32583030,15385043 -) -] -) -g1,23164:32583029,15497895 -g1,23164:6630773,15497895 -g1,23164:6630773,15497895 -g1,23164:32583029,15497895 -g1,23164:32583029,15497895 -) -h1,23164:6630773,15694503:0,0,0 -v1,23168:6630773,16559583:0,393216,0 -(1,23196:6630773,30646665:25952256,14480298,0 -g1,23196:6630773,30646665 -g1,23196:6237557,30646665 -r1,23206:6368629,30646665:131072,14480298,0 -g1,23196:6567858,30646665 -g1,23196:6764466,30646665 -[1,23196:6764466,30646665:25818563,14480298,0 -(1,23169:6764466,16920760:25818563,754393,260573 -(1,23168:6764466,16920760:0,754393,260573 -r1,23206:7856192,16920760:1091726,1014966,260573 -k1,23168:6764466,16920760:-1091726 -) -(1,23168:6764466,16920760:1091726,754393,260573 -) -k1,23168:8170218,16920760:314026 -k1,23168:8497898,16920760:327680 -k1,23168:10528968,16920760:314027 -k1,23168:12232357,16920760:314026 -k1,23168:13811228,16920760:314026 -k1,23168:15638481,16920760:314027 -k1,23168:16568545,16920760:314026 -k1,23168:18085812,16920760:314026 -k1,23168:19591284,16920760:314027 -k1,23168:21607280,16920760:314026 -k1,23168:24669231,16920760:314026 -k1,23168:25974818,16920760:314027 -k1,23168:29072813,16920760:314026 -k1,23168:30002877,16920760:314026 -k1,23168:32583029,16920760:0 -) -(1,23169:6764466,17785840:25818563,513147,134348 -k1,23168:10964892,17785840:272199 -k1,23168:11864926,17785840:272199 -k1,23168:14803130,17785840:272199 -k1,23168:15726757,17785840:272199 -k1,23168:17018041,17785840:272199 -k1,23168:17705009,17785840:272125 -k1,23168:19366571,17785840:272199 -k1,23168:22102268,17785840:272199 -k1,23168:23393552,17785840:272199 -k1,23168:26245903,17785840:272199 -k1,23168:29186073,17785840:272199 -k1,23168:30771614,17785840:272199 -k1,23168:32583029,17785840:0 -) -(1,23169:6764466,18650920:25818563,513147,134348 -k1,23168:7665938,18650920:285434 -k1,23168:10213676,18650920:285435 -k1,23168:13009794,18650920:285434 -k1,23168:14808455,18650920:285435 -k1,23168:15709927,18650920:285434 -k1,23168:18987080,18650920:285434 -k1,23168:19931807,18650920:285435 -k1,23168:23389184,18650920:285434 -k1,23168:25237653,18650920:285435 -k1,23168:26719774,18650920:285434 -k1,23168:28318550,18650920:285434 -k1,23168:29708267,18650920:285435 -k1,23168:30741467,18650920:285434 -k1,23168:32583029,18650920:0 -) -(1,23169:6764466,19516000:25818563,513147,126483 -k1,23168:8393808,19516000:217041 -k1,23168:10178470,19516000:217041 -k1,23168:11414596,19516000:217041 -k1,23168:12046462,19516000:217023 -k1,23168:14537602,19516000:217041 -k1,23168:15437527,19516000:217040 -k1,23168:17222189,19516000:217041 -k1,23168:17795090,19516000:217041 -k1,23168:19522081,19516000:217041 -k1,23168:20355160,19516000:217041 -k1,23168:20928061,19516000:217041 -k1,23168:22639323,19516000:217041 -k1,23168:24950895,19516000:217041 -k1,23168:25795770,19516000:217040 -k1,23168:27216052,19516000:217041 -k1,23168:29850716,19516000:217041 -k1,23168:31086842,19516000:217041 -k1,23168:32583029,19516000:0 -) -(1,23169:6764466,20381080:25818563,513147,134348 -k1,23168:9996100,20381080:239915 -k1,23168:12634633,20381080:239915 -k1,23168:13893632,20381080:239914 -k1,23168:15514391,20381080:239915 -k1,23168:16855311,20381080:239915 -k1,23168:19213350,20381080:239915 -k1,23168:20472349,20381080:239914 -k1,23168:22633124,20381080:239915 -(1,23168:22633124,20381080:0,452978,115847 -r1,23206:25805084,20381080:3171960,568825,115847 -k1,23168:22633124,20381080:-3171960 -) -(1,23168:22633124,20381080:3171960,452978,115847 -k1,23168:22633124,20381080:3277 -h1,23168:25801807,20381080:0,411205,112570 -) -k1,23168:26044999,20381080:239915 -k1,23168:27852535,20381080:239915 -k1,23168:29111534,20381080:239914 -k1,23168:31931601,20381080:239915 -k1,23168:32583029,20381080:0 -) -(1,23169:6764466,21246160:25818563,513147,134348 -g1,23168:7982780,21246160 -g1,23168:10526232,21246160 -g1,23168:13312167,21246160 -k1,23169:32583028,21246160:17297572 -g1,23169:32583028,21246160 -) -(1,23171:6764466,22111240:25818563,513147,134348 -h1,23170:6764466,22111240:983040,0,0 -k1,23170:9215840,22111240:271647 -k1,23170:10800828,22111240:271646 -k1,23170:12176757,22111240:271647 -k1,23170:13196169,22111240:271646 -k1,23170:15585940,22111240:271647 -k1,23170:16619115,22111240:271647 -k1,23170:19413897,22111240:271646 -k1,23170:20704629,22111240:271647 -k1,23170:22148714,22111240:271646 -k1,23170:25937023,22111240:271647 -k1,23170:28250771,22111240:271646 -k1,23170:31563944,22111240:271647 -k1,23170:32583029,22111240:0 -) -(1,23171:6764466,22976320:25818563,513147,126483 -k1,23170:9271341,22976320:162652 -k1,23170:11354853,22976320:162652 -k1,23170:12049002,22976320:162652 -k1,23170:13230739,22976320:162652 -k1,23170:14550102,22976320:162653 -k1,23170:15997260,22976320:162652 -k1,23170:17292374,22976320:162652 -k1,23170:18202792,22976320:162652 -k1,23170:19878670,22976320:162652 -k1,23170:20692750,22976320:162652 -k1,23170:21973446,22976320:162652 -k1,23170:23155183,22976320:162652 -k1,23170:24814023,22976320:162653 -k1,23170:27968394,22976320:162652 -k1,23170:28747084,22976320:162652 -k1,23170:30112977,22976320:162652 -k1,23171:32583029,22976320:0 -k1,23171:32583029,22976320:0 -) -v1,23173:6764466,23661175:0,393216,0 -(1,23181:6764466,25476216:25818563,2208257,196608 -g1,23181:6764466,25476216 -g1,23181:6764466,25476216 -g1,23181:6567858,25476216 -(1,23181:6567858,25476216:0,2208257,196608 -r1,23206:32779637,25476216:26211779,2404865,196608 -k1,23181:6567857,25476216:-26211780 -) -(1,23181:6567858,25476216:26211779,2208257,196608 -[1,23181:6764466,25476216:25818563,2011649,0 -(1,23175:6764466,23895612:25818563,431045,112852 -(1,23174:6764466,23895612:0,0,0 -g1,23174:6764466,23895612 -g1,23174:6764466,23895612 -g1,23174:6436786,23895612 -(1,23174:6436786,23895612:0,0,0 -) -g1,23174:6764466,23895612 -) -g1,23175:9752051,23895612 -g1,23175:10747913,23895612 -g1,23175:18382853,23895612 -g1,23175:21038485,23895612 -g1,23175:21702393,23895612 -h1,23175:26017794,23895612:0,0,0 -k1,23175:32583029,23895612:6565235 -g1,23175:32583029,23895612 -) -(1,23176:6764466,24580467:25818563,431045,112852 -h1,23176:6764466,24580467:0,0,0 -g1,23176:13403544,24580467 -g1,23176:15063314,24580467 -g1,23176:18382853,24580467 -g1,23176:19046761,24580467 -g1,23176:21038485,24580467 -g1,23176:24358024,24580467 -g1,23176:25021932,24580467 -h1,23176:26681702,24580467:0,0,0 -k1,23176:32583029,24580467:5901327 -g1,23176:32583029,24580467 -) -(1,23180:6764466,25396394:25818563,424439,79822 -(1,23178:6764466,25396394:0,0,0 -g1,23178:6764466,25396394 -g1,23178:6764466,25396394 -g1,23178:6436786,25396394 -(1,23178:6436786,25396394:0,0,0 -) -g1,23178:6764466,25396394 -) -g1,23180:7760328,25396394 -g1,23180:9088144,25396394 -h1,23180:10415960,25396394:0,0,0 -k1,23180:32583028,25396394:22167068 -g1,23180:32583028,25396394 -) -] -) -g1,23181:32583029,25476216 -g1,23181:6764466,25476216 -g1,23181:6764466,25476216 -g1,23181:32583029,25476216 -g1,23181:32583029,25476216 -) -h1,23181:6764466,25672824:0,0,0 -(1,23185:6764466,26537904:25818563,513147,126483 -h1,23184:6764466,26537904:983040,0,0 -k1,23184:9713422,26537904:248873 -k1,23184:12954014,26537904:248873 -k1,23184:14817694,26537904:248873 -k1,23184:16379908,26537904:248872 -k1,23184:17280209,26537904:248873 -k1,23184:19047551,26537904:248873 -k1,23184:20487869,26537904:248873 -k1,23184:21755827,26537904:248873 -k1,23184:25521362,26537904:248873 -k1,23184:27638665,26537904:248872 -k1,23184:30030565,26537904:248873 -k1,23184:31563944,26537904:248873 -k1,23184:32583029,26537904:0 -) -(1,23185:6764466,27402984:25818563,513147,134348 -g1,23184:8884555,27402984 -g1,23184:10597010,27402984 -g1,23184:11412277,27402984 -g1,23184:13308233,27402984 -g1,23184:16499181,27402984 -g1,23184:18703156,27402984 -g1,23184:21474673,27402984 -g1,23184:22131999,27402984 -g1,23184:22797189,27402984 -g1,23184:24062689,27402984 -k1,23185:32583029,27402984:6558192 -g1,23185:32583029,27402984 -) -v1,23187:6764466,28087839:0,393216,0 -(1,23194:6764466,30450057:25818563,2755434,196608 -g1,23194:6764466,30450057 -g1,23194:6764466,30450057 -g1,23194:6567858,30450057 -(1,23194:6567858,30450057:0,2755434,196608 -r1,23206:32779637,30450057:26211779,2952042,196608 -k1,23194:6567857,30450057:-26211780 -) -(1,23194:6567858,30450057:26211779,2755434,196608 -[1,23194:6764466,30450057:25818563,2558826,0 -(1,23189:6764466,28315670:25818563,424439,106246 -(1,23188:6764466,28315670:0,0,0 -g1,23188:6764466,28315670 -g1,23188:6764466,28315670 -g1,23188:6436786,28315670 -(1,23188:6436786,28315670:0,0,0 -) -g1,23188:6764466,28315670 -) -g1,23189:10084005,28315670 -g1,23189:10747913,28315670 -h1,23189:13403544,28315670:0,0,0 -k1,23189:32583028,28315670:19179484 -g1,23189:32583028,28315670 -) -(1,23190:6764466,29000525:25818563,431045,106246 -h1,23190:6764466,29000525:0,0,0 -g1,23190:7760328,29000525 -g1,23190:16059176,29000525 -h1,23190:16391130,29000525:0,0,0 -k1,23190:32583029,29000525:16191899 -g1,23190:32583029,29000525 -) -(1,23191:6764466,29685380:25818563,424439,106246 -h1,23191:6764466,29685380:0,0,0 -g1,23191:7096420,29685380 -g1,23191:7428374,29685380 -k1,23191:7428374,29685380:0 -h1,23191:14399406,29685380:0,0,0 -k1,23191:32583030,29685380:18183624 -g1,23191:32583030,29685380 -) -(1,23192:6764466,30370235:25818563,424439,79822 -h1,23192:6764466,30370235:0,0,0 -h1,23192:7096420,30370235:0,0,0 -k1,23192:32583028,30370235:25486608 -g1,23192:32583028,30370235 -) -] -) -g1,23194:32583029,30450057 -g1,23194:6764466,30450057 -g1,23194:6764466,30450057 -g1,23194:32583029,30450057 -g1,23194:32583029,30450057 -) -h1,23194:6764466,30646665:0,0,0 -] -g1,23196:32583029,30646665 -) -h1,23196:6630773,30646665:0,0,0 -(1,23198:6630773,33477825:25952256,32768,229376 -(1,23198:6630773,33477825:0,32768,229376 -(1,23198:6630773,33477825:5505024,32768,229376 -r1,23206:12135797,33477825:5505024,262144,229376 -) -k1,23198:6630773,33477825:-5505024 -) -(1,23198:6630773,33477825:25952256,32768,0 -r1,23206:32583029,33477825:25952256,32768,0 -) -) -(1,23198:6630773,35109677:25952256,606339,151780 -(1,23198:6630773,35109677:2464678,582746,14155 -g1,23198:6630773,35109677 -g1,23198:9095451,35109677 -) -g1,23198:10753250,35109677 -g1,23198:13670127,35109677 -g1,23198:15379830,35109677 -k1,23198:32583029,35109677:12837715 -g1,23198:32583029,35109677 -) -(1,23202:6630773,36367973:25952256,513147,134348 -k1,23201:8091772,36367973:285939 -k1,23201:10758633,36367973:285938 -k1,23201:11703864,36367973:285939 -k1,23201:13303144,36367973:285938 -k1,23201:15698687,36367973:285939 -k1,23201:17373989,36367973:285939 -k1,23201:20039539,36367973:285938 -k1,23201:24045301,36367973:285939 -k1,23201:24990532,36367973:285939 -k1,23201:26295555,36367973:285938 -k1,23201:28761877,36367973:285939 -k1,23201:30561041,36367973:285938 -k1,23201:31794631,36367973:285939 -k1,23201:32583029,36367973:0 -) -(1,23202:6630773,37233053:25952256,513147,134348 -k1,23201:9985495,37233053:279773 -k1,23201:11461955,37233053:279773 -k1,23201:13333598,37233053:279773 -k1,23201:16458289,37233053:279773 -k1,23201:17269559,37233053:279773 -k1,23201:18833838,37233053:279773 -k1,23201:21875954,37233053:279773 -k1,23201:25209705,37233053:279773 -k1,23201:28065698,37233053:279773 -k1,23201:29820686,37233053:279773 -k1,23201:32583029,37233053:0 -) -(1,23202:6630773,38098133:25952256,513147,134348 -k1,23201:8435353,38098133:218609 -k1,23201:11820662,38098133:218609 -k1,23201:13058357,38098133:218610 -k1,23201:15361011,38098133:218609 -k1,23201:17092846,38098133:218609 -k1,23201:18259106,38098133:218609 -k1,23201:19460756,38098133:218610 -k1,23201:21747681,38098133:218609 -k1,23201:23157735,38098133:218609 -k1,23201:24359384,38098133:218609 -k1,23201:26530311,38098133:218609 -k1,23201:27376756,38098133:218610 -k1,23201:29347142,38098133:218609 -k1,23201:31436804,38098133:218609 -k1,23201:32583029,38098133:0 -) -(1,23202:6630773,38963213:25952256,513147,134348 -k1,23201:8465594,38963213:162997 -k1,23201:11990589,38963213:162998 -k1,23201:13542949,38963213:162997 -k1,23201:15019288,38963213:162997 -k1,23201:15798324,38963213:162998 -k1,23201:16317181,38963213:162997 -k1,23201:18456088,38963213:162997 -k1,23201:22076110,38963213:162998 -k1,23201:23107459,38963213:162997 -k1,23201:24800723,38963213:162998 -k1,23201:25615148,38963213:162997 -k1,23201:27921172,38963213:162997 -k1,23201:29368676,38963213:162998 -k1,23201:30514713,38963213:162997 -k1,23201:32583029,38963213:0 -) -(1,23202:6630773,39828293:25952256,513147,134348 -k1,23201:7842534,39828293:220201 -k1,23201:9602831,39828293:220201 -k1,23201:11855959,39828293:220201 -k1,23201:14747407,39828293:220201 -k1,23201:18021586,39828293:220201 -k1,23201:20818007,39828293:220201 -k1,23201:22820786,39828293:220200 -k1,23201:23518744,39828293:220201 -k1,23201:24758030,39828293:220201 -k1,23201:26809307,39828293:220201 -k1,23201:28542734,39828293:220201 -k1,23201:29414363,39828293:220201 -k1,23201:31563944,39828293:220201 -k1,23201:32583029,39828293:0 -) -(1,23202:6630773,40693373:25952256,513147,134348 -k1,23201:8115004,40693373:170889 -k1,23201:8817389,40693373:170888 -k1,23201:10593910,40693373:170889 -k1,23201:13603818,40693373:170888 -k1,23201:14426135,40693373:170889 -k1,23201:15344789,40693373:170888 -k1,23201:16380069,40693373:170860 -k1,23201:19386045,40693373:170889 -k1,23201:21890671,40693373:170889 -k1,23201:23009210,40693373:170888 -k1,23201:24163139,40693373:170889 -k1,23201:26402343,40693373:170888 -k1,23201:27764677,40693373:170889 -k1,23201:29714212,40693373:170888 -k1,23201:30501139,40693373:170889 -k1,23201:31086842,40693373:170860 -k1,23201:32583029,40693373:0 -) -(1,23202:6630773,41558453:25952256,505283,134348 -k1,23201:8956923,41558453:145767 -k1,23201:10168961,41558453:145767 -k1,23201:12030462,41558453:145768 -k1,23201:16246015,41558453:145767 -k1,23201:17201152,41558453:145767 -k1,23201:18366004,41558453:145767 -k1,23201:20892694,41558453:145767 -k1,23201:22624432,41558453:145767 -k1,23201:23453085,41558453:145768 -k1,23201:26382821,41558453:145767 -k1,23201:27392955,41558453:145714 -k1,23201:31202185,41558453:145767 -k1,23201:32583029,41558453:0 -) -(1,23202:6630773,42423533:25952256,505283,134348 -g1,23201:7361499,42423533 -g1,23201:10668445,42423533 -g1,23201:14076972,42423533 -g1,23201:15974239,42423533 -g1,23201:19656707,42423533 -g1,23201:20270779,42423533 -k1,23202:32583029,42423533:9349368 -g1,23202:32583029,42423533 -) -v1,23204:6630773,43288613:0,393216,0 -(1,23206:6630773,44641353:25952256,1745956,0 -g1,23206:6630773,44641353 -g1,23206:6237557,44641353 -r1,23206:6368629,44641353:131072,1745956,0 -g1,23206:6567858,44641353 -g1,23206:6764466,44641353 -[1,23206:6764466,44641353:25818563,1745956,0 -(1,23206:6764466,43649790:25818563,754393,260573 -(1,23204:6764466,43649790:0,754393,260573 -r1,23206:7856192,43649790:1091726,1014966,260573 -k1,23204:6764466,43649790:-1091726 -) -(1,23204:6764466,43649790:1091726,754393,260573 -) -k1,23204:8060675,43649790:204483 -k1,23204:8388355,43649790:327680 -k1,23204:8388355,43649790:0 -k1,23205:9634859,43649790:204482 -k1,23205:13036188,43649790:204483 -k1,23205:16756678,43649790:204483 -k1,23205:17944201,43649790:204483 -k1,23205:20216999,43649790:204482 -k1,23205:22601865,43649790:204483 -k1,23205:24561402,43649790:204483 -k1,23205:27137632,43649790:204482 -k1,23205:31084221,43649790:204483 -k1,23206:32583029,43649790:0 -) -(1,23206:6764466,44514870:25818563,505283,126483 -k1,23205:9052274,44514870:375467 -k1,23205:10619185,44514870:375466 -k1,23205:13366400,44514870:375467 -k1,23205:14354628,44514870:375466 -k1,23205:16331795,44514870:375467 -k1,23205:17863972,44514870:375467 -k1,23205:19485277,44514870:375466 -k1,23205:20902766,44514870:375467 -k1,23205:22297317,44514870:375466 -k1,23205:24750275,44514870:375467 -k1,23205:27755701,44514870:375466 -k1,23205:31647175,44514870:375467 -k1,23206:32583029,44514870:0 -) -] -g1,23206:32583029,44641353 -) -] -(1,23206:32583029,45706769:0,0,0 -g1,23206:32583029,45706769 -) -) -] -(1,23206:6630773,47279633:25952256,0,0 -h1,23206:6630773,47279633:25952256,0,0 -) -] -(1,23206:4262630,4025873:0,0,0 -[1,23206:-473656,4025873:0,0,0 -(1,23206:-473656,-710413:0,0,0 -(1,23206:-473656,-710413:0,0,0 -g1,23206:-473656,-710413 -) -g1,23206:-473656,-710413 +g1,23204:6630773,4812305 +g1,23204:6630773,4812305 +g1,23204:7909380,4812305 +g1,23204:10252947,4812305 +g1,23204:11662626,4812305 +g1,23204:15310359,4812305 +k1,23204:31387652,4812305:16077293 +) +) +] +[1,23204:6630773,45706769:25952256,40108032,0 +(1,23204:6630773,45706769:25952256,40108032,0 +(1,23204:6630773,45706769:0,0,0 +g1,23204:6630773,45706769 +) +[1,23204:6630773,45706769:25952256,40108032,0 +v1,23162:6630773,6254097:0,393216,0 +(1,23162:6630773,15497895:25952256,9637014,196608 +g1,23162:6630773,15497895 +g1,23162:6630773,15497895 +g1,23162:6434165,15497895 +(1,23162:6434165,15497895:0,9637014,196608 +r1,23204:32779637,15497895:26345472,9833622,196608 +k1,23162:6434165,15497895:-26345472 +) +(1,23162:6434165,15497895:26345472,9637014,196608 +[1,23162:6630773,15497895:25952256,9440406,0 +(1,23147:6630773,6481928:25952256,424439,106246 +h1,23147:6630773,6481928:0,0,0 +k1,23147:6630773,6481928:0 +h1,23147:11278129,6481928:0,0,0 +k1,23147:32583029,6481928:21304900 +g1,23147:32583029,6481928 +) +(1,23148:6630773,7166783:25952256,424439,106246 +h1,23148:6630773,7166783:0,0,0 +k1,23148:6630773,7166783:0 +h1,23148:11278129,7166783:0,0,0 +k1,23148:32583029,7166783:21304900 +g1,23148:32583029,7166783 +) +(1,23149:6630773,7851638:25952256,424439,106246 +h1,23149:6630773,7851638:0,0,0 +k1,23149:6630773,7851638:0 +h1,23149:11610082,7851638:0,0,0 +k1,23149:32583030,7851638:20972948 +g1,23149:32583030,7851638 +) +(1,23150:6630773,8536493:25952256,424439,106246 +h1,23150:6630773,8536493:0,0,0 +k1,23150:6630773,8536493:0 +h1,23150:10946175,8536493:0,0,0 +k1,23150:32583029,8536493:21636854 +g1,23150:32583029,8536493 +) +(1,23151:6630773,9221348:25952256,424439,106246 +h1,23151:6630773,9221348:0,0,0 +k1,23151:6630773,9221348:0 +h1,23151:11942036,9221348:0,0,0 +k1,23151:32583028,9221348:20640992 +g1,23151:32583028,9221348 +) +(1,23152:6630773,9906203:25952256,431045,106246 +h1,23152:6630773,9906203:0,0,0 +k1,23152:6630773,9906203:0 +h1,23152:12273990,9906203:0,0,0 +k1,23152:32583030,9906203:20309040 +g1,23152:32583030,9906203 +) +(1,23153:6630773,10591058:25952256,431045,112852 +h1,23153:6630773,10591058:0,0,0 +k1,23153:6630773,10591058:0 +h1,23153:11942036,10591058:0,0,0 +k1,23153:32583028,10591058:20640992 +g1,23153:32583028,10591058 +) +(1,23154:6630773,11275913:25952256,424439,106246 +h1,23154:6630773,11275913:0,0,0 +k1,23154:6630773,11275913:0 +h1,23154:11278129,11275913:0,0,0 +k1,23154:32583029,11275913:21304900 +g1,23154:32583029,11275913 +) +(1,23155:6630773,11960768:25952256,424439,106246 +h1,23155:6630773,11960768:0,0,0 +k1,23155:6630773,11960768:0 +h1,23155:10946175,11960768:0,0,0 +k1,23155:32583029,11960768:21636854 +g1,23155:32583029,11960768 +) +(1,23156:6630773,12645623:25952256,424439,106246 +h1,23156:6630773,12645623:0,0,0 +k1,23156:6630773,12645623:0 +h1,23156:10614221,12645623:0,0,0 +k1,23156:32583029,12645623:21968808 +g1,23156:32583029,12645623 +) +(1,23157:6630773,13330478:25952256,431045,106246 +h1,23157:6630773,13330478:0,0,0 +k1,23157:6630773,13330478:0 +h1,23157:11278129,13330478:0,0,0 +k1,23157:32583029,13330478:21304900 +g1,23157:32583029,13330478 +) +(1,23158:6630773,14015333:25952256,424439,106246 +h1,23158:6630773,14015333:0,0,0 +k1,23158:6630773,14015333:0 +h1,23158:11610082,14015333:0,0,0 +k1,23158:32583030,14015333:20972948 +g1,23158:32583030,14015333 +) +(1,23159:6630773,14700188:25952256,424439,106246 +h1,23159:6630773,14700188:0,0,0 +k1,23159:6630773,14700188:0 +h1,23159:12605944,14700188:0,0,0 +k1,23159:32583028,14700188:19977084 +g1,23159:32583028,14700188 +) +(1,23160:6630773,15385043:25952256,424439,112852 +h1,23160:6630773,15385043:0,0,0 +k1,23160:6630773,15385043:0 +h1,23160:12273990,15385043:0,0,0 +k1,23160:32583030,15385043:20309040 +g1,23160:32583030,15385043 +) +] +) +g1,23162:32583029,15497895 +g1,23162:6630773,15497895 +g1,23162:6630773,15497895 +g1,23162:32583029,15497895 +g1,23162:32583029,15497895 +) +h1,23162:6630773,15694503:0,0,0 +v1,23166:6630773,16559583:0,393216,0 +(1,23194:6630773,30646665:25952256,14480298,0 +g1,23194:6630773,30646665 +g1,23194:6237557,30646665 +r1,23204:6368629,30646665:131072,14480298,0 +g1,23194:6567858,30646665 +g1,23194:6764466,30646665 +[1,23194:6764466,30646665:25818563,14480298,0 +(1,23167:6764466,16920760:25818563,754393,260573 +(1,23166:6764466,16920760:0,754393,260573 +r1,23204:7856192,16920760:1091726,1014966,260573 +k1,23166:6764466,16920760:-1091726 +) +(1,23166:6764466,16920760:1091726,754393,260573 +) +k1,23166:8170218,16920760:314026 +k1,23166:8497898,16920760:327680 +k1,23166:10528968,16920760:314027 +k1,23166:12232357,16920760:314026 +k1,23166:13811228,16920760:314026 +k1,23166:15638481,16920760:314027 +k1,23166:16568545,16920760:314026 +k1,23166:18085812,16920760:314026 +k1,23166:19591284,16920760:314027 +k1,23166:21607280,16920760:314026 +k1,23166:24669231,16920760:314026 +k1,23166:25974818,16920760:314027 +k1,23166:29072813,16920760:314026 +k1,23166:30002877,16920760:314026 +k1,23166:32583029,16920760:0 +) +(1,23167:6764466,17785840:25818563,513147,134348 +k1,23166:10964892,17785840:272199 +k1,23166:11864926,17785840:272199 +k1,23166:14803130,17785840:272199 +k1,23166:15726757,17785840:272199 +k1,23166:17018041,17785840:272199 +k1,23166:17705009,17785840:272125 +k1,23166:19366571,17785840:272199 +k1,23166:22102268,17785840:272199 +k1,23166:23393552,17785840:272199 +k1,23166:26245903,17785840:272199 +k1,23166:29186073,17785840:272199 +k1,23166:30771614,17785840:272199 +k1,23166:32583029,17785840:0 +) +(1,23167:6764466,18650920:25818563,513147,134348 +k1,23166:7665938,18650920:285434 +k1,23166:10213676,18650920:285435 +k1,23166:13009794,18650920:285434 +k1,23166:14808455,18650920:285435 +k1,23166:15709927,18650920:285434 +k1,23166:18987080,18650920:285434 +k1,23166:19931807,18650920:285435 +k1,23166:23389184,18650920:285434 +k1,23166:25237653,18650920:285435 +k1,23166:26719774,18650920:285434 +k1,23166:28318550,18650920:285434 +k1,23166:29708267,18650920:285435 +k1,23166:30741467,18650920:285434 +k1,23166:32583029,18650920:0 +) +(1,23167:6764466,19516000:25818563,513147,126483 +k1,23166:8393808,19516000:217041 +k1,23166:10178470,19516000:217041 +k1,23166:11414596,19516000:217041 +k1,23166:12046462,19516000:217023 +k1,23166:14537602,19516000:217041 +k1,23166:15437527,19516000:217040 +k1,23166:17222189,19516000:217041 +k1,23166:17795090,19516000:217041 +k1,23166:19522081,19516000:217041 +k1,23166:20355160,19516000:217041 +k1,23166:20928061,19516000:217041 +k1,23166:22639323,19516000:217041 +k1,23166:24950895,19516000:217041 +k1,23166:25795770,19516000:217040 +k1,23166:27216052,19516000:217041 +k1,23166:29850716,19516000:217041 +k1,23166:31086842,19516000:217041 +k1,23166:32583029,19516000:0 +) +(1,23167:6764466,20381080:25818563,513147,134348 +k1,23166:9996100,20381080:239915 +k1,23166:12634633,20381080:239915 +k1,23166:13893632,20381080:239914 +k1,23166:15514391,20381080:239915 +k1,23166:16855311,20381080:239915 +k1,23166:19213350,20381080:239915 +k1,23166:20472349,20381080:239914 +k1,23166:22633124,20381080:239915 +(1,23166:22633124,20381080:0,452978,115847 +r1,23204:25805084,20381080:3171960,568825,115847 +k1,23166:22633124,20381080:-3171960 +) +(1,23166:22633124,20381080:3171960,452978,115847 +k1,23166:22633124,20381080:3277 +h1,23166:25801807,20381080:0,411205,112570 +) +k1,23166:26044999,20381080:239915 +k1,23166:27852535,20381080:239915 +k1,23166:29111534,20381080:239914 +k1,23166:31931601,20381080:239915 +k1,23166:32583029,20381080:0 +) +(1,23167:6764466,21246160:25818563,513147,134348 +g1,23166:7982780,21246160 +g1,23166:10526232,21246160 +g1,23166:13312167,21246160 +k1,23167:32583028,21246160:17297572 +g1,23167:32583028,21246160 +) +(1,23169:6764466,22111240:25818563,513147,134348 +h1,23168:6764466,22111240:983040,0,0 +k1,23168:9215840,22111240:271647 +k1,23168:10800828,22111240:271646 +k1,23168:12176757,22111240:271647 +k1,23168:13196169,22111240:271646 +k1,23168:15585940,22111240:271647 +k1,23168:16619115,22111240:271647 +k1,23168:19413897,22111240:271646 +k1,23168:20704629,22111240:271647 +k1,23168:22148714,22111240:271646 +k1,23168:25937023,22111240:271647 +k1,23168:28250771,22111240:271646 +k1,23168:31563944,22111240:271647 +k1,23168:32583029,22111240:0 +) +(1,23169:6764466,22976320:25818563,513147,126483 +k1,23168:9271341,22976320:162652 +k1,23168:11354853,22976320:162652 +k1,23168:12049002,22976320:162652 +k1,23168:13230739,22976320:162652 +k1,23168:14550102,22976320:162653 +k1,23168:15997260,22976320:162652 +k1,23168:17292374,22976320:162652 +k1,23168:18202792,22976320:162652 +k1,23168:19878670,22976320:162652 +k1,23168:20692750,22976320:162652 +k1,23168:21973446,22976320:162652 +k1,23168:23155183,22976320:162652 +k1,23168:24814023,22976320:162653 +k1,23168:27968394,22976320:162652 +k1,23168:28747084,22976320:162652 +k1,23168:30112977,22976320:162652 +k1,23169:32583029,22976320:0 +k1,23169:32583029,22976320:0 +) +v1,23171:6764466,23661175:0,393216,0 +(1,23179:6764466,25476216:25818563,2208257,196608 +g1,23179:6764466,25476216 +g1,23179:6764466,25476216 +g1,23179:6567858,25476216 +(1,23179:6567858,25476216:0,2208257,196608 +r1,23204:32779637,25476216:26211779,2404865,196608 +k1,23179:6567857,25476216:-26211780 +) +(1,23179:6567858,25476216:26211779,2208257,196608 +[1,23179:6764466,25476216:25818563,2011649,0 +(1,23173:6764466,23895612:25818563,431045,112852 +(1,23172:6764466,23895612:0,0,0 +g1,23172:6764466,23895612 +g1,23172:6764466,23895612 +g1,23172:6436786,23895612 +(1,23172:6436786,23895612:0,0,0 +) +g1,23172:6764466,23895612 +) +g1,23173:9752051,23895612 +g1,23173:10747913,23895612 +g1,23173:18382853,23895612 +g1,23173:21038485,23895612 +g1,23173:21702393,23895612 +h1,23173:26017794,23895612:0,0,0 +k1,23173:32583029,23895612:6565235 +g1,23173:32583029,23895612 +) +(1,23174:6764466,24580467:25818563,431045,112852 +h1,23174:6764466,24580467:0,0,0 +g1,23174:13403544,24580467 +g1,23174:15063314,24580467 +g1,23174:18382853,24580467 +g1,23174:19046761,24580467 +g1,23174:21038485,24580467 +g1,23174:24358024,24580467 +g1,23174:25021932,24580467 +h1,23174:26681702,24580467:0,0,0 +k1,23174:32583029,24580467:5901327 +g1,23174:32583029,24580467 +) +(1,23178:6764466,25396394:25818563,424439,79822 +(1,23176:6764466,25396394:0,0,0 +g1,23176:6764466,25396394 +g1,23176:6764466,25396394 +g1,23176:6436786,25396394 +(1,23176:6436786,25396394:0,0,0 +) +g1,23176:6764466,25396394 +) +g1,23178:7760328,25396394 +g1,23178:9088144,25396394 +h1,23178:10415960,25396394:0,0,0 +k1,23178:32583028,25396394:22167068 +g1,23178:32583028,25396394 +) +] +) +g1,23179:32583029,25476216 +g1,23179:6764466,25476216 +g1,23179:6764466,25476216 +g1,23179:32583029,25476216 +g1,23179:32583029,25476216 +) +h1,23179:6764466,25672824:0,0,0 +(1,23183:6764466,26537904:25818563,513147,126483 +h1,23182:6764466,26537904:983040,0,0 +k1,23182:9713422,26537904:248873 +k1,23182:12954014,26537904:248873 +k1,23182:14817694,26537904:248873 +k1,23182:16379908,26537904:248872 +k1,23182:17280209,26537904:248873 +k1,23182:19047551,26537904:248873 +k1,23182:20487869,26537904:248873 +k1,23182:21755827,26537904:248873 +k1,23182:25521362,26537904:248873 +k1,23182:27638665,26537904:248872 +k1,23182:30030565,26537904:248873 +k1,23182:31563944,26537904:248873 +k1,23182:32583029,26537904:0 +) +(1,23183:6764466,27402984:25818563,513147,134348 +g1,23182:8884555,27402984 +g1,23182:10597010,27402984 +g1,23182:11412277,27402984 +g1,23182:13308233,27402984 +g1,23182:16499181,27402984 +g1,23182:18703156,27402984 +g1,23182:21474673,27402984 +g1,23182:22131999,27402984 +g1,23182:22797189,27402984 +g1,23182:24062689,27402984 +k1,23183:32583029,27402984:6558192 +g1,23183:32583029,27402984 +) +v1,23185:6764466,28087839:0,393216,0 +(1,23192:6764466,30450057:25818563,2755434,196608 +g1,23192:6764466,30450057 +g1,23192:6764466,30450057 +g1,23192:6567858,30450057 +(1,23192:6567858,30450057:0,2755434,196608 +r1,23204:32779637,30450057:26211779,2952042,196608 +k1,23192:6567857,30450057:-26211780 +) +(1,23192:6567858,30450057:26211779,2755434,196608 +[1,23192:6764466,30450057:25818563,2558826,0 +(1,23187:6764466,28315670:25818563,424439,106246 +(1,23186:6764466,28315670:0,0,0 +g1,23186:6764466,28315670 +g1,23186:6764466,28315670 +g1,23186:6436786,28315670 +(1,23186:6436786,28315670:0,0,0 +) +g1,23186:6764466,28315670 +) +g1,23187:10084005,28315670 +g1,23187:10747913,28315670 +h1,23187:13403544,28315670:0,0,0 +k1,23187:32583028,28315670:19179484 +g1,23187:32583028,28315670 +) +(1,23188:6764466,29000525:25818563,431045,106246 +h1,23188:6764466,29000525:0,0,0 +g1,23188:7760328,29000525 +g1,23188:16059176,29000525 +h1,23188:16391130,29000525:0,0,0 +k1,23188:32583029,29000525:16191899 +g1,23188:32583029,29000525 +) +(1,23189:6764466,29685380:25818563,424439,106246 +h1,23189:6764466,29685380:0,0,0 +g1,23189:7096420,29685380 +g1,23189:7428374,29685380 +k1,23189:7428374,29685380:0 +h1,23189:14399406,29685380:0,0,0 +k1,23189:32583030,29685380:18183624 +g1,23189:32583030,29685380 +) +(1,23190:6764466,30370235:25818563,424439,79822 +h1,23190:6764466,30370235:0,0,0 +h1,23190:7096420,30370235:0,0,0 +k1,23190:32583028,30370235:25486608 +g1,23190:32583028,30370235 +) +] +) +g1,23192:32583029,30450057 +g1,23192:6764466,30450057 +g1,23192:6764466,30450057 +g1,23192:32583029,30450057 +g1,23192:32583029,30450057 +) +h1,23192:6764466,30646665:0,0,0 +] +g1,23194:32583029,30646665 +) +h1,23194:6630773,30646665:0,0,0 +(1,23196:6630773,33477825:25952256,32768,229376 +(1,23196:6630773,33477825:0,32768,229376 +(1,23196:6630773,33477825:5505024,32768,229376 +r1,23204:12135797,33477825:5505024,262144,229376 +) +k1,23196:6630773,33477825:-5505024 +) +(1,23196:6630773,33477825:25952256,32768,0 +r1,23204:32583029,33477825:25952256,32768,0 +) +) +(1,23196:6630773,35109677:25952256,606339,151780 +(1,23196:6630773,35109677:2464678,582746,14155 +g1,23196:6630773,35109677 +g1,23196:9095451,35109677 +) +g1,23196:10753250,35109677 +g1,23196:13670127,35109677 +g1,23196:15379830,35109677 +k1,23196:32583029,35109677:12837715 +g1,23196:32583029,35109677 +) +(1,23200:6630773,36367973:25952256,513147,134348 +k1,23199:8091772,36367973:285939 +k1,23199:10758633,36367973:285938 +k1,23199:11703864,36367973:285939 +k1,23199:13303144,36367973:285938 +k1,23199:15698687,36367973:285939 +k1,23199:17373989,36367973:285939 +k1,23199:20039539,36367973:285938 +k1,23199:24045301,36367973:285939 +k1,23199:24990532,36367973:285939 +k1,23199:26295555,36367973:285938 +k1,23199:28761877,36367973:285939 +k1,23199:30561041,36367973:285938 +k1,23199:31794631,36367973:285939 +k1,23199:32583029,36367973:0 +) +(1,23200:6630773,37233053:25952256,513147,134348 +k1,23199:9985495,37233053:279773 +k1,23199:11461955,37233053:279773 +k1,23199:13333598,37233053:279773 +k1,23199:16458289,37233053:279773 +k1,23199:17269559,37233053:279773 +k1,23199:18833838,37233053:279773 +k1,23199:21875954,37233053:279773 +k1,23199:25209705,37233053:279773 +k1,23199:28065698,37233053:279773 +k1,23199:29820686,37233053:279773 +k1,23199:32583029,37233053:0 +) +(1,23200:6630773,38098133:25952256,513147,134348 +k1,23199:8435353,38098133:218609 +k1,23199:11820662,38098133:218609 +k1,23199:13058357,38098133:218610 +k1,23199:15361011,38098133:218609 +k1,23199:17092846,38098133:218609 +k1,23199:18259106,38098133:218609 +k1,23199:19460756,38098133:218610 +k1,23199:21747681,38098133:218609 +k1,23199:23157735,38098133:218609 +k1,23199:24359384,38098133:218609 +k1,23199:26530311,38098133:218609 +k1,23199:27376756,38098133:218610 +k1,23199:29347142,38098133:218609 +k1,23199:31436804,38098133:218609 +k1,23199:32583029,38098133:0 +) +(1,23200:6630773,38963213:25952256,513147,134348 +k1,23199:8465594,38963213:162997 +k1,23199:11990589,38963213:162998 +k1,23199:13542949,38963213:162997 +k1,23199:15019288,38963213:162997 +k1,23199:15798324,38963213:162998 +k1,23199:16317181,38963213:162997 +k1,23199:18456088,38963213:162997 +k1,23199:22076110,38963213:162998 +k1,23199:23107459,38963213:162997 +k1,23199:24800723,38963213:162998 +k1,23199:25615148,38963213:162997 +k1,23199:27921172,38963213:162997 +k1,23199:29368676,38963213:162998 +k1,23199:30514713,38963213:162997 +k1,23199:32583029,38963213:0 +) +(1,23200:6630773,39828293:25952256,513147,134348 +k1,23199:7842534,39828293:220201 +k1,23199:9602831,39828293:220201 +k1,23199:11855959,39828293:220201 +k1,23199:14747407,39828293:220201 +k1,23199:18021586,39828293:220201 +k1,23199:20818007,39828293:220201 +k1,23199:22820786,39828293:220200 +k1,23199:23518744,39828293:220201 +k1,23199:24758030,39828293:220201 +k1,23199:26809307,39828293:220201 +k1,23199:28542734,39828293:220201 +k1,23199:29414363,39828293:220201 +k1,23199:31563944,39828293:220201 +k1,23199:32583029,39828293:0 +) +(1,23200:6630773,40693373:25952256,513147,134348 +k1,23199:8115004,40693373:170889 +k1,23199:8817389,40693373:170888 +k1,23199:10593910,40693373:170889 +k1,23199:13603818,40693373:170888 +k1,23199:14426135,40693373:170889 +k1,23199:15344789,40693373:170888 +k1,23199:16380069,40693373:170860 +k1,23199:19386045,40693373:170889 +k1,23199:21890671,40693373:170889 +k1,23199:23009210,40693373:170888 +k1,23199:24163139,40693373:170889 +k1,23199:26402343,40693373:170888 +k1,23199:27764677,40693373:170889 +k1,23199:29714212,40693373:170888 +k1,23199:30501139,40693373:170889 +k1,23199:31086842,40693373:170860 +k1,23199:32583029,40693373:0 +) +(1,23200:6630773,41558453:25952256,505283,134348 +k1,23199:8956923,41558453:145767 +k1,23199:10168961,41558453:145767 +k1,23199:12030462,41558453:145768 +k1,23199:16246015,41558453:145767 +k1,23199:17201152,41558453:145767 +k1,23199:18366004,41558453:145767 +k1,23199:20892694,41558453:145767 +k1,23199:22624432,41558453:145767 +k1,23199:23453085,41558453:145768 +k1,23199:26382821,41558453:145767 +k1,23199:27392955,41558453:145714 +k1,23199:31202185,41558453:145767 +k1,23199:32583029,41558453:0 +) +(1,23200:6630773,42423533:25952256,505283,134348 +g1,23199:7361499,42423533 +g1,23199:10668445,42423533 +g1,23199:14076972,42423533 +g1,23199:15974239,42423533 +g1,23199:19656707,42423533 +g1,23199:20270779,42423533 +k1,23200:32583029,42423533:9349368 +g1,23200:32583029,42423533 +) +v1,23202:6630773,43288613:0,393216,0 +(1,23204:6630773,44641353:25952256,1745956,0 +g1,23204:6630773,44641353 +g1,23204:6237557,44641353 +r1,23204:6368629,44641353:131072,1745956,0 +g1,23204:6567858,44641353 +g1,23204:6764466,44641353 +[1,23204:6764466,44641353:25818563,1745956,0 +(1,23204:6764466,43649790:25818563,754393,260573 +(1,23202:6764466,43649790:0,754393,260573 +r1,23204:7856192,43649790:1091726,1014966,260573 +k1,23202:6764466,43649790:-1091726 +) +(1,23202:6764466,43649790:1091726,754393,260573 +) +k1,23202:8060675,43649790:204483 +k1,23202:8388355,43649790:327680 +k1,23202:8388355,43649790:0 +k1,23203:9634859,43649790:204482 +k1,23203:13036188,43649790:204483 +k1,23203:16756678,43649790:204483 +k1,23203:17944201,43649790:204483 +k1,23203:20216999,43649790:204482 +k1,23203:22601865,43649790:204483 +k1,23203:24561402,43649790:204483 +k1,23203:27137632,43649790:204482 +k1,23203:31084221,43649790:204483 +k1,23204:32583029,43649790:0 +) +(1,23204:6764466,44514870:25818563,505283,126483 +k1,23203:9052274,44514870:375467 +k1,23203:10619185,44514870:375466 +k1,23203:13366400,44514870:375467 +k1,23203:14354628,44514870:375466 +k1,23203:16331795,44514870:375467 +k1,23203:17863972,44514870:375467 +k1,23203:19485277,44514870:375466 +k1,23203:20902766,44514870:375467 +k1,23203:22297317,44514870:375466 +k1,23203:24750275,44514870:375467 +k1,23203:27755701,44514870:375466 +k1,23203:31647175,44514870:375467 +k1,23204:32583029,44514870:0 +) +] +g1,23204:32583029,44641353 +) +] +(1,23204:32583029,45706769:0,0,0 +g1,23204:32583029,45706769 +) +) +] +(1,23204:6630773,47279633:25952256,0,0 +h1,23204:6630773,47279633:25952256,0,0 +) +] +(1,23204:4262630,4025873:0,0,0 +[1,23204:-473656,4025873:0,0,0 +(1,23204:-473656,-710413:0,0,0 +(1,23204:-473656,-710413:0,0,0 +g1,23204:-473656,-710413 +) +g1,23204:-473656,-710413 ) ] ) ] !22125 -}400 -Input:4365:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4366:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4367:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4368:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}401 Input:4369:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4370:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4371:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4372:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4373:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4374:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4375:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4376:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4377:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4378:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{401 -[1,23293:4262630,47279633:28320399,43253760,0 -(1,23293:4262630,4025873:0,0,0 -[1,23293:-473656,4025873:0,0,0 -(1,23293:-473656,-710413:0,0,0 -(1,23293:-473656,-644877:0,0,0 -k1,23293:-473656,-644877:-65536 +{402 +[1,23291:4262630,47279633:28320399,43253760,0 +(1,23291:4262630,4025873:0,0,0 +[1,23291:-473656,4025873:0,0,0 +(1,23291:-473656,-710413:0,0,0 +(1,23291:-473656,-644877:0,0,0 +k1,23291:-473656,-644877:-65536 ) -(1,23293:-473656,4736287:0,0,0 -k1,23293:-473656,4736287:5209943 +(1,23291:-473656,4736287:0,0,0 +k1,23291:-473656,4736287:5209943 ) -g1,23293:-473656,-710413 +g1,23291:-473656,-710413 ) ] ) -[1,23293:6630773,47279633:25952256,43253760,0 -[1,23293:6630773,4812305:25952256,786432,0 -(1,23293:6630773,4812305:25952256,505283,134348 -(1,23293:6630773,4812305:25952256,505283,134348 -g1,23293:3078558,4812305 -[1,23293:3078558,4812305:0,0,0 -(1,23293:3078558,2439708:0,1703936,0 -k1,23293:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23293:2537886,2439708:1179648,16384,0 +[1,23291:6630773,47279633:25952256,43253760,0 +[1,23291:6630773,4812305:25952256,786432,0 +(1,23291:6630773,4812305:25952256,505283,134348 +(1,23291:6630773,4812305:25952256,505283,134348 +g1,23291:3078558,4812305 +[1,23291:3078558,4812305:0,0,0 +(1,23291:3078558,2439708:0,1703936,0 +k1,23291:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23291:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23293:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23291:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23293:3078558,4812305:0,0,0 -(1,23293:3078558,2439708:0,1703936,0 -g1,23293:29030814,2439708 -g1,23293:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23293:36151628,1915420:16384,1179648,0 +[1,23291:3078558,4812305:0,0,0 +(1,23291:3078558,2439708:0,1703936,0 +g1,23291:29030814,2439708 +g1,23291:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23291:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23293:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23291:37855564,2439708:1179648,16384,0 ) ) -k1,23293:3078556,2439708:-34777008 +k1,23291:3078556,2439708:-34777008 ) ] -[1,23293:3078558,4812305:0,0,0 -(1,23293:3078558,49800853:0,16384,2228224 -k1,23293:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23293:2537886,49800853:1179648,16384,0 +[1,23291:3078558,4812305:0,0,0 +(1,23291:3078558,49800853:0,16384,2228224 +k1,23291:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23291:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23293:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23291:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23293:3078558,4812305:0,0,0 -(1,23293:3078558,49800853:0,16384,2228224 -g1,23293:29030814,49800853 -g1,23293:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23293:36151628,51504789:16384,1179648,0 +[1,23291:3078558,4812305:0,0,0 +(1,23291:3078558,49800853:0,16384,2228224 +g1,23291:29030814,49800853 +g1,23291:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23291:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23293:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23291:37855564,49800853:1179648,16384,0 ) ) -k1,23293:3078556,49800853:-34777008 +k1,23291:3078556,49800853:-34777008 ) -] -g1,23293:6630773,4812305 -k1,23293:21114230,4812305:13288080 -g1,23293:22736901,4812305 -g1,23293:23350318,4812305 -g1,23293:24759997,4812305 -g1,23293:28372341,4812305 -g1,23293:30105768,4812305 -) -) -] -[1,23293:6630773,45706769:25952256,40108032,0 -(1,23293:6630773,45706769:25952256,40108032,0 -(1,23293:6630773,45706769:0,0,0 -g1,23293:6630773,45706769 -) -[1,23293:6630773,45706769:25952256,40108032,0 -v1,23206:6630773,6254097:0,393216,0 -(1,23206:6630773,7354955:25952256,1494074,0 -g1,23206:6630773,7354955 -g1,23206:6237557,7354955 -r1,23293:6368629,7354955:131072,1494074,0 -g1,23206:6567858,7354955 -g1,23206:6764466,7354955 -[1,23206:6764466,7354955:25818563,1494074,0 -(1,23206:6764466,6374028:25818563,513147,134348 -k1,23205:10160422,6374028:315109 -k1,23205:12655914,6374028:315109 -k1,23205:13718790,6374028:315110 -k1,23205:16531476,6374028:315109 -k1,23205:18581978,6374028:315109 -k1,23205:21096475,6374028:315109 -k1,23205:23912438,6374028:315109 -k1,23205:25045437,6374028:315110 -k1,23205:26131249,6374028:315109 -k1,23205:29281445,6374028:315109 -k1,23205:31923737,6374028:315109 -k1,23206:32583029,6374028:0 -) -(1,23206:6764466,7239108:25818563,452978,115847 -(1,23205:6764466,7239108:0,452978,115847 -r1,23293:12398410,7239108:5633944,568825,115847 -k1,23205:6764466,7239108:-5633944 -) -(1,23205:6764466,7239108:5633944,452978,115847 -g1,23205:7822879,7239108 -h1,23205:12395133,7239108:0,411205,112570 -) -g1,23205:12771309,7239108 -g1,23205:14063023,7239108 -(1,23205:14063023,7239108:0,452978,115847 -r1,23293:19696966,7239108:5633943,568825,115847 -k1,23205:14063023,7239108:-5633943 -) -(1,23205:14063023,7239108:5633943,452978,115847 -k1,23205:14063023,7239108:3277 -h1,23205:19693689,7239108:0,411205,112570 -) -k1,23206:32583029,7239108:12833635 -g1,23206:32583029,7239108 -) -] -g1,23206:32583029,7354955 -) -h1,23206:6630773,7354955:0,0,0 -(1,23209:6630773,8220035:25952256,513147,134348 -h1,23208:6630773,8220035:983040,0,0 -k1,23208:8255255,8220035:226599 -k1,23208:11242257,8220035:226626 -k1,23208:14494680,8220035:226626 -k1,23208:16606777,8220035:226626 -k1,23208:18221456,8220035:226626 -k1,23208:19842033,8220035:226626 -k1,23208:23584666,8220035:226626 -k1,23208:24572820,8220035:226626 -k1,23208:26826475,8220035:226626 -k1,23208:28072186,8220035:226626 -k1,23208:32583029,8220035:0 -) -(1,23209:6630773,9085115:25952256,513147,126483 -k1,23208:7537089,9085115:247024 -k1,23208:8803198,9085115:247024 -k1,23208:11812565,9085115:247024 -k1,23208:13254310,9085115:247024 -k1,23208:15068955,9085115:247024 -k1,23208:15730774,9085115:246976 -k1,23208:17647655,9085115:247024 -k1,23208:18522514,9085115:247024 -k1,23208:20930915,9085115:247024 -k1,23208:22874666,9085115:247024 -k1,23208:26147487,9085115:247024 -k1,23208:28574894,9085115:247024 -k1,23208:29569684,9085115:247024 -k1,23208:32583029,9085115:0 -) -(1,23209:6630773,9950195:25952256,513147,115847 -k1,23208:8212507,9950195:194337 -k1,23208:10254960,9950195:194338 -k1,23208:11548991,9950195:194337 -k1,23208:12394757,9950195:194338 -k1,23208:13453509,9950195:194332 -k1,23208:17137639,9950195:194338 -k1,23208:18608617,9950195:194337 -k1,23208:20532450,9950195:194338 -k1,23208:22156783,9950195:194337 -k1,23208:23002549,9950195:194338 -k1,23208:26222683,9950195:194337 -(1,23208:26222683,9950195:0,452978,115847 -r1,23293:28691220,9950195:2468537,568825,115847 -k1,23208:26222683,9950195:-2468537 -) -(1,23208:26222683,9950195:2468537,452978,115847 -k1,23208:26222683,9950195:3277 -h1,23208:28687943,9950195:0,411205,112570 -) -k1,23208:28885558,9950195:194338 -k1,23208:29762780,9950195:194337 -(1,23208:29762780,9950195:0,452978,115847 -r1,23293:32583029,9950195:2820249,568825,115847 -k1,23208:29762780,9950195:-2820249 -) -(1,23208:29762780,9950195:2820249,452978,115847 -k1,23208:29762780,9950195:3277 -h1,23208:32579752,9950195:0,411205,112570 -) -k1,23208:32583029,9950195:0 -) -(1,23209:6630773,10815275:25952256,505283,134348 -k1,23208:8283141,10815275:284631 -k1,23208:9432107,10815275:284546 -k1,23208:13206530,10815275:284631 -k1,23208:14177323,10815275:284631 -k1,23208:18071678,10815275:284632 -k1,23208:21394558,10815275:284631 -k1,23208:24482819,10815275:284631 -k1,23208:25585339,10815275:284631 -k1,23208:26889056,10815275:284632 -k1,23208:30284681,10815275:284631 -k1,23208:32583029,10815275:0 -) -(1,23209:6630773,11680355:25952256,513147,126483 -k1,23208:7549116,11680355:266915 -k1,23208:10020008,11680355:266916 -k1,23208:10642783,11680355:266915 -k1,23208:11892738,11680355:266915 -k1,23208:13897669,11680355:266916 -k1,23208:15732205,11680355:266915 -k1,23208:16354980,11680355:266915 -k1,23208:17604936,11680355:266916 -k1,23208:19320197,11680355:266915 -k1,23208:20118609,11680355:266915 -k1,23208:21249877,11680355:266848 -k1,23208:24087769,11680355:266915 -k1,23208:24769459,11680355:266847 -k1,23208:27796751,11680355:266916 -k1,23208:31089463,11680355:266915 -k1,23208:32583029,11680355:0 -) -(1,23209:6630773,12545435:25952256,513147,126483 -k1,23208:7561104,12545435:244169 -(1,23208:7561104,12545435:0,452978,115847 -r1,23293:11084776,12545435:3523672,568825,115847 -k1,23208:7561104,12545435:-3523672 -) -(1,23208:7561104,12545435:3523672,452978,115847 -k1,23208:7561104,12545435:3277 -h1,23208:11081499,12545435:0,411205,112570 -) -k1,23208:11502615,12545435:244169 -k1,23208:13754807,12545435:244169 -k1,23208:19055734,12545435:244169 -k1,23208:19831400,12545435:244169 -k1,23208:20939944,12545435:244124 -k1,23208:23581420,12545435:244169 -k1,23208:24897758,12545435:244169 -k1,23208:26709548,12545435:244169 -k1,23208:27972802,12545435:244169 -k1,23208:29516550,12545435:244169 -k1,23208:30427875,12545435:244169 -k1,23208:31086842,12545435:244124 -k1,23208:32583029,12545435:0 -) -(1,23209:6630773,13410515:25952256,513147,134348 -k1,23208:9035878,13410515:182124 -k1,23208:14873105,13410515:182125 -k1,23208:18081026,13410515:182124 -k1,23208:19647271,13410515:182125 -k1,23208:20848480,13410515:182124 -k1,23208:24547267,13410515:182125 -k1,23208:26888802,13410515:182124 -k1,23208:28265648,13410515:182125 -k1,23208:30015393,13410515:182124 -k1,23208:31216603,13410515:182125 -k1,23208:32583029,13410515:0 -) -(1,23209:6630773,14275595:25952256,513147,126483 -k1,23208:7511097,14275595:213168 -k1,23208:8312777,14275595:213167 -k1,23208:9722632,14275595:213168 -k1,23208:11906467,14275595:213167 -k1,23208:13988066,14275595:213168 -k1,23208:15305516,14275595:213168 -k1,23208:16266449,14275595:213167 -k1,23208:19318637,14275595:213168 -k1,23208:20183232,14275595:213167 -k1,23208:21992857,14275595:213168 -k1,23208:25014898,14275595:213168 -k1,23208:27114191,14275595:213167 -k1,23208:28459166,14275595:213168 -k1,23208:29536739,14275595:213153 -k1,23208:30697558,14275595:213168 -k1,23209:32583029,14275595:0 -) -(1,23209:6630773,15140675:25952256,505283,7863 -g1,23208:7244845,15140675 -g1,23208:7975571,15140675 -k1,23209:32583029,15140675:21771060 -g1,23209:32583029,15140675 -) -v1,23211:6630773,15825530:0,393216,0 -(1,23218:6630773,16982140:25952256,1549826,196608 -g1,23218:6630773,16982140 -g1,23218:6630773,16982140 -g1,23218:6434165,16982140 -(1,23218:6434165,16982140:0,1549826,196608 -r1,23293:32779637,16982140:26345472,1746434,196608 -k1,23218:6434165,16982140:-26345472 -) -(1,23218:6434165,16982140:26345472,1549826,196608 -[1,23218:6630773,16982140:25952256,1353218,0 -(1,23213:6630773,16059967:25952256,431045,106246 -(1,23212:6630773,16059967:0,0,0 -g1,23212:6630773,16059967 -g1,23212:6630773,16059967 -g1,23212:6303093,16059967 -(1,23212:6303093,16059967:0,0,0 -) -g1,23212:6630773,16059967 -) -k1,23213:6630773,16059967:0 -k1,23213:6630773,16059967:0 -h1,23213:16921344,16059967:0,0,0 -k1,23213:32583029,16059967:15661685 -g1,23213:32583029,16059967 -) -(1,23217:6630773,16875894:25952256,431045,106246 -(1,23215:6630773,16875894:0,0,0 -g1,23215:6630773,16875894 -g1,23215:6630773,16875894 -g1,23215:6303093,16875894 -(1,23215:6303093,16875894:0,0,0 -) -g1,23215:6630773,16875894 -) -g1,23217:7626635,16875894 -g1,23217:8954451,16875894 -k1,23217:8954451,16875894:0 -h1,23217:13269852,16875894:0,0,0 -k1,23217:32583028,16875894:19313176 -g1,23217:32583028,16875894 -) -] -) -g1,23218:32583029,16982140 -g1,23218:6630773,16982140 -g1,23218:6630773,16982140 -g1,23218:32583029,16982140 -g1,23218:32583029,16982140 -) -h1,23218:6630773,17178748:0,0,0 -v1,23222:6630773,18043828:0,393216,0 -(1,23243:6630773,27265412:25952256,9614800,0 -g1,23243:6630773,27265412 -g1,23243:6237557,27265412 -r1,23293:6368629,27265412:131072,9614800,0 -g1,23243:6567858,27265412 -g1,23243:6764466,27265412 -[1,23243:6764466,27265412:25818563,9614800,0 -(1,23226:6764466,18405005:25818563,754393,260573 -(1,23222:6764466,18405005:0,754393,260573 -r1,23293:7856192,18405005:1091726,1014966,260573 -k1,23222:6764466,18405005:-1091726 -) -(1,23222:6764466,18405005:1091726,754393,260573 -) -k1,23222:8027084,18405005:170892 -k1,23222:8354764,18405005:327680 -k1,23222:8354764,18405005:0 -k1,23223:8525655,18405005:170891 -k1,23224:8525655,18405005:0 -k1,23225:10471262,18405005:170892 -k1,23225:11258192,18405005:170892 -k1,23225:12880705,18405005:170891 -k1,23225:14243042,18405005:170892 -k1,23225:16167022,18405005:170892 -k1,23225:18258773,18405005:170891 -k1,23225:20769300,18405005:170892 -k1,23225:21556230,18405005:170892 -k1,23225:22710162,18405005:170892 -k1,23225:24659700,18405005:170891 -k1,23225:25362089,18405005:170892 -k1,23225:27957813,18405005:170892 -k1,23225:29522655,18405005:170891 -k1,23225:30049407,18405005:170892 -k1,23225:32583029,18405005:0 -) -(1,23226:6764466,19270085:25818563,530548,102891 -k1,23225:8685913,19270085:285013 -k1,23225:11945605,19270085:285013 -h1,23225:12152699,19270085:0,0,0 -k1,23225:13233418,19270085:285013 -k1,23225:15404557,19270085:285013 -k1,23225:19629594,19270085:285013 -k1,23225:20372705,19270085:285014 -k1,23225:21189215,19270085:285013 -k1,23225:23899060,19270085:285013 -k1,23225:25578024,19270085:285013 -k1,23225:26218897,19270085:285013 -k1,23225:29622768,19270085:285013 -k1,23225:32583029,19270085:0 -) -(1,23226:6764466,20135165:25818563,530548,126483 -h1,23225:6950588,20135165:0,0,0 -k1,23225:8015770,20135165:269476 -k1,23225:11402793,20135165:269475 -h1,23225:11609887,20135165:0,0,0 -k1,23225:12501399,20135165:269476 -k1,23225:13302371,20135165:269475 -k1,23225:14342550,20135165:269476 -k1,23225:16747188,20135165:269475 -k1,23225:19991343,20135165:269476 -k1,23225:20876856,20135165:269475 -k1,23225:21561104,20135165:269405 -k1,23225:23022025,20135165:269476 -k1,23225:26881562,20135165:269475 -k1,23225:27837200,20135165:269476 -k1,23225:29125760,20135165:269475 -k1,23225:30883559,20135165:269476 -k1,23225:31812326,20135165:269475 -k1,23225:32583029,20135165:0 -) -(1,23226:6764466,21000245:25818563,513147,134348 -k1,23225:10377472,21000245:288365 -k1,23225:12859983,21000245:288366 -k1,23225:16123027,21000245:288365 -k1,23225:17643469,21000245:288365 -k1,23225:20210522,21000245:288366 -h1,23225:21181110,21000245:0,0,0 -k1,23225:21469475,21000245:288365 -k1,23225:22567210,21000245:288365 -k1,23225:24353729,21000245:288366 -h1,23225:25150647,21000245:0,0,0 -k1,23225:25819776,21000245:288365 -k1,23225:27797660,21000245:288366 -k1,23225:28702063,21000245:288365 -k1,23225:29405182,21000245:288276 -k1,23225:30049407,21000245:288365 -k1,23225:32583029,21000245:0 -) -(1,23226:6764466,21865325:25818563,530548,126483 -k1,23225:8639606,21865325:238706 -h1,23225:8846700,21865325:0,0,0 -k1,23225:9707442,21865325:238706 -k1,23225:11050429,21865325:238705 -k1,23225:12036901,21865325:238706 -k1,23225:13788833,21865325:238706 -k1,23225:14975190,21865325:238706 -k1,23225:16196936,21865325:238706 -k1,23225:18214288,21865325:238705 -k1,23225:20339120,21865325:238706 -k1,23225:21709633,21865325:238706 -k1,23225:22986429,21865325:238706 -k1,23225:24416580,21865325:238706 -k1,23225:27211189,21865325:238705 -k1,23225:30568753,21865325:238706 -h1,23225:30775847,21865325:0,0,0 -k1,23225:32051532,21865325:238706 -k1,23225:32583029,21865325:0 -) -(1,23226:6764466,22730405:25818563,530548,126483 -k1,23225:8508295,22730405:221428 -k1,23225:10105324,22730405:221428 -k1,23225:12212878,22730405:221428 -k1,23225:16628610,22730405:221428 -k1,23225:21370712,22730405:221428 -h1,23225:21370712,22730405:0,0,0 -k1,23225:22007081,22730405:221427 -k1,23225:24408892,22730405:221428 -k1,23225:25378086,22730405:221428 -k1,23225:27728779,22730405:221428 -k1,23225:30963552,22730405:221428 -k1,23225:31836408,22730405:221428 -h1,23225:31836408,22730405:0,0,0 -k1,23225:32583029,22730405:0 -) -(1,23226:6764466,23595485:25818563,505283,126483 -g1,23225:7615123,23595485 -g1,23225:9957379,23595485 -g1,23225:13672615,23595485 -g1,23225:15063289,23595485 -g1,23225:15794015,23595485 -g1,23225:17012329,23595485 -g1,23225:20196068,23595485 -g1,23225:21908523,23595485 -g1,23225:22723790,23595485 -g1,23225:24126260,23595485 -k1,23226:32583029,23595485:6822301 -g1,23226:32583029,23595485 -) -v1,23228:6764466,24280340:0,393216,0 -(1,23241:6764466,27068804:25818563,3181680,196608 -g1,23241:6764466,27068804 -g1,23241:6764466,27068804 -g1,23241:6567858,27068804 -(1,23241:6567858,27068804:0,3181680,196608 -r1,23293:32779637,27068804:26211779,3378288,196608 -k1,23241:6567857,27068804:-26211780 -) -(1,23241:6567858,27068804:26211779,3181680,196608 -[1,23241:6764466,27068804:25818563,2985072,0 -(1,23230:6764466,24514777:25818563,431045,106246 -(1,23229:6764466,24514777:0,0,0 -g1,23229:6764466,24514777 -g1,23229:6764466,24514777 -g1,23229:6436786,24514777 -(1,23229:6436786,24514777:0,0,0 -) -g1,23229:6764466,24514777 -) -k1,23230:6764466,24514777:0 -k1,23230:6764466,24514777:0 -h1,23230:17055037,24514777:0,0,0 -k1,23230:32583029,24514777:15527992 -g1,23230:32583029,24514777 -) -(1,23234:6764466,25330704:25818563,431045,106246 -(1,23232:6764466,25330704:0,0,0 -g1,23232:6764466,25330704 -g1,23232:6764466,25330704 -g1,23232:6436786,25330704 -(1,23232:6436786,25330704:0,0,0 -) -g1,23232:6764466,25330704 -) -g1,23234:7760328,25330704 -g1,23234:9088144,25330704 -k1,23234:9088144,25330704:0 -h1,23234:13403545,25330704:0,0,0 -k1,23234:32583029,25330704:19179484 -g1,23234:32583029,25330704 -) -(1,23236:6764466,26146631:25818563,431045,106246 -(1,23235:6764466,26146631:0,0,0 -g1,23235:6764466,26146631 -g1,23235:6764466,26146631 -g1,23235:6436786,26146631 -(1,23235:6436786,26146631:0,0,0 -) -g1,23235:6764466,26146631 -) -k1,23236:6764466,26146631:0 -k1,23236:6764466,26146631:0 -h1,23236:17386991,26146631:0,0,0 -k1,23236:32583029,26146631:15196038 -g1,23236:32583029,26146631 -) -(1,23240:6764466,26962558:25818563,431045,106246 -(1,23238:6764466,26962558:0,0,0 -g1,23238:6764466,26962558 -g1,23238:6764466,26962558 -g1,23238:6436786,26962558 -(1,23238:6436786,26962558:0,0,0 -) -g1,23238:6764466,26962558 -) -g1,23240:7760328,26962558 -g1,23240:9088144,26962558 -k1,23240:9088144,26962558:0 -h1,23240:13403545,26962558:0,0,0 -k1,23240:32583029,26962558:19179484 -g1,23240:32583029,26962558 -) -] -) -g1,23241:32583029,27068804 -g1,23241:6764466,27068804 -g1,23241:6764466,27068804 -g1,23241:32583029,27068804 -g1,23241:32583029,27068804 -) -h1,23241:6764466,27265412:0,0,0 -] -g1,23243:32583029,27265412 -) -h1,23243:6630773,27265412:0,0,0 -(1,23246:6630773,28130492:25952256,513147,126483 -h1,23245:6630773,28130492:983040,0,0 -k1,23245:9068861,28130492:258361 -k1,23245:14292885,28130492:258361 -k1,23245:17246742,28130492:258361 -k1,23245:18156531,28130492:258361 -(1,23245:18156531,28130492:0,452978,115847 -r1,23293:21680203,28130492:3523672,568825,115847 -k1,23245:18156531,28130492:-3523672 -) -(1,23245:18156531,28130492:3523672,452978,115847 -k1,23245:18156531,28130492:3277 -h1,23245:21676926,28130492:0,411205,112570 -) -k1,23245:21938564,28130492:258361 -k1,23245:22728422,28130492:258361 -(1,23245:22728422,28130492:0,452978,115847 -r1,23293:25900382,28130492:3171960,568825,115847 -k1,23245:22728422,28130492:-3171960 -) -(1,23245:22728422,28130492:3171960,452978,115847 -k1,23245:22728422,28130492:3277 -h1,23245:25897105,28130492:0,411205,112570 -) -k1,23245:26158743,28130492:258361 -k1,23245:27608549,28130492:258361 -k1,23245:30401187,28130492:258361 -k1,23245:32227169,28130492:258361 -k1,23245:32583029,28130492:0 -) -(1,23246:6630773,28995572:25952256,513147,134348 -g1,23245:7919866,28995572 -g1,23245:9102135,28995572 -g1,23245:10749710,28995572 -g1,23245:11968024,28995572 -g1,23245:13559238,28995572 -g1,23245:15206813,28995572 -g1,23245:16057470,28995572 -g1,23245:17275784,28995572 -g1,23245:20837010,28995572 -k1,23246:32583029,28995572:9772730 -g1,23246:32583029,28995572 -) -v1,23248:6630773,29680427:0,393216,0 -(1,23255:6630773,30810613:25952256,1523402,196608 -g1,23255:6630773,30810613 -g1,23255:6630773,30810613 -g1,23255:6434165,30810613 -(1,23255:6434165,30810613:0,1523402,196608 -r1,23293:32779637,30810613:26345472,1720010,196608 -k1,23255:6434165,30810613:-26345472 -) -(1,23255:6434165,30810613:26345472,1523402,196608 -[1,23255:6630773,30810613:25952256,1326794,0 -(1,23250:6630773,29914864:25952256,431045,106246 -(1,23249:6630773,29914864:0,0,0 -g1,23249:6630773,29914864 -g1,23249:6630773,29914864 -g1,23249:6303093,29914864 -(1,23249:6303093,29914864:0,0,0 -) -g1,23249:6630773,29914864 -) -k1,23250:6630773,29914864:0 -k1,23250:6630773,29914864:0 -h1,23250:16589391,29914864:0,0,0 -k1,23250:32583029,29914864:15993638 -g1,23250:32583029,29914864 -) -(1,23254:6630773,30730791:25952256,424439,79822 -(1,23252:6630773,30730791:0,0,0 -g1,23252:6630773,30730791 -g1,23252:6630773,30730791 -g1,23252:6303093,30730791 -(1,23252:6303093,30730791:0,0,0 -) -g1,23252:6630773,30730791 -) -g1,23254:7626635,30730791 -g1,23254:8954451,30730791 -h1,23254:11942036,30730791:0,0,0 -k1,23254:32583028,30730791:20640992 -g1,23254:32583028,30730791 -) -] -) -g1,23255:32583029,30810613 -g1,23255:6630773,30810613 -g1,23255:6630773,30810613 -g1,23255:32583029,30810613 -g1,23255:32583029,30810613 -) -h1,23255:6630773,31007221:0,0,0 -(1,23261:6630773,31872301:25952256,505283,134348 -h1,23260:6630773,31872301:983040,0,0 -k1,23260:10915452,31872301:181470 -(1,23260:10915452,31872301:0,452978,122846 -r1,23293:13383989,31872301:2468537,575824,122846 -k1,23260:10915452,31872301:-2468537 -) -(1,23260:10915452,31872301:2468537,452978,122846 -k1,23260:10915452,31872301:3277 -h1,23260:13380712,31872301:0,411205,112570 -) -k1,23260:13565459,31872301:181470 -k1,23260:14938374,31872301:181470 -(1,23260:14938374,31872301:0,452978,115847 -r1,23293:17406911,31872301:2468537,568825,115847 -k1,23260:14938374,31872301:-2468537 -) -(1,23260:14938374,31872301:2468537,452978,115847 -k1,23260:14938374,31872301:3277 -h1,23260:17403634,31872301:0,411205,112570 -) -k1,23260:17588381,31872301:181470 -k1,23260:18874133,31872301:181470 -k1,23260:19803369,31872301:181470 -k1,23260:21498065,31872301:181470 -k1,23260:22330964,31872301:181471 -k1,23260:23490887,31872301:181470 -k1,23260:24691442,31872301:181470 -k1,23260:26321258,31872301:181470 -k1,23260:27154156,31872301:181470 -k1,23260:28354711,31872301:181470 -k1,23260:30880404,31872301:181470 -k1,23261:32583029,31872301:0 -) -(1,23261:6630773,32737381:25952256,505283,134348 -g1,23260:7820251,32737381 -g1,23260:10911584,32737381 -g1,23260:12302258,32737381 -g1,23260:13152915,32737381 -g1,23260:14286687,32737381 -g1,23260:14841776,32737381 -g1,23260:17933109,32737381 -g1,23260:18818500,32737381 -g1,23260:21535622,32737381 -k1,23261:32583029,32737381:7198478 -g1,23261:32583029,32737381 -) -v1,23263:6630773,33422236:0,393216,0 -(1,23268:6630773,34421349:25952256,1392329,196608 -g1,23268:6630773,34421349 -g1,23268:6630773,34421349 -g1,23268:6434165,34421349 -(1,23268:6434165,34421349:0,1392329,196608 -r1,23293:32779637,34421349:26345472,1588937,196608 -k1,23268:6434165,34421349:-26345472 -) -(1,23268:6434165,34421349:26345472,1392329,196608 -[1,23268:6630773,34421349:25952256,1195721,0 -(1,23265:6630773,33623642:25952256,398014,6605 -(1,23264:6630773,33623642:0,0,0 -g1,23264:6630773,33623642 -g1,23264:6630773,33623642 -g1,23264:6303093,33623642 -(1,23264:6303093,33623642:0,0,0 -) -g1,23264:6630773,33623642 -) -g1,23265:7294681,33623642 -g1,23265:8622497,33623642 -k1,23265:8622497,33623642:0 -h1,23265:9618359,33623642:0,0,0 -k1,23265:32583029,33623642:22964670 -g1,23265:32583029,33623642 -) -(1,23266:6630773,34308497:25952256,424439,112852 -h1,23266:6630773,34308497:0,0,0 -k1,23266:6630773,34308497:0 -h1,23266:8954451,34308497:0,0,0 -k1,23266:32583029,34308497:23628578 -g1,23266:32583029,34308497 -) -] -) -g1,23268:32583029,34421349 -g1,23268:6630773,34421349 -g1,23268:6630773,34421349 -g1,23268:32583029,34421349 -g1,23268:32583029,34421349 -) -h1,23268:6630773,34617957:0,0,0 -(1,23272:6630773,35483037:25952256,505283,134348 -h1,23271:6630773,35483037:983040,0,0 -k1,23271:10660013,35483037:256332 -(1,23271:10660013,35483037:0,452978,115847 -r1,23293:13128550,35483037:2468537,568825,115847 -k1,23271:10660013,35483037:-2468537 -) -(1,23271:10660013,35483037:2468537,452978,115847 -k1,23271:10660013,35483037:3277 -h1,23271:13125273,35483037:0,411205,112570 -) -k1,23271:13384881,35483037:256331 -k1,23271:15982159,35483037:256332 -k1,23271:17257575,35483037:256331 -k1,23271:18962253,35483037:256332 -k1,23271:19870012,35483037:256331 -k1,23271:21145429,35483037:256332 -k1,23271:23745983,35483037:256331 -k1,23271:26589021,35483037:256332 -k1,23271:29911126,35483037:256331 -k1,23271:32583029,35483037:0 -) -(1,23272:6630773,36348117:25952256,505283,134348 -k1,23271:7491206,36348117:209005 -k1,23271:10383255,36348117:209005 -k1,23271:12845388,36348117:209005 -k1,23271:14073478,36348117:209005 -k1,23271:16869189,36348117:209005 -k1,23271:19970299,36348117:209006 -k1,23271:20830732,36348117:209005 -k1,23271:22058822,36348117:209005 -k1,23271:25022305,36348117:209005 -k1,23271:26561691,36348117:209005 -k1,23271:28236081,36348117:209005 -k1,23271:30804382,36348117:209005 -k1,23271:32583029,36348117:0 -) -(1,23272:6630773,37213197:25952256,505283,134348 -k1,23271:9443633,37213197:267442 -k1,23271:10362502,37213197:267441 -k1,23271:11649029,37213197:267442 -k1,23271:14260693,37213197:267441 -k1,23271:17114841,37213197:267442 -k1,23271:20655150,37213197:267441 -k1,23271:21608754,37213197:267442 -k1,23271:22492233,37213197:267441 -k1,23271:23778760,37213197:267442 -k1,23271:26881288,37213197:267441 -k1,23271:27831615,37213197:267442 -k1,23271:30804382,37213197:267441 -k1,23271:32583029,37213197:0 -) -(1,23272:6630773,38078277:25952256,513147,134348 -k1,23271:8757433,38078277:245777 -k1,23271:9619247,38078277:245776 -k1,23271:11161982,38078277:245777 -k1,23271:12399318,38078277:245776 -k1,23271:15461177,38078277:245777 -k1,23271:16393116,38078277:245777 -k1,23271:17409595,38078277:245776 -k1,23271:20901370,38078277:245777 -k1,23271:21774982,38078277:245777 -k1,23271:25811360,38078277:245776 -k1,23271:27251858,38078277:245777 -(1,23271:27552013,38078277:0,414482,115847 -r1,23293:27910279,38078277:358266,530329,115847 -k1,23271:27552013,38078277:-358266 -) -(1,23271:27552013,38078277:358266,414482,115847 -k1,23271:27552013,38078277:3277 -h1,23271:27907002,38078277:0,411205,112570 -) -k1,23271:28456210,38078277:245776 -k1,23271:31563944,38078277:245777 -k1,23271:32583029,38078277:0 -) -(1,23272:6630773,38943357:25952256,505283,126483 -g1,23271:9174225,38943357 -g1,23271:12265558,38943357 -g1,23271:13656232,38943357 -(1,23271:13956387,38943357:0,414482,115847 -r1,23293:14666365,38943357:709978,530329,115847 -k1,23271:13956387,38943357:-709978 -) -(1,23271:13956387,38943357:709978,414482,115847 -k1,23271:13956387,38943357:3277 -h1,23271:14663088,38943357:0,411205,112570 -) -g1,23271:15165749,38943357 -g1,23271:16384063,38943357 -g1,23271:19475396,38943357 -g1,23271:21529949,38943357 -g1,23271:22748263,38943357 -g1,23271:25291715,38943357 -k1,23272:32583029,38943357:6082175 -g1,23272:32583029,38943357 -) -v1,23274:6630773,39628212:0,393216,0 -(1,23280:6630773,41312180:25952256,2077184,196608 -g1,23280:6630773,41312180 -g1,23280:6630773,41312180 -g1,23280:6434165,41312180 -(1,23280:6434165,41312180:0,2077184,196608 -r1,23293:32779637,41312180:26345472,2273792,196608 -k1,23280:6434165,41312180:-26345472 -) -(1,23280:6434165,41312180:26345472,2077184,196608 -[1,23280:6630773,41312180:25952256,1880576,0 -(1,23276:6630773,39829618:25952256,398014,6605 -(1,23275:6630773,39829618:0,0,0 -g1,23275:6630773,39829618 -g1,23275:6630773,39829618 -g1,23275:6303093,39829618 -(1,23275:6303093,39829618:0,0,0 -) -g1,23275:6630773,39829618 -) -g1,23276:7294681,39829618 -g1,23276:8622497,39829618 -k1,23276:8622497,39829618:0 -h1,23276:9618359,39829618:0,0,0 -k1,23276:32583029,39829618:22964670 -g1,23276:32583029,39829618 -) -(1,23277:6630773,40514473:25952256,424439,79822 -h1,23277:6630773,40514473:0,0,0 -g1,23277:8622497,40514473 -g1,23277:9618359,40514473 -k1,23277:9618359,40514473:0 -h1,23277:13269853,40514473:0,0,0 -k1,23277:32583029,40514473:19313176 -g1,23277:32583029,40514473 -) -(1,23278:6630773,41199328:25952256,424439,112852 -h1,23278:6630773,41199328:0,0,0 -k1,23278:6630773,41199328:0 -h1,23278:8954451,41199328:0,0,0 -k1,23278:32583029,41199328:23628578 -g1,23278:32583029,41199328 -) -] -) -g1,23280:32583029,41312180 -g1,23280:6630773,41312180 -g1,23280:6630773,41312180 -g1,23280:32583029,41312180 -g1,23280:32583029,41312180 -) -h1,23280:6630773,41508788:0,0,0 -(1,23284:6630773,42373868:25952256,513147,126483 -h1,23283:6630773,42373868:983040,0,0 -k1,23283:9042731,42373868:232231 -k1,23283:12053690,42373868:232232 -k1,23283:13966264,42373868:232231 -k1,23283:14729993,42373868:232232 -k1,23283:17091489,42373868:232231 -k1,23283:18094424,42373868:232232 -k1,23283:21031981,42373868:232231 -k1,23283:22354076,42373868:232231 -k1,23283:24208324,42373868:232232 -k1,23283:25165383,42373868:232231 -k1,23283:25855712,42373868:232232 -k1,23283:28645813,42373868:232231 -k1,23283:30418141,42373868:232232 -k1,23283:32117068,42373868:232231 -k1,23283:32583029,42373868:0 -) -(1,23284:6630773,43238948:25952256,513147,134348 -g1,23283:7849087,43238948 -g1,23283:9496662,43238948 -g1,23283:10347319,43238948 -g1,23283:11565633,43238948 -g1,23283:14351568,43238948 -g1,23283:17442901,43238948 -g1,23283:20213107,43238948 -g1,23283:22062533,43238948 -g1,23283:23704209,43238948 -g1,23283:25393727,43238948 -g1,23283:27635713,43238948 -g1,23283:29572957,43238948 -k1,23284:32583029,43238948:283775 -g1,23284:32583029,43238948 -) -v1,23286:6630773,43923803:0,393216,0 -(1,23293:6630773,45510161:25952256,1979574,196608 -g1,23293:6630773,45510161 -g1,23293:6630773,45510161 -g1,23293:6434165,45510161 -(1,23293:6434165,45510161:0,1979574,196608 -r1,23293:32779637,45510161:26345472,2176182,196608 -k1,23293:6434165,45510161:-26345472 -) -(1,23293:6434165,45510161:26345472,1979574,196608 -[1,23293:6630773,45510161:25952256,1782966,0 -(1,23288:6630773,44125209:25952256,398014,6605 -(1,23287:6630773,44125209:0,0,0 -g1,23287:6630773,44125209 -g1,23287:6630773,44125209 -g1,23287:6303093,44125209 -(1,23287:6303093,44125209:0,0,0 -) -g1,23287:6630773,44125209 -) -g1,23288:7294681,44125209 -g1,23288:8622497,44125209 -k1,23288:8622497,44125209:0 -h1,23288:9618359,44125209:0,0,0 -k1,23288:32583029,44125209:22964670 -g1,23288:32583029,44125209 -) -(1,23289:6630773,44810064:25952256,424439,6605 -h1,23289:6630773,44810064:0,0,0 -h1,23289:8290543,44810064:0,0,0 -k1,23289:32583029,44810064:24292486 -g1,23289:32583029,44810064 -) -(1,23290:6630773,45494919:25952256,424439,79822 -h1,23290:6630773,45494919:0,0,0 -k1,23290:6630773,45494919:0 -h1,23290:10614221,45494919:0,0,0 -k1,23290:32583029,45494919:21968808 -g1,23290:32583029,45494919 -) -] -) -g1,23293:32583029,45510161 -g1,23293:6630773,45510161 -g1,23293:6630773,45510161 -g1,23293:32583029,45510161 -g1,23293:32583029,45510161 -) -] -(1,23293:32583029,45706769:0,0,0 -g1,23293:32583029,45706769 -) -) -] -(1,23293:6630773,47279633:25952256,0,0 -h1,23293:6630773,47279633:25952256,0,0 -) -] -(1,23293:4262630,4025873:0,0,0 -[1,23293:-473656,4025873:0,0,0 -(1,23293:-473656,-710413:0,0,0 -(1,23293:-473656,-710413:0,0,0 -g1,23293:-473656,-710413 -) -g1,23293:-473656,-710413 +] +g1,23291:6630773,4812305 +k1,23291:21114230,4812305:13288080 +g1,23291:22736901,4812305 +g1,23291:23350318,4812305 +g1,23291:24759997,4812305 +g1,23291:28372341,4812305 +g1,23291:30105768,4812305 +) +) +] +[1,23291:6630773,45706769:25952256,40108032,0 +(1,23291:6630773,45706769:25952256,40108032,0 +(1,23291:6630773,45706769:0,0,0 +g1,23291:6630773,45706769 +) +[1,23291:6630773,45706769:25952256,40108032,0 +v1,23204:6630773,6254097:0,393216,0 +(1,23204:6630773,7354955:25952256,1494074,0 +g1,23204:6630773,7354955 +g1,23204:6237557,7354955 +r1,23291:6368629,7354955:131072,1494074,0 +g1,23204:6567858,7354955 +g1,23204:6764466,7354955 +[1,23204:6764466,7354955:25818563,1494074,0 +(1,23204:6764466,6374028:25818563,513147,134348 +k1,23203:10160422,6374028:315109 +k1,23203:12655914,6374028:315109 +k1,23203:13718790,6374028:315110 +k1,23203:16531476,6374028:315109 +k1,23203:18581978,6374028:315109 +k1,23203:21096475,6374028:315109 +k1,23203:23912438,6374028:315109 +k1,23203:25045437,6374028:315110 +k1,23203:26131249,6374028:315109 +k1,23203:29281445,6374028:315109 +k1,23203:31923737,6374028:315109 +k1,23204:32583029,6374028:0 +) +(1,23204:6764466,7239108:25818563,452978,115847 +(1,23203:6764466,7239108:0,452978,115847 +r1,23291:12398410,7239108:5633944,568825,115847 +k1,23203:6764466,7239108:-5633944 +) +(1,23203:6764466,7239108:5633944,452978,115847 +g1,23203:7822879,7239108 +h1,23203:12395133,7239108:0,411205,112570 +) +g1,23203:12771309,7239108 +g1,23203:14063023,7239108 +(1,23203:14063023,7239108:0,452978,115847 +r1,23291:19696966,7239108:5633943,568825,115847 +k1,23203:14063023,7239108:-5633943 +) +(1,23203:14063023,7239108:5633943,452978,115847 +k1,23203:14063023,7239108:3277 +h1,23203:19693689,7239108:0,411205,112570 +) +k1,23204:32583029,7239108:12833635 +g1,23204:32583029,7239108 +) +] +g1,23204:32583029,7354955 +) +h1,23204:6630773,7354955:0,0,0 +(1,23207:6630773,8220035:25952256,513147,134348 +h1,23206:6630773,8220035:983040,0,0 +k1,23206:8255255,8220035:226599 +k1,23206:11242257,8220035:226626 +k1,23206:14494680,8220035:226626 +k1,23206:16606777,8220035:226626 +k1,23206:18221456,8220035:226626 +k1,23206:19842033,8220035:226626 +k1,23206:23584666,8220035:226626 +k1,23206:24572820,8220035:226626 +k1,23206:26826475,8220035:226626 +k1,23206:28072186,8220035:226626 +k1,23206:32583029,8220035:0 +) +(1,23207:6630773,9085115:25952256,513147,126483 +k1,23206:7537089,9085115:247024 +k1,23206:8803198,9085115:247024 +k1,23206:11812565,9085115:247024 +k1,23206:13254310,9085115:247024 +k1,23206:15068955,9085115:247024 +k1,23206:15730774,9085115:246976 +k1,23206:17647655,9085115:247024 +k1,23206:18522514,9085115:247024 +k1,23206:20930915,9085115:247024 +k1,23206:22874666,9085115:247024 +k1,23206:26147487,9085115:247024 +k1,23206:28574894,9085115:247024 +k1,23206:29569684,9085115:247024 +k1,23206:32583029,9085115:0 +) +(1,23207:6630773,9950195:25952256,513147,115847 +k1,23206:8212507,9950195:194337 +k1,23206:10254960,9950195:194338 +k1,23206:11548991,9950195:194337 +k1,23206:12394757,9950195:194338 +k1,23206:13453509,9950195:194332 +k1,23206:17137639,9950195:194338 +k1,23206:18608617,9950195:194337 +k1,23206:20532450,9950195:194338 +k1,23206:22156783,9950195:194337 +k1,23206:23002549,9950195:194338 +k1,23206:26222683,9950195:194337 +(1,23206:26222683,9950195:0,452978,115847 +r1,23291:28691220,9950195:2468537,568825,115847 +k1,23206:26222683,9950195:-2468537 +) +(1,23206:26222683,9950195:2468537,452978,115847 +k1,23206:26222683,9950195:3277 +h1,23206:28687943,9950195:0,411205,112570 +) +k1,23206:28885558,9950195:194338 +k1,23206:29762780,9950195:194337 +(1,23206:29762780,9950195:0,452978,115847 +r1,23291:32583029,9950195:2820249,568825,115847 +k1,23206:29762780,9950195:-2820249 +) +(1,23206:29762780,9950195:2820249,452978,115847 +k1,23206:29762780,9950195:3277 +h1,23206:32579752,9950195:0,411205,112570 +) +k1,23206:32583029,9950195:0 +) +(1,23207:6630773,10815275:25952256,505283,134348 +k1,23206:8283141,10815275:284631 +k1,23206:9432107,10815275:284546 +k1,23206:13206530,10815275:284631 +k1,23206:14177323,10815275:284631 +k1,23206:18071678,10815275:284632 +k1,23206:21394558,10815275:284631 +k1,23206:24482819,10815275:284631 +k1,23206:25585339,10815275:284631 +k1,23206:26889056,10815275:284632 +k1,23206:30284681,10815275:284631 +k1,23206:32583029,10815275:0 +) +(1,23207:6630773,11680355:25952256,513147,126483 +k1,23206:7549116,11680355:266915 +k1,23206:10020008,11680355:266916 +k1,23206:10642783,11680355:266915 +k1,23206:11892738,11680355:266915 +k1,23206:13897669,11680355:266916 +k1,23206:15732205,11680355:266915 +k1,23206:16354980,11680355:266915 +k1,23206:17604936,11680355:266916 +k1,23206:19320197,11680355:266915 +k1,23206:20118609,11680355:266915 +k1,23206:21249877,11680355:266848 +k1,23206:24087769,11680355:266915 +k1,23206:24769459,11680355:266847 +k1,23206:27796751,11680355:266916 +k1,23206:31089463,11680355:266915 +k1,23206:32583029,11680355:0 +) +(1,23207:6630773,12545435:25952256,513147,126483 +k1,23206:7561104,12545435:244169 +(1,23206:7561104,12545435:0,452978,115847 +r1,23291:11084776,12545435:3523672,568825,115847 +k1,23206:7561104,12545435:-3523672 +) +(1,23206:7561104,12545435:3523672,452978,115847 +k1,23206:7561104,12545435:3277 +h1,23206:11081499,12545435:0,411205,112570 +) +k1,23206:11502615,12545435:244169 +k1,23206:13754807,12545435:244169 +k1,23206:19055734,12545435:244169 +k1,23206:19831400,12545435:244169 +k1,23206:20939944,12545435:244124 +k1,23206:23581420,12545435:244169 +k1,23206:24897758,12545435:244169 +k1,23206:26709548,12545435:244169 +k1,23206:27972802,12545435:244169 +k1,23206:29516550,12545435:244169 +k1,23206:30427875,12545435:244169 +k1,23206:31086842,12545435:244124 +k1,23206:32583029,12545435:0 +) +(1,23207:6630773,13410515:25952256,513147,134348 +k1,23206:9035878,13410515:182124 +k1,23206:14873105,13410515:182125 +k1,23206:18081026,13410515:182124 +k1,23206:19647271,13410515:182125 +k1,23206:20848480,13410515:182124 +k1,23206:24547267,13410515:182125 +k1,23206:26888802,13410515:182124 +k1,23206:28265648,13410515:182125 +k1,23206:30015393,13410515:182124 +k1,23206:31216603,13410515:182125 +k1,23206:32583029,13410515:0 +) +(1,23207:6630773,14275595:25952256,513147,126483 +k1,23206:7511097,14275595:213168 +k1,23206:8312777,14275595:213167 +k1,23206:9722632,14275595:213168 +k1,23206:11906467,14275595:213167 +k1,23206:13988066,14275595:213168 +k1,23206:15305516,14275595:213168 +k1,23206:16266449,14275595:213167 +k1,23206:19318637,14275595:213168 +k1,23206:20183232,14275595:213167 +k1,23206:21992857,14275595:213168 +k1,23206:25014898,14275595:213168 +k1,23206:27114191,14275595:213167 +k1,23206:28459166,14275595:213168 +k1,23206:29536739,14275595:213153 +k1,23206:30697558,14275595:213168 +k1,23207:32583029,14275595:0 +) +(1,23207:6630773,15140675:25952256,505283,7863 +g1,23206:7244845,15140675 +g1,23206:7975571,15140675 +k1,23207:32583029,15140675:21771060 +g1,23207:32583029,15140675 +) +v1,23209:6630773,15825530:0,393216,0 +(1,23216:6630773,16982140:25952256,1549826,196608 +g1,23216:6630773,16982140 +g1,23216:6630773,16982140 +g1,23216:6434165,16982140 +(1,23216:6434165,16982140:0,1549826,196608 +r1,23291:32779637,16982140:26345472,1746434,196608 +k1,23216:6434165,16982140:-26345472 +) +(1,23216:6434165,16982140:26345472,1549826,196608 +[1,23216:6630773,16982140:25952256,1353218,0 +(1,23211:6630773,16059967:25952256,431045,106246 +(1,23210:6630773,16059967:0,0,0 +g1,23210:6630773,16059967 +g1,23210:6630773,16059967 +g1,23210:6303093,16059967 +(1,23210:6303093,16059967:0,0,0 +) +g1,23210:6630773,16059967 +) +k1,23211:6630773,16059967:0 +k1,23211:6630773,16059967:0 +h1,23211:16921344,16059967:0,0,0 +k1,23211:32583029,16059967:15661685 +g1,23211:32583029,16059967 +) +(1,23215:6630773,16875894:25952256,431045,106246 +(1,23213:6630773,16875894:0,0,0 +g1,23213:6630773,16875894 +g1,23213:6630773,16875894 +g1,23213:6303093,16875894 +(1,23213:6303093,16875894:0,0,0 +) +g1,23213:6630773,16875894 +) +g1,23215:7626635,16875894 +g1,23215:8954451,16875894 +k1,23215:8954451,16875894:0 +h1,23215:13269852,16875894:0,0,0 +k1,23215:32583028,16875894:19313176 +g1,23215:32583028,16875894 +) +] +) +g1,23216:32583029,16982140 +g1,23216:6630773,16982140 +g1,23216:6630773,16982140 +g1,23216:32583029,16982140 +g1,23216:32583029,16982140 +) +h1,23216:6630773,17178748:0,0,0 +v1,23220:6630773,18043828:0,393216,0 +(1,23241:6630773,27265412:25952256,9614800,0 +g1,23241:6630773,27265412 +g1,23241:6237557,27265412 +r1,23291:6368629,27265412:131072,9614800,0 +g1,23241:6567858,27265412 +g1,23241:6764466,27265412 +[1,23241:6764466,27265412:25818563,9614800,0 +(1,23224:6764466,18405005:25818563,754393,260573 +(1,23220:6764466,18405005:0,754393,260573 +r1,23291:7856192,18405005:1091726,1014966,260573 +k1,23220:6764466,18405005:-1091726 +) +(1,23220:6764466,18405005:1091726,754393,260573 +) +k1,23220:8027084,18405005:170892 +k1,23220:8354764,18405005:327680 +k1,23220:8354764,18405005:0 +k1,23221:8525655,18405005:170891 +k1,23222:8525655,18405005:0 +k1,23223:10471262,18405005:170892 +k1,23223:11258192,18405005:170892 +k1,23223:12880705,18405005:170891 +k1,23223:14243042,18405005:170892 +k1,23223:16167022,18405005:170892 +k1,23223:18258773,18405005:170891 +k1,23223:20769300,18405005:170892 +k1,23223:21556230,18405005:170892 +k1,23223:22710162,18405005:170892 +k1,23223:24659700,18405005:170891 +k1,23223:25362089,18405005:170892 +k1,23223:27957813,18405005:170892 +k1,23223:29522655,18405005:170891 +k1,23223:30049407,18405005:170892 +k1,23223:32583029,18405005:0 +) +(1,23224:6764466,19270085:25818563,530548,102891 +k1,23223:8685913,19270085:285013 +k1,23223:11945605,19270085:285013 +h1,23223:12152699,19270085:0,0,0 +k1,23223:13233418,19270085:285013 +k1,23223:15404557,19270085:285013 +k1,23223:19629594,19270085:285013 +k1,23223:20372705,19270085:285014 +k1,23223:21189215,19270085:285013 +k1,23223:23899060,19270085:285013 +k1,23223:25578024,19270085:285013 +k1,23223:26218897,19270085:285013 +k1,23223:29622768,19270085:285013 +k1,23223:32583029,19270085:0 +) +(1,23224:6764466,20135165:25818563,530548,126483 +h1,23223:6950588,20135165:0,0,0 +k1,23223:8015770,20135165:269476 +k1,23223:11402793,20135165:269475 +h1,23223:11609887,20135165:0,0,0 +k1,23223:12501399,20135165:269476 +k1,23223:13302371,20135165:269475 +k1,23223:14342550,20135165:269476 +k1,23223:16747188,20135165:269475 +k1,23223:19991343,20135165:269476 +k1,23223:20876856,20135165:269475 +k1,23223:21561104,20135165:269405 +k1,23223:23022025,20135165:269476 +k1,23223:26881562,20135165:269475 +k1,23223:27837200,20135165:269476 +k1,23223:29125760,20135165:269475 +k1,23223:30883559,20135165:269476 +k1,23223:31812326,20135165:269475 +k1,23223:32583029,20135165:0 +) +(1,23224:6764466,21000245:25818563,513147,134348 +k1,23223:10377472,21000245:288365 +k1,23223:12859983,21000245:288366 +k1,23223:16123027,21000245:288365 +k1,23223:17643469,21000245:288365 +k1,23223:20210522,21000245:288366 +h1,23223:21181110,21000245:0,0,0 +k1,23223:21469475,21000245:288365 +k1,23223:22567210,21000245:288365 +k1,23223:24353729,21000245:288366 +h1,23223:25150647,21000245:0,0,0 +k1,23223:25819776,21000245:288365 +k1,23223:27797660,21000245:288366 +k1,23223:28702063,21000245:288365 +k1,23223:29405182,21000245:288276 +k1,23223:30049407,21000245:288365 +k1,23223:32583029,21000245:0 +) +(1,23224:6764466,21865325:25818563,530548,126483 +k1,23223:8639606,21865325:238706 +h1,23223:8846700,21865325:0,0,0 +k1,23223:9707442,21865325:238706 +k1,23223:11050429,21865325:238705 +k1,23223:12036901,21865325:238706 +k1,23223:13788833,21865325:238706 +k1,23223:14975190,21865325:238706 +k1,23223:16196936,21865325:238706 +k1,23223:18214288,21865325:238705 +k1,23223:20339120,21865325:238706 +k1,23223:21709633,21865325:238706 +k1,23223:22986429,21865325:238706 +k1,23223:24416580,21865325:238706 +k1,23223:27211189,21865325:238705 +k1,23223:30568753,21865325:238706 +h1,23223:30775847,21865325:0,0,0 +k1,23223:32051532,21865325:238706 +k1,23223:32583029,21865325:0 +) +(1,23224:6764466,22730405:25818563,530548,126483 +k1,23223:8508295,22730405:221428 +k1,23223:10105324,22730405:221428 +k1,23223:12212878,22730405:221428 +k1,23223:16628610,22730405:221428 +k1,23223:21370712,22730405:221428 +h1,23223:21370712,22730405:0,0,0 +k1,23223:22007081,22730405:221427 +k1,23223:24408892,22730405:221428 +k1,23223:25378086,22730405:221428 +k1,23223:27728779,22730405:221428 +k1,23223:30963552,22730405:221428 +k1,23223:31836408,22730405:221428 +h1,23223:31836408,22730405:0,0,0 +k1,23223:32583029,22730405:0 +) +(1,23224:6764466,23595485:25818563,505283,126483 +g1,23223:7615123,23595485 +g1,23223:9957379,23595485 +g1,23223:13672615,23595485 +g1,23223:15063289,23595485 +g1,23223:15794015,23595485 +g1,23223:17012329,23595485 +g1,23223:20196068,23595485 +g1,23223:21908523,23595485 +g1,23223:22723790,23595485 +g1,23223:24126260,23595485 +k1,23224:32583029,23595485:6822301 +g1,23224:32583029,23595485 +) +v1,23226:6764466,24280340:0,393216,0 +(1,23239:6764466,27068804:25818563,3181680,196608 +g1,23239:6764466,27068804 +g1,23239:6764466,27068804 +g1,23239:6567858,27068804 +(1,23239:6567858,27068804:0,3181680,196608 +r1,23291:32779637,27068804:26211779,3378288,196608 +k1,23239:6567857,27068804:-26211780 +) +(1,23239:6567858,27068804:26211779,3181680,196608 +[1,23239:6764466,27068804:25818563,2985072,0 +(1,23228:6764466,24514777:25818563,431045,106246 +(1,23227:6764466,24514777:0,0,0 +g1,23227:6764466,24514777 +g1,23227:6764466,24514777 +g1,23227:6436786,24514777 +(1,23227:6436786,24514777:0,0,0 +) +g1,23227:6764466,24514777 +) +k1,23228:6764466,24514777:0 +k1,23228:6764466,24514777:0 +h1,23228:17055037,24514777:0,0,0 +k1,23228:32583029,24514777:15527992 +g1,23228:32583029,24514777 +) +(1,23232:6764466,25330704:25818563,431045,106246 +(1,23230:6764466,25330704:0,0,0 +g1,23230:6764466,25330704 +g1,23230:6764466,25330704 +g1,23230:6436786,25330704 +(1,23230:6436786,25330704:0,0,0 +) +g1,23230:6764466,25330704 +) +g1,23232:7760328,25330704 +g1,23232:9088144,25330704 +k1,23232:9088144,25330704:0 +h1,23232:13403545,25330704:0,0,0 +k1,23232:32583029,25330704:19179484 +g1,23232:32583029,25330704 +) +(1,23234:6764466,26146631:25818563,431045,106246 +(1,23233:6764466,26146631:0,0,0 +g1,23233:6764466,26146631 +g1,23233:6764466,26146631 +g1,23233:6436786,26146631 +(1,23233:6436786,26146631:0,0,0 +) +g1,23233:6764466,26146631 +) +k1,23234:6764466,26146631:0 +k1,23234:6764466,26146631:0 +h1,23234:17386991,26146631:0,0,0 +k1,23234:32583029,26146631:15196038 +g1,23234:32583029,26146631 +) +(1,23238:6764466,26962558:25818563,431045,106246 +(1,23236:6764466,26962558:0,0,0 +g1,23236:6764466,26962558 +g1,23236:6764466,26962558 +g1,23236:6436786,26962558 +(1,23236:6436786,26962558:0,0,0 +) +g1,23236:6764466,26962558 +) +g1,23238:7760328,26962558 +g1,23238:9088144,26962558 +k1,23238:9088144,26962558:0 +h1,23238:13403545,26962558:0,0,0 +k1,23238:32583029,26962558:19179484 +g1,23238:32583029,26962558 +) +] +) +g1,23239:32583029,27068804 +g1,23239:6764466,27068804 +g1,23239:6764466,27068804 +g1,23239:32583029,27068804 +g1,23239:32583029,27068804 +) +h1,23239:6764466,27265412:0,0,0 +] +g1,23241:32583029,27265412 +) +h1,23241:6630773,27265412:0,0,0 +(1,23244:6630773,28130492:25952256,513147,126483 +h1,23243:6630773,28130492:983040,0,0 +k1,23243:9068861,28130492:258361 +k1,23243:14292885,28130492:258361 +k1,23243:17246742,28130492:258361 +k1,23243:18156531,28130492:258361 +(1,23243:18156531,28130492:0,452978,115847 +r1,23291:21680203,28130492:3523672,568825,115847 +k1,23243:18156531,28130492:-3523672 +) +(1,23243:18156531,28130492:3523672,452978,115847 +k1,23243:18156531,28130492:3277 +h1,23243:21676926,28130492:0,411205,112570 +) +k1,23243:21938564,28130492:258361 +k1,23243:22728422,28130492:258361 +(1,23243:22728422,28130492:0,452978,115847 +r1,23291:25900382,28130492:3171960,568825,115847 +k1,23243:22728422,28130492:-3171960 +) +(1,23243:22728422,28130492:3171960,452978,115847 +k1,23243:22728422,28130492:3277 +h1,23243:25897105,28130492:0,411205,112570 +) +k1,23243:26158743,28130492:258361 +k1,23243:27608549,28130492:258361 +k1,23243:30401187,28130492:258361 +k1,23243:32227169,28130492:258361 +k1,23243:32583029,28130492:0 +) +(1,23244:6630773,28995572:25952256,513147,134348 +g1,23243:7919866,28995572 +g1,23243:9102135,28995572 +g1,23243:10749710,28995572 +g1,23243:11968024,28995572 +g1,23243:13559238,28995572 +g1,23243:15206813,28995572 +g1,23243:16057470,28995572 +g1,23243:17275784,28995572 +g1,23243:20837010,28995572 +k1,23244:32583029,28995572:9772730 +g1,23244:32583029,28995572 +) +v1,23246:6630773,29680427:0,393216,0 +(1,23253:6630773,30810613:25952256,1523402,196608 +g1,23253:6630773,30810613 +g1,23253:6630773,30810613 +g1,23253:6434165,30810613 +(1,23253:6434165,30810613:0,1523402,196608 +r1,23291:32779637,30810613:26345472,1720010,196608 +k1,23253:6434165,30810613:-26345472 +) +(1,23253:6434165,30810613:26345472,1523402,196608 +[1,23253:6630773,30810613:25952256,1326794,0 +(1,23248:6630773,29914864:25952256,431045,106246 +(1,23247:6630773,29914864:0,0,0 +g1,23247:6630773,29914864 +g1,23247:6630773,29914864 +g1,23247:6303093,29914864 +(1,23247:6303093,29914864:0,0,0 +) +g1,23247:6630773,29914864 +) +k1,23248:6630773,29914864:0 +k1,23248:6630773,29914864:0 +h1,23248:16589391,29914864:0,0,0 +k1,23248:32583029,29914864:15993638 +g1,23248:32583029,29914864 +) +(1,23252:6630773,30730791:25952256,424439,79822 +(1,23250:6630773,30730791:0,0,0 +g1,23250:6630773,30730791 +g1,23250:6630773,30730791 +g1,23250:6303093,30730791 +(1,23250:6303093,30730791:0,0,0 +) +g1,23250:6630773,30730791 +) +g1,23252:7626635,30730791 +g1,23252:8954451,30730791 +h1,23252:11942036,30730791:0,0,0 +k1,23252:32583028,30730791:20640992 +g1,23252:32583028,30730791 +) +] +) +g1,23253:32583029,30810613 +g1,23253:6630773,30810613 +g1,23253:6630773,30810613 +g1,23253:32583029,30810613 +g1,23253:32583029,30810613 +) +h1,23253:6630773,31007221:0,0,0 +(1,23259:6630773,31872301:25952256,505283,134348 +h1,23258:6630773,31872301:983040,0,0 +k1,23258:10915452,31872301:181470 +(1,23258:10915452,31872301:0,452978,122846 +r1,23291:13383989,31872301:2468537,575824,122846 +k1,23258:10915452,31872301:-2468537 +) +(1,23258:10915452,31872301:2468537,452978,122846 +k1,23258:10915452,31872301:3277 +h1,23258:13380712,31872301:0,411205,112570 +) +k1,23258:13565459,31872301:181470 +k1,23258:14938374,31872301:181470 +(1,23258:14938374,31872301:0,452978,115847 +r1,23291:17406911,31872301:2468537,568825,115847 +k1,23258:14938374,31872301:-2468537 +) +(1,23258:14938374,31872301:2468537,452978,115847 +k1,23258:14938374,31872301:3277 +h1,23258:17403634,31872301:0,411205,112570 +) +k1,23258:17588381,31872301:181470 +k1,23258:18874133,31872301:181470 +k1,23258:19803369,31872301:181470 +k1,23258:21498065,31872301:181470 +k1,23258:22330964,31872301:181471 +k1,23258:23490887,31872301:181470 +k1,23258:24691442,31872301:181470 +k1,23258:26321258,31872301:181470 +k1,23258:27154156,31872301:181470 +k1,23258:28354711,31872301:181470 +k1,23258:30880404,31872301:181470 +k1,23259:32583029,31872301:0 +) +(1,23259:6630773,32737381:25952256,505283,134348 +g1,23258:7820251,32737381 +g1,23258:10911584,32737381 +g1,23258:12302258,32737381 +g1,23258:13152915,32737381 +g1,23258:14286687,32737381 +g1,23258:14841776,32737381 +g1,23258:17933109,32737381 +g1,23258:18818500,32737381 +g1,23258:21535622,32737381 +k1,23259:32583029,32737381:7198478 +g1,23259:32583029,32737381 +) +v1,23261:6630773,33422236:0,393216,0 +(1,23266:6630773,34421349:25952256,1392329,196608 +g1,23266:6630773,34421349 +g1,23266:6630773,34421349 +g1,23266:6434165,34421349 +(1,23266:6434165,34421349:0,1392329,196608 +r1,23291:32779637,34421349:26345472,1588937,196608 +k1,23266:6434165,34421349:-26345472 +) +(1,23266:6434165,34421349:26345472,1392329,196608 +[1,23266:6630773,34421349:25952256,1195721,0 +(1,23263:6630773,33623642:25952256,398014,6605 +(1,23262:6630773,33623642:0,0,0 +g1,23262:6630773,33623642 +g1,23262:6630773,33623642 +g1,23262:6303093,33623642 +(1,23262:6303093,33623642:0,0,0 +) +g1,23262:6630773,33623642 +) +g1,23263:7294681,33623642 +g1,23263:8622497,33623642 +k1,23263:8622497,33623642:0 +h1,23263:9618359,33623642:0,0,0 +k1,23263:32583029,33623642:22964670 +g1,23263:32583029,33623642 +) +(1,23264:6630773,34308497:25952256,424439,112852 +h1,23264:6630773,34308497:0,0,0 +k1,23264:6630773,34308497:0 +h1,23264:8954451,34308497:0,0,0 +k1,23264:32583029,34308497:23628578 +g1,23264:32583029,34308497 +) +] +) +g1,23266:32583029,34421349 +g1,23266:6630773,34421349 +g1,23266:6630773,34421349 +g1,23266:32583029,34421349 +g1,23266:32583029,34421349 +) +h1,23266:6630773,34617957:0,0,0 +(1,23270:6630773,35483037:25952256,505283,134348 +h1,23269:6630773,35483037:983040,0,0 +k1,23269:10660013,35483037:256332 +(1,23269:10660013,35483037:0,452978,115847 +r1,23291:13128550,35483037:2468537,568825,115847 +k1,23269:10660013,35483037:-2468537 +) +(1,23269:10660013,35483037:2468537,452978,115847 +k1,23269:10660013,35483037:3277 +h1,23269:13125273,35483037:0,411205,112570 +) +k1,23269:13384881,35483037:256331 +k1,23269:15982159,35483037:256332 +k1,23269:17257575,35483037:256331 +k1,23269:18962253,35483037:256332 +k1,23269:19870012,35483037:256331 +k1,23269:21145429,35483037:256332 +k1,23269:23745983,35483037:256331 +k1,23269:26589021,35483037:256332 +k1,23269:29911126,35483037:256331 +k1,23269:32583029,35483037:0 +) +(1,23270:6630773,36348117:25952256,505283,134348 +k1,23269:7491206,36348117:209005 +k1,23269:10383255,36348117:209005 +k1,23269:12845388,36348117:209005 +k1,23269:14073478,36348117:209005 +k1,23269:16869189,36348117:209005 +k1,23269:19970299,36348117:209006 +k1,23269:20830732,36348117:209005 +k1,23269:22058822,36348117:209005 +k1,23269:25022305,36348117:209005 +k1,23269:26561691,36348117:209005 +k1,23269:28236081,36348117:209005 +k1,23269:30804382,36348117:209005 +k1,23269:32583029,36348117:0 +) +(1,23270:6630773,37213197:25952256,505283,134348 +k1,23269:9443633,37213197:267442 +k1,23269:10362502,37213197:267441 +k1,23269:11649029,37213197:267442 +k1,23269:14260693,37213197:267441 +k1,23269:17114841,37213197:267442 +k1,23269:20655150,37213197:267441 +k1,23269:21608754,37213197:267442 +k1,23269:22492233,37213197:267441 +k1,23269:23778760,37213197:267442 +k1,23269:26881288,37213197:267441 +k1,23269:27831615,37213197:267442 +k1,23269:30804382,37213197:267441 +k1,23269:32583029,37213197:0 +) +(1,23270:6630773,38078277:25952256,513147,134348 +k1,23269:8757433,38078277:245777 +k1,23269:9619247,38078277:245776 +k1,23269:11161982,38078277:245777 +k1,23269:12399318,38078277:245776 +k1,23269:15461177,38078277:245777 +k1,23269:16393116,38078277:245777 +k1,23269:17409595,38078277:245776 +k1,23269:20901370,38078277:245777 +k1,23269:21774982,38078277:245777 +k1,23269:25811360,38078277:245776 +k1,23269:27251858,38078277:245777 +(1,23269:27552013,38078277:0,414482,115847 +r1,23291:27910279,38078277:358266,530329,115847 +k1,23269:27552013,38078277:-358266 +) +(1,23269:27552013,38078277:358266,414482,115847 +k1,23269:27552013,38078277:3277 +h1,23269:27907002,38078277:0,411205,112570 +) +k1,23269:28456210,38078277:245776 +k1,23269:31563944,38078277:245777 +k1,23269:32583029,38078277:0 +) +(1,23270:6630773,38943357:25952256,505283,126483 +g1,23269:9174225,38943357 +g1,23269:12265558,38943357 +g1,23269:13656232,38943357 +(1,23269:13956387,38943357:0,414482,115847 +r1,23291:14666365,38943357:709978,530329,115847 +k1,23269:13956387,38943357:-709978 +) +(1,23269:13956387,38943357:709978,414482,115847 +k1,23269:13956387,38943357:3277 +h1,23269:14663088,38943357:0,411205,112570 +) +g1,23269:15165749,38943357 +g1,23269:16384063,38943357 +g1,23269:19475396,38943357 +g1,23269:21529949,38943357 +g1,23269:22748263,38943357 +g1,23269:25291715,38943357 +k1,23270:32583029,38943357:6082175 +g1,23270:32583029,38943357 +) +v1,23272:6630773,39628212:0,393216,0 +(1,23278:6630773,41312180:25952256,2077184,196608 +g1,23278:6630773,41312180 +g1,23278:6630773,41312180 +g1,23278:6434165,41312180 +(1,23278:6434165,41312180:0,2077184,196608 +r1,23291:32779637,41312180:26345472,2273792,196608 +k1,23278:6434165,41312180:-26345472 +) +(1,23278:6434165,41312180:26345472,2077184,196608 +[1,23278:6630773,41312180:25952256,1880576,0 +(1,23274:6630773,39829618:25952256,398014,6605 +(1,23273:6630773,39829618:0,0,0 +g1,23273:6630773,39829618 +g1,23273:6630773,39829618 +g1,23273:6303093,39829618 +(1,23273:6303093,39829618:0,0,0 +) +g1,23273:6630773,39829618 +) +g1,23274:7294681,39829618 +g1,23274:8622497,39829618 +k1,23274:8622497,39829618:0 +h1,23274:9618359,39829618:0,0,0 +k1,23274:32583029,39829618:22964670 +g1,23274:32583029,39829618 +) +(1,23275:6630773,40514473:25952256,424439,79822 +h1,23275:6630773,40514473:0,0,0 +g1,23275:8622497,40514473 +g1,23275:9618359,40514473 +k1,23275:9618359,40514473:0 +h1,23275:13269853,40514473:0,0,0 +k1,23275:32583029,40514473:19313176 +g1,23275:32583029,40514473 +) +(1,23276:6630773,41199328:25952256,424439,112852 +h1,23276:6630773,41199328:0,0,0 +k1,23276:6630773,41199328:0 +h1,23276:8954451,41199328:0,0,0 +k1,23276:32583029,41199328:23628578 +g1,23276:32583029,41199328 +) +] +) +g1,23278:32583029,41312180 +g1,23278:6630773,41312180 +g1,23278:6630773,41312180 +g1,23278:32583029,41312180 +g1,23278:32583029,41312180 +) +h1,23278:6630773,41508788:0,0,0 +(1,23282:6630773,42373868:25952256,513147,126483 +h1,23281:6630773,42373868:983040,0,0 +k1,23281:9042731,42373868:232231 +k1,23281:12053690,42373868:232232 +k1,23281:13966264,42373868:232231 +k1,23281:14729993,42373868:232232 +k1,23281:17091489,42373868:232231 +k1,23281:18094424,42373868:232232 +k1,23281:21031981,42373868:232231 +k1,23281:22354076,42373868:232231 +k1,23281:24208324,42373868:232232 +k1,23281:25165383,42373868:232231 +k1,23281:25855712,42373868:232232 +k1,23281:28645813,42373868:232231 +k1,23281:30418141,42373868:232232 +k1,23281:32117068,42373868:232231 +k1,23281:32583029,42373868:0 +) +(1,23282:6630773,43238948:25952256,513147,134348 +g1,23281:7849087,43238948 +g1,23281:9496662,43238948 +g1,23281:10347319,43238948 +g1,23281:11565633,43238948 +g1,23281:14351568,43238948 +g1,23281:17442901,43238948 +g1,23281:20213107,43238948 +g1,23281:22062533,43238948 +g1,23281:23704209,43238948 +g1,23281:25393727,43238948 +g1,23281:27635713,43238948 +g1,23281:29572957,43238948 +k1,23282:32583029,43238948:283775 +g1,23282:32583029,43238948 +) +v1,23284:6630773,43923803:0,393216,0 +(1,23291:6630773,45510161:25952256,1979574,196608 +g1,23291:6630773,45510161 +g1,23291:6630773,45510161 +g1,23291:6434165,45510161 +(1,23291:6434165,45510161:0,1979574,196608 +r1,23291:32779637,45510161:26345472,2176182,196608 +k1,23291:6434165,45510161:-26345472 +) +(1,23291:6434165,45510161:26345472,1979574,196608 +[1,23291:6630773,45510161:25952256,1782966,0 +(1,23286:6630773,44125209:25952256,398014,6605 +(1,23285:6630773,44125209:0,0,0 +g1,23285:6630773,44125209 +g1,23285:6630773,44125209 +g1,23285:6303093,44125209 +(1,23285:6303093,44125209:0,0,0 +) +g1,23285:6630773,44125209 +) +g1,23286:7294681,44125209 +g1,23286:8622497,44125209 +k1,23286:8622497,44125209:0 +h1,23286:9618359,44125209:0,0,0 +k1,23286:32583029,44125209:22964670 +g1,23286:32583029,44125209 +) +(1,23287:6630773,44810064:25952256,424439,6605 +h1,23287:6630773,44810064:0,0,0 +h1,23287:8290543,44810064:0,0,0 +k1,23287:32583029,44810064:24292486 +g1,23287:32583029,44810064 +) +(1,23288:6630773,45494919:25952256,424439,79822 +h1,23288:6630773,45494919:0,0,0 +k1,23288:6630773,45494919:0 +h1,23288:10614221,45494919:0,0,0 +k1,23288:32583029,45494919:21968808 +g1,23288:32583029,45494919 +) +] +) +g1,23291:32583029,45510161 +g1,23291:6630773,45510161 +g1,23291:6630773,45510161 +g1,23291:32583029,45510161 +g1,23291:32583029,45510161 +) +] +(1,23291:32583029,45706769:0,0,0 +g1,23291:32583029,45706769 +) +) +] +(1,23291:6630773,47279633:25952256,0,0 +h1,23291:6630773,47279633:25952256,0,0 +) +] +(1,23291:4262630,4025873:0,0,0 +[1,23291:-473656,4025873:0,0,0 +(1,23291:-473656,-710413:0,0,0 +(1,23291:-473656,-710413:0,0,0 +g1,23291:-473656,-710413 +) +g1,23291:-473656,-710413 ) ] ) ] !29939 -}401 -Input:4375:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4376:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4377:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4378:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}402 Input:4379:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4380:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4381:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -403340,4959 +403541,4953 @@ Input:4382:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4383:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4384:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4385:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4386:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4387:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4388:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4389:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{402 -[1,23388:4262630,47279633:28320399,43253760,0 -(1,23388:4262630,4025873:0,0,0 -[1,23388:-473656,4025873:0,0,0 -(1,23388:-473656,-710413:0,0,0 -(1,23388:-473656,-644877:0,0,0 -k1,23388:-473656,-644877:-65536 +{403 +[1,23386:4262630,47279633:28320399,43253760,0 +(1,23386:4262630,4025873:0,0,0 +[1,23386:-473656,4025873:0,0,0 +(1,23386:-473656,-710413:0,0,0 +(1,23386:-473656,-644877:0,0,0 +k1,23386:-473656,-644877:-65536 ) -(1,23388:-473656,4736287:0,0,0 -k1,23388:-473656,4736287:5209943 +(1,23386:-473656,4736287:0,0,0 +k1,23386:-473656,4736287:5209943 ) -g1,23388:-473656,-710413 +g1,23386:-473656,-710413 ) ] ) -[1,23388:6630773,47279633:25952256,43253760,0 -[1,23388:6630773,4812305:25952256,786432,0 -(1,23388:6630773,4812305:25952256,505283,126483 -(1,23388:6630773,4812305:25952256,505283,126483 -g1,23388:3078558,4812305 -[1,23388:3078558,4812305:0,0,0 -(1,23388:3078558,2439708:0,1703936,0 -k1,23388:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23388:2537886,2439708:1179648,16384,0 +[1,23386:6630773,47279633:25952256,43253760,0 +[1,23386:6630773,4812305:25952256,786432,0 +(1,23386:6630773,4812305:25952256,505283,126483 +(1,23386:6630773,4812305:25952256,505283,126483 +g1,23386:3078558,4812305 +[1,23386:3078558,4812305:0,0,0 +(1,23386:3078558,2439708:0,1703936,0 +k1,23386:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23386:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23388:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23386:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23388:3078558,4812305:0,0,0 -(1,23388:3078558,2439708:0,1703936,0 -g1,23388:29030814,2439708 -g1,23388:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23388:36151628,1915420:16384,1179648,0 +[1,23386:3078558,4812305:0,0,0 +(1,23386:3078558,2439708:0,1703936,0 +g1,23386:29030814,2439708 +g1,23386:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23386:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23388:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23386:37855564,2439708:1179648,16384,0 ) ) -k1,23388:3078556,2439708:-34777008 +k1,23386:3078556,2439708:-34777008 ) ] -[1,23388:3078558,4812305:0,0,0 -(1,23388:3078558,49800853:0,16384,2228224 -k1,23388:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23388:2537886,49800853:1179648,16384,0 +[1,23386:3078558,4812305:0,0,0 +(1,23386:3078558,49800853:0,16384,2228224 +k1,23386:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23386:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23388:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23386:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23388:3078558,4812305:0,0,0 -(1,23388:3078558,49800853:0,16384,2228224 -g1,23388:29030814,49800853 -g1,23388:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23388:36151628,51504789:16384,1179648,0 +[1,23386:3078558,4812305:0,0,0 +(1,23386:3078558,49800853:0,16384,2228224 +g1,23386:29030814,49800853 +g1,23386:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23386:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23388:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23386:37855564,49800853:1179648,16384,0 ) ) -k1,23388:3078556,49800853:-34777008 +k1,23386:3078556,49800853:-34777008 ) ] -g1,23388:6630773,4812305 -g1,23388:6630773,4812305 -g1,23388:7909380,4812305 -g1,23388:10252947,4812305 -g1,23388:11662626,4812305 -g1,23388:15310359,4812305 -k1,23388:31387652,4812305:16077293 -) -) +g1,23386:6630773,4812305 +g1,23386:6630773,4812305 +g1,23386:7909380,4812305 +g1,23386:10252947,4812305 +g1,23386:11662626,4812305 +g1,23386:15310359,4812305 +k1,23386:31387652,4812305:16077293 +) +) ] -[1,23388:6630773,45706769:25952256,40108032,0 -(1,23388:6630773,45706769:25952256,40108032,0 -(1,23388:6630773,45706769:0,0,0 -g1,23388:6630773,45706769 +[1,23386:6630773,45706769:25952256,40108032,0 +(1,23386:6630773,45706769:25952256,40108032,0 +(1,23386:6630773,45706769:0,0,0 +g1,23386:6630773,45706769 ) -[1,23388:6630773,45706769:25952256,40108032,0 -v1,23293:6630773,6254097:0,393216,0 -(1,23293:6630773,6594780:25952256,733899,196608 -g1,23293:6630773,6594780 -g1,23293:6630773,6594780 -g1,23293:6434165,6594780 -(1,23293:6434165,6594780:0,733899,196608 -r1,23388:32779637,6594780:26345472,930507,196608 -k1,23293:6434165,6594780:-26345472 +[1,23386:6630773,45706769:25952256,40108032,0 +v1,23291:6630773,6254097:0,393216,0 +(1,23291:6630773,6594780:25952256,733899,196608 +g1,23291:6630773,6594780 +g1,23291:6630773,6594780 +g1,23291:6434165,6594780 +(1,23291:6434165,6594780:0,733899,196608 +r1,23386:32779637,6594780:26345472,930507,196608 +k1,23291:6434165,6594780:-26345472 ) -(1,23293:6434165,6594780:26345472,733899,196608 -[1,23293:6630773,6594780:25952256,537291,0 -(1,23291:6630773,6481928:25952256,424439,112852 -h1,23291:6630773,6481928:0,0,0 -k1,23291:6630773,6481928:0 -h1,23291:8954451,6481928:0,0,0 -k1,23291:32583029,6481928:23628578 -g1,23291:32583029,6481928 -) -] -) -g1,23293:32583029,6594780 -g1,23293:6630773,6594780 -g1,23293:6630773,6594780 -g1,23293:32583029,6594780 -g1,23293:32583029,6594780 -) -h1,23293:6630773,6791388:0,0,0 -(1,23299:6630773,7656468:25952256,513147,115847 -h1,23298:6630773,7656468:983040,0,0 -k1,23298:10691561,7656468:287880 -(1,23298:10691561,7656468:0,459977,115847 -r1,23388:14918657,7656468:4227096,575824,115847 -k1,23298:10691561,7656468:-4227096 -) -(1,23298:10691561,7656468:4227096,459977,115847 -k1,23298:10691561,7656468:3277 -h1,23298:14915380,7656468:0,411205,112570 -) -k1,23298:15206536,7656468:287879 -k1,23298:17835362,7656468:287880 -k1,23298:18479101,7656468:287879 -k1,23298:19760507,7656468:287880 -k1,23298:20707678,7656468:287879 -k1,23298:23063874,7656468:287880 -k1,23298:24011045,7656468:287879 -k1,23298:25612267,7656468:287880 -k1,23298:28110020,7656468:287879 -k1,23298:31807738,7656468:287880 -k1,23298:32583029,7656468:0 -) -(1,23299:6630773,8521548:25952256,513147,126483 -k1,23298:8151604,8521548:176032 -k1,23298:10785890,8521548:176031 -k1,23298:13644966,8521548:176032 -k1,23298:15853924,8521548:176031 -k1,23298:17398348,8521548:176032 -k1,23298:20364247,8521548:176031 -(1,23298:20364247,8521548:0,452978,115847 -r1,23388:24239631,8521548:3875384,568825,115847 -k1,23298:20364247,8521548:-3875384 -) -(1,23298:20364247,8521548:3875384,452978,115847 -k1,23298:20364247,8521548:3277 -h1,23298:24236354,8521548:0,411205,112570 -) -k1,23298:24415663,8521548:176032 -k1,23298:26932640,8521548:176031 -k1,23298:28484273,8521548:176032 -k1,23298:29679389,8521548:176031 -k1,23298:31923737,8521548:176032 -k1,23298:32583029,8521548:0 -) -(1,23299:6630773,9386628:25952256,505283,7863 -k1,23299:32583028,9386628:22489988 -g1,23299:32583028,9386628 -) -v1,23301:6630773,10071483:0,393216,0 -(1,23320:6630773,16975683:25952256,7297416,196608 -g1,23320:6630773,16975683 -g1,23320:6630773,16975683 -g1,23320:6434165,16975683 -(1,23320:6434165,16975683:0,7297416,196608 -r1,23388:32779637,16975683:26345472,7494024,196608 -k1,23320:6434165,16975683:-26345472 -) -(1,23320:6434165,16975683:26345472,7297416,196608 -[1,23320:6630773,16975683:25952256,7100808,0 -(1,23303:6630773,10305920:25952256,431045,79822 -(1,23302:6630773,10305920:0,0,0 -g1,23302:6630773,10305920 -g1,23302:6630773,10305920 -g1,23302:6303093,10305920 -(1,23302:6303093,10305920:0,0,0 -) -g1,23302:6630773,10305920 -) -k1,23303:6630773,10305920:0 -k1,23303:6630773,10305920:0 -h1,23303:12605944,10305920:0,0,0 -k1,23303:32583028,10305920:19977084 -g1,23303:32583028,10305920 -) -(1,23312:6630773,11121847:25952256,424439,106246 -(1,23305:6630773,11121847:0,0,0 -g1,23305:6630773,11121847 -g1,23305:6630773,11121847 -g1,23305:6303093,11121847 -(1,23305:6303093,11121847:0,0,0 -) -g1,23305:6630773,11121847 -) -g1,23312:7626635,11121847 -g1,23312:8954451,11121847 -h1,23312:12937898,11121847:0,0,0 -k1,23312:32583030,11121847:19645132 -g1,23312:32583030,11121847 -) -(1,23312:6630773,11806702:25952256,424439,112852 -h1,23312:6630773,11806702:0,0,0 -g1,23312:7626635,11806702 -g1,23312:8954451,11806702 -h1,23312:13601806,11806702:0,0,0 -k1,23312:32583030,11806702:18981224 -g1,23312:32583030,11806702 -) -(1,23312:6630773,12491557:25952256,431045,106246 -h1,23312:6630773,12491557:0,0,0 -g1,23312:7626635,12491557 -g1,23312:8954451,12491557 -k1,23312:8954451,12491557:0 -h1,23312:21236748,12491557:0,0,0 -k1,23312:32583029,12491557:11346281 -g1,23312:32583029,12491557 -) -(1,23312:6630773,13176412:25952256,431045,106246 -h1,23312:6630773,13176412:0,0,0 -g1,23312:7626635,13176412 -g1,23312:8954451,13176412 -k1,23312:8954451,13176412:0 -h1,23312:21900656,13176412:0,0,0 -k1,23312:32583029,13176412:10682373 -g1,23312:32583029,13176412 -) -(1,23312:6630773,13861267:25952256,431045,106246 -h1,23312:6630773,13861267:0,0,0 -g1,23312:7626635,13861267 -g1,23312:8954451,13861267 -k1,23312:8954451,13861267:0 -h1,23312:22564564,13861267:0,0,0 -k1,23312:32583029,13861267:10018465 -g1,23312:32583029,13861267 -) -(1,23312:6630773,14546122:25952256,431045,106246 -h1,23312:6630773,14546122:0,0,0 -g1,23312:7626635,14546122 -g1,23312:8954451,14546122 -k1,23312:8954451,14546122:0 -h1,23312:22564564,14546122:0,0,0 -k1,23312:32583029,14546122:10018465 -g1,23312:32583029,14546122 -) -(1,23314:6630773,15362049:25952256,424439,79822 -(1,23313:6630773,15362049:0,0,0 -g1,23313:6630773,15362049 -g1,23313:6630773,15362049 -g1,23313:6303093,15362049 -(1,23313:6303093,15362049:0,0,0 -) -g1,23313:6630773,15362049 -) -k1,23314:6630773,15362049:0 -k1,23314:6630773,15362049:0 -h1,23314:12273990,15362049:0,0,0 -k1,23314:32583030,15362049:20309040 -g1,23314:32583030,15362049 -) -(1,23319:6630773,16177976:25952256,431045,112852 -(1,23316:6630773,16177976:0,0,0 -g1,23316:6630773,16177976 -g1,23316:6630773,16177976 -g1,23316:6303093,16177976 -(1,23316:6303093,16177976:0,0,0 -) -g1,23316:6630773,16177976 -) -g1,23319:7626635,16177976 -g1,23319:8954451,16177976 -g1,23319:10282267,16177976 -g1,23319:10614221,16177976 -g1,23319:10946175,16177976 -g1,23319:11278129,16177976 -g1,23319:11610083,16177976 -g1,23319:11942037,16177976 -g1,23319:12273991,16177976 -g1,23319:12605945,16177976 -g1,23319:12937899,16177976 -g1,23319:13269853,16177976 -g1,23319:13601807,16177976 -g1,23319:13933761,16177976 -g1,23319:14265715,16177976 -g1,23319:14597669,16177976 -g1,23319:14929623,16177976 -g1,23319:15261577,16177976 -g1,23319:18249162,16177976 -g1,23319:18581116,16177976 -g1,23319:18913070,16177976 -g1,23319:19245024,16177976 -g1,23319:19576978,16177976 -g1,23319:19908932,16177976 -g1,23319:20240886,16177976 -g1,23319:20572840,16177976 -g1,23319:20904794,16177976 -g1,23319:21236748,16177976 -g1,23319:21568702,16177976 -g1,23319:26548011,16177976 -g1,23319:26879965,16177976 -g1,23319:27211919,16177976 -g1,23319:27543873,16177976 -g1,23319:27875827,16177976 -h1,23319:32191228,16177976:0,0,0 -k1,23319:32583029,16177976:391801 -g1,23319:32583029,16177976 -) -(1,23319:6630773,16862831:25952256,431045,112852 -h1,23319:6630773,16862831:0,0,0 -g1,23319:7626635,16862831 -g1,23319:8954451,16862831 -g1,23319:13601806,16862831 -g1,23319:13933760,16862831 -g1,23319:14265714,16862831 -g1,23319:14597668,16862831 -g1,23319:14929622,16862831 -g1,23319:15261576,16862831 -h1,23319:21236747,16862831:0,0,0 -k1,23319:32583029,16862831:11346282 -g1,23319:32583029,16862831 -) -] -) -g1,23320:32583029,16975683 -g1,23320:6630773,16975683 -g1,23320:6630773,16975683 -g1,23320:32583029,16975683 -g1,23320:32583029,16975683 -) -h1,23320:6630773,17172291:0,0,0 -v1,23324:6630773,18037371:0,393216,0 -(1,23325:6630773,21904516:25952256,4260361,0 -g1,23325:6630773,21904516 -g1,23325:6237557,21904516 -r1,23388:6368629,21904516:131072,4260361,0 -g1,23325:6567858,21904516 -g1,23325:6764466,21904516 -[1,23325:6764466,21904516:25818563,4260361,0 -(1,23325:6764466,18309848:25818563,665693,196608 -(1,23324:6764466,18309848:0,665693,196608 -r1,23388:7868133,18309848:1103667,862301,196608 -k1,23324:6764466,18309848:-1103667 -) -(1,23324:6764466,18309848:1103667,665693,196608 -) -k1,23324:8013528,18309848:145395 -k1,23324:9739746,18309848:327680 -k1,23324:10512975,18309848:145394 -k1,23324:12355097,18309848:145395 -k1,23324:15526289,18309848:145395 -k1,23324:16690769,18309848:145395 -k1,23324:19101743,18309848:145394 -k1,23324:22319466,18309848:145395 -k1,23324:23412512,18309848:145395 -k1,23324:26838639,18309848:145395 -(1,23324:26838639,18309848:0,452978,115847 -r1,23388:28252040,18309848:1413401,568825,115847 -k1,23324:26838639,18309848:-1413401 -) -(1,23324:26838639,18309848:1413401,452978,115847 -k1,23324:26838639,18309848:3277 -h1,23324:28248763,18309848:0,411205,112570 -) -k1,23324:28397434,18309848:145394 -k1,23324:29074326,18309848:145395 -k1,23324:30238806,18309848:145395 -k1,23324:32583029,18309848:0 -) -(1,23325:6764466,19174928:25818563,505283,134348 -k1,23324:9604665,19174928:279707 -k1,23324:12950146,19174928:279707 -k1,23324:15115979,19174928:279707 -k1,23324:18458183,19174928:279707 -k1,23324:20363839,19174928:279708 -k1,23324:21834991,19174928:279707 -k1,23324:23875650,19174928:279707 -k1,23324:27107754,19174928:279707 -k1,23324:28148989,19174928:279707 -(1,23324:28148989,19174928:0,452978,115847 -r1,23388:29210678,19174928:1061689,568825,115847 -k1,23324:28148989,19174928:-1061689 -) -(1,23324:28148989,19174928:1061689,452978,115847 -k1,23324:28148989,19174928:3277 -h1,23324:29207401,19174928:0,411205,112570 -) -k1,23324:29664055,19174928:279707 -k1,23324:32583029,19174928:0 -) -(1,23325:6764466,20040008:25818563,513147,134348 -k1,23324:9629599,20040008:258766 -k1,23324:11172872,20040008:258767 -k1,23324:12634879,20040008:258766 -k1,23324:13425142,20040008:258766 -k1,23324:15836111,20040008:258767 -k1,23324:17113962,20040008:258766 -k1,23324:19638308,20040008:258766 -k1,23324:20658603,20040008:258767 -k1,23324:23007312,20040008:258766 -k1,23324:24285163,20040008:258766 -k1,23324:27569726,20040008:258766 -k1,23324:29222444,20040008:258767 -k1,23324:30251913,20040008:258766 -k1,23324:32583029,20040008:0 -) -(1,23325:6764466,20905088:25818563,513147,134348 -k1,23324:10246356,20905088:235892 -k1,23324:12127203,20905088:235893 -k1,23324:13740006,20905088:235892 -k1,23324:15318732,20905088:235893 -k1,23324:16948575,20905088:235892 -k1,23324:18203553,20905088:235893 -k1,23324:21465242,20905088:235892 -k1,23324:24128588,20905088:235892 -k1,23324:25050643,20905088:235893 -k1,23324:28358863,20905088:235892 -k1,23324:29246184,20905088:235893 -(1,23324:29246184,20905088:0,452978,115847 -r1,23388:30659585,20905088:1413401,568825,115847 -k1,23324:29246184,20905088:-1413401 -) -(1,23324:29246184,20905088:1413401,452978,115847 -k1,23324:29246184,20905088:3277 -h1,23324:30656308,20905088:0,411205,112570 -) -k1,23324:30895477,20905088:235892 -k1,23324:32583029,20905088:0 -) -(1,23325:6764466,21770168:25818563,513147,134348 -g1,23324:9454718,21770168 -g1,23324:10845392,21770168 -g1,23324:15001685,21770168 -g1,23324:16183954,21770168 -g1,23324:17574628,21770168 -g1,23324:20665961,21770168 -k1,23325:32583029,21770168:10085992 -g1,23325:32583029,21770168 -) -] -g1,23325:32583029,21904516 -) -h1,23325:6630773,21904516:0,0,0 -v1,23328:6630773,22769596:0,393216,0 -(1,23329:6630773,24906581:25952256,2530201,0 -g1,23329:6630773,24906581 -g1,23329:6237557,24906581 -r1,23388:6368629,24906581:131072,2530201,0 -g1,23329:6567858,24906581 -g1,23329:6764466,24906581 -[1,23329:6764466,24906581:25818563,2530201,0 -(1,23329:6764466,23042073:25818563,665693,196608 -(1,23328:6764466,23042073:0,665693,196608 -r1,23388:7868133,23042073:1103667,862301,196608 -k1,23328:6764466,23042073:-1103667 -) -(1,23328:6764466,23042073:1103667,665693,196608 -) -k1,23328:8138156,23042073:270023 -k1,23328:9864374,23042073:327680 -k1,23328:11526382,23042073:270023 -k1,23328:14558749,23042073:270024 -k1,23328:18231401,23042073:270023 -k1,23328:19152852,23042073:270023 -k1,23328:22703607,23042073:270023 -(1,23328:22703607,23042073:0,459977,115847 -r1,23388:26227279,23042073:3523672,575824,115847 -k1,23328:22703607,23042073:-3523672 -) -(1,23328:22703607,23042073:3523672,459977,115847 -k1,23328:22703607,23042073:3277 -h1,23328:26224002,23042073:0,411205,112570 -) -k1,23328:26497303,23042073:270024 -k1,23328:27434482,23042073:270023 -(1,23328:27434482,23042073:0,459977,115847 -r1,23388:31661578,23042073:4227096,575824,115847 -k1,23328:27434482,23042073:-4227096 -) -(1,23328:27434482,23042073:4227096,459977,115847 -k1,23328:27434482,23042073:3277 -h1,23328:31658301,23042073:0,411205,112570 -) -k1,23328:31931601,23042073:270023 -k1,23328:32583029,23042073:0 -) -(1,23329:6764466,23907153:25818563,513147,134348 -k1,23328:9010291,23907153:222073 -k1,23328:11088345,23907153:222074 -k1,23328:11666278,23907153:222073 -k1,23328:12881877,23907153:222073 -k1,23328:13763242,23907153:222073 -k1,23328:14968356,23907153:222074 -k1,23328:16969076,23907153:222073 -k1,23328:17874034,23907153:222073 -k1,23328:19488093,23907153:222074 -k1,23328:20693206,23907153:222073 -k1,23328:23157266,23907153:222073 -k1,23328:26346154,23907153:222073 -k1,23328:30011490,23907153:222074 -k1,23328:31563944,23907153:222073 -k1,23328:32583029,23907153:0 -) -(1,23329:6764466,24772233:25818563,513147,134348 -g1,23328:9742422,24772233 -g1,23328:10935177,24772233 -g1,23328:11793698,24772233 -g1,23328:13306269,24772233 -g1,23328:14036995,24772233 -g1,23328:16783608,24772233 -g1,23328:17744365,24772233 -g1,23328:18962679,24772233 -g1,23328:22234236,24772233 -g1,23328:24638752,24772233 -g1,23328:25489409,24772233 -(1,23328:25489409,24772233:0,452978,115847 -r1,23388:28661369,24772233:3171960,568825,115847 -k1,23328:25489409,24772233:-3171960 -) -(1,23328:25489409,24772233:3171960,452978,115847 -k1,23328:25489409,24772233:3277 -h1,23328:28658092,24772233:0,411205,112570 -) -k1,23329:32583029,24772233:3869232 -g1,23329:32583029,24772233 -) -] -g1,23329:32583029,24906581 -) -h1,23329:6630773,24906581:0,0,0 -(1,23333:6630773,25771661:25952256,513147,134348 -h1,23332:6630773,25771661:983040,0,0 -k1,23332:9249974,25771661:203544 -k1,23332:9868357,25771661:203540 -k1,23332:12832277,25771661:203544 -k1,23332:15267322,25771661:203544 -k1,23332:18496663,25771661:203544 -k1,23332:19647858,25771661:203544 -k1,23332:22534446,25771661:203544 -k1,23332:25324697,25771661:203545 -k1,23332:26922192,25771661:203544 -k1,23332:28612748,25771661:203544 -k1,23332:30007737,25771661:203544 -k1,23332:31591469,25771661:203544 -k1,23332:32583029,25771661:0 -) -(1,23333:6630773,26636741:25952256,513147,134348 -k1,23332:8610714,26636741:218333 -k1,23332:9445085,26636741:218333 -k1,23332:10682502,26636741:218332 -k1,23332:12288888,26636741:218333 -k1,23332:14005374,26636741:218333 -k1,23332:15171358,26636741:218333 -(1,23332:15171358,26636741:0,459977,115847 -r1,23388:16936471,26636741:1765113,575824,115847 -k1,23332:15171358,26636741:-1765113 -) -(1,23332:15171358,26636741:1765113,459977,115847 -k1,23332:15171358,26636741:3277 -h1,23332:16933194,26636741:0,411205,112570 -) -k1,23332:17154803,26636741:218332 -k1,23332:18564581,26636741:218333 -k1,23332:19398952,26636741:218333 -k1,23332:22810199,26636741:218333 -k1,23332:24416584,26636741:218332 -k1,23332:26637042,26636741:218333 -k1,23332:28004221,26636741:218333 -(1,23332:28004221,26636741:0,459977,115847 -r1,23388:32583029,26636741:4578808,575824,115847 -k1,23332:28004221,26636741:-4578808 -) -(1,23332:28004221,26636741:4578808,459977,115847 -k1,23332:28004221,26636741:3277 -h1,23332:32579752,26636741:0,411205,112570 -) -k1,23332:32583029,26636741:0 -) -(1,23333:6630773,27501821:25952256,513147,126483 -k1,23332:7484203,27501821:202002 -k1,23332:9717166,27501821:202002 -k1,23332:10938253,27501821:202002 -k1,23332:12528308,27501821:202002 -k1,23332:13677961,27501821:202002 -k1,23332:15083204,27501821:202002 -k1,23332:17893538,27501821:202001 -k1,23332:18754832,27501821:202002 -k1,23332:22156302,27501821:202002 -k1,23332:23554991,27501821:202002 -k1,23332:25727661,27501821:202002 -k1,23332:27798094,27501821:202002 -k1,23332:30890889,27501821:202002 -k1,23332:32583029,27501821:0 -) -(1,23333:6630773,28366901:25952256,513147,7863 -g1,23332:7489294,28366901 -g1,23332:9385250,28366901 -k1,23333:32583028,28366901:20119552 -g1,23333:32583028,28366901 -) -v1,23335:6630773,29051756:0,393216,0 -(1,23383:6630773,43397341:25952256,14738801,196608 -g1,23383:6630773,43397341 -g1,23383:6630773,43397341 -g1,23383:6434165,43397341 -(1,23383:6434165,43397341:0,14738801,196608 -r1,23388:32779637,43397341:26345472,14935409,196608 -k1,23383:6434165,43397341:-26345472 -) -(1,23383:6434165,43397341:26345472,14738801,196608 -[1,23383:6630773,43397341:25952256,14542193,0 -(1,23337:6630773,29286193:25952256,431045,79822 -(1,23336:6630773,29286193:0,0,0 -g1,23336:6630773,29286193 -g1,23336:6630773,29286193 -g1,23336:6303093,29286193 -(1,23336:6303093,29286193:0,0,0 -) -g1,23336:6630773,29286193 -) -k1,23337:6630773,29286193:0 -g1,23337:7626635,29286193 -g1,23337:16257437,29286193 -h1,23337:16589391,29286193:0,0,0 -k1,23337:32583029,29286193:15993638 -g1,23337:32583029,29286193 -) -(1,23338:6630773,29971048:25952256,431045,79822 -h1,23338:6630773,29971048:0,0,0 -g1,23338:6962727,29971048 -g1,23338:7294681,29971048 -k1,23338:7294681,29971048:0 -h1,23338:14597667,29971048:0,0,0 -k1,23338:32583029,29971048:17985362 -g1,23338:32583029,29971048 -) -(1,23339:6630773,30655903:25952256,424439,79822 -h1,23339:6630773,30655903:0,0,0 -h1,23339:6962727,30655903:0,0,0 -k1,23339:32583029,30655903:25620302 -g1,23339:32583029,30655903 -) -(1,23343:6630773,31471830:25952256,424439,79822 -(1,23341:6630773,31471830:0,0,0 -g1,23341:6630773,31471830 -g1,23341:6630773,31471830 -g1,23341:6303093,31471830 -(1,23341:6303093,31471830:0,0,0 -) -g1,23341:6630773,31471830 -) -g1,23343:7626635,31471830 -g1,23343:8954451,31471830 -h1,23343:10282267,31471830:0,0,0 -k1,23343:32583029,31471830:22300762 -g1,23343:32583029,31471830 -) -(1,23345:6630773,32287757:25952256,431045,79822 -(1,23344:6630773,32287757:0,0,0 -g1,23344:6630773,32287757 -g1,23344:6630773,32287757 -g1,23344:6303093,32287757 -(1,23344:6303093,32287757:0,0,0 -) -g1,23344:6630773,32287757 -) -k1,23345:6630773,32287757:0 -h1,23345:13269851,32287757:0,0,0 -k1,23345:32583029,32287757:19313178 -g1,23345:32583029,32287757 -) -(1,23349:6630773,33103684:25952256,424439,79822 -(1,23347:6630773,33103684:0,0,0 -g1,23347:6630773,33103684 -g1,23347:6630773,33103684 -g1,23347:6303093,33103684 -(1,23347:6303093,33103684:0,0,0 -) -g1,23347:6630773,33103684 -) -g1,23349:7626635,33103684 -g1,23349:8954451,33103684 -h1,23349:9286405,33103684:0,0,0 -k1,23349:32583029,33103684:23296624 -g1,23349:32583029,33103684 -) -(1,23351:6630773,33919611:25952256,431045,79822 -(1,23350:6630773,33919611:0,0,0 -g1,23350:6630773,33919611 -g1,23350:6630773,33919611 -g1,23350:6303093,33919611 -(1,23350:6303093,33919611:0,0,0 -) -g1,23350:6630773,33919611 -) -k1,23351:6630773,33919611:0 -h1,23351:13269851,33919611:0,0,0 -k1,23351:32583029,33919611:19313178 -g1,23351:32583029,33919611 -) -(1,23358:6630773,34735538:25952256,424439,6605 -(1,23353:6630773,34735538:0,0,0 -g1,23353:6630773,34735538 -g1,23353:6630773,34735538 -g1,23353:6303093,34735538 -(1,23353:6303093,34735538:0,0,0 -) -g1,23353:6630773,34735538 -) -g1,23358:7626635,34735538 -g1,23358:7958589,34735538 -g1,23358:8290543,34735538 -g1,23358:8622497,34735538 -g1,23358:8954451,34735538 -g1,23358:9286405,34735538 -g1,23358:9618359,34735538 -g1,23358:9950313,34735538 -g1,23358:10282267,34735538 -g1,23358:11942037,34735538 -g1,23358:13933761,34735538 -g1,23358:15593531,34735538 -g1,23358:15925485,34735538 -g1,23358:16257439,34735538 -g1,23358:16589393,34735538 -g1,23358:16921347,34735538 -g1,23358:17253301,34735538 -g1,23358:17585255,34735538 -g1,23358:17917209,34735538 -g1,23358:18249163,34735538 -g1,23358:18581117,34735538 -g1,23358:18913071,34735538 -g1,23358:19245025,34735538 -g1,23358:19576979,34735538 -g1,23358:19908933,34735538 -g1,23358:20240887,34735538 -g1,23358:22232611,34735538 -g1,23358:22564565,34735538 -g1,23358:22896519,34735538 -g1,23358:23228473,34735538 -g1,23358:23560427,34735538 -g1,23358:23892381,34735538 -g1,23358:24224335,34735538 -g1,23358:24556289,34735538 -g1,23358:24888243,34735538 -g1,23358:25220197,34735538 -g1,23358:25552151,34735538 -g1,23358:25884105,34735538 -g1,23358:26216059,34735538 -g1,23358:26548013,34735538 -g1,23358:26879967,34735538 -h1,23358:28539737,34735538:0,0,0 -k1,23358:32583029,34735538:4043292 -g1,23358:32583029,34735538 -) -(1,23358:6630773,35420393:25952256,407923,9908 -h1,23358:6630773,35420393:0,0,0 -g1,23358:7626635,35420393 -g1,23358:10282267,35420393 -g1,23358:10614221,35420393 -g1,23358:10946175,35420393 -g1,23358:11278129,35420393 -g1,23358:11942037,35420393 -g1,23358:13933761,35420393 -g1,23358:14265715,35420393 -g1,23358:15593531,35420393 -g1,23358:19245025,35420393 -g1,23358:22232610,35420393 -g1,23358:25884104,35420393 -h1,23358:28539735,35420393:0,0,0 -k1,23358:32583029,35420393:4043294 -g1,23358:32583029,35420393 -) -(1,23358:6630773,36105248:25952256,424439,6605 -h1,23358:6630773,36105248:0,0,0 -g1,23358:7626635,36105248 -g1,23358:7958589,36105248 -g1,23358:8290543,36105248 -g1,23358:8622497,36105248 -g1,23358:8954451,36105248 -g1,23358:9286405,36105248 -g1,23358:9618359,36105248 -g1,23358:9950313,36105248 -g1,23358:10282267,36105248 -g1,23358:10614221,36105248 -g1,23358:10946175,36105248 -g1,23358:11278129,36105248 -g1,23358:11610083,36105248 -g1,23358:11942037,36105248 -g1,23358:12273991,36105248 -g1,23358:12605945,36105248 -g1,23358:12937899,36105248 -g1,23358:13269853,36105248 -g1,23358:13601807,36105248 -g1,23358:13933761,36105248 -g1,23358:14265715,36105248 -g1,23358:14597669,36105248 -g1,23358:14929623,36105248 -g1,23358:16921347,36105248 -h1,23358:17917209,36105248:0,0,0 -k1,23358:32583029,36105248:14665820 -g1,23358:32583029,36105248 -) -(1,23358:6630773,36790103:25952256,407923,9908 -h1,23358:6630773,36790103:0,0,0 -g1,23358:7626635,36790103 -g1,23358:10282267,36790103 -g1,23358:13933761,36790103 -g1,23358:16921346,36790103 -g1,23358:17253300,36790103 -h1,23358:17917208,36790103:0,0,0 -k1,23358:32583029,36790103:14665821 -g1,23358:32583029,36790103 -) -(1,23360:6630773,37606030:25952256,431045,86428 -(1,23359:6630773,37606030:0,0,0 -g1,23359:6630773,37606030 -g1,23359:6630773,37606030 -g1,23359:6303093,37606030 -(1,23359:6303093,37606030:0,0,0 -) -g1,23359:6630773,37606030 -) -k1,23360:6630773,37606030:0 -g1,23360:14265713,37606030 -h1,23360:17585252,37606030:0,0,0 -k1,23360:32583029,37606030:14997777 -g1,23360:32583029,37606030 -) -(1,23364:6630773,38421957:25952256,424439,79822 -(1,23362:6630773,38421957:0,0,0 -g1,23362:6630773,38421957 -g1,23362:6630773,38421957 -g1,23362:6303093,38421957 -(1,23362:6303093,38421957:0,0,0 -) -g1,23362:6630773,38421957 -) -g1,23364:7626635,38421957 -g1,23364:8954451,38421957 -h1,23364:10282267,38421957:0,0,0 -k1,23364:32583029,38421957:22300762 -g1,23364:32583029,38421957 -) -(1,23366:6630773,39237884:25952256,431045,79822 -(1,23365:6630773,39237884:0,0,0 -g1,23365:6630773,39237884 -g1,23365:6630773,39237884 -g1,23365:6303093,39237884 -(1,23365:6303093,39237884:0,0,0 -) -g1,23365:6630773,39237884 -) -k1,23366:6630773,39237884:0 -h1,23366:13933759,39237884:0,0,0 -k1,23366:32583029,39237884:18649270 -g1,23366:32583029,39237884 -) -(1,23370:6630773,40053811:25952256,424439,79822 -(1,23368:6630773,40053811:0,0,0 -g1,23368:6630773,40053811 -g1,23368:6630773,40053811 -g1,23368:6303093,40053811 -(1,23368:6303093,40053811:0,0,0 -) -g1,23368:6630773,40053811 -) -g1,23370:7626635,40053811 -g1,23370:8954451,40053811 -h1,23370:10614221,40053811:0,0,0 -k1,23370:32583029,40053811:21968808 -g1,23370:32583029,40053811 -) -(1,23372:6630773,40869738:25952256,431045,79822 -(1,23371:6630773,40869738:0,0,0 -g1,23371:6630773,40869738 -g1,23371:6630773,40869738 -g1,23371:6303093,40869738 -(1,23371:6303093,40869738:0,0,0 -) -g1,23371:6630773,40869738 -) -k1,23372:6630773,40869738:0 -h1,23372:13933759,40869738:0,0,0 -k1,23372:32583029,40869738:18649270 -g1,23372:32583029,40869738 -) -(1,23376:6630773,41685665:25952256,424439,79822 -(1,23374:6630773,41685665:0,0,0 -g1,23374:6630773,41685665 -g1,23374:6630773,41685665 -g1,23374:6303093,41685665 -(1,23374:6303093,41685665:0,0,0 -) -g1,23374:6630773,41685665 -) -g1,23376:7626635,41685665 -g1,23376:8954451,41685665 -h1,23376:10282267,41685665:0,0,0 -k1,23376:32583029,41685665:22300762 -g1,23376:32583029,41685665 +(1,23291:6434165,6594780:26345472,733899,196608 +[1,23291:6630773,6594780:25952256,537291,0 +(1,23289:6630773,6481928:25952256,424439,112852 +h1,23289:6630773,6481928:0,0,0 +k1,23289:6630773,6481928:0 +h1,23289:8954451,6481928:0,0,0 +k1,23289:32583029,6481928:23628578 +g1,23289:32583029,6481928 +) +] +) +g1,23291:32583029,6594780 +g1,23291:6630773,6594780 +g1,23291:6630773,6594780 +g1,23291:32583029,6594780 +g1,23291:32583029,6594780 +) +h1,23291:6630773,6791388:0,0,0 +(1,23297:6630773,7656468:25952256,513147,115847 +h1,23296:6630773,7656468:983040,0,0 +k1,23296:10691561,7656468:287880 +(1,23296:10691561,7656468:0,459977,115847 +r1,23386:14918657,7656468:4227096,575824,115847 +k1,23296:10691561,7656468:-4227096 +) +(1,23296:10691561,7656468:4227096,459977,115847 +k1,23296:10691561,7656468:3277 +h1,23296:14915380,7656468:0,411205,112570 +) +k1,23296:15206536,7656468:287879 +k1,23296:17835362,7656468:287880 +k1,23296:18479101,7656468:287879 +k1,23296:19760507,7656468:287880 +k1,23296:20707678,7656468:287879 +k1,23296:23063874,7656468:287880 +k1,23296:24011045,7656468:287879 +k1,23296:25612267,7656468:287880 +k1,23296:28110020,7656468:287879 +k1,23296:31807738,7656468:287880 +k1,23296:32583029,7656468:0 +) +(1,23297:6630773,8521548:25952256,513147,126483 +k1,23296:8151604,8521548:176032 +k1,23296:10785890,8521548:176031 +k1,23296:13644966,8521548:176032 +k1,23296:15853924,8521548:176031 +k1,23296:17398348,8521548:176032 +k1,23296:20364247,8521548:176031 +(1,23296:20364247,8521548:0,452978,115847 +r1,23386:24239631,8521548:3875384,568825,115847 +k1,23296:20364247,8521548:-3875384 +) +(1,23296:20364247,8521548:3875384,452978,115847 +k1,23296:20364247,8521548:3277 +h1,23296:24236354,8521548:0,411205,112570 +) +k1,23296:24415663,8521548:176032 +k1,23296:26932640,8521548:176031 +k1,23296:28484273,8521548:176032 +k1,23296:29679389,8521548:176031 +k1,23296:31923737,8521548:176032 +k1,23296:32583029,8521548:0 +) +(1,23297:6630773,9386628:25952256,505283,7863 +k1,23297:32583028,9386628:22489988 +g1,23297:32583028,9386628 +) +v1,23299:6630773,10071483:0,393216,0 +(1,23318:6630773,16975683:25952256,7297416,196608 +g1,23318:6630773,16975683 +g1,23318:6630773,16975683 +g1,23318:6434165,16975683 +(1,23318:6434165,16975683:0,7297416,196608 +r1,23386:32779637,16975683:26345472,7494024,196608 +k1,23318:6434165,16975683:-26345472 +) +(1,23318:6434165,16975683:26345472,7297416,196608 +[1,23318:6630773,16975683:25952256,7100808,0 +(1,23301:6630773,10305920:25952256,431045,79822 +(1,23300:6630773,10305920:0,0,0 +g1,23300:6630773,10305920 +g1,23300:6630773,10305920 +g1,23300:6303093,10305920 +(1,23300:6303093,10305920:0,0,0 +) +g1,23300:6630773,10305920 +) +k1,23301:6630773,10305920:0 +k1,23301:6630773,10305920:0 +h1,23301:12605944,10305920:0,0,0 +k1,23301:32583028,10305920:19977084 +g1,23301:32583028,10305920 +) +(1,23310:6630773,11121847:25952256,424439,106246 +(1,23303:6630773,11121847:0,0,0 +g1,23303:6630773,11121847 +g1,23303:6630773,11121847 +g1,23303:6303093,11121847 +(1,23303:6303093,11121847:0,0,0 +) +g1,23303:6630773,11121847 +) +g1,23310:7626635,11121847 +g1,23310:8954451,11121847 +h1,23310:12937898,11121847:0,0,0 +k1,23310:32583030,11121847:19645132 +g1,23310:32583030,11121847 +) +(1,23310:6630773,11806702:25952256,424439,112852 +h1,23310:6630773,11806702:0,0,0 +g1,23310:7626635,11806702 +g1,23310:8954451,11806702 +h1,23310:13601806,11806702:0,0,0 +k1,23310:32583030,11806702:18981224 +g1,23310:32583030,11806702 +) +(1,23310:6630773,12491557:25952256,431045,106246 +h1,23310:6630773,12491557:0,0,0 +g1,23310:7626635,12491557 +g1,23310:8954451,12491557 +k1,23310:8954451,12491557:0 +h1,23310:27211919,12491557:0,0,0 +k1,23310:32583029,12491557:5371110 +g1,23310:32583029,12491557 +) +(1,23310:6630773,13176412:25952256,431045,106246 +h1,23310:6630773,13176412:0,0,0 +g1,23310:7626635,13176412 +g1,23310:8954451,13176412 +k1,23310:8954451,13176412:0 +h1,23310:21236748,13176412:0,0,0 +k1,23310:32583029,13176412:11346281 +g1,23310:32583029,13176412 +) +(1,23310:6630773,13861267:25952256,431045,106246 +h1,23310:6630773,13861267:0,0,0 +g1,23310:7626635,13861267 +g1,23310:8954451,13861267 +k1,23310:8954451,13861267:0 +h1,23310:21900656,13861267:0,0,0 +k1,23310:32583029,13861267:10682373 +g1,23310:32583029,13861267 +) +(1,23310:6630773,14546122:25952256,431045,106246 +h1,23310:6630773,14546122:0,0,0 +g1,23310:7626635,14546122 +g1,23310:8954451,14546122 +k1,23310:8954451,14546122:0 +h1,23310:22564564,14546122:0,0,0 +k1,23310:32583029,14546122:10018465 +g1,23310:32583029,14546122 +) +(1,23312:6630773,15362049:25952256,424439,79822 +(1,23311:6630773,15362049:0,0,0 +g1,23311:6630773,15362049 +g1,23311:6630773,15362049 +g1,23311:6303093,15362049 +(1,23311:6303093,15362049:0,0,0 +) +g1,23311:6630773,15362049 +) +k1,23312:6630773,15362049:0 +k1,23312:6630773,15362049:0 +h1,23312:12273990,15362049:0,0,0 +k1,23312:32583030,15362049:20309040 +g1,23312:32583030,15362049 +) +(1,23317:6630773,16177976:25952256,431045,112852 +(1,23314:6630773,16177976:0,0,0 +g1,23314:6630773,16177976 +g1,23314:6630773,16177976 +g1,23314:6303093,16177976 +(1,23314:6303093,16177976:0,0,0 +) +g1,23314:6630773,16177976 +) +g1,23317:7626635,16177976 +g1,23317:8954451,16177976 +g1,23317:10282267,16177976 +g1,23317:10614221,16177976 +g1,23317:10946175,16177976 +g1,23317:11278129,16177976 +g1,23317:11610083,16177976 +g1,23317:11942037,16177976 +g1,23317:12273991,16177976 +g1,23317:12605945,16177976 +g1,23317:12937899,16177976 +g1,23317:13269853,16177976 +g1,23317:13601807,16177976 +g1,23317:13933761,16177976 +g1,23317:14265715,16177976 +g1,23317:14597669,16177976 +g1,23317:14929623,16177976 +g1,23317:15261577,16177976 +g1,23317:18249162,16177976 +g1,23317:18581116,16177976 +g1,23317:18913070,16177976 +g1,23317:19245024,16177976 +g1,23317:19576978,16177976 +g1,23317:19908932,16177976 +g1,23317:20240886,16177976 +g1,23317:20572840,16177976 +g1,23317:20904794,16177976 +g1,23317:21236748,16177976 +g1,23317:21568702,16177976 +g1,23317:26548011,16177976 +g1,23317:26879965,16177976 +g1,23317:27211919,16177976 +g1,23317:27543873,16177976 +g1,23317:27875827,16177976 +h1,23317:32191228,16177976:0,0,0 +k1,23317:32583029,16177976:391801 +g1,23317:32583029,16177976 +) +(1,23317:6630773,16862831:25952256,431045,112852 +h1,23317:6630773,16862831:0,0,0 +g1,23317:7626635,16862831 +g1,23317:8954451,16862831 +g1,23317:13601806,16862831 +g1,23317:13933760,16862831 +g1,23317:14265714,16862831 +g1,23317:14597668,16862831 +g1,23317:14929622,16862831 +g1,23317:15261576,16862831 +h1,23317:21236747,16862831:0,0,0 +k1,23317:32583029,16862831:11346282 +g1,23317:32583029,16862831 +) +] +) +g1,23318:32583029,16975683 +g1,23318:6630773,16975683 +g1,23318:6630773,16975683 +g1,23318:32583029,16975683 +g1,23318:32583029,16975683 +) +h1,23318:6630773,17172291:0,0,0 +v1,23322:6630773,18037371:0,393216,0 +(1,23323:6630773,21904516:25952256,4260361,0 +g1,23323:6630773,21904516 +g1,23323:6237557,21904516 +r1,23386:6368629,21904516:131072,4260361,0 +g1,23323:6567858,21904516 +g1,23323:6764466,21904516 +[1,23323:6764466,21904516:25818563,4260361,0 +(1,23323:6764466,18309848:25818563,665693,196608 +(1,23322:6764466,18309848:0,665693,196608 +r1,23386:7868133,18309848:1103667,862301,196608 +k1,23322:6764466,18309848:-1103667 +) +(1,23322:6764466,18309848:1103667,665693,196608 +) +k1,23322:8013528,18309848:145395 +k1,23322:9739746,18309848:327680 +k1,23322:10512975,18309848:145394 +k1,23322:12355097,18309848:145395 +k1,23322:15526289,18309848:145395 +k1,23322:16690769,18309848:145395 +k1,23322:19101743,18309848:145394 +k1,23322:22319466,18309848:145395 +k1,23322:23412512,18309848:145395 +k1,23322:26838639,18309848:145395 +(1,23322:26838639,18309848:0,452978,115847 +r1,23386:28252040,18309848:1413401,568825,115847 +k1,23322:26838639,18309848:-1413401 +) +(1,23322:26838639,18309848:1413401,452978,115847 +k1,23322:26838639,18309848:3277 +h1,23322:28248763,18309848:0,411205,112570 +) +k1,23322:28397434,18309848:145394 +k1,23322:29074326,18309848:145395 +k1,23322:30238806,18309848:145395 +k1,23322:32583029,18309848:0 +) +(1,23323:6764466,19174928:25818563,505283,134348 +k1,23322:9604665,19174928:279707 +k1,23322:12950146,19174928:279707 +k1,23322:15115979,19174928:279707 +k1,23322:18458183,19174928:279707 +k1,23322:20363839,19174928:279708 +k1,23322:21834991,19174928:279707 +k1,23322:23875650,19174928:279707 +k1,23322:27107754,19174928:279707 +k1,23322:28148989,19174928:279707 +(1,23322:28148989,19174928:0,452978,115847 +r1,23386:29210678,19174928:1061689,568825,115847 +k1,23322:28148989,19174928:-1061689 +) +(1,23322:28148989,19174928:1061689,452978,115847 +k1,23322:28148989,19174928:3277 +h1,23322:29207401,19174928:0,411205,112570 +) +k1,23322:29664055,19174928:279707 +k1,23322:32583029,19174928:0 +) +(1,23323:6764466,20040008:25818563,513147,134348 +k1,23322:9629599,20040008:258766 +k1,23322:11172872,20040008:258767 +k1,23322:12634879,20040008:258766 +k1,23322:13425142,20040008:258766 +k1,23322:15836111,20040008:258767 +k1,23322:17113962,20040008:258766 +k1,23322:19638308,20040008:258766 +k1,23322:20658603,20040008:258767 +k1,23322:23007312,20040008:258766 +k1,23322:24285163,20040008:258766 +k1,23322:27569726,20040008:258766 +k1,23322:29222444,20040008:258767 +k1,23322:30251913,20040008:258766 +k1,23322:32583029,20040008:0 +) +(1,23323:6764466,20905088:25818563,513147,134348 +k1,23322:10246356,20905088:235892 +k1,23322:12127203,20905088:235893 +k1,23322:13740006,20905088:235892 +k1,23322:15318732,20905088:235893 +k1,23322:16948575,20905088:235892 +k1,23322:18203553,20905088:235893 +k1,23322:21465242,20905088:235892 +k1,23322:24128588,20905088:235892 +k1,23322:25050643,20905088:235893 +k1,23322:28358863,20905088:235892 +k1,23322:29246184,20905088:235893 +(1,23322:29246184,20905088:0,452978,115847 +r1,23386:30659585,20905088:1413401,568825,115847 +k1,23322:29246184,20905088:-1413401 +) +(1,23322:29246184,20905088:1413401,452978,115847 +k1,23322:29246184,20905088:3277 +h1,23322:30656308,20905088:0,411205,112570 +) +k1,23322:30895477,20905088:235892 +k1,23322:32583029,20905088:0 +) +(1,23323:6764466,21770168:25818563,513147,134348 +g1,23322:9454718,21770168 +g1,23322:10845392,21770168 +g1,23322:15001685,21770168 +g1,23322:16183954,21770168 +g1,23322:17574628,21770168 +g1,23322:20665961,21770168 +k1,23323:32583029,21770168:10085992 +g1,23323:32583029,21770168 +) +] +g1,23323:32583029,21904516 +) +h1,23323:6630773,21904516:0,0,0 +v1,23326:6630773,22769596:0,393216,0 +(1,23327:6630773,24906581:25952256,2530201,0 +g1,23327:6630773,24906581 +g1,23327:6237557,24906581 +r1,23386:6368629,24906581:131072,2530201,0 +g1,23327:6567858,24906581 +g1,23327:6764466,24906581 +[1,23327:6764466,24906581:25818563,2530201,0 +(1,23327:6764466,23042073:25818563,665693,196608 +(1,23326:6764466,23042073:0,665693,196608 +r1,23386:7868133,23042073:1103667,862301,196608 +k1,23326:6764466,23042073:-1103667 +) +(1,23326:6764466,23042073:1103667,665693,196608 +) +k1,23326:8138156,23042073:270023 +k1,23326:9864374,23042073:327680 +k1,23326:11526382,23042073:270023 +k1,23326:14558749,23042073:270024 +k1,23326:18231401,23042073:270023 +k1,23326:19152852,23042073:270023 +k1,23326:22703607,23042073:270023 +(1,23326:22703607,23042073:0,459977,115847 +r1,23386:26227279,23042073:3523672,575824,115847 +k1,23326:22703607,23042073:-3523672 +) +(1,23326:22703607,23042073:3523672,459977,115847 +k1,23326:22703607,23042073:3277 +h1,23326:26224002,23042073:0,411205,112570 +) +k1,23326:26497303,23042073:270024 +k1,23326:27434482,23042073:270023 +(1,23326:27434482,23042073:0,459977,115847 +r1,23386:31661578,23042073:4227096,575824,115847 +k1,23326:27434482,23042073:-4227096 +) +(1,23326:27434482,23042073:4227096,459977,115847 +k1,23326:27434482,23042073:3277 +h1,23326:31658301,23042073:0,411205,112570 +) +k1,23326:31931601,23042073:270023 +k1,23326:32583029,23042073:0 +) +(1,23327:6764466,23907153:25818563,513147,134348 +k1,23326:9010291,23907153:222073 +k1,23326:11088345,23907153:222074 +k1,23326:11666278,23907153:222073 +k1,23326:12881877,23907153:222073 +k1,23326:13763242,23907153:222073 +k1,23326:14968356,23907153:222074 +k1,23326:16969076,23907153:222073 +k1,23326:17874034,23907153:222073 +k1,23326:19488093,23907153:222074 +k1,23326:20693206,23907153:222073 +k1,23326:23157266,23907153:222073 +k1,23326:26346154,23907153:222073 +k1,23326:30011490,23907153:222074 +k1,23326:31563944,23907153:222073 +k1,23326:32583029,23907153:0 +) +(1,23327:6764466,24772233:25818563,513147,134348 +g1,23326:9742422,24772233 +g1,23326:10935177,24772233 +g1,23326:11793698,24772233 +g1,23326:13306269,24772233 +g1,23326:14036995,24772233 +g1,23326:16783608,24772233 +g1,23326:17744365,24772233 +g1,23326:18962679,24772233 +g1,23326:22234236,24772233 +g1,23326:24638752,24772233 +g1,23326:25489409,24772233 +(1,23326:25489409,24772233:0,452978,115847 +r1,23386:28661369,24772233:3171960,568825,115847 +k1,23326:25489409,24772233:-3171960 +) +(1,23326:25489409,24772233:3171960,452978,115847 +k1,23326:25489409,24772233:3277 +h1,23326:28658092,24772233:0,411205,112570 +) +k1,23327:32583029,24772233:3869232 +g1,23327:32583029,24772233 +) +] +g1,23327:32583029,24906581 +) +h1,23327:6630773,24906581:0,0,0 +(1,23331:6630773,25771661:25952256,513147,134348 +h1,23330:6630773,25771661:983040,0,0 +k1,23330:9249974,25771661:203544 +k1,23330:9868357,25771661:203540 +k1,23330:12832277,25771661:203544 +k1,23330:15267322,25771661:203544 +k1,23330:18496663,25771661:203544 +k1,23330:19647858,25771661:203544 +k1,23330:22534446,25771661:203544 +k1,23330:25324697,25771661:203545 +k1,23330:26922192,25771661:203544 +k1,23330:28612748,25771661:203544 +k1,23330:30007737,25771661:203544 +k1,23330:31591469,25771661:203544 +k1,23330:32583029,25771661:0 +) +(1,23331:6630773,26636741:25952256,513147,134348 +k1,23330:8610714,26636741:218333 +k1,23330:9445085,26636741:218333 +k1,23330:10682502,26636741:218332 +k1,23330:12288888,26636741:218333 +k1,23330:14005374,26636741:218333 +k1,23330:15171358,26636741:218333 +(1,23330:15171358,26636741:0,459977,115847 +r1,23386:16936471,26636741:1765113,575824,115847 +k1,23330:15171358,26636741:-1765113 +) +(1,23330:15171358,26636741:1765113,459977,115847 +k1,23330:15171358,26636741:3277 +h1,23330:16933194,26636741:0,411205,112570 +) +k1,23330:17154803,26636741:218332 +k1,23330:18564581,26636741:218333 +k1,23330:19398952,26636741:218333 +k1,23330:22810199,26636741:218333 +k1,23330:24416584,26636741:218332 +k1,23330:26637042,26636741:218333 +k1,23330:28004221,26636741:218333 +(1,23330:28004221,26636741:0,459977,115847 +r1,23386:32583029,26636741:4578808,575824,115847 +k1,23330:28004221,26636741:-4578808 +) +(1,23330:28004221,26636741:4578808,459977,115847 +k1,23330:28004221,26636741:3277 +h1,23330:32579752,26636741:0,411205,112570 +) +k1,23330:32583029,26636741:0 +) +(1,23331:6630773,27501821:25952256,513147,126483 +k1,23330:7484203,27501821:202002 +k1,23330:9717166,27501821:202002 +k1,23330:10938253,27501821:202002 +k1,23330:12528308,27501821:202002 +k1,23330:13677961,27501821:202002 +k1,23330:15083204,27501821:202002 +k1,23330:17893538,27501821:202001 +k1,23330:18754832,27501821:202002 +k1,23330:22156302,27501821:202002 +k1,23330:23554991,27501821:202002 +k1,23330:25727661,27501821:202002 +k1,23330:27798094,27501821:202002 +k1,23330:30890889,27501821:202002 +k1,23330:32583029,27501821:0 +) +(1,23331:6630773,28366901:25952256,513147,7863 +g1,23330:7489294,28366901 +g1,23330:9385250,28366901 +k1,23331:32583028,28366901:20119552 +g1,23331:32583028,28366901 +) +v1,23333:6630773,29051756:0,393216,0 +(1,23381:6630773,43397341:25952256,14738801,196608 +g1,23381:6630773,43397341 +g1,23381:6630773,43397341 +g1,23381:6434165,43397341 +(1,23381:6434165,43397341:0,14738801,196608 +r1,23386:32779637,43397341:26345472,14935409,196608 +k1,23381:6434165,43397341:-26345472 +) +(1,23381:6434165,43397341:26345472,14738801,196608 +[1,23381:6630773,43397341:25952256,14542193,0 +(1,23335:6630773,29286193:25952256,431045,79822 +(1,23334:6630773,29286193:0,0,0 +g1,23334:6630773,29286193 +g1,23334:6630773,29286193 +g1,23334:6303093,29286193 +(1,23334:6303093,29286193:0,0,0 +) +g1,23334:6630773,29286193 +) +k1,23335:6630773,29286193:0 +g1,23335:7626635,29286193 +g1,23335:16257437,29286193 +h1,23335:16589391,29286193:0,0,0 +k1,23335:32583029,29286193:15993638 +g1,23335:32583029,29286193 +) +(1,23336:6630773,29971048:25952256,431045,79822 +h1,23336:6630773,29971048:0,0,0 +g1,23336:6962727,29971048 +g1,23336:7294681,29971048 +k1,23336:7294681,29971048:0 +h1,23336:14597667,29971048:0,0,0 +k1,23336:32583029,29971048:17985362 +g1,23336:32583029,29971048 +) +(1,23337:6630773,30655903:25952256,424439,79822 +h1,23337:6630773,30655903:0,0,0 +h1,23337:6962727,30655903:0,0,0 +k1,23337:32583029,30655903:25620302 +g1,23337:32583029,30655903 +) +(1,23341:6630773,31471830:25952256,424439,79822 +(1,23339:6630773,31471830:0,0,0 +g1,23339:6630773,31471830 +g1,23339:6630773,31471830 +g1,23339:6303093,31471830 +(1,23339:6303093,31471830:0,0,0 +) +g1,23339:6630773,31471830 +) +g1,23341:7626635,31471830 +g1,23341:8954451,31471830 +h1,23341:10282267,31471830:0,0,0 +k1,23341:32583029,31471830:22300762 +g1,23341:32583029,31471830 +) +(1,23343:6630773,32287757:25952256,431045,79822 +(1,23342:6630773,32287757:0,0,0 +g1,23342:6630773,32287757 +g1,23342:6630773,32287757 +g1,23342:6303093,32287757 +(1,23342:6303093,32287757:0,0,0 +) +g1,23342:6630773,32287757 +) +k1,23343:6630773,32287757:0 +h1,23343:13269851,32287757:0,0,0 +k1,23343:32583029,32287757:19313178 +g1,23343:32583029,32287757 +) +(1,23347:6630773,33103684:25952256,424439,79822 +(1,23345:6630773,33103684:0,0,0 +g1,23345:6630773,33103684 +g1,23345:6630773,33103684 +g1,23345:6303093,33103684 +(1,23345:6303093,33103684:0,0,0 +) +g1,23345:6630773,33103684 +) +g1,23347:7626635,33103684 +g1,23347:8954451,33103684 +h1,23347:9286405,33103684:0,0,0 +k1,23347:32583029,33103684:23296624 +g1,23347:32583029,33103684 +) +(1,23349:6630773,33919611:25952256,431045,79822 +(1,23348:6630773,33919611:0,0,0 +g1,23348:6630773,33919611 +g1,23348:6630773,33919611 +g1,23348:6303093,33919611 +(1,23348:6303093,33919611:0,0,0 +) +g1,23348:6630773,33919611 +) +k1,23349:6630773,33919611:0 +h1,23349:13269851,33919611:0,0,0 +k1,23349:32583029,33919611:19313178 +g1,23349:32583029,33919611 +) +(1,23356:6630773,34735538:25952256,424439,6605 +(1,23351:6630773,34735538:0,0,0 +g1,23351:6630773,34735538 +g1,23351:6630773,34735538 +g1,23351:6303093,34735538 +(1,23351:6303093,34735538:0,0,0 +) +g1,23351:6630773,34735538 +) +g1,23356:7626635,34735538 +g1,23356:7958589,34735538 +g1,23356:8290543,34735538 +g1,23356:8622497,34735538 +g1,23356:8954451,34735538 +g1,23356:9286405,34735538 +g1,23356:9618359,34735538 +g1,23356:9950313,34735538 +g1,23356:10282267,34735538 +g1,23356:11942037,34735538 +g1,23356:13933761,34735538 +g1,23356:15593531,34735538 +g1,23356:15925485,34735538 +g1,23356:16257439,34735538 +g1,23356:16589393,34735538 +g1,23356:16921347,34735538 +g1,23356:17253301,34735538 +g1,23356:17585255,34735538 +g1,23356:17917209,34735538 +g1,23356:18249163,34735538 +g1,23356:18581117,34735538 +g1,23356:18913071,34735538 +g1,23356:19245025,34735538 +g1,23356:19576979,34735538 +g1,23356:19908933,34735538 +g1,23356:20240887,34735538 +g1,23356:22232611,34735538 +g1,23356:22564565,34735538 +g1,23356:22896519,34735538 +g1,23356:23228473,34735538 +g1,23356:23560427,34735538 +g1,23356:23892381,34735538 +g1,23356:24224335,34735538 +g1,23356:24556289,34735538 +g1,23356:24888243,34735538 +g1,23356:25220197,34735538 +g1,23356:25552151,34735538 +g1,23356:25884105,34735538 +g1,23356:26216059,34735538 +g1,23356:26548013,34735538 +g1,23356:26879967,34735538 +h1,23356:28539737,34735538:0,0,0 +k1,23356:32583029,34735538:4043292 +g1,23356:32583029,34735538 +) +(1,23356:6630773,35420393:25952256,407923,9908 +h1,23356:6630773,35420393:0,0,0 +g1,23356:7626635,35420393 +g1,23356:10282267,35420393 +g1,23356:10614221,35420393 +g1,23356:10946175,35420393 +g1,23356:11278129,35420393 +g1,23356:11942037,35420393 +g1,23356:13933761,35420393 +g1,23356:14265715,35420393 +g1,23356:15593531,35420393 +g1,23356:19245025,35420393 +g1,23356:22232610,35420393 +g1,23356:25884104,35420393 +h1,23356:28539735,35420393:0,0,0 +k1,23356:32583029,35420393:4043294 +g1,23356:32583029,35420393 +) +(1,23356:6630773,36105248:25952256,424439,6605 +h1,23356:6630773,36105248:0,0,0 +g1,23356:7626635,36105248 +g1,23356:7958589,36105248 +g1,23356:8290543,36105248 +g1,23356:8622497,36105248 +g1,23356:8954451,36105248 +g1,23356:9286405,36105248 +g1,23356:9618359,36105248 +g1,23356:9950313,36105248 +g1,23356:10282267,36105248 +g1,23356:10614221,36105248 +g1,23356:10946175,36105248 +g1,23356:11278129,36105248 +g1,23356:11610083,36105248 +g1,23356:11942037,36105248 +g1,23356:12273991,36105248 +g1,23356:12605945,36105248 +g1,23356:12937899,36105248 +g1,23356:13269853,36105248 +g1,23356:13601807,36105248 +g1,23356:13933761,36105248 +g1,23356:14265715,36105248 +g1,23356:14597669,36105248 +g1,23356:14929623,36105248 +g1,23356:16921347,36105248 +h1,23356:17917209,36105248:0,0,0 +k1,23356:32583029,36105248:14665820 +g1,23356:32583029,36105248 +) +(1,23356:6630773,36790103:25952256,407923,9908 +h1,23356:6630773,36790103:0,0,0 +g1,23356:7626635,36790103 +g1,23356:10282267,36790103 +g1,23356:13933761,36790103 +g1,23356:16921346,36790103 +g1,23356:17253300,36790103 +h1,23356:17917208,36790103:0,0,0 +k1,23356:32583029,36790103:14665821 +g1,23356:32583029,36790103 +) +(1,23358:6630773,37606030:25952256,431045,86428 +(1,23357:6630773,37606030:0,0,0 +g1,23357:6630773,37606030 +g1,23357:6630773,37606030 +g1,23357:6303093,37606030 +(1,23357:6303093,37606030:0,0,0 +) +g1,23357:6630773,37606030 +) +k1,23358:6630773,37606030:0 +g1,23358:14265713,37606030 +h1,23358:17585252,37606030:0,0,0 +k1,23358:32583029,37606030:14997777 +g1,23358:32583029,37606030 +) +(1,23362:6630773,38421957:25952256,424439,79822 +(1,23360:6630773,38421957:0,0,0 +g1,23360:6630773,38421957 +g1,23360:6630773,38421957 +g1,23360:6303093,38421957 +(1,23360:6303093,38421957:0,0,0 +) +g1,23360:6630773,38421957 +) +g1,23362:7626635,38421957 +g1,23362:8954451,38421957 +h1,23362:10282267,38421957:0,0,0 +k1,23362:32583029,38421957:22300762 +g1,23362:32583029,38421957 +) +(1,23364:6630773,39237884:25952256,431045,79822 +(1,23363:6630773,39237884:0,0,0 +g1,23363:6630773,39237884 +g1,23363:6630773,39237884 +g1,23363:6303093,39237884 +(1,23363:6303093,39237884:0,0,0 +) +g1,23363:6630773,39237884 +) +k1,23364:6630773,39237884:0 +h1,23364:13933759,39237884:0,0,0 +k1,23364:32583029,39237884:18649270 +g1,23364:32583029,39237884 +) +(1,23368:6630773,40053811:25952256,424439,79822 +(1,23366:6630773,40053811:0,0,0 +g1,23366:6630773,40053811 +g1,23366:6630773,40053811 +g1,23366:6303093,40053811 +(1,23366:6303093,40053811:0,0,0 +) +g1,23366:6630773,40053811 +) +g1,23368:7626635,40053811 +g1,23368:8954451,40053811 +h1,23368:10614221,40053811:0,0,0 +k1,23368:32583029,40053811:21968808 +g1,23368:32583029,40053811 +) +(1,23370:6630773,40869738:25952256,431045,79822 +(1,23369:6630773,40869738:0,0,0 +g1,23369:6630773,40869738 +g1,23369:6630773,40869738 +g1,23369:6303093,40869738 +(1,23369:6303093,40869738:0,0,0 +) +g1,23369:6630773,40869738 +) +k1,23370:6630773,40869738:0 +h1,23370:13933759,40869738:0,0,0 +k1,23370:32583029,40869738:18649270 +g1,23370:32583029,40869738 +) +(1,23374:6630773,41685665:25952256,424439,79822 +(1,23372:6630773,41685665:0,0,0 +g1,23372:6630773,41685665 +g1,23372:6630773,41685665 +g1,23372:6303093,41685665 +(1,23372:6303093,41685665:0,0,0 +) +g1,23372:6630773,41685665 +) +g1,23374:7626635,41685665 +g1,23374:8954451,41685665 +h1,23374:10282267,41685665:0,0,0 +k1,23374:32583029,41685665:22300762 +g1,23374:32583029,41685665 ) -(1,23378:6630773,42501592:25952256,431045,79822 -(1,23377:6630773,42501592:0,0,0 -g1,23377:6630773,42501592 -g1,23377:6630773,42501592 -g1,23377:6303093,42501592 -(1,23377:6303093,42501592:0,0,0 +(1,23376:6630773,42501592:25952256,431045,79822 +(1,23375:6630773,42501592:0,0,0 +g1,23375:6630773,42501592 +g1,23375:6630773,42501592 +g1,23375:6303093,42501592 +(1,23375:6303093,42501592:0,0,0 ) -g1,23377:6630773,42501592 +g1,23375:6630773,42501592 ) -k1,23378:6630773,42501592:0 -h1,23378:13933759,42501592:0,0,0 -k1,23378:32583029,42501592:18649270 -g1,23378:32583029,42501592 +k1,23376:6630773,42501592:0 +h1,23376:13933759,42501592:0,0,0 +k1,23376:32583029,42501592:18649270 +g1,23376:32583029,42501592 ) -(1,23382:6630773,43317519:25952256,424439,79822 -(1,23380:6630773,43317519:0,0,0 -g1,23380:6630773,43317519 -g1,23380:6630773,43317519 -g1,23380:6303093,43317519 -(1,23380:6303093,43317519:0,0,0 +(1,23380:6630773,43317519:25952256,424439,79822 +(1,23378:6630773,43317519:0,0,0 +g1,23378:6630773,43317519 +g1,23378:6630773,43317519 +g1,23378:6303093,43317519 +(1,23378:6303093,43317519:0,0,0 ) -g1,23380:6630773,43317519 +g1,23378:6630773,43317519 ) -g1,23382:7626635,43317519 -g1,23382:8954451,43317519 -h1,23382:10282267,43317519:0,0,0 -k1,23382:32583029,43317519:22300762 -g1,23382:32583029,43317519 +g1,23380:7626635,43317519 +g1,23380:8954451,43317519 +h1,23380:10282267,43317519:0,0,0 +k1,23380:32583029,43317519:22300762 +g1,23380:32583029,43317519 ) ] ) -g1,23383:32583029,43397341 -g1,23383:6630773,43397341 -g1,23383:6630773,43397341 -g1,23383:32583029,43397341 -g1,23383:32583029,43397341 +g1,23381:32583029,43397341 +g1,23381:6630773,43397341 +g1,23381:6630773,43397341 +g1,23381:32583029,43397341 +g1,23381:32583029,43397341 ) -h1,23383:6630773,43593949:0,0,0 -v1,23387:6630773,44459029:0,393216,0 +h1,23381:6630773,43593949:0,0,0 +v1,23385:6630773,44459029:0,393216,0 ] -(1,23388:32583029,45706769:0,0,0 -g1,23388:32583029,45706769 +(1,23386:32583029,45706769:0,0,0 +g1,23386:32583029,45706769 ) ) ] -(1,23388:6630773,47279633:25952256,0,0 -h1,23388:6630773,47279633:25952256,0,0 +(1,23386:6630773,47279633:25952256,0,0 +h1,23386:6630773,47279633:25952256,0,0 ) ] -(1,23388:4262630,4025873:0,0,0 -[1,23388:-473656,4025873:0,0,0 -(1,23388:-473656,-710413:0,0,0 -(1,23388:-473656,-710413:0,0,0 -g1,23388:-473656,-710413 +(1,23386:4262630,4025873:0,0,0 +[1,23386:-473656,4025873:0,0,0 +(1,23386:-473656,-710413:0,0,0 +(1,23386:-473656,-710413:0,0,0 +g1,23386:-473656,-710413 ) -g1,23388:-473656,-710413 +g1,23386:-473656,-710413 ) ] ) ] -!27630 -}402 -Input:4386:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4387:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4388:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4389:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!27629 +}403 Input:4390:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4391:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4392:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4396:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{403 -[1,23428:4262630,47279633:28320399,43253760,0 -(1,23428:4262630,4025873:0,0,0 -[1,23428:-473656,4025873:0,0,0 -(1,23428:-473656,-710413:0,0,0 -(1,23428:-473656,-644877:0,0,0 -k1,23428:-473656,-644877:-65536 +{404 +[1,23426:4262630,47279633:28320399,43253760,0 +(1,23426:4262630,4025873:0,0,0 +[1,23426:-473656,4025873:0,0,0 +(1,23426:-473656,-710413:0,0,0 +(1,23426:-473656,-644877:0,0,0 +k1,23426:-473656,-644877:-65536 ) -(1,23428:-473656,4736287:0,0,0 -k1,23428:-473656,4736287:5209943 +(1,23426:-473656,4736287:0,0,0 +k1,23426:-473656,4736287:5209943 ) -g1,23428:-473656,-710413 +g1,23426:-473656,-710413 ) ] ) -[1,23428:6630773,47279633:25952256,43253760,0 -[1,23428:6630773,4812305:25952256,786432,0 -(1,23428:6630773,4812305:25952256,505283,134348 -(1,23428:6630773,4812305:25952256,505283,134348 -g1,23428:3078558,4812305 -[1,23428:3078558,4812305:0,0,0 -(1,23428:3078558,2439708:0,1703936,0 -k1,23428:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23428:2537886,2439708:1179648,16384,0 +[1,23426:6630773,47279633:25952256,43253760,0 +[1,23426:6630773,4812305:25952256,786432,0 +(1,23426:6630773,4812305:25952256,505283,134348 +(1,23426:6630773,4812305:25952256,505283,134348 +g1,23426:3078558,4812305 +[1,23426:3078558,4812305:0,0,0 +(1,23426:3078558,2439708:0,1703936,0 +k1,23426:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23426:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23428:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23426:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23428:3078558,4812305:0,0,0 -(1,23428:3078558,2439708:0,1703936,0 -g1,23428:29030814,2439708 -g1,23428:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23428:36151628,1915420:16384,1179648,0 +[1,23426:3078558,4812305:0,0,0 +(1,23426:3078558,2439708:0,1703936,0 +g1,23426:29030814,2439708 +g1,23426:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23426:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23428:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23426:37855564,2439708:1179648,16384,0 ) ) -k1,23428:3078556,2439708:-34777008 +k1,23426:3078556,2439708:-34777008 ) ] -[1,23428:3078558,4812305:0,0,0 -(1,23428:3078558,49800853:0,16384,2228224 -k1,23428:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23428:2537886,49800853:1179648,16384,0 +[1,23426:3078558,4812305:0,0,0 +(1,23426:3078558,49800853:0,16384,2228224 +k1,23426:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23426:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23428:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23426:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23428:3078558,4812305:0,0,0 -(1,23428:3078558,49800853:0,16384,2228224 -g1,23428:29030814,49800853 -g1,23428:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23428:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23428:37855564,49800853:1179648,16384,0 +[1,23426:3078558,4812305:0,0,0 +(1,23426:3078558,49800853:0,16384,2228224 +g1,23426:29030814,49800853 +g1,23426:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23426:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23426:37855564,49800853:1179648,16384,0 ) ) -k1,23428:3078556,49800853:-34777008 -) -] -g1,23428:6630773,4812305 -k1,23428:21114230,4812305:13288080 -g1,23428:22736901,4812305 -g1,23428:23350318,4812305 -g1,23428:24759997,4812305 -g1,23428:28372341,4812305 -g1,23428:30105768,4812305 -) -) -] -[1,23428:6630773,45706769:25952256,40108032,0 -(1,23428:6630773,45706769:25952256,40108032,0 -(1,23428:6630773,45706769:0,0,0 -g1,23428:6630773,45706769 -) -[1,23428:6630773,45706769:25952256,40108032,0 -v1,23388:6630773,6254097:0,393216,0 -(1,23388:6630773,8391082:25952256,2530201,0 -g1,23388:6630773,8391082 -g1,23388:6237557,8391082 -r1,23428:6368629,8391082:131072,2530201,0 -g1,23388:6567858,8391082 -g1,23388:6764466,8391082 -[1,23388:6764466,8391082:25818563,2530201,0 -(1,23388:6764466,6526574:25818563,665693,196608 -(1,23387:6764466,6526574:0,665693,196608 -r1,23428:7868133,6526574:1103667,862301,196608 -k1,23387:6764466,6526574:-1103667 -) -(1,23387:6764466,6526574:1103667,665693,196608 -) -k1,23387:8074701,6526574:206568 -k1,23387:9800919,6526574:327680 -k1,23387:12797355,6526574:206568 -(1,23387:12797355,6526574:0,459977,115847 -r1,23428:16672739,6526574:3875384,575824,115847 -k1,23387:12797355,6526574:-3875384 -) -(1,23387:12797355,6526574:3875384,459977,115847 -k1,23387:12797355,6526574:3277 -h1,23387:16669462,6526574:0,411205,112570 -) -k1,23387:16879307,6526574:206568 -k1,23387:18190157,6526574:206568 -k1,23387:19144491,6526574:206568 -k1,23387:20864285,6526574:206568 -k1,23387:21722281,6526574:206568 -k1,23387:24952680,6526574:206568 -k1,23387:25515108,6526574:206568 -k1,23387:26704716,6526574:206568 -k1,23387:28359630,6526574:206568 -k1,23387:30133819,6526574:206568 -k1,23387:31128785,6526574:206568 -k1,23388:32583029,6526574:0 -) -(1,23388:6764466,7391654:25818563,505283,134348 -k1,23387:9540817,7391654:196854 -k1,23387:10353708,7391654:196853 -k1,23387:10906422,7391654:196854 -k1,23387:12341250,7391654:196853 -k1,23387:13822610,7391654:196854 -k1,23387:14550961,7391654:196854 -k1,23387:17417095,7391654:196853 -k1,23387:19646876,7391654:196854 -k1,23387:21212122,7391654:196854 -k1,23387:22955625,7391654:196853 -k1,23387:23765241,7391654:196854 -k1,23387:24981180,7391654:196854 -k1,23387:26566086,7391654:196853 -k1,23387:28261093,7391654:196854 -k1,23387:29649391,7391654:196853 -k1,23387:31189078,7391654:196854 -k1,23387:32583029,7391654:0 -) -(1,23388:6764466,8256734:25818563,513147,134348 -g1,23387:7982780,8256734 -g1,23387:10877505,8256734 -g1,23387:11728162,8256734 -g1,23387:14864059,8256734 -g1,23387:16755428,8256734 -g1,23387:18733304,8256734 -g1,23387:20217039,8256734 -g1,23387:21917042,8256734 -g1,23387:22732309,8256734 -g1,23387:23950623,8256734 -g1,23387:27226112,8256734 -g1,23387:28595814,8256734 -g1,23387:29786603,8256734 -k1,23388:32583029,8256734:1008604 -g1,23388:32583029,8256734 -) -] -g1,23388:32583029,8391082 -) -h1,23388:6630773,8391082:0,0,0 -(1,23391:6630773,11222242:25952256,32768,229376 -(1,23391:6630773,11222242:0,32768,229376 -(1,23391:6630773,11222242:5505024,32768,229376 -r1,23428:12135797,11222242:5505024,262144,229376 -) -k1,23391:6630773,11222242:-5505024 -) -(1,23391:6630773,11222242:25952256,32768,0 -r1,23428:32583029,11222242:25952256,32768,0 -) -) -(1,23391:6630773,12854094:25952256,606339,161218 -(1,23391:6630773,12854094:2464678,582746,14155 -g1,23391:6630773,12854094 -g1,23391:9095451,12854094 -) -g1,23391:12687873,12854094 -g1,23391:14397576,12854094 -g1,23391:17595995,12854094 -g1,23391:19253794,12854094 -k1,23391:32583029,12854094:8415608 -g1,23391:32583029,12854094 -) -(1,23394:6630773,14112390:25952256,513147,134348 -k1,23393:9855507,14112390:209423 -k1,23393:10680969,14112390:209424 -k1,23393:11909477,14112390:209423 -k1,23393:13341803,14112390:209424 -k1,23393:14210518,14112390:209423 -k1,23393:15623182,14112390:209423 -k1,23393:18250229,14112390:209424 -k1,23393:19552137,14112390:209423 -k1,23393:20447723,14112390:209424 -k1,23393:21427849,14112390:209423 -k1,23393:24709600,14112390:209423 -k1,23393:25866675,14112390:209424 -k1,23393:27095183,14112390:209423 -(1,23393:27095183,14112390:0,459977,115847 -r1,23428:28508584,14112390:1413401,575824,115847 -k1,23393:27095183,14112390:-1413401 -) -(1,23393:27095183,14112390:1413401,459977,115847 -k1,23393:27095183,14112390:3277 -h1,23393:28505307,14112390:0,411205,112570 -) -k1,23393:28718008,14112390:209424 -k1,23393:31056040,14112390:209423 -k1,23394:32583029,14112390:0 -) -(1,23394:6630773,14977470:25952256,505283,134348 -k1,23393:8665011,14977470:174326 -k1,23393:10699248,14977470:174325 -k1,23393:12652221,14977470:174326 -k1,23393:13509432,14977470:174326 -k1,23393:15468958,14977470:174325 -k1,23393:16834729,14977470:174326 -k1,23393:19934582,14977470:174326 -k1,23393:21127992,14977470:174325 -k1,23393:23704868,14977470:174326 -k1,23393:24562079,14977470:174326 -k1,23393:26994119,14977470:174325 -k1,23393:30573040,14977470:174326 -k1,23393:32583029,14977470:0 -) -(1,23394:6630773,15842550:25952256,513147,126483 -k1,23393:7843230,15842550:193372 -k1,23393:9136296,15842550:193372 -k1,23393:9981096,15842550:193372 -k1,23393:10530328,15842550:193372 -k1,23393:13592867,15842550:193373 -k1,23393:17258992,15842550:193372 -k1,23393:17910461,15842550:193372 -k1,23393:18635330,15842550:193372 -k1,23393:21937730,15842550:193372 -k1,23393:22782530,15842550:193372 -k1,23393:24388203,15842550:193372 -k1,23393:25264460,15842550:193372 -k1,23393:27072640,15842550:193373 -k1,23393:27621872,15842550:193372 -k1,23393:29041423,15842550:193372 -k1,23393:30217835,15842550:193372 -k1,23394:32583029,15842550:0 -) -(1,23394:6630773,16707630:25952256,513147,126483 -k1,23393:8646699,16707630:256940 -k1,23393:10060348,16707630:256939 -k1,23393:11521184,16707630:256940 -k1,23393:12461009,16707630:256940 -k1,23393:14790853,16707630:256940 -k1,23393:15660554,16707630:256939 -k1,23393:16273354,16707630:256940 -k1,23393:18129372,16707630:256940 -k1,23393:19014146,16707630:256939 -k1,23393:20764652,16707630:256940 -k1,23393:22718974,16707630:256940 -k1,23393:23434010,16707630:256939 -k1,23393:24222447,16707630:256940 -k1,23393:26081087,16707630:256940 -k1,23393:28890654,16707630:256940 -k1,23393:29799021,16707630:256939 -k1,23393:31563944,16707630:256940 -k1,23393:32583029,16707630:0 -) -(1,23394:6630773,17572710:25952256,513147,134348 -k1,23393:7787998,17572710:174185 -k1,23393:9539635,17572710:174185 -k1,23393:12349023,17572710:174185 -k1,23393:14265811,17572710:174186 -k1,23393:15631441,17572710:174185 -k1,23393:17416501,17572710:174185 -k1,23393:18609771,17572710:174185 -k1,23393:22290132,17572710:174185 -k1,23393:23839918,17572710:174185 -k1,23393:25712141,17572710:174185 -k1,23393:26344424,17572710:174186 -k1,23393:27050106,17572710:174185 -k1,23393:28033661,17572710:174185 -k1,23393:30232253,17572710:174185 -k1,23393:32583029,17572710:0 -) -(1,23394:6630773,18437790:25952256,513147,115847 -k1,23393:7897887,18437790:217227 -(1,23393:7897887,18437790:0,452978,115847 -r1,23428:13883542,18437790:5985655,568825,115847 -k1,23393:7897887,18437790:-5985655 -) -(1,23393:7897887,18437790:5985655,452978,115847 -k1,23393:7897887,18437790:3277 -h1,23393:13880265,18437790:0,411205,112570 -) -k1,23393:14100768,18437790:217226 -k1,23393:15265646,18437790:217227 -k1,23393:17600340,18437790:217226 -k1,23393:19640123,18437790:217227 -k1,23393:20876434,18437790:217226 -k1,23393:23435918,18437790:217227 -k1,23393:26678941,18437790:217226 -k1,23393:29680137,18437790:217227 -k1,23393:31088808,18437790:217226 -k1,23393:32583029,18437790:0 -) -(1,23394:6630773,19302870:25952256,513147,126483 -k1,23393:9962422,19302870:157085 -k1,23393:10735545,19302870:157085 -k1,23393:13654972,19302870:157084 -k1,23393:15180449,19302870:157085 -k1,23393:16534221,19302870:157085 -k1,23393:18187493,19302870:157085 -k1,23393:20213008,19302870:157084 -k1,23393:22277846,19302870:157085 -k1,23393:22790791,19302870:157085 -k1,23393:23930916,19302870:157085 -k1,23393:27767847,19302870:157084 -k1,23393:29667534,19302870:157085 -k1,23393:30997058,19302870:157085 -k1,23393:32583029,19302870:0 -) -(1,23394:6630773,20167950:25952256,513147,126483 -k1,23393:8152268,20167950:215362 -k1,23393:9386715,20167950:215362 -k1,23393:10674247,20167950:215363 -k1,23393:12046319,20167950:215362 -k1,23393:13655632,20167950:215362 -k1,23393:16253883,20167950:215362 -k1,23393:19147702,20167950:215363 -k1,23393:20796992,20167950:215362 -k1,23393:21628392,20167950:215362 -k1,23393:22199614,20167950:215362 -k1,23393:25117681,20167950:215362 -k1,23393:26432738,20167950:215363 -k1,23393:27299528,20167950:215362 -(1,23393:27299528,20167950:0,452978,115847 -r1,23428:31174912,20167950:3875384,568825,115847 -k1,23393:27299528,20167950:-3875384 -) -(1,23393:27299528,20167950:3875384,452978,115847 -k1,23393:27299528,20167950:3277 -h1,23393:31171635,20167950:0,411205,112570 -) -k1,23393:31563944,20167950:215362 -k1,23393:32583029,20167950:0 -) -(1,23394:6630773,21033030:25952256,513147,126483 -g1,23393:8002441,21033030 -g1,23393:9700478,21033030 -g1,23393:10582592,21033030 -g1,23393:13185026,21033030 -g1,23393:14778206,21033030 -g1,23393:16540469,21033030 -g1,23393:17931143,21033030 -g1,23393:20103006,21033030 -g1,23393:22243411,21033030 -g1,23393:23461725,21033030 -k1,23394:32583029,21033030:5562699 -g1,23394:32583029,21033030 -) -v1,23396:6630773,21717885:0,393216,0 -(1,23404:6630773,23539532:25952256,2214863,196608 -g1,23404:6630773,23539532 -g1,23404:6630773,23539532 -g1,23404:6434165,23539532 -(1,23404:6434165,23539532:0,2214863,196608 -r1,23428:32779637,23539532:26345472,2411471,196608 -k1,23404:6434165,23539532:-26345472 -) -(1,23404:6434165,23539532:26345472,2214863,196608 -[1,23404:6630773,23539532:25952256,2018255,0 -(1,23398:6630773,21952322:25952256,431045,112852 -(1,23397:6630773,21952322:0,0,0 -g1,23397:6630773,21952322 -g1,23397:6630773,21952322 -g1,23397:6303093,21952322 -(1,23397:6303093,21952322:0,0,0 -) -g1,23397:6630773,21952322 -) -g1,23398:7626635,21952322 -g1,23398:8622497,21952322 -g1,23398:22232608,21952322 -g1,23398:23892378,21952322 -g1,23398:24556286,21952322 -g1,23398:26216056,21952322 -g1,23398:26879964,21952322 -g1,23398:28539734,21952322 -g1,23398:29867550,21952322 -k1,23398:29867550,21952322:11561 -h1,23398:32202789,21952322:0,0,0 -k1,23398:32583029,21952322:380240 -g1,23398:32583029,21952322 -) -(1,23399:6630773,22637177:25952256,431045,86428 -h1,23399:6630773,22637177:0,0,0 -g1,23399:11278128,22637177 -g1,23399:11942036,22637177 -g1,23399:12605944,22637177 -h1,23399:13269852,22637177:0,0,0 -k1,23399:32583028,22637177:19313176 -g1,23399:32583028,22637177 -) -(1,23403:6630773,23453104:25952256,424439,86428 -(1,23401:6630773,23453104:0,0,0 -g1,23401:6630773,23453104 -g1,23401:6630773,23453104 -g1,23401:6303093,23453104 -(1,23401:6303093,23453104:0,0,0 -) -g1,23401:6630773,23453104 -) -g1,23403:7626635,23453104 -g1,23403:8954451,23453104 -k1,23403:8954451,23453104:0 -h1,23403:15925485,23453104:0,0,0 -k1,23403:32583029,23453104:16657544 -g1,23403:32583029,23453104 -) -] -) -g1,23404:32583029,23539532 -g1,23404:6630773,23539532 -g1,23404:6630773,23539532 -g1,23404:32583029,23539532 -g1,23404:32583029,23539532 -) -h1,23404:6630773,23736140:0,0,0 -v1,23408:6630773,24420995:0,393216,0 -(1,23418:6630773,26367108:25952256,2339329,196608 -g1,23418:6630773,26367108 -g1,23418:6630773,26367108 -g1,23418:6434165,26367108 -(1,23418:6434165,26367108:0,2339329,196608 -r1,23428:32779637,26367108:26345472,2535937,196608 -k1,23418:6434165,26367108:-26345472 -) -(1,23418:6434165,26367108:26345472,2339329,196608 -[1,23418:6630773,26367108:25952256,2142721,0 -(1,23410:6630773,24655432:25952256,431045,86428 -(1,23409:6630773,24655432:0,0,0 -g1,23409:6630773,24655432 -g1,23409:6630773,24655432 -g1,23409:6303093,24655432 -(1,23409:6303093,24655432:0,0,0 -) -g1,23409:6630773,24655432 -) -k1,23410:6630773,24655432:0 -g1,23410:11278128,24655432 -g1,23410:11942036,24655432 -g1,23410:12605944,24655432 -h1,23410:13269852,24655432:0,0,0 -k1,23410:32583028,24655432:19313176 -g1,23410:32583028,24655432 -) -(1,23414:6630773,25471359:25952256,424439,86428 -(1,23412:6630773,25471359:0,0,0 -g1,23412:6630773,25471359 -g1,23412:6630773,25471359 -g1,23412:6303093,25471359 -(1,23412:6303093,25471359:0,0,0 -) -g1,23412:6630773,25471359 -) -g1,23414:7626635,25471359 -g1,23414:8954451,25471359 -g1,23414:15261577,25471359 -g1,23414:20572841,25471359 -h1,23414:21236749,25471359:0,0,0 -k1,23414:32583029,25471359:11346280 -g1,23414:32583029,25471359 -) -(1,23416:6630773,26287286:25952256,431045,79822 -(1,23415:6630773,26287286:0,0,0 -g1,23415:6630773,26287286 -g1,23415:6630773,26287286 -g1,23415:6303093,26287286 -(1,23415:6303093,26287286:0,0,0 -) -g1,23415:6630773,26287286 -) -k1,23416:6630773,26287286:0 -h1,23416:9618359,26287286:0,0,0 -k1,23416:32583029,26287286:22964670 -g1,23416:32583029,26287286 -) -] -) -g1,23418:32583029,26367108 -g1,23418:6630773,26367108 -g1,23418:6630773,26367108 -g1,23418:32583029,26367108 -g1,23418:32583029,26367108 -) -h1,23418:6630773,26563716:0,0,0 -(1,23422:6630773,27428796:25952256,513147,115847 -h1,23421:6630773,27428796:983040,0,0 -k1,23421:9649940,27428796:252892 -k1,23421:10317621,27428796:252838 -k1,23421:11102010,27428796:252892 -k1,23421:12868128,27428796:252892 -k1,23421:13737058,27428796:252892 -k1,23421:15751558,27428796:252892 -k1,23421:17960700,27428796:252892 -k1,23421:19232677,27428796:252892 -k1,23421:21399219,27428796:252891 -(1,23421:21399219,27428796:0,452978,115847 -r1,23428:23164332,27428796:1765113,568825,115847 -k1,23421:21399219,27428796:-1765113 -) -(1,23421:21399219,27428796:1765113,452978,115847 -k1,23421:21399219,27428796:3277 -h1,23421:23161055,27428796:0,411205,112570 -) -k1,23421:23590894,27428796:252892 -(1,23421:23590894,27428796:0,452978,115847 -r1,23428:25707719,27428796:2116825,568825,115847 -k1,23421:23590894,27428796:-2116825 -) -(1,23421:23590894,27428796:2116825,452978,115847 -k1,23421:23590894,27428796:3277 -h1,23421:25704442,27428796:0,411205,112570 -) -k1,23421:25960611,27428796:252892 -k1,23421:27404948,27428796:252892 -(1,23421:27404948,27428796:0,452978,115847 -r1,23428:30225197,27428796:2820249,568825,115847 -k1,23421:27404948,27428796:-2820249 -) -(1,23421:27404948,27428796:2820249,452978,115847 -k1,23421:27404948,27428796:3277 -h1,23421:30221920,27428796:0,411205,112570 -) -k1,23421:30478089,27428796:252892 -k1,23421:31835263,27428796:252892 -k1,23421:32583029,27428796:0 -) -(1,23422:6630773,28293876:25952256,513147,126483 -k1,23421:9377639,28293876:227662 -k1,23421:10796746,28293876:227662 -k1,23421:12413771,28293876:227662 -k1,23421:14053734,28293876:227662 -k1,23421:16022688,28293876:227662 -k1,23421:16933235,28293876:227662 -k1,23421:19447447,28293876:227661 -k1,23421:20500207,28293876:227662 -k1,23421:22602199,28293876:227662 -k1,23421:25701648,28293876:227662 -k1,23421:28368560,28293876:227662 -k1,23421:29787667,28293876:227662 -k1,23421:31858201,28293876:227662 -k1,23421:32583029,28293876:0 -) -(1,23422:6630773,29158956:25952256,513147,134348 -k1,23421:9316876,29158956:193769 -k1,23421:10162073,29158956:193769 -k1,23421:10809345,29158956:193763 -k1,23421:15504782,29158956:193769 -k1,23421:17380205,29158956:193769 -k1,23421:18593059,29158956:193769 -k1,23421:19879313,29158956:193769 -k1,23421:20740237,29158956:193768 -k1,23421:21348844,29158956:193764 -k1,23421:23703990,29158956:193769 -k1,23421:24583921,29158956:193769 -k1,23421:26359073,29158956:193768 -k1,23421:27168880,29158956:193769 -k1,23421:28752012,29158956:193769 -k1,23421:30666101,29158956:193769 -k1,23421:32583029,29158956:0 -) -(1,23422:6630773,30024036:25952256,505283,126483 -g1,23421:7516164,30024036 -g1,23421:9218134,30024036 -g1,23421:11578740,30024036 -g1,23421:13664095,30024036 -g1,23421:15315602,30024036 -g1,23421:16706276,30024036 -g1,23421:18607475,30024036 -k1,23422:32583029,30024036:12728404 -g1,23422:32583029,30024036 -) -(1,23423:6630773,32855196:25952256,32768,229376 -(1,23423:6630773,32855196:0,32768,229376 -(1,23423:6630773,32855196:5505024,32768,229376 -r1,23428:12135797,32855196:5505024,262144,229376 -) -k1,23423:6630773,32855196:-5505024 -) -(1,23423:6630773,32855196:25952256,32768,0 -r1,23428:32583029,32855196:25952256,32768,0 -) -) -(1,23423:6630773,34487048:25952256,606339,14155 -(1,23423:6630773,34487048:2464678,582746,14155 -g1,23423:6630773,34487048 -g1,23423:9095451,34487048 -) -g1,23423:13301290,34487048 -k1,23423:32583028,34487048:17457216 -g1,23423:32583028,34487048 -) -(1,23426:6630773,35745344:25952256,513147,134348 -k1,23425:7511123,35745344:252515 -k1,23425:10270390,35745344:252515 -k1,23425:11749084,35745344:252515 -k1,23425:13314941,35745344:252515 -k1,23425:14559016,35745344:252515 -k1,23425:15830616,35745344:252515 -k1,23425:17684831,35745344:252515 -k1,23425:20606627,35745344:252515 -k1,23425:23843652,35745344:252515 -k1,23425:24747595,35745344:252515 -k1,23425:26389473,35745344:252515 -k1,23425:28989488,35745344:252515 -k1,23425:30314172,35745344:252515 -k1,23425:32583029,35745344:0 -) -(1,23426:6630773,36610424:25952256,513147,126483 -k1,23425:8125649,36610424:209060 -k1,23425:9353793,36610424:209059 -k1,23425:11058385,36610424:209060 -k1,23425:13820072,36610424:209060 -k1,23425:15423083,36610424:209060 -k1,23425:17956704,36610424:209059 -k1,23425:18817192,36610424:209060 -k1,23425:20045337,36610424:209060 -k1,23425:21523174,36610424:209060 -k1,23425:22391525,36610424:209059 -k1,23425:23619670,36610424:209060 -k1,23425:24985440,36610424:209060 -k1,23425:26598281,36610424:209060 -k1,23425:28120682,36610424:209059 -k1,23425:29321302,36610424:209060 -k1,23425:32583029,36610424:0 -) -(1,23426:6630773,37475504:25952256,513147,126483 -k1,23425:7482928,37475504:192863 -k1,23425:10354903,37475504:192863 -k1,23425:14026417,37475504:192863 -k1,23425:15600124,37475504:192863 -k1,23425:17839021,37475504:192863 -k1,23425:19670939,37475504:192863 -k1,23425:21258407,37475504:192862 -k1,23425:22102698,37475504:192863 -k1,23425:23521740,37475504:192863 -k1,23425:25108554,37475504:192863 -k1,23425:26527596,37475504:192863 -k1,23425:28959824,37475504:192863 -k1,23425:30344132,37475504:192863 -k1,23425:31931601,37475504:192863 -k1,23425:32583029,37475504:0 -) -(1,23426:6630773,38340584:25952256,513147,134348 -k1,23425:8257496,38340584:214422 -k1,23425:10039539,38340584:214422 -k1,23425:13326288,38340584:214421 -k1,23425:15827261,38340584:214422 -k1,23425:16657721,38340584:214422 -k1,23425:18473843,38340584:214422 -k1,23425:23040511,38340584:214422 -k1,23425:26601201,38340584:214422 -k1,23425:27739680,38340584:214421 -k1,23425:28973187,38340584:214422 -k1,23425:30889579,38340584:214422 -k1,23425:32583029,38340584:0 -) -(1,23426:6630773,39205664:25952256,513147,134348 -k1,23425:8246941,39205664:285787 -k1,23425:9551813,39205664:285787 -k1,23425:11226963,39205664:285787 -k1,23425:14191863,39205664:285788 -k1,23425:15163812,39205664:285787 -k1,23425:18754580,39205664:285787 -k1,23425:19571864,39205664:285787 -k1,23425:22703224,39205664:285787 -k1,23425:24093293,39205664:285787 -k1,23425:25126847,39205664:285788 -k1,23425:27267303,39205664:285787 -k1,23425:28362460,39205664:285787 -k1,23425:29820686,39205664:285787 -k1,23425:32583029,39205664:0 -) -(1,23426:6630773,40070744:25952256,513147,134348 -g1,23425:10665824,40070744 -g1,23425:14040272,40070744 -g1,23425:14922386,40070744 -g1,23425:16857008,40070744 -g1,23425:17412097,40070744 -g1,23425:20008633,40070744 -g1,23425:23182541,40070744 -g1,23425:24067932,40070744 -g1,23425:24623021,40070744 -k1,23426:32583029,40070744:4869331 -g1,23426:32583029,40070744 -) -(1,23428:6630773,40935824:25952256,505283,126483 -h1,23427:6630773,40935824:983040,0,0 -k1,23427:9028854,40935824:218354 -k1,23427:12422427,40935824:218354 -k1,23427:15625291,40935824:218354 -k1,23427:16375142,40935824:218354 -k1,23427:18243693,40935824:218354 -k1,23427:20817410,40935824:218353 -k1,23427:22107933,40935824:218354 -k1,23427:24488975,40935824:218354 -k1,23427:28258070,40935824:218354 -k1,23427:29127852,40935824:218354 -k1,23427:31896867,40935824:218354 -k1,23427:32583029,40935824:0 -) -(1,23428:6630773,41800904:25952256,513147,134348 -k1,23427:7827763,41800904:177905 -k1,23427:10016313,41800904:177905 -k1,23427:11312262,41800904:177905 -k1,23427:12757633,41800904:177905 -k1,23427:14387160,41800904:177905 -k1,23427:16440705,41800904:177905 -k1,23427:19177792,41800904:177906 -k1,23427:20014989,41800904:177905 -k1,23427:21582257,41800904:177905 -k1,23427:23798332,41800904:177905 -k1,23427:25711630,41800904:177905 -k1,23427:26245395,41800904:177905 -k1,23427:29598519,41800904:177905 -k1,23427:32583029,41800904:0 -) -(1,23428:6630773,42665984:25952256,513147,126483 -k1,23427:9473999,42665984:221131 -k1,23427:11726091,42665984:221131 -k1,23427:12598650,42665984:221131 -k1,23427:13175641,42665984:221131 -k1,23427:15577155,42665984:221131 -k1,23427:18880445,42665984:221132 -k1,23427:20293021,42665984:221131 -k1,23427:21721325,42665984:221131 -k1,23427:24719872,42665984:221131 -k1,23427:25557041,42665984:221131 -k1,23427:28950748,42665984:221109 -k1,23427:30363324,42665984:221131 -k1,23427:32583029,42665984:0 -) -(1,23428:6630773,43531064:25952256,513147,126483 -k1,23427:7476275,43531064:232740 -k1,23427:8728100,43531064:232740 -k1,23427:10386248,43531064:232740 -k1,23427:12317026,43531064:232740 -k1,23427:14548614,43531064:232740 -k1,23427:16510194,43531064:232740 -k1,23427:18246985,43531064:232740 -k1,23427:19992952,43531064:232741 -k1,23427:20877120,43531064:232740 -k1,23427:22727289,43531064:232740 -k1,23427:24523063,43531064:232740 -k1,23427:25383638,43531064:232740 -k1,23427:26635463,43531064:232740 -k1,23427:28235284,43531064:232740 -k1,23427:29127316,43531064:232740 -k1,23427:32583029,43531064:0 -) -(1,23428:6630773,44396144:25952256,513147,134348 -k1,23427:9555649,44396144:162533 -k1,23427:13086733,44396144:162533 -k1,23427:14240826,44396144:162533 -k1,23427:15019397,44396144:162533 -k1,23427:17959346,44396144:162533 -k1,23427:19388035,44396144:162533 -k1,23427:25332810,44396144:162533 -k1,23427:27505988,44396144:162533 -k1,23427:29351449,44396144:162496 -k1,23427:32583029,44396144:0 -) -(1,23428:6630773,45261224:25952256,513147,126483 -k1,23427:7936653,45261224:213395 -k1,23427:10006028,45261224:213395 -k1,23427:10575283,45261224:213395 -k1,23427:13112586,45261224:213396 -k1,23427:14008866,45261224:213395 -k1,23427:17463672,45261224:213395 -k1,23427:18328495,45261224:213395 -k1,23427:21244595,45261224:213395 -k1,23427:22477075,45261224:213395 -k1,23427:24424554,45261224:213396 -k1,23427:25320834,45261224:213395 -k1,23427:28421090,45261224:213395 -k1,23427:31914562,45261224:213395 -k1,23427:32583029,45261224:0 -) -] -(1,23428:32583029,45706769:0,0,0 -g1,23428:32583029,45706769 -) -) -] -(1,23428:6630773,47279633:25952256,0,0 -h1,23428:6630773,47279633:25952256,0,0 -) -] -(1,23428:4262630,4025873:0,0,0 -[1,23428:-473656,4025873:0,0,0 -(1,23428:-473656,-710413:0,0,0 -(1,23428:-473656,-710413:0,0,0 -g1,23428:-473656,-710413 -) -g1,23428:-473656,-710413 +k1,23426:3078556,49800853:-34777008 +) +] +g1,23426:6630773,4812305 +k1,23426:21114230,4812305:13288080 +g1,23426:22736901,4812305 +g1,23426:23350318,4812305 +g1,23426:24759997,4812305 +g1,23426:28372341,4812305 +g1,23426:30105768,4812305 +) +) +] +[1,23426:6630773,45706769:25952256,40108032,0 +(1,23426:6630773,45706769:25952256,40108032,0 +(1,23426:6630773,45706769:0,0,0 +g1,23426:6630773,45706769 +) +[1,23426:6630773,45706769:25952256,40108032,0 +v1,23386:6630773,6254097:0,393216,0 +(1,23386:6630773,8391082:25952256,2530201,0 +g1,23386:6630773,8391082 +g1,23386:6237557,8391082 +r1,23426:6368629,8391082:131072,2530201,0 +g1,23386:6567858,8391082 +g1,23386:6764466,8391082 +[1,23386:6764466,8391082:25818563,2530201,0 +(1,23386:6764466,6526574:25818563,665693,196608 +(1,23385:6764466,6526574:0,665693,196608 +r1,23426:7868133,6526574:1103667,862301,196608 +k1,23385:6764466,6526574:-1103667 +) +(1,23385:6764466,6526574:1103667,665693,196608 +) +k1,23385:8074701,6526574:206568 +k1,23385:9800919,6526574:327680 +k1,23385:12797355,6526574:206568 +(1,23385:12797355,6526574:0,459977,115847 +r1,23426:16672739,6526574:3875384,575824,115847 +k1,23385:12797355,6526574:-3875384 +) +(1,23385:12797355,6526574:3875384,459977,115847 +k1,23385:12797355,6526574:3277 +h1,23385:16669462,6526574:0,411205,112570 +) +k1,23385:16879307,6526574:206568 +k1,23385:18190157,6526574:206568 +k1,23385:19144491,6526574:206568 +k1,23385:20864285,6526574:206568 +k1,23385:21722281,6526574:206568 +k1,23385:24952680,6526574:206568 +k1,23385:25515108,6526574:206568 +k1,23385:26704716,6526574:206568 +k1,23385:28359630,6526574:206568 +k1,23385:30133819,6526574:206568 +k1,23385:31128785,6526574:206568 +k1,23386:32583029,6526574:0 +) +(1,23386:6764466,7391654:25818563,505283,134348 +k1,23385:9540817,7391654:196854 +k1,23385:10353708,7391654:196853 +k1,23385:10906422,7391654:196854 +k1,23385:12341250,7391654:196853 +k1,23385:13822610,7391654:196854 +k1,23385:14550961,7391654:196854 +k1,23385:17417095,7391654:196853 +k1,23385:19646876,7391654:196854 +k1,23385:21212122,7391654:196854 +k1,23385:22955625,7391654:196853 +k1,23385:23765241,7391654:196854 +k1,23385:24981180,7391654:196854 +k1,23385:26566086,7391654:196853 +k1,23385:28261093,7391654:196854 +k1,23385:29649391,7391654:196853 +k1,23385:31189078,7391654:196854 +k1,23385:32583029,7391654:0 +) +(1,23386:6764466,8256734:25818563,513147,134348 +g1,23385:7982780,8256734 +g1,23385:10877505,8256734 +g1,23385:11728162,8256734 +g1,23385:14864059,8256734 +g1,23385:16755428,8256734 +g1,23385:18733304,8256734 +g1,23385:20217039,8256734 +g1,23385:21917042,8256734 +g1,23385:22732309,8256734 +g1,23385:23950623,8256734 +g1,23385:27226112,8256734 +g1,23385:28595814,8256734 +g1,23385:29786603,8256734 +k1,23386:32583029,8256734:1008604 +g1,23386:32583029,8256734 +) +] +g1,23386:32583029,8391082 +) +h1,23386:6630773,8391082:0,0,0 +(1,23389:6630773,11222242:25952256,32768,229376 +(1,23389:6630773,11222242:0,32768,229376 +(1,23389:6630773,11222242:5505024,32768,229376 +r1,23426:12135797,11222242:5505024,262144,229376 +) +k1,23389:6630773,11222242:-5505024 +) +(1,23389:6630773,11222242:25952256,32768,0 +r1,23426:32583029,11222242:25952256,32768,0 +) +) +(1,23389:6630773,12854094:25952256,606339,161218 +(1,23389:6630773,12854094:2464678,582746,14155 +g1,23389:6630773,12854094 +g1,23389:9095451,12854094 +) +g1,23389:12687873,12854094 +g1,23389:14397576,12854094 +g1,23389:17595995,12854094 +g1,23389:19253794,12854094 +k1,23389:32583029,12854094:8415608 +g1,23389:32583029,12854094 +) +(1,23392:6630773,14112390:25952256,513147,134348 +k1,23391:9855507,14112390:209423 +k1,23391:10680969,14112390:209424 +k1,23391:11909477,14112390:209423 +k1,23391:13341803,14112390:209424 +k1,23391:14210518,14112390:209423 +k1,23391:15623182,14112390:209423 +k1,23391:18250229,14112390:209424 +k1,23391:19552137,14112390:209423 +k1,23391:20447723,14112390:209424 +k1,23391:21427849,14112390:209423 +k1,23391:24709600,14112390:209423 +k1,23391:25866675,14112390:209424 +k1,23391:27095183,14112390:209423 +(1,23391:27095183,14112390:0,459977,115847 +r1,23426:28508584,14112390:1413401,575824,115847 +k1,23391:27095183,14112390:-1413401 +) +(1,23391:27095183,14112390:1413401,459977,115847 +k1,23391:27095183,14112390:3277 +h1,23391:28505307,14112390:0,411205,112570 +) +k1,23391:28718008,14112390:209424 +k1,23391:31056040,14112390:209423 +k1,23392:32583029,14112390:0 +) +(1,23392:6630773,14977470:25952256,505283,134348 +k1,23391:8665011,14977470:174326 +k1,23391:10699248,14977470:174325 +k1,23391:12652221,14977470:174326 +k1,23391:13509432,14977470:174326 +k1,23391:15468958,14977470:174325 +k1,23391:16834729,14977470:174326 +k1,23391:19934582,14977470:174326 +k1,23391:21127992,14977470:174325 +k1,23391:23704868,14977470:174326 +k1,23391:24562079,14977470:174326 +k1,23391:26994119,14977470:174325 +k1,23391:30573040,14977470:174326 +k1,23391:32583029,14977470:0 +) +(1,23392:6630773,15842550:25952256,513147,126483 +k1,23391:7843230,15842550:193372 +k1,23391:9136296,15842550:193372 +k1,23391:9981096,15842550:193372 +k1,23391:10530328,15842550:193372 +k1,23391:13592867,15842550:193373 +k1,23391:17258992,15842550:193372 +k1,23391:17910461,15842550:193372 +k1,23391:18635330,15842550:193372 +k1,23391:21937730,15842550:193372 +k1,23391:22782530,15842550:193372 +k1,23391:24388203,15842550:193372 +k1,23391:25264460,15842550:193372 +k1,23391:27072640,15842550:193373 +k1,23391:27621872,15842550:193372 +k1,23391:29041423,15842550:193372 +k1,23391:30217835,15842550:193372 +k1,23392:32583029,15842550:0 +) +(1,23392:6630773,16707630:25952256,513147,126483 +k1,23391:8646699,16707630:256940 +k1,23391:10060348,16707630:256939 +k1,23391:11521184,16707630:256940 +k1,23391:12461009,16707630:256940 +k1,23391:14790853,16707630:256940 +k1,23391:15660554,16707630:256939 +k1,23391:16273354,16707630:256940 +k1,23391:18129372,16707630:256940 +k1,23391:19014146,16707630:256939 +k1,23391:20764652,16707630:256940 +k1,23391:22718974,16707630:256940 +k1,23391:23434010,16707630:256939 +k1,23391:24222447,16707630:256940 +k1,23391:26081087,16707630:256940 +k1,23391:28890654,16707630:256940 +k1,23391:29799021,16707630:256939 +k1,23391:31563944,16707630:256940 +k1,23391:32583029,16707630:0 +) +(1,23392:6630773,17572710:25952256,513147,134348 +k1,23391:7787998,17572710:174185 +k1,23391:9539635,17572710:174185 +k1,23391:12349023,17572710:174185 +k1,23391:14265811,17572710:174186 +k1,23391:15631441,17572710:174185 +k1,23391:17416501,17572710:174185 +k1,23391:18609771,17572710:174185 +k1,23391:22290132,17572710:174185 +k1,23391:23839918,17572710:174185 +k1,23391:25712141,17572710:174185 +k1,23391:26344424,17572710:174186 +k1,23391:27050106,17572710:174185 +k1,23391:28033661,17572710:174185 +k1,23391:30232253,17572710:174185 +k1,23391:32583029,17572710:0 +) +(1,23392:6630773,18437790:25952256,513147,115847 +k1,23391:7897887,18437790:217227 +(1,23391:7897887,18437790:0,452978,115847 +r1,23426:13883542,18437790:5985655,568825,115847 +k1,23391:7897887,18437790:-5985655 +) +(1,23391:7897887,18437790:5985655,452978,115847 +k1,23391:7897887,18437790:3277 +h1,23391:13880265,18437790:0,411205,112570 +) +k1,23391:14100768,18437790:217226 +k1,23391:15265646,18437790:217227 +k1,23391:17600340,18437790:217226 +k1,23391:19640123,18437790:217227 +k1,23391:20876434,18437790:217226 +k1,23391:23435918,18437790:217227 +k1,23391:26678941,18437790:217226 +k1,23391:29680137,18437790:217227 +k1,23391:31088808,18437790:217226 +k1,23391:32583029,18437790:0 +) +(1,23392:6630773,19302870:25952256,513147,126483 +k1,23391:9962422,19302870:157085 +k1,23391:10735545,19302870:157085 +k1,23391:13654972,19302870:157084 +k1,23391:15180449,19302870:157085 +k1,23391:16534221,19302870:157085 +k1,23391:18187493,19302870:157085 +k1,23391:20213008,19302870:157084 +k1,23391:22277846,19302870:157085 +k1,23391:22790791,19302870:157085 +k1,23391:23930916,19302870:157085 +k1,23391:27767847,19302870:157084 +k1,23391:29667534,19302870:157085 +k1,23391:30997058,19302870:157085 +k1,23391:32583029,19302870:0 +) +(1,23392:6630773,20167950:25952256,513147,126483 +k1,23391:8152268,20167950:215362 +k1,23391:9386715,20167950:215362 +k1,23391:10674247,20167950:215363 +k1,23391:12046319,20167950:215362 +k1,23391:13655632,20167950:215362 +k1,23391:16253883,20167950:215362 +k1,23391:19147702,20167950:215363 +k1,23391:20796992,20167950:215362 +k1,23391:21628392,20167950:215362 +k1,23391:22199614,20167950:215362 +k1,23391:25117681,20167950:215362 +k1,23391:26432738,20167950:215363 +k1,23391:27299528,20167950:215362 +(1,23391:27299528,20167950:0,452978,115847 +r1,23426:31174912,20167950:3875384,568825,115847 +k1,23391:27299528,20167950:-3875384 +) +(1,23391:27299528,20167950:3875384,452978,115847 +k1,23391:27299528,20167950:3277 +h1,23391:31171635,20167950:0,411205,112570 +) +k1,23391:31563944,20167950:215362 +k1,23391:32583029,20167950:0 +) +(1,23392:6630773,21033030:25952256,513147,126483 +g1,23391:8002441,21033030 +g1,23391:9700478,21033030 +g1,23391:10582592,21033030 +g1,23391:13185026,21033030 +g1,23391:14778206,21033030 +g1,23391:16540469,21033030 +g1,23391:17931143,21033030 +g1,23391:20103006,21033030 +g1,23391:22243411,21033030 +g1,23391:23461725,21033030 +k1,23392:32583029,21033030:5562699 +g1,23392:32583029,21033030 +) +v1,23394:6630773,21717885:0,393216,0 +(1,23402:6630773,23539532:25952256,2214863,196608 +g1,23402:6630773,23539532 +g1,23402:6630773,23539532 +g1,23402:6434165,23539532 +(1,23402:6434165,23539532:0,2214863,196608 +r1,23426:32779637,23539532:26345472,2411471,196608 +k1,23402:6434165,23539532:-26345472 +) +(1,23402:6434165,23539532:26345472,2214863,196608 +[1,23402:6630773,23539532:25952256,2018255,0 +(1,23396:6630773,21952322:25952256,431045,112852 +(1,23395:6630773,21952322:0,0,0 +g1,23395:6630773,21952322 +g1,23395:6630773,21952322 +g1,23395:6303093,21952322 +(1,23395:6303093,21952322:0,0,0 +) +g1,23395:6630773,21952322 +) +g1,23396:7626635,21952322 +g1,23396:8622497,21952322 +g1,23396:22232608,21952322 +g1,23396:23892378,21952322 +g1,23396:24556286,21952322 +g1,23396:26216056,21952322 +g1,23396:26879964,21952322 +g1,23396:28539734,21952322 +g1,23396:29867550,21952322 +k1,23396:29867550,21952322:11561 +h1,23396:32202789,21952322:0,0,0 +k1,23396:32583029,21952322:380240 +g1,23396:32583029,21952322 +) +(1,23397:6630773,22637177:25952256,431045,86428 +h1,23397:6630773,22637177:0,0,0 +g1,23397:11278128,22637177 +g1,23397:11942036,22637177 +g1,23397:12605944,22637177 +h1,23397:13269852,22637177:0,0,0 +k1,23397:32583028,22637177:19313176 +g1,23397:32583028,22637177 +) +(1,23401:6630773,23453104:25952256,424439,86428 +(1,23399:6630773,23453104:0,0,0 +g1,23399:6630773,23453104 +g1,23399:6630773,23453104 +g1,23399:6303093,23453104 +(1,23399:6303093,23453104:0,0,0 +) +g1,23399:6630773,23453104 +) +g1,23401:7626635,23453104 +g1,23401:8954451,23453104 +k1,23401:8954451,23453104:0 +h1,23401:15925485,23453104:0,0,0 +k1,23401:32583029,23453104:16657544 +g1,23401:32583029,23453104 +) +] +) +g1,23402:32583029,23539532 +g1,23402:6630773,23539532 +g1,23402:6630773,23539532 +g1,23402:32583029,23539532 +g1,23402:32583029,23539532 +) +h1,23402:6630773,23736140:0,0,0 +v1,23406:6630773,24420995:0,393216,0 +(1,23416:6630773,26367108:25952256,2339329,196608 +g1,23416:6630773,26367108 +g1,23416:6630773,26367108 +g1,23416:6434165,26367108 +(1,23416:6434165,26367108:0,2339329,196608 +r1,23426:32779637,26367108:26345472,2535937,196608 +k1,23416:6434165,26367108:-26345472 +) +(1,23416:6434165,26367108:26345472,2339329,196608 +[1,23416:6630773,26367108:25952256,2142721,0 +(1,23408:6630773,24655432:25952256,431045,86428 +(1,23407:6630773,24655432:0,0,0 +g1,23407:6630773,24655432 +g1,23407:6630773,24655432 +g1,23407:6303093,24655432 +(1,23407:6303093,24655432:0,0,0 +) +g1,23407:6630773,24655432 +) +k1,23408:6630773,24655432:0 +g1,23408:11278128,24655432 +g1,23408:11942036,24655432 +g1,23408:12605944,24655432 +h1,23408:13269852,24655432:0,0,0 +k1,23408:32583028,24655432:19313176 +g1,23408:32583028,24655432 +) +(1,23412:6630773,25471359:25952256,424439,86428 +(1,23410:6630773,25471359:0,0,0 +g1,23410:6630773,25471359 +g1,23410:6630773,25471359 +g1,23410:6303093,25471359 +(1,23410:6303093,25471359:0,0,0 +) +g1,23410:6630773,25471359 +) +g1,23412:7626635,25471359 +g1,23412:8954451,25471359 +g1,23412:15261577,25471359 +g1,23412:20572841,25471359 +h1,23412:21236749,25471359:0,0,0 +k1,23412:32583029,25471359:11346280 +g1,23412:32583029,25471359 +) +(1,23414:6630773,26287286:25952256,431045,79822 +(1,23413:6630773,26287286:0,0,0 +g1,23413:6630773,26287286 +g1,23413:6630773,26287286 +g1,23413:6303093,26287286 +(1,23413:6303093,26287286:0,0,0 +) +g1,23413:6630773,26287286 +) +k1,23414:6630773,26287286:0 +h1,23414:9618359,26287286:0,0,0 +k1,23414:32583029,26287286:22964670 +g1,23414:32583029,26287286 +) +] +) +g1,23416:32583029,26367108 +g1,23416:6630773,26367108 +g1,23416:6630773,26367108 +g1,23416:32583029,26367108 +g1,23416:32583029,26367108 +) +h1,23416:6630773,26563716:0,0,0 +(1,23420:6630773,27428796:25952256,513147,115847 +h1,23419:6630773,27428796:983040,0,0 +k1,23419:9649940,27428796:252892 +k1,23419:10317621,27428796:252838 +k1,23419:11102010,27428796:252892 +k1,23419:12868128,27428796:252892 +k1,23419:13737058,27428796:252892 +k1,23419:15751558,27428796:252892 +k1,23419:17960700,27428796:252892 +k1,23419:19232677,27428796:252892 +k1,23419:21399219,27428796:252891 +(1,23419:21399219,27428796:0,452978,115847 +r1,23426:23164332,27428796:1765113,568825,115847 +k1,23419:21399219,27428796:-1765113 +) +(1,23419:21399219,27428796:1765113,452978,115847 +k1,23419:21399219,27428796:3277 +h1,23419:23161055,27428796:0,411205,112570 +) +k1,23419:23590894,27428796:252892 +(1,23419:23590894,27428796:0,452978,115847 +r1,23426:25707719,27428796:2116825,568825,115847 +k1,23419:23590894,27428796:-2116825 +) +(1,23419:23590894,27428796:2116825,452978,115847 +k1,23419:23590894,27428796:3277 +h1,23419:25704442,27428796:0,411205,112570 +) +k1,23419:25960611,27428796:252892 +k1,23419:27404948,27428796:252892 +(1,23419:27404948,27428796:0,452978,115847 +r1,23426:30225197,27428796:2820249,568825,115847 +k1,23419:27404948,27428796:-2820249 +) +(1,23419:27404948,27428796:2820249,452978,115847 +k1,23419:27404948,27428796:3277 +h1,23419:30221920,27428796:0,411205,112570 +) +k1,23419:30478089,27428796:252892 +k1,23419:31835263,27428796:252892 +k1,23419:32583029,27428796:0 +) +(1,23420:6630773,28293876:25952256,513147,126483 +k1,23419:9377639,28293876:227662 +k1,23419:10796746,28293876:227662 +k1,23419:12413771,28293876:227662 +k1,23419:14053734,28293876:227662 +k1,23419:16022688,28293876:227662 +k1,23419:16933235,28293876:227662 +k1,23419:19447447,28293876:227661 +k1,23419:20500207,28293876:227662 +k1,23419:22602199,28293876:227662 +k1,23419:25701648,28293876:227662 +k1,23419:28368560,28293876:227662 +k1,23419:29787667,28293876:227662 +k1,23419:31858201,28293876:227662 +k1,23419:32583029,28293876:0 +) +(1,23420:6630773,29158956:25952256,513147,134348 +k1,23419:9316876,29158956:193769 +k1,23419:10162073,29158956:193769 +k1,23419:10809345,29158956:193763 +k1,23419:15504782,29158956:193769 +k1,23419:17380205,29158956:193769 +k1,23419:18593059,29158956:193769 +k1,23419:19879313,29158956:193769 +k1,23419:20740237,29158956:193768 +k1,23419:21348844,29158956:193764 +k1,23419:23703990,29158956:193769 +k1,23419:24583921,29158956:193769 +k1,23419:26359073,29158956:193768 +k1,23419:27168880,29158956:193769 +k1,23419:28752012,29158956:193769 +k1,23419:30666101,29158956:193769 +k1,23419:32583029,29158956:0 +) +(1,23420:6630773,30024036:25952256,505283,126483 +g1,23419:7516164,30024036 +g1,23419:9218134,30024036 +g1,23419:11578740,30024036 +g1,23419:13664095,30024036 +g1,23419:15315602,30024036 +g1,23419:16706276,30024036 +g1,23419:18607475,30024036 +k1,23420:32583029,30024036:12728404 +g1,23420:32583029,30024036 +) +(1,23421:6630773,32855196:25952256,32768,229376 +(1,23421:6630773,32855196:0,32768,229376 +(1,23421:6630773,32855196:5505024,32768,229376 +r1,23426:12135797,32855196:5505024,262144,229376 +) +k1,23421:6630773,32855196:-5505024 +) +(1,23421:6630773,32855196:25952256,32768,0 +r1,23426:32583029,32855196:25952256,32768,0 +) +) +(1,23421:6630773,34487048:25952256,606339,14155 +(1,23421:6630773,34487048:2464678,582746,14155 +g1,23421:6630773,34487048 +g1,23421:9095451,34487048 +) +g1,23421:13301290,34487048 +k1,23421:32583028,34487048:17457216 +g1,23421:32583028,34487048 +) +(1,23424:6630773,35745344:25952256,513147,134348 +k1,23423:7511123,35745344:252515 +k1,23423:10270390,35745344:252515 +k1,23423:11749084,35745344:252515 +k1,23423:13314941,35745344:252515 +k1,23423:14559016,35745344:252515 +k1,23423:15830616,35745344:252515 +k1,23423:17684831,35745344:252515 +k1,23423:20606627,35745344:252515 +k1,23423:23843652,35745344:252515 +k1,23423:24747595,35745344:252515 +k1,23423:26389473,35745344:252515 +k1,23423:28989488,35745344:252515 +k1,23423:30314172,35745344:252515 +k1,23423:32583029,35745344:0 +) +(1,23424:6630773,36610424:25952256,513147,126483 +k1,23423:8125649,36610424:209060 +k1,23423:9353793,36610424:209059 +k1,23423:11058385,36610424:209060 +k1,23423:13820072,36610424:209060 +k1,23423:15423083,36610424:209060 +k1,23423:17956704,36610424:209059 +k1,23423:18817192,36610424:209060 +k1,23423:20045337,36610424:209060 +k1,23423:21523174,36610424:209060 +k1,23423:22391525,36610424:209059 +k1,23423:23619670,36610424:209060 +k1,23423:24985440,36610424:209060 +k1,23423:26598281,36610424:209060 +k1,23423:28120682,36610424:209059 +k1,23423:29321302,36610424:209060 +k1,23423:32583029,36610424:0 +) +(1,23424:6630773,37475504:25952256,513147,126483 +k1,23423:7482928,37475504:192863 +k1,23423:10354903,37475504:192863 +k1,23423:14026417,37475504:192863 +k1,23423:15600124,37475504:192863 +k1,23423:17839021,37475504:192863 +k1,23423:19670939,37475504:192863 +k1,23423:21258407,37475504:192862 +k1,23423:22102698,37475504:192863 +k1,23423:23521740,37475504:192863 +k1,23423:25108554,37475504:192863 +k1,23423:26527596,37475504:192863 +k1,23423:28959824,37475504:192863 +k1,23423:30344132,37475504:192863 +k1,23423:31931601,37475504:192863 +k1,23423:32583029,37475504:0 +) +(1,23424:6630773,38340584:25952256,513147,134348 +k1,23423:8257496,38340584:214422 +k1,23423:10039539,38340584:214422 +k1,23423:13326288,38340584:214421 +k1,23423:15827261,38340584:214422 +k1,23423:16657721,38340584:214422 +k1,23423:18473843,38340584:214422 +k1,23423:23040511,38340584:214422 +k1,23423:26601201,38340584:214422 +k1,23423:27739680,38340584:214421 +k1,23423:28973187,38340584:214422 +k1,23423:30889579,38340584:214422 +k1,23423:32583029,38340584:0 +) +(1,23424:6630773,39205664:25952256,513147,134348 +k1,23423:8246941,39205664:285787 +k1,23423:9551813,39205664:285787 +k1,23423:11226963,39205664:285787 +k1,23423:14191863,39205664:285788 +k1,23423:15163812,39205664:285787 +k1,23423:18754580,39205664:285787 +k1,23423:19571864,39205664:285787 +k1,23423:22703224,39205664:285787 +k1,23423:24093293,39205664:285787 +k1,23423:25126847,39205664:285788 +k1,23423:27267303,39205664:285787 +k1,23423:28362460,39205664:285787 +k1,23423:29820686,39205664:285787 +k1,23423:32583029,39205664:0 +) +(1,23424:6630773,40070744:25952256,513147,134348 +g1,23423:10665824,40070744 +g1,23423:14040272,40070744 +g1,23423:14922386,40070744 +g1,23423:16857008,40070744 +g1,23423:17412097,40070744 +g1,23423:20008633,40070744 +g1,23423:23182541,40070744 +g1,23423:24067932,40070744 +g1,23423:24623021,40070744 +k1,23424:32583029,40070744:4869331 +g1,23424:32583029,40070744 +) +(1,23426:6630773,40935824:25952256,505283,126483 +h1,23425:6630773,40935824:983040,0,0 +k1,23425:9028854,40935824:218354 +k1,23425:12422427,40935824:218354 +k1,23425:15625291,40935824:218354 +k1,23425:16375142,40935824:218354 +k1,23425:18243693,40935824:218354 +k1,23425:20817410,40935824:218353 +k1,23425:22107933,40935824:218354 +k1,23425:24488975,40935824:218354 +k1,23425:28258070,40935824:218354 +k1,23425:29127852,40935824:218354 +k1,23425:31896867,40935824:218354 +k1,23425:32583029,40935824:0 +) +(1,23426:6630773,41800904:25952256,513147,134348 +k1,23425:7827763,41800904:177905 +k1,23425:10016313,41800904:177905 +k1,23425:11312262,41800904:177905 +k1,23425:12757633,41800904:177905 +k1,23425:14387160,41800904:177905 +k1,23425:16440705,41800904:177905 +k1,23425:19177792,41800904:177906 +k1,23425:20014989,41800904:177905 +k1,23425:21582257,41800904:177905 +k1,23425:23798332,41800904:177905 +k1,23425:25711630,41800904:177905 +k1,23425:26245395,41800904:177905 +k1,23425:29598519,41800904:177905 +k1,23425:32583029,41800904:0 +) +(1,23426:6630773,42665984:25952256,513147,126483 +k1,23425:9473999,42665984:221131 +k1,23425:11726091,42665984:221131 +k1,23425:12598650,42665984:221131 +k1,23425:13175641,42665984:221131 +k1,23425:15577155,42665984:221131 +k1,23425:18880445,42665984:221132 +k1,23425:20293021,42665984:221131 +k1,23425:21721325,42665984:221131 +k1,23425:24719872,42665984:221131 +k1,23425:25557041,42665984:221131 +k1,23425:28950748,42665984:221109 +k1,23425:30363324,42665984:221131 +k1,23425:32583029,42665984:0 +) +(1,23426:6630773,43531064:25952256,513147,126483 +k1,23425:7476275,43531064:232740 +k1,23425:8728100,43531064:232740 +k1,23425:10386248,43531064:232740 +k1,23425:12317026,43531064:232740 +k1,23425:14548614,43531064:232740 +k1,23425:16510194,43531064:232740 +k1,23425:18246985,43531064:232740 +k1,23425:19992952,43531064:232741 +k1,23425:20877120,43531064:232740 +k1,23425:22727289,43531064:232740 +k1,23425:24523063,43531064:232740 +k1,23425:25383638,43531064:232740 +k1,23425:26635463,43531064:232740 +k1,23425:28235284,43531064:232740 +k1,23425:29127316,43531064:232740 +k1,23425:32583029,43531064:0 +) +(1,23426:6630773,44396144:25952256,513147,134348 +k1,23425:9555649,44396144:162533 +k1,23425:13086733,44396144:162533 +k1,23425:14240826,44396144:162533 +k1,23425:15019397,44396144:162533 +k1,23425:17959346,44396144:162533 +k1,23425:19388035,44396144:162533 +k1,23425:25332810,44396144:162533 +k1,23425:27505988,44396144:162533 +k1,23425:29351449,44396144:162496 +k1,23425:32583029,44396144:0 +) +(1,23426:6630773,45261224:25952256,513147,126483 +k1,23425:7936653,45261224:213395 +k1,23425:10006028,45261224:213395 +k1,23425:10575283,45261224:213395 +k1,23425:13112586,45261224:213396 +k1,23425:14008866,45261224:213395 +k1,23425:17463672,45261224:213395 +k1,23425:18328495,45261224:213395 +k1,23425:21244595,45261224:213395 +k1,23425:22477075,45261224:213395 +k1,23425:24424554,45261224:213396 +k1,23425:25320834,45261224:213395 +k1,23425:28421090,45261224:213395 +k1,23425:31914562,45261224:213395 +k1,23425:32583029,45261224:0 +) +] +(1,23426:32583029,45706769:0,0,0 +g1,23426:32583029,45706769 +) +) +] +(1,23426:6630773,47279633:25952256,0,0 +h1,23426:6630773,47279633:25952256,0,0 +) +] +(1,23426:4262630,4025873:0,0,0 +[1,23426:-473656,4025873:0,0,0 +(1,23426:-473656,-710413:0,0,0 +(1,23426:-473656,-710413:0,0,0 +g1,23426:-473656,-710413 +) +g1,23426:-473656,-710413 ) ] ) ] !24983 -}403 -Input:4393:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4394:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4395:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4396:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}404 Input:4397:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4398:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4399:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4400:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4401:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4402:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4403:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4404:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4405:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4406:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{404 -[1,23478:4262630,47279633:28320399,43253760,0 -(1,23478:4262630,4025873:0,0,0 -[1,23478:-473656,4025873:0,0,0 -(1,23478:-473656,-710413:0,0,0 -(1,23478:-473656,-644877:0,0,0 -k1,23478:-473656,-644877:-65536 +{405 +[1,23476:4262630,47279633:28320399,43253760,0 +(1,23476:4262630,4025873:0,0,0 +[1,23476:-473656,4025873:0,0,0 +(1,23476:-473656,-710413:0,0,0 +(1,23476:-473656,-644877:0,0,0 +k1,23476:-473656,-644877:-65536 ) -(1,23478:-473656,4736287:0,0,0 -k1,23478:-473656,4736287:5209943 +(1,23476:-473656,4736287:0,0,0 +k1,23476:-473656,4736287:5209943 ) -g1,23478:-473656,-710413 +g1,23476:-473656,-710413 ) ] ) -[1,23478:6630773,47279633:25952256,43253760,0 -[1,23478:6630773,4812305:25952256,786432,0 -(1,23478:6630773,4812305:25952256,505283,11795 -(1,23478:6630773,4812305:25952256,505283,11795 -g1,23478:3078558,4812305 -[1,23478:3078558,4812305:0,0,0 -(1,23478:3078558,2439708:0,1703936,0 -k1,23478:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23478:2537886,2439708:1179648,16384,0 +[1,23476:6630773,47279633:25952256,43253760,0 +[1,23476:6630773,4812305:25952256,786432,0 +(1,23476:6630773,4812305:25952256,505283,11795 +(1,23476:6630773,4812305:25952256,505283,11795 +g1,23476:3078558,4812305 +[1,23476:3078558,4812305:0,0,0 +(1,23476:3078558,2439708:0,1703936,0 +k1,23476:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23476:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23478:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23476:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23478:3078558,4812305:0,0,0 -(1,23478:3078558,2439708:0,1703936,0 -g1,23478:29030814,2439708 -g1,23478:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23478:36151628,1915420:16384,1179648,0 +[1,23476:3078558,4812305:0,0,0 +(1,23476:3078558,2439708:0,1703936,0 +g1,23476:29030814,2439708 +g1,23476:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23476:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23478:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23476:37855564,2439708:1179648,16384,0 ) ) -k1,23478:3078556,2439708:-34777008 +k1,23476:3078556,2439708:-34777008 ) ] -[1,23478:3078558,4812305:0,0,0 -(1,23478:3078558,49800853:0,16384,2228224 -k1,23478:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23478:2537886,49800853:1179648,16384,0 +[1,23476:3078558,4812305:0,0,0 +(1,23476:3078558,49800853:0,16384,2228224 +k1,23476:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23476:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23478:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23476:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23478:3078558,4812305:0,0,0 -(1,23478:3078558,49800853:0,16384,2228224 -g1,23478:29030814,49800853 -g1,23478:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23478:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23478:37855564,49800853:1179648,16384,0 -) -) -k1,23478:3078556,49800853:-34777008 -) -] -g1,23478:6630773,4812305 -g1,23478:6630773,4812305 -g1,23478:9946239,4812305 -g1,23478:11513204,4812305 -k1,23478:31387652,4812305:19874448 -) -) -] -[1,23478:6630773,45706769:25952256,40108032,0 -(1,23478:6630773,45706769:25952256,40108032,0 -(1,23478:6630773,45706769:0,0,0 -g1,23478:6630773,45706769 -) -[1,23478:6630773,45706769:25952256,40108032,0 -(1,23428:6630773,6254097:25952256,505283,126483 -k1,23427:11136854,6254097:156456 -k1,23427:13303955,6254097:156456 -k1,23427:15122362,6254097:156414 -k1,23427:16371303,6254097:156456 -k1,23427:17546844,6254097:156456 -k1,23427:18716487,6254097:156456 -k1,23427:21847622,6254097:156456 -k1,23427:22690240,6254097:156456 -k1,23427:23202556,6254097:156456 -k1,23427:25741901,6254097:156456 -k1,23427:29110276,6254097:156456 -k1,23427:32583029,6254097:0 -) -(1,23428:6630773,7119177:25952256,505283,126483 -k1,23427:8551896,7119177:206045 -k1,23427:10545763,7119177:206045 -k1,23427:11283305,7119177:206045 -k1,23427:13002576,7119177:206045 -k1,23427:13894783,7119177:206045 -k1,23427:14456688,7119177:206045 -k1,23427:17874652,7119177:206045 -k1,23427:19682398,7119177:206046 -k1,23427:23232090,7119177:206045 -k1,23427:25136173,7119177:206045 -k1,23427:26108334,7119177:206045 -k1,23427:28325024,7119177:206045 -k1,23427:29522629,7119177:206045 -k1,23427:30380102,7119177:206045 -k1,23427:31333913,7119177:206045 -k1,23428:32583029,7119177:0 -) -(1,23428:6630773,7984257:25952256,505283,115847 -g1,23427:8830161,7984257 -g1,23427:9680818,7984257 -(1,23427:9680818,7984257:0,452978,115847 -r1,23478:12149355,7984257:2468537,568825,115847 -k1,23427:9680818,7984257:-2468537 -) -(1,23427:9680818,7984257:2468537,452978,115847 -k1,23427:9680818,7984257:3277 -h1,23427:12146078,7984257:0,411205,112570 -) -k1,23428:32583029,7984257:20381246 -g1,23428:32583029,7984257 -) -v1,23430:6630773,8849337:0,393216,0 -(1,23478:6630773,44505217:25952256,36049096,0 -g1,23478:6630773,44505217 -g1,23478:6237557,44505217 -r1,23478:6368629,44505217:131072,36049096,0 -g1,23478:6567858,44505217 -g1,23478:6764466,44505217 -[1,23478:6764466,44505217:25818563,36049096,0 -(1,23431:6764466,9157635:25818563,701514,196608 -(1,23430:6764466,9157635:0,701514,196608 -r1,23478:7761522,9157635:997056,898122,196608 -k1,23430:6764466,9157635:-997056 -) -(1,23430:6764466,9157635:997056,701514,196608 -) -k1,23430:7971426,9157635:209904 -k1,23430:8299106,9157635:327680 -k1,23430:9690250,9157635:215428 -k1,23430:10696042,9157635:215428 -k1,23430:12188112,9157635:215429 -k1,23430:13768655,9157635:215428 -k1,23430:15019552,9157635:215428 -k1,23430:16790149,9157635:215428 -k1,23430:18967444,9157635:209904 -k1,23430:20960583,9157635:209904 -k1,23430:23573037,9157635:209904 -k1,23430:25009121,9157635:209905 -k1,23430:26706037,9157635:209904 -k1,23430:28107386,9157635:209904 -k1,23430:30579593,9157635:209904 -k1,23430:32583029,9157635:0 -) -(1,23431:6764466,10022715:25818563,513147,134348 -k1,23430:8296207,10022715:218399 -k1,23430:10400076,10022715:218398 -k1,23430:11955409,10022715:218399 -k1,23430:14545555,10022715:218398 -k1,23430:18088595,10022715:218399 -k1,23430:19533173,10022715:218399 -k1,23430:22121353,10022715:218398 -k1,23430:23994536,10022715:218399 -k1,23430:24744431,10022715:218398 -k1,23430:27816268,10022715:218399 -k1,23430:28982317,10022715:218398 -k1,23430:30709355,10022715:218399 -k1,23431:32583029,10022715:0 -) -(1,23431:6764466,10887795:25818563,513147,134348 -k1,23430:10740357,10887795:146622 -k1,23430:13001170,10887795:146622 -k1,23430:14166876,10887795:146621 -k1,23430:16495192,10887795:146622 -k1,23430:19889778,10887795:146622 -k1,23430:21307798,10887795:146622 -k1,23430:24231836,10887795:146622 -k1,23430:26487407,10887795:146622 -k1,23430:27293320,10887795:146621 -k1,23430:30620404,10887795:146622 -k1,23430:31298523,10887795:146622 -k1,23430:32583029,10887795:0 -) -(1,23431:6764466,11752875:25818563,505283,102891 -k1,23430:9384270,11752875:236915 -k1,23430:12125971,11752875:236915 -k1,23430:13354447,11752875:236916 -k1,23430:14242790,11752875:236915 -k1,23430:15227471,11752875:236915 -k1,23430:16876687,11752875:236915 -k1,23430:17799764,11752875:236915 -k1,23430:18451485,11752875:236878 -k1,23430:20930387,11752875:236915 -k1,23430:21985191,11752875:236915 -k1,23430:24255688,11752875:236915 -k1,23430:27795619,11752875:236916 -k1,23430:29687318,11752875:236915 -k1,23430:30915793,11752875:236915 -k1,23430:32583029,11752875:0 -) -(1,23431:6764466,12617955:25818563,513147,134348 -k1,23430:8767106,12617955:242998 -k1,23430:10503670,12617955:242998 -k1,23430:11432830,12617955:242998 -k1,23430:14395572,12617955:242998 -k1,23430:16756694,12617955:242998 -k1,23430:17682577,12617955:242998 -k1,23430:20119720,12617955:242998 -k1,23430:23667699,12617955:242998 -k1,23430:24376658,12617955:242998 -k1,23430:25638741,12617955:242998 -k1,23430:27950055,12617955:242998 -k1,23430:29184613,12617955:242998 -k1,23430:30079039,12617955:242998 -k1,23430:31069803,12617955:242998 -k1,23430:32583029,12617955:0 -) -(1,23431:6764466,13483035:25818563,513147,126483 -k1,23430:8342020,13483035:209817 -k1,23430:9570921,13483035:209816 -k1,23430:12059425,13483035:209817 -k1,23430:12684074,13483035:209806 -k1,23430:15151606,13483035:209817 -k1,23430:16285481,13483035:209817 -k1,23430:18850662,13483035:209817 -k1,23430:20752618,13483035:209816 -k1,23430:23988232,13483035:209817 -k1,23430:25330511,13483035:209817 -k1,23430:28054944,13483035:209817 -k1,23430:28916188,13483035:209816 -k1,23430:31563944,13483035:209817 -k1,23430:32583029,13483035:0 -) -(1,23431:6764466,14348115:25818563,505283,102891 -k1,23430:9233865,14348115:227412 -k1,23430:10533446,14348115:227412 -k1,23430:12793129,14348115:227412 -k1,23430:14260482,14348115:227412 -k1,23430:16033233,14348115:227412 -k1,23430:17754211,14348115:227412 -k1,23430:20049939,14348115:227412 -k1,23430:21268911,14348115:227412 -k1,23430:22694977,14348115:227412 -k1,23430:26107439,14348115:227412 -k1,23430:26950889,14348115:227412 -k1,23430:27593116,14348115:227384 -k1,23430:31510860,14348115:227412 -k1,23430:32583029,14348115:0 -) -(1,23431:6764466,15213195:25818563,513147,134348 -k1,23430:7328457,15213195:208131 -k1,23430:9730734,15213195:208132 -k1,23430:12022910,15213195:208131 -k1,23430:12762539,15213195:208132 -k1,23430:15269018,15213195:208131 -k1,23430:16128578,15213195:208132 -k1,23430:18635057,15213195:208131 -k1,23430:20482243,15213195:208131 -k1,23430:22257996,15213195:208132 -k1,23430:25586951,15213195:208131 -k1,23430:27879128,15213195:208132 -k1,23430:30024503,15213195:208131 -k1,23430:32583029,15213195:0 -) -(1,23431:6764466,16078275:25818563,513147,134348 -k1,23430:8470630,16078275:197525 -k1,23430:13113463,16078275:197526 -k1,23430:13997150,16078275:197525 -k1,23430:17548808,16078275:197525 -k1,23430:20508676,16078275:197525 -k1,23430:22148649,16078275:197526 -k1,23430:24857514,16078275:197525 -k1,23430:25737924,16078275:197525 -k1,23430:28630946,16078275:197526 -k1,23430:32168186,16078275:197525 -k1,23431:32583029,16078275:0 -) -(1,23431:6764466,16943355:25818563,505283,134348 -g1,23430:9018249,16943355 -g1,23430:10085830,16943355 -g1,23430:11332324,16943355 -g1,23430:12816059,16943355 -g1,23430:14395476,16943355 -g1,23430:16124971,16943355 -g1,23430:16975628,16943355 -g1,23430:17922623,16943355 -k1,23431:32583029,16943355:12369268 -g1,23431:32583029,16943355 -) -(1,23437:6764466,17808435:25818563,513147,134348 -h1,23432:6764466,17808435:983040,0,0 -k1,23432:9653336,17808435:188787 -k1,23432:10501416,17808435:188788 -k1,23432:11709288,17808435:188787 -k1,23432:13890369,17808435:188787 -k1,23432:14947508,17808435:188787 -k1,23432:16666562,17808435:188788 -k1,23432:17506777,17808435:188787 -k1,23432:18443330,17808435:188787 -k1,23432:19441487,17808435:188787 -k1,23432:20649360,17808435:188788 -k1,23432:22720341,17808435:188787 -k1,23432:23856779,17808435:188787 -k1,23432:25210796,17808435:188787 -k1,23433:26005137,17808435:188788 -k1,23433:29947826,17808435:188787 -k1,23433:32583029,17808435:0 -) -(1,23437:6764466,18673515:25818563,513147,134348 -k1,23433:7981891,18673515:198340 -k1,23433:11154910,18673515:198340 -k1,23433:14254529,18673515:198340 -k1,23433:17291889,18673515:198340 -k1,23433:18251757,18673515:198340 -k1,23433:19469182,18673515:198340 -k1,23433:22363017,18673515:198339 -k1,23433:24074583,18673515:198340 -k1,23433:24924351,18673515:198340 -k1,23433:26534992,18673515:198340 -k1,23433:27752417,18673515:198340 -k1,23433:29107467,18673515:198340 -k1,23433:30497252,18673515:198340 -k1,23433:31714677,18673515:198340 -k1,23437:32583029,18673515:0 -) -(1,23437:6764466,19538595:25818563,513147,134348 -k1,23433:9088253,19538595:184692 -k1,23433:10786171,19538595:184692 -k1,23433:11918515,19538595:184693 -k1,23433:14136789,19538595:184692 -k1,23433:15340566,19538595:184692 -k1,23433:19450865,19538595:184692 -k1,23433:22165247,19538595:184692 -k1,23433:23009231,19538595:184692 -k1,23433:25956267,19538595:184693 -k1,23433:28486493,19538595:184692 -k1,23433:29740733,19538595:184692 -k1,23433:32583029,19538595:0 -) -(1,23437:6764466,20403675:25818563,505283,134348 -k1,23433:8179334,20403675:223423 -k1,23433:10866911,20403675:223423 -k1,23433:13775999,20403675:223423 -k1,23434:14604975,20403675:223423 -k1,23434:17307625,20403675:223423 -k1,23434:18213934,20403675:223424 -k1,23434:20735049,20403675:223423 -k1,23434:24031455,20403675:223423 -k1,23434:26373002,20403675:223423 -k1,23434:29002252,20403675:223423 -k1,23434:29841713,20403675:223423 -k1,23434:31084221,20403675:223423 -k1,23437:32583029,20403675:0 -) -(1,23437:6764466,21268755:25818563,513147,7863 -k1,23434:8569446,21268755:222941 -k1,23434:10803033,21268755:222942 -k1,23434:11708859,21268755:222941 -k1,23434:14314690,21268755:222942 -k1,23434:19146778,21268755:222941 -k1,23434:20361280,21268755:222942 -k1,23434:22746909,21268755:222941 -k1,23434:25628647,21268755:222942 -k1,23434:27549626,21268755:222941 -k1,23434:29161931,21268755:222942 -k1,23434:31591469,21268755:222941 -k1,23434:32583029,21268755:0 -) -(1,23437:6764466,22133835:25818563,513147,134348 -k1,23434:9520386,22133835:232129 -k1,23435:10358067,22133835:232128 -k1,23435:13234574,22133835:232129 -k1,23435:16031781,22133835:232128 -k1,23435:18646799,22133835:232129 -k1,23435:22122959,22133835:232128 -k1,23435:24384083,22133835:232129 -k1,23435:27120342,22133835:232128 -k1,23435:30122022,22133835:232129 -k1,23435:30710010,22133835:232128 -k1,23435:32583029,22133835:0 -) -(1,23437:6764466,22998915:25818563,513147,134348 -k1,23435:8598210,22998915:171096 -k1,23435:9385344,22998915:171096 -k1,23435:9912299,22998915:171095 -k1,23435:12639954,22998915:171096 -k1,23435:14053613,22998915:171096 -k1,23435:15243794,22998915:171096 -k1,23435:17407839,22998915:171095 -k1,23435:19008275,22998915:171096 -k1,23435:19838663,22998915:171096 -k1,23435:22493574,22998915:171096 -k1,23435:25130790,22998915:171096 -k1,23435:26406167,22998915:171095 -k1,23435:29009959,22998915:171096 -k1,23435:30200140,22998915:171096 -k1,23435:32583029,22998915:0 -) -(1,23437:6764466,23863995:25818563,513147,134348 -k1,23435:8485619,23863995:153532 -k1,23435:10377167,23863995:153533 -k1,23435:13983136,23863995:153532 -k1,23435:14822830,23863995:153532 -k1,23435:17770163,23863995:153533 -k1,23436:18529248,23863995:153532 -k1,23436:22527123,23863995:153533 -k1,23436:25164470,23863995:153532 -k1,23436:27610451,23863995:153532 -k1,23436:28380022,23863995:153533 -(1,23436:28380022,23863995:0,414482,115847 -r1,23478:29441711,23863995:1061689,530329,115847 -k1,23436:28380022,23863995:-1061689 -) -(1,23436:28380022,23863995:1061689,414482,115847 -k1,23436:28380022,23863995:3277 -h1,23436:29438434,23863995:0,411205,112570 -) -k1,23436:29595243,23863995:153532 -k1,23436:32583029,23863995:0 -) -(1,23437:6764466,24729075:25818563,505283,134348 -g1,23436:9256144,24729075 -g1,23436:12157422,24729075 -g1,23436:13166021,24729075 -g1,23436:14384335,24729075 -g1,23436:16425126,24729075 -g1,23436:19673745,24729075 -g1,23436:21064419,24729075 -g1,23436:23727802,24729075 -k1,23437:32583029,24729075:6083710 -g1,23437:32583029,24729075 -) -(1,23439:6764466,25594155:25818563,513147,126483 -h1,23438:6764466,25594155:983040,0,0 -k1,23438:8468565,25594155:243302 -k1,23438:9882341,25594155:243303 -k1,23438:13338218,25594155:243302 -k1,23438:16588313,25594155:243303 -k1,23438:18344841,25594155:243302 -k1,23438:20943508,25594155:243303 -k1,23438:22680376,25594155:243302 -k1,23438:23609840,25594155:243302 -k1,23438:25930634,25594155:243303 -k1,23438:26833228,25594155:243302 -k1,23438:30291072,25594155:243303 -k1,23438:31193666,25594155:243302 -k1,23438:32583029,25594155:0 -) -(1,23439:6764466,26459235:25818563,513147,134348 -k1,23438:8914718,26459235:273956 -k1,23438:11901865,26459235:273956 -k1,23438:12937349,26459235:273956 -k1,23438:15122990,26459235:273956 -k1,23438:16489431,26459235:273956 -k1,23438:19458883,26459235:273956 -(1,23438:19458883,26459235:0,452978,115847 -r1,23478:21927420,26459235:2468537,568825,115847 -k1,23438:19458883,26459235:-2468537 -) -(1,23438:19458883,26459235:2468537,452978,115847 -k1,23438:19458883,26459235:3277 -h1,23438:21924143,26459235:0,411205,112570 -) -k1,23438:22201377,26459235:273957 -k1,23438:23126761,26459235:273956 -k1,23438:24379170,26459235:273956 -k1,23438:25672211,26459235:273956 -k1,23438:28014483,26459235:273956 -k1,23438:30638560,26459235:273956 -k1,23438:31563944,26459235:273956 -k1,23438:32583029,26459235:0 -) -(1,23439:6764466,27324315:25818563,513147,126483 -k1,23438:9385306,27324315:200595 -k1,23438:10272062,27324315:200594 -k1,23438:10828517,27324315:200595 -k1,23438:14003791,27324315:200595 -k1,23438:16355932,27324315:200594 -k1,23438:17937371,27324315:200595 -k1,23438:18669463,27324315:200595 -k1,23438:20847278,27324315:200594 -k1,23438:23577563,27324315:200595 -k1,23438:26752837,27324315:200595 -k1,23438:29261609,27324315:200594 -k1,23438:30453764,27324315:200595 -k1,23438:32583029,27324315:0 -) -(1,23439:6764466,28189395:25818563,505283,134348 -k1,23438:9271575,28189395:156988 -k1,23438:10822515,28189395:156989 -k1,23438:12431125,28189395:156988 -k1,23438:14453924,28189395:156989 -k1,23438:17631466,28189395:156988 -k1,23438:18549983,28189395:156989 -k1,23438:21800926,28189395:156988 -k1,23438:23944967,28189395:156989 -k1,23438:26460596,28189395:156988 -k1,23438:28936904,28189395:156989 -k1,23438:30285337,28189395:156988 -k1,23438:32583029,28189395:0 -) -(1,23439:6764466,29054475:25818563,513147,126483 -k1,23438:9137287,29054475:254697 -k1,23438:11488481,29054475:254697 -k1,23438:13959606,29054475:254697 -k1,23438:15410990,29054475:254697 -k1,23438:17319160,29054475:254697 -k1,23438:19855165,29054475:254697 -k1,23438:20761290,29054475:254697 -k1,23438:22108472,29054475:254697 -k1,23438:23030325,29054475:254697 -(1,23438:23030325,29054475:0,452978,115847 -r1,23478:25850574,29054475:2820249,568825,115847 -k1,23438:23030325,29054475:-2820249 -) -(1,23438:23030325,29054475:2820249,452978,115847 -k1,23438:23030325,29054475:3277 -h1,23438:25847297,29054475:0,411205,112570 -) -k1,23438:26105271,29054475:254697 -k1,23438:27753919,29054475:254697 -k1,23438:30232908,29054475:254697 -k1,23438:32583029,29054475:0 -) -(1,23439:6764466,29919555:25818563,505283,134348 -g1,23438:8331432,29919555 -g1,23438:9920024,29919555 -g1,23438:11403759,29919555 -g1,23438:13470109,29919555 -g1,23438:15144553,29919555 -g1,23438:18483612,29919555 -g1,23438:21517273,29919555 -g1,23438:22399387,29919555 -g1,23438:24339908,29919555 -k1,23439:32583029,29919555:6402870 -g1,23439:32583029,29919555 -) -(1,23441:6764466,30784635:25818563,513147,126483 -h1,23440:6764466,30784635:983040,0,0 -k1,23440:8779748,30784635:203212 -k1,23440:13016047,30784635:203213 -k1,23440:14911399,30784635:203212 -k1,23440:15773903,30784635:203212 -k1,23440:17673843,30784635:203213 -k1,23440:21057517,30784635:203212 -k1,23440:21473717,30784635:203208 -k1,23440:23606309,30784635:203212 -k1,23440:24165382,30784635:203213 -k1,23440:25757957,30784635:203212 -k1,23440:27837465,30784635:203212 -k1,23440:29434629,30784635:203213 -k1,23440:31375856,30784635:203212 -k1,23441:32583029,30784635:0 -) -(1,23441:6764466,31649715:25818563,513147,102891 -k1,23440:9107973,31649715:262084 -k1,23440:12225462,31649715:262085 -k1,23440:13678991,31649715:262084 -k1,23440:14557114,31649715:262085 -k1,23440:15838283,31649715:262084 -k1,23440:18341699,31649715:262085 -k1,23440:21790143,31649715:262084 -k1,23440:23446179,31649715:262085 -k1,23440:26890691,31649715:262084 -k1,23440:29818125,31649715:262085 -k1,23440:31276896,31649715:262084 -k1,23440:32583029,31649715:0 -) -(1,23441:6764466,32514795:25818563,513147,134348 -k1,23440:10203616,32514795:252790 -k1,23440:10987904,32514795:252791 -k1,23440:14545675,32514795:252790 -k1,23440:15449893,32514795:252790 -k1,23440:16721768,32514795:252790 -k1,23440:19240139,32514795:252791 -k1,23440:22667493,32514795:252790 -k1,23440:23579575,32514795:252790 -k1,23440:26858162,32514795:252790 -k1,23440:27726991,32514795:252791 -k1,23440:30559933,32514795:252790 -k1,23440:32583029,32514795:0 -) -(1,23441:6764466,33379875:25818563,513147,126483 -k1,23440:8206313,33379875:250402 -k1,23440:9475800,33379875:250402 -k1,23440:11967532,33379875:250401 -k1,23440:12749431,33379875:250402 -k1,23440:16304814,33379875:250402 -k1,23440:17206644,33379875:250402 -k1,23440:18476131,33379875:250402 -k1,23440:21901096,33379875:250401 -k1,23440:22810790,33379875:250402 -k1,23440:24495120,33379875:250402 -k1,23440:25160313,33379875:250350 -k1,23440:28610183,33379875:250402 -k1,23440:30883681,33379875:250402 -k1,23441:32583029,33379875:0 -) -(1,23441:6764466,34244955:25818563,513147,134348 -k1,23440:8685112,34244955:253410 -k1,23440:9957608,34244955:253411 -k1,23440:12913067,34244955:253410 -k1,23440:13825769,34244955:253410 -k1,23440:15098265,34244955:253411 -k1,23440:17786993,34244955:253410 -k1,23440:19429767,34244955:253411 -k1,23440:21372695,34244955:253410 -k1,23440:22040894,34244955:253356 -k1,23440:25554720,34244955:253410 -k1,23440:30016853,34244955:253411 -k1,23440:31664214,34244955:253410 -k1,23440:32583029,34244955:0 -) -(1,23441:6764466,35110035:25818563,505283,134348 -g1,23440:9344618,35110035 -k1,23441:32583030,35110035:21600012 -g1,23441:32583030,35110035 -) -v1,23443:6764466,35794890:0,393216,0 -(1,23458:6764466,39856726:25818563,4455052,196608 -g1,23458:6764466,39856726 -g1,23458:6764466,39856726 -g1,23458:6567858,39856726 -(1,23458:6567858,39856726:0,4455052,196608 -r1,23478:32779637,39856726:26211779,4651660,196608 -k1,23458:6567857,39856726:-26211780 -) -(1,23458:6567858,39856726:26211779,4455052,196608 -[1,23458:6764466,39856726:25818563,4258444,0 -(1,23445:6764466,36029327:25818563,431045,86428 -(1,23444:6764466,36029327:0,0,0 -g1,23444:6764466,36029327 -g1,23444:6764466,36029327 -g1,23444:6436786,36029327 -(1,23444:6436786,36029327:0,0,0 -) -g1,23444:6764466,36029327 -) -k1,23445:6764466,36029327:0 -g1,23445:11079867,36029327 -g1,23445:11743775,36029327 -g1,23445:12739637,36029327 -g1,23445:13735499,36029327 -g1,23445:14399407,36029327 -g1,23445:15063315,36029327 -g1,23445:16059177,36029327 -g1,23445:16723085,36029327 -g1,23445:17718947,36029327 -g1,23445:18382855,36029327 -g1,23445:19378717,36029327 -g1,23445:23362164,36029327 -g1,23445:24026072,36029327 -h1,23445:26017796,36029327:0,0,0 -k1,23445:32583029,36029327:6565233 -g1,23445:32583029,36029327 -) -(1,23450:6764466,36845254:25818563,398014,4954 -(1,23447:6764466,36845254:0,0,0 -g1,23447:6764466,36845254 -g1,23447:6764466,36845254 -g1,23447:6436786,36845254 -(1,23447:6436786,36845254:0,0,0 -) -g1,23447:6764466,36845254 -) -g1,23450:7760328,36845254 -g1,23450:8092282,36845254 -g1,23450:8424236,36845254 -g1,23450:9088144,36845254 -g1,23450:9752052,36845254 -g1,23450:10084006,36845254 -g1,23450:10415960,36845254 -h1,23450:10747914,36845254:0,0,0 -k1,23450:32583030,36845254:21835116 -g1,23450:32583030,36845254 -) -(1,23450:6764466,37530109:25818563,407923,9908 -h1,23450:6764466,37530109:0,0,0 -g1,23450:7760328,37530109 -g1,23450:8424236,37530109 -g1,23450:9088144,37530109 -g1,23450:9420098,37530109 -g1,23450:10084006,37530109 -g1,23450:10415960,37530109 -h1,23450:10747914,37530109:0,0,0 -k1,23450:32583030,37530109:21835116 -g1,23450:32583030,37530109 -) -(1,23452:6764466,38346036:25818563,431045,86428 -(1,23451:6764466,38346036:0,0,0 -g1,23451:6764466,38346036 -g1,23451:6764466,38346036 -g1,23451:6436786,38346036 -(1,23451:6436786,38346036:0,0,0 -) -g1,23451:6764466,38346036 -) -k1,23452:6764466,38346036:0 -g1,23452:11079867,38346036 -g1,23452:11743775,38346036 -g1,23452:12739637,38346036 -g1,23452:13735499,38346036 -g1,23452:14399407,38346036 -g1,23452:15063315,38346036 -g1,23452:16059177,38346036 -g1,23452:16723085,38346036 -g1,23452:17718947,38346036 -g1,23452:18382855,38346036 -h1,23452:19046763,38346036:0,0,0 -k1,23452:32583029,38346036:13536266 -g1,23452:32583029,38346036 -) -(1,23457:6764466,39161963:25818563,398014,4954 -(1,23454:6764466,39161963:0,0,0 -g1,23454:6764466,39161963 -g1,23454:6764466,39161963 -g1,23454:6436786,39161963 -(1,23454:6436786,39161963:0,0,0 -) -g1,23454:6764466,39161963 -) -g1,23457:7760328,39161963 -g1,23457:8092282,39161963 -g1,23457:8424236,39161963 -g1,23457:9088144,39161963 -g1,23457:10084006,39161963 -h1,23457:11079868,39161963:0,0,0 -k1,23457:32583028,39161963:21503160 -g1,23457:32583028,39161963 -) -(1,23457:6764466,39846818:25818563,407923,9908 -h1,23457:6764466,39846818:0,0,0 -g1,23457:7760328,39846818 -g1,23457:8424236,39846818 -g1,23457:9088144,39846818 -g1,23457:9420098,39846818 -g1,23457:10084006,39846818 -g1,23457:10415960,39846818 -g1,23457:10747914,39846818 -h1,23457:11079868,39846818:0,0,0 -k1,23457:32583028,39846818:21503160 -g1,23457:32583028,39846818 -) -] -) -g1,23458:32583029,39856726 -g1,23458:6764466,39856726 -g1,23458:6764466,39856726 -g1,23458:32583029,39856726 -g1,23458:32583029,39856726 -) -h1,23458:6764466,40053334:0,0,0 -(1,23462:6764466,40918414:25818563,513147,126483 -h1,23461:6764466,40918414:983040,0,0 -k1,23461:8809845,40918414:159908 -k1,23461:10436448,40918414:159907 -k1,23461:12246553,40918414:159908 -k1,23461:14361400,40918414:159908 -k1,23461:15888388,40918414:159907 -k1,23461:16579793,40918414:159908 -k1,23461:18437738,40918414:159907 -k1,23461:21902627,40918414:159908 -k1,23461:23166817,40918414:159908 -k1,23461:24074490,40918414:159907 -k1,23461:26035327,40918414:159908 -k1,23461:29116175,40918414:159908 -k1,23461:30037610,40918414:159907 -k1,23461:31216603,40918414:159908 -k1,23461:32583029,40918414:0 -) -(1,23462:6764466,41783494:25818563,505283,134348 -k1,23461:9386597,41783494:219581 -k1,23461:10625263,41783494:219581 -k1,23461:13177270,41783494:219581 -k1,23461:14079736,41783494:219581 -k1,23461:16328313,41783494:219582 -k1,23461:17163932,41783494:219581 -k1,23461:18402598,41783494:219581 -k1,23461:20185213,41783494:219581 -k1,23461:21824959,41783494:219581 -k1,23461:23235985,41783494:219581 -k1,23461:23850093,41783494:219581 -(1,23461:24057187,41783494:0,435480,115847 -r1,23478:24767165,41783494:709978,551327,115847 -k1,23461:24057187,41783494:-709978 -) -(1,23461:24057187,41783494:709978,435480,115847 -k1,23461:24057187,41783494:3277 -h1,23461:24763888,41783494:0,411205,112570 -) -k1,23461:24986746,41783494:219581 -k1,23461:26067470,41783494:219581 -(1,23461:26067470,41783494:0,414482,115847 -r1,23478:26777448,41783494:709978,530329,115847 -k1,23461:26067470,41783494:-709978 -) -(1,23461:26067470,41783494:709978,414482,115847 -k1,23461:26067470,41783494:3277 -h1,23461:26774171,41783494:0,411205,112570 -) -k1,23461:27204124,41783494:219582 -k1,23461:28106590,41783494:219581 -k1,23461:28878640,41783494:219581 -k1,23461:30289666,41783494:219581 -k1,23461:31665957,41783494:219581 -(1,23461:31873051,41783494:0,452978,115847 -r1,23478:32583029,41783494:709978,568825,115847 -k1,23461:31873051,41783494:-709978 -) -(1,23461:31873051,41783494:709978,452978,115847 -k1,23461:31873051,41783494:3277 -h1,23461:32579752,41783494:0,411205,112570 -) -k1,23461:32583029,41783494:0 -) -(1,23462:6764466,42648574:25818563,513147,134348 -k1,23461:7776980,42648574:169066 -(1,23461:7776980,42648574:0,435480,115847 -r1,23478:8486958,42648574:709978,551327,115847 -k1,23461:7776980,42648574:-709978 -) -(1,23461:7776980,42648574:709978,435480,115847 -k1,23461:7776980,42648574:3277 -h1,23461:8483681,42648574:0,411205,112570 -) -k1,23461:8863117,42648574:169065 -k1,23461:10136465,42648574:169066 -k1,23461:11053296,42648574:169065 -k1,23461:13706177,42648574:169066 -k1,23461:14526671,42648574:169066 -k1,23461:18256307,42648574:169065 -k1,23461:19041411,42648574:169066 -k1,23461:20902617,42648574:169066 -k1,23461:22906690,42648574:169065 -k1,23461:24858991,42648574:169066 -k1,23461:26763449,42648574:169065 -k1,23461:30164095,42648574:169066 -k1,23461:32583029,42648574:0 -) -(1,23462:6764466,43513654:25818563,513147,134348 -k1,23461:7626756,43513654:202998 -k1,23461:10090090,43513654:202997 -k1,23461:12044865,43513654:202998 -k1,23461:15222542,43513654:202998 -k1,23461:17798598,43513654:202997 -k1,23461:19495162,43513654:202998 -k1,23461:20384322,43513654:202998 -k1,23461:23288058,43513654:202997 -k1,23461:24107094,43513654:202998 -k1,23461:26002232,43513654:202998 -k1,23461:27902611,43513654:202997 -k1,23461:29278048,43513654:202998 -k1,23461:32583029,43513654:0 -) -(1,23462:6764466,44378734:25818563,513147,126483 -g1,23461:8331432,44378734 -g1,23461:10693349,44378734 -g1,23461:13629361,44378734 -g1,23461:15693089,44378734 -g1,23461:17761405,44378734 -g1,23461:19297568,44378734 -g1,23461:20244563,44378734 -g1,23461:23122904,44378734 -g1,23461:24008295,44378734 -g1,23461:26969867,44378734 -k1,23462:32583029,44378734:2255753 -g1,23462:32583029,44378734 -) -] -g1,23478:32583029,44505217 -) -] -(1,23478:32583029,45706769:0,0,0 -g1,23478:32583029,45706769 -) -) -] -(1,23478:6630773,47279633:25952256,0,0 -h1,23478:6630773,47279633:25952256,0,0 -) -] -(1,23478:4262630,4025873:0,0,0 -[1,23478:-473656,4025873:0,0,0 -(1,23478:-473656,-710413:0,0,0 -(1,23478:-473656,-710413:0,0,0 -g1,23478:-473656,-710413 -) -g1,23478:-473656,-710413 -) -] -) -] -!28042 -}404 -Input:4403:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4404:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4405:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4406:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,23476:3078558,4812305:0,0,0 +(1,23476:3078558,49800853:0,16384,2228224 +g1,23476:29030814,49800853 +g1,23476:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23476:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23476:37855564,49800853:1179648,16384,0 +) +) +k1,23476:3078556,49800853:-34777008 +) +] +g1,23476:6630773,4812305 +g1,23476:6630773,4812305 +g1,23476:9946239,4812305 +g1,23476:11513204,4812305 +k1,23476:31387652,4812305:19874448 +) +) +] +[1,23476:6630773,45706769:25952256,40108032,0 +(1,23476:6630773,45706769:25952256,40108032,0 +(1,23476:6630773,45706769:0,0,0 +g1,23476:6630773,45706769 +) +[1,23476:6630773,45706769:25952256,40108032,0 +(1,23426:6630773,6254097:25952256,505283,126483 +k1,23425:11136854,6254097:156456 +k1,23425:13303955,6254097:156456 +k1,23425:15122362,6254097:156414 +k1,23425:16371303,6254097:156456 +k1,23425:17546844,6254097:156456 +k1,23425:18716487,6254097:156456 +k1,23425:21847622,6254097:156456 +k1,23425:22690240,6254097:156456 +k1,23425:23202556,6254097:156456 +k1,23425:25741901,6254097:156456 +k1,23425:29110276,6254097:156456 +k1,23425:32583029,6254097:0 +) +(1,23426:6630773,7119177:25952256,505283,126483 +k1,23425:10354436,7119177:220763 +k1,23425:11106695,7119177:220762 +k1,23425:12840684,7119177:220763 +k1,23425:13747608,7119177:220762 +k1,23425:14324231,7119177:220763 +k1,23425:17756912,7119177:220762 +k1,23425:19579375,7119177:220763 +k1,23425:23143785,7119177:220763 +k1,23425:25062585,7119177:220762 +k1,23425:26049464,7119177:220763 +k1,23425:28280871,7119177:220762 +k1,23425:29493194,7119177:220763 +k1,23425:30365384,7119177:220762 +k1,23425:31333913,7119177:220763 +k1,23426:32583029,7119177:0 +) +(1,23426:6630773,7984257:25952256,505283,115847 +g1,23425:8830161,7984257 +g1,23425:9680818,7984257 +(1,23425:9680818,7984257:0,452978,115847 +r1,23476:12149355,7984257:2468537,568825,115847 +k1,23425:9680818,7984257:-2468537 +) +(1,23425:9680818,7984257:2468537,452978,115847 +k1,23425:9680818,7984257:3277 +h1,23425:12146078,7984257:0,411205,112570 +) +k1,23426:32583029,7984257:20381246 +g1,23426:32583029,7984257 +) +v1,23428:6630773,8849337:0,393216,0 +(1,23476:6630773,44505217:25952256,36049096,0 +g1,23476:6630773,44505217 +g1,23476:6237557,44505217 +r1,23476:6368629,44505217:131072,36049096,0 +g1,23476:6567858,44505217 +g1,23476:6764466,44505217 +[1,23476:6764466,44505217:25818563,36049096,0 +(1,23429:6764466,9157635:25818563,701514,196608 +(1,23428:6764466,9157635:0,701514,196608 +r1,23476:7761522,9157635:997056,898122,196608 +k1,23428:6764466,9157635:-997056 +) +(1,23428:6764466,9157635:997056,701514,196608 +) +k1,23428:7971426,9157635:209904 +k1,23428:8299106,9157635:327680 +k1,23428:9690250,9157635:215428 +k1,23428:10696042,9157635:215428 +k1,23428:12188112,9157635:215429 +k1,23428:13768655,9157635:215428 +k1,23428:15019552,9157635:215428 +k1,23428:16790149,9157635:215428 +k1,23428:18967444,9157635:209904 +k1,23428:20960583,9157635:209904 +k1,23428:23573037,9157635:209904 +k1,23428:25009121,9157635:209905 +k1,23428:26706037,9157635:209904 +k1,23428:28107386,9157635:209904 +k1,23428:30579593,9157635:209904 +k1,23428:32583029,9157635:0 +) +(1,23429:6764466,10022715:25818563,513147,134348 +k1,23428:8296207,10022715:218399 +k1,23428:10400076,10022715:218398 +k1,23428:11955409,10022715:218399 +k1,23428:14545555,10022715:218398 +k1,23428:18088595,10022715:218399 +k1,23428:19533173,10022715:218399 +k1,23428:22121353,10022715:218398 +k1,23428:23994536,10022715:218399 +k1,23428:24744431,10022715:218398 +k1,23428:27816268,10022715:218399 +k1,23428:28982317,10022715:218398 +k1,23428:30709355,10022715:218399 +k1,23429:32583029,10022715:0 +) +(1,23429:6764466,10887795:25818563,513147,134348 +k1,23428:10740357,10887795:146622 +k1,23428:13001170,10887795:146622 +k1,23428:14166876,10887795:146621 +k1,23428:16495192,10887795:146622 +k1,23428:19889778,10887795:146622 +k1,23428:21307798,10887795:146622 +k1,23428:24231836,10887795:146622 +k1,23428:26487407,10887795:146622 +k1,23428:27293320,10887795:146621 +k1,23428:30620404,10887795:146622 +k1,23428:31298523,10887795:146622 +k1,23428:32583029,10887795:0 +) +(1,23429:6764466,11752875:25818563,505283,102891 +k1,23428:9384270,11752875:236915 +k1,23428:12125971,11752875:236915 +k1,23428:13354447,11752875:236916 +k1,23428:14242790,11752875:236915 +k1,23428:15227471,11752875:236915 +k1,23428:16876687,11752875:236915 +k1,23428:17799764,11752875:236915 +k1,23428:18451485,11752875:236878 +k1,23428:20930387,11752875:236915 +k1,23428:21985191,11752875:236915 +k1,23428:24255688,11752875:236915 +k1,23428:27795619,11752875:236916 +k1,23428:29687318,11752875:236915 +k1,23428:30915793,11752875:236915 +k1,23428:32583029,11752875:0 +) +(1,23429:6764466,12617955:25818563,513147,134348 +k1,23428:8767106,12617955:242998 +k1,23428:10503670,12617955:242998 +k1,23428:11432830,12617955:242998 +k1,23428:14395572,12617955:242998 +k1,23428:16756694,12617955:242998 +k1,23428:17682577,12617955:242998 +k1,23428:20119720,12617955:242998 +k1,23428:23667699,12617955:242998 +k1,23428:24376658,12617955:242998 +k1,23428:25638741,12617955:242998 +k1,23428:27950055,12617955:242998 +k1,23428:29184613,12617955:242998 +k1,23428:30079039,12617955:242998 +k1,23428:31069803,12617955:242998 +k1,23428:32583029,12617955:0 +) +(1,23429:6764466,13483035:25818563,513147,126483 +k1,23428:8342020,13483035:209817 +k1,23428:9570921,13483035:209816 +k1,23428:12059425,13483035:209817 +k1,23428:12684074,13483035:209806 +k1,23428:15151606,13483035:209817 +k1,23428:16285481,13483035:209817 +k1,23428:18850662,13483035:209817 +k1,23428:20752618,13483035:209816 +k1,23428:23988232,13483035:209817 +k1,23428:25330511,13483035:209817 +k1,23428:28054944,13483035:209817 +k1,23428:28916188,13483035:209816 +k1,23428:31563944,13483035:209817 +k1,23428:32583029,13483035:0 +) +(1,23429:6764466,14348115:25818563,505283,102891 +k1,23428:9233865,14348115:227412 +k1,23428:10533446,14348115:227412 +k1,23428:12793129,14348115:227412 +k1,23428:14260482,14348115:227412 +k1,23428:16033233,14348115:227412 +k1,23428:17754211,14348115:227412 +k1,23428:20049939,14348115:227412 +k1,23428:21268911,14348115:227412 +k1,23428:22694977,14348115:227412 +k1,23428:26107439,14348115:227412 +k1,23428:26950889,14348115:227412 +k1,23428:27593116,14348115:227384 +k1,23428:31510860,14348115:227412 +k1,23428:32583029,14348115:0 +) +(1,23429:6764466,15213195:25818563,513147,134348 +k1,23428:7328457,15213195:208131 +k1,23428:9730734,15213195:208132 +k1,23428:12022910,15213195:208131 +k1,23428:12762539,15213195:208132 +k1,23428:15269018,15213195:208131 +k1,23428:16128578,15213195:208132 +k1,23428:18635057,15213195:208131 +k1,23428:20482243,15213195:208131 +k1,23428:22257996,15213195:208132 +k1,23428:25586951,15213195:208131 +k1,23428:27879128,15213195:208132 +k1,23428:30024503,15213195:208131 +k1,23428:32583029,15213195:0 +) +(1,23429:6764466,16078275:25818563,513147,134348 +k1,23428:8470630,16078275:197525 +k1,23428:13113463,16078275:197526 +k1,23428:13997150,16078275:197525 +k1,23428:17548808,16078275:197525 +k1,23428:20508676,16078275:197525 +k1,23428:22148649,16078275:197526 +k1,23428:24857514,16078275:197525 +k1,23428:25737924,16078275:197525 +k1,23428:28630946,16078275:197526 +k1,23428:32168186,16078275:197525 +k1,23429:32583029,16078275:0 +) +(1,23429:6764466,16943355:25818563,505283,134348 +g1,23428:9018249,16943355 +g1,23428:10085830,16943355 +g1,23428:11332324,16943355 +g1,23428:12816059,16943355 +g1,23428:14395476,16943355 +g1,23428:16124971,16943355 +g1,23428:16975628,16943355 +g1,23428:17922623,16943355 +k1,23429:32583029,16943355:12369268 +g1,23429:32583029,16943355 +) +(1,23435:6764466,17808435:25818563,513147,134348 +h1,23430:6764466,17808435:983040,0,0 +k1,23430:9653336,17808435:188787 +k1,23430:10501416,17808435:188788 +k1,23430:11709288,17808435:188787 +k1,23430:13890369,17808435:188787 +k1,23430:14947508,17808435:188787 +k1,23430:16666562,17808435:188788 +k1,23430:17506777,17808435:188787 +k1,23430:18443330,17808435:188787 +k1,23430:19441487,17808435:188787 +k1,23430:20649360,17808435:188788 +k1,23430:22720341,17808435:188787 +k1,23430:23856779,17808435:188787 +k1,23430:25210796,17808435:188787 +k1,23431:26005137,17808435:188788 +k1,23431:29947826,17808435:188787 +k1,23431:32583029,17808435:0 +) +(1,23435:6764466,18673515:25818563,513147,134348 +k1,23431:7981891,18673515:198340 +k1,23431:11154910,18673515:198340 +k1,23431:14254529,18673515:198340 +k1,23431:17291889,18673515:198340 +k1,23431:18251757,18673515:198340 +k1,23431:19469182,18673515:198340 +k1,23431:22363017,18673515:198339 +k1,23431:24074583,18673515:198340 +k1,23431:24924351,18673515:198340 +k1,23431:26534992,18673515:198340 +k1,23431:27752417,18673515:198340 +k1,23431:29107467,18673515:198340 +k1,23431:30497252,18673515:198340 +k1,23431:31714677,18673515:198340 +k1,23435:32583029,18673515:0 +) +(1,23435:6764466,19538595:25818563,513147,134348 +k1,23431:9088253,19538595:184692 +k1,23431:10786171,19538595:184692 +k1,23431:11918515,19538595:184693 +k1,23431:14136789,19538595:184692 +k1,23431:15340566,19538595:184692 +k1,23431:19450865,19538595:184692 +k1,23431:22165247,19538595:184692 +k1,23431:23009231,19538595:184692 +k1,23431:25956267,19538595:184693 +k1,23431:28486493,19538595:184692 +k1,23431:29740733,19538595:184692 +k1,23431:32583029,19538595:0 +) +(1,23435:6764466,20403675:25818563,505283,134348 +k1,23431:8179334,20403675:223423 +k1,23431:10866911,20403675:223423 +k1,23431:13775999,20403675:223423 +k1,23432:14604975,20403675:223423 +k1,23432:17307625,20403675:223423 +k1,23432:18213934,20403675:223424 +k1,23432:20735049,20403675:223423 +k1,23432:24031455,20403675:223423 +k1,23432:26373002,20403675:223423 +k1,23432:29002252,20403675:223423 +k1,23432:29841713,20403675:223423 +k1,23432:31084221,20403675:223423 +k1,23435:32583029,20403675:0 +) +(1,23435:6764466,21268755:25818563,513147,7863 +k1,23432:8569446,21268755:222941 +k1,23432:10803033,21268755:222942 +k1,23432:11708859,21268755:222941 +k1,23432:14314690,21268755:222942 +k1,23432:19146778,21268755:222941 +k1,23432:20361280,21268755:222942 +k1,23432:22746909,21268755:222941 +k1,23432:25628647,21268755:222942 +k1,23432:27549626,21268755:222941 +k1,23432:29161931,21268755:222942 +k1,23432:31591469,21268755:222941 +k1,23432:32583029,21268755:0 +) +(1,23435:6764466,22133835:25818563,513147,134348 +k1,23432:9520386,22133835:232129 +k1,23433:10358067,22133835:232128 +k1,23433:13234574,22133835:232129 +k1,23433:16031781,22133835:232128 +k1,23433:18646799,22133835:232129 +k1,23433:22122959,22133835:232128 +k1,23433:24384083,22133835:232129 +k1,23433:27120342,22133835:232128 +k1,23433:30122022,22133835:232129 +k1,23433:30710010,22133835:232128 +k1,23433:32583029,22133835:0 +) +(1,23435:6764466,22998915:25818563,513147,134348 +k1,23433:8598210,22998915:171096 +k1,23433:9385344,22998915:171096 +k1,23433:9912299,22998915:171095 +k1,23433:12639954,22998915:171096 +k1,23433:14053613,22998915:171096 +k1,23433:15243794,22998915:171096 +k1,23433:17407839,22998915:171095 +k1,23433:19008275,22998915:171096 +k1,23433:19838663,22998915:171096 +k1,23433:22493574,22998915:171096 +k1,23433:25130790,22998915:171096 +k1,23433:26406167,22998915:171095 +k1,23433:29009959,22998915:171096 +k1,23433:30200140,22998915:171096 +k1,23433:32583029,22998915:0 +) +(1,23435:6764466,23863995:25818563,513147,134348 +k1,23433:8485619,23863995:153532 +k1,23433:10377167,23863995:153533 +k1,23433:13983136,23863995:153532 +k1,23433:14822830,23863995:153532 +k1,23433:17770163,23863995:153533 +k1,23434:18529248,23863995:153532 +k1,23434:22527123,23863995:153533 +k1,23434:25164470,23863995:153532 +k1,23434:27610451,23863995:153532 +k1,23434:28380022,23863995:153533 +(1,23434:28380022,23863995:0,414482,115847 +r1,23476:29441711,23863995:1061689,530329,115847 +k1,23434:28380022,23863995:-1061689 +) +(1,23434:28380022,23863995:1061689,414482,115847 +k1,23434:28380022,23863995:3277 +h1,23434:29438434,23863995:0,411205,112570 +) +k1,23434:29595243,23863995:153532 +k1,23434:32583029,23863995:0 +) +(1,23435:6764466,24729075:25818563,505283,134348 +g1,23434:9256144,24729075 +g1,23434:12157422,24729075 +g1,23434:13166021,24729075 +g1,23434:14384335,24729075 +g1,23434:16425126,24729075 +g1,23434:19673745,24729075 +g1,23434:21064419,24729075 +g1,23434:23727802,24729075 +k1,23435:32583029,24729075:6083710 +g1,23435:32583029,24729075 +) +(1,23437:6764466,25594155:25818563,513147,126483 +h1,23436:6764466,25594155:983040,0,0 +k1,23436:8468565,25594155:243302 +k1,23436:9882341,25594155:243303 +k1,23436:13338218,25594155:243302 +k1,23436:16588313,25594155:243303 +k1,23436:18344841,25594155:243302 +k1,23436:20943508,25594155:243303 +k1,23436:22680376,25594155:243302 +k1,23436:23609840,25594155:243302 +k1,23436:25930634,25594155:243303 +k1,23436:26833228,25594155:243302 +k1,23436:30291072,25594155:243303 +k1,23436:31193666,25594155:243302 +k1,23436:32583029,25594155:0 +) +(1,23437:6764466,26459235:25818563,513147,134348 +k1,23436:8914718,26459235:273956 +k1,23436:11901865,26459235:273956 +k1,23436:12937349,26459235:273956 +k1,23436:15122990,26459235:273956 +k1,23436:16489431,26459235:273956 +k1,23436:19458883,26459235:273956 +(1,23436:19458883,26459235:0,452978,115847 +r1,23476:21927420,26459235:2468537,568825,115847 +k1,23436:19458883,26459235:-2468537 +) +(1,23436:19458883,26459235:2468537,452978,115847 +k1,23436:19458883,26459235:3277 +h1,23436:21924143,26459235:0,411205,112570 +) +k1,23436:22201377,26459235:273957 +k1,23436:23126761,26459235:273956 +k1,23436:24379170,26459235:273956 +k1,23436:25672211,26459235:273956 +k1,23436:28014483,26459235:273956 +k1,23436:30638560,26459235:273956 +k1,23436:31563944,26459235:273956 +k1,23436:32583029,26459235:0 +) +(1,23437:6764466,27324315:25818563,513147,126483 +k1,23436:9385306,27324315:200595 +k1,23436:10272062,27324315:200594 +k1,23436:10828517,27324315:200595 +k1,23436:14003791,27324315:200595 +k1,23436:16355932,27324315:200594 +k1,23436:17937371,27324315:200595 +k1,23436:18669463,27324315:200595 +k1,23436:20847278,27324315:200594 +k1,23436:23577563,27324315:200595 +k1,23436:26752837,27324315:200595 +k1,23436:29261609,27324315:200594 +k1,23436:30453764,27324315:200595 +k1,23436:32583029,27324315:0 +) +(1,23437:6764466,28189395:25818563,505283,134348 +k1,23436:9271575,28189395:156988 +k1,23436:10822515,28189395:156989 +k1,23436:12431125,28189395:156988 +k1,23436:14453924,28189395:156989 +k1,23436:17631466,28189395:156988 +k1,23436:18549983,28189395:156989 +k1,23436:21800926,28189395:156988 +k1,23436:23944967,28189395:156989 +k1,23436:26460596,28189395:156988 +k1,23436:28936904,28189395:156989 +k1,23436:30285337,28189395:156988 +k1,23436:32583029,28189395:0 +) +(1,23437:6764466,29054475:25818563,513147,126483 +k1,23436:9137287,29054475:254697 +k1,23436:11488481,29054475:254697 +k1,23436:13959606,29054475:254697 +k1,23436:15410990,29054475:254697 +k1,23436:17319160,29054475:254697 +k1,23436:19855165,29054475:254697 +k1,23436:20761290,29054475:254697 +k1,23436:22108472,29054475:254697 +k1,23436:23030325,29054475:254697 +(1,23436:23030325,29054475:0,452978,115847 +r1,23476:25850574,29054475:2820249,568825,115847 +k1,23436:23030325,29054475:-2820249 +) +(1,23436:23030325,29054475:2820249,452978,115847 +k1,23436:23030325,29054475:3277 +h1,23436:25847297,29054475:0,411205,112570 +) +k1,23436:26105271,29054475:254697 +k1,23436:27753919,29054475:254697 +k1,23436:30232908,29054475:254697 +k1,23436:32583029,29054475:0 +) +(1,23437:6764466,29919555:25818563,505283,134348 +g1,23436:8331432,29919555 +g1,23436:9920024,29919555 +g1,23436:11403759,29919555 +g1,23436:13470109,29919555 +g1,23436:15144553,29919555 +g1,23436:18483612,29919555 +g1,23436:21517273,29919555 +g1,23436:22399387,29919555 +k1,23437:32583029,29919555:6602100 +g1,23437:32583029,29919555 +) +(1,23439:6764466,30784635:25818563,513147,126483 +h1,23438:6764466,30784635:983040,0,0 +k1,23438:8779748,30784635:203212 +k1,23438:13016047,30784635:203213 +k1,23438:14911399,30784635:203212 +k1,23438:15773903,30784635:203212 +k1,23438:17673843,30784635:203213 +k1,23438:21057517,30784635:203212 +k1,23438:21473717,30784635:203208 +k1,23438:23606309,30784635:203212 +k1,23438:24165382,30784635:203213 +k1,23438:25757957,30784635:203212 +k1,23438:27837465,30784635:203212 +k1,23438:29434629,30784635:203213 +k1,23438:31375856,30784635:203212 +k1,23439:32583029,30784635:0 +) +(1,23439:6764466,31649715:25818563,513147,102891 +k1,23438:9107973,31649715:262084 +k1,23438:12225462,31649715:262085 +k1,23438:13678991,31649715:262084 +k1,23438:14557114,31649715:262085 +k1,23438:15838283,31649715:262084 +k1,23438:18341699,31649715:262085 +k1,23438:21790143,31649715:262084 +k1,23438:23446179,31649715:262085 +k1,23438:26890691,31649715:262084 +k1,23438:29818125,31649715:262085 +k1,23438:31276896,31649715:262084 +k1,23438:32583029,31649715:0 +) +(1,23439:6764466,32514795:25818563,513147,134348 +k1,23438:10203616,32514795:252790 +k1,23438:10987904,32514795:252791 +k1,23438:14545675,32514795:252790 +k1,23438:15449893,32514795:252790 +k1,23438:16721768,32514795:252790 +k1,23438:19240139,32514795:252791 +k1,23438:22667493,32514795:252790 +k1,23438:23579575,32514795:252790 +k1,23438:26858162,32514795:252790 +k1,23438:27726991,32514795:252791 +k1,23438:30559933,32514795:252790 +k1,23438:32583029,32514795:0 +) +(1,23439:6764466,33379875:25818563,513147,126483 +k1,23438:8206313,33379875:250402 +k1,23438:9475800,33379875:250402 +k1,23438:11967532,33379875:250401 +k1,23438:12749431,33379875:250402 +k1,23438:16304814,33379875:250402 +k1,23438:17206644,33379875:250402 +k1,23438:18476131,33379875:250402 +k1,23438:21901096,33379875:250401 +k1,23438:22810790,33379875:250402 +k1,23438:24495120,33379875:250402 +k1,23438:25160313,33379875:250350 +k1,23438:28610183,33379875:250402 +k1,23438:30883681,33379875:250402 +k1,23439:32583029,33379875:0 +) +(1,23439:6764466,34244955:25818563,513147,134348 +k1,23438:8685112,34244955:253410 +k1,23438:9957608,34244955:253411 +k1,23438:12913067,34244955:253410 +k1,23438:13825769,34244955:253410 +k1,23438:15098265,34244955:253411 +k1,23438:17786993,34244955:253410 +k1,23438:19429767,34244955:253411 +k1,23438:21372695,34244955:253410 +k1,23438:22040894,34244955:253356 +k1,23438:25554720,34244955:253410 +k1,23438:30016853,34244955:253411 +k1,23438:31664214,34244955:253410 +k1,23438:32583029,34244955:0 +) +(1,23439:6764466,35110035:25818563,505283,134348 +g1,23438:9344618,35110035 +k1,23439:32583030,35110035:21600012 +g1,23439:32583030,35110035 +) +v1,23441:6764466,35794890:0,393216,0 +(1,23456:6764466,39856726:25818563,4455052,196608 +g1,23456:6764466,39856726 +g1,23456:6764466,39856726 +g1,23456:6567858,39856726 +(1,23456:6567858,39856726:0,4455052,196608 +r1,23476:32779637,39856726:26211779,4651660,196608 +k1,23456:6567857,39856726:-26211780 +) +(1,23456:6567858,39856726:26211779,4455052,196608 +[1,23456:6764466,39856726:25818563,4258444,0 +(1,23443:6764466,36029327:25818563,431045,86428 +(1,23442:6764466,36029327:0,0,0 +g1,23442:6764466,36029327 +g1,23442:6764466,36029327 +g1,23442:6436786,36029327 +(1,23442:6436786,36029327:0,0,0 +) +g1,23442:6764466,36029327 +) +k1,23443:6764466,36029327:0 +g1,23443:11079867,36029327 +g1,23443:11743775,36029327 +g1,23443:12739637,36029327 +g1,23443:13735499,36029327 +g1,23443:14399407,36029327 +g1,23443:15063315,36029327 +g1,23443:16059177,36029327 +g1,23443:16723085,36029327 +g1,23443:17718947,36029327 +g1,23443:18382855,36029327 +g1,23443:19378717,36029327 +g1,23443:23362164,36029327 +g1,23443:24026072,36029327 +h1,23443:26017796,36029327:0,0,0 +k1,23443:32583029,36029327:6565233 +g1,23443:32583029,36029327 +) +(1,23448:6764466,36845254:25818563,398014,4954 +(1,23445:6764466,36845254:0,0,0 +g1,23445:6764466,36845254 +g1,23445:6764466,36845254 +g1,23445:6436786,36845254 +(1,23445:6436786,36845254:0,0,0 +) +g1,23445:6764466,36845254 +) +g1,23448:7760328,36845254 +g1,23448:8092282,36845254 +g1,23448:8424236,36845254 +g1,23448:9088144,36845254 +g1,23448:9752052,36845254 +g1,23448:10084006,36845254 +g1,23448:10415960,36845254 +h1,23448:10747914,36845254:0,0,0 +k1,23448:32583030,36845254:21835116 +g1,23448:32583030,36845254 +) +(1,23448:6764466,37530109:25818563,407923,9908 +h1,23448:6764466,37530109:0,0,0 +g1,23448:7760328,37530109 +g1,23448:8424236,37530109 +g1,23448:9088144,37530109 +g1,23448:9420098,37530109 +g1,23448:10084006,37530109 +g1,23448:10415960,37530109 +h1,23448:10747914,37530109:0,0,0 +k1,23448:32583030,37530109:21835116 +g1,23448:32583030,37530109 +) +(1,23450:6764466,38346036:25818563,431045,86428 +(1,23449:6764466,38346036:0,0,0 +g1,23449:6764466,38346036 +g1,23449:6764466,38346036 +g1,23449:6436786,38346036 +(1,23449:6436786,38346036:0,0,0 +) +g1,23449:6764466,38346036 +) +k1,23450:6764466,38346036:0 +g1,23450:11079867,38346036 +g1,23450:11743775,38346036 +g1,23450:12739637,38346036 +g1,23450:13735499,38346036 +g1,23450:14399407,38346036 +g1,23450:15063315,38346036 +g1,23450:16059177,38346036 +g1,23450:16723085,38346036 +g1,23450:17718947,38346036 +g1,23450:18382855,38346036 +h1,23450:19046763,38346036:0,0,0 +k1,23450:32583029,38346036:13536266 +g1,23450:32583029,38346036 +) +(1,23455:6764466,39161963:25818563,398014,4954 +(1,23452:6764466,39161963:0,0,0 +g1,23452:6764466,39161963 +g1,23452:6764466,39161963 +g1,23452:6436786,39161963 +(1,23452:6436786,39161963:0,0,0 +) +g1,23452:6764466,39161963 +) +g1,23455:7760328,39161963 +g1,23455:8092282,39161963 +g1,23455:8424236,39161963 +g1,23455:9088144,39161963 +g1,23455:10084006,39161963 +h1,23455:11079868,39161963:0,0,0 +k1,23455:32583028,39161963:21503160 +g1,23455:32583028,39161963 +) +(1,23455:6764466,39846818:25818563,407923,9908 +h1,23455:6764466,39846818:0,0,0 +g1,23455:7760328,39846818 +g1,23455:8424236,39846818 +g1,23455:9088144,39846818 +g1,23455:9420098,39846818 +g1,23455:10084006,39846818 +g1,23455:10415960,39846818 +g1,23455:10747914,39846818 +h1,23455:11079868,39846818:0,0,0 +k1,23455:32583028,39846818:21503160 +g1,23455:32583028,39846818 +) +] +) +g1,23456:32583029,39856726 +g1,23456:6764466,39856726 +g1,23456:6764466,39856726 +g1,23456:32583029,39856726 +g1,23456:32583029,39856726 +) +h1,23456:6764466,40053334:0,0,0 +(1,23460:6764466,40918414:25818563,513147,126483 +h1,23459:6764466,40918414:983040,0,0 +k1,23459:8809845,40918414:159908 +k1,23459:10436448,40918414:159907 +k1,23459:12246553,40918414:159908 +k1,23459:14361400,40918414:159908 +k1,23459:15888388,40918414:159907 +k1,23459:16579793,40918414:159908 +k1,23459:18437738,40918414:159907 +k1,23459:21902627,40918414:159908 +k1,23459:23166817,40918414:159908 +k1,23459:24074490,40918414:159907 +k1,23459:26035327,40918414:159908 +k1,23459:29116175,40918414:159908 +k1,23459:30037610,40918414:159907 +k1,23459:31216603,40918414:159908 +k1,23459:32583029,40918414:0 +) +(1,23460:6764466,41783494:25818563,505283,134348 +k1,23459:9386597,41783494:219581 +k1,23459:10625263,41783494:219581 +k1,23459:13177270,41783494:219581 +k1,23459:14079736,41783494:219581 +k1,23459:16328313,41783494:219582 +k1,23459:17163932,41783494:219581 +k1,23459:18402598,41783494:219581 +k1,23459:20185213,41783494:219581 +k1,23459:21824959,41783494:219581 +k1,23459:23235985,41783494:219581 +k1,23459:23850093,41783494:219581 +(1,23459:24057187,41783494:0,435480,115847 +r1,23476:24767165,41783494:709978,551327,115847 +k1,23459:24057187,41783494:-709978 +) +(1,23459:24057187,41783494:709978,435480,115847 +k1,23459:24057187,41783494:3277 +h1,23459:24763888,41783494:0,411205,112570 +) +k1,23459:24986746,41783494:219581 +k1,23459:26067470,41783494:219581 +(1,23459:26067470,41783494:0,414482,115847 +r1,23476:26777448,41783494:709978,530329,115847 +k1,23459:26067470,41783494:-709978 +) +(1,23459:26067470,41783494:709978,414482,115847 +k1,23459:26067470,41783494:3277 +h1,23459:26774171,41783494:0,411205,112570 +) +k1,23459:27204124,41783494:219582 +k1,23459:28106590,41783494:219581 +k1,23459:28878640,41783494:219581 +k1,23459:30289666,41783494:219581 +k1,23459:31665957,41783494:219581 +(1,23459:31873051,41783494:0,452978,115847 +r1,23476:32583029,41783494:709978,568825,115847 +k1,23459:31873051,41783494:-709978 +) +(1,23459:31873051,41783494:709978,452978,115847 +k1,23459:31873051,41783494:3277 +h1,23459:32579752,41783494:0,411205,112570 +) +k1,23459:32583029,41783494:0 +) +(1,23460:6764466,42648574:25818563,513147,134348 +k1,23459:7776980,42648574:169066 +(1,23459:7776980,42648574:0,435480,115847 +r1,23476:8486958,42648574:709978,551327,115847 +k1,23459:7776980,42648574:-709978 +) +(1,23459:7776980,42648574:709978,435480,115847 +k1,23459:7776980,42648574:3277 +h1,23459:8483681,42648574:0,411205,112570 +) +k1,23459:8863117,42648574:169065 +k1,23459:10136465,42648574:169066 +k1,23459:11053296,42648574:169065 +k1,23459:13706177,42648574:169066 +k1,23459:14526671,42648574:169066 +k1,23459:18256307,42648574:169065 +k1,23459:19041411,42648574:169066 +k1,23459:20902617,42648574:169066 +k1,23459:22906690,42648574:169065 +k1,23459:24858991,42648574:169066 +k1,23459:26763449,42648574:169065 +k1,23459:30164095,42648574:169066 +k1,23459:32583029,42648574:0 +) +(1,23460:6764466,43513654:25818563,513147,134348 +k1,23459:7626756,43513654:202998 +k1,23459:10090090,43513654:202997 +k1,23459:12044865,43513654:202998 +k1,23459:15222542,43513654:202998 +k1,23459:17798598,43513654:202997 +k1,23459:19495162,43513654:202998 +k1,23459:20384322,43513654:202998 +k1,23459:23288058,43513654:202997 +k1,23459:24107094,43513654:202998 +k1,23459:26002232,43513654:202998 +k1,23459:27902611,43513654:202997 +k1,23459:29278048,43513654:202998 +k1,23459:32583029,43513654:0 +) +(1,23460:6764466,44378734:25818563,513147,126483 +g1,23459:8331432,44378734 +g1,23459:10693349,44378734 +g1,23459:13629361,44378734 +g1,23459:15693089,44378734 +g1,23459:17761405,44378734 +g1,23459:19297568,44378734 +g1,23459:20244563,44378734 +g1,23459:23122904,44378734 +g1,23459:24008295,44378734 +g1,23459:26969867,44378734 +k1,23460:32583029,44378734:2255753 +g1,23460:32583029,44378734 +) +] +g1,23476:32583029,44505217 +) +] +(1,23476:32583029,45706769:0,0,0 +g1,23476:32583029,45706769 +) +) +] +(1,23476:6630773,47279633:25952256,0,0 +h1,23476:6630773,47279633:25952256,0,0 +) +] +(1,23476:4262630,4025873:0,0,0 +[1,23476:-473656,4025873:0,0,0 +(1,23476:-473656,-710413:0,0,0 +(1,23476:-473656,-710413:0,0,0 +g1,23476:-473656,-710413 +) +g1,23476:-473656,-710413 +) +] +) +] +!27983 +}405 Input:4407:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4408:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4409:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4410:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4411:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4412:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !840 -{405 -[1,23536:4262630,47279633:28320399,43253760,0 -(1,23536:4262630,4025873:0,0,0 -[1,23536:-473656,4025873:0,0,0 -(1,23536:-473656,-710413:0,0,0 -(1,23536:-473656,-644877:0,0,0 -k1,23536:-473656,-644877:-65536 +{406 +[1,23534:4262630,47279633:28320399,43253760,0 +(1,23534:4262630,4025873:0,0,0 +[1,23534:-473656,4025873:0,0,0 +(1,23534:-473656,-710413:0,0,0 +(1,23534:-473656,-644877:0,0,0 +k1,23534:-473656,-644877:-65536 ) -(1,23536:-473656,4736287:0,0,0 -k1,23536:-473656,4736287:5209943 +(1,23534:-473656,4736287:0,0,0 +k1,23534:-473656,4736287:5209943 ) -g1,23536:-473656,-710413 +g1,23534:-473656,-710413 ) ] ) -[1,23536:6630773,47279633:25952256,43253760,0 -[1,23536:6630773,4812305:25952256,786432,0 -(1,23536:6630773,4812305:25952256,505283,134348 -(1,23536:6630773,4812305:25952256,505283,134348 -g1,23536:3078558,4812305 -[1,23536:3078558,4812305:0,0,0 -(1,23536:3078558,2439708:0,1703936,0 -k1,23536:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23536:2537886,2439708:1179648,16384,0 +[1,23534:6630773,47279633:25952256,43253760,0 +[1,23534:6630773,4812305:25952256,786432,0 +(1,23534:6630773,4812305:25952256,505283,134348 +(1,23534:6630773,4812305:25952256,505283,134348 +g1,23534:3078558,4812305 +[1,23534:3078558,4812305:0,0,0 +(1,23534:3078558,2439708:0,1703936,0 +k1,23534:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23534:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23536:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23534:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23536:3078558,4812305:0,0,0 -(1,23536:3078558,2439708:0,1703936,0 -g1,23536:29030814,2439708 -g1,23536:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23536:36151628,1915420:16384,1179648,0 +[1,23534:3078558,4812305:0,0,0 +(1,23534:3078558,2439708:0,1703936,0 +g1,23534:29030814,2439708 +g1,23534:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23534:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23536:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23534:37855564,2439708:1179648,16384,0 ) ) -k1,23536:3078556,2439708:-34777008 +k1,23534:3078556,2439708:-34777008 ) ] -[1,23536:3078558,4812305:0,0,0 -(1,23536:3078558,49800853:0,16384,2228224 -k1,23536:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23536:2537886,49800853:1179648,16384,0 +[1,23534:3078558,4812305:0,0,0 +(1,23534:3078558,49800853:0,16384,2228224 +k1,23534:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23534:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23536:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23534:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23536:3078558,4812305:0,0,0 -(1,23536:3078558,49800853:0,16384,2228224 -g1,23536:29030814,49800853 -g1,23536:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23536:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23536:37855564,49800853:1179648,16384,0 +[1,23534:3078558,4812305:0,0,0 +(1,23534:3078558,49800853:0,16384,2228224 +g1,23534:29030814,49800853 +g1,23534:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23534:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23534:37855564,49800853:1179648,16384,0 ) ) -k1,23536:3078556,49800853:-34777008 +k1,23534:3078556,49800853:-34777008 ) -] -g1,23536:6630773,4812305 -k1,23536:21114230,4812305:13288080 -g1,23536:22736901,4812305 -g1,23536:23350318,4812305 -g1,23536:24759997,4812305 -g1,23536:28372341,4812305 -g1,23536:30105768,4812305 -) -) -] -[1,23536:6630773,45706769:25952256,40108032,0 -(1,23536:6630773,45706769:25952256,40108032,0 -(1,23536:6630773,45706769:0,0,0 -g1,23536:6630773,45706769 -) -[1,23536:6630773,45706769:25952256,40108032,0 -v1,23478:6630773,6254097:0,393216,0 -(1,23478:6630773,18711140:25952256,12850259,0 -g1,23478:6630773,18711140 -g1,23478:6237557,18711140 -r1,23536:6368629,18711140:131072,12850259,0 -g1,23478:6567858,18711140 -g1,23478:6764466,18711140 -[1,23478:6764466,18711140:25818563,12850259,0 -v1,23464:6764466,6254097:0,393216,0 -(1,23472:6764466,7999224:25818563,2138343,196608 -g1,23472:6764466,7999224 -g1,23472:6764466,7999224 -g1,23472:6567858,7999224 -(1,23472:6567858,7999224:0,2138343,196608 -r1,23536:32779637,7999224:26211779,2334951,196608 -k1,23472:6567857,7999224:-26211780 -) -(1,23472:6567858,7999224:26211779,2138343,196608 -[1,23472:6764466,7999224:25818563,1941735,0 -(1,23466:6764466,6488534:25818563,431045,86428 -(1,23465:6764466,6488534:0,0,0 -g1,23465:6764466,6488534 -g1,23465:6764466,6488534 -g1,23465:6436786,6488534 -(1,23465:6436786,6488534:0,0,0 -) -g1,23465:6764466,6488534 -) -k1,23466:6764466,6488534:0 -g1,23466:11411821,6488534 -g1,23466:12075729,6488534 -g1,23466:13071591,6488534 -g1,23466:14067453,6488534 -g1,23466:14731361,6488534 -g1,23466:15727223,6488534 -g1,23466:16723085,6488534 -g1,23466:17386993,6488534 -g1,23466:18382855,6488534 -g1,23466:19378717,6488534 -g1,23466:20042625,6488534 -h1,23466:20706533,6488534:0,0,0 -k1,23466:32583029,6488534:11876496 -g1,23466:32583029,6488534 -) -(1,23471:6764466,7304461:25818563,424439,9908 -(1,23468:6764466,7304461:0,0,0 -g1,23468:6764466,7304461 -g1,23468:6764466,7304461 -g1,23468:6436786,7304461 -(1,23468:6436786,7304461:0,0,0 -) -g1,23468:6764466,7304461 -) -g1,23471:7760328,7304461 -g1,23471:8092282,7304461 -g1,23471:8424236,7304461 -g1,23471:9420098,7304461 -g1,23471:10415960,7304461 -g1,23471:11411822,7304461 -h1,23471:12075730,7304461:0,0,0 -k1,23471:32583030,7304461:20507300 -g1,23471:32583030,7304461 -) -(1,23471:6764466,7989316:25818563,407923,9908 -h1,23471:6764466,7989316:0,0,0 -g1,23471:7760328,7989316 -g1,23471:8424236,7989316 -g1,23471:8756190,7989316 -g1,23471:9420098,7989316 -g1,23471:9752052,7989316 -g1,23471:10415960,7989316 -g1,23471:10747914,7989316 -g1,23471:11411822,7989316 -g1,23471:11743776,7989316 -h1,23471:12075730,7989316:0,0,0 -k1,23471:32583030,7989316:20507300 -g1,23471:32583030,7989316 -) -] -) -g1,23472:32583029,7999224 -g1,23472:6764466,7999224 -g1,23472:6764466,7999224 -g1,23472:32583029,7999224 -g1,23472:32583029,7999224 -) -h1,23472:6764466,8195832:0,0,0 -(1,23476:6764466,9060912:25818563,513147,134348 -h1,23475:6764466,9060912:983040,0,0 -k1,23475:10516075,9060912:209388 -k1,23475:12114825,9060912:209387 -k1,23475:13891834,9060912:209388 -k1,23475:14457081,9060912:209387 -k1,23475:15892648,9060912:209388 -k1,23475:17085075,9060912:209387 -k1,23475:18398745,9060912:209388 -k1,23475:20451004,9060912:209387 -k1,23475:21276430,9060912:209388 -k1,23475:22839791,9060912:209387 -k1,23475:26875171,9060912:209388 -k1,23475:29095203,9060912:209387 -k1,23475:31342761,9060912:209388 -k1,23475:32168186,9060912:209387 -k1,23476:32583029,9060912:0 -) -(1,23476:6764466,9925992:25818563,513147,134348 -k1,23475:9791902,9925992:203490 -k1,23475:12525081,9925992:203489 -k1,23475:13387863,9925992:203490 -k1,23475:13947213,9925992:203490 -k1,23475:17283323,9925992:203489 -k1,23475:18102851,9925992:203490 -k1,23475:21381290,9925992:203490 -k1,23475:22827342,9925992:203489 -k1,23475:24728870,9925992:203490 -k1,23475:25288220,9925992:203490 -k1,23475:26760482,9925992:203485 -k1,23475:27947012,9925992:203490 -k1,23475:29961916,9925992:203489 -k1,23475:31559357,9925992:203490 -k1,23476:32583029,9925992:0 -) -(1,23476:6764466,10791072:25818563,513147,134348 -k1,23475:8581830,10791072:170444 -k1,23475:9283771,10791072:170444 -k1,23475:11776156,10791072:170444 -k1,23475:14625712,10791072:170444 -k1,23475:16531549,10791072:170444 -k1,23475:18570424,10791072:170444 -k1,23475:21267936,10791072:170444 -k1,23475:23792433,10791072:170444 -k1,23475:25035046,10791072:170444 -k1,23475:26617791,10791072:170444 -k1,23475:27474397,10791072:170444 -k1,23475:28415544,10791072:170444 -k1,23475:30055961,10791072:170444 -k1,23475:32583029,10791072:0 -) -(1,23476:6764466,11656152:25818563,513147,7863 -g1,23475:9642807,11656152 -k1,23476:32583029,11656152:21904754 -g1,23476:32583029,11656152 -) -(1,23478:6764466,12521232:25818563,513147,134348 -h1,23477:6764466,12521232:983040,0,0 -k1,23477:9160613,12521232:216420 -k1,23477:11791379,12521232:216420 -k1,23477:13329660,12521232:216420 -k1,23477:14205372,12521232:216420 -k1,23477:15187908,12521232:216420 -k1,23477:17101055,12521232:216420 -k1,23477:20324267,12521232:216420 -k1,23477:21072184,12521232:216420 -k1,23477:21940032,12521232:216420 -k1,23477:24995472,12521232:216420 -k1,23477:26720531,12521232:216420 -k1,23477:28984951,12521232:216420 -k1,23477:29887533,12521232:216420 -k1,23477:32583029,12521232:0 -) -(1,23478:6764466,13386312:25818563,513147,134348 -k1,23477:10384347,13386312:217252 -k1,23477:11793044,13386312:217252 -k1,23477:14597001,13386312:217251 -k1,23477:18871587,13386312:217252 -k1,23477:21501875,13386312:217252 -k1,23477:22823409,13386312:217252 -k1,23477:23656698,13386312:217251 -k1,23477:25475650,13386312:217252 -k1,23477:27390284,13386312:217252 -k1,23477:28355302,13386312:217252 -k1,23477:30085779,13386312:217251 -k1,23477:30954459,13386312:217252 -k1,23477:32583029,13386312:0 -) -(1,23478:6764466,14251392:25818563,513147,134348 -k1,23477:7958889,14251392:175338 -k1,23477:10376870,14251392:175339 -k1,23477:13459385,14251392:175338 -k1,23477:14294016,14251392:175339 -k1,23477:15695533,14251392:175338 -k1,23477:17184214,14251392:175339 -k1,23477:18753503,14251392:175338 -k1,23477:21221291,14251392:175339 -k1,23477:26198452,14251392:175338 -k1,23477:28578422,14251392:175339 -k1,23477:29945205,14251392:175338 -k1,23477:32583029,14251392:0 -) -(1,23478:6764466,15116472:25818563,513147,126483 -k1,23477:8435240,15116472:180485 -k1,23477:9772435,15116472:180485 -k1,23477:12006164,15116472:180486 -k1,23477:13735265,15116472:180485 -k1,23477:14447247,15116472:180485 -k1,23477:17513938,15116472:180485 -k1,23477:20484292,15116472:180486 -(1,23477:20484292,15116472:0,459977,115847 -r1,23536:29635353,15116472:9151061,575824,115847 -k1,23477:20484292,15116472:-9151061 -) -(1,23477:20484292,15116472:9151061,459977,115847 -k1,23477:20484292,15116472:3277 -h1,23477:29632076,15116472:0,411205,112570 -) -k1,23477:29815838,15116472:180485 -k1,23477:31563944,15116472:180485 -k1,23478:32583029,15116472:0 -) -(1,23478:6764466,15981552:25818563,505283,134348 -k1,23477:7357750,15981552:178441 -k1,23477:9456415,15981552:178461 -k1,23477:12388699,15981552:178461 -k1,23477:14452631,15981552:178461 -k1,23477:15162589,15981552:178461 -k1,23477:16407322,15981552:178462 -k1,23477:19600439,15981552:178461 -k1,23477:20851069,15981552:178461 -k1,23477:23813499,15981552:178461 -k1,23477:24607998,15981552:178461 -k1,23477:26774822,15981552:178462 -k1,23477:28144728,15981552:178461 -k1,23477:30667412,15981552:178461 -k1,23477:32583029,15981552:0 -) -(1,23478:6764466,16846632:25818563,513147,126483 -k1,23477:9644401,16846632:233591 -k1,23477:10545149,16846632:233592 -k1,23477:11367253,16846632:233591 -k1,23477:12705126,16846632:233591 -k1,23477:13686484,16846632:233592 -k1,23477:15433301,16846632:233591 -k1,23477:16318320,16846632:233591 -k1,23477:17743357,16846632:233592 -k1,23477:19290290,16846632:233591 -k1,23477:20471532,16846632:233591 -k1,23477:21724209,16846632:233592 -k1,23477:24787645,16846632:233591 -k1,23477:25830606,16846632:233591 -k1,23477:29225620,16846632:233557 -k1,23477:32583029,16846632:0 -) -(1,23478:6764466,17711712:25818563,513147,134348 -k1,23477:8316171,17711712:192488 -k1,23477:11204156,17711712:192489 -k1,23477:13079609,17711712:192488 -k1,23477:13958260,17711712:192489 -k1,23477:14921451,17711712:192488 -k1,23477:18186268,17711712:192489 -k1,23477:19397841,17711712:192488 -k1,23477:21038676,17711712:192489 -k1,23477:21882592,17711712:192488 -k1,23477:22430941,17711712:192489 -k1,23477:23780139,17711712:192488 -k1,23477:25164073,17711712:192489 -k1,23477:26144959,17711712:192488 -k1,23477:29887533,17711712:192489 -k1,23478:32583029,17711712:0 -) -(1,23478:6764466,18576792:25818563,473825,134348 -(1,23477:6764466,18576792:0,452978,115847 -r1,23536:14508680,18576792:7744214,568825,115847 -k1,23477:6764466,18576792:-7744214 -) -(1,23477:6764466,18576792:7744214,452978,115847 -k1,23477:6764466,18576792:3277 -h1,23477:14505403,18576792:0,411205,112570 -) -g1,23477:14707909,18576792 -g1,23477:15262998,18576792 -(1,23477:15262998,18576792:0,452978,115847 -r1,23536:18434958,18576792:3171960,568825,115847 -k1,23477:15262998,18576792:-3171960 -) -(1,23477:15262998,18576792:3171960,452978,115847 -k1,23477:15262998,18576792:3277 -h1,23477:18431681,18576792:0,411205,112570 -) -g1,23477:18634187,18576792 -k1,23478:32583029,18576792:12030604 -g1,23478:32583029,18576792 -) -] -g1,23478:32583029,18711140 -) -h1,23478:6630773,18711140:0,0,0 -(1,23480:6630773,20827958:25952256,555811,12975 -(1,23480:6630773,20827958:2899444,534184,12975 -g1,23480:6630773,20827958 -g1,23480:9530217,20827958 -) -g1,23480:11399501,20827958 -g1,23480:12121839,20827958 -g1,23480:13689067,20827958 -k1,23480:32583030,20827958:16869688 -g1,23480:32583030,20827958 -) -(1,23483:6630773,22086254:25952256,513147,134348 -k1,23482:8192697,22086254:179770 -k1,23482:9685809,22086254:179770 -k1,23482:13227576,22086254:179770 -k1,23482:14796709,22086254:179770 -k1,23482:15592517,22086254:179770 -k1,23482:18485478,22086254:179770 -k1,23482:19769531,22086254:179771 -k1,23482:20697067,22086254:179770 -k1,23482:23245964,22086254:179770 -k1,23482:24693200,22086254:179770 -k1,23482:26045409,22086254:179770 -k1,23482:28085091,22086254:179770 -k1,23482:30661513,22086254:179770 -k1,23482:32583029,22086254:0 -) -(1,23483:6630773,22951334:25952256,513147,7863 -k1,23482:8203816,22951334:205306 -k1,23482:12000496,22951334:205307 -k1,23482:13939885,22951334:205306 -k1,23482:15336636,22951334:205306 -k1,23482:17285855,22951334:205306 -k1,23482:18885113,22951334:205307 -k1,23482:22110973,22951334:205306 -k1,23482:24224032,22951334:205306 -k1,23482:28150472,22951334:205306 -k1,23482:30089862,22951334:205307 -k1,23482:31799219,22951334:205306 -k1,23483:32583029,22951334:0 -) -(1,23483:6630773,23816414:25952256,513147,134348 -k1,23482:9356814,23816414:295966 -k1,23482:12430195,23816414:295965 -k1,23482:13342199,23816414:295966 -k1,23482:14657250,23816414:295966 -k1,23482:16511006,23816414:295965 -k1,23482:18274978,23816414:295966 -k1,23482:19238100,23816414:295966 -k1,23482:22574839,23816414:295868 -k1,23482:24062250,23816414:295966 -k1,23482:26556197,23816414:295869 -k1,23482:28550200,23816414:295965 -k1,23482:30235529,23816414:295966 -k1,23482:32583029,23816414:0 -) -(1,23483:6630773,24681494:25952256,513147,134348 -k1,23482:9518945,24681494:269353 -k1,23482:10995471,24681494:269353 -k1,23482:12618797,24681494:269352 -k1,23482:15314293,24681494:269353 -k1,23482:17457976,24681494:269353 -k1,23482:20238013,24681494:269353 -k1,23482:21498926,24681494:269353 -k1,23482:25073260,24681494:269353 -k1,23482:27761546,24681494:269352 -k1,23482:28690191,24681494:269353 -k1,23482:31860823,24681494:269353 -k1,23483:32583029,24681494:0 -) -(1,23483:6630773,25546574:25952256,513147,134348 -k1,23482:10080529,25546574:258808 -k1,23482:12074729,25546574:258807 -k1,23482:14102354,25546574:258808 -k1,23482:17666142,25546574:258807 -k1,23482:19367397,25546574:258808 -k1,23482:21324242,25546574:258807 -k1,23482:24603604,25546574:258808 -k1,23482:26596494,25546574:258807 -k1,23482:27846862,25546574:258808 -k1,23482:29792566,25546574:258807 -k1,23482:31248061,25546574:258808 -k1,23482:32583029,25546574:0 -) -(1,23483:6630773,26411654:25952256,513147,134348 -k1,23482:8091511,26411654:248977 -k1,23482:8999780,26411654:248977 -k1,23482:13903779,26411654:248977 -k1,23482:15171841,26411654:248977 -k1,23482:18937480,26411654:248977 -k1,23482:19717955,26411654:248978 -k1,23482:21360883,26411654:248977 -k1,23482:24775249,26411654:248977 -k1,23482:27987109,26411654:248977 -k1,23482:28852124,26411654:248977 -k1,23482:30304342,26411654:248977 -k1,23482:32583029,26411654:0 -) -(1,23483:6630773,27276734:25952256,513147,134348 -k1,23482:7723867,27276734:250956 -k1,23482:11107444,27276734:250956 -k1,23482:12377485,27276734:250956 -k1,23482:13720926,27276734:250956 -k1,23482:14631174,27276734:250956 -k1,23482:17907927,27276734:250956 -k1,23482:18920412,27276734:250957 -k1,23482:21598822,27276734:250956 -k1,23482:22205638,27276734:250956 -k1,23482:23439634,27276734:250956 -k1,23482:25428605,27276734:250956 -k1,23482:26365723,27276734:250956 -k1,23482:27387382,27276734:250956 -k1,23482:30884336,27276734:250956 -k1,23482:32583029,27276734:0 -) -(1,23483:6630773,28141814:25952256,513147,134348 -g1,23482:8021447,28141814 -g1,23482:9798128,28141814 -g1,23482:10980397,28141814 -g1,23482:14791970,28141814 -g1,23482:15982759,28141814 -g1,23482:17467804,28141814 -g1,23482:20483115,28141814 -g1,23482:21914421,28141814 -g1,23482:24392337,28141814 -h1,23482:25761384,28141814:0,0,0 -g1,23482:25960613,28141814 -g1,23482:26969212,28141814 -g1,23482:28666594,28141814 -h1,23482:29861971,28141814:0,0,0 -k1,23483:32583029,28141814:2461536 -g1,23483:32583029,28141814 -) -v1,23485:6630773,29006894:0,393216,0 -(1,23486:6630773,33819954:25952256,5206276,0 -g1,23486:6630773,33819954 -g1,23486:6237557,33819954 -r1,23536:6368629,33819954:131072,5206276,0 -g1,23486:6567858,33819954 -g1,23486:6764466,33819954 -[1,23486:6764466,33819954:25818563,5206276,0 -(1,23486:6764466,29368071:25818563,754393,260573 -(1,23485:6764466,29368071:0,754393,260573 -r1,23536:7856192,29368071:1091726,1014966,260573 -k1,23485:6764466,29368071:-1091726 -) -(1,23485:6764466,29368071:1091726,754393,260573 -) -k1,23485:8082302,29368071:226110 -k1,23485:8409982,29368071:327680 -k1,23485:10897083,29368071:226109 -k1,23485:13836384,29368071:226110 -k1,23485:17424490,29368071:226109 -k1,23485:20625279,29368071:226110 -k1,23485:23047500,29368071:226110 -k1,23485:24558115,29368071:226109 -k1,23485:26954777,29368071:226110 -k1,23485:27928652,29368071:226109 -k1,23485:31315563,29368071:226110 -k1,23485:32583029,29368071:0 -) -(1,23486:6764466,30233151:25818563,513147,134348 -k1,23485:9761973,30233151:181425 -k1,23485:10934959,30233151:181426 -k1,23485:14277185,30233151:181425 -k1,23485:15726077,30233151:181426 -k1,23485:18131794,30233151:181425 -k1,23485:18996105,30233151:181426 -k1,23485:21405099,30233151:181425 -k1,23485:22272687,30233151:181426 -k1,23485:25428791,30233151:181425 -k1,23485:27806328,30233151:181426 -k1,23485:28603791,30233151:181425 -k1,23485:29804302,30233151:181426 -k1,23485:32583029,30233151:0 -) -(1,23486:6764466,31098231:25818563,513147,126483 -k1,23485:8365289,31098231:211460 -k1,23485:10453045,31098231:211460 -k1,23485:13366554,31098231:211460 -k1,23485:14387384,31098231:211460 -k1,23485:15617929,31098231:211460 -k1,23485:17509732,31098231:211460 -k1,23485:19926479,31098231:211460 -k1,23485:20789367,31098231:211460 -k1,23485:24281559,31098231:211460 -(1,23485:24281559,31098231:0,452978,122846 -r1,23536:29915502,31098231:5633943,575824,122846 -k1,23485:24281559,31098231:-5633943 -) -(1,23485:24281559,31098231:5633943,452978,122846 -k1,23485:24281559,31098231:3277 -h1,23485:29912225,31098231:0,411205,112570 -) -k1,23485:30300632,31098231:211460 -k1,23485:31708779,31098231:211460 -k1,23486:32583029,31098231:0 -) -(1,23486:6764466,31963311:25818563,513147,134348 -k1,23485:8491559,31963311:229595 -k1,23485:11382572,31963311:229596 -k1,23485:12228205,31963311:229595 -k1,23485:12872613,31963311:229565 -k1,23485:15435945,31963311:229595 -k1,23485:17208259,31963311:229596 -k1,23485:19005475,31963311:229595 -(1,23485:19005475,31963311:0,414482,115847 -r1,23536:20418876,31963311:1413401,530329,115847 -k1,23485:19005475,31963311:-1413401 -) -(1,23485:19005475,31963311:1413401,414482,115847 -k1,23485:19005475,31963311:3277 -h1,23485:20415599,31963311:0,411205,112570 -) -k1,23485:20648471,31963311:229595 -k1,23485:22145533,31963311:229596 -(1,23485:22145533,31963311:0,414482,115847 -r1,23536:23910646,31963311:1765113,530329,115847 -k1,23485:22145533,31963311:-1765113 -) -(1,23485:22145533,31963311:1765113,414482,115847 -k1,23485:22145533,31963311:3277 -h1,23485:23907369,31963311:0,411205,112570 -) -k1,23485:24313911,31963311:229595 -k1,23485:25021264,31963311:229596 -k1,23485:26747046,31963311:229595 -k1,23485:27508138,31963311:229595 -k1,23485:28389162,31963311:229596 -k1,23485:30215214,31963311:229595 -k1,23486:32583029,31963311:0 -) -(1,23486:6764466,32828391:25818563,513147,126483 -k1,23485:8618372,32828391:268590 -k1,23485:9503000,32828391:268590 -k1,23485:10791986,32828391:268590 -k1,23485:12252021,32828391:268590 -k1,23485:13803806,32828391:268590 -k1,23485:16736435,32828391:268590 -k1,23485:17672181,32828391:268590 -k1,23485:18355545,32828391:268521 -(1,23485:18355545,32828391:0,452978,122846 -r1,23536:26803183,32828391:8447638,575824,122846 -k1,23485:18355545,32828391:-8447638 -) -(1,23485:18355545,32828391:8447638,452978,122846 -g1,23485:24337923,32828391 -g1,23485:25041347,32828391 -h1,23485:26799906,32828391:0,411205,112570 -) -k1,23485:27071773,32828391:268590 -k1,23485:28441368,32828391:268590 -k1,23485:29361386,32828391:268590 -k1,23485:30377742,32828391:268590 -k1,23485:32583029,32828391:0 -) -(1,23486:6764466,33693471:25818563,505283,126483 -g1,23485:9861042,33693471 -g1,23485:10676309,33693471 -g1,23485:12305534,33693471 -g1,23485:13156191,33693471 -(1,23485:13156191,33693471:0,452978,115847 -r1,23536:15976440,33693471:2820249,568825,115847 -k1,23485:13156191,33693471:-2820249 -) -(1,23485:13156191,33693471:2820249,452978,115847 -k1,23485:13156191,33693471:3277 -h1,23485:15973163,33693471:0,411205,112570 -) -g1,23485:16175669,33693471 -g1,23485:17601077,33693471 -g1,23485:20784816,33693471 -g1,23485:22497271,33693471 -g1,23485:23312538,33693471 -g1,23485:24530852,33693471 -k1,23486:32583029,33693471:6210616 -g1,23486:32583029,33693471 -) -] -g1,23486:32583029,33819954 -) -h1,23486:6630773,33819954:0,0,0 -(1,23489:6630773,34685034:25952256,513147,126483 -h1,23488:6630773,34685034:983040,0,0 -k1,23488:8423510,34685034:181862 -k1,23488:9624458,34685034:181863 -k1,23488:11112453,34685034:181862 -k1,23488:13955732,34685034:181862 -k1,23488:14493455,34685034:181863 -k1,23488:15658357,34685034:181862 -k1,23488:17234170,34685034:181862 -k1,23488:19150115,34685034:181862 -k1,23488:21175506,34685034:181863 -k1,23488:24377922,34685034:181862 -k1,23488:25321312,34685034:181862 -k1,23488:26277155,34685034:181863 -k1,23488:26990514,34685034:181862 -k1,23488:28758347,34685034:181862 -k1,23488:30321054,34685034:181863 -k1,23488:31034413,34685034:181862 -k1,23488:32583029,34685034:0 -) -(1,23489:6630773,35550114:25952256,513147,126483 -k1,23488:7379076,35550114:216806 -k1,23488:9463659,35550114:216807 -k1,23488:17564446,35550114:216806 -k1,23488:19464200,35550114:216789 -k1,23488:21861389,35550114:216806 -k1,23488:23362701,35550114:216806 -k1,23488:24683790,35550114:216807 -k1,23488:25648362,35550114:216806 -k1,23488:27277469,35550114:216806 -k1,23488:28685721,35550114:216807 -k1,23488:31189078,35550114:216806 -k1,23489:32583029,35550114:0 -) -(1,23489:6630773,36415194:25952256,505283,126483 -(1,23488:6630773,36415194:0,452978,115847 -r1,23536:10154445,36415194:3523672,568825,115847 -k1,23488:6630773,36415194:-3523672 -) -(1,23488:6630773,36415194:3523672,452978,115847 -k1,23488:6630773,36415194:3277 -h1,23488:10151168,36415194:0,411205,112570 -) -g1,23488:10353674,36415194 -g1,23488:11744348,36415194 -(1,23488:11744348,36415194:0,452978,115847 -r1,23536:15619732,36415194:3875384,568825,115847 -k1,23488:11744348,36415194:-3875384 -) -(1,23488:11744348,36415194:3875384,452978,115847 -k1,23488:11744348,36415194:3277 -h1,23488:15616455,36415194:0,411205,112570 -) -g1,23488:15992631,36415194 -k1,23489:32583029,36415194:12741469 -g1,23489:32583029,36415194 -) -(1,23491:6630773,37280274:25952256,513147,122846 -h1,23490:6630773,37280274:983040,0,0 -g1,23490:9009729,37280274 -g1,23490:11958193,37280274 -g1,23490:12816714,37280274 -g1,23490:13998983,37280274 -(1,23490:13998983,37280274:0,452978,122846 -r1,23536:22446620,37280274:8447637,575824,122846 -k1,23490:13998983,37280274:-8447637 -) -(1,23490:13998983,37280274:8447637,452978,122846 -k1,23490:13998983,37280274:3277 -h1,23490:22443343,37280274:0,411205,112570 -) -g1,23490:22645849,37280274 -g1,23490:23836638,37280274 -g1,23490:26111392,37280274 -k1,23491:32583029,37280274:4550777 -g1,23491:32583029,37280274 -) -v1,23493:6630773,37965129:0,393216,0 -(1,23499:6630773,39649098:25952256,2077185,196608 -g1,23499:6630773,39649098 -g1,23499:6630773,39649098 -g1,23499:6434165,39649098 -(1,23499:6434165,39649098:0,2077185,196608 -r1,23536:32779637,39649098:26345472,2273793,196608 -k1,23499:6434165,39649098:-26345472 -) -(1,23499:6434165,39649098:26345472,2077185,196608 -[1,23499:6630773,39649098:25952256,1880577,0 -(1,23498:6630773,38192960:25952256,424439,86428 -(1,23494:6630773,38192960:0,0,0 -g1,23494:6630773,38192960 -g1,23494:6630773,38192960 -g1,23494:6303093,38192960 -(1,23494:6303093,38192960:0,0,0 -) -g1,23494:6630773,38192960 -) -k1,23498:6630773,38192960:0 -k1,23498:6630773,38192960:0 -h1,23498:12937899,38192960:0,0,0 -k1,23498:32583029,38192960:19645130 -g1,23498:32583029,38192960 -) -(1,23498:6630773,38877815:25952256,407923,86428 -h1,23498:6630773,38877815:0,0,0 -k1,23498:6630773,38877815:0 -h1,23498:11942037,38877815:0,0,0 -k1,23498:32583029,38877815:20640992 -g1,23498:32583029,38877815 -) -(1,23498:6630773,39562670:25952256,407923,86428 -h1,23498:6630773,39562670:0,0,0 -g1,23498:11610083,39562670 -h1,23498:11942037,39562670:0,0,0 -k1,23498:32583029,39562670:20640992 -g1,23498:32583029,39562670 -) -] -) -g1,23499:32583029,39649098 -g1,23499:6630773,39649098 -g1,23499:6630773,39649098 -g1,23499:32583029,39649098 -g1,23499:32583029,39649098 -) -h1,23499:6630773,39845706:0,0,0 -(1,23503:6630773,40710786:25952256,513147,115847 -h1,23502:6630773,40710786:983040,0,0 -k1,23502:8951266,40710786:140766 -k1,23502:10075072,40710786:140766 -k1,23502:10747335,40710786:140766 -k1,23502:12300402,40710786:140766 -k1,23502:13632613,40710786:140766 -k1,23502:14792464,40710786:140766 -k1,23502:17711956,40710786:140765 -k1,23502:19533065,40710786:140766 -k1,23502:21712001,40710786:140766 -k1,23502:22468805,40710786:140766 -k1,23502:22965431,40710786:140766 -k1,23502:25617537,40710786:140766 -k1,23502:27917059,40710786:140766 -(1,23502:27917059,40710786:0,459977,115847 -r1,23536:32495867,40710786:4578808,575824,115847 -k1,23502:27917059,40710786:-4578808 -) -(1,23502:27917059,40710786:4578808,459977,115847 -k1,23502:27917059,40710786:3277 -h1,23502:32492590,40710786:0,411205,112570 -) -k1,23502:32583029,40710786:0 -) -(1,23503:6630773,41575866:25952256,505283,126483 -g1,23502:8021447,41575866 -k1,23503:32583028,41575866:22159032 -g1,23503:32583028,41575866 -) -v1,23505:6630773,42260721:0,393216,0 -(1,23510:6630773,43292865:25952256,1425360,196608 -g1,23510:6630773,43292865 -g1,23510:6630773,43292865 -g1,23510:6434165,43292865 -(1,23510:6434165,43292865:0,1425360,196608 -r1,23536:32779637,43292865:26345472,1621968,196608 -k1,23510:6434165,43292865:-26345472 -) -(1,23510:6434165,43292865:26345472,1425360,196608 -[1,23510:6630773,43292865:25952256,1228752,0 -(1,23507:6630773,42495158:25952256,431045,52847 -(1,23506:6630773,42495158:0,0,0 -g1,23506:6630773,42495158 -g1,23506:6630773,42495158 -g1,23506:6303093,42495158 -(1,23506:6303093,42495158:0,0,0 -) -g1,23506:6630773,42495158 -) -g1,23507:11278128,42495158 -k1,23507:11278128,42495158:0 -h1,23507:11942036,42495158:0,0,0 -k1,23507:32583028,42495158:20640992 -g1,23507:32583028,42495158 -) -(1,23508:6630773,43180013:25952256,424439,112852 -h1,23508:6630773,43180013:0,0,0 -g1,23508:6962727,43180013 -g1,23508:7294681,43180013 -g1,23508:22232607,43180013 -g1,23508:27875824,43180013 -g1,23508:28539732,43180013 -h1,23508:30531456,43180013:0,0,0 -k1,23508:32583029,43180013:2051573 -g1,23508:32583029,43180013 -) -] -) -g1,23510:32583029,43292865 -g1,23510:6630773,43292865 -g1,23510:6630773,43292865 -g1,23510:32583029,43292865 -g1,23510:32583029,43292865 -) -h1,23510:6630773,43489473:0,0,0 -v1,23514:6630773,44174328:0,393216,0 -(1,23536:6630773,45234600:25952256,1453488,196608 -g1,23536:6630773,45234600 -g1,23536:6630773,45234600 -g1,23536:6434165,45234600 -(1,23536:6434165,45234600:0,1453488,196608 -r1,23536:32779637,45234600:26345472,1650096,196608 -k1,23536:6434165,45234600:-26345472 -) -(1,23536:6434165,45234600:26345472,1453488,196608 -[1,23536:6630773,45234600:25952256,1256880,0 -(1,23516:6630773,44408765:25952256,431045,52847 -(1,23515:6630773,44408765:0,0,0 -g1,23515:6630773,44408765 -g1,23515:6630773,44408765 -g1,23515:6303093,44408765 -(1,23515:6303093,44408765:0,0,0 -) -g1,23515:6630773,44408765 -) -h1,23516:10946174,44408765:0,0,0 -k1,23516:32583030,44408765:21636856 -g1,23516:32583030,44408765 -) -(1,23522:6630773,45224692:25952256,424439,9908 -(1,23518:6630773,45224692:0,0,0 -g1,23518:6630773,45224692 -g1,23518:6630773,45224692 -g1,23518:6303093,45224692 -(1,23518:6303093,45224692:0,0,0 -) -g1,23518:6630773,45224692 -) -g1,23522:7626635,45224692 -g1,23522:7958589,45224692 -g1,23522:8290543,45224692 -g1,23522:9950313,45224692 -g1,23522:11610083,45224692 -g1,23522:13269853,45224692 -h1,23522:14597669,45224692:0,0,0 -k1,23522:32583029,45224692:17985360 -g1,23522:32583029,45224692 +] +g1,23534:6630773,4812305 +k1,23534:21114230,4812305:13288080 +g1,23534:22736901,4812305 +g1,23534:23350318,4812305 +g1,23534:24759997,4812305 +g1,23534:28372341,4812305 +g1,23534:30105768,4812305 +) +) +] +[1,23534:6630773,45706769:25952256,40108032,0 +(1,23534:6630773,45706769:25952256,40108032,0 +(1,23534:6630773,45706769:0,0,0 +g1,23534:6630773,45706769 +) +[1,23534:6630773,45706769:25952256,40108032,0 +v1,23476:6630773,6254097:0,393216,0 +(1,23476:6630773,18711140:25952256,12850259,0 +g1,23476:6630773,18711140 +g1,23476:6237557,18711140 +r1,23534:6368629,18711140:131072,12850259,0 +g1,23476:6567858,18711140 +g1,23476:6764466,18711140 +[1,23476:6764466,18711140:25818563,12850259,0 +v1,23462:6764466,6254097:0,393216,0 +(1,23470:6764466,7999224:25818563,2138343,196608 +g1,23470:6764466,7999224 +g1,23470:6764466,7999224 +g1,23470:6567858,7999224 +(1,23470:6567858,7999224:0,2138343,196608 +r1,23534:32779637,7999224:26211779,2334951,196608 +k1,23470:6567857,7999224:-26211780 +) +(1,23470:6567858,7999224:26211779,2138343,196608 +[1,23470:6764466,7999224:25818563,1941735,0 +(1,23464:6764466,6488534:25818563,431045,86428 +(1,23463:6764466,6488534:0,0,0 +g1,23463:6764466,6488534 +g1,23463:6764466,6488534 +g1,23463:6436786,6488534 +(1,23463:6436786,6488534:0,0,0 +) +g1,23463:6764466,6488534 +) +k1,23464:6764466,6488534:0 +g1,23464:11411821,6488534 +g1,23464:12075729,6488534 +g1,23464:13071591,6488534 +g1,23464:14067453,6488534 +g1,23464:14731361,6488534 +g1,23464:15727223,6488534 +g1,23464:16723085,6488534 +g1,23464:17386993,6488534 +g1,23464:18382855,6488534 +g1,23464:19378717,6488534 +g1,23464:20042625,6488534 +h1,23464:20706533,6488534:0,0,0 +k1,23464:32583029,6488534:11876496 +g1,23464:32583029,6488534 +) +(1,23469:6764466,7304461:25818563,424439,9908 +(1,23466:6764466,7304461:0,0,0 +g1,23466:6764466,7304461 +g1,23466:6764466,7304461 +g1,23466:6436786,7304461 +(1,23466:6436786,7304461:0,0,0 +) +g1,23466:6764466,7304461 +) +g1,23469:7760328,7304461 +g1,23469:8092282,7304461 +g1,23469:8424236,7304461 +g1,23469:9420098,7304461 +g1,23469:10415960,7304461 +g1,23469:11411822,7304461 +h1,23469:12075730,7304461:0,0,0 +k1,23469:32583030,7304461:20507300 +g1,23469:32583030,7304461 +) +(1,23469:6764466,7989316:25818563,407923,9908 +h1,23469:6764466,7989316:0,0,0 +g1,23469:7760328,7989316 +g1,23469:8424236,7989316 +g1,23469:8756190,7989316 +g1,23469:9420098,7989316 +g1,23469:9752052,7989316 +g1,23469:10415960,7989316 +g1,23469:10747914,7989316 +g1,23469:11411822,7989316 +g1,23469:11743776,7989316 +h1,23469:12075730,7989316:0,0,0 +k1,23469:32583030,7989316:20507300 +g1,23469:32583030,7989316 +) +] +) +g1,23470:32583029,7999224 +g1,23470:6764466,7999224 +g1,23470:6764466,7999224 +g1,23470:32583029,7999224 +g1,23470:32583029,7999224 +) +h1,23470:6764466,8195832:0,0,0 +(1,23474:6764466,9060912:25818563,513147,134348 +h1,23473:6764466,9060912:983040,0,0 +k1,23473:10516075,9060912:209388 +k1,23473:12114825,9060912:209387 +k1,23473:13891834,9060912:209388 +k1,23473:14457081,9060912:209387 +k1,23473:15892648,9060912:209388 +k1,23473:17085075,9060912:209387 +k1,23473:18398745,9060912:209388 +k1,23473:20451004,9060912:209387 +k1,23473:21276430,9060912:209388 +k1,23473:22839791,9060912:209387 +k1,23473:26875171,9060912:209388 +k1,23473:29095203,9060912:209387 +k1,23473:31342761,9060912:209388 +k1,23473:32168186,9060912:209387 +k1,23474:32583029,9060912:0 +) +(1,23474:6764466,9925992:25818563,513147,134348 +k1,23473:9791902,9925992:203490 +k1,23473:12525081,9925992:203489 +k1,23473:13387863,9925992:203490 +k1,23473:13947213,9925992:203490 +k1,23473:17283323,9925992:203489 +k1,23473:18102851,9925992:203490 +k1,23473:21381290,9925992:203490 +k1,23473:22827342,9925992:203489 +k1,23473:24728870,9925992:203490 +k1,23473:25288220,9925992:203490 +k1,23473:26760482,9925992:203485 +k1,23473:27947012,9925992:203490 +k1,23473:29961916,9925992:203489 +k1,23473:31559357,9925992:203490 +k1,23474:32583029,9925992:0 +) +(1,23474:6764466,10791072:25818563,513147,134348 +k1,23473:8581830,10791072:170444 +k1,23473:9283771,10791072:170444 +k1,23473:11776156,10791072:170444 +k1,23473:14625712,10791072:170444 +k1,23473:16531549,10791072:170444 +k1,23473:18570424,10791072:170444 +k1,23473:21267936,10791072:170444 +k1,23473:23792433,10791072:170444 +k1,23473:25035046,10791072:170444 +k1,23473:26617791,10791072:170444 +k1,23473:27474397,10791072:170444 +k1,23473:28415544,10791072:170444 +k1,23473:30055961,10791072:170444 +k1,23473:32583029,10791072:0 +) +(1,23474:6764466,11656152:25818563,513147,7863 +g1,23473:9642807,11656152 +k1,23474:32583029,11656152:21904754 +g1,23474:32583029,11656152 +) +(1,23476:6764466,12521232:25818563,513147,134348 +h1,23475:6764466,12521232:983040,0,0 +k1,23475:9160613,12521232:216420 +k1,23475:11791379,12521232:216420 +k1,23475:13329660,12521232:216420 +k1,23475:14205372,12521232:216420 +k1,23475:15187908,12521232:216420 +k1,23475:17101055,12521232:216420 +k1,23475:20324267,12521232:216420 +k1,23475:21072184,12521232:216420 +k1,23475:21940032,12521232:216420 +k1,23475:24995472,12521232:216420 +k1,23475:26720531,12521232:216420 +k1,23475:28984951,12521232:216420 +k1,23475:29887533,12521232:216420 +k1,23475:32583029,12521232:0 +) +(1,23476:6764466,13386312:25818563,513147,134348 +k1,23475:10384347,13386312:217252 +k1,23475:11793044,13386312:217252 +k1,23475:14597001,13386312:217251 +k1,23475:18871587,13386312:217252 +k1,23475:21501875,13386312:217252 +k1,23475:22823409,13386312:217252 +k1,23475:23656698,13386312:217251 +k1,23475:25475650,13386312:217252 +k1,23475:27390284,13386312:217252 +k1,23475:28355302,13386312:217252 +k1,23475:30085779,13386312:217251 +k1,23475:30954459,13386312:217252 +k1,23475:32583029,13386312:0 +) +(1,23476:6764466,14251392:25818563,513147,134348 +k1,23475:7958889,14251392:175338 +k1,23475:10376870,14251392:175339 +k1,23475:13459385,14251392:175338 +k1,23475:14294016,14251392:175339 +k1,23475:15695533,14251392:175338 +k1,23475:17184214,14251392:175339 +k1,23475:18753503,14251392:175338 +k1,23475:21221291,14251392:175339 +k1,23475:26198452,14251392:175338 +k1,23475:28578422,14251392:175339 +k1,23475:29945205,14251392:175338 +k1,23475:32583029,14251392:0 +) +(1,23476:6764466,15116472:25818563,513147,126483 +k1,23475:8435240,15116472:180485 +k1,23475:9772435,15116472:180485 +k1,23475:12006164,15116472:180486 +k1,23475:13735265,15116472:180485 +k1,23475:14447247,15116472:180485 +k1,23475:17513938,15116472:180485 +k1,23475:20484292,15116472:180486 +(1,23475:20484292,15116472:0,459977,115847 +r1,23534:29635353,15116472:9151061,575824,115847 +k1,23475:20484292,15116472:-9151061 +) +(1,23475:20484292,15116472:9151061,459977,115847 +k1,23475:20484292,15116472:3277 +h1,23475:29632076,15116472:0,411205,112570 +) +k1,23475:29815838,15116472:180485 +k1,23475:31563944,15116472:180485 +k1,23476:32583029,15116472:0 +) +(1,23476:6764466,15981552:25818563,505283,134348 +k1,23475:7357750,15981552:178441 +k1,23475:9456415,15981552:178461 +k1,23475:12388699,15981552:178461 +k1,23475:14452631,15981552:178461 +k1,23475:15162589,15981552:178461 +k1,23475:16407322,15981552:178462 +k1,23475:19600439,15981552:178461 +k1,23475:20851069,15981552:178461 +k1,23475:23813499,15981552:178461 +k1,23475:24607998,15981552:178461 +k1,23475:26774822,15981552:178462 +k1,23475:28144728,15981552:178461 +k1,23475:30667412,15981552:178461 +k1,23475:32583029,15981552:0 +) +(1,23476:6764466,16846632:25818563,513147,126483 +k1,23475:9644401,16846632:233591 +k1,23475:10545149,16846632:233592 +k1,23475:11367253,16846632:233591 +k1,23475:12705126,16846632:233591 +k1,23475:13686484,16846632:233592 +k1,23475:15433301,16846632:233591 +k1,23475:16318320,16846632:233591 +k1,23475:17743357,16846632:233592 +k1,23475:19290290,16846632:233591 +k1,23475:20471532,16846632:233591 +k1,23475:21724209,16846632:233592 +k1,23475:24787645,16846632:233591 +k1,23475:25830606,16846632:233591 +k1,23475:29225620,16846632:233557 +k1,23475:32583029,16846632:0 +) +(1,23476:6764466,17711712:25818563,513147,134348 +k1,23475:8316171,17711712:192488 +k1,23475:11204156,17711712:192489 +k1,23475:13079609,17711712:192488 +k1,23475:13958260,17711712:192489 +k1,23475:14921451,17711712:192488 +k1,23475:18186268,17711712:192489 +k1,23475:19397841,17711712:192488 +k1,23475:21038676,17711712:192489 +k1,23475:21882592,17711712:192488 +k1,23475:22430941,17711712:192489 +k1,23475:23780139,17711712:192488 +k1,23475:25164073,17711712:192489 +k1,23475:26144959,17711712:192488 +k1,23475:29887533,17711712:192489 +k1,23476:32583029,17711712:0 +) +(1,23476:6764466,18576792:25818563,473825,134348 +(1,23475:6764466,18576792:0,452978,115847 +r1,23534:14508680,18576792:7744214,568825,115847 +k1,23475:6764466,18576792:-7744214 +) +(1,23475:6764466,18576792:7744214,452978,115847 +k1,23475:6764466,18576792:3277 +h1,23475:14505403,18576792:0,411205,112570 +) +g1,23475:14707909,18576792 +g1,23475:15262998,18576792 +(1,23475:15262998,18576792:0,452978,115847 +r1,23534:18434958,18576792:3171960,568825,115847 +k1,23475:15262998,18576792:-3171960 +) +(1,23475:15262998,18576792:3171960,452978,115847 +k1,23475:15262998,18576792:3277 +h1,23475:18431681,18576792:0,411205,112570 +) +g1,23475:18634187,18576792 +k1,23476:32583029,18576792:12030604 +g1,23476:32583029,18576792 +) +] +g1,23476:32583029,18711140 +) +h1,23476:6630773,18711140:0,0,0 +(1,23478:6630773,20827958:25952256,555811,12975 +(1,23478:6630773,20827958:2899444,534184,12975 +g1,23478:6630773,20827958 +g1,23478:9530217,20827958 +) +g1,23478:11399501,20827958 +g1,23478:12121839,20827958 +g1,23478:13689067,20827958 +k1,23478:32583030,20827958:16869688 +g1,23478:32583030,20827958 +) +(1,23481:6630773,22086254:25952256,513147,134348 +k1,23480:8192697,22086254:179770 +k1,23480:9685809,22086254:179770 +k1,23480:13227576,22086254:179770 +k1,23480:14796709,22086254:179770 +k1,23480:15592517,22086254:179770 +k1,23480:18485478,22086254:179770 +k1,23480:19769531,22086254:179771 +k1,23480:20697067,22086254:179770 +k1,23480:23245964,22086254:179770 +k1,23480:24693200,22086254:179770 +k1,23480:26045409,22086254:179770 +k1,23480:28085091,22086254:179770 +k1,23480:30661513,22086254:179770 +k1,23480:32583029,22086254:0 +) +(1,23481:6630773,22951334:25952256,513147,7863 +k1,23480:8203816,22951334:205306 +k1,23480:12000496,22951334:205307 +k1,23480:13939885,22951334:205306 +k1,23480:15336636,22951334:205306 +k1,23480:17285855,22951334:205306 +k1,23480:18885113,22951334:205307 +k1,23480:22110973,22951334:205306 +k1,23480:24224032,22951334:205306 +k1,23480:28150472,22951334:205306 +k1,23480:30089862,22951334:205307 +k1,23480:31799219,22951334:205306 +k1,23481:32583029,22951334:0 +) +(1,23481:6630773,23816414:25952256,513147,134348 +k1,23480:9356814,23816414:295966 +k1,23480:12430195,23816414:295965 +k1,23480:13342199,23816414:295966 +k1,23480:14657250,23816414:295966 +k1,23480:16511006,23816414:295965 +k1,23480:18274978,23816414:295966 +k1,23480:19238100,23816414:295966 +k1,23480:22574839,23816414:295868 +k1,23480:24062250,23816414:295966 +k1,23480:26556197,23816414:295869 +k1,23480:28550200,23816414:295965 +k1,23480:30235529,23816414:295966 +k1,23480:32583029,23816414:0 +) +(1,23481:6630773,24681494:25952256,513147,134348 +k1,23480:9518945,24681494:269353 +k1,23480:10995471,24681494:269353 +k1,23480:12618797,24681494:269352 +k1,23480:15314293,24681494:269353 +k1,23480:17457976,24681494:269353 +k1,23480:20238013,24681494:269353 +k1,23480:21498926,24681494:269353 +k1,23480:25073260,24681494:269353 +k1,23480:27761546,24681494:269352 +k1,23480:28690191,24681494:269353 +k1,23480:31860823,24681494:269353 +k1,23481:32583029,24681494:0 +) +(1,23481:6630773,25546574:25952256,513147,134348 +k1,23480:10080529,25546574:258808 +k1,23480:12074729,25546574:258807 +k1,23480:14102354,25546574:258808 +k1,23480:17666142,25546574:258807 +k1,23480:19367397,25546574:258808 +k1,23480:21324242,25546574:258807 +k1,23480:24603604,25546574:258808 +k1,23480:26596494,25546574:258807 +k1,23480:27846862,25546574:258808 +k1,23480:29792566,25546574:258807 +k1,23480:31248061,25546574:258808 +k1,23480:32583029,25546574:0 +) +(1,23481:6630773,26411654:25952256,513147,134348 +k1,23480:8091511,26411654:248977 +k1,23480:8999780,26411654:248977 +k1,23480:13903779,26411654:248977 +k1,23480:15171841,26411654:248977 +k1,23480:18937480,26411654:248977 +k1,23480:19717955,26411654:248978 +k1,23480:21360883,26411654:248977 +k1,23480:24775249,26411654:248977 +k1,23480:27987109,26411654:248977 +k1,23480:28852124,26411654:248977 +k1,23480:30304342,26411654:248977 +k1,23480:32583029,26411654:0 +) +(1,23481:6630773,27276734:25952256,513147,134348 +k1,23480:7723867,27276734:250956 +k1,23480:11107444,27276734:250956 +k1,23480:12377485,27276734:250956 +k1,23480:13720926,27276734:250956 +k1,23480:14631174,27276734:250956 +k1,23480:17907927,27276734:250956 +k1,23480:18920412,27276734:250957 +k1,23480:21598822,27276734:250956 +k1,23480:22205638,27276734:250956 +k1,23480:23439634,27276734:250956 +k1,23480:25428605,27276734:250956 +k1,23480:26365723,27276734:250956 +k1,23480:27387382,27276734:250956 +k1,23480:30884336,27276734:250956 +k1,23480:32583029,27276734:0 +) +(1,23481:6630773,28141814:25952256,513147,134348 +g1,23480:8021447,28141814 +g1,23480:9798128,28141814 +g1,23480:10980397,28141814 +g1,23480:14791970,28141814 +g1,23480:15982759,28141814 +g1,23480:17467804,28141814 +g1,23480:20483115,28141814 +g1,23480:21914421,28141814 +g1,23480:24392337,28141814 +h1,23480:25761384,28141814:0,0,0 +g1,23480:25960613,28141814 +g1,23480:26969212,28141814 +g1,23480:28666594,28141814 +h1,23480:29861971,28141814:0,0,0 +k1,23481:32583029,28141814:2461536 +g1,23481:32583029,28141814 +) +v1,23483:6630773,29006894:0,393216,0 +(1,23484:6630773,33819954:25952256,5206276,0 +g1,23484:6630773,33819954 +g1,23484:6237557,33819954 +r1,23534:6368629,33819954:131072,5206276,0 +g1,23484:6567858,33819954 +g1,23484:6764466,33819954 +[1,23484:6764466,33819954:25818563,5206276,0 +(1,23484:6764466,29368071:25818563,754393,260573 +(1,23483:6764466,29368071:0,754393,260573 +r1,23534:7856192,29368071:1091726,1014966,260573 +k1,23483:6764466,29368071:-1091726 +) +(1,23483:6764466,29368071:1091726,754393,260573 +) +k1,23483:8082302,29368071:226110 +k1,23483:8409982,29368071:327680 +k1,23483:10897083,29368071:226109 +k1,23483:13836384,29368071:226110 +k1,23483:17424490,29368071:226109 +k1,23483:20625279,29368071:226110 +k1,23483:23047500,29368071:226110 +k1,23483:24558115,29368071:226109 +k1,23483:26954777,29368071:226110 +k1,23483:27928652,29368071:226109 +k1,23483:31315563,29368071:226110 +k1,23483:32583029,29368071:0 +) +(1,23484:6764466,30233151:25818563,513147,134348 +k1,23483:9761973,30233151:181425 +k1,23483:10934959,30233151:181426 +k1,23483:14277185,30233151:181425 +k1,23483:15726077,30233151:181426 +k1,23483:18131794,30233151:181425 +k1,23483:18996105,30233151:181426 +k1,23483:21405099,30233151:181425 +k1,23483:22272687,30233151:181426 +k1,23483:25428791,30233151:181425 +k1,23483:27806328,30233151:181426 +k1,23483:28603791,30233151:181425 +k1,23483:29804302,30233151:181426 +k1,23483:32583029,30233151:0 +) +(1,23484:6764466,31098231:25818563,513147,126483 +k1,23483:8365289,31098231:211460 +k1,23483:10453045,31098231:211460 +k1,23483:13366554,31098231:211460 +k1,23483:14387384,31098231:211460 +k1,23483:15617929,31098231:211460 +k1,23483:17509732,31098231:211460 +k1,23483:19926479,31098231:211460 +k1,23483:20789367,31098231:211460 +k1,23483:24281559,31098231:211460 +(1,23483:24281559,31098231:0,452978,122846 +r1,23534:29915502,31098231:5633943,575824,122846 +k1,23483:24281559,31098231:-5633943 +) +(1,23483:24281559,31098231:5633943,452978,122846 +k1,23483:24281559,31098231:3277 +h1,23483:29912225,31098231:0,411205,112570 +) +k1,23483:30300632,31098231:211460 +k1,23483:31708779,31098231:211460 +k1,23484:32583029,31098231:0 +) +(1,23484:6764466,31963311:25818563,513147,134348 +k1,23483:8491559,31963311:229595 +k1,23483:11382572,31963311:229596 +k1,23483:12228205,31963311:229595 +k1,23483:12872613,31963311:229565 +k1,23483:15435945,31963311:229595 +k1,23483:17208259,31963311:229596 +k1,23483:19005475,31963311:229595 +(1,23483:19005475,31963311:0,414482,115847 +r1,23534:20418876,31963311:1413401,530329,115847 +k1,23483:19005475,31963311:-1413401 +) +(1,23483:19005475,31963311:1413401,414482,115847 +k1,23483:19005475,31963311:3277 +h1,23483:20415599,31963311:0,411205,112570 +) +k1,23483:20648471,31963311:229595 +k1,23483:22145533,31963311:229596 +(1,23483:22145533,31963311:0,414482,115847 +r1,23534:23910646,31963311:1765113,530329,115847 +k1,23483:22145533,31963311:-1765113 +) +(1,23483:22145533,31963311:1765113,414482,115847 +k1,23483:22145533,31963311:3277 +h1,23483:23907369,31963311:0,411205,112570 +) +k1,23483:24313911,31963311:229595 +k1,23483:25021264,31963311:229596 +k1,23483:26747046,31963311:229595 +k1,23483:27508138,31963311:229595 +k1,23483:28389162,31963311:229596 +k1,23483:30215214,31963311:229595 +k1,23484:32583029,31963311:0 +) +(1,23484:6764466,32828391:25818563,513147,126483 +k1,23483:8618372,32828391:268590 +k1,23483:9503000,32828391:268590 +k1,23483:10791986,32828391:268590 +k1,23483:12252021,32828391:268590 +k1,23483:13803806,32828391:268590 +k1,23483:16736435,32828391:268590 +k1,23483:17672181,32828391:268590 +k1,23483:18355545,32828391:268521 +(1,23483:18355545,32828391:0,452978,122846 +r1,23534:26803183,32828391:8447638,575824,122846 +k1,23483:18355545,32828391:-8447638 +) +(1,23483:18355545,32828391:8447638,452978,122846 +g1,23483:24337923,32828391 +g1,23483:25041347,32828391 +h1,23483:26799906,32828391:0,411205,112570 +) +k1,23483:27071773,32828391:268590 +k1,23483:28441368,32828391:268590 +k1,23483:29361386,32828391:268590 +k1,23483:30377742,32828391:268590 +k1,23483:32583029,32828391:0 +) +(1,23484:6764466,33693471:25818563,505283,126483 +g1,23483:9861042,33693471 +g1,23483:10676309,33693471 +g1,23483:12305534,33693471 +g1,23483:13156191,33693471 +(1,23483:13156191,33693471:0,452978,115847 +r1,23534:16679863,33693471:3523672,568825,115847 +k1,23483:13156191,33693471:-3523672 +) +(1,23483:13156191,33693471:3523672,452978,115847 +k1,23483:13156191,33693471:3277 +h1,23483:16676586,33693471:0,411205,112570 +) +g1,23483:16879092,33693471 +g1,23483:18304500,33693471 +g1,23483:21488239,33693471 +g1,23483:23200694,33693471 +g1,23483:24015961,33693471 +g1,23483:25234275,33693471 +k1,23484:32583029,33693471:5507193 +g1,23484:32583029,33693471 +) +] +g1,23484:32583029,33819954 +) +h1,23484:6630773,33819954:0,0,0 +(1,23487:6630773,34685034:25952256,513147,126483 +h1,23486:6630773,34685034:983040,0,0 +k1,23486:8423510,34685034:181862 +k1,23486:9624458,34685034:181863 +k1,23486:11112453,34685034:181862 +k1,23486:13955732,34685034:181862 +k1,23486:14493455,34685034:181863 +k1,23486:15658357,34685034:181862 +k1,23486:17234170,34685034:181862 +k1,23486:19150115,34685034:181862 +k1,23486:21175506,34685034:181863 +k1,23486:24377922,34685034:181862 +k1,23486:25321312,34685034:181862 +k1,23486:26277155,34685034:181863 +k1,23486:26990514,34685034:181862 +k1,23486:28758347,34685034:181862 +k1,23486:30321054,34685034:181863 +k1,23486:31034413,34685034:181862 +k1,23486:32583029,34685034:0 +) +(1,23487:6630773,35550114:25952256,513147,126483 +k1,23486:7379076,35550114:216806 +k1,23486:9463659,35550114:216807 +k1,23486:17564446,35550114:216806 +k1,23486:19464200,35550114:216789 +k1,23486:21861389,35550114:216806 +k1,23486:23362701,35550114:216806 +k1,23486:24683790,35550114:216807 +k1,23486:25648362,35550114:216806 +k1,23486:27277469,35550114:216806 +k1,23486:28685721,35550114:216807 +k1,23486:31189078,35550114:216806 +k1,23487:32583029,35550114:0 +) +(1,23487:6630773,36415194:25952256,505283,126483 +(1,23486:6630773,36415194:0,452978,115847 +r1,23534:10154445,36415194:3523672,568825,115847 +k1,23486:6630773,36415194:-3523672 +) +(1,23486:6630773,36415194:3523672,452978,115847 +k1,23486:6630773,36415194:3277 +h1,23486:10151168,36415194:0,411205,112570 +) +g1,23486:10353674,36415194 +g1,23486:11744348,36415194 +(1,23486:11744348,36415194:0,452978,115847 +r1,23534:15619732,36415194:3875384,568825,115847 +k1,23486:11744348,36415194:-3875384 +) +(1,23486:11744348,36415194:3875384,452978,115847 +k1,23486:11744348,36415194:3277 +h1,23486:15616455,36415194:0,411205,112570 +) +g1,23486:15992631,36415194 +k1,23487:32583029,36415194:12741469 +g1,23487:32583029,36415194 +) +(1,23489:6630773,37280274:25952256,513147,122846 +h1,23488:6630773,37280274:983040,0,0 +g1,23488:9009729,37280274 +g1,23488:11958193,37280274 +g1,23488:12816714,37280274 +g1,23488:13998983,37280274 +(1,23488:13998983,37280274:0,452978,122846 +r1,23534:22446620,37280274:8447637,575824,122846 +k1,23488:13998983,37280274:-8447637 +) +(1,23488:13998983,37280274:8447637,452978,122846 +k1,23488:13998983,37280274:3277 +h1,23488:22443343,37280274:0,411205,112570 +) +g1,23488:22645849,37280274 +g1,23488:23836638,37280274 +g1,23488:26111392,37280274 +k1,23489:32583029,37280274:4550777 +g1,23489:32583029,37280274 +) +v1,23491:6630773,37965129:0,393216,0 +(1,23497:6630773,39649098:25952256,2077185,196608 +g1,23497:6630773,39649098 +g1,23497:6630773,39649098 +g1,23497:6434165,39649098 +(1,23497:6434165,39649098:0,2077185,196608 +r1,23534:32779637,39649098:26345472,2273793,196608 +k1,23497:6434165,39649098:-26345472 +) +(1,23497:6434165,39649098:26345472,2077185,196608 +[1,23497:6630773,39649098:25952256,1880577,0 +(1,23496:6630773,38192960:25952256,424439,86428 +(1,23492:6630773,38192960:0,0,0 +g1,23492:6630773,38192960 +g1,23492:6630773,38192960 +g1,23492:6303093,38192960 +(1,23492:6303093,38192960:0,0,0 +) +g1,23492:6630773,38192960 +) +k1,23496:6630773,38192960:0 +k1,23496:6630773,38192960:0 +h1,23496:12937899,38192960:0,0,0 +k1,23496:32583029,38192960:19645130 +g1,23496:32583029,38192960 +) +(1,23496:6630773,38877815:25952256,407923,86428 +h1,23496:6630773,38877815:0,0,0 +k1,23496:6630773,38877815:0 +h1,23496:11942037,38877815:0,0,0 +k1,23496:32583029,38877815:20640992 +g1,23496:32583029,38877815 +) +(1,23496:6630773,39562670:25952256,407923,86428 +h1,23496:6630773,39562670:0,0,0 +g1,23496:11610083,39562670 +h1,23496:11942037,39562670:0,0,0 +k1,23496:32583029,39562670:20640992 +g1,23496:32583029,39562670 +) +] +) +g1,23497:32583029,39649098 +g1,23497:6630773,39649098 +g1,23497:6630773,39649098 +g1,23497:32583029,39649098 +g1,23497:32583029,39649098 +) +h1,23497:6630773,39845706:0,0,0 +(1,23501:6630773,40710786:25952256,513147,115847 +h1,23500:6630773,40710786:983040,0,0 +k1,23500:8951266,40710786:140766 +k1,23500:10075072,40710786:140766 +k1,23500:10747335,40710786:140766 +k1,23500:12300402,40710786:140766 +k1,23500:13632613,40710786:140766 +k1,23500:14792464,40710786:140766 +k1,23500:17711956,40710786:140765 +k1,23500:19533065,40710786:140766 +k1,23500:21712001,40710786:140766 +k1,23500:22468805,40710786:140766 +k1,23500:22965431,40710786:140766 +k1,23500:25617537,40710786:140766 +k1,23500:27917059,40710786:140766 +(1,23500:27917059,40710786:0,459977,115847 +r1,23534:32495867,40710786:4578808,575824,115847 +k1,23500:27917059,40710786:-4578808 +) +(1,23500:27917059,40710786:4578808,459977,115847 +k1,23500:27917059,40710786:3277 +h1,23500:32492590,40710786:0,411205,112570 +) +k1,23500:32583029,40710786:0 +) +(1,23501:6630773,41575866:25952256,505283,126483 +g1,23500:8021447,41575866 +k1,23501:32583028,41575866:22159032 +g1,23501:32583028,41575866 +) +v1,23503:6630773,42260721:0,393216,0 +(1,23508:6630773,43292865:25952256,1425360,196608 +g1,23508:6630773,43292865 +g1,23508:6630773,43292865 +g1,23508:6434165,43292865 +(1,23508:6434165,43292865:0,1425360,196608 +r1,23534:32779637,43292865:26345472,1621968,196608 +k1,23508:6434165,43292865:-26345472 +) +(1,23508:6434165,43292865:26345472,1425360,196608 +[1,23508:6630773,43292865:25952256,1228752,0 +(1,23505:6630773,42495158:25952256,431045,52847 +(1,23504:6630773,42495158:0,0,0 +g1,23504:6630773,42495158 +g1,23504:6630773,42495158 +g1,23504:6303093,42495158 +(1,23504:6303093,42495158:0,0,0 +) +g1,23504:6630773,42495158 +) +g1,23505:11278128,42495158 +k1,23505:11278128,42495158:0 +h1,23505:11942036,42495158:0,0,0 +k1,23505:32583028,42495158:20640992 +g1,23505:32583028,42495158 +) +(1,23506:6630773,43180013:25952256,424439,112852 +h1,23506:6630773,43180013:0,0,0 +g1,23506:6962727,43180013 +g1,23506:7294681,43180013 +g1,23506:22232607,43180013 +g1,23506:27875824,43180013 +g1,23506:28539732,43180013 +h1,23506:30531456,43180013:0,0,0 +k1,23506:32583029,43180013:2051573 +g1,23506:32583029,43180013 +) +] +) +g1,23508:32583029,43292865 +g1,23508:6630773,43292865 +g1,23508:6630773,43292865 +g1,23508:32583029,43292865 +g1,23508:32583029,43292865 +) +h1,23508:6630773,43489473:0,0,0 +v1,23512:6630773,44174328:0,393216,0 +(1,23534:6630773,45234600:25952256,1453488,196608 +g1,23534:6630773,45234600 +g1,23534:6630773,45234600 +g1,23534:6434165,45234600 +(1,23534:6434165,45234600:0,1453488,196608 +r1,23534:32779637,45234600:26345472,1650096,196608 +k1,23534:6434165,45234600:-26345472 +) +(1,23534:6434165,45234600:26345472,1453488,196608 +[1,23534:6630773,45234600:25952256,1256880,0 +(1,23514:6630773,44408765:25952256,431045,52847 +(1,23513:6630773,44408765:0,0,0 +g1,23513:6630773,44408765 +g1,23513:6630773,44408765 +g1,23513:6303093,44408765 +(1,23513:6303093,44408765:0,0,0 +) +g1,23513:6630773,44408765 +) +h1,23514:10946174,44408765:0,0,0 +k1,23514:32583030,44408765:21636856 +g1,23514:32583030,44408765 +) +(1,23520:6630773,45224692:25952256,424439,9908 +(1,23516:6630773,45224692:0,0,0 +g1,23516:6630773,45224692 +g1,23516:6630773,45224692 +g1,23516:6303093,45224692 +(1,23516:6303093,45224692:0,0,0 +) +g1,23516:6630773,45224692 +) +g1,23520:7626635,45224692 +g1,23520:7958589,45224692 +g1,23520:8290543,45224692 +g1,23520:9950313,45224692 +g1,23520:11610083,45224692 +g1,23520:13269853,45224692 +h1,23520:14597669,45224692:0,0,0 +k1,23520:32583029,45224692:17985360 +g1,23520:32583029,45224692 ) ] ) -g1,23536:32583029,45234600 -g1,23536:6630773,45234600 -g1,23536:6630773,45234600 -g1,23536:32583029,45234600 -g1,23536:32583029,45234600 +g1,23534:32583029,45234600 +g1,23534:6630773,45234600 +g1,23534:6630773,45234600 +g1,23534:32583029,45234600 +g1,23534:32583029,45234600 ) ] -(1,23536:32583029,45706769:0,0,0 -g1,23536:32583029,45706769 +(1,23534:32583029,45706769:0,0,0 +g1,23534:32583029,45706769 ) ) ] -(1,23536:6630773,47279633:25952256,0,0 -h1,23536:6630773,47279633:25952256,0,0 +(1,23534:6630773,47279633:25952256,0,0 +h1,23534:6630773,47279633:25952256,0,0 ) ] -(1,23536:4262630,4025873:0,0,0 -[1,23536:-473656,4025873:0,0,0 -(1,23536:-473656,-710413:0,0,0 -(1,23536:-473656,-710413:0,0,0 -g1,23536:-473656,-710413 +(1,23534:4262630,4025873:0,0,0 +[1,23534:-473656,4025873:0,0,0 +(1,23534:-473656,-710413:0,0,0 +(1,23534:-473656,-710413:0,0,0 +g1,23534:-473656,-710413 ) -g1,23536:-473656,-710413 +g1,23534:-473656,-710413 ) ] ) ] !28305 -}405 -Input:4412:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4413:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4414:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4415:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}406 Input:4416:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4417:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4418:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4419:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4420:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4421:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{406 -[1,23634:4262630,47279633:28320399,43253760,0 -(1,23634:4262630,4025873:0,0,0 -[1,23634:-473656,4025873:0,0,0 -(1,23634:-473656,-710413:0,0,0 -(1,23634:-473656,-644877:0,0,0 -k1,23634:-473656,-644877:-65536 +{407 +[1,23632:4262630,47279633:28320399,43253760,0 +(1,23632:4262630,4025873:0,0,0 +[1,23632:-473656,4025873:0,0,0 +(1,23632:-473656,-710413:0,0,0 +(1,23632:-473656,-644877:0,0,0 +k1,23632:-473656,-644877:-65536 ) -(1,23634:-473656,4736287:0,0,0 -k1,23634:-473656,4736287:5209943 +(1,23632:-473656,4736287:0,0,0 +k1,23632:-473656,4736287:5209943 ) -g1,23634:-473656,-710413 +g1,23632:-473656,-710413 ) ] ) -[1,23634:6630773,47279633:25952256,43253760,0 -[1,23634:6630773,4812305:25952256,786432,0 -(1,23634:6630773,4812305:25952256,505283,11795 -(1,23634:6630773,4812305:25952256,505283,11795 -g1,23634:3078558,4812305 -[1,23634:3078558,4812305:0,0,0 -(1,23634:3078558,2439708:0,1703936,0 -k1,23634:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23634:2537886,2439708:1179648,16384,0 +[1,23632:6630773,47279633:25952256,43253760,0 +[1,23632:6630773,4812305:25952256,786432,0 +(1,23632:6630773,4812305:25952256,505283,11795 +(1,23632:6630773,4812305:25952256,505283,11795 +g1,23632:3078558,4812305 +[1,23632:3078558,4812305:0,0,0 +(1,23632:3078558,2439708:0,1703936,0 +k1,23632:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23632:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23634:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23632:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23634:3078558,4812305:0,0,0 -(1,23634:3078558,2439708:0,1703936,0 -g1,23634:29030814,2439708 -g1,23634:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23634:36151628,1915420:16384,1179648,0 +[1,23632:3078558,4812305:0,0,0 +(1,23632:3078558,2439708:0,1703936,0 +g1,23632:29030814,2439708 +g1,23632:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23632:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23634:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23632:37855564,2439708:1179648,16384,0 ) ) -k1,23634:3078556,2439708:-34777008 +k1,23632:3078556,2439708:-34777008 ) ] -[1,23634:3078558,4812305:0,0,0 -(1,23634:3078558,49800853:0,16384,2228224 -k1,23634:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23634:2537886,49800853:1179648,16384,0 +[1,23632:3078558,4812305:0,0,0 +(1,23632:3078558,49800853:0,16384,2228224 +k1,23632:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23632:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23634:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23632:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23634:3078558,4812305:0,0,0 -(1,23634:3078558,49800853:0,16384,2228224 -g1,23634:29030814,49800853 -g1,23634:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23634:36151628,51504789:16384,1179648,0 +[1,23632:3078558,4812305:0,0,0 +(1,23632:3078558,49800853:0,16384,2228224 +g1,23632:29030814,49800853 +g1,23632:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23632:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23634:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23632:37855564,49800853:1179648,16384,0 ) ) -k1,23634:3078556,49800853:-34777008 +k1,23632:3078556,49800853:-34777008 ) ] -g1,23634:6630773,4812305 -g1,23634:6630773,4812305 -g1,23634:9946239,4812305 -g1,23634:11513204,4812305 -k1,23634:31387652,4812305:19874448 -) -) +g1,23632:6630773,4812305 +g1,23632:6630773,4812305 +g1,23632:9946239,4812305 +g1,23632:11513204,4812305 +k1,23632:31387652,4812305:19874448 +) +) ] -[1,23634:6630773,45706769:25952256,40108032,0 -(1,23634:6630773,45706769:25952256,40108032,0 -(1,23634:6630773,45706769:0,0,0 -g1,23634:6630773,45706769 +[1,23632:6630773,45706769:25952256,40108032,0 +(1,23632:6630773,45706769:25952256,40108032,0 +(1,23632:6630773,45706769:0,0,0 +g1,23632:6630773,45706769 ) -[1,23634:6630773,45706769:25952256,40108032,0 -v1,23536:6630773,6254097:0,393216,0 -(1,23536:6630773,11211682:25952256,5350801,196608 -g1,23536:6630773,11211682 -g1,23536:6630773,11211682 -g1,23536:6434165,11211682 -(1,23536:6434165,11211682:0,5350801,196608 -r1,23634:32779637,11211682:26345472,5547409,196608 -k1,23536:6434165,11211682:-26345472 -) -(1,23536:6434165,11211682:26345472,5350801,196608 -[1,23536:6630773,11211682:25952256,5154193,0 -(1,23522:6630773,6465412:25952256,407923,9908 -h1,23522:6630773,6465412:0,0,0 -g1,23522:7626635,6465412 -g1,23522:8290543,6465412 -g1,23522:8622497,6465412 -g1,23522:9950313,6465412 -g1,23522:11610083,6465412 -g1,23522:11942037,6465412 -g1,23522:13269853,6465412 -g1,23522:13601807,6465412 -h1,23522:14597669,6465412:0,0,0 -k1,23522:32583029,6465412:17985360 -g1,23522:32583029,6465412 -) -(1,23522:6630773,7150267:25952256,407923,9908 -h1,23522:6630773,7150267:0,0,0 -g1,23522:7626635,7150267 -g1,23522:8290543,7150267 -g1,23522:9950313,7150267 -g1,23522:11610083,7150267 -g1,23522:11942037,7150267 -g1,23522:12273991,7150267 -g1,23522:13269853,7150267 -g1,23522:13601807,7150267 -g1,23522:14265715,7150267 -h1,23522:14597669,7150267:0,0,0 -k1,23522:32583029,7150267:17985360 -g1,23522:32583029,7150267 -) -(1,23524:6630773,7966194:25952256,431045,79822 -(1,23523:6630773,7966194:0,0,0 -g1,23523:6630773,7966194 -g1,23523:6630773,7966194 -g1,23523:6303093,7966194 -(1,23523:6303093,7966194:0,0,0 -) -g1,23523:6630773,7966194 -) -h1,23524:14265714,7966194:0,0,0 -k1,23524:32583030,7966194:18317316 -g1,23524:32583030,7966194 -) -(1,23528:6630773,8782121:25952256,424439,79822 -(1,23526:6630773,8782121:0,0,0 -g1,23526:6630773,8782121 -g1,23526:6630773,8782121 -g1,23526:6303093,8782121 -(1,23526:6303093,8782121:0,0,0 -) -g1,23526:6630773,8782121 -) -g1,23528:7626635,8782121 -g1,23528:8954451,8782121 -g1,23528:10946175,8782121 -g1,23528:11942037,8782121 -h1,23528:12605945,8782121:0,0,0 -k1,23528:32583029,8782121:19977084 -g1,23528:32583029,8782121 -) -(1,23530:6630773,9598048:25952256,431045,106246 -(1,23529:6630773,9598048:0,0,0 -g1,23529:6630773,9598048 -g1,23529:6630773,9598048 -g1,23529:6303093,9598048 -(1,23529:6303093,9598048:0,0,0 -) -g1,23529:6630773,9598048 -) -k1,23530:6630773,9598048:0 -g1,23530:13933760,9598048 -h1,23530:15925484,9598048:0,0,0 -k1,23530:32583029,9598048:16657545 -g1,23530:32583029,9598048 -) -(1,23535:6630773,10413975:25952256,424439,9908 -(1,23532:6630773,10413975:0,0,0 -g1,23532:6630773,10413975 -g1,23532:6630773,10413975 -g1,23532:6303093,10413975 -(1,23532:6303093,10413975:0,0,0 -) -g1,23532:6630773,10413975 -) -g1,23535:7626635,10413975 -g1,23535:7958589,10413975 -g1,23535:8290543,10413975 -g1,23535:8622497,10413975 -g1,23535:8954451,10413975 -g1,23535:9286405,10413975 -g1,23535:9618359,10413975 -g1,23535:9950313,10413975 -g1,23535:11610083,10413975 -g1,23535:11942037,10413975 -g1,23535:12273991,10413975 -g1,23535:12605945,10413975 -g1,23535:12937899,10413975 -g1,23535:13269853,10413975 -g1,23535:13601807,10413975 -g1,23535:13933761,10413975 -g1,23535:15593531,10413975 -g1,23535:15925485,10413975 -g1,23535:16257439,10413975 -g1,23535:16589393,10413975 -g1,23535:16921347,10413975 -g1,23535:17253301,10413975 -g1,23535:17585255,10413975 -g1,23535:17917209,10413975 -g1,23535:19576979,10413975 -g1,23535:19908933,10413975 -g1,23535:20240887,10413975 -g1,23535:20572841,10413975 -g1,23535:20904795,10413975 -g1,23535:21236749,10413975 -g1,23535:21568703,10413975 -g1,23535:21900657,10413975 -h1,23535:23228473,10413975:0,0,0 -k1,23535:32583029,10413975:9354556 -g1,23535:32583029,10413975 -) -(1,23535:6630773,11098830:25952256,424439,112852 -h1,23535:6630773,11098830:0,0,0 -g1,23535:7626635,11098830 -g1,23535:7958589,11098830 -g1,23535:8290543,11098830 -g1,23535:11610082,11098830 -g1,23535:11942036,11098830 -g1,23535:12273990,11098830 -g1,23535:15593529,11098830 -g1,23535:15925483,11098830 -g1,23535:16257437,11098830 -g1,23535:19576976,11098830 -h1,23535:23228469,11098830:0,0,0 -k1,23535:32583029,11098830:9354560 -g1,23535:32583029,11098830 -) -] -) -g1,23536:32583029,11211682 -g1,23536:6630773,11211682 -g1,23536:6630773,11211682 -g1,23536:32583029,11211682 -g1,23536:32583029,11211682 -) -h1,23536:6630773,11408290:0,0,0 -v1,23540:6630773,12273370:0,393216,0 -(1,23541:6630773,16132650:25952256,4252496,0 -g1,23541:6630773,16132650 -g1,23541:6237557,16132650 -r1,23634:6368629,16132650:131072,4252496,0 -g1,23541:6567858,16132650 -g1,23541:6764466,16132650 -[1,23541:6764466,16132650:25818563,4252496,0 -(1,23541:6764466,12545847:25818563,665693,196608 -(1,23540:6764466,12545847:0,665693,196608 -r1,23634:7868133,12545847:1103667,862301,196608 -k1,23540:6764466,12545847:-1103667 -) -(1,23540:6764466,12545847:1103667,665693,196608 -) -k1,23540:8153501,12545847:285368 -k1,23540:9879719,12545847:327680 -k1,23540:11734020,12545847:285369 -k1,23540:13038473,12545847:285368 -k1,23540:14306882,12545847:285369 -(1,23540:14306882,12545847:0,452978,122846 -r1,23634:22754519,12545847:8447637,575824,122846 -k1,23540:14306882,12545847:-8447637 -) -(1,23540:14306882,12545847:8447637,452978,122846 -k1,23540:14306882,12545847:3277 -h1,23540:22751242,12545847:0,411205,112570 -) -k1,23540:23039887,12545847:285368 -k1,23540:24719206,12545847:285368 -k1,23540:27700071,12545847:285369 -(1,23540:27700071,12545847:0,452978,115847 -r1,23634:31575455,12545847:3875384,568825,115847 -k1,23540:27700071,12545847:-3875384 -) -(1,23540:27700071,12545847:3875384,452978,115847 -k1,23540:27700071,12545847:3277 -h1,23540:31572178,12545847:0,411205,112570 -) -k1,23540:31860823,12545847:285368 -k1,23541:32583029,12545847:0 -) -(1,23541:6764466,13410927:25818563,513147,134348 -k1,23540:8755230,13410927:279619 -k1,23540:9702005,13410927:279619 -(1,23540:9702005,13410927:0,452978,115847 -r1,23634:13225677,13410927:3523672,568825,115847 -k1,23540:9702005,13410927:-3523672 -) -(1,23540:9702005,13410927:3523672,452978,115847 -k1,23540:9702005,13410927:3277 -h1,23540:13222400,13410927:0,411205,112570 -) -k1,23540:13678966,13410927:279619 -k1,23540:16921468,13410927:279619 -k1,23540:18404328,13410927:279619 -k1,23540:20020881,13410927:279619 -k1,23540:21687242,13410927:279619 -k1,23540:23113086,13410927:279619 -k1,23540:23748565,13410927:279619 -k1,23540:25839599,13410927:279619 -k1,23540:26778510,13410927:279619 -k1,23540:28657207,13410927:279619 -k1,23540:29955911,13410927:279619 -k1,23540:31923737,13410927:279619 -k1,23540:32583029,13410927:0 -) -(1,23541:6764466,14276007:25818563,513147,134348 -k1,23540:7998264,14276007:214713 -k1,23540:10773469,14276007:214713 -k1,23540:11519680,14276007:214714 -k1,23540:12682044,14276007:214713 -k1,23540:14067230,14276007:214713 -k1,23540:14933371,14276007:214713 -k1,23540:16126538,14276007:214714 -k1,23540:18833585,14276007:214713 -k1,23540:20442249,14276007:214713 -k1,23540:21071790,14276007:214698 -k1,23540:24461067,14276007:214713 -k1,23540:25291818,14276007:214713 -k1,23540:26873612,14276007:214713 -k1,23540:27747618,14276007:214714 -k1,23540:29455897,14276007:214713 -k1,23540:30026470,14276007:214713 -k1,23540:32583029,14276007:0 -) -(1,23541:6764466,15141087:25818563,505283,134348 -k1,23540:8332266,15141087:208583 -k1,23540:9673311,15141087:208583 -k1,23540:11269948,15141087:208584 -k1,23540:12649004,15141087:208583 -k1,23540:15889282,15141087:208583 -k1,23540:18299875,15141087:208583 -k1,23540:20445702,15141087:208583 -k1,23540:22352323,15141087:208583 -k1,23540:23941095,15141087:208584 -k1,23540:26524047,15141087:208583 -k1,23540:30697558,15141087:208583 -k1,23540:32583029,15141087:0 -) -(1,23541:6764466,16006167:25818563,513147,126483 -g1,23540:7495192,16006167 -g1,23540:9319059,16006167 -g1,23540:12295704,16006167 -g1,23540:14192971,16006167 -g1,23540:15705542,16006167 -g1,23540:16896331,16006167 -k1,23541:32583029,16006167:13476824 -g1,23541:32583029,16006167 -) -] -g1,23541:32583029,16132650 -) -h1,23541:6630773,16132650:0,0,0 -(1,23544:6630773,16997730:25952256,513147,126483 -h1,23543:6630773,16997730:983040,0,0 -k1,23543:10531760,16997730:232937 -k1,23543:11747738,16997730:232938 -(1,23543:11747738,16997730:0,452978,122846 -r1,23634:18788529,16997730:7040791,575824,122846 -k1,23543:11747738,16997730:-7040791 -) -(1,23543:11747738,16997730:7040791,452978,122846 -k1,23543:11747738,16997730:3277 -h1,23543:18785252,16997730:0,411205,112570 -) -k1,23543:19021466,16997730:232937 -k1,23543:21956452,16997730:232937 -k1,23543:30073371,16997730:232938 -k1,23543:31700259,16997730:232937 -k1,23544:32583029,16997730:0 -) -(1,23544:6630773,17862810:25952256,505283,134348 -g1,23543:8018825,17862810 -g1,23543:9959346,17862810 -g1,23543:11946397,17862810 -g1,23543:12797054,17862810 -g1,23543:14547520,17862810 -g1,23543:15765834,17862810 -g1,23543:18851924,17862810 -g1,23543:19702581,17862810 -g1,23543:21617543,17862810 -g1,23543:22274869,17862810 -g1,23543:24344496,17862810 -g1,23543:25195153,17862810 -g1,23543:26806683,17862810 -g1,23543:27767440,17862810 -k1,23544:32583029,17862810:2212499 -g1,23544:32583029,17862810 -) -(1,23546:6630773,18727890:25952256,513147,122846 -h1,23545:6630773,18727890:983040,0,0 -g1,23545:9009729,18727890 -g1,23545:11958193,18727890 -g1,23545:12816714,18727890 -g1,23545:13998983,18727890 -(1,23545:13998983,18727890:0,452978,122846 -r1,23634:21039774,18727890:7040791,575824,122846 -k1,23545:13998983,18727890:-7040791 -) -(1,23545:13998983,18727890:7040791,452978,122846 -k1,23545:13998983,18727890:3277 -h1,23545:21036497,18727890:0,411205,112570 -) -g1,23545:21239003,18727890 -g1,23545:22429792,18727890 -g1,23545:24704546,18727890 -k1,23546:32583029,18727890:5957623 -g1,23546:32583029,18727890 -) -v1,23548:6630773,19412745:0,393216,0 -(1,23554:6630773,21096714:25952256,2077185,196608 -g1,23554:6630773,21096714 -g1,23554:6630773,21096714 -g1,23554:6434165,21096714 -(1,23554:6434165,21096714:0,2077185,196608 -r1,23634:32779637,21096714:26345472,2273793,196608 -k1,23554:6434165,21096714:-26345472 -) -(1,23554:6434165,21096714:26345472,2077185,196608 -[1,23554:6630773,21096714:25952256,1880577,0 -(1,23553:6630773,19640576:25952256,424439,86428 -(1,23549:6630773,19640576:0,0,0 -g1,23549:6630773,19640576 -g1,23549:6630773,19640576 -g1,23549:6303093,19640576 -(1,23549:6303093,19640576:0,0,0 -) -g1,23549:6630773,19640576 -) -k1,23553:6630773,19640576:0 -g1,23553:8622497,19640576 -g1,23553:10614221,19640576 -g1,23553:12605945,19640576 -h1,23553:13933761,19640576:0,0,0 -k1,23553:32583029,19640576:18649268 -g1,23553:32583029,19640576 -) -(1,23553:6630773,20325431:25952256,407923,86428 -h1,23553:6630773,20325431:0,0,0 -g1,23553:6962727,20325431 -g1,23553:8622497,20325431 -g1,23553:10614221,20325431 -g1,23553:10946175,20325431 -g1,23553:12605945,20325431 -g1,23553:12937899,20325431 -h1,23553:13933761,20325431:0,0,0 -k1,23553:32583029,20325431:18649268 -g1,23553:32583029,20325431 -) -(1,23553:6630773,21010286:25952256,407923,86428 -h1,23553:6630773,21010286:0,0,0 -g1,23553:8622497,21010286 -g1,23553:10614221,21010286 -g1,23553:10946175,21010286 -g1,23553:11278129,21010286 -g1,23553:12605945,21010286 -g1,23553:12937899,21010286 -g1,23553:13601807,21010286 -h1,23553:13933761,21010286:0,0,0 -k1,23553:32583029,21010286:18649268 -g1,23553:32583029,21010286 -) -] -) -g1,23554:32583029,21096714 -g1,23554:6630773,21096714 -g1,23554:6630773,21096714 -g1,23554:32583029,21096714 -g1,23554:32583029,21096714 -) -h1,23554:6630773,21293322:0,0,0 -(1,23559:6630773,22158402:25952256,513147,115847 -h1,23557:6630773,22158402:983040,0,0 -k1,23557:8951266,22158402:140766 -k1,23557:10075072,22158402:140766 -k1,23557:10747335,22158402:140766 -k1,23557:12300402,22158402:140766 -k1,23557:13632613,22158402:140766 -k1,23557:14792464,22158402:140766 -k1,23557:17711956,22158402:140765 -k1,23557:19533065,22158402:140766 -k1,23557:21712001,22158402:140766 -k1,23557:22468805,22158402:140766 -k1,23557:22965431,22158402:140766 -k1,23557:25617537,22158402:140766 -k1,23557:27917059,22158402:140766 -(1,23557:27917059,22158402:0,459977,115847 -r1,23634:32495867,22158402:4578808,575824,115847 -k1,23557:27917059,22158402:-4578808 -) -(1,23557:27917059,22158402:4578808,459977,115847 -k1,23557:27917059,22158402:3277 -h1,23557:32492590,22158402:0,411205,112570 -) -k1,23557:32583029,22158402:0 -) -(1,23559:6630773,23023482:25952256,513147,134348 -k1,23557:8115416,23023482:293198 -k1,23557:10932405,23023482:293198 -k1,23558:14188486,23023482:293198 -k1,23558:16269505,23023482:293197 -k1,23558:19867684,23023482:293198 -k1,23558:21152442,23023482:293198 -k1,23558:22857941,23023482:293198 -k1,23558:23837301,23023482:293198 -k1,23558:25452360,23023482:293198 -k1,23558:26404849,23023482:293197 -k1,23558:27717132,23023482:293198 -k1,23558:29918083,23023482:293198 -k1,23558:31591469,23023482:293198 -k1,23558:32583029,23023482:0 -) -(1,23559:6630773,23888562:25952256,505283,134348 -g1,23558:9271218,23888562 -g1,23558:11168485,23888562 -g1,23558:14844399,23888562 -g1,23558:15695056,23888562 -g1,23558:18514414,23888562 -g1,23558:20396608,23888562 -k1,23559:32583029,23888562:10471344 -g1,23559:32583029,23888562 -) -v1,23561:6630773,24573417:0,393216,0 -(1,23566:6630773,25605561:25952256,1425360,196608 -g1,23566:6630773,25605561 -g1,23566:6630773,25605561 -g1,23566:6434165,25605561 -(1,23566:6434165,25605561:0,1425360,196608 -r1,23634:32779637,25605561:26345472,1621968,196608 -k1,23566:6434165,25605561:-26345472 -) -(1,23566:6434165,25605561:26345472,1425360,196608 -[1,23566:6630773,25605561:25952256,1228752,0 -(1,23563:6630773,24807854:25952256,431045,52847 -(1,23562:6630773,24807854:0,0,0 -g1,23562:6630773,24807854 -g1,23562:6630773,24807854 -g1,23562:6303093,24807854 -(1,23562:6303093,24807854:0,0,0 -) -g1,23562:6630773,24807854 -) -g1,23563:11278128,24807854 -k1,23563:11278128,24807854:0 -h1,23563:11942036,24807854:0,0,0 -k1,23563:32583028,24807854:20640992 -g1,23563:32583028,24807854 -) -(1,23564:6630773,25492709:25952256,424439,112852 -h1,23564:6630773,25492709:0,0,0 -g1,23564:6962727,25492709 -g1,23564:7294681,25492709 -g1,23564:20904792,25492709 -g1,23564:26548009,25492709 -g1,23564:27211917,25492709 -h1,23564:29203641,25492709:0,0,0 -k1,23564:32583029,25492709:3379388 -g1,23564:32583029,25492709 -) -] -) -g1,23566:32583029,25605561 -g1,23566:6630773,25605561 -g1,23566:6630773,25605561 -g1,23566:32583029,25605561 -g1,23566:32583029,25605561 -) -h1,23566:6630773,25802169:0,0,0 -v1,23570:6630773,26487024:0,393216,0 -(1,23592:6630773,32968513:25952256,6874705,196608 -g1,23592:6630773,32968513 -g1,23592:6630773,32968513 -g1,23592:6434165,32968513 -(1,23592:6434165,32968513:0,6874705,196608 -r1,23634:32779637,32968513:26345472,7071313,196608 -k1,23592:6434165,32968513:-26345472 -) -(1,23592:6434165,32968513:26345472,6874705,196608 -[1,23592:6630773,32968513:25952256,6678097,0 -(1,23572:6630773,26721461:25952256,431045,52847 -(1,23571:6630773,26721461:0,0,0 -g1,23571:6630773,26721461 -g1,23571:6630773,26721461 -g1,23571:6303093,26721461 -(1,23571:6303093,26721461:0,0,0 -) -g1,23571:6630773,26721461 -) -h1,23572:10946174,26721461:0,0,0 -k1,23572:32583030,26721461:21636856 -g1,23572:32583030,26721461 -) -(1,23578:6630773,27537388:25952256,424439,9908 -(1,23574:6630773,27537388:0,0,0 -g1,23574:6630773,27537388 -g1,23574:6630773,27537388 -g1,23574:6303093,27537388 -(1,23574:6303093,27537388:0,0,0 -) -g1,23574:6630773,27537388 -) -g1,23578:7626635,27537388 -g1,23578:7958589,27537388 -g1,23578:8290543,27537388 -g1,23578:9950313,27537388 -g1,23578:11610083,27537388 -g1,23578:13269853,27537388 -g1,23578:13601807,27537388 -h1,23578:14929623,27537388:0,0,0 -k1,23578:32583029,27537388:17653406 -g1,23578:32583029,27537388 -) -(1,23578:6630773,28222243:25952256,407923,9908 -h1,23578:6630773,28222243:0,0,0 -g1,23578:7626635,28222243 -g1,23578:8290543,28222243 -g1,23578:8622497,28222243 -g1,23578:9950313,28222243 -g1,23578:11610083,28222243 -g1,23578:11942037,28222243 -g1,23578:13269853,28222243 -g1,23578:13601807,28222243 -g1,23578:13933761,28222243 -h1,23578:14929623,28222243:0,0,0 -k1,23578:32583029,28222243:17653406 -g1,23578:32583029,28222243 -) -(1,23578:6630773,28907098:25952256,407923,9908 -h1,23578:6630773,28907098:0,0,0 -g1,23578:7626635,28907098 -g1,23578:8290543,28907098 -g1,23578:9950313,28907098 -g1,23578:11610083,28907098 -g1,23578:11942037,28907098 -g1,23578:12273991,28907098 -g1,23578:13269853,28907098 -g1,23578:13601807,28907098 -g1,23578:13933761,28907098 -g1,23578:14597669,28907098 -h1,23578:14929623,28907098:0,0,0 -k1,23578:32583029,28907098:17653406 -g1,23578:32583029,28907098 -) -(1,23580:6630773,29723025:25952256,431045,79822 -(1,23579:6630773,29723025:0,0,0 -g1,23579:6630773,29723025 -g1,23579:6630773,29723025 -g1,23579:6303093,29723025 -(1,23579:6303093,29723025:0,0,0 -) -g1,23579:6630773,29723025 -) -h1,23580:14265714,29723025:0,0,0 -k1,23580:32583030,29723025:18317316 -g1,23580:32583030,29723025 -) -(1,23584:6630773,30538952:25952256,424439,79822 -(1,23582:6630773,30538952:0,0,0 -g1,23582:6630773,30538952 -g1,23582:6630773,30538952 -g1,23582:6303093,30538952 -(1,23582:6303093,30538952:0,0,0 -) -g1,23582:6630773,30538952 -) -g1,23584:7626635,30538952 -g1,23584:8954451,30538952 -g1,23584:9618359,30538952 -g1,23584:9950313,30538952 -g1,23584:11610083,30538952 -g1,23584:12273991,30538952 -g1,23584:12605945,30538952 -g1,23584:13269853,30538952 -h1,23584:13933761,30538952:0,0,0 -k1,23584:32583029,30538952:18649268 -g1,23584:32583029,30538952 -) -(1,23586:6630773,31354879:25952256,431045,106246 -(1,23585:6630773,31354879:0,0,0 -g1,23585:6630773,31354879 -g1,23585:6630773,31354879 -g1,23585:6303093,31354879 -(1,23585:6303093,31354879:0,0,0 -) -g1,23585:6630773,31354879 -) -k1,23586:6630773,31354879:0 -g1,23586:13933760,31354879 -h1,23586:15925484,31354879:0,0,0 -k1,23586:32583029,31354879:16657545 -g1,23586:32583029,31354879 -) -(1,23591:6630773,32170806:25952256,424439,9908 -(1,23588:6630773,32170806:0,0,0 -g1,23588:6630773,32170806 -g1,23588:6630773,32170806 -g1,23588:6303093,32170806 -(1,23588:6303093,32170806:0,0,0 -) -g1,23588:6630773,32170806 -) -g1,23591:7626635,32170806 -g1,23591:7958589,32170806 -g1,23591:8290543,32170806 -g1,23591:8622497,32170806 -g1,23591:8954451,32170806 -g1,23591:9286405,32170806 -g1,23591:9618359,32170806 -g1,23591:9950313,32170806 -g1,23591:11610083,32170806 -g1,23591:11942037,32170806 -g1,23591:12273991,32170806 -g1,23591:12605945,32170806 -g1,23591:12937899,32170806 -g1,23591:13269853,32170806 -g1,23591:13601807,32170806 -g1,23591:13933761,32170806 -g1,23591:15593531,32170806 -g1,23591:15925485,32170806 -g1,23591:16257439,32170806 -g1,23591:16589393,32170806 -g1,23591:16921347,32170806 -g1,23591:17253301,32170806 -g1,23591:17585255,32170806 -g1,23591:17917209,32170806 -g1,23591:19576979,32170806 -g1,23591:19908933,32170806 -g1,23591:20240887,32170806 -g1,23591:20572841,32170806 -g1,23591:20904795,32170806 -g1,23591:21236749,32170806 -g1,23591:21568703,32170806 -g1,23591:21900657,32170806 -h1,23591:23228473,32170806:0,0,0 -k1,23591:32583029,32170806:9354556 -g1,23591:32583029,32170806 -) -(1,23591:6630773,32855661:25952256,424439,112852 -h1,23591:6630773,32855661:0,0,0 -g1,23591:7626635,32855661 -g1,23591:7958589,32855661 -g1,23591:8290543,32855661 -g1,23591:11610082,32855661 -g1,23591:11942036,32855661 -g1,23591:12273990,32855661 -g1,23591:15593529,32855661 -g1,23591:15925483,32855661 -g1,23591:16257437,32855661 -g1,23591:19576976,32855661 -h1,23591:23228469,32855661:0,0,0 -k1,23591:32583029,32855661:9354560 -g1,23591:32583029,32855661 -) -] -) -g1,23592:32583029,32968513 -g1,23592:6630773,32968513 -g1,23592:6630773,32968513 -g1,23592:32583029,32968513 -g1,23592:32583029,32968513 -) -h1,23592:6630773,33165121:0,0,0 -(1,23596:6630773,34030201:25952256,513147,134348 -h1,23595:6630773,34030201:983040,0,0 -k1,23595:8654048,34030201:280017 -k1,23595:11373316,34030201:280018 -k1,23595:14036222,34030201:280017 -k1,23595:16384556,34030201:280018 -k1,23595:17656133,34030201:280017 -k1,23595:20794831,34030201:280018 -k1,23595:22147017,34030201:280017 -k1,23595:24168327,34030201:280018 -k1,23595:26236166,34030201:280017 -k1,23595:27132222,34030201:280018 -k1,23595:30386918,34030201:280017 -k1,23595:32583029,34030201:0 -) -(1,23596:6630773,34895281:25952256,513147,134348 -k1,23595:8383260,34895281:161273 -k1,23595:10926767,34895281:161273 -k1,23595:11858743,34895281:161273 -k1,23595:15247009,34895281:161273 -k1,23595:18480610,34895281:161273 -k1,23595:21212860,34895281:161273 -k1,23595:22577375,34895281:161274 -k1,23595:25004228,34895281:161273 -k1,23595:25890329,34895281:161273 -k1,23595:27336108,34895281:161273 -k1,23595:29816700,34895281:161273 -k1,23595:31169418,34895281:161273 -k1,23596:32583029,34895281:0 -) -(1,23596:6630773,35760361:25952256,513147,134348 -k1,23595:7835839,35760361:214817 -k1,23595:9791949,35760361:214818 -k1,23595:11794588,35760361:214817 -k1,23595:13000966,35760361:214818 -k1,23595:16508312,35760361:214817 -k1,23595:18268469,35760361:214818 -k1,23595:20195742,35760361:214817 -k1,23595:21429644,35760361:214817 -k1,23595:23910042,35760361:214818 -k1,23595:25225864,35760361:214817 -k1,23595:26950632,35760361:214818 -k1,23595:29400882,35760361:214817 -k1,23595:30340528,35760361:214818 -k1,23595:31839851,35760361:214817 -k1,23595:32583029,35760361:0 -) -(1,23596:6630773,36625441:25952256,513147,134348 -g1,23595:9095582,36625441 -g1,23595:10684174,36625441 -g1,23595:13585452,36625441 -g1,23595:14316178,36625441 -k1,23596:32583029,36625441:14625671 -g1,23596:32583029,36625441 -) -v1,23598:6630773,37310296:0,393216,0 -(1,23604:6630773,39027295:25952256,2110215,196608 -g1,23604:6630773,39027295 -g1,23604:6630773,39027295 -g1,23604:6434165,39027295 -(1,23604:6434165,39027295:0,2110215,196608 -r1,23634:32779637,39027295:26345472,2306823,196608 -k1,23604:6434165,39027295:-26345472 -) -(1,23604:6434165,39027295:26345472,2110215,196608 -[1,23604:6630773,39027295:25952256,1913607,0 -(1,23600:6630773,37544733:25952256,431045,52847 -(1,23599:6630773,37544733:0,0,0 -g1,23599:6630773,37544733 -g1,23599:6630773,37544733 -g1,23599:6303093,37544733 -(1,23599:6303093,37544733:0,0,0 -) -g1,23599:6630773,37544733 -) -g1,23600:11278128,37544733 -k1,23600:11278128,37544733:0 -h1,23600:11942036,37544733:0,0,0 -k1,23600:32583028,37544733:20640992 -g1,23600:32583028,37544733 -) -(1,23601:6630773,38229588:25952256,424439,112852 -h1,23601:6630773,38229588:0,0,0 -g1,23601:6962727,38229588 -g1,23601:7294681,38229588 -k1,23601:7294681,38229588:0 -h1,23601:20572838,38229588:0,0,0 -k1,23601:32583029,38229588:12010191 -g1,23601:32583029,38229588 -) -(1,23602:6630773,38914443:25952256,424439,112852 -h1,23602:6630773,38914443:0,0,0 -g1,23602:6962727,38914443 -g1,23602:7294681,38914443 -g1,23602:7626635,38914443 -g1,23602:7958589,38914443 -g1,23602:8290543,38914443 -g1,23602:8622497,38914443 -g1,23602:8954451,38914443 -g1,23602:9286405,38914443 -g1,23602:9618359,38914443 -g1,23602:9950313,38914443 -g1,23602:10282267,38914443 -g1,23602:15925484,38914443 -g1,23602:16589392,38914443 -g1,23602:18913070,38914443 -g1,23602:22896517,38914443 -g1,23602:23560425,38914443 -h1,23602:25220195,38914443:0,0,0 -k1,23602:32583029,38914443:7362834 -g1,23602:32583029,38914443 -) -] -) -g1,23604:32583029,39027295 -g1,23604:6630773,39027295 -g1,23604:6630773,39027295 -g1,23604:32583029,39027295 -g1,23604:32583029,39027295 -) -h1,23604:6630773,39223903:0,0,0 -v1,23608:6630773,39908758:0,393216,0 -(1,23630:6630773,45510161:25952256,5994619,196608 -g1,23630:6630773,45510161 -g1,23630:6630773,45510161 -g1,23630:6434165,45510161 -(1,23630:6434165,45510161:0,5994619,196608 -r1,23634:32779637,45510161:26345472,6191227,196608 -k1,23630:6434165,45510161:-26345472 -) -(1,23630:6434165,45510161:26345472,5994619,196608 -[1,23630:6630773,45510161:25952256,5798011,0 -(1,23610:6630773,40143195:25952256,431045,52847 -(1,23609:6630773,40143195:0,0,0 -g1,23609:6630773,40143195 -g1,23609:6630773,40143195 -g1,23609:6303093,40143195 -(1,23609:6303093,40143195:0,0,0 -) -g1,23609:6630773,40143195 -) -h1,23610:10946174,40143195:0,0,0 -k1,23610:32583030,40143195:21636856 -g1,23610:32583030,40143195 -) -(1,23616:6630773,40783105:25952256,424439,9908 -(1,23612:6630773,40783105:0,0,0 -g1,23612:6630773,40783105 -g1,23612:6630773,40783105 -g1,23612:6303093,40783105 -(1,23612:6303093,40783105:0,0,0 -) -g1,23612:6630773,40783105 -) -g1,23616:7626635,40783105 -g1,23616:7958589,40783105 -g1,23616:8290543,40783105 -g1,23616:9950313,40783105 -g1,23616:11610083,40783105 -g1,23616:13269853,40783105 -h1,23616:14597669,40783105:0,0,0 -k1,23616:32583029,40783105:17985360 -g1,23616:32583029,40783105 -) -(1,23616:6630773,41467960:25952256,407923,9908 -h1,23616:6630773,41467960:0,0,0 -g1,23616:7626635,41467960 -g1,23616:8290543,41467960 -g1,23616:8622497,41467960 -g1,23616:9950313,41467960 -g1,23616:11610083,41467960 -g1,23616:11942037,41467960 -g1,23616:13269853,41467960 -g1,23616:13601807,41467960 -h1,23616:14597669,41467960:0,0,0 -k1,23616:32583029,41467960:17985360 -g1,23616:32583029,41467960 -) -(1,23616:6630773,42152815:25952256,407923,9908 -h1,23616:6630773,42152815:0,0,0 -g1,23616:7626635,42152815 -g1,23616:8290543,42152815 -g1,23616:9950313,42152815 -g1,23616:11610083,42152815 -g1,23616:11942037,42152815 -g1,23616:12273991,42152815 -g1,23616:13269853,42152815 -g1,23616:13601807,42152815 -g1,23616:14265715,42152815 -h1,23616:14597669,42152815:0,0,0 -k1,23616:32583029,42152815:17985360 -g1,23616:32583029,42152815 -) -(1,23618:6630773,42792725:25952256,431045,79822 -(1,23617:6630773,42792725:0,0,0 -g1,23617:6630773,42792725 -g1,23617:6630773,42792725 -g1,23617:6303093,42792725 -(1,23617:6303093,42792725:0,0,0 -) -g1,23617:6630773,42792725 -) -h1,23618:14265714,42792725:0,0,0 -k1,23618:32583030,42792725:18317316 -g1,23618:32583030,42792725 -) -(1,23622:6630773,43432634:25952256,424439,79822 -(1,23620:6630773,43432634:0,0,0 -g1,23620:6630773,43432634 -g1,23620:6630773,43432634 -g1,23620:6303093,43432634 -(1,23620:6303093,43432634:0,0,0 -) -g1,23620:6630773,43432634 -) -g1,23622:7626635,43432634 -g1,23622:8954451,43432634 -g1,23622:10946175,43432634 -g1,23622:11942037,43432634 -h1,23622:12605945,43432634:0,0,0 -k1,23622:32583029,43432634:19977084 -g1,23622:32583029,43432634 -) -(1,23624:6630773,44072544:25952256,431045,106246 -(1,23623:6630773,44072544:0,0,0 -g1,23623:6630773,44072544 -g1,23623:6630773,44072544 -g1,23623:6303093,44072544 -(1,23623:6303093,44072544:0,0,0 -) -g1,23623:6630773,44072544 -) -k1,23624:6630773,44072544:0 -g1,23624:13933760,44072544 -h1,23624:15925484,44072544:0,0,0 -k1,23624:32583029,44072544:16657545 -g1,23624:32583029,44072544 -) -(1,23629:6630773,44712454:25952256,424439,9908 -(1,23626:6630773,44712454:0,0,0 -g1,23626:6630773,44712454 -g1,23626:6630773,44712454 -g1,23626:6303093,44712454 -(1,23626:6303093,44712454:0,0,0 -) -g1,23626:6630773,44712454 -) -g1,23629:7626635,44712454 -g1,23629:7958589,44712454 -g1,23629:8290543,44712454 -g1,23629:8622497,44712454 -g1,23629:8954451,44712454 -g1,23629:9286405,44712454 -g1,23629:9618359,44712454 -g1,23629:9950313,44712454 -g1,23629:11610083,44712454 -g1,23629:11942037,44712454 -g1,23629:12273991,44712454 -g1,23629:12605945,44712454 -g1,23629:12937899,44712454 -g1,23629:13269853,44712454 -g1,23629:13601807,44712454 -g1,23629:13933761,44712454 -g1,23629:15593531,44712454 -g1,23629:15925485,44712454 -g1,23629:16257439,44712454 -g1,23629:16589393,44712454 -g1,23629:16921347,44712454 -g1,23629:17253301,44712454 -g1,23629:17585255,44712454 -g1,23629:17917209,44712454 -g1,23629:19576979,44712454 -g1,23629:19908933,44712454 -g1,23629:20240887,44712454 -g1,23629:20572841,44712454 -g1,23629:20904795,44712454 -g1,23629:21236749,44712454 -g1,23629:21568703,44712454 -g1,23629:21900657,44712454 -h1,23629:23228473,44712454:0,0,0 -k1,23629:32583029,44712454:9354556 -g1,23629:32583029,44712454 -) -(1,23629:6630773,45397309:25952256,424439,112852 -h1,23629:6630773,45397309:0,0,0 -g1,23629:7626635,45397309 -g1,23629:7958589,45397309 -g1,23629:8290543,45397309 -g1,23629:11610082,45397309 -g1,23629:11942036,45397309 -g1,23629:12273990,45397309 -g1,23629:15593529,45397309 -g1,23629:15925483,45397309 -g1,23629:16257437,45397309 -g1,23629:19576976,45397309 -h1,23629:23228469,45397309:0,0,0 -k1,23629:32583029,45397309:9354560 -g1,23629:32583029,45397309 -) -] -) -g1,23630:32583029,45510161 -g1,23630:6630773,45510161 -g1,23630:6630773,45510161 -g1,23630:32583029,45510161 -g1,23630:32583029,45510161 -) -h1,23630:6630773,45706769:0,0,0 -] -(1,23634:32583029,45706769:0,0,0 -g1,23634:32583029,45706769 -) -) -] -(1,23634:6630773,47279633:25952256,0,0 -h1,23634:6630773,47279633:25952256,0,0 -) -] -(1,23634:4262630,4025873:0,0,0 -[1,23634:-473656,4025873:0,0,0 -(1,23634:-473656,-710413:0,0,0 -(1,23634:-473656,-710413:0,0,0 -g1,23634:-473656,-710413 -) -g1,23634:-473656,-710413 -) -] -) -] -!30860 -}406 -Input:4418:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4419:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4420:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4421:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,23632:6630773,45706769:25952256,40108032,0 +v1,23534:6630773,6254097:0,393216,0 +(1,23534:6630773,11211682:25952256,5350801,196608 +g1,23534:6630773,11211682 +g1,23534:6630773,11211682 +g1,23534:6434165,11211682 +(1,23534:6434165,11211682:0,5350801,196608 +r1,23632:32779637,11211682:26345472,5547409,196608 +k1,23534:6434165,11211682:-26345472 +) +(1,23534:6434165,11211682:26345472,5350801,196608 +[1,23534:6630773,11211682:25952256,5154193,0 +(1,23520:6630773,6465412:25952256,407923,9908 +h1,23520:6630773,6465412:0,0,0 +g1,23520:7626635,6465412 +g1,23520:8290543,6465412 +g1,23520:8622497,6465412 +g1,23520:9950313,6465412 +g1,23520:11610083,6465412 +g1,23520:11942037,6465412 +g1,23520:13269853,6465412 +g1,23520:13601807,6465412 +h1,23520:14597669,6465412:0,0,0 +k1,23520:32583029,6465412:17985360 +g1,23520:32583029,6465412 +) +(1,23520:6630773,7150267:25952256,407923,9908 +h1,23520:6630773,7150267:0,0,0 +g1,23520:7626635,7150267 +g1,23520:8290543,7150267 +g1,23520:9950313,7150267 +g1,23520:11610083,7150267 +g1,23520:11942037,7150267 +g1,23520:12273991,7150267 +g1,23520:13269853,7150267 +g1,23520:13601807,7150267 +g1,23520:14265715,7150267 +h1,23520:14597669,7150267:0,0,0 +k1,23520:32583029,7150267:17985360 +g1,23520:32583029,7150267 +) +(1,23522:6630773,7966194:25952256,431045,79822 +(1,23521:6630773,7966194:0,0,0 +g1,23521:6630773,7966194 +g1,23521:6630773,7966194 +g1,23521:6303093,7966194 +(1,23521:6303093,7966194:0,0,0 +) +g1,23521:6630773,7966194 +) +h1,23522:14265714,7966194:0,0,0 +k1,23522:32583030,7966194:18317316 +g1,23522:32583030,7966194 +) +(1,23526:6630773,8782121:25952256,424439,79822 +(1,23524:6630773,8782121:0,0,0 +g1,23524:6630773,8782121 +g1,23524:6630773,8782121 +g1,23524:6303093,8782121 +(1,23524:6303093,8782121:0,0,0 +) +g1,23524:6630773,8782121 +) +g1,23526:7626635,8782121 +g1,23526:8954451,8782121 +g1,23526:10946175,8782121 +g1,23526:11942037,8782121 +h1,23526:12605945,8782121:0,0,0 +k1,23526:32583029,8782121:19977084 +g1,23526:32583029,8782121 +) +(1,23528:6630773,9598048:25952256,431045,106246 +(1,23527:6630773,9598048:0,0,0 +g1,23527:6630773,9598048 +g1,23527:6630773,9598048 +g1,23527:6303093,9598048 +(1,23527:6303093,9598048:0,0,0 +) +g1,23527:6630773,9598048 +) +k1,23528:6630773,9598048:0 +g1,23528:13933760,9598048 +h1,23528:15925484,9598048:0,0,0 +k1,23528:32583029,9598048:16657545 +g1,23528:32583029,9598048 +) +(1,23533:6630773,10413975:25952256,424439,9908 +(1,23530:6630773,10413975:0,0,0 +g1,23530:6630773,10413975 +g1,23530:6630773,10413975 +g1,23530:6303093,10413975 +(1,23530:6303093,10413975:0,0,0 +) +g1,23530:6630773,10413975 +) +g1,23533:7626635,10413975 +g1,23533:7958589,10413975 +g1,23533:8290543,10413975 +g1,23533:8622497,10413975 +g1,23533:8954451,10413975 +g1,23533:9286405,10413975 +g1,23533:9618359,10413975 +g1,23533:9950313,10413975 +g1,23533:11610083,10413975 +g1,23533:11942037,10413975 +g1,23533:12273991,10413975 +g1,23533:12605945,10413975 +g1,23533:12937899,10413975 +g1,23533:13269853,10413975 +g1,23533:13601807,10413975 +g1,23533:13933761,10413975 +g1,23533:15593531,10413975 +g1,23533:15925485,10413975 +g1,23533:16257439,10413975 +g1,23533:16589393,10413975 +g1,23533:16921347,10413975 +g1,23533:17253301,10413975 +g1,23533:17585255,10413975 +g1,23533:17917209,10413975 +g1,23533:19576979,10413975 +g1,23533:19908933,10413975 +g1,23533:20240887,10413975 +g1,23533:20572841,10413975 +g1,23533:20904795,10413975 +g1,23533:21236749,10413975 +g1,23533:21568703,10413975 +g1,23533:21900657,10413975 +h1,23533:23228473,10413975:0,0,0 +k1,23533:32583029,10413975:9354556 +g1,23533:32583029,10413975 +) +(1,23533:6630773,11098830:25952256,424439,112852 +h1,23533:6630773,11098830:0,0,0 +g1,23533:7626635,11098830 +g1,23533:7958589,11098830 +g1,23533:8290543,11098830 +g1,23533:11610082,11098830 +g1,23533:11942036,11098830 +g1,23533:12273990,11098830 +g1,23533:15593529,11098830 +g1,23533:15925483,11098830 +g1,23533:16257437,11098830 +g1,23533:19576976,11098830 +h1,23533:23228469,11098830:0,0,0 +k1,23533:32583029,11098830:9354560 +g1,23533:32583029,11098830 +) +] +) +g1,23534:32583029,11211682 +g1,23534:6630773,11211682 +g1,23534:6630773,11211682 +g1,23534:32583029,11211682 +g1,23534:32583029,11211682 +) +h1,23534:6630773,11408290:0,0,0 +v1,23538:6630773,12273370:0,393216,0 +(1,23539:6630773,16132650:25952256,4252496,0 +g1,23539:6630773,16132650 +g1,23539:6237557,16132650 +r1,23632:6368629,16132650:131072,4252496,0 +g1,23539:6567858,16132650 +g1,23539:6764466,16132650 +[1,23539:6764466,16132650:25818563,4252496,0 +(1,23539:6764466,12545847:25818563,665693,196608 +(1,23538:6764466,12545847:0,665693,196608 +r1,23632:7868133,12545847:1103667,862301,196608 +k1,23538:6764466,12545847:-1103667 +) +(1,23538:6764466,12545847:1103667,665693,196608 +) +k1,23538:8153501,12545847:285368 +k1,23538:9879719,12545847:327680 +k1,23538:11734020,12545847:285369 +k1,23538:13038473,12545847:285368 +k1,23538:14306882,12545847:285369 +(1,23538:14306882,12545847:0,452978,122846 +r1,23632:22754519,12545847:8447637,575824,122846 +k1,23538:14306882,12545847:-8447637 +) +(1,23538:14306882,12545847:8447637,452978,122846 +k1,23538:14306882,12545847:3277 +h1,23538:22751242,12545847:0,411205,112570 +) +k1,23538:23039887,12545847:285368 +k1,23538:24719206,12545847:285368 +k1,23538:27700071,12545847:285369 +(1,23538:27700071,12545847:0,452978,115847 +r1,23632:31575455,12545847:3875384,568825,115847 +k1,23538:27700071,12545847:-3875384 +) +(1,23538:27700071,12545847:3875384,452978,115847 +k1,23538:27700071,12545847:3277 +h1,23538:31572178,12545847:0,411205,112570 +) +k1,23538:31860823,12545847:285368 +k1,23539:32583029,12545847:0 +) +(1,23539:6764466,13410927:25818563,513147,134348 +k1,23538:8755230,13410927:279619 +k1,23538:9702005,13410927:279619 +(1,23538:9702005,13410927:0,452978,115847 +r1,23632:13225677,13410927:3523672,568825,115847 +k1,23538:9702005,13410927:-3523672 +) +(1,23538:9702005,13410927:3523672,452978,115847 +k1,23538:9702005,13410927:3277 +h1,23538:13222400,13410927:0,411205,112570 +) +k1,23538:13678966,13410927:279619 +k1,23538:16921468,13410927:279619 +k1,23538:18404328,13410927:279619 +k1,23538:20020881,13410927:279619 +k1,23538:21687242,13410927:279619 +k1,23538:23113086,13410927:279619 +k1,23538:23748565,13410927:279619 +k1,23538:25839599,13410927:279619 +k1,23538:26778510,13410927:279619 +k1,23538:28657207,13410927:279619 +k1,23538:29955911,13410927:279619 +k1,23538:31923737,13410927:279619 +k1,23538:32583029,13410927:0 +) +(1,23539:6764466,14276007:25818563,513147,134348 +k1,23538:7998264,14276007:214713 +k1,23538:10773469,14276007:214713 +k1,23538:11519680,14276007:214714 +k1,23538:12682044,14276007:214713 +k1,23538:14067230,14276007:214713 +k1,23538:14933371,14276007:214713 +k1,23538:16126538,14276007:214714 +k1,23538:18833585,14276007:214713 +k1,23538:20442249,14276007:214713 +k1,23538:21071790,14276007:214698 +k1,23538:24461067,14276007:214713 +k1,23538:25291818,14276007:214713 +k1,23538:26873612,14276007:214713 +k1,23538:27747618,14276007:214714 +k1,23538:29455897,14276007:214713 +k1,23538:30026470,14276007:214713 +k1,23538:32583029,14276007:0 +) +(1,23539:6764466,15141087:25818563,505283,134348 +k1,23538:8332266,15141087:208583 +k1,23538:9673311,15141087:208583 +k1,23538:11269948,15141087:208584 +k1,23538:12649004,15141087:208583 +k1,23538:15889282,15141087:208583 +k1,23538:18299875,15141087:208583 +k1,23538:20445702,15141087:208583 +k1,23538:22352323,15141087:208583 +k1,23538:23941095,15141087:208584 +k1,23538:26524047,15141087:208583 +k1,23538:30697558,15141087:208583 +k1,23538:32583029,15141087:0 +) +(1,23539:6764466,16006167:25818563,513147,126483 +g1,23538:7495192,16006167 +g1,23538:9319059,16006167 +g1,23538:12295704,16006167 +g1,23538:14192971,16006167 +g1,23538:15705542,16006167 +g1,23538:16896331,16006167 +k1,23539:32583029,16006167:13476824 +g1,23539:32583029,16006167 +) +] +g1,23539:32583029,16132650 +) +h1,23539:6630773,16132650:0,0,0 +(1,23542:6630773,16997730:25952256,513147,126483 +h1,23541:6630773,16997730:983040,0,0 +k1,23541:10531760,16997730:232937 +k1,23541:11747738,16997730:232938 +(1,23541:11747738,16997730:0,452978,122846 +r1,23632:18788529,16997730:7040791,575824,122846 +k1,23541:11747738,16997730:-7040791 +) +(1,23541:11747738,16997730:7040791,452978,122846 +k1,23541:11747738,16997730:3277 +h1,23541:18785252,16997730:0,411205,112570 +) +k1,23541:19021466,16997730:232937 +k1,23541:21956452,16997730:232937 +k1,23541:30073371,16997730:232938 +k1,23541:31700259,16997730:232937 +k1,23542:32583029,16997730:0 +) +(1,23542:6630773,17862810:25952256,505283,134348 +g1,23541:8018825,17862810 +g1,23541:11747168,17862810 +g1,23541:12597825,17862810 +g1,23541:14348291,17862810 +g1,23541:15566605,17862810 +g1,23541:18652695,17862810 +g1,23541:19503352,17862810 +g1,23541:21418314,17862810 +g1,23541:22075640,17862810 +g1,23541:24145267,17862810 +g1,23541:24995924,17862810 +g1,23541:26607454,17862810 +g1,23541:27568211,17862810 +k1,23542:32583029,17862810:2411728 +g1,23542:32583029,17862810 +) +(1,23544:6630773,18727890:25952256,513147,122846 +h1,23543:6630773,18727890:983040,0,0 +g1,23543:9009729,18727890 +g1,23543:11958193,18727890 +g1,23543:12816714,18727890 +g1,23543:13998983,18727890 +(1,23543:13998983,18727890:0,452978,122846 +r1,23632:21039774,18727890:7040791,575824,122846 +k1,23543:13998983,18727890:-7040791 +) +(1,23543:13998983,18727890:7040791,452978,122846 +k1,23543:13998983,18727890:3277 +h1,23543:21036497,18727890:0,411205,112570 +) +g1,23543:21239003,18727890 +g1,23543:22429792,18727890 +g1,23543:24704546,18727890 +k1,23544:32583029,18727890:5957623 +g1,23544:32583029,18727890 +) +v1,23546:6630773,19412745:0,393216,0 +(1,23552:6630773,21096714:25952256,2077185,196608 +g1,23552:6630773,21096714 +g1,23552:6630773,21096714 +g1,23552:6434165,21096714 +(1,23552:6434165,21096714:0,2077185,196608 +r1,23632:32779637,21096714:26345472,2273793,196608 +k1,23552:6434165,21096714:-26345472 +) +(1,23552:6434165,21096714:26345472,2077185,196608 +[1,23552:6630773,21096714:25952256,1880577,0 +(1,23551:6630773,19640576:25952256,424439,86428 +(1,23547:6630773,19640576:0,0,0 +g1,23547:6630773,19640576 +g1,23547:6630773,19640576 +g1,23547:6303093,19640576 +(1,23547:6303093,19640576:0,0,0 +) +g1,23547:6630773,19640576 +) +k1,23551:6630773,19640576:0 +g1,23551:8622497,19640576 +g1,23551:10614221,19640576 +g1,23551:12605945,19640576 +h1,23551:13933761,19640576:0,0,0 +k1,23551:32583029,19640576:18649268 +g1,23551:32583029,19640576 +) +(1,23551:6630773,20325431:25952256,407923,86428 +h1,23551:6630773,20325431:0,0,0 +g1,23551:6962727,20325431 +g1,23551:8622497,20325431 +g1,23551:10614221,20325431 +g1,23551:10946175,20325431 +g1,23551:12605945,20325431 +g1,23551:12937899,20325431 +h1,23551:13933761,20325431:0,0,0 +k1,23551:32583029,20325431:18649268 +g1,23551:32583029,20325431 +) +(1,23551:6630773,21010286:25952256,407923,86428 +h1,23551:6630773,21010286:0,0,0 +g1,23551:8622497,21010286 +g1,23551:10614221,21010286 +g1,23551:10946175,21010286 +g1,23551:11278129,21010286 +g1,23551:12605945,21010286 +g1,23551:12937899,21010286 +g1,23551:13601807,21010286 +h1,23551:13933761,21010286:0,0,0 +k1,23551:32583029,21010286:18649268 +g1,23551:32583029,21010286 +) +] +) +g1,23552:32583029,21096714 +g1,23552:6630773,21096714 +g1,23552:6630773,21096714 +g1,23552:32583029,21096714 +g1,23552:32583029,21096714 +) +h1,23552:6630773,21293322:0,0,0 +(1,23557:6630773,22158402:25952256,513147,115847 +h1,23555:6630773,22158402:983040,0,0 +k1,23555:8951266,22158402:140766 +k1,23555:10075072,22158402:140766 +k1,23555:10747335,22158402:140766 +k1,23555:12300402,22158402:140766 +k1,23555:13632613,22158402:140766 +k1,23555:14792464,22158402:140766 +k1,23555:17711956,22158402:140765 +k1,23555:19533065,22158402:140766 +k1,23555:21712001,22158402:140766 +k1,23555:22468805,22158402:140766 +k1,23555:22965431,22158402:140766 +k1,23555:25617537,22158402:140766 +k1,23555:27917059,22158402:140766 +(1,23555:27917059,22158402:0,459977,115847 +r1,23632:32495867,22158402:4578808,575824,115847 +k1,23555:27917059,22158402:-4578808 +) +(1,23555:27917059,22158402:4578808,459977,115847 +k1,23555:27917059,22158402:3277 +h1,23555:32492590,22158402:0,411205,112570 +) +k1,23555:32583029,22158402:0 +) +(1,23557:6630773,23023482:25952256,513147,134348 +k1,23555:8115416,23023482:293198 +k1,23555:10932405,23023482:293198 +k1,23556:14188486,23023482:293198 +k1,23556:16269505,23023482:293197 +k1,23556:19867684,23023482:293198 +k1,23556:21152442,23023482:293198 +k1,23556:22857941,23023482:293198 +k1,23556:23837301,23023482:293198 +k1,23556:25452360,23023482:293198 +k1,23556:26404849,23023482:293197 +k1,23556:27717132,23023482:293198 +k1,23556:29918083,23023482:293198 +k1,23556:31591469,23023482:293198 +k1,23556:32583029,23023482:0 +) +(1,23557:6630773,23888562:25952256,505283,134348 +g1,23556:9271218,23888562 +g1,23556:11168485,23888562 +g1,23556:14844399,23888562 +g1,23556:15695056,23888562 +g1,23556:18514414,23888562 +g1,23556:20396608,23888562 +k1,23557:32583029,23888562:10471344 +g1,23557:32583029,23888562 +) +v1,23559:6630773,24573417:0,393216,0 +(1,23564:6630773,25605561:25952256,1425360,196608 +g1,23564:6630773,25605561 +g1,23564:6630773,25605561 +g1,23564:6434165,25605561 +(1,23564:6434165,25605561:0,1425360,196608 +r1,23632:32779637,25605561:26345472,1621968,196608 +k1,23564:6434165,25605561:-26345472 +) +(1,23564:6434165,25605561:26345472,1425360,196608 +[1,23564:6630773,25605561:25952256,1228752,0 +(1,23561:6630773,24807854:25952256,431045,52847 +(1,23560:6630773,24807854:0,0,0 +g1,23560:6630773,24807854 +g1,23560:6630773,24807854 +g1,23560:6303093,24807854 +(1,23560:6303093,24807854:0,0,0 +) +g1,23560:6630773,24807854 +) +g1,23561:11278128,24807854 +k1,23561:11278128,24807854:0 +h1,23561:11942036,24807854:0,0,0 +k1,23561:32583028,24807854:20640992 +g1,23561:32583028,24807854 +) +(1,23562:6630773,25492709:25952256,424439,112852 +h1,23562:6630773,25492709:0,0,0 +g1,23562:6962727,25492709 +g1,23562:7294681,25492709 +g1,23562:20904792,25492709 +g1,23562:26548009,25492709 +g1,23562:27211917,25492709 +h1,23562:29203641,25492709:0,0,0 +k1,23562:32583029,25492709:3379388 +g1,23562:32583029,25492709 +) +] +) +g1,23564:32583029,25605561 +g1,23564:6630773,25605561 +g1,23564:6630773,25605561 +g1,23564:32583029,25605561 +g1,23564:32583029,25605561 +) +h1,23564:6630773,25802169:0,0,0 +v1,23568:6630773,26487024:0,393216,0 +(1,23590:6630773,32968513:25952256,6874705,196608 +g1,23590:6630773,32968513 +g1,23590:6630773,32968513 +g1,23590:6434165,32968513 +(1,23590:6434165,32968513:0,6874705,196608 +r1,23632:32779637,32968513:26345472,7071313,196608 +k1,23590:6434165,32968513:-26345472 +) +(1,23590:6434165,32968513:26345472,6874705,196608 +[1,23590:6630773,32968513:25952256,6678097,0 +(1,23570:6630773,26721461:25952256,431045,52847 +(1,23569:6630773,26721461:0,0,0 +g1,23569:6630773,26721461 +g1,23569:6630773,26721461 +g1,23569:6303093,26721461 +(1,23569:6303093,26721461:0,0,0 +) +g1,23569:6630773,26721461 +) +h1,23570:10946174,26721461:0,0,0 +k1,23570:32583030,26721461:21636856 +g1,23570:32583030,26721461 +) +(1,23576:6630773,27537388:25952256,424439,9908 +(1,23572:6630773,27537388:0,0,0 +g1,23572:6630773,27537388 +g1,23572:6630773,27537388 +g1,23572:6303093,27537388 +(1,23572:6303093,27537388:0,0,0 +) +g1,23572:6630773,27537388 +) +g1,23576:7626635,27537388 +g1,23576:7958589,27537388 +g1,23576:8290543,27537388 +g1,23576:9950313,27537388 +g1,23576:11610083,27537388 +g1,23576:13269853,27537388 +g1,23576:13601807,27537388 +h1,23576:14929623,27537388:0,0,0 +k1,23576:32583029,27537388:17653406 +g1,23576:32583029,27537388 +) +(1,23576:6630773,28222243:25952256,407923,9908 +h1,23576:6630773,28222243:0,0,0 +g1,23576:7626635,28222243 +g1,23576:8290543,28222243 +g1,23576:8622497,28222243 +g1,23576:9950313,28222243 +g1,23576:11610083,28222243 +g1,23576:11942037,28222243 +g1,23576:13269853,28222243 +g1,23576:13601807,28222243 +g1,23576:13933761,28222243 +h1,23576:14929623,28222243:0,0,0 +k1,23576:32583029,28222243:17653406 +g1,23576:32583029,28222243 +) +(1,23576:6630773,28907098:25952256,407923,9908 +h1,23576:6630773,28907098:0,0,0 +g1,23576:7626635,28907098 +g1,23576:8290543,28907098 +g1,23576:9950313,28907098 +g1,23576:11610083,28907098 +g1,23576:11942037,28907098 +g1,23576:12273991,28907098 +g1,23576:13269853,28907098 +g1,23576:13601807,28907098 +g1,23576:13933761,28907098 +g1,23576:14597669,28907098 +h1,23576:14929623,28907098:0,0,0 +k1,23576:32583029,28907098:17653406 +g1,23576:32583029,28907098 +) +(1,23578:6630773,29723025:25952256,431045,79822 +(1,23577:6630773,29723025:0,0,0 +g1,23577:6630773,29723025 +g1,23577:6630773,29723025 +g1,23577:6303093,29723025 +(1,23577:6303093,29723025:0,0,0 +) +g1,23577:6630773,29723025 +) +h1,23578:14265714,29723025:0,0,0 +k1,23578:32583030,29723025:18317316 +g1,23578:32583030,29723025 +) +(1,23582:6630773,30538952:25952256,424439,79822 +(1,23580:6630773,30538952:0,0,0 +g1,23580:6630773,30538952 +g1,23580:6630773,30538952 +g1,23580:6303093,30538952 +(1,23580:6303093,30538952:0,0,0 +) +g1,23580:6630773,30538952 +) +g1,23582:7626635,30538952 +g1,23582:8954451,30538952 +g1,23582:9618359,30538952 +g1,23582:9950313,30538952 +g1,23582:11610083,30538952 +g1,23582:12273991,30538952 +g1,23582:12605945,30538952 +g1,23582:13269853,30538952 +h1,23582:13933761,30538952:0,0,0 +k1,23582:32583029,30538952:18649268 +g1,23582:32583029,30538952 +) +(1,23584:6630773,31354879:25952256,431045,106246 +(1,23583:6630773,31354879:0,0,0 +g1,23583:6630773,31354879 +g1,23583:6630773,31354879 +g1,23583:6303093,31354879 +(1,23583:6303093,31354879:0,0,0 +) +g1,23583:6630773,31354879 +) +k1,23584:6630773,31354879:0 +g1,23584:13933760,31354879 +h1,23584:15925484,31354879:0,0,0 +k1,23584:32583029,31354879:16657545 +g1,23584:32583029,31354879 +) +(1,23589:6630773,32170806:25952256,424439,9908 +(1,23586:6630773,32170806:0,0,0 +g1,23586:6630773,32170806 +g1,23586:6630773,32170806 +g1,23586:6303093,32170806 +(1,23586:6303093,32170806:0,0,0 +) +g1,23586:6630773,32170806 +) +g1,23589:7626635,32170806 +g1,23589:7958589,32170806 +g1,23589:8290543,32170806 +g1,23589:8622497,32170806 +g1,23589:8954451,32170806 +g1,23589:9286405,32170806 +g1,23589:9618359,32170806 +g1,23589:9950313,32170806 +g1,23589:11610083,32170806 +g1,23589:11942037,32170806 +g1,23589:12273991,32170806 +g1,23589:12605945,32170806 +g1,23589:12937899,32170806 +g1,23589:13269853,32170806 +g1,23589:13601807,32170806 +g1,23589:13933761,32170806 +g1,23589:15593531,32170806 +g1,23589:15925485,32170806 +g1,23589:16257439,32170806 +g1,23589:16589393,32170806 +g1,23589:16921347,32170806 +g1,23589:17253301,32170806 +g1,23589:17585255,32170806 +g1,23589:17917209,32170806 +g1,23589:19576979,32170806 +g1,23589:19908933,32170806 +g1,23589:20240887,32170806 +g1,23589:20572841,32170806 +g1,23589:20904795,32170806 +g1,23589:21236749,32170806 +g1,23589:21568703,32170806 +g1,23589:21900657,32170806 +h1,23589:23228473,32170806:0,0,0 +k1,23589:32583029,32170806:9354556 +g1,23589:32583029,32170806 +) +(1,23589:6630773,32855661:25952256,424439,112852 +h1,23589:6630773,32855661:0,0,0 +g1,23589:7626635,32855661 +g1,23589:7958589,32855661 +g1,23589:8290543,32855661 +g1,23589:11610082,32855661 +g1,23589:11942036,32855661 +g1,23589:12273990,32855661 +g1,23589:15593529,32855661 +g1,23589:15925483,32855661 +g1,23589:16257437,32855661 +g1,23589:19576976,32855661 +h1,23589:23228469,32855661:0,0,0 +k1,23589:32583029,32855661:9354560 +g1,23589:32583029,32855661 +) +] +) +g1,23590:32583029,32968513 +g1,23590:6630773,32968513 +g1,23590:6630773,32968513 +g1,23590:32583029,32968513 +g1,23590:32583029,32968513 +) +h1,23590:6630773,33165121:0,0,0 +(1,23594:6630773,34030201:25952256,513147,134348 +h1,23593:6630773,34030201:983040,0,0 +k1,23593:8520415,34030201:146384 +k1,23593:11106048,34030201:146383 +k1,23593:13635321,34030201:146384 +k1,23593:15850021,34030201:146384 +k1,23593:16987964,34030201:146383 +k1,23593:19993028,34030201:146384 +k1,23593:21211580,34030201:146383 +k1,23593:24887078,34030201:146384 +k1,23593:25649500,34030201:146384 +k1,23593:28770562,34030201:146383 +k1,23593:31113057,34030201:146384 +k1,23593:32583029,34030201:0 +) +(1,23594:6630773,34895281:25952256,513147,134348 +k1,23593:9253226,34895281:240219 +k1,23593:10264148,34895281:240219 +k1,23593:13731360,34895281:240219 +k1,23593:17043907,34895281:240219 +k1,23593:19855103,34895281:240219 +k1,23593:21298564,34895281:240220 +k1,23593:23804363,34895281:240219 +k1,23593:24769410,34895281:240219 +k1,23593:26294135,34895281:240219 +k1,23593:28853673,34895281:240219 +k1,23593:30285337,34895281:240219 +k1,23593:32583029,34895281:0 +) +(1,23594:6630773,35760361:25952256,513147,126483 +k1,23593:10267517,35760361:133844 +k1,23593:11392922,35760361:133845 +k1,23593:14819295,35760361:133844 +k1,23593:16498479,35760361:133845 +k1,23593:18344779,35760361:133844 +k1,23593:19497708,35760361:133844 +k1,23593:21897133,35760361:133845 +k1,23593:23131982,35760361:133844 +k1,23593:24775776,35760361:133844 +k1,23593:27145054,35760361:133845 +k1,23593:28003726,35760361:133844 +k1,23593:29422077,35760361:133845 +k1,23593:30317449,35760361:133844 +k1,23593:32583029,35760361:0 +) +(1,23594:6630773,36625441:25952256,505283,134348 +g1,23593:8219365,36625441 +g1,23593:11120643,36625441 +g1,23593:11851369,36625441 +k1,23594:32583029,36625441:17090480 +g1,23594:32583029,36625441 +) +v1,23596:6630773,37310296:0,393216,0 +(1,23602:6630773,39027295:25952256,2110215,196608 +g1,23602:6630773,39027295 +g1,23602:6630773,39027295 +g1,23602:6434165,39027295 +(1,23602:6434165,39027295:0,2110215,196608 +r1,23632:32779637,39027295:26345472,2306823,196608 +k1,23602:6434165,39027295:-26345472 +) +(1,23602:6434165,39027295:26345472,2110215,196608 +[1,23602:6630773,39027295:25952256,1913607,0 +(1,23598:6630773,37544733:25952256,431045,52847 +(1,23597:6630773,37544733:0,0,0 +g1,23597:6630773,37544733 +g1,23597:6630773,37544733 +g1,23597:6303093,37544733 +(1,23597:6303093,37544733:0,0,0 +) +g1,23597:6630773,37544733 +) +g1,23598:11278128,37544733 +k1,23598:11278128,37544733:0 +h1,23598:11942036,37544733:0,0,0 +k1,23598:32583028,37544733:20640992 +g1,23598:32583028,37544733 +) +(1,23599:6630773,38229588:25952256,424439,112852 +h1,23599:6630773,38229588:0,0,0 +g1,23599:6962727,38229588 +g1,23599:7294681,38229588 +k1,23599:7294681,38229588:0 +h1,23599:20572838,38229588:0,0,0 +k1,23599:32583029,38229588:12010191 +g1,23599:32583029,38229588 +) +(1,23600:6630773,38914443:25952256,424439,112852 +h1,23600:6630773,38914443:0,0,0 +g1,23600:6962727,38914443 +g1,23600:7294681,38914443 +g1,23600:7626635,38914443 +g1,23600:7958589,38914443 +g1,23600:8290543,38914443 +g1,23600:8622497,38914443 +g1,23600:8954451,38914443 +g1,23600:9286405,38914443 +g1,23600:9618359,38914443 +g1,23600:9950313,38914443 +g1,23600:10282267,38914443 +g1,23600:15925484,38914443 +g1,23600:16589392,38914443 +g1,23600:18913070,38914443 +g1,23600:22896517,38914443 +g1,23600:23560425,38914443 +h1,23600:25220195,38914443:0,0,0 +k1,23600:32583029,38914443:7362834 +g1,23600:32583029,38914443 +) +] +) +g1,23602:32583029,39027295 +g1,23602:6630773,39027295 +g1,23602:6630773,39027295 +g1,23602:32583029,39027295 +g1,23602:32583029,39027295 +) +h1,23602:6630773,39223903:0,0,0 +v1,23606:6630773,39908758:0,393216,0 +(1,23628:6630773,45510161:25952256,5994619,196608 +g1,23628:6630773,45510161 +g1,23628:6630773,45510161 +g1,23628:6434165,45510161 +(1,23628:6434165,45510161:0,5994619,196608 +r1,23632:32779637,45510161:26345472,6191227,196608 +k1,23628:6434165,45510161:-26345472 +) +(1,23628:6434165,45510161:26345472,5994619,196608 +[1,23628:6630773,45510161:25952256,5798011,0 +(1,23608:6630773,40143195:25952256,431045,52847 +(1,23607:6630773,40143195:0,0,0 +g1,23607:6630773,40143195 +g1,23607:6630773,40143195 +g1,23607:6303093,40143195 +(1,23607:6303093,40143195:0,0,0 +) +g1,23607:6630773,40143195 +) +h1,23608:10946174,40143195:0,0,0 +k1,23608:32583030,40143195:21636856 +g1,23608:32583030,40143195 +) +(1,23614:6630773,40783105:25952256,424439,9908 +(1,23610:6630773,40783105:0,0,0 +g1,23610:6630773,40783105 +g1,23610:6630773,40783105 +g1,23610:6303093,40783105 +(1,23610:6303093,40783105:0,0,0 +) +g1,23610:6630773,40783105 +) +g1,23614:7626635,40783105 +g1,23614:7958589,40783105 +g1,23614:8290543,40783105 +g1,23614:9950313,40783105 +g1,23614:11610083,40783105 +g1,23614:13269853,40783105 +h1,23614:14597669,40783105:0,0,0 +k1,23614:32583029,40783105:17985360 +g1,23614:32583029,40783105 +) +(1,23614:6630773,41467960:25952256,407923,9908 +h1,23614:6630773,41467960:0,0,0 +g1,23614:7626635,41467960 +g1,23614:8290543,41467960 +g1,23614:8622497,41467960 +g1,23614:9950313,41467960 +g1,23614:11610083,41467960 +g1,23614:11942037,41467960 +g1,23614:13269853,41467960 +g1,23614:13601807,41467960 +h1,23614:14597669,41467960:0,0,0 +k1,23614:32583029,41467960:17985360 +g1,23614:32583029,41467960 +) +(1,23614:6630773,42152815:25952256,407923,9908 +h1,23614:6630773,42152815:0,0,0 +g1,23614:7626635,42152815 +g1,23614:8290543,42152815 +g1,23614:9950313,42152815 +g1,23614:11610083,42152815 +g1,23614:11942037,42152815 +g1,23614:12273991,42152815 +g1,23614:13269853,42152815 +g1,23614:13601807,42152815 +g1,23614:14265715,42152815 +h1,23614:14597669,42152815:0,0,0 +k1,23614:32583029,42152815:17985360 +g1,23614:32583029,42152815 +) +(1,23616:6630773,42792725:25952256,431045,79822 +(1,23615:6630773,42792725:0,0,0 +g1,23615:6630773,42792725 +g1,23615:6630773,42792725 +g1,23615:6303093,42792725 +(1,23615:6303093,42792725:0,0,0 +) +g1,23615:6630773,42792725 +) +h1,23616:14265714,42792725:0,0,0 +k1,23616:32583030,42792725:18317316 +g1,23616:32583030,42792725 +) +(1,23620:6630773,43432634:25952256,424439,79822 +(1,23618:6630773,43432634:0,0,0 +g1,23618:6630773,43432634 +g1,23618:6630773,43432634 +g1,23618:6303093,43432634 +(1,23618:6303093,43432634:0,0,0 +) +g1,23618:6630773,43432634 +) +g1,23620:7626635,43432634 +g1,23620:8954451,43432634 +g1,23620:10946175,43432634 +g1,23620:11942037,43432634 +h1,23620:12605945,43432634:0,0,0 +k1,23620:32583029,43432634:19977084 +g1,23620:32583029,43432634 +) +(1,23622:6630773,44072544:25952256,431045,106246 +(1,23621:6630773,44072544:0,0,0 +g1,23621:6630773,44072544 +g1,23621:6630773,44072544 +g1,23621:6303093,44072544 +(1,23621:6303093,44072544:0,0,0 +) +g1,23621:6630773,44072544 +) +k1,23622:6630773,44072544:0 +g1,23622:13933760,44072544 +h1,23622:15925484,44072544:0,0,0 +k1,23622:32583029,44072544:16657545 +g1,23622:32583029,44072544 +) +(1,23627:6630773,44712454:25952256,424439,9908 +(1,23624:6630773,44712454:0,0,0 +g1,23624:6630773,44712454 +g1,23624:6630773,44712454 +g1,23624:6303093,44712454 +(1,23624:6303093,44712454:0,0,0 +) +g1,23624:6630773,44712454 +) +g1,23627:7626635,44712454 +g1,23627:7958589,44712454 +g1,23627:8290543,44712454 +g1,23627:8622497,44712454 +g1,23627:8954451,44712454 +g1,23627:9286405,44712454 +g1,23627:9618359,44712454 +g1,23627:9950313,44712454 +g1,23627:11610083,44712454 +g1,23627:11942037,44712454 +g1,23627:12273991,44712454 +g1,23627:12605945,44712454 +g1,23627:12937899,44712454 +g1,23627:13269853,44712454 +g1,23627:13601807,44712454 +g1,23627:13933761,44712454 +g1,23627:15593531,44712454 +g1,23627:15925485,44712454 +g1,23627:16257439,44712454 +g1,23627:16589393,44712454 +g1,23627:16921347,44712454 +g1,23627:17253301,44712454 +g1,23627:17585255,44712454 +g1,23627:17917209,44712454 +g1,23627:19576979,44712454 +g1,23627:19908933,44712454 +g1,23627:20240887,44712454 +g1,23627:20572841,44712454 +g1,23627:20904795,44712454 +g1,23627:21236749,44712454 +g1,23627:21568703,44712454 +g1,23627:21900657,44712454 +h1,23627:23228473,44712454:0,0,0 +k1,23627:32583029,44712454:9354556 +g1,23627:32583029,44712454 +) +(1,23627:6630773,45397309:25952256,424439,112852 +h1,23627:6630773,45397309:0,0,0 +g1,23627:7626635,45397309 +g1,23627:7958589,45397309 +g1,23627:8290543,45397309 +g1,23627:11610082,45397309 +g1,23627:11942036,45397309 +g1,23627:12273990,45397309 +g1,23627:15593529,45397309 +g1,23627:15925483,45397309 +g1,23627:16257437,45397309 +g1,23627:19576976,45397309 +h1,23627:23228469,45397309:0,0,0 +k1,23627:32583029,45397309:9354560 +g1,23627:32583029,45397309 +) +] +) +g1,23628:32583029,45510161 +g1,23628:6630773,45510161 +g1,23628:6630773,45510161 +g1,23628:32583029,45510161 +g1,23628:32583029,45510161 +) +h1,23628:6630773,45706769:0,0,0 +] +(1,23632:32583029,45706769:0,0,0 +g1,23632:32583029,45706769 +) +) +] +(1,23632:6630773,47279633:25952256,0,0 +h1,23632:6630773,47279633:25952256,0,0 +) +] +(1,23632:4262630,4025873:0,0,0 +[1,23632:-473656,4025873:0,0,0 +(1,23632:-473656,-710413:0,0,0 +(1,23632:-473656,-710413:0,0,0 +g1,23632:-473656,-710413 +) +g1,23632:-473656,-710413 +) +] +) +] +!30741 +}407 Input:4422:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4423:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4424:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -408301,1064 +408496,1049 @@ Input:4426:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4427:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4428:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4429:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4430:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1116 -{407 -[1,23727:4262630,47279633:28320399,43253760,0 -(1,23727:4262630,4025873:0,0,0 -[1,23727:-473656,4025873:0,0,0 -(1,23727:-473656,-710413:0,0,0 -(1,23727:-473656,-644877:0,0,0 -k1,23727:-473656,-644877:-65536 +{408 +[1,23725:4262630,47279633:28320399,43253760,0 +(1,23725:4262630,4025873:0,0,0 +[1,23725:-473656,4025873:0,0,0 +(1,23725:-473656,-710413:0,0,0 +(1,23725:-473656,-644877:0,0,0 +k1,23725:-473656,-644877:-65536 ) -(1,23727:-473656,4736287:0,0,0 -k1,23727:-473656,4736287:5209943 +(1,23725:-473656,4736287:0,0,0 +k1,23725:-473656,4736287:5209943 ) -g1,23727:-473656,-710413 +g1,23725:-473656,-710413 ) ] ) -[1,23727:6630773,47279633:25952256,43253760,0 -[1,23727:6630773,4812305:25952256,786432,0 -(1,23727:6630773,4812305:25952256,505283,134348 -(1,23727:6630773,4812305:25952256,505283,134348 -g1,23727:3078558,4812305 -[1,23727:3078558,4812305:0,0,0 -(1,23727:3078558,2439708:0,1703936,0 -k1,23727:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23727:2537886,2439708:1179648,16384,0 +[1,23725:6630773,47279633:25952256,43253760,0 +[1,23725:6630773,4812305:25952256,786432,0 +(1,23725:6630773,4812305:25952256,505283,134348 +(1,23725:6630773,4812305:25952256,505283,134348 +g1,23725:3078558,4812305 +[1,23725:3078558,4812305:0,0,0 +(1,23725:3078558,2439708:0,1703936,0 +k1,23725:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23725:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23727:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23725:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23727:3078558,4812305:0,0,0 -(1,23727:3078558,2439708:0,1703936,0 -g1,23727:29030814,2439708 -g1,23727:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23727:36151628,1915420:16384,1179648,0 +[1,23725:3078558,4812305:0,0,0 +(1,23725:3078558,2439708:0,1703936,0 +g1,23725:29030814,2439708 +g1,23725:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23725:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23727:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23725:37855564,2439708:1179648,16384,0 ) ) -k1,23727:3078556,2439708:-34777008 +k1,23725:3078556,2439708:-34777008 ) ] -[1,23727:3078558,4812305:0,0,0 -(1,23727:3078558,49800853:0,16384,2228224 -k1,23727:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23727:2537886,49800853:1179648,16384,0 +[1,23725:3078558,4812305:0,0,0 +(1,23725:3078558,49800853:0,16384,2228224 +k1,23725:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23725:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23727:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23725:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 -) -] -) -) -) -] -[1,23727:3078558,4812305:0,0,0 -(1,23727:3078558,49800853:0,16384,2228224 -g1,23727:29030814,49800853 -g1,23727:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23727:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23727:37855564,49800853:1179648,16384,0 -) -) -k1,23727:3078556,49800853:-34777008 -) -] -g1,23727:6630773,4812305 -k1,23727:21114230,4812305:13288080 -g1,23727:22736901,4812305 -g1,23727:23350318,4812305 -g1,23727:24759997,4812305 -g1,23727:28372341,4812305 -g1,23727:30105768,4812305 -) -) -] -[1,23727:6630773,45706769:25952256,40108032,0 -(1,23727:6630773,45706769:25952256,40108032,0 -(1,23727:6630773,45706769:0,0,0 -g1,23727:6630773,45706769 -) -[1,23727:6630773,45706769:25952256,40108032,0 -v1,23634:6630773,6254097:0,393216,0 -(1,23671:6630773,21176629:25952256,15315748,0 -g1,23671:6630773,21176629 -g1,23671:6237557,21176629 -r1,23727:6368629,21176629:131072,15315748,0 -g1,23671:6567858,21176629 -g1,23671:6764466,21176629 -[1,23671:6764466,21176629:25818563,15315748,0 -(1,23635:6764466,6562395:25818563,701514,196608 -(1,23634:6764466,6562395:0,701514,196608 -r1,23727:7761522,6562395:997056,898122,196608 -k1,23634:6764466,6562395:-997056 -) -(1,23634:6764466,6562395:997056,701514,196608 -) -k1,23634:7959001,6562395:197479 -k1,23634:8286681,6562395:327680 -k1,23634:10267394,6562395:197478 -k1,23634:13439552,6562395:197479 -k1,23634:15833142,6562395:197479 -k1,23634:17022180,6562395:197478 -k1,23634:20380460,6562395:197479 -k1,23634:21845404,6562395:197478 -k1,23634:24440845,6562395:197479 -k1,23634:26957643,6562395:197479 -k1,23634:28346566,6562395:197478 -k1,23634:30841737,6562395:197479 -k1,23634:32583029,6562395:0 -) -(1,23635:6764466,7427475:25818563,513147,134348 -k1,23634:8722213,7427475:169925 -k1,23634:9423636,7427475:169926 -k1,23634:12226142,7427475:169925 -k1,23634:13012106,7427475:169926 -k1,23634:14201116,7427475:169925 -k1,23634:16215225,7427475:169926 -k1,23634:17044442,7427475:169925 -k1,23634:19108358,7427475:169926 -k1,23634:21244363,7427475:169925 -k1,23634:23893516,7427475:169926 -k1,23634:25254886,7427475:169925 -k1,23634:27722504,7427475:169926 -k1,23634:29633721,7427475:169925 -k1,23634:31591469,7427475:169926 -k1,23634:32583029,7427475:0 -) -(1,23635:6764466,8292555:25818563,513147,126483 -k1,23634:9403047,8292555:154766 -k1,23634:10209240,8292555:154765 -k1,23634:11388989,8292555:154766 -k1,23634:13241793,8292555:154766 -k1,23634:14785921,8292555:154765 -k1,23634:17147284,8292555:154766 -k1,23634:18293610,8292555:154766 -k1,23634:20972167,8292555:154766 -k1,23634:21813094,8292555:154765 -k1,23634:24043385,8292555:154766 -k1,23634:26240253,8292555:154766 -k1,23634:27775862,8292555:154765 -k1,23634:30592045,8292555:154766 -k1,23634:32583029,8292555:0 -) -(1,23635:6764466,9157635:25818563,513147,126483 -k1,23634:8489866,9157635:202998 -k1,23634:11699655,9157635:202997 -k1,23634:13406704,9157635:202998 -k1,23634:16914682,9157635:202997 -k1,23634:21098337,9157635:202998 -k1,23634:21917373,9157635:202998 -k1,23634:24153952,9157635:202997 -k1,23634:27020989,9157635:202998 -k1,23634:27891142,9157635:202997 -k1,23634:28682653,9157635:202998 -k1,23634:30077095,9157635:202997 -k1,23634:31384375,9157635:202998 -k1,23634:32583029,9157635:0 -) -(1,23635:6764466,10022715:25818563,513147,126483 -k1,23634:8722682,10022715:193331 -k1,23634:10614051,10022715:193331 -k1,23634:13031674,10022715:193331 -k1,23634:14216565,10022715:193331 -k1,23634:16933687,10022715:193331 -k1,23634:18323705,10022715:193331 -k1,23634:23071789,10022715:193332 -k1,23634:26249630,10022715:193331 -k1,23634:26974458,10022715:193331 -k1,23634:27819217,10022715:193331 -k1,23634:29105033,10022715:193331 -k1,23634:30317449,10022715:193331 -k1,23635:32583029,10022715:0 -) -(1,23635:6764466,10887795:25818563,513147,126483 -(1,23634:6764466,10887795:0,452978,122846 -r1,23727:15212104,10887795:8447638,575824,122846 -k1,23634:6764466,10887795:-8447638 -) -(1,23634:6764466,10887795:8447638,452978,122846 -g1,23634:12746844,10887795 -g1,23634:13450268,10887795 -h1,23634:15208827,10887795:0,411205,112570 -) -g1,23634:15411333,10887795 -g1,23634:16802007,10887795 -g1,23634:17816504,10887795 -g1,23634:19034818,10887795 -g1,23634:22710732,10887795 -g1,23634:24177427,10887795 -g1,23634:26600948,10887795 -g1,23634:27416215,10887795 -g1,23634:27971304,10887795 -g1,23634:30873238,10887795 -k1,23635:32583029,10887795:302078 -g1,23635:32583029,10887795 -) -v1,23637:6764466,11572650:0,393216,0 -(1,23642:6764466,12604794:25818563,1425360,196608 -g1,23642:6764466,12604794 -g1,23642:6764466,12604794 -g1,23642:6567858,12604794 -(1,23642:6567858,12604794:0,1425360,196608 -r1,23727:32779637,12604794:26211779,1621968,196608 -k1,23642:6567857,12604794:-26211780 -) -(1,23642:6567858,12604794:26211779,1425360,196608 -[1,23642:6764466,12604794:25818563,1228752,0 -(1,23639:6764466,11807087:25818563,431045,52847 -(1,23638:6764466,11807087:0,0,0 -g1,23638:6764466,11807087 -g1,23638:6764466,11807087 -g1,23638:6436786,11807087 -(1,23638:6436786,11807087:0,0,0 -) -g1,23638:6764466,11807087 -) -g1,23639:11411821,11807087 -k1,23639:11411821,11807087:0 -h1,23639:12075729,11807087:0,0,0 -k1,23639:32583029,11807087:20507300 -g1,23639:32583029,11807087 -) -(1,23640:6764466,12491942:25818563,424439,112852 -h1,23640:6764466,12491942:0,0,0 -g1,23640:7096420,12491942 -g1,23640:7428374,12491942 -g1,23640:21038485,12491942 -g1,23640:26681702,12491942 -g1,23640:27345610,12491942 -h1,23640:29005380,12491942:0,0,0 -k1,23640:32583029,12491942:3577649 -g1,23640:32583029,12491942 -) -] -) -g1,23642:32583029,12604794 -g1,23642:6764466,12604794 -g1,23642:6764466,12604794 -g1,23642:32583029,12604794 -g1,23642:32583029,12604794 -) -h1,23642:6764466,12801402:0,0,0 -(1,23646:6764466,13666482:25818563,513147,134348 -h1,23645:6764466,13666482:983040,0,0 -k1,23645:9700864,13666482:161604 -(1,23645:9700864,13666482:0,452978,115847 -r1,23727:12521113,13666482:2820249,568825,115847 -k1,23645:9700864,13666482:-2820249 -) -(1,23645:9700864,13666482:2820249,452978,115847 -k1,23645:9700864,13666482:3277 -h1,23645:12517836,13666482:0,411205,112570 -) -k1,23645:12682716,13666482:161603 -k1,23645:13302417,13666482:161604 -k1,23645:14568303,13666482:161604 -k1,23645:15477672,13666482:161603 -k1,23645:17079102,13666482:161604 -k1,23645:18525212,13666482:161604 -k1,23645:19705901,13666482:161604 -k1,23645:21711687,13666482:161603 -k1,23645:22532583,13666482:161604 -k1,23645:23713272,13666482:161604 -k1,23645:28191732,13666482:161603 -k1,23645:30703457,13666482:161604 -k1,23645:32583029,13666482:0 -) -(1,23646:6764466,14531562:25818563,505283,134348 -g1,23645:8756105,14531562 -g1,23645:11327082,14531562 -g1,23645:13845630,14531562 -k1,23646:32583029,14531562:16566847 -g1,23646:32583029,14531562 -) -v1,23648:6764466,15216417:0,393216,0 -(1,23669:6764466,20980021:25818563,6156820,196608 -g1,23669:6764466,20980021 -g1,23669:6764466,20980021 -g1,23669:6567858,20980021 -(1,23669:6567858,20980021:0,6156820,196608 -r1,23727:32779637,20980021:26211779,6353428,196608 -k1,23669:6567857,20980021:-26211780 -) -(1,23669:6567858,20980021:26211779,6156820,196608 -[1,23669:6764466,20980021:25818563,5960212,0 -(1,23650:6764466,15450854:25818563,431045,106246 -(1,23649:6764466,15450854:0,0,0 -g1,23649:6764466,15450854 -g1,23649:6764466,15450854 -g1,23649:6436786,15450854 -(1,23649:6436786,15450854:0,0,0 -) -g1,23649:6764466,15450854 -) -k1,23650:6764466,15450854:0 -g1,23650:14067453,15450854 -h1,23650:16059177,15450854:0,0,0 -k1,23650:32583029,15450854:16523852 -g1,23650:32583029,15450854 -) -(1,23655:6764466,16266781:25818563,424439,9908 -(1,23652:6764466,16266781:0,0,0 -g1,23652:6764466,16266781 -g1,23652:6764466,16266781 -g1,23652:6436786,16266781 -(1,23652:6436786,16266781:0,0,0 -) -g1,23652:6764466,16266781 -) -g1,23655:7760328,16266781 -g1,23655:8092282,16266781 -g1,23655:8424236,16266781 -g1,23655:8756190,16266781 -g1,23655:9088144,16266781 -g1,23655:9420098,16266781 -g1,23655:11079868,16266781 -g1,23655:11411822,16266781 -g1,23655:11743776,16266781 -g1,23655:12075730,16266781 -g1,23655:12407684,16266781 -g1,23655:12739638,16266781 -g1,23655:14399408,16266781 -g1,23655:14731362,16266781 -g1,23655:15063316,16266781 -g1,23655:15395270,16266781 -g1,23655:15727224,16266781 -g1,23655:16059178,16266781 -g1,23655:17718948,16266781 -g1,23655:18050902,16266781 -g1,23655:18382856,16266781 -g1,23655:18714810,16266781 -g1,23655:19046764,16266781 -g1,23655:19378718,16266781 -h1,23655:20706534,16266781:0,0,0 -k1,23655:32583029,16266781:11876495 -g1,23655:32583029,16266781 -) -(1,23655:6764466,16951636:25818563,431045,112852 -h1,23655:6764466,16951636:0,0,0 -g1,23655:7760328,16951636 -g1,23655:11079867,16951636 -g1,23655:14399406,16951636 -g1,23655:17718945,16951636 -g1,23655:18050899,16951636 -h1,23655:20706530,16951636:0,0,0 -k1,23655:32583029,16951636:11876499 -g1,23655:32583029,16951636 -) -(1,23657:6764466,17767563:25818563,431045,79822 -(1,23656:6764466,17767563:0,0,0 -g1,23656:6764466,17767563 -g1,23656:6764466,17767563 -g1,23656:6436786,17767563 -(1,23656:6436786,17767563:0,0,0 -) -g1,23656:6764466,17767563 -) -h1,23657:14399407,17767563:0,0,0 -k1,23657:32583029,17767563:18183622 -g1,23657:32583029,17767563 -) -(1,23662:6764466,18583490:25818563,424439,79822 -(1,23659:6764466,18583490:0,0,0 -g1,23659:6764466,18583490 -g1,23659:6764466,18583490 -g1,23659:6436786,18583490 -(1,23659:6436786,18583490:0,0,0 -) -g1,23659:6764466,18583490 -) -g1,23662:7760328,18583490 -g1,23662:9088144,18583490 -g1,23662:9420098,18583490 -g1,23662:9752052,18583490 -g1,23662:11079868,18583490 -g1,23662:11411822,18583490 -g1,23662:11743776,18583490 -g1,23662:12407684,18583490 -h1,23662:12739638,18583490:0,0,0 -k1,23662:32583030,18583490:19843392 -g1,23662:32583030,18583490 -) -(1,23662:6764466,19268345:25818563,424439,8257 -h1,23662:6764466,19268345:0,0,0 -g1,23662:7760328,19268345 -g1,23662:10415960,19268345 -g1,23662:10747914,19268345 -g1,23662:11079868,19268345 -g1,23662:12407684,19268345 -g1,23662:12739638,19268345 -g1,23662:13071592,19268345 -g1,23662:13735500,19268345 -h1,23662:14067454,19268345:0,0,0 -k1,23662:32583030,19268345:18515576 -g1,23662:32583030,19268345 -) -(1,23664:6764466,20084272:25818563,431045,79822 -(1,23663:6764466,20084272:0,0,0 -g1,23663:6764466,20084272 -g1,23663:6764466,20084272 -g1,23663:6436786,20084272 -(1,23663:6436786,20084272:0,0,0 -) -g1,23663:6764466,20084272 -) -k1,23664:6764466,20084272:0 -h1,23664:17055039,20084272:0,0,0 -k1,23664:32583029,20084272:15527990 -g1,23664:32583029,20084272 -) -(1,23668:6764466,20900199:25818563,424439,79822 -(1,23666:6764466,20900199:0,0,0 -g1,23666:6764466,20900199 -g1,23666:6764466,20900199 -g1,23666:6436786,20900199 -(1,23666:6436786,20900199:0,0,0 -) -g1,23666:6764466,20900199 -) -g1,23668:7760328,20900199 -g1,23668:9088144,20900199 -g1,23668:9752052,20900199 -g1,23668:10084006,20900199 -g1,23668:11743776,20900199 -g1,23668:12407684,20900199 -g1,23668:12739638,20900199 -g1,23668:13403546,20900199 -h1,23668:14067454,20900199:0,0,0 -k1,23668:32583030,20900199:18515576 -g1,23668:32583030,20900199 -) -] -) -g1,23669:32583029,20980021 -g1,23669:6764466,20980021 -g1,23669:6764466,20980021 -g1,23669:32583029,20980021 -g1,23669:32583029,20980021 -) -h1,23669:6764466,21176629:0,0,0 -] -g1,23671:32583029,21176629 -) -h1,23671:6630773,21176629:0,0,0 -(1,23674:6630773,22041709:25952256,513147,134348 -h1,23673:6630773,22041709:983040,0,0 -k1,23673:10400928,22041709:220725 -k1,23673:12640162,22041709:220725 -k1,23673:14052332,22041709:220725 -k1,23673:17996813,22041709:220725 -k1,23673:20907136,22041709:220725 -k1,23673:22119421,22041709:220725 -k1,23673:24789882,22041709:220725 -k1,23673:25958258,22041709:220725 -k1,23673:28611024,22041709:220725 -k1,23673:30519956,22041709:220725 -k1,23673:32583029,22041709:0 -) -(1,23674:6630773,22906789:25952256,505283,134348 -k1,23673:7395326,22906789:136718 -k1,23673:12893544,22906789:136718 -k1,23673:15375796,22906789:136718 -k1,23673:16531600,22906789:136719 -k1,23673:19152133,22906789:136718 -k1,23673:20945601,22906789:136718 -k1,23673:21613816,22906789:136718 -k1,23673:22106394,22906789:136718 -k1,23673:24104990,22906789:136718 -k1,23673:25931227,22906789:136719 -k1,23673:26683983,22906789:136718 -k1,23673:28572478,22906789:136718 -k1,23673:30411166,22906789:136718 -k1,23673:32583029,22906789:0 -) -(1,23674:6630773,23771869:25952256,513147,134348 -k1,23673:7384772,23771869:295902 -k1,23673:8212171,23771869:295902 -k1,23673:8863933,23771869:295902 -k1,23673:11657412,23771869:295902 -k1,23673:13150001,23771869:295902 -k1,23673:16620467,23771869:295902 -k1,23673:17583525,23771869:295902 -k1,23673:18294173,23771869:295805 -k1,23673:21615872,23771869:295902 -k1,23673:23404684,23771869:295902 -k1,23673:24766857,23771869:295902 -k1,23673:27303435,23771869:295902 -k1,23673:29297375,23771869:295902 -k1,23673:30711321,23771869:295902 -k1,23673:32583029,23771869:0 -) -(1,23674:6630773,24636949:25952256,513147,102891 -k1,23673:9633935,24636949:240819 -k1,23673:12220289,24636949:240820 -k1,23673:14244343,24636949:240819 -k1,23673:14841023,24636949:240820 -k1,23673:17405749,24636949:240819 -k1,23673:18178065,24636949:240819 -k1,23673:19932111,24636949:240820 -k1,23673:20859092,24636949:240819 -k1,23673:23583726,24636949:240819 -k1,23673:26290666,24636949:240820 -k1,23673:27399837,24636949:240819 -k1,23673:28744939,24636949:240820 -k1,23673:29341618,24636949:240819 -k1,23673:32583029,24636949:0 -) -(1,23674:6630773,25502029:25952256,513147,108035 -h1,23673:6816895,25502029:0,0,0 -g1,23673:7638160,25502029 -g1,23673:8368886,25502029 -g1,23673:10081341,25502029 -g1,23673:10966732,25502029 -g1,23673:12569742,25502029 -k1,23674:32583028,25502029:17668408 -g1,23674:32583028,25502029 -) -(1,23676:6630773,26367109:25952256,513147,134348 -h1,23675:6630773,26367109:983040,0,0 -k1,23675:9233585,26367109:238928 -k1,23675:12052009,26367109:238927 -k1,23675:13052465,26367109:238928 -k1,23675:15026786,26367109:238928 -k1,23675:18291510,26367109:238927 -(1,23675:18291510,26367109:0,452978,115847 -r1,23727:22166894,26367109:3875384,568825,115847 -k1,23675:18291510,26367109:-3875384 -) -(1,23675:18291510,26367109:3875384,452978,115847 -k1,23675:18291510,26367109:3277 -h1,23675:22163617,26367109:0,411205,112570 -) -k1,23675:22405822,26367109:238928 -k1,23675:23836194,26367109:238927 -(1,23675:23836194,26367109:0,452978,115847 -r1,23727:28063290,26367109:4227096,568825,115847 -k1,23675:23836194,26367109:-4227096 -) -(1,23675:23836194,26367109:4227096,452978,115847 -k1,23675:23836194,26367109:3277 -h1,23675:28060013,26367109:0,411205,112570 -) -k1,23675:28475888,26367109:238928 -k1,23675:32583029,26367109:0 -) -(1,23676:6630773,27232189:25952256,513147,134348 -k1,23675:10498707,27232189:256900 -(1,23675:10498707,27232189:0,452978,115847 -r1,23727:11560396,27232189:1061689,568825,115847 -k1,23675:10498707,27232189:-1061689 -) -(1,23675:10498707,27232189:1061689,452978,115847 -k1,23675:10498707,27232189:3277 -h1,23675:11557119,27232189:0,411205,112570 -) -k1,23675:11817296,27232189:256900 -k1,23675:13265641,27232189:256900 -(1,23675:13265641,27232189:0,414482,115847 -r1,23727:14327330,27232189:1061689,530329,115847 -k1,23675:13265641,27232189:-1061689 -) -(1,23675:13265641,27232189:1061689,414482,115847 -k1,23675:13265641,27232189:3277 -h1,23675:14324053,27232189:0,411205,112570 -) -k1,23675:14584230,27232189:256900 -k1,23675:16522784,27232189:256900 -k1,23675:18961378,27232189:256900 -k1,23675:20237362,27232189:256899 -k1,23675:22978077,27232189:256900 -k1,23675:25527426,27232189:256900 -k1,23675:26975771,27232189:256900 -k1,23675:28636452,27232189:256900 -k1,23675:31931601,27232189:256900 -k1,23675:32583029,27232189:0 -) -(1,23676:6630773,28097269:25952256,505283,134348 -g1,23675:9626423,28097269 -g1,23675:12800331,28097269 -k1,23676:32583029,28097269:17534158 -g1,23676:32583029,28097269 -) -(1,23678:6630773,28962349:25952256,513147,115847 -h1,23677:6630773,28962349:983040,0,0 -k1,23677:10740847,28962349:337166 -(1,23677:10740847,28962349:0,452978,115847 -r1,23727:14967943,28962349:4227096,568825,115847 -k1,23677:10740847,28962349:-4227096 -) -(1,23677:10740847,28962349:4227096,452978,115847 -k1,23677:10740847,28962349:3277 -h1,23677:14964666,28962349:0,411205,112570 -) -k1,23677:15305108,28962349:337165 -k1,23677:17135184,28962349:337166 -k1,23677:18491434,28962349:337165 -k1,23677:20750771,28962349:337166 -k1,23677:22684393,28962349:337165 -k1,23677:24213004,28962349:337166 -k1,23677:27575967,28962349:337166 -k1,23677:29059357,28962349:337165 -(1,23677:29059357,28962349:0,452978,115847 -r1,23727:32583029,28962349:3523672,568825,115847 -k1,23677:29059357,28962349:-3523672 -) -(1,23677:29059357,28962349:3523672,452978,115847 -k1,23677:29059357,28962349:3277 -h1,23677:32579752,28962349:0,411205,112570 -) -k1,23677:32583029,28962349:0 -) -(1,23678:6630773,29827429:25952256,513147,134348 -k1,23677:8361221,29827429:354847 -k1,23677:10459327,29827429:354848 -k1,23677:11430212,29827429:354847 -k1,23677:12804145,29827429:354848 -k1,23677:15424572,29827429:354847 -k1,23677:19182049,29827429:354848 -k1,23677:20484547,29827429:354847 -k1,23677:21858480,29827429:354848 -k1,23677:24975670,29827429:354847 -k1,23677:29115222,29827429:354848 -k1,23677:30230287,29827429:354847 -k1,23678:32583029,29827429:0 -) -(1,23678:6630773,30692509:25952256,513147,126483 -(1,23677:6630773,30692509:0,452978,115847 -r1,23727:10857869,30692509:4227096,568825,115847 -k1,23677:6630773,30692509:-4227096 -) -(1,23677:6630773,30692509:4227096,452978,115847 -k1,23677:6630773,30692509:3277 -h1,23677:10854592,30692509:0,411205,112570 -) -k1,23677:11097401,30692509:239532 -k1,23677:13738172,30692509:239532 -k1,23677:15711787,30692509:239532 -k1,23677:16602747,30692509:239532 -k1,23677:17590045,30692509:239532 -k1,23677:20953023,30692509:239532 -k1,23677:21954083,30692509:239532 -k1,23677:23934907,30692509:239532 -k1,23677:25962261,30692509:239532 -k1,23677:27565597,30692509:239532 -k1,23677:28488014,30692509:239532 -k1,23677:30377743,30692509:239532 -k1,23677:32583029,30692509:0 -) -(1,23678:6630773,31557589:25952256,505283,134348 -g1,23677:8347160,31557589 -g1,23677:9829584,31557589 -g1,23677:11701292,31557589 -g1,23677:12583406,31557589 -g1,23677:15327398,31557589 -k1,23678:32583029,31557589:14985464 -g1,23678:32583029,31557589 -) -(1,23680:6630773,32422669:25952256,513147,122846 -h1,23679:6630773,32422669:983040,0,0 -g1,23679:9009729,32422669 -g1,23679:11958193,32422669 -g1,23679:12816714,32422669 -g1,23679:13998983,32422669 -(1,23679:13998983,32422669:0,452978,122846 -r1,23727:19984638,32422669:5985655,575824,122846 -k1,23679:13998983,32422669:-5985655 -) -(1,23679:13998983,32422669:5985655,452978,122846 -k1,23679:13998983,32422669:3277 -h1,23679:19981361,32422669:0,411205,112570 -) -g1,23679:20183867,32422669 -g1,23679:21374656,32422669 -g1,23679:23649410,32422669 -k1,23680:32583029,32422669:7012759 -g1,23680:32583029,32422669 -) -v1,23682:6630773,33107524:0,393216,0 -(1,23688:6630773,34714973:25952256,2000665,196608 -g1,23688:6630773,34714973 -g1,23688:6630773,34714973 -g1,23688:6434165,34714973 -(1,23688:6434165,34714973:0,2000665,196608 -r1,23727:32779637,34714973:26345472,2197273,196608 -k1,23688:6434165,34714973:-26345472 -) -(1,23688:6434165,34714973:26345472,2000665,196608 -[1,23688:6630773,34714973:25952256,1804057,0 -(1,23687:6630773,33335355:25952256,424439,9908 -(1,23683:6630773,33335355:0,0,0 -g1,23683:6630773,33335355 -g1,23683:6630773,33335355 -g1,23683:6303093,33335355 -(1,23683:6303093,33335355:0,0,0 -) -g1,23683:6630773,33335355 -) -g1,23687:8290543,33335355 -g1,23687:9950313,33335355 -g1,23687:11610083,33335355 -h1,23687:12937899,33335355:0,0,0 -k1,23687:32583029,33335355:19645130 -g1,23687:32583029,33335355 -) -(1,23687:6630773,34020210:25952256,407923,9908 -h1,23687:6630773,34020210:0,0,0 -g1,23687:6962727,34020210 -g1,23687:8290543,34020210 -g1,23687:9950313,34020210 -g1,23687:10282267,34020210 -g1,23687:11610083,34020210 -h1,23687:12605945,34020210:0,0,0 -k1,23687:32583029,34020210:19977084 -g1,23687:32583029,34020210 -) -(1,23687:6630773,34705065:25952256,424439,9908 -h1,23687:6630773,34705065:0,0,0 -g1,23687:8290543,34705065 -g1,23687:9950313,34705065 -g1,23687:10282267,34705065 -g1,23687:10614221,34705065 -g1,23687:11610083,34705065 -g1,23687:12605945,34705065 -h1,23687:13269853,34705065:0,0,0 -k1,23687:32583029,34705065:19313176 -g1,23687:32583029,34705065 -) -] -) -g1,23688:32583029,34714973 -g1,23688:6630773,34714973 -g1,23688:6630773,34714973 -g1,23688:32583029,34714973 -g1,23688:32583029,34714973 -) -h1,23688:6630773,34911581:0,0,0 -(1,23693:6630773,35776661:25952256,513147,115847 -h1,23691:6630773,35776661:983040,0,0 -k1,23691:8951266,35776661:140766 -k1,23691:10075072,35776661:140766 -k1,23691:10747335,35776661:140766 -k1,23691:12300402,35776661:140766 -k1,23691:13632613,35776661:140766 -k1,23691:14792464,35776661:140766 -k1,23691:17711956,35776661:140765 -k1,23691:19533065,35776661:140766 -k1,23691:21712001,35776661:140766 -k1,23691:22468805,35776661:140766 -k1,23691:22965431,35776661:140766 -k1,23691:25617537,35776661:140766 -k1,23691:27917059,35776661:140766 -(1,23691:27917059,35776661:0,459977,115847 -r1,23727:32495867,35776661:4578808,575824,115847 -k1,23691:27917059,35776661:-4578808 -) -(1,23691:27917059,35776661:4578808,459977,115847 -k1,23691:27917059,35776661:3277 -h1,23691:32492590,35776661:0,411205,112570 -) -k1,23691:32583029,35776661:0 -) -(1,23693:6630773,36641741:25952256,505283,134348 -k1,23691:8099654,36641741:277436 -k1,23691:10900880,36641741:277435 -k1,23692:13657543,36641741:277436 -k1,23692:15126423,36641741:277435 -k1,23692:17701551,36641741:277436 -k1,23692:19720279,36641741:277436 -k1,23692:21785536,36641741:277435 -k1,23692:23054532,36641741:277436 -k1,23692:26107417,36641741:277435 -k1,23692:28914543,36641741:277436 -k1,23692:30572166,36641741:277435 -k1,23692:31841162,36641741:277436 -k1,23693:32583029,36641741:0 -) -(1,23693:6630773,37506821:25952256,513147,134348 -k1,23692:9748255,37506821:300745 -k1,23692:10735162,37506821:300745 -k1,23692:12357767,37506821:300744 -k1,23692:13317804,37506821:300745 -k1,23692:14637634,37506821:300745 -k1,23692:18480600,37506821:300745 -k1,23692:19823367,37506821:300745 -k1,23692:23098790,37506821:300744 -k1,23692:25595646,37506821:300745 -k1,23692:29258388,37506821:300745 -k1,23692:32583029,37506821:0 -) -(1,23693:6630773,38371901:25952256,513147,134348 -k1,23692:9024534,38371901:275637 -k1,23692:9951598,38371901:275636 -k1,23692:10975001,38371901:275637 -k1,23692:13935648,38371901:275637 -k1,23692:14897446,38371901:275636 -k1,23692:15528943,38371901:275637 -k1,23692:17677599,38371901:275637 -k1,23692:19633578,38371901:275636 -k1,23692:21289403,38371901:275637 -k1,23692:23095305,38371901:275636 -k1,23692:24022370,38371901:275637 -k1,23692:25045773,38371901:275637 -k1,23692:27560119,38371901:275636 -k1,23692:28451794,38371901:275637 -k1,23692:29746516,38371901:275637 -k1,23692:31005192,38371901:275636 -k1,23692:31966991,38371901:275637 -k1,23693:32583029,38371901:0 -) -(1,23693:6630773,39236981:25952256,505283,122846 -(1,23692:6630773,39236981:0,452978,122846 -r1,23727:12616428,39236981:5985655,575824,122846 -k1,23692:6630773,39236981:-5985655 -) -(1,23692:6630773,39236981:5985655,452978,122846 -k1,23692:6630773,39236981:3277 -h1,23692:12613151,39236981:0,411205,112570 -) -g1,23692:12815657,39236981 -k1,23693:32583030,39236981:17859620 -g1,23693:32583030,39236981 -) -v1,23695:6630773,39921836:0,393216,0 -(1,23701:6630773,41638835:25952256,2110215,196608 -g1,23701:6630773,41638835 -g1,23701:6630773,41638835 -g1,23701:6434165,41638835 -(1,23701:6434165,41638835:0,2110215,196608 -r1,23727:32779637,41638835:26345472,2306823,196608 -k1,23701:6434165,41638835:-26345472 -) -(1,23701:6434165,41638835:26345472,2110215,196608 -[1,23701:6630773,41638835:25952256,1913607,0 -(1,23697:6630773,40156273:25952256,431045,52847 -(1,23696:6630773,40156273:0,0,0 -g1,23696:6630773,40156273 -g1,23696:6630773,40156273 -g1,23696:6303093,40156273 -(1,23696:6303093,40156273:0,0,0 -) -g1,23696:6630773,40156273 -) -g1,23697:11278128,40156273 -k1,23697:11278128,40156273:0 -h1,23697:11942036,40156273:0,0,0 -k1,23697:32583028,40156273:20640992 -g1,23697:32583028,40156273 -) -(1,23698:6630773,40841128:25952256,424439,112852 -h1,23698:6630773,40841128:0,0,0 -g1,23698:6962727,40841128 -g1,23698:7294681,40841128 -k1,23698:7294681,40841128:0 -h1,23698:20240884,40841128:0,0,0 -k1,23698:32583029,40841128:12342145 -g1,23698:32583029,40841128 -) -(1,23699:6630773,41525983:25952256,424439,112852 -h1,23699:6630773,41525983:0,0,0 -g1,23699:6962727,41525983 -g1,23699:7294681,41525983 -g1,23699:7626635,41525983 -g1,23699:7958589,41525983 -g1,23699:8290543,41525983 -g1,23699:8622497,41525983 -g1,23699:8954451,41525983 -g1,23699:9286405,41525983 -g1,23699:9618359,41525983 -g1,23699:9950313,41525983 -g1,23699:10282267,41525983 -g1,23699:10614221,41525983 -g1,23699:10946175,41525983 -g1,23699:16589392,41525983 -g1,23699:17253300,41525983 -g1,23699:19576978,41525983 -g1,23699:21900656,41525983 -g1,23699:22564564,41525983 -h1,23699:24224334,41525983:0,0,0 -k1,23699:32583029,41525983:8358695 -g1,23699:32583029,41525983 -) -] -) -g1,23701:32583029,41638835 -g1,23701:6630773,41638835 -g1,23701:6630773,41638835 -g1,23701:32583029,41638835 -g1,23701:32583029,41638835 -) -h1,23701:6630773,41835443:0,0,0 -v1,23705:6630773,42520298:0,393216,0 -(1,23727:6630773,45510161:25952256,3383079,196608 -g1,23727:6630773,45510161 -g1,23727:6630773,45510161 -g1,23727:6434165,45510161 -(1,23727:6434165,45510161:0,3383079,196608 -r1,23727:32779637,45510161:26345472,3579687,196608 -k1,23727:6434165,45510161:-26345472 -) -(1,23727:6434165,45510161:26345472,3383079,196608 -[1,23727:6630773,45510161:25952256,3186471,0 -(1,23707:6630773,42754735:25952256,431045,52847 -(1,23706:6630773,42754735:0,0,0 -g1,23706:6630773,42754735 -g1,23706:6630773,42754735 -g1,23706:6303093,42754735 -(1,23706:6303093,42754735:0,0,0 -) -g1,23706:6630773,42754735 -) -h1,23707:10946174,42754735:0,0,0 -k1,23707:32583030,42754735:21636856 -g1,23707:32583030,42754735 -) -(1,23713:6630773,43447593:25952256,424439,9908 -(1,23709:6630773,43447593:0,0,0 -g1,23709:6630773,43447593 -g1,23709:6630773,43447593 -g1,23709:6303093,43447593 -(1,23709:6303093,43447593:0,0,0 -) -g1,23709:6630773,43447593 -) -g1,23713:7626635,43447593 -g1,23713:7958589,43447593 -g1,23713:8290543,43447593 -g1,23713:9950313,43447593 -g1,23713:11610083,43447593 -g1,23713:13269853,43447593 -h1,23713:14597669,43447593:0,0,0 -k1,23713:32583029,43447593:17985360 -g1,23713:32583029,43447593 -) -(1,23713:6630773,44132448:25952256,407923,9908 -h1,23713:6630773,44132448:0,0,0 -g1,23713:7626635,44132448 -g1,23713:8290543,44132448 -g1,23713:8622497,44132448 -g1,23713:9950313,44132448 -g1,23713:11610083,44132448 -g1,23713:11942037,44132448 -g1,23713:13269853,44132448 -g1,23713:13601807,44132448 -h1,23713:14597669,44132448:0,0,0 -k1,23713:32583029,44132448:17985360 -g1,23713:32583029,44132448 -) -(1,23713:6630773,44817303:25952256,407923,9908 -h1,23713:6630773,44817303:0,0,0 -g1,23713:7626635,44817303 -g1,23713:8290543,44817303 -g1,23713:9950313,44817303 -g1,23713:11610083,44817303 -g1,23713:11942037,44817303 -g1,23713:12273991,44817303 -g1,23713:13269853,44817303 -g1,23713:13601807,44817303 -g1,23713:14265715,44817303 -h1,23713:14597669,44817303:0,0,0 -k1,23713:32583029,44817303:17985360 -g1,23713:32583029,44817303 -) -(1,23715:6630773,45510161:25952256,431045,79822 -(1,23714:6630773,45510161:0,0,0 -g1,23714:6630773,45510161 -g1,23714:6630773,45510161 -g1,23714:6303093,45510161 -(1,23714:6303093,45510161:0,0,0 -) -g1,23714:6630773,45510161 -) -h1,23715:14265714,45510161:0,0,0 -k1,23715:32583030,45510161:18317316 -g1,23715:32583030,45510161 -) -] -) -g1,23727:32583029,45510161 -g1,23727:6630773,45510161 -g1,23727:6630773,45510161 -g1,23727:32583029,45510161 -g1,23727:32583029,45510161 -) -] -(1,23727:32583029,45706769:0,0,0 -g1,23727:32583029,45706769 -) -) -] -(1,23727:6630773,47279633:25952256,0,0 -h1,23727:6630773,47279633:25952256,0,0 -) -] -(1,23727:4262630,4025873:0,0,0 -[1,23727:-473656,4025873:0,0,0 -(1,23727:-473656,-710413:0,0,0 -(1,23727:-473656,-710413:0,0,0 -g1,23727:-473656,-710413 -) -g1,23727:-473656,-710413 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) +) +) ] -!29837 -}407 -Input:4430:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4431:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4432:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4433:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,23725:3078558,4812305:0,0,0 +(1,23725:3078558,49800853:0,16384,2228224 +g1,23725:29030814,49800853 +g1,23725:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23725:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23725:37855564,49800853:1179648,16384,0 +) +) +k1,23725:3078556,49800853:-34777008 +) +] +g1,23725:6630773,4812305 +k1,23725:21114230,4812305:13288080 +g1,23725:22736901,4812305 +g1,23725:23350318,4812305 +g1,23725:24759997,4812305 +g1,23725:28372341,4812305 +g1,23725:30105768,4812305 +) +) +] +[1,23725:6630773,45706769:25952256,40108032,0 +(1,23725:6630773,45706769:25952256,40108032,0 +(1,23725:6630773,45706769:0,0,0 +g1,23725:6630773,45706769 +) +[1,23725:6630773,45706769:25952256,40108032,0 +v1,23632:6630773,6254097:0,393216,0 +(1,23669:6630773,22041709:25952256,16180828,0 +g1,23669:6630773,22041709 +g1,23669:6237557,22041709 +r1,23725:6368629,22041709:131072,16180828,0 +g1,23669:6567858,22041709 +g1,23669:6764466,22041709 +[1,23669:6764466,22041709:25818563,16180828,0 +(1,23633:6764466,6562395:25818563,701514,196608 +(1,23632:6764466,6562395:0,701514,196608 +r1,23725:7761522,6562395:997056,898122,196608 +k1,23632:6764466,6562395:-997056 +) +(1,23632:6764466,6562395:997056,701514,196608 +) +k1,23632:8152878,6562395:391356 +k1,23632:8480558,6562395:327680 +k1,23632:10655148,6562395:391355 +k1,23632:14021183,6562395:391356 +k1,23632:16608650,6562395:391356 +k1,23632:17991566,6562395:391356 +k1,23632:21543722,6562395:391355 +k1,23632:23202544,6562395:391356 +k1,23632:25991862,6562395:391356 +k1,23632:28702536,6562395:391355 +k1,23632:30285337,6562395:391356 +k1,23632:32583029,6562395:0 +) +(1,23633:6764466,7427475:25818563,513147,134348 +k1,23632:10405319,7427475:137953 +k1,23632:11074769,7427475:137953 +k1,23632:13845304,7427475:137954 +k1,23632:14599295,7427475:137953 +k1,23632:15756333,7427475:137953 +k1,23632:17738469,7427475:137953 +k1,23632:18535715,7427475:137954 +k1,23632:20567658,7427475:137953 +k1,23632:22671691,7427475:137953 +k1,23632:25288871,7427475:137953 +k1,23632:26618270,7427475:137954 +k1,23632:29053915,7427475:137953 +k1,23632:32583029,7427475:0 +) +(1,23633:6764466,8292555:25818563,513147,126483 +k1,23632:7987670,8292555:231644 +k1,23632:10703130,8292555:231645 +k1,23632:11586202,8292555:231644 +k1,23632:12842830,8292555:231645 +k1,23632:14772512,8292555:231644 +k1,23632:16393520,8292555:231645 +k1,23632:18831761,8292555:231644 +k1,23632:20054966,8292555:231645 +k1,23632:22810401,8292555:231644 +k1,23632:23728208,8292555:231645 +k1,23632:26035377,8292555:231644 +k1,23632:28309124,8292555:231645 +k1,23632:29921612,8292555:231644 +k1,23632:32583029,8292555:0 +) +(1,23633:6764466,9157635:25818563,513147,126483 +k1,23632:9002878,9157635:247428 +k1,23632:10798922,9157635:247428 +k1,23632:14053142,9157635:247428 +k1,23632:15804621,9157635:247428 +k1,23632:19357030,9157635:247428 +k1,23632:23585116,9157635:247429 +k1,23632:24448582,9157635:247428 +k1,23632:26729592,9157635:247428 +k1,23632:29641059,9157635:247428 +k1,23632:30555643,9157635:247428 +k1,23632:31391584,9157635:247428 +k1,23632:32583029,9157635:0 +) +(1,23633:6764466,10022715:25818563,513147,126483 +k1,23632:8044334,10022715:175586 +k1,23632:9418574,10022715:175586 +k1,23632:11359045,10022715:175586 +k1,23632:13232669,10022715:175586 +k1,23632:15632547,10022715:175586 +k1,23632:16799693,10022715:175586 +k1,23632:19499069,10022715:175585 +k1,23632:20871342,10022715:175586 +k1,23632:25601680,10022715:175586 +k1,23632:28761776,10022715:175586 +k1,23632:29468859,10022715:175586 +k1,23632:30295873,10022715:175586 +k1,23632:31563944,10022715:175586 +k1,23632:32583029,10022715:0 +) +(1,23633:6764466,10887795:25818563,513147,126483 +k1,23632:9173696,10887795:143650 +(1,23632:9173696,10887795:0,452978,122846 +r1,23725:17621334,10887795:8447638,575824,122846 +k1,23632:9173696,10887795:-8447638 +) +(1,23632:9173696,10887795:8447638,452978,122846 +g1,23632:15156074,10887795 +g1,23632:15859498,10887795 +h1,23632:17618057,10887795:0,411205,112570 +) +k1,23632:17764984,10887795:143650 +k1,23632:19100079,10887795:143650 +k1,23632:20058997,10887795:143650 +k1,23632:21221732,10887795:143650 +k1,23632:24842068,10887795:143651 +k1,23632:26253184,10887795:143650 +k1,23632:28621126,10887795:143650 +k1,23632:29380814,10887795:143650 +k1,23632:29880324,10887795:143650 +k1,23632:32583029,10887795:0 +) +(1,23633:6764466,11752875:25818563,426639,126483 +k1,23633:32583029,11752875:24410850 +g1,23633:32583029,11752875 +) +v1,23635:6764466,12437730:0,393216,0 +(1,23640:6764466,13469874:25818563,1425360,196608 +g1,23640:6764466,13469874 +g1,23640:6764466,13469874 +g1,23640:6567858,13469874 +(1,23640:6567858,13469874:0,1425360,196608 +r1,23725:32779637,13469874:26211779,1621968,196608 +k1,23640:6567857,13469874:-26211780 +) +(1,23640:6567858,13469874:26211779,1425360,196608 +[1,23640:6764466,13469874:25818563,1228752,0 +(1,23637:6764466,12672167:25818563,431045,52847 +(1,23636:6764466,12672167:0,0,0 +g1,23636:6764466,12672167 +g1,23636:6764466,12672167 +g1,23636:6436786,12672167 +(1,23636:6436786,12672167:0,0,0 +) +g1,23636:6764466,12672167 +) +g1,23637:11411821,12672167 +k1,23637:11411821,12672167:0 +h1,23637:12075729,12672167:0,0,0 +k1,23637:32583029,12672167:20507300 +g1,23637:32583029,12672167 +) +(1,23638:6764466,13357022:25818563,424439,112852 +h1,23638:6764466,13357022:0,0,0 +g1,23638:7096420,13357022 +g1,23638:7428374,13357022 +g1,23638:21038485,13357022 +g1,23638:26681702,13357022 +g1,23638:27345610,13357022 +h1,23638:29005380,13357022:0,0,0 +k1,23638:32583029,13357022:3577649 +g1,23638:32583029,13357022 +) +] +) +g1,23640:32583029,13469874 +g1,23640:6764466,13469874 +g1,23640:6764466,13469874 +g1,23640:32583029,13469874 +g1,23640:32583029,13469874 +) +h1,23640:6764466,13666482:0,0,0 +(1,23644:6764466,14531562:25818563,513147,134348 +h1,23643:6764466,14531562:983040,0,0 +k1,23643:9700864,14531562:161604 +(1,23643:9700864,14531562:0,452978,115847 +r1,23725:12521113,14531562:2820249,568825,115847 +k1,23643:9700864,14531562:-2820249 +) +(1,23643:9700864,14531562:2820249,452978,115847 +k1,23643:9700864,14531562:3277 +h1,23643:12517836,14531562:0,411205,112570 +) +k1,23643:12682716,14531562:161603 +k1,23643:13302417,14531562:161604 +k1,23643:14568303,14531562:161604 +k1,23643:15477672,14531562:161603 +k1,23643:17079102,14531562:161604 +k1,23643:18525212,14531562:161604 +k1,23643:19705901,14531562:161604 +k1,23643:21711687,14531562:161603 +k1,23643:22532583,14531562:161604 +k1,23643:23713272,14531562:161604 +k1,23643:28191732,14531562:161603 +k1,23643:30703457,14531562:161604 +k1,23643:32583029,14531562:0 +) +(1,23644:6764466,15396642:25818563,505283,134348 +g1,23643:8756105,15396642 +g1,23643:11327082,15396642 +g1,23643:13845630,15396642 +k1,23644:32583029,15396642:16566847 +g1,23644:32583029,15396642 +) +v1,23646:6764466,16081497:0,393216,0 +(1,23667:6764466,21845101:25818563,6156820,196608 +g1,23667:6764466,21845101 +g1,23667:6764466,21845101 +g1,23667:6567858,21845101 +(1,23667:6567858,21845101:0,6156820,196608 +r1,23725:32779637,21845101:26211779,6353428,196608 +k1,23667:6567857,21845101:-26211780 +) +(1,23667:6567858,21845101:26211779,6156820,196608 +[1,23667:6764466,21845101:25818563,5960212,0 +(1,23648:6764466,16315934:25818563,431045,106246 +(1,23647:6764466,16315934:0,0,0 +g1,23647:6764466,16315934 +g1,23647:6764466,16315934 +g1,23647:6436786,16315934 +(1,23647:6436786,16315934:0,0,0 +) +g1,23647:6764466,16315934 +) +k1,23648:6764466,16315934:0 +g1,23648:14067453,16315934 +h1,23648:16059177,16315934:0,0,0 +k1,23648:32583029,16315934:16523852 +g1,23648:32583029,16315934 +) +(1,23653:6764466,17131861:25818563,424439,9908 +(1,23650:6764466,17131861:0,0,0 +g1,23650:6764466,17131861 +g1,23650:6764466,17131861 +g1,23650:6436786,17131861 +(1,23650:6436786,17131861:0,0,0 +) +g1,23650:6764466,17131861 +) +g1,23653:7760328,17131861 +g1,23653:8092282,17131861 +g1,23653:8424236,17131861 +g1,23653:8756190,17131861 +g1,23653:9088144,17131861 +g1,23653:9420098,17131861 +g1,23653:11079868,17131861 +g1,23653:11411822,17131861 +g1,23653:11743776,17131861 +g1,23653:12075730,17131861 +g1,23653:12407684,17131861 +g1,23653:12739638,17131861 +g1,23653:14399408,17131861 +g1,23653:14731362,17131861 +g1,23653:15063316,17131861 +g1,23653:15395270,17131861 +g1,23653:15727224,17131861 +g1,23653:16059178,17131861 +g1,23653:17718948,17131861 +g1,23653:18050902,17131861 +g1,23653:18382856,17131861 +g1,23653:18714810,17131861 +g1,23653:19046764,17131861 +g1,23653:19378718,17131861 +h1,23653:20706534,17131861:0,0,0 +k1,23653:32583029,17131861:11876495 +g1,23653:32583029,17131861 +) +(1,23653:6764466,17816716:25818563,431045,112852 +h1,23653:6764466,17816716:0,0,0 +g1,23653:7760328,17816716 +g1,23653:11079867,17816716 +g1,23653:14399406,17816716 +g1,23653:17718945,17816716 +g1,23653:18050899,17816716 +h1,23653:20706530,17816716:0,0,0 +k1,23653:32583029,17816716:11876499 +g1,23653:32583029,17816716 +) +(1,23655:6764466,18632643:25818563,431045,79822 +(1,23654:6764466,18632643:0,0,0 +g1,23654:6764466,18632643 +g1,23654:6764466,18632643 +g1,23654:6436786,18632643 +(1,23654:6436786,18632643:0,0,0 +) +g1,23654:6764466,18632643 +) +h1,23655:14399407,18632643:0,0,0 +k1,23655:32583029,18632643:18183622 +g1,23655:32583029,18632643 +) +(1,23660:6764466,19448570:25818563,424439,79822 +(1,23657:6764466,19448570:0,0,0 +g1,23657:6764466,19448570 +g1,23657:6764466,19448570 +g1,23657:6436786,19448570 +(1,23657:6436786,19448570:0,0,0 +) +g1,23657:6764466,19448570 +) +g1,23660:7760328,19448570 +g1,23660:9088144,19448570 +g1,23660:9420098,19448570 +g1,23660:9752052,19448570 +g1,23660:11079868,19448570 +g1,23660:11411822,19448570 +g1,23660:11743776,19448570 +g1,23660:12407684,19448570 +h1,23660:12739638,19448570:0,0,0 +k1,23660:32583030,19448570:19843392 +g1,23660:32583030,19448570 +) +(1,23660:6764466,20133425:25818563,424439,8257 +h1,23660:6764466,20133425:0,0,0 +g1,23660:7760328,20133425 +g1,23660:10415960,20133425 +g1,23660:10747914,20133425 +g1,23660:11079868,20133425 +g1,23660:12407684,20133425 +g1,23660:12739638,20133425 +g1,23660:13071592,20133425 +g1,23660:13735500,20133425 +h1,23660:14067454,20133425:0,0,0 +k1,23660:32583030,20133425:18515576 +g1,23660:32583030,20133425 +) +(1,23662:6764466,20949352:25818563,431045,79822 +(1,23661:6764466,20949352:0,0,0 +g1,23661:6764466,20949352 +g1,23661:6764466,20949352 +g1,23661:6436786,20949352 +(1,23661:6436786,20949352:0,0,0 +) +g1,23661:6764466,20949352 +) +k1,23662:6764466,20949352:0 +h1,23662:17055039,20949352:0,0,0 +k1,23662:32583029,20949352:15527990 +g1,23662:32583029,20949352 +) +(1,23666:6764466,21765279:25818563,424439,79822 +(1,23664:6764466,21765279:0,0,0 +g1,23664:6764466,21765279 +g1,23664:6764466,21765279 +g1,23664:6436786,21765279 +(1,23664:6436786,21765279:0,0,0 +) +g1,23664:6764466,21765279 +) +g1,23666:7760328,21765279 +g1,23666:9088144,21765279 +g1,23666:9752052,21765279 +g1,23666:10084006,21765279 +g1,23666:11743776,21765279 +g1,23666:12407684,21765279 +g1,23666:12739638,21765279 +g1,23666:13403546,21765279 +h1,23666:14067454,21765279:0,0,0 +k1,23666:32583030,21765279:18515576 +g1,23666:32583030,21765279 +) +] +) +g1,23667:32583029,21845101 +g1,23667:6764466,21845101 +g1,23667:6764466,21845101 +g1,23667:32583029,21845101 +g1,23667:32583029,21845101 +) +h1,23667:6764466,22041709:0,0,0 +] +g1,23669:32583029,22041709 +) +h1,23669:6630773,22041709:0,0,0 +(1,23672:6630773,22906789:25952256,513147,134348 +h1,23671:6630773,22906789:983040,0,0 +k1,23671:10400928,22906789:220725 +k1,23671:12640162,22906789:220725 +k1,23671:14052332,22906789:220725 +k1,23671:17996813,22906789:220725 +k1,23671:20907136,22906789:220725 +k1,23671:22119421,22906789:220725 +k1,23671:24789882,22906789:220725 +k1,23671:25958258,22906789:220725 +k1,23671:28611024,22906789:220725 +k1,23671:30519956,22906789:220725 +k1,23671:32583029,22906789:0 +) +(1,23672:6630773,23771869:25952256,505283,134348 +k1,23671:7395326,23771869:136718 +k1,23671:12893544,23771869:136718 +k1,23671:15375796,23771869:136718 +k1,23671:16531600,23771869:136719 +k1,23671:19152133,23771869:136718 +k1,23671:20945601,23771869:136718 +k1,23671:21613816,23771869:136718 +k1,23671:22106394,23771869:136718 +k1,23671:24104990,23771869:136718 +k1,23671:25931227,23771869:136719 +k1,23671:26683983,23771869:136718 +k1,23671:28572478,23771869:136718 +k1,23671:30411166,23771869:136718 +k1,23671:32583029,23771869:0 +) +(1,23672:6630773,24636949:25952256,513147,134348 +k1,23671:7384772,24636949:295902 +k1,23671:8212171,24636949:295902 +k1,23671:8863933,24636949:295902 +k1,23671:11657412,24636949:295902 +k1,23671:13150001,24636949:295902 +k1,23671:16620467,24636949:295902 +k1,23671:17583525,24636949:295902 +k1,23671:18294173,24636949:295805 +k1,23671:21615872,24636949:295902 +k1,23671:23404684,24636949:295902 +k1,23671:24766857,24636949:295902 +k1,23671:27303435,24636949:295902 +k1,23671:29297375,24636949:295902 +k1,23671:30711321,24636949:295902 +k1,23671:32583029,24636949:0 +) +(1,23672:6630773,25502029:25952256,513147,102891 +k1,23671:9633935,25502029:240819 +k1,23671:12220289,25502029:240820 +k1,23671:14244343,25502029:240819 +k1,23671:14841023,25502029:240820 +k1,23671:17405749,25502029:240819 +k1,23671:18178065,25502029:240819 +k1,23671:19932111,25502029:240820 +k1,23671:20859092,25502029:240819 +k1,23671:23583726,25502029:240819 +k1,23671:26290666,25502029:240820 +k1,23671:27399837,25502029:240819 +k1,23671:28744939,25502029:240820 +k1,23671:29341618,25502029:240819 +k1,23671:32583029,25502029:0 +) +(1,23672:6630773,26367109:25952256,513147,108035 +h1,23671:6816895,26367109:0,0,0 +g1,23671:7638160,26367109 +g1,23671:8368886,26367109 +g1,23671:10081341,26367109 +g1,23671:10966732,26367109 +g1,23671:12569742,26367109 +k1,23672:32583028,26367109:17668408 +g1,23672:32583028,26367109 +) +(1,23674:6630773,27232189:25952256,513147,134348 +h1,23673:6630773,27232189:983040,0,0 +k1,23673:9233585,27232189:238928 +k1,23673:12052009,27232189:238927 +k1,23673:13052465,27232189:238928 +k1,23673:15026786,27232189:238928 +k1,23673:18291510,27232189:238927 +(1,23673:18291510,27232189:0,452978,115847 +r1,23725:22166894,27232189:3875384,568825,115847 +k1,23673:18291510,27232189:-3875384 +) +(1,23673:18291510,27232189:3875384,452978,115847 +k1,23673:18291510,27232189:3277 +h1,23673:22163617,27232189:0,411205,112570 +) +k1,23673:22405822,27232189:238928 +k1,23673:23836194,27232189:238927 +(1,23673:23836194,27232189:0,452978,115847 +r1,23725:28063290,27232189:4227096,568825,115847 +k1,23673:23836194,27232189:-4227096 +) +(1,23673:23836194,27232189:4227096,452978,115847 +k1,23673:23836194,27232189:3277 +h1,23673:28060013,27232189:0,411205,112570 +) +k1,23673:28475888,27232189:238928 +k1,23673:32583029,27232189:0 +) +(1,23674:6630773,28097269:25952256,513147,134348 +k1,23673:10498707,28097269:256900 +(1,23673:10498707,28097269:0,452978,115847 +r1,23725:11560396,28097269:1061689,568825,115847 +k1,23673:10498707,28097269:-1061689 +) +(1,23673:10498707,28097269:1061689,452978,115847 +k1,23673:10498707,28097269:3277 +h1,23673:11557119,28097269:0,411205,112570 +) +k1,23673:11817296,28097269:256900 +k1,23673:13265641,28097269:256900 +(1,23673:13265641,28097269:0,414482,115847 +r1,23725:14327330,28097269:1061689,530329,115847 +k1,23673:13265641,28097269:-1061689 +) +(1,23673:13265641,28097269:1061689,414482,115847 +k1,23673:13265641,28097269:3277 +h1,23673:14324053,28097269:0,411205,112570 +) +k1,23673:14584230,28097269:256900 +k1,23673:16522784,28097269:256900 +k1,23673:18961378,28097269:256900 +k1,23673:20237362,28097269:256899 +k1,23673:22978077,28097269:256900 +k1,23673:25527426,28097269:256900 +k1,23673:26975771,28097269:256900 +k1,23673:28636452,28097269:256900 +k1,23673:31931601,28097269:256900 +k1,23673:32583029,28097269:0 +) +(1,23674:6630773,28962349:25952256,505283,134348 +g1,23673:9626423,28962349 +g1,23673:12800331,28962349 +k1,23674:32583029,28962349:17534158 +g1,23674:32583029,28962349 +) +(1,23676:6630773,29827429:25952256,513147,115847 +h1,23675:6630773,29827429:983040,0,0 +k1,23675:10740847,29827429:337166 +(1,23675:10740847,29827429:0,452978,115847 +r1,23725:14967943,29827429:4227096,568825,115847 +k1,23675:10740847,29827429:-4227096 +) +(1,23675:10740847,29827429:4227096,452978,115847 +k1,23675:10740847,29827429:3277 +h1,23675:14964666,29827429:0,411205,112570 +) +k1,23675:15305108,29827429:337165 +k1,23675:17135184,29827429:337166 +k1,23675:18491434,29827429:337165 +k1,23675:20750771,29827429:337166 +k1,23675:22684393,29827429:337165 +k1,23675:24213004,29827429:337166 +k1,23675:27575967,29827429:337166 +k1,23675:29059357,29827429:337165 +(1,23675:29059357,29827429:0,452978,115847 +r1,23725:32583029,29827429:3523672,568825,115847 +k1,23675:29059357,29827429:-3523672 +) +(1,23675:29059357,29827429:3523672,452978,115847 +k1,23675:29059357,29827429:3277 +h1,23675:32579752,29827429:0,411205,112570 +) +k1,23675:32583029,29827429:0 +) +(1,23676:6630773,30692509:25952256,513147,134348 +k1,23675:8361221,30692509:354847 +k1,23675:10459327,30692509:354848 +k1,23675:11430212,30692509:354847 +k1,23675:12804145,30692509:354848 +k1,23675:15424572,30692509:354847 +k1,23675:19182049,30692509:354848 +k1,23675:20484547,30692509:354847 +k1,23675:21858480,30692509:354848 +k1,23675:24975670,30692509:354847 +k1,23675:29115222,30692509:354848 +k1,23675:30230287,30692509:354847 +k1,23676:32583029,30692509:0 +) +(1,23676:6630773,31557589:25952256,513147,126483 +(1,23675:6630773,31557589:0,452978,115847 +r1,23725:10857869,31557589:4227096,568825,115847 +k1,23675:6630773,31557589:-4227096 +) +(1,23675:6630773,31557589:4227096,452978,115847 +k1,23675:6630773,31557589:3277 +h1,23675:10854592,31557589:0,411205,112570 +) +k1,23675:11119177,31557589:261308 +k1,23675:13781723,31557589:261307 +k1,23675:15777114,31557589:261308 +k1,23675:16689850,31557589:261308 +k1,23675:17698923,31557589:261307 +k1,23675:21083677,31557589:261308 +k1,23675:22106512,31557589:261307 +k1,23675:25896934,31557589:261308 +k1,23675:27522046,31557589:261308 +k1,23675:28466238,31557589:261307 +k1,23675:30377743,31557589:261308 +k1,23675:32583029,31557589:0 +) +(1,23676:6630773,32422669:25952256,505283,134348 +g1,23675:8347160,32422669 +g1,23675:9829584,32422669 +g1,23675:11701292,32422669 +g1,23675:12583406,32422669 +g1,23675:15327398,32422669 +k1,23676:32583029,32422669:14985464 +g1,23676:32583029,32422669 +) +(1,23678:6630773,33287749:25952256,513147,122846 +h1,23677:6630773,33287749:983040,0,0 +g1,23677:9009729,33287749 +g1,23677:11958193,33287749 +g1,23677:12816714,33287749 +g1,23677:13998983,33287749 +(1,23677:13998983,33287749:0,452978,122846 +r1,23725:19984638,33287749:5985655,575824,122846 +k1,23677:13998983,33287749:-5985655 +) +(1,23677:13998983,33287749:5985655,452978,122846 +k1,23677:13998983,33287749:3277 +h1,23677:19981361,33287749:0,411205,112570 +) +g1,23677:20183867,33287749 +g1,23677:21374656,33287749 +g1,23677:23649410,33287749 +k1,23678:32583029,33287749:7012759 +g1,23678:32583029,33287749 +) +v1,23680:6630773,33972604:0,393216,0 +(1,23686:6630773,35580053:25952256,2000665,196608 +g1,23686:6630773,35580053 +g1,23686:6630773,35580053 +g1,23686:6434165,35580053 +(1,23686:6434165,35580053:0,2000665,196608 +r1,23725:32779637,35580053:26345472,2197273,196608 +k1,23686:6434165,35580053:-26345472 +) +(1,23686:6434165,35580053:26345472,2000665,196608 +[1,23686:6630773,35580053:25952256,1804057,0 +(1,23685:6630773,34200435:25952256,424439,9908 +(1,23681:6630773,34200435:0,0,0 +g1,23681:6630773,34200435 +g1,23681:6630773,34200435 +g1,23681:6303093,34200435 +(1,23681:6303093,34200435:0,0,0 +) +g1,23681:6630773,34200435 +) +g1,23685:8290543,34200435 +g1,23685:9950313,34200435 +g1,23685:11610083,34200435 +h1,23685:12937899,34200435:0,0,0 +k1,23685:32583029,34200435:19645130 +g1,23685:32583029,34200435 +) +(1,23685:6630773,34885290:25952256,407923,9908 +h1,23685:6630773,34885290:0,0,0 +g1,23685:6962727,34885290 +g1,23685:8290543,34885290 +g1,23685:9950313,34885290 +g1,23685:10282267,34885290 +g1,23685:11610083,34885290 +h1,23685:12605945,34885290:0,0,0 +k1,23685:32583029,34885290:19977084 +g1,23685:32583029,34885290 +) +(1,23685:6630773,35570145:25952256,424439,9908 +h1,23685:6630773,35570145:0,0,0 +g1,23685:8290543,35570145 +g1,23685:9950313,35570145 +g1,23685:10282267,35570145 +g1,23685:10614221,35570145 +g1,23685:11610083,35570145 +g1,23685:12605945,35570145 +h1,23685:13269853,35570145:0,0,0 +k1,23685:32583029,35570145:19313176 +g1,23685:32583029,35570145 +) +] +) +g1,23686:32583029,35580053 +g1,23686:6630773,35580053 +g1,23686:6630773,35580053 +g1,23686:32583029,35580053 +g1,23686:32583029,35580053 +) +h1,23686:6630773,35776661:0,0,0 +(1,23691:6630773,36641741:25952256,513147,115847 +h1,23689:6630773,36641741:983040,0,0 +k1,23689:8951266,36641741:140766 +k1,23689:10075072,36641741:140766 +k1,23689:10747335,36641741:140766 +k1,23689:12300402,36641741:140766 +k1,23689:13632613,36641741:140766 +k1,23689:14792464,36641741:140766 +k1,23689:17711956,36641741:140765 +k1,23689:19533065,36641741:140766 +k1,23689:21712001,36641741:140766 +k1,23689:22468805,36641741:140766 +k1,23689:22965431,36641741:140766 +k1,23689:25617537,36641741:140766 +k1,23689:27917059,36641741:140766 +(1,23689:27917059,36641741:0,459977,115847 +r1,23725:32495867,36641741:4578808,575824,115847 +k1,23689:27917059,36641741:-4578808 +) +(1,23689:27917059,36641741:4578808,459977,115847 +k1,23689:27917059,36641741:3277 +h1,23689:32492590,36641741:0,411205,112570 +) +k1,23689:32583029,36641741:0 +) +(1,23691:6630773,37506821:25952256,505283,134348 +k1,23689:8124875,37506821:302657 +k1,23689:10951323,37506821:302657 +k1,23690:13733207,37506821:302657 +k1,23690:15227309,37506821:302657 +k1,23690:17827658,37506821:302657 +k1,23690:21659429,37506821:302657 +k1,23690:22953646,37506821:302657 +k1,23690:26031753,37506821:302657 +k1,23690:28864100,37506821:302657 +k1,23690:30546945,37506821:302657 +k1,23690:31841162,37506821:302657 +k1,23691:32583029,37506821:0 +) +(1,23691:6630773,38371901:25952256,513147,134348 +k1,23690:9748255,38371901:300745 +k1,23690:10735162,38371901:300745 +k1,23690:12357767,38371901:300744 +k1,23690:13317804,38371901:300745 +k1,23690:14637634,38371901:300745 +k1,23690:18480600,38371901:300745 +k1,23690:19823367,38371901:300745 +k1,23690:23098790,38371901:300744 +k1,23690:25595646,38371901:300745 +k1,23690:29258388,38371901:300745 +k1,23690:32583029,38371901:0 +) +(1,23691:6630773,39236981:25952256,513147,134348 +k1,23690:9024534,39236981:275637 +k1,23690:9951598,39236981:275636 +k1,23690:10975001,39236981:275637 +k1,23690:13935648,39236981:275637 +k1,23690:14897446,39236981:275636 +k1,23690:15528943,39236981:275637 +k1,23690:17677599,39236981:275637 +k1,23690:19633578,39236981:275636 +k1,23690:21289403,39236981:275637 +k1,23690:23095305,39236981:275636 +k1,23690:24022370,39236981:275637 +k1,23690:25045773,39236981:275637 +k1,23690:27560119,39236981:275636 +k1,23690:28451794,39236981:275637 +k1,23690:29746516,39236981:275637 +k1,23690:31005192,39236981:275636 +k1,23690:31966991,39236981:275637 +k1,23691:32583029,39236981:0 +) +(1,23691:6630773,40102061:25952256,505283,122846 +(1,23690:6630773,40102061:0,452978,122846 +r1,23725:12616428,40102061:5985655,575824,122846 +k1,23690:6630773,40102061:-5985655 +) +(1,23690:6630773,40102061:5985655,452978,122846 +k1,23690:6630773,40102061:3277 +h1,23690:12613151,40102061:0,411205,112570 +) +g1,23690:12815657,40102061 +k1,23691:32583030,40102061:17859620 +g1,23691:32583030,40102061 +) +v1,23693:6630773,40786916:0,393216,0 +(1,23699:6630773,42503915:25952256,2110215,196608 +g1,23699:6630773,42503915 +g1,23699:6630773,42503915 +g1,23699:6434165,42503915 +(1,23699:6434165,42503915:0,2110215,196608 +r1,23725:32779637,42503915:26345472,2306823,196608 +k1,23699:6434165,42503915:-26345472 +) +(1,23699:6434165,42503915:26345472,2110215,196608 +[1,23699:6630773,42503915:25952256,1913607,0 +(1,23695:6630773,41021353:25952256,431045,52847 +(1,23694:6630773,41021353:0,0,0 +g1,23694:6630773,41021353 +g1,23694:6630773,41021353 +g1,23694:6303093,41021353 +(1,23694:6303093,41021353:0,0,0 +) +g1,23694:6630773,41021353 +) +g1,23695:11278128,41021353 +k1,23695:11278128,41021353:0 +h1,23695:11942036,41021353:0,0,0 +k1,23695:32583028,41021353:20640992 +g1,23695:32583028,41021353 +) +(1,23696:6630773,41706208:25952256,424439,112852 +h1,23696:6630773,41706208:0,0,0 +g1,23696:6962727,41706208 +g1,23696:7294681,41706208 +k1,23696:7294681,41706208:0 +h1,23696:20240884,41706208:0,0,0 +k1,23696:32583029,41706208:12342145 +g1,23696:32583029,41706208 +) +(1,23697:6630773,42391063:25952256,424439,112852 +h1,23697:6630773,42391063:0,0,0 +g1,23697:6962727,42391063 +g1,23697:7294681,42391063 +g1,23697:7626635,42391063 +g1,23697:7958589,42391063 +g1,23697:8290543,42391063 +g1,23697:8622497,42391063 +g1,23697:8954451,42391063 +g1,23697:9286405,42391063 +g1,23697:9618359,42391063 +g1,23697:9950313,42391063 +g1,23697:10282267,42391063 +g1,23697:10614221,42391063 +g1,23697:10946175,42391063 +g1,23697:16589392,42391063 +g1,23697:17253300,42391063 +g1,23697:19576978,42391063 +g1,23697:21900656,42391063 +g1,23697:22564564,42391063 +h1,23697:24224334,42391063:0,0,0 +k1,23697:32583029,42391063:8358695 +g1,23697:32583029,42391063 +) +] +) +g1,23699:32583029,42503915 +g1,23699:6630773,42503915 +g1,23699:6630773,42503915 +g1,23699:32583029,42503915 +g1,23699:32583029,42503915 +) +h1,23699:6630773,42700523:0,0,0 +v1,23703:6630773,43385378:0,393216,0 +(1,23725:6630773,45281164:25952256,2289002,196608 +g1,23725:6630773,45281164 +g1,23725:6630773,45281164 +g1,23725:6434165,45281164 +(1,23725:6434165,45281164:0,2289002,196608 +r1,23725:32779637,45281164:26345472,2485610,196608 +k1,23725:6434165,45281164:-26345472 +) +(1,23725:6434165,45281164:26345472,2289002,196608 +[1,23725:6630773,45281164:25952256,2092394,0 +(1,23705:6630773,43619815:25952256,431045,52847 +(1,23704:6630773,43619815:0,0,0 +g1,23704:6630773,43619815 +g1,23704:6630773,43619815 +g1,23704:6303093,43619815 +(1,23704:6303093,43619815:0,0,0 +) +g1,23704:6630773,43619815 +) +h1,23705:10946174,43619815:0,0,0 +k1,23705:32583030,43619815:21636856 +g1,23705:32583030,43619815 +) +(1,23711:6630773,44435742:25952256,424439,9908 +(1,23707:6630773,44435742:0,0,0 +g1,23707:6630773,44435742 +g1,23707:6630773,44435742 +g1,23707:6303093,44435742 +(1,23707:6303093,44435742:0,0,0 +) +g1,23707:6630773,44435742 +) +g1,23711:7626635,44435742 +g1,23711:7958589,44435742 +g1,23711:8290543,44435742 +g1,23711:9950313,44435742 +g1,23711:11610083,44435742 +g1,23711:13269853,44435742 +h1,23711:14597669,44435742:0,0,0 +k1,23711:32583029,44435742:17985360 +g1,23711:32583029,44435742 +) +(1,23711:6630773,45120597:25952256,407923,9908 +h1,23711:6630773,45120597:0,0,0 +g1,23711:7626635,45120597 +g1,23711:8290543,45120597 +g1,23711:8622497,45120597 +g1,23711:9950313,45120597 +g1,23711:11610083,45120597 +g1,23711:11942037,45120597 +g1,23711:13269853,45120597 +g1,23711:13601807,45120597 +h1,23711:14597669,45120597:0,0,0 +k1,23711:32583029,45120597:17985360 +g1,23711:32583029,45120597 +) +(1,23711:6630773,45805452:25952256,407923,9908 +h1,23711:6630773,45805452:0,0,0 +g1,23711:7626635,45805452 +g1,23711:8290543,45805452 +g1,23711:9950313,45805452 +g1,23711:11610083,45805452 +g1,23711:11942037,45805452 +g1,23711:12273991,45805452 +g1,23711:13269853,45805452 +g1,23711:13601807,45805452 +g1,23711:14265715,45805452 +h1,23711:14597669,45805452:0,0,0 +k1,23711:32583029,45805452:17985360 +g1,23711:32583029,45805452 +) +] +) +g1,23725:32583029,45281164 +g1,23725:6630773,45281164 +g1,23725:6630773,45281164 +g1,23725:32583029,45281164 +g1,23725:32583029,45281164 +) +] +(1,23725:32583029,45706769:0,0,0 +g1,23725:32583029,45706769 +) +) +] +(1,23725:6630773,47279633:25952256,0,0 +h1,23725:6630773,47279633:25952256,0,0 +) +] +(1,23725:4262630,4025873:0,0,0 +[1,23725:-473656,4025873:0,0,0 +(1,23725:-473656,-710413:0,0,0 +(1,23725:-473656,-710413:0,0,0 +g1,23725:-473656,-710413 +) +g1,23725:-473656,-710413 +) +] +) +] +!29505 +}408 Input:4434:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4435:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4436:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -409370,1140 +409550,1122 @@ Input:4441:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4442:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4443:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4444:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4445:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4446:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4447:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4448:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1392 -{408 -[1,23790:4262630,47279633:28320399,43253760,0 -(1,23790:4262630,4025873:0,0,0 -[1,23790:-473656,4025873:0,0,0 -(1,23790:-473656,-710413:0,0,0 -(1,23790:-473656,-644877:0,0,0 -k1,23790:-473656,-644877:-65536 +{409 +[1,23785:4262630,47279633:28320399,43253760,0 +(1,23785:4262630,4025873:0,0,0 +[1,23785:-473656,4025873:0,0,0 +(1,23785:-473656,-710413:0,0,0 +(1,23785:-473656,-644877:0,0,0 +k1,23785:-473656,-644877:-65536 ) -(1,23790:-473656,4736287:0,0,0 -k1,23790:-473656,4736287:5209943 +(1,23785:-473656,4736287:0,0,0 +k1,23785:-473656,4736287:5209943 ) -g1,23790:-473656,-710413 +g1,23785:-473656,-710413 ) ] ) -[1,23790:6630773,47279633:25952256,43253760,0 -[1,23790:6630773,4812305:25952256,786432,0 -(1,23790:6630773,4812305:25952256,505283,11795 -(1,23790:6630773,4812305:25952256,505283,11795 -g1,23790:3078558,4812305 -[1,23790:3078558,4812305:0,0,0 -(1,23790:3078558,2439708:0,1703936,0 -k1,23790:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23790:2537886,2439708:1179648,16384,0 +[1,23785:6630773,47279633:25952256,43253760,0 +[1,23785:6630773,4812305:25952256,786432,0 +(1,23785:6630773,4812305:25952256,505283,11795 +(1,23785:6630773,4812305:25952256,505283,11795 +g1,23785:3078558,4812305 +[1,23785:3078558,4812305:0,0,0 +(1,23785:3078558,2439708:0,1703936,0 +k1,23785:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23785:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23790:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23785:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23790:3078558,4812305:0,0,0 -(1,23790:3078558,2439708:0,1703936,0 -g1,23790:29030814,2439708 -g1,23790:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23790:36151628,1915420:16384,1179648,0 +[1,23785:3078558,4812305:0,0,0 +(1,23785:3078558,2439708:0,1703936,0 +g1,23785:29030814,2439708 +g1,23785:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23785:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23790:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23785:37855564,2439708:1179648,16384,0 ) ) -k1,23790:3078556,2439708:-34777008 +k1,23785:3078556,2439708:-34777008 ) ] -[1,23790:3078558,4812305:0,0,0 -(1,23790:3078558,49800853:0,16384,2228224 -k1,23790:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23790:2537886,49800853:1179648,16384,0 +[1,23785:3078558,4812305:0,0,0 +(1,23785:3078558,49800853:0,16384,2228224 +k1,23785:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23785:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23790:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23785:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23790:3078558,4812305:0,0,0 -(1,23790:3078558,49800853:0,16384,2228224 -g1,23790:29030814,49800853 -g1,23790:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23790:36151628,51504789:16384,1179648,0 +[1,23785:3078558,4812305:0,0,0 +(1,23785:3078558,49800853:0,16384,2228224 +g1,23785:29030814,49800853 +g1,23785:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23785:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23790:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23785:37855564,49800853:1179648,16384,0 ) -) -k1,23790:3078556,49800853:-34777008 -) -] -g1,23790:6630773,4812305 -g1,23790:6630773,4812305 -g1,23790:9946239,4812305 -g1,23790:11513204,4812305 -k1,23790:31387652,4812305:19874448 -) -) -] -[1,23790:6630773,45706769:25952256,40108032,0 -(1,23790:6630773,45706769:25952256,40108032,0 -(1,23790:6630773,45706769:0,0,0 -g1,23790:6630773,45706769 -) -[1,23790:6630773,45706769:25952256,40108032,0 -v1,23727:6630773,6254097:0,393216,0 -(1,23727:6630773,8911489:25952256,3050608,196608 -g1,23727:6630773,8911489 -g1,23727:6630773,8911489 -g1,23727:6434165,8911489 -(1,23727:6434165,8911489:0,3050608,196608 -r1,23790:32779637,8911489:26345472,3247216,196608 -k1,23727:6434165,8911489:-26345472 -) -(1,23727:6434165,8911489:26345472,3050608,196608 -[1,23727:6630773,8911489:25952256,2854000,0 -(1,23719:6630773,6481928:25952256,424439,79822 -(1,23717:6630773,6481928:0,0,0 -g1,23717:6630773,6481928 -g1,23717:6630773,6481928 -g1,23717:6303093,6481928 -(1,23717:6303093,6481928:0,0,0 -) -g1,23717:6630773,6481928 -) -g1,23719:7626635,6481928 -g1,23719:8954451,6481928 -g1,23719:10946175,6481928 -g1,23719:11942037,6481928 -h1,23719:12605945,6481928:0,0,0 -k1,23719:32583029,6481928:19977084 -g1,23719:32583029,6481928 -) -(1,23721:6630773,7297855:25952256,431045,106246 -(1,23720:6630773,7297855:0,0,0 -g1,23720:6630773,7297855 -g1,23720:6630773,7297855 -g1,23720:6303093,7297855 -(1,23720:6303093,7297855:0,0,0 -) -g1,23720:6630773,7297855 -) -k1,23721:6630773,7297855:0 -g1,23721:13933760,7297855 -h1,23721:15925484,7297855:0,0,0 -k1,23721:32583029,7297855:16657545 -g1,23721:32583029,7297855 -) -(1,23726:6630773,8113782:25952256,424439,9908 -(1,23723:6630773,8113782:0,0,0 -g1,23723:6630773,8113782 -g1,23723:6630773,8113782 -g1,23723:6303093,8113782 -(1,23723:6303093,8113782:0,0,0 -) -g1,23723:6630773,8113782 -) -g1,23726:7626635,8113782 -g1,23726:7958589,8113782 -g1,23726:8290543,8113782 -g1,23726:8622497,8113782 -g1,23726:8954451,8113782 -g1,23726:9286405,8113782 -g1,23726:9618359,8113782 -g1,23726:9950313,8113782 -g1,23726:11610083,8113782 -g1,23726:11942037,8113782 -g1,23726:12273991,8113782 -g1,23726:12605945,8113782 -g1,23726:12937899,8113782 -g1,23726:13269853,8113782 -g1,23726:13601807,8113782 -g1,23726:13933761,8113782 -g1,23726:15593531,8113782 -g1,23726:15925485,8113782 -g1,23726:16257439,8113782 -g1,23726:16589393,8113782 -g1,23726:16921347,8113782 -g1,23726:17253301,8113782 -g1,23726:17585255,8113782 -g1,23726:17917209,8113782 -g1,23726:19576979,8113782 -g1,23726:19908933,8113782 -g1,23726:20240887,8113782 -g1,23726:20572841,8113782 -g1,23726:20904795,8113782 -g1,23726:21236749,8113782 -g1,23726:21568703,8113782 -g1,23726:21900657,8113782 -h1,23726:23228473,8113782:0,0,0 -k1,23726:32583029,8113782:9354556 -g1,23726:32583029,8113782 -) -(1,23726:6630773,8798637:25952256,424439,112852 -h1,23726:6630773,8798637:0,0,0 -g1,23726:7626635,8798637 -g1,23726:7958589,8798637 -g1,23726:8290543,8798637 -g1,23726:11610082,8798637 -g1,23726:11942036,8798637 -g1,23726:12273990,8798637 -g1,23726:15593529,8798637 -g1,23726:15925483,8798637 -g1,23726:16257437,8798637 -g1,23726:19576976,8798637 -h1,23726:23228469,8798637:0,0,0 -k1,23726:32583029,8798637:9354560 -g1,23726:32583029,8798637 -) -] -) -g1,23727:32583029,8911489 -g1,23727:6630773,8911489 -g1,23727:6630773,8911489 -g1,23727:32583029,8911489 -g1,23727:32583029,8911489 -) -h1,23727:6630773,9108097:0,0,0 -(1,23732:6630773,9973177:25952256,513147,134348 -h1,23731:6630773,9973177:983040,0,0 -k1,23731:9319894,9973177:226933 -k1,23731:9902687,9973177:226933 -k1,23731:13720994,9973177:226934 -k1,23731:16301980,9973177:226933 -k1,23731:17338283,9973177:226933 -k1,23731:20783689,9973177:226933 -k1,23731:22002182,9973177:226933 -k1,23731:24701133,9973177:226933 -k1,23731:27917819,9973177:226934 -k1,23731:28676249,9973177:226933 -k1,23731:30757851,9973177:226933 -k1,23731:32583029,9973177:0 -) -(1,23732:6630773,10838257:25952256,513147,126483 -k1,23731:7693566,10838257:253423 -k1,23731:8966074,10838257:253423 -k1,23731:11833728,10838257:253423 -k1,23731:12746442,10838257:253422 -k1,23731:14018950,10838257:253423 -k1,23731:17577354,10838257:253423 -k1,23731:18446815,10838257:253423 -k1,23731:19719323,10838257:253423 -k1,23731:21141253,10838257:253423 -k1,23731:22077560,10838257:253422 -k1,23731:24577557,10838257:253423 -k1,23731:25318514,10838257:253369 -k1,23731:26554977,10838257:253423 -k1,23731:27954624,10838257:253422 -k1,23731:29411288,10838257:253423 -k1,23731:31835263,10838257:253423 -k1,23731:32583029,10838257:0 -) -(1,23732:6630773,11703337:25952256,513147,134348 -k1,23731:10517331,11703337:296496 -k1,23731:13274048,11703337:296495 -k1,23731:13926404,11703337:296496 -k1,23731:17832623,11703337:296496 -k1,23731:18788410,11703337:296495 -k1,23731:20103991,11703337:296496 -k1,23731:22580870,11703337:296496 -k1,23731:24390591,11703337:296495 -k1,23731:25634738,11703337:296496 -k1,23731:27964816,11703337:296496 -k1,23731:29280396,11703337:296495 -k1,23731:31139926,11703337:296496 -k1,23731:32583029,11703337:0 -) -(1,23732:6630773,12568417:25952256,513147,134348 -k1,23731:10171481,12568417:178711 -k1,23731:11739556,12568417:178712 -k1,23731:13956437,12568417:178711 -k1,23731:14751186,12568417:178711 -k1,23731:16416910,12568417:178712 -k1,23731:18357229,12568417:178711 -k1,23731:20759576,12568417:178711 -k1,23731:22042570,12568417:178712 -k1,23731:22969047,12568417:178711 -k1,23731:24560059,12568417:178711 -k1,23731:26132722,12568417:178712 -k1,23731:29006929,12568417:178711 -(1,23731:29006929,12568417:0,459977,115847 -r1,23790:32530601,12568417:3523672,575824,115847 -k1,23731:29006929,12568417:-3523672 -) -(1,23731:29006929,12568417:3523672,459977,115847 -k1,23731:29006929,12568417:3277 -h1,23731:32527324,12568417:0,411205,112570 -) -k1,23731:32583029,12568417:0 -) -(1,23732:6630773,13433497:25952256,513147,134348 -k1,23731:9340162,13433497:149553 -k1,23731:10437366,13433497:149553 -k1,23731:10942779,13433497:149553 -k1,23731:12965352,13433497:149554 -k1,23731:16856355,13433497:149553 -k1,23731:18110190,13433497:149553 -k1,23731:19007509,13433497:149553 -k1,23731:21195232,13433497:149553 -k1,23731:21960823,13433497:149553 -k1,23731:22466236,13433497:149553 -k1,23731:24488808,13433497:149553 -k1,23731:25321247,13433497:149554 -k1,23731:28142047,13433497:149553 -k1,23731:29964079,13433497:149553 -k1,23731:30741467,13433497:149553 -k1,23731:32583029,13433497:0 -) -(1,23732:6630773,14298577:25952256,513147,102891 -g1,23731:8370753,14298577 -g1,23731:10021604,14298577 -g1,23731:11389340,14298577 -g1,23731:12689574,14298577 -g1,23731:14622886,14298577 -g1,23731:15481407,14298577 -g1,23731:18442979,14298577 -g1,23731:19714377,14298577 -g1,23731:21477295,14298577 -g1,23731:23814308,14298577 -k1,23732:32583029,14298577:6571299 -g1,23732:32583029,14298577 -) -(1,23734:6630773,15163657:25952256,513147,126483 -h1,23733:6630773,15163657:983040,0,0 -k1,23733:10585997,15163657:182316 -(1,23733:10585997,15163657:0,459977,115847 -r1,23790:15516517,15163657:4930520,575824,115847 -k1,23733:10585997,15163657:-4930520 -) -(1,23733:10585997,15163657:4930520,459977,115847 -k1,23733:10585997,15163657:3277 -h1,23733:15513240,15163657:0,411205,112570 -) -k1,23733:15698833,15163657:182316 -k1,23733:16412647,15163657:182317 -k1,23733:16950823,15163657:182316 -k1,23733:19775551,15163657:182316 -k1,23733:20767237,15163657:182316 -(1,23733:20767237,15163657:0,459977,115847 -r1,23790:24290909,15163657:3523672,575824,115847 -k1,23733:20767237,15163657:-3523672 -) -(1,23733:20767237,15163657:3523672,459977,115847 -k1,23733:20767237,15163657:3277 -h1,23733:24287632,15163657:0,411205,112570 -) -k1,23733:24473225,15163657:182316 -k1,23733:25940048,15163657:182317 -k1,23733:28500666,15163657:182316 -k1,23733:30863365,15163657:182316 -k1,23734:32583029,15163657:0 -) -(1,23734:6630773,16028737:25952256,513147,126483 -k1,23733:8625034,16028737:195298 -k1,23733:11022341,16028737:195297 -k1,23733:11869067,16028737:195298 -k1,23733:13808278,16028737:195298 -k1,23733:15516802,16028737:195298 -k1,23733:16328137,16028737:195297 -k1,23733:19737976,16028737:195298 -k1,23733:21204672,16028737:195298 -k1,23733:25339993,16028737:195297 -k1,23733:26202447,16028737:195298 -k1,23733:29438612,16028737:195294 -k1,23733:32583029,16028737:0 -) -(1,23734:6630773,16893817:25952256,513147,126483 -k1,23733:8296131,16893817:237328 -k1,23733:11127373,16893817:237327 -k1,23733:11896198,16893817:237328 -k1,23733:13418031,16893817:237327 -k1,23733:14674444,16893817:237328 -k1,23733:17395586,16893817:237327 -k1,23733:19925363,16893817:237328 -k1,23733:21266972,16893817:237327 -k1,23733:22252066,16893817:237328 -k1,23733:24986970,16893817:237327 -k1,23733:25840336,16893817:237328 -k1,23733:27096748,16893817:237327 -k1,23733:29145491,16893817:237328 -k1,23733:30365859,16893817:237328 -k1,23733:31794631,16893817:237327 -k1,23733:32583029,16893817:0 -) -(1,23734:6630773,17758897:25952256,513147,126483 -k1,23733:9468950,17758897:223946 -k1,23733:12524706,17758897:223945 -k1,23733:13434814,17758897:223946 -k1,23733:14980621,17758897:223946 -k1,23733:15863859,17758897:223946 -k1,23733:17106889,17758897:223945 -k1,23733:19511218,17758897:223946 -k1,23733:22990993,17758897:223946 -k1,23733:23570798,17758897:223945 -k1,23733:25267338,17758897:223946 -k1,23733:27004510,17758897:223946 -k1,23733:27879884,17758897:223946 -k1,23733:29819562,17758897:223945 -k1,23733:31269687,17758897:223946 -k1,23733:32583029,17758897:0 -) -(1,23734:6630773,18623977:25952256,513147,126483 -k1,23733:7767411,18623977:267631 -k1,23733:10034546,18623977:267632 -k1,23733:10961469,18623977:267631 -k1,23733:13227948,18623977:267631 -k1,23733:15605184,18623977:267632 -k1,23733:18398573,18623977:267631 -k1,23733:21095624,18623977:267631 -k1,23733:24027295,18623977:267632 -k1,23733:24962082,18623977:267631 -k1,23733:28270516,18623977:267563 -k1,23733:31064560,18623977:267631 -k1,23734:32583029,18623977:0 -) -(1,23734:6630773,19489057:25952256,513147,134348 -k1,23733:7849633,19489057:228611 -k1,23733:9645866,19489057:228612 -k1,23733:11065922,19489057:228611 -k1,23733:13552248,19489057:228611 -k1,23733:14432288,19489057:228612 -k1,23733:16362869,19489057:228611 -k1,23733:19102164,19489057:228611 -k1,23733:20477001,19489057:228612 -k1,23733:22449525,19489057:228611 -k1,23733:24413529,19489057:228611 -k1,23733:26045922,19489057:228612 -k1,23733:29493006,19489057:228611 -k1,23733:32583029,19489057:0 -) -(1,23734:6630773,20354137:25952256,505283,7863 -k1,23734:32583030,20354137:24044504 -g1,23734:32583030,20354137 -) -(1,23736:6630773,21219217:25952256,513147,122846 -h1,23735:6630773,21219217:983040,0,0 -g1,23735:9009729,21219217 -g1,23735:11958193,21219217 -g1,23735:12816714,21219217 -g1,23735:13998983,21219217 -(1,23735:13998983,21219217:0,459977,122846 -r1,23790:19984638,21219217:5985655,582823,122846 -k1,23735:13998983,21219217:-5985655 -) -(1,23735:13998983,21219217:5985655,459977,122846 -k1,23735:13998983,21219217:3277 -h1,23735:19981361,21219217:0,411205,112570 -) -g1,23735:20183867,21219217 -g1,23735:21374656,21219217 -g1,23735:23649410,21219217 -k1,23736:32583029,21219217:7012759 -g1,23736:32583029,21219217 -) -v1,23738:6630773,21904072:0,393216,0 -(1,23743:6630773,22810150:25952256,1299294,196608 -g1,23743:6630773,22810150 -g1,23743:6630773,22810150 -g1,23743:6434165,22810150 -(1,23743:6434165,22810150:0,1299294,196608 -r1,23790:32779637,22810150:26345472,1495902,196608 -k1,23743:6434165,22810150:-26345472 -) -(1,23743:6434165,22810150:26345472,1299294,196608 -[1,23743:6630773,22810150:25952256,1102686,0 -(1,23742:6630773,22115387:25952256,407923,9908 -(1,23739:6630773,22115387:0,0,0 -g1,23739:6630773,22115387 -g1,23739:6630773,22115387 -g1,23739:6303093,22115387 -(1,23739:6303093,22115387:0,0,0 -) -g1,23739:6630773,22115387 -) -g1,23742:6962727,22115387 -h1,23742:10614220,22115387:0,0,0 -k1,23742:32583028,22115387:21968808 -g1,23742:32583028,22115387 -) -(1,23742:6630773,22800242:25952256,407923,9908 -h1,23742:6630773,22800242:0,0,0 -g1,23742:8954451,22800242 -g1,23742:10282267,22800242 -h1,23742:10614221,22800242:0,0,0 -k1,23742:32583029,22800242:21968808 -g1,23742:32583029,22800242 -) -] -) -g1,23743:32583029,22810150 -g1,23743:6630773,22810150 -g1,23743:6630773,22810150 -g1,23743:32583029,22810150 -g1,23743:32583029,22810150 -) -h1,23743:6630773,23006758:0,0,0 -(1,23747:6630773,23871838:25952256,513147,115847 -h1,23746:6630773,23871838:983040,0,0 -k1,23746:8951266,23871838:140766 -k1,23746:10075072,23871838:140766 -k1,23746:10747335,23871838:140766 -k1,23746:12300402,23871838:140766 -k1,23746:13632613,23871838:140766 -k1,23746:14792464,23871838:140766 -k1,23746:17711956,23871838:140765 -k1,23746:19533065,23871838:140766 -k1,23746:21712001,23871838:140766 -k1,23746:22468805,23871838:140766 -k1,23746:22965431,23871838:140766 -k1,23746:25617537,23871838:140766 -k1,23746:27917059,23871838:140766 -(1,23746:27917059,23871838:0,459977,115847 -r1,23790:32495867,23871838:4578808,575824,115847 -k1,23746:27917059,23871838:-4578808 -) -(1,23746:27917059,23871838:4578808,459977,115847 -k1,23746:27917059,23871838:3277 -h1,23746:32492590,23871838:0,411205,112570 -) -k1,23746:32583029,23871838:0 -) -(1,23747:6630773,24736918:25952256,513147,134348 -k1,23746:8055908,24736918:233690 -k1,23746:10813390,24736918:233691 -k1,23746:12243767,24736918:233690 -k1,23746:14657841,24736918:233691 -k1,23746:17973689,24736918:233690 -k1,23746:18738877,24736918:233691 -k1,23746:21177854,24736918:233690 -k1,23746:22097706,24736918:233690 -k1,23746:22687257,24736918:233691 -k1,23746:25623652,24736918:233690 -k1,23746:28832022,24736918:233691 -k1,23746:31043589,24736918:233690 -k1,23747:32583029,24736918:0 -) -(1,23747:6630773,25601998:25952256,513147,134348 -k1,23746:8674548,25601998:231049 -k1,23746:10148160,25601998:231049 -(1,23746:10148160,25601998:0,452978,115847 -r1,23790:12616697,25601998:2468537,568825,115847 -k1,23746:10148160,25601998:-2468537 -) -(1,23746:10148160,25601998:2468537,452978,115847 -k1,23746:10148160,25601998:3277 -h1,23746:12613420,25601998:0,411205,112570 -) -k1,23746:12847745,25601998:231048 -k1,23746:16078377,25601998:231049 -k1,23746:17328511,25601998:231049 -k1,23746:19739943,25601998:231049 -k1,23746:20630283,25601998:231048 -k1,23746:21880417,25601998:231049 -k1,23746:23417599,25601998:231049 -k1,23746:24821087,25601998:231049 -k1,23746:27938996,25601998:231048 -(1,23746:27938996,25601998:0,452978,115847 -r1,23790:29352397,25601998:1413401,568825,115847 -k1,23746:27938996,25601998:-1413401 -) -(1,23746:27938996,25601998:1413401,452978,115847 -k1,23746:27938996,25601998:3277 -h1,23746:29349120,25601998:0,411205,112570 -) -k1,23746:29583446,25601998:231049 -k1,23746:32583029,25601998:0 -) -(1,23747:6630773,26467078:25952256,513147,115847 -g1,23746:7849087,26467078 -g1,23746:9630355,26467078 -g1,23746:12212473,26467078 -g1,23746:13603147,26467078 -(1,23746:13603147,26467078:0,452978,115847 -r1,23790:15016548,26467078:1413401,568825,115847 -k1,23746:13603147,26467078:-1413401 -) -(1,23746:13603147,26467078:1413401,452978,115847 -k1,23746:13603147,26467078:3277 -h1,23746:15013271,26467078:0,411205,112570 -) -g1,23746:15215777,26467078 -g1,23746:16434091,26467078 -k1,23747:32583029,26467078:14062272 -g1,23747:32583029,26467078 -) -v1,23749:6630773,27151933:0,393216,0 -(1,23756:6630773,29527363:25952256,2768646,196608 -g1,23756:6630773,29527363 -g1,23756:6630773,29527363 -g1,23756:6434165,29527363 -(1,23756:6434165,29527363:0,2768646,196608 -r1,23790:32779637,29527363:26345472,2965254,196608 -k1,23756:6434165,29527363:-26345472 -) -(1,23756:6434165,29527363:26345472,2768646,196608 -[1,23756:6630773,29527363:25952256,2572038,0 -(1,23751:6630773,27386370:25952256,431045,52847 -(1,23750:6630773,27386370:0,0,0 -g1,23750:6630773,27386370 -g1,23750:6630773,27386370 -g1,23750:6303093,27386370 -(1,23750:6303093,27386370:0,0,0 -) -g1,23750:6630773,27386370 -) -g1,23751:11278128,27386370 -k1,23751:11278128,27386370:0 -h1,23751:11942036,27386370:0,0,0 -k1,23751:32583028,27386370:20640992 -g1,23751:32583028,27386370 -) -(1,23752:6630773,28071225:25952256,431045,112852 -h1,23752:6630773,28071225:0,0,0 -g1,23752:6962727,28071225 -g1,23752:7294681,28071225 -k1,23752:7294681,28071225:0 -h1,23752:20904792,28071225:0,0,0 -k1,23752:32583029,28071225:11678237 -g1,23752:32583029,28071225 -) -(1,23753:6630773,28756080:25952256,431045,86428 -h1,23753:6630773,28756080:0,0,0 -g1,23753:6962727,28756080 -g1,23753:7294681,28756080 -g1,23753:7626635,28756080 -g1,23753:7958589,28756080 -g1,23753:8290543,28756080 -g1,23753:8622497,28756080 -g1,23753:8954451,28756080 -g1,23753:9286405,28756080 -g1,23753:9618359,28756080 -g1,23753:9950313,28756080 -g1,23753:10282267,28756080 -g1,23753:10614221,28756080 -g1,23753:10946175,28756080 -g1,23753:11278129,28756080 -g1,23753:11610083,28756080 -g1,23753:13933761,28756080 -g1,23753:14597669,28756080 -g1,23753:18249163,28756080 -g1,23753:20240887,28756080 -k1,23753:20240887,28756080:0 -h1,23753:22232611,28756080:0,0,0 -k1,23753:32583029,28756080:10350418 -g1,23753:32583029,28756080 -) -(1,23754:6630773,29440935:25952256,424439,86428 -h1,23754:6630773,29440935:0,0,0 -g1,23754:6962727,29440935 -g1,23754:7294681,29440935 -g1,23754:7626635,29440935 -g1,23754:7958589,29440935 -g1,23754:8290543,29440935 -g1,23754:8622497,29440935 -g1,23754:8954451,29440935 -g1,23754:9286405,29440935 -g1,23754:9618359,29440935 -g1,23754:9950313,29440935 -g1,23754:10282267,29440935 -g1,23754:10614221,29440935 -g1,23754:10946175,29440935 -g1,23754:11278129,29440935 -g1,23754:11610083,29440935 -g1,23754:14929622,29440935 -g1,23754:15593530,29440935 -g1,23754:18913070,29440935 -g1,23754:21568702,29440935 -g1,23754:24224334,29440935 -h1,23754:26879966,29440935:0,0,0 -k1,23754:32583029,29440935:5703063 -g1,23754:32583029,29440935 -) -] -) -g1,23756:32583029,29527363 -g1,23756:6630773,29527363 -g1,23756:6630773,29527363 -g1,23756:32583029,29527363 -g1,23756:32583029,29527363 -) -h1,23756:6630773,29723971:0,0,0 -v1,23760:6630773,30408826:0,393216,0 -(1,23782:6630773,36890315:25952256,6874705,196608 -g1,23782:6630773,36890315 -g1,23782:6630773,36890315 -g1,23782:6434165,36890315 -(1,23782:6434165,36890315:0,6874705,196608 -r1,23790:32779637,36890315:26345472,7071313,196608 -k1,23782:6434165,36890315:-26345472 -) -(1,23782:6434165,36890315:26345472,6874705,196608 -[1,23782:6630773,36890315:25952256,6678097,0 -(1,23762:6630773,30643263:25952256,431045,52847 -(1,23761:6630773,30643263:0,0,0 -g1,23761:6630773,30643263 -g1,23761:6630773,30643263 -g1,23761:6303093,30643263 -(1,23761:6303093,30643263:0,0,0 -) -g1,23761:6630773,30643263 -) -h1,23762:10946174,30643263:0,0,0 -k1,23762:32583030,30643263:21636856 -g1,23762:32583030,30643263 -) -(1,23768:6630773,31459190:25952256,424439,9908 -(1,23764:6630773,31459190:0,0,0 -g1,23764:6630773,31459190 -g1,23764:6630773,31459190 -g1,23764:6303093,31459190 -(1,23764:6303093,31459190:0,0,0 -) -g1,23764:6630773,31459190 -) -g1,23768:7626635,31459190 -g1,23768:7958589,31459190 -g1,23768:8290543,31459190 -g1,23768:9950313,31459190 -g1,23768:11610083,31459190 -g1,23768:13269853,31459190 -h1,23768:14597669,31459190:0,0,0 -k1,23768:32583029,31459190:17985360 -g1,23768:32583029,31459190 -) -(1,23768:6630773,32144045:25952256,407923,9908 -h1,23768:6630773,32144045:0,0,0 -g1,23768:7626635,32144045 -g1,23768:8290543,32144045 -g1,23768:8622497,32144045 -g1,23768:9950313,32144045 -g1,23768:11610083,32144045 -g1,23768:11942037,32144045 -g1,23768:13269853,32144045 -g1,23768:13601807,32144045 -h1,23768:14597669,32144045:0,0,0 -k1,23768:32583029,32144045:17985360 -g1,23768:32583029,32144045 -) -(1,23768:6630773,32828900:25952256,407923,9908 -h1,23768:6630773,32828900:0,0,0 -g1,23768:7626635,32828900 -g1,23768:8290543,32828900 -g1,23768:9950313,32828900 -g1,23768:11610083,32828900 -g1,23768:11942037,32828900 -g1,23768:12273991,32828900 -g1,23768:13269853,32828900 -g1,23768:13601807,32828900 -g1,23768:14265715,32828900 -h1,23768:14597669,32828900:0,0,0 -k1,23768:32583029,32828900:17985360 -g1,23768:32583029,32828900 -) -(1,23770:6630773,33644827:25952256,431045,79822 -(1,23769:6630773,33644827:0,0,0 -g1,23769:6630773,33644827 -g1,23769:6630773,33644827 -g1,23769:6303093,33644827 -(1,23769:6303093,33644827:0,0,0 -) -g1,23769:6630773,33644827 -) -h1,23770:14265714,33644827:0,0,0 -k1,23770:32583030,33644827:18317316 -g1,23770:32583030,33644827 -) -(1,23774:6630773,34460754:25952256,424439,79822 -(1,23772:6630773,34460754:0,0,0 -g1,23772:6630773,34460754 -g1,23772:6630773,34460754 -g1,23772:6303093,34460754 -(1,23772:6303093,34460754:0,0,0 -) -g1,23772:6630773,34460754 -) -g1,23774:7626635,34460754 -g1,23774:8954451,34460754 -g1,23774:10946175,34460754 -g1,23774:11942037,34460754 -h1,23774:12605945,34460754:0,0,0 -k1,23774:32583029,34460754:19977084 -g1,23774:32583029,34460754 -) -(1,23776:6630773,35276681:25952256,431045,106246 -(1,23775:6630773,35276681:0,0,0 -g1,23775:6630773,35276681 -g1,23775:6630773,35276681 -g1,23775:6303093,35276681 -(1,23775:6303093,35276681:0,0,0 -) -g1,23775:6630773,35276681 -) -k1,23776:6630773,35276681:0 -g1,23776:13933760,35276681 -h1,23776:15925484,35276681:0,0,0 -k1,23776:32583029,35276681:16657545 -g1,23776:32583029,35276681 -) -(1,23781:6630773,36092608:25952256,424439,9908 -(1,23778:6630773,36092608:0,0,0 -g1,23778:6630773,36092608 -g1,23778:6630773,36092608 -g1,23778:6303093,36092608 -(1,23778:6303093,36092608:0,0,0 -) -g1,23778:6630773,36092608 -) -g1,23781:7626635,36092608 -g1,23781:7958589,36092608 -g1,23781:8290543,36092608 -g1,23781:8622497,36092608 -g1,23781:8954451,36092608 -g1,23781:9286405,36092608 -g1,23781:9618359,36092608 -g1,23781:9950313,36092608 -g1,23781:11610083,36092608 -g1,23781:11942037,36092608 -g1,23781:12273991,36092608 -g1,23781:12605945,36092608 -g1,23781:12937899,36092608 -g1,23781:13269853,36092608 -g1,23781:13601807,36092608 -g1,23781:13933761,36092608 -g1,23781:15593531,36092608 -g1,23781:15925485,36092608 -g1,23781:16257439,36092608 -g1,23781:16589393,36092608 -g1,23781:16921347,36092608 -g1,23781:17253301,36092608 -g1,23781:17585255,36092608 -g1,23781:17917209,36092608 -g1,23781:19576979,36092608 -g1,23781:19908933,36092608 -g1,23781:20240887,36092608 -g1,23781:20572841,36092608 -g1,23781:20904795,36092608 -g1,23781:21236749,36092608 -g1,23781:21568703,36092608 -g1,23781:21900657,36092608 -h1,23781:23228473,36092608:0,0,0 -k1,23781:32583029,36092608:9354556 -g1,23781:32583029,36092608 -) -(1,23781:6630773,36777463:25952256,424439,112852 -h1,23781:6630773,36777463:0,0,0 -g1,23781:7626635,36777463 -g1,23781:7958589,36777463 -g1,23781:8290543,36777463 -g1,23781:11610082,36777463 -g1,23781:11942036,36777463 -g1,23781:12273990,36777463 -g1,23781:15593529,36777463 -g1,23781:15925483,36777463 -g1,23781:16257437,36777463 -g1,23781:19576976,36777463 -h1,23781:23228469,36777463:0,0,0 -k1,23781:32583029,36777463:9354560 -g1,23781:32583029,36777463 -) -] -) -g1,23782:32583029,36890315 -g1,23782:6630773,36890315 -g1,23782:6630773,36890315 -g1,23782:32583029,36890315 -g1,23782:32583029,36890315 -) -h1,23782:6630773,37086923:0,0,0 -v1,23786:6630773,37952003:0,393216,0 -(1,23787:6630773,45315289:25952256,7756502,0 -g1,23787:6630773,45315289 -g1,23787:6237557,45315289 -r1,23790:6368629,45315289:131072,7756502,0 -g1,23787:6567858,45315289 -g1,23787:6764466,45315289 -[1,23787:6764466,45315289:25818563,7756502,0 -(1,23787:6764466,38260301:25818563,701514,196608 -(1,23786:6764466,38260301:0,701514,196608 -r1,23790:7761522,38260301:997056,898122,196608 -k1,23786:6764466,38260301:-997056 -) -(1,23786:6764466,38260301:997056,701514,196608 -) -k1,23786:7935167,38260301:173645 -k1,23786:8262847,38260301:327680 -k1,23786:9633179,38260301:173645 -k1,23786:10789865,38260301:173646 -k1,23786:13366060,38260301:173645 -k1,23786:16565502,38260301:173645 -k1,23786:19829170,38260301:173645 -k1,23786:21858139,38260301:173645 -k1,23786:23768488,38260301:173645 -k1,23786:25336085,38260301:173646 -(1,23786:25336085,38260301:0,452978,115847 -r1,23790:29563181,38260301:4227096,568825,115847 -k1,23786:25336085,38260301:-4227096 -) -(1,23786:25336085,38260301:4227096,452978,115847 -k1,23786:25336085,38260301:3277 -h1,23786:29559904,38260301:0,411205,112570 -) -k1,23786:29736826,38260301:173645 -k1,23786:30929556,38260301:173645 -k1,23786:32583029,38260301:0 -) -(1,23787:6764466,39125381:25818563,513147,126483 -k1,23786:10820620,39125381:271450 -k1,23786:11719905,39125381:271450 -k1,23786:14657360,39125381:271450 -k1,23786:15580238,39125381:271450 -k1,23786:17595601,39125381:271450 -k1,23786:20957073,39125381:271449 -k1,23786:23257518,39125381:271450 -k1,23786:25230938,39125381:271450 -k1,23786:28807369,39125381:271450 -k1,23786:31056040,39125381:271450 -k1,23787:32583029,39125381:0 -) -(1,23787:6764466,39990461:25818563,513147,126483 -k1,23786:9224711,39990461:270032 -k1,23786:10486303,39990461:270032 -(1,23786:10486303,39990461:0,452978,115847 -r1,23790:11899704,39990461:1413401,568825,115847 -k1,23786:10486303,39990461:-1413401 -) -(1,23786:10486303,39990461:1413401,452978,115847 -k1,23786:10486303,39990461:3277 -h1,23786:11896427,39990461:0,411205,112570 -) -k1,23786:12169736,39990461:270032 -k1,23786:13631213,39990461:270032 -(1,23786:13631213,39990461:0,414482,115847 -r1,23790:13989479,39990461:358266,530329,115847 -k1,23786:13631213,39990461:-358266 -) -(1,23786:13631213,39990461:358266,414482,115847 -k1,23786:13631213,39990461:3277 -h1,23786:13986202,39990461:0,411205,112570 -) -k1,23786:14433181,39990461:270032 -k1,23786:16588684,39990461:270032 -k1,23786:17962998,39990461:270032 -k1,23786:18980796,39990461:270032 -k1,23786:20764054,39990461:270032 -k1,23786:21685513,39990461:270031 -k1,23786:23300344,39990461:270032 -k1,23786:25069184,39990461:270032 -k1,23786:25951978,39990461:270032 -k1,23786:27241095,39990461:270032 -k1,23786:28583296,39990461:270032 -k1,23786:29512620,39990461:270032 -k1,23786:30138512,39990461:270032 -k1,23786:31391584,39990461:270032 -k1,23786:32583029,39990461:0 -) -(1,23787:6764466,40855541:25818563,513147,134348 -k1,23786:8477669,40855541:228813 -k1,23786:9725568,40855541:228814 -k1,23786:12440162,40855541:228813 -k1,23786:13328268,40855541:228814 -k1,23786:15055889,40855541:228813 -k1,23786:16174682,40855541:228814 -k1,23786:19013794,40855541:228813 -k1,23786:19894035,40855541:228813 -k1,23786:21708820,40855541:228814 -(1,23786:21708820,40855541:0,452978,115847 -r1,23790:23825645,40855541:2116825,568825,115847 -k1,23786:21708820,40855541:-2116825 -) -(1,23786:21708820,40855541:2116825,452978,115847 -k1,23786:21708820,40855541:3277 -h1,23786:23822368,40855541:0,411205,112570 -) -k1,23786:24228128,40855541:228813 -k1,23786:26342413,40855541:228814 -k1,23786:28949528,40855541:228813 -k1,23786:29534202,40855541:228814 -k1,23786:31832642,40855541:228813 -k1,23787:32583029,40855541:0 -) -(1,23787:6764466,41720621:25818563,513147,134348 -k1,23786:9474661,41720621:282086 -k1,23786:12931310,41720621:282085 -k1,23786:13679357,41720621:282086 -k1,23786:14980527,41720621:282085 -k1,23786:16996696,41720621:282086 -k1,23786:17894819,41720621:282085 -k1,23786:19195990,41720621:282086 -k1,23786:20784208,41720621:282085 -k1,23786:22292473,41720621:282086 -k1,23786:23743065,41720621:282085 -k1,23786:25437452,41720621:282086 -k1,23786:27899920,41720621:282085 -k1,23786:28929772,41720621:282086 -k1,23786:31896867,41720621:282085 -k1,23786:32583029,41720621:0 -) -(1,23787:6764466,42585701:25818563,505283,126483 -k1,23786:9380898,42585701:233543 -k1,23786:11682757,42585701:233543 -k1,23786:13867963,42585701:233544 -k1,23786:15543953,42585701:233543 -k1,23786:17340530,42585701:233543 -(1,23786:17340530,42585701:0,452978,122846 -r1,23790:20864202,42585701:3523672,575824,122846 -k1,23786:17340530,42585701:-3523672 -) -(1,23786:17340530,42585701:3523672,452978,122846 -k1,23786:17340530,42585701:3277 -h1,23786:20860925,42585701:0,411205,112570 -) -k1,23786:21271415,42585701:233543 -k1,23786:22156386,42585701:233543 -k1,23786:24275400,42585701:233543 -k1,23786:25613226,42585701:233544 -k1,23786:26594535,42585701:233543 -k1,23786:29033365,42585701:233543 -k1,23786:29622768,42585701:233543 -k1,23786:32583029,42585701:0 -) -(1,23787:6764466,43450781:25818563,505283,134348 -k1,23786:8881878,43450781:157230 -k1,23786:10433058,43450781:157229 -k1,23786:12786399,43450781:157230 -k1,23786:13595057,43450781:157230 -k1,23786:14500053,43450781:157230 -k1,23786:18247344,43450781:157229 -k1,23786:19090736,43450781:157230 -(1,23786:19090736,43450781:0,414482,115847 -r1,23790:19800714,43450781:709978,530329,115847 -k1,23786:19090736,43450781:-709978 -) -(1,23786:19090736,43450781:709978,414482,115847 -k1,23786:19090736,43450781:3277 -h1,23786:19797437,43450781:0,411205,112570 -) -k1,23786:20131614,43450781:157230 -k1,23786:21480289,43450781:157230 -(1,23786:21480289,43450781:0,452978,115847 -r1,23790:25003961,43450781:3523672,568825,115847 -k1,23786:21480289,43450781:-3523672 -) -(1,23786:21480289,43450781:3523672,452978,115847 -k1,23786:21480289,43450781:3277 -h1,23786:25000684,43450781:0,411205,112570 -) -k1,23786:25334860,43450781:157229 -k1,23786:27377561,43450781:157230 -k1,23786:30295167,43450781:157230 -k1,23786:32583029,43450781:0 -) -(1,23787:6764466,44315861:25818563,513147,134348 -k1,23786:7651119,44315861:227361 -k1,23786:8897566,44315861:227362 -k1,23786:12601612,44315861:227361 -k1,23786:13488266,44315861:227362 -k1,23786:14734712,44315861:227361 -k1,23786:16696157,44315861:227362 -k1,23786:17574946,44315861:227361 -k1,23786:18217123,44315861:227334 -k1,23786:20677296,44315861:227361 -k1,23786:22096103,44315861:227362 -k1,23786:24967186,44315861:227361 -k1,23786:27950337,44315861:227362 -k1,23786:29869838,44315861:227361 -k1,23786:32583029,44315861:0 -) -(1,23787:6764466,45180941:25818563,505283,134348 -g1,23786:10378776,45180941 -g1,23786:11475848,45180941 -g1,23786:13371804,45180941 -g1,23786:17182067,45180941 -g1,23786:18372856,45180941 -g1,23786:21662108,45180941 -g1,23786:22477375,45180941 -g1,23786:23695689,45180941 -g1,23786:28518483,45180941 -g1,23786:30105765,45180941 -k1,23787:32583029,45180941:596381 -g1,23787:32583029,45180941 -) -] -g1,23787:32583029,45315289 -) -h1,23787:6630773,45315289:0,0,0 -] -(1,23790:32583029,45706769:0,0,0 -g1,23790:32583029,45706769 -) -) -] -(1,23790:6630773,47279633:25952256,0,0 -h1,23790:6630773,47279633:25952256,0,0 -) -] -(1,23790:4262630,4025873:0,0,0 -[1,23790:-473656,4025873:0,0,0 -(1,23790:-473656,-710413:0,0,0 -(1,23790:-473656,-710413:0,0,0 -g1,23790:-473656,-710413 -) -g1,23790:-473656,-710413 -) -] -) -] -!32264 -}408 -Input:4445:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4446:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4447:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4448:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +k1,23785:3078556,49800853:-34777008 +) +] +g1,23785:6630773,4812305 +g1,23785:6630773,4812305 +g1,23785:9946239,4812305 +g1,23785:11513204,4812305 +k1,23785:31387652,4812305:19874448 +) +) +] +[1,23785:6630773,45706769:25952256,40108032,0 +(1,23785:6630773,45706769:25952256,40108032,0 +(1,23785:6630773,45706769:0,0,0 +g1,23785:6630773,45706769 +) +[1,23785:6630773,45706769:25952256,40108032,0 +v1,23725:6630773,6254097:0,393216,0 +(1,23725:6630773,9734022:25952256,3873141,196608 +g1,23725:6630773,9734022 +g1,23725:6630773,9734022 +g1,23725:6434165,9734022 +(1,23725:6434165,9734022:0,3873141,196608 +r1,23785:32779637,9734022:26345472,4069749,196608 +k1,23725:6434165,9734022:-26345472 +) +(1,23725:6434165,9734022:26345472,3873141,196608 +[1,23725:6630773,9734022:25952256,3676533,0 +(1,23713:6630773,6488534:25952256,431045,79822 +(1,23712:6630773,6488534:0,0,0 +g1,23712:6630773,6488534 +g1,23712:6630773,6488534 +g1,23712:6303093,6488534 +(1,23712:6303093,6488534:0,0,0 +) +g1,23712:6630773,6488534 +) +h1,23713:14265714,6488534:0,0,0 +k1,23713:32583030,6488534:18317316 +g1,23713:32583030,6488534 +) +(1,23717:6630773,7304461:25952256,424439,79822 +(1,23715:6630773,7304461:0,0,0 +g1,23715:6630773,7304461 +g1,23715:6630773,7304461 +g1,23715:6303093,7304461 +(1,23715:6303093,7304461:0,0,0 +) +g1,23715:6630773,7304461 +) +g1,23717:7626635,7304461 +g1,23717:8954451,7304461 +g1,23717:10946175,7304461 +g1,23717:11942037,7304461 +h1,23717:12605945,7304461:0,0,0 +k1,23717:32583029,7304461:19977084 +g1,23717:32583029,7304461 +) +(1,23719:6630773,8120388:25952256,431045,106246 +(1,23718:6630773,8120388:0,0,0 +g1,23718:6630773,8120388 +g1,23718:6630773,8120388 +g1,23718:6303093,8120388 +(1,23718:6303093,8120388:0,0,0 +) +g1,23718:6630773,8120388 +) +k1,23719:6630773,8120388:0 +g1,23719:13933760,8120388 +h1,23719:15925484,8120388:0,0,0 +k1,23719:32583029,8120388:16657545 +g1,23719:32583029,8120388 +) +(1,23724:6630773,8936315:25952256,424439,9908 +(1,23721:6630773,8936315:0,0,0 +g1,23721:6630773,8936315 +g1,23721:6630773,8936315 +g1,23721:6303093,8936315 +(1,23721:6303093,8936315:0,0,0 +) +g1,23721:6630773,8936315 +) +g1,23724:7626635,8936315 +g1,23724:7958589,8936315 +g1,23724:8290543,8936315 +g1,23724:8622497,8936315 +g1,23724:8954451,8936315 +g1,23724:9286405,8936315 +g1,23724:9618359,8936315 +g1,23724:9950313,8936315 +g1,23724:11610083,8936315 +g1,23724:11942037,8936315 +g1,23724:12273991,8936315 +g1,23724:12605945,8936315 +g1,23724:12937899,8936315 +g1,23724:13269853,8936315 +g1,23724:13601807,8936315 +g1,23724:13933761,8936315 +g1,23724:15593531,8936315 +g1,23724:15925485,8936315 +g1,23724:16257439,8936315 +g1,23724:16589393,8936315 +g1,23724:16921347,8936315 +g1,23724:17253301,8936315 +g1,23724:17585255,8936315 +g1,23724:17917209,8936315 +g1,23724:19576979,8936315 +g1,23724:19908933,8936315 +g1,23724:20240887,8936315 +g1,23724:20572841,8936315 +g1,23724:20904795,8936315 +g1,23724:21236749,8936315 +g1,23724:21568703,8936315 +g1,23724:21900657,8936315 +h1,23724:23228473,8936315:0,0,0 +k1,23724:32583029,8936315:9354556 +g1,23724:32583029,8936315 +) +(1,23724:6630773,9621170:25952256,424439,112852 +h1,23724:6630773,9621170:0,0,0 +g1,23724:7626635,9621170 +g1,23724:7958589,9621170 +g1,23724:8290543,9621170 +g1,23724:11610082,9621170 +g1,23724:11942036,9621170 +g1,23724:12273990,9621170 +g1,23724:15593529,9621170 +g1,23724:15925483,9621170 +g1,23724:16257437,9621170 +g1,23724:19576976,9621170 +h1,23724:23228469,9621170:0,0,0 +k1,23724:32583029,9621170:9354560 +g1,23724:32583029,9621170 +) +] +) +g1,23725:32583029,9734022 +g1,23725:6630773,9734022 +g1,23725:6630773,9734022 +g1,23725:32583029,9734022 +g1,23725:32583029,9734022 +) +h1,23725:6630773,9930630:0,0,0 +(1,23730:6630773,10795710:25952256,513147,134348 +h1,23729:6630773,10795710:983040,0,0 +k1,23729:9319894,10795710:226933 +k1,23729:9902687,10795710:226933 +k1,23729:13720994,10795710:226934 +k1,23729:16301980,10795710:226933 +k1,23729:17338283,10795710:226933 +k1,23729:20783689,10795710:226933 +k1,23729:22002182,10795710:226933 +k1,23729:24701133,10795710:226933 +k1,23729:27917819,10795710:226934 +k1,23729:28676249,10795710:226933 +k1,23729:30757851,10795710:226933 +k1,23729:32583029,10795710:0 +) +(1,23730:6630773,11660790:25952256,513147,126483 +k1,23729:7693566,11660790:253423 +k1,23729:8966074,11660790:253423 +k1,23729:11833728,11660790:253423 +k1,23729:12746442,11660790:253422 +k1,23729:14018950,11660790:253423 +k1,23729:17577354,11660790:253423 +k1,23729:18446815,11660790:253423 +k1,23729:19719323,11660790:253423 +k1,23729:21141253,11660790:253423 +k1,23729:22077560,11660790:253422 +k1,23729:24577557,11660790:253423 +k1,23729:25318514,11660790:253369 +k1,23729:26554977,11660790:253423 +k1,23729:27954624,11660790:253422 +k1,23729:29411288,11660790:253423 +k1,23729:31835263,11660790:253423 +k1,23729:32583029,11660790:0 +) +(1,23730:6630773,12525870:25952256,513147,134348 +k1,23729:10517331,12525870:296496 +k1,23729:13274048,12525870:296495 +k1,23729:13926404,12525870:296496 +k1,23729:17832623,12525870:296496 +k1,23729:18788410,12525870:296495 +k1,23729:20103991,12525870:296496 +k1,23729:22580870,12525870:296496 +k1,23729:24390591,12525870:296495 +k1,23729:25634738,12525870:296496 +k1,23729:27964816,12525870:296496 +k1,23729:29280396,12525870:296495 +k1,23729:31139926,12525870:296496 +k1,23729:32583029,12525870:0 +) +(1,23730:6630773,13390950:25952256,513147,134348 +k1,23729:10171481,13390950:178711 +k1,23729:11739556,13390950:178712 +k1,23729:13956437,13390950:178711 +k1,23729:14751186,13390950:178711 +k1,23729:16416910,13390950:178712 +k1,23729:18357229,13390950:178711 +k1,23729:20759576,13390950:178711 +k1,23729:22042570,13390950:178712 +k1,23729:22969047,13390950:178711 +k1,23729:24560059,13390950:178711 +k1,23729:26132722,13390950:178712 +k1,23729:29006929,13390950:178711 +(1,23729:29006929,13390950:0,459977,115847 +r1,23785:32530601,13390950:3523672,575824,115847 +k1,23729:29006929,13390950:-3523672 +) +(1,23729:29006929,13390950:3523672,459977,115847 +k1,23729:29006929,13390950:3277 +h1,23729:32527324,13390950:0,411205,112570 +) +k1,23729:32583029,13390950:0 +) +(1,23730:6630773,14256030:25952256,513147,134348 +k1,23729:9340162,14256030:149553 +k1,23729:10437366,14256030:149553 +k1,23729:10942779,14256030:149553 +k1,23729:12965352,14256030:149554 +k1,23729:16856355,14256030:149553 +k1,23729:18110190,14256030:149553 +k1,23729:19007509,14256030:149553 +k1,23729:21195232,14256030:149553 +k1,23729:21960823,14256030:149553 +k1,23729:22466236,14256030:149553 +k1,23729:24488808,14256030:149553 +k1,23729:25321247,14256030:149554 +k1,23729:28142047,14256030:149553 +k1,23729:29964079,14256030:149553 +k1,23729:30741467,14256030:149553 +k1,23729:32583029,14256030:0 +) +(1,23730:6630773,15121110:25952256,513147,102891 +g1,23729:8370753,15121110 +g1,23729:10021604,15121110 +g1,23729:11389340,15121110 +g1,23729:12689574,15121110 +g1,23729:14622886,15121110 +g1,23729:15481407,15121110 +g1,23729:18442979,15121110 +g1,23729:19714377,15121110 +g1,23729:21477295,15121110 +g1,23729:23814308,15121110 +k1,23730:32583029,15121110:6571299 +g1,23730:32583029,15121110 +) +(1,23732:6630773,15986190:25952256,513147,126483 +h1,23731:6630773,15986190:983040,0,0 +k1,23731:10585997,15986190:182316 +(1,23731:10585997,15986190:0,459977,115847 +r1,23785:15516517,15986190:4930520,575824,115847 +k1,23731:10585997,15986190:-4930520 +) +(1,23731:10585997,15986190:4930520,459977,115847 +k1,23731:10585997,15986190:3277 +h1,23731:15513240,15986190:0,411205,112570 +) +k1,23731:15698833,15986190:182316 +k1,23731:16412647,15986190:182317 +k1,23731:16950823,15986190:182316 +k1,23731:19775551,15986190:182316 +k1,23731:20767237,15986190:182316 +(1,23731:20767237,15986190:0,459977,115847 +r1,23785:24290909,15986190:3523672,575824,115847 +k1,23731:20767237,15986190:-3523672 +) +(1,23731:20767237,15986190:3523672,459977,115847 +k1,23731:20767237,15986190:3277 +h1,23731:24287632,15986190:0,411205,112570 +) +k1,23731:24473225,15986190:182316 +k1,23731:25940048,15986190:182317 +k1,23731:28500666,15986190:182316 +k1,23731:30863365,15986190:182316 +k1,23732:32583029,15986190:0 +) +(1,23732:6630773,16851270:25952256,513147,126483 +k1,23731:8625034,16851270:195298 +k1,23731:11022341,16851270:195297 +k1,23731:11869067,16851270:195298 +k1,23731:13808278,16851270:195298 +k1,23731:15516802,16851270:195298 +k1,23731:16328137,16851270:195297 +k1,23731:19737976,16851270:195298 +k1,23731:21204672,16851270:195298 +k1,23731:25339993,16851270:195297 +k1,23731:26202447,16851270:195298 +k1,23731:29438612,16851270:195294 +k1,23731:32583029,16851270:0 +) +(1,23732:6630773,17716350:25952256,513147,126483 +k1,23731:8296131,17716350:237328 +k1,23731:11127373,17716350:237327 +k1,23731:11896198,17716350:237328 +k1,23731:13418031,17716350:237327 +k1,23731:14674444,17716350:237328 +k1,23731:17395586,17716350:237327 +k1,23731:19925363,17716350:237328 +k1,23731:21266972,17716350:237327 +k1,23731:22252066,17716350:237328 +k1,23731:24986970,17716350:237327 +k1,23731:25840336,17716350:237328 +k1,23731:27096748,17716350:237327 +k1,23731:29145491,17716350:237328 +k1,23731:30365859,17716350:237328 +k1,23731:31794631,17716350:237327 +k1,23731:32583029,17716350:0 +) +(1,23732:6630773,18581430:25952256,513147,126483 +k1,23731:9468950,18581430:223946 +k1,23731:12524706,18581430:223945 +k1,23731:13434814,18581430:223946 +k1,23731:14980621,18581430:223946 +k1,23731:15863859,18581430:223946 +k1,23731:17106889,18581430:223945 +k1,23731:19511218,18581430:223946 +k1,23731:22990993,18581430:223946 +k1,23731:23570798,18581430:223945 +k1,23731:25267338,18581430:223946 +k1,23731:27004510,18581430:223946 +k1,23731:27879884,18581430:223946 +k1,23731:29819562,18581430:223945 +k1,23731:31269687,18581430:223946 +k1,23731:32583029,18581430:0 +) +(1,23732:6630773,19446510:25952256,513147,126483 +k1,23731:7767411,19446510:267631 +k1,23731:10034546,19446510:267632 +k1,23731:10961469,19446510:267631 +k1,23731:13227948,19446510:267631 +k1,23731:15605184,19446510:267632 +k1,23731:18398573,19446510:267631 +k1,23731:21095624,19446510:267631 +k1,23731:24027295,19446510:267632 +k1,23731:24962082,19446510:267631 +k1,23731:28270516,19446510:267563 +k1,23731:31064560,19446510:267631 +k1,23732:32583029,19446510:0 +) +(1,23732:6630773,20311590:25952256,513147,134348 +k1,23731:7849633,20311590:228611 +k1,23731:9645866,20311590:228612 +k1,23731:11065922,20311590:228611 +k1,23731:13552248,20311590:228611 +k1,23731:14432288,20311590:228612 +k1,23731:16362869,20311590:228611 +k1,23731:19102164,20311590:228611 +k1,23731:20477001,20311590:228612 +k1,23731:22449525,20311590:228611 +k1,23731:24413529,20311590:228611 +k1,23731:26045922,20311590:228612 +k1,23731:29493006,20311590:228611 +k1,23731:32583029,20311590:0 +) +(1,23732:6630773,21176670:25952256,505283,7863 +k1,23732:32583030,21176670:24044504 +g1,23732:32583030,21176670 +) +(1,23734:6630773,22041750:25952256,513147,122846 +h1,23733:6630773,22041750:983040,0,0 +g1,23733:9009729,22041750 +g1,23733:11958193,22041750 +g1,23733:12816714,22041750 +g1,23733:13998983,22041750 +(1,23733:13998983,22041750:0,459977,122846 +r1,23785:19984638,22041750:5985655,582823,122846 +k1,23733:13998983,22041750:-5985655 +) +(1,23733:13998983,22041750:5985655,459977,122846 +k1,23733:13998983,22041750:3277 +h1,23733:19981361,22041750:0,411205,112570 +) +g1,23733:20183867,22041750 +g1,23733:21374656,22041750 +g1,23733:23649410,22041750 +k1,23734:32583029,22041750:7012759 +g1,23734:32583029,22041750 +) +v1,23736:6630773,22726605:0,393216,0 +(1,23741:6630773,23632683:25952256,1299294,196608 +g1,23741:6630773,23632683 +g1,23741:6630773,23632683 +g1,23741:6434165,23632683 +(1,23741:6434165,23632683:0,1299294,196608 +r1,23785:32779637,23632683:26345472,1495902,196608 +k1,23741:6434165,23632683:-26345472 +) +(1,23741:6434165,23632683:26345472,1299294,196608 +[1,23741:6630773,23632683:25952256,1102686,0 +(1,23740:6630773,22937920:25952256,407923,9908 +(1,23737:6630773,22937920:0,0,0 +g1,23737:6630773,22937920 +g1,23737:6630773,22937920 +g1,23737:6303093,22937920 +(1,23737:6303093,22937920:0,0,0 +) +g1,23737:6630773,22937920 +) +g1,23740:6962727,22937920 +h1,23740:10614220,22937920:0,0,0 +k1,23740:32583028,22937920:21968808 +g1,23740:32583028,22937920 +) +(1,23740:6630773,23622775:25952256,407923,9908 +h1,23740:6630773,23622775:0,0,0 +g1,23740:8954451,23622775 +g1,23740:10282267,23622775 +h1,23740:10614221,23622775:0,0,0 +k1,23740:32583029,23622775:21968808 +g1,23740:32583029,23622775 +) +] +) +g1,23741:32583029,23632683 +g1,23741:6630773,23632683 +g1,23741:6630773,23632683 +g1,23741:32583029,23632683 +g1,23741:32583029,23632683 +) +h1,23741:6630773,23829291:0,0,0 +(1,23745:6630773,24694371:25952256,513147,115847 +h1,23744:6630773,24694371:983040,0,0 +k1,23744:8951266,24694371:140766 +k1,23744:10075072,24694371:140766 +k1,23744:10747335,24694371:140766 +k1,23744:12300402,24694371:140766 +k1,23744:13632613,24694371:140766 +k1,23744:14792464,24694371:140766 +k1,23744:17711956,24694371:140765 +k1,23744:19533065,24694371:140766 +k1,23744:21712001,24694371:140766 +k1,23744:22468805,24694371:140766 +k1,23744:22965431,24694371:140766 +k1,23744:25617537,24694371:140766 +k1,23744:27917059,24694371:140766 +(1,23744:27917059,24694371:0,459977,115847 +r1,23785:32495867,24694371:4578808,575824,115847 +k1,23744:27917059,24694371:-4578808 +) +(1,23744:27917059,24694371:4578808,459977,115847 +k1,23744:27917059,24694371:3277 +h1,23744:32492590,24694371:0,411205,112570 +) +k1,23744:32583029,24694371:0 +) +(1,23745:6630773,25559451:25952256,513147,134348 +k1,23744:8055908,25559451:233690 +k1,23744:10813390,25559451:233691 +k1,23744:12243767,25559451:233690 +k1,23744:14657841,25559451:233691 +k1,23744:17973689,25559451:233690 +k1,23744:18738877,25559451:233691 +k1,23744:21177854,25559451:233690 +k1,23744:22097706,25559451:233690 +k1,23744:22687257,25559451:233691 +k1,23744:25623652,25559451:233690 +k1,23744:28832022,25559451:233691 +k1,23744:31043589,25559451:233690 +k1,23745:32583029,25559451:0 +) +(1,23745:6630773,26424531:25952256,513147,134348 +k1,23744:8674548,26424531:231049 +k1,23744:10148160,26424531:231049 +(1,23744:10148160,26424531:0,452978,115847 +r1,23785:12616697,26424531:2468537,568825,115847 +k1,23744:10148160,26424531:-2468537 +) +(1,23744:10148160,26424531:2468537,452978,115847 +k1,23744:10148160,26424531:3277 +h1,23744:12613420,26424531:0,411205,112570 +) +k1,23744:12847745,26424531:231048 +k1,23744:16078377,26424531:231049 +k1,23744:17328511,26424531:231049 +k1,23744:19739943,26424531:231049 +k1,23744:20630283,26424531:231048 +k1,23744:21880417,26424531:231049 +k1,23744:23417599,26424531:231049 +k1,23744:24821087,26424531:231049 +k1,23744:27938996,26424531:231048 +(1,23744:27938996,26424531:0,452978,115847 +r1,23785:29352397,26424531:1413401,568825,115847 +k1,23744:27938996,26424531:-1413401 +) +(1,23744:27938996,26424531:1413401,452978,115847 +k1,23744:27938996,26424531:3277 +h1,23744:29349120,26424531:0,411205,112570 +) +k1,23744:29583446,26424531:231049 +k1,23744:32583029,26424531:0 +) +(1,23745:6630773,27289611:25952256,513147,115847 +g1,23744:7849087,27289611 +g1,23744:9630355,27289611 +g1,23744:12212473,27289611 +g1,23744:13603147,27289611 +(1,23744:13603147,27289611:0,452978,115847 +r1,23785:15016548,27289611:1413401,568825,115847 +k1,23744:13603147,27289611:-1413401 +) +(1,23744:13603147,27289611:1413401,452978,115847 +k1,23744:13603147,27289611:3277 +h1,23744:15013271,27289611:0,411205,112570 +) +g1,23744:15215777,27289611 +g1,23744:16434091,27289611 +k1,23745:32583029,27289611:14062272 +g1,23745:32583029,27289611 +) +v1,23747:6630773,27974466:0,393216,0 +(1,23754:6630773,30349896:25952256,2768646,196608 +g1,23754:6630773,30349896 +g1,23754:6630773,30349896 +g1,23754:6434165,30349896 +(1,23754:6434165,30349896:0,2768646,196608 +r1,23785:32779637,30349896:26345472,2965254,196608 +k1,23754:6434165,30349896:-26345472 +) +(1,23754:6434165,30349896:26345472,2768646,196608 +[1,23754:6630773,30349896:25952256,2572038,0 +(1,23749:6630773,28208903:25952256,431045,52847 +(1,23748:6630773,28208903:0,0,0 +g1,23748:6630773,28208903 +g1,23748:6630773,28208903 +g1,23748:6303093,28208903 +(1,23748:6303093,28208903:0,0,0 +) +g1,23748:6630773,28208903 +) +g1,23749:11278128,28208903 +k1,23749:11278128,28208903:0 +h1,23749:11942036,28208903:0,0,0 +k1,23749:32583028,28208903:20640992 +g1,23749:32583028,28208903 +) +(1,23750:6630773,28893758:25952256,431045,112852 +h1,23750:6630773,28893758:0,0,0 +g1,23750:6962727,28893758 +g1,23750:7294681,28893758 +k1,23750:7294681,28893758:0 +h1,23750:20904792,28893758:0,0,0 +k1,23750:32583029,28893758:11678237 +g1,23750:32583029,28893758 +) +(1,23751:6630773,29578613:25952256,431045,86428 +h1,23751:6630773,29578613:0,0,0 +g1,23751:6962727,29578613 +g1,23751:7294681,29578613 +g1,23751:7626635,29578613 +g1,23751:7958589,29578613 +g1,23751:8290543,29578613 +g1,23751:8622497,29578613 +g1,23751:8954451,29578613 +g1,23751:9286405,29578613 +g1,23751:9618359,29578613 +g1,23751:9950313,29578613 +g1,23751:10282267,29578613 +g1,23751:10614221,29578613 +g1,23751:10946175,29578613 +g1,23751:11278129,29578613 +g1,23751:11610083,29578613 +g1,23751:13933761,29578613 +g1,23751:14597669,29578613 +g1,23751:18249163,29578613 +g1,23751:20240887,29578613 +k1,23751:20240887,29578613:0 +h1,23751:22232611,29578613:0,0,0 +k1,23751:32583029,29578613:10350418 +g1,23751:32583029,29578613 +) +(1,23752:6630773,30263468:25952256,424439,86428 +h1,23752:6630773,30263468:0,0,0 +g1,23752:6962727,30263468 +g1,23752:7294681,30263468 +g1,23752:7626635,30263468 +g1,23752:7958589,30263468 +g1,23752:8290543,30263468 +g1,23752:8622497,30263468 +g1,23752:8954451,30263468 +g1,23752:9286405,30263468 +g1,23752:9618359,30263468 +g1,23752:9950313,30263468 +g1,23752:10282267,30263468 +g1,23752:10614221,30263468 +g1,23752:10946175,30263468 +g1,23752:11278129,30263468 +g1,23752:11610083,30263468 +g1,23752:14929622,30263468 +g1,23752:15593530,30263468 +g1,23752:18913070,30263468 +g1,23752:21568702,30263468 +g1,23752:24224334,30263468 +h1,23752:26879966,30263468:0,0,0 +k1,23752:32583029,30263468:5703063 +g1,23752:32583029,30263468 +) +] +) +g1,23754:32583029,30349896 +g1,23754:6630773,30349896 +g1,23754:6630773,30349896 +g1,23754:32583029,30349896 +g1,23754:32583029,30349896 +) +h1,23754:6630773,30546504:0,0,0 +v1,23758:6630773,31231359:0,393216,0 +(1,23780:6630773,37712848:25952256,6874705,196608 +g1,23780:6630773,37712848 +g1,23780:6630773,37712848 +g1,23780:6434165,37712848 +(1,23780:6434165,37712848:0,6874705,196608 +r1,23785:32779637,37712848:26345472,7071313,196608 +k1,23780:6434165,37712848:-26345472 +) +(1,23780:6434165,37712848:26345472,6874705,196608 +[1,23780:6630773,37712848:25952256,6678097,0 +(1,23760:6630773,31465796:25952256,431045,52847 +(1,23759:6630773,31465796:0,0,0 +g1,23759:6630773,31465796 +g1,23759:6630773,31465796 +g1,23759:6303093,31465796 +(1,23759:6303093,31465796:0,0,0 +) +g1,23759:6630773,31465796 +) +h1,23760:10946174,31465796:0,0,0 +k1,23760:32583030,31465796:21636856 +g1,23760:32583030,31465796 +) +(1,23766:6630773,32281723:25952256,424439,9908 +(1,23762:6630773,32281723:0,0,0 +g1,23762:6630773,32281723 +g1,23762:6630773,32281723 +g1,23762:6303093,32281723 +(1,23762:6303093,32281723:0,0,0 +) +g1,23762:6630773,32281723 +) +g1,23766:7626635,32281723 +g1,23766:7958589,32281723 +g1,23766:8290543,32281723 +g1,23766:9950313,32281723 +g1,23766:11610083,32281723 +g1,23766:13269853,32281723 +h1,23766:14597669,32281723:0,0,0 +k1,23766:32583029,32281723:17985360 +g1,23766:32583029,32281723 +) +(1,23766:6630773,32966578:25952256,407923,9908 +h1,23766:6630773,32966578:0,0,0 +g1,23766:7626635,32966578 +g1,23766:8290543,32966578 +g1,23766:8622497,32966578 +g1,23766:9950313,32966578 +g1,23766:11610083,32966578 +g1,23766:11942037,32966578 +g1,23766:13269853,32966578 +g1,23766:13601807,32966578 +h1,23766:14597669,32966578:0,0,0 +k1,23766:32583029,32966578:17985360 +g1,23766:32583029,32966578 +) +(1,23766:6630773,33651433:25952256,407923,9908 +h1,23766:6630773,33651433:0,0,0 +g1,23766:7626635,33651433 +g1,23766:8290543,33651433 +g1,23766:9950313,33651433 +g1,23766:11610083,33651433 +g1,23766:11942037,33651433 +g1,23766:12273991,33651433 +g1,23766:13269853,33651433 +g1,23766:13601807,33651433 +g1,23766:14265715,33651433 +h1,23766:14597669,33651433:0,0,0 +k1,23766:32583029,33651433:17985360 +g1,23766:32583029,33651433 +) +(1,23768:6630773,34467360:25952256,431045,79822 +(1,23767:6630773,34467360:0,0,0 +g1,23767:6630773,34467360 +g1,23767:6630773,34467360 +g1,23767:6303093,34467360 +(1,23767:6303093,34467360:0,0,0 +) +g1,23767:6630773,34467360 +) +h1,23768:14265714,34467360:0,0,0 +k1,23768:32583030,34467360:18317316 +g1,23768:32583030,34467360 +) +(1,23772:6630773,35283287:25952256,424439,79822 +(1,23770:6630773,35283287:0,0,0 +g1,23770:6630773,35283287 +g1,23770:6630773,35283287 +g1,23770:6303093,35283287 +(1,23770:6303093,35283287:0,0,0 +) +g1,23770:6630773,35283287 +) +g1,23772:7626635,35283287 +g1,23772:8954451,35283287 +g1,23772:10946175,35283287 +g1,23772:11942037,35283287 +h1,23772:12605945,35283287:0,0,0 +k1,23772:32583029,35283287:19977084 +g1,23772:32583029,35283287 +) +(1,23774:6630773,36099214:25952256,431045,106246 +(1,23773:6630773,36099214:0,0,0 +g1,23773:6630773,36099214 +g1,23773:6630773,36099214 +g1,23773:6303093,36099214 +(1,23773:6303093,36099214:0,0,0 +) +g1,23773:6630773,36099214 +) +k1,23774:6630773,36099214:0 +g1,23774:13933760,36099214 +h1,23774:15925484,36099214:0,0,0 +k1,23774:32583029,36099214:16657545 +g1,23774:32583029,36099214 +) +(1,23779:6630773,36915141:25952256,424439,9908 +(1,23776:6630773,36915141:0,0,0 +g1,23776:6630773,36915141 +g1,23776:6630773,36915141 +g1,23776:6303093,36915141 +(1,23776:6303093,36915141:0,0,0 +) +g1,23776:6630773,36915141 +) +g1,23779:7626635,36915141 +g1,23779:7958589,36915141 +g1,23779:8290543,36915141 +g1,23779:8622497,36915141 +g1,23779:8954451,36915141 +g1,23779:9286405,36915141 +g1,23779:9618359,36915141 +g1,23779:9950313,36915141 +g1,23779:11610083,36915141 +g1,23779:11942037,36915141 +g1,23779:12273991,36915141 +g1,23779:12605945,36915141 +g1,23779:12937899,36915141 +g1,23779:13269853,36915141 +g1,23779:13601807,36915141 +g1,23779:13933761,36915141 +g1,23779:15593531,36915141 +g1,23779:15925485,36915141 +g1,23779:16257439,36915141 +g1,23779:16589393,36915141 +g1,23779:16921347,36915141 +g1,23779:17253301,36915141 +g1,23779:17585255,36915141 +g1,23779:17917209,36915141 +g1,23779:19576979,36915141 +g1,23779:19908933,36915141 +g1,23779:20240887,36915141 +g1,23779:20572841,36915141 +g1,23779:20904795,36915141 +g1,23779:21236749,36915141 +g1,23779:21568703,36915141 +g1,23779:21900657,36915141 +h1,23779:23228473,36915141:0,0,0 +k1,23779:32583029,36915141:9354556 +g1,23779:32583029,36915141 +) +(1,23779:6630773,37599996:25952256,424439,112852 +h1,23779:6630773,37599996:0,0,0 +g1,23779:7626635,37599996 +g1,23779:7958589,37599996 +g1,23779:8290543,37599996 +g1,23779:11610082,37599996 +g1,23779:11942036,37599996 +g1,23779:12273990,37599996 +g1,23779:15593529,37599996 +g1,23779:15925483,37599996 +g1,23779:16257437,37599996 +g1,23779:19576976,37599996 +h1,23779:23228469,37599996:0,0,0 +k1,23779:32583029,37599996:9354560 +g1,23779:32583029,37599996 +) +] +) +g1,23780:32583029,37712848 +g1,23780:6630773,37712848 +g1,23780:6630773,37712848 +g1,23780:32583029,37712848 +g1,23780:32583029,37712848 +) +h1,23780:6630773,37909456:0,0,0 +v1,23784:6630773,38774536:0,393216,0 +(1,23785:6630773,44407662:25952256,6026342,0 +g1,23785:6630773,44407662 +g1,23785:6237557,44407662 +r1,23785:6368629,44407662:131072,6026342,0 +g1,23785:6567858,44407662 +g1,23785:6764466,44407662 +[1,23785:6764466,44407662:25818563,6026342,0 +(1,23785:6764466,39082834:25818563,701514,196608 +(1,23784:6764466,39082834:0,701514,196608 +r1,23785:7761522,39082834:997056,898122,196608 +k1,23784:6764466,39082834:-997056 +) +(1,23784:6764466,39082834:997056,701514,196608 +) +k1,23784:7935167,39082834:173645 +k1,23784:8262847,39082834:327680 +k1,23784:9633179,39082834:173645 +k1,23784:10789865,39082834:173646 +k1,23784:13366060,39082834:173645 +k1,23784:16565502,39082834:173645 +k1,23784:19829170,39082834:173645 +k1,23784:21858139,39082834:173645 +k1,23784:23768488,39082834:173645 +k1,23784:25336085,39082834:173646 +(1,23784:25336085,39082834:0,452978,115847 +r1,23785:29563181,39082834:4227096,568825,115847 +k1,23784:25336085,39082834:-4227096 +) +(1,23784:25336085,39082834:4227096,452978,115847 +k1,23784:25336085,39082834:3277 +h1,23784:29559904,39082834:0,411205,112570 +) +k1,23784:29736826,39082834:173645 +k1,23784:30929556,39082834:173645 +k1,23784:32583029,39082834:0 +) +(1,23785:6764466,39947914:25818563,513147,126483 +k1,23784:10820620,39947914:271450 +k1,23784:11719905,39947914:271450 +k1,23784:14657360,39947914:271450 +k1,23784:15580238,39947914:271450 +k1,23784:17595601,39947914:271450 +k1,23784:20957073,39947914:271449 +k1,23784:23257518,39947914:271450 +k1,23784:25230938,39947914:271450 +k1,23784:28807369,39947914:271450 +k1,23784:31056040,39947914:271450 +k1,23785:32583029,39947914:0 +) +(1,23785:6764466,40812994:25818563,513147,126483 +k1,23784:9224711,40812994:270032 +k1,23784:10486303,40812994:270032 +(1,23784:10486303,40812994:0,452978,115847 +r1,23785:11899704,40812994:1413401,568825,115847 +k1,23784:10486303,40812994:-1413401 +) +(1,23784:10486303,40812994:1413401,452978,115847 +k1,23784:10486303,40812994:3277 +h1,23784:11896427,40812994:0,411205,112570 +) +k1,23784:12169736,40812994:270032 +k1,23784:13631213,40812994:270032 +(1,23784:13631213,40812994:0,414482,115847 +r1,23785:13989479,40812994:358266,530329,115847 +k1,23784:13631213,40812994:-358266 +) +(1,23784:13631213,40812994:358266,414482,115847 +k1,23784:13631213,40812994:3277 +h1,23784:13986202,40812994:0,411205,112570 +) +k1,23784:14433181,40812994:270032 +k1,23784:16588684,40812994:270032 +k1,23784:17962998,40812994:270032 +k1,23784:18980796,40812994:270032 +k1,23784:20764054,40812994:270032 +k1,23784:21685513,40812994:270031 +k1,23784:23300344,40812994:270032 +k1,23784:25069184,40812994:270032 +k1,23784:25951978,40812994:270032 +k1,23784:27241095,40812994:270032 +k1,23784:28583296,40812994:270032 +k1,23784:29512620,40812994:270032 +k1,23784:30138512,40812994:270032 +k1,23784:31391584,40812994:270032 +k1,23784:32583029,40812994:0 +) +(1,23785:6764466,41678074:25818563,513147,134348 +k1,23784:8477669,41678074:228813 +k1,23784:9725568,41678074:228814 +k1,23784:12440162,41678074:228813 +k1,23784:13328268,41678074:228814 +k1,23784:15055889,41678074:228813 +k1,23784:16174682,41678074:228814 +k1,23784:19013794,41678074:228813 +k1,23784:19894035,41678074:228813 +k1,23784:21708820,41678074:228814 +(1,23784:21708820,41678074:0,452978,115847 +r1,23785:23825645,41678074:2116825,568825,115847 +k1,23784:21708820,41678074:-2116825 +) +(1,23784:21708820,41678074:2116825,452978,115847 +k1,23784:21708820,41678074:3277 +h1,23784:23822368,41678074:0,411205,112570 +) +k1,23784:24228128,41678074:228813 +k1,23784:26342413,41678074:228814 +k1,23784:28949528,41678074:228813 +k1,23784:29534202,41678074:228814 +k1,23784:31832642,41678074:228813 +k1,23785:32583029,41678074:0 +) +(1,23785:6764466,42543154:25818563,513147,134348 +k1,23784:9474661,42543154:282086 +k1,23784:12931310,42543154:282085 +k1,23784:13679357,42543154:282086 +k1,23784:14980527,42543154:282085 +k1,23784:16996696,42543154:282086 +k1,23784:17894819,42543154:282085 +k1,23784:19195990,42543154:282086 +k1,23784:20784208,42543154:282085 +k1,23784:22292473,42543154:282086 +k1,23784:23743065,42543154:282085 +k1,23784:25437452,42543154:282086 +k1,23784:27899920,42543154:282085 +k1,23784:28929772,42543154:282086 +k1,23784:31896867,42543154:282085 +k1,23784:32583029,42543154:0 +) +(1,23785:6764466,43408234:25818563,505283,126483 +k1,23784:9380898,43408234:233543 +k1,23784:11682757,43408234:233543 +k1,23784:13867963,43408234:233544 +k1,23784:15543953,43408234:233543 +k1,23784:17340530,43408234:233543 +(1,23784:17340530,43408234:0,452978,122846 +r1,23785:20864202,43408234:3523672,575824,122846 +k1,23784:17340530,43408234:-3523672 +) +(1,23784:17340530,43408234:3523672,452978,122846 +k1,23784:17340530,43408234:3277 +h1,23784:20860925,43408234:0,411205,112570 +) +k1,23784:21271415,43408234:233543 +k1,23784:22156386,43408234:233543 +k1,23784:24275400,43408234:233543 +k1,23784:25613226,43408234:233544 +k1,23784:26594535,43408234:233543 +k1,23784:29033365,43408234:233543 +k1,23784:29622768,43408234:233543 +k1,23784:32583029,43408234:0 +) +(1,23785:6764466,44273314:25818563,505283,134348 +k1,23784:8881878,44273314:157230 +k1,23784:10433058,44273314:157229 +k1,23784:12786399,44273314:157230 +k1,23784:13595057,44273314:157230 +k1,23784:14500053,44273314:157230 +k1,23784:18247344,44273314:157229 +k1,23784:19090736,44273314:157230 +(1,23784:19090736,44273314:0,414482,115847 +r1,23785:19800714,44273314:709978,530329,115847 +k1,23784:19090736,44273314:-709978 +) +(1,23784:19090736,44273314:709978,414482,115847 +k1,23784:19090736,44273314:3277 +h1,23784:19797437,44273314:0,411205,112570 +) +k1,23784:20131614,44273314:157230 +k1,23784:21480289,44273314:157230 +(1,23784:21480289,44273314:0,452978,115847 +r1,23785:25003961,44273314:3523672,568825,115847 +k1,23784:21480289,44273314:-3523672 +) +(1,23784:21480289,44273314:3523672,452978,115847 +k1,23784:21480289,44273314:3277 +h1,23784:25000684,44273314:0,411205,112570 +) +k1,23784:25334860,44273314:157229 +k1,23784:27377561,44273314:157230 +k1,23784:30295167,44273314:157230 +k1,23784:32583029,44273314:0 +) +] +g1,23785:32583029,44407662 +) +] +(1,23785:32583029,45706769:0,0,0 +g1,23785:32583029,45706769 +) +) +] +(1,23785:6630773,47279633:25952256,0,0 +h1,23785:6630773,47279633:25952256,0,0 +) +] +(1,23785:4262630,4025873:0,0,0 +[1,23785:-473656,4025873:0,0,0 +(1,23785:-473656,-710413:0,0,0 +(1,23785:-473656,-710413:0,0,0 +g1,23785:-473656,-710413 +) +g1,23785:-473656,-710413 +) +] +) +] +!31652 +}409 Input:4449:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4450:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4451:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -410524,1104 +410686,1139 @@ Input:4465:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4466:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4467:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4468:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2220 -{409 -[1,23870:4262630,47279633:28320399,43253760,0 -(1,23870:4262630,4025873:0,0,0 -[1,23870:-473656,4025873:0,0,0 -(1,23870:-473656,-710413:0,0,0 -(1,23870:-473656,-644877:0,0,0 -k1,23870:-473656,-644877:-65536 +Input:4469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1944 +{410 +[1,23858:4262630,47279633:28320399,43253760,0 +(1,23858:4262630,4025873:0,0,0 +[1,23858:-473656,4025873:0,0,0 +(1,23858:-473656,-710413:0,0,0 +(1,23858:-473656,-644877:0,0,0 +k1,23858:-473656,-644877:-65536 ) -(1,23870:-473656,4736287:0,0,0 -k1,23870:-473656,4736287:5209943 +(1,23858:-473656,4736287:0,0,0 +k1,23858:-473656,4736287:5209943 ) -g1,23870:-473656,-710413 +g1,23858:-473656,-710413 ) ] ) -[1,23870:6630773,47279633:25952256,43253760,0 -[1,23870:6630773,4812305:25952256,786432,0 -(1,23870:6630773,4812305:25952256,505283,134348 -(1,23870:6630773,4812305:25952256,505283,134348 -g1,23870:3078558,4812305 -[1,23870:3078558,4812305:0,0,0 -(1,23870:3078558,2439708:0,1703936,0 -k1,23870:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23870:2537886,2439708:1179648,16384,0 +[1,23858:6630773,47279633:25952256,43253760,0 +[1,23858:6630773,4812305:25952256,786432,0 +(1,23858:6630773,4812305:25952256,505283,134348 +(1,23858:6630773,4812305:25952256,505283,134348 +g1,23858:3078558,4812305 +[1,23858:3078558,4812305:0,0,0 +(1,23858:3078558,2439708:0,1703936,0 +k1,23858:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23858:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23870:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23858:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23870:3078558,4812305:0,0,0 -(1,23870:3078558,2439708:0,1703936,0 -g1,23870:29030814,2439708 -g1,23870:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23870:36151628,1915420:16384,1179648,0 +[1,23858:3078558,4812305:0,0,0 +(1,23858:3078558,2439708:0,1703936,0 +g1,23858:29030814,2439708 +g1,23858:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23858:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23870:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23858:37855564,2439708:1179648,16384,0 ) ) -k1,23870:3078556,2439708:-34777008 +k1,23858:3078556,2439708:-34777008 ) ] -[1,23870:3078558,4812305:0,0,0 -(1,23870:3078558,49800853:0,16384,2228224 -k1,23870:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23870:2537886,49800853:1179648,16384,0 +[1,23858:3078558,4812305:0,0,0 +(1,23858:3078558,49800853:0,16384,2228224 +k1,23858:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23858:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23870:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23858:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23870:3078558,4812305:0,0,0 -(1,23870:3078558,49800853:0,16384,2228224 -g1,23870:29030814,49800853 -g1,23870:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23870:36151628,51504789:16384,1179648,0 +[1,23858:3078558,4812305:0,0,0 +(1,23858:3078558,49800853:0,16384,2228224 +g1,23858:29030814,49800853 +g1,23858:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23858:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23870:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23858:37855564,49800853:1179648,16384,0 ) ) -k1,23870:3078556,49800853:-34777008 +k1,23858:3078556,49800853:-34777008 ) ] -g1,23870:6630773,4812305 -k1,23870:21114230,4812305:13288080 -g1,23870:22736901,4812305 -g1,23870:23350318,4812305 -g1,23870:24759997,4812305 -g1,23870:28372341,4812305 -g1,23870:30105768,4812305 -) +g1,23858:6630773,4812305 +k1,23858:21114230,4812305:13288080 +g1,23858:22736901,4812305 +g1,23858:23350318,4812305 +g1,23858:24759997,4812305 +g1,23858:28372341,4812305 +g1,23858:30105768,4812305 +) +) +] +[1,23858:6630773,45706769:25952256,40108032,0 +(1,23858:6630773,45706769:25952256,40108032,0 +(1,23858:6630773,45706769:0,0,0 +g1,23858:6630773,45706769 +) +[1,23858:6630773,45706769:25952256,40108032,0 +v1,23785:6630773,6254097:0,393216,0 +(1,23785:6630773,7373456:25952256,1512575,0 +g1,23785:6630773,7373456 +g1,23785:6237557,7373456 +r1,23858:6368629,7373456:131072,1512575,0 +g1,23785:6567858,7373456 +g1,23785:6764466,7373456 +[1,23785:6764466,7373456:25818563,1512575,0 +(1,23785:6764466,6374028:25818563,513147,134348 +k1,23784:7651119,6374028:227361 +k1,23784:8897566,6374028:227362 +k1,23784:12601612,6374028:227361 +k1,23784:13488266,6374028:227362 +k1,23784:14734712,6374028:227361 +k1,23784:16696157,6374028:227362 +k1,23784:17574946,6374028:227361 +k1,23784:18217123,6374028:227334 +k1,23784:20677296,6374028:227361 +k1,23784:22096103,6374028:227362 +k1,23784:24967186,6374028:227361 +k1,23784:27950337,6374028:227362 +k1,23784:29869838,6374028:227361 +k1,23784:32583029,6374028:0 +) +(1,23785:6764466,7239108:25818563,505283,134348 +g1,23784:10378776,7239108 +g1,23784:11475848,7239108 +g1,23784:13371804,7239108 +g1,23784:17182067,7239108 +g1,23784:18372856,7239108 +g1,23784:21662108,7239108 +g1,23784:22477375,7239108 +g1,23784:23695689,7239108 +g1,23784:28518483,7239108 +g1,23784:30105765,7239108 +k1,23785:32583029,7239108:596381 +g1,23785:32583029,7239108 +) +] +g1,23785:32583029,7373456 +) +h1,23785:6630773,7373456:0,0,0 +v1,23788:6630773,8238536:0,393216,0 +(1,23789:6630773,11222100:25952256,3376780,0 +g1,23789:6630773,11222100 +g1,23789:6237557,11222100 +r1,23858:6368629,11222100:131072,3376780,0 +g1,23789:6567858,11222100 +g1,23789:6764466,11222100 +[1,23789:6764466,11222100:25818563,3376780,0 +(1,23789:6764466,8511013:25818563,665693,196608 +(1,23788:6764466,8511013:0,665693,196608 +r1,23858:7868133,8511013:1103667,862301,196608 +k1,23788:6764466,8511013:-1103667 +) +(1,23788:6764466,8511013:1103667,665693,196608 +) +k1,23788:8083670,8511013:215537 +k1,23788:9809888,8511013:327680 +k1,23788:10653261,8511013:215538 +k1,23788:12884685,8511013:215537 +(1,23788:12884685,8511013:0,452978,115847 +r1,23858:16408357,8511013:3523672,568825,115847 +k1,23788:12884685,8511013:-3523672 +) +(1,23788:12884685,8511013:3523672,452978,115847 +k1,23788:12884685,8511013:3277 +h1,23788:16405080,8511013:0,411205,112570 +) +k1,23788:16797564,8511013:215537 +(1,23788:16797564,8511013:0,452978,115847 +r1,23858:20672948,8511013:3875384,568825,115847 +k1,23788:16797564,8511013:-3875384 +) +(1,23788:16797564,8511013:3875384,452978,115847 +k1,23788:16797564,8511013:3277 +h1,23788:20669671,8511013:0,411205,112570 +) +k1,23788:20888486,8511013:215538 +k1,23788:22295468,8511013:215537 +(1,23788:22295468,8511013:0,452978,115847 +r1,23858:26522564,8511013:4227096,568825,115847 +k1,23788:22295468,8511013:-4227096 +) +(1,23788:22295468,8511013:4227096,452978,115847 +k1,23788:22295468,8511013:3277 +h1,23788:26519287,8511013:0,411205,112570 +) +k1,23788:26738101,8511013:215537 +k1,23788:27945198,8511013:215537 +k1,23788:29179821,8511013:215538 +k1,23788:31048831,8511013:215537 +k1,23789:32583029,8511013:0 +) +(1,23789:6764466,9376093:25818563,513147,134348 +k1,23788:8310400,9376093:278468 +k1,23788:9982820,9376093:278469 +k1,23788:13023631,9376093:278468 +k1,23788:15567679,9376093:278468 +k1,23788:19248776,9376093:278468 +k1,23788:20178673,9376093:278469 +k1,23788:22688642,9376093:278468 +k1,23788:23626402,9376093:278468 +k1,23788:25413509,9376093:278468 +k1,23788:29476682,9376093:278469 +k1,23788:31563944,9376093:278468 +k1,23788:32583029,9376093:0 +) +(1,23789:6764466,10241173:25818563,505283,134348 +k1,23788:8520654,10241173:368135 +k1,23788:10560613,10241173:368136 +k1,23788:12120193,10241173:368135 +k1,23788:13249857,10241173:368136 +k1,23788:16045446,10241173:368135 +k1,23788:18925576,10241173:368135 +k1,23788:22870012,10241173:368136 +k1,23788:24953880,10241173:368135 +(1,23788:24953880,10241173:0,452978,115847 +r1,23858:28477552,10241173:3523672,568825,115847 +k1,23788:24953880,10241173:-3523672 +) +(1,23788:24953880,10241173:3523672,452978,115847 +k1,23788:24953880,10241173:3277 +h1,23788:28474275,10241173:0,411205,112570 +) +k1,23788:28845688,10241173:368136 +k1,23788:31436804,10241173:368135 +k1,23789:32583029,10241173:0 +) +(1,23789:6764466,11106253:25818563,505283,115847 +(1,23788:6764466,11106253:0,452978,115847 +r1,23858:10991562,11106253:4227096,568825,115847 +k1,23788:6764466,11106253:-4227096 +) +(1,23788:6764466,11106253:4227096,452978,115847 +k1,23788:6764466,11106253:3277 +h1,23788:10988285,11106253:0,411205,112570 +) +g1,23788:11364461,11106253 +g1,23788:12997618,11106253 +g1,23788:14912580,11106253 +(1,23788:14912580,11106253:0,452978,115847 +r1,23858:19139676,11106253:4227096,568825,115847 +k1,23788:14912580,11106253:-4227096 +) +(1,23788:14912580,11106253:4227096,452978,115847 +k1,23788:14912580,11106253:3277 +h1,23788:19136399,11106253:0,411205,112570 +) +g1,23788:19338905,11106253 +g1,23788:21761115,11106253 +g1,23788:23106569,11106253 +(1,23788:23106569,11106253:0,452978,115847 +r1,23858:26981953,11106253:3875384,568825,115847 +k1,23788:23106569,11106253:-3875384 +) +(1,23788:23106569,11106253:3875384,452978,115847 +k1,23788:23106569,11106253:3277 +h1,23788:26978676,11106253:0,411205,112570 +) +k1,23789:32583029,11106253:5548648 +g1,23789:32583029,11106253 +) +] +g1,23789:32583029,11222100 +) +h1,23789:6630773,11222100:0,0,0 +v1,23792:6630773,12087180:0,393216,0 +(1,23793:6630773,16855226:25952256,5161262,0 +g1,23793:6630773,16855226 +g1,23793:6237557,16855226 +r1,23858:6368629,16855226:131072,5161262,0 +g1,23793:6567858,16855226 +g1,23793:6764466,16855226 +[1,23793:6764466,16855226:25818563,5161262,0 +(1,23793:6764466,12395478:25818563,701514,196608 +(1,23792:6764466,12395478:0,701514,196608 +r1,23858:7761522,12395478:997056,898122,196608 +k1,23792:6764466,12395478:-997056 +) +(1,23792:6764466,12395478:997056,701514,196608 +) +k1,23792:8040087,12395478:278565 +k1,23792:8367767,12395478:327680 +k1,23792:9133840,12395478:278485 +k1,23792:10638584,12395478:278565 +k1,23792:11900189,12395478:278565 +k1,23792:13283036,12395478:278565 +k1,23792:14309367,12395478:278565 +k1,23792:16000233,12395478:278565 +k1,23792:16964960,12395478:278565 +k1,23792:20218203,12395478:278564 +k1,23792:22866550,12395478:278565 +k1,23792:25605337,12395478:278565 +k1,23792:29388767,12395478:278565 +k1,23792:30318760,12395478:278565 +k1,23792:32583029,12395478:0 +) +(1,23793:6764466,13260558:25818563,513147,134348 +k1,23792:8743784,13260558:166592 +k1,23792:10291221,13260558:166593 +k1,23792:10989310,13260558:166592 +k1,23792:15041533,13260558:166593 +k1,23792:17359017,13260558:166592 +k1,23792:19019175,13260558:166592 +k1,23792:19871930,13260558:166593 +k1,23792:21736560,13260558:166592 +k1,23792:22922238,13260558:166593 +k1,23792:25996007,13260558:166592 +k1,23792:26694096,13260558:166592 +k1,23792:28438141,13260558:166593 +k1,23792:29220771,13260558:166592 +k1,23792:29743224,13260558:166593 +k1,23792:31914562,13260558:166592 +k1,23792:32583029,13260558:0 +) +(1,23793:6764466,14125638:25818563,513147,126483 +k1,23792:8620390,14125638:184100 +k1,23792:10665057,14125638:184100 +k1,23792:11500586,14125638:184101 +k1,23792:13266725,14125638:184100 +k1,23792:13806685,14125638:184100 +k1,23792:14973825,14125638:184100 +k1,23792:15844088,14125638:184101 +k1,23792:16733355,14125638:184100 +k1,23792:17545290,14125638:184100 +k1,23792:18932631,14125638:184100 +k1,23792:20657483,14125638:184101 +k1,23792:21860668,14125638:184100 +k1,23792:24740264,14125638:184100 +k1,23792:26437590,14125638:184100 +k1,23792:27153188,14125638:184101 +(1,23792:27153188,14125638:0,452978,115847 +r1,23858:31028572,14125638:3875384,568825,115847 +k1,23792:27153188,14125638:-3875384 +) +(1,23792:27153188,14125638:3875384,452978,115847 +k1,23792:27153188,14125638:3277 +h1,23792:31025295,14125638:0,411205,112570 +) +k1,23792:31386342,14125638:184100 +k1,23792:32583029,14125638:0 +) +(1,23793:6764466,14990718:25818563,505283,134348 +k1,23792:9748375,14990718:205182 +k1,23792:11633901,14990718:205183 +k1,23792:12370580,14990718:205182 +k1,23792:12931622,14990718:205182 +k1,23792:16111484,14990718:205183 +k1,23792:18294543,14990718:205182 +k1,23792:19115763,14990718:205182 +k1,23792:21206417,14990718:205183 +k1,23792:22863221,14990718:205182 +k1,23792:25691809,14990718:205182 +k1,23792:27762802,14990718:205183 +k1,23792:31931601,14990718:205182 +k1,23792:32583029,14990718:0 +) +(1,23793:6764466,15855798:25818563,513147,126483 +k1,23792:8143746,15855798:222570 +k1,23792:9534824,15855798:222571 +k1,23792:10440279,15855798:222570 +k1,23792:12735753,15855798:222570 +k1,23792:13574362,15855798:222571 +k1,23792:14816017,15855798:222570 +k1,23792:16195297,15855798:222570 +k1,23792:17811818,15855798:222570 +k1,23792:19053474,15855798:222571 +k1,23792:22712752,15855798:222570 +k1,23792:25558073,15855798:222570 +k1,23792:28466965,15855798:222571 +k1,23792:29921612,15855798:222570 +k1,23792:32583029,15855798:0 +) +(1,23793:6764466,16720878:25818563,505283,134348 +g1,23792:7579733,16720878 +g1,23792:10057649,16720878 +h1,23792:11426696,16720878:0,0,0 +g1,23792:11625925,16720878 +g1,23792:12634524,16720878 +g1,23792:14331906,16720878 +h1,23792:15527283,16720878:0,0,0 +k1,23793:32583029,16720878:16796224 +g1,23793:32583029,16720878 +) +] +g1,23793:32583029,16855226 +) +h1,23793:6630773,16855226:0,0,0 +(1,23798:6630773,17720306:25952256,513147,134348 +h1,23797:6630773,17720306:983040,0,0 +k1,23797:9186021,17720306:375521 +k1,23797:10945663,17720306:375522 +k1,23797:13982601,17720306:375521 +k1,23797:16349106,17720306:375521 +k1,23797:18055009,17720306:375522 +k1,23797:18786390,17720306:375521 +k1,23797:20759023,17720306:375521 +k1,23797:23830041,17720306:375522 +k1,23797:27176964,17720306:375521 +k1,23797:28709195,17720306:375521 +k1,23797:29744009,17720306:375522 +k1,23797:31138615,17720306:375521 +k1,23798:32583029,17720306:0 +) +(1,23798:6630773,18585386:25952256,513147,7863 +k1,23797:9947594,18585386:291024 +k1,23797:13328640,18585386:291023 +k1,23797:15474988,18585386:291024 +k1,23797:16870293,18585386:291023 +k1,23797:17909083,18585386:291024 +k1,23797:19713332,18585386:291023 +k1,23797:20655784,18585386:291024 +k1,23797:22337481,18585386:291023 +k1,23797:22984365,18585386:291024 +k1,23797:24664751,18585386:291023 +k1,23797:26832071,18585386:291024 +k1,23797:27774522,18585386:291023 +k1,23797:28421406,18585386:291024 +k1,23797:29938609,18585386:291024 +k1,23797:31386342,18585386:291023 +k1,23798:32583029,18585386:0 +) +(1,23798:6630773,19450466:25952256,513147,134348 +(1,23797:6630773,19450466:0,452978,115847 +r1,23858:10506157,19450466:3875384,568825,115847 +k1,23797:6630773,19450466:-3875384 +) +(1,23797:6630773,19450466:3875384,452978,115847 +k1,23797:6630773,19450466:3277 +h1,23797:10502880,19450466:0,411205,112570 +) +k1,23797:10707897,19450466:201740 +k1,23797:13605133,19450466:201740 +k1,23797:15489838,19450466:201740 +k1,23797:16377740,19450466:201740 +k1,23797:17350183,19450466:201740 +k1,23797:20624251,19450466:201740 +k1,23797:21181852,19450466:201741 +k1,23797:22772955,19450466:201740 +k1,23797:25024661,19450466:201740 +k1,23797:25909286,19450466:201740 +k1,23797:26881729,19450466:201740 +k1,23797:29042995,19450466:201740 +k1,23797:30529241,19450466:201740 +k1,23797:31835263,19450466:201740 +k1,23797:32583029,19450466:0 +) +(1,23798:6630773,20315546:25952256,513147,134348 +k1,23797:9260383,20315546:164146 +k1,23797:10691995,20315546:164146 +k1,23797:11212001,20315546:164146 +k1,23797:12765509,20315546:164145 +k1,23797:14979621,20315546:164146 +k1,23797:17866788,20315546:164146 +k1,23797:18489031,20315546:164146 +k1,23797:19304605,20315546:164146 +k1,23797:22443430,20315546:164146 +k1,23797:24977358,20315546:164146 +k1,23797:26332949,20315546:164146 +k1,23797:28218069,20315546:164145 +k1,23797:30021270,20315546:164146 +k1,23797:30836844,20315546:164146 +k1,23797:31356850,20315546:164146 +k1,23797:32583029,20315546:0 +) +(1,23798:6630773,21180626:25952256,513147,134348 +g1,23797:7986712,21180626 +g1,23797:8673529,21180626 +g1,23797:10262121,21180626 +g1,23797:12511316,21180626 +(1,23797:12511316,21180626:0,459977,115847 +r1,23858:14276429,21180626:1765113,575824,115847 +k1,23797:12511316,21180626:-1765113 +) +(1,23797:12511316,21180626:1765113,459977,115847 +k1,23797:12511316,21180626:3277 +h1,23797:14273152,21180626:0,411205,112570 +) +g1,23797:14475658,21180626 +g1,23797:16068838,21180626 +g1,23797:17403151,21180626 +g1,23797:19136578,21180626 +g1,23797:19867304,21180626 +g1,23797:22427140,21180626 +g1,23797:23574020,21180626 +g1,23797:24129109,21180626 +k1,23798:32583029,21180626:3705182 +g1,23798:32583029,21180626 +) +v1,23800:6630773,21865481:0,393216,0 +(1,23804:6630773,22206164:25952256,733899,196608 +g1,23804:6630773,22206164 +g1,23804:6630773,22206164 +g1,23804:6434165,22206164 +(1,23804:6434165,22206164:0,733899,196608 +r1,23858:32779637,22206164:26345472,930507,196608 +k1,23804:6434165,22206164:-26345472 +) +(1,23804:6434165,22206164:26345472,733899,196608 +[1,23804:6630773,22206164:25952256,537291,0 +(1,23802:6630773,22099918:25952256,431045,106246 +(1,23801:6630773,22099918:0,0,0 +g1,23801:6630773,22099918 +g1,23801:6630773,22099918 +g1,23801:6303093,22099918 +(1,23801:6303093,22099918:0,0,0 +) +g1,23801:6630773,22099918 +) +g1,23802:8622497,22099918 +g1,23802:9618359,22099918 +g1,23802:13933760,22099918 +g1,23802:14597668,22099918 +g1,23802:16257438,22099918 +g1,23802:16921346,22099918 +g1,23802:17585254,22099918 +g1,23802:18913070,22099918 +g1,23802:19576978,22099918 +g1,23802:20904794,22099918 +g1,23802:21568702,22099918 +g1,23802:22232610,22099918 +h1,23802:26548011,22099918:0,0,0 +k1,23802:32583029,22099918:6035018 +g1,23802:32583029,22099918 +) +] +) +g1,23804:32583029,22206164 +g1,23804:6630773,22206164 +g1,23804:6630773,22206164 +g1,23804:32583029,22206164 +g1,23804:32583029,22206164 +) +h1,23804:6630773,22402772:0,0,0 +(1,23808:6630773,23267852:25952256,513147,134348 +h1,23807:6630773,23267852:983040,0,0 +k1,23807:8806789,23267852:239427 +k1,23807:10661023,23267852:239427 +(1,23807:10661023,23267852:0,459977,115847 +r1,23858:12426136,23267852:1765113,575824,115847 +k1,23807:10661023,23267852:-1765113 +) +(1,23807:10661023,23267852:1765113,459977,115847 +k1,23807:10661023,23267852:3277 +h1,23807:12422859,23267852:0,411205,112570 +) +k1,23807:12665563,23267852:239427 +k1,23807:13556418,23267852:239427 +k1,23807:14151705,23267852:239427 +k1,23807:15659868,23267852:239386 +k1,23807:16882335,23267852:239427 +k1,23807:19633757,23267852:239427 +k1,23807:20820835,23267852:239427 +k1,23807:21830965,23267852:239427 +k1,23807:24381847,23267852:239427 +k1,23807:27463570,23267852:239427 +k1,23807:29718229,23267852:239427 +k1,23807:31149101,23267852:239427 +k1,23807:32583029,23267852:0 +) +(1,23808:6630773,24132932:25952256,505283,126483 +g1,23807:9125073,24132932 +g1,23807:10112700,24132932 +k1,23808:32583028,24132932:19668664 +g1,23808:32583028,24132932 +) +v1,23810:6630773,24817787:0,393216,0 +(1,23815:6630773,25849931:25952256,1425360,196608 +g1,23815:6630773,25849931 +g1,23815:6630773,25849931 +g1,23815:6434165,25849931 +(1,23815:6434165,25849931:0,1425360,196608 +r1,23858:32779637,25849931:26345472,1621968,196608 +k1,23815:6434165,25849931:-26345472 +) +(1,23815:6434165,25849931:26345472,1425360,196608 +[1,23815:6630773,25849931:25952256,1228752,0 +(1,23812:6630773,25052224:25952256,431045,106246 +(1,23811:6630773,25052224:0,0,0 +g1,23811:6630773,25052224 +g1,23811:6630773,25052224 +g1,23811:6303093,25052224 +(1,23811:6303093,25052224:0,0,0 +) +g1,23811:6630773,25052224 +) +k1,23812:6630773,25052224:0 +g1,23812:12273990,25052224 +g1,23812:13933760,25052224 +g1,23812:14597668,25052224 +g1,23812:19908931,25052224 +g1,23812:23228470,25052224 +g1,23812:23892378,25052224 +h1,23812:25884102,25052224:0,0,0 +k1,23812:32583029,25052224:6698927 +g1,23812:32583029,25052224 +) +(1,23813:6630773,25737079:25952256,431045,112852 +h1,23813:6630773,25737079:0,0,0 +g1,23813:15261575,25737079 +g1,23813:17253299,25737079 +g1,23813:17917207,25737079 +h1,23813:21236746,25737079:0,0,0 +k1,23813:32583029,25737079:11346283 +g1,23813:32583029,25737079 +) +] +) +g1,23815:32583029,25849931 +g1,23815:6630773,25849931 +g1,23815:6630773,25849931 +g1,23815:32583029,25849931 +g1,23815:32583029,25849931 +) +h1,23815:6630773,26046539:0,0,0 +v1,23819:6630773,26731394:0,393216,0 +(1,23828:6630773,30469928:25952256,4131750,196608 +g1,23828:6630773,30469928 +g1,23828:6630773,30469928 +g1,23828:6434165,30469928 +(1,23828:6434165,30469928:0,4131750,196608 +r1,23858:32779637,30469928:26345472,4328358,196608 +k1,23828:6434165,30469928:-26345472 +) +(1,23828:6434165,30469928:26345472,4131750,196608 +[1,23828:6630773,30469928:25952256,3935142,0 +(1,23827:6630773,26959225:25952256,424439,106246 +(1,23820:6630773,26959225:0,0,0 +g1,23820:6630773,26959225 +g1,23820:6630773,26959225 +g1,23820:6303093,26959225 +(1,23820:6303093,26959225:0,0,0 +) +g1,23820:6630773,26959225 +) +k1,23827:6630773,26959225:0 +k1,23827:6630773,26959225:0 +h1,23827:10282267,26959225:0,0,0 +k1,23827:32583029,26959225:22300762 +g1,23827:32583029,26959225 +) +(1,23827:6630773,27644080:25952256,424439,86428 +h1,23827:6630773,27644080:0,0,0 +k1,23827:6630773,27644080:0 +h1,23827:9618359,27644080:0,0,0 +k1,23827:32583029,27644080:22964670 +g1,23827:32583029,27644080 +) +(1,23827:6630773,28328935:25952256,424439,86428 +h1,23827:6630773,28328935:0,0,0 +k1,23827:6630773,28328935:0 +h1,23827:9618359,28328935:0,0,0 +k1,23827:32583029,28328935:22964670 +g1,23827:32583029,28328935 +) +(1,23827:6630773,29013790:25952256,424439,86428 +h1,23827:6630773,29013790:0,0,0 +k1,23827:6630773,29013790:0 +h1,23827:9618359,29013790:0,0,0 +k1,23827:32583029,29013790:22964670 +g1,23827:32583029,29013790 +) +(1,23827:6630773,29698645:25952256,424439,86428 +h1,23827:6630773,29698645:0,0,0 +k1,23827:6630773,29698645:0 +h1,23827:9618359,29698645:0,0,0 +k1,23827:32583029,29698645:22964670 +g1,23827:32583029,29698645 +) +(1,23827:6630773,30383500:25952256,424439,86428 +h1,23827:6630773,30383500:0,0,0 +k1,23827:6630773,30383500:0 +h1,23827:9618359,30383500:0,0,0 +k1,23827:32583029,30383500:22964670 +g1,23827:32583029,30383500 +) +] +) +g1,23828:32583029,30469928 +g1,23828:6630773,30469928 +g1,23828:6630773,30469928 +g1,23828:32583029,30469928 +g1,23828:32583029,30469928 +) +h1,23828:6630773,30666536:0,0,0 +v1,23832:6630773,31531616:0,393216,0 +(1,23833:6630773,35434582:25952256,4296182,0 +g1,23833:6630773,35434582 +g1,23833:6237557,35434582 +r1,23858:6368629,35434582:131072,4296182,0 +g1,23833:6567858,35434582 +g1,23833:6764466,35434582 +[1,23833:6764466,35434582:25818563,4296182,0 +(1,23833:6764466,31839914:25818563,701514,196608 +(1,23832:6764466,31839914:0,701514,196608 +r1,23858:7761522,31839914:997056,898122,196608 +k1,23832:6764466,31839914:-997056 +) +(1,23832:6764466,31839914:997056,701514,196608 +) +k1,23832:8007135,31839914:245613 +k1,23832:8334815,31839914:327680 +k1,23832:9208262,31839914:245612 +k1,23832:11055575,31839914:245613 +k1,23832:12998569,31839914:245612 +k1,23832:15599546,31839914:245613 +k1,23832:16531320,31839914:245612 +k1,23832:18805928,31839914:245613 +(1,23832:18805928,31839914:0,414482,115847 +r1,23858:24791583,31839914:5985655,530329,115847 +k1,23832:18805928,31839914:-5985655 +) +(1,23832:18805928,31839914:5985655,414482,115847 +g1,23832:22326323,31839914 +g1,23832:23029747,31839914 +h1,23832:24788306,31839914:0,411205,112570 +) +k1,23832:25037195,31839914:245612 +k1,23832:26980846,31839914:245613 +k1,23832:29484173,31839914:245612 +k1,23832:30085646,31839914:245613 +k1,23832:31599989,31839914:245566 +k1,23832:32583029,31839914:0 +) +(1,23833:6764466,32704994:25818563,513147,126483 +k1,23832:8011101,32704994:140387 +k1,23832:9539542,32704994:140388 +k1,23832:11377967,32704994:140387 +k1,23832:11976452,32704994:140388 +k1,23832:12648336,32704994:140387 +k1,23832:14374695,32704994:140388 +k1,23832:15289062,32704994:140387 +k1,23832:17712068,32704994:140387 +k1,23832:18318417,32704994:140388 +k1,23832:19662700,32704994:140387 +k1,23832:21871404,32704994:140388 +k1,23832:22827059,32704994:140387 +k1,23832:25339195,32704994:140388 +k1,23832:28688880,32704994:140387 +k1,23832:32583029,32704994:0 +) +(1,23833:6764466,33570074:25818563,513147,134348 +k1,23832:8399057,33570074:141025 +k1,23832:9226244,33570074:141025 +k1,23832:10851005,33570074:141026 +k1,23832:12482974,33570074:141025 +k1,23832:13794472,33570074:141025 +k1,23832:16106049,33570074:141025 +k1,23832:17591874,33570074:141026 +k1,23832:19990614,33570074:141025 +k1,23832:21150724,33570074:141025 +k1,23832:22495645,33570074:141025 +k1,23832:24704987,33570074:141026 +k1,23832:25497440,33570074:141025 +k1,23832:26657550,33570074:141025 +k1,23832:27781615,33570074:141025 +k1,23832:29965398,33570074:141026 +k1,23832:31276896,33570074:141025 +k1,23832:32583029,33570074:0 +) +(1,23833:6764466,34435154:25818563,513147,126483 +k1,23832:8433388,34435154:158972 +k1,23832:10289086,34435154:158971 +k1,23832:11837421,34435154:158972 +k1,23832:13263859,34435154:158972 +k1,23832:13778690,34435154:158971 +k1,23832:16320551,34435154:158972 +k1,23832:17095560,34435154:158971 +k1,23832:18273617,34435154:158972 +k1,23832:19821952,34435154:158972 +k1,23832:22030889,34435154:158971 +k1,23832:23757482,34435154:158972 +k1,23832:25984770,34435154:158972 +k1,23832:27135301,34435154:158971 +k1,23832:29332443,34435154:158972 +k1,23832:32583029,34435154:0 +) +(1,23833:6764466,35300234:25818563,513147,134348 +g1,23832:7649857,35300234 +g1,23832:8619789,35300234 +g1,23832:11597745,35300234 +g1,23832:12413012,35300234 +(1,23832:12413012,35300234:0,459977,115847 +r1,23858:15936684,35300234:3523672,575824,115847 +k1,23832:12413012,35300234:-3523672 +) +(1,23832:12413012,35300234:3523672,459977,115847 +k1,23832:12413012,35300234:3277 +h1,23832:15933407,35300234:0,411205,112570 +) +g1,23832:16135913,35300234 +g1,23832:18798640,35300234 +g1,23832:20022852,35300234 +g1,23832:22500768,35300234 +h1,23832:23471356,35300234:0,0,0 +g1,23832:23670585,35300234 +g1,23832:24679184,35300234 +g1,23832:26376566,35300234 +h1,23832:27571943,35300234:0,0,0 +g1,23832:27771172,35300234 +g1,23832:28918052,35300234 +k1,23833:32583029,35300234:1208033 +g1,23833:32583029,35300234 +) +] +g1,23833:32583029,35434582 +) +h1,23833:6630773,35434582:0,0,0 +v1,23836:6630773,36299662:0,393216,0 +(1,23837:6630773,37563702:25952256,1657256,0 +g1,23837:6630773,37563702 +g1,23837:6237557,37563702 +r1,23858:6368629,37563702:131072,1657256,0 +g1,23837:6567858,37563702 +g1,23837:6764466,37563702 +[1,23837:6764466,37563702:25818563,1657256,0 +(1,23837:6764466,36572139:25818563,665693,196608 +(1,23836:6764466,36572139:0,665693,196608 +r1,23858:7868133,36572139:1103667,862301,196608 +k1,23836:6764466,36572139:-1103667 +) +(1,23836:6764466,36572139:1103667,665693,196608 +) +k1,23836:8121314,36572139:253181 +k1,23836:9847532,36572139:327680 +k1,23836:11800716,36572139:253180 +k1,23836:13072982,36572139:253181 +k1,23836:14715525,36572139:253180 +k1,23836:16845002,36572139:253181 +(1,23836:16845002,36572139:0,459977,115847 +r1,23858:18610115,36572139:1765113,575824,115847 +k1,23836:16845002,36572139:-1765113 +) +(1,23836:16845002,36572139:1765113,459977,115847 +k1,23836:16845002,36572139:3277 +h1,23836:18606838,36572139:0,411205,112570 +) +k1,23836:18863295,36572139:253180 +k1,23836:20383942,36572139:253181 +k1,23836:21863301,36572139:253180 +k1,23836:23429824,36572139:253181 +k1,23836:25076956,36572139:253181 +k1,23836:28355933,36572139:253180 +(1,23836:28355933,36572139:0,452978,115847 +r1,23858:32583029,36572139:4227096,568825,115847 +k1,23836:28355933,36572139:-4227096 +) +(1,23836:28355933,36572139:4227096,452978,115847 +k1,23836:28355933,36572139:3277 +h1,23836:32579752,36572139:0,411205,112570 +) +k1,23836:32583029,36572139:0 +) +(1,23837:6764466,37437219:25818563,513147,126483 +g1,23836:8155140,37437219 +(1,23836:8155140,37437219:0,452978,115847 +r1,23858:12733948,37437219:4578808,568825,115847 +k1,23836:8155140,37437219:-4578808 +) +(1,23836:8155140,37437219:4578808,452978,115847 +k1,23836:8155140,37437219:3277 +h1,23836:12730671,37437219:0,411205,112570 +) +g1,23836:12933177,37437219 +g1,23836:15459589,37437219 +g1,23836:16325974,37437219 +(1,23836:16325974,37437219:0,452978,115847 +r1,23858:19849646,37437219:3523672,568825,115847 +k1,23836:16325974,37437219:-3523672 +) +(1,23836:16325974,37437219:3523672,452978,115847 +k1,23836:16325974,37437219:3277 +h1,23836:19846369,37437219:0,411205,112570 +) +g1,23836:20048875,37437219 +g1,23836:21439549,37437219 +g1,23836:23933849,37437219 +g1,23836:25152163,37437219 +k1,23837:32583029,37437219:6065096 +g1,23837:32583029,37437219 +) +] +g1,23837:32583029,37563702 +) +h1,23837:6630773,37563702:0,0,0 +(1,23840:6630773,38428782:25952256,513147,134348 +h1,23839:6630773,38428782:983040,0,0 +k1,23839:10644538,38428782:240857 +(1,23839:10644538,38428782:0,452978,115847 +r1,23858:12409651,38428782:1765113,568825,115847 +k1,23839:10644538,38428782:-1765113 +) +(1,23839:10644538,38428782:1765113,452978,115847 +k1,23839:10644538,38428782:3277 +h1,23839:12406374,38428782:0,411205,112570 +) +k1,23839:12650509,38428782:240858 +k1,23839:14574331,38428782:240857 +k1,23839:15229990,38428782:240816 +k1,23839:17760675,38428782:240857 +k1,23839:19192978,38428782:240858 +k1,23839:21378944,38428782:240857 +k1,23839:23258857,38428782:240858 +k1,23839:25012940,38428782:240857 +k1,23839:28730483,38428782:240858 +k1,23839:29622768,38428782:240857 +k1,23839:32583029,38428782:0 +) +(1,23840:6630773,39293862:25952256,513147,134348 +k1,23839:9032199,39293862:205315 +k1,23839:9888942,39293862:205315 +k1,23839:11113342,39293862:205315 +k1,23839:13738902,39293862:205315 +k1,23839:14627102,39293862:205315 +k1,23839:15188277,39293862:205315 +k1,23839:16550302,39293862:205315 +k1,23839:19584805,39293862:205314 +k1,23839:20946830,39293862:205315 +k1,23839:21835030,39293862:205315 +k1,23839:23690542,39293862:205315 +k1,23839:27200838,39293862:205315 +k1,23839:28092315,39293862:205315 +k1,23839:31839851,39293862:205315 +k1,23839:32583029,39293862:0 +) +(1,23840:6630773,40158942:25952256,513147,134348 +k1,23839:9264513,40158942:194490 +k1,23839:9814863,40158942:194490 +k1,23839:11970846,40158942:194490 +k1,23839:13546181,40158942:194491 +k1,23839:16778920,40158942:194490 +k1,23839:18077692,40158942:194490 +k1,23839:19019948,40158942:194490 +k1,23839:20148981,40158942:194490 +k1,23839:22901997,40158942:194490 +k1,23839:26377220,40158942:194491 +(1,23839:26377220,40158942:0,414482,115847 +r1,23858:27438909,40158942:1061689,530329,115847 +k1,23839:26377220,40158942:-1061689 +) +(1,23839:26377220,40158942:1061689,414482,115847 +k1,23839:26377220,40158942:3277 +h1,23839:27435632,40158942:0,411205,112570 +) +k1,23839:27807069,40158942:194490 +k1,23839:28629394,40158942:194490 +k1,23839:29921612,40158942:194490 +k1,23839:32583029,40158942:0 +) +(1,23840:6630773,41024022:25952256,505283,126483 +g1,23839:7672140,41024022 +g1,23839:8805912,41024022 +(1,23839:8805912,41024022:0,414482,115847 +r1,23858:9867601,41024022:1061689,530329,115847 +k1,23839:8805912,41024022:-1061689 +) +(1,23839:8805912,41024022:1061689,414482,115847 +k1,23839:8805912,41024022:3277 +h1,23839:9864324,41024022:0,411205,112570 +) +g1,23839:10066830,41024022 +g1,23839:10917487,41024022 +g1,23839:11472576,41024022 +g1,23839:12955000,41024022 +g1,23839:14322736,41024022 +g1,23839:17151925,41024022 +g1,23839:18037316,41024022 +g1,23839:19255630,41024022 +g1,23839:21590022,41024022 +g1,23839:24729196,41024022 +(1,23839:24729196,41024022:0,452978,115847 +r1,23858:26142597,41024022:1413401,568825,115847 +k1,23839:24729196,41024022:-1413401 +) +(1,23839:24729196,41024022:1413401,452978,115847 +k1,23839:24729196,41024022:3277 +h1,23839:26139320,41024022:0,411205,112570 +) +k1,23840:32583029,41024022:6180910 +g1,23840:32583029,41024022 +) +v1,23842:6630773,41708877:0,393216,0 +(1,23848:6630773,43419270:25952256,2103609,196608 +g1,23848:6630773,43419270 +g1,23848:6630773,43419270 +g1,23848:6434165,43419270 +(1,23848:6434165,43419270:0,2103609,196608 +r1,23858:32779637,43419270:26345472,2300217,196608 +k1,23848:6434165,43419270:-26345472 +) +(1,23848:6434165,43419270:26345472,2103609,196608 +[1,23848:6630773,43419270:25952256,1907001,0 +(1,23844:6630773,41936708:25952256,424439,106246 +(1,23843:6630773,41936708:0,0,0 +g1,23843:6630773,41936708 +g1,23843:6630773,41936708 +g1,23843:6303093,41936708 +(1,23843:6303093,41936708:0,0,0 +) +g1,23843:6630773,41936708 +) +g1,23844:9618358,41936708 +g1,23844:10614220,41936708 +g1,23844:13933760,41936708 +g1,23844:16257438,41936708 +g1,23844:18913070,41936708 +h1,23844:21900655,41936708:0,0,0 +k1,23844:32583029,41936708:10682374 +g1,23844:32583029,41936708 +) +(1,23845:6630773,42621563:25952256,431045,106246 +h1,23845:6630773,42621563:0,0,0 +g1,23845:11278128,42621563 +g1,23845:12937898,42621563 +g1,23845:13601806,42621563 +g1,23845:18913069,42621563 +g1,23845:20240885,42621563 +g1,23845:20904793,42621563 +h1,23845:22564563,42621563:0,0,0 +k1,23845:32583029,42621563:10018466 +g1,23845:32583029,42621563 +) +(1,23846:6630773,43306418:25952256,431045,112852 +h1,23846:6630773,43306418:0,0,0 +g1,23846:15261575,43306418 +g1,23846:17253299,43306418 +g1,23846:17917207,43306418 +h1,23846:21236746,43306418:0,0,0 +k1,23846:32583029,43306418:11346283 +g1,23846:32583029,43306418 +) +] +) +g1,23848:32583029,43419270 +g1,23848:6630773,43419270 +g1,23848:6630773,43419270 +g1,23848:32583029,43419270 +g1,23848:32583029,43419270 +) +h1,23848:6630773,43615878:0,0,0 +v1,23852:6630773,44300733:0,393216,0 +(1,23858:6630773,45220024:25952256,1312507,196608 +g1,23858:6630773,45220024 +g1,23858:6630773,45220024 +g1,23858:6434165,45220024 +(1,23858:6434165,45220024:0,1312507,196608 +r1,23858:32779637,45220024:26345472,1509115,196608 +k1,23858:6434165,45220024:-26345472 +) +(1,23858:6434165,45220024:26345472,1312507,196608 +[1,23858:6630773,45220024:25952256,1115899,0 +(1,23857:6630773,44528564:25952256,424439,6605 +(1,23853:6630773,44528564:0,0,0 +g1,23853:6630773,44528564 +g1,23853:6630773,44528564 +g1,23853:6303093,44528564 +(1,23853:6303093,44528564:0,0,0 +) +g1,23853:6630773,44528564 +) +h1,23857:7958589,44528564:0,0,0 +k1,23857:32583029,44528564:24624440 +g1,23857:32583029,44528564 +) +(1,23857:6630773,45213419:25952256,424439,6605 +h1,23857:6630773,45213419:0,0,0 +g1,23857:8622497,45213419 +h1,23857:10282267,45213419:0,0,0 +k1,23857:32583029,45213419:22300762 +g1,23857:32583029,45213419 +) +] +) +g1,23858:32583029,45220024 +g1,23858:6630773,45220024 +g1,23858:6630773,45220024 +g1,23858:32583029,45220024 +g1,23858:32583029,45220024 +) +] +(1,23858:32583029,45706769:0,0,0 +g1,23858:32583029,45706769 +) +) +] +(1,23858:6630773,47279633:25952256,0,0 +h1,23858:6630773,47279633:25952256,0,0 ) ] -[1,23870:6630773,45706769:25952256,40108032,0 -(1,23870:6630773,45706769:25952256,40108032,0 -(1,23870:6630773,45706769:0,0,0 -g1,23870:6630773,45706769 -) -[1,23870:6630773,45706769:25952256,40108032,0 -v1,23790:6630773,6254097:0,393216,0 -(1,23791:6630773,9237661:25952256,3376780,0 -g1,23791:6630773,9237661 -g1,23791:6237557,9237661 -r1,23870:6368629,9237661:131072,3376780,0 -g1,23791:6567858,9237661 -g1,23791:6764466,9237661 -[1,23791:6764466,9237661:25818563,3376780,0 -(1,23791:6764466,6526574:25818563,665693,196608 -(1,23790:6764466,6526574:0,665693,196608 -r1,23870:7868133,6526574:1103667,862301,196608 -k1,23790:6764466,6526574:-1103667 -) -(1,23790:6764466,6526574:1103667,665693,196608 -) -k1,23790:8083670,6526574:215537 -k1,23790:9809888,6526574:327680 -k1,23790:10653261,6526574:215538 -k1,23790:12884685,6526574:215537 -(1,23790:12884685,6526574:0,452978,115847 -r1,23870:16408357,6526574:3523672,568825,115847 -k1,23790:12884685,6526574:-3523672 -) -(1,23790:12884685,6526574:3523672,452978,115847 -k1,23790:12884685,6526574:3277 -h1,23790:16405080,6526574:0,411205,112570 -) -k1,23790:16797564,6526574:215537 -(1,23790:16797564,6526574:0,452978,115847 -r1,23870:20672948,6526574:3875384,568825,115847 -k1,23790:16797564,6526574:-3875384 -) -(1,23790:16797564,6526574:3875384,452978,115847 -k1,23790:16797564,6526574:3277 -h1,23790:20669671,6526574:0,411205,112570 -) -k1,23790:20888486,6526574:215538 -k1,23790:22295468,6526574:215537 -(1,23790:22295468,6526574:0,452978,115847 -r1,23870:26522564,6526574:4227096,568825,115847 -k1,23790:22295468,6526574:-4227096 -) -(1,23790:22295468,6526574:4227096,452978,115847 -k1,23790:22295468,6526574:3277 -h1,23790:26519287,6526574:0,411205,112570 -) -k1,23790:26738101,6526574:215537 -k1,23790:27945198,6526574:215537 -k1,23790:29179821,6526574:215538 -k1,23790:31048831,6526574:215537 -k1,23791:32583029,6526574:0 -) -(1,23791:6764466,7391654:25818563,513147,134348 -k1,23790:8310400,7391654:278468 -k1,23790:9982820,7391654:278469 -k1,23790:13023631,7391654:278468 -k1,23790:15567679,7391654:278468 -k1,23790:19248776,7391654:278468 -k1,23790:20178673,7391654:278469 -k1,23790:22688642,7391654:278468 -k1,23790:23626402,7391654:278468 -k1,23790:25413509,7391654:278468 -k1,23790:29476682,7391654:278469 -k1,23790:31563944,7391654:278468 -k1,23790:32583029,7391654:0 -) -(1,23791:6764466,8256734:25818563,505283,134348 -k1,23790:8520654,8256734:368135 -k1,23790:10560613,8256734:368136 -k1,23790:12120193,8256734:368135 -k1,23790:13249857,8256734:368136 -k1,23790:16045446,8256734:368135 -k1,23790:18925576,8256734:368135 -k1,23790:22870012,8256734:368136 -k1,23790:24953880,8256734:368135 -(1,23790:24953880,8256734:0,452978,115847 -r1,23870:28477552,8256734:3523672,568825,115847 -k1,23790:24953880,8256734:-3523672 -) -(1,23790:24953880,8256734:3523672,452978,115847 -k1,23790:24953880,8256734:3277 -h1,23790:28474275,8256734:0,411205,112570 -) -k1,23790:28845688,8256734:368136 -k1,23790:31436804,8256734:368135 -k1,23791:32583029,8256734:0 -) -(1,23791:6764466,9121814:25818563,505283,115847 -(1,23790:6764466,9121814:0,452978,115847 -r1,23870:10991562,9121814:4227096,568825,115847 -k1,23790:6764466,9121814:-4227096 -) -(1,23790:6764466,9121814:4227096,452978,115847 -k1,23790:6764466,9121814:3277 -h1,23790:10988285,9121814:0,411205,112570 -) -g1,23790:11364461,9121814 -g1,23790:12997618,9121814 -g1,23790:14912580,9121814 -(1,23790:14912580,9121814:0,452978,115847 -r1,23870:19139676,9121814:4227096,568825,115847 -k1,23790:14912580,9121814:-4227096 -) -(1,23790:14912580,9121814:4227096,452978,115847 -k1,23790:14912580,9121814:3277 -h1,23790:19136399,9121814:0,411205,112570 -) -g1,23790:19338905,9121814 -g1,23790:21761115,9121814 -g1,23790:23106569,9121814 -(1,23790:23106569,9121814:0,452978,115847 -r1,23870:26981953,9121814:3875384,568825,115847 -k1,23790:23106569,9121814:-3875384 -) -(1,23790:23106569,9121814:3875384,452978,115847 -k1,23790:23106569,9121814:3277 -h1,23790:26978676,9121814:0,411205,112570 -) -k1,23791:32583029,9121814:5548648 -g1,23791:32583029,9121814 -) -] -g1,23791:32583029,9237661 -) -h1,23791:6630773,9237661:0,0,0 -v1,23794:6630773,10102741:0,393216,0 -(1,23795:6630773,14870787:25952256,5161262,0 -g1,23795:6630773,14870787 -g1,23795:6237557,14870787 -r1,23870:6368629,14870787:131072,5161262,0 -g1,23795:6567858,14870787 -g1,23795:6764466,14870787 -[1,23795:6764466,14870787:25818563,5161262,0 -(1,23795:6764466,10411039:25818563,701514,196608 -(1,23794:6764466,10411039:0,701514,196608 -r1,23870:7761522,10411039:997056,898122,196608 -k1,23794:6764466,10411039:-997056 -) -(1,23794:6764466,10411039:997056,701514,196608 -) -k1,23794:8040087,10411039:278565 -k1,23794:8367767,10411039:327680 -k1,23794:9133840,10411039:278485 -k1,23794:10638584,10411039:278565 -k1,23794:11900189,10411039:278565 -k1,23794:13283036,10411039:278565 -k1,23794:14309367,10411039:278565 -k1,23794:16000233,10411039:278565 -k1,23794:16964960,10411039:278565 -k1,23794:20218203,10411039:278564 -k1,23794:22866550,10411039:278565 -k1,23794:25605337,10411039:278565 -k1,23794:29388767,10411039:278565 -k1,23794:30318760,10411039:278565 -k1,23794:32583029,10411039:0 -) -(1,23795:6764466,11276119:25818563,513147,134348 -k1,23794:8743784,11276119:166592 -k1,23794:10291221,11276119:166593 -k1,23794:10989310,11276119:166592 -k1,23794:15041533,11276119:166593 -k1,23794:17359017,11276119:166592 -k1,23794:19019175,11276119:166592 -k1,23794:19871930,11276119:166593 -k1,23794:21736560,11276119:166592 -k1,23794:22922238,11276119:166593 -k1,23794:25996007,11276119:166592 -k1,23794:26694096,11276119:166592 -k1,23794:28438141,11276119:166593 -k1,23794:29220771,11276119:166592 -k1,23794:29743224,11276119:166593 -k1,23794:31914562,11276119:166592 -k1,23794:32583029,11276119:0 -) -(1,23795:6764466,12141199:25818563,513147,126483 -k1,23794:8620390,12141199:184100 -k1,23794:10665057,12141199:184100 -k1,23794:11500586,12141199:184101 -k1,23794:13266725,12141199:184100 -k1,23794:13806685,12141199:184100 -k1,23794:14973825,12141199:184100 -k1,23794:15844088,12141199:184101 -k1,23794:16733355,12141199:184100 -k1,23794:17545290,12141199:184100 -k1,23794:18932631,12141199:184100 -k1,23794:20657483,12141199:184101 -k1,23794:21860668,12141199:184100 -k1,23794:24740264,12141199:184100 -k1,23794:26437590,12141199:184100 -k1,23794:27153188,12141199:184101 -(1,23794:27153188,12141199:0,452978,115847 -r1,23870:31028572,12141199:3875384,568825,115847 -k1,23794:27153188,12141199:-3875384 -) -(1,23794:27153188,12141199:3875384,452978,115847 -k1,23794:27153188,12141199:3277 -h1,23794:31025295,12141199:0,411205,112570 -) -k1,23794:31386342,12141199:184100 -k1,23794:32583029,12141199:0 -) -(1,23795:6764466,13006279:25818563,505283,134348 -k1,23794:9748375,13006279:205182 -k1,23794:11633901,13006279:205183 -k1,23794:12370580,13006279:205182 -k1,23794:12931622,13006279:205182 -k1,23794:16111484,13006279:205183 -k1,23794:18294543,13006279:205182 -k1,23794:19115763,13006279:205182 -k1,23794:21206417,13006279:205183 -k1,23794:22863221,13006279:205182 -k1,23794:25691809,13006279:205182 -k1,23794:27762802,13006279:205183 -k1,23794:31931601,13006279:205182 -k1,23794:32583029,13006279:0 -) -(1,23795:6764466,13871359:25818563,513147,126483 -k1,23794:8143746,13871359:222570 -k1,23794:9534824,13871359:222571 -k1,23794:10440279,13871359:222570 -k1,23794:12735753,13871359:222570 -k1,23794:13574362,13871359:222571 -k1,23794:14816017,13871359:222570 -k1,23794:16195297,13871359:222570 -k1,23794:17811818,13871359:222570 -k1,23794:19053474,13871359:222571 -k1,23794:22712752,13871359:222570 -k1,23794:25558073,13871359:222570 -k1,23794:28466965,13871359:222571 -k1,23794:29921612,13871359:222570 -k1,23794:32583029,13871359:0 -) -(1,23795:6764466,14736439:25818563,505283,134348 -g1,23794:7579733,14736439 -g1,23794:10057649,14736439 -h1,23794:11426696,14736439:0,0,0 -g1,23794:11625925,14736439 -g1,23794:12634524,14736439 -g1,23794:14331906,14736439 -h1,23794:15527283,14736439:0,0,0 -k1,23795:32583029,14736439:16796224 -g1,23795:32583029,14736439 -) -] -g1,23795:32583029,14870787 -) -h1,23795:6630773,14870787:0,0,0 -(1,23800:6630773,15735867:25952256,513147,134348 -h1,23799:6630773,15735867:983040,0,0 -k1,23799:9186021,15735867:375521 -k1,23799:10945663,15735867:375522 -k1,23799:13982601,15735867:375521 -k1,23799:16349106,15735867:375521 -k1,23799:18055009,15735867:375522 -k1,23799:18786390,15735867:375521 -k1,23799:20759023,15735867:375521 -k1,23799:23830041,15735867:375522 -k1,23799:27176964,15735867:375521 -k1,23799:28709195,15735867:375521 -k1,23799:29744009,15735867:375522 -k1,23799:31138615,15735867:375521 -k1,23800:32583029,15735867:0 -) -(1,23800:6630773,16600947:25952256,513147,7863 -k1,23799:9947594,16600947:291024 -k1,23799:13328640,16600947:291023 -k1,23799:15474988,16600947:291024 -k1,23799:16870293,16600947:291023 -k1,23799:17909083,16600947:291024 -k1,23799:19713332,16600947:291023 -k1,23799:20655784,16600947:291024 -k1,23799:22337481,16600947:291023 -k1,23799:22984365,16600947:291024 -k1,23799:24664751,16600947:291023 -k1,23799:26832071,16600947:291024 -k1,23799:27774522,16600947:291023 -k1,23799:28421406,16600947:291024 -k1,23799:29938609,16600947:291024 -k1,23799:31386342,16600947:291023 -k1,23800:32583029,16600947:0 -) -(1,23800:6630773,17466027:25952256,513147,134348 -(1,23799:6630773,17466027:0,452978,115847 -r1,23870:10506157,17466027:3875384,568825,115847 -k1,23799:6630773,17466027:-3875384 -) -(1,23799:6630773,17466027:3875384,452978,115847 -k1,23799:6630773,17466027:3277 -h1,23799:10502880,17466027:0,411205,112570 -) -k1,23799:10707897,17466027:201740 -k1,23799:13605133,17466027:201740 -k1,23799:15489838,17466027:201740 -k1,23799:16377740,17466027:201740 -k1,23799:17350183,17466027:201740 -k1,23799:20624251,17466027:201740 -k1,23799:21181852,17466027:201741 -k1,23799:22772955,17466027:201740 -k1,23799:25024661,17466027:201740 -k1,23799:25909286,17466027:201740 -k1,23799:26881729,17466027:201740 -k1,23799:29042995,17466027:201740 -k1,23799:30529241,17466027:201740 -k1,23799:31835263,17466027:201740 -k1,23799:32583029,17466027:0 -) -(1,23800:6630773,18331107:25952256,513147,134348 -k1,23799:9260383,18331107:164146 -k1,23799:10691995,18331107:164146 -k1,23799:11212001,18331107:164146 -k1,23799:12765509,18331107:164145 -k1,23799:14979621,18331107:164146 -k1,23799:17866788,18331107:164146 -k1,23799:18489031,18331107:164146 -k1,23799:19304605,18331107:164146 -k1,23799:22443430,18331107:164146 -k1,23799:24977358,18331107:164146 -k1,23799:26332949,18331107:164146 -k1,23799:28218069,18331107:164145 -k1,23799:30021270,18331107:164146 -k1,23799:30836844,18331107:164146 -k1,23799:31356850,18331107:164146 -k1,23799:32583029,18331107:0 -) -(1,23800:6630773,19196187:25952256,513147,134348 -g1,23799:7986712,19196187 -g1,23799:8673529,19196187 -g1,23799:10262121,19196187 -g1,23799:12511316,19196187 -(1,23799:12511316,19196187:0,459977,115847 -r1,23870:14276429,19196187:1765113,575824,115847 -k1,23799:12511316,19196187:-1765113 -) -(1,23799:12511316,19196187:1765113,459977,115847 -k1,23799:12511316,19196187:3277 -h1,23799:14273152,19196187:0,411205,112570 -) -g1,23799:14475658,19196187 -g1,23799:16068838,19196187 -g1,23799:17403151,19196187 -g1,23799:19136578,19196187 -g1,23799:19867304,19196187 -g1,23799:22427140,19196187 -g1,23799:23574020,19196187 -g1,23799:24129109,19196187 -k1,23800:32583029,19196187:3705182 -g1,23800:32583029,19196187 -) -v1,23802:6630773,19881042:0,393216,0 -(1,23806:6630773,20221725:25952256,733899,196608 -g1,23806:6630773,20221725 -g1,23806:6630773,20221725 -g1,23806:6434165,20221725 -(1,23806:6434165,20221725:0,733899,196608 -r1,23870:32779637,20221725:26345472,930507,196608 -k1,23806:6434165,20221725:-26345472 -) -(1,23806:6434165,20221725:26345472,733899,196608 -[1,23806:6630773,20221725:25952256,537291,0 -(1,23804:6630773,20115479:25952256,431045,106246 -(1,23803:6630773,20115479:0,0,0 -g1,23803:6630773,20115479 -g1,23803:6630773,20115479 -g1,23803:6303093,20115479 -(1,23803:6303093,20115479:0,0,0 -) -g1,23803:6630773,20115479 -) -g1,23804:8622497,20115479 -g1,23804:9618359,20115479 -g1,23804:13933760,20115479 -g1,23804:14597668,20115479 -g1,23804:16257438,20115479 -g1,23804:16921346,20115479 -g1,23804:17585254,20115479 -g1,23804:18913070,20115479 -g1,23804:19576978,20115479 -g1,23804:20904794,20115479 -g1,23804:21568702,20115479 -g1,23804:22232610,20115479 -h1,23804:26548011,20115479:0,0,0 -k1,23804:32583029,20115479:6035018 -g1,23804:32583029,20115479 -) -] -) -g1,23806:32583029,20221725 -g1,23806:6630773,20221725 -g1,23806:6630773,20221725 -g1,23806:32583029,20221725 -g1,23806:32583029,20221725 -) -h1,23806:6630773,20418333:0,0,0 -(1,23810:6630773,21283413:25952256,513147,134348 -h1,23809:6630773,21283413:983040,0,0 -k1,23809:8806789,21283413:239427 -k1,23809:10661023,21283413:239427 -(1,23809:10661023,21283413:0,459977,115847 -r1,23870:12426136,21283413:1765113,575824,115847 -k1,23809:10661023,21283413:-1765113 -) -(1,23809:10661023,21283413:1765113,459977,115847 -k1,23809:10661023,21283413:3277 -h1,23809:12422859,21283413:0,411205,112570 -) -k1,23809:12665563,21283413:239427 -k1,23809:13556418,21283413:239427 -k1,23809:14151705,21283413:239427 -k1,23809:15659868,21283413:239386 -k1,23809:16882335,21283413:239427 -k1,23809:19633757,21283413:239427 -k1,23809:20820835,21283413:239427 -k1,23809:21830965,21283413:239427 -k1,23809:24381847,21283413:239427 -k1,23809:27463570,21283413:239427 -k1,23809:29718229,21283413:239427 -k1,23809:31149101,21283413:239427 -k1,23809:32583029,21283413:0 -) -(1,23810:6630773,22148493:25952256,505283,126483 -g1,23809:9125073,22148493 -g1,23809:10112700,22148493 -k1,23810:32583028,22148493:19668664 -g1,23810:32583028,22148493 -) -v1,23812:6630773,22833348:0,393216,0 -(1,23817:6630773,23865492:25952256,1425360,196608 -g1,23817:6630773,23865492 -g1,23817:6630773,23865492 -g1,23817:6434165,23865492 -(1,23817:6434165,23865492:0,1425360,196608 -r1,23870:32779637,23865492:26345472,1621968,196608 -k1,23817:6434165,23865492:-26345472 -) -(1,23817:6434165,23865492:26345472,1425360,196608 -[1,23817:6630773,23865492:25952256,1228752,0 -(1,23814:6630773,23067785:25952256,431045,106246 -(1,23813:6630773,23067785:0,0,0 -g1,23813:6630773,23067785 -g1,23813:6630773,23067785 -g1,23813:6303093,23067785 -(1,23813:6303093,23067785:0,0,0 -) -g1,23813:6630773,23067785 -) -k1,23814:6630773,23067785:0 -g1,23814:12273990,23067785 -g1,23814:13933760,23067785 -g1,23814:14597668,23067785 -g1,23814:19908931,23067785 -g1,23814:23228470,23067785 -g1,23814:23892378,23067785 -h1,23814:25884102,23067785:0,0,0 -k1,23814:32583029,23067785:6698927 -g1,23814:32583029,23067785 -) -(1,23815:6630773,23752640:25952256,431045,112852 -h1,23815:6630773,23752640:0,0,0 -g1,23815:15261575,23752640 -g1,23815:17253299,23752640 -g1,23815:17917207,23752640 -h1,23815:21236746,23752640:0,0,0 -k1,23815:32583029,23752640:11346283 -g1,23815:32583029,23752640 -) -] -) -g1,23817:32583029,23865492 -g1,23817:6630773,23865492 -g1,23817:6630773,23865492 -g1,23817:32583029,23865492 -g1,23817:32583029,23865492 -) -h1,23817:6630773,24062100:0,0,0 -v1,23821:6630773,24746955:0,393216,0 -(1,23830:6630773,28485489:25952256,4131750,196608 -g1,23830:6630773,28485489 -g1,23830:6630773,28485489 -g1,23830:6434165,28485489 -(1,23830:6434165,28485489:0,4131750,196608 -r1,23870:32779637,28485489:26345472,4328358,196608 -k1,23830:6434165,28485489:-26345472 -) -(1,23830:6434165,28485489:26345472,4131750,196608 -[1,23830:6630773,28485489:25952256,3935142,0 -(1,23829:6630773,24974786:25952256,424439,106246 -(1,23822:6630773,24974786:0,0,0 -g1,23822:6630773,24974786 -g1,23822:6630773,24974786 -g1,23822:6303093,24974786 -(1,23822:6303093,24974786:0,0,0 -) -g1,23822:6630773,24974786 -) -k1,23829:6630773,24974786:0 -k1,23829:6630773,24974786:0 -h1,23829:10282267,24974786:0,0,0 -k1,23829:32583029,24974786:22300762 -g1,23829:32583029,24974786 -) -(1,23829:6630773,25659641:25952256,424439,86428 -h1,23829:6630773,25659641:0,0,0 -k1,23829:6630773,25659641:0 -h1,23829:9618359,25659641:0,0,0 -k1,23829:32583029,25659641:22964670 -g1,23829:32583029,25659641 -) -(1,23829:6630773,26344496:25952256,424439,86428 -h1,23829:6630773,26344496:0,0,0 -k1,23829:6630773,26344496:0 -h1,23829:9618359,26344496:0,0,0 -k1,23829:32583029,26344496:22964670 -g1,23829:32583029,26344496 -) -(1,23829:6630773,27029351:25952256,424439,86428 -h1,23829:6630773,27029351:0,0,0 -k1,23829:6630773,27029351:0 -h1,23829:9618359,27029351:0,0,0 -k1,23829:32583029,27029351:22964670 -g1,23829:32583029,27029351 -) -(1,23829:6630773,27714206:25952256,424439,86428 -h1,23829:6630773,27714206:0,0,0 -k1,23829:6630773,27714206:0 -h1,23829:9618359,27714206:0,0,0 -k1,23829:32583029,27714206:22964670 -g1,23829:32583029,27714206 -) -(1,23829:6630773,28399061:25952256,424439,86428 -h1,23829:6630773,28399061:0,0,0 -k1,23829:6630773,28399061:0 -h1,23829:9618359,28399061:0,0,0 -k1,23829:32583029,28399061:22964670 -g1,23829:32583029,28399061 -) -] -) -g1,23830:32583029,28485489 -g1,23830:6630773,28485489 -g1,23830:6630773,28485489 -g1,23830:32583029,28485489 -g1,23830:32583029,28485489 -) -h1,23830:6630773,28682097:0,0,0 -v1,23834:6630773,29547177:0,393216,0 -(1,23835:6630773,33450143:25952256,4296182,0 -g1,23835:6630773,33450143 -g1,23835:6237557,33450143 -r1,23870:6368629,33450143:131072,4296182,0 -g1,23835:6567858,33450143 -g1,23835:6764466,33450143 -[1,23835:6764466,33450143:25818563,4296182,0 -(1,23835:6764466,29855475:25818563,701514,196608 -(1,23834:6764466,29855475:0,701514,196608 -r1,23870:7761522,29855475:997056,898122,196608 -k1,23834:6764466,29855475:-997056 -) -(1,23834:6764466,29855475:997056,701514,196608 -) -k1,23834:8007135,29855475:245613 -k1,23834:8334815,29855475:327680 -k1,23834:9208262,29855475:245612 -k1,23834:11055575,29855475:245613 -k1,23834:12998569,29855475:245612 -k1,23834:15599546,29855475:245613 -k1,23834:16531320,29855475:245612 -k1,23834:18805928,29855475:245613 -(1,23834:18805928,29855475:0,414482,115847 -r1,23870:24791583,29855475:5985655,530329,115847 -k1,23834:18805928,29855475:-5985655 -) -(1,23834:18805928,29855475:5985655,414482,115847 -g1,23834:22326323,29855475 -g1,23834:23029747,29855475 -h1,23834:24788306,29855475:0,411205,112570 -) -k1,23834:25037195,29855475:245612 -k1,23834:26980846,29855475:245613 -k1,23834:29484173,29855475:245612 -k1,23834:30085646,29855475:245613 -k1,23834:31599989,29855475:245566 -k1,23834:32583029,29855475:0 -) -(1,23835:6764466,30720555:25818563,513147,126483 -k1,23834:8011101,30720555:140387 -k1,23834:9539542,30720555:140388 -k1,23834:11377967,30720555:140387 -k1,23834:11976452,30720555:140388 -k1,23834:12648336,30720555:140387 -k1,23834:14374695,30720555:140388 -k1,23834:15289062,30720555:140387 -k1,23834:17712068,30720555:140387 -k1,23834:18318417,30720555:140388 -k1,23834:19662700,30720555:140387 -k1,23834:21871404,30720555:140388 -k1,23834:22827059,30720555:140387 -k1,23834:25339195,30720555:140388 -k1,23834:28688880,30720555:140387 -k1,23834:32583029,30720555:0 -) -(1,23835:6764466,31585635:25818563,513147,134348 -k1,23834:8399057,31585635:141025 -k1,23834:9226244,31585635:141025 -k1,23834:10851005,31585635:141026 -k1,23834:12482974,31585635:141025 -k1,23834:13794472,31585635:141025 -k1,23834:16106049,31585635:141025 -k1,23834:17591874,31585635:141026 -k1,23834:19990614,31585635:141025 -k1,23834:21150724,31585635:141025 -k1,23834:22495645,31585635:141025 -k1,23834:24704987,31585635:141026 -k1,23834:25497440,31585635:141025 -k1,23834:26657550,31585635:141025 -k1,23834:27781615,31585635:141025 -k1,23834:29965398,31585635:141026 -k1,23834:31276896,31585635:141025 -k1,23834:32583029,31585635:0 -) -(1,23835:6764466,32450715:25818563,513147,126483 -k1,23834:8433388,32450715:158972 -k1,23834:10289086,32450715:158971 -k1,23834:11837421,32450715:158972 -k1,23834:13263859,32450715:158972 -k1,23834:13778690,32450715:158971 -k1,23834:16320551,32450715:158972 -k1,23834:17095560,32450715:158971 -k1,23834:18273617,32450715:158972 -k1,23834:19821952,32450715:158972 -k1,23834:22030889,32450715:158971 -k1,23834:23757482,32450715:158972 -k1,23834:25984770,32450715:158972 -k1,23834:27135301,32450715:158971 -k1,23834:29332443,32450715:158972 -k1,23834:32583029,32450715:0 -) -(1,23835:6764466,33315795:25818563,513147,134348 -g1,23834:7649857,33315795 -g1,23834:8619789,33315795 -g1,23834:11597745,33315795 -g1,23834:12413012,33315795 -(1,23834:12413012,33315795:0,459977,115847 -r1,23870:15936684,33315795:3523672,575824,115847 -k1,23834:12413012,33315795:-3523672 -) -(1,23834:12413012,33315795:3523672,459977,115847 -k1,23834:12413012,33315795:3277 -h1,23834:15933407,33315795:0,411205,112570 -) -g1,23834:16135913,33315795 -g1,23834:18798640,33315795 -g1,23834:20022852,33315795 -g1,23834:22500768,33315795 -h1,23834:23471356,33315795:0,0,0 -g1,23834:23670585,33315795 -g1,23834:24679184,33315795 -g1,23834:26376566,33315795 -h1,23834:27571943,33315795:0,0,0 -g1,23834:27771172,33315795 -g1,23834:28918052,33315795 -k1,23835:32583029,33315795:1208033 -g1,23835:32583029,33315795 -) -] -g1,23835:32583029,33450143 -) -h1,23835:6630773,33450143:0,0,0 -v1,23838:6630773,34315223:0,393216,0 -(1,23839:6630773,35579263:25952256,1657256,0 -g1,23839:6630773,35579263 -g1,23839:6237557,35579263 -r1,23870:6368629,35579263:131072,1657256,0 -g1,23839:6567858,35579263 -g1,23839:6764466,35579263 -[1,23839:6764466,35579263:25818563,1657256,0 -(1,23839:6764466,34587700:25818563,665693,196608 -(1,23838:6764466,34587700:0,665693,196608 -r1,23870:7868133,34587700:1103667,862301,196608 -k1,23838:6764466,34587700:-1103667 -) -(1,23838:6764466,34587700:1103667,665693,196608 -) -k1,23838:8121314,34587700:253181 -k1,23838:9847532,34587700:327680 -k1,23838:11800716,34587700:253180 -k1,23838:13072982,34587700:253181 -k1,23838:14715525,34587700:253180 -k1,23838:16845002,34587700:253181 -(1,23838:16845002,34587700:0,459977,115847 -r1,23870:18610115,34587700:1765113,575824,115847 -k1,23838:16845002,34587700:-1765113 -) -(1,23838:16845002,34587700:1765113,459977,115847 -k1,23838:16845002,34587700:3277 -h1,23838:18606838,34587700:0,411205,112570 -) -k1,23838:18863295,34587700:253180 -k1,23838:20383942,34587700:253181 -k1,23838:21863301,34587700:253180 -k1,23838:23429824,34587700:253181 -k1,23838:25076956,34587700:253181 -k1,23838:28355933,34587700:253180 -(1,23838:28355933,34587700:0,452978,115847 -r1,23870:32583029,34587700:4227096,568825,115847 -k1,23838:28355933,34587700:-4227096 -) -(1,23838:28355933,34587700:4227096,452978,115847 -k1,23838:28355933,34587700:3277 -h1,23838:32579752,34587700:0,411205,112570 -) -k1,23838:32583029,34587700:0 -) -(1,23839:6764466,35452780:25818563,513147,126483 -g1,23838:8155140,35452780 -(1,23838:8155140,35452780:0,452978,115847 -r1,23870:12733948,35452780:4578808,568825,115847 -k1,23838:8155140,35452780:-4578808 -) -(1,23838:8155140,35452780:4578808,452978,115847 -k1,23838:8155140,35452780:3277 -h1,23838:12730671,35452780:0,411205,112570 -) -g1,23838:12933177,35452780 -g1,23838:15459589,35452780 -g1,23838:16325974,35452780 -(1,23838:16325974,35452780:0,452978,115847 -r1,23870:19849646,35452780:3523672,568825,115847 -k1,23838:16325974,35452780:-3523672 -) -(1,23838:16325974,35452780:3523672,452978,115847 -k1,23838:16325974,35452780:3277 -h1,23838:19846369,35452780:0,411205,112570 -) -g1,23838:20048875,35452780 -g1,23838:21439549,35452780 -g1,23838:23933849,35452780 -g1,23838:25152163,35452780 -k1,23839:32583029,35452780:6065096 -g1,23839:32583029,35452780 -) -] -g1,23839:32583029,35579263 -) -h1,23839:6630773,35579263:0,0,0 -(1,23842:6630773,36444343:25952256,513147,134348 -h1,23841:6630773,36444343:983040,0,0 -k1,23841:10644538,36444343:240857 -(1,23841:10644538,36444343:0,452978,115847 -r1,23870:12409651,36444343:1765113,568825,115847 -k1,23841:10644538,36444343:-1765113 -) -(1,23841:10644538,36444343:1765113,452978,115847 -k1,23841:10644538,36444343:3277 -h1,23841:12406374,36444343:0,411205,112570 -) -k1,23841:12650509,36444343:240858 -k1,23841:14574331,36444343:240857 -k1,23841:15229990,36444343:240816 -k1,23841:17760675,36444343:240857 -k1,23841:19192978,36444343:240858 -k1,23841:21378944,36444343:240857 -k1,23841:23258857,36444343:240858 -k1,23841:25012940,36444343:240857 -k1,23841:28730483,36444343:240858 -k1,23841:29622768,36444343:240857 -k1,23841:32583029,36444343:0 -) -(1,23842:6630773,37309423:25952256,513147,134348 -k1,23841:9032199,37309423:205315 -k1,23841:9888942,37309423:205315 -k1,23841:11113342,37309423:205315 -k1,23841:13738902,37309423:205315 -k1,23841:14627102,37309423:205315 -k1,23841:15188277,37309423:205315 -k1,23841:16550302,37309423:205315 -k1,23841:19584805,37309423:205314 -k1,23841:20946830,37309423:205315 -k1,23841:21835030,37309423:205315 -k1,23841:23690542,37309423:205315 -k1,23841:27200838,37309423:205315 -k1,23841:28092315,37309423:205315 -k1,23841:31839851,37309423:205315 -k1,23841:32583029,37309423:0 -) -(1,23842:6630773,38174503:25952256,513147,134348 -k1,23841:9264513,38174503:194490 -k1,23841:9814863,38174503:194490 -k1,23841:11970846,38174503:194490 -k1,23841:13546181,38174503:194491 -k1,23841:16778920,38174503:194490 -k1,23841:18077692,38174503:194490 -k1,23841:19019948,38174503:194490 -k1,23841:20148981,38174503:194490 -k1,23841:22901997,38174503:194490 -k1,23841:26377220,38174503:194491 -(1,23841:26377220,38174503:0,414482,115847 -r1,23870:27438909,38174503:1061689,530329,115847 -k1,23841:26377220,38174503:-1061689 -) -(1,23841:26377220,38174503:1061689,414482,115847 -k1,23841:26377220,38174503:3277 -h1,23841:27435632,38174503:0,411205,112570 -) -k1,23841:27807069,38174503:194490 -k1,23841:28629394,38174503:194490 -k1,23841:29921612,38174503:194490 -k1,23841:32583029,38174503:0 -) -(1,23842:6630773,39039583:25952256,505283,126483 -g1,23841:7672140,39039583 -g1,23841:8805912,39039583 -(1,23841:8805912,39039583:0,414482,115847 -r1,23870:9867601,39039583:1061689,530329,115847 -k1,23841:8805912,39039583:-1061689 -) -(1,23841:8805912,39039583:1061689,414482,115847 -k1,23841:8805912,39039583:3277 -h1,23841:9864324,39039583:0,411205,112570 -) -g1,23841:10066830,39039583 -g1,23841:10917487,39039583 -g1,23841:11472576,39039583 -g1,23841:12955000,39039583 -g1,23841:14322736,39039583 -g1,23841:17151925,39039583 -g1,23841:18037316,39039583 -g1,23841:19255630,39039583 -g1,23841:21590022,39039583 -g1,23841:24729196,39039583 -(1,23841:24729196,39039583:0,452978,115847 -r1,23870:26142597,39039583:1413401,568825,115847 -k1,23841:24729196,39039583:-1413401 -) -(1,23841:24729196,39039583:1413401,452978,115847 -k1,23841:24729196,39039583:3277 -h1,23841:26139320,39039583:0,411205,112570 -) -k1,23842:32583029,39039583:6180910 -g1,23842:32583029,39039583 -) -v1,23844:6630773,39724438:0,393216,0 -(1,23850:6630773,41434831:25952256,2103609,196608 -g1,23850:6630773,41434831 -g1,23850:6630773,41434831 -g1,23850:6434165,41434831 -(1,23850:6434165,41434831:0,2103609,196608 -r1,23870:32779637,41434831:26345472,2300217,196608 -k1,23850:6434165,41434831:-26345472 -) -(1,23850:6434165,41434831:26345472,2103609,196608 -[1,23850:6630773,41434831:25952256,1907001,0 -(1,23846:6630773,39952269:25952256,424439,106246 -(1,23845:6630773,39952269:0,0,0 -g1,23845:6630773,39952269 -g1,23845:6630773,39952269 -g1,23845:6303093,39952269 -(1,23845:6303093,39952269:0,0,0 -) -g1,23845:6630773,39952269 -) -g1,23846:9618358,39952269 -g1,23846:10614220,39952269 -g1,23846:13933760,39952269 -g1,23846:16257438,39952269 -g1,23846:18913070,39952269 -h1,23846:21900655,39952269:0,0,0 -k1,23846:32583029,39952269:10682374 -g1,23846:32583029,39952269 -) -(1,23847:6630773,40637124:25952256,431045,106246 -h1,23847:6630773,40637124:0,0,0 -g1,23847:11278128,40637124 -g1,23847:12937898,40637124 -g1,23847:13601806,40637124 -g1,23847:18913069,40637124 -g1,23847:20240885,40637124 -g1,23847:20904793,40637124 -h1,23847:22564563,40637124:0,0,0 -k1,23847:32583029,40637124:10018466 -g1,23847:32583029,40637124 -) -(1,23848:6630773,41321979:25952256,431045,112852 -h1,23848:6630773,41321979:0,0,0 -g1,23848:15261575,41321979 -g1,23848:17253299,41321979 -g1,23848:17917207,41321979 -h1,23848:21236746,41321979:0,0,0 -k1,23848:32583029,41321979:11346283 -g1,23848:32583029,41321979 -) -] -) -g1,23850:32583029,41434831 -g1,23850:6630773,41434831 -g1,23850:6630773,41434831 -g1,23850:32583029,41434831 -g1,23850:32583029,41434831 -) -h1,23850:6630773,41631439:0,0,0 -v1,23854:6630773,42316294:0,393216,0 -(1,23860:6630773,43923743:25952256,2000665,196608 -g1,23860:6630773,43923743 -g1,23860:6630773,43923743 -g1,23860:6434165,43923743 -(1,23860:6434165,43923743:0,2000665,196608 -r1,23870:32779637,43923743:26345472,2197273,196608 -k1,23860:6434165,43923743:-26345472 -) -(1,23860:6434165,43923743:26345472,2000665,196608 -[1,23860:6630773,43923743:25952256,1804057,0 -(1,23859:6630773,42544125:25952256,424439,6605 -(1,23855:6630773,42544125:0,0,0 -g1,23855:6630773,42544125 -g1,23855:6630773,42544125 -g1,23855:6303093,42544125 -(1,23855:6303093,42544125:0,0,0 -) -g1,23855:6630773,42544125 -) -h1,23859:7958589,42544125:0,0,0 -k1,23859:32583029,42544125:24624440 -g1,23859:32583029,42544125 -) -(1,23859:6630773,43228980:25952256,424439,6605 -h1,23859:6630773,43228980:0,0,0 -g1,23859:8622497,43228980 -h1,23859:10282267,43228980:0,0,0 -k1,23859:32583029,43228980:22300762 -g1,23859:32583029,43228980 -) -(1,23859:6630773,43913835:25952256,407923,9908 -h1,23859:6630773,43913835:0,0,0 -h1,23859:8622497,43913835:0,0,0 -k1,23859:32583029,43913835:23960532 -g1,23859:32583029,43913835 -) -] -) -g1,23860:32583029,43923743 -g1,23860:6630773,43923743 -g1,23860:6630773,43923743 -g1,23860:32583029,43923743 -g1,23860:32583029,43923743 -) -h1,23860:6630773,44120351:0,0,0 -] -(1,23870:32583029,45706769:0,0,0 -g1,23870:32583029,45706769 +(1,23858:4262630,4025873:0,0,0 +[1,23858:-473656,4025873:0,0,0 +(1,23858:-473656,-710413:0,0,0 +(1,23858:-473656,-710413:0,0,0 +g1,23858:-473656,-710413 ) +g1,23858:-473656,-710413 ) ] -(1,23870:6630773,47279633:25952256,0,0 -h1,23870:6630773,47279633:25952256,0,0 -) -] -(1,23870:4262630,4025873:0,0,0 -[1,23870:-473656,4025873:0,0,0 -(1,23870:-473656,-710413:0,0,0 -(1,23870:-473656,-710413:0,0,0 -g1,23870:-473656,-710413 -) -g1,23870:-473656,-710413 ) ] -) -] -!31998 -}409 -Input:4469:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!33045 +}410 Input:4470:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4471:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4472:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -411635,2105 +411832,2087 @@ Input:4479:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4480:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4481:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4482:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1576 -{410 -[1,23914:4262630,47279633:28320399,43253760,0 -(1,23914:4262630,4025873:0,0,0 -[1,23914:-473656,4025873:0,0,0 -(1,23914:-473656,-710413:0,0,0 -(1,23914:-473656,-644877:0,0,0 -k1,23914:-473656,-644877:-65536 +!1208 +{411 +[1,23908:4262630,47279633:28320399,43253760,0 +(1,23908:4262630,4025873:0,0,0 +[1,23908:-473656,4025873:0,0,0 +(1,23908:-473656,-710413:0,0,0 +(1,23908:-473656,-644877:0,0,0 +k1,23908:-473656,-644877:-65536 ) -(1,23914:-473656,4736287:0,0,0 -k1,23914:-473656,4736287:5209943 +(1,23908:-473656,4736287:0,0,0 +k1,23908:-473656,4736287:5209943 ) -g1,23914:-473656,-710413 +g1,23908:-473656,-710413 ) ] ) -[1,23914:6630773,47279633:25952256,43253760,0 -[1,23914:6630773,4812305:25952256,786432,0 -(1,23914:6630773,4812305:25952256,505283,11795 -(1,23914:6630773,4812305:25952256,505283,11795 -g1,23914:3078558,4812305 -[1,23914:3078558,4812305:0,0,0 -(1,23914:3078558,2439708:0,1703936,0 -k1,23914:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23914:2537886,2439708:1179648,16384,0 +[1,23908:6630773,47279633:25952256,43253760,0 +[1,23908:6630773,4812305:25952256,786432,0 +(1,23908:6630773,4812305:25952256,505283,11795 +(1,23908:6630773,4812305:25952256,505283,11795 +g1,23908:3078558,4812305 +[1,23908:3078558,4812305:0,0,0 +(1,23908:3078558,2439708:0,1703936,0 +k1,23908:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23908:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23914:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23908:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,23914:3078558,4812305:0,0,0 -(1,23914:3078558,2439708:0,1703936,0 -g1,23914:29030814,2439708 -g1,23914:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23914:36151628,1915420:16384,1179648,0 +[1,23908:3078558,4812305:0,0,0 +(1,23908:3078558,2439708:0,1703936,0 +g1,23908:29030814,2439708 +g1,23908:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23908:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23914:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23908:37855564,2439708:1179648,16384,0 ) ) -k1,23914:3078556,2439708:-34777008 +k1,23908:3078556,2439708:-34777008 ) ] -[1,23914:3078558,4812305:0,0,0 -(1,23914:3078558,49800853:0,16384,2228224 -k1,23914:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23914:2537886,49800853:1179648,16384,0 +[1,23908:3078558,4812305:0,0,0 +(1,23908:3078558,49800853:0,16384,2228224 +k1,23908:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23908:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23914:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23908:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,23914:3078558,4812305:0,0,0 -(1,23914:3078558,49800853:0,16384,2228224 -g1,23914:29030814,49800853 -g1,23914:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23914:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23914:37855564,49800853:1179648,16384,0 -) -) -k1,23914:3078556,49800853:-34777008 -) -] -g1,23914:6630773,4812305 -g1,23914:6630773,4812305 -g1,23914:9946239,4812305 -g1,23914:11513204,4812305 -k1,23914:31387652,4812305:19874448 -) -) -] -[1,23914:6630773,45706769:25952256,40108032,0 -(1,23914:6630773,45706769:25952256,40108032,0 -(1,23914:6630773,45706769:0,0,0 -g1,23914:6630773,45706769 -) -[1,23914:6630773,45706769:25952256,40108032,0 -(1,23864:6630773,6254097:25952256,555811,12975 -(1,23864:6630773,6254097:2899444,534184,12975 -g1,23864:6630773,6254097 -g1,23864:9530217,6254097 -) -k1,23864:32583029,6254097:20691878 -g1,23864:32583029,6254097 -) -(1,23870:6630773,7512393:25952256,513147,134348 -k1,23869:9360650,7512393:194944 -k1,23869:11578691,7512393:194945 -k1,23869:12305132,7512393:194944 -k1,23869:13821938,7512393:194945 -k1,23869:14676174,7512393:194944 -k1,23869:15890203,7512393:194944 -k1,23869:19293135,7512393:194945 -k1,23869:21212331,7512393:194944 -k1,23869:21877168,7512393:194944 -k1,23869:24363252,7512393:194945 -k1,23869:27583993,7512393:194944 -k1,23869:29063444,7512393:194945 -k1,23869:30733603,7512393:194944 -k1,23870:32583029,7512393:0 -) -(1,23870:6630773,8377473:25952256,513147,134348 -k1,23869:7826586,8377473:176728 -k1,23869:10268895,8377473:176729 -k1,23869:13620187,8377473:176728 -k1,23869:14988361,8377473:176729 -k1,23869:16449595,8377473:176728 -k1,23869:17617884,8377473:176729 -k1,23869:20651326,8377473:176728 -k1,23869:21479483,8377473:176729 -k1,23869:22403977,8377473:176728 -k1,23869:24424234,8377473:176729 -k1,23869:26487088,8377473:176728 -k1,23869:29426160,8377473:176729 -k1,23869:32583029,8377473:0 -) -(1,23870:6630773,9242553:25952256,513147,134348 -k1,23869:8248747,9242553:175527 -k1,23869:10168188,9242553:175528 -k1,23869:12277027,9242553:175527 -k1,23869:13103982,9242553:175527 -k1,23869:13868023,9242553:175528 -k1,23869:15240237,9242553:175527 -k1,23869:18441561,9242553:175527 -k1,23869:20184710,9242553:175528 -k1,23869:22940389,9242553:175527 -k1,23869:25139012,9242553:175527 -k1,23869:26418822,9242553:175528 -k1,23869:30042198,9242553:175527 -k1,23869:32583029,9242553:0 -) -(1,23870:6630773,10107633:25952256,513147,134348 -k1,23869:9030399,10107633:135357 -k1,23869:10674395,10107633:135357 -k1,23869:12518276,10107633:135357 -k1,23869:13845078,10107633:135357 -k1,23869:15826584,10107633:135357 -k1,23869:17428637,10107633:135357 -k1,23869:18379261,10107633:135356 -k1,23869:19717859,10107633:135357 -k1,23869:22348827,10107633:135357 -k1,23869:23680871,10107633:135357 -k1,23869:25839324,10107633:135357 -k1,23869:29000478,10107633:135357 -k1,23869:30932832,10107633:135357 -k1,23869:32583029,10107633:0 -) -(1,23870:6630773,10972713:25952256,513147,126483 -k1,23869:10111765,10972713:185186 -k1,23869:10956243,10972713:185186 -k1,23869:12160514,10972713:185186 -k1,23869:13571879,10972713:185186 -k1,23869:14740105,10972713:185186 -k1,23869:17279344,10972713:185186 -k1,23869:18080568,10972713:185186 -k1,23869:19867454,10972713:185186 -k1,23869:21750022,10972713:185186 -k1,23869:23315396,10972713:185186 -k1,23869:26201976,10972713:185186 -k1,23869:28272633,10972713:185186 -k1,23869:28989316,10972713:185186 -k1,23869:30528476,10972713:185186 -k1,23869:32583029,10972713:0 -) -(1,23870:6630773,11837793:25952256,513147,134348 -k1,23869:7906938,11837793:203996 -k1,23869:11996563,11837793:203995 -k1,23869:13580747,11837793:203996 -k1,23869:14985362,11837793:203995 -k1,23869:18510723,11837793:203996 -k1,23869:21501964,11837793:203995 -k1,23869:22810242,11837793:203996 -k1,23869:23762003,11837793:203995 -k1,23869:27446616,11837793:203996 -k1,23869:28412139,11837793:203995 -k1,23869:31043589,11837793:203996 -k1,23870:32583029,11837793:0 -) -(1,23870:6630773,12702873:25952256,513147,126483 -k1,23869:8850376,12702873:250246 -k1,23869:10292068,12702873:250247 -k1,23869:11745555,12702873:250246 -k1,23869:12527299,12702873:250247 -k1,23869:17332297,12702873:250246 -k1,23869:18530195,12702873:250247 -k1,23869:20941818,12702873:250246 -k1,23869:22476571,12702873:250247 -k1,23869:23859279,12702873:250246 -k1,23869:24857292,12702873:250247 -k1,23869:27256464,12702873:250246 -k1,23869:28158139,12702873:250247 -k1,23869:29820686,12702873:250246 -k1,23869:32583029,12702873:0 -) -(1,23870:6630773,13567953:25952256,513147,134348 -k1,23869:8139194,13567953:195079 -k1,23869:8950310,13567953:195078 -k1,23869:10164474,13567953:195079 -k1,23869:12520275,13567953:195079 -k1,23869:15319755,13567953:195079 -k1,23869:18724131,13567953:195078 -k1,23869:22157999,13567953:195079 -k1,23869:22884575,13567953:195079 -k1,23869:24364160,13567953:195079 -k1,23869:26255965,13567953:195078 -k1,23869:29476841,13567953:195079 -k1,23869:31084221,13567953:195079 -k1,23870:32583029,13567953:0 -) -(1,23870:6630773,14433033:25952256,513147,134348 -k1,23869:8463013,14433033:250201 -k1,23869:10909325,14433033:250201 -k1,23869:14364891,14433033:250200 -k1,23869:15301254,14433033:250201 -k1,23869:17262600,14433033:250201 -k1,23869:18195686,14433033:250201 -k1,23869:20201596,14433033:250200 -k1,23869:22866143,14433033:250201 -k1,23869:24383810,14433033:250201 -k1,23869:27347202,14433033:250201 -k1,23869:28256694,14433033:250200 -k1,23869:30062064,14433033:250201 -(1,23869:30062064,14433033:0,414482,115847 -r1,23914:32530601,14433033:2468537,530329,115847 -k1,23869:30062064,14433033:-2468537 -) -(1,23869:30062064,14433033:2468537,414482,115847 -k1,23869:30062064,14433033:3277 -h1,23869:32527324,14433033:0,411205,112570 -) -k1,23869:32583029,14433033:0 -) -(1,23870:6630773,15298113:25952256,513147,126483 -k1,23869:7673533,15298113:169165 -(1,23869:7673533,15298113:0,452978,115847 -r1,23914:9438646,15298113:1765113,568825,115847 -k1,23869:7673533,15298113:-1765113 -) -(1,23869:7673533,15298113:1765113,452978,115847 -k1,23869:7673533,15298113:3277 -h1,23869:9435369,15298113:0,411205,112570 -) -k1,23869:9607811,15298113:169165 -k1,23869:12802774,15298113:169166 -k1,23869:15353517,15298113:169165 -k1,23869:16138720,15298113:169165 -k1,23869:18330981,15298113:169165 -k1,23869:19975362,15298113:169166 -k1,23869:20915230,15298113:169165 -(1,23869:20915230,15298113:0,452978,115847 -r1,23914:23032055,15298113:2116825,568825,115847 -k1,23869:20915230,15298113:-2116825 -) -(1,23869:20915230,15298113:2116825,452978,115847 -k1,23869:20915230,15298113:3277 -h1,23869:23028778,15298113:0,411205,112570 -) -k1,23869:23201220,15298113:169165 -k1,23869:26824788,15298113:169165 -k1,23869:28879425,15298113:169166 -k1,23869:30152872,15298113:169165 -k1,23869:31069803,15298113:169165 -k1,23869:32583029,15298113:0 -) -(1,23870:6630773,16163193:25952256,513147,134348 -k1,23869:7448360,16163193:166159 -k1,23869:9855195,16163193:166159 -k1,23869:11040439,16163193:166159 -k1,23869:13472178,16163193:166159 -k1,23869:16812901,16163193:166159 -k1,23869:17638352,16163193:166159 -k1,23869:21449623,16163193:166159 -k1,23869:22386485,16163193:166159 -k1,23869:25043667,16163193:166159 -k1,23869:26192866,16163193:166159 -k1,23869:27752976,16163193:166159 -k1,23869:28938220,16163193:166159 -k1,23869:30757852,16163193:166159 -k1,23869:32583029,16163193:0 -) -(1,23870:6630773,17028273:25952256,505283,134348 -g1,23869:7481430,17028273 -g1,23869:11051176,17028273 -g1,23869:12269490,17028273 -g1,23869:14627475,17028273 -g1,23869:15439466,17028273 -g1,23869:16427093,17028273 -k1,23870:32583029,17028273:14920583 -g1,23870:32583029,17028273 -) -(1,23872:6630773,17893353:25952256,513147,134348 -h1,23871:6630773,17893353:983040,0,0 -k1,23871:10797401,17893353:220705 -k1,23871:11634144,17893353:220705 -k1,23871:13058090,17893353:220705 -k1,23871:15557482,17893353:220705 -k1,23871:16646539,17893353:220705 -k1,23871:19999865,17893353:220705 -k1,23871:21239656,17893353:220706 -k1,23871:22552846,17893353:220705 -k1,23871:23432843,17893353:220705 -k1,23871:25350275,17893353:220705 -k1,23871:28596777,17893353:220705 -k1,23871:29579010,17893353:220705 -k1,23871:32227169,17893353:220705 -k1,23871:32583029,17893353:0 -) -(1,23872:6630773,18758433:25952256,513147,134348 -k1,23871:7842404,18758433:228591 -k1,23871:9809011,18758433:228592 -k1,23871:10723764,18758433:228591 -k1,23871:11723058,18758433:228591 -k1,23871:15197648,18758433:228592 -k1,23871:16112401,18758433:228591 -k1,23871:16872490,18758433:228592 -k1,23871:18120166,18758433:228591 -k1,23871:19715838,18758433:228591 -k1,23871:21338381,18758433:228592 -k1,23871:21981786,18758433:228562 -k1,23871:24143689,18758433:228591 -k1,23871:27571748,18758433:228591 -k1,23871:29585541,18758433:228592 -k1,23871:31005577,18758433:228591 -k1,23871:32583029,18758433:0 -) -(1,23872:6630773,19623513:25952256,513147,134348 -k1,23871:7850507,19623513:236694 -k1,23871:11699545,19623513:236694 -k1,23871:12927799,19623513:236694 -k1,23871:14450309,19623513:236694 -k1,23871:17503085,19623513:236694 -k1,23871:18971857,19623513:236695 -k1,23871:21487238,19623513:236694 -h1,23871:22856285,19623513:0,0,0 -k1,23871:23092979,19623513:236694 -k1,23871:24139043,19623513:236694 -k1,23871:25873890,19623513:236694 -h1,23871:27069267,19623513:0,0,0 -k1,23871:27686725,19623513:236694 -k1,23871:32117068,19623513:236694 -k1,23871:32583029,19623513:0 -) -(1,23872:6630773,20488593:25952256,513147,134348 -k1,23871:7807285,20488593:157427 -k1,23871:8947752,20488593:157427 -k1,23871:10843194,20488593:157427 -k1,23871:12513846,20488593:157426 -k1,23871:13287311,20488593:157427 -k1,23871:13800598,20488593:157427 -k1,23871:14944997,20488593:157427 -k1,23871:19095533,20488593:157427 -k1,23871:19939122,20488593:157427 -k1,23871:23271113,20488593:157427 -k1,23871:23784399,20488593:157426 -k1,23871:27775027,20488593:157427 -k1,23871:28915494,20488593:157427 -k1,23871:31426974,20488593:157427 -k1,23872:32583029,20488593:0 -) -(1,23872:6630773,21353673:25952256,513147,126483 -(1,23871:6630773,21353673:0,414482,122846 -r1,23914:7692462,21353673:1061689,537328,122846 -k1,23871:6630773,21353673:-1061689 -) -(1,23871:6630773,21353673:1061689,414482,122846 -k1,23871:6630773,21353673:3277 -h1,23871:7689185,21353673:0,411205,112570 -) -g1,23871:7891691,21353673 -g1,23871:8773805,21353673 -(1,23871:8773805,21353673:0,452978,115847 -r1,23914:10187206,21353673:1413401,568825,115847 -k1,23871:8773805,21353673:-1413401 -) -(1,23871:8773805,21353673:1413401,452978,115847 -k1,23871:8773805,21353673:3277 -h1,23871:10183929,21353673:0,411205,112570 -) -g1,23871:10560105,21353673 -g1,23871:11778419,21353673 -g1,23871:12960688,21353673 -g1,23871:14292379,21353673 -g1,23871:15239374,21353673 -g1,23871:20101490,21353673 -g1,23871:21110089,21353673 -g1,23871:22328403,21353673 -k1,23872:32583029,21353673:9406591 -g1,23872:32583029,21353673 -) -v1,23874:6630773,22218753:0,393216,0 -(1,23875:6630773,28769838:25952256,6944301,0 -g1,23875:6630773,28769838 -g1,23875:6237557,28769838 -r1,23914:6368629,28769838:131072,6944301,0 -g1,23875:6567858,28769838 -g1,23875:6764466,28769838 -[1,23875:6764466,28769838:25818563,6944301,0 -(1,23875:6764466,22579930:25818563,754393,260573 -(1,23874:6764466,22579930:0,754393,260573 -r1,23914:7856192,22579930:1091726,1014966,260573 -k1,23874:6764466,22579930:-1091726 -) -(1,23874:6764466,22579930:1091726,754393,260573 -) -k1,23874:8000743,22579930:144551 -k1,23874:8328423,22579930:327680 -k1,23874:11593143,22579930:144551 -k1,23874:15642984,22579930:144551 -k1,23874:16438963,22579930:144551 -k1,23874:18516826,22579930:144551 -k1,23874:19076166,22579930:144497 -k1,23874:22246514,22579930:144551 -k1,23874:25481088,22579930:144551 -k1,23874:26241677,22579930:144551 -k1,23874:27405313,22579930:144551 -k1,23874:30304342,22579930:144551 -k1,23874:32583029,22579930:0 -) -(1,23875:6764466,23445010:25818563,513147,134348 -k1,23874:8480706,23445010:241025 -k1,23874:10790048,23445010:241026 -k1,23874:13366776,23445010:241025 -k1,23874:14369329,23445010:241025 -k1,23874:17551610,23445010:241025 -k1,23874:18811721,23445010:241026 -k1,23874:20124915,23445010:241025 -k1,23874:21759891,23445010:241025 -k1,23874:22771619,23445010:241025 -k1,23874:26766547,23445010:241026 -k1,23874:28250135,23445010:241025 -(1,23874:28250135,23445010:0,452978,115847 -r1,23914:31773807,23445010:3523672,568825,115847 -k1,23874:28250135,23445010:-3523672 -) -(1,23874:28250135,23445010:3523672,452978,115847 -k1,23874:28250135,23445010:3277 -h1,23874:31770530,23445010:0,411205,112570 -) -k1,23874:32014832,23445010:241025 -$1,23874:32014832,23445010 -$1,23874:32583029,23445010 -k1,23875:32583029,23445010:0 -) -(1,23875:6764466,24310090:25818563,513147,126483 -(1,23874:6764466,24310090:0,452978,115847 -r1,23914:10288138,24310090:3523672,568825,115847 -k1,23874:6764466,24310090:-3523672 -) -(1,23874:6764466,24310090:3523672,452978,115847 -k1,23874:6764466,24310090:3277 -h1,23874:10284861,24310090:0,411205,112570 -) -k1,23874:10649255,24310090:187447 -k1,23874:12033389,24310090:187447 -k1,23874:15242046,24310090:187447 -k1,23874:17295959,24310090:187448 -k1,23874:18134834,24310090:187447 -k1,23874:19341366,24310090:187447 -k1,23874:21709196,24310090:187447 -k1,23874:22555935,24310090:187447 -k1,23874:23762467,24310090:187447 -k1,23874:25263256,24310090:187447 -k1,23874:27036675,24310090:187448 -k1,23874:28296291,24310090:187447 -k1,23874:29550009,24310090:187447 -k1,23874:30756541,24310090:187447 -k1,23874:32583029,24310090:0 -) -(1,23875:6764466,25175170:25818563,513147,126483 -k1,23874:9251162,25175170:244709 -k1,23874:10178756,25175170:244709 -k1,23874:11989120,25175170:244709 -k1,23874:12893121,25175170:244709 -k1,23874:14646470,25175170:244710 -k1,23874:17019788,25175170:244709 -k1,23874:21049201,25175170:244709 -k1,23874:22335932,25175170:244709 -k1,23874:25415728,25175170:244709 -k1,23874:28355933,25175170:244709 -(1,23874:28355933,25175170:0,452978,115847 -r1,23914:32583029,25175170:4227096,568825,115847 -k1,23874:28355933,25175170:-4227096 -) -(1,23874:28355933,25175170:4227096,452978,115847 -k1,23874:28355933,25175170:3277 -h1,23874:32579752,25175170:0,411205,112570 -) -k1,23874:32583029,25175170:0 -) -(1,23875:6764466,26040250:25818563,513147,134348 -k1,23874:8179714,26040250:314243 -k1,23874:8849817,26040250:314243 -k1,23874:11512869,26040250:314242 -k1,23874:14589455,26040250:314243 -k1,23874:18078262,26040250:314243 -k1,23874:19834952,26040250:314243 -(1,23874:19834952,26040250:0,452978,115847 -r1,23914:24062048,26040250:4227096,568825,115847 -k1,23874:19834952,26040250:-4227096 -) -(1,23874:19834952,26040250:4227096,452978,115847 -k1,23874:19834952,26040250:3277 -h1,23874:24058771,26040250:0,411205,112570 -) -k1,23874:24549961,26040250:314243 -k1,23874:27695358,26040250:314242 -k1,23874:29389789,26040250:314243 -k1,23874:31170728,26040250:314243 -k1,23874:32583029,26040250:0 -) -(1,23875:6764466,26905330:25818563,513147,126483 -k1,23874:8764523,26905330:265974 -k1,23874:12153944,26905330:265975 -k1,23874:13181446,26905330:265974 -k1,23874:15188713,26905330:265975 -k1,23874:17416180,26905330:265974 -k1,23874:19042681,26905330:265974 -k1,23874:21376972,26905330:265975 -k1,23874:22634506,26905330:265974 -k1,23874:23966751,26905330:265974 -k1,23874:25167269,26905330:265975 -k1,23874:26049281,26905330:265974 -k1,23874:27334341,26905330:265975 -k1,23874:30379042,26905330:265974 -(1,23874:30379042,26905330:0,452978,115847 -r1,23914:32495867,26905330:2116825,568825,115847 -k1,23874:30379042,26905330:-2116825 -) -(1,23874:30379042,26905330:2116825,452978,115847 -k1,23874:30379042,26905330:3277 -h1,23874:32492590,26905330:0,411205,112570 -) -k1,23874:32583029,26905330:0 -) -(1,23875:6764466,27770410:25818563,513147,126483 -k1,23874:8850385,27770410:226662 -k1,23874:11532026,27770410:226662 -k1,23874:13326308,27770410:226661 -(1,23874:13326308,27770410:0,459977,115847 -r1,23914:16849980,27770410:3523672,575824,115847 -k1,23874:13326308,27770410:-3523672 -) -(1,23874:13326308,27770410:3523672,459977,115847 -k1,23874:13326308,27770410:3277 -h1,23874:16846703,27770410:0,411205,112570 -) -k1,23874:17250312,27770410:226662 -k1,23874:18549143,27770410:226662 -k1,23874:19307302,27770410:226662 -k1,23874:20600234,27770410:226661 -k1,23874:22277863,27770410:226662 -k1,23874:26040192,27770410:226662 -k1,23874:27498931,27770410:226662 -k1,23874:30004279,27770410:226661 -h1,23874:31546997,27770410:0,0,0 -k1,23874:31773659,27770410:226662 -k1,23874:32583029,27770410:0 -) -(1,23875:6764466,28635490:25818563,505283,134348 -g1,23874:8461848,28635490 -h1,23874:9657225,28635490:0,0,0 -k1,23875:32583029,28635490:22666282 -g1,23875:32583029,28635490 -) -] -g1,23875:32583029,28769838 -) -h1,23875:6630773,28769838:0,0,0 -v1,23878:6630773,29634918:0,393216,0 -(1,23879:6630773,33572262:25952256,4330560,0 -g1,23879:6630773,33572262 -g1,23879:6237557,33572262 -r1,23914:6368629,33572262:131072,4330560,0 -g1,23879:6567858,33572262 -g1,23879:6764466,33572262 -[1,23879:6764466,33572262:25818563,4330560,0 -(1,23879:6764466,29996095:25818563,754393,260573 -(1,23878:6764466,29996095:0,754393,260573 -r1,23914:7856192,29996095:1091726,1014966,260573 -k1,23878:6764466,29996095:-1091726 -) -(1,23878:6764466,29996095:1091726,754393,260573 -) -k1,23878:8127282,29996095:271090 -k1,23878:8454962,29996095:327680 -k1,23878:11260985,29996095:271090 -k1,23878:13555172,29996095:271091 -k1,23878:14357759,29996095:271090 -k1,23878:16514975,29996095:271090 -k1,23878:18638112,29996095:271090 -k1,23878:23214917,29996095:271090 -k1,23878:24677452,29996095:271090 -k1,23878:27974340,29996095:271091 -k1,23878:29639381,29996095:271090 -k1,23878:30929556,29996095:271090 -k1,23878:32583029,29996095:0 -) -(1,23879:6764466,30861175:25818563,513147,134348 -k1,23878:8841123,30861175:338642 -k1,23878:10747386,30861175:338642 -k1,23878:13848371,30861175:338642 -k1,23878:16072484,30861175:338642 -k1,23878:19075166,30861175:338643 -k1,23878:20405368,30861175:338642 -k1,23878:21810281,30861175:338642 -k1,23878:23599890,30861175:338642 -k1,23878:27647870,30861175:338642 -k1,23878:29604596,30861175:338642 -k1,23878:30890889,30861175:338642 -k1,23878:32583029,30861175:0 -) -(1,23879:6764466,31726255:25818563,513147,134348 -k1,23878:10103576,31726255:347391 -k1,23878:12018588,31726255:347391 -k1,23878:13385064,31726255:347391 -k1,23878:15038588,31726255:347391 -k1,23878:17622723,31726255:347391 -k1,23878:18629407,31726255:347392 -k1,23878:19995883,31726255:347391 -k1,23878:21925313,31726255:347391 -k1,23878:23082074,31726255:347391 -k1,23878:25453872,31726255:347391 -k1,23878:27397720,31726255:347391 -k1,23878:30274801,31726255:347391 -k1,23878:31641277,31726255:347391 -k1,23879:32583029,31726255:0 -) -(1,23879:6764466,32591335:25818563,513147,134348 -k1,23878:8928711,32591335:362660 -k1,23878:14348129,32591335:362660 -k1,23878:16068039,32591335:362659 -k1,23878:17082127,32591335:362660 -k1,23878:20476482,32591335:362660 -k1,23878:23395046,32591335:362660 -k1,23878:25951850,32591335:362659 -k1,23878:29793161,32591335:362660 -k1,23879:32583029,32591335:0 -) -(1,23879:6764466,33456415:25818563,505283,115847 -(1,23878:6764466,33456415:0,452978,115847 -r1,23914:11343274,33456415:4578808,568825,115847 -k1,23878:6764466,33456415:-4578808 -) -(1,23878:6764466,33456415:4578808,452978,115847 -k1,23878:6764466,33456415:3277 -h1,23878:11339997,33456415:0,411205,112570 -) -g1,23878:11542503,33456415 -g1,23878:12842737,33456415 -g1,23878:14551916,33456415 -g1,23878:17545600,33456415 -(1,23878:17545600,33456415:0,452978,115847 -r1,23914:21772696,33456415:4227096,568825,115847 -k1,23878:17545600,33456415:-4227096 -) -(1,23878:17545600,33456415:4227096,452978,115847 -k1,23878:17545600,33456415:3277 -h1,23878:21769419,33456415:0,411205,112570 -) -k1,23879:32583029,33456415:10757905 -g1,23879:32583029,33456415 -) -] -g1,23879:32583029,33572262 -) -h1,23879:6630773,33572262:0,0,0 -(1,23882:6630773,34437342:25952256,513147,126483 -h1,23881:6630773,34437342:983040,0,0 -k1,23881:9684632,34437342:196489 -k1,23881:12906917,34437342:196488 -k1,23881:15099633,34437342:196489 -k1,23881:15947550,34437342:196489 -k1,23881:17163123,34437342:196488 -k1,23881:19779857,34437342:196489 -k1,23881:20995430,34437342:196488 -k1,23881:25542854,34437342:196489 -k1,23881:26398635,34437342:196489 -k1,23881:27614208,34437342:196488 -k1,23881:30697558,34437342:196489 -k1,23881:32583029,34437342:0 -) -(1,23882:6630773,35302422:25952256,513147,134348 -k1,23881:7315156,35302422:152886 -k1,23881:10677340,35302422:152886 -k1,23881:12528264,35302422:152886 -k1,23881:14377877,35302422:152886 -k1,23881:15522323,35302422:152886 -k1,23881:18240288,35302422:152886 -k1,23881:19960795,35302422:152886 -k1,23881:21132766,35302422:152886 -k1,23881:22268692,35302422:152886 -k1,23881:25344484,35302422:152886 -k1,23881:26180255,35302422:152886 -k1,23881:27799837,35302422:152886 -k1,23881:29328324,35302422:152886 -k1,23881:31048831,35302422:152886 -k1,23881:32583029,35302422:0 -) -(1,23882:6630773,36167502:25952256,513147,126483 -g1,23881:8236405,36167502 -g1,23881:9454719,36167502 -g1,23881:10726117,36167502 -g1,23881:11584638,36167502 -g1,23881:12802952,36167502 -k1,23882:32583028,36167502:18744608 -g1,23882:32583028,36167502 -) -v1,23884:6630773,36852357:0,393216,0 -(1,23895:6630773,40652049:25952256,4192908,196608 -g1,23895:6630773,40652049 -g1,23895:6630773,40652049 -g1,23895:6434165,40652049 -(1,23895:6434165,40652049:0,4192908,196608 -r1,23914:32779637,40652049:26345472,4389516,196608 -k1,23895:6434165,40652049:-26345472 -) -(1,23895:6434165,40652049:26345472,4192908,196608 -[1,23895:6630773,40652049:25952256,3996300,0 -(1,23886:6630773,37086794:25952256,431045,112852 -(1,23885:6630773,37086794:0,0,0 -g1,23885:6630773,37086794 -g1,23885:6630773,37086794 -g1,23885:6303093,37086794 -(1,23885:6303093,37086794:0,0,0 -) -g1,23885:6630773,37086794 -) -k1,23886:6630773,37086794:0 -g1,23886:11278128,37086794 -g1,23886:11942036,37086794 -g1,23886:22564562,37086794 -g1,23886:27543871,37086794 -g1,23886:28207779,37086794 -h1,23886:30199503,37086794:0,0,0 -k1,23886:32583029,37086794:2383526 -g1,23886:32583029,37086794 -) -(1,23894:6630773,37902721:25952256,424439,6605 -(1,23888:6630773,37902721:0,0,0 -g1,23888:6630773,37902721 -g1,23888:6630773,37902721 -g1,23888:6303093,37902721 -(1,23888:6303093,37902721:0,0,0 -) -g1,23888:6630773,37902721 -) -g1,23894:7626635,37902721 -g1,23894:8290543,37902721 -g1,23894:8954451,37902721 -g1,23894:11610083,37902721 -g1,23894:12273991,37902721 -g1,23894:12937899,37902721 -h1,23894:13269853,37902721:0,0,0 -k1,23894:32583029,37902721:19313176 -g1,23894:32583029,37902721 -) -(1,23894:6630773,38587576:25952256,424439,9908 -h1,23894:6630773,38587576:0,0,0 -g1,23894:7626635,38587576 -g1,23894:7958589,38587576 -g1,23894:8290543,38587576 -g1,23894:8622497,38587576 -g1,23894:10282267,38587576 -g1,23894:10614221,38587576 -g1,23894:12273991,38587576 -g1,23894:12605945,38587576 -g1,23894:14265715,38587576 -h1,23894:15593531,38587576:0,0,0 -k1,23894:32583029,38587576:16989498 -g1,23894:32583029,38587576 -) -(1,23894:6630773,39272431:25952256,424439,6605 -h1,23894:6630773,39272431:0,0,0 -g1,23894:7626635,39272431 -g1,23894:7958589,39272431 -g1,23894:8290543,39272431 -g1,23894:10282267,39272431 -g1,23894:12273991,39272431 -g1,23894:14265715,39272431 -k1,23894:14265715,39272431:0 -h1,23894:15925485,39272431:0,0,0 -k1,23894:32583029,39272431:16657544 -g1,23894:32583029,39272431 -) -(1,23894:6630773,39957286:25952256,407923,9908 -h1,23894:6630773,39957286:0,0,0 -g1,23894:7626635,39957286 -g1,23894:8290543,39957286 -g1,23894:8622497,39957286 -g1,23894:8954451,39957286 -g1,23894:9618359,39957286 -g1,23894:9950313,39957286 -g1,23894:10282267,39957286 -g1,23894:10614221,39957286 -g1,23894:12273991,39957286 -g1,23894:12605945,39957286 -g1,23894:12937899,39957286 -g1,23894:14265715,39957286 -h1,23894:15261577,39957286:0,0,0 -k1,23894:32583029,39957286:17321452 -g1,23894:32583029,39957286 -) -(1,23894:6630773,40642141:25952256,407923,9908 -h1,23894:6630773,40642141:0,0,0 -g1,23894:7626635,40642141 -g1,23894:8290543,40642141 -g1,23894:8622497,40642141 -g1,23894:10282267,40642141 -g1,23894:10614221,40642141 -g1,23894:12273991,40642141 -g1,23894:12605945,40642141 -g1,23894:12937899,40642141 -g1,23894:13269853,40642141 -g1,23894:14265715,40642141 -g1,23894:14929623,40642141 -h1,23894:15261577,40642141:0,0,0 -k1,23894:32583029,40642141:17321452 -g1,23894:32583029,40642141 -) -] -) -g1,23895:32583029,40652049 -g1,23895:6630773,40652049 -g1,23895:6630773,40652049 -g1,23895:32583029,40652049 -g1,23895:32583029,40652049 -) -h1,23895:6630773,40848657:0,0,0 -v1,23899:6630773,41533512:0,393216,0 -(1,23910:6630773,45333204:25952256,4192908,196608 -g1,23910:6630773,45333204 -g1,23910:6630773,45333204 -g1,23910:6434165,45333204 -(1,23910:6434165,45333204:0,4192908,196608 -r1,23914:32779637,45333204:26345472,4389516,196608 -k1,23910:6434165,45333204:-26345472 -) -(1,23910:6434165,45333204:26345472,4192908,196608 -[1,23910:6630773,45333204:25952256,3996300,0 -(1,23901:6630773,41767949:25952256,431045,112852 -(1,23900:6630773,41767949:0,0,0 -g1,23900:6630773,41767949 -g1,23900:6630773,41767949 -g1,23900:6303093,41767949 -(1,23900:6303093,41767949:0,0,0 -) -g1,23900:6630773,41767949 -) -k1,23901:6630773,41767949:0 -g1,23901:11278128,41767949 -g1,23901:11942036,41767949 -g1,23901:23892377,41767949 -g1,23901:28871686,41767949 -g1,23901:29535594,41767949 -h1,23901:31527318,41767949:0,0,0 -k1,23901:32583029,41767949:1055711 -g1,23901:32583029,41767949 -) -(1,23909:6630773,42583876:25952256,424439,6605 -(1,23903:6630773,42583876:0,0,0 -g1,23903:6630773,42583876 -g1,23903:6630773,42583876 -g1,23903:6303093,42583876 -(1,23903:6303093,42583876:0,0,0 -) -g1,23903:6630773,42583876 -) -g1,23909:7626635,42583876 -g1,23909:8290543,42583876 -g1,23909:8954451,42583876 -g1,23909:11610083,42583876 -g1,23909:12273991,42583876 -g1,23909:12937899,42583876 -h1,23909:13269853,42583876:0,0,0 -k1,23909:32583029,42583876:19313176 -g1,23909:32583029,42583876 -) -(1,23909:6630773,43268731:25952256,424439,9908 -h1,23909:6630773,43268731:0,0,0 -g1,23909:7626635,43268731 -g1,23909:7958589,43268731 -g1,23909:8290543,43268731 -g1,23909:8622497,43268731 -g1,23909:10282267,43268731 -g1,23909:10614221,43268731 -g1,23909:12273991,43268731 -g1,23909:12605945,43268731 -g1,23909:14265715,43268731 -h1,23909:15593531,43268731:0,0,0 -k1,23909:32583029,43268731:16989498 -g1,23909:32583029,43268731 -) -(1,23909:6630773,43953586:25952256,424439,6605 -h1,23909:6630773,43953586:0,0,0 -g1,23909:7626635,43953586 -g1,23909:7958589,43953586 -g1,23909:8290543,43953586 -g1,23909:10282267,43953586 -g1,23909:12273991,43953586 -g1,23909:14265715,43953586 -k1,23909:14265715,43953586:0 -h1,23909:15925485,43953586:0,0,0 -k1,23909:32583029,43953586:16657544 -g1,23909:32583029,43953586 -) -(1,23909:6630773,44638441:25952256,407923,9908 -h1,23909:6630773,44638441:0,0,0 -g1,23909:7626635,44638441 -g1,23909:8290543,44638441 -g1,23909:8622497,44638441 -g1,23909:8954451,44638441 -g1,23909:9618359,44638441 -g1,23909:9950313,44638441 -g1,23909:10282267,44638441 -g1,23909:10614221,44638441 -g1,23909:12273991,44638441 -g1,23909:12605945,44638441 -g1,23909:12937899,44638441 -g1,23909:14265715,44638441 -h1,23909:15261577,44638441:0,0,0 -k1,23909:32583029,44638441:17321452 -g1,23909:32583029,44638441 -) -(1,23909:6630773,45323296:25952256,407923,9908 -h1,23909:6630773,45323296:0,0,0 -g1,23909:7626635,45323296 -g1,23909:8290543,45323296 -g1,23909:8622497,45323296 -g1,23909:10282267,45323296 -g1,23909:10614221,45323296 -g1,23909:12273991,45323296 -g1,23909:12605945,45323296 -g1,23909:12937899,45323296 -g1,23909:13269853,45323296 -g1,23909:14265715,45323296 -g1,23909:14929623,45323296 -h1,23909:15261577,45323296:0,0,0 -k1,23909:32583029,45323296:17321452 -g1,23909:32583029,45323296 -) -] -) -g1,23910:32583029,45333204 -g1,23910:6630773,45333204 -g1,23910:6630773,45333204 -g1,23910:32583029,45333204 -g1,23910:32583029,45333204 -) -h1,23910:6630773,45529812:0,0,0 -] -(1,23914:32583029,45706769:0,0,0 -g1,23914:32583029,45706769 -) -) -] -(1,23914:6630773,47279633:25952256,0,0 -h1,23914:6630773,47279633:25952256,0,0 -) -] -(1,23914:4262630,4025873:0,0,0 -[1,23914:-473656,4025873:0,0,0 -(1,23914:-473656,-710413:0,0,0 -(1,23914:-473656,-710413:0,0,0 -g1,23914:-473656,-710413 -) -g1,23914:-473656,-710413 -) -] -) -] -!29983 -}410 -Input:4486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!748 -{411 -[1,23998:4262630,47279633:28320399,43253760,0 -(1,23998:4262630,4025873:0,0,0 -[1,23998:-473656,4025873:0,0,0 -(1,23998:-473656,-710413:0,0,0 -(1,23998:-473656,-644877:0,0,0 -k1,23998:-473656,-644877:-65536 +[1,23908:3078558,4812305:0,0,0 +(1,23908:3078558,49800853:0,16384,2228224 +g1,23908:29030814,49800853 +g1,23908:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23908:36151628,51504789:16384,1179648,0 ) -(1,23998:-473656,4736287:0,0,0 -k1,23998:-473656,4736287:5209943 -) -g1,23998:-473656,-710413 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -[1,23998:6630773,47279633:25952256,43253760,0 -[1,23998:6630773,4812305:25952256,786432,0 -(1,23998:6630773,4812305:25952256,505283,134348 -(1,23998:6630773,4812305:25952256,505283,134348 -g1,23998:3078558,4812305 -[1,23998:3078558,4812305:0,0,0 -(1,23998:3078558,2439708:0,1703936,0 -k1,23998:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,23998:2537886,2439708:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23908:37855564,49800853:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,23998:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 -) -] +k1,23908:3078556,49800853:-34777008 ) +] +g1,23908:6630773,4812305 +g1,23908:6630773,4812305 +g1,23908:9946239,4812305 +g1,23908:11513204,4812305 +k1,23908:31387652,4812305:19874448 +) +) +] +[1,23908:6630773,45706769:25952256,40108032,0 +(1,23908:6630773,45706769:25952256,40108032,0 +(1,23908:6630773,45706769:0,0,0 +g1,23908:6630773,45706769 +) +[1,23908:6630773,45706769:25952256,40108032,0 +v1,23858:6630773,6254097:0,393216,0 +(1,23858:6630773,6475320:25952256,614439,196608 +g1,23858:6630773,6475320 +g1,23858:6630773,6475320 +g1,23858:6434165,6475320 +(1,23858:6434165,6475320:0,614439,196608 +r1,23908:32779637,6475320:26345472,811047,196608 +k1,23858:6434165,6475320:-26345472 +) +(1,23858:6434165,6475320:26345472,614439,196608 +[1,23858:6630773,6475320:25952256,417831,0 +(1,23857:6630773,6465412:25952256,407923,9908 +h1,23857:6630773,6465412:0,0,0 +h1,23857:8622497,6465412:0,0,0 +k1,23857:32583029,6465412:23960532 +g1,23857:32583029,6465412 +) +] +) +g1,23858:32583029,6475320 +g1,23858:6630773,6475320 +g1,23858:6630773,6475320 +g1,23858:32583029,6475320 +g1,23858:32583029,6475320 +) +h1,23858:6630773,6671928:0,0,0 +(1,23862:6630773,8788746:25952256,555811,12975 +(1,23862:6630773,8788746:2899444,534184,12975 +g1,23862:6630773,8788746 +g1,23862:9530217,8788746 +) +k1,23862:32583029,8788746:20691878 +g1,23862:32583029,8788746 +) +(1,23868:6630773,10047042:25952256,513147,134348 +k1,23867:9360650,10047042:194944 +k1,23867:11578691,10047042:194945 +k1,23867:12305132,10047042:194944 +k1,23867:13821938,10047042:194945 +k1,23867:14676174,10047042:194944 +k1,23867:15890203,10047042:194944 +k1,23867:19293135,10047042:194945 +k1,23867:21212331,10047042:194944 +k1,23867:21877168,10047042:194944 +k1,23867:24363252,10047042:194945 +k1,23867:27583993,10047042:194944 +k1,23867:29063444,10047042:194945 +k1,23867:30733603,10047042:194944 +k1,23868:32583029,10047042:0 +) +(1,23868:6630773,10912122:25952256,513147,134348 +k1,23867:7826586,10912122:176728 +k1,23867:10268895,10912122:176729 +k1,23867:13620187,10912122:176728 +k1,23867:14988361,10912122:176729 +k1,23867:16449595,10912122:176728 +k1,23867:17617884,10912122:176729 +k1,23867:20651326,10912122:176728 +k1,23867:21479483,10912122:176729 +k1,23867:22403977,10912122:176728 +k1,23867:24424234,10912122:176729 +k1,23867:26487088,10912122:176728 +k1,23867:29426160,10912122:176729 +k1,23867:32583029,10912122:0 +) +(1,23868:6630773,11777202:25952256,513147,134348 +k1,23867:8248747,11777202:175527 +k1,23867:10168188,11777202:175528 +k1,23867:12277027,11777202:175527 +k1,23867:13103982,11777202:175527 +k1,23867:13868023,11777202:175528 +k1,23867:15240237,11777202:175527 +k1,23867:18441561,11777202:175527 +k1,23867:20184710,11777202:175528 +k1,23867:22940389,11777202:175527 +k1,23867:25139012,11777202:175527 +k1,23867:26418822,11777202:175528 +k1,23867:30042198,11777202:175527 +k1,23867:32583029,11777202:0 +) +(1,23868:6630773,12642282:25952256,513147,134348 +k1,23867:9030399,12642282:135357 +k1,23867:10674395,12642282:135357 +k1,23867:12518276,12642282:135357 +k1,23867:13845078,12642282:135357 +k1,23867:15826584,12642282:135357 +k1,23867:17428637,12642282:135357 +k1,23867:18379261,12642282:135356 +k1,23867:19717859,12642282:135357 +k1,23867:22348827,12642282:135357 +k1,23867:23680871,12642282:135357 +k1,23867:25839324,12642282:135357 +k1,23867:29000478,12642282:135357 +k1,23867:30932832,12642282:135357 +k1,23867:32583029,12642282:0 +) +(1,23868:6630773,13507362:25952256,513147,126483 +k1,23867:10111765,13507362:185186 +k1,23867:10956243,13507362:185186 +k1,23867:12160514,13507362:185186 +k1,23867:13571879,13507362:185186 +k1,23867:14740105,13507362:185186 +k1,23867:17279344,13507362:185186 +k1,23867:18080568,13507362:185186 +k1,23867:19867454,13507362:185186 +k1,23867:21750022,13507362:185186 +k1,23867:23315396,13507362:185186 +k1,23867:26201976,13507362:185186 +k1,23867:28272633,13507362:185186 +k1,23867:28989316,13507362:185186 +k1,23867:30528476,13507362:185186 +k1,23867:32583029,13507362:0 +) +(1,23868:6630773,14372442:25952256,513147,134348 +k1,23867:7906938,14372442:203996 +k1,23867:11996563,14372442:203995 +k1,23867:13580747,14372442:203996 +k1,23867:14985362,14372442:203995 +k1,23867:18510723,14372442:203996 +k1,23867:21501964,14372442:203995 +k1,23867:22810242,14372442:203996 +k1,23867:23762003,14372442:203995 +k1,23867:27446616,14372442:203996 +k1,23867:28412139,14372442:203995 +k1,23867:31043589,14372442:203996 +k1,23868:32583029,14372442:0 +) +(1,23868:6630773,15237522:25952256,513147,126483 +k1,23867:8850376,15237522:250246 +k1,23867:10292068,15237522:250247 +k1,23867:11745555,15237522:250246 +k1,23867:12527299,15237522:250247 +k1,23867:17332297,15237522:250246 +k1,23867:18530195,15237522:250247 +k1,23867:20941818,15237522:250246 +k1,23867:22476571,15237522:250247 +k1,23867:23859279,15237522:250246 +k1,23867:24857292,15237522:250247 +k1,23867:27256464,15237522:250246 +k1,23867:28158139,15237522:250247 +k1,23867:29820686,15237522:250246 +k1,23867:32583029,15237522:0 +) +(1,23868:6630773,16102602:25952256,513147,134348 +k1,23867:8139194,16102602:195079 +k1,23867:8950310,16102602:195078 +k1,23867:10164474,16102602:195079 +k1,23867:12520275,16102602:195079 +k1,23867:15319755,16102602:195079 +k1,23867:18724131,16102602:195078 +k1,23867:22157999,16102602:195079 +k1,23867:22884575,16102602:195079 +k1,23867:24364160,16102602:195079 +k1,23867:26255965,16102602:195078 +k1,23867:29476841,16102602:195079 +k1,23867:31084221,16102602:195079 +k1,23868:32583029,16102602:0 +) +(1,23868:6630773,16967682:25952256,513147,134348 +k1,23867:8463013,16967682:250201 +k1,23867:10909325,16967682:250201 +k1,23867:14364891,16967682:250200 +k1,23867:15301254,16967682:250201 +k1,23867:17262600,16967682:250201 +k1,23867:18195686,16967682:250201 +k1,23867:20201596,16967682:250200 +k1,23867:22866143,16967682:250201 +k1,23867:24383810,16967682:250201 +k1,23867:27347202,16967682:250201 +k1,23867:28256694,16967682:250200 +k1,23867:30062064,16967682:250201 +(1,23867:30062064,16967682:0,414482,115847 +r1,23908:32530601,16967682:2468537,530329,115847 +k1,23867:30062064,16967682:-2468537 +) +(1,23867:30062064,16967682:2468537,414482,115847 +k1,23867:30062064,16967682:3277 +h1,23867:32527324,16967682:0,411205,112570 +) +k1,23867:32583029,16967682:0 +) +(1,23868:6630773,17832762:25952256,513147,126483 +k1,23867:7673533,17832762:169165 +(1,23867:7673533,17832762:0,452978,115847 +r1,23908:9438646,17832762:1765113,568825,115847 +k1,23867:7673533,17832762:-1765113 +) +(1,23867:7673533,17832762:1765113,452978,115847 +k1,23867:7673533,17832762:3277 +h1,23867:9435369,17832762:0,411205,112570 +) +k1,23867:9607811,17832762:169165 +k1,23867:12802774,17832762:169166 +k1,23867:15353517,17832762:169165 +k1,23867:16138720,17832762:169165 +k1,23867:18330981,17832762:169165 +k1,23867:19975362,17832762:169166 +k1,23867:20915230,17832762:169165 +(1,23867:20915230,17832762:0,452978,115847 +r1,23908:23032055,17832762:2116825,568825,115847 +k1,23867:20915230,17832762:-2116825 +) +(1,23867:20915230,17832762:2116825,452978,115847 +k1,23867:20915230,17832762:3277 +h1,23867:23028778,17832762:0,411205,112570 +) +k1,23867:23201220,17832762:169165 +k1,23867:26824788,17832762:169165 +k1,23867:28879425,17832762:169166 +k1,23867:30152872,17832762:169165 +k1,23867:31069803,17832762:169165 +k1,23867:32583029,17832762:0 +) +(1,23868:6630773,18697842:25952256,513147,134348 +k1,23867:7448360,18697842:166159 +k1,23867:9855195,18697842:166159 +k1,23867:11040439,18697842:166159 +k1,23867:13472178,18697842:166159 +k1,23867:16812901,18697842:166159 +k1,23867:17638352,18697842:166159 +k1,23867:21449623,18697842:166159 +k1,23867:22386485,18697842:166159 +k1,23867:25043667,18697842:166159 +k1,23867:26192866,18697842:166159 +k1,23867:27752976,18697842:166159 +k1,23867:28938220,18697842:166159 +k1,23867:30757852,18697842:166159 +k1,23867:32583029,18697842:0 +) +(1,23868:6630773,19562922:25952256,505283,134348 +g1,23867:7481430,19562922 +g1,23867:11051176,19562922 +g1,23867:12269490,19562922 +g1,23867:14627475,19562922 +g1,23867:15439466,19562922 +g1,23867:16427093,19562922 +k1,23868:32583029,19562922:14920583 +g1,23868:32583029,19562922 +) +(1,23870:6630773,20428002:25952256,513147,134348 +h1,23869:6630773,20428002:983040,0,0 +k1,23869:10797401,20428002:220705 +k1,23869:11634144,20428002:220705 +k1,23869:13058090,20428002:220705 +k1,23869:15557482,20428002:220705 +k1,23869:16646539,20428002:220705 +k1,23869:19999865,20428002:220705 +k1,23869:21239656,20428002:220706 +k1,23869:22552846,20428002:220705 +k1,23869:23432843,20428002:220705 +k1,23869:25350275,20428002:220705 +k1,23869:28596777,20428002:220705 +k1,23869:29579010,20428002:220705 +k1,23869:32227169,20428002:220705 +k1,23869:32583029,20428002:0 +) +(1,23870:6630773,21293082:25952256,513147,134348 +k1,23869:7842404,21293082:228591 +k1,23869:9809011,21293082:228592 +k1,23869:10723764,21293082:228591 +k1,23869:11723058,21293082:228591 +k1,23869:15197648,21293082:228592 +k1,23869:16112401,21293082:228591 +k1,23869:16872490,21293082:228592 +k1,23869:18120166,21293082:228591 +k1,23869:19715838,21293082:228591 +k1,23869:21338381,21293082:228592 +k1,23869:21981786,21293082:228562 +k1,23869:24143689,21293082:228591 +k1,23869:27571748,21293082:228591 +k1,23869:29585541,21293082:228592 +k1,23869:31005577,21293082:228591 +k1,23869:32583029,21293082:0 +) +(1,23870:6630773,22158162:25952256,513147,134348 +k1,23869:7850507,22158162:236694 +k1,23869:11699545,22158162:236694 +k1,23869:12927799,22158162:236694 +k1,23869:14450309,22158162:236694 +k1,23869:17503085,22158162:236694 +k1,23869:18971857,22158162:236695 +k1,23869:21487238,22158162:236694 +h1,23869:22856285,22158162:0,0,0 +k1,23869:23092979,22158162:236694 +k1,23869:24139043,22158162:236694 +k1,23869:25873890,22158162:236694 +h1,23869:27069267,22158162:0,0,0 +k1,23869:27686725,22158162:236694 +k1,23869:32117068,22158162:236694 +k1,23869:32583029,22158162:0 +) +(1,23870:6630773,23023242:25952256,513147,134348 +k1,23869:7807285,23023242:157427 +k1,23869:8947752,23023242:157427 +k1,23869:10843194,23023242:157427 +k1,23869:12513846,23023242:157426 +k1,23869:13287311,23023242:157427 +k1,23869:13800598,23023242:157427 +k1,23869:14944997,23023242:157427 +k1,23869:19095533,23023242:157427 +k1,23869:19939122,23023242:157427 +k1,23869:23271113,23023242:157427 +k1,23869:23784399,23023242:157426 +k1,23869:27775027,23023242:157427 +k1,23869:28915494,23023242:157427 +k1,23869:31426974,23023242:157427 +k1,23870:32583029,23023242:0 +) +(1,23870:6630773,23888322:25952256,513147,126483 +(1,23869:6630773,23888322:0,414482,122846 +r1,23908:7692462,23888322:1061689,537328,122846 +k1,23869:6630773,23888322:-1061689 +) +(1,23869:6630773,23888322:1061689,414482,122846 +k1,23869:6630773,23888322:3277 +h1,23869:7689185,23888322:0,411205,112570 +) +g1,23869:7891691,23888322 +g1,23869:8773805,23888322 +(1,23869:8773805,23888322:0,452978,115847 +r1,23908:10187206,23888322:1413401,568825,115847 +k1,23869:8773805,23888322:-1413401 +) +(1,23869:8773805,23888322:1413401,452978,115847 +k1,23869:8773805,23888322:3277 +h1,23869:10183929,23888322:0,411205,112570 +) +g1,23869:10560105,23888322 +g1,23869:11778419,23888322 +g1,23869:12960688,23888322 +g1,23869:14292379,23888322 +g1,23869:15239374,23888322 +g1,23869:20101490,23888322 +g1,23869:21110089,23888322 +g1,23869:22328403,23888322 +k1,23870:32583029,23888322:9406591 +g1,23870:32583029,23888322 +) +v1,23872:6630773,24753402:0,393216,0 +(1,23873:6630773,31304487:25952256,6944301,0 +g1,23873:6630773,31304487 +g1,23873:6237557,31304487 +r1,23908:6368629,31304487:131072,6944301,0 +g1,23873:6567858,31304487 +g1,23873:6764466,31304487 +[1,23873:6764466,31304487:25818563,6944301,0 +(1,23873:6764466,25114579:25818563,754393,260573 +(1,23872:6764466,25114579:0,754393,260573 +r1,23908:7856192,25114579:1091726,1014966,260573 +k1,23872:6764466,25114579:-1091726 +) +(1,23872:6764466,25114579:1091726,754393,260573 +) +k1,23872:8000743,25114579:144551 +k1,23872:8328423,25114579:327680 +k1,23872:11593143,25114579:144551 +k1,23872:15642984,25114579:144551 +k1,23872:16438963,25114579:144551 +k1,23872:18516826,25114579:144551 +k1,23872:19076166,25114579:144497 +k1,23872:22246514,25114579:144551 +k1,23872:25481088,25114579:144551 +k1,23872:26241677,25114579:144551 +k1,23872:27405313,25114579:144551 +k1,23872:30304342,25114579:144551 +k1,23872:32583029,25114579:0 +) +(1,23873:6764466,25979659:25818563,513147,134348 +k1,23872:8480706,25979659:241025 +k1,23872:10790048,25979659:241026 +k1,23872:13366776,25979659:241025 +k1,23872:14369329,25979659:241025 +k1,23872:17551610,25979659:241025 +k1,23872:18811721,25979659:241026 +k1,23872:20124915,25979659:241025 +k1,23872:21759891,25979659:241025 +k1,23872:22771619,25979659:241025 +k1,23872:26766547,25979659:241026 +k1,23872:28250135,25979659:241025 +(1,23872:28250135,25979659:0,452978,115847 +r1,23908:31773807,25979659:3523672,568825,115847 +k1,23872:28250135,25979659:-3523672 +) +(1,23872:28250135,25979659:3523672,452978,115847 +k1,23872:28250135,25979659:3277 +h1,23872:31770530,25979659:0,411205,112570 +) +k1,23872:32014832,25979659:241025 +$1,23872:32014832,25979659 +$1,23872:32583029,25979659 +k1,23873:32583029,25979659:0 +) +(1,23873:6764466,26844739:25818563,513147,126483 +(1,23872:6764466,26844739:0,452978,115847 +r1,23908:10288138,26844739:3523672,568825,115847 +k1,23872:6764466,26844739:-3523672 +) +(1,23872:6764466,26844739:3523672,452978,115847 +k1,23872:6764466,26844739:3277 +h1,23872:10284861,26844739:0,411205,112570 +) +k1,23872:10649255,26844739:187447 +k1,23872:12033389,26844739:187447 +k1,23872:15242046,26844739:187447 +k1,23872:17295959,26844739:187448 +k1,23872:18134834,26844739:187447 +k1,23872:19341366,26844739:187447 +k1,23872:21709196,26844739:187447 +k1,23872:22555935,26844739:187447 +k1,23872:23762467,26844739:187447 +k1,23872:25263256,26844739:187447 +k1,23872:27036675,26844739:187448 +k1,23872:28296291,26844739:187447 +k1,23872:29550009,26844739:187447 +k1,23872:30756541,26844739:187447 +k1,23872:32583029,26844739:0 +) +(1,23873:6764466,27709819:25818563,513147,126483 +k1,23872:9251162,27709819:244709 +k1,23872:10178756,27709819:244709 +k1,23872:11989120,27709819:244709 +k1,23872:12893121,27709819:244709 +k1,23872:14646470,27709819:244710 +k1,23872:17019788,27709819:244709 +k1,23872:21049201,27709819:244709 +k1,23872:22335932,27709819:244709 +k1,23872:25415728,27709819:244709 +k1,23872:28355933,27709819:244709 +(1,23872:28355933,27709819:0,452978,115847 +r1,23908:32583029,27709819:4227096,568825,115847 +k1,23872:28355933,27709819:-4227096 +) +(1,23872:28355933,27709819:4227096,452978,115847 +k1,23872:28355933,27709819:3277 +h1,23872:32579752,27709819:0,411205,112570 +) +k1,23872:32583029,27709819:0 +) +(1,23873:6764466,28574899:25818563,513147,134348 +k1,23872:8179714,28574899:314243 +k1,23872:8849817,28574899:314243 +k1,23872:11512869,28574899:314242 +k1,23872:14589455,28574899:314243 +k1,23872:18078262,28574899:314243 +k1,23872:19834952,28574899:314243 +(1,23872:19834952,28574899:0,452978,115847 +r1,23908:24062048,28574899:4227096,568825,115847 +k1,23872:19834952,28574899:-4227096 +) +(1,23872:19834952,28574899:4227096,452978,115847 +k1,23872:19834952,28574899:3277 +h1,23872:24058771,28574899:0,411205,112570 +) +k1,23872:24549961,28574899:314243 +k1,23872:27695358,28574899:314242 +k1,23872:29389789,28574899:314243 +k1,23872:31170728,28574899:314243 +k1,23872:32583029,28574899:0 +) +(1,23873:6764466,29439979:25818563,513147,126483 +k1,23872:8786688,29439979:288139 +k1,23872:12198273,29439979:288139 +k1,23872:13247940,29439979:288139 +k1,23872:17238863,29439979:288139 +k1,23872:18887529,29439979:288139 +k1,23872:21243984,29439979:288139 +k1,23872:22523683,29439979:288139 +k1,23872:23878093,29439979:288139 +k1,23872:25100775,29439979:288139 +k1,23872:26004952,29439979:288139 +k1,23872:27312176,29439979:288139 +k1,23872:30379042,29439979:288139 +(1,23872:30379042,29439979:0,452978,115847 +r1,23908:32495867,29439979:2116825,568825,115847 +k1,23872:30379042,29439979:-2116825 +) +(1,23872:30379042,29439979:2116825,452978,115847 +k1,23872:30379042,29439979:3277 +h1,23872:32492590,29439979:0,411205,112570 +) +k1,23872:32583029,29439979:0 +) +(1,23873:6764466,30305059:25818563,513147,126483 +k1,23872:8850385,30305059:226662 +k1,23872:11532026,30305059:226662 +k1,23872:13326308,30305059:226661 +(1,23872:13326308,30305059:0,459977,115847 +r1,23908:16849980,30305059:3523672,575824,115847 +k1,23872:13326308,30305059:-3523672 +) +(1,23872:13326308,30305059:3523672,459977,115847 +k1,23872:13326308,30305059:3277 +h1,23872:16846703,30305059:0,411205,112570 +) +k1,23872:17250312,30305059:226662 +k1,23872:18549143,30305059:226662 +k1,23872:19307302,30305059:226662 +k1,23872:20600234,30305059:226661 +k1,23872:22277863,30305059:226662 +k1,23872:26040192,30305059:226662 +k1,23872:27498931,30305059:226662 +k1,23872:30004279,30305059:226661 +h1,23872:31546997,30305059:0,0,0 +k1,23872:31773659,30305059:226662 +k1,23872:32583029,30305059:0 +) +(1,23873:6764466,31170139:25818563,505283,134348 +g1,23872:8461848,31170139 +h1,23872:9657225,31170139:0,0,0 +k1,23873:32583029,31170139:22666282 +g1,23873:32583029,31170139 +) +] +g1,23873:32583029,31304487 +) +h1,23873:6630773,31304487:0,0,0 +v1,23876:6630773,32169567:0,393216,0 +(1,23877:6630773,36106911:25952256,4330560,0 +g1,23877:6630773,36106911 +g1,23877:6237557,36106911 +r1,23908:6368629,36106911:131072,4330560,0 +g1,23877:6567858,36106911 +g1,23877:6764466,36106911 +[1,23877:6764466,36106911:25818563,4330560,0 +(1,23877:6764466,32530744:25818563,754393,260573 +(1,23876:6764466,32530744:0,754393,260573 +r1,23908:7856192,32530744:1091726,1014966,260573 +k1,23876:6764466,32530744:-1091726 +) +(1,23876:6764466,32530744:1091726,754393,260573 +) +k1,23876:8127282,32530744:271090 +k1,23876:8454962,32530744:327680 +k1,23876:11260985,32530744:271090 +k1,23876:13555172,32530744:271091 +k1,23876:14357759,32530744:271090 +k1,23876:16514975,32530744:271090 +k1,23876:18638112,32530744:271090 +k1,23876:23214917,32530744:271090 +k1,23876:24677452,32530744:271090 +k1,23876:27974340,32530744:271091 +k1,23876:29639381,32530744:271090 +k1,23876:30929556,32530744:271090 +k1,23876:32583029,32530744:0 +) +(1,23877:6764466,33395824:25818563,513147,134348 +k1,23876:8841123,33395824:338642 +k1,23876:10747386,33395824:338642 +k1,23876:13848371,33395824:338642 +k1,23876:16072484,33395824:338642 +k1,23876:19075166,33395824:338643 +k1,23876:20405368,33395824:338642 +k1,23876:21810281,33395824:338642 +k1,23876:23599890,33395824:338642 +k1,23876:27647870,33395824:338642 +k1,23876:29604596,33395824:338642 +k1,23876:30890889,33395824:338642 +k1,23876:32583029,33395824:0 +) +(1,23877:6764466,34260904:25818563,513147,134348 +k1,23876:10103576,34260904:347391 +k1,23876:12018588,34260904:347391 +k1,23876:13385064,34260904:347391 +k1,23876:15038588,34260904:347391 +k1,23876:17622723,34260904:347391 +k1,23876:18629407,34260904:347392 +k1,23876:19995883,34260904:347391 +k1,23876:21925313,34260904:347391 +k1,23876:23082074,34260904:347391 +k1,23876:25453872,34260904:347391 +k1,23876:27397720,34260904:347391 +k1,23876:30274801,34260904:347391 +k1,23876:31641277,34260904:347391 +k1,23877:32583029,34260904:0 +) +(1,23877:6764466,35125984:25818563,513147,134348 +k1,23876:8928711,35125984:362660 +k1,23876:14348129,35125984:362660 +k1,23876:16068039,35125984:362659 +k1,23876:17082127,35125984:362660 +k1,23876:20476482,35125984:362660 +k1,23876:23395046,35125984:362660 +k1,23876:25951850,35125984:362659 +k1,23876:29793161,35125984:362660 +k1,23877:32583029,35125984:0 +) +(1,23877:6764466,35991064:25818563,505283,115847 +(1,23876:6764466,35991064:0,452978,115847 +r1,23908:11343274,35991064:4578808,568825,115847 +k1,23876:6764466,35991064:-4578808 +) +(1,23876:6764466,35991064:4578808,452978,115847 +k1,23876:6764466,35991064:3277 +h1,23876:11339997,35991064:0,411205,112570 +) +g1,23876:11542503,35991064 +g1,23876:12842737,35991064 +g1,23876:14551916,35991064 +g1,23876:17545600,35991064 +(1,23876:17545600,35991064:0,452978,115847 +r1,23908:21772696,35991064:4227096,568825,115847 +k1,23876:17545600,35991064:-4227096 +) +(1,23876:17545600,35991064:4227096,452978,115847 +k1,23876:17545600,35991064:3277 +h1,23876:21769419,35991064:0,411205,112570 +) +k1,23877:32583029,35991064:10757905 +g1,23877:32583029,35991064 +) +] +g1,23877:32583029,36106911 +) +h1,23877:6630773,36106911:0,0,0 +(1,23880:6630773,36971991:25952256,513147,126483 +h1,23879:6630773,36971991:983040,0,0 +k1,23879:9684632,36971991:196489 +k1,23879:12906917,36971991:196488 +k1,23879:15099633,36971991:196489 +k1,23879:15947550,36971991:196489 +k1,23879:17163123,36971991:196488 +k1,23879:19779857,36971991:196489 +k1,23879:20995430,36971991:196488 +k1,23879:25542854,36971991:196489 +k1,23879:26398635,36971991:196489 +k1,23879:27614208,36971991:196488 +k1,23879:30697558,36971991:196489 +k1,23879:32583029,36971991:0 +) +(1,23880:6630773,37837071:25952256,513147,134348 +k1,23879:7315156,37837071:152886 +k1,23879:10677340,37837071:152886 +k1,23879:12528264,37837071:152886 +k1,23879:14377877,37837071:152886 +k1,23879:15522323,37837071:152886 +k1,23879:18240288,37837071:152886 +k1,23879:19960795,37837071:152886 +k1,23879:21132766,37837071:152886 +k1,23879:22268692,37837071:152886 +k1,23879:25344484,37837071:152886 +k1,23879:26180255,37837071:152886 +k1,23879:27799837,37837071:152886 +k1,23879:29328324,37837071:152886 +k1,23879:31048831,37837071:152886 +k1,23879:32583029,37837071:0 +) +(1,23880:6630773,38702151:25952256,513147,126483 +g1,23879:8236405,38702151 +g1,23879:9454719,38702151 +g1,23879:10726117,38702151 +g1,23879:11584638,38702151 +g1,23879:12802952,38702151 +k1,23880:32583028,38702151:18744608 +g1,23880:32583028,38702151 +) +v1,23882:6630773,39387006:0,393216,0 +(1,23893:6630773,43186698:25952256,4192908,196608 +g1,23893:6630773,43186698 +g1,23893:6630773,43186698 +g1,23893:6434165,43186698 +(1,23893:6434165,43186698:0,4192908,196608 +r1,23908:32779637,43186698:26345472,4389516,196608 +k1,23893:6434165,43186698:-26345472 +) +(1,23893:6434165,43186698:26345472,4192908,196608 +[1,23893:6630773,43186698:25952256,3996300,0 +(1,23884:6630773,39621443:25952256,431045,112852 +(1,23883:6630773,39621443:0,0,0 +g1,23883:6630773,39621443 +g1,23883:6630773,39621443 +g1,23883:6303093,39621443 +(1,23883:6303093,39621443:0,0,0 +) +g1,23883:6630773,39621443 +) +k1,23884:6630773,39621443:0 +g1,23884:11278128,39621443 +g1,23884:11942036,39621443 +g1,23884:22564562,39621443 +g1,23884:27543871,39621443 +g1,23884:28207779,39621443 +h1,23884:30199503,39621443:0,0,0 +k1,23884:32583029,39621443:2383526 +g1,23884:32583029,39621443 +) +(1,23892:6630773,40437370:25952256,424439,6605 +(1,23886:6630773,40437370:0,0,0 +g1,23886:6630773,40437370 +g1,23886:6630773,40437370 +g1,23886:6303093,40437370 +(1,23886:6303093,40437370:0,0,0 +) +g1,23886:6630773,40437370 +) +g1,23892:7626635,40437370 +g1,23892:8290543,40437370 +g1,23892:8954451,40437370 +g1,23892:11610083,40437370 +g1,23892:12273991,40437370 +g1,23892:12937899,40437370 +h1,23892:13269853,40437370:0,0,0 +k1,23892:32583029,40437370:19313176 +g1,23892:32583029,40437370 +) +(1,23892:6630773,41122225:25952256,424439,9908 +h1,23892:6630773,41122225:0,0,0 +g1,23892:7626635,41122225 +g1,23892:7958589,41122225 +g1,23892:8290543,41122225 +g1,23892:8622497,41122225 +g1,23892:10282267,41122225 +g1,23892:10614221,41122225 +g1,23892:12273991,41122225 +g1,23892:12605945,41122225 +g1,23892:14265715,41122225 +h1,23892:15593531,41122225:0,0,0 +k1,23892:32583029,41122225:16989498 +g1,23892:32583029,41122225 +) +(1,23892:6630773,41807080:25952256,424439,6605 +h1,23892:6630773,41807080:0,0,0 +g1,23892:7626635,41807080 +g1,23892:7958589,41807080 +g1,23892:8290543,41807080 +g1,23892:10282267,41807080 +g1,23892:12273991,41807080 +g1,23892:14265715,41807080 +k1,23892:14265715,41807080:0 +h1,23892:15925485,41807080:0,0,0 +k1,23892:32583029,41807080:16657544 +g1,23892:32583029,41807080 +) +(1,23892:6630773,42491935:25952256,407923,9908 +h1,23892:6630773,42491935:0,0,0 +g1,23892:7626635,42491935 +g1,23892:8290543,42491935 +g1,23892:8622497,42491935 +g1,23892:8954451,42491935 +g1,23892:9618359,42491935 +g1,23892:9950313,42491935 +g1,23892:10282267,42491935 +g1,23892:10614221,42491935 +g1,23892:12273991,42491935 +g1,23892:12605945,42491935 +g1,23892:12937899,42491935 +g1,23892:14265715,42491935 +h1,23892:15261577,42491935:0,0,0 +k1,23892:32583029,42491935:17321452 +g1,23892:32583029,42491935 +) +(1,23892:6630773,43176790:25952256,407923,9908 +h1,23892:6630773,43176790:0,0,0 +g1,23892:7626635,43176790 +g1,23892:8290543,43176790 +g1,23892:8622497,43176790 +g1,23892:10282267,43176790 +g1,23892:10614221,43176790 +g1,23892:12273991,43176790 +g1,23892:12605945,43176790 +g1,23892:12937899,43176790 +g1,23892:13269853,43176790 +g1,23892:14265715,43176790 +g1,23892:14929623,43176790 +h1,23892:15261577,43176790:0,0,0 +k1,23892:32583029,43176790:17321452 +g1,23892:32583029,43176790 +) +] +) +g1,23893:32583029,43186698 +g1,23893:6630773,43186698 +g1,23893:6630773,43186698 +g1,23893:32583029,43186698 +g1,23893:32583029,43186698 +) +h1,23893:6630773,43383306:0,0,0 +v1,23897:6630773,44068161:0,393216,0 +(1,23908:6630773,45125130:25952256,1450185,196608 +g1,23908:6630773,45125130 +g1,23908:6630773,45125130 +g1,23908:6434165,45125130 +(1,23908:6434165,45125130:0,1450185,196608 +r1,23908:32779637,45125130:26345472,1646793,196608 +k1,23908:6434165,45125130:-26345472 +) +(1,23908:6434165,45125130:26345472,1450185,196608 +[1,23908:6630773,45125130:25952256,1253577,0 +(1,23899:6630773,44302598:25952256,431045,112852 +(1,23898:6630773,44302598:0,0,0 +g1,23898:6630773,44302598 +g1,23898:6630773,44302598 +g1,23898:6303093,44302598 +(1,23898:6303093,44302598:0,0,0 +) +g1,23898:6630773,44302598 +) +k1,23899:6630773,44302598:0 +g1,23899:11278128,44302598 +g1,23899:11942036,44302598 +g1,23899:23892377,44302598 +g1,23899:28871686,44302598 +g1,23899:29535594,44302598 +h1,23899:31527318,44302598:0,0,0 +k1,23899:32583029,44302598:1055711 +g1,23899:32583029,44302598 +) +(1,23907:6630773,45118525:25952256,424439,6605 +(1,23901:6630773,45118525:0,0,0 +g1,23901:6630773,45118525 +g1,23901:6630773,45118525 +g1,23901:6303093,45118525 +(1,23901:6303093,45118525:0,0,0 +) +g1,23901:6630773,45118525 +) +g1,23907:7626635,45118525 +g1,23907:8290543,45118525 +g1,23907:8954451,45118525 +g1,23907:11610083,45118525 +g1,23907:12273991,45118525 +g1,23907:12937899,45118525 +h1,23907:13269853,45118525:0,0,0 +k1,23907:32583029,45118525:19313176 +g1,23907:32583029,45118525 +) +] +) +g1,23908:32583029,45125130 +g1,23908:6630773,45125130 +g1,23908:6630773,45125130 +g1,23908:32583029,45125130 +g1,23908:32583029,45125130 +) +] +(1,23908:32583029,45706769:0,0,0 +g1,23908:32583029,45706769 +) +) +] +(1,23908:6630773,47279633:25952256,0,0 +h1,23908:6630773,47279633:25952256,0,0 +) +] +(1,23908:4262630,4025873:0,0,0 +[1,23908:-473656,4025873:0,0,0 +(1,23908:-473656,-710413:0,0,0 +(1,23908:-473656,-710413:0,0,0 +g1,23908:-473656,-710413 ) +g1,23908:-473656,-710413 +) +] ) ] -[1,23998:3078558,4812305:0,0,0 -(1,23998:3078558,2439708:0,1703936,0 -g1,23998:29030814,2439708 -g1,23998:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,23998:36151628,1915420:16384,1179648,0 +!28926 +}411 +Input:4483:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4484:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4485:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4486:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4487:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4488:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4489:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4490:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4491:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4492:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4493:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 +{412 +[1,23996:4262630,47279633:28320399,43253760,0 +(1,23996:4262630,4025873:0,0,0 +[1,23996:-473656,4025873:0,0,0 +(1,23996:-473656,-710413:0,0,0 +(1,23996:-473656,-644877:0,0,0 +k1,23996:-473656,-644877:-65536 +) +(1,23996:-473656,4736287:0,0,0 +k1,23996:-473656,4736287:5209943 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +g1,23996:-473656,-710413 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,23998:37855564,2439708:1179648,16384,0 +[1,23996:6630773,47279633:25952256,43253760,0 +[1,23996:6630773,4812305:25952256,786432,0 +(1,23996:6630773,4812305:25952256,505283,134348 +(1,23996:6630773,4812305:25952256,505283,134348 +g1,23996:3078558,4812305 +[1,23996:3078558,4812305:0,0,0 +(1,23996:3078558,2439708:0,1703936,0 +k1,23996:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,23996:2537886,2439708:1179648,16384,0 ) +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,23996:3078558,1915420:16384,1179648,0 ) -k1,23998:3078556,2439708:-34777008 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] -[1,23998:3078558,4812305:0,0,0 -(1,23998:3078558,49800853:0,16384,2228224 -k1,23998:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,23998:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,23998:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 ) ] +[1,23996:3078558,4812305:0,0,0 +(1,23996:3078558,2439708:0,1703936,0 +g1,23996:29030814,2439708 +g1,23996:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,23996:36151628,1915420:16384,1179648,0 ) -) +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] -[1,23998:3078558,4812305:0,0,0 -(1,23998:3078558,49800853:0,16384,2228224 -g1,23998:29030814,49800853 -g1,23998:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,23998:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,23996:37855564,2439708:1179648,16384,0 ) -] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,23998:37855564,49800853:1179648,16384,0 +k1,23996:3078556,2439708:-34777008 ) +] +[1,23996:3078558,4812305:0,0,0 +(1,23996:3078558,49800853:0,16384,2228224 +k1,23996:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,23996:2537886,49800853:1179648,16384,0 ) -k1,23998:3078556,49800853:-34777008 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,23996:3078558,51504789:16384,1179648,0 ) -] -g1,23998:6630773,4812305 -k1,23998:21114230,4812305:13288080 -g1,23998:22736901,4812305 -g1,23998:23350318,4812305 -g1,23998:24759997,4812305 -g1,23998:28372341,4812305 -g1,23998:30105768,4812305 -) -) -] -[1,23998:6630773,45706769:25952256,40108032,0 -(1,23998:6630773,45706769:25952256,40108032,0 -(1,23998:6630773,45706769:0,0,0 -g1,23998:6630773,45706769 -) -[1,23998:6630773,45706769:25952256,40108032,0 -(1,23914:6630773,6254097:25952256,513147,134348 -h1,23913:6630773,6254097:983040,0,0 -k1,23913:10382840,6254097:234094 -k1,23913:12640031,6254097:234095 -k1,23913:13405622,6254097:234094 -k1,23913:15525843,6254097:234095 -k1,23913:17611984,6254097:234094 -k1,23913:22151793,6254097:234094 -k1,23913:23577333,6254097:234095 -k1,23913:26573770,6254097:234094 -k1,23913:28693336,6254097:234095 -k1,23913:31591469,6254097:234094 -k1,23913:32583029,6254097:0 -) -(1,23914:6630773,7119177:25952256,513147,134348 -k1,23913:8044330,7119177:347286 -k1,23913:9842583,7119177:347286 -k1,23913:13725537,7119177:347287 -k1,23913:15466774,7119177:347286 -k1,23913:17265682,7119177:347286 -k1,23913:19488608,7119177:347286 -k1,23913:22364273,7119177:347286 -k1,23913:23370851,7119177:347286 -k1,23913:24737223,7119177:347287 -k1,23913:28555296,7119177:347286 -k1,23913:30636665,7119177:347286 -k1,23913:31599989,7119177:347286 -k1,23914:32583029,7119177:0 -) -(1,23914:6630773,7984257:25952256,505283,126483 -(1,23913:6630773,7984257:0,452978,122846 -r1,23998:14726699,7984257:8095926,575824,122846 -k1,23913:6630773,7984257:-8095926 -) -(1,23913:6630773,7984257:8095926,452978,122846 -k1,23913:6630773,7984257:3277 -h1,23913:14723422,7984257:0,411205,112570 -) -k1,23913:14990868,7984257:264169 -k1,23913:15871074,7984257:264168 -k1,23913:17154328,7984257:264169 -k1,23913:18782300,7984257:264168 -k1,23913:19914821,7984257:264169 -k1,23913:22477337,7984257:264168 -k1,23913:23392934,7984257:264169 -k1,23913:24749587,7984257:264168 -(1,23913:24749587,7984257:0,452978,115847 -r1,23998:29328395,7984257:4578808,568825,115847 -k1,23913:24749587,7984257:-4578808 -) -(1,23913:24749587,7984257:4578808,452978,115847 -k1,23913:24749587,7984257:3277 -h1,23913:29325118,7984257:0,411205,112570 -) -k1,23913:29766234,7984257:264169 -k1,23913:31915873,7984257:264168 -k1,23914:32583029,7984257:0 -) -(1,23914:6630773,8849337:25952256,513147,134348 -k1,23913:8692712,8849337:173191 -k1,23913:13207664,8849337:173192 -k1,23913:14040147,8849337:173191 -k1,23913:16121092,8849337:173192 -k1,23913:19062524,8849337:173191 -k1,23913:19887144,8849337:173192 -(1,23913:19887144,8849337:0,452978,115847 -r1,23998:24114240,8849337:4227096,568825,115847 -k1,23913:19887144,8849337:-4227096 -) -(1,23913:19887144,8849337:4227096,452978,115847 -k1,23913:19887144,8849337:3277 -h1,23913:24110963,8849337:0,411205,112570 -) -k1,23913:24461101,8849337:173191 -k1,23913:26015137,8849337:173192 -k1,23913:28883824,8849337:173191 -k1,23913:30158021,8849337:173192 -k1,23913:31841162,8849337:173191 -k1,23914:32583029,8849337:0 -) -(1,23914:6630773,9714417:25952256,513147,134348 -k1,23913:9006326,9714417:216797 -k1,23913:9909285,9714417:216797 -(1,23913:9909285,9714417:0,452978,115847 -r1,23998:14136381,9714417:4227096,568825,115847 -k1,23913:9909285,9714417:-4227096 -) -(1,23913:9909285,9714417:4227096,452978,115847 -k1,23913:9909285,9714417:3277 -h1,23913:14133104,9714417:0,411205,112570 -) -k1,23913:14353178,9714417:216797 -k1,23913:15761420,9714417:216797 -(1,23913:15761420,9714417:0,452978,115847 -r1,23998:20340228,9714417:4578808,568825,115847 -k1,23913:15761420,9714417:-4578808 -) -(1,23913:15761420,9714417:4578808,452978,115847 -k1,23913:15761420,9714417:3277 -h1,23913:20336951,9714417:0,411205,112570 -) -k1,23913:20557025,9714417:216797 -k1,23913:24486437,9714417:216797 -k1,23913:27637936,9714417:216797 -k1,23913:30240244,9714417:216797 -k1,23913:31116333,9714417:216797 -k1,23913:32583029,9714417:0 -) -(1,23914:6630773,10579497:25952256,513147,134348 -k1,23913:8103365,10579497:159250 -k1,23913:9619867,10579497:159251 -k1,23913:10245078,10579497:159250 -k1,23913:11784516,10579497:159250 -k1,23913:12935327,10579497:159251 -k1,23913:14506878,10579497:159250 -k1,23913:16060079,10579497:159250 -(1,23913:16060079,10579497:0,452978,115847 -r1,23998:20287175,10579497:4227096,568825,115847 -k1,23913:16060079,10579497:-4227096 -) -(1,23913:16060079,10579497:4227096,452978,115847 -k1,23913:16060079,10579497:3277 -h1,23913:20283898,10579497:0,411205,112570 -) -k1,23913:20620096,10579497:159251 -k1,23913:23018056,10579497:159250 -k1,23913:25373417,10579497:159250 -k1,23913:28894665,10579497:159251 -k1,23913:30795207,10579497:159250 -k1,23913:32583029,10579497:0 -) -(1,23914:6630773,11444577:25952256,505283,134348 -k1,23913:7816383,11444577:194050 -k1,23913:8819802,11444577:194049 -k1,23913:11038259,11444577:194050 -k1,23913:14858416,11444577:194050 -k1,23913:16102352,11444577:194049 -k1,23913:18151726,11444577:194050 -k1,23913:21007193,11444577:194050 -k1,23913:22936636,11444577:194050 -(1,23913:22936636,11444577:0,452978,115847 -r1,23998:27163732,11444577:4227096,568825,115847 -k1,23913:22936636,11444577:-4227096 -) -(1,23913:22936636,11444577:4227096,452978,115847 -k1,23913:22936636,11444577:3277 -h1,23913:27160455,11444577:0,411205,112570 -) -k1,23913:27531451,11444577:194049 -k1,23913:30740812,11444577:194050 -k1,23913:32583029,11444577:0 -) -(1,23914:6630773,12309657:25952256,513147,134348 -g1,23913:7821562,12309657 -g1,23913:9087062,12309657 -g1,23913:10578006,12309657 -g1,23913:11849404,12309657 -g1,23913:13466177,12309657 -g1,23913:14351568,12309657 -g1,23913:15930985,12309657 -g1,23913:17467148,12309657 -g1,23913:19262834,12309657 -g1,23913:21164033,12309657 -g1,23913:21979300,12309657 -g1,23913:23197614,12309657 -k1,23914:32583029,12309657:7345935 -g1,23914:32583029,12309657 -) -v1,23916:6630773,12994512:0,393216,0 -(1,23920:6630773,13341801:25952256,740505,196608 -g1,23920:6630773,13341801 -g1,23920:6630773,13341801 -g1,23920:6434165,13341801 -(1,23920:6434165,13341801:0,740505,196608 -r1,23998:32779637,13341801:26345472,937113,196608 -k1,23920:6434165,13341801:-26345472 -) -(1,23920:6434165,13341801:26345472,740505,196608 -[1,23920:6630773,13341801:25952256,543897,0 -(1,23918:6630773,13228949:25952256,431045,112852 -(1,23917:6630773,13228949:0,0,0 -g1,23917:6630773,13228949 -g1,23917:6630773,13228949 -g1,23917:6303093,13228949 -(1,23917:6303093,13228949:0,0,0 -) -g1,23917:6630773,13228949 -) -k1,23918:6630773,13228949:0 -g1,23918:11942036,13228949 -g1,23918:12605944,13228949 -k1,23918:12605944,13228949:0 -h1,23918:21900654,13228949:0,0,0 -k1,23918:32583029,13228949:10682375 -g1,23918:32583029,13228949 -) -] -) -g1,23920:32583029,13341801 -g1,23920:6630773,13341801 -g1,23920:6630773,13341801 -g1,23920:32583029,13341801 -g1,23920:32583029,13341801 -) -h1,23920:6630773,13538409:0,0,0 -v1,23924:6630773,14223264:0,393216,0 -(1,23928:6630773,14570553:25952256,740505,196608 -g1,23928:6630773,14570553 -g1,23928:6630773,14570553 -g1,23928:6434165,14570553 -(1,23928:6434165,14570553:0,740505,196608 -r1,23998:32779637,14570553:26345472,937113,196608 -k1,23928:6434165,14570553:-26345472 -) -(1,23928:6434165,14570553:26345472,740505,196608 -[1,23928:6630773,14570553:25952256,543897,0 -(1,23926:6630773,14457701:25952256,431045,112852 -(1,23925:6630773,14457701:0,0,0 -g1,23925:6630773,14457701 -g1,23925:6630773,14457701 -g1,23925:6303093,14457701 -(1,23925:6303093,14457701:0,0,0 -) -g1,23925:6630773,14457701 -) -k1,23926:6630773,14457701:0 -g1,23926:11942036,14457701 -g1,23926:12605944,14457701 -k1,23926:12605944,14457701:0 -h1,23926:23228469,14457701:0,0,0 -k1,23926:32583029,14457701:9354560 -g1,23926:32583029,14457701 -) -] -) -g1,23928:32583029,14570553 -g1,23928:6630773,14570553 -g1,23928:6630773,14570553 -g1,23928:32583029,14570553 -g1,23928:32583029,14570553 -) -h1,23928:6630773,14767161:0,0,0 -(1,23932:6630773,15632241:25952256,505283,126483 -h1,23931:6630773,15632241:983040,0,0 -k1,23931:10618041,15632241:214360 -(1,23931:10618041,15632241:0,452978,115847 -r1,23998:14845137,15632241:4227096,568825,115847 -k1,23931:10618041,15632241:-4227096 -) -(1,23931:10618041,15632241:4227096,452978,115847 -k1,23931:10618041,15632241:3277 -h1,23931:14841860,15632241:0,411205,112570 -) -k1,23931:15059497,15632241:214360 -k1,23931:16667808,15632241:214360 -k1,23931:18669990,15632241:214360 -k1,23931:19570512,15632241:214360 -k1,23931:20803956,15632241:214359 -k1,23931:23906488,15632241:214360 -k1,23931:26978873,15632241:214360 -k1,23931:28568834,15632241:214360 -k1,23931:30177145,15632241:214360 -k1,23931:31410590,15632241:214360 -k1,23932:32583029,15632241:0 -) -(1,23932:6630773,16497321:25952256,513147,134348 -g1,23931:9149321,16497321 -g1,23931:10331590,16497321 -g1,23931:11216981,16497321 -g1,23931:12032248,16497321 -g1,23931:13434718,16497321 -g1,23931:14616987,16497321 -g1,23931:15835301,16497321 -g1,23931:19072779,16497321 -g1,23931:19803505,16497321 -g1,23931:20618772,16497321 -g1,23931:21584117,16497321 -g1,23931:23480728,16497321 -g1,23931:24035817,16497321 -g1,23931:26108065,16497321 -k1,23932:32583029,16497321:4634713 -g1,23932:32583029,16497321 -) -v1,23934:6630773,17182176:0,393216,0 -(1,23946:6630773,21666723:25952256,4877763,196608 -g1,23946:6630773,21666723 -g1,23946:6630773,21666723 -g1,23946:6434165,21666723 -(1,23946:6434165,21666723:0,4877763,196608 -r1,23998:32779637,21666723:26345472,5074371,196608 -k1,23946:6434165,21666723:-26345472 -) -(1,23946:6434165,21666723:26345472,4877763,196608 -[1,23946:6630773,21666723:25952256,4681155,0 -(1,23936:6630773,17416613:25952256,431045,112852 -(1,23935:6630773,17416613:0,0,0 -g1,23935:6630773,17416613 -g1,23935:6630773,17416613 -g1,23935:6303093,17416613 -(1,23935:6303093,17416613:0,0,0 -) -g1,23935:6630773,17416613 -) -k1,23936:6630773,17416613:0 -g1,23936:11942036,17416613 -g1,23936:12605944,17416613 -k1,23936:12605944,17416613:0 -h1,23936:23228469,17416613:0,0,0 -k1,23936:32583029,17416613:9354560 -g1,23936:32583029,17416613 -) -(1,23937:6630773,18101468:25952256,424439,106246 -h1,23937:6630773,18101468:0,0,0 -g1,23937:6962727,18101468 -g1,23937:7294681,18101468 -g1,23937:7626635,18101468 -g1,23937:7958589,18101468 -g1,23937:8290543,18101468 -g1,23937:8622497,18101468 -g1,23937:8954451,18101468 -g1,23937:9286405,18101468 -g1,23937:9618359,18101468 -g1,23937:9950313,18101468 -g1,23937:10282267,18101468 -g1,23937:12273991,18101468 -g1,23937:12937899,18101468 -g1,23937:13601807,18101468 -g1,23937:14597669,18101468 -g1,23937:19576978,18101468 -g1,23937:20240886,18101468 -h1,23937:22232610,18101468:0,0,0 -k1,23937:32583029,18101468:10350419 -g1,23937:32583029,18101468 -) -(1,23945:6630773,18917395:25952256,424439,6605 -(1,23939:6630773,18917395:0,0,0 -g1,23939:6630773,18917395 -g1,23939:6630773,18917395 -g1,23939:6303093,18917395 -(1,23939:6303093,18917395:0,0,0 -) -g1,23939:6630773,18917395 -) -g1,23945:7626635,18917395 -g1,23945:8290543,18917395 -g1,23945:8954451,18917395 -g1,23945:11610083,18917395 -g1,23945:12273991,18917395 -g1,23945:12937899,18917395 -h1,23945:13269853,18917395:0,0,0 -k1,23945:32583029,18917395:19313176 -g1,23945:32583029,18917395 -) -(1,23945:6630773,19602250:25952256,424439,9908 -h1,23945:6630773,19602250:0,0,0 -g1,23945:7626635,19602250 -g1,23945:7958589,19602250 -g1,23945:8290543,19602250 -g1,23945:8622497,19602250 -g1,23945:10282267,19602250 -g1,23945:10614221,19602250 -g1,23945:12273991,19602250 -g1,23945:12605945,19602250 -g1,23945:14265715,19602250 -h1,23945:15593531,19602250:0,0,0 -k1,23945:32583029,19602250:16989498 -g1,23945:32583029,19602250 -) -(1,23945:6630773,20287105:25952256,424439,6605 -h1,23945:6630773,20287105:0,0,0 -g1,23945:7626635,20287105 -g1,23945:7958589,20287105 -g1,23945:8290543,20287105 -g1,23945:10282267,20287105 -g1,23945:12273991,20287105 -g1,23945:14265715,20287105 -k1,23945:14265715,20287105:0 -h1,23945:15925485,20287105:0,0,0 -k1,23945:32583029,20287105:16657544 -g1,23945:32583029,20287105 -) -(1,23945:6630773,20971960:25952256,407923,9908 -h1,23945:6630773,20971960:0,0,0 -g1,23945:7626635,20971960 -g1,23945:8290543,20971960 -g1,23945:8622497,20971960 -g1,23945:8954451,20971960 -g1,23945:9618359,20971960 -g1,23945:9950313,20971960 -g1,23945:10282267,20971960 -g1,23945:10614221,20971960 -g1,23945:12273991,20971960 -g1,23945:12605945,20971960 -g1,23945:12937899,20971960 -g1,23945:14265715,20971960 -h1,23945:15261577,20971960:0,0,0 -k1,23945:32583029,20971960:17321452 -g1,23945:32583029,20971960 -) -(1,23945:6630773,21656815:25952256,407923,9908 -h1,23945:6630773,21656815:0,0,0 -g1,23945:7626635,21656815 -g1,23945:8290543,21656815 -g1,23945:8622497,21656815 -g1,23945:10282267,21656815 -g1,23945:10614221,21656815 -g1,23945:12273991,21656815 -g1,23945:12605945,21656815 -g1,23945:12937899,21656815 -g1,23945:13269853,21656815 -g1,23945:14265715,21656815 -g1,23945:14929623,21656815 -h1,23945:15261577,21656815:0,0,0 -k1,23945:32583029,21656815:17321452 -g1,23945:32583029,21656815 -) -] -) -g1,23946:32583029,21666723 -g1,23946:6630773,21666723 -g1,23946:6630773,21666723 -g1,23946:32583029,21666723 -g1,23946:32583029,21666723 -) -h1,23946:6630773,21863331:0,0,0 -(1,23950:6630773,22728411:25952256,513147,115847 -h1,23949:6630773,22728411:983040,0,0 -k1,23949:10570875,22728411:167194 -(1,23949:10570875,22728411:0,452978,115847 -r1,23998:14094547,22728411:3523672,568825,115847 -k1,23949:10570875,22728411:-3523672 -) -(1,23949:10570875,22728411:3523672,452978,115847 -k1,23949:10570875,22728411:3277 -h1,23949:14091270,22728411:0,411205,112570 -) -k1,23949:14261742,22728411:167195 -k1,23949:16171538,22728411:167194 -k1,23949:17652074,22728411:167194 -k1,23949:20498380,22728411:167194 -k1,23949:22059526,22728411:167195 -k1,23949:23245805,22728411:167194 -k1,23949:24426186,22728411:167194 -k1,23949:27568059,22728411:167194 -k1,23949:28421416,22728411:167195 -k1,23949:29607695,22728411:167194 -k1,23949:32583029,22728411:0 -) -(1,23950:6630773,23593491:25952256,513147,126483 -k1,23949:7989296,23593491:167078 -(1,23949:7989296,23593491:0,459977,115847 -r1,23998:11512968,23593491:3523672,575824,115847 -k1,23949:7989296,23593491:-3523672 -) -(1,23949:7989296,23593491:3523672,459977,115847 -k1,23949:7989296,23593491:3277 -h1,23949:11509691,23593491:0,411205,112570 -) -k1,23949:11680047,23593491:167079 -k1,23949:13589727,23593491:167078 -k1,23949:15070148,23593491:167079 -k1,23949:16631177,23593491:167078 -k1,23949:18361945,23593491:167079 -k1,23949:20343715,23593491:167078 -k1,23949:22418547,23593491:167079 -k1,23949:24418012,23593491:167078 -k1,23949:25290258,23593491:167079 -k1,23949:28301599,23593491:167078 -k1,23949:29278048,23593491:167079 -k1,23949:32583029,23593491:0 -) -(1,23950:6630773,24458571:25952256,505283,134348 -g1,23949:7481430,24458571 -(1,23949:7481430,24458571:0,459977,115847 -r1,23998:12411950,24458571:4930520,575824,115847 -k1,23949:7481430,24458571:-4930520 -) -(1,23949:7481430,24458571:4930520,459977,115847 -k1,23949:7481430,24458571:3277 -h1,23949:12408673,24458571:0,411205,112570 -) -g1,23949:12784849,24458571 -g1,23949:16500740,24458571 -g1,23949:19139874,24458571 -g1,23949:21822918,24458571 -k1,23950:32583029,24458571:8689174 -g1,23950:32583029,24458571 -) -v1,23952:6630773,25323651:0,393216,0 -(1,23953:6630773,29190796:25952256,4260361,0 -g1,23953:6630773,29190796 -g1,23953:6237557,29190796 -r1,23998:6368629,29190796:131072,4260361,0 -g1,23953:6567858,29190796 -g1,23953:6764466,29190796 -[1,23953:6764466,29190796:25818563,4260361,0 -(1,23953:6764466,25596128:25818563,665693,196608 -(1,23952:6764466,25596128:0,665693,196608 -r1,23998:7868133,25596128:1103667,862301,196608 -k1,23952:6764466,25596128:-1103667 -) -(1,23952:6764466,25596128:1103667,665693,196608 -) -k1,23952:8119004,25596128:250871 -k1,23952:9845222,25596128:327680 -k1,23952:11244939,25596128:250871 -k1,23952:12514896,25596128:250872 -k1,23952:15359027,25596128:250871 -(1,23952:15359027,25596128:0,452978,115847 -r1,23998:17124140,25596128:1765113,568825,115847 -k1,23952:15359027,25596128:-1765113 -) -(1,23952:15359027,25596128:1765113,452978,115847 -k1,23952:15359027,25596128:3277 -h1,23952:17120863,25596128:0,411205,112570 -) -k1,23952:17375011,25596128:250871 -k1,23952:20651679,25596128:250871 -k1,23952:21553978,25596128:250871 -k1,23952:23217150,25596128:250871 -k1,23952:24487107,25596128:250872 -k1,23952:27399395,25596128:250871 -k1,23952:28963608,25596128:250871 -k1,23952:30727705,25596128:250871 -k1,23952:32583029,25596128:0 -) -(1,23953:6764466,26461208:25818563,513147,134348 -k1,23952:9255872,26461208:281532 -k1,23952:10996234,26461208:281531 -k1,23952:12608147,26461208:281532 -k1,23952:14376691,26461208:281532 -k1,23952:15476111,26461208:281531 -k1,23952:19175346,26461208:281532 -k1,23952:21664131,26461208:281532 -k1,23952:24217140,26461208:281531 -k1,23952:26435916,26461208:281532 -k1,23952:27849910,26461208:281532 -k1,23952:29519494,26461208:281531 -k1,23952:30971499,26461208:281532 -k1,23952:32583029,26461208:0 -) -(1,23953:6764466,27326288:25818563,505283,134348 -k1,23952:8266083,27326288:171236 -k1,23952:9088747,27326288:171236 -k1,23952:12099003,27326288:171236 -k1,23952:13968277,27326288:171236 -k1,23952:15633079,27326288:171236 -k1,23952:17741559,27326288:171236 -k1,23952:18904355,27326288:171236 -k1,23952:21278257,27326288:171237 -k1,23952:22211021,27326288:171236 -k1,23952:24521352,27326288:171236 -k1,23952:25375473,27326288:171236 -k1,23952:26936072,27326288:171236 -k1,23952:28775855,27326288:171236 -k1,23952:31955194,27326288:171236 -k1,23952:32583029,27326288:0 -) -(1,23953:6764466,28191368:25818563,505283,134348 -k1,23952:8200057,28191368:232350 -k1,23952:9973159,28191368:232351 -k1,23952:10891671,28191368:232350 -k1,23952:13683202,28191368:232350 -k1,23952:15327854,28191368:232351 -k1,23952:16949567,28191368:232350 -k1,23952:18173477,28191368:232350 -k1,23952:19472098,28191368:232350 -k1,23952:21833714,28191368:232351 -k1,23952:26264300,28191368:232350 -k1,23952:27258178,28191368:232350 -k1,23952:29097472,28191368:232351 -k1,23952:30012707,28191368:232350 -k1,23952:32583029,28191368:0 -) -(1,23953:6764466,29056448:25818563,513147,134348 -g1,23952:10172993,29056448 -g1,23952:13148327,29056448 -g1,23952:15169457,29056448 -g1,23952:16387771,29056448 -g1,23952:19365727,29056448 -g1,23952:21706673,29056448 -g1,23952:22853553,29056448 -g1,23952:25616550,29056448 -g1,23952:27205142,29056448 -k1,23953:32583029,29056448:3314814 -g1,23953:32583029,29056448 -) -] -g1,23953:32583029,29190796 -) -h1,23953:6630773,29190796:0,0,0 -v1,23956:6630773,30055876:0,393216,0 -(1,23998:6630773,44339802:25952256,14677142,0 -g1,23998:6630773,44339802 -g1,23998:6237557,44339802 -r1,23998:6368629,44339802:131072,14677142,0 -g1,23998:6567858,44339802 -g1,23998:6764466,44339802 -[1,23998:6764466,44339802:25818563,14677142,0 -(1,23957:6764466,30364174:25818563,701514,196608 -(1,23956:6764466,30364174:0,701514,196608 -r1,23998:7761522,30364174:997056,898122,196608 -k1,23956:6764466,30364174:-997056 -) -(1,23956:6764466,30364174:997056,701514,196608 -) -k1,23956:8013115,30364174:251593 -k1,23956:8340795,30364174:327680 -k1,23956:9789076,30364174:251594 -k1,23956:13066466,30364174:251593 -k1,23956:14885681,30364174:251594 -k1,23956:16056089,30364174:251593 -k1,23956:18887835,30364174:251594 -k1,23956:20850572,30364174:251593 -k1,23956:22514466,30364174:251593 -k1,23956:23785145,30364174:251594 -k1,23956:25919587,30364174:251593 -k1,23956:27154221,30364174:251594 -k1,23956:28091976,30364174:251593 -k1,23956:29569749,30364174:251594 -k1,23956:31864099,30364174:251593 -k1,23957:32583029,30364174:0 -) -(1,23957:6764466,31229254:25818563,513147,134348 -k1,23956:9843816,31229254:187246 -k1,23956:10682489,31229254:187245 -k1,23956:12666732,31229254:187246 -k1,23956:13873063,31229254:187246 -k1,23956:15615477,31229254:187245 -k1,23956:16462015,31229254:187246 -k1,23956:17668345,31229254:187245 -k1,23956:20568782,31229254:187246 -k1,23956:21438913,31229254:187246 -k1,23956:23134797,31229254:187245 -k1,23956:26686006,31229254:187246 -k1,23956:28254096,31229254:187246 -k1,23956:28972838,31229254:187245 -k1,23956:31510860,31229254:187246 -k1,23956:32583029,31229254:0 -) -(1,23957:6764466,32094334:25818563,513147,126483 -k1,23956:8390601,32094334:175168 -k1,23956:9513421,32094334:175169 -k1,23956:10914768,32094334:175168 -k1,23956:12403278,32094334:175168 -k1,23956:13972397,32094334:175168 -k1,23956:15899343,32094334:175169 -k1,23956:17746990,32094334:175168 -k1,23956:19118845,32094334:175168 -k1,23956:22319811,32094334:175169 -k1,23956:24062600,32094334:175168 -k1,23956:26260864,32094334:175168 -k1,23956:27848333,32094334:175168 -k1,23956:28785030,32094334:175169 -k1,23956:31225778,32094334:175168 -k1,23956:32583029,32094334:0 -) -(1,23957:6764466,32959414:25818563,513147,134348 -k1,23956:8034503,32959414:250952 -k1,23956:9357625,32959414:250953 -k1,23956:11202413,32959414:250952 -k1,23956:12952173,32959414:250952 -k1,23956:14901164,32959414:250953 -k1,23956:17939362,32959414:250952 -k1,23956:19209399,32959414:250952 -k1,23956:21640734,32959414:250952 -k1,23956:23083132,32959414:250953 -k1,23956:25062924,32959414:250952 -k1,23956:26505321,32959414:250952 -k1,23956:28190202,32959414:250953 -k1,23956:30392816,32959414:250952 -k1,23956:32583029,32959414:0 -) -(1,23957:6764466,33824494:25818563,513147,134348 -k1,23956:8325332,33824494:148565 -k1,23956:9492982,33824494:148565 -k1,23956:11524396,33824494:148565 -k1,23956:12986303,33824494:148565 -k1,23956:16176394,33824494:148565 -k1,23956:17609465,33824494:148565 -k1,23956:18777114,33824494:148564 -k1,23956:21490758,33824494:148565 -k1,23956:24935129,33824494:148565 -k1,23956:26369510,33824494:148565 -k1,23956:28281649,33824494:148565 -k1,23956:29081642,33824494:148565 -k1,23956:30249292,33824494:148565 -k1,23957:32583029,33824494:0 -) -(1,23957:6764466,34689574:25818563,513147,134348 -k1,23956:7984009,34689574:229294 -k1,23956:9712111,34689574:229294 -k1,23956:10600697,34689574:229294 -k1,23956:11849076,34689574:229294 -k1,23956:13235080,34689574:229294 -k1,23956:14845218,34689574:229294 -k1,23956:15606009,34689574:229294 -k1,23956:17485501,34689574:229295 -k1,23956:20267422,34689574:229294 -k1,23956:21112754,34689574:229294 -k1,23956:22361133,34689574:229294 -k1,23956:23957508,34689574:229294 -k1,23956:24846094,34689574:229294 -k1,23956:26568954,34689574:229294 -k1,23956:28285260,34689574:229294 -k1,23956:29586723,34689574:229294 -k1,23956:32583029,34689574:0 -) -(1,23957:6764466,35554654:25818563,513147,134348 -k1,23956:8666371,35554654:154715 -k1,23956:9448922,35554654:154716 -k1,23956:12408578,35554654:154715 -k1,23956:13582379,35554654:154716 -k1,23956:16762891,35554654:154715 -k1,23956:18485227,35554654:154715 -k1,23956:19558758,35554654:154716 -k1,23956:22293625,35554654:154715 -k1,23956:24159484,35554654:154715 -k1,23956:25305760,35554654:154716 -k1,23956:27243710,35554654:154715 -k1,23956:29241954,35554654:154716 -k1,23956:30839116,35554654:154715 -k1,23956:32583029,35554654:0 -) -(1,23957:6764466,36419734:25818563,513147,134348 -g1,23956:8531316,36419734 -g1,23956:11310697,36419734 -g1,23956:13533022,36419734 -g1,23956:14345013,36419734 -g1,23956:16946792,36419734 -g1,23956:18459363,36419734 -g1,23956:20052543,36419734 -g1,23956:22003549,36419734 -g1,23956:23936861,36419734 -g1,23956:25026069,36419734 -g1,23956:28145582,36419734 -g1,23956:29401251,36419734 -k1,23957:32583029,36419734:1960843 -g1,23957:32583029,36419734 -) -(1,23959:6764466,37284814:25818563,513147,126483 -h1,23958:6764466,37284814:983040,0,0 -k1,23958:8660368,37284814:285027 -k1,23958:10978977,37284814:285027 -k1,23958:13928043,37284814:285027 -k1,23958:14872362,37284814:285027 -k1,23958:17354155,37284814:285027 -k1,23958:17995042,37284814:285027 -k1,23958:20414577,37284814:285027 -k1,23958:22777095,37284814:285027 -k1,23958:23713550,37284814:285027 -k1,23958:26807450,37284814:285027 -k1,23958:29356746,37284814:285027 -k1,23958:31375856,37284814:285027 -k1,23958:32583029,37284814:0 -) -(1,23959:6764466,38149894:25818563,513147,134348 -k1,23958:8628529,38149894:192239 -k1,23958:11636850,38149894:192239 -k1,23958:12820648,38149894:192238 -k1,23958:13628925,38149894:192239 -k1,23958:17082891,38149894:192239 -k1,23958:19014456,38149894:192239 -k1,23958:20398140,38149894:192239 -k1,23958:21609464,38149894:192239 -k1,23958:23205483,38149894:192238 -k1,23958:25542715,38149894:192239 -k1,23958:28513025,38149894:192239 -k1,23958:31966991,38149894:192239 -k1,23958:32583029,38149894:0 -) -(1,23959:6764466,39014974:25818563,513147,134348 -k1,23958:7993512,39014974:209961 -k1,23958:9702281,39014974:209961 -k1,23958:11780673,39014974:209961 -k1,23958:13734547,39014974:209961 -k1,23958:15457734,39014974:209961 -k1,23958:16615346,39014974:209961 -k1,23958:19786224,39014974:209961 -k1,23958:21068354,39014974:209961 -k1,23958:22481555,39014974:209960 -k1,23958:24058597,39014974:209961 -k1,23958:26243813,39014974:209961 -k1,23958:27105202,39014974:209961 -k1,23958:28236599,39014974:209961 -k1,23958:29059322,39014974:209961 -k1,23958:30288368,39014974:209961 -k1,23958:31923737,39014974:209961 -k1,23958:32583029,39014974:0 -) -(1,23959:6764466,39880054:25818563,513147,134348 -k1,23958:9209878,39880054:213911 -k1,23958:12406331,39880054:213910 -k1,23958:15373409,39880054:213911 -k1,23958:16074892,39880054:213895 -k1,23958:18085800,39880054:213911 -k1,23958:20154379,39880054:213910 -k1,23958:21177660,39880054:213911 -k1,23958:22410655,39880054:213910 -k1,23958:23696735,39880054:213911 -k1,23958:25504481,39880054:213910 -k1,23958:27217200,39880054:213911 -k1,23958:28090402,39880054:213910 -k1,23958:28660173,39880054:213911 -k1,23958:30100262,39880054:213910 -k1,23958:31297213,39880054:213911 -k1,23958:32583029,39880054:0 -) -(1,23959:6764466,40745134:25818563,505283,122846 -k1,23958:9116825,40745134:284043 -k1,23958:10685373,40745134:284042 -k1,23958:11585454,40745134:284043 -k1,23958:13566879,40745134:284043 -k1,23958:15861566,40745134:284042 -k1,23958:16761647,40745134:284043 -k1,23958:18544498,40745134:284043 -k1,23958:20696971,40745134:284042 -(1,23958:20696971,40745134:0,414482,122846 -r1,23998:23868931,40745134:3171960,537328,122846 -k1,23958:20696971,40745134:-3171960 -) -(1,23958:20696971,40745134:3171960,414482,122846 -k1,23958:20696971,40745134:3277 -h1,23958:23865654,40745134:0,411205,112570 -) -k1,23958:24152974,40745134:284043 -k1,23958:25935825,40745134:284043 -k1,23958:28390419,40745134:284042 -k1,23958:29422228,40745134:284043 -k1,23958:32583029,40745134:0 -) -(1,23959:6764466,41610214:25818563,513147,134348 -k1,23958:7627357,41610214:211463 -k1,23958:10632620,41610214:211463 -k1,23958:13171266,41610214:211463 -k1,23958:14042021,41610214:211463 -k1,23958:17254378,41610214:211463 -k1,23958:17821701,41610214:211463 -k1,23958:20416052,41610214:211462 -k1,23958:21286807,41610214:211463 -k1,23958:24472949,41610214:211463 -k1,23958:26880523,41610214:211463 -k1,23958:27778148,41610214:211463 -k1,23958:31015408,41610214:211463 -k1,23959:32583029,41610214:0 -) -(1,23959:6764466,42475294:25818563,505283,134348 -k1,23958:7893282,42475294:210001 -k1,23958:10683434,42475294:210000 -k1,23958:12778249,42475294:210001 -k1,23958:14496888,42475294:210000 -k1,23958:16717534,42475294:210001 -k1,23958:17919095,42475294:210001 -k1,23958:20848184,42475294:210000 -k1,23958:21819713,42475294:210001 -k1,23958:24649843,42475294:210001 -(1,23958:24649843,42475294:0,414482,115847 -r1,23998:25359821,42475294:709978,530329,115847 -k1,23958:24649843,42475294:-709978 -) -(1,23958:24649843,42475294:709978,414482,115847 -k1,23958:24649843,42475294:3277 -h1,23958:25356544,42475294:0,411205,112570 -) -k1,23958:25569821,42475294:210000 -k1,23958:27790467,42475294:210001 -k1,23958:29394418,42475294:210000 -k1,23958:29960279,42475294:210001 -k1,23958:32583029,42475294:0 -) -(1,23959:6764466,43340374:25818563,513147,126483 -k1,23958:7787279,43340374:215410 -k1,23958:12035776,43340374:215411 -k1,23958:13454427,43340374:215410 -k1,23958:14025698,43340374:215411 -k1,23958:15595082,43340374:215410 -k1,23958:17526880,43340374:215410 -k1,23958:19422634,43340374:215411 -k1,23958:20585695,43340374:215410 -(1,23958:20585695,43340374:0,414482,122846 -r1,23998:23757655,43340374:3171960,537328,122846 -k1,23958:20585695,43340374:-3171960 -) -(1,23958:20585695,43340374:3171960,414482,122846 -k1,23958:20585695,43340374:3277 -h1,23958:23754378,43340374:0,411205,112570 -) -k1,23958:23973065,43340374:215410 -k1,23958:24719973,43340374:215411 -k1,23958:26448609,43340374:215410 -k1,23958:27315448,43340374:215411 -k1,23958:31563944,43340374:215410 -k1,23958:32583029,43340374:0 -) -(1,23959:6764466,44205454:25818563,513147,134348 -g1,23958:10138259,44205454 -g1,23958:11731439,44205454 -g1,23958:12286528,44205454 -g1,23958:13468797,44205454 -g1,23958:15043627,44205454 -g1,23958:15598716,44205454 -g1,23958:16931063,44205454 -g1,23958:18629100,44205454 -g1,23958:19444367,44205454 -k1,23959:32583029,44205454:11072968 -g1,23959:32583029,44205454 -) -] -g1,23998:32583029,44339802 -) -] -(1,23998:32583029,45706769:0,0,0 -g1,23998:32583029,45706769 -) -) -] -(1,23998:6630773,47279633:25952256,0,0 -h1,23998:6630773,47279633:25952256,0,0 -) -] -(1,23998:4262630,4025873:0,0,0 -[1,23998:-473656,4025873:0,0,0 -(1,23998:-473656,-710413:0,0,0 -(1,23998:-473656,-710413:0,0,0 -g1,23998:-473656,-710413 -) -g1,23998:-473656,-710413 -) -] -) -] -!31210 -}411 -Input:4494:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4495:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4496:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4497:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 +) +] +) +) +) +] +[1,23996:3078558,4812305:0,0,0 +(1,23996:3078558,49800853:0,16384,2228224 +g1,23996:29030814,49800853 +g1,23996:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,23996:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,23996:37855564,49800853:1179648,16384,0 +) +) +k1,23996:3078556,49800853:-34777008 +) +] +g1,23996:6630773,4812305 +k1,23996:21114230,4812305:13288080 +g1,23996:22736901,4812305 +g1,23996:23350318,4812305 +g1,23996:24759997,4812305 +g1,23996:28372341,4812305 +g1,23996:30105768,4812305 +) +) +] +[1,23996:6630773,45706769:25952256,40108032,0 +(1,23996:6630773,45706769:25952256,40108032,0 +(1,23996:6630773,45706769:0,0,0 +g1,23996:6630773,45706769 +) +[1,23996:6630773,45706769:25952256,40108032,0 +v1,23908:6630773,6254097:0,393216,0 +(1,23908:6630773,8546401:25952256,2685520,196608 +g1,23908:6630773,8546401 +g1,23908:6630773,8546401 +g1,23908:6434165,8546401 +(1,23908:6434165,8546401:0,2685520,196608 +r1,23996:32779637,8546401:26345472,2882128,196608 +k1,23908:6434165,8546401:-26345472 +) +(1,23908:6434165,8546401:26345472,2685520,196608 +[1,23908:6630773,8546401:25952256,2488912,0 +(1,23907:6630773,6481928:25952256,424439,9908 +h1,23907:6630773,6481928:0,0,0 +g1,23907:7626635,6481928 +g1,23907:7958589,6481928 +g1,23907:8290543,6481928 +g1,23907:8622497,6481928 +g1,23907:10282267,6481928 +g1,23907:10614221,6481928 +g1,23907:12273991,6481928 +g1,23907:12605945,6481928 +g1,23907:14265715,6481928 +h1,23907:15593531,6481928:0,0,0 +k1,23907:32583029,6481928:16989498 +g1,23907:32583029,6481928 +) +(1,23907:6630773,7166783:25952256,424439,6605 +h1,23907:6630773,7166783:0,0,0 +g1,23907:7626635,7166783 +g1,23907:7958589,7166783 +g1,23907:8290543,7166783 +g1,23907:10282267,7166783 +g1,23907:12273991,7166783 +g1,23907:14265715,7166783 +k1,23907:14265715,7166783:0 +h1,23907:15925485,7166783:0,0,0 +k1,23907:32583029,7166783:16657544 +g1,23907:32583029,7166783 +) +(1,23907:6630773,7851638:25952256,407923,9908 +h1,23907:6630773,7851638:0,0,0 +g1,23907:7626635,7851638 +g1,23907:8290543,7851638 +g1,23907:8622497,7851638 +g1,23907:8954451,7851638 +g1,23907:9618359,7851638 +g1,23907:9950313,7851638 +g1,23907:10282267,7851638 +g1,23907:10614221,7851638 +g1,23907:12273991,7851638 +g1,23907:12605945,7851638 +g1,23907:12937899,7851638 +g1,23907:14265715,7851638 +h1,23907:15261577,7851638:0,0,0 +k1,23907:32583029,7851638:17321452 +g1,23907:32583029,7851638 +) +(1,23907:6630773,8536493:25952256,407923,9908 +h1,23907:6630773,8536493:0,0,0 +g1,23907:7626635,8536493 +g1,23907:8290543,8536493 +g1,23907:8622497,8536493 +g1,23907:10282267,8536493 +g1,23907:10614221,8536493 +g1,23907:12273991,8536493 +g1,23907:12605945,8536493 +g1,23907:12937899,8536493 +g1,23907:13269853,8536493 +g1,23907:14265715,8536493 +g1,23907:14929623,8536493 +h1,23907:15261577,8536493:0,0,0 +k1,23907:32583029,8536493:17321452 +g1,23907:32583029,8536493 +) +] +) +g1,23908:32583029,8546401 +g1,23908:6630773,8546401 +g1,23908:6630773,8546401 +g1,23908:32583029,8546401 +g1,23908:32583029,8546401 +) +h1,23908:6630773,8743009:0,0,0 +(1,23912:6630773,9608089:25952256,513147,134348 +h1,23911:6630773,9608089:983040,0,0 +k1,23911:10382840,9608089:234094 +k1,23911:12640031,9608089:234095 +k1,23911:13405622,9608089:234094 +k1,23911:15525843,9608089:234095 +k1,23911:17611984,9608089:234094 +k1,23911:22151793,9608089:234094 +k1,23911:23577333,9608089:234095 +k1,23911:26573770,9608089:234094 +k1,23911:28693336,9608089:234095 +k1,23911:31591469,9608089:234094 +k1,23911:32583029,9608089:0 +) +(1,23912:6630773,10473169:25952256,513147,134348 +k1,23911:8044330,10473169:347286 +k1,23911:9842583,10473169:347286 +k1,23911:13725537,10473169:347287 +k1,23911:15466774,10473169:347286 +k1,23911:17265682,10473169:347286 +k1,23911:19488608,10473169:347286 +k1,23911:22364273,10473169:347286 +k1,23911:23370851,10473169:347286 +k1,23911:24737223,10473169:347287 +k1,23911:28555296,10473169:347286 +k1,23911:30636665,10473169:347286 +k1,23911:31599989,10473169:347286 +k1,23912:32583029,10473169:0 +) +(1,23912:6630773,11338249:25952256,505283,126483 +(1,23911:6630773,11338249:0,452978,122846 +r1,23996:14726699,11338249:8095926,575824,122846 +k1,23911:6630773,11338249:-8095926 +) +(1,23911:6630773,11338249:8095926,452978,122846 +k1,23911:6630773,11338249:3277 +h1,23911:14723422,11338249:0,411205,112570 +) +k1,23911:14990868,11338249:264169 +k1,23911:15871074,11338249:264168 +k1,23911:17154328,11338249:264169 +k1,23911:18782300,11338249:264168 +k1,23911:19914821,11338249:264169 +k1,23911:22477337,11338249:264168 +k1,23911:23392934,11338249:264169 +k1,23911:24749587,11338249:264168 +(1,23911:24749587,11338249:0,452978,115847 +r1,23996:29328395,11338249:4578808,568825,115847 +k1,23911:24749587,11338249:-4578808 +) +(1,23911:24749587,11338249:4578808,452978,115847 +k1,23911:24749587,11338249:3277 +h1,23911:29325118,11338249:0,411205,112570 +) +k1,23911:29766234,11338249:264169 +k1,23911:31915873,11338249:264168 +k1,23912:32583029,11338249:0 +) +(1,23912:6630773,12203329:25952256,513147,134348 +k1,23911:8692712,12203329:173191 +k1,23911:13207664,12203329:173192 +k1,23911:14040147,12203329:173191 +k1,23911:16121092,12203329:173192 +k1,23911:19062524,12203329:173191 +k1,23911:19887144,12203329:173192 +(1,23911:19887144,12203329:0,452978,115847 +r1,23996:24114240,12203329:4227096,568825,115847 +k1,23911:19887144,12203329:-4227096 +) +(1,23911:19887144,12203329:4227096,452978,115847 +k1,23911:19887144,12203329:3277 +h1,23911:24110963,12203329:0,411205,112570 +) +k1,23911:24461101,12203329:173191 +k1,23911:26015137,12203329:173192 +k1,23911:28883824,12203329:173191 +k1,23911:30158021,12203329:173192 +k1,23911:31841162,12203329:173191 +k1,23912:32583029,12203329:0 +) +(1,23912:6630773,13068409:25952256,513147,134348 +k1,23911:9006326,13068409:216797 +k1,23911:9909285,13068409:216797 +(1,23911:9909285,13068409:0,452978,115847 +r1,23996:14136381,13068409:4227096,568825,115847 +k1,23911:9909285,13068409:-4227096 +) +(1,23911:9909285,13068409:4227096,452978,115847 +k1,23911:9909285,13068409:3277 +h1,23911:14133104,13068409:0,411205,112570 +) +k1,23911:14353178,13068409:216797 +k1,23911:15761420,13068409:216797 +(1,23911:15761420,13068409:0,452978,115847 +r1,23996:20340228,13068409:4578808,568825,115847 +k1,23911:15761420,13068409:-4578808 +) +(1,23911:15761420,13068409:4578808,452978,115847 +k1,23911:15761420,13068409:3277 +h1,23911:20336951,13068409:0,411205,112570 +) +k1,23911:20557025,13068409:216797 +k1,23911:24486437,13068409:216797 +k1,23911:27637936,13068409:216797 +k1,23911:30240244,13068409:216797 +k1,23911:31116333,13068409:216797 +k1,23911:32583029,13068409:0 +) +(1,23912:6630773,13933489:25952256,513147,134348 +k1,23911:8117843,13933489:173728 +k1,23911:9648821,13933489:173727 +k1,23911:10288510,13933489:173728 +k1,23911:11842426,13933489:173728 +k1,23911:13007713,13933489:173727 +k1,23911:14593742,13933489:173728 +k1,23911:16161420,13933489:173727 +(1,23911:16161420,13933489:0,452978,115847 +r1,23996:20388516,13933489:4227096,568825,115847 +k1,23911:16161420,13933489:-4227096 +) +(1,23911:16161420,13933489:4227096,452978,115847 +k1,23911:16161420,13933489:3277 +h1,23911:20385239,13933489:0,411205,112570 +) +k1,23911:20735914,13933489:173728 +k1,23911:23148352,13933489:173728 +k1,23911:25518190,13933489:173727 +k1,23911:29053915,13933489:173728 +k1,23911:32583029,13933489:0 +) +(1,23912:6630773,14798569:25952256,505283,134348 +k1,23911:7816383,14798569:194050 +k1,23911:8819802,14798569:194049 +k1,23911:11038259,14798569:194050 +k1,23911:14858416,14798569:194050 +k1,23911:16102352,14798569:194049 +k1,23911:18151726,14798569:194050 +k1,23911:21007193,14798569:194050 +k1,23911:22936636,14798569:194050 +(1,23911:22936636,14798569:0,452978,115847 +r1,23996:27163732,14798569:4227096,568825,115847 +k1,23911:22936636,14798569:-4227096 +) +(1,23911:22936636,14798569:4227096,452978,115847 +k1,23911:22936636,14798569:3277 +h1,23911:27160455,14798569:0,411205,112570 +) +k1,23911:27531451,14798569:194049 +k1,23911:30740812,14798569:194050 +k1,23911:32583029,14798569:0 +) +(1,23912:6630773,15663649:25952256,513147,134348 +g1,23911:7821562,15663649 +g1,23911:9087062,15663649 +g1,23911:10578006,15663649 +g1,23911:11849404,15663649 +g1,23911:13466177,15663649 +g1,23911:14351568,15663649 +g1,23911:15930985,15663649 +g1,23911:17467148,15663649 +g1,23911:19262834,15663649 +g1,23911:21164033,15663649 +g1,23911:21979300,15663649 +g1,23911:23197614,15663649 +k1,23912:32583029,15663649:7345935 +g1,23912:32583029,15663649 +) +v1,23914:6630773,16348504:0,393216,0 +(1,23918:6630773,16695793:25952256,740505,196608 +g1,23918:6630773,16695793 +g1,23918:6630773,16695793 +g1,23918:6434165,16695793 +(1,23918:6434165,16695793:0,740505,196608 +r1,23996:32779637,16695793:26345472,937113,196608 +k1,23918:6434165,16695793:-26345472 +) +(1,23918:6434165,16695793:26345472,740505,196608 +[1,23918:6630773,16695793:25952256,543897,0 +(1,23916:6630773,16582941:25952256,431045,112852 +(1,23915:6630773,16582941:0,0,0 +g1,23915:6630773,16582941 +g1,23915:6630773,16582941 +g1,23915:6303093,16582941 +(1,23915:6303093,16582941:0,0,0 +) +g1,23915:6630773,16582941 +) +k1,23916:6630773,16582941:0 +g1,23916:11942036,16582941 +g1,23916:12605944,16582941 +k1,23916:12605944,16582941:0 +h1,23916:21900654,16582941:0,0,0 +k1,23916:32583029,16582941:10682375 +g1,23916:32583029,16582941 +) +] +) +g1,23918:32583029,16695793 +g1,23918:6630773,16695793 +g1,23918:6630773,16695793 +g1,23918:32583029,16695793 +g1,23918:32583029,16695793 +) +h1,23918:6630773,16892401:0,0,0 +v1,23922:6630773,17577256:0,393216,0 +(1,23926:6630773,17924545:25952256,740505,196608 +g1,23926:6630773,17924545 +g1,23926:6630773,17924545 +g1,23926:6434165,17924545 +(1,23926:6434165,17924545:0,740505,196608 +r1,23996:32779637,17924545:26345472,937113,196608 +k1,23926:6434165,17924545:-26345472 +) +(1,23926:6434165,17924545:26345472,740505,196608 +[1,23926:6630773,17924545:25952256,543897,0 +(1,23924:6630773,17811693:25952256,431045,112852 +(1,23923:6630773,17811693:0,0,0 +g1,23923:6630773,17811693 +g1,23923:6630773,17811693 +g1,23923:6303093,17811693 +(1,23923:6303093,17811693:0,0,0 +) +g1,23923:6630773,17811693 +) +k1,23924:6630773,17811693:0 +g1,23924:11942036,17811693 +g1,23924:12605944,17811693 +k1,23924:12605944,17811693:0 +h1,23924:23228469,17811693:0,0,0 +k1,23924:32583029,17811693:9354560 +g1,23924:32583029,17811693 +) +] +) +g1,23926:32583029,17924545 +g1,23926:6630773,17924545 +g1,23926:6630773,17924545 +g1,23926:32583029,17924545 +g1,23926:32583029,17924545 +) +h1,23926:6630773,18121153:0,0,0 +(1,23930:6630773,18986233:25952256,505283,126483 +h1,23929:6630773,18986233:983040,0,0 +k1,23929:10618041,18986233:214360 +(1,23929:10618041,18986233:0,452978,115847 +r1,23996:14845137,18986233:4227096,568825,115847 +k1,23929:10618041,18986233:-4227096 +) +(1,23929:10618041,18986233:4227096,452978,115847 +k1,23929:10618041,18986233:3277 +h1,23929:14841860,18986233:0,411205,112570 +) +k1,23929:15059497,18986233:214360 +k1,23929:16667808,18986233:214360 +k1,23929:18669990,18986233:214360 +k1,23929:19570512,18986233:214360 +k1,23929:20803956,18986233:214359 +k1,23929:23906488,18986233:214360 +k1,23929:26978873,18986233:214360 +k1,23929:28568834,18986233:214360 +k1,23929:30177145,18986233:214360 +k1,23929:31410590,18986233:214360 +k1,23930:32583029,18986233:0 +) +(1,23930:6630773,19851313:25952256,513147,134348 +g1,23929:9149321,19851313 +g1,23929:10331590,19851313 +g1,23929:11216981,19851313 +g1,23929:12032248,19851313 +g1,23929:13434718,19851313 +g1,23929:14616987,19851313 +g1,23929:15835301,19851313 +g1,23929:19072779,19851313 +g1,23929:19803505,19851313 +g1,23929:20618772,19851313 +g1,23929:21584117,19851313 +g1,23929:23480728,19851313 +g1,23929:24035817,19851313 +g1,23929:26108065,19851313 +k1,23930:32583029,19851313:4634713 +g1,23930:32583029,19851313 +) +v1,23932:6630773,20536168:0,393216,0 +(1,23944:6630773,25020715:25952256,4877763,196608 +g1,23944:6630773,25020715 +g1,23944:6630773,25020715 +g1,23944:6434165,25020715 +(1,23944:6434165,25020715:0,4877763,196608 +r1,23996:32779637,25020715:26345472,5074371,196608 +k1,23944:6434165,25020715:-26345472 +) +(1,23944:6434165,25020715:26345472,4877763,196608 +[1,23944:6630773,25020715:25952256,4681155,0 +(1,23934:6630773,20770605:25952256,431045,112852 +(1,23933:6630773,20770605:0,0,0 +g1,23933:6630773,20770605 +g1,23933:6630773,20770605 +g1,23933:6303093,20770605 +(1,23933:6303093,20770605:0,0,0 +) +g1,23933:6630773,20770605 +) +k1,23934:6630773,20770605:0 +g1,23934:11942036,20770605 +g1,23934:12605944,20770605 +k1,23934:12605944,20770605:0 +h1,23934:23228469,20770605:0,0,0 +k1,23934:32583029,20770605:9354560 +g1,23934:32583029,20770605 +) +(1,23935:6630773,21455460:25952256,424439,106246 +h1,23935:6630773,21455460:0,0,0 +g1,23935:6962727,21455460 +g1,23935:7294681,21455460 +g1,23935:7626635,21455460 +g1,23935:7958589,21455460 +g1,23935:8290543,21455460 +g1,23935:8622497,21455460 +g1,23935:8954451,21455460 +g1,23935:9286405,21455460 +g1,23935:9618359,21455460 +g1,23935:9950313,21455460 +g1,23935:10282267,21455460 +g1,23935:12273991,21455460 +g1,23935:12937899,21455460 +g1,23935:13601807,21455460 +g1,23935:14597669,21455460 +g1,23935:19576978,21455460 +g1,23935:20240886,21455460 +h1,23935:22232610,21455460:0,0,0 +k1,23935:32583029,21455460:10350419 +g1,23935:32583029,21455460 +) +(1,23943:6630773,22271387:25952256,424439,6605 +(1,23937:6630773,22271387:0,0,0 +g1,23937:6630773,22271387 +g1,23937:6630773,22271387 +g1,23937:6303093,22271387 +(1,23937:6303093,22271387:0,0,0 +) +g1,23937:6630773,22271387 +) +g1,23943:7626635,22271387 +g1,23943:8290543,22271387 +g1,23943:8954451,22271387 +g1,23943:11610083,22271387 +g1,23943:12273991,22271387 +g1,23943:12937899,22271387 +h1,23943:13269853,22271387:0,0,0 +k1,23943:32583029,22271387:19313176 +g1,23943:32583029,22271387 +) +(1,23943:6630773,22956242:25952256,424439,9908 +h1,23943:6630773,22956242:0,0,0 +g1,23943:7626635,22956242 +g1,23943:7958589,22956242 +g1,23943:8290543,22956242 +g1,23943:8622497,22956242 +g1,23943:10282267,22956242 +g1,23943:10614221,22956242 +g1,23943:12273991,22956242 +g1,23943:12605945,22956242 +g1,23943:14265715,22956242 +h1,23943:15593531,22956242:0,0,0 +k1,23943:32583029,22956242:16989498 +g1,23943:32583029,22956242 +) +(1,23943:6630773,23641097:25952256,424439,6605 +h1,23943:6630773,23641097:0,0,0 +g1,23943:7626635,23641097 +g1,23943:7958589,23641097 +g1,23943:8290543,23641097 +g1,23943:10282267,23641097 +g1,23943:12273991,23641097 +g1,23943:14265715,23641097 +k1,23943:14265715,23641097:0 +h1,23943:15925485,23641097:0,0,0 +k1,23943:32583029,23641097:16657544 +g1,23943:32583029,23641097 +) +(1,23943:6630773,24325952:25952256,407923,9908 +h1,23943:6630773,24325952:0,0,0 +g1,23943:7626635,24325952 +g1,23943:8290543,24325952 +g1,23943:8622497,24325952 +g1,23943:8954451,24325952 +g1,23943:9618359,24325952 +g1,23943:9950313,24325952 +g1,23943:10282267,24325952 +g1,23943:10614221,24325952 +g1,23943:12273991,24325952 +g1,23943:12605945,24325952 +g1,23943:12937899,24325952 +g1,23943:14265715,24325952 +h1,23943:15261577,24325952:0,0,0 +k1,23943:32583029,24325952:17321452 +g1,23943:32583029,24325952 +) +(1,23943:6630773,25010807:25952256,407923,9908 +h1,23943:6630773,25010807:0,0,0 +g1,23943:7626635,25010807 +g1,23943:8290543,25010807 +g1,23943:8622497,25010807 +g1,23943:10282267,25010807 +g1,23943:10614221,25010807 +g1,23943:12273991,25010807 +g1,23943:12605945,25010807 +g1,23943:12937899,25010807 +g1,23943:13269853,25010807 +g1,23943:14265715,25010807 +g1,23943:14929623,25010807 +h1,23943:15261577,25010807:0,0,0 +k1,23943:32583029,25010807:17321452 +g1,23943:32583029,25010807 +) +] +) +g1,23944:32583029,25020715 +g1,23944:6630773,25020715 +g1,23944:6630773,25020715 +g1,23944:32583029,25020715 +g1,23944:32583029,25020715 +) +h1,23944:6630773,25217323:0,0,0 +(1,23948:6630773,26082403:25952256,513147,115847 +h1,23947:6630773,26082403:983040,0,0 +k1,23947:10570875,26082403:167194 +(1,23947:10570875,26082403:0,452978,115847 +r1,23996:14094547,26082403:3523672,568825,115847 +k1,23947:10570875,26082403:-3523672 +) +(1,23947:10570875,26082403:3523672,452978,115847 +k1,23947:10570875,26082403:3277 +h1,23947:14091270,26082403:0,411205,112570 +) +k1,23947:14261742,26082403:167195 +k1,23947:16171538,26082403:167194 +k1,23947:17652074,26082403:167194 +k1,23947:20498380,26082403:167194 +k1,23947:22059526,26082403:167195 +k1,23947:23245805,26082403:167194 +k1,23947:24426186,26082403:167194 +k1,23947:27568059,26082403:167194 +k1,23947:28421416,26082403:167195 +k1,23947:29607695,26082403:167194 +k1,23947:32583029,26082403:0 +) +(1,23948:6630773,26947483:25952256,513147,126483 +k1,23947:7989296,26947483:167078 +(1,23947:7989296,26947483:0,459977,115847 +r1,23996:11512968,26947483:3523672,575824,115847 +k1,23947:7989296,26947483:-3523672 +) +(1,23947:7989296,26947483:3523672,459977,115847 +k1,23947:7989296,26947483:3277 +h1,23947:11509691,26947483:0,411205,112570 +) +k1,23947:11680047,26947483:167079 +k1,23947:13589727,26947483:167078 +k1,23947:15070148,26947483:167079 +k1,23947:16631177,26947483:167078 +k1,23947:18361945,26947483:167079 +k1,23947:20343715,26947483:167078 +k1,23947:22418547,26947483:167079 +k1,23947:24418012,26947483:167078 +k1,23947:25290258,26947483:167079 +k1,23947:28301599,26947483:167078 +k1,23947:29278048,26947483:167079 +k1,23947:32583029,26947483:0 +) +(1,23948:6630773,27812563:25952256,505283,134348 +g1,23947:7481430,27812563 +(1,23947:7481430,27812563:0,459977,115847 +r1,23996:12411950,27812563:4930520,575824,115847 +k1,23947:7481430,27812563:-4930520 +) +(1,23947:7481430,27812563:4930520,459977,115847 +k1,23947:7481430,27812563:3277 +h1,23947:12408673,27812563:0,411205,112570 +) +g1,23947:12784849,27812563 +g1,23947:16500740,27812563 +g1,23947:19139874,27812563 +g1,23947:21822918,27812563 +k1,23948:32583029,27812563:8689174 +g1,23948:32583029,27812563 +) +v1,23950:6630773,28677643:0,393216,0 +(1,23951:6630773,32544788:25952256,4260361,0 +g1,23951:6630773,32544788 +g1,23951:6237557,32544788 +r1,23996:6368629,32544788:131072,4260361,0 +g1,23951:6567858,32544788 +g1,23951:6764466,32544788 +[1,23951:6764466,32544788:25818563,4260361,0 +(1,23951:6764466,28950120:25818563,665693,196608 +(1,23950:6764466,28950120:0,665693,196608 +r1,23996:7868133,28950120:1103667,862301,196608 +k1,23950:6764466,28950120:-1103667 +) +(1,23950:6764466,28950120:1103667,665693,196608 +) +k1,23950:8119004,28950120:250871 +k1,23950:9845222,28950120:327680 +k1,23950:11244939,28950120:250871 +k1,23950:12514896,28950120:250872 +k1,23950:15359027,28950120:250871 +(1,23950:15359027,28950120:0,452978,115847 +r1,23996:17124140,28950120:1765113,568825,115847 +k1,23950:15359027,28950120:-1765113 +) +(1,23950:15359027,28950120:1765113,452978,115847 +k1,23950:15359027,28950120:3277 +h1,23950:17120863,28950120:0,411205,112570 +) +k1,23950:17375011,28950120:250871 +k1,23950:20651679,28950120:250871 +k1,23950:21553978,28950120:250871 +k1,23950:23217150,28950120:250871 +k1,23950:24487107,28950120:250872 +k1,23950:27399395,28950120:250871 +k1,23950:28963608,28950120:250871 +k1,23950:30727705,28950120:250871 +k1,23950:32583029,28950120:0 +) +(1,23951:6764466,29815200:25818563,513147,134348 +k1,23950:9255872,29815200:281532 +k1,23950:10996234,29815200:281531 +k1,23950:12608147,29815200:281532 +k1,23950:14376691,29815200:281532 +k1,23950:15476111,29815200:281531 +k1,23950:19175346,29815200:281532 +k1,23950:21664131,29815200:281532 +k1,23950:24217140,29815200:281531 +k1,23950:26435916,29815200:281532 +k1,23950:27849910,29815200:281532 +k1,23950:29519494,29815200:281531 +k1,23950:30971499,29815200:281532 +k1,23950:32583029,29815200:0 +) +(1,23951:6764466,30680280:25818563,505283,134348 +k1,23950:8266083,30680280:171236 +k1,23950:9088747,30680280:171236 +k1,23950:12099003,30680280:171236 +k1,23950:13968277,30680280:171236 +k1,23950:15633079,30680280:171236 +k1,23950:17741559,30680280:171236 +k1,23950:18904355,30680280:171236 +k1,23950:21278257,30680280:171237 +k1,23950:22211021,30680280:171236 +k1,23950:24521352,30680280:171236 +k1,23950:25375473,30680280:171236 +k1,23950:26936072,30680280:171236 +k1,23950:28775855,30680280:171236 +k1,23950:31955194,30680280:171236 +k1,23950:32583029,30680280:0 +) +(1,23951:6764466,31545360:25818563,505283,134348 +k1,23950:8200057,31545360:232350 +k1,23950:9973159,31545360:232351 +k1,23950:10891671,31545360:232350 +k1,23950:13683202,31545360:232350 +k1,23950:15327854,31545360:232351 +k1,23950:16949567,31545360:232350 +k1,23950:18173477,31545360:232350 +k1,23950:19472098,31545360:232350 +k1,23950:21833714,31545360:232351 +k1,23950:26264300,31545360:232350 +k1,23950:27258178,31545360:232350 +k1,23950:29097472,31545360:232351 +k1,23950:30012707,31545360:232350 +k1,23950:32583029,31545360:0 +) +(1,23951:6764466,32410440:25818563,513147,134348 +g1,23950:10172993,32410440 +g1,23950:13148327,32410440 +g1,23950:15169457,32410440 +g1,23950:16387771,32410440 +g1,23950:19365727,32410440 +g1,23950:21706673,32410440 +g1,23950:22853553,32410440 +g1,23950:25616550,32410440 +g1,23950:27205142,32410440 +k1,23951:32583029,32410440:3314814 +g1,23951:32583029,32410440 +) +] +g1,23951:32583029,32544788 +) +h1,23951:6630773,32544788:0,0,0 +v1,23954:6630773,33409868:0,393216,0 +(1,23996:6630773,45098554:25952256,12081902,0 +g1,23996:6630773,45098554 +g1,23996:6237557,45098554 +r1,23996:6368629,45098554:131072,12081902,0 +g1,23996:6567858,45098554 +g1,23996:6764466,45098554 +[1,23996:6764466,45098554:25818563,12081902,0 +(1,23955:6764466,33718166:25818563,701514,196608 +(1,23954:6764466,33718166:0,701514,196608 +r1,23996:7761522,33718166:997056,898122,196608 +k1,23954:6764466,33718166:-997056 +) +(1,23954:6764466,33718166:997056,701514,196608 +) +k1,23954:8013115,33718166:251593 +k1,23954:8340795,33718166:327680 +k1,23954:9789076,33718166:251594 +k1,23954:13066466,33718166:251593 +k1,23954:14885681,33718166:251594 +k1,23954:16056089,33718166:251593 +k1,23954:18887835,33718166:251594 +k1,23954:20850572,33718166:251593 +k1,23954:22514466,33718166:251593 +k1,23954:23785145,33718166:251594 +k1,23954:25919587,33718166:251593 +k1,23954:27154221,33718166:251594 +k1,23954:28091976,33718166:251593 +k1,23954:29569749,33718166:251594 +k1,23954:31864099,33718166:251593 +k1,23955:32583029,33718166:0 +) +(1,23955:6764466,34583246:25818563,513147,134348 +k1,23954:9843816,34583246:187246 +k1,23954:10682489,34583246:187245 +k1,23954:12666732,34583246:187246 +k1,23954:13873063,34583246:187246 +k1,23954:15615477,34583246:187245 +k1,23954:16462015,34583246:187246 +k1,23954:17668345,34583246:187245 +k1,23954:20568782,34583246:187246 +k1,23954:21438913,34583246:187246 +k1,23954:23134797,34583246:187245 +k1,23954:26686006,34583246:187246 +k1,23954:28254096,34583246:187246 +k1,23954:28972838,34583246:187245 +k1,23954:31510860,34583246:187246 +k1,23954:32583029,34583246:0 +) +(1,23955:6764466,35448326:25818563,513147,126483 +k1,23954:8390601,35448326:175168 +k1,23954:9513421,35448326:175169 +k1,23954:10914768,35448326:175168 +k1,23954:12403278,35448326:175168 +k1,23954:13972397,35448326:175168 +k1,23954:15899343,35448326:175169 +k1,23954:17746990,35448326:175168 +k1,23954:19118845,35448326:175168 +k1,23954:22319811,35448326:175169 +k1,23954:24062600,35448326:175168 +k1,23954:26260864,35448326:175168 +k1,23954:27848333,35448326:175168 +k1,23954:28785030,35448326:175169 +k1,23954:31225778,35448326:175168 +k1,23954:32583029,35448326:0 +) +(1,23955:6764466,36313406:25818563,513147,134348 +k1,23954:8034503,36313406:250952 +k1,23954:9357625,36313406:250953 +k1,23954:11202413,36313406:250952 +k1,23954:12952173,36313406:250952 +k1,23954:14901164,36313406:250953 +k1,23954:17939362,36313406:250952 +k1,23954:19209399,36313406:250952 +k1,23954:21640734,36313406:250952 +k1,23954:23083132,36313406:250953 +k1,23954:25062924,36313406:250952 +k1,23954:26505321,36313406:250952 +k1,23954:28190202,36313406:250953 +k1,23954:30392816,36313406:250952 +k1,23954:32583029,36313406:0 +) +(1,23955:6764466,37178486:25818563,513147,134348 +k1,23954:8325332,37178486:148565 +k1,23954:9492982,37178486:148565 +k1,23954:11524396,37178486:148565 +k1,23954:12986303,37178486:148565 +k1,23954:16176394,37178486:148565 +k1,23954:17609465,37178486:148565 +k1,23954:18777114,37178486:148564 +k1,23954:21490758,37178486:148565 +k1,23954:24935129,37178486:148565 +k1,23954:26369510,37178486:148565 +k1,23954:28281649,37178486:148565 +k1,23954:29081642,37178486:148565 +k1,23954:30249292,37178486:148565 +k1,23955:32583029,37178486:0 +) +(1,23955:6764466,38043566:25818563,513147,134348 +k1,23954:7984009,38043566:229294 +k1,23954:9712111,38043566:229294 +k1,23954:10600697,38043566:229294 +k1,23954:11849076,38043566:229294 +k1,23954:13235080,38043566:229294 +k1,23954:14845218,38043566:229294 +k1,23954:15606009,38043566:229294 +k1,23954:17485501,38043566:229295 +k1,23954:20267422,38043566:229294 +k1,23954:21112754,38043566:229294 +k1,23954:22361133,38043566:229294 +k1,23954:23957508,38043566:229294 +k1,23954:24846094,38043566:229294 +k1,23954:26568954,38043566:229294 +k1,23954:28285260,38043566:229294 +k1,23954:29586723,38043566:229294 +k1,23954:32583029,38043566:0 +) +(1,23955:6764466,38908646:25818563,513147,134348 +k1,23954:8666371,38908646:154715 +k1,23954:9448922,38908646:154716 +k1,23954:12408578,38908646:154715 +k1,23954:13582379,38908646:154716 +k1,23954:16762891,38908646:154715 +k1,23954:18485227,38908646:154715 +k1,23954:19558758,38908646:154716 +k1,23954:22293625,38908646:154715 +k1,23954:24159484,38908646:154715 +k1,23954:25305760,38908646:154716 +k1,23954:27243710,38908646:154715 +k1,23954:29241954,38908646:154716 +k1,23954:30839116,38908646:154715 +k1,23954:32583029,38908646:0 +) +(1,23955:6764466,39773726:25818563,513147,134348 +g1,23954:8531316,39773726 +g1,23954:11310697,39773726 +g1,23954:13533022,39773726 +g1,23954:14345013,39773726 +g1,23954:16946792,39773726 +g1,23954:18459363,39773726 +g1,23954:20052543,39773726 +g1,23954:22003549,39773726 +g1,23954:23936861,39773726 +g1,23954:25026069,39773726 +g1,23954:28145582,39773726 +g1,23954:29401251,39773726 +k1,23955:32583029,39773726:1960843 +g1,23955:32583029,39773726 +) +(1,23957:6764466,40638806:25818563,513147,126483 +h1,23956:6764466,40638806:983040,0,0 +k1,23956:8660368,40638806:285027 +k1,23956:10978977,40638806:285027 +k1,23956:13928043,40638806:285027 +k1,23956:14872362,40638806:285027 +k1,23956:17354155,40638806:285027 +k1,23956:17995042,40638806:285027 +k1,23956:20414577,40638806:285027 +k1,23956:22777095,40638806:285027 +k1,23956:23713550,40638806:285027 +k1,23956:26807450,40638806:285027 +k1,23956:29356746,40638806:285027 +k1,23956:31375856,40638806:285027 +k1,23956:32583029,40638806:0 +) +(1,23957:6764466,41503886:25818563,513147,134348 +k1,23956:8628529,41503886:192239 +k1,23956:11636850,41503886:192239 +k1,23956:12820648,41503886:192238 +k1,23956:13628925,41503886:192239 +k1,23956:17082891,41503886:192239 +k1,23956:19014456,41503886:192239 +k1,23956:20398140,41503886:192239 +k1,23956:21609464,41503886:192239 +k1,23956:23205483,41503886:192238 +k1,23956:25542715,41503886:192239 +k1,23956:28513025,41503886:192239 +k1,23956:31966991,41503886:192239 +k1,23956:32583029,41503886:0 +) +(1,23957:6764466,42368966:25818563,513147,134348 +k1,23956:7993512,42368966:209961 +k1,23956:9702281,42368966:209961 +k1,23956:11780673,42368966:209961 +k1,23956:13734547,42368966:209961 +k1,23956:15457734,42368966:209961 +k1,23956:16615346,42368966:209961 +k1,23956:19786224,42368966:209961 +k1,23956:21068354,42368966:209961 +k1,23956:22481555,42368966:209960 +k1,23956:24058597,42368966:209961 +k1,23956:26243813,42368966:209961 +k1,23956:27105202,42368966:209961 +k1,23956:28236599,42368966:209961 +k1,23956:29059322,42368966:209961 +k1,23956:30288368,42368966:209961 +k1,23956:31923737,42368966:209961 +k1,23956:32583029,42368966:0 +) +(1,23957:6764466,43234046:25818563,513147,134348 +k1,23956:9209878,43234046:213911 +k1,23956:12406331,43234046:213910 +k1,23956:15373409,43234046:213911 +k1,23956:16074892,43234046:213895 +k1,23956:18085800,43234046:213911 +k1,23956:20154379,43234046:213910 +k1,23956:21177660,43234046:213911 +k1,23956:22410655,43234046:213910 +k1,23956:23696735,43234046:213911 +k1,23956:25504481,43234046:213910 +k1,23956:27217200,43234046:213911 +k1,23956:28090402,43234046:213910 +k1,23956:28660173,43234046:213911 +k1,23956:30100262,43234046:213910 +k1,23956:31297213,43234046:213911 +k1,23956:32583029,43234046:0 +) +(1,23957:6764466,44099126:25818563,505283,122846 +k1,23956:9116825,44099126:284043 +k1,23956:10685373,44099126:284042 +k1,23956:11585454,44099126:284043 +k1,23956:13566879,44099126:284043 +k1,23956:15861566,44099126:284042 +k1,23956:16761647,44099126:284043 +k1,23956:18544498,44099126:284043 +k1,23956:20696971,44099126:284042 +(1,23956:20696971,44099126:0,414482,122846 +r1,23996:23868931,44099126:3171960,537328,122846 +k1,23956:20696971,44099126:-3171960 +) +(1,23956:20696971,44099126:3171960,414482,122846 +k1,23956:20696971,44099126:3277 +h1,23956:23865654,44099126:0,411205,112570 +) +k1,23956:24152974,44099126:284043 +k1,23956:25935825,44099126:284043 +k1,23956:28390419,44099126:284042 +k1,23956:29422228,44099126:284043 +k1,23956:32583029,44099126:0 +) +(1,23957:6764466,44964206:25818563,513147,134348 +k1,23956:7627357,44964206:211463 +k1,23956:10632620,44964206:211463 +k1,23956:13171266,44964206:211463 +k1,23956:14042021,44964206:211463 +k1,23956:17254378,44964206:211463 +k1,23956:17821701,44964206:211463 +k1,23956:20416052,44964206:211462 +k1,23956:21286807,44964206:211463 +k1,23956:24472949,44964206:211463 +k1,23956:26880523,44964206:211463 +k1,23956:27778148,44964206:211463 +k1,23956:31015408,44964206:211463 +k1,23957:32583029,44964206:0 +) +] +g1,23996:32583029,45098554 +) +] +(1,23996:32583029,45706769:0,0,0 +g1,23996:32583029,45706769 +) +) +] +(1,23996:6630773,47279633:25952256,0,0 +h1,23996:6630773,47279633:25952256,0,0 +) +] +(1,23996:4262630,4025873:0,0,0 +[1,23996:-473656,4025873:0,0,0 +(1,23996:-473656,-710413:0,0,0 +(1,23996:-473656,-710413:0,0,0 +g1,23996:-473656,-710413 +) +g1,23996:-473656,-710413 +) +] +) +] +!31584 +}412 Input:4498:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4499:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4500:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -413748,1147 +413927,1135 @@ Input:4508:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4509:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4510:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4511:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4512:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4513:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4514:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4515:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1668 -{412 -[1,24060:4262630,47279633:28320399,43253760,0 -(1,24060:4262630,4025873:0,0,0 -[1,24060:-473656,4025873:0,0,0 -(1,24060:-473656,-710413:0,0,0 -(1,24060:-473656,-644877:0,0,0 -k1,24060:-473656,-644877:-65536 +{413 +[1,24035:4262630,47279633:28320399,43253760,0 +(1,24035:4262630,4025873:0,0,0 +[1,24035:-473656,4025873:0,0,0 +(1,24035:-473656,-710413:0,0,0 +(1,24035:-473656,-644877:0,0,0 +k1,24035:-473656,-644877:-65536 ) -(1,24060:-473656,4736287:0,0,0 -k1,24060:-473656,4736287:5209943 +(1,24035:-473656,4736287:0,0,0 +k1,24035:-473656,4736287:5209943 ) -g1,24060:-473656,-710413 +g1,24035:-473656,-710413 ) ] ) -[1,24060:6630773,47279633:25952256,43253760,0 -[1,24060:6630773,4812305:25952256,786432,0 -(1,24060:6630773,4812305:25952256,505283,11795 -(1,24060:6630773,4812305:25952256,505283,11795 -g1,24060:3078558,4812305 -[1,24060:3078558,4812305:0,0,0 -(1,24060:3078558,2439708:0,1703936,0 -k1,24060:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24060:2537886,2439708:1179648,16384,0 +[1,24035:6630773,47279633:25952256,43253760,0 +[1,24035:6630773,4812305:25952256,786432,0 +(1,24035:6630773,4812305:25952256,505283,11795 +(1,24035:6630773,4812305:25952256,505283,11795 +g1,24035:3078558,4812305 +[1,24035:3078558,4812305:0,0,0 +(1,24035:3078558,2439708:0,1703936,0 +k1,24035:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24035:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24060:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24035:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24060:3078558,4812305:0,0,0 -(1,24060:3078558,2439708:0,1703936,0 -g1,24060:29030814,2439708 -g1,24060:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24060:36151628,1915420:16384,1179648,0 +[1,24035:3078558,4812305:0,0,0 +(1,24035:3078558,2439708:0,1703936,0 +g1,24035:29030814,2439708 +g1,24035:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24035:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24060:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24035:37855564,2439708:1179648,16384,0 ) ) -k1,24060:3078556,2439708:-34777008 +k1,24035:3078556,2439708:-34777008 ) ] -[1,24060:3078558,4812305:0,0,0 -(1,24060:3078558,49800853:0,16384,2228224 -k1,24060:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24060:2537886,49800853:1179648,16384,0 +[1,24035:3078558,4812305:0,0,0 +(1,24035:3078558,49800853:0,16384,2228224 +k1,24035:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24035:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24060:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24035:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24060:3078558,4812305:0,0,0 -(1,24060:3078558,49800853:0,16384,2228224 -g1,24060:29030814,49800853 -g1,24060:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24060:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24060:37855564,49800853:1179648,16384,0 -) -) -k1,24060:3078556,49800853:-34777008 -) -] -g1,24060:6630773,4812305 -g1,24060:6630773,4812305 -g1,24060:9946239,4812305 -g1,24060:11513204,4812305 -k1,24060:31387652,4812305:19874448 -) -) -] -[1,24060:6630773,45706769:25952256,40108032,0 -(1,24060:6630773,45706769:25952256,40108032,0 -(1,24060:6630773,45706769:0,0,0 -g1,24060:6630773,45706769 -) -[1,24060:6630773,45706769:25952256,40108032,0 -v1,23998:6630773,6254097:0,393216,0 -(1,23998:6630773,20934680:25952256,15073799,0 -g1,23998:6630773,20934680 -g1,23998:6237557,20934680 -r1,24060:6368629,20934680:131072,15073799,0 -g1,23998:6567858,20934680 -g1,23998:6764466,20934680 -[1,23998:6764466,20934680:25818563,15073799,0 -v1,23963:6764466,6254097:0,393216,0 -(1,23976:6764466,11423499:25818563,5562618,196608 -g1,23976:6764466,11423499 -g1,23976:6764466,11423499 -g1,23976:6567858,11423499 -(1,23976:6567858,11423499:0,5562618,196608 -r1,24060:32779637,11423499:26211779,5759226,196608 -k1,23976:6567857,11423499:-26211780 -) -(1,23976:6567858,11423499:26211779,5562618,196608 -[1,23976:6764466,11423499:25818563,5366010,0 -(1,23965:6764466,6488534:25818563,431045,112852 -(1,23964:6764466,6488534:0,0,0 -g1,23964:6764466,6488534 -g1,23964:6764466,6488534 -g1,23964:6436786,6488534 -(1,23964:6436786,6488534:0,0,0 -) -g1,23964:6764466,6488534 -) -k1,23965:6764466,6488534:0 -g1,23965:12075729,6488534 -g1,23965:12739637,6488534 -g1,23965:24026070,6488534 -g1,23965:29005379,6488534 -g1,23965:29669287,6488534 -h1,23965:31661011,6488534:0,0,0 -k1,23965:32583029,6488534:922018 -g1,23965:32583029,6488534 -) -(1,23975:6764466,7304461:25818563,424439,6605 -(1,23967:6764466,7304461:0,0,0 -g1,23967:6764466,7304461 -g1,23967:6764466,7304461 -g1,23967:6436786,7304461 -(1,23967:6436786,7304461:0,0,0 -) -g1,23967:6764466,7304461 -) -g1,23975:7760328,7304461 -g1,23975:8424236,7304461 -g1,23975:9088144,7304461 -g1,23975:11743776,7304461 -g1,23975:12407684,7304461 -g1,23975:13071592,7304461 -h1,23975:13403546,7304461:0,0,0 -k1,23975:32583030,7304461:19179484 -g1,23975:32583030,7304461 -) -(1,23975:6764466,7989316:25818563,424439,9908 -h1,23975:6764466,7989316:0,0,0 -g1,23975:7760328,7989316 -g1,23975:8092282,7989316 -g1,23975:8424236,7989316 -g1,23975:10084006,7989316 -g1,23975:10415960,7989316 -g1,23975:10747914,7989316 -g1,23975:12407684,7989316 -g1,23975:12739638,7989316 -g1,23975:14399408,7989316 -h1,23975:15727224,7989316:0,0,0 -k1,23975:32583028,7989316:16855804 -g1,23975:32583028,7989316 -) -(1,23975:6764466,8674171:25818563,424439,6605 -h1,23975:6764466,8674171:0,0,0 -g1,23975:7760328,8674171 -g1,23975:8092282,8674171 -g1,23975:8424236,8674171 -g1,23975:10415960,8674171 -g1,23975:12407684,8674171 -g1,23975:14399408,8674171 -k1,23975:14399408,8674171:0 -h1,23975:16059178,8674171:0,0,0 -k1,23975:32583029,8674171:16523851 -g1,23975:32583029,8674171 -) -(1,23975:6764466,9359026:25818563,407923,9908 -h1,23975:6764466,9359026:0,0,0 -g1,23975:7760328,9359026 -g1,23975:8424236,9359026 -g1,23975:9752052,9359026 -g1,23975:10084006,9359026 -g1,23975:10415960,9359026 -g1,23975:10747914,9359026 -g1,23975:12407684,9359026 -g1,23975:12739638,9359026 -g1,23975:13071592,9359026 -g1,23975:14399408,9359026 -h1,23975:15395270,9359026:0,0,0 -k1,23975:32583030,9359026:17187760 -g1,23975:32583030,9359026 -) -(1,23975:6764466,10043881:25818563,407923,9908 -h1,23975:6764466,10043881:0,0,0 -g1,23975:7760328,10043881 -g1,23975:8424236,10043881 -g1,23975:9752052,10043881 -g1,23975:10084006,10043881 -g1,23975:10415960,10043881 -g1,23975:10747914,10043881 -g1,23975:12407684,10043881 -g1,23975:12739638,10043881 -g1,23975:13071592,10043881 -g1,23975:13403546,10043881 -g1,23975:14399408,10043881 -h1,23975:15395270,10043881:0,0,0 -k1,23975:32583030,10043881:17187760 -g1,23975:32583030,10043881 -) -(1,23975:6764466,10728736:25818563,407923,9908 -h1,23975:6764466,10728736:0,0,0 -g1,23975:7760328,10728736 -g1,23975:8424236,10728736 -g1,23975:10084006,10728736 -g1,23975:10415960,10728736 -g1,23975:10747914,10728736 -g1,23975:12407684,10728736 -g1,23975:12739638,10728736 -g1,23975:13071592,10728736 -g1,23975:13403546,10728736 -g1,23975:14399408,10728736 -h1,23975:15395270,10728736:0,0,0 -k1,23975:32583030,10728736:17187760 -g1,23975:32583030,10728736 -) -(1,23975:6764466,11413591:25818563,424439,9908 -h1,23975:6764466,11413591:0,0,0 -g1,23975:7760328,11413591 -g1,23975:8424236,11413591 -g1,23975:9088144,11413591 -g1,23975:9420098,11413591 -g1,23975:9752052,11413591 -g1,23975:10084006,11413591 -g1,23975:10415960,11413591 -g1,23975:10747914,11413591 -g1,23975:11743776,11413591 -g1,23975:12075730,11413591 -g1,23975:12407684,11413591 -g1,23975:12739638,11413591 -g1,23975:14399408,11413591 -h1,23975:15395270,11413591:0,0,0 -k1,23975:32583030,11413591:17187760 -g1,23975:32583030,11413591 -) -] -) -g1,23976:32583029,11423499 -g1,23976:6764466,11423499 -g1,23976:6764466,11423499 -g1,23976:32583029,11423499 -g1,23976:32583029,11423499 -) -h1,23976:6764466,11620107:0,0,0 -v1,23980:6764466,12304962:0,393216,0 -(1,23996:6764466,20738072:25818563,8826326,196608 -g1,23996:6764466,20738072 -g1,23996:6764466,20738072 -g1,23996:6567858,20738072 -(1,23996:6567858,20738072:0,8826326,196608 -r1,24060:32779637,20738072:26211779,9022934,196608 -k1,23996:6567857,20738072:-26211780 -) -(1,23996:6567858,20738072:26211779,8826326,196608 -[1,23996:6764466,20738072:25818563,8629718,0 -(1,23982:6764466,12539399:25818563,431045,112852 -(1,23981:6764466,12539399:0,0,0 -g1,23981:6764466,12539399 -g1,23981:6764466,12539399 -g1,23981:6436786,12539399 -(1,23981:6436786,12539399:0,0,0 -) -g1,23981:6764466,12539399 -) -k1,23982:6764466,12539399:0 -g1,23982:12075729,12539399 -g1,23982:12739637,12539399 -g1,23982:24026070,12539399 -g1,23982:29005379,12539399 -g1,23982:29669287,12539399 -k1,23982:29669287,12539399:0 -h1,23982:31661011,12539399:0,0,0 -k1,23982:32583029,12539399:922018 -g1,23982:32583029,12539399 -) -(1,23983:6764466,13224254:25818563,424439,112852 -h1,23983:6764466,13224254:0,0,0 -g1,23983:7096420,13224254 -g1,23983:7428374,13224254 -g1,23983:7760328,13224254 -g1,23983:8092282,13224254 -g1,23983:8424236,13224254 -g1,23983:8756190,13224254 -g1,23983:9088144,13224254 -g1,23983:9420098,13224254 -g1,23983:9752052,13224254 -g1,23983:10084006,13224254 -g1,23983:10415960,13224254 -g1,23983:13735499,13224254 -g1,23983:14399407,13224254 -h1,23983:15395269,13224254:0,0,0 -k1,23983:32583029,13224254:17187760 -g1,23983:32583029,13224254 -) -(1,23987:6764466,14564469:25818563,431045,112852 -g1,23987:7760328,14564469 -g1,23987:10747913,14564469 -g1,23987:11411821,14564469 -g1,23987:14067453,14564469 -k1,23987:32583029,14564469:15859945 -g1,23987:32583029,14564469 -) -(1,23987:6764466,15249324:25818563,431045,106246 -g1,23987:7760328,15249324 -g1,23987:9088144,15249324 -g1,23987:9420098,15249324 -g1,23987:10747914,15249324 -g1,23987:13735499,15249324 -g1,23987:16059177,15249324 -g1,23987:16391131,15249324 -g1,23987:16723085,15249324 -g1,23987:17055039,15249324 -g1,23987:17386993,15249324 -g1,23987:17718947,15249324 -g1,23987:18050901,15249324 -g1,23987:18382855,15249324 -g1,23987:18714809,15249324 -g1,23987:19046763,15249324 -g1,23987:19378717,15249324 -g1,23987:19710671,15249324 -g1,23987:20042625,15249324 -g1,23987:20374579,15249324 -g1,23987:20706533,15249324 -g1,23987:21038487,15249324 -g1,23987:21370441,15249324 -g1,23987:21702395,15249324 -g1,23987:22034349,15249324 -g1,23987:22366303,15249324 -g1,23987:22698257,15249324 -g1,23987:23030211,15249324 -g1,23987:23362165,15249324 -g1,23987:23694119,15249324 -g1,23987:24026073,15249324 -g1,23987:24358027,15249324 -g1,23987:24689981,15249324 -g1,23987:25021935,15249324 -g1,23987:25353889,15249324 -k1,23987:32583029,15249324:5901324 -g1,23987:32583029,15249324 -) -(1,23987:6764466,15934179:25818563,424439,112852 -g1,23987:7760328,15934179 -g1,23987:8092282,15934179 -g1,23987:8424236,15934179 -g1,23987:9088144,15934179 -g1,23987:10747914,15934179 -g1,23987:11411822,15934179 -g1,23987:13735500,15934179 -g1,23987:14067454,15934179 -g1,23987:14399408,15934179 -g1,23987:14731362,15934179 -g1,23987:15063316,15934179 -g1,23987:15395270,15934179 -g1,23987:16059178,15934179 -k1,23987:32583029,15934179:5901326 -g1,23987:32583029,15934179 -) -(1,23995:6764466,16619034:25818563,424439,6605 -(1,23987:6764466,16619034:0,0,0 -g1,23987:6764466,16619034 -g1,23987:6764466,16619034 -g1,23987:6436786,16619034 -(1,23987:6436786,16619034:0,0,0 -) -g1,23987:6764466,16619034 -) -g1,23995:7760328,16619034 -g1,23995:8424236,16619034 -g1,23995:9088144,16619034 -g1,23995:11743776,16619034 -g1,23995:12407684,16619034 -g1,23995:13071592,16619034 -h1,23995:13403546,16619034:0,0,0 -k1,23995:32583030,16619034:19179484 -g1,23995:32583030,16619034 -) -(1,23995:6764466,17303889:25818563,424439,9908 -h1,23995:6764466,17303889:0,0,0 -g1,23995:7760328,17303889 -g1,23995:8092282,17303889 -g1,23995:8424236,17303889 -g1,23995:8756190,17303889 -g1,23995:10415960,17303889 -g1,23995:10747914,17303889 -g1,23995:12407684,17303889 -g1,23995:12739638,17303889 -g1,23995:14399408,17303889 -h1,23995:15727224,17303889:0,0,0 -k1,23995:32583028,17303889:16855804 -g1,23995:32583028,17303889 -) -(1,23995:6764466,17988744:25818563,424439,6605 -h1,23995:6764466,17988744:0,0,0 -g1,23995:7760328,17988744 -g1,23995:8092282,17988744 -g1,23995:8424236,17988744 -g1,23995:10415960,17988744 -g1,23995:12407684,17988744 -g1,23995:14399408,17988744 -k1,23995:14399408,17988744:0 -h1,23995:16059178,17988744:0,0,0 -k1,23995:32583029,17988744:16523851 -g1,23995:32583029,17988744 -) -(1,23995:6764466,18673599:25818563,407923,9908 -h1,23995:6764466,18673599:0,0,0 -g1,23995:7760328,18673599 -g1,23995:8424236,18673599 -g1,23995:8756190,18673599 -g1,23995:9088144,18673599 -g1,23995:9752052,18673599 -g1,23995:10084006,18673599 -g1,23995:10415960,18673599 -g1,23995:10747914,18673599 -g1,23995:12407684,18673599 -g1,23995:12739638,18673599 -g1,23995:13071592,18673599 -g1,23995:14399408,18673599 -h1,23995:15395270,18673599:0,0,0 -k1,23995:32583030,18673599:17187760 -g1,23995:32583030,18673599 -) -(1,23995:6764466,19358454:25818563,407923,9908 -h1,23995:6764466,19358454:0,0,0 -g1,23995:7760328,19358454 -g1,23995:8424236,19358454 -g1,23995:8756190,19358454 -g1,23995:9088144,19358454 -g1,23995:10415960,19358454 -g1,23995:10747914,19358454 -g1,23995:12407684,19358454 -g1,23995:12739638,19358454 -g1,23995:13071592,19358454 -g1,23995:13403546,19358454 -g1,23995:14399408,19358454 -h1,23995:15395270,19358454:0,0,0 -k1,23995:32583030,19358454:17187760 -g1,23995:32583030,19358454 -) -(1,23995:6764466,20043309:25818563,407923,9908 -h1,23995:6764466,20043309:0,0,0 -g1,23995:7760328,20043309 -g1,23995:8424236,20043309 -g1,23995:8756190,20043309 -g1,23995:10415960,20043309 -g1,23995:10747914,20043309 -g1,23995:12407684,20043309 -g1,23995:12739638,20043309 -g1,23995:13071592,20043309 -g1,23995:13403546,20043309 -g1,23995:14399408,20043309 -h1,23995:15395270,20043309:0,0,0 -k1,23995:32583030,20043309:17187760 -g1,23995:32583030,20043309 -) -(1,23995:6764466,20728164:25818563,424439,9908 -h1,23995:6764466,20728164:0,0,0 -g1,23995:7760328,20728164 -g1,23995:8424236,20728164 -g1,23995:8756190,20728164 -g1,23995:9752052,20728164 -g1,23995:10084006,20728164 -g1,23995:10415960,20728164 -g1,23995:10747914,20728164 -g1,23995:11743776,20728164 -g1,23995:12075730,20728164 -g1,23995:12407684,20728164 -g1,23995:12739638,20728164 -g1,23995:14399408,20728164 -h1,23995:15395270,20728164:0,0,0 -k1,23995:32583030,20728164:17187760 -g1,23995:32583030,20728164 -) -] -) -g1,23996:32583029,20738072 -g1,23996:6764466,20738072 -g1,23996:6764466,20738072 -g1,23996:32583029,20738072 -g1,23996:32583029,20738072 -) -h1,23996:6764466,20934680:0,0,0 -] -g1,23998:32583029,20934680 -) -h1,23998:6630773,20934680:0,0,0 -(1,24005:6630773,21799760:25952256,513147,126483 -h1,24004:6630773,21799760:983040,0,0 -k1,24004:8982738,21799760:172238 -(1,24004:8982738,21799760:0,452978,115847 -r1,24060:11099563,21799760:2116825,568825,115847 -k1,24004:8982738,21799760:-2116825 -) -(1,24004:8982738,21799760:2116825,452978,115847 -k1,24004:8982738,21799760:3277 -h1,24004:11096286,21799760:0,411205,112570 -) -k1,24004:11271802,21799760:172239 -k1,24004:14469837,21799760:172238 -k1,24004:16209696,21799760:172238 -k1,24004:18405031,21799760:172239 -k1,24004:19568829,21799760:172238 -k1,24004:20760153,21799760:172239 -k1,24004:24704643,21799760:172238 -k1,24004:25528309,21799760:172238 -(1,24004:25528309,21799760:0,452978,115847 -r1,24060:27645134,21799760:2116825,568825,115847 -k1,24004:25528309,21799760:-2116825 -) -(1,24004:25528309,21799760:2116825,452978,115847 -k1,24004:25528309,21799760:3277 -h1,24004:27641857,21799760:0,411205,112570 -) -k1,24004:27817373,21799760:172239 -k1,24004:31015408,21799760:172238 -k1,24004:32583029,21799760:0 -) -(1,24005:6630773,22664840:25952256,505283,126483 -k1,24004:8774835,22664840:311021 -k1,24004:9713692,22664840:311022 -k1,24004:12690718,22664840:311021 -k1,24004:13653168,22664840:311022 -k1,24004:14983274,22664840:311021 -k1,24004:18133316,22664840:311022 -(1,24004:18133316,22664840:0,452978,115847 -r1,24060:22008700,22664840:3875384,568825,115847 -k1,24004:18133316,22664840:-3875384 -) -(1,24004:18133316,22664840:3875384,452978,115847 -k1,24004:18133316,22664840:3277 -h1,24004:22005423,22664840:0,411205,112570 -) -k1,24004:22493391,22664840:311021 -(1,24004:22493391,22664840:0,452978,115847 -r1,24060:26720487,22664840:4227096,568825,115847 -k1,24004:22493391,22664840:-4227096 -) -(1,24004:22493391,22664840:4227096,452978,115847 -k1,24004:22493391,22664840:3277 -h1,24004:26717210,22664840:0,411205,112570 -) -k1,24004:27205179,22664840:311022 -(1,24004:27205179,22664840:0,452978,115847 -r1,24060:31080563,22664840:3875384,568825,115847 -k1,24004:27205179,22664840:-3875384 -) -(1,24004:27205179,22664840:3875384,452978,115847 -k1,24004:27205179,22664840:3277 -h1,24004:31077286,22664840:0,411205,112570 -) -k1,24004:31391584,22664840:311021 -k1,24005:32583029,22664840:0 -) -(1,24005:6630773,23529920:25952256,513147,126483 -(1,24004:6630773,23529920:0,452978,115847 -r1,24060:11209581,23529920:4578808,568825,115847 -k1,24004:6630773,23529920:-4578808 -) -(1,24004:6630773,23529920:4578808,452978,115847 -k1,24004:6630773,23529920:3277 -h1,24004:11206304,23529920:0,411205,112570 -) -k1,24004:11678609,23529920:295358 -k1,24004:13997063,23529920:295358 -k1,24004:17052796,23529920:295357 -k1,24004:20373951,23529920:295358 -k1,24004:21953815,23529920:295358 -k1,24004:23863980,23529920:295358 -k1,24004:29653221,23529920:295358 -k1,24004:31217259,23529920:295261 -k1,24004:32583029,23529920:0 -) -(1,24005:6630773,24395000:25952256,513147,126483 -k1,24004:9597342,24395000:176701 -(1,24004:9597342,24395000:0,452978,115847 -r1,24060:15582997,24395000:5985655,568825,115847 -k1,24004:9597342,24395000:-5985655 -) -(1,24004:9597342,24395000:5985655,452978,115847 -k1,24004:9597342,24395000:3277 -h1,24004:15579720,24395000:0,411205,112570 -) -k1,24004:15759697,24395000:176700 -k1,24004:17657373,24395000:176701 -k1,24004:18189933,24395000:176700 -k1,24004:19592813,24395000:176701 -k1,24004:20752553,24395000:176700 -k1,24004:22323205,24395000:176701 -k1,24004:28160250,24395000:176700 -k1,24004:30071034,24395000:176701 -k1,24004:32583029,24395000:0 -) -(1,24005:6630773,25260080:25952256,513147,126483 -g1,24004:7777653,25260080 -g1,24004:10158576,25260080 -g1,24004:11625271,25260080 -k1,24005:32583029,25260080:18127914 -g1,24005:32583029,25260080 -) -v1,24007:6630773,25944935:0,393216,0 -(1,24012:6630773,26977079:25952256,1425360,196608 -g1,24012:6630773,26977079 -g1,24012:6630773,26977079 -g1,24012:6434165,26977079 -(1,24012:6434165,26977079:0,1425360,196608 -r1,24060:32779637,26977079:26345472,1621968,196608 -k1,24012:6434165,26977079:-26345472 -) -(1,24012:6434165,26977079:26345472,1425360,196608 -[1,24012:6630773,26977079:25952256,1228752,0 -(1,24009:6630773,26179372:25952256,431045,106246 -(1,24008:6630773,26179372:0,0,0 -g1,24008:6630773,26179372 -g1,24008:6630773,26179372 -g1,24008:6303093,26179372 -(1,24008:6303093,26179372:0,0,0 -) -g1,24008:6630773,26179372 -) -k1,24009:6630773,26179372:0 -g1,24009:14265714,26179372 -g1,24009:15925484,26179372 -g1,24009:16589392,26179372 -k1,24009:16589392,26179372:0 -h1,24009:21568701,26179372:0,0,0 -k1,24009:32583029,26179372:11014328 -g1,24009:32583029,26179372 -) -(1,24010:6630773,26864227:25952256,431045,112852 -h1,24010:6630773,26864227:0,0,0 -g1,24010:15261575,26864227 -g1,24010:17253299,26864227 -g1,24010:17917207,26864227 -h1,24010:21236746,26864227:0,0,0 -k1,24010:32583029,26864227:11346283 -g1,24010:32583029,26864227 -) -] -) -g1,24012:32583029,26977079 -g1,24012:6630773,26977079 -g1,24012:6630773,26977079 -g1,24012:32583029,26977079 -g1,24012:32583029,26977079 -) -h1,24012:6630773,27173687:0,0,0 -v1,24016:6630773,27858542:0,393216,0 -(1,24025:6630773,31597076:25952256,4131750,196608 -g1,24025:6630773,31597076 -g1,24025:6630773,31597076 -g1,24025:6434165,31597076 -(1,24025:6434165,31597076:0,4131750,196608 -r1,24060:32779637,31597076:26345472,4328358,196608 -k1,24025:6434165,31597076:-26345472 -) -(1,24025:6434165,31597076:26345472,4131750,196608 -[1,24025:6630773,31597076:25952256,3935142,0 -(1,24024:6630773,28086373:25952256,424439,106246 -(1,24017:6630773,28086373:0,0,0 -g1,24017:6630773,28086373 -g1,24017:6630773,28086373 -g1,24017:6303093,28086373 -(1,24017:6303093,28086373:0,0,0 -) -g1,24017:6630773,28086373 -) -k1,24024:6630773,28086373:0 -k1,24024:6630773,28086373:0 -h1,24024:10282267,28086373:0,0,0 -k1,24024:32583029,28086373:22300762 -g1,24024:32583029,28086373 -) -(1,24024:6630773,28771228:25952256,424439,86428 -h1,24024:6630773,28771228:0,0,0 -k1,24024:6630773,28771228:0 -h1,24024:9618359,28771228:0,0,0 -k1,24024:32583029,28771228:22964670 -g1,24024:32583029,28771228 -) -(1,24024:6630773,29456083:25952256,424439,86428 -h1,24024:6630773,29456083:0,0,0 -k1,24024:6630773,29456083:0 -h1,24024:9618359,29456083:0,0,0 -k1,24024:32583029,29456083:22964670 -g1,24024:32583029,29456083 -) -(1,24024:6630773,30140938:25952256,424439,86428 -h1,24024:6630773,30140938:0,0,0 -k1,24024:6630773,30140938:0 -h1,24024:9618359,30140938:0,0,0 -k1,24024:32583029,30140938:22964670 -g1,24024:32583029,30140938 -) -(1,24024:6630773,30825793:25952256,424439,86428 -h1,24024:6630773,30825793:0,0,0 -k1,24024:6630773,30825793:0 -h1,24024:9618359,30825793:0,0,0 -k1,24024:32583029,30825793:22964670 -g1,24024:32583029,30825793 -) -(1,24024:6630773,31510648:25952256,424439,86428 -h1,24024:6630773,31510648:0,0,0 -k1,24024:6630773,31510648:0 -h1,24024:9618359,31510648:0,0,0 -k1,24024:32583029,31510648:22964670 -g1,24024:32583029,31510648 -) -] -) -g1,24025:32583029,31597076 -g1,24025:6630773,31597076 -g1,24025:6630773,31597076 -g1,24025:32583029,31597076 -g1,24025:32583029,31597076 -) -h1,24025:6630773,31793684:0,0,0 -v1,24029:6630773,32658764:0,393216,0 -(1,24030:6630773,34795749:25952256,2530201,0 -g1,24030:6630773,34795749 -g1,24030:6237557,34795749 -r1,24060:6368629,34795749:131072,2530201,0 -g1,24030:6567858,34795749 -g1,24030:6764466,34795749 -[1,24030:6764466,34795749:25818563,2530201,0 -(1,24030:6764466,32931241:25818563,665693,196608 -(1,24029:6764466,32931241:0,665693,196608 -r1,24060:7868133,32931241:1103667,862301,196608 -k1,24029:6764466,32931241:-1103667 -) -(1,24029:6764466,32931241:1103667,665693,196608 -) -k1,24029:8086964,32931241:218831 -k1,24029:9813182,32931241:327680 -k1,24029:12914286,32931241:218831 -k1,24029:14152202,32931241:218831 -k1,24029:16529789,32931241:218831 -k1,24029:18316241,32931241:218831 -(1,24029:18316241,32931241:0,452978,115847 -r1,24060:24301896,32931241:5985655,568825,115847 -k1,24029:18316241,32931241:-5985655 -) -(1,24029:18316241,32931241:5985655,452978,115847 -k1,24029:18316241,32931241:3277 -h1,24029:24298619,32931241:0,411205,112570 -) -k1,24029:24520727,32931241:218831 -k1,24029:25931003,32931241:218831 -(1,24029:25931003,32931241:0,452978,115847 -r1,24060:29806387,32931241:3875384,568825,115847 -k1,24029:25931003,32931241:-3875384 -) -(1,24029:25931003,32931241:3875384,452978,115847 -k1,24029:25931003,32931241:3277 -h1,24029:29803110,32931241:0,411205,112570 -) -k1,24029:30198888,32931241:218831 -k1,24029:32051532,32931241:218831 -k1,24029:32583029,32931241:0 -) -(1,24030:6764466,33796321:25818563,513147,126483 -k1,24029:7984044,33796321:200493 -k1,24029:11697923,33796321:200494 -k1,24029:13473902,33796321:200493 -k1,24029:14132492,33796321:200493 -k1,24029:16458319,33796321:200494 -k1,24029:18356850,33796321:200493 -k1,24029:19727816,33796321:200493 -k1,24029:22110003,33796321:200493 -k1,24029:23329582,33796321:200494 -k1,24029:25816626,33796321:200493 -k1,24029:27285895,33796321:200492 -k1,24029:28469428,33796321:200493 -k1,24029:29937388,33796321:200494 -k1,24029:31759897,33796321:200493 -k1,24029:32583029,33796321:0 -) -(1,24030:6764466,34661401:25818563,513147,134348 -g1,24029:7982780,34661401 -g1,24029:10515746,34661401 -g1,24029:11885448,34661401 -g1,24029:13076237,34661401 -g1,24029:15184530,34661401 -g1,24029:16575204,34661401 -g1,24029:18168384,34661401 -g1,24029:19386698,34661401 -g1,24029:21427489,34661401 -g1,24029:24138713,34661401 -g1,24029:24997234,34661401 -g1,24029:26655294,34661401 -k1,24030:32583029,34661401:2350125 -g1,24030:32583029,34661401 -) -] -g1,24030:32583029,34795749 -) -h1,24030:6630773,34795749:0,0,0 -(1,24033:6630773,35660829:25952256,513147,126483 -h1,24032:6630773,35660829:983040,0,0 -k1,24032:9052214,35660829:241714 -k1,24032:10560083,35660829:241713 -k1,24032:11461089,35660829:241714 -k1,24032:14728599,35660829:241713 -(1,24032:14728599,35660829:0,452978,115847 -r1,24060:18955695,35660829:4227096,568825,115847 -k1,24032:14728599,35660829:-4227096 -) -(1,24032:14728599,35660829:4227096,452978,115847 -k1,24032:14728599,35660829:3277 -h1,24032:18952418,35660829:0,411205,112570 -) -k1,24032:19197409,35660829:241714 -k1,24032:20630567,35660829:241713 -(1,24032:20630567,35660829:0,452978,115847 -r1,24060:25209375,35660829:4578808,568825,115847 -k1,24032:20630567,35660829:-4578808 -) -(1,24032:20630567,35660829:4578808,452978,115847 -k1,24032:20630567,35660829:3277 -h1,24032:25206098,35660829:0,411205,112570 -) -k1,24032:25451089,35660829:241714 -k1,24032:27105103,35660829:241713 -k1,24032:28538262,35660829:241714 -k1,24032:30394782,35660829:241713 -k1,24033:32583029,35660829:0 -) -(1,24033:6630773,36525909:25952256,505283,126483 -k1,24032:7725984,36525909:202611 -k1,24032:10236773,36525909:202611 -k1,24032:12899606,36525909:202611 -k1,24032:16752573,36525909:202612 -k1,24032:19723425,36525909:202611 -k1,24032:20577464,36525909:202611 -k1,24032:22214003,36525909:202611 -k1,24032:22831454,36525909:202608 -(1,24032:22831454,36525909:0,452978,115847 -r1,24060:26706838,36525909:3875384,568825,115847 -k1,24032:22831454,36525909:-3875384 -) -(1,24032:22831454,36525909:3875384,452978,115847 -k1,24032:22831454,36525909:3277 -h1,24032:26703561,36525909:0,411205,112570 -) -k1,24032:26909449,36525909:202611 -k1,24032:28303505,36525909:202611 -(1,24032:28303505,36525909:0,452978,115847 -r1,24060:32530601,36525909:4227096,568825,115847 -k1,24032:28303505,36525909:-4227096 -) -(1,24032:28303505,36525909:4227096,452978,115847 -k1,24032:28303505,36525909:3277 -h1,24032:32527324,36525909:0,411205,112570 -) -k1,24032:32583029,36525909:0 -) -(1,24033:6630773,37390989:25952256,513147,115847 -k1,24032:9992150,37390989:241208 -(1,24032:9992150,37390989:0,459977,115847 -r1,24060:13867534,37390989:3875384,575824,115847 -k1,24032:9992150,37390989:-3875384 -) -(1,24032:9992150,37390989:3875384,459977,115847 -k1,24032:9992150,37390989:3277 -h1,24032:13864257,37390989:0,411205,112570 -) -k1,24032:14108742,37390989:241208 -k1,24032:15541395,37390989:241208 -(1,24032:15541395,37390989:0,459977,115847 -r1,24060:19768491,37390989:4227096,575824,115847 -k1,24032:15541395,37390989:-4227096 -) -(1,24032:15541395,37390989:4227096,459977,115847 -k1,24032:15541395,37390989:3277 -h1,24032:19765214,37390989:0,411205,112570 -) -k1,24032:20009699,37390989:241208 -k1,24032:21663208,37390989:241208 -k1,24032:23095861,37390989:241208 -k1,24032:24951876,37390989:241208 -k1,24032:26212169,37390989:241208 -k1,24032:29202612,37390989:241208 -k1,24032:30103112,37390989:241208 -k1,24032:30700180,37390989:241208 -k1,24032:32583029,37390989:0 -) -(1,24033:6630773,38256069:25952256,513147,134348 -k1,24032:8215054,38256069:358102 -k1,24032:9556197,38256069:358103 -k1,24032:11355436,38256069:358102 -k1,24032:12904984,38256069:358103 -k1,24032:15004378,38256069:358102 -k1,24032:15718341,38256069:358103 -k1,24032:17949462,38256069:358102 -k1,24032:21282244,38256069:358103 -k1,24032:23679826,38256069:358102 -k1,24032:27158098,38256069:358103 -(1,24032:27158098,38256069:0,459977,115847 -r1,24060:31033482,38256069:3875384,575824,115847 -k1,24032:27158098,38256069:-3875384 -) -(1,24032:27158098,38256069:3875384,459977,115847 -k1,24032:27158098,38256069:3277 -h1,24032:31030205,38256069:0,411205,112570 -) -k1,24032:31391584,38256069:358102 -k1,24033:32583029,38256069:0 -) -(1,24033:6630773,39121149:25952256,513147,126483 -(1,24032:6630773,39121149:0,459977,115847 -r1,24060:10857869,39121149:4227096,575824,115847 -k1,24032:6630773,39121149:-4227096 -) -(1,24032:6630773,39121149:4227096,459977,115847 -k1,24032:6630773,39121149:3277 -h1,24032:10854592,39121149:0,411205,112570 -) -k1,24032:11095950,39121149:238081 -k1,24032:12438313,39121149:238081 -k1,24032:13962210,39121149:238081 -k1,24032:14948057,39121149:238081 -k1,24032:16699364,39121149:238081 -k1,24032:18331396,39121149:238081 -k1,24032:19734708,39121149:238082 -k1,24032:22280967,39121149:238081 -k1,24032:23170476,39121149:238081 -k1,24032:24820858,39121149:238081 -k1,24032:26250384,39121149:238081 -k1,24032:28103272,39121149:238081 -k1,24032:30363139,39121149:238081 -k1,24032:31914562,39121149:238081 -k1,24032:32583029,39121149:0 -) -(1,24033:6630773,39986229:25952256,513147,134348 -g1,24032:8056181,39986229 -g1,24032:9568752,39986229 -g1,24032:10427273,39986229 -g1,24032:13593972,39986229 -k1,24033:32583029,39986229:16035350 -g1,24033:32583029,39986229 -) -(1,24035:6630773,40851309:25952256,513147,134348 -h1,24034:6630773,40851309:983040,0,0 -k1,24034:9010338,40851309:199838 -k1,24034:11959411,40851309:199838 -k1,24034:12818541,40851309:199838 -k1,24034:14037464,40851309:199838 -k1,24034:16120151,40851309:199838 -k1,24034:17303029,40851309:199838 -k1,24034:18494427,40851309:199838 -k1,24034:21472992,40851309:199838 -k1,24034:22358992,40851309:199838 -k1,24034:22914690,40851309:199838 -k1,24034:26089207,40851309:199838 -k1,24034:28266922,40851309:199838 -k1,24034:29126052,40851309:199838 -k1,24034:31339156,40851309:199838 -k1,24034:32583029,40851309:0 -) -(1,24035:6630773,41716389:25952256,505283,126483 -k1,24034:8239623,41716389:241113 -k1,24034:9499822,41716389:241114 -k1,24034:13065576,41716389:241113 -k1,24034:14589885,41716389:241114 -k1,24034:15999505,41716389:241113 -k1,24034:19037040,41716389:241114 -k1,24034:20231702,41716389:241113 -k1,24034:21565301,41716389:241114 -(1,24034:21565301,41716389:0,452978,115847 -r1,24060:23330414,41716389:1765113,568825,115847 -k1,24034:21565301,41716389:-1765113 -) -(1,24034:21565301,41716389:1765113,452978,115847 -k1,24034:21565301,41716389:3277 -h1,24034:23327137,41716389:0,411205,112570 -) -k1,24034:23571527,41716389:241113 -k1,24034:24464069,41716389:241114 -k1,24034:26287221,41716389:241113 -k1,24034:26986432,41716389:241114 -k1,24034:27952373,41716389:241113 -k1,24034:29890214,41716389:241114 -k1,24034:31414522,41716389:241113 -k1,24034:32583029,41716389:0 -) -(1,24035:6630773,42581469:25952256,513147,126483 -g1,24034:10134983,42581469 -g1,24034:11962782,42581469 -g1,24034:13181096,42581469 -g1,24034:14868648,42581469 -g1,24034:15727169,42581469 -g1,24034:16282258,42581469 -g1,24034:17764682,42581469 -g1,24034:20825213,42581469 -k1,24035:32583029,42581469:10536881 -g1,24035:32583029,42581469 -) -v1,24037:6630773,43266324:0,393216,0 -(1,24060:6630773,45510161:25952256,2637053,196608 -g1,24060:6630773,45510161 -g1,24060:6630773,45510161 -g1,24060:6434165,45510161 -(1,24060:6434165,45510161:0,2637053,196608 -r1,24060:32779637,45510161:26345472,2833661,196608 -k1,24060:6434165,45510161:-26345472 -) -(1,24060:6434165,45510161:26345472,2637053,196608 -[1,24060:6630773,45510161:25952256,2440445,0 -(1,24039:6630773,43500761:25952256,431045,112852 -(1,24038:6630773,43500761:0,0,0 -g1,24038:6630773,43500761 -g1,24038:6630773,43500761 -g1,24038:6303093,43500761 -(1,24038:6303093,43500761:0,0,0 -) -g1,24038:6630773,43500761 -) -g1,24039:9286405,43500761 -g1,24039:10282267,43500761 -g1,24039:15261576,43500761 -g1,24039:15925484,43500761 -k1,24039:15925484,43500761:0 -h1,24039:26879963,43500761:0,0,0 -k1,24039:32583029,43500761:5703066 -g1,24039:32583029,43500761 -) -(1,24040:6630773,44185616:25952256,424439,112852 -h1,24040:6630773,44185616:0,0,0 -k1,24040:6630773,44185616:0 -h1,24040:11610082,44185616:0,0,0 -k1,24040:32583030,44185616:20972948 -g1,24040:32583030,44185616 -) -(1,24044:6630773,44847888:25952256,424439,79822 -(1,24042:6630773,44847888:0,0,0 -g1,24042:6630773,44847888 -g1,24042:6630773,44847888 -g1,24042:6303093,44847888 -(1,24042:6303093,44847888:0,0,0 -) -g1,24042:6630773,44847888 -) -g1,24044:7626635,44847888 -g1,24044:8954451,44847888 -h1,24044:9286405,44847888:0,0,0 -k1,24044:32583029,44847888:23296624 -g1,24044:32583029,44847888 -) -(1,24046:6630773,45510161:25952256,424439,79822 -(1,24045:6630773,45510161:0,0,0 -g1,24045:6630773,45510161 -g1,24045:6630773,45510161 -g1,24045:6303093,45510161 -(1,24045:6303093,45510161:0,0,0 -) -g1,24045:6630773,45510161 -) -k1,24046:6630773,45510161:0 -h1,24046:10614220,45510161:0,0,0 -k1,24046:32583028,45510161:21968808 -g1,24046:32583028,45510161 -) -] -) -g1,24060:32583029,45510161 -g1,24060:6630773,45510161 -g1,24060:6630773,45510161 -g1,24060:32583029,45510161 -g1,24060:32583029,45510161 -) -] -(1,24060:32583029,45706769:0,0,0 -g1,24060:32583029,45706769 -) -) -] -(1,24060:6630773,47279633:25952256,0,0 -h1,24060:6630773,47279633:25952256,0,0 -) -] -(1,24060:4262630,4025873:0,0,0 -[1,24060:-473656,4025873:0,0,0 -(1,24060:-473656,-710413:0,0,0 -(1,24060:-473656,-710413:0,0,0 -g1,24060:-473656,-710413 -) -g1,24060:-473656,-710413 -) -] -) -] -!31969 -}412 -Input:4512:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4513:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4514:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4515:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +[1,24035:3078558,4812305:0,0,0 +(1,24035:3078558,49800853:0,16384,2228224 +g1,24035:29030814,49800853 +g1,24035:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24035:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24035:37855564,49800853:1179648,16384,0 +) +) +k1,24035:3078556,49800853:-34777008 +) +] +g1,24035:6630773,4812305 +g1,24035:6630773,4812305 +g1,24035:9946239,4812305 +g1,24035:11513204,4812305 +k1,24035:31387652,4812305:19874448 +) +) +] +[1,24035:6630773,45706769:25952256,40108032,0 +(1,24035:6630773,45706769:25952256,40108032,0 +(1,24035:6630773,45706769:0,0,0 +g1,24035:6630773,45706769 +) +[1,24035:6630773,45706769:25952256,40108032,0 +v1,23996:6630773,6254097:0,393216,0 +(1,23996:6630773,23461762:25952256,17600881,0 +g1,23996:6630773,23461762 +g1,23996:6237557,23461762 +r1,24035:6368629,23461762:131072,17600881,0 +g1,23996:6567858,23461762 +g1,23996:6764466,23461762 +[1,23996:6764466,23461762:25818563,17600881,0 +(1,23957:6764466,6366164:25818563,505283,134348 +k1,23956:7893282,6366164:210001 +k1,23956:10683434,6366164:210000 +k1,23956:12778249,6366164:210001 +k1,23956:14496888,6366164:210000 +k1,23956:16717534,6366164:210001 +k1,23956:17919095,6366164:210001 +k1,23956:20848184,6366164:210000 +k1,23956:21819713,6366164:210001 +k1,23956:24649843,6366164:210001 +(1,23956:24649843,6366164:0,414482,115847 +r1,24035:25359821,6366164:709978,530329,115847 +k1,23956:24649843,6366164:-709978 +) +(1,23956:24649843,6366164:709978,414482,115847 +k1,23956:24649843,6366164:3277 +h1,23956:25356544,6366164:0,411205,112570 +) +k1,23956:25569821,6366164:210000 +k1,23956:27790467,6366164:210001 +k1,23956:29394418,6366164:210000 +k1,23956:29960279,6366164:210001 +k1,23956:32583029,6366164:0 +) +(1,23957:6764466,7231244:25818563,513147,126483 +k1,23956:7787279,7231244:215410 +k1,23956:12035776,7231244:215411 +k1,23956:13454427,7231244:215410 +k1,23956:14025698,7231244:215411 +k1,23956:15595082,7231244:215410 +k1,23956:17526880,7231244:215410 +k1,23956:19422634,7231244:215411 +k1,23956:20585695,7231244:215410 +(1,23956:20585695,7231244:0,414482,122846 +r1,24035:23757655,7231244:3171960,537328,122846 +k1,23956:20585695,7231244:-3171960 +) +(1,23956:20585695,7231244:3171960,414482,122846 +k1,23956:20585695,7231244:3277 +h1,23956:23754378,7231244:0,411205,112570 +) +k1,23956:23973065,7231244:215410 +k1,23956:24719973,7231244:215411 +k1,23956:26448609,7231244:215410 +k1,23956:27315448,7231244:215411 +k1,23956:31563944,7231244:215410 +k1,23956:32583029,7231244:0 +) +(1,23957:6764466,8096324:25818563,513147,134348 +g1,23956:10138259,8096324 +g1,23956:11731439,8096324 +g1,23956:12286528,8096324 +g1,23956:13468797,8096324 +g1,23956:15043627,8096324 +g1,23956:15598716,8096324 +g1,23956:16931063,8096324 +g1,23956:18629100,8096324 +g1,23956:19444367,8096324 +k1,23957:32583029,8096324:11072968 +g1,23957:32583029,8096324 +) +v1,23961:6764466,8781179:0,393216,0 +(1,23974:6764466,13950581:25818563,5562618,196608 +g1,23974:6764466,13950581 +g1,23974:6764466,13950581 +g1,23974:6567858,13950581 +(1,23974:6567858,13950581:0,5562618,196608 +r1,24035:32779637,13950581:26211779,5759226,196608 +k1,23974:6567857,13950581:-26211780 +) +(1,23974:6567858,13950581:26211779,5562618,196608 +[1,23974:6764466,13950581:25818563,5366010,0 +(1,23963:6764466,9015616:25818563,431045,112852 +(1,23962:6764466,9015616:0,0,0 +g1,23962:6764466,9015616 +g1,23962:6764466,9015616 +g1,23962:6436786,9015616 +(1,23962:6436786,9015616:0,0,0 +) +g1,23962:6764466,9015616 +) +k1,23963:6764466,9015616:0 +g1,23963:12075729,9015616 +g1,23963:12739637,9015616 +g1,23963:24026070,9015616 +g1,23963:29005379,9015616 +g1,23963:29669287,9015616 +h1,23963:31661011,9015616:0,0,0 +k1,23963:32583029,9015616:922018 +g1,23963:32583029,9015616 +) +(1,23973:6764466,9831543:25818563,424439,6605 +(1,23965:6764466,9831543:0,0,0 +g1,23965:6764466,9831543 +g1,23965:6764466,9831543 +g1,23965:6436786,9831543 +(1,23965:6436786,9831543:0,0,0 +) +g1,23965:6764466,9831543 +) +g1,23973:7760328,9831543 +g1,23973:8424236,9831543 +g1,23973:9088144,9831543 +g1,23973:11743776,9831543 +g1,23973:12407684,9831543 +g1,23973:13071592,9831543 +h1,23973:13403546,9831543:0,0,0 +k1,23973:32583030,9831543:19179484 +g1,23973:32583030,9831543 +) +(1,23973:6764466,10516398:25818563,424439,9908 +h1,23973:6764466,10516398:0,0,0 +g1,23973:7760328,10516398 +g1,23973:8092282,10516398 +g1,23973:8424236,10516398 +g1,23973:10084006,10516398 +g1,23973:10415960,10516398 +g1,23973:10747914,10516398 +g1,23973:12407684,10516398 +g1,23973:12739638,10516398 +g1,23973:14399408,10516398 +h1,23973:15727224,10516398:0,0,0 +k1,23973:32583028,10516398:16855804 +g1,23973:32583028,10516398 +) +(1,23973:6764466,11201253:25818563,424439,6605 +h1,23973:6764466,11201253:0,0,0 +g1,23973:7760328,11201253 +g1,23973:8092282,11201253 +g1,23973:8424236,11201253 +g1,23973:10415960,11201253 +g1,23973:12407684,11201253 +g1,23973:14399408,11201253 +k1,23973:14399408,11201253:0 +h1,23973:16059178,11201253:0,0,0 +k1,23973:32583029,11201253:16523851 +g1,23973:32583029,11201253 +) +(1,23973:6764466,11886108:25818563,407923,9908 +h1,23973:6764466,11886108:0,0,0 +g1,23973:7760328,11886108 +g1,23973:8424236,11886108 +g1,23973:9752052,11886108 +g1,23973:10084006,11886108 +g1,23973:10415960,11886108 +g1,23973:10747914,11886108 +g1,23973:12407684,11886108 +g1,23973:12739638,11886108 +g1,23973:13071592,11886108 +g1,23973:14399408,11886108 +h1,23973:15395270,11886108:0,0,0 +k1,23973:32583030,11886108:17187760 +g1,23973:32583030,11886108 +) +(1,23973:6764466,12570963:25818563,407923,9908 +h1,23973:6764466,12570963:0,0,0 +g1,23973:7760328,12570963 +g1,23973:8424236,12570963 +g1,23973:9752052,12570963 +g1,23973:10084006,12570963 +g1,23973:10415960,12570963 +g1,23973:10747914,12570963 +g1,23973:12407684,12570963 +g1,23973:12739638,12570963 +g1,23973:13071592,12570963 +g1,23973:13403546,12570963 +g1,23973:14399408,12570963 +h1,23973:15395270,12570963:0,0,0 +k1,23973:32583030,12570963:17187760 +g1,23973:32583030,12570963 +) +(1,23973:6764466,13255818:25818563,407923,9908 +h1,23973:6764466,13255818:0,0,0 +g1,23973:7760328,13255818 +g1,23973:8424236,13255818 +g1,23973:10084006,13255818 +g1,23973:10415960,13255818 +g1,23973:10747914,13255818 +g1,23973:12407684,13255818 +g1,23973:12739638,13255818 +g1,23973:13071592,13255818 +g1,23973:13403546,13255818 +g1,23973:14399408,13255818 +h1,23973:15395270,13255818:0,0,0 +k1,23973:32583030,13255818:17187760 +g1,23973:32583030,13255818 +) +(1,23973:6764466,13940673:25818563,424439,9908 +h1,23973:6764466,13940673:0,0,0 +g1,23973:7760328,13940673 +g1,23973:8424236,13940673 +g1,23973:9088144,13940673 +g1,23973:9420098,13940673 +g1,23973:9752052,13940673 +g1,23973:10084006,13940673 +g1,23973:10415960,13940673 +g1,23973:10747914,13940673 +g1,23973:11743776,13940673 +g1,23973:12075730,13940673 +g1,23973:12407684,13940673 +g1,23973:12739638,13940673 +g1,23973:14399408,13940673 +h1,23973:15395270,13940673:0,0,0 +k1,23973:32583030,13940673:17187760 +g1,23973:32583030,13940673 +) +] +) +g1,23974:32583029,13950581 +g1,23974:6764466,13950581 +g1,23974:6764466,13950581 +g1,23974:32583029,13950581 +g1,23974:32583029,13950581 +) +h1,23974:6764466,14147189:0,0,0 +v1,23978:6764466,14832044:0,393216,0 +(1,23994:6764466,23265154:25818563,8826326,196608 +g1,23994:6764466,23265154 +g1,23994:6764466,23265154 +g1,23994:6567858,23265154 +(1,23994:6567858,23265154:0,8826326,196608 +r1,24035:32779637,23265154:26211779,9022934,196608 +k1,23994:6567857,23265154:-26211780 +) +(1,23994:6567858,23265154:26211779,8826326,196608 +[1,23994:6764466,23265154:25818563,8629718,0 +(1,23980:6764466,15066481:25818563,431045,112852 +(1,23979:6764466,15066481:0,0,0 +g1,23979:6764466,15066481 +g1,23979:6764466,15066481 +g1,23979:6436786,15066481 +(1,23979:6436786,15066481:0,0,0 +) +g1,23979:6764466,15066481 +) +k1,23980:6764466,15066481:0 +g1,23980:12075729,15066481 +g1,23980:12739637,15066481 +g1,23980:24026070,15066481 +g1,23980:29005379,15066481 +g1,23980:29669287,15066481 +k1,23980:29669287,15066481:0 +h1,23980:31661011,15066481:0,0,0 +k1,23980:32583029,15066481:922018 +g1,23980:32583029,15066481 +) +(1,23981:6764466,15751336:25818563,424439,112852 +h1,23981:6764466,15751336:0,0,0 +g1,23981:7096420,15751336 +g1,23981:7428374,15751336 +g1,23981:7760328,15751336 +g1,23981:8092282,15751336 +g1,23981:8424236,15751336 +g1,23981:8756190,15751336 +g1,23981:9088144,15751336 +g1,23981:9420098,15751336 +g1,23981:9752052,15751336 +g1,23981:10084006,15751336 +g1,23981:10415960,15751336 +g1,23981:13735499,15751336 +g1,23981:14399407,15751336 +h1,23981:15395269,15751336:0,0,0 +k1,23981:32583029,15751336:17187760 +g1,23981:32583029,15751336 +) +(1,23985:6764466,17091551:25818563,431045,112852 +g1,23985:7760328,17091551 +g1,23985:10747913,17091551 +g1,23985:11411821,17091551 +g1,23985:14067453,17091551 +k1,23985:32583029,17091551:15859945 +g1,23985:32583029,17091551 +) +(1,23985:6764466,17776406:25818563,431045,106246 +g1,23985:7760328,17776406 +g1,23985:9088144,17776406 +g1,23985:9420098,17776406 +g1,23985:10747914,17776406 +g1,23985:13735499,17776406 +g1,23985:16059177,17776406 +g1,23985:16391131,17776406 +g1,23985:16723085,17776406 +g1,23985:17055039,17776406 +g1,23985:17386993,17776406 +g1,23985:17718947,17776406 +g1,23985:18050901,17776406 +g1,23985:18382855,17776406 +g1,23985:18714809,17776406 +g1,23985:19046763,17776406 +g1,23985:19378717,17776406 +g1,23985:19710671,17776406 +g1,23985:20042625,17776406 +g1,23985:20374579,17776406 +g1,23985:20706533,17776406 +g1,23985:21038487,17776406 +g1,23985:21370441,17776406 +g1,23985:21702395,17776406 +g1,23985:22034349,17776406 +g1,23985:22366303,17776406 +g1,23985:22698257,17776406 +g1,23985:23030211,17776406 +g1,23985:23362165,17776406 +g1,23985:23694119,17776406 +g1,23985:24026073,17776406 +g1,23985:24358027,17776406 +g1,23985:24689981,17776406 +g1,23985:25021935,17776406 +g1,23985:25353889,17776406 +k1,23985:32583029,17776406:5901324 +g1,23985:32583029,17776406 +) +(1,23985:6764466,18461261:25818563,424439,112852 +g1,23985:7760328,18461261 +g1,23985:8092282,18461261 +g1,23985:8424236,18461261 +g1,23985:9088144,18461261 +g1,23985:10747914,18461261 +g1,23985:11411822,18461261 +g1,23985:13735500,18461261 +g1,23985:14067454,18461261 +g1,23985:14399408,18461261 +g1,23985:14731362,18461261 +g1,23985:15063316,18461261 +g1,23985:15395270,18461261 +g1,23985:16059178,18461261 +k1,23985:32583029,18461261:5901326 +g1,23985:32583029,18461261 +) +(1,23993:6764466,19146116:25818563,424439,6605 +(1,23985:6764466,19146116:0,0,0 +g1,23985:6764466,19146116 +g1,23985:6764466,19146116 +g1,23985:6436786,19146116 +(1,23985:6436786,19146116:0,0,0 +) +g1,23985:6764466,19146116 +) +g1,23993:7760328,19146116 +g1,23993:8424236,19146116 +g1,23993:9088144,19146116 +g1,23993:11743776,19146116 +g1,23993:12407684,19146116 +g1,23993:13071592,19146116 +h1,23993:13403546,19146116:0,0,0 +k1,23993:32583030,19146116:19179484 +g1,23993:32583030,19146116 +) +(1,23993:6764466,19830971:25818563,424439,9908 +h1,23993:6764466,19830971:0,0,0 +g1,23993:7760328,19830971 +g1,23993:8092282,19830971 +g1,23993:8424236,19830971 +g1,23993:8756190,19830971 +g1,23993:10415960,19830971 +g1,23993:10747914,19830971 +g1,23993:12407684,19830971 +g1,23993:12739638,19830971 +g1,23993:14399408,19830971 +h1,23993:15727224,19830971:0,0,0 +k1,23993:32583028,19830971:16855804 +g1,23993:32583028,19830971 +) +(1,23993:6764466,20515826:25818563,424439,6605 +h1,23993:6764466,20515826:0,0,0 +g1,23993:7760328,20515826 +g1,23993:8092282,20515826 +g1,23993:8424236,20515826 +g1,23993:10415960,20515826 +g1,23993:12407684,20515826 +g1,23993:14399408,20515826 +k1,23993:14399408,20515826:0 +h1,23993:16059178,20515826:0,0,0 +k1,23993:32583029,20515826:16523851 +g1,23993:32583029,20515826 +) +(1,23993:6764466,21200681:25818563,407923,9908 +h1,23993:6764466,21200681:0,0,0 +g1,23993:7760328,21200681 +g1,23993:8424236,21200681 +g1,23993:8756190,21200681 +g1,23993:9088144,21200681 +g1,23993:9752052,21200681 +g1,23993:10084006,21200681 +g1,23993:10415960,21200681 +g1,23993:10747914,21200681 +g1,23993:12407684,21200681 +g1,23993:12739638,21200681 +g1,23993:13071592,21200681 +g1,23993:14399408,21200681 +h1,23993:15395270,21200681:0,0,0 +k1,23993:32583030,21200681:17187760 +g1,23993:32583030,21200681 +) +(1,23993:6764466,21885536:25818563,407923,9908 +h1,23993:6764466,21885536:0,0,0 +g1,23993:7760328,21885536 +g1,23993:8424236,21885536 +g1,23993:8756190,21885536 +g1,23993:9088144,21885536 +g1,23993:10415960,21885536 +g1,23993:10747914,21885536 +g1,23993:12407684,21885536 +g1,23993:12739638,21885536 +g1,23993:13071592,21885536 +g1,23993:13403546,21885536 +g1,23993:14399408,21885536 +h1,23993:15395270,21885536:0,0,0 +k1,23993:32583030,21885536:17187760 +g1,23993:32583030,21885536 +) +(1,23993:6764466,22570391:25818563,407923,9908 +h1,23993:6764466,22570391:0,0,0 +g1,23993:7760328,22570391 +g1,23993:8424236,22570391 +g1,23993:8756190,22570391 +g1,23993:10415960,22570391 +g1,23993:10747914,22570391 +g1,23993:12407684,22570391 +g1,23993:12739638,22570391 +g1,23993:13071592,22570391 +g1,23993:13403546,22570391 +g1,23993:14399408,22570391 +h1,23993:15395270,22570391:0,0,0 +k1,23993:32583030,22570391:17187760 +g1,23993:32583030,22570391 +) +(1,23993:6764466,23255246:25818563,424439,9908 +h1,23993:6764466,23255246:0,0,0 +g1,23993:7760328,23255246 +g1,23993:8424236,23255246 +g1,23993:8756190,23255246 +g1,23993:9752052,23255246 +g1,23993:10084006,23255246 +g1,23993:10415960,23255246 +g1,23993:10747914,23255246 +g1,23993:11743776,23255246 +g1,23993:12075730,23255246 +g1,23993:12407684,23255246 +g1,23993:12739638,23255246 +g1,23993:14399408,23255246 +h1,23993:15395270,23255246:0,0,0 +k1,23993:32583030,23255246:17187760 +g1,23993:32583030,23255246 +) +] +) +g1,23994:32583029,23265154 +g1,23994:6764466,23265154 +g1,23994:6764466,23265154 +g1,23994:32583029,23265154 +g1,23994:32583029,23265154 +) +h1,23994:6764466,23461762:0,0,0 +] +g1,23996:32583029,23461762 +) +h1,23996:6630773,23461762:0,0,0 +(1,24003:6630773,24326842:25952256,513147,126483 +h1,24002:6630773,24326842:983040,0,0 +k1,24002:8982738,24326842:172238 +(1,24002:8982738,24326842:0,452978,115847 +r1,24035:11099563,24326842:2116825,568825,115847 +k1,24002:8982738,24326842:-2116825 +) +(1,24002:8982738,24326842:2116825,452978,115847 +k1,24002:8982738,24326842:3277 +h1,24002:11096286,24326842:0,411205,112570 +) +k1,24002:11271802,24326842:172239 +k1,24002:14469837,24326842:172238 +k1,24002:16209696,24326842:172238 +k1,24002:18405031,24326842:172239 +k1,24002:19568829,24326842:172238 +k1,24002:20760153,24326842:172239 +k1,24002:24704643,24326842:172238 +k1,24002:25528309,24326842:172238 +(1,24002:25528309,24326842:0,452978,115847 +r1,24035:27645134,24326842:2116825,568825,115847 +k1,24002:25528309,24326842:-2116825 +) +(1,24002:25528309,24326842:2116825,452978,115847 +k1,24002:25528309,24326842:3277 +h1,24002:27641857,24326842:0,411205,112570 +) +k1,24002:27817373,24326842:172239 +k1,24002:31015408,24326842:172238 +k1,24002:32583029,24326842:0 +) +(1,24003:6630773,25191922:25952256,505283,126483 +k1,24002:8774835,25191922:311021 +k1,24002:9713692,25191922:311022 +k1,24002:12690718,25191922:311021 +k1,24002:13653168,25191922:311022 +k1,24002:14983274,25191922:311021 +k1,24002:18133316,25191922:311022 +(1,24002:18133316,25191922:0,452978,115847 +r1,24035:22008700,25191922:3875384,568825,115847 +k1,24002:18133316,25191922:-3875384 +) +(1,24002:18133316,25191922:3875384,452978,115847 +k1,24002:18133316,25191922:3277 +h1,24002:22005423,25191922:0,411205,112570 +) +k1,24002:22493391,25191922:311021 +(1,24002:22493391,25191922:0,452978,115847 +r1,24035:26720487,25191922:4227096,568825,115847 +k1,24002:22493391,25191922:-4227096 +) +(1,24002:22493391,25191922:4227096,452978,115847 +k1,24002:22493391,25191922:3277 +h1,24002:26717210,25191922:0,411205,112570 +) +k1,24002:27205179,25191922:311022 +(1,24002:27205179,25191922:0,452978,115847 +r1,24035:31080563,25191922:3875384,568825,115847 +k1,24002:27205179,25191922:-3875384 +) +(1,24002:27205179,25191922:3875384,452978,115847 +k1,24002:27205179,25191922:3277 +h1,24002:31077286,25191922:0,411205,112570 +) +k1,24002:31391584,25191922:311021 +k1,24003:32583029,25191922:0 +) +(1,24003:6630773,26057002:25952256,513147,126483 +(1,24002:6630773,26057002:0,452978,115847 +r1,24035:11209581,26057002:4578808,568825,115847 +k1,24002:6630773,26057002:-4578808 +) +(1,24002:6630773,26057002:4578808,452978,115847 +k1,24002:6630773,26057002:3277 +h1,24002:11206304,26057002:0,411205,112570 +) +k1,24002:11678609,26057002:295358 +k1,24002:13997063,26057002:295358 +k1,24002:17052796,26057002:295357 +k1,24002:20373951,26057002:295358 +k1,24002:21953815,26057002:295358 +k1,24002:23863980,26057002:295358 +k1,24002:29653221,26057002:295358 +k1,24002:31217259,26057002:295261 +k1,24002:32583029,26057002:0 +) +(1,24003:6630773,26922082:25952256,513147,126483 +k1,24002:9597342,26922082:176701 +(1,24002:9597342,26922082:0,452978,115847 +r1,24035:15582997,26922082:5985655,568825,115847 +k1,24002:9597342,26922082:-5985655 +) +(1,24002:9597342,26922082:5985655,452978,115847 +k1,24002:9597342,26922082:3277 +h1,24002:15579720,26922082:0,411205,112570 +) +k1,24002:15759697,26922082:176700 +k1,24002:17657373,26922082:176701 +k1,24002:18189933,26922082:176700 +k1,24002:19592813,26922082:176701 +k1,24002:20752553,26922082:176700 +k1,24002:22323205,26922082:176701 +k1,24002:28160250,26922082:176700 +k1,24002:30071034,26922082:176701 +k1,24002:32583029,26922082:0 +) +(1,24003:6630773,27787162:25952256,513147,126483 +g1,24002:7777653,27787162 +g1,24002:10158576,27787162 +g1,24002:11625271,27787162 +k1,24003:32583029,27787162:18127914 +g1,24003:32583029,27787162 +) +v1,24005:6630773,28472017:0,393216,0 +(1,24010:6630773,29504161:25952256,1425360,196608 +g1,24010:6630773,29504161 +g1,24010:6630773,29504161 +g1,24010:6434165,29504161 +(1,24010:6434165,29504161:0,1425360,196608 +r1,24035:32779637,29504161:26345472,1621968,196608 +k1,24010:6434165,29504161:-26345472 +) +(1,24010:6434165,29504161:26345472,1425360,196608 +[1,24010:6630773,29504161:25952256,1228752,0 +(1,24007:6630773,28706454:25952256,431045,106246 +(1,24006:6630773,28706454:0,0,0 +g1,24006:6630773,28706454 +g1,24006:6630773,28706454 +g1,24006:6303093,28706454 +(1,24006:6303093,28706454:0,0,0 +) +g1,24006:6630773,28706454 +) +k1,24007:6630773,28706454:0 +g1,24007:14265714,28706454 +g1,24007:15925484,28706454 +g1,24007:16589392,28706454 +k1,24007:16589392,28706454:0 +h1,24007:21568701,28706454:0,0,0 +k1,24007:32583029,28706454:11014328 +g1,24007:32583029,28706454 +) +(1,24008:6630773,29391309:25952256,431045,112852 +h1,24008:6630773,29391309:0,0,0 +g1,24008:15261575,29391309 +g1,24008:17253299,29391309 +g1,24008:17917207,29391309 +h1,24008:21236746,29391309:0,0,0 +k1,24008:32583029,29391309:11346283 +g1,24008:32583029,29391309 +) +] +) +g1,24010:32583029,29504161 +g1,24010:6630773,29504161 +g1,24010:6630773,29504161 +g1,24010:32583029,29504161 +g1,24010:32583029,29504161 +) +h1,24010:6630773,29700769:0,0,0 +v1,24014:6630773,30385624:0,393216,0 +(1,24023:6630773,34124158:25952256,4131750,196608 +g1,24023:6630773,34124158 +g1,24023:6630773,34124158 +g1,24023:6434165,34124158 +(1,24023:6434165,34124158:0,4131750,196608 +r1,24035:32779637,34124158:26345472,4328358,196608 +k1,24023:6434165,34124158:-26345472 +) +(1,24023:6434165,34124158:26345472,4131750,196608 +[1,24023:6630773,34124158:25952256,3935142,0 +(1,24022:6630773,30613455:25952256,424439,106246 +(1,24015:6630773,30613455:0,0,0 +g1,24015:6630773,30613455 +g1,24015:6630773,30613455 +g1,24015:6303093,30613455 +(1,24015:6303093,30613455:0,0,0 +) +g1,24015:6630773,30613455 +) +k1,24022:6630773,30613455:0 +k1,24022:6630773,30613455:0 +h1,24022:10282267,30613455:0,0,0 +k1,24022:32583029,30613455:22300762 +g1,24022:32583029,30613455 +) +(1,24022:6630773,31298310:25952256,424439,86428 +h1,24022:6630773,31298310:0,0,0 +k1,24022:6630773,31298310:0 +h1,24022:9618359,31298310:0,0,0 +k1,24022:32583029,31298310:22964670 +g1,24022:32583029,31298310 +) +(1,24022:6630773,31983165:25952256,424439,86428 +h1,24022:6630773,31983165:0,0,0 +k1,24022:6630773,31983165:0 +h1,24022:9618359,31983165:0,0,0 +k1,24022:32583029,31983165:22964670 +g1,24022:32583029,31983165 +) +(1,24022:6630773,32668020:25952256,424439,86428 +h1,24022:6630773,32668020:0,0,0 +k1,24022:6630773,32668020:0 +h1,24022:9618359,32668020:0,0,0 +k1,24022:32583029,32668020:22964670 +g1,24022:32583029,32668020 +) +(1,24022:6630773,33352875:25952256,424439,86428 +h1,24022:6630773,33352875:0,0,0 +k1,24022:6630773,33352875:0 +h1,24022:9618359,33352875:0,0,0 +k1,24022:32583029,33352875:22964670 +g1,24022:32583029,33352875 +) +(1,24022:6630773,34037730:25952256,424439,86428 +h1,24022:6630773,34037730:0,0,0 +k1,24022:6630773,34037730:0 +h1,24022:9618359,34037730:0,0,0 +k1,24022:32583029,34037730:22964670 +g1,24022:32583029,34037730 +) +] +) +g1,24023:32583029,34124158 +g1,24023:6630773,34124158 +g1,24023:6630773,34124158 +g1,24023:32583029,34124158 +g1,24023:32583029,34124158 +) +h1,24023:6630773,34320766:0,0,0 +v1,24027:6630773,35185846:0,393216,0 +(1,24028:6630773,37322831:25952256,2530201,0 +g1,24028:6630773,37322831 +g1,24028:6237557,37322831 +r1,24035:6368629,37322831:131072,2530201,0 +g1,24028:6567858,37322831 +g1,24028:6764466,37322831 +[1,24028:6764466,37322831:25818563,2530201,0 +(1,24028:6764466,35458323:25818563,665693,196608 +(1,24027:6764466,35458323:0,665693,196608 +r1,24035:7868133,35458323:1103667,862301,196608 +k1,24027:6764466,35458323:-1103667 +) +(1,24027:6764466,35458323:1103667,665693,196608 +) +k1,24027:8086964,35458323:218831 +k1,24027:9813182,35458323:327680 +k1,24027:12914286,35458323:218831 +k1,24027:14152202,35458323:218831 +k1,24027:16529789,35458323:218831 +k1,24027:18316241,35458323:218831 +(1,24027:18316241,35458323:0,452978,115847 +r1,24035:24301896,35458323:5985655,568825,115847 +k1,24027:18316241,35458323:-5985655 +) +(1,24027:18316241,35458323:5985655,452978,115847 +k1,24027:18316241,35458323:3277 +h1,24027:24298619,35458323:0,411205,112570 +) +k1,24027:24520727,35458323:218831 +k1,24027:25931003,35458323:218831 +(1,24027:25931003,35458323:0,452978,115847 +r1,24035:29806387,35458323:3875384,568825,115847 +k1,24027:25931003,35458323:-3875384 +) +(1,24027:25931003,35458323:3875384,452978,115847 +k1,24027:25931003,35458323:3277 +h1,24027:29803110,35458323:0,411205,112570 +) +k1,24027:30198888,35458323:218831 +k1,24027:32051532,35458323:218831 +k1,24027:32583029,35458323:0 +) +(1,24028:6764466,36323403:25818563,513147,126483 +k1,24027:7984044,36323403:200493 +k1,24027:11697923,36323403:200494 +k1,24027:13473902,36323403:200493 +k1,24027:14132492,36323403:200493 +k1,24027:16458319,36323403:200494 +k1,24027:18356850,36323403:200493 +k1,24027:19727816,36323403:200493 +k1,24027:22110003,36323403:200493 +k1,24027:23329582,36323403:200494 +k1,24027:25816626,36323403:200493 +k1,24027:27285895,36323403:200492 +k1,24027:28469428,36323403:200493 +k1,24027:29937388,36323403:200494 +k1,24027:31759897,36323403:200493 +k1,24027:32583029,36323403:0 +) +(1,24028:6764466,37188483:25818563,513147,134348 +g1,24027:7982780,37188483 +g1,24027:10515746,37188483 +g1,24027:11885448,37188483 +g1,24027:13076237,37188483 +g1,24027:15184530,37188483 +g1,24027:16575204,37188483 +g1,24027:18168384,37188483 +g1,24027:19386698,37188483 +g1,24027:21427489,37188483 +g1,24027:24138713,37188483 +g1,24027:24997234,37188483 +g1,24027:26655294,37188483 +k1,24028:32583029,37188483:2350125 +g1,24028:32583029,37188483 +) +] +g1,24028:32583029,37322831 +) +h1,24028:6630773,37322831:0,0,0 +(1,24031:6630773,38187911:25952256,513147,126483 +h1,24030:6630773,38187911:983040,0,0 +k1,24030:9052214,38187911:241714 +k1,24030:10560083,38187911:241713 +k1,24030:11461089,38187911:241714 +k1,24030:14728599,38187911:241713 +(1,24030:14728599,38187911:0,452978,115847 +r1,24035:18955695,38187911:4227096,568825,115847 +k1,24030:14728599,38187911:-4227096 +) +(1,24030:14728599,38187911:4227096,452978,115847 +k1,24030:14728599,38187911:3277 +h1,24030:18952418,38187911:0,411205,112570 +) +k1,24030:19197409,38187911:241714 +k1,24030:20630567,38187911:241713 +(1,24030:20630567,38187911:0,452978,115847 +r1,24035:25209375,38187911:4578808,568825,115847 +k1,24030:20630567,38187911:-4578808 +) +(1,24030:20630567,38187911:4578808,452978,115847 +k1,24030:20630567,38187911:3277 +h1,24030:25206098,38187911:0,411205,112570 +) +k1,24030:25451089,38187911:241714 +k1,24030:27105103,38187911:241713 +k1,24030:28538262,38187911:241714 +k1,24030:30394782,38187911:241713 +k1,24031:32583029,38187911:0 +) +(1,24031:6630773,39052991:25952256,505283,126483 +k1,24030:7725984,39052991:202611 +k1,24030:10236773,39052991:202611 +k1,24030:12899606,39052991:202611 +k1,24030:16752573,39052991:202612 +k1,24030:19723425,39052991:202611 +k1,24030:20577464,39052991:202611 +k1,24030:22214003,39052991:202611 +k1,24030:22831454,39052991:202608 +(1,24030:22831454,39052991:0,452978,115847 +r1,24035:26706838,39052991:3875384,568825,115847 +k1,24030:22831454,39052991:-3875384 +) +(1,24030:22831454,39052991:3875384,452978,115847 +k1,24030:22831454,39052991:3277 +h1,24030:26703561,39052991:0,411205,112570 +) +k1,24030:26909449,39052991:202611 +k1,24030:28303505,39052991:202611 +(1,24030:28303505,39052991:0,452978,115847 +r1,24035:32530601,39052991:4227096,568825,115847 +k1,24030:28303505,39052991:-4227096 +) +(1,24030:28303505,39052991:4227096,452978,115847 +k1,24030:28303505,39052991:3277 +h1,24030:32527324,39052991:0,411205,112570 +) +k1,24030:32583029,39052991:0 +) +(1,24031:6630773,39918071:25952256,513147,115847 +k1,24030:9992150,39918071:241208 +(1,24030:9992150,39918071:0,459977,115847 +r1,24035:13867534,39918071:3875384,575824,115847 +k1,24030:9992150,39918071:-3875384 +) +(1,24030:9992150,39918071:3875384,459977,115847 +k1,24030:9992150,39918071:3277 +h1,24030:13864257,39918071:0,411205,112570 +) +k1,24030:14108742,39918071:241208 +k1,24030:15541395,39918071:241208 +(1,24030:15541395,39918071:0,459977,115847 +r1,24035:19768491,39918071:4227096,575824,115847 +k1,24030:15541395,39918071:-4227096 +) +(1,24030:15541395,39918071:4227096,459977,115847 +k1,24030:15541395,39918071:3277 +h1,24030:19765214,39918071:0,411205,112570 +) +k1,24030:20009699,39918071:241208 +k1,24030:21663208,39918071:241208 +k1,24030:23095861,39918071:241208 +k1,24030:24951876,39918071:241208 +k1,24030:26212169,39918071:241208 +k1,24030:29202612,39918071:241208 +k1,24030:30103112,39918071:241208 +k1,24030:30700180,39918071:241208 +k1,24030:32583029,39918071:0 +) +(1,24031:6630773,40783151:25952256,513147,134348 +k1,24030:8215054,40783151:358102 +k1,24030:9556197,40783151:358103 +k1,24030:11355436,40783151:358102 +k1,24030:12904984,40783151:358103 +k1,24030:15004378,40783151:358102 +k1,24030:15718341,40783151:358103 +k1,24030:17949462,40783151:358102 +k1,24030:21282244,40783151:358103 +k1,24030:23679826,40783151:358102 +k1,24030:27158098,40783151:358103 +(1,24030:27158098,40783151:0,459977,115847 +r1,24035:31033482,40783151:3875384,575824,115847 +k1,24030:27158098,40783151:-3875384 +) +(1,24030:27158098,40783151:3875384,459977,115847 +k1,24030:27158098,40783151:3277 +h1,24030:31030205,40783151:0,411205,112570 +) +k1,24030:31391584,40783151:358102 +k1,24031:32583029,40783151:0 +) +(1,24031:6630773,41648231:25952256,513147,126483 +(1,24030:6630773,41648231:0,459977,115847 +r1,24035:10857869,41648231:4227096,575824,115847 +k1,24030:6630773,41648231:-4227096 +) +(1,24030:6630773,41648231:4227096,459977,115847 +k1,24030:6630773,41648231:3277 +h1,24030:10854592,41648231:0,411205,112570 +) +k1,24030:11095950,41648231:238081 +k1,24030:12438313,41648231:238081 +k1,24030:13962210,41648231:238081 +k1,24030:14948057,41648231:238081 +k1,24030:16699364,41648231:238081 +k1,24030:18331396,41648231:238081 +k1,24030:19734708,41648231:238082 +k1,24030:22280967,41648231:238081 +k1,24030:23170476,41648231:238081 +k1,24030:24820858,41648231:238081 +k1,24030:26250384,41648231:238081 +k1,24030:28103272,41648231:238081 +k1,24030:30363139,41648231:238081 +k1,24030:31914562,41648231:238081 +k1,24030:32583029,41648231:0 +) +(1,24031:6630773,42513311:25952256,513147,134348 +g1,24030:8056181,42513311 +g1,24030:9568752,42513311 +g1,24030:10427273,42513311 +g1,24030:13593972,42513311 +k1,24031:32583029,42513311:16035350 +g1,24031:32583029,42513311 +) +(1,24033:6630773,43378391:25952256,513147,134348 +h1,24032:6630773,43378391:983040,0,0 +k1,24032:9010338,43378391:199838 +k1,24032:11959411,43378391:199838 +k1,24032:12818541,43378391:199838 +k1,24032:14037464,43378391:199838 +k1,24032:16120151,43378391:199838 +k1,24032:17303029,43378391:199838 +k1,24032:18494427,43378391:199838 +k1,24032:21472992,43378391:199838 +k1,24032:22358992,43378391:199838 +k1,24032:22914690,43378391:199838 +k1,24032:26089207,43378391:199838 +k1,24032:28266922,43378391:199838 +k1,24032:29126052,43378391:199838 +k1,24032:31339156,43378391:199838 +k1,24032:32583029,43378391:0 +) +(1,24033:6630773,44243471:25952256,505283,126483 +k1,24032:8239623,44243471:241113 +k1,24032:9499822,44243471:241114 +k1,24032:13065576,44243471:241113 +k1,24032:14589885,44243471:241114 +k1,24032:15999505,44243471:241113 +k1,24032:19037040,44243471:241114 +k1,24032:20231702,44243471:241113 +k1,24032:21565301,44243471:241114 +(1,24032:21565301,44243471:0,452978,115847 +r1,24035:23330414,44243471:1765113,568825,115847 +k1,24032:21565301,44243471:-1765113 +) +(1,24032:21565301,44243471:1765113,452978,115847 +k1,24032:21565301,44243471:3277 +h1,24032:23327137,44243471:0,411205,112570 +) +k1,24032:23571527,44243471:241113 +k1,24032:24464069,44243471:241114 +k1,24032:26287221,44243471:241113 +k1,24032:26986432,44243471:241114 +k1,24032:27952373,44243471:241113 +k1,24032:29890214,44243471:241114 +k1,24032:31414522,44243471:241113 +k1,24032:32583029,44243471:0 +) +(1,24033:6630773,45108551:25952256,513147,126483 +g1,24032:10134983,45108551 +g1,24032:11962782,45108551 +g1,24032:13181096,45108551 +g1,24032:14868648,45108551 +g1,24032:15727169,45108551 +g1,24032:16282258,45108551 +g1,24032:17764682,45108551 +g1,24032:20825213,45108551 +k1,24033:32583029,45108551:10536881 +g1,24033:32583029,45108551 +) +] +(1,24035:32583029,45706769:0,0,0 +g1,24035:32583029,45706769 +) +) +] +(1,24035:6630773,47279633:25952256,0,0 +h1,24035:6630773,47279633:25952256,0,0 +) +] +(1,24035:4262630,4025873:0,0,0 +[1,24035:-473656,4025873:0,0,0 +(1,24035:-473656,-710413:0,0,0 +(1,24035:-473656,-710413:0,0,0 +g1,24035:-473656,-710413 +) +g1,24035:-473656,-710413 +) +] +) +] +!31957 +}413 Input:4516:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4517:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4518:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -414896,1717 +415063,1771 @@ Input:4519:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4520:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4521:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4522:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4523:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4524:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4525:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4526:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1024 -{413 -[1,24118:4262630,47279633:28320399,43253760,0 -(1,24118:4262630,4025873:0,0,0 -[1,24118:-473656,4025873:0,0,0 -(1,24118:-473656,-710413:0,0,0 -(1,24118:-473656,-644877:0,0,0 -k1,24118:-473656,-644877:-65536 +{414 +[1,24116:4262630,47279633:28320399,43253760,0 +(1,24116:4262630,4025873:0,0,0 +[1,24116:-473656,4025873:0,0,0 +(1,24116:-473656,-710413:0,0,0 +(1,24116:-473656,-644877:0,0,0 +k1,24116:-473656,-644877:-65536 ) -(1,24118:-473656,4736287:0,0,0 -k1,24118:-473656,4736287:5209943 +(1,24116:-473656,4736287:0,0,0 +k1,24116:-473656,4736287:5209943 ) -g1,24118:-473656,-710413 +g1,24116:-473656,-710413 ) ] ) -[1,24118:6630773,47279633:25952256,43253760,0 -[1,24118:6630773,4812305:25952256,786432,0 -(1,24118:6630773,4812305:25952256,505283,134348 -(1,24118:6630773,4812305:25952256,505283,134348 -g1,24118:3078558,4812305 -[1,24118:3078558,4812305:0,0,0 -(1,24118:3078558,2439708:0,1703936,0 -k1,24118:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24118:2537886,2439708:1179648,16384,0 +[1,24116:6630773,47279633:25952256,43253760,0 +[1,24116:6630773,4812305:25952256,786432,0 +(1,24116:6630773,4812305:25952256,505283,134348 +(1,24116:6630773,4812305:25952256,505283,134348 +g1,24116:3078558,4812305 +[1,24116:3078558,4812305:0,0,0 +(1,24116:3078558,2439708:0,1703936,0 +k1,24116:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24116:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24118:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24116:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24118:3078558,4812305:0,0,0 -(1,24118:3078558,2439708:0,1703936,0 -g1,24118:29030814,2439708 -g1,24118:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24118:36151628,1915420:16384,1179648,0 +[1,24116:3078558,4812305:0,0,0 +(1,24116:3078558,2439708:0,1703936,0 +g1,24116:29030814,2439708 +g1,24116:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24116:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24118:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24116:37855564,2439708:1179648,16384,0 ) ) -k1,24118:3078556,2439708:-34777008 +k1,24116:3078556,2439708:-34777008 ) ] -[1,24118:3078558,4812305:0,0,0 -(1,24118:3078558,49800853:0,16384,2228224 -k1,24118:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24118:2537886,49800853:1179648,16384,0 +[1,24116:3078558,4812305:0,0,0 +(1,24116:3078558,49800853:0,16384,2228224 +k1,24116:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24116:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24118:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24116:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24118:3078558,4812305:0,0,0 -(1,24118:3078558,49800853:0,16384,2228224 -g1,24118:29030814,49800853 -g1,24118:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24118:36151628,51504789:16384,1179648,0 +[1,24116:3078558,4812305:0,0,0 +(1,24116:3078558,49800853:0,16384,2228224 +g1,24116:29030814,49800853 +g1,24116:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24116:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24118:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24116:37855564,49800853:1179648,16384,0 ) -) -k1,24118:3078556,49800853:-34777008 -) -] -g1,24118:6630773,4812305 -k1,24118:21114230,4812305:13288080 -g1,24118:22736901,4812305 -g1,24118:23350318,4812305 -g1,24118:24759997,4812305 -g1,24118:28372341,4812305 -g1,24118:30105768,4812305 -) -) -] -[1,24118:6630773,45706769:25952256,40108032,0 -(1,24118:6630773,45706769:25952256,40108032,0 -(1,24118:6630773,45706769:0,0,0 -g1,24118:6630773,45706769 -) -[1,24118:6630773,45706769:25952256,40108032,0 -v1,24060:6630773,6254097:0,393216,0 -(1,24060:6630773,12645623:25952256,6784742,196608 -g1,24060:6630773,12645623 -g1,24060:6630773,12645623 -g1,24060:6434165,12645623 -(1,24060:6434165,12645623:0,6784742,196608 -r1,24118:32779637,12645623:26345472,6981350,196608 -k1,24060:6434165,12645623:-26345472 -) -(1,24060:6434165,12645623:26345472,6784742,196608 -[1,24060:6630773,12645623:25952256,6588134,0 -(1,24059:6630773,6481928:25952256,424439,9908 -(1,24048:6630773,6481928:0,0,0 -g1,24048:6630773,6481928 -g1,24048:6630773,6481928 -g1,24048:6303093,6481928 -(1,24048:6303093,6481928:0,0,0 -) -g1,24048:6630773,6481928 -) -g1,24059:7626635,6481928 -g1,24059:9286405,6481928 -g1,24059:9618359,6481928 -g1,24059:11278129,6481928 -g1,24059:12937899,6481928 -h1,24059:14265715,6481928:0,0,0 -k1,24059:32583029,6481928:18317314 -g1,24059:32583029,6481928 -) -(1,24059:6630773,7166783:25952256,0,0 -h1,24059:6630773,7166783:0,0,0 -h1,24059:6630773,7166783:0,0,0 -k1,24059:32583029,7166783:25952256 -g1,24059:32583029,7166783 -) -(1,24059:6630773,7851638:25952256,407923,9908 -h1,24059:6630773,7851638:0,0,0 -g1,24059:7626635,7851638 -g1,24059:8954451,7851638 -g1,24059:9286405,7851638 -g1,24059:9618359,7851638 -g1,24059:11278129,7851638 -g1,24059:11610083,7851638 -g1,24059:12937899,7851638 -h1,24059:13933761,7851638:0,0,0 -k1,24059:32583029,7851638:18649268 -g1,24059:32583029,7851638 -) -(1,24059:6630773,8536493:25952256,0,0 -h1,24059:6630773,8536493:0,0,0 -h1,24059:6630773,8536493:0,0,0 -k1,24059:32583029,8536493:25952256 -g1,24059:32583029,8536493 -) -(1,24059:6630773,9221348:25952256,407923,9908 -h1,24059:6630773,9221348:0,0,0 -g1,24059:7626635,9221348 -g1,24059:8954451,9221348 -g1,24059:9286405,9221348 -g1,24059:9618359,9221348 -g1,24059:11278129,9221348 -g1,24059:11610083,9221348 -g1,24059:11942037,9221348 -g1,24059:12937899,9221348 -h1,24059:13933761,9221348:0,0,0 -k1,24059:32583029,9221348:18649268 -g1,24059:32583029,9221348 -) -(1,24059:6630773,9906203:25952256,0,0 -h1,24059:6630773,9906203:0,0,0 -h1,24059:6630773,9906203:0,0,0 -k1,24059:32583029,9906203:25952256 -g1,24059:32583029,9906203 -) -(1,24059:6630773,10591058:25952256,407923,9908 -h1,24059:6630773,10591058:0,0,0 -g1,24059:7626635,10591058 -g1,24059:9286405,10591058 -g1,24059:9618359,10591058 -g1,24059:9950313,10591058 -g1,24059:11610083,10591058 -g1,24059:11942037,10591058 -g1,24059:12273991,10591058 -g1,24059:13269853,10591058 -h1,24059:14265715,10591058:0,0,0 -k1,24059:32583029,10591058:18317314 -g1,24059:32583029,10591058 -) -(1,24059:6630773,11275913:25952256,0,0 -h1,24059:6630773,11275913:0,0,0 -h1,24059:6630773,11275913:0,0,0 -k1,24059:32583029,11275913:25952256 -g1,24059:32583029,11275913 -) -(1,24059:6630773,11960768:25952256,424439,9908 -h1,24059:6630773,11960768:0,0,0 -g1,24059:7626635,11960768 -g1,24059:7958589,11960768 -g1,24059:8622497,11960768 -g1,24059:8954451,11960768 -g1,24059:9286405,11960768 -g1,24059:9618359,11960768 -g1,24059:10614221,11960768 -g1,24059:10946175,11960768 -g1,24059:11278129,11960768 -g1,24059:11610083,11960768 -g1,24059:11942037,11960768 -g1,24059:13601807,11960768 -h1,24059:14597669,11960768:0,0,0 -k1,24059:32583029,11960768:17985360 -g1,24059:32583029,11960768 -) -(1,24059:6630773,12645623:25952256,0,0 -h1,24059:6630773,12645623:0,0,0 -h1,24059:6630773,12645623:0,0,0 -k1,24059:32583029,12645623:25952256 -g1,24059:32583029,12645623 -) -] -) -g1,24060:32583029,12645623 -g1,24060:6630773,12645623 -g1,24060:6630773,12645623 -g1,24060:32583029,12645623 -g1,24060:32583029,12645623 -) -h1,24060:6630773,12842231:0,0,0 -v1,24064:6630773,13707311:0,393216,0 -(1,24065:6630773,14212217:25952256,898122,0 -g1,24065:6630773,14212217 -g1,24065:6237557,14212217 -r1,24118:6368629,14212217:131072,898122,0 -g1,24065:6567858,14212217 -g1,24065:6764466,14212217 -[1,24065:6764466,14212217:25818563,898122,0 -(1,24065:6764466,14015609:25818563,701514,196608 -(1,24064:6764466,14015609:0,701514,196608 -r1,24118:8471973,14015609:1707507,898122,196608 -k1,24064:6764466,14015609:-1707507 -) -(1,24064:6764466,14015609:1707507,701514,196608 -) -g1,24064:8671202,14015609 -g1,24064:10397420,14015609 -g1,24064:11745495,14015609 -(1,24064:11745495,14015609:0,459977,115847 -r1,24118:15972591,14015609:4227096,575824,115847 -k1,24064:11745495,14015609:-4227096 -) -(1,24064:11745495,14015609:4227096,459977,115847 -k1,24064:11745495,14015609:3277 -h1,24064:15969314,14015609:0,411205,112570 -) -g1,24064:16171820,14015609 -g1,24064:17022477,14015609 -g1,24064:18836513,14015609 -g1,24064:19391602,14015609 -g1,24064:20573871,14015609 -g1,24064:22057606,14015609 -g1,24064:23361117,14015609 -g1,24064:24308112,14015609 -g1,24064:25919642,14015609 -g1,24064:27512822,14015609 -(1,24064:27512822,14015609:0,452978,115847 -r1,24118:31036494,14015609:3523672,568825,115847 -k1,24064:27512822,14015609:-3523672 -) -(1,24064:27512822,14015609:3523672,452978,115847 -k1,24064:27512822,14015609:3277 -h1,24064:31033217,14015609:0,411205,112570 -) -k1,24065:32583029,14015609:1494107 -g1,24065:32583029,14015609 -) -] -g1,24065:32583029,14212217 -) -h1,24065:6630773,14212217:0,0,0 -(1,24068:6630773,17043377:25952256,32768,229376 -(1,24068:6630773,17043377:0,32768,229376 -(1,24068:6630773,17043377:5505024,32768,229376 -r1,24118:12135797,17043377:5505024,262144,229376 -) -k1,24068:6630773,17043377:-5505024 -) -(1,24068:6630773,17043377:25952256,32768,0 -r1,24118:32583029,17043377:25952256,32768,0 -) -) -(1,24068:6630773,18675229:25952256,606339,14155 -(1,24068:6630773,18675229:2464678,582746,14155 -g1,24068:6630773,18675229 -g1,24068:9095451,18675229 -) -g1,24068:11063104,18675229 -g1,24068:12772807,18675229 -g1,24068:15377470,18675229 -k1,24068:32583029,18675229:15381037 -g1,24068:32583029,18675229 -) -(1,24072:6630773,19933525:25952256,513147,134348 -k1,24071:8136882,19933525:168519 -k1,24071:9618773,19933525:168549 -k1,24071:12159070,19933525:168549 -k1,24071:13553798,19933525:168549 -k1,24071:15116299,19933525:168550 -k1,24071:17478993,19933525:168549 -k1,24071:20313547,19933525:168549 -k1,24071:22738501,19933525:168549 -k1,24071:25392832,19933525:168550 -k1,24071:26950744,19933525:168549 -k1,24071:30072345,19933525:168549 -k1,24071:32583029,19933525:0 -) -(1,24072:6630773,20798605:25952256,505283,126960 -k1,24071:7917128,20798605:294795 -k1,24071:10066592,20798605:294795 -k1,24071:11170758,20798605:294796 -k1,24071:12484638,20798605:294795 -k1,24071:14103164,20798605:294699 -k1,24071:17241566,20798605:294795 -k1,24071:18768439,20798605:294796 -$1,24071:18768439,20798605 -k1,24071:20635679,20798605:0 -k1,24071:21009127,20798605:0 -k1,24071:21382575,20798605:0 -k1,24071:21756023,20798605:0 -k1,24071:22876367,20798605:0 -k1,24071:23249815,20798605:0 -k1,24071:23996711,20798605:0 -k1,24071:24370159,20798605:0 -k1,24071:25490503,20798605:0 -k1,24071:25863951,20798605:0 -k1,24071:26610847,20798605:0 -k1,24071:26984295,20798605:0 -$1,24071:28478087,20798605 -k1,24071:28979976,20798605:294795 -k1,24071:31160242,20798605:294795 -k1,24071:32583029,20798605:0 -) -(1,24072:6630773,21663685:25952256,513147,134348 -k1,24071:9762010,21663685:399041 -k1,24071:11108702,21663685:399041 -k1,24071:14655438,21663685:399042 -k1,24071:17811579,21663685:399041 -k1,24071:20171457,21663685:399041 -k1,24071:22967805,21663685:399041 -k1,24071:26051202,21663685:399042 -k1,24071:29122146,21663685:399041 -k1,24071:31923737,21663685:399041 -k1,24071:32583029,21663685:0 -) -(1,24072:6630773,22528765:25952256,513147,134348 -k1,24071:9359102,22528765:217645 -k1,24071:10643018,22528765:217645 -k1,24071:14385189,22528765:217645 -k1,24071:17250489,22528765:217645 -k1,24071:19582325,22528765:217645 -k1,24071:23932014,22528765:217644 -k1,24071:24808951,22528765:217645 -k1,24071:26045681,22528765:217645 -k1,24071:27675627,22528765:217645 -k1,24071:31092740,22528765:217645 -k1,24071:32583029,22528765:0 -) -(1,24072:6630773,23393845:25952256,513147,134348 -k1,24071:7845357,23393845:195499 -k1,24071:10526637,23393845:195499 -k1,24071:12941837,23393845:195496 -k1,24071:15980943,23393845:195499 -k1,24071:17689668,23393845:195499 -k1,24071:18832818,23393845:195499 -k1,24071:20297094,23393845:195499 -k1,24071:22321047,23393845:195499 -k1,24071:23048043,23393845:195499 -k1,24071:25098212,23393845:195500 -k1,24071:26103081,23393845:195499 -k1,24071:27792146,23393845:195499 -k1,24071:30893511,23393845:195499 -k1,24072:32583029,23393845:0 -) -(1,24072:6630773,24258925:25952256,513147,134348 -g1,24071:8639451,24258925 -g1,24071:10214281,24258925 -g1,24071:12487069,24258925 -g1,24071:15035108,24258925 -g1,24071:15850375,24258925 -g1,24071:16838002,24258925 -k1,24072:32583029,24258925:13608554 -g1,24072:32583029,24258925 -) -(1,24073:6630773,26375743:25952256,555811,12975 -(1,24073:6630773,26375743:2899444,534184,12975 -g1,24073:6630773,26375743 -g1,24073:9530217,26375743 -) -k1,24073:32583029,26375743:20850476 -g1,24073:32583029,26375743 -) -(1,24078:6630773,27634039:25952256,513147,134348 -k1,24077:9405158,27634039:239452 -k1,24077:11610034,27634039:239452 -k1,24077:14609862,27634039:239452 -k1,24077:17875111,27634039:239452 -k1,24077:19062213,27634039:239451 -k1,24077:21704215,27634039:239452 -k1,24077:23135112,27634039:239452 -k1,24077:25760075,27634039:239452 -k1,24077:27737502,27634039:239412 -k1,24077:29168399,27634039:239452 -k1,24077:31217259,27634039:239411 -k1,24077:32583029,27634039:0 -) -(1,24078:6630773,28499119:25952256,513147,134348 -g1,24077:8189219,28499119 -g1,24077:8919945,28499119 -g1,24077:9475034,28499119 -g1,24077:10974497,28499119 -g1,24077:13657541,28499119 -g1,24077:14516062,28499119 -g1,24077:16600762,28499119 -g1,24077:17012983,28499119 -g1,24077:18344674,28499119 -g1,24077:19919504,28499119 -g1,24077:21398651,28499119 -g1,24077:21953740,28499119 -g1,24077:23655054,28499119 -k1,24078:32583029,28499119:6214130 -g1,24078:32583029,28499119 -) -(1,24080:6630773,29364199:25952256,505283,126483 -h1,24079:6630773,29364199:983040,0,0 -k1,24079:10593225,29364199:189544 -(1,24079:10593225,29364199:0,452978,115847 -r1,24118:14468609,29364199:3875384,568825,115847 -k1,24079:10593225,29364199:-3875384 -) -(1,24079:10593225,29364199:3875384,452978,115847 -k1,24079:10593225,29364199:3277 -h1,24079:14465332,29364199:0,411205,112570 -) -k1,24079:14658152,29364199:189543 -k1,24079:15951978,29364199:189544 -k1,24079:16889287,29364199:189543 -k1,24079:18592057,29364199:189544 -k1,24079:19433028,29364199:189543 -k1,24079:21034873,29364199:189544 -k1,24079:21995119,29364199:189543 -k1,24079:24053084,29364199:189534 -k1,24079:27619043,29364199:189544 -k1,24079:29664566,29364199:189543 -k1,24079:31914562,29364199:189544 -k1,24079:32583029,29364199:0 -) -(1,24080:6630773,30229279:25952256,513147,11795 -g1,24079:8397623,30229279 -g1,24079:9367555,30229279 -g1,24079:10848013,30229279 -g1,24079:11733404,30229279 -k1,24080:32583028,30229279:18928764 -g1,24080:32583028,30229279 -) -v1,24082:6630773,30914134:0,393216,0 -(1,24086:6630773,31261423:25952256,740505,196608 -g1,24086:6630773,31261423 -g1,24086:6630773,31261423 -g1,24086:6434165,31261423 -(1,24086:6434165,31261423:0,740505,196608 -r1,24118:32779637,31261423:26345472,937113,196608 -k1,24086:6434165,31261423:-26345472 -) -(1,24086:6434165,31261423:26345472,740505,196608 -[1,24086:6630773,31261423:25952256,543897,0 -(1,24084:6630773,31148571:25952256,431045,112852 -(1,24083:6630773,31148571:0,0,0 -g1,24083:6630773,31148571 -g1,24083:6630773,31148571 -g1,24083:6303093,31148571 -(1,24083:6303093,31148571:0,0,0 -) -g1,24083:6630773,31148571 -) -g1,24084:9618358,31148571 -g1,24084:10614220,31148571 -k1,24084:10614220,31148571:0 -h1,24084:24556284,31148571:0,0,0 -k1,24084:32583029,31148571:8026745 -g1,24084:32583029,31148571 -) -] -) -g1,24086:32583029,31261423 -g1,24086:6630773,31261423 -g1,24086:6630773,31261423 -g1,24086:32583029,31261423 -g1,24086:32583029,31261423 -) -h1,24086:6630773,31458031:0,0,0 -(1,24090:6630773,32323111:25952256,513147,134348 -h1,24089:6630773,32323111:983040,0,0 -k1,24089:10611743,32323111:208062 -(1,24089:10611743,32323111:0,452978,115847 -r1,24118:16245686,32323111:5633943,568825,115847 -k1,24089:10611743,32323111:-5633943 -) -(1,24089:10611743,32323111:5633943,452978,115847 -k1,24089:10611743,32323111:3277 -h1,24089:16242409,32323111:0,411205,112570 -) -k1,24089:16453748,32323111:208062 -k1,24089:19287183,32323111:208063 -k1,24089:20514330,32323111:208062 -k1,24089:23653817,32323111:208062 -k1,24089:24521171,32323111:208062 -k1,24089:25499936,32323111:208062 -k1,24089:27576421,32323111:208054 -k1,24089:30987227,32323111:208062 -k1,24089:32583029,32323111:0 -) -(1,24090:6630773,33188191:25952256,505283,126483 -g1,24089:8056181,33188191 -g1,24089:10414166,33188191 -g1,24089:11679666,33188191 -k1,24090:32583029,33188191:18568316 -g1,24090:32583029,33188191 -) -v1,24092:6630773,33873046:0,393216,0 -(1,24096:6630773,34213729:25952256,733899,196608 -g1,24096:6630773,34213729 -g1,24096:6630773,34213729 -g1,24096:6434165,34213729 -(1,24096:6434165,34213729:0,733899,196608 -r1,24118:32779637,34213729:26345472,930507,196608 -k1,24096:6434165,34213729:-26345472 -) -(1,24096:6434165,34213729:26345472,733899,196608 -[1,24096:6630773,34213729:25952256,537291,0 -(1,24094:6630773,34100877:25952256,424439,112852 -(1,24093:6630773,34100877:0,0,0 -g1,24093:6630773,34100877 -g1,24093:6630773,34100877 -g1,24093:6303093,34100877 -(1,24093:6303093,34100877:0,0,0 -) -g1,24093:6630773,34100877 -) -k1,24094:6630773,34100877:0 -h1,24094:14597667,34100877:0,0,0 -k1,24094:32583029,34100877:17985362 -g1,24094:32583029,34100877 -) -] -) -g1,24096:32583029,34213729 -g1,24096:6630773,34213729 -g1,24096:6630773,34213729 -g1,24096:32583029,34213729 -g1,24096:32583029,34213729 -) -h1,24096:6630773,34410337:0,0,0 -(1,24100:6630773,35275417:25952256,513147,115847 -h1,24099:6630773,35275417:983040,0,0 -k1,24099:11078651,35275417:674970 -(1,24099:11078651,35275417:0,452978,115847 -r1,24118:14602323,35275417:3523672,568825,115847 -k1,24099:11078651,35275417:-3523672 -) -(1,24099:11078651,35275417:3523672,452978,115847 -k1,24099:11078651,35275417:3277 -h1,24099:14599046,35275417:0,411205,112570 -) -k1,24099:15277293,35275417:674970 -k1,24099:18486540,35275417:674970 -k1,24099:20180595,35275417:674970 -k1,24099:22081744,35275417:674970 -k1,24099:25175647,35275417:674969 -k1,24099:26509909,35275417:674970 -k1,24099:27540739,35275417:674970 -k1,24099:29793161,35275417:674970 -k1,24100:32583029,35275417:0 -) -(1,24100:6630773,36140497:25952256,513147,126483 -(1,24099:6630773,36140497:0,459977,115847 -r1,24118:11561293,36140497:4930520,575824,115847 -k1,24099:6630773,36140497:-4930520 -) -(1,24099:6630773,36140497:4930520,459977,115847 -k1,24099:6630773,36140497:3277 -h1,24099:11558016,36140497:0,411205,112570 -) -k1,24099:11973432,36140497:412139 -k1,24099:14726518,36140497:412140 -k1,24099:15494517,36140497:412139 -k1,24099:17310438,36140497:412140 -k1,24099:20560941,36140497:412139 -k1,24099:21734609,36140497:412140 -k1,24099:24058433,36140497:412139 -k1,24099:25958896,36140497:412140 -k1,24099:27884261,36140497:412139 -k1,24099:28947829,36140497:412140 -k1,24099:31563944,36140497:412139 -k1,24099:32583029,36140497:0 -) -(1,24100:6630773,37005577:25952256,513147,134348 -g1,24099:8056181,37005577 -g1,24099:9823031,37005577 -g1,24099:11041345,37005577 -(1,24099:11041345,37005577:0,452978,115847 -r1,24118:12806458,37005577:1765113,568825,115847 -k1,24099:11041345,37005577:-1765113 -) -(1,24099:11041345,37005577:1765113,452978,115847 -k1,24099:11041345,37005577:3277 -h1,24099:12803181,37005577:0,411205,112570 -) -g1,24099:13005687,37005577 -g1,24099:16157313,37005577 -g1,24099:18091935,37005577 -g1,24099:21316961,37005577 -(1,24099:21316961,37005577:0,459977,115847 -r1,24118:26247481,37005577:4930520,575824,115847 -k1,24099:21316961,37005577:-4930520 -) -(1,24099:21316961,37005577:4930520,459977,115847 -k1,24099:21316961,37005577:3277 -h1,24099:26244204,37005577:0,411205,112570 -) -g1,24099:26446710,37005577 -g1,24099:27837384,37005577 -k1,24100:32583029,37005577:4693217 -g1,24100:32583029,37005577 -) -v1,24102:6630773,37690432:0,393216,0 -(1,24109:6630773,38853648:25952256,1556432,196608 -g1,24109:6630773,38853648 -g1,24109:6630773,38853648 -g1,24109:6434165,38853648 -(1,24109:6434165,38853648:0,1556432,196608 -r1,24118:32779637,38853648:26345472,1753040,196608 -k1,24109:6434165,38853648:-26345472 -) -(1,24109:6434165,38853648:26345472,1556432,196608 -[1,24109:6630773,38853648:25952256,1359824,0 -(1,24104:6630773,37924869:25952256,431045,112852 -(1,24103:6630773,37924869:0,0,0 -g1,24103:6630773,37924869 -g1,24103:6630773,37924869 -g1,24103:6303093,37924869 -(1,24103:6303093,37924869:0,0,0 -) -g1,24103:6630773,37924869 -) -k1,24104:6630773,37924869:0 -g1,24104:17253298,37924869 -h1,24104:21236745,37924869:0,0,0 -k1,24104:32583029,37924869:11346284 -g1,24104:32583029,37924869 -) -(1,24108:6630773,38740796:25952256,424439,112852 -(1,24106:6630773,38740796:0,0,0 -g1,24106:6630773,38740796 -g1,24106:6630773,38740796 -g1,24106:6303093,38740796 -(1,24106:6303093,38740796:0,0,0 -) -g1,24106:6630773,38740796 -) -g1,24108:7626635,38740796 -g1,24108:8954451,38740796 -g1,24108:11278129,38740796 -g1,24108:12273991,38740796 -g1,24108:13269853,38740796 -g1,24108:13933761,38740796 -h1,24108:16921346,38740796:0,0,0 -k1,24108:32583029,38740796:15661683 -g1,24108:32583029,38740796 -) -] -) -g1,24109:32583029,38853648 -g1,24109:6630773,38853648 -g1,24109:6630773,38853648 -g1,24109:32583029,38853648 -g1,24109:32583029,38853648 -) -h1,24109:6630773,39050256:0,0,0 -(1,24114:6630773,39915336:25952256,513147,134348 -h1,24112:6630773,39915336:983040,0,0 -k1,24112:9023744,39915336:213244 -k1,24112:12262785,39915336:213244 -k1,24112:14857607,39915336:213244 -k1,24112:15686890,39915336:213245 -k1,24112:17103375,39915336:213244 -k1,24112:19896771,39915336:213244 -k1,24112:21214297,39915336:213244 -k1,24112:22175307,39915336:213244 -k1,24112:23901777,39915336:213244 -k1,24112:24766450,39915336:213245 -k1,24112:27930780,39915336:213244 -k1,24112:29533387,39915336:213244 -k1,24112:31314252,39915336:213244 -k1,24112:32583029,39915336:0 -) -(1,24114:6630773,40780416:25952256,513147,134348 -k1,24112:8809471,40780416:176573 -k1,24112:10058212,40780416:176572 -k1,24112:11520601,40780416:176573 -k1,24112:12348602,40780416:176573 -k1,24112:13937475,40780416:176572 -k1,24112:15503411,40780416:176573 -k1,24112:17247604,40780416:176572 -k1,24112:18737519,40780416:176573 -k1,24112:20649485,40780416:176573 -k1,24112:23336741,40780416:176572 -k1,24112:24797820,40780416:176573 -k1,24112:25965953,40780416:176573 -k1,24112:28524103,40780416:176572 -k1,24112:31259202,40780416:176573 -k1,24112:32583029,40780416:0 -) -(1,24114:6630773,41645496:25952256,505283,7863 -g1,24112:9735868,41645496 -k1,24114:32583028,41645496:22847160 -g1,24114:32583028,41645496 -) -] -(1,24118:32583029,45706769:0,0,0 -g1,24118:32583029,45706769 -) -) -] -(1,24118:6630773,47279633:25952256,0,0 -h1,24118:6630773,47279633:25952256,0,0 -) -] -(1,24118:4262630,4025873:0,0,0 -[1,24118:-473656,4025873:0,0,0 -(1,24118:-473656,-710413:0,0,0 -(1,24118:-473656,-710413:0,0,0 -g1,24118:-473656,-710413 -) -g1,24118:-473656,-710413 -) -] -) -] -!21726 -}413 -Input:4523:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +) +k1,24116:3078556,49800853:-34777008 +) +] +g1,24116:6630773,4812305 +k1,24116:21114230,4812305:13288080 +g1,24116:22736901,4812305 +g1,24116:23350318,4812305 +g1,24116:24759997,4812305 +g1,24116:28372341,4812305 +g1,24116:30105768,4812305 +) +) +] +[1,24116:6630773,45706769:25952256,40108032,0 +(1,24116:6630773,45706769:25952256,40108032,0 +(1,24116:6630773,45706769:0,0,0 +g1,24116:6630773,45706769 +) +[1,24116:6630773,45706769:25952256,40108032,0 +v1,24035:6630773,6254097:0,393216,0 +(1,24058:6630773,15784865:25952256,9923984,196608 +g1,24058:6630773,15784865 +g1,24058:6630773,15784865 +g1,24058:6434165,15784865 +(1,24058:6434165,15784865:0,9923984,196608 +r1,24116:32779637,15784865:26345472,10120592,196608 +k1,24058:6434165,15784865:-26345472 +) +(1,24058:6434165,15784865:26345472,9923984,196608 +[1,24058:6630773,15784865:25952256,9727376,0 +(1,24037:6630773,6488534:25952256,431045,112852 +(1,24036:6630773,6488534:0,0,0 +g1,24036:6630773,6488534 +g1,24036:6630773,6488534 +g1,24036:6303093,6488534 +(1,24036:6303093,6488534:0,0,0 +) +g1,24036:6630773,6488534 +) +g1,24037:9286405,6488534 +g1,24037:10282267,6488534 +g1,24037:15261576,6488534 +g1,24037:15925484,6488534 +k1,24037:15925484,6488534:0 +h1,24037:26879963,6488534:0,0,0 +k1,24037:32583029,6488534:5703066 +g1,24037:32583029,6488534 +) +(1,24038:6630773,7173389:25952256,424439,112852 +h1,24038:6630773,7173389:0,0,0 +k1,24038:6630773,7173389:0 +h1,24038:11610082,7173389:0,0,0 +k1,24038:32583030,7173389:20972948 +g1,24038:32583030,7173389 +) +(1,24042:6630773,7989316:25952256,424439,79822 +(1,24040:6630773,7989316:0,0,0 +g1,24040:6630773,7989316 +g1,24040:6630773,7989316 +g1,24040:6303093,7989316 +(1,24040:6303093,7989316:0,0,0 +) +g1,24040:6630773,7989316 +) +g1,24042:7626635,7989316 +g1,24042:8954451,7989316 +h1,24042:9286405,7989316:0,0,0 +k1,24042:32583029,7989316:23296624 +g1,24042:32583029,7989316 +) +(1,24044:6630773,8805243:25952256,424439,79822 +(1,24043:6630773,8805243:0,0,0 +g1,24043:6630773,8805243 +g1,24043:6630773,8805243 +g1,24043:6303093,8805243 +(1,24043:6303093,8805243:0,0,0 +) +g1,24043:6630773,8805243 +) +k1,24044:6630773,8805243:0 +h1,24044:10614220,8805243:0,0,0 +k1,24044:32583028,8805243:21968808 +g1,24044:32583028,8805243 +) +(1,24057:6630773,9621170:25952256,424439,9908 +(1,24046:6630773,9621170:0,0,0 +g1,24046:6630773,9621170 +g1,24046:6630773,9621170 +g1,24046:6303093,9621170 +(1,24046:6303093,9621170:0,0,0 +) +g1,24046:6630773,9621170 +) +g1,24057:7626635,9621170 +g1,24057:9286405,9621170 +g1,24057:9618359,9621170 +g1,24057:11278129,9621170 +g1,24057:12937899,9621170 +h1,24057:14265715,9621170:0,0,0 +k1,24057:32583029,9621170:18317314 +g1,24057:32583029,9621170 +) +(1,24057:6630773,10306025:25952256,0,0 +h1,24057:6630773,10306025:0,0,0 +h1,24057:6630773,10306025:0,0,0 +k1,24057:32583029,10306025:25952256 +g1,24057:32583029,10306025 +) +(1,24057:6630773,10990880:25952256,407923,9908 +h1,24057:6630773,10990880:0,0,0 +g1,24057:7626635,10990880 +g1,24057:8954451,10990880 +g1,24057:9286405,10990880 +g1,24057:9618359,10990880 +g1,24057:11278129,10990880 +g1,24057:11610083,10990880 +g1,24057:12937899,10990880 +h1,24057:13933761,10990880:0,0,0 +k1,24057:32583029,10990880:18649268 +g1,24057:32583029,10990880 +) +(1,24057:6630773,11675735:25952256,0,0 +h1,24057:6630773,11675735:0,0,0 +h1,24057:6630773,11675735:0,0,0 +k1,24057:32583029,11675735:25952256 +g1,24057:32583029,11675735 +) +(1,24057:6630773,12360590:25952256,407923,9908 +h1,24057:6630773,12360590:0,0,0 +g1,24057:7626635,12360590 +g1,24057:8954451,12360590 +g1,24057:9286405,12360590 +g1,24057:9618359,12360590 +g1,24057:11278129,12360590 +g1,24057:11610083,12360590 +g1,24057:11942037,12360590 +g1,24057:12937899,12360590 +h1,24057:13933761,12360590:0,0,0 +k1,24057:32583029,12360590:18649268 +g1,24057:32583029,12360590 +) +(1,24057:6630773,13045445:25952256,0,0 +h1,24057:6630773,13045445:0,0,0 +h1,24057:6630773,13045445:0,0,0 +k1,24057:32583029,13045445:25952256 +g1,24057:32583029,13045445 +) +(1,24057:6630773,13730300:25952256,407923,9908 +h1,24057:6630773,13730300:0,0,0 +g1,24057:7626635,13730300 +g1,24057:9286405,13730300 +g1,24057:9618359,13730300 +g1,24057:9950313,13730300 +g1,24057:11610083,13730300 +g1,24057:11942037,13730300 +g1,24057:12273991,13730300 +g1,24057:13269853,13730300 +h1,24057:14265715,13730300:0,0,0 +k1,24057:32583029,13730300:18317314 +g1,24057:32583029,13730300 +) +(1,24057:6630773,14415155:25952256,0,0 +h1,24057:6630773,14415155:0,0,0 +h1,24057:6630773,14415155:0,0,0 +k1,24057:32583029,14415155:25952256 +g1,24057:32583029,14415155 +) +(1,24057:6630773,15100010:25952256,424439,9908 +h1,24057:6630773,15100010:0,0,0 +g1,24057:7626635,15100010 +g1,24057:7958589,15100010 +g1,24057:8622497,15100010 +g1,24057:8954451,15100010 +g1,24057:9286405,15100010 +g1,24057:9618359,15100010 +g1,24057:10614221,15100010 +g1,24057:10946175,15100010 +g1,24057:11278129,15100010 +g1,24057:11610083,15100010 +g1,24057:11942037,15100010 +g1,24057:13601807,15100010 +h1,24057:14597669,15100010:0,0,0 +k1,24057:32583029,15100010:17985360 +g1,24057:32583029,15100010 +) +(1,24057:6630773,15784865:25952256,0,0 +h1,24057:6630773,15784865:0,0,0 +h1,24057:6630773,15784865:0,0,0 +k1,24057:32583029,15784865:25952256 +g1,24057:32583029,15784865 +) +] +) +g1,24058:32583029,15784865 +g1,24058:6630773,15784865 +g1,24058:6630773,15784865 +g1,24058:32583029,15784865 +g1,24058:32583029,15784865 +) +h1,24058:6630773,15981473:0,0,0 +v1,24062:6630773,16846553:0,393216,0 +(1,24063:6630773,17351459:25952256,898122,0 +g1,24063:6630773,17351459 +g1,24063:6237557,17351459 +r1,24116:6368629,17351459:131072,898122,0 +g1,24063:6567858,17351459 +g1,24063:6764466,17351459 +[1,24063:6764466,17351459:25818563,898122,0 +(1,24063:6764466,17154851:25818563,701514,196608 +(1,24062:6764466,17154851:0,701514,196608 +r1,24116:8471973,17154851:1707507,898122,196608 +k1,24062:6764466,17154851:-1707507 +) +(1,24062:6764466,17154851:1707507,701514,196608 +) +g1,24062:8671202,17154851 +g1,24062:10397420,17154851 +g1,24062:11745495,17154851 +(1,24062:11745495,17154851:0,459977,115847 +r1,24116:15972591,17154851:4227096,575824,115847 +k1,24062:11745495,17154851:-4227096 +) +(1,24062:11745495,17154851:4227096,459977,115847 +k1,24062:11745495,17154851:3277 +h1,24062:15969314,17154851:0,411205,112570 +) +g1,24062:16171820,17154851 +g1,24062:17022477,17154851 +g1,24062:18836513,17154851 +g1,24062:19391602,17154851 +g1,24062:20573871,17154851 +g1,24062:22057606,17154851 +g1,24062:23361117,17154851 +g1,24062:24308112,17154851 +g1,24062:25919642,17154851 +g1,24062:27512822,17154851 +(1,24062:27512822,17154851:0,452978,115847 +r1,24116:31036494,17154851:3523672,568825,115847 +k1,24062:27512822,17154851:-3523672 +) +(1,24062:27512822,17154851:3523672,452978,115847 +k1,24062:27512822,17154851:3277 +h1,24062:31033217,17154851:0,411205,112570 +) +k1,24063:32583029,17154851:1494107 +g1,24063:32583029,17154851 +) +] +g1,24063:32583029,17351459 +) +h1,24063:6630773,17351459:0,0,0 +(1,24066:6630773,20182619:25952256,32768,229376 +(1,24066:6630773,20182619:0,32768,229376 +(1,24066:6630773,20182619:5505024,32768,229376 +r1,24116:12135797,20182619:5505024,262144,229376 +) +k1,24066:6630773,20182619:-5505024 +) +(1,24066:6630773,20182619:25952256,32768,0 +r1,24116:32583029,20182619:25952256,32768,0 +) +) +(1,24066:6630773,21814471:25952256,606339,14155 +(1,24066:6630773,21814471:2464678,582746,14155 +g1,24066:6630773,21814471 +g1,24066:9095451,21814471 +) +g1,24066:11063104,21814471 +g1,24066:12772807,21814471 +g1,24066:15377470,21814471 +k1,24066:32583029,21814471:15381037 +g1,24066:32583029,21814471 +) +(1,24070:6630773,23072767:25952256,513147,134348 +k1,24069:8136882,23072767:168519 +k1,24069:9618773,23072767:168549 +k1,24069:12159070,23072767:168549 +k1,24069:13553798,23072767:168549 +k1,24069:15116299,23072767:168550 +k1,24069:17478993,23072767:168549 +k1,24069:20313547,23072767:168549 +k1,24069:22738501,23072767:168549 +k1,24069:25392832,23072767:168550 +k1,24069:26950744,23072767:168549 +k1,24069:30072345,23072767:168549 +k1,24069:32583029,23072767:0 +) +(1,24070:6630773,23937847:25952256,505283,126960 +k1,24069:7917128,23937847:294795 +k1,24069:10066592,23937847:294795 +k1,24069:11170758,23937847:294796 +k1,24069:12484638,23937847:294795 +k1,24069:14103164,23937847:294699 +k1,24069:17241566,23937847:294795 +k1,24069:18768439,23937847:294796 +$1,24069:18768439,23937847 +k1,24069:20635679,23937847:0 +k1,24069:21009127,23937847:0 +k1,24069:21382575,23937847:0 +k1,24069:21756023,23937847:0 +k1,24069:22876367,23937847:0 +k1,24069:23249815,23937847:0 +k1,24069:23996711,23937847:0 +k1,24069:24370159,23937847:0 +k1,24069:25490503,23937847:0 +k1,24069:25863951,23937847:0 +k1,24069:26610847,23937847:0 +k1,24069:26984295,23937847:0 +$1,24069:28478087,23937847 +k1,24069:28979976,23937847:294795 +k1,24069:31160242,23937847:294795 +k1,24069:32583029,23937847:0 +) +(1,24070:6630773,24802927:25952256,513147,134348 +k1,24069:9762010,24802927:399041 +k1,24069:11108702,24802927:399041 +k1,24069:14655438,24802927:399042 +k1,24069:17811579,24802927:399041 +k1,24069:20171457,24802927:399041 +k1,24069:22967805,24802927:399041 +k1,24069:26051202,24802927:399042 +k1,24069:29122146,24802927:399041 +k1,24069:31923737,24802927:399041 +k1,24069:32583029,24802927:0 +) +(1,24070:6630773,25668007:25952256,513147,134348 +k1,24069:9359102,25668007:217645 +k1,24069:10643018,25668007:217645 +k1,24069:14385189,25668007:217645 +k1,24069:17250489,25668007:217645 +k1,24069:19582325,25668007:217645 +k1,24069:23932014,25668007:217644 +k1,24069:24808951,25668007:217645 +k1,24069:26045681,25668007:217645 +k1,24069:27675627,25668007:217645 +k1,24069:31092740,25668007:217645 +k1,24069:32583029,25668007:0 +) +(1,24070:6630773,26533087:25952256,513147,134348 +k1,24069:7845357,26533087:195499 +k1,24069:10526637,26533087:195499 +k1,24069:12941837,26533087:195496 +k1,24069:15980943,26533087:195499 +k1,24069:17689668,26533087:195499 +k1,24069:18832818,26533087:195499 +k1,24069:20297094,26533087:195499 +k1,24069:22321047,26533087:195499 +k1,24069:23048043,26533087:195499 +k1,24069:25098212,26533087:195500 +k1,24069:26103081,26533087:195499 +k1,24069:27792146,26533087:195499 +k1,24069:30893511,26533087:195499 +k1,24070:32583029,26533087:0 +) +(1,24070:6630773,27398167:25952256,513147,134348 +g1,24069:8639451,27398167 +g1,24069:10214281,27398167 +g1,24069:12487069,27398167 +g1,24069:15035108,27398167 +g1,24069:15850375,27398167 +g1,24069:16838002,27398167 +k1,24070:32583029,27398167:13608554 +g1,24070:32583029,27398167 +) +(1,24071:6630773,29514985:25952256,555811,12975 +(1,24071:6630773,29514985:2899444,534184,12975 +g1,24071:6630773,29514985 +g1,24071:9530217,29514985 +) +k1,24071:32583029,29514985:20850476 +g1,24071:32583029,29514985 +) +(1,24076:6630773,30773281:25952256,513147,134348 +k1,24075:9405158,30773281:239452 +k1,24075:11610034,30773281:239452 +k1,24075:14609862,30773281:239452 +k1,24075:17875111,30773281:239452 +k1,24075:19062213,30773281:239451 +k1,24075:21704215,30773281:239452 +k1,24075:23135112,30773281:239452 +k1,24075:25760075,30773281:239452 +k1,24075:27737502,30773281:239412 +k1,24075:29168399,30773281:239452 +k1,24075:31217259,30773281:239411 +k1,24075:32583029,30773281:0 +) +(1,24076:6630773,31638361:25952256,513147,134348 +g1,24075:8189219,31638361 +g1,24075:8919945,31638361 +g1,24075:9475034,31638361 +g1,24075:10974497,31638361 +g1,24075:13657541,31638361 +g1,24075:14516062,31638361 +g1,24075:16600762,31638361 +g1,24075:17012983,31638361 +g1,24075:18344674,31638361 +g1,24075:19919504,31638361 +g1,24075:21398651,31638361 +g1,24075:21953740,31638361 +g1,24075:23655054,31638361 +k1,24076:32583029,31638361:6214130 +g1,24076:32583029,31638361 +) +(1,24078:6630773,32503441:25952256,505283,126483 +h1,24077:6630773,32503441:983040,0,0 +k1,24077:10593225,32503441:189544 +(1,24077:10593225,32503441:0,452978,115847 +r1,24116:14468609,32503441:3875384,568825,115847 +k1,24077:10593225,32503441:-3875384 +) +(1,24077:10593225,32503441:3875384,452978,115847 +k1,24077:10593225,32503441:3277 +h1,24077:14465332,32503441:0,411205,112570 +) +k1,24077:14658152,32503441:189543 +k1,24077:15951978,32503441:189544 +k1,24077:16889287,32503441:189543 +k1,24077:18592057,32503441:189544 +k1,24077:19433028,32503441:189543 +k1,24077:21034873,32503441:189544 +k1,24077:21995119,32503441:189543 +k1,24077:24053084,32503441:189534 +k1,24077:27619043,32503441:189544 +k1,24077:29664566,32503441:189543 +k1,24077:31914562,32503441:189544 +k1,24077:32583029,32503441:0 +) +(1,24078:6630773,33368521:25952256,513147,11795 +g1,24077:8397623,33368521 +g1,24077:9367555,33368521 +g1,24077:10848013,33368521 +g1,24077:11733404,33368521 +k1,24078:32583028,33368521:18928764 +g1,24078:32583028,33368521 +) +v1,24080:6630773,34053376:0,393216,0 +(1,24084:6630773,34400665:25952256,740505,196608 +g1,24084:6630773,34400665 +g1,24084:6630773,34400665 +g1,24084:6434165,34400665 +(1,24084:6434165,34400665:0,740505,196608 +r1,24116:32779637,34400665:26345472,937113,196608 +k1,24084:6434165,34400665:-26345472 +) +(1,24084:6434165,34400665:26345472,740505,196608 +[1,24084:6630773,34400665:25952256,543897,0 +(1,24082:6630773,34287813:25952256,431045,112852 +(1,24081:6630773,34287813:0,0,0 +g1,24081:6630773,34287813 +g1,24081:6630773,34287813 +g1,24081:6303093,34287813 +(1,24081:6303093,34287813:0,0,0 +) +g1,24081:6630773,34287813 +) +g1,24082:9618358,34287813 +g1,24082:10614220,34287813 +k1,24082:10614220,34287813:0 +h1,24082:24556284,34287813:0,0,0 +k1,24082:32583029,34287813:8026745 +g1,24082:32583029,34287813 +) +] +) +g1,24084:32583029,34400665 +g1,24084:6630773,34400665 +g1,24084:6630773,34400665 +g1,24084:32583029,34400665 +g1,24084:32583029,34400665 +) +h1,24084:6630773,34597273:0,0,0 +(1,24088:6630773,35462353:25952256,513147,134348 +h1,24087:6630773,35462353:983040,0,0 +k1,24087:10611743,35462353:208062 +(1,24087:10611743,35462353:0,452978,115847 +r1,24116:16245686,35462353:5633943,568825,115847 +k1,24087:10611743,35462353:-5633943 +) +(1,24087:10611743,35462353:5633943,452978,115847 +k1,24087:10611743,35462353:3277 +h1,24087:16242409,35462353:0,411205,112570 +) +k1,24087:16453748,35462353:208062 +k1,24087:19287183,35462353:208063 +k1,24087:20514330,35462353:208062 +k1,24087:23653817,35462353:208062 +k1,24087:24521171,35462353:208062 +k1,24087:25499936,35462353:208062 +k1,24087:27576421,35462353:208054 +k1,24087:30987227,35462353:208062 +k1,24087:32583029,35462353:0 +) +(1,24088:6630773,36327433:25952256,505283,126483 +g1,24087:8056181,36327433 +g1,24087:10414166,36327433 +g1,24087:11679666,36327433 +k1,24088:32583029,36327433:18568316 +g1,24088:32583029,36327433 +) +v1,24090:6630773,37012288:0,393216,0 +(1,24094:6630773,37352971:25952256,733899,196608 +g1,24094:6630773,37352971 +g1,24094:6630773,37352971 +g1,24094:6434165,37352971 +(1,24094:6434165,37352971:0,733899,196608 +r1,24116:32779637,37352971:26345472,930507,196608 +k1,24094:6434165,37352971:-26345472 +) +(1,24094:6434165,37352971:26345472,733899,196608 +[1,24094:6630773,37352971:25952256,537291,0 +(1,24092:6630773,37240119:25952256,424439,112852 +(1,24091:6630773,37240119:0,0,0 +g1,24091:6630773,37240119 +g1,24091:6630773,37240119 +g1,24091:6303093,37240119 +(1,24091:6303093,37240119:0,0,0 +) +g1,24091:6630773,37240119 +) +k1,24092:6630773,37240119:0 +h1,24092:14597667,37240119:0,0,0 +k1,24092:32583029,37240119:17985362 +g1,24092:32583029,37240119 +) +] +) +g1,24094:32583029,37352971 +g1,24094:6630773,37352971 +g1,24094:6630773,37352971 +g1,24094:32583029,37352971 +g1,24094:32583029,37352971 +) +h1,24094:6630773,37549579:0,0,0 +(1,24098:6630773,38414659:25952256,513147,115847 +h1,24097:6630773,38414659:983040,0,0 +k1,24097:11078651,38414659:674970 +(1,24097:11078651,38414659:0,452978,115847 +r1,24116:14602323,38414659:3523672,568825,115847 +k1,24097:11078651,38414659:-3523672 +) +(1,24097:11078651,38414659:3523672,452978,115847 +k1,24097:11078651,38414659:3277 +h1,24097:14599046,38414659:0,411205,112570 +) +k1,24097:15277293,38414659:674970 +k1,24097:18486540,38414659:674970 +k1,24097:20180595,38414659:674970 +k1,24097:22081744,38414659:674970 +k1,24097:25175647,38414659:674969 +k1,24097:26509909,38414659:674970 +k1,24097:27540739,38414659:674970 +k1,24097:29793161,38414659:674970 +k1,24098:32583029,38414659:0 +) +(1,24098:6630773,39279739:25952256,513147,126483 +(1,24097:6630773,39279739:0,459977,115847 +r1,24116:11561293,39279739:4930520,575824,115847 +k1,24097:6630773,39279739:-4930520 +) +(1,24097:6630773,39279739:4930520,459977,115847 +k1,24097:6630773,39279739:3277 +h1,24097:11558016,39279739:0,411205,112570 +) +k1,24097:11973432,39279739:412139 +k1,24097:14726518,39279739:412140 +k1,24097:15494517,39279739:412139 +k1,24097:17310438,39279739:412140 +k1,24097:20560941,39279739:412139 +k1,24097:21734609,39279739:412140 +k1,24097:24058433,39279739:412139 +k1,24097:25958896,39279739:412140 +k1,24097:27884261,39279739:412139 +k1,24097:28947829,39279739:412140 +k1,24097:31563944,39279739:412139 +k1,24097:32583029,39279739:0 +) +(1,24098:6630773,40144819:25952256,513147,134348 +g1,24097:8056181,40144819 +g1,24097:9823031,40144819 +g1,24097:11041345,40144819 +(1,24097:11041345,40144819:0,452978,115847 +r1,24116:12806458,40144819:1765113,568825,115847 +k1,24097:11041345,40144819:-1765113 +) +(1,24097:11041345,40144819:1765113,452978,115847 +k1,24097:11041345,40144819:3277 +h1,24097:12803181,40144819:0,411205,112570 +) +g1,24097:13005687,40144819 +g1,24097:16157313,40144819 +g1,24097:18091935,40144819 +g1,24097:21316961,40144819 +(1,24097:21316961,40144819:0,459977,115847 +r1,24116:26247481,40144819:4930520,575824,115847 +k1,24097:21316961,40144819:-4930520 +) +(1,24097:21316961,40144819:4930520,459977,115847 +k1,24097:21316961,40144819:3277 +h1,24097:26244204,40144819:0,411205,112570 +) +g1,24097:26446710,40144819 +g1,24097:27837384,40144819 +k1,24098:32583029,40144819:4693217 +g1,24098:32583029,40144819 +) +v1,24100:6630773,40829674:0,393216,0 +(1,24107:6630773,41992890:25952256,1556432,196608 +g1,24107:6630773,41992890 +g1,24107:6630773,41992890 +g1,24107:6434165,41992890 +(1,24107:6434165,41992890:0,1556432,196608 +r1,24116:32779637,41992890:26345472,1753040,196608 +k1,24107:6434165,41992890:-26345472 +) +(1,24107:6434165,41992890:26345472,1556432,196608 +[1,24107:6630773,41992890:25952256,1359824,0 +(1,24102:6630773,41064111:25952256,431045,112852 +(1,24101:6630773,41064111:0,0,0 +g1,24101:6630773,41064111 +g1,24101:6630773,41064111 +g1,24101:6303093,41064111 +(1,24101:6303093,41064111:0,0,0 +) +g1,24101:6630773,41064111 +) +k1,24102:6630773,41064111:0 +g1,24102:17253298,41064111 +h1,24102:21236745,41064111:0,0,0 +k1,24102:32583029,41064111:11346284 +g1,24102:32583029,41064111 +) +(1,24106:6630773,41880038:25952256,424439,112852 +(1,24104:6630773,41880038:0,0,0 +g1,24104:6630773,41880038 +g1,24104:6630773,41880038 +g1,24104:6303093,41880038 +(1,24104:6303093,41880038:0,0,0 +) +g1,24104:6630773,41880038 +) +g1,24106:7626635,41880038 +g1,24106:8954451,41880038 +g1,24106:11278129,41880038 +g1,24106:12273991,41880038 +g1,24106:13269853,41880038 +g1,24106:13933761,41880038 +h1,24106:16921346,41880038:0,0,0 +k1,24106:32583029,41880038:15661683 +g1,24106:32583029,41880038 +) +] +) +g1,24107:32583029,41992890 +g1,24107:6630773,41992890 +g1,24107:6630773,41992890 +g1,24107:32583029,41992890 +g1,24107:32583029,41992890 +) +h1,24107:6630773,42189498:0,0,0 +(1,24112:6630773,43054578:25952256,513147,134348 +h1,24110:6630773,43054578:983040,0,0 +k1,24110:9023744,43054578:213244 +k1,24110:12262785,43054578:213244 +k1,24110:14857607,43054578:213244 +k1,24110:15686890,43054578:213245 +k1,24110:17103375,43054578:213244 +k1,24110:19896771,43054578:213244 +k1,24110:21214297,43054578:213244 +k1,24110:22175307,43054578:213244 +k1,24110:23901777,43054578:213244 +k1,24110:24766450,43054578:213245 +k1,24110:27930780,43054578:213244 +k1,24110:29533387,43054578:213244 +k1,24110:31314252,43054578:213244 +k1,24110:32583029,43054578:0 +) +(1,24112:6630773,43919658:25952256,513147,134348 +k1,24110:8809471,43919658:176573 +k1,24110:10058212,43919658:176572 +k1,24110:11520601,43919658:176573 +k1,24110:12348602,43919658:176573 +k1,24110:13937475,43919658:176572 +k1,24110:15503411,43919658:176573 +k1,24110:17247604,43919658:176572 +k1,24110:18737519,43919658:176573 +k1,24110:20649485,43919658:176573 +k1,24110:23336741,43919658:176572 +k1,24110:24797820,43919658:176573 +k1,24110:25965953,43919658:176573 +k1,24110:28524103,43919658:176572 +k1,24110:31259202,43919658:176573 +k1,24110:32583029,43919658:0 +) +(1,24112:6630773,44784738:25952256,505283,7863 +g1,24110:9735868,44784738 +k1,24112:32583028,44784738:22847160 +g1,24112:32583028,44784738 +) +] +(1,24116:32583029,45706769:0,0,0 +g1,24116:32583029,45706769 +) +) +] +(1,24116:6630773,47279633:25952256,0,0 +h1,24116:6630773,47279633:25952256,0,0 +) +] +(1,24116:4262630,4025873:0,0,0 +[1,24116:-473656,4025873:0,0,0 +(1,24116:-473656,-710413:0,0,0 +(1,24116:-473656,-710413:0,0,0 +g1,24116:-473656,-710413 +) +g1,24116:-473656,-710413 +) +] +) +] +!23099 +}414 +Input:4527:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{414 -[1,24156:4262630,47279633:28320399,43253760,0 -(1,24156:4262630,4025873:0,0,0 -[1,24156:-473656,4025873:0,0,0 -(1,24156:-473656,-710413:0,0,0 -(1,24156:-473656,-644877:0,0,0 -k1,24156:-473656,-644877:-65536 +{415 +[1,24154:4262630,47279633:28320399,43253760,0 +(1,24154:4262630,4025873:0,0,0 +[1,24154:-473656,4025873:0,0,0 +(1,24154:-473656,-710413:0,0,0 +(1,24154:-473656,-644877:0,0,0 +k1,24154:-473656,-644877:-65536 ) -(1,24156:-473656,4736287:0,0,0 -k1,24156:-473656,4736287:5209943 +(1,24154:-473656,4736287:0,0,0 +k1,24154:-473656,4736287:5209943 ) -g1,24156:-473656,-710413 +g1,24154:-473656,-710413 ) ] ) -[1,24156:6630773,47279633:25952256,43253760,0 -[1,24156:6630773,4812305:25952256,786432,0 -(1,24156:6630773,4812305:25952256,505283,11795 -(1,24156:6630773,4812305:25952256,505283,11795 -g1,24156:3078558,4812305 -[1,24156:3078558,4812305:0,0,0 -(1,24156:3078558,2439708:0,1703936,0 -k1,24156:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24156:2537886,2439708:1179648,16384,0 +[1,24154:6630773,47279633:25952256,43253760,0 +[1,24154:6630773,4812305:25952256,786432,0 +(1,24154:6630773,4812305:25952256,505283,11795 +(1,24154:6630773,4812305:25952256,505283,11795 +g1,24154:3078558,4812305 +[1,24154:3078558,4812305:0,0,0 +(1,24154:3078558,2439708:0,1703936,0 +k1,24154:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24154:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24156:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24154:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24156:3078558,4812305:0,0,0 -(1,24156:3078558,2439708:0,1703936,0 -g1,24156:29030814,2439708 -g1,24156:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24156:36151628,1915420:16384,1179648,0 +[1,24154:3078558,4812305:0,0,0 +(1,24154:3078558,2439708:0,1703936,0 +g1,24154:29030814,2439708 +g1,24154:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24154:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24156:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24154:37855564,2439708:1179648,16384,0 ) ) -k1,24156:3078556,2439708:-34777008 +k1,24154:3078556,2439708:-34777008 ) ] -[1,24156:3078558,4812305:0,0,0 -(1,24156:3078558,49800853:0,16384,2228224 -k1,24156:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24156:2537886,49800853:1179648,16384,0 +[1,24154:3078558,4812305:0,0,0 +(1,24154:3078558,49800853:0,16384,2228224 +k1,24154:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24154:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24156:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24154:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24156:3078558,4812305:0,0,0 -(1,24156:3078558,49800853:0,16384,2228224 -g1,24156:29030814,49800853 -g1,24156:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24156:36151628,51504789:16384,1179648,0 +[1,24154:3078558,4812305:0,0,0 +(1,24154:3078558,49800853:0,16384,2228224 +g1,24154:29030814,49800853 +g1,24154:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24154:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24156:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24154:37855564,49800853:1179648,16384,0 ) ) -k1,24156:3078556,49800853:-34777008 +k1,24154:3078556,49800853:-34777008 ) -] -g1,24156:6630773,4812305 -g1,24156:6630773,4812305 -g1,24156:8113852,4812305 -g1,24156:9680817,4812305 -k1,24156:31387653,4812305:21706836 -) -) -] -[1,24156:6630773,45706769:25952256,40108032,0 -(1,24156:6630773,45706769:25952256,40108032,0 -(1,24156:6630773,45706769:0,0,0 -g1,24156:6630773,45706769 -) -[1,24156:6630773,45706769:25952256,40108032,0 -(1,24115:6630773,6254097:25952256,32768,229376 -(1,24115:6630773,6254097:0,32768,229376 -(1,24115:6630773,6254097:5505024,32768,229376 -r1,24156:12135797,6254097:5505024,262144,229376 -) -k1,24115:6630773,6254097:-5505024 -) -(1,24115:6630773,6254097:25952256,32768,0 -r1,24156:32583029,6254097:25952256,32768,0 -) -) -(1,24115:6630773,7885949:25952256,606339,14155 -(1,24115:6630773,7885949:2464678,582746,14155 -g1,24115:6630773,7885949 -g1,24115:9095451,7885949 -) -g1,24115:10967946,7885949 -k1,24115:32583028,7885949:19790560 -g1,24115:32583028,7885949 -) -(1,24118:6630773,9144245:25952256,513147,134348 -k1,24117:8148360,9144245:231771 -k1,24117:9797674,9144245:231770 -k1,24117:13006123,9144245:231804 -k1,24117:15719774,9144245:231803 -k1,24117:17264919,9144245:231803 -k1,24117:18589207,9144245:231803 -k1,24117:19591714,9144245:231804 -k1,24117:21182701,9144245:231770 -k1,24117:23807880,9144245:231804 -k1,24117:26896397,9144245:231803 -k1,24117:28075851,9144245:231803 -k1,24117:30341237,9144245:231804 -k1,24117:31764485,9144245:231803 -k1,24118:32583029,9144245:0 -) -(1,24118:6630773,10009325:25952256,513147,134348 -k1,24117:9688945,10009325:174588 -k1,24117:11252896,10009325:174588 -k1,24117:12995105,10009325:174588 -k1,24117:16674558,10009325:174588 -k1,24117:20453626,10009325:174588 -k1,24117:23204433,10009325:174587 -k1,24117:25177329,10009325:174588 -k1,24117:27184304,10009325:174588 -k1,24117:27890389,10009325:174588 -k1,24117:29757117,10009325:174588 -k1,24117:32583029,10009325:0 -) -(1,24118:6630773,10874405:25952256,513147,134348 -k1,24117:7619915,10874405:179772 -k1,24117:8818771,10874405:179771 -k1,24117:11840184,10874405:179772 -k1,24117:13831371,10874405:179772 -k1,24117:17373139,10874405:179771 -k1,24117:18362281,10874405:179772 -k1,24117:19561137,10874405:179771 -k1,24117:22252904,10874405:179772 -k1,24117:23091968,10874405:179772 -k1,24117:24290824,10874405:179771 -k1,24117:25681027,10874405:179753 -k1,24117:28545153,10874405:179771 -k1,24117:29921612,10874405:179772 -k1,24117:32583029,10874405:0 -) -(1,24118:6630773,11739485:25952256,513147,134348 -k1,24117:8245279,11739485:225143 -k1,24117:9983649,11739485:225144 -k1,24117:11606675,11739485:225143 -k1,24117:12363316,11739485:225144 -k1,24117:14156080,11739485:225143 -k1,24117:14737084,11739485:225144 -k1,24117:18366167,11739485:225143 -k1,24117:20620306,11739485:225144 -k1,24117:22055873,11739485:225117 -k1,24117:24438462,11739485:225144 -k1,24117:25860292,11739485:225143 -k1,24117:28746853,11739485:225144 -k1,24117:30840427,11739485:225143 -k1,24117:32583029,11739485:0 -) -(1,24118:6630773,12604565:25952256,505283,134348 -k1,24117:7870310,12604565:220452 -k1,24117:9480125,12604565:220452 -k1,24117:10968043,12604565:220452 -k1,24117:11544356,12604565:220453 -(1,24117:11544356,12604565:0,452978,115847 -r1,24156:13661181,12604565:2116825,568825,115847 -k1,24117:11544356,12604565:-2116825 -) -(1,24117:11544356,12604565:2116825,452978,115847 -k1,24117:11544356,12604565:3277 -h1,24117:13657904,12604565:0,411205,112570 -) -k1,24117:13881633,12604565:220452 -k1,24117:14788247,12604565:220452 -k1,24117:17983378,12604565:220452 -k1,24117:20573612,12604565:220452 -k1,24117:21836086,12604565:220452 -k1,24117:24754656,12604565:220453 -k1,24117:25994193,12604565:220452 -k1,24117:29189324,12604565:220452 -k1,24117:31420421,12604565:220452 -k1,24118:32583029,12604565:0 -) -(1,24118:6630773,13469645:25952256,505283,134348 -k1,24117:9767982,13469645:161874 -k1,24117:12745937,13469645:161873 -k1,24117:14099256,13469645:161874 -k1,24117:15972275,13469645:161874 -k1,24117:18090398,13469645:161873 -k1,24117:19782538,13469645:161874 -k1,24117:20595840,13469645:161874 -k1,24117:21505479,13469645:161873 -k1,24117:24828154,13469645:161874 -k1,24117:25641456,13469645:161874 -k1,24117:28423458,13469645:161873 -k1,24117:29776777,13469645:161874 -k1,24117:32583029,13469645:0 -) -(1,24118:6630773,14334725:25952256,513147,134348 -(1,24117:6816895,14334725:0,414482,115847 -r1,24156:9285432,14334725:2468537,530329,115847 -k1,24117:6816895,14334725:-2468537 -) -(1,24117:6816895,14334725:2468537,414482,115847 -k1,24117:6816895,14334725:3277 -h1,24117:9282155,14334725:0,411205,112570 -) -k1,24117:9706281,14334725:213755 -k1,24117:12104352,14334725:213756 -k1,24117:16288279,14334725:213756 -k1,24117:17129869,14334725:213755 -k1,24117:18362710,14334725:213756 -k1,24117:19943546,14334725:213755 -k1,24117:20816593,14334725:213755 -k1,24117:23554796,14334725:213756 -k1,24117:25726111,14334725:213755 -k1,24117:26749237,14334725:213756 -k1,24117:27318853,14334725:213756 -k1,24117:29102851,14334725:213755 -k1,24117:29774703,14334725:213755 -k1,24117:30519956,14334725:213756 -k1,24118:32583029,14334725:0 -) -(1,24118:6630773,15199805:25952256,513147,134348 -k1,24117:8127301,15199805:187774 -k1,24117:8966503,15199805:187774 -k1,24117:10246762,15199805:187774 -k1,24117:13014687,15199805:187773 -k1,24117:14143557,15199805:187774 -k1,24117:14982759,15199805:187774 -k1,24117:17352227,15199805:187774 -k1,24117:18559086,15199805:187774 -k1,24117:20704420,15199805:187774 -k1,24117:23306540,15199805:187774 -k1,24117:25061935,15199805:187774 -k1,24117:26268793,15199805:187773 -(1,24117:26268793,15199805:0,414482,122846 -r1,24156:27682194,15199805:1413401,537328,122846 -k1,24117:26268793,15199805:-1413401 -) -(1,24117:26268793,15199805:1413401,414482,122846 -k1,24117:26268793,15199805:3277 -h1,24117:27678917,15199805:0,411205,112570 -) -k1,24117:27869968,15199805:187774 -k1,24117:29040782,15199805:187774 -k1,24117:30496022,15199805:187774 -k1,24117:31039656,15199805:187774 -k1,24117:32583029,15199805:0 -) -(1,24118:6630773,16064885:25952256,513147,134348 -g1,24117:8108609,16064885 -g1,24117:8974994,16064885 -g1,24117:9589066,16064885 -g1,24117:11178314,16064885 -g1,24117:14124157,16064885 -g1,24117:14854883,16064885 -g1,24117:18144135,16064885 -g1,24117:18959402,16064885 -g1,24117:21437318,16064885 -h1,24117:22407906,16064885:0,0,0 -g1,24117:22607135,16064885 -g1,24117:23615734,16064885 -g1,24117:25313116,16064885 -h1,24117:26508493,16064885:0,0,0 -k1,24118:32583029,16064885:5815014 -g1,24118:32583029,16064885 -) -v1,24120:6630773,16749740:0,393216,0 -(1,24143:6630773,27625392:25952256,11268868,196608 -g1,24143:6630773,27625392 -g1,24143:6630773,27625392 -g1,24143:6434165,27625392 -(1,24143:6434165,27625392:0,11268868,196608 -r1,24156:32779637,27625392:26345472,11465476,196608 -k1,24143:6434165,27625392:-26345472 -) -(1,24143:6434165,27625392:26345472,11268868,196608 -[1,24143:6630773,27625392:25952256,11072260,0 -(1,24122:6630773,16984177:25952256,431045,112852 -(1,24121:6630773,16984177:0,0,0 -g1,24121:6630773,16984177 -g1,24121:6630773,16984177 -g1,24121:6303093,16984177 -(1,24121:6303093,16984177:0,0,0 -) -g1,24121:6630773,16984177 -) -k1,24122:6630773,16984177:0 -g1,24122:12605944,16984177 -g1,24122:13269852,16984177 -g1,24122:20904792,16984177 -g1,24122:26548009,16984177 -g1,24122:27211917,16984177 -g1,24122:29203641,16984177 -k1,24122:29203641,16984177:0 -h1,24122:29867549,16984177:0,0,0 -k1,24122:32583029,16984177:2715480 -g1,24122:32583029,16984177 -) -(1,24123:6630773,17669032:25952256,424439,79822 -h1,24123:6630773,17669032:0,0,0 -g1,24123:9950313,17669032 -g1,24123:10614221,17669032 -g1,24123:11610083,17669032 -k1,24123:11610083,17669032:0 -h1,24123:12273991,17669032:0,0,0 -k1,24123:32583029,17669032:20309038 -g1,24123:32583029,17669032 -) -(1,24124:6630773,18353887:25952256,424439,79822 -h1,24124:6630773,18353887:0,0,0 -g1,24124:11610082,18353887 -g1,24124:12273990,18353887 -g1,24124:13269852,18353887 -k1,24124:13269852,18353887:0 -h1,24124:13933760,18353887:0,0,0 -k1,24124:32583028,18353887:18649268 -g1,24124:32583028,18353887 -) -(1,24125:6630773,19038742:25952256,424439,79822 -h1,24125:6630773,19038742:0,0,0 -g1,24125:10282267,19038742 -k1,24125:10282267,19038742:0 -h1,24125:10946175,19038742:0,0,0 -k1,24125:32583029,19038742:21636854 -g1,24125:32583029,19038742 -) -(1,24126:6630773,19723597:25952256,424439,112852 -h1,24126:6630773,19723597:0,0,0 -g1,24126:9618359,19723597 -g1,24126:10282267,19723597 -g1,24126:12937899,19723597 -g1,24126:14929623,19723597 -g1,24126:15593531,19723597 -g1,24126:16589393,19723597 -k1,24126:16589393,19723597:0 -h1,24126:17253301,19723597:0,0,0 -k1,24126:32583029,19723597:15329728 -g1,24126:32583029,19723597 -) -(1,24127:6630773,20408452:25952256,424439,112852 -h1,24127:6630773,20408452:0,0,0 -g1,24127:9950313,20408452 -g1,24127:10614221,20408452 -g1,24127:12605945,20408452 -g1,24127:13601807,20408452 -g1,24127:16921346,20408452 -k1,24127:16921346,20408452:0 -h1,24127:17585254,20408452:0,0,0 -k1,24127:32583029,20408452:14997775 -g1,24127:32583029,20408452 -) -(1,24128:6630773,21093307:25952256,424439,86428 -h1,24128:6630773,21093307:0,0,0 -g1,24128:9618359,21093307 -g1,24128:10282267,21093307 -g1,24128:11278129,21093307 -g1,24128:14597668,21093307 -g1,24128:15261576,21093307 -g1,24128:17585254,21093307 -k1,24128:17585254,21093307:0 -h1,24128:18249162,21093307:0,0,0 -k1,24128:32583029,21093307:14333867 -g1,24128:32583029,21093307 -) -(1,24129:6630773,21778162:25952256,431045,106246 -h1,24129:6630773,21778162:0,0,0 -g1,24129:9950313,21778162 -g1,24129:10614221,21778162 -g1,24129:11610083,21778162 -g1,24129:12605945,21778162 -g1,24129:13269853,21778162 -g1,24129:17253300,21778162 -g1,24129:21236747,21778162 -g1,24129:21900655,21778162 -g1,24129:23228471,21778162 -g1,24129:23892379,21778162 -g1,24129:26879965,21778162 -g1,24129:27543873,21778162 -h1,24129:29203643,21778162:0,0,0 -k1,24129:32583029,21778162:3379386 -g1,24129:32583029,21778162 -) -(1,24139:6630773,22594089:25952256,424439,9908 -(1,24131:6630773,22594089:0,0,0 -g1,24131:6630773,22594089 -g1,24131:6630773,22594089 -g1,24131:6303093,22594089 -(1,24131:6303093,22594089:0,0,0 -) -g1,24131:6630773,22594089 -) -g1,24139:7626635,22594089 -g1,24139:8290543,22594089 -g1,24139:8954451,22594089 -g1,24139:11610083,22594089 -g1,24139:12937899,22594089 -g1,24139:13601807,22594089 -h1,24139:13933761,22594089:0,0,0 -k1,24139:32583029,22594089:18649268 -g1,24139:32583029,22594089 -) -(1,24139:6630773,23278944:25952256,431045,106246 -h1,24139:6630773,23278944:0,0,0 -k1,24139:7587612,23278944:292931 -k1,24139:7880544,23278944:292932 -k1,24139:8173475,23278944:292931 -k1,24139:9794223,23278944:292932 -k1,24139:10087154,23278944:292931 -k1,24139:10380086,23278944:292932 -k1,24139:10673017,23278944:292931 -k1,24139:10965949,23278944:292932 -k1,24139:11258880,23278944:292931 -k1,24139:11551812,23278944:292932 -k1,24139:11844743,23278944:292931 -k1,24139:12137675,23278944:292932 -k1,24139:12430606,23278944:292931 -k1,24139:12723537,23278944:292931 -k1,24139:13016469,23278944:292932 -k1,24139:13309400,23278944:292931 -k1,24139:13602332,23278944:292932 -k1,24139:13895263,23278944:292931 -k1,24139:14188195,23278944:292932 -k1,24139:14481126,23278944:292931 -k1,24139:14774058,23278944:292932 -k1,24139:15066989,23278944:292931 -k1,24139:15359921,23278944:292932 -k1,24139:15652852,23278944:292931 -k1,24139:17605554,23278944:292932 -k1,24139:17898485,23278944:292931 -k1,24139:19519232,23278944:292931 -k1,24139:19812164,23278944:292932 -k1,24139:20105095,23278944:292931 -k1,24139:20398027,23278944:292932 -k1,24139:20690958,23278944:292931 -k1,24139:20983890,23278944:292932 -k1,24139:21276821,23278944:292931 -k1,24139:21569753,23278944:292932 -k1,24139:21862684,23278944:292931 -k1,24139:23483432,23278944:292932 -k1,24139:23776363,23278944:292931 -k1,24139:25065156,23278944:292931 -k1,24139:25358088,23278944:292932 -k1,24139:25651019,23278944:292931 -k1,24139:29263490,23278944:292932 -h1,24139:32583029,23278944:0,0,0 -k1,24139:32583029,23278944:0 -k1,24139:32583029,23278944:0 -) -(1,24139:6630773,23963799:25952256,424439,6605 -h1,24139:6630773,23963799:0,0,0 -g1,24139:7626635,23963799 -g1,24139:7958589,23963799 -g1,24139:8290543,23963799 -g1,24139:10282267,23963799 -g1,24139:10614221,23963799 -g1,24139:10946175,23963799 -g1,24139:11278129,23963799 -g1,24139:11610083,23963799 -g1,24139:11942037,23963799 -g1,24139:12273991,23963799 -g1,24139:12605945,23963799 -g1,24139:12937899,23963799 -g1,24139:13269853,23963799 -g1,24139:13601807,23963799 -g1,24139:13933761,23963799 -g1,24139:14265715,23963799 -g1,24139:14597669,23963799 -g1,24139:14929623,23963799 -g1,24139:15261577,23963799 -g1,24139:15593531,23963799 -g1,24139:15925485,23963799 -g1,24139:16257439,23963799 -g1,24139:16589393,23963799 -g1,24139:18581117,23963799 -g1,24139:18913071,23963799 -g1,24139:20904795,23963799 -g1,24139:21236749,23963799 -g1,24139:21568703,23963799 -g1,24139:21900657,23963799 -g1,24139:22232611,23963799 -g1,24139:22564565,23963799 -g1,24139:22896519,23963799 -g1,24139:23228473,23963799 -g1,24139:25220197,23963799 -g1,24139:27211921,23963799 -g1,24139:29203645,23963799 -g1,24139:29535599,23963799 -g1,24139:29867553,23963799 -g1,24139:30199507,23963799 -g1,24139:30531461,23963799 -g1,24139:30863415,23963799 -k1,24139:30863415,23963799:0 -h1,24139:32523185,23963799:0,0,0 -k1,24139:32583029,23963799:59844 -g1,24139:32583029,23963799 -) -(1,24139:6630773,24648654:25952256,424439,106246 -h1,24139:6630773,24648654:0,0,0 -k1,24139:7519973,24648654:225292 -k1,24139:8077220,24648654:225293 -k1,24139:16269407,24648654:225292 -k1,24139:18486424,24648654:225293 -k1,24139:22695164,24648654:225292 -k1,24139:23252411,24648654:225293 -k1,24139:23477703,24648654:225292 -k1,24139:23702996,24648654:225293 -k1,24139:23928288,24648654:225292 -k1,24139:24153581,24648654:225293 -k1,24139:25042781,24648654:225292 -k1,24139:25268074,24648654:225293 -k1,24139:25493366,24648654:225292 -k1,24139:25718658,24648654:225292 -k1,24139:29263490,24648654:225293 -h1,24139:32583029,24648654:0,0,0 -k1,24139:32583029,24648654:0 -k1,24139:32583029,24648654:0 -) -(1,24139:6630773,25333509:25952256,424439,106246 -h1,24139:6630773,25333509:0,0,0 -k1,24139:7519973,25333509:225292 -k1,24139:8077220,25333509:225293 -k1,24139:16269407,25333509:225292 -k1,24139:18486424,25333509:225293 -k1,24139:22695164,25333509:225292 -k1,24139:23252411,25333509:225293 -k1,24139:23477703,25333509:225292 -k1,24139:23702996,25333509:225293 -k1,24139:23928288,25333509:225292 -k1,24139:24153581,25333509:225293 -k1,24139:25042781,25333509:225292 -k1,24139:25268074,25333509:225293 -k1,24139:25493366,25333509:225292 -k1,24139:25718658,25333509:225292 -k1,24139:29263490,25333509:225293 -h1,24139:32583029,25333509:0,0,0 -k1,24139:32583029,25333509:0 -k1,24139:32583029,25333509:0 -) -(1,24139:6630773,26018364:25952256,424439,106246 -h1,24139:6630773,26018364:0,0,0 -k1,24139:7519973,26018364:225292 -k1,24139:8077220,26018364:225293 -k1,24139:16269407,26018364:225292 -k1,24139:18486424,26018364:225293 -k1,24139:22695164,26018364:225292 -k1,24139:23252411,26018364:225293 -k1,24139:23477703,26018364:225292 -k1,24139:23702996,26018364:225293 -k1,24139:23928288,26018364:225292 -k1,24139:24153581,26018364:225293 -k1,24139:25042781,26018364:225292 -k1,24139:25268074,26018364:225293 -k1,24139:25493366,26018364:225292 -k1,24139:25718658,26018364:225292 -k1,24139:29263490,26018364:225293 -h1,24139:32583029,26018364:0,0,0 -k1,24139:32583029,26018364:0 -k1,24139:32583029,26018364:0 -) -(1,24139:6630773,26703219:25952256,424439,9908 -h1,24139:6630773,26703219:0,0,0 -g1,24139:7626635,26703219 -g1,24139:8290543,26703219 -g1,24139:8954451,26703219 -g1,24139:10282267,26703219 -g1,24139:11942037,26703219 -h1,24139:13269853,26703219:0,0,0 -k1,24139:32583029,26703219:19313176 -g1,24139:32583029,26703219 -) -(1,24141:6630773,27519146:25952256,424439,106246 -(1,24140:6630773,27519146:0,0,0 -g1,24140:6630773,27519146 -g1,24140:6630773,27519146 -g1,24140:6303093,27519146 -(1,24140:6303093,27519146:0,0,0 -) -g1,24140:6630773,27519146 -) -k1,24141:6630773,27519146:0 -g1,24141:9618359,27519146 -g1,24141:10282267,27519146 -k1,24141:10282267,27519146:9909 -h1,24141:12615854,27519146:0,0,0 -k1,24141:32583030,27519146:19967176 -g1,24141:32583030,27519146 -) -] -) -g1,24143:32583029,27625392 -g1,24143:6630773,27625392 -g1,24143:6630773,27625392 -g1,24143:32583029,27625392 -g1,24143:32583029,27625392 -) -h1,24143:6630773,27822000:0,0,0 -v1,24147:6630773,28687080:0,393216,0 -(1,24148:6630773,33419305:25952256,5125441,0 -g1,24148:6630773,33419305 -g1,24148:6237557,33419305 -r1,24156:6368629,33419305:131072,5125441,0 -g1,24148:6567858,33419305 -g1,24148:6764466,33419305 -[1,24148:6764466,33419305:25818563,5125441,0 -(1,24148:6764466,28959557:25818563,665693,196608 -(1,24147:6764466,28959557:0,665693,196608 -r1,24156:7868133,28959557:1103667,862301,196608 -k1,24147:6764466,28959557:-1103667 -) -(1,24147:6764466,28959557:1103667,665693,196608 -) -k1,24147:8039309,28959557:171176 -k1,24147:10173817,28959557:327680 -k1,24147:11174023,28959557:171176 -k1,24147:15009972,28959557:171176 -k1,24147:16729764,28959557:171176 -k1,24147:18290303,28959557:171176 -k1,24147:23298692,28959557:171177 -k1,24147:25152833,28959557:171176 -k1,24147:26986657,28959557:171176 -k1,24147:27773871,28959557:171176 -k1,24147:29396669,28959557:171176 -k1,24147:32583029,28959557:0 -) -(1,24148:6764466,29824637:25818563,513147,134348 -k1,24147:7649436,29824637:225678 -k1,24147:9078355,29824637:225678 -k1,24147:10867722,29824637:225678 -k1,24147:12581723,29824637:225678 -k1,24147:13568929,29824637:225678 -k1,24147:16317743,29824637:225678 -k1,24147:17562506,29824637:225678 -k1,24147:19094316,29824637:225677 -k1,24147:22506354,29824637:225678 -k1,24147:23493560,29824637:225678 -k1,24147:25498540,29824637:225678 -k1,24147:28801133,29824637:225678 -k1,24147:30045896,29824637:225678 -k1,24147:31661593,29824637:225678 -k1,24148:32583029,29824637:0 -) -(1,24148:6764466,30689717:25818563,505283,134348 -k1,24147:9097594,30689717:228112 -k1,24147:10517151,30689717:228112 -k1,24147:13523334,30689717:228112 -k1,24147:15939038,30689717:228112 -k1,24147:17323860,30689717:228112 -k1,24147:20738332,30689717:228112 -k1,24147:21579207,30689717:228113 -k1,24147:22163179,30689717:228112 -k1,24147:23990369,30689717:228112 -k1,24147:25409926,30689717:228112 -k1,24147:26250800,30689717:228112 -k1,24147:27930534,30689717:228112 -k1,24147:29513931,30689717:228112 -k1,24147:31563944,30689717:228112 -k1,24147:32583029,30689717:0 -) -(1,24148:6764466,31554797:25818563,513147,134348 -k1,24147:9718779,31554797:175586 -k1,24147:11574708,31554797:175586 -k1,24147:12941739,31554797:175586 -k1,24147:14504067,31554797:175586 -k1,24147:15745924,31554797:175586 -k1,24147:16869161,31554797:175586 -k1,24147:18593362,31554797:175585 -k1,24147:19869953,31554797:175586 -k1,24147:22706956,31554797:175586 -k1,24147:24450163,31554797:175586 -k1,24147:25644834,31554797:175586 -k1,24147:28574898,31554797:175586 -k1,24147:30279439,31554797:175586 -k1,24148:32583029,31554797:0 -) -(1,24148:6764466,32419877:25818563,505283,126483 -k1,24147:8114684,32419877:222999 -k1,24147:9508155,32419877:222998 -k1,24147:10835436,32419877:222999 -k1,24147:12897375,32419877:222999 -k1,24147:13476233,32419877:222998 -k1,24147:14867739,32419877:222999 -(1,24147:14867739,32419877:0,452978,115847 -r1,24156:18391412,32419877:3523673,568825,115847 -k1,24147:14867739,32419877:-3523673 -) -(1,24147:14867739,32419877:3523673,452978,115847 -g1,24147:17684711,32419877 -h1,24147:18388135,32419877:0,411205,112570 -) -k1,24147:18614410,32419877:222998 -k1,24147:19450171,32419877:222999 -k1,24147:20692255,32419877:222999 -k1,24147:22603460,32419877:222998 -k1,24147:24745353,32419877:222999 -k1,24147:26138825,32419877:222999 -k1,24147:27829174,32419877:222998 -k1,24147:28703601,32419877:222999 -k1,24147:29951582,32419877:222998 -k1,24147:31193666,32419877:222999 -k1,24147:32583029,32419877:0 -) -(1,24148:6764466,33284957:25818563,505283,134348 -g1,24147:8701710,33284957 -k1,24148:32583028,33284957:21417820 -g1,24148:32583028,33284957 -) -] -g1,24148:32583029,33419305 -) -h1,24148:6630773,33419305:0,0,0 -(1,24152:6630773,36250465:25952256,32768,229376 -(1,24152:6630773,36250465:0,32768,229376 -(1,24152:6630773,36250465:5505024,32768,229376 -r1,24156:12135797,36250465:5505024,262144,229376 -) -k1,24152:6630773,36250465:-5505024 -) -(1,24152:6630773,36250465:25952256,32768,0 -r1,24156:32583029,36250465:25952256,32768,0 -) -) -(1,24152:6630773,37882317:25952256,606339,14155 -(1,24152:6630773,37882317:2464678,582746,14155 -g1,24152:6630773,37882317 -g1,24152:9095451,37882317 -) -k1,24152:32583029,37882317:18845270 -g1,24152:32583029,37882317 -) -(1,24156:6630773,39140613:25952256,513147,126483 -k1,24155:9860933,39140613:202397 -k1,24155:12078562,39140613:202397 -k1,24155:13973099,39140613:202397 -k1,24155:16017057,39140613:202396 -k1,24155:17410899,39140613:202397 -k1,24155:19215651,39140613:202397 -k1,24155:21259610,39140613:202397 -k1,24155:22453567,39140613:202397 -k1,24155:23675049,39140613:202397 -k1,24155:25479145,39140613:202396 -k1,24155:28986523,39140613:202397 -k1,24155:30702146,39140613:202397 -k1,24155:32583029,39140613:0 -) -(1,24156:6630773,40005693:25952256,505283,134348 -k1,24155:10169360,40005693:176590 -k1,24155:13418277,40005693:176589 -k1,24155:15449536,40005693:176590 -k1,24155:16435496,40005693:176590 -k1,24155:17631170,40005693:176589 -k1,24155:21100944,40005693:176590 -k1,24155:24488142,40005693:176589 -k1,24155:26497119,40005693:176590 -k1,24155:27205206,40005693:176590 -k1,24155:30165764,40005693:176589 -k1,24155:30698214,40005693:176590 -k1,24156:32583029,40005693:0 -) -(1,24156:6630773,40870773:25952256,513147,134348 -k1,24155:9274243,40870773:278931 -k1,24155:10536214,40870773:278931 -k1,24155:12995528,40870773:278931 -k1,24155:14222111,40870773:278932 -k1,24155:17454094,40870773:278931 -k1,24155:18392317,40870773:278931 -k1,24155:21964432,40870773:278931 -k1,24155:23806397,40870773:278931 -k1,24155:25157497,40870773:278931 -k1,24155:25894526,40870773:278932 -k1,24155:27666367,40870773:278931 -k1,24155:29011569,40870773:278931 -k1,24155:31816913,40870773:278931 -k1,24155:32583029,40870773:0 -) -(1,24156:6630773,41735853:25952256,513147,134348 -k1,24155:7884695,41735853:234837 -k1,24155:10725244,41735853:234838 -k1,24155:13365908,41735853:234837 -k1,24155:14216783,41735853:234837 -k1,24155:16384933,41735853:234838 -k1,24155:17602810,41735853:234837 -k1,24155:20522002,41735853:234837 -k1,24155:21710389,41735853:234838 -k1,24155:23077688,41735853:234837 -k1,24155:24800848,41735853:234837 -k1,24155:25797214,41735853:234838 -k1,24155:29753185,41735853:234837 -k1,24155:32583029,41735853:0 -) -(1,24156:6630773,42600933:25952256,513147,134348 -k1,24155:7993871,42600933:188038 -k1,24155:9164949,42600933:188038 -k1,24155:11533370,42600933:188038 -k1,24155:13234633,42600933:188037 -k1,24155:14184199,42600933:188038 -k1,24155:17149653,42600933:188038 -k1,24155:18438696,42600933:188038 -k1,24155:21288151,42600933:188038 -k1,24155:25355920,42600933:188038 -k1,24155:26931354,42600933:188037 -k1,24155:28138477,42600933:188038 -k1,24155:30183150,42600933:188038 -k1,24155:31562633,42600933:188038 -k1,24155:32583029,42600933:0 -) -(1,24156:6630773,43466013:25952256,513147,134348 -k1,24155:9291912,43466013:150455 -k1,24155:10882194,43466013:150456 -k1,24155:11684077,43466013:150455 -k1,24155:12582299,43466013:150456 -k1,24155:13945825,43466013:150455 -k1,24155:15374887,43466013:150455 -k1,24155:18819838,43466013:150456 -k1,24155:19731821,43466013:150455 -k1,24155:22666245,43466013:150455 -k1,24155:23231495,43466013:150407 -k1,24155:26292405,43466013:150456 -k1,24155:27634305,43466013:150455 -k1,24155:29121695,43466013:150456 -k1,24155:31563944,43466013:150455 -k1,24155:32583029,43466013:0 -) -(1,24156:6630773,44331093:25952256,513147,126483 -k1,24155:7780976,44331093:167163 -k1,24155:8599568,44331093:167164 -k1,24155:9514497,44331093:167163 -k1,24155:12318830,44331093:167164 -k1,24155:13137421,44331093:167163 -k1,24155:13660445,44331093:167164 -k1,24155:15477805,44331093:167163 -k1,24155:18130749,44331093:167163 -k1,24155:20478296,44331093:167164 -k1,24155:22039410,44331093:167163 -k1,24155:24983990,44331093:167164 -k1,24155:26756785,44331093:167163 -k1,24155:28966706,44331093:167164 -k1,24155:31315563,44331093:167163 -k1,24156:32583029,44331093:0 -) -(1,24156:6630773,45196173:25952256,513147,126483 -k1,24155:7461722,45196173:242436 -k1,24155:8900845,45196173:242436 -k1,24155:11487504,45196173:242436 -k1,24155:13910323,45196173:242436 -k1,24155:14684256,45196173:242436 -k1,24155:16781361,45196173:242436 -k1,24155:17833167,45196173:242436 -k1,24155:19434777,45196173:242393 -k1,24155:20868658,45196173:242436 -k1,24155:24036621,45196173:242436 -k1,24155:26403734,45196173:242436 -k1,24155:27297598,45196173:242436 -k1,24155:29977973,45196173:242436 -k1,24155:32583029,45196173:0 -) -] -(1,24156:32583029,45706769:0,0,0 -g1,24156:32583029,45706769 -) -) -] -(1,24156:6630773,47279633:25952256,0,0 -h1,24156:6630773,47279633:25952256,0,0 -) -] -(1,24156:4262630,4025873:0,0,0 -[1,24156:-473656,4025873:0,0,0 -(1,24156:-473656,-710413:0,0,0 -(1,24156:-473656,-710413:0,0,0 -g1,24156:-473656,-710413 -) -g1,24156:-473656,-710413 +] +g1,24154:6630773,4812305 +g1,24154:6630773,4812305 +g1,24154:8113852,4812305 +g1,24154:9680817,4812305 +k1,24154:31387653,4812305:21706836 +) +) +] +[1,24154:6630773,45706769:25952256,40108032,0 +(1,24154:6630773,45706769:25952256,40108032,0 +(1,24154:6630773,45706769:0,0,0 +g1,24154:6630773,45706769 +) +[1,24154:6630773,45706769:25952256,40108032,0 +(1,24113:6630773,6254097:25952256,32768,229376 +(1,24113:6630773,6254097:0,32768,229376 +(1,24113:6630773,6254097:5505024,32768,229376 +r1,24154:12135797,6254097:5505024,262144,229376 +) +k1,24113:6630773,6254097:-5505024 +) +(1,24113:6630773,6254097:25952256,32768,0 +r1,24154:32583029,6254097:25952256,32768,0 +) +) +(1,24113:6630773,7885949:25952256,606339,14155 +(1,24113:6630773,7885949:2464678,582746,14155 +g1,24113:6630773,7885949 +g1,24113:9095451,7885949 +) +g1,24113:10967946,7885949 +k1,24113:32583028,7885949:19790560 +g1,24113:32583028,7885949 +) +(1,24116:6630773,9144245:25952256,513147,134348 +k1,24115:8148360,9144245:231771 +k1,24115:9797674,9144245:231770 +k1,24115:13006123,9144245:231804 +k1,24115:15719774,9144245:231803 +k1,24115:17264919,9144245:231803 +k1,24115:18589207,9144245:231803 +k1,24115:19591714,9144245:231804 +k1,24115:21182701,9144245:231770 +k1,24115:23807880,9144245:231804 +k1,24115:26896397,9144245:231803 +k1,24115:28075851,9144245:231803 +k1,24115:30341237,9144245:231804 +k1,24115:31764485,9144245:231803 +k1,24116:32583029,9144245:0 +) +(1,24116:6630773,10009325:25952256,513147,134348 +k1,24115:9688945,10009325:174588 +k1,24115:11252896,10009325:174588 +k1,24115:12995105,10009325:174588 +k1,24115:16674558,10009325:174588 +k1,24115:20453626,10009325:174588 +k1,24115:23204433,10009325:174587 +k1,24115:25177329,10009325:174588 +k1,24115:27184304,10009325:174588 +k1,24115:27890389,10009325:174588 +k1,24115:29757117,10009325:174588 +k1,24115:32583029,10009325:0 +) +(1,24116:6630773,10874405:25952256,513147,134348 +k1,24115:7619915,10874405:179772 +k1,24115:8818771,10874405:179771 +k1,24115:11840184,10874405:179772 +k1,24115:13831371,10874405:179772 +k1,24115:17373139,10874405:179771 +k1,24115:18362281,10874405:179772 +k1,24115:19561137,10874405:179771 +k1,24115:22252904,10874405:179772 +k1,24115:23091968,10874405:179772 +k1,24115:24290824,10874405:179771 +k1,24115:25681027,10874405:179753 +k1,24115:28545153,10874405:179771 +k1,24115:29921612,10874405:179772 +k1,24115:32583029,10874405:0 +) +(1,24116:6630773,11739485:25952256,513147,134348 +k1,24115:8245279,11739485:225143 +k1,24115:9983649,11739485:225144 +k1,24115:11606675,11739485:225143 +k1,24115:12363316,11739485:225144 +k1,24115:14156080,11739485:225143 +k1,24115:14737084,11739485:225144 +k1,24115:18366167,11739485:225143 +k1,24115:20620306,11739485:225144 +k1,24115:22055873,11739485:225117 +k1,24115:24438462,11739485:225144 +k1,24115:25860292,11739485:225143 +k1,24115:28746853,11739485:225144 +k1,24115:30840427,11739485:225143 +k1,24115:32583029,11739485:0 +) +(1,24116:6630773,12604565:25952256,505283,134348 +k1,24115:7870310,12604565:220452 +k1,24115:9480125,12604565:220452 +k1,24115:10968043,12604565:220452 +k1,24115:11544356,12604565:220453 +(1,24115:11544356,12604565:0,452978,115847 +r1,24154:13661181,12604565:2116825,568825,115847 +k1,24115:11544356,12604565:-2116825 +) +(1,24115:11544356,12604565:2116825,452978,115847 +k1,24115:11544356,12604565:3277 +h1,24115:13657904,12604565:0,411205,112570 +) +k1,24115:13881633,12604565:220452 +k1,24115:14788247,12604565:220452 +k1,24115:17983378,12604565:220452 +k1,24115:20573612,12604565:220452 +k1,24115:21836086,12604565:220452 +k1,24115:24754656,12604565:220453 +k1,24115:25994193,12604565:220452 +k1,24115:29189324,12604565:220452 +k1,24115:31420421,12604565:220452 +k1,24116:32583029,12604565:0 +) +(1,24116:6630773,13469645:25952256,505283,134348 +k1,24115:9767982,13469645:161874 +k1,24115:12745937,13469645:161873 +k1,24115:14099256,13469645:161874 +k1,24115:15972275,13469645:161874 +k1,24115:18090398,13469645:161873 +k1,24115:19782538,13469645:161874 +k1,24115:20595840,13469645:161874 +k1,24115:21505479,13469645:161873 +k1,24115:24828154,13469645:161874 +k1,24115:25641456,13469645:161874 +k1,24115:28423458,13469645:161873 +k1,24115:29776777,13469645:161874 +k1,24115:32583029,13469645:0 +) +(1,24116:6630773,14334725:25952256,513147,134348 +(1,24115:6816895,14334725:0,414482,115847 +r1,24154:9285432,14334725:2468537,530329,115847 +k1,24115:6816895,14334725:-2468537 +) +(1,24115:6816895,14334725:2468537,414482,115847 +k1,24115:6816895,14334725:3277 +h1,24115:9282155,14334725:0,411205,112570 +) +k1,24115:9706281,14334725:213755 +k1,24115:12104352,14334725:213756 +k1,24115:16288279,14334725:213756 +k1,24115:17129869,14334725:213755 +k1,24115:18362710,14334725:213756 +k1,24115:19943546,14334725:213755 +k1,24115:20816593,14334725:213755 +k1,24115:23554796,14334725:213756 +k1,24115:25726111,14334725:213755 +k1,24115:26749237,14334725:213756 +k1,24115:27318853,14334725:213756 +k1,24115:29102851,14334725:213755 +k1,24115:29774703,14334725:213755 +k1,24115:30519956,14334725:213756 +k1,24116:32583029,14334725:0 +) +(1,24116:6630773,15199805:25952256,513147,134348 +k1,24115:8127301,15199805:187774 +k1,24115:8966503,15199805:187774 +k1,24115:10246762,15199805:187774 +k1,24115:13014687,15199805:187773 +k1,24115:14143557,15199805:187774 +k1,24115:14982759,15199805:187774 +k1,24115:17352227,15199805:187774 +k1,24115:18559086,15199805:187774 +k1,24115:20704420,15199805:187774 +k1,24115:23306540,15199805:187774 +k1,24115:25061935,15199805:187774 +k1,24115:26268793,15199805:187773 +(1,24115:26268793,15199805:0,414482,122846 +r1,24154:27682194,15199805:1413401,537328,122846 +k1,24115:26268793,15199805:-1413401 +) +(1,24115:26268793,15199805:1413401,414482,122846 +k1,24115:26268793,15199805:3277 +h1,24115:27678917,15199805:0,411205,112570 +) +k1,24115:27869968,15199805:187774 +k1,24115:29040782,15199805:187774 +k1,24115:30496022,15199805:187774 +k1,24115:31039656,15199805:187774 +k1,24115:32583029,15199805:0 +) +(1,24116:6630773,16064885:25952256,513147,134348 +g1,24115:8108609,16064885 +g1,24115:8974994,16064885 +g1,24115:9589066,16064885 +g1,24115:11178314,16064885 +g1,24115:14124157,16064885 +g1,24115:14854883,16064885 +g1,24115:18144135,16064885 +g1,24115:18959402,16064885 +g1,24115:21437318,16064885 +h1,24115:22407906,16064885:0,0,0 +g1,24115:22607135,16064885 +g1,24115:23615734,16064885 +g1,24115:25313116,16064885 +h1,24115:26508493,16064885:0,0,0 +k1,24116:32583029,16064885:5815014 +g1,24116:32583029,16064885 +) +v1,24118:6630773,16749740:0,393216,0 +(1,24141:6630773,27625392:25952256,11268868,196608 +g1,24141:6630773,27625392 +g1,24141:6630773,27625392 +g1,24141:6434165,27625392 +(1,24141:6434165,27625392:0,11268868,196608 +r1,24154:32779637,27625392:26345472,11465476,196608 +k1,24141:6434165,27625392:-26345472 +) +(1,24141:6434165,27625392:26345472,11268868,196608 +[1,24141:6630773,27625392:25952256,11072260,0 +(1,24120:6630773,16984177:25952256,431045,112852 +(1,24119:6630773,16984177:0,0,0 +g1,24119:6630773,16984177 +g1,24119:6630773,16984177 +g1,24119:6303093,16984177 +(1,24119:6303093,16984177:0,0,0 +) +g1,24119:6630773,16984177 +) +k1,24120:6630773,16984177:0 +g1,24120:12605944,16984177 +g1,24120:13269852,16984177 +g1,24120:20904792,16984177 +g1,24120:26548009,16984177 +g1,24120:27211917,16984177 +g1,24120:29203641,16984177 +k1,24120:29203641,16984177:0 +h1,24120:29867549,16984177:0,0,0 +k1,24120:32583029,16984177:2715480 +g1,24120:32583029,16984177 +) +(1,24121:6630773,17669032:25952256,424439,79822 +h1,24121:6630773,17669032:0,0,0 +g1,24121:9950313,17669032 +g1,24121:10614221,17669032 +g1,24121:11610083,17669032 +k1,24121:11610083,17669032:0 +h1,24121:12273991,17669032:0,0,0 +k1,24121:32583029,17669032:20309038 +g1,24121:32583029,17669032 +) +(1,24122:6630773,18353887:25952256,424439,79822 +h1,24122:6630773,18353887:0,0,0 +g1,24122:11610082,18353887 +g1,24122:12273990,18353887 +g1,24122:13269852,18353887 +k1,24122:13269852,18353887:0 +h1,24122:13933760,18353887:0,0,0 +k1,24122:32583028,18353887:18649268 +g1,24122:32583028,18353887 +) +(1,24123:6630773,19038742:25952256,424439,79822 +h1,24123:6630773,19038742:0,0,0 +g1,24123:10282267,19038742 +k1,24123:10282267,19038742:0 +h1,24123:10946175,19038742:0,0,0 +k1,24123:32583029,19038742:21636854 +g1,24123:32583029,19038742 +) +(1,24124:6630773,19723597:25952256,424439,112852 +h1,24124:6630773,19723597:0,0,0 +g1,24124:9618359,19723597 +g1,24124:10282267,19723597 +g1,24124:12937899,19723597 +g1,24124:14929623,19723597 +g1,24124:15593531,19723597 +g1,24124:16589393,19723597 +k1,24124:16589393,19723597:0 +h1,24124:17253301,19723597:0,0,0 +k1,24124:32583029,19723597:15329728 +g1,24124:32583029,19723597 +) +(1,24125:6630773,20408452:25952256,424439,112852 +h1,24125:6630773,20408452:0,0,0 +g1,24125:9950313,20408452 +g1,24125:10614221,20408452 +g1,24125:12605945,20408452 +g1,24125:13601807,20408452 +g1,24125:16921346,20408452 +k1,24125:16921346,20408452:0 +h1,24125:17585254,20408452:0,0,0 +k1,24125:32583029,20408452:14997775 +g1,24125:32583029,20408452 +) +(1,24126:6630773,21093307:25952256,424439,86428 +h1,24126:6630773,21093307:0,0,0 +g1,24126:9618359,21093307 +g1,24126:10282267,21093307 +g1,24126:11278129,21093307 +g1,24126:14597668,21093307 +g1,24126:15261576,21093307 +g1,24126:17585254,21093307 +k1,24126:17585254,21093307:0 +h1,24126:18249162,21093307:0,0,0 +k1,24126:32583029,21093307:14333867 +g1,24126:32583029,21093307 +) +(1,24127:6630773,21778162:25952256,431045,106246 +h1,24127:6630773,21778162:0,0,0 +g1,24127:9950313,21778162 +g1,24127:10614221,21778162 +g1,24127:11610083,21778162 +g1,24127:12605945,21778162 +g1,24127:13269853,21778162 +g1,24127:17253300,21778162 +g1,24127:21236747,21778162 +g1,24127:21900655,21778162 +g1,24127:23228471,21778162 +g1,24127:23892379,21778162 +g1,24127:26879965,21778162 +g1,24127:27543873,21778162 +h1,24127:29203643,21778162:0,0,0 +k1,24127:32583029,21778162:3379386 +g1,24127:32583029,21778162 +) +(1,24137:6630773,22594089:25952256,424439,9908 +(1,24129:6630773,22594089:0,0,0 +g1,24129:6630773,22594089 +g1,24129:6630773,22594089 +g1,24129:6303093,22594089 +(1,24129:6303093,22594089:0,0,0 +) +g1,24129:6630773,22594089 +) +g1,24137:7626635,22594089 +g1,24137:8290543,22594089 +g1,24137:8954451,22594089 +g1,24137:11610083,22594089 +g1,24137:12937899,22594089 +g1,24137:13601807,22594089 +h1,24137:13933761,22594089:0,0,0 +k1,24137:32583029,22594089:18649268 +g1,24137:32583029,22594089 +) +(1,24137:6630773,23278944:25952256,431045,106246 +h1,24137:6630773,23278944:0,0,0 +k1,24137:7587612,23278944:292931 +k1,24137:7880544,23278944:292932 +k1,24137:8173475,23278944:292931 +k1,24137:9794223,23278944:292932 +k1,24137:10087154,23278944:292931 +k1,24137:10380086,23278944:292932 +k1,24137:10673017,23278944:292931 +k1,24137:10965949,23278944:292932 +k1,24137:11258880,23278944:292931 +k1,24137:11551812,23278944:292932 +k1,24137:11844743,23278944:292931 +k1,24137:12137675,23278944:292932 +k1,24137:12430606,23278944:292931 +k1,24137:12723537,23278944:292931 +k1,24137:13016469,23278944:292932 +k1,24137:13309400,23278944:292931 +k1,24137:13602332,23278944:292932 +k1,24137:13895263,23278944:292931 +k1,24137:14188195,23278944:292932 +k1,24137:14481126,23278944:292931 +k1,24137:14774058,23278944:292932 +k1,24137:15066989,23278944:292931 +k1,24137:15359921,23278944:292932 +k1,24137:15652852,23278944:292931 +k1,24137:17605554,23278944:292932 +k1,24137:17898485,23278944:292931 +k1,24137:19519232,23278944:292931 +k1,24137:19812164,23278944:292932 +k1,24137:20105095,23278944:292931 +k1,24137:20398027,23278944:292932 +k1,24137:20690958,23278944:292931 +k1,24137:20983890,23278944:292932 +k1,24137:21276821,23278944:292931 +k1,24137:21569753,23278944:292932 +k1,24137:21862684,23278944:292931 +k1,24137:23483432,23278944:292932 +k1,24137:23776363,23278944:292931 +k1,24137:25065156,23278944:292931 +k1,24137:25358088,23278944:292932 +k1,24137:25651019,23278944:292931 +k1,24137:29263490,23278944:292932 +h1,24137:32583029,23278944:0,0,0 +k1,24137:32583029,23278944:0 +k1,24137:32583029,23278944:0 +) +(1,24137:6630773,23963799:25952256,424439,6605 +h1,24137:6630773,23963799:0,0,0 +g1,24137:7626635,23963799 +g1,24137:7958589,23963799 +g1,24137:8290543,23963799 +g1,24137:10282267,23963799 +g1,24137:10614221,23963799 +g1,24137:10946175,23963799 +g1,24137:11278129,23963799 +g1,24137:11610083,23963799 +g1,24137:11942037,23963799 +g1,24137:12273991,23963799 +g1,24137:12605945,23963799 +g1,24137:12937899,23963799 +g1,24137:13269853,23963799 +g1,24137:13601807,23963799 +g1,24137:13933761,23963799 +g1,24137:14265715,23963799 +g1,24137:14597669,23963799 +g1,24137:14929623,23963799 +g1,24137:15261577,23963799 +g1,24137:15593531,23963799 +g1,24137:15925485,23963799 +g1,24137:16257439,23963799 +g1,24137:16589393,23963799 +g1,24137:18581117,23963799 +g1,24137:18913071,23963799 +g1,24137:20904795,23963799 +g1,24137:21236749,23963799 +g1,24137:21568703,23963799 +g1,24137:21900657,23963799 +g1,24137:22232611,23963799 +g1,24137:22564565,23963799 +g1,24137:22896519,23963799 +g1,24137:23228473,23963799 +g1,24137:25220197,23963799 +g1,24137:27211921,23963799 +g1,24137:29203645,23963799 +g1,24137:29535599,23963799 +g1,24137:29867553,23963799 +g1,24137:30199507,23963799 +g1,24137:30531461,23963799 +g1,24137:30863415,23963799 +k1,24137:30863415,23963799:0 +h1,24137:32523185,23963799:0,0,0 +k1,24137:32583029,23963799:59844 +g1,24137:32583029,23963799 +) +(1,24137:6630773,24648654:25952256,424439,106246 +h1,24137:6630773,24648654:0,0,0 +k1,24137:7519973,24648654:225292 +k1,24137:8077220,24648654:225293 +k1,24137:16269407,24648654:225292 +k1,24137:18486424,24648654:225293 +k1,24137:22695164,24648654:225292 +k1,24137:23252411,24648654:225293 +k1,24137:23477703,24648654:225292 +k1,24137:23702996,24648654:225293 +k1,24137:23928288,24648654:225292 +k1,24137:24153581,24648654:225293 +k1,24137:25042781,24648654:225292 +k1,24137:25268074,24648654:225293 +k1,24137:25493366,24648654:225292 +k1,24137:25718658,24648654:225292 +k1,24137:29263490,24648654:225293 +h1,24137:32583029,24648654:0,0,0 +k1,24137:32583029,24648654:0 +k1,24137:32583029,24648654:0 +) +(1,24137:6630773,25333509:25952256,424439,106246 +h1,24137:6630773,25333509:0,0,0 +k1,24137:7519973,25333509:225292 +k1,24137:8077220,25333509:225293 +k1,24137:16269407,25333509:225292 +k1,24137:18486424,25333509:225293 +k1,24137:22695164,25333509:225292 +k1,24137:23252411,25333509:225293 +k1,24137:23477703,25333509:225292 +k1,24137:23702996,25333509:225293 +k1,24137:23928288,25333509:225292 +k1,24137:24153581,25333509:225293 +k1,24137:25042781,25333509:225292 +k1,24137:25268074,25333509:225293 +k1,24137:25493366,25333509:225292 +k1,24137:25718658,25333509:225292 +k1,24137:29263490,25333509:225293 +h1,24137:32583029,25333509:0,0,0 +k1,24137:32583029,25333509:0 +k1,24137:32583029,25333509:0 +) +(1,24137:6630773,26018364:25952256,424439,106246 +h1,24137:6630773,26018364:0,0,0 +k1,24137:7519973,26018364:225292 +k1,24137:8077220,26018364:225293 +k1,24137:16269407,26018364:225292 +k1,24137:18486424,26018364:225293 +k1,24137:22695164,26018364:225292 +k1,24137:23252411,26018364:225293 +k1,24137:23477703,26018364:225292 +k1,24137:23702996,26018364:225293 +k1,24137:23928288,26018364:225292 +k1,24137:24153581,26018364:225293 +k1,24137:25042781,26018364:225292 +k1,24137:25268074,26018364:225293 +k1,24137:25493366,26018364:225292 +k1,24137:25718658,26018364:225292 +k1,24137:29263490,26018364:225293 +h1,24137:32583029,26018364:0,0,0 +k1,24137:32583029,26018364:0 +k1,24137:32583029,26018364:0 +) +(1,24137:6630773,26703219:25952256,424439,9908 +h1,24137:6630773,26703219:0,0,0 +g1,24137:7626635,26703219 +g1,24137:8290543,26703219 +g1,24137:8954451,26703219 +g1,24137:10282267,26703219 +g1,24137:11942037,26703219 +h1,24137:13269853,26703219:0,0,0 +k1,24137:32583029,26703219:19313176 +g1,24137:32583029,26703219 +) +(1,24139:6630773,27519146:25952256,424439,106246 +(1,24138:6630773,27519146:0,0,0 +g1,24138:6630773,27519146 +g1,24138:6630773,27519146 +g1,24138:6303093,27519146 +(1,24138:6303093,27519146:0,0,0 +) +g1,24138:6630773,27519146 +) +k1,24139:6630773,27519146:0 +g1,24139:9618359,27519146 +g1,24139:10282267,27519146 +k1,24139:10282267,27519146:9909 +h1,24139:12615854,27519146:0,0,0 +k1,24139:32583030,27519146:19967176 +g1,24139:32583030,27519146 +) +] +) +g1,24141:32583029,27625392 +g1,24141:6630773,27625392 +g1,24141:6630773,27625392 +g1,24141:32583029,27625392 +g1,24141:32583029,27625392 +) +h1,24141:6630773,27822000:0,0,0 +v1,24145:6630773,28687080:0,393216,0 +(1,24146:6630773,33419305:25952256,5125441,0 +g1,24146:6630773,33419305 +g1,24146:6237557,33419305 +r1,24154:6368629,33419305:131072,5125441,0 +g1,24146:6567858,33419305 +g1,24146:6764466,33419305 +[1,24146:6764466,33419305:25818563,5125441,0 +(1,24146:6764466,28959557:25818563,665693,196608 +(1,24145:6764466,28959557:0,665693,196608 +r1,24154:7868133,28959557:1103667,862301,196608 +k1,24145:6764466,28959557:-1103667 +) +(1,24145:6764466,28959557:1103667,665693,196608 +) +k1,24145:8039309,28959557:171176 +k1,24145:10173817,28959557:327680 +k1,24145:11174023,28959557:171176 +k1,24145:15009972,28959557:171176 +k1,24145:16729764,28959557:171176 +k1,24145:18290303,28959557:171176 +k1,24145:23298692,28959557:171177 +k1,24145:25152833,28959557:171176 +k1,24145:26986657,28959557:171176 +k1,24145:27773871,28959557:171176 +k1,24145:29396669,28959557:171176 +k1,24145:32583029,28959557:0 +) +(1,24146:6764466,29824637:25818563,513147,134348 +k1,24145:7649436,29824637:225678 +k1,24145:9078355,29824637:225678 +k1,24145:10867722,29824637:225678 +k1,24145:12581723,29824637:225678 +k1,24145:13568929,29824637:225678 +k1,24145:16317743,29824637:225678 +k1,24145:17562506,29824637:225678 +k1,24145:19094316,29824637:225677 +k1,24145:22506354,29824637:225678 +k1,24145:23493560,29824637:225678 +k1,24145:25498540,29824637:225678 +k1,24145:28801133,29824637:225678 +k1,24145:30045896,29824637:225678 +k1,24145:31661593,29824637:225678 +k1,24146:32583029,29824637:0 +) +(1,24146:6764466,30689717:25818563,505283,134348 +k1,24145:9097594,30689717:228112 +k1,24145:10517151,30689717:228112 +k1,24145:13523334,30689717:228112 +k1,24145:15939038,30689717:228112 +k1,24145:17323860,30689717:228112 +k1,24145:20738332,30689717:228112 +k1,24145:21579207,30689717:228113 +k1,24145:22163179,30689717:228112 +k1,24145:23990369,30689717:228112 +k1,24145:25409926,30689717:228112 +k1,24145:26250800,30689717:228112 +k1,24145:27930534,30689717:228112 +k1,24145:29513931,30689717:228112 +k1,24145:31563944,30689717:228112 +k1,24145:32583029,30689717:0 +) +(1,24146:6764466,31554797:25818563,513147,134348 +k1,24145:9718779,31554797:175586 +k1,24145:11574708,31554797:175586 +k1,24145:12941739,31554797:175586 +k1,24145:14504067,31554797:175586 +k1,24145:15745924,31554797:175586 +k1,24145:16869161,31554797:175586 +k1,24145:18593362,31554797:175585 +k1,24145:19869953,31554797:175586 +k1,24145:22706956,31554797:175586 +k1,24145:24450163,31554797:175586 +k1,24145:25644834,31554797:175586 +k1,24145:28574898,31554797:175586 +k1,24145:30279439,31554797:175586 +k1,24146:32583029,31554797:0 +) +(1,24146:6764466,32419877:25818563,505283,126483 +k1,24145:8114684,32419877:222999 +k1,24145:9508155,32419877:222998 +k1,24145:10835436,32419877:222999 +k1,24145:12897375,32419877:222999 +k1,24145:13476233,32419877:222998 +k1,24145:14867739,32419877:222999 +(1,24145:14867739,32419877:0,452978,115847 +r1,24154:18391412,32419877:3523673,568825,115847 +k1,24145:14867739,32419877:-3523673 +) +(1,24145:14867739,32419877:3523673,452978,115847 +g1,24145:17684711,32419877 +h1,24145:18388135,32419877:0,411205,112570 +) +k1,24145:18614410,32419877:222998 +k1,24145:19450171,32419877:222999 +k1,24145:20692255,32419877:222999 +k1,24145:22603460,32419877:222998 +k1,24145:24745353,32419877:222999 +k1,24145:26138825,32419877:222999 +k1,24145:27829174,32419877:222998 +k1,24145:28703601,32419877:222999 +k1,24145:29951582,32419877:222998 +k1,24145:31193666,32419877:222999 +k1,24145:32583029,32419877:0 +) +(1,24146:6764466,33284957:25818563,505283,134348 +g1,24145:8701710,33284957 +k1,24146:32583028,33284957:21417820 +g1,24146:32583028,33284957 +) +] +g1,24146:32583029,33419305 +) +h1,24146:6630773,33419305:0,0,0 +(1,24150:6630773,36250465:25952256,32768,229376 +(1,24150:6630773,36250465:0,32768,229376 +(1,24150:6630773,36250465:5505024,32768,229376 +r1,24154:12135797,36250465:5505024,262144,229376 +) +k1,24150:6630773,36250465:-5505024 +) +(1,24150:6630773,36250465:25952256,32768,0 +r1,24154:32583029,36250465:25952256,32768,0 +) +) +(1,24150:6630773,37882317:25952256,606339,14155 +(1,24150:6630773,37882317:2464678,582746,14155 +g1,24150:6630773,37882317 +g1,24150:9095451,37882317 +) +k1,24150:32583029,37882317:18845270 +g1,24150:32583029,37882317 +) +(1,24154:6630773,39140613:25952256,513147,126483 +k1,24153:9860933,39140613:202397 +k1,24153:12078562,39140613:202397 +k1,24153:13973099,39140613:202397 +k1,24153:16017057,39140613:202396 +k1,24153:17410899,39140613:202397 +k1,24153:19215651,39140613:202397 +k1,24153:21259610,39140613:202397 +k1,24153:22453567,39140613:202397 +k1,24153:23675049,39140613:202397 +k1,24153:25479145,39140613:202396 +k1,24153:28986523,39140613:202397 +k1,24153:30702146,39140613:202397 +k1,24153:32583029,39140613:0 +) +(1,24154:6630773,40005693:25952256,505283,134348 +k1,24153:10169360,40005693:176590 +k1,24153:13418277,40005693:176589 +k1,24153:15449536,40005693:176590 +k1,24153:16435496,40005693:176590 +k1,24153:17631170,40005693:176589 +k1,24153:21100944,40005693:176590 +k1,24153:24488142,40005693:176589 +k1,24153:26497119,40005693:176590 +k1,24153:27205206,40005693:176590 +k1,24153:30165764,40005693:176589 +k1,24153:30698214,40005693:176590 +k1,24154:32583029,40005693:0 +) +(1,24154:6630773,40870773:25952256,513147,134348 +k1,24153:9274243,40870773:278931 +k1,24153:10536214,40870773:278931 +k1,24153:12995528,40870773:278931 +k1,24153:14222111,40870773:278932 +k1,24153:17454094,40870773:278931 +k1,24153:18392317,40870773:278931 +k1,24153:21964432,40870773:278931 +k1,24153:23806397,40870773:278931 +k1,24153:25157497,40870773:278931 +k1,24153:25894526,40870773:278932 +k1,24153:27666367,40870773:278931 +k1,24153:29011569,40870773:278931 +k1,24153:31816913,40870773:278931 +k1,24153:32583029,40870773:0 +) +(1,24154:6630773,41735853:25952256,513147,134348 +k1,24153:7884695,41735853:234837 +k1,24153:10725244,41735853:234838 +k1,24153:13365908,41735853:234837 +k1,24153:14216783,41735853:234837 +k1,24153:16384933,41735853:234838 +k1,24153:17602810,41735853:234837 +k1,24153:20522002,41735853:234837 +k1,24153:21710389,41735853:234838 +k1,24153:23077688,41735853:234837 +k1,24153:24800848,41735853:234837 +k1,24153:25797214,41735853:234838 +k1,24153:29753185,41735853:234837 +k1,24153:32583029,41735853:0 +) +(1,24154:6630773,42600933:25952256,513147,134348 +k1,24153:7993871,42600933:188038 +k1,24153:9164949,42600933:188038 +k1,24153:11533370,42600933:188038 +k1,24153:13234633,42600933:188037 +k1,24153:14184199,42600933:188038 +k1,24153:17149653,42600933:188038 +k1,24153:18438696,42600933:188038 +k1,24153:21288151,42600933:188038 +k1,24153:25355920,42600933:188038 +k1,24153:26931354,42600933:188037 +k1,24153:28138477,42600933:188038 +k1,24153:30183150,42600933:188038 +k1,24153:31562633,42600933:188038 +k1,24153:32583029,42600933:0 +) +(1,24154:6630773,43466013:25952256,513147,134348 +k1,24153:9291912,43466013:150455 +k1,24153:10882194,43466013:150456 +k1,24153:11684077,43466013:150455 +k1,24153:12582299,43466013:150456 +k1,24153:13945825,43466013:150455 +k1,24153:15374887,43466013:150455 +k1,24153:18819838,43466013:150456 +k1,24153:19731821,43466013:150455 +k1,24153:22666245,43466013:150455 +k1,24153:23231495,43466013:150407 +k1,24153:26292405,43466013:150456 +k1,24153:27634305,43466013:150455 +k1,24153:29121695,43466013:150456 +k1,24153:31563944,43466013:150455 +k1,24153:32583029,43466013:0 +) +(1,24154:6630773,44331093:25952256,513147,126483 +k1,24153:7780976,44331093:167163 +k1,24153:8599568,44331093:167164 +k1,24153:9514497,44331093:167163 +k1,24153:12318830,44331093:167164 +k1,24153:13137421,44331093:167163 +k1,24153:13660445,44331093:167164 +k1,24153:15477805,44331093:167163 +k1,24153:18130749,44331093:167163 +k1,24153:20478296,44331093:167164 +k1,24153:22039410,44331093:167163 +k1,24153:24983990,44331093:167164 +k1,24153:26756785,44331093:167163 +k1,24153:28966706,44331093:167164 +k1,24153:31315563,44331093:167163 +k1,24154:32583029,44331093:0 +) +(1,24154:6630773,45196173:25952256,513147,126483 +k1,24153:7461722,45196173:242436 +k1,24153:8900845,45196173:242436 +k1,24153:11487504,45196173:242436 +k1,24153:13910323,45196173:242436 +k1,24153:14684256,45196173:242436 +k1,24153:16781361,45196173:242436 +k1,24153:17833167,45196173:242436 +k1,24153:19434777,45196173:242393 +k1,24153:20868658,45196173:242436 +k1,24153:24036621,45196173:242436 +k1,24153:26403734,45196173:242436 +k1,24153:27297598,45196173:242436 +k1,24153:29977973,45196173:242436 +k1,24153:32583029,45196173:0 +) +] +(1,24154:32583029,45706769:0,0,0 +g1,24154:32583029,45706769 +) +) +] +(1,24154:6630773,47279633:25952256,0,0 +h1,24154:6630773,47279633:25952256,0,0 +) +] +(1,24154:4262630,4025873:0,0,0 +[1,24154:-473656,4025873:0,0,0 +(1,24154:-473656,-710413:0,0,0 +(1,24154:-473656,-710413:0,0,0 +g1,24154:-473656,-710413 +) +g1,24154:-473656,-710413 ) ] ) ] !27336 -}414 -Input:4524:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4525:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4526:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4527:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}415 Input:4528:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4529:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4530:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec @@ -416620,39831 +416841,40630 @@ Input:4537:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsole Input:4538:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4539:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4540:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4541:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4542:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4543:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4544:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !1576 -{415 -[1,24170:4262630,47279633:28320399,43253760,0 -(1,24170:4262630,4025873:0,0,0 -[1,24170:-473656,4025873:0,0,0 -(1,24170:-473656,-710413:0,0,0 -(1,24170:-473656,-644877:0,0,0 -k1,24170:-473656,-644877:-65536 +{416 +[1,24168:4262630,47279633:28320399,43253760,0 +(1,24168:4262630,4025873:0,0,0 +[1,24168:-473656,4025873:0,0,0 +(1,24168:-473656,-710413:0,0,0 +(1,24168:-473656,-644877:0,0,0 +k1,24168:-473656,-644877:-65536 ) -(1,24170:-473656,4736287:0,0,0 -k1,24170:-473656,4736287:5209943 +(1,24168:-473656,4736287:0,0,0 +k1,24168:-473656,4736287:5209943 ) -g1,24170:-473656,-710413 +g1,24168:-473656,-710413 ) ] ) -[1,24170:6630773,47279633:25952256,43253760,0 -[1,24170:6630773,4812305:25952256,786432,0 -(1,24170:6630773,4812305:25952256,505283,134348 -(1,24170:6630773,4812305:25952256,505283,134348 -g1,24170:3078558,4812305 -[1,24170:3078558,4812305:0,0,0 -(1,24170:3078558,2439708:0,1703936,0 -k1,24170:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24170:2537886,2439708:1179648,16384,0 +[1,24168:6630773,47279633:25952256,43253760,0 +[1,24168:6630773,4812305:25952256,786432,0 +(1,24168:6630773,4812305:25952256,505283,134348 +(1,24168:6630773,4812305:25952256,505283,134348 +g1,24168:3078558,4812305 +[1,24168:3078558,4812305:0,0,0 +(1,24168:3078558,2439708:0,1703936,0 +k1,24168:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24168:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24170:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24168:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24170:3078558,4812305:0,0,0 -(1,24170:3078558,2439708:0,1703936,0 -g1,24170:29030814,2439708 -g1,24170:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24170:36151628,1915420:16384,1179648,0 +[1,24168:3078558,4812305:0,0,0 +(1,24168:3078558,2439708:0,1703936,0 +g1,24168:29030814,2439708 +g1,24168:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24168:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24170:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24168:37855564,2439708:1179648,16384,0 ) ) -k1,24170:3078556,2439708:-34777008 +k1,24168:3078556,2439708:-34777008 ) ] -[1,24170:3078558,4812305:0,0,0 -(1,24170:3078558,49800853:0,16384,2228224 -k1,24170:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24170:2537886,49800853:1179648,16384,0 +[1,24168:3078558,4812305:0,0,0 +(1,24168:3078558,49800853:0,16384,2228224 +k1,24168:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24168:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24170:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24168:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] -) -) -) -] -[1,24170:3078558,4812305:0,0,0 -(1,24170:3078558,49800853:0,16384,2228224 -g1,24170:29030814,49800853 -g1,24170:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24170:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24170:37855564,49800853:1179648,16384,0 -) -) -k1,24170:3078556,49800853:-34777008 -) -] -g1,24170:6630773,4812305 -k1,24170:21114230,4812305:13288080 -g1,24170:22736901,4812305 -g1,24170:23350318,4812305 -g1,24170:24759997,4812305 -g1,24170:28372341,4812305 -g1,24170:30105768,4812305 -) -) -] -[1,24170:6630773,45706769:25952256,40108032,0 -(1,24170:6630773,45706769:25952256,40108032,0 -(1,24170:6630773,45706769:0,0,0 -g1,24170:6630773,45706769 -) -[1,24170:6630773,45706769:25952256,40108032,0 -(1,24156:6630773,6254097:25952256,513147,126483 -k1,24155:8511001,6254097:224133 -k1,24155:10756920,6254097:224133 -k1,24155:13491737,6254097:224133 -k1,24155:14707430,6254097:224133 -k1,24155:16581760,6254097:224133 -k1,24155:19463378,6254097:224133 -k1,24155:23396193,6254097:224133 -k1,24155:25992074,6254097:224133 -k1,24155:27712394,6254097:224133 -k1,24155:28622689,6254097:224133 -k1,24155:31966991,6254097:224133 -k1,24155:32583029,6254097:0 -) -(1,24156:6630773,7119177:25952256,505283,126483 -k1,24155:9496488,7119177:199710 -k1,24155:10347626,7119177:199710 -k1,24155:11566420,7119177:199709 -k1,24155:13688301,7119177:199710 -k1,24155:15451045,7119177:199710 -k1,24155:16278590,7119177:199710 -k1,24155:17244416,7119177:199710 -k1,24155:19315178,7119177:199709 -k1,24155:20890489,7119177:199710 -k1,24155:23100844,7119177:199710 -k1,24155:25723420,7119177:199710 -k1,24155:26609292,7119177:199710 -k1,24155:28302567,7119177:199709 -k1,24155:29185162,7119177:199710 -k1,24155:31128785,7119177:199710 -k1,24156:32583029,7119177:0 -) -(1,24156:6630773,7984257:25952256,513147,126483 -k1,24155:8742145,7984257:250805 -k1,24155:9754479,7984257:250806 -k1,24155:12073600,7984257:250805 -k1,24155:12983697,7984257:250805 -k1,24155:14253587,7984257:250805 -k1,24155:17829034,7984257:250806 -k1,24155:21200008,7984257:250805 -k1,24155:22555095,7984257:250805 -k1,24155:23553667,7984257:250806 -k1,24155:26754247,7984257:250805 -k1,24155:28272518,7984257:250805 -k1,24155:28938115,7984257:250754 -k1,24155:31140582,7984257:250805 -k1,24155:32583029,7984257:0 -) -(1,24156:6630773,8849337:25952256,505283,126483 -g1,24155:7849087,8849337 -g1,24155:11168485,8849337 -k1,24156:32583028,8849337:17805476 -g1,24156:32583028,8849337 -) -v1,24158:6630773,9714417:0,393216,0 -(1,24165:6630773,39496177:25952256,30174976,0 -g1,24165:6630773,39496177 -g1,24165:6237557,39496177 -r1,24170:6368629,39496177:131072,30174976,0 -g1,24165:6567858,39496177 -g1,24165:6764466,39496177 -[1,24165:6764466,39496177:25818563,30174976,0 -(1,24159:6764466,10075594:25818563,754393,260573 -(1,24158:6764466,10075594:0,754393,260573 -r1,24170:7856192,10075594:1091726,1014966,260573 -k1,24158:6764466,10075594:-1091726 -) -(1,24158:6764466,10075594:1091726,754393,260573 -) -k1,24158:8069091,10075594:212899 -k1,24158:8396771,10075594:327680 -k1,24158:10392905,10075594:212899 -k1,24158:13020150,10075594:212899 -k1,24158:15635600,10075594:212900 -k1,24158:17416120,10075594:212899 -k1,24158:17984879,10075594:212899 -k1,24158:21664633,10075594:212899 -k1,24158:22233392,10075594:212899 -k1,24158:24829180,10075594:212899 -k1,24158:25701372,10075594:212900 -k1,24158:27335747,10075594:212899 -k1,24158:28942597,10075594:212899 -k1,24158:31109780,10075594:212899 -k1,24158:32583029,10075594:0 -) -(1,24159:6764466,10940674:25818563,513147,134348 -k1,24158:8140109,10940674:271361 -k1,24158:11483798,10940674:271361 -(1,24158:11483798,10940674:0,414482,115847 -r1,24170:12193776,10940674:709978,530329,115847 -k1,24158:11483798,10940674:-709978 -) -(1,24158:11483798,10940674:709978,414482,115847 -k1,24158:11483798,10940674:3277 -h1,24158:12190499,10940674:0,411205,112570 -) -k1,24158:12465137,10940674:271361 -k1,24158:14920813,10940674:271361 -k1,24158:15679690,10940674:271289 -k1,24158:18510232,10940674:271361 -k1,24158:21370265,10940674:271361 -k1,24158:22732800,10940674:271361 -k1,24158:24784774,10940674:271361 -k1,24158:26623756,10940674:271361 -k1,24158:27914202,10940674:271361 -k1,24158:31478747,10940674:271361 -k1,24158:32583029,10940674:0 -) -(1,24159:6764466,11805754:25818563,513147,134348 -k1,24158:8810745,11805754:203407 -k1,24158:9630191,11805754:203408 -k1,24158:12305616,11805754:203407 -k1,24158:15222215,11805754:203408 -k1,24158:16108507,11805754:203407 -k1,24158:18019782,11805754:203407 -k1,24158:18689151,11805754:203408 -k1,24158:19911643,11805754:203407 -k1,24158:21462470,11805754:203407 -k1,24158:22197375,11805754:203408 -k1,24158:23446737,11805754:203407 -k1,24158:25540203,11805754:203408 -k1,24158:26426495,11805754:203407 -k1,24158:27245940,11805754:203407 -k1,24158:28983546,11805754:203408 -k1,24158:29869838,11805754:203407 -k1,24158:32583029,11805754:0 -) -(1,24159:6764466,12670834:25818563,513147,134348 -k1,24158:8596281,12670834:222906 -k1,24158:10213138,12670834:222906 -(1,24158:10213138,12670834:0,414482,115847 -r1,24170:10923116,12670834:709978,530329,115847 -k1,24158:10213138,12670834:-709978 -) -(1,24158:10213138,12670834:709978,414482,115847 -k1,24158:10213138,12670834:3277 -h1,24158:10919839,12670834:0,411205,112570 -) -k1,24158:11146022,12670834:222906 -k1,24158:13553243,12670834:222906 -k1,24158:14242110,12670834:222906 -k1,24158:15484101,12670834:222906 -k1,24158:17487620,12670834:222906 -k1,24158:20378497,12670834:222906 -k1,24158:22607460,12670834:222906 -k1,24158:24251842,12670834:222906 -k1,24158:25090786,12670834:222906 -k1,24158:26332777,12670834:222906 -k1,24158:30022538,12670834:222906 -k1,24159:32583029,12670834:0 -) -(1,24159:6764466,13535914:25818563,513147,134348 -k1,24158:7968843,13535914:214128 -k1,24158:8992341,13535914:214128 -k1,24158:10225554,13535914:214128 -k1,24158:13135177,13535914:214127 -k1,24158:15036202,13535914:214128 -k1,24158:15708427,13535914:214128 -k1,24158:17259489,13535914:214128 -k1,24158:18221383,13535914:214128 -k1,24158:21065471,13535914:214128 -k1,24158:21931027,13535914:214128 -k1,24158:24165630,13535914:214128 -k1,24158:26385814,13535914:214127 -k1,24158:28195088,13535914:214128 -k1,24158:29170744,13535914:214128 -k1,24158:31812326,13535914:214128 -k1,24158:32583029,13535914:0 -) -(1,24159:6764466,14400994:25818563,426639,134348 -k1,24159:32583030,14400994:22693808 -g1,24159:32583030,14400994 -) -(1,24161:6764466,15266074:25818563,513147,126483 -h1,24160:6764466,15266074:983040,0,0 -k1,24160:9605955,15266074:163033 -k1,24160:12775780,15266074:163033 -k1,24160:15160485,15266074:163034 -k1,24160:15974946,15266074:163033 -k1,24160:17157064,15266074:163033 -k1,24160:19501791,15266074:163033 -k1,24160:20324117,15266074:163034 -k1,24160:21876513,15266074:163033 -k1,24160:23607167,15266074:163033 -k1,24160:25366657,15266074:163033 -k1,24160:27556720,15266074:163034 -k1,24160:28911198,15266074:163033 -k1,24160:30670688,15266074:163033 -k1,24160:32583029,15266074:0 -) -(1,24161:6764466,16131154:25818563,513147,126483 -k1,24160:8059160,16131154:303134 -k1,24160:9545218,16131154:303133 -k1,24160:10499780,16131154:303134 -k1,24160:14277633,16131154:303134 -k1,24160:17215969,16131154:303133 -k1,24160:18691542,16131154:303134 -k1,24160:21757018,16131154:303133 -k1,24160:24570836,16131154:303134 -k1,24160:26158476,16131154:303134 -k1,24160:28775685,16131154:303133 -k1,24160:31841162,16131154:303134 -k1,24161:32583029,16131154:0 -) -(1,24161:6764466,16996234:25818563,505283,7863 -k1,24160:9989084,16996234:216515 -k1,24160:11014968,16996234:216514 -k1,24160:12780099,16996234:216515 -k1,24160:13528110,16996234:216514 -k1,24160:16194361,16996234:216515 -k1,24160:17093760,16996234:216514 -k1,24160:18550216,16996234:216515 -k1,24160:20541445,16996234:216514 -k1,24160:21373998,16996234:216515 -k1,24160:21946372,16996234:216514 -k1,24160:25456071,16996234:216515 -k1,24160:26130682,16996234:216514 -k1,24160:26878694,16996234:216515 -k1,24160:29544944,16996234:216514 -k1,24160:30412887,16996234:216515 -k1,24160:31563944,16996234:216514 -k1,24160:32583029,16996234:0 -) -(1,24161:6764466,17861314:25818563,513147,134348 -k1,24160:9620871,17861314:165496 -k1,24160:10679623,17861314:165496 -k1,24160:12712894,17861314:165495 -k1,24160:13494428,17861314:165496 -k1,24160:15480514,17861314:165496 -k1,24160:16837455,17861314:165496 -k1,24160:19455963,17861314:165495 -k1,24160:22926440,17861314:165496 -k1,24160:23743364,17861314:165496 -(1,24160:23743364,17861314:0,452978,115847 -r1,24170:25156765,17861314:1413401,568825,115847 -k1,24160:23743364,17861314:-1413401 -) -(1,24160:23743364,17861314:1413401,452978,115847 -k1,24160:23743364,17861314:3277 -h1,24160:25153488,17861314:0,411205,112570 -) -k1,24160:25322261,17861314:165496 -k1,24160:26103794,17861314:165495 -k1,24160:26891193,17861314:165462 -k1,24160:27715981,17861314:165496 -k1,24160:31074391,17861314:165496 -k1,24160:32583029,17861314:0 -) -(1,24161:6764466,18726394:25818563,513147,126483 -k1,24160:7332707,18726394:212381 -k1,24160:10056428,18726394:212381 -k1,24160:13065886,18726394:212381 -k1,24160:13894306,18726394:212382 -k1,24160:14877390,18726394:212381 -k1,24160:15504601,18726394:212368 -k1,24160:17106345,18726394:212381 -k1,24160:19195022,18726394:212381 -k1,24160:19938900,18726394:212381 -k1,24160:22990301,18726394:212381 -k1,24160:23854110,18726394:212381 -k1,24160:24814258,18726394:212382 -k1,24160:27178186,18726394:212381 -k1,24160:28582012,18726394:212381 -k1,24160:30211281,18726394:212381 -k1,24160:32583029,18726394:0 -) -(1,24161:6764466,19591474:25818563,505283,134348 -k1,24160:9875382,19591474:157208 -k1,24160:13159312,19591474:157207 -k1,24160:14335605,19591474:157208 -k1,24160:16146286,19591474:157208 -(1,24160:16146286,19591474:0,452978,115847 -r1,24170:17559687,19591474:1413401,568825,115847 -k1,24160:16146286,19591474:-1413401 -) -(1,24160:16146286,19591474:1413401,452978,115847 -k1,24160:16146286,19591474:3277 -h1,24160:17556410,19591474:0,411205,112570 -) -k1,24160:17716895,19591474:157208 -k1,24160:18556987,19591474:157207 -k1,24160:20273952,19591474:157208 -k1,24160:21473182,19591474:157208 -k1,24160:22649474,19591474:157207 -k1,24160:24988376,19591474:157208 -k1,24160:25797012,19591474:157208 -k1,24160:27550677,19591474:157208 -k1,24160:28394046,19591474:157207 -k1,24160:31563944,19591474:157208 -k1,24160:32583029,19591474:0 -) -(1,24161:6764466,20456554:25818563,513147,126483 -k1,24160:9664388,20456554:209013 -k1,24160:11495417,20456554:209013 -k1,24160:12452196,20456554:209013 -k1,24160:16115612,20456554:209013 -k1,24160:17394173,20456554:209013 -k1,24160:18369302,20456554:209013 -k1,24160:19999791,20456554:209013 -k1,24160:20824841,20456554:209012 -k1,24160:21389714,20456554:209013 -k1,24160:23981616,20456554:209013 -k1,24160:24842057,20456554:209013 -k1,24160:25798836,20456554:209013 -k1,24160:28957624,20456554:209013 -k1,24160:30158197,20456554:209013 -k1,24160:32583029,20456554:0 -) -(1,24161:6764466,21321634:25818563,513147,126483 -k1,24160:7656365,21321634:205737 -k1,24160:9018812,21321634:205737 -k1,24160:9883841,21321634:205737 -k1,24160:11108663,21321634:205737 -(1,24160:11108663,21321634:0,452978,115847 -r1,24170:13225488,21321634:2116825,568825,115847 -k1,24160:11108663,21321634:-2116825 -) -(1,24160:11108663,21321634:2116825,452978,115847 -k1,24160:11108663,21321634:3277 -h1,24160:13222211,21321634:0,411205,112570 -) -k1,24160:13604895,21321634:205737 -(1,24160:13604895,21321634:0,414482,115847 -r1,24170:15018296,21321634:1413401,530329,115847 -k1,24160:13604895,21321634:-1413401 -) -(1,24160:13604895,21321634:1413401,414482,115847 -k1,24160:13604895,21321634:3277 -h1,24160:15015019,21321634:0,411205,112570 -) -k1,24160:15397703,21321634:205737 -(1,24160:15397703,21321634:0,452978,115847 -r1,24170:16811104,21321634:1413401,568825,115847 -k1,24160:15397703,21321634:-1413401 -) -(1,24160:15397703,21321634:1413401,452978,115847 -k1,24160:15397703,21321634:3277 -h1,24160:16807827,21321634:0,411205,112570 -) -k1,24160:17016841,21321634:205737 -k1,24160:17905463,21321634:205737 -(1,24160:17905463,21321634:0,414482,115847 -r1,24170:19318864,21321634:1413401,530329,115847 -k1,24160:17905463,21321634:-1413401 -) -(1,24160:17905463,21321634:1413401,414482,115847 -k1,24160:17905463,21321634:3277 -h1,24160:19315587,21321634:0,411205,112570 -) -k1,24160:19524601,21321634:205737 -k1,24160:22414693,21321634:205737 -k1,24160:24014381,21321634:205737 -k1,24160:25239203,21321634:205737 -k1,24160:28074900,21321634:205737 -k1,24160:31362140,21321634:205737 -k1,24160:32227169,21321634:205737 -k1,24160:32583029,21321634:0 -) -(1,24161:6764466,22186714:25818563,513147,134348 -k1,24160:8756401,22186714:177243 -k1,24160:10172275,22186714:177243 -k1,24160:11008810,22186714:177243 -k1,24160:13568942,22186714:177243 -k1,24160:16250971,22186714:177243 -k1,24160:17822165,22186714:177243 -k1,24160:19018493,22186714:177243 -k1,24160:21264053,22186714:177244 -k1,24160:22100588,22186714:177243 -k1,24160:23296916,22186714:177243 -k1,24160:26315800,22186714:177243 -k1,24160:27179205,22186714:177243 -(1,24160:27179205,22186714:0,414482,115847 -r1,24170:28592606,22186714:1413401,530329,115847 -k1,24160:27179205,22186714:-1413401 -) -(1,24160:27179205,22186714:1413401,414482,115847 -k1,24160:27179205,22186714:3277 -h1,24160:28589329,22186714:0,411205,112570 -) -k1,24160:28943519,22186714:177243 -k1,24160:30317449,22186714:177243 -k1,24160:32583029,22186714:0 -) -(1,24161:6764466,23051794:25818563,513147,126483 -k1,24160:9174997,23051794:230148 -(1,24160:9174997,23051794:0,452978,115847 -r1,24170:11643534,23051794:2468537,568825,115847 -k1,24160:9174997,23051794:-2468537 -) -(1,24160:9174997,23051794:2468537,452978,115847 -k1,24160:9174997,23051794:3277 -h1,24160:11640257,23051794:0,411205,112570 -) -k1,24160:11873682,23051794:230148 -k1,24160:13389646,23051794:230148 -k1,24160:15546551,23051794:230147 -k1,24160:16848868,23051794:230148 -k1,24160:17765178,23051794:230148 -k1,24160:18453423,23051794:230148 -k1,24160:20176481,23051794:230148 -k1,24160:21472900,23051794:230148 -k1,24160:23846074,23051794:230147 -k1,24160:27968405,23051794:230148 -k1,24160:28656650,23051794:230148 -k1,24160:30932832,23051794:230148 -k1,24160:32583029,23051794:0 -) -(1,24161:6764466,23916874:25818563,513147,134348 -g1,24160:9447510,23916874 -g1,24160:10298167,23916874 -g1,24160:11522379,23916874 -g1,24160:13901991,23916874 -g1,24160:18953506,23916874 -g1,24160:19765497,23916874 -g1,24160:20320586,23916874 -g1,24160:22550776,23916874 -g1,24160:23366043,23916874 -k1,24161:32583029,23916874:7542542 -g1,24161:32583029,23916874 -) -(1,24163:6764466,24781954:25818563,513147,134348 -h1,24162:6764466,24781954:983040,0,0 -k1,24162:9716426,24781954:185685 -k1,24162:12304660,24781954:185684 -k1,24162:12846205,24781954:185685 -(1,24162:12846205,24781954:0,414482,115847 -r1,24170:13907894,24781954:1061689,530329,115847 -k1,24162:12846205,24781954:-1061689 -) -(1,24162:12846205,24781954:1061689,414482,115847 -k1,24162:12846205,24781954:3277 -h1,24162:13904617,24781954:0,411205,112570 -) -k1,24162:14093579,24781954:185685 -k1,24162:15435974,24781954:185685 -k1,24162:16847837,24781954:185684 -k1,24162:21065297,24781954:185685 -k1,24162:24067064,24781954:185685 -k1,24162:25385211,24781954:185685 -k1,24162:26318661,24781954:185684 -k1,24162:29956783,24781954:185685 -k1,24162:31333913,24781954:185685 -k1,24163:32583029,24781954:0 -) -(1,24163:6764466,25647034:25818563,513147,134348 -k1,24162:9154816,25647034:216521 -k1,24162:10443506,25647034:216521 -k1,24162:12035627,25647034:216520 -k1,24162:12718109,25647034:216521 -k1,24162:13953715,25647034:216521 -k1,24162:16654051,25647034:216521 -k1,24162:18558778,25647034:216520 -k1,24162:19306796,25647034:216521 -k1,24162:22202429,25647034:216521 -k1,24162:23105112,25647034:216521 -k1,24162:26160652,25647034:216520 -k1,24162:27944794,25647034:216521 -k1,24162:29180400,25647034:216521 -k1,24162:32583029,25647034:0 -) -(1,24163:6764466,26512114:25818563,513147,134348 -k1,24162:9178198,26512114:208445 -k1,24162:10038072,26512114:208446 -k1,24162:11265602,26512114:208445 -k1,24162:14169544,26512114:208446 -k1,24162:15651354,26512114:208445 -k1,24162:16609531,26512114:208445 -k1,24162:17173837,26512114:208446 -k1,24162:19255301,26512114:208445 -k1,24162:21949527,26512114:208445 -k1,24162:23551924,26512114:208446 -k1,24162:24116229,26512114:208445 -k1,24162:26648582,26512114:208446 -k1,24162:29184210,26512114:208445 -k1,24162:30051947,26512114:208445 -k1,24162:30616253,26512114:208446 -k1,24162:31896867,26512114:208445 -k1,24162:32583029,26512114:0 -) -(1,24163:6764466,27377194:25818563,505283,134348 -k1,24162:9485006,27377194:236725 -k1,24162:12014181,27377194:236726 -k1,24162:13140885,27377194:236725 -k1,24162:14616897,27377194:236726 -k1,24162:16739748,27377194:236725 -k1,24162:18108936,27377194:236726 -k1,24162:20188533,27377194:236725 -k1,24162:21041296,27377194:236725 -k1,24162:22879722,27377194:236726 -k1,24162:24813829,27377194:236725 -k1,24162:25666593,27377194:236726 -k1,24162:26922403,27377194:236725 -k1,24162:29542018,27377194:236726 -k1,24162:30845014,27377194:236725 -k1,24162:32583029,27377194:0 -) -(1,24163:6764466,28242274:25818563,505283,115847 -k1,24162:9677540,28242274:228064 -k1,24162:10591766,28242274:228064 -k1,24162:13635912,28242274:228064 -k1,24162:15055420,28242274:228063 -k1,24162:18062211,28242274:228064 -k1,24162:18976437,28242274:228064 -k1,24162:19560361,28242274:228064 -(1,24162:19560361,28242274:0,452978,115847 -r1,24170:22732321,28242274:3171960,568825,115847 -k1,24162:19560361,28242274:-3171960 -) -(1,24162:19560361,28242274:3171960,452978,115847 -k1,24162:19560361,28242274:3277 -h1,24162:22729044,28242274:0,411205,112570 -) -k1,24162:22960385,28242274:228064 -k1,24162:25166326,28242274:228064 -k1,24162:26284368,28242274:228063 -k1,24162:29102415,28242274:228064 -k1,24162:29946517,28242274:228064 -k1,24162:31193666,28242274:228064 -k1,24162:32583029,28242274:0 -) -(1,24163:6764466,29107354:25818563,513147,134348 -k1,24162:9003034,29107354:188602 -k1,24162:9819471,29107354:188602 -k1,24162:11027158,29107354:188602 -k1,24162:12582840,29107354:188601 -k1,24162:13430734,29107354:188602 -k1,24162:16199488,29107354:188602 -k1,24162:18411186,29107354:188602 -k1,24162:18955648,29107354:188602 -(1,24162:18955648,29107354:0,452978,115847 -r1,24170:21424185,29107354:2468537,568825,115847 -k1,24162:18955648,29107354:-2468537 -) -(1,24162:18955648,29107354:2468537,452978,115847 -k1,24162:18955648,29107354:3277 -h1,24162:21420908,29107354:0,411205,112570 -) -k1,24162:21612787,29107354:188602 -k1,24162:23779266,29107354:188602 -k1,24162:27329864,29107354:188601 -(1,24162:27329864,29107354:0,414482,115847 -r1,24170:28039842,29107354:709978,530329,115847 -k1,24162:27329864,29107354:-709978 -) -(1,24162:27329864,29107354:709978,414482,115847 -k1,24162:27329864,29107354:3277 -h1,24162:28036565,29107354:0,411205,112570 -) -k1,24162:28228444,29107354:188602 -k1,24162:30427691,29107354:188602 -k1,24162:31563944,29107354:188602 -k1,24162:32583029,29107354:0 -) -(1,24163:6764466,29972434:25818563,513147,134348 -k1,24162:11154245,29972434:267564 -k1,24162:12647988,29972434:267564 -k1,24162:14252486,29972434:267564 -k1,24162:15267816,29972434:267564 -k1,24162:18314107,29972434:267564 -k1,24162:20908853,29972434:267563 -k1,24162:21835709,29972434:267564 -k1,24162:22459133,29972434:267564 -(1,24162:22459133,29972434:0,452978,115847 -r1,24170:25631093,29972434:3171960,568825,115847 -k1,24162:22459133,29972434:-3171960 -) -(1,24162:22459133,29972434:3171960,452978,115847 -k1,24162:22459133,29972434:3277 -h1,24162:25627816,29972434:0,411205,112570 -) -k1,24162:25898657,29972434:267564 -k1,24162:28144098,29972434:267564 -k1,24162:31773659,29972434:267564 -k1,24162:32583029,29972434:0 -) -(1,24163:6764466,30837514:25818563,513147,134348 -k1,24162:9577412,30837514:248522 -k1,24162:10845018,30837514:248521 -k1,24162:13086490,30837514:248522 -k1,24162:15818827,30837514:248522 -k1,24162:18359798,30837514:248522 -k1,24162:21127523,30837514:248521 -k1,24162:22782448,30837514:248522 -k1,24162:24050055,30837514:248522 -k1,24162:25370745,30837514:248521 -k1,24162:26302152,30837514:248522 -k1,24162:27957077,30837514:248522 -k1,24162:29224684,30837514:248522 -k1,24162:30656130,30837514:248521 -k1,24162:31563944,30837514:248522 -k1,24162:32583029,30837514:0 -) -(1,24163:6764466,31702594:25818563,513147,7863 -k1,24163:32583030,31702594:24783096 -g1,24163:32583030,31702594 -) -(1,24165:6764466,32567674:25818563,513147,134348 -h1,24164:6764466,32567674:983040,0,0 -k1,24164:9762411,32567674:231670 -k1,24164:13166023,32567674:231669 -k1,24164:14787056,32567674:231670 -k1,24164:16586347,32567674:231670 -k1,24164:17173877,32567674:231670 -k1,24164:20698730,32567674:231669 -k1,24164:21613285,32567674:231670 -k1,24164:25197122,32567674:231670 -k1,24164:26409865,32567674:231669 -k1,24164:32051532,32567674:231670 -k1,24164:32583029,32567674:0 -) -(1,24165:6764466,33432754:25818563,513147,134348 -k1,24164:8251314,33432754:180715 -k1,24164:9083458,33432754:180716 -k1,24164:11086074,33432754:180715 -k1,24164:11724886,33432754:180715 -k1,24164:12521640,33432754:180716 -k1,24164:13721440,33432754:180715 -k1,24164:16337474,33432754:180716 -k1,24164:19277255,33432754:180715 -k1,24164:20109398,33432754:180715 -k1,24164:22433141,33432754:180716 -k1,24164:23898362,33432754:180715 -k1,24164:25098162,33432754:180715 -k1,24164:26700354,33432754:180716 -k1,24164:27532497,33432754:180715 -k1,24164:28460979,33432754:180716 -k1,24164:31591469,33432754:180715 -k1,24164:32583029,33432754:0 -) -(1,24165:6764466,34297834:25818563,505283,134348 -k1,24164:9603660,34297834:160082 -k1,24164:10449904,34297834:160082 -k1,24164:13622677,34297834:160083 -k1,24164:15565994,34297834:160082 -k1,24164:17461469,34297834:160082 -k1,24164:17977411,34297834:160082 -(1,24164:17977411,34297834:0,414482,115847 -r1,24170:19039100,34297834:1061689,530329,115847 -k1,24164:17977411,34297834:-1061689 -) -(1,24164:17977411,34297834:1061689,414482,115847 -k1,24164:17977411,34297834:3277 -h1,24164:19035823,34297834:0,411205,112570 -) -k1,24164:19199182,34297834:160082 -k1,24164:20045427,34297834:160083 -k1,24164:20976212,34297834:160082 -k1,24164:25194283,34297834:160082 -k1,24164:26883320,34297834:160082 -k1,24164:27501499,34297834:160082 -k1,24164:28193079,34297834:160083 -k1,24164:30485703,34297834:160082 -k1,24164:31297213,34297834:160082 -k1,24164:32583029,34297834:0 -) -(1,24165:6764466,35162914:25818563,513147,126483 -k1,24164:8533633,35162914:191715 -k1,24164:9928588,35162914:191714 -k1,24164:11103343,35162914:191715 -k1,24164:11911095,35162914:191714 -k1,24164:12458670,35162914:191715 -k1,24164:15687323,35162914:191715 -k1,24164:17788101,35162914:191714 -k1,24164:19473382,35162914:191715 -k1,24164:20351258,35162914:191714 -k1,24164:21562058,35162914:191715 -k1,24164:23662837,35162914:191715 -k1,24164:25393336,35162914:191714 -k1,24164:26201089,35162914:191715 -k1,24164:28816980,35162914:191714 -k1,24164:29898674,35162914:191715 -k1,24164:32583029,35162914:0 -) -(1,24165:6764466,36027994:25818563,513147,126483 -k1,24164:7544157,36027994:163653 -k1,24164:10517338,36027994:163653 -k1,24164:11363876,36027994:163653 -k1,24164:13355983,36027994:163653 -k1,24164:15691499,36027994:163653 -k1,24164:17140313,36027994:163653 -k1,24164:17920003,36027994:163652 -k1,24164:19535278,36027994:163653 -k1,24164:20890376,36027994:163653 -k1,24164:23187881,36027994:163653 -k1,24164:25204892,36027994:163653 -k1,24164:26177915,36027994:163653 -k1,24164:27890184,36027994:163653 -k1,24164:29457618,36027994:163653 -k1,24164:32583029,36027994:0 -) -(1,24165:6764466,36893074:25818563,505283,134348 -k1,24164:9439050,36893074:190769 -k1,24164:11460240,36893074:190769 -k1,24164:12842454,36893074:190769 -k1,24164:15676945,36893074:190769 -k1,24164:18842393,36893074:190769 -k1,24164:21934442,36893074:190770 -k1,24164:23226216,36893074:190769 -k1,24164:24926935,36893074:190769 -k1,24164:26804601,36893074:190769 -k1,24164:28880841,36893074:190769 -k1,24164:31773659,36893074:190769 -k1,24164:32583029,36893074:0 -) -(1,24165:6764466,37758154:25818563,513147,134348 -k1,24164:7986360,37758154:202809 -k1,24164:10030730,37758154:202808 -k1,24164:12745534,37758154:202809 -k1,24164:13564380,37758154:202808 -k1,24164:14786274,37758154:202809 -k1,24164:18043061,37758154:202809 -k1,24164:20491788,37758154:202808 -k1,24164:21353889,37758154:202809 -k1,24164:22575783,37758154:202809 -k1,24164:25854851,37758154:202808 -k1,24164:27249105,37758154:202809 -k1,24164:28067951,37758154:202808 -k1,24164:29289845,37758154:202809 -k1,24164:32583029,37758154:0 -) -(1,24165:6764466,38623234:25818563,513147,134348 -k1,24164:9857513,38623234:177350 -k1,24164:11855454,38623234:177351 -k1,24164:12388664,38623234:177350 -k1,24164:15078010,38623234:177351 -k1,24164:17950856,38623234:177350 -k1,24164:18779634,38623234:177350 -k1,24164:20056679,38623234:177351 -k1,24164:21425474,38623234:177350 -k1,24164:22621909,38623234:177350 -k1,24164:25908288,38623234:177351 -k1,24164:29488267,38623234:177350 -k1,24164:30317046,38623234:177351 -k1,24164:31931601,38623234:177350 -k1,24164:32583029,38623234:0 -) -(1,24165:6764466,39488314:25818563,473825,7863 -k1,24165:32583029,39488314:25308038 -g1,24165:32583029,39488314 -) -] -g1,24165:32583029,39496177 -) -h1,24165:6630773,39496177:0,0,0 -(1,24167:6630773,41612995:25952256,564462,12975 -(1,24167:6630773,41612995:2899444,534184,12975 -g1,24167:6630773,41612995 -g1,24167:9530217,41612995 -) -g1,24167:11211347,41612995 -g1,24167:12937893,41612995 -g1,24167:13941381,41612995 -k1,24167:32583029,41612995:14557051 -g1,24167:32583029,41612995 -) -(1,24170:6630773,42871291:25952256,513147,134348 -k1,24169:7334770,42871291:226240 -k1,24169:8429361,42871291:226239 -k1,24169:10130816,42871291:226240 -k1,24169:12388017,42871291:226240 -k1,24169:13265684,42871291:226239 -k1,24169:14511009,42871291:226240 -k1,24169:17172567,42871291:226240 -k1,24169:20157872,42871291:226239 -k1,24169:21897338,42871291:226240 -k1,24169:23071228,42871291:226239 -k1,24169:25869756,42871291:226240 -k1,24169:26451856,42871291:226240 -k1,24169:29971279,42871291:226239 -k1,24169:30880404,42871291:226240 -k1,24170:32583029,42871291:0 -) -(1,24170:6630773,43736371:25952256,513147,134348 -k1,24169:8621268,43736371:234785 -k1,24169:10289982,43736371:234786 -k1,24169:13587920,43736371:234785 -k1,24169:17446192,43736371:234786 -k1,24169:18332405,43736371:234785 -k1,24169:19793369,43736371:234785 -k1,24169:21341497,43736371:234786 -k1,24169:22192320,43736371:234785 -k1,24169:23695847,43736371:234750 -k1,24169:26111015,43736371:234785 -k1,24169:27537246,43736371:234786 -k1,24169:30943974,43736371:234785 -k1,24169:32583029,43736371:0 -) -(1,24170:6630773,44601451:25952256,513147,134348 -k1,24169:8094898,44601451:196659 -k1,24169:8706397,44601451:196656 -k1,24169:10638448,44601451:196658 -k1,24169:11854192,44601451:196659 -k1,24169:15076647,44601451:196658 -k1,24169:18363329,44601451:196659 -k1,24169:19176026,44601451:196659 -k1,24169:21981672,44601451:196658 -h1,24169:23350719,44601451:0,0,0 -k1,24169:23547378,44601451:196659 -k1,24169:24935481,44601451:196658 -h1,24169:26876657,44601451:0,0,0 -k1,24169:27073316,44601451:196659 -k1,24169:29748546,44601451:196658 -k1,24169:30754575,44601451:196659 -k1,24169:32583029,44601451:0 -) -(1,24170:6630773,45466531:25952256,513147,134348 -h1,24169:7826150,45466531:0,0,0 -k1,24169:8100031,45466531:273881 -k1,24169:9565356,45466531:273880 -h1,24169:10760733,45466531:0,0,0 -k1,24169:11034614,45466531:273881 -k1,24169:14068871,45466531:273881 -k1,24169:14698612,45466531:273881 -k1,24169:17398635,45466531:273880 -k1,24169:21208183,45466531:273881 -k1,24169:23184034,45466531:273881 -k1,24169:24405566,45466531:273881 -k1,24169:27851389,45466531:273880 -k1,24169:31563944,45466531:273881 -k1,24169:32583029,45466531:0 -) -] -(1,24170:32583029,45706769:0,0,0 -g1,24170:32583029,45706769 -) -) -] -(1,24170:6630773,47279633:25952256,0,0 -h1,24170:6630773,47279633:25952256,0,0 -) -] -(1,24170:4262630,4025873:0,0,0 -[1,24170:-473656,4025873:0,0,0 -(1,24170:-473656,-710413:0,0,0 -(1,24170:-473656,-710413:0,0,0 -g1,24170:-473656,-710413 -) -g1,24170:-473656,-710413 +) +) +) +] +[1,24168:3078558,4812305:0,0,0 +(1,24168:3078558,49800853:0,16384,2228224 +g1,24168:29030814,49800853 +g1,24168:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24168:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24168:37855564,49800853:1179648,16384,0 +) +) +k1,24168:3078556,49800853:-34777008 +) +] +g1,24168:6630773,4812305 +k1,24168:21114230,4812305:13288080 +g1,24168:22736901,4812305 +g1,24168:23350318,4812305 +g1,24168:24759997,4812305 +g1,24168:28372341,4812305 +g1,24168:30105768,4812305 +) +) +] +[1,24168:6630773,45706769:25952256,40108032,0 +(1,24168:6630773,45706769:25952256,40108032,0 +(1,24168:6630773,45706769:0,0,0 +g1,24168:6630773,45706769 +) +[1,24168:6630773,45706769:25952256,40108032,0 +(1,24154:6630773,6254097:25952256,513147,126483 +k1,24153:8511001,6254097:224133 +k1,24153:10756920,6254097:224133 +k1,24153:13491737,6254097:224133 +k1,24153:14707430,6254097:224133 +k1,24153:16581760,6254097:224133 +k1,24153:19463378,6254097:224133 +k1,24153:23396193,6254097:224133 +k1,24153:25992074,6254097:224133 +k1,24153:27712394,6254097:224133 +k1,24153:28622689,6254097:224133 +k1,24153:31966991,6254097:224133 +k1,24153:32583029,6254097:0 +) +(1,24154:6630773,7119177:25952256,505283,126483 +k1,24153:9496488,7119177:199710 +k1,24153:10347626,7119177:199710 +k1,24153:11566420,7119177:199709 +k1,24153:13688301,7119177:199710 +k1,24153:15451045,7119177:199710 +k1,24153:16278590,7119177:199710 +k1,24153:17244416,7119177:199710 +k1,24153:19315178,7119177:199709 +k1,24153:20890489,7119177:199710 +k1,24153:23100844,7119177:199710 +k1,24153:25723420,7119177:199710 +k1,24153:26609292,7119177:199710 +k1,24153:28302567,7119177:199709 +k1,24153:29185162,7119177:199710 +k1,24153:31128785,7119177:199710 +k1,24154:32583029,7119177:0 +) +(1,24154:6630773,7984257:25952256,513147,126483 +k1,24153:8742145,7984257:250805 +k1,24153:9754479,7984257:250806 +k1,24153:12073600,7984257:250805 +k1,24153:12983697,7984257:250805 +k1,24153:14253587,7984257:250805 +k1,24153:17829034,7984257:250806 +k1,24153:21200008,7984257:250805 +k1,24153:22555095,7984257:250805 +k1,24153:23553667,7984257:250806 +k1,24153:26754247,7984257:250805 +k1,24153:28272518,7984257:250805 +k1,24153:28938115,7984257:250754 +k1,24153:31140582,7984257:250805 +k1,24153:32583029,7984257:0 +) +(1,24154:6630773,8849337:25952256,505283,126483 +g1,24153:7849087,8849337 +g1,24153:11168485,8849337 +k1,24154:32583028,8849337:17805476 +g1,24154:32583028,8849337 +) +v1,24156:6630773,9714417:0,393216,0 +(1,24163:6630773,39496177:25952256,30174976,0 +g1,24163:6630773,39496177 +g1,24163:6237557,39496177 +r1,24168:6368629,39496177:131072,30174976,0 +g1,24163:6567858,39496177 +g1,24163:6764466,39496177 +[1,24163:6764466,39496177:25818563,30174976,0 +(1,24157:6764466,10075594:25818563,754393,260573 +(1,24156:6764466,10075594:0,754393,260573 +r1,24168:7856192,10075594:1091726,1014966,260573 +k1,24156:6764466,10075594:-1091726 +) +(1,24156:6764466,10075594:1091726,754393,260573 +) +k1,24156:8069091,10075594:212899 +k1,24156:8396771,10075594:327680 +k1,24156:10392905,10075594:212899 +k1,24156:13020150,10075594:212899 +k1,24156:15635600,10075594:212900 +k1,24156:17416120,10075594:212899 +k1,24156:17984879,10075594:212899 +k1,24156:21664633,10075594:212899 +k1,24156:22233392,10075594:212899 +k1,24156:24829180,10075594:212899 +k1,24156:25701372,10075594:212900 +k1,24156:27335747,10075594:212899 +k1,24156:28942597,10075594:212899 +k1,24156:31109780,10075594:212899 +k1,24156:32583029,10075594:0 +) +(1,24157:6764466,10940674:25818563,513147,134348 +k1,24156:8140109,10940674:271361 +k1,24156:11483798,10940674:271361 +(1,24156:11483798,10940674:0,414482,115847 +r1,24168:12193776,10940674:709978,530329,115847 +k1,24156:11483798,10940674:-709978 +) +(1,24156:11483798,10940674:709978,414482,115847 +k1,24156:11483798,10940674:3277 +h1,24156:12190499,10940674:0,411205,112570 +) +k1,24156:12465137,10940674:271361 +k1,24156:14920813,10940674:271361 +k1,24156:15679690,10940674:271289 +k1,24156:18510232,10940674:271361 +k1,24156:21370265,10940674:271361 +k1,24156:22732800,10940674:271361 +k1,24156:24784774,10940674:271361 +k1,24156:26623756,10940674:271361 +k1,24156:27914202,10940674:271361 +k1,24156:31478747,10940674:271361 +k1,24156:32583029,10940674:0 +) +(1,24157:6764466,11805754:25818563,513147,134348 +k1,24156:8810745,11805754:203407 +k1,24156:9630191,11805754:203408 +k1,24156:12305616,11805754:203407 +k1,24156:15222215,11805754:203408 +k1,24156:16108507,11805754:203407 +k1,24156:18019782,11805754:203407 +k1,24156:18689151,11805754:203408 +k1,24156:19911643,11805754:203407 +k1,24156:21462470,11805754:203407 +k1,24156:22197375,11805754:203408 +k1,24156:23446737,11805754:203407 +k1,24156:25540203,11805754:203408 +k1,24156:26426495,11805754:203407 +k1,24156:27245940,11805754:203407 +k1,24156:28983546,11805754:203408 +k1,24156:29869838,11805754:203407 +k1,24156:32583029,11805754:0 +) +(1,24157:6764466,12670834:25818563,513147,134348 +k1,24156:8596281,12670834:222906 +k1,24156:10213138,12670834:222906 +(1,24156:10213138,12670834:0,414482,115847 +r1,24168:10923116,12670834:709978,530329,115847 +k1,24156:10213138,12670834:-709978 +) +(1,24156:10213138,12670834:709978,414482,115847 +k1,24156:10213138,12670834:3277 +h1,24156:10919839,12670834:0,411205,112570 +) +k1,24156:11146022,12670834:222906 +k1,24156:13553243,12670834:222906 +k1,24156:14242110,12670834:222906 +k1,24156:15484101,12670834:222906 +k1,24156:17487620,12670834:222906 +k1,24156:20378497,12670834:222906 +k1,24156:22607460,12670834:222906 +k1,24156:24251842,12670834:222906 +k1,24156:25090786,12670834:222906 +k1,24156:26332777,12670834:222906 +k1,24156:30022538,12670834:222906 +k1,24157:32583029,12670834:0 +) +(1,24157:6764466,13535914:25818563,513147,134348 +k1,24156:7968843,13535914:214128 +k1,24156:8992341,13535914:214128 +k1,24156:10225554,13535914:214128 +k1,24156:13135177,13535914:214127 +k1,24156:15036202,13535914:214128 +k1,24156:15708427,13535914:214128 +k1,24156:17259489,13535914:214128 +k1,24156:18221383,13535914:214128 +k1,24156:21065471,13535914:214128 +k1,24156:21931027,13535914:214128 +k1,24156:24165630,13535914:214128 +k1,24156:26385814,13535914:214127 +k1,24156:28195088,13535914:214128 +k1,24156:29170744,13535914:214128 +k1,24156:31812326,13535914:214128 +k1,24156:32583029,13535914:0 +) +(1,24157:6764466,14400994:25818563,426639,134348 +k1,24157:32583030,14400994:22693808 +g1,24157:32583030,14400994 +) +(1,24159:6764466,15266074:25818563,513147,126483 +h1,24158:6764466,15266074:983040,0,0 +k1,24158:9605955,15266074:163033 +k1,24158:12775780,15266074:163033 +k1,24158:15160485,15266074:163034 +k1,24158:15974946,15266074:163033 +k1,24158:17157064,15266074:163033 +k1,24158:19501791,15266074:163033 +k1,24158:20324117,15266074:163034 +k1,24158:21876513,15266074:163033 +k1,24158:23607167,15266074:163033 +k1,24158:25366657,15266074:163033 +k1,24158:27556720,15266074:163034 +k1,24158:28911198,15266074:163033 +k1,24158:30670688,15266074:163033 +k1,24158:32583029,15266074:0 +) +(1,24159:6764466,16131154:25818563,513147,126483 +k1,24158:8059160,16131154:303134 +k1,24158:9545218,16131154:303133 +k1,24158:10499780,16131154:303134 +k1,24158:14277633,16131154:303134 +k1,24158:17215969,16131154:303133 +k1,24158:18691542,16131154:303134 +k1,24158:21757018,16131154:303133 +k1,24158:24570836,16131154:303134 +k1,24158:26158476,16131154:303134 +k1,24158:28775685,16131154:303133 +k1,24158:31841162,16131154:303134 +k1,24159:32583029,16131154:0 +) +(1,24159:6764466,16996234:25818563,505283,7863 +k1,24158:9989084,16996234:216515 +k1,24158:11014968,16996234:216514 +k1,24158:12780099,16996234:216515 +k1,24158:13528110,16996234:216514 +k1,24158:16194361,16996234:216515 +k1,24158:17093760,16996234:216514 +k1,24158:18550216,16996234:216515 +k1,24158:20541445,16996234:216514 +k1,24158:21373998,16996234:216515 +k1,24158:21946372,16996234:216514 +k1,24158:25456071,16996234:216515 +k1,24158:26130682,16996234:216514 +k1,24158:26878694,16996234:216515 +k1,24158:29544944,16996234:216514 +k1,24158:30412887,16996234:216515 +k1,24158:31563944,16996234:216514 +k1,24158:32583029,16996234:0 +) +(1,24159:6764466,17861314:25818563,513147,134348 +k1,24158:9620871,17861314:165496 +k1,24158:10679623,17861314:165496 +k1,24158:12712894,17861314:165495 +k1,24158:13494428,17861314:165496 +k1,24158:15480514,17861314:165496 +k1,24158:16837455,17861314:165496 +k1,24158:19455963,17861314:165495 +k1,24158:22926440,17861314:165496 +k1,24158:23743364,17861314:165496 +(1,24158:23743364,17861314:0,452978,115847 +r1,24168:25156765,17861314:1413401,568825,115847 +k1,24158:23743364,17861314:-1413401 +) +(1,24158:23743364,17861314:1413401,452978,115847 +k1,24158:23743364,17861314:3277 +h1,24158:25153488,17861314:0,411205,112570 +) +k1,24158:25322261,17861314:165496 +k1,24158:26103794,17861314:165495 +k1,24158:26891193,17861314:165462 +k1,24158:27715981,17861314:165496 +k1,24158:31074391,17861314:165496 +k1,24158:32583029,17861314:0 +) +(1,24159:6764466,18726394:25818563,513147,126483 +k1,24158:7332707,18726394:212381 +k1,24158:10056428,18726394:212381 +k1,24158:13065886,18726394:212381 +k1,24158:13894306,18726394:212382 +k1,24158:14877390,18726394:212381 +k1,24158:15504601,18726394:212368 +k1,24158:17106345,18726394:212381 +k1,24158:19195022,18726394:212381 +k1,24158:19938900,18726394:212381 +k1,24158:22990301,18726394:212381 +k1,24158:23854110,18726394:212381 +k1,24158:24814258,18726394:212382 +k1,24158:27178186,18726394:212381 +k1,24158:28582012,18726394:212381 +k1,24158:30211281,18726394:212381 +k1,24158:32583029,18726394:0 +) +(1,24159:6764466,19591474:25818563,505283,134348 +k1,24158:9875382,19591474:157208 +k1,24158:13159312,19591474:157207 +k1,24158:14335605,19591474:157208 +k1,24158:16146286,19591474:157208 +(1,24158:16146286,19591474:0,452978,115847 +r1,24168:17559687,19591474:1413401,568825,115847 +k1,24158:16146286,19591474:-1413401 +) +(1,24158:16146286,19591474:1413401,452978,115847 +k1,24158:16146286,19591474:3277 +h1,24158:17556410,19591474:0,411205,112570 +) +k1,24158:17716895,19591474:157208 +k1,24158:18556987,19591474:157207 +k1,24158:20273952,19591474:157208 +k1,24158:21473182,19591474:157208 +k1,24158:22649474,19591474:157207 +k1,24158:24988376,19591474:157208 +k1,24158:25797012,19591474:157208 +k1,24158:27550677,19591474:157208 +k1,24158:28394046,19591474:157207 +k1,24158:31563944,19591474:157208 +k1,24158:32583029,19591474:0 +) +(1,24159:6764466,20456554:25818563,513147,126483 +k1,24158:9664388,20456554:209013 +k1,24158:11495417,20456554:209013 +k1,24158:12452196,20456554:209013 +k1,24158:16115612,20456554:209013 +k1,24158:17394173,20456554:209013 +k1,24158:18369302,20456554:209013 +k1,24158:19999791,20456554:209013 +k1,24158:20824841,20456554:209012 +k1,24158:21389714,20456554:209013 +k1,24158:23981616,20456554:209013 +k1,24158:24842057,20456554:209013 +k1,24158:25798836,20456554:209013 +k1,24158:28957624,20456554:209013 +k1,24158:30158197,20456554:209013 +k1,24158:32583029,20456554:0 +) +(1,24159:6764466,21321634:25818563,513147,126483 +k1,24158:7656365,21321634:205737 +k1,24158:9018812,21321634:205737 +k1,24158:9883841,21321634:205737 +k1,24158:11108663,21321634:205737 +(1,24158:11108663,21321634:0,452978,115847 +r1,24168:13225488,21321634:2116825,568825,115847 +k1,24158:11108663,21321634:-2116825 +) +(1,24158:11108663,21321634:2116825,452978,115847 +k1,24158:11108663,21321634:3277 +h1,24158:13222211,21321634:0,411205,112570 +) +k1,24158:13604895,21321634:205737 +(1,24158:13604895,21321634:0,414482,115847 +r1,24168:15018296,21321634:1413401,530329,115847 +k1,24158:13604895,21321634:-1413401 +) +(1,24158:13604895,21321634:1413401,414482,115847 +k1,24158:13604895,21321634:3277 +h1,24158:15015019,21321634:0,411205,112570 +) +k1,24158:15397703,21321634:205737 +(1,24158:15397703,21321634:0,452978,115847 +r1,24168:16811104,21321634:1413401,568825,115847 +k1,24158:15397703,21321634:-1413401 +) +(1,24158:15397703,21321634:1413401,452978,115847 +k1,24158:15397703,21321634:3277 +h1,24158:16807827,21321634:0,411205,112570 +) +k1,24158:17016841,21321634:205737 +k1,24158:17905463,21321634:205737 +(1,24158:17905463,21321634:0,414482,115847 +r1,24168:19318864,21321634:1413401,530329,115847 +k1,24158:17905463,21321634:-1413401 +) +(1,24158:17905463,21321634:1413401,414482,115847 +k1,24158:17905463,21321634:3277 +h1,24158:19315587,21321634:0,411205,112570 +) +k1,24158:19524601,21321634:205737 +k1,24158:22414693,21321634:205737 +k1,24158:24014381,21321634:205737 +k1,24158:25239203,21321634:205737 +k1,24158:28074900,21321634:205737 +k1,24158:31362140,21321634:205737 +k1,24158:32227169,21321634:205737 +k1,24158:32583029,21321634:0 +) +(1,24159:6764466,22186714:25818563,513147,134348 +k1,24158:8756401,22186714:177243 +k1,24158:10172275,22186714:177243 +k1,24158:11008810,22186714:177243 +k1,24158:13568942,22186714:177243 +k1,24158:16250971,22186714:177243 +k1,24158:17822165,22186714:177243 +k1,24158:19018493,22186714:177243 +k1,24158:21264053,22186714:177244 +k1,24158:22100588,22186714:177243 +k1,24158:23296916,22186714:177243 +k1,24158:26315800,22186714:177243 +k1,24158:27179205,22186714:177243 +(1,24158:27179205,22186714:0,414482,115847 +r1,24168:28592606,22186714:1413401,530329,115847 +k1,24158:27179205,22186714:-1413401 +) +(1,24158:27179205,22186714:1413401,414482,115847 +k1,24158:27179205,22186714:3277 +h1,24158:28589329,22186714:0,411205,112570 +) +k1,24158:28943519,22186714:177243 +k1,24158:30317449,22186714:177243 +k1,24158:32583029,22186714:0 +) +(1,24159:6764466,23051794:25818563,513147,126483 +k1,24158:9174997,23051794:230148 +(1,24158:9174997,23051794:0,452978,115847 +r1,24168:11643534,23051794:2468537,568825,115847 +k1,24158:9174997,23051794:-2468537 +) +(1,24158:9174997,23051794:2468537,452978,115847 +k1,24158:9174997,23051794:3277 +h1,24158:11640257,23051794:0,411205,112570 +) +k1,24158:11873682,23051794:230148 +k1,24158:13389646,23051794:230148 +k1,24158:15546551,23051794:230147 +k1,24158:16848868,23051794:230148 +k1,24158:17765178,23051794:230148 +k1,24158:18453423,23051794:230148 +k1,24158:20176481,23051794:230148 +k1,24158:21472900,23051794:230148 +k1,24158:23846074,23051794:230147 +k1,24158:27968405,23051794:230148 +k1,24158:28656650,23051794:230148 +k1,24158:30932832,23051794:230148 +k1,24158:32583029,23051794:0 +) +(1,24159:6764466,23916874:25818563,513147,134348 +g1,24158:9447510,23916874 +g1,24158:10298167,23916874 +g1,24158:11522379,23916874 +g1,24158:13901991,23916874 +g1,24158:18953506,23916874 +g1,24158:19765497,23916874 +g1,24158:20320586,23916874 +g1,24158:22550776,23916874 +g1,24158:23366043,23916874 +k1,24159:32583029,23916874:7542542 +g1,24159:32583029,23916874 +) +(1,24161:6764466,24781954:25818563,513147,134348 +h1,24160:6764466,24781954:983040,0,0 +k1,24160:9716426,24781954:185685 +k1,24160:12304660,24781954:185684 +k1,24160:12846205,24781954:185685 +(1,24160:12846205,24781954:0,414482,115847 +r1,24168:13907894,24781954:1061689,530329,115847 +k1,24160:12846205,24781954:-1061689 +) +(1,24160:12846205,24781954:1061689,414482,115847 +k1,24160:12846205,24781954:3277 +h1,24160:13904617,24781954:0,411205,112570 +) +k1,24160:14093579,24781954:185685 +k1,24160:15435974,24781954:185685 +k1,24160:16847837,24781954:185684 +k1,24160:21065297,24781954:185685 +k1,24160:24067064,24781954:185685 +k1,24160:25385211,24781954:185685 +k1,24160:26318661,24781954:185684 +k1,24160:29956783,24781954:185685 +k1,24160:31333913,24781954:185685 +k1,24161:32583029,24781954:0 +) +(1,24161:6764466,25647034:25818563,513147,134348 +k1,24160:9154816,25647034:216521 +k1,24160:10443506,25647034:216521 +k1,24160:12035627,25647034:216520 +k1,24160:12718109,25647034:216521 +k1,24160:13953715,25647034:216521 +k1,24160:16654051,25647034:216521 +k1,24160:18558778,25647034:216520 +k1,24160:19306796,25647034:216521 +k1,24160:22202429,25647034:216521 +k1,24160:23105112,25647034:216521 +k1,24160:26160652,25647034:216520 +k1,24160:27944794,25647034:216521 +k1,24160:29180400,25647034:216521 +k1,24160:32583029,25647034:0 +) +(1,24161:6764466,26512114:25818563,513147,134348 +k1,24160:9178198,26512114:208445 +k1,24160:10038072,26512114:208446 +k1,24160:11265602,26512114:208445 +k1,24160:14169544,26512114:208446 +k1,24160:15651354,26512114:208445 +k1,24160:16609531,26512114:208445 +k1,24160:17173837,26512114:208446 +k1,24160:19255301,26512114:208445 +k1,24160:21949527,26512114:208445 +k1,24160:23551924,26512114:208446 +k1,24160:24116229,26512114:208445 +k1,24160:26648582,26512114:208446 +k1,24160:29184210,26512114:208445 +k1,24160:30051947,26512114:208445 +k1,24160:30616253,26512114:208446 +k1,24160:31896867,26512114:208445 +k1,24160:32583029,26512114:0 +) +(1,24161:6764466,27377194:25818563,505283,134348 +k1,24160:9485006,27377194:236725 +k1,24160:12014181,27377194:236726 +k1,24160:13140885,27377194:236725 +k1,24160:14616897,27377194:236726 +k1,24160:16739748,27377194:236725 +k1,24160:18108936,27377194:236726 +k1,24160:20188533,27377194:236725 +k1,24160:21041296,27377194:236725 +k1,24160:22879722,27377194:236726 +k1,24160:24813829,27377194:236725 +k1,24160:25666593,27377194:236726 +k1,24160:26922403,27377194:236725 +k1,24160:29542018,27377194:236726 +k1,24160:30845014,27377194:236725 +k1,24160:32583029,27377194:0 +) +(1,24161:6764466,28242274:25818563,505283,115847 +k1,24160:9677540,28242274:228064 +k1,24160:10591766,28242274:228064 +k1,24160:13635912,28242274:228064 +k1,24160:15055420,28242274:228063 +k1,24160:18062211,28242274:228064 +k1,24160:18976437,28242274:228064 +k1,24160:19560361,28242274:228064 +(1,24160:19560361,28242274:0,452978,115847 +r1,24168:22732321,28242274:3171960,568825,115847 +k1,24160:19560361,28242274:-3171960 +) +(1,24160:19560361,28242274:3171960,452978,115847 +k1,24160:19560361,28242274:3277 +h1,24160:22729044,28242274:0,411205,112570 +) +k1,24160:22960385,28242274:228064 +k1,24160:25166326,28242274:228064 +k1,24160:26284368,28242274:228063 +k1,24160:29102415,28242274:228064 +k1,24160:29946517,28242274:228064 +k1,24160:31193666,28242274:228064 +k1,24160:32583029,28242274:0 +) +(1,24161:6764466,29107354:25818563,513147,134348 +k1,24160:9003034,29107354:188602 +k1,24160:9819471,29107354:188602 +k1,24160:11027158,29107354:188602 +k1,24160:12582840,29107354:188601 +k1,24160:13430734,29107354:188602 +k1,24160:16199488,29107354:188602 +k1,24160:18411186,29107354:188602 +k1,24160:18955648,29107354:188602 +(1,24160:18955648,29107354:0,452978,115847 +r1,24168:21424185,29107354:2468537,568825,115847 +k1,24160:18955648,29107354:-2468537 +) +(1,24160:18955648,29107354:2468537,452978,115847 +k1,24160:18955648,29107354:3277 +h1,24160:21420908,29107354:0,411205,112570 +) +k1,24160:21612787,29107354:188602 +k1,24160:23779266,29107354:188602 +k1,24160:27329864,29107354:188601 +(1,24160:27329864,29107354:0,414482,115847 +r1,24168:28039842,29107354:709978,530329,115847 +k1,24160:27329864,29107354:-709978 +) +(1,24160:27329864,29107354:709978,414482,115847 +k1,24160:27329864,29107354:3277 +h1,24160:28036565,29107354:0,411205,112570 +) +k1,24160:28228444,29107354:188602 +k1,24160:30427691,29107354:188602 +k1,24160:31563944,29107354:188602 +k1,24160:32583029,29107354:0 +) +(1,24161:6764466,29972434:25818563,513147,134348 +k1,24160:11154245,29972434:267564 +k1,24160:12647988,29972434:267564 +k1,24160:14252486,29972434:267564 +k1,24160:15267816,29972434:267564 +k1,24160:18314107,29972434:267564 +k1,24160:20908853,29972434:267563 +k1,24160:21835709,29972434:267564 +k1,24160:22459133,29972434:267564 +(1,24160:22459133,29972434:0,452978,115847 +r1,24168:25631093,29972434:3171960,568825,115847 +k1,24160:22459133,29972434:-3171960 +) +(1,24160:22459133,29972434:3171960,452978,115847 +k1,24160:22459133,29972434:3277 +h1,24160:25627816,29972434:0,411205,112570 +) +k1,24160:25898657,29972434:267564 +k1,24160:28144098,29972434:267564 +k1,24160:31773659,29972434:267564 +k1,24160:32583029,29972434:0 +) +(1,24161:6764466,30837514:25818563,513147,134348 +k1,24160:9577412,30837514:248522 +k1,24160:10845018,30837514:248521 +k1,24160:13086490,30837514:248522 +k1,24160:15818827,30837514:248522 +k1,24160:18359798,30837514:248522 +k1,24160:21127523,30837514:248521 +k1,24160:22782448,30837514:248522 +k1,24160:24050055,30837514:248522 +k1,24160:25370745,30837514:248521 +k1,24160:26302152,30837514:248522 +k1,24160:27957077,30837514:248522 +k1,24160:29224684,30837514:248522 +k1,24160:30656130,30837514:248521 +k1,24160:31563944,30837514:248522 +k1,24160:32583029,30837514:0 +) +(1,24161:6764466,31702594:25818563,513147,7863 +k1,24161:32583030,31702594:24783096 +g1,24161:32583030,31702594 +) +(1,24163:6764466,32567674:25818563,513147,134348 +h1,24162:6764466,32567674:983040,0,0 +k1,24162:9762411,32567674:231670 +k1,24162:13166023,32567674:231669 +k1,24162:14787056,32567674:231670 +k1,24162:16586347,32567674:231670 +k1,24162:17173877,32567674:231670 +k1,24162:20698730,32567674:231669 +k1,24162:21613285,32567674:231670 +k1,24162:25197122,32567674:231670 +k1,24162:26409865,32567674:231669 +k1,24162:32051532,32567674:231670 +k1,24162:32583029,32567674:0 +) +(1,24163:6764466,33432754:25818563,513147,134348 +k1,24162:8251314,33432754:180715 +k1,24162:9083458,33432754:180716 +k1,24162:11086074,33432754:180715 +k1,24162:11724886,33432754:180715 +k1,24162:12521640,33432754:180716 +k1,24162:13721440,33432754:180715 +k1,24162:16337474,33432754:180716 +k1,24162:19277255,33432754:180715 +k1,24162:20109398,33432754:180715 +k1,24162:22433141,33432754:180716 +k1,24162:23898362,33432754:180715 +k1,24162:25098162,33432754:180715 +k1,24162:26700354,33432754:180716 +k1,24162:27532497,33432754:180715 +k1,24162:28460979,33432754:180716 +k1,24162:31591469,33432754:180715 +k1,24162:32583029,33432754:0 +) +(1,24163:6764466,34297834:25818563,505283,134348 +k1,24162:9603660,34297834:160082 +k1,24162:10449904,34297834:160082 +k1,24162:13622677,34297834:160083 +k1,24162:15565994,34297834:160082 +k1,24162:17461469,34297834:160082 +k1,24162:17977411,34297834:160082 +(1,24162:17977411,34297834:0,414482,115847 +r1,24168:19039100,34297834:1061689,530329,115847 +k1,24162:17977411,34297834:-1061689 +) +(1,24162:17977411,34297834:1061689,414482,115847 +k1,24162:17977411,34297834:3277 +h1,24162:19035823,34297834:0,411205,112570 +) +k1,24162:19199182,34297834:160082 +k1,24162:20045427,34297834:160083 +k1,24162:20976212,34297834:160082 +k1,24162:25194283,34297834:160082 +k1,24162:26883320,34297834:160082 +k1,24162:27501499,34297834:160082 +k1,24162:28193079,34297834:160083 +k1,24162:30485703,34297834:160082 +k1,24162:31297213,34297834:160082 +k1,24162:32583029,34297834:0 +) +(1,24163:6764466,35162914:25818563,513147,126483 +k1,24162:8533633,35162914:191715 +k1,24162:9928588,35162914:191714 +k1,24162:11103343,35162914:191715 +k1,24162:11911095,35162914:191714 +k1,24162:12458670,35162914:191715 +k1,24162:15687323,35162914:191715 +k1,24162:17788101,35162914:191714 +k1,24162:19473382,35162914:191715 +k1,24162:20351258,35162914:191714 +k1,24162:21562058,35162914:191715 +k1,24162:23662837,35162914:191715 +k1,24162:25393336,35162914:191714 +k1,24162:26201089,35162914:191715 +k1,24162:28816980,35162914:191714 +k1,24162:29898674,35162914:191715 +k1,24162:32583029,35162914:0 +) +(1,24163:6764466,36027994:25818563,513147,126483 +k1,24162:7544157,36027994:163653 +k1,24162:10517338,36027994:163653 +k1,24162:11363876,36027994:163653 +k1,24162:13355983,36027994:163653 +k1,24162:15691499,36027994:163653 +k1,24162:17140313,36027994:163653 +k1,24162:17920003,36027994:163652 +k1,24162:19535278,36027994:163653 +k1,24162:20890376,36027994:163653 +k1,24162:23187881,36027994:163653 +k1,24162:25204892,36027994:163653 +k1,24162:26177915,36027994:163653 +k1,24162:27890184,36027994:163653 +k1,24162:29457618,36027994:163653 +k1,24162:32583029,36027994:0 +) +(1,24163:6764466,36893074:25818563,505283,134348 +k1,24162:9439050,36893074:190769 +k1,24162:11460240,36893074:190769 +k1,24162:12842454,36893074:190769 +k1,24162:15676945,36893074:190769 +k1,24162:18842393,36893074:190769 +k1,24162:21934442,36893074:190770 +k1,24162:23226216,36893074:190769 +k1,24162:24926935,36893074:190769 +k1,24162:26804601,36893074:190769 +k1,24162:28880841,36893074:190769 +k1,24162:31773659,36893074:190769 +k1,24162:32583029,36893074:0 +) +(1,24163:6764466,37758154:25818563,513147,134348 +k1,24162:7986360,37758154:202809 +k1,24162:10030730,37758154:202808 +k1,24162:12745534,37758154:202809 +k1,24162:13564380,37758154:202808 +k1,24162:14786274,37758154:202809 +k1,24162:18043061,37758154:202809 +k1,24162:20491788,37758154:202808 +k1,24162:21353889,37758154:202809 +k1,24162:22575783,37758154:202809 +k1,24162:25854851,37758154:202808 +k1,24162:27249105,37758154:202809 +k1,24162:28067951,37758154:202808 +k1,24162:29289845,37758154:202809 +k1,24162:32583029,37758154:0 +) +(1,24163:6764466,38623234:25818563,513147,134348 +k1,24162:9857513,38623234:177350 +k1,24162:11855454,38623234:177351 +k1,24162:12388664,38623234:177350 +k1,24162:15078010,38623234:177351 +k1,24162:17950856,38623234:177350 +k1,24162:18779634,38623234:177350 +k1,24162:20056679,38623234:177351 +k1,24162:21425474,38623234:177350 +k1,24162:22621909,38623234:177350 +k1,24162:25908288,38623234:177351 +k1,24162:29488267,38623234:177350 +k1,24162:30317046,38623234:177351 +k1,24162:31931601,38623234:177350 +k1,24162:32583029,38623234:0 +) +(1,24163:6764466,39488314:25818563,473825,7863 +k1,24163:32583029,39488314:25308038 +g1,24163:32583029,39488314 +) +] +g1,24163:32583029,39496177 +) +h1,24163:6630773,39496177:0,0,0 +(1,24165:6630773,41612995:25952256,564462,12975 +(1,24165:6630773,41612995:2899444,534184,12975 +g1,24165:6630773,41612995 +g1,24165:9530217,41612995 +) +g1,24165:11211347,41612995 +g1,24165:12937893,41612995 +g1,24165:13941381,41612995 +k1,24165:32583029,41612995:14557051 +g1,24165:32583029,41612995 +) +(1,24168:6630773,42871291:25952256,513147,134348 +k1,24167:7334770,42871291:226240 +k1,24167:8429361,42871291:226239 +k1,24167:10130816,42871291:226240 +k1,24167:12388017,42871291:226240 +k1,24167:13265684,42871291:226239 +k1,24167:14511009,42871291:226240 +k1,24167:17172567,42871291:226240 +k1,24167:20157872,42871291:226239 +k1,24167:21897338,42871291:226240 +k1,24167:23071228,42871291:226239 +k1,24167:25869756,42871291:226240 +k1,24167:26451856,42871291:226240 +k1,24167:29971279,42871291:226239 +k1,24167:30880404,42871291:226240 +k1,24168:32583029,42871291:0 +) +(1,24168:6630773,43736371:25952256,513147,134348 +k1,24167:8621268,43736371:234785 +k1,24167:10289982,43736371:234786 +k1,24167:13587920,43736371:234785 +k1,24167:17446192,43736371:234786 +k1,24167:18332405,43736371:234785 +k1,24167:19793369,43736371:234785 +k1,24167:21341497,43736371:234786 +k1,24167:22192320,43736371:234785 +k1,24167:23695847,43736371:234750 +k1,24167:26111015,43736371:234785 +k1,24167:27537246,43736371:234786 +k1,24167:30943974,43736371:234785 +k1,24167:32583029,43736371:0 +) +(1,24168:6630773,44601451:25952256,513147,134348 +k1,24167:8094898,44601451:196659 +k1,24167:8706397,44601451:196656 +k1,24167:10638448,44601451:196658 +k1,24167:11854192,44601451:196659 +k1,24167:15076647,44601451:196658 +k1,24167:18363329,44601451:196659 +k1,24167:19176026,44601451:196659 +k1,24167:21981672,44601451:196658 +h1,24167:23350719,44601451:0,0,0 +k1,24167:23547378,44601451:196659 +k1,24167:24935481,44601451:196658 +h1,24167:26876657,44601451:0,0,0 +k1,24167:27073316,44601451:196659 +k1,24167:29748546,44601451:196658 +k1,24167:30754575,44601451:196659 +k1,24167:32583029,44601451:0 +) +(1,24168:6630773,45466531:25952256,513147,134348 +h1,24167:7826150,45466531:0,0,0 +k1,24167:8100031,45466531:273881 +k1,24167:9565356,45466531:273880 +h1,24167:10760733,45466531:0,0,0 +k1,24167:11034614,45466531:273881 +k1,24167:14068871,45466531:273881 +k1,24167:14698612,45466531:273881 +k1,24167:17398635,45466531:273880 +k1,24167:21208183,45466531:273881 +k1,24167:23184034,45466531:273881 +k1,24167:24405566,45466531:273881 +k1,24167:27851389,45466531:273880 +k1,24167:31563944,45466531:273881 +k1,24167:32583029,45466531:0 +) +] +(1,24168:32583029,45706769:0,0,0 +g1,24168:32583029,45706769 +) +) +] +(1,24168:6630773,47279633:25952256,0,0 +h1,24168:6630773,47279633:25952256,0,0 +) +] +(1,24168:4262630,4025873:0,0,0 +[1,24168:-473656,4025873:0,0,0 +(1,24168:-473656,-710413:0,0,0 +(1,24168:-473656,-710413:0,0,0 +g1,24168:-473656,-710413 +) +g1,24168:-473656,-710413 ) ] ) ] !29921 -}415 -Input:4541:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4542:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4543:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4544:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}416 Input:4545:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4546:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4547:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4548:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4549:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{416 -[1,24214:4262630,47279633:28320399,43253760,0 -(1,24214:4262630,4025873:0,0,0 -[1,24214:-473656,4025873:0,0,0 -(1,24214:-473656,-710413:0,0,0 -(1,24214:-473656,-644877:0,0,0 -k1,24214:-473656,-644877:-65536 +{417 +[1,24212:4262630,47279633:28320399,43253760,0 +(1,24212:4262630,4025873:0,0,0 +[1,24212:-473656,4025873:0,0,0 +(1,24212:-473656,-710413:0,0,0 +(1,24212:-473656,-644877:0,0,0 +k1,24212:-473656,-644877:-65536 ) -(1,24214:-473656,4736287:0,0,0 -k1,24214:-473656,4736287:5209943 +(1,24212:-473656,4736287:0,0,0 +k1,24212:-473656,4736287:5209943 ) -g1,24214:-473656,-710413 +g1,24212:-473656,-710413 ) ] ) -[1,24214:6630773,47279633:25952256,43253760,0 -[1,24214:6630773,4812305:25952256,786432,0 -(1,24214:6630773,4812305:25952256,505283,11795 -(1,24214:6630773,4812305:25952256,505283,11795 -g1,24214:3078558,4812305 -[1,24214:3078558,4812305:0,0,0 -(1,24214:3078558,2439708:0,1703936,0 -k1,24214:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24214:2537886,2439708:1179648,16384,0 +[1,24212:6630773,47279633:25952256,43253760,0 +[1,24212:6630773,4812305:25952256,786432,0 +(1,24212:6630773,4812305:25952256,505283,11795 +(1,24212:6630773,4812305:25952256,505283,11795 +g1,24212:3078558,4812305 +[1,24212:3078558,4812305:0,0,0 +(1,24212:3078558,2439708:0,1703936,0 +k1,24212:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24212:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24214:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24212:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24214:3078558,4812305:0,0,0 -(1,24214:3078558,2439708:0,1703936,0 -g1,24214:29030814,2439708 -g1,24214:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24214:36151628,1915420:16384,1179648,0 +[1,24212:3078558,4812305:0,0,0 +(1,24212:3078558,2439708:0,1703936,0 +g1,24212:29030814,2439708 +g1,24212:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24212:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24214:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24212:37855564,2439708:1179648,16384,0 ) ) -k1,24214:3078556,2439708:-34777008 +k1,24212:3078556,2439708:-34777008 ) ] -[1,24214:3078558,4812305:0,0,0 -(1,24214:3078558,49800853:0,16384,2228224 -k1,24214:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24214:2537886,49800853:1179648,16384,0 +[1,24212:3078558,4812305:0,0,0 +(1,24212:3078558,49800853:0,16384,2228224 +k1,24212:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24212:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24214:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24212:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24214:3078558,4812305:0,0,0 -(1,24214:3078558,49800853:0,16384,2228224 -g1,24214:29030814,49800853 -g1,24214:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24214:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24214:37855564,49800853:1179648,16384,0 -) -) -k1,24214:3078556,49800853:-34777008 -) -] -g1,24214:6630773,4812305 -g1,24214:6630773,4812305 -g1,24214:10349285,4812305 -k1,24214:31387653,4812305:21038368 -) -) -] -[1,24214:6630773,45706769:25952256,40108032,0 -(1,24214:6630773,45706769:25952256,40108032,0 -(1,24214:6630773,45706769:0,0,0 -g1,24214:6630773,45706769 -) -[1,24214:6630773,45706769:25952256,40108032,0 -(1,24170:6630773,6254097:25952256,505283,126483 -k1,24169:8837206,6254097:199721 -k1,24169:10321433,6254097:199721 -k1,24169:11677864,6254097:199721 -k1,24169:13499600,6254097:199720 -k1,24169:15842348,6254097:199721 -k1,24169:17326575,6254097:199721 -k1,24169:20744769,6254097:199721 -k1,24169:22135935,6254097:199721 -k1,24169:24819471,6254097:199721 -k1,24169:27006243,6254097:199720 -k1,24169:29187117,6254097:199721 -k1,24169:30405923,6254097:199721 -k1,24170:32583029,6254097:0 -) -(1,24170:6630773,7119177:25952256,513147,126483 -k1,24169:8831875,7119177:247474 -k1,24169:9738641,7119177:247474 -k1,24169:11005200,7119177:247474 -k1,24169:14278470,7119177:247473 -k1,24169:16212841,7119177:247474 -k1,24169:17841159,7119177:247474 -k1,24169:21073143,7119177:247474 -k1,24169:21852114,7119177:247474 -k1,24169:23165859,7119177:247474 -k1,24169:24943598,7119177:247473 -k1,24169:26758693,7119177:247474 -k1,24169:28025252,7119177:247474 -k1,24169:31923737,7119177:247474 -k1,24169:32583029,7119177:0 -) -(1,24170:6630773,7984257:25952256,513147,134348 -k1,24169:8952441,7984257:203544 -k1,24169:9807412,7984257:203543 -k1,24169:11940336,7984257:203544 -k1,24169:16201868,7984257:203543 -(1,24169:16201868,7984257:0,414482,115847 -r1,24214:17263557,7984257:1061689,530329,115847 -k1,24169:16201868,7984257:-1061689 -) -(1,24169:16201868,7984257:1061689,414482,115847 -k1,24169:16201868,7984257:3277 -h1,24169:17260280,7984257:0,411205,112570 -) -k1,24169:17467101,7984257:203544 -k1,24169:20876011,7984257:203544 -k1,24169:22305733,7984257:203543 -k1,24169:23996289,7984257:203544 -k1,24169:24687416,7984257:203539 -k1,24169:26788227,7984257:203544 -k1,24169:29976280,7984257:203543 -k1,24169:30884991,7984257:203544 -k1,24169:32583029,7984257:0 -) -(1,24170:6630773,8849337:25952256,513147,126483 -g1,24169:9456030,8849337 -g1,24169:10306687,8849337 -g1,24169:12687610,8849337 -g1,24169:13905924,8849337 -g1,24169:15494516,8849337 -g1,24169:18108091,8849337 -g1,24169:19874941,8849337 -g1,24169:21093255,8849337 -g1,24169:24470980,8849337 -g1,24169:25353094,8849337 -g1,24169:29175809,8849337 -g1,24169:30642504,8849337 -k1,24170:32583029,8849337:1473254 -g1,24170:32583029,8849337 -) -(1,24171:6630773,10966155:25952256,555811,12975 -(1,24171:6630773,10966155:2899444,534184,12975 -g1,24171:6630773,10966155 -g1,24171:9530217,10966155 -) -k1,24171:32583029,10966155:20358824 -g1,24171:32583029,10966155 -) -(1,24177:6630773,12224451:25952256,513147,134348 -k1,24176:9496808,12224451:331102 -k1,24176:12174099,12224451:331103 -k1,24176:15361915,12224451:331102 -k1,24176:18095568,12224451:331103 -k1,24176:19093826,12224451:331102 -k1,24176:22202345,12224451:331103 -k1,24176:26215915,12224451:331102 -k1,24176:27738463,12224451:331103 -k1,24176:30880404,12224451:331102 -k1,24177:32583029,12224451:0 -) -(1,24177:6630773,13089531:25952256,513147,134348 -k1,24176:8897773,13089531:239971 -k1,24176:10329189,13089531:239971 -k1,24176:12919936,13089531:239971 -k1,24176:15169895,13089531:239970 -k1,24176:19033352,13089531:239971 -k1,24176:22105134,13089531:239971 -k1,24176:22961143,13089531:239971 -k1,24176:24769391,13089531:239971 -k1,24176:27211372,13089531:239971 -k1,24176:28102770,13089531:239970 -k1,24176:30086654,13089531:239971 -k1,24176:31839851,13089531:239971 -k1,24177:32583029,13089531:0 -) -(1,24177:6630773,13954611:25952256,513147,134348 -k1,24176:9676887,13954611:268698 -k1,24176:11724886,13954611:268697 -k1,24176:13190271,13954611:268698 -k1,24176:16269152,13954611:268697 -k1,24176:17069347,13954611:268698 -k1,24176:19636392,13954611:268697 -k1,24176:21096535,13954611:268698 -k1,24176:22384317,13954611:268697 -k1,24176:25233167,13954611:268698 -k1,24176:26896470,13954611:268697 -k1,24176:27816596,13954611:268698 -k1,24176:30228320,13954611:268697 -k1,24176:31450567,13954611:268698 -k1,24176:32583029,13954611:0 -) -(1,24177:6630773,14819691:25952256,513147,126483 -g1,24176:9011696,14819691 -g1,24176:9566785,14819691 -g1,24176:10749054,14819691 -g1,24176:12232789,14819691 -g1,24176:13048056,14819691 -g1,24176:16024701,14819691 -g1,24176:17940973,14819691 -g1,24176:19286427,14819691 -g1,24176:20504741,14819691 -g1,24176:22765733,14819691 -g1,24176:25382585,14819691 -k1,24177:32583029,14819691:5279584 -g1,24177:32583029,14819691 -) -(1,24180:6630773,31077521:25952256,15410451,0 -k1,24180:9874805,31077521:3244032 -(1,24178:9874805,31077521:0,0,0 -g1,24178:9874805,31077521 -g1,24178:9874805,31077521 -g1,24178:9547125,31077521 -(1,24178:9547125,31077521:0,0,0 -) -g1,24178:9874805,31077521 -) -(1,24179:9874805,31077521:19464192,15410451,0 -) -g1,24180:29338997,31077521 -k1,24180:32583029,31077521:3244032 -) -(1,24183:6630773,32597961:25952256,505283,115847 -h1,24182:6630773,32597961:983040,0,0 -g1,24182:10602910,32597961 -(1,24182:10602910,32597961:0,452978,115847 -r1,24214:15533430,32597961:4930520,568825,115847 -k1,24182:10602910,32597961:-4930520 -) -(1,24182:10602910,32597961:4930520,452978,115847 -k1,24182:10602910,32597961:3277 -h1,24182:15530153,32597961:0,411205,112570 -) -g1,24182:15732659,32597961 -g1,24182:17255715,32597961 -g1,24182:18474029,32597961 -g1,24182:20700287,32597961 -g1,24182:24039346,32597961 -g1,24182:24854613,32597961 -g1,24182:26072927,32597961 -k1,24183:32583029,32597961:3279177 -g1,24183:32583029,32597961 -) -v1,24185:6630773,33282816:0,393216,0 -(1,24193:6630773,35117675:25952256,2228075,196608 -g1,24193:6630773,35117675 -g1,24193:6630773,35117675 -g1,24193:6434165,35117675 -(1,24193:6434165,35117675:0,2228075,196608 -r1,24214:32779637,35117675:26345472,2424683,196608 -k1,24193:6434165,35117675:-26345472 -) -(1,24193:6434165,35117675:26345472,2228075,196608 -[1,24193:6630773,35117675:25952256,2031467,0 -(1,24187:6630773,33510647:25952256,424439,79822 -(1,24186:6630773,33510647:0,0,0 -g1,24186:6630773,33510647 -g1,24186:6630773,33510647 -g1,24186:6303093,33510647 -(1,24186:6303093,33510647:0,0,0 -) -g1,24186:6630773,33510647 -) -g1,24187:8954451,33510647 -g1,24187:9950313,33510647 -k1,24187:9950313,33510647:0 -h1,24187:21236747,33510647:0,0,0 -k1,24187:32583029,33510647:11346282 -g1,24187:32583029,33510647 -) -(1,24188:6630773,34195502:25952256,424439,6605 -h1,24188:6630773,34195502:0,0,0 -h1,24188:8622497,34195502:0,0,0 -k1,24188:32583029,34195502:23960532 -g1,24188:32583029,34195502 -) -(1,24192:6630773,35011429:25952256,424439,106246 -(1,24190:6630773,35011429:0,0,0 -g1,24190:6630773,35011429 -g1,24190:6630773,35011429 -g1,24190:6303093,35011429 -(1,24190:6303093,35011429:0,0,0 -) -g1,24190:6630773,35011429 -) -g1,24192:7626635,35011429 -g1,24192:8954451,35011429 -g1,24192:10282267,35011429 -h1,24192:11942037,35011429:0,0,0 -k1,24192:32583029,35011429:20640992 -g1,24192:32583029,35011429 -) -] -) -g1,24193:32583029,35117675 -g1,24193:6630773,35117675 -g1,24193:6630773,35117675 -g1,24193:32583029,35117675 -g1,24193:32583029,35117675 -) -h1,24193:6630773,35314283:0,0,0 -(1,24197:6630773,36179363:25952256,505283,134348 -h1,24196:6630773,36179363:983040,0,0 -k1,24196:8399487,36179363:157839 -k1,24196:9760567,36179363:157839 -k1,24196:11459157,36179363:157839 -k1,24196:12636081,36179363:157839 -k1,24196:15866248,36179363:157839 -k1,24196:18229374,36179363:157839 -k1,24196:19038641,36179363:157839 -(1,24196:19038641,36179363:0,452978,115847 -r1,24214:20803754,36179363:1765113,568825,115847 -k1,24196:19038641,36179363:-1765113 -) -(1,24196:19038641,36179363:1765113,452978,115847 -k1,24196:19038641,36179363:3277 -h1,24196:20800477,36179363:0,411205,112570 -) -k1,24196:20961594,36179363:157840 -k1,24196:21650930,36179363:157839 -k1,24196:25316911,36179363:157839 -k1,24196:26160912,36179363:157839 -k1,24196:27973535,36179363:157839 -k1,24196:28662871,36179363:157839 -k1,24196:30196311,36179363:157839 -k1,24196:30710010,36179363:157839 -k1,24196:32583029,36179363:0 -) -(1,24197:6630773,37044443:25952256,513147,126483 -k1,24196:10033981,37044443:136238 -k1,24196:10786257,37044443:136238 -k1,24196:11941579,37044443:136237 -k1,24196:13234527,37044443:136238 -k1,24196:13840658,37044443:136238 -k1,24196:14508393,37044443:136238 -k1,24196:17274590,37044443:136237 -k1,24196:18062256,37044443:136238 -k1,24196:19290979,37044443:136238 -k1,24196:21283197,37044443:136238 -k1,24196:22438519,37044443:136237 -k1,24196:24312772,37044443:136238 -k1,24196:25108302,37044443:136238 -k1,24196:26263625,37044443:136238 -k1,24196:28096589,37044443:136237 -k1,24196:28915712,37044443:136238 -k1,24196:29407810,37044443:136238 -k1,24196:32583029,37044443:0 -) -(1,24197:6630773,37909523:25952256,505283,126483 -k1,24196:8672771,37909523:292842 -k1,24196:9788746,37909523:292843 -k1,24196:11284829,37909523:292842 -k1,24196:12944753,37909523:292843 -(1,24196:12944753,37909523:0,435480,115847 -r1,24214:13303019,37909523:358266,551327,115847 -k1,24196:12944753,37909523:-358266 -) -(1,24196:12944753,37909523:358266,435480,115847 -k1,24196:12944753,37909523:3277 -h1,24196:13299742,37909523:0,411205,112570 -) -k1,24196:13595861,37909523:292842 -k1,24196:15844954,37909523:292843 -k1,24196:16885562,37909523:292842 -k1,24196:20483386,37909523:292843 -k1,24196:21427656,37909523:292842 -(1,24196:21427656,37909523:0,452978,115847 -r1,24214:24599616,37909523:3171960,568825,115847 -k1,24196:21427656,37909523:-3171960 -) -(1,24196:21427656,37909523:3171960,452978,115847 -g1,24196:22837780,37909523 -h1,24196:24596339,37909523:0,411205,112570 -) -k1,24196:25273223,37909523:292843 -k1,24196:28355933,37909523:292842 -(1,24196:28355933,37909523:0,452978,115847 -r1,24214:32583029,37909523:4227096,568825,115847 -k1,24196:28355933,37909523:-4227096 -) -(1,24196:28355933,37909523:4227096,452978,115847 -k1,24196:28355933,37909523:3277 -h1,24196:32579752,37909523:0,411205,112570 -) -k1,24196:32583029,37909523:0 -) -(1,24197:6630773,38774603:25952256,513147,134348 -k1,24196:8238523,38774603:240013 -k1,24196:9287906,38774603:240013 -k1,24196:11308532,38774603:240013 -k1,24196:15569178,38774603:240012 -k1,24196:18321186,38774603:240013 -k1,24196:19580284,38774603:240013 -k1,24196:21703146,38774603:240013 -k1,24196:25236343,38774603:240013 -k1,24196:26743822,38774603:240013 -k1,24196:27339694,38774603:240012 -k1,24196:29564793,38774603:240013 -k1,24196:30490968,38774603:240013 -k1,24196:31835263,38774603:240013 -k1,24196:32583029,38774603:0 -) -(1,24197:6630773,39639683:25952256,513147,134348 -g1,24196:9669022,39639683 -g1,24196:11435872,39639683 -g1,24196:11990961,39639683 -g1,24196:14770342,39639683 -g1,24196:17727981,39639683 -g1,24196:18543248,39639683 -g1,24196:19761562,39639683 -k1,24197:32583029,39639683:9561052 -g1,24197:32583029,39639683 -) -v1,24199:6630773,40324538:0,393216,0 -(1,24214:6630773,45493940:25952256,5562618,196608 -g1,24214:6630773,45493940 -g1,24214:6630773,45493940 -g1,24214:6434165,45493940 -(1,24214:6434165,45493940:0,5562618,196608 -r1,24214:32779637,45493940:26345472,5759226,196608 -k1,24214:6434165,45493940:-26345472 -) -(1,24214:6434165,45493940:26345472,5562618,196608 -[1,24214:6630773,45493940:25952256,5366010,0 -(1,24201:6630773,40558975:25952256,431045,86428 -(1,24200:6630773,40558975:0,0,0 -g1,24200:6630773,40558975 -g1,24200:6630773,40558975 -g1,24200:6303093,40558975 -(1,24200:6303093,40558975:0,0,0 -) -g1,24200:6630773,40558975 -) -g1,24201:9618358,40558975 -g1,24201:10614220,40558975 -k1,24201:10614220,40558975:0 -h1,24201:21236746,40558975:0,0,0 -k1,24201:32583029,40558975:11346283 -g1,24201:32583029,40558975 -) -(1,24202:6630773,41243830:25952256,424439,106246 -h1,24202:6630773,41243830:0,0,0 -g1,24202:6962727,41243830 -g1,24202:7294681,41243830 -g1,24202:7626635,41243830 -g1,24202:7958589,41243830 -g1,24202:8290543,41243830 -g1,24202:8622497,41243830 -g1,24202:8954451,41243830 -g1,24202:9286405,41243830 -g1,24202:9618359,41243830 -g1,24202:9950313,41243830 -g1,24202:10282267,41243830 -g1,24202:10614221,41243830 -g1,24202:10946175,41243830 -g1,24202:11278129,41243830 -g1,24202:11610083,41243830 -g1,24202:11942037,41243830 -g1,24202:12273991,41243830 -g1,24202:12605945,41243830 -g1,24202:12937899,41243830 -g1,24202:13269853,41243830 -g1,24202:13601807,41243830 -g1,24202:13933761,41243830 -g1,24202:14265715,41243830 -g1,24202:16257439,41243830 -g1,24202:16921347,41243830 -g1,24202:18249163,41243830 -h1,24202:20240887,41243830:0,0,0 -k1,24202:32583029,41243830:12342142 -g1,24202:32583029,41243830 -) -(1,24203:6630773,41928685:25952256,431045,6605 -h1,24203:6630773,41928685:0,0,0 -h1,24203:9286404,41928685:0,0,0 -k1,24203:32583028,41928685:23296624 -g1,24203:32583028,41928685 -) -(1,24213:6630773,42744612:25952256,424439,9908 -(1,24205:6630773,42744612:0,0,0 -g1,24205:6630773,42744612 -g1,24205:6630773,42744612 -g1,24205:6303093,42744612 -(1,24205:6303093,42744612:0,0,0 -) -g1,24205:6630773,42744612 -) -g1,24213:7626635,42744612 -g1,24213:8290543,42744612 -g1,24213:8954451,42744612 -g1,24213:11610083,42744612 -g1,24213:12605945,42744612 -g1,24213:13269853,42744612 -h1,24213:13601807,42744612:0,0,0 -k1,24213:32583029,42744612:18981222 -g1,24213:32583029,42744612 -) -(1,24213:6630773,43429467:25952256,424439,112852 -h1,24213:6630773,43429467:0,0,0 -g1,24213:7626635,43429467 -g1,24213:7958589,43429467 -g1,24213:8290543,43429467 -g1,24213:10614221,43429467 -g1,24213:12605945,43429467 -h1,24213:16257438,43429467:0,0,0 -k1,24213:32583029,43429467:16325591 -g1,24213:32583029,43429467 -) -(1,24213:6630773,44114322:25952256,424439,6605 -h1,24213:6630773,44114322:0,0,0 -g1,24213:7626635,44114322 -g1,24213:7958589,44114322 -g1,24213:8290543,44114322 -g1,24213:8622497,44114322 -g1,24213:10614221,44114322 -g1,24213:12605945,44114322 -g1,24213:12937899,44114322 -g1,24213:13269853,44114322 -g1,24213:13601807,44114322 -g1,24213:13933761,44114322 -g1,24213:14265715,44114322 -g1,24213:14597669,44114322 -k1,24213:14597669,44114322:0 -h1,24213:16257439,44114322:0,0,0 -k1,24213:32583029,44114322:16325590 -g1,24213:32583029,44114322 -) -(1,24213:6630773,44799177:25952256,407923,4954 -h1,24213:6630773,44799177:0,0,0 -g1,24213:7626635,44799177 -g1,24213:8290543,44799177 -g1,24213:8622497,44799177 -g1,24213:8954451,44799177 -g1,24213:9286405,44799177 -g1,24213:9618359,44799177 -g1,24213:9950313,44799177 -g1,24213:10614221,44799177 -g1,24213:11278129,44799177 -g1,24213:11610083,44799177 -g1,24213:11942037,44799177 -g1,24213:12273991,44799177 -g1,24213:12605945,44799177 -g1,24213:12937899,44799177 -g1,24213:13269853,44799177 -g1,24213:13601807,44799177 -g1,24213:13933761,44799177 -g1,24213:14265715,44799177 -g1,24213:14597669,44799177 -g1,24213:14929623,44799177 -g1,24213:15261577,44799177 -g1,24213:15593531,44799177 -g1,24213:15925485,44799177 -h1,24213:16257439,44799177:0,0,0 -k1,24213:32583029,44799177:16325590 -g1,24213:32583029,44799177 -) -(1,24213:6630773,45484032:25952256,407923,9908 -h1,24213:6630773,45484032:0,0,0 -g1,24213:7626635,45484032 -g1,24213:8290543,45484032 -g1,24213:8622497,45484032 -g1,24213:8954451,45484032 -g1,24213:9286405,45484032 -g1,24213:9618359,45484032 -g1,24213:9950313,45484032 -g1,24213:10614221,45484032 -g1,24213:11278129,45484032 -g1,24213:11610083,45484032 -g1,24213:11942037,45484032 -g1,24213:12273991,45484032 -g1,24213:12605945,45484032 -g1,24213:12937899,45484032 -g1,24213:13269853,45484032 -g1,24213:13601807,45484032 -g1,24213:13933761,45484032 -g1,24213:14265715,45484032 -g1,24213:14597669,45484032 -g1,24213:14929623,45484032 -g1,24213:15261577,45484032 -g1,24213:15593531,45484032 -g1,24213:15925485,45484032 -h1,24213:16257439,45484032:0,0,0 -k1,24213:32583029,45484032:16325590 -g1,24213:32583029,45484032 -) -] -) -g1,24214:32583029,45493940 -g1,24214:6630773,45493940 -g1,24214:6630773,45493940 -g1,24214:32583029,45493940 -g1,24214:32583029,45493940 -) -] -(1,24214:32583029,45706769:0,0,0 -g1,24214:32583029,45706769 -) -) -] -(1,24214:6630773,47279633:25952256,0,0 -h1,24214:6630773,47279633:25952256,0,0 -) -] -(1,24214:4262630,4025873:0,0,0 -[1,24214:-473656,4025873:0,0,0 -(1,24214:-473656,-710413:0,0,0 -(1,24214:-473656,-710413:0,0,0 -g1,24214:-473656,-710413 -) -g1,24214:-473656,-710413 +[1,24212:3078558,4812305:0,0,0 +(1,24212:3078558,49800853:0,16384,2228224 +g1,24212:29030814,49800853 +g1,24212:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24212:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24212:37855564,49800853:1179648,16384,0 +) +) +k1,24212:3078556,49800853:-34777008 +) +] +g1,24212:6630773,4812305 +g1,24212:6630773,4812305 +g1,24212:10349285,4812305 +k1,24212:31387653,4812305:21038368 +) +) +] +[1,24212:6630773,45706769:25952256,40108032,0 +(1,24212:6630773,45706769:25952256,40108032,0 +(1,24212:6630773,45706769:0,0,0 +g1,24212:6630773,45706769 +) +[1,24212:6630773,45706769:25952256,40108032,0 +(1,24168:6630773,6254097:25952256,505283,126483 +k1,24167:8837206,6254097:199721 +k1,24167:10321433,6254097:199721 +k1,24167:11677864,6254097:199721 +k1,24167:13499600,6254097:199720 +k1,24167:15842348,6254097:199721 +k1,24167:17326575,6254097:199721 +k1,24167:20744769,6254097:199721 +k1,24167:22135935,6254097:199721 +k1,24167:24819471,6254097:199721 +k1,24167:27006243,6254097:199720 +k1,24167:29187117,6254097:199721 +k1,24167:30405923,6254097:199721 +k1,24168:32583029,6254097:0 +) +(1,24168:6630773,7119177:25952256,513147,126483 +k1,24167:8831875,7119177:247474 +k1,24167:9738641,7119177:247474 +k1,24167:11005200,7119177:247474 +k1,24167:14278470,7119177:247473 +k1,24167:16212841,7119177:247474 +k1,24167:17841159,7119177:247474 +k1,24167:21073143,7119177:247474 +k1,24167:21852114,7119177:247474 +k1,24167:23165859,7119177:247474 +k1,24167:24943598,7119177:247473 +k1,24167:26758693,7119177:247474 +k1,24167:28025252,7119177:247474 +k1,24167:31923737,7119177:247474 +k1,24167:32583029,7119177:0 +) +(1,24168:6630773,7984257:25952256,513147,134348 +k1,24167:8952441,7984257:203544 +k1,24167:9807412,7984257:203543 +k1,24167:11940336,7984257:203544 +k1,24167:16201868,7984257:203543 +(1,24167:16201868,7984257:0,414482,115847 +r1,24212:17263557,7984257:1061689,530329,115847 +k1,24167:16201868,7984257:-1061689 +) +(1,24167:16201868,7984257:1061689,414482,115847 +k1,24167:16201868,7984257:3277 +h1,24167:17260280,7984257:0,411205,112570 +) +k1,24167:17467101,7984257:203544 +k1,24167:20876011,7984257:203544 +k1,24167:22305733,7984257:203543 +k1,24167:23996289,7984257:203544 +k1,24167:24687416,7984257:203539 +k1,24167:26788227,7984257:203544 +k1,24167:29976280,7984257:203543 +k1,24167:30884991,7984257:203544 +k1,24167:32583029,7984257:0 +) +(1,24168:6630773,8849337:25952256,513147,126483 +g1,24167:9456030,8849337 +g1,24167:10306687,8849337 +g1,24167:12687610,8849337 +g1,24167:13905924,8849337 +g1,24167:15494516,8849337 +g1,24167:18108091,8849337 +g1,24167:19874941,8849337 +g1,24167:21093255,8849337 +g1,24167:24470980,8849337 +g1,24167:25353094,8849337 +g1,24167:29175809,8849337 +g1,24167:30642504,8849337 +k1,24168:32583029,8849337:1473254 +g1,24168:32583029,8849337 +) +(1,24169:6630773,10966155:25952256,555811,12975 +(1,24169:6630773,10966155:2899444,534184,12975 +g1,24169:6630773,10966155 +g1,24169:9530217,10966155 +) +k1,24169:32583029,10966155:20358824 +g1,24169:32583029,10966155 +) +(1,24175:6630773,12224451:25952256,513147,134348 +k1,24174:9496808,12224451:331102 +k1,24174:12174099,12224451:331103 +k1,24174:15361915,12224451:331102 +k1,24174:18095568,12224451:331103 +k1,24174:19093826,12224451:331102 +k1,24174:22202345,12224451:331103 +k1,24174:26215915,12224451:331102 +k1,24174:27738463,12224451:331103 +k1,24174:30880404,12224451:331102 +k1,24175:32583029,12224451:0 +) +(1,24175:6630773,13089531:25952256,513147,134348 +k1,24174:8897773,13089531:239971 +k1,24174:10329189,13089531:239971 +k1,24174:12919936,13089531:239971 +k1,24174:15169895,13089531:239970 +k1,24174:19033352,13089531:239971 +k1,24174:22105134,13089531:239971 +k1,24174:22961143,13089531:239971 +k1,24174:24769391,13089531:239971 +k1,24174:27211372,13089531:239971 +k1,24174:28102770,13089531:239970 +k1,24174:30086654,13089531:239971 +k1,24174:31839851,13089531:239971 +k1,24175:32583029,13089531:0 +) +(1,24175:6630773,13954611:25952256,513147,134348 +k1,24174:9676887,13954611:268698 +k1,24174:11724886,13954611:268697 +k1,24174:13190271,13954611:268698 +k1,24174:16269152,13954611:268697 +k1,24174:17069347,13954611:268698 +k1,24174:19636392,13954611:268697 +k1,24174:21096535,13954611:268698 +k1,24174:22384317,13954611:268697 +k1,24174:25233167,13954611:268698 +k1,24174:26896470,13954611:268697 +k1,24174:27816596,13954611:268698 +k1,24174:30228320,13954611:268697 +k1,24174:31450567,13954611:268698 +k1,24174:32583029,13954611:0 +) +(1,24175:6630773,14819691:25952256,513147,126483 +g1,24174:9011696,14819691 +g1,24174:9566785,14819691 +g1,24174:10749054,14819691 +g1,24174:12232789,14819691 +g1,24174:13048056,14819691 +g1,24174:16024701,14819691 +g1,24174:17940973,14819691 +g1,24174:19286427,14819691 +g1,24174:20504741,14819691 +g1,24174:22765733,14819691 +g1,24174:25382585,14819691 +k1,24175:32583029,14819691:5279584 +g1,24175:32583029,14819691 +) +(1,24178:6630773,31077521:25952256,15410451,0 +k1,24178:9874805,31077521:3244032 +(1,24176:9874805,31077521:0,0,0 +g1,24176:9874805,31077521 +g1,24176:9874805,31077521 +g1,24176:9547125,31077521 +(1,24176:9547125,31077521:0,0,0 +) +g1,24176:9874805,31077521 +) +(1,24177:9874805,31077521:19464192,15410451,0 +) +g1,24178:29338997,31077521 +k1,24178:32583029,31077521:3244032 +) +(1,24181:6630773,32597961:25952256,505283,115847 +h1,24180:6630773,32597961:983040,0,0 +g1,24180:10602910,32597961 +(1,24180:10602910,32597961:0,452978,115847 +r1,24212:15533430,32597961:4930520,568825,115847 +k1,24180:10602910,32597961:-4930520 +) +(1,24180:10602910,32597961:4930520,452978,115847 +k1,24180:10602910,32597961:3277 +h1,24180:15530153,32597961:0,411205,112570 +) +g1,24180:15732659,32597961 +g1,24180:17255715,32597961 +g1,24180:18474029,32597961 +g1,24180:20700287,32597961 +g1,24180:24039346,32597961 +g1,24180:24854613,32597961 +g1,24180:26072927,32597961 +k1,24181:32583029,32597961:3279177 +g1,24181:32583029,32597961 +) +v1,24183:6630773,33282816:0,393216,0 +(1,24191:6630773,35117675:25952256,2228075,196608 +g1,24191:6630773,35117675 +g1,24191:6630773,35117675 +g1,24191:6434165,35117675 +(1,24191:6434165,35117675:0,2228075,196608 +r1,24212:32779637,35117675:26345472,2424683,196608 +k1,24191:6434165,35117675:-26345472 +) +(1,24191:6434165,35117675:26345472,2228075,196608 +[1,24191:6630773,35117675:25952256,2031467,0 +(1,24185:6630773,33510647:25952256,424439,79822 +(1,24184:6630773,33510647:0,0,0 +g1,24184:6630773,33510647 +g1,24184:6630773,33510647 +g1,24184:6303093,33510647 +(1,24184:6303093,33510647:0,0,0 +) +g1,24184:6630773,33510647 +) +g1,24185:8954451,33510647 +g1,24185:9950313,33510647 +k1,24185:9950313,33510647:0 +h1,24185:21236747,33510647:0,0,0 +k1,24185:32583029,33510647:11346282 +g1,24185:32583029,33510647 +) +(1,24186:6630773,34195502:25952256,424439,6605 +h1,24186:6630773,34195502:0,0,0 +h1,24186:8622497,34195502:0,0,0 +k1,24186:32583029,34195502:23960532 +g1,24186:32583029,34195502 +) +(1,24190:6630773,35011429:25952256,424439,106246 +(1,24188:6630773,35011429:0,0,0 +g1,24188:6630773,35011429 +g1,24188:6630773,35011429 +g1,24188:6303093,35011429 +(1,24188:6303093,35011429:0,0,0 +) +g1,24188:6630773,35011429 +) +g1,24190:7626635,35011429 +g1,24190:8954451,35011429 +g1,24190:10282267,35011429 +h1,24190:11942037,35011429:0,0,0 +k1,24190:32583029,35011429:20640992 +g1,24190:32583029,35011429 +) +] +) +g1,24191:32583029,35117675 +g1,24191:6630773,35117675 +g1,24191:6630773,35117675 +g1,24191:32583029,35117675 +g1,24191:32583029,35117675 +) +h1,24191:6630773,35314283:0,0,0 +(1,24195:6630773,36179363:25952256,505283,134348 +h1,24194:6630773,36179363:983040,0,0 +k1,24194:8399487,36179363:157839 +k1,24194:9760567,36179363:157839 +k1,24194:11459157,36179363:157839 +k1,24194:12636081,36179363:157839 +k1,24194:15866248,36179363:157839 +k1,24194:18229374,36179363:157839 +k1,24194:19038641,36179363:157839 +(1,24194:19038641,36179363:0,452978,115847 +r1,24212:20803754,36179363:1765113,568825,115847 +k1,24194:19038641,36179363:-1765113 +) +(1,24194:19038641,36179363:1765113,452978,115847 +k1,24194:19038641,36179363:3277 +h1,24194:20800477,36179363:0,411205,112570 +) +k1,24194:20961594,36179363:157840 +k1,24194:21650930,36179363:157839 +k1,24194:25316911,36179363:157839 +k1,24194:26160912,36179363:157839 +k1,24194:27973535,36179363:157839 +k1,24194:28662871,36179363:157839 +k1,24194:30196311,36179363:157839 +k1,24194:30710010,36179363:157839 +k1,24194:32583029,36179363:0 +) +(1,24195:6630773,37044443:25952256,513147,126483 +k1,24194:10033981,37044443:136238 +k1,24194:10786257,37044443:136238 +k1,24194:11941579,37044443:136237 +k1,24194:13234527,37044443:136238 +k1,24194:13840658,37044443:136238 +k1,24194:14508393,37044443:136238 +k1,24194:17274590,37044443:136237 +k1,24194:18062256,37044443:136238 +k1,24194:19290979,37044443:136238 +k1,24194:21283197,37044443:136238 +k1,24194:22438519,37044443:136237 +k1,24194:24312772,37044443:136238 +k1,24194:25108302,37044443:136238 +k1,24194:26263625,37044443:136238 +k1,24194:28096589,37044443:136237 +k1,24194:28915712,37044443:136238 +k1,24194:29407810,37044443:136238 +k1,24194:32583029,37044443:0 +) +(1,24195:6630773,37909523:25952256,505283,126483 +k1,24194:8672771,37909523:292842 +k1,24194:9788746,37909523:292843 +k1,24194:11284829,37909523:292842 +k1,24194:12944753,37909523:292843 +(1,24194:12944753,37909523:0,435480,115847 +r1,24212:13303019,37909523:358266,551327,115847 +k1,24194:12944753,37909523:-358266 +) +(1,24194:12944753,37909523:358266,435480,115847 +k1,24194:12944753,37909523:3277 +h1,24194:13299742,37909523:0,411205,112570 +) +k1,24194:13595861,37909523:292842 +k1,24194:15844954,37909523:292843 +k1,24194:16885562,37909523:292842 +k1,24194:20483386,37909523:292843 +k1,24194:21427656,37909523:292842 +(1,24194:21427656,37909523:0,452978,115847 +r1,24212:24599616,37909523:3171960,568825,115847 +k1,24194:21427656,37909523:-3171960 +) +(1,24194:21427656,37909523:3171960,452978,115847 +g1,24194:22837780,37909523 +h1,24194:24596339,37909523:0,411205,112570 +) +k1,24194:25273223,37909523:292843 +k1,24194:28355933,37909523:292842 +(1,24194:28355933,37909523:0,452978,115847 +r1,24212:32583029,37909523:4227096,568825,115847 +k1,24194:28355933,37909523:-4227096 +) +(1,24194:28355933,37909523:4227096,452978,115847 +k1,24194:28355933,37909523:3277 +h1,24194:32579752,37909523:0,411205,112570 +) +k1,24194:32583029,37909523:0 +) +(1,24195:6630773,38774603:25952256,513147,134348 +k1,24194:8238523,38774603:240013 +k1,24194:9287906,38774603:240013 +k1,24194:11308532,38774603:240013 +k1,24194:15569178,38774603:240012 +k1,24194:18321186,38774603:240013 +k1,24194:19580284,38774603:240013 +k1,24194:21703146,38774603:240013 +k1,24194:25236343,38774603:240013 +k1,24194:26743822,38774603:240013 +k1,24194:27339694,38774603:240012 +k1,24194:29564793,38774603:240013 +k1,24194:30490968,38774603:240013 +k1,24194:31835263,38774603:240013 +k1,24194:32583029,38774603:0 +) +(1,24195:6630773,39639683:25952256,513147,134348 +g1,24194:9669022,39639683 +g1,24194:11435872,39639683 +g1,24194:11990961,39639683 +g1,24194:14770342,39639683 +g1,24194:17727981,39639683 +g1,24194:18543248,39639683 +g1,24194:19761562,39639683 +k1,24195:32583029,39639683:9561052 +g1,24195:32583029,39639683 +) +v1,24197:6630773,40324538:0,393216,0 +(1,24212:6630773,45493940:25952256,5562618,196608 +g1,24212:6630773,45493940 +g1,24212:6630773,45493940 +g1,24212:6434165,45493940 +(1,24212:6434165,45493940:0,5562618,196608 +r1,24212:32779637,45493940:26345472,5759226,196608 +k1,24212:6434165,45493940:-26345472 +) +(1,24212:6434165,45493940:26345472,5562618,196608 +[1,24212:6630773,45493940:25952256,5366010,0 +(1,24199:6630773,40558975:25952256,431045,86428 +(1,24198:6630773,40558975:0,0,0 +g1,24198:6630773,40558975 +g1,24198:6630773,40558975 +g1,24198:6303093,40558975 +(1,24198:6303093,40558975:0,0,0 +) +g1,24198:6630773,40558975 +) +g1,24199:9618358,40558975 +g1,24199:10614220,40558975 +k1,24199:10614220,40558975:0 +h1,24199:21236746,40558975:0,0,0 +k1,24199:32583029,40558975:11346283 +g1,24199:32583029,40558975 +) +(1,24200:6630773,41243830:25952256,424439,106246 +h1,24200:6630773,41243830:0,0,0 +g1,24200:6962727,41243830 +g1,24200:7294681,41243830 +g1,24200:7626635,41243830 +g1,24200:7958589,41243830 +g1,24200:8290543,41243830 +g1,24200:8622497,41243830 +g1,24200:8954451,41243830 +g1,24200:9286405,41243830 +g1,24200:9618359,41243830 +g1,24200:9950313,41243830 +g1,24200:10282267,41243830 +g1,24200:10614221,41243830 +g1,24200:10946175,41243830 +g1,24200:11278129,41243830 +g1,24200:11610083,41243830 +g1,24200:11942037,41243830 +g1,24200:12273991,41243830 +g1,24200:12605945,41243830 +g1,24200:12937899,41243830 +g1,24200:13269853,41243830 +g1,24200:13601807,41243830 +g1,24200:13933761,41243830 +g1,24200:14265715,41243830 +g1,24200:16257439,41243830 +g1,24200:16921347,41243830 +g1,24200:18249163,41243830 +h1,24200:20240887,41243830:0,0,0 +k1,24200:32583029,41243830:12342142 +g1,24200:32583029,41243830 +) +(1,24201:6630773,41928685:25952256,431045,6605 +h1,24201:6630773,41928685:0,0,0 +h1,24201:9286404,41928685:0,0,0 +k1,24201:32583028,41928685:23296624 +g1,24201:32583028,41928685 +) +(1,24211:6630773,42744612:25952256,424439,9908 +(1,24203:6630773,42744612:0,0,0 +g1,24203:6630773,42744612 +g1,24203:6630773,42744612 +g1,24203:6303093,42744612 +(1,24203:6303093,42744612:0,0,0 +) +g1,24203:6630773,42744612 +) +g1,24211:7626635,42744612 +g1,24211:8290543,42744612 +g1,24211:8954451,42744612 +g1,24211:11610083,42744612 +g1,24211:12605945,42744612 +g1,24211:13269853,42744612 +h1,24211:13601807,42744612:0,0,0 +k1,24211:32583029,42744612:18981222 +g1,24211:32583029,42744612 +) +(1,24211:6630773,43429467:25952256,424439,112852 +h1,24211:6630773,43429467:0,0,0 +g1,24211:7626635,43429467 +g1,24211:7958589,43429467 +g1,24211:8290543,43429467 +g1,24211:10614221,43429467 +g1,24211:12605945,43429467 +h1,24211:16257438,43429467:0,0,0 +k1,24211:32583029,43429467:16325591 +g1,24211:32583029,43429467 +) +(1,24211:6630773,44114322:25952256,424439,6605 +h1,24211:6630773,44114322:0,0,0 +g1,24211:7626635,44114322 +g1,24211:7958589,44114322 +g1,24211:8290543,44114322 +g1,24211:8622497,44114322 +g1,24211:10614221,44114322 +g1,24211:12605945,44114322 +g1,24211:12937899,44114322 +g1,24211:13269853,44114322 +g1,24211:13601807,44114322 +g1,24211:13933761,44114322 +g1,24211:14265715,44114322 +g1,24211:14597669,44114322 +k1,24211:14597669,44114322:0 +h1,24211:16257439,44114322:0,0,0 +k1,24211:32583029,44114322:16325590 +g1,24211:32583029,44114322 +) +(1,24211:6630773,44799177:25952256,407923,4954 +h1,24211:6630773,44799177:0,0,0 +g1,24211:7626635,44799177 +g1,24211:8290543,44799177 +g1,24211:8622497,44799177 +g1,24211:8954451,44799177 +g1,24211:9286405,44799177 +g1,24211:9618359,44799177 +g1,24211:9950313,44799177 +g1,24211:10614221,44799177 +g1,24211:11278129,44799177 +g1,24211:11610083,44799177 +g1,24211:11942037,44799177 +g1,24211:12273991,44799177 +g1,24211:12605945,44799177 +g1,24211:12937899,44799177 +g1,24211:13269853,44799177 +g1,24211:13601807,44799177 +g1,24211:13933761,44799177 +g1,24211:14265715,44799177 +g1,24211:14597669,44799177 +g1,24211:14929623,44799177 +g1,24211:15261577,44799177 +g1,24211:15593531,44799177 +g1,24211:15925485,44799177 +h1,24211:16257439,44799177:0,0,0 +k1,24211:32583029,44799177:16325590 +g1,24211:32583029,44799177 +) +(1,24211:6630773,45484032:25952256,407923,9908 +h1,24211:6630773,45484032:0,0,0 +g1,24211:7626635,45484032 +g1,24211:8290543,45484032 +g1,24211:8622497,45484032 +g1,24211:8954451,45484032 +g1,24211:9286405,45484032 +g1,24211:9618359,45484032 +g1,24211:9950313,45484032 +g1,24211:10614221,45484032 +g1,24211:11278129,45484032 +g1,24211:11610083,45484032 +g1,24211:11942037,45484032 +g1,24211:12273991,45484032 +g1,24211:12605945,45484032 +g1,24211:12937899,45484032 +g1,24211:13269853,45484032 +g1,24211:13601807,45484032 +g1,24211:13933761,45484032 +g1,24211:14265715,45484032 +g1,24211:14597669,45484032 +g1,24211:14929623,45484032 +g1,24211:15261577,45484032 +g1,24211:15593531,45484032 +g1,24211:15925485,45484032 +h1,24211:16257439,45484032:0,0,0 +k1,24211:32583029,45484032:16325590 +g1,24211:32583029,45484032 +) +] +) +g1,24212:32583029,45493940 +g1,24212:6630773,45493940 +g1,24212:6630773,45493940 +g1,24212:32583029,45493940 +g1,24212:32583029,45493940 +) +] +(1,24212:32583029,45706769:0,0,0 +g1,24212:32583029,45706769 +) +) +] +(1,24212:6630773,47279633:25952256,0,0 +h1,24212:6630773,47279633:25952256,0,0 +) +] +(1,24212:4262630,4025873:0,0,0 +[1,24212:-473656,4025873:0,0,0 +(1,24212:-473656,-710413:0,0,0 +(1,24212:-473656,-710413:0,0,0 +g1,24212:-473656,-710413 +) +g1,24212:-473656,-710413 ) ] ) ] !18598 -}416 -Input:4546:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}417 +Input:4550:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{417 -[1,24297:4262630,47279633:28320399,43253760,0 -(1,24297:4262630,4025873:0,0,0 -[1,24297:-473656,4025873:0,0,0 -(1,24297:-473656,-710413:0,0,0 -(1,24297:-473656,-644877:0,0,0 -k1,24297:-473656,-644877:-65536 +{418 +[1,24295:4262630,47279633:28320399,43253760,0 +(1,24295:4262630,4025873:0,0,0 +[1,24295:-473656,4025873:0,0,0 +(1,24295:-473656,-710413:0,0,0 +(1,24295:-473656,-644877:0,0,0 +k1,24295:-473656,-644877:-65536 ) -(1,24297:-473656,4736287:0,0,0 -k1,24297:-473656,4736287:5209943 +(1,24295:-473656,4736287:0,0,0 +k1,24295:-473656,4736287:5209943 ) -g1,24297:-473656,-710413 +g1,24295:-473656,-710413 ) ] ) -[1,24297:6630773,47279633:25952256,43253760,0 -[1,24297:6630773,4812305:25952256,786432,0 -(1,24297:6630773,4812305:25952256,505283,134348 -(1,24297:6630773,4812305:25952256,505283,134348 -g1,24297:3078558,4812305 -[1,24297:3078558,4812305:0,0,0 -(1,24297:3078558,2439708:0,1703936,0 -k1,24297:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24297:2537886,2439708:1179648,16384,0 +[1,24295:6630773,47279633:25952256,43253760,0 +[1,24295:6630773,4812305:25952256,786432,0 +(1,24295:6630773,4812305:25952256,505283,134348 +(1,24295:6630773,4812305:25952256,505283,134348 +g1,24295:3078558,4812305 +[1,24295:3078558,4812305:0,0,0 +(1,24295:3078558,2439708:0,1703936,0 +k1,24295:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24295:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24297:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24295:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24297:3078558,4812305:0,0,0 -(1,24297:3078558,2439708:0,1703936,0 -g1,24297:29030814,2439708 -g1,24297:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24297:36151628,1915420:16384,1179648,0 +[1,24295:3078558,4812305:0,0,0 +(1,24295:3078558,2439708:0,1703936,0 +g1,24295:29030814,2439708 +g1,24295:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24295:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24297:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24295:37855564,2439708:1179648,16384,0 ) ) -k1,24297:3078556,2439708:-34777008 +k1,24295:3078556,2439708:-34777008 ) ] -[1,24297:3078558,4812305:0,0,0 -(1,24297:3078558,49800853:0,16384,2228224 -k1,24297:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24297:2537886,49800853:1179648,16384,0 +[1,24295:3078558,4812305:0,0,0 +(1,24295:3078558,49800853:0,16384,2228224 +k1,24295:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24295:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24297:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24295:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24297:3078558,4812305:0,0,0 -(1,24297:3078558,49800853:0,16384,2228224 -g1,24297:29030814,49800853 -g1,24297:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24297:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24297:37855564,49800853:1179648,16384,0 -) -) -k1,24297:3078556,49800853:-34777008 -) -] -g1,24297:6630773,4812305 -k1,24297:21114230,4812305:13288080 -g1,24297:22736901,4812305 -g1,24297:23350318,4812305 -g1,24297:24759997,4812305 -g1,24297:28372341,4812305 -g1,24297:30105768,4812305 -) -) -] -[1,24297:6630773,45706769:25952256,40108032,0 -(1,24297:6630773,45706769:25952256,40108032,0 -(1,24297:6630773,45706769:0,0,0 -g1,24297:6630773,45706769 -) -[1,24297:6630773,45706769:25952256,40108032,0 -v1,24214:6630773,6254097:0,393216,0 -(1,24214:6630773,7156872:25952256,1295991,196608 -g1,24214:6630773,7156872 -g1,24214:6630773,7156872 -g1,24214:6434165,7156872 -(1,24214:6434165,7156872:0,1295991,196608 -r1,24297:32779637,7156872:26345472,1492599,196608 -k1,24214:6434165,7156872:-26345472 -) -(1,24214:6434165,7156872:26345472,1295991,196608 -[1,24214:6630773,7156872:25952256,1099383,0 -(1,24213:6630773,6465412:25952256,407923,9908 -h1,24213:6630773,6465412:0,0,0 -g1,24213:7626635,6465412 -g1,24213:8290543,6465412 -g1,24213:8622497,6465412 -g1,24213:8954451,6465412 -g1,24213:9286405,6465412 -g1,24213:9618359,6465412 -g1,24213:9950313,6465412 -g1,24213:10614221,6465412 -g1,24213:11278129,6465412 -g1,24213:11610083,6465412 -g1,24213:11942037,6465412 -g1,24213:12273991,6465412 -g1,24213:12605945,6465412 -g1,24213:12937899,6465412 -g1,24213:13269853,6465412 -g1,24213:13601807,6465412 -g1,24213:13933761,6465412 -g1,24213:14265715,6465412 -g1,24213:14597669,6465412 -g1,24213:14929623,6465412 -g1,24213:15261577,6465412 -g1,24213:15593531,6465412 -g1,24213:15925485,6465412 -h1,24213:16257439,6465412:0,0,0 -k1,24213:32583029,6465412:16325590 -g1,24213:32583029,6465412 -) -(1,24213:6630773,7150267:25952256,424439,6605 -h1,24213:6630773,7150267:0,0,0 -g1,24213:7626635,7150267 -g1,24213:8290543,7150267 -g1,24213:8954451,7150267 -g1,24213:9618359,7150267 -g1,24213:11278129,7150267 -h1,24213:12605945,7150267:0,0,0 -k1,24213:32583029,7150267:19977084 -g1,24213:32583029,7150267 -) -] -) -g1,24214:32583029,7156872 -g1,24214:6630773,7156872 -g1,24214:6630773,7156872 -g1,24214:32583029,7156872 -g1,24214:32583029,7156872 -) -h1,24214:6630773,7353480:0,0,0 -(1,24218:6630773,8218560:25952256,513147,134348 -h1,24217:6630773,8218560:983040,0,0 -g1,24217:8282935,8218560 -g1,24217:9013661,8218560 -g1,24217:10498706,8218560 -g1,24217:13327895,8218560 -g1,24217:14178552,8218560 -g1,24217:15790082,8218560 -g1,24217:16345171,8218560 -g1,24217:18564875,8218560 -g1,24217:21091287,8218560 -g1,24217:21949808,8218560 -g1,24217:23168122,8218560 -g1,24217:25250200,8218560 -k1,24218:32583029,8218560:3987216 -g1,24218:32583029,8218560 -) -v1,24220:6630773,8903415:0,393216,0 -(1,24236:6630773,16124079:25952256,7613880,196608 -g1,24236:6630773,16124079 -g1,24236:6630773,16124079 -g1,24236:6434165,16124079 -(1,24236:6434165,16124079:0,7613880,196608 -r1,24297:32779637,16124079:26345472,7810488,196608 -k1,24236:6434165,16124079:-26345472 -) -(1,24236:6434165,16124079:26345472,7613880,196608 -[1,24236:6630773,16124079:25952256,7417272,0 -(1,24222:6630773,9137852:25952256,431045,112852 -(1,24221:6630773,9137852:0,0,0 -g1,24221:6630773,9137852 -g1,24221:6630773,9137852 -g1,24221:6303093,9137852 -(1,24221:6303093,9137852:0,0,0 -) -g1,24221:6630773,9137852 -) -g1,24222:11942036,9137852 -g1,24222:12937898,9137852 -k1,24222:12937898,9137852:0 -h1,24222:23560424,9137852:0,0,0 -k1,24222:32583029,9137852:9022605 -g1,24222:32583029,9137852 -) -(1,24223:6630773,9822707:25952256,424439,106246 -h1,24223:6630773,9822707:0,0,0 -g1,24223:6962727,9822707 -g1,24223:7294681,9822707 -g1,24223:7626635,9822707 -g1,24223:7958589,9822707 -g1,24223:8290543,9822707 -g1,24223:8622497,9822707 -g1,24223:8954451,9822707 -g1,24223:9286405,9822707 -g1,24223:9618359,9822707 -g1,24223:9950313,9822707 -g1,24223:10282267,9822707 -g1,24223:10614221,9822707 -g1,24223:10946175,9822707 -g1,24223:11278129,9822707 -g1,24223:11610083,9822707 -g1,24223:11942037,9822707 -g1,24223:12273991,9822707 -g1,24223:12605945,9822707 -g1,24223:12937899,9822707 -g1,24223:13269853,9822707 -g1,24223:13601807,9822707 -g1,24223:13933761,9822707 -g1,24223:14265715,9822707 -g1,24223:14597669,9822707 -g1,24223:14929623,9822707 -g1,24223:15261577,9822707 -g1,24223:15593531,9822707 -g1,24223:15925485,9822707 -g1,24223:16257439,9822707 -g1,24223:16589393,9822707 -g1,24223:18581117,9822707 -g1,24223:19245025,9822707 -g1,24223:20572841,9822707 -k1,24223:20572841,9822707:0 -h1,24223:22564565,9822707:0,0,0 -k1,24223:32583029,9822707:10018464 -g1,24223:32583029,9822707 -) -(1,24224:6630773,10507562:25952256,424439,112852 -h1,24224:6630773,10507562:0,0,0 -g1,24224:6962727,10507562 -g1,24224:7294681,10507562 -g1,24224:7626635,10507562 -g1,24224:7958589,10507562 -g1,24224:8290543,10507562 -g1,24224:8622497,10507562 -g1,24224:8954451,10507562 -g1,24224:9286405,10507562 -g1,24224:9618359,10507562 -g1,24224:9950313,10507562 -g1,24224:10282267,10507562 -g1,24224:10614221,10507562 -g1,24224:10946175,10507562 -g1,24224:11278129,10507562 -g1,24224:11610083,10507562 -g1,24224:11942037,10507562 -g1,24224:12273991,10507562 -g1,24224:12605945,10507562 -g1,24224:12937899,10507562 -g1,24224:13269853,10507562 -g1,24224:13601807,10507562 -g1,24224:13933761,10507562 -g1,24224:14265715,10507562 -g1,24224:14597669,10507562 -g1,24224:14929623,10507562 -g1,24224:15261577,10507562 -g1,24224:15593531,10507562 -g1,24224:15925485,10507562 -g1,24224:16257439,10507562 -g1,24224:16589393,10507562 -g1,24224:18581117,10507562 -g1,24224:19245025,10507562 -h1,24224:21900657,10507562:0,0,0 -k1,24224:32583029,10507562:10682372 -g1,24224:32583029,10507562 -) -(1,24225:6630773,11192417:25952256,431045,112852 -h1,24225:6630773,11192417:0,0,0 -h1,24225:11610082,11192417:0,0,0 -k1,24225:32583030,11192417:20972948 -g1,24225:32583030,11192417 -) -(1,24235:6630773,12008344:25952256,424439,6605 -(1,24227:6630773,12008344:0,0,0 -g1,24227:6630773,12008344 -g1,24227:6630773,12008344 -g1,24227:6303093,12008344 -(1,24227:6303093,12008344:0,0,0 -) -g1,24227:6630773,12008344 -) -g1,24235:7626635,12008344 -g1,24235:8290543,12008344 -g1,24235:8954451,12008344 -g1,24235:11610083,12008344 -g1,24235:12273991,12008344 -g1,24235:12937899,12008344 -h1,24235:13269853,12008344:0,0,0 -k1,24235:32583029,12008344:19313176 -g1,24235:32583029,12008344 -) -(1,24235:6630773,12693199:25952256,424439,112852 -h1,24235:6630773,12693199:0,0,0 -g1,24235:7626635,12693199 -g1,24235:7958589,12693199 -g1,24235:8290543,12693199 -g1,24235:10614221,12693199 -h1,24235:12273991,12693199:0,0,0 -k1,24235:32583029,12693199:20309038 -g1,24235:32583029,12693199 -) -(1,24235:6630773,13378054:25952256,424439,6605 -h1,24235:6630773,13378054:0,0,0 -g1,24235:7626635,13378054 -g1,24235:7958589,13378054 -g1,24235:8290543,13378054 -g1,24235:8622497,13378054 -g1,24235:10614221,13378054 -k1,24235:10614221,13378054:0 -h1,24235:12273991,13378054:0,0,0 -k1,24235:32583029,13378054:20309038 -g1,24235:32583029,13378054 -) -(1,24235:6630773,14062909:25952256,407923,4954 -h1,24235:6630773,14062909:0,0,0 -g1,24235:7626635,14062909 -g1,24235:8290543,14062909 -g1,24235:8622497,14062909 -g1,24235:8954451,14062909 -g1,24235:9286405,14062909 -g1,24235:9618359,14062909 -g1,24235:9950313,14062909 -g1,24235:10614221,14062909 -h1,24235:10946175,14062909:0,0,0 -k1,24235:32583029,14062909:21636854 -g1,24235:32583029,14062909 -) -(1,24235:6630773,14747764:25952256,407923,4954 -h1,24235:6630773,14747764:0,0,0 -g1,24235:7626635,14747764 -g1,24235:8290543,14747764 -g1,24235:8622497,14747764 -g1,24235:8954451,14747764 -g1,24235:9286405,14747764 -g1,24235:9618359,14747764 -g1,24235:9950313,14747764 -g1,24235:10614221,14747764 -h1,24235:10946175,14747764:0,0,0 -k1,24235:32583029,14747764:21636854 -g1,24235:32583029,14747764 -) -(1,24235:6630773,15432619:25952256,407923,9908 -h1,24235:6630773,15432619:0,0,0 -g1,24235:7626635,15432619 -g1,24235:8290543,15432619 -g1,24235:8622497,15432619 -g1,24235:8954451,15432619 -g1,24235:9286405,15432619 -g1,24235:9618359,15432619 -g1,24235:9950313,15432619 -g1,24235:10614221,15432619 -h1,24235:10946175,15432619:0,0,0 -k1,24235:32583029,15432619:21636854 -g1,24235:32583029,15432619 -) -(1,24235:6630773,16117474:25952256,424439,6605 -h1,24235:6630773,16117474:0,0,0 -g1,24235:7626635,16117474 -g1,24235:8290543,16117474 -g1,24235:8954451,16117474 -g1,24235:9618359,16117474 -g1,24235:11278129,16117474 -h1,24235:12605945,16117474:0,0,0 -k1,24235:32583029,16117474:19977084 -g1,24235:32583029,16117474 -) -] -) -g1,24236:32583029,16124079 -g1,24236:6630773,16124079 -g1,24236:6630773,16124079 -g1,24236:32583029,16124079 -g1,24236:32583029,16124079 -) -h1,24236:6630773,16320687:0,0,0 -(1,24240:6630773,17185767:25952256,513147,134348 -h1,24239:6630773,17185767:983040,0,0 -k1,24239:8628583,17185767:240790 -k1,24239:9888458,17185767:240790 -k1,24239:13347066,17185767:240790 -k1,24239:17164156,17185767:240790 -k1,24239:18424031,17185767:240790 -k1,24239:20266522,17185767:240791 -k1,24239:22484533,17185767:240790 -k1,24239:24212335,17185767:240790 -k1,24239:25928340,17185767:240790 -k1,24239:27188215,17185767:240790 -k1,24239:29082478,17185767:240790 -k1,24239:31391584,17185767:240790 -k1,24239:32583029,17185767:0 -) -(1,24240:6630773,18050847:25952256,505283,134348 -k1,24239:8191232,18050847:217626 -k1,24239:10610869,18050847:217627 -k1,24239:12394150,18050847:217626 -k1,24239:13297938,18050847:217626 -k1,24239:14131602,18050847:217626 -k1,24239:16372325,18050847:217627 -k1,24239:17822028,18050847:217626 -k1,24239:20318341,18050847:217626 -h1,24239:22259517,18050847:0,0,0 -k1,24239:22477144,18050847:217627 -k1,24239:23504140,18050847:217626 -k1,24239:25219919,18050847:217626 -h1,24239:26415296,18050847:0,0,0 -k1,24239:27013686,18050847:217626 -k1,24239:28273335,18050847:217627 -k1,24239:31326048,18050847:217626 -k1,24239:32583029,18050847:0 -) -(1,24240:6630773,18915927:25952256,513147,134348 -k1,24239:8872322,18915927:173233 -k1,24239:9993207,18915927:173234 -k1,24239:11185525,18915927:173233 -k1,24239:14071949,18915927:173233 -k1,24239:15349465,18915927:173234 -k1,24239:16270464,18915927:173233 -k1,24239:18648984,18915927:173233 -k1,24239:19508380,18915927:173234 -k1,24239:20452316,18915927:173233 -k1,24239:23697877,18915927:173233 -k1,24239:24522539,18915927:173234 -k1,24239:27340805,18915927:173233 -k1,24239:28533123,18915927:173233 -k1,24239:30774673,18915927:173234 -k1,24239:31563944,18915927:173233 -k1,24239:32583029,18915927:0 -) -(1,24240:6630773,19781007:25952256,505283,7863 -k1,24240:32583028,19781007:22632856 -g1,24240:32583028,19781007 -) -v1,24242:6630773,20465862:0,393216,0 -(1,24259:6630773,28371381:25952256,8298735,196608 -g1,24259:6630773,28371381 -g1,24259:6630773,28371381 -g1,24259:6434165,28371381 -(1,24259:6434165,28371381:0,8298735,196608 -r1,24297:32779637,28371381:26345472,8495343,196608 -k1,24259:6434165,28371381:-26345472 -) -(1,24259:6434165,28371381:26345472,8298735,196608 -[1,24259:6630773,28371381:25952256,8102127,0 -(1,24244:6630773,20700299:25952256,431045,112852 -(1,24243:6630773,20700299:0,0,0 -g1,24243:6630773,20700299 -g1,24243:6630773,20700299 -g1,24243:6303093,20700299 -(1,24243:6303093,20700299:0,0,0 -) -g1,24243:6630773,20700299 -) -g1,24244:11942036,20700299 -g1,24244:12937898,20700299 -k1,24244:12937898,20700299:0 -h1,24244:23560424,20700299:0,0,0 -k1,24244:32583029,20700299:9022605 -g1,24244:32583029,20700299 -) -(1,24245:6630773,21385154:25952256,424439,106246 -h1,24245:6630773,21385154:0,0,0 -g1,24245:6962727,21385154 -g1,24245:7294681,21385154 -g1,24245:7626635,21385154 -g1,24245:7958589,21385154 -g1,24245:8290543,21385154 -g1,24245:8622497,21385154 -g1,24245:8954451,21385154 -g1,24245:9286405,21385154 -g1,24245:9618359,21385154 -g1,24245:9950313,21385154 -g1,24245:10282267,21385154 -g1,24245:10614221,21385154 -g1,24245:10946175,21385154 -g1,24245:11278129,21385154 -g1,24245:11610083,21385154 -g1,24245:11942037,21385154 -g1,24245:12273991,21385154 -g1,24245:12605945,21385154 -g1,24245:12937899,21385154 -g1,24245:13269853,21385154 -g1,24245:13601807,21385154 -g1,24245:13933761,21385154 -g1,24245:14265715,21385154 -g1,24245:14597669,21385154 -g1,24245:14929623,21385154 -g1,24245:15261577,21385154 -g1,24245:15593531,21385154 -g1,24245:15925485,21385154 -g1,24245:16257439,21385154 -g1,24245:16589393,21385154 -g1,24245:18581117,21385154 -g1,24245:19245025,21385154 -g1,24245:20572841,21385154 -k1,24245:20572841,21385154:0 -h1,24245:22564565,21385154:0,0,0 -k1,24245:32583029,21385154:10018464 -g1,24245:32583029,21385154 -) -(1,24246:6630773,22070009:25952256,424439,112852 -h1,24246:6630773,22070009:0,0,0 -g1,24246:6962727,22070009 -g1,24246:7294681,22070009 -g1,24246:7626635,22070009 -g1,24246:7958589,22070009 -g1,24246:8290543,22070009 -g1,24246:8622497,22070009 -g1,24246:8954451,22070009 -g1,24246:9286405,22070009 -g1,24246:9618359,22070009 -g1,24246:9950313,22070009 -g1,24246:10282267,22070009 -g1,24246:10614221,22070009 -g1,24246:10946175,22070009 -g1,24246:11278129,22070009 -g1,24246:11610083,22070009 -g1,24246:11942037,22070009 -g1,24246:12273991,22070009 -g1,24246:12605945,22070009 -g1,24246:12937899,22070009 -g1,24246:13269853,22070009 -g1,24246:13601807,22070009 -g1,24246:13933761,22070009 -g1,24246:14265715,22070009 -g1,24246:14597669,22070009 -g1,24246:14929623,22070009 -g1,24246:15261577,22070009 -g1,24246:15593531,22070009 -g1,24246:15925485,22070009 -g1,24246:16257439,22070009 -g1,24246:16589393,22070009 -g1,24246:18581117,22070009 -g1,24246:19245025,22070009 -k1,24246:19245025,22070009:0 -h1,24246:21900657,22070009:0,0,0 -k1,24246:32583029,22070009:10682372 -g1,24246:32583029,22070009 -) -(1,24247:6630773,22754864:25952256,424439,86428 -h1,24247:6630773,22754864:0,0,0 -g1,24247:6962727,22754864 -g1,24247:7294681,22754864 -g1,24247:7626635,22754864 -g1,24247:7958589,22754864 -g1,24247:8290543,22754864 -g1,24247:8622497,22754864 -g1,24247:8954451,22754864 -g1,24247:9286405,22754864 -g1,24247:9618359,22754864 -g1,24247:9950313,22754864 -g1,24247:10282267,22754864 -g1,24247:10614221,22754864 -g1,24247:10946175,22754864 -g1,24247:11278129,22754864 -g1,24247:11610083,22754864 -g1,24247:11942037,22754864 -g1,24247:12273991,22754864 -g1,24247:12605945,22754864 -g1,24247:12937899,22754864 -g1,24247:13269853,22754864 -g1,24247:13601807,22754864 -g1,24247:13933761,22754864 -g1,24247:14265715,22754864 -g1,24247:14597669,22754864 -g1,24247:14929623,22754864 -g1,24247:15261577,22754864 -g1,24247:15593531,22754864 -g1,24247:15925485,22754864 -g1,24247:16257439,22754864 -g1,24247:16589393,22754864 -g1,24247:19908932,22754864 -g1,24247:20572840,22754864 -g1,24247:22896518,22754864 -h1,24247:24556288,22754864:0,0,0 -k1,24247:32583029,22754864:8026741 -g1,24247:32583029,22754864 -) -(1,24248:6630773,23439719:25952256,431045,112852 -h1,24248:6630773,23439719:0,0,0 -h1,24248:11610082,23439719:0,0,0 -k1,24248:32583030,23439719:20972948 -g1,24248:32583030,23439719 -) -(1,24258:6630773,24255646:25952256,424439,6605 -(1,24250:6630773,24255646:0,0,0 -g1,24250:6630773,24255646 -g1,24250:6630773,24255646 -g1,24250:6303093,24255646 -(1,24250:6303093,24255646:0,0,0 -) -g1,24250:6630773,24255646 -) -g1,24258:7626635,24255646 -g1,24258:8290543,24255646 -g1,24258:8954451,24255646 -g1,24258:11610083,24255646 -g1,24258:12273991,24255646 -g1,24258:12937899,24255646 -h1,24258:13269853,24255646:0,0,0 -k1,24258:32583029,24255646:19313176 -g1,24258:32583029,24255646 -) -(1,24258:6630773,24940501:25952256,398014,0 -h1,24258:6630773,24940501:0,0,0 -g1,24258:7626635,24940501 -g1,24258:7958589,24940501 -g1,24258:8290543,24940501 -g1,24258:8622497,24940501 -g1,24258:8954451,24940501 -g1,24258:9286405,24940501 -g1,24258:9618359,24940501 -g1,24258:10282267,24940501 -h1,24258:10614221,24940501:0,0,0 -k1,24258:32583029,24940501:21968808 -g1,24258:32583029,24940501 -) -(1,24258:6630773,25625356:25952256,424439,6605 -h1,24258:6630773,25625356:0,0,0 -g1,24258:7626635,25625356 -g1,24258:7958589,25625356 -g1,24258:8290543,25625356 -g1,24258:10282267,25625356 -k1,24258:10282267,25625356:0 -h1,24258:11942037,25625356:0,0,0 -k1,24258:32583029,25625356:20640992 -g1,24258:32583029,25625356 -) -(1,24258:6630773,26310211:25952256,407923,4954 -h1,24258:6630773,26310211:0,0,0 -g1,24258:7626635,26310211 -g1,24258:8290543,26310211 -g1,24258:8622497,26310211 -g1,24258:8954451,26310211 -g1,24258:9286405,26310211 -g1,24258:9618359,26310211 -g1,24258:10282267,26310211 -h1,24258:10614221,26310211:0,0,0 -k1,24258:32583029,26310211:21968808 -g1,24258:32583029,26310211 -) -(1,24258:6630773,26995066:25952256,407923,4954 -h1,24258:6630773,26995066:0,0,0 -g1,24258:7626635,26995066 -g1,24258:8290543,26995066 -g1,24258:8622497,26995066 -g1,24258:8954451,26995066 -g1,24258:9286405,26995066 -g1,24258:9618359,26995066 -g1,24258:10282267,26995066 -h1,24258:10614221,26995066:0,0,0 -k1,24258:32583029,26995066:21968808 -g1,24258:32583029,26995066 -) -(1,24258:6630773,27679921:25952256,407923,9908 -h1,24258:6630773,27679921:0,0,0 -g1,24258:7626635,27679921 -g1,24258:8290543,27679921 -g1,24258:8622497,27679921 -g1,24258:8954451,27679921 -g1,24258:9286405,27679921 -g1,24258:9618359,27679921 -g1,24258:10282267,27679921 -h1,24258:10614221,27679921:0,0,0 -k1,24258:32583029,27679921:21968808 -g1,24258:32583029,27679921 -) -(1,24258:6630773,28364776:25952256,424439,6605 -h1,24258:6630773,28364776:0,0,0 -g1,24258:7626635,28364776 -g1,24258:8290543,28364776 -g1,24258:8954451,28364776 -g1,24258:9618359,28364776 -g1,24258:11278129,28364776 -h1,24258:12605945,28364776:0,0,0 -k1,24258:32583029,28364776:19977084 -g1,24258:32583029,28364776 -) -] -) -g1,24259:32583029,28371381 -g1,24259:6630773,28371381 -g1,24259:6630773,28371381 -g1,24259:32583029,28371381 -g1,24259:32583029,28371381 -) -h1,24259:6630773,28567989:0,0,0 -(1,24262:6630773,30684807:25952256,555811,12975 -(1,24262:6630773,30684807:2899444,534184,12975 -g1,24262:6630773,30684807 -g1,24262:9530217,30684807 -) -k1,24262:32583028,30684807:21176320 -g1,24262:32583028,30684807 -) -(1,24267:6630773,31943103:25952256,513147,134348 -k1,24266:9413213,31943103:247507 -k1,24266:11334510,31943103:247508 -k1,24266:12686299,31943103:247507 -k1,24266:13681573,31943103:247508 -k1,24266:15579277,31943103:247507 -k1,24266:18310599,31943103:247507 -k1,24266:19209535,31943103:247508 -k1,24266:21426399,31943103:247507 -k1,24266:22360069,31943103:247508 -k1,24266:23065673,31943103:247507 -k1,24266:24735967,31943103:247507 -k1,24266:26328929,31943103:247508 -k1,24266:29602233,31943103:247507 -k1,24266:30501169,31943103:247508 -k1,24266:31563944,31943103:247507 -k1,24266:32583029,31943103:0 -) -(1,24267:6630773,32808183:25952256,513147,134348 -k1,24266:8776362,32808183:223418 -k1,24266:10769907,32808183:223418 -k1,24266:13928027,32808183:223418 -k1,24266:14609542,32808183:223418 -k1,24266:15364457,32808183:223418 -k1,24266:17238072,32808183:223418 -k1,24266:22452712,32808183:223418 -k1,24266:24070081,32808183:223418 -k1,24266:27319296,32808183:223418 -k1,24266:29009410,32808183:223418 -k1,24266:30180479,32808183:223418 -k1,24266:32583029,32808183:0 -) -(1,24267:6630773,33673263:25952256,513147,134348 -k1,24266:8084289,33673263:262071 -k1,24266:10604075,33673263:262071 -k1,24266:13643562,33673263:262071 -k1,24266:17529119,33673263:262071 -k1,24266:18982635,33673263:262071 -k1,24266:22927174,33673263:262071 -k1,24266:23805283,33673263:262071 -k1,24266:26829697,33673263:262071 -k1,24266:29602452,33673263:262071 -k1,24266:32583029,33673263:0 -) -(1,24267:6630773,34538343:25952256,513147,134348 -k1,24266:7878730,34538343:228872 -k1,24266:9763697,34538343:228872 -k1,24266:12014355,34538343:228872 -k1,24266:13903909,34538343:228872 -k1,24266:16359694,34538343:228872 -k1,24266:17239994,34538343:228872 -k1,24266:19491961,34538343:228871 -k1,24266:20178930,34538343:228872 -k1,24266:22419757,34538343:228872 -k1,24266:25237301,34538343:228872 -k1,24266:27816949,34538343:228872 -k1,24266:28705113,34538343:228872 -k1,24266:29289845,34538343:228872 -k1,24266:32583029,34538343:0 -) -(1,24267:6630773,35403423:25952256,505283,126483 -g1,24266:7481430,35403423 -g1,24266:8428425,35403423 -k1,24267:32583029,35403423:21152400 -g1,24267:32583029,35403423 -) -(1,24269:6630773,36268503:25952256,505283,134348 -h1,24268:6630773,36268503:983040,0,0 -k1,24268:10701431,36268503:297750 -(1,24268:10701431,36268503:0,452978,115847 -r1,24297:14576815,36268503:3875384,568825,115847 -k1,24268:10701431,36268503:-3875384 -) -(1,24268:10701431,36268503:3875384,452978,115847 -k1,24268:10701431,36268503:3277 -h1,24268:14573538,36268503:0,411205,112570 -) -k1,24268:14874565,36268503:297750 -k1,24268:16276597,36268503:297750 -k1,24268:17322113,36268503:297750 -k1,24268:19133089,36268503:297750 -k1,24268:22170243,36268503:297749 -k1,24268:23487078,36268503:297750 -k1,24268:27078012,36268503:297750 -k1,24268:28137290,36268503:297750 -k1,24268:30346725,36268503:297750 -k1,24268:31841162,36268503:297750 -k1,24269:32583029,36268503:0 -) -(1,24269:6630773,37133583:25952256,513147,134348 -k1,24268:9014673,37133583:240873 -k1,24268:10935890,37133583:240874 -k1,24268:11708260,37133583:240873 -k1,24268:12304993,37133583:240873 -k1,24268:13935229,37133583:240873 -k1,24268:16226069,37133583:240874 -k1,24268:17658387,37133583:240873 -k1,24268:20874595,37133583:240873 -k1,24268:22134554,37133583:240874 -k1,24268:26399993,37133583:240873 -k1,24268:27308022,37133583:240873 -k1,24268:27963697,37133583:240832 -k1,24268:30784722,37133583:240873 -k1,24268:32583029,37133583:0 -) -(1,24269:6630773,37998663:25952256,513147,134348 -g1,24268:9804681,37998663 -g1,24268:12717101,37998663 -g1,24268:13907890,37998663 -g1,24268:14887653,37998663 -g1,24268:17155198,37998663 -g1,24268:20515228,37998663 -g1,24268:21981923,37998663 -g1,24268:24405444,37998663 -g1,24268:25366201,37998663 -k1,24269:32583029,37998663:4898820 -g1,24269:32583029,37998663 -) -v1,24271:6630773,38683518:0,393216,0 -(1,24297:6630773,45222630:25952256,6932328,196608 -g1,24297:6630773,45222630 -g1,24297:6630773,45222630 -g1,24297:6434165,45222630 -(1,24297:6434165,45222630:0,6932328,196608 -r1,24297:32779637,45222630:26345472,7128936,196608 -k1,24297:6434165,45222630:-26345472 -) -(1,24297:6434165,45222630:26345472,6932328,196608 -[1,24297:6630773,45222630:25952256,6735720,0 -(1,24273:6630773,38917955:25952256,431045,86428 -(1,24272:6630773,38917955:0,0,0 -g1,24272:6630773,38917955 -g1,24272:6630773,38917955 -g1,24272:6303093,38917955 -(1,24272:6303093,38917955:0,0,0 -) -g1,24272:6630773,38917955 -) -g1,24273:11278128,38917955 -g1,24273:12273990,38917955 -k1,24273:12273990,38917955:0 -h1,24273:22564562,38917955:0,0,0 -k1,24273:32583029,38917955:10018467 -g1,24273:32583029,38917955 -) -(1,24274:6630773,39602810:25952256,424439,106246 -h1,24274:6630773,39602810:0,0,0 -g1,24274:6962727,39602810 -g1,24274:7294681,39602810 -g1,24274:7626635,39602810 -g1,24274:7958589,39602810 -g1,24274:8290543,39602810 -g1,24274:8622497,39602810 -g1,24274:8954451,39602810 -g1,24274:9286405,39602810 -g1,24274:9618359,39602810 -g1,24274:9950313,39602810 -g1,24274:10282267,39602810 -g1,24274:10614221,39602810 -g1,24274:10946175,39602810 -g1,24274:11278129,39602810 -g1,24274:11610083,39602810 -g1,24274:11942037,39602810 -g1,24274:12273991,39602810 -g1,24274:12605945,39602810 -g1,24274:12937899,39602810 -g1,24274:13269853,39602810 -g1,24274:13601807,39602810 -g1,24274:13933761,39602810 -g1,24274:14265715,39602810 -g1,24274:14597669,39602810 -g1,24274:14929623,39602810 -g1,24274:15261577,39602810 -g1,24274:15593531,39602810 -g1,24274:18913070,39602810 -g1,24274:19576978,39602810 -g1,24274:20904794,39602810 -h1,24274:22896518,39602810:0,0,0 -k1,24274:32583029,39602810:9686511 -g1,24274:32583029,39602810 -) -(1,24275:6630773,40287665:25952256,431045,52847 -h1,24275:6630773,40287665:0,0,0 -h1,24275:10946174,40287665:0,0,0 -k1,24275:32583030,40287665:21636856 -g1,24275:32583030,40287665 -) -(1,24289:6630773,41103592:25952256,424439,112852 -(1,24277:6630773,41103592:0,0,0 -g1,24277:6630773,41103592 -g1,24277:6630773,41103592 -g1,24277:6303093,41103592 -(1,24277:6303093,41103592:0,0,0 -) -g1,24277:6630773,41103592 -) -g1,24289:7626635,41103592 -g1,24289:7958589,41103592 -g1,24289:8290543,41103592 -g1,24289:8622497,41103592 -g1,24289:10946175,41103592 -g1,24289:12937899,41103592 -h1,24289:16589392,41103592:0,0,0 -k1,24289:32583029,41103592:15993637 -g1,24289:32583029,41103592 -) -(1,24289:6630773,41788447:25952256,407923,9908 -h1,24289:6630773,41788447:0,0,0 -g1,24289:7626635,41788447 -g1,24289:8290543,41788447 -g1,24289:8622497,41788447 -g1,24289:8954451,41788447 -g1,24289:9286405,41788447 -g1,24289:9618359,41788447 -g1,24289:9950313,41788447 -g1,24289:10282267,41788447 -g1,24289:10946175,41788447 -g1,24289:11278129,41788447 -g1,24289:11610083,41788447 -g1,24289:11942037,41788447 -g1,24289:12273991,41788447 -g1,24289:12937899,41788447 -g1,24289:13269853,41788447 -g1,24289:13601807,41788447 -g1,24289:13933761,41788447 -g1,24289:14265715,41788447 -g1,24289:14597669,41788447 -g1,24289:14929623,41788447 -g1,24289:15261577,41788447 -g1,24289:15593531,41788447 -h1,24289:16589393,41788447:0,0,0 -k1,24289:32583029,41788447:15993636 -g1,24289:32583029,41788447 -) -(1,24289:6630773,42473302:25952256,407923,9908 -h1,24289:6630773,42473302:0,0,0 -g1,24289:7626635,42473302 -g1,24289:8290543,42473302 -g1,24289:8622497,42473302 -g1,24289:8954451,42473302 -g1,24289:9286405,42473302 -g1,24289:9618359,42473302 -g1,24289:9950313,42473302 -g1,24289:10282267,42473302 -g1,24289:10946175,42473302 -g1,24289:11278129,42473302 -g1,24289:11610083,42473302 -g1,24289:11942037,42473302 -g1,24289:12273991,42473302 -g1,24289:12937899,42473302 -g1,24289:13269853,42473302 -g1,24289:13601807,42473302 -g1,24289:13933761,42473302 -g1,24289:14265715,42473302 -g1,24289:14597669,42473302 -g1,24289:14929623,42473302 -g1,24289:15261577,42473302 -g1,24289:15593531,42473302 -h1,24289:16589393,42473302:0,0,0 -k1,24289:32583029,42473302:15993636 -g1,24289:32583029,42473302 -) -(1,24289:6630773,43158157:25952256,407923,9908 -h1,24289:6630773,43158157:0,0,0 -g1,24289:7626635,43158157 -g1,24289:8290543,43158157 -g1,24289:8622497,43158157 -g1,24289:8954451,43158157 -g1,24289:9286405,43158157 -g1,24289:9618359,43158157 -g1,24289:9950313,43158157 -g1,24289:10282267,43158157 -g1,24289:10946175,43158157 -g1,24289:11278129,43158157 -g1,24289:11610083,43158157 -g1,24289:11942037,43158157 -g1,24289:12273991,43158157 -g1,24289:12937899,43158157 -g1,24289:13269853,43158157 -g1,24289:13601807,43158157 -g1,24289:13933761,43158157 -g1,24289:14265715,43158157 -g1,24289:14597669,43158157 -g1,24289:14929623,43158157 -g1,24289:15261577,43158157 -g1,24289:15593531,43158157 -h1,24289:16589393,43158157:0,0,0 -k1,24289:32583029,43158157:15993636 -g1,24289:32583029,43158157 -) -(1,24289:6630773,43843012:25952256,407923,9908 -h1,24289:6630773,43843012:0,0,0 -g1,24289:7626635,43843012 -g1,24289:8290543,43843012 -g1,24289:8622497,43843012 -g1,24289:8954451,43843012 -g1,24289:9286405,43843012 -g1,24289:9618359,43843012 -g1,24289:9950313,43843012 -g1,24289:10282267,43843012 -g1,24289:10946175,43843012 -g1,24289:11278129,43843012 -g1,24289:11610083,43843012 -g1,24289:11942037,43843012 -g1,24289:12273991,43843012 -g1,24289:12937899,43843012 -g1,24289:13269853,43843012 -g1,24289:13601807,43843012 -g1,24289:13933761,43843012 -g1,24289:14265715,43843012 -g1,24289:14597669,43843012 -g1,24289:14929623,43843012 -g1,24289:15261577,43843012 -g1,24289:15593531,43843012 -h1,24289:16589393,43843012:0,0,0 -k1,24289:32583029,43843012:15993636 -g1,24289:32583029,43843012 -) -(1,24289:6630773,44527867:25952256,407923,9908 -h1,24289:6630773,44527867:0,0,0 -g1,24289:7626635,44527867 -g1,24289:8290543,44527867 -g1,24289:8622497,44527867 -g1,24289:8954451,44527867 -g1,24289:9286405,44527867 -g1,24289:9618359,44527867 -g1,24289:9950313,44527867 -g1,24289:10282267,44527867 -g1,24289:10946175,44527867 -g1,24289:11278129,44527867 -g1,24289:11610083,44527867 -g1,24289:11942037,44527867 -g1,24289:12273991,44527867 -g1,24289:12937899,44527867 -g1,24289:13269853,44527867 -g1,24289:13601807,44527867 -g1,24289:13933761,44527867 -g1,24289:14265715,44527867 -g1,24289:14597669,44527867 -g1,24289:14929623,44527867 -g1,24289:15261577,44527867 -g1,24289:15593531,44527867 -h1,24289:16589393,44527867:0,0,0 -k1,24289:32583029,44527867:15993636 -g1,24289:32583029,44527867 -) -(1,24289:6630773,45212722:25952256,424439,9908 -h1,24289:6630773,45212722:0,0,0 -g1,24289:7626635,45212722 -g1,24289:8290543,45212722 -g1,24289:8622497,45212722 -g1,24289:8954451,45212722 -g1,24289:9286405,45212722 -g1,24289:9618359,45212722 -g1,24289:9950313,45212722 -g1,24289:10282267,45212722 -g1,24289:10946175,45212722 -g1,24289:11278129,45212722 -g1,24289:11610083,45212722 -g1,24289:11942037,45212722 -g1,24289:12273991,45212722 -g1,24289:12937899,45212722 -g1,24289:13269853,45212722 -g1,24289:13601807,45212722 -g1,24289:13933761,45212722 -g1,24289:14265715,45212722 -g1,24289:14597669,45212722 -g1,24289:14929623,45212722 -g1,24289:15261577,45212722 -g1,24289:15593531,45212722 -h1,24289:16589393,45212722:0,0,0 -k1,24289:32583029,45212722:15993636 -g1,24289:32583029,45212722 -) -] -) -g1,24297:32583029,45222630 -g1,24297:6630773,45222630 -g1,24297:6630773,45222630 -g1,24297:32583029,45222630 -g1,24297:32583029,45222630 -) -] -(1,24297:32583029,45706769:0,0,0 -g1,24297:32583029,45706769 -) -) -] -(1,24297:6630773,47279633:25952256,0,0 -h1,24297:6630773,47279633:25952256,0,0 -) -] -(1,24297:4262630,4025873:0,0,0 -[1,24297:-473656,4025873:0,0,0 -(1,24297:-473656,-710413:0,0,0 -(1,24297:-473656,-710413:0,0,0 -g1,24297:-473656,-710413 -) -g1,24297:-473656,-710413 +[1,24295:3078558,4812305:0,0,0 +(1,24295:3078558,49800853:0,16384,2228224 +g1,24295:29030814,49800853 +g1,24295:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24295:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24295:37855564,49800853:1179648,16384,0 +) +) +k1,24295:3078556,49800853:-34777008 +) +] +g1,24295:6630773,4812305 +k1,24295:21114230,4812305:13288080 +g1,24295:22736901,4812305 +g1,24295:23350318,4812305 +g1,24295:24759997,4812305 +g1,24295:28372341,4812305 +g1,24295:30105768,4812305 +) +) +] +[1,24295:6630773,45706769:25952256,40108032,0 +(1,24295:6630773,45706769:25952256,40108032,0 +(1,24295:6630773,45706769:0,0,0 +g1,24295:6630773,45706769 +) +[1,24295:6630773,45706769:25952256,40108032,0 +v1,24212:6630773,6254097:0,393216,0 +(1,24212:6630773,7156872:25952256,1295991,196608 +g1,24212:6630773,7156872 +g1,24212:6630773,7156872 +g1,24212:6434165,7156872 +(1,24212:6434165,7156872:0,1295991,196608 +r1,24295:32779637,7156872:26345472,1492599,196608 +k1,24212:6434165,7156872:-26345472 +) +(1,24212:6434165,7156872:26345472,1295991,196608 +[1,24212:6630773,7156872:25952256,1099383,0 +(1,24211:6630773,6465412:25952256,407923,9908 +h1,24211:6630773,6465412:0,0,0 +g1,24211:7626635,6465412 +g1,24211:8290543,6465412 +g1,24211:8622497,6465412 +g1,24211:8954451,6465412 +g1,24211:9286405,6465412 +g1,24211:9618359,6465412 +g1,24211:9950313,6465412 +g1,24211:10614221,6465412 +g1,24211:11278129,6465412 +g1,24211:11610083,6465412 +g1,24211:11942037,6465412 +g1,24211:12273991,6465412 +g1,24211:12605945,6465412 +g1,24211:12937899,6465412 +g1,24211:13269853,6465412 +g1,24211:13601807,6465412 +g1,24211:13933761,6465412 +g1,24211:14265715,6465412 +g1,24211:14597669,6465412 +g1,24211:14929623,6465412 +g1,24211:15261577,6465412 +g1,24211:15593531,6465412 +g1,24211:15925485,6465412 +h1,24211:16257439,6465412:0,0,0 +k1,24211:32583029,6465412:16325590 +g1,24211:32583029,6465412 +) +(1,24211:6630773,7150267:25952256,424439,6605 +h1,24211:6630773,7150267:0,0,0 +g1,24211:7626635,7150267 +g1,24211:8290543,7150267 +g1,24211:8954451,7150267 +g1,24211:9618359,7150267 +g1,24211:11278129,7150267 +h1,24211:12605945,7150267:0,0,0 +k1,24211:32583029,7150267:19977084 +g1,24211:32583029,7150267 +) +] +) +g1,24212:32583029,7156872 +g1,24212:6630773,7156872 +g1,24212:6630773,7156872 +g1,24212:32583029,7156872 +g1,24212:32583029,7156872 +) +h1,24212:6630773,7353480:0,0,0 +(1,24216:6630773,8218560:25952256,513147,134348 +h1,24215:6630773,8218560:983040,0,0 +g1,24215:8282935,8218560 +g1,24215:9013661,8218560 +g1,24215:10498706,8218560 +g1,24215:13327895,8218560 +g1,24215:14178552,8218560 +g1,24215:15790082,8218560 +g1,24215:16345171,8218560 +g1,24215:18564875,8218560 +g1,24215:21091287,8218560 +g1,24215:21949808,8218560 +g1,24215:23168122,8218560 +g1,24215:25250200,8218560 +k1,24216:32583029,8218560:3987216 +g1,24216:32583029,8218560 +) +v1,24218:6630773,8903415:0,393216,0 +(1,24234:6630773,16124079:25952256,7613880,196608 +g1,24234:6630773,16124079 +g1,24234:6630773,16124079 +g1,24234:6434165,16124079 +(1,24234:6434165,16124079:0,7613880,196608 +r1,24295:32779637,16124079:26345472,7810488,196608 +k1,24234:6434165,16124079:-26345472 +) +(1,24234:6434165,16124079:26345472,7613880,196608 +[1,24234:6630773,16124079:25952256,7417272,0 +(1,24220:6630773,9137852:25952256,431045,112852 +(1,24219:6630773,9137852:0,0,0 +g1,24219:6630773,9137852 +g1,24219:6630773,9137852 +g1,24219:6303093,9137852 +(1,24219:6303093,9137852:0,0,0 +) +g1,24219:6630773,9137852 +) +g1,24220:11942036,9137852 +g1,24220:12937898,9137852 +k1,24220:12937898,9137852:0 +h1,24220:23560424,9137852:0,0,0 +k1,24220:32583029,9137852:9022605 +g1,24220:32583029,9137852 +) +(1,24221:6630773,9822707:25952256,424439,106246 +h1,24221:6630773,9822707:0,0,0 +g1,24221:6962727,9822707 +g1,24221:7294681,9822707 +g1,24221:7626635,9822707 +g1,24221:7958589,9822707 +g1,24221:8290543,9822707 +g1,24221:8622497,9822707 +g1,24221:8954451,9822707 +g1,24221:9286405,9822707 +g1,24221:9618359,9822707 +g1,24221:9950313,9822707 +g1,24221:10282267,9822707 +g1,24221:10614221,9822707 +g1,24221:10946175,9822707 +g1,24221:11278129,9822707 +g1,24221:11610083,9822707 +g1,24221:11942037,9822707 +g1,24221:12273991,9822707 +g1,24221:12605945,9822707 +g1,24221:12937899,9822707 +g1,24221:13269853,9822707 +g1,24221:13601807,9822707 +g1,24221:13933761,9822707 +g1,24221:14265715,9822707 +g1,24221:14597669,9822707 +g1,24221:14929623,9822707 +g1,24221:15261577,9822707 +g1,24221:15593531,9822707 +g1,24221:15925485,9822707 +g1,24221:16257439,9822707 +g1,24221:16589393,9822707 +g1,24221:18581117,9822707 +g1,24221:19245025,9822707 +g1,24221:20572841,9822707 +k1,24221:20572841,9822707:0 +h1,24221:22564565,9822707:0,0,0 +k1,24221:32583029,9822707:10018464 +g1,24221:32583029,9822707 +) +(1,24222:6630773,10507562:25952256,424439,112852 +h1,24222:6630773,10507562:0,0,0 +g1,24222:6962727,10507562 +g1,24222:7294681,10507562 +g1,24222:7626635,10507562 +g1,24222:7958589,10507562 +g1,24222:8290543,10507562 +g1,24222:8622497,10507562 +g1,24222:8954451,10507562 +g1,24222:9286405,10507562 +g1,24222:9618359,10507562 +g1,24222:9950313,10507562 +g1,24222:10282267,10507562 +g1,24222:10614221,10507562 +g1,24222:10946175,10507562 +g1,24222:11278129,10507562 +g1,24222:11610083,10507562 +g1,24222:11942037,10507562 +g1,24222:12273991,10507562 +g1,24222:12605945,10507562 +g1,24222:12937899,10507562 +g1,24222:13269853,10507562 +g1,24222:13601807,10507562 +g1,24222:13933761,10507562 +g1,24222:14265715,10507562 +g1,24222:14597669,10507562 +g1,24222:14929623,10507562 +g1,24222:15261577,10507562 +g1,24222:15593531,10507562 +g1,24222:15925485,10507562 +g1,24222:16257439,10507562 +g1,24222:16589393,10507562 +g1,24222:18581117,10507562 +g1,24222:19245025,10507562 +h1,24222:21900657,10507562:0,0,0 +k1,24222:32583029,10507562:10682372 +g1,24222:32583029,10507562 +) +(1,24223:6630773,11192417:25952256,431045,112852 +h1,24223:6630773,11192417:0,0,0 +h1,24223:11610082,11192417:0,0,0 +k1,24223:32583030,11192417:20972948 +g1,24223:32583030,11192417 +) +(1,24233:6630773,12008344:25952256,424439,6605 +(1,24225:6630773,12008344:0,0,0 +g1,24225:6630773,12008344 +g1,24225:6630773,12008344 +g1,24225:6303093,12008344 +(1,24225:6303093,12008344:0,0,0 +) +g1,24225:6630773,12008344 +) +g1,24233:7626635,12008344 +g1,24233:8290543,12008344 +g1,24233:8954451,12008344 +g1,24233:11610083,12008344 +g1,24233:12273991,12008344 +g1,24233:12937899,12008344 +h1,24233:13269853,12008344:0,0,0 +k1,24233:32583029,12008344:19313176 +g1,24233:32583029,12008344 +) +(1,24233:6630773,12693199:25952256,424439,112852 +h1,24233:6630773,12693199:0,0,0 +g1,24233:7626635,12693199 +g1,24233:7958589,12693199 +g1,24233:8290543,12693199 +g1,24233:10614221,12693199 +h1,24233:12273991,12693199:0,0,0 +k1,24233:32583029,12693199:20309038 +g1,24233:32583029,12693199 +) +(1,24233:6630773,13378054:25952256,424439,6605 +h1,24233:6630773,13378054:0,0,0 +g1,24233:7626635,13378054 +g1,24233:7958589,13378054 +g1,24233:8290543,13378054 +g1,24233:8622497,13378054 +g1,24233:10614221,13378054 +k1,24233:10614221,13378054:0 +h1,24233:12273991,13378054:0,0,0 +k1,24233:32583029,13378054:20309038 +g1,24233:32583029,13378054 +) +(1,24233:6630773,14062909:25952256,407923,4954 +h1,24233:6630773,14062909:0,0,0 +g1,24233:7626635,14062909 +g1,24233:8290543,14062909 +g1,24233:8622497,14062909 +g1,24233:8954451,14062909 +g1,24233:9286405,14062909 +g1,24233:9618359,14062909 +g1,24233:9950313,14062909 +g1,24233:10614221,14062909 +h1,24233:10946175,14062909:0,0,0 +k1,24233:32583029,14062909:21636854 +g1,24233:32583029,14062909 +) +(1,24233:6630773,14747764:25952256,407923,4954 +h1,24233:6630773,14747764:0,0,0 +g1,24233:7626635,14747764 +g1,24233:8290543,14747764 +g1,24233:8622497,14747764 +g1,24233:8954451,14747764 +g1,24233:9286405,14747764 +g1,24233:9618359,14747764 +g1,24233:9950313,14747764 +g1,24233:10614221,14747764 +h1,24233:10946175,14747764:0,0,0 +k1,24233:32583029,14747764:21636854 +g1,24233:32583029,14747764 +) +(1,24233:6630773,15432619:25952256,407923,9908 +h1,24233:6630773,15432619:0,0,0 +g1,24233:7626635,15432619 +g1,24233:8290543,15432619 +g1,24233:8622497,15432619 +g1,24233:8954451,15432619 +g1,24233:9286405,15432619 +g1,24233:9618359,15432619 +g1,24233:9950313,15432619 +g1,24233:10614221,15432619 +h1,24233:10946175,15432619:0,0,0 +k1,24233:32583029,15432619:21636854 +g1,24233:32583029,15432619 +) +(1,24233:6630773,16117474:25952256,424439,6605 +h1,24233:6630773,16117474:0,0,0 +g1,24233:7626635,16117474 +g1,24233:8290543,16117474 +g1,24233:8954451,16117474 +g1,24233:9618359,16117474 +g1,24233:11278129,16117474 +h1,24233:12605945,16117474:0,0,0 +k1,24233:32583029,16117474:19977084 +g1,24233:32583029,16117474 +) +] +) +g1,24234:32583029,16124079 +g1,24234:6630773,16124079 +g1,24234:6630773,16124079 +g1,24234:32583029,16124079 +g1,24234:32583029,16124079 +) +h1,24234:6630773,16320687:0,0,0 +(1,24238:6630773,17185767:25952256,513147,134348 +h1,24237:6630773,17185767:983040,0,0 +k1,24237:8628583,17185767:240790 +k1,24237:9888458,17185767:240790 +k1,24237:13347066,17185767:240790 +k1,24237:17164156,17185767:240790 +k1,24237:18424031,17185767:240790 +k1,24237:20266522,17185767:240791 +k1,24237:22484533,17185767:240790 +k1,24237:24212335,17185767:240790 +k1,24237:25928340,17185767:240790 +k1,24237:27188215,17185767:240790 +k1,24237:29082478,17185767:240790 +k1,24237:31391584,17185767:240790 +k1,24237:32583029,17185767:0 +) +(1,24238:6630773,18050847:25952256,505283,134348 +k1,24237:8191232,18050847:217626 +k1,24237:10610869,18050847:217627 +k1,24237:12394150,18050847:217626 +k1,24237:13297938,18050847:217626 +k1,24237:14131602,18050847:217626 +k1,24237:16372325,18050847:217627 +k1,24237:17822028,18050847:217626 +k1,24237:20318341,18050847:217626 +h1,24237:22259517,18050847:0,0,0 +k1,24237:22477144,18050847:217627 +k1,24237:23504140,18050847:217626 +k1,24237:25219919,18050847:217626 +h1,24237:26415296,18050847:0,0,0 +k1,24237:27013686,18050847:217626 +k1,24237:28273335,18050847:217627 +k1,24237:31326048,18050847:217626 +k1,24237:32583029,18050847:0 +) +(1,24238:6630773,18915927:25952256,513147,134348 +k1,24237:8872322,18915927:173233 +k1,24237:9993207,18915927:173234 +k1,24237:11185525,18915927:173233 +k1,24237:14071949,18915927:173233 +k1,24237:15349465,18915927:173234 +k1,24237:16270464,18915927:173233 +k1,24237:18648984,18915927:173233 +k1,24237:19508380,18915927:173234 +k1,24237:20452316,18915927:173233 +k1,24237:23697877,18915927:173233 +k1,24237:24522539,18915927:173234 +k1,24237:27340805,18915927:173233 +k1,24237:28533123,18915927:173233 +k1,24237:30774673,18915927:173234 +k1,24237:31563944,18915927:173233 +k1,24237:32583029,18915927:0 +) +(1,24238:6630773,19781007:25952256,505283,7863 +k1,24238:32583028,19781007:22632856 +g1,24238:32583028,19781007 +) +v1,24240:6630773,20465862:0,393216,0 +(1,24257:6630773,28371381:25952256,8298735,196608 +g1,24257:6630773,28371381 +g1,24257:6630773,28371381 +g1,24257:6434165,28371381 +(1,24257:6434165,28371381:0,8298735,196608 +r1,24295:32779637,28371381:26345472,8495343,196608 +k1,24257:6434165,28371381:-26345472 +) +(1,24257:6434165,28371381:26345472,8298735,196608 +[1,24257:6630773,28371381:25952256,8102127,0 +(1,24242:6630773,20700299:25952256,431045,112852 +(1,24241:6630773,20700299:0,0,0 +g1,24241:6630773,20700299 +g1,24241:6630773,20700299 +g1,24241:6303093,20700299 +(1,24241:6303093,20700299:0,0,0 +) +g1,24241:6630773,20700299 +) +g1,24242:11942036,20700299 +g1,24242:12937898,20700299 +k1,24242:12937898,20700299:0 +h1,24242:23560424,20700299:0,0,0 +k1,24242:32583029,20700299:9022605 +g1,24242:32583029,20700299 +) +(1,24243:6630773,21385154:25952256,424439,106246 +h1,24243:6630773,21385154:0,0,0 +g1,24243:6962727,21385154 +g1,24243:7294681,21385154 +g1,24243:7626635,21385154 +g1,24243:7958589,21385154 +g1,24243:8290543,21385154 +g1,24243:8622497,21385154 +g1,24243:8954451,21385154 +g1,24243:9286405,21385154 +g1,24243:9618359,21385154 +g1,24243:9950313,21385154 +g1,24243:10282267,21385154 +g1,24243:10614221,21385154 +g1,24243:10946175,21385154 +g1,24243:11278129,21385154 +g1,24243:11610083,21385154 +g1,24243:11942037,21385154 +g1,24243:12273991,21385154 +g1,24243:12605945,21385154 +g1,24243:12937899,21385154 +g1,24243:13269853,21385154 +g1,24243:13601807,21385154 +g1,24243:13933761,21385154 +g1,24243:14265715,21385154 +g1,24243:14597669,21385154 +g1,24243:14929623,21385154 +g1,24243:15261577,21385154 +g1,24243:15593531,21385154 +g1,24243:15925485,21385154 +g1,24243:16257439,21385154 +g1,24243:16589393,21385154 +g1,24243:18581117,21385154 +g1,24243:19245025,21385154 +g1,24243:20572841,21385154 +k1,24243:20572841,21385154:0 +h1,24243:22564565,21385154:0,0,0 +k1,24243:32583029,21385154:10018464 +g1,24243:32583029,21385154 +) +(1,24244:6630773,22070009:25952256,424439,112852 +h1,24244:6630773,22070009:0,0,0 +g1,24244:6962727,22070009 +g1,24244:7294681,22070009 +g1,24244:7626635,22070009 +g1,24244:7958589,22070009 +g1,24244:8290543,22070009 +g1,24244:8622497,22070009 +g1,24244:8954451,22070009 +g1,24244:9286405,22070009 +g1,24244:9618359,22070009 +g1,24244:9950313,22070009 +g1,24244:10282267,22070009 +g1,24244:10614221,22070009 +g1,24244:10946175,22070009 +g1,24244:11278129,22070009 +g1,24244:11610083,22070009 +g1,24244:11942037,22070009 +g1,24244:12273991,22070009 +g1,24244:12605945,22070009 +g1,24244:12937899,22070009 +g1,24244:13269853,22070009 +g1,24244:13601807,22070009 +g1,24244:13933761,22070009 +g1,24244:14265715,22070009 +g1,24244:14597669,22070009 +g1,24244:14929623,22070009 +g1,24244:15261577,22070009 +g1,24244:15593531,22070009 +g1,24244:15925485,22070009 +g1,24244:16257439,22070009 +g1,24244:16589393,22070009 +g1,24244:18581117,22070009 +g1,24244:19245025,22070009 +k1,24244:19245025,22070009:0 +h1,24244:21900657,22070009:0,0,0 +k1,24244:32583029,22070009:10682372 +g1,24244:32583029,22070009 +) +(1,24245:6630773,22754864:25952256,424439,86428 +h1,24245:6630773,22754864:0,0,0 +g1,24245:6962727,22754864 +g1,24245:7294681,22754864 +g1,24245:7626635,22754864 +g1,24245:7958589,22754864 +g1,24245:8290543,22754864 +g1,24245:8622497,22754864 +g1,24245:8954451,22754864 +g1,24245:9286405,22754864 +g1,24245:9618359,22754864 +g1,24245:9950313,22754864 +g1,24245:10282267,22754864 +g1,24245:10614221,22754864 +g1,24245:10946175,22754864 +g1,24245:11278129,22754864 +g1,24245:11610083,22754864 +g1,24245:11942037,22754864 +g1,24245:12273991,22754864 +g1,24245:12605945,22754864 +g1,24245:12937899,22754864 +g1,24245:13269853,22754864 +g1,24245:13601807,22754864 +g1,24245:13933761,22754864 +g1,24245:14265715,22754864 +g1,24245:14597669,22754864 +g1,24245:14929623,22754864 +g1,24245:15261577,22754864 +g1,24245:15593531,22754864 +g1,24245:15925485,22754864 +g1,24245:16257439,22754864 +g1,24245:16589393,22754864 +g1,24245:19908932,22754864 +g1,24245:20572840,22754864 +g1,24245:22896518,22754864 +h1,24245:24556288,22754864:0,0,0 +k1,24245:32583029,22754864:8026741 +g1,24245:32583029,22754864 +) +(1,24246:6630773,23439719:25952256,431045,112852 +h1,24246:6630773,23439719:0,0,0 +h1,24246:11610082,23439719:0,0,0 +k1,24246:32583030,23439719:20972948 +g1,24246:32583030,23439719 +) +(1,24256:6630773,24255646:25952256,424439,6605 +(1,24248:6630773,24255646:0,0,0 +g1,24248:6630773,24255646 +g1,24248:6630773,24255646 +g1,24248:6303093,24255646 +(1,24248:6303093,24255646:0,0,0 +) +g1,24248:6630773,24255646 +) +g1,24256:7626635,24255646 +g1,24256:8290543,24255646 +g1,24256:8954451,24255646 +g1,24256:11610083,24255646 +g1,24256:12273991,24255646 +g1,24256:12937899,24255646 +h1,24256:13269853,24255646:0,0,0 +k1,24256:32583029,24255646:19313176 +g1,24256:32583029,24255646 +) +(1,24256:6630773,24940501:25952256,398014,0 +h1,24256:6630773,24940501:0,0,0 +g1,24256:7626635,24940501 +g1,24256:7958589,24940501 +g1,24256:8290543,24940501 +g1,24256:8622497,24940501 +g1,24256:8954451,24940501 +g1,24256:9286405,24940501 +g1,24256:9618359,24940501 +g1,24256:10282267,24940501 +h1,24256:10614221,24940501:0,0,0 +k1,24256:32583029,24940501:21968808 +g1,24256:32583029,24940501 +) +(1,24256:6630773,25625356:25952256,424439,6605 +h1,24256:6630773,25625356:0,0,0 +g1,24256:7626635,25625356 +g1,24256:7958589,25625356 +g1,24256:8290543,25625356 +g1,24256:10282267,25625356 +k1,24256:10282267,25625356:0 +h1,24256:11942037,25625356:0,0,0 +k1,24256:32583029,25625356:20640992 +g1,24256:32583029,25625356 +) +(1,24256:6630773,26310211:25952256,407923,4954 +h1,24256:6630773,26310211:0,0,0 +g1,24256:7626635,26310211 +g1,24256:8290543,26310211 +g1,24256:8622497,26310211 +g1,24256:8954451,26310211 +g1,24256:9286405,26310211 +g1,24256:9618359,26310211 +g1,24256:10282267,26310211 +h1,24256:10614221,26310211:0,0,0 +k1,24256:32583029,26310211:21968808 +g1,24256:32583029,26310211 +) +(1,24256:6630773,26995066:25952256,407923,4954 +h1,24256:6630773,26995066:0,0,0 +g1,24256:7626635,26995066 +g1,24256:8290543,26995066 +g1,24256:8622497,26995066 +g1,24256:8954451,26995066 +g1,24256:9286405,26995066 +g1,24256:9618359,26995066 +g1,24256:10282267,26995066 +h1,24256:10614221,26995066:0,0,0 +k1,24256:32583029,26995066:21968808 +g1,24256:32583029,26995066 +) +(1,24256:6630773,27679921:25952256,407923,9908 +h1,24256:6630773,27679921:0,0,0 +g1,24256:7626635,27679921 +g1,24256:8290543,27679921 +g1,24256:8622497,27679921 +g1,24256:8954451,27679921 +g1,24256:9286405,27679921 +g1,24256:9618359,27679921 +g1,24256:10282267,27679921 +h1,24256:10614221,27679921:0,0,0 +k1,24256:32583029,27679921:21968808 +g1,24256:32583029,27679921 +) +(1,24256:6630773,28364776:25952256,424439,6605 +h1,24256:6630773,28364776:0,0,0 +g1,24256:7626635,28364776 +g1,24256:8290543,28364776 +g1,24256:8954451,28364776 +g1,24256:9618359,28364776 +g1,24256:11278129,28364776 +h1,24256:12605945,28364776:0,0,0 +k1,24256:32583029,28364776:19977084 +g1,24256:32583029,28364776 +) +] +) +g1,24257:32583029,28371381 +g1,24257:6630773,28371381 +g1,24257:6630773,28371381 +g1,24257:32583029,28371381 +g1,24257:32583029,28371381 +) +h1,24257:6630773,28567989:0,0,0 +(1,24260:6630773,30684807:25952256,555811,12975 +(1,24260:6630773,30684807:2899444,534184,12975 +g1,24260:6630773,30684807 +g1,24260:9530217,30684807 +) +k1,24260:32583028,30684807:21176320 +g1,24260:32583028,30684807 +) +(1,24265:6630773,31943103:25952256,513147,134348 +k1,24264:9413213,31943103:247507 +k1,24264:11334510,31943103:247508 +k1,24264:12686299,31943103:247507 +k1,24264:13681573,31943103:247508 +k1,24264:15579277,31943103:247507 +k1,24264:18310599,31943103:247507 +k1,24264:19209535,31943103:247508 +k1,24264:21426399,31943103:247507 +k1,24264:22360069,31943103:247508 +k1,24264:23065673,31943103:247507 +k1,24264:24735967,31943103:247507 +k1,24264:26328929,31943103:247508 +k1,24264:29602233,31943103:247507 +k1,24264:30501169,31943103:247508 +k1,24264:31563944,31943103:247507 +k1,24264:32583029,31943103:0 +) +(1,24265:6630773,32808183:25952256,513147,134348 +k1,24264:8776362,32808183:223418 +k1,24264:10769907,32808183:223418 +k1,24264:13928027,32808183:223418 +k1,24264:14609542,32808183:223418 +k1,24264:15364457,32808183:223418 +k1,24264:17238072,32808183:223418 +k1,24264:22452712,32808183:223418 +k1,24264:24070081,32808183:223418 +k1,24264:27319296,32808183:223418 +k1,24264:29009410,32808183:223418 +k1,24264:30180479,32808183:223418 +k1,24264:32583029,32808183:0 +) +(1,24265:6630773,33673263:25952256,513147,134348 +k1,24264:8084289,33673263:262071 +k1,24264:10604075,33673263:262071 +k1,24264:13643562,33673263:262071 +k1,24264:17529119,33673263:262071 +k1,24264:18982635,33673263:262071 +k1,24264:22927174,33673263:262071 +k1,24264:23805283,33673263:262071 +k1,24264:26829697,33673263:262071 +k1,24264:29602452,33673263:262071 +k1,24264:32583029,33673263:0 +) +(1,24265:6630773,34538343:25952256,513147,134348 +k1,24264:7878730,34538343:228872 +k1,24264:9763697,34538343:228872 +k1,24264:12014355,34538343:228872 +k1,24264:13903909,34538343:228872 +k1,24264:16359694,34538343:228872 +k1,24264:17239994,34538343:228872 +k1,24264:19491961,34538343:228871 +k1,24264:20178930,34538343:228872 +k1,24264:22419757,34538343:228872 +k1,24264:25237301,34538343:228872 +k1,24264:27816949,34538343:228872 +k1,24264:28705113,34538343:228872 +k1,24264:29289845,34538343:228872 +k1,24264:32583029,34538343:0 +) +(1,24265:6630773,35403423:25952256,505283,126483 +g1,24264:7481430,35403423 +g1,24264:8428425,35403423 +k1,24265:32583029,35403423:21152400 +g1,24265:32583029,35403423 +) +(1,24267:6630773,36268503:25952256,505283,134348 +h1,24266:6630773,36268503:983040,0,0 +k1,24266:10701431,36268503:297750 +(1,24266:10701431,36268503:0,452978,115847 +r1,24295:14576815,36268503:3875384,568825,115847 +k1,24266:10701431,36268503:-3875384 +) +(1,24266:10701431,36268503:3875384,452978,115847 +k1,24266:10701431,36268503:3277 +h1,24266:14573538,36268503:0,411205,112570 +) +k1,24266:14874565,36268503:297750 +k1,24266:16276597,36268503:297750 +k1,24266:17322113,36268503:297750 +k1,24266:19133089,36268503:297750 +k1,24266:22170243,36268503:297749 +k1,24266:23487078,36268503:297750 +k1,24266:27078012,36268503:297750 +k1,24266:28137290,36268503:297750 +k1,24266:30346725,36268503:297750 +k1,24266:31841162,36268503:297750 +k1,24267:32583029,36268503:0 +) +(1,24267:6630773,37133583:25952256,513147,134348 +k1,24266:9014673,37133583:240873 +k1,24266:10935890,37133583:240874 +k1,24266:11708260,37133583:240873 +k1,24266:12304993,37133583:240873 +k1,24266:13935229,37133583:240873 +k1,24266:16226069,37133583:240874 +k1,24266:17658387,37133583:240873 +k1,24266:20874595,37133583:240873 +k1,24266:22134554,37133583:240874 +k1,24266:26399993,37133583:240873 +k1,24266:27308022,37133583:240873 +k1,24266:27963697,37133583:240832 +k1,24266:30784722,37133583:240873 +k1,24266:32583029,37133583:0 +) +(1,24267:6630773,37998663:25952256,513147,134348 +g1,24266:9804681,37998663 +g1,24266:12717101,37998663 +g1,24266:13907890,37998663 +g1,24266:14887653,37998663 +g1,24266:17155198,37998663 +g1,24266:20515228,37998663 +g1,24266:21981923,37998663 +g1,24266:24405444,37998663 +g1,24266:25366201,37998663 +k1,24267:32583029,37998663:4898820 +g1,24267:32583029,37998663 +) +v1,24269:6630773,38683518:0,393216,0 +(1,24295:6630773,45222630:25952256,6932328,196608 +g1,24295:6630773,45222630 +g1,24295:6630773,45222630 +g1,24295:6434165,45222630 +(1,24295:6434165,45222630:0,6932328,196608 +r1,24295:32779637,45222630:26345472,7128936,196608 +k1,24295:6434165,45222630:-26345472 +) +(1,24295:6434165,45222630:26345472,6932328,196608 +[1,24295:6630773,45222630:25952256,6735720,0 +(1,24271:6630773,38917955:25952256,431045,86428 +(1,24270:6630773,38917955:0,0,0 +g1,24270:6630773,38917955 +g1,24270:6630773,38917955 +g1,24270:6303093,38917955 +(1,24270:6303093,38917955:0,0,0 +) +g1,24270:6630773,38917955 +) +g1,24271:11278128,38917955 +g1,24271:12273990,38917955 +k1,24271:12273990,38917955:0 +h1,24271:22564562,38917955:0,0,0 +k1,24271:32583029,38917955:10018467 +g1,24271:32583029,38917955 +) +(1,24272:6630773,39602810:25952256,424439,106246 +h1,24272:6630773,39602810:0,0,0 +g1,24272:6962727,39602810 +g1,24272:7294681,39602810 +g1,24272:7626635,39602810 +g1,24272:7958589,39602810 +g1,24272:8290543,39602810 +g1,24272:8622497,39602810 +g1,24272:8954451,39602810 +g1,24272:9286405,39602810 +g1,24272:9618359,39602810 +g1,24272:9950313,39602810 +g1,24272:10282267,39602810 +g1,24272:10614221,39602810 +g1,24272:10946175,39602810 +g1,24272:11278129,39602810 +g1,24272:11610083,39602810 +g1,24272:11942037,39602810 +g1,24272:12273991,39602810 +g1,24272:12605945,39602810 +g1,24272:12937899,39602810 +g1,24272:13269853,39602810 +g1,24272:13601807,39602810 +g1,24272:13933761,39602810 +g1,24272:14265715,39602810 +g1,24272:14597669,39602810 +g1,24272:14929623,39602810 +g1,24272:15261577,39602810 +g1,24272:15593531,39602810 +g1,24272:18913070,39602810 +g1,24272:19576978,39602810 +g1,24272:20904794,39602810 +h1,24272:22896518,39602810:0,0,0 +k1,24272:32583029,39602810:9686511 +g1,24272:32583029,39602810 +) +(1,24273:6630773,40287665:25952256,431045,52847 +h1,24273:6630773,40287665:0,0,0 +h1,24273:10946174,40287665:0,0,0 +k1,24273:32583030,40287665:21636856 +g1,24273:32583030,40287665 +) +(1,24287:6630773,41103592:25952256,424439,112852 +(1,24275:6630773,41103592:0,0,0 +g1,24275:6630773,41103592 +g1,24275:6630773,41103592 +g1,24275:6303093,41103592 +(1,24275:6303093,41103592:0,0,0 +) +g1,24275:6630773,41103592 +) +g1,24287:7626635,41103592 +g1,24287:7958589,41103592 +g1,24287:8290543,41103592 +g1,24287:8622497,41103592 +g1,24287:10946175,41103592 +g1,24287:12937899,41103592 +h1,24287:16589392,41103592:0,0,0 +k1,24287:32583029,41103592:15993637 +g1,24287:32583029,41103592 +) +(1,24287:6630773,41788447:25952256,407923,9908 +h1,24287:6630773,41788447:0,0,0 +g1,24287:7626635,41788447 +g1,24287:8290543,41788447 +g1,24287:8622497,41788447 +g1,24287:8954451,41788447 +g1,24287:9286405,41788447 +g1,24287:9618359,41788447 +g1,24287:9950313,41788447 +g1,24287:10282267,41788447 +g1,24287:10946175,41788447 +g1,24287:11278129,41788447 +g1,24287:11610083,41788447 +g1,24287:11942037,41788447 +g1,24287:12273991,41788447 +g1,24287:12937899,41788447 +g1,24287:13269853,41788447 +g1,24287:13601807,41788447 +g1,24287:13933761,41788447 +g1,24287:14265715,41788447 +g1,24287:14597669,41788447 +g1,24287:14929623,41788447 +g1,24287:15261577,41788447 +g1,24287:15593531,41788447 +h1,24287:16589393,41788447:0,0,0 +k1,24287:32583029,41788447:15993636 +g1,24287:32583029,41788447 +) +(1,24287:6630773,42473302:25952256,407923,9908 +h1,24287:6630773,42473302:0,0,0 +g1,24287:7626635,42473302 +g1,24287:8290543,42473302 +g1,24287:8622497,42473302 +g1,24287:8954451,42473302 +g1,24287:9286405,42473302 +g1,24287:9618359,42473302 +g1,24287:9950313,42473302 +g1,24287:10282267,42473302 +g1,24287:10946175,42473302 +g1,24287:11278129,42473302 +g1,24287:11610083,42473302 +g1,24287:11942037,42473302 +g1,24287:12273991,42473302 +g1,24287:12937899,42473302 +g1,24287:13269853,42473302 +g1,24287:13601807,42473302 +g1,24287:13933761,42473302 +g1,24287:14265715,42473302 +g1,24287:14597669,42473302 +g1,24287:14929623,42473302 +g1,24287:15261577,42473302 +g1,24287:15593531,42473302 +h1,24287:16589393,42473302:0,0,0 +k1,24287:32583029,42473302:15993636 +g1,24287:32583029,42473302 +) +(1,24287:6630773,43158157:25952256,407923,9908 +h1,24287:6630773,43158157:0,0,0 +g1,24287:7626635,43158157 +g1,24287:8290543,43158157 +g1,24287:8622497,43158157 +g1,24287:8954451,43158157 +g1,24287:9286405,43158157 +g1,24287:9618359,43158157 +g1,24287:9950313,43158157 +g1,24287:10282267,43158157 +g1,24287:10946175,43158157 +g1,24287:11278129,43158157 +g1,24287:11610083,43158157 +g1,24287:11942037,43158157 +g1,24287:12273991,43158157 +g1,24287:12937899,43158157 +g1,24287:13269853,43158157 +g1,24287:13601807,43158157 +g1,24287:13933761,43158157 +g1,24287:14265715,43158157 +g1,24287:14597669,43158157 +g1,24287:14929623,43158157 +g1,24287:15261577,43158157 +g1,24287:15593531,43158157 +h1,24287:16589393,43158157:0,0,0 +k1,24287:32583029,43158157:15993636 +g1,24287:32583029,43158157 +) +(1,24287:6630773,43843012:25952256,407923,9908 +h1,24287:6630773,43843012:0,0,0 +g1,24287:7626635,43843012 +g1,24287:8290543,43843012 +g1,24287:8622497,43843012 +g1,24287:8954451,43843012 +g1,24287:9286405,43843012 +g1,24287:9618359,43843012 +g1,24287:9950313,43843012 +g1,24287:10282267,43843012 +g1,24287:10946175,43843012 +g1,24287:11278129,43843012 +g1,24287:11610083,43843012 +g1,24287:11942037,43843012 +g1,24287:12273991,43843012 +g1,24287:12937899,43843012 +g1,24287:13269853,43843012 +g1,24287:13601807,43843012 +g1,24287:13933761,43843012 +g1,24287:14265715,43843012 +g1,24287:14597669,43843012 +g1,24287:14929623,43843012 +g1,24287:15261577,43843012 +g1,24287:15593531,43843012 +h1,24287:16589393,43843012:0,0,0 +k1,24287:32583029,43843012:15993636 +g1,24287:32583029,43843012 +) +(1,24287:6630773,44527867:25952256,407923,9908 +h1,24287:6630773,44527867:0,0,0 +g1,24287:7626635,44527867 +g1,24287:8290543,44527867 +g1,24287:8622497,44527867 +g1,24287:8954451,44527867 +g1,24287:9286405,44527867 +g1,24287:9618359,44527867 +g1,24287:9950313,44527867 +g1,24287:10282267,44527867 +g1,24287:10946175,44527867 +g1,24287:11278129,44527867 +g1,24287:11610083,44527867 +g1,24287:11942037,44527867 +g1,24287:12273991,44527867 +g1,24287:12937899,44527867 +g1,24287:13269853,44527867 +g1,24287:13601807,44527867 +g1,24287:13933761,44527867 +g1,24287:14265715,44527867 +g1,24287:14597669,44527867 +g1,24287:14929623,44527867 +g1,24287:15261577,44527867 +g1,24287:15593531,44527867 +h1,24287:16589393,44527867:0,0,0 +k1,24287:32583029,44527867:15993636 +g1,24287:32583029,44527867 +) +(1,24287:6630773,45212722:25952256,424439,9908 +h1,24287:6630773,45212722:0,0,0 +g1,24287:7626635,45212722 +g1,24287:8290543,45212722 +g1,24287:8622497,45212722 +g1,24287:8954451,45212722 +g1,24287:9286405,45212722 +g1,24287:9618359,45212722 +g1,24287:9950313,45212722 +g1,24287:10282267,45212722 +g1,24287:10946175,45212722 +g1,24287:11278129,45212722 +g1,24287:11610083,45212722 +g1,24287:11942037,45212722 +g1,24287:12273991,45212722 +g1,24287:12937899,45212722 +g1,24287:13269853,45212722 +g1,24287:13601807,45212722 +g1,24287:13933761,45212722 +g1,24287:14265715,45212722 +g1,24287:14597669,45212722 +g1,24287:14929623,45212722 +g1,24287:15261577,45212722 +g1,24287:15593531,45212722 +h1,24287:16589393,45212722:0,0,0 +k1,24287:32583029,45212722:15993636 +g1,24287:32583029,45212722 +) +] +) +g1,24295:32583029,45222630 +g1,24295:6630773,45222630 +g1,24295:6630773,45222630 +g1,24295:32583029,45222630 +g1,24295:32583029,45222630 +) +] +(1,24295:32583029,45706769:0,0,0 +g1,24295:32583029,45706769 +) +) +] +(1,24295:6630773,47279633:25952256,0,0 +h1,24295:6630773,47279633:25952256,0,0 +) +] +(1,24295:4262630,4025873:0,0,0 +[1,24295:-473656,4025873:0,0,0 +(1,24295:-473656,-710413:0,0,0 +(1,24295:-473656,-710413:0,0,0 +g1,24295:-473656,-710413 +) +g1,24295:-473656,-710413 ) ] ) ] !31269 -}417 -Input:4547:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4548:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4549:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4550:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}418 Input:4551:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4552:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4553:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4554:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4555:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{418 -[1,24335:4262630,47279633:28320399,43253760,0 -(1,24335:4262630,4025873:0,0,0 -[1,24335:-473656,4025873:0,0,0 -(1,24335:-473656,-710413:0,0,0 -(1,24335:-473656,-644877:0,0,0 -k1,24335:-473656,-644877:-65536 +{419 +[1,24333:4262630,47279633:28320399,43253760,0 +(1,24333:4262630,4025873:0,0,0 +[1,24333:-473656,4025873:0,0,0 +(1,24333:-473656,-710413:0,0,0 +(1,24333:-473656,-644877:0,0,0 +k1,24333:-473656,-644877:-65536 ) -(1,24335:-473656,4736287:0,0,0 -k1,24335:-473656,4736287:5209943 +(1,24333:-473656,4736287:0,0,0 +k1,24333:-473656,4736287:5209943 ) -g1,24335:-473656,-710413 +g1,24333:-473656,-710413 ) ] ) -[1,24335:6630773,47279633:25952256,43253760,0 -[1,24335:6630773,4812305:25952256,786432,0 -(1,24335:6630773,4812305:25952256,505283,11795 -(1,24335:6630773,4812305:25952256,505283,11795 -g1,24335:3078558,4812305 -[1,24335:3078558,4812305:0,0,0 -(1,24335:3078558,2439708:0,1703936,0 -k1,24335:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24335:2537886,2439708:1179648,16384,0 +[1,24333:6630773,47279633:25952256,43253760,0 +[1,24333:6630773,4812305:25952256,786432,0 +(1,24333:6630773,4812305:25952256,505283,11795 +(1,24333:6630773,4812305:25952256,505283,11795 +g1,24333:3078558,4812305 +[1,24333:3078558,4812305:0,0,0 +(1,24333:3078558,2439708:0,1703936,0 +k1,24333:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24333:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24335:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24333:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24335:3078558,4812305:0,0,0 -(1,24335:3078558,2439708:0,1703936,0 -g1,24335:29030814,2439708 -g1,24335:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24335:36151628,1915420:16384,1179648,0 +[1,24333:3078558,4812305:0,0,0 +(1,24333:3078558,2439708:0,1703936,0 +g1,24333:29030814,2439708 +g1,24333:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24333:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24335:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24333:37855564,2439708:1179648,16384,0 ) ) -k1,24335:3078556,2439708:-34777008 +k1,24333:3078556,2439708:-34777008 ) ] -[1,24335:3078558,4812305:0,0,0 -(1,24335:3078558,49800853:0,16384,2228224 -k1,24335:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24335:2537886,49800853:1179648,16384,0 +[1,24333:3078558,4812305:0,0,0 +(1,24333:3078558,49800853:0,16384,2228224 +k1,24333:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24333:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24335:3078558,51504789:16384,1179648,0 -) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 -) -] -) -) -) -] -[1,24335:3078558,4812305:0,0,0 -(1,24335:3078558,49800853:0,16384,2228224 -g1,24335:29030814,49800853 -g1,24335:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24335:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24335:37855564,49800853:1179648,16384,0 -) -) -k1,24335:3078556,49800853:-34777008 -) -] -g1,24335:6630773,4812305 -g1,24335:6630773,4812305 -g1,24335:10349285,4812305 -k1,24335:31387653,4812305:21038368 -) -) -] -[1,24335:6630773,45706769:25952256,40108032,0 -(1,24335:6630773,45706769:25952256,40108032,0 -(1,24335:6630773,45706769:0,0,0 -g1,24335:6630773,45706769 -) -[1,24335:6630773,45706769:25952256,40108032,0 -v1,24297:6630773,6254097:0,393216,0 -(1,24297:6630773,10859807:25952256,4998926,196608 -g1,24297:6630773,10859807 -g1,24297:6630773,10859807 -g1,24297:6434165,10859807 -(1,24297:6434165,10859807:0,4998926,196608 -r1,24335:32779637,10859807:26345472,5195534,196608 -k1,24297:6434165,10859807:-26345472 -) -(1,24297:6434165,10859807:26345472,4998926,196608 -[1,24297:6630773,10859807:25952256,4802318,0 -(1,24289:6630773,6481928:25952256,424439,9908 -h1,24289:6630773,6481928:0,0,0 -g1,24289:7626635,6481928 -g1,24289:8290543,6481928 -g1,24289:8622497,6481928 -g1,24289:8954451,6481928 -g1,24289:9286405,6481928 -g1,24289:9618359,6481928 -g1,24289:9950313,6481928 -g1,24289:10282267,6481928 -g1,24289:10946175,6481928 -g1,24289:11278129,6481928 -g1,24289:11610083,6481928 -g1,24289:11942037,6481928 -g1,24289:12273991,6481928 -g1,24289:12937899,6481928 -g1,24289:13269853,6481928 -g1,24289:13601807,6481928 -g1,24289:13933761,6481928 -g1,24289:14265715,6481928 -g1,24289:14597669,6481928 -g1,24289:14929623,6481928 -g1,24289:15261577,6481928 -g1,24289:15593531,6481928 -h1,24289:16589393,6481928:0,0,0 -k1,24289:32583029,6481928:15993636 -g1,24289:32583029,6481928 -) -(1,24289:6630773,7166783:25952256,424439,9908 -h1,24289:6630773,7166783:0,0,0 -g1,24289:7626635,7166783 -g1,24289:8290543,7166783 -g1,24289:8622497,7166783 -g1,24289:8954451,7166783 -g1,24289:9286405,7166783 -g1,24289:9618359,7166783 -g1,24289:9950313,7166783 -g1,24289:10282267,7166783 -g1,24289:10946175,7166783 -g1,24289:11278129,7166783 -g1,24289:11610083,7166783 -g1,24289:11942037,7166783 -g1,24289:12273991,7166783 -g1,24289:12937899,7166783 -g1,24289:13269853,7166783 -g1,24289:13601807,7166783 -g1,24289:13933761,7166783 -g1,24289:14265715,7166783 -g1,24289:14597669,7166783 -g1,24289:14929623,7166783 -g1,24289:15261577,7166783 -g1,24289:15593531,7166783 -h1,24289:16589393,7166783:0,0,0 -k1,24289:32583029,7166783:15993636 -g1,24289:32583029,7166783 -) -(1,24289:6630773,7851638:25952256,424439,9908 -h1,24289:6630773,7851638:0,0,0 -g1,24289:7626635,7851638 -g1,24289:8290543,7851638 -g1,24289:8622497,7851638 -g1,24289:8954451,7851638 -g1,24289:9286405,7851638 -g1,24289:9618359,7851638 -g1,24289:9950313,7851638 -g1,24289:10282267,7851638 -g1,24289:10946175,7851638 -g1,24289:11278129,7851638 -g1,24289:11610083,7851638 -g1,24289:11942037,7851638 -g1,24289:12273991,7851638 -g1,24289:12937899,7851638 -g1,24289:13269853,7851638 -g1,24289:13601807,7851638 -g1,24289:13933761,7851638 -g1,24289:14265715,7851638 -g1,24289:14597669,7851638 -g1,24289:14929623,7851638 -g1,24289:15261577,7851638 -g1,24289:15593531,7851638 -h1,24289:16589393,7851638:0,0,0 -k1,24289:32583029,7851638:15993636 -g1,24289:32583029,7851638 -) -(1,24289:6630773,8536493:25952256,424439,9908 -h1,24289:6630773,8536493:0,0,0 -g1,24289:7626635,8536493 -g1,24289:8622497,8536493 -g1,24289:8954451,8536493 -g1,24289:9286405,8536493 -g1,24289:9618359,8536493 -g1,24289:9950313,8536493 -g1,24289:10946175,8536493 -g1,24289:11278129,8536493 -g1,24289:11610083,8536493 -g1,24289:11942037,8536493 -g1,24289:12273991,8536493 -g1,24289:12937899,8536493 -g1,24289:13269853,8536493 -g1,24289:13601807,8536493 -g1,24289:13933761,8536493 -g1,24289:14265715,8536493 -g1,24289:14597669,8536493 -g1,24289:14929623,8536493 -g1,24289:15261577,8536493 -g1,24289:15593531,8536493 -h1,24289:16589393,8536493:0,0,0 -k1,24289:32583029,8536493:15993636 -g1,24289:32583029,8536493 -) -(1,24291:6630773,9352420:25952256,431045,106246 -(1,24290:6630773,9352420:0,0,0 -g1,24290:6630773,9352420 -g1,24290:6630773,9352420 -g1,24290:6303093,9352420 -(1,24290:6303093,9352420:0,0,0 -) -g1,24290:6630773,9352420 -) -k1,24291:6630773,9352420:0 -g1,24291:13933760,9352420 -h1,24291:15925484,9352420:0,0,0 -k1,24291:32583029,9352420:16657545 -g1,24291:32583029,9352420 -) -(1,24296:6630773,10168347:25952256,424439,112852 -(1,24293:6630773,10168347:0,0,0 -g1,24293:6630773,10168347 -g1,24293:6630773,10168347 -g1,24293:6303093,10168347 -(1,24293:6303093,10168347:0,0,0 -) -g1,24293:6630773,10168347 -) -g1,24296:7626635,10168347 -g1,24296:7958589,10168347 -g1,24296:8290543,10168347 -g1,24296:8622497,10168347 -g1,24296:8954451,10168347 -g1,24296:9286405,10168347 -g1,24296:11610083,10168347 -g1,24296:11942037,10168347 -g1,24296:12273991,10168347 -g1,24296:12605945,10168347 -g1,24296:12937899,10168347 -g1,24296:13269853,10168347 -g1,24296:13601807,10168347 -g1,24296:15593531,10168347 -h1,24296:19245024,10168347:0,0,0 -k1,24296:32583029,10168347:13338005 -g1,24296:32583029,10168347 -) -(1,24296:6630773,10853202:25952256,424439,6605 -h1,24296:6630773,10853202:0,0,0 -g1,24296:7626635,10853202 -g1,24296:7958589,10853202 -g1,24296:8290543,10853202 -g1,24296:11610082,10853202 -g1,24296:15593529,10853202 -g1,24296:15925483,10853202 -g1,24296:16257437,10853202 -h1,24296:19245022,10853202:0,0,0 -k1,24296:32583029,10853202:13338007 -g1,24296:32583029,10853202 -) -] -) -g1,24297:32583029,10859807 -g1,24297:6630773,10859807 -g1,24297:6630773,10859807 -g1,24297:32583029,10859807 -g1,24297:32583029,10859807 -) -h1,24297:6630773,11056415:0,0,0 -(1,24301:6630773,11921495:25952256,513147,115847 -h1,24300:6630773,11921495:983040,0,0 -k1,24300:9313040,11921495:220079 -k1,24300:12228616,11921495:220080 -(1,24300:12228616,11921495:0,452978,115847 -r1,24335:16455712,11921495:4227096,568825,115847 -k1,24300:12228616,11921495:-4227096 -) -(1,24300:12228616,11921495:4227096,452978,115847 -k1,24300:12228616,11921495:3277 -h1,24300:16452435,11921495:0,411205,112570 -) -k1,24300:16675791,11921495:220079 -k1,24300:17764223,11921495:220080 -k1,24300:19088584,11921495:220079 -k1,24300:20923471,11921495:220080 -k1,24300:22532913,11921495:220079 -k1,24300:24959590,11921495:220080 -k1,24300:26245940,11921495:220079 -k1,24300:27117448,11921495:220080 -k1,24300:28959543,11921495:220079 -k1,24300:32583029,11921495:0 -) -(1,24301:6630773,12786575:25952256,505283,134348 -g1,24300:8021447,12786575 -g1,24300:9687372,12786575 -g1,24300:12266869,12786575 -g1,24300:13749293,12786575 -g1,24300:17572008,12786575 -g1,24300:18422665,12786575 -g1,24300:19392597,12786575 -g1,24300:22082849,12786575 -k1,24301:32583029,12786575:7269255 -g1,24301:32583029,12786575 -) -v1,24303:6630773,13471430:0,393216,0 -(1,24315:6630773,19284347:25952256,6206133,196608 -g1,24315:6630773,19284347 -g1,24315:6630773,19284347 -g1,24315:6434165,19284347 -(1,24315:6434165,19284347:0,6206133,196608 -r1,24335:32779637,19284347:26345472,6402741,196608 -k1,24315:6434165,19284347:-26345472 -) -(1,24315:6434165,19284347:26345472,6206133,196608 -[1,24315:6630773,19284347:25952256,6009525,0 -(1,24305:6630773,13699261:25952256,424439,79822 -(1,24304:6630773,13699261:0,0,0 -g1,24304:6630773,13699261 -g1,24304:6630773,13699261 -g1,24304:6303093,13699261 -(1,24304:6303093,13699261:0,0,0 -) -g1,24304:6630773,13699261 -) -k1,24305:6630773,13699261:0 -h1,24305:11942036,13699261:0,0,0 -k1,24305:32583028,13699261:20640992 -g1,24305:32583028,13699261 -) -(1,24306:6630773,14384116:25952256,431045,106246 -h1,24306:6630773,14384116:0,0,0 -g1,24306:9286405,14384116 -g1,24306:10282267,14384116 -g1,24306:14597668,14384116 -g1,24306:15261576,14384116 -g1,24306:17253300,14384116 -g1,24306:17917208,14384116 -g1,24306:18581116,14384116 -h1,24306:23228471,14384116:0,0,0 -k1,24306:32583029,14384116:9354558 -g1,24306:32583029,14384116 -) -(1,24307:6630773,15068971:25952256,424439,106246 -h1,24307:6630773,15068971:0,0,0 -k1,24307:6630773,15068971:0 -h1,24307:12937897,15068971:0,0,0 -k1,24307:32583029,15068971:19645132 -g1,24307:32583029,15068971 -) -(1,24308:6630773,15753826:25952256,431045,106246 -h1,24308:6630773,15753826:0,0,0 -g1,24308:6962727,15753826 -g1,24308:7294681,15753826 -g1,24308:7626635,15753826 -g1,24308:7958589,15753826 -g1,24308:8290543,15753826 -g1,24308:8622497,15753826 -g1,24308:8954451,15753826 -g1,24308:9286405,15753826 -g1,24308:9618359,15753826 -g1,24308:9950313,15753826 -g1,24308:10282267,15753826 -g1,24308:11942037,15753826 -g1,24308:12605945,15753826 -k1,24308:12605945,15753826:0 -h1,24308:20240885,15753826:0,0,0 -k1,24308:32583029,15753826:12342144 -g1,24308:32583029,15753826 -) -(1,24309:6630773,16438681:25952256,431045,106246 -h1,24309:6630773,16438681:0,0,0 -g1,24309:6962727,16438681 -g1,24309:7294681,16438681 -g1,24309:7626635,16438681 -g1,24309:7958589,16438681 -g1,24309:8290543,16438681 -g1,24309:8622497,16438681 -g1,24309:8954451,16438681 -g1,24309:9286405,16438681 -g1,24309:9618359,16438681 -g1,24309:9950313,16438681 -g1,24309:10282267,16438681 -g1,24309:13601806,16438681 -g1,24309:14265714,16438681 -g1,24309:16589392,16438681 -h1,24309:18581116,16438681:0,0,0 -k1,24309:32583029,16438681:14001913 -g1,24309:32583029,16438681 -) -(1,24310:6630773,17123536:25952256,424439,106246 -h1,24310:6630773,17123536:0,0,0 -k1,24310:6630773,17123536:0 -h1,24310:12937897,17123536:0,0,0 -k1,24310:32583029,17123536:19645132 -g1,24310:32583029,17123536 -) -(1,24311:6630773,17808391:25952256,431045,106246 -h1,24311:6630773,17808391:0,0,0 -g1,24311:6962727,17808391 -g1,24311:7294681,17808391 -g1,24311:7626635,17808391 -g1,24311:7958589,17808391 -g1,24311:8290543,17808391 -g1,24311:8622497,17808391 -g1,24311:8954451,17808391 -g1,24311:9286405,17808391 -g1,24311:9618359,17808391 -g1,24311:9950313,17808391 -g1,24311:10282267,17808391 -g1,24311:11942037,17808391 -g1,24311:12605945,17808391 -k1,24311:12605945,17808391:0 -h1,24311:20240885,17808391:0,0,0 -k1,24311:32583029,17808391:12342144 -g1,24311:32583029,17808391 -) -(1,24312:6630773,18493246:25952256,424439,106246 -h1,24312:6630773,18493246:0,0,0 -g1,24312:6962727,18493246 -g1,24312:7294681,18493246 -g1,24312:7626635,18493246 -g1,24312:7958589,18493246 -g1,24312:8290543,18493246 -g1,24312:8622497,18493246 -g1,24312:8954451,18493246 -g1,24312:9286405,18493246 -g1,24312:9618359,18493246 -g1,24312:9950313,18493246 -g1,24312:10282267,18493246 -g1,24312:13601806,18493246 -g1,24312:14265714,18493246 -g1,24312:16921346,18493246 -k1,24312:16921346,18493246:0 -h1,24312:18913070,18493246:0,0,0 -k1,24312:32583029,18493246:13669959 -g1,24312:32583029,18493246 -) -(1,24313:6630773,19178101:25952256,424439,106246 -h1,24313:6630773,19178101:0,0,0 -g1,24313:6962727,19178101 -g1,24313:7294681,19178101 -g1,24313:7626635,19178101 -g1,24313:7958589,19178101 -g1,24313:8290543,19178101 -g1,24313:8622497,19178101 -g1,24313:8954451,19178101 -g1,24313:9286405,19178101 -g1,24313:9618359,19178101 -g1,24313:9950313,19178101 -g1,24313:10282267,19178101 -g1,24313:12605945,19178101 -g1,24313:13269853,19178101 -h1,24313:14929623,19178101:0,0,0 -k1,24313:32583029,19178101:17653406 -g1,24313:32583029,19178101 -) -] -) -g1,24315:32583029,19284347 -g1,24315:6630773,19284347 -g1,24315:6630773,19284347 -g1,24315:32583029,19284347 -g1,24315:32583029,19284347 -) -h1,24315:6630773,19480955:0,0,0 -(1,24320:6630773,20346035:25952256,505283,134348 -h1,24318:6630773,20346035:983040,0,0 -k1,24318:9629522,20346035:232474 -k1,24318:12207530,20346035:232474 -k1,24318:13056042,20346035:232474 -k1,24318:15084202,20346035:232474 -k1,24318:16185028,20346035:232474 -k1,24318:17395955,20346035:232474 -k1,24318:17984289,20346035:232474 -k1,24318:21395259,20346035:232474 -k1,24318:24989730,20346035:232474 -k1,24318:26394643,20346035:232474 -k1,24318:30424273,20346035:232474 -k1,24318:32583029,20346035:0 -) -(1,24320:6630773,21211115:25952256,505283,134348 -g1,24318:8565395,21211115 -g1,24318:9783709,21211115 -g1,24318:13385567,21211115 -g1,24318:14453148,21211115 -g1,24318:16857664,21211115 -g1,24318:19615419,21211115 -(1,24318:19615419,21211115:0,452978,115847 -r1,24335:22787379,21211115:3171960,568825,115847 -k1,24318:19615419,21211115:-3171960 -) -(1,24318:19615419,21211115:3171960,452978,115847 -k1,24318:19615419,21211115:3277 -h1,24318:22784102,21211115:0,411205,112570 -) -g1,24318:22986608,21211115 -g1,24318:23801875,21211115 -g1,24318:25020189,21211115 -g1,24318:26715605,21211115 -g1,24318:28885502,21211115 -k1,24320:32583029,21211115:1789774 -g1,24320:32583029,21211115 -) -(1,24322:6630773,37225672:25952256,15433050,0 -k1,24322:9874805,37225672:3244032 -(1,24320:9874805,37225672:0,0,0 -g1,24320:9874805,37225672 -g1,24320:9874805,37225672 -g1,24320:9547125,37225672 -(1,24320:9547125,37225672:0,0,0 -) -g1,24320:9874805,37225672 -) -(1,24321:9874805,37225672:19464192,15433050,0 -) -g1,24322:29338997,37225672 -k1,24322:32583029,37225672:3244032 -) -v1,24325:6630773,38472375:0,393216,0 -(1,24326:6630773,40601495:25952256,2522336,0 -g1,24326:6630773,40601495 -g1,24326:6237557,40601495 -r1,24335:6368629,40601495:131072,2522336,0 -g1,24326:6567858,40601495 -g1,24326:6764466,40601495 -[1,24326:6764466,40601495:25818563,2522336,0 -(1,24326:6764466,38744852:25818563,665693,196608 -(1,24325:6764466,38744852:0,665693,196608 -r1,24335:7868133,38744852:1103667,862301,196608 -k1,24325:6764466,38744852:-1103667 -) -(1,24325:6764466,38744852:1103667,665693,196608 -) -k1,24325:8061836,38744852:193703 -k1,24325:10196344,38744852:327680 -k1,24325:10867804,38744852:193703 -k1,24325:12231980,38744852:193703 -k1,24325:13900898,38744852:193703 -k1,24325:15786742,38744852:193704 -k1,24325:19273629,38744852:193703 -k1,24325:20780674,38744852:193703 -k1,24325:23932017,38744852:193703 -k1,24325:26307414,38744852:193703 -k1,24325:28140172,38744852:193703 -k1,24325:29601341,38744852:193703 -k1,24325:30209882,38744852:193698 -k1,24325:31055013,38744852:193703 -k1,24325:32227169,38744852:193703 -k1,24325:32583029,38744852:0 -) -(1,24326:6764466,39609932:25818563,513147,134348 -k1,24325:8134256,39609932:205215 -k1,24325:9287122,39609932:205215 -k1,24325:10822718,39609932:205215 -k1,24325:12417296,39609932:205215 -k1,24325:13154008,39609932:205215 -k1,24325:16486601,39609932:205215 -k1,24325:17307854,39609932:205215 -k1,24325:18532153,39609932:205214 -k1,24325:22360854,39609932:205215 -k1,24325:24675673,39609932:205215 -k1,24325:26211269,39609932:205215 -k1,24325:27811090,39609932:205215 -k1,24325:28699190,39609932:205215 -k1,24325:31388220,39609932:205215 -k1,24325:32051532,39609932:205215 -k1,24325:32583029,39609932:0 -) -(1,24326:6764466,40475012:25818563,505283,126483 -g1,24325:7615123,40475012 -g1,24325:9996046,40475012 -g1,24325:11834330,40475012 -g1,24325:13301025,40475012 -k1,24326:32583028,40475012:18814732 -g1,24326:32583028,40475012 -) -] -g1,24326:32583029,40601495 -) -h1,24326:6630773,40601495:0,0,0 -(1,24329:6630773,42718313:25952256,555811,12975 -(1,24329:6630773,42718313:2899444,534184,12975 -g1,24329:6630773,42718313 -g1,24329:9530217,42718313 -) -k1,24329:32583029,42718313:19442566 -g1,24329:32583029,42718313 -) -(1,24333:6630773,43976609:25952256,513147,134348 -k1,24332:9420169,43976609:254463 -k1,24332:12782949,43976609:254408 -k1,24332:15797788,43976609:254463 -k1,24332:19078049,43976609:254464 -k1,24332:20280163,43976609:254463 -k1,24332:22937176,43976609:254463 -k1,24332:24581003,43976609:254464 -k1,24332:26646881,43976609:254463 -k1,24332:27517382,43976609:254463 -k1,24332:29085188,43976609:254464 -k1,24332:30624157,43976609:254463 -k1,24332:32583029,43976609:0 -) -(1,24333:6630773,44841689:25952256,513147,126483 -k1,24332:7902585,44841689:252727 -k1,24332:9819925,44841689:252726 -k1,24332:13568998,44841689:252727 -k1,24332:16903226,44841689:252726 -k1,24332:19945821,44841689:252727 -(1,24332:19945821,44841689:0,452978,115847 -r1,24335:23469493,44841689:3523672,568825,115847 -k1,24332:19945821,44841689:-3523672 -) -(1,24332:19945821,44841689:3523672,452978,115847 -k1,24332:19945821,44841689:3277 -h1,24332:23466216,44841689:0,411205,112570 -) -k1,24332:23722220,44841689:252727 -k1,24332:25075951,44841689:252726 -k1,24332:25684538,44841689:252727 -k1,24332:28139274,44841689:252726 -k1,24332:29772845,44841689:252727 -k1,24332:32583029,44841689:0 -) -(1,24333:6630773,45706769:25952256,513147,126483 -k1,24332:7492289,45706769:210088 -k1,24332:8986883,45706769:210088 -k1,24332:9864127,45706769:210088 -(1,24332:9864127,45706769:0,452978,115847 -r1,24335:14091223,45706769:4227096,568825,115847 -k1,24332:9864127,45706769:-4227096 -) -(1,24332:9864127,45706769:4227096,452978,115847 -k1,24332:9864127,45706769:3277 -h1,24332:14087946,45706769:0,411205,112570 -) -k1,24332:14301311,45706769:210088 -k1,24332:15702844,45706769:210088 -k1,24332:17655534,45706769:210088 -k1,24332:19022332,45706769:210088 -k1,24332:22525603,45706769:210087 -k1,24332:23348453,45706769:210088 -k1,24332:23914401,45706769:210088 -k1,24332:25723567,45706769:210088 -k1,24332:27327606,45706769:210088 -k1,24332:30064107,45706769:210088 -k1,24332:31649796,45706769:210088 -k1,24332:32583029,45706769:0 -) -] -(1,24335:32583029,45706769:0,0,0 -g1,24335:32583029,45706769 -) -) -] -(1,24335:6630773,47279633:25952256,0,0 -h1,24335:6630773,47279633:25952256,0,0 -) -] -(1,24335:4262630,4025873:0,0,0 -[1,24335:-473656,4025873:0,0,0 -(1,24335:-473656,-710413:0,0,0 -(1,24335:-473656,-710413:0,0,0 -g1,24335:-473656,-710413 -) -g1,24335:-473656,-710413 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24333:3078558,51504789:16384,1179648,0 +) +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 +) +] +) +) +) +] +[1,24333:3078558,4812305:0,0,0 +(1,24333:3078558,49800853:0,16384,2228224 +g1,24333:29030814,49800853 +g1,24333:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24333:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24333:37855564,49800853:1179648,16384,0 +) +) +k1,24333:3078556,49800853:-34777008 +) +] +g1,24333:6630773,4812305 +g1,24333:6630773,4812305 +g1,24333:10349285,4812305 +k1,24333:31387653,4812305:21038368 +) +) +] +[1,24333:6630773,45706769:25952256,40108032,0 +(1,24333:6630773,45706769:25952256,40108032,0 +(1,24333:6630773,45706769:0,0,0 +g1,24333:6630773,45706769 +) +[1,24333:6630773,45706769:25952256,40108032,0 +v1,24295:6630773,6254097:0,393216,0 +(1,24295:6630773,10859807:25952256,4998926,196608 +g1,24295:6630773,10859807 +g1,24295:6630773,10859807 +g1,24295:6434165,10859807 +(1,24295:6434165,10859807:0,4998926,196608 +r1,24333:32779637,10859807:26345472,5195534,196608 +k1,24295:6434165,10859807:-26345472 +) +(1,24295:6434165,10859807:26345472,4998926,196608 +[1,24295:6630773,10859807:25952256,4802318,0 +(1,24287:6630773,6481928:25952256,424439,9908 +h1,24287:6630773,6481928:0,0,0 +g1,24287:7626635,6481928 +g1,24287:8290543,6481928 +g1,24287:8622497,6481928 +g1,24287:8954451,6481928 +g1,24287:9286405,6481928 +g1,24287:9618359,6481928 +g1,24287:9950313,6481928 +g1,24287:10282267,6481928 +g1,24287:10946175,6481928 +g1,24287:11278129,6481928 +g1,24287:11610083,6481928 +g1,24287:11942037,6481928 +g1,24287:12273991,6481928 +g1,24287:12937899,6481928 +g1,24287:13269853,6481928 +g1,24287:13601807,6481928 +g1,24287:13933761,6481928 +g1,24287:14265715,6481928 +g1,24287:14597669,6481928 +g1,24287:14929623,6481928 +g1,24287:15261577,6481928 +g1,24287:15593531,6481928 +h1,24287:16589393,6481928:0,0,0 +k1,24287:32583029,6481928:15993636 +g1,24287:32583029,6481928 +) +(1,24287:6630773,7166783:25952256,424439,9908 +h1,24287:6630773,7166783:0,0,0 +g1,24287:7626635,7166783 +g1,24287:8290543,7166783 +g1,24287:8622497,7166783 +g1,24287:8954451,7166783 +g1,24287:9286405,7166783 +g1,24287:9618359,7166783 +g1,24287:9950313,7166783 +g1,24287:10282267,7166783 +g1,24287:10946175,7166783 +g1,24287:11278129,7166783 +g1,24287:11610083,7166783 +g1,24287:11942037,7166783 +g1,24287:12273991,7166783 +g1,24287:12937899,7166783 +g1,24287:13269853,7166783 +g1,24287:13601807,7166783 +g1,24287:13933761,7166783 +g1,24287:14265715,7166783 +g1,24287:14597669,7166783 +g1,24287:14929623,7166783 +g1,24287:15261577,7166783 +g1,24287:15593531,7166783 +h1,24287:16589393,7166783:0,0,0 +k1,24287:32583029,7166783:15993636 +g1,24287:32583029,7166783 +) +(1,24287:6630773,7851638:25952256,424439,9908 +h1,24287:6630773,7851638:0,0,0 +g1,24287:7626635,7851638 +g1,24287:8290543,7851638 +g1,24287:8622497,7851638 +g1,24287:8954451,7851638 +g1,24287:9286405,7851638 +g1,24287:9618359,7851638 +g1,24287:9950313,7851638 +g1,24287:10282267,7851638 +g1,24287:10946175,7851638 +g1,24287:11278129,7851638 +g1,24287:11610083,7851638 +g1,24287:11942037,7851638 +g1,24287:12273991,7851638 +g1,24287:12937899,7851638 +g1,24287:13269853,7851638 +g1,24287:13601807,7851638 +g1,24287:13933761,7851638 +g1,24287:14265715,7851638 +g1,24287:14597669,7851638 +g1,24287:14929623,7851638 +g1,24287:15261577,7851638 +g1,24287:15593531,7851638 +h1,24287:16589393,7851638:0,0,0 +k1,24287:32583029,7851638:15993636 +g1,24287:32583029,7851638 +) +(1,24287:6630773,8536493:25952256,424439,9908 +h1,24287:6630773,8536493:0,0,0 +g1,24287:7626635,8536493 +g1,24287:8622497,8536493 +g1,24287:8954451,8536493 +g1,24287:9286405,8536493 +g1,24287:9618359,8536493 +g1,24287:9950313,8536493 +g1,24287:10946175,8536493 +g1,24287:11278129,8536493 +g1,24287:11610083,8536493 +g1,24287:11942037,8536493 +g1,24287:12273991,8536493 +g1,24287:12937899,8536493 +g1,24287:13269853,8536493 +g1,24287:13601807,8536493 +g1,24287:13933761,8536493 +g1,24287:14265715,8536493 +g1,24287:14597669,8536493 +g1,24287:14929623,8536493 +g1,24287:15261577,8536493 +g1,24287:15593531,8536493 +h1,24287:16589393,8536493:0,0,0 +k1,24287:32583029,8536493:15993636 +g1,24287:32583029,8536493 +) +(1,24289:6630773,9352420:25952256,431045,106246 +(1,24288:6630773,9352420:0,0,0 +g1,24288:6630773,9352420 +g1,24288:6630773,9352420 +g1,24288:6303093,9352420 +(1,24288:6303093,9352420:0,0,0 +) +g1,24288:6630773,9352420 +) +k1,24289:6630773,9352420:0 +g1,24289:13933760,9352420 +h1,24289:15925484,9352420:0,0,0 +k1,24289:32583029,9352420:16657545 +g1,24289:32583029,9352420 +) +(1,24294:6630773,10168347:25952256,424439,112852 +(1,24291:6630773,10168347:0,0,0 +g1,24291:6630773,10168347 +g1,24291:6630773,10168347 +g1,24291:6303093,10168347 +(1,24291:6303093,10168347:0,0,0 +) +g1,24291:6630773,10168347 +) +g1,24294:7626635,10168347 +g1,24294:7958589,10168347 +g1,24294:8290543,10168347 +g1,24294:8622497,10168347 +g1,24294:8954451,10168347 +g1,24294:9286405,10168347 +g1,24294:11610083,10168347 +g1,24294:11942037,10168347 +g1,24294:12273991,10168347 +g1,24294:12605945,10168347 +g1,24294:12937899,10168347 +g1,24294:13269853,10168347 +g1,24294:13601807,10168347 +g1,24294:15593531,10168347 +h1,24294:19245024,10168347:0,0,0 +k1,24294:32583029,10168347:13338005 +g1,24294:32583029,10168347 +) +(1,24294:6630773,10853202:25952256,424439,6605 +h1,24294:6630773,10853202:0,0,0 +g1,24294:7626635,10853202 +g1,24294:7958589,10853202 +g1,24294:8290543,10853202 +g1,24294:11610082,10853202 +g1,24294:15593529,10853202 +g1,24294:15925483,10853202 +g1,24294:16257437,10853202 +h1,24294:19245022,10853202:0,0,0 +k1,24294:32583029,10853202:13338007 +g1,24294:32583029,10853202 +) +] +) +g1,24295:32583029,10859807 +g1,24295:6630773,10859807 +g1,24295:6630773,10859807 +g1,24295:32583029,10859807 +g1,24295:32583029,10859807 +) +h1,24295:6630773,11056415:0,0,0 +(1,24299:6630773,11921495:25952256,513147,115847 +h1,24298:6630773,11921495:983040,0,0 +k1,24298:9313040,11921495:220079 +k1,24298:12228616,11921495:220080 +(1,24298:12228616,11921495:0,452978,115847 +r1,24333:16455712,11921495:4227096,568825,115847 +k1,24298:12228616,11921495:-4227096 +) +(1,24298:12228616,11921495:4227096,452978,115847 +k1,24298:12228616,11921495:3277 +h1,24298:16452435,11921495:0,411205,112570 +) +k1,24298:16675791,11921495:220079 +k1,24298:17764223,11921495:220080 +k1,24298:19088584,11921495:220079 +k1,24298:20923471,11921495:220080 +k1,24298:22532913,11921495:220079 +k1,24298:24959590,11921495:220080 +k1,24298:26245940,11921495:220079 +k1,24298:27117448,11921495:220080 +k1,24298:28959543,11921495:220079 +k1,24298:32583029,11921495:0 +) +(1,24299:6630773,12786575:25952256,505283,134348 +g1,24298:8021447,12786575 +g1,24298:9687372,12786575 +g1,24298:12266869,12786575 +g1,24298:13749293,12786575 +g1,24298:17572008,12786575 +g1,24298:18422665,12786575 +g1,24298:19392597,12786575 +g1,24298:22082849,12786575 +k1,24299:32583029,12786575:7269255 +g1,24299:32583029,12786575 +) +v1,24301:6630773,13471430:0,393216,0 +(1,24313:6630773,19284347:25952256,6206133,196608 +g1,24313:6630773,19284347 +g1,24313:6630773,19284347 +g1,24313:6434165,19284347 +(1,24313:6434165,19284347:0,6206133,196608 +r1,24333:32779637,19284347:26345472,6402741,196608 +k1,24313:6434165,19284347:-26345472 +) +(1,24313:6434165,19284347:26345472,6206133,196608 +[1,24313:6630773,19284347:25952256,6009525,0 +(1,24303:6630773,13699261:25952256,424439,79822 +(1,24302:6630773,13699261:0,0,0 +g1,24302:6630773,13699261 +g1,24302:6630773,13699261 +g1,24302:6303093,13699261 +(1,24302:6303093,13699261:0,0,0 +) +g1,24302:6630773,13699261 +) +k1,24303:6630773,13699261:0 +h1,24303:11942036,13699261:0,0,0 +k1,24303:32583028,13699261:20640992 +g1,24303:32583028,13699261 +) +(1,24304:6630773,14384116:25952256,431045,106246 +h1,24304:6630773,14384116:0,0,0 +g1,24304:9286405,14384116 +g1,24304:10282267,14384116 +g1,24304:14597668,14384116 +g1,24304:15261576,14384116 +g1,24304:17253300,14384116 +g1,24304:17917208,14384116 +g1,24304:18581116,14384116 +h1,24304:23228471,14384116:0,0,0 +k1,24304:32583029,14384116:9354558 +g1,24304:32583029,14384116 +) +(1,24305:6630773,15068971:25952256,424439,106246 +h1,24305:6630773,15068971:0,0,0 +k1,24305:6630773,15068971:0 +h1,24305:12937897,15068971:0,0,0 +k1,24305:32583029,15068971:19645132 +g1,24305:32583029,15068971 +) +(1,24306:6630773,15753826:25952256,431045,106246 +h1,24306:6630773,15753826:0,0,0 +g1,24306:6962727,15753826 +g1,24306:7294681,15753826 +g1,24306:7626635,15753826 +g1,24306:7958589,15753826 +g1,24306:8290543,15753826 +g1,24306:8622497,15753826 +g1,24306:8954451,15753826 +g1,24306:9286405,15753826 +g1,24306:9618359,15753826 +g1,24306:9950313,15753826 +g1,24306:10282267,15753826 +g1,24306:11942037,15753826 +g1,24306:12605945,15753826 +k1,24306:12605945,15753826:0 +h1,24306:20240885,15753826:0,0,0 +k1,24306:32583029,15753826:12342144 +g1,24306:32583029,15753826 +) +(1,24307:6630773,16438681:25952256,431045,106246 +h1,24307:6630773,16438681:0,0,0 +g1,24307:6962727,16438681 +g1,24307:7294681,16438681 +g1,24307:7626635,16438681 +g1,24307:7958589,16438681 +g1,24307:8290543,16438681 +g1,24307:8622497,16438681 +g1,24307:8954451,16438681 +g1,24307:9286405,16438681 +g1,24307:9618359,16438681 +g1,24307:9950313,16438681 +g1,24307:10282267,16438681 +g1,24307:13601806,16438681 +g1,24307:14265714,16438681 +g1,24307:16589392,16438681 +h1,24307:18581116,16438681:0,0,0 +k1,24307:32583029,16438681:14001913 +g1,24307:32583029,16438681 +) +(1,24308:6630773,17123536:25952256,424439,106246 +h1,24308:6630773,17123536:0,0,0 +k1,24308:6630773,17123536:0 +h1,24308:12937897,17123536:0,0,0 +k1,24308:32583029,17123536:19645132 +g1,24308:32583029,17123536 +) +(1,24309:6630773,17808391:25952256,431045,106246 +h1,24309:6630773,17808391:0,0,0 +g1,24309:6962727,17808391 +g1,24309:7294681,17808391 +g1,24309:7626635,17808391 +g1,24309:7958589,17808391 +g1,24309:8290543,17808391 +g1,24309:8622497,17808391 +g1,24309:8954451,17808391 +g1,24309:9286405,17808391 +g1,24309:9618359,17808391 +g1,24309:9950313,17808391 +g1,24309:10282267,17808391 +g1,24309:11942037,17808391 +g1,24309:12605945,17808391 +k1,24309:12605945,17808391:0 +h1,24309:20240885,17808391:0,0,0 +k1,24309:32583029,17808391:12342144 +g1,24309:32583029,17808391 +) +(1,24310:6630773,18493246:25952256,424439,106246 +h1,24310:6630773,18493246:0,0,0 +g1,24310:6962727,18493246 +g1,24310:7294681,18493246 +g1,24310:7626635,18493246 +g1,24310:7958589,18493246 +g1,24310:8290543,18493246 +g1,24310:8622497,18493246 +g1,24310:8954451,18493246 +g1,24310:9286405,18493246 +g1,24310:9618359,18493246 +g1,24310:9950313,18493246 +g1,24310:10282267,18493246 +g1,24310:13601806,18493246 +g1,24310:14265714,18493246 +g1,24310:16921346,18493246 +k1,24310:16921346,18493246:0 +h1,24310:18913070,18493246:0,0,0 +k1,24310:32583029,18493246:13669959 +g1,24310:32583029,18493246 +) +(1,24311:6630773,19178101:25952256,424439,106246 +h1,24311:6630773,19178101:0,0,0 +g1,24311:6962727,19178101 +g1,24311:7294681,19178101 +g1,24311:7626635,19178101 +g1,24311:7958589,19178101 +g1,24311:8290543,19178101 +g1,24311:8622497,19178101 +g1,24311:8954451,19178101 +g1,24311:9286405,19178101 +g1,24311:9618359,19178101 +g1,24311:9950313,19178101 +g1,24311:10282267,19178101 +g1,24311:12605945,19178101 +g1,24311:13269853,19178101 +h1,24311:14929623,19178101:0,0,0 +k1,24311:32583029,19178101:17653406 +g1,24311:32583029,19178101 +) +] +) +g1,24313:32583029,19284347 +g1,24313:6630773,19284347 +g1,24313:6630773,19284347 +g1,24313:32583029,19284347 +g1,24313:32583029,19284347 +) +h1,24313:6630773,19480955:0,0,0 +(1,24318:6630773,20346035:25952256,505283,134348 +h1,24316:6630773,20346035:983040,0,0 +k1,24316:9629522,20346035:232474 +k1,24316:12207530,20346035:232474 +k1,24316:13056042,20346035:232474 +k1,24316:15084202,20346035:232474 +k1,24316:16185028,20346035:232474 +k1,24316:17395955,20346035:232474 +k1,24316:17984289,20346035:232474 +k1,24316:21395259,20346035:232474 +k1,24316:24989730,20346035:232474 +k1,24316:26394643,20346035:232474 +k1,24316:30424273,20346035:232474 +k1,24316:32583029,20346035:0 +) +(1,24318:6630773,21211115:25952256,505283,134348 +g1,24316:8565395,21211115 +g1,24316:9783709,21211115 +g1,24316:13385567,21211115 +g1,24316:14453148,21211115 +g1,24316:16857664,21211115 +g1,24316:19615419,21211115 +(1,24316:19615419,21211115:0,452978,115847 +r1,24333:22787379,21211115:3171960,568825,115847 +k1,24316:19615419,21211115:-3171960 +) +(1,24316:19615419,21211115:3171960,452978,115847 +k1,24316:19615419,21211115:3277 +h1,24316:22784102,21211115:0,411205,112570 +) +g1,24316:22986608,21211115 +g1,24316:23801875,21211115 +g1,24316:25020189,21211115 +g1,24316:26715605,21211115 +g1,24316:28885502,21211115 +k1,24318:32583029,21211115:1789774 +g1,24318:32583029,21211115 +) +(1,24320:6630773,37225672:25952256,15433050,0 +k1,24320:9874805,37225672:3244032 +(1,24318:9874805,37225672:0,0,0 +g1,24318:9874805,37225672 +g1,24318:9874805,37225672 +g1,24318:9547125,37225672 +(1,24318:9547125,37225672:0,0,0 +) +g1,24318:9874805,37225672 +) +(1,24319:9874805,37225672:19464192,15433050,0 +) +g1,24320:29338997,37225672 +k1,24320:32583029,37225672:3244032 +) +v1,24323:6630773,38472375:0,393216,0 +(1,24324:6630773,40601495:25952256,2522336,0 +g1,24324:6630773,40601495 +g1,24324:6237557,40601495 +r1,24333:6368629,40601495:131072,2522336,0 +g1,24324:6567858,40601495 +g1,24324:6764466,40601495 +[1,24324:6764466,40601495:25818563,2522336,0 +(1,24324:6764466,38744852:25818563,665693,196608 +(1,24323:6764466,38744852:0,665693,196608 +r1,24333:7868133,38744852:1103667,862301,196608 +k1,24323:6764466,38744852:-1103667 +) +(1,24323:6764466,38744852:1103667,665693,196608 +) +k1,24323:8061836,38744852:193703 +k1,24323:10196344,38744852:327680 +k1,24323:10867804,38744852:193703 +k1,24323:12231980,38744852:193703 +k1,24323:13900898,38744852:193703 +k1,24323:15786742,38744852:193704 +k1,24323:19273629,38744852:193703 +k1,24323:20780674,38744852:193703 +k1,24323:23932017,38744852:193703 +k1,24323:26307414,38744852:193703 +k1,24323:28140172,38744852:193703 +k1,24323:29601341,38744852:193703 +k1,24323:30209882,38744852:193698 +k1,24323:31055013,38744852:193703 +k1,24323:32227169,38744852:193703 +k1,24323:32583029,38744852:0 +) +(1,24324:6764466,39609932:25818563,513147,134348 +k1,24323:8134256,39609932:205215 +k1,24323:9287122,39609932:205215 +k1,24323:10822718,39609932:205215 +k1,24323:12417296,39609932:205215 +k1,24323:13154008,39609932:205215 +k1,24323:16486601,39609932:205215 +k1,24323:17307854,39609932:205215 +k1,24323:18532153,39609932:205214 +k1,24323:22360854,39609932:205215 +k1,24323:24675673,39609932:205215 +k1,24323:26211269,39609932:205215 +k1,24323:27811090,39609932:205215 +k1,24323:28699190,39609932:205215 +k1,24323:31388220,39609932:205215 +k1,24323:32051532,39609932:205215 +k1,24323:32583029,39609932:0 +) +(1,24324:6764466,40475012:25818563,505283,126483 +g1,24323:7615123,40475012 +g1,24323:9996046,40475012 +g1,24323:11834330,40475012 +g1,24323:13301025,40475012 +k1,24324:32583028,40475012:18814732 +g1,24324:32583028,40475012 +) +] +g1,24324:32583029,40601495 +) +h1,24324:6630773,40601495:0,0,0 +(1,24327:6630773,42718313:25952256,555811,12975 +(1,24327:6630773,42718313:2899444,534184,12975 +g1,24327:6630773,42718313 +g1,24327:9530217,42718313 +) +k1,24327:32583029,42718313:19442566 +g1,24327:32583029,42718313 +) +(1,24331:6630773,43976609:25952256,513147,134348 +k1,24330:9420169,43976609:254463 +k1,24330:12782949,43976609:254408 +k1,24330:15797788,43976609:254463 +k1,24330:19078049,43976609:254464 +k1,24330:20280163,43976609:254463 +k1,24330:22937176,43976609:254463 +k1,24330:24581003,43976609:254464 +k1,24330:26646881,43976609:254463 +k1,24330:27517382,43976609:254463 +k1,24330:29085188,43976609:254464 +k1,24330:30624157,43976609:254463 +k1,24330:32583029,43976609:0 +) +(1,24331:6630773,44841689:25952256,513147,126483 +k1,24330:7902585,44841689:252727 +k1,24330:9819925,44841689:252726 +k1,24330:13568998,44841689:252727 +k1,24330:16903226,44841689:252726 +k1,24330:19945821,44841689:252727 +(1,24330:19945821,44841689:0,452978,115847 +r1,24333:23469493,44841689:3523672,568825,115847 +k1,24330:19945821,44841689:-3523672 +) +(1,24330:19945821,44841689:3523672,452978,115847 +k1,24330:19945821,44841689:3277 +h1,24330:23466216,44841689:0,411205,112570 +) +k1,24330:23722220,44841689:252727 +k1,24330:25075951,44841689:252726 +k1,24330:25684538,44841689:252727 +k1,24330:28139274,44841689:252726 +k1,24330:29772845,44841689:252727 +k1,24330:32583029,44841689:0 +) +(1,24331:6630773,45706769:25952256,513147,126483 +k1,24330:7492289,45706769:210088 +k1,24330:8986883,45706769:210088 +k1,24330:9864127,45706769:210088 +(1,24330:9864127,45706769:0,452978,115847 +r1,24333:14091223,45706769:4227096,568825,115847 +k1,24330:9864127,45706769:-4227096 +) +(1,24330:9864127,45706769:4227096,452978,115847 +k1,24330:9864127,45706769:3277 +h1,24330:14087946,45706769:0,411205,112570 +) +k1,24330:14301311,45706769:210088 +k1,24330:15702844,45706769:210088 +k1,24330:17655534,45706769:210088 +k1,24330:19022332,45706769:210088 +k1,24330:22525603,45706769:210087 +k1,24330:23348453,45706769:210088 +k1,24330:23914401,45706769:210088 +k1,24330:25723567,45706769:210088 +k1,24330:27327606,45706769:210088 +k1,24330:30064107,45706769:210088 +k1,24330:31649796,45706769:210088 +k1,24330:32583029,45706769:0 +) +] +(1,24333:32583029,45706769:0,0,0 +g1,24333:32583029,45706769 +) +) +] +(1,24333:6630773,47279633:25952256,0,0 +h1,24333:6630773,47279633:25952256,0,0 +) +] +(1,24333:4262630,4025873:0,0,0 +[1,24333:-473656,4025873:0,0,0 +(1,24333:-473656,-710413:0,0,0 +(1,24333:-473656,-710413:0,0,0 +g1,24333:-473656,-710413 +) +g1,24333:-473656,-710413 ) ] ) ] !19449 -}418 -Input:4552:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4553:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4554:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4555:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}419 +Input:4556:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4557:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4558:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4559:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{419 -[1,24406:4262630,47279633:28320399,43253760,0 -(1,24406:4262630,4025873:0,0,0 -[1,24406:-473656,4025873:0,0,0 -(1,24406:-473656,-710413:0,0,0 -(1,24406:-473656,-644877:0,0,0 -k1,24406:-473656,-644877:-65536 +{420 +[1,24404:4262630,47279633:28320399,43253760,0 +(1,24404:4262630,4025873:0,0,0 +[1,24404:-473656,4025873:0,0,0 +(1,24404:-473656,-710413:0,0,0 +(1,24404:-473656,-644877:0,0,0 +k1,24404:-473656,-644877:-65536 ) -(1,24406:-473656,4736287:0,0,0 -k1,24406:-473656,4736287:5209943 +(1,24404:-473656,4736287:0,0,0 +k1,24404:-473656,4736287:5209943 ) -g1,24406:-473656,-710413 +g1,24404:-473656,-710413 ) ] ) -[1,24406:6630773,47279633:25952256,43253760,0 -[1,24406:6630773,4812305:25952256,786432,0 -(1,24406:6630773,4812305:25952256,505283,134348 -(1,24406:6630773,4812305:25952256,505283,134348 -g1,24406:3078558,4812305 -[1,24406:3078558,4812305:0,0,0 -(1,24406:3078558,2439708:0,1703936,0 -k1,24406:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24406:2537886,2439708:1179648,16384,0 +[1,24404:6630773,47279633:25952256,43253760,0 +[1,24404:6630773,4812305:25952256,786432,0 +(1,24404:6630773,4812305:25952256,505283,134348 +(1,24404:6630773,4812305:25952256,505283,134348 +g1,24404:3078558,4812305 +[1,24404:3078558,4812305:0,0,0 +(1,24404:3078558,2439708:0,1703936,0 +k1,24404:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24404:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24406:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24404:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24406:3078558,4812305:0,0,0 -(1,24406:3078558,2439708:0,1703936,0 -g1,24406:29030814,2439708 -g1,24406:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24406:36151628,1915420:16384,1179648,0 +[1,24404:3078558,4812305:0,0,0 +(1,24404:3078558,2439708:0,1703936,0 +g1,24404:29030814,2439708 +g1,24404:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24404:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24406:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24404:37855564,2439708:1179648,16384,0 ) ) -k1,24406:3078556,2439708:-34777008 +k1,24404:3078556,2439708:-34777008 ) ] -[1,24406:3078558,4812305:0,0,0 -(1,24406:3078558,49800853:0,16384,2228224 -k1,24406:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24406:2537886,49800853:1179648,16384,0 +[1,24404:3078558,4812305:0,0,0 +(1,24404:3078558,49800853:0,16384,2228224 +k1,24404:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24404:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24406:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24404:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24406:3078558,4812305:0,0,0 -(1,24406:3078558,49800853:0,16384,2228224 -g1,24406:29030814,49800853 -g1,24406:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24406:36151628,51504789:16384,1179648,0 +[1,24404:3078558,4812305:0,0,0 +(1,24404:3078558,49800853:0,16384,2228224 +g1,24404:29030814,49800853 +g1,24404:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24404:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24406:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24404:37855564,49800853:1179648,16384,0 ) ) -k1,24406:3078556,49800853:-34777008 +k1,24404:3078556,49800853:-34777008 ) ] -g1,24406:6630773,4812305 -k1,24406:21114230,4812305:13288080 -g1,24406:22736901,4812305 -g1,24406:23350318,4812305 -g1,24406:24759997,4812305 -g1,24406:28372341,4812305 -g1,24406:30105768,4812305 +g1,24404:6630773,4812305 +k1,24404:21114230,4812305:13288080 +g1,24404:22736901,4812305 +g1,24404:23350318,4812305 +g1,24404:24759997,4812305 +g1,24404:28372341,4812305 +g1,24404:30105768,4812305 ) ) ] -[1,24406:6630773,45706769:25952256,40108032,0 -(1,24406:6630773,45706769:25952256,40108032,0 -(1,24406:6630773,45706769:0,0,0 -g1,24406:6630773,45706769 +[1,24404:6630773,45706769:25952256,40108032,0 +(1,24404:6630773,45706769:25952256,40108032,0 +(1,24404:6630773,45706769:0,0,0 +g1,24404:6630773,45706769 ) -[1,24406:6630773,45706769:25952256,40108032,0 -(1,24333:6630773,6254097:25952256,513147,134348 -k1,24332:9599008,6254097:212446 -k1,24332:10883622,6254097:212445 -k1,24332:12630266,6254097:212446 -k1,24332:14034157,6254097:212446 -k1,24332:17057441,6254097:212445 -k1,24332:19380802,6254097:212446 -k1,24332:20252540,6254097:212446 -k1,24332:23178176,6254097:212445 -k1,24332:24582067,6254097:212446 -k1,24332:26502381,6254097:212446 -k1,24332:27911513,6254097:212445 -k1,24332:29804302,6254097:212446 -k1,24332:32583029,6254097:0 -) -(1,24333:6630773,7119177:25952256,513147,126483 -g1,24332:7361499,7119177 -g1,24332:7916588,7119177 -g1,24332:9927232,7119177 -g1,24332:10983017,7119177 -g1,24332:14565870,7119177 -g1,24332:15120959,7119177 -g1,24332:16709551,7119177 -g1,24332:18958746,7119177 -g1,24332:21947843,7119177 -(1,24332:21947843,7119177:0,459977,115847 -r1,24406:25823227,7119177:3875384,575824,115847 -k1,24332:21947843,7119177:-3875384 -) -(1,24332:21947843,7119177:3875384,459977,115847 -k1,24332:21947843,7119177:3277 -h1,24332:25819950,7119177:0,411205,112570 -) -g1,24332:26022456,7119177 -g1,24332:27964287,7119177 -g1,24332:29210781,7119177 -g1,24332:30777746,7119177 -k1,24333:32583029,7119177:439513 -g1,24333:32583029,7119177 -) -v1,24335:6630773,7804032:0,393216,0 -(1,24342:6630773,8954036:25952256,1543220,196608 -g1,24342:6630773,8954036 -g1,24342:6630773,8954036 -g1,24342:6434165,8954036 -(1,24342:6434165,8954036:0,1543220,196608 -r1,24406:32779637,8954036:26345472,1739828,196608 -k1,24342:6434165,8954036:-26345472 -) -(1,24342:6434165,8954036:26345472,1543220,196608 -[1,24342:6630773,8954036:25952256,1346612,0 -(1,24337:6630773,8031863:25952256,424439,79822 -(1,24336:6630773,8031863:0,0,0 -g1,24336:6630773,8031863 -g1,24336:6630773,8031863 -g1,24336:6303093,8031863 -(1,24336:6303093,8031863:0,0,0 -) -g1,24336:6630773,8031863 -) -k1,24337:6630773,8031863:0 -h1,24337:18581114,8031863:0,0,0 -k1,24337:32583029,8031863:14001915 -g1,24337:32583029,8031863 -) -(1,24341:6630773,8847790:25952256,424439,106246 -(1,24339:6630773,8847790:0,0,0 -g1,24339:6630773,8847790 -g1,24339:6630773,8847790 -g1,24339:6303093,8847790 -(1,24339:6303093,8847790:0,0,0 -) -g1,24339:6630773,8847790 -) -g1,24341:7626635,8847790 -g1,24341:8954451,8847790 -h1,24341:11942036,8847790:0,0,0 -k1,24341:32583028,8847790:20640992 -g1,24341:32583028,8847790 -) -] -) -g1,24342:32583029,8954036 -g1,24342:6630773,8954036 -g1,24342:6630773,8954036 -g1,24342:32583029,8954036 -g1,24342:32583029,8954036 -) -h1,24342:6630773,9150644:0,0,0 -v1,24346:6630773,9835499:0,393216,0 -(1,24350:6630773,10156364:25952256,714081,196608 -g1,24350:6630773,10156364 -g1,24350:6630773,10156364 -g1,24350:6434165,10156364 -(1,24350:6434165,10156364:0,714081,196608 -r1,24406:32779637,10156364:26345472,910689,196608 -k1,24350:6434165,10156364:-26345472 -) -(1,24350:6434165,10156364:26345472,714081,196608 -[1,24350:6630773,10156364:25952256,517473,0 -(1,24348:6630773,10069936:25952256,431045,86428 -(1,24347:6630773,10069936:0,0,0 -g1,24347:6630773,10069936 -g1,24347:6630773,10069936 -g1,24347:6303093,10069936 -(1,24347:6303093,10069936:0,0,0 -) -g1,24347:6630773,10069936 -) -g1,24348:8954451,10069936 -g1,24348:9950313,10069936 -g1,24348:19908930,10069936 -g1,24348:21900654,10069936 -g1,24348:22564562,10069936 -h1,24348:23228470,10069936:0,0,0 -k1,24348:32583029,10069936:9354559 -g1,24348:32583029,10069936 -) -] -) -g1,24350:32583029,10156364 -g1,24350:6630773,10156364 -g1,24350:6630773,10156364 -g1,24350:32583029,10156364 -g1,24350:32583029,10156364 -) -h1,24350:6630773,10352972:0,0,0 -v1,24354:6630773,11037827:0,393216,0 -(1,24367:6630773,16203926:25952256,5559315,196608 -g1,24367:6630773,16203926 -g1,24367:6630773,16203926 -g1,24367:6434165,16203926 -(1,24367:6434165,16203926:0,5559315,196608 -r1,24406:32779637,16203926:26345472,5755923,196608 -k1,24367:6434165,16203926:-26345472 -) -(1,24367:6434165,16203926:26345472,5559315,196608 -[1,24367:6630773,16203926:25952256,5362707,0 -(1,24356:6630773,11272264:25952256,431045,6605 -(1,24355:6630773,11272264:0,0,0 -g1,24355:6630773,11272264 -g1,24355:6630773,11272264 -g1,24355:6303093,11272264 -(1,24355:6303093,11272264:0,0,0 -) -g1,24355:6630773,11272264 -) -h1,24356:8622497,11272264:0,0,0 -k1,24356:32583029,11272264:23960532 -g1,24356:32583029,11272264 -) -(1,24366:6630773,12088191:25952256,424439,9908 -(1,24358:6630773,12088191:0,0,0 -g1,24358:6630773,12088191 -g1,24358:6630773,12088191 -g1,24358:6303093,12088191 -(1,24358:6303093,12088191:0,0,0 -) -g1,24358:6630773,12088191 -) -g1,24366:7626635,12088191 -g1,24366:8290543,12088191 -g1,24366:8954451,12088191 -g1,24366:11610083,12088191 -g1,24366:12605945,12088191 -g1,24366:13269853,12088191 -h1,24366:13601807,12088191:0,0,0 -k1,24366:32583029,12088191:18981222 -g1,24366:32583029,12088191 -) -(1,24366:6630773,12773046:25952256,424439,112852 -h1,24366:6630773,12773046:0,0,0 -g1,24366:7626635,12773046 -g1,24366:7958589,12773046 -g1,24366:8290543,12773046 -g1,24366:10614221,12773046 -g1,24366:12605945,12773046 -h1,24366:16257438,12773046:0,0,0 -k1,24366:32583029,12773046:16325591 -g1,24366:32583029,12773046 -) -(1,24366:6630773,13457901:25952256,424439,6605 -h1,24366:6630773,13457901:0,0,0 -g1,24366:7626635,13457901 -g1,24366:7958589,13457901 -g1,24366:8290543,13457901 -g1,24366:8622497,13457901 -g1,24366:10614221,13457901 -g1,24366:12605945,13457901 -g1,24366:12937899,13457901 -g1,24366:13269853,13457901 -g1,24366:13601807,13457901 -g1,24366:13933761,13457901 -g1,24366:14265715,13457901 -g1,24366:14597669,13457901 -k1,24366:14597669,13457901:0 -h1,24366:16257439,13457901:0,0,0 -k1,24366:32583029,13457901:16325590 -g1,24366:32583029,13457901 -) -(1,24366:6630773,14142756:25952256,407923,4954 -h1,24366:6630773,14142756:0,0,0 -g1,24366:7626635,14142756 -g1,24366:8290543,14142756 -g1,24366:8622497,14142756 -g1,24366:8954451,14142756 -g1,24366:9286405,14142756 -g1,24366:9618359,14142756 -g1,24366:9950313,14142756 -g1,24366:10614221,14142756 -g1,24366:11278129,14142756 -g1,24366:11610083,14142756 -g1,24366:11942037,14142756 -g1,24366:12273991,14142756 -g1,24366:12605945,14142756 -g1,24366:12937899,14142756 -g1,24366:13269853,14142756 -g1,24366:13601807,14142756 -g1,24366:13933761,14142756 -g1,24366:14265715,14142756 -g1,24366:14597669,14142756 -g1,24366:14929623,14142756 -g1,24366:15261577,14142756 -g1,24366:15593531,14142756 -g1,24366:15925485,14142756 -h1,24366:16257439,14142756:0,0,0 -k1,24366:32583029,14142756:16325590 -g1,24366:32583029,14142756 -) -(1,24366:6630773,14827611:25952256,407923,9908 -h1,24366:6630773,14827611:0,0,0 -g1,24366:7626635,14827611 -g1,24366:8290543,14827611 -g1,24366:8622497,14827611 -g1,24366:8954451,14827611 -g1,24366:9286405,14827611 -g1,24366:9618359,14827611 -g1,24366:9950313,14827611 -g1,24366:10614221,14827611 -g1,24366:11278129,14827611 -g1,24366:11610083,14827611 -g1,24366:11942037,14827611 -g1,24366:12273991,14827611 -g1,24366:12605945,14827611 -g1,24366:12937899,14827611 -g1,24366:13269853,14827611 -g1,24366:13601807,14827611 -g1,24366:13933761,14827611 -g1,24366:14265715,14827611 -g1,24366:14597669,14827611 -g1,24366:14929623,14827611 -g1,24366:15261577,14827611 -g1,24366:15593531,14827611 -g1,24366:15925485,14827611 -h1,24366:16257439,14827611:0,0,0 -k1,24366:32583029,14827611:16325590 -g1,24366:32583029,14827611 -) -(1,24366:6630773,15512466:25952256,407923,9908 -h1,24366:6630773,15512466:0,0,0 -g1,24366:7626635,15512466 -g1,24366:8290543,15512466 -g1,24366:8622497,15512466 -g1,24366:8954451,15512466 -g1,24366:9286405,15512466 -g1,24366:9618359,15512466 -g1,24366:9950313,15512466 -g1,24366:10614221,15512466 -g1,24366:11278129,15512466 -g1,24366:11610083,15512466 -g1,24366:11942037,15512466 -g1,24366:12273991,15512466 -g1,24366:12605945,15512466 -g1,24366:12937899,15512466 -g1,24366:13269853,15512466 -g1,24366:13601807,15512466 -g1,24366:13933761,15512466 -g1,24366:14265715,15512466 -g1,24366:14597669,15512466 -g1,24366:14929623,15512466 -g1,24366:15261577,15512466 -g1,24366:15593531,15512466 -g1,24366:15925485,15512466 -h1,24366:16257439,15512466:0,0,0 -k1,24366:32583029,15512466:16325590 -g1,24366:32583029,15512466 -) -(1,24366:6630773,16197321:25952256,424439,6605 -h1,24366:6630773,16197321:0,0,0 -g1,24366:7626635,16197321 -g1,24366:8290543,16197321 -g1,24366:8954451,16197321 -g1,24366:9618359,16197321 -g1,24366:11278129,16197321 -h1,24366:12605945,16197321:0,0,0 -k1,24366:32583029,16197321:19977084 -g1,24366:32583029,16197321 -) -] -) -g1,24367:32583029,16203926 -g1,24367:6630773,16203926 -g1,24367:6630773,16203926 -g1,24367:32583029,16203926 -g1,24367:32583029,16203926 -) -h1,24367:6630773,16400534:0,0,0 -(1,24373:6630773,17265614:25952256,513147,115847 -h1,24370:6630773,17265614:983040,0,0 -k1,24370:11028938,17265614:294956 -(1,24370:11028938,17265614:0,452978,115847 -r1,24406:14904322,17265614:3875384,568825,115847 -k1,24370:11028938,17265614:-3875384 -) -(1,24370:11028938,17265614:3875384,452978,115847 -k1,24370:11028938,17265614:3277 -h1,24370:14901045,17265614:0,411205,112570 -) -k1,24370:15199279,17265614:294957 -k1,24370:16685680,17265614:294956 -(1,24370:16685680,17265614:0,459977,115847 -r1,24406:20912776,17265614:4227096,575824,115847 -k1,24370:16685680,17265614:-4227096 -) -(1,24370:16685680,17265614:4227096,459977,115847 -k1,24370:16685680,17265614:3277 -h1,24370:20909499,17265614:0,411205,112570 -) -k1,24370:21207732,17265614:294956 -k1,24370:23117496,17265614:294957 -k1,24370:23768312,17265614:294956 -k1,24370:25452632,17265614:294957 -k1,24370:27623884,17265614:294956 -k1,24370:29186306,17265614:294956 -k1,24370:30251966,17265614:294957 -k1,24370:31914562,17265614:294860 -k1,24370:32583029,17265614:0 -) -(1,24373:6630773,18130694:25952256,513147,11795 -g1,24370:8556876,18130694 -g1,24370:9912815,18130694 -g1,24371:9912815,18130694 -k1,24373:32583029,18130694:22670214 -g1,24373:32583029,18130694 -) -(1,24374:6630773,20961854:25952256,32768,229376 -(1,24374:6630773,20961854:0,32768,229376 -(1,24374:6630773,20961854:5505024,32768,229376 -r1,24406:12135797,20961854:5505024,262144,229376 -) -k1,24374:6630773,20961854:-5505024 -) -(1,24374:6630773,20961854:25952256,32768,0 -r1,24406:32583029,20961854:25952256,32768,0 -) -) -(1,24374:6630773,22593706:25952256,615776,14155 -(1,24374:6630773,22593706:2954625,582746,14155 -g1,24374:6630773,22593706 -g1,24374:9585398,22593706 -) -g1,24374:13664621,22593706 -k1,24374:32583029,22593706:15428223 -g1,24374:32583029,22593706 -) -(1,24378:6630773,23852002:25952256,513147,134348 -k1,24377:8701449,23852002:259916 -k1,24377:9952924,23852002:259915 -k1,24377:11385279,23852002:259916 -k1,24377:14407537,23852002:259915 -k1,24377:19485005,23852002:259916 -k1,24377:22655374,23852002:259915 -k1,24377:23862941,23852002:259916 -k1,24377:27294799,23852002:259915 -k1,24377:28944078,23852002:259916 -k1,24377:31015408,23852002:259915 -k1,24377:32583029,23852002:0 -) -(1,24378:6630773,24717082:25952256,505283,134348 -k1,24377:8563906,24717082:231163 -k1,24377:11879193,24717082:231163 -k1,24377:15182685,24717082:231164 -k1,24377:16907414,24717082:231163 -k1,24377:17824739,24717082:231163 -k1,24377:19427571,24717082:231163 -k1,24377:22736305,24717082:231163 -k1,24377:24582275,24717082:231163 -k1,24377:25924930,24717082:231164 -k1,24377:27352780,24717082:231163 -k1,24377:30398059,24717082:231163 -k1,24378:32583029,24717082:0 -) -(1,24378:6630773,25582162:25952256,513147,134348 -k1,24377:8156685,25582162:160797 -k1,24377:8848980,25582162:160798 -k1,24377:11589929,25582162:160797 -k1,24377:14378065,25582162:160798 -k1,24377:17297272,25582162:160797 -k1,24377:18074108,25582162:160798 -k1,24377:19668833,25582162:160797 -k1,24377:20418143,25582162:160797 -k1,24377:21770386,25582162:160798 -k1,24377:24511335,25582162:160797 -k1,24377:26898390,25582162:160798 -k1,24377:27590684,25582162:160797 -k1,24377:28107342,25582162:160798 -k1,24377:30187033,25582162:160797 -k1,24378:32583029,25582162:0 -) -(1,24378:6630773,26447242:25952256,513147,134348 -k1,24377:8261914,26447242:191315 -k1,24377:11699226,26447242:191314 -k1,24377:12518376,26447242:191315 -k1,24377:13728775,26447242:191314 -k1,24377:15287171,26447242:191315 -k1,24377:16137778,26447242:191315 -k1,24377:17642434,26447242:191314 -k1,24377:19645164,26447242:191315 -k1,24377:21230430,26447242:191315 -k1,24377:22442140,26447242:191314 -k1,24377:25297494,26447242:191315 -k1,24377:26148100,26447242:191314 -k1,24377:29423539,26447242:191315 -k1,24377:32583029,26447242:0 -) -(1,24378:6630773,27312322:25952256,513147,134348 -g1,24377:9855799,27312322 -g1,24377:11622649,27312322 -g1,24377:14449216,27312322 -g1,24377:16088271,27312322 -g1,24377:16938928,27312322 -g1,24377:17885923,27312322 -g1,24377:19735349,27312322 -g1,24377:22019934,27312322 -g1,24377:23661610,27312322 -g1,24377:25604752,27312322 -g1,24377:27371602,27312322 -k1,24378:32583029,27312322:2932742 -g1,24378:32583029,27312322 -) -(1,24379:6630773,29429140:25952256,564462,147783 -(1,24379:6630773,29429140:3348562,534184,12975 -g1,24379:6630773,29429140 -g1,24379:9979335,29429140 -) -k1,24379:32583028,29429140:19529072 -g1,24379:32583028,29429140 -) -(1,24384:6630773,30687436:25952256,513147,134348 -k1,24383:9956624,30687436:205682 -k1,24383:10778344,30687436:205682 -k1,24383:13564179,30687436:205683 -k1,24383:16397199,30687436:205682 -k1,24383:18284535,30687436:205682 -k1,24383:19235361,30687436:205682 -k1,24383:20092472,30687436:205683 -k1,24383:22479848,30687436:205682 -k1,24383:24074893,30687436:205682 -k1,24383:25848196,30687436:205682 -k1,24383:27367221,30687436:205683 -k1,24383:29384318,30687436:205682 -k1,24383:30351528,30687436:205682 -k1,24383:32583029,30687436:0 -) -(1,24384:6630773,31552516:25952256,505283,134348 -k1,24383:9902461,31552516:187564 -k1,24383:12644618,31552516:187564 -k1,24383:16078181,31552516:187565 -k1,24383:19246322,31552516:187564 -k1,24383:20766233,31552516:187564 -k1,24383:22694433,31552516:187564 -k1,24383:24477798,31552516:187564 -k1,24383:26719916,31552516:187565 -k1,24383:29063615,31552516:187564 -k1,24383:31410590,31552516:187564 -k1,24384:32583029,31552516:0 -) -(1,24384:6630773,32417596:25952256,513147,134348 -k1,24383:7946474,32417596:176030 -k1,24383:9313948,32417596:176029 -k1,24383:9845838,32417596:176030 -k1,24383:12717363,32417596:176029 -k1,24383:13841044,32417596:176030 -k1,24383:16274789,32417596:176030 -k1,24383:17840181,32417596:176029 -k1,24383:19283677,32417596:176030 -k1,24383:20773048,32417596:176029 -k1,24383:22343029,32417596:176030 -k1,24383:25029743,32417596:176030 -k1,24383:27139084,32417596:176029 -k1,24383:27966542,32417596:176030 -k1,24383:29474918,32417596:176029 -k1,24383:31391584,32417596:176030 -k1,24384:32583029,32417596:0 -) -(1,24384:6630773,33282676:25952256,513147,126483 -k1,24383:8400997,33282676:174423 -k1,24383:8990238,33282676:174398 -k1,24383:12697707,33282676:174423 -k1,24383:13891215,33282676:174423 -k1,24383:15158123,33282676:174423 -k1,24383:15991838,33282676:174423 -k1,24383:17862988,33282676:174423 -k1,24383:21063208,33282676:174423 -k1,24383:21853669,33282676:174423 -k1,24383:23815259,33282676:174423 -k1,24383:24605720,33282676:174423 -k1,24383:25799228,33282676:174423 -k1,24383:26423203,33282676:174398 -k1,24383:28131824,33282676:174423 -k1,24384:32583029,33282676:0 -) -(1,24384:6630773,34147756:25952256,513147,126483 -k1,24383:9447663,34147756:276715 -k1,24383:10542266,34147756:276714 -k1,24383:11174841,34147756:276715 -k1,24383:13576232,34147756:276714 -k1,24383:16688034,34147756:276715 -k1,24383:17833101,34147756:276715 -k1,24383:19202300,34147756:276714 -k1,24383:22174511,34147756:276715 -(1,24383:22174511,34147756:0,452978,115847 -r1,24406:26049895,34147756:3875384,568825,115847 -k1,24383:22174511,34147756:-3875384 -) -(1,24383:22174511,34147756:3875384,452978,115847 -k1,24383:22174511,34147756:3277 -h1,24383:26046618,34147756:0,411205,112570 -) -k1,24383:26326610,34147756:276715 -k1,24383:27254752,34147756:276714 -k1,24383:28943768,34147756:276715 -k1,24383:29576342,34147756:276714 -k1,24383:31512827,34147756:276715 -k1,24383:32583029,34147756:0 -) -(1,24384:6630773,35012836:25952256,513147,134348 -k1,24383:8617824,35012836:175636 -k1,24383:9149321,35012836:175637 -k1,24383:10458075,35012836:175636 -k1,24383:12316676,35012836:175636 -k1,24383:13616911,35012836:175637 -k1,24383:15186498,35012836:175636 -k1,24383:16381219,35012836:175636 -k1,24383:17990783,35012836:175636 -k1,24383:20510643,35012836:175637 -k1,24383:23020016,35012836:175636 -k1,24383:23862808,35012836:175636 -k1,24383:25634246,35012836:175637 -k1,24383:27300171,35012836:175636 -k1,24383:28494892,35012836:175636 -k1,24383:29976662,35012836:175637 -k1,24383:31048831,35012836:175636 -k1,24383:32583029,35012836:0 -) -(1,24384:6630773,35877916:25952256,513147,134348 -k1,24383:8064852,35877916:242634 -k1,24383:10104484,35877916:242635 -k1,24383:13060309,35877916:242634 -k1,24383:13962236,35877916:242635 -k1,24383:15223955,35877916:242634 -k1,24383:16855952,35877916:242634 -k1,24383:18974883,35877916:242635 -k1,24383:20209077,35877916:242634 -k1,24383:22700907,35877916:242634 -k1,24383:25924119,35877916:242635 -k1,24383:26522613,35877916:242634 -k1,24383:29148137,35877916:242635 -k1,24383:30784722,35877916:242634 -k1,24383:32583029,35877916:0 -) -(1,24384:6630773,36742996:25952256,505283,126483 -g1,24383:8689259,36742996 -g1,24383:11407692,36742996 -g1,24383:12293083,36742996 -k1,24384:32583029,36742996:17617388 -g1,24384:32583029,36742996 -) -v1,24386:6630773,37427851:0,393216,0 -(1,24400:6630773,43358628:25952256,6323993,196608 -g1,24400:6630773,43358628 -g1,24400:6630773,43358628 -g1,24400:6434165,43358628 -(1,24400:6434165,43358628:0,6323993,196608 -r1,24406:32779637,43358628:26345472,6520601,196608 -k1,24400:6434165,43358628:-26345472 -) -(1,24400:6434165,43358628:26345472,6323993,196608 -[1,24400:6630773,43358628:25952256,6127385,0 -(1,24388:6630773,37662288:25952256,431045,106246 -(1,24387:6630773,37662288:0,0,0 -g1,24387:6630773,37662288 -g1,24387:6630773,37662288 -g1,24387:6303093,37662288 -(1,24387:6303093,37662288:0,0,0 -) -g1,24387:6630773,37662288 -) -g1,24388:10282266,37662288 -g1,24388:11278128,37662288 -g1,24388:16257437,37662288 -g1,24388:16921345,37662288 -g1,24388:24556285,37662288 -g1,24388:29203640,37662288 -g1,24388:29867548,37662288 -h1,24388:31527318,37662288:0,0,0 -k1,24388:32583029,37662288:1055711 -g1,24388:32583029,37662288 -) -(1,24389:6630773,38347143:25952256,431045,106246 -h1,24389:6630773,38347143:0,0,0 -g1,24389:11942036,38347143 -g1,24389:14265714,38347143 -h1,24389:15593530,38347143:0,0,0 -k1,24389:32583030,38347143:16989500 -g1,24389:32583030,38347143 -) -(1,24399:6630773,39163070:25952256,424439,106246 -(1,24391:6630773,39163070:0,0,0 -g1,24391:6630773,39163070 -g1,24391:6630773,39163070 -g1,24391:6303093,39163070 -(1,24391:6303093,39163070:0,0,0 -) -g1,24391:6630773,39163070 -) -g1,24399:7626635,39163070 -g1,24399:7958589,39163070 -g1,24399:8290543,39163070 -g1,24399:10282267,39163070 -g1,24399:10614221,39163070 -g1,24399:10946175,39163070 -g1,24399:11278129,39163070 -g1,24399:11610083,39163070 -g1,24399:11942037,39163070 -g1,24399:12273991,39163070 -g1,24399:14265715,39163070 -g1,24399:17585254,39163070 -g1,24399:19908932,39163070 -g1,24399:21236748,39163070 -g1,24399:23892380,39163070 -h1,24399:27875827,39163070:0,0,0 -k1,24399:32583029,39163070:4707202 -g1,24399:32583029,39163070 -) -(1,24399:6630773,39847925:25952256,424439,86428 -h1,24399:6630773,39847925:0,0,0 -g1,24399:7626635,39847925 -g1,24399:8290543,39847925 -g1,24399:8622497,39847925 -g1,24399:8954451,39847925 -g1,24399:9286405,39847925 -g1,24399:9618359,39847925 -g1,24399:10282267,39847925 -g1,24399:13269853,39847925 -g1,24399:14265715,39847925 -g1,24399:14597669,39847925 -g1,24399:14929623,39847925 -g1,24399:15261577,39847925 -g1,24399:15593531,39847925 -g1,24399:15925485,39847925 -g1,24399:16257439,39847925 -g1,24399:16589393,39847925 -g1,24399:16921347,39847925 -g1,24399:17585255,39847925 -g1,24399:17917209,39847925 -g1,24399:18249163,39847925 -g1,24399:18581117,39847925 -g1,24399:18913071,39847925 -g1,24399:19245025,39847925 -g1,24399:19908933,39847925 -g1,24399:20240887,39847925 -g1,24399:21236749,39847925 -g1,24399:21568703,39847925 -g1,24399:21900657,39847925 -g1,24399:22232611,39847925 -g1,24399:22564565,39847925 -g1,24399:22896519,39847925 -g1,24399:23228473,39847925 -g1,24399:23892381,39847925 -g1,24399:24224335,39847925 -h1,24399:27875828,39847925:0,0,0 -k1,24399:32583029,39847925:4707201 -g1,24399:32583029,39847925 -) -(1,24399:6630773,40532780:25952256,424439,86428 -h1,24399:6630773,40532780:0,0,0 -g1,24399:7626635,40532780 -g1,24399:8290543,40532780 -g1,24399:8622497,40532780 -g1,24399:8954451,40532780 -g1,24399:9286405,40532780 -g1,24399:9618359,40532780 -g1,24399:10282267,40532780 -g1,24399:13269853,40532780 -g1,24399:14265715,40532780 -g1,24399:14597669,40532780 -g1,24399:14929623,40532780 -g1,24399:15261577,40532780 -g1,24399:15593531,40532780 -g1,24399:15925485,40532780 -g1,24399:16257439,40532780 -g1,24399:16589393,40532780 -g1,24399:16921347,40532780 -g1,24399:17585255,40532780 -g1,24399:17917209,40532780 -g1,24399:18249163,40532780 -g1,24399:18581117,40532780 -g1,24399:18913071,40532780 -g1,24399:19245025,40532780 -g1,24399:19908933,40532780 -g1,24399:20240887,40532780 -g1,24399:21236749,40532780 -g1,24399:21568703,40532780 -g1,24399:21900657,40532780 -g1,24399:22232611,40532780 -g1,24399:22564565,40532780 -g1,24399:22896519,40532780 -g1,24399:23228473,40532780 -g1,24399:23892381,40532780 -g1,24399:24224335,40532780 -h1,24399:27875828,40532780:0,0,0 -k1,24399:32583029,40532780:4707201 -g1,24399:32583029,40532780 -) -(1,24399:6630773,41217635:25952256,424439,86428 -h1,24399:6630773,41217635:0,0,0 -g1,24399:7626635,41217635 -g1,24399:8290543,41217635 -g1,24399:8622497,41217635 -g1,24399:8954451,41217635 -g1,24399:9286405,41217635 -g1,24399:9618359,41217635 -g1,24399:10282267,41217635 -g1,24399:13269853,41217635 -g1,24399:14265715,41217635 -g1,24399:14597669,41217635 -g1,24399:14929623,41217635 -g1,24399:15261577,41217635 -g1,24399:15593531,41217635 -g1,24399:15925485,41217635 -g1,24399:16257439,41217635 -g1,24399:16589393,41217635 -g1,24399:16921347,41217635 -g1,24399:17585255,41217635 -g1,24399:17917209,41217635 -g1,24399:18249163,41217635 -g1,24399:18581117,41217635 -g1,24399:18913071,41217635 -g1,24399:19245025,41217635 -g1,24399:19908933,41217635 -g1,24399:21236749,41217635 -g1,24399:21568703,41217635 -g1,24399:21900657,41217635 -g1,24399:22232611,41217635 -g1,24399:22564565,41217635 -g1,24399:22896519,41217635 -g1,24399:23228473,41217635 -g1,24399:23892381,41217635 -g1,24399:24224335,41217635 -h1,24399:27875828,41217635:0,0,0 -k1,24399:32583029,41217635:4707201 -g1,24399:32583029,41217635 -) -(1,24399:6630773,41902490:25952256,424439,86428 -h1,24399:6630773,41902490:0,0,0 -g1,24399:7626635,41902490 -g1,24399:8290543,41902490 -g1,24399:8622497,41902490 -g1,24399:8954451,41902490 -g1,24399:9286405,41902490 -g1,24399:9618359,41902490 -g1,24399:10282267,41902490 -g1,24399:13269853,41902490 -g1,24399:14265715,41902490 -g1,24399:14597669,41902490 -g1,24399:14929623,41902490 -g1,24399:15261577,41902490 -g1,24399:15593531,41902490 -g1,24399:15925485,41902490 -g1,24399:16257439,41902490 -g1,24399:16589393,41902490 -g1,24399:16921347,41902490 -g1,24399:17585255,41902490 -g1,24399:17917209,41902490 -g1,24399:18249163,41902490 -g1,24399:18581117,41902490 -g1,24399:18913071,41902490 -g1,24399:19245025,41902490 -g1,24399:19908933,41902490 -g1,24399:21236749,41902490 -g1,24399:21568703,41902490 -g1,24399:21900657,41902490 -g1,24399:22232611,41902490 -g1,24399:22564565,41902490 -g1,24399:22896519,41902490 -g1,24399:23228473,41902490 -g1,24399:23892381,41902490 -g1,24399:24224335,41902490 -h1,24399:27875828,41902490:0,0,0 -k1,24399:32583029,41902490:4707201 -g1,24399:32583029,41902490 -) -(1,24399:6630773,42587345:25952256,424439,86428 -h1,24399:6630773,42587345:0,0,0 -g1,24399:7626635,42587345 -g1,24399:8290543,42587345 -g1,24399:8622497,42587345 -g1,24399:8954451,42587345 -g1,24399:9286405,42587345 -g1,24399:9618359,42587345 -g1,24399:10282267,42587345 -g1,24399:13269853,42587345 -g1,24399:14265715,42587345 -g1,24399:14597669,42587345 -g1,24399:14929623,42587345 -g1,24399:15261577,42587345 -g1,24399:15593531,42587345 -g1,24399:15925485,42587345 -g1,24399:16257439,42587345 -g1,24399:16589393,42587345 -g1,24399:16921347,42587345 -g1,24399:17585255,42587345 -g1,24399:17917209,42587345 -g1,24399:18249163,42587345 -g1,24399:18581117,42587345 -g1,24399:18913071,42587345 -g1,24399:19245025,42587345 -g1,24399:19908933,42587345 -g1,24399:21236749,42587345 -g1,24399:21568703,42587345 -g1,24399:21900657,42587345 -g1,24399:22232611,42587345 -g1,24399:22564565,42587345 -g1,24399:22896519,42587345 -g1,24399:23228473,42587345 -g1,24399:23892381,42587345 -g1,24399:24224335,42587345 -h1,24399:27875828,42587345:0,0,0 -k1,24399:32583029,42587345:4707201 -g1,24399:32583029,42587345 -) -(1,24399:6630773,43272200:25952256,424439,86428 -h1,24399:6630773,43272200:0,0,0 -g1,24399:7626635,43272200 -g1,24399:8290543,43272200 -g1,24399:8622497,43272200 -g1,24399:8954451,43272200 -g1,24399:9286405,43272200 -g1,24399:9618359,43272200 -g1,24399:10282267,43272200 -g1,24399:13269853,43272200 -g1,24399:14265715,43272200 -g1,24399:14597669,43272200 -g1,24399:14929623,43272200 -g1,24399:15261577,43272200 -g1,24399:15593531,43272200 -g1,24399:15925485,43272200 -g1,24399:16257439,43272200 -g1,24399:16589393,43272200 -g1,24399:16921347,43272200 -g1,24399:17585255,43272200 -g1,24399:17917209,43272200 -g1,24399:18249163,43272200 -g1,24399:18581117,43272200 -g1,24399:18913071,43272200 -g1,24399:19245025,43272200 -g1,24399:19908933,43272200 -g1,24399:21236749,43272200 -g1,24399:21568703,43272200 -g1,24399:21900657,43272200 -g1,24399:22232611,43272200 -g1,24399:22564565,43272200 -g1,24399:22896519,43272200 -g1,24399:23228473,43272200 -g1,24399:23892381,43272200 -g1,24399:24224335,43272200 -h1,24399:27875828,43272200:0,0,0 -k1,24399:32583029,43272200:4707201 -g1,24399:32583029,43272200 -) -] -) -g1,24400:32583029,43358628 -g1,24400:6630773,43358628 -g1,24400:6630773,43358628 -g1,24400:32583029,43358628 -g1,24400:32583029,43358628 -) -h1,24400:6630773,43555236:0,0,0 -(1,24404:6630773,44420316:25952256,513147,134348 -h1,24403:6630773,44420316:983040,0,0 -g1,24403:8300630,44420316 -g1,24403:10741190,44420316 -g1,24403:13775506,44420316 -g1,24403:15177976,44420316 -g1,24403:16802613,44420316 -g1,24403:18395793,44420316 -g1,24403:18950882,44420316 -g1,24403:21274788,44420316 -(1,24403:21274788,44420316:0,414482,115847 -r1,24406:22688189,44420316:1413401,530329,115847 -k1,24403:21274788,44420316:-1413401 -) -(1,24403:21274788,44420316:1413401,414482,115847 -k1,24403:21274788,44420316:3277 -h1,24403:22684912,44420316:0,411205,112570 -) -g1,24403:22887418,44420316 -g1,24403:24069687,44420316 -g1,24403:26080331,44420316 -g1,24403:27076478,44420316 -g1,24403:28958672,44420316 -k1,24404:32583029,44420316:2447331 -g1,24404:32583029,44420316 -) -] -(1,24406:32583029,45706769:0,0,0 -g1,24406:32583029,45706769 -) -) -] -(1,24406:6630773,47279633:25952256,0,0 -h1,24406:6630773,47279633:25952256,0,0 -) -] -(1,24406:4262630,4025873:0,0,0 -[1,24406:-473656,4025873:0,0,0 -(1,24406:-473656,-710413:0,0,0 -(1,24406:-473656,-710413:0,0,0 -g1,24406:-473656,-710413 -) -g1,24406:-473656,-710413 +[1,24404:6630773,45706769:25952256,40108032,0 +(1,24331:6630773,6254097:25952256,513147,134348 +k1,24330:9599008,6254097:212446 +k1,24330:10883622,6254097:212445 +k1,24330:12630266,6254097:212446 +k1,24330:14034157,6254097:212446 +k1,24330:17057441,6254097:212445 +k1,24330:19380802,6254097:212446 +k1,24330:20252540,6254097:212446 +k1,24330:23178176,6254097:212445 +k1,24330:24582067,6254097:212446 +k1,24330:26502381,6254097:212446 +k1,24330:27911513,6254097:212445 +k1,24330:29804302,6254097:212446 +k1,24330:32583029,6254097:0 +) +(1,24331:6630773,7119177:25952256,513147,126483 +g1,24330:7361499,7119177 +g1,24330:7916588,7119177 +g1,24330:9927232,7119177 +g1,24330:10983017,7119177 +g1,24330:14565870,7119177 +g1,24330:15120959,7119177 +g1,24330:16709551,7119177 +g1,24330:18958746,7119177 +g1,24330:21947843,7119177 +(1,24330:21947843,7119177:0,459977,115847 +r1,24404:25823227,7119177:3875384,575824,115847 +k1,24330:21947843,7119177:-3875384 +) +(1,24330:21947843,7119177:3875384,459977,115847 +k1,24330:21947843,7119177:3277 +h1,24330:25819950,7119177:0,411205,112570 +) +g1,24330:26022456,7119177 +g1,24330:27964287,7119177 +g1,24330:29210781,7119177 +g1,24330:30777746,7119177 +k1,24331:32583029,7119177:439513 +g1,24331:32583029,7119177 +) +v1,24333:6630773,7804032:0,393216,0 +(1,24340:6630773,8954036:25952256,1543220,196608 +g1,24340:6630773,8954036 +g1,24340:6630773,8954036 +g1,24340:6434165,8954036 +(1,24340:6434165,8954036:0,1543220,196608 +r1,24404:32779637,8954036:26345472,1739828,196608 +k1,24340:6434165,8954036:-26345472 +) +(1,24340:6434165,8954036:26345472,1543220,196608 +[1,24340:6630773,8954036:25952256,1346612,0 +(1,24335:6630773,8031863:25952256,424439,79822 +(1,24334:6630773,8031863:0,0,0 +g1,24334:6630773,8031863 +g1,24334:6630773,8031863 +g1,24334:6303093,8031863 +(1,24334:6303093,8031863:0,0,0 +) +g1,24334:6630773,8031863 +) +k1,24335:6630773,8031863:0 +h1,24335:18581114,8031863:0,0,0 +k1,24335:32583029,8031863:14001915 +g1,24335:32583029,8031863 +) +(1,24339:6630773,8847790:25952256,424439,106246 +(1,24337:6630773,8847790:0,0,0 +g1,24337:6630773,8847790 +g1,24337:6630773,8847790 +g1,24337:6303093,8847790 +(1,24337:6303093,8847790:0,0,0 +) +g1,24337:6630773,8847790 +) +g1,24339:7626635,8847790 +g1,24339:8954451,8847790 +h1,24339:11942036,8847790:0,0,0 +k1,24339:32583028,8847790:20640992 +g1,24339:32583028,8847790 +) +] +) +g1,24340:32583029,8954036 +g1,24340:6630773,8954036 +g1,24340:6630773,8954036 +g1,24340:32583029,8954036 +g1,24340:32583029,8954036 +) +h1,24340:6630773,9150644:0,0,0 +v1,24344:6630773,9835499:0,393216,0 +(1,24348:6630773,10156364:25952256,714081,196608 +g1,24348:6630773,10156364 +g1,24348:6630773,10156364 +g1,24348:6434165,10156364 +(1,24348:6434165,10156364:0,714081,196608 +r1,24404:32779637,10156364:26345472,910689,196608 +k1,24348:6434165,10156364:-26345472 +) +(1,24348:6434165,10156364:26345472,714081,196608 +[1,24348:6630773,10156364:25952256,517473,0 +(1,24346:6630773,10069936:25952256,431045,86428 +(1,24345:6630773,10069936:0,0,0 +g1,24345:6630773,10069936 +g1,24345:6630773,10069936 +g1,24345:6303093,10069936 +(1,24345:6303093,10069936:0,0,0 +) +g1,24345:6630773,10069936 +) +g1,24346:8954451,10069936 +g1,24346:9950313,10069936 +g1,24346:19908930,10069936 +g1,24346:21900654,10069936 +g1,24346:22564562,10069936 +h1,24346:23228470,10069936:0,0,0 +k1,24346:32583029,10069936:9354559 +g1,24346:32583029,10069936 +) +] +) +g1,24348:32583029,10156364 +g1,24348:6630773,10156364 +g1,24348:6630773,10156364 +g1,24348:32583029,10156364 +g1,24348:32583029,10156364 +) +h1,24348:6630773,10352972:0,0,0 +v1,24352:6630773,11037827:0,393216,0 +(1,24365:6630773,16203926:25952256,5559315,196608 +g1,24365:6630773,16203926 +g1,24365:6630773,16203926 +g1,24365:6434165,16203926 +(1,24365:6434165,16203926:0,5559315,196608 +r1,24404:32779637,16203926:26345472,5755923,196608 +k1,24365:6434165,16203926:-26345472 +) +(1,24365:6434165,16203926:26345472,5559315,196608 +[1,24365:6630773,16203926:25952256,5362707,0 +(1,24354:6630773,11272264:25952256,431045,6605 +(1,24353:6630773,11272264:0,0,0 +g1,24353:6630773,11272264 +g1,24353:6630773,11272264 +g1,24353:6303093,11272264 +(1,24353:6303093,11272264:0,0,0 +) +g1,24353:6630773,11272264 +) +h1,24354:8622497,11272264:0,0,0 +k1,24354:32583029,11272264:23960532 +g1,24354:32583029,11272264 +) +(1,24364:6630773,12088191:25952256,424439,9908 +(1,24356:6630773,12088191:0,0,0 +g1,24356:6630773,12088191 +g1,24356:6630773,12088191 +g1,24356:6303093,12088191 +(1,24356:6303093,12088191:0,0,0 +) +g1,24356:6630773,12088191 +) +g1,24364:7626635,12088191 +g1,24364:8290543,12088191 +g1,24364:8954451,12088191 +g1,24364:11610083,12088191 +g1,24364:12605945,12088191 +g1,24364:13269853,12088191 +h1,24364:13601807,12088191:0,0,0 +k1,24364:32583029,12088191:18981222 +g1,24364:32583029,12088191 +) +(1,24364:6630773,12773046:25952256,424439,112852 +h1,24364:6630773,12773046:0,0,0 +g1,24364:7626635,12773046 +g1,24364:7958589,12773046 +g1,24364:8290543,12773046 +g1,24364:10614221,12773046 +g1,24364:12605945,12773046 +h1,24364:16257438,12773046:0,0,0 +k1,24364:32583029,12773046:16325591 +g1,24364:32583029,12773046 +) +(1,24364:6630773,13457901:25952256,424439,6605 +h1,24364:6630773,13457901:0,0,0 +g1,24364:7626635,13457901 +g1,24364:7958589,13457901 +g1,24364:8290543,13457901 +g1,24364:8622497,13457901 +g1,24364:10614221,13457901 +g1,24364:12605945,13457901 +g1,24364:12937899,13457901 +g1,24364:13269853,13457901 +g1,24364:13601807,13457901 +g1,24364:13933761,13457901 +g1,24364:14265715,13457901 +g1,24364:14597669,13457901 +k1,24364:14597669,13457901:0 +h1,24364:16257439,13457901:0,0,0 +k1,24364:32583029,13457901:16325590 +g1,24364:32583029,13457901 +) +(1,24364:6630773,14142756:25952256,407923,4954 +h1,24364:6630773,14142756:0,0,0 +g1,24364:7626635,14142756 +g1,24364:8290543,14142756 +g1,24364:8622497,14142756 +g1,24364:8954451,14142756 +g1,24364:9286405,14142756 +g1,24364:9618359,14142756 +g1,24364:9950313,14142756 +g1,24364:10614221,14142756 +g1,24364:11278129,14142756 +g1,24364:11610083,14142756 +g1,24364:11942037,14142756 +g1,24364:12273991,14142756 +g1,24364:12605945,14142756 +g1,24364:12937899,14142756 +g1,24364:13269853,14142756 +g1,24364:13601807,14142756 +g1,24364:13933761,14142756 +g1,24364:14265715,14142756 +g1,24364:14597669,14142756 +g1,24364:14929623,14142756 +g1,24364:15261577,14142756 +g1,24364:15593531,14142756 +g1,24364:15925485,14142756 +h1,24364:16257439,14142756:0,0,0 +k1,24364:32583029,14142756:16325590 +g1,24364:32583029,14142756 +) +(1,24364:6630773,14827611:25952256,407923,9908 +h1,24364:6630773,14827611:0,0,0 +g1,24364:7626635,14827611 +g1,24364:8290543,14827611 +g1,24364:8622497,14827611 +g1,24364:8954451,14827611 +g1,24364:9286405,14827611 +g1,24364:9618359,14827611 +g1,24364:9950313,14827611 +g1,24364:10614221,14827611 +g1,24364:11278129,14827611 +g1,24364:11610083,14827611 +g1,24364:11942037,14827611 +g1,24364:12273991,14827611 +g1,24364:12605945,14827611 +g1,24364:12937899,14827611 +g1,24364:13269853,14827611 +g1,24364:13601807,14827611 +g1,24364:13933761,14827611 +g1,24364:14265715,14827611 +g1,24364:14597669,14827611 +g1,24364:14929623,14827611 +g1,24364:15261577,14827611 +g1,24364:15593531,14827611 +g1,24364:15925485,14827611 +h1,24364:16257439,14827611:0,0,0 +k1,24364:32583029,14827611:16325590 +g1,24364:32583029,14827611 +) +(1,24364:6630773,15512466:25952256,407923,9908 +h1,24364:6630773,15512466:0,0,0 +g1,24364:7626635,15512466 +g1,24364:8290543,15512466 +g1,24364:8622497,15512466 +g1,24364:8954451,15512466 +g1,24364:9286405,15512466 +g1,24364:9618359,15512466 +g1,24364:9950313,15512466 +g1,24364:10614221,15512466 +g1,24364:11278129,15512466 +g1,24364:11610083,15512466 +g1,24364:11942037,15512466 +g1,24364:12273991,15512466 +g1,24364:12605945,15512466 +g1,24364:12937899,15512466 +g1,24364:13269853,15512466 +g1,24364:13601807,15512466 +g1,24364:13933761,15512466 +g1,24364:14265715,15512466 +g1,24364:14597669,15512466 +g1,24364:14929623,15512466 +g1,24364:15261577,15512466 +g1,24364:15593531,15512466 +g1,24364:15925485,15512466 +h1,24364:16257439,15512466:0,0,0 +k1,24364:32583029,15512466:16325590 +g1,24364:32583029,15512466 +) +(1,24364:6630773,16197321:25952256,424439,6605 +h1,24364:6630773,16197321:0,0,0 +g1,24364:7626635,16197321 +g1,24364:8290543,16197321 +g1,24364:8954451,16197321 +g1,24364:9618359,16197321 +g1,24364:11278129,16197321 +h1,24364:12605945,16197321:0,0,0 +k1,24364:32583029,16197321:19977084 +g1,24364:32583029,16197321 +) +] +) +g1,24365:32583029,16203926 +g1,24365:6630773,16203926 +g1,24365:6630773,16203926 +g1,24365:32583029,16203926 +g1,24365:32583029,16203926 +) +h1,24365:6630773,16400534:0,0,0 +(1,24371:6630773,17265614:25952256,513147,115847 +h1,24368:6630773,17265614:983040,0,0 +k1,24368:11028938,17265614:294956 +(1,24368:11028938,17265614:0,452978,115847 +r1,24404:14904322,17265614:3875384,568825,115847 +k1,24368:11028938,17265614:-3875384 +) +(1,24368:11028938,17265614:3875384,452978,115847 +k1,24368:11028938,17265614:3277 +h1,24368:14901045,17265614:0,411205,112570 +) +k1,24368:15199279,17265614:294957 +k1,24368:16685680,17265614:294956 +(1,24368:16685680,17265614:0,459977,115847 +r1,24404:20912776,17265614:4227096,575824,115847 +k1,24368:16685680,17265614:-4227096 +) +(1,24368:16685680,17265614:4227096,459977,115847 +k1,24368:16685680,17265614:3277 +h1,24368:20909499,17265614:0,411205,112570 +) +k1,24368:21207732,17265614:294956 +k1,24368:23117496,17265614:294957 +k1,24368:23768312,17265614:294956 +k1,24368:25452632,17265614:294957 +k1,24368:27623884,17265614:294956 +k1,24368:29186306,17265614:294956 +k1,24368:30251966,17265614:294957 +k1,24368:31914562,17265614:294860 +k1,24368:32583029,17265614:0 +) +(1,24371:6630773,18130694:25952256,513147,11795 +g1,24368:8556876,18130694 +g1,24368:9912815,18130694 +g1,24369:9912815,18130694 +k1,24371:32583029,18130694:22670214 +g1,24371:32583029,18130694 +) +(1,24372:6630773,20961854:25952256,32768,229376 +(1,24372:6630773,20961854:0,32768,229376 +(1,24372:6630773,20961854:5505024,32768,229376 +r1,24404:12135797,20961854:5505024,262144,229376 +) +k1,24372:6630773,20961854:-5505024 +) +(1,24372:6630773,20961854:25952256,32768,0 +r1,24404:32583029,20961854:25952256,32768,0 +) +) +(1,24372:6630773,22593706:25952256,615776,14155 +(1,24372:6630773,22593706:2954625,582746,14155 +g1,24372:6630773,22593706 +g1,24372:9585398,22593706 +) +g1,24372:13664621,22593706 +k1,24372:32583029,22593706:15428223 +g1,24372:32583029,22593706 +) +(1,24376:6630773,23852002:25952256,513147,134348 +k1,24375:8701449,23852002:259916 +k1,24375:9952924,23852002:259915 +k1,24375:11385279,23852002:259916 +k1,24375:14407537,23852002:259915 +k1,24375:19485005,23852002:259916 +k1,24375:22655374,23852002:259915 +k1,24375:23862941,23852002:259916 +k1,24375:27294799,23852002:259915 +k1,24375:28944078,23852002:259916 +k1,24375:31015408,23852002:259915 +k1,24375:32583029,23852002:0 +) +(1,24376:6630773,24717082:25952256,505283,134348 +k1,24375:8563906,24717082:231163 +k1,24375:11879193,24717082:231163 +k1,24375:15182685,24717082:231164 +k1,24375:16907414,24717082:231163 +k1,24375:17824739,24717082:231163 +k1,24375:19427571,24717082:231163 +k1,24375:22736305,24717082:231163 +k1,24375:24582275,24717082:231163 +k1,24375:25924930,24717082:231164 +k1,24375:27352780,24717082:231163 +k1,24375:30398059,24717082:231163 +k1,24376:32583029,24717082:0 +) +(1,24376:6630773,25582162:25952256,513147,134348 +k1,24375:8156685,25582162:160797 +k1,24375:8848980,25582162:160798 +k1,24375:11589929,25582162:160797 +k1,24375:14378065,25582162:160798 +k1,24375:17297272,25582162:160797 +k1,24375:18074108,25582162:160798 +k1,24375:19668833,25582162:160797 +k1,24375:20418143,25582162:160797 +k1,24375:21770386,25582162:160798 +k1,24375:24511335,25582162:160797 +k1,24375:26898390,25582162:160798 +k1,24375:27590684,25582162:160797 +k1,24375:28107342,25582162:160798 +k1,24375:30187033,25582162:160797 +k1,24376:32583029,25582162:0 +) +(1,24376:6630773,26447242:25952256,513147,134348 +k1,24375:8261914,26447242:191315 +k1,24375:11699226,26447242:191314 +k1,24375:12518376,26447242:191315 +k1,24375:13728775,26447242:191314 +k1,24375:15287171,26447242:191315 +k1,24375:16137778,26447242:191315 +k1,24375:17642434,26447242:191314 +k1,24375:19645164,26447242:191315 +k1,24375:21230430,26447242:191315 +k1,24375:22442140,26447242:191314 +k1,24375:25297494,26447242:191315 +k1,24375:26148100,26447242:191314 +k1,24375:29423539,26447242:191315 +k1,24375:32583029,26447242:0 +) +(1,24376:6630773,27312322:25952256,513147,134348 +g1,24375:9855799,27312322 +g1,24375:11622649,27312322 +g1,24375:14449216,27312322 +g1,24375:16088271,27312322 +g1,24375:16938928,27312322 +g1,24375:17885923,27312322 +g1,24375:19735349,27312322 +g1,24375:22019934,27312322 +g1,24375:23661610,27312322 +g1,24375:25604752,27312322 +g1,24375:27371602,27312322 +k1,24376:32583029,27312322:2932742 +g1,24376:32583029,27312322 +) +(1,24377:6630773,29429140:25952256,564462,147783 +(1,24377:6630773,29429140:3348562,534184,12975 +g1,24377:6630773,29429140 +g1,24377:9979335,29429140 +) +k1,24377:32583028,29429140:19529072 +g1,24377:32583028,29429140 +) +(1,24382:6630773,30687436:25952256,513147,134348 +k1,24381:9956624,30687436:205682 +k1,24381:10778344,30687436:205682 +k1,24381:13564179,30687436:205683 +k1,24381:16397199,30687436:205682 +k1,24381:18284535,30687436:205682 +k1,24381:19235361,30687436:205682 +k1,24381:20092472,30687436:205683 +k1,24381:22479848,30687436:205682 +k1,24381:24074893,30687436:205682 +k1,24381:25848196,30687436:205682 +k1,24381:27367221,30687436:205683 +k1,24381:29384318,30687436:205682 +k1,24381:30351528,30687436:205682 +k1,24381:32583029,30687436:0 +) +(1,24382:6630773,31552516:25952256,505283,134348 +k1,24381:9902461,31552516:187564 +k1,24381:12644618,31552516:187564 +k1,24381:16078181,31552516:187565 +k1,24381:19246322,31552516:187564 +k1,24381:20766233,31552516:187564 +k1,24381:22694433,31552516:187564 +k1,24381:24477798,31552516:187564 +k1,24381:26719916,31552516:187565 +k1,24381:29063615,31552516:187564 +k1,24381:31410590,31552516:187564 +k1,24382:32583029,31552516:0 +) +(1,24382:6630773,32417596:25952256,513147,134348 +k1,24381:7946474,32417596:176030 +k1,24381:9313948,32417596:176029 +k1,24381:9845838,32417596:176030 +k1,24381:12717363,32417596:176029 +k1,24381:13841044,32417596:176030 +k1,24381:16274789,32417596:176030 +k1,24381:17840181,32417596:176029 +k1,24381:19283677,32417596:176030 +k1,24381:20773048,32417596:176029 +k1,24381:22343029,32417596:176030 +k1,24381:25029743,32417596:176030 +k1,24381:27139084,32417596:176029 +k1,24381:27966542,32417596:176030 +k1,24381:29474918,32417596:176029 +k1,24381:31391584,32417596:176030 +k1,24382:32583029,32417596:0 +) +(1,24382:6630773,33282676:25952256,513147,126483 +k1,24381:8400997,33282676:174423 +k1,24381:8990238,33282676:174398 +k1,24381:12697707,33282676:174423 +k1,24381:13891215,33282676:174423 +k1,24381:15158123,33282676:174423 +k1,24381:15991838,33282676:174423 +k1,24381:17862988,33282676:174423 +k1,24381:21063208,33282676:174423 +k1,24381:21853669,33282676:174423 +k1,24381:23815259,33282676:174423 +k1,24381:24605720,33282676:174423 +k1,24381:25799228,33282676:174423 +k1,24381:26423203,33282676:174398 +k1,24381:28131824,33282676:174423 +k1,24382:32583029,33282676:0 +) +(1,24382:6630773,34147756:25952256,513147,126483 +k1,24381:9447663,34147756:276715 +k1,24381:10542266,34147756:276714 +k1,24381:11174841,34147756:276715 +k1,24381:13576232,34147756:276714 +k1,24381:16688034,34147756:276715 +k1,24381:17833101,34147756:276715 +k1,24381:19202300,34147756:276714 +k1,24381:22174511,34147756:276715 +(1,24381:22174511,34147756:0,452978,115847 +r1,24404:26049895,34147756:3875384,568825,115847 +k1,24381:22174511,34147756:-3875384 +) +(1,24381:22174511,34147756:3875384,452978,115847 +k1,24381:22174511,34147756:3277 +h1,24381:26046618,34147756:0,411205,112570 +) +k1,24381:26326610,34147756:276715 +k1,24381:27254752,34147756:276714 +k1,24381:28943768,34147756:276715 +k1,24381:29576342,34147756:276714 +k1,24381:31512827,34147756:276715 +k1,24381:32583029,34147756:0 +) +(1,24382:6630773,35012836:25952256,513147,134348 +k1,24381:8617824,35012836:175636 +k1,24381:9149321,35012836:175637 +k1,24381:10458075,35012836:175636 +k1,24381:12316676,35012836:175636 +k1,24381:13616911,35012836:175637 +k1,24381:15186498,35012836:175636 +k1,24381:16381219,35012836:175636 +k1,24381:17990783,35012836:175636 +k1,24381:20510643,35012836:175637 +k1,24381:23020016,35012836:175636 +k1,24381:23862808,35012836:175636 +k1,24381:25634246,35012836:175637 +k1,24381:27300171,35012836:175636 +k1,24381:28494892,35012836:175636 +k1,24381:29976662,35012836:175637 +k1,24381:31048831,35012836:175636 +k1,24381:32583029,35012836:0 +) +(1,24382:6630773,35877916:25952256,513147,134348 +k1,24381:8064852,35877916:242634 +k1,24381:10104484,35877916:242635 +k1,24381:13060309,35877916:242634 +k1,24381:13962236,35877916:242635 +k1,24381:15223955,35877916:242634 +k1,24381:16855952,35877916:242634 +k1,24381:18974883,35877916:242635 +k1,24381:20209077,35877916:242634 +k1,24381:22700907,35877916:242634 +k1,24381:25924119,35877916:242635 +k1,24381:26522613,35877916:242634 +k1,24381:29148137,35877916:242635 +k1,24381:30784722,35877916:242634 +k1,24381:32583029,35877916:0 +) +(1,24382:6630773,36742996:25952256,505283,126483 +g1,24381:8689259,36742996 +g1,24381:11407692,36742996 +g1,24381:12293083,36742996 +k1,24382:32583029,36742996:17617388 +g1,24382:32583029,36742996 +) +v1,24384:6630773,37427851:0,393216,0 +(1,24398:6630773,43358628:25952256,6323993,196608 +g1,24398:6630773,43358628 +g1,24398:6630773,43358628 +g1,24398:6434165,43358628 +(1,24398:6434165,43358628:0,6323993,196608 +r1,24404:32779637,43358628:26345472,6520601,196608 +k1,24398:6434165,43358628:-26345472 +) +(1,24398:6434165,43358628:26345472,6323993,196608 +[1,24398:6630773,43358628:25952256,6127385,0 +(1,24386:6630773,37662288:25952256,431045,106246 +(1,24385:6630773,37662288:0,0,0 +g1,24385:6630773,37662288 +g1,24385:6630773,37662288 +g1,24385:6303093,37662288 +(1,24385:6303093,37662288:0,0,0 +) +g1,24385:6630773,37662288 +) +g1,24386:10282266,37662288 +g1,24386:11278128,37662288 +g1,24386:16257437,37662288 +g1,24386:16921345,37662288 +g1,24386:24556285,37662288 +g1,24386:29203640,37662288 +g1,24386:29867548,37662288 +h1,24386:31527318,37662288:0,0,0 +k1,24386:32583029,37662288:1055711 +g1,24386:32583029,37662288 +) +(1,24387:6630773,38347143:25952256,431045,106246 +h1,24387:6630773,38347143:0,0,0 +g1,24387:11942036,38347143 +g1,24387:14265714,38347143 +h1,24387:15593530,38347143:0,0,0 +k1,24387:32583030,38347143:16989500 +g1,24387:32583030,38347143 +) +(1,24397:6630773,39163070:25952256,424439,106246 +(1,24389:6630773,39163070:0,0,0 +g1,24389:6630773,39163070 +g1,24389:6630773,39163070 +g1,24389:6303093,39163070 +(1,24389:6303093,39163070:0,0,0 +) +g1,24389:6630773,39163070 +) +g1,24397:7626635,39163070 +g1,24397:7958589,39163070 +g1,24397:8290543,39163070 +g1,24397:10282267,39163070 +g1,24397:10614221,39163070 +g1,24397:10946175,39163070 +g1,24397:11278129,39163070 +g1,24397:11610083,39163070 +g1,24397:11942037,39163070 +g1,24397:12273991,39163070 +g1,24397:14265715,39163070 +g1,24397:17585254,39163070 +g1,24397:19908932,39163070 +g1,24397:21236748,39163070 +g1,24397:23892380,39163070 +h1,24397:27875827,39163070:0,0,0 +k1,24397:32583029,39163070:4707202 +g1,24397:32583029,39163070 +) +(1,24397:6630773,39847925:25952256,424439,86428 +h1,24397:6630773,39847925:0,0,0 +g1,24397:7626635,39847925 +g1,24397:8290543,39847925 +g1,24397:8622497,39847925 +g1,24397:8954451,39847925 +g1,24397:9286405,39847925 +g1,24397:9618359,39847925 +g1,24397:10282267,39847925 +g1,24397:13269853,39847925 +g1,24397:14265715,39847925 +g1,24397:14597669,39847925 +g1,24397:14929623,39847925 +g1,24397:15261577,39847925 +g1,24397:15593531,39847925 +g1,24397:15925485,39847925 +g1,24397:16257439,39847925 +g1,24397:16589393,39847925 +g1,24397:16921347,39847925 +g1,24397:17585255,39847925 +g1,24397:17917209,39847925 +g1,24397:18249163,39847925 +g1,24397:18581117,39847925 +g1,24397:18913071,39847925 +g1,24397:19245025,39847925 +g1,24397:19908933,39847925 +g1,24397:20240887,39847925 +g1,24397:21236749,39847925 +g1,24397:21568703,39847925 +g1,24397:21900657,39847925 +g1,24397:22232611,39847925 +g1,24397:22564565,39847925 +g1,24397:22896519,39847925 +g1,24397:23228473,39847925 +g1,24397:23892381,39847925 +g1,24397:24224335,39847925 +h1,24397:27875828,39847925:0,0,0 +k1,24397:32583029,39847925:4707201 +g1,24397:32583029,39847925 +) +(1,24397:6630773,40532780:25952256,424439,86428 +h1,24397:6630773,40532780:0,0,0 +g1,24397:7626635,40532780 +g1,24397:8290543,40532780 +g1,24397:8622497,40532780 +g1,24397:8954451,40532780 +g1,24397:9286405,40532780 +g1,24397:9618359,40532780 +g1,24397:10282267,40532780 +g1,24397:13269853,40532780 +g1,24397:14265715,40532780 +g1,24397:14597669,40532780 +g1,24397:14929623,40532780 +g1,24397:15261577,40532780 +g1,24397:15593531,40532780 +g1,24397:15925485,40532780 +g1,24397:16257439,40532780 +g1,24397:16589393,40532780 +g1,24397:16921347,40532780 +g1,24397:17585255,40532780 +g1,24397:17917209,40532780 +g1,24397:18249163,40532780 +g1,24397:18581117,40532780 +g1,24397:18913071,40532780 +g1,24397:19245025,40532780 +g1,24397:19908933,40532780 +g1,24397:20240887,40532780 +g1,24397:21236749,40532780 +g1,24397:21568703,40532780 +g1,24397:21900657,40532780 +g1,24397:22232611,40532780 +g1,24397:22564565,40532780 +g1,24397:22896519,40532780 +g1,24397:23228473,40532780 +g1,24397:23892381,40532780 +g1,24397:24224335,40532780 +h1,24397:27875828,40532780:0,0,0 +k1,24397:32583029,40532780:4707201 +g1,24397:32583029,40532780 +) +(1,24397:6630773,41217635:25952256,424439,86428 +h1,24397:6630773,41217635:0,0,0 +g1,24397:7626635,41217635 +g1,24397:8290543,41217635 +g1,24397:8622497,41217635 +g1,24397:8954451,41217635 +g1,24397:9286405,41217635 +g1,24397:9618359,41217635 +g1,24397:10282267,41217635 +g1,24397:13269853,41217635 +g1,24397:14265715,41217635 +g1,24397:14597669,41217635 +g1,24397:14929623,41217635 +g1,24397:15261577,41217635 +g1,24397:15593531,41217635 +g1,24397:15925485,41217635 +g1,24397:16257439,41217635 +g1,24397:16589393,41217635 +g1,24397:16921347,41217635 +g1,24397:17585255,41217635 +g1,24397:17917209,41217635 +g1,24397:18249163,41217635 +g1,24397:18581117,41217635 +g1,24397:18913071,41217635 +g1,24397:19245025,41217635 +g1,24397:19908933,41217635 +g1,24397:21236749,41217635 +g1,24397:21568703,41217635 +g1,24397:21900657,41217635 +g1,24397:22232611,41217635 +g1,24397:22564565,41217635 +g1,24397:22896519,41217635 +g1,24397:23228473,41217635 +g1,24397:23892381,41217635 +g1,24397:24224335,41217635 +h1,24397:27875828,41217635:0,0,0 +k1,24397:32583029,41217635:4707201 +g1,24397:32583029,41217635 +) +(1,24397:6630773,41902490:25952256,424439,86428 +h1,24397:6630773,41902490:0,0,0 +g1,24397:7626635,41902490 +g1,24397:8290543,41902490 +g1,24397:8622497,41902490 +g1,24397:8954451,41902490 +g1,24397:9286405,41902490 +g1,24397:9618359,41902490 +g1,24397:10282267,41902490 +g1,24397:13269853,41902490 +g1,24397:14265715,41902490 +g1,24397:14597669,41902490 +g1,24397:14929623,41902490 +g1,24397:15261577,41902490 +g1,24397:15593531,41902490 +g1,24397:15925485,41902490 +g1,24397:16257439,41902490 +g1,24397:16589393,41902490 +g1,24397:16921347,41902490 +g1,24397:17585255,41902490 +g1,24397:17917209,41902490 +g1,24397:18249163,41902490 +g1,24397:18581117,41902490 +g1,24397:18913071,41902490 +g1,24397:19245025,41902490 +g1,24397:19908933,41902490 +g1,24397:21236749,41902490 +g1,24397:21568703,41902490 +g1,24397:21900657,41902490 +g1,24397:22232611,41902490 +g1,24397:22564565,41902490 +g1,24397:22896519,41902490 +g1,24397:23228473,41902490 +g1,24397:23892381,41902490 +g1,24397:24224335,41902490 +h1,24397:27875828,41902490:0,0,0 +k1,24397:32583029,41902490:4707201 +g1,24397:32583029,41902490 +) +(1,24397:6630773,42587345:25952256,424439,86428 +h1,24397:6630773,42587345:0,0,0 +g1,24397:7626635,42587345 +g1,24397:8290543,42587345 +g1,24397:8622497,42587345 +g1,24397:8954451,42587345 +g1,24397:9286405,42587345 +g1,24397:9618359,42587345 +g1,24397:10282267,42587345 +g1,24397:13269853,42587345 +g1,24397:14265715,42587345 +g1,24397:14597669,42587345 +g1,24397:14929623,42587345 +g1,24397:15261577,42587345 +g1,24397:15593531,42587345 +g1,24397:15925485,42587345 +g1,24397:16257439,42587345 +g1,24397:16589393,42587345 +g1,24397:16921347,42587345 +g1,24397:17585255,42587345 +g1,24397:17917209,42587345 +g1,24397:18249163,42587345 +g1,24397:18581117,42587345 +g1,24397:18913071,42587345 +g1,24397:19245025,42587345 +g1,24397:19908933,42587345 +g1,24397:21236749,42587345 +g1,24397:21568703,42587345 +g1,24397:21900657,42587345 +g1,24397:22232611,42587345 +g1,24397:22564565,42587345 +g1,24397:22896519,42587345 +g1,24397:23228473,42587345 +g1,24397:23892381,42587345 +g1,24397:24224335,42587345 +h1,24397:27875828,42587345:0,0,0 +k1,24397:32583029,42587345:4707201 +g1,24397:32583029,42587345 +) +(1,24397:6630773,43272200:25952256,424439,86428 +h1,24397:6630773,43272200:0,0,0 +g1,24397:7626635,43272200 +g1,24397:8290543,43272200 +g1,24397:8622497,43272200 +g1,24397:8954451,43272200 +g1,24397:9286405,43272200 +g1,24397:9618359,43272200 +g1,24397:10282267,43272200 +g1,24397:13269853,43272200 +g1,24397:14265715,43272200 +g1,24397:14597669,43272200 +g1,24397:14929623,43272200 +g1,24397:15261577,43272200 +g1,24397:15593531,43272200 +g1,24397:15925485,43272200 +g1,24397:16257439,43272200 +g1,24397:16589393,43272200 +g1,24397:16921347,43272200 +g1,24397:17585255,43272200 +g1,24397:17917209,43272200 +g1,24397:18249163,43272200 +g1,24397:18581117,43272200 +g1,24397:18913071,43272200 +g1,24397:19245025,43272200 +g1,24397:19908933,43272200 +g1,24397:21236749,43272200 +g1,24397:21568703,43272200 +g1,24397:21900657,43272200 +g1,24397:22232611,43272200 +g1,24397:22564565,43272200 +g1,24397:22896519,43272200 +g1,24397:23228473,43272200 +g1,24397:23892381,43272200 +g1,24397:24224335,43272200 +h1,24397:27875828,43272200:0,0,0 +k1,24397:32583029,43272200:4707201 +g1,24397:32583029,43272200 +) +] +) +g1,24398:32583029,43358628 +g1,24398:6630773,43358628 +g1,24398:6630773,43358628 +g1,24398:32583029,43358628 +g1,24398:32583029,43358628 +) +h1,24398:6630773,43555236:0,0,0 +(1,24402:6630773,44420316:25952256,513147,134348 +h1,24401:6630773,44420316:983040,0,0 +g1,24401:8300630,44420316 +g1,24401:10741190,44420316 +g1,24401:13775506,44420316 +g1,24401:15177976,44420316 +g1,24401:16802613,44420316 +g1,24401:18395793,44420316 +g1,24401:18950882,44420316 +g1,24401:21274788,44420316 +(1,24401:21274788,44420316:0,414482,115847 +r1,24404:22688189,44420316:1413401,530329,115847 +k1,24401:21274788,44420316:-1413401 +) +(1,24401:21274788,44420316:1413401,414482,115847 +k1,24401:21274788,44420316:3277 +h1,24401:22684912,44420316:0,411205,112570 +) +g1,24401:22887418,44420316 +g1,24401:24069687,44420316 +g1,24401:26080331,44420316 +g1,24401:27076478,44420316 +g1,24401:28958672,44420316 +k1,24402:32583029,44420316:2447331 +g1,24402:32583029,44420316 +) +] +(1,24404:32583029,45706769:0,0,0 +g1,24404:32583029,45706769 +) +) +] +(1,24404:6630773,47279633:25952256,0,0 +h1,24404:6630773,47279633:25952256,0,0 +) +] +(1,24404:4262630,4025873:0,0,0 +[1,24404:-473656,4025873:0,0,0 +(1,24404:-473656,-710413:0,0,0 +(1,24404:-473656,-710413:0,0,0 +g1,24404:-473656,-710413 +) +g1,24404:-473656,-710413 ) ] ) ] !29585 -}419 -Input:4556:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4557:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4558:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4559:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}420 Input:4560:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4561:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4562:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4563:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4564:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !656 -{420 -[1,24476:4262630,47279633:28320399,43253760,0 -(1,24476:4262630,4025873:0,0,0 -[1,24476:-473656,4025873:0,0,0 -(1,24476:-473656,-710413:0,0,0 -(1,24476:-473656,-644877:0,0,0 -k1,24476:-473656,-644877:-65536 +{421 +[1,24474:4262630,47279633:28320399,43253760,0 +(1,24474:4262630,4025873:0,0,0 +[1,24474:-473656,4025873:0,0,0 +(1,24474:-473656,-710413:0,0,0 +(1,24474:-473656,-644877:0,0,0 +k1,24474:-473656,-644877:-65536 ) -(1,24476:-473656,4736287:0,0,0 -k1,24476:-473656,4736287:5209943 +(1,24474:-473656,4736287:0,0,0 +k1,24474:-473656,4736287:5209943 ) -g1,24476:-473656,-710413 +g1,24474:-473656,-710413 ) ] ) -[1,24476:6630773,47279633:25952256,43253760,0 -[1,24476:6630773,4812305:25952256,786432,0 -(1,24476:6630773,4812305:25952256,513147,126483 -(1,24476:6630773,4812305:25952256,513147,126483 -g1,24476:3078558,4812305 -[1,24476:3078558,4812305:0,0,0 -(1,24476:3078558,2439708:0,1703936,0 -k1,24476:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24476:2537886,2439708:1179648,16384,0 +[1,24474:6630773,47279633:25952256,43253760,0 +[1,24474:6630773,4812305:25952256,786432,0 +(1,24474:6630773,4812305:25952256,513147,126483 +(1,24474:6630773,4812305:25952256,513147,126483 +g1,24474:3078558,4812305 +[1,24474:3078558,4812305:0,0,0 +(1,24474:3078558,2439708:0,1703936,0 +k1,24474:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24474:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24476:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24474:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24476:3078558,4812305:0,0,0 -(1,24476:3078558,2439708:0,1703936,0 -g1,24476:29030814,2439708 -g1,24476:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24476:36151628,1915420:16384,1179648,0 +[1,24474:3078558,4812305:0,0,0 +(1,24474:3078558,2439708:0,1703936,0 +g1,24474:29030814,2439708 +g1,24474:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24474:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24476:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24474:37855564,2439708:1179648,16384,0 ) ) -k1,24476:3078556,2439708:-34777008 +k1,24474:3078556,2439708:-34777008 ) ] -[1,24476:3078558,4812305:0,0,0 -(1,24476:3078558,49800853:0,16384,2228224 -k1,24476:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24476:2537886,49800853:1179648,16384,0 +[1,24474:3078558,4812305:0,0,0 +(1,24474:3078558,49800853:0,16384,2228224 +k1,24474:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24474:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24476:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24474:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24476:3078558,4812305:0,0,0 -(1,24476:3078558,49800853:0,16384,2228224 -g1,24476:29030814,49800853 -g1,24476:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24476:36151628,51504789:16384,1179648,0 +[1,24474:3078558,4812305:0,0,0 +(1,24474:3078558,49800853:0,16384,2228224 +g1,24474:29030814,49800853 +g1,24474:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24474:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24476:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24474:37855564,49800853:1179648,16384,0 ) ) -k1,24476:3078556,49800853:-34777008 +k1,24474:3078556,49800853:-34777008 ) -] -g1,24476:6630773,4812305 -g1,24476:6630773,4812305 -g1,24476:9860387,4812305 -g1,24476:12841619,4812305 -k1,24476:31387651,4812305:18546032 -) -) -] -[1,24476:6630773,45706769:25952256,40108032,0 -(1,24476:6630773,45706769:25952256,40108032,0 -(1,24476:6630773,45706769:0,0,0 -g1,24476:6630773,45706769 -) -[1,24476:6630773,45706769:25952256,40108032,0 -v1,24406:6630773,6254097:0,393216,0 -(1,24420:6630773,12108354:25952256,6247473,196608 -g1,24420:6630773,12108354 -g1,24420:6630773,12108354 -g1,24420:6434165,12108354 -(1,24420:6434165,12108354:0,6247473,196608 -r1,24476:32779637,12108354:26345472,6444081,196608 -k1,24420:6434165,12108354:-26345472 -) -(1,24420:6434165,12108354:26345472,6247473,196608 -[1,24420:6630773,12108354:25952256,6050865,0 -(1,24408:6630773,6488534:25952256,431045,106246 -(1,24407:6630773,6488534:0,0,0 -g1,24407:6630773,6488534 -g1,24407:6630773,6488534 -g1,24407:6303093,6488534 -(1,24407:6303093,6488534:0,0,0 -) -g1,24407:6630773,6488534 -) -g1,24408:10282266,6488534 -g1,24408:11278128,6488534 -g1,24408:16257437,6488534 -g1,24408:16921345,6488534 -g1,24408:24556285,6488534 -g1,24408:29203640,6488534 -g1,24408:29867548,6488534 -h1,24408:31527318,6488534:0,0,0 -k1,24408:32583029,6488534:1055711 -g1,24408:32583029,6488534 -) -(1,24409:6630773,7173389:25952256,431045,79822 -h1,24409:6630773,7173389:0,0,0 -k1,24409:6630773,7173389:0 -h1,24409:11942036,7173389:0,0,0 -k1,24409:32583028,7173389:20640992 -g1,24409:32583028,7173389 -) -(1,24419:6630773,7989316:25952256,398014,8257 -(1,24411:6630773,7989316:0,0,0 -g1,24411:6630773,7989316 -g1,24411:6630773,7989316 -g1,24411:6303093,7989316 -(1,24411:6303093,7989316:0,0,0 -) -g1,24411:6630773,7989316 -) -g1,24419:7626635,7989316 -g1,24419:7958589,7989316 -g1,24419:8290543,7989316 -g1,24419:10946175,7989316 -h1,24419:12937899,7989316:0,0,0 -k1,24419:32583029,7989316:19645130 -g1,24419:32583029,7989316 -) -(1,24419:6630773,8674171:25952256,424439,9908 -h1,24419:6630773,8674171:0,0,0 -g1,24419:7626635,8674171 -g1,24419:8290543,8674171 -g1,24419:8622497,8674171 -g1,24419:8954451,8674171 -g1,24419:9286405,8674171 -g1,24419:9618359,8674171 -g1,24419:10946175,8674171 -g1,24419:11278129,8674171 -h1,24419:12937899,8674171:0,0,0 -k1,24419:32583029,8674171:19645130 -g1,24419:32583029,8674171 -) -(1,24419:6630773,9359026:25952256,424439,9908 -h1,24419:6630773,9359026:0,0,0 -g1,24419:7626635,9359026 -g1,24419:8290543,9359026 -g1,24419:8622497,9359026 -g1,24419:8954451,9359026 -g1,24419:9286405,9359026 -g1,24419:9618359,9359026 -g1,24419:10946175,9359026 -g1,24419:11278129,9359026 -h1,24419:12937899,9359026:0,0,0 -k1,24419:32583029,9359026:19645130 -g1,24419:32583029,9359026 -) -(1,24419:6630773,10043881:25952256,424439,9908 -h1,24419:6630773,10043881:0,0,0 -g1,24419:7626635,10043881 -g1,24419:8290543,10043881 -g1,24419:8622497,10043881 -g1,24419:8954451,10043881 -g1,24419:9286405,10043881 -g1,24419:9618359,10043881 -g1,24419:10946175,10043881 -g1,24419:11278129,10043881 -h1,24419:12937899,10043881:0,0,0 -k1,24419:32583029,10043881:19645130 -g1,24419:32583029,10043881 -) -(1,24419:6630773,10728736:25952256,424439,9908 -h1,24419:6630773,10728736:0,0,0 -g1,24419:7626635,10728736 -g1,24419:8290543,10728736 -g1,24419:8622497,10728736 -g1,24419:8954451,10728736 -g1,24419:9286405,10728736 -g1,24419:9618359,10728736 -g1,24419:10946175,10728736 -g1,24419:11278129,10728736 -h1,24419:12937899,10728736:0,0,0 -k1,24419:32583029,10728736:19645130 -g1,24419:32583029,10728736 -) -(1,24419:6630773,11413591:25952256,424439,9908 -h1,24419:6630773,11413591:0,0,0 -g1,24419:7626635,11413591 -g1,24419:8290543,11413591 -g1,24419:8622497,11413591 -g1,24419:8954451,11413591 -g1,24419:9286405,11413591 -g1,24419:9618359,11413591 -g1,24419:10946175,11413591 -g1,24419:11278129,11413591 -h1,24419:12937899,11413591:0,0,0 -k1,24419:32583029,11413591:19645130 -g1,24419:32583029,11413591 -) -(1,24419:6630773,12098446:25952256,424439,9908 -h1,24419:6630773,12098446:0,0,0 -g1,24419:7626635,12098446 -g1,24419:8290543,12098446 -g1,24419:8622497,12098446 -g1,24419:8954451,12098446 -g1,24419:9286405,12098446 -g1,24419:9618359,12098446 -g1,24419:10946175,12098446 -g1,24419:11278129,12098446 -h1,24419:12937899,12098446:0,0,0 -k1,24419:32583029,12098446:19645130 -g1,24419:32583029,12098446 -) -] -) -g1,24420:32583029,12108354 -g1,24420:6630773,12108354 -g1,24420:6630773,12108354 -g1,24420:32583029,12108354 -g1,24420:32583029,12108354 -) -h1,24420:6630773,12304962:0,0,0 -(1,24424:6630773,13170042:25952256,513147,134348 -h1,24423:6630773,13170042:983040,0,0 -k1,24423:10423386,13170042:205172 -k1,24423:13463644,13170042:205171 -k1,24423:14616467,13170042:205172 -k1,24423:15177499,13170042:205172 -k1,24423:17263553,13170042:205171 -k1,24423:18451765,13170042:205172 -k1,24423:20468352,13170042:205172 -k1,24423:21482893,13170042:205171 -k1,24423:22458768,13170042:205172 -k1,24423:23494931,13170042:205166 -k1,24423:25350299,13170042:205171 -k1,24423:26997918,13170042:205172 -k1,24423:28000008,13170042:205172 -k1,24423:29888144,13170042:205171 -k1,24423:31391584,13170042:205172 -k1,24423:32583029,13170042:0 -) -(1,24424:6630773,14035122:25952256,505283,115847 -g1,24423:8242303,14035122 -g1,24423:9835483,14035122 -(1,24423:9835483,14035122:0,452978,115847 -r1,24476:14414291,14035122:4578808,568825,115847 -k1,24423:9835483,14035122:-4578808 -) -(1,24423:9835483,14035122:4578808,452978,115847 -k1,24423:9835483,14035122:3277 -h1,24423:14411014,14035122:0,411205,112570 -) -k1,24424:32583029,14035122:18116310 -g1,24424:32583029,14035122 -) -v1,24426:6630773,14719977:0,393216,0 -(1,24440:6630773,20574234:25952256,6247473,196608 -g1,24440:6630773,20574234 -g1,24440:6630773,20574234 -g1,24440:6434165,20574234 -(1,24440:6434165,20574234:0,6247473,196608 -r1,24476:32779637,20574234:26345472,6444081,196608 -k1,24440:6434165,20574234:-26345472 -) -(1,24440:6434165,20574234:26345472,6247473,196608 -[1,24440:6630773,20574234:25952256,6050865,0 -(1,24428:6630773,14954414:25952256,431045,106246 -(1,24427:6630773,14954414:0,0,0 -g1,24427:6630773,14954414 -g1,24427:6630773,14954414 -g1,24427:6303093,14954414 -(1,24427:6303093,14954414:0,0,0 -) -g1,24427:6630773,14954414 -) -g1,24428:10946174,14954414 -g1,24428:11942036,14954414 -g1,24428:17585253,14954414 -g1,24428:18249161,14954414 -h1,24428:25220194,14954414:0,0,0 -k1,24428:32583029,14954414:7362835 -g1,24428:32583029,14954414 -) -(1,24429:6630773,15639269:25952256,431045,106246 -h1,24429:6630773,15639269:0,0,0 -k1,24429:6630773,15639269:0 -h1,24429:12605944,15639269:0,0,0 -k1,24429:32583028,15639269:19977084 -g1,24429:32583028,15639269 -) -(1,24439:6630773,16455196:25952256,398014,8257 -(1,24431:6630773,16455196:0,0,0 -g1,24431:6630773,16455196 -g1,24431:6630773,16455196 -g1,24431:6303093,16455196 -(1,24431:6303093,16455196:0,0,0 -) -g1,24431:6630773,16455196 -) -g1,24439:7626635,16455196 -g1,24439:7958589,16455196 -g1,24439:8290543,16455196 -g1,24439:9950313,16455196 -g1,24439:11610083,16455196 -g1,24439:13601807,16455196 -g1,24439:15593531,16455196 -g1,24439:17585255,16455196 -g1,24439:19245025,16455196 -g1,24439:21236749,16455196 -g1,24439:23560427,16455196 -h1,24439:24888243,16455196:0,0,0 -k1,24439:32583029,16455196:7694786 -g1,24439:32583029,16455196 -) -(1,24439:6630773,17140051:25952256,407923,9908 -h1,24439:6630773,17140051:0,0,0 -g1,24439:7626635,17140051 -g1,24439:8290543,17140051 -g1,24439:8622497,17140051 -g1,24439:8954451,17140051 -g1,24439:9286405,17140051 -g1,24439:9950313,17140051 -g1,24439:10282267,17140051 -g1,24439:10614221,17140051 -g1,24439:10946175,17140051 -g1,24439:11610083,17140051 -g1,24439:11942037,17140051 -g1,24439:12273991,17140051 -g1,24439:12605945,17140051 -g1,24439:12937899,17140051 -g1,24439:13601807,17140051 -g1,24439:13933761,17140051 -g1,24439:14265715,17140051 -g1,24439:14597669,17140051 -g1,24439:14929623,17140051 -g1,24439:15593531,17140051 -g1,24439:15925485,17140051 -g1,24439:16257439,17140051 -g1,24439:16589393,17140051 -g1,24439:17585255,17140051 -g1,24439:17917209,17140051 -g1,24439:18249163,17140051 -g1,24439:18581117,17140051 -g1,24439:19245025,17140051 -g1,24439:19576979,17140051 -g1,24439:19908933,17140051 -g1,24439:20240887,17140051 -g1,24439:20572841,17140051 -g1,24439:21236749,17140051 -g1,24439:21568703,17140051 -g1,24439:21900657,17140051 -g1,24439:22232611,17140051 -g1,24439:22564565,17140051 -g1,24439:22896519,17140051 -g1,24439:23560427,17140051 -g1,24439:23892381,17140051 -g1,24439:24224335,17140051 -h1,24439:24888243,17140051:0,0,0 -k1,24439:32583029,17140051:7694786 -g1,24439:32583029,17140051 -) -(1,24439:6630773,17824906:25952256,407923,9908 -h1,24439:6630773,17824906:0,0,0 -g1,24439:7626635,17824906 -g1,24439:8290543,17824906 -g1,24439:8622497,17824906 -g1,24439:8954451,17824906 -g1,24439:9286405,17824906 -g1,24439:9950313,17824906 -g1,24439:10282267,17824906 -g1,24439:10614221,17824906 -g1,24439:10946175,17824906 -g1,24439:11610083,17824906 -g1,24439:11942037,17824906 -g1,24439:12273991,17824906 -g1,24439:12605945,17824906 -g1,24439:12937899,17824906 -g1,24439:13601807,17824906 -g1,24439:13933761,17824906 -g1,24439:14265715,17824906 -g1,24439:14597669,17824906 -g1,24439:14929623,17824906 -g1,24439:15593531,17824906 -g1,24439:15925485,17824906 -g1,24439:16257439,17824906 -g1,24439:16589393,17824906 -g1,24439:17585255,17824906 -g1,24439:17917209,17824906 -g1,24439:18249163,17824906 -g1,24439:18581117,17824906 -g1,24439:19245025,17824906 -g1,24439:19576979,17824906 -g1,24439:19908933,17824906 -g1,24439:20240887,17824906 -g1,24439:20572841,17824906 -g1,24439:21236749,17824906 -g1,24439:21568703,17824906 -g1,24439:21900657,17824906 -g1,24439:22232611,17824906 -g1,24439:22564565,17824906 -g1,24439:22896519,17824906 -g1,24439:23560427,17824906 -g1,24439:23892381,17824906 -g1,24439:24224335,17824906 -h1,24439:24888243,17824906:0,0,0 -k1,24439:32583029,17824906:7694786 -g1,24439:32583029,17824906 -) -(1,24439:6630773,18509761:25952256,407923,9908 -h1,24439:6630773,18509761:0,0,0 -g1,24439:7626635,18509761 -g1,24439:8290543,18509761 -g1,24439:8622497,18509761 -g1,24439:8954451,18509761 -g1,24439:9286405,18509761 -g1,24439:9950313,18509761 -g1,24439:10282267,18509761 -g1,24439:10614221,18509761 -g1,24439:10946175,18509761 -g1,24439:11610083,18509761 -g1,24439:11942037,18509761 -g1,24439:12273991,18509761 -g1,24439:12605945,18509761 -g1,24439:12937899,18509761 -g1,24439:13601807,18509761 -g1,24439:13933761,18509761 -g1,24439:14265715,18509761 -g1,24439:14597669,18509761 -g1,24439:14929623,18509761 -g1,24439:15593531,18509761 -g1,24439:15925485,18509761 -g1,24439:16257439,18509761 -g1,24439:16589393,18509761 -g1,24439:17585255,18509761 -g1,24439:17917209,18509761 -g1,24439:18249163,18509761 -g1,24439:18581117,18509761 -g1,24439:19245025,18509761 -g1,24439:19576979,18509761 -g1,24439:19908933,18509761 -g1,24439:20240887,18509761 -g1,24439:20572841,18509761 -g1,24439:21236749,18509761 -g1,24439:21568703,18509761 -g1,24439:21900657,18509761 -g1,24439:22232611,18509761 -g1,24439:22564565,18509761 -g1,24439:22896519,18509761 -g1,24439:23560427,18509761 -g1,24439:23892381,18509761 -g1,24439:24224335,18509761 -h1,24439:24888243,18509761:0,0,0 -k1,24439:32583029,18509761:7694786 -g1,24439:32583029,18509761 -) -(1,24439:6630773,19194616:25952256,407923,9908 -h1,24439:6630773,19194616:0,0,0 -g1,24439:7626635,19194616 -g1,24439:8290543,19194616 -g1,24439:8622497,19194616 -g1,24439:8954451,19194616 -g1,24439:9286405,19194616 -g1,24439:9950313,19194616 -g1,24439:10282267,19194616 -g1,24439:10614221,19194616 -g1,24439:10946175,19194616 -g1,24439:11610083,19194616 -g1,24439:11942037,19194616 -g1,24439:12273991,19194616 -g1,24439:12605945,19194616 -g1,24439:12937899,19194616 -g1,24439:13601807,19194616 -g1,24439:13933761,19194616 -g1,24439:14265715,19194616 -g1,24439:14597669,19194616 -g1,24439:14929623,19194616 -g1,24439:15593531,19194616 -g1,24439:15925485,19194616 -g1,24439:16257439,19194616 -g1,24439:16589393,19194616 -g1,24439:17585255,19194616 -g1,24439:17917209,19194616 -g1,24439:18249163,19194616 -g1,24439:18581117,19194616 -g1,24439:19245025,19194616 -g1,24439:19576979,19194616 -g1,24439:19908933,19194616 -g1,24439:20240887,19194616 -g1,24439:20572841,19194616 -g1,24439:21236749,19194616 -g1,24439:21568703,19194616 -g1,24439:21900657,19194616 -g1,24439:22232611,19194616 -g1,24439:22564565,19194616 -g1,24439:22896519,19194616 -g1,24439:23560427,19194616 -g1,24439:23892381,19194616 -g1,24439:24224335,19194616 -h1,24439:24888243,19194616:0,0,0 -k1,24439:32583029,19194616:7694786 -g1,24439:32583029,19194616 -) -(1,24439:6630773,19879471:25952256,407923,9908 -h1,24439:6630773,19879471:0,0,0 -g1,24439:7626635,19879471 -g1,24439:8290543,19879471 -g1,24439:8622497,19879471 -g1,24439:8954451,19879471 -g1,24439:9286405,19879471 -g1,24439:9950313,19879471 -g1,24439:10282267,19879471 -g1,24439:10614221,19879471 -g1,24439:10946175,19879471 -g1,24439:11610083,19879471 -g1,24439:11942037,19879471 -g1,24439:12273991,19879471 -g1,24439:12605945,19879471 -g1,24439:12937899,19879471 -g1,24439:13601807,19879471 -g1,24439:13933761,19879471 -g1,24439:14265715,19879471 -g1,24439:14597669,19879471 -g1,24439:14929623,19879471 -g1,24439:15593531,19879471 -g1,24439:15925485,19879471 -g1,24439:16257439,19879471 -g1,24439:16589393,19879471 -g1,24439:17585255,19879471 -g1,24439:17917209,19879471 -g1,24439:18249163,19879471 -g1,24439:18581117,19879471 -g1,24439:19245025,19879471 -g1,24439:19576979,19879471 -g1,24439:19908933,19879471 -g1,24439:20240887,19879471 -g1,24439:20572841,19879471 -g1,24439:21236749,19879471 -g1,24439:21568703,19879471 -g1,24439:21900657,19879471 -g1,24439:22232611,19879471 -g1,24439:22564565,19879471 -g1,24439:22896519,19879471 -g1,24439:23560427,19879471 -g1,24439:23892381,19879471 -g1,24439:24224335,19879471 -h1,24439:24888243,19879471:0,0,0 -k1,24439:32583029,19879471:7694786 -g1,24439:32583029,19879471 -) -(1,24439:6630773,20564326:25952256,407923,9908 -h1,24439:6630773,20564326:0,0,0 -g1,24439:7626635,20564326 -g1,24439:8290543,20564326 -g1,24439:8622497,20564326 -g1,24439:8954451,20564326 -g1,24439:9286405,20564326 -g1,24439:9950313,20564326 -g1,24439:10282267,20564326 -g1,24439:10614221,20564326 -g1,24439:10946175,20564326 -g1,24439:11610083,20564326 -g1,24439:11942037,20564326 -g1,24439:12273991,20564326 -g1,24439:12605945,20564326 -g1,24439:12937899,20564326 -g1,24439:13601807,20564326 -g1,24439:13933761,20564326 -g1,24439:14265715,20564326 -g1,24439:14597669,20564326 -g1,24439:14929623,20564326 -g1,24439:15593531,20564326 -g1,24439:15925485,20564326 -g1,24439:16257439,20564326 -g1,24439:16589393,20564326 -g1,24439:17585255,20564326 -g1,24439:17917209,20564326 -g1,24439:18249163,20564326 -g1,24439:18581117,20564326 -g1,24439:19245025,20564326 -g1,24439:19576979,20564326 -g1,24439:19908933,20564326 -g1,24439:20240887,20564326 -g1,24439:20572841,20564326 -g1,24439:21236749,20564326 -g1,24439:21568703,20564326 -g1,24439:21900657,20564326 -g1,24439:22232611,20564326 -g1,24439:22564565,20564326 -g1,24439:22896519,20564326 -g1,24439:23560427,20564326 -g1,24439:23892381,20564326 -g1,24439:24224335,20564326 -h1,24439:24888243,20564326:0,0,0 -k1,24439:32583029,20564326:7694786 -g1,24439:32583029,20564326 -) -] -) -g1,24440:32583029,20574234 -g1,24440:6630773,20574234 -g1,24440:6630773,20574234 -g1,24440:32583029,20574234 -g1,24440:32583029,20574234 -) -h1,24440:6630773,20770842:0,0,0 -(1,24444:6630773,21635922:25952256,513147,134348 -h1,24443:6630773,21635922:983040,0,0 -k1,24443:8953275,21635922:195859 -k1,24443:9915250,21635922:195859 -k1,24443:13136906,21635922:195859 -k1,24443:13948803,21635922:195859 -k1,24443:16772000,21635922:195859 -k1,24443:18978504,21635922:195859 -k1,24443:20563726,21635922:195859 -k1,24443:22966183,21635922:195860 -k1,24443:23923570,21635922:195859 -k1,24443:26558679,21635922:195859 -k1,24443:27826707,21635922:195859 -k1,24443:28788682,21635922:195859 -k1,24443:29643833,21635922:195859 -k1,24443:31478747,21635922:195859 -k1,24443:32583029,21635922:0 -) -(1,24444:6630773,22501002:25952256,505283,7863 -g1,24443:7577768,22501002 -g1,24443:10242461,22501002 -g1,24443:11093118,22501002 -g1,24443:12107615,22501002 -k1,24444:32583028,22501002:19698156 -g1,24444:32583028,22501002 -) -(1,24445:6630773,24617820:25952256,555811,12975 -(1,24445:6630773,24617820:3348562,534184,12975 -g1,24445:6630773,24617820 -g1,24445:9979335,24617820 -) -k1,24445:32583030,24617820:20000540 -g1,24445:32583030,24617820 -) -(1,24450:6630773,25876116:25952256,513147,134348 -k1,24449:9403274,25876116:237568 -k1,24449:11867099,25876116:237568 -k1,24449:12636164,25876116:237568 -k1,24449:14086803,25876116:237568 -k1,24449:17499590,25876116:237568 -k1,24449:19131109,25876116:237568 -k1,24449:21693239,25876116:237568 -k1,24449:22582235,25876116:237568 -k1,24449:23838888,25876116:237568 -k1,24449:26562237,25876116:237568 -k1,24449:27459097,25876116:237568 -k1,24449:30207349,25876116:237568 -k1,24450:32583029,25876116:0 -) -(1,24450:6630773,26741196:25952256,513147,134348 -k1,24449:7973606,26741196:144179 -k1,24449:8800670,26741196:144179 -k1,24449:10453488,26741196:144179 -k1,24449:13409162,26741196:144179 -k1,24449:16626324,26741196:144179 -k1,24449:18182804,26741196:144179 -k1,24449:19518428,26741196:144179 -k1,24449:21277414,26741196:144179 -k1,24449:24447390,26741196:144179 -k1,24449:25539220,26741196:144179 -k1,24449:27059000,26741196:144179 -k1,24449:28857963,26741196:144179 -k1,24449:29985182,26741196:144179 -k1,24450:32583029,26741196:0 -) -(1,24450:6630773,27606276:25952256,513147,126483 -k1,24449:8100371,27606276:137251 -k1,24449:9804588,27606276:137251 -k1,24449:11133284,27606276:137251 -k1,24449:12866336,27606276:137251 -k1,24449:13927645,27606276:137251 -k1,24449:15083981,27606276:137251 -k1,24449:16923202,27606276:137251 -k1,24449:18840412,27606276:137252 -k1,24449:21203920,27606276:137251 -k1,24449:24101547,27606276:137251 -k1,24449:26539767,27606276:137251 -k1,24449:28245295,27606276:137251 -k1,24449:29033974,27606276:137251 -k1,24449:31563944,27606276:137251 -k1,24449:32583029,27606276:0 -) -(1,24450:6630773,28471356:25952256,513147,126483 -k1,24449:9579189,28471356:186073 -k1,24449:12252353,28471356:186073 -k1,24449:14449070,28471356:186072 -k1,24449:15919649,28471356:186073 -k1,24449:18276274,28471356:186073 -k1,24449:19210113,28471356:186073 -k1,24449:21810531,28471356:186072 -k1,24449:24581999,28471356:186073 -k1,24449:25419500,28471356:186073 -k1,24449:26020403,28471356:186060 -k1,24449:28493026,28471356:186072 -k1,24449:30236890,28471356:186073 -k1,24449:31708779,28471356:186073 -k1,24450:32583029,28471356:0 -) -(1,24450:6630773,29336436:25952256,513147,134348 -k1,24449:8318224,29336436:191264 -k1,24449:10220633,29336436:191264 -k1,24449:11603343,29336436:191265 -k1,24449:13550317,29336436:191264 -k1,24449:16858473,29336436:191264 -k1,24449:17701165,29336436:191264 -k1,24449:18911515,29336436:191265 -k1,24449:23613622,29336436:191264 -k1,24449:24464178,29336436:191264 -k1,24449:26107064,29336436:191264 -k1,24449:26957621,29336436:191265 -k1,24449:28845612,29336436:191264 -k1,24449:30019916,29336436:191264 -k1,24449:32583029,29336436:0 -) -(1,24450:6630773,30201516:25952256,513147,126483 -k1,24449:7505405,30201516:246797 -k1,24449:9449583,30201516:246796 -k1,24449:11394418,30201516:246797 -k1,24449:12660299,30201516:246796 -k1,24449:15856871,30201516:246797 -k1,24449:17086708,30201516:246797 -k1,24449:20035553,30201516:246796 -k1,24449:22769441,30201516:246797 -k1,24449:25026882,30201516:246796 -k1,24449:26292764,30201516:246797 -k1,24449:29318287,30201516:246796 -(1,24449:29318287,30201516:0,452978,115847 -r1,24476:31435112,30201516:2116825,568825,115847 -k1,24449:29318287,30201516:-2116825 -) -(1,24449:29318287,30201516:2116825,452978,115847 -k1,24449:29318287,30201516:3277 -h1,24449:31431835,30201516:0,411205,112570 -) -k1,24449:31681909,30201516:246797 -k1,24450:32583029,30201516:0 -) -(1,24450:6630773,31066596:25952256,513147,134348 -k1,24449:8010902,31066596:215554 -k1,24449:10087022,31066596:215553 -k1,24449:11994716,31066596:215554 -k1,24449:15437263,31066596:215554 -k1,24449:18552130,31066596:215554 -k1,24449:20335304,31066596:215553 -k1,24449:21569943,31066596:215554 -k1,24449:23340011,31066596:215554 -k1,24449:26202564,31066596:215554 -k1,24449:29038246,31066596:215553 -k1,24449:31966991,31066596:215554 -k1,24450:32583029,31066596:0 -) -(1,24450:6630773,31931676:25952256,513147,134348 -k1,24449:8271717,31931676:218813 -k1,24449:9482109,31931676:218832 -k1,24449:10767213,31931676:218833 -k1,24449:14501396,31931676:218832 -k1,24449:18025209,31931676:218832 -k1,24449:18895470,31931676:218833 -k1,24449:21512264,31931676:218832 -k1,24449:24562252,31931676:218833 -k1,24449:26161272,31931676:218832 -k1,24449:29827954,31931676:218833 -k1,24449:31212016,31931676:218832 -k1,24450:32583029,31931676:0 -) -(1,24450:6630773,32796756:25952256,513147,126483 -k1,24449:10063847,32796756:177245 -k1,24449:13717777,32796756:177245 -k1,24449:14546450,32796756:177245 -k1,24449:16947987,32796756:177245 -k1,24449:19295784,32796756:177245 -k1,24449:20220794,32796756:177244 -k1,24449:23820984,32796756:177245 -k1,24449:25189674,32796756:177245 -k1,24449:26988935,32796756:177245 -k1,24449:27913946,32796756:177245 -k1,24449:29668643,32796756:177245 -k1,24449:32583029,32796756:0 -) -(1,24450:6630773,33661836:25952256,473825,126483 -g1,24449:7446040,33661836 -g1,24449:8001129,33661836 -g1,24449:10903063,33661836 -k1,24450:32583028,33661836:20272252 -g1,24450:32583028,33661836 -) -(1,24452:6630773,34526916:25952256,513147,126483 -h1,24451:6630773,34526916:983040,0,0 -k1,24451:10578972,34526916:175291 -(1,24451:10578972,34526916:0,452978,115847 -r1,24476:14102644,34526916:3523672,568825,115847 -k1,24451:10578972,34526916:-3523672 -) -(1,24451:10578972,34526916:3523672,452978,115847 -k1,24451:10578972,34526916:3277 -h1,24451:14099367,34526916:0,411205,112570 -) -k1,24451:14277935,34526916:175291 -k1,24451:15557509,34526916:175292 -k1,24451:16480566,34526916:175291 -k1,24451:18169083,34526916:175291 -k1,24451:18995802,34526916:175291 -k1,24451:21352787,34526916:175291 -k1,24451:21883939,34526916:175292 -(1,24451:21883939,34526916:0,414482,115847 -r1,24476:23297340,34526916:1413401,530329,115847 -k1,24451:21883939,34526916:-1413401 -) -(1,24451:21883939,34526916:1413401,414482,115847 -k1,24451:21883939,34526916:3277 -h1,24451:23294063,34526916:0,411205,112570 -) -k1,24451:23472631,34526916:175291 -k1,24451:24630962,34526916:175291 -k1,24451:26617668,34526916:175291 -k1,24451:27554488,34526916:175292 -k1,24451:28085639,34526916:175291 -k1,24451:30249292,34526916:175291 -k1,24451:32583029,34526916:0 -) -(1,24452:6630773,35391996:25952256,513147,126483 -k1,24451:7547665,35391996:249736 -k1,24451:9393202,35391996:249736 -k1,24451:10460826,35391996:249735 -k1,24451:11326600,35391996:249736 -k1,24451:12595421,35391996:249736 -k1,24451:15599635,35391996:249736 -k1,24451:18301728,35391996:249736 -k1,24451:19419815,35391996:249735 -k1,24451:21964622,35391996:249736 -k1,24451:23589959,35391996:249736 -k1,24451:24858780,35391996:249736 -k1,24451:26414649,35391996:249736 -k1,24451:27560917,35391996:249735 -k1,24451:29344851,35391996:249736 -k1,24451:30786032,35391996:249736 -k1,24451:32583029,35391996:0 -) -(1,24452:6630773,36257076:25952256,513147,134348 -k1,24451:9494951,36257076:150987 -k1,24451:10305230,36257076:150987 -k1,24451:11475302,36257076:150987 -k1,24451:13015652,36257076:150987 -k1,24451:15216605,36257076:150987 -k1,24451:18348168,36257076:150986 -k1,24451:18855015,36257076:150987 -k1,24451:21388891,36257076:150987 -(1,24451:21388891,36257076:0,414482,115847 -r1,24476:23154004,36257076:1765113,530329,115847 -k1,24451:21388891,36257076:-1765113 -) -(1,24451:21388891,36257076:1765113,414482,115847 -k1,24451:21388891,36257076:3277 -h1,24451:23150727,36257076:0,411205,112570 -) -k1,24451:23304991,36257076:150987 -k1,24451:26817975,36257076:150987 -k1,24451:27324822,36257076:150987 -k1,24451:29962900,36257076:150987 -k1,24451:32583029,36257076:0 -) -(1,24452:6630773,37122156:25952256,505283,115847 -g1,24451:8790184,37122156 -g1,24451:10180858,37122156 -(1,24451:10180858,37122156:0,452978,115847 -r1,24476:14407954,37122156:4227096,568825,115847 -k1,24451:10180858,37122156:-4227096 -) -(1,24451:10180858,37122156:4227096,452978,115847 -k1,24451:10180858,37122156:3277 -h1,24451:14404677,37122156:0,411205,112570 -) -g1,24451:14607183,37122156 -g1,24451:16200363,37122156 -g1,24451:18110737,37122156 -g1,24451:20989078,37122156 -g1,24451:21874469,37122156 -g1,24451:22488541,37122156 -g1,24451:24068614,37122156 -k1,24452:32583029,37122156:6451342 -g1,24452:32583029,37122156 -) -v1,24454:6630773,37807011:0,393216,0 -(1,24468:6630773,43661268:25952256,6247473,196608 -g1,24468:6630773,43661268 -g1,24468:6630773,43661268 -g1,24468:6434165,43661268 -(1,24468:6434165,43661268:0,6247473,196608 -r1,24476:32779637,43661268:26345472,6444081,196608 -k1,24468:6434165,43661268:-26345472 -) -(1,24468:6434165,43661268:26345472,6247473,196608 -[1,24468:6630773,43661268:25952256,6050865,0 -(1,24456:6630773,38041448:25952256,431045,106246 -(1,24455:6630773,38041448:0,0,0 -g1,24455:6630773,38041448 -g1,24455:6630773,38041448 -g1,24455:6303093,38041448 -(1,24455:6303093,38041448:0,0,0 -) -g1,24455:6630773,38041448 -) -g1,24456:10282266,38041448 -g1,24456:11278128,38041448 -g1,24456:15925483,38041448 -g1,24456:16589391,38041448 -k1,24456:16589391,38041448:0 -h1,24456:23892377,38041448:0,0,0 -k1,24456:32583029,38041448:8690652 -g1,24456:32583029,38041448 -) -(1,24457:6630773,38726303:25952256,424439,106246 -h1,24457:6630773,38726303:0,0,0 -g1,24457:11942036,38726303 -g1,24457:14265714,38726303 -h1,24457:15593530,38726303:0,0,0 -k1,24457:32583030,38726303:16989500 -g1,24457:32583030,38726303 -) -(1,24467:6630773,39542230:25952256,424439,9908 -(1,24459:6630773,39542230:0,0,0 -g1,24459:6630773,39542230 -g1,24459:6630773,39542230 -g1,24459:6303093,39542230 -(1,24459:6303093,39542230:0,0,0 -) -g1,24459:6630773,39542230 -) -g1,24467:7626635,39542230 -g1,24467:8290543,39542230 -g1,24467:8954451,39542230 -g1,24467:11610083,39542230 -g1,24467:12273991,39542230 -g1,24467:12937899,39542230 -h1,24467:13269853,39542230:0,0,0 -k1,24467:32583029,39542230:19313176 -g1,24467:32583029,39542230 -) -(1,24467:6630773,40227085:25952256,424439,106246 -h1,24467:6630773,40227085:0,0,0 -g1,24467:7626635,40227085 -g1,24467:7958589,40227085 -g1,24467:8290543,40227085 -g1,24467:10282267,40227085 -g1,24467:12273991,40227085 -g1,24467:12605945,40227085 -g1,24467:12937899,40227085 -g1,24467:13269853,40227085 -g1,24467:13601807,40227085 -g1,24467:13933761,40227085 -g1,24467:14265715,40227085 -g1,24467:14597669,40227085 -g1,24467:14929623,40227085 -g1,24467:15261577,40227085 -g1,24467:15593531,40227085 -g1,24467:18913070,40227085 -g1,24467:21236748,40227085 -g1,24467:21568702,40227085 -g1,24467:21900656,40227085 -g1,24467:23228472,40227085 -g1,24467:25884104,40227085 -h1,24467:29867551,40227085:0,0,0 -k1,24467:32583029,40227085:2715478 -g1,24467:32583029,40227085 -) -(1,24467:6630773,40911940:25952256,424439,6605 -h1,24467:6630773,40911940:0,0,0 -g1,24467:7626635,40911940 -g1,24467:7958589,40911940 -g1,24467:8290543,40911940 -g1,24467:10282267,40911940 -g1,24467:13601806,40911940 -g1,24467:13933760,40911940 -g1,24467:14265714,40911940 -g1,24467:14597668,40911940 -g1,24467:14929622,40911940 -g1,24467:15261576,40911940 -g1,24467:15593530,40911940 -g1,24467:15925484,40911940 -g1,24467:16257438,40911940 -g1,24467:16589392,40911940 -g1,24467:16921346,40911940 -g1,24467:18913070,40911940 -g1,24467:19245024,40911940 -g1,24467:21236748,40911940 -g1,24467:23228472,40911940 -g1,24467:23560426,40911940 -g1,24467:23892380,40911940 -g1,24467:25884104,40911940 -k1,24467:25884104,40911940:0 -h1,24467:27875828,40911940:0,0,0 -k1,24467:32583029,40911940:4707201 -g1,24467:32583029,40911940 -) -(1,24467:6630773,41596795:25952256,424439,86428 -h1,24467:6630773,41596795:0,0,0 -g1,24467:7626635,41596795 -g1,24467:8290543,41596795 -g1,24467:8622497,41596795 -g1,24467:8954451,41596795 -g1,24467:9286405,41596795 -g1,24467:9618359,41596795 -g1,24467:10282267,41596795 -g1,24467:10946175,41596795 -g1,24467:14265714,41596795 -g1,24467:15593530,41596795 -g1,24467:15925484,41596795 -g1,24467:16257438,41596795 -g1,24467:16589392,41596795 -g1,24467:16921346,41596795 -g1,24467:17253300,41596795 -g1,24467:17585254,41596795 -g1,24467:17917208,41596795 -g1,24467:18249162,41596795 -g1,24467:18913070,41596795 -g1,24467:19245024,41596795 -g1,24467:19576978,41596795 -g1,24467:19908932,41596795 -g1,24467:20240886,41596795 -g1,24467:20572840,41596795 -g1,24467:21236748,41596795 -g1,24467:21568702,41596795 -g1,24467:21900656,41596795 -g1,24467:22232610,41596795 -g1,24467:23228472,41596795 -g1,24467:23560426,41596795 -g1,24467:23892380,41596795 -g1,24467:24224334,41596795 -g1,24467:24556288,41596795 -g1,24467:24888242,41596795 -g1,24467:25220196,41596795 -g1,24467:25884104,41596795 -k1,24467:25884104,41596795:0 -h1,24467:29203644,41596795:0,0,0 -k1,24467:32583029,41596795:3379385 -g1,24467:32583029,41596795 -) -(1,24467:6630773,42281650:25952256,424439,86428 -h1,24467:6630773,42281650:0,0,0 -g1,24467:7626635,42281650 -g1,24467:8290543,42281650 -g1,24467:8622497,42281650 -g1,24467:8954451,42281650 -g1,24467:9286405,42281650 -g1,24467:9618359,42281650 -g1,24467:10282267,42281650 -g1,24467:10946175,42281650 -g1,24467:14265714,42281650 -g1,24467:15593530,42281650 -g1,24467:15925484,42281650 -g1,24467:16257438,42281650 -g1,24467:16589392,42281650 -g1,24467:16921346,42281650 -g1,24467:17253300,42281650 -g1,24467:17585254,42281650 -g1,24467:17917208,42281650 -g1,24467:18249162,42281650 -g1,24467:18913070,42281650 -g1,24467:19245024,42281650 -g1,24467:19576978,42281650 -g1,24467:19908932,42281650 -g1,24467:20240886,42281650 -g1,24467:20572840,42281650 -g1,24467:21236748,42281650 -g1,24467:21568702,42281650 -g1,24467:21900656,42281650 -g1,24467:22232610,42281650 -g1,24467:23228472,42281650 -g1,24467:23560426,42281650 -g1,24467:23892380,42281650 -g1,24467:24224334,42281650 -g1,24467:24556288,42281650 -g1,24467:24888242,42281650 -g1,24467:25220196,42281650 -g1,24467:25884104,42281650 -k1,24467:25884104,42281650:0 -h1,24467:29203644,42281650:0,0,0 -k1,24467:32583029,42281650:3379385 -g1,24467:32583029,42281650 -) -(1,24467:6630773,42966505:25952256,424439,86428 -h1,24467:6630773,42966505:0,0,0 -g1,24467:7626635,42966505 -g1,24467:8290543,42966505 -g1,24467:8622497,42966505 -g1,24467:8954451,42966505 -g1,24467:9286405,42966505 -g1,24467:9618359,42966505 -g1,24467:10282267,42966505 -g1,24467:10946175,42966505 -g1,24467:14265714,42966505 -g1,24467:15593530,42966505 -g1,24467:15925484,42966505 -g1,24467:16257438,42966505 -g1,24467:16589392,42966505 -g1,24467:16921346,42966505 -g1,24467:17253300,42966505 -g1,24467:17585254,42966505 -g1,24467:17917208,42966505 -g1,24467:18249162,42966505 -g1,24467:18913070,42966505 -g1,24467:19245024,42966505 -g1,24467:19576978,42966505 -g1,24467:19908932,42966505 -g1,24467:20240886,42966505 -g1,24467:20572840,42966505 -g1,24467:21236748,42966505 -g1,24467:21568702,42966505 -g1,24467:21900656,42966505 -g1,24467:23228472,42966505 -g1,24467:23560426,42966505 -g1,24467:23892380,42966505 -g1,24467:24224334,42966505 -g1,24467:24556288,42966505 -g1,24467:24888242,42966505 -g1,24467:25220196,42966505 -g1,24467:25884104,42966505 -k1,24467:25884104,42966505:0 -h1,24467:29203644,42966505:0,0,0 -k1,24467:32583029,42966505:3379385 -g1,24467:32583029,42966505 -) -(1,24467:6630773,43651360:25952256,424439,9908 -h1,24467:6630773,43651360:0,0,0 -g1,24467:7626635,43651360 -g1,24467:8290543,43651360 -g1,24467:8954451,43651360 -g1,24467:9618359,43651360 -g1,24467:11278129,43651360 -h1,24467:12605945,43651360:0,0,0 -k1,24467:32583029,43651360:19977084 -g1,24467:32583029,43651360 -) -] -) -g1,24468:32583029,43661268 -g1,24468:6630773,43661268 -g1,24468:6630773,43661268 -g1,24468:32583029,43661268 -g1,24468:32583029,43661268 -) -h1,24468:6630773,43857876:0,0,0 -(1,24472:6630773,44722956:25952256,505283,126483 -h1,24471:6630773,44722956:983040,0,0 -g1,24471:8440877,44722956 -g1,24471:9843347,44722956 -g1,24471:11583327,44722956 -g1,24471:12801641,44722956 -g1,24471:14712015,44722956 -g1,24471:15902804,44722956 -g1,24471:18910906,44722956 -k1,24472:32583029,44722956:10934685 -g1,24472:32583029,44722956 -) -(1,24474:6630773,45588036:25952256,513147,134348 -h1,24473:6630773,45588036:983040,0,0 -g1,24473:9448165,45588036 -g1,24473:10515746,45588036 -g1,24473:12896669,45588036 -g1,24473:13866601,45588036 -g1,24473:15991933,45588036 -(1,24473:15991933,45588036:0,414482,115847 -r1,24476:17405334,45588036:1413401,530329,115847 -k1,24473:15991933,45588036:-1413401 -) -(1,24473:15991933,45588036:1413401,414482,115847 -k1,24473:15991933,45588036:3277 -h1,24473:17402057,45588036:0,411205,112570 -) -g1,24473:17604563,45588036 -g1,24473:18786832,45588036 -g1,24473:20797476,45588036 -g1,24473:21793623,45588036 -g1,24473:23675817,45588036 -k1,24474:32583029,45588036:7730186 -g1,24474:32583029,45588036 -) -] -(1,24476:32583029,45706769:0,0,0 -g1,24476:32583029,45706769 -) -) -] -(1,24476:6630773,47279633:25952256,0,0 -h1,24476:6630773,47279633:25952256,0,0 -) -] -(1,24476:4262630,4025873:0,0,0 -[1,24476:-473656,4025873:0,0,0 -(1,24476:-473656,-710413:0,0,0 -(1,24476:-473656,-710413:0,0,0 -g1,24476:-473656,-710413 -) -g1,24476:-473656,-710413 +] +g1,24474:6630773,4812305 +g1,24474:6630773,4812305 +g1,24474:9860387,4812305 +g1,24474:12841619,4812305 +k1,24474:31387651,4812305:18546032 +) +) +] +[1,24474:6630773,45706769:25952256,40108032,0 +(1,24474:6630773,45706769:25952256,40108032,0 +(1,24474:6630773,45706769:0,0,0 +g1,24474:6630773,45706769 +) +[1,24474:6630773,45706769:25952256,40108032,0 +v1,24404:6630773,6254097:0,393216,0 +(1,24418:6630773,12108354:25952256,6247473,196608 +g1,24418:6630773,12108354 +g1,24418:6630773,12108354 +g1,24418:6434165,12108354 +(1,24418:6434165,12108354:0,6247473,196608 +r1,24474:32779637,12108354:26345472,6444081,196608 +k1,24418:6434165,12108354:-26345472 +) +(1,24418:6434165,12108354:26345472,6247473,196608 +[1,24418:6630773,12108354:25952256,6050865,0 +(1,24406:6630773,6488534:25952256,431045,106246 +(1,24405:6630773,6488534:0,0,0 +g1,24405:6630773,6488534 +g1,24405:6630773,6488534 +g1,24405:6303093,6488534 +(1,24405:6303093,6488534:0,0,0 +) +g1,24405:6630773,6488534 +) +g1,24406:10282266,6488534 +g1,24406:11278128,6488534 +g1,24406:16257437,6488534 +g1,24406:16921345,6488534 +g1,24406:24556285,6488534 +g1,24406:29203640,6488534 +g1,24406:29867548,6488534 +h1,24406:31527318,6488534:0,0,0 +k1,24406:32583029,6488534:1055711 +g1,24406:32583029,6488534 +) +(1,24407:6630773,7173389:25952256,431045,79822 +h1,24407:6630773,7173389:0,0,0 +k1,24407:6630773,7173389:0 +h1,24407:11942036,7173389:0,0,0 +k1,24407:32583028,7173389:20640992 +g1,24407:32583028,7173389 +) +(1,24417:6630773,7989316:25952256,398014,8257 +(1,24409:6630773,7989316:0,0,0 +g1,24409:6630773,7989316 +g1,24409:6630773,7989316 +g1,24409:6303093,7989316 +(1,24409:6303093,7989316:0,0,0 +) +g1,24409:6630773,7989316 +) +g1,24417:7626635,7989316 +g1,24417:7958589,7989316 +g1,24417:8290543,7989316 +g1,24417:10946175,7989316 +h1,24417:12937899,7989316:0,0,0 +k1,24417:32583029,7989316:19645130 +g1,24417:32583029,7989316 +) +(1,24417:6630773,8674171:25952256,424439,9908 +h1,24417:6630773,8674171:0,0,0 +g1,24417:7626635,8674171 +g1,24417:8290543,8674171 +g1,24417:8622497,8674171 +g1,24417:8954451,8674171 +g1,24417:9286405,8674171 +g1,24417:9618359,8674171 +g1,24417:10946175,8674171 +g1,24417:11278129,8674171 +h1,24417:12937899,8674171:0,0,0 +k1,24417:32583029,8674171:19645130 +g1,24417:32583029,8674171 +) +(1,24417:6630773,9359026:25952256,424439,9908 +h1,24417:6630773,9359026:0,0,0 +g1,24417:7626635,9359026 +g1,24417:8290543,9359026 +g1,24417:8622497,9359026 +g1,24417:8954451,9359026 +g1,24417:9286405,9359026 +g1,24417:9618359,9359026 +g1,24417:10946175,9359026 +g1,24417:11278129,9359026 +h1,24417:12937899,9359026:0,0,0 +k1,24417:32583029,9359026:19645130 +g1,24417:32583029,9359026 +) +(1,24417:6630773,10043881:25952256,424439,9908 +h1,24417:6630773,10043881:0,0,0 +g1,24417:7626635,10043881 +g1,24417:8290543,10043881 +g1,24417:8622497,10043881 +g1,24417:8954451,10043881 +g1,24417:9286405,10043881 +g1,24417:9618359,10043881 +g1,24417:10946175,10043881 +g1,24417:11278129,10043881 +h1,24417:12937899,10043881:0,0,0 +k1,24417:32583029,10043881:19645130 +g1,24417:32583029,10043881 +) +(1,24417:6630773,10728736:25952256,424439,9908 +h1,24417:6630773,10728736:0,0,0 +g1,24417:7626635,10728736 +g1,24417:8290543,10728736 +g1,24417:8622497,10728736 +g1,24417:8954451,10728736 +g1,24417:9286405,10728736 +g1,24417:9618359,10728736 +g1,24417:10946175,10728736 +g1,24417:11278129,10728736 +h1,24417:12937899,10728736:0,0,0 +k1,24417:32583029,10728736:19645130 +g1,24417:32583029,10728736 +) +(1,24417:6630773,11413591:25952256,424439,9908 +h1,24417:6630773,11413591:0,0,0 +g1,24417:7626635,11413591 +g1,24417:8290543,11413591 +g1,24417:8622497,11413591 +g1,24417:8954451,11413591 +g1,24417:9286405,11413591 +g1,24417:9618359,11413591 +g1,24417:10946175,11413591 +g1,24417:11278129,11413591 +h1,24417:12937899,11413591:0,0,0 +k1,24417:32583029,11413591:19645130 +g1,24417:32583029,11413591 +) +(1,24417:6630773,12098446:25952256,424439,9908 +h1,24417:6630773,12098446:0,0,0 +g1,24417:7626635,12098446 +g1,24417:8290543,12098446 +g1,24417:8622497,12098446 +g1,24417:8954451,12098446 +g1,24417:9286405,12098446 +g1,24417:9618359,12098446 +g1,24417:10946175,12098446 +g1,24417:11278129,12098446 +h1,24417:12937899,12098446:0,0,0 +k1,24417:32583029,12098446:19645130 +g1,24417:32583029,12098446 +) +] +) +g1,24418:32583029,12108354 +g1,24418:6630773,12108354 +g1,24418:6630773,12108354 +g1,24418:32583029,12108354 +g1,24418:32583029,12108354 +) +h1,24418:6630773,12304962:0,0,0 +(1,24422:6630773,13170042:25952256,513147,134348 +h1,24421:6630773,13170042:983040,0,0 +k1,24421:10423386,13170042:205172 +k1,24421:13463644,13170042:205171 +k1,24421:14616467,13170042:205172 +k1,24421:15177499,13170042:205172 +k1,24421:17263553,13170042:205171 +k1,24421:18451765,13170042:205172 +k1,24421:20468352,13170042:205172 +k1,24421:21482893,13170042:205171 +k1,24421:22458768,13170042:205172 +k1,24421:23494931,13170042:205166 +k1,24421:25350299,13170042:205171 +k1,24421:26997918,13170042:205172 +k1,24421:28000008,13170042:205172 +k1,24421:29888144,13170042:205171 +k1,24421:31391584,13170042:205172 +k1,24421:32583029,13170042:0 +) +(1,24422:6630773,14035122:25952256,505283,115847 +g1,24421:8242303,14035122 +g1,24421:9835483,14035122 +(1,24421:9835483,14035122:0,452978,115847 +r1,24474:14414291,14035122:4578808,568825,115847 +k1,24421:9835483,14035122:-4578808 +) +(1,24421:9835483,14035122:4578808,452978,115847 +k1,24421:9835483,14035122:3277 +h1,24421:14411014,14035122:0,411205,112570 +) +k1,24422:32583029,14035122:18116310 +g1,24422:32583029,14035122 +) +v1,24424:6630773,14719977:0,393216,0 +(1,24438:6630773,20574234:25952256,6247473,196608 +g1,24438:6630773,20574234 +g1,24438:6630773,20574234 +g1,24438:6434165,20574234 +(1,24438:6434165,20574234:0,6247473,196608 +r1,24474:32779637,20574234:26345472,6444081,196608 +k1,24438:6434165,20574234:-26345472 +) +(1,24438:6434165,20574234:26345472,6247473,196608 +[1,24438:6630773,20574234:25952256,6050865,0 +(1,24426:6630773,14954414:25952256,431045,106246 +(1,24425:6630773,14954414:0,0,0 +g1,24425:6630773,14954414 +g1,24425:6630773,14954414 +g1,24425:6303093,14954414 +(1,24425:6303093,14954414:0,0,0 +) +g1,24425:6630773,14954414 +) +g1,24426:10946174,14954414 +g1,24426:11942036,14954414 +g1,24426:17585253,14954414 +g1,24426:18249161,14954414 +h1,24426:25220194,14954414:0,0,0 +k1,24426:32583029,14954414:7362835 +g1,24426:32583029,14954414 +) +(1,24427:6630773,15639269:25952256,431045,106246 +h1,24427:6630773,15639269:0,0,0 +k1,24427:6630773,15639269:0 +h1,24427:12605944,15639269:0,0,0 +k1,24427:32583028,15639269:19977084 +g1,24427:32583028,15639269 +) +(1,24437:6630773,16455196:25952256,398014,8257 +(1,24429:6630773,16455196:0,0,0 +g1,24429:6630773,16455196 +g1,24429:6630773,16455196 +g1,24429:6303093,16455196 +(1,24429:6303093,16455196:0,0,0 +) +g1,24429:6630773,16455196 +) +g1,24437:7626635,16455196 +g1,24437:7958589,16455196 +g1,24437:8290543,16455196 +g1,24437:9950313,16455196 +g1,24437:11610083,16455196 +g1,24437:13601807,16455196 +g1,24437:15593531,16455196 +g1,24437:17585255,16455196 +g1,24437:19245025,16455196 +g1,24437:21236749,16455196 +g1,24437:23560427,16455196 +h1,24437:24888243,16455196:0,0,0 +k1,24437:32583029,16455196:7694786 +g1,24437:32583029,16455196 +) +(1,24437:6630773,17140051:25952256,407923,9908 +h1,24437:6630773,17140051:0,0,0 +g1,24437:7626635,17140051 +g1,24437:8290543,17140051 +g1,24437:8622497,17140051 +g1,24437:8954451,17140051 +g1,24437:9286405,17140051 +g1,24437:9950313,17140051 +g1,24437:10282267,17140051 +g1,24437:10614221,17140051 +g1,24437:10946175,17140051 +g1,24437:11610083,17140051 +g1,24437:11942037,17140051 +g1,24437:12273991,17140051 +g1,24437:12605945,17140051 +g1,24437:12937899,17140051 +g1,24437:13601807,17140051 +g1,24437:13933761,17140051 +g1,24437:14265715,17140051 +g1,24437:14597669,17140051 +g1,24437:14929623,17140051 +g1,24437:15593531,17140051 +g1,24437:15925485,17140051 +g1,24437:16257439,17140051 +g1,24437:16589393,17140051 +g1,24437:17585255,17140051 +g1,24437:17917209,17140051 +g1,24437:18249163,17140051 +g1,24437:18581117,17140051 +g1,24437:19245025,17140051 +g1,24437:19576979,17140051 +g1,24437:19908933,17140051 +g1,24437:20240887,17140051 +g1,24437:20572841,17140051 +g1,24437:21236749,17140051 +g1,24437:21568703,17140051 +g1,24437:21900657,17140051 +g1,24437:22232611,17140051 +g1,24437:22564565,17140051 +g1,24437:22896519,17140051 +g1,24437:23560427,17140051 +g1,24437:23892381,17140051 +g1,24437:24224335,17140051 +h1,24437:24888243,17140051:0,0,0 +k1,24437:32583029,17140051:7694786 +g1,24437:32583029,17140051 +) +(1,24437:6630773,17824906:25952256,407923,9908 +h1,24437:6630773,17824906:0,0,0 +g1,24437:7626635,17824906 +g1,24437:8290543,17824906 +g1,24437:8622497,17824906 +g1,24437:8954451,17824906 +g1,24437:9286405,17824906 +g1,24437:9950313,17824906 +g1,24437:10282267,17824906 +g1,24437:10614221,17824906 +g1,24437:10946175,17824906 +g1,24437:11610083,17824906 +g1,24437:11942037,17824906 +g1,24437:12273991,17824906 +g1,24437:12605945,17824906 +g1,24437:12937899,17824906 +g1,24437:13601807,17824906 +g1,24437:13933761,17824906 +g1,24437:14265715,17824906 +g1,24437:14597669,17824906 +g1,24437:14929623,17824906 +g1,24437:15593531,17824906 +g1,24437:15925485,17824906 +g1,24437:16257439,17824906 +g1,24437:16589393,17824906 +g1,24437:17585255,17824906 +g1,24437:17917209,17824906 +g1,24437:18249163,17824906 +g1,24437:18581117,17824906 +g1,24437:19245025,17824906 +g1,24437:19576979,17824906 +g1,24437:19908933,17824906 +g1,24437:20240887,17824906 +g1,24437:20572841,17824906 +g1,24437:21236749,17824906 +g1,24437:21568703,17824906 +g1,24437:21900657,17824906 +g1,24437:22232611,17824906 +g1,24437:22564565,17824906 +g1,24437:22896519,17824906 +g1,24437:23560427,17824906 +g1,24437:23892381,17824906 +g1,24437:24224335,17824906 +h1,24437:24888243,17824906:0,0,0 +k1,24437:32583029,17824906:7694786 +g1,24437:32583029,17824906 +) +(1,24437:6630773,18509761:25952256,407923,9908 +h1,24437:6630773,18509761:0,0,0 +g1,24437:7626635,18509761 +g1,24437:8290543,18509761 +g1,24437:8622497,18509761 +g1,24437:8954451,18509761 +g1,24437:9286405,18509761 +g1,24437:9950313,18509761 +g1,24437:10282267,18509761 +g1,24437:10614221,18509761 +g1,24437:10946175,18509761 +g1,24437:11610083,18509761 +g1,24437:11942037,18509761 +g1,24437:12273991,18509761 +g1,24437:12605945,18509761 +g1,24437:12937899,18509761 +g1,24437:13601807,18509761 +g1,24437:13933761,18509761 +g1,24437:14265715,18509761 +g1,24437:14597669,18509761 +g1,24437:14929623,18509761 +g1,24437:15593531,18509761 +g1,24437:15925485,18509761 +g1,24437:16257439,18509761 +g1,24437:16589393,18509761 +g1,24437:17585255,18509761 +g1,24437:17917209,18509761 +g1,24437:18249163,18509761 +g1,24437:18581117,18509761 +g1,24437:19245025,18509761 +g1,24437:19576979,18509761 +g1,24437:19908933,18509761 +g1,24437:20240887,18509761 +g1,24437:20572841,18509761 +g1,24437:21236749,18509761 +g1,24437:21568703,18509761 +g1,24437:21900657,18509761 +g1,24437:22232611,18509761 +g1,24437:22564565,18509761 +g1,24437:22896519,18509761 +g1,24437:23560427,18509761 +g1,24437:23892381,18509761 +g1,24437:24224335,18509761 +h1,24437:24888243,18509761:0,0,0 +k1,24437:32583029,18509761:7694786 +g1,24437:32583029,18509761 +) +(1,24437:6630773,19194616:25952256,407923,9908 +h1,24437:6630773,19194616:0,0,0 +g1,24437:7626635,19194616 +g1,24437:8290543,19194616 +g1,24437:8622497,19194616 +g1,24437:8954451,19194616 +g1,24437:9286405,19194616 +g1,24437:9950313,19194616 +g1,24437:10282267,19194616 +g1,24437:10614221,19194616 +g1,24437:10946175,19194616 +g1,24437:11610083,19194616 +g1,24437:11942037,19194616 +g1,24437:12273991,19194616 +g1,24437:12605945,19194616 +g1,24437:12937899,19194616 +g1,24437:13601807,19194616 +g1,24437:13933761,19194616 +g1,24437:14265715,19194616 +g1,24437:14597669,19194616 +g1,24437:14929623,19194616 +g1,24437:15593531,19194616 +g1,24437:15925485,19194616 +g1,24437:16257439,19194616 +g1,24437:16589393,19194616 +g1,24437:17585255,19194616 +g1,24437:17917209,19194616 +g1,24437:18249163,19194616 +g1,24437:18581117,19194616 +g1,24437:19245025,19194616 +g1,24437:19576979,19194616 +g1,24437:19908933,19194616 +g1,24437:20240887,19194616 +g1,24437:20572841,19194616 +g1,24437:21236749,19194616 +g1,24437:21568703,19194616 +g1,24437:21900657,19194616 +g1,24437:22232611,19194616 +g1,24437:22564565,19194616 +g1,24437:22896519,19194616 +g1,24437:23560427,19194616 +g1,24437:23892381,19194616 +g1,24437:24224335,19194616 +h1,24437:24888243,19194616:0,0,0 +k1,24437:32583029,19194616:7694786 +g1,24437:32583029,19194616 +) +(1,24437:6630773,19879471:25952256,407923,9908 +h1,24437:6630773,19879471:0,0,0 +g1,24437:7626635,19879471 +g1,24437:8290543,19879471 +g1,24437:8622497,19879471 +g1,24437:8954451,19879471 +g1,24437:9286405,19879471 +g1,24437:9950313,19879471 +g1,24437:10282267,19879471 +g1,24437:10614221,19879471 +g1,24437:10946175,19879471 +g1,24437:11610083,19879471 +g1,24437:11942037,19879471 +g1,24437:12273991,19879471 +g1,24437:12605945,19879471 +g1,24437:12937899,19879471 +g1,24437:13601807,19879471 +g1,24437:13933761,19879471 +g1,24437:14265715,19879471 +g1,24437:14597669,19879471 +g1,24437:14929623,19879471 +g1,24437:15593531,19879471 +g1,24437:15925485,19879471 +g1,24437:16257439,19879471 +g1,24437:16589393,19879471 +g1,24437:17585255,19879471 +g1,24437:17917209,19879471 +g1,24437:18249163,19879471 +g1,24437:18581117,19879471 +g1,24437:19245025,19879471 +g1,24437:19576979,19879471 +g1,24437:19908933,19879471 +g1,24437:20240887,19879471 +g1,24437:20572841,19879471 +g1,24437:21236749,19879471 +g1,24437:21568703,19879471 +g1,24437:21900657,19879471 +g1,24437:22232611,19879471 +g1,24437:22564565,19879471 +g1,24437:22896519,19879471 +g1,24437:23560427,19879471 +g1,24437:23892381,19879471 +g1,24437:24224335,19879471 +h1,24437:24888243,19879471:0,0,0 +k1,24437:32583029,19879471:7694786 +g1,24437:32583029,19879471 +) +(1,24437:6630773,20564326:25952256,407923,9908 +h1,24437:6630773,20564326:0,0,0 +g1,24437:7626635,20564326 +g1,24437:8290543,20564326 +g1,24437:8622497,20564326 +g1,24437:8954451,20564326 +g1,24437:9286405,20564326 +g1,24437:9950313,20564326 +g1,24437:10282267,20564326 +g1,24437:10614221,20564326 +g1,24437:10946175,20564326 +g1,24437:11610083,20564326 +g1,24437:11942037,20564326 +g1,24437:12273991,20564326 +g1,24437:12605945,20564326 +g1,24437:12937899,20564326 +g1,24437:13601807,20564326 +g1,24437:13933761,20564326 +g1,24437:14265715,20564326 +g1,24437:14597669,20564326 +g1,24437:14929623,20564326 +g1,24437:15593531,20564326 +g1,24437:15925485,20564326 +g1,24437:16257439,20564326 +g1,24437:16589393,20564326 +g1,24437:17585255,20564326 +g1,24437:17917209,20564326 +g1,24437:18249163,20564326 +g1,24437:18581117,20564326 +g1,24437:19245025,20564326 +g1,24437:19576979,20564326 +g1,24437:19908933,20564326 +g1,24437:20240887,20564326 +g1,24437:20572841,20564326 +g1,24437:21236749,20564326 +g1,24437:21568703,20564326 +g1,24437:21900657,20564326 +g1,24437:22232611,20564326 +g1,24437:22564565,20564326 +g1,24437:22896519,20564326 +g1,24437:23560427,20564326 +g1,24437:23892381,20564326 +g1,24437:24224335,20564326 +h1,24437:24888243,20564326:0,0,0 +k1,24437:32583029,20564326:7694786 +g1,24437:32583029,20564326 +) +] +) +g1,24438:32583029,20574234 +g1,24438:6630773,20574234 +g1,24438:6630773,20574234 +g1,24438:32583029,20574234 +g1,24438:32583029,20574234 +) +h1,24438:6630773,20770842:0,0,0 +(1,24442:6630773,21635922:25952256,513147,134348 +h1,24441:6630773,21635922:983040,0,0 +k1,24441:8953275,21635922:195859 +k1,24441:9915250,21635922:195859 +k1,24441:13136906,21635922:195859 +k1,24441:13948803,21635922:195859 +k1,24441:16772000,21635922:195859 +k1,24441:18978504,21635922:195859 +k1,24441:20563726,21635922:195859 +k1,24441:22966183,21635922:195860 +k1,24441:23923570,21635922:195859 +k1,24441:26558679,21635922:195859 +k1,24441:27826707,21635922:195859 +k1,24441:28788682,21635922:195859 +k1,24441:29643833,21635922:195859 +k1,24441:31478747,21635922:195859 +k1,24441:32583029,21635922:0 +) +(1,24442:6630773,22501002:25952256,505283,7863 +g1,24441:7577768,22501002 +g1,24441:10242461,22501002 +g1,24441:11093118,22501002 +g1,24441:12107615,22501002 +k1,24442:32583028,22501002:19698156 +g1,24442:32583028,22501002 +) +(1,24443:6630773,24617820:25952256,555811,12975 +(1,24443:6630773,24617820:3348562,534184,12975 +g1,24443:6630773,24617820 +g1,24443:9979335,24617820 +) +k1,24443:32583030,24617820:20000540 +g1,24443:32583030,24617820 +) +(1,24448:6630773,25876116:25952256,513147,134348 +k1,24447:9403274,25876116:237568 +k1,24447:11867099,25876116:237568 +k1,24447:12636164,25876116:237568 +k1,24447:14086803,25876116:237568 +k1,24447:17499590,25876116:237568 +k1,24447:19131109,25876116:237568 +k1,24447:21693239,25876116:237568 +k1,24447:22582235,25876116:237568 +k1,24447:23838888,25876116:237568 +k1,24447:26562237,25876116:237568 +k1,24447:27459097,25876116:237568 +k1,24447:30207349,25876116:237568 +k1,24448:32583029,25876116:0 +) +(1,24448:6630773,26741196:25952256,513147,134348 +k1,24447:7973606,26741196:144179 +k1,24447:8800670,26741196:144179 +k1,24447:10453488,26741196:144179 +k1,24447:13409162,26741196:144179 +k1,24447:16626324,26741196:144179 +k1,24447:18182804,26741196:144179 +k1,24447:19518428,26741196:144179 +k1,24447:21277414,26741196:144179 +k1,24447:24447390,26741196:144179 +k1,24447:25539220,26741196:144179 +k1,24447:27059000,26741196:144179 +k1,24447:28857963,26741196:144179 +k1,24447:29985182,26741196:144179 +k1,24448:32583029,26741196:0 +) +(1,24448:6630773,27606276:25952256,513147,126483 +k1,24447:8100371,27606276:137251 +k1,24447:9804588,27606276:137251 +k1,24447:11133284,27606276:137251 +k1,24447:12866336,27606276:137251 +k1,24447:13927645,27606276:137251 +k1,24447:15083981,27606276:137251 +k1,24447:16923202,27606276:137251 +k1,24447:18840412,27606276:137252 +k1,24447:21203920,27606276:137251 +k1,24447:24101547,27606276:137251 +k1,24447:26539767,27606276:137251 +k1,24447:28245295,27606276:137251 +k1,24447:29033974,27606276:137251 +k1,24447:31563944,27606276:137251 +k1,24447:32583029,27606276:0 +) +(1,24448:6630773,28471356:25952256,513147,126483 +k1,24447:9579189,28471356:186073 +k1,24447:12252353,28471356:186073 +k1,24447:14449070,28471356:186072 +k1,24447:15919649,28471356:186073 +k1,24447:18276274,28471356:186073 +k1,24447:19210113,28471356:186073 +k1,24447:21810531,28471356:186072 +k1,24447:24581999,28471356:186073 +k1,24447:25419500,28471356:186073 +k1,24447:26020403,28471356:186060 +k1,24447:28493026,28471356:186072 +k1,24447:30236890,28471356:186073 +k1,24447:31708779,28471356:186073 +k1,24448:32583029,28471356:0 +) +(1,24448:6630773,29336436:25952256,513147,134348 +k1,24447:8318224,29336436:191264 +k1,24447:10220633,29336436:191264 +k1,24447:11603343,29336436:191265 +k1,24447:13550317,29336436:191264 +k1,24447:16858473,29336436:191264 +k1,24447:17701165,29336436:191264 +k1,24447:18911515,29336436:191265 +k1,24447:23613622,29336436:191264 +k1,24447:24464178,29336436:191264 +k1,24447:26107064,29336436:191264 +k1,24447:26957621,29336436:191265 +k1,24447:28845612,29336436:191264 +k1,24447:30019916,29336436:191264 +k1,24447:32583029,29336436:0 +) +(1,24448:6630773,30201516:25952256,513147,126483 +k1,24447:7505405,30201516:246797 +k1,24447:9449583,30201516:246796 +k1,24447:11394418,30201516:246797 +k1,24447:12660299,30201516:246796 +k1,24447:15856871,30201516:246797 +k1,24447:17086708,30201516:246797 +k1,24447:20035553,30201516:246796 +k1,24447:22769441,30201516:246797 +k1,24447:25026882,30201516:246796 +k1,24447:26292764,30201516:246797 +k1,24447:29318287,30201516:246796 +(1,24447:29318287,30201516:0,452978,115847 +r1,24474:31435112,30201516:2116825,568825,115847 +k1,24447:29318287,30201516:-2116825 +) +(1,24447:29318287,30201516:2116825,452978,115847 +k1,24447:29318287,30201516:3277 +h1,24447:31431835,30201516:0,411205,112570 +) +k1,24447:31681909,30201516:246797 +k1,24448:32583029,30201516:0 +) +(1,24448:6630773,31066596:25952256,513147,134348 +k1,24447:8010902,31066596:215554 +k1,24447:10087022,31066596:215553 +k1,24447:11994716,31066596:215554 +k1,24447:15437263,31066596:215554 +k1,24447:18552130,31066596:215554 +k1,24447:20335304,31066596:215553 +k1,24447:21569943,31066596:215554 +k1,24447:23340011,31066596:215554 +k1,24447:26202564,31066596:215554 +k1,24447:29038246,31066596:215553 +k1,24447:31966991,31066596:215554 +k1,24448:32583029,31066596:0 +) +(1,24448:6630773,31931676:25952256,513147,134348 +k1,24447:8271717,31931676:218813 +k1,24447:9482109,31931676:218832 +k1,24447:10767213,31931676:218833 +k1,24447:14501396,31931676:218832 +k1,24447:18025209,31931676:218832 +k1,24447:18895470,31931676:218833 +k1,24447:21512264,31931676:218832 +k1,24447:24562252,31931676:218833 +k1,24447:26161272,31931676:218832 +k1,24447:29827954,31931676:218833 +k1,24447:31212016,31931676:218832 +k1,24448:32583029,31931676:0 +) +(1,24448:6630773,32796756:25952256,513147,126483 +k1,24447:10063847,32796756:177245 +k1,24447:13717777,32796756:177245 +k1,24447:14546450,32796756:177245 +k1,24447:16947987,32796756:177245 +k1,24447:19295784,32796756:177245 +k1,24447:20220794,32796756:177244 +k1,24447:23820984,32796756:177245 +k1,24447:25189674,32796756:177245 +k1,24447:26988935,32796756:177245 +k1,24447:27913946,32796756:177245 +k1,24447:29668643,32796756:177245 +k1,24447:32583029,32796756:0 +) +(1,24448:6630773,33661836:25952256,473825,126483 +g1,24447:7446040,33661836 +g1,24447:8001129,33661836 +g1,24447:10903063,33661836 +k1,24448:32583028,33661836:20272252 +g1,24448:32583028,33661836 +) +(1,24450:6630773,34526916:25952256,513147,126483 +h1,24449:6630773,34526916:983040,0,0 +k1,24449:10578972,34526916:175291 +(1,24449:10578972,34526916:0,452978,115847 +r1,24474:14102644,34526916:3523672,568825,115847 +k1,24449:10578972,34526916:-3523672 +) +(1,24449:10578972,34526916:3523672,452978,115847 +k1,24449:10578972,34526916:3277 +h1,24449:14099367,34526916:0,411205,112570 +) +k1,24449:14277935,34526916:175291 +k1,24449:15557509,34526916:175292 +k1,24449:16480566,34526916:175291 +k1,24449:18169083,34526916:175291 +k1,24449:18995802,34526916:175291 +k1,24449:21352787,34526916:175291 +k1,24449:21883939,34526916:175292 +(1,24449:21883939,34526916:0,414482,115847 +r1,24474:23297340,34526916:1413401,530329,115847 +k1,24449:21883939,34526916:-1413401 +) +(1,24449:21883939,34526916:1413401,414482,115847 +k1,24449:21883939,34526916:3277 +h1,24449:23294063,34526916:0,411205,112570 +) +k1,24449:23472631,34526916:175291 +k1,24449:24630962,34526916:175291 +k1,24449:26617668,34526916:175291 +k1,24449:27554488,34526916:175292 +k1,24449:28085639,34526916:175291 +k1,24449:30249292,34526916:175291 +k1,24449:32583029,34526916:0 +) +(1,24450:6630773,35391996:25952256,513147,126483 +k1,24449:7547665,35391996:249736 +k1,24449:9393202,35391996:249736 +k1,24449:10460826,35391996:249735 +k1,24449:11326600,35391996:249736 +k1,24449:12595421,35391996:249736 +k1,24449:15599635,35391996:249736 +k1,24449:18301728,35391996:249736 +k1,24449:19419815,35391996:249735 +k1,24449:21964622,35391996:249736 +k1,24449:23589959,35391996:249736 +k1,24449:24858780,35391996:249736 +k1,24449:26414649,35391996:249736 +k1,24449:27560917,35391996:249735 +k1,24449:29344851,35391996:249736 +k1,24449:30786032,35391996:249736 +k1,24449:32583029,35391996:0 +) +(1,24450:6630773,36257076:25952256,513147,134348 +k1,24449:9494951,36257076:150987 +k1,24449:10305230,36257076:150987 +k1,24449:11475302,36257076:150987 +k1,24449:13015652,36257076:150987 +k1,24449:15216605,36257076:150987 +k1,24449:18348168,36257076:150986 +k1,24449:18855015,36257076:150987 +k1,24449:21388891,36257076:150987 +(1,24449:21388891,36257076:0,414482,115847 +r1,24474:23154004,36257076:1765113,530329,115847 +k1,24449:21388891,36257076:-1765113 +) +(1,24449:21388891,36257076:1765113,414482,115847 +k1,24449:21388891,36257076:3277 +h1,24449:23150727,36257076:0,411205,112570 +) +k1,24449:23304991,36257076:150987 +k1,24449:26817975,36257076:150987 +k1,24449:27324822,36257076:150987 +k1,24449:29962900,36257076:150987 +k1,24449:32583029,36257076:0 +) +(1,24450:6630773,37122156:25952256,505283,115847 +g1,24449:8790184,37122156 +g1,24449:10180858,37122156 +(1,24449:10180858,37122156:0,452978,115847 +r1,24474:14407954,37122156:4227096,568825,115847 +k1,24449:10180858,37122156:-4227096 +) +(1,24449:10180858,37122156:4227096,452978,115847 +k1,24449:10180858,37122156:3277 +h1,24449:14404677,37122156:0,411205,112570 +) +g1,24449:14607183,37122156 +g1,24449:16200363,37122156 +g1,24449:18110737,37122156 +g1,24449:20989078,37122156 +g1,24449:21874469,37122156 +g1,24449:22488541,37122156 +g1,24449:24068614,37122156 +k1,24450:32583029,37122156:6451342 +g1,24450:32583029,37122156 +) +v1,24452:6630773,37807011:0,393216,0 +(1,24466:6630773,43661268:25952256,6247473,196608 +g1,24466:6630773,43661268 +g1,24466:6630773,43661268 +g1,24466:6434165,43661268 +(1,24466:6434165,43661268:0,6247473,196608 +r1,24474:32779637,43661268:26345472,6444081,196608 +k1,24466:6434165,43661268:-26345472 +) +(1,24466:6434165,43661268:26345472,6247473,196608 +[1,24466:6630773,43661268:25952256,6050865,0 +(1,24454:6630773,38041448:25952256,431045,106246 +(1,24453:6630773,38041448:0,0,0 +g1,24453:6630773,38041448 +g1,24453:6630773,38041448 +g1,24453:6303093,38041448 +(1,24453:6303093,38041448:0,0,0 +) +g1,24453:6630773,38041448 +) +g1,24454:10282266,38041448 +g1,24454:11278128,38041448 +g1,24454:15925483,38041448 +g1,24454:16589391,38041448 +k1,24454:16589391,38041448:0 +h1,24454:23892377,38041448:0,0,0 +k1,24454:32583029,38041448:8690652 +g1,24454:32583029,38041448 +) +(1,24455:6630773,38726303:25952256,424439,106246 +h1,24455:6630773,38726303:0,0,0 +g1,24455:11942036,38726303 +g1,24455:14265714,38726303 +h1,24455:15593530,38726303:0,0,0 +k1,24455:32583030,38726303:16989500 +g1,24455:32583030,38726303 +) +(1,24465:6630773,39542230:25952256,424439,9908 +(1,24457:6630773,39542230:0,0,0 +g1,24457:6630773,39542230 +g1,24457:6630773,39542230 +g1,24457:6303093,39542230 +(1,24457:6303093,39542230:0,0,0 +) +g1,24457:6630773,39542230 +) +g1,24465:7626635,39542230 +g1,24465:8290543,39542230 +g1,24465:8954451,39542230 +g1,24465:11610083,39542230 +g1,24465:12273991,39542230 +g1,24465:12937899,39542230 +h1,24465:13269853,39542230:0,0,0 +k1,24465:32583029,39542230:19313176 +g1,24465:32583029,39542230 +) +(1,24465:6630773,40227085:25952256,424439,106246 +h1,24465:6630773,40227085:0,0,0 +g1,24465:7626635,40227085 +g1,24465:7958589,40227085 +g1,24465:8290543,40227085 +g1,24465:10282267,40227085 +g1,24465:12273991,40227085 +g1,24465:12605945,40227085 +g1,24465:12937899,40227085 +g1,24465:13269853,40227085 +g1,24465:13601807,40227085 +g1,24465:13933761,40227085 +g1,24465:14265715,40227085 +g1,24465:14597669,40227085 +g1,24465:14929623,40227085 +g1,24465:15261577,40227085 +g1,24465:15593531,40227085 +g1,24465:18913070,40227085 +g1,24465:21236748,40227085 +g1,24465:21568702,40227085 +g1,24465:21900656,40227085 +g1,24465:23228472,40227085 +g1,24465:25884104,40227085 +h1,24465:29867551,40227085:0,0,0 +k1,24465:32583029,40227085:2715478 +g1,24465:32583029,40227085 +) +(1,24465:6630773,40911940:25952256,424439,6605 +h1,24465:6630773,40911940:0,0,0 +g1,24465:7626635,40911940 +g1,24465:7958589,40911940 +g1,24465:8290543,40911940 +g1,24465:10282267,40911940 +g1,24465:13601806,40911940 +g1,24465:13933760,40911940 +g1,24465:14265714,40911940 +g1,24465:14597668,40911940 +g1,24465:14929622,40911940 +g1,24465:15261576,40911940 +g1,24465:15593530,40911940 +g1,24465:15925484,40911940 +g1,24465:16257438,40911940 +g1,24465:16589392,40911940 +g1,24465:16921346,40911940 +g1,24465:18913070,40911940 +g1,24465:19245024,40911940 +g1,24465:21236748,40911940 +g1,24465:23228472,40911940 +g1,24465:23560426,40911940 +g1,24465:23892380,40911940 +g1,24465:25884104,40911940 +k1,24465:25884104,40911940:0 +h1,24465:27875828,40911940:0,0,0 +k1,24465:32583029,40911940:4707201 +g1,24465:32583029,40911940 +) +(1,24465:6630773,41596795:25952256,424439,86428 +h1,24465:6630773,41596795:0,0,0 +g1,24465:7626635,41596795 +g1,24465:8290543,41596795 +g1,24465:8622497,41596795 +g1,24465:8954451,41596795 +g1,24465:9286405,41596795 +g1,24465:9618359,41596795 +g1,24465:10282267,41596795 +g1,24465:10946175,41596795 +g1,24465:14265714,41596795 +g1,24465:15593530,41596795 +g1,24465:15925484,41596795 +g1,24465:16257438,41596795 +g1,24465:16589392,41596795 +g1,24465:16921346,41596795 +g1,24465:17253300,41596795 +g1,24465:17585254,41596795 +g1,24465:17917208,41596795 +g1,24465:18249162,41596795 +g1,24465:18913070,41596795 +g1,24465:19245024,41596795 +g1,24465:19576978,41596795 +g1,24465:19908932,41596795 +g1,24465:20240886,41596795 +g1,24465:20572840,41596795 +g1,24465:21236748,41596795 +g1,24465:21568702,41596795 +g1,24465:21900656,41596795 +g1,24465:22232610,41596795 +g1,24465:23228472,41596795 +g1,24465:23560426,41596795 +g1,24465:23892380,41596795 +g1,24465:24224334,41596795 +g1,24465:24556288,41596795 +g1,24465:24888242,41596795 +g1,24465:25220196,41596795 +g1,24465:25884104,41596795 +k1,24465:25884104,41596795:0 +h1,24465:29203644,41596795:0,0,0 +k1,24465:32583029,41596795:3379385 +g1,24465:32583029,41596795 +) +(1,24465:6630773,42281650:25952256,424439,86428 +h1,24465:6630773,42281650:0,0,0 +g1,24465:7626635,42281650 +g1,24465:8290543,42281650 +g1,24465:8622497,42281650 +g1,24465:8954451,42281650 +g1,24465:9286405,42281650 +g1,24465:9618359,42281650 +g1,24465:10282267,42281650 +g1,24465:10946175,42281650 +g1,24465:14265714,42281650 +g1,24465:15593530,42281650 +g1,24465:15925484,42281650 +g1,24465:16257438,42281650 +g1,24465:16589392,42281650 +g1,24465:16921346,42281650 +g1,24465:17253300,42281650 +g1,24465:17585254,42281650 +g1,24465:17917208,42281650 +g1,24465:18249162,42281650 +g1,24465:18913070,42281650 +g1,24465:19245024,42281650 +g1,24465:19576978,42281650 +g1,24465:19908932,42281650 +g1,24465:20240886,42281650 +g1,24465:20572840,42281650 +g1,24465:21236748,42281650 +g1,24465:21568702,42281650 +g1,24465:21900656,42281650 +g1,24465:22232610,42281650 +g1,24465:23228472,42281650 +g1,24465:23560426,42281650 +g1,24465:23892380,42281650 +g1,24465:24224334,42281650 +g1,24465:24556288,42281650 +g1,24465:24888242,42281650 +g1,24465:25220196,42281650 +g1,24465:25884104,42281650 +k1,24465:25884104,42281650:0 +h1,24465:29203644,42281650:0,0,0 +k1,24465:32583029,42281650:3379385 +g1,24465:32583029,42281650 +) +(1,24465:6630773,42966505:25952256,424439,86428 +h1,24465:6630773,42966505:0,0,0 +g1,24465:7626635,42966505 +g1,24465:8290543,42966505 +g1,24465:8622497,42966505 +g1,24465:8954451,42966505 +g1,24465:9286405,42966505 +g1,24465:9618359,42966505 +g1,24465:10282267,42966505 +g1,24465:10946175,42966505 +g1,24465:14265714,42966505 +g1,24465:15593530,42966505 +g1,24465:15925484,42966505 +g1,24465:16257438,42966505 +g1,24465:16589392,42966505 +g1,24465:16921346,42966505 +g1,24465:17253300,42966505 +g1,24465:17585254,42966505 +g1,24465:17917208,42966505 +g1,24465:18249162,42966505 +g1,24465:18913070,42966505 +g1,24465:19245024,42966505 +g1,24465:19576978,42966505 +g1,24465:19908932,42966505 +g1,24465:20240886,42966505 +g1,24465:20572840,42966505 +g1,24465:21236748,42966505 +g1,24465:21568702,42966505 +g1,24465:21900656,42966505 +g1,24465:23228472,42966505 +g1,24465:23560426,42966505 +g1,24465:23892380,42966505 +g1,24465:24224334,42966505 +g1,24465:24556288,42966505 +g1,24465:24888242,42966505 +g1,24465:25220196,42966505 +g1,24465:25884104,42966505 +k1,24465:25884104,42966505:0 +h1,24465:29203644,42966505:0,0,0 +k1,24465:32583029,42966505:3379385 +g1,24465:32583029,42966505 +) +(1,24465:6630773,43651360:25952256,424439,9908 +h1,24465:6630773,43651360:0,0,0 +g1,24465:7626635,43651360 +g1,24465:8290543,43651360 +g1,24465:8954451,43651360 +g1,24465:9618359,43651360 +g1,24465:11278129,43651360 +h1,24465:12605945,43651360:0,0,0 +k1,24465:32583029,43651360:19977084 +g1,24465:32583029,43651360 +) +] +) +g1,24466:32583029,43661268 +g1,24466:6630773,43661268 +g1,24466:6630773,43661268 +g1,24466:32583029,43661268 +g1,24466:32583029,43661268 +) +h1,24466:6630773,43857876:0,0,0 +(1,24470:6630773,44722956:25952256,505283,126483 +h1,24469:6630773,44722956:983040,0,0 +g1,24469:8440877,44722956 +g1,24469:9843347,44722956 +g1,24469:11583327,44722956 +g1,24469:12801641,44722956 +g1,24469:14712015,44722956 +g1,24469:15902804,44722956 +g1,24469:18910906,44722956 +k1,24470:32583029,44722956:10934685 +g1,24470:32583029,44722956 +) +(1,24472:6630773,45588036:25952256,513147,134348 +h1,24471:6630773,45588036:983040,0,0 +g1,24471:9448165,45588036 +g1,24471:10515746,45588036 +g1,24471:12896669,45588036 +g1,24471:13866601,45588036 +g1,24471:15991933,45588036 +(1,24471:15991933,45588036:0,414482,115847 +r1,24474:17405334,45588036:1413401,530329,115847 +k1,24471:15991933,45588036:-1413401 +) +(1,24471:15991933,45588036:1413401,414482,115847 +k1,24471:15991933,45588036:3277 +h1,24471:17402057,45588036:0,411205,112570 +) +g1,24471:17604563,45588036 +g1,24471:18786832,45588036 +g1,24471:20797476,45588036 +g1,24471:21793623,45588036 +g1,24471:23675817,45588036 +k1,24472:32583029,45588036:7730186 +g1,24472:32583029,45588036 +) +] +(1,24474:32583029,45706769:0,0,0 +g1,24474:32583029,45706769 +) +) +] +(1,24474:6630773,47279633:25952256,0,0 +h1,24474:6630773,47279633:25952256,0,0 +) +] +(1,24474:4262630,4025873:0,0,0 +[1,24474:-473656,4025873:0,0,0 +(1,24474:-473656,-710413:0,0,0 +(1,24474:-473656,-710413:0,0,0 +g1,24474:-473656,-710413 +) +g1,24474:-473656,-710413 ) ] ) ] !35034 -}420 -Input:4563:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4564:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4565:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4566:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}421 Input:4567:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4568:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4569:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4570:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4571:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4572:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4573:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4574:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !932 -{421 -[1,24532:4262630,47279633:28320399,43253760,0 -(1,24532:4262630,4025873:0,0,0 -[1,24532:-473656,4025873:0,0,0 -(1,24532:-473656,-710413:0,0,0 -(1,24532:-473656,-644877:0,0,0 -k1,24532:-473656,-644877:-65536 +{422 +[1,24530:4262630,47279633:28320399,43253760,0 +(1,24530:4262630,4025873:0,0,0 +[1,24530:-473656,4025873:0,0,0 +(1,24530:-473656,-710413:0,0,0 +(1,24530:-473656,-644877:0,0,0 +k1,24530:-473656,-644877:-65536 ) -(1,24532:-473656,4736287:0,0,0 -k1,24532:-473656,4736287:5209943 +(1,24530:-473656,4736287:0,0,0 +k1,24530:-473656,4736287:5209943 ) -g1,24532:-473656,-710413 +g1,24530:-473656,-710413 ) ] ) -[1,24532:6630773,47279633:25952256,43253760,0 -[1,24532:6630773,4812305:25952256,786432,0 -(1,24532:6630773,4812305:25952256,505283,134348 -(1,24532:6630773,4812305:25952256,505283,134348 -g1,24532:3078558,4812305 -[1,24532:3078558,4812305:0,0,0 -(1,24532:3078558,2439708:0,1703936,0 -k1,24532:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24532:2537886,2439708:1179648,16384,0 +[1,24530:6630773,47279633:25952256,43253760,0 +[1,24530:6630773,4812305:25952256,786432,0 +(1,24530:6630773,4812305:25952256,505283,134348 +(1,24530:6630773,4812305:25952256,505283,134348 +g1,24530:3078558,4812305 +[1,24530:3078558,4812305:0,0,0 +(1,24530:3078558,2439708:0,1703936,0 +k1,24530:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24530:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24532:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24530:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24532:3078558,4812305:0,0,0 -(1,24532:3078558,2439708:0,1703936,0 -g1,24532:29030814,2439708 -g1,24532:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24532:36151628,1915420:16384,1179648,0 +[1,24530:3078558,4812305:0,0,0 +(1,24530:3078558,2439708:0,1703936,0 +g1,24530:29030814,2439708 +g1,24530:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24530:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24532:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24530:37855564,2439708:1179648,16384,0 ) ) -k1,24532:3078556,2439708:-34777008 +k1,24530:3078556,2439708:-34777008 ) ] -[1,24532:3078558,4812305:0,0,0 -(1,24532:3078558,49800853:0,16384,2228224 -k1,24532:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24532:2537886,49800853:1179648,16384,0 +[1,24530:3078558,4812305:0,0,0 +(1,24530:3078558,49800853:0,16384,2228224 +k1,24530:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24530:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24532:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24530:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24532:3078558,4812305:0,0,0 -(1,24532:3078558,49800853:0,16384,2228224 -g1,24532:29030814,49800853 -g1,24532:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24532:36151628,51504789:16384,1179648,0 +[1,24530:3078558,4812305:0,0,0 +(1,24530:3078558,49800853:0,16384,2228224 +g1,24530:29030814,49800853 +g1,24530:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24530:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24532:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24530:37855564,49800853:1179648,16384,0 ) ) -k1,24532:3078556,49800853:-34777008 +k1,24530:3078556,49800853:-34777008 ) -] -g1,24532:6630773,4812305 -k1,24532:21114230,4812305:13288080 -g1,24532:22736901,4812305 -g1,24532:23350318,4812305 -g1,24532:24759997,4812305 -g1,24532:28372341,4812305 -g1,24532:30105768,4812305 -) -) -] -[1,24532:6630773,45706769:25952256,40108032,0 -(1,24532:6630773,45706769:25952256,40108032,0 -(1,24532:6630773,45706769:0,0,0 -g1,24532:6630773,45706769 -) -[1,24532:6630773,45706769:25952256,40108032,0 -v1,24476:6630773,6254097:0,393216,0 -(1,24490:6630773,12105051:25952256,6244170,196608 -g1,24490:6630773,12105051 -g1,24490:6630773,12105051 -g1,24490:6434165,12105051 -(1,24490:6434165,12105051:0,6244170,196608 -r1,24532:32779637,12105051:26345472,6440778,196608 -k1,24490:6434165,12105051:-26345472 -) -(1,24490:6434165,12105051:26345472,6244170,196608 -[1,24490:6630773,12105051:25952256,6047562,0 -(1,24478:6630773,6488534:25952256,431045,79822 -(1,24477:6630773,6488534:0,0,0 -g1,24477:6630773,6488534 -g1,24477:6630773,6488534 -g1,24477:6303093,6488534 -(1,24477:6303093,6488534:0,0,0 -) -g1,24477:6630773,6488534 -) -g1,24478:10282266,6488534 -g1,24478:11278128,6488534 -g1,24478:15925483,6488534 -g1,24478:16589391,6488534 -h1,24478:23892377,6488534:0,0,0 -k1,24478:32583029,6488534:8690652 -g1,24478:32583029,6488534 -) -(1,24479:6630773,7173389:25952256,424439,6605 -h1,24479:6630773,7173389:0,0,0 -h1,24479:9950312,7173389:0,0,0 -k1,24479:32583028,7173389:22632716 -g1,24479:32583028,7173389 -) -(1,24489:6630773,7989316:25952256,424439,6605 -(1,24481:6630773,7989316:0,0,0 -g1,24481:6630773,7989316 -g1,24481:6630773,7989316 -g1,24481:6303093,7989316 -(1,24481:6303093,7989316:0,0,0 -) -g1,24481:6630773,7989316 -) -g1,24489:7626635,7989316 -g1,24489:8290543,7989316 -g1,24489:8954451,7989316 -g1,24489:11610083,7989316 -g1,24489:12605945,7989316 -g1,24489:13269853,7989316 -h1,24489:13601807,7989316:0,0,0 -k1,24489:32583029,7989316:18981222 -g1,24489:32583029,7989316 -) -(1,24489:6630773,8674171:25952256,398014,8257 -h1,24489:6630773,8674171:0,0,0 -g1,24489:7626635,8674171 -g1,24489:7958589,8674171 -g1,24489:8290543,8674171 -g1,24489:10946175,8674171 -h1,24489:12937899,8674171:0,0,0 -k1,24489:32583029,8674171:19645130 -g1,24489:32583029,8674171 -) -(1,24489:6630773,9359026:25952256,424439,6605 -h1,24489:6630773,9359026:0,0,0 -g1,24489:7626635,9359026 -g1,24489:7958589,9359026 -g1,24489:8290543,9359026 -g1,24489:8622497,9359026 -g1,24489:8954451,9359026 -g1,24489:10946175,9359026 -k1,24489:10946175,9359026:0 -h1,24489:13933760,9359026:0,0,0 -k1,24489:32583028,9359026:18649268 -g1,24489:32583028,9359026 -) -(1,24489:6630773,10043881:25952256,424439,79822 -h1,24489:6630773,10043881:0,0,0 -g1,24489:7626635,10043881 -g1,24489:8290543,10043881 -g1,24489:8622497,10043881 -g1,24489:8954451,10043881 -g1,24489:9286405,10043881 -g1,24489:9618359,10043881 -g1,24489:10946175,10043881 -g1,24489:11610083,10043881 -h1,24489:13933761,10043881:0,0,0 -k1,24489:32583029,10043881:18649268 -g1,24489:32583029,10043881 -) -(1,24489:6630773,10728736:25952256,424439,79822 -h1,24489:6630773,10728736:0,0,0 -g1,24489:7626635,10728736 -g1,24489:8290543,10728736 -g1,24489:8622497,10728736 -g1,24489:8954451,10728736 -g1,24489:9286405,10728736 -g1,24489:9618359,10728736 -g1,24489:10946175,10728736 -g1,24489:11610083,10728736 -h1,24489:13933761,10728736:0,0,0 -k1,24489:32583029,10728736:18649268 -g1,24489:32583029,10728736 -) -(1,24489:6630773,11413591:25952256,424439,79822 -h1,24489:6630773,11413591:0,0,0 -g1,24489:7626635,11413591 -g1,24489:8290543,11413591 -g1,24489:8622497,11413591 -g1,24489:8954451,11413591 -g1,24489:9286405,11413591 -g1,24489:9618359,11413591 -g1,24489:10282267,11413591 -g1,24489:10614221,11413591 -g1,24489:10946175,11413591 -g1,24489:11610083,11413591 -h1,24489:13933761,11413591:0,0,0 -k1,24489:32583029,11413591:18649268 -g1,24489:32583029,11413591 -) -(1,24489:6630773,12098446:25952256,424439,6605 -h1,24489:6630773,12098446:0,0,0 -g1,24489:7626635,12098446 -g1,24489:8290543,12098446 -g1,24489:8954451,12098446 -g1,24489:9950313,12098446 -g1,24489:11610083,12098446 -h1,24489:12937899,12098446:0,0,0 -k1,24489:32583029,12098446:19645130 -g1,24489:32583029,12098446 -) -] -) -g1,24490:32583029,12105051 -g1,24490:6630773,12105051 -g1,24490:6630773,12105051 -g1,24490:32583029,12105051 -g1,24490:32583029,12105051 -) -h1,24490:6630773,12301659:0,0,0 -v1,24494:6630773,12986514:0,393216,0 -(1,24508:6630773,18837468:25952256,6244170,196608 -g1,24508:6630773,18837468 -g1,24508:6630773,18837468 -g1,24508:6434165,18837468 -(1,24508:6434165,18837468:0,6244170,196608 -r1,24532:32779637,18837468:26345472,6440778,196608 -k1,24508:6434165,18837468:-26345472 -) -(1,24508:6434165,18837468:26345472,6244170,196608 -[1,24508:6630773,18837468:25952256,6047562,0 -(1,24496:6630773,13220951:25952256,431045,79822 -(1,24495:6630773,13220951:0,0,0 -g1,24495:6630773,13220951 -g1,24495:6630773,13220951 -g1,24495:6303093,13220951 -(1,24495:6303093,13220951:0,0,0 -) -g1,24495:6630773,13220951 -) -g1,24496:10282266,13220951 -g1,24496:11278128,13220951 -k1,24496:11278128,13220951:0 -h1,24496:18249160,13220951:0,0,0 -k1,24496:32583029,13220951:14333869 -g1,24496:32583029,13220951 -) -(1,24497:6630773,13905806:25952256,424439,6605 -h1,24497:6630773,13905806:0,0,0 -h1,24497:9950312,13905806:0,0,0 -k1,24497:32583028,13905806:22632716 -g1,24497:32583028,13905806 -) -(1,24507:6630773,14721733:25952256,424439,6605 -(1,24499:6630773,14721733:0,0,0 -g1,24499:6630773,14721733 -g1,24499:6630773,14721733 -g1,24499:6303093,14721733 -(1,24499:6303093,14721733:0,0,0 -) -g1,24499:6630773,14721733 -) -g1,24507:7626635,14721733 -g1,24507:8290543,14721733 -g1,24507:8954451,14721733 -g1,24507:11610083,14721733 -g1,24507:12605945,14721733 -g1,24507:13269853,14721733 -h1,24507:13601807,14721733:0,0,0 -k1,24507:32583029,14721733:18981222 -g1,24507:32583029,14721733 -) -(1,24507:6630773,15406588:25952256,398014,8257 -h1,24507:6630773,15406588:0,0,0 -g1,24507:7626635,15406588 -g1,24507:7958589,15406588 -g1,24507:8290543,15406588 -g1,24507:10946175,15406588 -h1,24507:12937899,15406588:0,0,0 -k1,24507:32583029,15406588:19645130 -g1,24507:32583029,15406588 -) -(1,24507:6630773,16091443:25952256,431045,6605 -h1,24507:6630773,16091443:0,0,0 -g1,24507:7626635,16091443 -g1,24507:7958589,16091443 -g1,24507:8290543,16091443 -g1,24507:8622497,16091443 -g1,24507:8954451,16091443 -g1,24507:10946175,16091443 -k1,24507:10946175,16091443:0 -h1,24507:12605945,16091443:0,0,0 -k1,24507:32583029,16091443:19977084 -g1,24507:32583029,16091443 -) -(1,24507:6630773,16776298:25952256,424439,9908 -h1,24507:6630773,16776298:0,0,0 -g1,24507:7626635,16776298 -g1,24507:8290543,16776298 -g1,24507:8622497,16776298 -g1,24507:8954451,16776298 -g1,24507:9286405,16776298 -g1,24507:9618359,16776298 -g1,24507:10946175,16776298 -h1,24507:12605945,16776298:0,0,0 -k1,24507:32583029,16776298:19977084 -g1,24507:32583029,16776298 -) -(1,24507:6630773,17461153:25952256,424439,9908 -h1,24507:6630773,17461153:0,0,0 -g1,24507:7626635,17461153 -g1,24507:8290543,17461153 -g1,24507:8622497,17461153 -g1,24507:8954451,17461153 -g1,24507:9286405,17461153 -g1,24507:9618359,17461153 -g1,24507:10946175,17461153 -h1,24507:12605945,17461153:0,0,0 -k1,24507:32583029,17461153:19977084 -g1,24507:32583029,17461153 -) -(1,24507:6630773,18146008:25952256,424439,9908 -h1,24507:6630773,18146008:0,0,0 -g1,24507:7626635,18146008 -g1,24507:8290543,18146008 -g1,24507:8622497,18146008 -g1,24507:8954451,18146008 -g1,24507:9286405,18146008 -g1,24507:9618359,18146008 -g1,24507:10282267,18146008 -g1,24507:10614221,18146008 -g1,24507:10946175,18146008 -h1,24507:12605945,18146008:0,0,0 -k1,24507:32583029,18146008:19977084 -g1,24507:32583029,18146008 -) -(1,24507:6630773,18830863:25952256,424439,6605 -h1,24507:6630773,18830863:0,0,0 -g1,24507:7626635,18830863 -g1,24507:8290543,18830863 -g1,24507:8954451,18830863 -g1,24507:9950313,18830863 -g1,24507:11610083,18830863 -h1,24507:12937899,18830863:0,0,0 -k1,24507:32583029,18830863:19645130 -g1,24507:32583029,18830863 -) -] -) -g1,24508:32583029,18837468 -g1,24508:6630773,18837468 -g1,24508:6630773,18837468 -g1,24508:32583029,18837468 -g1,24508:32583029,18837468 -) -h1,24508:6630773,19034076:0,0,0 -v1,24512:6630773,19899156:0,393216,0 -(1,24513:6630773,22882720:25952256,3376780,0 -g1,24513:6630773,22882720 -g1,24513:6237557,22882720 -r1,24532:6368629,22882720:131072,3376780,0 -g1,24513:6567858,22882720 -g1,24513:6764466,22882720 -[1,24513:6764466,22882720:25818563,3376780,0 -(1,24513:6764466,20171633:25818563,665693,196608 -(1,24512:6764466,20171633:0,665693,196608 -r1,24532:7868133,20171633:1103667,862301,196608 -k1,24512:6764466,20171633:-1103667 -) -(1,24512:6764466,20171633:1103667,665693,196608 -) -k1,24512:8053813,20171633:185680 -k1,24512:10188321,20171633:327680 -k1,24512:13256275,20171633:185681 -k1,24512:14461040,20171633:185680 -k1,24512:16657365,20171633:185680 -k1,24512:19621772,20171633:185680 -k1,24512:20568981,20171633:185681 -k1,24512:23517004,20171633:185680 -(1,24512:23517004,20171633:0,452978,115847 -r1,24532:24930405,20171633:1413401,568825,115847 -k1,24512:23517004,20171633:-1413401 -) -(1,24512:23517004,20171633:1413401,452978,115847 -k1,24512:23517004,20171633:3277 -h1,24512:24927128,20171633:0,411205,112570 -) -k1,24512:25116085,20171633:185680 -k1,24512:28327563,20171633:185681 -k1,24512:30211281,20171633:185680 -k1,24512:32583029,20171633:0 -) -(1,24513:6764466,21036713:25818563,513147,126483 -k1,24512:7649083,21036713:233189 -k1,24512:8901357,21036713:233189 -k1,24512:10788019,21036713:233189 -k1,24512:12004249,21036713:233190 -k1,24512:13046808,21036713:233189 -k1,24512:14798466,21036713:233189 -k1,24512:16180501,21036713:233189 -(1,24512:16180501,21036713:0,452978,115847 -r1,24532:18649038,21036713:2468537,568825,115847 -k1,24512:16180501,21036713:-2468537 -) -(1,24512:16180501,21036713:2468537,452978,115847 -k1,24512:16180501,21036713:3277 -h1,24512:18645761,21036713:0,411205,112570 -) -k1,24512:19055897,21036713:233189 -(1,24512:19055897,21036713:0,452978,115847 -r1,24532:20821010,21036713:1765113,568825,115847 -k1,24512:19055897,21036713:-1765113 -) -(1,24512:19055897,21036713:1765113,452978,115847 -k1,24512:19055897,21036713:3277 -h1,24512:20817733,21036713:0,411205,112570 -) -k1,24512:21054199,21036713:233189 -k1,24512:22478833,21036713:233189 -(1,24512:22478833,21036713:0,452978,115847 -r1,24532:24947370,21036713:2468537,568825,115847 -k1,24512:22478833,21036713:-2468537 -) -(1,24512:22478833,21036713:2468537,452978,115847 -k1,24512:22478833,21036713:3277 -h1,24512:24944093,21036713:0,411205,112570 -) -k1,24512:25180559,21036713:233189 -k1,24512:26099911,21036713:233190 -k1,24512:27914484,21036713:233189 -k1,24512:28763711,21036713:233189 -k1,24512:30455731,21036713:233189 -k1,24513:32583029,21036713:0 -) -(1,24513:6764466,21901793:25818563,513147,126483 -k1,24512:8801139,21901793:239676 -k1,24512:9518572,21901793:239676 -k1,24512:10928722,21901793:239677 -k1,24512:12159958,21901793:239676 -k1,24512:14322460,21901793:239676 -k1,24512:15847952,21901793:239676 -k1,24512:17180113,21901793:239676 -(1,24512:17180113,21901793:0,452978,115847 -r1,24532:21407209,21901793:4227096,568825,115847 -k1,24512:17180113,21901793:-4227096 -) -(1,24512:17180113,21901793:4227096,452978,115847 -k1,24512:17180113,21901793:3277 -h1,24512:21403932,21901793:0,411205,112570 -) -k1,24512:21820555,21901793:239676 -(1,24512:21820555,21901793:0,452978,115847 -r1,24532:23937380,21901793:2116825,568825,115847 -k1,24512:21820555,21901793:-2116825 -) -(1,24512:21820555,21901793:2116825,452978,115847 -k1,24512:21820555,21901793:3277 -h1,24512:23934103,21901793:0,411205,112570 -) -k1,24512:24350727,21901793:239677 -(1,24512:24350727,21901793:0,452978,115847 -r1,24532:26115840,21901793:1765113,568825,115847 -k1,24512:24350727,21901793:-1765113 -) -(1,24512:24350727,21901793:1765113,452978,115847 -k1,24512:24350727,21901793:3277 -h1,24512:26112563,21901793:0,411205,112570 -) -k1,24512:26529186,21901793:239676 -(1,24512:26529186,21901793:0,452978,115847 -r1,24532:30052858,21901793:3523672,568825,115847 -k1,24512:26529186,21901793:-3523672 -) -(1,24512:26529186,21901793:3523672,452978,115847 -k1,24512:26529186,21901793:3277 -h1,24512:30049581,21901793:0,411205,112570 -) -k1,24512:30466204,21901793:239676 -(1,24512:30466204,21901793:0,452978,115847 -r1,24532:32583029,21901793:2116825,568825,115847 -k1,24512:30466204,21901793:-2116825 -) -(1,24512:30466204,21901793:2116825,452978,115847 -k1,24512:30466204,21901793:3277 -h1,24512:32579752,21901793:0,411205,112570 -) -k1,24512:32583029,21901793:0 -) -(1,24513:6764466,22766873:25818563,505283,115847 -g1,24512:8155140,22766873 -(1,24512:8155140,22766873:0,452978,115847 -r1,24532:10271965,22766873:2116825,568825,115847 -k1,24512:8155140,22766873:-2116825 -) -(1,24512:8155140,22766873:2116825,452978,115847 -k1,24512:8155140,22766873:3277 -h1,24512:10268688,22766873:0,411205,112570 -) -k1,24513:32583029,22766873:22258636 -g1,24513:32583029,22766873 -) -] -g1,24513:32583029,22882720 -) -h1,24513:6630773,22882720:0,0,0 -v1,24516:6630773,23747800:0,393216,0 -(1,24517:6630773,25019705:25952256,1665121,0 -g1,24517:6630773,25019705 -g1,24517:6237557,25019705 -r1,24532:6368629,25019705:131072,1665121,0 -g1,24517:6567858,25019705 -g1,24517:6764466,25019705 -[1,24517:6764466,25019705:25818563,1665121,0 -(1,24517:6764466,24020277:25818563,665693,196608 -(1,24516:6764466,24020277:0,665693,196608 -r1,24532:7868133,24020277:1103667,862301,196608 -k1,24516:6764466,24020277:-1103667 -) -(1,24516:6764466,24020277:1103667,665693,196608 -) -k1,24516:8011217,24020277:143084 -k1,24516:10145725,24020277:327680 -k1,24516:10766567,24020277:143085 -k1,24516:12080124,24020277:143084 -k1,24516:13315693,24020277:143084 -k1,24516:14141663,24020277:143085 -k1,24516:15759962,24020277:143084 -k1,24516:16519084,24020277:143084 -k1,24516:17681254,24020277:143085 -k1,24516:19188142,24020277:143084 -k1,24516:20844452,24020277:143084 -k1,24516:22689507,24020277:143085 -k1,24516:25916715,24020277:143084 -k1,24516:28818865,24020277:143084 -k1,24516:29644835,24020277:143085 -k1,24516:30143779,24020277:143084 -k1,24517:32583029,24020277:0 -) -(1,24517:6764466,24885357:25818563,513147,134348 -g1,24516:9580548,24885357 -g1,24516:12622073,24885357 -g1,24516:13967527,24885357 -g1,24516:16505080,24885357 -g1,24516:18091051,24885357 -g1,24516:19237931,24885357 -g1,24516:21129300,24885357 -g1,24516:22348925,24885357 -g1,24516:23861496,24885357 -g1,24516:25252170,24885357 -g1,24516:27633093,24885357 -g1,24516:29471377,24885357 -g1,24516:30938072,24885357 -k1,24517:32583029,24885357:1177686 -g1,24517:32583029,24885357 -) -] -g1,24517:32583029,25019705 -) -h1,24517:6630773,25019705:0,0,0 -(1,24520:6630773,27850865:25952256,32768,229376 -(1,24520:6630773,27850865:0,32768,229376 -(1,24520:6630773,27850865:5505024,32768,229376 -r1,24532:12135797,27850865:5505024,262144,229376 -) -k1,24520:6630773,27850865:-5505024 -) -(1,24520:6630773,27850865:25952256,32768,0 -r1,24532:32583029,27850865:25952256,32768,0 -) -) -(1,24520:6630773,29482717:25952256,606339,14155 -(1,24520:6630773,29482717:2954625,582746,14155 -g1,24520:6630773,29482717 -g1,24520:9585398,29482717 -) -g1,24520:12841227,29482717 -k1,24520:32583029,29482717:17917280 -g1,24520:32583029,29482717 -) -(1,24524:6630773,30741013:25952256,513147,134348 -k1,24523:7483875,30741013:225267 -k1,24523:9401283,30741013:225268 -k1,24523:11534303,30741013:225267 -k1,24523:14740148,30741013:225268 -k1,24523:18473557,30741013:225267 -k1,24523:19890269,30741013:225267 -k1,24523:24273141,30741013:225268 -k1,24523:26888480,30741013:225241 -k1,24523:27645244,30741013:225267 -k1,24523:28226372,30741013:225268 -k1,24523:29805613,30741013:225267 -k1,24523:32583029,30741013:0 -) -(1,24524:6630773,31606093:25952256,513147,134348 -k1,24523:8994247,31606093:183091 -k1,24523:10124989,31606093:183091 -k1,24523:11327166,31606093:183092 -k1,24523:14463309,31606093:183091 -k1,24523:15305692,31606093:183091 -k1,24523:17051817,31606093:183091 -k1,24523:17704801,31606093:183091 -k1,24523:18419389,31606093:183091 -k1,24523:19888297,31606093:183092 -k1,24523:21584614,31606093:183091 -k1,24523:22383743,31606093:183091 -k1,24523:24268804,31606093:183091 -k1,24523:27151323,31606093:183091 -k1,24523:27950453,31606093:183092 -k1,24523:30019015,31606093:183091 -k1,24523:31591469,31606093:183091 -k1,24523:32583029,31606093:0 -) -(1,24524:6630773,32471173:25952256,513147,134348 -k1,24523:10230830,32471173:200049 -k1,24523:11082306,32471173:200048 -k1,24523:11638215,32471173:200049 -k1,24523:13122769,32471173:200048 -k1,24523:13982110,32471173:200049 -k1,24523:17242689,32471173:200048 -k1,24523:18588963,32471173:200049 -k1,24523:20182963,32471173:200049 -k1,24523:21772374,32471173:200048 -k1,24523:23384724,32471173:200049 -k1,24523:25152393,32471173:200048 -k1,24523:28765557,32471173:200049 -k1,24523:32583029,32471173:0 -) -(1,24524:6630773,33336253:25952256,513147,134348 -k1,24523:8300586,33336253:156587 -k1,24523:9108601,33336253:156587 -k1,24523:11049079,33336253:156588 -k1,24523:12689401,33336253:156587 -k1,24523:16459643,33336253:156587 -k1,24523:19006286,33336253:156545 -k1,24523:20476215,33336253:156587 -k1,24523:21624362,33336253:156587 -k1,24523:23802735,33336253:156587 -k1,24523:25031491,33336253:156587 -k1,24523:26280563,33336253:156587 -k1,24523:26793011,33336253:156588 -k1,24523:29129981,33336253:156587 -k1,24523:30571074,33336253:156587 -k1,24523:32583029,33336253:0 -) -(1,24524:6630773,34201333:25952256,513147,134348 -k1,24523:7851507,34201333:201649 -k1,24523:10400656,34201333:201649 -k1,24523:11261597,34201333:201649 -k1,24523:14432683,34201333:201650 -k1,24523:17946522,34201333:201649 -k1,24523:19599793,34201333:201649 -k1,24523:22312782,34201333:201649 -k1,24523:25194854,34201333:201649 -k1,24523:26790454,34201333:201649 -k1,24523:28011189,34201333:201650 -k1,24523:29602201,34201333:201649 -k1,24523:31409482,34201333:201649 -k1,24523:32227169,34201333:201649 -k1,24523:32583029,34201333:0 -) -(1,24524:6630773,35066413:25952256,513147,134348 -k1,24523:11382003,35066413:158466 -k1,24523:12731914,35066413:158466 -k1,24523:17033565,35066413:158465 -k1,24523:19546084,35066413:158466 -k1,24523:21590021,35066413:158466 -k1,24523:22279984,35066413:158466 -k1,24523:23968716,35066413:158466 -k1,24523:25074832,35066413:158465 -k1,24523:28186350,35066413:158466 -k1,24523:29004108,35066413:158466 -k1,24523:32583029,35066413:0 -) -(1,24524:6630773,35931493:25952256,505283,134348 -g1,24523:8400900,35931493 -g1,24523:9989492,35931493 -g1,24523:11453566,35931493 -g1,24523:14777552,35931493 -g1,24523:15786151,35931493 -g1,24523:16341240,35931493 -g1,24523:18666457,35931493 -g1,24523:19548571,35931493 -g1,24523:24809146,35931493 -k1,24524:32583029,35931493:6436949 -g1,24524:32583029,35931493 -) -(1,24526:6630773,36796573:25952256,513147,126483 -h1,24525:6630773,36796573:983040,0,0 -g1,24525:10635678,36796573 -g1,24525:13924930,36796573 -g1,24525:14810321,36796573 -k1,24526:32583029,36796573:15370159 -g1,24526:32583029,36796573 -) -(1,24528:7202902,38185941:24807998,513147,134348 -(1,24526:7202902,38185941:0,0,0 -g1,24526:7202902,38185941 -g1,24526:5892182,38185941 -g1,24526:5564502,38185941 -(1,24526:5564502,38185941:1310720,0,0 -k1,24526:6875222,38185941:1310720 -) -g1,24526:7202902,38185941 -) -k1,24527:7202902,38185941:0 -k1,24527:10007779,38185941:414779 -k1,24527:10954272,38185941:414996 -k1,24527:11725128,38185941:414996 -k1,24527:13074666,38185941:414995 -k1,24527:14148954,38185941:414996 -k1,24527:17323016,38185941:414996 -k1,24527:20356175,38185941:414996 -k1,24527:22545886,38185941:414996 -k1,24527:25644580,38185941:414995 -k1,24527:27251021,38185941:414996 -k1,24527:32010900,38185941:0 -) -(1,24528:7202902,39051021:24807998,513147,126483 -k1,24527:14278460,39051021:168063 -k1,24527:15835887,39051021:168064 -k1,24527:18514634,39051021:168063 -k1,24527:19967203,39051021:168063 -k1,24527:22661680,39051021:168064 -k1,24527:23848828,39051021:168063 -k1,24527:26783166,39051021:168063 -k1,24527:29155861,39051021:168064 -k1,24527:30515369,39051021:168063 -k1,24528:32010900,39051021:0 -) -(1,24528:7202902,39916101:24807998,513147,134348 -g1,24527:8392380,39916101 -g1,24527:9250901,39916101 -g1,24527:13983911,39916101 -g1,24527:17032645,39916101 -k1,24528:32010900,39916101:13536463 -g1,24528:32010900,39916101 -) -(1,24531:6630773,41305469:25952256,513147,134348 -h1,24530:6630773,41305469:983040,0,0 -k1,24530:9303691,41305469:227770 -k1,24530:11921530,41305469:227741 -k1,24530:13462642,41305469:227770 -k1,24530:14438178,41305469:227770 -k1,24530:17958477,41305469:227770 -k1,24530:19772218,41305469:227770 -k1,24530:23194213,41305469:227770 -k1,24530:24441067,41305469:227769 -k1,24530:26058200,41305469:227770 -k1,24530:27853591,41305469:227770 -k1,24530:31274275,41305469:227770 -k1,24531:32583029,41305469:0 -) -(1,24531:6630773,42170549:25952256,513147,134348 -k1,24530:8680537,42170549:237038 -k1,24530:9449072,42170549:237038 -k1,24530:12895407,42170549:237037 -k1,24530:13818607,42170549:237038 -k1,24530:14513742,42170549:237038 -k1,24530:16762735,42170549:237038 -k1,24530:21393962,42170549:237038 -k1,24530:22247037,42170549:237037 -k1,24530:22898880,42170549:237000 -k1,24530:24529869,42170549:237038 -k1,24530:26156270,42170549:237038 -k1,24530:27658153,42170549:237038 -k1,24530:28941146,42170549:237038 -k1,24530:30154014,42170549:237037 -k1,24530:31042480,42170549:237038 -k1,24530:31966991,42170549:237038 -k1,24530:32583029,42170549:0 -) -(1,24531:6630773,43035629:25952256,513147,134348 -k1,24530:7265816,43035629:279183 -k1,24530:11125232,43035629:279184 -k1,24530:13074272,43035629:279183 -k1,24530:16104657,43035629:279184 -k1,24530:18786390,43035629:279183 -k1,24530:19597070,43035629:279183 -k1,24530:22506214,43035629:279184 -k1,24530:24520790,43035629:279183 -k1,24530:27825771,43035629:279184 -k1,24530:29672575,43035629:279183 -k1,24530:32583029,43035629:0 -) -(1,24531:6630773,43900709:25952256,513147,126483 -k1,24530:8997660,43900709:261216 -k1,24530:9941761,43900709:261216 -k1,24530:13528927,43900709:261215 -k1,24530:14608032,43900709:261216 -k1,24530:15225108,43900709:261216 -k1,24530:19569217,43900709:261216 -k1,24530:20489724,43900709:261215 -k1,24530:21954181,43900709:261216 -k1,24530:25363091,43900709:261216 -k1,24530:28317837,43900709:261216 -k1,24530:29230480,43900709:261215 -k1,24530:31193666,43900709:261216 -k1,24530:32583029,43900709:0 -) -(1,24531:6630773,44765789:25952256,513147,134348 -k1,24530:7811022,44765789:197209 -k1,24530:10410781,44765789:197209 -k1,24530:14186256,44765789:197209 -k1,24530:16786014,44765789:197208 -k1,24530:17339083,44765789:197209 -k1,24530:19926388,44765789:197207 -k1,24530:21106637,44765789:197209 -k1,24530:21835343,44765789:197209 -k1,24530:23610003,44765789:197208 -k1,24530:24423250,44765789:197209 -k1,24530:27291706,44765789:197209 -k1,24530:30899409,44765789:197209 -k1,24531:32583029,44765789:0 -) -] -(1,24532:32583029,45706769:0,0,0 -g1,24532:32583029,45706769 -) -) -] -(1,24532:6630773,47279633:25952256,0,0 -h1,24532:6630773,47279633:25952256,0,0 -) -] -(1,24532:4262630,4025873:0,0,0 -[1,24532:-473656,4025873:0,0,0 -(1,24532:-473656,-710413:0,0,0 -(1,24532:-473656,-710413:0,0,0 -g1,24532:-473656,-710413 -) -g1,24532:-473656,-710413 +] +g1,24530:6630773,4812305 +k1,24530:21114230,4812305:13288080 +g1,24530:22736901,4812305 +g1,24530:23350318,4812305 +g1,24530:24759997,4812305 +g1,24530:28372341,4812305 +g1,24530:30105768,4812305 +) +) +] +[1,24530:6630773,45706769:25952256,40108032,0 +(1,24530:6630773,45706769:25952256,40108032,0 +(1,24530:6630773,45706769:0,0,0 +g1,24530:6630773,45706769 +) +[1,24530:6630773,45706769:25952256,40108032,0 +v1,24474:6630773,6254097:0,393216,0 +(1,24488:6630773,12105051:25952256,6244170,196608 +g1,24488:6630773,12105051 +g1,24488:6630773,12105051 +g1,24488:6434165,12105051 +(1,24488:6434165,12105051:0,6244170,196608 +r1,24530:32779637,12105051:26345472,6440778,196608 +k1,24488:6434165,12105051:-26345472 +) +(1,24488:6434165,12105051:26345472,6244170,196608 +[1,24488:6630773,12105051:25952256,6047562,0 +(1,24476:6630773,6488534:25952256,431045,79822 +(1,24475:6630773,6488534:0,0,0 +g1,24475:6630773,6488534 +g1,24475:6630773,6488534 +g1,24475:6303093,6488534 +(1,24475:6303093,6488534:0,0,0 +) +g1,24475:6630773,6488534 +) +g1,24476:10282266,6488534 +g1,24476:11278128,6488534 +g1,24476:15925483,6488534 +g1,24476:16589391,6488534 +h1,24476:23892377,6488534:0,0,0 +k1,24476:32583029,6488534:8690652 +g1,24476:32583029,6488534 +) +(1,24477:6630773,7173389:25952256,424439,6605 +h1,24477:6630773,7173389:0,0,0 +h1,24477:9950312,7173389:0,0,0 +k1,24477:32583028,7173389:22632716 +g1,24477:32583028,7173389 +) +(1,24487:6630773,7989316:25952256,424439,6605 +(1,24479:6630773,7989316:0,0,0 +g1,24479:6630773,7989316 +g1,24479:6630773,7989316 +g1,24479:6303093,7989316 +(1,24479:6303093,7989316:0,0,0 +) +g1,24479:6630773,7989316 +) +g1,24487:7626635,7989316 +g1,24487:8290543,7989316 +g1,24487:8954451,7989316 +g1,24487:11610083,7989316 +g1,24487:12605945,7989316 +g1,24487:13269853,7989316 +h1,24487:13601807,7989316:0,0,0 +k1,24487:32583029,7989316:18981222 +g1,24487:32583029,7989316 +) +(1,24487:6630773,8674171:25952256,398014,8257 +h1,24487:6630773,8674171:0,0,0 +g1,24487:7626635,8674171 +g1,24487:7958589,8674171 +g1,24487:8290543,8674171 +g1,24487:10946175,8674171 +h1,24487:12937899,8674171:0,0,0 +k1,24487:32583029,8674171:19645130 +g1,24487:32583029,8674171 +) +(1,24487:6630773,9359026:25952256,424439,6605 +h1,24487:6630773,9359026:0,0,0 +g1,24487:7626635,9359026 +g1,24487:7958589,9359026 +g1,24487:8290543,9359026 +g1,24487:8622497,9359026 +g1,24487:8954451,9359026 +g1,24487:10946175,9359026 +k1,24487:10946175,9359026:0 +h1,24487:13933760,9359026:0,0,0 +k1,24487:32583028,9359026:18649268 +g1,24487:32583028,9359026 +) +(1,24487:6630773,10043881:25952256,424439,79822 +h1,24487:6630773,10043881:0,0,0 +g1,24487:7626635,10043881 +g1,24487:8290543,10043881 +g1,24487:8622497,10043881 +g1,24487:8954451,10043881 +g1,24487:9286405,10043881 +g1,24487:9618359,10043881 +g1,24487:10946175,10043881 +g1,24487:11610083,10043881 +h1,24487:13933761,10043881:0,0,0 +k1,24487:32583029,10043881:18649268 +g1,24487:32583029,10043881 +) +(1,24487:6630773,10728736:25952256,424439,79822 +h1,24487:6630773,10728736:0,0,0 +g1,24487:7626635,10728736 +g1,24487:8290543,10728736 +g1,24487:8622497,10728736 +g1,24487:8954451,10728736 +g1,24487:9286405,10728736 +g1,24487:9618359,10728736 +g1,24487:10946175,10728736 +g1,24487:11610083,10728736 +h1,24487:13933761,10728736:0,0,0 +k1,24487:32583029,10728736:18649268 +g1,24487:32583029,10728736 +) +(1,24487:6630773,11413591:25952256,424439,79822 +h1,24487:6630773,11413591:0,0,0 +g1,24487:7626635,11413591 +g1,24487:8290543,11413591 +g1,24487:8622497,11413591 +g1,24487:8954451,11413591 +g1,24487:9286405,11413591 +g1,24487:9618359,11413591 +g1,24487:10282267,11413591 +g1,24487:10614221,11413591 +g1,24487:10946175,11413591 +g1,24487:11610083,11413591 +h1,24487:13933761,11413591:0,0,0 +k1,24487:32583029,11413591:18649268 +g1,24487:32583029,11413591 +) +(1,24487:6630773,12098446:25952256,424439,6605 +h1,24487:6630773,12098446:0,0,0 +g1,24487:7626635,12098446 +g1,24487:8290543,12098446 +g1,24487:8954451,12098446 +g1,24487:9950313,12098446 +g1,24487:11610083,12098446 +h1,24487:12937899,12098446:0,0,0 +k1,24487:32583029,12098446:19645130 +g1,24487:32583029,12098446 +) +] +) +g1,24488:32583029,12105051 +g1,24488:6630773,12105051 +g1,24488:6630773,12105051 +g1,24488:32583029,12105051 +g1,24488:32583029,12105051 +) +h1,24488:6630773,12301659:0,0,0 +v1,24492:6630773,12986514:0,393216,0 +(1,24506:6630773,18837468:25952256,6244170,196608 +g1,24506:6630773,18837468 +g1,24506:6630773,18837468 +g1,24506:6434165,18837468 +(1,24506:6434165,18837468:0,6244170,196608 +r1,24530:32779637,18837468:26345472,6440778,196608 +k1,24506:6434165,18837468:-26345472 +) +(1,24506:6434165,18837468:26345472,6244170,196608 +[1,24506:6630773,18837468:25952256,6047562,0 +(1,24494:6630773,13220951:25952256,431045,79822 +(1,24493:6630773,13220951:0,0,0 +g1,24493:6630773,13220951 +g1,24493:6630773,13220951 +g1,24493:6303093,13220951 +(1,24493:6303093,13220951:0,0,0 +) +g1,24493:6630773,13220951 +) +g1,24494:10282266,13220951 +g1,24494:11278128,13220951 +k1,24494:11278128,13220951:0 +h1,24494:18249160,13220951:0,0,0 +k1,24494:32583029,13220951:14333869 +g1,24494:32583029,13220951 +) +(1,24495:6630773,13905806:25952256,424439,6605 +h1,24495:6630773,13905806:0,0,0 +h1,24495:9950312,13905806:0,0,0 +k1,24495:32583028,13905806:22632716 +g1,24495:32583028,13905806 +) +(1,24505:6630773,14721733:25952256,424439,6605 +(1,24497:6630773,14721733:0,0,0 +g1,24497:6630773,14721733 +g1,24497:6630773,14721733 +g1,24497:6303093,14721733 +(1,24497:6303093,14721733:0,0,0 +) +g1,24497:6630773,14721733 +) +g1,24505:7626635,14721733 +g1,24505:8290543,14721733 +g1,24505:8954451,14721733 +g1,24505:11610083,14721733 +g1,24505:12605945,14721733 +g1,24505:13269853,14721733 +h1,24505:13601807,14721733:0,0,0 +k1,24505:32583029,14721733:18981222 +g1,24505:32583029,14721733 +) +(1,24505:6630773,15406588:25952256,398014,8257 +h1,24505:6630773,15406588:0,0,0 +g1,24505:7626635,15406588 +g1,24505:7958589,15406588 +g1,24505:8290543,15406588 +g1,24505:10946175,15406588 +h1,24505:12937899,15406588:0,0,0 +k1,24505:32583029,15406588:19645130 +g1,24505:32583029,15406588 +) +(1,24505:6630773,16091443:25952256,431045,6605 +h1,24505:6630773,16091443:0,0,0 +g1,24505:7626635,16091443 +g1,24505:7958589,16091443 +g1,24505:8290543,16091443 +g1,24505:8622497,16091443 +g1,24505:8954451,16091443 +g1,24505:10946175,16091443 +k1,24505:10946175,16091443:0 +h1,24505:12605945,16091443:0,0,0 +k1,24505:32583029,16091443:19977084 +g1,24505:32583029,16091443 +) +(1,24505:6630773,16776298:25952256,424439,9908 +h1,24505:6630773,16776298:0,0,0 +g1,24505:7626635,16776298 +g1,24505:8290543,16776298 +g1,24505:8622497,16776298 +g1,24505:8954451,16776298 +g1,24505:9286405,16776298 +g1,24505:9618359,16776298 +g1,24505:10946175,16776298 +h1,24505:12605945,16776298:0,0,0 +k1,24505:32583029,16776298:19977084 +g1,24505:32583029,16776298 +) +(1,24505:6630773,17461153:25952256,424439,9908 +h1,24505:6630773,17461153:0,0,0 +g1,24505:7626635,17461153 +g1,24505:8290543,17461153 +g1,24505:8622497,17461153 +g1,24505:8954451,17461153 +g1,24505:9286405,17461153 +g1,24505:9618359,17461153 +g1,24505:10946175,17461153 +h1,24505:12605945,17461153:0,0,0 +k1,24505:32583029,17461153:19977084 +g1,24505:32583029,17461153 +) +(1,24505:6630773,18146008:25952256,424439,9908 +h1,24505:6630773,18146008:0,0,0 +g1,24505:7626635,18146008 +g1,24505:8290543,18146008 +g1,24505:8622497,18146008 +g1,24505:8954451,18146008 +g1,24505:9286405,18146008 +g1,24505:9618359,18146008 +g1,24505:10282267,18146008 +g1,24505:10614221,18146008 +g1,24505:10946175,18146008 +h1,24505:12605945,18146008:0,0,0 +k1,24505:32583029,18146008:19977084 +g1,24505:32583029,18146008 +) +(1,24505:6630773,18830863:25952256,424439,6605 +h1,24505:6630773,18830863:0,0,0 +g1,24505:7626635,18830863 +g1,24505:8290543,18830863 +g1,24505:8954451,18830863 +g1,24505:9950313,18830863 +g1,24505:11610083,18830863 +h1,24505:12937899,18830863:0,0,0 +k1,24505:32583029,18830863:19645130 +g1,24505:32583029,18830863 +) +] +) +g1,24506:32583029,18837468 +g1,24506:6630773,18837468 +g1,24506:6630773,18837468 +g1,24506:32583029,18837468 +g1,24506:32583029,18837468 +) +h1,24506:6630773,19034076:0,0,0 +v1,24510:6630773,19899156:0,393216,0 +(1,24511:6630773,22882720:25952256,3376780,0 +g1,24511:6630773,22882720 +g1,24511:6237557,22882720 +r1,24530:6368629,22882720:131072,3376780,0 +g1,24511:6567858,22882720 +g1,24511:6764466,22882720 +[1,24511:6764466,22882720:25818563,3376780,0 +(1,24511:6764466,20171633:25818563,665693,196608 +(1,24510:6764466,20171633:0,665693,196608 +r1,24530:7868133,20171633:1103667,862301,196608 +k1,24510:6764466,20171633:-1103667 +) +(1,24510:6764466,20171633:1103667,665693,196608 +) +k1,24510:8053813,20171633:185680 +k1,24510:10188321,20171633:327680 +k1,24510:13256275,20171633:185681 +k1,24510:14461040,20171633:185680 +k1,24510:16657365,20171633:185680 +k1,24510:19621772,20171633:185680 +k1,24510:20568981,20171633:185681 +k1,24510:23517004,20171633:185680 +(1,24510:23517004,20171633:0,452978,115847 +r1,24530:24930405,20171633:1413401,568825,115847 +k1,24510:23517004,20171633:-1413401 +) +(1,24510:23517004,20171633:1413401,452978,115847 +k1,24510:23517004,20171633:3277 +h1,24510:24927128,20171633:0,411205,112570 +) +k1,24510:25116085,20171633:185680 +k1,24510:28327563,20171633:185681 +k1,24510:30211281,20171633:185680 +k1,24510:32583029,20171633:0 +) +(1,24511:6764466,21036713:25818563,513147,126483 +k1,24510:7649083,21036713:233189 +k1,24510:8901357,21036713:233189 +k1,24510:10788019,21036713:233189 +k1,24510:12004249,21036713:233190 +k1,24510:13046808,21036713:233189 +k1,24510:14798466,21036713:233189 +k1,24510:16180501,21036713:233189 +(1,24510:16180501,21036713:0,452978,115847 +r1,24530:18649038,21036713:2468537,568825,115847 +k1,24510:16180501,21036713:-2468537 +) +(1,24510:16180501,21036713:2468537,452978,115847 +k1,24510:16180501,21036713:3277 +h1,24510:18645761,21036713:0,411205,112570 +) +k1,24510:19055897,21036713:233189 +(1,24510:19055897,21036713:0,452978,115847 +r1,24530:20821010,21036713:1765113,568825,115847 +k1,24510:19055897,21036713:-1765113 +) +(1,24510:19055897,21036713:1765113,452978,115847 +k1,24510:19055897,21036713:3277 +h1,24510:20817733,21036713:0,411205,112570 +) +k1,24510:21054199,21036713:233189 +k1,24510:22478833,21036713:233189 +(1,24510:22478833,21036713:0,452978,115847 +r1,24530:24947370,21036713:2468537,568825,115847 +k1,24510:22478833,21036713:-2468537 +) +(1,24510:22478833,21036713:2468537,452978,115847 +k1,24510:22478833,21036713:3277 +h1,24510:24944093,21036713:0,411205,112570 +) +k1,24510:25180559,21036713:233189 +k1,24510:26099911,21036713:233190 +k1,24510:27914484,21036713:233189 +k1,24510:28763711,21036713:233189 +k1,24510:30455731,21036713:233189 +k1,24511:32583029,21036713:0 +) +(1,24511:6764466,21901793:25818563,513147,126483 +k1,24510:8801139,21901793:239676 +k1,24510:9518572,21901793:239676 +k1,24510:10928722,21901793:239677 +k1,24510:12159958,21901793:239676 +k1,24510:14322460,21901793:239676 +k1,24510:15847952,21901793:239676 +k1,24510:17180113,21901793:239676 +(1,24510:17180113,21901793:0,452978,115847 +r1,24530:21407209,21901793:4227096,568825,115847 +k1,24510:17180113,21901793:-4227096 +) +(1,24510:17180113,21901793:4227096,452978,115847 +k1,24510:17180113,21901793:3277 +h1,24510:21403932,21901793:0,411205,112570 +) +k1,24510:21820555,21901793:239676 +(1,24510:21820555,21901793:0,452978,115847 +r1,24530:23937380,21901793:2116825,568825,115847 +k1,24510:21820555,21901793:-2116825 +) +(1,24510:21820555,21901793:2116825,452978,115847 +k1,24510:21820555,21901793:3277 +h1,24510:23934103,21901793:0,411205,112570 +) +k1,24510:24350727,21901793:239677 +(1,24510:24350727,21901793:0,452978,115847 +r1,24530:26115840,21901793:1765113,568825,115847 +k1,24510:24350727,21901793:-1765113 +) +(1,24510:24350727,21901793:1765113,452978,115847 +k1,24510:24350727,21901793:3277 +h1,24510:26112563,21901793:0,411205,112570 +) +k1,24510:26529186,21901793:239676 +(1,24510:26529186,21901793:0,452978,115847 +r1,24530:30052858,21901793:3523672,568825,115847 +k1,24510:26529186,21901793:-3523672 +) +(1,24510:26529186,21901793:3523672,452978,115847 +k1,24510:26529186,21901793:3277 +h1,24510:30049581,21901793:0,411205,112570 +) +k1,24510:30466204,21901793:239676 +(1,24510:30466204,21901793:0,452978,115847 +r1,24530:32583029,21901793:2116825,568825,115847 +k1,24510:30466204,21901793:-2116825 +) +(1,24510:30466204,21901793:2116825,452978,115847 +k1,24510:30466204,21901793:3277 +h1,24510:32579752,21901793:0,411205,112570 +) +k1,24510:32583029,21901793:0 +) +(1,24511:6764466,22766873:25818563,505283,115847 +g1,24510:8155140,22766873 +(1,24510:8155140,22766873:0,452978,115847 +r1,24530:10271965,22766873:2116825,568825,115847 +k1,24510:8155140,22766873:-2116825 +) +(1,24510:8155140,22766873:2116825,452978,115847 +k1,24510:8155140,22766873:3277 +h1,24510:10268688,22766873:0,411205,112570 +) +k1,24511:32583029,22766873:22258636 +g1,24511:32583029,22766873 +) +] +g1,24511:32583029,22882720 +) +h1,24511:6630773,22882720:0,0,0 +v1,24514:6630773,23747800:0,393216,0 +(1,24515:6630773,25019705:25952256,1665121,0 +g1,24515:6630773,25019705 +g1,24515:6237557,25019705 +r1,24530:6368629,25019705:131072,1665121,0 +g1,24515:6567858,25019705 +g1,24515:6764466,25019705 +[1,24515:6764466,25019705:25818563,1665121,0 +(1,24515:6764466,24020277:25818563,665693,196608 +(1,24514:6764466,24020277:0,665693,196608 +r1,24530:7868133,24020277:1103667,862301,196608 +k1,24514:6764466,24020277:-1103667 +) +(1,24514:6764466,24020277:1103667,665693,196608 +) +k1,24514:8011217,24020277:143084 +k1,24514:10145725,24020277:327680 +k1,24514:10766567,24020277:143085 +k1,24514:12080124,24020277:143084 +k1,24514:13315693,24020277:143084 +k1,24514:14141663,24020277:143085 +k1,24514:15759962,24020277:143084 +k1,24514:16519084,24020277:143084 +k1,24514:17681254,24020277:143085 +k1,24514:19188142,24020277:143084 +k1,24514:20844452,24020277:143084 +k1,24514:22689507,24020277:143085 +k1,24514:25916715,24020277:143084 +k1,24514:28818865,24020277:143084 +k1,24514:29644835,24020277:143085 +k1,24514:30143779,24020277:143084 +k1,24515:32583029,24020277:0 +) +(1,24515:6764466,24885357:25818563,513147,134348 +g1,24514:9580548,24885357 +g1,24514:12622073,24885357 +g1,24514:13967527,24885357 +g1,24514:16505080,24885357 +g1,24514:18091051,24885357 +g1,24514:19237931,24885357 +g1,24514:21129300,24885357 +g1,24514:22348925,24885357 +g1,24514:23861496,24885357 +g1,24514:25252170,24885357 +g1,24514:27633093,24885357 +g1,24514:29471377,24885357 +g1,24514:30938072,24885357 +k1,24515:32583029,24885357:1177686 +g1,24515:32583029,24885357 +) +] +g1,24515:32583029,25019705 +) +h1,24515:6630773,25019705:0,0,0 +(1,24518:6630773,27850865:25952256,32768,229376 +(1,24518:6630773,27850865:0,32768,229376 +(1,24518:6630773,27850865:5505024,32768,229376 +r1,24530:12135797,27850865:5505024,262144,229376 +) +k1,24518:6630773,27850865:-5505024 +) +(1,24518:6630773,27850865:25952256,32768,0 +r1,24530:32583029,27850865:25952256,32768,0 +) +) +(1,24518:6630773,29482717:25952256,606339,14155 +(1,24518:6630773,29482717:2954625,582746,14155 +g1,24518:6630773,29482717 +g1,24518:9585398,29482717 +) +g1,24518:12841227,29482717 +k1,24518:32583029,29482717:17917280 +g1,24518:32583029,29482717 +) +(1,24522:6630773,30741013:25952256,513147,134348 +k1,24521:7483875,30741013:225267 +k1,24521:9401283,30741013:225268 +k1,24521:11534303,30741013:225267 +k1,24521:14740148,30741013:225268 +k1,24521:18473557,30741013:225267 +k1,24521:19890269,30741013:225267 +k1,24521:24273141,30741013:225268 +k1,24521:26888480,30741013:225241 +k1,24521:27645244,30741013:225267 +k1,24521:28226372,30741013:225268 +k1,24521:29805613,30741013:225267 +k1,24521:32583029,30741013:0 +) +(1,24522:6630773,31606093:25952256,513147,134348 +k1,24521:8994247,31606093:183091 +k1,24521:10124989,31606093:183091 +k1,24521:11327166,31606093:183092 +k1,24521:14463309,31606093:183091 +k1,24521:15305692,31606093:183091 +k1,24521:17051817,31606093:183091 +k1,24521:17704801,31606093:183091 +k1,24521:18419389,31606093:183091 +k1,24521:19888297,31606093:183092 +k1,24521:21584614,31606093:183091 +k1,24521:22383743,31606093:183091 +k1,24521:24268804,31606093:183091 +k1,24521:27151323,31606093:183091 +k1,24521:27950453,31606093:183092 +k1,24521:30019015,31606093:183091 +k1,24521:31591469,31606093:183091 +k1,24521:32583029,31606093:0 +) +(1,24522:6630773,32471173:25952256,513147,134348 +k1,24521:10230830,32471173:200049 +k1,24521:11082306,32471173:200048 +k1,24521:11638215,32471173:200049 +k1,24521:13122769,32471173:200048 +k1,24521:13982110,32471173:200049 +k1,24521:17242689,32471173:200048 +k1,24521:18588963,32471173:200049 +k1,24521:20182963,32471173:200049 +k1,24521:21772374,32471173:200048 +k1,24521:23384724,32471173:200049 +k1,24521:25152393,32471173:200048 +k1,24521:28765557,32471173:200049 +k1,24521:32583029,32471173:0 +) +(1,24522:6630773,33336253:25952256,513147,134348 +k1,24521:8300586,33336253:156587 +k1,24521:9108601,33336253:156587 +k1,24521:11049079,33336253:156588 +k1,24521:12689401,33336253:156587 +k1,24521:16459643,33336253:156587 +k1,24521:19006286,33336253:156545 +k1,24521:20476215,33336253:156587 +k1,24521:21624362,33336253:156587 +k1,24521:23802735,33336253:156587 +k1,24521:25031491,33336253:156587 +k1,24521:26280563,33336253:156587 +k1,24521:26793011,33336253:156588 +k1,24521:29129981,33336253:156587 +k1,24521:30571074,33336253:156587 +k1,24521:32583029,33336253:0 +) +(1,24522:6630773,34201333:25952256,513147,134348 +k1,24521:7851507,34201333:201649 +k1,24521:10400656,34201333:201649 +k1,24521:11261597,34201333:201649 +k1,24521:14432683,34201333:201650 +k1,24521:17946522,34201333:201649 +k1,24521:19599793,34201333:201649 +k1,24521:22312782,34201333:201649 +k1,24521:25194854,34201333:201649 +k1,24521:26790454,34201333:201649 +k1,24521:28011189,34201333:201650 +k1,24521:29602201,34201333:201649 +k1,24521:31409482,34201333:201649 +k1,24521:32227169,34201333:201649 +k1,24521:32583029,34201333:0 +) +(1,24522:6630773,35066413:25952256,513147,134348 +k1,24521:11382003,35066413:158466 +k1,24521:12731914,35066413:158466 +k1,24521:17033565,35066413:158465 +k1,24521:19546084,35066413:158466 +k1,24521:21590021,35066413:158466 +k1,24521:22279984,35066413:158466 +k1,24521:23968716,35066413:158466 +k1,24521:25074832,35066413:158465 +k1,24521:28186350,35066413:158466 +k1,24521:29004108,35066413:158466 +k1,24521:32583029,35066413:0 +) +(1,24522:6630773,35931493:25952256,505283,134348 +g1,24521:8400900,35931493 +g1,24521:9989492,35931493 +g1,24521:11453566,35931493 +g1,24521:14777552,35931493 +g1,24521:15786151,35931493 +g1,24521:16341240,35931493 +g1,24521:18666457,35931493 +g1,24521:19548571,35931493 +g1,24521:24809146,35931493 +k1,24522:32583029,35931493:6436949 +g1,24522:32583029,35931493 +) +(1,24524:6630773,36796573:25952256,513147,126483 +h1,24523:6630773,36796573:983040,0,0 +g1,24523:10635678,36796573 +g1,24523:13924930,36796573 +g1,24523:14810321,36796573 +k1,24524:32583029,36796573:15370159 +g1,24524:32583029,36796573 +) +(1,24526:7202902,38185941:24807998,513147,134348 +(1,24524:7202902,38185941:0,0,0 +g1,24524:7202902,38185941 +g1,24524:5892182,38185941 +g1,24524:5564502,38185941 +(1,24524:5564502,38185941:1310720,0,0 +k1,24524:6875222,38185941:1310720 +) +g1,24524:7202902,38185941 +) +k1,24525:7202902,38185941:0 +k1,24525:10007779,38185941:414779 +k1,24525:10954272,38185941:414996 +k1,24525:11725128,38185941:414996 +k1,24525:13074666,38185941:414995 +k1,24525:14148954,38185941:414996 +k1,24525:17323016,38185941:414996 +k1,24525:20356175,38185941:414996 +k1,24525:22545886,38185941:414996 +k1,24525:25644580,38185941:414995 +k1,24525:27251021,38185941:414996 +k1,24525:32010900,38185941:0 +) +(1,24526:7202902,39051021:24807998,513147,126483 +k1,24525:14278460,39051021:168063 +k1,24525:15835887,39051021:168064 +k1,24525:18514634,39051021:168063 +k1,24525:19967203,39051021:168063 +k1,24525:22661680,39051021:168064 +k1,24525:23848828,39051021:168063 +k1,24525:26783166,39051021:168063 +k1,24525:29155861,39051021:168064 +k1,24525:30515369,39051021:168063 +k1,24526:32010900,39051021:0 +) +(1,24526:7202902,39916101:24807998,513147,134348 +g1,24525:8392380,39916101 +g1,24525:9250901,39916101 +g1,24525:13983911,39916101 +g1,24525:17032645,39916101 +k1,24526:32010900,39916101:13536463 +g1,24526:32010900,39916101 +) +(1,24529:6630773,41305469:25952256,513147,134348 +h1,24528:6630773,41305469:983040,0,0 +k1,24528:9303691,41305469:227770 +k1,24528:11921530,41305469:227741 +k1,24528:13462642,41305469:227770 +k1,24528:14438178,41305469:227770 +k1,24528:17958477,41305469:227770 +k1,24528:19772218,41305469:227770 +k1,24528:23194213,41305469:227770 +k1,24528:24441067,41305469:227769 +k1,24528:26058200,41305469:227770 +k1,24528:27853591,41305469:227770 +k1,24528:31274275,41305469:227770 +k1,24529:32583029,41305469:0 +) +(1,24529:6630773,42170549:25952256,513147,134348 +k1,24528:8680537,42170549:237038 +k1,24528:9449072,42170549:237038 +k1,24528:12895407,42170549:237037 +k1,24528:13818607,42170549:237038 +k1,24528:14513742,42170549:237038 +k1,24528:16762735,42170549:237038 +k1,24528:21393962,42170549:237038 +k1,24528:22247037,42170549:237037 +k1,24528:22898880,42170549:237000 +k1,24528:24529869,42170549:237038 +k1,24528:26156270,42170549:237038 +k1,24528:27658153,42170549:237038 +k1,24528:28941146,42170549:237038 +k1,24528:30154014,42170549:237037 +k1,24528:31042480,42170549:237038 +k1,24528:31966991,42170549:237038 +k1,24528:32583029,42170549:0 +) +(1,24529:6630773,43035629:25952256,513147,134348 +k1,24528:7265816,43035629:279183 +k1,24528:11125232,43035629:279184 +k1,24528:13074272,43035629:279183 +k1,24528:16104657,43035629:279184 +k1,24528:18786390,43035629:279183 +k1,24528:19597070,43035629:279183 +k1,24528:22506214,43035629:279184 +k1,24528:24520790,43035629:279183 +k1,24528:27825771,43035629:279184 +k1,24528:29672575,43035629:279183 +k1,24528:32583029,43035629:0 +) +(1,24529:6630773,43900709:25952256,513147,126483 +k1,24528:8997660,43900709:261216 +k1,24528:9941761,43900709:261216 +k1,24528:13528927,43900709:261215 +k1,24528:14608032,43900709:261216 +k1,24528:15225108,43900709:261216 +k1,24528:19569217,43900709:261216 +k1,24528:20489724,43900709:261215 +k1,24528:21954181,43900709:261216 +k1,24528:25363091,43900709:261216 +k1,24528:28317837,43900709:261216 +k1,24528:29230480,43900709:261215 +k1,24528:31193666,43900709:261216 +k1,24528:32583029,43900709:0 +) +(1,24529:6630773,44765789:25952256,513147,134348 +k1,24528:7811022,44765789:197209 +k1,24528:10410781,44765789:197209 +k1,24528:14186256,44765789:197209 +k1,24528:16786014,44765789:197208 +k1,24528:17339083,44765789:197209 +k1,24528:19926388,44765789:197207 +k1,24528:21106637,44765789:197209 +k1,24528:21835343,44765789:197209 +k1,24528:23610003,44765789:197208 +k1,24528:24423250,44765789:197209 +k1,24528:27291706,44765789:197209 +k1,24528:30899409,44765789:197209 +k1,24529:32583029,44765789:0 +) +] +(1,24530:32583029,45706769:0,0,0 +g1,24530:32583029,45706769 +) +) +] +(1,24530:6630773,47279633:25952256,0,0 +h1,24530:6630773,47279633:25952256,0,0 +) +] +(1,24530:4262630,4025873:0,0,0 +[1,24530:-473656,4025873:0,0,0 +(1,24530:-473656,-710413:0,0,0 +(1,24530:-473656,-710413:0,0,0 +g1,24530:-473656,-710413 +) +g1,24530:-473656,-710413 ) ] ) ] !25307 -}421 -Input:4573:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4574:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4575:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4576:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}422 Input:4577:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4578:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4579:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4580:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4582:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !748 -{422 -[1,24600:4262630,47279633:28320399,43253760,0 -(1,24600:4262630,4025873:0,0,0 -[1,24600:-473656,4025873:0,0,0 -(1,24600:-473656,-710413:0,0,0 -(1,24600:-473656,-644877:0,0,0 -k1,24600:-473656,-644877:-65536 +{423 +[1,24598:4262630,47279633:28320399,43253760,0 +(1,24598:4262630,4025873:0,0,0 +[1,24598:-473656,4025873:0,0,0 +(1,24598:-473656,-710413:0,0,0 +(1,24598:-473656,-644877:0,0,0 +k1,24598:-473656,-644877:-65536 ) -(1,24600:-473656,4736287:0,0,0 -k1,24600:-473656,4736287:5209943 +(1,24598:-473656,4736287:0,0,0 +k1,24598:-473656,4736287:5209943 ) -g1,24600:-473656,-710413 +g1,24598:-473656,-710413 ) ] ) -[1,24600:6630773,47279633:25952256,43253760,0 -[1,24600:6630773,4812305:25952256,786432,0 -(1,24600:6630773,4812305:25952256,505283,11795 -(1,24600:6630773,4812305:25952256,505283,11795 -g1,24600:3078558,4812305 -[1,24600:3078558,4812305:0,0,0 -(1,24600:3078558,2439708:0,1703936,0 -k1,24600:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24600:2537886,2439708:1179648,16384,0 +[1,24598:6630773,47279633:25952256,43253760,0 +[1,24598:6630773,4812305:25952256,786432,0 +(1,24598:6630773,4812305:25952256,505283,11795 +(1,24598:6630773,4812305:25952256,505283,11795 +g1,24598:3078558,4812305 +[1,24598:3078558,4812305:0,0,0 +(1,24598:3078558,2439708:0,1703936,0 +k1,24598:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24598:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24600:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24598:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24600:3078558,4812305:0,0,0 -(1,24600:3078558,2439708:0,1703936,0 -g1,24600:29030814,2439708 -g1,24600:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24600:36151628,1915420:16384,1179648,0 +[1,24598:3078558,4812305:0,0,0 +(1,24598:3078558,2439708:0,1703936,0 +g1,24598:29030814,2439708 +g1,24598:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24598:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24600:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24598:37855564,2439708:1179648,16384,0 ) ) -k1,24600:3078556,2439708:-34777008 +k1,24598:3078556,2439708:-34777008 ) ] -[1,24600:3078558,4812305:0,0,0 -(1,24600:3078558,49800853:0,16384,2228224 -k1,24600:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24600:2537886,49800853:1179648,16384,0 +[1,24598:3078558,4812305:0,0,0 +(1,24598:3078558,49800853:0,16384,2228224 +k1,24598:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24598:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24600:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24598:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24600:3078558,4812305:0,0,0 -(1,24600:3078558,49800853:0,16384,2228224 -g1,24600:29030814,49800853 -g1,24600:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24600:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24600:37855564,49800853:1179648,16384,0 +[1,24598:3078558,4812305:0,0,0 +(1,24598:3078558,49800853:0,16384,2228224 +g1,24598:29030814,49800853 +g1,24598:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24598:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24598:37855564,49800853:1179648,16384,0 ) ) -k1,24600:3078556,49800853:-34777008 -) -] -g1,24600:6630773,4812305 -g1,24600:6630773,4812305 -g1,24600:9235173,4812305 -g1,24600:10802138,4812305 -k1,24600:31387652,4812305:20585514 -) -) -] -[1,24600:6630773,45706769:25952256,40108032,0 -(1,24600:6630773,45706769:25952256,40108032,0 -(1,24600:6630773,45706769:0,0,0 -g1,24600:6630773,45706769 -) -[1,24600:6630773,45706769:25952256,40108032,0 -(1,24531:6630773,6254097:25952256,513147,134348 -k1,24530:7814353,6254097:193331 -k1,24530:9026769,6254097:193331 -k1,24530:10376810,6254097:193331 -k1,24530:12972691,6254097:193331 -k1,24530:16135458,6254097:193331 -k1,24530:19640979,6254097:193331 -k1,24530:20853395,6254097:193331 -k1,24530:23888367,6254097:193331 -k1,24530:25273143,6254097:193331 -k1,24530:27592462,6254097:193331 -k1,24530:29243969,6254097:193331 -k1,24530:30628745,6254097:193331 -k1,24530:32583029,6254097:0 -) -(1,24531:6630773,7119177:25952256,513147,134348 -g1,24530:10122531,7119177 -g1,24530:12724310,7119177 -g1,24530:13942624,7119177 -g1,24530:15531216,7119177 -g1,24530:16389737,7119177 -k1,24531:32583029,7119177:13697681 -g1,24531:32583029,7119177 -) -(1,24532:6630773,9235995:25952256,564462,12975 -(1,24532:6630773,9235995:3348562,534184,12975 -g1,24532:6630773,9235995 -g1,24532:9979335,9235995 -) -k1,24532:32583028,9235995:20127416 -g1,24532:32583028,9235995 -) -(1,24537:6630773,10494291:25952256,513147,134348 -k1,24536:9323269,10494291:157563 -k1,24536:11638276,10494291:157563 -k1,24536:14652553,10494291:157563 -k1,24536:17212666,10494291:157563 -k1,24536:18029521,10494291:157563 -k1,24536:19500426,10494291:157563 -k1,24536:21393382,10494291:157563 -k1,24536:23941001,10494291:157521 -k1,24536:26432301,10494291:157563 -k1,24536:26988323,10494291:157563 -k1,24536:27828771,10494291:157563 -k1,24536:30019916,10494291:157563 -k1,24536:32583029,10494291:0 -) -(1,24537:6630773,11359371:25952256,513147,134348 -k1,24536:9921523,11359371:170581 -k1,24536:10708142,11359371:170581 -k1,24536:13036167,11359371:170581 -k1,24536:14273018,11359371:170580 -k1,24536:15819200,11359371:170581 -k1,24536:17671435,11359371:170581 -k1,24536:20244566,11359371:170581 -k1,24536:21606592,11359371:170581 -k1,24536:24034888,11359371:170581 -k1,24536:24864761,11359371:170581 -k1,24536:26732068,11359371:170580 -k1,24536:28389661,11359371:170581 -k1,24536:29632411,11359371:170581 -k1,24536:31088808,11359371:170581 -k1,24536:32583029,11359371:0 -) -(1,24537:6630773,12224451:25952256,513147,7863 -k1,24537:32583028,12224451:21875916 -g1,24537:32583028,12224451 -) -(1,24539:6630773,13089531:25952256,513147,134348 -h1,24538:6630773,13089531:983040,0,0 -k1,24538:10118843,13089531:464239 -k1,24538:11889214,13089531:464238 -k1,24538:13336493,13089531:464239 -(1,24538:13336493,13089531:0,459977,115847 -r1,24600:20377284,13089531:7040791,575824,115847 -k1,24538:13336493,13089531:-7040791 -) -(1,24538:13336493,13089531:7040791,459977,115847 -k1,24538:13336493,13089531:3277 -h1,24538:20374007,13089531:0,411205,112570 -) -k1,24538:21015193,13089531:464239 -k1,24538:24841429,13089531:464239 -k1,24538:30024259,13089531:464238 -k1,24538:32051532,13089531:464239 -k1,24538:32583029,13089531:0 -) -(1,24539:6630773,13954611:25952256,513147,134348 -k1,24538:9237420,13954611:261113 -k1,24538:10892484,13954611:261113 -k1,24538:13849093,13954611:261113 -(1,24538:13849093,13954611:0,452978,115847 -r1,24600:17021053,13954611:3171960,568825,115847 -k1,24538:13849093,13954611:-3171960 -) -(1,24538:13849093,13954611:3171960,452978,115847 -k1,24538:13849093,13954611:3277 -h1,24538:17017776,13954611:0,411205,112570 -) -k1,24538:17455836,13954611:261113 -k1,24538:18913636,13954611:261113 -k1,24538:21134274,13954611:261112 -k1,24538:24174114,13954611:261113 -k1,24538:24966724,13954611:261113 -k1,24538:27039252,13954611:261113 -k1,24538:27951793,13954611:261113 -(1,24538:27951793,13954611:0,452978,115847 -r1,24600:32530601,13954611:4578808,568825,115847 -k1,24538:27951793,13954611:-4578808 -) -(1,24538:27951793,13954611:4578808,452978,115847 -k1,24538:27951793,13954611:3277 -h1,24538:32527324,13954611:0,411205,112570 -) -k1,24538:32583029,13954611:0 -) -(1,24539:6630773,14819691:25952256,513147,134348 -k1,24538:8138101,14819691:148111 -k1,24538:10245739,14819691:148112 -k1,24538:13095899,14819691:148111 -k1,24538:14619611,14819691:148111 -k1,24538:15538426,14819691:148112 -k1,24538:17435693,14819691:148111 -k1,24538:18235232,14819691:148111 -k1,24538:19402428,14819691:148111 -k1,24538:20533580,14819691:148112 -k1,24538:23604597,14819691:148111 -k1,24538:25760731,14819691:148111 -k1,24538:28840268,14819691:148112 -k1,24538:29519876,14819691:148111 -k1,24538:32583029,14819691:0 -) -(1,24539:6630773,15684771:25952256,513147,126483 -g1,24538:8197739,15684771 -g1,24538:8752828,15684771 -g1,24538:10051751,15684771 -g1,24538:10902408,15684771 -(1,24538:10902408,15684771:0,452978,115847 -r1,24600:12667521,15684771:1765113,568825,115847 -k1,24538:10902408,15684771:-1765113 -) -(1,24538:10902408,15684771:1765113,452978,115847 -k1,24538:10902408,15684771:3277 -h1,24538:12664244,15684771:0,411205,112570 -) -g1,24538:13040420,15684771 -g1,24538:13697746,15684771 -g1,24538:15570109,15684771 -g1,24538:16788423,15684771 -g1,24538:18223006,15684771 -g1,24538:19081527,15684771 -g1,24538:19636616,15684771 -g1,24538:20818885,15684771 -k1,24539:32583029,15684771:8205539 -g1,24539:32583029,15684771 -) -v1,24541:6630773,16369626:0,393216,0 -(1,24565:6630773,29148953:25952256,13172543,196608 -g1,24565:6630773,29148953 -g1,24565:6630773,29148953 -g1,24565:6434165,29148953 -(1,24565:6434165,29148953:0,13172543,196608 -r1,24600:32779637,29148953:26345472,13369151,196608 -k1,24565:6434165,29148953:-26345472 -) -(1,24565:6434165,29148953:26345472,13172543,196608 -[1,24565:6630773,29148953:25952256,12975935,0 -(1,24543:6630773,16604063:25952256,431045,106246 -(1,24542:6630773,16604063:0,0,0 -g1,24542:6630773,16604063 -g1,24542:6630773,16604063 -g1,24542:6303093,16604063 -(1,24542:6303093,16604063:0,0,0 -) -g1,24542:6630773,16604063 -) -g1,24543:11278128,16604063 -g1,24543:12273990,16604063 -k1,24543:12273990,16604063:0 -h1,24543:25220193,16604063:0,0,0 -k1,24543:32583029,16604063:7362836 -g1,24543:32583029,16604063 -) -(1,24544:6630773,17288918:25952256,424439,86428 -h1,24544:6630773,17288918:0,0,0 -g1,24544:12937898,17288918 -g1,24544:16257437,17288918 -g1,24544:16921345,17288918 -h1,24544:17585253,17288918:0,0,0 -k1,24544:32583029,17288918:14997776 -g1,24544:32583029,17288918 -) -(1,24564:6630773,18104845:25952256,431045,9908 -(1,24546:6630773,18104845:0,0,0 -g1,24546:6630773,18104845 -g1,24546:6630773,18104845 -g1,24546:6303093,18104845 -(1,24546:6303093,18104845:0,0,0 -) -g1,24546:6630773,18104845 -) -g1,24564:7626635,18104845 -g1,24564:9286405,18104845 -g1,24564:10282267,18104845 -h1,24564:10946175,18104845:0,0,0 -k1,24564:32583029,18104845:21636854 -g1,24564:32583029,18104845 -) -(1,24564:6630773,18789700:25952256,431045,106246 -h1,24564:6630773,18789700:0,0,0 -g1,24564:7626635,18789700 -g1,24564:7958589,18789700 -g1,24564:8622497,18789700 -g1,24564:11610082,18789700 -g1,24564:11942036,18789700 -g1,24564:12273990,18789700 -g1,24564:12937898,18789700 -g1,24564:14265714,18789700 -h1,24564:24224331,18789700:0,0,0 -k1,24564:32583029,18789700:8358698 -g1,24564:32583029,18789700 -) -(1,24564:6630773,19474555:25952256,431045,112852 -h1,24564:6630773,19474555:0,0,0 -g1,24564:7626635,19474555 -g1,24564:7958589,19474555 -g1,24564:8622497,19474555 -g1,24564:11610082,19474555 -g1,24564:11942036,19474555 -g1,24564:12273990,19474555 -g1,24564:12937898,19474555 -g1,24564:14597668,19474555 -h1,24564:16257438,19474555:0,0,0 -k1,24564:32583029,19474555:16325591 -g1,24564:32583029,19474555 -) -(1,24564:6630773,20159410:25952256,431045,33029 -h1,24564:6630773,20159410:0,0,0 -g1,24564:7626635,20159410 -g1,24564:7958589,20159410 -g1,24564:8622497,20159410 -g1,24564:9618359,20159410 -g1,24564:9950313,20159410 -g1,24564:10282267,20159410 -g1,24564:10614221,20159410 -g1,24564:10946175,20159410 -g1,24564:11278129,20159410 -g1,24564:11610083,20159410 -g1,24564:11942037,20159410 -g1,24564:12273991,20159410 -g1,24564:12937899,20159410 -g1,24564:14265715,20159410 -h1,24564:15925485,20159410:0,0,0 -k1,24564:32583029,20159410:16657544 -g1,24564:32583029,20159410 -) -(1,24564:6630773,20844265:25952256,431045,112852 -h1,24564:6630773,20844265:0,0,0 -g1,24564:7626635,20844265 -g1,24564:7958589,20844265 -g1,24564:8622497,20844265 -g1,24564:10614221,20844265 -g1,24564:10946175,20844265 -g1,24564:11278129,20844265 -g1,24564:11610083,20844265 -g1,24564:11942037,20844265 -g1,24564:12273991,20844265 -g1,24564:12937899,20844265 -g1,24564:14597669,20844265 -h1,24564:16257439,20844265:0,0,0 -k1,24564:32583029,20844265:16325590 -g1,24564:32583029,20844265 -) -(1,24564:6630773,21529120:25952256,431045,112852 -h1,24564:6630773,21529120:0,0,0 -g1,24564:7626635,21529120 -g1,24564:7958589,21529120 -g1,24564:8622497,21529120 -g1,24564:11610082,21529120 -g1,24564:11942036,21529120 -g1,24564:12273990,21529120 -g1,24564:12937898,21529120 -g1,24564:14597668,21529120 -h1,24564:16257438,21529120:0,0,0 -k1,24564:32583029,21529120:16325591 -g1,24564:32583029,21529120 -) -(1,24564:6630773,22213975:25952256,431045,52847 -h1,24564:6630773,22213975:0,0,0 -g1,24564:7626635,22213975 -g1,24564:7958589,22213975 -g1,24564:8622497,22213975 -g1,24564:10946175,22213975 -g1,24564:11278129,22213975 -g1,24564:11610083,22213975 -g1,24564:11942037,22213975 -g1,24564:12273991,22213975 -g1,24564:12937899,22213975 -g1,24564:14265715,22213975 -h1,24564:23228471,22213975:0,0,0 -k1,24564:32583029,22213975:9354558 -g1,24564:32583029,22213975 -) -(1,24564:6630773,22898830:25952256,431045,112852 -h1,24564:6630773,22898830:0,0,0 -g1,24564:7626635,22898830 -g1,24564:7958589,22898830 -g1,24564:8622497,22898830 -g1,24564:10946175,22898830 -g1,24564:11278129,22898830 -g1,24564:11610083,22898830 -g1,24564:11942037,22898830 -g1,24564:12273991,22898830 -g1,24564:12937899,22898830 -g1,24564:14597669,22898830 -h1,24564:16257439,22898830:0,0,0 -k1,24564:32583029,22898830:16325590 -g1,24564:32583029,22898830 -) -(1,24564:6630773,23583685:25952256,431045,112852 -h1,24564:6630773,23583685:0,0,0 -g1,24564:7626635,23583685 -g1,24564:7958589,23583685 -g1,24564:8622497,23583685 -g1,24564:10946175,23583685 -g1,24564:11278129,23583685 -g1,24564:11610083,23583685 -g1,24564:11942037,23583685 -g1,24564:12273991,23583685 -g1,24564:14265715,23583685 -g1,24564:15261577,23583685 -h1,24564:15593531,23583685:0,0,0 -k1,24564:32583029,23583685:16989498 -g1,24564:32583029,23583685 -) -(1,24564:6630773,24268540:25952256,431045,112852 -h1,24564:6630773,24268540:0,0,0 -g1,24564:7626635,24268540 -g1,24564:7958589,24268540 -g1,24564:8622497,24268540 -g1,24564:14265714,24268540 -g1,24564:15261576,24268540 -h1,24564:15593530,24268540:0,0,0 -k1,24564:32583030,24268540:16989500 -g1,24564:32583030,24268540 -) -(1,24564:6630773,24953395:25952256,431045,33029 -h1,24564:6630773,24953395:0,0,0 -g1,24564:7626635,24953395 -g1,24564:7958589,24953395 -g1,24564:8622497,24953395 -g1,24564:10614221,24953395 -g1,24564:10946175,24953395 -g1,24564:11278129,24953395 -g1,24564:11610083,24953395 -g1,24564:11942037,24953395 -g1,24564:12273991,24953395 -g1,24564:12937899,24953395 -g1,24564:14265715,24953395 -h1,24564:14597669,24953395:0,0,0 -k1,24564:32583029,24953395:17985360 -g1,24564:32583029,24953395 -) -(1,24564:6630773,25638250:25952256,431045,33029 -h1,24564:6630773,25638250:0,0,0 -g1,24564:7626635,25638250 -g1,24564:7958589,25638250 -g1,24564:8622497,25638250 -g1,24564:10614221,25638250 -g1,24564:10946175,25638250 -g1,24564:11278129,25638250 -g1,24564:11610083,25638250 -g1,24564:11942037,25638250 -g1,24564:12273991,25638250 -g1,24564:12937899,25638250 -g1,24564:14265715,25638250 -h1,24564:14597669,25638250:0,0,0 -k1,24564:32583029,25638250:17985360 -g1,24564:32583029,25638250 -) -(1,24564:6630773,26323105:25952256,431045,33029 -h1,24564:6630773,26323105:0,0,0 -g1,24564:7626635,26323105 -g1,24564:7958589,26323105 -g1,24564:8622497,26323105 -g1,24564:9950313,26323105 -g1,24564:10282267,26323105 -g1,24564:10614221,26323105 -g1,24564:10946175,26323105 -g1,24564:11278129,26323105 -g1,24564:11610083,26323105 -g1,24564:11942037,26323105 -g1,24564:12273991,26323105 -g1,24564:14265715,26323105 -g1,24564:15261577,26323105 -h1,24564:15593531,26323105:0,0,0 -k1,24564:32583029,26323105:16989498 -g1,24564:32583029,26323105 -) -(1,24564:6630773,27007960:25952256,431045,33029 -h1,24564:6630773,27007960:0,0,0 -g1,24564:7626635,27007960 -g1,24564:7958589,27007960 -g1,24564:8622497,27007960 -g1,24564:12273990,27007960 -g1,24564:12937898,27007960 -g1,24564:14265714,27007960 -k1,24564:14265714,27007960:0 -h1,24564:14929622,27007960:0,0,0 -k1,24564:32583030,27007960:17653408 -g1,24564:32583030,27007960 -) -(1,24564:6630773,27692815:25952256,431045,33029 -h1,24564:6630773,27692815:0,0,0 -g1,24564:7626635,27692815 -g1,24564:7958589,27692815 -g1,24564:8622497,27692815 -g1,24564:10614221,27692815 -g1,24564:10946175,27692815 -g1,24564:11278129,27692815 -g1,24564:11610083,27692815 -g1,24564:11942037,27692815 -g1,24564:12273991,27692815 -g1,24564:12937899,27692815 -g1,24564:14265715,27692815 -h1,24564:14597669,27692815:0,0,0 -k1,24564:32583029,27692815:17985360 -g1,24564:32583029,27692815 -) -(1,24564:6630773,28377670:25952256,431045,33029 -h1,24564:6630773,28377670:0,0,0 -g1,24564:7626635,28377670 -g1,24564:7958589,28377670 -g1,24564:8622497,28377670 -g1,24564:9950313,28377670 -g1,24564:10282267,28377670 -g1,24564:10614221,28377670 -g1,24564:10946175,28377670 -g1,24564:11278129,28377670 -g1,24564:11610083,28377670 -g1,24564:11942037,28377670 -g1,24564:12273991,28377670 -g1,24564:14265715,28377670 -g1,24564:15261577,28377670 -h1,24564:15593531,28377670:0,0,0 -k1,24564:32583029,28377670:16989498 -g1,24564:32583029,28377670 -) -(1,24564:6630773,29062525:25952256,431045,86428 -h1,24564:6630773,29062525:0,0,0 -g1,24564:7626635,29062525 -g1,24564:7958589,29062525 -g1,24564:8622497,29062525 -g1,24564:11278129,29062525 -g1,24564:14597668,29062525 -g1,24564:15925484,29062525 -h1,24564:18249162,29062525:0,0,0 -k1,24564:32583029,29062525:14333867 -g1,24564:32583029,29062525 -) -] -) -g1,24565:32583029,29148953 -g1,24565:6630773,29148953 -g1,24565:6630773,29148953 -g1,24565:32583029,29148953 -g1,24565:32583029,29148953 -) -h1,24565:6630773,29345561:0,0,0 -v1,24569:6630773,30210641:0,393216,0 -(1,24570:6630773,33248527:25952256,3431102,0 -g1,24570:6630773,33248527 -g1,24570:6237557,33248527 -r1,24600:6368629,33248527:131072,3431102,0 -g1,24570:6567858,33248527 -g1,24570:6764466,33248527 -[1,24570:6764466,33248527:25818563,3431102,0 -(1,24570:6764466,30518939:25818563,701514,196608 -(1,24569:6764466,30518939:0,701514,196608 -r1,24600:8471973,30518939:1707507,898122,196608 -k1,24569:6764466,30518939:-1707507 -) -(1,24569:6764466,30518939:1707507,701514,196608 -) -k1,24569:8671463,30518939:199490 -k1,24569:10805971,30518939:327680 -k1,24569:13636077,30518939:199491 -(1,24569:13636077,30518939:0,452978,115847 -r1,24600:16808037,30518939:3171960,568825,115847 -k1,24569:13636077,30518939:-3171960 -) -(1,24569:13636077,30518939:3171960,452978,115847 -k1,24569:13636077,30518939:3277 -h1,24569:16804760,30518939:0,411205,112570 -) -k1,24569:17007527,30518939:199490 -k1,24569:17823055,30518939:199490 -k1,24569:19041631,30518939:199491 -k1,24569:20340815,30518939:199490 -k1,24569:21191733,30518939:199490 -(1,24569:21191733,30518939:0,452978,115847 -r1,24600:22956846,30518939:1765113,568825,115847 -k1,24569:21191733,30518939:-1765113 -) -(1,24569:21191733,30518939:1765113,452978,115847 -k1,24569:21191733,30518939:3277 -h1,24569:22953569,30518939:0,411205,112570 -) -k1,24569:23156336,30518939:199490 -k1,24569:25211151,30518939:199491 -k1,24569:26602086,30518939:199490 -k1,24569:28585466,30518939:199490 -k1,24569:30115338,30518939:199491 -k1,24569:31333913,30518939:199490 -k1,24570:32583029,30518939:0 -) -(1,24570:6764466,31384019:25818563,513147,134348 -k1,24569:9372560,31384019:244866 -k1,24569:11576953,31384019:244867 -k1,24569:13769549,31384019:244866 -k1,24569:17821401,31384019:244866 -k1,24569:18875638,31384019:244867 -k1,24569:20139589,31384019:244866 -k1,24569:24059715,31384019:244867 -k1,24569:25496026,31384019:244866 -k1,24569:26688543,31384019:244866 -k1,24569:28385032,31384019:244867 -k1,24569:30019261,31384019:244866 -k1,24569:32583029,31384019:0 -) -(1,24570:6764466,32249099:25818563,513147,126483 -k1,24569:8222500,32249099:226612 -k1,24569:9553394,32249099:226612 -k1,24569:11065821,32249099:226611 -(1,24569:11065821,32249099:0,452978,115847 -r1,24600:18106612,32249099:7040791,568825,115847 -k1,24569:11065821,32249099:-7040791 -) -(1,24569:11065821,32249099:7040791,452978,115847 -k1,24569:11065821,32249099:3277 -h1,24569:18103335,32249099:0,411205,112570 -) -k1,24569:18333224,32249099:226612 -k1,24569:19507487,32249099:226612 -k1,24569:20089959,32249099:226612 -k1,24569:21966768,32249099:226612 -k1,24569:25118907,32249099:226612 -k1,24569:27993828,32249099:226611 -k1,24569:29710729,32249099:226612 -k1,24569:31107814,32249099:226612 -k1,24569:32583029,32249099:0 -) -(1,24570:6764466,33114179:25818563,513147,134348 -g1,24569:10646818,33114179 -g1,24569:11865132,33114179 -g1,24569:14995786,33114179 -g1,24569:15854307,33114179 -g1,24569:17072621,33114179 -k1,24570:32583029,33114179:13498453 -g1,24570:32583029,33114179 -) -] -g1,24570:32583029,33248527 -) -h1,24570:6630773,33248527:0,0,0 -(1,24573:6630773,34113607:25952256,513147,126483 -h1,24572:6630773,34113607:983040,0,0 -k1,24572:9016704,34113607:206204 -k1,24572:12898168,34113607:206205 -k1,24572:13763664,34113607:206204 -k1,24572:14988953,34113607:206204 -k1,24572:16584521,34113607:206205 -k1,24572:18440266,34113607:206204 -k1,24572:19638031,34113607:206205 -k1,24572:21882405,34113607:206204 -k1,24572:22774771,34113607:206204 -k1,24572:26124083,34113607:206205 -k1,24572:26946325,34113607:206204 -k1,24572:28171614,34113607:206204 -k1,24572:29360859,34113607:206205 -k1,24572:31080289,34113607:206204 -k1,24573:32583029,34113607:0 -) -(1,24573:6630773,34978687:25952256,513147,134348 -k1,24572:8228049,34978687:186286 -k1,24572:10841133,34978687:186286 -k1,24572:11678847,34978687:186286 -k1,24572:12220993,34978687:186286 -k1,24572:13691785,34978687:186286 -k1,24572:14537363,34978687:186286 -k1,24572:17512861,34978687:186286 -k1,24572:18890592,34978687:186286 -k1,24572:22436910,34978687:186287 -k1,24572:23814641,34978687:186286 -k1,24572:25268393,34978687:186286 -k1,24572:25810539,34978687:186286 -k1,24572:27422233,34978687:186286 -k1,24572:29586396,34978687:186286 -k1,24572:30458844,34978687:186286 -k1,24572:31000990,34978687:186286 -k1,24572:32583029,34978687:0 -) -(1,24573:6630773,35843767:25952256,505283,134348 -k1,24572:10386838,35843767:237437 -k1,24572:11820962,35843767:237437 -k1,24572:13769543,35843767:237436 -k1,24572:14998540,35843767:237437 -k1,24572:18014704,35843767:237437 -k1,24572:18938303,35843767:237437 -k1,24572:22150419,35843767:237437 -k1,24572:24757637,35843767:237436 -k1,24572:26191761,35843767:237437 -k1,24572:29270839,35843767:237437 -k1,24572:32583029,35843767:0 -) -(1,24573:6630773,36708847:25952256,513147,134348 -g1,24572:7849087,36708847 -g1,24572:9332822,36708847 -g1,24572:10523611,36708847 -g1,24572:12135141,36708847 -g1,24572:13491080,36708847 -g1,24572:14303071,36708847 -g1,24572:14858160,36708847 -g1,24572:16482797,36708847 -g1,24572:18075977,36708847 -g1,24572:20970702,36708847 -(1,24572:20970702,36708847:0,452978,122846 -r1,24600:24846086,36708847:3875384,575824,122846 -k1,24572:20970702,36708847:-3875384 -) -(1,24572:20970702,36708847:3875384,452978,122846 -k1,24572:20970702,36708847:3277 -h1,24572:24842809,36708847:0,411205,112570 -) -k1,24573:32583029,36708847:7684515 -g1,24573:32583029,36708847 -) -v1,24575:6630773,37393702:0,393216,0 -(1,24597:6630773,43835555:25952256,6835069,196608 -g1,24597:6630773,43835555 -g1,24597:6630773,43835555 -g1,24597:6434165,43835555 -(1,24597:6434165,43835555:0,6835069,196608 -r1,24600:32779637,43835555:26345472,7031677,196608 -k1,24597:6434165,43835555:-26345472 -) -(1,24597:6434165,43835555:26345472,6835069,196608 -[1,24597:6630773,43835555:25952256,6638461,0 -(1,24577:6630773,37621533:25952256,424439,112852 -(1,24576:6630773,37621533:0,0,0 -g1,24576:6630773,37621533 -g1,24576:6630773,37621533 -g1,24576:6303093,37621533 -(1,24576:6303093,37621533:0,0,0 -) -g1,24576:6630773,37621533 -) -g1,24577:9618358,37621533 -g1,24577:10614220,37621533 -g1,24577:18913068,37621533 -h1,24577:21236746,37621533:0,0,0 -k1,24577:32583029,37621533:11346283 -g1,24577:32583029,37621533 -) -(1,24578:6630773,38306388:25952256,424439,79822 -h1,24578:6630773,38306388:0,0,0 -k1,24578:6630773,38306388:0 -h1,24578:11278128,38306388:0,0,0 -k1,24578:32583028,38306388:21304900 -g1,24578:32583028,38306388 -) -(1,24582:6630773,39122315:25952256,424439,79822 -(1,24580:6630773,39122315:0,0,0 -g1,24580:6630773,39122315 -g1,24580:6630773,39122315 -g1,24580:6303093,39122315 -(1,24580:6303093,39122315:0,0,0 -) -g1,24580:6630773,39122315 -) -g1,24582:7626635,39122315 -g1,24582:8954451,39122315 -g1,24582:11610083,39122315 -g1,24582:14265715,39122315 -g1,24582:16921347,39122315 -g1,24582:19576979,39122315 -g1,24582:22232611,39122315 -k1,24582:22232611,39122315:0 -h1,24582:24556289,39122315:0,0,0 -k1,24582:32583029,39122315:8026740 -g1,24582:32583029,39122315 -) -(1,24584:6630773,39938242:25952256,424439,112852 -(1,24583:6630773,39938242:0,0,0 -g1,24583:6630773,39938242 -g1,24583:6630773,39938242 -g1,24583:6303093,39938242 -(1,24583:6303093,39938242:0,0,0 -) -g1,24583:6630773,39938242 -) -g1,24584:9950312,39938242 -g1,24584:10946174,39938242 -g1,24584:11278128,39938242 -g1,24584:19576976,39938242 -h1,24584:21568700,39938242:0,0,0 -k1,24584:32583029,39938242:11014329 -g1,24584:32583029,39938242 -) -(1,24585:6630773,40623097:25952256,424439,112852 -h1,24585:6630773,40623097:0,0,0 -k1,24585:6630773,40623097:0 -h1,24585:11610082,40623097:0,0,0 -k1,24585:32583030,40623097:20972948 -g1,24585:32583030,40623097 -) -(1,24589:6630773,41439024:25952256,424439,79822 -(1,24587:6630773,41439024:0,0,0 -g1,24587:6630773,41439024 -g1,24587:6630773,41439024 -g1,24587:6303093,41439024 -(1,24587:6303093,41439024:0,0,0 -) -g1,24587:6630773,41439024 -) -g1,24589:7626635,41439024 -g1,24589:8954451,41439024 -g1,24589:10946175,41439024 -g1,24589:12937899,41439024 -g1,24589:14929623,41439024 -g1,24589:16921347,41439024 -g1,24589:18913071,41439024 -h1,24589:20572841,41439024:0,0,0 -k1,24589:32583029,41439024:12010188 -g1,24589:32583029,41439024 -) -(1,24591:6630773,42254951:25952256,424439,112852 -(1,24590:6630773,42254951:0,0,0 -g1,24590:6630773,42254951 -g1,24590:6630773,42254951 -g1,24590:6303093,42254951 -(1,24590:6303093,42254951:0,0,0 -) -g1,24590:6630773,42254951 -) -g1,24591:9618358,42254951 -g1,24591:10614220,42254951 -g1,24591:18913068,42254951 -h1,24591:20904792,42254951:0,0,0 -k1,24591:32583029,42254951:11678237 -g1,24591:32583029,42254951 -) -(1,24592:6630773,42939806:25952256,424439,79822 -h1,24592:6630773,42939806:0,0,0 -k1,24592:6630773,42939806:0 -h1,24592:11278128,42939806:0,0,0 -k1,24592:32583028,42939806:21304900 -g1,24592:32583028,42939806 -) -(1,24596:6630773,43755733:25952256,424439,79822 -(1,24594:6630773,43755733:0,0,0 -g1,24594:6630773,43755733 -g1,24594:6630773,43755733 -g1,24594:6303093,43755733 -(1,24594:6303093,43755733:0,0,0 -) -g1,24594:6630773,43755733 -) -g1,24596:7626635,43755733 -g1,24596:8954451,43755733 -g1,24596:11610083,43755733 -g1,24596:14265715,43755733 -g1,24596:16921347,43755733 -g1,24596:19576979,43755733 -g1,24596:22232611,43755733 -h1,24596:24556289,43755733:0,0,0 -k1,24596:32583029,43755733:8026740 -g1,24596:32583029,43755733 -) -] -) -g1,24597:32583029,43835555 -g1,24597:6630773,43835555 -g1,24597:6630773,43835555 -g1,24597:32583029,43835555 -g1,24597:32583029,43835555 -) -h1,24597:6630773,44032163:0,0,0 -] -(1,24600:32583029,45706769:0,0,0 -g1,24600:32583029,45706769 -) -) -] -(1,24600:6630773,47279633:25952256,0,0 -h1,24600:6630773,47279633:25952256,0,0 +k1,24598:3078556,49800853:-34777008 +) +] +g1,24598:6630773,4812305 +g1,24598:6630773,4812305 +g1,24598:9235173,4812305 +g1,24598:10802138,4812305 +k1,24598:31387652,4812305:20585514 +) +) +] +[1,24598:6630773,45706769:25952256,40108032,0 +(1,24598:6630773,45706769:25952256,40108032,0 +(1,24598:6630773,45706769:0,0,0 +g1,24598:6630773,45706769 +) +[1,24598:6630773,45706769:25952256,40108032,0 +(1,24529:6630773,6254097:25952256,513147,134348 +k1,24528:7814353,6254097:193331 +k1,24528:9026769,6254097:193331 +k1,24528:10376810,6254097:193331 +k1,24528:12972691,6254097:193331 +k1,24528:16135458,6254097:193331 +k1,24528:19640979,6254097:193331 +k1,24528:20853395,6254097:193331 +k1,24528:23888367,6254097:193331 +k1,24528:25273143,6254097:193331 +k1,24528:27592462,6254097:193331 +k1,24528:29243969,6254097:193331 +k1,24528:30628745,6254097:193331 +k1,24528:32583029,6254097:0 +) +(1,24529:6630773,7119177:25952256,513147,134348 +g1,24528:10122531,7119177 +g1,24528:12724310,7119177 +g1,24528:13942624,7119177 +g1,24528:15531216,7119177 +g1,24528:16389737,7119177 +k1,24529:32583029,7119177:13697681 +g1,24529:32583029,7119177 +) +(1,24530:6630773,9235995:25952256,564462,12975 +(1,24530:6630773,9235995:3348562,534184,12975 +g1,24530:6630773,9235995 +g1,24530:9979335,9235995 +) +k1,24530:32583028,9235995:20127416 +g1,24530:32583028,9235995 +) +(1,24535:6630773,10494291:25952256,513147,134348 +k1,24534:9323269,10494291:157563 +k1,24534:11638276,10494291:157563 +k1,24534:14652553,10494291:157563 +k1,24534:17212666,10494291:157563 +k1,24534:18029521,10494291:157563 +k1,24534:19500426,10494291:157563 +k1,24534:21393382,10494291:157563 +k1,24534:23941001,10494291:157521 +k1,24534:26432301,10494291:157563 +k1,24534:26988323,10494291:157563 +k1,24534:27828771,10494291:157563 +k1,24534:30019916,10494291:157563 +k1,24534:32583029,10494291:0 +) +(1,24535:6630773,11359371:25952256,513147,134348 +k1,24534:9921523,11359371:170581 +k1,24534:10708142,11359371:170581 +k1,24534:13036167,11359371:170581 +k1,24534:14273018,11359371:170580 +k1,24534:15819200,11359371:170581 +k1,24534:17671435,11359371:170581 +k1,24534:20244566,11359371:170581 +k1,24534:21606592,11359371:170581 +k1,24534:24034888,11359371:170581 +k1,24534:24864761,11359371:170581 +k1,24534:26732068,11359371:170580 +k1,24534:28389661,11359371:170581 +k1,24534:29632411,11359371:170581 +k1,24534:31088808,11359371:170581 +k1,24534:32583029,11359371:0 +) +(1,24535:6630773,12224451:25952256,513147,7863 +k1,24535:32583028,12224451:21875916 +g1,24535:32583028,12224451 +) +(1,24537:6630773,13089531:25952256,513147,134348 +h1,24536:6630773,13089531:983040,0,0 +k1,24536:10118843,13089531:464239 +k1,24536:11889214,13089531:464238 +k1,24536:13336493,13089531:464239 +(1,24536:13336493,13089531:0,459977,115847 +r1,24598:20377284,13089531:7040791,575824,115847 +k1,24536:13336493,13089531:-7040791 +) +(1,24536:13336493,13089531:7040791,459977,115847 +k1,24536:13336493,13089531:3277 +h1,24536:20374007,13089531:0,411205,112570 +) +k1,24536:21015193,13089531:464239 +k1,24536:24841429,13089531:464239 +k1,24536:30024259,13089531:464238 +k1,24536:32051532,13089531:464239 +k1,24536:32583029,13089531:0 +) +(1,24537:6630773,13954611:25952256,513147,134348 +k1,24536:9237420,13954611:261113 +k1,24536:10892484,13954611:261113 +k1,24536:13849093,13954611:261113 +(1,24536:13849093,13954611:0,452978,115847 +r1,24598:17021053,13954611:3171960,568825,115847 +k1,24536:13849093,13954611:-3171960 +) +(1,24536:13849093,13954611:3171960,452978,115847 +k1,24536:13849093,13954611:3277 +h1,24536:17017776,13954611:0,411205,112570 +) +k1,24536:17455836,13954611:261113 +k1,24536:18913636,13954611:261113 +k1,24536:21134274,13954611:261112 +k1,24536:24174114,13954611:261113 +k1,24536:24966724,13954611:261113 +k1,24536:27039252,13954611:261113 +k1,24536:27951793,13954611:261113 +(1,24536:27951793,13954611:0,452978,115847 +r1,24598:32530601,13954611:4578808,568825,115847 +k1,24536:27951793,13954611:-4578808 +) +(1,24536:27951793,13954611:4578808,452978,115847 +k1,24536:27951793,13954611:3277 +h1,24536:32527324,13954611:0,411205,112570 +) +k1,24536:32583029,13954611:0 +) +(1,24537:6630773,14819691:25952256,513147,134348 +k1,24536:8138101,14819691:148111 +k1,24536:10245739,14819691:148112 +k1,24536:13095899,14819691:148111 +k1,24536:14619611,14819691:148111 +k1,24536:15538426,14819691:148112 +k1,24536:17435693,14819691:148111 +k1,24536:18235232,14819691:148111 +k1,24536:19402428,14819691:148111 +k1,24536:20533580,14819691:148112 +k1,24536:23604597,14819691:148111 +k1,24536:25760731,14819691:148111 +k1,24536:28840268,14819691:148112 +k1,24536:29519876,14819691:148111 +k1,24536:32583029,14819691:0 +) +(1,24537:6630773,15684771:25952256,513147,126483 +g1,24536:8197739,15684771 +g1,24536:8752828,15684771 +g1,24536:10051751,15684771 +g1,24536:10902408,15684771 +(1,24536:10902408,15684771:0,452978,115847 +r1,24598:12667521,15684771:1765113,568825,115847 +k1,24536:10902408,15684771:-1765113 +) +(1,24536:10902408,15684771:1765113,452978,115847 +k1,24536:10902408,15684771:3277 +h1,24536:12664244,15684771:0,411205,112570 +) +g1,24536:13040420,15684771 +g1,24536:13697746,15684771 +g1,24536:15570109,15684771 +g1,24536:16788423,15684771 +g1,24536:18223006,15684771 +g1,24536:19081527,15684771 +g1,24536:19636616,15684771 +g1,24536:20818885,15684771 +k1,24537:32583029,15684771:8205539 +g1,24537:32583029,15684771 +) +v1,24539:6630773,16369626:0,393216,0 +(1,24563:6630773,29148953:25952256,13172543,196608 +g1,24563:6630773,29148953 +g1,24563:6630773,29148953 +g1,24563:6434165,29148953 +(1,24563:6434165,29148953:0,13172543,196608 +r1,24598:32779637,29148953:26345472,13369151,196608 +k1,24563:6434165,29148953:-26345472 +) +(1,24563:6434165,29148953:26345472,13172543,196608 +[1,24563:6630773,29148953:25952256,12975935,0 +(1,24541:6630773,16604063:25952256,431045,106246 +(1,24540:6630773,16604063:0,0,0 +g1,24540:6630773,16604063 +g1,24540:6630773,16604063 +g1,24540:6303093,16604063 +(1,24540:6303093,16604063:0,0,0 +) +g1,24540:6630773,16604063 +) +g1,24541:11278128,16604063 +g1,24541:12273990,16604063 +k1,24541:12273990,16604063:0 +h1,24541:25220193,16604063:0,0,0 +k1,24541:32583029,16604063:7362836 +g1,24541:32583029,16604063 +) +(1,24542:6630773,17288918:25952256,424439,86428 +h1,24542:6630773,17288918:0,0,0 +g1,24542:12937898,17288918 +g1,24542:16257437,17288918 +g1,24542:16921345,17288918 +h1,24542:17585253,17288918:0,0,0 +k1,24542:32583029,17288918:14997776 +g1,24542:32583029,17288918 +) +(1,24562:6630773,18104845:25952256,431045,9908 +(1,24544:6630773,18104845:0,0,0 +g1,24544:6630773,18104845 +g1,24544:6630773,18104845 +g1,24544:6303093,18104845 +(1,24544:6303093,18104845:0,0,0 +) +g1,24544:6630773,18104845 +) +g1,24562:7626635,18104845 +g1,24562:9286405,18104845 +g1,24562:10282267,18104845 +h1,24562:10946175,18104845:0,0,0 +k1,24562:32583029,18104845:21636854 +g1,24562:32583029,18104845 +) +(1,24562:6630773,18789700:25952256,431045,106246 +h1,24562:6630773,18789700:0,0,0 +g1,24562:7626635,18789700 +g1,24562:7958589,18789700 +g1,24562:8622497,18789700 +g1,24562:11610082,18789700 +g1,24562:11942036,18789700 +g1,24562:12273990,18789700 +g1,24562:12937898,18789700 +g1,24562:14265714,18789700 +h1,24562:24224331,18789700:0,0,0 +k1,24562:32583029,18789700:8358698 +g1,24562:32583029,18789700 +) +(1,24562:6630773,19474555:25952256,431045,112852 +h1,24562:6630773,19474555:0,0,0 +g1,24562:7626635,19474555 +g1,24562:7958589,19474555 +g1,24562:8622497,19474555 +g1,24562:11610082,19474555 +g1,24562:11942036,19474555 +g1,24562:12273990,19474555 +g1,24562:12937898,19474555 +g1,24562:14597668,19474555 +h1,24562:16257438,19474555:0,0,0 +k1,24562:32583029,19474555:16325591 +g1,24562:32583029,19474555 +) +(1,24562:6630773,20159410:25952256,431045,33029 +h1,24562:6630773,20159410:0,0,0 +g1,24562:7626635,20159410 +g1,24562:7958589,20159410 +g1,24562:8622497,20159410 +g1,24562:9618359,20159410 +g1,24562:9950313,20159410 +g1,24562:10282267,20159410 +g1,24562:10614221,20159410 +g1,24562:10946175,20159410 +g1,24562:11278129,20159410 +g1,24562:11610083,20159410 +g1,24562:11942037,20159410 +g1,24562:12273991,20159410 +g1,24562:12937899,20159410 +g1,24562:14265715,20159410 +h1,24562:15925485,20159410:0,0,0 +k1,24562:32583029,20159410:16657544 +g1,24562:32583029,20159410 +) +(1,24562:6630773,20844265:25952256,431045,112852 +h1,24562:6630773,20844265:0,0,0 +g1,24562:7626635,20844265 +g1,24562:7958589,20844265 +g1,24562:8622497,20844265 +g1,24562:10614221,20844265 +g1,24562:10946175,20844265 +g1,24562:11278129,20844265 +g1,24562:11610083,20844265 +g1,24562:11942037,20844265 +g1,24562:12273991,20844265 +g1,24562:12937899,20844265 +g1,24562:14597669,20844265 +h1,24562:16257439,20844265:0,0,0 +k1,24562:32583029,20844265:16325590 +g1,24562:32583029,20844265 +) +(1,24562:6630773,21529120:25952256,431045,112852 +h1,24562:6630773,21529120:0,0,0 +g1,24562:7626635,21529120 +g1,24562:7958589,21529120 +g1,24562:8622497,21529120 +g1,24562:11610082,21529120 +g1,24562:11942036,21529120 +g1,24562:12273990,21529120 +g1,24562:12937898,21529120 +g1,24562:14597668,21529120 +h1,24562:16257438,21529120:0,0,0 +k1,24562:32583029,21529120:16325591 +g1,24562:32583029,21529120 +) +(1,24562:6630773,22213975:25952256,431045,52847 +h1,24562:6630773,22213975:0,0,0 +g1,24562:7626635,22213975 +g1,24562:7958589,22213975 +g1,24562:8622497,22213975 +g1,24562:10946175,22213975 +g1,24562:11278129,22213975 +g1,24562:11610083,22213975 +g1,24562:11942037,22213975 +g1,24562:12273991,22213975 +g1,24562:12937899,22213975 +g1,24562:14265715,22213975 +h1,24562:23228471,22213975:0,0,0 +k1,24562:32583029,22213975:9354558 +g1,24562:32583029,22213975 +) +(1,24562:6630773,22898830:25952256,431045,112852 +h1,24562:6630773,22898830:0,0,0 +g1,24562:7626635,22898830 +g1,24562:7958589,22898830 +g1,24562:8622497,22898830 +g1,24562:10946175,22898830 +g1,24562:11278129,22898830 +g1,24562:11610083,22898830 +g1,24562:11942037,22898830 +g1,24562:12273991,22898830 +g1,24562:12937899,22898830 +g1,24562:14597669,22898830 +h1,24562:16257439,22898830:0,0,0 +k1,24562:32583029,22898830:16325590 +g1,24562:32583029,22898830 +) +(1,24562:6630773,23583685:25952256,431045,112852 +h1,24562:6630773,23583685:0,0,0 +g1,24562:7626635,23583685 +g1,24562:7958589,23583685 +g1,24562:8622497,23583685 +g1,24562:10946175,23583685 +g1,24562:11278129,23583685 +g1,24562:11610083,23583685 +g1,24562:11942037,23583685 +g1,24562:12273991,23583685 +g1,24562:14265715,23583685 +g1,24562:15261577,23583685 +h1,24562:15593531,23583685:0,0,0 +k1,24562:32583029,23583685:16989498 +g1,24562:32583029,23583685 +) +(1,24562:6630773,24268540:25952256,431045,112852 +h1,24562:6630773,24268540:0,0,0 +g1,24562:7626635,24268540 +g1,24562:7958589,24268540 +g1,24562:8622497,24268540 +g1,24562:14265714,24268540 +g1,24562:15261576,24268540 +h1,24562:15593530,24268540:0,0,0 +k1,24562:32583030,24268540:16989500 +g1,24562:32583030,24268540 +) +(1,24562:6630773,24953395:25952256,431045,33029 +h1,24562:6630773,24953395:0,0,0 +g1,24562:7626635,24953395 +g1,24562:7958589,24953395 +g1,24562:8622497,24953395 +g1,24562:10614221,24953395 +g1,24562:10946175,24953395 +g1,24562:11278129,24953395 +g1,24562:11610083,24953395 +g1,24562:11942037,24953395 +g1,24562:12273991,24953395 +g1,24562:12937899,24953395 +g1,24562:14265715,24953395 +h1,24562:14597669,24953395:0,0,0 +k1,24562:32583029,24953395:17985360 +g1,24562:32583029,24953395 +) +(1,24562:6630773,25638250:25952256,431045,33029 +h1,24562:6630773,25638250:0,0,0 +g1,24562:7626635,25638250 +g1,24562:7958589,25638250 +g1,24562:8622497,25638250 +g1,24562:10614221,25638250 +g1,24562:10946175,25638250 +g1,24562:11278129,25638250 +g1,24562:11610083,25638250 +g1,24562:11942037,25638250 +g1,24562:12273991,25638250 +g1,24562:12937899,25638250 +g1,24562:14265715,25638250 +h1,24562:14597669,25638250:0,0,0 +k1,24562:32583029,25638250:17985360 +g1,24562:32583029,25638250 +) +(1,24562:6630773,26323105:25952256,431045,33029 +h1,24562:6630773,26323105:0,0,0 +g1,24562:7626635,26323105 +g1,24562:7958589,26323105 +g1,24562:8622497,26323105 +g1,24562:9950313,26323105 +g1,24562:10282267,26323105 +g1,24562:10614221,26323105 +g1,24562:10946175,26323105 +g1,24562:11278129,26323105 +g1,24562:11610083,26323105 +g1,24562:11942037,26323105 +g1,24562:12273991,26323105 +g1,24562:14265715,26323105 +g1,24562:15261577,26323105 +h1,24562:15593531,26323105:0,0,0 +k1,24562:32583029,26323105:16989498 +g1,24562:32583029,26323105 +) +(1,24562:6630773,27007960:25952256,431045,33029 +h1,24562:6630773,27007960:0,0,0 +g1,24562:7626635,27007960 +g1,24562:7958589,27007960 +g1,24562:8622497,27007960 +g1,24562:12273990,27007960 +g1,24562:12937898,27007960 +g1,24562:14265714,27007960 +k1,24562:14265714,27007960:0 +h1,24562:14929622,27007960:0,0,0 +k1,24562:32583030,27007960:17653408 +g1,24562:32583030,27007960 +) +(1,24562:6630773,27692815:25952256,431045,33029 +h1,24562:6630773,27692815:0,0,0 +g1,24562:7626635,27692815 +g1,24562:7958589,27692815 +g1,24562:8622497,27692815 +g1,24562:10614221,27692815 +g1,24562:10946175,27692815 +g1,24562:11278129,27692815 +g1,24562:11610083,27692815 +g1,24562:11942037,27692815 +g1,24562:12273991,27692815 +g1,24562:12937899,27692815 +g1,24562:14265715,27692815 +h1,24562:14597669,27692815:0,0,0 +k1,24562:32583029,27692815:17985360 +g1,24562:32583029,27692815 +) +(1,24562:6630773,28377670:25952256,431045,33029 +h1,24562:6630773,28377670:0,0,0 +g1,24562:7626635,28377670 +g1,24562:7958589,28377670 +g1,24562:8622497,28377670 +g1,24562:9950313,28377670 +g1,24562:10282267,28377670 +g1,24562:10614221,28377670 +g1,24562:10946175,28377670 +g1,24562:11278129,28377670 +g1,24562:11610083,28377670 +g1,24562:11942037,28377670 +g1,24562:12273991,28377670 +g1,24562:14265715,28377670 +g1,24562:15261577,28377670 +h1,24562:15593531,28377670:0,0,0 +k1,24562:32583029,28377670:16989498 +g1,24562:32583029,28377670 +) +(1,24562:6630773,29062525:25952256,431045,86428 +h1,24562:6630773,29062525:0,0,0 +g1,24562:7626635,29062525 +g1,24562:7958589,29062525 +g1,24562:8622497,29062525 +g1,24562:11278129,29062525 +g1,24562:14597668,29062525 +g1,24562:15925484,29062525 +h1,24562:18249162,29062525:0,0,0 +k1,24562:32583029,29062525:14333867 +g1,24562:32583029,29062525 +) +] +) +g1,24563:32583029,29148953 +g1,24563:6630773,29148953 +g1,24563:6630773,29148953 +g1,24563:32583029,29148953 +g1,24563:32583029,29148953 +) +h1,24563:6630773,29345561:0,0,0 +v1,24567:6630773,30210641:0,393216,0 +(1,24568:6630773,33248527:25952256,3431102,0 +g1,24568:6630773,33248527 +g1,24568:6237557,33248527 +r1,24598:6368629,33248527:131072,3431102,0 +g1,24568:6567858,33248527 +g1,24568:6764466,33248527 +[1,24568:6764466,33248527:25818563,3431102,0 +(1,24568:6764466,30518939:25818563,701514,196608 +(1,24567:6764466,30518939:0,701514,196608 +r1,24598:8471973,30518939:1707507,898122,196608 +k1,24567:6764466,30518939:-1707507 +) +(1,24567:6764466,30518939:1707507,701514,196608 +) +k1,24567:8671463,30518939:199490 +k1,24567:10805971,30518939:327680 +k1,24567:13636077,30518939:199491 +(1,24567:13636077,30518939:0,452978,115847 +r1,24598:16808037,30518939:3171960,568825,115847 +k1,24567:13636077,30518939:-3171960 +) +(1,24567:13636077,30518939:3171960,452978,115847 +k1,24567:13636077,30518939:3277 +h1,24567:16804760,30518939:0,411205,112570 +) +k1,24567:17007527,30518939:199490 +k1,24567:17823055,30518939:199490 +k1,24567:19041631,30518939:199491 +k1,24567:20340815,30518939:199490 +k1,24567:21191733,30518939:199490 +(1,24567:21191733,30518939:0,452978,115847 +r1,24598:22956846,30518939:1765113,568825,115847 +k1,24567:21191733,30518939:-1765113 +) +(1,24567:21191733,30518939:1765113,452978,115847 +k1,24567:21191733,30518939:3277 +h1,24567:22953569,30518939:0,411205,112570 +) +k1,24567:23156336,30518939:199490 +k1,24567:25211151,30518939:199491 +k1,24567:26602086,30518939:199490 +k1,24567:28585466,30518939:199490 +k1,24567:30115338,30518939:199491 +k1,24567:31333913,30518939:199490 +k1,24568:32583029,30518939:0 +) +(1,24568:6764466,31384019:25818563,513147,134348 +k1,24567:9372560,31384019:244866 +k1,24567:11576953,31384019:244867 +k1,24567:13769549,31384019:244866 +k1,24567:17821401,31384019:244866 +k1,24567:18875638,31384019:244867 +k1,24567:20139589,31384019:244866 +k1,24567:24059715,31384019:244867 +k1,24567:25496026,31384019:244866 +k1,24567:26688543,31384019:244866 +k1,24567:28385032,31384019:244867 +k1,24567:30019261,31384019:244866 +k1,24567:32583029,31384019:0 +) +(1,24568:6764466,32249099:25818563,513147,126483 +k1,24567:8222500,32249099:226612 +k1,24567:9553394,32249099:226612 +k1,24567:11065821,32249099:226611 +(1,24567:11065821,32249099:0,452978,115847 +r1,24598:18106612,32249099:7040791,568825,115847 +k1,24567:11065821,32249099:-7040791 +) +(1,24567:11065821,32249099:7040791,452978,115847 +k1,24567:11065821,32249099:3277 +h1,24567:18103335,32249099:0,411205,112570 +) +k1,24567:18333224,32249099:226612 +k1,24567:19507487,32249099:226612 +k1,24567:20089959,32249099:226612 +k1,24567:21966768,32249099:226612 +k1,24567:25118907,32249099:226612 +k1,24567:27993828,32249099:226611 +k1,24567:29710729,32249099:226612 +k1,24567:31107814,32249099:226612 +k1,24567:32583029,32249099:0 +) +(1,24568:6764466,33114179:25818563,513147,134348 +g1,24567:10646818,33114179 +g1,24567:11865132,33114179 +g1,24567:14995786,33114179 +g1,24567:15854307,33114179 +g1,24567:17072621,33114179 +k1,24568:32583029,33114179:13498453 +g1,24568:32583029,33114179 +) +] +g1,24568:32583029,33248527 +) +h1,24568:6630773,33248527:0,0,0 +(1,24571:6630773,34113607:25952256,513147,126483 +h1,24570:6630773,34113607:983040,0,0 +k1,24570:9016704,34113607:206204 +k1,24570:12898168,34113607:206205 +k1,24570:13763664,34113607:206204 +k1,24570:14988953,34113607:206204 +k1,24570:16584521,34113607:206205 +k1,24570:18440266,34113607:206204 +k1,24570:19638031,34113607:206205 +k1,24570:21882405,34113607:206204 +k1,24570:22774771,34113607:206204 +k1,24570:26124083,34113607:206205 +k1,24570:26946325,34113607:206204 +k1,24570:28171614,34113607:206204 +k1,24570:29360859,34113607:206205 +k1,24570:31080289,34113607:206204 +k1,24571:32583029,34113607:0 +) +(1,24571:6630773,34978687:25952256,513147,134348 +k1,24570:8228049,34978687:186286 +k1,24570:10841133,34978687:186286 +k1,24570:11678847,34978687:186286 +k1,24570:12220993,34978687:186286 +k1,24570:13691785,34978687:186286 +k1,24570:14537363,34978687:186286 +k1,24570:17512861,34978687:186286 +k1,24570:18890592,34978687:186286 +k1,24570:22436910,34978687:186287 +k1,24570:23814641,34978687:186286 +k1,24570:25268393,34978687:186286 +k1,24570:25810539,34978687:186286 +k1,24570:27422233,34978687:186286 +k1,24570:29586396,34978687:186286 +k1,24570:30458844,34978687:186286 +k1,24570:31000990,34978687:186286 +k1,24570:32583029,34978687:0 +) +(1,24571:6630773,35843767:25952256,505283,134348 +k1,24570:10386838,35843767:237437 +k1,24570:11820962,35843767:237437 +k1,24570:13769543,35843767:237436 +k1,24570:14998540,35843767:237437 +k1,24570:18014704,35843767:237437 +k1,24570:18938303,35843767:237437 +k1,24570:22150419,35843767:237437 +k1,24570:24757637,35843767:237436 +k1,24570:26191761,35843767:237437 +k1,24570:29270839,35843767:237437 +k1,24570:32583029,35843767:0 +) +(1,24571:6630773,36708847:25952256,513147,134348 +g1,24570:7849087,36708847 +g1,24570:9332822,36708847 +g1,24570:10523611,36708847 +g1,24570:12135141,36708847 +g1,24570:13491080,36708847 +g1,24570:14303071,36708847 +g1,24570:14858160,36708847 +g1,24570:16482797,36708847 +g1,24570:18075977,36708847 +g1,24570:20970702,36708847 +(1,24570:20970702,36708847:0,452978,122846 +r1,24598:24846086,36708847:3875384,575824,122846 +k1,24570:20970702,36708847:-3875384 +) +(1,24570:20970702,36708847:3875384,452978,122846 +k1,24570:20970702,36708847:3277 +h1,24570:24842809,36708847:0,411205,112570 +) +k1,24571:32583029,36708847:7684515 +g1,24571:32583029,36708847 +) +v1,24573:6630773,37393702:0,393216,0 +(1,24595:6630773,43835555:25952256,6835069,196608 +g1,24595:6630773,43835555 +g1,24595:6630773,43835555 +g1,24595:6434165,43835555 +(1,24595:6434165,43835555:0,6835069,196608 +r1,24598:32779637,43835555:26345472,7031677,196608 +k1,24595:6434165,43835555:-26345472 +) +(1,24595:6434165,43835555:26345472,6835069,196608 +[1,24595:6630773,43835555:25952256,6638461,0 +(1,24575:6630773,37621533:25952256,424439,112852 +(1,24574:6630773,37621533:0,0,0 +g1,24574:6630773,37621533 +g1,24574:6630773,37621533 +g1,24574:6303093,37621533 +(1,24574:6303093,37621533:0,0,0 +) +g1,24574:6630773,37621533 +) +g1,24575:9618358,37621533 +g1,24575:10614220,37621533 +g1,24575:18913068,37621533 +h1,24575:21236746,37621533:0,0,0 +k1,24575:32583029,37621533:11346283 +g1,24575:32583029,37621533 +) +(1,24576:6630773,38306388:25952256,424439,79822 +h1,24576:6630773,38306388:0,0,0 +k1,24576:6630773,38306388:0 +h1,24576:11278128,38306388:0,0,0 +k1,24576:32583028,38306388:21304900 +g1,24576:32583028,38306388 +) +(1,24580:6630773,39122315:25952256,424439,79822 +(1,24578:6630773,39122315:0,0,0 +g1,24578:6630773,39122315 +g1,24578:6630773,39122315 +g1,24578:6303093,39122315 +(1,24578:6303093,39122315:0,0,0 +) +g1,24578:6630773,39122315 +) +g1,24580:7626635,39122315 +g1,24580:8954451,39122315 +g1,24580:11610083,39122315 +g1,24580:14265715,39122315 +g1,24580:16921347,39122315 +g1,24580:19576979,39122315 +g1,24580:22232611,39122315 +k1,24580:22232611,39122315:0 +h1,24580:24556289,39122315:0,0,0 +k1,24580:32583029,39122315:8026740 +g1,24580:32583029,39122315 +) +(1,24582:6630773,39938242:25952256,424439,112852 +(1,24581:6630773,39938242:0,0,0 +g1,24581:6630773,39938242 +g1,24581:6630773,39938242 +g1,24581:6303093,39938242 +(1,24581:6303093,39938242:0,0,0 +) +g1,24581:6630773,39938242 +) +g1,24582:9950312,39938242 +g1,24582:10946174,39938242 +g1,24582:11278128,39938242 +g1,24582:19576976,39938242 +h1,24582:21568700,39938242:0,0,0 +k1,24582:32583029,39938242:11014329 +g1,24582:32583029,39938242 +) +(1,24583:6630773,40623097:25952256,424439,112852 +h1,24583:6630773,40623097:0,0,0 +k1,24583:6630773,40623097:0 +h1,24583:11610082,40623097:0,0,0 +k1,24583:32583030,40623097:20972948 +g1,24583:32583030,40623097 +) +(1,24587:6630773,41439024:25952256,424439,79822 +(1,24585:6630773,41439024:0,0,0 +g1,24585:6630773,41439024 +g1,24585:6630773,41439024 +g1,24585:6303093,41439024 +(1,24585:6303093,41439024:0,0,0 +) +g1,24585:6630773,41439024 +) +g1,24587:7626635,41439024 +g1,24587:8954451,41439024 +g1,24587:10946175,41439024 +g1,24587:12937899,41439024 +g1,24587:14929623,41439024 +g1,24587:16921347,41439024 +g1,24587:18913071,41439024 +h1,24587:20572841,41439024:0,0,0 +k1,24587:32583029,41439024:12010188 +g1,24587:32583029,41439024 +) +(1,24589:6630773,42254951:25952256,424439,112852 +(1,24588:6630773,42254951:0,0,0 +g1,24588:6630773,42254951 +g1,24588:6630773,42254951 +g1,24588:6303093,42254951 +(1,24588:6303093,42254951:0,0,0 +) +g1,24588:6630773,42254951 +) +g1,24589:9618358,42254951 +g1,24589:10614220,42254951 +g1,24589:18913068,42254951 +h1,24589:20904792,42254951:0,0,0 +k1,24589:32583029,42254951:11678237 +g1,24589:32583029,42254951 +) +(1,24590:6630773,42939806:25952256,424439,79822 +h1,24590:6630773,42939806:0,0,0 +k1,24590:6630773,42939806:0 +h1,24590:11278128,42939806:0,0,0 +k1,24590:32583028,42939806:21304900 +g1,24590:32583028,42939806 +) +(1,24594:6630773,43755733:25952256,424439,79822 +(1,24592:6630773,43755733:0,0,0 +g1,24592:6630773,43755733 +g1,24592:6630773,43755733 +g1,24592:6303093,43755733 +(1,24592:6303093,43755733:0,0,0 +) +g1,24592:6630773,43755733 +) +g1,24594:7626635,43755733 +g1,24594:8954451,43755733 +g1,24594:11610083,43755733 +g1,24594:14265715,43755733 +g1,24594:16921347,43755733 +g1,24594:19576979,43755733 +g1,24594:22232611,43755733 +h1,24594:24556289,43755733:0,0,0 +k1,24594:32583029,43755733:8026740 +g1,24594:32583029,43755733 +) +] +) +g1,24595:32583029,43835555 +g1,24595:6630773,43835555 +g1,24595:6630773,43835555 +g1,24595:32583029,43835555 +g1,24595:32583029,43835555 +) +h1,24595:6630773,44032163:0,0,0 +] +(1,24598:32583029,45706769:0,0,0 +g1,24598:32583029,45706769 +) +) +] +(1,24598:6630773,47279633:25952256,0,0 +h1,24598:6630773,47279633:25952256,0,0 ) ] -(1,24600:4262630,4025873:0,0,0 -[1,24600:-473656,4025873:0,0,0 -(1,24600:-473656,-710413:0,0,0 -(1,24600:-473656,-710413:0,0,0 -g1,24600:-473656,-710413 +(1,24598:4262630,4025873:0,0,0 +[1,24598:-473656,4025873:0,0,0 +(1,24598:-473656,-710413:0,0,0 +(1,24598:-473656,-710413:0,0,0 +g1,24598:-473656,-710413 ) -g1,24600:-473656,-710413 +g1,24598:-473656,-710413 ) ] ) ] !26200 -}422 -Input:4581:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4582:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4583:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4584:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}423 Input:4585:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4586:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4587:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4588:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4589:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{423 -[1,24671:4262630,47279633:28320399,43253760,0 -(1,24671:4262630,4025873:0,0,0 -[1,24671:-473656,4025873:0,0,0 -(1,24671:-473656,-710413:0,0,0 -(1,24671:-473656,-644877:0,0,0 -k1,24671:-473656,-644877:-65536 +{424 +[1,24669:4262630,47279633:28320399,43253760,0 +(1,24669:4262630,4025873:0,0,0 +[1,24669:-473656,4025873:0,0,0 +(1,24669:-473656,-710413:0,0,0 +(1,24669:-473656,-644877:0,0,0 +k1,24669:-473656,-644877:-65536 ) -(1,24671:-473656,4736287:0,0,0 -k1,24671:-473656,4736287:5209943 +(1,24669:-473656,4736287:0,0,0 +k1,24669:-473656,4736287:5209943 ) -g1,24671:-473656,-710413 +g1,24669:-473656,-710413 ) ] ) -[1,24671:6630773,47279633:25952256,43253760,0 -[1,24671:6630773,4812305:25952256,786432,0 -(1,24671:6630773,4812305:25952256,505283,134348 -(1,24671:6630773,4812305:25952256,505283,134348 -g1,24671:3078558,4812305 -[1,24671:3078558,4812305:0,0,0 -(1,24671:3078558,2439708:0,1703936,0 -k1,24671:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24671:2537886,2439708:1179648,16384,0 +[1,24669:6630773,47279633:25952256,43253760,0 +[1,24669:6630773,4812305:25952256,786432,0 +(1,24669:6630773,4812305:25952256,505283,134348 +(1,24669:6630773,4812305:25952256,505283,134348 +g1,24669:3078558,4812305 +[1,24669:3078558,4812305:0,0,0 +(1,24669:3078558,2439708:0,1703936,0 +k1,24669:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24669:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24671:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24669:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24671:3078558,4812305:0,0,0 -(1,24671:3078558,2439708:0,1703936,0 -g1,24671:29030814,2439708 -g1,24671:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24671:36151628,1915420:16384,1179648,0 +[1,24669:3078558,4812305:0,0,0 +(1,24669:3078558,2439708:0,1703936,0 +g1,24669:29030814,2439708 +g1,24669:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24669:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24671:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24669:37855564,2439708:1179648,16384,0 ) ) -k1,24671:3078556,2439708:-34777008 +k1,24669:3078556,2439708:-34777008 ) ] -[1,24671:3078558,4812305:0,0,0 -(1,24671:3078558,49800853:0,16384,2228224 -k1,24671:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24671:2537886,49800853:1179648,16384,0 +[1,24669:3078558,4812305:0,0,0 +(1,24669:3078558,49800853:0,16384,2228224 +k1,24669:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24669:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24671:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24669:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24671:3078558,4812305:0,0,0 -(1,24671:3078558,49800853:0,16384,2228224 -g1,24671:29030814,49800853 -g1,24671:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24671:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24671:37855564,49800853:1179648,16384,0 -) -) -k1,24671:3078556,49800853:-34777008 -) -] -g1,24671:6630773,4812305 -k1,24671:21114230,4812305:13288080 -g1,24671:22736901,4812305 -g1,24671:23350318,4812305 -g1,24671:24759997,4812305 -g1,24671:28372341,4812305 -g1,24671:30105768,4812305 -) -) -] -[1,24671:6630773,45706769:25952256,40108032,0 -(1,24671:6630773,45706769:25952256,40108032,0 -(1,24671:6630773,45706769:0,0,0 -g1,24671:6630773,45706769 -) -[1,24671:6630773,45706769:25952256,40108032,0 -(1,24602:6630773,6254097:25952256,513147,134348 -h1,24601:6630773,6254097:983040,0,0 -k1,24601:9040931,6254097:230431 -(1,24601:9040931,6254097:0,452978,115847 -r1,24671:10454332,6254097:1413401,568825,115847 -k1,24601:9040931,6254097:-1413401 -) -(1,24601:9040931,6254097:1413401,452978,115847 -k1,24601:9040931,6254097:3277 -h1,24601:10451055,6254097:0,411205,112570 -) -k1,24601:10684763,6254097:230431 -k1,24601:12893071,6254097:230431 -k1,24601:15825552,6254097:230432 -k1,24601:17431584,6254097:230431 -k1,24601:20329330,6254097:230431 -k1,24601:22570406,6254097:230431 -k1,24601:23486999,6254097:230431 -k1,24601:24736516,6254097:230432 -k1,24601:25949987,6254097:230431 -k1,24601:28882467,6254097:230431 -k1,24601:29468758,6254097:230431 -k1,24601:32583029,6254097:0 -) -(1,24602:6630773,7119177:25952256,513147,134348 -k1,24601:8679887,7119177:204276 -k1,24601:9543454,7119177:204275 -k1,24601:12415045,7119177:204276 -k1,24601:15549436,7119177:204276 -k1,24601:18951214,7119177:204276 -k1,24601:19841651,7119177:204275 -k1,24601:21513933,7119177:204276 -k1,24601:23285830,7119177:204276 -k1,24601:27103760,7119177:204275 -k1,24601:31931601,7119177:204276 -k1,24601:32583029,7119177:0 -) -(1,24602:6630773,7984257:25952256,513147,134348 -k1,24601:7853850,7984257:203992 -k1,24601:9363975,7984257:203992 -k1,24601:10705671,7984257:203991 -k1,24601:11568955,7984257:203992 -k1,24601:13224569,7984257:203992 -k1,24601:15529645,7984257:203992 -k1,24601:16392929,7984257:203992 -k1,24601:17949583,7984257:203991 -k1,24601:19326014,7984257:203992 -k1,24601:20483555,7984257:203992 -k1,24601:21780032,7984257:203992 -k1,24601:24564176,7984257:203992 -k1,24601:27966323,7984257:203991 -k1,24601:29117966,7984257:203992 -k1,24601:30341043,7984257:203992 -k1,24602:32583029,7984257:0 -) -(1,24602:6630773,8849337:25952256,513147,134348 -k1,24601:8340812,8849337:195502 -k1,24601:9365344,8849337:195502 -k1,24601:10827002,8849337:195502 -k1,24601:12041589,8849337:195502 -k1,24601:14663889,8849337:195502 -k1,24601:15807042,8849337:195502 -k1,24601:17021629,8849337:195502 -k1,24601:18501636,8849337:195501 -k1,24601:20385345,8849337:195502 -k1,24601:21240139,8849337:195502 -k1,24601:24052494,8849337:195502 -k1,24601:24706093,8849337:195502 -k1,24601:25433092,8849337:195502 -k1,24601:28737622,8849337:195502 -k1,24601:29584552,8849337:195502 -k1,24601:31563944,8849337:195502 -k1,24601:32583029,8849337:0 -) -(1,24602:6630773,9714417:25952256,505283,122846 -g1,24601:9120485,9714417 -(1,24601:9120485,9714417:0,452978,122846 -r1,24671:12292445,9714417:3171960,575824,122846 -k1,24601:9120485,9714417:-3171960 -) -(1,24601:9120485,9714417:3171960,452978,122846 -k1,24601:9120485,9714417:3277 -h1,24601:12289168,9714417:0,411205,112570 -) -g1,24601:12491674,9714417 -g1,24601:13882348,9714417 -(1,24601:13882348,9714417:0,452978,115847 -r1,24671:16702597,9714417:2820249,568825,115847 -k1,24601:13882348,9714417:-2820249 -) -(1,24601:13882348,9714417:2820249,452978,115847 -k1,24601:13882348,9714417:3277 -h1,24601:16699320,9714417:0,411205,112570 -) -g1,24601:16901826,9714417 -g1,24601:18912470,9714417 -k1,24602:32583029,9714417:11762806 -g1,24602:32583029,9714417 -) -(1,24604:6630773,10579497:25952256,513147,134348 -h1,24603:6630773,10579497:983040,0,0 -k1,24603:9327689,10579497:252423 -k1,24603:10599196,10579497:252422 -k1,24603:13705057,10579497:252423 -k1,24603:20013006,10579497:252422 -k1,24603:20796926,10579497:252423 -k1,24603:22461650,10579497:252423 -k1,24603:23661723,10579497:252422 -k1,24603:25070856,10579497:252423 -k1,24603:26607784,10579497:252422 -k1,24603:28722085,10579497:252423 -k1,24603:30165952,10579497:252422 -k1,24603:31931601,10579497:252423 -k1,24603:32583029,10579497:0 -) -(1,24604:6630773,11444577:25952256,513147,126483 -g1,24603:9853833,11444577 -g1,24603:10408922,11444577 -g1,24603:11997514,11444577 -g1,24603:14246709,11444577 -g1,24603:15839889,11444577 -g1,24603:17731258,11444577 -g1,24603:19941132,11444577 -k1,24604:32583029,11444577:9952300 -g1,24604:32583029,11444577 -) -v1,24606:6630773,12129432:0,393216,0 -(1,24626:6630773,22086213:25952256,10349997,196608 -g1,24626:6630773,22086213 -g1,24626:6630773,22086213 -g1,24626:6434165,22086213 -(1,24626:6434165,22086213:0,10349997,196608 -r1,24671:32779637,22086213:26345472,10546605,196608 -k1,24626:6434165,22086213:-26345472 -) -(1,24626:6434165,22086213:26345472,10349997,196608 -[1,24626:6630773,22086213:25952256,10153389,0 -(1,24608:6630773,12357263:25952256,424439,106246 -(1,24607:6630773,12357263:0,0,0 -g1,24607:6630773,12357263 -g1,24607:6630773,12357263 -g1,24607:6303093,12357263 -(1,24607:6303093,12357263:0,0,0 -) -g1,24607:6630773,12357263 -) -g1,24608:8954451,12357263 -k1,24608:8954451,12357263:0 -h1,24608:9618359,12357263:0,0,0 -k1,24608:32583029,12357263:22964670 -g1,24608:32583029,12357263 -) -(1,24609:6630773,13042118:25952256,424439,86428 -h1,24609:6630773,13042118:0,0,0 -g1,24609:6962727,13042118 -g1,24609:7294681,13042118 -g1,24609:7626635,13042118 -g1,24609:7958589,13042118 -g1,24609:11942037,13042118 -g1,24609:12605945,13042118 -k1,24609:12605945,13042118:0 -h1,24609:15593530,13042118:0,0,0 -k1,24609:32583030,13042118:16989500 -g1,24609:32583030,13042118 -) -(1,24610:6630773,13726973:25952256,424439,106246 -h1,24610:6630773,13726973:0,0,0 -g1,24610:6962727,13726973 -g1,24610:7294681,13726973 -g1,24610:7626635,13726973 -g1,24610:7958589,13726973 -g1,24610:8290543,13726973 -g1,24610:8622497,13726973 -g1,24610:8954451,13726973 -g1,24610:9286405,13726973 -g1,24610:9618359,13726973 -g1,24610:9950313,13726973 -g1,24610:10282267,13726973 -g1,24610:12273991,13726973 -g1,24610:12937899,13726973 -g1,24610:20904795,13726973 -g1,24610:21568703,13726973 -k1,24610:21568703,13726973:0 -h1,24610:25552151,13726973:0,0,0 -k1,24610:32583029,13726973:7030878 -g1,24610:32583029,13726973 -) -(1,24611:6630773,14411828:25952256,424439,112852 -h1,24611:6630773,14411828:0,0,0 -g1,24611:6962727,14411828 -g1,24611:7294681,14411828 -g1,24611:7626635,14411828 -g1,24611:7958589,14411828 -g1,24611:8290543,14411828 -g1,24611:8622497,14411828 -g1,24611:8954451,14411828 -g1,24611:9286405,14411828 -g1,24611:9618359,14411828 -g1,24611:9950313,14411828 -g1,24611:10282267,14411828 -g1,24611:11610083,14411828 -g1,24611:12273991,14411828 -k1,24611:12273991,14411828:0 -h1,24611:16589392,14411828:0,0,0 -k1,24611:32583029,14411828:15993637 -g1,24611:32583029,14411828 -) -(1,24612:6630773,15096683:25952256,424439,86428 -h1,24612:6630773,15096683:0,0,0 -g1,24612:6962727,15096683 -g1,24612:7294681,15096683 -g1,24612:7626635,15096683 -g1,24612:7958589,15096683 -g1,24612:8290543,15096683 -g1,24612:8622497,15096683 -g1,24612:8954451,15096683 -g1,24612:9286405,15096683 -g1,24612:9618359,15096683 -g1,24612:9950313,15096683 -g1,24612:10282267,15096683 -g1,24612:11610083,15096683 -g1,24612:12273991,15096683 -k1,24612:12273991,15096683:0 -h1,24612:16257438,15096683:0,0,0 -k1,24612:32583029,15096683:16325591 -g1,24612:32583029,15096683 -) -(1,24613:6630773,15781538:25952256,424439,112852 -h1,24613:6630773,15781538:0,0,0 -g1,24613:6962727,15781538 -g1,24613:7294681,15781538 -g1,24613:7626635,15781538 -g1,24613:7958589,15781538 -g1,24613:8290543,15781538 -g1,24613:8622497,15781538 -g1,24613:8954451,15781538 -g1,24613:9286405,15781538 -g1,24613:9618359,15781538 -g1,24613:9950313,15781538 -g1,24613:10282267,15781538 -g1,24613:11610083,15781538 -g1,24613:12273991,15781538 -g1,24613:20572839,15781538 -g1,24613:24556287,15781538 -g1,24613:25552149,15781538 -h1,24613:25884103,15781538:0,0,0 -k1,24613:32583029,15781538:6698926 -g1,24613:32583029,15781538 -) -(1,24614:6630773,16466393:25952256,424439,79822 -h1,24614:6630773,16466393:0,0,0 -g1,24614:6962727,16466393 -g1,24614:7294681,16466393 -g1,24614:7626635,16466393 -g1,24614:7958589,16466393 -g1,24614:8290543,16466393 -g1,24614:8622497,16466393 -g1,24614:8954451,16466393 -g1,24614:9286405,16466393 -g1,24614:9618359,16466393 -g1,24614:9950313,16466393 -g1,24614:10282267,16466393 -h1,24614:10614221,16466393:0,0,0 -k1,24614:32583029,16466393:21968808 -g1,24614:32583029,16466393 -) -(1,24615:6630773,17151248:25952256,424439,106246 -h1,24615:6630773,17151248:0,0,0 -h1,24615:8622497,17151248:0,0,0 -k1,24615:32583029,17151248:23960532 -g1,24615:32583029,17151248 -) -(1,24625:6630773,17967175:25952256,424439,9908 -(1,24617:6630773,17967175:0,0,0 -g1,24617:6630773,17967175 -g1,24617:6630773,17967175 -g1,24617:6303093,17967175 -(1,24617:6303093,17967175:0,0,0 -) -g1,24617:6630773,17967175 -) -g1,24625:7626635,17967175 -g1,24625:8290543,17967175 -g1,24625:8954451,17967175 -g1,24625:11610083,17967175 -g1,24625:12605945,17967175 -g1,24625:13269853,17967175 -h1,24625:13601807,17967175:0,0,0 -k1,24625:32583029,17967175:18981222 -g1,24625:32583029,17967175 -) -(1,24625:6630773,18652030:25952256,424439,106246 -h1,24625:6630773,18652030:0,0,0 -g1,24625:7626635,18652030 -g1,24625:7958589,18652030 -g1,24625:8290543,18652030 -g1,24625:8622497,18652030 -g1,24625:8954451,18652030 -g1,24625:9286405,18652030 -g1,24625:9618359,18652030 -g1,24625:9950313,18652030 -g1,24625:11610083,18652030 -g1,24625:13601807,18652030 -g1,24625:13933761,18652030 -g1,24625:14265715,18652030 -g1,24625:15593531,18652030 -g1,24625:15925485,18652030 -g1,24625:16257439,18652030 -g1,24625:17585255,18652030 -g1,24625:17917209,18652030 -g1,24625:18249163,18652030 -h1,24625:19245025,18652030:0,0,0 -k1,24625:32583029,18652030:13338004 -g1,24625:32583029,18652030 -) -(1,24625:6630773,19336885:25952256,424439,79822 -h1,24625:6630773,19336885:0,0,0 -g1,24625:7626635,19336885 -g1,24625:7958589,19336885 -g1,24625:8290543,19336885 -g1,24625:11610082,19336885 -g1,24625:13601806,19336885 -g1,24625:15593530,19336885 -g1,24625:17585254,19336885 -k1,24625:17585254,19336885:0 -h1,24625:19245024,19336885:0,0,0 -k1,24625:32583029,19336885:13338005 -g1,24625:32583029,19336885 -) -(1,24625:6630773,20021740:25952256,407923,9908 -h1,24625:6630773,20021740:0,0,0 -g1,24625:7626635,20021740 -g1,24625:8290543,20021740 -g1,24625:8622497,20021740 -g1,24625:8954451,20021740 -g1,24625:11610083,20021740 -g1,24625:11942037,20021740 -g1,24625:12273991,20021740 -g1,24625:12605945,20021740 -g1,24625:13601807,20021740 -g1,24625:13933761,20021740 -g1,24625:15593531,20021740 -g1,24625:15925485,20021740 -g1,24625:17585255,20021740 -g1,24625:17917209,20021740 -h1,24625:19245025,20021740:0,0,0 -k1,24625:32583029,20021740:13338004 -g1,24625:32583029,20021740 -) -(1,24625:6630773,20706595:25952256,407923,9908 -h1,24625:6630773,20706595:0,0,0 -g1,24625:7626635,20706595 -g1,24625:8290543,20706595 -g1,24625:8622497,20706595 -g1,24625:8954451,20706595 -g1,24625:11610083,20706595 -g1,24625:11942037,20706595 -g1,24625:12273991,20706595 -g1,24625:12605945,20706595 -g1,24625:12937899,20706595 -g1,24625:13601807,20706595 -g1,24625:13933761,20706595 -g1,24625:15593531,20706595 -g1,24625:15925485,20706595 -g1,24625:17585255,20706595 -g1,24625:17917209,20706595 -h1,24625:19245025,20706595:0,0,0 -k1,24625:32583029,20706595:13338004 -g1,24625:32583029,20706595 -) -(1,24625:6630773,21391450:25952256,407923,9908 -h1,24625:6630773,21391450:0,0,0 -g1,24625:7626635,21391450 -g1,24625:8290543,21391450 -g1,24625:8622497,21391450 -g1,24625:8954451,21391450 -g1,24625:11610083,21391450 -g1,24625:11942037,21391450 -g1,24625:12273991,21391450 -g1,24625:12605945,21391450 -g1,24625:12937899,21391450 -g1,24625:13601807,21391450 -g1,24625:13933761,21391450 -g1,24625:15593531,21391450 -g1,24625:15925485,21391450 -g1,24625:17585255,21391450 -g1,24625:17917209,21391450 -h1,24625:19245025,21391450:0,0,0 -k1,24625:32583029,21391450:13338004 -g1,24625:32583029,21391450 -) -(1,24625:6630773,22076305:25952256,424439,9908 -h1,24625:6630773,22076305:0,0,0 -g1,24625:7626635,22076305 -g1,24625:8290543,22076305 -g1,24625:8954451,22076305 -g1,24625:9618359,22076305 -g1,24625:11278129,22076305 -h1,24625:12605945,22076305:0,0,0 -k1,24625:32583029,22076305:19977084 -g1,24625:32583029,22076305 -) -] -) -g1,24626:32583029,22086213 -g1,24626:6630773,22086213 -g1,24626:6630773,22086213 -g1,24626:32583029,22086213 -g1,24626:32583029,22086213 -) -h1,24626:6630773,22282821:0,0,0 -(1,24630:6630773,23147901:25952256,513147,134348 -h1,24629:6630773,23147901:983040,0,0 -k1,24629:8739959,23147901:297116 -k1,24629:9688504,23147901:297117 -k1,24629:11397921,23147901:297116 -k1,24629:12311075,23147901:297116 -k1,24629:14839692,23147901:297116 -k1,24629:16421315,23147901:297117 -k1,24629:18910610,23147901:297116 -k1,24629:21439227,23147901:297116 -k1,24629:24498687,23147901:297117 -k1,24629:28457955,23147901:297116 -k1,24629:29746631,23147901:297116 -k1,24629:32583029,23147901:0 -) -(1,24630:6630773,24012981:25952256,513147,134348 -k1,24629:9776938,24012981:211463 -k1,24629:11007485,24012981:211462 -k1,24629:12958274,24012981:211463 -k1,24629:13829029,24012981:211463 -k1,24629:16380126,24012981:211462 -k1,24629:17250881,24012981:211463 -k1,24629:21137603,24012981:211463 -k1,24629:22453347,24012981:211462 -k1,24629:24380543,24012981:211463 -k1,24629:26779598,24012981:211463 -k1,24629:28010145,24012981:211462 -k1,24629:31896867,24012981:211463 -k1,24629:32583029,24012981:0 -) -(1,24630:6630773,24878061:25952256,505283,134348 -g1,24629:9543193,24878061 -g1,24629:11349365,24878061 -g1,24629:13588074,24878061 -g1,24629:14257196,24878061 -g1,24629:14987922,24878061 -g1,24629:16970386,24878061 -g1,24629:19582651,24878061 -g1,24629:20433308,24878061 -g1,24629:21725022,24878061 -g1,24629:24504403,24878061 -g1,24629:26982318,24878061 -g1,24629:30271570,24878061 -k1,24630:32583029,24878061:874910 -g1,24630:32583029,24878061 -) -(1,24631:6630773,26994879:25952256,555811,139132 -(1,24631:6630773,26994879:3348562,534184,12975 -g1,24631:6630773,26994879 -g1,24631:9979335,26994879 -) -k1,24631:32583029,26994879:19939984 -g1,24631:32583029,26994879 -) -(1,24636:6630773,28253175:25952256,513147,134348 -k1,24635:9332319,28253175:166613 -k1,24635:11777617,28253175:166612 -k1,24635:14704606,28253175:166613 -k1,24635:17897015,28253175:166612 -k1,24635:19348134,28253175:166613 -k1,24635:21230480,28253175:166613 -k1,24635:21855189,28253175:166612 -k1,24635:23416408,28253175:166613 -k1,24635:24234449,28253175:166613 -k1,24635:26605037,28253175:166612 -k1,24635:29182064,28253175:166613 -k1,24635:30007968,28253175:166612 -k1,24635:31193666,28253175:166613 -k1,24635:32583029,28253175:0 -) -(1,24636:6630773,29118255:25952256,513147,126483 -k1,24635:8410310,29118255:211916 -k1,24635:9392930,29118255:211917 -k1,24635:11994931,29118255:211903 -k1,24635:13363557,29118255:211916 -k1,24635:14772161,29118255:211917 -k1,24635:16820396,29118255:211916 -k1,24635:18717898,29118255:211916 -k1,24635:19921374,29118255:211916 -k1,24635:21152376,29118255:211917 -k1,24635:23017765,29118255:211916 -k1,24635:26634276,29118255:211916 -k1,24635:27532354,29118255:211916 -k1,24635:28360309,29118255:211917 -k1,24635:29591310,29118255:211916 -k1,24635:32583029,29118255:0 -) -(1,24636:6630773,29983335:25952256,513147,7863 -g1,24635:7777653,29983335 -k1,24636:32583030,29983335:22595504 -g1,24636:32583030,29983335 -) -(1,24638:6630773,30848415:25952256,513147,126483 -h1,24637:6630773,30848415:983040,0,0 -k1,24637:10591149,30848415:187468 -(1,24637:10591149,30848415:0,452978,115847 -r1,24671:13411398,30848415:2820249,568825,115847 -k1,24637:10591149,30848415:-2820249 -) -(1,24637:10591149,30848415:2820249,452978,115847 -k1,24637:10591149,30848415:3277 -h1,24637:13408121,30848415:0,411205,112570 -) -k1,24637:13598865,30848415:187467 -k1,24637:14317830,30848415:187468 -k1,24637:16018524,30848415:187468 -k1,24637:16857420,30848415:187468 -k1,24637:18622339,30848415:187467 -k1,24637:19828892,30848415:187468 -k1,24637:20999400,30848415:187468 -k1,24637:22378313,30848415:187468 -k1,24637:27418066,30848415:187467 -k1,24637:30070343,30848415:187468 -k1,24637:31276896,30848415:187468 -k1,24637:32583029,30848415:0 -) -(1,24638:6630773,31713495:25952256,505283,134348 -k1,24637:8302097,31713495:213148 -k1,24637:9711933,31713495:213149 -k1,24637:12703808,31713495:213148 -k1,24637:14876482,31713495:213148 -k1,24637:15621127,31713495:213148 -k1,24637:17645691,31713495:213149 -k1,24637:18545001,31713495:213148 -(1,24637:18545001,31713495:0,452978,115847 -r1,24671:23475521,31713495:4930520,568825,115847 -k1,24637:18545001,31713495:-4930520 -) -(1,24637:18545001,31713495:4930520,452978,115847 -k1,24637:18545001,31713495:3277 -h1,24637:23472244,31713495:0,411205,112570 -) -k1,24637:23862339,31713495:213148 -k1,24637:25456331,31713495:213148 -k1,24637:27629006,31713495:213149 -k1,24637:28373651,31713495:213148 -k1,24637:32583029,31713495:0 -) -(1,24638:6630773,32578575:25952256,513147,126483 -k1,24637:8342339,32578575:198340 -k1,24637:9192107,32578575:198340 -k1,24637:11421408,32578575:198340 -k1,24637:12638833,32578575:198340 -k1,24637:13993883,32578575:198340 -k1,24637:15383668,32578575:198340 -k1,24637:17280046,32578575:198340 -k1,24637:19828507,32578575:198340 -k1,24637:22652219,32578575:198340 -k1,24637:23206419,32578575:198340 -k1,24637:26395167,32578575:198340 -k1,24637:27252799,32578575:198340 -k1,24637:28470224,32578575:198340 -k1,24637:29651604,32578575:198340 -k1,24637:32583029,32578575:0 -) -(1,24638:6630773,33443655:25952256,505283,134348 -g1,24637:8021447,33443655 -g1,24637:9610039,33443655 -k1,24638:32583030,33443655:20019284 -g1,24638:32583030,33443655 -) -v1,24640:6630773,34128510:0,393216,0 -(1,24671:6630773,45510161:25952256,11774867,196608 -g1,24671:6630773,45510161 -g1,24671:6630773,45510161 -g1,24671:6434165,45510161 -(1,24671:6434165,45510161:0,11774867,196608 -r1,24671:32779637,45510161:26345472,11971475,196608 -k1,24671:6434165,45510161:-26345472 -) -(1,24671:6434165,45510161:26345472,11774867,196608 -[1,24671:6630773,45510161:25952256,11578259,0 -(1,24642:6630773,34362947:25952256,431045,106246 -(1,24641:6630773,34362947:0,0,0 -g1,24641:6630773,34362947 -g1,24641:6630773,34362947 -g1,24641:6303093,34362947 -(1,24641:6303093,34362947:0,0,0 -) -g1,24641:6630773,34362947 -) -g1,24642:11610082,34362947 -g1,24642:12605944,34362947 -k1,24642:12605944,34362947:0 -h1,24642:25220193,34362947:0,0,0 -k1,24642:32583029,34362947:7362836 -g1,24642:32583029,34362947 -) -(1,24643:6630773,35047802:25952256,424439,52847 -h1,24643:6630773,35047802:0,0,0 -h1,24643:11278128,35047802:0,0,0 -k1,24643:32583028,35047802:21304900 -g1,24643:32583028,35047802 -) -(1,24670:6630773,35809339:25952256,398014,0 -(1,24645:6630773,35809339:0,0,0 -g1,24645:6630773,35809339 -g1,24645:6630773,35809339 -g1,24645:6303093,35809339 -(1,24645:6303093,35809339:0,0,0 -) -g1,24645:6630773,35809339 -) -h1,24670:7294681,35809339:0,0,0 -k1,24670:32583029,35809339:25288348 -g1,24670:32583029,35809339 -) -(1,24670:6630773,36494194:25952256,431045,106246 -h1,24670:6630773,36494194:0,0,0 -g1,24670:7626635,36494194 -g1,24670:9286405,36494194 -g1,24670:11610083,36494194 -g1,24670:13269853,36494194 -g1,24670:20240886,36494194 -h1,24670:21236748,36494194:0,0,0 -k1,24670:32583029,36494194:11346281 -g1,24670:32583029,36494194 -) -(1,24670:6630773,37179049:25952256,398014,0 -h1,24670:6630773,37179049:0,0,0 -h1,24670:7294681,37179049:0,0,0 -k1,24670:32583029,37179049:25288348 -g1,24670:32583029,37179049 -) -(1,24670:6630773,37863904:25952256,431045,106246 -h1,24670:6630773,37863904:0,0,0 -g1,24670:7626635,37863904 -g1,24670:9618359,37863904 -g1,24670:10946175,37863904 -g1,24670:14597668,37863904 -g1,24670:17253300,37863904 -g1,24670:17917208,37863904 -g1,24670:21900655,37863904 -k1,24670:21900655,37863904:0 -h1,24670:25220194,37863904:0,0,0 -k1,24670:32583029,37863904:7362835 -g1,24670:32583029,37863904 -) -(1,24670:6630773,38548759:25952256,398014,0 -h1,24670:6630773,38548759:0,0,0 -h1,24670:7294681,38548759:0,0,0 -k1,24670:32583029,38548759:25288348 -g1,24670:32583029,38548759 -) -(1,24670:6630773,39233614:25952256,424439,106246 -h1,24670:6630773,39233614:0,0,0 -k1,24670:7515984,39233614:221303 -k1,24670:8733149,39233614:221303 -k1,24670:8954452,39233614:221303 -k1,24670:9175755,39233614:221303 -k1,24670:12052690,39233614:221303 -k1,24670:12605947,39233614:221303 -k1,24670:14818974,39233614:221303 -k1,24670:19687632,39233614:221303 -k1,24670:19908935,39233614:221303 -k1,24670:20130238,39233614:221303 -k1,24670:20351541,39233614:221303 -k1,24670:23228475,39233614:221303 -k1,24670:25441502,39233614:221303 -k1,24670:25994759,39233614:221303 -k1,24670:28207786,39233614:221303 -k1,24670:28429089,39233614:221303 -k1,24670:30642116,39233614:221303 -k1,24670:31859281,39233614:221303 -h1,24670:34846866,39233614:0,0,0 -k1,24670:34846866,39233614:0 -k1,24670:34846866,39233614:0 -) -(1,24670:6630773,39918469:25952256,424439,112852 -h1,24670:6630773,39918469:0,0,0 -g1,24670:7626635,39918469 -g1,24670:8954451,39918469 -g1,24670:9286405,39918469 -g1,24670:9618359,39918469 -g1,24670:11610083,39918469 -g1,24670:11942037,39918469 -g1,24670:12273991,39918469 -g1,24670:12605945,39918469 -g1,24670:13269853,39918469 -h1,24670:19245024,39918469:0,0,0 -k1,24670:32583029,39918469:13338005 -g1,24670:32583029,39918469 -) -(1,24670:6630773,40603324:25952256,424439,79822 -h1,24670:6630773,40603324:0,0,0 -g1,24670:7626635,40603324 -g1,24670:8954451,40603324 -g1,24670:9286405,40603324 -g1,24670:9618359,40603324 -g1,24670:10614221,40603324 -g1,24670:10946175,40603324 -g1,24670:11278129,40603324 -g1,24670:11610083,40603324 -g1,24670:11942037,40603324 -g1,24670:12273991,40603324 -g1,24670:12605945,40603324 -g1,24670:13269853,40603324 -h1,24670:14265715,40603324:0,0,0 -k1,24670:32583029,40603324:18317314 -g1,24670:32583029,40603324 -) -(1,24670:6630773,41288179:25952256,424439,79822 -h1,24670:6630773,41288179:0,0,0 -g1,24670:7626635,41288179 -g1,24670:8954451,41288179 -g1,24670:9286405,41288179 -g1,24670:9618359,41288179 -g1,24670:10614221,41288179 -g1,24670:10946175,41288179 -g1,24670:11278129,41288179 -g1,24670:11610083,41288179 -g1,24670:11942037,41288179 -g1,24670:12273991,41288179 -g1,24670:12605945,41288179 -g1,24670:13269853,41288179 -h1,24670:14265715,41288179:0,0,0 -k1,24670:32583029,41288179:18317314 -g1,24670:32583029,41288179 -) -(1,24670:6630773,41973034:25952256,424439,79822 -h1,24670:6630773,41973034:0,0,0 -g1,24670:7626635,41973034 -g1,24670:8954451,41973034 -g1,24670:9286405,41973034 -g1,24670:9618359,41973034 -g1,24670:10614221,41973034 -g1,24670:10946175,41973034 -g1,24670:11278129,41973034 -g1,24670:11610083,41973034 -g1,24670:11942037,41973034 -g1,24670:12273991,41973034 -g1,24670:12605945,41973034 -g1,24670:13269853,41973034 -h1,24670:14597669,41973034:0,0,0 -k1,24670:32583029,41973034:17985360 -g1,24670:32583029,41973034 -) -(1,24670:6630773,42657889:25952256,398014,0 -h1,24670:6630773,42657889:0,0,0 -h1,24670:7294681,42657889:0,0,0 -k1,24670:32583029,42657889:25288348 -g1,24670:32583029,42657889 -) -(1,24670:6630773,43342744:25952256,424439,79822 -h1,24670:6630773,43342744:0,0,0 -g1,24670:7626635,43342744 -g1,24670:11278128,43342744 -g1,24670:11942036,43342744 -g1,24670:12937898,43342744 -h1,24670:15593529,43342744:0,0,0 -k1,24670:32583029,43342744:16989500 -g1,24670:32583029,43342744 -) -(1,24670:6630773,44027599:25952256,398014,0 -h1,24670:6630773,44027599:0,0,0 -h1,24670:7294681,44027599:0,0,0 -k1,24670:32583029,44027599:25288348 -g1,24670:32583029,44027599 -) -(1,24670:6630773,44712454:25952256,424439,112852 -h1,24670:6630773,44712454:0,0,0 -k1,24670:7573304,44712454:278623 -k1,24670:7851927,44712454:278623 -k1,24670:8130550,44712454:278623 -k1,24670:9405036,44712454:278624 -k1,24670:9683659,44712454:278623 -k1,24670:9962282,44712454:278623 -k1,24670:11568721,44712454:278623 -k1,24670:11847344,44712454:278623 -k1,24670:14117691,44712454:278623 -k1,24670:14396315,44712454:278624 -k1,24670:14674938,44712454:278623 -k1,24670:14953561,44712454:278623 -k1,24670:15232184,44712454:278623 -k1,24670:16506669,44712454:278623 -k1,24670:16785292,44712454:278623 -k1,24670:17063916,44712454:278624 -k1,24670:17342539,44712454:278623 -k1,24670:17621162,44712454:278623 -k1,24670:18895647,44712454:278623 -k1,24670:20834040,44712454:278623 -k1,24670:22772433,44712454:278623 -k1,24670:23051057,44712454:278624 -k1,24670:23329680,44712454:278623 -k1,24670:23608303,44712454:278623 -k1,24670:25214742,44712454:278623 -k1,24670:25493365,44712454:278623 -k1,24670:25771988,44712454:278623 -k1,24670:26050612,44712454:278624 -k1,24670:27657051,44712454:278623 -k1,24670:29595444,44712454:278623 -h1,24670:32583029,44712454:0,0,0 -k1,24670:32583029,44712454:0 -k1,24670:32583029,44712454:0 -) -(1,24670:6630773,45397309:25952256,424439,112852 -h1,24670:6630773,45397309:0,0,0 -k1,24670:7614266,45397309:319585 -k1,24670:7933852,45397309:319586 -k1,24670:8253437,45397309:319585 -k1,24670:10232792,45397309:319585 -k1,24670:12212148,45397309:319586 -k1,24670:12531733,45397309:319585 -k1,24670:14511089,45397309:319586 -k1,24670:14830674,45397309:319585 -k1,24670:15150259,45397309:319585 -k1,24670:17129615,45397309:319586 -k1,24670:17449200,45397309:319585 -k1,24670:17768785,45397309:319585 -k1,24670:19748141,45397309:319586 -k1,24670:21727496,45397309:319585 -k1,24670:23706851,45397309:319585 -k1,24670:24026437,45397309:319586 -k1,24670:24346022,45397309:319585 -k1,24670:26325378,45397309:319586 -k1,24670:26644963,45397309:319585 -k1,24670:26964548,45397309:319585 -k1,24670:28943904,45397309:319586 -k1,24670:30923259,45397309:319585 -k1,24670:30923259,45397309:0 -h1,24670:32583029,45397309:0,0,0 -k1,24670:32583029,45397309:0 -k1,24670:32583029,45397309:0 -) -] -) -g1,24671:32583029,45510161 -g1,24671:6630773,45510161 -g1,24671:6630773,45510161 -g1,24671:32583029,45510161 -g1,24671:32583029,45510161 -) -] -(1,24671:32583029,45706769:0,0,0 -g1,24671:32583029,45706769 -) -) -] -(1,24671:6630773,47279633:25952256,0,0 -h1,24671:6630773,47279633:25952256,0,0 -) -] -(1,24671:4262630,4025873:0,0,0 -[1,24671:-473656,4025873:0,0,0 -(1,24671:-473656,-710413:0,0,0 -(1,24671:-473656,-710413:0,0,0 -g1,24671:-473656,-710413 -) -g1,24671:-473656,-710413 +[1,24669:3078558,4812305:0,0,0 +(1,24669:3078558,49800853:0,16384,2228224 +g1,24669:29030814,49800853 +g1,24669:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24669:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24669:37855564,49800853:1179648,16384,0 +) +) +k1,24669:3078556,49800853:-34777008 +) +] +g1,24669:6630773,4812305 +k1,24669:21114230,4812305:13288080 +g1,24669:22736901,4812305 +g1,24669:23350318,4812305 +g1,24669:24759997,4812305 +g1,24669:28372341,4812305 +g1,24669:30105768,4812305 +) +) +] +[1,24669:6630773,45706769:25952256,40108032,0 +(1,24669:6630773,45706769:25952256,40108032,0 +(1,24669:6630773,45706769:0,0,0 +g1,24669:6630773,45706769 +) +[1,24669:6630773,45706769:25952256,40108032,0 +(1,24600:6630773,6254097:25952256,513147,134348 +h1,24599:6630773,6254097:983040,0,0 +k1,24599:9040931,6254097:230431 +(1,24599:9040931,6254097:0,452978,115847 +r1,24669:10454332,6254097:1413401,568825,115847 +k1,24599:9040931,6254097:-1413401 +) +(1,24599:9040931,6254097:1413401,452978,115847 +k1,24599:9040931,6254097:3277 +h1,24599:10451055,6254097:0,411205,112570 +) +k1,24599:10684763,6254097:230431 +k1,24599:12893071,6254097:230431 +k1,24599:15825552,6254097:230432 +k1,24599:17431584,6254097:230431 +k1,24599:20329330,6254097:230431 +k1,24599:22570406,6254097:230431 +k1,24599:23486999,6254097:230431 +k1,24599:24736516,6254097:230432 +k1,24599:25949987,6254097:230431 +k1,24599:28882467,6254097:230431 +k1,24599:29468758,6254097:230431 +k1,24599:32583029,6254097:0 +) +(1,24600:6630773,7119177:25952256,513147,134348 +k1,24599:8679887,7119177:204276 +k1,24599:9543454,7119177:204275 +k1,24599:12415045,7119177:204276 +k1,24599:15549436,7119177:204276 +k1,24599:18951214,7119177:204276 +k1,24599:19841651,7119177:204275 +k1,24599:21513933,7119177:204276 +k1,24599:23285830,7119177:204276 +k1,24599:27103760,7119177:204275 +k1,24599:31931601,7119177:204276 +k1,24599:32583029,7119177:0 +) +(1,24600:6630773,7984257:25952256,513147,134348 +k1,24599:7853850,7984257:203992 +k1,24599:9363975,7984257:203992 +k1,24599:10705671,7984257:203991 +k1,24599:11568955,7984257:203992 +k1,24599:13224569,7984257:203992 +k1,24599:15529645,7984257:203992 +k1,24599:16392929,7984257:203992 +k1,24599:17949583,7984257:203991 +k1,24599:19326014,7984257:203992 +k1,24599:20483555,7984257:203992 +k1,24599:21780032,7984257:203992 +k1,24599:24564176,7984257:203992 +k1,24599:27966323,7984257:203991 +k1,24599:29117966,7984257:203992 +k1,24599:30341043,7984257:203992 +k1,24600:32583029,7984257:0 +) +(1,24600:6630773,8849337:25952256,513147,134348 +k1,24599:8340812,8849337:195502 +k1,24599:9365344,8849337:195502 +k1,24599:10827002,8849337:195502 +k1,24599:12041589,8849337:195502 +k1,24599:14663889,8849337:195502 +k1,24599:15807042,8849337:195502 +k1,24599:17021629,8849337:195502 +k1,24599:18501636,8849337:195501 +k1,24599:20385345,8849337:195502 +k1,24599:21240139,8849337:195502 +k1,24599:24052494,8849337:195502 +k1,24599:24706093,8849337:195502 +k1,24599:25433092,8849337:195502 +k1,24599:28737622,8849337:195502 +k1,24599:29584552,8849337:195502 +k1,24599:31563944,8849337:195502 +k1,24599:32583029,8849337:0 +) +(1,24600:6630773,9714417:25952256,505283,122846 +g1,24599:9120485,9714417 +(1,24599:9120485,9714417:0,452978,122846 +r1,24669:12292445,9714417:3171960,575824,122846 +k1,24599:9120485,9714417:-3171960 +) +(1,24599:9120485,9714417:3171960,452978,122846 +k1,24599:9120485,9714417:3277 +h1,24599:12289168,9714417:0,411205,112570 +) +g1,24599:12491674,9714417 +g1,24599:13882348,9714417 +(1,24599:13882348,9714417:0,452978,115847 +r1,24669:16702597,9714417:2820249,568825,115847 +k1,24599:13882348,9714417:-2820249 +) +(1,24599:13882348,9714417:2820249,452978,115847 +k1,24599:13882348,9714417:3277 +h1,24599:16699320,9714417:0,411205,112570 +) +g1,24599:16901826,9714417 +g1,24599:18912470,9714417 +k1,24600:32583029,9714417:11762806 +g1,24600:32583029,9714417 +) +(1,24602:6630773,10579497:25952256,513147,134348 +h1,24601:6630773,10579497:983040,0,0 +k1,24601:9327689,10579497:252423 +k1,24601:10599196,10579497:252422 +k1,24601:13705057,10579497:252423 +k1,24601:20013006,10579497:252422 +k1,24601:20796926,10579497:252423 +k1,24601:22461650,10579497:252423 +k1,24601:23661723,10579497:252422 +k1,24601:25070856,10579497:252423 +k1,24601:26607784,10579497:252422 +k1,24601:28722085,10579497:252423 +k1,24601:30165952,10579497:252422 +k1,24601:31931601,10579497:252423 +k1,24601:32583029,10579497:0 +) +(1,24602:6630773,11444577:25952256,513147,126483 +g1,24601:9853833,11444577 +g1,24601:10408922,11444577 +g1,24601:11997514,11444577 +g1,24601:14246709,11444577 +g1,24601:15839889,11444577 +g1,24601:17731258,11444577 +g1,24601:19941132,11444577 +k1,24602:32583029,11444577:9952300 +g1,24602:32583029,11444577 +) +v1,24604:6630773,12129432:0,393216,0 +(1,24624:6630773,22086213:25952256,10349997,196608 +g1,24624:6630773,22086213 +g1,24624:6630773,22086213 +g1,24624:6434165,22086213 +(1,24624:6434165,22086213:0,10349997,196608 +r1,24669:32779637,22086213:26345472,10546605,196608 +k1,24624:6434165,22086213:-26345472 +) +(1,24624:6434165,22086213:26345472,10349997,196608 +[1,24624:6630773,22086213:25952256,10153389,0 +(1,24606:6630773,12357263:25952256,424439,106246 +(1,24605:6630773,12357263:0,0,0 +g1,24605:6630773,12357263 +g1,24605:6630773,12357263 +g1,24605:6303093,12357263 +(1,24605:6303093,12357263:0,0,0 +) +g1,24605:6630773,12357263 +) +g1,24606:8954451,12357263 +k1,24606:8954451,12357263:0 +h1,24606:9618359,12357263:0,0,0 +k1,24606:32583029,12357263:22964670 +g1,24606:32583029,12357263 +) +(1,24607:6630773,13042118:25952256,424439,86428 +h1,24607:6630773,13042118:0,0,0 +g1,24607:6962727,13042118 +g1,24607:7294681,13042118 +g1,24607:7626635,13042118 +g1,24607:7958589,13042118 +g1,24607:11942037,13042118 +g1,24607:12605945,13042118 +k1,24607:12605945,13042118:0 +h1,24607:15593530,13042118:0,0,0 +k1,24607:32583030,13042118:16989500 +g1,24607:32583030,13042118 +) +(1,24608:6630773,13726973:25952256,424439,106246 +h1,24608:6630773,13726973:0,0,0 +g1,24608:6962727,13726973 +g1,24608:7294681,13726973 +g1,24608:7626635,13726973 +g1,24608:7958589,13726973 +g1,24608:8290543,13726973 +g1,24608:8622497,13726973 +g1,24608:8954451,13726973 +g1,24608:9286405,13726973 +g1,24608:9618359,13726973 +g1,24608:9950313,13726973 +g1,24608:10282267,13726973 +g1,24608:12273991,13726973 +g1,24608:12937899,13726973 +g1,24608:20904795,13726973 +g1,24608:21568703,13726973 +k1,24608:21568703,13726973:0 +h1,24608:25552151,13726973:0,0,0 +k1,24608:32583029,13726973:7030878 +g1,24608:32583029,13726973 +) +(1,24609:6630773,14411828:25952256,424439,112852 +h1,24609:6630773,14411828:0,0,0 +g1,24609:6962727,14411828 +g1,24609:7294681,14411828 +g1,24609:7626635,14411828 +g1,24609:7958589,14411828 +g1,24609:8290543,14411828 +g1,24609:8622497,14411828 +g1,24609:8954451,14411828 +g1,24609:9286405,14411828 +g1,24609:9618359,14411828 +g1,24609:9950313,14411828 +g1,24609:10282267,14411828 +g1,24609:11610083,14411828 +g1,24609:12273991,14411828 +k1,24609:12273991,14411828:0 +h1,24609:16589392,14411828:0,0,0 +k1,24609:32583029,14411828:15993637 +g1,24609:32583029,14411828 +) +(1,24610:6630773,15096683:25952256,424439,86428 +h1,24610:6630773,15096683:0,0,0 +g1,24610:6962727,15096683 +g1,24610:7294681,15096683 +g1,24610:7626635,15096683 +g1,24610:7958589,15096683 +g1,24610:8290543,15096683 +g1,24610:8622497,15096683 +g1,24610:8954451,15096683 +g1,24610:9286405,15096683 +g1,24610:9618359,15096683 +g1,24610:9950313,15096683 +g1,24610:10282267,15096683 +g1,24610:11610083,15096683 +g1,24610:12273991,15096683 +k1,24610:12273991,15096683:0 +h1,24610:16257438,15096683:0,0,0 +k1,24610:32583029,15096683:16325591 +g1,24610:32583029,15096683 +) +(1,24611:6630773,15781538:25952256,424439,112852 +h1,24611:6630773,15781538:0,0,0 +g1,24611:6962727,15781538 +g1,24611:7294681,15781538 +g1,24611:7626635,15781538 +g1,24611:7958589,15781538 +g1,24611:8290543,15781538 +g1,24611:8622497,15781538 +g1,24611:8954451,15781538 +g1,24611:9286405,15781538 +g1,24611:9618359,15781538 +g1,24611:9950313,15781538 +g1,24611:10282267,15781538 +g1,24611:11610083,15781538 +g1,24611:12273991,15781538 +g1,24611:20572839,15781538 +g1,24611:24556287,15781538 +g1,24611:25552149,15781538 +h1,24611:25884103,15781538:0,0,0 +k1,24611:32583029,15781538:6698926 +g1,24611:32583029,15781538 +) +(1,24612:6630773,16466393:25952256,424439,79822 +h1,24612:6630773,16466393:0,0,0 +g1,24612:6962727,16466393 +g1,24612:7294681,16466393 +g1,24612:7626635,16466393 +g1,24612:7958589,16466393 +g1,24612:8290543,16466393 +g1,24612:8622497,16466393 +g1,24612:8954451,16466393 +g1,24612:9286405,16466393 +g1,24612:9618359,16466393 +g1,24612:9950313,16466393 +g1,24612:10282267,16466393 +h1,24612:10614221,16466393:0,0,0 +k1,24612:32583029,16466393:21968808 +g1,24612:32583029,16466393 +) +(1,24613:6630773,17151248:25952256,424439,106246 +h1,24613:6630773,17151248:0,0,0 +h1,24613:8622497,17151248:0,0,0 +k1,24613:32583029,17151248:23960532 +g1,24613:32583029,17151248 +) +(1,24623:6630773,17967175:25952256,424439,9908 +(1,24615:6630773,17967175:0,0,0 +g1,24615:6630773,17967175 +g1,24615:6630773,17967175 +g1,24615:6303093,17967175 +(1,24615:6303093,17967175:0,0,0 +) +g1,24615:6630773,17967175 +) +g1,24623:7626635,17967175 +g1,24623:8290543,17967175 +g1,24623:8954451,17967175 +g1,24623:11610083,17967175 +g1,24623:12605945,17967175 +g1,24623:13269853,17967175 +h1,24623:13601807,17967175:0,0,0 +k1,24623:32583029,17967175:18981222 +g1,24623:32583029,17967175 +) +(1,24623:6630773,18652030:25952256,424439,106246 +h1,24623:6630773,18652030:0,0,0 +g1,24623:7626635,18652030 +g1,24623:7958589,18652030 +g1,24623:8290543,18652030 +g1,24623:8622497,18652030 +g1,24623:8954451,18652030 +g1,24623:9286405,18652030 +g1,24623:9618359,18652030 +g1,24623:9950313,18652030 +g1,24623:11610083,18652030 +g1,24623:13601807,18652030 +g1,24623:13933761,18652030 +g1,24623:14265715,18652030 +g1,24623:15593531,18652030 +g1,24623:15925485,18652030 +g1,24623:16257439,18652030 +g1,24623:17585255,18652030 +g1,24623:17917209,18652030 +g1,24623:18249163,18652030 +h1,24623:19245025,18652030:0,0,0 +k1,24623:32583029,18652030:13338004 +g1,24623:32583029,18652030 +) +(1,24623:6630773,19336885:25952256,424439,79822 +h1,24623:6630773,19336885:0,0,0 +g1,24623:7626635,19336885 +g1,24623:7958589,19336885 +g1,24623:8290543,19336885 +g1,24623:11610082,19336885 +g1,24623:13601806,19336885 +g1,24623:15593530,19336885 +g1,24623:17585254,19336885 +k1,24623:17585254,19336885:0 +h1,24623:19245024,19336885:0,0,0 +k1,24623:32583029,19336885:13338005 +g1,24623:32583029,19336885 +) +(1,24623:6630773,20021740:25952256,407923,9908 +h1,24623:6630773,20021740:0,0,0 +g1,24623:7626635,20021740 +g1,24623:8290543,20021740 +g1,24623:8622497,20021740 +g1,24623:8954451,20021740 +g1,24623:11610083,20021740 +g1,24623:11942037,20021740 +g1,24623:12273991,20021740 +g1,24623:12605945,20021740 +g1,24623:13601807,20021740 +g1,24623:13933761,20021740 +g1,24623:15593531,20021740 +g1,24623:15925485,20021740 +g1,24623:17585255,20021740 +g1,24623:17917209,20021740 +h1,24623:19245025,20021740:0,0,0 +k1,24623:32583029,20021740:13338004 +g1,24623:32583029,20021740 +) +(1,24623:6630773,20706595:25952256,407923,9908 +h1,24623:6630773,20706595:0,0,0 +g1,24623:7626635,20706595 +g1,24623:8290543,20706595 +g1,24623:8622497,20706595 +g1,24623:8954451,20706595 +g1,24623:11610083,20706595 +g1,24623:11942037,20706595 +g1,24623:12273991,20706595 +g1,24623:12605945,20706595 +g1,24623:12937899,20706595 +g1,24623:13601807,20706595 +g1,24623:13933761,20706595 +g1,24623:15593531,20706595 +g1,24623:15925485,20706595 +g1,24623:17585255,20706595 +g1,24623:17917209,20706595 +h1,24623:19245025,20706595:0,0,0 +k1,24623:32583029,20706595:13338004 +g1,24623:32583029,20706595 +) +(1,24623:6630773,21391450:25952256,407923,9908 +h1,24623:6630773,21391450:0,0,0 +g1,24623:7626635,21391450 +g1,24623:8290543,21391450 +g1,24623:8622497,21391450 +g1,24623:8954451,21391450 +g1,24623:11610083,21391450 +g1,24623:11942037,21391450 +g1,24623:12273991,21391450 +g1,24623:12605945,21391450 +g1,24623:12937899,21391450 +g1,24623:13601807,21391450 +g1,24623:13933761,21391450 +g1,24623:15593531,21391450 +g1,24623:15925485,21391450 +g1,24623:17585255,21391450 +g1,24623:17917209,21391450 +h1,24623:19245025,21391450:0,0,0 +k1,24623:32583029,21391450:13338004 +g1,24623:32583029,21391450 +) +(1,24623:6630773,22076305:25952256,424439,9908 +h1,24623:6630773,22076305:0,0,0 +g1,24623:7626635,22076305 +g1,24623:8290543,22076305 +g1,24623:8954451,22076305 +g1,24623:9618359,22076305 +g1,24623:11278129,22076305 +h1,24623:12605945,22076305:0,0,0 +k1,24623:32583029,22076305:19977084 +g1,24623:32583029,22076305 +) +] +) +g1,24624:32583029,22086213 +g1,24624:6630773,22086213 +g1,24624:6630773,22086213 +g1,24624:32583029,22086213 +g1,24624:32583029,22086213 +) +h1,24624:6630773,22282821:0,0,0 +(1,24628:6630773,23147901:25952256,513147,134348 +h1,24627:6630773,23147901:983040,0,0 +k1,24627:8739959,23147901:297116 +k1,24627:9688504,23147901:297117 +k1,24627:11397921,23147901:297116 +k1,24627:12311075,23147901:297116 +k1,24627:14839692,23147901:297116 +k1,24627:16421315,23147901:297117 +k1,24627:18910610,23147901:297116 +k1,24627:21439227,23147901:297116 +k1,24627:24498687,23147901:297117 +k1,24627:28457955,23147901:297116 +k1,24627:29746631,23147901:297116 +k1,24627:32583029,23147901:0 +) +(1,24628:6630773,24012981:25952256,513147,134348 +k1,24627:9776938,24012981:211463 +k1,24627:11007485,24012981:211462 +k1,24627:12958274,24012981:211463 +k1,24627:13829029,24012981:211463 +k1,24627:16380126,24012981:211462 +k1,24627:17250881,24012981:211463 +k1,24627:21137603,24012981:211463 +k1,24627:22453347,24012981:211462 +k1,24627:24380543,24012981:211463 +k1,24627:26779598,24012981:211463 +k1,24627:28010145,24012981:211462 +k1,24627:31896867,24012981:211463 +k1,24627:32583029,24012981:0 +) +(1,24628:6630773,24878061:25952256,505283,134348 +g1,24627:9543193,24878061 +g1,24627:11349365,24878061 +g1,24627:13588074,24878061 +g1,24627:14257196,24878061 +g1,24627:14987922,24878061 +g1,24627:16970386,24878061 +g1,24627:19582651,24878061 +g1,24627:20433308,24878061 +g1,24627:21725022,24878061 +g1,24627:24504403,24878061 +g1,24627:26982318,24878061 +g1,24627:30271570,24878061 +k1,24628:32583029,24878061:874910 +g1,24628:32583029,24878061 +) +(1,24629:6630773,26994879:25952256,555811,139132 +(1,24629:6630773,26994879:3348562,534184,12975 +g1,24629:6630773,26994879 +g1,24629:9979335,26994879 +) +k1,24629:32583029,26994879:19939984 +g1,24629:32583029,26994879 +) +(1,24634:6630773,28253175:25952256,513147,134348 +k1,24633:9332319,28253175:166613 +k1,24633:11777617,28253175:166612 +k1,24633:14704606,28253175:166613 +k1,24633:17897015,28253175:166612 +k1,24633:19348134,28253175:166613 +k1,24633:21230480,28253175:166613 +k1,24633:21855189,28253175:166612 +k1,24633:23416408,28253175:166613 +k1,24633:24234449,28253175:166613 +k1,24633:26605037,28253175:166612 +k1,24633:29182064,28253175:166613 +k1,24633:30007968,28253175:166612 +k1,24633:31193666,28253175:166613 +k1,24633:32583029,28253175:0 +) +(1,24634:6630773,29118255:25952256,513147,126483 +k1,24633:8410310,29118255:211916 +k1,24633:9392930,29118255:211917 +k1,24633:11994931,29118255:211903 +k1,24633:13363557,29118255:211916 +k1,24633:14772161,29118255:211917 +k1,24633:16820396,29118255:211916 +k1,24633:18717898,29118255:211916 +k1,24633:19921374,29118255:211916 +k1,24633:21152376,29118255:211917 +k1,24633:23017765,29118255:211916 +k1,24633:26634276,29118255:211916 +k1,24633:27532354,29118255:211916 +k1,24633:28360309,29118255:211917 +k1,24633:29591310,29118255:211916 +k1,24633:32583029,29118255:0 +) +(1,24634:6630773,29983335:25952256,513147,7863 +g1,24633:7777653,29983335 +k1,24634:32583030,29983335:22595504 +g1,24634:32583030,29983335 +) +(1,24636:6630773,30848415:25952256,513147,126483 +h1,24635:6630773,30848415:983040,0,0 +k1,24635:10591149,30848415:187468 +(1,24635:10591149,30848415:0,452978,115847 +r1,24669:13411398,30848415:2820249,568825,115847 +k1,24635:10591149,30848415:-2820249 +) +(1,24635:10591149,30848415:2820249,452978,115847 +k1,24635:10591149,30848415:3277 +h1,24635:13408121,30848415:0,411205,112570 +) +k1,24635:13598865,30848415:187467 +k1,24635:14317830,30848415:187468 +k1,24635:16018524,30848415:187468 +k1,24635:16857420,30848415:187468 +k1,24635:18622339,30848415:187467 +k1,24635:19828892,30848415:187468 +k1,24635:20999400,30848415:187468 +k1,24635:22378313,30848415:187468 +k1,24635:27418066,30848415:187467 +k1,24635:30070343,30848415:187468 +k1,24635:31276896,30848415:187468 +k1,24635:32583029,30848415:0 +) +(1,24636:6630773,31713495:25952256,505283,134348 +k1,24635:8302097,31713495:213148 +k1,24635:9711933,31713495:213149 +k1,24635:12703808,31713495:213148 +k1,24635:14876482,31713495:213148 +k1,24635:15621127,31713495:213148 +k1,24635:17645691,31713495:213149 +k1,24635:18545001,31713495:213148 +(1,24635:18545001,31713495:0,452978,115847 +r1,24669:23475521,31713495:4930520,568825,115847 +k1,24635:18545001,31713495:-4930520 +) +(1,24635:18545001,31713495:4930520,452978,115847 +k1,24635:18545001,31713495:3277 +h1,24635:23472244,31713495:0,411205,112570 +) +k1,24635:23862339,31713495:213148 +k1,24635:25456331,31713495:213148 +k1,24635:27629006,31713495:213149 +k1,24635:28373651,31713495:213148 +k1,24635:32583029,31713495:0 +) +(1,24636:6630773,32578575:25952256,513147,126483 +k1,24635:8342339,32578575:198340 +k1,24635:9192107,32578575:198340 +k1,24635:11421408,32578575:198340 +k1,24635:12638833,32578575:198340 +k1,24635:13993883,32578575:198340 +k1,24635:15383668,32578575:198340 +k1,24635:17280046,32578575:198340 +k1,24635:19828507,32578575:198340 +k1,24635:22652219,32578575:198340 +k1,24635:23206419,32578575:198340 +k1,24635:26395167,32578575:198340 +k1,24635:27252799,32578575:198340 +k1,24635:28470224,32578575:198340 +k1,24635:29651604,32578575:198340 +k1,24635:32583029,32578575:0 +) +(1,24636:6630773,33443655:25952256,505283,134348 +g1,24635:8021447,33443655 +g1,24635:9610039,33443655 +k1,24636:32583030,33443655:20019284 +g1,24636:32583030,33443655 +) +v1,24638:6630773,34128510:0,393216,0 +(1,24669:6630773,45510161:25952256,11774867,196608 +g1,24669:6630773,45510161 +g1,24669:6630773,45510161 +g1,24669:6434165,45510161 +(1,24669:6434165,45510161:0,11774867,196608 +r1,24669:32779637,45510161:26345472,11971475,196608 +k1,24669:6434165,45510161:-26345472 +) +(1,24669:6434165,45510161:26345472,11774867,196608 +[1,24669:6630773,45510161:25952256,11578259,0 +(1,24640:6630773,34362947:25952256,431045,106246 +(1,24639:6630773,34362947:0,0,0 +g1,24639:6630773,34362947 +g1,24639:6630773,34362947 +g1,24639:6303093,34362947 +(1,24639:6303093,34362947:0,0,0 +) +g1,24639:6630773,34362947 +) +g1,24640:11610082,34362947 +g1,24640:12605944,34362947 +k1,24640:12605944,34362947:0 +h1,24640:25220193,34362947:0,0,0 +k1,24640:32583029,34362947:7362836 +g1,24640:32583029,34362947 +) +(1,24641:6630773,35047802:25952256,424439,52847 +h1,24641:6630773,35047802:0,0,0 +h1,24641:11278128,35047802:0,0,0 +k1,24641:32583028,35047802:21304900 +g1,24641:32583028,35047802 +) +(1,24668:6630773,35809339:25952256,398014,0 +(1,24643:6630773,35809339:0,0,0 +g1,24643:6630773,35809339 +g1,24643:6630773,35809339 +g1,24643:6303093,35809339 +(1,24643:6303093,35809339:0,0,0 +) +g1,24643:6630773,35809339 +) +h1,24668:7294681,35809339:0,0,0 +k1,24668:32583029,35809339:25288348 +g1,24668:32583029,35809339 +) +(1,24668:6630773,36494194:25952256,431045,106246 +h1,24668:6630773,36494194:0,0,0 +g1,24668:7626635,36494194 +g1,24668:9286405,36494194 +g1,24668:11610083,36494194 +g1,24668:13269853,36494194 +g1,24668:20240886,36494194 +h1,24668:21236748,36494194:0,0,0 +k1,24668:32583029,36494194:11346281 +g1,24668:32583029,36494194 +) +(1,24668:6630773,37179049:25952256,398014,0 +h1,24668:6630773,37179049:0,0,0 +h1,24668:7294681,37179049:0,0,0 +k1,24668:32583029,37179049:25288348 +g1,24668:32583029,37179049 +) +(1,24668:6630773,37863904:25952256,431045,106246 +h1,24668:6630773,37863904:0,0,0 +g1,24668:7626635,37863904 +g1,24668:9618359,37863904 +g1,24668:10946175,37863904 +g1,24668:14597668,37863904 +g1,24668:17253300,37863904 +g1,24668:17917208,37863904 +g1,24668:21900655,37863904 +k1,24668:21900655,37863904:0 +h1,24668:25220194,37863904:0,0,0 +k1,24668:32583029,37863904:7362835 +g1,24668:32583029,37863904 +) +(1,24668:6630773,38548759:25952256,398014,0 +h1,24668:6630773,38548759:0,0,0 +h1,24668:7294681,38548759:0,0,0 +k1,24668:32583029,38548759:25288348 +g1,24668:32583029,38548759 +) +(1,24668:6630773,39233614:25952256,424439,106246 +h1,24668:6630773,39233614:0,0,0 +k1,24668:7515984,39233614:221303 +k1,24668:8733149,39233614:221303 +k1,24668:8954452,39233614:221303 +k1,24668:9175755,39233614:221303 +k1,24668:12052690,39233614:221303 +k1,24668:12605947,39233614:221303 +k1,24668:14818974,39233614:221303 +k1,24668:19687632,39233614:221303 +k1,24668:19908935,39233614:221303 +k1,24668:20130238,39233614:221303 +k1,24668:20351541,39233614:221303 +k1,24668:23228475,39233614:221303 +k1,24668:25441502,39233614:221303 +k1,24668:25994759,39233614:221303 +k1,24668:28207786,39233614:221303 +k1,24668:28429089,39233614:221303 +k1,24668:30642116,39233614:221303 +k1,24668:31859281,39233614:221303 +h1,24668:34846866,39233614:0,0,0 +k1,24668:34846866,39233614:0 +k1,24668:34846866,39233614:0 +) +(1,24668:6630773,39918469:25952256,424439,112852 +h1,24668:6630773,39918469:0,0,0 +g1,24668:7626635,39918469 +g1,24668:8954451,39918469 +g1,24668:9286405,39918469 +g1,24668:9618359,39918469 +g1,24668:11610083,39918469 +g1,24668:11942037,39918469 +g1,24668:12273991,39918469 +g1,24668:12605945,39918469 +g1,24668:13269853,39918469 +h1,24668:19245024,39918469:0,0,0 +k1,24668:32583029,39918469:13338005 +g1,24668:32583029,39918469 +) +(1,24668:6630773,40603324:25952256,424439,79822 +h1,24668:6630773,40603324:0,0,0 +g1,24668:7626635,40603324 +g1,24668:8954451,40603324 +g1,24668:9286405,40603324 +g1,24668:9618359,40603324 +g1,24668:10614221,40603324 +g1,24668:10946175,40603324 +g1,24668:11278129,40603324 +g1,24668:11610083,40603324 +g1,24668:11942037,40603324 +g1,24668:12273991,40603324 +g1,24668:12605945,40603324 +g1,24668:13269853,40603324 +h1,24668:14265715,40603324:0,0,0 +k1,24668:32583029,40603324:18317314 +g1,24668:32583029,40603324 +) +(1,24668:6630773,41288179:25952256,424439,79822 +h1,24668:6630773,41288179:0,0,0 +g1,24668:7626635,41288179 +g1,24668:8954451,41288179 +g1,24668:9286405,41288179 +g1,24668:9618359,41288179 +g1,24668:10614221,41288179 +g1,24668:10946175,41288179 +g1,24668:11278129,41288179 +g1,24668:11610083,41288179 +g1,24668:11942037,41288179 +g1,24668:12273991,41288179 +g1,24668:12605945,41288179 +g1,24668:13269853,41288179 +h1,24668:14265715,41288179:0,0,0 +k1,24668:32583029,41288179:18317314 +g1,24668:32583029,41288179 +) +(1,24668:6630773,41973034:25952256,424439,79822 +h1,24668:6630773,41973034:0,0,0 +g1,24668:7626635,41973034 +g1,24668:8954451,41973034 +g1,24668:9286405,41973034 +g1,24668:9618359,41973034 +g1,24668:10614221,41973034 +g1,24668:10946175,41973034 +g1,24668:11278129,41973034 +g1,24668:11610083,41973034 +g1,24668:11942037,41973034 +g1,24668:12273991,41973034 +g1,24668:12605945,41973034 +g1,24668:13269853,41973034 +h1,24668:14597669,41973034:0,0,0 +k1,24668:32583029,41973034:17985360 +g1,24668:32583029,41973034 +) +(1,24668:6630773,42657889:25952256,398014,0 +h1,24668:6630773,42657889:0,0,0 +h1,24668:7294681,42657889:0,0,0 +k1,24668:32583029,42657889:25288348 +g1,24668:32583029,42657889 +) +(1,24668:6630773,43342744:25952256,424439,79822 +h1,24668:6630773,43342744:0,0,0 +g1,24668:7626635,43342744 +g1,24668:11278128,43342744 +g1,24668:11942036,43342744 +g1,24668:12937898,43342744 +h1,24668:15593529,43342744:0,0,0 +k1,24668:32583029,43342744:16989500 +g1,24668:32583029,43342744 +) +(1,24668:6630773,44027599:25952256,398014,0 +h1,24668:6630773,44027599:0,0,0 +h1,24668:7294681,44027599:0,0,0 +k1,24668:32583029,44027599:25288348 +g1,24668:32583029,44027599 +) +(1,24668:6630773,44712454:25952256,424439,112852 +h1,24668:6630773,44712454:0,0,0 +k1,24668:7573304,44712454:278623 +k1,24668:7851927,44712454:278623 +k1,24668:8130550,44712454:278623 +k1,24668:9405036,44712454:278624 +k1,24668:9683659,44712454:278623 +k1,24668:9962282,44712454:278623 +k1,24668:11568721,44712454:278623 +k1,24668:11847344,44712454:278623 +k1,24668:14117691,44712454:278623 +k1,24668:14396315,44712454:278624 +k1,24668:14674938,44712454:278623 +k1,24668:14953561,44712454:278623 +k1,24668:15232184,44712454:278623 +k1,24668:16506669,44712454:278623 +k1,24668:16785292,44712454:278623 +k1,24668:17063916,44712454:278624 +k1,24668:17342539,44712454:278623 +k1,24668:17621162,44712454:278623 +k1,24668:18895647,44712454:278623 +k1,24668:20834040,44712454:278623 +k1,24668:22772433,44712454:278623 +k1,24668:23051057,44712454:278624 +k1,24668:23329680,44712454:278623 +k1,24668:23608303,44712454:278623 +k1,24668:25214742,44712454:278623 +k1,24668:25493365,44712454:278623 +k1,24668:25771988,44712454:278623 +k1,24668:26050612,44712454:278624 +k1,24668:27657051,44712454:278623 +k1,24668:29595444,44712454:278623 +h1,24668:32583029,44712454:0,0,0 +k1,24668:32583029,44712454:0 +k1,24668:32583029,44712454:0 +) +(1,24668:6630773,45397309:25952256,424439,112852 +h1,24668:6630773,45397309:0,0,0 +k1,24668:7614266,45397309:319585 +k1,24668:7933852,45397309:319586 +k1,24668:8253437,45397309:319585 +k1,24668:10232792,45397309:319585 +k1,24668:12212148,45397309:319586 +k1,24668:12531733,45397309:319585 +k1,24668:14511089,45397309:319586 +k1,24668:14830674,45397309:319585 +k1,24668:15150259,45397309:319585 +k1,24668:17129615,45397309:319586 +k1,24668:17449200,45397309:319585 +k1,24668:17768785,45397309:319585 +k1,24668:19748141,45397309:319586 +k1,24668:21727496,45397309:319585 +k1,24668:23706851,45397309:319585 +k1,24668:24026437,45397309:319586 +k1,24668:24346022,45397309:319585 +k1,24668:26325378,45397309:319586 +k1,24668:26644963,45397309:319585 +k1,24668:26964548,45397309:319585 +k1,24668:28943904,45397309:319586 +k1,24668:30923259,45397309:319585 +k1,24668:30923259,45397309:0 +h1,24668:32583029,45397309:0,0,0 +k1,24668:32583029,45397309:0 +k1,24668:32583029,45397309:0 +) +] +) +g1,24669:32583029,45510161 +g1,24669:6630773,45510161 +g1,24669:6630773,45510161 +g1,24669:32583029,45510161 +g1,24669:32583029,45510161 +) +] +(1,24669:32583029,45706769:0,0,0 +g1,24669:32583029,45706769 +) +) +] +(1,24669:6630773,47279633:25952256,0,0 +h1,24669:6630773,47279633:25952256,0,0 +) +] +(1,24669:4262630,4025873:0,0,0 +[1,24669:-473656,4025873:0,0,0 +(1,24669:-473656,-710413:0,0,0 +(1,24669:-473656,-710413:0,0,0 +g1,24669:-473656,-710413 +) +g1,24669:-473656,-710413 ) ] ) ] !28251 -}423 -Input:4586:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4587:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4588:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4589:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}424 Input:4590:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec Input:4591:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !564 -{424 -[1,24735:4262630,47279633:28320399,43253760,0 -(1,24735:4262630,4025873:0,0,0 -[1,24735:-473656,4025873:0,0,0 -(1,24735:-473656,-710413:0,0,0 -(1,24735:-473656,-644877:0,0,0 -k1,24735:-473656,-644877:-65536 +{425 +[1,24733:4262630,47279633:28320399,43253760,0 +(1,24733:4262630,4025873:0,0,0 +[1,24733:-473656,4025873:0,0,0 +(1,24733:-473656,-710413:0,0,0 +(1,24733:-473656,-644877:0,0,0 +k1,24733:-473656,-644877:-65536 ) -(1,24735:-473656,4736287:0,0,0 -k1,24735:-473656,4736287:5209943 +(1,24733:-473656,4736287:0,0,0 +k1,24733:-473656,4736287:5209943 ) -g1,24735:-473656,-710413 +g1,24733:-473656,-710413 ) ] ) -[1,24735:6630773,47279633:25952256,43253760,0 -[1,24735:6630773,4812305:25952256,786432,0 -(1,24735:6630773,4812305:25952256,505283,11795 -(1,24735:6630773,4812305:25952256,505283,11795 -g1,24735:3078558,4812305 -[1,24735:3078558,4812305:0,0,0 -(1,24735:3078558,2439708:0,1703936,0 -k1,24735:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24735:2537886,2439708:1179648,16384,0 +[1,24733:6630773,47279633:25952256,43253760,0 +[1,24733:6630773,4812305:25952256,786432,0 +(1,24733:6630773,4812305:25952256,505283,11795 +(1,24733:6630773,4812305:25952256,505283,11795 +g1,24733:3078558,4812305 +[1,24733:3078558,4812305:0,0,0 +(1,24733:3078558,2439708:0,1703936,0 +k1,24733:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24733:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24735:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24733:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24735:3078558,4812305:0,0,0 -(1,24735:3078558,2439708:0,1703936,0 -g1,24735:29030814,2439708 -g1,24735:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24735:36151628,1915420:16384,1179648,0 +[1,24733:3078558,4812305:0,0,0 +(1,24733:3078558,2439708:0,1703936,0 +g1,24733:29030814,2439708 +g1,24733:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24733:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24735:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24733:37855564,2439708:1179648,16384,0 ) ) -k1,24735:3078556,2439708:-34777008 +k1,24733:3078556,2439708:-34777008 ) ] -[1,24735:3078558,4812305:0,0,0 -(1,24735:3078558,49800853:0,16384,2228224 -k1,24735:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24735:2537886,49800853:1179648,16384,0 -) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24735:3078558,51504789:16384,1179648,0 -) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 -) -] -) -) -) -] -[1,24735:3078558,4812305:0,0,0 -(1,24735:3078558,49800853:0,16384,2228224 -g1,24735:29030814,49800853 -g1,24735:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24735:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24735:37855564,49800853:1179648,16384,0 -) -) -k1,24735:3078556,49800853:-34777008 -) -] -g1,24735:6630773,4812305 -g1,24735:6630773,4812305 -g1,24735:9235173,4812305 -g1,24735:10802138,4812305 -k1,24735:31387652,4812305:20585514 -) -) -] -[1,24735:6630773,45706769:25952256,40108032,0 -(1,24735:6630773,45706769:25952256,40108032,0 -(1,24735:6630773,45706769:0,0,0 -g1,24735:6630773,45706769 -) -[1,24735:6630773,45706769:25952256,40108032,0 -v1,24671:6630773,6254097:0,393216,0 -(1,24671:6630773,11970676:25952256,6109795,196608 -g1,24671:6630773,11970676 -g1,24671:6630773,11970676 -g1,24671:6434165,11970676 -(1,24671:6434165,11970676:0,6109795,196608 -r1,24735:32779637,11970676:26345472,6306403,196608 -k1,24671:6434165,11970676:-26345472 -) -(1,24671:6434165,11970676:26345472,6109795,196608 -[1,24671:6630773,11970676:25952256,5913187,0 -(1,24670:6630773,6481928:25952256,424439,9908 -h1,24670:6630773,6481928:0,0,0 -g1,24670:7626635,6481928 -g1,24670:8290543,6481928 -g1,24670:9286405,6481928 -g1,24670:9618359,6481928 -g1,24670:9950313,6481928 -g1,24670:10282267,6481928 -g1,24670:11610083,6481928 -g1,24670:11942037,6481928 -g1,24670:12273991,6481928 -g1,24670:12605945,6481928 -g1,24670:12937899,6481928 -g1,24670:13269853,6481928 -g1,24670:14597669,6481928 -g1,24670:14929623,6481928 -g1,24670:15593531,6481928 -g1,24670:15925485,6481928 -g1,24670:16257439,6481928 -g1,24670:16589393,6481928 -g1,24670:16921347,6481928 -g1,24670:17253301,6481928 -g1,24670:17585255,6481928 -g1,24670:19908933,6481928 -g1,24670:20240887,6481928 -g1,24670:20572841,6481928 -g1,24670:20904795,6481928 -g1,24670:21236749,6481928 -g1,24670:21900657,6481928 -g1,24670:22232611,6481928 -g1,24670:22564565,6481928 -g1,24670:23892381,6481928 -g1,24670:24224335,6481928 -g1,24670:24888243,6481928 -g1,24670:25220197,6481928 -g1,24670:25552151,6481928 -g1,24670:25884105,6481928 -g1,24670:26216059,6481928 -g1,24670:26548013,6481928 -g1,24670:26879967,6481928 -g1,24670:29203645,6481928 -g1,24670:31195369,6481928 -h1,24670:32523185,6481928:0,0,0 -k1,24670:32583029,6481928:59844 -g1,24670:32583029,6481928 -) -(1,24670:6630773,7166783:25952256,424439,9908 -h1,24670:6630773,7166783:0,0,0 -g1,24670:7626635,7166783 -g1,24670:8290543,7166783 -g1,24670:9286405,7166783 -g1,24670:9618359,7166783 -g1,24670:9950313,7166783 -g1,24670:10282267,7166783 -g1,24670:11610083,7166783 -g1,24670:11942037,7166783 -g1,24670:12273991,7166783 -g1,24670:12605945,7166783 -g1,24670:12937899,7166783 -g1,24670:13269853,7166783 -g1,24670:13601807,7166783 -g1,24670:14597669,7166783 -g1,24670:17253301,7166783 -g1,24670:17585255,7166783 -g1,24670:19908933,7166783 -g1,24670:20240887,7166783 -g1,24670:20572841,7166783 -g1,24670:20904795,7166783 -g1,24670:21236749,7166783 -g1,24670:21900657,7166783 -g1,24670:22232611,7166783 -g1,24670:22564565,7166783 -g1,24670:22896519,7166783 -g1,24670:23892381,7166783 -g1,24670:26548013,7166783 -g1,24670:26879967,7166783 -g1,24670:29203645,7166783 -g1,24670:31195369,7166783 -h1,24670:32523185,7166783:0,0,0 -k1,24670:32583029,7166783:59844 -g1,24670:32583029,7166783 -) -(1,24670:6630773,7851638:25952256,424439,9908 -h1,24670:6630773,7851638:0,0,0 -g1,24670:7626635,7851638 -g1,24670:8290543,7851638 -g1,24670:9286405,7851638 -g1,24670:9618359,7851638 -g1,24670:9950313,7851638 -g1,24670:10282267,7851638 -g1,24670:11942037,7851638 -g1,24670:12273991,7851638 -g1,24670:12605945,7851638 -g1,24670:12937899,7851638 -g1,24670:13269853,7851638 -g1,24670:13601807,7851638 -g1,24670:14597669,7851638 -g1,24670:17253301,7851638 -g1,24670:19908933,7851638 -g1,24670:20240887,7851638 -g1,24670:20572841,7851638 -g1,24670:20904795,7851638 -g1,24670:21236749,7851638 -g1,24670:21900657,7851638 -g1,24670:22232611,7851638 -g1,24670:22564565,7851638 -g1,24670:22896519,7851638 -g1,24670:23892381,7851638 -g1,24670:26548013,7851638 -g1,24670:29203645,7851638 -g1,24670:31195369,7851638 -h1,24670:32523185,7851638:0,0,0 -k1,24670:32583029,7851638:59844 -g1,24670:32583029,7851638 -) -(1,24670:6630773,8536493:25952256,398014,0 -h1,24670:6630773,8536493:0,0,0 -h1,24670:7294681,8536493:0,0,0 -k1,24670:32583029,8536493:25288348 -g1,24670:32583029,8536493 -) -(1,24670:6630773,9221348:25952256,424439,6605 -h1,24670:6630773,9221348:0,0,0 -g1,24670:7626635,9221348 -g1,24670:10614220,9221348 -h1,24670:14265713,9221348:0,0,0 -k1,24670:32583029,9221348:18317316 -g1,24670:32583029,9221348 -) -(1,24670:6630773,9906203:25952256,398014,0 -h1,24670:6630773,9906203:0,0,0 -h1,24670:7294681,9906203:0,0,0 -k1,24670:32583029,9906203:25288348 -g1,24670:32583029,9906203 -) -(1,24670:6630773,10591058:25952256,424439,112852 -h1,24670:6630773,10591058:0,0,0 -g1,24670:7626635,10591058 -g1,24670:7958589,10591058 -g1,24670:8290543,10591058 -g1,24670:9618359,10591058 -g1,24670:9950313,10591058 -g1,24670:10282267,10591058 -g1,24670:11942037,10591058 -g1,24670:12273991,10591058 -g1,24670:14597669,10591058 -g1,24670:14929623,10591058 -g1,24670:15261577,10591058 -g1,24670:16589393,10591058 -g1,24670:16921347,10591058 -g1,24670:17253301,10591058 -g1,24670:18581117,10591058 -g1,24670:20572841,10591058 -h1,24670:23560426,10591058:0,0,0 -k1,24670:32583029,10591058:9022603 -g1,24670:32583029,10591058 -) -(1,24670:6630773,11275913:25952256,424439,112852 -h1,24670:6630773,11275913:0,0,0 -g1,24670:7626635,11275913 -g1,24670:7958589,11275913 -g1,24670:8290543,11275913 -g1,24670:10282267,11275913 -g1,24670:12273991,11275913 -g1,24670:12605945,11275913 -g1,24670:14597669,11275913 -g1,24670:16589393,11275913 -g1,24670:18581117,11275913 -g1,24670:20572841,11275913 -k1,24670:20572841,11275913:0 -h1,24670:22232611,11275913:0,0,0 -k1,24670:32583029,11275913:10350418 -g1,24670:32583029,11275913 -) -(1,24670:6630773,11960768:25952256,424439,9908 -h1,24670:6630773,11960768:0,0,0 -g1,24670:7626635,11960768 -g1,24670:8290543,11960768 -g1,24670:9286405,11960768 -g1,24670:9618359,11960768 -g1,24670:9950313,11960768 -g1,24670:10282267,11960768 -g1,24670:12273991,11960768 -g1,24670:12605945,11960768 -g1,24670:12937899,11960768 -g1,24670:13269853,11960768 -g1,24670:13601807,11960768 -g1,24670:13933761,11960768 -g1,24670:14597669,11960768 -g1,24670:14929623,11960768 -g1,24670:15261577,11960768 -g1,24670:15593531,11960768 -g1,24670:15925485,11960768 -g1,24670:16589393,11960768 -g1,24670:16921347,11960768 -g1,24670:17253301,11960768 -g1,24670:17585255,11960768 -g1,24670:17917209,11960768 -g1,24670:18581117,11960768 -g1,24670:20572841,11960768 -h1,24670:22232611,11960768:0,0,0 -k1,24670:32583029,11960768:10350418 -g1,24670:32583029,11960768 -) -] -) -g1,24671:32583029,11970676 -g1,24671:6630773,11970676 -g1,24671:6630773,11970676 -g1,24671:32583029,11970676 -g1,24671:32583029,11970676 -) -h1,24671:6630773,12167284:0,0,0 -(1,24675:6630773,13032364:25952256,513147,134348 -h1,24674:6630773,13032364:983040,0,0 -k1,24674:10581478,13032364:177797 -(1,24674:10581478,13032364:0,452978,115847 -r1,24735:14808574,13032364:4227096,568825,115847 -k1,24674:10581478,13032364:-4227096 -) -(1,24674:10581478,13032364:4227096,452978,115847 -k1,24674:10581478,13032364:3277 -h1,24674:14805297,13032364:0,411205,112570 -) -k1,24674:14986370,13032364:177796 -k1,24674:17505113,13032364:177797 -k1,24674:18038769,13032364:177796 -k1,24674:21826289,13032364:177797 -k1,24674:22663378,13032364:177797 -k1,24674:23860259,13032364:177796 -k1,24674:25322562,13032364:177797 -k1,24674:26448009,13032364:177796 -k1,24674:28511277,13032364:177797 -k1,24674:32583029,13032364:0 -) -(1,24675:6630773,13897444:25952256,505283,7863 -g1,24674:7821562,13897444 -k1,24675:32583028,13897444:21925068 -g1,24675:32583028,13897444 -) -v1,24677:6630773,14582299:0,393216,0 -(1,24689:6630773,19060240:25952256,4871157,196608 -g1,24689:6630773,19060240 -g1,24689:6630773,19060240 -g1,24689:6434165,19060240 -(1,24689:6434165,19060240:0,4871157,196608 -r1,24735:32779637,19060240:26345472,5067765,196608 -k1,24689:6434165,19060240:-26345472 -) -(1,24689:6434165,19060240:26345472,4871157,196608 -[1,24689:6630773,19060240:25952256,4674549,0 -(1,24679:6630773,14810130:25952256,424439,106246 -(1,24678:6630773,14810130:0,0,0 -g1,24678:6630773,14810130 -g1,24678:6630773,14810130 -g1,24678:6303093,14810130 -(1,24678:6303093,14810130:0,0,0 -) -g1,24678:6630773,14810130 -) -k1,24679:6630773,14810130:0 -h1,24679:15261575,14810130:0,0,0 -k1,24679:32583029,14810130:17321454 -g1,24679:32583029,14810130 -) -(1,24688:6630773,15626057:25952256,424439,9908 -(1,24681:6630773,15626057:0,0,0 -g1,24681:6630773,15626057 -g1,24681:6630773,15626057 -g1,24681:6303093,15626057 -(1,24681:6303093,15626057:0,0,0 -) -g1,24681:6630773,15626057 -) -g1,24688:7626635,15626057 -g1,24688:8290543,15626057 -g1,24688:8954451,15626057 -g1,24688:11610083,15626057 -g1,24688:12273991,15626057 -g1,24688:12937899,15626057 -h1,24688:13269853,15626057:0,0,0 -k1,24688:32583029,15626057:19313176 -g1,24688:32583029,15626057 -) -(1,24688:6630773,16310912:25952256,424439,112852 -h1,24688:6630773,16310912:0,0,0 -g1,24688:7626635,16310912 -g1,24688:7958589,16310912 -g1,24688:8290543,16310912 -g1,24688:9950313,16310912 -g1,24688:10282267,16310912 -g1,24688:12605945,16310912 -g1,24688:14597669,16310912 -g1,24688:16589393,16310912 -g1,24688:16921347,16310912 -g1,24688:17253301,16310912 -g1,24688:17585255,16310912 -g1,24688:18581117,16310912 -g1,24688:20572841,16310912 -h1,24688:23560426,16310912:0,0,0 -k1,24688:32583029,16310912:9022603 -g1,24688:32583029,16310912 -) -(1,24688:6630773,16995767:25952256,424439,112852 -h1,24688:6630773,16995767:0,0,0 -g1,24688:7626635,16995767 -g1,24688:7958589,16995767 -g1,24688:8290543,16995767 -g1,24688:10282267,16995767 -g1,24688:10614221,16995767 -g1,24688:12605945,16995767 -g1,24688:14597669,16995767 -g1,24688:16589393,16995767 -g1,24688:18581117,16995767 -g1,24688:20572841,16995767 -k1,24688:20572841,16995767:0 -h1,24688:22232611,16995767:0,0,0 -k1,24688:32583029,16995767:10350418 -g1,24688:32583029,16995767 -) -(1,24688:6630773,17680622:25952256,424439,9908 -h1,24688:6630773,17680622:0,0,0 -g1,24688:7626635,17680622 -g1,24688:8290543,17680622 -g1,24688:9618359,17680622 -g1,24688:9950313,17680622 -g1,24688:10282267,17680622 -g1,24688:10614221,17680622 -g1,24688:10946175,17680622 -g1,24688:11278129,17680622 -g1,24688:12605945,17680622 -g1,24688:12937899,17680622 -g1,24688:13269853,17680622 -g1,24688:13601807,17680622 -g1,24688:13933761,17680622 -g1,24688:14597669,17680622 -g1,24688:14929623,17680622 -g1,24688:15261577,17680622 -g1,24688:16589393,17680622 -g1,24688:16921347,17680622 -g1,24688:17253301,17680622 -g1,24688:17585255,17680622 -g1,24688:17917209,17680622 -g1,24688:18581117,17680622 -g1,24688:20572841,17680622 -h1,24688:21900657,17680622:0,0,0 -k1,24688:32583029,17680622:10682372 -g1,24688:32583029,17680622 -) -(1,24688:6630773,18365477:25952256,424439,9908 -h1,24688:6630773,18365477:0,0,0 -g1,24688:7626635,18365477 -g1,24688:8290543,18365477 -g1,24688:9618359,18365477 -g1,24688:9950313,18365477 -g1,24688:10282267,18365477 -g1,24688:10614221,18365477 -g1,24688:10946175,18365477 -g1,24688:11278129,18365477 -g1,24688:11610083,18365477 -g1,24688:12605945,18365477 -g1,24688:12937899,18365477 -g1,24688:13269853,18365477 -g1,24688:13601807,18365477 -g1,24688:13933761,18365477 -g1,24688:14597669,18365477 -g1,24688:14929623,18365477 -g1,24688:15261577,18365477 -g1,24688:15593531,18365477 -g1,24688:16589393,18365477 -g1,24688:16921347,18365477 -g1,24688:17253301,18365477 -g1,24688:17585255,18365477 -g1,24688:17917209,18365477 -g1,24688:18581117,18365477 -g1,24688:20572841,18365477 -h1,24688:21900657,18365477:0,0,0 -k1,24688:32583029,18365477:10682372 -g1,24688:32583029,18365477 -) -(1,24688:6630773,19050332:25952256,424439,9908 -h1,24688:6630773,19050332:0,0,0 -g1,24688:7626635,19050332 -g1,24688:8290543,19050332 -g1,24688:9950313,19050332 -g1,24688:10282267,19050332 -g1,24688:10614221,19050332 -g1,24688:10946175,19050332 -g1,24688:11278129,19050332 -g1,24688:11610083,19050332 -g1,24688:12605945,19050332 -g1,24688:12937899,19050332 -g1,24688:13269853,19050332 -g1,24688:13601807,19050332 -g1,24688:13933761,19050332 -g1,24688:14597669,19050332 -g1,24688:14929623,19050332 -g1,24688:15261577,19050332 -g1,24688:15593531,19050332 -g1,24688:16589393,19050332 -g1,24688:16921347,19050332 -g1,24688:17253301,19050332 -g1,24688:17585255,19050332 -g1,24688:17917209,19050332 -g1,24688:18581117,19050332 -g1,24688:20572841,19050332 -h1,24688:21900657,19050332:0,0,0 -k1,24688:32583029,19050332:10682372 -g1,24688:32583029,19050332 -) -] -) -g1,24689:32583029,19060240 -g1,24689:6630773,19060240 -g1,24689:6630773,19060240 -g1,24689:32583029,19060240 -g1,24689:32583029,19060240 -) -h1,24689:6630773,19256848:0,0,0 -(1,24693:6630773,20121928:25952256,513147,126483 -h1,24692:6630773,20121928:983040,0,0 -k1,24692:10667133,20121928:263452 -(1,24692:10667133,20121928:0,452978,115847 -r1,24735:14894229,20121928:4227096,568825,115847 -k1,24692:10667133,20121928:-4227096 -) -(1,24692:10667133,20121928:4227096,452978,115847 -k1,24692:10667133,20121928:3277 -h1,24692:14890952,20121928:0,411205,112570 -) -k1,24692:15157681,20121928:263452 -k1,24692:17762079,20121928:263452 -k1,24692:18381391,20121928:263452 -k1,24692:22254566,20121928:263452 -k1,24692:23177310,20121928:263452 -k1,24692:24459847,20121928:263452 -k1,24692:28795051,20121928:263452 -k1,24692:29741388,20121928:263452 -k1,24692:32583029,20121928:0 -) -(1,24693:6630773,20987008:25952256,505283,134348 -g1,24692:9613971,20987008 -g1,24692:10425962,20987008 -g1,24692:12076813,20987008 -g1,24692:13560548,20987008 -k1,24693:32583028,20987008:17281844 -g1,24693:32583028,20987008 -) -v1,24695:6630773,21671863:0,393216,0 -(1,24706:6630773,25561287:25952256,4282640,196608 -g1,24706:6630773,25561287 -g1,24706:6630773,25561287 -g1,24706:6434165,25561287 -(1,24706:6434165,25561287:0,4282640,196608 -r1,24735:32779637,25561287:26345472,4479248,196608 -k1,24706:6434165,25561287:-26345472 -) -(1,24706:6434165,25561287:26345472,4282640,196608 -[1,24706:6630773,25561287:25952256,4086032,0 -(1,24697:6630773,21899694:25952256,424439,106246 -(1,24696:6630773,21899694:0,0,0 -g1,24696:6630773,21899694 -g1,24696:6630773,21899694 -g1,24696:6303093,21899694 -(1,24696:6303093,21899694:0,0,0 -) -g1,24696:6630773,21899694 -) -k1,24697:6630773,21899694:0 -h1,24697:15261575,21899694:0,0,0 -k1,24697:32583029,21899694:17321454 -g1,24697:32583029,21899694 -) -(1,24705:6630773,22715621:25952256,424439,9908 -(1,24699:6630773,22715621:0,0,0 -g1,24699:6630773,22715621 -g1,24699:6630773,22715621 -g1,24699:6303093,22715621 -(1,24699:6303093,22715621:0,0,0 -) -g1,24699:6630773,22715621 -) -g1,24705:7626635,22715621 -g1,24705:8290543,22715621 -g1,24705:8954451,22715621 -g1,24705:11610083,22715621 -g1,24705:12273991,22715621 -g1,24705:12937899,22715621 -h1,24705:13269853,22715621:0,0,0 -k1,24705:32583029,22715621:19313176 -g1,24705:32583029,22715621 -) -(1,24705:6630773,23400476:25952256,424439,106246 -h1,24705:6630773,23400476:0,0,0 -g1,24705:7626635,23400476 -g1,24705:7958589,23400476 -g1,24705:8290543,23400476 -g1,24705:8622497,23400476 -g1,24705:8954451,23400476 -g1,24705:9286405,23400476 -g1,24705:10282267,23400476 -g1,24705:11942037,23400476 -g1,24705:12273991,23400476 -g1,24705:12605945,23400476 -g1,24705:12937899,23400476 -g1,24705:13269853,23400476 -g1,24705:13601807,23400476 -g1,24705:13933761,23400476 -g1,24705:14265715,23400476 -g1,24705:14597669,23400476 -g1,24705:14929623,23400476 -g1,24705:15261577,23400476 -g1,24705:16921347,23400476 -g1,24705:17253301,23400476 -g1,24705:17585255,23400476 -g1,24705:17917209,23400476 -g1,24705:18249163,23400476 -g1,24705:20240887,23400476 -g1,24705:22232611,23400476 -h1,24705:25220196,23400476:0,0,0 -k1,24705:32583029,23400476:7362833 -g1,24705:32583029,23400476 -) -(1,24705:6630773,24085331:25952256,424439,112852 -h1,24705:6630773,24085331:0,0,0 -g1,24705:7626635,24085331 -g1,24705:7958589,24085331 -g1,24705:8290543,24085331 -g1,24705:10282267,24085331 -g1,24705:12273991,24085331 -g1,24705:12605945,24085331 -g1,24705:12937899,24085331 -g1,24705:13269853,24085331 -g1,24705:13601807,24085331 -g1,24705:13933761,24085331 -g1,24705:14265715,24085331 -g1,24705:14597669,24085331 -g1,24705:14929623,24085331 -g1,24705:15261577,24085331 -g1,24705:17253301,24085331 -g1,24705:17585255,24085331 -g1,24705:17917209,24085331 -g1,24705:18249163,24085331 -g1,24705:20240887,24085331 -g1,24705:22232611,24085331 -k1,24705:22232611,24085331:0 -h1,24705:23892381,24085331:0,0,0 -k1,24705:32583029,24085331:8690648 -g1,24705:32583029,24085331 -) -(1,24705:6630773,24770186:25952256,407923,106246 -h1,24705:6630773,24770186:0,0,0 -g1,24705:7626635,24770186 -g1,24705:8290543,24770186 -g1,24705:8622497,24770186 -g1,24705:8954451,24770186 -g1,24705:9286405,24770186 -g1,24705:9618359,24770186 -g1,24705:10282267,24770186 -g1,24705:12273991,24770186 -g1,24705:12605945,24770186 -g1,24705:12937899,24770186 -g1,24705:13269853,24770186 -g1,24705:13601807,24770186 -g1,24705:13933761,24770186 -g1,24705:14265715,24770186 -g1,24705:14597669,24770186 -g1,24705:14929623,24770186 -g1,24705:15261577,24770186 -g1,24705:18249162,24770186 -g1,24705:18581116,24770186 -g1,24705:18913070,24770186 -g1,24705:19245024,24770186 -g1,24705:19576978,24770186 -g1,24705:20240886,24770186 -g1,24705:20572840,24770186 -g1,24705:20904794,24770186 -g1,24705:21236748,24770186 -g1,24705:22232610,24770186 -h1,24705:23892380,24770186:0,0,0 -k1,24705:32583029,24770186:8690649 -g1,24705:32583029,24770186 -) -(1,24705:6630773,25455041:25952256,424439,106246 -h1,24705:6630773,25455041:0,0,0 -g1,24705:7626635,25455041 -g1,24705:8290543,25455041 -g1,24705:8622497,25455041 -g1,24705:8954451,25455041 -g1,24705:9286405,25455041 -g1,24705:9618359,25455041 -g1,24705:10282267,25455041 -g1,24705:15261576,25455041 -g1,24705:18249161,25455041 -g1,24705:18581115,25455041 -g1,24705:18913069,25455041 -g1,24705:19245023,25455041 -g1,24705:19576977,25455041 -g1,24705:20240885,25455041 -g1,24705:20572839,25455041 -g1,24705:20904793,25455041 -g1,24705:21236747,25455041 -g1,24705:21568701,25455041 -g1,24705:22232609,25455041 -h1,24705:23892379,25455041:0,0,0 -k1,24705:32583029,25455041:8690650 -g1,24705:32583029,25455041 -) -] -) -g1,24706:32583029,25561287 -g1,24706:6630773,25561287 -g1,24706:6630773,25561287 -g1,24706:32583029,25561287 -g1,24706:32583029,25561287 -) -h1,24706:6630773,25757895:0,0,0 -(1,24710:6630773,26622975:25952256,513147,134348 -h1,24709:6630773,26622975:983040,0,0 -k1,24709:10626434,26622975:222753 -(1,24709:10626434,26622975:0,452978,115847 -r1,24735:15556954,26622975:4930520,568825,115847 -k1,24709:10626434,26622975:-4930520 -) -(1,24709:10626434,26622975:4930520,452978,115847 -k1,24709:10626434,26622975:3277 -h1,24709:15553677,26622975:0,411205,112570 -) -k1,24709:15779707,26622975:222753 -k1,24709:18536737,26622975:222753 -k1,24709:19115350,26622975:222753 -k1,24709:21418216,26622975:222753 -k1,24709:22300261,26622975:222753 -k1,24709:23542100,26622975:222754 -k1,24709:25154216,26622975:222753 -k1,24709:26644435,26622975:222753 -k1,24709:27223048,26622975:222753 -k1,24709:29257216,26622975:222753 -k1,24709:30096007,26622975:222753 -k1,24709:31707468,26622975:222753 -k1,24709:32583029,26622975:0 -) -(1,24710:6630773,27488055:25952256,513147,134348 -k1,24709:8290669,27488055:212861 -k1,24709:10857583,27488055:212861 -k1,24709:12267131,27488055:212861 -k1,24709:15311147,27488055:212861 -k1,24709:16183300,27488055:212861 -k1,24709:17415246,27488055:212861 -k1,24709:18912613,27488055:212861 -k1,24709:20813680,27488055:212860 -k1,24709:21558038,27488055:212861 -k1,24709:23348351,27488055:212861 -k1,24709:24177250,27488055:212861 -k1,24709:25409196,27488055:212861 -k1,24709:27275530,27488055:212861 -k1,24709:30562685,27488055:212861 -k1,24709:31966991,27488055:212861 -k1,24709:32583029,27488055:0 -) -(1,24710:6630773,28353135:25952256,513147,134348 -k1,24709:8023445,28353135:189431 -k1,24709:9579958,28353135:189432 -k1,24709:11504782,28353135:189431 -(1,24709:11504782,28353135:0,459977,122846 -r1,24735:14325031,28353135:2820249,582823,122846 -k1,24709:11504782,28353135:-2820249 -) -(1,24709:11504782,28353135:2820249,459977,122846 -k1,24709:11504782,28353135:3277 -h1,24709:14321754,28353135:0,411205,112570 -) -k1,24709:14514462,28353135:189431 -k1,24709:15355322,28353135:189432 -k1,24709:16736198,28353135:189431 -k1,24709:17873280,28353135:189431 -k1,24709:18833414,28353135:189431 -k1,24709:23049378,28353135:189432 -k1,24709:25219962,28353135:189431 -k1,24709:26060821,28353135:189431 -k1,24709:28172424,28353135:189432 -k1,24709:31391584,28353135:189431 -k1,24709:32583029,28353135:0 -) -(1,24710:6630773,29218215:25952256,505283,134348 -k1,24709:9309137,29218215:219453 -k1,24709:11712906,29218215:219454 -k1,24709:12419927,29218215:219433 -k1,24709:14029399,29218215:219453 -k1,24709:14780349,29218215:219453 -k1,24709:16513029,29218215:219454 -k1,24709:17383910,29218215:219453 -k1,24709:18800706,29218215:219453 -k1,24709:20039244,29218215:219453 -k1,24709:22943708,29218215:219454 -k1,24709:25047976,29218215:219453 -k1,24709:27002822,29218215:219453 -k1,24709:28241361,29218215:219454 -k1,24709:29850833,29218215:219453 -k1,24709:32583029,29218215:0 -) -(1,24710:6630773,30083295:25952256,513147,134348 -(1,24709:6816895,30083295:0,452978,115847 -r1,24735:7526873,30083295:709978,568825,115847 -k1,24709:6816895,30083295:-709978 -) -(1,24709:6816895,30083295:709978,452978,115847 -k1,24709:6816895,30083295:3277 -h1,24709:7523596,30083295:0,411205,112570 -) -k1,24709:8013385,30083295:279418 -k1,24709:9484248,30083295:279418 -k1,24709:12548291,30083295:279418 -k1,24709:14395331,30083295:279419 -k1,24709:16647382,30083295:279418 -k1,24709:18158877,30083295:279418 -k1,24709:20716982,30083295:279418 -h1,24709:22259700,30083295:0,0,0 -k1,24709:22539118,30083295:279418 -k1,24709:23627906,30083295:279418 -k1,24709:25405478,30083295:279419 -h1,24709:26600855,30083295:0,0,0 -k1,24709:27261037,30083295:279418 -k1,24709:28737142,30083295:279418 -k1,24709:31923737,30083295:279418 -k1,24709:32583029,30083295:0 -) -(1,24710:6630773,30948375:25952256,513147,134348 -k1,24709:8611599,30948375:269681 -k1,24709:9412776,30948375:269680 -k1,24709:11259909,30948375:269681 -k1,24709:13264983,30948375:269681 -k1,24709:16560460,30948375:269680 -k1,24709:18397762,30948375:269681 -k1,24709:21247595,30948375:269681 -k1,24709:24715431,30948375:269680 -k1,24709:26217189,30948375:269681 -k1,24709:28765557,30948375:269681 -h1,24709:29736145,30948375:0,0,0 -k1,24709:30005825,30948375:269680 -k1,24709:31084876,30948375:269681 -k1,24709:32583029,30948375:0 -) -(1,24710:6630773,31813455:25952256,505283,95026 -h1,24709:7826150,31813455:0,0,0 -k1,24710:32583028,31813455:24497356 -g1,24710:32583028,31813455 -) -v1,24712:6630773,32498310:0,393216,0 -(1,24729:6630773,40400526:25952256,8295432,196608 -g1,24729:6630773,40400526 -g1,24729:6630773,40400526 -g1,24729:6434165,40400526 -(1,24729:6434165,40400526:0,8295432,196608 -r1,24735:32779637,40400526:26345472,8492040,196608 -k1,24729:6434165,40400526:-26345472 -) -(1,24729:6434165,40400526:26345472,8295432,196608 -[1,24729:6630773,40400526:25952256,8098824,0 -(1,24714:6630773,32726141:25952256,424439,106246 -(1,24713:6630773,32726141:0,0,0 -g1,24713:6630773,32726141 -g1,24713:6630773,32726141 -g1,24713:6303093,32726141 -(1,24713:6303093,32726141:0,0,0 -) -g1,24713:6630773,32726141 -) -k1,24714:6630773,32726141:0 -k1,24714:6630773,32726141:0 -h1,24714:15925483,32726141:0,0,0 -k1,24714:32583029,32726141:16657546 -g1,24714:32583029,32726141 -) -(1,24715:6630773,33410996:25952256,431045,112852 -h1,24715:6630773,33410996:0,0,0 -g1,24715:6962727,33410996 -g1,24715:7294681,33410996 -g1,24715:7626635,33410996 -g1,24715:7958589,33410996 -g1,24715:8290543,33410996 -g1,24715:8622497,33410996 -g1,24715:8954451,33410996 -g1,24715:9286405,33410996 -g1,24715:9618359,33410996 -g1,24715:9950313,33410996 -g1,24715:10282267,33410996 -g1,24715:10614221,33410996 -g1,24715:10946175,33410996 -g1,24715:12273991,33410996 -g1,24715:12937899,33410996 -g1,24715:16921347,33410996 -g1,24715:17917209,33410996 -g1,24715:18913071,33410996 -k1,24715:18913071,33410996:0 -h1,24715:19576979,33410996:0,0,0 -k1,24715:32583029,33410996:13006050 -g1,24715:32583029,33410996 -) -(1,24716:6630773,34095851:25952256,431045,112852 -h1,24716:6630773,34095851:0,0,0 -g1,24716:6962727,34095851 -g1,24716:7294681,34095851 -g1,24716:7626635,34095851 -g1,24716:7958589,34095851 -g1,24716:8290543,34095851 -g1,24716:8622497,34095851 -g1,24716:8954451,34095851 -g1,24716:9286405,34095851 -g1,24716:9618359,34095851 -g1,24716:9950313,34095851 -g1,24716:10282267,34095851 -g1,24716:10614221,34095851 -g1,24716:10946175,34095851 -g1,24716:12273991,34095851 -g1,24716:12937899,34095851 -g1,24716:16921347,34095851 -g1,24716:17917209,34095851 -g1,24716:18913071,34095851 -g1,24716:20240887,34095851 -k1,24716:20240887,34095851:0 -h1,24716:20904795,34095851:0,0,0 -k1,24716:32583029,34095851:11678234 -g1,24716:32583029,34095851 -) -(1,24717:6630773,34780706:25952256,424439,106246 -h1,24717:6630773,34780706:0,0,0 -g1,24717:6962727,34780706 -g1,24717:7294681,34780706 -g1,24717:11610083,34780706 -g1,24717:12273991,34780706 -g1,24717:13269853,34780706 -g1,24717:15261577,34780706 -g1,24717:15925485,34780706 -g1,24717:23892381,34780706 -g1,24717:24556289,34780706 -g1,24717:28871690,34780706 -k1,24717:28871690,34780706:0 -h1,24717:29535598,34780706:0,0,0 -k1,24717:32583029,34780706:3047431 -g1,24717:32583029,34780706 -) -(1,24718:6630773,35465561:25952256,424439,86428 -h1,24718:6630773,35465561:0,0,0 -g1,24718:6962727,35465561 -g1,24718:7294681,35465561 -g1,24718:11610083,35465561 -g1,24718:12273991,35465561 -g1,24718:13269853,35465561 -k1,24718:13269853,35465561:0 -h1,24718:15261577,35465561:0,0,0 -k1,24718:32583029,35465561:17321452 -g1,24718:32583029,35465561 -) -(1,24728:6630773,36281488:25952256,424439,9908 -(1,24720:6630773,36281488:0,0,0 -g1,24720:6630773,36281488 -g1,24720:6630773,36281488 -g1,24720:6303093,36281488 -(1,24720:6303093,36281488:0,0,0 -) -g1,24720:6630773,36281488 -) -g1,24728:7626635,36281488 -g1,24728:8290543,36281488 -g1,24728:8954451,36281488 -g1,24728:11610083,36281488 -g1,24728:12605945,36281488 -g1,24728:13269853,36281488 -h1,24728:13601807,36281488:0,0,0 -k1,24728:32583029,36281488:18981222 -g1,24728:32583029,36281488 -) -(1,24728:6630773,36966343:25952256,424439,106246 -h1,24728:6630773,36966343:0,0,0 -g1,24728:7626635,36966343 -g1,24728:7958589,36966343 -g1,24728:8290543,36966343 -g1,24728:10282267,36966343 -g1,24728:15261576,36966343 -g1,24728:15593530,36966343 -g1,24728:15925484,36966343 -g1,24728:17253300,36966343 -g1,24728:17585254,36966343 -g1,24728:17917208,36966343 -g1,24728:19245024,36966343 -h1,24728:20904794,36966343:0,0,0 -k1,24728:32583029,36966343:11678235 -g1,24728:32583029,36966343 -) -(1,24728:6630773,37651198:25952256,424439,6605 -h1,24728:6630773,37651198:0,0,0 -g1,24728:7626635,37651198 -g1,24728:7958589,37651198 -g1,24728:8290543,37651198 -g1,24728:10282267,37651198 -g1,24728:10614221,37651198 -g1,24728:10946175,37651198 -g1,24728:11278129,37651198 -g1,24728:11610083,37651198 -g1,24728:11942037,37651198 -g1,24728:12273991,37651198 -g1,24728:12605945,37651198 -g1,24728:12937899,37651198 -g1,24728:13269853,37651198 -g1,24728:15261577,37651198 -g1,24728:17253301,37651198 -g1,24728:19245025,37651198 -k1,24728:19245025,37651198:0 -h1,24728:20904795,37651198:0,0,0 -k1,24728:32583029,37651198:11678234 -g1,24728:32583029,37651198 -) -(1,24728:6630773,38336053:25952256,407923,9908 -h1,24728:6630773,38336053:0,0,0 -g1,24728:7626635,38336053 -g1,24728:8290543,38336053 -g1,24728:8622497,38336053 -g1,24728:10282267,38336053 -g1,24728:10614221,38336053 -g1,24728:10946175,38336053 -g1,24728:11278129,38336053 -g1,24728:11610083,38336053 -g1,24728:11942037,38336053 -g1,24728:12273991,38336053 -g1,24728:15261577,38336053 -g1,24728:15593531,38336053 -g1,24728:17253301,38336053 -g1,24728:17585255,38336053 -g1,24728:19245025,38336053 -g1,24728:19576979,38336053 -g1,24728:19908933,38336053 -g1,24728:20240887,38336053 -h1,24728:20904795,38336053:0,0,0 -k1,24728:32583029,38336053:11678234 -g1,24728:32583029,38336053 -) -(1,24728:6630773,39020908:25952256,407923,9908 -h1,24728:6630773,39020908:0,0,0 -g1,24728:7626635,39020908 -g1,24728:8290543,39020908 -g1,24728:8622497,39020908 -g1,24728:10282267,39020908 -g1,24728:10614221,39020908 -g1,24728:10946175,39020908 -g1,24728:11278129,39020908 -g1,24728:11610083,39020908 -g1,24728:11942037,39020908 -g1,24728:12273991,39020908 -g1,24728:15261577,39020908 -g1,24728:15593531,39020908 -g1,24728:17253301,39020908 -g1,24728:17585255,39020908 -g1,24728:19245025,39020908 -g1,24728:19576979,39020908 -g1,24728:19908933,39020908 -g1,24728:20240887,39020908 -g1,24728:20572841,39020908 -h1,24728:20904795,39020908:0,0,0 -k1,24728:32583029,39020908:11678234 -g1,24728:32583029,39020908 -) -(1,24728:6630773,39705763:25952256,407923,9908 -h1,24728:6630773,39705763:0,0,0 -g1,24728:7626635,39705763 -g1,24728:8290543,39705763 -g1,24728:8622497,39705763 -g1,24728:10282267,39705763 -g1,24728:10614221,39705763 -g1,24728:10946175,39705763 -g1,24728:11278129,39705763 -g1,24728:11610083,39705763 -g1,24728:11942037,39705763 -g1,24728:12273991,39705763 -g1,24728:15261577,39705763 -g1,24728:15593531,39705763 -g1,24728:17253301,39705763 -g1,24728:17585255,39705763 -g1,24728:19245025,39705763 -g1,24728:19576979,39705763 -g1,24728:19908933,39705763 -g1,24728:20240887,39705763 -g1,24728:20572841,39705763 -h1,24728:20904795,39705763:0,0,0 -k1,24728:32583029,39705763:11678234 -g1,24728:32583029,39705763 -) -(1,24728:6630773,40390618:25952256,424439,9908 -h1,24728:6630773,40390618:0,0,0 -g1,24728:7626635,40390618 -g1,24728:8290543,40390618 -g1,24728:8954451,40390618 -g1,24728:9618359,40390618 -g1,24728:11278129,40390618 -h1,24728:12605945,40390618:0,0,0 -k1,24728:32583029,40390618:19977084 -g1,24728:32583029,40390618 -) -] -) -g1,24729:32583029,40400526 -g1,24729:6630773,40400526 -g1,24729:6630773,40400526 -g1,24729:32583029,40400526 -g1,24729:32583029,40400526 -) -h1,24729:6630773,40597134:0,0,0 -(1,24733:6630773,41462214:25952256,513147,134348 -h1,24732:6630773,41462214:983040,0,0 -k1,24732:8462807,41462214:221159 -k1,24732:9887207,41462214:221159 -k1,24732:12349696,41462214:221158 -k1,24732:15405942,41462214:221159 -k1,24732:17016464,41462214:221159 -k1,24732:17769120,41462214:221159 -k1,24732:20962336,41462214:221158 -k1,24732:22131146,41462214:221159 -k1,24732:23118421,41462214:221159 -k1,24732:24624086,41462214:221159 -k1,24732:26863753,41462214:221158 -k1,24732:28829480,41462214:221159 -k1,24732:31839851,41462214:221159 -k1,24732:32583029,41462214:0 -) -(1,24733:6630773,42327294:25952256,513147,134348 -k1,24732:9563458,42327294:212941 -k1,24732:10795484,42327294:212941 -k1,24732:12199870,42327294:212941 -k1,24732:13360462,42327294:212941 -(1,24732:13360462,42327294:0,452978,115847 -r1,24735:14422151,42327294:1061689,568825,115847 -k1,24732:13360462,42327294:-1061689 -) -(1,24732:13360462,42327294:1061689,452978,115847 -k1,24732:13360462,42327294:3277 -h1,24732:14418874,42327294:0,411205,112570 -) -k1,24732:14635092,42327294:212941 -k1,24732:16415654,42327294:212941 -k1,24732:17647681,42327294:212942 -k1,24732:19831290,42327294:212941 -k1,24732:22073226,42327294:212941 -k1,24732:23482854,42327294:212941 -k1,24732:25507210,42327294:212941 -k1,24732:26251648,42327294:212941 -k1,24732:29821998,42327294:212941 -k1,24733:32583029,42327294:0 -) -(1,24733:6630773,43192374:25952256,513147,134348 -k1,24732:8504338,43192374:211572 -k1,24732:9907355,43192374:211572 -k1,24732:12832118,43192374:211572 -k1,24732:13991341,43192374:211572 -k1,24732:15221998,43192374:211572 -k1,24732:17285617,43192374:211572 -k1,24732:21172447,43192374:211571 -k1,24732:23523114,43192374:211572 -k1,24732:24931373,43192374:211572 -k1,24732:28050122,43192374:211572 -k1,24732:28920986,43192374:211572 -k1,24732:30151643,43192374:211572 -k1,24732:32583029,43192374:0 -) -(1,24733:6630773,44057454:25952256,505283,7863 -g1,24732:9387872,44057454 -g1,24732:10606186,44057454 -g1,24732:12458888,44057454 -g1,24732:13344279,44057454 -k1,24733:32583028,44057454:17330996 -g1,24733:32583028,44057454 -) -] -(1,24735:32583029,45706769:0,0,0 -g1,24735:32583029,45706769 -) -) -] -(1,24735:6630773,47279633:25952256,0,0 -h1,24735:6630773,47279633:25952256,0,0 -) -] -(1,24735:4262630,4025873:0,0,0 -[1,24735:-473656,4025873:0,0,0 -(1,24735:-473656,-710413:0,0,0 -(1,24735:-473656,-710413:0,0,0 -g1,24735:-473656,-710413 -) -g1,24735:-473656,-710413 +[1,24733:3078558,4812305:0,0,0 +(1,24733:3078558,49800853:0,16384,2228224 +k1,24733:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24733:2537886,49800853:1179648,16384,0 +) +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24733:3078558,51504789:16384,1179648,0 +) +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 +) +] +) +) +) +] +[1,24733:3078558,4812305:0,0,0 +(1,24733:3078558,49800853:0,16384,2228224 +g1,24733:29030814,49800853 +g1,24733:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24733:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24733:37855564,49800853:1179648,16384,0 +) +) +k1,24733:3078556,49800853:-34777008 +) +] +g1,24733:6630773,4812305 +g1,24733:6630773,4812305 +g1,24733:9235173,4812305 +g1,24733:10802138,4812305 +k1,24733:31387652,4812305:20585514 +) +) +] +[1,24733:6630773,45706769:25952256,40108032,0 +(1,24733:6630773,45706769:25952256,40108032,0 +(1,24733:6630773,45706769:0,0,0 +g1,24733:6630773,45706769 +) +[1,24733:6630773,45706769:25952256,40108032,0 +v1,24669:6630773,6254097:0,393216,0 +(1,24669:6630773,11970676:25952256,6109795,196608 +g1,24669:6630773,11970676 +g1,24669:6630773,11970676 +g1,24669:6434165,11970676 +(1,24669:6434165,11970676:0,6109795,196608 +r1,24733:32779637,11970676:26345472,6306403,196608 +k1,24669:6434165,11970676:-26345472 +) +(1,24669:6434165,11970676:26345472,6109795,196608 +[1,24669:6630773,11970676:25952256,5913187,0 +(1,24668:6630773,6481928:25952256,424439,9908 +h1,24668:6630773,6481928:0,0,0 +g1,24668:7626635,6481928 +g1,24668:8290543,6481928 +g1,24668:9286405,6481928 +g1,24668:9618359,6481928 +g1,24668:9950313,6481928 +g1,24668:10282267,6481928 +g1,24668:11610083,6481928 +g1,24668:11942037,6481928 +g1,24668:12273991,6481928 +g1,24668:12605945,6481928 +g1,24668:12937899,6481928 +g1,24668:13269853,6481928 +g1,24668:14597669,6481928 +g1,24668:14929623,6481928 +g1,24668:15593531,6481928 +g1,24668:15925485,6481928 +g1,24668:16257439,6481928 +g1,24668:16589393,6481928 +g1,24668:16921347,6481928 +g1,24668:17253301,6481928 +g1,24668:17585255,6481928 +g1,24668:19908933,6481928 +g1,24668:20240887,6481928 +g1,24668:20572841,6481928 +g1,24668:20904795,6481928 +g1,24668:21236749,6481928 +g1,24668:21900657,6481928 +g1,24668:22232611,6481928 +g1,24668:22564565,6481928 +g1,24668:23892381,6481928 +g1,24668:24224335,6481928 +g1,24668:24888243,6481928 +g1,24668:25220197,6481928 +g1,24668:25552151,6481928 +g1,24668:25884105,6481928 +g1,24668:26216059,6481928 +g1,24668:26548013,6481928 +g1,24668:26879967,6481928 +g1,24668:29203645,6481928 +g1,24668:31195369,6481928 +h1,24668:32523185,6481928:0,0,0 +k1,24668:32583029,6481928:59844 +g1,24668:32583029,6481928 +) +(1,24668:6630773,7166783:25952256,424439,9908 +h1,24668:6630773,7166783:0,0,0 +g1,24668:7626635,7166783 +g1,24668:8290543,7166783 +g1,24668:9286405,7166783 +g1,24668:9618359,7166783 +g1,24668:9950313,7166783 +g1,24668:10282267,7166783 +g1,24668:11610083,7166783 +g1,24668:11942037,7166783 +g1,24668:12273991,7166783 +g1,24668:12605945,7166783 +g1,24668:12937899,7166783 +g1,24668:13269853,7166783 +g1,24668:13601807,7166783 +g1,24668:14597669,7166783 +g1,24668:17253301,7166783 +g1,24668:17585255,7166783 +g1,24668:19908933,7166783 +g1,24668:20240887,7166783 +g1,24668:20572841,7166783 +g1,24668:20904795,7166783 +g1,24668:21236749,7166783 +g1,24668:21900657,7166783 +g1,24668:22232611,7166783 +g1,24668:22564565,7166783 +g1,24668:22896519,7166783 +g1,24668:23892381,7166783 +g1,24668:26548013,7166783 +g1,24668:26879967,7166783 +g1,24668:29203645,7166783 +g1,24668:31195369,7166783 +h1,24668:32523185,7166783:0,0,0 +k1,24668:32583029,7166783:59844 +g1,24668:32583029,7166783 +) +(1,24668:6630773,7851638:25952256,424439,9908 +h1,24668:6630773,7851638:0,0,0 +g1,24668:7626635,7851638 +g1,24668:8290543,7851638 +g1,24668:9286405,7851638 +g1,24668:9618359,7851638 +g1,24668:9950313,7851638 +g1,24668:10282267,7851638 +g1,24668:11942037,7851638 +g1,24668:12273991,7851638 +g1,24668:12605945,7851638 +g1,24668:12937899,7851638 +g1,24668:13269853,7851638 +g1,24668:13601807,7851638 +g1,24668:14597669,7851638 +g1,24668:17253301,7851638 +g1,24668:19908933,7851638 +g1,24668:20240887,7851638 +g1,24668:20572841,7851638 +g1,24668:20904795,7851638 +g1,24668:21236749,7851638 +g1,24668:21900657,7851638 +g1,24668:22232611,7851638 +g1,24668:22564565,7851638 +g1,24668:22896519,7851638 +g1,24668:23892381,7851638 +g1,24668:26548013,7851638 +g1,24668:29203645,7851638 +g1,24668:31195369,7851638 +h1,24668:32523185,7851638:0,0,0 +k1,24668:32583029,7851638:59844 +g1,24668:32583029,7851638 +) +(1,24668:6630773,8536493:25952256,398014,0 +h1,24668:6630773,8536493:0,0,0 +h1,24668:7294681,8536493:0,0,0 +k1,24668:32583029,8536493:25288348 +g1,24668:32583029,8536493 +) +(1,24668:6630773,9221348:25952256,424439,6605 +h1,24668:6630773,9221348:0,0,0 +g1,24668:7626635,9221348 +g1,24668:10614220,9221348 +h1,24668:14265713,9221348:0,0,0 +k1,24668:32583029,9221348:18317316 +g1,24668:32583029,9221348 +) +(1,24668:6630773,9906203:25952256,398014,0 +h1,24668:6630773,9906203:0,0,0 +h1,24668:7294681,9906203:0,0,0 +k1,24668:32583029,9906203:25288348 +g1,24668:32583029,9906203 +) +(1,24668:6630773,10591058:25952256,424439,112852 +h1,24668:6630773,10591058:0,0,0 +g1,24668:7626635,10591058 +g1,24668:7958589,10591058 +g1,24668:8290543,10591058 +g1,24668:9618359,10591058 +g1,24668:9950313,10591058 +g1,24668:10282267,10591058 +g1,24668:11942037,10591058 +g1,24668:12273991,10591058 +g1,24668:14597669,10591058 +g1,24668:14929623,10591058 +g1,24668:15261577,10591058 +g1,24668:16589393,10591058 +g1,24668:16921347,10591058 +g1,24668:17253301,10591058 +g1,24668:18581117,10591058 +g1,24668:20572841,10591058 +h1,24668:23560426,10591058:0,0,0 +k1,24668:32583029,10591058:9022603 +g1,24668:32583029,10591058 +) +(1,24668:6630773,11275913:25952256,424439,112852 +h1,24668:6630773,11275913:0,0,0 +g1,24668:7626635,11275913 +g1,24668:7958589,11275913 +g1,24668:8290543,11275913 +g1,24668:10282267,11275913 +g1,24668:12273991,11275913 +g1,24668:12605945,11275913 +g1,24668:14597669,11275913 +g1,24668:16589393,11275913 +g1,24668:18581117,11275913 +g1,24668:20572841,11275913 +k1,24668:20572841,11275913:0 +h1,24668:22232611,11275913:0,0,0 +k1,24668:32583029,11275913:10350418 +g1,24668:32583029,11275913 +) +(1,24668:6630773,11960768:25952256,424439,9908 +h1,24668:6630773,11960768:0,0,0 +g1,24668:7626635,11960768 +g1,24668:8290543,11960768 +g1,24668:9286405,11960768 +g1,24668:9618359,11960768 +g1,24668:9950313,11960768 +g1,24668:10282267,11960768 +g1,24668:12273991,11960768 +g1,24668:12605945,11960768 +g1,24668:12937899,11960768 +g1,24668:13269853,11960768 +g1,24668:13601807,11960768 +g1,24668:13933761,11960768 +g1,24668:14597669,11960768 +g1,24668:14929623,11960768 +g1,24668:15261577,11960768 +g1,24668:15593531,11960768 +g1,24668:15925485,11960768 +g1,24668:16589393,11960768 +g1,24668:16921347,11960768 +g1,24668:17253301,11960768 +g1,24668:17585255,11960768 +g1,24668:17917209,11960768 +g1,24668:18581117,11960768 +g1,24668:20572841,11960768 +h1,24668:22232611,11960768:0,0,0 +k1,24668:32583029,11960768:10350418 +g1,24668:32583029,11960768 +) +] +) +g1,24669:32583029,11970676 +g1,24669:6630773,11970676 +g1,24669:6630773,11970676 +g1,24669:32583029,11970676 +g1,24669:32583029,11970676 +) +h1,24669:6630773,12167284:0,0,0 +(1,24673:6630773,13032364:25952256,513147,134348 +h1,24672:6630773,13032364:983040,0,0 +k1,24672:10581478,13032364:177797 +(1,24672:10581478,13032364:0,452978,115847 +r1,24733:14808574,13032364:4227096,568825,115847 +k1,24672:10581478,13032364:-4227096 +) +(1,24672:10581478,13032364:4227096,452978,115847 +k1,24672:10581478,13032364:3277 +h1,24672:14805297,13032364:0,411205,112570 +) +k1,24672:14986370,13032364:177796 +k1,24672:17505113,13032364:177797 +k1,24672:18038769,13032364:177796 +k1,24672:21826289,13032364:177797 +k1,24672:22663378,13032364:177797 +k1,24672:23860259,13032364:177796 +k1,24672:25322562,13032364:177797 +k1,24672:26448009,13032364:177796 +k1,24672:28511277,13032364:177797 +k1,24672:32583029,13032364:0 +) +(1,24673:6630773,13897444:25952256,505283,7863 +g1,24672:7821562,13897444 +k1,24673:32583028,13897444:21925068 +g1,24673:32583028,13897444 +) +v1,24675:6630773,14582299:0,393216,0 +(1,24687:6630773,19060240:25952256,4871157,196608 +g1,24687:6630773,19060240 +g1,24687:6630773,19060240 +g1,24687:6434165,19060240 +(1,24687:6434165,19060240:0,4871157,196608 +r1,24733:32779637,19060240:26345472,5067765,196608 +k1,24687:6434165,19060240:-26345472 +) +(1,24687:6434165,19060240:26345472,4871157,196608 +[1,24687:6630773,19060240:25952256,4674549,0 +(1,24677:6630773,14810130:25952256,424439,106246 +(1,24676:6630773,14810130:0,0,0 +g1,24676:6630773,14810130 +g1,24676:6630773,14810130 +g1,24676:6303093,14810130 +(1,24676:6303093,14810130:0,0,0 +) +g1,24676:6630773,14810130 +) +k1,24677:6630773,14810130:0 +h1,24677:15261575,14810130:0,0,0 +k1,24677:32583029,14810130:17321454 +g1,24677:32583029,14810130 +) +(1,24686:6630773,15626057:25952256,424439,9908 +(1,24679:6630773,15626057:0,0,0 +g1,24679:6630773,15626057 +g1,24679:6630773,15626057 +g1,24679:6303093,15626057 +(1,24679:6303093,15626057:0,0,0 +) +g1,24679:6630773,15626057 +) +g1,24686:7626635,15626057 +g1,24686:8290543,15626057 +g1,24686:8954451,15626057 +g1,24686:11610083,15626057 +g1,24686:12273991,15626057 +g1,24686:12937899,15626057 +h1,24686:13269853,15626057:0,0,0 +k1,24686:32583029,15626057:19313176 +g1,24686:32583029,15626057 +) +(1,24686:6630773,16310912:25952256,424439,112852 +h1,24686:6630773,16310912:0,0,0 +g1,24686:7626635,16310912 +g1,24686:7958589,16310912 +g1,24686:8290543,16310912 +g1,24686:9950313,16310912 +g1,24686:10282267,16310912 +g1,24686:12605945,16310912 +g1,24686:14597669,16310912 +g1,24686:16589393,16310912 +g1,24686:16921347,16310912 +g1,24686:17253301,16310912 +g1,24686:17585255,16310912 +g1,24686:18581117,16310912 +g1,24686:20572841,16310912 +h1,24686:23560426,16310912:0,0,0 +k1,24686:32583029,16310912:9022603 +g1,24686:32583029,16310912 +) +(1,24686:6630773,16995767:25952256,424439,112852 +h1,24686:6630773,16995767:0,0,0 +g1,24686:7626635,16995767 +g1,24686:7958589,16995767 +g1,24686:8290543,16995767 +g1,24686:10282267,16995767 +g1,24686:10614221,16995767 +g1,24686:12605945,16995767 +g1,24686:14597669,16995767 +g1,24686:16589393,16995767 +g1,24686:18581117,16995767 +g1,24686:20572841,16995767 +k1,24686:20572841,16995767:0 +h1,24686:22232611,16995767:0,0,0 +k1,24686:32583029,16995767:10350418 +g1,24686:32583029,16995767 +) +(1,24686:6630773,17680622:25952256,424439,9908 +h1,24686:6630773,17680622:0,0,0 +g1,24686:7626635,17680622 +g1,24686:8290543,17680622 +g1,24686:9618359,17680622 +g1,24686:9950313,17680622 +g1,24686:10282267,17680622 +g1,24686:10614221,17680622 +g1,24686:10946175,17680622 +g1,24686:11278129,17680622 +g1,24686:12605945,17680622 +g1,24686:12937899,17680622 +g1,24686:13269853,17680622 +g1,24686:13601807,17680622 +g1,24686:13933761,17680622 +g1,24686:14597669,17680622 +g1,24686:14929623,17680622 +g1,24686:15261577,17680622 +g1,24686:16589393,17680622 +g1,24686:16921347,17680622 +g1,24686:17253301,17680622 +g1,24686:17585255,17680622 +g1,24686:17917209,17680622 +g1,24686:18581117,17680622 +g1,24686:20572841,17680622 +h1,24686:21900657,17680622:0,0,0 +k1,24686:32583029,17680622:10682372 +g1,24686:32583029,17680622 +) +(1,24686:6630773,18365477:25952256,424439,9908 +h1,24686:6630773,18365477:0,0,0 +g1,24686:7626635,18365477 +g1,24686:8290543,18365477 +g1,24686:9618359,18365477 +g1,24686:9950313,18365477 +g1,24686:10282267,18365477 +g1,24686:10614221,18365477 +g1,24686:10946175,18365477 +g1,24686:11278129,18365477 +g1,24686:11610083,18365477 +g1,24686:12605945,18365477 +g1,24686:12937899,18365477 +g1,24686:13269853,18365477 +g1,24686:13601807,18365477 +g1,24686:13933761,18365477 +g1,24686:14597669,18365477 +g1,24686:14929623,18365477 +g1,24686:15261577,18365477 +g1,24686:15593531,18365477 +g1,24686:16589393,18365477 +g1,24686:16921347,18365477 +g1,24686:17253301,18365477 +g1,24686:17585255,18365477 +g1,24686:17917209,18365477 +g1,24686:18581117,18365477 +g1,24686:20572841,18365477 +h1,24686:21900657,18365477:0,0,0 +k1,24686:32583029,18365477:10682372 +g1,24686:32583029,18365477 +) +(1,24686:6630773,19050332:25952256,424439,9908 +h1,24686:6630773,19050332:0,0,0 +g1,24686:7626635,19050332 +g1,24686:8290543,19050332 +g1,24686:9950313,19050332 +g1,24686:10282267,19050332 +g1,24686:10614221,19050332 +g1,24686:10946175,19050332 +g1,24686:11278129,19050332 +g1,24686:11610083,19050332 +g1,24686:12605945,19050332 +g1,24686:12937899,19050332 +g1,24686:13269853,19050332 +g1,24686:13601807,19050332 +g1,24686:13933761,19050332 +g1,24686:14597669,19050332 +g1,24686:14929623,19050332 +g1,24686:15261577,19050332 +g1,24686:15593531,19050332 +g1,24686:16589393,19050332 +g1,24686:16921347,19050332 +g1,24686:17253301,19050332 +g1,24686:17585255,19050332 +g1,24686:17917209,19050332 +g1,24686:18581117,19050332 +g1,24686:20572841,19050332 +h1,24686:21900657,19050332:0,0,0 +k1,24686:32583029,19050332:10682372 +g1,24686:32583029,19050332 +) +] +) +g1,24687:32583029,19060240 +g1,24687:6630773,19060240 +g1,24687:6630773,19060240 +g1,24687:32583029,19060240 +g1,24687:32583029,19060240 +) +h1,24687:6630773,19256848:0,0,0 +(1,24691:6630773,20121928:25952256,513147,126483 +h1,24690:6630773,20121928:983040,0,0 +k1,24690:10667133,20121928:263452 +(1,24690:10667133,20121928:0,452978,115847 +r1,24733:14894229,20121928:4227096,568825,115847 +k1,24690:10667133,20121928:-4227096 +) +(1,24690:10667133,20121928:4227096,452978,115847 +k1,24690:10667133,20121928:3277 +h1,24690:14890952,20121928:0,411205,112570 +) +k1,24690:15157681,20121928:263452 +k1,24690:17762079,20121928:263452 +k1,24690:18381391,20121928:263452 +k1,24690:22254566,20121928:263452 +k1,24690:23177310,20121928:263452 +k1,24690:24459847,20121928:263452 +k1,24690:28795051,20121928:263452 +k1,24690:29741388,20121928:263452 +k1,24690:32583029,20121928:0 +) +(1,24691:6630773,20987008:25952256,505283,134348 +g1,24690:9613971,20987008 +g1,24690:10425962,20987008 +g1,24690:12076813,20987008 +g1,24690:13560548,20987008 +k1,24691:32583028,20987008:17281844 +g1,24691:32583028,20987008 +) +v1,24693:6630773,21671863:0,393216,0 +(1,24704:6630773,25561287:25952256,4282640,196608 +g1,24704:6630773,25561287 +g1,24704:6630773,25561287 +g1,24704:6434165,25561287 +(1,24704:6434165,25561287:0,4282640,196608 +r1,24733:32779637,25561287:26345472,4479248,196608 +k1,24704:6434165,25561287:-26345472 +) +(1,24704:6434165,25561287:26345472,4282640,196608 +[1,24704:6630773,25561287:25952256,4086032,0 +(1,24695:6630773,21899694:25952256,424439,106246 +(1,24694:6630773,21899694:0,0,0 +g1,24694:6630773,21899694 +g1,24694:6630773,21899694 +g1,24694:6303093,21899694 +(1,24694:6303093,21899694:0,0,0 +) +g1,24694:6630773,21899694 +) +k1,24695:6630773,21899694:0 +h1,24695:15261575,21899694:0,0,0 +k1,24695:32583029,21899694:17321454 +g1,24695:32583029,21899694 +) +(1,24703:6630773,22715621:25952256,424439,9908 +(1,24697:6630773,22715621:0,0,0 +g1,24697:6630773,22715621 +g1,24697:6630773,22715621 +g1,24697:6303093,22715621 +(1,24697:6303093,22715621:0,0,0 +) +g1,24697:6630773,22715621 +) +g1,24703:7626635,22715621 +g1,24703:8290543,22715621 +g1,24703:8954451,22715621 +g1,24703:11610083,22715621 +g1,24703:12273991,22715621 +g1,24703:12937899,22715621 +h1,24703:13269853,22715621:0,0,0 +k1,24703:32583029,22715621:19313176 +g1,24703:32583029,22715621 +) +(1,24703:6630773,23400476:25952256,424439,106246 +h1,24703:6630773,23400476:0,0,0 +g1,24703:7626635,23400476 +g1,24703:7958589,23400476 +g1,24703:8290543,23400476 +g1,24703:8622497,23400476 +g1,24703:8954451,23400476 +g1,24703:9286405,23400476 +g1,24703:10282267,23400476 +g1,24703:11942037,23400476 +g1,24703:12273991,23400476 +g1,24703:12605945,23400476 +g1,24703:12937899,23400476 +g1,24703:13269853,23400476 +g1,24703:13601807,23400476 +g1,24703:13933761,23400476 +g1,24703:14265715,23400476 +g1,24703:14597669,23400476 +g1,24703:14929623,23400476 +g1,24703:15261577,23400476 +g1,24703:16921347,23400476 +g1,24703:17253301,23400476 +g1,24703:17585255,23400476 +g1,24703:17917209,23400476 +g1,24703:18249163,23400476 +g1,24703:20240887,23400476 +g1,24703:22232611,23400476 +h1,24703:25220196,23400476:0,0,0 +k1,24703:32583029,23400476:7362833 +g1,24703:32583029,23400476 +) +(1,24703:6630773,24085331:25952256,424439,112852 +h1,24703:6630773,24085331:0,0,0 +g1,24703:7626635,24085331 +g1,24703:7958589,24085331 +g1,24703:8290543,24085331 +g1,24703:10282267,24085331 +g1,24703:12273991,24085331 +g1,24703:12605945,24085331 +g1,24703:12937899,24085331 +g1,24703:13269853,24085331 +g1,24703:13601807,24085331 +g1,24703:13933761,24085331 +g1,24703:14265715,24085331 +g1,24703:14597669,24085331 +g1,24703:14929623,24085331 +g1,24703:15261577,24085331 +g1,24703:17253301,24085331 +g1,24703:17585255,24085331 +g1,24703:17917209,24085331 +g1,24703:18249163,24085331 +g1,24703:20240887,24085331 +g1,24703:22232611,24085331 +k1,24703:22232611,24085331:0 +h1,24703:23892381,24085331:0,0,0 +k1,24703:32583029,24085331:8690648 +g1,24703:32583029,24085331 +) +(1,24703:6630773,24770186:25952256,407923,106246 +h1,24703:6630773,24770186:0,0,0 +g1,24703:7626635,24770186 +g1,24703:8290543,24770186 +g1,24703:8622497,24770186 +g1,24703:8954451,24770186 +g1,24703:9286405,24770186 +g1,24703:9618359,24770186 +g1,24703:10282267,24770186 +g1,24703:12273991,24770186 +g1,24703:12605945,24770186 +g1,24703:12937899,24770186 +g1,24703:13269853,24770186 +g1,24703:13601807,24770186 +g1,24703:13933761,24770186 +g1,24703:14265715,24770186 +g1,24703:14597669,24770186 +g1,24703:14929623,24770186 +g1,24703:15261577,24770186 +g1,24703:18249162,24770186 +g1,24703:18581116,24770186 +g1,24703:18913070,24770186 +g1,24703:19245024,24770186 +g1,24703:19576978,24770186 +g1,24703:20240886,24770186 +g1,24703:20572840,24770186 +g1,24703:20904794,24770186 +g1,24703:21236748,24770186 +g1,24703:22232610,24770186 +h1,24703:23892380,24770186:0,0,0 +k1,24703:32583029,24770186:8690649 +g1,24703:32583029,24770186 +) +(1,24703:6630773,25455041:25952256,424439,106246 +h1,24703:6630773,25455041:0,0,0 +g1,24703:7626635,25455041 +g1,24703:8290543,25455041 +g1,24703:8622497,25455041 +g1,24703:8954451,25455041 +g1,24703:9286405,25455041 +g1,24703:9618359,25455041 +g1,24703:10282267,25455041 +g1,24703:15261576,25455041 +g1,24703:18249161,25455041 +g1,24703:18581115,25455041 +g1,24703:18913069,25455041 +g1,24703:19245023,25455041 +g1,24703:19576977,25455041 +g1,24703:20240885,25455041 +g1,24703:20572839,25455041 +g1,24703:20904793,25455041 +g1,24703:21236747,25455041 +g1,24703:21568701,25455041 +g1,24703:22232609,25455041 +h1,24703:23892379,25455041:0,0,0 +k1,24703:32583029,25455041:8690650 +g1,24703:32583029,25455041 +) +] +) +g1,24704:32583029,25561287 +g1,24704:6630773,25561287 +g1,24704:6630773,25561287 +g1,24704:32583029,25561287 +g1,24704:32583029,25561287 +) +h1,24704:6630773,25757895:0,0,0 +(1,24708:6630773,26622975:25952256,513147,134348 +h1,24707:6630773,26622975:983040,0,0 +k1,24707:10626434,26622975:222753 +(1,24707:10626434,26622975:0,452978,115847 +r1,24733:15556954,26622975:4930520,568825,115847 +k1,24707:10626434,26622975:-4930520 +) +(1,24707:10626434,26622975:4930520,452978,115847 +k1,24707:10626434,26622975:3277 +h1,24707:15553677,26622975:0,411205,112570 +) +k1,24707:15779707,26622975:222753 +k1,24707:18536737,26622975:222753 +k1,24707:19115350,26622975:222753 +k1,24707:21418216,26622975:222753 +k1,24707:22300261,26622975:222753 +k1,24707:23542100,26622975:222754 +k1,24707:25154216,26622975:222753 +k1,24707:26644435,26622975:222753 +k1,24707:27223048,26622975:222753 +k1,24707:29257216,26622975:222753 +k1,24707:30096007,26622975:222753 +k1,24707:31707468,26622975:222753 +k1,24707:32583029,26622975:0 +) +(1,24708:6630773,27488055:25952256,513147,134348 +k1,24707:8290669,27488055:212861 +k1,24707:10857583,27488055:212861 +k1,24707:12267131,27488055:212861 +k1,24707:15311147,27488055:212861 +k1,24707:16183300,27488055:212861 +k1,24707:17415246,27488055:212861 +k1,24707:18912613,27488055:212861 +k1,24707:20813680,27488055:212860 +k1,24707:21558038,27488055:212861 +k1,24707:23348351,27488055:212861 +k1,24707:24177250,27488055:212861 +k1,24707:25409196,27488055:212861 +k1,24707:27275530,27488055:212861 +k1,24707:30562685,27488055:212861 +k1,24707:31966991,27488055:212861 +k1,24707:32583029,27488055:0 +) +(1,24708:6630773,28353135:25952256,513147,134348 +k1,24707:8023445,28353135:189431 +k1,24707:9579958,28353135:189432 +k1,24707:11504782,28353135:189431 +(1,24707:11504782,28353135:0,459977,122846 +r1,24733:14325031,28353135:2820249,582823,122846 +k1,24707:11504782,28353135:-2820249 +) +(1,24707:11504782,28353135:2820249,459977,122846 +k1,24707:11504782,28353135:3277 +h1,24707:14321754,28353135:0,411205,112570 +) +k1,24707:14514462,28353135:189431 +k1,24707:15355322,28353135:189432 +k1,24707:16736198,28353135:189431 +k1,24707:17873280,28353135:189431 +k1,24707:18833414,28353135:189431 +k1,24707:23049378,28353135:189432 +k1,24707:25219962,28353135:189431 +k1,24707:26060821,28353135:189431 +k1,24707:28172424,28353135:189432 +k1,24707:31391584,28353135:189431 +k1,24707:32583029,28353135:0 +) +(1,24708:6630773,29218215:25952256,505283,134348 +k1,24707:9309137,29218215:219453 +k1,24707:11712906,29218215:219454 +k1,24707:12419927,29218215:219433 +k1,24707:14029399,29218215:219453 +k1,24707:14780349,29218215:219453 +k1,24707:16513029,29218215:219454 +k1,24707:17383910,29218215:219453 +k1,24707:18800706,29218215:219453 +k1,24707:20039244,29218215:219453 +k1,24707:22943708,29218215:219454 +k1,24707:25047976,29218215:219453 +k1,24707:27002822,29218215:219453 +k1,24707:28241361,29218215:219454 +k1,24707:29850833,29218215:219453 +k1,24707:32583029,29218215:0 +) +(1,24708:6630773,30083295:25952256,513147,134348 +(1,24707:6816895,30083295:0,452978,115847 +r1,24733:7526873,30083295:709978,568825,115847 +k1,24707:6816895,30083295:-709978 +) +(1,24707:6816895,30083295:709978,452978,115847 +k1,24707:6816895,30083295:3277 +h1,24707:7523596,30083295:0,411205,112570 +) +k1,24707:8013385,30083295:279418 +k1,24707:9484248,30083295:279418 +k1,24707:12548291,30083295:279418 +k1,24707:14395331,30083295:279419 +k1,24707:16647382,30083295:279418 +k1,24707:18158877,30083295:279418 +k1,24707:20716982,30083295:279418 +h1,24707:22259700,30083295:0,0,0 +k1,24707:22539118,30083295:279418 +k1,24707:23627906,30083295:279418 +k1,24707:25405478,30083295:279419 +h1,24707:26600855,30083295:0,0,0 +k1,24707:27261037,30083295:279418 +k1,24707:28737142,30083295:279418 +k1,24707:31923737,30083295:279418 +k1,24707:32583029,30083295:0 +) +(1,24708:6630773,30948375:25952256,513147,134348 +k1,24707:8611599,30948375:269681 +k1,24707:9412776,30948375:269680 +k1,24707:11259909,30948375:269681 +k1,24707:13264983,30948375:269681 +k1,24707:16560460,30948375:269680 +k1,24707:18397762,30948375:269681 +k1,24707:21247595,30948375:269681 +k1,24707:24715431,30948375:269680 +k1,24707:26217189,30948375:269681 +k1,24707:28765557,30948375:269681 +h1,24707:29736145,30948375:0,0,0 +k1,24707:30005825,30948375:269680 +k1,24707:31084876,30948375:269681 +k1,24707:32583029,30948375:0 +) +(1,24708:6630773,31813455:25952256,505283,95026 +h1,24707:7826150,31813455:0,0,0 +k1,24708:32583028,31813455:24497356 +g1,24708:32583028,31813455 +) +v1,24710:6630773,32498310:0,393216,0 +(1,24727:6630773,40400526:25952256,8295432,196608 +g1,24727:6630773,40400526 +g1,24727:6630773,40400526 +g1,24727:6434165,40400526 +(1,24727:6434165,40400526:0,8295432,196608 +r1,24733:32779637,40400526:26345472,8492040,196608 +k1,24727:6434165,40400526:-26345472 +) +(1,24727:6434165,40400526:26345472,8295432,196608 +[1,24727:6630773,40400526:25952256,8098824,0 +(1,24712:6630773,32726141:25952256,424439,106246 +(1,24711:6630773,32726141:0,0,0 +g1,24711:6630773,32726141 +g1,24711:6630773,32726141 +g1,24711:6303093,32726141 +(1,24711:6303093,32726141:0,0,0 +) +g1,24711:6630773,32726141 +) +k1,24712:6630773,32726141:0 +k1,24712:6630773,32726141:0 +h1,24712:15925483,32726141:0,0,0 +k1,24712:32583029,32726141:16657546 +g1,24712:32583029,32726141 +) +(1,24713:6630773,33410996:25952256,431045,112852 +h1,24713:6630773,33410996:0,0,0 +g1,24713:6962727,33410996 +g1,24713:7294681,33410996 +g1,24713:7626635,33410996 +g1,24713:7958589,33410996 +g1,24713:8290543,33410996 +g1,24713:8622497,33410996 +g1,24713:8954451,33410996 +g1,24713:9286405,33410996 +g1,24713:9618359,33410996 +g1,24713:9950313,33410996 +g1,24713:10282267,33410996 +g1,24713:10614221,33410996 +g1,24713:10946175,33410996 +g1,24713:12273991,33410996 +g1,24713:12937899,33410996 +g1,24713:16921347,33410996 +g1,24713:17917209,33410996 +g1,24713:18913071,33410996 +k1,24713:18913071,33410996:0 +h1,24713:19576979,33410996:0,0,0 +k1,24713:32583029,33410996:13006050 +g1,24713:32583029,33410996 +) +(1,24714:6630773,34095851:25952256,431045,112852 +h1,24714:6630773,34095851:0,0,0 +g1,24714:6962727,34095851 +g1,24714:7294681,34095851 +g1,24714:7626635,34095851 +g1,24714:7958589,34095851 +g1,24714:8290543,34095851 +g1,24714:8622497,34095851 +g1,24714:8954451,34095851 +g1,24714:9286405,34095851 +g1,24714:9618359,34095851 +g1,24714:9950313,34095851 +g1,24714:10282267,34095851 +g1,24714:10614221,34095851 +g1,24714:10946175,34095851 +g1,24714:12273991,34095851 +g1,24714:12937899,34095851 +g1,24714:16921347,34095851 +g1,24714:17917209,34095851 +g1,24714:18913071,34095851 +g1,24714:20240887,34095851 +k1,24714:20240887,34095851:0 +h1,24714:20904795,34095851:0,0,0 +k1,24714:32583029,34095851:11678234 +g1,24714:32583029,34095851 +) +(1,24715:6630773,34780706:25952256,424439,106246 +h1,24715:6630773,34780706:0,0,0 +g1,24715:6962727,34780706 +g1,24715:7294681,34780706 +g1,24715:11610083,34780706 +g1,24715:12273991,34780706 +g1,24715:13269853,34780706 +g1,24715:15261577,34780706 +g1,24715:15925485,34780706 +g1,24715:23892381,34780706 +g1,24715:24556289,34780706 +g1,24715:28871690,34780706 +k1,24715:28871690,34780706:0 +h1,24715:29535598,34780706:0,0,0 +k1,24715:32583029,34780706:3047431 +g1,24715:32583029,34780706 +) +(1,24716:6630773,35465561:25952256,424439,86428 +h1,24716:6630773,35465561:0,0,0 +g1,24716:6962727,35465561 +g1,24716:7294681,35465561 +g1,24716:11610083,35465561 +g1,24716:12273991,35465561 +g1,24716:13269853,35465561 +k1,24716:13269853,35465561:0 +h1,24716:15261577,35465561:0,0,0 +k1,24716:32583029,35465561:17321452 +g1,24716:32583029,35465561 +) +(1,24726:6630773,36281488:25952256,424439,9908 +(1,24718:6630773,36281488:0,0,0 +g1,24718:6630773,36281488 +g1,24718:6630773,36281488 +g1,24718:6303093,36281488 +(1,24718:6303093,36281488:0,0,0 +) +g1,24718:6630773,36281488 +) +g1,24726:7626635,36281488 +g1,24726:8290543,36281488 +g1,24726:8954451,36281488 +g1,24726:11610083,36281488 +g1,24726:12605945,36281488 +g1,24726:13269853,36281488 +h1,24726:13601807,36281488:0,0,0 +k1,24726:32583029,36281488:18981222 +g1,24726:32583029,36281488 +) +(1,24726:6630773,36966343:25952256,424439,106246 +h1,24726:6630773,36966343:0,0,0 +g1,24726:7626635,36966343 +g1,24726:7958589,36966343 +g1,24726:8290543,36966343 +g1,24726:10282267,36966343 +g1,24726:15261576,36966343 +g1,24726:15593530,36966343 +g1,24726:15925484,36966343 +g1,24726:17253300,36966343 +g1,24726:17585254,36966343 +g1,24726:17917208,36966343 +g1,24726:19245024,36966343 +h1,24726:20904794,36966343:0,0,0 +k1,24726:32583029,36966343:11678235 +g1,24726:32583029,36966343 +) +(1,24726:6630773,37651198:25952256,424439,6605 +h1,24726:6630773,37651198:0,0,0 +g1,24726:7626635,37651198 +g1,24726:7958589,37651198 +g1,24726:8290543,37651198 +g1,24726:10282267,37651198 +g1,24726:10614221,37651198 +g1,24726:10946175,37651198 +g1,24726:11278129,37651198 +g1,24726:11610083,37651198 +g1,24726:11942037,37651198 +g1,24726:12273991,37651198 +g1,24726:12605945,37651198 +g1,24726:12937899,37651198 +g1,24726:13269853,37651198 +g1,24726:15261577,37651198 +g1,24726:17253301,37651198 +g1,24726:19245025,37651198 +k1,24726:19245025,37651198:0 +h1,24726:20904795,37651198:0,0,0 +k1,24726:32583029,37651198:11678234 +g1,24726:32583029,37651198 +) +(1,24726:6630773,38336053:25952256,407923,9908 +h1,24726:6630773,38336053:0,0,0 +g1,24726:7626635,38336053 +g1,24726:8290543,38336053 +g1,24726:8622497,38336053 +g1,24726:10282267,38336053 +g1,24726:10614221,38336053 +g1,24726:10946175,38336053 +g1,24726:11278129,38336053 +g1,24726:11610083,38336053 +g1,24726:11942037,38336053 +g1,24726:12273991,38336053 +g1,24726:15261577,38336053 +g1,24726:15593531,38336053 +g1,24726:17253301,38336053 +g1,24726:17585255,38336053 +g1,24726:19245025,38336053 +g1,24726:19576979,38336053 +g1,24726:19908933,38336053 +g1,24726:20240887,38336053 +h1,24726:20904795,38336053:0,0,0 +k1,24726:32583029,38336053:11678234 +g1,24726:32583029,38336053 +) +(1,24726:6630773,39020908:25952256,407923,9908 +h1,24726:6630773,39020908:0,0,0 +g1,24726:7626635,39020908 +g1,24726:8290543,39020908 +g1,24726:8622497,39020908 +g1,24726:10282267,39020908 +g1,24726:10614221,39020908 +g1,24726:10946175,39020908 +g1,24726:11278129,39020908 +g1,24726:11610083,39020908 +g1,24726:11942037,39020908 +g1,24726:12273991,39020908 +g1,24726:15261577,39020908 +g1,24726:15593531,39020908 +g1,24726:17253301,39020908 +g1,24726:17585255,39020908 +g1,24726:19245025,39020908 +g1,24726:19576979,39020908 +g1,24726:19908933,39020908 +g1,24726:20240887,39020908 +g1,24726:20572841,39020908 +h1,24726:20904795,39020908:0,0,0 +k1,24726:32583029,39020908:11678234 +g1,24726:32583029,39020908 +) +(1,24726:6630773,39705763:25952256,407923,9908 +h1,24726:6630773,39705763:0,0,0 +g1,24726:7626635,39705763 +g1,24726:8290543,39705763 +g1,24726:8622497,39705763 +g1,24726:10282267,39705763 +g1,24726:10614221,39705763 +g1,24726:10946175,39705763 +g1,24726:11278129,39705763 +g1,24726:11610083,39705763 +g1,24726:11942037,39705763 +g1,24726:12273991,39705763 +g1,24726:15261577,39705763 +g1,24726:15593531,39705763 +g1,24726:17253301,39705763 +g1,24726:17585255,39705763 +g1,24726:19245025,39705763 +g1,24726:19576979,39705763 +g1,24726:19908933,39705763 +g1,24726:20240887,39705763 +g1,24726:20572841,39705763 +h1,24726:20904795,39705763:0,0,0 +k1,24726:32583029,39705763:11678234 +g1,24726:32583029,39705763 +) +(1,24726:6630773,40390618:25952256,424439,9908 +h1,24726:6630773,40390618:0,0,0 +g1,24726:7626635,40390618 +g1,24726:8290543,40390618 +g1,24726:8954451,40390618 +g1,24726:9618359,40390618 +g1,24726:11278129,40390618 +h1,24726:12605945,40390618:0,0,0 +k1,24726:32583029,40390618:19977084 +g1,24726:32583029,40390618 +) +] +) +g1,24727:32583029,40400526 +g1,24727:6630773,40400526 +g1,24727:6630773,40400526 +g1,24727:32583029,40400526 +g1,24727:32583029,40400526 +) +h1,24727:6630773,40597134:0,0,0 +(1,24731:6630773,41462214:25952256,513147,134348 +h1,24730:6630773,41462214:983040,0,0 +k1,24730:8462807,41462214:221159 +k1,24730:9887207,41462214:221159 +k1,24730:12349696,41462214:221158 +k1,24730:15405942,41462214:221159 +k1,24730:17016464,41462214:221159 +k1,24730:17769120,41462214:221159 +k1,24730:20962336,41462214:221158 +k1,24730:22131146,41462214:221159 +k1,24730:23118421,41462214:221159 +k1,24730:24624086,41462214:221159 +k1,24730:26863753,41462214:221158 +k1,24730:28829480,41462214:221159 +k1,24730:31839851,41462214:221159 +k1,24730:32583029,41462214:0 +) +(1,24731:6630773,42327294:25952256,513147,134348 +k1,24730:9563458,42327294:212941 +k1,24730:10795484,42327294:212941 +k1,24730:12199870,42327294:212941 +k1,24730:13360462,42327294:212941 +(1,24730:13360462,42327294:0,452978,115847 +r1,24733:14422151,42327294:1061689,568825,115847 +k1,24730:13360462,42327294:-1061689 +) +(1,24730:13360462,42327294:1061689,452978,115847 +k1,24730:13360462,42327294:3277 +h1,24730:14418874,42327294:0,411205,112570 +) +k1,24730:14635092,42327294:212941 +k1,24730:16415654,42327294:212941 +k1,24730:17647681,42327294:212942 +k1,24730:19831290,42327294:212941 +k1,24730:22073226,42327294:212941 +k1,24730:23482854,42327294:212941 +k1,24730:25507210,42327294:212941 +k1,24730:26251648,42327294:212941 +k1,24730:29821998,42327294:212941 +k1,24731:32583029,42327294:0 +) +(1,24731:6630773,43192374:25952256,513147,134348 +k1,24730:8504338,43192374:211572 +k1,24730:9907355,43192374:211572 +k1,24730:12832118,43192374:211572 +k1,24730:13991341,43192374:211572 +k1,24730:15221998,43192374:211572 +k1,24730:17285617,43192374:211572 +k1,24730:21172447,43192374:211571 +k1,24730:23523114,43192374:211572 +k1,24730:24931373,43192374:211572 +k1,24730:28050122,43192374:211572 +k1,24730:28920986,43192374:211572 +k1,24730:30151643,43192374:211572 +k1,24730:32583029,43192374:0 +) +(1,24731:6630773,44057454:25952256,505283,7863 +g1,24730:9387872,44057454 +g1,24730:10606186,44057454 +g1,24730:12458888,44057454 +g1,24730:13344279,44057454 +k1,24731:32583028,44057454:17330996 +g1,24731:32583028,44057454 +) +] +(1,24733:32583029,45706769:0,0,0 +g1,24733:32583029,45706769 +) +) +] +(1,24733:6630773,47279633:25952256,0,0 +h1,24733:6630773,47279633:25952256,0,0 +) +] +(1,24733:4262630,4025873:0,0,0 +[1,24733:-473656,4025873:0,0,0 +(1,24733:-473656,-710413:0,0,0 +(1,24733:-473656,-710413:0,0,0 +g1,24733:-473656,-710413 +) +g1,24733:-473656,-710413 ) ] ) ] !34065 -}424 -Input:4592:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4593:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4594:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4595:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}425 Input:4596:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4599:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4600:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !472 -{425 -[1,24796:4262630,47279633:28320399,43253760,0 -(1,24796:4262630,4025873:0,0,0 -[1,24796:-473656,4025873:0,0,0 -(1,24796:-473656,-710413:0,0,0 -(1,24796:-473656,-644877:0,0,0 -k1,24796:-473656,-644877:-65536 +{426 +[1,24794:4262630,47279633:28320399,43253760,0 +(1,24794:4262630,4025873:0,0,0 +[1,24794:-473656,4025873:0,0,0 +(1,24794:-473656,-710413:0,0,0 +(1,24794:-473656,-644877:0,0,0 +k1,24794:-473656,-644877:-65536 ) -(1,24796:-473656,4736287:0,0,0 -k1,24796:-473656,4736287:5209943 +(1,24794:-473656,4736287:0,0,0 +k1,24794:-473656,4736287:5209943 ) -g1,24796:-473656,-710413 +g1,24794:-473656,-710413 ) ] ) -[1,24796:6630773,47279633:25952256,43253760,0 -[1,24796:6630773,4812305:25952256,786432,0 -(1,24796:6630773,4812305:25952256,505283,134348 -(1,24796:6630773,4812305:25952256,505283,134348 -g1,24796:3078558,4812305 -[1,24796:3078558,4812305:0,0,0 -(1,24796:3078558,2439708:0,1703936,0 -k1,24796:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24796:2537886,2439708:1179648,16384,0 +[1,24794:6630773,47279633:25952256,43253760,0 +[1,24794:6630773,4812305:25952256,786432,0 +(1,24794:6630773,4812305:25952256,505283,134348 +(1,24794:6630773,4812305:25952256,505283,134348 +g1,24794:3078558,4812305 +[1,24794:3078558,4812305:0,0,0 +(1,24794:3078558,2439708:0,1703936,0 +k1,24794:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24794:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24796:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24794:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24796:3078558,4812305:0,0,0 -(1,24796:3078558,2439708:0,1703936,0 -g1,24796:29030814,2439708 -g1,24796:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24796:36151628,1915420:16384,1179648,0 +[1,24794:3078558,4812305:0,0,0 +(1,24794:3078558,2439708:0,1703936,0 +g1,24794:29030814,2439708 +g1,24794:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24794:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24796:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24794:37855564,2439708:1179648,16384,0 ) ) -k1,24796:3078556,2439708:-34777008 +k1,24794:3078556,2439708:-34777008 ) ] -[1,24796:3078558,4812305:0,0,0 -(1,24796:3078558,49800853:0,16384,2228224 -k1,24796:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24796:2537886,49800853:1179648,16384,0 +[1,24794:3078558,4812305:0,0,0 +(1,24794:3078558,49800853:0,16384,2228224 +k1,24794:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24794:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24796:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24794:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24796:3078558,4812305:0,0,0 -(1,24796:3078558,49800853:0,16384,2228224 -g1,24796:29030814,49800853 -g1,24796:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24796:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24796:37855564,49800853:1179648,16384,0 -) -) -k1,24796:3078556,49800853:-34777008 -) -] -g1,24796:6630773,4812305 -k1,24796:21114230,4812305:13288080 -g1,24796:22736901,4812305 -g1,24796:23350318,4812305 -g1,24796:24759997,4812305 -g1,24796:28372341,4812305 -g1,24796:30105768,4812305 -) -) -] -[1,24796:6630773,45706769:25952256,40108032,0 -(1,24796:6630773,45706769:25952256,40108032,0 -(1,24796:6630773,45706769:0,0,0 -g1,24796:6630773,45706769 -) -[1,24796:6630773,45706769:25952256,40108032,0 -v1,24735:6630773,6254097:0,393216,0 -(1,24751:6630773,13547978:25952256,7687097,196608 -g1,24751:6630773,13547978 -g1,24751:6630773,13547978 -g1,24751:6434165,13547978 -(1,24751:6434165,13547978:0,7687097,196608 -r1,24796:32779637,13547978:26345472,7883705,196608 -k1,24751:6434165,13547978:-26345472 -) -(1,24751:6434165,13547978:26345472,7687097,196608 -[1,24751:6630773,13547978:25952256,7490489,0 -(1,24737:6630773,6481928:25952256,424439,106246 -(1,24736:6630773,6481928:0,0,0 -g1,24736:6630773,6481928 -g1,24736:6630773,6481928 -g1,24736:6303093,6481928 -(1,24736:6303093,6481928:0,0,0 -) -g1,24736:6630773,6481928 -) -k1,24737:6630773,6481928:0 -k1,24737:6630773,6481928:0 -h1,24737:15925483,6481928:0,0,0 -k1,24737:32583029,6481928:16657546 -g1,24737:32583029,6481928 -) -(1,24738:6630773,7166783:25952256,431045,112852 -h1,24738:6630773,7166783:0,0,0 -g1,24738:6962727,7166783 -g1,24738:7294681,7166783 -g1,24738:7626635,7166783 -g1,24738:7958589,7166783 -g1,24738:8290543,7166783 -g1,24738:8622497,7166783 -g1,24738:8954451,7166783 -g1,24738:9286405,7166783 -g1,24738:9618359,7166783 -g1,24738:9950313,7166783 -g1,24738:10282267,7166783 -g1,24738:10614221,7166783 -g1,24738:10946175,7166783 -g1,24738:12273991,7166783 -g1,24738:12937899,7166783 -g1,24738:16921347,7166783 -g1,24738:17917209,7166783 -g1,24738:18913071,7166783 -g1,24738:19908933,7166783 -k1,24738:19908933,7166783:0 -h1,24738:20572841,7166783:0,0,0 -k1,24738:32583029,7166783:12010188 -g1,24738:32583029,7166783 -) -(1,24739:6630773,7851638:25952256,424439,106246 -h1,24739:6630773,7851638:0,0,0 -g1,24739:6962727,7851638 -g1,24739:7294681,7851638 -g1,24739:11610083,7851638 -g1,24739:12273991,7851638 -g1,24739:13269853,7851638 -g1,24739:15261577,7851638 -g1,24739:15925485,7851638 -g1,24739:23892381,7851638 -g1,24739:24556289,7851638 -g1,24739:28871690,7851638 -k1,24739:28871690,7851638:0 -h1,24739:29535598,7851638:0,0,0 -k1,24739:32583029,7851638:3047431 -g1,24739:32583029,7851638 -) -(1,24740:6630773,8536493:25952256,424439,86428 -h1,24740:6630773,8536493:0,0,0 -g1,24740:6962727,8536493 -g1,24740:7294681,8536493 -g1,24740:11610083,8536493 -g1,24740:12273991,8536493 -g1,24740:13269853,8536493 -k1,24740:13269853,8536493:0 -h1,24740:15261577,8536493:0,0,0 -k1,24740:32583029,8536493:17321452 -g1,24740:32583029,8536493 -) -(1,24750:6630773,9352420:25952256,424439,86428 -(1,24742:6630773,9352420:0,0,0 -g1,24742:6630773,9352420 -g1,24742:6630773,9352420 -g1,24742:6303093,9352420 -(1,24742:6303093,9352420:0,0,0 -) -g1,24742:6630773,9352420 -) -g1,24750:7626635,9352420 -g1,24750:8290543,9352420 -g1,24750:8954451,9352420 -g1,24750:11610083,9352420 -g1,24750:13601807,9352420 -g1,24750:14265715,9352420 -h1,24750:14597669,9352420:0,0,0 -k1,24750:32583029,9352420:17985360 -g1,24750:32583029,9352420 -) -(1,24750:6630773,10037275:25952256,424439,106246 -h1,24750:6630773,10037275:0,0,0 -g1,24750:7626635,10037275 -g1,24750:7958589,10037275 -g1,24750:8290543,10037275 -g1,24750:10282267,10037275 -g1,24750:15261576,10037275 -g1,24750:15593530,10037275 -g1,24750:15925484,10037275 -g1,24750:17253300,10037275 -g1,24750:17585254,10037275 -g1,24750:17917208,10037275 -g1,24750:19245024,10037275 -h1,24750:20904794,10037275:0,0,0 -k1,24750:32583029,10037275:11678235 -g1,24750:32583029,10037275 -) -(1,24750:6630773,10722130:25952256,424439,6605 -h1,24750:6630773,10722130:0,0,0 -g1,24750:7626635,10722130 -g1,24750:7958589,10722130 -g1,24750:8290543,10722130 -g1,24750:10282267,10722130 -g1,24750:10614221,10722130 -g1,24750:10946175,10722130 -g1,24750:11278129,10722130 -g1,24750:11610083,10722130 -g1,24750:11942037,10722130 -g1,24750:12273991,10722130 -g1,24750:12605945,10722130 -g1,24750:12937899,10722130 -g1,24750:13269853,10722130 -g1,24750:15261577,10722130 -g1,24750:17253301,10722130 -g1,24750:19245025,10722130 -k1,24750:19245025,10722130:0 -h1,24750:20904795,10722130:0,0,0 -k1,24750:32583029,10722130:11678234 -g1,24750:32583029,10722130 -) -(1,24750:6630773,11406985:25952256,407923,9908 -h1,24750:6630773,11406985:0,0,0 -g1,24750:7626635,11406985 -g1,24750:8290543,11406985 -g1,24750:8622497,11406985 -g1,24750:10282267,11406985 -g1,24750:10614221,11406985 -g1,24750:10946175,11406985 -g1,24750:11278129,11406985 -g1,24750:11610083,11406985 -g1,24750:11942037,11406985 -g1,24750:12273991,11406985 -g1,24750:15261577,11406985 -g1,24750:15593531,11406985 -g1,24750:17253301,11406985 -g1,24750:17585255,11406985 -g1,24750:19245025,11406985 -g1,24750:19576979,11406985 -g1,24750:19908933,11406985 -g1,24750:20240887,11406985 -h1,24750:20904795,11406985:0,0,0 -k1,24750:32583029,11406985:11678234 -g1,24750:32583029,11406985 -) -(1,24750:6630773,12091840:25952256,407923,9908 -h1,24750:6630773,12091840:0,0,0 -g1,24750:7626635,12091840 -g1,24750:8290543,12091840 -g1,24750:8622497,12091840 -g1,24750:10282267,12091840 -g1,24750:10614221,12091840 -g1,24750:10946175,12091840 -g1,24750:11278129,12091840 -g1,24750:11610083,12091840 -g1,24750:11942037,12091840 -g1,24750:12273991,12091840 -g1,24750:15261577,12091840 -g1,24750:15593531,12091840 -g1,24750:17253301,12091840 -g1,24750:17585255,12091840 -g1,24750:19245025,12091840 -g1,24750:19576979,12091840 -g1,24750:19908933,12091840 -g1,24750:20240887,12091840 -h1,24750:20904795,12091840:0,0,0 -k1,24750:32583029,12091840:11678234 -g1,24750:32583029,12091840 -) -(1,24750:6630773,12776695:25952256,407923,9908 -h1,24750:6630773,12776695:0,0,0 -g1,24750:7626635,12776695 -g1,24750:8290543,12776695 -g1,24750:8622497,12776695 -g1,24750:10282267,12776695 -g1,24750:10614221,12776695 -g1,24750:10946175,12776695 -g1,24750:11278129,12776695 -g1,24750:11610083,12776695 -g1,24750:11942037,12776695 -g1,24750:12273991,12776695 -g1,24750:15261577,12776695 -g1,24750:15593531,12776695 -g1,24750:17253301,12776695 -g1,24750:17585255,12776695 -g1,24750:19245025,12776695 -g1,24750:19576979,12776695 -g1,24750:19908933,12776695 -g1,24750:20240887,12776695 -h1,24750:20904795,12776695:0,0,0 -k1,24750:32583029,12776695:11678234 -g1,24750:32583029,12776695 -) -(1,24750:6630773,13461550:25952256,424439,86428 -h1,24750:6630773,13461550:0,0,0 -g1,24750:7626635,13461550 -g1,24750:8290543,13461550 -g1,24750:8954451,13461550 -g1,24750:10946175,13461550 -g1,24750:12605945,13461550 -h1,24750:13933761,13461550:0,0,0 -k1,24750:32583029,13461550:18649268 -g1,24750:32583029,13461550 -) -] -) -g1,24751:32583029,13547978 -g1,24751:6630773,13547978 -g1,24751:6630773,13547978 -g1,24751:32583029,13547978 -g1,24751:32583029,13547978 -) -h1,24751:6630773,13744586:0,0,0 -v1,24755:6630773,14609666:0,393216,0 -(1,24756:6630773,15881571:25952256,1665121,0 -g1,24756:6630773,15881571 -g1,24756:6237557,15881571 -r1,24796:6368629,15881571:131072,1665121,0 -g1,24756:6567858,15881571 -g1,24756:6764466,15881571 -[1,24756:6764466,15881571:25818563,1665121,0 -(1,24756:6764466,14882143:25818563,665693,196608 -(1,24755:6764466,14882143:0,665693,196608 -r1,24796:7868133,14882143:1103667,862301,196608 -k1,24755:6764466,14882143:-1103667 -) -(1,24755:6764466,14882143:1103667,665693,196608 -) -k1,24755:8134598,14882143:266465 -k1,24755:10269106,14882143:327680 -k1,24755:12874551,14882143:266465 -k1,24755:13800309,14882143:266466 -k1,24755:17260999,14882143:266465 -k1,24755:18916827,14882143:266465 -k1,24755:20130943,14882143:266465 -k1,24755:21554118,14882143:266465 -k1,24755:24850313,14882143:266466 -k1,24755:27149705,14882143:266465 -k1,24755:30379053,14882143:266465 -k1,24755:32583029,14882143:0 -) -(1,24756:6764466,15747223:25818563,513147,134348 -g1,24755:8353058,15747223 -g1,24755:10585214,15747223 -g1,24755:14144474,15747223 -g1,24755:15291354,15747223 -g1,24755:16647293,15747223 -g1,24755:19305433,15747223 -g1,24755:20911065,15747223 -g1,24755:22129379,15747223 -k1,24756:32583029,15747223:7915441 -g1,24756:32583029,15747223 -) -] -g1,24756:32583029,15881571 -) -h1,24756:6630773,15881571:0,0,0 -(1,24759:6630773,18712731:25952256,32768,229376 -(1,24759:6630773,18712731:0,32768,229376 -(1,24759:6630773,18712731:5505024,32768,229376 -r1,24796:12135797,18712731:5505024,262144,229376 -) -k1,24759:6630773,18712731:-5505024 -) -(1,24759:6630773,18712731:25952256,32768,0 -r1,24796:32583029,18712731:25952256,32768,0 -) -) -(1,24759:6630773,20344583:25952256,606339,151780 -(1,24759:6630773,20344583:2954625,582746,14155 -g1,24759:6630773,20344583 -g1,24759:9585398,20344583 -) -g1,24759:13602493,20344583 -g1,24759:16915731,20344583 -k1,24759:32583029,20344583:13862436 -g1,24759:32583029,20344583 -) -(1,24763:6630773,21602879:25952256,513147,126483 -k1,24762:8593113,21602879:266924 -k1,24762:9519328,21602879:266923 -k1,24762:10805337,21602879:266924 -k1,24762:14098058,21602879:266924 -k1,24762:17455005,21602879:266924 -k1,24762:19577252,21602879:266923 -k1,24762:21892176,21602879:266924 -k1,24762:22929803,21602879:266924 -k1,24762:24477887,21602879:266855 -k1,24762:27238456,21602879:266924 -k1,24762:28121418,21602879:266924 -k1,24762:30050990,21602879:266924 -k1,24762:30977205,21602879:266923 -k1,24762:31599989,21602879:266924 -k1,24762:32583029,21602879:0 -) -(1,24763:6630773,22467959:25952256,513147,134348 -k1,24762:8781724,22467959:239266 -k1,24762:13367992,22467959:239265 -k1,24762:14920600,22467959:239266 -k1,24762:16264148,22467959:239266 -k1,24762:17251179,22467959:239265 -k1,24762:18902746,22467959:239266 -k1,24762:21962681,22467959:239265 -k1,24762:24662169,22467959:239266 -k1,24762:27019559,22467959:239266 -k1,24762:27910252,22467959:239265 -k1,24762:29455651,22467959:239266 -k1,24762:32583029,22467959:0 -) -(1,24763:6630773,23333039:25952256,513147,126483 -k1,24762:8075536,23333039:253318 -k1,24762:9719529,23333039:253319 -k1,24762:10328707,23333039:253318 -k1,24762:12091975,23333039:253318 -k1,24762:12961332,23333039:253319 -k1,24762:14233735,23333039:253318 -k1,24762:15981274,23333039:253318 -k1,24762:17217633,23333039:253319 -k1,24762:19890540,23333039:253318 -k1,24762:21524702,23333039:253318 -k1,24762:22882303,23333039:253319 -k1,24762:23883387,23333039:253318 -k1,24762:26287597,23333039:253318 -k1,24762:29648633,23333039:253319 -k1,24762:31599989,23333039:253318 -k1,24762:32583029,23333039:0 -) -(1,24763:6630773,24198119:25952256,505283,134348 -k1,24762:8903343,24198119:204254 -k1,24762:10099157,24198119:204254 -k1,24762:13456348,24198119:204254 -k1,24762:15670591,24198119:204254 -k1,24762:16230705,24198119:204254 -k1,24762:18439705,24198119:204254 -k1,24762:21578660,24198119:204253 -k1,24762:22939624,24198119:204254 -k1,24762:25324261,24198119:204254 -k1,24762:27431681,24198119:204254 -k1,24762:30743652,24198119:204254 -k1,24762:31563944,24198119:204254 -k1,24762:32583029,24198119:0 -) -(1,24763:6630773,25063199:25952256,513147,134348 -k1,24762:8282608,25063199:284754 -k1,24762:9226654,25063199:284754 -k1,24762:11800581,25063199:284754 -k1,24762:13662786,25063199:284753 -k1,24762:14598968,25063199:284754 -k1,24762:16859632,25063199:284754 -k1,24762:19349017,25063199:284754 -k1,24762:22984627,25063199:284754 -k1,24762:27387008,25063199:284754 -k1,24762:28690846,25063199:284753 -k1,24762:30629073,25063199:284754 -k1,24762:31896867,25063199:284754 -k1,24762:32583029,25063199:0 -) -(1,24763:6630773,25928279:25952256,513147,126483 -k1,24762:8103498,25928279:269484 -k1,24762:12718019,25928279:269484 -k1,24762:15936622,25928279:269483 -k1,24762:18821648,25928279:269484 -k1,24762:20977258,25928279:269484 -k1,24762:22438187,25928279:269484 -k1,24762:25680384,25928279:269484 -k1,24762:26759237,25928279:269483 -k1,24762:28047806,25928279:269484 -k1,24762:30571729,25928279:269484 -k1,24762:32583029,25928279:0 -) -(1,24763:6630773,26793359:25952256,513147,126483 -k1,24762:9426976,26793359:267824 -k1,24762:10354092,26793359:267824 -k1,24762:11998826,26793359:267823 -k1,24762:13364378,26793359:267824 -k1,24762:14938335,26793359:267824 -k1,24762:17867576,26793359:267824 -k1,24762:19878002,26793359:267824 -k1,24762:20501685,26793359:267823 -k1,24762:22485897,26793359:267824 -k1,24762:23736761,26793359:267824 -k1,24762:25572206,26793359:267824 -k1,24762:26821104,26793359:267824 -k1,24762:28419308,26793359:267823 -k1,24762:29955909,26793359:267824 -k1,24762:31533142,26793359:267824 -k1,24762:32583029,26793359:0 -) -(1,24763:6630773,27658439:25952256,513147,134348 -k1,24762:9149933,27658439:240473 -h1,24762:10518980,27658439:0,0,0 -k1,24762:10759454,27658439:240474 -k1,24762:11809297,27658439:240473 -k1,24762:13547923,27658439:240473 -h1,24762:14743300,27658439:0,0,0 -k1,24762:14983773,27658439:240473 -k1,24762:16171898,27658439:240474 -k1,24762:18529839,27658439:240473 -k1,24762:19579682,27658439:240473 -k1,24762:20839240,27658439:240473 -k1,24762:22172199,27658439:240474 -k1,24762:23071964,27658439:240473 -k1,24762:25009164,27658439:240473 -k1,24762:26441082,27658439:240473 -k1,24762:28383526,27658439:240474 -k1,24762:31649796,27658439:240473 -k1,24762:32583029,27658439:0 -) -(1,24763:6630773,28523519:25952256,513147,134348 -g1,24762:9232552,28523519 -g1,24762:10657960,28523519 -k1,24763:32583030,28523519:20559300 -g1,24763:32583030,28523519 -) -v1,24765:6630773,29208374:0,393216,0 -(1,24777:6630773,33689618:25952256,4874460,196608 -g1,24777:6630773,33689618 -g1,24777:6630773,33689618 -g1,24777:6434165,33689618 -(1,24777:6434165,33689618:0,4874460,196608 -r1,24796:32779637,33689618:26345472,5071068,196608 -k1,24777:6434165,33689618:-26345472 -) -(1,24777:6434165,33689618:26345472,4874460,196608 -[1,24777:6630773,33689618:25952256,4677852,0 -(1,24767:6630773,29442811:25952256,431045,112852 -(1,24766:6630773,29442811:0,0,0 -g1,24766:6630773,29442811 -g1,24766:6630773,29442811 -g1,24766:6303093,29442811 -(1,24766:6303093,29442811:0,0,0 -) -g1,24766:6630773,29442811 -) -g1,24767:9950312,29442811 -k1,24767:9950312,29442811:0 -h1,24767:10614220,29442811:0,0,0 -k1,24767:32583028,29442811:21968808 -g1,24767:32583028,29442811 -) -(1,24768:6630773,30127666:25952256,431045,112852 -h1,24768:6630773,30127666:0,0,0 -g1,24768:6962727,30127666 -g1,24768:7294681,30127666 -g1,24768:7626635,30127666 -g1,24768:7958589,30127666 -g1,24768:8290543,30127666 -g1,24768:8622497,30127666 -g1,24768:13601806,30127666 -g1,24768:14265714,30127666 -k1,24768:14265714,30127666:0 -h1,24768:30531456,30127666:0,0,0 -k1,24768:32583029,30127666:2051573 -g1,24768:32583029,30127666 -) -(1,24769:6630773,30812521:25952256,424439,86428 -h1,24769:6630773,30812521:0,0,0 -g1,24769:6962727,30812521 -g1,24769:7294681,30812521 -g1,24769:7626635,30812521 -g1,24769:7958589,30812521 -g1,24769:8290543,30812521 -g1,24769:8622497,30812521 -g1,24769:8954451,30812521 -g1,24769:9286405,30812521 -g1,24769:9618359,30812521 -g1,24769:9950313,30812521 -g1,24769:10282267,30812521 -g1,24769:10614221,30812521 -g1,24769:10946175,30812521 -g1,24769:11278129,30812521 -g1,24769:11610083,30812521 -g1,24769:11942037,30812521 -g1,24769:14265715,30812521 -g1,24769:14929623,30812521 -k1,24769:14929623,30812521:0 -h1,24769:16921347,30812521:0,0,0 -k1,24769:32583029,30812521:15661682 -g1,24769:32583029,30812521 -) -(1,24770:6630773,31497376:25952256,424439,106246 -h1,24770:6630773,31497376:0,0,0 -g1,24770:6962727,31497376 -g1,24770:7294681,31497376 -g1,24770:7626635,31497376 -g1,24770:7958589,31497376 -g1,24770:8290543,31497376 -g1,24770:8622497,31497376 -g1,24770:8954451,31497376 -g1,24770:9286405,31497376 -g1,24770:9618359,31497376 -g1,24770:9950313,31497376 -g1,24770:10282267,31497376 -g1,24770:10614221,31497376 -g1,24770:10946175,31497376 -g1,24770:11278129,31497376 -g1,24770:11610083,31497376 -g1,24770:11942037,31497376 -g1,24770:15261576,31497376 -g1,24770:15925484,31497376 -g1,24770:19245024,31497376 -h1,24770:24224333,31497376:0,0,0 -k1,24770:32583029,31497376:8358696 -g1,24770:32583029,31497376 -) -(1,24771:6630773,32182231:25952256,431045,112852 -h1,24771:6630773,32182231:0,0,0 -g1,24771:12605944,32182231 -h1,24771:14597668,32182231:0,0,0 -k1,24771:32583028,32182231:17985360 -g1,24771:32583028,32182231 -) -(1,24776:6630773,32998158:25952256,424439,106246 -(1,24773:6630773,32998158:0,0,0 -g1,24773:6630773,32998158 -g1,24773:6630773,32998158 -g1,24773:6303093,32998158 -(1,24773:6303093,32998158:0,0,0 -) -g1,24773:6630773,32998158 -) -g1,24776:7626635,32998158 -g1,24776:7958589,32998158 -g1,24776:8290543,32998158 -g1,24776:8622497,32998158 -g1,24776:8954451,32998158 -g1,24776:9286405,32998158 -g1,24776:9618359,32998158 -g1,24776:9950313,32998158 -g1,24776:11610083,32998158 -h1,24776:15261576,32998158:0,0,0 -k1,24776:32583028,32998158:17321452 -g1,24776:32583028,32998158 -) -(1,24776:6630773,33683013:25952256,424439,6605 -h1,24776:6630773,33683013:0,0,0 -g1,24776:7626635,33683013 -g1,24776:11610082,33683013 -g1,24776:11942036,33683013 -g1,24776:12273990,33683013 -h1,24776:15261575,33683013:0,0,0 -k1,24776:32583029,33683013:17321454 -g1,24776:32583029,33683013 -) -] -) -g1,24777:32583029,33689618 -g1,24777:6630773,33689618 -g1,24777:6630773,33689618 -g1,24777:32583029,33689618 -g1,24777:32583029,33689618 -) -h1,24777:6630773,33886226:0,0,0 -(1,24781:6630773,34751306:25952256,513147,134348 -h1,24780:6630773,34751306:983040,0,0 -k1,24780:9604906,34751306:216378 -k1,24780:12847081,34751306:216378 -k1,24780:13679497,34751306:216378 -k1,24780:16476027,34751306:216378 -k1,24780:18715501,34751306:216378 -k1,24780:21458293,34751306:216379 -k1,24780:22693756,34751306:216378 -k1,24780:24002619,34751306:216378 -k1,24780:24878289,34751306:216378 -k1,24780:26879868,34751306:216378 -k1,24780:28840159,34751306:216378 -k1,24780:29672575,34751306:216378 -k1,24780:32583029,34751306:0 -) -(1,24781:6630773,35616386:25952256,513147,126483 -k1,24780:9180677,35616386:255489 -k1,24780:10627612,35616386:255490 -k1,24780:12556890,35616386:255489 -k1,24780:13627648,35616386:255490 -k1,24780:15123078,35616386:255489 -k1,24780:19899241,35616386:255489 -k1,24780:21173816,35616386:255490 -k1,24780:22412345,35616386:255489 -k1,24780:23768839,35616386:255489 -k1,24780:24675757,35616386:255490 -k1,24780:25679012,35616386:255489 -k1,24780:27240635,35616386:255490 -k1,24780:31391584,35616386:255489 -k1,24780:32583029,35616386:0 -) -(1,24781:6630773,36481466:25952256,505283,134348 -k1,24780:8680203,36481466:238015 -k1,24780:11152339,36481466:238014 -k1,24780:12581799,36481466:238015 -k1,24780:17047542,36481466:238015 -k1,24780:20235332,36481466:238015 -k1,24780:21159508,36481466:238014 -k1,24780:24487546,36481466:238015 -k1,24780:25341599,36481466:238015 -k1,24780:27858301,36481466:238015 -h1,24780:29799477,36481466:0,0,0 -k1,24780:30037491,36481466:238014 -k1,24780:31084876,36481466:238015 -k1,24780:32583029,36481466:0 -) -(1,24781:6630773,37346546:25952256,505283,134348 -h1,24780:7806489,37346546:0,0,0 -k1,24780:8233949,37346546:253790 -k1,24780:11277608,37346546:253791 -(1,24780:11277608,37346546:0,459977,115847 -r1,24796:16559839,37346546:5282231,575824,115847 -k1,24780:11277608,37346546:-5282231 -) -(1,24780:11277608,37346546:5282231,459977,115847 -k1,24780:11277608,37346546:3277 -h1,24780:16556562,37346546:0,411205,112570 -) -k1,24780:16813629,37346546:253790 -k1,24780:17683457,37346546:253790 -k1,24780:18956333,37346546:253791 -k1,24780:19624911,37346546:253735 -k1,24780:21589845,37346546:253790 -k1,24780:24423788,37346546:253791 -k1,24780:25781860,37346546:253790 -k1,24780:26783416,37346546:253790 -k1,24780:28550433,37346546:253791 -k1,24780:29455651,37346546:253790 -k1,24780:32583029,37346546:0 -) -(1,24781:6630773,38211626:25952256,513147,134348 -k1,24780:8087170,38211626:143055 -k1,24780:9965619,38211626:143056 -k1,24780:11893875,38211626:143055 -k1,24780:12506824,38211626:143056 -k1,24780:15506593,38211626:143055 -k1,24780:18411992,38211626:143056 -k1,24780:20667928,38211626:143055 -k1,24780:22304550,38211626:143056 -k1,24780:23133767,38211626:143055 -k1,24780:25298609,38211626:143056 -k1,24780:26124549,38211626:143055 -k1,24780:27493784,38211626:143056 -k1,24780:28584490,38211626:143055 -k1,24780:29746631,38211626:143056 -k1,24780:32583029,38211626:0 -) -(1,24781:6630773,39076706:25952256,513147,126483 -k1,24780:8048080,39076706:225862 -k1,24780:9888749,39076706:225862 -k1,24780:10797497,39076706:225863 -k1,24780:13403627,39076706:225862 -k1,24780:14577140,39076706:225862 -k1,24780:15822087,39076706:225862 -k1,24780:17542171,39076706:225863 -k1,24780:18924743,39076706:225862 -k1,24780:20342050,39076706:225862 -k1,24780:23330255,39076706:225862 -k1,24780:26340743,39076706:225863 -k1,24780:28060171,39076706:225862 -k1,24780:28972195,39076706:225862 -(1,24780:28972195,39076706:0,452978,115847 -r1,24796:32495867,39076706:3523672,568825,115847 -k1,24780:28972195,39076706:-3523672 -) -(1,24780:28972195,39076706:3523672,452978,115847 -k1,24780:28972195,39076706:3277 -h1,24780:32492590,39076706:0,411205,112570 -) -k1,24781:32583029,39076706:0 -) -(1,24781:6630773,39941786:25952256,505283,122846 -(1,24780:6630773,39941786:0,452978,122846 -r1,24796:8747598,39941786:2116825,575824,122846 -k1,24780:6630773,39941786:-2116825 -) -(1,24780:6630773,39941786:2116825,452978,122846 -k1,24780:6630773,39941786:3277 -h1,24780:8744321,39941786:0,411205,112570 -) -g1,24780:8946827,39941786 -g1,24780:10337501,39941786 -(1,24780:10337501,39941786:0,452978,115847 -r1,24796:13509461,39941786:3171960,568825,115847 -k1,24780:10337501,39941786:-3171960 -) -(1,24780:10337501,39941786:3171960,452978,115847 -k1,24780:10337501,39941786:3277 -h1,24780:13506184,39941786:0,411205,112570 -) -k1,24781:32583029,39941786:19021140 -g1,24781:32583029,39941786 -) -v1,24783:6630773,40806866:0,393216,0 -(1,24784:6630773,42159606:25952256,1745956,0 -g1,24784:6630773,42159606 -g1,24784:6237557,42159606 -r1,24796:6368629,42159606:131072,1745956,0 -g1,24784:6567858,42159606 -g1,24784:6764466,42159606 -[1,24784:6764466,42159606:25818563,1745956,0 -(1,24784:6764466,41168043:25818563,754393,260573 -(1,24783:6764466,41168043:0,754393,260573 -r1,24796:7856192,41168043:1091726,1014966,260573 -k1,24783:6764466,41168043:-1091726 -) -(1,24783:6764466,41168043:1091726,754393,260573 -) -k1,24783:8051737,41168043:195545 -k1,24783:8379417,41168043:327680 -k1,24783:9616984,41168043:195545 -k1,24783:13328535,41168043:195544 -k1,24783:16301496,41168043:195545 -k1,24783:17810383,41168043:195545 -k1,24783:20186311,41168043:195545 -k1,24783:21129622,41168043:195545 -k1,24783:25220627,41168043:195545 -k1,24783:26032209,41168043:195544 -k1,24783:28249540,41168043:195545 -k1,24783:30401335,41168043:195545 -k1,24784:32583029,41168043:0 -) -(1,24784:6764466,42033123:25818563,505283,126483 -(1,24783:6764466,42033123:0,452978,115847 -r1,24796:10639850,42033123:3875384,568825,115847 -k1,24783:6764466,42033123:-3875384 -) -(1,24783:6764466,42033123:3875384,452978,115847 -g1,24783:8526302,42033123 -g1,24783:9229726,42033123 -h1,24783:10636573,42033123:0,411205,112570 -) -g1,24783:11012749,42033123 -g1,24783:13097449,42033123 -g1,24783:13828175,42033123 -g1,24783:16739939,42033123 -g1,24783:18825294,42033123 -k1,24784:32583029,42033123:9765283 -g1,24784:32583029,42033123 -) -] -g1,24784:32583029,42159606 -) -h1,24784:6630773,42159606:0,0,0 -v1,24787:6630773,42844461:0,393216,0 -(1,24793:6630773,44528430:25952256,2077185,196608 -g1,24793:6630773,44528430 -g1,24793:6630773,44528430 -g1,24793:6434165,44528430 -(1,24793:6434165,44528430:0,2077185,196608 -r1,24796:32779637,44528430:26345472,2273793,196608 -k1,24793:6434165,44528430:-26345472 -) -(1,24793:6434165,44528430:26345472,2077185,196608 -[1,24793:6630773,44528430:25952256,1880577,0 -(1,24789:6630773,43078898:25952256,431045,112852 -(1,24788:6630773,43078898:0,0,0 -g1,24788:6630773,43078898 -g1,24788:6630773,43078898 -g1,24788:6303093,43078898 -(1,24788:6303093,43078898:0,0,0 -) -g1,24788:6630773,43078898 -) -k1,24789:6630773,43078898:0 -k1,24789:6630773,43078898:0 -h1,24789:27543869,43078898:0,0,0 -k1,24789:32583029,43078898:5039160 -g1,24789:32583029,43078898 -) -(1,24790:6630773,43763753:25952256,424439,106246 -h1,24790:6630773,43763753:0,0,0 -g1,24790:6962727,43763753 -g1,24790:7294681,43763753 -g1,24790:7626635,43763753 -g1,24790:7958589,43763753 -g1,24790:8290543,43763753 -g1,24790:8622497,43763753 -g1,24790:8954451,43763753 -g1,24790:9286405,43763753 -g1,24790:9618359,43763753 -g1,24790:9950313,43763753 -g1,24790:10282267,43763753 -g1,24790:10614221,43763753 -g1,24790:10946175,43763753 -g1,24790:11278129,43763753 -k1,24790:11278129,43763753:0 -h1,24790:19245023,43763753:0,0,0 -k1,24790:32583029,43763753:13338006 -g1,24790:32583029,43763753 -) -(1,24791:6630773,44448608:25952256,424439,79822 -h1,24791:6630773,44448608:0,0,0 -g1,24791:6962727,44448608 -g1,24791:7294681,44448608 -g1,24791:7626635,44448608 -g1,24791:7958589,44448608 -g1,24791:8290543,44448608 -g1,24791:8622497,44448608 -g1,24791:8954451,44448608 -g1,24791:9286405,44448608 -g1,24791:9618359,44448608 -g1,24791:9950313,44448608 -g1,24791:10282267,44448608 -g1,24791:10614221,44448608 -g1,24791:10946175,44448608 -g1,24791:11278129,44448608 -g1,24791:12937899,44448608 -g1,24791:13601807,44448608 -h1,24791:15261577,44448608:0,0,0 -k1,24791:32583029,44448608:17321452 -g1,24791:32583029,44448608 -) -] -) -g1,24793:32583029,44528430 -g1,24793:6630773,44528430 -g1,24793:6630773,44528430 -g1,24793:32583029,44528430 -g1,24793:32583029,44528430 -) -h1,24793:6630773,44725038:0,0,0 -] -(1,24796:32583029,45706769:0,0,0 -g1,24796:32583029,45706769 -) -) -] -(1,24796:6630773,47279633:25952256,0,0 -h1,24796:6630773,47279633:25952256,0,0 -) -] -(1,24796:4262630,4025873:0,0,0 -[1,24796:-473656,4025873:0,0,0 -(1,24796:-473656,-710413:0,0,0 -(1,24796:-473656,-710413:0,0,0 -g1,24796:-473656,-710413 -) -g1,24796:-473656,-710413 +[1,24794:3078558,4812305:0,0,0 +(1,24794:3078558,49800853:0,16384,2228224 +g1,24794:29030814,49800853 +g1,24794:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24794:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24794:37855564,49800853:1179648,16384,0 +) +) +k1,24794:3078556,49800853:-34777008 +) +] +g1,24794:6630773,4812305 +k1,24794:21114230,4812305:13288080 +g1,24794:22736901,4812305 +g1,24794:23350318,4812305 +g1,24794:24759997,4812305 +g1,24794:28372341,4812305 +g1,24794:30105768,4812305 +) +) +] +[1,24794:6630773,45706769:25952256,40108032,0 +(1,24794:6630773,45706769:25952256,40108032,0 +(1,24794:6630773,45706769:0,0,0 +g1,24794:6630773,45706769 +) +[1,24794:6630773,45706769:25952256,40108032,0 +v1,24733:6630773,6254097:0,393216,0 +(1,24749:6630773,13547978:25952256,7687097,196608 +g1,24749:6630773,13547978 +g1,24749:6630773,13547978 +g1,24749:6434165,13547978 +(1,24749:6434165,13547978:0,7687097,196608 +r1,24794:32779637,13547978:26345472,7883705,196608 +k1,24749:6434165,13547978:-26345472 +) +(1,24749:6434165,13547978:26345472,7687097,196608 +[1,24749:6630773,13547978:25952256,7490489,0 +(1,24735:6630773,6481928:25952256,424439,106246 +(1,24734:6630773,6481928:0,0,0 +g1,24734:6630773,6481928 +g1,24734:6630773,6481928 +g1,24734:6303093,6481928 +(1,24734:6303093,6481928:0,0,0 +) +g1,24734:6630773,6481928 +) +k1,24735:6630773,6481928:0 +k1,24735:6630773,6481928:0 +h1,24735:15925483,6481928:0,0,0 +k1,24735:32583029,6481928:16657546 +g1,24735:32583029,6481928 +) +(1,24736:6630773,7166783:25952256,431045,112852 +h1,24736:6630773,7166783:0,0,0 +g1,24736:6962727,7166783 +g1,24736:7294681,7166783 +g1,24736:7626635,7166783 +g1,24736:7958589,7166783 +g1,24736:8290543,7166783 +g1,24736:8622497,7166783 +g1,24736:8954451,7166783 +g1,24736:9286405,7166783 +g1,24736:9618359,7166783 +g1,24736:9950313,7166783 +g1,24736:10282267,7166783 +g1,24736:10614221,7166783 +g1,24736:10946175,7166783 +g1,24736:12273991,7166783 +g1,24736:12937899,7166783 +g1,24736:16921347,7166783 +g1,24736:17917209,7166783 +g1,24736:18913071,7166783 +g1,24736:19908933,7166783 +k1,24736:19908933,7166783:0 +h1,24736:20572841,7166783:0,0,0 +k1,24736:32583029,7166783:12010188 +g1,24736:32583029,7166783 +) +(1,24737:6630773,7851638:25952256,424439,106246 +h1,24737:6630773,7851638:0,0,0 +g1,24737:6962727,7851638 +g1,24737:7294681,7851638 +g1,24737:11610083,7851638 +g1,24737:12273991,7851638 +g1,24737:13269853,7851638 +g1,24737:15261577,7851638 +g1,24737:15925485,7851638 +g1,24737:23892381,7851638 +g1,24737:24556289,7851638 +g1,24737:28871690,7851638 +k1,24737:28871690,7851638:0 +h1,24737:29535598,7851638:0,0,0 +k1,24737:32583029,7851638:3047431 +g1,24737:32583029,7851638 +) +(1,24738:6630773,8536493:25952256,424439,86428 +h1,24738:6630773,8536493:0,0,0 +g1,24738:6962727,8536493 +g1,24738:7294681,8536493 +g1,24738:11610083,8536493 +g1,24738:12273991,8536493 +g1,24738:13269853,8536493 +k1,24738:13269853,8536493:0 +h1,24738:15261577,8536493:0,0,0 +k1,24738:32583029,8536493:17321452 +g1,24738:32583029,8536493 +) +(1,24748:6630773,9352420:25952256,424439,86428 +(1,24740:6630773,9352420:0,0,0 +g1,24740:6630773,9352420 +g1,24740:6630773,9352420 +g1,24740:6303093,9352420 +(1,24740:6303093,9352420:0,0,0 +) +g1,24740:6630773,9352420 +) +g1,24748:7626635,9352420 +g1,24748:8290543,9352420 +g1,24748:8954451,9352420 +g1,24748:11610083,9352420 +g1,24748:13601807,9352420 +g1,24748:14265715,9352420 +h1,24748:14597669,9352420:0,0,0 +k1,24748:32583029,9352420:17985360 +g1,24748:32583029,9352420 +) +(1,24748:6630773,10037275:25952256,424439,106246 +h1,24748:6630773,10037275:0,0,0 +g1,24748:7626635,10037275 +g1,24748:7958589,10037275 +g1,24748:8290543,10037275 +g1,24748:10282267,10037275 +g1,24748:15261576,10037275 +g1,24748:15593530,10037275 +g1,24748:15925484,10037275 +g1,24748:17253300,10037275 +g1,24748:17585254,10037275 +g1,24748:17917208,10037275 +g1,24748:19245024,10037275 +h1,24748:20904794,10037275:0,0,0 +k1,24748:32583029,10037275:11678235 +g1,24748:32583029,10037275 +) +(1,24748:6630773,10722130:25952256,424439,6605 +h1,24748:6630773,10722130:0,0,0 +g1,24748:7626635,10722130 +g1,24748:7958589,10722130 +g1,24748:8290543,10722130 +g1,24748:10282267,10722130 +g1,24748:10614221,10722130 +g1,24748:10946175,10722130 +g1,24748:11278129,10722130 +g1,24748:11610083,10722130 +g1,24748:11942037,10722130 +g1,24748:12273991,10722130 +g1,24748:12605945,10722130 +g1,24748:12937899,10722130 +g1,24748:13269853,10722130 +g1,24748:15261577,10722130 +g1,24748:17253301,10722130 +g1,24748:19245025,10722130 +k1,24748:19245025,10722130:0 +h1,24748:20904795,10722130:0,0,0 +k1,24748:32583029,10722130:11678234 +g1,24748:32583029,10722130 +) +(1,24748:6630773,11406985:25952256,407923,9908 +h1,24748:6630773,11406985:0,0,0 +g1,24748:7626635,11406985 +g1,24748:8290543,11406985 +g1,24748:8622497,11406985 +g1,24748:10282267,11406985 +g1,24748:10614221,11406985 +g1,24748:10946175,11406985 +g1,24748:11278129,11406985 +g1,24748:11610083,11406985 +g1,24748:11942037,11406985 +g1,24748:12273991,11406985 +g1,24748:15261577,11406985 +g1,24748:15593531,11406985 +g1,24748:17253301,11406985 +g1,24748:17585255,11406985 +g1,24748:19245025,11406985 +g1,24748:19576979,11406985 +g1,24748:19908933,11406985 +g1,24748:20240887,11406985 +h1,24748:20904795,11406985:0,0,0 +k1,24748:32583029,11406985:11678234 +g1,24748:32583029,11406985 +) +(1,24748:6630773,12091840:25952256,407923,9908 +h1,24748:6630773,12091840:0,0,0 +g1,24748:7626635,12091840 +g1,24748:8290543,12091840 +g1,24748:8622497,12091840 +g1,24748:10282267,12091840 +g1,24748:10614221,12091840 +g1,24748:10946175,12091840 +g1,24748:11278129,12091840 +g1,24748:11610083,12091840 +g1,24748:11942037,12091840 +g1,24748:12273991,12091840 +g1,24748:15261577,12091840 +g1,24748:15593531,12091840 +g1,24748:17253301,12091840 +g1,24748:17585255,12091840 +g1,24748:19245025,12091840 +g1,24748:19576979,12091840 +g1,24748:19908933,12091840 +g1,24748:20240887,12091840 +h1,24748:20904795,12091840:0,0,0 +k1,24748:32583029,12091840:11678234 +g1,24748:32583029,12091840 +) +(1,24748:6630773,12776695:25952256,407923,9908 +h1,24748:6630773,12776695:0,0,0 +g1,24748:7626635,12776695 +g1,24748:8290543,12776695 +g1,24748:8622497,12776695 +g1,24748:10282267,12776695 +g1,24748:10614221,12776695 +g1,24748:10946175,12776695 +g1,24748:11278129,12776695 +g1,24748:11610083,12776695 +g1,24748:11942037,12776695 +g1,24748:12273991,12776695 +g1,24748:15261577,12776695 +g1,24748:15593531,12776695 +g1,24748:17253301,12776695 +g1,24748:17585255,12776695 +g1,24748:19245025,12776695 +g1,24748:19576979,12776695 +g1,24748:19908933,12776695 +g1,24748:20240887,12776695 +h1,24748:20904795,12776695:0,0,0 +k1,24748:32583029,12776695:11678234 +g1,24748:32583029,12776695 +) +(1,24748:6630773,13461550:25952256,424439,86428 +h1,24748:6630773,13461550:0,0,0 +g1,24748:7626635,13461550 +g1,24748:8290543,13461550 +g1,24748:8954451,13461550 +g1,24748:10946175,13461550 +g1,24748:12605945,13461550 +h1,24748:13933761,13461550:0,0,0 +k1,24748:32583029,13461550:18649268 +g1,24748:32583029,13461550 +) +] +) +g1,24749:32583029,13547978 +g1,24749:6630773,13547978 +g1,24749:6630773,13547978 +g1,24749:32583029,13547978 +g1,24749:32583029,13547978 +) +h1,24749:6630773,13744586:0,0,0 +v1,24753:6630773,14609666:0,393216,0 +(1,24754:6630773,15881571:25952256,1665121,0 +g1,24754:6630773,15881571 +g1,24754:6237557,15881571 +r1,24794:6368629,15881571:131072,1665121,0 +g1,24754:6567858,15881571 +g1,24754:6764466,15881571 +[1,24754:6764466,15881571:25818563,1665121,0 +(1,24754:6764466,14882143:25818563,665693,196608 +(1,24753:6764466,14882143:0,665693,196608 +r1,24794:7868133,14882143:1103667,862301,196608 +k1,24753:6764466,14882143:-1103667 +) +(1,24753:6764466,14882143:1103667,665693,196608 +) +k1,24753:8134598,14882143:266465 +k1,24753:10269106,14882143:327680 +k1,24753:12874551,14882143:266465 +k1,24753:13800309,14882143:266466 +k1,24753:17260999,14882143:266465 +k1,24753:18916827,14882143:266465 +k1,24753:20130943,14882143:266465 +k1,24753:21554118,14882143:266465 +k1,24753:24850313,14882143:266466 +k1,24753:27149705,14882143:266465 +k1,24753:30379053,14882143:266465 +k1,24753:32583029,14882143:0 +) +(1,24754:6764466,15747223:25818563,513147,134348 +g1,24753:8353058,15747223 +g1,24753:10585214,15747223 +g1,24753:14144474,15747223 +g1,24753:15291354,15747223 +g1,24753:16647293,15747223 +g1,24753:19305433,15747223 +g1,24753:20911065,15747223 +g1,24753:22129379,15747223 +k1,24754:32583029,15747223:7915441 +g1,24754:32583029,15747223 +) +] +g1,24754:32583029,15881571 +) +h1,24754:6630773,15881571:0,0,0 +(1,24757:6630773,18712731:25952256,32768,229376 +(1,24757:6630773,18712731:0,32768,229376 +(1,24757:6630773,18712731:5505024,32768,229376 +r1,24794:12135797,18712731:5505024,262144,229376 +) +k1,24757:6630773,18712731:-5505024 +) +(1,24757:6630773,18712731:25952256,32768,0 +r1,24794:32583029,18712731:25952256,32768,0 +) +) +(1,24757:6630773,20344583:25952256,606339,151780 +(1,24757:6630773,20344583:2954625,582746,14155 +g1,24757:6630773,20344583 +g1,24757:9585398,20344583 +) +g1,24757:13602493,20344583 +g1,24757:16915731,20344583 +k1,24757:32583029,20344583:13862436 +g1,24757:32583029,20344583 +) +(1,24761:6630773,21602879:25952256,513147,126483 +k1,24760:8593113,21602879:266924 +k1,24760:9519328,21602879:266923 +k1,24760:10805337,21602879:266924 +k1,24760:14098058,21602879:266924 +k1,24760:17455005,21602879:266924 +k1,24760:19577252,21602879:266923 +k1,24760:21892176,21602879:266924 +k1,24760:22929803,21602879:266924 +k1,24760:24477887,21602879:266855 +k1,24760:27238456,21602879:266924 +k1,24760:28121418,21602879:266924 +k1,24760:30050990,21602879:266924 +k1,24760:30977205,21602879:266923 +k1,24760:31599989,21602879:266924 +k1,24760:32583029,21602879:0 +) +(1,24761:6630773,22467959:25952256,513147,134348 +k1,24760:8781724,22467959:239266 +k1,24760:13367992,22467959:239265 +k1,24760:14920600,22467959:239266 +k1,24760:16264148,22467959:239266 +k1,24760:17251179,22467959:239265 +k1,24760:18902746,22467959:239266 +k1,24760:21962681,22467959:239265 +k1,24760:24662169,22467959:239266 +k1,24760:27019559,22467959:239266 +k1,24760:27910252,22467959:239265 +k1,24760:29455651,22467959:239266 +k1,24760:32583029,22467959:0 +) +(1,24761:6630773,23333039:25952256,513147,126483 +k1,24760:8075536,23333039:253318 +k1,24760:9719529,23333039:253319 +k1,24760:10328707,23333039:253318 +k1,24760:12091975,23333039:253318 +k1,24760:12961332,23333039:253319 +k1,24760:14233735,23333039:253318 +k1,24760:15981274,23333039:253318 +k1,24760:17217633,23333039:253319 +k1,24760:19890540,23333039:253318 +k1,24760:21524702,23333039:253318 +k1,24760:22882303,23333039:253319 +k1,24760:23883387,23333039:253318 +k1,24760:26287597,23333039:253318 +k1,24760:29648633,23333039:253319 +k1,24760:31599989,23333039:253318 +k1,24760:32583029,23333039:0 +) +(1,24761:6630773,24198119:25952256,505283,134348 +k1,24760:8903343,24198119:204254 +k1,24760:10099157,24198119:204254 +k1,24760:13456348,24198119:204254 +k1,24760:15670591,24198119:204254 +k1,24760:16230705,24198119:204254 +k1,24760:18439705,24198119:204254 +k1,24760:21578660,24198119:204253 +k1,24760:22939624,24198119:204254 +k1,24760:25324261,24198119:204254 +k1,24760:27431681,24198119:204254 +k1,24760:30743652,24198119:204254 +k1,24760:31563944,24198119:204254 +k1,24760:32583029,24198119:0 +) +(1,24761:6630773,25063199:25952256,513147,134348 +k1,24760:8282608,25063199:284754 +k1,24760:9226654,25063199:284754 +k1,24760:11800581,25063199:284754 +k1,24760:13662786,25063199:284753 +k1,24760:14598968,25063199:284754 +k1,24760:16859632,25063199:284754 +k1,24760:19349017,25063199:284754 +k1,24760:22984627,25063199:284754 +k1,24760:27387008,25063199:284754 +k1,24760:28690846,25063199:284753 +k1,24760:30629073,25063199:284754 +k1,24760:31896867,25063199:284754 +k1,24760:32583029,25063199:0 +) +(1,24761:6630773,25928279:25952256,513147,126483 +k1,24760:8103498,25928279:269484 +k1,24760:12718019,25928279:269484 +k1,24760:15936622,25928279:269483 +k1,24760:18821648,25928279:269484 +k1,24760:20977258,25928279:269484 +k1,24760:22438187,25928279:269484 +k1,24760:25680384,25928279:269484 +k1,24760:26759237,25928279:269483 +k1,24760:28047806,25928279:269484 +k1,24760:30571729,25928279:269484 +k1,24760:32583029,25928279:0 +) +(1,24761:6630773,26793359:25952256,513147,126483 +k1,24760:9426976,26793359:267824 +k1,24760:10354092,26793359:267824 +k1,24760:11998826,26793359:267823 +k1,24760:13364378,26793359:267824 +k1,24760:14938335,26793359:267824 +k1,24760:17867576,26793359:267824 +k1,24760:19878002,26793359:267824 +k1,24760:20501685,26793359:267823 +k1,24760:22485897,26793359:267824 +k1,24760:23736761,26793359:267824 +k1,24760:25572206,26793359:267824 +k1,24760:26821104,26793359:267824 +k1,24760:28419308,26793359:267823 +k1,24760:29955909,26793359:267824 +k1,24760:31533142,26793359:267824 +k1,24760:32583029,26793359:0 +) +(1,24761:6630773,27658439:25952256,513147,134348 +k1,24760:9149933,27658439:240473 +h1,24760:10518980,27658439:0,0,0 +k1,24760:10759454,27658439:240474 +k1,24760:11809297,27658439:240473 +k1,24760:13547923,27658439:240473 +h1,24760:14743300,27658439:0,0,0 +k1,24760:14983773,27658439:240473 +k1,24760:16171898,27658439:240474 +k1,24760:18529839,27658439:240473 +k1,24760:19579682,27658439:240473 +k1,24760:20839240,27658439:240473 +k1,24760:22172199,27658439:240474 +k1,24760:23071964,27658439:240473 +k1,24760:25009164,27658439:240473 +k1,24760:26441082,27658439:240473 +k1,24760:28383526,27658439:240474 +k1,24760:31649796,27658439:240473 +k1,24760:32583029,27658439:0 +) +(1,24761:6630773,28523519:25952256,513147,134348 +g1,24760:9232552,28523519 +g1,24760:10657960,28523519 +k1,24761:32583030,28523519:20559300 +g1,24761:32583030,28523519 +) +v1,24763:6630773,29208374:0,393216,0 +(1,24775:6630773,33689618:25952256,4874460,196608 +g1,24775:6630773,33689618 +g1,24775:6630773,33689618 +g1,24775:6434165,33689618 +(1,24775:6434165,33689618:0,4874460,196608 +r1,24794:32779637,33689618:26345472,5071068,196608 +k1,24775:6434165,33689618:-26345472 +) +(1,24775:6434165,33689618:26345472,4874460,196608 +[1,24775:6630773,33689618:25952256,4677852,0 +(1,24765:6630773,29442811:25952256,431045,112852 +(1,24764:6630773,29442811:0,0,0 +g1,24764:6630773,29442811 +g1,24764:6630773,29442811 +g1,24764:6303093,29442811 +(1,24764:6303093,29442811:0,0,0 +) +g1,24764:6630773,29442811 +) +g1,24765:9950312,29442811 +k1,24765:9950312,29442811:0 +h1,24765:10614220,29442811:0,0,0 +k1,24765:32583028,29442811:21968808 +g1,24765:32583028,29442811 +) +(1,24766:6630773,30127666:25952256,431045,112852 +h1,24766:6630773,30127666:0,0,0 +g1,24766:6962727,30127666 +g1,24766:7294681,30127666 +g1,24766:7626635,30127666 +g1,24766:7958589,30127666 +g1,24766:8290543,30127666 +g1,24766:8622497,30127666 +g1,24766:13601806,30127666 +g1,24766:14265714,30127666 +k1,24766:14265714,30127666:0 +h1,24766:30531456,30127666:0,0,0 +k1,24766:32583029,30127666:2051573 +g1,24766:32583029,30127666 +) +(1,24767:6630773,30812521:25952256,424439,86428 +h1,24767:6630773,30812521:0,0,0 +g1,24767:6962727,30812521 +g1,24767:7294681,30812521 +g1,24767:7626635,30812521 +g1,24767:7958589,30812521 +g1,24767:8290543,30812521 +g1,24767:8622497,30812521 +g1,24767:8954451,30812521 +g1,24767:9286405,30812521 +g1,24767:9618359,30812521 +g1,24767:9950313,30812521 +g1,24767:10282267,30812521 +g1,24767:10614221,30812521 +g1,24767:10946175,30812521 +g1,24767:11278129,30812521 +g1,24767:11610083,30812521 +g1,24767:11942037,30812521 +g1,24767:14265715,30812521 +g1,24767:14929623,30812521 +k1,24767:14929623,30812521:0 +h1,24767:16921347,30812521:0,0,0 +k1,24767:32583029,30812521:15661682 +g1,24767:32583029,30812521 +) +(1,24768:6630773,31497376:25952256,424439,106246 +h1,24768:6630773,31497376:0,0,0 +g1,24768:6962727,31497376 +g1,24768:7294681,31497376 +g1,24768:7626635,31497376 +g1,24768:7958589,31497376 +g1,24768:8290543,31497376 +g1,24768:8622497,31497376 +g1,24768:8954451,31497376 +g1,24768:9286405,31497376 +g1,24768:9618359,31497376 +g1,24768:9950313,31497376 +g1,24768:10282267,31497376 +g1,24768:10614221,31497376 +g1,24768:10946175,31497376 +g1,24768:11278129,31497376 +g1,24768:11610083,31497376 +g1,24768:11942037,31497376 +g1,24768:15261576,31497376 +g1,24768:15925484,31497376 +g1,24768:19245024,31497376 +h1,24768:24224333,31497376:0,0,0 +k1,24768:32583029,31497376:8358696 +g1,24768:32583029,31497376 +) +(1,24769:6630773,32182231:25952256,431045,112852 +h1,24769:6630773,32182231:0,0,0 +g1,24769:12605944,32182231 +h1,24769:14597668,32182231:0,0,0 +k1,24769:32583028,32182231:17985360 +g1,24769:32583028,32182231 +) +(1,24774:6630773,32998158:25952256,424439,106246 +(1,24771:6630773,32998158:0,0,0 +g1,24771:6630773,32998158 +g1,24771:6630773,32998158 +g1,24771:6303093,32998158 +(1,24771:6303093,32998158:0,0,0 +) +g1,24771:6630773,32998158 +) +g1,24774:7626635,32998158 +g1,24774:7958589,32998158 +g1,24774:8290543,32998158 +g1,24774:8622497,32998158 +g1,24774:8954451,32998158 +g1,24774:9286405,32998158 +g1,24774:9618359,32998158 +g1,24774:9950313,32998158 +g1,24774:11610083,32998158 +h1,24774:15261576,32998158:0,0,0 +k1,24774:32583028,32998158:17321452 +g1,24774:32583028,32998158 +) +(1,24774:6630773,33683013:25952256,424439,6605 +h1,24774:6630773,33683013:0,0,0 +g1,24774:7626635,33683013 +g1,24774:11610082,33683013 +g1,24774:11942036,33683013 +g1,24774:12273990,33683013 +h1,24774:15261575,33683013:0,0,0 +k1,24774:32583029,33683013:17321454 +g1,24774:32583029,33683013 +) +] +) +g1,24775:32583029,33689618 +g1,24775:6630773,33689618 +g1,24775:6630773,33689618 +g1,24775:32583029,33689618 +g1,24775:32583029,33689618 +) +h1,24775:6630773,33886226:0,0,0 +(1,24779:6630773,34751306:25952256,513147,134348 +h1,24778:6630773,34751306:983040,0,0 +k1,24778:9604906,34751306:216378 +k1,24778:12847081,34751306:216378 +k1,24778:13679497,34751306:216378 +k1,24778:16476027,34751306:216378 +k1,24778:18715501,34751306:216378 +k1,24778:21458293,34751306:216379 +k1,24778:22693756,34751306:216378 +k1,24778:24002619,34751306:216378 +k1,24778:24878289,34751306:216378 +k1,24778:26879868,34751306:216378 +k1,24778:28840159,34751306:216378 +k1,24778:29672575,34751306:216378 +k1,24778:32583029,34751306:0 +) +(1,24779:6630773,35616386:25952256,513147,126483 +k1,24778:9180677,35616386:255489 +k1,24778:10627612,35616386:255490 +k1,24778:12556890,35616386:255489 +k1,24778:13627648,35616386:255490 +k1,24778:15123078,35616386:255489 +k1,24778:19899241,35616386:255489 +k1,24778:21173816,35616386:255490 +k1,24778:22412345,35616386:255489 +k1,24778:23768839,35616386:255489 +k1,24778:24675757,35616386:255490 +k1,24778:25679012,35616386:255489 +k1,24778:27240635,35616386:255490 +k1,24778:31391584,35616386:255489 +k1,24778:32583029,35616386:0 +) +(1,24779:6630773,36481466:25952256,505283,134348 +k1,24778:8680203,36481466:238015 +k1,24778:11152339,36481466:238014 +k1,24778:12581799,36481466:238015 +k1,24778:17047542,36481466:238015 +k1,24778:20235332,36481466:238015 +k1,24778:21159508,36481466:238014 +k1,24778:24487546,36481466:238015 +k1,24778:25341599,36481466:238015 +k1,24778:27858301,36481466:238015 +h1,24778:29799477,36481466:0,0,0 +k1,24778:30037491,36481466:238014 +k1,24778:31084876,36481466:238015 +k1,24778:32583029,36481466:0 +) +(1,24779:6630773,37346546:25952256,505283,134348 +h1,24778:7806489,37346546:0,0,0 +k1,24778:8233949,37346546:253790 +k1,24778:11277608,37346546:253791 +(1,24778:11277608,37346546:0,459977,115847 +r1,24794:16559839,37346546:5282231,575824,115847 +k1,24778:11277608,37346546:-5282231 +) +(1,24778:11277608,37346546:5282231,459977,115847 +k1,24778:11277608,37346546:3277 +h1,24778:16556562,37346546:0,411205,112570 +) +k1,24778:16813629,37346546:253790 +k1,24778:17683457,37346546:253790 +k1,24778:18956333,37346546:253791 +k1,24778:19624911,37346546:253735 +k1,24778:21589845,37346546:253790 +k1,24778:24423788,37346546:253791 +k1,24778:25781860,37346546:253790 +k1,24778:26783416,37346546:253790 +k1,24778:28550433,37346546:253791 +k1,24778:29455651,37346546:253790 +k1,24778:32583029,37346546:0 +) +(1,24779:6630773,38211626:25952256,513147,134348 +k1,24778:8087170,38211626:143055 +k1,24778:9965619,38211626:143056 +k1,24778:11893875,38211626:143055 +k1,24778:12506824,38211626:143056 +k1,24778:15506593,38211626:143055 +k1,24778:18411992,38211626:143056 +k1,24778:20667928,38211626:143055 +k1,24778:22304550,38211626:143056 +k1,24778:23133767,38211626:143055 +k1,24778:25298609,38211626:143056 +k1,24778:26124549,38211626:143055 +k1,24778:27493784,38211626:143056 +k1,24778:28584490,38211626:143055 +k1,24778:29746631,38211626:143056 +k1,24778:32583029,38211626:0 +) +(1,24779:6630773,39076706:25952256,513147,126483 +k1,24778:8048080,39076706:225862 +k1,24778:9888749,39076706:225862 +k1,24778:10797497,39076706:225863 +k1,24778:13403627,39076706:225862 +k1,24778:14577140,39076706:225862 +k1,24778:15822087,39076706:225862 +k1,24778:17542171,39076706:225863 +k1,24778:18924743,39076706:225862 +k1,24778:20342050,39076706:225862 +k1,24778:23330255,39076706:225862 +k1,24778:26340743,39076706:225863 +k1,24778:28060171,39076706:225862 +k1,24778:28972195,39076706:225862 +(1,24778:28972195,39076706:0,452978,115847 +r1,24794:32495867,39076706:3523672,568825,115847 +k1,24778:28972195,39076706:-3523672 +) +(1,24778:28972195,39076706:3523672,452978,115847 +k1,24778:28972195,39076706:3277 +h1,24778:32492590,39076706:0,411205,112570 +) +k1,24779:32583029,39076706:0 +) +(1,24779:6630773,39941786:25952256,505283,122846 +(1,24778:6630773,39941786:0,452978,122846 +r1,24794:8747598,39941786:2116825,575824,122846 +k1,24778:6630773,39941786:-2116825 +) +(1,24778:6630773,39941786:2116825,452978,122846 +k1,24778:6630773,39941786:3277 +h1,24778:8744321,39941786:0,411205,112570 +) +g1,24778:8946827,39941786 +g1,24778:10337501,39941786 +(1,24778:10337501,39941786:0,452978,115847 +r1,24794:13509461,39941786:3171960,568825,115847 +k1,24778:10337501,39941786:-3171960 +) +(1,24778:10337501,39941786:3171960,452978,115847 +k1,24778:10337501,39941786:3277 +h1,24778:13506184,39941786:0,411205,112570 +) +k1,24779:32583029,39941786:19021140 +g1,24779:32583029,39941786 +) +v1,24781:6630773,40806866:0,393216,0 +(1,24782:6630773,42159606:25952256,1745956,0 +g1,24782:6630773,42159606 +g1,24782:6237557,42159606 +r1,24794:6368629,42159606:131072,1745956,0 +g1,24782:6567858,42159606 +g1,24782:6764466,42159606 +[1,24782:6764466,42159606:25818563,1745956,0 +(1,24782:6764466,41168043:25818563,754393,260573 +(1,24781:6764466,41168043:0,754393,260573 +r1,24794:7856192,41168043:1091726,1014966,260573 +k1,24781:6764466,41168043:-1091726 +) +(1,24781:6764466,41168043:1091726,754393,260573 +) +k1,24781:8051737,41168043:195545 +k1,24781:8379417,41168043:327680 +k1,24781:9616984,41168043:195545 +k1,24781:13328535,41168043:195544 +k1,24781:16301496,41168043:195545 +k1,24781:17810383,41168043:195545 +k1,24781:20186311,41168043:195545 +k1,24781:21129622,41168043:195545 +k1,24781:25220627,41168043:195545 +k1,24781:26032209,41168043:195544 +k1,24781:28249540,41168043:195545 +k1,24781:30401335,41168043:195545 +k1,24782:32583029,41168043:0 +) +(1,24782:6764466,42033123:25818563,505283,126483 +(1,24781:6764466,42033123:0,452978,115847 +r1,24794:10639850,42033123:3875384,568825,115847 +k1,24781:6764466,42033123:-3875384 +) +(1,24781:6764466,42033123:3875384,452978,115847 +g1,24781:8526302,42033123 +g1,24781:9229726,42033123 +h1,24781:10636573,42033123:0,411205,112570 +) +g1,24781:11012749,42033123 +g1,24781:13097449,42033123 +g1,24781:13828175,42033123 +g1,24781:16739939,42033123 +g1,24781:18825294,42033123 +k1,24782:32583029,42033123:9765283 +g1,24782:32583029,42033123 +) +] +g1,24782:32583029,42159606 +) +h1,24782:6630773,42159606:0,0,0 +v1,24785:6630773,42844461:0,393216,0 +(1,24791:6630773,44528430:25952256,2077185,196608 +g1,24791:6630773,44528430 +g1,24791:6630773,44528430 +g1,24791:6434165,44528430 +(1,24791:6434165,44528430:0,2077185,196608 +r1,24794:32779637,44528430:26345472,2273793,196608 +k1,24791:6434165,44528430:-26345472 +) +(1,24791:6434165,44528430:26345472,2077185,196608 +[1,24791:6630773,44528430:25952256,1880577,0 +(1,24787:6630773,43078898:25952256,431045,112852 +(1,24786:6630773,43078898:0,0,0 +g1,24786:6630773,43078898 +g1,24786:6630773,43078898 +g1,24786:6303093,43078898 +(1,24786:6303093,43078898:0,0,0 +) +g1,24786:6630773,43078898 +) +k1,24787:6630773,43078898:0 +k1,24787:6630773,43078898:0 +h1,24787:27543869,43078898:0,0,0 +k1,24787:32583029,43078898:5039160 +g1,24787:32583029,43078898 +) +(1,24788:6630773,43763753:25952256,424439,106246 +h1,24788:6630773,43763753:0,0,0 +g1,24788:6962727,43763753 +g1,24788:7294681,43763753 +g1,24788:7626635,43763753 +g1,24788:7958589,43763753 +g1,24788:8290543,43763753 +g1,24788:8622497,43763753 +g1,24788:8954451,43763753 +g1,24788:9286405,43763753 +g1,24788:9618359,43763753 +g1,24788:9950313,43763753 +g1,24788:10282267,43763753 +g1,24788:10614221,43763753 +g1,24788:10946175,43763753 +g1,24788:11278129,43763753 +k1,24788:11278129,43763753:0 +h1,24788:19245023,43763753:0,0,0 +k1,24788:32583029,43763753:13338006 +g1,24788:32583029,43763753 +) +(1,24789:6630773,44448608:25952256,424439,79822 +h1,24789:6630773,44448608:0,0,0 +g1,24789:6962727,44448608 +g1,24789:7294681,44448608 +g1,24789:7626635,44448608 +g1,24789:7958589,44448608 +g1,24789:8290543,44448608 +g1,24789:8622497,44448608 +g1,24789:8954451,44448608 +g1,24789:9286405,44448608 +g1,24789:9618359,44448608 +g1,24789:9950313,44448608 +g1,24789:10282267,44448608 +g1,24789:10614221,44448608 +g1,24789:10946175,44448608 +g1,24789:11278129,44448608 +g1,24789:12937899,44448608 +g1,24789:13601807,44448608 +h1,24789:15261577,44448608:0,0,0 +k1,24789:32583029,44448608:17321452 +g1,24789:32583029,44448608 +) +] +) +g1,24791:32583029,44528430 +g1,24791:6630773,44528430 +g1,24791:6630773,44528430 +g1,24791:32583029,44528430 +g1,24791:32583029,44528430 +) +h1,24791:6630773,44725038:0,0,0 +] +(1,24794:32583029,45706769:0,0,0 +g1,24794:32583029,45706769 +) +) +] +(1,24794:6630773,47279633:25952256,0,0 +h1,24794:6630773,47279633:25952256,0,0 +) +] +(1,24794:4262630,4025873:0,0,0 +[1,24794:-473656,4025873:0,0,0 +(1,24794:-473656,-710413:0,0,0 +(1,24794:-473656,-710413:0,0,0 +g1,24794:-473656,-710413 +) +g1,24794:-473656,-710413 ) ] ) ] !27816 -}425 -Input:4597:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4598:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4599:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}426 +Input:4601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !288 -{426 -[1,24874:4262630,47279633:28320399,43253760,0 -(1,24874:4262630,4025873:0,0,0 -[1,24874:-473656,4025873:0,0,0 -(1,24874:-473656,-710413:0,0,0 -(1,24874:-473656,-644877:0,0,0 -k1,24874:-473656,-644877:-65536 +{427 +[1,24872:4262630,47279633:28320399,43253760,0 +(1,24872:4262630,4025873:0,0,0 +[1,24872:-473656,4025873:0,0,0 +(1,24872:-473656,-710413:0,0,0 +(1,24872:-473656,-644877:0,0,0 +k1,24872:-473656,-644877:-65536 ) -(1,24874:-473656,4736287:0,0,0 -k1,24874:-473656,4736287:5209943 +(1,24872:-473656,4736287:0,0,0 +k1,24872:-473656,4736287:5209943 ) -g1,24874:-473656,-710413 +g1,24872:-473656,-710413 ) ] ) -[1,24874:6630773,47279633:25952256,43253760,0 -[1,24874:6630773,4812305:25952256,786432,0 -(1,24874:6630773,4812305:25952256,505283,126483 -(1,24874:6630773,4812305:25952256,505283,126483 -g1,24874:3078558,4812305 -[1,24874:3078558,4812305:0,0,0 -(1,24874:3078558,2439708:0,1703936,0 -k1,24874:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24874:2537886,2439708:1179648,16384,0 +[1,24872:6630773,47279633:25952256,43253760,0 +[1,24872:6630773,4812305:25952256,786432,0 +(1,24872:6630773,4812305:25952256,505283,126483 +(1,24872:6630773,4812305:25952256,505283,126483 +g1,24872:3078558,4812305 +[1,24872:3078558,4812305:0,0,0 +(1,24872:3078558,2439708:0,1703936,0 +k1,24872:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24872:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24874:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24872:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24874:3078558,4812305:0,0,0 -(1,24874:3078558,2439708:0,1703936,0 -g1,24874:29030814,2439708 -g1,24874:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24874:36151628,1915420:16384,1179648,0 +[1,24872:3078558,4812305:0,0,0 +(1,24872:3078558,2439708:0,1703936,0 +g1,24872:29030814,2439708 +g1,24872:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24872:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24874:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24872:37855564,2439708:1179648,16384,0 ) ) -k1,24874:3078556,2439708:-34777008 +k1,24872:3078556,2439708:-34777008 ) ] -[1,24874:3078558,4812305:0,0,0 -(1,24874:3078558,49800853:0,16384,2228224 -k1,24874:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24874:2537886,49800853:1179648,16384,0 +[1,24872:3078558,4812305:0,0,0 +(1,24872:3078558,49800853:0,16384,2228224 +k1,24872:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24872:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24874:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24872:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24874:3078558,4812305:0,0,0 -(1,24874:3078558,49800853:0,16384,2228224 -g1,24874:29030814,49800853 -g1,24874:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24874:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24874:37855564,49800853:1179648,16384,0 -) -) -k1,24874:3078556,49800853:-34777008 -) -] -g1,24874:6630773,4812305 -g1,24874:6630773,4812305 -g1,24874:9731936,4812305 -g1,24874:12361240,4812305 -g1,24874:14094667,4812305 -k1,24874:31387651,4812305:17292984 -) -) -] -[1,24874:6630773,45706769:25952256,40108032,0 -(1,24874:6630773,45706769:25952256,40108032,0 -(1,24874:6630773,45706769:0,0,0 -g1,24874:6630773,45706769 -) -[1,24874:6630773,45706769:25952256,40108032,0 -(1,24798:6630773,6254097:25952256,513147,134348 -h1,24797:6630773,6254097:983040,0,0 -k1,24797:10873192,6254097:139210 -k1,24797:11628439,6254097:139209 -k1,24797:14347801,6254097:139210 -k1,24797:17288019,6254097:139210 -k1,24797:18113390,6254097:139209 -k1,24797:19531207,6254097:139210 -k1,24797:20356579,6254097:139210 -k1,24797:22239701,6254097:139209 -k1,24797:22994949,6254097:139210 -k1,24797:25714311,6254097:139210 -k1,24797:28253447,6254097:139209 -k1,24797:30919070,6254097:139210 -k1,24797:32583029,6254097:0 -) -(1,24798:6630773,7119177:25952256,513147,134348 -k1,24797:7885435,7119177:204775 -k1,24797:10368896,7119177:204774 -h1,24797:12136402,7119177:0,0,0 -k1,24797:12341177,7119177:204775 -k1,24797:13355321,7119177:204774 -k1,24797:15058249,7119177:204775 -h1,24797:16253626,7119177:0,0,0 -k1,24797:16458401,7119177:204775 -k1,24797:17610826,7119177:204774 -k1,24797:19465798,7119177:204775 -k1,24797:23477559,7119177:204775 -k1,24797:25504889,7119177:204774 -k1,24797:28881607,7119177:204775 -k1,24797:30289622,7119177:204774 -k1,24797:31923737,7119177:204775 -k1,24797:32583029,7119177:0 -) -(1,24798:6630773,7984257:25952256,505283,7863 -g1,24797:8219365,7984257 -g1,24797:9686060,7984257 -k1,24798:32583029,7984257:22429698 -g1,24798:32583029,7984257 -) -v1,24800:6630773,8669112:0,393216,0 -(1,24816:6630773,15893079:25952256,7617183,196608 -g1,24816:6630773,15893079 -g1,24816:6630773,15893079 -g1,24816:6434165,15893079 -(1,24816:6434165,15893079:0,7617183,196608 -r1,24874:32779637,15893079:26345472,7813791,196608 -k1,24816:6434165,15893079:-26345472 -) -(1,24816:6434165,15893079:26345472,7617183,196608 -[1,24816:6630773,15893079:25952256,7420575,0 -(1,24802:6630773,8903549:25952256,431045,52847 -(1,24801:6630773,8903549:0,0,0 -g1,24801:6630773,8903549 -g1,24801:6630773,8903549 -g1,24801:6303093,8903549 -(1,24801:6303093,8903549:0,0,0 -) -g1,24801:6630773,8903549 -) -g1,24802:12605944,8903549 -k1,24802:12605944,8903549:0 -h1,24802:13269852,8903549:0,0,0 -k1,24802:32583028,8903549:19313176 -g1,24802:32583028,8903549 -) -(1,24803:6630773,9588404:25952256,431045,112852 -h1,24803:6630773,9588404:0,0,0 -g1,24803:6962727,9588404 -g1,24803:7294681,9588404 -g1,24803:12273990,9588404 -g1,24803:12937898,9588404 -k1,24803:12937898,9588404:0 -h1,24803:28871686,9588404:0,0,0 -k1,24803:32583029,9588404:3711343 -g1,24803:32583029,9588404 -) -(1,24804:6630773,10273259:25952256,431045,79822 -h1,24804:6630773,10273259:0,0,0 -g1,24804:6962727,10273259 -g1,24804:7294681,10273259 -g1,24804:7626635,10273259 -g1,24804:7958589,10273259 -g1,24804:8290543,10273259 -g1,24804:8622497,10273259 -g1,24804:8954451,10273259 -g1,24804:9286405,10273259 -g1,24804:9618359,10273259 -g1,24804:9950313,10273259 -g1,24804:10282267,10273259 -g1,24804:10614221,10273259 -g1,24804:15261576,10273259 -g1,24804:15925484,10273259 -h1,24804:17585254,10273259:0,0,0 -k1,24804:32583029,10273259:14997775 -g1,24804:32583029,10273259 -) -(1,24805:6630773,10958114:25952256,431045,79822 -h1,24805:6630773,10958114:0,0,0 -k1,24805:6630773,10958114:0 -h1,24805:14265713,10958114:0,0,0 -k1,24805:32583029,10958114:18317316 -g1,24805:32583029,10958114 -) -(1,24815:6630773,11774041:25952256,398014,8257 -(1,24807:6630773,11774041:0,0,0 -g1,24807:6630773,11774041 -g1,24807:6630773,11774041 -g1,24807:6303093,11774041 -(1,24807:6303093,11774041:0,0,0 -) -g1,24807:6630773,11774041 -) -g1,24815:7626635,11774041 -g1,24815:7958589,11774041 -g1,24815:8290543,11774041 -g1,24815:10946175,11774041 -h1,24815:12937899,11774041:0,0,0 -k1,24815:32583029,11774041:19645130 -g1,24815:32583029,11774041 -) -(1,24815:6630773,12458896:25952256,424439,9908 -h1,24815:6630773,12458896:0,0,0 -g1,24815:7626635,12458896 -g1,24815:8290543,12458896 -g1,24815:8622497,12458896 -g1,24815:8954451,12458896 -g1,24815:9286405,12458896 -g1,24815:9618359,12458896 -g1,24815:10946175,12458896 -g1,24815:11278129,12458896 -h1,24815:12937899,12458896:0,0,0 -k1,24815:32583029,12458896:19645130 -g1,24815:32583029,12458896 -) -(1,24815:6630773,13143751:25952256,424439,9908 -h1,24815:6630773,13143751:0,0,0 -g1,24815:7626635,13143751 -g1,24815:8290543,13143751 -g1,24815:8622497,13143751 -g1,24815:8954451,13143751 -g1,24815:9286405,13143751 -g1,24815:9618359,13143751 -g1,24815:10946175,13143751 -g1,24815:11278129,13143751 -h1,24815:12937899,13143751:0,0,0 -k1,24815:32583029,13143751:19645130 -g1,24815:32583029,13143751 -) -(1,24815:6630773,13828606:25952256,424439,9908 -h1,24815:6630773,13828606:0,0,0 -g1,24815:7626635,13828606 -g1,24815:8290543,13828606 -g1,24815:8622497,13828606 -g1,24815:8954451,13828606 -g1,24815:9286405,13828606 -g1,24815:9618359,13828606 -g1,24815:10946175,13828606 -g1,24815:11278129,13828606 -h1,24815:12937899,13828606:0,0,0 -k1,24815:32583029,13828606:19645130 -g1,24815:32583029,13828606 -) -(1,24815:6630773,14513461:25952256,424439,9908 -h1,24815:6630773,14513461:0,0,0 -g1,24815:7626635,14513461 -g1,24815:8290543,14513461 -g1,24815:8622497,14513461 -g1,24815:8954451,14513461 -g1,24815:9286405,14513461 -g1,24815:9618359,14513461 -g1,24815:10946175,14513461 -g1,24815:11278129,14513461 -h1,24815:12937899,14513461:0,0,0 -k1,24815:32583029,14513461:19645130 -g1,24815:32583029,14513461 -) -(1,24815:6630773,15198316:25952256,424439,9908 -h1,24815:6630773,15198316:0,0,0 -g1,24815:7626635,15198316 -g1,24815:8290543,15198316 -g1,24815:8622497,15198316 -g1,24815:8954451,15198316 -g1,24815:9286405,15198316 -g1,24815:9618359,15198316 -g1,24815:10946175,15198316 -g1,24815:11278129,15198316 -h1,24815:12937899,15198316:0,0,0 -k1,24815:32583029,15198316:19645130 -g1,24815:32583029,15198316 -) -(1,24815:6630773,15883171:25952256,424439,9908 -h1,24815:6630773,15883171:0,0,0 -g1,24815:7626635,15883171 -g1,24815:8290543,15883171 -g1,24815:8622497,15883171 -g1,24815:8954451,15883171 -g1,24815:9286405,15883171 -g1,24815:9618359,15883171 -g1,24815:10946175,15883171 -g1,24815:11278129,15883171 -h1,24815:12937899,15883171:0,0,0 -k1,24815:32583029,15883171:19645130 -g1,24815:32583029,15883171 -) -] -) -g1,24816:32583029,15893079 -g1,24816:6630773,15893079 -g1,24816:6630773,15893079 -g1,24816:32583029,15893079 -g1,24816:32583029,15893079 -) -h1,24816:6630773,16089687:0,0,0 -v1,24820:6630773,16774542:0,393216,0 -(1,24835:6630773,23303745:25952256,6922419,196608 -g1,24835:6630773,23303745 -g1,24835:6630773,23303745 -g1,24835:6434165,23303745 -(1,24835:6434165,23303745:0,6922419,196608 -r1,24874:32779637,23303745:26345472,7119027,196608 -k1,24835:6434165,23303745:-26345472 -) -(1,24835:6434165,23303745:26345472,6922419,196608 -[1,24835:6630773,23303745:25952256,6725811,0 -(1,24822:6630773,17002373:25952256,424439,106246 -(1,24821:6630773,17002373:0,0,0 -g1,24821:6630773,17002373 -g1,24821:6630773,17002373 -g1,24821:6303093,17002373 -(1,24821:6303093,17002373:0,0,0 -) -g1,24821:6630773,17002373 -) -g1,24822:12605944,17002373 -k1,24822:12605944,17002373:0 -h1,24822:13269852,17002373:0,0,0 -k1,24822:32583028,17002373:19313176 -g1,24822:32583028,17002373 -) -(1,24823:6630773,17687228:25952256,431045,112852 -h1,24823:6630773,17687228:0,0,0 -g1,24823:6962727,17687228 -g1,24823:7294681,17687228 -g1,24823:7626635,17687228 -g1,24823:7958589,17687228 -g1,24823:12605944,17687228 -g1,24823:13269852,17687228 -h1,24823:29203640,17687228:0,0,0 -k1,24823:32583029,17687228:3379389 -g1,24823:32583029,17687228 -) -(1,24824:6630773,18372083:25952256,424439,106246 -h1,24824:6630773,18372083:0,0,0 -h1,24824:12273990,18372083:0,0,0 -k1,24824:32583030,18372083:20309040 -g1,24824:32583030,18372083 -) -(1,24834:6630773,19188010:25952256,424439,6605 -(1,24826:6630773,19188010:0,0,0 -g1,24826:6630773,19188010 -g1,24826:6630773,19188010 -g1,24826:6303093,19188010 -(1,24826:6303093,19188010:0,0,0 -) -g1,24826:6630773,19188010 -) -g1,24834:7626635,19188010 -g1,24834:8290543,19188010 -g1,24834:8954451,19188010 -g1,24834:11610083,19188010 -g1,24834:12605945,19188010 -g1,24834:13269853,19188010 -h1,24834:13601807,19188010:0,0,0 -k1,24834:32583029,19188010:18981222 -g1,24834:32583029,19188010 -) -(1,24834:6630773,19872865:25952256,398014,8257 -h1,24834:6630773,19872865:0,0,0 -g1,24834:7626635,19872865 -g1,24834:7958589,19872865 -g1,24834:8290543,19872865 -g1,24834:10946175,19872865 -h1,24834:12937899,19872865:0,0,0 -k1,24834:32583029,19872865:19645130 -g1,24834:32583029,19872865 -) -(1,24834:6630773,20557720:25952256,424439,6605 -h1,24834:6630773,20557720:0,0,0 -g1,24834:7626635,20557720 -g1,24834:7958589,20557720 -g1,24834:8290543,20557720 -g1,24834:8622497,20557720 -g1,24834:8954451,20557720 -g1,24834:10946175,20557720 -k1,24834:10946175,20557720:0 -h1,24834:13933760,20557720:0,0,0 -k1,24834:32583028,20557720:18649268 -g1,24834:32583028,20557720 -) -(1,24834:6630773,21242575:25952256,424439,79822 -h1,24834:6630773,21242575:0,0,0 -g1,24834:7626635,21242575 -g1,24834:8290543,21242575 -g1,24834:8622497,21242575 -g1,24834:8954451,21242575 -g1,24834:9286405,21242575 -g1,24834:9618359,21242575 -g1,24834:10946175,21242575 -g1,24834:11610083,21242575 -h1,24834:13933761,21242575:0,0,0 -k1,24834:32583029,21242575:18649268 -g1,24834:32583029,21242575 -) -(1,24834:6630773,21927430:25952256,424439,79822 -h1,24834:6630773,21927430:0,0,0 -g1,24834:7626635,21927430 -g1,24834:8290543,21927430 -g1,24834:8622497,21927430 -g1,24834:8954451,21927430 -g1,24834:9286405,21927430 -g1,24834:9618359,21927430 -g1,24834:10946175,21927430 -g1,24834:11610083,21927430 -h1,24834:13933761,21927430:0,0,0 -k1,24834:32583029,21927430:18649268 -g1,24834:32583029,21927430 -) -(1,24834:6630773,22612285:25952256,424439,79822 -h1,24834:6630773,22612285:0,0,0 -g1,24834:7626635,22612285 -g1,24834:8290543,22612285 -g1,24834:8622497,22612285 -g1,24834:8954451,22612285 -g1,24834:9286405,22612285 -g1,24834:9618359,22612285 -g1,24834:10282267,22612285 -g1,24834:10614221,22612285 -g1,24834:10946175,22612285 -g1,24834:11610083,22612285 -h1,24834:13933761,22612285:0,0,0 -k1,24834:32583029,22612285:18649268 -g1,24834:32583029,22612285 -) -(1,24834:6630773,23297140:25952256,424439,6605 -h1,24834:6630773,23297140:0,0,0 -g1,24834:7626635,23297140 -g1,24834:8290543,23297140 -g1,24834:8954451,23297140 -g1,24834:9950313,23297140 -g1,24834:11610083,23297140 -h1,24834:12937899,23297140:0,0,0 -k1,24834:32583029,23297140:19645130 -g1,24834:32583029,23297140 -) -] -) -g1,24835:32583029,23303745 -g1,24835:6630773,23303745 -g1,24835:6630773,23303745 -g1,24835:32583029,23303745 -g1,24835:32583029,23303745 -) -h1,24835:6630773,23500353:0,0,0 -(1,24839:6630773,24365433:25952256,513147,134348 -h1,24838:6630773,24365433:983040,0,0 -k1,24838:8406045,24365433:164397 -k1,24838:9773683,24365433:164397 -k1,24838:12599498,24365433:164398 -k1,24838:13632247,24365433:164397 -k1,24838:14889129,24365433:164397 -k1,24838:15409386,24365433:164397 -k1,24838:19469243,24365433:164397 -k1,24838:22047952,24365433:164363 -k1,24838:23195389,24365433:164397 -k1,24838:24019078,24365433:164397 -k1,24838:27297747,24365433:164398 -k1,24838:29530460,24365433:164397 -k1,24838:30642508,24365433:164397 -k1,24839:32583029,24365433:0 -) -(1,24839:6630773,25230513:25952256,513147,126483 -k1,24838:7885371,25230513:235513 -k1,24838:14176410,25230513:235512 -k1,24838:15979544,25230513:235513 -k1,24838:18386920,25230513:235513 -k1,24838:19641518,25230513:235513 -k1,24838:21530503,25230513:235512 -k1,24838:23279242,25230513:235513 -k1,24838:25370079,25230513:235513 -k1,24838:26221630,25230513:235513 -k1,24838:27476227,25230513:235512 -k1,24838:29869184,25230513:235513 -k1,24838:32583029,25230513:0 -) -(1,24839:6630773,26095593:25952256,513147,134348 -k1,24838:8217130,26095593:227140 -k1,24838:8975767,26095593:227140 -k1,24838:9558767,26095593:227140 -k1,24838:13383178,26095593:227140 -k1,24838:15181216,26095593:227140 -k1,24838:16391396,26095593:227140 -k1,24838:17231298,26095593:227140 -k1,24838:18653815,26095593:227140 -k1,24838:19917734,26095593:227139 -k1,24838:20772709,26095593:227140 -k1,24838:22203090,26095593:227140 -k1,24838:23970981,26095593:227140 -k1,24838:24656218,26095593:227140 -k1,24838:25414855,26095593:227140 -k1,24838:26451365,26095593:227140 -k1,24838:29308465,26095593:227140 -k1,24838:30187033,26095593:227140 -k1,24838:32583029,26095593:0 -) -(1,24839:6630773,26960673:25952256,513147,126483 -k1,24838:8396823,26960673:188598 -k1,24838:9604507,26960673:188599 -k1,24838:13299281,26960673:188598 -k1,24838:14139307,26960673:188598 -k1,24838:15346991,26960673:188599 -k1,24838:17949925,26960673:188588 -k1,24838:19295233,26960673:188598 -k1,24838:20675276,26960673:188598 -k1,24838:21321972,26960673:188599 -k1,24838:22611575,26960673:188598 -k1,24838:23451602,26960673:188599 -k1,24838:24387966,26960673:188598 -k1,24838:28645694,26960673:188598 -k1,24838:30030980,26960673:188599 -(1,24838:30030980,26960673:0,459977,115847 -r1,24874:30740958,26960673:709978,575824,115847 -k1,24838:30030980,26960673:-709978 -) -(1,24838:30030980,26960673:709978,459977,115847 -k1,24838:30030980,26960673:3277 -h1,24838:30737681,26960673:0,411205,112570 -) -k1,24838:30929556,26960673:188598 -k1,24839:32583029,26960673:0 -) -(1,24839:6630773,27825753:25952256,513147,134348 -k1,24838:8513665,27825753:243837 -k1,24838:11230832,27825753:243838 -k1,24838:12759175,27825753:243837 -k1,24838:14022098,27825753:243838 -k1,24838:15248975,27825753:243837 -k1,24838:16024310,27825753:243838 -k1,24838:20163607,27825753:243837 -k1,24838:21783046,27825753:243838 -k1,24838:22492844,27825753:243837 -k1,24838:23755767,27825753:243838 -k1,24838:25493825,27825753:243837 -k1,24838:27247613,27825753:243838 -k1,24838:28022947,27825753:243837 -k1,24838:30738803,27825753:243838 -k1,24838:31841162,27825753:243837 -k1,24839:32583029,27825753:0 -) -(1,24839:6630773,28690833:25952256,513147,134348 -k1,24838:8460387,28690833:184005 -k1,24838:9663477,28690833:184005 -k1,24838:11341702,28690833:184004 -k1,24838:13035657,28690833:184005 -k1,24838:15358102,28690833:184005 -k1,24838:17466899,28690833:184005 -k1,24838:18669988,28690833:184004 -k1,24838:21345016,28690833:184005 -k1,24838:23066496,28690833:184005 -k1,24838:24855478,28690833:184005 -k1,24838:29108612,28690833:184004 -k1,24838:30311702,28690833:184005 -k1,24838:31478747,28690833:184005 -k1,24838:32583029,28690833:0 -) -(1,24839:6630773,29555913:25952256,505283,134348 -g1,24838:7577768,29555913 -g1,24838:10122531,29555913 -g1,24838:11007922,29555913 -g1,24838:11823189,29555913 -g1,24838:14301105,29555913 -h1,24838:16068611,29555913:0,0,0 -g1,24838:16267840,29555913 -g1,24838:17276439,29555913 -g1,24838:18973821,29555913 -h1,24838:20169198,29555913:0,0,0 -k1,24839:32583029,29555913:12361403 -g1,24839:32583029,29555913 -) -v1,24841:6630773,30240768:0,393216,0 -(1,24853:6630773,36060291:25952256,6212739,196608 -g1,24853:6630773,36060291 -g1,24853:6630773,36060291 -g1,24853:6434165,36060291 -(1,24853:6434165,36060291:0,6212739,196608 -r1,24874:32779637,36060291:26345472,6409347,196608 -k1,24853:6434165,36060291:-26345472 -) -(1,24853:6434165,36060291:26345472,6212739,196608 -[1,24853:6630773,36060291:25952256,6016131,0 -(1,24843:6630773,30475205:25952256,431045,106246 -(1,24842:6630773,30475205:0,0,0 -g1,24842:6630773,30475205 -g1,24842:6630773,30475205 -g1,24842:6303093,30475205 -(1,24842:6303093,30475205:0,0,0 -) -g1,24842:6630773,30475205 -) -k1,24843:6630773,30475205:0 -g1,24843:7626635,30475205 -g1,24843:23228469,30475205 -h1,24843:23560423,30475205:0,0,0 -k1,24843:32583029,30475205:9022606 -g1,24843:32583029,30475205 -) -(1,24844:6630773,31160060:25952256,431045,112852 -h1,24844:6630773,31160060:0,0,0 -g1,24844:6962727,31160060 -g1,24844:7294681,31160060 -g1,24844:9618359,31160060 -g1,24844:10614221,31160060 -k1,24844:10614221,31160060:0 -h1,24844:32191227,31160060:0,0,0 -k1,24844:32583029,31160060:391802 -g1,24844:32583029,31160060 -) -(1,24845:6630773,31844915:25952256,431045,112852 -h1,24845:6630773,31844915:0,0,0 -g1,24845:6962727,31844915 -g1,24845:7294681,31844915 -g1,24845:7626635,31844915 -g1,24845:7958589,31844915 -g1,24845:8290543,31844915 -g1,24845:8622497,31844915 -g1,24845:8954451,31844915 -g1,24845:9286405,31844915 -g1,24845:9618359,31844915 -g1,24845:9950313,31844915 -g1,24845:10282267,31844915 -g1,24845:10614221,31844915 -g1,24845:10946175,31844915 -g1,24845:11278129,31844915 -g1,24845:11610083,31844915 -g1,24845:11942037,31844915 -g1,24845:12273991,31844915 -g1,24845:12605945,31844915 -k1,24845:12605945,31844915:0 -h1,24845:24888240,31844915:0,0,0 -k1,24845:32583029,31844915:7694789 -g1,24845:32583029,31844915 -) -(1,24846:6630773,32529770:25952256,424439,106246 -h1,24846:6630773,32529770:0,0,0 -g1,24846:6962727,32529770 -g1,24846:7294681,32529770 -g1,24846:7626635,32529770 -g1,24846:7958589,32529770 -g1,24846:8290543,32529770 -g1,24846:8622497,32529770 -g1,24846:8954451,32529770 -g1,24846:9286405,32529770 -g1,24846:9618359,32529770 -g1,24846:9950313,32529770 -g1,24846:10282267,32529770 -g1,24846:10614221,32529770 -g1,24846:10946175,32529770 -g1,24846:11278129,32529770 -g1,24846:11610083,32529770 -g1,24846:11942037,32529770 -g1,24846:12273991,32529770 -g1,24846:12605945,32529770 -g1,24846:13933761,32529770 -g1,24846:14597669,32529770 -h1,24846:15593531,32529770:0,0,0 -k1,24846:32583029,32529770:16989498 -g1,24846:32583029,32529770 -) -(1,24847:6630773,33214625:25952256,431045,106246 -h1,24847:6630773,33214625:0,0,0 -g1,24847:6962727,33214625 -g1,24847:7294681,33214625 -k1,24847:7294681,33214625:0 -h1,24847:14265714,33214625:0,0,0 -k1,24847:32583030,33214625:18317316 -g1,24847:32583030,33214625 -) -(1,24848:6630773,33899480:25952256,424439,86428 -h1,24848:6630773,33899480:0,0,0 -g1,24848:6962727,33899480 -g1,24848:7294681,33899480 -g1,24848:7626635,33899480 -g1,24848:7958589,33899480 -g1,24848:8290543,33899480 -g1,24848:8622497,33899480 -g1,24848:8954451,33899480 -g1,24848:9286405,33899480 -g1,24848:9618359,33899480 -g1,24848:9950313,33899480 -g1,24848:10282267,33899480 -g1,24848:10614221,33899480 -g1,24848:10946175,33899480 -g1,24848:11278129,33899480 -g1,24848:11610083,33899480 -g1,24848:11942037,33899480 -g1,24848:13601807,33899480 -g1,24848:14265715,33899480 -k1,24848:14265715,33899480:0 -h1,24848:15925485,33899480:0,0,0 -k1,24848:32583029,33899480:16657544 -g1,24848:32583029,33899480 -) -(1,24849:6630773,34584335:25952256,431045,106246 -h1,24849:6630773,34584335:0,0,0 -g1,24849:6962727,34584335 -g1,24849:7294681,34584335 -g1,24849:7626635,34584335 -g1,24849:7958589,34584335 -g1,24849:8290543,34584335 -g1,24849:8622497,34584335 -g1,24849:8954451,34584335 -g1,24849:9286405,34584335 -g1,24849:9618359,34584335 -g1,24849:9950313,34584335 -g1,24849:10282267,34584335 -g1,24849:10614221,34584335 -g1,24849:10946175,34584335 -g1,24849:11278129,34584335 -g1,24849:11610083,34584335 -g1,24849:11942037,34584335 -g1,24849:14929622,34584335 -g1,24849:15593530,34584335 -h1,24849:25884101,34584335:0,0,0 -k1,24849:32583029,34584335:6698928 -g1,24849:32583029,34584335 -) -(1,24850:6630773,35269190:25952256,424439,79822 -h1,24850:6630773,35269190:0,0,0 -h1,24850:6962727,35269190:0,0,0 -k1,24850:32583029,35269190:25620302 -g1,24850:32583029,35269190 -) -(1,24851:6630773,35954045:25952256,431045,106246 -h1,24851:6630773,35954045:0,0,0 -g1,24851:10282266,35954045 -g1,24851:11278128,35954045 -k1,24851:11278128,35954045:0 -h1,24851:24224331,35954045:0,0,0 -k1,24851:32583029,35954045:8358698 -g1,24851:32583029,35954045 -) -] -) -g1,24853:32583029,36060291 -g1,24853:6630773,36060291 -g1,24853:6630773,36060291 -g1,24853:32583029,36060291 -g1,24853:32583029,36060291 -) -h1,24853:6630773,36256899:0,0,0 -v1,24857:6630773,37121979:0,393216,0 -(1,24858:6630773,38474719:25952256,1745956,0 -g1,24858:6630773,38474719 -g1,24858:6237557,38474719 -r1,24874:6368629,38474719:131072,1745956,0 -g1,24858:6567858,38474719 -g1,24858:6764466,38474719 -[1,24858:6764466,38474719:25818563,1745956,0 -(1,24858:6764466,37483156:25818563,754393,260573 -(1,24857:6764466,37483156:0,754393,260573 -r1,24874:7856192,37483156:1091726,1014966,260573 -k1,24857:6764466,37483156:-1091726 -) -(1,24857:6764466,37483156:1091726,754393,260573 -) -k1,24857:8086950,37483156:230758 -k1,24857:8414630,37483156:327680 -k1,24857:9687411,37483156:230759 -k1,24857:13434176,37483156:230758 -k1,24857:16055001,37483156:230727 -k1,24857:17599101,37483156:230758 -k1,24857:20010243,37483156:230759 -k1,24857:20988767,37483156:230758 -k1,24857:25114986,37483156:230759 -k1,24857:25961782,37483156:230758 -k1,24857:28214327,37483156:230759 -k1,24857:30401335,37483156:230758 -k1,24858:32583029,37483156:0 -) -(1,24858:6764466,38348236:25818563,505283,126483 -(1,24857:6764466,38348236:0,452978,115847 -r1,24874:10639850,38348236:3875384,568825,115847 -k1,24857:6764466,38348236:-3875384 -) -(1,24857:6764466,38348236:3875384,452978,115847 -g1,24857:8526302,38348236 -g1,24857:9229726,38348236 -h1,24857:10636573,38348236:0,411205,112570 -) -g1,24857:11012749,38348236 -g1,24857:13097449,38348236 -g1,24857:13828175,38348236 -g1,24857:16739939,38348236 -g1,24857:18825294,38348236 -k1,24858:32583029,38348236:9765283 -g1,24858:32583029,38348236 -) -] -g1,24858:32583029,38474719 -) -h1,24858:6630773,38474719:0,0,0 -v1,24862:6630773,39339799:0,393216,0 -(1,24863:6630773,41565484:25952256,2618901,0 -g1,24863:6630773,41565484 -g1,24863:6237557,41565484 -r1,24874:6368629,41565484:131072,2618901,0 -g1,24863:6567858,41565484 -g1,24863:6764466,41565484 -[1,24863:6764466,41565484:25818563,2618901,0 -(1,24863:6764466,39700976:25818563,754393,260573 -(1,24862:6764466,39700976:0,754393,260573 -r1,24874:7856192,39700976:1091726,1014966,260573 -k1,24862:6764466,39700976:-1091726 -) -(1,24862:6764466,39700976:1091726,754393,260573 -) -k1,24862:8001900,39700976:145708 -k1,24862:8329580,39700976:327680 -k1,24862:10192330,39700976:145707 -k1,24862:12752331,39700976:145655 -k1,24862:13881078,39700976:145707 -k1,24862:16315959,39700976:145708 -k1,24862:18988080,39700976:145708 -k1,24862:20152872,39700976:145707 -k1,24862:23389205,39700976:145655 -k1,24862:26396869,39700976:145707 -k1,24862:27170412,39700976:145708 -k1,24862:29012847,39700976:145708 -k1,24862:31447727,39700976:145707 -k1,24862:32051532,39700976:145708 -k1,24862:32583029,39700976:0 -) -(1,24863:6764466,40566056:25818563,513147,126483 -k1,24862:9582701,40566056:188275 -k1,24862:10422405,40566056:188276 -k1,24862:12188132,40566056:188275 -k1,24862:13395493,40566056:188276 -k1,24862:14897110,40566056:188275 -k1,24862:18079726,40566056:188276 -k1,24862:19459446,40566056:188275 -k1,24862:21023322,40566056:188275 -k1,24862:24338976,40566056:188276 -k1,24862:24883111,40566056:188275 -k1,24862:26393248,40566056:188276 -k1,24862:27240815,40566056:188275 -k1,24862:28448176,40566056:188276 -k1,24862:29793161,40566056:188275 -k1,24863:32583029,40566056:0 -) -(1,24863:6764466,41431136:25818563,513147,134348 -(1,24862:6764466,41431136:0,452978,115847 -r1,24874:9936426,41431136:3171960,568825,115847 -k1,24862:6764466,41431136:-3171960 -) -(1,24862:6764466,41431136:3171960,452978,115847 -k1,24862:6764466,41431136:3277 -h1,24862:9933149,41431136:0,411205,112570 -) -g1,24862:10135655,41431136 -g1,24862:11902505,41431136 -g1,24862:14681886,41431136 -g1,24862:18033396,41431136 -g1,24862:22529165,41431136 -g1,24862:25585108,41431136 -g1,24862:28875015,41431136 -k1,24863:32583029,41431136:2044055 -g1,24863:32583029,41431136 -) -] -g1,24863:32583029,41565484 -) -h1,24863:6630773,41565484:0,0,0 -] -(1,24874:32583029,45706769:0,0,0 -g1,24874:32583029,45706769 -) -) -] -(1,24874:6630773,47279633:25952256,0,0 -h1,24874:6630773,47279633:25952256,0,0 -) -] -(1,24874:4262630,4025873:0,0,0 -[1,24874:-473656,4025873:0,0,0 -(1,24874:-473656,-710413:0,0,0 -(1,24874:-473656,-710413:0,0,0 -g1,24874:-473656,-710413 -) -g1,24874:-473656,-710413 +[1,24872:3078558,4812305:0,0,0 +(1,24872:3078558,49800853:0,16384,2228224 +g1,24872:29030814,49800853 +g1,24872:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24872:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24872:37855564,49800853:1179648,16384,0 +) +) +k1,24872:3078556,49800853:-34777008 +) +] +g1,24872:6630773,4812305 +g1,24872:6630773,4812305 +g1,24872:9731936,4812305 +g1,24872:12361240,4812305 +g1,24872:14094667,4812305 +k1,24872:31387651,4812305:17292984 +) +) +] +[1,24872:6630773,45706769:25952256,40108032,0 +(1,24872:6630773,45706769:25952256,40108032,0 +(1,24872:6630773,45706769:0,0,0 +g1,24872:6630773,45706769 +) +[1,24872:6630773,45706769:25952256,40108032,0 +(1,24796:6630773,6254097:25952256,513147,134348 +h1,24795:6630773,6254097:983040,0,0 +k1,24795:10873192,6254097:139210 +k1,24795:11628439,6254097:139209 +k1,24795:14347801,6254097:139210 +k1,24795:17288019,6254097:139210 +k1,24795:18113390,6254097:139209 +k1,24795:19531207,6254097:139210 +k1,24795:20356579,6254097:139210 +k1,24795:22239701,6254097:139209 +k1,24795:22994949,6254097:139210 +k1,24795:25714311,6254097:139210 +k1,24795:28253447,6254097:139209 +k1,24795:30919070,6254097:139210 +k1,24795:32583029,6254097:0 +) +(1,24796:6630773,7119177:25952256,513147,134348 +k1,24795:7885435,7119177:204775 +k1,24795:10368896,7119177:204774 +h1,24795:12136402,7119177:0,0,0 +k1,24795:12341177,7119177:204775 +k1,24795:13355321,7119177:204774 +k1,24795:15058249,7119177:204775 +h1,24795:16253626,7119177:0,0,0 +k1,24795:16458401,7119177:204775 +k1,24795:17610826,7119177:204774 +k1,24795:19465798,7119177:204775 +k1,24795:23477559,7119177:204775 +k1,24795:25504889,7119177:204774 +k1,24795:28881607,7119177:204775 +k1,24795:30289622,7119177:204774 +k1,24795:31923737,7119177:204775 +k1,24795:32583029,7119177:0 +) +(1,24796:6630773,7984257:25952256,505283,7863 +g1,24795:8219365,7984257 +g1,24795:9686060,7984257 +k1,24796:32583029,7984257:22429698 +g1,24796:32583029,7984257 +) +v1,24798:6630773,8669112:0,393216,0 +(1,24814:6630773,15893079:25952256,7617183,196608 +g1,24814:6630773,15893079 +g1,24814:6630773,15893079 +g1,24814:6434165,15893079 +(1,24814:6434165,15893079:0,7617183,196608 +r1,24872:32779637,15893079:26345472,7813791,196608 +k1,24814:6434165,15893079:-26345472 +) +(1,24814:6434165,15893079:26345472,7617183,196608 +[1,24814:6630773,15893079:25952256,7420575,0 +(1,24800:6630773,8903549:25952256,431045,52847 +(1,24799:6630773,8903549:0,0,0 +g1,24799:6630773,8903549 +g1,24799:6630773,8903549 +g1,24799:6303093,8903549 +(1,24799:6303093,8903549:0,0,0 +) +g1,24799:6630773,8903549 +) +g1,24800:12605944,8903549 +k1,24800:12605944,8903549:0 +h1,24800:13269852,8903549:0,0,0 +k1,24800:32583028,8903549:19313176 +g1,24800:32583028,8903549 +) +(1,24801:6630773,9588404:25952256,431045,112852 +h1,24801:6630773,9588404:0,0,0 +g1,24801:6962727,9588404 +g1,24801:7294681,9588404 +g1,24801:12273990,9588404 +g1,24801:12937898,9588404 +k1,24801:12937898,9588404:0 +h1,24801:28871686,9588404:0,0,0 +k1,24801:32583029,9588404:3711343 +g1,24801:32583029,9588404 +) +(1,24802:6630773,10273259:25952256,431045,79822 +h1,24802:6630773,10273259:0,0,0 +g1,24802:6962727,10273259 +g1,24802:7294681,10273259 +g1,24802:7626635,10273259 +g1,24802:7958589,10273259 +g1,24802:8290543,10273259 +g1,24802:8622497,10273259 +g1,24802:8954451,10273259 +g1,24802:9286405,10273259 +g1,24802:9618359,10273259 +g1,24802:9950313,10273259 +g1,24802:10282267,10273259 +g1,24802:10614221,10273259 +g1,24802:15261576,10273259 +g1,24802:15925484,10273259 +h1,24802:17585254,10273259:0,0,0 +k1,24802:32583029,10273259:14997775 +g1,24802:32583029,10273259 +) +(1,24803:6630773,10958114:25952256,431045,79822 +h1,24803:6630773,10958114:0,0,0 +k1,24803:6630773,10958114:0 +h1,24803:14265713,10958114:0,0,0 +k1,24803:32583029,10958114:18317316 +g1,24803:32583029,10958114 +) +(1,24813:6630773,11774041:25952256,398014,8257 +(1,24805:6630773,11774041:0,0,0 +g1,24805:6630773,11774041 +g1,24805:6630773,11774041 +g1,24805:6303093,11774041 +(1,24805:6303093,11774041:0,0,0 +) +g1,24805:6630773,11774041 +) +g1,24813:7626635,11774041 +g1,24813:7958589,11774041 +g1,24813:8290543,11774041 +g1,24813:10946175,11774041 +h1,24813:12937899,11774041:0,0,0 +k1,24813:32583029,11774041:19645130 +g1,24813:32583029,11774041 +) +(1,24813:6630773,12458896:25952256,424439,9908 +h1,24813:6630773,12458896:0,0,0 +g1,24813:7626635,12458896 +g1,24813:8290543,12458896 +g1,24813:8622497,12458896 +g1,24813:8954451,12458896 +g1,24813:9286405,12458896 +g1,24813:9618359,12458896 +g1,24813:10946175,12458896 +g1,24813:11278129,12458896 +h1,24813:12937899,12458896:0,0,0 +k1,24813:32583029,12458896:19645130 +g1,24813:32583029,12458896 +) +(1,24813:6630773,13143751:25952256,424439,9908 +h1,24813:6630773,13143751:0,0,0 +g1,24813:7626635,13143751 +g1,24813:8290543,13143751 +g1,24813:8622497,13143751 +g1,24813:8954451,13143751 +g1,24813:9286405,13143751 +g1,24813:9618359,13143751 +g1,24813:10946175,13143751 +g1,24813:11278129,13143751 +h1,24813:12937899,13143751:0,0,0 +k1,24813:32583029,13143751:19645130 +g1,24813:32583029,13143751 +) +(1,24813:6630773,13828606:25952256,424439,9908 +h1,24813:6630773,13828606:0,0,0 +g1,24813:7626635,13828606 +g1,24813:8290543,13828606 +g1,24813:8622497,13828606 +g1,24813:8954451,13828606 +g1,24813:9286405,13828606 +g1,24813:9618359,13828606 +g1,24813:10946175,13828606 +g1,24813:11278129,13828606 +h1,24813:12937899,13828606:0,0,0 +k1,24813:32583029,13828606:19645130 +g1,24813:32583029,13828606 +) +(1,24813:6630773,14513461:25952256,424439,9908 +h1,24813:6630773,14513461:0,0,0 +g1,24813:7626635,14513461 +g1,24813:8290543,14513461 +g1,24813:8622497,14513461 +g1,24813:8954451,14513461 +g1,24813:9286405,14513461 +g1,24813:9618359,14513461 +g1,24813:10946175,14513461 +g1,24813:11278129,14513461 +h1,24813:12937899,14513461:0,0,0 +k1,24813:32583029,14513461:19645130 +g1,24813:32583029,14513461 +) +(1,24813:6630773,15198316:25952256,424439,9908 +h1,24813:6630773,15198316:0,0,0 +g1,24813:7626635,15198316 +g1,24813:8290543,15198316 +g1,24813:8622497,15198316 +g1,24813:8954451,15198316 +g1,24813:9286405,15198316 +g1,24813:9618359,15198316 +g1,24813:10946175,15198316 +g1,24813:11278129,15198316 +h1,24813:12937899,15198316:0,0,0 +k1,24813:32583029,15198316:19645130 +g1,24813:32583029,15198316 +) +(1,24813:6630773,15883171:25952256,424439,9908 +h1,24813:6630773,15883171:0,0,0 +g1,24813:7626635,15883171 +g1,24813:8290543,15883171 +g1,24813:8622497,15883171 +g1,24813:8954451,15883171 +g1,24813:9286405,15883171 +g1,24813:9618359,15883171 +g1,24813:10946175,15883171 +g1,24813:11278129,15883171 +h1,24813:12937899,15883171:0,0,0 +k1,24813:32583029,15883171:19645130 +g1,24813:32583029,15883171 +) +] +) +g1,24814:32583029,15893079 +g1,24814:6630773,15893079 +g1,24814:6630773,15893079 +g1,24814:32583029,15893079 +g1,24814:32583029,15893079 +) +h1,24814:6630773,16089687:0,0,0 +v1,24818:6630773,16774542:0,393216,0 +(1,24833:6630773,23303745:25952256,6922419,196608 +g1,24833:6630773,23303745 +g1,24833:6630773,23303745 +g1,24833:6434165,23303745 +(1,24833:6434165,23303745:0,6922419,196608 +r1,24872:32779637,23303745:26345472,7119027,196608 +k1,24833:6434165,23303745:-26345472 +) +(1,24833:6434165,23303745:26345472,6922419,196608 +[1,24833:6630773,23303745:25952256,6725811,0 +(1,24820:6630773,17002373:25952256,424439,106246 +(1,24819:6630773,17002373:0,0,0 +g1,24819:6630773,17002373 +g1,24819:6630773,17002373 +g1,24819:6303093,17002373 +(1,24819:6303093,17002373:0,0,0 +) +g1,24819:6630773,17002373 +) +g1,24820:12605944,17002373 +k1,24820:12605944,17002373:0 +h1,24820:13269852,17002373:0,0,0 +k1,24820:32583028,17002373:19313176 +g1,24820:32583028,17002373 +) +(1,24821:6630773,17687228:25952256,431045,112852 +h1,24821:6630773,17687228:0,0,0 +g1,24821:6962727,17687228 +g1,24821:7294681,17687228 +g1,24821:7626635,17687228 +g1,24821:7958589,17687228 +g1,24821:12605944,17687228 +g1,24821:13269852,17687228 +h1,24821:29203640,17687228:0,0,0 +k1,24821:32583029,17687228:3379389 +g1,24821:32583029,17687228 +) +(1,24822:6630773,18372083:25952256,424439,106246 +h1,24822:6630773,18372083:0,0,0 +h1,24822:12273990,18372083:0,0,0 +k1,24822:32583030,18372083:20309040 +g1,24822:32583030,18372083 +) +(1,24832:6630773,19188010:25952256,424439,6605 +(1,24824:6630773,19188010:0,0,0 +g1,24824:6630773,19188010 +g1,24824:6630773,19188010 +g1,24824:6303093,19188010 +(1,24824:6303093,19188010:0,0,0 +) +g1,24824:6630773,19188010 +) +g1,24832:7626635,19188010 +g1,24832:8290543,19188010 +g1,24832:8954451,19188010 +g1,24832:11610083,19188010 +g1,24832:12605945,19188010 +g1,24832:13269853,19188010 +h1,24832:13601807,19188010:0,0,0 +k1,24832:32583029,19188010:18981222 +g1,24832:32583029,19188010 +) +(1,24832:6630773,19872865:25952256,398014,8257 +h1,24832:6630773,19872865:0,0,0 +g1,24832:7626635,19872865 +g1,24832:7958589,19872865 +g1,24832:8290543,19872865 +g1,24832:10946175,19872865 +h1,24832:12937899,19872865:0,0,0 +k1,24832:32583029,19872865:19645130 +g1,24832:32583029,19872865 +) +(1,24832:6630773,20557720:25952256,424439,6605 +h1,24832:6630773,20557720:0,0,0 +g1,24832:7626635,20557720 +g1,24832:7958589,20557720 +g1,24832:8290543,20557720 +g1,24832:8622497,20557720 +g1,24832:8954451,20557720 +g1,24832:10946175,20557720 +k1,24832:10946175,20557720:0 +h1,24832:13933760,20557720:0,0,0 +k1,24832:32583028,20557720:18649268 +g1,24832:32583028,20557720 +) +(1,24832:6630773,21242575:25952256,424439,79822 +h1,24832:6630773,21242575:0,0,0 +g1,24832:7626635,21242575 +g1,24832:8290543,21242575 +g1,24832:8622497,21242575 +g1,24832:8954451,21242575 +g1,24832:9286405,21242575 +g1,24832:9618359,21242575 +g1,24832:10946175,21242575 +g1,24832:11610083,21242575 +h1,24832:13933761,21242575:0,0,0 +k1,24832:32583029,21242575:18649268 +g1,24832:32583029,21242575 +) +(1,24832:6630773,21927430:25952256,424439,79822 +h1,24832:6630773,21927430:0,0,0 +g1,24832:7626635,21927430 +g1,24832:8290543,21927430 +g1,24832:8622497,21927430 +g1,24832:8954451,21927430 +g1,24832:9286405,21927430 +g1,24832:9618359,21927430 +g1,24832:10946175,21927430 +g1,24832:11610083,21927430 +h1,24832:13933761,21927430:0,0,0 +k1,24832:32583029,21927430:18649268 +g1,24832:32583029,21927430 +) +(1,24832:6630773,22612285:25952256,424439,79822 +h1,24832:6630773,22612285:0,0,0 +g1,24832:7626635,22612285 +g1,24832:8290543,22612285 +g1,24832:8622497,22612285 +g1,24832:8954451,22612285 +g1,24832:9286405,22612285 +g1,24832:9618359,22612285 +g1,24832:10282267,22612285 +g1,24832:10614221,22612285 +g1,24832:10946175,22612285 +g1,24832:11610083,22612285 +h1,24832:13933761,22612285:0,0,0 +k1,24832:32583029,22612285:18649268 +g1,24832:32583029,22612285 +) +(1,24832:6630773,23297140:25952256,424439,6605 +h1,24832:6630773,23297140:0,0,0 +g1,24832:7626635,23297140 +g1,24832:8290543,23297140 +g1,24832:8954451,23297140 +g1,24832:9950313,23297140 +g1,24832:11610083,23297140 +h1,24832:12937899,23297140:0,0,0 +k1,24832:32583029,23297140:19645130 +g1,24832:32583029,23297140 +) +] +) +g1,24833:32583029,23303745 +g1,24833:6630773,23303745 +g1,24833:6630773,23303745 +g1,24833:32583029,23303745 +g1,24833:32583029,23303745 +) +h1,24833:6630773,23500353:0,0,0 +(1,24837:6630773,24365433:25952256,513147,134348 +h1,24836:6630773,24365433:983040,0,0 +k1,24836:8406045,24365433:164397 +k1,24836:9773683,24365433:164397 +k1,24836:12599498,24365433:164398 +k1,24836:13632247,24365433:164397 +k1,24836:14889129,24365433:164397 +k1,24836:15409386,24365433:164397 +k1,24836:19469243,24365433:164397 +k1,24836:22047952,24365433:164363 +k1,24836:23195389,24365433:164397 +k1,24836:24019078,24365433:164397 +k1,24836:27297747,24365433:164398 +k1,24836:29530460,24365433:164397 +k1,24836:30642508,24365433:164397 +k1,24837:32583029,24365433:0 +) +(1,24837:6630773,25230513:25952256,513147,126483 +k1,24836:7885371,25230513:235513 +k1,24836:14176410,25230513:235512 +k1,24836:15979544,25230513:235513 +k1,24836:18386920,25230513:235513 +k1,24836:19641518,25230513:235513 +k1,24836:21530503,25230513:235512 +k1,24836:23279242,25230513:235513 +k1,24836:25370079,25230513:235513 +k1,24836:26221630,25230513:235513 +k1,24836:27476227,25230513:235512 +k1,24836:29869184,25230513:235513 +k1,24836:32583029,25230513:0 +) +(1,24837:6630773,26095593:25952256,513147,134348 +k1,24836:8217130,26095593:227140 +k1,24836:8975767,26095593:227140 +k1,24836:9558767,26095593:227140 +k1,24836:13383178,26095593:227140 +k1,24836:15181216,26095593:227140 +k1,24836:16391396,26095593:227140 +k1,24836:17231298,26095593:227140 +k1,24836:18653815,26095593:227140 +k1,24836:19917734,26095593:227139 +k1,24836:20772709,26095593:227140 +k1,24836:22203090,26095593:227140 +k1,24836:23970981,26095593:227140 +k1,24836:24656218,26095593:227140 +k1,24836:25414855,26095593:227140 +k1,24836:26451365,26095593:227140 +k1,24836:29308465,26095593:227140 +k1,24836:30187033,26095593:227140 +k1,24836:32583029,26095593:0 +) +(1,24837:6630773,26960673:25952256,513147,126483 +k1,24836:8396823,26960673:188598 +k1,24836:9604507,26960673:188599 +k1,24836:13299281,26960673:188598 +k1,24836:14139307,26960673:188598 +k1,24836:15346991,26960673:188599 +k1,24836:17949925,26960673:188588 +k1,24836:19295233,26960673:188598 +k1,24836:20675276,26960673:188598 +k1,24836:21321972,26960673:188599 +k1,24836:22611575,26960673:188598 +k1,24836:23451602,26960673:188599 +k1,24836:24387966,26960673:188598 +k1,24836:28645694,26960673:188598 +k1,24836:30030980,26960673:188599 +(1,24836:30030980,26960673:0,459977,115847 +r1,24872:30740958,26960673:709978,575824,115847 +k1,24836:30030980,26960673:-709978 +) +(1,24836:30030980,26960673:709978,459977,115847 +k1,24836:30030980,26960673:3277 +h1,24836:30737681,26960673:0,411205,112570 +) +k1,24836:30929556,26960673:188598 +k1,24837:32583029,26960673:0 +) +(1,24837:6630773,27825753:25952256,513147,134348 +k1,24836:8513665,27825753:243837 +k1,24836:11230832,27825753:243838 +k1,24836:12759175,27825753:243837 +k1,24836:14022098,27825753:243838 +k1,24836:15248975,27825753:243837 +k1,24836:16024310,27825753:243838 +k1,24836:20163607,27825753:243837 +k1,24836:21783046,27825753:243838 +k1,24836:22492844,27825753:243837 +k1,24836:23755767,27825753:243838 +k1,24836:25493825,27825753:243837 +k1,24836:27247613,27825753:243838 +k1,24836:28022947,27825753:243837 +k1,24836:30738803,27825753:243838 +k1,24836:31841162,27825753:243837 +k1,24837:32583029,27825753:0 +) +(1,24837:6630773,28690833:25952256,513147,134348 +k1,24836:8460387,28690833:184005 +k1,24836:9663477,28690833:184005 +k1,24836:11341702,28690833:184004 +k1,24836:13035657,28690833:184005 +k1,24836:15358102,28690833:184005 +k1,24836:17466899,28690833:184005 +k1,24836:18669988,28690833:184004 +k1,24836:21345016,28690833:184005 +k1,24836:23066496,28690833:184005 +k1,24836:24855478,28690833:184005 +k1,24836:29108612,28690833:184004 +k1,24836:30311702,28690833:184005 +k1,24836:31478747,28690833:184005 +k1,24836:32583029,28690833:0 +) +(1,24837:6630773,29555913:25952256,505283,134348 +g1,24836:7577768,29555913 +g1,24836:10122531,29555913 +g1,24836:11007922,29555913 +g1,24836:11823189,29555913 +g1,24836:14301105,29555913 +h1,24836:16068611,29555913:0,0,0 +g1,24836:16267840,29555913 +g1,24836:17276439,29555913 +g1,24836:18973821,29555913 +h1,24836:20169198,29555913:0,0,0 +k1,24837:32583029,29555913:12361403 +g1,24837:32583029,29555913 +) +v1,24839:6630773,30240768:0,393216,0 +(1,24851:6630773,36060291:25952256,6212739,196608 +g1,24851:6630773,36060291 +g1,24851:6630773,36060291 +g1,24851:6434165,36060291 +(1,24851:6434165,36060291:0,6212739,196608 +r1,24872:32779637,36060291:26345472,6409347,196608 +k1,24851:6434165,36060291:-26345472 +) +(1,24851:6434165,36060291:26345472,6212739,196608 +[1,24851:6630773,36060291:25952256,6016131,0 +(1,24841:6630773,30475205:25952256,431045,106246 +(1,24840:6630773,30475205:0,0,0 +g1,24840:6630773,30475205 +g1,24840:6630773,30475205 +g1,24840:6303093,30475205 +(1,24840:6303093,30475205:0,0,0 +) +g1,24840:6630773,30475205 +) +k1,24841:6630773,30475205:0 +g1,24841:7626635,30475205 +g1,24841:23228469,30475205 +h1,24841:23560423,30475205:0,0,0 +k1,24841:32583029,30475205:9022606 +g1,24841:32583029,30475205 +) +(1,24842:6630773,31160060:25952256,431045,112852 +h1,24842:6630773,31160060:0,0,0 +g1,24842:6962727,31160060 +g1,24842:7294681,31160060 +g1,24842:9618359,31160060 +g1,24842:10614221,31160060 +k1,24842:10614221,31160060:0 +h1,24842:32191227,31160060:0,0,0 +k1,24842:32583029,31160060:391802 +g1,24842:32583029,31160060 +) +(1,24843:6630773,31844915:25952256,431045,112852 +h1,24843:6630773,31844915:0,0,0 +g1,24843:6962727,31844915 +g1,24843:7294681,31844915 +g1,24843:7626635,31844915 +g1,24843:7958589,31844915 +g1,24843:8290543,31844915 +g1,24843:8622497,31844915 +g1,24843:8954451,31844915 +g1,24843:9286405,31844915 +g1,24843:9618359,31844915 +g1,24843:9950313,31844915 +g1,24843:10282267,31844915 +g1,24843:10614221,31844915 +g1,24843:10946175,31844915 +g1,24843:11278129,31844915 +g1,24843:11610083,31844915 +g1,24843:11942037,31844915 +g1,24843:12273991,31844915 +g1,24843:12605945,31844915 +k1,24843:12605945,31844915:0 +h1,24843:24888240,31844915:0,0,0 +k1,24843:32583029,31844915:7694789 +g1,24843:32583029,31844915 +) +(1,24844:6630773,32529770:25952256,424439,106246 +h1,24844:6630773,32529770:0,0,0 +g1,24844:6962727,32529770 +g1,24844:7294681,32529770 +g1,24844:7626635,32529770 +g1,24844:7958589,32529770 +g1,24844:8290543,32529770 +g1,24844:8622497,32529770 +g1,24844:8954451,32529770 +g1,24844:9286405,32529770 +g1,24844:9618359,32529770 +g1,24844:9950313,32529770 +g1,24844:10282267,32529770 +g1,24844:10614221,32529770 +g1,24844:10946175,32529770 +g1,24844:11278129,32529770 +g1,24844:11610083,32529770 +g1,24844:11942037,32529770 +g1,24844:12273991,32529770 +g1,24844:12605945,32529770 +g1,24844:13933761,32529770 +g1,24844:14597669,32529770 +h1,24844:15593531,32529770:0,0,0 +k1,24844:32583029,32529770:16989498 +g1,24844:32583029,32529770 +) +(1,24845:6630773,33214625:25952256,431045,106246 +h1,24845:6630773,33214625:0,0,0 +g1,24845:6962727,33214625 +g1,24845:7294681,33214625 +k1,24845:7294681,33214625:0 +h1,24845:14265714,33214625:0,0,0 +k1,24845:32583030,33214625:18317316 +g1,24845:32583030,33214625 +) +(1,24846:6630773,33899480:25952256,424439,86428 +h1,24846:6630773,33899480:0,0,0 +g1,24846:6962727,33899480 +g1,24846:7294681,33899480 +g1,24846:7626635,33899480 +g1,24846:7958589,33899480 +g1,24846:8290543,33899480 +g1,24846:8622497,33899480 +g1,24846:8954451,33899480 +g1,24846:9286405,33899480 +g1,24846:9618359,33899480 +g1,24846:9950313,33899480 +g1,24846:10282267,33899480 +g1,24846:10614221,33899480 +g1,24846:10946175,33899480 +g1,24846:11278129,33899480 +g1,24846:11610083,33899480 +g1,24846:11942037,33899480 +g1,24846:13601807,33899480 +g1,24846:14265715,33899480 +k1,24846:14265715,33899480:0 +h1,24846:15925485,33899480:0,0,0 +k1,24846:32583029,33899480:16657544 +g1,24846:32583029,33899480 +) +(1,24847:6630773,34584335:25952256,431045,106246 +h1,24847:6630773,34584335:0,0,0 +g1,24847:6962727,34584335 +g1,24847:7294681,34584335 +g1,24847:7626635,34584335 +g1,24847:7958589,34584335 +g1,24847:8290543,34584335 +g1,24847:8622497,34584335 +g1,24847:8954451,34584335 +g1,24847:9286405,34584335 +g1,24847:9618359,34584335 +g1,24847:9950313,34584335 +g1,24847:10282267,34584335 +g1,24847:10614221,34584335 +g1,24847:10946175,34584335 +g1,24847:11278129,34584335 +g1,24847:11610083,34584335 +g1,24847:11942037,34584335 +g1,24847:14929622,34584335 +g1,24847:15593530,34584335 +h1,24847:25884101,34584335:0,0,0 +k1,24847:32583029,34584335:6698928 +g1,24847:32583029,34584335 +) +(1,24848:6630773,35269190:25952256,424439,79822 +h1,24848:6630773,35269190:0,0,0 +h1,24848:6962727,35269190:0,0,0 +k1,24848:32583029,35269190:25620302 +g1,24848:32583029,35269190 +) +(1,24849:6630773,35954045:25952256,431045,106246 +h1,24849:6630773,35954045:0,0,0 +g1,24849:10282266,35954045 +g1,24849:11278128,35954045 +k1,24849:11278128,35954045:0 +h1,24849:24224331,35954045:0,0,0 +k1,24849:32583029,35954045:8358698 +g1,24849:32583029,35954045 +) +] +) +g1,24851:32583029,36060291 +g1,24851:6630773,36060291 +g1,24851:6630773,36060291 +g1,24851:32583029,36060291 +g1,24851:32583029,36060291 +) +h1,24851:6630773,36256899:0,0,0 +v1,24855:6630773,37121979:0,393216,0 +(1,24856:6630773,38474719:25952256,1745956,0 +g1,24856:6630773,38474719 +g1,24856:6237557,38474719 +r1,24872:6368629,38474719:131072,1745956,0 +g1,24856:6567858,38474719 +g1,24856:6764466,38474719 +[1,24856:6764466,38474719:25818563,1745956,0 +(1,24856:6764466,37483156:25818563,754393,260573 +(1,24855:6764466,37483156:0,754393,260573 +r1,24872:7856192,37483156:1091726,1014966,260573 +k1,24855:6764466,37483156:-1091726 +) +(1,24855:6764466,37483156:1091726,754393,260573 +) +k1,24855:8086950,37483156:230758 +k1,24855:8414630,37483156:327680 +k1,24855:9687411,37483156:230759 +k1,24855:13434176,37483156:230758 +k1,24855:16055001,37483156:230727 +k1,24855:17599101,37483156:230758 +k1,24855:20010243,37483156:230759 +k1,24855:20988767,37483156:230758 +k1,24855:25114986,37483156:230759 +k1,24855:25961782,37483156:230758 +k1,24855:28214327,37483156:230759 +k1,24855:30401335,37483156:230758 +k1,24856:32583029,37483156:0 +) +(1,24856:6764466,38348236:25818563,505283,126483 +(1,24855:6764466,38348236:0,452978,115847 +r1,24872:10639850,38348236:3875384,568825,115847 +k1,24855:6764466,38348236:-3875384 +) +(1,24855:6764466,38348236:3875384,452978,115847 +g1,24855:8526302,38348236 +g1,24855:9229726,38348236 +h1,24855:10636573,38348236:0,411205,112570 +) +g1,24855:11012749,38348236 +g1,24855:13097449,38348236 +g1,24855:13828175,38348236 +g1,24855:16739939,38348236 +g1,24855:18825294,38348236 +k1,24856:32583029,38348236:9765283 +g1,24856:32583029,38348236 +) +] +g1,24856:32583029,38474719 +) +h1,24856:6630773,38474719:0,0,0 +v1,24860:6630773,39339799:0,393216,0 +(1,24861:6630773,41565484:25952256,2618901,0 +g1,24861:6630773,41565484 +g1,24861:6237557,41565484 +r1,24872:6368629,41565484:131072,2618901,0 +g1,24861:6567858,41565484 +g1,24861:6764466,41565484 +[1,24861:6764466,41565484:25818563,2618901,0 +(1,24861:6764466,39700976:25818563,754393,260573 +(1,24860:6764466,39700976:0,754393,260573 +r1,24872:7856192,39700976:1091726,1014966,260573 +k1,24860:6764466,39700976:-1091726 +) +(1,24860:6764466,39700976:1091726,754393,260573 +) +k1,24860:8001900,39700976:145708 +k1,24860:8329580,39700976:327680 +k1,24860:10192330,39700976:145707 +k1,24860:12752331,39700976:145655 +k1,24860:13881078,39700976:145707 +k1,24860:16315959,39700976:145708 +k1,24860:18988080,39700976:145708 +k1,24860:20152872,39700976:145707 +k1,24860:23389205,39700976:145655 +k1,24860:26396869,39700976:145707 +k1,24860:27170412,39700976:145708 +k1,24860:29012847,39700976:145708 +k1,24860:31447727,39700976:145707 +k1,24860:32051532,39700976:145708 +k1,24860:32583029,39700976:0 +) +(1,24861:6764466,40566056:25818563,513147,126483 +k1,24860:9582701,40566056:188275 +k1,24860:10422405,40566056:188276 +k1,24860:12188132,40566056:188275 +k1,24860:13395493,40566056:188276 +k1,24860:14897110,40566056:188275 +k1,24860:18079726,40566056:188276 +k1,24860:19459446,40566056:188275 +k1,24860:21023322,40566056:188275 +k1,24860:24338976,40566056:188276 +k1,24860:24883111,40566056:188275 +k1,24860:26393248,40566056:188276 +k1,24860:27240815,40566056:188275 +k1,24860:28448176,40566056:188276 +k1,24860:29793161,40566056:188275 +k1,24861:32583029,40566056:0 +) +(1,24861:6764466,41431136:25818563,513147,134348 +(1,24860:6764466,41431136:0,452978,115847 +r1,24872:9936426,41431136:3171960,568825,115847 +k1,24860:6764466,41431136:-3171960 +) +(1,24860:6764466,41431136:3171960,452978,115847 +k1,24860:6764466,41431136:3277 +h1,24860:9933149,41431136:0,411205,112570 +) +g1,24860:10135655,41431136 +g1,24860:11902505,41431136 +g1,24860:14681886,41431136 +g1,24860:18033396,41431136 +g1,24860:22529165,41431136 +g1,24860:25585108,41431136 +g1,24860:28875015,41431136 +k1,24861:32583029,41431136:2044055 +g1,24861:32583029,41431136 +) +] +g1,24861:32583029,41565484 +) +h1,24861:6630773,41565484:0,0,0 +] +(1,24872:32583029,45706769:0,0,0 +g1,24872:32583029,45706769 +) +) +] +(1,24872:6630773,47279633:25952256,0,0 +h1,24872:6630773,47279633:25952256,0,0 +) +] +(1,24872:4262630,4025873:0,0,0 +[1,24872:-473656,4025873:0,0,0 +(1,24872:-473656,-710413:0,0,0 +(1,24872:-473656,-710413:0,0,0 +g1,24872:-473656,-710413 +) +g1,24872:-473656,-710413 ) ] ) ] !26017 -}426 +}427 !12 -{427 -[1,24924:4262630,47279633:28320399,43253760,0 -(1,24924:4262630,4025873:0,0,0 -[1,24924:-473656,4025873:0,0,0 -(1,24924:-473656,-710413:0,0,0 -(1,24924:-473656,-644877:0,0,0 -k1,24924:-473656,-644877:-65536 +{428 +[1,24922:4262630,47279633:28320399,43253760,0 +(1,24922:4262630,4025873:0,0,0 +[1,24922:-473656,4025873:0,0,0 +(1,24922:-473656,-710413:0,0,0 +(1,24922:-473656,-644877:0,0,0 +k1,24922:-473656,-644877:-65536 ) -(1,24924:-473656,4736287:0,0,0 -k1,24924:-473656,4736287:5209943 +(1,24922:-473656,4736287:0,0,0 +k1,24922:-473656,4736287:5209943 ) -g1,24924:-473656,-710413 +g1,24922:-473656,-710413 ) ] ) -[1,24924:6630773,47279633:25952256,43253760,0 -[1,24924:6630773,4812305:25952256,786432,0 -(1,24924:6630773,4812305:25952256,505283,134348 -(1,24924:6630773,4812305:25952256,505283,134348 -g1,24924:3078558,4812305 -[1,24924:3078558,4812305:0,0,0 -(1,24924:3078558,2439708:0,1703936,0 -k1,24924:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24924:2537886,2439708:1179648,16384,0 +[1,24922:6630773,47279633:25952256,43253760,0 +[1,24922:6630773,4812305:25952256,786432,0 +(1,24922:6630773,4812305:25952256,505283,134348 +(1,24922:6630773,4812305:25952256,505283,134348 +g1,24922:3078558,4812305 +[1,24922:3078558,4812305:0,0,0 +(1,24922:3078558,2439708:0,1703936,0 +k1,24922:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24922:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24924:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24922:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24924:3078558,4812305:0,0,0 -(1,24924:3078558,2439708:0,1703936,0 -g1,24924:29030814,2439708 -g1,24924:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24924:36151628,1915420:16384,1179648,0 +[1,24922:3078558,4812305:0,0,0 +(1,24922:3078558,2439708:0,1703936,0 +g1,24922:29030814,2439708 +g1,24922:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24922:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24924:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24922:37855564,2439708:1179648,16384,0 ) ) -k1,24924:3078556,2439708:-34777008 +k1,24922:3078556,2439708:-34777008 ) ] -[1,24924:3078558,4812305:0,0,0 -(1,24924:3078558,49800853:0,16384,2228224 -k1,24924:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24924:2537886,49800853:1179648,16384,0 +[1,24922:3078558,4812305:0,0,0 +(1,24922:3078558,49800853:0,16384,2228224 +k1,24922:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24922:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24924:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24922:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,24924:3078558,4812305:0,0,0 -(1,24924:3078558,49800853:0,16384,2228224 -g1,24924:29030814,49800853 -g1,24924:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24924:36151628,51504789:16384,1179648,0 +[1,24922:3078558,4812305:0,0,0 +(1,24922:3078558,49800853:0,16384,2228224 +g1,24922:29030814,49800853 +g1,24922:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24922:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24924:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24922:37855564,49800853:1179648,16384,0 ) ) -k1,24924:3078556,49800853:-34777008 +k1,24922:3078556,49800853:-34777008 ) -] -g1,24924:6630773,4812305 -k1,24924:21114230,4812305:13288080 -g1,24924:22736901,4812305 -g1,24924:23350318,4812305 -g1,24924:24759997,4812305 -g1,24924:28372341,4812305 -g1,24924:30105768,4812305 -) -) -] -[1,24924:6630773,45706769:25952256,40108032,0 -(1,24924:6630773,45706769:25952256,40108032,0 -(1,24924:6630773,45706769:0,0,0 -g1,24924:6630773,45706769 -) -[1,24924:6630773,45706769:25952256,40108032,0 -(1,24865:6630773,6254097:25952256,32768,229376 -(1,24865:6630773,6254097:0,32768,229376 -(1,24865:6630773,6254097:5505024,32768,229376 -r1,24924:12135797,6254097:5505024,262144,229376 -) -k1,24865:6630773,6254097:-5505024 -) -(1,24865:6630773,6254097:25952256,32768,0 -r1,24924:32583029,6254097:25952256,32768,0 -) -) -(1,24865:6630773,7885949:25952256,606339,14155 -(1,24865:6630773,7885949:2954625,582746,14155 -g1,24865:6630773,7885949 -g1,24865:9585398,7885949 -) -k1,24865:32583028,7885949:18986040 -g1,24865:32583028,7885949 -) -(1,24874:6630773,9144245:25952256,513147,134348 -k1,24873:8153628,9144245:251457 -k1,24873:9064376,9144245:251456 -k1,24873:10334918,9144245:251457 -k1,24873:14155465,9144245:251456 -k1,24873:15066214,9144245:251457 -k1,24873:17053064,9144245:251457 -k1,24873:20458112,9144245:251456 -k1,24873:21241066,9144245:251457 -k1,24873:22777029,9144245:251457 -k1,24873:25438899,9144245:251456 -k1,24873:26349648,9144245:251457 -k1,24873:28298486,9144245:251456 -k1,24873:29741388,9144245:251457 -k1,24873:32583029,9144245:0 -) -(1,24874:6630773,10009325:25952256,505283,134348 -k1,24873:7961250,10009325:226195 -k1,24873:8935210,10009325:226194 -k1,24873:12189824,10009325:226195 -k1,24873:13882714,10009325:226194 -k1,24873:17103249,10009325:226195 -k1,24873:19688084,10009325:226194 -k1,24873:20372376,10009325:226195 -k1,24873:23228530,10009325:226194 -k1,24873:24106153,10009325:226195 -k1,24873:25928804,10009325:226194 -k1,24873:26771037,10009325:226195 -k1,24873:27412047,10009325:226167 -k1,24873:29104938,10009325:226195 -k1,24873:31391584,10009325:226194 -k1,24873:32583029,10009325:0 -) -(1,24874:6630773,10874405:25952256,505283,134348 -k1,24873:9678746,10874405:227303 -k1,24873:11300000,10874405:227303 -k1,24873:13078540,10874405:227303 -k1,24873:14695206,10874405:227303 -k1,24873:16361024,10874405:227303 -k1,24873:17859725,10874405:227303 -k1,24873:20267411,10874405:227303 -k1,24873:23753819,10874405:227303 -k1,24873:25265628,10874405:227303 -k1,24873:25907746,10874405:227275 -k1,24873:28634592,10874405:227303 -k1,24873:30700180,10874405:227303 -k1,24873:32583029,10874405:0 -) -(1,24874:6630773,11739485:25952256,513147,134348 -k1,24873:9186200,11739485:265599 -k1,24873:10067838,11739485:265600 -k1,24873:12003294,11739485:265599 -k1,24873:13460339,11739485:265600 -k1,24873:18124715,11739485:265599 -k1,24873:21174284,11739485:265600 -k1,24873:24127514,11739485:265599 -k1,24873:27024385,11739485:265600 -k1,24873:29104676,11739485:265599 -k1,24873:30389361,11739485:265600 -k1,24873:31923737,11739485:265599 -k1,24873:32583029,11739485:0 -) -(1,24874:6630773,12604565:25952256,505283,134348 -k1,24873:8237622,12604565:217486 -k1,24873:9719953,12604565:217486 -k1,24873:11331389,12604565:217485 -k1,24873:13434346,12604565:217486 -k1,24873:14109929,12604565:217486 -k1,24873:14858912,12604565:217486 -k1,24873:17706358,12604565:217486 -k1,24873:18575271,12604565:217485 -k1,24873:20562884,12604565:217486 -k1,24873:23315303,12604565:217486 -k1,24873:25918299,12604565:217486 -k1,24873:28896160,12604565:217485 -k1,24873:30132731,12604565:217486 -k1,24873:31931601,12604565:217486 -k1,24873:32583029,12604565:0 -) -(1,24874:6630773,13469645:25952256,505283,134348 -k1,24873:8402586,13469645:201570 -k1,24873:9998107,13469645:201570 -k1,24873:11589040,13469645:201570 -k1,24873:12406648,13469645:201570 -k1,24873:15761810,13469645:201570 -k1,24873:17698773,13469645:201570 -k1,24873:18919429,13469645:201571 -k1,24873:20774472,13469645:201570 -k1,24873:22699639,13469645:201570 -k1,24873:23587371,13469645:201570 -k1,24873:25486979,13469645:201570 -k1,24873:27423942,13469645:201570 -k1,24873:29598145,13469645:201570 -k1,24873:31193666,13469645:201570 -k1,24873:32583029,13469645:0 -) -(1,24874:6630773,14334725:25952256,505283,134348 -k1,24873:8816000,14334725:147057 -k1,24873:9579094,14334725:147056 -k1,24873:12357422,14334725:147057 -k1,24873:14414801,14334725:147005 -k1,24873:15793934,14334725:147056 -k1,24873:18358614,14334725:147057 -h1,24873:18757073,14334725:0,0,0 -k1,24873:19284893,14334725:147056 -k1,24873:20812794,14334725:147057 -k1,24873:21491348,14334725:147057 -k1,24873:22409107,14334725:147056 -k1,24873:25765462,14334725:147057 -k1,24873:28396333,14334725:147056 -k1,24873:29615559,14334725:147057 -k1,24873:32583029,14334725:0 -) -(1,24874:6630773,15199805:25952256,513147,134348 -k1,24873:9232365,15199805:240985 -k1,24873:10124778,15199805:240985 -k1,24873:11113529,15199805:240985 -k1,24873:13720364,15199805:240985 -k1,24873:14980434,15199805:240985 -k1,24873:17047907,15199805:240985 -k1,24873:17948185,15199805:240986 -k1,24873:19392411,15199805:240985 -k1,24873:21389106,15199805:240985 -k1,24873:22583640,15199805:240985 -k1,24873:25254700,15199805:240985 -k1,24873:25851545,15199805:240985 -k1,24873:27225648,15199805:240985 -k1,24873:29591310,15199805:240985 -k1,24873:32583029,15199805:0 -) -(1,24874:6630773,16064885:25952256,513147,126483 -k1,24873:7507998,16064885:225797 -k1,24873:9394476,16064885:225796 -k1,24873:10639358,16064885:225797 -k1,24873:12219128,16064885:225796 -k1,24873:14396587,16064885:225797 -k1,24873:15694552,16064885:225796 -k1,24873:19131613,16064885:225797 -k1,24873:21735711,16064885:225796 -k1,24873:24141891,16064885:225797 -k1,24873:26717808,16064885:225796 -k1,24873:27393182,16064885:225797 -k1,24873:28543036,16064885:225796 -k1,24873:30303031,16064885:225797 -k1,24874:32583029,16064885:0 -) -(1,24874:6630773,16929965:25952256,505283,95026 -g1,24873:9940340,16929965 -g1,24873:10743811,16929965 -g1,24873:11677699,16929965 -k1,24874:32583029,16929965:19051972 -g1,24874:32583029,16929965 -) -(1,24876:6630773,17795045:25952256,505283,134348 -h1,24875:6630773,17795045:983040,0,0 -k1,24875:8967282,17795045:156782 -k1,24875:12351057,17795045:156782 -k1,24875:14193426,17795045:156783 -k1,24875:17531326,17795045:156782 -k1,24875:18339536,17795045:156782 -k1,24875:20231711,17795045:156782 -k1,24875:22361127,17795045:156783 -k1,24875:24006232,17795045:156782 -k1,24875:25556965,17795045:156782 -k1,24875:26732832,17795045:156782 -k1,24875:28419881,17795045:156783 -k1,24875:29228091,17795045:156782 -k1,24875:32227169,17795045:156782 -k1,24875:32583029,17795045:0 -) -(1,24876:6630773,18660125:25952256,505283,134348 -k1,24875:10314272,18660125:177323 -k1,24875:11143024,18660125:177324 -k1,24875:11676207,18660125:177323 -k1,24875:13347751,18660125:177323 -k1,24875:14207959,18660125:177323 -k1,24875:16639722,18660125:177324 -k1,24875:19814006,18660125:177323 -k1,24875:20944878,18660125:177323 -k1,24875:22254663,18660125:177323 -k1,24875:23524472,18660125:177324 -k1,24875:24116616,18660125:177301 -k1,24875:26874091,18660125:177323 -k1,24875:29824898,18660125:177324 -k1,24875:30653649,18660125:177323 -k1,24875:32583029,18660125:0 -) -(1,24876:6630773,19525205:25952256,505283,134348 -k1,24875:7246374,19525205:259741 -k1,24875:9000336,19525205:259741 -k1,24875:12593238,19525205:259741 -k1,24875:14864279,19525205:259741 -k1,24875:18120981,19525205:259741 -k1,24875:20766232,19525205:259741 -k1,24875:24021624,19525205:259741 -k1,24875:27798027,19525205:259741 -k1,24875:29759738,19525205:259741 -k1,24875:32583029,19525205:0 -) -(1,24876:6630773,20390285:25952256,513147,134348 -k1,24875:9438573,20390285:231580 -k1,24875:10661714,20390285:231581 -k1,24875:12179110,20390285:231580 -k1,24875:15368331,20390285:231581 -k1,24875:16553460,20390285:231580 -k1,24875:17917503,20390285:231581 -k1,24875:19241568,20390285:231580 -k1,24875:24191741,20390285:231581 -k1,24875:25812684,20390285:231580 -k1,24875:27611886,20390285:231581 -k1,24875:31649796,20390285:231580 -k1,24875:32583029,20390285:0 -) -(1,24876:6630773,21255365:25952256,505283,126483 -g1,24875:8033243,21255365 -k1,24876:32583028,21255365:21835940 -g1,24876:32583028,21255365 -) -v1,24878:6630773,21940220:0,393216,0 -(1,24920:6630773,44483232:25952256,22936228,196608 -g1,24920:6630773,44483232 -g1,24920:6630773,44483232 -g1,24920:6434165,44483232 -(1,24920:6434165,44483232:0,22936228,196608 -r1,24924:32779637,44483232:26345472,23132836,196608 -k1,24920:6434165,44483232:-26345472 -) -(1,24920:6434165,44483232:26345472,22936228,196608 -[1,24920:6630773,44483232:25952256,22739620,0 -(1,24880:6630773,22168051:25952256,424439,106246 -(1,24879:6630773,22168051:0,0,0 -g1,24879:6630773,22168051 -g1,24879:6630773,22168051 -g1,24879:6303093,22168051 -(1,24879:6303093,22168051:0,0,0 -) -g1,24879:6630773,22168051 -) -k1,24880:6630773,22168051:0 -h1,24880:11278129,22168051:0,0,0 -k1,24880:32583029,22168051:21304900 -g1,24880:32583029,22168051 -) -(1,24881:6630773,22852906:25952256,424439,106246 -h1,24881:6630773,22852906:0,0,0 -g1,24881:7958589,22852906 -g1,24881:8954451,22852906 -g1,24881:20240885,22852906 -g1,24881:22564563,22852906 -g1,24881:23228471,22852906 -h1,24881:26879964,22852906:0,0,0 -k1,24881:32583029,22852906:5703065 -g1,24881:32583029,22852906 -) -(1,24882:6630773,23537761:25952256,424439,106246 -h1,24882:6630773,23537761:0,0,0 -g1,24882:10946175,23537761 -g1,24882:18581115,23537761 -k1,24882:18581115,23537761:0 -h1,24882:21900654,23537761:0,0,0 -k1,24882:32583029,23537761:10682375 -g1,24882:32583029,23537761 -) -(1,24883:6630773,24222616:25952256,388105,106246 -h1,24883:6630773,24222616:0,0,0 -g1,24883:6962727,24222616 -g1,24883:7294681,24222616 -g1,24883:7626635,24222616 -g1,24883:7958589,24222616 -g1,24883:8290543,24222616 -g1,24883:8622497,24222616 -g1,24883:8954451,24222616 -g1,24883:9286405,24222616 -g1,24883:12605944,24222616 -g1,24883:13269852,24222616 -k1,24883:13269852,24222616:0 -h1,24883:15261576,24222616:0,0,0 -k1,24883:32583028,24222616:17321452 -g1,24883:32583028,24222616 -) -(1,24884:6630773,24907471:25952256,424439,79822 -h1,24884:6630773,24907471:0,0,0 -g1,24884:6962727,24907471 -g1,24884:7294681,24907471 -g1,24884:7626635,24907471 -g1,24884:7958589,24907471 -g1,24884:8290543,24907471 -g1,24884:8622497,24907471 -g1,24884:8954451,24907471 -g1,24884:9286405,24907471 -g1,24884:11942037,24907471 -g1,24884:12605945,24907471 -k1,24884:12605945,24907471:0 -h1,24884:14265715,24907471:0,0,0 -k1,24884:32583029,24907471:18317314 -g1,24884:32583029,24907471 -) -(1,24885:6630773,25592326:25952256,424439,106246 -h1,24885:6630773,25592326:0,0,0 -g1,24885:6962727,25592326 -g1,24885:7294681,25592326 -g1,24885:7626635,25592326 -g1,24885:7958589,25592326 -g1,24885:8290543,25592326 -g1,24885:8622497,25592326 -g1,24885:8954451,25592326 -g1,24885:9286405,25592326 -g1,24885:9618359,25592326 -g1,24885:9950313,25592326 -g1,24885:15261576,25592326 -g1,24885:20904793,25592326 -k1,24885:20904793,25592326:0 -h1,24885:25552148,25592326:0,0,0 -k1,24885:32583029,25592326:7030881 -g1,24885:32583029,25592326 -) -(1,24886:6630773,26277181:25952256,424439,86428 -h1,24886:6630773,26277181:0,0,0 -g1,24886:6962727,26277181 -g1,24886:7294681,26277181 -g1,24886:7626635,26277181 -g1,24886:7958589,26277181 -g1,24886:8290543,26277181 -g1,24886:8622497,26277181 -g1,24886:8954451,26277181 -g1,24886:9286405,26277181 -g1,24886:9618359,26277181 -g1,24886:9950313,26277181 -k1,24886:9950313,26277181:0 -h1,24886:12273991,26277181:0,0,0 -k1,24886:32583029,26277181:20309038 -g1,24886:32583029,26277181 -) -(1,24887:6630773,26962036:25952256,424439,86428 -h1,24887:6630773,26962036:0,0,0 -g1,24887:6962727,26962036 -g1,24887:7294681,26962036 -g1,24887:7626635,26962036 -g1,24887:7958589,26962036 -g1,24887:8290543,26962036 -g1,24887:8622497,26962036 -g1,24887:8954451,26962036 -g1,24887:9286405,26962036 -g1,24887:9618359,26962036 -g1,24887:9950313,26962036 -k1,24887:9950313,26962036:0 -h1,24887:15261576,26962036:0,0,0 -k1,24887:32583028,26962036:17321452 -g1,24887:32583028,26962036 -) -(1,24888:6630773,27646891:25952256,424439,106246 -h1,24888:6630773,27646891:0,0,0 -g1,24888:6962727,27646891 -g1,24888:7294681,27646891 -g1,24888:7626635,27646891 -g1,24888:7958589,27646891 -g1,24888:8290543,27646891 -g1,24888:8622497,27646891 -g1,24888:8954451,27646891 -g1,24888:9286405,27646891 -g1,24888:9618359,27646891 -g1,24888:9950313,27646891 -k1,24888:9950313,27646891:0 -h1,24888:13933760,27646891:0,0,0 -k1,24888:32583028,27646891:18649268 -g1,24888:32583028,27646891 -) -(1,24889:6630773,28331746:25952256,431045,106246 -h1,24889:6630773,28331746:0,0,0 -g1,24889:6962727,28331746 -g1,24889:7294681,28331746 -g1,24889:7626635,28331746 -g1,24889:7958589,28331746 -g1,24889:8290543,28331746 -g1,24889:8622497,28331746 -g1,24889:8954451,28331746 -g1,24889:9286405,28331746 -g1,24889:9618359,28331746 -g1,24889:9950313,28331746 -k1,24889:9950313,28331746:0 -h1,24889:14597668,28331746:0,0,0 -k1,24889:32583028,28331746:17985360 -g1,24889:32583028,28331746 -) -(1,24890:6630773,29016601:25952256,431045,106246 -h1,24890:6630773,29016601:0,0,0 -g1,24890:6962727,29016601 -g1,24890:7294681,29016601 -g1,24890:7626635,29016601 -g1,24890:7958589,29016601 -g1,24890:8290543,29016601 -g1,24890:8622497,29016601 -g1,24890:8954451,29016601 -g1,24890:9286405,29016601 -g1,24890:9618359,29016601 -g1,24890:9950313,29016601 -h1,24890:14929622,29016601:0,0,0 -k1,24890:32583030,29016601:17653408 -g1,24890:32583030,29016601 -) -(1,24891:6630773,29701456:25952256,424439,79822 -h1,24891:6630773,29701456:0,0,0 -g1,24891:6962727,29701456 -g1,24891:7294681,29701456 -g1,24891:7626635,29701456 -g1,24891:7958589,29701456 -g1,24891:8290543,29701456 -g1,24891:8622497,29701456 -g1,24891:8954451,29701456 -g1,24891:9286405,29701456 -h1,24891:9618359,29701456:0,0,0 -k1,24891:32583029,29701456:22964670 -g1,24891:32583029,29701456 -) -(1,24892:6630773,30386311:25952256,424439,79822 -h1,24892:6630773,30386311:0,0,0 -h1,24892:6962727,30386311:0,0,0 -k1,24892:32583029,30386311:25620302 -g1,24892:32583029,30386311 -) -(1,24893:6630773,31071166:25952256,424439,86428 -h1,24893:6630773,31071166:0,0,0 -g1,24893:10282266,31071166 -g1,24893:11278128,31071166 -g1,24893:14265714,31071166 -h1,24893:17585253,31071166:0,0,0 -k1,24893:32583029,31071166:14997776 -g1,24893:32583029,31071166 -) -(1,24894:6630773,31756021:25952256,424439,79822 -h1,24894:6630773,31756021:0,0,0 -k1,24894:6630773,31756021:0 -h1,24894:13269851,31756021:0,0,0 -k1,24894:32583029,31756021:19313178 -g1,24894:32583029,31756021 -) -(1,24903:6630773,32571948:25952256,431045,112852 -(1,24896:6630773,32571948:0,0,0 -g1,24896:6630773,32571948 -g1,24896:6630773,32571948 -g1,24896:6303093,32571948 -(1,24896:6303093,32571948:0,0,0 -) -g1,24896:6630773,32571948 -) -g1,24903:7626635,32571948 -g1,24903:7958589,32571948 -g1,24903:9286405,32571948 -g1,24903:11610083,32571948 -g1,24903:11942037,32571948 -g1,24903:12273991,32571948 -g1,24903:12605945,32571948 -g1,24903:12937899,32571948 -g1,24903:13269853,32571948 -g1,24903:13601807,32571948 -g1,24903:13933761,32571948 -g1,24903:14265715,32571948 -g1,24903:14597669,32571948 -g1,24903:14929623,32571948 -g1,24903:18581116,32571948 -g1,24903:18913070,32571948 -g1,24903:19245024,32571948 -g1,24903:19576978,32571948 -g1,24903:19908932,32571948 -g1,24903:20240886,32571948 -g1,24903:20572840,32571948 -g1,24903:25220195,32571948 -g1,24903:25552149,32571948 -g1,24903:25884103,32571948 -g1,24903:26216057,32571948 -h1,24903:30531458,32571948:0,0,0 -k1,24903:32583029,32571948:2051571 -g1,24903:32583029,32571948 -) -(1,24903:6630773,33256803:25952256,431045,106246 -h1,24903:6630773,33256803:0,0,0 -g1,24903:7626635,33256803 -g1,24903:7958589,33256803 -g1,24903:9286405,33256803 -g1,24903:13933760,33256803 -g1,24903:14265714,33256803 -g1,24903:14597668,33256803 -g1,24903:14929622,33256803 -g1,24903:20240885,33256803 -g1,24903:20572839,33256803 -g1,24903:24888240,33256803 -g1,24903:25220194,33256803 -g1,24903:25552148,33256803 -g1,24903:25884102,33256803 -g1,24903:26216056,33256803 -h1,24903:31195365,33256803:0,0,0 -k1,24903:32583029,33256803:1387664 -g1,24903:32583029,33256803 -) -(1,24903:6630773,33941658:25952256,424439,106246 -h1,24903:6630773,33941658:0,0,0 -g1,24903:7626635,33941658 -g1,24903:7958589,33941658 -g1,24903:9286405,33941658 -g1,24903:13601806,33941658 -g1,24903:13933760,33941658 -g1,24903:14265714,33941658 -g1,24903:14597668,33941658 -g1,24903:14929622,33941658 -g1,24903:20240885,33941658 -g1,24903:20572839,33941658 -g1,24903:25220194,33941658 -g1,24903:25552148,33941658 -g1,24903:25884102,33941658 -g1,24903:26216056,33941658 -h1,24903:29867549,33941658:0,0,0 -k1,24903:32583029,33941658:2715480 -g1,24903:32583029,33941658 -) -(1,24903:6630773,34626513:25952256,424439,106246 -h1,24903:6630773,34626513:0,0,0 -g1,24903:7626635,34626513 -g1,24903:9286405,34626513 -g1,24903:13601806,34626513 -g1,24903:13933760,34626513 -g1,24903:14265714,34626513 -g1,24903:14597668,34626513 -g1,24903:14929622,34626513 -g1,24903:20572839,34626513 -g1,24903:24888240,34626513 -g1,24903:25220194,34626513 -g1,24903:25552148,34626513 -g1,24903:25884102,34626513 -g1,24903:26216056,34626513 -h1,24903:28871687,34626513:0,0,0 -k1,24903:32583029,34626513:3711342 -g1,24903:32583029,34626513 -) -(1,24903:6630773,35311368:25952256,431045,106246 -h1,24903:6630773,35311368:0,0,0 -g1,24903:7626635,35311368 -g1,24903:9286405,35311368 -g1,24903:12273990,35311368 -g1,24903:12605944,35311368 -g1,24903:12937898,35311368 -g1,24903:13269852,35311368 -g1,24903:13601806,35311368 -g1,24903:13933760,35311368 -g1,24903:14265714,35311368 -g1,24903:14597668,35311368 -g1,24903:14929622,35311368 -g1,24903:19908931,35311368 -g1,24903:20240885,35311368 -g1,24903:20572839,35311368 -g1,24903:24224332,35311368 -g1,24903:24556286,35311368 -g1,24903:24888240,35311368 -g1,24903:25220194,35311368 -g1,24903:25552148,35311368 -g1,24903:25884102,35311368 -g1,24903:26216056,35311368 -h1,24903:30863411,35311368:0,0,0 -k1,24903:32583029,35311368:1719618 -g1,24903:32583029,35311368 -) -(1,24903:6630773,35996223:25952256,431045,79822 -h1,24903:6630773,35996223:0,0,0 -g1,24903:7626635,35996223 -g1,24903:9286405,35996223 -h1,24903:13601806,35996223:0,0,0 -k1,24903:32583030,35996223:18981224 -g1,24903:32583030,35996223 -) -(1,24905:6630773,36812150:25952256,424439,79822 -(1,24904:6630773,36812150:0,0,0 -g1,24904:6630773,36812150 -g1,24904:6630773,36812150 -g1,24904:6303093,36812150 -(1,24904:6303093,36812150:0,0,0 -) -g1,24904:6630773,36812150 -) -g1,24905:10282266,36812150 -k1,24905:10282266,36812150:0 -h1,24905:10946174,36812150:0,0,0 -k1,24905:32583030,36812150:21636856 -g1,24905:32583030,36812150 -) -(1,24906:6630773,37497005:25952256,431045,86428 -h1,24906:6630773,37497005:0,0,0 -g1,24906:6962727,37497005 -g1,24906:7294681,37497005 -g1,24906:11610083,37497005 -g1,24906:12273991,37497005 -g1,24906:13269853,37497005 -g1,24906:17917208,37497005 -g1,24906:18581116,37497005 -g1,24906:19576978,37497005 -k1,24906:19576978,37497005:0 -h1,24906:20240886,37497005:0,0,0 -k1,24906:32583029,37497005:12342143 -g1,24906:32583029,37497005 -) -(1,24907:6630773,38181860:25952256,431045,112852 -h1,24907:6630773,38181860:0,0,0 -g1,24907:6962727,38181860 -g1,24907:7294681,38181860 -g1,24907:12273990,38181860 -g1,24907:12937898,38181860 -g1,24907:13933760,38181860 -g1,24907:18249161,38181860 -k1,24907:18249161,38181860:0 -h1,24907:18913069,38181860:0,0,0 -k1,24907:32583029,38181860:13669960 -g1,24907:32583029,38181860 -) -(1,24908:6630773,38866715:25952256,424439,112852 -h1,24908:6630773,38866715:0,0,0 -g1,24908:6962727,38866715 -g1,24908:7294681,38866715 -g1,24908:12605944,38866715 -g1,24908:13269852,38866715 -g1,24908:14265714,38866715 -g1,24908:17585253,38866715 -g1,24908:18249161,38866715 -g1,24908:23892378,38866715 -g1,24908:25884102,38866715 -g1,24908:26548010,38866715 -g1,24908:28539734,38866715 -g1,24908:29203642,38866715 -g1,24908:30199504,38866715 -g1,24908:30863412,38866715 -h1,24908:32523182,38866715:0,0,0 -k1,24908:32583029,38866715:59847 -g1,24908:32583029,38866715 -) -(1,24919:6630773,39682642:25952256,424439,86428 -(1,24910:6630773,39682642:0,0,0 -g1,24910:6630773,39682642 -g1,24910:6630773,39682642 -g1,24910:6303093,39682642 -(1,24910:6303093,39682642:0,0,0 -) -g1,24910:6630773,39682642 -) -g1,24919:7626635,39682642 -g1,24919:8290543,39682642 -g1,24919:10946175,39682642 -g1,24919:11278129,39682642 -g1,24919:11610083,39682642 -g1,24919:12937899,39682642 -g1,24919:14265715,39682642 -g1,24919:14929623,39682642 -h1,24919:15593531,39682642:0,0,0 -k1,24919:32583029,39682642:16989498 -g1,24919:32583029,39682642 -) -(1,24919:6630773,40367497:25952256,424439,106246 -h1,24919:6630773,40367497:0,0,0 -g1,24919:7626635,40367497 -g1,24919:8290543,40367497 -g1,24919:11610082,40367497 -g1,24919:13933760,40367497 -g1,24919:16257438,40367497 -h1,24919:19576977,40367497:0,0,0 -k1,24919:32583029,40367497:13006052 -g1,24919:32583029,40367497 -) -(1,24919:6630773,41052352:25952256,431045,112852 -h1,24919:6630773,41052352:0,0,0 -g1,24919:7626635,41052352 -g1,24919:7958589,41052352 -g1,24919:8290543,41052352 -g1,24919:12273990,41052352 -h1,24919:15261575,41052352:0,0,0 -k1,24919:32583029,41052352:17321454 -g1,24919:32583029,41052352 -) -(1,24919:6630773,41737207:25952256,424439,6605 -h1,24919:6630773,41737207:0,0,0 -g1,24919:7626635,41737207 -g1,24919:7958589,41737207 -g1,24919:8290543,41737207 -g1,24919:8622497,41737207 -g1,24919:8954451,41737207 -g1,24919:9286405,41737207 -g1,24919:9618359,41737207 -g1,24919:9950313,41737207 -g1,24919:10282267,41737207 -g1,24919:12273991,41737207 -g1,24919:12605945,41737207 -g1,24919:12937899,41737207 -g1,24919:13269853,41737207 -g1,24919:13601807,41737207 -k1,24919:13601807,41737207:0 -h1,24919:15261577,41737207:0,0,0 -k1,24919:32583029,41737207:17321452 -g1,24919:32583029,41737207 -) -(1,24919:6630773,42422062:25952256,407923,9908 -h1,24919:6630773,42422062:0,0,0 -g1,24919:7626635,42422062 -g1,24919:8290543,42422062 -g1,24919:8622497,42422062 -g1,24919:8954451,42422062 -g1,24919:9286405,42422062 -g1,24919:9618359,42422062 -g1,24919:9950313,42422062 -g1,24919:10282267,42422062 -g1,24919:10614221,42422062 -g1,24919:10946175,42422062 -g1,24919:12273991,42422062 -g1,24919:12605945,42422062 -g1,24919:12937899,42422062 -g1,24919:13269853,42422062 -g1,24919:13601807,42422062 -h1,24919:15261577,42422062:0,0,0 -k1,24919:32583029,42422062:17321452 -g1,24919:32583029,42422062 -) -(1,24919:6630773,43106917:25952256,407923,9908 -h1,24919:6630773,43106917:0,0,0 -g1,24919:7626635,43106917 -g1,24919:8290543,43106917 -g1,24919:8622497,43106917 -g1,24919:8954451,43106917 -g1,24919:9286405,43106917 -g1,24919:9618359,43106917 -g1,24919:9950313,43106917 -g1,24919:10282267,43106917 -g1,24919:10614221,43106917 -g1,24919:10946175,43106917 -g1,24919:12273991,43106917 -g1,24919:12605945,43106917 -g1,24919:12937899,43106917 -g1,24919:13269853,43106917 -g1,24919:13601807,43106917 -h1,24919:15261577,43106917:0,0,0 -k1,24919:32583029,43106917:17321452 -g1,24919:32583029,43106917 -) -(1,24919:6630773,43791772:25952256,407923,9908 -h1,24919:6630773,43791772:0,0,0 -g1,24919:7626635,43791772 -g1,24919:8290543,43791772 -g1,24919:8622497,43791772 -g1,24919:8954451,43791772 -g1,24919:9286405,43791772 -g1,24919:9618359,43791772 -g1,24919:9950313,43791772 -g1,24919:10282267,43791772 -g1,24919:10614221,43791772 -g1,24919:10946175,43791772 -g1,24919:12273991,43791772 -g1,24919:12605945,43791772 -g1,24919:12937899,43791772 -g1,24919:13269853,43791772 -g1,24919:13601807,43791772 -h1,24919:15261577,43791772:0,0,0 -k1,24919:32583029,43791772:17321452 -g1,24919:32583029,43791772 -) -(1,24919:6630773,44476627:25952256,424439,6605 -h1,24919:6630773,44476627:0,0,0 -g1,24919:7626635,44476627 -g1,24919:8290543,44476627 -g1,24919:8954451,44476627 -g1,24919:10614221,44476627 -h1,24919:11942037,44476627:0,0,0 -k1,24919:32583029,44476627:20640992 -g1,24919:32583029,44476627 -) -] -) -g1,24920:32583029,44483232 -g1,24920:6630773,44483232 -g1,24920:6630773,44483232 -g1,24920:32583029,44483232 -g1,24920:32583029,44483232 -) -h1,24920:6630773,44679840:0,0,0 -] -(1,24924:32583029,45706769:0,0,0 -g1,24924:32583029,45706769 -) -) -] -(1,24924:6630773,47279633:25952256,0,0 -h1,24924:6630773,47279633:25952256,0,0 -) -] -(1,24924:4262630,4025873:0,0,0 -[1,24924:-473656,4025873:0,0,0 -(1,24924:-473656,-710413:0,0,0 -(1,24924:-473656,-710413:0,0,0 -g1,24924:-473656,-710413 -) -g1,24924:-473656,-710413 +] +g1,24922:6630773,4812305 +k1,24922:21114230,4812305:13288080 +g1,24922:22736901,4812305 +g1,24922:23350318,4812305 +g1,24922:24759997,4812305 +g1,24922:28372341,4812305 +g1,24922:30105768,4812305 +) +) +] +[1,24922:6630773,45706769:25952256,40108032,0 +(1,24922:6630773,45706769:25952256,40108032,0 +(1,24922:6630773,45706769:0,0,0 +g1,24922:6630773,45706769 +) +[1,24922:6630773,45706769:25952256,40108032,0 +(1,24863:6630773,6254097:25952256,32768,229376 +(1,24863:6630773,6254097:0,32768,229376 +(1,24863:6630773,6254097:5505024,32768,229376 +r1,24922:12135797,6254097:5505024,262144,229376 +) +k1,24863:6630773,6254097:-5505024 +) +(1,24863:6630773,6254097:25952256,32768,0 +r1,24922:32583029,6254097:25952256,32768,0 +) +) +(1,24863:6630773,7885949:25952256,606339,14155 +(1,24863:6630773,7885949:2954625,582746,14155 +g1,24863:6630773,7885949 +g1,24863:9585398,7885949 +) +k1,24863:32583028,7885949:18986040 +g1,24863:32583028,7885949 +) +(1,24872:6630773,9144245:25952256,513147,134348 +k1,24871:8153628,9144245:251457 +k1,24871:9064376,9144245:251456 +k1,24871:10334918,9144245:251457 +k1,24871:14155465,9144245:251456 +k1,24871:15066214,9144245:251457 +k1,24871:17053064,9144245:251457 +k1,24871:20458112,9144245:251456 +k1,24871:21241066,9144245:251457 +k1,24871:22777029,9144245:251457 +k1,24871:25438899,9144245:251456 +k1,24871:26349648,9144245:251457 +k1,24871:28298486,9144245:251456 +k1,24871:29741388,9144245:251457 +k1,24871:32583029,9144245:0 +) +(1,24872:6630773,10009325:25952256,505283,134348 +k1,24871:7961250,10009325:226195 +k1,24871:8935210,10009325:226194 +k1,24871:12189824,10009325:226195 +k1,24871:13882714,10009325:226194 +k1,24871:17103249,10009325:226195 +k1,24871:19688084,10009325:226194 +k1,24871:20372376,10009325:226195 +k1,24871:23228530,10009325:226194 +k1,24871:24106153,10009325:226195 +k1,24871:25928804,10009325:226194 +k1,24871:26771037,10009325:226195 +k1,24871:27412047,10009325:226167 +k1,24871:29104938,10009325:226195 +k1,24871:31391584,10009325:226194 +k1,24871:32583029,10009325:0 +) +(1,24872:6630773,10874405:25952256,505283,134348 +k1,24871:9678746,10874405:227303 +k1,24871:11300000,10874405:227303 +k1,24871:13078540,10874405:227303 +k1,24871:14695206,10874405:227303 +k1,24871:16361024,10874405:227303 +k1,24871:17859725,10874405:227303 +k1,24871:20267411,10874405:227303 +k1,24871:23753819,10874405:227303 +k1,24871:25265628,10874405:227303 +k1,24871:25907746,10874405:227275 +k1,24871:28634592,10874405:227303 +k1,24871:30700180,10874405:227303 +k1,24871:32583029,10874405:0 +) +(1,24872:6630773,11739485:25952256,513147,134348 +k1,24871:9186200,11739485:265599 +k1,24871:10067838,11739485:265600 +k1,24871:12003294,11739485:265599 +k1,24871:13460339,11739485:265600 +k1,24871:18124715,11739485:265599 +k1,24871:21174284,11739485:265600 +k1,24871:24127514,11739485:265599 +k1,24871:27024385,11739485:265600 +k1,24871:29104676,11739485:265599 +k1,24871:30389361,11739485:265600 +k1,24871:31923737,11739485:265599 +k1,24871:32583029,11739485:0 +) +(1,24872:6630773,12604565:25952256,505283,134348 +k1,24871:8237622,12604565:217486 +k1,24871:9719953,12604565:217486 +k1,24871:11331389,12604565:217485 +k1,24871:13434346,12604565:217486 +k1,24871:14109929,12604565:217486 +k1,24871:14858912,12604565:217486 +k1,24871:17706358,12604565:217486 +k1,24871:18575271,12604565:217485 +k1,24871:20562884,12604565:217486 +k1,24871:23315303,12604565:217486 +k1,24871:25918299,12604565:217486 +k1,24871:28896160,12604565:217485 +k1,24871:30132731,12604565:217486 +k1,24871:31931601,12604565:217486 +k1,24871:32583029,12604565:0 +) +(1,24872:6630773,13469645:25952256,505283,134348 +k1,24871:8402586,13469645:201570 +k1,24871:9998107,13469645:201570 +k1,24871:11589040,13469645:201570 +k1,24871:12406648,13469645:201570 +k1,24871:15761810,13469645:201570 +k1,24871:17698773,13469645:201570 +k1,24871:18919429,13469645:201571 +k1,24871:20774472,13469645:201570 +k1,24871:22699639,13469645:201570 +k1,24871:23587371,13469645:201570 +k1,24871:25486979,13469645:201570 +k1,24871:27423942,13469645:201570 +k1,24871:29598145,13469645:201570 +k1,24871:31193666,13469645:201570 +k1,24871:32583029,13469645:0 +) +(1,24872:6630773,14334725:25952256,505283,134348 +k1,24871:8816000,14334725:147057 +k1,24871:9579094,14334725:147056 +k1,24871:12357422,14334725:147057 +k1,24871:14414801,14334725:147005 +k1,24871:15793934,14334725:147056 +k1,24871:18358614,14334725:147057 +h1,24871:18757073,14334725:0,0,0 +k1,24871:19284893,14334725:147056 +k1,24871:20812794,14334725:147057 +k1,24871:21491348,14334725:147057 +k1,24871:22409107,14334725:147056 +k1,24871:25765462,14334725:147057 +k1,24871:28396333,14334725:147056 +k1,24871:29615559,14334725:147057 +k1,24871:32583029,14334725:0 +) +(1,24872:6630773,15199805:25952256,513147,134348 +k1,24871:9232365,15199805:240985 +k1,24871:10124778,15199805:240985 +k1,24871:11113529,15199805:240985 +k1,24871:13720364,15199805:240985 +k1,24871:14980434,15199805:240985 +k1,24871:17047907,15199805:240985 +k1,24871:17948185,15199805:240986 +k1,24871:19392411,15199805:240985 +k1,24871:21389106,15199805:240985 +k1,24871:22583640,15199805:240985 +k1,24871:25254700,15199805:240985 +k1,24871:25851545,15199805:240985 +k1,24871:27225648,15199805:240985 +k1,24871:29591310,15199805:240985 +k1,24871:32583029,15199805:0 +) +(1,24872:6630773,16064885:25952256,513147,126483 +k1,24871:7507998,16064885:225797 +k1,24871:9394476,16064885:225796 +k1,24871:10639358,16064885:225797 +k1,24871:12219128,16064885:225796 +k1,24871:14396587,16064885:225797 +k1,24871:15694552,16064885:225796 +k1,24871:19131613,16064885:225797 +k1,24871:21735711,16064885:225796 +k1,24871:24141891,16064885:225797 +k1,24871:26717808,16064885:225796 +k1,24871:27393182,16064885:225797 +k1,24871:28543036,16064885:225796 +k1,24871:30303031,16064885:225797 +k1,24872:32583029,16064885:0 +) +(1,24872:6630773,16929965:25952256,505283,95026 +g1,24871:9940340,16929965 +g1,24871:10743811,16929965 +g1,24871:11677699,16929965 +k1,24872:32583029,16929965:19051972 +g1,24872:32583029,16929965 +) +(1,24874:6630773,17795045:25952256,505283,134348 +h1,24873:6630773,17795045:983040,0,0 +k1,24873:8967282,17795045:156782 +k1,24873:12351057,17795045:156782 +k1,24873:14193426,17795045:156783 +k1,24873:17531326,17795045:156782 +k1,24873:18339536,17795045:156782 +k1,24873:20231711,17795045:156782 +k1,24873:22361127,17795045:156783 +k1,24873:24006232,17795045:156782 +k1,24873:25556965,17795045:156782 +k1,24873:26732832,17795045:156782 +k1,24873:28419881,17795045:156783 +k1,24873:29228091,17795045:156782 +k1,24873:32227169,17795045:156782 +k1,24873:32583029,17795045:0 +) +(1,24874:6630773,18660125:25952256,505283,134348 +k1,24873:10314272,18660125:177323 +k1,24873:11143024,18660125:177324 +k1,24873:11676207,18660125:177323 +k1,24873:13347751,18660125:177323 +k1,24873:14207959,18660125:177323 +k1,24873:16639722,18660125:177324 +k1,24873:19814006,18660125:177323 +k1,24873:20944878,18660125:177323 +k1,24873:22254663,18660125:177323 +k1,24873:23524472,18660125:177324 +k1,24873:24116616,18660125:177301 +k1,24873:26874091,18660125:177323 +k1,24873:29824898,18660125:177324 +k1,24873:30653649,18660125:177323 +k1,24873:32583029,18660125:0 +) +(1,24874:6630773,19525205:25952256,505283,134348 +k1,24873:7246374,19525205:259741 +k1,24873:9000336,19525205:259741 +k1,24873:12593238,19525205:259741 +k1,24873:14864279,19525205:259741 +k1,24873:18120981,19525205:259741 +k1,24873:20766232,19525205:259741 +k1,24873:24021624,19525205:259741 +k1,24873:27798027,19525205:259741 +k1,24873:29759738,19525205:259741 +k1,24873:32583029,19525205:0 +) +(1,24874:6630773,20390285:25952256,513147,134348 +k1,24873:9438573,20390285:231580 +k1,24873:10661714,20390285:231581 +k1,24873:12179110,20390285:231580 +k1,24873:15368331,20390285:231581 +k1,24873:16553460,20390285:231580 +k1,24873:17917503,20390285:231581 +k1,24873:19241568,20390285:231580 +k1,24873:24191741,20390285:231581 +k1,24873:25812684,20390285:231580 +k1,24873:27611886,20390285:231581 +k1,24873:31649796,20390285:231580 +k1,24873:32583029,20390285:0 +) +(1,24874:6630773,21255365:25952256,505283,126483 +g1,24873:8033243,21255365 +k1,24874:32583028,21255365:21835940 +g1,24874:32583028,21255365 +) +v1,24876:6630773,21940220:0,393216,0 +(1,24918:6630773,44483232:25952256,22936228,196608 +g1,24918:6630773,44483232 +g1,24918:6630773,44483232 +g1,24918:6434165,44483232 +(1,24918:6434165,44483232:0,22936228,196608 +r1,24922:32779637,44483232:26345472,23132836,196608 +k1,24918:6434165,44483232:-26345472 +) +(1,24918:6434165,44483232:26345472,22936228,196608 +[1,24918:6630773,44483232:25952256,22739620,0 +(1,24878:6630773,22168051:25952256,424439,106246 +(1,24877:6630773,22168051:0,0,0 +g1,24877:6630773,22168051 +g1,24877:6630773,22168051 +g1,24877:6303093,22168051 +(1,24877:6303093,22168051:0,0,0 +) +g1,24877:6630773,22168051 +) +k1,24878:6630773,22168051:0 +h1,24878:11278129,22168051:0,0,0 +k1,24878:32583029,22168051:21304900 +g1,24878:32583029,22168051 +) +(1,24879:6630773,22852906:25952256,424439,106246 +h1,24879:6630773,22852906:0,0,0 +g1,24879:7958589,22852906 +g1,24879:8954451,22852906 +g1,24879:20240885,22852906 +g1,24879:22564563,22852906 +g1,24879:23228471,22852906 +h1,24879:26879964,22852906:0,0,0 +k1,24879:32583029,22852906:5703065 +g1,24879:32583029,22852906 +) +(1,24880:6630773,23537761:25952256,424439,106246 +h1,24880:6630773,23537761:0,0,0 +g1,24880:10946175,23537761 +g1,24880:18581115,23537761 +k1,24880:18581115,23537761:0 +h1,24880:21900654,23537761:0,0,0 +k1,24880:32583029,23537761:10682375 +g1,24880:32583029,23537761 +) +(1,24881:6630773,24222616:25952256,388105,106246 +h1,24881:6630773,24222616:0,0,0 +g1,24881:6962727,24222616 +g1,24881:7294681,24222616 +g1,24881:7626635,24222616 +g1,24881:7958589,24222616 +g1,24881:8290543,24222616 +g1,24881:8622497,24222616 +g1,24881:8954451,24222616 +g1,24881:9286405,24222616 +g1,24881:12605944,24222616 +g1,24881:13269852,24222616 +k1,24881:13269852,24222616:0 +h1,24881:15261576,24222616:0,0,0 +k1,24881:32583028,24222616:17321452 +g1,24881:32583028,24222616 +) +(1,24882:6630773,24907471:25952256,424439,79822 +h1,24882:6630773,24907471:0,0,0 +g1,24882:6962727,24907471 +g1,24882:7294681,24907471 +g1,24882:7626635,24907471 +g1,24882:7958589,24907471 +g1,24882:8290543,24907471 +g1,24882:8622497,24907471 +g1,24882:8954451,24907471 +g1,24882:9286405,24907471 +g1,24882:11942037,24907471 +g1,24882:12605945,24907471 +k1,24882:12605945,24907471:0 +h1,24882:14265715,24907471:0,0,0 +k1,24882:32583029,24907471:18317314 +g1,24882:32583029,24907471 +) +(1,24883:6630773,25592326:25952256,424439,106246 +h1,24883:6630773,25592326:0,0,0 +g1,24883:6962727,25592326 +g1,24883:7294681,25592326 +g1,24883:7626635,25592326 +g1,24883:7958589,25592326 +g1,24883:8290543,25592326 +g1,24883:8622497,25592326 +g1,24883:8954451,25592326 +g1,24883:9286405,25592326 +g1,24883:9618359,25592326 +g1,24883:9950313,25592326 +g1,24883:15261576,25592326 +g1,24883:20904793,25592326 +k1,24883:20904793,25592326:0 +h1,24883:25552148,25592326:0,0,0 +k1,24883:32583029,25592326:7030881 +g1,24883:32583029,25592326 +) +(1,24884:6630773,26277181:25952256,424439,86428 +h1,24884:6630773,26277181:0,0,0 +g1,24884:6962727,26277181 +g1,24884:7294681,26277181 +g1,24884:7626635,26277181 +g1,24884:7958589,26277181 +g1,24884:8290543,26277181 +g1,24884:8622497,26277181 +g1,24884:8954451,26277181 +g1,24884:9286405,26277181 +g1,24884:9618359,26277181 +g1,24884:9950313,26277181 +k1,24884:9950313,26277181:0 +h1,24884:12273991,26277181:0,0,0 +k1,24884:32583029,26277181:20309038 +g1,24884:32583029,26277181 +) +(1,24885:6630773,26962036:25952256,424439,86428 +h1,24885:6630773,26962036:0,0,0 +g1,24885:6962727,26962036 +g1,24885:7294681,26962036 +g1,24885:7626635,26962036 +g1,24885:7958589,26962036 +g1,24885:8290543,26962036 +g1,24885:8622497,26962036 +g1,24885:8954451,26962036 +g1,24885:9286405,26962036 +g1,24885:9618359,26962036 +g1,24885:9950313,26962036 +k1,24885:9950313,26962036:0 +h1,24885:15261576,26962036:0,0,0 +k1,24885:32583028,26962036:17321452 +g1,24885:32583028,26962036 +) +(1,24886:6630773,27646891:25952256,424439,106246 +h1,24886:6630773,27646891:0,0,0 +g1,24886:6962727,27646891 +g1,24886:7294681,27646891 +g1,24886:7626635,27646891 +g1,24886:7958589,27646891 +g1,24886:8290543,27646891 +g1,24886:8622497,27646891 +g1,24886:8954451,27646891 +g1,24886:9286405,27646891 +g1,24886:9618359,27646891 +g1,24886:9950313,27646891 +k1,24886:9950313,27646891:0 +h1,24886:13933760,27646891:0,0,0 +k1,24886:32583028,27646891:18649268 +g1,24886:32583028,27646891 +) +(1,24887:6630773,28331746:25952256,431045,106246 +h1,24887:6630773,28331746:0,0,0 +g1,24887:6962727,28331746 +g1,24887:7294681,28331746 +g1,24887:7626635,28331746 +g1,24887:7958589,28331746 +g1,24887:8290543,28331746 +g1,24887:8622497,28331746 +g1,24887:8954451,28331746 +g1,24887:9286405,28331746 +g1,24887:9618359,28331746 +g1,24887:9950313,28331746 +k1,24887:9950313,28331746:0 +h1,24887:14597668,28331746:0,0,0 +k1,24887:32583028,28331746:17985360 +g1,24887:32583028,28331746 +) +(1,24888:6630773,29016601:25952256,431045,106246 +h1,24888:6630773,29016601:0,0,0 +g1,24888:6962727,29016601 +g1,24888:7294681,29016601 +g1,24888:7626635,29016601 +g1,24888:7958589,29016601 +g1,24888:8290543,29016601 +g1,24888:8622497,29016601 +g1,24888:8954451,29016601 +g1,24888:9286405,29016601 +g1,24888:9618359,29016601 +g1,24888:9950313,29016601 +h1,24888:14929622,29016601:0,0,0 +k1,24888:32583030,29016601:17653408 +g1,24888:32583030,29016601 +) +(1,24889:6630773,29701456:25952256,424439,79822 +h1,24889:6630773,29701456:0,0,0 +g1,24889:6962727,29701456 +g1,24889:7294681,29701456 +g1,24889:7626635,29701456 +g1,24889:7958589,29701456 +g1,24889:8290543,29701456 +g1,24889:8622497,29701456 +g1,24889:8954451,29701456 +g1,24889:9286405,29701456 +h1,24889:9618359,29701456:0,0,0 +k1,24889:32583029,29701456:22964670 +g1,24889:32583029,29701456 +) +(1,24890:6630773,30386311:25952256,424439,79822 +h1,24890:6630773,30386311:0,0,0 +h1,24890:6962727,30386311:0,0,0 +k1,24890:32583029,30386311:25620302 +g1,24890:32583029,30386311 +) +(1,24891:6630773,31071166:25952256,424439,86428 +h1,24891:6630773,31071166:0,0,0 +g1,24891:10282266,31071166 +g1,24891:11278128,31071166 +g1,24891:14265714,31071166 +h1,24891:17585253,31071166:0,0,0 +k1,24891:32583029,31071166:14997776 +g1,24891:32583029,31071166 +) +(1,24892:6630773,31756021:25952256,424439,79822 +h1,24892:6630773,31756021:0,0,0 +k1,24892:6630773,31756021:0 +h1,24892:13269851,31756021:0,0,0 +k1,24892:32583029,31756021:19313178 +g1,24892:32583029,31756021 +) +(1,24901:6630773,32571948:25952256,431045,112852 +(1,24894:6630773,32571948:0,0,0 +g1,24894:6630773,32571948 +g1,24894:6630773,32571948 +g1,24894:6303093,32571948 +(1,24894:6303093,32571948:0,0,0 +) +g1,24894:6630773,32571948 +) +g1,24901:7626635,32571948 +g1,24901:7958589,32571948 +g1,24901:9286405,32571948 +g1,24901:11610083,32571948 +g1,24901:11942037,32571948 +g1,24901:12273991,32571948 +g1,24901:12605945,32571948 +g1,24901:12937899,32571948 +g1,24901:13269853,32571948 +g1,24901:13601807,32571948 +g1,24901:13933761,32571948 +g1,24901:14265715,32571948 +g1,24901:14597669,32571948 +g1,24901:14929623,32571948 +g1,24901:18581116,32571948 +g1,24901:18913070,32571948 +g1,24901:19245024,32571948 +g1,24901:19576978,32571948 +g1,24901:19908932,32571948 +g1,24901:20240886,32571948 +g1,24901:20572840,32571948 +g1,24901:25220195,32571948 +g1,24901:25552149,32571948 +g1,24901:25884103,32571948 +g1,24901:26216057,32571948 +h1,24901:30531458,32571948:0,0,0 +k1,24901:32583029,32571948:2051571 +g1,24901:32583029,32571948 +) +(1,24901:6630773,33256803:25952256,431045,106246 +h1,24901:6630773,33256803:0,0,0 +g1,24901:7626635,33256803 +g1,24901:7958589,33256803 +g1,24901:9286405,33256803 +g1,24901:13933760,33256803 +g1,24901:14265714,33256803 +g1,24901:14597668,33256803 +g1,24901:14929622,33256803 +g1,24901:20240885,33256803 +g1,24901:20572839,33256803 +g1,24901:24888240,33256803 +g1,24901:25220194,33256803 +g1,24901:25552148,33256803 +g1,24901:25884102,33256803 +g1,24901:26216056,33256803 +h1,24901:31195365,33256803:0,0,0 +k1,24901:32583029,33256803:1387664 +g1,24901:32583029,33256803 +) +(1,24901:6630773,33941658:25952256,424439,106246 +h1,24901:6630773,33941658:0,0,0 +g1,24901:7626635,33941658 +g1,24901:7958589,33941658 +g1,24901:9286405,33941658 +g1,24901:13601806,33941658 +g1,24901:13933760,33941658 +g1,24901:14265714,33941658 +g1,24901:14597668,33941658 +g1,24901:14929622,33941658 +g1,24901:20240885,33941658 +g1,24901:20572839,33941658 +g1,24901:25220194,33941658 +g1,24901:25552148,33941658 +g1,24901:25884102,33941658 +g1,24901:26216056,33941658 +h1,24901:29867549,33941658:0,0,0 +k1,24901:32583029,33941658:2715480 +g1,24901:32583029,33941658 +) +(1,24901:6630773,34626513:25952256,424439,106246 +h1,24901:6630773,34626513:0,0,0 +g1,24901:7626635,34626513 +g1,24901:9286405,34626513 +g1,24901:13601806,34626513 +g1,24901:13933760,34626513 +g1,24901:14265714,34626513 +g1,24901:14597668,34626513 +g1,24901:14929622,34626513 +g1,24901:20572839,34626513 +g1,24901:24888240,34626513 +g1,24901:25220194,34626513 +g1,24901:25552148,34626513 +g1,24901:25884102,34626513 +g1,24901:26216056,34626513 +h1,24901:28871687,34626513:0,0,0 +k1,24901:32583029,34626513:3711342 +g1,24901:32583029,34626513 +) +(1,24901:6630773,35311368:25952256,431045,106246 +h1,24901:6630773,35311368:0,0,0 +g1,24901:7626635,35311368 +g1,24901:9286405,35311368 +g1,24901:12273990,35311368 +g1,24901:12605944,35311368 +g1,24901:12937898,35311368 +g1,24901:13269852,35311368 +g1,24901:13601806,35311368 +g1,24901:13933760,35311368 +g1,24901:14265714,35311368 +g1,24901:14597668,35311368 +g1,24901:14929622,35311368 +g1,24901:19908931,35311368 +g1,24901:20240885,35311368 +g1,24901:20572839,35311368 +g1,24901:24224332,35311368 +g1,24901:24556286,35311368 +g1,24901:24888240,35311368 +g1,24901:25220194,35311368 +g1,24901:25552148,35311368 +g1,24901:25884102,35311368 +g1,24901:26216056,35311368 +h1,24901:30863411,35311368:0,0,0 +k1,24901:32583029,35311368:1719618 +g1,24901:32583029,35311368 +) +(1,24901:6630773,35996223:25952256,431045,79822 +h1,24901:6630773,35996223:0,0,0 +g1,24901:7626635,35996223 +g1,24901:9286405,35996223 +h1,24901:13601806,35996223:0,0,0 +k1,24901:32583030,35996223:18981224 +g1,24901:32583030,35996223 +) +(1,24903:6630773,36812150:25952256,424439,79822 +(1,24902:6630773,36812150:0,0,0 +g1,24902:6630773,36812150 +g1,24902:6630773,36812150 +g1,24902:6303093,36812150 +(1,24902:6303093,36812150:0,0,0 +) +g1,24902:6630773,36812150 +) +g1,24903:10282266,36812150 +k1,24903:10282266,36812150:0 +h1,24903:10946174,36812150:0,0,0 +k1,24903:32583030,36812150:21636856 +g1,24903:32583030,36812150 +) +(1,24904:6630773,37497005:25952256,431045,86428 +h1,24904:6630773,37497005:0,0,0 +g1,24904:6962727,37497005 +g1,24904:7294681,37497005 +g1,24904:11610083,37497005 +g1,24904:12273991,37497005 +g1,24904:13269853,37497005 +g1,24904:17917208,37497005 +g1,24904:18581116,37497005 +g1,24904:19576978,37497005 +k1,24904:19576978,37497005:0 +h1,24904:20240886,37497005:0,0,0 +k1,24904:32583029,37497005:12342143 +g1,24904:32583029,37497005 +) +(1,24905:6630773,38181860:25952256,431045,112852 +h1,24905:6630773,38181860:0,0,0 +g1,24905:6962727,38181860 +g1,24905:7294681,38181860 +g1,24905:12273990,38181860 +g1,24905:12937898,38181860 +g1,24905:13933760,38181860 +g1,24905:18249161,38181860 +k1,24905:18249161,38181860:0 +h1,24905:18913069,38181860:0,0,0 +k1,24905:32583029,38181860:13669960 +g1,24905:32583029,38181860 +) +(1,24906:6630773,38866715:25952256,424439,112852 +h1,24906:6630773,38866715:0,0,0 +g1,24906:6962727,38866715 +g1,24906:7294681,38866715 +g1,24906:12605944,38866715 +g1,24906:13269852,38866715 +g1,24906:14265714,38866715 +g1,24906:17585253,38866715 +g1,24906:18249161,38866715 +g1,24906:23892378,38866715 +g1,24906:25884102,38866715 +g1,24906:26548010,38866715 +g1,24906:28539734,38866715 +g1,24906:29203642,38866715 +g1,24906:30199504,38866715 +g1,24906:30863412,38866715 +h1,24906:32523182,38866715:0,0,0 +k1,24906:32583029,38866715:59847 +g1,24906:32583029,38866715 +) +(1,24917:6630773,39682642:25952256,424439,86428 +(1,24908:6630773,39682642:0,0,0 +g1,24908:6630773,39682642 +g1,24908:6630773,39682642 +g1,24908:6303093,39682642 +(1,24908:6303093,39682642:0,0,0 +) +g1,24908:6630773,39682642 +) +g1,24917:7626635,39682642 +g1,24917:8290543,39682642 +g1,24917:10946175,39682642 +g1,24917:11278129,39682642 +g1,24917:11610083,39682642 +g1,24917:12937899,39682642 +g1,24917:14265715,39682642 +g1,24917:14929623,39682642 +h1,24917:15593531,39682642:0,0,0 +k1,24917:32583029,39682642:16989498 +g1,24917:32583029,39682642 +) +(1,24917:6630773,40367497:25952256,424439,106246 +h1,24917:6630773,40367497:0,0,0 +g1,24917:7626635,40367497 +g1,24917:8290543,40367497 +g1,24917:11610082,40367497 +g1,24917:13933760,40367497 +g1,24917:16257438,40367497 +h1,24917:19576977,40367497:0,0,0 +k1,24917:32583029,40367497:13006052 +g1,24917:32583029,40367497 +) +(1,24917:6630773,41052352:25952256,431045,112852 +h1,24917:6630773,41052352:0,0,0 +g1,24917:7626635,41052352 +g1,24917:7958589,41052352 +g1,24917:8290543,41052352 +g1,24917:12273990,41052352 +h1,24917:15261575,41052352:0,0,0 +k1,24917:32583029,41052352:17321454 +g1,24917:32583029,41052352 +) +(1,24917:6630773,41737207:25952256,424439,6605 +h1,24917:6630773,41737207:0,0,0 +g1,24917:7626635,41737207 +g1,24917:7958589,41737207 +g1,24917:8290543,41737207 +g1,24917:8622497,41737207 +g1,24917:8954451,41737207 +g1,24917:9286405,41737207 +g1,24917:9618359,41737207 +g1,24917:9950313,41737207 +g1,24917:10282267,41737207 +g1,24917:12273991,41737207 +g1,24917:12605945,41737207 +g1,24917:12937899,41737207 +g1,24917:13269853,41737207 +g1,24917:13601807,41737207 +k1,24917:13601807,41737207:0 +h1,24917:15261577,41737207:0,0,0 +k1,24917:32583029,41737207:17321452 +g1,24917:32583029,41737207 +) +(1,24917:6630773,42422062:25952256,407923,9908 +h1,24917:6630773,42422062:0,0,0 +g1,24917:7626635,42422062 +g1,24917:8290543,42422062 +g1,24917:8622497,42422062 +g1,24917:8954451,42422062 +g1,24917:9286405,42422062 +g1,24917:9618359,42422062 +g1,24917:9950313,42422062 +g1,24917:10282267,42422062 +g1,24917:10614221,42422062 +g1,24917:10946175,42422062 +g1,24917:12273991,42422062 +g1,24917:12605945,42422062 +g1,24917:12937899,42422062 +g1,24917:13269853,42422062 +g1,24917:13601807,42422062 +h1,24917:15261577,42422062:0,0,0 +k1,24917:32583029,42422062:17321452 +g1,24917:32583029,42422062 +) +(1,24917:6630773,43106917:25952256,407923,9908 +h1,24917:6630773,43106917:0,0,0 +g1,24917:7626635,43106917 +g1,24917:8290543,43106917 +g1,24917:8622497,43106917 +g1,24917:8954451,43106917 +g1,24917:9286405,43106917 +g1,24917:9618359,43106917 +g1,24917:9950313,43106917 +g1,24917:10282267,43106917 +g1,24917:10614221,43106917 +g1,24917:10946175,43106917 +g1,24917:12273991,43106917 +g1,24917:12605945,43106917 +g1,24917:12937899,43106917 +g1,24917:13269853,43106917 +g1,24917:13601807,43106917 +h1,24917:15261577,43106917:0,0,0 +k1,24917:32583029,43106917:17321452 +g1,24917:32583029,43106917 +) +(1,24917:6630773,43791772:25952256,407923,9908 +h1,24917:6630773,43791772:0,0,0 +g1,24917:7626635,43791772 +g1,24917:8290543,43791772 +g1,24917:8622497,43791772 +g1,24917:8954451,43791772 +g1,24917:9286405,43791772 +g1,24917:9618359,43791772 +g1,24917:9950313,43791772 +g1,24917:10282267,43791772 +g1,24917:10614221,43791772 +g1,24917:10946175,43791772 +g1,24917:12273991,43791772 +g1,24917:12605945,43791772 +g1,24917:12937899,43791772 +g1,24917:13269853,43791772 +g1,24917:13601807,43791772 +h1,24917:15261577,43791772:0,0,0 +k1,24917:32583029,43791772:17321452 +g1,24917:32583029,43791772 +) +(1,24917:6630773,44476627:25952256,424439,6605 +h1,24917:6630773,44476627:0,0,0 +g1,24917:7626635,44476627 +g1,24917:8290543,44476627 +g1,24917:8954451,44476627 +g1,24917:10614221,44476627 +h1,24917:11942037,44476627:0,0,0 +k1,24917:32583029,44476627:20640992 +g1,24917:32583029,44476627 +) +] +) +g1,24918:32583029,44483232 +g1,24918:6630773,44483232 +g1,24918:6630773,44483232 +g1,24918:32583029,44483232 +g1,24918:32583029,44483232 +) +h1,24918:6630773,44679840:0,0,0 +] +(1,24922:32583029,45706769:0,0,0 +g1,24922:32583029,45706769 +) +) +] +(1,24922:6630773,47279633:25952256,0,0 +h1,24922:6630773,47279633:25952256,0,0 +) +] +(1,24922:4262630,4025873:0,0,0 +[1,24922:-473656,4025873:0,0,0 +(1,24922:-473656,-710413:0,0,0 +(1,24922:-473656,-710413:0,0,0 +g1,24922:-473656,-710413 +) +g1,24922:-473656,-710413 ) ] ) ] !26413 -}427 -Input:4600:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4601:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4602:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4603:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}428 +Input:4604:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4605:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4606:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4607:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !380 -{428 -[1,24985:4262630,47279633:28320399,43253760,0 -(1,24985:4262630,4025873:0,0,0 -[1,24985:-473656,4025873:0,0,0 -(1,24985:-473656,-710413:0,0,0 -(1,24985:-473656,-644877:0,0,0 -k1,24985:-473656,-644877:-65536 +{429 +[1,24983:4262630,47279633:28320399,43253760,0 +(1,24983:4262630,4025873:0,0,0 +[1,24983:-473656,4025873:0,0,0 +(1,24983:-473656,-710413:0,0,0 +(1,24983:-473656,-644877:0,0,0 +k1,24983:-473656,-644877:-65536 ) -(1,24985:-473656,4736287:0,0,0 -k1,24985:-473656,4736287:5209943 +(1,24983:-473656,4736287:0,0,0 +k1,24983:-473656,4736287:5209943 ) -g1,24985:-473656,-710413 +g1,24983:-473656,-710413 ) ] ) -[1,24985:6630773,47279633:25952256,43253760,0 -[1,24985:6630773,4812305:25952256,786432,0 -(1,24985:6630773,4812305:25952256,513147,126483 -(1,24985:6630773,4812305:25952256,513147,126483 -g1,24985:3078558,4812305 -[1,24985:3078558,4812305:0,0,0 -(1,24985:3078558,2439708:0,1703936,0 -k1,24985:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,24985:2537886,2439708:1179648,16384,0 +[1,24983:6630773,47279633:25952256,43253760,0 +[1,24983:6630773,4812305:25952256,786432,0 +(1,24983:6630773,4812305:25952256,513147,126483 +(1,24983:6630773,4812305:25952256,513147,126483 +g1,24983:3078558,4812305 +[1,24983:3078558,4812305:0,0,0 +(1,24983:3078558,2439708:0,1703936,0 +k1,24983:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,24983:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,24985:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,24983:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,24985:3078558,4812305:0,0,0 -(1,24985:3078558,2439708:0,1703936,0 -g1,24985:29030814,2439708 -g1,24985:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,24985:36151628,1915420:16384,1179648,0 +[1,24983:3078558,4812305:0,0,0 +(1,24983:3078558,2439708:0,1703936,0 +g1,24983:29030814,2439708 +g1,24983:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,24983:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,24985:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,24983:37855564,2439708:1179648,16384,0 ) ) -k1,24985:3078556,2439708:-34777008 +k1,24983:3078556,2439708:-34777008 ) ] -[1,24985:3078558,4812305:0,0,0 -(1,24985:3078558,49800853:0,16384,2228224 -k1,24985:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,24985:2537886,49800853:1179648,16384,0 +[1,24983:3078558,4812305:0,0,0 +(1,24983:3078558,49800853:0,16384,2228224 +k1,24983:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,24983:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,24985:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,24983:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] -) -) -) -] -[1,24985:3078558,4812305:0,0,0 -(1,24985:3078558,49800853:0,16384,2228224 -g1,24985:29030814,49800853 -g1,24985:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,24985:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,24985:37855564,49800853:1179648,16384,0 -) -) -k1,24985:3078556,49800853:-34777008 -) -] -g1,24985:6630773,4812305 -g1,24985:6630773,4812305 -g1,24985:8364200,4812305 -g1,24985:12047323,4812305 -g1,24985:13789270,4812305 -g1,24985:16531951,4812305 -g1,24985:19077369,4812305 -k1,24985:31387652,4812305:12310283 -) -) -] -[1,24985:6630773,45706769:25952256,40108032,0 -(1,24985:6630773,45706769:25952256,40108032,0 -(1,24985:6630773,45706769:0,0,0 -g1,24985:6630773,45706769 -) -[1,24985:6630773,45706769:25952256,40108032,0 -v1,24924:6630773,6254097:0,393216,0 -(1,24925:6630773,8419038:25952256,2558157,0 -g1,24925:6630773,8419038 -g1,24925:6237557,8419038 -r1,24985:6368629,8419038:131072,2558157,0 -g1,24925:6567858,8419038 -g1,24925:6764466,8419038 -[1,24925:6764466,8419038:25818563,2558157,0 -(1,24925:6764466,6562395:25818563,701514,196608 -(1,24924:6764466,6562395:0,701514,196608 -r1,24985:7761522,6562395:997056,898122,196608 -k1,24924:6764466,6562395:-997056 -) -(1,24924:6764466,6562395:997056,701514,196608 -) -k1,24924:7932934,6562395:171412 -k1,24924:8260614,6562395:327680 -k1,24924:10966960,6562395:171413 -k1,24924:13523882,6562395:171412 -k1,24924:16837091,6562395:171413 -k1,24924:18397866,6562395:171412 -k1,24924:20289599,6562395:171413 -k1,24924:21745517,6562395:171412 -k1,24924:23009415,6562395:171413 -k1,24924:25153460,6562395:171412 -k1,24924:27408918,6562395:171413 -k1,24924:28847796,6562395:171412 -k1,24924:30249292,6562395:171385 -k1,24924:32583029,6562395:0 -) -(1,24925:6764466,7427475:25818563,505283,134348 -k1,24924:7673778,7427475:257884 -k1,24924:11258925,7427475:257884 -k1,24924:13372789,7427475:257884 -k1,24924:15124894,7427475:257884 -k1,24924:16065663,7427475:257884 -k1,24924:18751656,7427475:257884 -k1,24924:19827429,7427475:257884 -k1,24924:21474021,7427475:257884 -k1,24924:22418067,7427475:257884 -k1,24924:24330735,7427475:257884 -k1,24924:25580179,7427475:257884 -k1,24924:26647433,7427475:257884 -k1,24924:29912109,7427475:257884 -k1,24924:31563944,7427475:257884 -k1,24924:32583029,7427475:0 -) -(1,24925:6764466,8292555:25818563,513147,126483 -g1,24924:9802715,8292555 -g1,24924:11021029,8292555 -g1,24924:12312743,8292555 -g1,24924:13171264,8292555 -g1,24924:13726353,8292555 -g1,24924:16748873,8292555 -g1,24924:17479599,8292555 -g1,24924:19841516,8292555 -g1,24924:23771054,8292555 -g1,24924:24621711,8292555 -g1,24924:25840025,8292555 -g1,24924:26454097,8292555 -k1,24925:32583029,8292555:4695660 -g1,24925:32583029,8292555 -) -] -g1,24925:32583029,8419038 -) -h1,24925:6630773,8419038:0,0,0 -v1,24929:6630773,9284118:0,393216,0 -(1,24940:6630773,12338073:25952256,3447171,0 -g1,24940:6630773,12338073 -g1,24940:6237557,12338073 -r1,24985:6368629,12338073:131072,3447171,0 -g1,24940:6567858,12338073 -g1,24940:6764466,12338073 -[1,24940:6764466,12338073:25818563,3447171,0 -(1,24931:6764466,9592416:25818563,701514,196608 -(1,24929:6764466,9592416:0,701514,196608 -r1,24985:7761522,9592416:997056,898122,196608 -k1,24929:6764466,9592416:-997056 -) -(1,24929:6764466,9592416:997056,701514,196608 -) -k1,24929:7940422,9592416:178900 -k1,24929:8268102,9592416:327680 -k1,24929:8916895,9592416:178900 -k1,24929:9627292,9592416:178900 -k1,24929:11935457,9592416:178900 -k1,24929:13698361,9592416:178899 -k1,24929:14528689,9592416:178900 -k1,24929:16364339,9592416:178900 -k1,24929:17552493,9592416:178900 -k1,24929:18922838,9592416:178900 -k1,24929:19717776,9592416:178900 -k1,24929:20915761,9592416:178900 -k1,24929:22461742,9592416:178900 -k1,24929:23299934,9592416:178900 -k1,24929:24497919,9592416:178900 -k1,24929:26432528,9592416:178899 -k1,24929:27630513,9592416:178900 -k1,24929:29144381,9592416:178900 -k1,24929:30561256,9592416:178900 -k1,24929:31391584,9592416:178900 -k1,24929:32583029,9592416:0 -) -(1,24931:6764466,10457496:25818563,505283,126483 -g1,24929:8248201,10457496 -g1,24929:9466515,10457496 -g1,24929:12657463,10457496 -g1,24930:13960974,10457496 -g1,24930:14907969,10457496 -g1,24930:16225242,10457496 -g1,24930:17040509,10457496 -g1,24930:17595598,10457496 -g1,24930:20051887,10457496 -k1,24931:32583029,10457496:10232795 -g1,24931:32583029,10457496 -) -v1,24933:6764466,11142351:0,393216,0 -(1,24938:6764466,12141465:25818563,1392330,196608 -g1,24938:6764466,12141465 -g1,24938:6764466,12141465 -g1,24938:6567858,12141465 -(1,24938:6567858,12141465:0,1392330,196608 -r1,24985:32779637,12141465:26211779,1588938,196608 -k1,24938:6567857,12141465:-26211780 -) -(1,24938:6567858,12141465:26211779,1392330,196608 -[1,24938:6764466,12141465:25818563,1195722,0 -(1,24935:6764466,11370182:25818563,424439,86428 -(1,24934:6764466,11370182:0,0,0 -g1,24934:6764466,11370182 -g1,24934:6764466,11370182 -g1,24934:6436786,11370182 -(1,24934:6436786,11370182:0,0,0 -) -g1,24934:6764466,11370182 -) -k1,24935:6764466,11370182:0 -g1,24935:12407683,11370182 -g1,24935:15727222,11370182 -g1,24935:16391130,11370182 -h1,24935:18050900,11370182:0,0,0 -k1,24935:32583029,11370182:14532129 -g1,24935:32583029,11370182 -) -(1,24936:6764466,12055037:25818563,424439,86428 -h1,24936:6764466,12055037:0,0,0 -g1,24936:13403545,12055037 -g1,24936:16723084,12055037 -g1,24936:17386992,12055037 -h1,24936:19046762,12055037:0,0,0 -k1,24936:32583029,12055037:13536267 -g1,24936:32583029,12055037 -) -] -) -g1,24938:32583029,12141465 -g1,24938:6764466,12141465 -g1,24938:6764466,12141465 -g1,24938:32583029,12141465 -g1,24938:32583029,12141465 -) -h1,24938:6764466,12338073:0,0,0 -] -g1,24940:32583029,12338073 -) -h1,24940:6630773,12338073:0,0,0 -(1,24942:6630773,15169233:25952256,32768,229376 -(1,24942:6630773,15169233:0,32768,229376 -(1,24942:6630773,15169233:5505024,32768,229376 -r1,24985:12135797,15169233:5505024,262144,229376 -) -k1,24942:6630773,15169233:-5505024 -) -(1,24942:6630773,15169233:25952256,32768,0 -r1,24985:32583029,15169233:25952256,32768,0 -) -) -(1,24942:6630773,16801085:25952256,615776,151780 -(1,24942:6630773,16801085:2954625,582746,14155 -g1,24942:6630773,16801085 -g1,24942:9585398,16801085 -) -g1,24942:11635627,16801085 -g1,24942:16433649,16801085 -g1,24942:18615212,16801085 -g1,24942:22158089,16801085 -k1,24942:32583029,16801085:7306737 -g1,24942:32583029,16801085 -) -(1,24946:6630773,18059381:25952256,505283,134348 -k1,24945:10159805,18059381:226673 -k1,24945:12872258,18059381:226672 -k1,24945:14488294,18059381:226673 -k1,24945:18223764,18059381:226672 -k1,24945:20788106,18059381:226673 -k1,24945:22869447,18059381:226672 -k1,24945:23905490,18059381:226673 -k1,24945:29602452,18059381:226672 -k1,24945:32583029,18059381:0 -) -(1,24946:6630773,18924461:25952256,513147,134348 -k1,24945:12390676,18924461:154609 -k1,24945:14001451,18924461:154565 -k1,24945:16667400,18924461:154609 -k1,24945:18297225,18924461:154610 -k1,24945:20741007,18924461:154609 -k1,24945:21785595,18924461:154609 -k1,24945:25030882,18924461:154609 -k1,24945:26469997,18924461:154609 -k1,24945:27728889,18924461:154610 -k1,24945:28631264,18924461:154609 -k1,24945:31210050,18924461:154609 -k1,24945:32583029,18924461:0 -) -(1,24946:6630773,19789541:25952256,505283,134348 -k1,24945:7158883,19789541:172250 -k1,24945:9946676,19789541:172251 -k1,24945:13625102,19789541:172250 -k1,24945:14448780,19789541:172250 -k1,24945:17055038,19789541:172251 -k1,24945:19083268,19789541:172250 -k1,24945:22090605,19789541:172250 -k1,24945:22945741,19789541:172251 -k1,24945:25234149,19789541:172250 -k1,24945:26969433,19789541:172250 -k1,24945:29746740,19789541:172251 -k1,24945:31773659,19789541:172250 -k1,24945:32583029,19789541:0 -) -(1,24946:6630773,20654621:25952256,513147,126483 -g1,24945:8167592,20654621 -g1,24945:11099017,20654621 -g1,24945:11981131,20654621 -g1,24945:13199445,20654621 -g1,24945:15031831,20654621 -g1,24945:17411443,20654621 -g1,24945:18602232,20654621 -g1,24945:22145108,20654621 -g1,24945:23857563,20654621 -g1,24945:25004443,20654621 -k1,24946:32583029,20654621:6136794 -g1,24946:32583029,20654621 -) -(1,24947:6630773,22771439:25952256,555811,147783 -(1,24947:6630773,22771439:3348562,534184,12975 -g1,24947:6630773,22771439 -g1,24947:9979335,22771439 -) -k1,24947:32583030,22771439:19456264 -g1,24947:32583030,22771439 -) -(1,24953:6630773,24029735:25952256,513147,126483 -k1,24952:8064811,24029735:258978 -k1,24952:9707908,24029735:258977 -k1,24952:12628303,24029735:258978 -k1,24952:15651589,24029735:258977 -k1,24952:17299930,24029735:258978 -k1,24952:19126528,24029735:258977 -k1,24952:20610969,24029735:258918 -k1,24952:23272496,24029735:258977 -k1,24952:25099095,24029735:258978 -k1,24952:28529359,24029735:258977 -$1,24952:28736453,24029735 -k1,24952:30230245,24029735:0 -k1,24952:30603693,24029735:0 -k1,24952:30977141,24029735:0 -k1,24952:31350589,24029735:0 -k1,24952:32470933,24029735:0 -k1,24953:32583029,24029735:0 -) -(1,24953:6630773,24894815:25952256,513147,134348 -k1,24952:9991805,24894815:0 -k1,24952:10365253,24894815:0 -$1,24952:11859045,24894815 -k1,24952:12315908,24894815:249769 -k1,24952:14301070,24894815:249769 -k1,24952:14906699,24894815:249769 -k1,24952:17915534,24894815:249769 -k1,24952:19395414,24894815:249769 -k1,24952:22168320,24894815:249770 -k1,24952:24652211,24894815:249769 -k1,24952:26098667,24894815:249769 -k1,24952:28750986,24894815:249769 -k1,24952:30513981,24894815:249769 -k1,24952:31379788,24894815:249769 -k1,24952:32583029,24894815:0 -) -(1,24953:6630773,25759895:25952256,505283,126483 -g1,24952:9491419,25759895 -g1,24952:10222145,25759895 -g1,24952:10777234,25759895 -k1,24953:32583028,25759895:18019780 -g1,24953:32583028,25759895 -) -v1,24955:6630773,26624975:0,393216,0 -(1,24956:6630773,30580820:25952256,4349061,0 -g1,24956:6630773,30580820 -g1,24956:6237557,30580820 -r1,24985:6368629,30580820:131072,4349061,0 -g1,24956:6567858,30580820 -g1,24956:6764466,30580820 -[1,24956:6764466,30580820:25818563,4349061,0 -(1,24956:6764466,26986152:25818563,754393,260573 -(1,24955:6764466,26986152:0,754393,260573 -r1,24985:7856192,26986152:1091726,1014966,260573 -k1,24955:6764466,26986152:-1091726 -) -(1,24955:6764466,26986152:1091726,754393,260573 -) -k1,24955:8109290,26986152:253098 -k1,24955:8436970,26986152:327680 -k1,24955:10070911,26986152:253097 -k1,24955:12985426,26986152:253098 -k1,24955:15099090,26986152:253097 -k1,24955:18066034,26986152:253098 -k1,24955:19708494,26986152:253097 -k1,24955:23024745,26986152:253098 -k1,24955:23893880,26986152:253097 -k1,24955:25166063,26986152:253098 -k1,24955:28714311,26986152:253098 -k1,24955:31543628,26986152:253097 -k1,24956:32583029,26986152:0 -) -(1,24956:6764466,27851232:25818563,513147,134348 -k1,24955:9092840,27851232:195177 -k1,24955:10677379,27851232:195176 -k1,24955:12064001,27851232:195177 -k1,24955:15200433,27851232:195176 -k1,24955:16011648,27851232:195177 -k1,24955:17225909,27851232:195176 -k1,24955:18520780,27851232:195177 -k1,24955:19367384,27851232:195176 -k1,24955:22258057,27851232:195177 -(1,24955:22258057,27851232:0,459977,115847 -r1,24985:25781729,27851232:3523672,575824,115847 -k1,24955:22258057,27851232:-3523672 -) -(1,24955:22258057,27851232:3523672,459977,115847 -k1,24955:22258057,27851232:3277 -h1,24955:25778452,27851232:0,411205,112570 -) -k1,24955:25976905,27851232:195176 -(1,24955:25976905,27851232:0,452978,115847 -r1,24985:29500577,27851232:3523672,568825,115847 -k1,24955:25976905,27851232:-3523672 -) -(1,24955:25976905,27851232:3523672,452978,115847 -k1,24955:25976905,27851232:3277 -h1,24955:29497300,27851232:0,411205,112570 -) -k1,24955:29695754,27851232:195177 -k1,24955:30652458,27851232:195176 -k1,24955:31866720,27851232:195177 -k1,24955:32583029,27851232:0 -) -(1,24956:6764466,28716312:25818563,505283,134348 -k1,24955:9769237,28716312:229977 -k1,24955:10650642,28716312:229977 -k1,24955:11899703,28716312:229976 -k1,24955:14532230,28716312:229977 -k1,24955:16449104,28716312:229977 -k1,24955:17875768,28716312:229977 -k1,24955:20767161,28716312:229976 -k1,24955:22419925,28716312:229977 -k1,24955:23005762,28716312:229977 -k1,24955:25059606,28716312:229977 -k1,24955:28790515,28716312:229976 -k1,24955:31543628,28716312:229977 -k1,24956:32583029,28716312:0 -) -(1,24956:6764466,29581392:25818563,513147,134348 -k1,24955:8120799,29581392:229114 -k1,24955:9541358,29581392:229114 -k1,24955:12516430,29581392:229113 -k1,24955:13358306,29581392:229114 -k1,24955:14947947,29581392:229114 -k1,24955:16944567,29581392:229114 -k1,24955:18192766,29581392:229114 -k1,24955:20861129,29581392:229113 -k1,24955:22286930,29581392:229114 -k1,24955:24169517,29581392:229114 -k1,24955:25894818,29581392:229114 -k1,24955:27228214,29581392:229114 -k1,24955:28205093,29581392:229113 -k1,24955:29947433,29581392:229114 -k1,24955:31563944,29581392:229114 -k1,24955:32583029,29581392:0 -) -(1,24956:6764466,30446472:25818563,505283,134348 -g1,24955:9579237,30446472 -g1,24955:10539994,30446472 -g1,24955:12955651,30446472 -g1,24955:14173965,30446472 -g1,24955:16239004,30446472 -g1,24955:18249648,30446472 -g1,24955:19064915,30446472 -(1,24955:19064915,30446472:0,452978,115847 -r1,24985:21533452,30446472:2468537,568825,115847 -k1,24955:19064915,30446472:-2468537 -) -(1,24955:19064915,30446472:2468537,452978,115847 -k1,24955:19064915,30446472:3277 -h1,24955:21530175,30446472:0,411205,112570 -) -k1,24956:32583029,30446472:10997149 -g1,24956:32583029,30446472 -) -] -g1,24956:32583029,30580820 -) -h1,24956:6630773,30580820:0,0,0 -(1,24959:6630773,31445900:25952256,513147,134348 -h1,24958:6630773,31445900:983040,0,0 -k1,24958:10718786,31445900:315105 -(1,24958:10718786,31445900:0,459977,115847 -r1,24985:14242458,31445900:3523672,575824,115847 -k1,24958:10718786,31445900:-3523672 -) -(1,24958:10718786,31445900:3523672,459977,115847 -k1,24958:10718786,31445900:3277 -h1,24958:14239181,31445900:0,411205,112570 -) -k1,24958:14557562,31445900:315104 -k1,24958:16440288,31445900:315105 -k1,24958:19335545,31445900:315105 -k1,24958:22328449,31445900:315104 -k1,24958:25407863,31445900:315105 -k1,24958:27839126,31445900:315105 -k1,24958:29543593,31445900:315104 -k1,24958:31426319,31445900:315105 -k1,24958:32583029,31445900:0 -) -(1,24959:6630773,32310980:25952256,355205,7863 -k1,24959:32583029,32310980:23794156 -g1,24959:32583029,32310980 -) -v1,24961:6630773,32995835:0,393216,0 -(1,24979:6630773,41606027:25952256,9003408,196608 -g1,24979:6630773,41606027 -g1,24979:6630773,41606027 -g1,24979:6434165,41606027 -(1,24979:6434165,41606027:0,9003408,196608 -r1,24985:32779637,41606027:26345472,9200016,196608 -k1,24979:6434165,41606027:-26345472 -) -(1,24979:6434165,41606027:26345472,9003408,196608 -[1,24979:6630773,41606027:25952256,8806800,0 -(1,24963:6630773,33223666:25952256,424439,106246 -(1,24962:6630773,33223666:0,0,0 -g1,24962:6630773,33223666 -g1,24962:6630773,33223666 -g1,24962:6303093,33223666 -(1,24962:6303093,33223666:0,0,0 -) -g1,24962:6630773,33223666 -) -g1,24963:9286405,33223666 -g1,24963:10282267,33223666 -h1,24963:18249161,33223666:0,0,0 -k1,24963:32583029,33223666:14333868 -g1,24963:32583029,33223666 -) -(1,24964:6630773,33908521:25952256,431045,9908 -h1,24964:6630773,33908521:0,0,0 -g1,24964:10282266,33908521 -k1,24964:10282266,33908521:0 -h1,24964:10946174,33908521:0,0,0 -k1,24964:32583030,33908521:21636856 -g1,24964:32583030,33908521 -) -(1,24965:6630773,34593376:25952256,431045,112852 -h1,24965:6630773,34593376:0,0,0 -g1,24965:6962727,34593376 -g1,24965:7294681,34593376 -g1,24965:7626635,34593376 -g1,24965:7958589,34593376 -g1,24965:15925483,34593376 -k1,24965:15925483,34593376:0 -h1,24965:27211916,34593376:0,0,0 -k1,24965:32583029,34593376:5371113 -g1,24965:32583029,34593376 -) -(1,24966:6630773,35278231:25952256,431045,106246 -h1,24966:6630773,35278231:0,0,0 -g1,24966:6962727,35278231 -g1,24966:7294681,35278231 -g1,24966:7626635,35278231 -g1,24966:7958589,35278231 -g1,24966:8290543,35278231 -g1,24966:8622497,35278231 -g1,24966:8954451,35278231 -g1,24966:9286405,35278231 -g1,24966:9618359,35278231 -g1,24966:9950313,35278231 -g1,24966:10282267,35278231 -g1,24966:10614221,35278231 -g1,24966:10946175,35278231 -g1,24966:11278129,35278231 -g1,24966:11610083,35278231 -g1,24966:11942037,35278231 -g1,24966:12273991,35278231 -g1,24966:12605945,35278231 -g1,24966:12937899,35278231 -g1,24966:14265715,35278231 -g1,24966:14929623,35278231 -g1,24966:16589393,35278231 -g1,24966:19245025,35278231 -g1,24966:19908933,35278231 -h1,24966:21568703,35278231:0,0,0 -k1,24966:32583029,35278231:11014326 -g1,24966:32583029,35278231 -) -(1,24967:6630773,35963086:25952256,431045,86428 -h1,24967:6630773,35963086:0,0,0 -g1,24967:11942036,35963086 -g1,24967:15261575,35963086 -g1,24967:15925483,35963086 -h1,24967:16589391,35963086:0,0,0 -k1,24967:32583029,35963086:15993638 -g1,24967:32583029,35963086 -) -(1,24978:6630773,36779013:25952256,431045,9908 -(1,24969:6630773,36779013:0,0,0 -g1,24969:6630773,36779013 -g1,24969:6630773,36779013 -g1,24969:6303093,36779013 -(1,24969:6303093,36779013:0,0,0 -) -g1,24969:6630773,36779013 -) -g1,24978:7626635,36779013 -g1,24978:12273990,36779013 -g1,24978:12937898,36779013 -g1,24978:14597668,36779013 -g1,24978:15593530,36779013 -g1,24978:15925484,36779013 -g1,24978:16589392,36779013 -h1,24978:19908931,36779013:0,0,0 -k1,24978:32583029,36779013:12674098 -g1,24978:32583029,36779013 -) -(1,24978:6630773,37463868:25952256,431045,106246 -h1,24978:6630773,37463868:0,0,0 -g1,24978:7626635,37463868 -g1,24978:7958589,37463868 -g1,24978:8622497,37463868 -g1,24978:9618359,37463868 -g1,24978:9950313,37463868 -g1,24978:10282267,37463868 -g1,24978:10614221,37463868 -g1,24978:10946175,37463868 -g1,24978:11610083,37463868 -g1,24978:12937899,37463868 -g1,24978:13269853,37463868 -g1,24978:16921346,37463868 -g1,24978:20572839,37463868 -h1,24978:24888240,37463868:0,0,0 -k1,24978:32583029,37463868:7694789 -g1,24978:32583029,37463868 -) -(1,24978:6630773,38148723:25952256,431045,112852 -h1,24978:6630773,38148723:0,0,0 -g1,24978:7626635,38148723 -g1,24978:7958589,38148723 -g1,24978:8622497,38148723 -g1,24978:10282267,38148723 -g1,24978:10614221,38148723 -g1,24978:10946175,38148723 -g1,24978:11610083,38148723 -g1,24978:12937899,38148723 -g1,24978:13269853,38148723 -g1,24978:15593531,38148723 -g1,24978:17917209,38148723 -h1,24978:19245025,38148723:0,0,0 -k1,24978:32583029,38148723:13338004 -g1,24978:32583029,38148723 -) -(1,24978:6630773,38833578:25952256,431045,86428 -h1,24978:6630773,38833578:0,0,0 -g1,24978:7626635,38833578 -g1,24978:7958589,38833578 -g1,24978:8622497,38833578 -g1,24978:10614221,38833578 -g1,24978:10946175,38833578 -g1,24978:11610083,38833578 -g1,24978:12937899,38833578 -g1,24978:13269853,38833578 -g1,24978:14929623,38833578 -g1,24978:16589393,38833578 -k1,24978:16589393,38833578:0 -h1,24978:17917209,38833578:0,0,0 -k1,24978:32583029,38833578:14665820 -g1,24978:32583029,38833578 -) -(1,24978:6630773,39518433:25952256,431045,33029 -h1,24978:6630773,39518433:0,0,0 -g1,24978:7626635,39518433 -g1,24978:7958589,39518433 -g1,24978:8622497,39518433 -g1,24978:12937898,39518433 -g1,24978:13933760,39518433 -h1,24978:14265714,39518433:0,0,0 -k1,24978:32583030,39518433:18317316 -g1,24978:32583030,39518433 -) -(1,24978:6630773,40203288:25952256,431045,33029 -h1,24978:6630773,40203288:0,0,0 -g1,24978:7626635,40203288 -g1,24978:7958589,40203288 -g1,24978:8290543,40203288 -g1,24978:9618359,40203288 -g1,24978:14597668,40203288 -g1,24978:15925484,40203288 -g1,24978:17585254,40203288 -g1,24978:18581116,40203288 -g1,24978:18913070,40203288 -g1,24978:19576978,40203288 -h1,24978:22896517,40203288:0,0,0 -k1,24978:32583029,40203288:9686512 -g1,24978:32583029,40203288 -) -(1,24978:6630773,40888143:25952256,431045,33029 -h1,24978:6630773,40888143:0,0,0 -g1,24978:7626635,40888143 -g1,24978:7958589,40888143 -g1,24978:8290543,40888143 -g1,24978:9618359,40888143 -g1,24978:14597668,40888143 -g1,24978:15925484,40888143 -g1,24978:17585254,40888143 -g1,24978:18581116,40888143 -g1,24978:18913070,40888143 -g1,24978:19576978,40888143 -h1,24978:22896517,40888143:0,0,0 -k1,24978:32583029,40888143:9686512 -g1,24978:32583029,40888143 -) -(1,24978:6630773,41572998:25952256,431045,33029 -h1,24978:6630773,41572998:0,0,0 -g1,24978:7626635,41572998 -g1,24978:7958589,41572998 -g1,24978:8290543,41572998 -g1,24978:9618359,41572998 -g1,24978:14597668,41572998 -g1,24978:15925484,41572998 -g1,24978:17585254,41572998 -g1,24978:18581116,41572998 -g1,24978:18913070,41572998 -g1,24978:19576978,41572998 -h1,24978:22896517,41572998:0,0,0 -k1,24978:32583029,41572998:9686512 -g1,24978:32583029,41572998 -) -] -) -g1,24979:32583029,41606027 -g1,24979:6630773,41606027 -g1,24979:6630773,41606027 -g1,24979:32583029,41606027 -g1,24979:32583029,41606027 -) -h1,24979:6630773,41802635:0,0,0 -(1,24983:6630773,42667715:25952256,513147,134348 -h1,24982:6630773,42667715:983040,0,0 -k1,24982:8985699,42667715:175199 -k1,24982:12426558,42667715:175200 -k1,24982:14513442,42667715:175199 -k1,24982:15880087,42667715:175200 -k1,24982:19252132,42667715:175199 -k1,24982:21437976,42667715:175199 -k1,24982:22560827,42667715:175200 -k1,24982:24187648,42667715:175199 -k1,24982:26701173,42667715:175200 -k1,24982:29303170,42667715:175199 -k1,24982:31008636,42667715:175200 -k1,24982:31835263,42667715:175199 -k1,24982:32583029,42667715:0 -) -(1,24983:6630773,43532795:25952256,513147,134348 -k1,24982:8274744,43532795:229704 -k1,24982:10072068,43532795:229703 -k1,24982:10657632,43532795:229704 -k1,24982:12760355,43532795:229704 -k1,24982:15141605,43532795:229703 -k1,24982:16324858,43532795:229704 -k1,24982:17369830,43532795:229704 -k1,24982:18802774,43532795:229703 -k1,24982:19794006,43532795:229704 -k1,24982:22763114,43532795:229703 -k1,24982:24386769,43532795:229704 -k1,24982:24972333,43532795:229704 -k1,24982:27271663,43532795:229703 -k1,24982:29479244,43532795:229704 -k1,24982:32583029,43532795:0 -) -(1,24983:6630773,44397875:25952256,513147,134348 -k1,24982:7990551,44397875:184718 -k1,24982:9564632,44397875:184718 -k1,24982:12528076,44397875:184717 -k1,24982:13244291,44397875:184718 -k1,24982:14045047,44397875:184718 -k1,24982:15618473,44397875:184718 -k1,24982:17544482,44397875:184717 -k1,24982:19123151,44397875:184718 -k1,24982:21973874,44397875:184718 -k1,24982:24226908,44397875:184718 -k1,24982:25603071,44397875:184718 -k1,24982:27405872,44397875:184717 -k1,24982:28876406,44397875:184718 -k1,24982:31839851,44397875:184718 -k1,24982:32583029,44397875:0 -) -(1,24983:6630773,45262955:25952256,505283,102891 -g1,24982:7849087,45262955 -g1,24982:10624536,45262955 -g1,24982:11509927,45262955 -g1,24982:12987763,45262955 -g1,24982:13873154,45262955 -g1,24982:15091468,45262955 -k1,24983:32583029,45262955:16013725 -g1,24983:32583029,45262955 -) -] -(1,24985:32583029,45706769:0,0,0 -g1,24985:32583029,45706769 -) -) -] -(1,24985:6630773,47279633:25952256,0,0 -h1,24985:6630773,47279633:25952256,0,0 -) -] -(1,24985:4262630,4025873:0,0,0 -[1,24985:-473656,4025873:0,0,0 -(1,24985:-473656,-710413:0,0,0 -(1,24985:-473656,-710413:0,0,0 -g1,24985:-473656,-710413 -) -g1,24985:-473656,-710413 +) +) +) +] +[1,24983:3078558,4812305:0,0,0 +(1,24983:3078558,49800853:0,16384,2228224 +g1,24983:29030814,49800853 +g1,24983:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,24983:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,24983:37855564,49800853:1179648,16384,0 +) +) +k1,24983:3078556,49800853:-34777008 +) +] +g1,24983:6630773,4812305 +g1,24983:6630773,4812305 +g1,24983:8364200,4812305 +g1,24983:12047323,4812305 +g1,24983:13789270,4812305 +g1,24983:16531951,4812305 +g1,24983:19077369,4812305 +k1,24983:31387652,4812305:12310283 +) +) +] +[1,24983:6630773,45706769:25952256,40108032,0 +(1,24983:6630773,45706769:25952256,40108032,0 +(1,24983:6630773,45706769:0,0,0 +g1,24983:6630773,45706769 +) +[1,24983:6630773,45706769:25952256,40108032,0 +v1,24922:6630773,6254097:0,393216,0 +(1,24923:6630773,8419038:25952256,2558157,0 +g1,24923:6630773,8419038 +g1,24923:6237557,8419038 +r1,24983:6368629,8419038:131072,2558157,0 +g1,24923:6567858,8419038 +g1,24923:6764466,8419038 +[1,24923:6764466,8419038:25818563,2558157,0 +(1,24923:6764466,6562395:25818563,701514,196608 +(1,24922:6764466,6562395:0,701514,196608 +r1,24983:7761522,6562395:997056,898122,196608 +k1,24922:6764466,6562395:-997056 +) +(1,24922:6764466,6562395:997056,701514,196608 +) +k1,24922:7932934,6562395:171412 +k1,24922:8260614,6562395:327680 +k1,24922:10966960,6562395:171413 +k1,24922:13523882,6562395:171412 +k1,24922:16837091,6562395:171413 +k1,24922:18397866,6562395:171412 +k1,24922:20289599,6562395:171413 +k1,24922:21745517,6562395:171412 +k1,24922:23009415,6562395:171413 +k1,24922:25153460,6562395:171412 +k1,24922:27408918,6562395:171413 +k1,24922:28847796,6562395:171412 +k1,24922:30249292,6562395:171385 +k1,24922:32583029,6562395:0 +) +(1,24923:6764466,7427475:25818563,505283,134348 +k1,24922:7673778,7427475:257884 +k1,24922:11258925,7427475:257884 +k1,24922:13372789,7427475:257884 +k1,24922:15124894,7427475:257884 +k1,24922:16065663,7427475:257884 +k1,24922:18751656,7427475:257884 +k1,24922:19827429,7427475:257884 +k1,24922:21474021,7427475:257884 +k1,24922:22418067,7427475:257884 +k1,24922:24330735,7427475:257884 +k1,24922:25580179,7427475:257884 +k1,24922:26647433,7427475:257884 +k1,24922:29912109,7427475:257884 +k1,24922:31563944,7427475:257884 +k1,24922:32583029,7427475:0 +) +(1,24923:6764466,8292555:25818563,513147,126483 +g1,24922:9802715,8292555 +g1,24922:11021029,8292555 +g1,24922:12312743,8292555 +g1,24922:13171264,8292555 +g1,24922:13726353,8292555 +g1,24922:16748873,8292555 +g1,24922:17479599,8292555 +g1,24922:19841516,8292555 +g1,24922:23771054,8292555 +g1,24922:24621711,8292555 +g1,24922:25840025,8292555 +g1,24922:26454097,8292555 +k1,24923:32583029,8292555:4695660 +g1,24923:32583029,8292555 +) +] +g1,24923:32583029,8419038 +) +h1,24923:6630773,8419038:0,0,0 +v1,24927:6630773,9284118:0,393216,0 +(1,24938:6630773,12338073:25952256,3447171,0 +g1,24938:6630773,12338073 +g1,24938:6237557,12338073 +r1,24983:6368629,12338073:131072,3447171,0 +g1,24938:6567858,12338073 +g1,24938:6764466,12338073 +[1,24938:6764466,12338073:25818563,3447171,0 +(1,24929:6764466,9592416:25818563,701514,196608 +(1,24927:6764466,9592416:0,701514,196608 +r1,24983:7761522,9592416:997056,898122,196608 +k1,24927:6764466,9592416:-997056 +) +(1,24927:6764466,9592416:997056,701514,196608 +) +k1,24927:7940422,9592416:178900 +k1,24927:8268102,9592416:327680 +k1,24927:8916895,9592416:178900 +k1,24927:9627292,9592416:178900 +k1,24927:11935457,9592416:178900 +k1,24927:13698361,9592416:178899 +k1,24927:14528689,9592416:178900 +k1,24927:16364339,9592416:178900 +k1,24927:17552493,9592416:178900 +k1,24927:18922838,9592416:178900 +k1,24927:19717776,9592416:178900 +k1,24927:20915761,9592416:178900 +k1,24927:22461742,9592416:178900 +k1,24927:23299934,9592416:178900 +k1,24927:24497919,9592416:178900 +k1,24927:26432528,9592416:178899 +k1,24927:27630513,9592416:178900 +k1,24927:29144381,9592416:178900 +k1,24927:30561256,9592416:178900 +k1,24927:31391584,9592416:178900 +k1,24927:32583029,9592416:0 +) +(1,24929:6764466,10457496:25818563,505283,126483 +g1,24927:8248201,10457496 +g1,24927:9466515,10457496 +g1,24927:12657463,10457496 +g1,24928:13960974,10457496 +g1,24928:14907969,10457496 +g1,24928:16225242,10457496 +g1,24928:17040509,10457496 +g1,24928:17595598,10457496 +g1,24928:20051887,10457496 +k1,24929:32583029,10457496:10232795 +g1,24929:32583029,10457496 +) +v1,24931:6764466,11142351:0,393216,0 +(1,24936:6764466,12141465:25818563,1392330,196608 +g1,24936:6764466,12141465 +g1,24936:6764466,12141465 +g1,24936:6567858,12141465 +(1,24936:6567858,12141465:0,1392330,196608 +r1,24983:32779637,12141465:26211779,1588938,196608 +k1,24936:6567857,12141465:-26211780 +) +(1,24936:6567858,12141465:26211779,1392330,196608 +[1,24936:6764466,12141465:25818563,1195722,0 +(1,24933:6764466,11370182:25818563,424439,86428 +(1,24932:6764466,11370182:0,0,0 +g1,24932:6764466,11370182 +g1,24932:6764466,11370182 +g1,24932:6436786,11370182 +(1,24932:6436786,11370182:0,0,0 +) +g1,24932:6764466,11370182 +) +k1,24933:6764466,11370182:0 +g1,24933:12407683,11370182 +g1,24933:15727222,11370182 +g1,24933:16391130,11370182 +h1,24933:18050900,11370182:0,0,0 +k1,24933:32583029,11370182:14532129 +g1,24933:32583029,11370182 +) +(1,24934:6764466,12055037:25818563,424439,86428 +h1,24934:6764466,12055037:0,0,0 +g1,24934:13403545,12055037 +g1,24934:16723084,12055037 +g1,24934:17386992,12055037 +h1,24934:19046762,12055037:0,0,0 +k1,24934:32583029,12055037:13536267 +g1,24934:32583029,12055037 +) +] +) +g1,24936:32583029,12141465 +g1,24936:6764466,12141465 +g1,24936:6764466,12141465 +g1,24936:32583029,12141465 +g1,24936:32583029,12141465 +) +h1,24936:6764466,12338073:0,0,0 +] +g1,24938:32583029,12338073 +) +h1,24938:6630773,12338073:0,0,0 +(1,24940:6630773,15169233:25952256,32768,229376 +(1,24940:6630773,15169233:0,32768,229376 +(1,24940:6630773,15169233:5505024,32768,229376 +r1,24983:12135797,15169233:5505024,262144,229376 +) +k1,24940:6630773,15169233:-5505024 +) +(1,24940:6630773,15169233:25952256,32768,0 +r1,24983:32583029,15169233:25952256,32768,0 +) +) +(1,24940:6630773,16801085:25952256,615776,151780 +(1,24940:6630773,16801085:2954625,582746,14155 +g1,24940:6630773,16801085 +g1,24940:9585398,16801085 +) +g1,24940:11635627,16801085 +g1,24940:16433649,16801085 +g1,24940:18615212,16801085 +g1,24940:22158089,16801085 +k1,24940:32583029,16801085:7306737 +g1,24940:32583029,16801085 +) +(1,24944:6630773,18059381:25952256,505283,134348 +k1,24943:10159805,18059381:226673 +k1,24943:12872258,18059381:226672 +k1,24943:14488294,18059381:226673 +k1,24943:18223764,18059381:226672 +k1,24943:20788106,18059381:226673 +k1,24943:22869447,18059381:226672 +k1,24943:23905490,18059381:226673 +k1,24943:29602452,18059381:226672 +k1,24943:32583029,18059381:0 +) +(1,24944:6630773,18924461:25952256,513147,134348 +k1,24943:12390676,18924461:154609 +k1,24943:14001451,18924461:154565 +k1,24943:16667400,18924461:154609 +k1,24943:18297225,18924461:154610 +k1,24943:20741007,18924461:154609 +k1,24943:21785595,18924461:154609 +k1,24943:25030882,18924461:154609 +k1,24943:26469997,18924461:154609 +k1,24943:27728889,18924461:154610 +k1,24943:28631264,18924461:154609 +k1,24943:31210050,18924461:154609 +k1,24943:32583029,18924461:0 +) +(1,24944:6630773,19789541:25952256,505283,134348 +k1,24943:7158883,19789541:172250 +k1,24943:9946676,19789541:172251 +k1,24943:13625102,19789541:172250 +k1,24943:14448780,19789541:172250 +k1,24943:17055038,19789541:172251 +k1,24943:19083268,19789541:172250 +k1,24943:22090605,19789541:172250 +k1,24943:22945741,19789541:172251 +k1,24943:25234149,19789541:172250 +k1,24943:26969433,19789541:172250 +k1,24943:29746740,19789541:172251 +k1,24943:31773659,19789541:172250 +k1,24943:32583029,19789541:0 +) +(1,24944:6630773,20654621:25952256,513147,126483 +g1,24943:8167592,20654621 +g1,24943:11099017,20654621 +g1,24943:11981131,20654621 +g1,24943:13199445,20654621 +g1,24943:15031831,20654621 +g1,24943:17411443,20654621 +g1,24943:18602232,20654621 +g1,24943:22145108,20654621 +g1,24943:23857563,20654621 +g1,24943:25004443,20654621 +k1,24944:32583029,20654621:6136794 +g1,24944:32583029,20654621 +) +(1,24945:6630773,22771439:25952256,555811,147783 +(1,24945:6630773,22771439:3348562,534184,12975 +g1,24945:6630773,22771439 +g1,24945:9979335,22771439 +) +k1,24945:32583030,22771439:19456264 +g1,24945:32583030,22771439 +) +(1,24951:6630773,24029735:25952256,513147,126483 +k1,24950:8064811,24029735:258978 +k1,24950:9707908,24029735:258977 +k1,24950:12628303,24029735:258978 +k1,24950:15651589,24029735:258977 +k1,24950:17299930,24029735:258978 +k1,24950:19126528,24029735:258977 +k1,24950:20610969,24029735:258918 +k1,24950:23272496,24029735:258977 +k1,24950:25099095,24029735:258978 +k1,24950:28529359,24029735:258977 +$1,24950:28736453,24029735 +k1,24950:30230245,24029735:0 +k1,24950:30603693,24029735:0 +k1,24950:30977141,24029735:0 +k1,24950:31350589,24029735:0 +k1,24950:32470933,24029735:0 +k1,24951:32583029,24029735:0 +) +(1,24951:6630773,24894815:25952256,513147,134348 +k1,24950:9991805,24894815:0 +k1,24950:10365253,24894815:0 +$1,24950:11859045,24894815 +k1,24950:12315908,24894815:249769 +k1,24950:14301070,24894815:249769 +k1,24950:14906699,24894815:249769 +k1,24950:17915534,24894815:249769 +k1,24950:19395414,24894815:249769 +k1,24950:22168320,24894815:249770 +k1,24950:24652211,24894815:249769 +k1,24950:26098667,24894815:249769 +k1,24950:28750986,24894815:249769 +k1,24950:30513981,24894815:249769 +k1,24950:31379788,24894815:249769 +k1,24950:32583029,24894815:0 +) +(1,24951:6630773,25759895:25952256,505283,126483 +g1,24950:9491419,25759895 +g1,24950:10222145,25759895 +g1,24950:10777234,25759895 +k1,24951:32583028,25759895:18019780 +g1,24951:32583028,25759895 +) +v1,24953:6630773,26624975:0,393216,0 +(1,24954:6630773,30580820:25952256,4349061,0 +g1,24954:6630773,30580820 +g1,24954:6237557,30580820 +r1,24983:6368629,30580820:131072,4349061,0 +g1,24954:6567858,30580820 +g1,24954:6764466,30580820 +[1,24954:6764466,30580820:25818563,4349061,0 +(1,24954:6764466,26986152:25818563,754393,260573 +(1,24953:6764466,26986152:0,754393,260573 +r1,24983:7856192,26986152:1091726,1014966,260573 +k1,24953:6764466,26986152:-1091726 +) +(1,24953:6764466,26986152:1091726,754393,260573 +) +k1,24953:8109290,26986152:253098 +k1,24953:8436970,26986152:327680 +k1,24953:10070911,26986152:253097 +k1,24953:12985426,26986152:253098 +k1,24953:15099090,26986152:253097 +k1,24953:18066034,26986152:253098 +k1,24953:19708494,26986152:253097 +k1,24953:23024745,26986152:253098 +k1,24953:23893880,26986152:253097 +k1,24953:25166063,26986152:253098 +k1,24953:28714311,26986152:253098 +k1,24953:31543628,26986152:253097 +k1,24954:32583029,26986152:0 +) +(1,24954:6764466,27851232:25818563,513147,134348 +k1,24953:9092840,27851232:195177 +k1,24953:10677379,27851232:195176 +k1,24953:12064001,27851232:195177 +k1,24953:15200433,27851232:195176 +k1,24953:16011648,27851232:195177 +k1,24953:17225909,27851232:195176 +k1,24953:18520780,27851232:195177 +k1,24953:19367384,27851232:195176 +k1,24953:22258057,27851232:195177 +(1,24953:22258057,27851232:0,459977,115847 +r1,24983:25781729,27851232:3523672,575824,115847 +k1,24953:22258057,27851232:-3523672 +) +(1,24953:22258057,27851232:3523672,459977,115847 +k1,24953:22258057,27851232:3277 +h1,24953:25778452,27851232:0,411205,112570 +) +k1,24953:25976905,27851232:195176 +(1,24953:25976905,27851232:0,452978,115847 +r1,24983:29500577,27851232:3523672,568825,115847 +k1,24953:25976905,27851232:-3523672 +) +(1,24953:25976905,27851232:3523672,452978,115847 +k1,24953:25976905,27851232:3277 +h1,24953:29497300,27851232:0,411205,112570 +) +k1,24953:29695754,27851232:195177 +k1,24953:30652458,27851232:195176 +k1,24953:31866720,27851232:195177 +k1,24953:32583029,27851232:0 +) +(1,24954:6764466,28716312:25818563,505283,134348 +k1,24953:9769237,28716312:229977 +k1,24953:10650642,28716312:229977 +k1,24953:11899703,28716312:229976 +k1,24953:14532230,28716312:229977 +k1,24953:16449104,28716312:229977 +k1,24953:17875768,28716312:229977 +k1,24953:20767161,28716312:229976 +k1,24953:22419925,28716312:229977 +k1,24953:23005762,28716312:229977 +k1,24953:25059606,28716312:229977 +k1,24953:28790515,28716312:229976 +k1,24953:31543628,28716312:229977 +k1,24954:32583029,28716312:0 +) +(1,24954:6764466,29581392:25818563,513147,134348 +k1,24953:8120799,29581392:229114 +k1,24953:9541358,29581392:229114 +k1,24953:12516430,29581392:229113 +k1,24953:13358306,29581392:229114 +k1,24953:14947947,29581392:229114 +k1,24953:16944567,29581392:229114 +k1,24953:18192766,29581392:229114 +k1,24953:20861129,29581392:229113 +k1,24953:22286930,29581392:229114 +k1,24953:24169517,29581392:229114 +k1,24953:25894818,29581392:229114 +k1,24953:27228214,29581392:229114 +k1,24953:28205093,29581392:229113 +k1,24953:29947433,29581392:229114 +k1,24953:31563944,29581392:229114 +k1,24953:32583029,29581392:0 +) +(1,24954:6764466,30446472:25818563,505283,134348 +g1,24953:9579237,30446472 +g1,24953:10539994,30446472 +g1,24953:12955651,30446472 +g1,24953:14173965,30446472 +g1,24953:16239004,30446472 +g1,24953:18249648,30446472 +g1,24953:19064915,30446472 +(1,24953:19064915,30446472:0,452978,115847 +r1,24983:21533452,30446472:2468537,568825,115847 +k1,24953:19064915,30446472:-2468537 +) +(1,24953:19064915,30446472:2468537,452978,115847 +k1,24953:19064915,30446472:3277 +h1,24953:21530175,30446472:0,411205,112570 +) +k1,24954:32583029,30446472:10997149 +g1,24954:32583029,30446472 +) +] +g1,24954:32583029,30580820 +) +h1,24954:6630773,30580820:0,0,0 +(1,24957:6630773,31445900:25952256,513147,134348 +h1,24956:6630773,31445900:983040,0,0 +k1,24956:10718786,31445900:315105 +(1,24956:10718786,31445900:0,459977,115847 +r1,24983:14242458,31445900:3523672,575824,115847 +k1,24956:10718786,31445900:-3523672 +) +(1,24956:10718786,31445900:3523672,459977,115847 +k1,24956:10718786,31445900:3277 +h1,24956:14239181,31445900:0,411205,112570 +) +k1,24956:14557562,31445900:315104 +k1,24956:16440288,31445900:315105 +k1,24956:19335545,31445900:315105 +k1,24956:22328449,31445900:315104 +k1,24956:25407863,31445900:315105 +k1,24956:27839126,31445900:315105 +k1,24956:29543593,31445900:315104 +k1,24956:31426319,31445900:315105 +k1,24956:32583029,31445900:0 +) +(1,24957:6630773,32310980:25952256,355205,7863 +k1,24957:32583029,32310980:23794156 +g1,24957:32583029,32310980 +) +v1,24959:6630773,32995835:0,393216,0 +(1,24977:6630773,41606027:25952256,9003408,196608 +g1,24977:6630773,41606027 +g1,24977:6630773,41606027 +g1,24977:6434165,41606027 +(1,24977:6434165,41606027:0,9003408,196608 +r1,24983:32779637,41606027:26345472,9200016,196608 +k1,24977:6434165,41606027:-26345472 +) +(1,24977:6434165,41606027:26345472,9003408,196608 +[1,24977:6630773,41606027:25952256,8806800,0 +(1,24961:6630773,33223666:25952256,424439,106246 +(1,24960:6630773,33223666:0,0,0 +g1,24960:6630773,33223666 +g1,24960:6630773,33223666 +g1,24960:6303093,33223666 +(1,24960:6303093,33223666:0,0,0 +) +g1,24960:6630773,33223666 +) +g1,24961:9286405,33223666 +g1,24961:10282267,33223666 +h1,24961:18249161,33223666:0,0,0 +k1,24961:32583029,33223666:14333868 +g1,24961:32583029,33223666 +) +(1,24962:6630773,33908521:25952256,431045,9908 +h1,24962:6630773,33908521:0,0,0 +g1,24962:10282266,33908521 +k1,24962:10282266,33908521:0 +h1,24962:10946174,33908521:0,0,0 +k1,24962:32583030,33908521:21636856 +g1,24962:32583030,33908521 +) +(1,24963:6630773,34593376:25952256,431045,112852 +h1,24963:6630773,34593376:0,0,0 +g1,24963:6962727,34593376 +g1,24963:7294681,34593376 +g1,24963:7626635,34593376 +g1,24963:7958589,34593376 +g1,24963:15925483,34593376 +k1,24963:15925483,34593376:0 +h1,24963:27211916,34593376:0,0,0 +k1,24963:32583029,34593376:5371113 +g1,24963:32583029,34593376 +) +(1,24964:6630773,35278231:25952256,431045,106246 +h1,24964:6630773,35278231:0,0,0 +g1,24964:6962727,35278231 +g1,24964:7294681,35278231 +g1,24964:7626635,35278231 +g1,24964:7958589,35278231 +g1,24964:8290543,35278231 +g1,24964:8622497,35278231 +g1,24964:8954451,35278231 +g1,24964:9286405,35278231 +g1,24964:9618359,35278231 +g1,24964:9950313,35278231 +g1,24964:10282267,35278231 +g1,24964:10614221,35278231 +g1,24964:10946175,35278231 +g1,24964:11278129,35278231 +g1,24964:11610083,35278231 +g1,24964:11942037,35278231 +g1,24964:12273991,35278231 +g1,24964:12605945,35278231 +g1,24964:12937899,35278231 +g1,24964:14265715,35278231 +g1,24964:14929623,35278231 +g1,24964:16589393,35278231 +g1,24964:19245025,35278231 +g1,24964:19908933,35278231 +h1,24964:21568703,35278231:0,0,0 +k1,24964:32583029,35278231:11014326 +g1,24964:32583029,35278231 +) +(1,24965:6630773,35963086:25952256,431045,86428 +h1,24965:6630773,35963086:0,0,0 +g1,24965:11942036,35963086 +g1,24965:15261575,35963086 +g1,24965:15925483,35963086 +h1,24965:16589391,35963086:0,0,0 +k1,24965:32583029,35963086:15993638 +g1,24965:32583029,35963086 +) +(1,24976:6630773,36779013:25952256,431045,9908 +(1,24967:6630773,36779013:0,0,0 +g1,24967:6630773,36779013 +g1,24967:6630773,36779013 +g1,24967:6303093,36779013 +(1,24967:6303093,36779013:0,0,0 +) +g1,24967:6630773,36779013 +) +g1,24976:7626635,36779013 +g1,24976:12273990,36779013 +g1,24976:12937898,36779013 +g1,24976:14597668,36779013 +g1,24976:15593530,36779013 +g1,24976:15925484,36779013 +g1,24976:16589392,36779013 +h1,24976:19908931,36779013:0,0,0 +k1,24976:32583029,36779013:12674098 +g1,24976:32583029,36779013 +) +(1,24976:6630773,37463868:25952256,431045,106246 +h1,24976:6630773,37463868:0,0,0 +g1,24976:7626635,37463868 +g1,24976:7958589,37463868 +g1,24976:8622497,37463868 +g1,24976:9618359,37463868 +g1,24976:9950313,37463868 +g1,24976:10282267,37463868 +g1,24976:10614221,37463868 +g1,24976:10946175,37463868 +g1,24976:11610083,37463868 +g1,24976:12937899,37463868 +g1,24976:13269853,37463868 +g1,24976:16921346,37463868 +g1,24976:20572839,37463868 +h1,24976:24888240,37463868:0,0,0 +k1,24976:32583029,37463868:7694789 +g1,24976:32583029,37463868 +) +(1,24976:6630773,38148723:25952256,431045,112852 +h1,24976:6630773,38148723:0,0,0 +g1,24976:7626635,38148723 +g1,24976:7958589,38148723 +g1,24976:8622497,38148723 +g1,24976:10282267,38148723 +g1,24976:10614221,38148723 +g1,24976:10946175,38148723 +g1,24976:11610083,38148723 +g1,24976:12937899,38148723 +g1,24976:13269853,38148723 +g1,24976:15593531,38148723 +g1,24976:17917209,38148723 +h1,24976:19245025,38148723:0,0,0 +k1,24976:32583029,38148723:13338004 +g1,24976:32583029,38148723 +) +(1,24976:6630773,38833578:25952256,431045,86428 +h1,24976:6630773,38833578:0,0,0 +g1,24976:7626635,38833578 +g1,24976:7958589,38833578 +g1,24976:8622497,38833578 +g1,24976:10614221,38833578 +g1,24976:10946175,38833578 +g1,24976:11610083,38833578 +g1,24976:12937899,38833578 +g1,24976:13269853,38833578 +g1,24976:14929623,38833578 +g1,24976:16589393,38833578 +k1,24976:16589393,38833578:0 +h1,24976:17917209,38833578:0,0,0 +k1,24976:32583029,38833578:14665820 +g1,24976:32583029,38833578 +) +(1,24976:6630773,39518433:25952256,431045,33029 +h1,24976:6630773,39518433:0,0,0 +g1,24976:7626635,39518433 +g1,24976:7958589,39518433 +g1,24976:8622497,39518433 +g1,24976:12937898,39518433 +g1,24976:13933760,39518433 +h1,24976:14265714,39518433:0,0,0 +k1,24976:32583030,39518433:18317316 +g1,24976:32583030,39518433 +) +(1,24976:6630773,40203288:25952256,431045,33029 +h1,24976:6630773,40203288:0,0,0 +g1,24976:7626635,40203288 +g1,24976:7958589,40203288 +g1,24976:8290543,40203288 +g1,24976:9618359,40203288 +g1,24976:14597668,40203288 +g1,24976:15925484,40203288 +g1,24976:17585254,40203288 +g1,24976:18581116,40203288 +g1,24976:18913070,40203288 +g1,24976:19576978,40203288 +h1,24976:22896517,40203288:0,0,0 +k1,24976:32583029,40203288:9686512 +g1,24976:32583029,40203288 +) +(1,24976:6630773,40888143:25952256,431045,33029 +h1,24976:6630773,40888143:0,0,0 +g1,24976:7626635,40888143 +g1,24976:7958589,40888143 +g1,24976:8290543,40888143 +g1,24976:9618359,40888143 +g1,24976:14597668,40888143 +g1,24976:15925484,40888143 +g1,24976:17585254,40888143 +g1,24976:18581116,40888143 +g1,24976:18913070,40888143 +g1,24976:19576978,40888143 +h1,24976:22896517,40888143:0,0,0 +k1,24976:32583029,40888143:9686512 +g1,24976:32583029,40888143 +) +(1,24976:6630773,41572998:25952256,431045,33029 +h1,24976:6630773,41572998:0,0,0 +g1,24976:7626635,41572998 +g1,24976:7958589,41572998 +g1,24976:8290543,41572998 +g1,24976:9618359,41572998 +g1,24976:14597668,41572998 +g1,24976:15925484,41572998 +g1,24976:17585254,41572998 +g1,24976:18581116,41572998 +g1,24976:18913070,41572998 +g1,24976:19576978,41572998 +h1,24976:22896517,41572998:0,0,0 +k1,24976:32583029,41572998:9686512 +g1,24976:32583029,41572998 +) +] +) +g1,24977:32583029,41606027 +g1,24977:6630773,41606027 +g1,24977:6630773,41606027 +g1,24977:32583029,41606027 +g1,24977:32583029,41606027 +) +h1,24977:6630773,41802635:0,0,0 +(1,24981:6630773,42667715:25952256,513147,134348 +h1,24980:6630773,42667715:983040,0,0 +k1,24980:8985699,42667715:175199 +k1,24980:12426558,42667715:175200 +k1,24980:14513442,42667715:175199 +k1,24980:15880087,42667715:175200 +k1,24980:19252132,42667715:175199 +k1,24980:21437976,42667715:175199 +k1,24980:22560827,42667715:175200 +k1,24980:24187648,42667715:175199 +k1,24980:26701173,42667715:175200 +k1,24980:29303170,42667715:175199 +k1,24980:31008636,42667715:175200 +k1,24980:31835263,42667715:175199 +k1,24980:32583029,42667715:0 +) +(1,24981:6630773,43532795:25952256,513147,134348 +k1,24980:8274744,43532795:229704 +k1,24980:10072068,43532795:229703 +k1,24980:10657632,43532795:229704 +k1,24980:12760355,43532795:229704 +k1,24980:15141605,43532795:229703 +k1,24980:16324858,43532795:229704 +k1,24980:17369830,43532795:229704 +k1,24980:18802774,43532795:229703 +k1,24980:19794006,43532795:229704 +k1,24980:22763114,43532795:229703 +k1,24980:24386769,43532795:229704 +k1,24980:24972333,43532795:229704 +k1,24980:27271663,43532795:229703 +k1,24980:29479244,43532795:229704 +k1,24980:32583029,43532795:0 +) +(1,24981:6630773,44397875:25952256,513147,134348 +k1,24980:7990551,44397875:184718 +k1,24980:9564632,44397875:184718 +k1,24980:12528076,44397875:184717 +k1,24980:13244291,44397875:184718 +k1,24980:14045047,44397875:184718 +k1,24980:15618473,44397875:184718 +k1,24980:17544482,44397875:184717 +k1,24980:19123151,44397875:184718 +k1,24980:21973874,44397875:184718 +k1,24980:24226908,44397875:184718 +k1,24980:25603071,44397875:184718 +k1,24980:27405872,44397875:184717 +k1,24980:28876406,44397875:184718 +k1,24980:31839851,44397875:184718 +k1,24980:32583029,44397875:0 +) +(1,24981:6630773,45262955:25952256,505283,102891 +g1,24980:7849087,45262955 +g1,24980:10624536,45262955 +g1,24980:11509927,45262955 +g1,24980:12987763,45262955 +g1,24980:13873154,45262955 +g1,24980:15091468,45262955 +k1,24981:32583029,45262955:16013725 +g1,24981:32583029,45262955 +) +] +(1,24983:32583029,45706769:0,0,0 +g1,24983:32583029,45706769 +) +) +] +(1,24983:6630773,47279633:25952256,0,0 +h1,24983:6630773,47279633:25952256,0,0 +) +] +(1,24983:4262630,4025873:0,0,0 +[1,24983:-473656,4025873:0,0,0 +(1,24983:-473656,-710413:0,0,0 +(1,24983:-473656,-710413:0,0,0 +g1,24983:-473656,-710413 +) +g1,24983:-473656,-710413 ) ] ) ] !24818 -}428 -Input:4604:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +}429 +Input:4608:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec !104 -{429 -[1,25034:4262630,47279633:28320399,43253760,0 -(1,25034:4262630,4025873:0,0,0 -[1,25034:-473656,4025873:0,0,0 -(1,25034:-473656,-710413:0,0,0 -(1,25034:-473656,-644877:0,0,0 -k1,25034:-473656,-644877:-65536 +{430 +[1,25032:4262630,47279633:28320399,43253760,0 +(1,25032:4262630,4025873:0,0,0 +[1,25032:-473656,4025873:0,0,0 +(1,25032:-473656,-710413:0,0,0 +(1,25032:-473656,-644877:0,0,0 +k1,25032:-473656,-644877:-65536 ) -(1,25034:-473656,4736287:0,0,0 -k1,25034:-473656,4736287:5209943 +(1,25032:-473656,4736287:0,0,0 +k1,25032:-473656,4736287:5209943 ) -g1,25034:-473656,-710413 +g1,25032:-473656,-710413 ) ] ) -[1,25034:6630773,47279633:25952256,43253760,0 -[1,25034:6630773,4812305:25952256,786432,0 -(1,25034:6630773,4812305:25952256,505283,134348 -(1,25034:6630773,4812305:25952256,505283,134348 -g1,25034:3078558,4812305 -[1,25034:3078558,4812305:0,0,0 -(1,25034:3078558,2439708:0,1703936,0 -k1,25034:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,25034:2537886,2439708:1179648,16384,0 +[1,25032:6630773,47279633:25952256,43253760,0 +[1,25032:6630773,4812305:25952256,786432,0 +(1,25032:6630773,4812305:25952256,505283,134348 +(1,25032:6630773,4812305:25952256,505283,134348 +g1,25032:3078558,4812305 +[1,25032:3078558,4812305:0,0,0 +(1,25032:3078558,2439708:0,1703936,0 +k1,25032:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,25032:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,25034:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,25032:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,25034:3078558,4812305:0,0,0 -(1,25034:3078558,2439708:0,1703936,0 -g1,25034:29030814,2439708 -g1,25034:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,25034:36151628,1915420:16384,1179648,0 +[1,25032:3078558,4812305:0,0,0 +(1,25032:3078558,2439708:0,1703936,0 +g1,25032:29030814,2439708 +g1,25032:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,25032:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,25034:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,25032:37855564,2439708:1179648,16384,0 ) ) -k1,25034:3078556,2439708:-34777008 +k1,25032:3078556,2439708:-34777008 ) ] -[1,25034:3078558,4812305:0,0,0 -(1,25034:3078558,49800853:0,16384,2228224 -k1,25034:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,25034:2537886,49800853:1179648,16384,0 +[1,25032:3078558,4812305:0,0,0 +(1,25032:3078558,49800853:0,16384,2228224 +k1,25032:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,25032:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,25034:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,25032:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,25034:3078558,4812305:0,0,0 -(1,25034:3078558,49800853:0,16384,2228224 -g1,25034:29030814,49800853 -g1,25034:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,25034:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,25034:37855564,49800853:1179648,16384,0 -) -) -k1,25034:3078556,49800853:-34777008 -) -] -g1,25034:6630773,4812305 -k1,25034:21114230,4812305:13288080 -g1,25034:22736901,4812305 -g1,25034:23350318,4812305 -g1,25034:24759997,4812305 -g1,25034:28372341,4812305 -g1,25034:30105768,4812305 -) -) -] -[1,25034:6630773,45706769:25952256,40108032,0 -(1,25034:6630773,45706769:25952256,40108032,0 -(1,25034:6630773,45706769:0,0,0 -g1,25034:6630773,45706769 -) -[1,25034:6630773,45706769:25952256,40108032,0 -v1,24985:6630773,6254097:0,393216,0 -(1,25016:6630773,23587019:25952256,17726138,196608 -g1,25016:6630773,23587019 -g1,25016:6630773,23587019 -g1,25016:6434165,23587019 -(1,25016:6434165,23587019:0,17726138,196608 -r1,25034:32779637,23587019:26345472,17922746,196608 -k1,25016:6434165,23587019:-26345472 -) -(1,25016:6434165,23587019:26345472,17726138,196608 -[1,25016:6630773,23587019:25952256,17529530,0 -(1,24987:6630773,6488534:25952256,431045,106246 -(1,24986:6630773,6488534:0,0,0 -g1,24986:6630773,6488534 -g1,24986:6630773,6488534 -g1,24986:6303093,6488534 -(1,24986:6303093,6488534:0,0,0 -) -g1,24986:6630773,6488534 -) -k1,24987:6630773,6488534:0 -g1,24987:21568700,6488534 -g1,24987:22564562,6488534 -g1,24987:28207779,6488534 -k1,24987:28207779,6488534:0 -h1,24987:28871687,6488534:0,0,0 -k1,24987:32583029,6488534:3711342 -g1,24987:32583029,6488534 -) -(1,24988:6630773,7173389:25952256,424439,79822 -h1,24988:6630773,7173389:0,0,0 -g1,24988:6962727,7173389 -g1,24988:7294681,7173389 -g1,24988:11278128,7173389 -g1,24988:11942036,7173389 -g1,24988:12937898,7173389 -k1,24988:12937898,7173389:0 -h1,24988:13601806,7173389:0,0,0 -k1,24988:32583030,7173389:18981224 -g1,24988:32583030,7173389 -) -(1,24989:6630773,7858244:25952256,424439,106246 -h1,24989:6630773,7858244:0,0,0 -g1,24989:6962727,7858244 -g1,24989:7294681,7858244 -g1,24989:14929622,7858244 -g1,24989:15593530,7858244 -k1,24989:15593530,7858244:0 -h1,24989:16257438,7858244:0,0,0 -k1,24989:32583029,7858244:16325591 -g1,24989:32583029,7858244 -) -(1,24990:6630773,8543099:25952256,424439,112852 -h1,24990:6630773,8543099:0,0,0 -k1,24990:6928060,8543099:297287 -k1,24990:7225346,8543099:297286 -k1,24990:7522633,8543099:297287 -k1,24990:7819920,8543099:297287 -k1,24990:8117207,8543099:297287 -k1,24990:8414493,8543099:297286 -k1,24990:8711780,8543099:297287 -k1,24990:9009067,8543099:297287 -k1,24990:9306354,8543099:297287 -k1,24990:9603640,8543099:297286 -k1,24990:9900927,8543099:297287 -k1,24990:10198214,8543099:297287 -k1,24990:10495501,8543099:297287 -k1,24990:10792787,8543099:297286 -k1,24990:11090074,8543099:297287 -k1,24990:11387361,8543099:297287 -k1,24990:11684648,8543099:297287 -k1,24990:11981934,8543099:297286 -k1,24990:12279221,8543099:297287 -k1,24990:15232139,8543099:297287 -k1,24990:15861380,8543099:297287 -k1,24990:21137975,8543099:297286 -k1,24990:23426986,8543099:297287 -k1,24990:24056227,8543099:297287 -k1,24990:28668915,8543099:297286 -k1,24990:29630110,8543099:297287 -k1,24990:30259351,8543099:297287 -k1,24990:30259351,8543099:0 -h1,24990:32583029,8543099:0,0,0 -k1,24990:32583029,8543099:0 -k1,24990:32583029,8543099:0 -) -(1,24991:6630773,9227954:25952256,424439,86428 -h1,24991:6630773,9227954:0,0,0 -g1,24991:6962727,9227954 -g1,24991:7294681,9227954 -g1,24991:7626635,9227954 -g1,24991:7958589,9227954 -g1,24991:8290543,9227954 -g1,24991:8622497,9227954 -g1,24991:8954451,9227954 -g1,24991:9286405,9227954 -g1,24991:9618359,9227954 -g1,24991:9950313,9227954 -g1,24991:10282267,9227954 -g1,24991:10614221,9227954 -g1,24991:10946175,9227954 -g1,24991:11278129,9227954 -g1,24991:11610083,9227954 -g1,24991:11942037,9227954 -g1,24991:12273991,9227954 -g1,24991:12605945,9227954 -g1,24991:12937899,9227954 -g1,24991:14929623,9227954 -g1,24991:15593531,9227954 -g1,24991:22232611,9227954 -g1,24991:24556289,9227954 -k1,24991:24556289,9227954:0 -h1,24991:27211921,9227954:0,0,0 -k1,24991:32583029,9227954:5371108 -g1,24991:32583029,9227954 -) -(1,24992:6630773,9912809:25952256,424439,86428 -h1,24992:6630773,9912809:0,0,0 -g1,24992:6962727,9912809 -g1,24992:7294681,9912809 -g1,24992:7626635,9912809 -g1,24992:7958589,9912809 -g1,24992:8290543,9912809 -g1,24992:8622497,9912809 -g1,24992:8954451,9912809 -g1,24992:9286405,9912809 -g1,24992:9618359,9912809 -g1,24992:9950313,9912809 -g1,24992:10282267,9912809 -g1,24992:10614221,9912809 -g1,24992:10946175,9912809 -g1,24992:11278129,9912809 -g1,24992:11610083,9912809 -g1,24992:11942037,9912809 -g1,24992:12273991,9912809 -g1,24992:12605945,9912809 -g1,24992:12937899,9912809 -g1,24992:15261577,9912809 -g1,24992:15925485,9912809 -g1,24992:22896519,9912809 -g1,24992:24888243,9912809 -k1,24992:24888243,9912809:0 -h1,24992:27543875,9912809:0,0,0 -k1,24992:32583029,9912809:5039154 -g1,24992:32583029,9912809 -) -(1,24993:6630773,10597664:25952256,431045,106246 -h1,24993:6630773,10597664:0,0,0 -k1,24993:6938564,10597664:307791 -k1,24993:7246356,10597664:307792 -k1,24993:7554147,10597664:307791 -k1,24993:7861939,10597664:307792 -k1,24993:8169730,10597664:307791 -k1,24993:8477522,10597664:307792 -k1,24993:8785313,10597664:307791 -k1,24993:9093105,10597664:307792 -k1,24993:9400896,10597664:307791 -k1,24993:9708688,10597664:307792 -k1,24993:10016479,10597664:307791 -k1,24993:10324271,10597664:307792 -k1,24993:10632062,10597664:307791 -k1,24993:10939854,10597664:307792 -k1,24993:11247645,10597664:307791 -k1,24993:11555437,10597664:307792 -k1,24993:11863228,10597664:307791 -k1,24993:12171020,10597664:307792 -k1,24993:12478811,10597664:307791 -k1,24993:14446373,10597664:307792 -k1,24993:15086118,10597664:307791 -k1,24993:22032990,10597664:307792 -k1,24993:24332505,10597664:307791 -k1,24993:26963974,10597664:307791 -k1,24993:27935674,10597664:307792 -h1,24993:32583029,10597664:0,0,0 -k1,24993:32583029,10597664:0 -k1,24993:32583029,10597664:0 -) -(1,24994:6630773,11282519:25952256,0,0 -h1,24994:6630773,11282519:0,0,0 -h1,24994:6630773,11282519:0,0,0 -k1,24994:32583029,11282519:25952256 -g1,24994:32583029,11282519 -) -(1,24995:6630773,11967374:25952256,431045,106246 -h1,24995:6630773,11967374:0,0,0 -g1,24995:21568700,11967374 -g1,24995:22564562,11967374 -g1,24995:27211917,11967374 -k1,24995:27211917,11967374:0 -h1,24995:27875825,11967374:0,0,0 -k1,24995:32583029,11967374:4707204 -g1,24995:32583029,11967374 -) -(1,24996:6630773,12652229:25952256,424439,79822 -h1,24996:6630773,12652229:0,0,0 -g1,24996:6962727,12652229 -g1,24996:7294681,12652229 -g1,24996:11278128,12652229 -g1,24996:11942036,12652229 -g1,24996:12937898,12652229 -k1,24996:12937898,12652229:0 -h1,24996:13601806,12652229:0,0,0 -k1,24996:32583030,12652229:18981224 -g1,24996:32583030,12652229 -) -(1,24997:6630773,13337084:25952256,424439,106246 -h1,24997:6630773,13337084:0,0,0 -g1,24997:6962727,13337084 -g1,24997:7294681,13337084 -g1,24997:14929622,13337084 -g1,24997:15593530,13337084 -k1,24997:15593530,13337084:0 -h1,24997:16257438,13337084:0,0,0 -k1,24997:32583029,13337084:16325591 -g1,24997:32583029,13337084 -) -(1,24998:6630773,14021939:25952256,424439,112852 -h1,24998:6630773,14021939:0,0,0 -k1,24998:6928060,14021939:297287 -k1,24998:7225346,14021939:297286 -k1,24998:7522633,14021939:297287 -k1,24998:7819920,14021939:297287 -k1,24998:8117207,14021939:297287 -k1,24998:8414493,14021939:297286 -k1,24998:8711780,14021939:297287 -k1,24998:9009067,14021939:297287 -k1,24998:9306354,14021939:297287 -k1,24998:9603640,14021939:297286 -k1,24998:9900927,14021939:297287 -k1,24998:10198214,14021939:297287 -k1,24998:10495501,14021939:297287 -k1,24998:10792787,14021939:297286 -k1,24998:11090074,14021939:297287 -k1,24998:11387361,14021939:297287 -k1,24998:11684648,14021939:297287 -k1,24998:11981934,14021939:297286 -k1,24998:12279221,14021939:297287 -k1,24998:15232139,14021939:297287 -k1,24998:15861380,14021939:297287 -k1,24998:21137975,14021939:297286 -k1,24998:23426986,14021939:297287 -k1,24998:24056227,14021939:297287 -k1,24998:28668915,14021939:297286 -k1,24998:29630110,14021939:297287 -k1,24998:30259351,14021939:297287 -k1,24998:30259351,14021939:0 -h1,24998:32583029,14021939:0,0,0 -k1,24998:32583029,14021939:0 -k1,24998:32583029,14021939:0 -) -(1,24999:6630773,14706794:25952256,424439,86428 -h1,24999:6630773,14706794:0,0,0 -g1,24999:6962727,14706794 -g1,24999:7294681,14706794 -g1,24999:7626635,14706794 -g1,24999:7958589,14706794 -g1,24999:8290543,14706794 -g1,24999:8622497,14706794 -g1,24999:8954451,14706794 -g1,24999:9286405,14706794 -g1,24999:9618359,14706794 -g1,24999:9950313,14706794 -g1,24999:10282267,14706794 -g1,24999:10614221,14706794 -g1,24999:10946175,14706794 -g1,24999:11278129,14706794 -g1,24999:11610083,14706794 -g1,24999:11942037,14706794 -g1,24999:12273991,14706794 -g1,24999:12605945,14706794 -g1,24999:12937899,14706794 -g1,24999:15261577,14706794 -g1,24999:15925485,14706794 -g1,24999:22564565,14706794 -g1,24999:24888243,14706794 -k1,24999:24888243,14706794:0 -h1,24999:27543875,14706794:0,0,0 -k1,24999:32583029,14706794:5039154 -g1,24999:32583029,14706794 -) -(1,25000:6630773,15391649:25952256,424439,86428 -h1,25000:6630773,15391649:0,0,0 -g1,25000:6962727,15391649 -g1,25000:7294681,15391649 -g1,25000:7626635,15391649 -g1,25000:7958589,15391649 -g1,25000:8290543,15391649 -g1,25000:8622497,15391649 -g1,25000:8954451,15391649 -g1,25000:9286405,15391649 -g1,25000:9618359,15391649 -g1,25000:9950313,15391649 -g1,25000:10282267,15391649 -g1,25000:10614221,15391649 -g1,25000:10946175,15391649 -g1,25000:11278129,15391649 -g1,25000:11610083,15391649 -g1,25000:11942037,15391649 -g1,25000:12273991,15391649 -g1,25000:12605945,15391649 -g1,25000:12937899,15391649 -g1,25000:15593531,15391649 -g1,25000:16257439,15391649 -g1,25000:23228473,15391649 -g1,25000:25220197,15391649 -k1,25000:25220197,15391649:0 -h1,25000:27875829,15391649:0,0,0 -k1,25000:32583029,15391649:4707200 -g1,25000:32583029,15391649 -) -(1,25001:6630773,16076504:25952256,431045,106246 -h1,25001:6630773,16076504:0,0,0 -g1,25001:6962727,16076504 -g1,25001:7294681,16076504 -g1,25001:7626635,16076504 -g1,25001:7958589,16076504 -g1,25001:8290543,16076504 -g1,25001:8622497,16076504 -g1,25001:8954451,16076504 -g1,25001:9286405,16076504 -g1,25001:9618359,16076504 -g1,25001:9950313,16076504 -g1,25001:10282267,16076504 -g1,25001:10614221,16076504 -g1,25001:10946175,16076504 -g1,25001:11278129,16076504 -g1,25001:11610083,16076504 -g1,25001:11942037,16076504 -g1,25001:12273991,16076504 -g1,25001:12605945,16076504 -g1,25001:12937899,16076504 -g1,25001:15261577,16076504 -g1,25001:15925485,16076504 -g1,25001:22896519,16076504 -g1,25001:25220197,16076504 -g1,25001:27875829,16076504 -g1,25001:28871691,16076504 -h1,25001:32523184,16076504:0,0,0 -k1,25001:32583029,16076504:59845 -g1,25001:32583029,16076504 -) -(1,25002:6630773,16761359:25952256,0,0 -h1,25002:6630773,16761359:0,0,0 -h1,25002:6630773,16761359:0,0,0 -k1,25002:32583029,16761359:25952256 -g1,25002:32583029,16761359 -) -(1,25003:6630773,17446214:25952256,431045,112852 -h1,25003:6630773,17446214:0,0,0 -g1,25003:15261575,17446214 -h1,25003:19245022,17446214:0,0,0 -k1,25003:32583029,17446214:13338007 -g1,25003:32583029,17446214 -) -(1,25007:6630773,18786429:25952256,431045,112852 -g1,25007:7626635,18786429 -g1,25007:10282267,18786429 -g1,25007:11942037,18786429 -g1,25007:13269853,18786429 -g1,25007:13933761,18786429 -k1,25007:32583029,18786429:12674097 -g1,25007:32583029,18786429 -) -(1,25015:6630773,19471284:25952256,424439,6605 -(1,25007:6630773,19471284:0,0,0 -g1,25007:6630773,19471284 -g1,25007:6630773,19471284 -g1,25007:6303093,19471284 -(1,25007:6303093,19471284:0,0,0 -) -g1,25007:6630773,19471284 -) -g1,25015:7626635,19471284 -g1,25015:8290543,19471284 -g1,25015:8954451,19471284 -g1,25015:11610083,19471284 -g1,25015:12937899,19471284 -g1,25015:13601807,19471284 -h1,25015:13933761,19471284:0,0,0 -k1,25015:32583029,19471284:18649268 -g1,25015:32583029,19471284 -) -(1,25015:6630773,20156139:25952256,424439,52847 -h1,25015:6630773,20156139:0,0,0 -g1,25015:7626635,20156139 -g1,25015:7958589,20156139 -g1,25015:8290543,20156139 -g1,25015:11278128,20156139 -g1,25015:11610082,20156139 -g1,25015:11942036,20156139 -g1,25015:12273990,20156139 -g1,25015:12605944,20156139 -g1,25015:12937898,20156139 -g1,25015:13269852,20156139 -g1,25015:13601806,20156139 -g1,25015:13933760,20156139 -g1,25015:14265714,20156139 -g1,25015:14597668,20156139 -g1,25015:14929622,20156139 -g1,25015:16921346,20156139 -g1,25015:19245024,20156139 -g1,25015:21236748,20156139 -g1,25015:23560426,20156139 -g1,25015:26216058,20156139 -h1,25015:28207782,20156139:0,0,0 -k1,25015:32583029,20156139:4375247 -g1,25015:32583029,20156139 -) -(1,25015:6630773,20840994:25952256,424439,6605 -h1,25015:6630773,20840994:0,0,0 -g1,25015:7626635,20840994 -g1,25015:7958589,20840994 -g1,25015:8290543,20840994 -g1,25015:10614221,20840994 -g1,25015:10946175,20840994 -g1,25015:11278129,20840994 -g1,25015:11610083,20840994 -g1,25015:11942037,20840994 -g1,25015:12273991,20840994 -g1,25015:12605945,20840994 -g1,25015:12937899,20840994 -g1,25015:13269853,20840994 -g1,25015:13601807,20840994 -g1,25015:13933761,20840994 -g1,25015:14265715,20840994 -g1,25015:14597669,20840994 -g1,25015:14929623,20840994 -g1,25015:16921347,20840994 -g1,25015:17253301,20840994 -g1,25015:19245025,20840994 -g1,25015:21236749,20840994 -g1,25015:21568703,20840994 -g1,25015:23560427,20840994 -g1,25015:23892381,20840994 -g1,25015:24224335,20840994 -g1,25015:26216059,20840994 -g1,25015:26548013,20840994 -k1,25015:26548013,20840994:0 -h1,25015:28207783,20840994:0,0,0 -k1,25015:32583029,20840994:4375246 -g1,25015:32583029,20840994 -) -(1,25015:6630773,21525849:25952256,407923,9908 -h1,25015:6630773,21525849:0,0,0 -g1,25015:7626635,21525849 -g1,25015:8290543,21525849 -g1,25015:11942037,21525849 -g1,25015:14929622,21525849 -g1,25015:15261576,21525849 -g1,25015:16921346,21525849 -g1,25015:17253300,21525849 -g1,25015:17585254,21525849 -g1,25015:19245024,21525849 -g1,25015:19576978,21525849 -g1,25015:21236748,21525849 -g1,25015:21568702,21525849 -g1,25015:21900656,21525849 -g1,25015:23560426,21525849 -g1,25015:23892380,21525849 -g1,25015:24224334,21525849 -g1,25015:24556288,21525849 -g1,25015:26216058,21525849 -g1,25015:26548012,21525849 -g1,25015:26879966,21525849 -h1,25015:28207782,21525849:0,0,0 -k1,25015:32583029,21525849:4375247 -g1,25015:32583029,21525849 -) -(1,25015:6630773,22210704:25952256,407923,9908 -h1,25015:6630773,22210704:0,0,0 -g1,25015:7626635,22210704 -g1,25015:8290543,22210704 -g1,25015:11942037,22210704 -g1,25015:14929622,22210704 -g1,25015:15261576,22210704 -g1,25015:16921346,22210704 -g1,25015:17253300,22210704 -g1,25015:17585254,22210704 -g1,25015:19245024,22210704 -g1,25015:19576978,22210704 -g1,25015:21236748,22210704 -g1,25015:21568702,22210704 -g1,25015:21900656,22210704 -g1,25015:23560426,22210704 -g1,25015:23892380,22210704 -g1,25015:24224334,22210704 -g1,25015:24556288,22210704 -g1,25015:26216058,22210704 -g1,25015:26548012,22210704 -g1,25015:26879966,22210704 -h1,25015:28207782,22210704:0,0,0 -k1,25015:32583029,22210704:4375247 -g1,25015:32583029,22210704 -) -(1,25015:6630773,22895559:25952256,407923,9908 -h1,25015:6630773,22895559:0,0,0 -g1,25015:7626635,22895559 -g1,25015:8290543,22895559 -g1,25015:11942037,22895559 -g1,25015:14929622,22895559 -g1,25015:15261576,22895559 -g1,25015:16921346,22895559 -g1,25015:17253300,22895559 -g1,25015:17585254,22895559 -g1,25015:19245024,22895559 -g1,25015:19576978,22895559 -g1,25015:21236748,22895559 -g1,25015:21568702,22895559 -g1,25015:21900656,22895559 -g1,25015:23560426,22895559 -g1,25015:23892380,22895559 -g1,25015:24224334,22895559 -g1,25015:24556288,22895559 -g1,25015:26216058,22895559 -g1,25015:26548012,22895559 -g1,25015:26879966,22895559 -h1,25015:28207782,22895559:0,0,0 -k1,25015:32583029,22895559:4375247 -g1,25015:32583029,22895559 -) -(1,25015:6630773,23580414:25952256,424439,6605 -h1,25015:6630773,23580414:0,0,0 -g1,25015:7626635,23580414 -g1,25015:8290543,23580414 -g1,25015:8954451,23580414 -g1,25015:10282267,23580414 -g1,25015:11942037,23580414 -h1,25015:13269853,23580414:0,0,0 -k1,25015:32583029,23580414:19313176 -g1,25015:32583029,23580414 -) -] -) -g1,25016:32583029,23587019 -g1,25016:6630773,23587019 -g1,25016:6630773,23587019 -g1,25016:32583029,23587019 -g1,25016:32583029,23587019 -) -h1,25016:6630773,23783627:0,0,0 -v1,25020:6630773,24648707:0,393216,0 -(1,25021:6630773,28551673:25952256,4296182,0 -g1,25021:6630773,28551673 -g1,25021:6237557,28551673 -r1,25034:6368629,28551673:131072,4296182,0 -g1,25021:6567858,28551673 -g1,25021:6764466,28551673 -[1,25021:6764466,28551673:25818563,4296182,0 -(1,25021:6764466,24957005:25818563,701514,196608 -(1,25020:6764466,24957005:0,701514,196608 -r1,25034:7761522,24957005:997056,898122,196608 -k1,25020:6764466,24957005:-997056 -) -(1,25020:6764466,24957005:997056,701514,196608 -) -k1,25020:7918896,24957005:157374 -k1,25020:8246576,24957005:327680 -k1,25020:9949290,24957005:157375 -k1,25020:13401814,24957005:157374 -k1,25020:15267713,24957005:157375 -k1,25020:18157938,24957005:157374 -k1,25020:19790528,24957005:157375 -k1,25020:20303762,24957005:157374 -k1,25020:22768660,24957005:157375 -k1,25020:26472842,24957005:157374 -k1,25020:27821662,24957005:157375 -k1,25020:28998121,24957005:157374 -k1,25020:31193666,24957005:157375 -k1,25020:32583029,24957005:0 -) -(1,25021:6764466,25822085:25818563,513147,134348 -k1,25020:8075536,25822085:206788 -k1,25020:9568139,25822085:206787 -k1,25020:10522693,25822085:206788 -k1,25020:14624940,25822085:206787 -k1,25020:15517890,25822085:206788 -k1,25020:16080538,25822085:206788 -(1,25020:16080538,25822085:0,414482,115847 -r1,25034:17142227,25822085:1061689,530329,115847 -k1,25020:16080538,25822085:-1061689 -) -(1,25020:16080538,25822085:1061689,414482,115847 -k1,25020:16080538,25822085:3277 -h1,25020:17138950,25822085:0,411205,112570 -) -k1,25020:17349014,25822085:206787 -k1,25020:18538842,25822085:206788 -k1,25020:21304155,25822085:206787 -k1,25020:21866803,25822085:206788 -k1,25020:24696342,25822085:206788 -k1,25020:25586014,25822085:206787 -k1,25020:27872259,25822085:206788 -k1,25020:29482827,25822085:206787 -k1,25020:30507504,25822085:206788 -k1,25020:32583029,25822085:0 -) -(1,25021:6764466,26687165:25818563,505283,134348 -k1,25020:8946338,26687165:152877 -k1,25020:9557311,26687165:152876 -k1,25020:10241685,26687165:152877 -k1,25020:13024522,26687165:152877 -k1,25020:13828826,26687165:152876 -k1,25020:16269565,26687165:152877 -k1,25020:18061497,26687165:152877 -k1,25020:20772899,26687165:152876 -k1,25020:21944861,26687165:152877 -k1,25020:23966123,26687165:152831 -k1,25020:26077870,26687165:152876 -k1,25020:26846785,26687165:152877 -k1,25020:28018747,26687165:152877 -k1,25020:30794374,26687165:152876 -k1,25020:31630136,26687165:152877 -k1,25021:32583029,26687165:0 -) -(1,25021:6764466,27552245:25818563,505283,134348 -k1,25020:8150119,27552245:152921 -k1,25020:10037123,27552245:152921 -k1,25020:14274903,27552245:152921 -k1,25020:15446910,27552245:152922 -k1,25020:16014628,27552245:152875 -k1,25020:18747701,27552245:152921 -k1,25020:22218709,27552245:152921 -k1,25020:23475912,27552245:152921 -k1,25020:24376599,27552245:152921 -k1,25020:26042747,27552245:152922 -k1,25020:26847096,27552245:152921 -k1,25020:29287879,27552245:152921 -k1,25020:32583029,27552245:0 -) -(1,25021:6764466,28417325:25818563,513147,134348 -g1,25020:9696546,28417325 -g1,25020:10657303,28417325 -g1,25020:12924848,28417325 -g1,25020:13783369,28417325 -g1,25020:15001683,28417325 -g1,25020:17365566,28417325 -g1,25020:19665224,28417325 -g1,25020:21787279,28417325 -g1,25020:24017469,28417325 -g1,25020:24868126,28417325 -g1,25020:26575994,28417325 -g1,25020:27865087,28417325 -k1,25021:32583029,28417325:3589412 -g1,25021:32583029,28417325 -) -] -g1,25021:32583029,28551673 -) -h1,25021:6630773,28551673:0,0,0 -(1,25024:6630773,31382833:25952256,32768,229376 -(1,25024:6630773,31382833:0,32768,229376 -(1,25024:6630773,31382833:5505024,32768,229376 -r1,25034:12135797,31382833:5505024,262144,229376 -) -k1,25024:6630773,31382833:-5505024 -) -(1,25024:6630773,31382833:25952256,32768,0 -r1,25034:32583029,31382833:25952256,32768,0 -) -) -(1,25024:6630773,33014685:25952256,606339,161218 -(1,25024:6630773,33014685:2954625,582746,14155 -g1,25024:6630773,33014685 -g1,25024:9585398,33014685 -) -g1,25024:12793254,33014685 -k1,25024:32583029,33014685:16590569 -g1,25024:32583029,33014685 -) -(1,25027:6630773,34272981:25952256,513147,126483 -g1,25026:7244845,34272981 -g1,25026:10112045,34272981 -g1,25026:11330359,34272981 -g1,25026:13896093,34272981 -g1,25026:14840466,34272981 -g1,25026:16511634,34272981 -g1,25026:21810219,34272981 -g1,25026:22365308,34272981 -g1,25026:23918511,34272981 -g1,25026:26094961,34272981 -k1,25027:32583029,34272981:3456373 -g1,25027:32583029,34272981 -) -(1,25029:6630773,35138061:25952256,513147,134348 -h1,25028:6630773,35138061:983040,0,0 -k1,25028:9478501,35138061:212525 -k1,25028:10894266,35138061:212524 -k1,25028:11638288,35138061:212525 -k1,25028:12869898,35138061:212525 -k1,25028:14265347,35138061:212524 -k1,25028:15137164,35138061:212525 -k1,25028:16368774,35138061:212525 -k1,25028:18337008,35138061:212524 -k1,25028:18762512,35138061:212512 -k1,25028:22761706,35138061:212524 -k1,25028:23660393,35138061:212525 -k1,25028:26148328,35138061:212525 -k1,25028:28763402,35138061:212524 -k1,25028:29995012,35138061:212525 -k1,25028:32583029,35138061:0 -) -(1,25029:6630773,36003141:25952256,513147,134348 -k1,25028:7566280,36003141:276215 -k1,25028:9689955,36003141:276215 -k1,25028:10652332,36003141:276215 -k1,25028:12308735,36003141:276215 -k1,25028:13576510,36003141:276215 -k1,25028:14942589,36003141:276215 -k1,25028:15878096,36003141:276215 -k1,25028:18521471,36003141:276215 -k1,25028:21006249,36003141:276215 -k1,25028:23541489,36003141:276214 -k1,25028:24430466,36003141:276215 -k1,25028:25725766,36003141:276215 -k1,25028:27184906,36003141:276215 -k1,25028:28120413,36003141:276215 -k1,25028:30230981,36003141:276215 -k1,25028:31130443,36003141:276215 -k1,25028:32184570,36003141:276215 -k1,25028:32583029,36003141:0 -) -(1,25029:6630773,36868221:25952256,505283,134348 -k1,25028:9940232,36868221:182736 -k1,25028:11293441,36868221:182736 -k1,25028:13656560,36868221:182736 -k1,25028:15251597,36868221:182736 -k1,25028:15794126,36868221:182736 -k1,25028:18011099,36868221:182736 -k1,25028:20248390,36868221:182737 -k1,25028:22232055,36868221:182736 -k1,25028:23606236,36868221:182736 -k1,25028:24988936,36868221:182736 -k1,25028:25945652,36868221:182736 -k1,25028:30528475,36868221:182736 -k1,25028:32583029,36868221:0 -) -(1,25029:6630773,37733301:25952256,513147,134348 -k1,25028:8769642,37733301:164269 -k1,25028:9411458,37733301:164059 -k1,25028:10745990,37733301:164059 -k1,25028:12458665,37733301:164059 -k1,25028:13274152,37733301:164059 -k1,25028:15193265,37733301:164059 -k1,25028:16335777,37733301:164059 -k1,25028:18650072,37733301:164059 -k1,25028:21512248,37733301:164059 -k1,25028:22437835,37733301:164059 -k1,25028:23520709,37733301:164059 -k1,25028:28369282,37733301:164059 -k1,25028:29945642,37733301:164059 -k1,25028:31395517,37733301:164059 -k1,25028:32583029,37733301:0 -) -(1,25029:6630773,38598381:25952256,513147,126483 -g1,25028:7279579,38598381 -g1,25028:9796817,38598381 -g1,25028:12050600,38598381 -k1,25029:32583030,38598381:18679072 -g1,25029:32583030,38598381 -) -] -(1,25034:32583029,45706769:0,0,0 -g1,25034:32583029,45706769 -) -) -] -(1,25034:6630773,47279633:25952256,0,0 -h1,25034:6630773,47279633:25952256,0,0 -) -] -(1,25034:4262630,4025873:0,0,0 -[1,25034:-473656,4025873:0,0,0 -(1,25034:-473656,-710413:0,0,0 -(1,25034:-473656,-710413:0,0,0 -g1,25034:-473656,-710413 -) -g1,25034:-473656,-710413 +[1,25032:3078558,4812305:0,0,0 +(1,25032:3078558,49800853:0,16384,2228224 +g1,25032:29030814,49800853 +g1,25032:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,25032:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,25032:37855564,49800853:1179648,16384,0 +) +) +k1,25032:3078556,49800853:-34777008 +) +] +g1,25032:6630773,4812305 +k1,25032:21114230,4812305:13288080 +g1,25032:22736901,4812305 +g1,25032:23350318,4812305 +g1,25032:24759997,4812305 +g1,25032:28372341,4812305 +g1,25032:30105768,4812305 +) +) +] +[1,25032:6630773,45706769:25952256,40108032,0 +(1,25032:6630773,45706769:25952256,40108032,0 +(1,25032:6630773,45706769:0,0,0 +g1,25032:6630773,45706769 +) +[1,25032:6630773,45706769:25952256,40108032,0 +v1,24983:6630773,6254097:0,393216,0 +(1,25014:6630773,23587019:25952256,17726138,196608 +g1,25014:6630773,23587019 +g1,25014:6630773,23587019 +g1,25014:6434165,23587019 +(1,25014:6434165,23587019:0,17726138,196608 +r1,25032:32779637,23587019:26345472,17922746,196608 +k1,25014:6434165,23587019:-26345472 +) +(1,25014:6434165,23587019:26345472,17726138,196608 +[1,25014:6630773,23587019:25952256,17529530,0 +(1,24985:6630773,6488534:25952256,431045,106246 +(1,24984:6630773,6488534:0,0,0 +g1,24984:6630773,6488534 +g1,24984:6630773,6488534 +g1,24984:6303093,6488534 +(1,24984:6303093,6488534:0,0,0 +) +g1,24984:6630773,6488534 +) +k1,24985:6630773,6488534:0 +g1,24985:21568700,6488534 +g1,24985:22564562,6488534 +g1,24985:28207779,6488534 +k1,24985:28207779,6488534:0 +h1,24985:28871687,6488534:0,0,0 +k1,24985:32583029,6488534:3711342 +g1,24985:32583029,6488534 +) +(1,24986:6630773,7173389:25952256,424439,79822 +h1,24986:6630773,7173389:0,0,0 +g1,24986:6962727,7173389 +g1,24986:7294681,7173389 +g1,24986:11278128,7173389 +g1,24986:11942036,7173389 +g1,24986:12937898,7173389 +k1,24986:12937898,7173389:0 +h1,24986:13601806,7173389:0,0,0 +k1,24986:32583030,7173389:18981224 +g1,24986:32583030,7173389 +) +(1,24987:6630773,7858244:25952256,424439,106246 +h1,24987:6630773,7858244:0,0,0 +g1,24987:6962727,7858244 +g1,24987:7294681,7858244 +g1,24987:14929622,7858244 +g1,24987:15593530,7858244 +k1,24987:15593530,7858244:0 +h1,24987:16257438,7858244:0,0,0 +k1,24987:32583029,7858244:16325591 +g1,24987:32583029,7858244 +) +(1,24988:6630773,8543099:25952256,424439,112852 +h1,24988:6630773,8543099:0,0,0 +k1,24988:6928060,8543099:297287 +k1,24988:7225346,8543099:297286 +k1,24988:7522633,8543099:297287 +k1,24988:7819920,8543099:297287 +k1,24988:8117207,8543099:297287 +k1,24988:8414493,8543099:297286 +k1,24988:8711780,8543099:297287 +k1,24988:9009067,8543099:297287 +k1,24988:9306354,8543099:297287 +k1,24988:9603640,8543099:297286 +k1,24988:9900927,8543099:297287 +k1,24988:10198214,8543099:297287 +k1,24988:10495501,8543099:297287 +k1,24988:10792787,8543099:297286 +k1,24988:11090074,8543099:297287 +k1,24988:11387361,8543099:297287 +k1,24988:11684648,8543099:297287 +k1,24988:11981934,8543099:297286 +k1,24988:12279221,8543099:297287 +k1,24988:15232139,8543099:297287 +k1,24988:15861380,8543099:297287 +k1,24988:21137975,8543099:297286 +k1,24988:23426986,8543099:297287 +k1,24988:24056227,8543099:297287 +k1,24988:28668915,8543099:297286 +k1,24988:29630110,8543099:297287 +k1,24988:30259351,8543099:297287 +k1,24988:30259351,8543099:0 +h1,24988:32583029,8543099:0,0,0 +k1,24988:32583029,8543099:0 +k1,24988:32583029,8543099:0 +) +(1,24989:6630773,9227954:25952256,424439,86428 +h1,24989:6630773,9227954:0,0,0 +g1,24989:6962727,9227954 +g1,24989:7294681,9227954 +g1,24989:7626635,9227954 +g1,24989:7958589,9227954 +g1,24989:8290543,9227954 +g1,24989:8622497,9227954 +g1,24989:8954451,9227954 +g1,24989:9286405,9227954 +g1,24989:9618359,9227954 +g1,24989:9950313,9227954 +g1,24989:10282267,9227954 +g1,24989:10614221,9227954 +g1,24989:10946175,9227954 +g1,24989:11278129,9227954 +g1,24989:11610083,9227954 +g1,24989:11942037,9227954 +g1,24989:12273991,9227954 +g1,24989:12605945,9227954 +g1,24989:12937899,9227954 +g1,24989:14929623,9227954 +g1,24989:15593531,9227954 +g1,24989:22232611,9227954 +g1,24989:24556289,9227954 +k1,24989:24556289,9227954:0 +h1,24989:27211921,9227954:0,0,0 +k1,24989:32583029,9227954:5371108 +g1,24989:32583029,9227954 +) +(1,24990:6630773,9912809:25952256,424439,86428 +h1,24990:6630773,9912809:0,0,0 +g1,24990:6962727,9912809 +g1,24990:7294681,9912809 +g1,24990:7626635,9912809 +g1,24990:7958589,9912809 +g1,24990:8290543,9912809 +g1,24990:8622497,9912809 +g1,24990:8954451,9912809 +g1,24990:9286405,9912809 +g1,24990:9618359,9912809 +g1,24990:9950313,9912809 +g1,24990:10282267,9912809 +g1,24990:10614221,9912809 +g1,24990:10946175,9912809 +g1,24990:11278129,9912809 +g1,24990:11610083,9912809 +g1,24990:11942037,9912809 +g1,24990:12273991,9912809 +g1,24990:12605945,9912809 +g1,24990:12937899,9912809 +g1,24990:15261577,9912809 +g1,24990:15925485,9912809 +g1,24990:22896519,9912809 +g1,24990:24888243,9912809 +k1,24990:24888243,9912809:0 +h1,24990:27543875,9912809:0,0,0 +k1,24990:32583029,9912809:5039154 +g1,24990:32583029,9912809 +) +(1,24991:6630773,10597664:25952256,431045,106246 +h1,24991:6630773,10597664:0,0,0 +k1,24991:6938564,10597664:307791 +k1,24991:7246356,10597664:307792 +k1,24991:7554147,10597664:307791 +k1,24991:7861939,10597664:307792 +k1,24991:8169730,10597664:307791 +k1,24991:8477522,10597664:307792 +k1,24991:8785313,10597664:307791 +k1,24991:9093105,10597664:307792 +k1,24991:9400896,10597664:307791 +k1,24991:9708688,10597664:307792 +k1,24991:10016479,10597664:307791 +k1,24991:10324271,10597664:307792 +k1,24991:10632062,10597664:307791 +k1,24991:10939854,10597664:307792 +k1,24991:11247645,10597664:307791 +k1,24991:11555437,10597664:307792 +k1,24991:11863228,10597664:307791 +k1,24991:12171020,10597664:307792 +k1,24991:12478811,10597664:307791 +k1,24991:14446373,10597664:307792 +k1,24991:15086118,10597664:307791 +k1,24991:22032990,10597664:307792 +k1,24991:24332505,10597664:307791 +k1,24991:26963974,10597664:307791 +k1,24991:27935674,10597664:307792 +h1,24991:32583029,10597664:0,0,0 +k1,24991:32583029,10597664:0 +k1,24991:32583029,10597664:0 +) +(1,24992:6630773,11282519:25952256,0,0 +h1,24992:6630773,11282519:0,0,0 +h1,24992:6630773,11282519:0,0,0 +k1,24992:32583029,11282519:25952256 +g1,24992:32583029,11282519 +) +(1,24993:6630773,11967374:25952256,431045,106246 +h1,24993:6630773,11967374:0,0,0 +g1,24993:21568700,11967374 +g1,24993:22564562,11967374 +g1,24993:27211917,11967374 +k1,24993:27211917,11967374:0 +h1,24993:27875825,11967374:0,0,0 +k1,24993:32583029,11967374:4707204 +g1,24993:32583029,11967374 +) +(1,24994:6630773,12652229:25952256,424439,79822 +h1,24994:6630773,12652229:0,0,0 +g1,24994:6962727,12652229 +g1,24994:7294681,12652229 +g1,24994:11278128,12652229 +g1,24994:11942036,12652229 +g1,24994:12937898,12652229 +k1,24994:12937898,12652229:0 +h1,24994:13601806,12652229:0,0,0 +k1,24994:32583030,12652229:18981224 +g1,24994:32583030,12652229 +) +(1,24995:6630773,13337084:25952256,424439,106246 +h1,24995:6630773,13337084:0,0,0 +g1,24995:6962727,13337084 +g1,24995:7294681,13337084 +g1,24995:14929622,13337084 +g1,24995:15593530,13337084 +k1,24995:15593530,13337084:0 +h1,24995:16257438,13337084:0,0,0 +k1,24995:32583029,13337084:16325591 +g1,24995:32583029,13337084 +) +(1,24996:6630773,14021939:25952256,424439,112852 +h1,24996:6630773,14021939:0,0,0 +k1,24996:6928060,14021939:297287 +k1,24996:7225346,14021939:297286 +k1,24996:7522633,14021939:297287 +k1,24996:7819920,14021939:297287 +k1,24996:8117207,14021939:297287 +k1,24996:8414493,14021939:297286 +k1,24996:8711780,14021939:297287 +k1,24996:9009067,14021939:297287 +k1,24996:9306354,14021939:297287 +k1,24996:9603640,14021939:297286 +k1,24996:9900927,14021939:297287 +k1,24996:10198214,14021939:297287 +k1,24996:10495501,14021939:297287 +k1,24996:10792787,14021939:297286 +k1,24996:11090074,14021939:297287 +k1,24996:11387361,14021939:297287 +k1,24996:11684648,14021939:297287 +k1,24996:11981934,14021939:297286 +k1,24996:12279221,14021939:297287 +k1,24996:15232139,14021939:297287 +k1,24996:15861380,14021939:297287 +k1,24996:21137975,14021939:297286 +k1,24996:23426986,14021939:297287 +k1,24996:24056227,14021939:297287 +k1,24996:28668915,14021939:297286 +k1,24996:29630110,14021939:297287 +k1,24996:30259351,14021939:297287 +k1,24996:30259351,14021939:0 +h1,24996:32583029,14021939:0,0,0 +k1,24996:32583029,14021939:0 +k1,24996:32583029,14021939:0 +) +(1,24997:6630773,14706794:25952256,424439,86428 +h1,24997:6630773,14706794:0,0,0 +g1,24997:6962727,14706794 +g1,24997:7294681,14706794 +g1,24997:7626635,14706794 +g1,24997:7958589,14706794 +g1,24997:8290543,14706794 +g1,24997:8622497,14706794 +g1,24997:8954451,14706794 +g1,24997:9286405,14706794 +g1,24997:9618359,14706794 +g1,24997:9950313,14706794 +g1,24997:10282267,14706794 +g1,24997:10614221,14706794 +g1,24997:10946175,14706794 +g1,24997:11278129,14706794 +g1,24997:11610083,14706794 +g1,24997:11942037,14706794 +g1,24997:12273991,14706794 +g1,24997:12605945,14706794 +g1,24997:12937899,14706794 +g1,24997:15261577,14706794 +g1,24997:15925485,14706794 +g1,24997:22564565,14706794 +g1,24997:24888243,14706794 +k1,24997:24888243,14706794:0 +h1,24997:27543875,14706794:0,0,0 +k1,24997:32583029,14706794:5039154 +g1,24997:32583029,14706794 +) +(1,24998:6630773,15391649:25952256,424439,86428 +h1,24998:6630773,15391649:0,0,0 +g1,24998:6962727,15391649 +g1,24998:7294681,15391649 +g1,24998:7626635,15391649 +g1,24998:7958589,15391649 +g1,24998:8290543,15391649 +g1,24998:8622497,15391649 +g1,24998:8954451,15391649 +g1,24998:9286405,15391649 +g1,24998:9618359,15391649 +g1,24998:9950313,15391649 +g1,24998:10282267,15391649 +g1,24998:10614221,15391649 +g1,24998:10946175,15391649 +g1,24998:11278129,15391649 +g1,24998:11610083,15391649 +g1,24998:11942037,15391649 +g1,24998:12273991,15391649 +g1,24998:12605945,15391649 +g1,24998:12937899,15391649 +g1,24998:15593531,15391649 +g1,24998:16257439,15391649 +g1,24998:23228473,15391649 +g1,24998:25220197,15391649 +k1,24998:25220197,15391649:0 +h1,24998:27875829,15391649:0,0,0 +k1,24998:32583029,15391649:4707200 +g1,24998:32583029,15391649 +) +(1,24999:6630773,16076504:25952256,431045,106246 +h1,24999:6630773,16076504:0,0,0 +g1,24999:6962727,16076504 +g1,24999:7294681,16076504 +g1,24999:7626635,16076504 +g1,24999:7958589,16076504 +g1,24999:8290543,16076504 +g1,24999:8622497,16076504 +g1,24999:8954451,16076504 +g1,24999:9286405,16076504 +g1,24999:9618359,16076504 +g1,24999:9950313,16076504 +g1,24999:10282267,16076504 +g1,24999:10614221,16076504 +g1,24999:10946175,16076504 +g1,24999:11278129,16076504 +g1,24999:11610083,16076504 +g1,24999:11942037,16076504 +g1,24999:12273991,16076504 +g1,24999:12605945,16076504 +g1,24999:12937899,16076504 +g1,24999:15261577,16076504 +g1,24999:15925485,16076504 +g1,24999:22896519,16076504 +g1,24999:25220197,16076504 +g1,24999:27875829,16076504 +g1,24999:28871691,16076504 +h1,24999:32523184,16076504:0,0,0 +k1,24999:32583029,16076504:59845 +g1,24999:32583029,16076504 +) +(1,25000:6630773,16761359:25952256,0,0 +h1,25000:6630773,16761359:0,0,0 +h1,25000:6630773,16761359:0,0,0 +k1,25000:32583029,16761359:25952256 +g1,25000:32583029,16761359 +) +(1,25001:6630773,17446214:25952256,431045,112852 +h1,25001:6630773,17446214:0,0,0 +g1,25001:15261575,17446214 +h1,25001:19245022,17446214:0,0,0 +k1,25001:32583029,17446214:13338007 +g1,25001:32583029,17446214 +) +(1,25005:6630773,18786429:25952256,431045,112852 +g1,25005:7626635,18786429 +g1,25005:10282267,18786429 +g1,25005:11942037,18786429 +g1,25005:13269853,18786429 +g1,25005:13933761,18786429 +k1,25005:32583029,18786429:12674097 +g1,25005:32583029,18786429 +) +(1,25013:6630773,19471284:25952256,424439,6605 +(1,25005:6630773,19471284:0,0,0 +g1,25005:6630773,19471284 +g1,25005:6630773,19471284 +g1,25005:6303093,19471284 +(1,25005:6303093,19471284:0,0,0 +) +g1,25005:6630773,19471284 +) +g1,25013:7626635,19471284 +g1,25013:8290543,19471284 +g1,25013:8954451,19471284 +g1,25013:11610083,19471284 +g1,25013:12937899,19471284 +g1,25013:13601807,19471284 +h1,25013:13933761,19471284:0,0,0 +k1,25013:32583029,19471284:18649268 +g1,25013:32583029,19471284 +) +(1,25013:6630773,20156139:25952256,424439,52847 +h1,25013:6630773,20156139:0,0,0 +g1,25013:7626635,20156139 +g1,25013:7958589,20156139 +g1,25013:8290543,20156139 +g1,25013:11278128,20156139 +g1,25013:11610082,20156139 +g1,25013:11942036,20156139 +g1,25013:12273990,20156139 +g1,25013:12605944,20156139 +g1,25013:12937898,20156139 +g1,25013:13269852,20156139 +g1,25013:13601806,20156139 +g1,25013:13933760,20156139 +g1,25013:14265714,20156139 +g1,25013:14597668,20156139 +g1,25013:14929622,20156139 +g1,25013:16921346,20156139 +g1,25013:19245024,20156139 +g1,25013:21236748,20156139 +g1,25013:23560426,20156139 +g1,25013:26216058,20156139 +h1,25013:28207782,20156139:0,0,0 +k1,25013:32583029,20156139:4375247 +g1,25013:32583029,20156139 +) +(1,25013:6630773,20840994:25952256,424439,6605 +h1,25013:6630773,20840994:0,0,0 +g1,25013:7626635,20840994 +g1,25013:7958589,20840994 +g1,25013:8290543,20840994 +g1,25013:10614221,20840994 +g1,25013:10946175,20840994 +g1,25013:11278129,20840994 +g1,25013:11610083,20840994 +g1,25013:11942037,20840994 +g1,25013:12273991,20840994 +g1,25013:12605945,20840994 +g1,25013:12937899,20840994 +g1,25013:13269853,20840994 +g1,25013:13601807,20840994 +g1,25013:13933761,20840994 +g1,25013:14265715,20840994 +g1,25013:14597669,20840994 +g1,25013:14929623,20840994 +g1,25013:16921347,20840994 +g1,25013:17253301,20840994 +g1,25013:19245025,20840994 +g1,25013:21236749,20840994 +g1,25013:21568703,20840994 +g1,25013:23560427,20840994 +g1,25013:23892381,20840994 +g1,25013:24224335,20840994 +g1,25013:26216059,20840994 +g1,25013:26548013,20840994 +k1,25013:26548013,20840994:0 +h1,25013:28207783,20840994:0,0,0 +k1,25013:32583029,20840994:4375246 +g1,25013:32583029,20840994 +) +(1,25013:6630773,21525849:25952256,407923,9908 +h1,25013:6630773,21525849:0,0,0 +g1,25013:7626635,21525849 +g1,25013:8290543,21525849 +g1,25013:11942037,21525849 +g1,25013:14929622,21525849 +g1,25013:15261576,21525849 +g1,25013:16921346,21525849 +g1,25013:17253300,21525849 +g1,25013:17585254,21525849 +g1,25013:19245024,21525849 +g1,25013:19576978,21525849 +g1,25013:21236748,21525849 +g1,25013:21568702,21525849 +g1,25013:21900656,21525849 +g1,25013:23560426,21525849 +g1,25013:23892380,21525849 +g1,25013:24224334,21525849 +g1,25013:24556288,21525849 +g1,25013:26216058,21525849 +g1,25013:26548012,21525849 +g1,25013:26879966,21525849 +h1,25013:28207782,21525849:0,0,0 +k1,25013:32583029,21525849:4375247 +g1,25013:32583029,21525849 +) +(1,25013:6630773,22210704:25952256,407923,9908 +h1,25013:6630773,22210704:0,0,0 +g1,25013:7626635,22210704 +g1,25013:8290543,22210704 +g1,25013:11942037,22210704 +g1,25013:14929622,22210704 +g1,25013:15261576,22210704 +g1,25013:16921346,22210704 +g1,25013:17253300,22210704 +g1,25013:17585254,22210704 +g1,25013:19245024,22210704 +g1,25013:19576978,22210704 +g1,25013:21236748,22210704 +g1,25013:21568702,22210704 +g1,25013:21900656,22210704 +g1,25013:23560426,22210704 +g1,25013:23892380,22210704 +g1,25013:24224334,22210704 +g1,25013:24556288,22210704 +g1,25013:26216058,22210704 +g1,25013:26548012,22210704 +g1,25013:26879966,22210704 +h1,25013:28207782,22210704:0,0,0 +k1,25013:32583029,22210704:4375247 +g1,25013:32583029,22210704 +) +(1,25013:6630773,22895559:25952256,407923,9908 +h1,25013:6630773,22895559:0,0,0 +g1,25013:7626635,22895559 +g1,25013:8290543,22895559 +g1,25013:11942037,22895559 +g1,25013:14929622,22895559 +g1,25013:15261576,22895559 +g1,25013:16921346,22895559 +g1,25013:17253300,22895559 +g1,25013:17585254,22895559 +g1,25013:19245024,22895559 +g1,25013:19576978,22895559 +g1,25013:21236748,22895559 +g1,25013:21568702,22895559 +g1,25013:21900656,22895559 +g1,25013:23560426,22895559 +g1,25013:23892380,22895559 +g1,25013:24224334,22895559 +g1,25013:24556288,22895559 +g1,25013:26216058,22895559 +g1,25013:26548012,22895559 +g1,25013:26879966,22895559 +h1,25013:28207782,22895559:0,0,0 +k1,25013:32583029,22895559:4375247 +g1,25013:32583029,22895559 +) +(1,25013:6630773,23580414:25952256,424439,6605 +h1,25013:6630773,23580414:0,0,0 +g1,25013:7626635,23580414 +g1,25013:8290543,23580414 +g1,25013:8954451,23580414 +g1,25013:10282267,23580414 +g1,25013:11942037,23580414 +h1,25013:13269853,23580414:0,0,0 +k1,25013:32583029,23580414:19313176 +g1,25013:32583029,23580414 +) +] +) +g1,25014:32583029,23587019 +g1,25014:6630773,23587019 +g1,25014:6630773,23587019 +g1,25014:32583029,23587019 +g1,25014:32583029,23587019 +) +h1,25014:6630773,23783627:0,0,0 +v1,25018:6630773,24648707:0,393216,0 +(1,25019:6630773,28551673:25952256,4296182,0 +g1,25019:6630773,28551673 +g1,25019:6237557,28551673 +r1,25032:6368629,28551673:131072,4296182,0 +g1,25019:6567858,28551673 +g1,25019:6764466,28551673 +[1,25019:6764466,28551673:25818563,4296182,0 +(1,25019:6764466,24957005:25818563,701514,196608 +(1,25018:6764466,24957005:0,701514,196608 +r1,25032:7761522,24957005:997056,898122,196608 +k1,25018:6764466,24957005:-997056 +) +(1,25018:6764466,24957005:997056,701514,196608 +) +k1,25018:7918896,24957005:157374 +k1,25018:8246576,24957005:327680 +k1,25018:9949290,24957005:157375 +k1,25018:13401814,24957005:157374 +k1,25018:15267713,24957005:157375 +k1,25018:18157938,24957005:157374 +k1,25018:19790528,24957005:157375 +k1,25018:20303762,24957005:157374 +k1,25018:22768660,24957005:157375 +k1,25018:26472842,24957005:157374 +k1,25018:27821662,24957005:157375 +k1,25018:28998121,24957005:157374 +k1,25018:31193666,24957005:157375 +k1,25018:32583029,24957005:0 +) +(1,25019:6764466,25822085:25818563,513147,134348 +k1,25018:8075536,25822085:206788 +k1,25018:9568139,25822085:206787 +k1,25018:10522693,25822085:206788 +k1,25018:14624940,25822085:206787 +k1,25018:15517890,25822085:206788 +k1,25018:16080538,25822085:206788 +(1,25018:16080538,25822085:0,414482,115847 +r1,25032:17142227,25822085:1061689,530329,115847 +k1,25018:16080538,25822085:-1061689 +) +(1,25018:16080538,25822085:1061689,414482,115847 +k1,25018:16080538,25822085:3277 +h1,25018:17138950,25822085:0,411205,112570 +) +k1,25018:17349014,25822085:206787 +k1,25018:18538842,25822085:206788 +k1,25018:21304155,25822085:206787 +k1,25018:21866803,25822085:206788 +k1,25018:24696342,25822085:206788 +k1,25018:25586014,25822085:206787 +k1,25018:27872259,25822085:206788 +k1,25018:29482827,25822085:206787 +k1,25018:30507504,25822085:206788 +k1,25018:32583029,25822085:0 +) +(1,25019:6764466,26687165:25818563,505283,134348 +k1,25018:8946338,26687165:152877 +k1,25018:9557311,26687165:152876 +k1,25018:10241685,26687165:152877 +k1,25018:13024522,26687165:152877 +k1,25018:13828826,26687165:152876 +k1,25018:16269565,26687165:152877 +k1,25018:18061497,26687165:152877 +k1,25018:20772899,26687165:152876 +k1,25018:21944861,26687165:152877 +k1,25018:23966123,26687165:152831 +k1,25018:26077870,26687165:152876 +k1,25018:26846785,26687165:152877 +k1,25018:28018747,26687165:152877 +k1,25018:30794374,26687165:152876 +k1,25018:31630136,26687165:152877 +k1,25019:32583029,26687165:0 +) +(1,25019:6764466,27552245:25818563,505283,134348 +k1,25018:8150119,27552245:152921 +k1,25018:10037123,27552245:152921 +k1,25018:14274903,27552245:152921 +k1,25018:15446910,27552245:152922 +k1,25018:16014628,27552245:152875 +k1,25018:18747701,27552245:152921 +k1,25018:22218709,27552245:152921 +k1,25018:23475912,27552245:152921 +k1,25018:24376599,27552245:152921 +k1,25018:26042747,27552245:152922 +k1,25018:26847096,27552245:152921 +k1,25018:29287879,27552245:152921 +k1,25018:32583029,27552245:0 +) +(1,25019:6764466,28417325:25818563,513147,134348 +g1,25018:9696546,28417325 +g1,25018:10657303,28417325 +g1,25018:12924848,28417325 +g1,25018:13783369,28417325 +g1,25018:15001683,28417325 +g1,25018:17365566,28417325 +g1,25018:19665224,28417325 +g1,25018:21787279,28417325 +g1,25018:24017469,28417325 +g1,25018:24868126,28417325 +g1,25018:26575994,28417325 +g1,25018:27865087,28417325 +k1,25019:32583029,28417325:3589412 +g1,25019:32583029,28417325 +) +] +g1,25019:32583029,28551673 +) +h1,25019:6630773,28551673:0,0,0 +(1,25022:6630773,31382833:25952256,32768,229376 +(1,25022:6630773,31382833:0,32768,229376 +(1,25022:6630773,31382833:5505024,32768,229376 +r1,25032:12135797,31382833:5505024,262144,229376 +) +k1,25022:6630773,31382833:-5505024 +) +(1,25022:6630773,31382833:25952256,32768,0 +r1,25032:32583029,31382833:25952256,32768,0 +) +) +(1,25022:6630773,33014685:25952256,606339,161218 +(1,25022:6630773,33014685:2954625,582746,14155 +g1,25022:6630773,33014685 +g1,25022:9585398,33014685 +) +g1,25022:12793254,33014685 +k1,25022:32583029,33014685:16590569 +g1,25022:32583029,33014685 +) +(1,25025:6630773,34272981:25952256,513147,126483 +g1,25024:7244845,34272981 +g1,25024:10112045,34272981 +g1,25024:11330359,34272981 +g1,25024:13896093,34272981 +g1,25024:14840466,34272981 +g1,25024:16511634,34272981 +g1,25024:21810219,34272981 +g1,25024:22365308,34272981 +g1,25024:23918511,34272981 +g1,25024:26094961,34272981 +k1,25025:32583029,34272981:3456373 +g1,25025:32583029,34272981 +) +(1,25027:6630773,35138061:25952256,513147,134348 +h1,25026:6630773,35138061:983040,0,0 +k1,25026:9478501,35138061:212525 +k1,25026:10894266,35138061:212524 +k1,25026:11638288,35138061:212525 +k1,25026:12869898,35138061:212525 +k1,25026:14265347,35138061:212524 +k1,25026:15137164,35138061:212525 +k1,25026:16368774,35138061:212525 +k1,25026:18337008,35138061:212524 +k1,25026:18762512,35138061:212512 +k1,25026:22761706,35138061:212524 +k1,25026:23660393,35138061:212525 +k1,25026:26148328,35138061:212525 +k1,25026:28763402,35138061:212524 +k1,25026:29995012,35138061:212525 +k1,25026:32583029,35138061:0 +) +(1,25027:6630773,36003141:25952256,513147,134348 +k1,25026:7566280,36003141:276215 +k1,25026:9689955,36003141:276215 +k1,25026:10652332,36003141:276215 +k1,25026:12308735,36003141:276215 +k1,25026:13576510,36003141:276215 +k1,25026:14942589,36003141:276215 +k1,25026:15878096,36003141:276215 +k1,25026:18521471,36003141:276215 +k1,25026:21006249,36003141:276215 +k1,25026:23541489,36003141:276214 +k1,25026:24430466,36003141:276215 +k1,25026:25725766,36003141:276215 +k1,25026:27184906,36003141:276215 +k1,25026:28120413,36003141:276215 +k1,25026:30230981,36003141:276215 +k1,25026:31130443,36003141:276215 +k1,25026:32184570,36003141:276215 +k1,25026:32583029,36003141:0 +) +(1,25027:6630773,36868221:25952256,505283,134348 +k1,25026:9940232,36868221:182736 +k1,25026:11293441,36868221:182736 +k1,25026:13656560,36868221:182736 +k1,25026:15251597,36868221:182736 +k1,25026:15794126,36868221:182736 +k1,25026:18011099,36868221:182736 +k1,25026:20248390,36868221:182737 +k1,25026:22232055,36868221:182736 +k1,25026:23606236,36868221:182736 +k1,25026:24988936,36868221:182736 +k1,25026:25945652,36868221:182736 +k1,25026:30528475,36868221:182736 +k1,25026:32583029,36868221:0 +) +(1,25027:6630773,37733301:25952256,513147,134348 +k1,25026:8769642,37733301:164269 +k1,25026:9411458,37733301:164059 +k1,25026:10745990,37733301:164059 +k1,25026:12458665,37733301:164059 +k1,25026:13274152,37733301:164059 +k1,25026:15193265,37733301:164059 +k1,25026:16335777,37733301:164059 +k1,25026:18650072,37733301:164059 +k1,25026:21512248,37733301:164059 +k1,25026:22437835,37733301:164059 +k1,25026:23520709,37733301:164059 +k1,25026:28369282,37733301:164059 +k1,25026:29945642,37733301:164059 +k1,25026:31395517,37733301:164059 +k1,25026:32583029,37733301:0 +) +(1,25027:6630773,38598381:25952256,513147,126483 +g1,25026:7279579,38598381 +g1,25026:9796817,38598381 +g1,25026:12050600,38598381 +k1,25027:32583030,38598381:18679072 +g1,25027:32583030,38598381 +) +] +(1,25032:32583029,45706769:0,0,0 +g1,25032:32583029,45706769 +) +) +] +(1,25032:6630773,47279633:25952256,0,0 +h1,25032:6630773,47279633:25952256,0,0 +) +] +(1,25032:4262630,4025873:0,0,0 +[1,25032:-473656,4025873:0,0,0 +(1,25032:-473656,-710413:0,0,0 +(1,25032:-473656,-710413:0,0,0 +g1,25032:-473656,-710413 +) +g1,25032:-473656,-710413 ) ] ) ] !25580 -}429 +}430 !12 -{430 -[1,25037:4262630,47279633:28320399,43253760,11795 -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-644877:0,0,0 -k1,25037:-473656,-644877:-65536 +{431 +[1,25035:4262630,47279633:28320399,43253760,11795 +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-644877:0,0,0 +k1,25035:-473656,-644877:-65536 ) -(1,25037:-473656,4736287:0,0,0 -k1,25037:-473656,4736287:5209943 +(1,25035:-473656,4736287:0,0,0 +k1,25035:-473656,4736287:5209943 ) -g1,25037:-473656,-710413 +g1,25035:-473656,-710413 ) ] ) -[1,25037:6630773,47279633:25952256,43253760,11795 -[1,25037:6630773,4812305:25952256,786432,0 -(1,25037:6630773,4812305:25952256,0,0 -(1,25037:6630773,4812305:25952256,0,0 -g1,25037:3078558,4812305 -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -k1,25037:1358238,2439708:-1720320 -(1,25037:1358238,2439708:1720320,1703936,0 -(1,25037:1358238,2439708:1179648,16384,0 -r1,25037:2537886,2439708:1179648,16384,0 +[1,25035:6630773,47279633:25952256,43253760,11795 +[1,25035:6630773,4812305:25952256,786432,0 +(1,25035:6630773,4812305:25952256,0,0 +(1,25035:6630773,4812305:25952256,0,0 +g1,25035:3078558,4812305 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +k1,25035:1358238,2439708:-1720320 +(1,25035:1358238,2439708:1720320,1703936,0 +(1,25035:1358238,2439708:1179648,16384,0 +r1,25035:2537886,2439708:1179648,16384,0 ) -g1,25037:3062174,2439708 -(1,25037:3062174,2439708:16384,1703936,0 -[1,25037:3062174,2439708:25952256,1703936,0 -(1,25037:3062174,1915420:25952256,1179648,0 -(1,25037:3062174,1915420:16384,1179648,0 -r1,25037:3078558,1915420:16384,1179648,0 +g1,25035:3062174,2439708 +(1,25035:3062174,2439708:16384,1703936,0 +[1,25035:3062174,2439708:25952256,1703936,0 +(1,25035:3062174,1915420:25952256,1179648,0 +(1,25035:3062174,1915420:16384,1179648,0 +r1,25035:3078558,1915420:16384,1179648,0 ) -k1,25037:29014430,1915420:25935872 -g1,25037:29014430,1915420 +k1,25035:29014430,1915420:25935872 +g1,25035:29014430,1915420 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -g1,25037:29030814,2439708 -g1,25037:36135244,2439708 -(1,25037:36135244,2439708:1720320,1703936,0 -(1,25037:36135244,2439708:16384,1703936,0 -[1,25037:36135244,2439708:25952256,1703936,0 -(1,25037:36135244,1915420:25952256,1179648,0 -(1,25037:36135244,1915420:16384,1179648,0 -r1,25037:36151628,1915420:16384,1179648,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +g1,25035:29030814,2439708 +g1,25035:36135244,2439708 +(1,25035:36135244,2439708:1720320,1703936,0 +(1,25035:36135244,2439708:16384,1703936,0 +[1,25035:36135244,2439708:25952256,1703936,0 +(1,25035:36135244,1915420:25952256,1179648,0 +(1,25035:36135244,1915420:16384,1179648,0 +r1,25035:36151628,1915420:16384,1179648,0 ) -k1,25037:62087500,1915420:25935872 -g1,25037:62087500,1915420 +k1,25035:62087500,1915420:25935872 +g1,25035:62087500,1915420 ) ] ) -g1,25037:36675916,2439708 -(1,25037:36675916,2439708:1179648,16384,0 -r1,25037:37855564,2439708:1179648,16384,0 +g1,25035:36675916,2439708 +(1,25035:36675916,2439708:1179648,16384,0 +r1,25035:37855564,2439708:1179648,16384,0 ) ) -k1,25037:3078556,2439708:-34777008 +k1,25035:3078556,2439708:-34777008 ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -k1,25037:1358238,49800853:-1720320 -(1,25037:1358238,49800853:1720320,16384,2228224 -(1,25037:1358238,49800853:1179648,16384,0 -r1,25037:2537886,49800853:1179648,16384,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +k1,25035:1358238,49800853:-1720320 +(1,25035:1358238,49800853:1720320,16384,2228224 +(1,25035:1358238,49800853:1179648,16384,0 +r1,25035:2537886,49800853:1179648,16384,0 ) -g1,25037:3062174,49800853 -(1,25037:3062174,52029077:16384,1703936,0 -[1,25037:3062174,52029077:25952256,1703936,0 -(1,25037:3062174,51504789:25952256,1179648,0 -(1,25037:3062174,51504789:16384,1179648,0 -r1,25037:3078558,51504789:16384,1179648,0 +g1,25035:3062174,49800853 +(1,25035:3062174,52029077:16384,1703936,0 +[1,25035:3062174,52029077:25952256,1703936,0 +(1,25035:3062174,51504789:25952256,1179648,0 +(1,25035:3062174,51504789:16384,1179648,0 +r1,25035:3078558,51504789:16384,1179648,0 ) -k1,25037:29014430,51504789:25935872 -g1,25037:29014430,51504789 +k1,25035:29014430,51504789:25935872 +g1,25035:29014430,51504789 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -g1,25037:29030814,49800853 -g1,25037:36135244,49800853 -(1,25037:36135244,49800853:1720320,16384,2228224 -(1,25037:36135244,52029077:16384,1703936,0 -[1,25037:36135244,52029077:25952256,1703936,0 -(1,25037:36135244,51504789:25952256,1179648,0 -(1,25037:36135244,51504789:16384,1179648,0 -r1,25037:36151628,51504789:16384,1179648,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +g1,25035:29030814,49800853 +g1,25035:36135244,49800853 +(1,25035:36135244,49800853:1720320,16384,2228224 +(1,25035:36135244,52029077:16384,1703936,0 +[1,25035:36135244,52029077:25952256,1703936,0 +(1,25035:36135244,51504789:25952256,1179648,0 +(1,25035:36135244,51504789:16384,1179648,0 +r1,25035:36151628,51504789:16384,1179648,0 ) -k1,25037:62087500,51504789:25935872 -g1,25037:62087500,51504789 +k1,25035:62087500,51504789:25935872 +g1,25035:62087500,51504789 ) ] ) -g1,25037:36675916,49800853 -(1,25037:36675916,49800853:1179648,16384,0 -r1,25037:37855564,49800853:1179648,16384,0 +g1,25035:36675916,49800853 +(1,25035:36675916,49800853:1179648,16384,0 +r1,25035:37855564,49800853:1179648,16384,0 ) ) -k1,25037:3078556,49800853:-34777008 +k1,25035:3078556,49800853:-34777008 ) ] -g1,25037:6630773,4812305 +g1,25035:6630773,4812305 ) ) ] -[1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:0,0,0 -g1,25037:6630773,45706769 +[1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:0,0,0 +g1,25035:6630773,45706769 ) -[1,25037:6630773,45706769:25952256,40108032,0 -[1,25037:6630773,12185121:25952256,6586384,0 -(1,25037:6630773,7073297:25952256,32768,229376 -(1,25037:6630773,7073297:0,32768,229376 -(1,25037:6630773,7073297:5505024,32768,229376 -r1,25037:12135797,7073297:5505024,262144,229376 +[1,25035:6630773,45706769:25952256,40108032,0 +[1,25035:6630773,12185121:25952256,6586384,0 +(1,25035:6630773,7073297:25952256,32768,229376 +(1,25035:6630773,7073297:0,32768,229376 +(1,25035:6630773,7073297:5505024,32768,229376 +r1,25035:12135797,7073297:5505024,262144,229376 ) -k1,25037:6630773,7073297:-5505024 +k1,25035:6630773,7073297:-5505024 ) ) -(1,25037:6630773,8842777:25952256,909509,241827 -h1,25037:6630773,8842777:0,0,0 -k1,25037:23411266,8842777:9171763 -k1,25037:32583029,8842777:9171763 +(1,25035:6630773,8842777:25952256,909509,241827 +h1,25035:6630773,8842777:0,0,0 +k1,25035:23411266,8842777:9171763 +k1,25035:32583029,8842777:9171763 ) -(1,25037:6630773,9498145:25952256,32768,0 -(1,25037:6630773,9498145:5505024,32768,0 -r1,25037:12135797,9498145:5505024,32768,0 -) -k1,25037:22359413,9498145:10223616 -k1,25037:32583029,9498145:10223616 -) -] -(1,25037:7613813,13050201:24969216,513147,126483 -(1,25037:7613813,13050201:-983040,0,0 -g1,25037:6630773,13050201 -g1,25037:5320053,13050201 -g1,25037:4992373,13050201 -(1,25037:4992373,13050201:1310720,0,0 -k1,25037:6303093,13050201:1310720 -) -g1,25037:6630773,13050201 -) -k1,25037:8366073,13050201:264672 -k1,25037:9291938,13050201:264607 -k1,25037:10188312,13050201:264607 -k1,25037:11644233,13050201:264476 -k1,25037:12359072,13050201:264607 -k1,25037:13300666,13050201:264607 -k1,25037:15837276,13050201:264477 -k1,25037:18283838,13050201:264868 -k1,25037:22390690,13050201:264476 -k1,25037:23271205,13050201:264477 -k1,25037:26680754,13050201:264476 -k1,25037:29399290,13050201:264868 -k1,25037:32583029,13050201:0 -) -(1,25037:7613813,13915281:24969216,485622,11795 -g1,25037:10146124,13915281 -g1,25037:12190847,13915281 -g1,25037:13981945,13915281 -k1,25037:32583029,13915281:14564067 -g1,25037:32583029,13915281 -) -(1,25037:7613813,14780361:24969216,505283,134348 -(1,25037:7613813,14780361:-983040,0,0 -g1,25037:6630773,14780361 -g1,25037:5320053,14780361 -g1,25037:4992373,14780361 -(1,25037:4992373,14780361:1310720,0,0 -k1,25037:6303093,14780361:1310720 -) -g1,25037:6630773,14780361 -) -k1,25037:8846273,14780361:198302 -k1,25037:9897198,14780361:198302 -k1,25037:10756758,14780361:198302 -k1,25037:11608453,14780361:198301 -k1,25037:14803058,14780361:198299 -k1,25037:16192803,14780361:198300 -k1,25037:16999278,14780361:198301 -k1,25037:17826725,14780361:198301 -k1,25037:20019940,14780361:198299 -k1,25037:22399939,14780361:198305 -k1,25037:22573596,14780361:-13 -k1,25037:22573609,14780361:13 -k1,25037:25743967,14780361:198300 -k1,25037:29131903,14780361:198299 -k1,25037:32583029,14780361:0 -) -(1,25037:7613813,15645441:24969216,505283,126483 -k1,25037:10830959,15645441:182174 -k1,25037:11814620,15645441:182156 -k1,25037:13328383,15645441:182071 -k1,25037:16500863,15645441:182072 -k1,25037:17827244,15645441:182122 -k1,25037:19024503,15645441:182106 -k1,25037:21301862,15645441:182173 -k1,25037:22820953,15645441:182157 -$1,25037:22820953,15645441 -k1,25037:23567849,15645441:0 -k1,25037:23941297,15645441:0 -k1,25037:25435089,15645441:0 -k1,25037:25808537,15645441:0 -k1,25037:27675777,15645441:0 -k1,25037:28049225,15645441:0 -k1,25037:29543017,15645441:0 -k1,25037:29916465,15645441:0 -$1,25037:32530601,15645441 -k1,25037:32583029,15645441:0 -k1,25037:32583029,15645441:0 -) -(1,25037:7613813,16510521:24969216,513147,134348 -(1,25037:7613813,16510521:-983040,0,0 -g1,25037:6630773,16510521 -g1,25037:5320053,16510521 -g1,25037:4992373,16510521 -(1,25037:4992373,16510521:1310720,0,0 -k1,25037:6303093,16510521:1310720 -) -g1,25037:6630773,16510521 -) -k1,25037:8716923,16510521:222961 -k1,25037:9790541,16510521:222961 -k1,25037:10750758,16510521:222937 -k1,25037:13656108,16510521:222961 -k1,25037:14451830,16510521:222937 -k1,25037:16701749,16510521:222890 -k1,25037:18116084,16510521:222890 -k1,25037:18867897,16510521:222937 -k1,25037:21286243,16510521:222890 -k1,25037:23690969,16510521:223032 -k1,25037:23864626,16510521:-13 -k1,25037:23864639,16510521:13 -k1,25037:26151913,16510521:222890 -k1,25037:28347437,16510521:222890 -k1,25037:32583029,16510521:0 -) -(1,25037:7613813,17375601:24969216,513147,134348 -k1,25037:10117760,17375601:242300 -k1,25037:12151814,17375601:242300 -k1,25037:14312611,17375601:242558 -k1,25037:15356632,17375601:242516 -k1,25037:17964782,17375601:242300 -k1,25037:18823120,17375601:242300 -k1,25037:22095805,17375601:242300 -k1,25037:25120108,17375601:242300 -k1,25037:26905255,17375601:242429 -k1,25037:28162794,17375601:242386 -k1,25037:30102079,17375601:242558 -k1,25037:31681528,17375601:242515 -$1,25037:31681528,17375601 -k1,25037:32470933,17375601:42509 -k1,25037:32583029,17375601:0 -) -(1,25037:7613813,18240681:24969216,505283,126960 -g1,25037:9462473,18240681 -g1,25037:9835921,18240681 -g1,25037:10956265,18240681 -g1,25037:11329713,18240681 -g1,25037:12823505,18240681 -g1,25037:13196953,18240681 -$1,25037:14317297,18240681 -g1,25037:14516526,18240681 -g1,25037:15888194,18240681 -g1,25037:16896793,18240681 -g1,25037:17690434,18240681 -k1,25037:32583029,18240681:13437696 -g1,25037:32583029,18240681 -) -(1,25037:7613813,19105761:24969216,513147,126483 -(1,25037:7613813,19105761:-983040,0,0 -g1,25037:6630773,19105761 -g1,25037:5320053,19105761 -g1,25037:4992373,19105761 -(1,25037:4992373,19105761:1310720,0,0 -k1,25037:6303093,19105761:1310720 -) -g1,25037:6630773,19105761 -) -k1,25037:9169461,19105761:256724 -k1,25037:10044787,19105761:256666 -k1,25037:10962712,19105761:256667 -k1,25037:12410709,19105761:256552 -k1,25037:13117607,19105761:256666 -k1,25037:14111554,19105761:256667 -k1,25037:17580681,19105761:256552 -k1,25037:20019270,19105761:256895 -k1,25037:20809572,19105761:256839 -k1,25037:21969210,19105761:256552 -k1,25037:25577273,19105761:256552 -k1,25037:29868221,19105761:256552 -k1,25037:31048831,19105761:256552 -k1,25037:32583029,19105761:0 -) -(1,25037:7613813,19970841:24969216,505283,126483 -k1,25037:10498888,19970841:286572 -k1,25037:11995910,19970841:286572 -k1,25037:15267514,19970841:287095 -k1,25037:18591680,19970841:286572 -k1,25037:20069697,19970841:286572 -k1,25037:23493346,19970841:287096 -k1,25037:25372224,19970841:287009 -k1,25037:30314474,19970841:286572 -k1,25037:31773659,19970841:286746 -k1,25037:32583029,19970841:0 -) -(1,25037:7613813,20835921:24969216,505283,126483 -g1,25037:8407454,20835921 -k1,25037:32583030,20835921:23119136 -g1,25037:32583030,20835921 -) -(1,25037:7613813,21701001:24969216,505283,134348 -(1,25037:7613813,21701001:-983040,0,0 -g1,25037:6630773,21701001 -g1,25037:5320053,21701001 -g1,25037:4992373,21701001 -(1,25037:4992373,21701001:1310720,0,0 -k1,25037:6303093,21701001:1310720 -) -g1,25037:6630773,21701001 -) -k1,25037:9135754,21701001:223017 -k1,25037:9977408,21701001:222994 -k1,25037:11035354,21701001:223017 -k1,25037:11708579,21701001:222993 -k1,25037:12668853,21701001:222994 -k1,25037:16104374,21701001:222946 -k1,25037:17518765,21701001:222946 -k1,25037:18403017,21701001:222994 -k1,25037:19244670,21701001:222993 -k1,25037:21203009,21701001:222946 -k1,25037:23607792,21701001:223089 -k1,25037:25018250,21701001:222946 -k1,25037:26607622,21701001:222946 -k1,25037:27190361,21701001:222946 -k1,25037:30713819,21701001:223065 -k1,25037:31426319,21701001:222946 -k1,25037:32583029,21701001:0 -) -(1,25037:7613813,22566081:24969216,513147,134348 -k1,25037:11137868,22566081:188272 -k1,25037:15360536,22566081:188272 -k1,25037:16472865,22566081:188271 -k1,25037:18195335,22566081:188272 -k1,25037:21006358,22566081:188272 -k1,25037:22405080,22566081:188272 -k1,25037:25577926,22566081:188337 -k1,25037:28803792,22566081:188272 -k1,25037:29444262,22566081:188272 -k1,25037:31077668,22566081:188337 -k1,25037:32583029,22566081:0 -) -(1,25037:7613813,23431161:24969216,505283,126483 -g1,25037:12468720,23431161 -g1,25037:13840388,23431161 -g1,25037:14848987,23431161 -g1,25037:15642628,23431161 -k1,25037:32583029,23431161:15883961 -g1,25037:32583029,23431161 -) -(1,25037:7613813,24296241:24969216,505283,134348 -(1,25037:7613813,24296241:-983040,0,0 -g1,25037:6630773,24296241 -g1,25037:5320053,24296241 -g1,25037:4992373,24296241 -(1,25037:4992373,24296241:1310720,0,0 -k1,25037:6303093,24296241:1310720 -) -g1,25037:6630773,24296241 -) -k1,25037:8470325,24296241:186079 -k1,25037:9275050,24296241:186065 -k1,25037:10010308,24296241:186066 -k1,25037:12378120,24296241:186118 -k1,25037:12551777,24296241:-13 -k1,25037:12551790,24296241:13 -k1,25037:13964008,24296241:186039 -k1,25037:15018399,24296241:186039 -k1,25037:16920171,24296241:186039 -k1,25037:21198933,24296241:186039 -k1,25037:25245803,24296241:186144 -k1,25037:26233413,24296241:186105 -k1,25037:27606964,24296241:186039 -k1,25037:30869263,24296241:186039 -k1,25037:32583029,24296241:0 -) -(1,25037:7613813,25161321:24969216,505283,126483 -g1,25037:10498707,25161321 -g1,25037:13288574,25161321 -g1,25037:15428979,25161321 -g1,25037:16643361,25161321 -k1,25037:32583029,25161321:13168806 -g1,25037:32583029,25161321 -) -(1,25037:7613813,26026401:24969216,505283,126483 -(1,25037:7613813,26026401:-983040,0,0 -g1,25037:6630773,26026401 -g1,25037:5320053,26026401 -g1,25037:4992373,26026401 -(1,25037:4992373,26026401:1310720,0,0 -k1,25037:6303093,26026401:1310720 -) -g1,25037:6630773,26026401 -) -g1,25037:8851132,26026401 -g1,25037:9599553,26026401 -g1,25037:11980476,26026401 -g1,25037:12539498,26026401 -g1,25037:14772964,26026401 -g1,25037:16144632,26026401 -g1,25037:17153231,26026401 -g1,25037:18367613,26026401 -g1,25037:19935889,26026401 -k1,25037:32583029,26026401:11192241 -g1,25037:32583029,26026401 -) -(1,25037:7613813,26891481:24969216,513147,126960 -(1,25037:7613813,26891481:-983040,0,0 -g1,25037:6630773,26891481 -g1,25037:5320053,26891481 -g1,25037:4992373,26891481 -(1,25037:4992373,26891481:1310720,0,0 -k1,25037:6303093,26891481:1310720 -) -g1,25037:6630773,26891481 -) -(1,25037:6630773,26891481:983040,211026,0 -k1,25037:7613813,26891481:327680 -) -k1,25037:10058116,26891481:262609 -k1,25037:11507860,26891481:262232 -k1,25037:12219669,26891481:262232 -k1,25037:14959539,26891481:262609 -k1,25037:16592443,26891481:262547 -$1,25037:16592443,26891481 -k1,25037:18148414,26891481:62179 -k1,25037:18584042,26891481:62180 -k1,25037:19019670,26891481:62180 -k1,25037:19455298,26891481:62180 -k1,25037:20637822,26891481:62180 -k1,25037:21073450,26891481:62180 -k1,25037:23002870,26891481:62180 -(1,25037:23376318,26979964:32768,0,0 -) -k1,25037:23471265,26891481:62179 -k1,25037:25027237,26891481:62180 -k1,25037:25462865,26891481:62180 -k1,25037:26645389,26891481:62180 -k1,25037:27081017,26891481:62180 -k1,25037:29010437,26891481:62180 -k1,25037:29446065,26891481:62180 -k1,25037:31375484,26891481:62179 -k1,25037:31811112,26891481:62180 -k1,25037:32246740,26891481:62180 -k1,25037:32583029,26891481:0 -) -(1,25037:7613813,27756561:24969216,505283,126483 -g1,25037:10227949,27756561 -g1,25037:10601397,27756561 -$1,25037:11721741,27756561 -g1,25037:11920970,27756561 -g1,25037:14442140,27756561 -g1,25037:15450739,27756561 -g1,25037:19715822,27756561 -g1,25037:21087490,27756561 -g1,25037:22096089,27756561 -g1,25037:22889730,27756561 -k1,25037:32583029,27756561:8238400 -g1,25037:32583029,27756561 -) -(1,25037:7613813,28621641:24969216,505283,134348 -(1,25037:7613813,28621641:-983040,0,0 -g1,25037:6630773,28621641 -g1,25037:5320053,28621641 -g1,25037:4992373,28621641 -(1,25037:4992373,28621641:1310720,0,0 -k1,25037:6303093,28621641:1310720 -) -g1,25037:6630773,28621641 -) -(1,25037:6630773,28621641:983040,211026,0 -k1,25037:7613813,28621641:327680 -) -g1,25037:9994736,28621641 -g1,25037:11393929,28621641 -g1,25037:12367138,28621641 -g1,25037:17130294,28621641 -g1,25037:18903042,28621641 -g1,25037:20694140,28621641 -g1,25037:26073335,28621641 -g1,25037:27445003,28621641 -g1,25037:28453602,28621641 -g1,25037:29667984,28621641 -g1,25037:30439342,28621641 -k1,25037:32583029,28621641:688788 -g1,25037:32583029,28621641 -) -(1,25037:7613813,29486721:24969216,505283,134348 -(1,25037:7613813,29486721:-983040,0,0 -g1,25037:6630773,29486721 -g1,25037:5320053,29486721 -g1,25037:4992373,29486721 -(1,25037:4992373,29486721:1310720,0,0 -k1,25037:6303093,29486721:1310720 -) -g1,25037:6630773,29486721 -) -k1,25037:10261103,29486721:244085 -k1,25037:10955376,29486721:244041 -k1,25037:11936697,29486721:244041 -k1,25037:14362611,29486721:244220 -k1,25037:17695275,29486721:243952 -k1,25037:18562741,29486721:244219 -k1,25037:20003380,29486721:243952 -k1,25037:20692320,29486721:243951 -k1,25037:22979953,29486721:244220 -k1,25037:26261499,29486721:243952 -k1,25037:27696895,29486721:243951 -k1,25037:31077668,29486721:244220 -k1,25037:32583029,29486721:0 -) -(1,25037:7613813,30351801:24969216,505283,126483 -g1,25037:11777970,30351801 -g1,25037:13149638,30351801 -g1,25037:14158237,30351801 -g1,25037:15372619,30351801 -g1,25037:16542436,30351801 -g1,25037:17712253,30351801 -g1,25037:19280529,30351801 -k1,25037:32583029,30351801:11847601 -g1,25037:32583029,30351801 -) -(1,25037:7613813,31216881:24969216,505283,134348 -(1,25037:7613813,31216881:-983040,0,0 -g1,25037:6630773,31216881 -g1,25037:5320053,31216881 -g1,25037:4992373,31216881 -(1,25037:4992373,31216881:1310720,0,0 -k1,25037:6303093,31216881:1310720 -) -g1,25037:6630773,31216881 -) -k1,25037:8982648,31216881:162972 -k1,25037:9925463,31216881:162937 -k1,25037:12270238,31216881:163081 -k1,25037:12882678,31216881:162863 -k1,25037:15856380,31216881:162863 -k1,25037:19253662,31216881:163081 -k1,25037:20650569,31216881:162864 -k1,25037:21755402,31216881:163081 -k1,25037:24366035,31216881:162863 -k1,25037:25464097,31216881:162863 -k1,25037:26843526,31216881:163081 -k1,25037:28598440,31216881:163045 -k1,25037:32583029,31216881:0 -) -(1,25037:7613813,32081961:24969216,505283,126483 -g1,25037:8964509,32081961 -g1,25037:9973108,32081961 -g1,25037:11187490,32081961 -g1,25037:12755766,32081961 -k1,25037:32583029,32081961:18372364 -g1,25037:32583029,32081961 -) -(1,25037:7613813,32947041:24969216,513147,134348 -(1,25037:7613813,32947041:-983040,0,0 -g1,25037:6630773,32947041 -g1,25037:5320053,32947041 -g1,25037:4992373,32947041 -(1,25037:4992373,32947041:1310720,0,0 -k1,25037:6303093,32947041:1310720 -) -g1,25037:6630773,32947041 -) -k1,25037:10086056,32947041:172585 -k1,25037:11038492,32947041:172558 -k1,25037:11739927,32947041:172559 -k1,25037:14094285,32947041:172664 -k1,25037:15454302,32947041:172505 -k1,25037:18421262,32947041:172505 -k1,25037:19209805,32947041:172505 -k1,25037:22393689,32947041:172505 -k1,25037:24274221,32947041:172664 -k1,25037:28209228,32947041:172585 -k1,25037:29516977,32947041:172665 -k1,25037:31281484,32947041:172638 -k1,25037:32583029,32947041:0 -) -(1,25037:7613813,33812121:24969216,505283,126483 -g1,25037:11797631,33812121 -g1,25037:13169299,33812121 -g1,25037:14177898,33812121 -g1,25037:14971539,33812121 -k1,25037:32583029,33812121:16156591 -g1,25037:32583029,33812121 -) -(1,25037:7613813,34677201:24969216,505283,126483 -(1,25037:7613813,34677201:-983040,0,0 -g1,25037:6630773,34677201 -g1,25037:5320053,34677201 -g1,25037:4992373,34677201 -(1,25037:4992373,34677201:1310720,0,0 -k1,25037:6303093,34677201:1310720 -) -g1,25037:6630773,34677201 -) -k1,25037:9502313,34677201:163592 -k1,25037:10403150,34677201:163557 -k1,25037:11016938,34677201:163556 -k1,25037:13362331,34677201:163699 -k1,25037:14713328,34677201:163485 -k1,25037:15326390,34677201:163485 -k1,25037:17161912,34677201:163699 -k1,25037:19220150,34677201:163592 -k1,25037:19978119,34677201:163557 -k1,25037:21909323,34677201:163698 -k1,25037:23664856,34677201:163664 -k1,25037:27812930,34677201:163485 -k1,25037:29148925,34677201:163556 -k1,25037:30121780,34677201:163485 -k1,25037:31300490,34677201:163557 -k1,25037:32583029,34677201:0 -) -(1,25037:7613813,35542281:24969216,505283,95026 -k1,25037:32583028,35542281:23514316 -g1,25037:32583028,35542281 -) -(1,25037:7613813,36407361:24969216,505283,134348 -(1,25037:7613813,36407361:-983040,0,0 -g1,25037:6630773,36407361 -g1,25037:5320053,36407361 -g1,25037:4992373,36407361 -(1,25037:4992373,36407361:1310720,0,0 -k1,25037:6303093,36407361:1310720 -) -g1,25037:6630773,36407361 -) -k1,25037:10183870,36407361:520091 -k1,25037:11252835,36407361:519773 -k1,25037:13955580,36407361:521051 -k1,25037:18412772,36407361:519134 -k1,25037:21662790,36407361:519133 -k1,25037:23545073,36407361:519134 -k1,25037:24689371,36407361:521051 -k1,25037:28073385,36407361:520091 -k1,25037:29187570,36407361:519773 -k1,25037:31077668,36407361:521051 -k1,25037:32583029,36407361:0 -) -(1,25037:7613813,37272441:24969216,505283,126483 -g1,25037:11797631,37272441 -g1,25037:13169299,37272441 -g1,25037:14177898,37272441 -g1,25037:14971539,37272441 -k1,25037:32583029,37272441:16156591 -g1,25037:32583029,37272441 -) -(1,25037:7613813,38137521:24969216,505283,126483 -(1,25037:7613813,38137521:-983040,0,0 -g1,25037:6630773,38137521 -g1,25037:5320053,38137521 -g1,25037:4992373,38137521 -(1,25037:4992373,38137521:1310720,0,0 -k1,25037:6303093,38137521:1310720 -) -g1,25037:6630773,38137521 -) -k1,25037:8508113,38137521:261878 -k1,25037:9620649,38137521:261879 -k1,25037:10619745,38137521:261816 -k1,25037:16483455,38137521:261692 -k1,25037:17936591,38137521:261691 -k1,25037:18827553,38137521:261816 -k1,25037:19766357,38137521:261817 -k1,25037:21359740,38137521:261691 -k1,25037:23803500,38137521:262066 -k1,25037:27264004,38137521:261692 -k1,25037:30430624,38137521:262065 -k1,25037:31762519,38137521:261692 -k1,25037:32583029,38137521:0 -) -(1,25037:7613813,39002601:24969216,505283,126960 -k1,25037:9152848,39002601:363319 -k1,25037:10532303,39002601:364302 -k1,25037:12266800,39002601:364140 -$1,25037:12266800,39002601 -k1,25037:14295987,39002601:161947 -k1,25037:14831381,39002601:161946 -k1,25037:15366776,39002601:161947 -k1,25037:15902171,39002601:161947 -k1,25037:17184462,39002601:161947 -k1,25037:17719857,39002601:161947 -k1,25037:21242836,39002601:161947 -k1,25037:21778231,39002601:161947 -k1,25037:23060522,39002601:161947 -k1,25037:23595917,39002601:161947 -k1,25037:25251656,39002601:161947 -k1,25037:25787050,39002601:161946 -k1,25037:27069341,39002601:161947 -k1,25037:27604736,39002601:161947 -$1,25037:28725080,39002601 -k1,25037:29088399,39002601:363319 -k1,25037:31773659,39002601:363319 -k1,25037:32583029,39002601:0 -) -(1,25037:7613813,39867681:24969216,505283,126483 -g1,25037:11878896,39867681 -g1,25037:13250564,39867681 -g1,25037:14259163,39867681 -g1,25037:15052804,39867681 -k1,25037:32583029,39867681:16075326 -g1,25037:32583029,39867681 -) -(1,25037:7613813,40732761:24969216,505283,126483 -(1,25037:7613813,40732761:-983040,0,0 -g1,25037:6630773,40732761 -g1,25037:5320053,40732761 -g1,25037:4992373,40732761 -(1,25037:4992373,40732761:1310720,0,0 -k1,25037:6303093,40732761:1310720 -) -g1,25037:6630773,40732761 -) -k1,25037:9088443,40732761:205198 -k1,25037:9866420,40732761:205192 -k1,25037:11263045,40732761:205180 -k1,25037:12076412,40732761:205193 -k1,25037:14950873,40732761:205180 -k1,25037:17337783,40732761:205216 -k1,25037:18446049,40732761:205180 -k1,25037:22518508,40732761:205180 -k1,25037:23323343,40732761:205181 -k1,25037:25931728,40732761:205180 -k1,25037:29960278,40732761:205180 -k1,25037:32583029,40732761:0 -) -(1,25037:7613813,41597841:24969216,505283,134348 -g1,25037:9149977,41597841 -g1,25037:9972453,41597841 -g1,25037:13035605,41597841 -g1,25037:13829246,41597841 -g1,25037:15397522,41597841 -g1,25037:17188620,41597841 -g1,25037:21372438,41597841 -g1,25037:22744106,41597841 -g1,25037:23752705,41597841 -g1,25037:24546346,41597841 -k1,25037:32583029,41597841:6581784 -g1,25037:32583029,41597841 -) -(1,25037:7613813,42462921:24969216,513147,134348 -(1,25037:7613813,42462921:-983040,0,0 -g1,25037:6630773,42462921 -g1,25037:5320053,42462921 -g1,25037:4992373,42462921 -(1,25037:4992373,42462921:1310720,0,0 -k1,25037:6303093,42462921:1310720 -) -g1,25037:6630773,42462921 -) -k1,25037:9157525,42462921:274280 -k1,25037:10004515,42462921:274205 -k1,25037:10807596,42462921:274205 -k1,25037:12273097,42462921:274056 -k1,25037:13155477,42462921:274206 -k1,25037:16098814,42462921:274056 -k1,25037:18555012,42462921:274504 -k1,25037:19318622,42462921:274056 -k1,25037:22803287,42462921:274056 -k1,25037:23693380,42462921:274055 -k1,25037:26997821,42462921:274056 -k1,25037:30044705,42462921:274056 -k1,25037:32081024,42462921:274056 -k1,25037:32583029,42462921:0 -) -(1,25037:7613813,43328001:24969216,505283,126483 -g1,25037:9047085,43328001 -g1,25037:10188066,43328001 -g1,25037:13424889,43328001 -g1,25037:14076316,43328001 -g1,25037:17412098,43328001 -g1,25037:18205739,43328001 -g1,25037:19774015,43328001 -g1,25037:21565113,43328001 -g1,25037:25748931,43328001 -g1,25037:27120599,43328001 -g1,25037:28129198,43328001 -g1,25037:28922839,43328001 -k1,25037:32583029,43328001:2205291 -g1,25037:32583029,43328001 -) -(1,25037:7613813,44193081:24969216,505283,126483 -(1,25037:7613813,44193081:-983040,0,0 -g1,25037:6630773,44193081 -g1,25037:5320053,44193081 -g1,25037:4992373,44193081 -(1,25037:4992373,44193081:1310720,0,0 -k1,25037:6303093,44193081:1310720 -) -g1,25037:6630773,44193081 -) -k1,25037:9630736,44193081:229101 -k1,25037:10310039,44193081:229071 -k1,25037:10989342,44193081:229071 -k1,25037:13400227,44193081:229191 -k1,25037:15652990,44193081:229011 -k1,25037:18031583,44193081:229012 -k1,25037:19623744,44193081:229012 -k1,25037:20476181,44193081:229190 -k1,25037:22188273,44193081:229012 -k1,25037:24458165,44193081:229101 -k1,25037:25585169,44193081:229161 -k1,25037:28851774,44193081:229011 -k1,25037:29532984,44193081:229012 -k1,25037:32583029,44193081:0 -) -(1,25037:7613813,45058161:24969216,505283,126483 -g1,25037:8407454,45058161 -g1,25037:9802060,45058161 -g1,25037:11173728,45058161 -g1,25037:12182327,45058161 -g1,25037:12975968,45058161 -k1,25037:32583029,45058161:18152162 -g1,25037:32583029,45058161 -) -] -(1,25037:32583029,45706769:0,0,0 -g1,25037:32583029,45706769 -) -) -] -(1,25037:6630773,47279633:25952256,481690,11795 -(1,25037:6630773,47279633:25952256,481690,11795 -(1,25037:6630773,47279633:0,0,0 -v1,25037:6630773,47279633:0,0,0 -) -g1,25037:6830002,47279633 -k1,25037:31387652,47279633:24557650 -) -) -] -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-710413:0,0,0 -g1,25037:-473656,-710413 -) -g1,25037:-473656,-710413 +(1,25035:6630773,9498145:25952256,32768,0 +(1,25035:6630773,9498145:5505024,32768,0 +r1,25035:12135797,9498145:5505024,32768,0 +) +k1,25035:22359413,9498145:10223616 +k1,25035:32583029,9498145:10223616 +) +] +(1,25035:7613813,13050201:24969216,513147,126483 +(1,25035:7613813,13050201:-983040,0,0 +g1,25035:6630773,13050201 +g1,25035:5320053,13050201 +g1,25035:4992373,13050201 +(1,25035:4992373,13050201:1310720,0,0 +k1,25035:6303093,13050201:1310720 +) +g1,25035:6630773,13050201 +) +k1,25035:8366073,13050201:264672 +k1,25035:9291938,13050201:264607 +k1,25035:10188312,13050201:264607 +k1,25035:11644233,13050201:264476 +k1,25035:12359072,13050201:264607 +k1,25035:13300666,13050201:264607 +k1,25035:15837276,13050201:264477 +k1,25035:18283838,13050201:264868 +k1,25035:22390690,13050201:264476 +k1,25035:23271205,13050201:264477 +k1,25035:26680754,13050201:264476 +k1,25035:29399290,13050201:264868 +k1,25035:32583029,13050201:0 +) +(1,25035:7613813,13915281:24969216,485622,11795 +g1,25035:10146124,13915281 +g1,25035:12190847,13915281 +g1,25035:13981945,13915281 +k1,25035:32583029,13915281:14564067 +g1,25035:32583029,13915281 +) +(1,25035:7613813,14780361:24969216,505283,134348 +(1,25035:7613813,14780361:-983040,0,0 +g1,25035:6630773,14780361 +g1,25035:5320053,14780361 +g1,25035:4992373,14780361 +(1,25035:4992373,14780361:1310720,0,0 +k1,25035:6303093,14780361:1310720 +) +g1,25035:6630773,14780361 +) +k1,25035:8846273,14780361:198302 +k1,25035:9897198,14780361:198302 +k1,25035:10756758,14780361:198302 +k1,25035:11608453,14780361:198301 +k1,25035:14803058,14780361:198299 +k1,25035:16192803,14780361:198300 +k1,25035:16999278,14780361:198301 +k1,25035:17826725,14780361:198301 +k1,25035:20019940,14780361:198299 +k1,25035:22399939,14780361:198305 +k1,25035:22573596,14780361:-13 +k1,25035:22573609,14780361:13 +k1,25035:25743967,14780361:198300 +k1,25035:29131903,14780361:198299 +k1,25035:32583029,14780361:0 +) +(1,25035:7613813,15645441:24969216,505283,126483 +k1,25035:10830959,15645441:182174 +k1,25035:11814620,15645441:182156 +k1,25035:13328383,15645441:182071 +k1,25035:16500863,15645441:182072 +k1,25035:17827244,15645441:182122 +k1,25035:19024503,15645441:182106 +k1,25035:21301862,15645441:182173 +k1,25035:22820953,15645441:182157 +$1,25035:22820953,15645441 +k1,25035:23567849,15645441:0 +k1,25035:23941297,15645441:0 +k1,25035:25435089,15645441:0 +k1,25035:25808537,15645441:0 +k1,25035:27675777,15645441:0 +k1,25035:28049225,15645441:0 +k1,25035:29543017,15645441:0 +k1,25035:29916465,15645441:0 +$1,25035:32530601,15645441 +k1,25035:32583029,15645441:0 +k1,25035:32583029,15645441:0 +) +(1,25035:7613813,16510521:24969216,513147,134348 +(1,25035:7613813,16510521:-983040,0,0 +g1,25035:6630773,16510521 +g1,25035:5320053,16510521 +g1,25035:4992373,16510521 +(1,25035:4992373,16510521:1310720,0,0 +k1,25035:6303093,16510521:1310720 +) +g1,25035:6630773,16510521 +) +k1,25035:8716923,16510521:222961 +k1,25035:9790541,16510521:222961 +k1,25035:10750758,16510521:222937 +k1,25035:13656108,16510521:222961 +k1,25035:14451830,16510521:222937 +k1,25035:16701749,16510521:222890 +k1,25035:18116084,16510521:222890 +k1,25035:18867897,16510521:222937 +k1,25035:21286243,16510521:222890 +k1,25035:23690969,16510521:223032 +k1,25035:23864626,16510521:-13 +k1,25035:23864639,16510521:13 +k1,25035:26151913,16510521:222890 +k1,25035:28347437,16510521:222890 +k1,25035:32583029,16510521:0 +) +(1,25035:7613813,17375601:24969216,513147,134348 +k1,25035:10117760,17375601:242300 +k1,25035:12151814,17375601:242300 +k1,25035:14312611,17375601:242558 +k1,25035:15356632,17375601:242516 +k1,25035:17964782,17375601:242300 +k1,25035:18823120,17375601:242300 +k1,25035:22095805,17375601:242300 +k1,25035:25120108,17375601:242300 +k1,25035:26905255,17375601:242429 +k1,25035:28162794,17375601:242386 +k1,25035:30102079,17375601:242558 +k1,25035:31681528,17375601:242515 +$1,25035:31681528,17375601 +k1,25035:32470933,17375601:42509 +k1,25035:32583029,17375601:0 +) +(1,25035:7613813,18240681:24969216,505283,126960 +g1,25035:9462473,18240681 +g1,25035:9835921,18240681 +g1,25035:10956265,18240681 +g1,25035:11329713,18240681 +g1,25035:12823505,18240681 +g1,25035:13196953,18240681 +$1,25035:14317297,18240681 +g1,25035:14516526,18240681 +g1,25035:15888194,18240681 +g1,25035:16896793,18240681 +g1,25035:17690434,18240681 +k1,25035:32583029,18240681:13437696 +g1,25035:32583029,18240681 +) +(1,25035:7613813,19105761:24969216,513147,126483 +(1,25035:7613813,19105761:-983040,0,0 +g1,25035:6630773,19105761 +g1,25035:5320053,19105761 +g1,25035:4992373,19105761 +(1,25035:4992373,19105761:1310720,0,0 +k1,25035:6303093,19105761:1310720 +) +g1,25035:6630773,19105761 +) +k1,25035:9169461,19105761:256724 +k1,25035:10044787,19105761:256666 +k1,25035:10962712,19105761:256667 +k1,25035:12410709,19105761:256552 +k1,25035:13117607,19105761:256666 +k1,25035:14111554,19105761:256667 +k1,25035:17580681,19105761:256552 +k1,25035:20019270,19105761:256895 +k1,25035:20809572,19105761:256839 +k1,25035:21969210,19105761:256552 +k1,25035:25577273,19105761:256552 +k1,25035:29868221,19105761:256552 +k1,25035:31048831,19105761:256552 +k1,25035:32583029,19105761:0 +) +(1,25035:7613813,19970841:24969216,505283,126483 +k1,25035:10498888,19970841:286572 +k1,25035:11995910,19970841:286572 +k1,25035:15267514,19970841:287095 +k1,25035:18591680,19970841:286572 +k1,25035:20069697,19970841:286572 +k1,25035:23493346,19970841:287096 +k1,25035:25372224,19970841:287009 +k1,25035:30314474,19970841:286572 +k1,25035:31773659,19970841:286746 +k1,25035:32583029,19970841:0 +) +(1,25035:7613813,20835921:24969216,505283,126483 +g1,25035:8407454,20835921 +k1,25035:32583030,20835921:23119136 +g1,25035:32583030,20835921 +) +(1,25035:7613813,21701001:24969216,505283,134348 +(1,25035:7613813,21701001:-983040,0,0 +g1,25035:6630773,21701001 +g1,25035:5320053,21701001 +g1,25035:4992373,21701001 +(1,25035:4992373,21701001:1310720,0,0 +k1,25035:6303093,21701001:1310720 +) +g1,25035:6630773,21701001 +) +k1,25035:9135754,21701001:223017 +k1,25035:9977408,21701001:222994 +k1,25035:11035354,21701001:223017 +k1,25035:11708579,21701001:222993 +k1,25035:12668853,21701001:222994 +k1,25035:16104374,21701001:222946 +k1,25035:17518765,21701001:222946 +k1,25035:18403017,21701001:222994 +k1,25035:19244670,21701001:222993 +k1,25035:21203009,21701001:222946 +k1,25035:23607792,21701001:223089 +k1,25035:25018250,21701001:222946 +k1,25035:26607622,21701001:222946 +k1,25035:27190361,21701001:222946 +k1,25035:30713819,21701001:223065 +k1,25035:31426319,21701001:222946 +k1,25035:32583029,21701001:0 +) +(1,25035:7613813,22566081:24969216,513147,134348 +k1,25035:11137868,22566081:188272 +k1,25035:15360536,22566081:188272 +k1,25035:16472865,22566081:188271 +k1,25035:18195335,22566081:188272 +k1,25035:21006358,22566081:188272 +k1,25035:22405080,22566081:188272 +k1,25035:25577926,22566081:188337 +k1,25035:28803792,22566081:188272 +k1,25035:29444262,22566081:188272 +k1,25035:31077668,22566081:188337 +k1,25035:32583029,22566081:0 +) +(1,25035:7613813,23431161:24969216,505283,126483 +g1,25035:12468720,23431161 +g1,25035:13840388,23431161 +g1,25035:14848987,23431161 +g1,25035:15642628,23431161 +k1,25035:32583029,23431161:15883961 +g1,25035:32583029,23431161 +) +(1,25035:7613813,24296241:24969216,505283,134348 +(1,25035:7613813,24296241:-983040,0,0 +g1,25035:6630773,24296241 +g1,25035:5320053,24296241 +g1,25035:4992373,24296241 +(1,25035:4992373,24296241:1310720,0,0 +k1,25035:6303093,24296241:1310720 +) +g1,25035:6630773,24296241 +) +k1,25035:8470325,24296241:186079 +k1,25035:9275050,24296241:186065 +k1,25035:10010308,24296241:186066 +k1,25035:12378120,24296241:186118 +k1,25035:12551777,24296241:-13 +k1,25035:12551790,24296241:13 +k1,25035:13964008,24296241:186039 +k1,25035:15018399,24296241:186039 +k1,25035:16920171,24296241:186039 +k1,25035:21198933,24296241:186039 +k1,25035:25245803,24296241:186144 +k1,25035:26233413,24296241:186105 +k1,25035:27606964,24296241:186039 +k1,25035:30869263,24296241:186039 +k1,25035:32583029,24296241:0 +) +(1,25035:7613813,25161321:24969216,505283,126483 +g1,25035:10498707,25161321 +g1,25035:13288574,25161321 +g1,25035:15428979,25161321 +g1,25035:16643361,25161321 +k1,25035:32583029,25161321:13168806 +g1,25035:32583029,25161321 +) +(1,25035:7613813,26026401:24969216,505283,126483 +(1,25035:7613813,26026401:-983040,0,0 +g1,25035:6630773,26026401 +g1,25035:5320053,26026401 +g1,25035:4992373,26026401 +(1,25035:4992373,26026401:1310720,0,0 +k1,25035:6303093,26026401:1310720 +) +g1,25035:6630773,26026401 +) +g1,25035:8851132,26026401 +g1,25035:9599553,26026401 +g1,25035:11980476,26026401 +g1,25035:12539498,26026401 +g1,25035:14772964,26026401 +g1,25035:16144632,26026401 +g1,25035:17153231,26026401 +g1,25035:18367613,26026401 +g1,25035:19935889,26026401 +k1,25035:32583029,26026401:11192241 +g1,25035:32583029,26026401 +) +(1,25035:7613813,26891481:24969216,513147,126960 +(1,25035:7613813,26891481:-983040,0,0 +g1,25035:6630773,26891481 +g1,25035:5320053,26891481 +g1,25035:4992373,26891481 +(1,25035:4992373,26891481:1310720,0,0 +k1,25035:6303093,26891481:1310720 +) +g1,25035:6630773,26891481 +) +(1,25035:6630773,26891481:983040,211026,0 +k1,25035:7613813,26891481:327680 +) +k1,25035:10058116,26891481:262609 +k1,25035:11507860,26891481:262232 +k1,25035:12219669,26891481:262232 +k1,25035:14959539,26891481:262609 +k1,25035:16592443,26891481:262547 +$1,25035:16592443,26891481 +k1,25035:18148414,26891481:62179 +k1,25035:18584042,26891481:62180 +k1,25035:19019670,26891481:62180 +k1,25035:19455298,26891481:62180 +k1,25035:20637822,26891481:62180 +k1,25035:21073450,26891481:62180 +k1,25035:23002870,26891481:62180 +(1,25035:23376318,26979964:32768,0,0 +) +k1,25035:23471265,26891481:62179 +k1,25035:25027237,26891481:62180 +k1,25035:25462865,26891481:62180 +k1,25035:26645389,26891481:62180 +k1,25035:27081017,26891481:62180 +k1,25035:29010437,26891481:62180 +k1,25035:29446065,26891481:62180 +k1,25035:31375484,26891481:62179 +k1,25035:31811112,26891481:62180 +k1,25035:32246740,26891481:62180 +k1,25035:32583029,26891481:0 +) +(1,25035:7613813,27756561:24969216,505283,126483 +g1,25035:10227949,27756561 +g1,25035:10601397,27756561 +$1,25035:11721741,27756561 +g1,25035:11920970,27756561 +g1,25035:14442140,27756561 +g1,25035:15450739,27756561 +g1,25035:19715822,27756561 +g1,25035:21087490,27756561 +g1,25035:22096089,27756561 +g1,25035:22889730,27756561 +k1,25035:32583029,27756561:8238400 +g1,25035:32583029,27756561 +) +(1,25035:7613813,28621641:24969216,505283,134348 +(1,25035:7613813,28621641:-983040,0,0 +g1,25035:6630773,28621641 +g1,25035:5320053,28621641 +g1,25035:4992373,28621641 +(1,25035:4992373,28621641:1310720,0,0 +k1,25035:6303093,28621641:1310720 +) +g1,25035:6630773,28621641 +) +(1,25035:6630773,28621641:983040,211026,0 +k1,25035:7613813,28621641:327680 +) +g1,25035:9994736,28621641 +g1,25035:11393929,28621641 +g1,25035:12367138,28621641 +g1,25035:17130294,28621641 +g1,25035:18903042,28621641 +g1,25035:20694140,28621641 +g1,25035:26073335,28621641 +g1,25035:27445003,28621641 +g1,25035:28453602,28621641 +g1,25035:29667984,28621641 +g1,25035:30439342,28621641 +k1,25035:32583029,28621641:688788 +g1,25035:32583029,28621641 +) +(1,25035:7613813,29486721:24969216,505283,134348 +(1,25035:7613813,29486721:-983040,0,0 +g1,25035:6630773,29486721 +g1,25035:5320053,29486721 +g1,25035:4992373,29486721 +(1,25035:4992373,29486721:1310720,0,0 +k1,25035:6303093,29486721:1310720 +) +g1,25035:6630773,29486721 +) +k1,25035:10261103,29486721:244085 +k1,25035:10955376,29486721:244041 +k1,25035:11936697,29486721:244041 +k1,25035:14362611,29486721:244220 +k1,25035:17695275,29486721:243952 +k1,25035:18562741,29486721:244219 +k1,25035:20003380,29486721:243952 +k1,25035:20692320,29486721:243951 +k1,25035:22979953,29486721:244220 +k1,25035:26261499,29486721:243952 +k1,25035:27696895,29486721:243951 +k1,25035:31077668,29486721:244220 +k1,25035:32583029,29486721:0 +) +(1,25035:7613813,30351801:24969216,505283,126483 +g1,25035:11777970,30351801 +g1,25035:13149638,30351801 +g1,25035:14158237,30351801 +g1,25035:15372619,30351801 +g1,25035:16542436,30351801 +g1,25035:17712253,30351801 +g1,25035:19280529,30351801 +k1,25035:32583029,30351801:11847601 +g1,25035:32583029,30351801 +) +(1,25035:7613813,31216881:24969216,505283,134348 +(1,25035:7613813,31216881:-983040,0,0 +g1,25035:6630773,31216881 +g1,25035:5320053,31216881 +g1,25035:4992373,31216881 +(1,25035:4992373,31216881:1310720,0,0 +k1,25035:6303093,31216881:1310720 +) +g1,25035:6630773,31216881 +) +k1,25035:8982648,31216881:162972 +k1,25035:9925463,31216881:162937 +k1,25035:12270238,31216881:163081 +k1,25035:12882678,31216881:162863 +k1,25035:15856380,31216881:162863 +k1,25035:19253662,31216881:163081 +k1,25035:20650569,31216881:162864 +k1,25035:21755402,31216881:163081 +k1,25035:24366035,31216881:162863 +k1,25035:25464097,31216881:162863 +k1,25035:26843526,31216881:163081 +k1,25035:28598440,31216881:163045 +k1,25035:32583029,31216881:0 +) +(1,25035:7613813,32081961:24969216,505283,126483 +g1,25035:8964509,32081961 +g1,25035:9973108,32081961 +g1,25035:11187490,32081961 +g1,25035:12755766,32081961 +k1,25035:32583029,32081961:18372364 +g1,25035:32583029,32081961 +) +(1,25035:7613813,32947041:24969216,513147,134348 +(1,25035:7613813,32947041:-983040,0,0 +g1,25035:6630773,32947041 +g1,25035:5320053,32947041 +g1,25035:4992373,32947041 +(1,25035:4992373,32947041:1310720,0,0 +k1,25035:6303093,32947041:1310720 +) +g1,25035:6630773,32947041 +) +k1,25035:10086056,32947041:172585 +k1,25035:11038492,32947041:172558 +k1,25035:11739927,32947041:172559 +k1,25035:14094285,32947041:172664 +k1,25035:15454302,32947041:172505 +k1,25035:18421262,32947041:172505 +k1,25035:19209805,32947041:172505 +k1,25035:22393689,32947041:172505 +k1,25035:24274221,32947041:172664 +k1,25035:28209228,32947041:172585 +k1,25035:29516977,32947041:172665 +k1,25035:31281484,32947041:172638 +k1,25035:32583029,32947041:0 +) +(1,25035:7613813,33812121:24969216,505283,126483 +g1,25035:11797631,33812121 +g1,25035:13169299,33812121 +g1,25035:14177898,33812121 +g1,25035:14971539,33812121 +k1,25035:32583029,33812121:16156591 +g1,25035:32583029,33812121 +) +(1,25035:7613813,34677201:24969216,505283,126483 +(1,25035:7613813,34677201:-983040,0,0 +g1,25035:6630773,34677201 +g1,25035:5320053,34677201 +g1,25035:4992373,34677201 +(1,25035:4992373,34677201:1310720,0,0 +k1,25035:6303093,34677201:1310720 +) +g1,25035:6630773,34677201 +) +k1,25035:9502313,34677201:163592 +k1,25035:10403150,34677201:163557 +k1,25035:11016938,34677201:163556 +k1,25035:13362331,34677201:163699 +k1,25035:14713328,34677201:163485 +k1,25035:15326390,34677201:163485 +k1,25035:17161912,34677201:163699 +k1,25035:19220150,34677201:163592 +k1,25035:19978119,34677201:163557 +k1,25035:21909323,34677201:163698 +k1,25035:23664856,34677201:163664 +k1,25035:27812930,34677201:163485 +k1,25035:29148925,34677201:163556 +k1,25035:30121780,34677201:163485 +k1,25035:31300490,34677201:163557 +k1,25035:32583029,34677201:0 +) +(1,25035:7613813,35542281:24969216,505283,95026 +k1,25035:32583028,35542281:23514316 +g1,25035:32583028,35542281 +) +(1,25035:7613813,36407361:24969216,505283,134348 +(1,25035:7613813,36407361:-983040,0,0 +g1,25035:6630773,36407361 +g1,25035:5320053,36407361 +g1,25035:4992373,36407361 +(1,25035:4992373,36407361:1310720,0,0 +k1,25035:6303093,36407361:1310720 +) +g1,25035:6630773,36407361 +) +k1,25035:10183870,36407361:520091 +k1,25035:11252835,36407361:519773 +k1,25035:13955580,36407361:521051 +k1,25035:18412772,36407361:519134 +k1,25035:21662790,36407361:519133 +k1,25035:23545073,36407361:519134 +k1,25035:24689371,36407361:521051 +k1,25035:28073385,36407361:520091 +k1,25035:29187570,36407361:519773 +k1,25035:31077668,36407361:521051 +k1,25035:32583029,36407361:0 +) +(1,25035:7613813,37272441:24969216,505283,126483 +g1,25035:11797631,37272441 +g1,25035:13169299,37272441 +g1,25035:14177898,37272441 +g1,25035:14971539,37272441 +k1,25035:32583029,37272441:16156591 +g1,25035:32583029,37272441 +) +(1,25035:7613813,38137521:24969216,505283,126483 +(1,25035:7613813,38137521:-983040,0,0 +g1,25035:6630773,38137521 +g1,25035:5320053,38137521 +g1,25035:4992373,38137521 +(1,25035:4992373,38137521:1310720,0,0 +k1,25035:6303093,38137521:1310720 +) +g1,25035:6630773,38137521 +) +k1,25035:8508113,38137521:261878 +k1,25035:9620649,38137521:261879 +k1,25035:10619745,38137521:261816 +k1,25035:16483455,38137521:261692 +k1,25035:17936591,38137521:261691 +k1,25035:18827553,38137521:261816 +k1,25035:19766357,38137521:261817 +k1,25035:21359740,38137521:261691 +k1,25035:23803500,38137521:262066 +k1,25035:27264004,38137521:261692 +k1,25035:30430624,38137521:262065 +k1,25035:31762519,38137521:261692 +k1,25035:32583029,38137521:0 +) +(1,25035:7613813,39002601:24969216,505283,126960 +k1,25035:9152848,39002601:363319 +k1,25035:10532303,39002601:364302 +k1,25035:12266800,39002601:364140 +$1,25035:12266800,39002601 +k1,25035:14295987,39002601:161947 +k1,25035:14831381,39002601:161946 +k1,25035:15366776,39002601:161947 +k1,25035:15902171,39002601:161947 +k1,25035:17184462,39002601:161947 +k1,25035:17719857,39002601:161947 +k1,25035:21242836,39002601:161947 +k1,25035:21778231,39002601:161947 +k1,25035:23060522,39002601:161947 +k1,25035:23595917,39002601:161947 +k1,25035:25251656,39002601:161947 +k1,25035:25787050,39002601:161946 +k1,25035:27069341,39002601:161947 +k1,25035:27604736,39002601:161947 +$1,25035:28725080,39002601 +k1,25035:29088399,39002601:363319 +k1,25035:31773659,39002601:363319 +k1,25035:32583029,39002601:0 +) +(1,25035:7613813,39867681:24969216,505283,126483 +g1,25035:11878896,39867681 +g1,25035:13250564,39867681 +g1,25035:14259163,39867681 +g1,25035:15052804,39867681 +k1,25035:32583029,39867681:16075326 +g1,25035:32583029,39867681 +) +(1,25035:7613813,40732761:24969216,505283,126483 +(1,25035:7613813,40732761:-983040,0,0 +g1,25035:6630773,40732761 +g1,25035:5320053,40732761 +g1,25035:4992373,40732761 +(1,25035:4992373,40732761:1310720,0,0 +k1,25035:6303093,40732761:1310720 +) +g1,25035:6630773,40732761 +) +k1,25035:9088443,40732761:205198 +k1,25035:9866420,40732761:205192 +k1,25035:11263045,40732761:205180 +k1,25035:12076412,40732761:205193 +k1,25035:14950873,40732761:205180 +k1,25035:17337783,40732761:205216 +k1,25035:18446049,40732761:205180 +k1,25035:22518508,40732761:205180 +k1,25035:23323343,40732761:205181 +k1,25035:25931728,40732761:205180 +k1,25035:29960278,40732761:205180 +k1,25035:32583029,40732761:0 +) +(1,25035:7613813,41597841:24969216,505283,134348 +g1,25035:9149977,41597841 +g1,25035:9972453,41597841 +g1,25035:13035605,41597841 +g1,25035:13829246,41597841 +g1,25035:15397522,41597841 +g1,25035:17188620,41597841 +g1,25035:21372438,41597841 +g1,25035:22744106,41597841 +g1,25035:23752705,41597841 +g1,25035:24546346,41597841 +k1,25035:32583029,41597841:6581784 +g1,25035:32583029,41597841 +) +(1,25035:7613813,42462921:24969216,513147,134348 +(1,25035:7613813,42462921:-983040,0,0 +g1,25035:6630773,42462921 +g1,25035:5320053,42462921 +g1,25035:4992373,42462921 +(1,25035:4992373,42462921:1310720,0,0 +k1,25035:6303093,42462921:1310720 +) +g1,25035:6630773,42462921 +) +k1,25035:9157525,42462921:274280 +k1,25035:10004515,42462921:274205 +k1,25035:10807596,42462921:274205 +k1,25035:12273097,42462921:274056 +k1,25035:13155477,42462921:274206 +k1,25035:16098814,42462921:274056 +k1,25035:18555012,42462921:274504 +k1,25035:19318622,42462921:274056 +k1,25035:22803287,42462921:274056 +k1,25035:23693380,42462921:274055 +k1,25035:26997821,42462921:274056 +k1,25035:30044705,42462921:274056 +k1,25035:32081024,42462921:274056 +k1,25035:32583029,42462921:0 +) +(1,25035:7613813,43328001:24969216,505283,126483 +g1,25035:9047085,43328001 +g1,25035:10188066,43328001 +g1,25035:13424889,43328001 +g1,25035:14076316,43328001 +g1,25035:17412098,43328001 +g1,25035:18205739,43328001 +g1,25035:19774015,43328001 +g1,25035:21565113,43328001 +g1,25035:25748931,43328001 +g1,25035:27120599,43328001 +g1,25035:28129198,43328001 +g1,25035:28922839,43328001 +k1,25035:32583029,43328001:2205291 +g1,25035:32583029,43328001 +) +(1,25035:7613813,44193081:24969216,505283,126483 +(1,25035:7613813,44193081:-983040,0,0 +g1,25035:6630773,44193081 +g1,25035:5320053,44193081 +g1,25035:4992373,44193081 +(1,25035:4992373,44193081:1310720,0,0 +k1,25035:6303093,44193081:1310720 +) +g1,25035:6630773,44193081 +) +k1,25035:9630736,44193081:229101 +k1,25035:10310039,44193081:229071 +k1,25035:10989342,44193081:229071 +k1,25035:13400227,44193081:229191 +k1,25035:15652990,44193081:229011 +k1,25035:18031583,44193081:229012 +k1,25035:19623744,44193081:229012 +k1,25035:20476181,44193081:229190 +k1,25035:22188273,44193081:229012 +k1,25035:24458165,44193081:229101 +k1,25035:25585169,44193081:229161 +k1,25035:28851774,44193081:229011 +k1,25035:29532984,44193081:229012 +k1,25035:32583029,44193081:0 +) +(1,25035:7613813,45058161:24969216,505283,126483 +g1,25035:8407454,45058161 +g1,25035:9802060,45058161 +g1,25035:11173728,45058161 +g1,25035:12182327,45058161 +g1,25035:12975968,45058161 +k1,25035:32583029,45058161:18152162 +g1,25035:32583029,45058161 +) +] +(1,25035:32583029,45706769:0,0,0 +g1,25035:32583029,45706769 +) +) +] +(1,25035:6630773,47279633:25952256,481690,11795 +(1,25035:6630773,47279633:25952256,481690,11795 +(1,25035:6630773,47279633:0,0,0 +v1,25035:6630773,47279633:0,0,0 +) +g1,25035:6830002,47279633 +k1,25035:31387652,47279633:24557650 +) +) +] +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-710413:0,0,0 +g1,25035:-473656,-710413 +) +g1,25035:-473656,-710413 ) ] ) ] !24338 -}430 +}431 !12 -{431 -[1,25037:4262630,47279633:28320399,43253760,0 -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-644877:0,0,0 -k1,25037:-473656,-644877:-65536 +{432 +[1,25035:4262630,47279633:28320399,43253760,0 +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-644877:0,0,0 +k1,25035:-473656,-644877:-65536 ) -(1,25037:-473656,4736287:0,0,0 -k1,25037:-473656,4736287:5209943 +(1,25035:-473656,4736287:0,0,0 +k1,25035:-473656,4736287:5209943 ) -g1,25037:-473656,-710413 +g1,25035:-473656,-710413 ) ] ) -[1,25037:6630773,47279633:25952256,43253760,0 -[1,25037:6630773,4812305:25952256,786432,0 -(1,25037:6630773,4812305:25952256,505283,134348 -(1,25037:6630773,4812305:25952256,505283,134348 -g1,25037:3078558,4812305 -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -k1,25037:1358238,2439708:-1720320 -(1,25037:1358238,2439708:1720320,1703936,0 -(1,25037:1358238,2439708:1179648,16384,0 -r1,25037:2537886,2439708:1179648,16384,0 +[1,25035:6630773,47279633:25952256,43253760,0 +[1,25035:6630773,4812305:25952256,786432,0 +(1,25035:6630773,4812305:25952256,505283,134348 +(1,25035:6630773,4812305:25952256,505283,134348 +g1,25035:3078558,4812305 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +k1,25035:1358238,2439708:-1720320 +(1,25035:1358238,2439708:1720320,1703936,0 +(1,25035:1358238,2439708:1179648,16384,0 +r1,25035:2537886,2439708:1179648,16384,0 ) -g1,25037:3062174,2439708 -(1,25037:3062174,2439708:16384,1703936,0 -[1,25037:3062174,2439708:25952256,1703936,0 -(1,25037:3062174,1915420:25952256,1179648,0 -(1,25037:3062174,1915420:16384,1179648,0 -r1,25037:3078558,1915420:16384,1179648,0 +g1,25035:3062174,2439708 +(1,25035:3062174,2439708:16384,1703936,0 +[1,25035:3062174,2439708:25952256,1703936,0 +(1,25035:3062174,1915420:25952256,1179648,0 +(1,25035:3062174,1915420:16384,1179648,0 +r1,25035:3078558,1915420:16384,1179648,0 ) -k1,25037:29014430,1915420:25935872 -g1,25037:29014430,1915420 +k1,25035:29014430,1915420:25935872 +g1,25035:29014430,1915420 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -g1,25037:29030814,2439708 -g1,25037:36135244,2439708 -(1,25037:36135244,2439708:1720320,1703936,0 -(1,25037:36135244,2439708:16384,1703936,0 -[1,25037:36135244,2439708:25952256,1703936,0 -(1,25037:36135244,1915420:25952256,1179648,0 -(1,25037:36135244,1915420:16384,1179648,0 -r1,25037:36151628,1915420:16384,1179648,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +g1,25035:29030814,2439708 +g1,25035:36135244,2439708 +(1,25035:36135244,2439708:1720320,1703936,0 +(1,25035:36135244,2439708:16384,1703936,0 +[1,25035:36135244,2439708:25952256,1703936,0 +(1,25035:36135244,1915420:25952256,1179648,0 +(1,25035:36135244,1915420:16384,1179648,0 +r1,25035:36151628,1915420:16384,1179648,0 ) -k1,25037:62087500,1915420:25935872 -g1,25037:62087500,1915420 +k1,25035:62087500,1915420:25935872 +g1,25035:62087500,1915420 ) ] ) -g1,25037:36675916,2439708 -(1,25037:36675916,2439708:1179648,16384,0 -r1,25037:37855564,2439708:1179648,16384,0 +g1,25035:36675916,2439708 +(1,25035:36675916,2439708:1179648,16384,0 +r1,25035:37855564,2439708:1179648,16384,0 ) ) -k1,25037:3078556,2439708:-34777008 +k1,25035:3078556,2439708:-34777008 ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -k1,25037:1358238,49800853:-1720320 -(1,25037:1358238,49800853:1720320,16384,2228224 -(1,25037:1358238,49800853:1179648,16384,0 -r1,25037:2537886,49800853:1179648,16384,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +k1,25035:1358238,49800853:-1720320 +(1,25035:1358238,49800853:1720320,16384,2228224 +(1,25035:1358238,49800853:1179648,16384,0 +r1,25035:2537886,49800853:1179648,16384,0 ) -g1,25037:3062174,49800853 -(1,25037:3062174,52029077:16384,1703936,0 -[1,25037:3062174,52029077:25952256,1703936,0 -(1,25037:3062174,51504789:25952256,1179648,0 -(1,25037:3062174,51504789:16384,1179648,0 -r1,25037:3078558,51504789:16384,1179648,0 +g1,25035:3062174,49800853 +(1,25035:3062174,52029077:16384,1703936,0 +[1,25035:3062174,52029077:25952256,1703936,0 +(1,25035:3062174,51504789:25952256,1179648,0 +(1,25035:3062174,51504789:16384,1179648,0 +r1,25035:3078558,51504789:16384,1179648,0 ) -k1,25037:29014430,51504789:25935872 -g1,25037:29014430,51504789 +k1,25035:29014430,51504789:25935872 +g1,25035:29014430,51504789 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -g1,25037:29030814,49800853 -g1,25037:36135244,49800853 -(1,25037:36135244,49800853:1720320,16384,2228224 -(1,25037:36135244,52029077:16384,1703936,0 -[1,25037:36135244,52029077:25952256,1703936,0 -(1,25037:36135244,51504789:25952256,1179648,0 -(1,25037:36135244,51504789:16384,1179648,0 -r1,25037:36151628,51504789:16384,1179648,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +g1,25035:29030814,49800853 +g1,25035:36135244,49800853 +(1,25035:36135244,49800853:1720320,16384,2228224 +(1,25035:36135244,52029077:16384,1703936,0 +[1,25035:36135244,52029077:25952256,1703936,0 +(1,25035:36135244,51504789:25952256,1179648,0 +(1,25035:36135244,51504789:16384,1179648,0 +r1,25035:36151628,51504789:16384,1179648,0 ) -k1,25037:62087500,51504789:25935872 -g1,25037:62087500,51504789 -) -] -) -g1,25037:36675916,49800853 -(1,25037:36675916,49800853:1179648,16384,0 -r1,25037:37855564,49800853:1179648,16384,0 -) -) -k1,25037:3078556,49800853:-34777008 -) -] -g1,25037:6630773,4812305 -k1,25037:28581402,4812305:20755252 -) -) -] -[1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:0,0,0 -g1,25037:6630773,45706769 -) -[1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:7613813,6254097:24969216,505283,134348 -(1,25037:7613813,6254097:-983040,0,0 -g1,25037:6630773,6254097 -g1,25037:5320053,6254097 -g1,25037:4992373,6254097 -(1,25037:4992373,6254097:1310720,0,0 -k1,25037:6303093,6254097:1310720 -) -g1,25037:6630773,6254097 -) -k1,25037:9598737,6254097:197102 -k1,25037:10246069,6254097:197100 -k1,25037:10893402,6254097:197101 -k1,25037:13272204,6254097:197108 -k1,25037:16558012,6254097:197096 -k1,25037:17740769,6254097:197096 -k1,25037:19961617,6254097:197096 -k1,25037:22019935,6254097:197096 -k1,25037:23580179,6254097:197095 -k1,25037:24400533,6254097:197107 -k1,25037:28360051,6254097:197096 -k1,25037:30754575,6254097:197102 -k1,25037:32583029,6254097:0 -) -(1,25037:7613813,7119177:24969216,513147,134348 -k1,25037:9944577,7119177:308323 -k1,25037:11463350,7119177:308323 -k1,25037:16562355,7119177:308323 -k1,25037:20248404,7119177:308323 -k1,25037:22880631,7119177:308976 -k1,25037:26226548,7119177:308323 -k1,25037:26987069,7119177:308323 -k1,25037:30432271,7119177:308649 -k1,25037:31335224,7119177:308541 -k1,25037:32583029,7119177:0 -) -(1,25037:7613813,7984257:24969216,505283,126483 -g1,25037:9404911,7984257 -g1,25037:13620842,7984257 -g1,25037:14992510,7984257 -g1,25037:16001109,7984257 -g1,25037:17215491,7984257 -g1,25037:18783767,7984257 -k1,25037:32583029,7984257:12344363 -g1,25037:32583029,7984257 -) -(1,25037:7613813,8849337:24969216,505283,134348 -(1,25037:7613813,8849337:-983040,0,0 -g1,25037:6630773,8849337 -g1,25037:5320053,8849337 -g1,25037:4992373,8849337 -(1,25037:4992373,8849337:1310720,0,0 -k1,25037:6303093,8849337:1310720 -) -g1,25037:6630773,8849337 -) -k1,25037:10544690,8849337:138388 -k1,25037:11420297,8849337:138327 -k1,25037:13740561,8849337:138570 -k1,25037:15460805,8849337:138205 -k1,25037:16048587,8849337:138205 -k1,25037:20751084,8849337:138570 -k1,25037:23450146,8849337:138570 -k1,25037:24783728,8849337:138205 -k1,25037:25937451,8849337:138570 -k1,25037:27667829,8849337:138509 -k1,25037:32583029,8849337:0 -) -(1,25037:7613813,9714417:24969216,485622,126960 -k1,25037:9060732,9714417:263339 -k1,25037:10660941,9714417:263275 -$1,25037:10660941,9714417 -k1,25037:11470732,9714417:62895 -k1,25037:11907076,9714417:62896 -k1,25037:13463763,9714417:62895 -k1,25037:13900107,9714417:62896 -k1,25037:16203690,9714417:62895 -k1,25037:16640034,9714417:62896 -$1,25037:19254170,9714417 -k1,25037:19691178,9714417:263338 -k1,25037:21324811,9714417:263276 -$1,25037:21324811,9714417 -k1,25037:23254946,9714417:62895 -k1,25037:23691289,9714417:62895 -k1,25037:24127633,9714417:62896 -k1,25037:24563976,9714417:62895 -k1,25037:26494112,9714417:62896 -k1,25037:26930455,9714417:62895 -k1,25037:30727831,9714417:62896 -k1,25037:31164174,9714417:62895 -$1,25037:32583029,9714417 -k1,25037:32583029,9714417:0 -) -(1,25037:7613813,10579497:24969216,505283,126483 -g1,25037:10114011,10579497 -g1,25037:11122610,10579497 -g1,25037:15387693,10579497 -g1,25037:16759361,10579497 -g1,25037:17767960,10579497 -g1,25037:18561601,10579497 -k1,25037:32583029,10579497:12566529 -g1,25037:32583029,10579497 -) -(1,25037:7613813,11444577:24969216,505283,126483 -(1,25037:7613813,11444577:-983040,0,0 -g1,25037:6630773,11444577 -g1,25037:5320053,11444577 -g1,25037:4992373,11444577 -(1,25037:4992373,11444577:1310720,0,0 -k1,25037:6303093,11444577:1310720 -) -g1,25037:6630773,11444577 -) -k1,25037:9799111,11444577:199557 -k1,25037:10627814,11444577:199557 -k1,25037:13009067,11444577:199559 -k1,25037:17310521,11444577:199556 -k1,25037:20366136,11444577:199556 -k1,25037:21928842,11444577:199557 -k1,25037:22577975,11444577:199556 -k1,25037:23987982,11444577:199557 -k1,25037:24637115,11444577:199556 -k1,25037:26970525,11444577:199558 -k1,25037:28404125,11444577:199557 -k1,25037:29545435,11444577:199558 -k1,25037:32583029,11444577:0 -) -(1,25037:7613813,12309657:24969216,505283,126483 -k1,25037:8294076,12309657:228065 -k1,25037:11485023,12309657:228064 -k1,25037:12909775,12309657:228065 -k1,25037:13582828,12309657:228064 -k1,25037:16061572,12309657:228238 -k1,25037:19327230,12309657:228064 -k1,25037:20746740,12309657:228065 -k1,25037:24111530,12309657:228237 -k1,25037:25534972,12309657:228065 -k1,25037:26778362,12309657:228237 -k1,25037:28598440,12309657:228209 -k1,25037:32583029,12309657:0 -) -(1,25037:7613813,13174737:24969216,505283,126483 -g1,25037:8964509,13174737 -g1,25037:9973108,13174737 -g1,25037:11187490,13174737 -g1,25037:12357307,13174737 -k1,25037:32583029,13174737:19169282 -g1,25037:32583029,13174737 -) -(1,25037:7613813,14039817:24969216,513147,134348 -(1,25037:7613813,14039817:-983040,0,0 -g1,25037:6630773,14039817 -g1,25037:5320053,14039817 -g1,25037:4992373,14039817 -(1,25037:4992373,14039817:1310720,0,0 -k1,25037:6303093,14039817:1310720 -) -g1,25037:6630773,14039817 -) -k1,25037:8359157,14039817:283315 -k1,25037:9092621,14039817:283232 -k1,25037:10041698,14039817:283231 -k1,25037:11516207,14039817:283064 -k1,25037:12418099,14039817:283232 -k1,25037:13240036,14039817:283231 -k1,25037:16438798,14039817:283065 -k1,25037:18904058,14039817:283566 -k1,25037:21815771,14039817:283064 -k1,25037:23315183,14039817:283064 -k1,25037:28162677,14039817:283567 -k1,25037:30748676,14039817:283064 -k1,25037:32583029,14039817:0 -) -(1,25037:7613813,14904897:24969216,505283,134348 -k1,25037:10829193,14904897:152883 -k1,25037:12345226,14904897:152884 -k1,25037:13888404,14904897:153160 -k1,25037:19295585,14904897:153160 -k1,25037:20643846,14904897:152884 -k1,25037:21812159,14904897:153160 -k1,25037:23557142,14904897:153114 -k1,25037:28889991,14904897:152883 -k1,25037:30215407,14904897:152977 -k1,25037:31177660,14904897:152883 -k1,25037:31925048,14904897:152976 -k1,25037:32583029,14904897:0 -k1,25037:32583029,14904897:0 -) -(1,25037:7613813,15769977:24969216,513147,134348 -(1,25037:7613813,15769977:-983040,0,0 -g1,25037:6630773,15769977 -g1,25037:5320053,15769977 -g1,25037:4992373,15769977 -(1,25037:4992373,15769977:1310720,0,0 -k1,25037:6303093,15769977:1310720 -) -g1,25037:6630773,15769977 -) -k1,25037:10061090,15769977:165313 -k1,25037:10845029,15769977:165279 -k1,25037:11790186,15769977:165279 -k1,25037:14137295,15769977:165415 -k1,25037:17577340,15769977:165211 -k1,25037:20348918,15769977:165211 -k1,25037:21438187,15769977:165211 -k1,25037:24456180,15769977:165211 -k1,25037:25831841,15769977:165211 -k1,25037:29230147,15769977:165415 -k1,25037:31286072,15769977:165211 -k1,25037:32583029,15769977:0 -) -(1,25037:7613813,16635057:24969216,505283,126483 -g1,25037:10506572,16635057 -g1,25037:11840885,16635057 -g1,25037:13235491,16635057 -g1,25037:14449873,16635057 -g1,25037:16240971,16635057 -k1,25037:32583029,16635057:12305041 -g1,25037:32583029,16635057 -) -(1,25037:7613813,17500137:24969216,513147,134348 -(1,25037:7613813,17500137:-983040,0,0 -g1,25037:6630773,17500137 -g1,25037:5320053,17500137 -g1,25037:4992373,17500137 -(1,25037:4992373,17500137:1310720,0,0 -k1,25037:6303093,17500137:1310720 -) -g1,25037:6630773,17500137 -) -k1,25037:9424178,17500137:217185 -k1,25037:10170221,17500137:217167 -k1,25037:11578798,17500137:217132 -k1,25037:12575843,17500137:217167 -k1,25037:14749224,17500137:217131 -k1,25037:17148157,17500137:217239 -k1,25037:19758663,17500137:217131 -k1,25037:22706680,17500137:217132 -k1,25037:23847869,17500137:217131 -k1,25037:26458375,17500137:217131 -k1,25037:29119451,17500137:217239 -k1,25037:32583029,17500137:0 -) -(1,25037:7613813,18365217:24969216,505283,126483 -g1,25037:11042656,18365217 -g1,25037:13087379,18365217 -g1,25037:14481985,18365217 -g1,25037:15696367,18365217 -g1,25037:17487465,18365217 -g1,25037:21671283,18365217 -g1,25037:23042951,18365217 -g1,25037:24051550,18365217 -g1,25037:25265932,18365217 -g1,25037:26834208,18365217 -k1,25037:32583029,18365217:4293922 -g1,25037:32583029,18365217 -) -(1,25037:7613813,19230297:24969216,513147,134348 -(1,25037:7613813,19230297:-983040,0,0 -g1,25037:6630773,19230297 -g1,25037:5320053,19230297 -g1,25037:4992373,19230297 -(1,25037:4992373,19230297:1310720,0,0 -k1,25037:6303093,19230297:1310720 -) -g1,25037:6630773,19230297 -) -k1,25037:9432858,19230297:241593 -k1,25037:10282583,19230297:241551 -k1,25037:11073326,19230297:241551 -k1,25037:13496740,19230297:241720 -k1,25037:16814467,19230297:241467 -k1,25037:19583910,19230297:241720 -k1,25037:21022064,19230297:241467 -k1,25037:24493145,19230297:241467 -k1,25037:25393904,19230297:241467 -k1,25037:28165060,19230297:241466 -k1,25037:30252274,19230297:241720 -k1,25037:31689118,19230297:241467 -k1,25037:32583029,19230297:0 -) -(1,25037:7613813,20095377:24969216,505283,126483 -g1,25037:9404911,20095377 -g1,25037:13588729,20095377 -g1,25037:14960397,20095377 -g1,25037:15968996,20095377 -g1,25037:16762637,20095377 -k1,25037:32583029,20095377:14365493 -g1,25037:32583029,20095377 -) -(1,25037:7613813,20960457:24969216,505283,134348 -(1,25037:7613813,20960457:-983040,0,0 -g1,25037:6630773,20960457 -g1,25037:5320053,20960457 -g1,25037:4992373,20960457 -(1,25037:4992373,20960457:1310720,0,0 -k1,25037:6303093,20960457:1310720 -) -g1,25037:6630773,20960457 -) -k1,25037:10155066,20960457:257979 -k1,25037:11031646,20960457:257920 -k1,25037:12480895,20960457:257804 -k1,25037:13392209,20960457:257920 -k1,25037:18820803,20960457:257803 -k1,25037:21260652,20960457:258155 -k1,25037:25304107,20960457:258096 -k1,25037:28576567,20960457:257804 -k1,25037:30044820,20960457:257803 -k1,25037:32583029,20960457:0 -) -(1,25037:7613813,21825537:24969216,505283,126483 -g1,25037:8920600,21825537 -g1,25037:10061581,21825537 -g1,25037:13810895,21825537 -g1,25037:17079830,21825537 -g1,25037:19522356,21825537 -g1,25037:20894024,21825537 -g1,25037:21902623,21825537 -g1,25037:23117005,21825537 -g1,25037:24685281,21825537 -k1,25037:32583029,21825537:6442849 -g1,25037:32583029,21825537 -) -(1,25037:7613813,22690617:24969216,513147,134348 -(1,25037:7613813,22690617:-983040,0,0 -g1,25037:6630773,22690617 -g1,25037:5320053,22690617 -g1,25037:4992373,22690617 -(1,25037:4992373,22690617:1310720,0,0 -k1,25037:6303093,22690617:1310720 -) -g1,25037:6630773,22690617 -) -k1,25037:8718425,22690617:181865 -k1,25037:9518933,22690617:181848 -k1,25037:10892191,22690617:181813 -k1,25037:11692698,22690617:181847 -k1,25037:15316462,22690617:181813 -k1,25037:17680073,22690617:181917 -k1,25037:17853730,22690617:-13 -k1,25037:17853743,22690617:13 -k1,25037:18654303,22690617:181900 -k1,25037:19323704,22690617:181813 -k1,25037:22507721,22690617:181813 -k1,25037:23637184,22690617:181812 -k1,25037:25290936,22690617:181813 -k1,25037:28159070,22690617:181813 -k1,25037:29532328,22690617:181813 -k1,25037:32583029,22690617:0 -) -(1,25037:7613813,23555697:24969216,505283,126483 -g1,25037:8614547,23555697 -g1,25037:9264008,23555697 -g1,25037:12134484,23555697 -g1,25037:14521305,23555697 -g1,25037:16117762,23555697 -g1,25037:16889120,23555697 -g1,25037:18103502,23555697 -g1,25037:21021165,23555697 -g1,25037:22392833,23555697 -g1,25037:23401432,23555697 -g1,25037:24195073,23555697 -k1,25037:32583029,23555697:7331516 -g1,25037:32583029,23555697 -) -(1,25037:7613813,24420777:24969216,513147,126483 -(1,25037:7613813,24420777:-983040,0,0 -g1,25037:6630773,24420777 -g1,25037:5320053,24420777 -g1,25037:4992373,24420777 -(1,25037:4992373,24420777:1310720,0,0 -k1,25037:6303093,24420777:1310720 -) -g1,25037:6630773,24420777 -) -k1,25037:8787031,24420777:250471 -k1,25037:9656111,24420777:250420 -k1,25037:12088430,24420777:250625 -k1,25037:12788325,24420777:250318 -k1,25037:13212569,24420777:250574 -k1,25037:14761811,24420777:250318 -k1,25037:16222579,24420777:250318 -k1,25037:18539903,24420777:250318 -k1,25037:21223880,24420777:250625 -k1,25037:21963752,24420777:250318 -k1,25037:23906865,24420777:250318 -k1,25037:24773221,24420777:250318 -k1,25037:25421998,24420777:250318 -k1,25037:27496184,24420777:250319 -k1,25037:28670560,24420777:250318 -k1,25037:31733683,24420777:250318 -k1,25037:32583029,24420777:0 -) -(1,25037:7613813,25285857:24969216,513147,126483 -k1,25037:10742357,25285857:306564 -k1,25037:14766778,25285857:306564 -k1,25037:15882712,25285857:306564 -k1,25037:19387433,25285857:306564 -k1,25037:22027079,25285857:306564 -k1,25037:23525089,25285857:306565 -k1,25037:26884308,25285857:307207 -k1,25037:28387559,25285857:306564 -k1,25037:31923737,25285857:306564 -k1,25037:32583029,25285857:0 -) -(1,25037:7613813,26150937:24969216,505283,119528 -k1,25037:11084079,26150937:295702 -k1,25037:12750042,26150937:295606 -$1,25037:12750042,26150937 -k1,25037:14711927,26150937:94645 -k1,25037:15180021,26150937:94646 -k1,25037:15648114,26150937:94645 -k1,25037:16116208,26150937:94646 -k1,25037:17331197,26150937:94645 -k1,25037:17799290,26150937:94645 -k1,25037:19387728,26150937:94646 -k1,25037:19855821,26150937:94645 -k1,25037:22938051,26150937:94646 -k1,25037:23406144,26150937:94645 -k1,25037:24247686,26150937:94646 -k1,25037:24715779,26150937:94645 -k1,25037:25557320,26150937:94645 -k1,25037:26025414,26150937:94646 -k1,25037:28360747,26150937:94645 -k1,25037:28828841,26150937:94646 -k1,25037:32284518,26150937:94645 -k1,25037:32583029,26150937:0 -) -(1,25037:7613813,27016017:24969216,513147,126483 -g1,25037:11721741,27016017 -g1,25037:12095189,27016017 -$1,25037:13215533,27016017 -g1,25037:13588432,27016017 -g1,25037:15456863,27016017 -g1,25037:16828531,27016017 -g1,25037:17837130,27016017 -g1,25037:18630771,27016017 -k1,25037:32583029,27016017:12895818 -g1,25037:32583029,27016017 -) -(1,25037:7613813,27881097:24969216,505283,102891 -(1,25037:7613813,27881097:-983040,0,0 -g1,25037:6630773,27881097 -g1,25037:5320053,27881097 -g1,25037:4992373,27881097 -(1,25037:4992373,27881097:1310720,0,0 -k1,25037:6303093,27881097:1310720 -) -g1,25037:6630773,27881097 -) -k1,25037:8876670,27881097:142191 -k1,25037:9845926,27881097:142192 -k1,25037:10665047,27881097:142134 -k1,25037:13064299,27881097:142192 -k1,25037:13814607,27881097:142134 -k1,25037:15953509,27881097:142020 -k1,25037:17286974,27881097:142020 -k1,25037:18047768,27881097:142134 -k1,25037:21432509,27881097:142020 -k1,25037:23756565,27881097:142362 -k1,25037:24801671,27881097:142020 -k1,25037:28810970,27881097:142020 -k1,25037:29552644,27881097:142020 -k1,25037:32583029,27881097:0 -) -(1,25037:7613813,28746177:24969216,505283,134348 -k1,25037:10774540,28746177:155246 -k1,25037:12292714,28746177:155025 -k1,25037:16321572,28746177:155025 -k1,25037:17079529,28746177:155026 -k1,25037:17858065,28746177:155289 -k1,25037:20877146,28746177:155158 -k1,25037:21626672,28746177:155114 -k1,25037:23151008,28746177:155289 -k1,25037:24898123,28746177:155246 -k1,25037:30446106,28746177:155025 -k1,25037:31773659,28746177:155114 -k1,25037:32583029,28746177:0 -) -(1,25037:7613813,29611257:24969216,505283,126483 -g1,25037:8407454,29611257 -k1,25037:32583029,29611257:22720676 -g1,25037:32583029,29611257 -) -(1,25037:7613813,30476337:24969216,513147,134348 -(1,25037:7613813,30476337:-983040,0,0 -g1,25037:6630773,30476337 -g1,25037:5320053,30476337 -g1,25037:4992373,30476337 -(1,25037:4992373,30476337:1310720,0,0 -k1,25037:6303093,30476337:1310720 -) -g1,25037:6630773,30476337 -) -k1,25037:10511590,30476337:226530 -k1,25037:11310877,30476337:226502 -k1,25037:12317258,30476337:226503 -k1,25037:13735151,30476337:226448 -k1,25037:14510845,30476337:226502 -k1,25037:15187580,30476337:226503 -k1,25037:17775290,30476337:226448 -k1,25037:20183596,30476337:226612 -k1,25037:23192047,30476337:226448 -k1,25037:25064759,30476337:226448 -k1,25037:25894138,30476337:226448 -k1,25037:28267708,30476337:226611 -k1,25037:31227089,30476337:226530 -k1,25037:32583029,30476337:0 -) -(1,25037:7613813,31341417:24969216,505283,126483 -g1,25037:11357884,31341417 -g1,25037:16811134,31341417 -g1,25037:18205740,31341417 -g1,25037:19420122,31341417 -g1,25037:20791790,31341417 -g1,25037:21800389,31341417 -g1,25037:23014771,31341417 -g1,25037:24583047,31341417 -k1,25037:32583029,31341417:6545083 -g1,25037:32583029,31341417 -) -(1,25037:7613813,32206497:24969216,513147,134348 -(1,25037:7613813,32206497:-983040,0,0 -g1,25037:6630773,32206497 -g1,25037:5320053,32206497 -g1,25037:4992373,32206497 -(1,25037:4992373,32206497:1310720,0,0 -k1,25037:6303093,32206497:1310720 -) -g1,25037:6630773,32206497 -) -k1,25037:10252381,32206497:172448 -k1,25037:10997587,32206497:172421 -k1,25037:11949886,32206497:172421 -k1,25037:13313698,32206497:172367 -k1,25037:14104779,32206497:172421 -k1,25037:15593764,32206497:172367 -k1,25037:17947986,32206497:172528 -k1,25037:19307865,32206497:172367 -k1,25037:21966014,32206497:172368 -k1,25037:22754419,32206497:172367 -k1,25037:27490874,32206497:172528 -k1,25037:30333178,32206497:172367 -k1,25037:32583029,32206497:0 -) -(1,25037:7613813,33071577:24969216,505283,126483 -g1,25037:9008419,33071577 -g1,25037:10222801,33071577 -g1,25037:12013899,33071577 -g1,25037:16229830,33071577 -g1,25037:17601498,33071577 -g1,25037:18610097,33071577 -g1,25037:19403738,33071577 -k1,25037:32583029,33071577:12122851 -g1,25037:32583029,33071577 -) -(1,25037:7613813,33936657:24969216,505283,134348 -(1,25037:7613813,33936657:-983040,0,0 -g1,25037:6630773,33936657 -g1,25037:5320053,33936657 -g1,25037:4992373,33936657 -(1,25037:4992373,33936657:1310720,0,0 -k1,25037:6303093,33936657:1310720 -) -g1,25037:6630773,33936657 -) -k1,25037:9044245,33936657:274377 -k1,25037:9995535,33936657:274303 -k1,25037:10814441,33936657:274302 -k1,25037:13270737,33936657:274602 -k1,25037:14732402,33936657:274153 -k1,25037:17855198,33936657:274602 -k1,25037:20862427,33936657:274378 -k1,25037:25931568,33936657:274527 -k1,25037:31286072,33936657:274153 -k1,25037:32583029,33936657:0 -) -(1,25037:7613813,34801737:24969216,505283,134348 -g1,25037:9954759,34801737 -g1,25037:13350179,34801737 -g1,25037:14143820,34801737 -g1,25037:15712096,34801737 -g1,25037:17503194,34801737 -g1,25037:22325988,34801737 -g1,25037:23697656,34801737 -g1,25037:24706255,34801737 -g1,25037:25499896,34801737 -k1,25037:32583029,34801737:6026693 -g1,25037:32583029,34801737 -) -(1,25037:7613813,35666817:24969216,505283,134348 -(1,25037:7613813,35666817:-983040,0,0 -g1,25037:6630773,35666817 -g1,25037:5320053,35666817 -g1,25037:4992373,35666817 -(1,25037:4992373,35666817:1310720,0,0 -k1,25037:6303093,35666817:1310720 -) -g1,25037:6630773,35666817 -) -k1,25037:8933838,35666817:163970 -k1,25037:9774759,35666817:163934 -k1,25037:10483298,35666817:163935 -k1,25037:12829067,35666817:164075 -k1,25037:13002724,35666817:-13 -k1,25037:13002737,35666817:13 -k1,25037:15585535,35666817:163864 -k1,25037:20449197,35666817:164075 -k1,25037:21414742,35666817:164040 -k1,25037:22766118,35666817:163864 -k1,25037:26075055,35666817:163864 -k1,25037:28638192,35666817:163864 -k1,25037:30344879,35666817:163969 -k1,25037:31523967,35666817:163935 -k1,25037:32583029,35666817:0 -) -(1,25037:7613813,36531897:24969216,505283,126483 -g1,25037:8988758,36531897 -g1,25037:10360426,36531897 -g1,25037:11369025,36531897 -g1,25037:12583407,36531897 -g1,25037:13753224,36531897 -k1,25037:32583029,36531897:17374906 -g1,25037:32583029,36531897 -) -(1,25037:7613813,37396977:24969216,505283,126483 -(1,25037:7613813,37396977:-983040,0,0 -g1,25037:6630773,37396977 -g1,25037:5320053,37396977 -g1,25037:4992373,37396977 -(1,25037:4992373,37396977:1310720,0,0 -k1,25037:6303093,37396977:1310720 -) -g1,25037:6630773,37396977 -) -k1,25037:9960086,37396977:304826 -k1,25037:10715039,37396977:304721 -k1,25037:12210995,37396977:304511 -k1,25037:12965949,37396977:304722 -k1,25037:15364991,37396977:304511 -k1,25037:17851827,37396977:305142 -k1,25037:19690536,37396977:304511 -k1,25037:24045172,37396977:304511 -k1,25037:27734593,37396977:305142 -k1,25037:30124119,37396977:304826 -k1,25037:32583029,37396977:0 -) -(1,25037:7613813,38262057:24969216,505283,126483 -g1,25037:9488798,38262057 -g1,25037:13091312,38262057 -g1,25037:14882410,38262057 -g1,25037:20261605,38262057 -g1,25037:21633273,38262057 -g1,25037:22641872,38262057 -g1,25037:23435513,38262057 -k1,25037:32583029,38262057:7692617 -g1,25037:32583029,38262057 -) -(1,25037:7613813,39127137:24969216,505283,173670 -(1,25037:7613813,39127137:-983040,0,0 -g1,25037:6630773,39127137 -g1,25037:5320053,39127137 -g1,25037:4992373,39127137 -(1,25037:4992373,39127137:1310720,0,0 -k1,25037:6303093,39127137:1310720 -) -g1,25037:6630773,39127137 -) -k1,25037:9656613,39127137:150776 -k1,25037:10346047,39127137:150728 -k1,25037:12678662,39127137:150921 -[1,25037:12817598,39127137:342688,473825,0 -(1,25037:12817598,38990495:342688,337183,0 -) -] -(1,25037:13387240,39300807:372900,473825,0 -) -k1,25037:14411708,39127137:150873 -k1,25037:15051892,39127137:150630 -k1,25037:18410510,39127137:150631 -k1,25037:22294071,39127137:150630 -k1,25037:24823293,39127137:150921 -k1,25037:27459339,39127137:150921 -k1,25037:28844013,39127137:150631 -k1,25037:29936686,39127137:150921 -k1,25037:32583029,39127137:0 -) -(1,25037:7613813,39992217:24969216,505283,126483 -g1,25037:13042815,39992217 -g1,25037:13836456,39992217 -g1,25037:15404732,39992217 -g1,25037:17195830,39992217 -g1,25037:22018624,39992217 -g1,25037:23390292,39992217 -g1,25037:24398891,39992217 -g1,25037:25613273,39992217 -g1,25037:26783090,39992217 -k1,25037:32583029,39992217:4345040 -g1,25037:32583029,39992217 -) -(1,25037:7613813,40857297:24969216,513147,134348 -(1,25037:7613813,40857297:-983040,0,0 -g1,25037:6630773,40857297 -g1,25037:5320053,40857297 -g1,25037:4992373,40857297 -(1,25037:4992373,40857297:1310720,0,0 -k1,25037:6303093,40857297:1310720 -) -g1,25037:6630773,40857297 -) -k1,25037:8980984,40857297:184246 -k1,25037:9698023,40857297:184231 -k1,25037:12064007,40857297:184290 -k1,25037:12237664,40857297:-13 -k1,25037:12237677,40857297:13 -k1,25037:15211746,40857297:184201 -k1,25037:18791367,40857297:184201 -k1,25037:19634859,40857297:184200 -k1,25037:22903184,40857297:184201 -k1,25037:25413913,40857297:184201 -k1,25037:27333507,40857297:184201 -k1,25037:29776733,40857297:184200 -k1,25037:31350297,40857297:184201 -k1,25037:32583029,40857297:0 -) -(1,25037:7613813,41722377:24969216,505283,134348 -k1,25037:9711392,41722377:322209 -k1,25037:10834985,41722377:322088 -k1,25037:14893325,41722377:321477 -k1,25037:15817732,41722377:321476 -k1,25037:20825689,41722377:321477 -k1,25037:24052453,41722377:322209 -k1,25037:27464607,41722377:321476 -k1,25037:29554323,41722377:322210 -k1,25037:30841389,41722377:321721 -k1,25037:31924393,41722377:321476 -k1,25037:32583029,41722377:0 -) -(1,25037:7613813,42587457:24969216,505283,134348 -k1,25037:9992943,42587457:256419 -k1,25037:11440807,42587457:256419 -k1,25037:12270125,42587457:256533 -k1,25037:14344856,42587457:256762 -k1,25037:18212480,42587457:256590 -k1,25037:21510056,42587457:256705 -k1,25037:24197861,42587457:256419 -k1,25037:26657116,42587457:256590 -k1,25037:27928802,42587457:256533 -k1,25037:31077668,42587457:256762 -k1,25037:32583029,42587457:0 -) -(1,25037:7613813,43452537:24969216,505283,126483 -g1,25037:12436607,43452537 -g1,25037:13808275,43452537 -g1,25037:14816874,43452537 -g1,25037:15610515,43452537 -k1,25037:32583029,43452537:15916074 -g1,25037:32583029,43452537 -) -(1,25037:7613813,44317617:24969216,505283,134348 -(1,25037:7613813,44317617:-983040,0,0 -g1,25037:6630773,44317617 -g1,25037:5320053,44317617 -g1,25037:4992373,44317617 -(1,25037:4992373,44317617:1310720,0,0 -k1,25037:6303093,44317617:1310720 -) -g1,25037:6630773,44317617 -) -k1,25037:9277899,44317617:331739 -k1,25037:10059738,44317617:331607 -k1,25037:12573567,44317617:332135 -k1,25037:16695512,44317617:331343 -k1,25037:17650894,44317617:332135 -k1,25037:19353255,44317617:332004 -$1,25037:19353255,44317617 -k1,25037:21350884,44317617:130389 -k1,25037:21854721,44317617:130389 -k1,25037:22358558,44317617:130389 -k1,25037:22862394,44317617:130388 -k1,25037:24486575,44317617:130389 -k1,25037:24990412,44317617:130389 -k1,25037:25494249,44317617:130389 -(1,25037:25867697,44406100:32768,0,0 -) -k1,25037:26030854,44317617:130389 -k1,25037:28775379,44317617:130389 -k1,25037:29279216,44317617:130389 -k1,25037:30529948,44317617:130388 -k1,25037:31033785,44317617:130389 -k1,25037:32284518,44317617:130389 -k1,25037:32583029,44317617:0 -) -(1,25037:7613813,45182697:24969216,505283,95026 -g1,25037:10227949,45182697 -g1,25037:10601397,45182697 -g1,25037:12468637,45182697 -(1,25037:12842085,45271180:32768,0,0 -) -g1,25037:12874853,45182697 -g1,25037:16235885,45182697 -g1,25037:16609333,45182697 -g1,25037:17356229,45182697 -g1,25037:17729677,45182697 -g1,25037:19596917,45182697 -g1,25037:19970365,45182697 -$1,25037:21464157,45182697 -g1,25037:21663386,45182697 -g1,25037:24184556,45182697 -g1,25037:25193155,45182697 -k1,25037:32583029,45182697:3271592 -g1,25037:32583029,45182697 -) -] -(1,25037:32583029,45706769:0,0,0 -g1,25037:32583029,45706769 -) -) -] -(1,25037:6630773,47279633:25952256,0,0 -h1,25037:6630773,47279633:25952256,0,0 -) -] -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-710413:0,0,0 -g1,25037:-473656,-710413 -) -g1,25037:-473656,-710413 +k1,25035:62087500,51504789:25935872 +g1,25035:62087500,51504789 +) +] +) +g1,25035:36675916,49800853 +(1,25035:36675916,49800853:1179648,16384,0 +r1,25035:37855564,49800853:1179648,16384,0 +) +) +k1,25035:3078556,49800853:-34777008 +) +] +g1,25035:6630773,4812305 +k1,25035:28581402,4812305:20755252 +) +) +] +[1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:0,0,0 +g1,25035:6630773,45706769 +) +[1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:7613813,6254097:24969216,505283,134348 +(1,25035:7613813,6254097:-983040,0,0 +g1,25035:6630773,6254097 +g1,25035:5320053,6254097 +g1,25035:4992373,6254097 +(1,25035:4992373,6254097:1310720,0,0 +k1,25035:6303093,6254097:1310720 +) +g1,25035:6630773,6254097 +) +k1,25035:9598737,6254097:197102 +k1,25035:10246069,6254097:197100 +k1,25035:10893402,6254097:197101 +k1,25035:13272204,6254097:197108 +k1,25035:16558012,6254097:197096 +k1,25035:17740769,6254097:197096 +k1,25035:19961617,6254097:197096 +k1,25035:22019935,6254097:197096 +k1,25035:23580179,6254097:197095 +k1,25035:24400533,6254097:197107 +k1,25035:28360051,6254097:197096 +k1,25035:30754575,6254097:197102 +k1,25035:32583029,6254097:0 +) +(1,25035:7613813,7119177:24969216,513147,134348 +k1,25035:9944577,7119177:308323 +k1,25035:11463350,7119177:308323 +k1,25035:16562355,7119177:308323 +k1,25035:20248404,7119177:308323 +k1,25035:22880631,7119177:308976 +k1,25035:26226548,7119177:308323 +k1,25035:26987069,7119177:308323 +k1,25035:30432271,7119177:308649 +k1,25035:31335224,7119177:308541 +k1,25035:32583029,7119177:0 +) +(1,25035:7613813,7984257:24969216,505283,126483 +g1,25035:9404911,7984257 +g1,25035:13620842,7984257 +g1,25035:14992510,7984257 +g1,25035:16001109,7984257 +g1,25035:17215491,7984257 +g1,25035:18783767,7984257 +k1,25035:32583029,7984257:12344363 +g1,25035:32583029,7984257 +) +(1,25035:7613813,8849337:24969216,505283,134348 +(1,25035:7613813,8849337:-983040,0,0 +g1,25035:6630773,8849337 +g1,25035:5320053,8849337 +g1,25035:4992373,8849337 +(1,25035:4992373,8849337:1310720,0,0 +k1,25035:6303093,8849337:1310720 +) +g1,25035:6630773,8849337 +) +k1,25035:10544690,8849337:138388 +k1,25035:11420297,8849337:138327 +k1,25035:13740561,8849337:138570 +k1,25035:15460805,8849337:138205 +k1,25035:16048587,8849337:138205 +k1,25035:20751084,8849337:138570 +k1,25035:23450146,8849337:138570 +k1,25035:24783728,8849337:138205 +k1,25035:25937451,8849337:138570 +k1,25035:27667829,8849337:138509 +k1,25035:32583029,8849337:0 +) +(1,25035:7613813,9714417:24969216,485622,126960 +k1,25035:9060732,9714417:263339 +k1,25035:10660941,9714417:263275 +$1,25035:10660941,9714417 +k1,25035:11470732,9714417:62895 +k1,25035:11907076,9714417:62896 +k1,25035:13463763,9714417:62895 +k1,25035:13900107,9714417:62896 +k1,25035:16203690,9714417:62895 +k1,25035:16640034,9714417:62896 +$1,25035:19254170,9714417 +k1,25035:19691178,9714417:263338 +k1,25035:21324811,9714417:263276 +$1,25035:21324811,9714417 +k1,25035:23254946,9714417:62895 +k1,25035:23691289,9714417:62895 +k1,25035:24127633,9714417:62896 +k1,25035:24563976,9714417:62895 +k1,25035:26494112,9714417:62896 +k1,25035:26930455,9714417:62895 +k1,25035:30727831,9714417:62896 +k1,25035:31164174,9714417:62895 +$1,25035:32583029,9714417 +k1,25035:32583029,9714417:0 +) +(1,25035:7613813,10579497:24969216,505283,126483 +g1,25035:10114011,10579497 +g1,25035:11122610,10579497 +g1,25035:15387693,10579497 +g1,25035:16759361,10579497 +g1,25035:17767960,10579497 +g1,25035:18561601,10579497 +k1,25035:32583029,10579497:12566529 +g1,25035:32583029,10579497 +) +(1,25035:7613813,11444577:24969216,505283,126483 +(1,25035:7613813,11444577:-983040,0,0 +g1,25035:6630773,11444577 +g1,25035:5320053,11444577 +g1,25035:4992373,11444577 +(1,25035:4992373,11444577:1310720,0,0 +k1,25035:6303093,11444577:1310720 +) +g1,25035:6630773,11444577 +) +k1,25035:9799111,11444577:199557 +k1,25035:10627814,11444577:199557 +k1,25035:13009067,11444577:199559 +k1,25035:17310521,11444577:199556 +k1,25035:20366136,11444577:199556 +k1,25035:21928842,11444577:199557 +k1,25035:22577975,11444577:199556 +k1,25035:23987982,11444577:199557 +k1,25035:24637115,11444577:199556 +k1,25035:26970525,11444577:199558 +k1,25035:28404125,11444577:199557 +k1,25035:29545435,11444577:199558 +k1,25035:32583029,11444577:0 +) +(1,25035:7613813,12309657:24969216,505283,126483 +k1,25035:8294076,12309657:228065 +k1,25035:11485023,12309657:228064 +k1,25035:12909775,12309657:228065 +k1,25035:13582828,12309657:228064 +k1,25035:16061572,12309657:228238 +k1,25035:19327230,12309657:228064 +k1,25035:20746740,12309657:228065 +k1,25035:24111530,12309657:228237 +k1,25035:25534972,12309657:228065 +k1,25035:26778362,12309657:228237 +k1,25035:28598440,12309657:228209 +k1,25035:32583029,12309657:0 +) +(1,25035:7613813,13174737:24969216,505283,126483 +g1,25035:8964509,13174737 +g1,25035:9973108,13174737 +g1,25035:11187490,13174737 +g1,25035:12357307,13174737 +k1,25035:32583029,13174737:19169282 +g1,25035:32583029,13174737 +) +(1,25035:7613813,14039817:24969216,513147,134348 +(1,25035:7613813,14039817:-983040,0,0 +g1,25035:6630773,14039817 +g1,25035:5320053,14039817 +g1,25035:4992373,14039817 +(1,25035:4992373,14039817:1310720,0,0 +k1,25035:6303093,14039817:1310720 +) +g1,25035:6630773,14039817 +) +k1,25035:8359157,14039817:283315 +k1,25035:9092621,14039817:283232 +k1,25035:10041698,14039817:283231 +k1,25035:11516207,14039817:283064 +k1,25035:12418099,14039817:283232 +k1,25035:13240036,14039817:283231 +k1,25035:16438798,14039817:283065 +k1,25035:18904058,14039817:283566 +k1,25035:21815771,14039817:283064 +k1,25035:23315183,14039817:283064 +k1,25035:28162677,14039817:283567 +k1,25035:30748676,14039817:283064 +k1,25035:32583029,14039817:0 +) +(1,25035:7613813,14904897:24969216,505283,134348 +k1,25035:10829193,14904897:152883 +k1,25035:12345226,14904897:152884 +k1,25035:13888404,14904897:153160 +k1,25035:19295585,14904897:153160 +k1,25035:20643846,14904897:152884 +k1,25035:21812159,14904897:153160 +k1,25035:23557142,14904897:153114 +k1,25035:28889991,14904897:152883 +k1,25035:30215407,14904897:152977 +k1,25035:31177660,14904897:152883 +k1,25035:31925048,14904897:152976 +k1,25035:32583029,14904897:0 +k1,25035:32583029,14904897:0 +) +(1,25035:7613813,15769977:24969216,513147,134348 +(1,25035:7613813,15769977:-983040,0,0 +g1,25035:6630773,15769977 +g1,25035:5320053,15769977 +g1,25035:4992373,15769977 +(1,25035:4992373,15769977:1310720,0,0 +k1,25035:6303093,15769977:1310720 +) +g1,25035:6630773,15769977 +) +k1,25035:10061090,15769977:165313 +k1,25035:10845029,15769977:165279 +k1,25035:11790186,15769977:165279 +k1,25035:14137295,15769977:165415 +k1,25035:17577340,15769977:165211 +k1,25035:20348918,15769977:165211 +k1,25035:21438187,15769977:165211 +k1,25035:24456180,15769977:165211 +k1,25035:25831841,15769977:165211 +k1,25035:29230147,15769977:165415 +k1,25035:31286072,15769977:165211 +k1,25035:32583029,15769977:0 +) +(1,25035:7613813,16635057:24969216,505283,126483 +g1,25035:10506572,16635057 +g1,25035:11840885,16635057 +g1,25035:13235491,16635057 +g1,25035:14449873,16635057 +g1,25035:16240971,16635057 +k1,25035:32583029,16635057:12305041 +g1,25035:32583029,16635057 +) +(1,25035:7613813,17500137:24969216,513147,134348 +(1,25035:7613813,17500137:-983040,0,0 +g1,25035:6630773,17500137 +g1,25035:5320053,17500137 +g1,25035:4992373,17500137 +(1,25035:4992373,17500137:1310720,0,0 +k1,25035:6303093,17500137:1310720 +) +g1,25035:6630773,17500137 +) +k1,25035:9424178,17500137:217185 +k1,25035:10170221,17500137:217167 +k1,25035:11578798,17500137:217132 +k1,25035:12575843,17500137:217167 +k1,25035:14749224,17500137:217131 +k1,25035:17148157,17500137:217239 +k1,25035:19758663,17500137:217131 +k1,25035:22706680,17500137:217132 +k1,25035:23847869,17500137:217131 +k1,25035:26458375,17500137:217131 +k1,25035:29119451,17500137:217239 +k1,25035:32583029,17500137:0 +) +(1,25035:7613813,18365217:24969216,505283,126483 +g1,25035:11042656,18365217 +g1,25035:13087379,18365217 +g1,25035:14481985,18365217 +g1,25035:15696367,18365217 +g1,25035:17487465,18365217 +g1,25035:21671283,18365217 +g1,25035:23042951,18365217 +g1,25035:24051550,18365217 +g1,25035:25265932,18365217 +g1,25035:26834208,18365217 +k1,25035:32583029,18365217:4293922 +g1,25035:32583029,18365217 +) +(1,25035:7613813,19230297:24969216,513147,134348 +(1,25035:7613813,19230297:-983040,0,0 +g1,25035:6630773,19230297 +g1,25035:5320053,19230297 +g1,25035:4992373,19230297 +(1,25035:4992373,19230297:1310720,0,0 +k1,25035:6303093,19230297:1310720 +) +g1,25035:6630773,19230297 +) +k1,25035:9432858,19230297:241593 +k1,25035:10282583,19230297:241551 +k1,25035:11073326,19230297:241551 +k1,25035:13496740,19230297:241720 +k1,25035:16814467,19230297:241467 +k1,25035:19583910,19230297:241720 +k1,25035:21022064,19230297:241467 +k1,25035:24493145,19230297:241467 +k1,25035:25393904,19230297:241467 +k1,25035:28165060,19230297:241466 +k1,25035:30252274,19230297:241720 +k1,25035:31689118,19230297:241467 +k1,25035:32583029,19230297:0 +) +(1,25035:7613813,20095377:24969216,505283,126483 +g1,25035:9404911,20095377 +g1,25035:13588729,20095377 +g1,25035:14960397,20095377 +g1,25035:15968996,20095377 +g1,25035:16762637,20095377 +k1,25035:32583029,20095377:14365493 +g1,25035:32583029,20095377 +) +(1,25035:7613813,20960457:24969216,505283,134348 +(1,25035:7613813,20960457:-983040,0,0 +g1,25035:6630773,20960457 +g1,25035:5320053,20960457 +g1,25035:4992373,20960457 +(1,25035:4992373,20960457:1310720,0,0 +k1,25035:6303093,20960457:1310720 +) +g1,25035:6630773,20960457 +) +k1,25035:10155066,20960457:257979 +k1,25035:11031646,20960457:257920 +k1,25035:12480895,20960457:257804 +k1,25035:13392209,20960457:257920 +k1,25035:18820803,20960457:257803 +k1,25035:21260652,20960457:258155 +k1,25035:25304107,20960457:258096 +k1,25035:28576567,20960457:257804 +k1,25035:30044820,20960457:257803 +k1,25035:32583029,20960457:0 +) +(1,25035:7613813,21825537:24969216,505283,126483 +g1,25035:8920600,21825537 +g1,25035:10061581,21825537 +g1,25035:13810895,21825537 +g1,25035:17079830,21825537 +g1,25035:19522356,21825537 +g1,25035:20894024,21825537 +g1,25035:21902623,21825537 +g1,25035:23117005,21825537 +g1,25035:24685281,21825537 +k1,25035:32583029,21825537:6442849 +g1,25035:32583029,21825537 +) +(1,25035:7613813,22690617:24969216,513147,134348 +(1,25035:7613813,22690617:-983040,0,0 +g1,25035:6630773,22690617 +g1,25035:5320053,22690617 +g1,25035:4992373,22690617 +(1,25035:4992373,22690617:1310720,0,0 +k1,25035:6303093,22690617:1310720 +) +g1,25035:6630773,22690617 +) +k1,25035:8718425,22690617:181865 +k1,25035:9518933,22690617:181848 +k1,25035:10892191,22690617:181813 +k1,25035:11692698,22690617:181847 +k1,25035:15316462,22690617:181813 +k1,25035:17680073,22690617:181917 +k1,25035:17853730,22690617:-13 +k1,25035:17853743,22690617:13 +k1,25035:18654303,22690617:181900 +k1,25035:19323704,22690617:181813 +k1,25035:22507721,22690617:181813 +k1,25035:23637184,22690617:181812 +k1,25035:25290936,22690617:181813 +k1,25035:28159070,22690617:181813 +k1,25035:29532328,22690617:181813 +k1,25035:32583029,22690617:0 +) +(1,25035:7613813,23555697:24969216,505283,126483 +g1,25035:8614547,23555697 +g1,25035:9264008,23555697 +g1,25035:12134484,23555697 +g1,25035:14521305,23555697 +g1,25035:16117762,23555697 +g1,25035:16889120,23555697 +g1,25035:18103502,23555697 +g1,25035:21021165,23555697 +g1,25035:22392833,23555697 +g1,25035:23401432,23555697 +g1,25035:24195073,23555697 +k1,25035:32583029,23555697:7331516 +g1,25035:32583029,23555697 +) +(1,25035:7613813,24420777:24969216,513147,126483 +(1,25035:7613813,24420777:-983040,0,0 +g1,25035:6630773,24420777 +g1,25035:5320053,24420777 +g1,25035:4992373,24420777 +(1,25035:4992373,24420777:1310720,0,0 +k1,25035:6303093,24420777:1310720 +) +g1,25035:6630773,24420777 +) +k1,25035:8787031,24420777:250471 +k1,25035:9656111,24420777:250420 +k1,25035:12088430,24420777:250625 +k1,25035:12788325,24420777:250318 +k1,25035:13212569,24420777:250574 +k1,25035:14761811,24420777:250318 +k1,25035:16222579,24420777:250318 +k1,25035:18539903,24420777:250318 +k1,25035:21223880,24420777:250625 +k1,25035:21963752,24420777:250318 +k1,25035:23906865,24420777:250318 +k1,25035:24773221,24420777:250318 +k1,25035:25421998,24420777:250318 +k1,25035:27496184,24420777:250319 +k1,25035:28670560,24420777:250318 +k1,25035:31733683,24420777:250318 +k1,25035:32583029,24420777:0 +) +(1,25035:7613813,25285857:24969216,513147,126483 +k1,25035:10742357,25285857:306564 +k1,25035:14766778,25285857:306564 +k1,25035:15882712,25285857:306564 +k1,25035:19387433,25285857:306564 +k1,25035:22027079,25285857:306564 +k1,25035:23525089,25285857:306565 +k1,25035:26884308,25285857:307207 +k1,25035:28387559,25285857:306564 +k1,25035:31923737,25285857:306564 +k1,25035:32583029,25285857:0 +) +(1,25035:7613813,26150937:24969216,505283,119528 +k1,25035:11084079,26150937:295702 +k1,25035:12750042,26150937:295606 +$1,25035:12750042,26150937 +k1,25035:14711927,26150937:94645 +k1,25035:15180021,26150937:94646 +k1,25035:15648114,26150937:94645 +k1,25035:16116208,26150937:94646 +k1,25035:17331197,26150937:94645 +k1,25035:17799290,26150937:94645 +k1,25035:19387728,26150937:94646 +k1,25035:19855821,26150937:94645 +k1,25035:22938051,26150937:94646 +k1,25035:23406144,26150937:94645 +k1,25035:24247686,26150937:94646 +k1,25035:24715779,26150937:94645 +k1,25035:25557320,26150937:94645 +k1,25035:26025414,26150937:94646 +k1,25035:28360747,26150937:94645 +k1,25035:28828841,26150937:94646 +k1,25035:32284518,26150937:94645 +k1,25035:32583029,26150937:0 +) +(1,25035:7613813,27016017:24969216,513147,126483 +g1,25035:11721741,27016017 +g1,25035:12095189,27016017 +$1,25035:13215533,27016017 +g1,25035:13588432,27016017 +g1,25035:15456863,27016017 +g1,25035:16828531,27016017 +g1,25035:17837130,27016017 +g1,25035:18630771,27016017 +k1,25035:32583029,27016017:12895818 +g1,25035:32583029,27016017 +) +(1,25035:7613813,27881097:24969216,505283,102891 +(1,25035:7613813,27881097:-983040,0,0 +g1,25035:6630773,27881097 +g1,25035:5320053,27881097 +g1,25035:4992373,27881097 +(1,25035:4992373,27881097:1310720,0,0 +k1,25035:6303093,27881097:1310720 +) +g1,25035:6630773,27881097 +) +k1,25035:8876670,27881097:142191 +k1,25035:9845926,27881097:142192 +k1,25035:10665047,27881097:142134 +k1,25035:13064299,27881097:142192 +k1,25035:13814607,27881097:142134 +k1,25035:15953509,27881097:142020 +k1,25035:17286974,27881097:142020 +k1,25035:18047768,27881097:142134 +k1,25035:21432509,27881097:142020 +k1,25035:23756565,27881097:142362 +k1,25035:24801671,27881097:142020 +k1,25035:28810970,27881097:142020 +k1,25035:29552644,27881097:142020 +k1,25035:32583029,27881097:0 +) +(1,25035:7613813,28746177:24969216,505283,134348 +k1,25035:10774540,28746177:155246 +k1,25035:12292714,28746177:155025 +k1,25035:16321572,28746177:155025 +k1,25035:17079529,28746177:155026 +k1,25035:17858065,28746177:155289 +k1,25035:20877146,28746177:155158 +k1,25035:21626672,28746177:155114 +k1,25035:23151008,28746177:155289 +k1,25035:24898123,28746177:155246 +k1,25035:30446106,28746177:155025 +k1,25035:31773659,28746177:155114 +k1,25035:32583029,28746177:0 +) +(1,25035:7613813,29611257:24969216,505283,126483 +g1,25035:8407454,29611257 +k1,25035:32583029,29611257:22720676 +g1,25035:32583029,29611257 +) +(1,25035:7613813,30476337:24969216,513147,134348 +(1,25035:7613813,30476337:-983040,0,0 +g1,25035:6630773,30476337 +g1,25035:5320053,30476337 +g1,25035:4992373,30476337 +(1,25035:4992373,30476337:1310720,0,0 +k1,25035:6303093,30476337:1310720 +) +g1,25035:6630773,30476337 +) +k1,25035:10511590,30476337:226530 +k1,25035:11310877,30476337:226502 +k1,25035:12317258,30476337:226503 +k1,25035:13735151,30476337:226448 +k1,25035:14510845,30476337:226502 +k1,25035:15187580,30476337:226503 +k1,25035:17775290,30476337:226448 +k1,25035:20183596,30476337:226612 +k1,25035:23192047,30476337:226448 +k1,25035:25064759,30476337:226448 +k1,25035:25894138,30476337:226448 +k1,25035:28267708,30476337:226611 +k1,25035:31227089,30476337:226530 +k1,25035:32583029,30476337:0 +) +(1,25035:7613813,31341417:24969216,505283,126483 +g1,25035:11357884,31341417 +g1,25035:16811134,31341417 +g1,25035:18205740,31341417 +g1,25035:19420122,31341417 +g1,25035:20791790,31341417 +g1,25035:21800389,31341417 +g1,25035:23014771,31341417 +g1,25035:24583047,31341417 +k1,25035:32583029,31341417:6545083 +g1,25035:32583029,31341417 +) +(1,25035:7613813,32206497:24969216,513147,134348 +(1,25035:7613813,32206497:-983040,0,0 +g1,25035:6630773,32206497 +g1,25035:5320053,32206497 +g1,25035:4992373,32206497 +(1,25035:4992373,32206497:1310720,0,0 +k1,25035:6303093,32206497:1310720 +) +g1,25035:6630773,32206497 +) +k1,25035:10252381,32206497:172448 +k1,25035:10997587,32206497:172421 +k1,25035:11949886,32206497:172421 +k1,25035:13313698,32206497:172367 +k1,25035:14104779,32206497:172421 +k1,25035:15593764,32206497:172367 +k1,25035:17947986,32206497:172528 +k1,25035:19307865,32206497:172367 +k1,25035:21966014,32206497:172368 +k1,25035:22754419,32206497:172367 +k1,25035:27490874,32206497:172528 +k1,25035:30333178,32206497:172367 +k1,25035:32583029,32206497:0 +) +(1,25035:7613813,33071577:24969216,505283,126483 +g1,25035:9008419,33071577 +g1,25035:10222801,33071577 +g1,25035:12013899,33071577 +g1,25035:16229830,33071577 +g1,25035:17601498,33071577 +g1,25035:18610097,33071577 +g1,25035:19403738,33071577 +k1,25035:32583029,33071577:12122851 +g1,25035:32583029,33071577 +) +(1,25035:7613813,33936657:24969216,505283,134348 +(1,25035:7613813,33936657:-983040,0,0 +g1,25035:6630773,33936657 +g1,25035:5320053,33936657 +g1,25035:4992373,33936657 +(1,25035:4992373,33936657:1310720,0,0 +k1,25035:6303093,33936657:1310720 +) +g1,25035:6630773,33936657 +) +k1,25035:9044245,33936657:274377 +k1,25035:9995535,33936657:274303 +k1,25035:10814441,33936657:274302 +k1,25035:13270737,33936657:274602 +k1,25035:14732402,33936657:274153 +k1,25035:17855198,33936657:274602 +k1,25035:20862427,33936657:274378 +k1,25035:25931568,33936657:274527 +k1,25035:31286072,33936657:274153 +k1,25035:32583029,33936657:0 +) +(1,25035:7613813,34801737:24969216,505283,134348 +g1,25035:9954759,34801737 +g1,25035:13350179,34801737 +g1,25035:14143820,34801737 +g1,25035:15712096,34801737 +g1,25035:17503194,34801737 +g1,25035:22325988,34801737 +g1,25035:23697656,34801737 +g1,25035:24706255,34801737 +g1,25035:25499896,34801737 +k1,25035:32583029,34801737:6026693 +g1,25035:32583029,34801737 +) +(1,25035:7613813,35666817:24969216,505283,134348 +(1,25035:7613813,35666817:-983040,0,0 +g1,25035:6630773,35666817 +g1,25035:5320053,35666817 +g1,25035:4992373,35666817 +(1,25035:4992373,35666817:1310720,0,0 +k1,25035:6303093,35666817:1310720 +) +g1,25035:6630773,35666817 +) +k1,25035:8933838,35666817:163970 +k1,25035:9774759,35666817:163934 +k1,25035:10483298,35666817:163935 +k1,25035:12829067,35666817:164075 +k1,25035:13002724,35666817:-13 +k1,25035:13002737,35666817:13 +k1,25035:15585535,35666817:163864 +k1,25035:20449197,35666817:164075 +k1,25035:21414742,35666817:164040 +k1,25035:22766118,35666817:163864 +k1,25035:26075055,35666817:163864 +k1,25035:28638192,35666817:163864 +k1,25035:30344879,35666817:163969 +k1,25035:31523967,35666817:163935 +k1,25035:32583029,35666817:0 +) +(1,25035:7613813,36531897:24969216,505283,126483 +g1,25035:8988758,36531897 +g1,25035:10360426,36531897 +g1,25035:11369025,36531897 +g1,25035:12583407,36531897 +g1,25035:13753224,36531897 +k1,25035:32583029,36531897:17374906 +g1,25035:32583029,36531897 +) +(1,25035:7613813,37396977:24969216,505283,126483 +(1,25035:7613813,37396977:-983040,0,0 +g1,25035:6630773,37396977 +g1,25035:5320053,37396977 +g1,25035:4992373,37396977 +(1,25035:4992373,37396977:1310720,0,0 +k1,25035:6303093,37396977:1310720 +) +g1,25035:6630773,37396977 +) +k1,25035:9960086,37396977:304826 +k1,25035:10715039,37396977:304721 +k1,25035:12210995,37396977:304511 +k1,25035:12965949,37396977:304722 +k1,25035:15364991,37396977:304511 +k1,25035:17851827,37396977:305142 +k1,25035:19690536,37396977:304511 +k1,25035:24045172,37396977:304511 +k1,25035:27734593,37396977:305142 +k1,25035:30124119,37396977:304826 +k1,25035:32583029,37396977:0 +) +(1,25035:7613813,38262057:24969216,505283,126483 +g1,25035:9488798,38262057 +g1,25035:13091312,38262057 +g1,25035:14882410,38262057 +g1,25035:20261605,38262057 +g1,25035:21633273,38262057 +g1,25035:22641872,38262057 +g1,25035:23435513,38262057 +k1,25035:32583029,38262057:7692617 +g1,25035:32583029,38262057 +) +(1,25035:7613813,39127137:24969216,505283,173670 +(1,25035:7613813,39127137:-983040,0,0 +g1,25035:6630773,39127137 +g1,25035:5320053,39127137 +g1,25035:4992373,39127137 +(1,25035:4992373,39127137:1310720,0,0 +k1,25035:6303093,39127137:1310720 +) +g1,25035:6630773,39127137 +) +k1,25035:9656613,39127137:150776 +k1,25035:10346047,39127137:150728 +k1,25035:12678662,39127137:150921 +[1,25035:12817598,39127137:342688,473825,0 +(1,25035:12817598,38990495:342688,337183,0 +) +] +(1,25035:13387240,39300807:372900,473825,0 +) +k1,25035:14411708,39127137:150873 +k1,25035:15051892,39127137:150630 +k1,25035:18410510,39127137:150631 +k1,25035:22294071,39127137:150630 +k1,25035:24823293,39127137:150921 +k1,25035:27459339,39127137:150921 +k1,25035:28844013,39127137:150631 +k1,25035:29936686,39127137:150921 +k1,25035:32583029,39127137:0 +) +(1,25035:7613813,39992217:24969216,505283,126483 +g1,25035:13042815,39992217 +g1,25035:13836456,39992217 +g1,25035:15404732,39992217 +g1,25035:17195830,39992217 +g1,25035:22018624,39992217 +g1,25035:23390292,39992217 +g1,25035:24398891,39992217 +g1,25035:25613273,39992217 +g1,25035:26783090,39992217 +k1,25035:32583029,39992217:4345040 +g1,25035:32583029,39992217 +) +(1,25035:7613813,40857297:24969216,513147,134348 +(1,25035:7613813,40857297:-983040,0,0 +g1,25035:6630773,40857297 +g1,25035:5320053,40857297 +g1,25035:4992373,40857297 +(1,25035:4992373,40857297:1310720,0,0 +k1,25035:6303093,40857297:1310720 +) +g1,25035:6630773,40857297 +) +k1,25035:8980984,40857297:184246 +k1,25035:9698023,40857297:184231 +k1,25035:12064007,40857297:184290 +k1,25035:12237664,40857297:-13 +k1,25035:12237677,40857297:13 +k1,25035:15211746,40857297:184201 +k1,25035:18791367,40857297:184201 +k1,25035:19634859,40857297:184200 +k1,25035:22903184,40857297:184201 +k1,25035:25413913,40857297:184201 +k1,25035:27333507,40857297:184201 +k1,25035:29776733,40857297:184200 +k1,25035:31350297,40857297:184201 +k1,25035:32583029,40857297:0 +) +(1,25035:7613813,41722377:24969216,505283,134348 +k1,25035:9711392,41722377:322209 +k1,25035:10834985,41722377:322088 +k1,25035:14893325,41722377:321477 +k1,25035:15817732,41722377:321476 +k1,25035:20825689,41722377:321477 +k1,25035:24052453,41722377:322209 +k1,25035:27464607,41722377:321476 +k1,25035:29554323,41722377:322210 +k1,25035:30841389,41722377:321721 +k1,25035:31924393,41722377:321476 +k1,25035:32583029,41722377:0 +) +(1,25035:7613813,42587457:24969216,505283,134348 +k1,25035:9992943,42587457:256419 +k1,25035:11440807,42587457:256419 +k1,25035:12270125,42587457:256533 +k1,25035:14344856,42587457:256762 +k1,25035:18212480,42587457:256590 +k1,25035:21510056,42587457:256705 +k1,25035:24197861,42587457:256419 +k1,25035:26657116,42587457:256590 +k1,25035:27928802,42587457:256533 +k1,25035:31077668,42587457:256762 +k1,25035:32583029,42587457:0 +) +(1,25035:7613813,43452537:24969216,505283,126483 +g1,25035:12436607,43452537 +g1,25035:13808275,43452537 +g1,25035:14816874,43452537 +g1,25035:15610515,43452537 +k1,25035:32583029,43452537:15916074 +g1,25035:32583029,43452537 +) +(1,25035:7613813,44317617:24969216,505283,134348 +(1,25035:7613813,44317617:-983040,0,0 +g1,25035:6630773,44317617 +g1,25035:5320053,44317617 +g1,25035:4992373,44317617 +(1,25035:4992373,44317617:1310720,0,0 +k1,25035:6303093,44317617:1310720 +) +g1,25035:6630773,44317617 +) +k1,25035:9277899,44317617:331739 +k1,25035:10059738,44317617:331607 +k1,25035:12573567,44317617:332135 +k1,25035:16695512,44317617:331343 +k1,25035:17650894,44317617:332135 +k1,25035:19353255,44317617:332004 +$1,25035:19353255,44317617 +k1,25035:21350884,44317617:130389 +k1,25035:21854721,44317617:130389 +k1,25035:22358558,44317617:130389 +k1,25035:22862394,44317617:130388 +k1,25035:24486575,44317617:130389 +k1,25035:24990412,44317617:130389 +k1,25035:25494249,44317617:130389 +(1,25035:25867697,44406100:32768,0,0 +) +k1,25035:26030854,44317617:130389 +k1,25035:28775379,44317617:130389 +k1,25035:29279216,44317617:130389 +k1,25035:30529948,44317617:130388 +k1,25035:31033785,44317617:130389 +k1,25035:32284518,44317617:130389 +k1,25035:32583029,44317617:0 +) +(1,25035:7613813,45182697:24969216,505283,95026 +g1,25035:10227949,45182697 +g1,25035:10601397,45182697 +g1,25035:12468637,45182697 +(1,25035:12842085,45271180:32768,0,0 +) +g1,25035:12874853,45182697 +g1,25035:16235885,45182697 +g1,25035:16609333,45182697 +g1,25035:17356229,45182697 +g1,25035:17729677,45182697 +g1,25035:19596917,45182697 +g1,25035:19970365,45182697 +$1,25035:21464157,45182697 +g1,25035:21663386,45182697 +g1,25035:24184556,45182697 +g1,25035:25193155,45182697 +k1,25035:32583029,45182697:3271592 +g1,25035:32583029,45182697 +) +] +(1,25035:32583029,45706769:0,0,0 +g1,25035:32583029,45706769 +) +) +] +(1,25035:6630773,47279633:25952256,0,0 +h1,25035:6630773,47279633:25952256,0,0 +) +] +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-710413:0,0,0 +g1,25035:-473656,-710413 +) +g1,25035:-473656,-710413 ) ] ) ] !27185 -}431 +}432 !12 -{432 -[1,25037:4262630,47279633:28320399,43253760,0 -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-644877:0,0,0 -k1,25037:-473656,-644877:-65536 +{433 +[1,25035:4262630,47279633:28320399,43253760,0 +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-644877:0,0,0 +k1,25035:-473656,-644877:-65536 ) -(1,25037:-473656,4736287:0,0,0 -k1,25037:-473656,4736287:5209943 +(1,25035:-473656,4736287:0,0,0 +k1,25035:-473656,4736287:5209943 ) -g1,25037:-473656,-710413 +g1,25035:-473656,-710413 ) ] ) -[1,25037:6630773,47279633:25952256,43253760,0 -[1,25037:6630773,4812305:25952256,786432,0 -(1,25037:6630773,4812305:25952256,505283,134348 -(1,25037:6630773,4812305:25952256,505283,134348 -g1,25037:3078558,4812305 -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -k1,25037:1358238,2439708:-1720320 -(1,25037:1358238,2439708:1720320,1703936,0 -(1,25037:1358238,2439708:1179648,16384,0 -r1,25037:2537886,2439708:1179648,16384,0 +[1,25035:6630773,47279633:25952256,43253760,0 +[1,25035:6630773,4812305:25952256,786432,0 +(1,25035:6630773,4812305:25952256,505283,134348 +(1,25035:6630773,4812305:25952256,505283,134348 +g1,25035:3078558,4812305 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +k1,25035:1358238,2439708:-1720320 +(1,25035:1358238,2439708:1720320,1703936,0 +(1,25035:1358238,2439708:1179648,16384,0 +r1,25035:2537886,2439708:1179648,16384,0 ) -g1,25037:3062174,2439708 -(1,25037:3062174,2439708:16384,1703936,0 -[1,25037:3062174,2439708:25952256,1703936,0 -(1,25037:3062174,1915420:25952256,1179648,0 -(1,25037:3062174,1915420:16384,1179648,0 -r1,25037:3078558,1915420:16384,1179648,0 +g1,25035:3062174,2439708 +(1,25035:3062174,2439708:16384,1703936,0 +[1,25035:3062174,2439708:25952256,1703936,0 +(1,25035:3062174,1915420:25952256,1179648,0 +(1,25035:3062174,1915420:16384,1179648,0 +r1,25035:3078558,1915420:16384,1179648,0 ) -k1,25037:29014430,1915420:25935872 -g1,25037:29014430,1915420 +k1,25035:29014430,1915420:25935872 +g1,25035:29014430,1915420 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,2439708:0,1703936,0 -g1,25037:29030814,2439708 -g1,25037:36135244,2439708 -(1,25037:36135244,2439708:1720320,1703936,0 -(1,25037:36135244,2439708:16384,1703936,0 -[1,25037:36135244,2439708:25952256,1703936,0 -(1,25037:36135244,1915420:25952256,1179648,0 -(1,25037:36135244,1915420:16384,1179648,0 -r1,25037:36151628,1915420:16384,1179648,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,2439708:0,1703936,0 +g1,25035:29030814,2439708 +g1,25035:36135244,2439708 +(1,25035:36135244,2439708:1720320,1703936,0 +(1,25035:36135244,2439708:16384,1703936,0 +[1,25035:36135244,2439708:25952256,1703936,0 +(1,25035:36135244,1915420:25952256,1179648,0 +(1,25035:36135244,1915420:16384,1179648,0 +r1,25035:36151628,1915420:16384,1179648,0 ) -k1,25037:62087500,1915420:25935872 -g1,25037:62087500,1915420 +k1,25035:62087500,1915420:25935872 +g1,25035:62087500,1915420 ) ] ) -g1,25037:36675916,2439708 -(1,25037:36675916,2439708:1179648,16384,0 -r1,25037:37855564,2439708:1179648,16384,0 +g1,25035:36675916,2439708 +(1,25035:36675916,2439708:1179648,16384,0 +r1,25035:37855564,2439708:1179648,16384,0 ) ) -k1,25037:3078556,2439708:-34777008 +k1,25035:3078556,2439708:-34777008 ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -k1,25037:1358238,49800853:-1720320 -(1,25037:1358238,49800853:1720320,16384,2228224 -(1,25037:1358238,49800853:1179648,16384,0 -r1,25037:2537886,49800853:1179648,16384,0 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +k1,25035:1358238,49800853:-1720320 +(1,25035:1358238,49800853:1720320,16384,2228224 +(1,25035:1358238,49800853:1179648,16384,0 +r1,25035:2537886,49800853:1179648,16384,0 ) -g1,25037:3062174,49800853 -(1,25037:3062174,52029077:16384,1703936,0 -[1,25037:3062174,52029077:25952256,1703936,0 -(1,25037:3062174,51504789:25952256,1179648,0 -(1,25037:3062174,51504789:16384,1179648,0 -r1,25037:3078558,51504789:16384,1179648,0 +g1,25035:3062174,49800853 +(1,25035:3062174,52029077:16384,1703936,0 +[1,25035:3062174,52029077:25952256,1703936,0 +(1,25035:3062174,51504789:25952256,1179648,0 +(1,25035:3062174,51504789:16384,1179648,0 +r1,25035:3078558,51504789:16384,1179648,0 ) -k1,25037:29014430,51504789:25935872 -g1,25037:29014430,51504789 +k1,25035:29014430,51504789:25935872 +g1,25035:29014430,51504789 ) ] ) ) ) ] -[1,25037:3078558,4812305:0,0,0 -(1,25037:3078558,49800853:0,16384,2228224 -g1,25037:29030814,49800853 -g1,25037:36135244,49800853 -(1,25037:36135244,49800853:1720320,16384,2228224 -(1,25037:36135244,52029077:16384,1703936,0 -[1,25037:36135244,52029077:25952256,1703936,0 -(1,25037:36135244,51504789:25952256,1179648,0 -(1,25037:36135244,51504789:16384,1179648,0 -r1,25037:36151628,51504789:16384,1179648,0 -) -k1,25037:62087500,51504789:25935872 -g1,25037:62087500,51504789 -) -] -) -g1,25037:36675916,49800853 -(1,25037:36675916,49800853:1179648,16384,0 -r1,25037:37855564,49800853:1179648,16384,0 -) -) -k1,25037:3078556,49800853:-34777008 -) -] -g1,25037:6630773,4812305 -g1,25037:6630773,4812305 -g1,25037:10831630,4812305 -k1,25037:31387652,4812305:20556022 -) -) -] -[1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:6630773,45706769:0,0,0 -g1,25037:6630773,45706769 -) -[1,25037:6630773,45706769:25952256,40108032,0 -(1,25037:7613813,6254097:24969216,513147,134348 -(1,25037:7613813,6254097:-983040,0,0 -g1,25037:6630773,6254097 -g1,25037:5320053,6254097 -g1,25037:4992373,6254097 -(1,25037:4992373,6254097:1310720,0,0 -k1,25037:6303093,6254097:1310720 -) -g1,25037:6630773,6254097 -) -k1,25037:9235328,6254097:169237 -k1,25037:10070381,6254097:169207 -k1,25037:12421402,6254097:169327 -k1,25037:13778061,6254097:169147 -k1,25037:14977433,6254097:169146 -k1,25037:15762618,6254097:169147 -k1,25037:16381342,6254097:169147 -k1,25037:21114566,6254097:169297 -k1,25037:21773267,6254097:169147 -k1,25037:23464814,6254097:169146 -k1,25037:24249999,6254097:169147 -k1,25037:27449531,6254097:169147 -k1,25037:30400681,6254097:169147 -k1,25037:32583029,6254097:0 -) -(1,25037:7613813,7119177:24969216,505283,126483 -g1,25037:8699744,7119177 -g1,25037:10903719,7119177 -g1,25037:12948442,7119177 -g1,25037:13742083,7119177 -g1,25037:15310359,7119177 -g1,25037:17101457,7119177 -g1,25037:21285275,7119177 -g1,25037:22656943,7119177 -g1,25037:23665542,7119177 -g1,25037:24879924,7119177 -g1,25037:26049741,7119177 -g1,25037:27618017,7119177 -g1,25037:29186293,7119177 -k1,25037:32583029,7119177:1941837 -g1,25037:32583029,7119177 -) -(1,25037:7613813,7984257:24969216,513147,126483 -(1,25037:7613813,7984257:-983040,0,0 -g1,25037:6630773,7984257 -g1,25037:5320053,7984257 -g1,25037:4992373,7984257 -(1,25037:4992373,7984257:1310720,0,0 -k1,25037:6303093,7984257:1310720 -) -g1,25037:6630773,7984257 -) -k1,25037:10391497,7984257:436083 -k1,25037:11366052,7984257:435849 -k1,25037:12992873,7984257:435376 -k1,25037:13878954,7984257:435849 -k1,25037:16077904,7984257:435376 -k1,25037:18696390,7984257:436792 -k1,25037:21949815,7984257:435377 -k1,25037:23309250,7984257:435377 -k1,25037:26314948,7984257:435376 -k1,25037:27960775,7984257:435377 -k1,25037:32583029,7984257:0 -) -(1,25037:7613813,8849337:24969216,505283,126483 -k1,25037:9433948,8849337:285937 -k1,25037:11083033,8849337:285936 -k1,25037:14308915,8849337:285937 -k1,25037:15197783,8849337:285937 -k1,25037:16107486,8849337:286456 -k1,25037:17876503,8849337:285937 -k1,25037:20203664,8849337:286370 -k1,25037:22529080,8849337:285936 -k1,25037:23267215,8849337:285937 -k1,25037:25836426,8849337:285937 -k1,25037:28294745,8849337:286456 -k1,25037:29776059,8849337:285937 -k1,25037:31077668,8849337:286456 -k1,25037:32583029,8849337:0 -) -(1,25037:7613813,9714417:24969216,505283,126483 -g1,25037:12993008,9714417 -g1,25037:14364676,9714417 -g1,25037:15373275,9714417 -g1,25037:16166916,9714417 -k1,25037:32583029,9714417:14961214 -g1,25037:32583029,9714417 -) -(1,25037:7613813,10579497:24969216,505283,126483 -(1,25037:7613813,10579497:-983040,0,0 -g1,25037:6630773,10579497 -g1,25037:5320053,10579497 -g1,25037:4992373,10579497 -(1,25037:4992373,10579497:1310720,0,0 -k1,25037:6303093,10579497:1310720 -) -g1,25037:6630773,10579497 -) -k1,25037:9359808,10579497:242599 -k1,25037:10151557,10579497:242557 -k1,25037:12575980,10579497:242729 -k1,25037:13268027,10579497:242470 -k1,25037:16495265,10579497:242729 -k1,25037:17845293,10579497:242470 -k1,25037:19029774,10579497:242729 -k1,25037:22158010,10579497:242686 -k1,25037:25438074,10579497:242470 -k1,25037:26871989,10579497:242470 -k1,25037:30251271,10579497:242729 -k1,25037:31689118,10579497:242470 -k1,25037:32583029,10579497:0 -) -(1,25037:7613813,11444577:24969216,505283,126483 -g1,25037:9404911,11444577 -g1,25037:13588729,11444577 -g1,25037:14960397,11444577 -g1,25037:15968996,11444577 -g1,25037:17183378,11444577 -g1,25037:18751654,11444577 -g1,25037:20319930,11444577 -g1,25037:21888206,11444577 -k1,25037:32583029,11444577:9239924 -g1,25037:32583029,11444577 -) -(1,25037:7613813,12309657:24969216,530548,134348 -(1,25037:7613813,12309657:-983040,0,0 -g1,25037:6630773,12309657 -g1,25037:5320053,12309657 -g1,25037:4992373,12309657 -(1,25037:4992373,12309657:1310720,0,0 -k1,25037:6303093,12309657:1310720 -) -g1,25037:6630773,12309657 -) -k1,25037:9841142,12309657:285497 -k1,25037:10755700,12309657:285412 -k1,25037:12232385,12309657:285240 -k1,25037:13090582,12309657:285412 -k1,25037:16783039,12309657:285240 -k1,25037:19250488,12309657:285755 -k1,25037:22367539,12309657:285240 -k1,25037:23638440,12309657:285240 -k1,25037:25583450,12309657:285240 -k1,25037:27534474,12309657:285755 -k1,25037:30267484,12309657:285240 -k1,25037:31487923,12309657:285240 -k1,25037:32583029,12309657:0 -) -(1,25037:7613813,13174737:24969216,505283,126483 -g1,25037:9008419,13174737 -g1,25037:10222801,13174737 -g1,25037:12013899,13174737 -g1,25037:16197717,13174737 -g1,25037:17569385,13174737 -g1,25037:18577984,13174737 -g1,25037:19371625,13174737 -k1,25037:32583029,13174737:12154964 -g1,25037:32583029,13174737 -) -(1,25037:7613813,14039817:24969216,513147,134348 -(1,25037:7613813,14039817:-983040,0,0 -g1,25037:6630773,14039817 -g1,25037:5320053,14039817 -g1,25037:4992373,14039817 -(1,25037:4992373,14039817:1310720,0,0 -k1,25037:6303093,14039817:1310720 -) -g1,25037:6630773,14039817 -) -k1,25037:8509411,14039817:193052 -k1,25037:9321116,14039817:193045 -k1,25037:10191148,14039817:193045 -k1,25037:12565912,14039817:193070 -k1,25037:13208522,14039817:193033 -k1,25037:17791812,14039817:193033 -k1,25037:18908903,14039817:193033 -k1,25037:20636134,14039817:193033 -k1,25037:23282872,14039817:193070 -k1,25037:26368701,14039817:193070 -k1,25037:27757111,14039817:193033 -k1,25037:28965334,14039817:193070 -k1,25037:30528755,14039817:193064 -$1,25037:30528755,14039817 -k1,25037:32395995,14039817:0 -k1,25037:32583029,14039817:0 -) -(1,25037:7613813,14904897:24969216,505283,126960 -g1,25037:7950102,14904897 -g1,25037:8323550,14904897 -g1,25037:10937686,14904897 -g1,25037:11311134,14904897 -g1,25037:12431478,14904897 -g1,25037:12804926,14904897 -$1,25037:17286302,14904897 -g1,25037:17485531,14904897 -g1,25037:20006701,14904897 -g1,25037:21015300,14904897 -g1,25037:25280383,14904897 -g1,25037:26652051,14904897 -g1,25037:27660650,14904897 -g1,25037:28454291,14904897 -k1,25037:32583029,14904897:2673839 -g1,25037:32583029,14904897 -) -(1,25037:7613813,15769977:24969216,513147,126483 -(1,25037:7613813,15769977:-983040,0,0 -g1,25037:6630773,15769977 -g1,25037:5320053,15769977 -g1,25037:4992373,15769977 -(1,25037:4992373,15769977:1310720,0,0 -k1,25037:6303093,15769977:1310720 -) -g1,25037:6630773,15769977 -) -k1,25037:9590978,15769977:148710 -k1,25037:10189869,15769977:148659 -k1,25037:10967675,15769977:148660 -k1,25037:12307678,15769977:148558 -k1,25037:13133324,15769977:148659 -k1,25037:14019264,15769977:148660 -k1,25037:15857340,15769977:148558 -k1,25037:18187895,15769977:148861 -k1,25037:22392476,15769977:148558 -k1,25037:24690615,15769977:148558 -k1,25037:25442104,15769977:148558 -k1,25037:25950455,15769977:148558 -k1,25037:27309463,15769977:148558 -k1,25037:29467002,15769977:148861 -k1,25037:30976087,15769977:148558 -k1,25037:32583029,15769977:0 -) -(1,25037:7613813,16635057:24969216,505283,134348 -g1,25037:10503295,16635057 -g1,25037:11874963,16635057 -g1,25037:12883562,16635057 -g1,25037:14097944,16635057 -g1,25037:15666220,16635057 -g1,25037:17234496,16635057 -k1,25037:32583029,16635057:13893634 -g1,25037:32583029,16635057 -) -(1,25037:7613813,17500137:24969216,505283,134348 -(1,25037:7613813,17500137:-983040,0,0 -g1,25037:6630773,17500137 -g1,25037:5320053,17500137 -g1,25037:4992373,17500137 -(1,25037:4992373,17500137:1310720,0,0 -k1,25037:6303093,17500137:1310720 -) -g1,25037:6630773,17500137 -) -k1,25037:8372728,17500137:147464 -k1,25037:9331529,17500137:147465 -k1,25037:10108087,17500137:147412 -k1,25037:13295112,17500137:147465 -k1,25037:13971400,17500137:147412 -k1,25037:18351835,17500137:147465 -k1,25037:19165093,17500137:147412 -k1,25037:20986348,17500137:147465 -k1,25037:21871040,17500137:147412 -k1,25037:24363883,17500137:147309 -k1,25037:25702637,17500137:147309 -k1,25037:26378926,17500137:147413 -k1,25037:28993665,17500137:147308 -k1,25037:30729671,17500137:147413 -k1,25037:32583029,17500137:0 -) -(1,25037:7613813,18365217:24969216,513147,134348 -k1,25037:7735697,18365217:-13 -k1,25037:7735710,18365217:13 -k1,25037:8365773,18365217:142475 -k1,25037:12247077,18365217:142475 -k1,25037:13048845,18365217:142476 -k1,25037:15683654,18365217:142475 -k1,25037:18247029,18365217:142475 -k1,25037:19748065,18365217:142475 -k1,25037:22109589,18365217:142475 -k1,25037:23199716,18365217:142476 -k1,25037:26793972,18365217:142475 -k1,25037:29799060,18365217:142475 -k1,25037:32583029,18365217:0 -) -(1,25037:7613813,19230297:24969216,505283,134348 -k1,25037:12569820,19230297:297708 -k1,25037:13668936,19230297:297611 -k1,25037:17461093,19230297:297122 -k1,25037:18361146,19230297:297122 -k1,25037:20938266,19230297:297122 -k1,25037:21711834,19230297:297121 -k1,25037:25787106,19230297:297122 -k1,25037:27627238,19230297:297414 -k1,25037:28939709,19230297:297318 -k1,25037:31332603,19230297:297708 -k1,25037:32583029,19230297:0 -) -(1,25037:7613813,20095377:24969216,505283,126483 -g1,25037:8342129,20095377 -g1,25037:8715577,20095377 -g1,25037:10209369,20095377 -g1,25037:10582817,20095377 -g1,25037:12076609,20095377 -g1,25037:12450057,20095377 -g1,25037:13943849,20095377 -g1,25037:14317297,20095377 -$1,25037:16931433,20095377 -g1,25037:17130662,20095377 -g1,25037:18502330,20095377 -g1,25037:19510929,20095377 -g1,25037:20304570,20095377 -k1,25037:32583029,20095377:10823560 -g1,25037:32583029,20095377 -) -(1,25037:7613813,20960457:24969216,505283,134348 -(1,25037:7613813,20960457:-983040,0,0 -g1,25037:6630773,20960457 -g1,25037:5320053,20960457 -g1,25037:4992373,20960457 -(1,25037:4992373,20960457:1310720,0,0 -k1,25037:6303093,20960457:1310720 -) -g1,25037:6630773,20960457 -) -k1,25037:9506865,20960457:234336 -k1,25037:10191399,20960457:234302 -k1,25037:12607534,20960457:234441 -k1,25037:16138882,20960457:234232 -k1,25037:17907312,20960457:234232 -k1,25037:20764295,20960457:234232 -k1,25037:22361675,20960457:234231 -k1,25037:23045484,20960457:234232 -k1,25037:24490166,20960457:234232 -k1,25037:27650789,20960457:234441 -k1,25037:32583029,20960457:0 -) -(1,25037:7613813,21825537:24969216,505283,126483 -g1,25037:9173569,21825537 -g1,25037:11066248,21825537 -g1,25037:11859889,21825537 -g1,25037:13428165,21825537 -g1,25037:15219263,21825537 -g1,25037:20598458,21825537 -g1,25037:21970126,21825537 -g1,25037:22978725,21825537 -g1,25037:23772366,21825537 -k1,25037:32583029,21825537:7355764 -g1,25037:32583029,21825537 -) -(1,25037:7613813,22690617:24969216,505283,134348 -(1,25037:7613813,22690617:-983040,0,0 -g1,25037:6630773,22690617 -g1,25037:5320053,22690617 -g1,25037:4992373,22690617 -(1,25037:4992373,22690617:1310720,0,0 -k1,25037:6303093,22690617:1310720 -) -g1,25037:6630773,22690617 -) -k1,25037:9070156,22690617:229509 -k1,25037:9976621,22690617:229478 -k1,25037:12387915,22690617:229600 -k1,25037:14877821,22690617:229569 -k1,25037:18930610,22690617:229419 -k1,25037:20694226,22690617:229418 -k1,25037:24973769,22690617:229418 -k1,25037:26566337,22690617:229419 -k1,25037:27419183,22690617:229599 -k1,25037:28634263,22690617:229419 -k1,25037:29805614,22690617:229599 -k1,25037:32583029,22690617:0 -) -(1,25037:7613813,23555697:24969216,505283,126483 -g1,25037:8407454,23555697 -g1,25037:9975730,23555697 -g1,25037:11766828,23555697 -g1,25037:15950646,23555697 -g1,25037:17322314,23555697 -g1,25037:18330913,23555697 -g1,25037:19124554,23555697 -k1,25037:32583029,23555697:12003576 -g1,25037:32583029,23555697 -) -(1,25037:7613813,24420777:24969216,513147,134348 -(1,25037:7613813,24420777:-983040,0,0 -g1,25037:6630773,24420777 -g1,25037:5320053,24420777 -g1,25037:4992373,24420777 -(1,25037:4992373,24420777:1310720,0,0 -k1,25037:6303093,24420777:1310720 -) -g1,25037:6630773,24420777 -) -k1,25037:8894853,24420777:242294 -k1,25037:9816056,24420777:242250 -k1,25037:10591115,24420777:242251 -k1,25037:13015232,24420777:242423 -k1,25037:13188889,24420777:-13 -k1,25037:13188902,24420777:13 -k1,25037:17888171,24420777:242165 -k1,25037:18789628,24420777:242165 -k1,25037:21805277,24420777:242165 -k1,25037:25191859,24420777:242165 -k1,25037:27502340,24420777:242165 -k1,25037:28935950,24420777:242165 -k1,25037:32583029,24420777:0 -) -(1,25037:7613813,25285857:24969216,513147,126483 -g1,25037:8429080,25285857 -g1,25037:11182902,25285857 -g1,25037:12041423,25285857 -g1,25037:15970306,25285857 -g1,25037:16971040,25285857 -g1,25037:20442482,25285857 -g1,25037:21612299,25285857 -g1,25037:22826681,25285857 -g1,25037:25744344,25285857 -g1,25037:27116012,25285857 -g1,25037:28124611,25285857 -g1,25037:28918252,25285857 -k1,25037:32583029,25285857:2209878 -g1,25037:32583029,25285857 -) -(1,25037:7613813,26150937:24969216,513147,126483 -(1,25037:7613813,26150937:-983040,0,0 -g1,25037:6630773,26150937 -g1,25037:5320053,26150937 -g1,25037:4992373,26150937 -(1,25037:4992373,26150937:1310720,0,0 -k1,25037:6303093,26150937:1310720 -) -g1,25037:6630773,26150937 -) -k1,25037:8782201,26150937:259404 -k1,25037:9586149,26150937:259344 -k1,25037:10464153,26150937:259344 -k1,25037:12905431,26150937:259584 -k1,25037:14352167,26150937:259224 -k1,25037:16519800,26150937:259225 -k1,25037:19113416,26150937:259224 -k1,25037:19988678,26150937:259224 -k1,25037:24169576,26150937:259224 -k1,25037:28373116,26150937:259584 -k1,25037:31605888,26150937:259404 -k1,25037:32583029,26150937:0 -) -(1,25037:7613813,27016017:24969216,505283,126483 -g1,25037:10637644,27016017 -g1,25037:12682367,27016017 -g1,25037:14076973,27016017 -g1,25037:15291355,27016017 -g1,25037:17082453,27016017 -g1,25037:21937360,27016017 -g1,25037:23309028,27016017 -g1,25037:24317627,27016017 -g1,25037:25111268,27016017 -k1,25037:32583029,27016017:6016862 -g1,25037:32583029,27016017 -) -(1,25037:7613813,27881097:24969216,505283,126483 -(1,25037:7613813,27881097:-983040,0,0 -g1,25037:6630773,27881097 -g1,25037:5320053,27881097 -g1,25037:4992373,27881097 -(1,25037:4992373,27881097:1310720,0,0 -k1,25037:6303093,27881097:1310720 -) -g1,25037:6630773,27881097 -) -k1,25037:9917805,27881097:254026 -k1,25037:10951654,27881097:253971 -k1,25037:11871472,27881097:253972 -k1,25037:13316779,27881097:253862 -k1,25037:14143535,27881097:253971 -k1,25037:15074494,27881097:253972 -k1,25037:17308854,27881097:253862 -k1,25037:19744738,27881097:254190 -k1,25037:22391975,27881097:253862 -k1,25037:25049042,27881097:253862 -k1,25037:28033790,27881097:253863 -k1,25037:29650801,27881097:253862 -k1,25037:30438454,27881097:254190 -k1,25037:31762519,27881097:253862 -k1,25037:32583029,27881097:0 -) -(1,25037:7613813,28746177:24969216,505283,134348 -g1,25037:9173569,28746177 -g1,25037:11066248,28746177 -g1,25037:14129400,28746177 -g1,25037:15920498,28746177 -g1,25037:20743292,28746177 -g1,25037:22114960,28746177 -g1,25037:23123559,28746177 -g1,25037:24337941,28746177 -g1,25037:25906217,28746177 -k1,25037:32583029,28746177:5221913 -g1,25037:32583029,28746177 -) -(1,25037:7613813,29611257:24969216,513147,126483 -(1,25037:7613813,29611257:-983040,0,0 -g1,25037:6630773,29611257 -g1,25037:5320053,29611257 -g1,25037:4992373,29611257 -(1,25037:4992373,29611257:1310720,0,0 -k1,25037:6303093,29611257:1310720 -) -g1,25037:6630773,29611257 -) -k1,25037:9868490,29611257:139830 -k1,25037:10687214,29611257:139771 -k1,25037:13008915,29611257:140007 -k1,25037:13182572,29611257:-13 -k1,25037:13182585,29611257:13 -k1,25037:13809824,29611257:139651 -k1,25037:16435257,29611257:139652 -k1,25037:19583011,29611257:139651 -k1,25037:20381954,29611257:139651 -k1,25037:23693905,29611257:140008 -k1,25037:24635358,29611257:139948 -k1,25037:27140860,29611257:139652 -k1,25037:27896549,29611257:139651 -k1,25037:32583029,29611257:0 -) -(1,25037:7613813,30476337:24969216,505283,126960 -k1,25037:9016689,30476337:192426 -k1,25037:12319455,30476337:192427 -k1,25037:15265704,30476337:192426 -k1,25037:17000869,30476337:192447 -k1,25037:18208462,30476337:192440 -k1,25037:20097656,30476337:192467 -k1,25037:21627050,30476337:192460 -$1,25037:21627050,30476337 -k1,25037:22373946,30476337:0 -k1,25037:22747394,30476337:0 -k1,25037:24241186,30476337:0 -k1,25037:24614634,30476337:0 -k1,25037:26108426,30476337:0 -k1,25037:26481874,30476337:0 -k1,25037:27975666,30476337:0 -k1,25037:28349114,30476337:0 -$1,25037:30216354,30476337 -k1,25037:30408780,30476337:192426 -k1,25037:31773659,30476337:192440 -k1,25037:32583029,30476337:0 -) -(1,25037:7613813,31341417:24969216,505283,126483 -g1,25037:8407454,31341417 -k1,25037:32583029,31341417:22720676 -g1,25037:32583029,31341417 -) -(1,25037:7613813,32206497:24969216,505283,126483 -(1,25037:7613813,32206497:-983040,0,0 -g1,25037:6630773,32206497 -g1,25037:5320053,32206497 -g1,25037:4992373,32206497 -(1,25037:4992373,32206497:1310720,0,0 -k1,25037:6303093,32206497:1310720 -) -g1,25037:6630773,32206497 -) -(1,25037:6630773,32206497:983040,211026,0 -k1,25037:7613813,32206497:327680 -) -k1,25037:9951367,32206497:155860 -k1,25037:13229757,32206497:155599 -k1,25037:14008863,32206497:155859 -k1,25037:15398505,32206497:155599 -k1,25037:16496117,32206497:155860 -k1,25037:19689310,32206497:155599 -k1,25037:21036353,32206497:155598 -k1,25037:24328766,32206497:155860 -k1,25037:25679742,32206497:155599 -k1,25037:26850755,32206497:155860 -k1,25037:28598440,32206497:155816 -k1,25037:32583029,32206497:0 -) -(1,25037:7613813,33071577:24969216,505283,126483 -g1,25037:8964509,33071577 -g1,25037:9973108,33071577 -g1,25037:11187490,33071577 -g1,25037:12755766,33071577 -k1,25037:32583029,33071577:18372364 -g1,25037:32583029,33071577 -) -(1,25037:7613813,33936657:24969216,505283,134348 -(1,25037:7613813,33936657:-983040,0,0 -g1,25037:6630773,33936657 -g1,25037:5320053,33936657 -g1,25037:4992373,33936657 -(1,25037:4992373,33936657:1310720,0,0 -k1,25037:6303093,33936657:1310720 -) -g1,25037:6630773,33936657 -) -k1,25037:9900601,33936657:171941 -k1,25037:10751468,33936657:171914 -k1,25037:12114772,33936657:171859 -k1,25037:12736917,33936657:171913 -k1,25037:14728055,33936657:171859 -k1,25037:17081772,33936657:172023 -k1,25037:17703208,33936657:171859 -k1,25037:20933795,33936657:172022 -k1,25037:24187239,33936657:171941 -k1,25037:25827842,33936657:171941 -k1,25037:29381441,33936657:171941 -k1,25037:30763750,33936657:171859 -k1,25037:32583029,33936657:0 -) -(1,25037:7613813,34801737:24969216,505283,126483 -g1,25037:9313816,34801737 -g1,25037:11259579,34801737 -g1,25037:13906578,34801737 -g1,25037:16168225,34801737 -g1,25037:20669893,34801737 -g1,25037:22460991,34801737 -g1,25037:27840186,34801737 -g1,25037:29211854,34801737 -g1,25037:30220453,34801737 -g1,25037:31014094,34801737 -k1,25037:32583029,34801737:114036 -g1,25037:32583029,34801737 -) -(1,25037:7613813,35666817:24969216,513147,126483 -(1,25037:7613813,35666817:-983040,0,0 -g1,25037:6630773,35666817 -g1,25037:5320053,35666817 -g1,25037:4992373,35666817 -(1,25037:4992373,35666817:1310720,0,0 -k1,25037:6303093,35666817:1310720 -) -g1,25037:6630773,35666817 -) -k1,25037:10108211,35666817:379551 -k1,25037:11340385,35666817:379551 -k1,25037:12457038,35666817:379373 -k1,25037:18438069,35666817:379013 -k1,25037:20008528,35666817:379014 -k1,25037:21041294,35666817:379372 -k1,25037:25005783,35666817:379014 -k1,25037:27567568,35666817:380091 -k1,25037:28396158,35666817:379013 -k1,25037:29699230,35666817:379014 -k1,25037:31612441,35666817:379013 -k1,25037:32583029,35666817:0 -) -(1,25037:7613813,36531897:24969216,513147,126483 -k1,25037:9418604,36531897:219475 -k1,25037:11949473,36531897:219414 -k1,25037:13730611,36531897:219415 -k1,25037:17509286,36531897:219415 -k1,25037:20690927,36531897:219414 -k1,25037:22120731,36531897:219354 -k1,25037:24201308,36531897:219355 -k1,25037:26128651,36531897:219475 -k1,25037:28795775,36531897:219354 -k1,25037:31077668,36531897:219475 -k1,25037:32583029,36531897:0 -) -(1,25037:7613813,37396977:24969216,505283,126483 -g1,25037:12993008,37396977 -g1,25037:14364676,37396977 -g1,25037:15373275,37396977 -g1,25037:16587657,37396977 -g1,25037:18155933,37396977 -k1,25037:32583029,37396977:12972197 -g1,25037:32583029,37396977 -) -(1,25037:7613813,38262057:24969216,513147,134348 -(1,25037:7613813,38262057:-983040,0,0 -g1,25037:6630773,38262057 -g1,25037:5320053,38262057 -g1,25037:4992373,38262057 -(1,25037:4992373,38262057:1310720,0,0 -k1,25037:6303093,38262057:1310720 -) -g1,25037:6630773,38262057 -) -k1,25037:10018392,38262057:289732 -k1,25037:10986987,38262057:289642 -k1,25037:12467894,38262057:289462 -k1,25037:13386682,38262057:289642 -k1,25037:15829657,38262057:289462 -k1,25037:18301354,38262057:290003 -k1,25037:21139962,38262057:289913 -k1,25037:23770369,38262057:289461 -k1,25037:26870670,38262057:289462 -k1,25037:28084190,38262057:289462 -k1,25037:29907850,38262057:289462 -k1,25037:32583029,38262057:0 -) -(1,25037:7613813,39127137:24969216,505283,134348 -k1,25037:9020805,39127137:172949 -k1,25037:10135662,39127137:173105 -k1,25037:13172691,39127137:173106 -k1,25037:14447299,39127137:172948 -k1,25037:15188445,39127137:172949 -k1,25037:16730598,39127137:173106 -k1,25037:18495546,39127137:173079 -k1,25037:24700429,39127137:172949 -k1,25037:26045869,39127137:173001 -k1,25037:27028187,39127137:172948 -k1,25037:28216341,39127137:173001 -k1,25037:29758416,39127137:173028 -k1,25037:31300490,39127137:173027 -k1,25037:32583029,39127137:0 -) -(1,25037:7613813,39992217:24969216,505283,95026 -k1,25037:32583028,39992217:23514316 -g1,25037:32583028,39992217 -) -(1,25037:7613813,40857297:24969216,513147,134348 -(1,25037:7613813,40857297:-983040,0,0 -g1,25037:6630773,40857297 -g1,25037:5320053,40857297 -g1,25037:4992373,40857297 -(1,25037:4992373,40857297:1310720,0,0 -k1,25037:6303093,40857297:1310720 -) -g1,25037:6630773,40857297 -) -k1,25037:8906488,40857297:334539 -k1,25037:9906739,40857297:334405 -k1,25037:12423377,40857297:334944 -k1,25037:16248616,40857297:334136 -k1,25037:17150949,40857297:334136 -k1,25037:19019282,40857297:334135 -k1,25037:22567304,40857297:334136 -k1,25037:23469636,40857297:334135 -k1,25037:27040747,40857297:334944 -k1,25037:30818145,40857297:334136 -k1,25037:32583029,40857297:0 -) -(1,25037:7613813,41722377:24969216,505283,126483 -g1,25037:12036182,41722377 -g1,25037:12829823,41722377 -k1,25037:32583028,41722377:18505400 -g1,25037:32583028,41722377 -) -(1,25037:7613813,42587457:24969216,505283,126483 -(1,25037:7613813,42587457:-983040,0,0 -g1,25037:6630773,42587457 -g1,25037:5320053,42587457 -g1,25037:4992373,42587457 -(1,25037:4992373,42587457:1310720,0,0 -k1,25037:6303093,42587457:1310720 -) -g1,25037:6630773,42587457 -) -k1,25037:8842510,42587457:222064 -k1,25037:9593428,42587457:222042 -k1,25037:10481315,42587457:222041 -k1,25037:12885141,42587457:222132 -k1,25037:16869559,42587457:221996 -k1,25037:19694645,42587457:221996 -k1,25037:22240029,42587457:222133 -k1,25037:25499619,42587457:221996 -k1,25037:26913060,42587457:221996 -k1,25037:30271745,42587457:222132 -k1,25037:31689118,42587457:221996 -k1,25037:32583029,42587457:0 -) -(1,25037:7613813,43452537:24969216,505283,126483 -g1,25037:9404911,43452537 -g1,25037:13588729,43452537 -g1,25037:14960397,43452537 -g1,25037:15968996,43452537 -g1,25037:17183378,43452537 -g1,25037:18751654,43452537 -g1,25037:20319930,43452537 -k1,25037:32583029,43452537:10808200 -g1,25037:32583029,43452537 -) -(1,25037:7613813,44317617:24969216,505283,126483 -(1,25037:7613813,44317617:-983040,0,0 -g1,25037:6630773,44317617 -g1,25037:5320053,44317617 -g1,25037:4992373,44317617 -(1,25037:4992373,44317617:1310720,0,0 -k1,25037:6303093,44317617:1310720 -) -g1,25037:6630773,44317617 -) -k1,25037:8019929,44317617:236378 -k1,25037:8874275,44317617:236341 -k1,25037:11292459,44317617:236490 -k1,25037:14338254,44317617:236267 -k1,25037:18070867,44317617:236267 -k1,25037:19670284,44317617:236268 -k1,25037:20356128,44317617:236267 -k1,25037:21802845,44317617:236267 -k1,25037:23723610,44317617:236490 -k1,25037:25156564,44317617:236267 -k1,25037:25837820,44317617:236267 -k1,25037:28117723,44317617:236490 -k1,25037:31391584,44317617:236267 -k1,25037:32583029,44317617:0 -) -(1,25037:7613813,45182697:24969216,505283,126483 -g1,25037:10949595,45182697 -g1,25037:11743236,45182697 -g1,25037:13311512,45182697 -g1,25037:15102610,45182697 -g1,25037:19286428,45182697 -g1,25037:20658096,45182697 -g1,25037:21666695,45182697 -g1,25037:22881077,45182697 -g1,25037:24050894,45182697 -g1,25037:25220711,45182697 -k1,25037:32583029,45182697:5907419 -g1,25037:32583029,45182697 -) -] -(1,25037:32583029,45706769:0,0,0 -g1,25037:32583029,45706769 -) -) -] -(1,25037:6630773,47279633:25952256,0,0 -h1,25037:6630773,47279633:25952256,0,0 -) -] -(1,25037:4262630,4025873:0,0,0 -[1,25037:-473656,4025873:0,0,0 -(1,25037:-473656,-710413:0,0,0 -(1,25037:-473656,-710413:0,0,0 -g1,25037:-473656,-710413 -) -g1,25037:-473656,-710413 +[1,25035:3078558,4812305:0,0,0 +(1,25035:3078558,49800853:0,16384,2228224 +g1,25035:29030814,49800853 +g1,25035:36135244,49800853 +(1,25035:36135244,49800853:1720320,16384,2228224 +(1,25035:36135244,52029077:16384,1703936,0 +[1,25035:36135244,52029077:25952256,1703936,0 +(1,25035:36135244,51504789:25952256,1179648,0 +(1,25035:36135244,51504789:16384,1179648,0 +r1,25035:36151628,51504789:16384,1179648,0 +) +k1,25035:62087500,51504789:25935872 +g1,25035:62087500,51504789 +) +] +) +g1,25035:36675916,49800853 +(1,25035:36675916,49800853:1179648,16384,0 +r1,25035:37855564,49800853:1179648,16384,0 +) +) +k1,25035:3078556,49800853:-34777008 +) +] +g1,25035:6630773,4812305 +g1,25035:6630773,4812305 +g1,25035:10831630,4812305 +k1,25035:31387652,4812305:20556022 +) +) +] +[1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:6630773,45706769:0,0,0 +g1,25035:6630773,45706769 +) +[1,25035:6630773,45706769:25952256,40108032,0 +(1,25035:7613813,6254097:24969216,513147,134348 +(1,25035:7613813,6254097:-983040,0,0 +g1,25035:6630773,6254097 +g1,25035:5320053,6254097 +g1,25035:4992373,6254097 +(1,25035:4992373,6254097:1310720,0,0 +k1,25035:6303093,6254097:1310720 +) +g1,25035:6630773,6254097 +) +k1,25035:9235328,6254097:169237 +k1,25035:10070381,6254097:169207 +k1,25035:12421402,6254097:169327 +k1,25035:13778061,6254097:169147 +k1,25035:14977433,6254097:169146 +k1,25035:15762618,6254097:169147 +k1,25035:16381342,6254097:169147 +k1,25035:21114566,6254097:169297 +k1,25035:21773267,6254097:169147 +k1,25035:23464814,6254097:169146 +k1,25035:24249999,6254097:169147 +k1,25035:27449531,6254097:169147 +k1,25035:30400681,6254097:169147 +k1,25035:32583029,6254097:0 +) +(1,25035:7613813,7119177:24969216,505283,126483 +g1,25035:8699744,7119177 +g1,25035:10903719,7119177 +g1,25035:12948442,7119177 +g1,25035:13742083,7119177 +g1,25035:15310359,7119177 +g1,25035:17101457,7119177 +g1,25035:21285275,7119177 +g1,25035:22656943,7119177 +g1,25035:23665542,7119177 +g1,25035:24879924,7119177 +g1,25035:26049741,7119177 +g1,25035:27618017,7119177 +g1,25035:29186293,7119177 +k1,25035:32583029,7119177:1941837 +g1,25035:32583029,7119177 +) +(1,25035:7613813,7984257:24969216,513147,126483 +(1,25035:7613813,7984257:-983040,0,0 +g1,25035:6630773,7984257 +g1,25035:5320053,7984257 +g1,25035:4992373,7984257 +(1,25035:4992373,7984257:1310720,0,0 +k1,25035:6303093,7984257:1310720 +) +g1,25035:6630773,7984257 +) +k1,25035:10391497,7984257:436083 +k1,25035:11366052,7984257:435849 +k1,25035:12992873,7984257:435376 +k1,25035:13878954,7984257:435849 +k1,25035:16077904,7984257:435376 +k1,25035:18696390,7984257:436792 +k1,25035:21949815,7984257:435377 +k1,25035:23309250,7984257:435377 +k1,25035:26314948,7984257:435376 +k1,25035:27960775,7984257:435377 +k1,25035:32583029,7984257:0 +) +(1,25035:7613813,8849337:24969216,505283,126483 +k1,25035:9433948,8849337:285937 +k1,25035:11083033,8849337:285936 +k1,25035:14308915,8849337:285937 +k1,25035:15197783,8849337:285937 +k1,25035:16107486,8849337:286456 +k1,25035:17876503,8849337:285937 +k1,25035:20203664,8849337:286370 +k1,25035:22529080,8849337:285936 +k1,25035:23267215,8849337:285937 +k1,25035:25836426,8849337:285937 +k1,25035:28294745,8849337:286456 +k1,25035:29776059,8849337:285937 +k1,25035:31077668,8849337:286456 +k1,25035:32583029,8849337:0 +) +(1,25035:7613813,9714417:24969216,505283,126483 +g1,25035:12993008,9714417 +g1,25035:14364676,9714417 +g1,25035:15373275,9714417 +g1,25035:16166916,9714417 +k1,25035:32583029,9714417:14961214 +g1,25035:32583029,9714417 +) +(1,25035:7613813,10579497:24969216,505283,126483 +(1,25035:7613813,10579497:-983040,0,0 +g1,25035:6630773,10579497 +g1,25035:5320053,10579497 +g1,25035:4992373,10579497 +(1,25035:4992373,10579497:1310720,0,0 +k1,25035:6303093,10579497:1310720 +) +g1,25035:6630773,10579497 +) +k1,25035:9359808,10579497:242599 +k1,25035:10151557,10579497:242557 +k1,25035:12575980,10579497:242729 +k1,25035:13268027,10579497:242470 +k1,25035:16495265,10579497:242729 +k1,25035:17845293,10579497:242470 +k1,25035:19029774,10579497:242729 +k1,25035:22158010,10579497:242686 +k1,25035:25438074,10579497:242470 +k1,25035:26871989,10579497:242470 +k1,25035:30251271,10579497:242729 +k1,25035:31689118,10579497:242470 +k1,25035:32583029,10579497:0 +) +(1,25035:7613813,11444577:24969216,505283,126483 +g1,25035:9404911,11444577 +g1,25035:13588729,11444577 +g1,25035:14960397,11444577 +g1,25035:15968996,11444577 +g1,25035:17183378,11444577 +g1,25035:18751654,11444577 +g1,25035:20319930,11444577 +g1,25035:21888206,11444577 +k1,25035:32583029,11444577:9239924 +g1,25035:32583029,11444577 +) +(1,25035:7613813,12309657:24969216,530548,134348 +(1,25035:7613813,12309657:-983040,0,0 +g1,25035:6630773,12309657 +g1,25035:5320053,12309657 +g1,25035:4992373,12309657 +(1,25035:4992373,12309657:1310720,0,0 +k1,25035:6303093,12309657:1310720 +) +g1,25035:6630773,12309657 +) +k1,25035:9841142,12309657:285497 +k1,25035:10755700,12309657:285412 +k1,25035:12232385,12309657:285240 +k1,25035:13090582,12309657:285412 +k1,25035:16783039,12309657:285240 +k1,25035:19250488,12309657:285755 +k1,25035:22367539,12309657:285240 +k1,25035:23638440,12309657:285240 +k1,25035:25583450,12309657:285240 +k1,25035:27534474,12309657:285755 +k1,25035:30267484,12309657:285240 +k1,25035:31487923,12309657:285240 +k1,25035:32583029,12309657:0 +) +(1,25035:7613813,13174737:24969216,505283,126483 +g1,25035:9008419,13174737 +g1,25035:10222801,13174737 +g1,25035:12013899,13174737 +g1,25035:16197717,13174737 +g1,25035:17569385,13174737 +g1,25035:18577984,13174737 +g1,25035:19371625,13174737 +k1,25035:32583029,13174737:12154964 +g1,25035:32583029,13174737 +) +(1,25035:7613813,14039817:24969216,513147,134348 +(1,25035:7613813,14039817:-983040,0,0 +g1,25035:6630773,14039817 +g1,25035:5320053,14039817 +g1,25035:4992373,14039817 +(1,25035:4992373,14039817:1310720,0,0 +k1,25035:6303093,14039817:1310720 +) +g1,25035:6630773,14039817 +) +k1,25035:8509411,14039817:193052 +k1,25035:9321116,14039817:193045 +k1,25035:10191148,14039817:193045 +k1,25035:12565912,14039817:193070 +k1,25035:13208522,14039817:193033 +k1,25035:17791812,14039817:193033 +k1,25035:18908903,14039817:193033 +k1,25035:20636134,14039817:193033 +k1,25035:23282872,14039817:193070 +k1,25035:26368701,14039817:193070 +k1,25035:27757111,14039817:193033 +k1,25035:28965334,14039817:193070 +k1,25035:30528755,14039817:193064 +$1,25035:30528755,14039817 +k1,25035:32395995,14039817:0 +k1,25035:32583029,14039817:0 +) +(1,25035:7613813,14904897:24969216,505283,126960 +g1,25035:7950102,14904897 +g1,25035:8323550,14904897 +g1,25035:10937686,14904897 +g1,25035:11311134,14904897 +g1,25035:12431478,14904897 +g1,25035:12804926,14904897 +$1,25035:17286302,14904897 +g1,25035:17485531,14904897 +g1,25035:20006701,14904897 +g1,25035:21015300,14904897 +g1,25035:25280383,14904897 +g1,25035:26652051,14904897 +g1,25035:27660650,14904897 +g1,25035:28454291,14904897 +k1,25035:32583029,14904897:2673839 +g1,25035:32583029,14904897 +) +(1,25035:7613813,15769977:24969216,513147,126483 +(1,25035:7613813,15769977:-983040,0,0 +g1,25035:6630773,15769977 +g1,25035:5320053,15769977 +g1,25035:4992373,15769977 +(1,25035:4992373,15769977:1310720,0,0 +k1,25035:6303093,15769977:1310720 +) +g1,25035:6630773,15769977 +) +k1,25035:9590978,15769977:148710 +k1,25035:10189869,15769977:148659 +k1,25035:10967675,15769977:148660 +k1,25035:12307678,15769977:148558 +k1,25035:13133324,15769977:148659 +k1,25035:14019264,15769977:148660 +k1,25035:15857340,15769977:148558 +k1,25035:18187895,15769977:148861 +k1,25035:22392476,15769977:148558 +k1,25035:24690615,15769977:148558 +k1,25035:25442104,15769977:148558 +k1,25035:25950455,15769977:148558 +k1,25035:27309463,15769977:148558 +k1,25035:29467002,15769977:148861 +k1,25035:30976087,15769977:148558 +k1,25035:32583029,15769977:0 +) +(1,25035:7613813,16635057:24969216,505283,134348 +g1,25035:10503295,16635057 +g1,25035:11874963,16635057 +g1,25035:12883562,16635057 +g1,25035:14097944,16635057 +g1,25035:15666220,16635057 +g1,25035:17234496,16635057 +k1,25035:32583029,16635057:13893634 +g1,25035:32583029,16635057 +) +(1,25035:7613813,17500137:24969216,505283,134348 +(1,25035:7613813,17500137:-983040,0,0 +g1,25035:6630773,17500137 +g1,25035:5320053,17500137 +g1,25035:4992373,17500137 +(1,25035:4992373,17500137:1310720,0,0 +k1,25035:6303093,17500137:1310720 +) +g1,25035:6630773,17500137 +) +k1,25035:8372728,17500137:147464 +k1,25035:9331529,17500137:147465 +k1,25035:10108087,17500137:147412 +k1,25035:13295112,17500137:147465 +k1,25035:13971400,17500137:147412 +k1,25035:18351835,17500137:147465 +k1,25035:19165093,17500137:147412 +k1,25035:20986348,17500137:147465 +k1,25035:21871040,17500137:147412 +k1,25035:24363883,17500137:147309 +k1,25035:25702637,17500137:147309 +k1,25035:26378926,17500137:147413 +k1,25035:28993665,17500137:147308 +k1,25035:30729671,17500137:147413 +k1,25035:32583029,17500137:0 +) +(1,25035:7613813,18365217:24969216,513147,134348 +k1,25035:7735697,18365217:-13 +k1,25035:7735710,18365217:13 +k1,25035:8365773,18365217:142475 +k1,25035:12247077,18365217:142475 +k1,25035:13048845,18365217:142476 +k1,25035:15683654,18365217:142475 +k1,25035:18247029,18365217:142475 +k1,25035:19748065,18365217:142475 +k1,25035:22109589,18365217:142475 +k1,25035:23199716,18365217:142476 +k1,25035:26793972,18365217:142475 +k1,25035:29799060,18365217:142475 +k1,25035:32583029,18365217:0 +) +(1,25035:7613813,19230297:24969216,505283,134348 +k1,25035:12569820,19230297:297708 +k1,25035:13668936,19230297:297611 +k1,25035:17461093,19230297:297122 +k1,25035:18361146,19230297:297122 +k1,25035:20938266,19230297:297122 +k1,25035:21711834,19230297:297121 +k1,25035:25787106,19230297:297122 +k1,25035:27627238,19230297:297414 +k1,25035:28939709,19230297:297318 +k1,25035:31332603,19230297:297708 +k1,25035:32583029,19230297:0 +) +(1,25035:7613813,20095377:24969216,505283,126483 +g1,25035:8342129,20095377 +g1,25035:8715577,20095377 +g1,25035:10209369,20095377 +g1,25035:10582817,20095377 +g1,25035:12076609,20095377 +g1,25035:12450057,20095377 +g1,25035:13943849,20095377 +g1,25035:14317297,20095377 +$1,25035:16931433,20095377 +g1,25035:17130662,20095377 +g1,25035:18502330,20095377 +g1,25035:19510929,20095377 +g1,25035:20304570,20095377 +k1,25035:32583029,20095377:10823560 +g1,25035:32583029,20095377 +) +(1,25035:7613813,20960457:24969216,505283,134348 +(1,25035:7613813,20960457:-983040,0,0 +g1,25035:6630773,20960457 +g1,25035:5320053,20960457 +g1,25035:4992373,20960457 +(1,25035:4992373,20960457:1310720,0,0 +k1,25035:6303093,20960457:1310720 +) +g1,25035:6630773,20960457 +) +k1,25035:9506865,20960457:234336 +k1,25035:10191399,20960457:234302 +k1,25035:12607534,20960457:234441 +k1,25035:16138882,20960457:234232 +k1,25035:17907312,20960457:234232 +k1,25035:20764295,20960457:234232 +k1,25035:22361675,20960457:234231 +k1,25035:23045484,20960457:234232 +k1,25035:24490166,20960457:234232 +k1,25035:27650789,20960457:234441 +k1,25035:32583029,20960457:0 +) +(1,25035:7613813,21825537:24969216,505283,126483 +g1,25035:9173569,21825537 +g1,25035:11066248,21825537 +g1,25035:11859889,21825537 +g1,25035:13428165,21825537 +g1,25035:15219263,21825537 +g1,25035:20598458,21825537 +g1,25035:21970126,21825537 +g1,25035:22978725,21825537 +g1,25035:23772366,21825537 +k1,25035:32583029,21825537:7355764 +g1,25035:32583029,21825537 +) +(1,25035:7613813,22690617:24969216,505283,134348 +(1,25035:7613813,22690617:-983040,0,0 +g1,25035:6630773,22690617 +g1,25035:5320053,22690617 +g1,25035:4992373,22690617 +(1,25035:4992373,22690617:1310720,0,0 +k1,25035:6303093,22690617:1310720 +) +g1,25035:6630773,22690617 +) +k1,25035:9070156,22690617:229509 +k1,25035:9976621,22690617:229478 +k1,25035:12387915,22690617:229600 +k1,25035:14877821,22690617:229569 +k1,25035:18930610,22690617:229419 +k1,25035:20694226,22690617:229418 +k1,25035:24973769,22690617:229418 +k1,25035:26566337,22690617:229419 +k1,25035:27419183,22690617:229599 +k1,25035:28634263,22690617:229419 +k1,25035:29805614,22690617:229599 +k1,25035:32583029,22690617:0 +) +(1,25035:7613813,23555697:24969216,505283,126483 +g1,25035:8407454,23555697 +g1,25035:9975730,23555697 +g1,25035:11766828,23555697 +g1,25035:15950646,23555697 +g1,25035:17322314,23555697 +g1,25035:18330913,23555697 +g1,25035:19124554,23555697 +k1,25035:32583029,23555697:12003576 +g1,25035:32583029,23555697 +) +(1,25035:7613813,24420777:24969216,513147,134348 +(1,25035:7613813,24420777:-983040,0,0 +g1,25035:6630773,24420777 +g1,25035:5320053,24420777 +g1,25035:4992373,24420777 +(1,25035:4992373,24420777:1310720,0,0 +k1,25035:6303093,24420777:1310720 +) +g1,25035:6630773,24420777 +) +k1,25035:8894853,24420777:242294 +k1,25035:9816056,24420777:242250 +k1,25035:10591115,24420777:242251 +k1,25035:13015232,24420777:242423 +k1,25035:13188889,24420777:-13 +k1,25035:13188902,24420777:13 +k1,25035:17888171,24420777:242165 +k1,25035:18789628,24420777:242165 +k1,25035:21805277,24420777:242165 +k1,25035:25191859,24420777:242165 +k1,25035:27502340,24420777:242165 +k1,25035:28935950,24420777:242165 +k1,25035:32583029,24420777:0 +) +(1,25035:7613813,25285857:24969216,513147,126483 +g1,25035:8429080,25285857 +g1,25035:11182902,25285857 +g1,25035:12041423,25285857 +g1,25035:15970306,25285857 +g1,25035:16971040,25285857 +g1,25035:20442482,25285857 +g1,25035:21612299,25285857 +g1,25035:22826681,25285857 +g1,25035:25744344,25285857 +g1,25035:27116012,25285857 +g1,25035:28124611,25285857 +g1,25035:28918252,25285857 +k1,25035:32583029,25285857:2209878 +g1,25035:32583029,25285857 +) +(1,25035:7613813,26150937:24969216,513147,126483 +(1,25035:7613813,26150937:-983040,0,0 +g1,25035:6630773,26150937 +g1,25035:5320053,26150937 +g1,25035:4992373,26150937 +(1,25035:4992373,26150937:1310720,0,0 +k1,25035:6303093,26150937:1310720 +) +g1,25035:6630773,26150937 +) +k1,25035:8782201,26150937:259404 +k1,25035:9586149,26150937:259344 +k1,25035:10464153,26150937:259344 +k1,25035:12905431,26150937:259584 +k1,25035:14352167,26150937:259224 +k1,25035:16519800,26150937:259225 +k1,25035:19113416,26150937:259224 +k1,25035:19988678,26150937:259224 +k1,25035:24169576,26150937:259224 +k1,25035:28373116,26150937:259584 +k1,25035:31605888,26150937:259404 +k1,25035:32583029,26150937:0 +) +(1,25035:7613813,27016017:24969216,505283,126483 +g1,25035:10637644,27016017 +g1,25035:12682367,27016017 +g1,25035:14076973,27016017 +g1,25035:15291355,27016017 +g1,25035:17082453,27016017 +g1,25035:21937360,27016017 +g1,25035:23309028,27016017 +g1,25035:24317627,27016017 +g1,25035:25111268,27016017 +k1,25035:32583029,27016017:6016862 +g1,25035:32583029,27016017 +) +(1,25035:7613813,27881097:24969216,505283,126483 +(1,25035:7613813,27881097:-983040,0,0 +g1,25035:6630773,27881097 +g1,25035:5320053,27881097 +g1,25035:4992373,27881097 +(1,25035:4992373,27881097:1310720,0,0 +k1,25035:6303093,27881097:1310720 +) +g1,25035:6630773,27881097 +) +k1,25035:9917805,27881097:254026 +k1,25035:10951654,27881097:253971 +k1,25035:11871472,27881097:253972 +k1,25035:13316779,27881097:253862 +k1,25035:14143535,27881097:253971 +k1,25035:15074494,27881097:253972 +k1,25035:17308854,27881097:253862 +k1,25035:19744738,27881097:254190 +k1,25035:22391975,27881097:253862 +k1,25035:25049042,27881097:253862 +k1,25035:28033790,27881097:253863 +k1,25035:29650801,27881097:253862 +k1,25035:30438454,27881097:254190 +k1,25035:31762519,27881097:253862 +k1,25035:32583029,27881097:0 +) +(1,25035:7613813,28746177:24969216,505283,134348 +g1,25035:9173569,28746177 +g1,25035:11066248,28746177 +g1,25035:14129400,28746177 +g1,25035:15920498,28746177 +g1,25035:20743292,28746177 +g1,25035:22114960,28746177 +g1,25035:23123559,28746177 +g1,25035:24337941,28746177 +g1,25035:25906217,28746177 +k1,25035:32583029,28746177:5221913 +g1,25035:32583029,28746177 +) +(1,25035:7613813,29611257:24969216,513147,126483 +(1,25035:7613813,29611257:-983040,0,0 +g1,25035:6630773,29611257 +g1,25035:5320053,29611257 +g1,25035:4992373,29611257 +(1,25035:4992373,29611257:1310720,0,0 +k1,25035:6303093,29611257:1310720 +) +g1,25035:6630773,29611257 +) +k1,25035:9868490,29611257:139830 +k1,25035:10687214,29611257:139771 +k1,25035:13008915,29611257:140007 +k1,25035:13182572,29611257:-13 +k1,25035:13182585,29611257:13 +k1,25035:13809824,29611257:139651 +k1,25035:16435257,29611257:139652 +k1,25035:19583011,29611257:139651 +k1,25035:20381954,29611257:139651 +k1,25035:23693905,29611257:140008 +k1,25035:24635358,29611257:139948 +k1,25035:27140860,29611257:139652 +k1,25035:27896549,29611257:139651 +k1,25035:32583029,29611257:0 +) +(1,25035:7613813,30476337:24969216,505283,126960 +k1,25035:9016689,30476337:192426 +k1,25035:12319455,30476337:192427 +k1,25035:15265704,30476337:192426 +k1,25035:17000869,30476337:192447 +k1,25035:18208462,30476337:192440 +k1,25035:20097656,30476337:192467 +k1,25035:21627050,30476337:192460 +$1,25035:21627050,30476337 +k1,25035:22373946,30476337:0 +k1,25035:22747394,30476337:0 +k1,25035:24241186,30476337:0 +k1,25035:24614634,30476337:0 +k1,25035:26108426,30476337:0 +k1,25035:26481874,30476337:0 +k1,25035:27975666,30476337:0 +k1,25035:28349114,30476337:0 +$1,25035:30216354,30476337 +k1,25035:30408780,30476337:192426 +k1,25035:31773659,30476337:192440 +k1,25035:32583029,30476337:0 +) +(1,25035:7613813,31341417:24969216,505283,126483 +g1,25035:8407454,31341417 +k1,25035:32583029,31341417:22720676 +g1,25035:32583029,31341417 +) +(1,25035:7613813,32206497:24969216,505283,126483 +(1,25035:7613813,32206497:-983040,0,0 +g1,25035:6630773,32206497 +g1,25035:5320053,32206497 +g1,25035:4992373,32206497 +(1,25035:4992373,32206497:1310720,0,0 +k1,25035:6303093,32206497:1310720 +) +g1,25035:6630773,32206497 +) +(1,25035:6630773,32206497:983040,211026,0 +k1,25035:7613813,32206497:327680 +) +k1,25035:9951367,32206497:155860 +k1,25035:13229757,32206497:155599 +k1,25035:14008863,32206497:155859 +k1,25035:15398505,32206497:155599 +k1,25035:16496117,32206497:155860 +k1,25035:19689310,32206497:155599 +k1,25035:21036353,32206497:155598 +k1,25035:24328766,32206497:155860 +k1,25035:25679742,32206497:155599 +k1,25035:26850755,32206497:155860 +k1,25035:28598440,32206497:155816 +k1,25035:32583029,32206497:0 +) +(1,25035:7613813,33071577:24969216,505283,126483 +g1,25035:8964509,33071577 +g1,25035:9973108,33071577 +g1,25035:11187490,33071577 +g1,25035:12755766,33071577 +k1,25035:32583029,33071577:18372364 +g1,25035:32583029,33071577 +) +(1,25035:7613813,33936657:24969216,505283,134348 +(1,25035:7613813,33936657:-983040,0,0 +g1,25035:6630773,33936657 +g1,25035:5320053,33936657 +g1,25035:4992373,33936657 +(1,25035:4992373,33936657:1310720,0,0 +k1,25035:6303093,33936657:1310720 +) +g1,25035:6630773,33936657 +) +k1,25035:9900601,33936657:171941 +k1,25035:10751468,33936657:171914 +k1,25035:12114772,33936657:171859 +k1,25035:12736917,33936657:171913 +k1,25035:14728055,33936657:171859 +k1,25035:17081772,33936657:172023 +k1,25035:17703208,33936657:171859 +k1,25035:20933795,33936657:172022 +k1,25035:24187239,33936657:171941 +k1,25035:25827842,33936657:171941 +k1,25035:29381441,33936657:171941 +k1,25035:30763750,33936657:171859 +k1,25035:32583029,33936657:0 +) +(1,25035:7613813,34801737:24969216,505283,126483 +g1,25035:9313816,34801737 +g1,25035:11259579,34801737 +g1,25035:13906578,34801737 +g1,25035:16168225,34801737 +g1,25035:20669893,34801737 +g1,25035:22460991,34801737 +g1,25035:27840186,34801737 +g1,25035:29211854,34801737 +g1,25035:30220453,34801737 +g1,25035:31014094,34801737 +k1,25035:32583029,34801737:114036 +g1,25035:32583029,34801737 +) +(1,25035:7613813,35666817:24969216,513147,126483 +(1,25035:7613813,35666817:-983040,0,0 +g1,25035:6630773,35666817 +g1,25035:5320053,35666817 +g1,25035:4992373,35666817 +(1,25035:4992373,35666817:1310720,0,0 +k1,25035:6303093,35666817:1310720 +) +g1,25035:6630773,35666817 +) +k1,25035:10108211,35666817:379551 +k1,25035:11340385,35666817:379551 +k1,25035:12457038,35666817:379373 +k1,25035:18438069,35666817:379013 +k1,25035:20008528,35666817:379014 +k1,25035:21041294,35666817:379372 +k1,25035:25005783,35666817:379014 +k1,25035:27567568,35666817:380091 +k1,25035:28396158,35666817:379013 +k1,25035:29699230,35666817:379014 +k1,25035:31612441,35666817:379013 +k1,25035:32583029,35666817:0 +) +(1,25035:7613813,36531897:24969216,513147,126483 +k1,25035:9418604,36531897:219475 +k1,25035:11949473,36531897:219414 +k1,25035:13730611,36531897:219415 +k1,25035:17509286,36531897:219415 +k1,25035:20690927,36531897:219414 +k1,25035:22120731,36531897:219354 +k1,25035:24201308,36531897:219355 +k1,25035:26128651,36531897:219475 +k1,25035:28795775,36531897:219354 +k1,25035:31077668,36531897:219475 +k1,25035:32583029,36531897:0 +) +(1,25035:7613813,37396977:24969216,505283,126483 +g1,25035:12993008,37396977 +g1,25035:14364676,37396977 +g1,25035:15373275,37396977 +g1,25035:16587657,37396977 +g1,25035:18155933,37396977 +k1,25035:32583029,37396977:12972197 +g1,25035:32583029,37396977 +) +(1,25035:7613813,38262057:24969216,513147,134348 +(1,25035:7613813,38262057:-983040,0,0 +g1,25035:6630773,38262057 +g1,25035:5320053,38262057 +g1,25035:4992373,38262057 +(1,25035:4992373,38262057:1310720,0,0 +k1,25035:6303093,38262057:1310720 +) +g1,25035:6630773,38262057 +) +k1,25035:10018392,38262057:289732 +k1,25035:10986987,38262057:289642 +k1,25035:12467894,38262057:289462 +k1,25035:13386682,38262057:289642 +k1,25035:15829657,38262057:289462 +k1,25035:18301354,38262057:290003 +k1,25035:21139962,38262057:289913 +k1,25035:23770369,38262057:289461 +k1,25035:26870670,38262057:289462 +k1,25035:28084190,38262057:289462 +k1,25035:29907850,38262057:289462 +k1,25035:32583029,38262057:0 +) +(1,25035:7613813,39127137:24969216,505283,134348 +k1,25035:9020805,39127137:172949 +k1,25035:10135662,39127137:173105 +k1,25035:13172691,39127137:173106 +k1,25035:14447299,39127137:172948 +k1,25035:15188445,39127137:172949 +k1,25035:16730598,39127137:173106 +k1,25035:18495546,39127137:173079 +k1,25035:24700429,39127137:172949 +k1,25035:26045869,39127137:173001 +k1,25035:27028187,39127137:172948 +k1,25035:28216341,39127137:173001 +k1,25035:29758416,39127137:173028 +k1,25035:31300490,39127137:173027 +k1,25035:32583029,39127137:0 +) +(1,25035:7613813,39992217:24969216,505283,95026 +k1,25035:32583028,39992217:23514316 +g1,25035:32583028,39992217 +) +(1,25035:7613813,40857297:24969216,513147,134348 +(1,25035:7613813,40857297:-983040,0,0 +g1,25035:6630773,40857297 +g1,25035:5320053,40857297 +g1,25035:4992373,40857297 +(1,25035:4992373,40857297:1310720,0,0 +k1,25035:6303093,40857297:1310720 +) +g1,25035:6630773,40857297 +) +k1,25035:8906488,40857297:334539 +k1,25035:9906739,40857297:334405 +k1,25035:12423377,40857297:334944 +k1,25035:16248616,40857297:334136 +k1,25035:17150949,40857297:334136 +k1,25035:19019282,40857297:334135 +k1,25035:22567304,40857297:334136 +k1,25035:23469636,40857297:334135 +k1,25035:27040747,40857297:334944 +k1,25035:30818145,40857297:334136 +k1,25035:32583029,40857297:0 +) +(1,25035:7613813,41722377:24969216,505283,126483 +g1,25035:12036182,41722377 +g1,25035:12829823,41722377 +k1,25035:32583028,41722377:18505400 +g1,25035:32583028,41722377 +) +(1,25035:7613813,42587457:24969216,505283,126483 +(1,25035:7613813,42587457:-983040,0,0 +g1,25035:6630773,42587457 +g1,25035:5320053,42587457 +g1,25035:4992373,42587457 +(1,25035:4992373,42587457:1310720,0,0 +k1,25035:6303093,42587457:1310720 +) +g1,25035:6630773,42587457 +) +k1,25035:8842510,42587457:222064 +k1,25035:9593428,42587457:222042 +k1,25035:10481315,42587457:222041 +k1,25035:12885141,42587457:222132 +k1,25035:16869559,42587457:221996 +k1,25035:19694645,42587457:221996 +k1,25035:22240029,42587457:222133 +k1,25035:25499619,42587457:221996 +k1,25035:26913060,42587457:221996 +k1,25035:30271745,42587457:222132 +k1,25035:31689118,42587457:221996 +k1,25035:32583029,42587457:0 +) +(1,25035:7613813,43452537:24969216,505283,126483 +g1,25035:9404911,43452537 +g1,25035:13588729,43452537 +g1,25035:14960397,43452537 +g1,25035:15968996,43452537 +g1,25035:17183378,43452537 +g1,25035:18751654,43452537 +g1,25035:20319930,43452537 +k1,25035:32583029,43452537:10808200 +g1,25035:32583029,43452537 +) +(1,25035:7613813,44317617:24969216,505283,126483 +(1,25035:7613813,44317617:-983040,0,0 +g1,25035:6630773,44317617 +g1,25035:5320053,44317617 +g1,25035:4992373,44317617 +(1,25035:4992373,44317617:1310720,0,0 +k1,25035:6303093,44317617:1310720 +) +g1,25035:6630773,44317617 +) +k1,25035:8019929,44317617:236378 +k1,25035:8874275,44317617:236341 +k1,25035:11292459,44317617:236490 +k1,25035:14338254,44317617:236267 +k1,25035:18070867,44317617:236267 +k1,25035:19670284,44317617:236268 +k1,25035:20356128,44317617:236267 +k1,25035:21802845,44317617:236267 +k1,25035:23723610,44317617:236490 +k1,25035:25156564,44317617:236267 +k1,25035:25837820,44317617:236267 +k1,25035:28117723,44317617:236490 +k1,25035:31391584,44317617:236267 +k1,25035:32583029,44317617:0 +) +(1,25035:7613813,45182697:24969216,505283,126483 +g1,25035:10949595,45182697 +g1,25035:11743236,45182697 +g1,25035:13311512,45182697 +g1,25035:15102610,45182697 +g1,25035:19286428,45182697 +g1,25035:20658096,45182697 +g1,25035:21666695,45182697 +g1,25035:22881077,45182697 +g1,25035:24050894,45182697 +g1,25035:25220711,45182697 +k1,25035:32583029,45182697:5907419 +g1,25035:32583029,45182697 +) +] +(1,25035:32583029,45706769:0,0,0 +g1,25035:32583029,45706769 +) +) +] +(1,25035:6630773,47279633:25952256,0,0 +h1,25035:6630773,47279633:25952256,0,0 +) +] +(1,25035:4262630,4025873:0,0,0 +[1,25035:-473656,4025873:0,0,0 +(1,25035:-473656,-710413:0,0,0 +(1,25035:-473656,-710413:0,0,0 +g1,25035:-473656,-710413 +) +g1,25035:-473656,-710413 ) ] ) ] !26930 -}432 +}433 !12 -{433 -[1,25038:4262630,47279633:28320399,43253760,0 -(1,25038:4262630,4025873:0,0,0 -[1,25038:-473656,4025873:0,0,0 -(1,25038:-473656,-710413:0,0,0 -(1,25038:-473656,-644877:0,0,0 -k1,25038:-473656,-644877:-65536 -) -(1,25038:-473656,4736287:0,0,0 -k1,25038:-473656,4736287:5209943 -) -g1,25038:-473656,-710413 -) -] -) -[1,25038:6630773,47279633:25952256,43253760,0 -[1,25038:6630773,4812305:25952256,786432,0 -(1,25038:6630773,4812305:25952256,505283,134348 -(1,25038:6630773,4812305:25952256,505283,134348 -g1,25038:3078558,4812305 -[1,25038:3078558,4812305:0,0,0 -(1,25038:3078558,2439708:0,1703936,0 -k1,25038:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,25038:2537886,2439708:1179648,16384,0 +{434 +[1,25036:4262630,47279633:28320399,43253760,0 +(1,25036:4262630,4025873:0,0,0 +[1,25036:-473656,4025873:0,0,0 +(1,25036:-473656,-710413:0,0,0 +(1,25036:-473656,-644877:0,0,0 +k1,25036:-473656,-644877:-65536 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,25038:3078558,1915420:16384,1179648,0 +(1,25036:-473656,4736287:0,0,0 +k1,25036:-473656,4736287:5209943 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +g1,25036:-473656,-710413 ) ] ) +[1,25036:6630773,47279633:25952256,43253760,0 +[1,25036:6630773,4812305:25952256,786432,0 +(1,25036:6630773,4812305:25952256,505283,134348 +(1,25036:6630773,4812305:25952256,505283,134348 +g1,25036:3078558,4812305 +[1,25036:3078558,4812305:0,0,0 +(1,25036:3078558,2439708:0,1703936,0 +k1,25036:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,25036:2537886,2439708:1179648,16384,0 ) +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,25036:3078558,1915420:16384,1179648,0 ) -] -[1,25038:3078558,4812305:0,0,0 -(1,25038:3078558,2439708:0,1703936,0 -g1,25038:29030814,2439708 -g1,25038:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,25038:36151628,1915420:16384,1179648,0 -) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,25038:37855564,2439708:1179648,16384,0 ) ) -k1,25038:3078556,2439708:-34777008 -) ] -[1,25038:3078558,4812305:0,0,0 -(1,25038:3078558,49800853:0,16384,2228224 -k1,25038:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,25038:2537886,49800853:1179648,16384,0 -) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,25038:3078558,51504789:16384,1179648,0 +[1,25036:3078558,4812305:0,0,0 +(1,25036:3078558,2439708:0,1703936,0 +g1,25036:29030814,2439708 +g1,25036:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,25036:36151628,1915420:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,25036:37855564,2439708:1179648,16384,0 ) ) -] -[1,25038:3078558,4812305:0,0,0 -(1,25038:3078558,49800853:0,16384,2228224 -g1,25038:29030814,49800853 -g1,25038:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,25038:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,25036:3078556,2439708:-34777008 ) ] +[1,25036:3078558,4812305:0,0,0 +(1,25036:3078558,49800853:0,16384,2228224 +k1,25036:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,25036:2537886,49800853:1179648,16384,0 ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,25038:37855564,49800853:1179648,16384,0 -) +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,25036:3078558,51504789:16384,1179648,0 ) -k1,25038:3078556,49800853:-34777008 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] -g1,25038:6630773,4812305 -k1,25038:28581402,4812305:20755252 -) ) -] -[1,25038:6630773,45706769:25952256,40108032,0 -(1,25038:6630773,45706769:25952256,40108032,0 -(1,25038:6630773,45706769:0,0,0 -g1,25038:6630773,45706769 ) -[1,25038:6630773,45706769:25952256,40108032,0 -(1,25037:7613813,6254097:24969216,505283,134348 -(1,25037:7613813,6254097:-983040,0,0 -g1,25037:6630773,6254097 -g1,25037:5320053,6254097 -g1,25037:4992373,6254097 -(1,25037:4992373,6254097:1310720,0,0 -k1,25037:6303093,6254097:1310720 -) -g1,25037:6630773,6254097 -) -k1,25037:7996445,6254097:212894 -k1,25037:8827330,6254097:212880 -k1,25037:11221958,6254097:212934 -k1,25037:14806706,6254097:212921 -k1,25037:18240654,6254097:212853 -k1,25037:20240018,6254097:212853 -k1,25037:21663321,6254097:212853 -k1,25037:24892796,6254097:212853 -k1,25037:28601995,6254097:212853 -k1,25037:30177997,6254097:212853 -k1,25037:30840427,6254097:212853 -k1,25037:32583029,6254097:0 -) -(1,25037:7613813,7119177:24969216,505283,126483 -g1,25037:9693270,7119177 -g1,25037:12930093,7119177 -g1,25037:14320767,7119177 -g1,25037:17656549,7119177 -g1,25037:19447647,7119177 -g1,25037:24826842,7119177 -g1,25037:26198510,7119177 -g1,25037:27207109,7119177 -g1,25037:28000750,7119177 -k1,25037:32583029,7119177:3127380 -g1,25037:32583029,7119177 -) -(1,25037:7613813,7984257:24969216,513147,126483 -(1,25037:7613813,7984257:-983040,0,0 -g1,25037:6630773,7984257 -g1,25037:5320053,7984257 -g1,25037:4992373,7984257 -(1,25037:4992373,7984257:1310720,0,0 -k1,25037:6303093,7984257:1310720 -) -g1,25037:6630773,7984257 -) -k1,25037:8042840,7984257:259289 -k1,25037:9093804,7984257:259289 -k1,25037:9803265,7984257:259229 -k1,25037:10512727,7984257:259230 -k1,25037:12862434,7984257:259109 -k1,25037:14312989,7984257:259110 -k1,25037:15225613,7984257:259230 -k1,25037:19070197,7984257:259109 -k1,25037:21511360,7984257:259469 -k1,25037:22220047,7984257:259110 -k1,25037:26000109,7984257:259468 -k1,25037:27446731,7984257:259110 -k1,25037:30694938,7984257:259110 -k1,25037:32583029,7984257:0 -) -(1,25037:7613813,8849337:24969216,505283,126483 -g1,25037:10850636,8849337 -g1,25037:12241310,8849337 -g1,25037:15577092,8849337 -g1,25037:16971698,8849337 -g1,25037:18186080,8849337 -g1,25037:19977178,8849337 -g1,25037:24160996,8849337 -g1,25037:25532664,8849337 -g1,25037:26541263,8849337 -g1,25037:27334904,8849337 -k1,25037:32583029,8849337:3793226 -g1,25037:32583029,8849337 -) -(1,25037:7613813,9714417:24969216,513147,126483 -(1,25037:7613813,9714417:-983040,0,0 -g1,25037:6630773,9714417 -g1,25037:5320053,9714417 -g1,25037:4992373,9714417 -(1,25037:4992373,9714417:1310720,0,0 -k1,25037:6303093,9714417:1310720 -) -g1,25037:6630773,9714417 -) -k1,25037:9426770,9714417:453740 -k1,25037:10617538,9714417:453488 -k1,25037:12261964,9714417:452981 -k1,25037:13344598,9714417:453488 -k1,25037:16031701,9714417:452981 -k1,25037:18667897,9714417:454502 -k1,25037:18841554,9714417:-13 -k1,25037:18841567,9714417:13 -k1,25037:20196979,9714417:452981 -k1,25037:23597114,9714417:452981 -k1,25037:25444047,9714417:452982 -k1,25037:28274674,9714417:452981 -k1,25037:29347835,9714417:454501 -k1,25037:31868032,9714417:454502 -k1,25037:32583029,9714417:0 -) -(1,25037:7613813,10579497:24969216,505283,126483 -k1,25037:11084563,10579497:475755 -k1,25037:16568578,10579497:475754 -k1,25037:20157293,10579497:475755 -k1,25037:22176593,10579497:476582 -k1,25037:23668053,10579497:476307 -k1,25037:27037569,10579497:477412 -k1,25037:28851640,10579497:477137 -$1,25037:28851640,10579497 -k1,25037:29871450,10579497:272914 -k1,25037:30517812,10579497:272914 -k1,25037:32284518,10579497:272914 -k1,25037:32583029,10579497:0 -) -(1,25037:7613813,11444577:24969216,458914,119528 -g1,25037:13588981,11444577 -g1,25037:13962429,11444577 -$1,25037:14335877,11444577 -k1,25037:32583029,11444577:18194724 -g1,25037:32583029,11444577 -) -(1,25037:7613813,12309657:24969216,505283,134348 -(1,25037:7613813,12309657:-983040,0,0 -g1,25037:6630773,12309657 -g1,25037:5320053,12309657 -g1,25037:4992373,12309657 -(1,25037:4992373,12309657:1310720,0,0 -k1,25037:6303093,12309657:1310720 -) -g1,25037:6630773,12309657 -) -k1,25037:8507398,12309657:170067 -k1,25037:9338694,12309657:170038 -k1,25037:10041540,12309657:170038 -k1,25037:12393389,12309657:170155 -k1,25037:13052922,12309657:169979 -k1,25037:16480041,12309657:169980 -k1,25037:18485683,12309657:169979 -k1,25037:19255317,12309657:169980 -k1,25037:23187718,12309657:169979 -k1,25037:25960788,12309657:169980 -k1,25037:28280349,12309657:169980 -k1,25037:29813477,12309657:169979 -k1,25037:30606878,12309657:170154 -k1,25037:31762519,12309657:169980 -k1,25037:32583029,12309657:0 -) -(1,25037:7613813,13174737:24969216,505283,134348 -g1,25037:11239920,13174737 -g1,25037:14331253,13174737 -g1,25037:17582494,13174737 -g1,25037:18977100,13174737 -g1,25037:20191482,13174737 -g1,25037:21982580,13174737 -g1,25037:27361775,13174737 -g1,25037:28733443,13174737 -g1,25037:29742042,13174737 -g1,25037:30535683,13174737 -k1,25037:32583029,13174737:592447 -g1,25037:32583029,13174737 -) -(1,25037:7613813,14039817:24969216,505283,134348 -(1,25037:7613813,14039817:-983040,0,0 -g1,25037:6630773,14039817 -g1,25037:5320053,14039817 -g1,25037:4992373,14039817 -(1,25037:4992373,14039817:1310720,0,0 -k1,25037:6303093,14039817:1310720 -) -g1,25037:6630773,14039817 -) -k1,25037:8647304,14039817:309973 -k1,25037:9618425,14039817:309863 -k1,25037:10634875,14039817:309972 -k1,25037:11489342,14039817:309863 -k1,25037:12465051,14039817:309863 -k1,25037:14144396,14039817:309643 -k1,25037:15645483,14039817:309642 -k1,25037:16499950,14039817:309863 -k1,25037:19621087,14039817:309642 -k1,25037:22113085,14039817:310304 -k1,25037:22912282,14039817:309643 -k1,25037:26479063,14039817:309642 -k1,25037:28624368,14039817:309642 -k1,25037:29533665,14039817:309643 -k1,25037:30467216,14039817:310304 -k1,25037:31762519,14039817:309642 -k1,25037:32583029,14039817:0 -) -(1,25037:7613813,14904897:24969216,505283,134348 -g1,25037:10676965,14904897 -g1,25037:11470606,14904897 -g1,25037:13038882,14904897 -g1,25037:14829980,14904897 -g1,25037:19013798,14904897 -g1,25037:20385466,14904897 -g1,25037:21394065,14904897 -g1,25037:22187706,14904897 -k1,25037:32583029,14904897:8940424 -g1,25037:32583029,14904897 ) ] -(1,25038:32583029,45706769:0,0,0 -g1,25038:32583029,45706769 +[1,25036:3078558,4812305:0,0,0 +(1,25036:3078558,49800853:0,16384,2228224 +g1,25036:29030814,49800853 +g1,25036:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,25036:36151628,51504789:16384,1179648,0 ) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,25036:37855564,49800853:1179648,16384,0 ) -] -(1,25038:6630773,47279633:25952256,0,0 -h1,25038:6630773,47279633:25952256,0,0 ) -] -(1,25038:4262630,4025873:0,0,0 -[1,25038:-473656,4025873:0,0,0 -(1,25038:-473656,-710413:0,0,0 -(1,25038:-473656,-710413:0,0,0 -g1,25038:-473656,-710413 +k1,25036:3078556,49800853:-34777008 ) -g1,25038:-473656,-710413 +] +g1,25036:6630773,4812305 +k1,25036:28581402,4812305:20755252 +) +) +] +[1,25036:6630773,45706769:25952256,40108032,0 +(1,25036:6630773,45706769:25952256,40108032,0 +(1,25036:6630773,45706769:0,0,0 +g1,25036:6630773,45706769 +) +[1,25036:6630773,45706769:25952256,40108032,0 +(1,25035:7613813,6254097:24969216,505283,134348 +(1,25035:7613813,6254097:-983040,0,0 +g1,25035:6630773,6254097 +g1,25035:5320053,6254097 +g1,25035:4992373,6254097 +(1,25035:4992373,6254097:1310720,0,0 +k1,25035:6303093,6254097:1310720 +) +g1,25035:6630773,6254097 +) +k1,25035:7996445,6254097:212894 +k1,25035:8827330,6254097:212880 +k1,25035:11221958,6254097:212934 +k1,25035:14806706,6254097:212921 +k1,25035:18240654,6254097:212853 +k1,25035:20240018,6254097:212853 +k1,25035:21663321,6254097:212853 +k1,25035:24892796,6254097:212853 +k1,25035:28601995,6254097:212853 +k1,25035:30177997,6254097:212853 +k1,25035:30840427,6254097:212853 +k1,25035:32583029,6254097:0 +) +(1,25035:7613813,7119177:24969216,505283,126483 +g1,25035:9693270,7119177 +g1,25035:12930093,7119177 +g1,25035:14320767,7119177 +g1,25035:17656549,7119177 +g1,25035:19447647,7119177 +g1,25035:24826842,7119177 +g1,25035:26198510,7119177 +g1,25035:27207109,7119177 +g1,25035:28000750,7119177 +k1,25035:32583029,7119177:3127380 +g1,25035:32583029,7119177 +) +(1,25035:7613813,7984257:24969216,513147,126483 +(1,25035:7613813,7984257:-983040,0,0 +g1,25035:6630773,7984257 +g1,25035:5320053,7984257 +g1,25035:4992373,7984257 +(1,25035:4992373,7984257:1310720,0,0 +k1,25035:6303093,7984257:1310720 +) +g1,25035:6630773,7984257 +) +k1,25035:8042840,7984257:259289 +k1,25035:9093804,7984257:259289 +k1,25035:9803265,7984257:259229 +k1,25035:10512727,7984257:259230 +k1,25035:12862434,7984257:259109 +k1,25035:14312989,7984257:259110 +k1,25035:15225613,7984257:259230 +k1,25035:19070197,7984257:259109 +k1,25035:21511360,7984257:259469 +k1,25035:22220047,7984257:259110 +k1,25035:26000109,7984257:259468 +k1,25035:27446731,7984257:259110 +k1,25035:30694938,7984257:259110 +k1,25035:32583029,7984257:0 +) +(1,25035:7613813,8849337:24969216,505283,126483 +g1,25035:10850636,8849337 +g1,25035:12241310,8849337 +g1,25035:15577092,8849337 +g1,25035:16971698,8849337 +g1,25035:18186080,8849337 +g1,25035:19977178,8849337 +g1,25035:24160996,8849337 +g1,25035:25532664,8849337 +g1,25035:26541263,8849337 +g1,25035:27334904,8849337 +k1,25035:32583029,8849337:3793226 +g1,25035:32583029,8849337 +) +(1,25035:7613813,9714417:24969216,513147,126483 +(1,25035:7613813,9714417:-983040,0,0 +g1,25035:6630773,9714417 +g1,25035:5320053,9714417 +g1,25035:4992373,9714417 +(1,25035:4992373,9714417:1310720,0,0 +k1,25035:6303093,9714417:1310720 +) +g1,25035:6630773,9714417 +) +k1,25035:9426770,9714417:453740 +k1,25035:10617538,9714417:453488 +k1,25035:12261964,9714417:452981 +k1,25035:13344598,9714417:453488 +k1,25035:16031701,9714417:452981 +k1,25035:18667897,9714417:454502 +k1,25035:18841554,9714417:-13 +k1,25035:18841567,9714417:13 +k1,25035:20196979,9714417:452981 +k1,25035:23597114,9714417:452981 +k1,25035:25444047,9714417:452982 +k1,25035:28274674,9714417:452981 +k1,25035:29347835,9714417:454501 +k1,25035:31868032,9714417:454502 +k1,25035:32583029,9714417:0 +) +(1,25035:7613813,10579497:24969216,505283,126483 +k1,25035:11084563,10579497:475755 +k1,25035:16568578,10579497:475754 +k1,25035:20157293,10579497:475755 +k1,25035:22176593,10579497:476582 +k1,25035:23668053,10579497:476307 +k1,25035:27037569,10579497:477412 +k1,25035:28851640,10579497:477137 +$1,25035:28851640,10579497 +k1,25035:29871450,10579497:272914 +k1,25035:30517812,10579497:272914 +k1,25035:32284518,10579497:272914 +k1,25035:32583029,10579497:0 +) +(1,25035:7613813,11444577:24969216,458914,119528 +g1,25035:13588981,11444577 +g1,25035:13962429,11444577 +$1,25035:14335877,11444577 +k1,25035:32583029,11444577:18194724 +g1,25035:32583029,11444577 +) +(1,25035:7613813,12309657:24969216,505283,134348 +(1,25035:7613813,12309657:-983040,0,0 +g1,25035:6630773,12309657 +g1,25035:5320053,12309657 +g1,25035:4992373,12309657 +(1,25035:4992373,12309657:1310720,0,0 +k1,25035:6303093,12309657:1310720 +) +g1,25035:6630773,12309657 +) +k1,25035:8507398,12309657:170067 +k1,25035:9338694,12309657:170038 +k1,25035:10041540,12309657:170038 +k1,25035:12393389,12309657:170155 +k1,25035:13052922,12309657:169979 +k1,25035:16480041,12309657:169980 +k1,25035:18485683,12309657:169979 +k1,25035:19255317,12309657:169980 +k1,25035:23187718,12309657:169979 +k1,25035:25960788,12309657:169980 +k1,25035:28280349,12309657:169980 +k1,25035:29813477,12309657:169979 +k1,25035:30606878,12309657:170154 +k1,25035:31762519,12309657:169980 +k1,25035:32583029,12309657:0 +) +(1,25035:7613813,13174737:24969216,505283,134348 +g1,25035:11239920,13174737 +g1,25035:14331253,13174737 +g1,25035:17582494,13174737 +g1,25035:18977100,13174737 +g1,25035:20191482,13174737 +g1,25035:21982580,13174737 +g1,25035:27361775,13174737 +g1,25035:28733443,13174737 +g1,25035:29742042,13174737 +g1,25035:30535683,13174737 +k1,25035:32583029,13174737:592447 +g1,25035:32583029,13174737 +) +(1,25035:7613813,14039817:24969216,505283,134348 +(1,25035:7613813,14039817:-983040,0,0 +g1,25035:6630773,14039817 +g1,25035:5320053,14039817 +g1,25035:4992373,14039817 +(1,25035:4992373,14039817:1310720,0,0 +k1,25035:6303093,14039817:1310720 +) +g1,25035:6630773,14039817 +) +k1,25035:8647304,14039817:309973 +k1,25035:9618425,14039817:309863 +k1,25035:10634875,14039817:309972 +k1,25035:11489342,14039817:309863 +k1,25035:12465051,14039817:309863 +k1,25035:14144396,14039817:309643 +k1,25035:15645483,14039817:309642 +k1,25035:16499950,14039817:309863 +k1,25035:19621087,14039817:309642 +k1,25035:22113085,14039817:310304 +k1,25035:22912282,14039817:309643 +k1,25035:26479063,14039817:309642 +k1,25035:28624368,14039817:309642 +k1,25035:29533665,14039817:309643 +k1,25035:30467216,14039817:310304 +k1,25035:31762519,14039817:309642 +k1,25035:32583029,14039817:0 +) +(1,25035:7613813,14904897:24969216,505283,134348 +g1,25035:10676965,14904897 +g1,25035:11470606,14904897 +g1,25035:13038882,14904897 +g1,25035:14829980,14904897 +g1,25035:19013798,14904897 +g1,25035:20385466,14904897 +g1,25035:21394065,14904897 +g1,25035:22187706,14904897 +k1,25035:32583029,14904897:8940424 +g1,25035:32583029,14904897 +) +] +(1,25036:32583029,45706769:0,0,0 +g1,25036:32583029,45706769 +) +) +] +(1,25036:6630773,47279633:25952256,0,0 +h1,25036:6630773,47279633:25952256,0,0 +) +] +(1,25036:4262630,4025873:0,0,0 +[1,25036:-473656,4025873:0,0,0 +(1,25036:-473656,-710413:0,0,0 +(1,25036:-473656,-710413:0,0,0 +g1,25036:-473656,-710413 +) +g1,25036:-473656,-710413 ) ] ) ] !9232 -}433 -Input:4605:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.ind +}434 +Input:4609:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.ind !103 -{434 -[4605,76:4262630,47279633:28320399,43253760,11795 -(4605,76:4262630,4025873:0,0,0 -[4605,76:-473656,4025873:0,0,0 -(4605,76:-473656,-710413:0,0,0 -(4605,76:-473656,-644877:0,0,0 -k4605,76:-473656,-644877:-65536 +{435 +[4609,76:4262630,47279633:28320399,43253760,11795 +(4609,76:4262630,4025873:0,0,0 +[4609,76:-473656,4025873:0,0,0 +(4609,76:-473656,-710413:0,0,0 +(4609,76:-473656,-644877:0,0,0 +k4609,76:-473656,-644877:-65536 ) -(4605,76:-473656,4736287:0,0,0 -k4605,76:-473656,4736287:5209943 +(4609,76:-473656,4736287:0,0,0 +k4609,76:-473656,4736287:5209943 ) -g4605,76:-473656,-710413 +g4609,76:-473656,-710413 ) ] ) -[4605,76:6630773,47279633:25952256,43253760,11795 -[4605,76:6630773,4812305:25952256,786432,0 -(4605,76:6630773,4812305:25952256,0,0 -(4605,76:6630773,4812305:25952256,0,0 -g4605,76:3078558,4812305 -[4605,76:3078558,4812305:0,0,0 -(4605,76:3078558,2439708:0,1703936,0 -k4605,76:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,76:2537886,2439708:1179648,16384,0 +[4609,76:6630773,47279633:25952256,43253760,11795 +[4609,76:6630773,4812305:25952256,786432,0 +(4609,76:6630773,4812305:25952256,0,0 +(4609,76:6630773,4812305:25952256,0,0 +g4609,76:3078558,4812305 +[4609,76:3078558,4812305:0,0,0 +(4609,76:3078558,2439708:0,1703936,0 +k4609,76:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,76:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,76:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,76:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,76:3078558,4812305:0,0,0 -(4605,76:3078558,2439708:0,1703936,0 -g4605,76:29030814,2439708 -g4605,76:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,76:36151628,1915420:16384,1179648,0 +[4609,76:3078558,4812305:0,0,0 +(4609,76:3078558,2439708:0,1703936,0 +g4609,76:29030814,2439708 +g4609,76:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,76:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,76:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,76:37855564,2439708:1179648,16384,0 ) ) -k4605,76:3078556,2439708:-34777008 +k4609,76:3078556,2439708:-34777008 ) ] -[4605,76:3078558,4812305:0,0,0 -(4605,76:3078558,49800853:0,16384,2228224 -k4605,76:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,76:2537886,49800853:1179648,16384,0 +[4609,76:3078558,4812305:0,0,0 +(4609,76:3078558,49800853:0,16384,2228224 +k4609,76:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,76:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,76:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,76:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,76:3078558,4812305:0,0,0 -(4605,76:3078558,49800853:0,16384,2228224 -g4605,76:29030814,49800853 -g4605,76:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,76:36151628,51504789:16384,1179648,0 +[4609,76:3078558,4812305:0,0,0 +(4609,76:3078558,49800853:0,16384,2228224 +g4609,76:29030814,49800853 +g4609,76:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,76:36151628,51504789:16384,1179648,0 ) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 ) ] ) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,76:37855564,49800853:1179648,16384,0 +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,76:37855564,49800853:1179648,16384,0 ) ) -k4605,76:3078556,49800853:-34777008 +k4609,76:3078556,49800853:-34777008 ) ] -g4605,76:6630773,4812305 +g4609,76:6630773,4812305 ) ) ] -[4605,76:6630773,45706769:25952256,40108032,0 -(4605,76:6630773,45706769:25952256,40108032,0 -(4605,76:6630773,45706769:0,0,0 -g4605,76:6630773,45706769 +[4609,76:6630773,45706769:25952256,40108032,0 +(4609,76:6630773,45706769:25952256,40108032,0 +(4609,76:6630773,45706769:0,0,0 +g4609,76:6630773,45706769 ) -[4605,76:6630773,45706769:25952256,40108032,0 -[4605,1:6630773,12185121:25952256,6586384,0 -(4605,1:6630773,7073297:25952256,32768,229376 -(4605,1:6630773,7073297:0,32768,229376 -(4605,1:6630773,7073297:5505024,32768,229376 -r4605,76:12135797,7073297:5505024,262144,229376 +[4609,76:6630773,45706769:25952256,40108032,0 +[4609,1:6630773,12185121:25952256,6586384,0 +(4609,1:6630773,7073297:25952256,32768,229376 +(4609,1:6630773,7073297:0,32768,229376 +(4609,1:6630773,7073297:5505024,32768,229376 +r4609,76:12135797,7073297:5505024,262144,229376 ) -k4605,1:6630773,7073297:-5505024 +k4609,1:6630773,7073297:-5505024 ) ) -(4605,1:6630773,8842777:25952256,909509,22412 -h4605,1:6630773,8842777:0,0,0 -g4605,1:11695002,8842777 -k4605,1:23741568,8842777:8841462 -k4605,1:32583030,8842777:8841462 +(4609,1:6630773,8842777:25952256,909509,22412 +h4609,1:6630773,8842777:0,0,0 +g4609,1:11695002,8842777 +k4609,1:23741568,8842777:8841462 +k4609,1:32583030,8842777:8841462 ) -(4605,1:6630773,9498145:25952256,32768,0 -(4605,1:6630773,9498145:5505024,32768,0 -r4605,76:12135797,9498145:5505024,32768,0 -) -k4605,1:22359413,9498145:10223616 -k4605,1:32583029,9498145:10223616 -) -] -(4605,76:6630773,45706769:25952256,32525496,126483 -[4605,76:6630773,45706769:11829248,32525496,102891 -(4605,5:6630773,13836633:11829248,513147,134348 -h4605,3:6630773,13836633:0,0,0 -k4605,3:9996866,13836633:191529 -k4605,3:13547770,13836633:191529 -k4605,4:13547770,13836633:0 -k4605,4:14706610,13836633:191529 -k4605,4:17800729,13836633:191529 -k4605,4:18460021,13836633:0 -) -(4605,5:9252213,14701713:9207808,505283,134348 -g4605,4:12344201,14701713 -k4605,5:16989393,14701713:1470628 -k4605,5:18460021,14701713:1470628 -) -(4605,6:6630773,15568439:11829248,513147,126483 -h4605,5:6606525,15568439:0,0,0 -g4605,5:8135480,15568439 -g4605,5:9302020,15568439 -g4605,5:10404335,15568439 -g4605,5:14373850,15568439 -k4605,6:17825305,15568439:634717 -k4605,6:18460021,15568439:634716 -) -(4605,7:6630773,16435166:11829248,513147,126483 -h4605,6:6606525,16435166:0,0,0 -g4605,6:9486832,16435166 -g4605,6:10589147,16435166 -g4605,6:14558662,16435166 -k4605,6:18460021,16435166:998770 -) -(4605,7:9252213,17300246:9207808,485622,102891 -g4605,6:10820489,17300246 -k4605,7:15237944,17300246:3222078 -k4605,7:18460021,17300246:3222077 -) -(4605,8:6630773,18166972:11829248,513147,134348 -h4605,7:6630773,18166972:0,0,0 -g4605,7:9157185,18166972 -g4605,7:10015706,18166972 -g4605,7:11653450,18166972 -k4605,8:15455195,18166972:3004827 -k4605,8:18460021,18166972:3004826 -) -(4605,10:6630773,19033699:11829248,513147,126483 -h4605,8:6630773,19033699:0,0,0 -g4605,8:9384595,19033699 -g4605,8:10243116,19033699 -g4605,8:13998328,19033699 -k4605,9:13998328,19033699:0 -g4605,9:15164868,19033699 -k4605,9:18460021,19033699:1496845 -) -(4605,10:9252213,19898779:9207808,513147,126483 -g4605,9:11943121,19898779 -g4605,9:14696943,19898779 -k4605,9:18460021,19898779:3103786 -) -(4605,10:9252213,20763859:9207808,473825,7863 -k4605,10:15547274,20763859:2912748 -k4605,10:18460021,20763859:2912747 -) -(4605,12:6630773,21630585:11829248,513147,126483 -h4605,10:6630773,21630585:0,0,0 -g4605,10:9384595,21630585 -g4605,10:10243116,21630585 -g4605,10:13270224,21630585 -k4605,11:13270224,21630585:0 -g4605,11:14436764,21630585 -k4605,11:18460021,21630585:2224949 -) -(4605,12:9252213,22495665:9207808,513147,126483 -g4605,11:11943121,22495665 -g4605,11:14696943,22495665 -g4605,11:15555464,22495665 -k4605,12:18334847,22495665:125175 -k4605,12:18460021,22495665:125174 -) -(4605,13:6630773,23362392:11829248,513147,102891 -h4605,12:6630773,23362392:0,0,0 -r4605,76:6630773,23362392:0,616038,102891 -g4605,12:7941493,23362392 -g4605,12:7941493,23362392 -g4605,12:10128429,23362392 -g4605,12:13044781,23362392 -k4605,13:16350090,23362392:2109932 -k4605,13:18460021,23362392:2109931 -) -(4605,14:6630773,24229118:11829248,505283,126483 -h4605,13:6606525,24229118:0,0,0 -g4605,13:9869562,24229118 -g4605,13:11036102,24229118 -g4605,13:13048057,24229118 -g4605,13:15738965,24229118 -k4605,13:18460021,24229118:166463 -) -(4605,14:9252213,25094198:9207808,513147,7863 -g4605,13:10110734,25094198 -k4605,14:15976534,25094198:2483487 -k4605,14:18460021,25094198:2483487 -) -(4605,16:6630773,25960925:11829248,505283,134348 -h4605,14:6630773,25960925:0,0,0 -g4605,14:10620604,25960925 -g4605,14:14179208,25960925 -k4605,15:14179208,25960925:0 -g4605,15:15345748,25960925 -k4605,15:18460021,25960925:226101 -) -(4605,16:9252213,26826005:9207808,513147,134348 -g4605,15:10110734,26826005 -g4605,15:13202722,26826005 -k4605,16:17726673,26826005:733349 -k4605,16:18460021,26826005:733348 -) -(4605,17:6630773,27692731:11829248,505283,126483 -h4605,16:6606525,27692731:0,0,0 -g4605,16:9414087,27692731 -g4605,16:10580627,27692731 -g4605,16:12592582,27692731 -g4605,16:15283490,27692731 -k4605,16:18460021,27692731:621938 -) -(4605,17:9252213,28557811:9207808,513147,7863 -g4605,16:10110734,28557811 -k4605,17:15612482,28557811:2847540 -k4605,17:18460021,28557811:2847539 -) -(4605,18:6630773,29424538:11829248,505283,126483 -h4605,17:6568514,29424538:0,0,0 -g4605,17:9877426,29424538 -g4605,17:11047243,29424538 -g4605,17:12615519,29424538 -k4605,18:16135459,29424538:2324563 -k4605,18:18460021,29424538:2324562 -) -(4605,19:6630773,30291264:11829248,513147,126483 -h4605,18:6630773,30291264:0,0,0 -g4605,18:8593576,30291264 -g4605,18:11992273,30291264 -g4605,18:13560549,30291264 -k4605,19:16598143,30291264:1861878 -k4605,19:18460021,30291264:1861878 -) -(4605,20:6630773,31157991:11829248,513147,102891 -h4605,19:6630773,31157991:0,0,0 -g4605,19:10106147,31157991 -g4605,19:13216485,31157991 -k4605,20:16226882,31157991:2233140 -k4605,20:18460021,31157991:2233139 -) -(4605,21:6630773,32024717:11829248,485622,126483 -h4605,20:6630773,32024717:0,0,0 -r4605,76:6630773,32024717:0,612105,126483 -g4605,20:7941493,32024717 -g4605,20:7941493,32024717 -g4605,20:9526808,32024717 -g4605,20:13285297,32024717 -k4605,21:16261288,32024717:2198734 -k4605,21:18460021,32024717:2198733 -) -(4605,22:6630773,32891444:11829248,485622,126483 -h4605,21:6630773,32891444:0,0,0 -g4605,21:8983515,32891444 -k4605,22:14672696,32891444:3787326 -k4605,22:18460021,32891444:3787325 -) -(4605,23:6630773,33758170:11829248,505283,102891 -h4605,22:6630773,33758170:0,0,0 -r4605,76:6630773,33758170:0,608174,102891 -g4605,22:7941493,33758170 -g4605,22:7941493,33758170 -g4605,22:11989651,33758170 -k4605,23:15623295,33758170:2836726 -k4605,23:18460021,33758170:2836726 -) -(4605,24:6630773,34624897:11829248,485622,134348 -h4605,23:6630773,34624897:0,0,0 -g4605,23:10649440,34624897 -k4605,24:14953190,34624897:3506832 -k4605,24:18460021,34624897:3506831 -) -(4605,25:6630773,35491623:11829248,505283,134348 -h4605,24:6630773,35491623:0,0,0 -r4605,76:6630773,35491623:0,639631,134348 -g4605,24:7941493,35491623 -g4605,24:7941493,35491623 -g4605,24:11024961,35491623 -k4605,25:15131120,35491623:3328902 -k4605,25:18460021,35491623:3328901 -) -(4605,26:6630773,36358350:11829248,513147,102891 -h4605,25:6630773,36358350:0,0,0 -r4605,76:6630773,36358350:0,616038,102891 -g4605,25:7941493,36358350 -g4605,25:7941493,36358350 -g4605,25:10788377,36358350 -k4605,26:15012828,36358350:3447194 -k4605,26:18460021,36358350:3447193 -) -(4605,27:6630773,37225076:11829248,505283,102891 -h4605,26:6630773,37225076:0,0,0 -g4605,26:10112700,37225076 -k4605,27:15645577,37225076:2814444 -k4605,27:18460021,37225076:2814444 -) -(4605,31:6630773,38774604:11829248,505283,102891 -h4605,30:6568514,38774604:0,0,0 -g4605,30:8828850,38774604 -k4605,31:14232294,38774604:4227728 -k4605,31:18460021,38774604:4227727 -) -(4605,32:6630773,39641330:11829248,505283,102891 -h4605,31:6630773,39641330:0,0,0 -g4605,31:8263930,39641330 -g4605,31:9051672,39641330 -k4605,32:14144475,39641330:4315546 -k4605,32:18460021,39641330:4315546 -) -(4605,33:6630773,40508057:11829248,505283,102891 -h4605,32:6630773,40508057:0,0,0 -g4605,32:8518209,40508057 -g4605,32:9688026,40508057 -k4605,33:14661882,40508057:3798140 -k4605,33:18460021,40508057:3798139 -) -(4605,34:6630773,41374783:11829248,505283,134348 -h4605,33:6630773,41374783:0,0,0 -g4605,33:8591610,41374783 -g4605,33:9986216,41374783 -k4605,34:14611747,41374783:3848274 -k4605,34:18460021,41374783:3848274 -) -(4605,35:6630773,42241510:11829248,513147,126483 -h4605,34:6630773,42241510:0,0,0 -g4605,34:9620525,42241510 -g4605,34:13590040,42241510 -g4605,34:16778366,42241510 -k4605,35:18207052,42241510:252970 -k4605,35:18460021,42241510:252969 -) -(4605,36:6630773,43108236:11829248,513147,126483 -h4605,35:6630773,43108236:0,0,0 -g4605,35:8071254,43108236 -g4605,35:9237794,43108236 -g4605,35:12227546,43108236 -k4605,35:18460021,43108236:2462189 -) -(4605,36:9252213,43973316:9207808,485622,11795 -k4605,36:15264486,43973316:3195535 -k4605,36:18460021,43973316:3195535 -) -(4605,37:6630773,44840043:11829248,505283,102891 -h4605,36:6630773,44840043:0,0,0 -g4605,36:11250405,44840043 -k4605,37:15452902,44840043:3007120 -k4605,37:18460021,44840043:3007119 -) -(4605,38:6630773,45706769:11829248,505283,102891 -h4605,37:6630773,45706769:0,0,0 -g4605,37:9962623,45706769 -k4605,38:14799180,45706769:3660841 -k4605,38:18460021,45706769:3660841 -) -] -k4605,76:19606901,45706769:1146880 -r4605,76:19606901,45706769:0,32651979,126483 -k4605,76:20753781,45706769:1146880 -[4605,76:20753781,45706769:11829248,32525496,102891 -(4605,39:20753781,13836633:11829248,505283,134348 -h4605,38:20691522,13836633:0,0,0 -g4605,38:24617783,13836633 -k4605,39:29198095,13836633:3384935 -k4605,39:32583029,13836633:3384934 -) -(4605,40:20753781,14703254:11829248,505283,102891 -h4605,39:20691522,14703254:0,0,0 -g4605,39:24805216,14703254 -k4605,40:29291811,14703254:3291218 -k4605,40:32583029,14703254:3291218 -) -(4605,41:20753781,15569874:11829248,505283,102891 -h4605,40:20753781,15569874:0,0,0 -g4605,40:23464350,15569874 -g4605,40:27113394,15569874 -k4605,41:30246671,15569874:2336359 -k4605,41:32583029,15569874:2336358 -) -(4605,42:20753781,16436495:11829248,505283,126483 -h4605,41:20753781,16436495:0,0,0 -g4605,41:22112997,16436495 -g4605,41:24093495,16436495 -g4605,41:25260035,16436495 -g4605,41:27240533,16436495 -g4605,41:28599749,16436495 -k4605,41:32583029,16436495:2791835 -) -(4605,42:23375221,17301575:9207808,505283,126483 -g4605,41:26374148,17301575 -k4605,42:30117237,17301575:2465792 -k4605,42:32583029,17301575:2465792 -) -(4605,43:20753781,18168196:11829248,505283,102891 -h4605,42:20691522,18168196:0,0,0 -g4605,42:23576416,18168196 -k4605,43:28667581,18168196:3915449 -k4605,43:32583029,18168196:3915448 -) -(4605,48:20753781,19715853:11829248,485622,102891 -h4605,46:20753781,19715853:0,0,0 -k4605,46:21576112,19715853:195152 -k4605,46:22741852,19715853:195152 -k4605,46:23907592,19715853:195152 -k4605,46:25073332,19715853:195152 -k4605,46:26239071,19715853:195151 -k4605,46:27404811,19715853:195152 -k4605,46:28570551,19715853:195152 -k4605,46:29736291,19715853:195152 -k4605,46:31300490,19715853:195152 -k4605,46:32583029,19715853:0 -) -(4605,48:23375221,20580933:9207808,485622,102891 -g4605,46:24923836,20580933 -g4605,46:26492112,20580933 -g4605,47:28060388,20580933 -k4605,48:30919397,20580933:1663632 -k4605,48:32583029,20580933:1663632 -) -(4605,49:20753781,21447554:11829248,485622,102891 -h4605,48:20753781,21447554:0,0,0 -g4605,48:22409875,21447554 -g4605,48:23579692,21447554 -g4605,48:24749509,21447554 -g4605,48:25919326,21447554 -g4605,48:27089143,21447554 -g4605,48:28258960,21447554 -g4605,48:29428777,21447554 -g4605,48:30997053,21447554 -k4605,48:32583029,21447554:303437 -) -(4605,49:23375221,22312634:9207808,485622,102891 -g4605,48:24923836,22312634 -g4605,48:26492112,22312634 -k4605,49:30135259,22312634:2447770 -k4605,49:32583029,22312634:2447770 -) -(4605,50:20753781,23179254:11829248,505283,102891 -h4605,49:20753781,23179254:0,0,0 -g4605,49:24360882,23179254 -g4605,49:26805374,23179254 -k4605,50:30291890,23179254:2291139 -k4605,50:32583029,23179254:2291139 -) -(4605,51:20753781,24045875:11829248,513147,134348 -h4605,50:20753781,24045875:0,0,0 -g4605,50:24399548,24045875 -g4605,50:27614088,24045875 -g4605,50:28780628,24045875 -k4605,51:31793975,24045875:789055 -k4605,51:32583029,24045875:789054 -) -(4605,52:20753781,24912496:11829248,505283,134348 -h4605,51:20753781,24912496:0,0,0 -g4605,51:23663579,24912496 -g4605,51:27379470,24912496 -g4605,51:28972650,24912496 -g4605,51:30959701,24912496 -k4605,51:32583029,24912496:340789 -) -(4605,52:23375221,25777576:9207808,485622,11795 -k4605,52:29338342,25777576:3244688 -k4605,52:32583029,25777576:3244687 -) -(4605,53:20753781,26644196:11829248,505283,126483 -h4605,52:20753781,26644196:0,0,0 -g4605,52:23927689,26644196 -g4605,52:26262081,26644196 -g4605,52:28461469,26644196 -k4605,53:30920708,26644196:1662321 -k4605,53:32583029,26644196:1662321 -) -(4605,54:20753781,27510817:11829248,505283,134348 -h4605,53:20753781,27510817:0,0,0 -g4605,53:23927689,27510817 -g4605,53:25992728,27510817 -g4605,53:29584100,27510817 -k4605,54:31472193,27510817:1110836 -k4605,54:32583029,27510817:1110836 -) -(4605,55:20753781,28377438:11829248,505283,134348 -h4605,54:20753781,28377438:0,0,0 -g4605,54:23927689,28377438 -g4605,54:26496700,28377438 -k4605,55:29928493,28377438:2654536 -k4605,55:32583029,28377438:2654536 -) -(4605,56:20753781,29244058:11829248,513147,102891 -h4605,55:20753781,29244058:0,0,0 -r4605,76:20753781,29244058:0,616038,102891 -g4605,55:22064501,29244058 -g4605,55:22064501,29244058 -g4605,55:24749511,29244058 -g4605,55:25608032,29244058 -g4605,55:29285912,29244058 -k4605,56:31332930,29244058:1250100 -k4605,56:32583029,29244058:1250099 -) -(4605,57:20753781,30110679:11829248,505283,134348 -h4605,56:20753781,30110679:0,0,0 -r4605,76:20753781,30110679:0,639631,134348 -g4605,56:22064501,30110679 -g4605,56:22064501,30110679 -g4605,56:24347775,30110679 -g4605,56:27518406,30110679 -k4605,56:32583029,30110679:3873178 -) -(4605,57:23375221,30975759:9207808,505283,102891 -g4605,56:27621298,30975759 -k4605,57:30500623,30975759:2082407 -k4605,57:32583029,30975759:2082406 -) -(4605,58:20753781,31842379:11829248,505283,126483 -h4605,57:20753781,31842379:0,0,0 -r4605,76:20753781,31842379:0,631766,126483 -g4605,57:22064501,31842379 -g4605,57:22064501,31842379 -g4605,57:26945622,31842379 -g4605,57:30723117,31842379 -k4605,58:32051532,31842379:531497 -k4605,58:32583029,31842379:531497 -) -(4605,59:20753781,32709000:11829248,513147,134348 -h4605,58:20753781,32709000:0,0,0 -r4605,76:20753781,32709000:0,647495,134348 -g4605,58:22064501,32709000 -g4605,58:22064501,32709000 -g4605,58:24925147,32709000 -g4605,58:25957339,32709000 -k4605,59:29668643,32709000:2914386 -k4605,59:32583029,32709000:2914386 -) -(4605,60:20753781,33575621:11829248,505283,134348 -h4605,59:20753781,33575621:0,0,0 -r4605,76:20753781,33575621:0,639631,134348 -g4605,59:22064501,33575621 -g4605,59:22064501,33575621 -g4605,59:25792844,33575621 -g4605,59:29142389,33575621 -k4605,60:31251338,33575621:1331692 -k4605,60:32583029,33575621:1331691 -) -(4605,61:20753781,34442241:11829248,505283,102891 -h4605,60:20753781,34442241:0,0,0 -g4605,60:23764505,34442241 -g4605,60:26556338,34442241 -g4605,60:29407154,34442241 -k4605,61:31582950,34442241:1000080 -k4605,61:32583029,34442241:1000079 -) -(4605,62:20753781,35308862:11829248,505283,102891 -h4605,61:20753781,35308862:0,0,0 -g4605,61:23359492,35308862 -k4605,62:28568949,35308862:4014080 -k4605,62:32583029,35308862:4014080 -) -(4605,63:20753781,36175483:11829248,505283,126483 -h4605,62:20753781,36175483:0,0,0 -r4605,76:20753781,36175483:0,631766,126483 -g4605,62:22064501,36175483 -g4605,62:22064501,36175483 -g4605,62:23017394,36175483 -g4605,62:24771792,36175483 -g4605,62:27390610,36175483 -k4605,63:30584508,36175483:1998521 -k4605,63:32583029,36175483:1998521 -) -(4605,64:20753781,37042103:11829248,505283,7863 -h4605,63:20753781,37042103:0,0,0 -g4605,63:23185822,37042103 -g4605,63:24576496,37042103 -k4605,64:29636203,37042103:2946826 -k4605,64:32583029,37042103:2946826 -) -(4605,65:20753781,37908724:11829248,505283,102891 -h4605,64:20753781,37908724:0,0,0 -r4605,76:20753781,37908724:0,608174,102891 -g4605,64:22064501,37908724 -g4605,64:22064501,37908724 -g4605,64:25412080,37908724 -k4605,65:29958313,37908724:2624717 -k4605,65:32583029,37908724:2624716 -) -(4605,66:20753781,38775345:11829248,505283,134348 -h4605,65:20753781,38775345:0,0,0 -r4605,76:20753781,38775345:0,639631,134348 -g4605,65:22064501,38775345 -g4605,65:22064501,38775345 -g4605,65:24507027,38775345 -k4605,66:29505786,38775345:3077243 -k4605,66:32583029,38775345:3077243 -) -(4605,67:20753781,39641965:11829248,505283,134348 -h4605,66:20753781,39641965:0,0,0 -r4605,76:20753781,39641965:0,639631,134348 -g4605,66:22064501,39641965 -g4605,66:22064501,39641965 -g4605,66:25057530,39641965 -g4605,66:27660620,39641965 -g4605,66:30216524,39641965 -k4605,67:32360535,39641965:222495 -k4605,67:32583029,39641965:222494 -) -(4605,68:20753781,40508586:11829248,505283,126483 -h4605,67:20753781,40508586:0,0,0 -g4605,67:23129461,40508586 -g4605,67:26056954,40508586 -k4605,68:30669378,40508586:1913652 -k4605,68:32583029,40508586:1913651 -) -(4605,69:20753781,41375206:11829248,485622,102891 -h4605,68:20753781,41375206:0,0,0 -g4605,68:23324758,41375206 -k4605,69:28551582,41375206:4031447 -k4605,69:32583029,41375206:4031447 -) -(4605,70:20753781,42241827:11829248,505283,7863 -h4605,69:20753781,42241827:0,0,0 -k4605,70:27676677,42241827:4906353 -k4605,70:32583029,42241827:4906352 -) -(4605,71:20753781,43108448:11829248,513147,102891 -h4605,70:20753781,43108448:0,0,0 -r4605,76:20753781,43108448:0,616038,102891 -g4605,70:22064501,43108448 -g4605,70:22064501,43108448 -g4605,70:25849860,43108448 -k4605,71:30565831,43108448:2017199 -k4605,71:32583029,43108448:2017198 -) -(4605,72:20753781,43975068:11829248,485622,102891 -h4605,71:20753781,43975068:0,0,0 -r4605,76:20753781,43975068:0,588513,102891 -g4605,71:22064501,43975068 -g4605,71:22064501,43975068 -g4605,71:24505717,43975068 -k4605,72:29142062,43975068:3440968 -k4605,72:32583029,43975068:3440967 -) -(4605,73:20753781,44841689:11829248,513147,134348 -h4605,72:20753781,44841689:0,0,0 -g4605,72:24706912,44841689 -g4605,72:25565433,44841689 -g4605,72:28196703,44841689 -k4605,72:32583029,44841689:2698119 -) -(4605,73:23375221,45706769:9207808,505283,102891 -g4605,72:26564202,45706769 -k4605,73:29962244,45706769:2620785 -k4605,73:32583029,45706769:2620785 -) -] -(4605,76:32583029,45706769:0,355205,126483 -h4605,76:32583029,45706769:420741,355205,126483 -k4605,76:32583029,45706769:-420741 -) -) -] -(4605,76:32583029,45706769:0,0,0 -g4605,76:32583029,45706769 -) -) -] -(4605,76:6630773,47279633:25952256,485622,11795 -(4605,76:6630773,47279633:25952256,485622,11795 -k4605,76:19009213,47279633:12378440 -k4605,76:32583030,47279633:12378440 -) -) -] -(4605,76:4262630,4025873:0,0,0 -[4605,76:-473656,4025873:0,0,0 -(4605,76:-473656,-710413:0,0,0 -(4605,76:-473656,-710413:0,0,0 -g4605,76:-473656,-710413 -) -g4605,76:-473656,-710413 +(4609,1:6630773,9498145:25952256,32768,0 +(4609,1:6630773,9498145:5505024,32768,0 +r4609,76:12135797,9498145:5505024,32768,0 +) +k4609,1:22359413,9498145:10223616 +k4609,1:32583029,9498145:10223616 +) +] +(4609,76:6630773,45706769:25952256,32525496,126483 +[4609,76:6630773,45706769:11829248,32525496,102891 +(4609,5:6630773,13836633:11829248,513147,134348 +h4609,3:6630773,13836633:0,0,0 +k4609,3:9996866,13836633:191529 +k4609,3:13547770,13836633:191529 +k4609,4:13547770,13836633:0 +k4609,4:14706610,13836633:191529 +k4609,4:17800729,13836633:191529 +k4609,4:18460021,13836633:0 +) +(4609,5:9252213,14701713:9207808,505283,134348 +g4609,4:12344201,14701713 +k4609,5:16989393,14701713:1470628 +k4609,5:18460021,14701713:1470628 +) +(4609,6:6630773,15568439:11829248,513147,126483 +h4609,5:6606525,15568439:0,0,0 +g4609,5:8135480,15568439 +g4609,5:9302020,15568439 +g4609,5:10404335,15568439 +g4609,5:14373850,15568439 +k4609,6:17825305,15568439:634717 +k4609,6:18460021,15568439:634716 +) +(4609,7:6630773,16435166:11829248,513147,126483 +h4609,6:6606525,16435166:0,0,0 +g4609,6:9486832,16435166 +g4609,6:10589147,16435166 +g4609,6:14558662,16435166 +k4609,6:18460021,16435166:998770 +) +(4609,7:9252213,17300246:9207808,485622,102891 +g4609,6:10820489,17300246 +k4609,7:15237944,17300246:3222078 +k4609,7:18460021,17300246:3222077 +) +(4609,8:6630773,18166972:11829248,513147,134348 +h4609,7:6630773,18166972:0,0,0 +g4609,7:9157185,18166972 +g4609,7:10015706,18166972 +g4609,7:11653450,18166972 +k4609,8:15455195,18166972:3004827 +k4609,8:18460021,18166972:3004826 +) +(4609,10:6630773,19033699:11829248,513147,126483 +h4609,8:6630773,19033699:0,0,0 +g4609,8:9384595,19033699 +g4609,8:10243116,19033699 +g4609,8:13998328,19033699 +k4609,9:13998328,19033699:0 +g4609,9:15164868,19033699 +k4609,9:18460021,19033699:1496845 +) +(4609,10:9252213,19898779:9207808,513147,126483 +g4609,9:11943121,19898779 +g4609,9:14696943,19898779 +k4609,9:18460021,19898779:3103786 +) +(4609,10:9252213,20763859:9207808,473825,7863 +k4609,10:15547274,20763859:2912748 +k4609,10:18460021,20763859:2912747 +) +(4609,12:6630773,21630585:11829248,513147,126483 +h4609,10:6630773,21630585:0,0,0 +g4609,10:9384595,21630585 +g4609,10:10243116,21630585 +g4609,10:13270224,21630585 +k4609,11:13270224,21630585:0 +g4609,11:14436764,21630585 +k4609,11:18460021,21630585:2224949 +) +(4609,12:9252213,22495665:9207808,513147,126483 +g4609,11:11943121,22495665 +g4609,11:14696943,22495665 +g4609,11:15555464,22495665 +k4609,12:18334847,22495665:125175 +k4609,12:18460021,22495665:125174 +) +(4609,13:6630773,23362392:11829248,513147,102891 +h4609,12:6630773,23362392:0,0,0 +r4609,76:6630773,23362392:0,616038,102891 +g4609,12:7941493,23362392 +g4609,12:7941493,23362392 +g4609,12:10128429,23362392 +g4609,12:13044781,23362392 +k4609,13:16350090,23362392:2109932 +k4609,13:18460021,23362392:2109931 +) +(4609,14:6630773,24229118:11829248,505283,126483 +h4609,13:6606525,24229118:0,0,0 +g4609,13:9869562,24229118 +g4609,13:11036102,24229118 +g4609,13:13048057,24229118 +g4609,13:15738965,24229118 +k4609,13:18460021,24229118:166463 +) +(4609,14:9252213,25094198:9207808,513147,7863 +g4609,13:10110734,25094198 +k4609,14:15976534,25094198:2483487 +k4609,14:18460021,25094198:2483487 +) +(4609,16:6630773,25960925:11829248,505283,134348 +h4609,14:6630773,25960925:0,0,0 +g4609,14:10620604,25960925 +g4609,14:14179208,25960925 +k4609,15:14179208,25960925:0 +g4609,15:15345748,25960925 +k4609,15:18460021,25960925:226101 +) +(4609,16:9252213,26826005:9207808,513147,134348 +g4609,15:10110734,26826005 +g4609,15:13202722,26826005 +k4609,16:17726673,26826005:733349 +k4609,16:18460021,26826005:733348 +) +(4609,17:6630773,27692731:11829248,505283,126483 +h4609,16:6606525,27692731:0,0,0 +g4609,16:9414087,27692731 +g4609,16:10580627,27692731 +g4609,16:12592582,27692731 +g4609,16:15283490,27692731 +k4609,16:18460021,27692731:621938 +) +(4609,17:9252213,28557811:9207808,513147,7863 +g4609,16:10110734,28557811 +k4609,17:15612482,28557811:2847540 +k4609,17:18460021,28557811:2847539 +) +(4609,18:6630773,29424538:11829248,505283,126483 +h4609,17:6568514,29424538:0,0,0 +g4609,17:9877426,29424538 +g4609,17:11047243,29424538 +g4609,17:12615519,29424538 +k4609,18:16135459,29424538:2324563 +k4609,18:18460021,29424538:2324562 +) +(4609,19:6630773,30291264:11829248,513147,126483 +h4609,18:6630773,30291264:0,0,0 +g4609,18:8593576,30291264 +g4609,18:11992273,30291264 +g4609,18:13560549,30291264 +k4609,19:16598143,30291264:1861878 +k4609,19:18460021,30291264:1861878 +) +(4609,20:6630773,31157991:11829248,513147,102891 +h4609,19:6630773,31157991:0,0,0 +g4609,19:10106147,31157991 +g4609,19:13216485,31157991 +k4609,20:16226882,31157991:2233140 +k4609,20:18460021,31157991:2233139 +) +(4609,21:6630773,32024717:11829248,485622,126483 +h4609,20:6630773,32024717:0,0,0 +r4609,76:6630773,32024717:0,612105,126483 +g4609,20:7941493,32024717 +g4609,20:7941493,32024717 +g4609,20:9526808,32024717 +g4609,20:13285297,32024717 +k4609,21:16261288,32024717:2198734 +k4609,21:18460021,32024717:2198733 +) +(4609,22:6630773,32891444:11829248,485622,126483 +h4609,21:6630773,32891444:0,0,0 +g4609,21:8983515,32891444 +k4609,22:14672696,32891444:3787326 +k4609,22:18460021,32891444:3787325 +) +(4609,23:6630773,33758170:11829248,505283,102891 +h4609,22:6630773,33758170:0,0,0 +r4609,76:6630773,33758170:0,608174,102891 +g4609,22:7941493,33758170 +g4609,22:7941493,33758170 +g4609,22:11989651,33758170 +k4609,23:15623295,33758170:2836726 +k4609,23:18460021,33758170:2836726 +) +(4609,24:6630773,34624897:11829248,485622,134348 +h4609,23:6630773,34624897:0,0,0 +g4609,23:10649440,34624897 +k4609,24:14953190,34624897:3506832 +k4609,24:18460021,34624897:3506831 +) +(4609,25:6630773,35491623:11829248,505283,134348 +h4609,24:6630773,35491623:0,0,0 +r4609,76:6630773,35491623:0,639631,134348 +g4609,24:7941493,35491623 +g4609,24:7941493,35491623 +g4609,24:11024961,35491623 +k4609,25:15131120,35491623:3328902 +k4609,25:18460021,35491623:3328901 +) +(4609,26:6630773,36358350:11829248,513147,102891 +h4609,25:6630773,36358350:0,0,0 +r4609,76:6630773,36358350:0,616038,102891 +g4609,25:7941493,36358350 +g4609,25:7941493,36358350 +g4609,25:10788377,36358350 +k4609,26:15012828,36358350:3447194 +k4609,26:18460021,36358350:3447193 +) +(4609,27:6630773,37225076:11829248,505283,102891 +h4609,26:6630773,37225076:0,0,0 +g4609,26:10112700,37225076 +k4609,27:15645577,37225076:2814444 +k4609,27:18460021,37225076:2814444 +) +(4609,31:6630773,38774604:11829248,505283,102891 +h4609,30:6568514,38774604:0,0,0 +g4609,30:8828850,38774604 +k4609,31:14232294,38774604:4227728 +k4609,31:18460021,38774604:4227727 +) +(4609,32:6630773,39641330:11829248,505283,102891 +h4609,31:6630773,39641330:0,0,0 +g4609,31:8263930,39641330 +g4609,31:9051672,39641330 +k4609,32:14144475,39641330:4315546 +k4609,32:18460021,39641330:4315546 +) +(4609,33:6630773,40508057:11829248,505283,102891 +h4609,32:6630773,40508057:0,0,0 +g4609,32:8518209,40508057 +g4609,32:9688026,40508057 +k4609,33:14661882,40508057:3798140 +k4609,33:18460021,40508057:3798139 +) +(4609,34:6630773,41374783:11829248,505283,134348 +h4609,33:6630773,41374783:0,0,0 +g4609,33:8591610,41374783 +g4609,33:9986216,41374783 +k4609,34:14611747,41374783:3848274 +k4609,34:18460021,41374783:3848274 +) +(4609,35:6630773,42241510:11829248,513147,126483 +h4609,34:6630773,42241510:0,0,0 +g4609,34:9620525,42241510 +g4609,34:13590040,42241510 +g4609,34:16778366,42241510 +k4609,35:18207052,42241510:252970 +k4609,35:18460021,42241510:252969 +) +(4609,36:6630773,43108236:11829248,513147,126483 +h4609,35:6630773,43108236:0,0,0 +g4609,35:8071254,43108236 +g4609,35:9237794,43108236 +g4609,35:12227546,43108236 +k4609,35:18460021,43108236:2462189 +) +(4609,36:9252213,43973316:9207808,485622,11795 +k4609,36:15264486,43973316:3195535 +k4609,36:18460021,43973316:3195535 +) +(4609,37:6630773,44840043:11829248,505283,102891 +h4609,36:6630773,44840043:0,0,0 +g4609,36:11250405,44840043 +k4609,37:15452902,44840043:3007120 +k4609,37:18460021,44840043:3007119 +) +(4609,38:6630773,45706769:11829248,505283,102891 +h4609,37:6630773,45706769:0,0,0 +g4609,37:9962623,45706769 +k4609,38:14799180,45706769:3660841 +k4609,38:18460021,45706769:3660841 +) +] +k4609,76:19606901,45706769:1146880 +r4609,76:19606901,45706769:0,32651979,126483 +k4609,76:20753781,45706769:1146880 +[4609,76:20753781,45706769:11829248,32525496,102891 +(4609,39:20753781,13836633:11829248,505283,134348 +h4609,38:20691522,13836633:0,0,0 +g4609,38:24617783,13836633 +k4609,39:29198095,13836633:3384935 +k4609,39:32583029,13836633:3384934 +) +(4609,40:20753781,14703254:11829248,505283,102891 +h4609,39:20691522,14703254:0,0,0 +g4609,39:24805216,14703254 +k4609,40:29291811,14703254:3291218 +k4609,40:32583029,14703254:3291218 +) +(4609,41:20753781,15569874:11829248,505283,102891 +h4609,40:20753781,15569874:0,0,0 +g4609,40:23464350,15569874 +g4609,40:27113394,15569874 +k4609,41:30246671,15569874:2336359 +k4609,41:32583029,15569874:2336358 +) +(4609,42:20753781,16436495:11829248,505283,126483 +h4609,41:20753781,16436495:0,0,0 +g4609,41:22112997,16436495 +g4609,41:24093495,16436495 +g4609,41:25260035,16436495 +g4609,41:27240533,16436495 +g4609,41:28599749,16436495 +k4609,41:32583029,16436495:2791835 +) +(4609,42:23375221,17301575:9207808,505283,126483 +g4609,41:26374148,17301575 +k4609,42:30117237,17301575:2465792 +k4609,42:32583029,17301575:2465792 +) +(4609,43:20753781,18168196:11829248,505283,102891 +h4609,42:20691522,18168196:0,0,0 +g4609,42:23576416,18168196 +k4609,43:28667581,18168196:3915449 +k4609,43:32583029,18168196:3915448 +) +(4609,48:20753781,19715853:11829248,485622,102891 +h4609,46:20753781,19715853:0,0,0 +k4609,46:21576112,19715853:195152 +k4609,46:22741852,19715853:195152 +k4609,46:23907592,19715853:195152 +k4609,46:25073332,19715853:195152 +k4609,46:26239071,19715853:195151 +k4609,46:27404811,19715853:195152 +k4609,46:28570551,19715853:195152 +k4609,46:29736291,19715853:195152 +k4609,46:31300490,19715853:195152 +k4609,46:32583029,19715853:0 +) +(4609,48:23375221,20580933:9207808,485622,102891 +g4609,46:24923836,20580933 +g4609,46:26492112,20580933 +g4609,47:28060388,20580933 +k4609,48:30919397,20580933:1663632 +k4609,48:32583029,20580933:1663632 +) +(4609,49:20753781,21447554:11829248,485622,102891 +h4609,48:20753781,21447554:0,0,0 +g4609,48:22409875,21447554 +g4609,48:23579692,21447554 +g4609,48:24749509,21447554 +g4609,48:25919326,21447554 +g4609,48:27089143,21447554 +g4609,48:28258960,21447554 +g4609,48:29428777,21447554 +g4609,48:30997053,21447554 +k4609,48:32583029,21447554:303437 +) +(4609,49:23375221,22312634:9207808,485622,102891 +g4609,48:24923836,22312634 +g4609,48:26492112,22312634 +k4609,49:30135259,22312634:2447770 +k4609,49:32583029,22312634:2447770 +) +(4609,50:20753781,23179254:11829248,505283,102891 +h4609,49:20753781,23179254:0,0,0 +g4609,49:24360882,23179254 +g4609,49:26805374,23179254 +k4609,50:30291890,23179254:2291139 +k4609,50:32583029,23179254:2291139 +) +(4609,51:20753781,24045875:11829248,513147,134348 +h4609,50:20753781,24045875:0,0,0 +g4609,50:24399548,24045875 +g4609,50:27614088,24045875 +g4609,50:28780628,24045875 +k4609,51:31793975,24045875:789055 +k4609,51:32583029,24045875:789054 +) +(4609,52:20753781,24912496:11829248,505283,134348 +h4609,51:20753781,24912496:0,0,0 +g4609,51:23663579,24912496 +g4609,51:27379470,24912496 +g4609,51:28972650,24912496 +g4609,51:30959701,24912496 +k4609,51:32583029,24912496:340789 +) +(4609,52:23375221,25777576:9207808,485622,11795 +k4609,52:29338342,25777576:3244688 +k4609,52:32583029,25777576:3244687 +) +(4609,53:20753781,26644196:11829248,505283,126483 +h4609,52:20753781,26644196:0,0,0 +g4609,52:23927689,26644196 +g4609,52:26262081,26644196 +g4609,52:28461469,26644196 +k4609,53:30920708,26644196:1662321 +k4609,53:32583029,26644196:1662321 +) +(4609,54:20753781,27510817:11829248,505283,134348 +h4609,53:20753781,27510817:0,0,0 +g4609,53:23927689,27510817 +g4609,53:25992728,27510817 +g4609,53:29584100,27510817 +k4609,54:31472193,27510817:1110836 +k4609,54:32583029,27510817:1110836 +) +(4609,55:20753781,28377438:11829248,505283,134348 +h4609,54:20753781,28377438:0,0,0 +g4609,54:23927689,28377438 +g4609,54:26496700,28377438 +k4609,55:29928493,28377438:2654536 +k4609,55:32583029,28377438:2654536 +) +(4609,56:20753781,29244058:11829248,513147,102891 +h4609,55:20753781,29244058:0,0,0 +r4609,76:20753781,29244058:0,616038,102891 +g4609,55:22064501,29244058 +g4609,55:22064501,29244058 +g4609,55:24749511,29244058 +g4609,55:25608032,29244058 +g4609,55:29285912,29244058 +k4609,56:31332930,29244058:1250100 +k4609,56:32583029,29244058:1250099 +) +(4609,57:20753781,30110679:11829248,505283,134348 +h4609,56:20753781,30110679:0,0,0 +r4609,76:20753781,30110679:0,639631,134348 +g4609,56:22064501,30110679 +g4609,56:22064501,30110679 +g4609,56:24347775,30110679 +g4609,56:27518406,30110679 +k4609,56:32583029,30110679:3873178 +) +(4609,57:23375221,30975759:9207808,505283,102891 +g4609,56:27621298,30975759 +k4609,57:30500623,30975759:2082407 +k4609,57:32583029,30975759:2082406 +) +(4609,58:20753781,31842379:11829248,505283,126483 +h4609,57:20753781,31842379:0,0,0 +r4609,76:20753781,31842379:0,631766,126483 +g4609,57:22064501,31842379 +g4609,57:22064501,31842379 +g4609,57:26945622,31842379 +g4609,57:30723117,31842379 +k4609,58:32051532,31842379:531497 +k4609,58:32583029,31842379:531497 +) +(4609,59:20753781,32709000:11829248,513147,134348 +h4609,58:20753781,32709000:0,0,0 +r4609,76:20753781,32709000:0,647495,134348 +g4609,58:22064501,32709000 +g4609,58:22064501,32709000 +g4609,58:24925147,32709000 +g4609,58:25957339,32709000 +k4609,59:29668643,32709000:2914386 +k4609,59:32583029,32709000:2914386 +) +(4609,60:20753781,33575621:11829248,505283,134348 +h4609,59:20753781,33575621:0,0,0 +r4609,76:20753781,33575621:0,639631,134348 +g4609,59:22064501,33575621 +g4609,59:22064501,33575621 +g4609,59:25792844,33575621 +g4609,59:29142389,33575621 +k4609,60:31251338,33575621:1331692 +k4609,60:32583029,33575621:1331691 +) +(4609,61:20753781,34442241:11829248,505283,102891 +h4609,60:20753781,34442241:0,0,0 +g4609,60:23764505,34442241 +g4609,60:26556338,34442241 +g4609,60:29407154,34442241 +k4609,61:31582950,34442241:1000080 +k4609,61:32583029,34442241:1000079 +) +(4609,62:20753781,35308862:11829248,505283,102891 +h4609,61:20753781,35308862:0,0,0 +g4609,61:23359492,35308862 +k4609,62:28568949,35308862:4014080 +k4609,62:32583029,35308862:4014080 +) +(4609,63:20753781,36175483:11829248,505283,126483 +h4609,62:20753781,36175483:0,0,0 +r4609,76:20753781,36175483:0,631766,126483 +g4609,62:22064501,36175483 +g4609,62:22064501,36175483 +g4609,62:23017394,36175483 +g4609,62:24771792,36175483 +g4609,62:27390610,36175483 +k4609,63:30584508,36175483:1998521 +k4609,63:32583029,36175483:1998521 +) +(4609,64:20753781,37042103:11829248,505283,7863 +h4609,63:20753781,37042103:0,0,0 +g4609,63:23185822,37042103 +g4609,63:24576496,37042103 +k4609,64:29636203,37042103:2946826 +k4609,64:32583029,37042103:2946826 +) +(4609,65:20753781,37908724:11829248,505283,102891 +h4609,64:20753781,37908724:0,0,0 +r4609,76:20753781,37908724:0,608174,102891 +g4609,64:22064501,37908724 +g4609,64:22064501,37908724 +g4609,64:25412080,37908724 +k4609,65:29958313,37908724:2624717 +k4609,65:32583029,37908724:2624716 +) +(4609,66:20753781,38775345:11829248,505283,134348 +h4609,65:20753781,38775345:0,0,0 +r4609,76:20753781,38775345:0,639631,134348 +g4609,65:22064501,38775345 +g4609,65:22064501,38775345 +g4609,65:24507027,38775345 +k4609,66:29505786,38775345:3077243 +k4609,66:32583029,38775345:3077243 +) +(4609,67:20753781,39641965:11829248,505283,134348 +h4609,66:20753781,39641965:0,0,0 +r4609,76:20753781,39641965:0,639631,134348 +g4609,66:22064501,39641965 +g4609,66:22064501,39641965 +g4609,66:25057530,39641965 +g4609,66:27660620,39641965 +g4609,66:30216524,39641965 +k4609,67:32360535,39641965:222495 +k4609,67:32583029,39641965:222494 +) +(4609,68:20753781,40508586:11829248,505283,126483 +h4609,67:20753781,40508586:0,0,0 +g4609,67:23129461,40508586 +g4609,67:26056954,40508586 +k4609,68:30669378,40508586:1913652 +k4609,68:32583029,40508586:1913651 +) +(4609,69:20753781,41375206:11829248,485622,102891 +h4609,68:20753781,41375206:0,0,0 +g4609,68:23324758,41375206 +k4609,69:28551582,41375206:4031447 +k4609,69:32583029,41375206:4031447 +) +(4609,70:20753781,42241827:11829248,505283,7863 +h4609,69:20753781,42241827:0,0,0 +k4609,70:27676677,42241827:4906353 +k4609,70:32583029,42241827:4906352 +) +(4609,71:20753781,43108448:11829248,513147,102891 +h4609,70:20753781,43108448:0,0,0 +r4609,76:20753781,43108448:0,616038,102891 +g4609,70:22064501,43108448 +g4609,70:22064501,43108448 +g4609,70:25849860,43108448 +k4609,71:30565831,43108448:2017199 +k4609,71:32583029,43108448:2017198 +) +(4609,72:20753781,43975068:11829248,485622,102891 +h4609,71:20753781,43975068:0,0,0 +r4609,76:20753781,43975068:0,588513,102891 +g4609,71:22064501,43975068 +g4609,71:22064501,43975068 +g4609,71:24505717,43975068 +k4609,72:29142062,43975068:3440968 +k4609,72:32583029,43975068:3440967 +) +(4609,73:20753781,44841689:11829248,513147,134348 +h4609,72:20753781,44841689:0,0,0 +g4609,72:24706912,44841689 +g4609,72:25565433,44841689 +g4609,72:28196703,44841689 +k4609,72:32583029,44841689:2698119 +) +(4609,73:23375221,45706769:9207808,505283,102891 +g4609,72:26564202,45706769 +k4609,73:29962244,45706769:2620785 +k4609,73:32583029,45706769:2620785 +) +] +(4609,76:32583029,45706769:0,355205,126483 +h4609,76:32583029,45706769:420741,355205,126483 +k4609,76:32583029,45706769:-420741 +) +) +] +(4609,76:32583029,45706769:0,0,0 +g4609,76:32583029,45706769 +) +) +] +(4609,76:6630773,47279633:25952256,485622,11795 +(4609,76:6630773,47279633:25952256,485622,11795 +k4609,76:19009213,47279633:12378440 +k4609,76:32583030,47279633:12378440 +) +) +] +(4609,76:4262630,4025873:0,0,0 +[4609,76:-473656,4025873:0,0,0 +(4609,76:-473656,-710413:0,0,0 +(4609,76:-473656,-710413:0,0,0 +g4609,76:-473656,-710413 +) +g4609,76:-473656,-710413 ) ] ) ] !20859 -}434 +}435 !12 -{435 -[4605,170:4262630,47279633:28320399,43253760,0 -(4605,170:4262630,4025873:0,0,0 -[4605,170:-473656,4025873:0,0,0 -(4605,170:-473656,-710413:0,0,0 -(4605,170:-473656,-644877:0,0,0 -k4605,170:-473656,-644877:-65536 +{436 +[4609,170:4262630,47279633:28320399,43253760,0 +(4609,170:4262630,4025873:0,0,0 +[4609,170:-473656,4025873:0,0,0 +(4609,170:-473656,-710413:0,0,0 +(4609,170:-473656,-644877:0,0,0 +k4609,170:-473656,-644877:-65536 ) -(4605,170:-473656,4736287:0,0,0 -k4605,170:-473656,4736287:5209943 +(4609,170:-473656,4736287:0,0,0 +k4609,170:-473656,4736287:5209943 ) -g4605,170:-473656,-710413 +g4609,170:-473656,-710413 ) ] ) -[4605,170:6630773,47279633:25952256,43253760,0 -[4605,170:6630773,4812305:25952256,786432,0 -(4605,170:6630773,4812305:25952256,505283,11795 -(4605,170:6630773,4812305:25952256,505283,11795 -g4605,170:3078558,4812305 -[4605,170:3078558,4812305:0,0,0 -(4605,170:3078558,2439708:0,1703936,0 -k4605,170:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,170:2537886,2439708:1179648,16384,0 +[4609,170:6630773,47279633:25952256,43253760,0 +[4609,170:6630773,4812305:25952256,786432,0 +(4609,170:6630773,4812305:25952256,505283,11795 +(4609,170:6630773,4812305:25952256,505283,11795 +g4609,170:3078558,4812305 +[4609,170:3078558,4812305:0,0,0 +(4609,170:3078558,2439708:0,1703936,0 +k4609,170:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,170:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,170:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,170:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,170:3078558,4812305:0,0,0 -(4605,170:3078558,2439708:0,1703936,0 -g4605,170:29030814,2439708 -g4605,170:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,170:36151628,1915420:16384,1179648,0 +[4609,170:3078558,4812305:0,0,0 +(4609,170:3078558,2439708:0,1703936,0 +g4609,170:29030814,2439708 +g4609,170:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,170:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,170:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,170:37855564,2439708:1179648,16384,0 ) ) -k4605,170:3078556,2439708:-34777008 +k4609,170:3078556,2439708:-34777008 ) ] -[4605,170:3078558,4812305:0,0,0 -(4605,170:3078558,49800853:0,16384,2228224 -k4605,170:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,170:2537886,49800853:1179648,16384,0 +[4609,170:3078558,4812305:0,0,0 +(4609,170:3078558,49800853:0,16384,2228224 +k4609,170:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,170:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,170:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,170:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,170:3078558,4812305:0,0,0 -(4605,170:3078558,49800853:0,16384,2228224 -g4605,170:29030814,49800853 -g4605,170:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,170:36151628,51504789:16384,1179648,0 +[4609,170:3078558,4812305:0,0,0 +(4609,170:3078558,49800853:0,16384,2228224 +g4609,170:29030814,49800853 +g4609,170:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,170:36151628,51504789:16384,1179648,0 ) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 ) ] ) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,170:37855564,49800853:1179648,16384,0 -) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,170:37855564,49800853:1179648,16384,0 ) -k4605,170:3078556,49800853:-34777008 -) -] -g4605,170:6630773,4812305 -k4605,170:28201292,4812305:20375142 -g4605,170:30884336,4812305 -) -) -] -[4605,170:6630773,45706769:25952256,40108032,0 -(4605,170:6630773,45706769:25952256,40108032,0 -(4605,170:6630773,45706769:0,0,0 -g4605,170:6630773,45706769 -) -[4605,170:6630773,45706769:25952256,40108032,0 -(4605,170:6630773,45706769:25952256,40108032,126483 -[4605,170:6630773,45706769:11829248,40108032,7863 -(4605,74:6630773,6254097:11829248,485622,126483 -h4605,73:6630773,6254097:0,0,0 -g4605,73:10583904,6254097 -g4605,73:14033719,6254097 -k4605,74:17197798,6254097:1262224 -k4605,74:18460021,6254097:1262223 -) -(4605,75:6630773,7131902:11829248,505283,126483 -h4605,74:6630773,7131902:0,0,0 -g4605,74:10243772,7131902 -g4605,74:11939188,7131902 -g4605,74:15828749,7131902 -k4605,75:17742074,7131902:717948 -k4605,75:18460021,7131902:717947 -) -(4605,76:6630773,8009707:11829248,505283,102891 -h4605,75:6630773,8009707:0,0,0 -g4605,75:10423341,8009707 -g4605,75:14312902,8009707 -k4605,76:16984150,8009707:1475871 -k4605,76:18460021,8009707:1475871 -) -(4605,77:6630773,8887511:11829248,505283,102891 -h4605,76:6630773,8887511:0,0,0 -g4605,76:9423917,8887511 -k4605,77:14340428,8887511:4119593 -k4605,77:18460021,8887511:4119593 -) -(4605,78:6630773,9765316:11829248,513147,102891 -h4605,77:6630773,9765316:0,0,0 -g4605,77:9117864,9765316 -g4605,77:9976385,9765316 -g4605,77:13251219,9765316 -g4605,77:14974160,9765316 -k4605,78:17314779,9765316:1145242 -k4605,78:18460021,9765316:1145242 -) -(4605,80:6630773,10643121:11829248,505283,134348 -h4605,78:6630773,10643121:0,0,0 -g4605,78:10568176,10643121 -g4605,78:14126780,10643121 -k4605,79:14126780,10643121:0 -g4605,79:15293320,10643121 -k4605,79:18460021,10643121:278529 -) -(4605,80:9252213,11508201:9207808,513147,134348 -g4605,79:10110734,11508201 -g4605,79:13202722,11508201 -k4605,80:17700459,11508201:759563 -k4605,80:18460021,11508201:759562 -) -(4605,81:6630773,12386006:11829248,505283,102891 -h4605,80:6630773,12386006:0,0,0 -g4605,80:10484289,12386006 -k4605,81:15821541,12386006:2638480 -k4605,81:18460021,12386006:2638480 -) -(4605,82:6630773,13263810:11829248,505283,102891 -h4605,81:6630773,13263810:0,0,0 -r4605,170:6630773,13263810:0,608174,102891 -g4605,81:7941493,13263810 -g4605,81:7941493,13263810 -g4605,81:10727428,13263810 -k4605,82:15181583,13263810:3278439 -k4605,82:18460021,13263810:3278438 -) -(4605,83:6630773,14141615:11829248,485622,126483 -h4605,82:6630773,14141615:0,0,0 -r4605,170:6630773,14141615:0,612105,126483 -g4605,82:7941493,14141615 -g4605,82:7941493,14141615 -g4605,82:13219762,14141615 -k4605,83:16427750,14141615:2032272 -k4605,83:18460021,14141615:2032271 -) -(4605,84:6630773,15019420:11829248,485622,126483 -h4605,83:6630773,15019420:0,0,0 -r4605,170:6630773,15019420:0,612105,126483 -g4605,83:7941493,15019420 -g4605,83:7941493,15019420 -g4605,83:11782558,15019420 -k4605,84:15718978,15019420:2741043 -k4605,84:18460021,15019420:2741043 -) -(4605,85:6630773,15897225:11829248,485622,102891 -h4605,84:6630773,15897225:0,0,0 -r4605,170:6630773,15897225:0,588513,102891 -g4605,84:7941493,15897225 -g4605,84:7941493,15897225 -g4605,84:10821145,15897225 -k4605,85:15238272,15897225:3221750 -k4605,85:18460021,15897225:3221749 -) -(4605,86:6630773,16775029:11829248,485622,126483 -h4605,85:6630773,16775029:0,0,0 -r4605,170:6630773,16775029:0,612105,126483 -g4605,85:7941493,16775029 -g4605,85:7941493,16775029 -g4605,85:11472572,16775029 -k4605,86:15554155,16775029:2905867 -k4605,86:18460021,16775029:2905866 -) -(4605,87:6630773,17652834:11829248,485622,102891 -h4605,86:6630773,17652834:0,0,0 -g4605,86:8808534,17652834 -g4605,86:9579892,17652834 -g4605,86:10749709,17652834 -g4605,86:11919526,17652834 -g4605,86:13487802,17652834 -k4605,87:17323298,17652834:1136724 -k4605,87:18460021,17652834:1136723 -) -(4605,91:6630773,19398076:11829248,505283,7863 -h4605,90:6630773,19398076:0,0,0 -k4605,91:13240079,19398076:5219943 -k4605,91:18460021,19398076:5219942 -) -(4605,92:6630773,20275881:11829248,505283,126483 -h4605,91:6630773,20275881:0,0,0 -r4605,170:6630773,20275881:0,631766,126483 -g4605,91:7941493,20275881 -g4605,91:7941493,20275881 -g4605,91:11785179,20275881 -g4605,91:12597170,20275881 -g4605,91:13815484,20275881 -g4605,91:14459702,20275881 -g4605,91:17252846,20275881 -k4605,92:18444292,20275881:15730 -k4605,92:18460021,20275881:15729 -) -(4605,93:6630773,21153685:11829248,505283,134348 -h4605,92:6630773,21153685:0,0,0 -r4605,170:6630773,21153685:0,639631,134348 -g4605,92:7941493,21153685 -g4605,92:7941493,21153685 -g4605,92:10507227,21153685 -g4605,92:12095819,21153685 -g4605,92:13733563,21153685 -k4605,93:17446178,21153685:1013843 -k4605,93:18460021,21153685:1013843 -) -(4605,94:6630773,22031490:11829248,505283,134348 -h4605,93:6630773,22031490:0,0,0 -r4605,170:6630773,22031490:0,639631,134348 -g4605,93:7941493,22031490 -g4605,93:7941493,22031490 -g4605,93:10174304,22031490 -g4605,93:11762896,22031490 -g4605,93:13400640,22031490 -k4605,94:17279717,22031490:1180305 -k4605,94:18460021,22031490:1180304 -) -(4605,95:6630773,22909295:11829248,513147,7863 -h4605,94:6630773,22909295:0,0,0 -g4605,94:8219365,22909295 -k4605,95:14277841,22909295:4182180 -k4605,95:18460021,22909295:4182180 -) -(4605,96:6630773,23787100:11829248,505283,126483 -h4605,95:6630773,23787100:0,0,0 -r4605,170:6630773,23787100:0,631766,126483 -g4605,95:7941493,23787100 -g4605,95:7941493,23787100 -g4605,95:12582097,23787100 -k4605,96:16880276,23787100:1579746 -k4605,96:18460021,23787100:1579745 -) -(4605,97:6630773,24664904:11829248,513147,102891 -h4605,96:6630773,24664904:0,0,0 -g4605,96:8219365,24664904 -g4605,96:10798862,24664904 -k4605,97:15779599,24664904:2680423 -k4605,97:18460021,24664904:2680422 -) -(4605,98:6630773,25542709:11829248,513147,134348 -h4605,97:6630773,25542709:0,0,0 -r4605,170:6630773,25542709:0,647495,134348 -g4605,97:7941493,25542709 -g4605,97:7941493,25542709 -g4605,97:10959425,25542709 -g4605,97:13166677,25542709 -k4605,98:16411038,25542709:2048984 -k4605,98:18460021,25542709:2048983 -) -(4605,99:6630773,26420514:11829248,505283,134348 -h4605,98:6630773,26420514:0,0,0 -r4605,170:6630773,26420514:0,639631,134348 -g4605,98:7941493,26420514 -g4605,98:7941493,26420514 -g4605,98:11278586,26420514 -k4605,99:15457162,26420514:3002860 -k4605,99:18460021,26420514:3002859 -) -(4605,100:6630773,27298319:11829248,505283,134348 -h4605,99:6630773,27298319:0,0,0 -r4605,170:6630773,27298319:0,639631,134348 -g4605,99:7941493,27298319 -g4605,99:7941493,27298319 -g4605,99:9529430,27298319 -g4605,99:10589802,27298319 -g4605,99:12279320,27298319 -g4605,99:14521306,27298319 -k4605,100:17088352,27298319:1371669 -k4605,100:18460021,27298319:1371669 -) -(4605,101:6630773,28176123:11829248,505283,134348 -h4605,100:6630773,28176123:0,0,0 -r4605,170:6630773,28176123:0,639631,134348 -g4605,100:7941493,28176123 -g4605,100:7941493,28176123 -g4605,100:10870297,28176123 -g4605,100:13956387,28176123 -k4605,101:16796062,28176123:1663959 -k4605,101:18460021,28176123:1663959 -) -(4605,102:6630773,29053928:11829248,505283,134348 -h4605,101:6630773,29053928:0,0,0 -r4605,170:6630773,29053928:0,639631,134348 -g4605,101:7941493,29053928 -g4605,101:7941493,29053928 -g4605,101:10870297,29053928 -g4605,101:12777394,29053928 -g4605,101:14345670,29053928 -k4605,102:17000534,29053928:1459487 -k4605,102:18460021,29053928:1459487 -) -(4605,103:6630773,29931733:11829248,505283,134348 -h4605,102:6630773,29931733:0,0,0 -r4605,170:6630773,29931733:0,639631,134348 -g4605,102:7941493,29931733 -g4605,102:7941493,29931733 -g4605,102:10975809,29931733 -k4605,103:15315604,29931733:3144418 -k4605,103:18460021,29931733:3144417 -) -(4605,104:6630773,30809538:11829248,505283,134348 -h4605,103:6630773,30809538:0,0,0 -r4605,170:6630773,30809538:0,639631,134348 -g4605,103:7941493,30809538 -g4605,103:7941493,30809538 -g4605,103:11641655,30809538 -k4605,104:15648527,30809538:2811495 -k4605,104:18460021,30809538:2811494 -) -(4605,105:6630773,31687342:11829248,485622,134348 -h4605,104:6630773,31687342:0,0,0 -r4605,170:6630773,31687342:0,619970,134348 -g4605,104:7941493,31687342 -g4605,104:7941493,31687342 -g4605,104:12525081,31687342 -g4605,104:14093357,31687342 -k4605,105:16874378,31687342:1585644 -k4605,105:18460021,31687342:1585643 -) -(4605,106:6630773,32565147:11829248,505283,126483 -h4605,105:6630773,32565147:0,0,0 -g4605,105:8219365,32565147 -g4605,105:12674502,32565147 -g4605,105:13489769,32565147 -g4605,105:14708083,32565147 -k4605,105:18460021,32565147:754322 -) -(4605,106:9252213,33430227:9207808,485622,11795 -k4605,106:15205503,33430227:3254518 -k4605,106:18460021,33430227:3254518 -) -(4605,107:6630773,34308032:11829248,505283,7863 -h4605,106:6630773,34308032:0,0,0 -g4605,106:8219365,34308032 -k4605,107:13972116,34308032:4487906 -k4605,107:18460021,34308032:4487905 -) -(4605,108:6630773,35185837:11829248,505283,102891 -h4605,107:6630773,35185837:0,0,0 -r4605,170:6630773,35185837:0,608174,102891 -g4605,107:7941493,35185837 -g4605,107:7941493,35185837 -g4605,107:12942545,35185837 -k4605,108:16099742,35185837:2360279 -k4605,108:18460021,35185837:2360279 -) -(4605,109:6630773,36063641:11829248,485622,134348 -h4605,108:6630773,36063641:0,0,0 -r4605,170:6630773,36063641:0,619970,134348 -g4605,108:7941493,36063641 -g4605,108:7941493,36063641 -g4605,108:10188722,36063641 -k4605,109:14722831,36063641:3737191 -k4605,109:18460021,36063641:3737190 -) -(4605,110:6630773,36941446:11829248,505283,134348 -h4605,109:6630773,36941446:0,0,0 -r4605,170:6630773,36941446:0,639631,134348 -g4605,109:7941493,36941446 -g4605,109:7941493,36941446 -g4605,109:9649361,36941446 -g4605,109:12369760,36941446 -k4605,110:16565048,36941446:1894974 -k4605,110:18460021,36941446:1894973 -) -(4605,111:6630773,37819251:11829248,505283,7863 -h4605,110:6630773,37819251:0,0,0 -g4605,110:8219365,37819251 -k4605,111:15379174,37819251:3080848 -k4605,111:18460021,37819251:3080847 -) -(4605,112:6630773,38697056:11829248,485622,102891 -h4605,111:6630773,38697056:0,0,0 -r4605,170:6630773,38697056:0,588513,102891 -g4605,111:7941493,38697056 -g4605,111:7941493,38697056 -g4605,111:12104995,38697056 -k4605,112:15880197,38697056:2579825 -k4605,112:18460021,38697056:2579824 -) -(4605,113:6630773,39574860:11829248,485622,126483 -h4605,112:6630773,39574860:0,0,0 -r4605,170:6630773,39574860:0,612105,126483 -g4605,112:7941493,39574860 -g4605,112:7941493,39574860 -g4605,112:11146203,39574860 -k4605,113:15400801,39574860:3059221 -k4605,113:18460021,39574860:3059220 -) -(4605,114:6630773,40452665:11829248,505283,102891 -h4605,113:6630773,40452665:0,0,0 -r4605,170:6630773,40452665:0,608174,102891 -g4605,113:7941493,40452665 -g4605,113:7941493,40452665 -g4605,113:9530085,40452665 -g4605,113:11747168,40452665 -k4605,114:15701283,40452665:2758738 -k4605,114:18460021,40452665:2758738 -) -(4605,115:6630773,41330470:11829248,505283,102891 -h4605,114:6568514,41330470:0,0,0 -g4605,114:10518368,41330470 -g4605,114:12086644,41330470 -g4605,114:13654920,41330470 -k4605,115:16645329,41330470:1814693 -k4605,115:18460021,41330470:1814692 -) -(4605,116:6630773,42208275:11829248,505283,102891 -h4605,115:6568514,42208275:0,0,0 -g4605,115:10014396,42208275 -g4605,115:11582672,42208275 -g4605,115:13150948,42208275 -g4605,115:14719224,42208275 -k4605,116:17177481,42208275:1282541 -k4605,116:18460021,42208275:1282540 -) -(4605,117:6630773,43086079:11829248,505283,126483 -h4605,116:6568514,43086079:0,0,0 -g4605,116:9393770,43086079 -g4605,116:10962046,43086079 -g4605,116:12530322,43086079 -k4605,117:16092860,43086079:2367161 -k4605,117:18460021,43086079:2367161 -) -(4605,118:6630773,43963884:11829248,505283,134348 -h4605,117:6630773,43963884:0,0,0 -g4605,117:9397703,43963884 -g4605,117:12060430,43963884 -g4605,117:13226970,43963884 -k4605,117:18460021,43963884:2235434 -) -(4605,118:9252213,44828964:9207808,505283,134348 -k4605,118:15001031,44828964:3458990 -k4605,118:18460021,44828964:3458990 -) -(4605,119:6630773,45706769:11829248,505283,7863 -h4605,118:6630773,45706769:0,0,0 -k4605,119:13714232,45706769:4745790 -k4605,119:18460021,45706769:4745789 -) -] -k4605,170:19606901,45706769:1146880 -r4605,170:19606901,45706769:0,40234515,126483 -k4605,170:20753781,45706769:1146880 -[4605,170:20753781,45706769:11829248,40108032,126483 -(4605,120:20753781,6254097:11829248,505283,134348 -h4605,119:20753781,6254097:0,0,0 -r4605,170:20753781,6254097:0,639631,134348 -g4605,119:22064501,6254097 -g4605,119:22064501,6254097 -g4605,119:24596156,6254097 -g4605,119:25762696,6254097 -g4605,119:28350712,6254097 -k4605,119:32583029,6254097:2073561 -) -(4605,120:23375221,7119177:9207808,505283,7863 -k4605,120:29147960,7119177:3435070 -k4605,120:32583029,7119177:3435069 -) -(4605,121:20753781,7985357:11829248,505283,126483 -h4605,120:20753781,7985357:0,0,0 -g4605,120:23628190,7985357 -g4605,120:26747703,7985357 -k4605,121:30263055,7985357:2319975 -k4605,121:32583029,7985357:2319974 -) -(4605,122:20753781,8851536:11829248,505283,126483 -h4605,121:20753781,8851536:0,0,0 -g4605,121:23136014,8851536 -g4605,121:26267324,8851536 -k4605,122:30833218,8851536:1749812 -k4605,122:32583029,8851536:1749811 -) -(4605,123:20753781,9717716:11829248,505283,102891 -h4605,122:20753781,9717716:0,0,0 -r4605,170:20753781,9717716:0,608174,102891 -g4605,122:22064501,9717716 -g4605,122:22064501,9717716 -g4605,122:25713545,9717716 -k4605,123:30099215,9717716:2483815 -k4605,123:32583029,9717716:2483814 -) -(4605,125:20753781,10583895:11829248,505283,126483 -h4605,123:20691522,10583895:0,0,0 -g4605,123:23103901,10583895 -g4605,123:26195234,10583895 -g4605,123:27763510,10583895 -g4605,123:29331786,10583895 -k4605,123:32583029,10583895:445647 -) -(4605,125:23375221,11448975:9207808,485622,102891 -g4605,123:24943497,11448975 -g4605,123:26511773,11448975 -g4605,124:28080049,11448975 -k4605,125:30929228,11448975:1653802 -k4605,125:32583029,11448975:1653801 -) -(4605,126:20753781,12315155:11829248,505283,126483 -h4605,125:20691522,12315155:0,0,0 -g4605,125:23349006,12315155 -k4605,126:28563706,12315155:4019323 -k4605,126:32583029,12315155:4019323 -) -(4605,130:20753781,13855019:11829248,505283,126483 -h4605,129:20753781,13855019:0,0,0 -g4605,129:23307718,13855019 -k4605,130:28343833,13855019:4239197 -k4605,130:32583029,13855019:4239196 -) -(4605,131:20753781,14721199:11829248,485622,102891 -h4605,130:20753781,14721199:0,0,0 -g4605,130:23124873,14721199 -k4605,131:28451640,14721199:4131390 -k4605,131:32583029,14721199:4131389 -) -(4605,133:20753781,15587378:11829248,505283,126483 -h4605,131:20753781,15587378:0,0,0 -g4605,131:23926378,15587378 -g4605,131:27611467,15587378 -k4605,131:32583029,15587378:772671 -) -(4605,133:23375221,16452458:9207808,505283,126483 -g4605,132:24541761,16452458 -g4605,132:28226850,16452458 -k4605,132:32583029,16452458:157288 -) -(4605,133:23375221,17317538:9207808,505283,7863 -k4605,133:29422228,17317538:3160801 -k4605,133:32583029,17317538:3160801 -) -(4605,134:20753781,18183718:11829248,505283,102891 -h4605,133:20753781,18183718:0,0,0 -g4605,133:22054670,18183718 -$4605,133:22261764,18183718 -$4605,133:22623523,18183718 -g4605,133:23203516,18183718 -g4605,133:24370056,18183718 -g4605,133:27256916,18183718 -k4605,133:32583029,18183718:2049968 -) -(4605,134:23375221,19048798:9207808,473825,126483 -k4605,134:29445166,19048798:3137864 -k4605,134:32583029,19048798:3137863 -) -(4605,135:20753781,19914977:11829248,505283,102891 -h4605,134:20753781,19914977:0,0,0 -g4605,134:22773600,19914977 -k4605,135:28276003,19914977:4307026 -k4605,135:32583029,19914977:4307026 -) -(4605,136:20753781,20781157:11829248,505283,134348 -h4605,135:20753781,20781157:0,0,0 -g4605,135:24016163,20781157 -k4605,136:28994278,20781157:3588752 -k4605,136:32583029,20781157:3588751 -) -(4605,137:20753781,21647336:11829248,513147,102891 -h4605,136:20753781,21647336:0,0,0 -r4605,170:20753781,21647336:0,616038,102891 -g4605,136:22064501,21647336 -g4605,136:22064501,21647336 -g4605,136:23489909,21647336 -g4605,136:25176150,21647336 -g4605,136:26744426,21647336 -k4605,137:31022944,21647336:1560085 -k4605,137:32583029,21647336:1560085 -) -(4605,138:20753781,22513516:11829248,485622,102891 -h4605,137:20753781,22513516:0,0,0 -g4605,137:24355639,22513516 -g4605,137:25206296,22513516 -g4605,137:26024185,22513516 -k4605,138:29901296,22513516:2681734 -k4605,138:32583029,22513516:2681733 -) -(4605,139:20753781,23379695:11829248,513147,102891 -h4605,138:20691522,23379695:0,0,0 -g4605,138:24414621,23379695 -k4605,139:29096514,23379695:3486516 -k4605,139:32583029,23379695:3486515 -) -(4605,143:20753781,24919560:11829248,485622,102891 -h4605,142:20753781,24919560:0,0,0 -$4605,142:20753781,24919560 -$4605,142:21198770,24919560 -g4605,142:22976106,24919560 -k4605,143:28377256,24919560:4205773 -k4605,143:32583029,24919560:4205773 -) -(4605,144:20753781,25785740:11829248,513147,134348 -h4605,143:20753781,25785740:0,0,0 -g4605,143:22841758,25785740 -g4605,143:26400362,25785740 -g4605,143:27566902,25785740 -g4605,143:30668721,25785740 -k4605,143:32583029,25785740:1255016 -) -(4605,144:23375221,26650820:9207808,513147,134348 -g4605,143:26467209,26650820 -k4605,144:30469493,26650820:2113536 -k4605,144:32583029,26650820:2113536 -) -(4605,145:20753781,27516999:11829248,513147,102891 -h4605,144:20753781,27516999:0,0,0 -g4605,144:23350972,27516999 -k4605,145:28917928,27516999:3665101 -k4605,145:32583029,27516999:3665101 -) -(4605,146:20753781,28383179:11829248,505283,134348 -h4605,145:20753781,28383179:0,0,0 -r4605,170:20753781,28383179:0,639631,134348 -g4605,145:22064501,28383179 -g4605,145:22064501,28383179 -g4605,145:24688562,28383179 -g4605,145:27072106,28383179 -k4605,146:30226027,28383179:2357003 -k4605,146:32583029,28383179:2357002 -) -(4605,147:20753781,29249358:11829248,485622,102891 -h4605,146:20753781,29249358:0,0,0 -r4605,170:20753781,29249358:0,588513,102891 -g4605,146:22064501,29249358 -g4605,146:22064501,29249358 -g4605,146:24656449,29249358 -g4605,146:25507106,29249358 -g4605,146:28500135,29249358 -k4605,147:30940041,29249358:1642988 -k4605,147:32583029,29249358:1642988 -) -(4605,148:20753781,30115538:11829248,505283,126483 -h4605,147:20753781,30115538:0,0,0 -r4605,170:20753781,30115538:0,631766,126483 -g4605,147:22064501,30115538 -g4605,147:22064501,30115538 -g4605,147:23788097,30115538 -g4605,147:26330238,30115538 -g4605,147:28495547,30115538 -k4605,148:30927917,30115538:1655113 -k4605,148:32583029,30115538:1655112 -) -(4605,149:20753781,30981717:11829248,505283,102891 -h4605,148:20753781,30981717:0,0,0 -r4605,170:20753781,30981717:0,608174,102891 -g4605,148:22064501,30981717 -g4605,148:22064501,30981717 -g4605,148:24281584,30981717 -k4605,149:28830766,30981717:3752264 -k4605,149:32583029,30981717:3752263 -) -(4605,150:20753781,31847897:11829248,505283,102891 -h4605,149:20753781,31847897:0,0,0 -r4605,170:20753781,31847897:0,608174,102891 -g4605,149:22064501,31847897 -g4605,149:22064501,31847897 -g4605,149:24229810,31847897 -k4605,150:28804879,31847897:3778151 -k4605,150:32583029,31847897:3778150 -) -(4605,151:20753781,32714076:11829248,505283,134348 -h4605,150:20753781,32714076:0,0,0 -r4605,170:20753781,32714076:0,639631,134348 -g4605,150:22064501,32714076 -g4605,150:22064501,32714076 -g4605,150:24240951,32714076 -g4605,150:26406260,32714076 -k4605,151:29883273,32714076:2699756 -k4605,151:32583029,32714076:2699756 -) -(4605,152:20753781,33580256:11829248,505283,102891 -h4605,151:20753781,33580256:0,0,0 -r4605,170:20753781,33580256:0,608174,102891 -g4605,151:22064501,33580256 -g4605,151:22064501,33580256 -g4605,151:24944808,33580256 -k4605,152:29162378,33580256:3420652 -k4605,152:32583029,33580256:3420651 -) -(4605,153:20753781,34446435:11829248,505283,102891 -h4605,152:20753781,34446435:0,0,0 -r4605,170:20753781,34446435:0,608174,102891 -g4605,152:22064501,34446435 -g4605,152:22064501,34446435 -g4605,152:24638755,34446435 -g4605,152:26804064,34446435 -k4605,153:30092006,34446435:2491024 -k4605,153:32583029,34446435:2491023 -) -(4605,154:20753781,35312615:11829248,505283,102891 -h4605,153:20753781,35312615:0,0,0 -r4605,170:20753781,35312615:0,608174,102891 -g4605,153:22064501,35312615 -g4605,153:22064501,35312615 -g4605,153:24638755,35312615 -g4605,153:27022299,35312615 -k4605,154:30201123,35312615:2381906 -k4605,154:32583029,35312615:2381906 -) -(4605,155:20753781,36178794:11829248,513147,102891 -h4605,154:20753781,36178794:0,0,0 -g4605,154:21936050,36178794 -g4605,154:26145427,36178794 -k4605,155:29961917,36178794:2621113 -k4605,155:32583029,36178794:2621112 -) -(4605,156:20753781,37044974:11829248,513147,7863 -h4605,155:20753781,37044974:0,0,0 -g4605,155:21936050,37044974 -k4605,156:28514882,37044974:4068148 -k4605,156:32583029,37044974:4068147 -) -(4605,157:20753781,37911153:11829248,485622,102891 -h4605,156:20753781,37911153:0,0,0 -r4605,170:20753781,37911153:0,588513,102891 -g4605,156:22064501,37911153 -g4605,156:22064501,37911153 -g4605,156:23775646,37911153 -k4605,157:28777026,37911153:3806003 -k4605,157:32583029,37911153:3806003 -) -(4605,158:20753781,38777333:11829248,505283,126483 -h4605,157:20753781,38777333:0,0,0 -r4605,170:20753781,38777333:0,631766,126483 -g4605,157:22064501,38777333 -g4605,157:22064501,38777333 -g4605,157:26270601,38777333 -k4605,158:30024504,38777333:2558526 -k4605,158:32583029,38777333:2558525 -) -(4605,159:20753781,39643512:11829248,485622,102891 -h4605,158:20753781,39643512:0,0,0 -r4605,170:20753781,39643512:0,588513,102891 -g4605,158:22064501,39643512 -g4605,158:22064501,39643512 -g4605,158:23723217,39643512 -k4605,159:28750812,39643512:3832218 -k4605,159:32583029,39643512:3832217 -) -(4605,160:20753781,40509692:11829248,485622,102891 -h4605,159:20753781,40509692:0,0,0 -r4605,170:20753781,40509692:0,588513,102891 -g4605,159:22064501,40509692 -g4605,159:22064501,40509692 -g4605,159:24305832,40509692 -k4605,160:29042119,40509692:3540910 -k4605,160:32583029,40509692:3540910 -) -(4605,161:20753781,41375871:11829248,485622,102891 -h4605,160:20753781,41375871:0,0,0 -r4605,170:20753781,41375871:0,588513,102891 -g4605,160:22064501,41375871 -g4605,160:22064501,41375871 -g4605,160:23940141,41375871 -k4605,161:28859274,41375871:3723756 -k4605,161:32583029,41375871:3723755 -) -(4605,162:20753781,42242051:11829248,485622,102891 -h4605,161:20753781,42242051:0,0,0 -r4605,170:20753781,42242051:0,588513,102891 -g4605,161:22064501,42242051 -g4605,161:22064501,42242051 -g4605,161:24070558,42242051 -k4605,162:28924482,42242051:3658547 -k4605,162:32583029,42242051:3658547 -) -(4605,163:20753781,43108230:11829248,485622,102891 -h4605,162:20753781,43108230:0,0,0 -r4605,170:20753781,43108230:0,588513,102891 -g4605,162:22064501,43108230 -g4605,162:22064501,43108230 -g4605,162:24851747,43108230 -k4605,163:29315077,43108230:3267953 -k4605,163:32583029,43108230:3267952 -) -(4605,164:20753781,43974410:11829248,485622,102891 -h4605,163:20753781,43974410:0,0,0 -r4605,170:20753781,43974410:0,588513,102891 -g4605,163:22064501,43974410 -g4605,163:22064501,43974410 -g4605,163:23805137,43974410 -k4605,164:28791772,43974410:3791258 -k4605,164:32583029,43974410:3791257 -) -(4605,165:20753781,44840589:11829248,485622,102891 -h4605,164:20753781,44840589:0,0,0 -r4605,170:20753781,44840589:0,588513,102891 -g4605,164:22064501,44840589 -g4605,164:22064501,44840589 -g4605,164:23675376,44840589 -g4605,164:25243652,44840589 -k4605,165:29511029,44840589:3072000 -k4605,165:32583029,44840589:3072000 -) -(4605,166:20753781,45706769:11829248,505283,126483 -h4605,165:20753781,45706769:0,0,0 -r4605,170:20753781,45706769:0,631766,126483 -g4605,165:22064501,45706769 -g4605,165:22064501,45706769 -g4605,165:23861498,45706769 -g4605,165:25460576,45706769 -k4605,166:29619491,45706769:2963538 -k4605,166:32583029,45706769:2963538 -) -] -(4605,170:32583029,45706769:0,355205,126483 -h4605,170:32583029,45706769:420741,355205,126483 -k4605,170:32583029,45706769:-420741 -) -) -] -(4605,170:32583029,45706769:0,0,0 -g4605,170:32583029,45706769 -) -) -] -(4605,170:6630773,47279633:25952256,0,0 -h4605,170:6630773,47279633:25952256,0,0 -) -] -(4605,170:4262630,4025873:0,0,0 -[4605,170:-473656,4025873:0,0,0 -(4605,170:-473656,-710413:0,0,0 -(4605,170:-473656,-710413:0,0,0 -g4605,170:-473656,-710413 -) -g4605,170:-473656,-710413 ) -] +k4609,170:3078556,49800853:-34777008 ) ] -!26262 -}435 +g4609,170:6630773,4812305 +k4609,170:28201292,4812305:20375142 +g4609,170:30884336,4812305 +) +) +] +[4609,170:6630773,45706769:25952256,40108032,0 +(4609,170:6630773,45706769:25952256,40108032,0 +(4609,170:6630773,45706769:0,0,0 +g4609,170:6630773,45706769 +) +[4609,170:6630773,45706769:25952256,40108032,0 +(4609,170:6630773,45706769:25952256,40108032,126483 +[4609,170:6630773,45706769:11829248,40108032,7863 +(4609,74:6630773,6254097:11829248,485622,126483 +h4609,73:6630773,6254097:0,0,0 +g4609,73:10583904,6254097 +g4609,73:14033719,6254097 +k4609,74:17197798,6254097:1262224 +k4609,74:18460021,6254097:1262223 +) +(4609,75:6630773,7131902:11829248,505283,126483 +h4609,74:6630773,7131902:0,0,0 +g4609,74:10243772,7131902 +g4609,74:11939188,7131902 +g4609,74:15828749,7131902 +k4609,75:17742074,7131902:717948 +k4609,75:18460021,7131902:717947 +) +(4609,76:6630773,8009707:11829248,505283,102891 +h4609,75:6630773,8009707:0,0,0 +g4609,75:10423341,8009707 +g4609,75:14312902,8009707 +k4609,76:16984150,8009707:1475871 +k4609,76:18460021,8009707:1475871 +) +(4609,77:6630773,8887511:11829248,505283,102891 +h4609,76:6630773,8887511:0,0,0 +g4609,76:9423917,8887511 +k4609,77:14340428,8887511:4119593 +k4609,77:18460021,8887511:4119593 +) +(4609,78:6630773,9765316:11829248,513147,102891 +h4609,77:6630773,9765316:0,0,0 +g4609,77:9117864,9765316 +g4609,77:9976385,9765316 +g4609,77:13251219,9765316 +g4609,77:14974160,9765316 +k4609,78:17314779,9765316:1145242 +k4609,78:18460021,9765316:1145242 +) +(4609,80:6630773,10643121:11829248,505283,134348 +h4609,78:6630773,10643121:0,0,0 +g4609,78:10568176,10643121 +g4609,78:14126780,10643121 +k4609,79:14126780,10643121:0 +g4609,79:15293320,10643121 +k4609,79:18460021,10643121:278529 +) +(4609,80:9252213,11508201:9207808,513147,134348 +g4609,79:10110734,11508201 +g4609,79:13202722,11508201 +k4609,80:17700459,11508201:759563 +k4609,80:18460021,11508201:759562 +) +(4609,81:6630773,12386006:11829248,505283,102891 +h4609,80:6630773,12386006:0,0,0 +g4609,80:10484289,12386006 +k4609,81:15821541,12386006:2638480 +k4609,81:18460021,12386006:2638480 +) +(4609,82:6630773,13263810:11829248,505283,102891 +h4609,81:6630773,13263810:0,0,0 +r4609,170:6630773,13263810:0,608174,102891 +g4609,81:7941493,13263810 +g4609,81:7941493,13263810 +g4609,81:10727428,13263810 +k4609,82:15181583,13263810:3278439 +k4609,82:18460021,13263810:3278438 +) +(4609,83:6630773,14141615:11829248,485622,126483 +h4609,82:6630773,14141615:0,0,0 +r4609,170:6630773,14141615:0,612105,126483 +g4609,82:7941493,14141615 +g4609,82:7941493,14141615 +g4609,82:13219762,14141615 +k4609,83:16427750,14141615:2032272 +k4609,83:18460021,14141615:2032271 +) +(4609,84:6630773,15019420:11829248,485622,126483 +h4609,83:6630773,15019420:0,0,0 +r4609,170:6630773,15019420:0,612105,126483 +g4609,83:7941493,15019420 +g4609,83:7941493,15019420 +g4609,83:11782558,15019420 +k4609,84:15718978,15019420:2741043 +k4609,84:18460021,15019420:2741043 +) +(4609,85:6630773,15897225:11829248,485622,102891 +h4609,84:6630773,15897225:0,0,0 +r4609,170:6630773,15897225:0,588513,102891 +g4609,84:7941493,15897225 +g4609,84:7941493,15897225 +g4609,84:10821145,15897225 +k4609,85:15238272,15897225:3221750 +k4609,85:18460021,15897225:3221749 +) +(4609,86:6630773,16775029:11829248,485622,126483 +h4609,85:6630773,16775029:0,0,0 +r4609,170:6630773,16775029:0,612105,126483 +g4609,85:7941493,16775029 +g4609,85:7941493,16775029 +g4609,85:11472572,16775029 +k4609,86:15554155,16775029:2905867 +k4609,86:18460021,16775029:2905866 +) +(4609,87:6630773,17652834:11829248,485622,102891 +h4609,86:6630773,17652834:0,0,0 +g4609,86:8808534,17652834 +g4609,86:9579892,17652834 +g4609,86:10749709,17652834 +g4609,86:11919526,17652834 +g4609,86:13487802,17652834 +k4609,87:17323298,17652834:1136724 +k4609,87:18460021,17652834:1136723 +) +(4609,91:6630773,19398076:11829248,505283,7863 +h4609,90:6630773,19398076:0,0,0 +k4609,91:13240079,19398076:5219943 +k4609,91:18460021,19398076:5219942 +) +(4609,92:6630773,20275881:11829248,505283,126483 +h4609,91:6630773,20275881:0,0,0 +r4609,170:6630773,20275881:0,631766,126483 +g4609,91:7941493,20275881 +g4609,91:7941493,20275881 +g4609,91:11785179,20275881 +g4609,91:12597170,20275881 +g4609,91:13815484,20275881 +g4609,91:14459702,20275881 +g4609,91:17252846,20275881 +k4609,92:18444292,20275881:15730 +k4609,92:18460021,20275881:15729 +) +(4609,93:6630773,21153685:11829248,505283,134348 +h4609,92:6630773,21153685:0,0,0 +r4609,170:6630773,21153685:0,639631,134348 +g4609,92:7941493,21153685 +g4609,92:7941493,21153685 +g4609,92:10507227,21153685 +g4609,92:12095819,21153685 +g4609,92:13733563,21153685 +k4609,93:17446178,21153685:1013843 +k4609,93:18460021,21153685:1013843 +) +(4609,94:6630773,22031490:11829248,505283,134348 +h4609,93:6630773,22031490:0,0,0 +r4609,170:6630773,22031490:0,639631,134348 +g4609,93:7941493,22031490 +g4609,93:7941493,22031490 +g4609,93:10174304,22031490 +g4609,93:11762896,22031490 +g4609,93:13400640,22031490 +k4609,94:17279717,22031490:1180305 +k4609,94:18460021,22031490:1180304 +) +(4609,95:6630773,22909295:11829248,513147,7863 +h4609,94:6630773,22909295:0,0,0 +g4609,94:8219365,22909295 +k4609,95:14277841,22909295:4182180 +k4609,95:18460021,22909295:4182180 +) +(4609,96:6630773,23787100:11829248,505283,126483 +h4609,95:6630773,23787100:0,0,0 +r4609,170:6630773,23787100:0,631766,126483 +g4609,95:7941493,23787100 +g4609,95:7941493,23787100 +g4609,95:12582097,23787100 +k4609,96:16880276,23787100:1579746 +k4609,96:18460021,23787100:1579745 +) +(4609,97:6630773,24664904:11829248,513147,102891 +h4609,96:6630773,24664904:0,0,0 +g4609,96:8219365,24664904 +g4609,96:10798862,24664904 +k4609,97:15779599,24664904:2680423 +k4609,97:18460021,24664904:2680422 +) +(4609,98:6630773,25542709:11829248,513147,134348 +h4609,97:6630773,25542709:0,0,0 +r4609,170:6630773,25542709:0,647495,134348 +g4609,97:7941493,25542709 +g4609,97:7941493,25542709 +g4609,97:10959425,25542709 +g4609,97:13166677,25542709 +k4609,98:16411038,25542709:2048984 +k4609,98:18460021,25542709:2048983 +) +(4609,99:6630773,26420514:11829248,505283,134348 +h4609,98:6630773,26420514:0,0,0 +r4609,170:6630773,26420514:0,639631,134348 +g4609,98:7941493,26420514 +g4609,98:7941493,26420514 +g4609,98:11278586,26420514 +k4609,99:15457162,26420514:3002860 +k4609,99:18460021,26420514:3002859 +) +(4609,100:6630773,27298319:11829248,505283,134348 +h4609,99:6630773,27298319:0,0,0 +r4609,170:6630773,27298319:0,639631,134348 +g4609,99:7941493,27298319 +g4609,99:7941493,27298319 +g4609,99:9529430,27298319 +g4609,99:10589802,27298319 +g4609,99:12279320,27298319 +g4609,99:14521306,27298319 +k4609,100:17088352,27298319:1371669 +k4609,100:18460021,27298319:1371669 +) +(4609,101:6630773,28176123:11829248,505283,134348 +h4609,100:6630773,28176123:0,0,0 +r4609,170:6630773,28176123:0,639631,134348 +g4609,100:7941493,28176123 +g4609,100:7941493,28176123 +g4609,100:10870297,28176123 +g4609,100:13956387,28176123 +k4609,101:16796062,28176123:1663959 +k4609,101:18460021,28176123:1663959 +) +(4609,102:6630773,29053928:11829248,505283,134348 +h4609,101:6630773,29053928:0,0,0 +r4609,170:6630773,29053928:0,639631,134348 +g4609,101:7941493,29053928 +g4609,101:7941493,29053928 +g4609,101:10870297,29053928 +g4609,101:12777394,29053928 +g4609,101:14345670,29053928 +k4609,102:17000534,29053928:1459487 +k4609,102:18460021,29053928:1459487 +) +(4609,103:6630773,29931733:11829248,505283,134348 +h4609,102:6630773,29931733:0,0,0 +r4609,170:6630773,29931733:0,639631,134348 +g4609,102:7941493,29931733 +g4609,102:7941493,29931733 +g4609,102:10975809,29931733 +k4609,103:15315604,29931733:3144418 +k4609,103:18460021,29931733:3144417 +) +(4609,104:6630773,30809538:11829248,505283,134348 +h4609,103:6630773,30809538:0,0,0 +r4609,170:6630773,30809538:0,639631,134348 +g4609,103:7941493,30809538 +g4609,103:7941493,30809538 +g4609,103:11641655,30809538 +k4609,104:15648527,30809538:2811495 +k4609,104:18460021,30809538:2811494 +) +(4609,105:6630773,31687342:11829248,485622,134348 +h4609,104:6630773,31687342:0,0,0 +r4609,170:6630773,31687342:0,619970,134348 +g4609,104:7941493,31687342 +g4609,104:7941493,31687342 +g4609,104:12525081,31687342 +g4609,104:14093357,31687342 +k4609,105:16874378,31687342:1585644 +k4609,105:18460021,31687342:1585643 +) +(4609,106:6630773,32565147:11829248,505283,126483 +h4609,105:6630773,32565147:0,0,0 +g4609,105:8219365,32565147 +g4609,105:12674502,32565147 +g4609,105:13489769,32565147 +g4609,105:14708083,32565147 +k4609,105:18460021,32565147:754322 +) +(4609,106:9252213,33430227:9207808,485622,11795 +k4609,106:15205503,33430227:3254518 +k4609,106:18460021,33430227:3254518 +) +(4609,107:6630773,34308032:11829248,505283,7863 +h4609,106:6630773,34308032:0,0,0 +g4609,106:8219365,34308032 +k4609,107:13972116,34308032:4487906 +k4609,107:18460021,34308032:4487905 +) +(4609,108:6630773,35185837:11829248,505283,102891 +h4609,107:6630773,35185837:0,0,0 +r4609,170:6630773,35185837:0,608174,102891 +g4609,107:7941493,35185837 +g4609,107:7941493,35185837 +g4609,107:12942545,35185837 +k4609,108:16099742,35185837:2360279 +k4609,108:18460021,35185837:2360279 +) +(4609,109:6630773,36063641:11829248,485622,134348 +h4609,108:6630773,36063641:0,0,0 +r4609,170:6630773,36063641:0,619970,134348 +g4609,108:7941493,36063641 +g4609,108:7941493,36063641 +g4609,108:10188722,36063641 +k4609,109:14722831,36063641:3737191 +k4609,109:18460021,36063641:3737190 +) +(4609,110:6630773,36941446:11829248,505283,134348 +h4609,109:6630773,36941446:0,0,0 +r4609,170:6630773,36941446:0,639631,134348 +g4609,109:7941493,36941446 +g4609,109:7941493,36941446 +g4609,109:9649361,36941446 +g4609,109:12369760,36941446 +k4609,110:16565048,36941446:1894974 +k4609,110:18460021,36941446:1894973 +) +(4609,111:6630773,37819251:11829248,505283,7863 +h4609,110:6630773,37819251:0,0,0 +g4609,110:8219365,37819251 +k4609,111:15379174,37819251:3080848 +k4609,111:18460021,37819251:3080847 +) +(4609,112:6630773,38697056:11829248,485622,102891 +h4609,111:6630773,38697056:0,0,0 +r4609,170:6630773,38697056:0,588513,102891 +g4609,111:7941493,38697056 +g4609,111:7941493,38697056 +g4609,111:12104995,38697056 +k4609,112:15880197,38697056:2579825 +k4609,112:18460021,38697056:2579824 +) +(4609,113:6630773,39574860:11829248,485622,126483 +h4609,112:6630773,39574860:0,0,0 +r4609,170:6630773,39574860:0,612105,126483 +g4609,112:7941493,39574860 +g4609,112:7941493,39574860 +g4609,112:11146203,39574860 +k4609,113:15400801,39574860:3059221 +k4609,113:18460021,39574860:3059220 +) +(4609,114:6630773,40452665:11829248,505283,102891 +h4609,113:6630773,40452665:0,0,0 +r4609,170:6630773,40452665:0,608174,102891 +g4609,113:7941493,40452665 +g4609,113:7941493,40452665 +g4609,113:9530085,40452665 +g4609,113:11747168,40452665 +k4609,114:15701283,40452665:2758738 +k4609,114:18460021,40452665:2758738 +) +(4609,115:6630773,41330470:11829248,505283,102891 +h4609,114:6568514,41330470:0,0,0 +g4609,114:10518368,41330470 +g4609,114:12086644,41330470 +g4609,114:13654920,41330470 +k4609,115:16645329,41330470:1814693 +k4609,115:18460021,41330470:1814692 +) +(4609,116:6630773,42208275:11829248,505283,102891 +h4609,115:6568514,42208275:0,0,0 +g4609,115:10014396,42208275 +g4609,115:11582672,42208275 +g4609,115:13150948,42208275 +g4609,115:14719224,42208275 +k4609,116:17177481,42208275:1282541 +k4609,116:18460021,42208275:1282540 +) +(4609,117:6630773,43086079:11829248,505283,126483 +h4609,116:6568514,43086079:0,0,0 +g4609,116:9393770,43086079 +g4609,116:10962046,43086079 +g4609,116:12530322,43086079 +k4609,117:16092860,43086079:2367161 +k4609,117:18460021,43086079:2367161 +) +(4609,118:6630773,43963884:11829248,505283,134348 +h4609,117:6630773,43963884:0,0,0 +g4609,117:9397703,43963884 +g4609,117:12060430,43963884 +g4609,117:13226970,43963884 +k4609,117:18460021,43963884:2235434 +) +(4609,118:9252213,44828964:9207808,505283,134348 +k4609,118:15001031,44828964:3458990 +k4609,118:18460021,44828964:3458990 +) +(4609,119:6630773,45706769:11829248,505283,7863 +h4609,118:6630773,45706769:0,0,0 +k4609,119:13714232,45706769:4745790 +k4609,119:18460021,45706769:4745789 +) +] +k4609,170:19606901,45706769:1146880 +r4609,170:19606901,45706769:0,40234515,126483 +k4609,170:20753781,45706769:1146880 +[4609,170:20753781,45706769:11829248,40108032,126483 +(4609,120:20753781,6254097:11829248,505283,134348 +h4609,119:20753781,6254097:0,0,0 +r4609,170:20753781,6254097:0,639631,134348 +g4609,119:22064501,6254097 +g4609,119:22064501,6254097 +g4609,119:24596156,6254097 +g4609,119:25762696,6254097 +g4609,119:28350712,6254097 +k4609,119:32583029,6254097:2073561 +) +(4609,120:23375221,7119177:9207808,505283,7863 +k4609,120:29147960,7119177:3435070 +k4609,120:32583029,7119177:3435069 +) +(4609,121:20753781,7985357:11829248,505283,126483 +h4609,120:20753781,7985357:0,0,0 +g4609,120:23628190,7985357 +g4609,120:26747703,7985357 +k4609,121:30263055,7985357:2319975 +k4609,121:32583029,7985357:2319974 +) +(4609,122:20753781,8851536:11829248,505283,126483 +h4609,121:20753781,8851536:0,0,0 +g4609,121:23136014,8851536 +g4609,121:26267324,8851536 +k4609,122:30833218,8851536:1749812 +k4609,122:32583029,8851536:1749811 +) +(4609,123:20753781,9717716:11829248,505283,102891 +h4609,122:20753781,9717716:0,0,0 +r4609,170:20753781,9717716:0,608174,102891 +g4609,122:22064501,9717716 +g4609,122:22064501,9717716 +g4609,122:25713545,9717716 +k4609,123:30099215,9717716:2483815 +k4609,123:32583029,9717716:2483814 +) +(4609,125:20753781,10583895:11829248,505283,126483 +h4609,123:20691522,10583895:0,0,0 +g4609,123:23103901,10583895 +g4609,123:26195234,10583895 +g4609,123:27763510,10583895 +g4609,123:29331786,10583895 +k4609,123:32583029,10583895:445647 +) +(4609,125:23375221,11448975:9207808,485622,102891 +g4609,123:24943497,11448975 +g4609,123:26511773,11448975 +g4609,124:28080049,11448975 +k4609,125:30929228,11448975:1653802 +k4609,125:32583029,11448975:1653801 +) +(4609,126:20753781,12315155:11829248,505283,126483 +h4609,125:20691522,12315155:0,0,0 +g4609,125:23349006,12315155 +k4609,126:28563706,12315155:4019323 +k4609,126:32583029,12315155:4019323 +) +(4609,130:20753781,13855019:11829248,505283,126483 +h4609,129:20753781,13855019:0,0,0 +g4609,129:23307718,13855019 +k4609,130:28343833,13855019:4239197 +k4609,130:32583029,13855019:4239196 +) +(4609,131:20753781,14721199:11829248,485622,102891 +h4609,130:20753781,14721199:0,0,0 +g4609,130:23124873,14721199 +k4609,131:28451640,14721199:4131390 +k4609,131:32583029,14721199:4131389 +) +(4609,133:20753781,15587378:11829248,505283,126483 +h4609,131:20753781,15587378:0,0,0 +g4609,131:23926378,15587378 +g4609,131:27611467,15587378 +k4609,131:32583029,15587378:772671 +) +(4609,133:23375221,16452458:9207808,505283,126483 +g4609,132:24541761,16452458 +g4609,132:28226850,16452458 +k4609,132:32583029,16452458:157288 +) +(4609,133:23375221,17317538:9207808,505283,7863 +k4609,133:29422228,17317538:3160801 +k4609,133:32583029,17317538:3160801 +) +(4609,134:20753781,18183718:11829248,505283,102891 +h4609,133:20753781,18183718:0,0,0 +g4609,133:22054670,18183718 +$4609,133:22261764,18183718 +$4609,133:22623523,18183718 +g4609,133:23203516,18183718 +g4609,133:24370056,18183718 +g4609,133:27256916,18183718 +k4609,133:32583029,18183718:2049968 +) +(4609,134:23375221,19048798:9207808,473825,126483 +k4609,134:29445166,19048798:3137864 +k4609,134:32583029,19048798:3137863 +) +(4609,135:20753781,19914977:11829248,505283,102891 +h4609,134:20753781,19914977:0,0,0 +g4609,134:22773600,19914977 +k4609,135:28276003,19914977:4307026 +k4609,135:32583029,19914977:4307026 +) +(4609,136:20753781,20781157:11829248,505283,134348 +h4609,135:20753781,20781157:0,0,0 +g4609,135:24016163,20781157 +k4609,136:28994278,20781157:3588752 +k4609,136:32583029,20781157:3588751 +) +(4609,137:20753781,21647336:11829248,513147,102891 +h4609,136:20753781,21647336:0,0,0 +r4609,170:20753781,21647336:0,616038,102891 +g4609,136:22064501,21647336 +g4609,136:22064501,21647336 +g4609,136:23489909,21647336 +g4609,136:25176150,21647336 +g4609,136:28267483,21647336 +k4609,137:31784473,21647336:798557 +k4609,137:32583029,21647336:798556 +) +(4609,138:20753781,22513516:11829248,485622,102891 +h4609,137:20753781,22513516:0,0,0 +g4609,137:24355639,22513516 +g4609,137:25206296,22513516 +g4609,137:26024185,22513516 +k4609,138:29901296,22513516:2681734 +k4609,138:32583029,22513516:2681733 +) +(4609,139:20753781,23379695:11829248,513147,102891 +h4609,138:20691522,23379695:0,0,0 +g4609,138:24414621,23379695 +k4609,139:29096514,23379695:3486516 +k4609,139:32583029,23379695:3486515 +) +(4609,143:20753781,24919560:11829248,485622,102891 +h4609,142:20753781,24919560:0,0,0 +$4609,142:20753781,24919560 +$4609,142:21198770,24919560 +g4609,142:22976106,24919560 +k4609,143:28377256,24919560:4205773 +k4609,143:32583029,24919560:4205773 +) +(4609,144:20753781,25785740:11829248,513147,134348 +h4609,143:20753781,25785740:0,0,0 +g4609,143:22841758,25785740 +g4609,143:26400362,25785740 +g4609,143:27566902,25785740 +g4609,143:30668721,25785740 +k4609,143:32583029,25785740:1255016 +) +(4609,144:23375221,26650820:9207808,513147,134348 +g4609,143:26467209,26650820 +k4609,144:30469493,26650820:2113536 +k4609,144:32583029,26650820:2113536 +) +(4609,145:20753781,27516999:11829248,513147,102891 +h4609,144:20753781,27516999:0,0,0 +g4609,144:23350972,27516999 +k4609,145:28917928,27516999:3665101 +k4609,145:32583029,27516999:3665101 +) +(4609,146:20753781,28383179:11829248,505283,134348 +h4609,145:20753781,28383179:0,0,0 +r4609,170:20753781,28383179:0,639631,134348 +g4609,145:22064501,28383179 +g4609,145:22064501,28383179 +g4609,145:24688562,28383179 +g4609,145:27072106,28383179 +k4609,146:30226027,28383179:2357003 +k4609,146:32583029,28383179:2357002 +) +(4609,147:20753781,29249358:11829248,485622,102891 +h4609,146:20753781,29249358:0,0,0 +r4609,170:20753781,29249358:0,588513,102891 +g4609,146:22064501,29249358 +g4609,146:22064501,29249358 +g4609,146:24656449,29249358 +g4609,146:25507106,29249358 +g4609,146:28500135,29249358 +k4609,147:30940041,29249358:1642988 +k4609,147:32583029,29249358:1642988 +) +(4609,148:20753781,30115538:11829248,505283,126483 +h4609,147:20753781,30115538:0,0,0 +r4609,170:20753781,30115538:0,631766,126483 +g4609,147:22064501,30115538 +g4609,147:22064501,30115538 +g4609,147:23788097,30115538 +g4609,147:26330238,30115538 +g4609,147:28495547,30115538 +k4609,148:30927917,30115538:1655113 +k4609,148:32583029,30115538:1655112 +) +(4609,149:20753781,30981717:11829248,505283,102891 +h4609,148:20753781,30981717:0,0,0 +r4609,170:20753781,30981717:0,608174,102891 +g4609,148:22064501,30981717 +g4609,148:22064501,30981717 +g4609,148:24281584,30981717 +k4609,149:28830766,30981717:3752264 +k4609,149:32583029,30981717:3752263 +) +(4609,150:20753781,31847897:11829248,505283,102891 +h4609,149:20753781,31847897:0,0,0 +r4609,170:20753781,31847897:0,608174,102891 +g4609,149:22064501,31847897 +g4609,149:22064501,31847897 +g4609,149:24229810,31847897 +k4609,150:28804879,31847897:3778151 +k4609,150:32583029,31847897:3778150 +) +(4609,151:20753781,32714076:11829248,505283,134348 +h4609,150:20753781,32714076:0,0,0 +r4609,170:20753781,32714076:0,639631,134348 +g4609,150:22064501,32714076 +g4609,150:22064501,32714076 +g4609,150:24240951,32714076 +g4609,150:26406260,32714076 +k4609,151:29883273,32714076:2699756 +k4609,151:32583029,32714076:2699756 +) +(4609,152:20753781,33580256:11829248,505283,102891 +h4609,151:20753781,33580256:0,0,0 +r4609,170:20753781,33580256:0,608174,102891 +g4609,151:22064501,33580256 +g4609,151:22064501,33580256 +g4609,151:24944808,33580256 +k4609,152:29162378,33580256:3420652 +k4609,152:32583029,33580256:3420651 +) +(4609,153:20753781,34446435:11829248,505283,102891 +h4609,152:20753781,34446435:0,0,0 +r4609,170:20753781,34446435:0,608174,102891 +g4609,152:22064501,34446435 +g4609,152:22064501,34446435 +g4609,152:24638755,34446435 +g4609,152:26804064,34446435 +k4609,153:30092006,34446435:2491024 +k4609,153:32583029,34446435:2491023 +) +(4609,154:20753781,35312615:11829248,505283,102891 +h4609,153:20753781,35312615:0,0,0 +r4609,170:20753781,35312615:0,608174,102891 +g4609,153:22064501,35312615 +g4609,153:22064501,35312615 +g4609,153:24638755,35312615 +g4609,153:27022299,35312615 +k4609,154:30201123,35312615:2381906 +k4609,154:32583029,35312615:2381906 +) +(4609,155:20753781,36178794:11829248,513147,102891 +h4609,154:20753781,36178794:0,0,0 +g4609,154:21936050,36178794 +g4609,154:26145427,36178794 +k4609,155:29961917,36178794:2621113 +k4609,155:32583029,36178794:2621112 +) +(4609,156:20753781,37044974:11829248,513147,7863 +h4609,155:20753781,37044974:0,0,0 +g4609,155:21936050,37044974 +k4609,156:28514882,37044974:4068148 +k4609,156:32583029,37044974:4068147 +) +(4609,157:20753781,37911153:11829248,485622,102891 +h4609,156:20753781,37911153:0,0,0 +r4609,170:20753781,37911153:0,588513,102891 +g4609,156:22064501,37911153 +g4609,156:22064501,37911153 +g4609,156:23775646,37911153 +k4609,157:28777026,37911153:3806003 +k4609,157:32583029,37911153:3806003 +) +(4609,158:20753781,38777333:11829248,505283,126483 +h4609,157:20753781,38777333:0,0,0 +r4609,170:20753781,38777333:0,631766,126483 +g4609,157:22064501,38777333 +g4609,157:22064501,38777333 +g4609,157:26270601,38777333 +k4609,158:30024504,38777333:2558526 +k4609,158:32583029,38777333:2558525 +) +(4609,159:20753781,39643512:11829248,485622,102891 +h4609,158:20753781,39643512:0,0,0 +r4609,170:20753781,39643512:0,588513,102891 +g4609,158:22064501,39643512 +g4609,158:22064501,39643512 +g4609,158:23723217,39643512 +k4609,159:28750812,39643512:3832218 +k4609,159:32583029,39643512:3832217 +) +(4609,160:20753781,40509692:11829248,485622,102891 +h4609,159:20753781,40509692:0,0,0 +r4609,170:20753781,40509692:0,588513,102891 +g4609,159:22064501,40509692 +g4609,159:22064501,40509692 +g4609,159:24305832,40509692 +k4609,160:29042119,40509692:3540910 +k4609,160:32583029,40509692:3540910 +) +(4609,161:20753781,41375871:11829248,485622,102891 +h4609,160:20753781,41375871:0,0,0 +r4609,170:20753781,41375871:0,588513,102891 +g4609,160:22064501,41375871 +g4609,160:22064501,41375871 +g4609,160:23940141,41375871 +k4609,161:28859274,41375871:3723756 +k4609,161:32583029,41375871:3723755 +) +(4609,162:20753781,42242051:11829248,485622,102891 +h4609,161:20753781,42242051:0,0,0 +r4609,170:20753781,42242051:0,588513,102891 +g4609,161:22064501,42242051 +g4609,161:22064501,42242051 +g4609,161:24070558,42242051 +k4609,162:28924482,42242051:3658547 +k4609,162:32583029,42242051:3658547 +) +(4609,163:20753781,43108230:11829248,485622,102891 +h4609,162:20753781,43108230:0,0,0 +r4609,170:20753781,43108230:0,588513,102891 +g4609,162:22064501,43108230 +g4609,162:22064501,43108230 +g4609,162:24851747,43108230 +k4609,163:29315077,43108230:3267953 +k4609,163:32583029,43108230:3267952 +) +(4609,164:20753781,43974410:11829248,485622,102891 +h4609,163:20753781,43974410:0,0,0 +r4609,170:20753781,43974410:0,588513,102891 +g4609,163:22064501,43974410 +g4609,163:22064501,43974410 +g4609,163:23805137,43974410 +k4609,164:28791772,43974410:3791258 +k4609,164:32583029,43974410:3791257 +) +(4609,165:20753781,44840589:11829248,485622,102891 +h4609,164:20753781,44840589:0,0,0 +r4609,170:20753781,44840589:0,588513,102891 +g4609,164:22064501,44840589 +g4609,164:22064501,44840589 +g4609,164:23675376,44840589 +g4609,164:25243652,44840589 +k4609,165:29511029,44840589:3072000 +k4609,165:32583029,44840589:3072000 +) +(4609,166:20753781,45706769:11829248,505283,126483 +h4609,165:20753781,45706769:0,0,0 +r4609,170:20753781,45706769:0,631766,126483 +g4609,165:22064501,45706769 +g4609,165:22064501,45706769 +g4609,165:23861498,45706769 +g4609,165:25460576,45706769 +k4609,166:29619491,45706769:2963538 +k4609,166:32583029,45706769:2963538 +) +] +(4609,170:32583029,45706769:0,355205,126483 +h4609,170:32583029,45706769:420741,355205,126483 +k4609,170:32583029,45706769:-420741 +) +) +] +(4609,170:32583029,45706769:0,0,0 +g4609,170:32583029,45706769 +) +) +] +(4609,170:6630773,47279633:25952256,0,0 +h4609,170:6630773,47279633:25952256,0,0 +) +] +(4609,170:4262630,4025873:0,0,0 +[4609,170:-473656,4025873:0,0,0 +(4609,170:-473656,-710413:0,0,0 +(4609,170:-473656,-710413:0,0,0 +g4609,170:-473656,-710413 +) +g4609,170:-473656,-710413 +) +] +) +] +!26260 +}436 !12 -{436 -[4605,256:4262630,47279633:28320399,43253760,0 -(4605,256:4262630,4025873:0,0,0 -[4605,256:-473656,4025873:0,0,0 -(4605,256:-473656,-710413:0,0,0 -(4605,256:-473656,-644877:0,0,0 -k4605,256:-473656,-644877:-65536 +{437 +[4609,256:4262630,47279633:28320399,43253760,0 +(4609,256:4262630,4025873:0,0,0 +[4609,256:-473656,4025873:0,0,0 +(4609,256:-473656,-710413:0,0,0 +(4609,256:-473656,-644877:0,0,0 +k4609,256:-473656,-644877:-65536 ) -(4605,256:-473656,4736287:0,0,0 -k4605,256:-473656,4736287:5209943 +(4609,256:-473656,4736287:0,0,0 +k4609,256:-473656,4736287:5209943 ) -g4605,256:-473656,-710413 +g4609,256:-473656,-710413 ) ] ) -[4605,256:6630773,47279633:25952256,43253760,0 -[4605,256:6630773,4812305:25952256,786432,0 -(4605,256:6630773,4812305:25952256,505283,11795 -(4605,256:6630773,4812305:25952256,505283,11795 -g4605,256:3078558,4812305 -[4605,256:3078558,4812305:0,0,0 -(4605,256:3078558,2439708:0,1703936,0 -k4605,256:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,256:2537886,2439708:1179648,16384,0 +[4609,256:6630773,47279633:25952256,43253760,0 +[4609,256:6630773,4812305:25952256,786432,0 +(4609,256:6630773,4812305:25952256,505283,11795 +(4609,256:6630773,4812305:25952256,505283,11795 +g4609,256:3078558,4812305 +[4609,256:3078558,4812305:0,0,0 +(4609,256:3078558,2439708:0,1703936,0 +k4609,256:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,256:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,256:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,256:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,256:3078558,4812305:0,0,0 -(4605,256:3078558,2439708:0,1703936,0 -g4605,256:29030814,2439708 -g4605,256:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,256:36151628,1915420:16384,1179648,0 +[4609,256:3078558,4812305:0,0,0 +(4609,256:3078558,2439708:0,1703936,0 +g4609,256:29030814,2439708 +g4609,256:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,256:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,256:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,256:37855564,2439708:1179648,16384,0 ) ) -k4605,256:3078556,2439708:-34777008 +k4609,256:3078556,2439708:-34777008 ) ] -[4605,256:3078558,4812305:0,0,0 -(4605,256:3078558,49800853:0,16384,2228224 -k4605,256:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,256:2537886,49800853:1179648,16384,0 +[4609,256:3078558,4812305:0,0,0 +(4609,256:3078558,49800853:0,16384,2228224 +k4609,256:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,256:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,256:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,256:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,256:3078558,4812305:0,0,0 -(4605,256:3078558,49800853:0,16384,2228224 -g4605,256:29030814,49800853 -g4605,256:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,256:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 -) -] -) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,256:37855564,49800853:1179648,16384,0 -) -) -k4605,256:3078556,49800853:-34777008 -) -] -g4605,256:6630773,4812305 -g4605,256:6630773,4812305 -g4605,256:9313817,4812305 -g4605,256:11211739,4812305 -k4605,256:31387651,4812305:20175912 -) -) -] -[4605,256:6630773,45706769:25952256,40108032,0 -(4605,256:6630773,45706769:25952256,40108032,0 -(4605,256:6630773,45706769:0,0,0 -g4605,256:6630773,45706769 -) -[4605,256:6630773,45706769:25952256,40108032,0 -(4605,256:6630773,45706769:25952256,40108032,134348 -[4605,256:6630773,45706769:11829248,40108032,102891 -(4605,167:6630773,6254097:11829248,485622,102891 -h4605,166:6630773,6254097:0,0,0 -r4605,256:6630773,6254097:0,588513,102891 -g4605,166:7941493,6254097 -g4605,166:7941493,6254097 -g4605,166:9661813,6254097 -g4605,166:11230089,6254097 -k4605,167:15442744,6254097:3017278 -k4605,167:18460021,6254097:3017277 -) -(4605,168:6630773,7132279:11829248,485622,102891 -h4605,167:6630773,7132279:0,0,0 -r4605,256:6630773,7132279:0,588513,102891 -g4605,167:7941493,7132279 -g4605,167:7941493,7132279 -g4605,167:9045119,7132279 -g4605,167:10519679,7132279 -k4605,168:15087539,7132279:3372483 -k4605,168:18460021,7132279:3372482 -) -(4605,169:6630773,8010461:11829248,505283,134348 -h4605,168:6630773,8010461:0,0,0 -r4605,256:6630773,8010461:0,639631,134348 -g4605,168:7941493,8010461 -g4605,168:7941493,8010461 -g4605,168:8585711,8010461 -g4605,168:10174303,8010461 -g4605,168:13605112,8010461 -g4605,168:16237693,8010461 -k4605,169:17936715,8010461:523306 -k4605,169:18460021,8010461:523306 -) -(4605,170:6630773,8888642:11829248,505283,134348 -h4605,169:6630773,8888642:0,0,0 -r4605,256:6630773,8888642:0,639631,134348 -g4605,169:7941493,8888642 -g4605,169:7941493,8888642 -g4605,169:9576616,8888642 -g4605,169:10520989,8888642 -g4605,169:12283252,8888642 -g4605,169:15153728,8888642 -k4605,169:18460021,8888642:629148 -) -(4605,170:9252213,9753722:9207808,485622,11795 -k4605,170:14443975,9753722:4016046 -k4605,170:18460021,9753722:4016046 -) -(4605,171:6630773,10631904:11829248,505283,134348 -h4605,170:6630773,10631904:0,0,0 -r4605,256:6630773,10631904:0,639631,134348 -g4605,170:7941493,10631904 -g4605,170:7941493,10631904 -g4605,170:9444233,10631904 -g4605,170:10388606,10631904 -g4605,170:12150869,10631904 -g4605,170:14223117,10631904 -g4605,170:16855698,10631904 -k4605,171:18255548,10631904:204473 -k4605,171:18460021,10631904:204473 -) -(4605,172:6630773,11510086:11829248,485622,102891 -h4605,171:6630773,11510086:0,0,0 -r4605,256:6630773,11510086:0,588513,102891 -g4605,171:7941493,11510086 -g4605,171:7941493,11510086 -g4605,171:9607418,11510086 -k4605,172:14631408,11510086:3828613 -k4605,172:18460021,11510086:3828613 -) -(4605,173:6630773,12388268:11829248,485622,102891 -h4605,172:6630773,12388268:0,0,0 -r4605,256:6630773,12388268:0,588513,102891 -g4605,172:7941493,12388268 -g4605,172:7941493,12388268 -g4605,172:9680163,12388268 -k4605,173:14667781,12388268:3792241 -k4605,173:18460021,12388268:3792240 -) -(4605,174:6630773,13266450:11829248,505283,102891 -h4605,173:6630773,13266450:0,0,0 -r4605,256:6630773,13266450:0,608174,102891 -g4605,173:7941493,13266450 -g4605,173:7941493,13266450 -g4605,173:9579893,13266450 -k4605,174:14607815,13266450:3852206 -k4605,174:18460021,13266450:3852206 -) -(4605,175:6630773,14144631:11829248,485622,102891 -h4605,174:6630773,14144631:0,0,0 -r4605,256:6630773,14144631:0,588513,102891 -g4605,174:7941493,14144631 -g4605,174:7941493,14144631 -g4605,174:9673609,14144631 -k4605,175:14664504,14144631:3795518 -k4605,175:18460021,14144631:3795517 -) -(4605,176:6630773,15022813:11829248,513147,7863 -h4605,175:6630773,15022813:0,0,0 -g4605,175:7813042,15022813 -k4605,176:14170690,15022813:4289332 -k4605,176:18460021,15022813:4289331 -) -(4605,177:6630773,15900995:11829248,505283,126483 -h4605,176:6630773,15900995:0,0,0 -r4605,256:6630773,15900995:0,631766,126483 -g4605,176:7941493,15900995 -g4605,176:7941493,15900995 -g4605,176:10983674,15900995 -k4605,177:15319536,15900995:3140485 -k4605,177:18460021,15900995:3140485 -) -(4605,178:6630773,16779177:11829248,505283,126483 -h4605,177:6630773,16779177:0,0,0 -r4605,256:6630773,16779177:0,631766,126483 -g4605,177:7941493,16779177 -g4605,177:7941493,16779177 -g4605,177:9971798,16779177 -g4605,177:13687034,16779177 -k4605,178:16671216,16779177:1788805 -k4605,178:18460021,16779177:1788805 -) -(4605,179:6630773,17657359:11829248,513147,126483 -h4605,178:6630773,17657359:0,0,0 -g4605,178:7813042,17657359 -g4605,178:11590537,17657359 -k4605,179:16384496,17657359:2075526 -k4605,179:18460021,17657359:2075525 -) -(4605,180:6630773,18535540:11829248,513147,126483 -h4605,179:6630773,18535540:0,0,0 -g4605,179:7813042,18535540 -k4605,180:14025855,18535540:4434166 -k4605,180:18460021,18535540:4434166 -) -(4605,181:6630773,19413722:11829248,485622,134348 -h4605,180:6630773,19413722:0,0,0 -r4605,256:6630773,19413722:0,619970,134348 -g4605,180:7941493,19413722 -g4605,180:7941493,19413722 -g4605,180:10699903,19413722 -k4605,181:15177651,19413722:3282371 -k4605,181:18460021,19413722:3282370 -) -(4605,182:6630773,20291904:11829248,505283,126483 -h4605,181:6630773,20291904:0,0,0 -r4605,256:6630773,20291904:0,631766,126483 -g4605,181:7941493,20291904 -g4605,181:7941493,20291904 -g4605,181:9971798,20291904 -g4605,181:13687034,20291904 -k4605,182:16671216,20291904:1788805 -k4605,182:18460021,20291904:1788805 -) -(4605,183:6630773,21170086:11829248,513147,7863 -h4605,182:6630773,21170086:0,0,0 -k4605,183:13202068,21170086:5257953 -k4605,183:18460021,21170086:5257953 -) -(4605,184:6630773,22048268:11829248,505283,134348 -h4605,183:6630773,22048268:0,0,0 -r4605,256:6630773,22048268:0,639631,134348 -g4605,183:7941493,22048268 -g4605,183:7941493,22048268 -g4605,183:12432020,22048268 -k4605,184:16043709,22048268:2416312 -k4605,184:18460021,22048268:2416312 -) -(4605,185:6630773,22926449:11829248,513147,134348 -h4605,184:6630773,22926449:0,0,0 -g4605,184:9262043,22926449 -g4605,184:11149479,22926449 -k4605,185:16212791,22926449:2247230 -k4605,185:18460021,22926449:2247230 -) -(4605,186:6630773,23804631:11829248,505283,102891 -h4605,185:6630773,23804631:0,0,0 -r4605,256:6630773,23804631:0,608174,102891 -g4605,185:7941493,23804631 -g4605,185:7941493,23804631 -g4605,185:11590537,23804631 -k4605,186:15976207,23804631:2483815 -k4605,186:18460021,23804631:2483814 -) -(4605,187:6630773,24682813:11829248,513147,134348 -h4605,186:6630773,24682813:0,0,0 -g4605,186:8775766,24682813 -g4605,186:9942306,24682813 -g4605,186:12573576,24682813 -g4605,186:14461012,24682813 -k4605,187:17868558,24682813:591464 -k4605,187:18460021,24682813:591463 -) -(4605,188:6630773,25560995:11829248,513147,126483 -h4605,187:6630773,25560995:0,0,0 -g4605,187:9254834,25560995 -g4605,187:10421374,25560995 -g4605,187:11603643,25560995 -k4605,188:15921156,25560995:2538866 -k4605,188:18460021,25560995:2538865 -) -(4605,189:6630773,26439177:11829248,513147,126483 -h4605,188:6630773,26439177:0,0,0 -g4605,188:7777653,26439177 -g4605,188:9565475,26439177 -k4605,189:14610437,26439177:3849585 -k4605,189:18460021,26439177:3849584 -) -(4605,190:6630773,27317358:11829248,505283,102891 -h4605,189:6630773,27317358:0,0,0 -r4605,256:6630773,27317358:0,608174,102891 -g4605,189:7941493,27317358 -g4605,189:7941493,27317358 -g4605,189:11005301,27317358 -k4605,190:15320519,27317358:3139502 -k4605,190:18460021,27317358:3139502 -) -(4605,191:6630773,28195540:11829248,513147,134348 -h4605,190:6568514,28195540:0,0,0 -g4605,190:9635598,28195540 -g4605,190:11203874,28195540 -g4605,190:12772150,28195540 -g4605,190:14340426,28195540 -g4605,190:15908702,28195540 -k4605,191:17772220,28195540:687802 -k4605,191:18460021,28195540:687801 -) -(4605,192:6630773,29073722:11829248,513147,134348 -h4605,191:6630773,29073722:0,0,0 -g4605,191:10035368,29073722 -g4605,191:13209276,29073722 -g4605,191:15604616,29073722 -k4605,191:18460021,29073722:1287784 -) -(4605,192:9252213,29938802:9207808,505283,102891 -g4605,191:12441194,29938802 -k4605,192:15849067,29938802:2610955 -k4605,192:18460021,29938802:2610954 -) -(4605,193:6630773,30816984:11829248,485622,102891 -h4605,192:6630773,30816984:0,0,0 -g4605,192:10044543,30816984 -g4605,192:11214360,30816984 -g4605,192:12782636,30816984 -g4605,192:14350912,30816984 -g4605,192:15919188,30816984 -k4605,192:18460021,30816984:1258294 -) -(4605,193:9252213,31682064:9207808,485622,11795 -k4605,193:14453806,31682064:4006216 -k4605,193:18460021,31682064:4006215 -) -(4605,194:6630773,32560246:11829248,513147,7863 -h4605,193:6630773,32560246:0,0,0 -k4605,194:14058296,32560246:4401726 -k4605,194:18460021,32560246:4401725 -) -(4605,195:6630773,33438427:11829248,485622,134348 -h4605,194:6630773,33438427:0,0,0 -r4605,256:6630773,33438427:0,619970,134348 -g4605,194:7941493,33438427 -g4605,194:7941493,33438427 -g4605,194:11717022,33438427 -k4605,195:15686210,33438427:2773811 -k4605,195:18460021,33438427:2773811 -) -(4605,196:6630773,34316609:11829248,505283,102891 -h4605,195:6630773,34316609:0,0,0 -r4605,256:6630773,34316609:0,608174,102891 -g4605,195:7941493,34316609 -g4605,195:7941493,34316609 -g4605,195:9414087,34316609 -k4605,196:14534743,34316609:3925279 -k4605,196:18460021,34316609:3925278 -) -(4605,197:6630773,35194791:11829248,513147,134348 -h4605,196:6630773,35194791:0,0,0 -r4605,256:6630773,35194791:0,647495,134348 -g4605,196:7941493,35194791 -g4605,196:7941493,35194791 -g4605,196:10744467,35194791 -g4605,196:12400561,35194791 -g4605,196:13968837,35194791 -k4605,197:16802287,35194791:1657734 -k4605,197:18460021,35194791:1657734 -) -(4605,198:6630773,36072973:11829248,513147,134348 -h4605,197:6630773,36072973:0,0,0 -g4605,197:9105412,36072973 -k4605,198:14983992,36072973:3476030 -k4605,198:18460021,36072973:3476029 -) -(4605,199:6630773,36951155:11829248,505283,134348 -h4605,198:6630773,36951155:0,0,0 -r4605,256:6630773,36951155:0,639631,134348 -g4605,198:7941493,36951155 -g4605,198:7941493,36951155 -g4605,198:10442346,36951155 -g4605,198:11086564,36951155 -g4605,198:12955650,36951155 -k4605,199:16295694,36951155:2164328 -k4605,199:18460021,36951155:2164327 -) -(4605,200:6630773,37829336:11829248,513147,134348 -h4605,199:6630773,37829336:0,0,0 -r4605,256:6630773,37829336:0,647495,134348 -g4605,199:7941493,37829336 -g4605,199:7941493,37829336 -g4605,199:11043312,37829336 -g4605,199:11901833,37829336 -g4605,199:14993821,37829336 -k4605,200:17314779,37829336:1145242 -k4605,200:18460021,37829336:1145242 -) -(4605,201:6630773,38707518:11829248,505283,126483 -h4605,200:6630773,38707518:0,0,0 -r4605,256:6630773,38707518:0,631766,126483 -g4605,200:7941493,38707518 -g4605,200:7941493,38707518 -g4605,200:12654842,38707518 -g4605,200:13536956,38707518 -g4605,200:14354845,38707518 -k4605,201:16995291,38707518:1464730 -k4605,201:18460021,38707518:1464730 -) -(4605,202:6630773,39585700:11829248,513147,134348 -h4605,201:6630773,39585700:0,0,0 -r4605,256:6630773,39585700:0,647495,134348 -g4605,201:7941493,39585700 -g4605,201:7941493,39585700 -g4605,201:9423917,39585700 -g4605,201:12856037,39585700 -g4605,201:13714558,39585700 -g4605,201:15476821,39585700 -k4605,202:17566110,39585700:893912 -k4605,202:18460021,39585700:893911 -) -(4605,203:6630773,40463882:11829248,505283,134348 -h4605,202:6630773,40463882:0,0,0 -r4605,256:6630773,40463882:0,639631,134348 -g4605,202:7941493,40463882 -g4605,202:7941493,40463882 -g4605,202:10100248,40463882 -g4605,202:12970724,40463882 -g4605,202:17522199,40463882 -k4605,202:18460021,40463882:321784 -) -(4605,203:9252213,41328962:9207808,485622,102891 -g4605,202:10070102,41328962 -k4605,203:14862750,41328962:3597271 -k4605,203:18460021,41328962:3597271 -) -(4605,204:6630773,42207144:11829248,505283,134348 -h4605,203:6630773,42207144:0,0,0 -r4605,256:6630773,42207144:0,639631,134348 -g4605,203:7941493,42207144 -g4605,203:7941493,42207144 -g4605,203:10720874,42207144 -g4605,203:15225818,42207144 -k4605,204:17440608,42207144:1019413 -k4605,204:18460021,42207144:1019413 -) -(4605,205:6630773,43085325:11829248,505283,134348 -h4605,204:6630773,43085325:0,0,0 -r4605,256:6630773,43085325:0,639631,134348 -g4605,204:7941493,43085325 -g4605,204:7941493,43085325 -g4605,204:10838839,43085325 -k4605,205:15237288,43085325:3222733 -k4605,205:18460021,43085325:3222733 -) -(4605,206:6630773,43963507:11829248,505283,126483 -h4605,205:6630773,43963507:0,0,0 -r4605,256:6630773,43963507:0,631766,126483 -g4605,205:7941493,43963507 -g4605,205:7941493,43963507 -g4605,205:9643463,43963507 -g4605,205:12004069,43963507 -g4605,205:12819336,43963507 -g4605,205:14470843,43963507 -g4605,205:15861517,43963507 -k4605,205:18460021,43963507:750389 -) -(4605,206:9252213,44828587:9207808,485622,0 -k4605,206:14244746,44828587:4215276 -k4605,206:18460021,44828587:4215275 -) -(4605,207:6630773,45706769:11829248,505283,102891 -h4605,206:6630773,45706769:0,0,0 -r4605,256:6630773,45706769:0,608174,102891 -g4605,206:7941493,45706769 -g4605,206:7941493,45706769 -g4605,206:10994160,45706769 -g4605,206:12587340,45706769 -g4605,206:13405229,45706769 -k4605,207:16520483,45706769:1939538 -k4605,207:18460021,45706769:1939538 -) -] -k4605,256:19606901,45706769:1146880 -r4605,256:19606901,45706769:0,40242380,134348 -k4605,256:20753781,45706769:1146880 -[4605,256:20753781,45706769:11829248,40108032,134348 -(4605,208:20753781,6254097:11829248,505283,134348 -h4605,207:20753781,6254097:0,0,0 -r4605,256:20753781,6254097:0,639631,134348 -g4605,207:22064501,6254097 -g4605,207:22064501,6254097 -g4605,207:23282815,6254097 -g4605,207:23927033,6254097 -g4605,207:27142229,6254097 -k4605,208:30460318,6254097:2122712 -k4605,208:32583029,6254097:2122711 -) -(4605,209:20753781,7119177:11829248,505283,134348 -h4605,208:20753781,7119177:0,0,0 -r4605,256:20753781,7119177:0,639631,134348 -g4605,208:22064501,7119177 -g4605,208:22064501,7119177 -g4605,208:23999123,7119177 -g4605,208:25217437,7119177 -g4605,208:25861655,7119177 -g4605,208:29076851,7119177 -g4605,208:30246668,7119177 -k4605,209:32002707,7119177:580323 -k4605,209:32583029,7119177:580322 -) -(4605,210:20753781,7984257:11829248,513147,102891 -h4605,209:20691522,7984257:0,0,0 -g4605,209:23409955,7984257 -k4605,210:28594181,7984257:3988849 -k4605,210:32583029,7984257:3988848 -) -(4605,214:20753781,9373409:11829248,505283,134348 -h4605,213:20753781,9373409:0,0,0 -g4605,213:24585671,9373409 -g4605,213:26597626,9373409 -g4605,213:29288534,9373409 -k4605,214:32294998,9373409:288031 -k4605,214:32583029,9373409:288031 -) -(4605,216:20753781,10238489:11829248,505283,134348 -h4605,214:20753781,10238489:0,0,0 -g4605,214:24460497,10238489 -g4605,214:28019101,10238489 -k4605,215:28019101,10238489:0 -g4605,215:29185641,10238489 -k4605,215:32583029,10238489:509216 -) -(4605,216:23375221,11103569:9207808,513147,134348 -g4605,215:24233742,11103569 -g4605,215:27325730,11103569 -k4605,216:31708123,11103569:874906 -k4605,216:32583029,11103569:874906 -) -(4605,217:20753781,11968649:11829248,505283,134348 -h4605,216:20691522,11968649:0,0,0 -g4605,216:25518248,11968649 -k4605,217:29648327,11968649:2934702 -k4605,217:32583029,11968649:2934702 -) -(4605,218:20753781,12833729:11829248,513147,134348 -h4605,217:20691522,12833729:0,0,0 -g4605,217:23906717,12833729 -k4605,218:28842562,12833729:3740468 -k4605,218:32583029,12833729:3740467 -) -(4605,219:20753781,13698809:11829248,505283,134348 -h4605,218:20691522,13698809:0,0,0 -g4605,218:24673489,13698809 -k4605,219:29225948,13698809:3357082 -k4605,219:32583029,13698809:3357081 -) -(4605,223:20753781,14563889:11829248,505283,134348 -h4605,219:20691522,14563889:0,0,0 -g4605,219:23959802,14563889 -g4605,219:25256104,14563889 -g4605,219:26753601,14563889 -g4605,219:28321877,14563889 -g4605,219:29890153,14563889 -k4605,219:32583029,14563889:1410337 -) -(4605,223:23375221,15428969:9207808,485622,102891 -g4605,219:24943497,15428969 -g4605,219:28034830,15428969 -g4605,220:29603106,15428969 -g4605,220:31171382,15428969 -k4605,220:32583029,15428969:129108 -) -(4605,223:23375221,16294049:9207808,485622,102891 -g4605,220:24943497,16294049 -g4605,220:26511773,16294049 -g4605,220:28080049,16294049 -g4605,220:29648325,16294049 -k4605,220:32583029,16294049:1652165 -) -(4605,223:23375221,17159129:9207808,485622,102891 -g4605,220:26466554,17159129 -g4605,220:28034830,17159129 -g4605,221:31126163,17159129 -k4605,221:32583029,17159129:174327 -) -(4605,223:23375221,18024209:9207808,485622,102891 -g4605,221:24943497,18024209 -g4605,221:26511773,18024209 -g4605,221:28080049,18024209 -g4605,221:29648325,18024209 -g4605,221:31216601,18024209 -k4605,221:32583029,18024209:83889 -) -(4605,223:23375221,18889289:9207808,485622,102891 -g4605,221:26466554,18889289 -g4605,222:28034830,18889289 -g4605,222:29603106,18889289 -g4605,222:31171382,18889289 -k4605,222:32583029,18889289:129108 -) -(4605,223:23375221,19754369:9207808,485622,102891 -g4605,222:26466554,19754369 -g4605,222:28034830,19754369 -g4605,222:29603106,19754369 -g4605,222:31171382,19754369 -k4605,223:32465064,19754369:117966 -k4605,223:32583029,19754369:117965 -) -(4605,224:20753781,20619449:11829248,505283,134348 -h4605,223:20691522,20619449:0,0,0 -g4605,223:24178692,20619449 -g4605,223:25746968,20619449 -g4605,223:27315244,20619449 -k4605,224:30536995,20619449:2046035 -k4605,224:32583029,20619449:2046034 -) -(4605,225:20753781,21484529:11829248,505283,134348 -h4605,224:20691522,21484529:0,0,0 -g4605,224:23120941,21484529 -g4605,224:24689217,21484529 -g4605,224:26257493,21484529 -g4605,224:27825769,21484529 -g4605,224:29394045,21484529 -k4605,225:31586226,21484529:996804 -k4605,225:32583029,21484529:996803 -) -(4605,226:20753781,22349609:11829248,505283,134348 -h4605,225:20691522,22349609:0,0,0 -g4605,225:23895576,22349609 -g4605,225:25463852,22349609 -k4605,226:29621129,22349609:2961900 -k4605,226:32583029,22349609:2961900 -) -(4605,227:20753781,23214689:11829248,505283,134348 -h4605,226:20691522,23214689:0,0,0 -g4605,226:24342532,23214689 -k4605,227:29060469,23214689:3522560 -k4605,227:32583029,23214689:3522560 -) -(4605,228:20753781,24079769:11829248,505283,134348 -h4605,227:20691522,24079769:0,0,0 -g4605,227:23552168,24079769 -k4605,228:28665287,24079769:3917742 -k4605,228:32583029,24079769:3917742 -) -(4605,229:20753781,24944849:11829248,505283,134348 -h4605,228:20691522,24944849:0,0,0 -g4605,228:23870673,24944849 -k4605,229:28824540,24944849:3758490 -k4605,229:32583029,24944849:3758489 -) -(4605,230:20753781,25809929:11829248,485622,102891 -h4605,229:20753781,25809929:0,0,0 -g4605,229:22035009,25809929 -k4605,230:27896877,25809929:4686152 -k4605,230:32583029,25809929:4686152 -) -(4605,231:20753781,26675009:11829248,505283,102891 -h4605,230:20753781,26675009:0,0,0 -g4605,230:23335899,26675009 -g4605,230:24107257,26675009 -k4605,231:28933001,26675009:3650028 -k4605,231:32583029,26675009:3650028 -) -(4605,232:20753781,27540089:11829248,505283,134348 -h4605,231:20753781,27540089:0,0,0 -g4605,231:22535049,27540089 -g4605,231:23701589,27540089 -g4605,231:27533479,27540089 -g4605,231:29545434,27540089 -k4605,232:32223236,27540089:359794 -k4605,232:32583029,27540089:359793 -) -(4605,233:20753781,28405169:11829248,505283,134348 -h4605,232:20691522,28405169:0,0,0 -g4605,232:23770403,28405169 -k4605,233:28764574,28405169:3818455 -k4605,233:32583029,28405169:3818455 -) -(4605,234:20753781,29270249:11829248,513147,134348 -h4605,233:20753781,29270249:0,0,0 -g4605,233:23855600,29270249 -g4605,233:24714121,29270249 -g4605,233:27806109,29270249 -g4605,233:29374385,29270249 -k4605,234:31566565,29270249:1016464 -k4605,234:32583029,29270249:1016464 -) -(4605,235:20753781,30135329:11829248,505283,102891 -h4605,234:20753781,30135329:0,0,0 -r4605,256:20753781,30135329:0,608174,102891 -g4605,234:22064501,30135329 -g4605,234:22064501,30135329 -g4605,234:25819058,30135329 -k4605,235:29798732,30135329:2784297 -k4605,235:32583029,30135329:2784297 -) -(4605,236:20753781,31000409:11829248,505283,102891 -h4605,235:20753781,31000409:0,0,0 -r4605,256:20753781,31000409:0,608174,102891 -g4605,235:22064501,31000409 -g4605,235:22064501,31000409 -g4605,235:25819058,31000409 -k4605,236:29788902,31000409:2794128 -k4605,236:32583029,31000409:2794127 -) -(4605,237:20753781,31865489:11829248,485622,102891 -h4605,236:20753781,31865489:0,0,0 -r4605,256:20753781,31865489:0,588513,102891 -g4605,236:22064501,31865489 -g4605,236:22064501,31865489 -g4605,236:26228003,31865489 -k4605,237:30754902,31865489:1828127 -k4605,237:32583029,31865489:1828127 -) -(4605,238:20753781,32730569:11829248,505283,102891 -h4605,237:20753781,32730569:0,0,0 -r4605,256:20753781,32730569:0,608174,102891 -g4605,237:22064501,32730569 -g4605,237:22064501,32730569 -g4605,237:24463118,32730569 -g4605,237:26738528,32730569 -k4605,238:31019995,32730569:1563034 -k4605,238:32583029,32730569:1563034 -) -(4605,239:20753781,33595649:11829248,505283,102891 -h4605,238:20753781,33595649:0,0,0 -r4605,256:20753781,33595649:0,608174,102891 -g4605,238:22064501,33595649 -g4605,238:22064501,33595649 -g4605,238:25147969,33595649 -g4605,238:29259042,33595649 -g4605,238:30827318,33595649 -k4605,239:32302862,33595649:280167 -k4605,239:32583029,33595649:280167 -) -(4605,240:20753781,34460729:11829248,513147,102891 -h4605,239:20753781,34460729:0,0,0 -r4605,256:20753781,34460729:0,616038,102891 -g4605,239:22064501,34460729 -g4605,239:22064501,34460729 -g4605,239:24294691,34460729 -g4605,239:25685365,34460729 -g4605,239:26725421,34460729 -g4605,239:29000831,34460729 -k4605,240:32151147,34460729:431883 -k4605,240:32583029,34460729:431882 -) -(4605,241:20753781,35325809:11829248,505283,134348 -h4605,240:20753781,35325809:0,0,0 -r4605,256:20753781,35325809:0,639631,134348 -g4605,240:22064501,35325809 -g4605,240:22064501,35325809 -g4605,240:24646619,35325809 -g4605,240:28009271,35325809 -k4605,241:31645536,35325809:937493 -k4605,241:32583029,35325809:937493 -) -(4605,242:20753781,36190889:11829248,505283,126483 -h4605,241:20753781,36190889:0,0,0 -r4605,256:20753781,36190889:0,631766,126483 -g4605,241:22064501,36190889 -g4605,241:22064501,36190889 -g4605,241:25189257,36190889 -g4605,241:27878854,36190889 -k4605,242:31590158,36190889:992871 -k4605,242:32583029,36190889:992871 -) -(4605,243:20753781,37055969:11829248,505283,102891 -h4605,242:20753781,37055969:0,0,0 -r4605,256:20753781,37055969:0,608174,102891 -g4605,242:22064501,37055969 -g4605,242:22064501,37055969 -g4605,242:25834131,37055969 -g4605,242:28109541,37055969 -k4605,243:31695671,37055969:887358 -k4605,243:32583029,37055969:887358 -) -(4605,244:20753781,37921049:11829248,505283,102891 -h4605,243:20753781,37921049:0,0,0 -r4605,256:20753781,37921049:0,608174,102891 -g4605,243:22064501,37921049 -g4605,243:22064501,37921049 -g4605,243:26175574,37921049 -k4605,244:29976990,37921049:2606039 -k4605,244:32583029,37921049:2606039 -) -(4605,245:20753781,38786129:11829248,505283,134348 -h4605,244:20753781,38786129:0,0,0 -r4605,256:20753781,38786129:0,639631,134348 -g4605,244:22064501,38786129 -g4605,244:22064501,38786129 -g4605,244:24836018,38786129 -g4605,244:25391107,38786129 -g4605,244:27750403,38786129 -k4605,245:31525933,38786129:1057097 -k4605,245:32583029,38786129:1057096 -) -(4605,246:20753781,39651209:11829248,505283,102891 -h4605,245:20753781,39651209:0,0,0 -r4605,256:20753781,39651209:0,608174,102891 -g4605,245:22064501,39651209 -g4605,245:22064501,39651209 -g4605,245:23826764,39651209 -k4605,246:28792755,39651209:3790275 -k4605,246:32583029,39651209:3790274 -) -(4605,247:20753781,40516289:11829248,505283,102891 -h4605,246:20753781,40516289:0,0,0 -r4605,256:20753781,40516289:0,608174,102891 -g4605,246:22064501,40516289 -g4605,246:22064501,40516289 -g4605,246:24789488,40516289 -g4605,246:27064898,40516289 -k4605,247:31173350,40516289:1409680 -k4605,247:32583029,40516289:1409679 -) -(4605,248:20753781,41381369:11829248,505283,102891 -h4605,247:20753781,41381369:0,0,0 -r4605,256:20753781,41381369:0,608174,102891 -g4605,247:22064501,41381369 -g4605,247:22064501,41381369 -g4605,247:25306567,41381369 -k4605,248:30304015,41381369:2279015 -k4605,248:32583029,41381369:2279014 -) -(4605,249:20753781,42246449:11829248,513147,102891 -h4605,248:20753781,42246449:0,0,0 -r4605,256:20753781,42246449:0,616038,102891 -g4605,248:22064501,42246449 -g4605,248:22064501,42246449 -g4605,248:24326148,42246449 -k4605,249:29813805,42246449:2769224 -k4605,249:32583029,42246449:2769224 -) -(4605,250:20753781,43111529:11829248,513147,126483 -h4605,249:20753781,43111529:0,0,0 -r4605,256:20753781,43111529:0,639630,126483 -g4605,249:22064501,43111529 -g4605,249:22064501,43111529 -g4605,249:24508993,43111529 -g4605,249:26280431,43111529 -k4605,250:30790947,43111529:1792083 -k4605,250:32583029,43111529:1792082 -) -(4605,251:20753781,43976609:11829248,513147,102891 -h4605,250:20753781,43976609:0,0,0 -r4605,256:20753781,43976609:0,616038,102891 -g4605,250:22064501,43976609 -g4605,250:22064501,43976609 -g4605,250:24959226,43976609 -g4605,250:27855262,43976609 -k4605,251:31568532,43976609:1014498 -k4605,251:32583029,43976609:1014497 -) -(4605,252:20753781,44841689:11829248,485622,134348 -h4605,251:20753781,44841689:0,0,0 -r4605,256:20753781,44841689:0,619970,134348 -g4605,251:22064501,44841689 -g4605,251:22064501,44841689 -g4605,251:25944887,44841689 -g4605,251:27513163,44841689 -k4605,252:31407313,44841689:1175717 -k4605,252:32583029,44841689:1175716 -) -(4605,253:20753781,45706769:11829248,505283,134348 -h4605,252:20753781,45706769:0,0,0 -r4605,256:20753781,45706769:0,639631,134348 -g4605,252:22064501,45706769 -g4605,252:22064501,45706769 -g4605,252:25579852,45706769 -g4605,252:29460238,45706769 -k4605,253:31619322,45706769:963707 -k4605,253:32583029,45706769:963707 -) -] -(4605,256:32583029,45706769:0,355205,126483 -h4605,256:32583029,45706769:420741,355205,126483 -k4605,256:32583029,45706769:-420741 -) -) -] -(4605,256:32583029,45706769:0,0,0 -g4605,256:32583029,45706769 -) -) -] -(4605,256:6630773,47279633:25952256,0,0 -h4605,256:6630773,47279633:25952256,0,0 -) -] -(4605,256:4262630,4025873:0,0,0 -[4605,256:-473656,4025873:0,0,0 -(4605,256:-473656,-710413:0,0,0 -(4605,256:-473656,-710413:0,0,0 -g4605,256:-473656,-710413 -) -g4605,256:-473656,-710413 -) -] -) -] -!27988 -}436 +[4609,256:3078558,4812305:0,0,0 +(4609,256:3078558,49800853:0,16384,2228224 +g4609,256:29030814,49800853 +g4609,256:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,256:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,256:37855564,49800853:1179648,16384,0 +) +) +k4609,256:3078556,49800853:-34777008 +) +] +g4609,256:6630773,4812305 +g4609,256:6630773,4812305 +g4609,256:9313817,4812305 +g4609,256:11211739,4812305 +k4609,256:31387651,4812305:20175912 +) +) +] +[4609,256:6630773,45706769:25952256,40108032,0 +(4609,256:6630773,45706769:25952256,40108032,0 +(4609,256:6630773,45706769:0,0,0 +g4609,256:6630773,45706769 +) +[4609,256:6630773,45706769:25952256,40108032,0 +(4609,256:6630773,45706769:25952256,40108032,126483 +[4609,256:6630773,45706769:11829248,40108032,102891 +(4609,167:6630773,6254097:11829248,485622,102891 +h4609,166:6630773,6254097:0,0,0 +r4609,256:6630773,6254097:0,588513,102891 +g4609,166:7941493,6254097 +g4609,166:7941493,6254097 +g4609,166:9661813,6254097 +g4609,166:11230089,6254097 +k4609,167:15442744,6254097:3017278 +k4609,167:18460021,6254097:3017277 +) +(4609,168:6630773,7132279:11829248,485622,102891 +h4609,167:6630773,7132279:0,0,0 +r4609,256:6630773,7132279:0,588513,102891 +g4609,167:7941493,7132279 +g4609,167:7941493,7132279 +g4609,167:9045119,7132279 +g4609,167:10519679,7132279 +k4609,168:15087539,7132279:3372483 +k4609,168:18460021,7132279:3372482 +) +(4609,169:6630773,8010461:11829248,505283,134348 +h4609,168:6630773,8010461:0,0,0 +r4609,256:6630773,8010461:0,639631,134348 +g4609,168:7941493,8010461 +g4609,168:7941493,8010461 +g4609,168:8585711,8010461 +g4609,168:10174303,8010461 +g4609,168:13605112,8010461 +g4609,168:16237693,8010461 +k4609,169:17936715,8010461:523306 +k4609,169:18460021,8010461:523306 +) +(4609,170:6630773,8888642:11829248,505283,134348 +h4609,169:6630773,8888642:0,0,0 +r4609,256:6630773,8888642:0,639631,134348 +g4609,169:7941493,8888642 +g4609,169:7941493,8888642 +g4609,169:9576616,8888642 +g4609,169:10520989,8888642 +g4609,169:12283252,8888642 +g4609,169:15153728,8888642 +k4609,169:18460021,8888642:629148 +) +(4609,170:9252213,9753722:9207808,485622,11795 +k4609,170:14443975,9753722:4016046 +k4609,170:18460021,9753722:4016046 +) +(4609,171:6630773,10631904:11829248,505283,134348 +h4609,170:6630773,10631904:0,0,0 +r4609,256:6630773,10631904:0,639631,134348 +g4609,170:7941493,10631904 +g4609,170:7941493,10631904 +g4609,170:9444233,10631904 +g4609,170:10388606,10631904 +g4609,170:12150869,10631904 +g4609,170:14223117,10631904 +g4609,170:16855698,10631904 +k4609,171:18255548,10631904:204473 +k4609,171:18460021,10631904:204473 +) +(4609,172:6630773,11510086:11829248,485622,102891 +h4609,171:6630773,11510086:0,0,0 +r4609,256:6630773,11510086:0,588513,102891 +g4609,171:7941493,11510086 +g4609,171:7941493,11510086 +g4609,171:9607418,11510086 +k4609,172:14631408,11510086:3828613 +k4609,172:18460021,11510086:3828613 +) +(4609,173:6630773,12388268:11829248,485622,102891 +h4609,172:6630773,12388268:0,0,0 +r4609,256:6630773,12388268:0,588513,102891 +g4609,172:7941493,12388268 +g4609,172:7941493,12388268 +g4609,172:9680163,12388268 +k4609,173:14667781,12388268:3792241 +k4609,173:18460021,12388268:3792240 +) +(4609,174:6630773,13266450:11829248,505283,102891 +h4609,173:6630773,13266450:0,0,0 +r4609,256:6630773,13266450:0,608174,102891 +g4609,173:7941493,13266450 +g4609,173:7941493,13266450 +g4609,173:9579893,13266450 +k4609,174:14607815,13266450:3852206 +k4609,174:18460021,13266450:3852206 +) +(4609,175:6630773,14144631:11829248,485622,102891 +h4609,174:6630773,14144631:0,0,0 +r4609,256:6630773,14144631:0,588513,102891 +g4609,174:7941493,14144631 +g4609,174:7941493,14144631 +g4609,174:9673609,14144631 +k4609,175:14664504,14144631:3795518 +k4609,175:18460021,14144631:3795517 +) +(4609,176:6630773,15022813:11829248,513147,7863 +h4609,175:6630773,15022813:0,0,0 +g4609,175:7813042,15022813 +k4609,176:14170690,15022813:4289332 +k4609,176:18460021,15022813:4289331 +) +(4609,177:6630773,15900995:11829248,505283,126483 +h4609,176:6630773,15900995:0,0,0 +r4609,256:6630773,15900995:0,631766,126483 +g4609,176:7941493,15900995 +g4609,176:7941493,15900995 +g4609,176:10983674,15900995 +k4609,177:15319536,15900995:3140485 +k4609,177:18460021,15900995:3140485 +) +(4609,178:6630773,16779177:11829248,505283,126483 +h4609,177:6630773,16779177:0,0,0 +r4609,256:6630773,16779177:0,631766,126483 +g4609,177:7941493,16779177 +g4609,177:7941493,16779177 +g4609,177:9971798,16779177 +g4609,177:13687034,16779177 +k4609,178:16671216,16779177:1788805 +k4609,178:18460021,16779177:1788805 +) +(4609,179:6630773,17657359:11829248,513147,126483 +h4609,178:6630773,17657359:0,0,0 +g4609,178:7813042,17657359 +g4609,178:11590537,17657359 +k4609,179:16384496,17657359:2075526 +k4609,179:18460021,17657359:2075525 +) +(4609,180:6630773,18535540:11829248,513147,126483 +h4609,179:6630773,18535540:0,0,0 +g4609,179:7813042,18535540 +k4609,180:14025855,18535540:4434166 +k4609,180:18460021,18535540:4434166 +) +(4609,181:6630773,19413722:11829248,485622,134348 +h4609,180:6630773,19413722:0,0,0 +r4609,256:6630773,19413722:0,619970,134348 +g4609,180:7941493,19413722 +g4609,180:7941493,19413722 +g4609,180:10699903,19413722 +k4609,181:15177651,19413722:3282371 +k4609,181:18460021,19413722:3282370 +) +(4609,182:6630773,20291904:11829248,505283,126483 +h4609,181:6630773,20291904:0,0,0 +r4609,256:6630773,20291904:0,631766,126483 +g4609,181:7941493,20291904 +g4609,181:7941493,20291904 +g4609,181:9971798,20291904 +g4609,181:13687034,20291904 +k4609,182:16671216,20291904:1788805 +k4609,182:18460021,20291904:1788805 +) +(4609,183:6630773,21170086:11829248,513147,7863 +h4609,182:6630773,21170086:0,0,0 +k4609,183:13202068,21170086:5257953 +k4609,183:18460021,21170086:5257953 +) +(4609,184:6630773,22048268:11829248,505283,134348 +h4609,183:6630773,22048268:0,0,0 +r4609,256:6630773,22048268:0,639631,134348 +g4609,183:7941493,22048268 +g4609,183:7941493,22048268 +g4609,183:12432020,22048268 +k4609,184:16043709,22048268:2416312 +k4609,184:18460021,22048268:2416312 +) +(4609,185:6630773,22926449:11829248,513147,134348 +h4609,184:6630773,22926449:0,0,0 +g4609,184:9262043,22926449 +g4609,184:11149479,22926449 +k4609,185:16212791,22926449:2247230 +k4609,185:18460021,22926449:2247230 +) +(4609,186:6630773,23804631:11829248,505283,102891 +h4609,185:6630773,23804631:0,0,0 +r4609,256:6630773,23804631:0,608174,102891 +g4609,185:7941493,23804631 +g4609,185:7941493,23804631 +g4609,185:11590537,23804631 +k4609,186:15976207,23804631:2483815 +k4609,186:18460021,23804631:2483814 +) +(4609,187:6630773,24682813:11829248,513147,134348 +h4609,186:6630773,24682813:0,0,0 +g4609,186:8775766,24682813 +g4609,186:9942306,24682813 +g4609,186:12573576,24682813 +g4609,186:14461012,24682813 +k4609,187:17868558,24682813:591464 +k4609,187:18460021,24682813:591463 +) +(4609,188:6630773,25560995:11829248,513147,126483 +h4609,187:6630773,25560995:0,0,0 +g4609,187:9254834,25560995 +g4609,187:10421374,25560995 +g4609,187:11603643,25560995 +k4609,188:15921156,25560995:2538866 +k4609,188:18460021,25560995:2538865 +) +(4609,189:6630773,26439177:11829248,513147,126483 +h4609,188:6630773,26439177:0,0,0 +g4609,188:7777653,26439177 +g4609,188:9565475,26439177 +k4609,189:14610437,26439177:3849585 +k4609,189:18460021,26439177:3849584 +) +(4609,190:6630773,27317358:11829248,505283,102891 +h4609,189:6630773,27317358:0,0,0 +r4609,256:6630773,27317358:0,608174,102891 +g4609,189:7941493,27317358 +g4609,189:7941493,27317358 +g4609,189:11005301,27317358 +k4609,190:15320519,27317358:3139502 +k4609,190:18460021,27317358:3139502 +) +(4609,191:6630773,28195540:11829248,513147,134348 +h4609,190:6568514,28195540:0,0,0 +g4609,190:9635598,28195540 +g4609,190:11203874,28195540 +g4609,190:12772150,28195540 +g4609,190:14340426,28195540 +g4609,190:15908702,28195540 +k4609,191:17772220,28195540:687802 +k4609,191:18460021,28195540:687801 +) +(4609,192:6630773,29073722:11829248,513147,134348 +h4609,191:6630773,29073722:0,0,0 +g4609,191:10035368,29073722 +g4609,191:13209276,29073722 +g4609,191:15604616,29073722 +k4609,191:18460021,29073722:1287784 +) +(4609,192:9252213,29938802:9207808,505283,102891 +g4609,191:12441194,29938802 +k4609,192:15849067,29938802:2610955 +k4609,192:18460021,29938802:2610954 +) +(4609,193:6630773,30816984:11829248,485622,102891 +h4609,192:6630773,30816984:0,0,0 +g4609,192:10044543,30816984 +g4609,192:11214360,30816984 +g4609,192:12782636,30816984 +g4609,192:14350912,30816984 +g4609,192:15919188,30816984 +k4609,192:18460021,30816984:1258294 +) +(4609,193:9252213,31682064:9207808,485622,11795 +k4609,193:14453806,31682064:4006216 +k4609,193:18460021,31682064:4006215 +) +(4609,194:6630773,32560246:11829248,513147,7863 +h4609,193:6630773,32560246:0,0,0 +k4609,194:14058296,32560246:4401726 +k4609,194:18460021,32560246:4401725 +) +(4609,195:6630773,33438427:11829248,485622,134348 +h4609,194:6630773,33438427:0,0,0 +r4609,256:6630773,33438427:0,619970,134348 +g4609,194:7941493,33438427 +g4609,194:7941493,33438427 +g4609,194:11717022,33438427 +k4609,195:15686210,33438427:2773811 +k4609,195:18460021,33438427:2773811 +) +(4609,196:6630773,34316609:11829248,505283,102891 +h4609,195:6630773,34316609:0,0,0 +r4609,256:6630773,34316609:0,608174,102891 +g4609,195:7941493,34316609 +g4609,195:7941493,34316609 +g4609,195:9414087,34316609 +k4609,196:14534743,34316609:3925279 +k4609,196:18460021,34316609:3925278 +) +(4609,197:6630773,35194791:11829248,513147,134348 +h4609,196:6630773,35194791:0,0,0 +r4609,256:6630773,35194791:0,647495,134348 +g4609,196:7941493,35194791 +g4609,196:7941493,35194791 +g4609,196:10744467,35194791 +g4609,196:12400561,35194791 +g4609,196:13968837,35194791 +k4609,197:16802287,35194791:1657734 +k4609,197:18460021,35194791:1657734 +) +(4609,198:6630773,36072973:11829248,513147,134348 +h4609,197:6630773,36072973:0,0,0 +g4609,197:9105412,36072973 +k4609,198:14983992,36072973:3476030 +k4609,198:18460021,36072973:3476029 +) +(4609,199:6630773,36951155:11829248,505283,134348 +h4609,198:6630773,36951155:0,0,0 +r4609,256:6630773,36951155:0,639631,134348 +g4609,198:7941493,36951155 +g4609,198:7941493,36951155 +g4609,198:10442346,36951155 +g4609,198:11086564,36951155 +g4609,198:12955650,36951155 +k4609,199:16295694,36951155:2164328 +k4609,199:18460021,36951155:2164327 +) +(4609,200:6630773,37829336:11829248,513147,134348 +h4609,199:6630773,37829336:0,0,0 +r4609,256:6630773,37829336:0,647495,134348 +g4609,199:7941493,37829336 +g4609,199:7941493,37829336 +g4609,199:11043312,37829336 +g4609,199:11901833,37829336 +g4609,199:14993821,37829336 +k4609,200:17314779,37829336:1145242 +k4609,200:18460021,37829336:1145242 +) +(4609,201:6630773,38707518:11829248,505283,126483 +h4609,200:6630773,38707518:0,0,0 +r4609,256:6630773,38707518:0,631766,126483 +g4609,200:7941493,38707518 +g4609,200:7941493,38707518 +g4609,200:12654842,38707518 +g4609,200:13536956,38707518 +g4609,200:14354845,38707518 +k4609,201:16995291,38707518:1464730 +k4609,201:18460021,38707518:1464730 +) +(4609,202:6630773,39585700:11829248,513147,134348 +h4609,201:6630773,39585700:0,0,0 +r4609,256:6630773,39585700:0,647495,134348 +g4609,201:7941493,39585700 +g4609,201:7941493,39585700 +g4609,201:9423917,39585700 +g4609,201:12856037,39585700 +g4609,201:13714558,39585700 +g4609,201:15476821,39585700 +k4609,202:17566110,39585700:893912 +k4609,202:18460021,39585700:893911 +) +(4609,203:6630773,40463882:11829248,505283,134348 +h4609,202:6630773,40463882:0,0,0 +r4609,256:6630773,40463882:0,639631,134348 +g4609,202:7941493,40463882 +g4609,202:7941493,40463882 +g4609,202:10100248,40463882 +g4609,202:12970724,40463882 +g4609,202:17522199,40463882 +k4609,202:18460021,40463882:321784 +) +(4609,203:9252213,41328962:9207808,485622,102891 +g4609,202:10070102,41328962 +k4609,203:14862750,41328962:3597271 +k4609,203:18460021,41328962:3597271 +) +(4609,204:6630773,42207144:11829248,505283,134348 +h4609,203:6630773,42207144:0,0,0 +r4609,256:6630773,42207144:0,639631,134348 +g4609,203:7941493,42207144 +g4609,203:7941493,42207144 +g4609,203:10720874,42207144 +g4609,203:15225818,42207144 +k4609,204:17440608,42207144:1019413 +k4609,204:18460021,42207144:1019413 +) +(4609,205:6630773,43085325:11829248,505283,134348 +h4609,204:6630773,43085325:0,0,0 +r4609,256:6630773,43085325:0,639631,134348 +g4609,204:7941493,43085325 +g4609,204:7941493,43085325 +g4609,204:10838839,43085325 +k4609,205:15237288,43085325:3222733 +k4609,205:18460021,43085325:3222733 +) +(4609,206:6630773,43963507:11829248,505283,126483 +h4609,205:6630773,43963507:0,0,0 +r4609,256:6630773,43963507:0,631766,126483 +g4609,205:7941493,43963507 +g4609,205:7941493,43963507 +g4609,205:9643463,43963507 +g4609,205:12004069,43963507 +g4609,205:12819336,43963507 +g4609,205:14470843,43963507 +g4609,205:15861517,43963507 +k4609,205:18460021,43963507:750389 +) +(4609,206:9252213,44828587:9207808,485622,0 +k4609,206:14244746,44828587:4215276 +k4609,206:18460021,44828587:4215275 +) +(4609,207:6630773,45706769:11829248,505283,102891 +h4609,206:6630773,45706769:0,0,0 +r4609,256:6630773,45706769:0,608174,102891 +g4609,206:7941493,45706769 +g4609,206:7941493,45706769 +g4609,206:10994160,45706769 +g4609,206:12587340,45706769 +g4609,206:13405229,45706769 +k4609,207:16520483,45706769:1939538 +k4609,207:18460021,45706769:1939538 +) +] +k4609,256:19606901,45706769:1146880 +r4609,256:19606901,45706769:0,40234515,126483 +k4609,256:20753781,45706769:1146880 +[4609,256:20753781,45706769:11829248,40108032,102891 +(4609,208:20753781,6254097:11829248,505283,134348 +h4609,207:20753781,6254097:0,0,0 +r4609,256:20753781,6254097:0,639631,134348 +g4609,207:22064501,6254097 +g4609,207:22064501,6254097 +g4609,207:23282815,6254097 +g4609,207:23927033,6254097 +g4609,207:27142229,6254097 +k4609,208:30460318,6254097:2122712 +k4609,208:32583029,6254097:2122711 +) +(4609,209:20753781,7119177:11829248,505283,134348 +h4609,208:20753781,7119177:0,0,0 +r4609,256:20753781,7119177:0,639631,134348 +g4609,208:22064501,7119177 +g4609,208:22064501,7119177 +g4609,208:23999123,7119177 +g4609,208:25217437,7119177 +g4609,208:25861655,7119177 +g4609,208:29076851,7119177 +g4609,208:30246668,7119177 +k4609,209:32002707,7119177:580323 +k4609,209:32583029,7119177:580322 +) +(4609,210:20753781,7984257:11829248,513147,102891 +h4609,209:20691522,7984257:0,0,0 +g4609,209:23409955,7984257 +k4609,210:28594181,7984257:3988849 +k4609,210:32583029,7984257:3988848 +) +(4609,214:20753781,9373409:11829248,505283,134348 +h4609,213:20753781,9373409:0,0,0 +g4609,213:24585671,9373409 +g4609,213:26597626,9373409 +g4609,213:29288534,9373409 +k4609,214:32294998,9373409:288031 +k4609,214:32583029,9373409:288031 +) +(4609,216:20753781,10238489:11829248,505283,134348 +h4609,214:20753781,10238489:0,0,0 +g4609,214:24460497,10238489 +g4609,214:28019101,10238489 +k4609,215:28019101,10238489:0 +g4609,215:29185641,10238489 +k4609,215:32583029,10238489:509216 +) +(4609,216:23375221,11103569:9207808,513147,134348 +g4609,215:24233742,11103569 +g4609,215:27325730,11103569 +k4609,216:31708123,11103569:874906 +k4609,216:32583029,11103569:874906 +) +(4609,217:20753781,11968649:11829248,505283,134348 +h4609,216:20691522,11968649:0,0,0 +g4609,216:25518248,11968649 +k4609,217:29648327,11968649:2934702 +k4609,217:32583029,11968649:2934702 +) +(4609,218:20753781,12833729:11829248,513147,134348 +h4609,217:20691522,12833729:0,0,0 +g4609,217:23906717,12833729 +k4609,218:28842562,12833729:3740468 +k4609,218:32583029,12833729:3740467 +) +(4609,219:20753781,13698809:11829248,505283,134348 +h4609,218:20691522,13698809:0,0,0 +g4609,218:24673489,13698809 +k4609,219:29225948,13698809:3357082 +k4609,219:32583029,13698809:3357081 +) +(4609,223:20753781,14563889:11829248,505283,134348 +h4609,219:20691522,14563889:0,0,0 +g4609,219:23959802,14563889 +g4609,219:25256104,14563889 +g4609,219:26753601,14563889 +g4609,219:28321877,14563889 +g4609,219:29890153,14563889 +k4609,219:32583029,14563889:1410337 +) +(4609,223:23375221,15428969:9207808,485622,102891 +g4609,219:24943497,15428969 +g4609,219:28034830,15428969 +g4609,220:29603106,15428969 +g4609,220:31171382,15428969 +k4609,220:32583029,15428969:129108 +) +(4609,223:23375221,16294049:9207808,485622,102891 +g4609,220:24943497,16294049 +g4609,220:26511773,16294049 +g4609,220:28080049,16294049 +g4609,220:29648325,16294049 +k4609,220:32583029,16294049:1652165 +) +(4609,223:23375221,17159129:9207808,485622,102891 +g4609,220:26466554,17159129 +g4609,220:28034830,17159129 +g4609,221:31126163,17159129 +k4609,221:32583029,17159129:174327 +) +(4609,223:23375221,18024209:9207808,485622,102891 +g4609,221:24943497,18024209 +g4609,221:26511773,18024209 +g4609,221:28080049,18024209 +g4609,221:29648325,18024209 +g4609,221:31216601,18024209 +k4609,221:32583029,18024209:83889 +) +(4609,223:23375221,18889289:9207808,485622,102891 +g4609,221:26466554,18889289 +g4609,222:28034830,18889289 +g4609,222:29603106,18889289 +g4609,222:31171382,18889289 +k4609,222:32583029,18889289:129108 +) +(4609,223:23375221,19754369:9207808,485622,102891 +g4609,222:26466554,19754369 +g4609,222:28034830,19754369 +g4609,222:29603106,19754369 +g4609,222:31171382,19754369 +k4609,223:32465064,19754369:117966 +k4609,223:32583029,19754369:117965 +) +(4609,224:20753781,20619449:11829248,505283,134348 +h4609,223:20691522,20619449:0,0,0 +g4609,223:24178692,20619449 +g4609,223:25746968,20619449 +g4609,223:27315244,20619449 +k4609,224:30536995,20619449:2046035 +k4609,224:32583029,20619449:2046034 +) +(4609,225:20753781,21484529:11829248,505283,134348 +h4609,224:20691522,21484529:0,0,0 +g4609,224:23120941,21484529 +g4609,224:24689217,21484529 +g4609,224:26257493,21484529 +g4609,224:27825769,21484529 +g4609,224:29394045,21484529 +k4609,225:31586226,21484529:996804 +k4609,225:32583029,21484529:996803 +) +(4609,226:20753781,22349609:11829248,505283,134348 +h4609,225:20691522,22349609:0,0,0 +g4609,225:23895576,22349609 +g4609,225:25463852,22349609 +k4609,226:29621129,22349609:2961900 +k4609,226:32583029,22349609:2961900 +) +(4609,227:20753781,23214689:11829248,505283,134348 +h4609,226:20691522,23214689:0,0,0 +g4609,226:24342532,23214689 +k4609,227:29060469,23214689:3522560 +k4609,227:32583029,23214689:3522560 +) +(4609,228:20753781,24079769:11829248,505283,134348 +h4609,227:20691522,24079769:0,0,0 +g4609,227:23552168,24079769 +k4609,228:28665287,24079769:3917742 +k4609,228:32583029,24079769:3917742 +) +(4609,229:20753781,24944849:11829248,505283,134348 +h4609,228:20691522,24944849:0,0,0 +g4609,228:23870673,24944849 +k4609,229:28824540,24944849:3758490 +k4609,229:32583029,24944849:3758489 +) +(4609,230:20753781,25809929:11829248,485622,102891 +h4609,229:20753781,25809929:0,0,0 +g4609,229:22035009,25809929 +k4609,230:27896877,25809929:4686152 +k4609,230:32583029,25809929:4686152 +) +(4609,231:20753781,26675009:11829248,505283,102891 +h4609,230:20753781,26675009:0,0,0 +g4609,230:23335899,26675009 +g4609,230:24107257,26675009 +k4609,231:28933001,26675009:3650028 +k4609,231:32583029,26675009:3650028 +) +(4609,232:20753781,27540089:11829248,505283,134348 +h4609,231:20753781,27540089:0,0,0 +g4609,231:22535049,27540089 +g4609,231:23701589,27540089 +g4609,231:27533479,27540089 +g4609,231:29545434,27540089 +k4609,232:32223236,27540089:359794 +k4609,232:32583029,27540089:359793 +) +(4609,233:20753781,28405169:11829248,505283,134348 +h4609,232:20691522,28405169:0,0,0 +g4609,232:23770403,28405169 +k4609,233:28764574,28405169:3818455 +k4609,233:32583029,28405169:3818455 +) +(4609,234:20753781,29270249:11829248,513147,134348 +h4609,233:20753781,29270249:0,0,0 +g4609,233:23855600,29270249 +g4609,233:24714121,29270249 +g4609,233:27806109,29270249 +g4609,233:29374385,29270249 +k4609,234:31566565,29270249:1016464 +k4609,234:32583029,29270249:1016464 +) +(4609,235:20753781,30135329:11829248,505283,102891 +h4609,234:20753781,30135329:0,0,0 +r4609,256:20753781,30135329:0,608174,102891 +g4609,234:22064501,30135329 +g4609,234:22064501,30135329 +g4609,234:25611964,30135329 +k4609,235:30446883,30135329:2136147 +k4609,235:32583029,30135329:2136146 +) +(4609,236:20753781,31000409:11829248,485622,102891 +h4609,235:20753781,31000409:0,0,0 +r4609,256:20753781,31000409:0,588513,102891 +g4609,235:22064501,31000409 +g4609,235:22064501,31000409 +g4609,235:26228003,31000409 +k4609,236:30754902,31000409:1828127 +k4609,236:32583029,31000409:1828127 +) +(4609,237:20753781,31865489:11829248,505283,102891 +h4609,236:20753781,31865489:0,0,0 +r4609,256:20753781,31865489:0,608174,102891 +g4609,236:22064501,31865489 +g4609,236:22064501,31865489 +g4609,236:24463118,31865489 +g4609,236:26738528,31865489 +k4609,237:31019995,31865489:1563034 +k4609,237:32583029,31865489:1563034 +) +(4609,238:20753781,32730569:11829248,505283,102891 +h4609,237:20753781,32730569:0,0,0 +r4609,256:20753781,32730569:0,608174,102891 +g4609,237:22064501,32730569 +g4609,237:22064501,32730569 +g4609,237:25147969,32730569 +g4609,237:29259042,32730569 +g4609,237:30827318,32730569 +k4609,238:32302862,32730569:280167 +k4609,238:32583029,32730569:280167 +) +(4609,239:20753781,33595649:11829248,513147,102891 +h4609,238:20753781,33595649:0,0,0 +r4609,256:20753781,33595649:0,616038,102891 +g4609,238:22064501,33595649 +g4609,238:22064501,33595649 +g4609,238:24294691,33595649 +g4609,238:25685365,33595649 +g4609,238:26725421,33595649 +g4609,238:29000831,33595649 +k4609,239:32151147,33595649:431883 +k4609,239:32583029,33595649:431882 +) +(4609,240:20753781,34460729:11829248,505283,134348 +h4609,239:20753781,34460729:0,0,0 +r4609,256:20753781,34460729:0,639631,134348 +g4609,239:22064501,34460729 +g4609,239:22064501,34460729 +g4609,239:24646619,34460729 +g4609,239:28009271,34460729 +k4609,240:31645536,34460729:937493 +k4609,240:32583029,34460729:937493 +) +(4609,241:20753781,35325809:11829248,505283,126483 +h4609,240:20753781,35325809:0,0,0 +r4609,256:20753781,35325809:0,631766,126483 +g4609,240:22064501,35325809 +g4609,240:22064501,35325809 +g4609,240:25189257,35325809 +g4609,240:27878854,35325809 +k4609,241:31590158,35325809:992871 +k4609,241:32583029,35325809:992871 +) +(4609,242:20753781,36190889:11829248,505283,102891 +h4609,241:20753781,36190889:0,0,0 +r4609,256:20753781,36190889:0,608174,102891 +g4609,241:22064501,36190889 +g4609,241:22064501,36190889 +g4609,241:25834131,36190889 +g4609,241:28109541,36190889 +k4609,242:31695671,36190889:887358 +k4609,242:32583029,36190889:887358 +) +(4609,243:20753781,37055969:11829248,505283,102891 +h4609,242:20753781,37055969:0,0,0 +r4609,256:20753781,37055969:0,608174,102891 +g4609,242:22064501,37055969 +g4609,242:22064501,37055969 +g4609,242:26175574,37055969 +k4609,243:29976990,37055969:2606039 +k4609,243:32583029,37055969:2606039 +) +(4609,244:20753781,37921049:11829248,505283,134348 +h4609,243:20753781,37921049:0,0,0 +r4609,256:20753781,37921049:0,639631,134348 +g4609,243:22064501,37921049 +g4609,243:22064501,37921049 +g4609,243:24836018,37921049 +g4609,243:25391107,37921049 +g4609,243:27750403,37921049 +k4609,244:31525933,37921049:1057097 +k4609,244:32583029,37921049:1057096 +) +(4609,245:20753781,38786129:11829248,505283,102891 +h4609,244:20753781,38786129:0,0,0 +r4609,256:20753781,38786129:0,608174,102891 +g4609,244:22064501,38786129 +g4609,244:22064501,38786129 +g4609,244:23826764,38786129 +k4609,245:28792755,38786129:3790275 +k4609,245:32583029,38786129:3790274 +) +(4609,246:20753781,39651209:11829248,505283,102891 +h4609,245:20753781,39651209:0,0,0 +r4609,256:20753781,39651209:0,608174,102891 +g4609,245:22064501,39651209 +g4609,245:22064501,39651209 +g4609,245:24789488,39651209 +g4609,245:27064898,39651209 +k4609,246:31173350,39651209:1409680 +k4609,246:32583029,39651209:1409679 +) +(4609,247:20753781,40516289:11829248,505283,102891 +h4609,246:20753781,40516289:0,0,0 +r4609,256:20753781,40516289:0,608174,102891 +g4609,246:22064501,40516289 +g4609,246:22064501,40516289 +g4609,246:25306567,40516289 +k4609,247:30304015,40516289:2279015 +k4609,247:32583029,40516289:2279014 +) +(4609,248:20753781,41381369:11829248,513147,102891 +h4609,247:20753781,41381369:0,0,0 +r4609,256:20753781,41381369:0,616038,102891 +g4609,247:22064501,41381369 +g4609,247:22064501,41381369 +g4609,247:24326148,41381369 +k4609,248:29813805,41381369:2769224 +k4609,248:32583029,41381369:2769224 +) +(4609,249:20753781,42246449:11829248,513147,126483 +h4609,248:20753781,42246449:0,0,0 +r4609,256:20753781,42246449:0,639630,126483 +g4609,248:22064501,42246449 +g4609,248:22064501,42246449 +g4609,248:24508993,42246449 +g4609,248:26280431,42246449 +k4609,249:30790947,42246449:1792083 +k4609,249:32583029,42246449:1792082 +) +(4609,250:20753781,43111529:11829248,513147,102891 +h4609,249:20753781,43111529:0,0,0 +r4609,256:20753781,43111529:0,616038,102891 +g4609,249:22064501,43111529 +g4609,249:22064501,43111529 +g4609,249:24959226,43111529 +g4609,249:27855262,43111529 +k4609,250:31568532,43111529:1014498 +k4609,250:32583029,43111529:1014497 +) +(4609,251:20753781,43976609:11829248,485622,134348 +h4609,250:20753781,43976609:0,0,0 +r4609,256:20753781,43976609:0,619970,134348 +g4609,250:22064501,43976609 +g4609,250:22064501,43976609 +g4609,250:25944887,43976609 +g4609,250:27513163,43976609 +k4609,251:31407313,43976609:1175717 +k4609,251:32583029,43976609:1175716 +) +(4609,252:20753781,44841689:11829248,505283,134348 +h4609,251:20753781,44841689:0,0,0 +r4609,256:20753781,44841689:0,639631,134348 +g4609,251:22064501,44841689 +g4609,251:22064501,44841689 +g4609,251:25579852,44841689 +g4609,251:29460238,44841689 +k4609,252:31619322,44841689:963707 +k4609,252:32583029,44841689:963707 +) +(4609,253:20753781,45706769:11829248,505283,102891 +h4609,252:20753781,45706769:0,0,0 +r4609,256:20753781,45706769:0,608174,102891 +g4609,252:22064501,45706769 +g4609,252:22064501,45706769 +g4609,252:25579852,45706769 +g4609,252:28806189,45706769 +k4609,253:31292298,45706769:1290732 +k4609,253:32583029,45706769:1290731 +) +] +(4609,256:32583029,45706769:0,355205,126483 +h4609,256:32583029,45706769:420741,355205,126483 +k4609,256:32583029,45706769:-420741 +) +) +] +(4609,256:32583029,45706769:0,0,0 +g4609,256:32583029,45706769 +) +) +] +(4609,256:6630773,47279633:25952256,0,0 +h4609,256:6630773,47279633:25952256,0,0 +) +] +(4609,256:4262630,4025873:0,0,0 +[4609,256:-473656,4025873:0,0,0 +(4609,256:-473656,-710413:0,0,0 +(4609,256:-473656,-710413:0,0,0 +g4609,256:-473656,-710413 +) +g4609,256:-473656,-710413 +) +] +) +] +!28016 +}437 !12 -{437 -[4605,345:4262630,47279633:28320399,43253760,0 -(4605,345:4262630,4025873:0,0,0 -[4605,345:-473656,4025873:0,0,0 -(4605,345:-473656,-710413:0,0,0 -(4605,345:-473656,-644877:0,0,0 -k4605,345:-473656,-644877:-65536 +{438 +[4609,348:4262630,47279633:28320399,43253760,0 +(4609,348:4262630,4025873:0,0,0 +[4609,348:-473656,4025873:0,0,0 +(4609,348:-473656,-710413:0,0,0 +(4609,348:-473656,-644877:0,0,0 +k4609,348:-473656,-644877:-65536 ) -(4605,345:-473656,4736287:0,0,0 -k4605,345:-473656,4736287:5209943 +(4609,348:-473656,4736287:0,0,0 +k4609,348:-473656,4736287:5209943 ) -g4605,345:-473656,-710413 +g4609,348:-473656,-710413 ) ] ) -[4605,345:6630773,47279633:25952256,43253760,0 -[4605,345:6630773,4812305:25952256,786432,0 -(4605,345:6630773,4812305:25952256,505283,11795 -(4605,345:6630773,4812305:25952256,505283,11795 -g4605,345:3078558,4812305 -[4605,345:3078558,4812305:0,0,0 -(4605,345:3078558,2439708:0,1703936,0 -k4605,345:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,345:2537886,2439708:1179648,16384,0 +[4609,348:6630773,47279633:25952256,43253760,0 +[4609,348:6630773,4812305:25952256,786432,0 +(4609,348:6630773,4812305:25952256,505283,11795 +(4609,348:6630773,4812305:25952256,505283,11795 +g4609,348:3078558,4812305 +[4609,348:3078558,4812305:0,0,0 +(4609,348:3078558,2439708:0,1703936,0 +k4609,348:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,348:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,345:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,348:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,345:3078558,4812305:0,0,0 -(4605,345:3078558,2439708:0,1703936,0 -g4605,345:29030814,2439708 -g4605,345:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,345:36151628,1915420:16384,1179648,0 +[4609,348:3078558,4812305:0,0,0 +(4609,348:3078558,2439708:0,1703936,0 +g4609,348:29030814,2439708 +g4609,348:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,348:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,345:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,348:37855564,2439708:1179648,16384,0 ) ) -k4605,345:3078556,2439708:-34777008 +k4609,348:3078556,2439708:-34777008 ) ] -[4605,345:3078558,4812305:0,0,0 -(4605,345:3078558,49800853:0,16384,2228224 -k4605,345:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,345:2537886,49800853:1179648,16384,0 +[4609,348:3078558,4812305:0,0,0 +(4609,348:3078558,49800853:0,16384,2228224 +k4609,348:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,348:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,345:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,348:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,345:3078558,4812305:0,0,0 -(4605,345:3078558,49800853:0,16384,2228224 -g4605,345:29030814,49800853 -g4605,345:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,345:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 -) -] -) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,345:37855564,49800853:1179648,16384,0 -) -) -k4605,345:3078556,49800853:-34777008 -) -] -g4605,345:6630773,4812305 -k4605,345:28201292,4812305:20375142 -g4605,345:30884336,4812305 -) -) -] -[4605,345:6630773,45706769:25952256,40108032,0 -(4605,345:6630773,45706769:25952256,40108032,0 -(4605,345:6630773,45706769:0,0,0 -g4605,345:6630773,45706769 -) -[4605,345:6630773,45706769:25952256,40108032,0 -(4605,345:6630773,45706769:25952256,40108032,134348 -[4605,345:6630773,45706769:11829248,40108032,102891 -(4605,254:6630773,6254097:11829248,505283,102891 -h4605,253:6630773,6254097:0,0,0 -r4605,345:6630773,6254097:0,608174,102891 -g4605,253:7941493,6254097 -g4605,253:7941493,6254097 -g4605,253:11456844,6254097 -g4605,253:14683181,6254097 -k4605,254:17169290,6254097:1290732 -k4605,254:18460021,6254097:1290731 -) -(4605,255:6630773,7119177:11829248,505283,126483 -h4605,254:6630773,7119177:0,0,0 -r4605,345:6630773,7119177:0,631766,126483 -g4605,254:7941493,7119177 -g4605,254:7941493,7119177 -g4605,254:10600944,7119177 -g4605,254:12831134,7119177 -g4605,254:15106544,7119177 -k4605,255:18142499,7119177:317522 -k4605,255:18460021,7119177:317522 -) -(4605,256:6630773,7984257:11829248,505283,126483 -h4605,255:6630773,7984257:0,0,0 -r4605,345:6630773,7984257:0,631766,126483 -g4605,255:7941493,7984257 -g4605,255:7941493,7984257 -g4605,255:11682288,7984257 -g4605,255:14371885,7984257 -k4605,256:17775170,7984257:684852 -k4605,256:18460021,7984257:684851 -) -(4605,257:6630773,8849337:11829248,505283,134348 -h4605,256:6630773,8849337:0,0,0 -r4605,345:6630773,8849337:0,639631,134348 -g4605,256:7941493,8849337 -g4605,256:7941493,8849337 -g4605,256:12125966,8849337 -k4605,256:18460021,8849337:2739406 -) -(4605,257:9252213,9714417:9207808,485622,11795 -k4605,257:15215334,9714417:3244688 -k4605,257:18460021,9714417:3244687 -) -(4605,258:6630773,10579497:11829248,505283,102891 -h4605,257:6630773,10579497:0,0,0 -r4605,345:6630773,10579497:0,608174,102891 -g4605,257:7941493,10579497 -g4605,257:7941493,10579497 -g4605,257:11123921,10579497 -g4605,257:13399331,10579497 -k4605,258:17288893,10579497:1171129 -k4605,258:18460021,10579497:1171128 -) -(4605,259:6630773,11444577:11829248,513147,134348 -h4605,258:6630773,11444577:0,0,0 -r4605,345:6630773,11444577:0,647495,134348 -g4605,258:7941493,11444577 -g4605,258:7941493,11444577 -g4605,258:10948284,11444577 -g4605,258:11806805,11444577 -g4605,258:13569068,11444577 -g4605,258:15137344,11444577 -k4605,259:18148069,11444577:311953 -k4605,259:18460021,11444577:311952 -) -(4605,260:6630773,12309657:11829248,505283,102891 -h4605,259:6630773,12309657:0,0,0 -r4605,345:6630773,12309657:0,608174,102891 -g4605,259:8596853,12309657 -g4605,259:8596853,12309657 -g4605,259:10134983,12309657 -k4605,260:14895191,12309657:3564831 -k4605,260:18460021,12309657:3564830 -) -(4605,261:6630773,13174737:11829248,485622,126483 -h4605,260:6630773,13174737:0,0,0 -r4605,345:6630773,13174737:0,612105,126483 -g4605,260:7941493,13174737 -g4605,260:7941493,13174737 -g4605,260:11391308,13174737 -k4605,261:15523353,13174737:2936668 -k4605,261:18460021,13174737:2936668 -) -(4605,262:6630773,14039817:11829248,485622,102891 -h4605,261:6630773,14039817:0,0,0 -r4605,345:6630773,14039817:0,588513,102891 -g4605,261:7941493,14039817 -g4605,261:7941493,14039817 -g4605,261:11840885,14039817 -k4605,262:15748142,14039817:2711880 -k4605,262:18460021,14039817:2711879 -) -(4605,263:6630773,14904897:11829248,505283,126483 -h4605,262:6630773,14904897:0,0,0 -r4605,345:6630773,14904897:0,631766,126483 -g4605,262:7941493,14904897 -g4605,262:7941493,14904897 -g4605,262:9418019,14904897 -g4605,262:13825315,14904897 -k4605,263:17501885,14904897:958137 -k4605,263:18460021,14904897:958136 -) -(4605,264:6630773,15769977:11829248,505283,126483 -h4605,263:6630773,15769977:0,0,0 -r4605,345:6630773,15769977:0,631766,126483 -g4605,263:7941493,15769977 -g4605,263:7941493,15769977 -g4605,263:9418019,15769977 -g4605,263:12722344,15769977 -k4605,264:16950399,15769977:1509622 -k4605,264:18460021,15769977:1509622 -) -(4605,265:6630773,16635057:11829248,505283,134348 -h4605,264:6630773,16635057:0,0,0 -r4605,345:6630773,16635057:0,639631,134348 -g4605,264:7941493,16635057 -g4605,264:7941493,16635057 -g4605,264:9418019,16635057 -g4605,264:12707926,16635057 -k4605,265:16943190,16635057:1516831 -k4605,265:18460021,16635057:1516831 -) -(4605,266:6630773,17500137:11829248,505283,134348 -h4605,265:6630773,17500137:0,0,0 -r4605,345:6630773,17500137:0,639631,134348 -g4605,265:7941493,17500137 -g4605,265:7941493,17500137 -g4605,265:9748320,17500137 -g4605,265:10633711,17500137 -g4605,265:11277929,17500137 -g4605,265:13940656,17500137 -k4605,266:17559555,17500137:900466 -k4605,266:18460021,17500137:900466 -) -(4605,267:6630773,18365217:11829248,485622,134348 -h4605,266:6630773,18365217:0,0,0 -r4605,345:6630773,18365217:0,619970,134348 -g4605,266:7941493,18365217 -g4605,266:7941493,18365217 -g4605,266:9828929,18365217 -g4605,266:13191581,18365217 -k4605,267:17185018,18365217:1275004 -k4605,267:18460021,18365217:1275003 -) -(4605,268:6630773,19230297:11829248,505283,126483 -h4605,267:6630773,19230297:0,0,0 -r4605,345:6630773,19230297:0,631766,126483 -g4605,267:7941493,19230297 -g4605,267:7941493,19230297 -g4605,267:9805336,19230297 -g4605,267:13916409,19230297 -k4605,268:17537601,19230297:922420 -k4605,268:18460021,19230297:922420 -) -(4605,269:6630773,20095377:11829248,485622,126483 -h4605,268:6630773,20095377:0,0,0 -r4605,345:6630773,20095377:0,612105,126483 -g4605,268:7941493,20095377 -g4605,268:7941493,20095377 -g4605,268:11258925,20095377 -k4605,269:15457162,20095377:3002860 -k4605,269:18460021,20095377:3002859 -) -(4605,270:6630773,20960457:11829248,505283,102891 -h4605,269:6630773,20960457:0,0,0 -r4605,345:6630773,20960457:0,608174,102891 -g4605,269:7941493,20960457 -g4605,269:7941493,20960457 -g4605,269:10216903,20960457 -g4605,269:11785179,20960457 -k4605,270:16481817,20960457:1978205 -k4605,270:18460021,20960457:1978204 -) -(4605,271:6630773,21825537:11829248,513147,134348 -h4605,270:6630773,21825537:0,0,0 -r4605,345:6630773,21825537:0,647495,134348 -g4605,270:7941493,21825537 -g4605,270:7941493,21825537 -g4605,270:10322416,21825537 -g4605,270:12787225,21825537 -g4605,270:15017415,21825537 -g4605,270:16408089,21825537 -k4605,270:18460021,21825537:1211105 -) -(4605,271:9252213,22690617:9207808,505283,102891 -g4605,270:11527623,22690617 -k4605,271:15591511,22690617:2868511 -k4605,271:18460021,22690617:2868510 -) -(4605,272:6630773,23555697:11829248,513147,134348 -h4605,271:6630773,23555697:0,0,0 -r4605,345:6630773,23555697:0,647495,134348 -g4605,271:7941493,23555697 -g4605,271:7941493,23555697 -g4605,271:8735789,23555697 -g4605,271:12616175,23555697 -k4605,272:16135787,23555697:2324235 -k4605,272:18460021,23555697:2324234 -) -(4605,273:6630773,24420777:11829248,505283,102891 -h4605,272:6630773,24420777:0,0,0 -r4605,345:6630773,24420777:0,608174,102891 -g4605,272:7941493,24420777 -g4605,272:7941493,24420777 -g4605,272:9409499,24420777 -g4605,272:11684909,24420777 -k4605,273:16431682,24420777:2028340 -k4605,273:18460021,24420777:2028339 -) -(4605,274:6630773,25285857:11829248,485622,102891 -h4605,273:6630773,25285857:0,0,0 -r4605,345:6630773,25285857:0,588513,102891 -g4605,273:7941493,25285857 -g4605,273:7941493,25285857 -g4605,273:11167830,25285857 -g4605,273:12736106,25285857 -k4605,274:16957280,25285857:1502741 -k4605,274:18460021,25285857:1502741 -) -(4605,275:6630773,26150937:11829248,513147,134348 -h4605,274:6630773,26150937:0,0,0 -r4605,345:6630773,26150937:0,647495,134348 -g4605,274:7941493,26150937 -g4605,274:7941493,26150937 -g4605,274:11072147,26150937 -g4605,274:11930668,26150937 -g4605,274:13407194,26150937 -k4605,274:18460021,26150937:2675837 -) -(4605,275:9252213,27016017:9207808,485622,11795 -k4605,275:15215334,27016017:3244688 -k4605,275:18460021,27016017:3244687 -) -(4605,276:6630773,27881097:11829248,485622,126483 -h4605,275:6630773,27881097:0,0,0 -r4605,345:6630773,27881097:0,612105,126483 -g4605,275:7941493,27881097 -g4605,275:7941493,27881097 -g4605,275:11131130,27881097 -g4605,275:14027166,27881097 -k4605,276:17602810,27881097:857211 -k4605,276:18460021,27881097:857211 -) -(4605,277:6630773,28746177:11829248,485622,126483 -h4605,276:6630773,28746177:0,0,0 -r4605,345:6630773,28746177:0,612105,126483 -g4605,276:7941493,28746177 -g4605,276:7941493,28746177 -g4605,276:9768636,28746177 -g4605,276:11540074,28746177 -k4605,277:15597736,28746177:2862285 -k4605,277:18460021,28746177:2862285 -) -(4605,278:6630773,29611257:11829248,505283,134348 -h4605,277:6630773,29611257:0,0,0 -r4605,345:6630773,29611257:0,639631,134348 -g4605,277:7941493,29611257 -g4605,277:7941493,29611257 -g4605,277:9366901,29611257 -g4605,277:10757575,29611257 -g4605,277:12470686,29611257 -k4605,277:18460021,29611257:2394686 -) -(4605,278:9252213,30476337:9207808,485622,11795 -k4605,278:15215334,30476337:3244688 -k4605,278:18460021,30476337:3244687 -) -(4605,279:6630773,31341417:11829248,505283,126483 -h4605,278:6630773,31341417:0,0,0 -r4605,345:6630773,31341417:0,631766,126483 -g4605,278:8596853,31341417 -g4605,278:8596853,31341417 -g4605,278:11882172,31341417 -k4605,279:15768785,31341417:2691236 -k4605,279:18460021,31341417:2691236 -) -(4605,280:6630773,32206497:11829248,505283,102891 -h4605,279:6630773,32206497:0,0,0 -r4605,345:6630773,32206497:0,608174,102891 -g4605,279:7941493,32206497 -g4605,279:7941493,32206497 -g4605,279:10631090,32206497 -g4605,279:12199366,32206497 -k4605,280:16688910,32206497:1771111 -k4605,280:18460021,32206497:1771111 -) -(4605,281:6630773,33071577:11829248,505283,134348 -h4605,280:6630773,33071577:0,0,0 -r4605,345:6630773,33071577:0,639631,134348 -g4605,280:7941493,33071577 -g4605,280:7941493,33071577 -g4605,280:9151287,33071577 -g4605,280:12513939,33071577 -k4605,281:16846197,33071577:1613825 -k4605,281:18460021,33071577:1613824 -) -(4605,282:6630773,33936657:11829248,505283,102891 -h4605,281:6630773,33936657:0,0,0 -r4605,345:6630773,33936657:0,608174,102891 -g4605,281:7941493,33936657 -g4605,281:7941493,33936657 -g4605,281:9566130,33936657 -g4605,281:10956804,33936657 -g4605,281:12536877,33936657 -g4605,281:14812287,33936657 -k4605,282:17995371,33936657:464651 -k4605,282:18460021,33936657:464650 -) -(4605,283:6630773,34801737:11829248,505283,134348 -h4605,282:6630773,34801737:0,0,0 -r4605,345:6630773,34801737:0,639631,134348 -k4605,282:7941493,34801737:1310720 -k4605,282:7941493,34801737:0 -k4605,282:10477081,34801737:193331 -k4605,282:11838919,34801737:193331 -k4605,282:13223695,34801737:193331 -k4605,282:14865372,34801737:193331 -k4605,282:18460021,34801737:0 -) -(4605,283:9252213,35666817:9207808,485622,11795 -k4605,283:15215334,35666817:3244688 -k4605,283:18460021,35666817:3244687 -) -(4605,284:6630773,36531897:11829248,505283,134348 -h4605,283:6630773,36531897:0,0,0 -g4605,283:9218789,36531897 -g4605,283:11576774,36531897 -g4605,283:14287343,36531897 -k4605,284:16971371,36531897:1488651 -k4605,284:18460021,36531897:1488650 -) -(4605,285:6630773,37396977:11829248,505283,134348 -h4605,284:6568514,37396977:0,0,0 -g4605,284:8634208,37396977 -g4605,284:10202484,37396977 -g4605,284:11770760,37396977 -g4605,284:13339036,37396977 -g4605,284:14907312,37396977 -k4605,285:17281355,37396977:1178666 -k4605,285:18460021,37396977:1178666 -) -(4605,286:6630773,38262057:11829248,505283,134348 -h4605,285:6630773,38262057:0,0,0 -g4605,285:8114508,38262057 -g4605,285:11032826,38262057 -g4605,285:14639927,38262057 -k4605,285:18460021,38262057:1156711 -) -(4605,286:9252213,39127137:9207808,485622,11795 -k4605,286:14443975,39127137:4016046 -k4605,286:18460021,39127137:4016046 -) -(4605,287:6630773,39992217:11829248,505283,134348 -h4605,286:6568514,39992217:0,0,0 -g4605,286:10266054,39992217 -k4605,287:14960726,39992217:3499295 -k4605,287:18460021,39992217:3499295 -) -(4605,288:6630773,40857297:11829248,505283,134348 -h4605,287:6630773,40857297:0,0,0 -g4605,287:10335523,40857297 -g4605,287:13939347,40857297 -g4605,287:14947946,40857297 -k4605,287:18460021,40857297:2035549 -) -(4605,288:9252213,41722377:9207808,485622,11795 -k4605,288:15205503,41722377:3254518 -k4605,288:18460021,41722377:3254518 -) -(4605,289:6630773,42587457:11829248,473825,134348 -h4605,288:6630773,42587457:0,0,0 -k4605,289:13986862,42587457:4473160 -k4605,289:18460021,42587457:4473159 -) -(4605,290:6630773,43452537:11829248,505283,126483 -h4605,289:6630773,43452537:0,0,0 -r4605,345:6630773,43452537:0,631766,126483 -k4605,289:7941493,43452537:1310720 -k4605,289:7941493,43452537:0 -k4605,289:13186995,43452537:188744 -k4605,289:13991776,43452537:188743 -k4605,289:17264644,43452537:188744 -k4605,290:18460021,43452537:0 -k4605,290:18460021,43452537:0 -) -(4605,294:6630773,44841689:11829248,505283,102891 -h4605,293:6568514,44841689:0,0,0 -g4605,293:9234518,44841689 -g4605,293:10802794,44841689 -g4605,293:12371070,44841689 -k4605,294:16003404,44841689:2456618 -k4605,294:18460021,44841689:2456617 -) -(4605,295:6630773,45706769:11829248,505283,102891 -h4605,294:6568514,45706769:0,0,0 -g4605,294:9307918,45706769 -k4605,295:14481658,45706769:3978363 -k4605,295:18460021,45706769:3978363 -) -] -k4605,345:19606901,45706769:1146880 -r4605,345:19606901,45706769:0,40242380,134348 -k4605,345:20753781,45706769:1146880 -[4605,345:20753781,45706769:11829248,40108032,134348 -(4605,296:20753781,6254097:11829248,485622,102891 -h4605,295:20753781,6254097:0,0,0 -g4605,295:22936129,6254097 -g4605,295:24504405,6254097 -k4605,296:29141406,6254097:3441624 -k4605,296:32583029,6254097:3441623 -) -(4605,300:20753781,7793962:11829248,505283,134348 -h4605,299:20753781,7793962:0,0,0 -g4605,299:22213923,7793962 -g4605,299:23380463,7793962 -g4605,299:26843385,7793962 -k4605,299:32583029,7793962:1607599 -) -(4605,300:23375221,8659042:9207808,473825,7863 -k4605,300:30007792,8659042:2575237 -k4605,300:32583029,8659042:2575237 -) -(4605,301:20753781,9525221:11829248,505283,134348 -h4605,300:20753781,9525221:0,0,0 -g4605,300:24124953,9525221 -k4605,301:29048673,9525221:3534357 -k4605,301:32583029,9525221:3534356 -) -(4605,302:20753781,10391401:11829248,513147,102891 -h4605,301:20753781,10391401:0,0,0 -r4605,345:20753781,10391401:0,616038,102891 -g4605,301:22064501,10391401 -g4605,301:22064501,10391401 -g4605,301:23582970,10391401 -g4605,301:25269211,10391401 -k4605,302:30275506,10391401:2307523 -k4605,302:32583029,10391401:2307523 -) -(4605,303:20753781,11257580:11829248,513147,102891 -h4605,302:20753781,11257580:0,0,0 -r4605,345:20753781,11257580:0,616038,102891 -g4605,302:22064501,11257580 -g4605,302:22064501,11257580 -g4605,302:23702901,11257580 -g4605,302:25389142,11257580 -k4605,303:30345302,11257580:2237727 -k4605,303:32583029,11257580:2237727 -) -(4605,304:20753781,12123760:11829248,513147,102891 -h4605,303:20753781,12123760:0,0,0 -r4605,345:20753781,12123760:0,616038,102891 -g4605,303:22064501,12123760 -g4605,303:22064501,12123760 -g4605,303:25238409,12123760 -g4605,303:26089066,12123760 -g4605,303:28182285,12123760 -k4605,303:32583029,12123760:836897 -) -(4605,304:23375221,12988840:9207808,485622,11795 -k4605,304:28576814,12988840:4006216 -k4605,304:32583029,12988840:4006215 -) -(4605,305:20753781,13855019:11829248,505283,102891 -h4605,304:20753781,13855019:0,0,0 -r4605,345:20753781,13855019:0,608174,102891 -g4605,304:22064501,13855019 -g4605,304:22064501,13855019 -g4605,304:25590993,13855019 -k4605,305:30446228,13855019:2136802 -k4605,305:32583029,13855019:2136801 -) -(4605,306:20753781,14721199:11829248,505283,102891 -h4605,305:20753781,14721199:0,0,0 -r4605,345:20753781,14721199:0,608174,102891 -g4605,305:22064501,14721199 -g4605,305:22064501,14721199 -g4605,305:24747545,14721199 -g4605,305:27412894,14721199 -k4605,306:30595650,14721199:1987379 -k4605,306:32583029,14721199:1987379 -) -(4605,307:20753781,15587378:11829248,513147,102891 -h4605,306:20753781,15587378:0,0,0 -r4605,345:20753781,15587378:0,616038,102891 -g4605,306:22064501,15587378 -g4605,306:22064501,15587378 -g4605,306:23831351,15587378 -g4605,306:25402249,15587378 -k4605,307:29580497,15587378:3002532 -k4605,307:32583029,15587378:3002532 -) -(4605,308:20753781,16453558:11829248,513147,102891 -h4605,307:20753781,16453558:0,0,0 -r4605,345:20753781,16453558:0,616038,102891 -g4605,307:22064501,16453558 -g4605,307:22064501,16453558 -g4605,307:23831351,16453558 -g4605,307:25645387,16453558 -k4605,308:29702066,16453558:2880963 -k4605,308:32583029,16453558:2880963 -) -(4605,309:20753781,17319737:11829248,513147,102891 -h4605,308:20753781,17319737:0,0,0 -r4605,345:20753781,17319737:0,616038,102891 -g4605,308:22064501,17319737 -g4605,308:22064501,17319737 -g4605,308:23831351,17319737 -g4605,308:25784979,17319737 -k4605,309:29771862,17319737:2811167 -k4605,309:32583029,17319737:2811167 -) -(4605,310:20753781,18185917:11829248,513147,126483 -h4605,309:20753781,18185917:0,0,0 -r4605,345:20753781,18185917:0,639630,126483 -g4605,309:22064501,18185917 -g4605,309:22064501,18185917 -g4605,309:23831351,18185917 -g4605,309:26120523,18185917 -k4605,310:29939634,18185917:2643395 -k4605,310:32583029,18185917:2643395 -) -(4605,311:20753781,19052096:11829248,505283,134348 -h4605,310:20753781,19052096:0,0,0 -r4605,345:20753781,19052096:0,639631,134348 -g4605,310:22064501,19052096 -g4605,310:22064501,19052096 -g4605,310:25768595,19052096 -g4605,310:29572304,19052096 -k4605,310:32583029,19052096:677644 -) -(4605,311:23375221,19917176:9207808,485622,11795 -k4605,311:28576814,19917176:4006216 -k4605,311:32583029,19917176:4006215 -) -(4605,312:20753781,20783356:11829248,513147,102891 -h4605,311:20753781,20783356:0,0,0 -r4605,345:20753781,20783356:0,616038,102891 -g4605,311:22064501,20783356 -g4605,311:22064501,20783356 -g4605,311:23549546,20783356 -g4605,311:25235787,20783356 -k4605,312:29507097,20783356:3075933 -k4605,312:32583029,20783356:3075932 -) -(4605,313:20753781,21649535:11829248,505283,134348 -h4605,312:20753781,21649535:0,0,0 -r4605,345:20753781,21649535:0,639631,134348 -g4605,312:22064501,21649535 -g4605,312:22064501,21649535 -g4605,312:24814391,21649535 -k4605,313:29296399,21649535:3286631 -k4605,313:32583029,21649535:3286630 -) -(4605,314:20753781,22515715:11829248,513147,102891 -h4605,313:20753781,22515715:0,0,0 -r4605,345:20753781,22515715:0,616038,102891 -g4605,313:22064501,22515715 -g4605,313:22064501,22515715 -g4605,313:24421175,22515715 -g4605,313:26107416,22515715 -k4605,314:30704439,22515715:1878590 -k4605,314:32583029,22515715:1878590 -) -(4605,315:20753781,23381894:11829248,513147,102891 -h4605,314:20753781,23381894:0,0,0 -r4605,345:20753781,23381894:0,616038,102891 -g4605,314:22064501,23381894 -g4605,314:22064501,23381894 -g4605,314:23965700,23381894 -g4605,314:27249053,23381894 -k4605,314:32583029,23381894:2487748 -) -(4605,315:23375221,24246974:9207808,485622,11795 -k4605,315:29328511,24246974:3254518 -k4605,315:32583029,24246974:3254518 -) -(4605,316:20753781,25113154:11829248,505283,126483 -h4605,315:20753781,25113154:0,0,0 -r4605,345:20753781,25113154:0,631766,126483 -g4605,315:22064501,25113154 -g4605,315:22064501,25113154 -g4605,315:24886481,25113154 -g4605,315:27597050,25113154 -k4605,316:31439426,25113154:1143604 -k4605,316:32583029,25113154:1143603 -) -(4605,317:20753781,25979333:11829248,485622,102891 -h4605,316:20753781,25979333:0,0,0 -r4605,345:20753781,25979333:0,588513,102891 -g4605,316:22064501,25979333 -g4605,316:22064501,25979333 -g4605,316:22708719,25979333 -g4605,316:25149935,25979333 -k4605,317:29464171,25979333:3118859 -k4605,317:32583029,25979333:3118858 -) -(4605,318:20753781,26845513:11829248,485622,102891 -h4605,317:20753781,26845513:0,0,0 -r4605,345:20753781,26845513:0,588513,102891 -g4605,317:22064501,26845513 -g4605,317:22064501,26845513 -g4605,317:24518169,26845513 -g4605,317:28727546,26845513 -k4605,318:32004674,26845513:578356 -k4605,318:32583029,26845513:578355 -) -(4605,319:20753781,27711693:11829248,505283,126483 -h4605,318:20753781,27711693:0,0,0 -r4605,345:20753781,27711693:0,631766,126483 -g4605,318:22064501,27711693 -g4605,318:22064501,27711693 -g4605,318:25258070,27711693 -k4605,319:29518238,27711693:3064791 -k4605,319:32583029,27711693:3064791 -) -(4605,320:20753781,28577872:11829248,505283,134348 -h4605,319:20753781,28577872:0,0,0 -r4605,345:20753781,28577872:0,639631,134348 -g4605,319:22064501,28577872 -g4605,319:22064501,28577872 -g4605,319:23489909,28577872 -g4605,319:27094389,28577872 -k4605,320:30436398,28577872:2146632 -k4605,320:32583029,28577872:2146631 -) -(4605,321:20753781,29444052:11829248,513147,102891 -h4605,320:20753781,29444052:0,0,0 -r4605,345:20753781,29444052:0,616038,102891 -g4605,320:22064501,29444052 -g4605,320:22064501,29444052 -g4605,320:23489909,29444052 -g4605,320:25176150,29444052 -k4605,321:30228976,29444052:2354054 -k4605,321:32583029,29444052:2354053 -) -(4605,322:20753781,30310231:11829248,485622,134348 -h4605,321:20753781,30310231:0,0,0 -r4605,345:20753781,30310231:0,619970,134348 -g4605,321:22064501,30310231 -g4605,321:22064501,30310231 -g4605,321:23999123,30310231 -g4605,321:25653251,30310231 -k4605,322:29715829,30310231:2867201 -k4605,322:32583029,30310231:2867200 -) -(4605,323:20753781,31176411:11829248,505283,102891 -h4605,322:20753781,31176411:0,0,0 -r4605,345:20753781,31176411:0,608174,102891 -g4605,322:22064501,31176411 -g4605,322:22064501,31176411 -g4605,322:25887216,31176411 -g4605,322:27277890,31176411 -k4605,322:32583029,31176411:1709179 -) -(4605,323:23375221,32041491:9207808,485622,11795 -k4605,323:29328511,32041491:3254518 -k4605,323:32583029,32041491:3254518 -) -(4605,324:20753781,32907670:11829248,513147,102891 -h4605,323:20753781,32907670:0,0,0 -r4605,345:20753781,32907670:0,616038,102891 -g4605,323:22064501,32907670 -g4605,323:22064501,32907670 -g4605,323:23622947,32907670 -g4605,323:25013621,32907670 -g4605,323:27081281,32907670 -g4605,323:28767522,32907670 -k4605,324:31272964,32907670:1310065 -k4605,324:32583029,32907670:1310065 -) -(4605,325:20753781,33773850:11829248,505283,126483 -h4605,324:20753781,33773850:0,0,0 -g4605,324:24115777,33773850 -g4605,324:25506451,33773850 -g4605,324:28252409,33773850 -g4605,324:30147054,33773850 -k4605,325:31753670,33773850:829359 -k4605,325:32583029,33773850:829359 -) -(4605,326:20753781,34640029:11829248,505283,134348 -h4605,325:20753781,34640029:0,0,0 -g4605,325:23183200,34640029 -k4605,326:29291156,34640029:3291874 -k4605,326:32583029,34640029:3291873 -) -(4605,327:20753781,35506209:11829248,505283,102891 -h4605,326:20753781,35506209:0,0,0 -r4605,345:20753781,35506209:0,608174,102891 -g4605,326:22064501,35506209 -g4605,326:22064501,35506209 -g4605,326:25713545,35506209 -k4605,327:30099215,35506209:2483815 -k4605,327:32583029,35506209:2483814 -) -(4605,328:20753781,36372388:11829248,505283,134348 -h4605,327:20753781,36372388:0,0,0 -g4605,327:23183200,36372388 -g4605,327:26198511,36372388 -g4605,327:27589185,36372388 -g4605,327:31368646,36372388 -k4605,328:32374297,36372388:208733 -k4605,328:32583029,36372388:208732 -) -(4605,329:20753781,37238568:11829248,505283,134348 -h4605,328:20753781,37238568:0,0,0 -g4605,328:24216703,37238568 -k4605,328:32583029,37238568:4234281 -) -(4605,329:23375221,38103648:9207808,485622,102891 -g4605,328:27805454,38103648 -k4605,329:30592701,38103648:1990329 -k4605,329:32583029,38103648:1990328 -) -(4605,330:20753781,38969827:11829248,513147,134348 -h4605,329:20753781,38969827:0,0,0 -g4605,329:26731975,38969827 -k4605,330:30255191,38969827:2327839 -k4605,330:32583029,38969827:2327838 -) -(4605,331:20753781,39836007:11829248,485622,102891 -h4605,330:20753781,39836007:0,0,0 -g4605,330:23843803,39836007 -k4605,331:28811105,39836007:3771925 -k4605,331:32583029,39836007:3771924 -) -(4605,332:20753781,40702186:11829248,513147,126483 -h4605,331:20753781,40702186:0,0,0 -r4605,345:20753781,40702186:0,639630,126483 -g4605,331:22064501,40702186 -g4605,331:22064501,40702186 -g4605,331:23211381,40702186 -g4605,331:24999203,40702186 -k4605,332:29388805,40702186:3194225 -k4605,332:32583029,40702186:3194224 -) -(4605,333:20753781,41568366:11829248,513147,134348 -h4605,332:20753781,41568366:0,0,0 -r4605,345:20753781,41568366:0,647495,134348 -g4605,332:22064501,41568366 -g4605,332:22064501,41568366 -g4605,332:24603365,41568366 -g4605,332:25461886,41568366 -g4605,332:27580009,41568366 -k4605,333:30679208,41568366:1903822 -k4605,333:32583029,41568366:1903821 -) -(4605,334:20753781,42434545:11829248,505283,126483 -h4605,333:20753781,42434545:0,0,0 -r4605,345:20753781,42434545:0,631766,126483 -g4605,333:22064501,42434545 -g4605,333:22064501,42434545 -g4605,333:24280273,42434545 -g4605,333:26068095,42434545 -k4605,334:29923251,42434545:2659779 -k4605,334:32583029,42434545:2659778 -) -(4605,335:20753781,43300725:11829248,505283,126483 -h4605,334:20753781,43300725:0,0,0 -r4605,345:20753781,43300725:0,631766,126483 -g4605,334:22064501,43300725 -g4605,334:22064501,43300725 -g4605,334:23953248,43300725 -g4605,334:25741070,43300725 -k4605,335:29759738,43300725:2823291 -k4605,335:32583029,43300725:2823291 -) -(4605,339:20753781,44840589:11829248,485622,102891 -h4605,338:20743295,44840589:0,0,0 -g4605,338:22383005,44840589 -g4605,338:23552822,44840589 -k4605,339:28456554,44840589:4126475 -k4605,339:32583029,44840589:4126475 -) -(4605,340:20753781,45706769:11829248,505283,134348 -h4605,339:20753781,45706769:0,0,0 -g4605,339:22520631,45706769 -g4605,339:25355063,45706769 -g4605,339:26943655,45706769 -g4605,339:29755804,45706769 -k4605,340:32518803,45706769:64227 -k4605,340:32583029,45706769:64226 -) -] -(4605,345:32583029,45706769:0,355205,126483 -h4605,345:32583029,45706769:420741,355205,126483 -k4605,345:32583029,45706769:-420741 -) -) -] -(4605,345:32583029,45706769:0,0,0 -g4605,345:32583029,45706769 -) -) -] -(4605,345:6630773,47279633:25952256,0,0 -h4605,345:6630773,47279633:25952256,0,0 -) -] -(4605,345:4262630,4025873:0,0,0 -[4605,345:-473656,4025873:0,0,0 -(4605,345:-473656,-710413:0,0,0 -(4605,345:-473656,-710413:0,0,0 -g4605,345:-473656,-710413 -) -g4605,345:-473656,-710413 -) -] -) -] -!27894 -}437 +[4609,348:3078558,4812305:0,0,0 +(4609,348:3078558,49800853:0,16384,2228224 +g4609,348:29030814,49800853 +g4609,348:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,348:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,348:37855564,49800853:1179648,16384,0 +) +) +k4609,348:3078556,49800853:-34777008 +) +] +g4609,348:6630773,4812305 +k4609,348:28201292,4812305:20375142 +g4609,348:30884336,4812305 +) +) +] +[4609,348:6630773,45706769:25952256,40108032,0 +(4609,348:6630773,45706769:25952256,40108032,0 +(4609,348:6630773,45706769:0,0,0 +g4609,348:6630773,45706769 +) +[4609,348:6630773,45706769:25952256,40108032,0 +(4609,348:6630773,45706769:25952256,40108032,134348 +[4609,348:6630773,45706769:11829248,40108032,102891 +(4609,254:6630773,6254097:11829248,505283,126483 +h4609,253:6630773,6254097:0,0,0 +r4609,348:6630773,6254097:0,631766,126483 +g4609,253:7941493,6254097 +g4609,253:7941493,6254097 +g4609,253:10600944,6254097 +g4609,253:12831134,6254097 +g4609,253:15106544,6254097 +k4609,254:18142499,6254097:317522 +k4609,254:18460021,6254097:317522 +) +(4609,255:6630773,7119177:11829248,505283,126483 +h4609,254:6630773,7119177:0,0,0 +r4609,348:6630773,7119177:0,631766,126483 +g4609,254:7941493,7119177 +g4609,254:7941493,7119177 +g4609,254:11682288,7119177 +g4609,254:14371885,7119177 +k4609,255:17775170,7119177:684852 +k4609,255:18460021,7119177:684851 +) +(4609,256:6630773,7984257:11829248,505283,134348 +h4609,255:6630773,7984257:0,0,0 +r4609,348:6630773,7984257:0,639631,134348 +g4609,255:7941493,7984257 +g4609,255:7941493,7984257 +g4609,255:12125966,7984257 +k4609,255:18460021,7984257:2739406 +) +(4609,256:9252213,8849337:9207808,485622,11795 +k4609,256:15215334,8849337:3244688 +k4609,256:18460021,8849337:3244687 +) +(4609,257:6630773,9714417:11829248,505283,102891 +h4609,256:6630773,9714417:0,0,0 +r4609,348:6630773,9714417:0,608174,102891 +g4609,256:7941493,9714417 +g4609,256:7941493,9714417 +g4609,256:11123921,9714417 +g4609,256:13399331,9714417 +k4609,257:17288893,9714417:1171129 +k4609,257:18460021,9714417:1171128 +) +(4609,258:6630773,10579497:11829248,513147,134348 +h4609,257:6630773,10579497:0,0,0 +r4609,348:6630773,10579497:0,647495,134348 +g4609,257:7941493,10579497 +g4609,257:7941493,10579497 +g4609,257:10948284,10579497 +g4609,257:11806805,10579497 +g4609,257:13569068,10579497 +g4609,257:15137344,10579497 +k4609,258:18148069,10579497:311953 +k4609,258:18460021,10579497:311952 +) +(4609,259:6630773,11444577:11829248,505283,102891 +h4609,258:6630773,11444577:0,0,0 +r4609,348:6630773,11444577:0,608174,102891 +g4609,258:8596853,11444577 +g4609,258:8596853,11444577 +g4609,258:10134983,11444577 +k4609,259:14895191,11444577:3564831 +k4609,259:18460021,11444577:3564830 +) +(4609,260:6630773,12309657:11829248,485622,126483 +h4609,259:6630773,12309657:0,0,0 +r4609,348:6630773,12309657:0,612105,126483 +g4609,259:7941493,12309657 +g4609,259:7941493,12309657 +g4609,259:11391308,12309657 +k4609,260:15523353,12309657:2936668 +k4609,260:18460021,12309657:2936668 +) +(4609,261:6630773,13174737:11829248,485622,102891 +h4609,260:6630773,13174737:0,0,0 +r4609,348:6630773,13174737:0,588513,102891 +g4609,260:7941493,13174737 +g4609,260:7941493,13174737 +g4609,260:11840885,13174737 +k4609,261:15748142,13174737:2711880 +k4609,261:18460021,13174737:2711879 +) +(4609,262:6630773,14039817:11829248,505283,126483 +h4609,261:6630773,14039817:0,0,0 +r4609,348:6630773,14039817:0,631766,126483 +g4609,261:7941493,14039817 +g4609,261:7941493,14039817 +g4609,261:9418019,14039817 +g4609,261:13825315,14039817 +k4609,262:17501885,14039817:958137 +k4609,262:18460021,14039817:958136 +) +(4609,263:6630773,14904897:11829248,505283,126483 +h4609,262:6630773,14904897:0,0,0 +r4609,348:6630773,14904897:0,631766,126483 +g4609,262:7941493,14904897 +g4609,262:7941493,14904897 +g4609,262:9418019,14904897 +g4609,262:12722344,14904897 +k4609,263:16950399,14904897:1509622 +k4609,263:18460021,14904897:1509622 +) +(4609,264:6630773,15769977:11829248,505283,134348 +h4609,263:6630773,15769977:0,0,0 +r4609,348:6630773,15769977:0,639631,134348 +g4609,263:7941493,15769977 +g4609,263:7941493,15769977 +g4609,263:9418019,15769977 +g4609,263:12707926,15769977 +k4609,264:16943190,15769977:1516831 +k4609,264:18460021,15769977:1516831 +) +(4609,265:6630773,16635057:11829248,505283,134348 +h4609,264:6630773,16635057:0,0,0 +r4609,348:6630773,16635057:0,639631,134348 +g4609,264:7941493,16635057 +g4609,264:7941493,16635057 +g4609,264:9748320,16635057 +g4609,264:10633711,16635057 +g4609,264:11277929,16635057 +g4609,264:13940656,16635057 +k4609,265:17559555,16635057:900466 +k4609,265:18460021,16635057:900466 +) +(4609,266:6630773,17500137:11829248,485622,134348 +h4609,265:6630773,17500137:0,0,0 +r4609,348:6630773,17500137:0,619970,134348 +g4609,265:7941493,17500137 +g4609,265:7941493,17500137 +g4609,265:9828929,17500137 +g4609,265:13191581,17500137 +k4609,266:17185018,17500137:1275004 +k4609,266:18460021,17500137:1275003 +) +(4609,267:6630773,18365217:11829248,505283,126483 +h4609,266:6630773,18365217:0,0,0 +r4609,348:6630773,18365217:0,631766,126483 +g4609,266:7941493,18365217 +g4609,266:7941493,18365217 +g4609,266:9805336,18365217 +g4609,266:13916409,18365217 +k4609,267:17537601,18365217:922420 +k4609,267:18460021,18365217:922420 +) +(4609,268:6630773,19230297:11829248,485622,126483 +h4609,267:6630773,19230297:0,0,0 +r4609,348:6630773,19230297:0,612105,126483 +g4609,267:7941493,19230297 +g4609,267:7941493,19230297 +g4609,267:11258925,19230297 +k4609,268:15457162,19230297:3002860 +k4609,268:18460021,19230297:3002859 +) +(4609,269:6630773,20095377:11829248,505283,102891 +h4609,268:6630773,20095377:0,0,0 +r4609,348:6630773,20095377:0,608174,102891 +g4609,268:7941493,20095377 +g4609,268:7941493,20095377 +g4609,268:10216903,20095377 +g4609,268:11785179,20095377 +k4609,269:16481817,20095377:1978205 +k4609,269:18460021,20095377:1978204 +) +(4609,270:6630773,20960457:11829248,513147,134348 +h4609,269:6630773,20960457:0,0,0 +r4609,348:6630773,20960457:0,647495,134348 +g4609,269:7941493,20960457 +g4609,269:7941493,20960457 +g4609,269:10322416,20960457 +g4609,269:12787225,20960457 +g4609,269:15017415,20960457 +g4609,269:16408089,20960457 +k4609,269:18460021,20960457:1211105 +) +(4609,270:9252213,21825537:9207808,505283,102891 +g4609,269:11527623,21825537 +k4609,270:15591511,21825537:2868511 +k4609,270:18460021,21825537:2868510 +) +(4609,271:6630773,22690617:11829248,513147,134348 +h4609,270:6630773,22690617:0,0,0 +r4609,348:6630773,22690617:0,647495,134348 +g4609,270:7941493,22690617 +g4609,270:7941493,22690617 +g4609,270:8735789,22690617 +g4609,270:12616175,22690617 +k4609,271:16135787,22690617:2324235 +k4609,271:18460021,22690617:2324234 +) +(4609,272:6630773,23555697:11829248,505283,102891 +h4609,271:6630773,23555697:0,0,0 +r4609,348:6630773,23555697:0,608174,102891 +g4609,271:7941493,23555697 +g4609,271:7941493,23555697 +g4609,271:9409499,23555697 +g4609,271:11684909,23555697 +k4609,272:16431682,23555697:2028340 +k4609,272:18460021,23555697:2028339 +) +(4609,273:6630773,24420777:11829248,485622,102891 +h4609,272:6630773,24420777:0,0,0 +r4609,348:6630773,24420777:0,588513,102891 +g4609,272:7941493,24420777 +g4609,272:7941493,24420777 +g4609,272:11167830,24420777 +g4609,272:12736106,24420777 +k4609,273:16957280,24420777:1502741 +k4609,273:18460021,24420777:1502741 +) +(4609,274:6630773,25285857:11829248,513147,134348 +h4609,273:6630773,25285857:0,0,0 +r4609,348:6630773,25285857:0,647495,134348 +g4609,273:7941493,25285857 +g4609,273:7941493,25285857 +g4609,273:11072147,25285857 +g4609,273:11930668,25285857 +g4609,273:13407194,25285857 +k4609,273:18460021,25285857:2675837 +) +(4609,274:9252213,26150937:9207808,485622,11795 +k4609,274:15215334,26150937:3244688 +k4609,274:18460021,26150937:3244687 +) +(4609,275:6630773,27016017:11829248,485622,126483 +h4609,274:6630773,27016017:0,0,0 +r4609,348:6630773,27016017:0,612105,126483 +g4609,274:7941493,27016017 +g4609,274:7941493,27016017 +g4609,274:11131130,27016017 +g4609,274:14027166,27016017 +k4609,275:17602810,27016017:857211 +k4609,275:18460021,27016017:857211 +) +(4609,276:6630773,27881097:11829248,485622,126483 +h4609,275:6630773,27881097:0,0,0 +r4609,348:6630773,27881097:0,612105,126483 +g4609,275:7941493,27881097 +g4609,275:7941493,27881097 +g4609,275:9768636,27881097 +g4609,275:11540074,27881097 +k4609,276:15597736,27881097:2862285 +k4609,276:18460021,27881097:2862285 +) +(4609,277:6630773,28746177:11829248,505283,134348 +h4609,276:6630773,28746177:0,0,0 +r4609,348:6630773,28746177:0,639631,134348 +g4609,276:7941493,28746177 +g4609,276:7941493,28746177 +g4609,276:9366901,28746177 +g4609,276:10757575,28746177 +g4609,276:12470686,28746177 +k4609,276:18460021,28746177:2394686 +) +(4609,277:9252213,29611257:9207808,485622,11795 +k4609,277:15215334,29611257:3244688 +k4609,277:18460021,29611257:3244687 +) +(4609,278:6630773,30476337:11829248,505283,126483 +h4609,277:6630773,30476337:0,0,0 +r4609,348:6630773,30476337:0,631766,126483 +g4609,277:8596853,30476337 +g4609,277:8596853,30476337 +g4609,277:11882172,30476337 +k4609,278:15768785,30476337:2691236 +k4609,278:18460021,30476337:2691236 +) +(4609,279:6630773,31341417:11829248,505283,102891 +h4609,278:6630773,31341417:0,0,0 +r4609,348:6630773,31341417:0,608174,102891 +g4609,278:7941493,31341417 +g4609,278:7941493,31341417 +g4609,278:10631090,31341417 +g4609,278:12199366,31341417 +k4609,279:16688910,31341417:1771111 +k4609,279:18460021,31341417:1771111 +) +(4609,280:6630773,32206497:11829248,505283,134348 +h4609,279:6630773,32206497:0,0,0 +r4609,348:6630773,32206497:0,639631,134348 +g4609,279:7941493,32206497 +g4609,279:7941493,32206497 +g4609,279:9151287,32206497 +g4609,279:12513939,32206497 +k4609,280:16846197,32206497:1613825 +k4609,280:18460021,32206497:1613824 +) +(4609,281:6630773,33071577:11829248,505283,102891 +h4609,280:6630773,33071577:0,0,0 +r4609,348:6630773,33071577:0,608174,102891 +g4609,280:7941493,33071577 +g4609,280:7941493,33071577 +g4609,280:9566130,33071577 +g4609,280:10956804,33071577 +g4609,280:12536877,33071577 +g4609,280:14812287,33071577 +k4609,281:17995371,33071577:464651 +k4609,281:18460021,33071577:464650 +) +(4609,282:6630773,33936657:11829248,505283,134348 +h4609,281:6630773,33936657:0,0,0 +r4609,348:6630773,33936657:0,639631,134348 +k4609,281:7941493,33936657:1310720 +k4609,281:7941493,33936657:0 +k4609,281:10477081,33936657:193331 +k4609,281:11838919,33936657:193331 +k4609,281:13223695,33936657:193331 +k4609,281:14865372,33936657:193331 +k4609,281:18460021,33936657:0 +) +(4609,282:9252213,34801737:9207808,485622,11795 +k4609,282:15215334,34801737:3244688 +k4609,282:18460021,34801737:3244687 +) +(4609,283:6630773,35666817:11829248,505283,134348 +h4609,282:6630773,35666817:0,0,0 +g4609,282:9218789,35666817 +g4609,282:11576774,35666817 +g4609,282:14287343,35666817 +k4609,283:16971371,35666817:1488651 +k4609,283:18460021,35666817:1488650 +) +(4609,284:6630773,36531897:11829248,505283,134348 +h4609,283:6568514,36531897:0,0,0 +g4609,283:8634208,36531897 +g4609,283:10202484,36531897 +g4609,283:11770760,36531897 +g4609,283:13339036,36531897 +g4609,283:14907312,36531897 +k4609,284:17281355,36531897:1178666 +k4609,284:18460021,36531897:1178666 +) +(4609,285:6630773,37396977:11829248,505283,134348 +h4609,284:6630773,37396977:0,0,0 +g4609,284:8114508,37396977 +g4609,284:11032826,37396977 +g4609,284:14639927,37396977 +k4609,284:18460021,37396977:1156711 +) +(4609,285:9252213,38262057:9207808,485622,11795 +k4609,285:14443975,38262057:4016046 +k4609,285:18460021,38262057:4016046 +) +(4609,286:6630773,39127137:11829248,505283,134348 +h4609,285:6568514,39127137:0,0,0 +g4609,285:10266054,39127137 +k4609,286:14960726,39127137:3499295 +k4609,286:18460021,39127137:3499295 +) +(4609,287:6630773,39992217:11829248,505283,134348 +h4609,286:6630773,39992217:0,0,0 +g4609,286:10335523,39992217 +g4609,286:13939347,39992217 +g4609,286:14947946,39992217 +k4609,286:18460021,39992217:2035549 +) +(4609,287:9252213,40857297:9207808,485622,11795 +k4609,287:15205503,40857297:3254518 +k4609,287:18460021,40857297:3254518 +) +(4609,288:6630773,41722377:11829248,473825,134348 +h4609,287:6630773,41722377:0,0,0 +k4609,288:13986862,41722377:4473160 +k4609,288:18460021,41722377:4473159 +) +(4609,289:6630773,42587457:11829248,505283,126483 +h4609,288:6630773,42587457:0,0,0 +r4609,348:6630773,42587457:0,631766,126483 +k4609,288:7941493,42587457:1310720 +k4609,288:7941493,42587457:0 +k4609,288:13186995,42587457:188744 +k4609,288:13991776,42587457:188743 +k4609,288:17264644,42587457:188744 +k4609,289:18460021,42587457:0 +k4609,289:18460021,42587457:0 +) +(4609,293:6630773,43976609:11829248,505283,102891 +h4609,292:6568514,43976609:0,0,0 +g4609,292:9234518,43976609 +g4609,292:10802794,43976609 +g4609,292:12371070,43976609 +k4609,293:16003404,43976609:2456618 +k4609,293:18460021,43976609:2456617 +) +(4609,294:6630773,44841689:11829248,505283,102891 +h4609,293:6568514,44841689:0,0,0 +g4609,293:9307918,44841689 +k4609,294:14481658,44841689:3978363 +k4609,294:18460021,44841689:3978363 +) +(4609,295:6630773,45706769:11829248,485622,102891 +h4609,294:6630773,45706769:0,0,0 +g4609,294:8813121,45706769 +g4609,294:10381397,45706769 +k4609,295:15018398,45706769:3441624 +k4609,295:18460021,45706769:3441623 +) +] +k4609,348:19606901,45706769:1146880 +r4609,348:19606901,45706769:0,40242380,134348 +k4609,348:20753781,45706769:1146880 +[4609,348:20753781,45706769:11829248,40108032,134348 +(4609,299:20753781,6254097:11829248,505283,134348 +h4609,298:20753781,6254097:0,0,0 +g4609,298:22213923,6254097 +g4609,298:23380463,6254097 +g4609,298:26843385,6254097 +k4609,298:32583029,6254097:1607599 +) +(4609,299:23375221,7119177:9207808,473825,7863 +k4609,299:30007792,7119177:2575237 +k4609,299:32583029,7119177:2575237 +) +(4609,300:20753781,7984257:11829248,505283,134348 +h4609,299:20753781,7984257:0,0,0 +g4609,299:24124953,7984257 +k4609,300:29048673,7984257:3534357 +k4609,300:32583029,7984257:3534356 +) +(4609,301:20753781,8849337:11829248,513147,102891 +h4609,300:20753781,8849337:0,0,0 +r4609,348:20753781,8849337:0,616038,102891 +g4609,300:22064501,8849337 +g4609,300:22064501,8849337 +g4609,300:23582970,8849337 +g4609,300:25269211,8849337 +k4609,301:30275506,8849337:2307523 +k4609,301:32583029,8849337:2307523 +) +(4609,302:20753781,9714417:11829248,513147,102891 +h4609,301:20753781,9714417:0,0,0 +r4609,348:20753781,9714417:0,616038,102891 +g4609,301:22064501,9714417 +g4609,301:22064501,9714417 +g4609,301:23702901,9714417 +g4609,301:25389142,9714417 +k4609,302:30345302,9714417:2237727 +k4609,302:32583029,9714417:2237727 +) +(4609,303:20753781,10579497:11829248,513147,102891 +h4609,302:20753781,10579497:0,0,0 +r4609,348:20753781,10579497:0,616038,102891 +g4609,302:22064501,10579497 +g4609,302:22064501,10579497 +g4609,302:25238409,10579497 +g4609,302:26089066,10579497 +g4609,302:28182285,10579497 +k4609,302:32583029,10579497:836897 +) +(4609,303:23375221,11444577:9207808,485622,11795 +k4609,303:28576814,11444577:4006216 +k4609,303:32583029,11444577:4006215 +) +(4609,304:20753781,12309657:11829248,505283,102891 +h4609,303:20753781,12309657:0,0,0 +r4609,348:20753781,12309657:0,608174,102891 +g4609,303:22064501,12309657 +g4609,303:22064501,12309657 +g4609,303:25590993,12309657 +k4609,304:30446228,12309657:2136802 +k4609,304:32583029,12309657:2136801 +) +(4609,305:20753781,13174737:11829248,505283,102891 +h4609,304:20753781,13174737:0,0,0 +r4609,348:20753781,13174737:0,608174,102891 +g4609,304:22064501,13174737 +g4609,304:22064501,13174737 +g4609,304:24747545,13174737 +g4609,304:27412894,13174737 +k4609,305:30595650,13174737:1987379 +k4609,305:32583029,13174737:1987379 +) +(4609,306:20753781,14039817:11829248,513147,102891 +h4609,305:20753781,14039817:0,0,0 +r4609,348:20753781,14039817:0,616038,102891 +g4609,305:22064501,14039817 +g4609,305:22064501,14039817 +g4609,305:23831351,14039817 +g4609,305:25402249,14039817 +k4609,306:29580497,14039817:3002532 +k4609,306:32583029,14039817:3002532 +) +(4609,307:20753781,14904897:11829248,513147,102891 +h4609,306:20753781,14904897:0,0,0 +r4609,348:20753781,14904897:0,616038,102891 +g4609,306:22064501,14904897 +g4609,306:22064501,14904897 +g4609,306:23831351,14904897 +g4609,306:25645387,14904897 +k4609,307:29702066,14904897:2880963 +k4609,307:32583029,14904897:2880963 +) +(4609,308:20753781,15769977:11829248,513147,102891 +h4609,307:20753781,15769977:0,0,0 +r4609,348:20753781,15769977:0,616038,102891 +g4609,307:22064501,15769977 +g4609,307:22064501,15769977 +g4609,307:23831351,15769977 +g4609,307:25784979,15769977 +k4609,308:29771862,15769977:2811167 +k4609,308:32583029,15769977:2811167 +) +(4609,309:20753781,16635057:11829248,513147,126483 +h4609,308:20753781,16635057:0,0,0 +r4609,348:20753781,16635057:0,639630,126483 +g4609,308:22064501,16635057 +g4609,308:22064501,16635057 +g4609,308:23831351,16635057 +g4609,308:26120523,16635057 +k4609,309:29939634,16635057:2643395 +k4609,309:32583029,16635057:2643395 +) +(4609,310:20753781,17500137:11829248,505283,134348 +h4609,309:20753781,17500137:0,0,0 +r4609,348:20753781,17500137:0,639631,134348 +g4609,309:22064501,17500137 +g4609,309:22064501,17500137 +g4609,309:25768595,17500137 +g4609,309:29572304,17500137 +k4609,309:32583029,17500137:677644 +) +(4609,310:23375221,18365217:9207808,485622,11795 +k4609,310:28576814,18365217:4006216 +k4609,310:32583029,18365217:4006215 +) +(4609,311:20753781,19230297:11829248,513147,102891 +h4609,310:20753781,19230297:0,0,0 +r4609,348:20753781,19230297:0,616038,102891 +g4609,310:22064501,19230297 +g4609,310:22064501,19230297 +g4609,310:23549546,19230297 +g4609,310:25235787,19230297 +k4609,311:29507097,19230297:3075933 +k4609,311:32583029,19230297:3075932 +) +(4609,312:20753781,20095377:11829248,505283,134348 +h4609,311:20753781,20095377:0,0,0 +r4609,348:20753781,20095377:0,639631,134348 +g4609,311:22064501,20095377 +g4609,311:22064501,20095377 +g4609,311:24814391,20095377 +k4609,312:29296399,20095377:3286631 +k4609,312:32583029,20095377:3286630 +) +(4609,313:20753781,20960457:11829248,513147,102891 +h4609,312:20753781,20960457:0,0,0 +r4609,348:20753781,20960457:0,616038,102891 +g4609,312:22064501,20960457 +g4609,312:22064501,20960457 +g4609,312:24421175,20960457 +g4609,312:26107416,20960457 +k4609,313:30704439,20960457:1878590 +k4609,313:32583029,20960457:1878590 +) +(4609,314:20753781,21825537:11829248,513147,102891 +h4609,313:20753781,21825537:0,0,0 +r4609,348:20753781,21825537:0,616038,102891 +g4609,313:22064501,21825537 +g4609,313:22064501,21825537 +g4609,313:23965700,21825537 +g4609,313:27249053,21825537 +k4609,313:32583029,21825537:2487748 +) +(4609,314:23375221,22690617:9207808,485622,11795 +k4609,314:29328511,22690617:3254518 +k4609,314:32583029,22690617:3254518 +) +(4609,315:20753781,23555697:11829248,505283,126483 +h4609,314:20753781,23555697:0,0,0 +r4609,348:20753781,23555697:0,631766,126483 +g4609,314:22064501,23555697 +g4609,314:22064501,23555697 +g4609,314:24886481,23555697 +g4609,314:27597050,23555697 +k4609,315:31439426,23555697:1143604 +k4609,315:32583029,23555697:1143603 +) +(4609,316:20753781,24420777:11829248,485622,102891 +h4609,315:20753781,24420777:0,0,0 +r4609,348:20753781,24420777:0,588513,102891 +g4609,315:22064501,24420777 +g4609,315:22064501,24420777 +g4609,315:22708719,24420777 +g4609,315:25149935,24420777 +k4609,316:29464171,24420777:3118859 +k4609,316:32583029,24420777:3118858 +) +(4609,317:20753781,25285857:11829248,485622,102891 +h4609,316:20753781,25285857:0,0,0 +r4609,348:20753781,25285857:0,588513,102891 +g4609,316:22064501,25285857 +g4609,316:22064501,25285857 +g4609,316:24518169,25285857 +g4609,316:28727546,25285857 +k4609,317:32004674,25285857:578356 +k4609,317:32583029,25285857:578355 +) +(4609,318:20753781,26150937:11829248,505283,126483 +h4609,317:20753781,26150937:0,0,0 +r4609,348:20753781,26150937:0,631766,126483 +g4609,317:22064501,26150937 +g4609,317:22064501,26150937 +g4609,317:25258070,26150937 +k4609,318:29518238,26150937:3064791 +k4609,318:32583029,26150937:3064791 +) +(4609,319:20753781,27016017:11829248,505283,134348 +h4609,318:20753781,27016017:0,0,0 +r4609,348:20753781,27016017:0,639631,134348 +g4609,318:22064501,27016017 +g4609,318:22064501,27016017 +g4609,318:23489909,27016017 +g4609,318:27094389,27016017 +k4609,319:30436398,27016017:2146632 +k4609,319:32583029,27016017:2146631 +) +(4609,320:20753781,27881097:11829248,513147,102891 +h4609,319:20753781,27881097:0,0,0 +r4609,348:20753781,27881097:0,616038,102891 +g4609,319:22064501,27881097 +g4609,319:22064501,27881097 +g4609,319:23489909,27881097 +g4609,319:25176150,27881097 +k4609,320:30228976,27881097:2354054 +k4609,320:32583029,27881097:2354053 +) +(4609,321:20753781,28746177:11829248,485622,134348 +h4609,320:20753781,28746177:0,0,0 +r4609,348:20753781,28746177:0,619970,134348 +g4609,320:22064501,28746177 +g4609,320:22064501,28746177 +g4609,320:23999123,28746177 +g4609,320:25653251,28746177 +k4609,321:29715829,28746177:2867201 +k4609,321:32583029,28746177:2867200 +) +(4609,322:20753781,29611257:11829248,505283,102891 +h4609,321:20753781,29611257:0,0,0 +r4609,348:20753781,29611257:0,608174,102891 +g4609,321:22064501,29611257 +g4609,321:22064501,29611257 +g4609,321:25887216,29611257 +g4609,321:27277890,29611257 +k4609,321:32583029,29611257:1709179 +) +(4609,322:23375221,30476337:9207808,485622,11795 +k4609,322:29328511,30476337:3254518 +k4609,322:32583029,30476337:3254518 +) +(4609,323:20753781,31341417:11829248,513147,102891 +h4609,322:20753781,31341417:0,0,0 +r4609,348:20753781,31341417:0,616038,102891 +g4609,322:22064501,31341417 +g4609,322:22064501,31341417 +g4609,322:23622947,31341417 +g4609,322:25013621,31341417 +g4609,322:27081281,31341417 +g4609,322:28767522,31341417 +k4609,323:31272964,31341417:1310065 +k4609,323:32583029,31341417:1310065 +) +(4609,324:20753781,32206497:11829248,505283,126483 +h4609,323:20753781,32206497:0,0,0 +g4609,323:24115777,32206497 +g4609,323:25506451,32206497 +g4609,323:28252409,32206497 +g4609,323:30147054,32206497 +k4609,324:31753670,32206497:829359 +k4609,324:32583029,32206497:829359 +) +(4609,325:20753781,33071577:11829248,505283,134348 +h4609,324:20753781,33071577:0,0,0 +g4609,324:23183200,33071577 +k4609,325:29291156,33071577:3291874 +k4609,325:32583029,33071577:3291873 +) +(4609,326:20753781,33936657:11829248,505283,102891 +h4609,325:20753781,33936657:0,0,0 +r4609,348:20753781,33936657:0,608174,102891 +g4609,325:22064501,33936657 +g4609,325:22064501,33936657 +g4609,325:25713545,33936657 +k4609,326:30099215,33936657:2483815 +k4609,326:32583029,33936657:2483814 +) +(4609,327:20753781,34801737:11829248,505283,134348 +h4609,326:20753781,34801737:0,0,0 +g4609,326:23183200,34801737 +g4609,326:26198511,34801737 +g4609,326:27589185,34801737 +g4609,326:31368646,34801737 +k4609,327:32374297,34801737:208733 +k4609,327:32583029,34801737:208732 +) +(4609,328:20753781,35666817:11829248,505283,134348 +h4609,327:20753781,35666817:0,0,0 +g4609,327:24216703,35666817 +k4609,327:32583029,35666817:4234281 +) +(4609,328:23375221,36531897:9207808,485622,102891 +g4609,327:27805454,36531897 +k4609,328:30592701,36531897:1990329 +k4609,328:32583029,36531897:1990328 +) +(4609,329:20753781,37396977:11829248,513147,134348 +h4609,328:20753781,37396977:0,0,0 +g4609,328:26731975,37396977 +k4609,329:30255191,37396977:2327839 +k4609,329:32583029,37396977:2327838 +) +(4609,330:20753781,38262057:11829248,485622,102891 +h4609,329:20753781,38262057:0,0,0 +g4609,329:23843803,38262057 +k4609,330:28811105,38262057:3771925 +k4609,330:32583029,38262057:3771924 +) +(4609,331:20753781,39127137:11829248,513147,126483 +h4609,330:20753781,39127137:0,0,0 +r4609,348:20753781,39127137:0,639630,126483 +g4609,330:22064501,39127137 +g4609,330:22064501,39127137 +g4609,330:23211381,39127137 +g4609,330:24999203,39127137 +k4609,331:29388805,39127137:3194225 +k4609,331:32583029,39127137:3194224 +) +(4609,332:20753781,39992217:11829248,513147,134348 +h4609,331:20753781,39992217:0,0,0 +r4609,348:20753781,39992217:0,647495,134348 +g4609,331:22064501,39992217 +g4609,331:22064501,39992217 +g4609,331:24603365,39992217 +g4609,331:25461886,39992217 +g4609,331:27580009,39992217 +k4609,332:30679208,39992217:1903822 +k4609,332:32583029,39992217:1903821 +) +(4609,333:20753781,40857297:11829248,505283,126483 +h4609,332:20753781,40857297:0,0,0 +r4609,348:20753781,40857297:0,631766,126483 +g4609,332:22064501,40857297 +g4609,332:22064501,40857297 +g4609,332:24280273,40857297 +g4609,332:26068095,40857297 +k4609,333:29923251,40857297:2659779 +k4609,333:32583029,40857297:2659778 +) +(4609,334:20753781,41722377:11829248,505283,126483 +h4609,333:20753781,41722377:0,0,0 +r4609,348:20753781,41722377:0,631766,126483 +g4609,333:22064501,41722377 +g4609,333:22064501,41722377 +g4609,333:23953248,41722377 +g4609,333:25741070,41722377 +k4609,334:29759738,41722377:2823291 +k4609,334:32583029,41722377:2823291 +) +(4609,338:20753781,43111529:11829248,485622,102891 +h4609,337:20743295,43111529:0,0,0 +g4609,337:22383005,43111529 +g4609,337:23552822,43111529 +k4609,338:28456554,43111529:4126475 +k4609,338:32583029,43111529:4126475 +) +(4609,339:20753781,43976609:11829248,505283,134348 +h4609,338:20753781,43976609:0,0,0 +g4609,338:22520631,43976609 +g4609,338:25355063,43976609 +g4609,338:26943655,43976609 +g4609,338:29755804,43976609 +k4609,339:32518803,43976609:64227 +k4609,339:32583029,43976609:64226 +) +(4609,340:20753781,44841689:11829248,513147,134348 +h4609,339:20753781,44841689:0,0,0 +r4609,348:20753781,44841689:0,647495,134348 +g4609,339:22064501,44841689 +g4609,339:22064501,44841689 +g4609,339:24955949,44841689 +k4609,340:29367178,44841689:3215852 +k4609,340:32583029,44841689:3215851 +) +(4609,341:20753781,45706769:11829248,485622,134348 +h4609,340:20753781,45706769:0,0,0 +r4609,348:20753781,45706769:0,619970,134348 +g4609,340:22064501,45706769 +g4609,340:22064501,45706769 +g4609,340:25332126,45706769 +k4609,341:29545436,45706769:3037594 +k4609,341:32583029,45706769:3037593 +) +] +(4609,348:32583029,45706769:0,355205,126483 +h4609,348:32583029,45706769:420741,355205,126483 +k4609,348:32583029,45706769:-420741 +) +) +] +(4609,348:32583029,45706769:0,0,0 +g4609,348:32583029,45706769 +) +) +] +(4609,348:6630773,47279633:25952256,0,0 +h4609,348:6630773,47279633:25952256,0,0 +) +] +(4609,348:4262630,4025873:0,0,0 +[4609,348:-473656,4025873:0,0,0 +(4609,348:-473656,-710413:0,0,0 +(4609,348:-473656,-710413:0,0,0 +g4609,348:-473656,-710413 +) +g4609,348:-473656,-710413 +) +] +) +] +!28143 +}438 !12 -{438 -[4605,432:4262630,47279633:28320399,43253760,0 -(4605,432:4262630,4025873:0,0,0 -[4605,432:-473656,4025873:0,0,0 -(4605,432:-473656,-710413:0,0,0 -(4605,432:-473656,-644877:0,0,0 -k4605,432:-473656,-644877:-65536 +{439 +[4609,432:4262630,47279633:28320399,43253760,0 +(4609,432:4262630,4025873:0,0,0 +[4609,432:-473656,4025873:0,0,0 +(4609,432:-473656,-710413:0,0,0 +(4609,432:-473656,-644877:0,0,0 +k4609,432:-473656,-644877:-65536 ) -(4605,432:-473656,4736287:0,0,0 -k4605,432:-473656,4736287:5209943 +(4609,432:-473656,4736287:0,0,0 +k4609,432:-473656,4736287:5209943 ) -g4605,432:-473656,-710413 +g4609,432:-473656,-710413 ) ] ) -[4605,432:6630773,47279633:25952256,43253760,0 -[4605,432:6630773,4812305:25952256,786432,0 -(4605,432:6630773,4812305:25952256,505283,11795 -(4605,432:6630773,4812305:25952256,505283,11795 -g4605,432:3078558,4812305 -[4605,432:3078558,4812305:0,0,0 -(4605,432:3078558,2439708:0,1703936,0 -k4605,432:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,432:2537886,2439708:1179648,16384,0 +[4609,432:6630773,47279633:25952256,43253760,0 +[4609,432:6630773,4812305:25952256,786432,0 +(4609,432:6630773,4812305:25952256,505283,11795 +(4609,432:6630773,4812305:25952256,505283,11795 +g4609,432:3078558,4812305 +[4609,432:3078558,4812305:0,0,0 +(4609,432:3078558,2439708:0,1703936,0 +k4609,432:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,432:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,432:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,432:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,432:3078558,4812305:0,0,0 -(4605,432:3078558,2439708:0,1703936,0 -g4605,432:29030814,2439708 -g4605,432:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,432:36151628,1915420:16384,1179648,0 +[4609,432:3078558,4812305:0,0,0 +(4609,432:3078558,2439708:0,1703936,0 +g4609,432:29030814,2439708 +g4609,432:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,432:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,432:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,432:37855564,2439708:1179648,16384,0 ) ) -k4605,432:3078556,2439708:-34777008 +k4609,432:3078556,2439708:-34777008 ) ] -[4605,432:3078558,4812305:0,0,0 -(4605,432:3078558,49800853:0,16384,2228224 -k4605,432:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,432:2537886,49800853:1179648,16384,0 +[4609,432:3078558,4812305:0,0,0 +(4609,432:3078558,49800853:0,16384,2228224 +k4609,432:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,432:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,432:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,432:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,432:3078558,4812305:0,0,0 -(4605,432:3078558,49800853:0,16384,2228224 -g4605,432:29030814,49800853 -g4605,432:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,432:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 -) -] -) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,432:37855564,49800853:1179648,16384,0 -) -) -k4605,432:3078556,49800853:-34777008 -) -] -g4605,432:6630773,4812305 -g4605,432:6630773,4812305 -g4605,432:9313817,4812305 -g4605,432:11211739,4812305 -k4605,432:31387651,4812305:20175912 -) -) -] -[4605,432:6630773,45706769:25952256,40108032,0 -(4605,432:6630773,45706769:25952256,40108032,0 -(4605,432:6630773,45706769:0,0,0 -g4605,432:6630773,45706769 -) -[4605,432:6630773,45706769:25952256,40108032,0 -(4605,432:6630773,45706769:25952256,40108032,134348 -[4605,432:6630773,45706769:11829248,40108032,134348 -(4605,341:6630773,6254097:11829248,513147,134348 -h4605,340:6630773,6254097:0,0,0 -r4605,432:6630773,6254097:0,647495,134348 -g4605,340:7941493,6254097 -g4605,340:7941493,6254097 -g4605,340:10832941,6254097 -k4605,341:15244170,6254097:3215852 -k4605,341:18460021,6254097:3215851 -) -(4605,342:6630773,7120292:11829248,485622,134348 -h4605,341:6630773,7120292:0,0,0 -r4605,432:6630773,7120292:0,619970,134348 -g4605,341:7941493,7120292 -g4605,341:7941493,7120292 -g4605,341:11209118,7120292 -k4605,342:15422428,7120292:3037594 -k4605,342:18460021,7120292:3037593 -) -(4605,343:6630773,7986487:11829248,505283,134348 -h4605,342:6568514,7986487:0,0,0 -g4605,342:9686061,7986487 -k4605,343:14670730,7986487:3789292 -k4605,343:18460021,7986487:3789291 -) -(4605,347:6630773,9526628:11829248,505283,102891 -h4605,346:6568514,9526628:0,0,0 -g4605,346:8847200,9526628 -g4605,346:10017017,9526628 -g4605,346:11186834,9526628 -k4605,347:15421116,9526628:3038905 -k4605,347:18460021,9526628:3038905 -) -(4605,351:6630773,11066769:11829248,505283,134348 -h4605,350:6630773,11066769:0,0,0 -k4605,351:14131696,11066769:4328325 -k4605,351:18460021,11066769:4328325 -) -(4605,353:6630773,11932964:11829248,485622,102891 -h4605,351:6630773,11932964:0,0,0 -r4605,432:6630773,11932964:0,588513,102891 -g4605,351:7941493,11932964 -g4605,351:7941493,11932964 -g4605,351:8767901,11932964 -g4605,351:9937718,11932964 -g4605,351:11107535,11932964 -g4605,351:12277352,11932964 -g4605,351:13447169,11932964 -g4605,351:14616986,11932964 -g4605,351:15786803,11932964 -g4605,351:16956620,11932964 -k4605,351:18460021,11932964:220862 -) -(4605,353:9252213,12798044:9207808,485622,102891 -g4605,351:10800828,12798044 -g4605,351:12369104,12798044 -g4605,352:13937380,12798044 -g4605,352:15505656,12798044 -k4605,353:17580527,12798044:879494 -k4605,353:18460021,12798044:879494 -) -(4605,355:6630773,13664239:11829248,485622,102891 -h4605,353:6630773,13664239:0,0,0 -r4605,432:6630773,13664239:0,588513,102891 -g4605,353:7941493,13664239 -g4605,353:7941493,13664239 -g4605,353:9597587,13664239 -g4605,353:10767404,13664239 -g4605,353:11937221,13664239 -g4605,353:13107038,13664239 -g4605,353:14276855,13664239 -g4605,353:15446672,13664239 -g4605,353:16616489,13664239 -k4605,353:18460021,13664239:560993 -) -(4605,355:9252213,14529319:9207808,485622,102891 -g4605,353:10800828,14529319 -g4605,353:12369104,14529319 -g4605,353:13937380,14529319 -k4605,355:16796389,14529319:1663632 -k4605,355:18460021,14529319:1663632 -) -(4605,356:6630773,15395514:11829248,485622,102891 -h4605,355:6630773,15395514:0,0,0 -r4605,432:6630773,15395514:0,588513,102891 -g4605,355:7941493,15395514 -g4605,355:7941493,15395514 -g4605,355:10512470,15395514 -k4605,356:15083934,15395514:3376087 -k4605,356:18460021,15395514:3376087 -) -(4605,357:6630773,16261710:11829248,485622,102891 -h4605,356:6630773,16261710:0,0,0 -r4605,432:6630773,16261710:0,588513,102891 -k4605,356:7941493,16261710:1310720 -k4605,356:7941493,16261710:0 -k4605,356:11344778,16261710:188744 -k4605,356:12504110,16261710:188744 -k4605,356:14061900,16261710:188743 -k4605,356:15619691,16261710:188744 -k4605,356:17177482,16261710:188744 -k4605,356:18460021,16261710:0 -) -(4605,357:9252213,17126790:9207808,485622,11795 -k4605,357:14453806,17126790:4006216 -k4605,357:18460021,17126790:4006215 -) -(4605,358:6630773,17992985:11829248,485622,102891 -h4605,357:6630773,17992985:0,0,0 -r4605,432:6630773,17992985:0,588513,102891 -g4605,357:7941493,17992985 -g4605,357:7941493,17992985 -g4605,357:10123841,17992985 -g4605,357:11692117,17992985 -k4605,358:15673758,17992985:2786264 -k4605,358:18460021,17992985:2786263 -) -(4605,359:6630773,18859180:11829248,485622,102891 -h4605,358:6630773,18859180:0,0,0 -r4605,432:6630773,18859180:0,588513,102891 -g4605,358:7941493,18859180 -g4605,358:7941493,18859180 -g4605,358:9581203,18859180 -g4605,358:10751020,18859180 -k4605,359:14994149,18859180:3465872 -k4605,359:18460021,18859180:3465872 -) -(4605,360:6630773,19725375:11829248,485622,173670 -h4605,359:6630773,19725375:0,0,0 -r4605,432:6630773,19725375:0,659292,173670 -g4605,359:7941493,19725375 -g4605,359:7941493,19725375 -[4605,359:8070599,19725375:341312,473825,0 -(4605,359:8070599,19587356:341312,335806,0 -) -] -(4605,359:8638865,19899045:370934,473825,0 -) -g4605,359:9731350,19725375 -g4605,359:10901167,19725375 -g4605,359:12070984,19725375 -k4605,360:15863191,19725375:2596830 -k4605,360:18460021,19725375:2596830 -) -(4605,361:6630773,20591570:11829248,505283,102891 -h4605,360:6630773,20591570:0,0,0 -r4605,432:6630773,20591570:0,608174,102891 -g4605,360:7941493,20591570 -g4605,360:7941493,20591570 -g4605,360:11617407,20591570 -g4605,360:12388765,20591570 -g4605,360:13558582,20591570 -g4605,360:14728399,20591570 -g4605,360:16296675,20591570 -k4605,361:17976037,20591570:483985 -k4605,361:18460021,20591570:483984 -) -(4605,362:6630773,21457765:11829248,505283,126483 -h4605,361:6630773,21457765:0,0,0 -r4605,432:6630773,21457765:0,631766,126483 -g4605,361:7941493,21457765 -g4605,361:7941493,21457765 -g4605,361:10432516,21457765 -g4605,361:11823190,21457765 -g4605,361:15272349,21457765 -k4605,362:17254814,21457765:1205208 -k4605,362:18460021,21457765:1205207 -) -(4605,363:6630773,22323960:11829248,505283,102891 -h4605,362:6630773,22323960:0,0,0 -r4605,432:6630773,22323960:0,608174,102891 -g4605,362:7941493,22323960 -g4605,362:7941493,22323960 -g4605,362:10258845,22323960 -g4605,362:11428662,22323960 -g4605,362:12598479,22323960 -k4605,363:16126939,22323960:2333083 -k4605,363:18460021,22323960:2333082 -) -(4605,364:6630773,23190156:11829248,505283,102891 -h4605,363:6630773,23190156:0,0,0 -r4605,432:6630773,23190156:0,608174,102891 -g4605,363:7941493,23190156 -g4605,363:7941493,23190156 -g4605,363:9499283,23190156 -k4605,364:14378111,23190156:4081910 -k4605,364:18460021,23190156:4081910 -) -(4605,365:6630773,24056351:11829248,505283,126483 -h4605,364:6630773,24056351:0,0,0 -r4605,432:6630773,24056351:0,631766,126483 -g4605,364:7941493,24056351 -g4605,364:7941493,24056351 -g4605,364:10479046,24056351 -g4605,364:11648863,24056351 -g4605,364:12818680,24056351 -g4605,364:14386956,24056351 -k4605,365:17011347,24056351:1448675 -k4605,365:18460021,24056351:1448674 -) -(4605,366:6630773,24922546:11829248,505283,102891 -h4605,365:6630773,24922546:0,0,0 -r4605,432:6630773,24922546:0,608174,102891 -g4605,365:7941493,24922546 -g4605,365:7941493,24922546 -g4605,365:8563430,24922546 -g4605,365:12287185,24922546 -g4605,365:13457002,24922546 -k4605,366:16556200,24922546:1903821 -k4605,366:18460021,24922546:1903821 -) -(4605,367:6630773,25788741:11829248,505283,102891 -h4605,366:6630773,25788741:0,0,0 -r4605,432:6630773,25788741:0,608174,102891 -g4605,366:7941493,25788741 -g4605,366:7941493,25788741 -g4605,366:12080091,25788741 -k4605,367:15867745,25788741:2592277 -k4605,367:18460021,25788741:2592276 -) -(4605,368:6630773,26654936:11829248,485622,102891 -h4605,367:6630773,26654936:0,0,0 -r4605,432:6630773,26654936:0,588513,102891 -g4605,367:7941493,26654936 -g4605,367:7941493,26654936 -g4605,367:8667631,26654936 -g4605,367:9837448,26654936 -g4605,367:11007265,26654936 -g4605,367:12575541,26654936 -g4605,367:14143817,26654936 -k4605,368:16899608,26654936:1560414 -k4605,368:18460021,26654936:1560413 -) -(4605,369:6630773,27521131:11829248,505283,102891 -h4605,368:6630773,27521131:0,0,0 -r4605,432:6630773,27521131:0,608174,102891 -g4605,368:7941493,27521131 -g4605,368:7941493,27521131 -g4605,368:10172338,27521131 -k4605,369:14714639,27521131:3745383 -k4605,369:18460021,27521131:3745382 -) -(4605,370:6630773,28387327:11829248,485622,102891 -h4605,369:6630773,28387327:0,0,0 -r4605,432:6630773,28387327:0,588513,102891 -g4605,369:7941493,28387327 -g4605,369:7941493,28387327 -g4605,369:10534096,28387327 -k4605,370:15094747,28387327:3365274 -k4605,370:18460021,28387327:3365274 -) -(4605,371:6630773,29253522:11829248,485622,102891 -h4605,370:6630773,29253522:0,0,0 -r4605,432:6630773,29253522:0,588513,102891 -g4605,370:7941493,29253522 -g4605,370:7941493,29253522 -g4605,370:9638219,29253522 -k4605,371:14646809,29253522:3813213 -k4605,371:18460021,29253522:3813212 -) -(4605,372:6630773,30119717:11829248,485622,102891 -h4605,371:6630773,30119717:0,0,0 -r4605,432:6630773,30119717:0,588513,102891 -g4605,371:7941493,30119717 -g4605,371:7941493,30119717 -g4605,371:10052407,30119717 -k4605,372:14853903,30119717:3606119 -k4605,372:18460021,30119717:3606118 -) -(4605,373:6630773,30985912:11829248,485622,173670 -h4605,372:6630773,30985912:0,0,0 -[4605,372:6759879,30985912:341312,473825,0 -(4605,372:6759879,30847893:341312,335806,0 -) -] -(4605,372:7328145,31159582:370934,473825,0 -) -g4605,372:8420630,30985912 -g4605,372:9590447,30985912 -g4605,372:10760264,30985912 -k4605,373:15207831,30985912:3252190 -k4605,373:18460021,30985912:3252190 -) -(4605,374:6630773,31852107:11829248,505283,102891 -h4605,373:6568514,31852107:0,0,0 -g4605,373:9286947,31852107 -g4605,373:10855223,31852107 -k4605,374:15255311,31852107:3204711 -k4605,374:18460021,31852107:3204710 -) -(4605,376:6630773,32718302:11829248,505283,102891 -h4605,374:6568514,32718302:0,0,0 -g4605,374:10814591,32718302 -g4605,374:12312088,32718302 -g4605,374:13481905,32718302 -g4605,374:15050181,32718302 -k4605,374:18460021,32718302:604244 -) -(4605,376:9252213,33583382:9207808,485622,102891 -g4605,374:10820489,33583382 -g4605,374:12388765,33583382 -g4605,374:13957041,33583382 -k4605,376:16806220,33583382:1653802 -k4605,376:18460021,33583382:1653801 -) -(4605,377:6630773,34449577:11829248,505283,102891 -h4605,376:6630773,34449577:0,0,0 -g4605,376:8642728,34449577 -g4605,376:11333636,34449577 -k4605,377:16256045,34449577:2203976 -k4605,377:18460021,34449577:2203976 -) -(4605,378:6630773,35315773:11829248,513147,126483 -h4605,377:6630773,35315773:0,0,0 -r4605,432:6630773,35315773:0,639630,126483 -g4605,377:7941493,35315773 -g4605,377:7941493,35315773 -g4605,377:10273264,35315773 -g4605,377:11994239,35315773 -g4605,377:13141119,35315773 -g4605,377:17125052,35315773 -k4605,378:18390225,35315773:69796 -k4605,378:18460021,35315773:69796 -) -(4605,379:6630773,36181968:11829248,513147,126483 -h4605,378:6630773,36181968:0,0,0 -r4605,432:6630773,36181968:0,639630,126483 -g4605,378:7941493,36181968 -g4605,378:7941493,36181968 -g4605,378:10695315,36181968 -g4605,378:11553836,36181968 -g4605,378:15309048,36181968 -k4605,379:17482223,36181968:977798 -k4605,379:18460021,36181968:977798 -) -(4605,380:6630773,37048163:11829248,513147,126483 -h4605,379:6630773,37048163:0,0,0 -r4605,432:6630773,37048163:0,639630,126483 -g4605,379:7941493,37048163 -g4605,379:7941493,37048163 -g4605,379:10695315,37048163 -g4605,379:11553836,37048163 -g4605,379:14580944,37048163 -k4605,380:17879699,37048163:580322 -k4605,380:18460021,37048163:580322 -) -(4605,381:6630773,37914358:11829248,505283,134348 -h4605,380:6630773,37914358:0,0,0 -r4605,432:6630773,37914358:0,639631,134348 -g4605,380:7941493,37914358 -g4605,380:7941493,37914358 -g4605,380:9953448,37914358 -g4605,380:13643124,37914358 -k4605,381:17400959,37914358:1059063 -k4605,381:18460021,37914358:1059062 -) -(4605,382:6630773,38780553:11829248,505283,134348 -h4605,381:6630773,38780553:0,0,0 -r4605,432:6630773,38780553:0,639631,134348 -g4605,381:7941493,38780553 -g4605,381:7941493,38780553 -g4605,381:11713745,38780553 -g4605,381:15403421,38780553 -k4605,382:17529410,38780553:930612 -k4605,382:18460021,38780553:930611 -) -(4605,383:6630773,39646748:11829248,505283,126483 -h4605,382:6630773,39646748:0,0,0 -r4605,432:6630773,39646748:0,631766,126483 -g4605,382:7941493,39646748 -g4605,382:7941493,39646748 -g4605,382:10895856,39646748 -g4605,382:13082792,39646748 -k4605,382:18460021,39646748:2458911 -) -(4605,383:9252213,40511828:9207808,485622,0 -k4605,383:15205503,40511828:3254518 -k4605,383:18460021,40511828:3254518 -) -(4605,384:6630773,41378024:11829248,513147,134348 -h4605,383:6630773,41378024:0,0,0 -r4605,432:6630773,41378024:0,647495,134348 -k4605,383:7941493,41378024:1310720 -k4605,383:7941493,41378024:0 -k4605,383:11057729,41378024:184811 -k4605,383:11901833,41378024:184812 -k4605,383:14074351,41378024:184811 -k4605,383:14946636,41378024:184812 -k4605,383:17264644,41378024:184811 -k4605,384:18460021,41378024:0 -k4605,384:18460021,41378024:0 -) -(4605,385:6630773,42244219:11829248,513147,134348 -h4605,384:6630773,42244219:0,0,0 -r4605,432:6630773,42244219:0,647495,134348 -g4605,384:7941493,42244219 -g4605,384:7941493,42244219 -g4605,384:11072147,42244219 -g4605,384:11930668,42244219 -g4605,384:15120305,42244219 -k4605,384:18460021,42244219:1293027 -) -(4605,385:9252213,43109299:9207808,485622,11795 -k4605,385:14453806,43109299:4006216 -k4605,385:18460021,43109299:4006215 -) -(4605,386:6630773,43975494:11829248,505283,126483 -h4605,385:6630773,43975494:0,0,0 -r4605,432:6630773,43975494:0,631766,126483 -g4605,385:7941493,43975494 -g4605,385:7941493,43975494 -g4605,385:11131130,43975494 -g4605,385:13069685,43975494 -k4605,386:16362542,43975494:2097480 -k4605,386:18460021,43975494:2097479 -) -(4605,387:6630773,44841689:11829248,505283,134348 -h4605,386:6630773,44841689:0,0,0 -g4605,386:8642728,44841689 -g4605,386:12332404,44841689 -g4605,386:13498944,44841689 -g4605,386:15510899,44841689 -k4605,386:18460021,44841689:543951 -) -(4605,387:9252213,45706769:9207808,505283,134348 -g4605,386:11264168,45706769 -k4605,387:16520483,45706769:1939538 -k4605,387:18460021,45706769:1939538 -) -] -k4605,432:19606901,45706769:1146880 -r4605,432:19606901,45706769:0,40242380,134348 -k4605,432:20753781,45706769:1146880 -[4605,432:20753781,45706769:11829248,40108032,126483 -(4605,388:20753781,6254097:11829248,485622,102891 -h4605,387:20753781,6254097:0,0,0 -g4605,387:22879768,6254097 -g4605,387:24049585,6254097 -g4605,387:25219402,6254097 -g4605,387:26389219,6254097 -g4605,387:27559036,6254097 -g4605,387:29127312,6254097 -g4605,387:30695588,6254097 -k4605,388:32236997,6254097:346032 -k4605,388:32583029,6254097:346032 -) -(4605,389:20753781,7119177:11829248,513147,134348 -h4605,388:20753781,7119177:0,0,0 -g4605,388:22936785,7119177 -g4605,388:24449356,7119177 -g4605,388:25331470,7119177 -g4605,388:29114208,7119177 -k4605,389:31436477,7119177:1146553 -k4605,389:32583029,7119177:1146552 -) -(4605,390:20753781,7984257:11829248,505283,102891 -h4605,389:20753781,7984257:0,0,0 -g4605,389:22450508,7984257 -k4605,390:28467696,7984257:4115333 -k4605,390:32583029,7984257:4115333 -) -(4605,391:20753781,8849337:11829248,505283,126483 -h4605,390:20753781,8849337:0,0,0 -r4605,432:20753781,8849337:0,631766,126483 -g4605,390:22064501,8849337 -g4605,390:22064501,8849337 -g4605,390:24643998,8849337 -g4605,390:25668325,8849337 -k4605,391:29524136,8849337:3058893 -k4605,391:32583029,8849337:3058893 -) -(4605,392:20753781,9714417:11829248,485622,102891 -h4605,391:20753781,9714417:0,0,0 -r4605,432:20753781,9714417:0,588513,102891 -g4605,391:22064501,9714417 -g4605,391:22064501,9714417 -g4605,391:24656449,9714417 -g4605,391:26123144,9714417 -g4605,391:28473920,9714417 -k4605,392:30926934,9714417:1656096 -k4605,392:32583029,9714417:1656095 -) -(4605,393:20753781,10579497:11829248,513147,7863 -h4605,392:20753781,10579497:0,0,0 -r4605,432:20753781,10579497:0,521010,7863 -g4605,392:22064501,10579497 -g4605,392:22064501,10579497 -g4605,392:24851747,10579497 -g4605,392:26242421,10579497 -g4605,392:29107655,10579497 -k4605,392:32583029,10579497:2816082 -) -(4605,393:23375221,11444577:9207808,505283,102891 -g4605,392:26701828,11444577 -k4605,393:30593356,11444577:1989673 -k4605,393:32583029,11444577:1989673 -) -(4605,394:20753781,12309657:11829248,513147,134348 -h4605,393:20753781,12309657:0,0,0 -r4605,432:20753781,12309657:0,647495,134348 -g4605,393:22064501,12309657 -g4605,393:22064501,12309657 -g4605,393:25494000,12309657 -k4605,394:29436974,12309657:3146056 -k4605,394:32583029,12309657:3146055 -) -(4605,395:20753781,13174737:11829248,485622,102891 -h4605,394:20753781,13174737:0,0,0 -r4605,432:20753781,13174737:0,588513,102891 -g4605,394:22064501,13174737 -g4605,394:22064501,13174737 -g4605,394:24102670,13174737 -g4605,394:25743036,13174737 -k4605,395:29561492,13174737:3021538 -k4605,395:32583029,13174737:3021537 -) -(4605,396:20753781,14039817:11829248,505283,102891 -h4605,395:20753781,14039817:0,0,0 -r4605,432:20753781,14039817:0,608174,102891 -g4605,395:22064501,14039817 -g4605,395:22064501,14039817 -g4605,395:24887136,14039817 -g4605,395:28474576,14039817 -k4605,396:31479730,14039817:1103299 -k4605,396:32583029,14039817:1103299 -) -(4605,397:20753781,14904897:11829248,505283,134348 -h4605,396:20753781,14904897:0,0,0 -r4605,432:20753781,14904897:0,639631,134348 -g4605,396:22064501,14904897 -g4605,396:22064501,14904897 -g4605,396:24887136,14904897 -g4605,396:27999440,14904897 -g4605,396:29165980,14904897 -k4605,396:32583029,14904897:2006059 -) -(4605,397:23375221,15769977:9207808,505283,7863 -g4605,396:26197856,15769977 -k4605,397:30997713,15769977:1585316 -k4605,397:32583029,15769977:1585316 -) -(4605,398:20753781,16635057:11829248,505283,102891 -h4605,397:20753781,16635057:0,0,0 -r4605,432:20753781,16635057:0,608174,102891 -g4605,397:22064501,16635057 -g4605,397:22064501,16635057 -g4605,397:24554869,16635057 -g4605,397:25724686,16635057 -k4605,398:29552317,16635057:3030713 -k4605,398:32583029,16635057:3030712 -) -(4605,399:20753781,17500137:11829248,485622,102891 -h4605,398:20753781,17500137:0,0,0 -r4605,432:20753781,17500137:0,588513,102891 -g4605,398:22064501,17500137 -g4605,398:22064501,17500137 -g4605,398:25368826,17500137 -k4605,399:29374387,17500137:3208643 -k4605,399:32583029,17500137:3208642 -) -(4605,400:20753781,18365217:11829248,505283,134348 -h4605,399:20753781,18365217:0,0,0 -g4605,399:23212036,18365217 -g4605,399:27937181,18365217 -k4605,400:30857794,18365217:1725236 -k4605,400:32583029,18365217:1725235 -) -(4605,401:20753781,19230297:11829248,505283,102891 -h4605,400:20753781,19230297:0,0,0 -g4605,400:22055326,19230297 -g4605,400:23221866,19230297 -g4605,400:25233821,19230297 -k4605,401:30067429,19230297:2515600 -k4605,401:32583029,19230297:2515600 -) -(4605,402:20753781,20095377:11829248,505283,102891 -h4605,401:20691522,20095377:0,0,0 -g4605,401:23059992,20095377 -k4605,402:28419199,20095377:4163830 -k4605,402:32583029,20095377:4163830 -) -(4605,403:20753781,20960457:11829248,505283,134348 -h4605,402:20753781,20960457:0,0,0 -k4605,402:22432377,20960457:184375 -k4605,402:26189774,20960457:184374 -k4605,402:29864596,20960457:184375 -k4605,403:32583029,20960457:0 -k4605,403:32583029,20960457:0 -) -(4605,404:20753781,21825537:11829248,505283,126483 -h4605,403:20753781,21825537:0,0,0 -g4605,403:23082275,21825537 -g4605,403:24248815,21825537 -g4605,403:25942265,21825537 -k4605,403:32583029,21825537:3067741 -) -(4605,404:23375221,22690617:9207808,473825,134348 -k4605,404:29637514,22690617:2945516 -k4605,404:32583029,22690617:2945515 -) -(4605,405:20753781,23555697:11829248,505283,134348 -h4605,404:20753781,23555697:0,0,0 -g4605,404:23022637,23555697 -g4605,404:26472452,23555697 -k4605,405:29926200,23555697:2656830 -k4605,405:32583029,23555697:2656829 -) -(4605,406:20753781,24420777:11829248,505283,134348 -h4605,405:20753781,24420777:0,0,0 -g4605,405:23022637,24420777 -g4605,405:25232511,24420777 -g4605,405:26623185,24420777 -g4605,405:28331053,24420777 -k4605,405:32583029,24420777:1837630 -) -(4605,406:23375221,25285857:9207808,485622,11795 -k4605,406:28930053,25285857:3652977 -k4605,406:32583029,25285857:3652976 -) -(4605,407:20753781,26150937:11829248,513147,134348 -h4605,406:20753781,26150937:0,0,0 -g4605,406:24335323,26150937 -g4605,406:25725997,26150937 -g4605,406:29196128,26150937 -k4605,406:32583029,26150937:1123943 -) -(4605,407:23375221,27016017:9207808,505283,102891 -g4605,406:25137484,27016017 -k4605,407:29457945,27016017:3125084 -k4605,407:32583029,27016017:3125084 -) -(4605,408:20753781,27881097:11829248,505283,126483 -h4605,407:20753781,27881097:0,0,0 -g4605,407:22871904,27881097 -g4605,407:24038444,27881097 -g4605,407:25495309,27881097 -k4605,408:30397731,27881097:2185299 -k4605,408:32583029,27881097:2185298 -) -(4605,409:20753781,28746177:11829248,513147,102891 -h4605,408:20753781,28746177:0,0,0 -r4605,432:20753781,28746177:0,616038,102891 -g4605,408:22064501,28746177 -g4605,408:22064501,28746177 -g4605,408:24107258,28746177 -g4605,408:28197359,28746177 -g4605,408:29765635,28746177 -g4605,408:31333911,28746177 -k4605,409:32556159,28746177:26871 -k4605,409:32583029,28746177:26870 -) -(4605,410:20753781,29611257:11829248,505283,102891 -h4605,409:20753781,29611257:0,0,0 -r4605,432:20753781,29611257:0,608174,102891 -g4605,409:22064501,29611257 -g4605,409:22064501,29611257 -g4605,409:24554869,29611257 -k4605,410:29166638,29611257:3416392 -k4605,410:32583029,29611257:3416391 -) -(4605,411:20753781,30476337:11829248,513147,126483 -h4605,410:20753781,30476337:0,0,0 -g4605,410:22213267,30476337 -g4605,410:23071788,30476337 -g4605,410:25891146,30476337 -g4605,410:29196126,30476337 -k4605,411:31278206,30476337:1304823 -k4605,411:32583029,30476337:1304823 -) -(4605,412:20753781,31341417:11829248,505283,102891 -h4605,411:20691522,31341417:0,0,0 -g4605,411:24329425,31341417 -g4605,411:25499242,31341417 -g4605,411:27067518,31341417 -g4605,411:30158851,31341417 -k4605,411:32583029,31341417:1141639 -) -(4605,412:23375221,32206497:9207808,485622,102891 -g4605,411:24923836,32206497 -k4605,412:29351121,32206497:3231908 -k4605,412:32583029,32206497:3231908 -) -(4605,416:20753781,33595649:11829248,505283,7863 -h4605,415:20753781,33595649:0,0,0 -g4605,415:23640641,33595649 -k4605,416:29749908,33595649:2833122 -k4605,416:32583029,33595649:2833121 -) -(4605,417:20753781,34460729:11829248,485622,126483 -h4605,416:20753781,34460729:0,0,0 -r4605,432:20753781,34460729:0,612105,126483 -g4605,416:22064501,34460729 -g4605,416:22064501,34460729 -g4605,416:25369481,34460729 -k4605,417:29927183,34460729:2655847 -k4605,417:32583029,34460729:2655846 -) -(4605,418:20753781,35325809:11829248,505283,134348 -h4605,417:20753781,35325809:0,0,0 -r4605,432:20753781,35325809:0,639631,134348 -g4605,417:22064501,35325809 -g4605,417:22064501,35325809 -g4605,417:25187291,35325809 -g4605,417:27497435,35325809 -k4605,418:30438691,35325809:2144338 -k4605,418:32583029,35325809:2144338 -) -(4605,419:20753781,36190889:11829248,505283,134348 -h4605,418:20691522,36190889:0,0,0 -g4605,418:24076456,36190889 -g4605,418:25644732,36190889 -g4605,418:28736065,36190889 -g4605,418:30304341,36190889 -k4605,419:32031543,36190889:551486 -k4605,419:32583029,36190889:551486 -) -(4605,420:20753781,37055969:11829248,505283,126483 -h4605,419:20753781,37055969:0,0,0 -g4605,419:24124953,37055969 -g4605,419:25291493,37055969 -g4605,419:29351448,37055969 -k4605,419:32583029,37055969:676988 -) -(4605,420:23375221,37921049:9207808,513147,7863 -g4605,419:24233742,37921049 -k4605,420:29735490,37921049:2847540 -k4605,420:32583029,37921049:2847539 -) -(4605,421:20753781,38786129:11829248,505283,102891 -h4605,420:20753781,38786129:0,0,0 -g4605,420:24429695,38786129 -g4605,420:25201053,38786129 -g4605,420:26370870,38786129 -g4605,420:27540687,38786129 -g4605,420:29108963,38786129 -k4605,421:31443685,38786129:1139345 -k4605,421:32583029,38786129:1139344 -) -(4605,422:20753781,39651209:11829248,513147,102891 -h4605,421:20753781,39651209:0,0,0 -g4605,421:22600585,39651209 -g4605,421:25999282,39651209 -k4605,422:29679784,39651209:2903245 -k4605,422:32583029,39651209:2903245 -) -(4605,423:20753781,40516289:11829248,505283,126483 -h4605,422:20753781,40516289:0,0,0 -g4605,422:22600585,40516289 -g4605,422:26050400,40516289 -k4605,423:29705343,40516289:2877686 -k4605,423:32583029,40516289:2877686 -) -(4605,424:20753781,41381369:11829248,485622,102891 -h4605,423:20753781,41381369:0,0,0 -g4605,423:23860187,41381369 -k4605,424:29182366,41381369:3400663 -k4605,424:32583029,41381369:3400663 -) -(4605,425:20753781,42246449:11829248,473825,7863 -h4605,424:20753781,42246449:0,0,0 -k4605,425:27702891,42246449:4880138 -k4605,425:32583029,42246449:4880138 -) -(4605,426:20753781,43111529:11829248,505283,102891 -h4605,425:20753781,43111529:0,0,0 -r4605,432:20753781,43111529:0,608174,102891 -g4605,425:22064501,43111529 -g4605,425:22064501,43111529 -g4605,425:26112659,43111529 -k4605,426:29746303,43111529:2836726 -k4605,426:32583029,43111529:2836726 -) -(4605,427:20753781,43976609:11829248,505283,126483 -h4605,426:20753781,43976609:0,0,0 -r4605,432:20753781,43976609:0,631766,126483 -g4605,426:22064501,43976609 -g4605,426:22064501,43976609 -g4605,426:26919408,43976609 -k4605,427:30149678,43976609:2433352 -k4605,427:32583029,43976609:2433351 -) -(4605,428:20753781,44841689:11829248,505283,126483 -h4605,427:20753781,44841689:0,0,0 -r4605,432:20753781,44841689:0,631766,126483 -g4605,427:22064501,44841689 -g4605,427:22064501,44841689 -g4605,427:25668325,44841689 -g4605,427:27261505,44841689 -g4605,427:29942582,44841689 -k4605,428:31651434,44841689:931595 -k4605,428:32583029,44841689:931595 -) -(4605,429:20753781,45706769:11829248,473825,126483 -h4605,428:20753781,45706769:0,0,0 -r4605,432:20753781,45706769:0,600308,126483 -g4605,428:22064501,45706769 -g4605,428:22064501,45706769 -g4605,428:25514316,45706769 -k4605,429:29437301,45706769:3145728 -k4605,429:32583029,45706769:3145728 -) -] -(4605,432:32583029,45706769:0,355205,126483 -h4605,432:32583029,45706769:420741,355205,126483 -k4605,432:32583029,45706769:-420741 -) -) -] -(4605,432:32583029,45706769:0,0,0 -g4605,432:32583029,45706769 -) -) -] -(4605,432:6630773,47279633:25952256,0,0 -h4605,432:6630773,47279633:25952256,0,0 -) -] -(4605,432:4262630,4025873:0,0,0 -[4605,432:-473656,4025873:0,0,0 -(4605,432:-473656,-710413:0,0,0 -(4605,432:-473656,-710413:0,0,0 -g4605,432:-473656,-710413 -) -g4605,432:-473656,-710413 -) -] -) -] -!28189 -}438 +[4609,432:3078558,4812305:0,0,0 +(4609,432:3078558,49800853:0,16384,2228224 +g4609,432:29030814,49800853 +g4609,432:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,432:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,432:37855564,49800853:1179648,16384,0 +) +) +k4609,432:3078556,49800853:-34777008 +) +] +g4609,432:6630773,4812305 +g4609,432:6630773,4812305 +g4609,432:9313817,4812305 +g4609,432:11211739,4812305 +k4609,432:31387651,4812305:20175912 +) +) +] +[4609,432:6630773,45706769:25952256,40108032,0 +(4609,432:6630773,45706769:25952256,40108032,0 +(4609,432:6630773,45706769:0,0,0 +g4609,432:6630773,45706769 +) +[4609,432:6630773,45706769:25952256,40108032,0 +(4609,432:6630773,45706769:25952256,40108032,134348 +[4609,432:6630773,45706769:11829248,40108032,102891 +(4609,342:6630773,6254097:11829248,505283,134348 +h4609,341:6568514,6254097:0,0,0 +g4609,341:9686061,6254097 +k4609,342:14670730,6254097:3789292 +k4609,342:18460021,6254097:3789291 +) +(4609,346:6630773,7794238:11829248,505283,102891 +h4609,345:6568514,7794238:0,0,0 +g4609,345:8847200,7794238 +g4609,345:10017017,7794238 +g4609,345:11186834,7794238 +k4609,346:15421116,7794238:3038905 +k4609,346:18460021,7794238:3038905 +) +(4609,350:6630773,9334379:11829248,505283,134348 +h4609,349:6630773,9334379:0,0,0 +k4609,350:14131696,9334379:4328325 +k4609,350:18460021,9334379:4328325 +) +(4609,352:6630773,10200574:11829248,485622,102891 +h4609,350:6630773,10200574:0,0,0 +r4609,432:6630773,10200574:0,588513,102891 +g4609,350:7941493,10200574 +g4609,350:7941493,10200574 +g4609,350:8767901,10200574 +g4609,350:9937718,10200574 +g4609,350:11107535,10200574 +g4609,350:12277352,10200574 +g4609,350:13447169,10200574 +g4609,350:14616986,10200574 +g4609,350:15786803,10200574 +g4609,350:16956620,10200574 +k4609,350:18460021,10200574:220862 +) +(4609,352:9252213,11065654:9207808,485622,102891 +g4609,350:10800828,11065654 +g4609,350:12369104,11065654 +g4609,351:13937380,11065654 +g4609,351:15505656,11065654 +k4609,352:17580527,11065654:879494 +k4609,352:18460021,11065654:879494 +) +(4609,354:6630773,11931849:11829248,485622,102891 +h4609,352:6630773,11931849:0,0,0 +r4609,432:6630773,11931849:0,588513,102891 +g4609,352:7941493,11931849 +g4609,352:7941493,11931849 +g4609,352:9597587,11931849 +g4609,352:10767404,11931849 +g4609,352:11937221,11931849 +g4609,352:13107038,11931849 +g4609,352:14276855,11931849 +g4609,352:15446672,11931849 +g4609,352:16616489,11931849 +k4609,352:18460021,11931849:560993 +) +(4609,354:9252213,12796929:9207808,485622,102891 +g4609,352:10800828,12796929 +g4609,352:12369104,12796929 +g4609,352:13937380,12796929 +k4609,354:16796389,12796929:1663632 +k4609,354:18460021,12796929:1663632 +) +(4609,355:6630773,13663124:11829248,485622,102891 +h4609,354:6630773,13663124:0,0,0 +r4609,432:6630773,13663124:0,588513,102891 +g4609,354:7941493,13663124 +g4609,354:7941493,13663124 +g4609,354:10512470,13663124 +k4609,355:15083934,13663124:3376087 +k4609,355:18460021,13663124:3376087 +) +(4609,356:6630773,14529319:11829248,485622,102891 +h4609,355:6630773,14529319:0,0,0 +r4609,432:6630773,14529319:0,588513,102891 +k4609,355:7941493,14529319:1310720 +k4609,355:7941493,14529319:0 +k4609,355:11344778,14529319:188744 +k4609,355:12504110,14529319:188744 +k4609,355:14061900,14529319:188743 +k4609,355:15619691,14529319:188744 +k4609,355:17177482,14529319:188744 +k4609,355:18460021,14529319:0 +) +(4609,356:9252213,15394399:9207808,485622,11795 +k4609,356:14453806,15394399:4006216 +k4609,356:18460021,15394399:4006215 +) +(4609,357:6630773,16260594:11829248,485622,102891 +h4609,356:6630773,16260594:0,0,0 +r4609,432:6630773,16260594:0,588513,102891 +g4609,356:7941493,16260594 +g4609,356:7941493,16260594 +g4609,356:10123841,16260594 +g4609,356:11692117,16260594 +k4609,357:15673758,16260594:2786264 +k4609,357:18460021,16260594:2786263 +) +(4609,358:6630773,17126790:11829248,485622,102891 +h4609,357:6630773,17126790:0,0,0 +r4609,432:6630773,17126790:0,588513,102891 +g4609,357:7941493,17126790 +g4609,357:7941493,17126790 +g4609,357:9581203,17126790 +g4609,357:10751020,17126790 +k4609,358:14994149,17126790:3465872 +k4609,358:18460021,17126790:3465872 +) +(4609,359:6630773,17992985:11829248,485622,173670 +h4609,358:6630773,17992985:0,0,0 +r4609,432:6630773,17992985:0,659292,173670 +g4609,358:7941493,17992985 +g4609,358:7941493,17992985 +[4609,358:8070599,17992985:341312,473825,0 +(4609,358:8070599,17854966:341312,335806,0 +) +] +(4609,358:8638865,18166655:370934,473825,0 +) +g4609,358:9731350,17992985 +g4609,358:10901167,17992985 +g4609,358:12070984,17992985 +k4609,359:15863191,17992985:2596830 +k4609,359:18460021,17992985:2596830 +) +(4609,360:6630773,18859180:11829248,505283,102891 +h4609,359:6630773,18859180:0,0,0 +r4609,432:6630773,18859180:0,608174,102891 +g4609,359:7941493,18859180 +g4609,359:7941493,18859180 +g4609,359:11617407,18859180 +g4609,359:12388765,18859180 +g4609,359:13558582,18859180 +g4609,359:14728399,18859180 +g4609,359:16296675,18859180 +k4609,360:17976037,18859180:483985 +k4609,360:18460021,18859180:483984 +) +(4609,361:6630773,19725375:11829248,505283,126483 +h4609,360:6630773,19725375:0,0,0 +r4609,432:6630773,19725375:0,631766,126483 +g4609,360:7941493,19725375 +g4609,360:7941493,19725375 +g4609,360:10432516,19725375 +g4609,360:11823190,19725375 +g4609,360:15272349,19725375 +k4609,361:17254814,19725375:1205208 +k4609,361:18460021,19725375:1205207 +) +(4609,362:6630773,20591570:11829248,505283,102891 +h4609,361:6630773,20591570:0,0,0 +r4609,432:6630773,20591570:0,608174,102891 +g4609,361:7941493,20591570 +g4609,361:7941493,20591570 +g4609,361:10258845,20591570 +g4609,361:11428662,20591570 +g4609,361:12598479,20591570 +k4609,362:16126939,20591570:2333083 +k4609,362:18460021,20591570:2333082 +) +(4609,363:6630773,21457765:11829248,505283,102891 +h4609,362:6630773,21457765:0,0,0 +r4609,432:6630773,21457765:0,608174,102891 +g4609,362:7941493,21457765 +g4609,362:7941493,21457765 +g4609,362:9499283,21457765 +k4609,363:14378111,21457765:4081910 +k4609,363:18460021,21457765:4081910 +) +(4609,364:6630773,22323960:11829248,505283,126483 +h4609,363:6630773,22323960:0,0,0 +r4609,432:6630773,22323960:0,631766,126483 +g4609,363:7941493,22323960 +g4609,363:7941493,22323960 +g4609,363:10479046,22323960 +g4609,363:11648863,22323960 +g4609,363:12818680,22323960 +g4609,363:14386956,22323960 +k4609,364:17011347,22323960:1448675 +k4609,364:18460021,22323960:1448674 +) +(4609,365:6630773,23190156:11829248,505283,102891 +h4609,364:6630773,23190156:0,0,0 +r4609,432:6630773,23190156:0,608174,102891 +g4609,364:7941493,23190156 +g4609,364:7941493,23190156 +g4609,364:8563430,23190156 +g4609,364:12287185,23190156 +g4609,364:13457002,23190156 +k4609,365:16556200,23190156:1903821 +k4609,365:18460021,23190156:1903821 +) +(4609,366:6630773,24056351:11829248,485622,102891 +h4609,365:6630773,24056351:0,0,0 +r4609,432:6630773,24056351:0,588513,102891 +g4609,365:7941493,24056351 +g4609,365:7941493,24056351 +g4609,365:8667631,24056351 +g4609,365:9837448,24056351 +g4609,365:11007265,24056351 +g4609,365:12575541,24056351 +g4609,365:14143817,24056351 +k4609,366:16899608,24056351:1560414 +k4609,366:18460021,24056351:1560413 +) +(4609,367:6630773,24922546:11829248,505283,102891 +h4609,366:6630773,24922546:0,0,0 +r4609,432:6630773,24922546:0,608174,102891 +g4609,366:7941493,24922546 +g4609,366:7941493,24922546 +g4609,366:10172338,24922546 +k4609,367:14714639,24922546:3745383 +k4609,367:18460021,24922546:3745382 +) +(4609,368:6630773,25788741:11829248,485622,102891 +h4609,367:6630773,25788741:0,0,0 +r4609,432:6630773,25788741:0,588513,102891 +g4609,367:7941493,25788741 +g4609,367:7941493,25788741 +g4609,367:10534096,25788741 +k4609,368:15094747,25788741:3365274 +k4609,368:18460021,25788741:3365274 +) +(4609,369:6630773,26654936:11829248,485622,102891 +h4609,368:6630773,26654936:0,0,0 +r4609,432:6630773,26654936:0,588513,102891 +g4609,368:7941493,26654936 +g4609,368:7941493,26654936 +g4609,368:9638219,26654936 +k4609,369:14646809,26654936:3813213 +k4609,369:18460021,26654936:3813212 +) +(4609,370:6630773,27521131:11829248,485622,102891 +h4609,369:6630773,27521131:0,0,0 +r4609,432:6630773,27521131:0,588513,102891 +g4609,369:7941493,27521131 +g4609,369:7941493,27521131 +g4609,369:10052407,27521131 +k4609,370:14853903,27521131:3606119 +k4609,370:18460021,27521131:3606118 +) +(4609,371:6630773,28387327:11829248,485622,173670 +h4609,370:6630773,28387327:0,0,0 +[4609,370:6759879,28387327:341312,473825,0 +(4609,370:6759879,28249308:341312,335806,0 +) +] +(4609,370:7328145,28560997:370934,473825,0 +) +g4609,370:8420630,28387327 +g4609,370:9590447,28387327 +g4609,370:10760264,28387327 +k4609,371:15207831,28387327:3252190 +k4609,371:18460021,28387327:3252190 +) +(4609,372:6630773,29253522:11829248,505283,102891 +h4609,371:6568514,29253522:0,0,0 +g4609,371:9286947,29253522 +g4609,371:10855223,29253522 +k4609,372:15255311,29253522:3204711 +k4609,372:18460021,29253522:3204710 +) +(4609,374:6630773,30119717:11829248,505283,102891 +h4609,372:6568514,30119717:0,0,0 +g4609,372:10814591,30119717 +g4609,372:12312088,30119717 +g4609,372:13481905,30119717 +g4609,372:15050181,30119717 +k4609,372:18460021,30119717:604244 +) +(4609,374:9252213,30984797:9207808,485622,102891 +g4609,372:10820489,30984797 +g4609,372:12388765,30984797 +g4609,372:13957041,30984797 +k4609,374:16806220,30984797:1653802 +k4609,374:18460021,30984797:1653801 +) +(4609,375:6630773,31850992:11829248,505283,102891 +h4609,374:6630773,31850992:0,0,0 +g4609,374:8642728,31850992 +g4609,374:11333636,31850992 +k4609,375:16256045,31850992:2203976 +k4609,375:18460021,31850992:2203976 +) +(4609,376:6630773,32717187:11829248,513147,126483 +h4609,375:6630773,32717187:0,0,0 +r4609,432:6630773,32717187:0,639630,126483 +g4609,375:7941493,32717187 +g4609,375:7941493,32717187 +g4609,375:10273264,32717187 +g4609,375:11994239,32717187 +g4609,375:13141119,32717187 +g4609,375:17125052,32717187 +k4609,376:18390225,32717187:69796 +k4609,376:18460021,32717187:69796 +) +(4609,377:6630773,33583382:11829248,513147,126483 +h4609,376:6630773,33583382:0,0,0 +r4609,432:6630773,33583382:0,639630,126483 +g4609,376:7941493,33583382 +g4609,376:7941493,33583382 +g4609,376:10695315,33583382 +g4609,376:11553836,33583382 +g4609,376:15309048,33583382 +k4609,377:17482223,33583382:977798 +k4609,377:18460021,33583382:977798 +) +(4609,378:6630773,34449577:11829248,513147,126483 +h4609,377:6630773,34449577:0,0,0 +r4609,432:6630773,34449577:0,639630,126483 +g4609,377:7941493,34449577 +g4609,377:7941493,34449577 +g4609,377:10695315,34449577 +g4609,377:11553836,34449577 +g4609,377:14580944,34449577 +k4609,378:17879699,34449577:580322 +k4609,378:18460021,34449577:580322 +) +(4609,379:6630773,35315773:11829248,505283,134348 +h4609,378:6630773,35315773:0,0,0 +r4609,432:6630773,35315773:0,639631,134348 +g4609,378:7941493,35315773 +g4609,378:7941493,35315773 +g4609,378:9953448,35315773 +g4609,378:13643124,35315773 +k4609,379:17400959,35315773:1059063 +k4609,379:18460021,35315773:1059062 +) +(4609,380:6630773,36181968:11829248,505283,134348 +h4609,379:6630773,36181968:0,0,0 +r4609,432:6630773,36181968:0,639631,134348 +g4609,379:7941493,36181968 +g4609,379:7941493,36181968 +g4609,379:11713745,36181968 +g4609,379:15403421,36181968 +k4609,380:17529410,36181968:930612 +k4609,380:18460021,36181968:930611 +) +(4609,381:6630773,37048163:11829248,505283,126483 +h4609,380:6630773,37048163:0,0,0 +r4609,432:6630773,37048163:0,631766,126483 +g4609,380:7941493,37048163 +g4609,380:7941493,37048163 +g4609,380:10895856,37048163 +g4609,380:13082792,37048163 +k4609,380:18460021,37048163:2458911 +) +(4609,381:9252213,37913243:9207808,485622,0 +k4609,381:15205503,37913243:3254518 +k4609,381:18460021,37913243:3254518 +) +(4609,382:6630773,38779438:11829248,513147,134348 +h4609,381:6630773,38779438:0,0,0 +r4609,432:6630773,38779438:0,647495,134348 +k4609,381:7941493,38779438:1310720 +k4609,381:7941493,38779438:0 +k4609,381:11057729,38779438:184811 +k4609,381:11901833,38779438:184812 +k4609,381:14074351,38779438:184811 +k4609,381:14946636,38779438:184812 +k4609,381:17264644,38779438:184811 +k4609,382:18460021,38779438:0 +k4609,382:18460021,38779438:0 +) +(4609,383:6630773,39645633:11829248,513147,134348 +h4609,382:6630773,39645633:0,0,0 +r4609,432:6630773,39645633:0,647495,134348 +g4609,382:7941493,39645633 +g4609,382:7941493,39645633 +g4609,382:11072147,39645633 +g4609,382:11930668,39645633 +g4609,382:15120305,39645633 +k4609,382:18460021,39645633:1293027 +) +(4609,383:9252213,40510713:9207808,485622,11795 +k4609,383:14453806,40510713:4006216 +k4609,383:18460021,40510713:4006215 +) +(4609,384:6630773,41376908:11829248,505283,126483 +h4609,383:6630773,41376908:0,0,0 +r4609,432:6630773,41376908:0,631766,126483 +g4609,383:7941493,41376908 +g4609,383:7941493,41376908 +g4609,383:11131130,41376908 +g4609,383:13069685,41376908 +k4609,384:16362542,41376908:2097480 +k4609,384:18460021,41376908:2097479 +) +(4609,385:6630773,42243104:11829248,505283,134348 +h4609,384:6630773,42243104:0,0,0 +g4609,384:8642728,42243104 +g4609,384:12332404,42243104 +g4609,384:13498944,42243104 +g4609,384:15510899,42243104 +k4609,384:18460021,42243104:543951 +) +(4609,385:9252213,43108184:9207808,505283,134348 +g4609,384:11264168,43108184 +k4609,385:16520483,43108184:1939538 +k4609,385:18460021,43108184:1939538 +) +(4609,386:6630773,43974379:11829248,485622,102891 +h4609,385:6630773,43974379:0,0,0 +g4609,385:8756760,43974379 +g4609,385:9926577,43974379 +g4609,385:11096394,43974379 +g4609,385:12266211,43974379 +g4609,385:13436028,43974379 +g4609,385:15004304,43974379 +g4609,385:16572580,43974379 +k4609,386:18113989,43974379:346032 +k4609,386:18460021,43974379:346032 +) +(4609,387:6630773,44840574:11829248,513147,134348 +h4609,386:6630773,44840574:0,0,0 +g4609,386:8813777,44840574 +g4609,386:10326348,44840574 +g4609,386:11208462,44840574 +g4609,386:14991200,44840574 +k4609,387:17313469,44840574:1146553 +k4609,387:18460021,44840574:1146552 +) +(4609,388:6630773,45706769:11829248,505283,102891 +h4609,387:6630773,45706769:0,0,0 +g4609,387:8327500,45706769 +k4609,388:14344688,45706769:4115333 +k4609,388:18460021,45706769:4115333 +) +] +k4609,432:19606901,45706769:1146880 +r4609,432:19606901,45706769:0,40242380,134348 +k4609,432:20753781,45706769:1146880 +[4609,432:20753781,45706769:11829248,40108032,134348 +(4609,389:20753781,6254097:11829248,505283,126483 +h4609,388:20753781,6254097:0,0,0 +r4609,432:20753781,6254097:0,631766,126483 +g4609,388:22064501,6254097 +g4609,388:22064501,6254097 +g4609,388:24643998,6254097 +g4609,388:25668325,6254097 +k4609,389:29524136,6254097:3058893 +k4609,389:32583029,6254097:3058893 +) +(4609,390:20753781,7119177:11829248,485622,102891 +h4609,389:20753781,7119177:0,0,0 +r4609,432:20753781,7119177:0,588513,102891 +g4609,389:22064501,7119177 +g4609,389:22064501,7119177 +g4609,389:24656449,7119177 +g4609,389:26123144,7119177 +g4609,389:28473920,7119177 +k4609,390:30926934,7119177:1656096 +k4609,390:32583029,7119177:1656095 +) +(4609,391:20753781,7984257:11829248,513147,7863 +h4609,390:20753781,7984257:0,0,0 +r4609,432:20753781,7984257:0,521010,7863 +g4609,390:22064501,7984257 +g4609,390:22064501,7984257 +g4609,390:24851747,7984257 +g4609,390:26242421,7984257 +g4609,390:29107655,7984257 +k4609,390:32583029,7984257:2816082 +) +(4609,391:23375221,8849337:9207808,505283,102891 +g4609,390:26701828,8849337 +k4609,391:30593356,8849337:1989673 +k4609,391:32583029,8849337:1989673 +) +(4609,392:20753781,9714417:11829248,513147,134348 +h4609,391:20753781,9714417:0,0,0 +r4609,432:20753781,9714417:0,647495,134348 +g4609,391:22064501,9714417 +g4609,391:22064501,9714417 +g4609,391:25494000,9714417 +k4609,392:29436974,9714417:3146056 +k4609,392:32583029,9714417:3146055 +) +(4609,393:20753781,10579497:11829248,485622,102891 +h4609,392:20753781,10579497:0,0,0 +r4609,432:20753781,10579497:0,588513,102891 +g4609,392:22064501,10579497 +g4609,392:22064501,10579497 +g4609,392:24102670,10579497 +g4609,392:25743036,10579497 +k4609,393:29561492,10579497:3021538 +k4609,393:32583029,10579497:3021537 +) +(4609,394:20753781,11444577:11829248,505283,102891 +h4609,393:20753781,11444577:0,0,0 +r4609,432:20753781,11444577:0,608174,102891 +g4609,393:22064501,11444577 +g4609,393:22064501,11444577 +g4609,393:24887136,11444577 +g4609,393:28474576,11444577 +k4609,394:31479730,11444577:1103299 +k4609,394:32583029,11444577:1103299 +) +(4609,395:20753781,12309657:11829248,505283,134348 +h4609,394:20753781,12309657:0,0,0 +r4609,432:20753781,12309657:0,639631,134348 +g4609,394:22064501,12309657 +g4609,394:22064501,12309657 +g4609,394:24887136,12309657 +g4609,394:27999440,12309657 +g4609,394:29165980,12309657 +k4609,394:32583029,12309657:2006059 +) +(4609,395:23375221,13174737:9207808,505283,7863 +g4609,394:26197856,13174737 +k4609,395:30997713,13174737:1585316 +k4609,395:32583029,13174737:1585316 +) +(4609,396:20753781,14039817:11829248,505283,102891 +h4609,395:20753781,14039817:0,0,0 +r4609,432:20753781,14039817:0,608174,102891 +g4609,395:22064501,14039817 +g4609,395:22064501,14039817 +g4609,395:24554869,14039817 +g4609,395:25724686,14039817 +k4609,396:29552317,14039817:3030713 +k4609,396:32583029,14039817:3030712 +) +(4609,397:20753781,14904897:11829248,485622,102891 +h4609,396:20753781,14904897:0,0,0 +r4609,432:20753781,14904897:0,588513,102891 +g4609,396:22064501,14904897 +g4609,396:22064501,14904897 +g4609,396:25368826,14904897 +k4609,397:29374387,14904897:3208643 +k4609,397:32583029,14904897:3208642 +) +(4609,398:20753781,15769977:11829248,505283,134348 +h4609,397:20753781,15769977:0,0,0 +g4609,397:23212036,15769977 +g4609,397:27937181,15769977 +k4609,398:30857794,15769977:1725236 +k4609,398:32583029,15769977:1725235 +) +(4609,399:20753781,16635057:11829248,505283,102891 +h4609,398:20753781,16635057:0,0,0 +g4609,398:22055326,16635057 +g4609,398:23221866,16635057 +g4609,398:25233821,16635057 +k4609,399:30067429,16635057:2515600 +k4609,399:32583029,16635057:2515600 +) +(4609,400:20753781,17500137:11829248,505283,102891 +h4609,399:20691522,17500137:0,0,0 +g4609,399:23059992,17500137 +k4609,400:28419199,17500137:4163830 +k4609,400:32583029,17500137:4163830 +) +(4609,401:20753781,18365217:11829248,505283,134348 +h4609,400:20753781,18365217:0,0,0 +k4609,400:22432377,18365217:184375 +k4609,400:26189774,18365217:184374 +k4609,400:29864596,18365217:184375 +k4609,401:32583029,18365217:0 +k4609,401:32583029,18365217:0 +) +(4609,402:20753781,19230297:11829248,505283,126483 +h4609,401:20753781,19230297:0,0,0 +g4609,401:23082275,19230297 +g4609,401:24248815,19230297 +g4609,401:25942265,19230297 +k4609,401:32583029,19230297:3067741 +) +(4609,402:23375221,20095377:9207808,473825,134348 +k4609,402:29637514,20095377:2945516 +k4609,402:32583029,20095377:2945515 +) +(4609,403:20753781,20960457:11829248,505283,134348 +h4609,402:20753781,20960457:0,0,0 +g4609,402:23022637,20960457 +g4609,402:26472452,20960457 +k4609,403:29926200,20960457:2656830 +k4609,403:32583029,20960457:2656829 +) +(4609,404:20753781,21825537:11829248,505283,134348 +h4609,403:20753781,21825537:0,0,0 +g4609,403:23022637,21825537 +g4609,403:25232511,21825537 +g4609,403:26623185,21825537 +g4609,403:28331053,21825537 +k4609,403:32583029,21825537:1837630 +) +(4609,404:23375221,22690617:9207808,485622,11795 +k4609,404:28930053,22690617:3652977 +k4609,404:32583029,22690617:3652976 +) +(4609,405:20753781,23555697:11829248,513147,134348 +h4609,404:20753781,23555697:0,0,0 +g4609,404:24335323,23555697 +g4609,404:25725997,23555697 +g4609,404:29196128,23555697 +k4609,404:32583029,23555697:1123943 +) +(4609,405:23375221,24420777:9207808,505283,102891 +g4609,404:25137484,24420777 +k4609,405:29457945,24420777:3125084 +k4609,405:32583029,24420777:3125084 +) +(4609,406:20753781,25285857:11829248,505283,126483 +h4609,405:20753781,25285857:0,0,0 +g4609,405:22871904,25285857 +g4609,405:24038444,25285857 +g4609,405:25495309,25285857 +k4609,406:30397731,25285857:2185299 +k4609,406:32583029,25285857:2185298 +) +(4609,407:20753781,26150937:11829248,513147,102891 +h4609,406:20753781,26150937:0,0,0 +r4609,432:20753781,26150937:0,616038,102891 +g4609,406:22064501,26150937 +g4609,406:22064501,26150937 +g4609,406:24107258,26150937 +g4609,406:28197359,26150937 +g4609,406:29765635,26150937 +g4609,406:31333911,26150937 +k4609,407:32556159,26150937:26871 +k4609,407:32583029,26150937:26870 +) +(4609,408:20753781,27016017:11829248,505283,102891 +h4609,407:20753781,27016017:0,0,0 +r4609,432:20753781,27016017:0,608174,102891 +g4609,407:22064501,27016017 +g4609,407:22064501,27016017 +g4609,407:24554869,27016017 +k4609,408:29166638,27016017:3416392 +k4609,408:32583029,27016017:3416391 +) +(4609,409:20753781,27881097:11829248,513147,126483 +h4609,408:20753781,27881097:0,0,0 +g4609,408:22213267,27881097 +g4609,408:23071788,27881097 +g4609,408:25891146,27881097 +g4609,408:29196126,27881097 +k4609,409:31278206,27881097:1304823 +k4609,409:32583029,27881097:1304823 +) +(4609,410:20753781,28746177:11829248,505283,102891 +h4609,409:20691522,28746177:0,0,0 +g4609,409:24329425,28746177 +g4609,409:25499242,28746177 +g4609,409:27067518,28746177 +g4609,409:30158851,28746177 +k4609,409:32583029,28746177:1141639 +) +(4609,410:23375221,29611257:9207808,485622,102891 +g4609,409:24923836,29611257 +k4609,410:29351121,29611257:3231908 +k4609,410:32583029,29611257:3231908 +) +(4609,414:20753781,31000409:11829248,505283,7863 +h4609,413:20753781,31000409:0,0,0 +g4609,413:23640641,31000409 +k4609,414:29749908,31000409:2833122 +k4609,414:32583029,31000409:2833121 +) +(4609,415:20753781,31865489:11829248,485622,126483 +h4609,414:20753781,31865489:0,0,0 +r4609,432:20753781,31865489:0,612105,126483 +g4609,414:22064501,31865489 +g4609,414:22064501,31865489 +g4609,414:25369481,31865489 +k4609,415:29927183,31865489:2655847 +k4609,415:32583029,31865489:2655846 +) +(4609,416:20753781,32730569:11829248,505283,134348 +h4609,415:20753781,32730569:0,0,0 +r4609,432:20753781,32730569:0,639631,134348 +g4609,415:22064501,32730569 +g4609,415:22064501,32730569 +g4609,415:25187291,32730569 +g4609,415:27497435,32730569 +k4609,416:30438691,32730569:2144338 +k4609,416:32583029,32730569:2144338 +) +(4609,417:20753781,33595649:11829248,505283,134348 +h4609,416:20691522,33595649:0,0,0 +g4609,416:24076456,33595649 +g4609,416:25644732,33595649 +g4609,416:28736065,33595649 +g4609,416:30304341,33595649 +k4609,417:32031543,33595649:551486 +k4609,417:32583029,33595649:551486 +) +(4609,418:20753781,34460729:11829248,505283,126483 +h4609,417:20753781,34460729:0,0,0 +g4609,417:24124953,34460729 +g4609,417:25291493,34460729 +g4609,417:29351448,34460729 +k4609,417:32583029,34460729:676988 +) +(4609,418:23375221,35325809:9207808,513147,7863 +g4609,417:24233742,35325809 +k4609,418:29735490,35325809:2847540 +k4609,418:32583029,35325809:2847539 +) +(4609,419:20753781,36190889:11829248,505283,102891 +h4609,418:20753781,36190889:0,0,0 +g4609,418:24429695,36190889 +g4609,418:25201053,36190889 +g4609,418:26370870,36190889 +g4609,418:27540687,36190889 +g4609,418:29108963,36190889 +k4609,419:31443685,36190889:1139345 +k4609,419:32583029,36190889:1139344 +) +(4609,420:20753781,37055969:11829248,513147,102891 +h4609,419:20753781,37055969:0,0,0 +g4609,419:22600585,37055969 +g4609,419:25999282,37055969 +k4609,420:29679784,37055969:2903245 +k4609,420:32583029,37055969:2903245 +) +(4609,421:20753781,37921049:11829248,505283,126483 +h4609,420:20753781,37921049:0,0,0 +g4609,420:22600585,37921049 +g4609,420:26050400,37921049 +k4609,421:29705343,37921049:2877686 +k4609,421:32583029,37921049:2877686 +) +(4609,422:20753781,38786129:11829248,485622,102891 +h4609,421:20753781,38786129:0,0,0 +g4609,421:23860187,38786129 +k4609,422:29182366,38786129:3400663 +k4609,422:32583029,38786129:3400663 +) +(4609,423:20753781,39651209:11829248,473825,7863 +h4609,422:20753781,39651209:0,0,0 +k4609,423:27702891,39651209:4880138 +k4609,423:32583029,39651209:4880138 +) +(4609,424:20753781,40516289:11829248,505283,102891 +h4609,423:20753781,40516289:0,0,0 +r4609,432:20753781,40516289:0,608174,102891 +g4609,423:22064501,40516289 +g4609,423:22064501,40516289 +g4609,423:26112659,40516289 +k4609,424:29746303,40516289:2836726 +k4609,424:32583029,40516289:2836726 +) +(4609,425:20753781,41381369:11829248,505283,126483 +h4609,424:20753781,41381369:0,0,0 +r4609,432:20753781,41381369:0,631766,126483 +g4609,424:22064501,41381369 +g4609,424:22064501,41381369 +g4609,424:26919408,41381369 +k4609,425:30149678,41381369:2433352 +k4609,425:32583029,41381369:2433351 +) +(4609,426:20753781,42246449:11829248,505283,126483 +h4609,425:20753781,42246449:0,0,0 +r4609,432:20753781,42246449:0,631766,126483 +g4609,425:22064501,42246449 +g4609,425:22064501,42246449 +g4609,425:25668325,42246449 +g4609,425:27261505,42246449 +g4609,425:29942582,42246449 +k4609,426:31651434,42246449:931595 +k4609,426:32583029,42246449:931595 +) +(4609,427:20753781,43111529:11829248,473825,126483 +h4609,426:20753781,43111529:0,0,0 +r4609,432:20753781,43111529:0,600308,126483 +g4609,426:22064501,43111529 +g4609,426:22064501,43111529 +g4609,426:25514316,43111529 +k4609,427:29437301,43111529:3145728 +k4609,427:32583029,43111529:3145728 +) +(4609,428:20753781,43976609:11829248,473825,126483 +h4609,427:20753781,43976609:0,0,0 +r4609,432:20753781,43976609:0,600308,126483 +g4609,427:22064501,43976609 +g4609,427:22064501,43976609 +g4609,427:25576575,43976609 +k4609,428:29468431,43976609:3114599 +k4609,428:32583029,43976609:3114598 +) +(4609,429:20753781,44841689:11829248,505283,102891 +h4609,428:20691522,44841689:0,0,0 +g4609,428:25095540,44841689 +k4609,429:29237744,44841689:3345286 +k4609,429:32583029,44841689:3345285 +) +(4609,430:20753781,45706769:11829248,505283,134348 +h4609,429:20753781,45706769:0,0,0 +g4609,429:22548812,45706769 +g4609,429:23715352,45706769 +g4609,429:29518565,45706769 +k4609,430:32158356,45706769:424674 +k4609,430:32583029,45706769:424673 +) +] +(4609,432:32583029,45706769:0,355205,126483 +h4609,432:32583029,45706769:420741,355205,126483 +k4609,432:32583029,45706769:-420741 +) +) +] +(4609,432:32583029,45706769:0,0,0 +g4609,432:32583029,45706769 +) +) +] +(4609,432:6630773,47279633:25952256,0,0 +h4609,432:6630773,47279633:25952256,0,0 +) +] +(4609,432:4262630,4025873:0,0,0 +[4609,432:-473656,4025873:0,0,0 +(4609,432:-473656,-710413:0,0,0 +(4609,432:-473656,-710413:0,0,0 +g4609,432:-473656,-710413 +) +g4609,432:-473656,-710413 +) +] +) +] +!28063 +}439 !12 -{439 -[4605,523:4262630,47279633:28320399,43253760,0 -(4605,523:4262630,4025873:0,0,0 -[4605,523:-473656,4025873:0,0,0 -(4605,523:-473656,-710413:0,0,0 -(4605,523:-473656,-644877:0,0,0 -k4605,523:-473656,-644877:-65536 +{440 +[4609,524:4262630,47279633:28320399,43253760,0 +(4609,524:4262630,4025873:0,0,0 +[4609,524:-473656,4025873:0,0,0 +(4609,524:-473656,-710413:0,0,0 +(4609,524:-473656,-644877:0,0,0 +k4609,524:-473656,-644877:-65536 ) -(4605,523:-473656,4736287:0,0,0 -k4605,523:-473656,4736287:5209943 +(4609,524:-473656,4736287:0,0,0 +k4609,524:-473656,4736287:5209943 ) -g4605,523:-473656,-710413 +g4609,524:-473656,-710413 ) ] ) -[4605,523:6630773,47279633:25952256,43253760,0 -[4605,523:6630773,4812305:25952256,786432,0 -(4605,523:6630773,4812305:25952256,505283,11795 -(4605,523:6630773,4812305:25952256,505283,11795 -g4605,523:3078558,4812305 -[4605,523:3078558,4812305:0,0,0 -(4605,523:3078558,2439708:0,1703936,0 -k4605,523:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,523:2537886,2439708:1179648,16384,0 +[4609,524:6630773,47279633:25952256,43253760,0 +[4609,524:6630773,4812305:25952256,786432,0 +(4609,524:6630773,4812305:25952256,505283,11795 +(4609,524:6630773,4812305:25952256,505283,11795 +g4609,524:3078558,4812305 +[4609,524:3078558,4812305:0,0,0 +(4609,524:3078558,2439708:0,1703936,0 +k4609,524:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,524:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,523:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,524:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,523:3078558,4812305:0,0,0 -(4605,523:3078558,2439708:0,1703936,0 -g4605,523:29030814,2439708 -g4605,523:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,523:36151628,1915420:16384,1179648,0 +[4609,524:3078558,4812305:0,0,0 +(4609,524:3078558,2439708:0,1703936,0 +g4609,524:29030814,2439708 +g4609,524:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,524:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,523:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,524:37855564,2439708:1179648,16384,0 ) ) -k4605,523:3078556,2439708:-34777008 +k4609,524:3078556,2439708:-34777008 ) ] -[4605,523:3078558,4812305:0,0,0 -(4605,523:3078558,49800853:0,16384,2228224 -k4605,523:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,523:2537886,49800853:1179648,16384,0 +[4609,524:3078558,4812305:0,0,0 +(4609,524:3078558,49800853:0,16384,2228224 +k4609,524:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,524:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,523:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,524:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,523:3078558,4812305:0,0,0 -(4605,523:3078558,49800853:0,16384,2228224 -g4605,523:29030814,49800853 -g4605,523:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,523:36151628,51504789:16384,1179648,0 +[4609,524:3078558,4812305:0,0,0 +(4609,524:3078558,49800853:0,16384,2228224 +g4609,524:29030814,49800853 +g4609,524:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,524:36151628,51504789:16384,1179648,0 ) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 ) ] ) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,523:37855564,49800853:1179648,16384,0 +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,524:37855564,49800853:1179648,16384,0 ) ) -k4605,523:3078556,49800853:-34777008 +k4609,524:3078556,49800853:-34777008 ) ] -g4605,523:6630773,4812305 -k4605,523:28201292,4812305:20375142 -g4605,523:30884336,4812305 +g4609,524:6630773,4812305 +k4609,524:28201292,4812305:20375142 +g4609,524:30884336,4812305 ) ) ] -[4605,523:6630773,45706769:25952256,40108032,0 -(4605,523:6630773,45706769:25952256,40108032,0 -(4605,523:6630773,45706769:0,0,0 -g4605,523:6630773,45706769 +[4609,524:6630773,45706769:25952256,40108032,0 +(4609,524:6630773,45706769:25952256,40108032,0 +(4609,524:6630773,45706769:0,0,0 +g4609,524:6630773,45706769 ) -[4605,523:6630773,45706769:25952256,40108032,0 -(4605,523:6630773,45706769:25952256,40108032,126483 -[4605,523:6630773,45706769:11829248,40108032,102891 -(4605,430:6630773,6254097:11829248,473825,126483 -h4605,429:6630773,6254097:0,0,0 -r4605,523:6630773,6254097:0,600308,126483 -g4605,429:7941493,6254097 -g4605,429:7941493,6254097 -g4605,429:11453567,6254097 -k4605,430:15345423,6254097:3114599 -k4605,430:18460021,6254097:3114598 +[4609,524:6630773,45706769:25952256,40108032,0 +(4609,524:6630773,45706769:25952256,40108032,126483 +[4609,524:6630773,45706769:11829248,40108032,126483 +(4609,431:6630773,6254097:11829248,513147,134348 +h4609,430:6630773,6254097:0,0,0 +g4609,430:9450131,6254097 +g4609,430:11038723,6254097 +g4609,430:12805573,6254097 +g4609,430:14177241,6254097 +k4609,430:18460021,6254097:2053901 ) -(4605,431:6630773,7119177:11829248,505283,102891 -h4605,430:6568514,7119177:0,0,0 -g4605,430:10972532,7119177 -k4605,431:15114736,7119177:3345286 -k4605,431:18460021,7119177:3345285 -) -(4605,432:6630773,7984257:11829248,505283,134348 -h4605,431:6630773,7984257:0,0,0 -g4605,431:8425804,7984257 -g4605,431:9592344,7984257 -g4605,431:15395557,7984257 -k4605,432:18035348,7984257:424674 -k4605,432:18460021,7984257:424673 -) -(4605,433:6630773,8849337:11829248,513147,134348 -h4605,432:6630773,8849337:0,0,0 -g4605,432:9450131,8849337 -g4605,432:11038723,8849337 -g4605,432:12805573,8849337 -g4605,432:14177241,8849337 -k4605,432:18460021,8849337:2053901 -) -(4605,433:9252213,9714417:9207808,485622,11795 -k4605,433:15205503,9714417:3254518 -k4605,433:18460021,9714417:3254518 -) -(4605,434:6630773,10579497:11829248,505283,102891 -h4605,433:6630773,10579497:0,0,0 -g4605,433:9788297,10579497 -k4605,434:14721848,10579497:3738174 -k4605,434:18460021,10579497:3738173 -) -(4605,435:6630773,11444577:11829248,505283,126483 -h4605,434:6630773,11444577:0,0,0 -r4605,523:6630773,11444577:0,631766,126483 -g4605,434:7941493,11444577 -g4605,434:7941493,11444577 -g4605,434:8894386,11444577 -g4605,434:10648784,11444577 -g4605,434:13267602,11444577 -k4605,435:16461500,11444577:1998521 -k4605,435:18460021,11444577:1998521 -) -(4605,436:6630773,12309657:11829248,505283,126483 -h4605,435:6630773,12309657:0,0,0 -g4605,435:12340924,12309657 -g4605,435:15503691,12309657 -k4605,436:17569714,12309657:890307 -k4605,436:18460021,12309657:890307 -) -(4605,437:6630773,13174737:11829248,505283,102891 -h4605,436:6568514,13174737:0,0,0 -g4605,436:12713824,13174737 -k4605,437:16184611,13174737:2275410 -k4605,437:18460021,13174737:2275410 -) -(4605,438:6630773,14039817:11829248,485622,173670 -h4605,437:6630773,14039817:0,0,0 -(4605,437:6630773,14039817:1181614,473825,0 -) -(4605,437:8117325,14213487:355205,473825,0 -) -g4605,437:9173764,14039817 -k4605,438:14404751,14039817:4055271 -k4605,438:18460021,14039817:4055270 -) -(4605,439:6630773,14904897:11829248,505283,102891 -h4605,438:6568514,14904897:0,0,0 -g4605,438:10131706,14904897 -k4605,439:14893552,14904897:3566469 -k4605,439:18460021,14904897:3566469 -) -(4605,440:6630773,15769977:11829248,513147,102891 -h4605,439:6630773,15769977:0,0,0 -g4605,439:8817709,15769977 -g4605,439:12064362,15769977 -k4605,440:16611578,15769977:1848444 -k4605,440:18460021,15769977:1848443 -) -(4605,441:6630773,16635057:11829248,513147,7863 -h4605,440:6630773,16635057:0,0,0 -r4605,523:6630773,16635057:0,521010,7863 -g4605,440:7941493,16635057 -g4605,440:7941493,16635057 -g4605,440:11617407,16635057 -g4605,440:13384257,16635057 -k4605,440:18460021,16635057:2115503 -) -(4605,441:9252213,17500137:9207808,485622,134348 -g4605,440:11821224,17500137 -k4605,441:15728481,17500137:2731541 -k4605,441:18460021,17500137:2731540 -) -(4605,442:6630773,18365217:11829248,505283,7863 -h4605,441:6630773,18365217:0,0,0 -r4605,523:6630773,18365217:0,513146,7863 -g4605,441:7941493,18365217 -g4605,441:7941493,18365217 -g4605,441:11617407,18365217 -g4605,441:13084102,18365217 -k4605,441:18460021,18365217:2415658 -) -(4605,442:9252213,19230297:9207808,485622,134348 -g4605,441:11821224,19230297 -k4605,442:15728481,19230297:2731541 -k4605,442:18460021,19230297:2731540 -) -(4605,443:6630773,20095377:11829248,505283,126483 -h4605,442:6630773,20095377:0,0,0 -r4605,523:6630773,20095377:0,631766,126483 -g4605,442:7941493,20095377 -g4605,442:7941493,20095377 -g4605,442:12570300,20095377 -k4605,443:16112849,20095377:2347172 -k4605,443:18460021,20095377:2347172 -) -(4605,444:6630773,20960457:11829248,505283,134348 -h4605,443:6630773,20960457:0,0,0 -r4605,523:6630773,20960457:0,639631,134348 -g4605,443:7941493,20960457 -g4605,443:7941493,20960457 -g4605,443:11173728,20960457 -k4605,444:15404733,20960457:3055289 -k4605,444:18460021,20960457:3055288 -) -(4605,445:6630773,21825537:11829248,505283,7863 -h4605,444:6630773,21825537:0,0,0 -k4605,445:13704401,21825537:4755620 -k4605,445:18460021,21825537:4755620 -) -(4605,446:6630773,22690617:11829248,485622,102891 -h4605,445:6630773,22690617:0,0,0 -r4605,523:6630773,22690617:0,588513,102891 -g4605,445:7941493,22690617 -g4605,445:7941493,22690617 -g4605,445:11275964,22690617 -k4605,446:16227209,22690617:2232812 -k4605,446:18460021,22690617:2232812 -) -(4605,447:6630773,23555697:11829248,513147,134348 -h4605,446:6630773,23555697:0,0,0 -r4605,523:6630773,23555697:0,647495,134348 -g4605,446:7941493,23555697 -g4605,446:7941493,23555697 -g4605,446:10249015,23555697 -k4605,447:15713735,23555697:2746287 -k4605,447:18460021,23555697:2746286 -) -(4605,448:6630773,24420777:11829248,513147,102891 -h4605,447:6630773,24420777:0,0,0 -r4605,523:6630773,24420777:0,616038,102891 -g4605,447:7941493,24420777 -g4605,447:7941493,24420777 -g4605,447:9088373,24420777 -g4605,447:12080746,24420777 -g4605,447:15371964,24420777 -g4605,447:17134227,24420777 -k4605,448:18384982,24420777:75039 -k4605,448:18460021,24420777:75039 -) -(4605,449:6630773,25285857:11829248,513147,102891 -h4605,448:6630773,25285857:0,0,0 -r4605,523:6630773,25285857:0,616038,102891 -g4605,448:7941493,25285857 -g4605,448:7941493,25285857 -g4605,448:9088373,25285857 -g4605,448:11432595,25285857 -g4605,448:13194858,25285857 -k4605,449:16415298,25285857:2044724 -k4605,449:18460021,25285857:2044723 -) -(4605,450:6630773,26150937:11829248,505283,134348 -h4605,449:6630773,26150937:0,0,0 -r4605,523:6630773,26150937:0,639631,134348 -g4605,449:7941493,26150937 -g4605,449:7941493,26150937 -g4605,449:11773383,26150937 -g4605,449:13959008,26150937 -k4605,450:18460021,26150937:3533702 -) -(4605,450:9252213,27016017:9207808,505283,134348 -g4605,449:13084103,27016017 -g4605,449:15096058,27016017 -k4605,450:17937044,27016017:522978 -k4605,450:18460021,27016017:522977 -) -(4605,451:6630773,27881097:11829248,505283,102891 -h4605,450:6630773,27881097:0,0,0 -r4605,523:6630773,27881097:0,608174,102891 -g4605,450:7941493,27881097 -g4605,450:7941493,27881097 -g4605,450:10127118,27881097 -g4605,450:11293658,27881097 -g4605,450:13305613,27881097 -k4605,451:17041821,27881097:1418200 -k4605,451:18460021,27881097:1418200 -) -(4605,452:6630773,28746177:11829248,513147,134348 -h4605,451:6630773,28746177:0,0,0 -r4605,523:6630773,28746177:0,647495,134348 -g4605,451:7941493,28746177 -g4605,451:7941493,28746177 -g4605,451:10480357,28746177 -g4605,451:11338878,28746177 -g4605,451:13936069,28746177 -k4605,452:16795734,28746177:1664288 -k4605,452:18460021,28746177:1664287 -) -(4605,453:6630773,29611257:11829248,505283,102891 -h4605,452:6630773,29611257:0,0,0 -r4605,523:6630773,29611257:0,608174,102891 -k4605,452:7941493,29611257:1310720 -k4605,452:7941493,29611257:0 -k4605,452:11551653,29611257:186559 -k4605,452:12705524,29611257:186560 -k4605,452:16142013,29611257:186559 -k4605,453:18460021,29611257:0 -k4605,453:18460021,29611257:0 -) -(4605,454:6630773,30476337:11829248,513147,126483 -h4605,453:6630773,30476337:0,0,0 -r4605,523:6630773,30476337:0,639630,126483 -g4605,453:7941493,30476337 -g4605,453:7941493,30476337 -g4605,453:12335026,30476337 -g4605,453:13501566,30476337 -k4605,453:18460021,30476337:2970748 -) -(4605,454:9252213,31341417:9207808,513147,7863 -k4605,454:15292994,31341417:3167027 -k4605,454:18460021,31341417:3167027 -) -(4605,455:6630773,32206497:11829248,505283,126483 -h4605,454:6630773,32206497:0,0,0 -r4605,523:6630773,32206497:0,631766,126483 -g4605,454:7941493,32206497 -g4605,454:7941493,32206497 -g4605,454:10895856,32206497 -g4605,454:14099911,32206497 -k4605,455:17629352,32206497:830669 -k4605,455:18460021,32206497:830669 -) -(4605,456:6630773,33071577:11829248,505283,134348 -h4605,455:6630773,33071577:0,0,0 -r4605,523:6630773,33071577:0,639631,134348 -g4605,455:7941493,33071577 -g4605,455:7941493,33071577 -g4605,455:11173728,33071577 -k4605,456:16166261,33071577:2293761 -k4605,456:18460021,33071577:2293760 -) -(4605,457:6630773,33936657:11829248,505283,102891 -h4605,456:6630773,33936657:0,0,0 -g4605,456:9781088,33936657 -g4605,456:11349364,33936657 -g4605,456:12917640,33936657 -g4605,456:14485916,33936657 -g4605,456:16054192,33936657 -k4605,456:18460021,33936657:1123290 -) -(4605,457:9252213,34801737:9207808,485622,11795 -k4605,457:14443975,34801737:4016046 -k4605,457:18460021,34801737:4016046 -) -(4605,458:6630773,35666817:11829248,505283,102891 -h4605,457:6630773,35666817:0,0,0 -g4605,457:10943696,35666817 -g4605,457:12113513,35666817 -g4605,457:13283330,35666817 -g4605,457:14453147,35666817 -g4605,457:16021423,35666817 -k4605,457:18460021,35666817:1156059 -) -(4605,458:9252213,36531897:9207808,485622,102891 -g4605,457:10800828,36531897 -g4605,457:12369104,36531897 -g4605,457:13937380,36531897 -k4605,458:16786559,36531897:1673463 -k4605,458:18460021,36531897:1673462 -) -(4605,459:6630773,37396977:11829248,505283,126483 -h4605,458:6568514,37396977:0,0,0 -g4605,458:10571452,37396977 -k4605,459:15113425,37396977:3346596 -k4605,459:18460021,37396977:3346596 -) -(4605,460:6630773,38262057:11829248,505283,134348 -h4605,459:6630773,38262057:0,0,0 -g4605,459:12433986,38262057 -g4605,459:15022002,38262057 -k4605,460:18100228,38262057:359793 -k4605,460:18460021,38262057:359793 -) -(4605,461:6630773,39127137:11829248,513147,126483 -h4605,460:6630773,39127137:0,0,0 -k4605,460:10674344,39127137:182845 -k4605,460:13411782,39127137:182845 -k4605,460:14253920,39127137:182846 -k4605,460:17264644,39127137:182845 -k4605,461:18460021,39127137:0 -k4605,461:18460021,39127137:0 -) -(4605,462:6630773,39992217:11829248,505283,102891 -h4605,461:6630773,39992217:0,0,0 -g4605,461:10690728,39992217 -g4605,461:13917065,39992217 -k4605,462:17537929,39992217:922092 -k4605,462:18460021,39992217:922092 -) -(4605,466:6630773,41381369:11829248,505283,7863 -h4605,465:6630773,41381369:0,0,0 -g4605,465:8988758,41381369 -k4605,466:14878479,41381369:3581543 -k4605,466:18460021,41381369:3581542 -) -(4605,467:6630773,42246449:11829248,505283,134348 -h4605,466:6630773,42246449:0,0,0 -r4605,523:6630773,42246449:0,639631,134348 -g4605,466:7941493,42246449 -g4605,466:7941493,42246449 -g4605,466:10948284,42246449 -g4605,466:12715134,42246449 -k4605,467:16185266,42246449:2274755 -k4605,467:18460021,42246449:2274755 -) -(4605,468:6630773,43111529:11829248,505283,134348 -h4605,467:6630773,43111529:0,0,0 -g4605,467:8898318,43111529 -g4605,467:10288992,43111529 -g4605,467:13131288,43111529 -k4605,468:16393343,43111529:2066678 -k4605,468:18460021,43111529:2066678 -) -(4605,469:6630773,43976609:11829248,485622,126483 -h4605,468:6630773,43976609:0,0,0 -g4605,468:10859811,43976609 -k4605,469:15257605,43976609:3202417 -k4605,469:18460021,43976609:3202416 -) -(4605,470:6630773,44841689:11829248,485622,102891 -h4605,469:6630773,44841689:0,0,0 -g4605,469:8658456,44841689 -k4605,470:14156927,44841689:4303094 -k4605,470:18460021,44841689:4303094 -) -(4605,471:6630773,45706769:11829248,513147,102891 -h4605,470:6568514,45706769:0,0,0 -g4605,470:9165705,45706769 -g4605,470:10733981,45706769 -g4605,470:12302257,45706769 -k4605,471:15968997,45706769:2491024 -k4605,471:18460021,45706769:2491024 -) -] -k4605,523:19606901,45706769:1146880 -r4605,523:19606901,45706769:0,40234515,126483 -k4605,523:20753781,45706769:1146880 -[4605,523:20753781,45706769:11829248,40108032,126483 -(4605,472:20753781,6254097:11829248,505283,126483 -h4605,471:20753781,6254097:0,0,0 -g4605,471:23070478,6254097 -g4605,471:25986830,6254097 -g4605,471:28104953,6254097 -k4605,472:30941680,6254097:1641350 -k4605,472:32583029,6254097:1641349 -) -(4605,473:20753781,7120218:11829248,485622,102891 -h4605,472:20753781,7120218:0,0,0 -g4605,472:23516778,7120218 -g4605,472:26608111,7120218 -k4605,473:30183428,7120218:2399601 -k4605,473:32583029,7120218:2399601 -) -(4605,474:20753781,7986339:11829248,485622,126483 -h4605,473:20753781,7986339:0,0,0 -g4605,473:24374645,7986339 -k4605,474:28678067,7986339:3904963 -k4605,474:32583029,7986339:3904962 -) -(4605,475:20753781,8852460:11829248,505283,126483 -h4605,474:20753781,8852460:0,0,0 -g4605,474:23568552,8852460 -g4605,474:26774573,8852460 -k4605,475:29878031,8852460:2704999 -k4605,475:32583029,8852460:2704998 -) -(4605,476:20753781,9718582:11829248,505283,102891 -h4605,475:20691522,9718582:0,0,0 -g4605,475:23051473,9718582 -g4605,475:24619749,9718582 -k4605,476:29199078,9718582:3383952 -k4605,476:32583029,9718582:3383951 -) -(4605,477:20753781,10584703:11829248,505283,102891 -h4605,476:20753781,10584703:0,0,0 -g4605,476:22339096,10584703 -g4605,476:23505636,10584703 -g4605,476:26954795,10584703 -k4605,477:30927916,10584703:1655113 -k4605,477:32583029,10584703:1655113 -) -(4605,478:20753781,11450824:11829248,505283,102891 -h4605,477:20753781,11450824:0,0,0 -g4605,477:24202940,11450824 -g4605,477:26893848,11450824 -k4605,478:31097655,11450824:1485374 -k4605,478:32583029,11450824:1485374 -) -(4605,479:20753781,12316945:11829248,505283,102891 -h4605,478:20753781,12316945:0,0,0 -g4605,478:23309029,12316945 -g4605,478:27463356,12316945 -k4605,479:30620881,12316945:1962148 -k4605,479:32583029,12316945:1962148 -) -(4605,480:20753781,13183066:11829248,505283,126483 -h4605,479:20753781,13183066:0,0,0 -g4605,479:23811035,13183066 -k4605,480:28794721,13183066:3788309 -k4605,480:32583029,13183066:3788308 -) -(4605,481:20753781,14049187:11829248,505283,7863 -h4605,480:20753781,14049187:0,0,0 -k4605,481:28076446,14049187:4506583 -k4605,481:32583029,14049187:4506583 -) -(4605,482:20753781,14915308:11829248,505283,102891 -h4605,481:20753781,14915308:0,0,0 -r4605,523:20753781,14915308:0,608174,102891 -g4605,481:22064501,14915308 -g4605,481:22064501,14915308 -g4605,481:24620405,14915308 -k4605,482:28990346,14915308:3592684 -k4605,482:32583029,14915308:3592683 -) -(4605,483:20753781,15781430:11829248,513147,134348 -h4605,482:20753781,15781430:0,0,0 -r4605,523:20753781,15781430:0,647495,134348 -g4605,482:22064501,15781430 -g4605,482:22064501,15781430 -g4605,482:24695771,15781430 -g4605,482:26756878,15781430 -k4605,483:30058582,15781430:2524447 -k4605,483:32583029,15781430:2524447 -) -(4605,484:20753781,16647551:11829248,485622,134348 -h4605,483:20753781,16647551:0,0,0 -r4605,523:20753781,16647551:0,619970,134348 -g4605,483:22064501,16647551 -g4605,483:22064501,16647551 -g4605,483:24667591,16647551 -k4605,484:29013939,16647551:3569091 -k4605,484:32583029,16647551:3569090 -) -(4605,485:20753781,17513672:11829248,505283,102891 -h4605,484:20753781,17513672:0,0,0 -r4605,523:20753781,17513672:0,608174,102891 -g4605,484:22064501,17513672 -g4605,484:22064501,17513672 -g4605,484:24320250,17513672 -k4605,485:28840268,17513672:3742761 -k4605,485:32583029,17513672:3742761 -) -(4605,486:20753781,18379793:11829248,505283,102891 -h4605,485:20753781,18379793:0,0,0 -g4605,485:23769092,18379793 -g4605,485:25159766,18379793 -g4605,485:26867634,18379793 -g4605,485:30516678,18379793 -k4605,486:32510612,18379793:72418 -k4605,486:32583029,18379793:72417 -) -(4605,487:20753781,19245914:11829248,505283,102891 -h4605,486:20753781,19245914:0,0,0 -g4605,486:23573139,19245914 -g4605,486:25956683,19245914 -k4605,487:29658485,19245914:2924545 -k4605,487:32583029,19245914:2924544 -) -(4605,488:20753781,20112035:11829248,505283,134348 -h4605,487:20753781,20112035:0,0,0 -g4605,487:23746810,20112035 -g4605,487:26176229,20112035 -g4605,487:27566903,20112035 -g4605,487:29949136,20112035 -k4605,487:32583029,20112035:536086 -) -(4605,488:23375221,20977115:9207808,485622,0 -k4605,488:28367754,20977115:4215276 -k4605,488:32583029,20977115:4215275 -) -(4605,492:20753781,22515948:11829248,505283,134348 -h4605,491:20753781,22515948:0,0,0 -g4605,491:22912536,22515948 -g4605,491:25353752,22515948 -k4605,492:29566079,22515948:3016950 -k4605,492:32583029,22515948:3016950 -) -(4605,493:20753781,23382070:11829248,505283,134348 -h4605,492:20753781,23382070:0,0,0 -r4605,523:20753781,23382070:0,639631,134348 -g4605,492:22064501,23382070 -g4605,492:22064501,23382070 -g4605,492:22949892,23382070 -g4605,492:26123800,23382070 -g4605,492:28692811,23382070 -k4605,493:31235609,23382070:1347421 -k4605,493:32583029,23382070:1347420 -) -(4605,494:20753781,24248191:11829248,505283,134348 -h4605,493:20753781,24248191:0,0,0 -g4605,493:25796776,24248191 -g4605,493:30521921,24248191 -k4605,494:32150164,24248191:432866 -k4605,494:32583029,24248191:432865 -) -(4605,495:20753781,25114312:11829248,505283,134348 -h4605,494:20753781,25114312:0,0,0 -g4605,494:23416508,25114312 -k4605,495:28597457,25114312:3985572 -k4605,495:32583029,25114312:3985572 -) -(4605,496:20753781,25980433:11829248,505283,102891 -h4605,495:20753781,25980433:0,0,0 -r4605,523:20753781,25980433:0,608174,102891 -g4605,495:22064501,25980433 -g4605,495:22064501,25980433 -g4605,495:24219980,25980433 -k4605,496:28799964,25980433:3783066 -k4605,496:32583029,25980433:3783065 -) -(4605,497:20753781,26846554:11829248,485622,102891 -h4605,496:20753781,26846554:0,0,0 -g4605,496:23282815,26846554 -k4605,497:28520780,26846554:4062249 -k4605,497:32583029,26846554:4062249 -) -(4605,498:20753781,27712675:11829248,473825,134348 -h4605,497:20753781,27712675:0,0,0 -g4605,497:24006988,27712675 -k4605,498:29583119,27712675:2999911 -k4605,498:32583029,27712675:2999910 -) -(4605,499:20753781,28578796:11829248,485622,102891 -h4605,498:20753781,28578796:0,0,0 -r4605,523:20753781,28578796:0,588513,102891 -g4605,498:22064501,28578796 -g4605,498:22064501,28578796 -g4605,498:24190488,28578796 -g4605,498:25360305,28578796 -g4605,498:26530122,28578796 -g4605,498:27699939,28578796 -g4605,498:29268215,28578796 -k4605,499:31513480,28578796:1069549 -k4605,499:32583029,28578796:1069549 -) -(4605,500:20753781,29444918:11829248,505283,102891 -h4605,499:20753781,29444918:0,0,0 -r4605,523:20753781,29444918:0,608174,102891 -g4605,499:22064501,29444918 -g4605,499:22064501,29444918 -g4605,499:26377424,29444918 -g4605,499:27547241,29444918 -g4605,499:28717058,29444918 -g4605,499:29886875,29444918 -k4605,499:32583029,29444918:1413615 -) -(4605,500:23375221,30309998:9207808,485622,102891 -g4605,499:24923836,30309998 -k4605,500:29341291,30309998:3241739 -k4605,500:32583029,30309998:3241738 -) -(4605,501:20753781,31176119:11829248,485622,102891 -h4605,500:20753781,31176119:0,0,0 -r4605,523:20753781,31176119:0,588513,102891 -g4605,500:22064501,31176119 -g4605,500:22064501,31176119 -g4605,500:23134049,31176119 -g4605,500:23917203,31176119 -g4605,500:25087020,31176119 -g4605,500:26256837,31176119 -k4605,501:29818392,31176119:2764637 -k4605,501:32583029,31176119:2764637 -) -(4605,502:20753781,32042240:11829248,485622,102891 -h4605,501:20753781,32042240:0,0,0 -r4605,523:20753781,32042240:0,588513,102891 -g4605,501:22064501,32042240 -g4605,501:22064501,32042240 -g4605,501:23889022,32042240 -g4605,501:25058839,32042240 -g4605,501:26228656,32042240 -g4605,501:27398473,32042240 -k4605,502:30578609,32042240:2004420 -k4605,502:32583029,32042240:2004420 -) -(4605,503:20753781,32908361:11829248,426639,126483 -h4605,502:20753781,32908361:0,0,0 -k4605,503:28206863,32908361:4376167 -k4605,503:32583029,32908361:4376166 -) -(4605,504:20753781,33774482:11829248,485622,126483 -h4605,503:20753781,33774482:0,0,0 -r4605,523:20753781,33774482:0,612105,126483 -g4605,503:22064501,33774482 -g4605,503:22064501,33774482 -g4605,503:26191303,33774482 -k4605,504:30338094,33774482:2244936 -k4605,504:32583029,33774482:2244935 -) -(4605,505:20753781,34640603:11829248,513147,134348 -h4605,504:20753781,34640603:0,0,0 -r4605,523:20753781,34640603:0,647495,134348 -g4605,504:22064501,34640603 -g4605,504:22064501,34640603 -g4605,504:24867475,34640603 -g4605,504:26523569,34640603 -g4605,504:28091845,34640603 -k4605,505:30935126,34640603:1647904 -k4605,505:32583029,34640603:1647903 -) -(4605,506:20753781,35506724:11829248,485622,102891 -h4605,505:20753781,35506724:0,0,0 -r4605,523:20753781,35506724:0,588513,102891 -g4605,505:22064501,35506724 -g4605,505:22064501,35506724 -g4605,505:23371944,35506724 -k4605,506:28938245,35506724:3644785 -k4605,506:32583029,35506724:3644784 -) -(4605,507:20753781,36372846:11829248,485622,102891 -h4605,506:20753781,36372846:0,0,0 -g4605,506:21823329,36372846 -g4605,506:22606483,36372846 -g4605,506:23776300,36372846 -g4605,506:24946117,36372846 -g4605,506:26115934,36372846 -k4605,507:29937340,36372846:2645690 -k4605,507:32583029,36372846:2645689 -) -(4605,508:20753781,37238967:11829248,513147,102891 -h4605,507:20753781,37238967:0,0,0 -g4605,507:23864119,37238967 -g4605,507:25030659,37238967 -g4605,507:28506033,37238967 -k4605,508:31900144,37238967:682886 -k4605,508:32583029,37238967:682885 -) -(4605,512:20753781,38777800:11829248,505283,134348 -h4605,511:20753781,38777800:0,0,0 -k4605,512:28123632,38777800:4459397 -k4605,512:32583029,38777800:4459397 -) -(4605,513:20753781,39643921:11829248,505283,126483 -h4605,512:20753781,39643921:0,0,0 -r4605,523:20753781,39643921:0,631766,126483 -g4605,512:22064501,39643921 -g4605,512:22064501,39643921 -g4605,512:25373413,39643921 -g4605,512:26543230,39643921 -g4605,512:28111506,39643921 -k4605,513:30944956,39643921:1638073 -k4605,513:32583029,39643921:1638073 -) -(4605,514:20753781,40510042:11829248,505283,102891 -h4605,513:20753781,40510042:0,0,0 -r4605,523:20753781,40510042:0,608174,102891 -g4605,513:22064501,40510042 -g4605,513:22064501,40510042 -g4605,513:24324837,40510042 -k4605,514:29041791,40510042:3541238 -k4605,514:32583029,40510042:3541238 -) -(4605,515:20753781,41376163:11829248,505283,134348 -h4605,514:20753781,41376163:0,0,0 -r4605,523:20753781,41376163:0,639631,134348 -g4605,514:22064501,41376163 -g4605,514:22064501,41376163 -g4605,514:25990762,41376163 -k4605,515:29884584,41376163:2698445 -k4605,515:32583029,41376163:2698445 -) -(4605,516:20753781,42242284:11829248,505283,102891 -h4605,515:20753781,42242284:0,0,0 -r4605,523:20753781,42242284:0,608174,102891 -g4605,515:22064501,42242284 -g4605,515:22064501,42242284 -g4605,515:26178195,42242284 -k4605,516:29978301,42242284:2604729 -k4605,516:32583029,42242284:2604728 -) -(4605,517:20753781,43108406:11829248,505283,102891 -h4605,516:20753781,43108406:0,0,0 -r4605,523:20753781,43108406:0,608174,102891 -g4605,516:22064501,43108406 -g4605,516:22064501,43108406 -g4605,516:24949395,43108406 -k4605,517:29354070,43108406:3228959 -k4605,517:32583029,43108406:3228959 -) -(4605,518:20753781,43974527:11829248,505283,102891 -h4605,517:20753781,43974527:0,0,0 -r4605,523:20753781,43974527:0,608174,102891 -g4605,517:22064501,43974527 -g4605,517:22064501,43974527 -g4605,517:26014355,43974527 -g4605,517:27582631,43974527 -g4605,517:29150907,43974527 -k4605,518:31454826,43974527:1128203 -k4605,518:32583029,43974527:1128203 -) -(4605,519:20753781,44840648:11829248,505283,102891 -h4605,518:20753781,44840648:0,0,0 -r4605,523:20753781,44840648:0,608174,102891 -g4605,518:22064501,44840648 -g4605,518:22064501,44840648 -g4605,518:25510383,44840648 -g4605,518:27078659,44840648 -g4605,518:28646935,44840648 -g4605,518:30215211,44840648 -k4605,519:31986978,44840648:596051 -k4605,519:32583029,44840648:596051 -) -(4605,520:20753781,45706769:11829248,505283,126483 -h4605,519:20753781,45706769:0,0,0 -r4605,523:20753781,45706769:0,631766,126483 -g4605,519:22064501,45706769 -g4605,519:22064501,45706769 -g4605,519:24889757,45706769 -g4605,519:26458033,45706769 -g4605,519:28026309,45706769 -k4605,520:30902358,45706769:1680672 -k4605,520:32583029,45706769:1680671 -) -] -(4605,523:32583029,45706769:0,355205,126483 -h4605,523:32583029,45706769:420741,355205,126483 -k4605,523:32583029,45706769:-420741 -) -) -] -(4605,523:32583029,45706769:0,0,0 -g4605,523:32583029,45706769 -) -) -] -(4605,523:6630773,47279633:25952256,0,0 -h4605,523:6630773,47279633:25952256,0,0 -) -] -(4605,523:4262630,4025873:0,0,0 -[4605,523:-473656,4025873:0,0,0 -(4605,523:-473656,-710413:0,0,0 -(4605,523:-473656,-710413:0,0,0 -g4605,523:-473656,-710413 -) -g4605,523:-473656,-710413 -) -] -) -] -!26535 -}439 +(4609,431:9252213,7119177:9207808,485622,11795 +k4609,431:15205503,7119177:3254518 +k4609,431:18460021,7119177:3254518 +) +(4609,432:6630773,7984257:11829248,505283,102891 +h4609,431:6630773,7984257:0,0,0 +g4609,431:9788297,7984257 +k4609,432:14721848,7984257:3738174 +k4609,432:18460021,7984257:3738173 +) +(4609,433:6630773,8849337:11829248,505283,126483 +h4609,432:6630773,8849337:0,0,0 +r4609,524:6630773,8849337:0,631766,126483 +g4609,432:7941493,8849337 +g4609,432:7941493,8849337 +g4609,432:8894386,8849337 +g4609,432:10648784,8849337 +g4609,432:13267602,8849337 +k4609,433:16461500,8849337:1998521 +k4609,433:18460021,8849337:1998521 +) +(4609,434:6630773,9714417:11829248,505283,126483 +h4609,433:6630773,9714417:0,0,0 +g4609,433:12340924,9714417 +g4609,433:15503691,9714417 +k4609,434:17569714,9714417:890307 +k4609,434:18460021,9714417:890307 +) +(4609,435:6630773,10579497:11829248,505283,102891 +h4609,434:6568514,10579497:0,0,0 +g4609,434:12713824,10579497 +k4609,435:16184611,10579497:2275410 +k4609,435:18460021,10579497:2275410 +) +(4609,436:6630773,11444577:11829248,485622,173670 +h4609,435:6630773,11444577:0,0,0 +(4609,435:6630773,11444577:1181614,473825,0 +) +(4609,435:8117325,11618247:355205,473825,0 +) +g4609,435:9173764,11444577 +k4609,436:14404751,11444577:4055271 +k4609,436:18460021,11444577:4055270 +) +(4609,437:6630773,12309657:11829248,505283,102891 +h4609,436:6568514,12309657:0,0,0 +g4609,436:10131706,12309657 +k4609,437:14893552,12309657:3566469 +k4609,437:18460021,12309657:3566469 +) +(4609,438:6630773,13174737:11829248,513147,102891 +h4609,437:6630773,13174737:0,0,0 +g4609,437:8817709,13174737 +g4609,437:12064362,13174737 +k4609,438:16611578,13174737:1848444 +k4609,438:18460021,13174737:1848443 +) +(4609,439:6630773,14039817:11829248,513147,7863 +h4609,438:6630773,14039817:0,0,0 +r4609,524:6630773,14039817:0,521010,7863 +g4609,438:7941493,14039817 +g4609,438:7941493,14039817 +g4609,438:11617407,14039817 +g4609,438:13384257,14039817 +k4609,438:18460021,14039817:2115503 +) +(4609,439:9252213,14904897:9207808,485622,134348 +g4609,438:11821224,14904897 +k4609,439:15728481,14904897:2731541 +k4609,439:18460021,14904897:2731540 +) +(4609,440:6630773,15769977:11829248,505283,7863 +h4609,439:6630773,15769977:0,0,0 +r4609,524:6630773,15769977:0,513146,7863 +g4609,439:7941493,15769977 +g4609,439:7941493,15769977 +g4609,439:11617407,15769977 +g4609,439:13084102,15769977 +k4609,439:18460021,15769977:2415658 +) +(4609,440:9252213,16635057:9207808,485622,134348 +g4609,439:11821224,16635057 +k4609,440:15728481,16635057:2731541 +k4609,440:18460021,16635057:2731540 +) +(4609,441:6630773,17500137:11829248,505283,126483 +h4609,440:6630773,17500137:0,0,0 +r4609,524:6630773,17500137:0,631766,126483 +g4609,440:7941493,17500137 +g4609,440:7941493,17500137 +g4609,440:12570300,17500137 +k4609,441:16112849,17500137:2347172 +k4609,441:18460021,17500137:2347172 +) +(4609,442:6630773,18365217:11829248,505283,134348 +h4609,441:6630773,18365217:0,0,0 +r4609,524:6630773,18365217:0,639631,134348 +g4609,441:7941493,18365217 +g4609,441:7941493,18365217 +g4609,441:11173728,18365217 +k4609,442:15404733,18365217:3055289 +k4609,442:18460021,18365217:3055288 +) +(4609,443:6630773,19230297:11829248,505283,7863 +h4609,442:6630773,19230297:0,0,0 +k4609,443:13704401,19230297:4755620 +k4609,443:18460021,19230297:4755620 +) +(4609,444:6630773,20095377:11829248,485622,102891 +h4609,443:6630773,20095377:0,0,0 +r4609,524:6630773,20095377:0,588513,102891 +g4609,443:7941493,20095377 +g4609,443:7941493,20095377 +g4609,443:11275964,20095377 +k4609,444:16227209,20095377:2232812 +k4609,444:18460021,20095377:2232812 +) +(4609,445:6630773,20960457:11829248,513147,134348 +h4609,444:6630773,20960457:0,0,0 +r4609,524:6630773,20960457:0,647495,134348 +g4609,444:7941493,20960457 +g4609,444:7941493,20960457 +g4609,444:10249015,20960457 +k4609,445:15713735,20960457:2746287 +k4609,445:18460021,20960457:2746286 +) +(4609,446:6630773,21825537:11829248,513147,102891 +h4609,445:6630773,21825537:0,0,0 +r4609,524:6630773,21825537:0,616038,102891 +g4609,445:7941493,21825537 +g4609,445:7941493,21825537 +g4609,445:9088373,21825537 +g4609,445:12080746,21825537 +g4609,445:15371964,21825537 +g4609,445:17134227,21825537 +k4609,446:18384982,21825537:75039 +k4609,446:18460021,21825537:75039 +) +(4609,447:6630773,22690617:11829248,513147,102891 +h4609,446:6630773,22690617:0,0,0 +r4609,524:6630773,22690617:0,616038,102891 +g4609,446:7941493,22690617 +g4609,446:7941493,22690617 +g4609,446:9088373,22690617 +g4609,446:11432595,22690617 +g4609,446:13194858,22690617 +k4609,447:16415298,22690617:2044724 +k4609,447:18460021,22690617:2044723 +) +(4609,448:6630773,23555697:11829248,505283,134348 +h4609,447:6630773,23555697:0,0,0 +r4609,524:6630773,23555697:0,639631,134348 +g4609,447:7941493,23555697 +g4609,447:7941493,23555697 +g4609,447:11773383,23555697 +g4609,447:13959008,23555697 +k4609,448:18460021,23555697:3533702 +) +(4609,448:9252213,24420777:9207808,505283,134348 +g4609,447:13084103,24420777 +g4609,447:15096058,24420777 +k4609,448:17937044,24420777:522978 +k4609,448:18460021,24420777:522977 +) +(4609,449:6630773,25285857:11829248,505283,102891 +h4609,448:6630773,25285857:0,0,0 +r4609,524:6630773,25285857:0,608174,102891 +g4609,448:7941493,25285857 +g4609,448:7941493,25285857 +g4609,448:10127118,25285857 +g4609,448:11293658,25285857 +g4609,448:13305613,25285857 +k4609,449:17041821,25285857:1418200 +k4609,449:18460021,25285857:1418200 +) +(4609,450:6630773,26150937:11829248,513147,134348 +h4609,449:6630773,26150937:0,0,0 +r4609,524:6630773,26150937:0,647495,134348 +g4609,449:7941493,26150937 +g4609,449:7941493,26150937 +g4609,449:10480357,26150937 +g4609,449:11338878,26150937 +g4609,449:13936069,26150937 +k4609,450:16795734,26150937:1664288 +k4609,450:18460021,26150937:1664287 +) +(4609,451:6630773,27016017:11829248,505283,102891 +h4609,450:6630773,27016017:0,0,0 +r4609,524:6630773,27016017:0,608174,102891 +k4609,450:7941493,27016017:1310720 +k4609,450:7941493,27016017:0 +k4609,450:11551653,27016017:186559 +k4609,450:12705524,27016017:186560 +k4609,450:16142013,27016017:186559 +k4609,451:18460021,27016017:0 +k4609,451:18460021,27016017:0 +) +(4609,452:6630773,27881097:11829248,513147,126483 +h4609,451:6630773,27881097:0,0,0 +r4609,524:6630773,27881097:0,639630,126483 +g4609,451:7941493,27881097 +g4609,451:7941493,27881097 +g4609,451:12335026,27881097 +g4609,451:13501566,27881097 +k4609,451:18460021,27881097:2970748 +) +(4609,452:9252213,28746177:9207808,513147,7863 +k4609,452:15292994,28746177:3167027 +k4609,452:18460021,28746177:3167027 +) +(4609,453:6630773,29611257:11829248,505283,126483 +h4609,452:6630773,29611257:0,0,0 +r4609,524:6630773,29611257:0,631766,126483 +g4609,452:7941493,29611257 +g4609,452:7941493,29611257 +g4609,452:10895856,29611257 +g4609,452:14099911,29611257 +k4609,453:17629352,29611257:830669 +k4609,453:18460021,29611257:830669 +) +(4609,454:6630773,30476337:11829248,505283,134348 +h4609,453:6630773,30476337:0,0,0 +r4609,524:6630773,30476337:0,639631,134348 +g4609,453:7941493,30476337 +g4609,453:7941493,30476337 +g4609,453:11173728,30476337 +k4609,454:16166261,30476337:2293761 +k4609,454:18460021,30476337:2293760 +) +(4609,455:6630773,31341417:11829248,505283,102891 +h4609,454:6630773,31341417:0,0,0 +g4609,454:9781088,31341417 +g4609,454:11349364,31341417 +g4609,454:12917640,31341417 +g4609,454:14485916,31341417 +g4609,454:16054192,31341417 +k4609,454:18460021,31341417:1123290 +) +(4609,455:9252213,32206497:9207808,485622,11795 +k4609,455:14443975,32206497:4016046 +k4609,455:18460021,32206497:4016046 +) +(4609,456:6630773,33071577:11829248,505283,102891 +h4609,455:6630773,33071577:0,0,0 +g4609,455:10943696,33071577 +g4609,455:12113513,33071577 +g4609,455:13283330,33071577 +g4609,455:14453147,33071577 +g4609,455:16021423,33071577 +k4609,455:18460021,33071577:1156059 +) +(4609,456:9252213,33936657:9207808,485622,102891 +g4609,455:10800828,33936657 +g4609,455:12369104,33936657 +g4609,455:13937380,33936657 +k4609,456:16786559,33936657:1673463 +k4609,456:18460021,33936657:1673462 +) +(4609,457:6630773,34801737:11829248,505283,126483 +h4609,456:6568514,34801737:0,0,0 +g4609,456:10571452,34801737 +k4609,457:15113425,34801737:3346596 +k4609,457:18460021,34801737:3346596 +) +(4609,458:6630773,35666817:11829248,505283,134348 +h4609,457:6630773,35666817:0,0,0 +g4609,457:12433986,35666817 +g4609,457:15022002,35666817 +k4609,458:18100228,35666817:359793 +k4609,458:18460021,35666817:359793 +) +(4609,459:6630773,36531897:11829248,513147,126483 +h4609,458:6630773,36531897:0,0,0 +k4609,458:10674344,36531897:182845 +k4609,458:13411782,36531897:182845 +k4609,458:14253920,36531897:182846 +k4609,458:17264644,36531897:182845 +k4609,459:18460021,36531897:0 +k4609,459:18460021,36531897:0 +) +(4609,460:6630773,37396977:11829248,505283,102891 +h4609,459:6630773,37396977:0,0,0 +g4609,459:10690728,37396977 +g4609,459:13917065,37396977 +k4609,460:17537929,37396977:922092 +k4609,460:18460021,37396977:922092 +) +(4609,464:6630773,38786129:11829248,505283,7863 +h4609,463:6630773,38786129:0,0,0 +g4609,463:8988758,38786129 +k4609,464:14878479,38786129:3581543 +k4609,464:18460021,38786129:3581542 +) +(4609,465:6630773,39651209:11829248,505283,134348 +h4609,464:6630773,39651209:0,0,0 +r4609,524:6630773,39651209:0,639631,134348 +g4609,464:7941493,39651209 +g4609,464:7941493,39651209 +g4609,464:10948284,39651209 +g4609,464:12715134,39651209 +k4609,465:16185266,39651209:2274755 +k4609,465:18460021,39651209:2274755 +) +(4609,466:6630773,40516289:11829248,505283,134348 +h4609,465:6630773,40516289:0,0,0 +g4609,465:8898318,40516289 +g4609,465:10288992,40516289 +g4609,465:13131288,40516289 +k4609,466:16393343,40516289:2066678 +k4609,466:18460021,40516289:2066678 +) +(4609,467:6630773,41381369:11829248,485622,126483 +h4609,466:6630773,41381369:0,0,0 +g4609,466:10859811,41381369 +k4609,467:15257605,41381369:3202417 +k4609,467:18460021,41381369:3202416 +) +(4609,468:6630773,42246449:11829248,485622,102891 +h4609,467:6630773,42246449:0,0,0 +g4609,467:8658456,42246449 +k4609,468:14156927,42246449:4303094 +k4609,468:18460021,42246449:4303094 +) +(4609,469:6630773,43111529:11829248,513147,102891 +h4609,468:6568514,43111529:0,0,0 +g4609,468:9165705,43111529 +g4609,468:10733981,43111529 +g4609,468:12302257,43111529 +k4609,469:15968997,43111529:2491024 +k4609,469:18460021,43111529:2491024 +) +(4609,470:6630773,43976609:11829248,505283,126483 +h4609,469:6630773,43976609:0,0,0 +g4609,469:8947470,43976609 +g4609,469:11863822,43976609 +g4609,469:13981945,43976609 +k4609,470:16818672,43976609:1641350 +k4609,470:18460021,43976609:1641349 +) +(4609,471:6630773,44841689:11829248,485622,102891 +h4609,470:6630773,44841689:0,0,0 +g4609,470:9393770,44841689 +g4609,470:12485103,44841689 +k4609,471:16060420,44841689:2399601 +k4609,471:18460021,44841689:2399601 +) +(4609,472:6630773,45706769:11829248,485622,126483 +h4609,471:6630773,45706769:0,0,0 +g4609,471:10251637,45706769 +k4609,472:14555059,45706769:3904963 +k4609,472:18460021,45706769:3904962 +) +] +k4609,524:19606901,45706769:1146880 +r4609,524:19606901,45706769:0,40234515,126483 +k4609,524:20753781,45706769:1146880 +[4609,524:20753781,45706769:11829248,40108032,126483 +(4609,473:20753781,6254097:11829248,505283,126483 +h4609,472:20753781,6254097:0,0,0 +g4609,472:23568552,6254097 +g4609,472:26774573,6254097 +k4609,473:29878031,6254097:2704999 +k4609,473:32583029,6254097:2704998 +) +(4609,474:20753781,7120232:11829248,505283,102891 +h4609,473:20691522,7120232:0,0,0 +g4609,473:23051473,7120232 +g4609,473:24619749,7120232 +k4609,474:29199078,7120232:3383952 +k4609,474:32583029,7120232:3383951 +) +(4609,475:20753781,7986367:11829248,505283,102891 +h4609,474:20753781,7986367:0,0,0 +g4609,474:22339096,7986367 +g4609,474:23505636,7986367 +g4609,474:26954795,7986367 +k4609,475:30927916,7986367:1655113 +k4609,475:32583029,7986367:1655113 +) +(4609,476:20753781,8852502:11829248,505283,102891 +h4609,475:20753781,8852502:0,0,0 +g4609,475:24202940,8852502 +g4609,475:26893848,8852502 +k4609,476:31097655,8852502:1485374 +k4609,476:32583029,8852502:1485374 +) +(4609,477:20753781,9718638:11829248,505283,102891 +h4609,476:20753781,9718638:0,0,0 +g4609,476:23309029,9718638 +g4609,476:27463356,9718638 +k4609,477:30620881,9718638:1962148 +k4609,477:32583029,9718638:1962148 +) +(4609,478:20753781,10584773:11829248,505283,126483 +h4609,477:20753781,10584773:0,0,0 +g4609,477:23811035,10584773 +k4609,478:28794721,10584773:3788309 +k4609,478:32583029,10584773:3788308 +) +(4609,479:20753781,11450908:11829248,505283,7863 +h4609,478:20753781,11450908:0,0,0 +k4609,479:28076446,11450908:4506583 +k4609,479:32583029,11450908:4506583 +) +(4609,480:20753781,12317043:11829248,505283,102891 +h4609,479:20753781,12317043:0,0,0 +r4609,524:20753781,12317043:0,608174,102891 +g4609,479:22064501,12317043 +g4609,479:22064501,12317043 +g4609,479:24620405,12317043 +k4609,480:28990346,12317043:3592684 +k4609,480:32583029,12317043:3592683 +) +(4609,481:20753781,13183178:11829248,513147,134348 +h4609,480:20753781,13183178:0,0,0 +r4609,524:20753781,13183178:0,647495,134348 +g4609,480:22064501,13183178 +g4609,480:22064501,13183178 +g4609,480:24695771,13183178 +g4609,480:26756878,13183178 +k4609,481:30058582,13183178:2524447 +k4609,481:32583029,13183178:2524447 +) +(4609,482:20753781,14049313:11829248,485622,134348 +h4609,481:20753781,14049313:0,0,0 +r4609,524:20753781,14049313:0,619970,134348 +g4609,481:22064501,14049313 +g4609,481:22064501,14049313 +g4609,481:24667591,14049313 +k4609,482:29013939,14049313:3569091 +k4609,482:32583029,14049313:3569090 +) +(4609,483:20753781,14915448:11829248,505283,102891 +h4609,482:20753781,14915448:0,0,0 +r4609,524:20753781,14915448:0,608174,102891 +g4609,482:22064501,14915448 +g4609,482:22064501,14915448 +g4609,482:24320250,14915448 +k4609,483:28840268,14915448:3742761 +k4609,483:32583029,14915448:3742761 +) +(4609,484:20753781,15781584:11829248,505283,102891 +h4609,483:20753781,15781584:0,0,0 +g4609,483:23769092,15781584 +g4609,483:25159766,15781584 +g4609,483:26867634,15781584 +g4609,483:30516678,15781584 +k4609,484:32510612,15781584:72418 +k4609,484:32583029,15781584:72417 +) +(4609,485:20753781,16647719:11829248,505283,102891 +h4609,484:20753781,16647719:0,0,0 +g4609,484:23573139,16647719 +g4609,484:25956683,16647719 +k4609,485:29658485,16647719:2924545 +k4609,485:32583029,16647719:2924544 +) +(4609,486:20753781,17513854:11829248,505283,134348 +h4609,485:20753781,17513854:0,0,0 +g4609,485:23746810,17513854 +g4609,485:26176229,17513854 +g4609,485:27566903,17513854 +g4609,485:29949136,17513854 +k4609,485:32583029,17513854:536086 +) +(4609,486:23375221,18378934:9207808,485622,0 +k4609,486:28367754,18378934:4215276 +k4609,486:32583029,18378934:4215275 +) +(4609,490:20753781,19918015:11829248,505283,134348 +h4609,489:20753781,19918015:0,0,0 +g4609,489:22912536,19918015 +g4609,489:25353752,19918015 +k4609,490:29566079,19918015:3016950 +k4609,490:32583029,19918015:3016950 +) +(4609,491:20753781,20784150:11829248,505283,134348 +h4609,490:20753781,20784150:0,0,0 +r4609,524:20753781,20784150:0,639631,134348 +g4609,490:22064501,20784150 +g4609,490:22064501,20784150 +g4609,490:22949892,20784150 +g4609,490:26123800,20784150 +g4609,490:28692811,20784150 +k4609,491:31235609,20784150:1347421 +k4609,491:32583029,20784150:1347420 +) +(4609,492:20753781,21650285:11829248,505283,134348 +h4609,491:20753781,21650285:0,0,0 +g4609,491:25796776,21650285 +g4609,491:30521921,21650285 +k4609,492:32150164,21650285:432866 +k4609,492:32583029,21650285:432865 +) +(4609,493:20753781,22516420:11829248,505283,134348 +h4609,492:20753781,22516420:0,0,0 +g4609,492:23416508,22516420 +k4609,493:28597457,22516420:3985572 +k4609,493:32583029,22516420:3985572 +) +(4609,494:20753781,23382555:11829248,505283,102891 +h4609,493:20753781,23382555:0,0,0 +r4609,524:20753781,23382555:0,608174,102891 +g4609,493:22064501,23382555 +g4609,493:22064501,23382555 +g4609,493:24219980,23382555 +k4609,494:28799964,23382555:3783066 +k4609,494:32583029,23382555:3783065 +) +(4609,495:20753781,24248690:11829248,485622,102891 +h4609,494:20753781,24248690:0,0,0 +g4609,494:23282815,24248690 +k4609,495:28520780,24248690:4062249 +k4609,495:32583029,24248690:4062249 +) +(4609,496:20753781,25114825:11829248,473825,134348 +h4609,495:20753781,25114825:0,0,0 +g4609,495:24006988,25114825 +k4609,496:29583119,25114825:2999911 +k4609,496:32583029,25114825:2999910 +) +(4609,497:20753781,25980961:11829248,485622,102891 +h4609,496:20753781,25980961:0,0,0 +r4609,524:20753781,25980961:0,588513,102891 +g4609,496:22064501,25980961 +g4609,496:22064501,25980961 +g4609,496:24190488,25980961 +g4609,496:25360305,25980961 +g4609,496:26530122,25980961 +g4609,496:27699939,25980961 +g4609,496:29268215,25980961 +k4609,497:31513480,25980961:1069549 +k4609,497:32583029,25980961:1069549 +) +(4609,498:20753781,26847096:11829248,505283,102891 +h4609,497:20753781,26847096:0,0,0 +r4609,524:20753781,26847096:0,608174,102891 +g4609,497:22064501,26847096 +g4609,497:22064501,26847096 +g4609,497:26377424,26847096 +g4609,497:27547241,26847096 +g4609,497:28717058,26847096 +g4609,497:29886875,26847096 +k4609,497:32583029,26847096:1413615 +) +(4609,498:23375221,27712176:9207808,485622,102891 +g4609,497:24923836,27712176 +k4609,498:29341291,27712176:3241739 +k4609,498:32583029,27712176:3241738 +) +(4609,499:20753781,28578311:11829248,485622,102891 +h4609,498:20753781,28578311:0,0,0 +r4609,524:20753781,28578311:0,588513,102891 +g4609,498:22064501,28578311 +g4609,498:22064501,28578311 +g4609,498:23134049,28578311 +g4609,498:23917203,28578311 +g4609,498:25087020,28578311 +g4609,498:26256837,28578311 +k4609,499:29818392,28578311:2764637 +k4609,499:32583029,28578311:2764637 +) +(4609,500:20753781,29444446:11829248,485622,102891 +h4609,499:20753781,29444446:0,0,0 +r4609,524:20753781,29444446:0,588513,102891 +g4609,499:22064501,29444446 +g4609,499:22064501,29444446 +g4609,499:23889022,29444446 +g4609,499:25058839,29444446 +g4609,499:26228656,29444446 +g4609,499:27398473,29444446 +k4609,500:30578609,29444446:2004420 +k4609,500:32583029,29444446:2004420 +) +(4609,501:20753781,30310581:11829248,426639,126483 +h4609,500:20753781,30310581:0,0,0 +k4609,501:28206863,30310581:4376167 +k4609,501:32583029,30310581:4376166 +) +(4609,502:20753781,31176716:11829248,485622,126483 +h4609,501:20753781,31176716:0,0,0 +r4609,524:20753781,31176716:0,612105,126483 +g4609,501:22064501,31176716 +g4609,501:22064501,31176716 +g4609,501:26191303,31176716 +k4609,502:30338094,31176716:2244936 +k4609,502:32583029,31176716:2244935 +) +(4609,503:20753781,32042851:11829248,513147,134348 +h4609,502:20753781,32042851:0,0,0 +r4609,524:20753781,32042851:0,647495,134348 +g4609,502:22064501,32042851 +g4609,502:22064501,32042851 +g4609,502:24867475,32042851 +g4609,502:26523569,32042851 +g4609,502:28091845,32042851 +k4609,503:30935126,32042851:1647904 +k4609,503:32583029,32042851:1647903 +) +(4609,504:20753781,32908987:11829248,485622,102891 +h4609,503:20753781,32908987:0,0,0 +r4609,524:20753781,32908987:0,588513,102891 +g4609,503:22064501,32908987 +g4609,503:22064501,32908987 +g4609,503:23371944,32908987 +k4609,504:28938245,32908987:3644785 +k4609,504:32583029,32908987:3644784 +) +(4609,505:20753781,33775122:11829248,485622,102891 +h4609,504:20753781,33775122:0,0,0 +g4609,504:21823329,33775122 +g4609,504:22606483,33775122 +g4609,504:23776300,33775122 +g4609,504:24946117,33775122 +g4609,504:26115934,33775122 +k4609,505:29937340,33775122:2645690 +k4609,505:32583029,33775122:2645689 +) +(4609,506:20753781,34641257:11829248,513147,102891 +h4609,505:20753781,34641257:0,0,0 +g4609,505:23864119,34641257 +g4609,505:25030659,34641257 +g4609,505:28506033,34641257 +k4609,506:31900144,34641257:682886 +k4609,506:32583029,34641257:682885 +) +(4609,510:20753781,36180338:11829248,505283,134348 +h4609,509:20753781,36180338:0,0,0 +k4609,510:28123632,36180338:4459397 +k4609,510:32583029,36180338:4459397 +) +(4609,511:20753781,37046473:11829248,505283,126483 +h4609,510:20753781,37046473:0,0,0 +r4609,524:20753781,37046473:0,631766,126483 +g4609,510:22064501,37046473 +g4609,510:22064501,37046473 +g4609,510:25373413,37046473 +g4609,510:26543230,37046473 +g4609,510:28111506,37046473 +k4609,511:30944956,37046473:1638073 +k4609,511:32583029,37046473:1638073 +) +(4609,512:20753781,37912608:11829248,505283,102891 +h4609,511:20753781,37912608:0,0,0 +r4609,524:20753781,37912608:0,608174,102891 +g4609,511:22064501,37912608 +g4609,511:22064501,37912608 +g4609,511:24324837,37912608 +k4609,512:29041791,37912608:3541238 +k4609,512:32583029,37912608:3541238 +) +(4609,513:20753781,38778743:11829248,505283,134348 +h4609,512:20753781,38778743:0,0,0 +r4609,524:20753781,38778743:0,639631,134348 +g4609,512:22064501,38778743 +g4609,512:22064501,38778743 +g4609,512:25990762,38778743 +k4609,513:29884584,38778743:2698445 +k4609,513:32583029,38778743:2698445 +) +(4609,514:20753781,39644878:11829248,505283,102891 +h4609,513:20753781,39644878:0,0,0 +r4609,524:20753781,39644878:0,608174,102891 +g4609,513:22064501,39644878 +g4609,513:22064501,39644878 +g4609,513:26178195,39644878 +k4609,514:29978301,39644878:2604729 +k4609,514:32583029,39644878:2604728 +) +(4609,515:20753781,40511013:11829248,505283,102891 +h4609,514:20753781,40511013:0,0,0 +r4609,524:20753781,40511013:0,608174,102891 +g4609,514:22064501,40511013 +g4609,514:22064501,40511013 +g4609,514:24949395,40511013 +k4609,515:29354070,40511013:3228959 +k4609,515:32583029,40511013:3228959 +) +(4609,516:20753781,41377148:11829248,505283,102891 +h4609,515:20753781,41377148:0,0,0 +r4609,524:20753781,41377148:0,608174,102891 +g4609,515:22064501,41377148 +g4609,515:22064501,41377148 +g4609,515:26014355,41377148 +g4609,515:27582631,41377148 +g4609,515:29150907,41377148 +k4609,516:31454826,41377148:1128203 +k4609,516:32583029,41377148:1128203 +) +(4609,517:20753781,42243284:11829248,505283,102891 +h4609,516:20753781,42243284:0,0,0 +r4609,524:20753781,42243284:0,608174,102891 +g4609,516:22064501,42243284 +g4609,516:22064501,42243284 +g4609,516:25510383,42243284 +g4609,516:27078659,42243284 +g4609,516:28646935,42243284 +g4609,516:30215211,42243284 +k4609,517:31986978,42243284:596051 +k4609,517:32583029,42243284:596051 +) +(4609,518:20753781,43109419:11829248,505283,126483 +h4609,517:20753781,43109419:0,0,0 +r4609,524:20753781,43109419:0,631766,126483 +g4609,517:22064501,43109419 +g4609,517:22064501,43109419 +g4609,517:24889757,43109419 +g4609,517:26458033,43109419 +g4609,517:28026309,43109419 +k4609,518:30902358,43109419:1680672 +k4609,518:32583029,43109419:1680671 +) +(4609,520:20753781,43975554:11829248,505283,126483 +h4609,518:20753781,43975554:0,0,0 +r4609,524:20753781,43975554:0,631766,126483 +g4609,518:22064501,43975554 +g4609,518:22064501,43975554 +g4609,518:24476880,43975554 +g4609,518:27568213,43975554 +g4609,518:29136489,43975554 +k4609,518:32583029,43975554:2164001 +) +(4609,520:23375221,44840634:9207808,485622,102891 +g4609,518:26466554,44840634 +g4609,518:28034830,44840634 +g4609,518:29603106,44840634 +g4609,519:31171382,44840634 +k4609,520:32474894,44840634:108135 +k4609,520:32583029,44840634:108135 +) +(4609,521:20753781,45706769:11829248,505283,126483 +h4609,520:20753781,45706769:0,0,0 +r4609,524:20753781,45706769:0,631766,126483 +g4609,520:22064501,45706769 +g4609,520:22064501,45706769 +g4609,520:24721985,45706769 +k4609,521:29250196,45706769:3332834 +k4609,521:32583029,45706769:3332833 +) +] +(4609,524:32583029,45706769:0,355205,126483 +h4609,524:32583029,45706769:420741,355205,126483 +k4609,524:32583029,45706769:-420741 +) +) +] +(4609,524:32583029,45706769:0,0,0 +g4609,524:32583029,45706769 +) +) +] +(4609,524:6630773,47279633:25952256,0,0 +h4609,524:6630773,47279633:25952256,0,0 +) +] +(4609,524:4262630,4025873:0,0,0 +[4609,524:-473656,4025873:0,0,0 +(4609,524:-473656,-710413:0,0,0 +(4609,524:-473656,-710413:0,0,0 +g4609,524:-473656,-710413 +) +g4609,524:-473656,-710413 +) +] +) +] +!26649 +}440 !12 -{440 -[4605,607:4262630,47279633:28320399,43253760,0 -(4605,607:4262630,4025873:0,0,0 -[4605,607:-473656,4025873:0,0,0 -(4605,607:-473656,-710413:0,0,0 -(4605,607:-473656,-644877:0,0,0 -k4605,607:-473656,-644877:-65536 +{441 +[4609,608:4262630,47279633:28320399,43253760,0 +(4609,608:4262630,4025873:0,0,0 +[4609,608:-473656,4025873:0,0,0 +(4609,608:-473656,-710413:0,0,0 +(4609,608:-473656,-644877:0,0,0 +k4609,608:-473656,-644877:-65536 ) -(4605,607:-473656,4736287:0,0,0 -k4605,607:-473656,4736287:5209943 +(4609,608:-473656,4736287:0,0,0 +k4609,608:-473656,4736287:5209943 ) -g4605,607:-473656,-710413 +g4609,608:-473656,-710413 ) ] ) -[4605,607:6630773,47279633:25952256,43253760,0 -[4605,607:6630773,4812305:25952256,786432,0 -(4605,607:6630773,4812305:25952256,505283,11795 -(4605,607:6630773,4812305:25952256,505283,11795 -g4605,607:3078558,4812305 -[4605,607:3078558,4812305:0,0,0 -(4605,607:3078558,2439708:0,1703936,0 -k4605,607:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,607:2537886,2439708:1179648,16384,0 +[4609,608:6630773,47279633:25952256,43253760,0 +[4609,608:6630773,4812305:25952256,786432,0 +(4609,608:6630773,4812305:25952256,505283,11795 +(4609,608:6630773,4812305:25952256,505283,11795 +g4609,608:3078558,4812305 +[4609,608:3078558,4812305:0,0,0 +(4609,608:3078558,2439708:0,1703936,0 +k4609,608:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,608:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,607:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,608:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,607:3078558,4812305:0,0,0 -(4605,607:3078558,2439708:0,1703936,0 -g4605,607:29030814,2439708 -g4605,607:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,607:36151628,1915420:16384,1179648,0 +[4609,608:3078558,4812305:0,0,0 +(4609,608:3078558,2439708:0,1703936,0 +g4609,608:29030814,2439708 +g4609,608:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,608:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,607:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,608:37855564,2439708:1179648,16384,0 ) ) -k4605,607:3078556,2439708:-34777008 +k4609,608:3078556,2439708:-34777008 ) ] -[4605,607:3078558,4812305:0,0,0 -(4605,607:3078558,49800853:0,16384,2228224 -k4605,607:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,607:2537886,49800853:1179648,16384,0 +[4609,608:3078558,4812305:0,0,0 +(4609,608:3078558,49800853:0,16384,2228224 +k4609,608:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,608:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,607:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,608:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,607:3078558,4812305:0,0,0 -(4605,607:3078558,49800853:0,16384,2228224 -g4605,607:29030814,49800853 -g4605,607:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,607:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 -) -] -) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,607:37855564,49800853:1179648,16384,0 -) -) -k4605,607:3078556,49800853:-34777008 -) -] -g4605,607:6630773,4812305 -g4605,607:6630773,4812305 -g4605,607:9313817,4812305 -g4605,607:11211739,4812305 -k4605,607:31387651,4812305:20175912 -) -) -] -[4605,607:6630773,45706769:25952256,40108032,0 -(4605,607:6630773,45706769:25952256,40108032,0 -(4605,607:6630773,45706769:0,0,0 -g4605,607:6630773,45706769 -) -[4605,607:6630773,45706769:25952256,40108032,0 -(4605,607:6630773,45706769:25952256,40108032,126483 -[4605,607:6630773,45706769:11829248,40108032,126483 -(4605,522:6630773,6254097:11829248,505283,126483 -h4605,520:6630773,6254097:0,0,0 -r4605,607:6630773,6254097:0,631766,126483 -g4605,520:7941493,6254097 -g4605,520:7941493,6254097 -g4605,520:10353872,6254097 -g4605,520:13445205,6254097 -g4605,520:15013481,6254097 -k4605,520:18460021,6254097:2164001 -) -(4605,522:9252213,7119177:9207808,485622,102891 -g4605,520:12343546,7119177 -g4605,520:13911822,7119177 -g4605,520:15480098,7119177 -g4605,521:17048374,7119177 -k4605,522:18351886,7119177:108135 -k4605,522:18460021,7119177:108135 -) -(4605,523:6630773,7999230:11829248,505283,126483 -h4605,522:6630773,7999230:0,0,0 -r4605,607:6630773,7999230:0,631766,126483 -g4605,522:7941493,7999230 -g4605,522:7941493,7999230 -g4605,522:10598977,7999230 -k4605,523:15127188,7999230:3332834 -k4605,523:18460021,7999230:3332833 -) -(4605,524:6630773,8879284:11829248,513147,102891 -h4605,523:6630773,8879284:0,0,0 -r4605,607:6630773,8879284:0,616038,102891 -g4605,523:7941493,8879284 -g4605,523:7941493,8879284 -g4605,523:11664592,8879284 -k4605,524:15659995,8879284:2800026 -k4605,524:18460021,8879284:2800026 -) -(4605,525:6630773,9759337:11829248,513147,134348 -h4605,524:6630773,9759337:0,0,0 -r4605,607:6630773,9759337:0,647495,134348 -g4605,524:7941493,9759337 -g4605,524:7941493,9759337 -g4605,524:11008577,9759337 -g4605,524:12576853,9759337 -g4605,524:14145129,9759337 -g4605,524:15713405,9759337 -g4605,524:17281681,9759337 -k4605,525:18458709,9759337:1312 -k4605,525:18460021,9759337:1312 -) -(4605,526:6630773,10639391:11829248,513147,102891 -h4605,525:6630773,10639391:0,0,0 -r4605,607:6630773,10639391:0,616038,102891 -g4605,525:7941493,10639391 -g4605,525:7941493,10639391 -g4605,525:10659926,10639391 -k4605,526:15157662,10639391:3302359 -k4605,526:18460021,10639391:3302359 -) -(4605,527:6630773,11519444:11829248,505283,134348 -h4605,526:6630773,11519444:0,0,0 -r4605,607:6630773,11519444:0,639631,134348 -g4605,526:7941493,11519444 -g4605,526:7941493,11519444 -g4605,526:12768219,11519444 -k4605,527:16211809,11519444:2248213 -k4605,527:18460021,11519444:2248212 -) -(4605,528:6630773,12399498:11829248,513147,134348 -h4605,527:6630773,12399498:0,0,0 -r4605,607:6630773,12399498:0,647495,134348 -g4605,527:7941493,12399498 -g4605,527:7941493,12399498 -g4605,527:11156688,12399498 -k4605,528:15406043,12399498:3053978 -k4605,528:18460021,12399498:3053978 -) -(4605,529:6630773,13279551:11829248,505283,134348 -h4605,528:6630773,13279551:0,0,0 -r4605,607:6630773,13279551:0,639631,134348 -g4605,528:7941493,13279551 -g4605,528:7941493,13279551 -g4605,528:11923460,13279551 -k4605,529:15789429,13279551:2670592 -k4605,529:18460021,13279551:2670592 -) -(4605,534:6630773,14159605:11829248,505283,134348 -h4605,529:6630773,14159605:0,0,0 -r4605,607:6630773,14159605:0,639631,134348 -g4605,529:7941493,14159605 -g4605,529:7941493,14159605 -g4605,529:11209773,14159605 -g4605,529:12506075,14159605 -g4605,529:14003572,14159605 -g4605,529:15571848,14159605 -g4605,529:17140124,14159605 -k4605,529:18460021,14159605:37358 -) -(4605,534:9252213,15024685:9207808,485622,102891 -g4605,529:10820489,15024685 -g4605,530:13911822,15024685 -g4605,530:15480098,15024685 -g4605,530:17048374,15024685 -k4605,530:18460021,15024685:129108 -) -(4605,534:9252213,15889765:9207808,485622,102891 -g4605,530:10820489,15889765 -g4605,530:12388765,15889765 -g4605,530:13957041,15889765 -g4605,530:15525317,15889765 -k4605,530:18460021,15889765:1652165 -) -(4605,534:9252213,16754845:9207808,485622,102891 -g4605,531:12343546,16754845 -g4605,531:13911822,16754845 -g4605,531:17003155,16754845 -k4605,531:18460021,16754845:174327 -) -(4605,534:9252213,17619925:9207808,485622,102891 -g4605,531:10820489,17619925 -g4605,531:12388765,17619925 -g4605,531:13957041,17619925 -g4605,531:15525317,17619925 -g4605,531:17093593,17619925 -k4605,532:18460021,17619925:83889 -) -(4605,534:9252213,18485005:9207808,485622,102891 -g4605,532:12343546,18485005 -g4605,532:13911822,18485005 -g4605,532:15480098,18485005 -g4605,532:17048374,18485005 -k4605,532:18460021,18485005:129108 -) -(4605,534:9252213,19350085:9207808,485622,102891 -g4605,532:12343546,19350085 -g4605,532:13911822,19350085 -g4605,532:15480098,19350085 -g4605,533:17048374,19350085 -k4605,534:18342056,19350085:117966 -k4605,534:18460021,19350085:117965 -) -(4605,535:6630773,20230138:11829248,505283,134348 -h4605,534:6630773,20230138:0,0,0 -r4605,607:6630773,20230138:0,639631,134348 -g4605,534:7941493,20230138 -g4605,534:7941493,20230138 -g4605,534:11428663,20230138 -g4605,534:12996939,20230138 -g4605,534:14565215,20230138 -k4605,535:17100476,20230138:1359545 -k4605,535:18460021,20230138:1359545 -) -(4605,536:6630773,21110192:11829248,505283,134348 -h4605,535:6630773,21110192:0,0,0 -r4605,607:6630773,21110192:0,639631,134348 -g4605,535:7941493,21110192 -g4605,535:7941493,21110192 -g4605,535:10370912,21110192 -g4605,535:11939188,21110192 -g4605,535:13507464,21110192 -g4605,535:15075740,21110192 -g4605,535:16644016,21110192 -k4605,536:18149707,21110192:310314 -k4605,536:18460021,21110192:310314 -) -(4605,537:6630773,21990245:11829248,505283,134348 -h4605,536:6630773,21990245:0,0,0 -r4605,607:6630773,21990245:0,639631,134348 -g4605,536:7941493,21990245 -g4605,536:7941493,21990245 -g4605,536:11145547,21990245 -g4605,536:12713823,21990245 -k4605,537:16184611,21990245:2275411 -k4605,537:18460021,21990245:2275410 -) -(4605,538:6630773,22870299:11829248,505283,134348 -h4605,537:6630773,22870299:0,0,0 -r4605,607:6630773,22870299:0,639631,134348 -g4605,537:7941493,22870299 -g4605,537:7941493,22870299 -g4605,537:11592503,22870299 -k4605,538:15623951,22870299:2836071 -k4605,538:18460021,22870299:2836070 -) -(4605,539:6630773,23750352:11829248,505283,134348 -h4605,538:6630773,23750352:0,0,0 -r4605,607:6630773,23750352:0,639631,134348 -g4605,538:7941493,23750352 -g4605,538:7941493,23750352 -g4605,538:10802139,23750352 -k4605,539:15228769,23750352:3231253 -k4605,539:18460021,23750352:3231252 -) -(4605,540:6630773,24630406:11829248,505283,134348 -h4605,539:6630773,24630406:0,0,0 -r4605,607:6630773,24630406:0,639631,134348 -g4605,539:7941493,24630406 -g4605,539:7941493,24630406 -g4605,539:11120644,24630406 -k4605,540:15388021,24630406:3072000 -k4605,540:18460021,24630406:3072000 -) -(4605,541:6630773,25510459:11829248,505283,134348 -h4605,540:6630773,25510459:0,0,0 -r4605,607:6630773,25510459:0,639631,134348 -g4605,540:7941493,25510459 -g4605,540:7941493,25510459 -g4605,540:11020374,25510459 -k4605,541:15328056,25510459:3131966 -k4605,541:18460021,25510459:3131965 -) -(4605,542:6630773,26390513:11829248,505283,134348 -h4605,541:6630773,26390513:0,0,0 -r4605,607:6630773,26390513:0,639631,134348 -g4605,541:7941493,26390513 -g4605,541:7941493,26390513 -g4605,541:10007187,26390513 -g4605,541:11575463,26390513 -g4605,541:13143739,26390513 -g4605,541:14712015,26390513 -g4605,541:16280291,26390513 -k4605,542:17967845,26390513:492177 -k4605,542:18460021,26390513:492176 -) -(4605,543:6630773,27270566:11829248,505283,134348 -h4605,542:6630773,27270566:0,0,0 -r4605,607:6630773,27270566:0,639631,134348 -g4605,542:7941493,27270566 -g4605,542:7941493,27270566 -g4605,542:11639033,27270566 -k4605,543:15647216,27270566:2812806 -k4605,543:18460021,27270566:2812805 -) -(4605,544:6630773,28150620:11829248,505283,102891 -h4605,543:6630773,28150620:0,0,0 -r4605,607:6630773,28150620:0,608174,102891 -g4605,543:7941493,28150620 -g4605,543:7941493,28150620 -g4605,543:10607497,28150620 -g4605,543:12175773,28150620 -g4605,543:13744049,28150620 -k4605,544:16689893,28150620:1770128 -k4605,544:18460021,28150620:1770128 -) -(4605,545:6630773,29030673:11829248,505283,102891 -h4605,544:6630773,29030673:0,0,0 -r4605,607:6630773,29030673:0,608174,102891 -g4605,544:7941493,29030673 -g4605,544:7941493,29030673 -g4605,544:10680897,29030673 -k4605,545:15168148,29030673:3291874 -k4605,545:18460021,29030673:3291873 -) -(4605,546:6630773,29910727:11829248,505283,134348 -h4605,545:6630773,29910727:0,0,0 -r4605,607:6630773,29910727:0,639631,134348 -g4605,545:7941493,29910727 -g4605,545:7941493,29910727 -g4605,545:11059040,29910727 -k4605,546:15357219,29910727:3102802 -k4605,546:18460021,29910727:3102802 -) -(4605,547:6630773,30790780:11829248,505283,102891 -h4605,546:6630773,30790780:0,0,0 -r4605,607:6630773,30790780:0,608174,102891 -g4605,546:7941493,30790780 -g4605,546:7941493,30790780 -g4605,546:10220179,30790780 -g4605,546:11389996,30790780 -g4605,546:12559813,30790780 -k4605,547:16107606,30790780:2352416 -k4605,547:18460021,30790780:2352415 -) -(4605,548:6630773,31670834:11829248,505283,102891 -h4605,547:6630773,31670834:0,0,0 -r4605,607:6630773,31670834:0,608174,102891 -g4605,547:7941493,31670834 -g4605,547:7941493,31670834 -g4605,547:10659926,31670834 -g4605,547:12228202,31670834 -k4605,548:15941800,31670834:2518221 -k4605,548:18460021,31670834:2518221 -) -(4605,550:6630773,32550887:11829248,505283,102891 -h4605,548:6630773,32550887:0,0,0 -r4605,607:6630773,32550887:0,608174,102891 -g4605,548:7941493,32550887 -g4605,548:7941493,32550887 -g4605,548:12187570,32550887 -g4605,548:13685067,32550887 -g4605,548:14854884,32550887 -k4605,548:18460021,32550887:2322598 -) -(4605,550:9252213,33415967:9207808,485622,102891 -g4605,548:12323885,33415967 -g4605,548:13892161,33415967 -g4605,548:15460437,33415967 -g4605,549:17028713,33415967 -k4605,550:18342056,33415967:117966 -k4605,550:18460021,33415967:117965 -) -(4605,551:6630773,34296021:11829248,505283,102891 -h4605,550:6630773,34296021:0,0,0 -r4605,607:6630773,34296021:0,608174,102891 -g4605,550:7941493,34296021 -g4605,550:7941493,34296021 -g4605,550:10309963,34296021 -k4605,551:14982681,34296021:3477341 -k4605,551:18460021,34296021:3477340 -) -(4605,552:6630773,35176074:11829248,505283,102891 -h4605,551:6630773,35176074:0,0,0 -r4605,607:6630773,35176074:0,608174,102891 -g4605,551:7941493,35176074 -g4605,551:7941493,35176074 -g4605,551:11579396,35176074 -g4605,551:12749213,35176074 -g4605,551:14317489,35176074 -k4605,551:18460021,35176074:1336936 -) -(4605,552:9252213,36041154:9207808,485622,102891 -g4605,551:10820489,36041154 -g4605,551:12388765,36041154 -k4605,552:16022082,36041154:2437940 -k4605,552:18460021,36041154:2437939 -) -(4605,553:6630773,36921208:11829248,505283,134348 -h4605,552:6630773,36921208:0,0,0 -r4605,607:6630773,36921208:0,639631,134348 -g4605,552:7941493,36921208 -g4605,552:7941493,36921208 -g4605,552:11326427,36921208 -g4605,552:12894703,36921208 -g4605,552:15986036,36921208 -k4605,552:18460021,36921208:1191446 -) -(4605,553:9252213,37786288:9207808,485622,11795 -k4605,553:14443975,37786288:4016046 -k4605,553:18460021,37786288:4016046 -) -(4605,554:6630773,38666341:11829248,505283,102891 -h4605,553:6630773,38666341:0,0,0 -r4605,607:6630773,38666341:0,608174,102891 -g4605,553:7941493,38666341 -g4605,553:7941493,38666341 -g4605,553:12345511,38666341 -k4605,554:15801225,38666341:2658796 -k4605,554:18460021,38666341:2658796 -) -(4605,555:6630773,39546395:11829248,505283,102891 -h4605,554:6630773,39546395:0,0,0 -r4605,607:6630773,39546395:0,608174,102891 -g4605,554:7941493,39546395 -g4605,554:7941493,39546395 -g4605,554:14086803,39546395 -k4605,555:16871101,39546395:1588921 -k4605,555:18460021,39546395:1588920 -) -(4605,556:6630773,40426448:11829248,505283,102891 -h4605,555:6630773,40426448:0,0,0 -r4605,607:6630773,40426448:0,608174,102891 -g4605,555:7941493,40426448 -g4605,555:7941493,40426448 -g4605,555:11504685,40426448 -k4605,556:15580042,40426448:2879980 -k4605,556:18460021,40426448:2879979 -) -(4605,557:6630773,41306502:11829248,505283,126483 -h4605,556:6630773,41306502:0,0,0 -r4605,607:6630773,41306502:0,631766,126483 -g4605,556:7941493,41306502 -g4605,556:7941493,41306502 -g4605,556:11944431,41306502 -k4605,557:15799915,41306502:2660107 -k4605,557:18460021,41306502:2660106 -) -(4605,558:6630773,42186555:11829248,513147,102891 -h4605,557:6630773,42186555:0,0,0 -r4605,607:6630773,42186555:0,616038,102891 -g4605,557:7941493,42186555 -g4605,557:7941493,42186555 -g4605,557:10538684,42186555 -g4605,557:12106960,42186555 -g4605,557:13675236,42186555 -k4605,558:16655487,42186555:1804535 -k4605,558:18460021,42186555:1804534 -) -(4605,559:6630773,43066609:11829248,505283,102891 -h4605,558:6630773,43066609:0,0,0 -r4605,607:6630773,43066609:0,608174,102891 -g4605,558:7941493,43066609 -g4605,558:7941493,43066609 -g4605,558:10301444,43066609 -g4605,558:11869720,43066609 -k4605,559:15762559,43066609:2697462 -k4605,559:18460021,43066609:2697462 -) -(4605,560:6630773,43946662:11829248,505283,126483 -h4605,559:6630773,43946662:0,0,0 -r4605,607:6630773,43946662:0,631766,126483 -g4605,559:7941493,43946662 -g4605,559:7941493,43946662 -g4605,559:9885945,43946662 -g4605,559:11454221,43946662 -k4605,560:15554810,43946662:2905212 -k4605,560:18460021,43946662:2905211 -) -(4605,561:6630773,44826716:11829248,505283,126483 -h4605,560:6630773,44826716:0,0,0 -r4605,607:6630773,44826716:0,631766,126483 -g4605,560:7941493,44826716 -g4605,560:7941493,44826716 -g4605,560:11066249,44826716 -k4605,561:15360824,44826716:3099198 -k4605,561:18460021,44826716:3099197 -) -(4605,562:6630773,45706769:11829248,505283,126483 -h4605,561:6630773,45706769:0,0,0 -r4605,607:6630773,45706769:0,631766,126483 -g4605,561:7941493,45706769 -g4605,561:7941493,45706769 -g4605,561:12047978,45706769 -g4605,561:13616254,45706769 -k4605,562:16625996,45706769:1834026 -k4605,562:18460021,45706769:1834025 -) -] -k4605,607:19606901,45706769:1146880 -r4605,607:19606901,45706769:0,40234515,126483 -k4605,607:20753781,45706769:1146880 -[4605,607:20753781,45706769:11829248,40108032,126483 -(4605,563:20753781,6254097:11829248,505283,134348 -h4605,562:20753781,6254097:0,0,0 -r4605,607:20753781,6254097:0,639631,134348 -g4605,562:22064501,6254097 -g4605,562:22064501,6254097 -g4605,562:25781702,6254097 -k4605,563:29780054,6254097:2802975 -k4605,563:32583029,6254097:2802975 -) -(4605,564:20753781,7132615:11829248,505283,126483 -h4605,563:20753781,7132615:0,0,0 -r4605,607:20753781,7132615:0,631766,126483 -g4605,563:22064501,7132615 -g4605,563:22064501,7132615 -g4605,563:25717477,7132615 -g4605,563:27285753,7132615 -g4605,563:28854029,7132615 -k4605,564:31316218,7132615:1266812 -k4605,564:32583029,7132615:1266811 -) -(4605,565:20753781,8011132:11829248,505283,126483 -h4605,564:20753781,8011132:0,0,0 -r4605,607:20753781,8011132:0,631766,126483 -g4605,564:22064501,8011132 -g4605,564:22064501,8011132 -g4605,564:24948084,8011132 -k4605,565:29363245,8011132:3219784 -k4605,565:32583029,8011132:3219784 -) -(4605,566:20753781,8889650:11829248,505283,102891 -h4605,565:20753781,8889650:0,0,0 -r4605,607:20753781,8889650:0,608174,102891 -g4605,565:22064501,8889650 -g4605,565:22064501,8889650 -g4605,565:25612619,8889650 -k4605,566:29695513,8889650:2887517 -k4605,566:32583029,8889650:2887516 -) -(4605,567:20753781,9768168:11829248,505283,102891 -h4605,566:20753781,9768168:0,0,0 -r4605,607:20753781,9768168:0,608174,102891 -g4605,566:22064501,9768168 -g4605,566:22064501,9768168 -g4605,566:24527343,9768168 -g4605,566:26095619,9768168 -g4605,566:29186952,9768168 -g4605,566:30755228,9768168 -k4605,566:32583029,9768168:545262 -) -(4605,567:23375221,10633248:9207808,485622,11795 -k4605,567:28566983,10633248:4016046 -k4605,567:32583029,10633248:4016046 -) -(4605,568:20753781,11511766:11829248,505283,102891 -h4605,567:20753781,11511766:0,0,0 -r4605,607:20753781,11511766:0,608174,102891 -g4605,567:22064501,11511766 -g4605,567:22064501,11511766 -g4605,567:24850436,11511766 -g4605,567:26418712,11511766 -k4605,568:30098559,11511766:2484470 -k4605,568:32583029,11511766:2484470 -) -(4605,569:20753781,12390283:11829248,505283,102891 -h4605,568:20753781,12390283:0,0,0 -r4605,607:20753781,12390283:0,608174,102891 -g4605,568:22064501,12390283 -g4605,568:22064501,12390283 -g4605,568:25442881,12390283 -k4605,569:29600813,12390283:2982216 -k4605,569:32583029,12390283:2982216 -) -(4605,570:20753781,13268801:11829248,505283,126483 -h4605,569:20753781,13268801:0,0,0 -r4605,607:20753781,13268801:0,631766,126483 -g4605,569:22064501,13268801 -g4605,569:22064501,13268801 -g4605,569:24932356,13268801 -k4605,570:28947092,13268801:3635938 -k4605,570:32583029,13268801:3635937 -) -(4605,571:20753781,14147319:11829248,505283,126483 -h4605,570:20753781,14147319:0,0,0 -r4605,607:20753781,14147319:0,631766,126483 -g4605,570:22064501,14147319 -g4605,570:22064501,14147319 -g4605,570:25364238,14147319 -k4605,571:29561492,14147319:3021538 -k4605,571:32583029,14147319:3021537 -) -(4605,572:20753781,15025837:11829248,505283,126483 -h4605,571:20753781,15025837:0,0,0 -r4605,607:20753781,15025837:0,631766,126483 -g4605,571:22064501,15025837 -g4605,571:22064501,15025837 -g4605,571:25779081,15025837 -k4605,572:29768913,15025837:2814116 -k4605,572:32583029,15025837:2814116 -) -(4605,573:20753781,15904354:11829248,505283,102891 -h4605,572:20753781,15904354:0,0,0 -r4605,607:20753781,15904354:0,608174,102891 -g4605,572:22064501,15904354 -g4605,572:22064501,15904354 -g4605,572:25822335,15904354 -k4605,573:29790540,15904354:2792489 -k4605,573:32583029,15904354:2792489 -) -(4605,574:20753781,16782872:11829248,505283,102891 -h4605,573:20753781,16782872:0,0,0 -r4605,607:20753781,16782872:0,608174,102891 -g4605,573:22064501,16782872 -g4605,573:22064501,16782872 -g4605,573:25656528,16782872 -g4605,573:27224804,16782872 -k4605,574:30491775,16782872:2091255 -k4605,574:32583029,16782872:2091254 -) -(4605,575:20753781,17661390:11829248,505283,102891 -h4605,574:20753781,17661390:0,0,0 -r4605,607:20753781,17661390:0,608174,102891 -g4605,574:22064501,17661390 -g4605,574:22064501,17661390 -g4605,574:25277730,17661390 -k4605,575:29528068,17661390:3054961 -k4605,575:32583029,17661390:3054961 -) -(4605,576:20753781,18539908:11829248,505283,102891 -h4605,575:20753781,18539908:0,0,0 -r4605,607:20753781,18539908:0,608174,102891 -g4605,575:22064501,18539908 -g4605,575:22064501,18539908 -g4605,575:24770482,18539908 -k4605,576:30035972,18539908:2547057 -k4605,576:32583029,18539908:2547057 -) -(4605,577:20753781,19418425:11829248,513147,102891 -h4605,576:20753781,19418425:0,0,0 -r4605,607:20753781,19418425:0,616038,102891 -g4605,576:22064501,19418425 -g4605,576:22064501,19418425 -g4605,576:23425683,19418425 -g4605,576:24993959,19418425 -k4605,577:29386183,19418425:3196847 -k4605,577:32583029,19418425:3196846 -) -(4605,578:20753781,20296943:11829248,505283,102891 -h4605,577:20753781,20296943:0,0,0 -r4605,607:20753781,20296943:0,608174,102891 -g4605,577:22064501,20296943 -g4605,577:22064501,20296943 -g4605,577:25755488,20296943 -k4605,578:29766947,20296943:2816082 -k4605,578:32583029,20296943:2816082 -) -(4605,579:20753781,21175461:11829248,505283,102891 -h4605,578:20753781,21175461:0,0,0 -r4605,607:20753781,21175461:0,608174,102891 -g4605,578:22064501,21175461 -g4605,578:22064501,21175461 -g4605,578:24370712,21175461 -g4605,578:25938988,21175461 -g4605,578:27507264,21175461 -k4605,579:30642835,21175461:1940194 -k4605,579:32583029,21175461:1940194 -) -(4605,580:20753781,22053979:11829248,505283,134348 -h4605,579:20753781,22053979:0,0,0 -r4605,607:20753781,22053979:0,639631,134348 -g4605,579:22064501,22053979 -g4605,579:22064501,22053979 -g4605,579:24970367,22053979 -k4605,580:29374387,22053979:3208643 -k4605,580:32583029,22053979:3208642 -) -(4605,581:20753781,22932496:11829248,505283,102891 -h4605,580:20753781,22932496:0,0,0 -r4605,607:20753781,22932496:0,608174,102891 -g4605,580:22064501,22932496 -g4605,580:22064501,22932496 -g4605,580:25140760,22932496 -g4605,580:26310577,22932496 -k4605,581:30044492,22932496:2538538 -k4605,581:32583029,22932496:2538537 -) -(4605,582:20753781,23811014:11829248,505283,102891 -h4605,581:20753781,23811014:0,0,0 -r4605,607:20753781,23811014:0,608174,102891 -g4605,581:22064501,23811014 -g4605,581:22064501,23811014 -g4605,581:24666279,23811014 -g4605,581:25836096,23811014 -g4605,581:27005913,23811014 -g4605,581:28574189,23811014 -g4605,581:30142465,23811014 -k4605,581:32583029,23811014:1158025 -) -(4605,582:23375221,24676094:9207808,485622,102891 -g4605,581:24943497,24676094 -k4605,582:29360952,24676094:3222078 -k4605,582:32583029,24676094:3222077 -) -(4605,583:20753781,25554612:11829248,505283,126483 -h4605,582:20753781,25554612:0,0,0 -r4605,607:20753781,25554612:0,631766,126483 -g4605,582:22064501,25554612 -g4605,582:22064501,25554612 -g4605,582:24782934,25554612 -k4605,583:29280670,25554612:3302359 -k4605,583:32583029,25554612:3302359 -) -(4605,584:20753781,26433130:11829248,505283,126483 -h4605,583:20753781,26433130:0,0,0 -r4605,607:20753781,26433130:0,631766,126483 -g4605,583:22064501,26433130 -g4605,583:22064501,26433130 -g4605,583:24309108,26433130 -g4605,583:27400441,26433130 -g4605,583:30491774,26433130 -k4605,584:32125260,26433130:457770 -k4605,584:32583029,26433130:457769 -) -(4605,586:20753781,27311647:11829248,505283,126483 -h4605,584:20753781,27311647:0,0,0 -r4605,607:20753781,27311647:0,631766,126483 -g4605,584:22064501,27311647 -g4605,584:22064501,27311647 -g4605,584:25712234,27311647 -g4605,584:27209731,27311647 -g4605,584:28379548,27311647 -k4605,584:32583029,27311647:2920942 -) -(4605,586:23375221,28176727:9207808,485622,102891 -g4605,584:26466554,28176727 -g4605,584:28034830,28176727 -g4605,584:29603106,28176727 -g4605,585:31171382,28176727 -k4605,585:32583029,28176727:129108 -) -(4605,586:23375221,29041807:9207808,485622,102891 -g4605,585:24943497,29041807 -g4605,585:26511773,29041807 -g4605,585:28080049,29041807 -g4605,585:29648325,29041807 -g4605,585:31216601,29041807 -k4605,585:32583029,29041807:83889 -) -(4605,586:23375221,29906887:9207808,485622,102891 -g4605,585:24943497,29906887 -k4605,586:29351121,29906887:3231908 -k4605,586:32583029,29906887:3231908 -) -(4605,587:20753781,30785405:11829248,505283,102891 -h4605,586:20753781,30785405:0,0,0 -r4605,607:20753781,30785405:0,608174,102891 -g4605,586:22064501,30785405 -g4605,586:22064501,30785405 -g4605,586:24424452,30785405 -k4605,587:29101429,30785405:3481600 -k4605,587:32583029,30785405:3481600 -) -(4605,588:20753781,31663923:11829248,485622,134348 -h4605,587:20753781,31663923:0,0,0 -r4605,607:20753781,31663923:0,619970,134348 -g4605,587:22064501,31663923 -g4605,587:22064501,31663923 -g4605,587:24172794,31663923 -k4605,588:28975600,31663923:3607429 -k4605,588:32583029,31663923:3607429 -) -(4605,589:20753781,32542441:11829248,505283,102891 -h4605,588:20753781,32542441:0,0,0 -r4605,607:20753781,32542441:0,608174,102891 -g4605,588:22064501,32542441 -g4605,588:22064501,32542441 -g4605,588:24215392,32542441 -g4605,588:25783668,32542441 -g4605,588:27351944,32542441 -g4605,588:28920220,32542441 -k4605,589:31349313,32542441:1233716 -k4605,589:32583029,32542441:1233716 -) -(4605,590:20753781,33420958:11829248,505283,126483 -h4605,589:20753781,33420958:0,0,0 -r4605,607:20753781,33420958:0,631766,126483 -g4605,589:22064501,33420958 -g4605,589:22064501,33420958 -g4605,589:24666935,33420958 -g4605,589:26235211,33420958 -g4605,589:29326544,33420958 -k4605,590:31542645,33420958:1040385 -k4605,590:32583029,33420958:1040384 -) -(4605,591:20753781,34299476:11829248,505283,102891 -h4605,590:20753781,34299476:0,0,0 -r4605,607:20753781,34299476:0,608174,102891 -g4605,590:22064501,34299476 -g4605,590:22064501,34299476 -g4605,590:24178036,34299476 -g4605,590:25746312,34299476 -k4605,591:29762359,34299476:2820670 -k4605,591:32583029,34299476:2820670 -) -(4605,592:20753781,35177994:11829248,505283,102891 -h4605,591:20753781,35177994:0,0,0 -r4605,607:20753781,35177994:0,608174,102891 -g4605,591:22064501,35177994 -g4605,591:22064501,35177994 -g4605,591:24469671,35177994 -k4605,592:29124039,35177994:3458991 -k4605,592:32583029,35177994:3458990 -) -(4605,593:20753781,36056512:11829248,505283,126483 -h4605,592:20691522,36056512:0,0,0 -g4605,592:22635974,36056512 -g4605,592:24204250,36056512 -k4605,593:28991328,36056512:3591701 -k4605,593:32583029,36056512:3591701 -) -(4605,594:20753781,36935029:11829248,505283,126483 -h4605,593:20691522,36935029:0,0,0 -g4605,593:23816278,36935029 -k4605,594:28797342,36935029:3785687 -k4605,594:32583029,36935029:3785687 -) -(4605,595:20753781,37813547:11829248,505283,102891 -h4605,594:20753781,37813547:0,0,0 -g4605,594:23071133,37813547 -g4605,594:24240950,37813547 -g4605,594:25410767,37813547 -k4605,595:29594587,37813547:2988443 -k4605,595:32583029,37813547:2988442 -) -(4605,596:20753781,38692065:11829248,505283,126483 -h4605,595:20691522,38692065:0,0,0 -g4605,595:24798007,38692065 -g4605,595:26366283,38692065 -k4605,596:30062514,38692065:2520515 -k4605,596:32583029,38692065:2520515 -) -(4605,597:20753781,39570583:11829248,505283,126483 -h4605,596:20753781,39570583:0,0,0 -g4605,596:22445265,39570583 -g4605,596:23611805,39570583 -g4605,596:26652675,39570583 -k4605,596:32583029,39570583:2002781 -) -(4605,597:23375221,40435663:9207808,505283,126483 -k4605,597:29256422,40435663:3326608 -k4605,597:32583029,40435663:3326607 -) -(4605,598:20753781,41314180:11829248,505283,102891 -h4605,597:20753781,41314180:0,0,0 -g4605,597:22311571,41314180 -k4605,598:27845759,41314180:4737270 -k4605,598:32583029,41314180:4737270 -) -(4605,599:20753781,42192698:11829248,485622,126483 -h4605,598:20753781,42192698:0,0,0 -g4605,598:22343029,42192698 -g4605,598:25462542,42192698 -g4605,598:27030818,42192698 -k4605,599:30404612,42192698:2178417 -k4605,599:32583029,42192698:2178417 -) -(4605,600:20753781,43071216:11829248,473825,126483 -h4605,599:20753781,43071216:0,0,0 -k4605,600:27528565,43071216:5054464 -k4605,600:32583029,43071216:5054464 -) -(4605,601:20753781,43949734:11829248,505283,102891 -h4605,600:20753781,43949734:0,0,0 -r4605,607:20753781,43949734:0,608174,102891 -g4605,600:22064501,43949734 -g4605,600:22064501,43949734 -g4605,600:23697658,43949734 -g4605,600:24515547,43949734 -k4605,601:29898674,43949734:2684355 -k4605,601:32583029,43949734:2684355 -) -(4605,602:20753781,44828251:11829248,505283,126483 -h4605,601:20753781,44828251:0,0,0 -r4605,607:20753781,44828251:0,631766,126483 -g4605,601:22064501,44828251 -g4605,601:22064501,44828251 -g4605,601:26034016,44828251 -g4605,601:26849283,44828251 -g4605,601:28255685,44828251 -k4605,602:31007215,44828251:1575814 -k4605,602:32583029,44828251:1575814 -) -(4605,603:20753781,45706769:11829248,505283,126483 -h4605,602:20753781,45706769:0,0,0 -r4605,607:20753781,45706769:0,631766,126483 -g4605,602:22064501,45706769 -g4605,602:22064501,45706769 -g4605,602:25347854,45706769 -k4605,603:29563130,45706769:3019899 -k4605,603:32583029,45706769:3019899 -) -] -(4605,607:32583029,45706769:0,355205,126483 -h4605,607:32583029,45706769:420741,355205,126483 -k4605,607:32583029,45706769:-420741 -) -) -] -(4605,607:32583029,45706769:0,0,0 -g4605,607:32583029,45706769 -) -) -] -(4605,607:6630773,47279633:25952256,0,0 -h4605,607:6630773,47279633:25952256,0,0 -) -] -(4605,607:4262630,4025873:0,0,0 -[4605,607:-473656,4025873:0,0,0 -(4605,607:-473656,-710413:0,0,0 -(4605,607:-473656,-710413:0,0,0 -g4605,607:-473656,-710413 -) -g4605,607:-473656,-710413 -) -] -) -] -!29340 -}440 +[4609,608:3078558,4812305:0,0,0 +(4609,608:3078558,49800853:0,16384,2228224 +g4609,608:29030814,49800853 +g4609,608:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,608:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,608:37855564,49800853:1179648,16384,0 +) +) +k4609,608:3078556,49800853:-34777008 +) +] +g4609,608:6630773,4812305 +g4609,608:6630773,4812305 +g4609,608:9313817,4812305 +g4609,608:11211739,4812305 +k4609,608:31387651,4812305:20175912 +) +) +] +[4609,608:6630773,45706769:25952256,40108032,0 +(4609,608:6630773,45706769:25952256,40108032,0 +(4609,608:6630773,45706769:0,0,0 +g4609,608:6630773,45706769 +) +[4609,608:6630773,45706769:25952256,40108032,0 +(4609,608:6630773,45706769:25952256,40108032,126483 +[4609,608:6630773,45706769:11829248,40108032,126483 +(4609,522:6630773,6254097:11829248,513147,102891 +h4609,521:6630773,6254097:0,0,0 +r4609,608:6630773,6254097:0,616038,102891 +g4609,521:7941493,6254097 +g4609,521:7941493,6254097 +g4609,521:11664592,6254097 +k4609,522:15659995,6254097:2800026 +k4609,522:18460021,6254097:2800026 +) +(4609,523:6630773,7133735:11829248,513147,134348 +h4609,522:6630773,7133735:0,0,0 +r4609,608:6630773,7133735:0,647495,134348 +g4609,522:7941493,7133735 +g4609,522:7941493,7133735 +g4609,522:11008577,7133735 +g4609,522:12576853,7133735 +g4609,522:14145129,7133735 +g4609,522:15713405,7133735 +g4609,522:17281681,7133735 +k4609,523:18458709,7133735:1312 +k4609,523:18460021,7133735:1312 +) +(4609,524:6630773,8013372:11829248,513147,102891 +h4609,523:6630773,8013372:0,0,0 +r4609,608:6630773,8013372:0,616038,102891 +g4609,523:7941493,8013372 +g4609,523:7941493,8013372 +g4609,523:10659926,8013372 +k4609,524:15157662,8013372:3302359 +k4609,524:18460021,8013372:3302359 +) +(4609,525:6630773,8893010:11829248,505283,134348 +h4609,524:6630773,8893010:0,0,0 +r4609,608:6630773,8893010:0,639631,134348 +g4609,524:7941493,8893010 +g4609,524:7941493,8893010 +g4609,524:12768219,8893010 +k4609,525:16211809,8893010:2248213 +k4609,525:18460021,8893010:2248212 +) +(4609,526:6630773,9772647:11829248,513147,134348 +h4609,525:6630773,9772647:0,0,0 +r4609,608:6630773,9772647:0,647495,134348 +g4609,525:7941493,9772647 +g4609,525:7941493,9772647 +g4609,525:11156688,9772647 +k4609,526:15406043,9772647:3053978 +k4609,526:18460021,9772647:3053978 +) +(4609,527:6630773,10652285:11829248,505283,134348 +h4609,526:6630773,10652285:0,0,0 +r4609,608:6630773,10652285:0,639631,134348 +g4609,526:7941493,10652285 +g4609,526:7941493,10652285 +g4609,526:11923460,10652285 +k4609,527:15789429,10652285:2670592 +k4609,527:18460021,10652285:2670592 +) +(4609,532:6630773,11531922:11829248,505283,134348 +h4609,527:6630773,11531922:0,0,0 +r4609,608:6630773,11531922:0,639631,134348 +g4609,527:7941493,11531922 +g4609,527:7941493,11531922 +g4609,527:11209773,11531922 +g4609,527:12506075,11531922 +g4609,527:14003572,11531922 +g4609,527:15571848,11531922 +g4609,527:17140124,11531922 +k4609,527:18460021,11531922:37358 +) +(4609,532:9252213,12397002:9207808,485622,102891 +g4609,527:10820489,12397002 +g4609,528:13911822,12397002 +g4609,528:15480098,12397002 +g4609,528:17048374,12397002 +k4609,528:18460021,12397002:129108 +) +(4609,532:9252213,13262082:9207808,485622,102891 +g4609,528:10820489,13262082 +g4609,528:12388765,13262082 +g4609,528:13957041,13262082 +g4609,528:15525317,13262082 +k4609,528:18460021,13262082:1652165 +) +(4609,532:9252213,14127162:9207808,485622,102891 +g4609,529:12343546,14127162 +g4609,529:13911822,14127162 +g4609,529:17003155,14127162 +k4609,529:18460021,14127162:174327 +) +(4609,532:9252213,14992242:9207808,485622,102891 +g4609,529:10820489,14992242 +g4609,529:12388765,14992242 +g4609,529:13957041,14992242 +g4609,529:15525317,14992242 +g4609,529:17093593,14992242 +k4609,530:18460021,14992242:83889 +) +(4609,532:9252213,15857322:9207808,485622,102891 +g4609,530:12343546,15857322 +g4609,530:13911822,15857322 +g4609,530:15480098,15857322 +g4609,530:17048374,15857322 +k4609,530:18460021,15857322:129108 +) +(4609,532:9252213,16722402:9207808,485622,102891 +g4609,530:12343546,16722402 +g4609,530:13911822,16722402 +g4609,530:15480098,16722402 +g4609,531:17048374,16722402 +k4609,532:18342056,16722402:117966 +k4609,532:18460021,16722402:117965 +) +(4609,533:6630773,17602040:11829248,505283,134348 +h4609,532:6630773,17602040:0,0,0 +r4609,608:6630773,17602040:0,639631,134348 +g4609,532:7941493,17602040 +g4609,532:7941493,17602040 +g4609,532:11428663,17602040 +g4609,532:12996939,17602040 +g4609,532:14565215,17602040 +k4609,533:17100476,17602040:1359545 +k4609,533:18460021,17602040:1359545 +) +(4609,534:6630773,18481677:11829248,505283,134348 +h4609,533:6630773,18481677:0,0,0 +r4609,608:6630773,18481677:0,639631,134348 +g4609,533:7941493,18481677 +g4609,533:7941493,18481677 +g4609,533:10370912,18481677 +g4609,533:11939188,18481677 +g4609,533:13507464,18481677 +g4609,533:15075740,18481677 +g4609,533:16644016,18481677 +k4609,534:18149707,18481677:310314 +k4609,534:18460021,18481677:310314 +) +(4609,535:6630773,19361315:11829248,505283,134348 +h4609,534:6630773,19361315:0,0,0 +r4609,608:6630773,19361315:0,639631,134348 +g4609,534:7941493,19361315 +g4609,534:7941493,19361315 +g4609,534:11145547,19361315 +g4609,534:12713823,19361315 +k4609,535:16184611,19361315:2275411 +k4609,535:18460021,19361315:2275410 +) +(4609,536:6630773,20240953:11829248,505283,134348 +h4609,535:6630773,20240953:0,0,0 +r4609,608:6630773,20240953:0,639631,134348 +g4609,535:7941493,20240953 +g4609,535:7941493,20240953 +g4609,535:11592503,20240953 +k4609,536:15623951,20240953:2836071 +k4609,536:18460021,20240953:2836070 +) +(4609,537:6630773,21120590:11829248,505283,134348 +h4609,536:6630773,21120590:0,0,0 +r4609,608:6630773,21120590:0,639631,134348 +g4609,536:7941493,21120590 +g4609,536:7941493,21120590 +g4609,536:10802139,21120590 +k4609,537:15228769,21120590:3231253 +k4609,537:18460021,21120590:3231252 +) +(4609,538:6630773,22000228:11829248,505283,134348 +h4609,537:6630773,22000228:0,0,0 +r4609,608:6630773,22000228:0,639631,134348 +g4609,537:7941493,22000228 +g4609,537:7941493,22000228 +g4609,537:11120644,22000228 +k4609,538:15388021,22000228:3072000 +k4609,538:18460021,22000228:3072000 +) +(4609,539:6630773,22879865:11829248,505283,134348 +h4609,538:6630773,22879865:0,0,0 +r4609,608:6630773,22879865:0,639631,134348 +g4609,538:7941493,22879865 +g4609,538:7941493,22879865 +g4609,538:11020374,22879865 +k4609,539:15328056,22879865:3131966 +k4609,539:18460021,22879865:3131965 +) +(4609,540:6630773,23759503:11829248,505283,134348 +h4609,539:6630773,23759503:0,0,0 +r4609,608:6630773,23759503:0,639631,134348 +g4609,539:7941493,23759503 +g4609,539:7941493,23759503 +g4609,539:10007187,23759503 +g4609,539:11575463,23759503 +g4609,539:13143739,23759503 +g4609,539:14712015,23759503 +g4609,539:16280291,23759503 +k4609,540:17967845,23759503:492177 +k4609,540:18460021,23759503:492176 +) +(4609,541:6630773,24639140:11829248,505283,134348 +h4609,540:6630773,24639140:0,0,0 +r4609,608:6630773,24639140:0,639631,134348 +g4609,540:7941493,24639140 +g4609,540:7941493,24639140 +g4609,540:11639033,24639140 +k4609,541:15647216,24639140:2812806 +k4609,541:18460021,24639140:2812805 +) +(4609,542:6630773,25518778:11829248,505283,102891 +h4609,541:6630773,25518778:0,0,0 +r4609,608:6630773,25518778:0,608174,102891 +g4609,541:7941493,25518778 +g4609,541:7941493,25518778 +g4609,541:10607497,25518778 +g4609,541:12175773,25518778 +g4609,541:13744049,25518778 +k4609,542:16689893,25518778:1770128 +k4609,542:18460021,25518778:1770128 +) +(4609,543:6630773,26398415:11829248,505283,102891 +h4609,542:6630773,26398415:0,0,0 +r4609,608:6630773,26398415:0,608174,102891 +g4609,542:7941493,26398415 +g4609,542:7941493,26398415 +g4609,542:10680897,26398415 +k4609,543:15168148,26398415:3291874 +k4609,543:18460021,26398415:3291873 +) +(4609,544:6630773,27278053:11829248,505283,134348 +h4609,543:6630773,27278053:0,0,0 +r4609,608:6630773,27278053:0,639631,134348 +g4609,543:7941493,27278053 +g4609,543:7941493,27278053 +g4609,543:11059040,27278053 +k4609,544:15357219,27278053:3102802 +k4609,544:18460021,27278053:3102802 +) +(4609,545:6630773,28157691:11829248,505283,102891 +h4609,544:6630773,28157691:0,0,0 +r4609,608:6630773,28157691:0,608174,102891 +g4609,544:7941493,28157691 +g4609,544:7941493,28157691 +g4609,544:10220179,28157691 +g4609,544:11389996,28157691 +g4609,544:12559813,28157691 +k4609,545:16107606,28157691:2352416 +k4609,545:18460021,28157691:2352415 +) +(4609,546:6630773,29037328:11829248,505283,102891 +h4609,545:6630773,29037328:0,0,0 +r4609,608:6630773,29037328:0,608174,102891 +g4609,545:7941493,29037328 +g4609,545:7941493,29037328 +g4609,545:10659926,29037328 +g4609,545:12228202,29037328 +k4609,546:15941800,29037328:2518221 +k4609,546:18460021,29037328:2518221 +) +(4609,548:6630773,29916966:11829248,505283,102891 +h4609,546:6630773,29916966:0,0,0 +r4609,608:6630773,29916966:0,608174,102891 +g4609,546:7941493,29916966 +g4609,546:7941493,29916966 +g4609,546:12187570,29916966 +g4609,546:13685067,29916966 +g4609,546:14854884,29916966 +k4609,546:18460021,29916966:2322598 +) +(4609,548:9252213,30782046:9207808,485622,102891 +g4609,546:12323885,30782046 +g4609,546:13892161,30782046 +g4609,546:15460437,30782046 +g4609,547:17028713,30782046 +k4609,548:18342056,30782046:117966 +k4609,548:18460021,30782046:117965 +) +(4609,549:6630773,31661683:11829248,505283,102891 +h4609,548:6630773,31661683:0,0,0 +r4609,608:6630773,31661683:0,608174,102891 +g4609,548:7941493,31661683 +g4609,548:7941493,31661683 +g4609,548:10309963,31661683 +k4609,549:14982681,31661683:3477341 +k4609,549:18460021,31661683:3477340 +) +(4609,550:6630773,32541321:11829248,505283,102891 +h4609,549:6630773,32541321:0,0,0 +r4609,608:6630773,32541321:0,608174,102891 +g4609,549:7941493,32541321 +g4609,549:7941493,32541321 +g4609,549:11579396,32541321 +g4609,549:12749213,32541321 +g4609,549:14317489,32541321 +k4609,549:18460021,32541321:1336936 +) +(4609,550:9252213,33406401:9207808,485622,102891 +g4609,549:10820489,33406401 +g4609,549:12388765,33406401 +k4609,550:16022082,33406401:2437940 +k4609,550:18460021,33406401:2437939 +) +(4609,551:6630773,34286038:11829248,505283,134348 +h4609,550:6630773,34286038:0,0,0 +r4609,608:6630773,34286038:0,639631,134348 +g4609,550:7941493,34286038 +g4609,550:7941493,34286038 +g4609,550:11326427,34286038 +g4609,550:12894703,34286038 +g4609,550:15986036,34286038 +k4609,550:18460021,34286038:1191446 +) +(4609,551:9252213,35151118:9207808,485622,11795 +k4609,551:14443975,35151118:4016046 +k4609,551:18460021,35151118:4016046 +) +(4609,552:6630773,36030756:11829248,505283,102891 +h4609,551:6630773,36030756:0,0,0 +r4609,608:6630773,36030756:0,608174,102891 +g4609,551:7941493,36030756 +g4609,551:7941493,36030756 +g4609,551:12345511,36030756 +k4609,552:15801225,36030756:2658796 +k4609,552:18460021,36030756:2658796 +) +(4609,553:6630773,36910393:11829248,505283,102891 +h4609,552:6630773,36910393:0,0,0 +r4609,608:6630773,36910393:0,608174,102891 +g4609,552:7941493,36910393 +g4609,552:7941493,36910393 +g4609,552:14086803,36910393 +k4609,553:16871101,36910393:1588921 +k4609,553:18460021,36910393:1588920 +) +(4609,554:6630773,37790031:11829248,505283,102891 +h4609,553:6630773,37790031:0,0,0 +r4609,608:6630773,37790031:0,608174,102891 +g4609,553:7941493,37790031 +g4609,553:7941493,37790031 +g4609,553:11504685,37790031 +k4609,554:15580042,37790031:2879980 +k4609,554:18460021,37790031:2879979 +) +(4609,555:6630773,38669669:11829248,505283,126483 +h4609,554:6630773,38669669:0,0,0 +r4609,608:6630773,38669669:0,631766,126483 +g4609,554:7941493,38669669 +g4609,554:7941493,38669669 +g4609,554:11944431,38669669 +k4609,555:15799915,38669669:2660107 +k4609,555:18460021,38669669:2660106 +) +(4609,556:6630773,39549306:11829248,513147,102891 +h4609,555:6630773,39549306:0,0,0 +r4609,608:6630773,39549306:0,616038,102891 +g4609,555:7941493,39549306 +g4609,555:7941493,39549306 +g4609,555:10538684,39549306 +g4609,555:12106960,39549306 +g4609,555:13675236,39549306 +k4609,556:16655487,39549306:1804535 +k4609,556:18460021,39549306:1804534 +) +(4609,557:6630773,40428944:11829248,505283,102891 +h4609,556:6630773,40428944:0,0,0 +r4609,608:6630773,40428944:0,608174,102891 +g4609,556:7941493,40428944 +g4609,556:7941493,40428944 +g4609,556:10301444,40428944 +g4609,556:11869720,40428944 +k4609,557:15762559,40428944:2697462 +k4609,557:18460021,40428944:2697462 +) +(4609,558:6630773,41308581:11829248,505283,126483 +h4609,557:6630773,41308581:0,0,0 +r4609,608:6630773,41308581:0,631766,126483 +g4609,557:7941493,41308581 +g4609,557:7941493,41308581 +g4609,557:9885945,41308581 +g4609,557:11454221,41308581 +k4609,558:15554810,41308581:2905212 +k4609,558:18460021,41308581:2905211 +) +(4609,559:6630773,42188219:11829248,505283,126483 +h4609,558:6630773,42188219:0,0,0 +r4609,608:6630773,42188219:0,631766,126483 +g4609,558:7941493,42188219 +g4609,558:7941493,42188219 +g4609,558:11066249,42188219 +k4609,559:15360824,42188219:3099198 +k4609,559:18460021,42188219:3099197 +) +(4609,560:6630773,43067856:11829248,505283,126483 +h4609,559:6630773,43067856:0,0,0 +r4609,608:6630773,43067856:0,631766,126483 +g4609,559:7941493,43067856 +g4609,559:7941493,43067856 +g4609,559:12047978,43067856 +g4609,559:13616254,43067856 +k4609,560:16625996,43067856:1834026 +k4609,560:18460021,43067856:1834025 +) +(4609,561:6630773,43947494:11829248,505283,134348 +h4609,560:6630773,43947494:0,0,0 +r4609,608:6630773,43947494:0,639631,134348 +g4609,560:7941493,43947494 +g4609,560:7941493,43947494 +g4609,560:11658694,43947494 +k4609,561:15657046,43947494:2802975 +k4609,561:18460021,43947494:2802975 +) +(4609,562:6630773,44827131:11829248,505283,126483 +h4609,561:6630773,44827131:0,0,0 +r4609,608:6630773,44827131:0,631766,126483 +g4609,561:7941493,44827131 +g4609,561:7941493,44827131 +g4609,561:11594469,44827131 +g4609,561:13162745,44827131 +g4609,561:14731021,44827131 +k4609,562:17193210,44827131:1266812 +k4609,562:18460021,44827131:1266811 +) +(4609,563:6630773,45706769:11829248,505283,126483 +h4609,562:6630773,45706769:0,0,0 +r4609,608:6630773,45706769:0,631766,126483 +g4609,562:7941493,45706769 +g4609,562:7941493,45706769 +g4609,562:10825076,45706769 +k4609,563:15240237,45706769:3219784 +k4609,563:18460021,45706769:3219784 +) +] +k4609,608:19606901,45706769:1146880 +r4609,608:19606901,45706769:0,40234515,126483 +k4609,608:20753781,45706769:1146880 +[4609,608:20753781,45706769:11829248,40108032,126483 +(4609,564:20753781,6254097:11829248,505283,102891 +h4609,563:20753781,6254097:0,0,0 +r4609,608:20753781,6254097:0,608174,102891 +g4609,563:22064501,6254097 +g4609,563:22064501,6254097 +g4609,563:25612619,6254097 +k4609,564:29695513,6254097:2887517 +k4609,564:32583029,6254097:2887516 +) +(4609,565:20753781,7132615:11829248,505283,102891 +h4609,564:20753781,7132615:0,0,0 +r4609,608:20753781,7132615:0,608174,102891 +g4609,564:22064501,7132615 +g4609,564:22064501,7132615 +g4609,564:24527343,7132615 +g4609,564:26095619,7132615 +g4609,564:29186952,7132615 +g4609,564:30755228,7132615 +k4609,564:32583029,7132615:545262 +) +(4609,565:23375221,7997695:9207808,485622,11795 +k4609,565:28566983,7997695:4016046 +k4609,565:32583029,7997695:4016046 +) +(4609,566:20753781,8876212:11829248,505283,102891 +h4609,565:20753781,8876212:0,0,0 +r4609,608:20753781,8876212:0,608174,102891 +g4609,565:22064501,8876212 +g4609,565:22064501,8876212 +g4609,565:24850436,8876212 +g4609,565:26418712,8876212 +k4609,566:30098559,8876212:2484470 +k4609,566:32583029,8876212:2484470 +) +(4609,567:20753781,9754730:11829248,505283,102891 +h4609,566:20753781,9754730:0,0,0 +r4609,608:20753781,9754730:0,608174,102891 +g4609,566:22064501,9754730 +g4609,566:22064501,9754730 +g4609,566:25442881,9754730 +k4609,567:29600813,9754730:2982216 +k4609,567:32583029,9754730:2982216 +) +(4609,568:20753781,10633248:11829248,505283,126483 +h4609,567:20753781,10633248:0,0,0 +r4609,608:20753781,10633248:0,631766,126483 +g4609,567:22064501,10633248 +g4609,567:22064501,10633248 +g4609,567:24932356,10633248 +k4609,568:28947092,10633248:3635938 +k4609,568:32583029,10633248:3635937 +) +(4609,569:20753781,11511766:11829248,505283,126483 +h4609,568:20753781,11511766:0,0,0 +r4609,608:20753781,11511766:0,631766,126483 +g4609,568:22064501,11511766 +g4609,568:22064501,11511766 +g4609,568:25364238,11511766 +k4609,569:29561492,11511766:3021538 +k4609,569:32583029,11511766:3021537 +) +(4609,570:20753781,12390283:11829248,505283,126483 +h4609,569:20753781,12390283:0,0,0 +r4609,608:20753781,12390283:0,631766,126483 +g4609,569:22064501,12390283 +g4609,569:22064501,12390283 +g4609,569:25779081,12390283 +k4609,570:29768913,12390283:2814116 +k4609,570:32583029,12390283:2814116 +) +(4609,571:20753781,13268801:11829248,505283,102891 +h4609,570:20753781,13268801:0,0,0 +r4609,608:20753781,13268801:0,608174,102891 +g4609,570:22064501,13268801 +g4609,570:22064501,13268801 +g4609,570:25822335,13268801 +k4609,571:29790540,13268801:2792489 +k4609,571:32583029,13268801:2792489 +) +(4609,572:20753781,14147319:11829248,505283,102891 +h4609,571:20753781,14147319:0,0,0 +r4609,608:20753781,14147319:0,608174,102891 +g4609,571:22064501,14147319 +g4609,571:22064501,14147319 +g4609,571:25656528,14147319 +g4609,571:27224804,14147319 +k4609,572:30491775,14147319:2091255 +k4609,572:32583029,14147319:2091254 +) +(4609,573:20753781,15025837:11829248,505283,102891 +h4609,572:20753781,15025837:0,0,0 +r4609,608:20753781,15025837:0,608174,102891 +g4609,572:22064501,15025837 +g4609,572:22064501,15025837 +g4609,572:25277730,15025837 +k4609,573:29528068,15025837:3054961 +k4609,573:32583029,15025837:3054961 +) +(4609,574:20753781,15904354:11829248,505283,102891 +h4609,573:20753781,15904354:0,0,0 +r4609,608:20753781,15904354:0,608174,102891 +g4609,573:22064501,15904354 +g4609,573:22064501,15904354 +g4609,573:24770482,15904354 +k4609,574:30035972,15904354:2547057 +k4609,574:32583029,15904354:2547057 +) +(4609,575:20753781,16782872:11829248,513147,102891 +h4609,574:20753781,16782872:0,0,0 +r4609,608:20753781,16782872:0,616038,102891 +g4609,574:22064501,16782872 +g4609,574:22064501,16782872 +g4609,574:23425683,16782872 +g4609,574:24993959,16782872 +k4609,575:29386183,16782872:3196847 +k4609,575:32583029,16782872:3196846 +) +(4609,576:20753781,17661390:11829248,505283,102891 +h4609,575:20753781,17661390:0,0,0 +r4609,608:20753781,17661390:0,608174,102891 +g4609,575:22064501,17661390 +g4609,575:22064501,17661390 +g4609,575:25755488,17661390 +k4609,576:29766947,17661390:2816082 +k4609,576:32583029,17661390:2816082 +) +(4609,577:20753781,18539908:11829248,505283,102891 +h4609,576:20753781,18539908:0,0,0 +r4609,608:20753781,18539908:0,608174,102891 +g4609,576:22064501,18539908 +g4609,576:22064501,18539908 +g4609,576:24370712,18539908 +g4609,576:25938988,18539908 +g4609,576:27507264,18539908 +k4609,577:30642835,18539908:1940194 +k4609,577:32583029,18539908:1940194 +) +(4609,578:20753781,19418425:11829248,505283,134348 +h4609,577:20753781,19418425:0,0,0 +r4609,608:20753781,19418425:0,639631,134348 +g4609,577:22064501,19418425 +g4609,577:22064501,19418425 +g4609,577:24970367,19418425 +k4609,578:29374387,19418425:3208643 +k4609,578:32583029,19418425:3208642 +) +(4609,579:20753781,20296943:11829248,505283,102891 +h4609,578:20753781,20296943:0,0,0 +r4609,608:20753781,20296943:0,608174,102891 +g4609,578:22064501,20296943 +g4609,578:22064501,20296943 +g4609,578:25140760,20296943 +g4609,578:26310577,20296943 +k4609,579:30044492,20296943:2538538 +k4609,579:32583029,20296943:2538537 +) +(4609,580:20753781,21175461:11829248,505283,102891 +h4609,579:20753781,21175461:0,0,0 +r4609,608:20753781,21175461:0,608174,102891 +g4609,579:22064501,21175461 +g4609,579:22064501,21175461 +g4609,579:24666279,21175461 +g4609,579:25836096,21175461 +g4609,579:27005913,21175461 +g4609,579:28574189,21175461 +g4609,579:30142465,21175461 +k4609,579:32583029,21175461:1158025 +) +(4609,580:23375221,22040541:9207808,485622,102891 +g4609,579:24943497,22040541 +k4609,580:29360952,22040541:3222078 +k4609,580:32583029,22040541:3222077 +) +(4609,581:20753781,22919059:11829248,505283,126483 +h4609,580:20753781,22919059:0,0,0 +r4609,608:20753781,22919059:0,631766,126483 +g4609,580:22064501,22919059 +g4609,580:22064501,22919059 +g4609,580:24782934,22919059 +k4609,581:29280670,22919059:3302359 +k4609,581:32583029,22919059:3302359 +) +(4609,582:20753781,23797576:11829248,505283,126483 +h4609,581:20753781,23797576:0,0,0 +r4609,608:20753781,23797576:0,631766,126483 +g4609,581:22064501,23797576 +g4609,581:22064501,23797576 +g4609,581:24309108,23797576 +g4609,581:27400441,23797576 +g4609,581:30491774,23797576 +k4609,582:32125260,23797576:457770 +k4609,582:32583029,23797576:457769 +) +(4609,584:20753781,24676094:11829248,505283,126483 +h4609,582:20753781,24676094:0,0,0 +r4609,608:20753781,24676094:0,631766,126483 +g4609,582:22064501,24676094 +g4609,582:22064501,24676094 +g4609,582:25712234,24676094 +g4609,582:27209731,24676094 +g4609,582:28379548,24676094 +k4609,582:32583029,24676094:2920942 +) +(4609,584:23375221,25541174:9207808,485622,102891 +g4609,582:26466554,25541174 +g4609,582:28034830,25541174 +g4609,582:29603106,25541174 +g4609,583:31171382,25541174 +k4609,583:32583029,25541174:129108 +) +(4609,584:23375221,26406254:9207808,485622,102891 +g4609,583:24943497,26406254 +g4609,583:26511773,26406254 +g4609,583:28080049,26406254 +g4609,583:29648325,26406254 +g4609,583:31216601,26406254 +k4609,583:32583029,26406254:83889 +) +(4609,584:23375221,27271334:9207808,485622,102891 +g4609,583:24943497,27271334 +k4609,584:29351121,27271334:3231908 +k4609,584:32583029,27271334:3231908 +) +(4609,585:20753781,28149852:11829248,505283,102891 +h4609,584:20753781,28149852:0,0,0 +r4609,608:20753781,28149852:0,608174,102891 +g4609,584:22064501,28149852 +g4609,584:22064501,28149852 +g4609,584:24424452,28149852 +k4609,585:29101429,28149852:3481600 +k4609,585:32583029,28149852:3481600 +) +(4609,586:20753781,29028370:11829248,485622,134348 +h4609,585:20753781,29028370:0,0,0 +r4609,608:20753781,29028370:0,619970,134348 +g4609,585:22064501,29028370 +g4609,585:22064501,29028370 +g4609,585:24172794,29028370 +k4609,586:28975600,29028370:3607429 +k4609,586:32583029,29028370:3607429 +) +(4609,587:20753781,29906887:11829248,505283,102891 +h4609,586:20753781,29906887:0,0,0 +r4609,608:20753781,29906887:0,608174,102891 +g4609,586:22064501,29906887 +g4609,586:22064501,29906887 +g4609,586:24215392,29906887 +g4609,586:25783668,29906887 +g4609,586:27351944,29906887 +g4609,586:28920220,29906887 +k4609,587:31349313,29906887:1233716 +k4609,587:32583029,29906887:1233716 +) +(4609,588:20753781,30785405:11829248,505283,126483 +h4609,587:20753781,30785405:0,0,0 +r4609,608:20753781,30785405:0,631766,126483 +g4609,587:22064501,30785405 +g4609,587:22064501,30785405 +g4609,587:24666935,30785405 +g4609,587:26235211,30785405 +g4609,587:29326544,30785405 +k4609,588:31542645,30785405:1040385 +k4609,588:32583029,30785405:1040384 +) +(4609,589:20753781,31663923:11829248,505283,102891 +h4609,588:20753781,31663923:0,0,0 +r4609,608:20753781,31663923:0,608174,102891 +g4609,588:22064501,31663923 +g4609,588:22064501,31663923 +g4609,588:24178036,31663923 +g4609,588:25746312,31663923 +k4609,589:29762359,31663923:2820670 +k4609,589:32583029,31663923:2820670 +) +(4609,590:20753781,32542441:11829248,505283,102891 +h4609,589:20753781,32542441:0,0,0 +r4609,608:20753781,32542441:0,608174,102891 +g4609,589:22064501,32542441 +g4609,589:22064501,32542441 +g4609,589:24469671,32542441 +k4609,590:29124039,32542441:3458991 +k4609,590:32583029,32542441:3458990 +) +(4609,591:20753781,33420958:11829248,505283,126483 +h4609,590:20691522,33420958:0,0,0 +g4609,590:22635974,33420958 +g4609,590:24204250,33420958 +k4609,591:28991328,33420958:3591701 +k4609,591:32583029,33420958:3591701 +) +(4609,592:20753781,34299476:11829248,505283,126483 +h4609,591:20691522,34299476:0,0,0 +g4609,591:23816278,34299476 +k4609,592:28797342,34299476:3785687 +k4609,592:32583029,34299476:3785687 +) +(4609,593:20753781,35177994:11829248,505283,102891 +h4609,592:20753781,35177994:0,0,0 +g4609,592:23071133,35177994 +g4609,592:24240950,35177994 +g4609,592:25410767,35177994 +k4609,593:29594587,35177994:2988443 +k4609,593:32583029,35177994:2988442 +) +(4609,594:20753781,36056512:11829248,505283,126483 +h4609,593:20691522,36056512:0,0,0 +g4609,593:24798007,36056512 +g4609,593:26366283,36056512 +k4609,594:30062514,36056512:2520515 +k4609,594:32583029,36056512:2520515 +) +(4609,595:20753781,36935029:11829248,505283,126483 +h4609,594:20753781,36935029:0,0,0 +g4609,594:22445265,36935029 +g4609,594:23611805,36935029 +g4609,594:26652675,36935029 +k4609,594:32583029,36935029:2002781 +) +(4609,595:23375221,37800109:9207808,505283,126483 +k4609,595:29256422,37800109:3326608 +k4609,595:32583029,37800109:3326607 +) +(4609,596:20753781,38678627:11829248,505283,102891 +h4609,595:20753781,38678627:0,0,0 +g4609,595:22311571,38678627 +k4609,596:27845759,38678627:4737270 +k4609,596:32583029,38678627:4737270 +) +(4609,597:20753781,39557145:11829248,485622,126483 +h4609,596:20753781,39557145:0,0,0 +g4609,596:22343029,39557145 +g4609,596:25462542,39557145 +g4609,596:27030818,39557145 +k4609,597:30404612,39557145:2178417 +k4609,597:32583029,39557145:2178417 +) +(4609,598:20753781,40435663:11829248,473825,126483 +h4609,597:20753781,40435663:0,0,0 +k4609,598:27528565,40435663:5054464 +k4609,598:32583029,40435663:5054464 +) +(4609,599:20753781,41314180:11829248,505283,102891 +h4609,598:20753781,41314180:0,0,0 +r4609,608:20753781,41314180:0,608174,102891 +g4609,598:22064501,41314180 +g4609,598:22064501,41314180 +g4609,598:23697658,41314180 +g4609,598:24515547,41314180 +k4609,599:29898674,41314180:2684355 +k4609,599:32583029,41314180:2684355 +) +(4609,600:20753781,42192698:11829248,505283,126483 +h4609,599:20753781,42192698:0,0,0 +r4609,608:20753781,42192698:0,631766,126483 +g4609,599:22064501,42192698 +g4609,599:22064501,42192698 +g4609,599:26034016,42192698 +g4609,599:26849283,42192698 +g4609,599:28255685,42192698 +k4609,600:31007215,42192698:1575814 +k4609,600:32583029,42192698:1575814 +) +(4609,601:20753781,43071216:11829248,505283,126483 +h4609,600:20753781,43071216:0,0,0 +r4609,608:20753781,43071216:0,631766,126483 +g4609,600:22064501,43071216 +g4609,600:22064501,43071216 +g4609,600:25347854,43071216 +k4609,601:29563130,43071216:3019899 +k4609,601:32583029,43071216:3019899 +) +(4609,602:20753781,43949734:11829248,485622,126483 +h4609,601:20753781,43949734:0,0,0 +r4609,608:20753781,43949734:0,612105,126483 +g4609,601:22064501,43949734 +g4609,601:22064501,43949734 +g4609,601:24311730,43949734 +k4609,602:29806596,43949734:2776433 +k4609,602:32583029,43949734:2776433 +) +(4609,603:20753781,44828251:11829248,505283,134348 +h4609,602:20691522,44828251:0,0,0 +g4609,602:24408723,44828251 +k4609,603:29093565,44828251:3489465 +k4609,603:32583029,44828251:3489464 +) +(4609,604:20753781,45706769:11829248,505283,126483 +h4609,603:20753781,45706769:0,0,0 +g4609,603:24051552,45706769 +k4609,604:28905149,45706769:3677881 +k4609,604:32583029,45706769:3677880 +) +] +(4609,608:32583029,45706769:0,355205,126483 +h4609,608:32583029,45706769:420741,355205,126483 +k4609,608:32583029,45706769:-420741 +) +) +] +(4609,608:32583029,45706769:0,0,0 +g4609,608:32583029,45706769 +) +) +] +(4609,608:6630773,47279633:25952256,0,0 +h4609,608:6630773,47279633:25952256,0,0 +) +] +(4609,608:4262630,4025873:0,0,0 +[4609,608:-473656,4025873:0,0,0 +(4609,608:-473656,-710413:0,0,0 +(4609,608:-473656,-710413:0,0,0 +g4609,608:-473656,-710413 +) +g4609,608:-473656,-710413 +) +] +) +] +!29175 +}441 !12 -{441 -[4605,696:4262630,47279633:28320399,43253760,0 -(4605,696:4262630,4025873:0,0,0 -[4605,696:-473656,4025873:0,0,0 -(4605,696:-473656,-710413:0,0,0 -(4605,696:-473656,-644877:0,0,0 -k4605,696:-473656,-644877:-65536 +{442 +[4609,697:4262630,47279633:28320399,43253760,0 +(4609,697:4262630,4025873:0,0,0 +[4609,697:-473656,4025873:0,0,0 +(4609,697:-473656,-710413:0,0,0 +(4609,697:-473656,-644877:0,0,0 +k4609,697:-473656,-644877:-65536 ) -(4605,696:-473656,4736287:0,0,0 -k4605,696:-473656,4736287:5209943 +(4609,697:-473656,4736287:0,0,0 +k4609,697:-473656,4736287:5209943 ) -g4605,696:-473656,-710413 +g4609,697:-473656,-710413 ) ] ) -[4605,696:6630773,47279633:25952256,43253760,0 -[4605,696:6630773,4812305:25952256,786432,0 -(4605,696:6630773,4812305:25952256,505283,11795 -(4605,696:6630773,4812305:25952256,505283,11795 -g4605,696:3078558,4812305 -[4605,696:3078558,4812305:0,0,0 -(4605,696:3078558,2439708:0,1703936,0 -k4605,696:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,696:2537886,2439708:1179648,16384,0 +[4609,697:6630773,47279633:25952256,43253760,0 +[4609,697:6630773,4812305:25952256,786432,0 +(4609,697:6630773,4812305:25952256,505283,11795 +(4609,697:6630773,4812305:25952256,505283,11795 +g4609,697:3078558,4812305 +[4609,697:3078558,4812305:0,0,0 +(4609,697:3078558,2439708:0,1703936,0 +k4609,697:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,697:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,696:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,697:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,696:3078558,4812305:0,0,0 -(4605,696:3078558,2439708:0,1703936,0 -g4605,696:29030814,2439708 -g4605,696:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,696:36151628,1915420:16384,1179648,0 +[4609,697:3078558,4812305:0,0,0 +(4609,697:3078558,2439708:0,1703936,0 +g4609,697:29030814,2439708 +g4609,697:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,697:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,696:37855564,2439708:1179648,16384,0 -) -) -k4605,696:3078556,2439708:-34777008 -) -] -[4605,696:3078558,4812305:0,0,0 -(4605,696:3078558,49800853:0,16384,2228224 -k4605,696:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,696:2537886,49800853:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,697:37855564,2439708:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,696:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,697:3078556,2439708:-34777008 ) ] +[4609,697:3078558,4812305:0,0,0 +(4609,697:3078558,49800853:0,16384,2228224 +k4609,697:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,697:2537886,49800853:1179648,16384,0 ) +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,697:3078558,51504789:16384,1179648,0 ) -) -] -[4605,696:3078558,4812305:0,0,0 -(4605,696:3078558,49800853:0,16384,2228224 -g4605,696:29030814,49800853 -g4605,696:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,696:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,696:37855564,49800853:1179648,16384,0 ) ) -k4605,696:3078556,49800853:-34777008 -) -] -g4605,696:6630773,4812305 -k4605,696:28201292,4812305:20375142 -g4605,696:30884336,4812305 -) -) -] -[4605,696:6630773,45706769:25952256,40108032,0 -(4605,696:6630773,45706769:25952256,40108032,0 -(4605,696:6630773,45706769:0,0,0 -g4605,696:6630773,45706769 -) -[4605,696:6630773,45706769:25952256,40108032,0 -(4605,696:6630773,45706769:25952256,40108032,126483 -[4605,696:6630773,45706769:11829248,40108032,126483 -(4605,604:6630773,6254097:11829248,485622,126483 -h4605,603:6630773,6254097:0,0,0 -r4605,696:6630773,6254097:0,612105,126483 -g4605,603:7941493,6254097 -g4605,603:7941493,6254097 -g4605,603:10188722,6254097 -k4605,604:15683588,6254097:2776433 -k4605,604:18460021,6254097:2776433 -) -(4605,605:6630773,7130823:11829248,505283,134348 -h4605,604:6568514,7130823:0,0,0 -g4605,604:10285715,7130823 -k4605,605:14970557,7130823:3489465 -k4605,605:18460021,7130823:3489464 -) -(4605,606:6630773,8007549:11829248,505283,126483 -h4605,605:6630773,8007549:0,0,0 -g4605,605:9928544,8007549 -k4605,606:14782141,8007549:3677881 -k4605,606:18460021,8007549:3677880 -) -(4605,607:6630773,8884275:11829248,505283,126483 -h4605,606:6630773,8884275:0,0,0 -k4605,607:13349196,8884275:5110825 -k4605,607:18460021,8884275:5110825 -) -(4605,608:6630773,9761001:11829248,505283,102891 -h4605,607:6630773,9761001:0,0,0 -r4605,696:6630773,9761001:0,608174,102891 -g4605,607:7941493,9761001 -g4605,607:7941493,9761001 -g4605,607:11488956,9761001 -k4605,608:15562347,9761001:2897675 -k4605,608:18460021,9761001:2897674 -) -(4605,609:6630773,10637727:11829248,485622,126483 -h4605,608:6630773,10637727:0,0,0 -r4605,696:6630773,10637727:0,612105,126483 -g4605,608:7941493,10637727 -g4605,608:7941493,10637727 -g4605,608:9393115,10637727 -g4605,608:12380246,10637727 -k4605,609:16017822,10637727:2442199 -k4605,609:18460021,10637727:2442199 -) -(4605,610:6630773,11514453:11829248,505283,134348 -h4605,609:6630773,11514453:0,0,0 -r4605,696:6630773,11514453:0,639631,134348 -g4605,609:7941493,11514453 -g4605,609:7941493,11514453 -g4605,609:9574650,11514453 -g4605,609:10218868,11514453 -g4605,609:13310856,11514453 -k4605,610:16473297,11514453:1986725 -k4605,610:18460021,11514453:1986724 -) -(4605,611:6630773,12391179:11829248,505283,126483 -h4605,610:6630773,12391179:0,0,0 -r4605,696:6630773,12391179:0,631766,126483 -g4605,610:7941493,12391179 -g4605,610:7941493,12391179 -g4605,610:10395816,12391179 -g4605,610:12927471,12391179 -k4605,611:16291435,12391179:2168587 -k4605,611:18460021,12391179:2168586 -) -(4605,612:6630773,13267905:11829248,505283,126483 -h4605,611:6630773,13267905:0,0,0 -r4605,696:6630773,13267905:0,631766,126483 -g4605,611:7941493,13267905 -g4605,611:7941493,13267905 -g4605,611:9300709,13267905 -g4605,611:10691383,13267905 -g4605,611:13716524,13267905 -g4605,611:15366720,13267905 -k4605,612:18272587,13267905:187434 -k4605,612:18460021,13267905:187434 -) -(4605,613:6630773,14144631:11829248,505283,126483 -h4605,612:6630773,14144631:0,0,0 -r4605,696:6630773,14144631:0,631766,126483 -g4605,612:7941493,14144631 -g4605,612:7941493,14144631 -g4605,612:10309308,14144631 -g4605,612:11959504,14144631 -k4605,613:15807451,14144631:2652570 -k4605,613:18460021,14144631:2652570 -) -(4605,614:6630773,15021357:11829248,485622,126483 -h4605,613:6630773,15021357:0,0,0 -r4605,696:6630773,15021357:0,612105,126483 -g4605,613:7941493,15021357 -g4605,613:7941493,15021357 -g4605,613:10692039,15021357 -k4605,614:15925416,15021357:2534605 -k4605,614:18460021,15021357:2534605 -) -(4605,615:6630773,15898083:11829248,505283,102891 -h4605,614:6630773,15898083:0,0,0 -r4605,696:6630773,15898083:0,608174,102891 -g4605,614:7941493,15898083 -g4605,614:7941493,15898083 -g4605,614:10735292,15898083 -k4605,615:15947043,15898083:2512979 -k4605,615:18460021,15898083:2512978 -) -(4605,616:6630773,16774810:11829248,505283,126483 -h4605,615:6630773,16774810:0,0,0 -r4605,696:6630773,16774810:0,631766,126483 -g4605,615:7941493,16774810 -g4605,615:7941493,16774810 -g4605,615:10523611,16774810 -g4605,615:12173807,16774810 -k4605,616:16666300,16774810:1793721 -k4605,616:18460021,16774810:1793721 -) -(4605,617:6630773,17651536:11829248,485622,134348 -h4605,616:6630773,17651536:0,0,0 -r4605,696:6630773,17651536:0,619970,134348 -g4605,616:7941493,17651536 -g4605,616:7941493,17651536 -g4605,616:11798286,17651536 -k4605,617:16478540,17651536:1981482 -k4605,617:18460021,17651536:1981481 -) -(4605,618:6630773,18528262:11829248,505283,134348 -h4605,617:6630773,18528262:0,0,0 -r4605,696:6630773,18528262:0,639631,134348 -g4605,617:7941493,18528262 -g4605,617:7941493,18528262 -g4605,617:11421454,18528262 -g4605,617:13938036,18528262 -k4605,618:16786887,18528262:1673135 -k4605,618:18460021,18528262:1673134 -) -(4605,619:6630773,19404988:11829248,505283,126483 -h4605,618:6630773,19404988:0,0,0 -r4605,696:6630773,19404988:0,631766,126483 -g4605,618:7941493,19404988 -g4605,618:7941493,19404988 -g4605,618:11969335,19404988 -g4605,618:14416449,19404988 -k4605,619:17035924,19404988:1424098 -k4605,619:18460021,19404988:1424097 -) -(4605,620:6630773,20281714:11829248,505283,102891 -h4605,619:6630773,20281714:0,0,0 -r4605,696:6630773,20281714:0,608174,102891 -g4605,619:7941493,20281714 -g4605,619:7941493,20281714 -g4605,619:9530085,20281714 -g4605,619:13411127,20281714 -k4605,620:17294791,20281714:1165231 -k4605,620:18460021,20281714:1165230 -) -(4605,621:6630773,21158440:11829248,505283,126483 -h4605,620:6630773,21158440:0,0,0 -r4605,696:6630773,21158440:0,631766,126483 -g4605,620:7941493,21158440 -g4605,620:7941493,21158440 -g4605,620:10473148,21158440 -k4605,621:15105233,21158440:3354788 -k4605,621:18460021,21158440:3354788 -) -(4605,622:6630773,22035166:11829248,505283,102891 -h4605,621:6630773,22035166:0,0,0 -r4605,696:6630773,22035166:0,608174,102891 -g4605,621:8596853,22035166 -g4605,621:8596853,22035166 -g4605,621:9194541,22035166 -g4605,621:12912398,22035166 -k4605,622:17035596,22035166:1424426 -k4605,622:18460021,22035166:1424425 -) -(4605,623:6630773,22911892:11829248,505283,102891 -h4605,622:6630773,22911892:0,0,0 -r4605,696:6630773,22911892:0,608174,102891 -g4605,622:8596853,22911892 -g4605,622:8596853,22911892 -g4605,622:9194541,22911892 -g4605,622:13242699,22911892 -k4605,623:17210577,22911892:1249445 -k4605,623:18460021,22911892:1249444 -) -(4605,624:6630773,23788618:11829248,505283,126483 -h4605,623:6630773,23788618:0,0,0 -r4605,696:6630773,23788618:0,631766,126483 -g4605,623:7941493,23788618 -g4605,623:7941493,23788618 -g4605,623:9212891,23788618 -g4605,623:10863087,23788618 -k4605,624:16020771,23788618:2439251 -k4605,624:18460021,23788618:2439250 -) -(4605,625:6630773,24665344:11829248,505283,102891 -h4605,624:6630773,24665344:0,0,0 -r4605,696:6630773,24665344:0,608174,102891 -g4605,624:7941493,24665344 -g4605,624:7941493,24665344 -g4605,624:9747665,24665344 -g4605,624:11495510,24665344 -k4605,625:15565624,24665344:2894398 -k4605,625:18460021,24665344:2894397 -) -(4605,626:6630773,25542070:11829248,513147,126483 -h4605,625:6630773,25542070:0,0,0 -r4605,696:6630773,25542070:0,639630,126483 -g4605,625:7941493,25542070 -g4605,625:7941493,25542070 -g4605,625:11310043,25542070 -g4605,625:12960239,25542070 -k4605,626:17069347,25542070:1390675 -k4605,626:18460021,25542070:1390674 -) -(4605,627:6630773,26418796:11829248,513147,102891 -h4605,626:6630773,26418796:0,0,0 -r4605,696:6630773,26418796:0,616038,102891 -g4605,626:7941493,26418796 -g4605,626:7941493,26418796 -g4605,626:9853178,26418796 -g4605,626:12297670,26418796 -k4605,627:16728232,26418796:1731790 -k4605,627:18460021,26418796:1731789 -) -(4605,628:6630773,27295522:11829248,513147,102891 -h4605,627:6630773,27295522:0,0,0 -r4605,696:6630773,27295522:0,616038,102891 -g4605,627:7941493,27295522 -g4605,627:7941493,27295522 -g4605,627:9975730,27295522 -k4605,628:14815564,27295522:3644457 -k4605,628:18460021,27295522:3644457 -) -(4605,629:6630773,28172248:11829248,505283,134348 -h4605,628:6630773,28172248:0,0,0 -r4605,696:6630773,28172248:0,639631,134348 -g4605,628:7941493,28172248 -g4605,628:7941493,28172248 -g4605,628:11880862,28172248 -k4605,629:16529658,28172248:1930363 -k4605,629:18460021,28172248:1930363 -) -(4605,630:6630773,29048974:11829248,505283,134348 -h4605,629:6630773,29048974:0,0,0 -r4605,696:6630773,29048974:0,639631,134348 -g4605,629:7941493,29048974 -g4605,629:7941493,29048974 -g4605,629:9691304,29048974 -g4605,629:12840308,29048974 -g4605,629:15503035,29048974 -k4605,630:18330914,29048974:129107 -k4605,630:18460021,29048974:129107 -) -(4605,631:6630773,29925700:11829248,505283,126483 -h4605,630:6630773,29925700:0,0,0 -r4605,696:6630773,29925700:0,631766,126483 -g4605,630:7941493,29925700 -g4605,630:7941493,29925700 -g4605,630:9691304,29925700 -g4605,630:11671802,29925700 -k4605,631:16425128,29925700:2034893 -k4605,631:18460021,29925700:2034893 -) -(4605,632:6630773,30802426:11829248,505283,102891 -h4605,631:6630773,30802426:0,0,0 -r4605,696:6630773,30802426:0,608174,102891 -g4605,631:7941493,30802426 -g4605,631:7941493,30802426 -g4605,631:9691304,30802426 -g4605,631:11960160,30802426 -k4605,632:16569307,30802426:1890714 -k4605,632:18460021,30802426:1890714 -) -(4605,633:6630773,31679152:11829248,485622,102891 -h4605,632:6630773,31679152:0,0,0 -r4605,696:6630773,31679152:0,588513,102891 -g4605,632:7941493,31679152 -g4605,632:7941493,31679152 -g4605,632:10195276,31679152 -k4605,633:15686865,31679152:2773156 -k4605,633:18460021,31679152:2773156 -) -(4605,634:6630773,32555878:11829248,485622,102891 -h4605,633:6630773,32555878:0,0,0 -r4605,696:6630773,32555878:0,588513,102891 -g4605,633:7941493,32555878 -g4605,633:7941493,32555878 -g4605,633:10021605,32555878 -g4605,633:10906996,32555878 -g4605,633:15070498,32555878 -k4605,634:18114646,32555878:345376 -k4605,634:18460021,32555878:345375 -) -(4605,635:6630773,33432604:11829248,505283,102891 -h4605,634:6630773,33432604:0,0,0 -r4605,696:6630773,33432604:0,608174,102891 -g4605,634:7941493,33432604 -g4605,634:7941493,33432604 -g4605,634:10158576,33432604 -k4605,635:15658685,33432604:2801337 -k4605,635:18460021,33432604:2801336 -) -(4605,636:6630773,34309330:11829248,505283,126483 -h4605,635:6630773,34309330:0,0,0 -r4605,696:6630773,34309330:0,631766,126483 -g4605,635:7941493,34309330 -g4605,635:7941493,34309330 -g4605,635:10202485,34309330 -g4605,635:11770761,34309330 -k4605,636:15703249,34309330:2756772 -k4605,636:18460021,34309330:2756772 -) -(4605,637:6630773,35186056:11829248,505283,126483 -h4605,636:6630773,35186056:0,0,0 -r4605,696:6630773,35186056:0,631766,126483 -g4605,636:7941493,35186056 -g4605,636:7941493,35186056 -g4605,636:9309229,35186056 -g4605,636:10959425,35186056 -k4605,637:16059109,35186056:2400912 -k4605,637:18460021,35186056:2400912 -) -(4605,638:6630773,36062783:11829248,485622,134348 -h4605,637:6630773,36062783:0,0,0 -r4605,696:6630773,36062783:0,619970,134348 -g4605,637:7941493,36062783 -g4605,637:7941493,36062783 -g4605,637:10026193,36062783 -g4605,637:11477815,36062783 -g4605,637:15167491,36062783 -k4605,638:17401614,36062783:1058407 -k4605,638:18460021,36062783:1058407 -) -(4605,639:6630773,36939509:11829248,505283,126483 -h4605,638:6630773,36939509:0,0,0 -r4605,696:6630773,36939509:0,631766,126483 -g4605,638:7941493,36939509 -g4605,638:7941493,36939509 -g4605,638:9867596,36939509 -g4605,638:11258270,36939509 -g4605,638:13583487,36939509 -g4605,638:15563985,36939509 -k4605,639:17609692,36939509:850330 -k4605,639:18460021,36939509:850329 -) -(4605,640:6630773,37816235:11829248,505283,126483 -h4605,639:6630773,37816235:0,0,0 -r4605,696:6630773,37816235:0,631766,126483 -g4605,639:7941493,37816235 -g4605,639:7941493,37816235 -g4605,639:9788297,37816235 -g4605,639:13931483,37816235 -k4605,640:17554969,37816235:905053 -k4605,640:18460021,37816235:905052 -) -(4605,641:6630773,38692961:11829248,505283,102891 -h4605,640:6630773,38692961:0,0,0 -r4605,696:6630773,38692961:0,608174,102891 -g4605,640:7941493,38692961 -g4605,640:7941493,38692961 -g4605,640:10118599,38692961 -g4605,640:11107537,38692961 -k4605,641:16142996,38692961:2317026 -k4605,641:18460021,38692961:2317025 -) -(4605,642:6630773,39569687:11829248,485622,102891 -h4605,641:6630773,39569687:0,0,0 -r4605,696:6630773,39569687:0,588513,102891 -g4605,641:7941493,39569687 -g4605,641:7941493,39569687 -g4605,641:10382709,39569687 -k4605,642:15009223,39569687:3450798 -k4605,642:18460021,39569687:3450798 -) -(4605,643:6630773,40446413:11829248,505283,102891 -h4605,642:6630773,40446413:0,0,0 -r4605,696:6630773,40446413:0,608174,102891 -g4605,642:7941493,40446413 -g4605,642:7941493,40446413 -g4605,642:11004645,40446413 -k4605,643:15320191,40446413:3139830 -k4605,643:18460021,40446413:3139830 -) -(4605,644:6630773,41323139:11829248,505283,102891 -h4605,643:6630773,41323139:0,0,0 -r4605,696:6630773,41323139:0,608174,102891 -g4605,643:7941493,41323139 -g4605,643:7941493,41323139 -g4605,643:10840150,41323139 -g4605,643:15247446,41323139 -k4605,644:18212950,41323139:247071 -k4605,644:18460021,41323139:247071 -) -(4605,645:6630773,42199865:11829248,513147,126483 -h4605,644:6630773,42199865:0,0,0 -r4605,696:6630773,42199865:0,639630,126483 -g4605,644:7941493,42199865 -g4605,644:7941493,42199865 -g4605,644:10299478,42199865 -g4605,644:11150135,42199865 -g4605,644:12836376,42199865 -k4605,645:16245887,42199865:2214134 -k4605,645:18460021,42199865:2214134 -) -(4605,646:6630773,43076591:11829248,485622,126483 -h4605,645:6630773,43076591:0,0,0 -r4605,696:6630773,43076591:0,612105,126483 -g4605,645:7941493,43076591 -g4605,645:7941493,43076591 -g4605,645:9378697,43076591 -g4605,645:11910352,43076591 -k4605,646:15782875,43076591:2677146 -k4605,646:18460021,43076591:2677146 -) -(4605,647:6630773,43953317:11829248,505283,126483 -h4605,646:6630773,43953317:0,0,0 -r4605,696:6630773,43953317:0,631766,126483 -g4605,646:7941493,43953317 -g4605,646:7941493,43953317 -g4605,646:9109999,43953317 -g4605,646:11462741,43953317 -k4605,647:15549239,43953317:2910782 -k4605,647:18460021,43953317:2910782 -) -(4605,648:6630773,44830043:11829248,513147,126483 -h4605,647:6630773,44830043:0,0,0 -r4605,696:6630773,44830043:0,639630,126483 -g4605,647:7941493,44830043 -g4605,647:7941493,44830043 -g4605,647:9748320,44830043 -g4605,647:10606841,44830043 -g4605,647:14005538,44830043 -k4605,648:17582166,44830043:877856 -k4605,648:18460021,44830043:877855 -) -(4605,649:6630773,45706769:11829248,485622,126483 -h4605,648:6630773,45706769:0,0,0 -r4605,696:6630773,45706769:0,612105,126483 -g4605,648:7941493,45706769 -g4605,648:7941493,45706769 -g4605,648:11329049,45706769 -g4605,648:13860704,45706769 -k4605,649:16758051,45706769:1701970 -k4605,649:18460021,45706769:1701970 -) -] -k4605,696:19606901,45706769:1146880 -r4605,696:19606901,45706769:0,40234515,126483 -k4605,696:20753781,45706769:1146880 -[4605,696:20753781,45706769:11829248,40108032,102891 -(4605,650:20753781,6254097:11829248,485622,134348 -h4605,649:20753781,6254097:0,0,0 -r4605,696:20753781,6254097:0,619970,134348 -g4605,649:22064501,6254097 -g4605,649:22064501,6254097 -g4605,649:25009689,6254097 -k4605,650:29394048,6254097:3188982 -k4605,650:32583029,6254097:3188981 -) -(4605,651:20753781,7131655:11829248,473825,134348 -h4605,650:20753781,7131655:0,0,0 -r4605,696:20753781,7131655:0,608173,134348 -g4605,650:22064501,7131655 -g4605,650:22064501,7131655 -g4605,650:26153292,7131655 -k4605,650:32583029,7131655:2308178 -) -(4605,651:23375221,7996735:9207808,485622,11795 -k4605,651:29338342,7996735:3244688 -k4605,651:32583029,7996735:3244687 -) -(4605,652:20753781,8874293:11829248,513147,102891 -h4605,651:20753781,8874293:0,0,0 -r4605,696:20753781,8874293:0,616038,102891 -g4605,651:22064501,8874293 -g4605,651:22064501,8874293 -g4605,651:25242997,8874293 -g4605,651:27114705,8874293 -k4605,652:30446556,8874293:2136474 -k4605,652:32583029,8874293:2136473 -) -(4605,653:20753781,9751851:11829248,505283,134348 -h4605,652:20753781,9751851:0,0,0 -r4605,696:20753781,9751851:0,639631,134348 -g4605,652:22064501,9751851 -g4605,652:22064501,9751851 -g4605,652:25534632,9751851 -k4605,653:29656519,9751851:2926510 -k4605,653:32583029,9751851:2926510 -) -(4605,654:20753781,10629409:11829248,513147,134348 -h4605,653:20753781,10629409:0,0,0 -r4605,696:20753781,10629409:0,647495,134348 -g4605,653:22064501,10629409 -g4605,653:22064501,10629409 -g4605,653:24634823,10629409 -g4605,653:26486215,10629409 -g4605,653:27518407,10629409 -k4605,654:30638576,10629409:1944453 -k4605,654:32583029,10629409:1944453 -) -(4605,655:20753781,11506967:11829248,485622,134348 -h4605,654:20753781,11506967:0,0,0 -r4605,696:20753781,11506967:0,619970,134348 -g4605,654:22064501,11506967 -g4605,654:22064501,11506967 -g4605,654:23341142,11506967 -g4605,654:25968480,11506967 -k4605,655:30634971,11506967:1948058 -k4605,655:32583029,11506967:1948058 -) -(4605,656:20753781,12384524:11829248,485622,134348 -h4605,655:20753781,12384524:0,0,0 -r4605,696:20753781,12384524:0,619970,134348 -g4605,655:22064501,12384524 -g4605,655:22064501,12384524 -g4605,655:24470983,12384524 -k4605,656:29124695,12384524:3458335 -k4605,656:32583029,12384524:3458334 -) -(4605,657:20753781,13262082:11829248,513147,134348 -h4605,656:20753781,13262082:0,0,0 -r4605,696:20753781,13262082:0,647495,134348 -g4605,656:22064501,13262082 -g4605,656:22064501,13262082 -g4605,656:24297312,13262082 -g4605,656:25147969,13262082 -g4605,656:26503908,13262082 -g4605,656:27670448,13262082 -k4605,656:32583029,13262082:3217820 -) -(4605,657:23375221,14127162:9207808,505283,134348 -k4605,657:29527741,14127162:3055289 -k4605,657:32583029,14127162:3055288 -) -(4605,658:20753781,15004720:11829248,505283,7863 -h4605,657:20753781,15004720:0,0,0 -r4605,696:20753781,15004720:0,513146,7863 -g4605,657:22064501,15004720 -g4605,657:22064501,15004720 -k4605,658:28275020,15004720:4308009 -k4605,658:32583029,15004720:4308009 -) -(4605,659:20753781,15882278:11829248,505283,102891 -h4605,658:20753781,15882278:0,0,0 -r4605,696:20753781,15882278:0,608174,102891 -g4605,658:22719861,15882278 -g4605,658:22719861,15882278 -g4605,658:24171483,15882278 -g4605,658:26388566,15882278 -k4605,659:30083486,15882278:2499543 -k4605,659:32583029,15882278:2499543 -) -(4605,660:20753781,16759836:11829248,505283,102891 -h4605,659:20753781,16759836:0,0,0 -r4605,696:20753781,16759836:0,608174,102891 -g4605,659:22719861,16759836 -g4605,659:22719861,16759836 -g4605,659:24907452,16759836 -k4605,660:29342929,16759836:3240100 -k4605,660:32583029,16759836:3240100 -) -(4605,661:20753781,17637394:11829248,505283,102891 -h4605,660:20753781,17637394:0,0,0 -r4605,696:20753781,17637394:0,608174,102891 -g4605,660:22719861,17637394 -g4605,660:22719861,17637394 -g4605,660:24103326,17637394 -g4605,660:26591072,17637394 -k4605,661:30174909,17637394:2408121 -k4605,661:32583029,17637394:2408120 -) -(4605,662:20753781,18514952:11829248,505283,102891 -h4605,661:20753781,18514952:0,0,0 -r4605,696:20753781,18514952:0,608174,102891 -g4605,661:22719861,18514952 -g4605,661:22719861,18514952 -g4605,661:24103326,18514952 -g4605,661:26320409,18514952 -k4605,662:30039577,18514952:2543452 -k4605,662:32583029,18514952:2543452 -) -(4605,663:20753781,19392510:11829248,513147,102891 -h4605,662:20753781,19392510:0,0,0 -r4605,696:20753781,19392510:0,616038,102891 -g4605,662:22719861,19392510 -g4605,662:22719861,19392510 -g4605,662:28260274,19392510 -k4605,663:31019340,19392510:1563689 -k4605,663:32583029,19392510:1563689 -) -(4605,664:20753781,20270068:11829248,505283,126483 -h4605,663:20753781,20270068:0,0,0 -r4605,696:20753781,20270068:0,631766,126483 -g4605,663:22064501,20270068 -g4605,663:22064501,20270068 -g4605,663:24432972,20270068 -g4605,663:26083168,20270068 -k4605,664:30682485,20270068:1900545 -k4605,664:32583029,20270068:1900544 -) -(4605,665:20753781,21147626:11829248,505283,126483 -h4605,664:20753781,21147626:0,0,0 -r4605,696:20753781,21147626:0,631766,126483 -g4605,664:22064501,21147626 -g4605,664:22064501,21147626 -g4605,664:25510384,21147626 -g4605,664:27281822,21147626 -k4605,665:30520284,21147626:2062746 -k4605,665:32583029,21147626:2062745 -) -(4605,666:20753781,22025183:11829248,505283,134348 -h4605,665:20753781,22025183:0,0,0 -r4605,696:20753781,22025183:0,639631,134348 -g4605,665:22064501,22025183 -g4605,665:22064501,22025183 -g4605,665:25284940,22025183 -g4605,665:26675614,22025183 -g4605,665:29226930,22025183 -k4605,666:31502668,22025183:1080361 -k4605,666:32583029,22025183:1080361 -) -(4605,667:20753781,22902741:11829248,505283,102891 -h4605,666:20753781,22902741:0,0,0 -r4605,696:20753781,22902741:0,608174,102891 -g4605,666:22064501,22902741 -g4605,666:22064501,22902741 -g4605,666:24674800,22902741 -g4605,666:27119292,22902741 -k4605,667:31200547,22902741:1382483 -k4605,667:32583029,22902741:1382482 -) -(4605,668:20753781,23780299:11829248,473825,7863 -h4605,667:20753781,23780299:0,0,0 -r4605,696:20753781,23780299:0,481688,7863 -g4605,667:22064501,23780299 -g4605,667:22064501,23780299 -k4605,668:28750484,23780299:3832545 -k4605,668:32583029,23780299:3832545 -) -(4605,669:20753781,24657857:11829248,505283,126483 -h4605,668:20753781,24657857:0,0,0 -r4605,696:20753781,24657857:0,631766,126483 -g4605,668:22719861,24657857 -g4605,668:22719861,24657857 -g4605,668:25425187,24657857 -k4605,669:29601797,24657857:2981233 -k4605,669:32583029,24657857:2981232 -) -(4605,670:20753781,25535415:11829248,505283,126483 -h4605,669:20753781,25535415:0,0,0 -r4605,696:20753781,25535415:0,631766,126483 -g4605,669:22719861,25535415 -g4605,669:22719861,25535415 -g4605,669:25251516,25535415 -g4605,669:26443615,25535415 -k4605,670:30101180,25535415:2481849 -k4605,670:32583029,25535415:2481849 -) -(4605,671:20753781,26412973:11829248,505283,102891 -h4605,670:20753781,26412973:0,0,0 -r4605,696:20753781,26412973:0,608174,102891 -g4605,670:22719861,26412973 -g4605,670:22719861,26412973 -g4605,670:25503830,26412973 -k4605,671:29641118,26412973:2941911 -k4605,671:32583029,26412973:2941911 -) -(4605,672:20753781,27290531:11829248,505283,126483 -h4605,671:20753781,27290531:0,0,0 -r4605,696:20753781,27290531:0,631766,126483 -g4605,671:22064501,27290531 -g4605,671:22064501,27290531 -g4605,671:23619015,27290531 -g4605,671:25269211,27290531 -k4605,672:29513978,27290531:3069051 -k4605,672:32583029,27290531:3069051 -) -(4605,673:20753781,28168089:11829248,505283,134348 -h4605,672:20753781,28168089:0,0,0 -r4605,696:20753781,28168089:0,639631,134348 -g4605,672:22064501,28168089 -g4605,672:22064501,28168089 -g4605,672:24581083,28168089 -k4605,673:29941273,28168089:2641757 -k4605,673:32583029,28168089:2641756 -) -(4605,674:20753781,29045647:11829248,505283,102891 -h4605,673:20753781,29045647:0,0,0 -r4605,696:20753781,29045647:0,608174,102891 -g4605,673:22064501,29045647 -g4605,673:22064501,29045647 -g4605,673:24850436,29045647 -k4605,674:30066119,29045647:2516911 -k4605,674:32583029,29045647:2516910 -) -(4605,675:20753781,29923205:11829248,485622,126483 -h4605,674:20753781,29923205:0,0,0 -r4605,696:20753781,29923205:0,612105,126483 -g4605,674:22064501,29923205 -g4605,674:22064501,29923205 -g4605,674:23556755,29923205 -g4605,674:26088410,29923205 -k4605,675:29933408,29923205:2649621 -k4605,675:32583029,29923205:2649621 -) -(4605,676:20753781,30800763:11829248,485622,134348 -h4605,675:20753781,30800763:0,0,0 -r4605,696:20753781,30800763:0,619970,134348 -g4605,675:22064501,30800763 -g4605,675:22064501,30800763 -g4605,675:23424373,30800763 -k4605,676:29353087,30800763:3229942 -k4605,676:32583029,30800763:3229942 -) -(4605,677:20753781,31678320:11829248,485622,102891 -h4605,676:20753781,31678320:0,0,0 -r4605,696:20753781,31678320:0,588513,102891 -g4605,676:22064501,31678320 -g4605,676:22064501,31678320 -g4605,676:23489909,31678320 -g4605,676:24478847,31678320 -k4605,677:29890155,31678320:2692875 -k4605,677:32583029,31678320:2692874 -) -(4605,678:20753781,32555878:11829248,505283,126483 -h4605,677:20753781,32555878:0,0,0 -r4605,696:20753781,32555878:0,631766,126483 -g4605,677:22064501,32555878 -g4605,677:22064501,32555878 -g4605,677:23274295,32555878 -g4605,677:24924491,32555878 -k4605,678:30112977,32555878:2470053 -k4605,678:32583029,32555878:2470052 -) -(4605,679:20753781,33433436:11829248,505283,102891 -h4605,678:20753781,33433436:0,0,0 -r4605,696:20753781,33433436:0,608174,102891 -g4605,678:22064501,33433436 -g4605,678:22064501,33433436 -g4605,678:23704867,33433436 -k4605,679:29493334,33433436:3089695 -k4605,679:32583029,33433436:3089695 -) -(4605,680:20753781,34310994:11829248,505283,102891 -h4605,679:20753781,34310994:0,0,0 -r4605,696:20753781,34310994:0,608174,102891 -g4605,679:22064501,34310994 -g4605,679:22064501,34310994 -g4605,679:25630970,34310994 -k4605,680:29704688,34310994:2878341 -k4605,680:32583029,34310994:2878341 -) -(4605,681:20753781,35188552:11829248,505283,126483 -h4605,680:20753781,35188552:0,0,0 -r4605,696:20753781,35188552:0,631766,126483 -g4605,680:22064501,35188552 -g4605,680:22064501,35188552 -g4605,680:24037790,35188552 -g4605,680:25687986,35188552 -k4605,681:29733196,35188552:2849833 -k4605,681:32583029,35188552:2849833 -) -(4605,682:20753781,36066110:11829248,505283,102891 -h4605,681:20753781,36066110:0,0,0 -r4605,696:20753781,36066110:0,608174,102891 -g4605,681:22064501,36066110 -g4605,681:22064501,36066110 -g4605,681:23821521,36066110 -g4605,681:25554948,36066110 -k4605,682:30428205,36066110:2154824 -k4605,682:32583029,36066110:2154824 -) -(4605,683:20753781,36943668:11829248,505283,102891 -h4605,682:20753781,36943668:0,0,0 -r4605,696:20753781,36943668:0,608174,102891 -g4605,682:22064501,36943668 -g4605,682:22064501,36943668 -g4605,682:23657681,36943668 -g4605,682:26391843,36943668 -k4605,683:30846653,36943668:1736377 -k4605,683:32583029,36943668:1736376 -) -(4605,684:20753781,37821226:11829248,505283,134348 -h4605,683:20753781,37821226:0,0,0 -g4605,683:24526033,37821226 -g4605,683:28215709,37821226 -k4605,684:30997058,37821226:1585972 -k4605,684:32583029,37821226:1585971 -) -(4605,685:20753781,38698784:11829248,505283,126483 -h4605,684:20691522,38698784:0,0,0 -g4605,684:24344498,38698784 -g4605,684:25912774,38698784 -g4605,684:27481050,38698784 -k4605,685:30629728,38698784:1953301 -k4605,685:32583029,38698784:1953301 -) -(4605,686:20753781,39576342:11829248,505283,126483 -h4605,685:20753781,39576342:0,0,0 -g4605,685:24469017,39576342 -k4605,686:29123712,39576342:3459318 -k4605,686:32583029,39576342:3459317 -) -(4605,687:20753781,40453900:11829248,473825,126483 -h4605,686:20753781,40453900:0,0,0 -k4605,687:28134446,40453900:4448584 -k4605,687:32583029,40453900:4448583 -) -(4605,688:20753781,41331457:11829248,505283,126483 -h4605,687:20753781,41331457:0,0,0 -r4605,696:20753781,41331457:0,631766,126483 -g4605,687:22064501,41331457 -g4605,687:22064501,41331457 -g4605,687:23911305,41331457 -g4605,687:27688800,41331457 -k4605,688:30524543,41331457:2058486 -k4605,688:32583029,41331457:2058486 -) -(4605,689:20753781,42209015:11829248,505283,126483 -h4605,688:20753781,42209015:0,0,0 -g4605,688:23794651,42209015 -g4605,688:27921453,42209015 -k4605,688:32583029,42209015:2019820 -) -(4605,689:23375221,43074095:9207808,485622,11795 -k4605,689:29338342,43074095:3244688 -k4605,689:32583029,43074095:3244687 -) -(4605,690:20753781,43951653:11829248,505283,126483 -h4605,689:20753781,43951653:0,0,0 -g4605,689:24438870,43951653 -k4605,690:30566814,43951653:2016215 -k4605,690:32583029,43951653:2016215 -) -(4605,691:20753781,44829211:11829248,513147,126483 -h4605,690:20753781,44829211:0,0,0 -r4605,696:20753781,44829211:0,639630,126483 -g4605,690:22064501,44829211 -g4605,690:22064501,44829211 -g4605,690:24596156,44829211 -g4605,690:26363006,44829211 -g4605,690:30346939,44829211 -k4605,691:32062673,44829211:520357 -k4605,691:32583029,44829211:520356 -) -(4605,692:20753781,45706769:11829248,505283,102891 -h4605,691:20753781,45706769:0,0,0 -r4605,696:20753781,45706769:0,608174,102891 -g4605,691:22064501,45706769 -g4605,691:22064501,45706769 -g4605,691:25323606,45706769 -k4605,692:30302704,45706769:2280326 -k4605,692:32583029,45706769:2280325 -) -] -(4605,696:32583029,45706769:0,355205,126483 -h4605,696:32583029,45706769:420741,355205,126483 -k4605,696:32583029,45706769:-420741 -) -) -] -(4605,696:32583029,45706769:0,0,0 -g4605,696:32583029,45706769 -) -) -] -(4605,696:6630773,47279633:25952256,0,0 -h4605,696:6630773,47279633:25952256,0,0 -) -] -(4605,696:4262630,4025873:0,0,0 -[4605,696:-473656,4025873:0,0,0 -(4605,696:-473656,-710413:0,0,0 -(4605,696:-473656,-710413:0,0,0 -g4605,696:-473656,-710413 -) -g4605,696:-473656,-710413 -) -] -) ] -!30353 -}441 +[4609,697:3078558,4812305:0,0,0 +(4609,697:3078558,49800853:0,16384,2228224 +g4609,697:29030814,49800853 +g4609,697:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,697:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,697:37855564,49800853:1179648,16384,0 +) +) +k4609,697:3078556,49800853:-34777008 +) +] +g4609,697:6630773,4812305 +k4609,697:28201292,4812305:20375142 +g4609,697:30884336,4812305 +) +) +] +[4609,697:6630773,45706769:25952256,40108032,0 +(4609,697:6630773,45706769:25952256,40108032,0 +(4609,697:6630773,45706769:0,0,0 +g4609,697:6630773,45706769 +) +[4609,697:6630773,45706769:25952256,40108032,0 +(4609,697:6630773,45706769:25952256,40108032,126483 +[4609,697:6630773,45706769:11829248,40108032,11795 +(4609,605:6630773,6254097:11829248,505283,126483 +h4609,604:6630773,6254097:0,0,0 +k4609,605:13349196,6254097:5110825 +k4609,605:18460021,6254097:5110825 +) +(4609,606:6630773,7131088:11829248,505283,102891 +h4609,605:6630773,7131088:0,0,0 +r4609,697:6630773,7131088:0,608174,102891 +g4609,605:7941493,7131088 +g4609,605:7941493,7131088 +g4609,605:11488956,7131088 +k4609,606:15562347,7131088:2897675 +k4609,606:18460021,7131088:2897674 +) +(4609,607:6630773,8008078:11829248,485622,126483 +h4609,606:6630773,8008078:0,0,0 +r4609,697:6630773,8008078:0,612105,126483 +g4609,606:7941493,8008078 +g4609,606:7941493,8008078 +g4609,606:9393115,8008078 +g4609,606:12380246,8008078 +k4609,607:16017822,8008078:2442199 +k4609,607:18460021,8008078:2442199 +) +(4609,608:6630773,8885069:11829248,505283,134348 +h4609,607:6630773,8885069:0,0,0 +r4609,697:6630773,8885069:0,639631,134348 +g4609,607:7941493,8885069 +g4609,607:7941493,8885069 +g4609,607:9574650,8885069 +g4609,607:10218868,8885069 +g4609,607:13310856,8885069 +k4609,608:16473297,8885069:1986725 +k4609,608:18460021,8885069:1986724 +) +(4609,609:6630773,9762060:11829248,505283,126483 +h4609,608:6630773,9762060:0,0,0 +r4609,697:6630773,9762060:0,631766,126483 +g4609,608:7941493,9762060 +g4609,608:7941493,9762060 +g4609,608:10395816,9762060 +g4609,608:12927471,9762060 +k4609,609:16291435,9762060:2168587 +k4609,609:18460021,9762060:2168586 +) +(4609,610:6630773,10639051:11829248,505283,126483 +h4609,609:6630773,10639051:0,0,0 +r4609,697:6630773,10639051:0,631766,126483 +g4609,609:7941493,10639051 +g4609,609:7941493,10639051 +g4609,609:9300709,10639051 +g4609,609:10691383,10639051 +g4609,609:13716524,10639051 +g4609,609:15366720,10639051 +k4609,610:18272587,10639051:187434 +k4609,610:18460021,10639051:187434 +) +(4609,611:6630773,11516041:11829248,505283,126483 +h4609,610:6630773,11516041:0,0,0 +r4609,697:6630773,11516041:0,631766,126483 +g4609,610:7941493,11516041 +g4609,610:7941493,11516041 +g4609,610:10309308,11516041 +g4609,610:11959504,11516041 +k4609,611:15807451,11516041:2652570 +k4609,611:18460021,11516041:2652570 +) +(4609,612:6630773,12393032:11829248,485622,126483 +h4609,611:6630773,12393032:0,0,0 +r4609,697:6630773,12393032:0,612105,126483 +g4609,611:7941493,12393032 +g4609,611:7941493,12393032 +g4609,611:10692039,12393032 +k4609,612:15925416,12393032:2534605 +k4609,612:18460021,12393032:2534605 +) +(4609,613:6630773,13270023:11829248,505283,102891 +h4609,612:6630773,13270023:0,0,0 +r4609,697:6630773,13270023:0,608174,102891 +g4609,612:7941493,13270023 +g4609,612:7941493,13270023 +g4609,612:10735292,13270023 +k4609,613:15947043,13270023:2512979 +k4609,613:18460021,13270023:2512978 +) +(4609,614:6630773,14147014:11829248,505283,126483 +h4609,613:6630773,14147014:0,0,0 +r4609,697:6630773,14147014:0,631766,126483 +g4609,613:7941493,14147014 +g4609,613:7941493,14147014 +g4609,613:10523611,14147014 +g4609,613:12173807,14147014 +k4609,614:16666300,14147014:1793721 +k4609,614:18460021,14147014:1793721 +) +(4609,615:6630773,15024004:11829248,485622,134348 +h4609,614:6630773,15024004:0,0,0 +r4609,697:6630773,15024004:0,619970,134348 +g4609,614:7941493,15024004 +g4609,614:7941493,15024004 +g4609,614:11798286,15024004 +k4609,615:16478540,15024004:1981482 +k4609,615:18460021,15024004:1981481 +) +(4609,616:6630773,15900995:11829248,505283,134348 +h4609,615:6630773,15900995:0,0,0 +r4609,697:6630773,15900995:0,639631,134348 +g4609,615:7941493,15900995 +g4609,615:7941493,15900995 +g4609,615:11421454,15900995 +g4609,615:13938036,15900995 +k4609,616:16786887,15900995:1673135 +k4609,616:18460021,15900995:1673134 +) +(4609,617:6630773,16777986:11829248,505283,126483 +h4609,616:6630773,16777986:0,0,0 +r4609,697:6630773,16777986:0,631766,126483 +g4609,616:7941493,16777986 +g4609,616:7941493,16777986 +g4609,616:11969335,16777986 +g4609,616:14416449,16777986 +k4609,617:17035924,16777986:1424098 +k4609,617:18460021,16777986:1424097 +) +(4609,618:6630773,17654976:11829248,505283,102891 +h4609,617:6630773,17654976:0,0,0 +r4609,697:6630773,17654976:0,608174,102891 +g4609,617:7941493,17654976 +g4609,617:7941493,17654976 +g4609,617:9530085,17654976 +g4609,617:13411127,17654976 +k4609,618:17294791,17654976:1165231 +k4609,618:18460021,17654976:1165230 +) +(4609,619:6630773,18531967:11829248,505283,126483 +h4609,618:6630773,18531967:0,0,0 +r4609,697:6630773,18531967:0,631766,126483 +g4609,618:7941493,18531967 +g4609,618:7941493,18531967 +g4609,618:10473148,18531967 +k4609,619:15105233,18531967:3354788 +k4609,619:18460021,18531967:3354788 +) +(4609,620:6630773,19408958:11829248,505283,102891 +h4609,619:6630773,19408958:0,0,0 +r4609,697:6630773,19408958:0,608174,102891 +g4609,619:8596853,19408958 +g4609,619:8596853,19408958 +g4609,619:9194541,19408958 +g4609,619:12912398,19408958 +k4609,620:17035596,19408958:1424426 +k4609,620:18460021,19408958:1424425 +) +(4609,621:6630773,20285949:11829248,505283,102891 +h4609,620:6630773,20285949:0,0,0 +r4609,697:6630773,20285949:0,608174,102891 +g4609,620:8596853,20285949 +g4609,620:8596853,20285949 +g4609,620:9194541,20285949 +g4609,620:13242699,20285949 +k4609,621:17210577,20285949:1249445 +k4609,621:18460021,20285949:1249444 +) +(4609,622:6630773,21162939:11829248,505283,126483 +h4609,621:6630773,21162939:0,0,0 +r4609,697:6630773,21162939:0,631766,126483 +g4609,621:7941493,21162939 +g4609,621:7941493,21162939 +g4609,621:9212891,21162939 +g4609,621:10863087,21162939 +k4609,622:16020771,21162939:2439251 +k4609,622:18460021,21162939:2439250 +) +(4609,623:6630773,22039930:11829248,505283,102891 +h4609,622:6630773,22039930:0,0,0 +r4609,697:6630773,22039930:0,608174,102891 +g4609,622:7941493,22039930 +g4609,622:7941493,22039930 +g4609,622:9747665,22039930 +g4609,622:11495510,22039930 +k4609,623:15565624,22039930:2894398 +k4609,623:18460021,22039930:2894397 +) +(4609,624:6630773,22916921:11829248,513147,126483 +h4609,623:6630773,22916921:0,0,0 +r4609,697:6630773,22916921:0,639630,126483 +g4609,623:7941493,22916921 +g4609,623:7941493,22916921 +g4609,623:11310043,22916921 +g4609,623:12960239,22916921 +k4609,624:17069347,22916921:1390675 +k4609,624:18460021,22916921:1390674 +) +(4609,625:6630773,23793912:11829248,513147,102891 +h4609,624:6630773,23793912:0,0,0 +r4609,697:6630773,23793912:0,616038,102891 +g4609,624:7941493,23793912 +g4609,624:7941493,23793912 +g4609,624:9853178,23793912 +g4609,624:12297670,23793912 +k4609,625:16728232,23793912:1731790 +k4609,625:18460021,23793912:1731789 +) +(4609,626:6630773,24670902:11829248,513147,102891 +h4609,625:6630773,24670902:0,0,0 +r4609,697:6630773,24670902:0,616038,102891 +g4609,625:7941493,24670902 +g4609,625:7941493,24670902 +g4609,625:9975730,24670902 +k4609,626:14815564,24670902:3644457 +k4609,626:18460021,24670902:3644457 +) +(4609,627:6630773,25547893:11829248,505283,134348 +h4609,626:6630773,25547893:0,0,0 +r4609,697:6630773,25547893:0,639631,134348 +g4609,626:7941493,25547893 +g4609,626:7941493,25547893 +g4609,626:11880862,25547893 +k4609,627:16529658,25547893:1930363 +k4609,627:18460021,25547893:1930363 +) +(4609,628:6630773,26424884:11829248,505283,134348 +h4609,627:6630773,26424884:0,0,0 +r4609,697:6630773,26424884:0,639631,134348 +g4609,627:7941493,26424884 +g4609,627:7941493,26424884 +g4609,627:9691304,26424884 +g4609,627:12840308,26424884 +g4609,627:15503035,26424884 +k4609,628:18330914,26424884:129107 +k4609,628:18460021,26424884:129107 +) +(4609,629:6630773,27301874:11829248,505283,126483 +h4609,628:6630773,27301874:0,0,0 +r4609,697:6630773,27301874:0,631766,126483 +g4609,628:7941493,27301874 +g4609,628:7941493,27301874 +g4609,628:9691304,27301874 +g4609,628:11671802,27301874 +k4609,629:16425128,27301874:2034893 +k4609,629:18460021,27301874:2034893 +) +(4609,630:6630773,28178865:11829248,505283,102891 +h4609,629:6630773,28178865:0,0,0 +r4609,697:6630773,28178865:0,608174,102891 +g4609,629:7941493,28178865 +g4609,629:7941493,28178865 +g4609,629:9691304,28178865 +g4609,629:11960160,28178865 +k4609,630:16569307,28178865:1890714 +k4609,630:18460021,28178865:1890714 +) +(4609,631:6630773,29055856:11829248,485622,102891 +h4609,630:6630773,29055856:0,0,0 +r4609,697:6630773,29055856:0,588513,102891 +g4609,630:7941493,29055856 +g4609,630:7941493,29055856 +g4609,630:10195276,29055856 +k4609,631:15686865,29055856:2773156 +k4609,631:18460021,29055856:2773156 +) +(4609,632:6630773,29932847:11829248,485622,102891 +h4609,631:6630773,29932847:0,0,0 +r4609,697:6630773,29932847:0,588513,102891 +g4609,631:7941493,29932847 +g4609,631:7941493,29932847 +g4609,631:10021605,29932847 +g4609,631:10906996,29932847 +g4609,631:15070498,29932847 +k4609,632:18114646,29932847:345376 +k4609,632:18460021,29932847:345375 +) +(4609,633:6630773,30809837:11829248,505283,102891 +h4609,632:6630773,30809837:0,0,0 +r4609,697:6630773,30809837:0,608174,102891 +g4609,632:7941493,30809837 +g4609,632:7941493,30809837 +g4609,632:10158576,30809837 +k4609,633:15658685,30809837:2801337 +k4609,633:18460021,30809837:2801336 +) +(4609,634:6630773,31686828:11829248,505283,126483 +h4609,633:6630773,31686828:0,0,0 +r4609,697:6630773,31686828:0,631766,126483 +g4609,633:7941493,31686828 +g4609,633:7941493,31686828 +g4609,633:10202485,31686828 +g4609,633:11770761,31686828 +k4609,634:15703249,31686828:2756772 +k4609,634:18460021,31686828:2756772 +) +(4609,635:6630773,32563819:11829248,505283,126483 +h4609,634:6630773,32563819:0,0,0 +r4609,697:6630773,32563819:0,631766,126483 +g4609,634:7941493,32563819 +g4609,634:7941493,32563819 +g4609,634:9309229,32563819 +g4609,634:10959425,32563819 +k4609,635:16059109,32563819:2400912 +k4609,635:18460021,32563819:2400912 +) +(4609,636:6630773,33440810:11829248,485622,134348 +h4609,635:6630773,33440810:0,0,0 +r4609,697:6630773,33440810:0,619970,134348 +g4609,635:7941493,33440810 +g4609,635:7941493,33440810 +g4609,635:10026193,33440810 +g4609,635:11477815,33440810 +g4609,635:15167491,33440810 +k4609,636:17401614,33440810:1058407 +k4609,636:18460021,33440810:1058407 +) +(4609,637:6630773,34317800:11829248,505283,126483 +h4609,636:6630773,34317800:0,0,0 +r4609,697:6630773,34317800:0,631766,126483 +g4609,636:7941493,34317800 +g4609,636:7941493,34317800 +g4609,636:9867596,34317800 +g4609,636:11258270,34317800 +g4609,636:13583487,34317800 +g4609,636:15563985,34317800 +k4609,637:17609692,34317800:850330 +k4609,637:18460021,34317800:850329 +) +(4609,638:6630773,35194791:11829248,505283,126483 +h4609,637:6630773,35194791:0,0,0 +r4609,697:6630773,35194791:0,631766,126483 +g4609,637:7941493,35194791 +g4609,637:7941493,35194791 +g4609,637:9788297,35194791 +g4609,637:13931483,35194791 +k4609,638:17554969,35194791:905053 +k4609,638:18460021,35194791:905052 +) +(4609,639:6630773,36071782:11829248,505283,102891 +h4609,638:6630773,36071782:0,0,0 +r4609,697:6630773,36071782:0,608174,102891 +g4609,638:7941493,36071782 +g4609,638:7941493,36071782 +g4609,638:10118599,36071782 +g4609,638:11107537,36071782 +k4609,639:16142996,36071782:2317026 +k4609,639:18460021,36071782:2317025 +) +(4609,640:6630773,36948772:11829248,485622,102891 +h4609,639:6630773,36948772:0,0,0 +r4609,697:6630773,36948772:0,588513,102891 +g4609,639:7941493,36948772 +g4609,639:7941493,36948772 +g4609,639:10382709,36948772 +k4609,640:15009223,36948772:3450798 +k4609,640:18460021,36948772:3450798 +) +(4609,641:6630773,37825763:11829248,505283,102891 +h4609,640:6630773,37825763:0,0,0 +r4609,697:6630773,37825763:0,608174,102891 +g4609,640:7941493,37825763 +g4609,640:7941493,37825763 +g4609,640:11004645,37825763 +k4609,641:15320191,37825763:3139830 +k4609,641:18460021,37825763:3139830 +) +(4609,642:6630773,38702754:11829248,505283,102891 +h4609,641:6630773,38702754:0,0,0 +r4609,697:6630773,38702754:0,608174,102891 +g4609,641:7941493,38702754 +g4609,641:7941493,38702754 +g4609,641:10840150,38702754 +g4609,641:15247446,38702754 +k4609,642:18212950,38702754:247071 +k4609,642:18460021,38702754:247071 +) +(4609,643:6630773,39579745:11829248,513147,126483 +h4609,642:6630773,39579745:0,0,0 +r4609,697:6630773,39579745:0,639630,126483 +g4609,642:7941493,39579745 +g4609,642:7941493,39579745 +g4609,642:10299478,39579745 +g4609,642:11150135,39579745 +g4609,642:12836376,39579745 +k4609,643:16245887,39579745:2214134 +k4609,643:18460021,39579745:2214134 +) +(4609,644:6630773,40456735:11829248,485622,126483 +h4609,643:6630773,40456735:0,0,0 +r4609,697:6630773,40456735:0,612105,126483 +g4609,643:7941493,40456735 +g4609,643:7941493,40456735 +g4609,643:9378697,40456735 +g4609,643:11910352,40456735 +k4609,644:15782875,40456735:2677146 +k4609,644:18460021,40456735:2677146 +) +(4609,645:6630773,41333726:11829248,505283,126483 +h4609,644:6630773,41333726:0,0,0 +r4609,697:6630773,41333726:0,631766,126483 +g4609,644:7941493,41333726 +g4609,644:7941493,41333726 +g4609,644:9109999,41333726 +g4609,644:11462741,41333726 +k4609,645:15549239,41333726:2910782 +k4609,645:18460021,41333726:2910782 +) +(4609,646:6630773,42210717:11829248,513147,126483 +h4609,645:6630773,42210717:0,0,0 +r4609,697:6630773,42210717:0,639630,126483 +g4609,645:7941493,42210717 +g4609,645:7941493,42210717 +g4609,645:9748320,42210717 +g4609,645:10606841,42210717 +g4609,645:14005538,42210717 +k4609,646:17582166,42210717:877856 +k4609,646:18460021,42210717:877855 +) +(4609,647:6630773,43087708:11829248,485622,126483 +h4609,646:6630773,43087708:0,0,0 +r4609,697:6630773,43087708:0,612105,126483 +g4609,646:7941493,43087708 +g4609,646:7941493,43087708 +g4609,646:11329049,43087708 +g4609,646:13860704,43087708 +k4609,647:16758051,43087708:1701970 +k4609,647:18460021,43087708:1701970 +) +(4609,648:6630773,43964698:11829248,485622,134348 +h4609,647:6630773,43964698:0,0,0 +r4609,697:6630773,43964698:0,619970,134348 +g4609,647:7941493,43964698 +g4609,647:7941493,43964698 +g4609,647:10886681,43964698 +k4609,648:15271040,43964698:3188982 +k4609,648:18460021,43964698:3188981 +) +(4609,649:6630773,44841689:11829248,473825,134348 +h4609,648:6630773,44841689:0,0,0 +r4609,697:6630773,44841689:0,608173,134348 +g4609,648:7941493,44841689 +g4609,648:7941493,44841689 +g4609,648:12030284,44841689 +k4609,648:18460021,44841689:2308178 +) +(4609,649:9252213,45706769:9207808,485622,11795 +k4609,649:15215334,45706769:3244688 +k4609,649:18460021,45706769:3244687 +) +] +k4609,697:19606901,45706769:1146880 +r4609,697:19606901,45706769:0,40234515,126483 +k4609,697:20753781,45706769:1146880 +[4609,697:20753781,45706769:11829248,40108032,126483 +(4609,650:20753781,6254097:11829248,513147,102891 +h4609,649:20753781,6254097:0,0,0 +r4609,697:20753781,6254097:0,616038,102891 +g4609,649:22064501,6254097 +g4609,649:22064501,6254097 +g4609,649:25242997,6254097 +g4609,649:27114705,6254097 +k4609,650:30446556,6254097:2136474 +k4609,650:32583029,6254097:2136473 +) +(4609,651:20753781,7131365:11829248,505283,134348 +h4609,650:20753781,7131365:0,0,0 +r4609,697:20753781,7131365:0,639631,134348 +g4609,650:22064501,7131365 +g4609,650:22064501,7131365 +g4609,650:25534632,7131365 +k4609,651:29656519,7131365:2926510 +k4609,651:32583029,7131365:2926510 +) +(4609,652:20753781,8008632:11829248,513147,134348 +h4609,651:20753781,8008632:0,0,0 +r4609,697:20753781,8008632:0,647495,134348 +g4609,651:22064501,8008632 +g4609,651:22064501,8008632 +g4609,651:24634823,8008632 +g4609,651:26486215,8008632 +g4609,651:27518407,8008632 +k4609,652:30638576,8008632:1944453 +k4609,652:32583029,8008632:1944453 +) +(4609,653:20753781,8885900:11829248,485622,134348 +h4609,652:20753781,8885900:0,0,0 +r4609,697:20753781,8885900:0,619970,134348 +g4609,652:22064501,8885900 +g4609,652:22064501,8885900 +g4609,652:23341142,8885900 +g4609,652:25968480,8885900 +k4609,653:30634971,8885900:1948058 +k4609,653:32583029,8885900:1948058 +) +(4609,654:20753781,9763168:11829248,485622,134348 +h4609,653:20753781,9763168:0,0,0 +r4609,697:20753781,9763168:0,619970,134348 +g4609,653:22064501,9763168 +g4609,653:22064501,9763168 +g4609,653:24470983,9763168 +k4609,654:29124695,9763168:3458335 +k4609,654:32583029,9763168:3458334 +) +(4609,655:20753781,10640436:11829248,513147,134348 +h4609,654:20753781,10640436:0,0,0 +r4609,697:20753781,10640436:0,647495,134348 +g4609,654:22064501,10640436 +g4609,654:22064501,10640436 +g4609,654:24297312,10640436 +g4609,654:25147969,10640436 +g4609,654:26503908,10640436 +g4609,654:27670448,10640436 +k4609,654:32583029,10640436:3217820 +) +(4609,655:23375221,11505516:9207808,505283,134348 +k4609,655:29527741,11505516:3055289 +k4609,655:32583029,11505516:3055288 +) +(4609,656:20753781,12382783:11829248,505283,7863 +h4609,655:20753781,12382783:0,0,0 +r4609,697:20753781,12382783:0,513146,7863 +g4609,655:22064501,12382783 +g4609,655:22064501,12382783 +k4609,656:28275020,12382783:4308009 +k4609,656:32583029,12382783:4308009 +) +(4609,657:20753781,13260051:11829248,505283,102891 +h4609,656:20753781,13260051:0,0,0 +r4609,697:20753781,13260051:0,608174,102891 +g4609,656:22719861,13260051 +g4609,656:22719861,13260051 +g4609,656:24171483,13260051 +g4609,656:26388566,13260051 +k4609,657:30083486,13260051:2499543 +k4609,657:32583029,13260051:2499543 +) +(4609,658:20753781,14137319:11829248,505283,102891 +h4609,657:20753781,14137319:0,0,0 +r4609,697:20753781,14137319:0,608174,102891 +g4609,657:22719861,14137319 +g4609,657:22719861,14137319 +g4609,657:24907452,14137319 +k4609,658:29342929,14137319:3240100 +k4609,658:32583029,14137319:3240100 +) +(4609,659:20753781,15014586:11829248,505283,102891 +h4609,658:20753781,15014586:0,0,0 +r4609,697:20753781,15014586:0,608174,102891 +g4609,658:22719861,15014586 +g4609,658:22719861,15014586 +g4609,658:24103326,15014586 +g4609,658:26591072,15014586 +k4609,659:30174909,15014586:2408121 +k4609,659:32583029,15014586:2408120 +) +(4609,660:20753781,15891854:11829248,505283,102891 +h4609,659:20753781,15891854:0,0,0 +r4609,697:20753781,15891854:0,608174,102891 +g4609,659:22719861,15891854 +g4609,659:22719861,15891854 +g4609,659:24103326,15891854 +g4609,659:26320409,15891854 +k4609,660:30039577,15891854:2543452 +k4609,660:32583029,15891854:2543452 +) +(4609,661:20753781,16769122:11829248,513147,102891 +h4609,660:20753781,16769122:0,0,0 +r4609,697:20753781,16769122:0,616038,102891 +g4609,660:22719861,16769122 +g4609,660:22719861,16769122 +g4609,660:28260274,16769122 +k4609,661:31019340,16769122:1563689 +k4609,661:32583029,16769122:1563689 +) +(4609,662:20753781,17646390:11829248,505283,126483 +h4609,661:20753781,17646390:0,0,0 +r4609,697:20753781,17646390:0,631766,126483 +g4609,661:22064501,17646390 +g4609,661:22064501,17646390 +g4609,661:24432972,17646390 +g4609,661:26083168,17646390 +k4609,662:30682485,17646390:1900545 +k4609,662:32583029,17646390:1900544 +) +(4609,663:20753781,18523657:11829248,505283,126483 +h4609,662:20753781,18523657:0,0,0 +r4609,697:20753781,18523657:0,631766,126483 +g4609,662:22064501,18523657 +g4609,662:22064501,18523657 +g4609,662:25510384,18523657 +g4609,662:27281822,18523657 +k4609,663:30520284,18523657:2062746 +k4609,663:32583029,18523657:2062745 +) +(4609,664:20753781,19400925:11829248,505283,134348 +h4609,663:20753781,19400925:0,0,0 +r4609,697:20753781,19400925:0,639631,134348 +g4609,663:22064501,19400925 +g4609,663:22064501,19400925 +g4609,663:25284940,19400925 +g4609,663:26675614,19400925 +g4609,663:29226930,19400925 +k4609,664:31502668,19400925:1080361 +k4609,664:32583029,19400925:1080361 +) +(4609,665:20753781,20278193:11829248,505283,102891 +h4609,664:20753781,20278193:0,0,0 +r4609,697:20753781,20278193:0,608174,102891 +g4609,664:22064501,20278193 +g4609,664:22064501,20278193 +g4609,664:24674800,20278193 +g4609,664:27119292,20278193 +k4609,665:31200547,20278193:1382483 +k4609,665:32583029,20278193:1382482 +) +(4609,666:20753781,21155461:11829248,473825,7863 +h4609,665:20753781,21155461:0,0,0 +r4609,697:20753781,21155461:0,481688,7863 +g4609,665:22064501,21155461 +g4609,665:22064501,21155461 +k4609,666:28750484,21155461:3832545 +k4609,666:32583029,21155461:3832545 +) +(4609,667:20753781,22032728:11829248,505283,126483 +h4609,666:20753781,22032728:0,0,0 +r4609,697:20753781,22032728:0,631766,126483 +g4609,666:22719861,22032728 +g4609,666:22719861,22032728 +g4609,666:25425187,22032728 +k4609,667:29601797,22032728:2981233 +k4609,667:32583029,22032728:2981232 +) +(4609,668:20753781,22909996:11829248,505283,126483 +h4609,667:20753781,22909996:0,0,0 +r4609,697:20753781,22909996:0,631766,126483 +g4609,667:22719861,22909996 +g4609,667:22719861,22909996 +g4609,667:25251516,22909996 +g4609,667:26443615,22909996 +k4609,668:30101180,22909996:2481849 +k4609,668:32583029,22909996:2481849 +) +(4609,669:20753781,23787264:11829248,505283,102891 +h4609,668:20753781,23787264:0,0,0 +r4609,697:20753781,23787264:0,608174,102891 +g4609,668:22719861,23787264 +g4609,668:22719861,23787264 +g4609,668:25503830,23787264 +k4609,669:29641118,23787264:2941911 +k4609,669:32583029,23787264:2941911 +) +(4609,670:20753781,24664531:11829248,505283,126483 +h4609,669:20753781,24664531:0,0,0 +r4609,697:20753781,24664531:0,631766,126483 +g4609,669:22064501,24664531 +g4609,669:22064501,24664531 +g4609,669:23619015,24664531 +g4609,669:25269211,24664531 +k4609,670:29513978,24664531:3069051 +k4609,670:32583029,24664531:3069051 +) +(4609,671:20753781,25541799:11829248,505283,134348 +h4609,670:20753781,25541799:0,0,0 +r4609,697:20753781,25541799:0,639631,134348 +g4609,670:22064501,25541799 +g4609,670:22064501,25541799 +g4609,670:24581083,25541799 +k4609,671:29941273,25541799:2641757 +k4609,671:32583029,25541799:2641756 +) +(4609,672:20753781,26419067:11829248,505283,102891 +h4609,671:20753781,26419067:0,0,0 +r4609,697:20753781,26419067:0,608174,102891 +g4609,671:22064501,26419067 +g4609,671:22064501,26419067 +g4609,671:24850436,26419067 +k4609,672:30066119,26419067:2516911 +k4609,672:32583029,26419067:2516910 +) +(4609,673:20753781,27296335:11829248,485622,126483 +h4609,672:20753781,27296335:0,0,0 +r4609,697:20753781,27296335:0,612105,126483 +g4609,672:22064501,27296335 +g4609,672:22064501,27296335 +g4609,672:23556755,27296335 +g4609,672:26088410,27296335 +k4609,673:29933408,27296335:2649621 +k4609,673:32583029,27296335:2649621 +) +(4609,674:20753781,28173602:11829248,485622,134348 +h4609,673:20753781,28173602:0,0,0 +r4609,697:20753781,28173602:0,619970,134348 +g4609,673:22064501,28173602 +g4609,673:22064501,28173602 +g4609,673:23424373,28173602 +k4609,674:29353087,28173602:3229942 +k4609,674:32583029,28173602:3229942 +) +(4609,675:20753781,29050870:11829248,485622,102891 +h4609,674:20753781,29050870:0,0,0 +r4609,697:20753781,29050870:0,588513,102891 +g4609,674:22064501,29050870 +g4609,674:22064501,29050870 +g4609,674:23489909,29050870 +g4609,674:24478847,29050870 +k4609,675:29890155,29050870:2692875 +k4609,675:32583029,29050870:2692874 +) +(4609,676:20753781,29928138:11829248,505283,126483 +h4609,675:20753781,29928138:0,0,0 +r4609,697:20753781,29928138:0,631766,126483 +g4609,675:22064501,29928138 +g4609,675:22064501,29928138 +g4609,675:23274295,29928138 +g4609,675:24924491,29928138 +k4609,676:30112977,29928138:2470053 +k4609,676:32583029,29928138:2470052 +) +(4609,677:20753781,30805405:11829248,505283,102891 +h4609,676:20753781,30805405:0,0,0 +r4609,697:20753781,30805405:0,608174,102891 +g4609,676:22064501,30805405 +g4609,676:22064501,30805405 +g4609,676:23704867,30805405 +k4609,677:29493334,30805405:3089695 +k4609,677:32583029,30805405:3089695 +) +(4609,678:20753781,31682673:11829248,505283,102891 +h4609,677:20753781,31682673:0,0,0 +r4609,697:20753781,31682673:0,608174,102891 +g4609,677:22064501,31682673 +g4609,677:22064501,31682673 +g4609,677:25630970,31682673 +k4609,678:29704688,31682673:2878341 +k4609,678:32583029,31682673:2878341 +) +(4609,679:20753781,32559941:11829248,505283,126483 +h4609,678:20753781,32559941:0,0,0 +r4609,697:20753781,32559941:0,631766,126483 +g4609,678:22064501,32559941 +g4609,678:22064501,32559941 +g4609,678:24037790,32559941 +g4609,678:25687986,32559941 +k4609,679:29733196,32559941:2849833 +k4609,679:32583029,32559941:2849833 +) +(4609,680:20753781,33437209:11829248,505283,102891 +h4609,679:20753781,33437209:0,0,0 +r4609,697:20753781,33437209:0,608174,102891 +g4609,679:22064501,33437209 +g4609,679:22064501,33437209 +g4609,679:23821521,33437209 +g4609,679:25554948,33437209 +k4609,680:30428205,33437209:2154824 +k4609,680:32583029,33437209:2154824 +) +(4609,681:20753781,34314476:11829248,505283,102891 +h4609,680:20753781,34314476:0,0,0 +r4609,697:20753781,34314476:0,608174,102891 +g4609,680:22064501,34314476 +g4609,680:22064501,34314476 +g4609,680:23657681,34314476 +g4609,680:26391843,34314476 +k4609,681:30846653,34314476:1736377 +k4609,681:32583029,34314476:1736376 +) +(4609,682:20753781,35191744:11829248,505283,134348 +h4609,681:20753781,35191744:0,0,0 +g4609,681:24526033,35191744 +g4609,681:28215709,35191744 +k4609,682:30997058,35191744:1585972 +k4609,682:32583029,35191744:1585971 +) +(4609,683:20753781,36069012:11829248,505283,126483 +h4609,682:20691522,36069012:0,0,0 +g4609,682:24344498,36069012 +g4609,682:25912774,36069012 +g4609,682:27481050,36069012 +k4609,683:30629728,36069012:1953301 +k4609,683:32583029,36069012:1953301 +) +(4609,684:20753781,36946280:11829248,505283,126483 +h4609,683:20753781,36946280:0,0,0 +g4609,683:24469017,36946280 +k4609,684:29123712,36946280:3459318 +k4609,684:32583029,36946280:3459317 +) +(4609,685:20753781,37823547:11829248,473825,126483 +h4609,684:20753781,37823547:0,0,0 +k4609,685:28134446,37823547:4448584 +k4609,685:32583029,37823547:4448583 +) +(4609,686:20753781,38700815:11829248,505283,126483 +h4609,685:20753781,38700815:0,0,0 +r4609,697:20753781,38700815:0,631766,126483 +g4609,685:22064501,38700815 +g4609,685:22064501,38700815 +g4609,685:23911305,38700815 +g4609,685:27688800,38700815 +k4609,686:30524543,38700815:2058486 +k4609,686:32583029,38700815:2058486 +) +(4609,687:20753781,39578083:11829248,505283,126483 +h4609,686:20753781,39578083:0,0,0 +g4609,686:23794651,39578083 +g4609,686:27921453,39578083 +k4609,686:32583029,39578083:2019820 +) +(4609,687:23375221,40443163:9207808,485622,11795 +k4609,687:29338342,40443163:3244688 +k4609,687:32583029,40443163:3244687 +) +(4609,688:20753781,41320430:11829248,505283,126483 +h4609,687:20753781,41320430:0,0,0 +g4609,687:24438870,41320430 +k4609,688:30566814,41320430:2016215 +k4609,688:32583029,41320430:2016215 +) +(4609,689:20753781,42197698:11829248,513147,126483 +h4609,688:20753781,42197698:0,0,0 +r4609,697:20753781,42197698:0,639630,126483 +g4609,688:22064501,42197698 +g4609,688:22064501,42197698 +g4609,688:24596156,42197698 +g4609,688:26363006,42197698 +g4609,688:30346939,42197698 +k4609,689:32062673,42197698:520357 +k4609,689:32583029,42197698:520356 +) +(4609,690:20753781,43074966:11829248,505283,102891 +h4609,689:20753781,43074966:0,0,0 +r4609,697:20753781,43074966:0,608174,102891 +g4609,689:22064501,43074966 +g4609,689:22064501,43074966 +g4609,689:25323606,43074966 +k4609,690:30302704,43074966:2280326 +k4609,690:32583029,43074966:2280325 +) +(4609,691:20753781,43952234:11829248,513147,126483 +h4609,690:20753781,43952234:0,0,0 +r4609,697:20753781,43952234:0,639630,126483 +g4609,690:22064501,43952234 +g4609,690:22064501,43952234 +g4609,690:26267324,43952234 +g4609,690:28034174,43952234 +g4609,690:31337843,43952234 +k4609,691:32558125,43952234:24905 +k4609,691:32583029,43952234:24904 +) +(4609,692:20753781,44829501:11829248,505283,126483 +h4609,691:20753781,44829501:0,0,0 +r4609,697:20753781,44829501:0,631766,126483 +g4609,691:22064501,44829501 +g4609,691:22064501,44829501 +g4609,691:27299516,44829501 +g4609,691:29588688,44829501 +k4609,692:31683547,44829501:899482 +k4609,692:32583029,44829501:899482 +) +(4609,693:20753781,45706769:11829248,513147,126483 +h4609,692:20753781,45706769:0,0,0 +r4609,697:20753781,45706769:0,639630,126483 +g4609,692:22064501,45706769 +g4609,692:22064501,45706769 +g4609,692:25194500,45706769 +g4609,692:26961350,45706769 +g4609,692:31337844,45706769 +k4609,693:32548295,45706769:34735 +k4609,693:32583029,45706769:34734 +) +] +(4609,697:32583029,45706769:0,355205,126483 +h4609,697:32583029,45706769:420741,355205,126483 +k4609,697:32583029,45706769:-420741 +) +) +] +(4609,697:32583029,45706769:0,0,0 +g4609,697:32583029,45706769 +) +) +] +(4609,697:6630773,47279633:25952256,0,0 +h4609,697:6630773,47279633:25952256,0,0 +) +] +(4609,697:4262630,4025873:0,0,0 +[4609,697:-473656,4025873:0,0,0 +(4609,697:-473656,-710413:0,0,0 +(4609,697:-473656,-710413:0,0,0 +g4609,697:-473656,-710413 +) +g4609,697:-473656,-710413 +) +] +) +] +!30662 +}442 !12 -{442 -[4605,786:4262630,47279633:28320399,43253760,0 -(4605,786:4262630,4025873:0,0,0 -[4605,786:-473656,4025873:0,0,0 -(4605,786:-473656,-710413:0,0,0 -(4605,786:-473656,-644877:0,0,0 -k4605,786:-473656,-644877:-65536 +{443 +[4609,787:4262630,47279633:28320399,43253760,0 +(4609,787:4262630,4025873:0,0,0 +[4609,787:-473656,4025873:0,0,0 +(4609,787:-473656,-710413:0,0,0 +(4609,787:-473656,-644877:0,0,0 +k4609,787:-473656,-644877:-65536 ) -(4605,786:-473656,4736287:0,0,0 -k4605,786:-473656,4736287:5209943 +(4609,787:-473656,4736287:0,0,0 +k4609,787:-473656,4736287:5209943 ) -g4605,786:-473656,-710413 +g4609,787:-473656,-710413 ) ] ) -[4605,786:6630773,47279633:25952256,43253760,0 -[4605,786:6630773,4812305:25952256,786432,0 -(4605,786:6630773,4812305:25952256,505283,11795 -(4605,786:6630773,4812305:25952256,505283,11795 -g4605,786:3078558,4812305 -[4605,786:3078558,4812305:0,0,0 -(4605,786:3078558,2439708:0,1703936,0 -k4605,786:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,786:2537886,2439708:1179648,16384,0 +[4609,787:6630773,47279633:25952256,43253760,0 +[4609,787:6630773,4812305:25952256,786432,0 +(4609,787:6630773,4812305:25952256,505283,11795 +(4609,787:6630773,4812305:25952256,505283,11795 +g4609,787:3078558,4812305 +[4609,787:3078558,4812305:0,0,0 +(4609,787:3078558,2439708:0,1703936,0 +k4609,787:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,787:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,786:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,787:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,786:3078558,4812305:0,0,0 -(4605,786:3078558,2439708:0,1703936,0 -g4605,786:29030814,2439708 -g4605,786:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,786:36151628,1915420:16384,1179648,0 +[4609,787:3078558,4812305:0,0,0 +(4609,787:3078558,2439708:0,1703936,0 +g4609,787:29030814,2439708 +g4609,787:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,787:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,786:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,787:37855564,2439708:1179648,16384,0 ) ) -k4605,786:3078556,2439708:-34777008 +k4609,787:3078556,2439708:-34777008 ) ] -[4605,786:3078558,4812305:0,0,0 -(4605,786:3078558,49800853:0,16384,2228224 -k4605,786:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,786:2537886,49800853:1179648,16384,0 +[4609,787:3078558,4812305:0,0,0 +(4609,787:3078558,49800853:0,16384,2228224 +k4609,787:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,787:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,786:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,787:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,786:3078558,4812305:0,0,0 -(4605,786:3078558,49800853:0,16384,2228224 -g4605,786:29030814,49800853 -g4605,786:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,786:36151628,51504789:16384,1179648,0 -) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 -) -] -) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,786:37855564,49800853:1179648,16384,0 -) -) -k4605,786:3078556,49800853:-34777008 -) -] -g4605,786:6630773,4812305 -g4605,786:6630773,4812305 -g4605,786:9313817,4812305 -g4605,786:11211739,4812305 -k4605,786:31387651,4812305:20175912 -) -) -] -[4605,786:6630773,45706769:25952256,40108032,0 -(4605,786:6630773,45706769:25952256,40108032,0 -(4605,786:6630773,45706769:0,0,0 -g4605,786:6630773,45706769 -) -[4605,786:6630773,45706769:25952256,40108032,0 -(4605,786:6630773,45706769:25952256,40108032,134348 -[4605,786:6630773,45706769:11829248,40108032,134348 -(4605,693:6630773,6254097:11829248,513147,126483 -h4605,692:6630773,6254097:0,0,0 -r4605,786:6630773,6254097:0,639630,126483 -g4605,692:7941493,6254097 -g4605,692:7941493,6254097 -g4605,692:12144316,6254097 -g4605,692:13911166,6254097 -g4605,692:17214835,6254097 -k4605,693:18435117,6254097:24905 -k4605,693:18460021,6254097:24904 -) -(4605,694:6630773,7120232:11829248,505283,126483 -h4605,693:6630773,7120232:0,0,0 -r4605,786:6630773,7120232:0,631766,126483 -g4605,693:7941493,7120232 -g4605,693:7941493,7120232 -g4605,693:13176508,7120232 -g4605,693:15465680,7120232 -k4605,694:17560539,7120232:899482 -k4605,694:18460021,7120232:899482 -) -(4605,695:6630773,7986367:11829248,513147,126483 -h4605,694:6630773,7986367:0,0,0 -r4605,786:6630773,7986367:0,639630,126483 -g4605,694:7941493,7986367 -g4605,694:7941493,7986367 -g4605,694:11071492,7986367 -g4605,694:12838342,7986367 -g4605,694:17214836,7986367 -k4605,695:18425287,7986367:34735 -k4605,695:18460021,7986367:34734 -) -(4605,696:6630773,8852502:11829248,505283,102891 -h4605,695:6630773,8852502:0,0,0 -r4605,786:6630773,8852502:0,608174,102891 -g4605,695:7941493,8852502 -g4605,695:7941493,8852502 -g4605,695:11158000,8852502 -k4605,696:16168227,8852502:2291794 -k4605,696:18460021,8852502:2291794 -) -(4605,697:6630773,9718638:11829248,505283,102891 -h4605,696:6630773,9718638:0,0,0 -r4605,786:6630773,9718638:0,608174,102891 -g4605,696:7941493,9718638 -g4605,696:7941493,9718638 -g4605,696:11716366,9718638 -g4605,696:12882906,9718638 -g4605,696:13737495,9718638 -k4605,697:17520562,9718638:939460 -k4605,697:18460021,9718638:939459 -) -(4605,698:6630773,10584773:11829248,355205,134348 -h4605,697:6630773,10584773:0,0,0 -k4605,698:14565217,10584773:3894805 -k4605,698:18460021,10584773:3894804 -) -(4605,699:6630773,11450908:11829248,505283,102891 -h4605,698:6630773,11450908:0,0,0 -r4605,786:6630773,11450908:0,608174,102891 -g4605,698:7941493,11450908 -g4605,698:7941493,11450908 -g4605,698:9828929,11450908 -g4605,698:10998746,11450908 -k4605,699:15317242,11450908:3142780 -k4605,699:18460021,11450908:3142779 -) -(4605,700:6630773,12317043:11829248,505283,126483 -h4605,699:6630773,12317043:0,0,0 -r4605,786:6630773,12317043:0,631766,126483 -g4605,699:7941493,12317043 -g4605,699:7941493,12317043 -g4605,699:10495430,12317043 -k4605,700:14876185,12317043:3583837 -k4605,700:18460021,12317043:3583836 -) -(4605,701:6630773,13183178:11829248,485622,102891 -h4605,700:6630773,13183178:0,0,0 -r4605,786:6630773,13183178:0,588513,102891 -g4605,700:7941493,13183178 -g4605,700:7941493,13183178 -g4605,700:10312585,13183178 -k4605,701:14983992,13183178:3476030 -k4605,701:18460021,13183178:3476029 -) -(4605,702:6630773,14049313:11829248,505283,102891 -h4605,701:6630773,14049313:0,0,0 -r4605,786:6630773,14049313:0,608174,102891 -g4605,701:7941493,14049313 -g4605,701:7941493,14049313 -g4605,701:9961312,14049313 -k4605,702:14808355,14049313:3651666 -k4605,702:18460021,14049313:3651666 -) -(4605,703:6630773,14915448:11829248,485622,102891 -h4605,702:6630773,14915448:0,0,0 -r4605,786:6630773,14915448:0,588513,102891 -g4605,702:7941493,14915448 -g4605,702:7941493,14915448 -g4605,702:9222721,14915448 -k4605,703:14429229,14915448:4030792 -k4605,703:18460021,14915448:4030792 -) -(4605,704:6630773,15781584:11829248,485622,102891 -h4605,703:6630773,15781584:0,0,0 -r4605,786:6630773,15781584:0,588513,102891 -g4605,703:7941493,15781584 -g4605,703:7941493,15781584 -g4605,703:10067480,15781584 -g4605,703:11237297,15781584 -k4605,704:15446348,15781584:3013674 -k4605,704:18460021,15781584:3013673 -) -(4605,705:6630773,16647719:11829248,485622,173670 -h4605,704:6630773,16647719:0,0,0 -r4605,786:6630773,16647719:0,659292,173670 -g4605,704:7941493,16647719 -g4605,704:7941493,16647719 -(4605,704:7941493,16647719:1181614,473825,0 -) -(4605,704:9428045,16821389:355205,473825,0 -) -g4605,704:10484484,16647719 -k4605,705:15060111,16647719:3399911 -k4605,705:18460021,16647719:3399910 -) -(4605,706:6630773,17513854:11829248,505283,102891 -h4605,705:6630773,17513854:0,0,0 -r4605,786:6630773,17513854:0,608174,102891 -g4605,705:7941493,17513854 -g4605,705:7941493,17513854 -g4605,705:11091808,17513854 -g4605,705:12660084,17513854 -g4605,705:14228360,17513854 -g4605,705:15796636,17513854 -k4605,705:18460021,17513854:1380846 -) -(4605,706:9252213,18378934:9207808,485622,102891 -g4605,705:10800828,18378934 -k4605,706:15228113,18378934:3231908 -k4605,706:18460021,18378934:3231908 -) -(4605,707:6630773,19245069:11829248,505283,102891 -h4605,706:6630773,19245069:0,0,0 -r4605,786:6630773,19245069:0,608174,102891 -g4605,706:7941493,19245069 -g4605,706:7941493,19245069 -g4605,706:12254416,19245069 -g4605,706:13822692,19245069 -g4605,706:15390968,19245069 -k4605,707:17523183,19245069:936838 -k4605,707:18460021,19245069:936838 -) -(4605,708:6630773,20111204:11829248,485622,102891 -h4605,707:6630773,20111204:0,0,0 -r4605,786:6630773,20111204:0,588513,102891 -g4605,707:7941493,20111204 -g4605,707:7941493,20111204 -g4605,707:9969176,20111204 -k4605,708:14812287,20111204:3647734 -k4605,708:18460021,20111204:3647734 -) -(4605,709:6630773,20977339:11829248,485622,102891 -h4605,708:6630773,20977339:0,0,0 -r4605,786:6630773,20977339:0,588513,102891 -g4605,708:7941493,20977339 -g4605,708:7941493,20977339 -g4605,708:10704490,20977339 -g4605,708:13795823,20977339 -k4605,709:16715780,20977339:1744241 -k4605,709:18460021,20977339:1744241 -) -(4605,710:6630773,21843474:11829248,505283,126483 -h4605,709:6630773,21843474:0,0,0 -r4605,786:6630773,21843474:0,631766,126483 -g4605,709:7941493,21843474 -g4605,709:7941493,21843474 -g4605,709:10998747,21843474 -k4605,710:15327073,21843474:3132949 -k4605,710:18460021,21843474:3132948 -) -(4605,711:6630773,22709610:11829248,485622,102891 -h4605,710:6630773,22709610:0,0,0 -r4605,786:6630773,22709610:0,588513,102891 -g4605,710:7941493,22709610 -g4605,710:7941493,22709610 -g4605,710:10470527,22709610 -k4605,711:15053132,22709610:3406889 -k4605,711:18460021,22709610:3406889 -) -(4605,712:6630773,23575745:11829248,485622,102891 -h4605,711:6630773,23575745:0,0,0 -r4605,786:6630773,23575745:0,588513,102891 -g4605,711:7941493,23575745 -g4605,711:7941493,23575745 -g4605,711:9011041,23575745 -g4605,711:9794195,23575745 -k4605,712:14714966,23575745:3745055 -k4605,712:18460021,23575745:3745055 -) -(4605,713:6630773,24441880:11829248,485622,102891 -h4605,712:6630773,24441880:0,0,0 -r4605,786:6630773,24441880:0,588513,102891 -g4605,712:7941493,24441880 -g4605,712:7941493,24441880 -g4605,712:10507227,24441880 -g4605,712:11677044,24441880 -k4605,713:15666221,24441880:2793800 -k4605,713:18460021,24441880:2793800 -) -(4605,714:6630773,25308015:11829248,485622,102891 -h4605,713:6630773,25308015:0,0,0 -r4605,786:6630773,25308015:0,588513,102891 -g4605,713:7941493,25308015 -g4605,713:7941493,25308015 -g4605,713:9953447,25308015 -g4605,713:11123264,25308015 -k4605,714:15389331,25308015:3070690 -k4605,714:18460021,25308015:3070690 -) -(4605,716:6630773,26174150:11829248,505283,102891 -h4605,714:6630773,26174150:0,0,0 -r4605,786:6630773,26174150:0,608174,102891 -g4605,714:7941493,26174150 -g4605,714:7941493,26174150 -g4605,714:10738569,26174150 -g4605,714:11509927,26174150 -g4605,714:12281285,26174150 -g4605,714:14575700,26174150 -g4605,714:15745517,26174150 -g4605,714:16915334,26174150 -k4605,714:18460021,26174150:660607 -) -(4605,716:9252213,27039230:9207808,485622,102891 -g4605,714:10800828,27039230 -g4605,714:12369104,27039230 -g4605,715:15460437,27039230 -g4605,715:17028713,27039230 -k4605,715:18460021,27039230:148769 -) -(4605,716:9252213,27904310:9207808,485622,102891 -g4605,715:10800828,27904310 -g4605,715:12369104,27904310 -k4605,716:16012251,27904310:2447770 -k4605,716:18460021,27904310:2447770 -) -(4605,717:6630773,28770445:11829248,505283,102891 -h4605,716:6630773,28770445:0,0,0 -r4605,786:6630773,28770445:0,608174,102891 -g4605,716:7941493,28770445 -g4605,716:7941493,28770445 -g4605,716:10471182,28770445 -k4605,717:15053460,28770445:3406562 -k4605,717:18460021,28770445:3406561 -) -(4605,718:6630773,29636580:11829248,485622,102891 -h4605,717:6630773,29636580:0,0,0 -r4605,786:6630773,29636580:0,588513,102891 -g4605,717:7941493,29636580 -g4605,717:7941493,29636580 -g4605,717:9473069,29636580 -g4605,717:10642886,29636580 -g4605,717:12211162,29636580 -g4605,717:13779438,29636580 -k4605,718:16717418,29636580:1742603 -k4605,718:18460021,29636580:1742603 -) -(4605,719:6630773,30502716:11829248,505283,102891 -h4605,718:6630773,30502716:0,0,0 -r4605,786:6630773,30502716:0,608174,102891 -g4605,718:7941493,30502716 -g4605,718:7941493,30502716 -g4605,718:9054293,30502716 -k4605,719:14345015,30502716:4115006 -k4605,719:18460021,30502716:4115006 -) -(4605,720:6630773,31368851:11829248,485622,102891 -h4605,719:6630773,31368851:0,0,0 -r4605,786:6630773,31368851:0,588513,102891 -g4605,719:7941493,31368851 -g4605,719:7941493,31368851 -g4605,719:9745698,31368851 -k4605,720:14501319,31368851:3958703 -k4605,720:18460021,31368851:3958702 -) -(4605,721:6630773,32234986:11829248,485622,102891 -h4605,720:6630773,32234986:0,0,0 -r4605,786:6630773,32234986:0,588513,102891 -g4605,720:7941493,32234986 -g4605,720:7941493,32234986 -g4605,720:9736523,32234986 -g4605,720:10906340,32234986 -g4605,720:12474616,32234986 -g4605,720:14042892,32234986 -k4605,721:16849145,32234986:1610876 -k4605,721:18460021,32234986:1610876 -) -(4605,722:6630773,33101121:11829248,485622,102891 -h4605,721:6630773,33101121:0,0,0 -r4605,786:6630773,33101121:0,588513,102891 -g4605,721:7941493,33101121 -g4605,721:7941493,33101121 -g4605,721:10325692,33101121 -k4605,722:14990545,33101121:3469476 -k4605,722:18460021,33101121:3469476 -) -(4605,723:6630773,33967256:11829248,485622,102891 -h4605,722:6630773,33967256:0,0,0 -r4605,786:6630773,33967256:0,588513,102891 -g4605,722:7941493,33967256 -g4605,722:7941493,33967256 -g4605,722:9881358,33967256 -g4605,722:11449634,33967256 -k4605,723:15552516,33967256:2907505 -k4605,723:18460021,33967256:2907505 -) -(4605,724:6630773,34833391:11829248,485622,126483 -h4605,723:6630773,34833391:0,0,0 -r4605,786:6630773,34833391:0,612105,126483 -g4605,723:7941493,34833391 -g4605,723:7941493,34833391 -g4605,723:10195275,34833391 -g4605,723:11763551,34833391 -k4605,724:15709475,34833391:2750547 -k4605,724:18460021,34833391:2750546 -) -(4605,725:6630773,35699526:11829248,485622,102891 -h4605,724:6630773,35699526:0,0,0 -r4605,786:6630773,35699526:0,588513,102891 -g4605,724:7941493,35699526 -g4605,724:7941493,35699526 -g4605,724:9766014,35699526 -g4605,724:10935831,35699526 -k4605,725:15295615,35699526:3164407 -k4605,725:18460021,35699526:3164406 -) -(4605,726:6630773,36565662:11829248,505283,102891 -h4605,725:6630773,36565662:0,0,0 -r4605,786:6630773,36565662:0,608174,102891 -g4605,725:7941493,36565662 -g4605,725:7941493,36565662 -g4605,725:10057651,36565662 -g4605,725:12274079,36565662 -g4605,725:14280791,36565662 -k4605,726:16768865,36565662:1691156 -k4605,726:18460021,36565662:1691156 -) -(4605,727:6630773,37431797:11829248,485622,102891 -h4605,726:6630773,37431797:0,0,0 -r4605,786:6630773,37431797:0,588513,102891 -g4605,726:7941493,37431797 -g4605,726:7941493,37431797 -g4605,726:9606762,37431797 -k4605,727:14631080,37431797:3828941 -k4605,727:18460021,37431797:3828941 -) -(4605,728:6630773,38297932:11829248,505283,126483 -h4605,727:6630773,38297932:0,0,0 -g4605,727:11865788,38297932 -g4605,727:15054769,38297932 -k4605,728:17355084,38297932:1104938 -k4605,728:18460021,38297932:1104937 -) -(4605,729:6630773,39164067:11829248,505283,134348 -h4605,728:6630773,39164067:0,0,0 -g4605,728:11865788,39164067 -g4605,728:15160938,39164067 -k4605,729:18169696,39164067:290325 -k4605,729:18460021,39164067:290325 -) -(4605,730:6630773,40030202:11829248,505283,126483 -h4605,729:6630773,40030202:0,0,0 -g4605,729:9168326,40030202 -g4605,729:10338143,40030202 -g4605,729:11507960,40030202 -g4605,729:13076236,40030202 -k4605,730:16355987,40030202:2104035 -k4605,730:18460021,40030202:2104034 -) -(4605,734:6630773,41569283:11829248,485622,102891 -h4605,733:6630773,41569283:0,0,0 -g4605,733:9196507,41569283 -g4605,733:10366324,41569283 -k4605,734:15010861,41569283:3449160 -k4605,734:18460021,41569283:3449160 -) -(4605,735:6630773,42435418:11829248,505283,126483 -h4605,734:6568514,42435418:0,0,0 -g4605,734:9452097,42435418 -k4605,735:14553748,42435418:3906274 -k4605,735:18460021,42435418:3906273 -) -(4605,739:6630773,43974499:11829248,505283,134348 -h4605,738:6630773,43974499:0,0,0 -g4605,738:7244845,43974499 -g4605,738:8130236,43974499 -g4605,738:8685325,43974499 -g4605,738:11900521,43974499 -k4605,739:15578730,43974499:2881291 -k4605,739:18460021,43974499:2881291 -) -(4605,740:6630773,44840634:11829248,485622,134348 -h4605,739:6630773,44840634:0,0,0 -g4605,739:7244845,44840634 -g4605,739:8130236,44840634 -g4605,739:8685325,44840634 -g4605,739:11800251,44840634 -k4605,740:15528595,44840634:2931426 -k4605,740:18460021,44840634:2931426 -) -(4605,741:6630773,45706769:11829248,477757,134348 -h4605,740:6630773,45706769:0,0,0 -g4605,740:7244845,45706769 -g4605,740:8130236,45706769 -g4605,740:8685325,45706769 -g4605,740:11800251,45706769 -k4605,741:15518765,45706769:2941257 -k4605,741:18460021,45706769:2941256 -) -] -k4605,786:19606901,45706769:1146880 -r4605,786:19606901,45706769:0,40242380,134348 -k4605,786:20753781,45706769:1146880 -[4605,786:20753781,45706769:11829248,40108032,126483 -(4605,742:20753781,6254097:11829248,505283,102891 -h4605,741:20753781,6254097:0,0,0 -g4605,741:21375718,6254097 -g4605,741:25099473,6254097 -g4605,741:26269290,6254097 -k4605,742:30023848,6254097:2559181 -k4605,742:32583029,6254097:2559181 -) -(4605,744:20753781,7133110:11829248,505283,126483 -h4605,742:20753781,7133110:0,0,0 -g4605,742:23447310,7133110 -g4605,742:25736482,7133110 -k4605,743:25736482,7133110:0 -g4605,743:26903022,7133110 -k4605,743:32583029,7133110:2212497 -) -(4605,744:23375221,7998190:9207808,505283,102891 -k4605,743:32583029,7998190:5008917 -) -(4605,744:23375221,8863270:9207808,505283,126483 -g4605,743:28610236,8863270 -k4605,744:31554769,8863270:1028260 -k4605,744:32583029,8863270:1028260 -) -(4605,745:20753781,9742283:11829248,505283,102891 -h4605,744:20753781,9742283:0,0,0 -g4605,744:23447310,9742283 -g4605,744:26636291,9742283 -k4605,745:32583029,9742283:4979427 -) -(4605,745:23375221,10607363:9207808,505283,126483 -g4605,744:28610236,10607363 -k4605,745:32004674,10607363:578356 -k4605,745:32583029,10607363:578355 -) -(4605,746:20753781,11486375:11829248,505283,134348 -h4605,745:20753781,11486375:0,0,0 -g4605,745:23447310,11486375 -g4605,745:26742460,11486375 -k4605,746:32583029,11486375:4873258 -) -(4605,746:23375221,12351455:9207808,505283,134348 -g4605,745:28610236,12351455 -k4605,746:32057758,12351455:525272 -k4605,746:32583029,12351455:525271 -) -(4605,747:20753781,13230468:11829248,505283,126483 -h4605,746:20753781,13230468:0,0,0 -g4605,746:24190489,13230468 -g4605,746:25140105,13230468 -g4605,746:26309922,13230468 -k4605,747:29835104,13230468:2747925 -k4605,747:32583029,13230468:2747925 -) -(4605,748:20753781,14109481:11829248,505283,102891 -h4605,747:20691522,14109481:0,0,0 -g4605,747:24239640,14109481 -k4605,748:29009023,14109481:3574006 -k4605,748:32583029,14109481:3574006 -) -(4605,749:20753781,14988494:11829248,505283,102891 -h4605,748:20691522,14988494:0,0,0 -g4605,748:23154364,14988494 -g4605,748:24722640,14988494 -g4605,748:27813973,14988494 -g4605,748:29382249,14988494 -g4605,748:30950525,14988494 -k4605,749:32364466,14988494:218564 -k4605,749:32583029,14988494:218563 -) -(4605,750:20753781,15867507:11829248,505283,102891 -h4605,749:20691522,15867507:0,0,0 -g4605,749:23477457,15867507 -g4605,749:25045733,15867507 -k4605,750:29412070,15867507:3170960 -k4605,750:32583029,15867507:3170959 -) -(4605,751:20753781,16746519:11829248,505283,126483 -h4605,750:20753781,16746519:0,0,0 -g4605,750:22306328,16746519 -g4605,750:25321639,16746519 -g4605,750:26712313,16746519 -g4605,750:30491774,16746519 -k4605,751:31935861,16746519:647169 -k4605,751:32583029,16746519:647168 -) -(4605,752:20753781,17625532:11829248,513147,134348 -h4605,751:20753781,17625532:0,0,0 -g4605,751:23812346,17625532 -g4605,751:24670867,17625532 -g4605,751:28446396,17625532 -g4605,751:29616213,17625532 -k4605,752:31697310,17625532:885720 -k4605,752:32583029,17625532:885719 -) -(4605,753:20753781,18504545:11829248,513147,134348 -h4605,752:20753781,18504545:0,0,0 -g4605,752:23812346,18504545 -g4605,752:24670867,18504545 -g4605,752:28016479,18504545 -k4605,753:30698213,18504545:1884816 -k4605,753:32583029,18504545:1884816 -) -(4605,754:20753781,19383558:11829248,505283,134348 -h4605,753:20753781,19383558:0,0,0 -g4605,753:23227109,19383558 -g4605,753:27370295,19383558 -k4605,754:30937420,19383558:1645609 -k4605,754:32583029,19383558:1645609 -) -(4605,755:20753781,20262571:11829248,505283,102891 -h4605,754:20691522,20262571:0,0,0 -g4605,754:24069902,20262571 -k4605,755:28914324,20262571:3668706 -k4605,755:32583029,20262571:3668705 -) -(4605,756:20753781,21141583:11829248,505283,134348 -h4605,755:20753781,21141583:0,0,0 -g4605,755:23950627,21141583 -g4605,755:26613354,21141583 -k4605,756:29996651,21141583:2586379 -k4605,756:32583029,21141583:2586378 -) -(4605,757:20753781,22020596:11829248,505283,126483 -h4605,756:20753781,22020596:0,0,0 -g4605,756:23183856,22020596 -g4605,756:24350396,22020596 -g4605,756:28612202,22020596 -k4605,757:31928324,22020596:654705 -k4605,757:32583029,22020596:654705 -) -(4605,758:20753781,22899609:11829248,505283,126483 -h4605,757:20691522,22899609:0,0,0 -g4605,757:23559377,22899609 -k4605,758:28260602,22899609:4322427 -k4605,758:32583029,22899609:4322427 -) -(4605,759:20753781,23778622:11829248,505283,126483 -h4605,758:20753781,23778622:0,0,0 -g4605,758:25015587,23778622 -g4605,758:26604179,23778622 -g4605,758:29531672,23778622 -k4605,759:32018109,23778622:564921 -k4605,759:32583029,23778622:564920 -) -(4605,760:20753781,24657635:11829248,505283,126483 -h4605,759:20753781,24657635:0,0,0 -g4605,759:25015587,24657635 -g4605,759:28049903,24657635 -k4605,760:30505865,24657635:2077164 -k4605,760:32583029,24657635:2077164 -) -(4605,761:20753781,25536647:11829248,505283,126483 -h4605,760:20691522,25536647:0,0,0 -g4605,760:23991259,25536647 -k4605,761:28875002,25536647:3708027 -k4605,761:32583029,25536647:3708027 -) -(4605,762:20753781,26415660:11829248,505283,126483 -h4605,761:20691522,26415660:0,0,0 -g4605,761:24406102,26415660 -k4605,762:29082424,26415660:3500606 -k4605,762:32583029,26415660:3500605 -) -(4605,763:20753781,27294673:11829248,505283,134348 -h4605,762:20753781,27294673:0,0,0 -g4605,762:24100704,27294673 -g4605,762:26615320,27294673 -k4605,763:30958391,27294673:1624638 -k4605,763:32583029,27294673:1624638 -) -(4605,764:20753781,28173686:11829248,505283,102891 -h4605,763:20691522,28173686:0,0,0 -g4605,763:24449356,28173686 -k4605,764:29104051,28173686:3478979 -k4605,764:32583029,28173686:3478978 -) -(4605,765:20753781,29052699:11829248,485622,102891 -h4605,764:20753781,29052699:0,0,0 -g4605,764:22765735,29052699 -g4605,764:23935552,29052699 -k4605,765:28856979,29052699:3726050 -k4605,765:32583029,29052699:3726050 -) -(4605,766:20753781,29931712:11829248,505283,102891 -h4605,765:20753781,29931712:0,0,0 -g4605,765:24892379,29931712 -k4605,766:29335393,29931712:3247637 -k4605,766:32583029,29931712:3247636 -) -(4605,767:20753781,30810724:11829248,505283,102891 -h4605,766:20691522,30810724:0,0,0 -g4605,766:24283549,30810724 -g4605,766:25851825,30810724 -k4605,767:29805285,30810724:2777744 -k4605,767:32583029,30810724:2777744 -) -(4605,768:20753781,31689737:11829248,485622,126483 -h4605,767:20753781,31689737:0,0,0 -g4605,767:25440260,31689737 -k4605,768:29609333,31689737:2973696 -k4605,768:32583029,31689737:2973696 -) -(4605,769:20753781,32568750:11829248,505283,126483 -h4605,768:20753781,32568750:0,0,0 -g4605,768:23769747,32568750 -g4605,768:27373571,32568750 -g4605,768:28382170,32568750 -k4605,768:32583029,32568750:2724333 -) -(4605,769:23375221,33433830:9207808,485622,11795 -k4605,769:29338342,33433830:3244688 -k4605,769:32583029,33433830:3244687 -) -(4605,770:20753781,34312843:11829248,505283,102891 -h4605,769:20691522,34312843:0,0,0 -g4605,769:23904751,34312843 -k4605,770:28841579,34312843:3741451 -k4605,770:32583029,34312843:3741450 -) -(4605,772:20753781,35191856:11829248,505283,102891 -h4605,770:20753781,35191856:0,0,0 -g4605,770:23550857,35191856 -g4605,770:24322215,35191856 -g4605,770:25093573,35191856 -g4605,770:27387988,35191856 -g4605,770:28557805,35191856 -g4605,770:29727622,35191856 -g4605,770:30897439,35191856 -k4605,770:32583029,35191856:403051 -) -(4605,772:23375221,36056936:9207808,485622,102891 -g4605,770:24923836,36056936 -g4605,771:28015169,36056936 -g4605,771:29583445,36056936 -g4605,771:31151721,36056936 -k4605,771:32583029,36056936:148769 -) -(4605,772:23375221,36922016:9207808,485622,102891 -g4605,771:24943497,36922016 -k4605,772:29360952,36922016:3222078 -k4605,772:32583029,36922016:3222077 -) -(4605,773:20753781,37801028:11829248,505283,102891 -h4605,772:20753781,37801028:0,0,0 -g4605,772:23283470,37801028 -k4605,773:28521108,37801028:4061922 -k4605,773:32583029,37801028:4061921 -) -(4605,777:20753781,39567612:11829248,485622,102891 -h4605,776:20753781,39567612:0,0,0 -g4605,776:21479919,39567612 -g4605,776:22649736,39567612 -g4605,776:23819553,39567612 -g4605,776:25387829,39567612 -g4605,776:26956105,39567612 -k4605,777:30367256,39567612:2215774 -k4605,777:32583029,39567612:2215773 -) -(4605,778:20753781,40446625:11829248,505283,102891 -h4605,777:20753781,40446625:0,0,0 -g4605,777:22984626,40446625 -k4605,778:28182287,40446625:4400743 -k4605,778:32583029,40446625:4400742 -) -(4605,779:20753781,41325638:11829248,505283,126483 -h4605,778:20753781,41325638:0,0,0 -g4605,778:21706674,41325638 -g4605,778:23461072,41325638 -g4605,778:26079890,41325638 -k4605,779:29929148,41325638:2653881 -k4605,779:32583029,41325638:2653881 -) -(4605,780:20753781,42204651:11829248,485622,102891 -h4605,779:20753781,42204651:0,0,0 -g4605,779:22285357,42204651 -g4605,779:23455174,42204651 -g4605,779:25023450,42204651 -g4605,779:26591726,42204651 -k4605,780:30185066,42204651:2397963 -k4605,780:32583029,42204651:2397963 -) -(4605,781:20753781,43083663:11829248,505283,102891 -h4605,780:20691522,43083663:0,0,0 -g4605,780:23397503,43083663 -k4605,781:29349483,43083663:3233547 -k4605,781:32583029,43083663:3233546 -) -(4605,782:20753781,43962676:11829248,513147,134348 -h4605,781:20753781,43962676:0,0,0 -g4605,781:22855520,43962676 -g4605,781:26414124,43962676 -g4605,781:27580664,43962676 -g4605,781:30682483,43962676 -k4605,781:32583029,43962676:1241254 -) -(4605,782:23375221,44827756:9207808,505283,134348 -g4605,781:26467209,44827756 -k4605,782:30476374,44827756:2106655 -k4605,782:32583029,44827756:2106655 -) -(4605,784:20753781,45706769:11829248,505283,126483 -h4605,782:20753781,45706769:0,0,0 -g4605,782:24115777,45706769 -g4605,782:27105529,45706769 -g4605,782:30145088,45706769 -k4605,783:30145088,45706769:0 -k4605,784:32583029,45706769:1470630 -) -] -(4605,786:32583029,45706769:0,355205,126483 -h4605,786:32583029,45706769:420741,355205,126483 -k4605,786:32583029,45706769:-420741 -) -) -] -(4605,786:32583029,45706769:0,0,0 -g4605,786:32583029,45706769 -) -) -] -(4605,786:6630773,47279633:25952256,0,0 -h4605,786:6630773,47279633:25952256,0,0 -) -] -(4605,786:4262630,4025873:0,0,0 -[4605,786:-473656,4025873:0,0,0 -(4605,786:-473656,-710413:0,0,0 -(4605,786:-473656,-710413:0,0,0 -g4605,786:-473656,-710413 +[4609,787:3078558,4812305:0,0,0 +(4609,787:3078558,49800853:0,16384,2228224 +g4609,787:29030814,49800853 +g4609,787:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,787:36151628,51504789:16384,1179648,0 +) +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 +) +] +) +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,787:37855564,49800853:1179648,16384,0 +) +) +k4609,787:3078556,49800853:-34777008 +) +] +g4609,787:6630773,4812305 +g4609,787:6630773,4812305 +g4609,787:9313817,4812305 +g4609,787:11211739,4812305 +k4609,787:31387651,4812305:20175912 +) +) +] +[4609,787:6630773,45706769:25952256,40108032,0 +(4609,787:6630773,45706769:25952256,40108032,0 +(4609,787:6630773,45706769:0,0,0 +g4609,787:6630773,45706769 +) +[4609,787:6630773,45706769:25952256,40108032,0 +(4609,787:6630773,45706769:25952256,40108032,126483 +[4609,787:6630773,45706769:11829248,40108032,126483 +(4609,694:6630773,6254097:11829248,505283,102891 +h4609,693:6630773,6254097:0,0,0 +r4609,787:6630773,6254097:0,608174,102891 +g4609,693:7941493,6254097 +g4609,693:7941493,6254097 +g4609,693:11158000,6254097 +k4609,694:16168227,6254097:2291794 +k4609,694:18460021,6254097:2291794 +) +(4609,695:6630773,7132404:11829248,505283,102891 +h4609,694:6630773,7132404:0,0,0 +r4609,787:6630773,7132404:0,608174,102891 +g4609,694:7941493,7132404 +g4609,694:7941493,7132404 +g4609,694:11716366,7132404 +g4609,694:12882906,7132404 +g4609,694:13737495,7132404 +k4609,695:17520562,7132404:939460 +k4609,695:18460021,7132404:939459 +) +(4609,696:6630773,8010711:11829248,355205,134348 +h4609,695:6630773,8010711:0,0,0 +k4609,696:14565217,8010711:3894805 +k4609,696:18460021,8010711:3894804 +) +(4609,697:6630773,8889018:11829248,505283,102891 +h4609,696:6630773,8889018:0,0,0 +r4609,787:6630773,8889018:0,608174,102891 +g4609,696:7941493,8889018 +g4609,696:7941493,8889018 +g4609,696:9828929,8889018 +g4609,696:10998746,8889018 +k4609,697:15317242,8889018:3142780 +k4609,697:18460021,8889018:3142779 +) +(4609,698:6630773,9767324:11829248,505283,126483 +h4609,697:6630773,9767324:0,0,0 +r4609,787:6630773,9767324:0,631766,126483 +g4609,697:7941493,9767324 +g4609,697:7941493,9767324 +g4609,697:10495430,9767324 +k4609,698:14876185,9767324:3583837 +k4609,698:18460021,9767324:3583836 +) +(4609,699:6630773,10645631:11829248,485622,102891 +h4609,698:6630773,10645631:0,0,0 +r4609,787:6630773,10645631:0,588513,102891 +g4609,698:7941493,10645631 +g4609,698:7941493,10645631 +g4609,698:10312585,10645631 +k4609,699:14983992,10645631:3476030 +k4609,699:18460021,10645631:3476029 +) +(4609,700:6630773,11523938:11829248,505283,102891 +h4609,699:6630773,11523938:0,0,0 +r4609,787:6630773,11523938:0,608174,102891 +g4609,699:7941493,11523938 +g4609,699:7941493,11523938 +g4609,699:9961312,11523938 +k4609,700:14808355,11523938:3651666 +k4609,700:18460021,11523938:3651666 +) +(4609,701:6630773,12402245:11829248,485622,102891 +h4609,700:6630773,12402245:0,0,0 +r4609,787:6630773,12402245:0,588513,102891 +g4609,700:7941493,12402245 +g4609,700:7941493,12402245 +g4609,700:9222721,12402245 +k4609,701:14429229,12402245:4030792 +k4609,701:18460021,12402245:4030792 +) +(4609,702:6630773,13280552:11829248,485622,102891 +h4609,701:6630773,13280552:0,0,0 +r4609,787:6630773,13280552:0,588513,102891 +g4609,701:7941493,13280552 +g4609,701:7941493,13280552 +g4609,701:10067480,13280552 +g4609,701:11237297,13280552 +k4609,702:15446348,13280552:3013674 +k4609,702:18460021,13280552:3013673 +) +(4609,703:6630773,14158859:11829248,485622,173670 +h4609,702:6630773,14158859:0,0,0 +r4609,787:6630773,14158859:0,659292,173670 +g4609,702:7941493,14158859 +g4609,702:7941493,14158859 +(4609,702:7941493,14158859:1181614,473825,0 +) +(4609,702:9428045,14332529:355205,473825,0 +) +g4609,702:10484484,14158859 +k4609,703:15060111,14158859:3399911 +k4609,703:18460021,14158859:3399910 +) +(4609,704:6630773,15037166:11829248,505283,102891 +h4609,703:6630773,15037166:0,0,0 +r4609,787:6630773,15037166:0,608174,102891 +g4609,703:7941493,15037166 +g4609,703:7941493,15037166 +g4609,703:11091808,15037166 +g4609,703:12660084,15037166 +g4609,703:14228360,15037166 +g4609,703:15796636,15037166 +k4609,703:18460021,15037166:1380846 +) +(4609,704:9252213,15902246:9207808,485622,102891 +g4609,703:10800828,15902246 +k4609,704:15228113,15902246:3231908 +k4609,704:18460021,15902246:3231908 +) +(4609,705:6630773,16780553:11829248,505283,102891 +h4609,704:6630773,16780553:0,0,0 +r4609,787:6630773,16780553:0,608174,102891 +g4609,704:7941493,16780553 +g4609,704:7941493,16780553 +g4609,704:12254416,16780553 +g4609,704:13822692,16780553 +g4609,704:15390968,16780553 +k4609,705:17523183,16780553:936838 +k4609,705:18460021,16780553:936838 +) +(4609,706:6630773,17658859:11829248,485622,102891 +h4609,705:6630773,17658859:0,0,0 +r4609,787:6630773,17658859:0,588513,102891 +g4609,705:7941493,17658859 +g4609,705:7941493,17658859 +g4609,705:9969176,17658859 +k4609,706:14812287,17658859:3647734 +k4609,706:18460021,17658859:3647734 +) +(4609,707:6630773,18537166:11829248,485622,102891 +h4609,706:6630773,18537166:0,0,0 +r4609,787:6630773,18537166:0,588513,102891 +g4609,706:7941493,18537166 +g4609,706:7941493,18537166 +g4609,706:10704490,18537166 +g4609,706:13795823,18537166 +k4609,707:16715780,18537166:1744241 +k4609,707:18460021,18537166:1744241 +) +(4609,708:6630773,19415473:11829248,505283,126483 +h4609,707:6630773,19415473:0,0,0 +r4609,787:6630773,19415473:0,631766,126483 +g4609,707:7941493,19415473 +g4609,707:7941493,19415473 +g4609,707:10998747,19415473 +k4609,708:15327073,19415473:3132949 +k4609,708:18460021,19415473:3132948 +) +(4609,709:6630773,20293780:11829248,485622,102891 +h4609,708:6630773,20293780:0,0,0 +r4609,787:6630773,20293780:0,588513,102891 +g4609,708:7941493,20293780 +g4609,708:7941493,20293780 +g4609,708:10470527,20293780 +k4609,709:15053132,20293780:3406889 +k4609,709:18460021,20293780:3406889 +) +(4609,710:6630773,21172087:11829248,485622,102891 +h4609,709:6630773,21172087:0,0,0 +r4609,787:6630773,21172087:0,588513,102891 +g4609,709:7941493,21172087 +g4609,709:7941493,21172087 +g4609,709:9011041,21172087 +g4609,709:9794195,21172087 +k4609,710:14714966,21172087:3745055 +k4609,710:18460021,21172087:3745055 +) +(4609,711:6630773,22050394:11829248,485622,102891 +h4609,710:6630773,22050394:0,0,0 +r4609,787:6630773,22050394:0,588513,102891 +g4609,710:7941493,22050394 +g4609,710:7941493,22050394 +g4609,710:10507227,22050394 +g4609,710:11677044,22050394 +k4609,711:15666221,22050394:2793800 +k4609,711:18460021,22050394:2793800 +) +(4609,712:6630773,22928701:11829248,485622,102891 +h4609,711:6630773,22928701:0,0,0 +r4609,787:6630773,22928701:0,588513,102891 +g4609,711:7941493,22928701 +g4609,711:7941493,22928701 +g4609,711:9953447,22928701 +g4609,711:11123264,22928701 +k4609,712:15389331,22928701:3070690 +k4609,712:18460021,22928701:3070690 +) +(4609,714:6630773,23807007:11829248,505283,102891 +h4609,712:6630773,23807007:0,0,0 +r4609,787:6630773,23807007:0,608174,102891 +g4609,712:7941493,23807007 +g4609,712:7941493,23807007 +g4609,712:10738569,23807007 +g4609,712:11509927,23807007 +g4609,712:12281285,23807007 +g4609,712:14575700,23807007 +g4609,712:15745517,23807007 +g4609,712:16915334,23807007 +k4609,712:18460021,23807007:660607 +) +(4609,714:9252213,24672087:9207808,485622,102891 +g4609,712:10800828,24672087 +g4609,712:12369104,24672087 +g4609,713:15460437,24672087 +g4609,713:17028713,24672087 +k4609,713:18460021,24672087:148769 +) +(4609,714:9252213,25537167:9207808,485622,102891 +g4609,713:10800828,25537167 +g4609,713:12369104,25537167 +k4609,714:16012251,25537167:2447770 +k4609,714:18460021,25537167:2447770 +) +(4609,715:6630773,26415474:11829248,505283,102891 +h4609,714:6630773,26415474:0,0,0 +r4609,787:6630773,26415474:0,608174,102891 +g4609,714:7941493,26415474 +g4609,714:7941493,26415474 +g4609,714:10471182,26415474 +k4609,715:15053460,26415474:3406562 +k4609,715:18460021,26415474:3406561 +) +(4609,716:6630773,27293781:11829248,485622,102891 +h4609,715:6630773,27293781:0,0,0 +r4609,787:6630773,27293781:0,588513,102891 +g4609,715:7941493,27293781 +g4609,715:7941493,27293781 +g4609,715:9473069,27293781 +g4609,715:10642886,27293781 +g4609,715:12211162,27293781 +g4609,715:13779438,27293781 +k4609,716:16717418,27293781:1742603 +k4609,716:18460021,27293781:1742603 +) +(4609,717:6630773,28172088:11829248,505283,102891 +h4609,716:6630773,28172088:0,0,0 +r4609,787:6630773,28172088:0,608174,102891 +g4609,716:7941493,28172088 +g4609,716:7941493,28172088 +g4609,716:9054293,28172088 +k4609,717:14345015,28172088:4115006 +k4609,717:18460021,28172088:4115006 +) +(4609,718:6630773,29050395:11829248,485622,102891 +h4609,717:6630773,29050395:0,0,0 +r4609,787:6630773,29050395:0,588513,102891 +g4609,717:7941493,29050395 +g4609,717:7941493,29050395 +g4609,717:9736523,29050395 +g4609,717:10906340,29050395 +g4609,717:12474616,29050395 +g4609,717:14042892,29050395 +k4609,718:16849145,29050395:1610876 +k4609,718:18460021,29050395:1610876 +) +(4609,719:6630773,29928702:11829248,485622,102891 +h4609,718:6630773,29928702:0,0,0 +r4609,787:6630773,29928702:0,588513,102891 +g4609,718:7941493,29928702 +g4609,718:7941493,29928702 +g4609,718:10325692,29928702 +k4609,719:14990545,29928702:3469476 +k4609,719:18460021,29928702:3469476 +) +(4609,720:6630773,30807009:11829248,485622,102891 +h4609,719:6630773,30807009:0,0,0 +r4609,787:6630773,30807009:0,588513,102891 +g4609,719:7941493,30807009 +g4609,719:7941493,30807009 +g4609,719:9881358,30807009 +g4609,719:11449634,30807009 +k4609,720:15552516,30807009:2907505 +k4609,720:18460021,30807009:2907505 +) +(4609,721:6630773,31685316:11829248,485622,126483 +h4609,720:6630773,31685316:0,0,0 +r4609,787:6630773,31685316:0,612105,126483 +g4609,720:7941493,31685316 +g4609,720:7941493,31685316 +g4609,720:10195275,31685316 +g4609,720:11763551,31685316 +k4609,721:15709475,31685316:2750547 +k4609,721:18460021,31685316:2750546 +) +(4609,722:6630773,32563622:11829248,485622,102891 +h4609,721:6630773,32563622:0,0,0 +r4609,787:6630773,32563622:0,588513,102891 +g4609,721:7941493,32563622 +g4609,721:7941493,32563622 +g4609,721:9766014,32563622 +g4609,721:10935831,32563622 +k4609,722:15295615,32563622:3164407 +k4609,722:18460021,32563622:3164406 +) +(4609,723:6630773,33441929:11829248,505283,102891 +h4609,722:6630773,33441929:0,0,0 +r4609,787:6630773,33441929:0,608174,102891 +g4609,722:7941493,33441929 +g4609,722:7941493,33441929 +g4609,722:10057651,33441929 +g4609,722:12274079,33441929 +g4609,722:14280791,33441929 +k4609,723:16768865,33441929:1691156 +k4609,723:18460021,33441929:1691156 +) +(4609,724:6630773,34320236:11829248,485622,102891 +h4609,723:6630773,34320236:0,0,0 +r4609,787:6630773,34320236:0,588513,102891 +g4609,723:7941493,34320236 +g4609,723:7941493,34320236 +g4609,723:9606762,34320236 +k4609,724:14631080,34320236:3828941 +k4609,724:18460021,34320236:3828941 +) +(4609,725:6630773,35198543:11829248,505283,126483 +h4609,724:6630773,35198543:0,0,0 +g4609,724:11865788,35198543 +g4609,724:15054769,35198543 +k4609,725:17355084,35198543:1104938 +k4609,725:18460021,35198543:1104937 +) +(4609,726:6630773,36076850:11829248,505283,134348 +h4609,725:6630773,36076850:0,0,0 +g4609,725:11865788,36076850 +g4609,725:15160938,36076850 +k4609,726:18169696,36076850:290325 +k4609,726:18460021,36076850:290325 +) +(4609,727:6630773,36955157:11829248,505283,126483 +h4609,726:6630773,36955157:0,0,0 +g4609,726:9168326,36955157 +g4609,726:10338143,36955157 +g4609,726:11507960,36955157 +g4609,726:13076236,36955157 +k4609,727:16355987,36955157:2104035 +k4609,727:18460021,36955157:2104034 +) +(4609,731:6630773,38709269:11829248,485622,102891 +h4609,730:6630773,38709269:0,0,0 +g4609,730:9196507,38709269 +g4609,730:10366324,38709269 +k4609,731:15010861,38709269:3449160 +k4609,731:18460021,38709269:3449160 +) +(4609,732:6630773,39587576:11829248,505283,126483 +h4609,731:6568514,39587576:0,0,0 +g4609,731:9452097,39587576 +k4609,732:14553748,39587576:3906274 +k4609,732:18460021,39587576:3906273 +) +(4609,736:6630773,41341688:11829248,505283,134348 +h4609,735:6630773,41341688:0,0,0 +g4609,735:7244845,41341688 +g4609,735:8130236,41341688 +g4609,735:8685325,41341688 +g4609,735:11900521,41341688 +k4609,736:15578730,41341688:2881291 +k4609,736:18460021,41341688:2881291 +) +(4609,737:6630773,42219995:11829248,485622,134348 +h4609,736:6630773,42219995:0,0,0 +g4609,736:7244845,42219995 +g4609,736:8130236,42219995 +g4609,736:8685325,42219995 +g4609,736:11800251,42219995 +g4609,736:12970068,42219995 +k4609,737:16103673,42219995:2356348 +k4609,737:18460021,42219995:2356348 +) +(4609,738:6630773,43098302:11829248,505283,102891 +h4609,737:6630773,43098302:0,0,0 +g4609,737:7252710,43098302 +g4609,737:10976465,43098302 +g4609,737:12146282,43098302 +k4609,738:15900840,43098302:2559181 +k4609,738:18460021,43098302:2559181 +) +(4609,740:6630773,43976609:11829248,505283,126483 +h4609,738:6630773,43976609:0,0,0 +g4609,738:9324302,43976609 +g4609,738:11613474,43976609 +k4609,739:11613474,43976609:0 +g4609,739:12780014,43976609 +k4609,739:18460021,43976609:2212497 +) +(4609,740:9252213,44841689:9207808,505283,102891 +k4609,739:18460021,44841689:5008917 +) +(4609,740:9252213,45706769:9207808,505283,126483 +g4609,739:14487228,45706769 +k4609,740:17431761,45706769:1028260 +k4609,740:18460021,45706769:1028260 +) +] +k4609,787:19606901,45706769:1146880 +r4609,787:19606901,45706769:0,40234515,126483 +k4609,787:20753781,45706769:1146880 +[4609,787:20753781,45706769:11829248,40108032,102891 +(4609,741:20753781,6254097:11829248,505283,102891 +h4609,740:20753781,6254097:0,0,0 +g4609,740:23447310,6254097 +g4609,740:26636291,6254097 +k4609,741:32583029,6254097:4979427 +) +(4609,741:23375221,7119177:9207808,505283,126483 +g4609,740:28610236,7119177 +k4609,741:32004674,7119177:578356 +k4609,741:32583029,7119177:578355 +) +(4609,742:20753781,7984257:11829248,505283,134348 +h4609,741:20753781,7984257:0,0,0 +g4609,741:23447310,7984257 +g4609,741:26742460,7984257 +k4609,742:32583029,7984257:4873258 +) +(4609,742:23375221,8849337:9207808,505283,134348 +g4609,741:28610236,8849337 +k4609,742:32057758,8849337:525272 +k4609,742:32583029,8849337:525271 +) +(4609,743:20753781,9714417:11829248,505283,126483 +h4609,742:20753781,9714417:0,0,0 +g4609,742:24190489,9714417 +g4609,742:25140105,9714417 +g4609,742:26309922,9714417 +k4609,743:29835104,9714417:2747925 +k4609,743:32583029,9714417:2747925 +) +(4609,744:20753781,10579497:11829248,505283,102891 +h4609,743:20691522,10579497:0,0,0 +g4609,743:24239640,10579497 +k4609,744:29009023,10579497:3574006 +k4609,744:32583029,10579497:3574006 +) +(4609,745:20753781,11444577:11829248,505283,102891 +h4609,744:20691522,11444577:0,0,0 +g4609,744:23154364,11444577 +g4609,744:24722640,11444577 +g4609,744:27813973,11444577 +g4609,744:29382249,11444577 +g4609,744:30950525,11444577 +k4609,745:32364466,11444577:218564 +k4609,745:32583029,11444577:218563 +) +(4609,746:20753781,12309657:11829248,505283,102891 +h4609,745:20691522,12309657:0,0,0 +g4609,745:23477457,12309657 +g4609,745:25045733,12309657 +k4609,746:29412070,12309657:3170960 +k4609,746:32583029,12309657:3170959 +) +(4609,747:20753781,13174737:11829248,505283,126483 +h4609,746:20753781,13174737:0,0,0 +g4609,746:22306328,13174737 +g4609,746:25321639,13174737 +g4609,746:26712313,13174737 +g4609,746:30491774,13174737 +k4609,747:31935861,13174737:647169 +k4609,747:32583029,13174737:647168 +) +(4609,748:20753781,14039817:11829248,513147,134348 +h4609,747:20753781,14039817:0,0,0 +g4609,747:23812346,14039817 +g4609,747:24670867,14039817 +g4609,747:28446396,14039817 +g4609,747:29616213,14039817 +k4609,748:31697310,14039817:885720 +k4609,748:32583029,14039817:885719 +) +(4609,749:20753781,14904897:11829248,513147,134348 +h4609,748:20753781,14904897:0,0,0 +g4609,748:23812346,14904897 +g4609,748:24670867,14904897 +g4609,748:28016479,14904897 +k4609,749:30698213,14904897:1884816 +k4609,749:32583029,14904897:1884816 +) +(4609,750:20753781,15769977:11829248,505283,134348 +h4609,749:20753781,15769977:0,0,0 +g4609,749:23227109,15769977 +g4609,749:27370295,15769977 +k4609,750:30937420,15769977:1645609 +k4609,750:32583029,15769977:1645609 +) +(4609,751:20753781,16635057:11829248,505283,102891 +h4609,750:20691522,16635057:0,0,0 +g4609,750:24069902,16635057 +k4609,751:28914324,16635057:3668706 +k4609,751:32583029,16635057:3668705 +) +(4609,752:20753781,17500137:11829248,505283,134348 +h4609,751:20753781,17500137:0,0,0 +g4609,751:23950627,17500137 +g4609,751:26613354,17500137 +k4609,752:29996651,17500137:2586379 +k4609,752:32583029,17500137:2586378 +) +(4609,753:20753781,18365217:11829248,505283,126483 +h4609,752:20753781,18365217:0,0,0 +g4609,752:23183856,18365217 +g4609,752:24350396,18365217 +g4609,752:28612202,18365217 +k4609,753:31928324,18365217:654705 +k4609,753:32583029,18365217:654705 +) +(4609,754:20753781,19230297:11829248,505283,126483 +h4609,753:20691522,19230297:0,0,0 +g4609,753:23559377,19230297 +k4609,754:28260602,19230297:4322427 +k4609,754:32583029,19230297:4322427 +) +(4609,755:20753781,20095377:11829248,505283,126483 +h4609,754:20753781,20095377:0,0,0 +g4609,754:25015587,20095377 +g4609,754:26604179,20095377 +g4609,754:29531672,20095377 +k4609,755:32018109,20095377:564921 +k4609,755:32583029,20095377:564920 +) +(4609,756:20753781,20960457:11829248,505283,126483 +h4609,755:20753781,20960457:0,0,0 +g4609,755:25015587,20960457 +g4609,755:28049903,20960457 +k4609,756:30505865,20960457:2077164 +k4609,756:32583029,20960457:2077164 +) +(4609,757:20753781,21825537:11829248,505283,126483 +h4609,756:20691522,21825537:0,0,0 +g4609,756:23991259,21825537 +k4609,757:28875002,21825537:3708027 +k4609,757:32583029,21825537:3708027 +) +(4609,758:20753781,22690617:11829248,505283,126483 +h4609,757:20691522,22690617:0,0,0 +g4609,757:24406102,22690617 +k4609,758:29082424,22690617:3500606 +k4609,758:32583029,22690617:3500605 +) +(4609,759:20753781,23555697:11829248,505283,134348 +h4609,758:20753781,23555697:0,0,0 +g4609,758:24100704,23555697 +g4609,758:26615320,23555697 +k4609,759:30958391,23555697:1624638 +k4609,759:32583029,23555697:1624638 +) +(4609,760:20753781,24420777:11829248,505283,102891 +h4609,759:20691522,24420777:0,0,0 +g4609,759:24449356,24420777 +k4609,760:29104051,24420777:3478979 +k4609,760:32583029,24420777:3478978 +) +(4609,761:20753781,25285857:11829248,485622,102891 +h4609,760:20753781,25285857:0,0,0 +g4609,760:22765735,25285857 +g4609,760:23935552,25285857 +k4609,761:28856979,25285857:3726050 +k4609,761:32583029,25285857:3726050 +) +(4609,762:20753781,26150937:11829248,505283,102891 +h4609,761:20691522,26150937:0,0,0 +g4609,761:24283549,26150937 +g4609,761:25851825,26150937 +k4609,762:29805285,26150937:2777744 +k4609,762:32583029,26150937:2777744 +) +(4609,763:20753781,27016017:11829248,485622,126483 +h4609,762:20753781,27016017:0,0,0 +g4609,762:25440260,27016017 +k4609,763:29609333,27016017:2973696 +k4609,763:32583029,27016017:2973696 +) +(4609,764:20753781,27881097:11829248,505283,126483 +h4609,763:20753781,27881097:0,0,0 +g4609,763:23769747,27881097 +g4609,763:27373571,27881097 +g4609,763:28382170,27881097 +k4609,763:32583029,27881097:2724333 +) +(4609,764:23375221,28746177:9207808,485622,11795 +k4609,764:29338342,28746177:3244688 +k4609,764:32583029,28746177:3244687 +) +(4609,765:20753781,29611257:11829248,505283,102891 +h4609,764:20691522,29611257:0,0,0 +g4609,764:23904751,29611257 +k4609,765:28841579,29611257:3741451 +k4609,765:32583029,29611257:3741450 +) +(4609,767:20753781,30476337:11829248,505283,102891 +h4609,765:20753781,30476337:0,0,0 +g4609,765:23550857,30476337 +g4609,765:24322215,30476337 +g4609,765:25093573,30476337 +g4609,765:27387988,30476337 +g4609,765:28557805,30476337 +g4609,765:29727622,30476337 +g4609,765:30897439,30476337 +k4609,765:32583029,30476337:403051 +) +(4609,767:23375221,31341417:9207808,485622,102891 +g4609,765:24923836,31341417 +g4609,766:28015169,31341417 +g4609,766:29583445,31341417 +g4609,766:31151721,31341417 +k4609,766:32583029,31341417:148769 +) +(4609,767:23375221,32206497:9207808,485622,102891 +g4609,766:24943497,32206497 +k4609,767:29360952,32206497:3222078 +k4609,767:32583029,32206497:3222077 +) +(4609,768:20753781,33071577:11829248,505283,102891 +h4609,767:20753781,33071577:0,0,0 +g4609,767:23283470,33071577 +k4609,768:28521108,33071577:4061922 +k4609,768:32583029,33071577:4061921 +) +(4609,772:20753781,34460729:11829248,485622,102891 +h4609,771:20753781,34460729:0,0,0 +g4609,771:21479919,34460729 +g4609,771:22649736,34460729 +g4609,771:23819553,34460729 +g4609,771:25387829,34460729 +g4609,771:26956105,34460729 +k4609,772:30367256,34460729:2215774 +k4609,772:32583029,34460729:2215773 +) +(4609,773:20753781,35325809:11829248,505283,102891 +h4609,772:20753781,35325809:0,0,0 +g4609,772:22984626,35325809 +k4609,773:28182287,35325809:4400743 +k4609,773:32583029,35325809:4400742 +) +(4609,774:20753781,36190889:11829248,505283,126483 +h4609,773:20753781,36190889:0,0,0 +g4609,773:21706674,36190889 +g4609,773:23461072,36190889 +g4609,773:26079890,36190889 +k4609,774:29929148,36190889:2653881 +k4609,774:32583029,36190889:2653881 +) +(4609,775:20753781,37055969:11829248,485622,102891 +h4609,774:20753781,37055969:0,0,0 +g4609,774:22285357,37055969 +g4609,774:23455174,37055969 +g4609,774:25023450,37055969 +g4609,774:26591726,37055969 +k4609,775:30185066,37055969:2397963 +k4609,775:32583029,37055969:2397963 +) +(4609,776:20753781,37921049:11829248,505283,102891 +h4609,775:20691522,37921049:0,0,0 +g4609,775:23397503,37921049 +k4609,776:29349483,37921049:3233547 +k4609,776:32583029,37921049:3233546 +) +(4609,777:20753781,38786129:11829248,513147,134348 +h4609,776:20753781,38786129:0,0,0 +g4609,776:22855520,38786129 +g4609,776:26414124,38786129 +g4609,776:27580664,38786129 +g4609,776:30682483,38786129 +k4609,776:32583029,38786129:1241254 +) +(4609,777:23375221,39651209:9207808,505283,134348 +g4609,776:26467209,39651209 +k4609,777:30476374,39651209:2106655 +k4609,777:32583029,39651209:2106655 +) +(4609,779:20753781,40516289:11829248,505283,126483 +h4609,777:20753781,40516289:0,0,0 +g4609,777:24115777,40516289 +g4609,777:27105529,40516289 +g4609,777:30145088,40516289 +k4609,778:30145088,40516289:0 +k4609,779:32583029,40516289:1470630 +) +(4609,779:23375221,41381369:9207808,513147,126483 +g4609,778:26364973,41381369 +k4609,778:32583029,41381369:2447770 +) +(4609,779:23375221,42246449:9207808,485622,11795 +k4609,779:29387494,42246449:3195535 +k4609,779:32583029,42246449:3195535 +) +(4609,780:20753781,43111529:11829248,505283,134348 +h4609,779:20753781,43111529:0,0,0 +g4609,779:23422407,43111529 +g4609,779:25381278,43111529 +k4609,780:29579842,43111529:3003187 +k4609,780:32583029,43111529:3003187 +) +(4609,781:20753781,43976609:11829248,485622,126483 +h4609,780:20753781,43976609:0,0,0 +g4609,780:23288058,43976609 +g4609,780:24457875,43976609 +k4609,781:29118141,43976609:3464889 +k4609,781:32583029,43976609:3464888 +) +(4609,782:20753781,44841689:11829248,505283,134348 +h4609,781:20753781,44841689:0,0,0 +r4609,787:20753781,44841689:0,639631,134348 +g4609,781:22064501,44841689 +g4609,781:22064501,44841689 +g4609,781:25759420,44841689 +k4609,782:29768913,44841689:2814116 +k4609,782:32583029,44841689:2814116 +) +(4609,783:20753781,45706769:11829248,513147,102891 +h4609,782:20753781,45706769:0,0,0 +r4609,787:20753781,45706769:0,616038,102891 +g4609,782:22064501,45706769 +g4609,782:22064501,45706769 +g4609,782:25519559,45706769 +k4609,783:29648983,45706769:2934047 +k4609,783:32583029,45706769:2934046 +) +] +(4609,787:32583029,45706769:0,355205,126483 +h4609,787:32583029,45706769:420741,355205,126483 +k4609,787:32583029,45706769:-420741 +) +) +] +(4609,787:32583029,45706769:0,0,0 +g4609,787:32583029,45706769 +) +) +] +(4609,787:6630773,47279633:25952256,0,0 +h4609,787:6630773,47279633:25952256,0,0 +) +] +(4609,787:4262630,4025873:0,0,0 +[4609,787:-473656,4025873:0,0,0 +(4609,787:-473656,-710413:0,0,0 +(4609,787:-473656,-710413:0,0,0 +g4609,787:-473656,-710413 +) +g4609,787:-473656,-710413 ) -g4605,786:-473656,-710413 -) -] +] ) ] -!26067 -}442 +!25628 +}443 !12 -{443 -[4605,886:4262630,47279633:28320399,43253760,0 -(4605,886:4262630,4025873:0,0,0 -[4605,886:-473656,4025873:0,0,0 -(4605,886:-473656,-710413:0,0,0 -(4605,886:-473656,-644877:0,0,0 -k4605,886:-473656,-644877:-65536 +{444 +[4609,893:4262630,47279633:28320399,43253760,0 +(4609,893:4262630,4025873:0,0,0 +[4609,893:-473656,4025873:0,0,0 +(4609,893:-473656,-710413:0,0,0 +(4609,893:-473656,-644877:0,0,0 +k4609,893:-473656,-644877:-65536 ) -(4605,886:-473656,4736287:0,0,0 -k4605,886:-473656,4736287:5209943 +(4609,893:-473656,4736287:0,0,0 +k4609,893:-473656,4736287:5209943 ) -g4605,886:-473656,-710413 +g4609,893:-473656,-710413 ) ] ) -[4605,886:6630773,47279633:25952256,43253760,0 -[4605,886:6630773,4812305:25952256,786432,0 -(4605,886:6630773,4812305:25952256,505283,11795 -(4605,886:6630773,4812305:25952256,505283,11795 -g4605,886:3078558,4812305 -[4605,886:3078558,4812305:0,0,0 -(4605,886:3078558,2439708:0,1703936,0 -k4605,886:1358238,2439708:-1720320 -(4605,1:1358238,2439708:1720320,1703936,0 -(4605,1:1358238,2439708:1179648,16384,0 -r4605,886:2537886,2439708:1179648,16384,0 +[4609,893:6630773,47279633:25952256,43253760,0 +[4609,893:6630773,4812305:25952256,786432,0 +(4609,893:6630773,4812305:25952256,505283,11795 +(4609,893:6630773,4812305:25952256,505283,11795 +g4609,893:3078558,4812305 +[4609,893:3078558,4812305:0,0,0 +(4609,893:3078558,2439708:0,1703936,0 +k4609,893:1358238,2439708:-1720320 +(4609,1:1358238,2439708:1720320,1703936,0 +(4609,1:1358238,2439708:1179648,16384,0 +r4609,893:2537886,2439708:1179648,16384,0 ) -g4605,1:3062174,2439708 -(4605,1:3062174,2439708:16384,1703936,0 -[4605,1:3062174,2439708:25952256,1703936,0 -(4605,1:3062174,1915420:25952256,1179648,0 -(4605,1:3062174,1915420:16384,1179648,0 -r4605,886:3078558,1915420:16384,1179648,0 +g4609,1:3062174,2439708 +(4609,1:3062174,2439708:16384,1703936,0 +[4609,1:3062174,2439708:25952256,1703936,0 +(4609,1:3062174,1915420:25952256,1179648,0 +(4609,1:3062174,1915420:16384,1179648,0 +r4609,893:3078558,1915420:16384,1179648,0 ) -k4605,1:29014430,1915420:25935872 -g4605,1:29014430,1915420 +k4609,1:29014430,1915420:25935872 +g4609,1:29014430,1915420 ) ] ) ) ) ] -[4605,886:3078558,4812305:0,0,0 -(4605,886:3078558,2439708:0,1703936,0 -g4605,886:29030814,2439708 -g4605,886:36135244,2439708 -(4605,1:36135244,2439708:1720320,1703936,0 -(4605,1:36135244,2439708:16384,1703936,0 -[4605,1:36135244,2439708:25952256,1703936,0 -(4605,1:36135244,1915420:25952256,1179648,0 -(4605,1:36135244,1915420:16384,1179648,0 -r4605,886:36151628,1915420:16384,1179648,0 +[4609,893:3078558,4812305:0,0,0 +(4609,893:3078558,2439708:0,1703936,0 +g4609,893:29030814,2439708 +g4609,893:36135244,2439708 +(4609,1:36135244,2439708:1720320,1703936,0 +(4609,1:36135244,2439708:16384,1703936,0 +[4609,1:36135244,2439708:25952256,1703936,0 +(4609,1:36135244,1915420:25952256,1179648,0 +(4609,1:36135244,1915420:16384,1179648,0 +r4609,893:36151628,1915420:16384,1179648,0 ) -k4605,1:62087500,1915420:25935872 -g4605,1:62087500,1915420 +k4609,1:62087500,1915420:25935872 +g4609,1:62087500,1915420 ) ] ) -g4605,1:36675916,2439708 -(4605,1:36675916,2439708:1179648,16384,0 -r4605,886:37855564,2439708:1179648,16384,0 +g4609,1:36675916,2439708 +(4609,1:36675916,2439708:1179648,16384,0 +r4609,893:37855564,2439708:1179648,16384,0 ) ) -k4605,886:3078556,2439708:-34777008 +k4609,893:3078556,2439708:-34777008 ) ] -[4605,886:3078558,4812305:0,0,0 -(4605,886:3078558,49800853:0,16384,2228224 -k4605,886:1358238,49800853:-1720320 -(4605,1:1358238,49800853:1720320,16384,2228224 -(4605,1:1358238,49800853:1179648,16384,0 -r4605,886:2537886,49800853:1179648,16384,0 +[4609,893:3078558,4812305:0,0,0 +(4609,893:3078558,49800853:0,16384,2228224 +k4609,893:1358238,49800853:-1720320 +(4609,1:1358238,49800853:1720320,16384,2228224 +(4609,1:1358238,49800853:1179648,16384,0 +r4609,893:2537886,49800853:1179648,16384,0 ) -g4605,1:3062174,49800853 -(4605,1:3062174,52029077:16384,1703936,0 -[4605,1:3062174,52029077:25952256,1703936,0 -(4605,1:3062174,51504789:25952256,1179648,0 -(4605,1:3062174,51504789:16384,1179648,0 -r4605,886:3078558,51504789:16384,1179648,0 +g4609,1:3062174,49800853 +(4609,1:3062174,52029077:16384,1703936,0 +[4609,1:3062174,52029077:25952256,1703936,0 +(4609,1:3062174,51504789:25952256,1179648,0 +(4609,1:3062174,51504789:16384,1179648,0 +r4609,893:3078558,51504789:16384,1179648,0 ) -k4605,1:29014430,51504789:25935872 -g4605,1:29014430,51504789 +k4609,1:29014430,51504789:25935872 +g4609,1:29014430,51504789 ) ] ) ) ) ] -[4605,886:3078558,4812305:0,0,0 -(4605,886:3078558,49800853:0,16384,2228224 -g4605,886:29030814,49800853 -g4605,886:36135244,49800853 -(4605,1:36135244,49800853:1720320,16384,2228224 -(4605,1:36135244,52029077:16384,1703936,0 -[4605,1:36135244,52029077:25952256,1703936,0 -(4605,1:36135244,51504789:25952256,1179648,0 -(4605,1:36135244,51504789:16384,1179648,0 -r4605,886:36151628,51504789:16384,1179648,0 +[4609,893:3078558,4812305:0,0,0 +(4609,893:3078558,49800853:0,16384,2228224 +g4609,893:29030814,49800853 +g4609,893:36135244,49800853 +(4609,1:36135244,49800853:1720320,16384,2228224 +(4609,1:36135244,52029077:16384,1703936,0 +[4609,1:36135244,52029077:25952256,1703936,0 +(4609,1:36135244,51504789:25952256,1179648,0 +(4609,1:36135244,51504789:16384,1179648,0 +r4609,893:36151628,51504789:16384,1179648,0 ) -k4605,1:62087500,51504789:25935872 -g4605,1:62087500,51504789 +k4609,1:62087500,51504789:25935872 +g4609,1:62087500,51504789 ) ] ) -g4605,1:36675916,49800853 -(4605,1:36675916,49800853:1179648,16384,0 -r4605,886:37855564,49800853:1179648,16384,0 +g4609,1:36675916,49800853 +(4609,1:36675916,49800853:1179648,16384,0 +r4609,893:37855564,49800853:1179648,16384,0 ) ) -k4605,886:3078556,49800853:-34777008 +k4609,893:3078556,49800853:-34777008 ) ] -g4605,886:6630773,4812305 -k4605,886:28201292,4812305:20375142 -g4605,886:30884336,4812305 -) -) -] -[4605,886:6630773,45706769:25952256,40108032,0 -(4605,886:6630773,45706769:25952256,40108032,0 -(4605,886:6630773,45706769:0,0,0 -g4605,886:6630773,45706769 -) -[4605,886:6630773,45706769:25952256,40108032,0 -(4605,886:6630773,45706769:25952256,40108032,126483 -[4605,886:6630773,45706769:11829248,40108032,102891 -(4605,784:9252213,6254097:9207808,513147,126483 -g4605,783:12241965,6254097 -k4605,783:18460021,6254097:2447770 -) -(4605,784:9252213,7119177:9207808,485622,11795 -k4605,784:15264486,7119177:3195535 -k4605,784:18460021,7119177:3195535 -) -(4605,785:6630773,7996765:11829248,505283,134348 -h4605,784:6630773,7996765:0,0,0 -g4605,784:9299399,7996765 -g4605,784:11258270,7996765 -k4605,785:15456834,7996765:3003187 -k4605,785:18460021,7996765:3003187 -) -(4605,786:6630773,8874353:11829248,485622,126483 -h4605,785:6630773,8874353:0,0,0 -g4605,785:9165050,8874353 -g4605,785:10334867,8874353 -k4605,786:14995133,8874353:3464889 -k4605,786:18460021,8874353:3464888 -) -(4605,787:6630773,9751941:11829248,505283,134348 -h4605,786:6630773,9751941:0,0,0 -r4605,886:6630773,9751941:0,639631,134348 -g4605,786:7941493,9751941 -g4605,786:7941493,9751941 -g4605,786:11636412,9751941 -k4605,787:15645905,9751941:2814116 -k4605,787:18460021,9751941:2814116 -) -(4605,788:6630773,10629528:11829248,513147,102891 -h4605,787:6630773,10629528:0,0,0 -r4605,886:6630773,10629528:0,616038,102891 -g4605,787:7941493,10629528 -g4605,787:7941493,10629528 -g4605,787:11396551,10629528 -k4605,788:15525975,10629528:2934047 -k4605,788:18460021,10629528:2934046 -) -(4605,789:6630773,11507116:11829248,505283,126483 -h4605,788:6630773,11507116:0,0,0 -r4605,886:6630773,11507116:0,631766,126483 -g4605,788:7941493,11507116 -g4605,788:7941493,11507116 -g4605,788:11708502,11507116 -k4605,789:15681950,11507116:2778071 -k4605,789:18460021,11507116:2778071 -) -(4605,790:6630773,12384704:11829248,485622,134348 -h4605,789:6630773,12384704:0,0,0 -r4605,886:6630773,12384704:0,619970,134348 -g4605,789:7941493,12384704 -g4605,789:7941493,12384704 -g4605,789:11066249,12384704 -k4605,790:15350993,12384704:3109028 -k4605,790:18460021,12384704:3109028 -) -(4605,791:6630773,13262292:11829248,485622,134348 -h4605,790:6630773,13262292:0,0,0 -r4605,886:6630773,13262292:0,619970,134348 -g4605,790:7941493,13262292 -g4605,790:7941493,13262292 -g4605,790:10572108,13262292 -k4605,791:15113753,13262292:3346268 -k4605,791:18460021,13262292:3346268 -) -(4605,792:6630773,14139880:11829248,513147,134348 -h4605,791:6630773,14139880:0,0,0 -g4605,791:10669101,14139880 -g4605,791:14067798,14139880 -g4605,791:15636074,14139880 -k4605,792:17645736,14139880:814285 -k4605,792:18460021,14139880:814285 -) -(4605,793:6630773,15017468:11829248,485622,126483 -h4605,792:6630773,15017468:0,0,0 -g4605,792:9943617,15017468 -k4605,793:14600278,15017468:3859743 -k4605,793:18460021,15017468:3859743 -) -(4605,794:6630773,15895056:11829248,485622,102891 -h4605,793:6630773,15895056:0,0,0 -g4605,793:8268517,15895056 -k4605,794:14325027,15895056:4134994 -k4605,794:18460021,15895056:4134994 -) -(4605,795:6630773,16772643:11829248,513147,102891 -h4605,794:6568514,16772643:0,0,0 -g4605,794:7929696,16772643 -g4605,794:9497972,16772643 -k4605,795:14576685,16772643:3883336 -k4605,795:18460021,16772643:3883336 -) -(4605,796:6630773,17650231:11829248,505283,102891 -h4605,795:6630773,17650231:0,0,0 -g4605,795:7743573,17650231 -k4605,796:13689655,17650231:4770366 -k4605,796:18460021,17650231:4770366 -) -(4605,797:6630773,18527819:11829248,505283,102891 -h4605,796:6568514,18527819:0,0,0 -g4605,796:10259501,18527819 -k4605,797:14957450,18527819:3502572 -k4605,797:18460021,18527819:3502571 -) -(4605,798:6630773,19405407:11829248,505283,126483 -h4605,797:6630773,19405407:0,0,0 -g4605,797:8954679,19405407 -g4605,797:10650095,19405407 -g4605,797:14539656,19405407 -k4605,798:17097527,19405407:1362494 -k4605,798:18460021,19405407:1362494 -) -(4605,799:6630773,20282995:11829248,505283,134348 -h4605,798:6630773,20282995:0,0,0 -g4605,798:10231321,20282995 -g4605,798:12854071,20282995 -k4605,799:17016263,20282995:1443759 -k4605,799:18460021,20282995:1443758 -) -(4605,800:6630773,21160583:11829248,505283,126483 -h4605,799:6630773,21160583:0,0,0 -g4605,799:9024147,21160583 -k4605,800:14747407,21160583:3712615 -k4605,800:18460021,21160583:3712614 -) -(4605,801:6630773,22038171:11829248,485622,102891 -h4605,800:6630773,22038171:0,0,0 -r4605,886:6630773,22038171:0,588513,102891 -g4605,800:7941493,22038171 -g4605,800:7941493,22038171 -g4605,800:9294156,22038171 -k4605,801:14275548,22038171:4184474 -k4605,801:18460021,22038171:4184473 -) -(4605,802:6630773,22915758:11829248,485622,102891 -h4605,801:6630773,22915758:0,0,0 -r4605,886:6630773,22915758:0,588513,102891 -g4605,801:7941493,22915758 -g4605,801:7941493,22915758 -g4605,801:9654604,22915758 -k4605,802:14455772,22915758:4004250 -k4605,802:18460021,22915758:4004249 -) -(4605,803:6630773,23793346:11829248,485622,102891 -h4605,802:6630773,23793346:0,0,0 -g4605,802:8434978,23793346 -k4605,803:13845959,23793346:4614063 -k4605,803:18460021,23793346:4614062 -) -(4605,804:6630773,24670934:11829248,485622,102891 -h4605,803:6630773,24670934:0,0,0 -g4605,803:8425803,24670934 -g4605,803:9595620,24670934 -g4605,803:11163896,24670934 -g4605,803:12732172,24670934 -k4605,804:16193785,24670934:2266236 -k4605,804:18460021,24670934:2266236 -) -(4605,805:6630773,25548522:11829248,485622,102891 -h4605,804:6630773,25548522:0,0,0 -g4605,804:9014972,25548522 -k4605,805:14335185,25548522:4124836 -k4605,805:18460021,25548522:4124836 -) -(4605,806:6630773,26426110:11829248,513147,102891 -h4605,805:6630773,26426110:0,0,0 -g4605,805:11495510,26426110 -g4605,805:12993007,26426110 -k4605,806:15915913,26426110:2544108 -k4605,806:18460021,26426110:2544108 -) -(4605,807:6630773,27303698:11829248,485622,102891 -h4605,806:6630773,27303698:0,0,0 -g4605,806:8570638,27303698 -g4605,806:10138914,27303698 -k4605,807:14897156,27303698:3562865 -k4605,807:18460021,27303698:3562865 -) -(4605,808:6630773,28181286:11829248,505283,134348 -h4605,807:6630773,28181286:0,0,0 -g4605,807:9914126,28181286 -g4605,807:13006114,28181286 -k4605,808:16330756,28181286:2129265 -k4605,808:18460021,28181286:2129265 -) -(4605,810:6630773,29058873:11829248,513147,134348 -h4605,808:6630773,29058873:0,0,0 -g4605,808:9683440,29058873 -g4605,808:13242044,29058873 -k4605,809:13242044,29058873:0 -g4605,809:14408584,29058873 -g4605,809:17510403,29058873 -k4605,809:18460021,29058873:290326 -) -(4605,810:9252213,29923953:9207808,505283,134348 -g4605,809:12344201,29923953 -k4605,810:16828830,29923953:1631191 -k4605,810:18460021,29923953:1631191 -) -(4605,811:6630773,30801541:11829248,505283,102891 -h4605,810:6568514,30801541:0,0,0 -g4605,810:8874725,30801541 -g4605,810:10443001,30801541 -g4605,810:12011277,30801541 -k4605,811:15833338,30801541:2626684 -k4605,811:18460021,30801541:2626683 -) -(4605,812:6630773,31679129:11829248,505283,126483 -h4605,811:6630773,31679129:0,0,0 -g4605,811:8158417,31679129 -g4605,811:9324957,31679129 -g4605,811:10949594,31679129 -g4605,811:12993661,31679129 -k4605,812:18092036,31679129:367986 -k4605,812:18460021,31679129:367985 -) -(4605,813:6630773,32556717:11829248,505283,134348 -h4605,812:6568514,32556717:0,0,0 -g4605,812:9474380,32556717 -k4605,813:14564889,32556717:3895132 -k4605,813:18460021,32556717:3895132 -) -(4605,814:6630773,33434305:11829248,505283,102891 -h4605,813:6630773,33434305:0,0,0 -g4605,813:9800749,33434305 -$4605,813:9800749,33434305 -$4605,813:10121220,33434305 -g4605,813:11898556,33434305 -g4605,813:13065096,33434305 -$4605,813:13065096,33434305 -$4605,813:13385567,33434305 -k4605,814:16625013,33434305:1835009 -k4605,814:18460021,33434305:1835008 -) -(4605,815:6630773,34311893:11829248,473825,7863 -h4605,814:6630773,34311893:0,0,0 -k4605,815:14299468,34311893:4160553 -k4605,815:18460021,34311893:4160553 -) -(4605,816:6630773,35189480:11829248,505283,102891 -h4605,815:6630773,35189480:0,0,0 -r4605,886:6630773,35189480:0,608174,102891 -g4605,815:7941493,35189480 -g4605,815:7941493,35189480 -g4605,815:11398517,35189480 -k4605,816:16288486,35189480:2171536 -k4605,816:18460021,35189480:2171535 -) -(4605,817:6630773,36067068:11829248,505283,102891 -h4605,816:6568514,36067068:0,0,0 -g4605,816:9644773,36067068 -g4605,816:10814590,36067068 -k4605,817:15234994,36067068:3225027 -k4605,817:18460021,36067068:3225027 -) -(4605,818:6630773,36944656:11829248,485622,126483 -h4605,817:6630773,36944656:0,0,0 -g4605,817:8884555,36944656 -g4605,817:10452831,36944656 -k4605,818:15054115,36944656:3405907 -k4605,818:18460021,36944656:3405906 -) -(4605,822:6630773,38686066:11829248,485622,102891 -h4605,821:6630773,38686066:0,0,0 -$4605,821:6630773,38686066 -$4605,821:6951244,38686066 -g4605,821:8728580,38686066 -g4605,821:11819913,38686066 -k4605,822:16489353,38686066:1970668 -k4605,822:18460021,38686066:1970668 -) -(4605,823:6630773,39563654:11829248,426639,7863 -h4605,822:6630773,39563654:0,0,0 -k4605,823:13306270,39563654:5153751 -k4605,823:18460021,39563654:5153751 -) -(4605,824:6630773,40441242:11829248,505283,134348 -h4605,823:6630773,40441242:0,0,0 -r4605,886:6630773,40441242:0,639631,134348 -g4605,823:7941493,40441242 -g4605,823:7941493,40441242 -g4605,823:10914206,40441242 -$4605,823:10914206,40441242 -$4605,823:11382133,40441242 -g4605,823:13978669,40441242 -k4605,824:16817034,40441242:1642988 -k4605,824:18460021,40441242:1642987 -) -(4605,825:6630773,41318830:11829248,505283,126483 -h4605,824:6630773,41318830:0,0,0 -r4605,886:6630773,41318830:0,631766,126483 -g4605,824:7941493,41318830 -g4605,824:7941493,41318830 -g4605,824:10811969,41318830 -g4605,824:15269072,41318830 -k4605,825:17462235,41318830:997786 -k4605,825:18460021,41318830:997786 -) -(4605,826:6630773,42196418:11829248,505283,126483 -h4605,825:6630773,42196418:0,0,0 -r4605,886:6630773,42196418:0,631766,126483 -g4605,825:7941493,42196418 -g4605,825:7941493,42196418 -g4605,825:11072803,42196418 -k4605,826:15364101,42196418:3095921 -k4605,826:18460021,42196418:3095920 -) -(4605,827:6630773,43074005:11829248,505283,126483 -h4605,826:6630773,43074005:0,0,0 -r4605,886:6630773,43074005:0,631766,126483 -g4605,826:7941493,43074005 -g4605,826:7941493,43074005 -g4605,826:10595045,43074005 -g4605,826:12331749,43074005 -k4605,827:15993574,43074005:2466448 -k4605,827:18460021,43074005:2466447 -) -(4605,828:6630773,43951593:11829248,513147,7863 -h4605,827:6630773,43951593:0,0,0 -g4605,827:8056181,43951593 -k4605,828:13914772,43951593:4545249 -k4605,828:18460021,43951593:4545249 -) -(4605,829:6630773,44829181:11829248,513147,102891 -h4605,828:6630773,44829181:0,0,0 -r4605,886:6630773,44829181:0,616038,102891 -g4605,828:7941493,44829181 -g4605,828:7941493,44829181 -g4605,828:9409499,44829181 -g4605,828:11095740,44829181 -k4605,829:15375569,44829181:3084452 -k4605,829:18460021,44829181:3084452 -) -(4605,830:6630773,45706769:11829248,513147,102891 -h4605,829:6630773,45706769:0,0,0 -r4605,886:6630773,45706769:0,616038,102891 -g4605,829:7941493,45706769 -g4605,829:7941493,45706769 -g4605,829:9704411,45706769 -g4605,829:11718332,45706769 -g4605,829:13825314,45706769 -k4605,830:16740356,45706769:1719665 -k4605,830:18460021,45706769:1719665 -) -] -k4605,886:19606901,45706769:1146880 -r4605,886:19606901,45706769:0,40234515,126483 -k4605,886:20753781,45706769:1146880 -[4605,886:20753781,45706769:11829248,40108032,102891 -(4605,831:20753781,6254097:11829248,513147,11795 -h4605,830:20753781,6254097:0,0,0 -r4605,886:20753781,6254097:0,524942,11795 -g4605,830:22064501,6254097 -g4605,830:22064501,6254097 -g4605,830:25436328,6254097 -g4605,830:28840923,6254097 -k4605,830:32583029,6254097:2352743 -) -(4605,831:23375221,7119177:9207808,513147,102891 -g4605,830:26294849,7119177 -k4605,831:30036628,7119177:2546402 -k4605,831:32583029,7119177:2546401 -) -(4605,832:20753781,7987569:11829248,513147,102891 -h4605,831:20753781,7987569:0,0,0 -r4605,886:20753781,7987569:0,616038,102891 -g4605,831:22064501,7987569 -g4605,831:22064501,7987569 -g4605,831:23511536,7987569 -g4605,831:25197777,7987569 -k4605,832:29488092,7987569:3094938 -k4605,832:32583029,7987569:3094937 -) -(4605,833:20753781,8855961:11829248,513147,102891 -h4605,832:20753781,8855961:0,0,0 -r4605,886:20753781,8855961:0,616038,102891 -g4605,832:22064501,8855961 -g4605,832:22064501,8855961 -g4605,832:23657681,8855961 -g4605,832:25260691,8855961 -g4605,832:28256341,8855961 -k4605,833:31017374,8855961:1565656 -k4605,833:32583029,8855961:1565655 -) -(4605,834:20753781,9724353:11829248,513147,134348 -h4605,833:20753781,9724353:0,0,0 -g4605,833:23269708,9724353 -g4605,833:26828312,9724353 -g4605,833:27994852,9724353 -g4605,833:31096671,9724353 -k4605,833:32583029,9724353:827066 -) -(4605,834:23375221,10589433:9207808,505283,134348 -g4605,833:26467209,10589433 -k4605,834:30683468,10589433:1899561 -k4605,834:32583029,10589433:1899561 -) -(4605,835:20753781,11457825:11829248,505283,7863 -h4605,834:20753781,11457825:0,0,0 -k4605,835:27574113,11457825:5008917 -k4605,835:32583029,11457825:5008916 -) -(4605,836:20753781,12326218:11829248,513147,102891 -h4605,835:20753781,12326218:0,0,0 -r4605,886:20753781,12326218:0,616038,102891 -g4605,835:22064501,12326218 -g4605,835:22064501,12326218 -g4605,835:25780392,12326218 -g4605,835:27373572,12326218 -g4605,835:28962164,12326218 -k4605,835:32583029,12326218:1327105 -) -(4605,836:23375221,13191298:9207808,485622,11795 -k4605,836:29338342,13191298:3244688 -k4605,836:32583029,13191298:3244687 -) -(4605,837:20753781,14059690:11829248,505283,102891 -h4605,836:20691522,14059690:0,0,0 -g4605,836:23293300,14059690 -g4605,836:24463117,14059690 -g4605,836:25632934,14059690 -g4605,836:27201210,14059690 -g4605,836:28769486,14059690 -g4605,836:30337762,14059690 -k4605,836:32583029,14059690:962728 -) -(4605,837:23375221,14924770:9207808,485622,11795 -k4605,837:28576814,14924770:4006216 -k4605,837:32583029,14924770:4006215 -) -(4605,838:20753781,15793162:11829248,505283,126483 -h4605,837:20691522,15793162:0,0,0 -g4605,837:23409955,15793162 -k4605,838:28594181,15793162:3988849 -k4605,838:32583029,15793162:3988848 -) -(4605,839:20753781,16661554:11829248,505283,126483 -h4605,838:20691522,16661554:0,0,0 -g4605,838:22936129,16661554 -g4605,838:26027462,16661554 -g4605,838:29118795,16661554 -k4605,839:31438770,16661554:1144259 -k4605,839:32583029,16661554:1144259 -) -(4605,841:20753781,17529946:11829248,505283,126483 -h4605,839:20691522,17529946:0,0,0 -g4605,839:24339255,17529946 -g4605,839:25836752,17529946 -g4605,839:27006569,17529946 -g4605,839:28574845,17529946 -k4605,839:32583029,17529946:1202588 -) -(4605,841:23375221,18395026:9207808,485622,102891 -g4605,839:24943497,18395026 -g4605,839:26511773,18395026 -g4605,839:28080049,18395026 -g4605,840:29648325,18395026 -g4605,840:31216601,18395026 -k4605,840:32583029,18395026:83889 -) -(4605,841:23375221,19260106:9207808,485622,102891 -g4605,840:24943497,19260106 -g4605,840:26511773,19260106 -g4605,840:28080049,19260106 -g4605,840:29648325,19260106 -g4605,840:31216601,19260106 -k4605,841:32487673,19260106:95356 -k4605,841:32583029,19260106:95356 -) -(4605,842:20753781,20128498:11829248,505283,102891 -h4605,841:20753781,20128498:0,0,0 -g4605,841:22378418,20128498 -g4605,841:23769092,20128498 -g4605,841:25853136,20128498 -k4605,842:30577299,20128498:2005730 -k4605,842:32583029,20128498:2005730 -) -(4605,843:20753781,20996890:11829248,505283,102891 -h4605,842:20753781,20996890:0,0,0 -r4605,886:20753781,20996890:0,608174,102891 -g4605,842:22064501,20996890 -g4605,842:22064501,20996890 -g4605,842:23757951,20996890 -g4605,842:25556258,20996890 -k4605,843:29657502,20996890:2925528 -k4605,843:32583029,20996890:2925527 -) -(4605,844:20753781,21865282:11829248,485622,102891 -h4605,843:20753781,21865282:0,0,0 -r4605,886:20753781,21865282:0,588513,102891 -g4605,843:22064501,21865282 -g4605,843:22064501,21865282 -g4605,843:23689138,21865282 -g4605,843:25938989,21865282 -k4605,844:29848867,21865282:2734162 -k4605,844:32583029,21865282:2734162 -) -(4605,845:20753781,22733674:11829248,505283,102891 -h4605,844:20753781,22733674:0,0,0 -r4605,886:20753781,22733674:0,608174,102891 -g4605,844:22064501,22733674 -g4605,844:22064501,22733674 -g4605,844:25178771,22733674 -g4605,844:26803408,22733674 -g4605,844:30914481,22733674 -k4605,845:32336613,22733674:246416 -k4605,845:32583029,22733674:246416 -) -(4605,846:20753781,23602067:11829248,485622,102891 -h4605,845:20753781,23602067:0,0,0 -g4605,845:22378418,23602067 -g4605,845:24596156,23602067 -k4605,846:29948809,23602067:2634220 -k4605,846:32583029,23602067:2634220 -) -(4605,847:20753781,24470459:11829248,505283,126483 -h4605,846:20753781,24470459:0,0,0 -r4605,886:20753781,24470459:0,631766,126483 -g4605,846:22064501,24470459 -g4605,846:22064501,24470459 -g4605,846:27167789,24470459 -k4605,847:30473098,24470459:2109932 -k4605,847:32583029,24470459:2109931 -) -(4605,848:20753781,25338851:11829248,505283,102891 -h4605,847:20691522,25338851:0,0,0 -g4605,847:23051473,25338851 -k4605,848:28414940,25338851:4168090 -k4605,848:32583029,25338851:4168089 -) -(4605,849:20753781,26207243:11829248,485622,126483 -h4605,848:20753781,26207243:0,0,0 -g4605,848:22339096,26207243 -g4605,848:26188680,26207243 -k4605,849:30336782,26207243:2246247 -k4605,849:32583029,26207243:2246247 -) -(4605,850:20753781,27075635:11829248,485622,126483 -h4605,849:20753781,27075635:0,0,0 -g4605,849:22339096,27075635 -g4605,849:26097585,27075635 -k4605,850:29728936,27075635:2854094 -k4605,850:32583029,27075635:2854093 -) -(4605,854:20753781,28654588:11829248,485622,102891 -h4605,853:20753781,28654588:0,0,0 -g4605,853:24141992,28654588 -k4605,854:28960199,28654588:3622830 -k4605,854:32583029,28654588:3622830 -) -(4605,855:20753781,29522981:11829248,485622,102891 -h4605,854:20753781,29522981:0,0,0 -g4605,854:22578302,29522981 -g4605,854:23748119,29522981 -g4605,854:24917936,29522981 -g4605,854:26087753,29522981 -g4605,854:27257570,29522981 -g4605,854:28825846,29522981 -k4605,855:31302126,29522981:1280903 -k4605,855:32583029,29522981:1280903 -) -(4605,856:20753781,30391373:11829248,485622,102891 -h4605,855:20753781,30391373:0,0,0 -g4605,855:22789984,30391373 -k4605,856:28284195,30391373:4298834 -k4605,856:32583029,30391373:4298834 -) -(4605,857:20753781,31259765:11829248,505283,102891 -h4605,856:20691522,31259765:0,0,0 -g4605,856:22842413,31259765 -g4605,856:24410689,31259765 -g4605,856:25978965,31259765 -g4605,856:27547241,31259765 -k4605,857:30662824,31259765:1920206 -k4605,857:32583029,31259765:1920205 -) -(4605,861:20753781,32838718:11829248,505283,102891 -h4605,860:20736086,32838718:0,0,0 -g4605,860:23950626,32838718 -k4605,861:28665287,32838718:3917743 -k4605,861:32583029,32838718:3917742 -) -(4605,862:20753781,33707110:11829248,426639,7863 -h4605,861:20736086,33707110:0,0,0 -k4605,862:27641287,33707110:4941742 -k4605,862:32583029,33707110:4941742 -) -(4605,863:20753781,34575502:11829248,505283,134348 -h4605,862:20753781,34575502:0,0,0 -r4605,886:20753781,34575502:0,639631,134348 -g4605,862:22064501,34575502 -g4605,862:22064501,34575502 -g4605,862:23381774,34575502 -g4605,862:25594269,34575502 -g4605,862:28868447,34575502 -k4605,863:31124197,34575502:1458832 -k4605,863:32583029,34575502:1458832 -) -(4605,864:20753781,35443894:11829248,485622,102891 -h4605,863:20736086,35443894:0,0,0 -g4605,863:25241686,35443894 -k4605,864:29510046,35443894:3072983 -k4605,864:32583029,35443894:3072983 -) -(4605,865:20753781,36312287:11829248,505283,102891 -h4605,864:20736086,36312287:0,0,0 -g4605,864:24212770,36312287 -g4605,864:27861814,36312287 -k4605,865:30620881,36312287:1962149 -k4605,865:32583029,36312287:1962148 -) -(4605,866:20753781,37180679:11829248,513147,102891 -h4605,865:20736086,37180679:0,0,0 -g4605,865:24212770,37180679 -g4605,865:26281741,37180679 -k4605,866:30020243,37180679:2562786 -k4605,866:32583029,37180679:2562786 -) -(4605,867:20753781,38049071:11829248,426639,7863 -h4605,866:20736086,38049071:0,0,0 -k4605,867:27813647,38049071:4769383 -k4605,867:32583029,38049071:4769382 -) -(4605,868:20753781,38917463:11829248,505283,134348 -h4605,867:20753781,38917463:0,0,0 -r4605,886:20753781,38917463:0,639631,134348 -g4605,867:22064501,38917463 -g4605,867:22064501,38917463 -g4605,867:25176805,38917463 -k4605,868:29840675,38917463:2742354 -k4605,868:32583029,38917463:2742354 -) -(4605,869:20753781,39785855:11829248,505283,102891 -h4605,868:20753781,39785855:0,0,0 -r4605,886:20753781,39785855:0,608174,102891 -g4605,868:22064501,39785855 -g4605,868:22064501,39785855 -g4605,868:26429854,39785855 -k4605,869:30467200,39785855:2115830 -k4605,869:32583029,39785855:2115829 -) -(4605,870:20753781,40654247:11829248,505283,102891 -h4605,869:20753781,40654247:0,0,0 -r4605,886:20753781,40654247:0,608174,102891 -g4605,869:22064501,40654247 -g4605,869:22064501,40654247 -g4605,869:24887136,40654247 -g4605,869:28474576,40654247 -k4605,870:30917431,40654247:1665598 -k4605,870:32583029,40654247:1665598 -) -(4605,871:20753781,41522639:11829248,505283,102891 -h4605,870:20753781,41522639:0,0,0 -r4605,886:20753781,41522639:0,608174,102891 -g4605,870:22064501,41522639 -g4605,870:22064501,41522639 -g4605,870:24422486,41522639 -g4605,870:27664552,41522639 -k4605,871:30512419,41522639:2070610 -k4605,871:32583029,41522639:2070610 -) -(4605,872:20753781,42391031:11829248,485622,134348 -h4605,871:20753781,42391031:0,0,0 -r4605,886:20753781,42391031:0,619970,134348 -g4605,871:22064501,42391031 -g4605,871:22064501,42391031 -g4605,871:24697737,42391031 -k4605,872:29038842,42391031:3544187 -k4605,872:32583029,42391031:3544187 -) -(4605,873:20753781,43259423:11829248,505283,134348 -h4605,872:20753781,43259423:0,0,0 -r4605,886:20753781,43259423:0,639631,134348 -g4605,872:22064501,43259423 -g4605,872:22064501,43259423 -g4605,872:23683895,43259423 -g4605,872:26070060,43259423 -k4605,873:29725004,43259423:2858026 -k4605,873:32583029,43259423:2858025 -) -(4605,874:20753781,44127816:11829248,505283,102891 -h4605,873:20732154,44127816:0,0,0 -g4605,873:22848312,44127816 -g4605,873:25064740,44127816 -g4605,873:27071452,44127816 -k4605,874:30225700,44127816:2357330 -k4605,874:32583029,44127816:2357329 -) -(4605,878:20753781,45706769:11829248,485622,102891 -h4605,877:20725601,45706769:0,0,0 -g4605,877:22390870,45706769 -k4605,878:28084638,45706769:4498391 -k4605,878:32583029,45706769:4498391 -) -] -(4605,886:32583029,45706769:0,355205,126483 -h4605,886:32583029,45706769:420741,355205,126483 -k4605,886:32583029,45706769:-420741 -) -) -] -(4605,886:32583029,45706769:0,0,0 -g4605,886:32583029,45706769 -) -) -] -(4605,886:6630773,47279633:25952256,0,0 -h4605,886:6630773,47279633:25952256,0,0 -) -] -(4605,886:4262630,4025873:0,0,0 -[4605,886:-473656,4025873:0,0,0 -(4605,886:-473656,-710413:0,0,0 -(4605,886:-473656,-710413:0,0,0 -g4605,886:-473656,-710413 -) -g4605,886:-473656,-710413 -) -] -) -] -!25021 -}443 +g4609,893:6630773,4812305 +k4609,893:28201292,4812305:20375142 +g4609,893:30884336,4812305 +) +) +] +[4609,893:6630773,45706769:25952256,40108032,0 +(4609,893:6630773,45706769:25952256,40108032,0 +(4609,893:6630773,45706769:0,0,0 +g4609,893:6630773,45706769 +) +[4609,893:6630773,45706769:25952256,40108032,0 +(4609,893:6630773,45706769:25952256,40108032,126483 +[4609,893:6630773,45706769:11829248,40108032,7863 +(4609,784:6630773,6254097:11829248,505283,126483 +h4609,783:6630773,6254097:0,0,0 +r4609,893:6630773,6254097:0,631766,126483 +g4609,783:7941493,6254097 +g4609,783:7941493,6254097 +g4609,783:11708502,6254097 +k4609,784:15681950,6254097:2778071 +k4609,784:18460021,6254097:2778071 +) +(4609,785:6630773,7131902:11829248,485622,134348 +h4609,784:6630773,7131902:0,0,0 +r4609,893:6630773,7131902:0,619970,134348 +g4609,784:7941493,7131902 +g4609,784:7941493,7131902 +g4609,784:11066249,7131902 +k4609,785:15350993,7131902:3109028 +k4609,785:18460021,7131902:3109028 +) +(4609,786:6630773,8009707:11829248,485622,134348 +h4609,785:6630773,8009707:0,0,0 +r4609,893:6630773,8009707:0,619970,134348 +g4609,785:7941493,8009707 +g4609,785:7941493,8009707 +g4609,785:10572108,8009707 +k4609,786:15113753,8009707:3346268 +k4609,786:18460021,8009707:3346268 +) +(4609,787:6630773,8887511:11829248,513147,134348 +h4609,786:6630773,8887511:0,0,0 +g4609,786:10669101,8887511 +g4609,786:14067798,8887511 +g4609,786:15636074,8887511 +k4609,787:17645736,8887511:814285 +k4609,787:18460021,8887511:814285 +) +(4609,788:6630773,9765316:11829248,485622,126483 +h4609,787:6630773,9765316:0,0,0 +g4609,787:9943617,9765316 +k4609,788:14600278,9765316:3859743 +k4609,788:18460021,9765316:3859743 +) +(4609,789:6630773,10643121:11829248,485622,102891 +h4609,788:6630773,10643121:0,0,0 +g4609,788:8268517,10643121 +k4609,789:14325027,10643121:4134994 +k4609,789:18460021,10643121:4134994 +) +(4609,790:6630773,11520926:11829248,513147,102891 +h4609,789:6568514,11520926:0,0,0 +g4609,789:7929696,11520926 +g4609,789:9497972,11520926 +k4609,790:14576685,11520926:3883336 +k4609,790:18460021,11520926:3883336 +) +(4609,791:6630773,12398730:11829248,505283,102891 +h4609,790:6630773,12398730:0,0,0 +g4609,790:7743573,12398730 +k4609,791:13689655,12398730:4770366 +k4609,791:18460021,12398730:4770366 +) +(4609,792:6630773,13276535:11829248,505283,102891 +h4609,791:6568514,13276535:0,0,0 +g4609,791:10259501,13276535 +k4609,792:14957450,13276535:3502572 +k4609,792:18460021,13276535:3502571 +) +(4609,793:6630773,14154340:11829248,505283,126483 +h4609,792:6630773,14154340:0,0,0 +g4609,792:8954679,14154340 +g4609,792:10650095,14154340 +g4609,792:14539656,14154340 +k4609,793:17097527,14154340:1362494 +k4609,793:18460021,14154340:1362494 +) +(4609,794:6630773,15032145:11829248,505283,134348 +h4609,793:6630773,15032145:0,0,0 +g4609,793:10231321,15032145 +g4609,793:12854071,15032145 +k4609,794:17016263,15032145:1443759 +k4609,794:18460021,15032145:1443758 +) +(4609,795:6630773,15909949:11829248,505283,126483 +h4609,794:6630773,15909949:0,0,0 +g4609,794:9024147,15909949 +k4609,795:14747407,15909949:3712615 +k4609,795:18460021,15909949:3712614 +) +(4609,796:6630773,16787754:11829248,485622,102891 +h4609,795:6630773,16787754:0,0,0 +r4609,893:6630773,16787754:0,588513,102891 +g4609,795:7941493,16787754 +g4609,795:7941493,16787754 +g4609,795:9294156,16787754 +k4609,796:14275548,16787754:4184474 +k4609,796:18460021,16787754:4184473 +) +(4609,797:6630773,17665559:11829248,485622,102891 +h4609,796:6630773,17665559:0,0,0 +r4609,893:6630773,17665559:0,588513,102891 +g4609,796:7941493,17665559 +g4609,796:7941493,17665559 +g4609,796:9654604,17665559 +k4609,797:14455772,17665559:4004250 +k4609,797:18460021,17665559:4004249 +) +(4609,798:6630773,18543364:11829248,485622,102891 +h4609,797:6630773,18543364:0,0,0 +g4609,797:8425803,18543364 +g4609,797:9595620,18543364 +g4609,797:11163896,18543364 +g4609,797:12732172,18543364 +k4609,798:16193785,18543364:2266236 +k4609,798:18460021,18543364:2266236 +) +(4609,799:6630773,19421168:11829248,485622,102891 +h4609,798:6630773,19421168:0,0,0 +g4609,798:9014972,19421168 +k4609,799:14335185,19421168:4124836 +k4609,799:18460021,19421168:4124836 +) +(4609,800:6630773,20298973:11829248,513147,102891 +h4609,799:6630773,20298973:0,0,0 +g4609,799:11495510,20298973 +g4609,799:12993007,20298973 +k4609,800:15915913,20298973:2544108 +k4609,800:18460021,20298973:2544108 +) +(4609,801:6630773,21176778:11829248,485622,102891 +h4609,800:6630773,21176778:0,0,0 +g4609,800:8570638,21176778 +g4609,800:10138914,21176778 +k4609,801:14897156,21176778:3562865 +k4609,801:18460021,21176778:3562865 +) +(4609,802:6630773,22054583:11829248,505283,134348 +h4609,801:6630773,22054583:0,0,0 +g4609,801:9914126,22054583 +g4609,801:13006114,22054583 +k4609,802:16330756,22054583:2129265 +k4609,802:18460021,22054583:2129265 +) +(4609,804:6630773,22932387:11829248,513147,134348 +h4609,802:6630773,22932387:0,0,0 +g4609,802:9683440,22932387 +g4609,802:13242044,22932387 +k4609,803:13242044,22932387:0 +g4609,803:14408584,22932387 +g4609,803:17510403,22932387 +k4609,803:18460021,22932387:290326 +) +(4609,804:9252213,23797467:9207808,505283,134348 +g4609,803:12344201,23797467 +k4609,804:16828830,23797467:1631191 +k4609,804:18460021,23797467:1631191 +) +(4609,805:6630773,24675272:11829248,505283,102891 +h4609,804:6568514,24675272:0,0,0 +g4609,804:8874725,24675272 +g4609,804:10443001,24675272 +g4609,804:12011277,24675272 +k4609,805:15833338,24675272:2626684 +k4609,805:18460021,24675272:2626683 +) +(4609,806:6630773,25553077:11829248,505283,126483 +h4609,805:6630773,25553077:0,0,0 +g4609,805:8158417,25553077 +g4609,805:9324957,25553077 +g4609,805:10949594,25553077 +g4609,805:12993661,25553077 +k4609,806:18092036,25553077:367986 +k4609,806:18460021,25553077:367985 +) +(4609,807:6630773,26430882:11829248,505283,134348 +h4609,806:6568514,26430882:0,0,0 +g4609,806:9474380,26430882 +k4609,807:14564889,26430882:3895132 +k4609,807:18460021,26430882:3895132 +) +(4609,808:6630773,27308686:11829248,505283,102891 +h4609,807:6630773,27308686:0,0,0 +g4609,807:9800749,27308686 +$4609,807:9800749,27308686 +$4609,807:10121220,27308686 +g4609,807:11898556,27308686 +g4609,807:13065096,27308686 +$4609,807:13065096,27308686 +$4609,807:13385567,27308686 +k4609,808:16625013,27308686:1835009 +k4609,808:18460021,27308686:1835008 +) +(4609,809:6630773,28186491:11829248,473825,7863 +h4609,808:6630773,28186491:0,0,0 +k4609,809:14299468,28186491:4160553 +k4609,809:18460021,28186491:4160553 +) +(4609,810:6630773,29064296:11829248,505283,102891 +h4609,809:6630773,29064296:0,0,0 +r4609,893:6630773,29064296:0,608174,102891 +g4609,809:7941493,29064296 +g4609,809:7941493,29064296 +g4609,809:11398517,29064296 +k4609,810:16288486,29064296:2171536 +k4609,810:18460021,29064296:2171535 +) +(4609,811:6630773,29942101:11829248,505283,102891 +h4609,810:6568514,29942101:0,0,0 +g4609,810:9644773,29942101 +g4609,810:10814590,29942101 +k4609,811:15234994,29942101:3225027 +k4609,811:18460021,29942101:3225027 +) +(4609,812:6630773,30819905:11829248,485622,126483 +h4609,811:6630773,30819905:0,0,0 +g4609,811:8884555,30819905 +g4609,811:10452831,30819905 +k4609,812:15054115,30819905:3405907 +k4609,812:18460021,30819905:3405906 +) +(4609,816:6630773,32565147:11829248,485622,102891 +h4609,815:6630773,32565147:0,0,0 +$4609,815:6630773,32565147 +$4609,815:6951244,32565147 +g4609,815:8728580,32565147 +g4609,815:11819913,32565147 +k4609,816:16489353,32565147:1970668 +k4609,816:18460021,32565147:1970668 +) +(4609,817:6630773,33442952:11829248,426639,7863 +h4609,816:6630773,33442952:0,0,0 +k4609,817:13306270,33442952:5153751 +k4609,817:18460021,33442952:5153751 +) +(4609,818:6630773,34320757:11829248,505283,134348 +h4609,817:6630773,34320757:0,0,0 +r4609,893:6630773,34320757:0,639631,134348 +g4609,817:7941493,34320757 +g4609,817:7941493,34320757 +g4609,817:10914206,34320757 +$4609,817:10914206,34320757 +$4609,817:11382133,34320757 +g4609,817:13978669,34320757 +k4609,818:16817034,34320757:1642988 +k4609,818:18460021,34320757:1642987 +) +(4609,819:6630773,35198561:11829248,505283,126483 +h4609,818:6630773,35198561:0,0,0 +r4609,893:6630773,35198561:0,631766,126483 +g4609,818:7941493,35198561 +g4609,818:7941493,35198561 +g4609,818:10811969,35198561 +g4609,818:15269072,35198561 +k4609,819:17462235,35198561:997786 +k4609,819:18460021,35198561:997786 +) +(4609,820:6630773,36076366:11829248,505283,126483 +h4609,819:6630773,36076366:0,0,0 +r4609,893:6630773,36076366:0,631766,126483 +g4609,819:7941493,36076366 +g4609,819:7941493,36076366 +g4609,819:11072803,36076366 +k4609,820:15364101,36076366:3095921 +k4609,820:18460021,36076366:3095920 +) +(4609,821:6630773,36954171:11829248,505283,126483 +h4609,820:6630773,36954171:0,0,0 +r4609,893:6630773,36954171:0,631766,126483 +g4609,820:7941493,36954171 +g4609,820:7941493,36954171 +g4609,820:10595045,36954171 +g4609,820:12331749,36954171 +k4609,821:15993574,36954171:2466448 +k4609,821:18460021,36954171:2466447 +) +(4609,822:6630773,37831976:11829248,513147,7863 +h4609,821:6630773,37831976:0,0,0 +g4609,821:8056181,37831976 +k4609,822:13914772,37831976:4545249 +k4609,822:18460021,37831976:4545249 +) +(4609,823:6630773,38709780:11829248,513147,102891 +h4609,822:6630773,38709780:0,0,0 +r4609,893:6630773,38709780:0,616038,102891 +g4609,822:7941493,38709780 +g4609,822:7941493,38709780 +g4609,822:9409499,38709780 +g4609,822:11095740,38709780 +k4609,823:15375569,38709780:3084452 +k4609,823:18460021,38709780:3084452 +) +(4609,824:6630773,39587585:11829248,513147,102891 +h4609,823:6630773,39587585:0,0,0 +r4609,893:6630773,39587585:0,616038,102891 +g4609,823:7941493,39587585 +g4609,823:7941493,39587585 +g4609,823:9704411,39587585 +g4609,823:11718332,39587585 +g4609,823:13825314,39587585 +k4609,824:16740356,39587585:1719665 +k4609,824:18460021,39587585:1719665 +) +(4609,825:6630773,40465390:11829248,513147,11795 +h4609,824:6630773,40465390:0,0,0 +r4609,893:6630773,40465390:0,524942,11795 +g4609,824:7941493,40465390 +g4609,824:7941493,40465390 +g4609,824:11313320,40465390 +g4609,824:14717915,40465390 +k4609,824:18460021,40465390:2352743 +) +(4609,825:9252213,41330470:9207808,513147,102891 +g4609,824:12171841,41330470 +k4609,825:15913620,41330470:2546402 +k4609,825:18460021,41330470:2546401 +) +(4609,826:6630773,42208275:11829248,513147,102891 +h4609,825:6630773,42208275:0,0,0 +r4609,893:6630773,42208275:0,616038,102891 +g4609,825:7941493,42208275 +g4609,825:7941493,42208275 +g4609,825:9388528,42208275 +g4609,825:11074769,42208275 +k4609,826:15365084,42208275:3094938 +k4609,826:18460021,42208275:3094937 +) +(4609,827:6630773,43086079:11829248,513147,102891 +h4609,826:6630773,43086079:0,0,0 +r4609,893:6630773,43086079:0,616038,102891 +g4609,826:7941493,43086079 +g4609,826:7941493,43086079 +g4609,826:9534673,43086079 +g4609,826:11137683,43086079 +g4609,826:14133333,43086079 +k4609,827:16894366,43086079:1565656 +k4609,827:18460021,43086079:1565655 +) +(4609,828:6630773,43963884:11829248,513147,134348 +h4609,827:6630773,43963884:0,0,0 +g4609,827:9146700,43963884 +g4609,827:12705304,43963884 +g4609,827:13871844,43963884 +g4609,827:16973663,43963884 +k4609,827:18460021,43963884:827066 +) +(4609,828:9252213,44828964:9207808,505283,134348 +g4609,827:12344201,44828964 +k4609,828:16560460,44828964:1899561 +k4609,828:18460021,44828964:1899561 +) +(4609,829:6630773,45706769:11829248,505283,7863 +h4609,828:6630773,45706769:0,0,0 +k4609,829:13451105,45706769:5008917 +k4609,829:18460021,45706769:5008916 +) +] +k4609,893:19606901,45706769:1146880 +r4609,893:19606901,45706769:0,40234515,126483 +k4609,893:20753781,45706769:1146880 +[4609,893:20753781,45706769:11829248,40108032,102891 +(4609,830:20753781,6254097:11829248,513147,102891 +h4609,829:20753781,6254097:0,0,0 +r4609,893:20753781,6254097:0,616038,102891 +g4609,829:22064501,6254097 +g4609,829:22064501,6254097 +g4609,829:25780392,6254097 +g4609,829:27373572,6254097 +g4609,829:28962164,6254097 +k4609,829:32583029,6254097:1327105 +) +(4609,830:23375221,7119177:9207808,485622,11795 +k4609,830:29338342,7119177:3244688 +k4609,830:32583029,7119177:3244687 +) +(4609,831:20753781,7989014:11829248,505283,102891 +h4609,830:20691522,7989014:0,0,0 +g4609,830:23293300,7989014 +g4609,830:24463117,7989014 +g4609,830:25632934,7989014 +g4609,830:27201210,7989014 +g4609,830:28769486,7989014 +g4609,830:30337762,7989014 +k4609,830:32583029,7989014:962728 +) +(4609,831:23375221,8854094:9207808,485622,11795 +k4609,831:28576814,8854094:4006216 +k4609,831:32583029,8854094:4006215 +) +(4609,832:20753781,9723931:11829248,505283,126483 +h4609,831:20691522,9723931:0,0,0 +g4609,831:23409955,9723931 +k4609,832:28594181,9723931:3988849 +k4609,832:32583029,9723931:3988848 +) +(4609,833:20753781,10593767:11829248,505283,126483 +h4609,832:20691522,10593767:0,0,0 +g4609,832:22936129,10593767 +g4609,832:26027462,10593767 +g4609,832:29118795,10593767 +k4609,833:31438770,10593767:1144259 +k4609,833:32583029,10593767:1144259 +) +(4609,835:20753781,11463604:11829248,505283,126483 +h4609,833:20691522,11463604:0,0,0 +g4609,833:24339255,11463604 +g4609,833:25836752,11463604 +g4609,833:27006569,11463604 +g4609,833:28574845,11463604 +k4609,833:32583029,11463604:1202588 +) +(4609,835:23375221,12328684:9207808,485622,102891 +g4609,833:24943497,12328684 +g4609,833:26511773,12328684 +g4609,833:28080049,12328684 +g4609,834:29648325,12328684 +g4609,834:31216601,12328684 +k4609,834:32583029,12328684:83889 +) +(4609,835:23375221,13193764:9207808,485622,102891 +g4609,834:24943497,13193764 +g4609,834:26511773,13193764 +g4609,834:28080049,13193764 +g4609,834:29648325,13193764 +g4609,834:31216601,13193764 +k4609,835:32487673,13193764:95356 +k4609,835:32583029,13193764:95356 +) +(4609,836:20753781,14063601:11829248,505283,102891 +h4609,835:20753781,14063601:0,0,0 +g4609,835:22378418,14063601 +g4609,835:23769092,14063601 +g4609,835:25853136,14063601 +k4609,836:30577299,14063601:2005730 +k4609,836:32583029,14063601:2005730 +) +(4609,837:20753781,14933438:11829248,505283,102891 +h4609,836:20753781,14933438:0,0,0 +r4609,893:20753781,14933438:0,608174,102891 +g4609,836:22064501,14933438 +g4609,836:22064501,14933438 +g4609,836:23757951,14933438 +g4609,836:25556258,14933438 +k4609,837:29657502,14933438:2925528 +k4609,837:32583029,14933438:2925527 +) +(4609,838:20753781,15803274:11829248,485622,102891 +h4609,837:20753781,15803274:0,0,0 +r4609,893:20753781,15803274:0,588513,102891 +g4609,837:22064501,15803274 +g4609,837:22064501,15803274 +g4609,837:23689138,15803274 +g4609,837:25938989,15803274 +k4609,838:29848867,15803274:2734162 +k4609,838:32583029,15803274:2734162 +) +(4609,839:20753781,16673111:11829248,505283,102891 +h4609,838:20753781,16673111:0,0,0 +r4609,893:20753781,16673111:0,608174,102891 +g4609,838:22064501,16673111 +g4609,838:22064501,16673111 +g4609,838:25178771,16673111 +g4609,838:26803408,16673111 +g4609,838:30914481,16673111 +k4609,839:32336613,16673111:246416 +k4609,839:32583029,16673111:246416 +) +(4609,840:20753781,17542948:11829248,485622,102891 +h4609,839:20753781,17542948:0,0,0 +g4609,839:22378418,17542948 +g4609,839:24596156,17542948 +k4609,840:29948809,17542948:2634220 +k4609,840:32583029,17542948:2634220 +) +(4609,841:20753781,18412785:11829248,505283,126483 +h4609,840:20753781,18412785:0,0,0 +r4609,893:20753781,18412785:0,631766,126483 +g4609,840:22064501,18412785 +g4609,840:22064501,18412785 +g4609,840:27167789,18412785 +k4609,841:30473098,18412785:2109932 +k4609,841:32583029,18412785:2109931 +) +(4609,842:20753781,19282621:11829248,505283,102891 +h4609,841:20691522,19282621:0,0,0 +g4609,841:23051473,19282621 +k4609,842:28414940,19282621:4168090 +k4609,842:32583029,19282621:4168089 +) +(4609,843:20753781,20152458:11829248,485622,126483 +h4609,842:20753781,20152458:0,0,0 +g4609,842:22339096,20152458 +g4609,842:26188680,20152458 +k4609,843:30336782,20152458:2246247 +k4609,843:32583029,20152458:2246247 +) +(4609,844:20753781,21022295:11829248,485622,126483 +h4609,843:20753781,21022295:0,0,0 +g4609,843:22339096,21022295 +g4609,843:26097585,21022295 +k4609,844:29728936,21022295:2854094 +k4609,844:32583029,21022295:2854093 +) +(4609,848:20753781,22626770:11829248,485622,102891 +h4609,847:20753781,22626770:0,0,0 +g4609,847:24141992,22626770 +k4609,848:28960199,22626770:3622830 +k4609,848:32583029,22626770:3622830 +) +(4609,849:20753781,23496607:11829248,485622,102891 +h4609,848:20753781,23496607:0,0,0 +g4609,848:22578302,23496607 +g4609,848:23748119,23496607 +g4609,848:24917936,23496607 +g4609,848:26087753,23496607 +g4609,848:27257570,23496607 +g4609,848:28825846,23496607 +k4609,849:31302126,23496607:1280903 +k4609,849:32583029,23496607:1280903 +) +(4609,850:20753781,24366444:11829248,485622,102891 +h4609,849:20753781,24366444:0,0,0 +g4609,849:22789984,24366444 +k4609,850:28284195,24366444:4298834 +k4609,850:32583029,24366444:4298834 +) +(4609,851:20753781,25236281:11829248,505283,102891 +h4609,850:20691522,25236281:0,0,0 +g4609,850:22842413,25236281 +g4609,850:24410689,25236281 +g4609,850:25978965,25236281 +g4609,850:27547241,25236281 +k4609,851:30662824,25236281:1920206 +k4609,851:32583029,25236281:1920205 +) +(4609,855:20753781,26840756:11829248,505283,102891 +h4609,854:20736086,26840756:0,0,0 +g4609,854:23950626,26840756 +k4609,855:28665287,26840756:3917743 +k4609,855:32583029,26840756:3917742 +) +(4609,856:20753781,27710593:11829248,426639,7863 +h4609,855:20736086,27710593:0,0,0 +k4609,856:27641287,27710593:4941742 +k4609,856:32583029,27710593:4941742 +) +(4609,857:20753781,28580430:11829248,505283,134348 +h4609,856:20753781,28580430:0,0,0 +r4609,893:20753781,28580430:0,639631,134348 +g4609,856:22064501,28580430 +g4609,856:22064501,28580430 +g4609,856:23381774,28580430 +g4609,856:25594269,28580430 +g4609,856:28868447,28580430 +k4609,857:31124197,28580430:1458832 +k4609,857:32583029,28580430:1458832 +) +(4609,858:20753781,29450267:11829248,485622,102891 +h4609,857:20736086,29450267:0,0,0 +g4609,857:25241686,29450267 +k4609,858:29510046,29450267:3072983 +k4609,858:32583029,29450267:3072983 +) +(4609,859:20753781,30320103:11829248,505283,102891 +h4609,858:20736086,30320103:0,0,0 +g4609,858:24212770,30320103 +g4609,858:27861814,30320103 +k4609,859:30620881,30320103:1962149 +k4609,859:32583029,30320103:1962148 +) +(4609,860:20753781,31189940:11829248,513147,102891 +h4609,859:20736086,31189940:0,0,0 +g4609,859:24212770,31189940 +g4609,859:26281741,31189940 +k4609,860:30020243,31189940:2562786 +k4609,860:32583029,31189940:2562786 +) +(4609,861:20753781,32059777:11829248,426639,7863 +h4609,860:20736086,32059777:0,0,0 +k4609,861:27813647,32059777:4769383 +k4609,861:32583029,32059777:4769382 +) +(4609,862:20753781,32929614:11829248,505283,134348 +h4609,861:20753781,32929614:0,0,0 +r4609,893:20753781,32929614:0,639631,134348 +g4609,861:22064501,32929614 +g4609,861:22064501,32929614 +g4609,861:25176805,32929614 +k4609,862:29840675,32929614:2742354 +k4609,862:32583029,32929614:2742354 +) +(4609,863:20753781,33799450:11829248,505283,102891 +h4609,862:20753781,33799450:0,0,0 +r4609,893:20753781,33799450:0,608174,102891 +g4609,862:22064501,33799450 +g4609,862:22064501,33799450 +g4609,862:26429854,33799450 +k4609,863:30467200,33799450:2115830 +k4609,863:32583029,33799450:2115829 +) +(4609,864:20753781,34669287:11829248,505283,102891 +h4609,863:20753781,34669287:0,0,0 +r4609,893:20753781,34669287:0,608174,102891 +g4609,863:22064501,34669287 +g4609,863:22064501,34669287 +g4609,863:24887136,34669287 +g4609,863:28474576,34669287 +k4609,864:30917431,34669287:1665598 +k4609,864:32583029,34669287:1665598 +) +(4609,865:20753781,35539124:11829248,505283,102891 +h4609,864:20753781,35539124:0,0,0 +r4609,893:20753781,35539124:0,608174,102891 +g4609,864:22064501,35539124 +g4609,864:22064501,35539124 +g4609,864:24422486,35539124 +g4609,864:27664552,35539124 +k4609,865:30512419,35539124:2070610 +k4609,865:32583029,35539124:2070610 +) +(4609,866:20753781,36408961:11829248,485622,134348 +h4609,865:20753781,36408961:0,0,0 +r4609,893:20753781,36408961:0,619970,134348 +g4609,865:22064501,36408961 +g4609,865:22064501,36408961 +g4609,865:24697737,36408961 +k4609,866:29038842,36408961:3544187 +k4609,866:32583029,36408961:3544187 +) +(4609,867:20753781,37278797:11829248,505283,134348 +h4609,866:20753781,37278797:0,0,0 +r4609,893:20753781,37278797:0,639631,134348 +g4609,866:22064501,37278797 +g4609,866:22064501,37278797 +g4609,866:23683895,37278797 +g4609,866:26070060,37278797 +k4609,867:29725004,37278797:2858026 +k4609,867:32583029,37278797:2858025 +) +(4609,868:20753781,38148634:11829248,505283,102891 +h4609,867:20732154,38148634:0,0,0 +g4609,867:22848312,38148634 +g4609,867:25064740,38148634 +g4609,867:27071452,38148634 +k4609,868:30225700,38148634:2357330 +k4609,868:32583029,38148634:2357329 +) +(4609,872:20753781,39753110:11829248,485622,102891 +h4609,871:20725601,39753110:0,0,0 +g4609,871:22390870,39753110 +k4609,872:28084638,39753110:4498391 +k4609,872:32583029,39753110:4498391 +) +(4609,873:20753781,40622946:11829248,505283,102891 +h4609,872:20725601,40622946:0,0,0 +g4609,872:23908028,40622946 +g4609,872:25074568,40622946 +k4609,873:30798811,40622946:1784219 +k4609,873:32583029,40622946:1784218 +) +(4609,874:20753781,41492783:11829248,505283,134348 +h4609,873:20727567,41492783:0,0,0 +g4609,873:23513502,41492783 +g4609,873:26778505,41492783 +k4609,874:31030153,41492783:1552876 +k4609,874:32583029,41492783:1552876 +) +(4609,875:20753781,42362620:11829248,513147,102891 +h4609,874:20702008,42362620:0,0,0 +g4609,874:24715432,42362620 +g4609,874:25881972,42362620 +g4609,874:27470564,42362620 +k4609,875:30964945,42362620:1618085 +k4609,875:32583029,42362620:1618084 +) +(4609,876:20753781,43232457:11829248,505283,126483 +h4609,875:20691522,43232457:0,0,0 +g4609,875:23293956,43232457 +g4609,875:24862232,43232457 +g4609,875:27953565,43232457 +k4609,876:30856155,43232457:1726874 +k4609,876:32583029,43232457:1726874 +) +(4609,880:20753781,44836932:11829248,485622,102891 +h4609,879:20733465,44836932:0,0,0 +g4609,879:23326068,44836932 +k4609,880:28552237,44836932:4030792 +k4609,880:32583029,44836932:4030792 +) +(4609,881:20753781,45706769:11829248,505283,102891 +h4609,880:20691522,45706769:0,0,0 +g4609,880:22805057,45706769 +g4609,880:24373333,45706769 +k4609,881:29075870,45706769:3507160 +k4609,881:32583029,45706769:3507159 +) +] +(4609,893:32583029,45706769:0,355205,126483 +h4609,893:32583029,45706769:420741,355205,126483 +k4609,893:32583029,45706769:-420741 +) +) +] +(4609,893:32583029,45706769:0,0,0 +g4609,893:32583029,45706769 +) +) +] +(4609,893:6630773,47279633:25952256,0,0 +h4609,893:6630773,47279633:25952256,0,0 +) +] +(4609,893:4262630,4025873:0,0,0 +[4609,893:-473656,4025873:0,0,0 +(4609,893:-473656,-710413:0,0,0 +(4609,893:-473656,-710413:0,0,0 +g4609,893:-473656,-710413 +) +g4609,893:-473656,-710413 +) +] +) +] +!24903 +}444 !12 -{444 -[1,25040:4262630,47279633:28320399,43253760,0 -(1,25040:4262630,4025873:0,0,0 -[1,25040:-473656,4025873:0,0,0 -(1,25040:-473656,-710413:0,0,0 -(1,25040:-473656,-644877:0,0,0 -k1,25040:-473656,-644877:-65536 +{445 +[1,25038:4262630,47279633:28320399,43253760,0 +(1,25038:4262630,4025873:0,0,0 +[1,25038:-473656,4025873:0,0,0 +(1,25038:-473656,-710413:0,0,0 +(1,25038:-473656,-644877:0,0,0 +k1,25038:-473656,-644877:-65536 ) -(1,25040:-473656,4736287:0,0,0 -k1,25040:-473656,4736287:5209943 +(1,25038:-473656,4736287:0,0,0 +k1,25038:-473656,4736287:5209943 ) -g1,25040:-473656,-710413 +g1,25038:-473656,-710413 ) ] ) -[1,25040:6630773,47279633:25952256,43253760,0 -[1,25040:6630773,4812305:25952256,786432,0 -(1,25040:6630773,4812305:25952256,505283,11795 -(1,25040:6630773,4812305:25952256,505283,11795 -g1,25040:3078558,4812305 -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,2439708:0,1703936,0 -k1,25040:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,25040:2537886,2439708:1179648,16384,0 +[1,25038:6630773,47279633:25952256,43253760,0 +[1,25038:6630773,4812305:25952256,786432,0 +(1,25038:6630773,4812305:25952256,505283,11795 +(1,25038:6630773,4812305:25952256,505283,11795 +g1,25038:3078558,4812305 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,2439708:0,1703936,0 +k1,25038:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,25038:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,25040:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,25038:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,2439708:0,1703936,0 -g1,25040:29030814,2439708 -g1,25040:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,25040:36151628,1915420:16384,1179648,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,2439708:0,1703936,0 +g1,25038:29030814,2439708 +g1,25038:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,25038:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,25040:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,25038:37855564,2439708:1179648,16384,0 ) ) -k1,25040:3078556,2439708:-34777008 +k1,25038:3078556,2439708:-34777008 ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,49800853:0,16384,2228224 -k1,25040:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,25040:2537886,49800853:1179648,16384,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,49800853:0,16384,2228224 +k1,25038:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,25038:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,25040:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,25038:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,49800853:0,16384,2228224 -g1,25040:29030814,49800853 -g1,25040:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,25040:36151628,51504789:16384,1179648,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,49800853:0,16384,2228224 +g1,25038:29030814,49800853 +g1,25038:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,25038:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,25040:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,25038:37855564,49800853:1179648,16384,0 ) ) -k1,25040:3078556,49800853:-34777008 +k1,25038:3078556,49800853:-34777008 ) ] -g1,25040:6630773,4812305 -g1,25040:6630773,4812305 -g1,25040:9313817,4812305 -g1,25040:11211739,4812305 -k1,25040:31387651,4812305:20175912 +g1,25038:6630773,4812305 +g1,25038:6630773,4812305 +g1,25038:9313817,4812305 +g1,25038:11211739,4812305 +k1,25038:31387651,4812305:20175912 ) ) ] -[1,25040:6630773,45706769:25952256,40108032,0 -(1,25040:6630773,45706769:25952256,40108032,0 -(1,25040:6630773,45706769:0,0,0 -g1,25040:6630773,45706769 -) -[1,25040:6630773,45706769:25952256,40108032,0 -(4605,899:6630773,11090673:25952256,5491936,134348 -[4605,899:6630773,11090673:11829248,5491936,102891 -(4605,879:6630773,6254097:11829248,505283,102891 -h4605,878:6602593,6254097:0,0,0 -g4605,878:9785020,6254097 -g4605,878:10951560,6254097 -k4605,879:16675803,6254097:1784219 -k4605,879:18460021,6254097:1784218 -) -(4605,880:6630773,7119177:11829248,505283,134348 -h4605,879:6604559,7119177:0,0,0 -g4605,879:9390494,7119177 -g4605,879:12655497,7119177 -k4605,880:16907145,7119177:1552876 -k4605,880:18460021,7119177:1552876 -) -(4605,881:6630773,7984257:11829248,513147,102891 -h4605,880:6579000,7984257:0,0,0 -g4605,880:10592424,7984257 -g4605,880:11758964,7984257 -g4605,880:13347556,7984257 -k4605,881:16841937,7984257:1618085 -k4605,881:18460021,7984257:1618084 -) -(4605,882:6630773,8849337:11829248,505283,126483 -h4605,881:6568514,8849337:0,0,0 -g4605,881:9170948,8849337 -g4605,881:10739224,8849337 -g4605,881:13830557,8849337 -k4605,882:16733147,8849337:1726874 -k4605,882:18460021,8849337:1726874 +[1,25038:6630773,45706769:25952256,40108032,0 +(1,25038:6630773,45706769:25952256,40108032,0 +(1,25038:6630773,45706769:0,0,0 +g1,25038:6630773,45706769 ) -(4605,886:6630773,10225593:11829248,485622,102891 -h4605,885:6610457,10225593:0,0,0 -g4605,885:9203060,10225593 -k4605,886:14429229,10225593:4030792 -k4605,886:18460021,10225593:4030792 +[1,25038:6630773,45706769:25952256,40108032,0 +(4609,893:6630773,7984257:25952256,2385520,134348 +[4609,893:6630773,7984257:11829248,2385520,102891 +(4609,882:6630773,6254097:11829248,485622,102891 +h4609,881:6610457,6254097:0,0,0 +g4609,881:8307183,6254097 +k4609,882:13981291,6254097:4478731 +k4609,882:18460021,6254097:4478730 +) +(4609,883:6630773,7119177:11829248,505283,102891 +h4609,882:6568514,7119177:0,0,0 +g4609,882:8973684,7119177 +k4609,883:14314541,7119177:4145480 +k4609,883:18460021,7119177:4145480 +) +(4609,884:6630773,7984257:11829248,485622,102891 +h4609,883:6610457,7984257:0,0,0 +g4609,883:8721371,7984257 +k4609,884:14188385,7984257:4271637 +k4609,884:18460021,7984257:4271636 +) +] +k4609,893:19606901,7984257:1146880 +r1,25038:19606901,7984257:0,2519868,134348 +k4609,893:20753781,7984257:1146880 +[4609,893:20753781,7984257:11829248,2385520,134348 +(4609,888:20753781,6254097:11829248,505283,102891 +h4609,887:20731499,6254097:0,0,0 +g4609,887:24225878,6254097 +g4609,887:27331629,6254097 +k4609,888:30555018,6254097:2028012 +k4609,888:32583029,6254097:2028011 +) +(4609,892:20753781,7984257:11829248,505283,134348 +h4609,891:20753781,7984257:0,0,0 +g4609,891:22373175,7984257 +g4609,891:24585670,7984257 +g4609,891:27248397,7984257 +k4609,892:30314172,7984257:2268857 +k4609,892:32583029,7984257:2268857 +) +] +(4609,893:32583029,7984257:0,355205,126483 +h4609,893:32583029,7984257:420741,355205,126483 +k4609,893:32583029,7984257:-420741 ) -(4605,887:6630773,11090673:11829248,505283,102891 -h4605,886:6568514,11090673:0,0,0 -g4605,886:8682049,11090673 -g4605,886:10250325,11090673 -k4605,887:14952862,11090673:3507160 -k4605,887:18460021,11090673:3507159 ) ] -k4605,899:19606901,11090673:1146880 -r1,25040:19606901,11090673:0,5626284,134348 -k4605,899:20753781,11090673:1146880 -[4605,899:20753781,11090673:11829248,5491936,134348 -(4605,888:20753781,6254097:11829248,485622,102891 -h4605,887:20733465,6254097:0,0,0 -g4605,887:22430191,6254097 -k4605,888:28104299,6254097:4478731 -k4605,888:32583029,6254097:4478730 -) -(4605,889:20753781,7120932:11829248,505283,102891 -h4605,888:20691522,7120932:0,0,0 -g4605,888:23096692,7120932 -k4605,889:28437549,7120932:4145480 -k4605,889:32583029,7120932:4145480 -) -(4605,890:20753781,7987768:11829248,485622,102891 -h4605,889:20733465,7987768:0,0,0 -g4605,889:22844379,7987768 -k4605,890:28311393,7987768:4271637 -k4605,890:32583029,7987768:4271636 -) -(4605,894:20753781,9539220:11829248,505283,102891 -h4605,893:20731499,9539220:0,0,0 -g4605,893:24225878,9539220 -g4605,893:27331629,9539220 -k4605,894:30555018,9539220:2028012 -k4605,894:32583029,9539220:2028011 +(1,25038:32583029,45706769:0,0,0 +g1,25038:32583029,45706769 ) -(4605,898:20753781,11090673:11829248,505283,134348 -h4605,897:20753781,11090673:0,0,0 -g4605,897:22373175,11090673 -g4605,897:24585670,11090673 -g4605,897:27248397,11090673 -k4605,898:30314172,11090673:2268857 -k4605,898:32583029,11090673:2268857 ) ] -(4605,899:32583029,11090673:0,355205,126483 -h4605,899:32583029,11090673:420741,355205,126483 -k4605,899:32583029,11090673:-420741 -) +(1,25038:6630773,47279633:25952256,0,0 +h1,25038:6630773,47279633:25952256,0,0 ) ] -(1,25040:32583029,45706769:0,0,0 -g1,25040:32583029,45706769 -) -) -] -(1,25040:6630773,47279633:25952256,0,0 -h1,25040:6630773,47279633:25952256,0,0 -) -] -(1,25040:4262630,4025873:0,0,0 -[1,25040:-473656,4025873:0,0,0 -(1,25040:-473656,-710413:0,0,0 -(1,25040:-473656,-710413:0,0,0 -g1,25040:-473656,-710413 +(1,25038:4262630,4025873:0,0,0 +[1,25038:-473656,4025873:0,0,0 +(1,25038:-473656,-710413:0,0,0 +(1,25038:-473656,-710413:0,0,0 +g1,25038:-473656,-710413 ) -g1,25040:-473656,-710413 +g1,25038:-473656,-710413 ) ] ) ] -!6200 -}444 +!4900 +}445 !11 -{445 -[1,25040:4262630,47279633:28320399,43253760,0 -(1,25040:4262630,4025873:0,0,0 -[1,25040:-473656,4025873:0,0,0 -(1,25040:-473656,-710413:0,0,0 -(1,25040:-473656,-644877:0,0,0 -k1,25040:-473656,-644877:-65536 +{446 +[1,25038:4262630,47279633:28320399,43253760,0 +(1,25038:4262630,4025873:0,0,0 +[1,25038:-473656,4025873:0,0,0 +(1,25038:-473656,-710413:0,0,0 +(1,25038:-473656,-644877:0,0,0 +k1,25038:-473656,-644877:-65536 ) -(1,25040:-473656,4736287:0,0,0 -k1,25040:-473656,4736287:5209943 +(1,25038:-473656,4736287:0,0,0 +k1,25038:-473656,4736287:5209943 ) -g1,25040:-473656,-710413 +g1,25038:-473656,-710413 ) ] ) -[1,25040:6630773,47279633:25952256,43253760,0 -[1,25040:6630773,4812305:25952256,786432,0 -(1,25040:6630773,4812305:25952256,0,0 -(1,25040:6630773,4812305:25952256,0,0 -g1,25040:3078558,4812305 -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,2439708:0,1703936,0 -k1,25040:1358238,2439708:-1720320 -(1,25040:1358238,2439708:1720320,1703936,0 -(1,25040:1358238,2439708:1179648,16384,0 -r1,25040:2537886,2439708:1179648,16384,0 +[1,25038:6630773,47279633:25952256,43253760,0 +[1,25038:6630773,4812305:25952256,786432,0 +(1,25038:6630773,4812305:25952256,0,0 +(1,25038:6630773,4812305:25952256,0,0 +g1,25038:3078558,4812305 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,2439708:0,1703936,0 +k1,25038:1358238,2439708:-1720320 +(1,25038:1358238,2439708:1720320,1703936,0 +(1,25038:1358238,2439708:1179648,16384,0 +r1,25038:2537886,2439708:1179648,16384,0 ) -g1,25040:3062174,2439708 -(1,25040:3062174,2439708:16384,1703936,0 -[1,25040:3062174,2439708:25952256,1703936,0 -(1,25040:3062174,1915420:25952256,1179648,0 -(1,25040:3062174,1915420:16384,1179648,0 -r1,25040:3078558,1915420:16384,1179648,0 +g1,25038:3062174,2439708 +(1,25038:3062174,2439708:16384,1703936,0 +[1,25038:3062174,2439708:25952256,1703936,0 +(1,25038:3062174,1915420:25952256,1179648,0 +(1,25038:3062174,1915420:16384,1179648,0 +r1,25038:3078558,1915420:16384,1179648,0 ) -k1,25040:29014430,1915420:25935872 -g1,25040:29014430,1915420 +k1,25038:29014430,1915420:25935872 +g1,25038:29014430,1915420 ) ] ) ) ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,2439708:0,1703936,0 -g1,25040:29030814,2439708 -g1,25040:36135244,2439708 -(1,25040:36135244,2439708:1720320,1703936,0 -(1,25040:36135244,2439708:16384,1703936,0 -[1,25040:36135244,2439708:25952256,1703936,0 -(1,25040:36135244,1915420:25952256,1179648,0 -(1,25040:36135244,1915420:16384,1179648,0 -r1,25040:36151628,1915420:16384,1179648,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,2439708:0,1703936,0 +g1,25038:29030814,2439708 +g1,25038:36135244,2439708 +(1,25038:36135244,2439708:1720320,1703936,0 +(1,25038:36135244,2439708:16384,1703936,0 +[1,25038:36135244,2439708:25952256,1703936,0 +(1,25038:36135244,1915420:25952256,1179648,0 +(1,25038:36135244,1915420:16384,1179648,0 +r1,25038:36151628,1915420:16384,1179648,0 ) -k1,25040:62087500,1915420:25935872 -g1,25040:62087500,1915420 +k1,25038:62087500,1915420:25935872 +g1,25038:62087500,1915420 ) ] ) -g1,25040:36675916,2439708 -(1,25040:36675916,2439708:1179648,16384,0 -r1,25040:37855564,2439708:1179648,16384,0 +g1,25038:36675916,2439708 +(1,25038:36675916,2439708:1179648,16384,0 +r1,25038:37855564,2439708:1179648,16384,0 ) ) -k1,25040:3078556,2439708:-34777008 +k1,25038:3078556,2439708:-34777008 ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,49800853:0,16384,2228224 -k1,25040:1358238,49800853:-1720320 -(1,25040:1358238,49800853:1720320,16384,2228224 -(1,25040:1358238,49800853:1179648,16384,0 -r1,25040:2537886,49800853:1179648,16384,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,49800853:0,16384,2228224 +k1,25038:1358238,49800853:-1720320 +(1,25038:1358238,49800853:1720320,16384,2228224 +(1,25038:1358238,49800853:1179648,16384,0 +r1,25038:2537886,49800853:1179648,16384,0 ) -g1,25040:3062174,49800853 -(1,25040:3062174,52029077:16384,1703936,0 -[1,25040:3062174,52029077:25952256,1703936,0 -(1,25040:3062174,51504789:25952256,1179648,0 -(1,25040:3062174,51504789:16384,1179648,0 -r1,25040:3078558,51504789:16384,1179648,0 +g1,25038:3062174,49800853 +(1,25038:3062174,52029077:16384,1703936,0 +[1,25038:3062174,52029077:25952256,1703936,0 +(1,25038:3062174,51504789:25952256,1179648,0 +(1,25038:3062174,51504789:16384,1179648,0 +r1,25038:3078558,51504789:16384,1179648,0 ) -k1,25040:29014430,51504789:25935872 -g1,25040:29014430,51504789 +k1,25038:29014430,51504789:25935872 +g1,25038:29014430,51504789 ) ] ) ) ) ] -[1,25040:3078558,4812305:0,0,0 -(1,25040:3078558,49800853:0,16384,2228224 -g1,25040:29030814,49800853 -g1,25040:36135244,49800853 -(1,25040:36135244,49800853:1720320,16384,2228224 -(1,25040:36135244,52029077:16384,1703936,0 -[1,25040:36135244,52029077:25952256,1703936,0 -(1,25040:36135244,51504789:25952256,1179648,0 -(1,25040:36135244,51504789:16384,1179648,0 -r1,25040:36151628,51504789:16384,1179648,0 +[1,25038:3078558,4812305:0,0,0 +(1,25038:3078558,49800853:0,16384,2228224 +g1,25038:29030814,49800853 +g1,25038:36135244,49800853 +(1,25038:36135244,49800853:1720320,16384,2228224 +(1,25038:36135244,52029077:16384,1703936,0 +[1,25038:36135244,52029077:25952256,1703936,0 +(1,25038:36135244,51504789:25952256,1179648,0 +(1,25038:36135244,51504789:16384,1179648,0 +r1,25038:36151628,51504789:16384,1179648,0 ) -k1,25040:62087500,51504789:25935872 -g1,25040:62087500,51504789 +k1,25038:62087500,51504789:25935872 +g1,25038:62087500,51504789 ) ] ) -g1,25040:36675916,49800853 -(1,25040:36675916,49800853:1179648,16384,0 -r1,25040:37855564,49800853:1179648,16384,0 +g1,25038:36675916,49800853 +(1,25038:36675916,49800853:1179648,16384,0 +r1,25038:37855564,49800853:1179648,16384,0 ) ) -k1,25040:3078556,49800853:-34777008 +k1,25038:3078556,49800853:-34777008 ) ] -g1,25040:6630773,4812305 +g1,25038:6630773,4812305 ) ) ] -[1,25040:6630773,45706769:0,40108032,0 -(1,25040:6630773,45706769:0,40108032,0 -(1,25040:6630773,45706769:0,0,0 -g1,25040:6630773,45706769 +[1,25038:6630773,45706769:0,40108032,0 +(1,25038:6630773,45706769:0,40108032,0 +(1,25038:6630773,45706769:0,0,0 +g1,25038:6630773,45706769 ) -[1,25040:6630773,45706769:0,40108032,0 -h1,25040:6630773,6254097:0,0,0 +[1,25038:6630773,45706769:0,40108032,0 +h1,25038:6630773,6254097:0,0,0 ] -(1,25040:6630773,45706769:0,0,0 -g1,25040:6630773,45706769 +(1,25038:6630773,45706769:0,0,0 +g1,25038:6630773,45706769 ) ) ] -(1,25040:6630773,47279633:25952256,0,0 -h1,25040:6630773,47279633:25952256,0,0 +(1,25038:6630773,47279633:25952256,0,0 +h1,25038:6630773,47279633:25952256,0,0 ) ] -(1,25040:4262630,4025873:0,0,0 -[1,25040:-473656,4025873:0,0,0 -(1,25040:-473656,-710413:0,0,0 -(1,25040:-473656,-710413:0,0,0 -g1,25040:-473656,-710413 +(1,25038:4262630,4025873:0,0,0 +[1,25038:-473656,4025873:0,0,0 +(1,25038:-473656,-710413:0,0,0 +(1,25038:-473656,-710413:0,0,0 +g1,25038:-473656,-710413 ) -g1,25040:-473656,-710413 +g1,25038:-473656,-710413 ) ] ) ] !3399 -}445 -Input:4606:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\rindex.ind +}446 +Input:4610:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\rindex.ind !93 -{446 -[4606,82:4262630,47279633:28320399,43253760,11795 -(4606,82:4262630,4025873:0,0,0 -[4606,82:-473656,4025873:0,0,0 -(4606,82:-473656,-710413:0,0,0 -(4606,82:-473656,-644877:0,0,0 -k4606,82:-473656,-644877:-65536 +{447 +[4610,82:4262630,47279633:28320399,43253760,11795 +(4610,82:4262630,4025873:0,0,0 +[4610,82:-473656,4025873:0,0,0 +(4610,82:-473656,-710413:0,0,0 +(4610,82:-473656,-644877:0,0,0 +k4610,82:-473656,-644877:-65536 ) -(4606,82:-473656,4736287:0,0,0 -k4606,82:-473656,4736287:5209943 +(4610,82:-473656,4736287:0,0,0 +k4610,82:-473656,4736287:5209943 ) -g4606,82:-473656,-710413 +g4610,82:-473656,-710413 ) ] ) -[4606,82:6630773,47279633:25952256,43253760,11795 -[4606,82:6630773,4812305:25952256,786432,0 -(4606,82:6630773,4812305:25952256,0,0 -(4606,82:6630773,4812305:25952256,0,0 -g4606,82:3078558,4812305 -[4606,82:3078558,4812305:0,0,0 -(4606,82:3078558,2439708:0,1703936,0 -k4606,82:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,82:2537886,2439708:1179648,16384,0 +[4610,82:6630773,47279633:25952256,43253760,11795 +[4610,82:6630773,4812305:25952256,786432,0 +(4610,82:6630773,4812305:25952256,0,0 +(4610,82:6630773,4812305:25952256,0,0 +g4610,82:3078558,4812305 +[4610,82:3078558,4812305:0,0,0 +(4610,82:3078558,2439708:0,1703936,0 +k4610,82:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,82:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,82:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,82:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,82:3078558,4812305:0,0,0 -(4606,82:3078558,2439708:0,1703936,0 -g4606,82:29030814,2439708 -g4606,82:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,82:36151628,1915420:16384,1179648,0 +[4610,82:3078558,4812305:0,0,0 +(4610,82:3078558,2439708:0,1703936,0 +g4610,82:29030814,2439708 +g4610,82:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,82:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,82:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,82:37855564,2439708:1179648,16384,0 ) ) -k4606,82:3078556,2439708:-34777008 +k4610,82:3078556,2439708:-34777008 ) ] -[4606,82:3078558,4812305:0,0,0 -(4606,82:3078558,49800853:0,16384,2228224 -k4606,82:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,82:2537886,49800853:1179648,16384,0 +[4610,82:3078558,4812305:0,0,0 +(4610,82:3078558,49800853:0,16384,2228224 +k4610,82:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,82:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,82:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,82:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,82:3078558,4812305:0,0,0 -(4606,82:3078558,49800853:0,16384,2228224 -g4606,82:29030814,49800853 -g4606,82:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,82:36151628,51504789:16384,1179648,0 +[4610,82:3078558,4812305:0,0,0 +(4610,82:3078558,49800853:0,16384,2228224 +g4610,82:29030814,49800853 +g4610,82:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,82:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,82:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,82:37855564,49800853:1179648,16384,0 ) ) -k4606,82:3078556,49800853:-34777008 +k4610,82:3078556,49800853:-34777008 ) ] -g4606,82:6630773,4812305 +g4610,82:6630773,4812305 ) ) ] -[4606,82:6630773,45706769:25952256,40108032,0 -(4606,82:6630773,45706769:25952256,40108032,0 -(4606,82:6630773,45706769:0,0,0 -g4606,82:6630773,45706769 +[4610,82:6630773,45706769:25952256,40108032,0 +(4610,82:6630773,45706769:25952256,40108032,0 +(4610,82:6630773,45706769:0,0,0 +g4610,82:6630773,45706769 ) -[4606,82:6630773,45706769:25952256,40108032,0 -[4606,1:6630773,12185121:25952256,6586384,0 -(4606,1:6630773,7073297:25952256,32768,229376 -(4606,1:6630773,7073297:0,32768,229376 -(4606,1:6630773,7073297:5505024,32768,229376 -r4606,82:12135797,7073297:5505024,262144,229376 +[4610,82:6630773,45706769:25952256,40108032,0 +[4610,1:6630773,12185121:25952256,6586384,0 +(4610,1:6630773,7073297:25952256,32768,229376 +(4610,1:6630773,7073297:0,32768,229376 +(4610,1:6630773,7073297:5505024,32768,229376 +r4610,82:12135797,7073297:5505024,262144,229376 ) -k4606,1:6630773,7073297:-5505024 +k4610,1:6630773,7073297:-5505024 ) ) -(4606,1:6630773,8842777:25952256,923664,227671 -h4606,1:6585946,8842777:0,0,0 -g4606,1:13338251,8842777 -g4606,1:16943255,8842777 -g4606,1:18507468,8842777 -g4606,1:19671780,8842777 -k4606,1:28148732,8842777:4434298 -k4606,1:32583029,8842777:4434297 +(4610,1:6630773,8842777:25952256,923664,227671 +h4610,1:6585946,8842777:0,0,0 +g4610,1:13338251,8842777 +g4610,1:16943255,8842777 +g4610,1:18507468,8842777 +g4610,1:19671780,8842777 +k4610,1:28148732,8842777:4434298 +k4610,1:32583029,8842777:4434297 ) -(4606,1:6630773,9498145:25952256,32768,0 -(4606,1:6630773,9498145:5505024,32768,0 -r4606,82:12135797,9498145:5505024,32768,0 -) -k4606,1:22359413,9498145:10223616 -k4606,1:32583029,9498145:10223616 -) -] -(4606,82:6630773,45706769:25952256,32525496,126483 -[4606,82:6630773,45706769:11829248,32525496,102891 -(4606,4:6630773,13836633:11829248,485622,102891 -h4606,3:6547509,13836633:0,0,0 -g4606,3:7335350,13836633 -g4606,3:8505167,13836633 -k4606,4:13871223,13836633:4588799 -k4606,4:18460021,13836633:4588798 -) -(4606,5:6630773,14723751:11829248,485622,102891 -h4606,4:6526865,14723751:0,0,0 -g4606,4:7314706,14723751 -g4606,4:8484523,14723751 -g4606,4:9654340,14723751 -g4606,4:10824157,14723751 -g4606,4:12392433,14723751 -g4606,4:13960709,14723751 -k4606,5:16808054,14723751:1651968 -k4606,5:18460021,14723751:1651967 -) -(4606,6:6630773,15610869:11829248,485622,102891 -h4606,5:6423646,15610869:0,0,0 -g4606,5:7211487,15610869 -g4606,5:8381304,15610869 -g4606,5:9551121,15610869 -k4606,6:14603260,15610869:3856762 -k4606,6:18460021,15610869:3856761 -) -(4606,7:6630773,16497987:11829248,485622,102891 -h4606,6:6423646,16497987:0,0,0 -g4606,6:7626430,16497987 -g4606,6:8796247,16497987 -k4606,7:14225823,16497987:4234199 -k4606,7:18460021,16497987:4234198 -) -(4606,8:6630773,17385105:11829248,538806,102891 -h4606,7:6423646,17385105:0,0,0 -g4606,7:8456315,17385105 -g4606,7:9626132,17385105 -k4606,8:14431705,17385105:4028316 -k4606,8:18460021,17385105:4028316 -) -(4606,9:6630773,18272223:11829248,538806,132808 -h4606,8:6630773,18272223:0,0,0 -g4606,8:14887578,18272223 -k4606,9:17072259,18272223:1387763 -k4606,9:18460021,18272223:1387762 -) -(4606,10:6630773,19159341:11829248,538806,102891 -h4606,9:6630773,19159341:0,0,0 -g4606,9:14887578,19159341 -k4606,10:17072259,19159341:1387763 -k4606,10:18460021,19159341:1387762 -) -(4606,11:6630773,20046459:11829248,538806,102891 -h4606,10:6630773,20046459:0,0,0 -g4606,10:14887578,20046459 -k4606,11:17072259,20046459:1387763 -k4606,11:18460021,20046459:1387762 -) -(4606,12:6630773,20933577:11829248,538806,141066 -h4606,11:6630773,20933577:0,0,0 -g4606,11:16547347,20933577 -k4606,12:17902143,20933577:557878 -k4606,12:18460021,20933577:557878 -) -(4606,13:6630773,21820696:11829248,538806,102891 -h4606,12:6630773,21820696:0,0,0 -g4606,12:15302520,21820696 -k4606,13:17279730,21820696:1180292 -k4606,13:18460021,21820696:1180291 -) -(4606,14:6630773,22707814:11829248,538806,141066 -h4606,13:6630773,22707814:0,0,0 -g4606,13:15302520,22707814 -k4606,14:17279730,22707814:1180292 -k4606,14:18460021,22707814:1180291 -) -(4606,15:6630773,23594932:11829248,530548,102891 -h4606,14:6589485,23594932:0,0,0 -g4606,14:7377326,23594932 -g4606,14:8547143,23594932 -k4606,15:14101271,23594932:4358751 -k4606,15:18460021,23594932:4358750 -) -(4606,16:6630773,24482050:11829248,485622,102891 -h4606,15:6630773,24482050:0,0,0 -g4606,15:7418614,24482050 -k4606,16:13337777,24482050:5122245 -k4606,16:18460021,24482050:5122244 -) -(4606,17:6630773,25369168:11829248,485622,102891 -h4606,16:6547509,25369168:0,0,0 -g4606,16:7335350,25369168 -k4606,17:13296145,25369168:5163877 -k4606,17:18460021,25369168:5163876 -) -(4606,18:6630773,26256286:11829248,485622,102891 -h4606,17:6547509,26256286:0,0,0 -g4606,17:7750293,26256286 -g4606,17:8920110,26256286 -g4606,17:10089927,26256286 -g4606,17:11259744,26256286 -g4606,17:12828020,26256286 -g4606,17:14396296,26256286 -g4606,17:15964572,26256286 -k4606,18:17809985,26256286:650036 -k4606,18:18460021,26256286:650036 -) -(4606,19:6630773,27143404:11829248,485622,102891 -h4606,18:6547509,27143404:0,0,0 -g4606,18:8165235,27143404 -k4606,19:13910317,27143404:4549705 -k4606,19:18460021,27143404:4549704 -) -(4606,20:6630773,28030522:11829248,485622,102891 -h4606,19:6547509,28030522:0,0,0 -g4606,19:7750293,28030522 -k4606,20:13503616,28030522:4956405 -k4606,20:18460021,28030522:4956405 -) -(4606,21:6630773,28917640:11829248,485622,102891 -h4606,20:6630773,28917640:0,0,0 -g4606,20:7418614,28917640 -g4606,20:8588431,28917640 -k4606,21:13912855,28917640:4547167 -k4606,21:18460021,28917640:4547166 -) -(4606,22:6630773,29804758:11829248,485622,102891 -h4606,21:6630773,29804758:0,0,0 -g4606,21:7833557,29804758 -g4606,21:9003374,29804758 -k4606,22:14319556,29804758:4140466 -k4606,22:18460021,29804758:4140465 -) -(4606,23:6630773,30691876:11829248,485622,102891 -h4606,22:6589485,30691876:0,0,0 -g4606,22:7377326,30691876 -k4606,23:13317133,30691876:5142889 -k4606,23:18460021,30691876:5142888 -) -(4606,24:6630773,31578994:11829248,485622,102891 -h4606,23:6589485,31578994:0,0,0 -g4606,23:7792269,31578994 -k4606,24:13524604,31578994:4935417 -k4606,24:18460021,31578994:4935417 -) -(4606,25:6630773,32466112:11829248,530548,108035 -h4606,24:6630773,32466112:0,0,0 -g4606,24:7460657,32466112 -g4606,24:8290541,32466112 -g4606,24:9078382,32466112 -g4606,24:10646658,32466112 -k4606,25:15141198,32466112:3318824 -k4606,25:18460021,32466112:3318823 -) -(4606,27:6630773,33353230:11829248,530548,102891 -h4606,25:6630773,33353230:0,0,0 -k4606,25:7448954,33353230:403239 -k4606,25:8231177,33353230:193611 -k4606,25:9395375,33353230:193610 -k4606,25:10559573,33353230:193610 -k4606,25:11723771,33353230:193610 -k4606,25:12887969,33353230:193610 -k4606,25:14052168,33353230:193611 -k4606,25:15614825,33353230:193610 -k4606,25:17177482,33353230:193610 -k4606,25:18460021,33353230:0 -) -(4606,27:9252213,34218310:9207808,485622,102891 -g4606,25:10800828,34218310 -g4606,26:13892161,34218310 -g4606,26:15460437,34218310 -g4606,26:17028713,34218310 -k4606,26:18460021,34218310:148769 -) -(4606,27:9252213,35083390:9207808,485622,102891 -g4606,26:10800828,35083390 -k4606,27:15228113,35083390:3231908 -k4606,27:18460021,35083390:3231908 -) -(4606,29:6630773,35970508:11829248,530548,102891 -h4606,27:6630773,35970508:0,0,0 -g4606,27:7875600,35970508 -g4606,27:9078384,35970508 -g4606,27:10248201,35970508 -g4606,27:11418018,35970508 -g4606,27:12587835,35970508 -g4606,27:13757652,35970508 -g4606,27:14927469,35970508 -g4606,27:16097286,35970508 -k4606,27:18460021,35970508:1080196 -) -(4606,29:9252213,36835588:9207808,485622,102891 -g4606,27:10800828,36835588 -g4606,27:12369104,36835588 -g4606,27:13937380,36835588 -g4606,28:15505656,36835588 -k4606,29:17580527,36835588:879494 -k4606,29:18460021,36835588:879494 -) -(4606,30:6630773,37722706:11829248,538806,102891 -h4606,29:6630773,37722706:0,0,0 -g4606,29:7418614,37722706 -g4606,29:8588431,37722706 -g4606,29:9758248,37722706 -g4606,29:10928065,37722706 -g4606,29:12496341,37722706 -g4606,29:14064617,37722706 -k4606,30:16860008,37722706:1600014 -k4606,30:18460021,37722706:1600013 -) -(4606,31:6630773,38609825:11829248,509904,102891 -h4606,30:6610129,38609825:0,0,0 -g4606,30:8227855,38609825 -k4606,31:13742397,38609825:4717624 -k4606,31:18460021,38609825:4717624 -) -(4606,32:6630773,39496943:11829248,509904,102891 -h4606,31:6610129,39496943:0,0,0 -g4606,31:8227855,39496943 -k4606,32:13941627,39496943:4518395 -k4606,32:18460021,39496943:4518394 -) -(4606,33:6630773,40384061:11829248,509904,102891 -h4606,32:6610129,40384061:0,0,0 -g4606,32:8642798,40384061 -k4606,33:14910626,40384061:3549395 -k4606,33:18460021,40384061:3549395 -) -(4606,34:6630773,41271179:11829248,530548,102891 -h4606,33:6610129,41271179:0,0,0 -g4606,33:8227855,41271179 -k4606,34:13732567,41271179:4727455 -k4606,34:18460021,41271179:4727454 -) -(4606,35:6630773,42158297:11829248,509904,102891 -h4606,34:6610129,42158297:0,0,0 -g4606,34:8642798,42158297 -k4606,35:14149098,42158297:4310923 -k4606,35:18460021,42158297:4310923 -) -(4606,36:6630773,43045415:11829248,509904,102891 -h4606,35:6610129,43045415:0,0,0 -g4606,35:8227855,43045415 -g4606,35:11319188,43045415 -k4606,36:15487293,43045415:2972728 -k4606,36:18460021,43045415:2972728 -) -(4606,37:6630773,43932533:11829248,509904,102891 -h4606,36:6610129,43932533:0,0,0 -g4606,36:8642798,43932533 -k4606,37:14149098,43932533:4310923 -k4606,37:18460021,43932533:4310923 -) -(4606,38:6630773,44819651:11829248,509904,102891 -h4606,37:6610129,44819651:0,0,0 -g4606,37:7812913,44819651 -k4606,38:13525096,44819651:4934926 -k4606,38:18460021,44819651:4934925 -) -(4606,39:6630773,45706769:11829248,530548,102891 -h4606,38:6610129,45706769:0,0,0 -g4606,38:8642798,45706769 -g4606,38:9812615,45706769 -k4606,39:14524947,45706769:3935075 -k4606,39:18460021,45706769:3935074 -) -] -k4606,82:19606901,45706769:1146880 -r4606,82:19606901,45706769:0,32651979,126483 -k4606,82:20753781,45706769:1146880 -[4606,82:20753781,45706769:11829248,32525496,102891 -(4606,40:20753781,13836633:11829248,509904,102891 -h4606,39:20753781,13836633:0,0,0 -g4606,39:21541622,13836633 -g4606,39:22711439,13836633 -k4606,40:28045693,13836633:4537336 -k4606,40:32583029,13836633:4537336 -) -(4606,41:20753781,14703132:11829248,509904,102891 -h4606,40:20753781,14703132:0,0,0 -g4606,40:21956565,14703132 -k4606,41:27668256,14703132:4914773 -k4606,41:32583029,14703132:4914773 -) -(4606,42:20753781,15569631:11829248,497518,102891 -h4606,41:20753781,15569631:0,0,0 -g4606,41:21541622,15569631 -k4606,42:27450954,15569631:5132075 -k4606,42:32583029,15569631:5132075 -) -(4606,43:20753781,16436130:11829248,530548,102891 -h4606,42:20712493,16436130:0,0,0 -g4606,42:22330219,16436130 -k4606,43:28054313,16436130:4528717 -k4606,43:32583029,16436130:4528716 -) -(4606,44:20753781,17302629:11829248,530548,102891 -h4606,43:20753781,17302629:0,0,0 -g4606,43:21541622,17302629 -g4606,43:22711439,17302629 -k4606,44:28045693,17302629:4537336 -k4606,44:32583029,17302629:4537336 -) -(4606,45:20753781,18169128:11829248,530548,102891 -h4606,44:20753781,18169128:0,0,0 -g4606,44:21956565,18169128 -g4606,44:23524841,18169128 -g4606,44:25093117,18169128 -g4606,44:28184450,18169128 -g4606,44:29752726,18169128 -g4606,44:31321002,18169128 -k4606,45:32539874,18169128:43156 -k4606,45:32583029,18169128:43155 -) -(4606,46:20753781,19035627:11829248,530548,102891 -h4606,45:20753781,19035627:0,0,0 -g4606,45:21956565,19035627 -k4606,46:27668256,19035627:4914773 -k4606,46:32583029,19035627:4914773 -) -(4606,50:20753781,20581136:11829248,530548,102891 -h4606,49:20753781,20581136:0,0,0 -g4606,49:23201392,20581136 -g4606,49:24371209,20581136 -k4606,50:28865748,20581136:3717282 -k4606,50:32583029,20581136:3717281 -) -(4606,51:20753781,21447635:11829248,538806,102891 -h4606,50:20753781,21447635:0,0,0 -g4606,50:23201392,21447635 -k4606,51:28489899,21447635:4093130 -k4606,51:32583029,21447635:4093130 -) -(4606,52:20753781,22314134:11829248,530548,102891 -h4606,51:20753781,22314134:0,0,0 -g4606,51:23201392,22314134 -g4606,51:24769668,22314134 -g4606,51:26337944,22314134 -g4606,51:27906220,22314134 -g4606,51:29474496,22314134 -g4606,51:31042772,22314134 -k4606,51:32583029,22314134:257718 -) -(4606,52:23375221,23179214:9207808,485622,11795 -k4606,52:28576814,23179214:4006216 -k4606,52:32583029,23179214:4006215 -) -(4606,53:20753781,24045713:11829248,538806,102891 -h4606,52:20753781,24045713:0,0,0 -g4606,52:26520932,24045713 -k4606,53:30149669,24045713:2433360 -k4606,53:32583029,24045713:2433360 -) -(4606,54:20753781,24912212:11829248,538806,102891 -h4606,53:20753781,24912212:0,0,0 -g4606,53:26105989,24912212 -g4606,53:27674265,24912212 -g4606,53:29242541,24912212 -k4606,54:31510474,24912212:1072556 -k4606,54:32583029,24912212:1072555 -) -(4606,55:20753781,25778711:11829248,530548,141066 -h4606,54:20753781,25778711:0,0,0 -g4606,54:25691047,25778711 -g4606,54:27259323,25778711 -g4606,54:28827599,25778711 -k4606,55:31303003,25778711:1280027 -k4606,55:32583029,25778711:1280026 -) -(4606,56:20753781,26645210:11829248,530548,102891 -h4606,55:20733137,26645210:0,0,0 -g4606,55:23180748,26645210 -g4606,55:24749024,26645210 -g4606,55:26317300,26645210 -k4606,56:30038023,26645210:2545007 -k4606,56:32583029,26645210:2545006 -) -(4606,57:20753781,27511709:11829248,530548,102891 -h4606,56:20753781,27511709:0,0,0 -g4606,56:23201392,27511709 -g4606,56:24371209,27511709 -k4606,57:28865748,27511709:3717282 -k4606,57:32583029,27511709:3717281 -) -(4606,58:20753781,28378208:11829248,530548,102891 -h4606,57:20753781,28378208:0,0,0 -g4606,57:25276104,28378208 -k4606,58:30278953,28378208:2304077 -k4606,58:32583029,28378208:2304076 -) -(4606,59:20753781,29244707:11829248,530548,102891 -h4606,58:20753781,29244707:0,0,0 -g4606,58:29010586,29244707 -g4606,58:30578862,29244707 -k4606,59:32178634,29244707:404395 -k4606,59:32583029,29244707:404395 -) -(4606,61:20753781,30111206:11829248,530548,102891 -h4606,59:20753781,30111206:0,0,0 -g4606,59:24031277,30111206 -g4606,59:25599553,30111206 -g4606,59:27167829,30111206 -g4606,59:28736105,30111206 -g4606,59:30304381,30111206 -k4606,59:32583029,30111206:996109 -) -(4606,61:23375221,30976286:9207808,485622,102891 -g4606,59:24943497,30976286 -g4606,59:26511773,30976286 -g4606,59:28080049,30976286 -g4606,59:29648325,30976286 -g4606,60:31216601,30976286 -k4606,61:32497504,30976286:85526 -k4606,61:32583029,30976286:85525 -) -(4606,62:20753781,31842785:11829248,530548,141066 -h4606,61:20753781,31842785:0,0,0 -g4606,61:25691047,31842785 -k4606,62:29734727,31842785:2848303 -k4606,62:32583029,31842785:2848302 -) -(4606,63:20753781,32709284:11829248,530548,132808 -h4606,62:20753781,32709284:0,0,0 -g4606,62:23201392,32709284 -g4606,62:24371209,32709284 -k4606,63:28875578,32709284:3707451 -k4606,63:32583029,32709284:3707451 -) -(4606,64:20753781,33575783:11829248,530548,102891 -h4606,63:20753781,33575783:0,0,0 -g4606,63:23201392,33575783 -g4606,63:24769668,33575783 -k4606,64:29274037,33575783:3308992 -k4606,64:32583029,33575783:3308992 -) -(4606,65:20753781,34442282:11829248,530548,132808 -h4606,64:20753781,34442282:0,0,0 -g4606,64:24446219,34442282 -g4606,64:25616036,34442282 -k4606,65:29497992,34442282:3085038 -k4606,65:32583029,34442282:3085037 -) -(4606,66:20753781,35308781:11829248,530548,132808 -h4606,65:20753781,35308781:0,0,0 -g4606,65:24031277,35308781 -g4606,65:25599553,35308781 -g4606,65:27167829,35308781 -k4606,66:30463287,35308781:2119742 -k4606,66:32583029,35308781:2119742 -) -(4606,67:20753781,36175280:11829248,530548,141066 -h4606,66:20753781,36175280:0,0,0 -g4606,66:24861162,36175280 -k4606,67:29319784,36175280:3263245 -k4606,67:32583029,36175280:3263245 -) -(4606,68:20753781,37041779:11829248,485622,132808 -h4606,67:20753781,37041779:0,0,0 -g4606,67:23201392,37041779 -g4606,67:24371209,37041779 -k4606,68:29074808,37041779:3508222 -k4606,68:32583029,37041779:3508221 -) -(4606,69:20753781,37908278:11829248,530548,132808 -h4606,68:20753781,37908278:0,0,0 -g4606,68:24031277,37908278 -k4606,69:28705612,37908278:3877417 -k4606,69:32583029,37908278:3877417 -) -(4606,70:20753781,38774777:11829248,530548,102891 -h4606,69:20753781,38774777:0,0,0 -g4606,69:26935874,38774777 -g4606,69:28105691,38774777 -k4606,70:30742819,38774777:1840210 -k4606,70:32583029,38774777:1840210 -) -(4606,71:20753781,39641276:11829248,538806,102891 -h4606,70:20753781,39641276:0,0,0 -g4606,70:27350816,39641276 -k4606,71:30564611,39641276:2018418 -k4606,71:32583029,39641276:2018418 -) -(4606,72:20753781,40507775:11829248,538806,102891 -h4606,71:20753781,40507775:0,0,0 -g4606,71:26105989,40507775 -g4606,71:27674265,40507775 -k4606,72:30716505,40507775:1866524 -k4606,72:32583029,40507775:1866524 -) -(4606,73:20753781,41374274:11829248,530548,141066 -h4606,72:20753781,41374274:0,0,0 -g4606,72:26105989,41374274 -k4606,73:29742968,41374274:2840061 -k4606,73:32583029,41374274:2840061 -) -(4606,74:20753781,42240773:11829248,530548,141066 -h4606,73:20753781,42240773:0,0,0 -g4606,73:26105989,42240773 -k4606,74:29733138,42240773:2849892 -k4606,74:32583029,42240773:2849891 -) -(4606,75:20753781,43107272:11829248,530548,102891 -h4606,74:20753781,43107272:0,0,0 -g4606,74:25691047,43107272 -k4606,75:29525667,43107272:3057363 -k4606,75:32583029,43107272:3057362 -) -(4606,76:20753781,43973771:11829248,530548,102891 -h4606,75:20753781,43973771:0,0,0 -g4606,75:26105989,43973771 -g4606,75:27275806,43973771 -g4606,75:28445623,43973771 -k4606,76:30912785,43973771:1670244 -k4606,76:32583029,43973771:1670244 -) -(4606,77:20753781,44840270:11829248,530548,102891 -h4606,76:20753781,44840270:0,0,0 -g4606,76:24031277,44840270 -k4606,77:28904842,44840270:3678188 -k4606,77:32583029,44840270:3678187 -) -(4606,78:20753781,45706769:11829248,530548,102891 -h4606,77:20753781,45706769:0,0,0 -g4606,77:25691047,45706769 -k4606,78:29525667,45706769:3057363 -k4606,78:32583029,45706769:3057362 -) -] -(4606,82:32583029,45706769:0,355205,126483 -h4606,82:32583029,45706769:420741,355205,126483 -k4606,82:32583029,45706769:-420741 -) -) -] -(4606,82:32583029,45706769:0,0,0 -g4606,82:32583029,45706769 -) -) -] -(4606,82:6630773,47279633:25952256,485622,11795 -(4606,82:6630773,47279633:25952256,485622,11795 -k4606,82:19009213,47279633:12378440 -k4606,82:32583030,47279633:12378440 +(4610,1:6630773,9498145:25952256,32768,0 +(4610,1:6630773,9498145:5505024,32768,0 +r4610,82:12135797,9498145:5505024,32768,0 +) +k4610,1:22359413,9498145:10223616 +k4610,1:32583029,9498145:10223616 +) +] +(4610,82:6630773,45706769:25952256,32525496,126483 +[4610,82:6630773,45706769:11829248,32525496,102891 +(4610,4:6630773,13836633:11829248,485622,102891 +h4610,3:6547509,13836633:0,0,0 +g4610,3:7335350,13836633 +g4610,3:8505167,13836633 +k4610,4:13871223,13836633:4588799 +k4610,4:18460021,13836633:4588798 +) +(4610,5:6630773,14723751:11829248,485622,102891 +h4610,4:6526865,14723751:0,0,0 +g4610,4:7314706,14723751 +g4610,4:8484523,14723751 +g4610,4:9654340,14723751 +g4610,4:10824157,14723751 +g4610,4:12392433,14723751 +g4610,4:13960709,14723751 +k4610,5:16808054,14723751:1651968 +k4610,5:18460021,14723751:1651967 +) +(4610,6:6630773,15610869:11829248,485622,102891 +h4610,5:6423646,15610869:0,0,0 +g4610,5:7211487,15610869 +g4610,5:8381304,15610869 +g4610,5:9551121,15610869 +k4610,6:14603260,15610869:3856762 +k4610,6:18460021,15610869:3856761 +) +(4610,7:6630773,16497987:11829248,485622,102891 +h4610,6:6423646,16497987:0,0,0 +g4610,6:7626430,16497987 +g4610,6:8796247,16497987 +k4610,7:14225823,16497987:4234199 +k4610,7:18460021,16497987:4234198 +) +(4610,8:6630773,17385105:11829248,538806,102891 +h4610,7:6423646,17385105:0,0,0 +g4610,7:8456315,17385105 +g4610,7:9626132,17385105 +k4610,8:14431705,17385105:4028316 +k4610,8:18460021,17385105:4028316 +) +(4610,9:6630773,18272223:11829248,538806,132808 +h4610,8:6630773,18272223:0,0,0 +g4610,8:14887578,18272223 +k4610,9:17072259,18272223:1387763 +k4610,9:18460021,18272223:1387762 +) +(4610,10:6630773,19159341:11829248,538806,102891 +h4610,9:6630773,19159341:0,0,0 +g4610,9:14887578,19159341 +k4610,10:17072259,19159341:1387763 +k4610,10:18460021,19159341:1387762 +) +(4610,11:6630773,20046459:11829248,538806,102891 +h4610,10:6630773,20046459:0,0,0 +g4610,10:14887578,20046459 +k4610,11:17072259,20046459:1387763 +k4610,11:18460021,20046459:1387762 +) +(4610,12:6630773,20933577:11829248,538806,141066 +h4610,11:6630773,20933577:0,0,0 +g4610,11:16547347,20933577 +k4610,12:17902143,20933577:557878 +k4610,12:18460021,20933577:557878 +) +(4610,13:6630773,21820696:11829248,538806,102891 +h4610,12:6630773,21820696:0,0,0 +g4610,12:15302520,21820696 +k4610,13:17279730,21820696:1180292 +k4610,13:18460021,21820696:1180291 +) +(4610,14:6630773,22707814:11829248,538806,141066 +h4610,13:6630773,22707814:0,0,0 +g4610,13:15302520,22707814 +k4610,14:17279730,22707814:1180292 +k4610,14:18460021,22707814:1180291 +) +(4610,15:6630773,23594932:11829248,530548,102891 +h4610,14:6589485,23594932:0,0,0 +g4610,14:7377326,23594932 +g4610,14:8547143,23594932 +k4610,15:14101271,23594932:4358751 +k4610,15:18460021,23594932:4358750 +) +(4610,16:6630773,24482050:11829248,485622,102891 +h4610,15:6630773,24482050:0,0,0 +g4610,15:7418614,24482050 +k4610,16:13337777,24482050:5122245 +k4610,16:18460021,24482050:5122244 +) +(4610,17:6630773,25369168:11829248,485622,102891 +h4610,16:6547509,25369168:0,0,0 +g4610,16:7335350,25369168 +k4610,17:13296145,25369168:5163877 +k4610,17:18460021,25369168:5163876 +) +(4610,18:6630773,26256286:11829248,485622,102891 +h4610,17:6547509,26256286:0,0,0 +g4610,17:7750293,26256286 +g4610,17:8920110,26256286 +g4610,17:10089927,26256286 +g4610,17:11259744,26256286 +g4610,17:12828020,26256286 +g4610,17:14396296,26256286 +g4610,17:15964572,26256286 +k4610,18:17809985,26256286:650036 +k4610,18:18460021,26256286:650036 +) +(4610,19:6630773,27143404:11829248,485622,102891 +h4610,18:6547509,27143404:0,0,0 +g4610,18:8165235,27143404 +k4610,19:13910317,27143404:4549705 +k4610,19:18460021,27143404:4549704 +) +(4610,20:6630773,28030522:11829248,485622,102891 +h4610,19:6547509,28030522:0,0,0 +g4610,19:7750293,28030522 +k4610,20:13503616,28030522:4956405 +k4610,20:18460021,28030522:4956405 +) +(4610,21:6630773,28917640:11829248,485622,102891 +h4610,20:6630773,28917640:0,0,0 +g4610,20:7418614,28917640 +g4610,20:8588431,28917640 +k4610,21:13912855,28917640:4547167 +k4610,21:18460021,28917640:4547166 +) +(4610,22:6630773,29804758:11829248,485622,102891 +h4610,21:6630773,29804758:0,0,0 +g4610,21:7833557,29804758 +g4610,21:9003374,29804758 +k4610,22:14319556,29804758:4140466 +k4610,22:18460021,29804758:4140465 +) +(4610,23:6630773,30691876:11829248,485622,102891 +h4610,22:6589485,30691876:0,0,0 +g4610,22:7377326,30691876 +k4610,23:13317133,30691876:5142889 +k4610,23:18460021,30691876:5142888 +) +(4610,24:6630773,31578994:11829248,485622,102891 +h4610,23:6589485,31578994:0,0,0 +g4610,23:7792269,31578994 +k4610,24:13524604,31578994:4935417 +k4610,24:18460021,31578994:4935417 +) +(4610,25:6630773,32466112:11829248,530548,108035 +h4610,24:6630773,32466112:0,0,0 +g4610,24:7460657,32466112 +g4610,24:8290541,32466112 +g4610,24:9078382,32466112 +g4610,24:10646658,32466112 +k4610,25:15141198,32466112:3318824 +k4610,25:18460021,32466112:3318823 +) +(4610,27:6630773,33353230:11829248,530548,102891 +h4610,25:6630773,33353230:0,0,0 +g4610,25:7460657,33353230 +g4610,25:8248498,33353230 +g4610,25:9418315,33353230 +g4610,25:10588132,33353230 +g4610,25:11757949,33353230 +g4610,25:12927766,33353230 +g4610,25:14097583,33353230 +g4610,25:15267400,33353230 +g4610,25:16835676,33353230 +k4610,25:18460021,33353230:341806 +) +(4610,27:9252213,34218310:9207808,485622,102891 +g4610,25:10800828,34218310 +g4610,25:12369104,34218310 +g4610,26:15460437,34218310 +g4610,26:17028713,34218310 +k4610,26:18460021,34218310:148769 +) +(4610,27:9252213,35083390:9207808,485622,102891 +g4610,26:10800828,35083390 +g4610,26:12369104,35083390 +k4610,27:16012251,35083390:2447770 +k4610,27:18460021,35083390:2447770 +) +(4610,29:6630773,35970508:11829248,530548,102891 +h4610,27:6630773,35970508:0,0,0 +g4610,27:7875600,35970508 +g4610,27:9078384,35970508 +g4610,27:10248201,35970508 +g4610,27:11418018,35970508 +g4610,27:12587835,35970508 +g4610,27:13757652,35970508 +g4610,27:14927469,35970508 +g4610,27:16097286,35970508 +k4610,27:18460021,35970508:1080196 +) +(4610,29:9252213,36835588:9207808,485622,102891 +g4610,27:10800828,36835588 +g4610,27:12369104,36835588 +g4610,27:13937380,36835588 +g4610,28:15505656,36835588 +k4610,29:17580527,36835588:879494 +k4610,29:18460021,36835588:879494 +) +(4610,30:6630773,37722706:11829248,538806,102891 +h4610,29:6630773,37722706:0,0,0 +g4610,29:7418614,37722706 +g4610,29:8588431,37722706 +g4610,29:9758248,37722706 +g4610,29:10928065,37722706 +g4610,29:12496341,37722706 +g4610,29:14064617,37722706 +k4610,30:16860008,37722706:1600014 +k4610,30:18460021,37722706:1600013 +) +(4610,31:6630773,38609825:11829248,509904,102891 +h4610,30:6610129,38609825:0,0,0 +g4610,30:8227855,38609825 +k4610,31:13742397,38609825:4717624 +k4610,31:18460021,38609825:4717624 +) +(4610,32:6630773,39496943:11829248,509904,102891 +h4610,31:6610129,39496943:0,0,0 +g4610,31:8227855,39496943 +k4610,32:13941627,39496943:4518395 +k4610,32:18460021,39496943:4518394 +) +(4610,33:6630773,40384061:11829248,509904,102891 +h4610,32:6610129,40384061:0,0,0 +g4610,32:8642798,40384061 +k4610,33:14910626,40384061:3549395 +k4610,33:18460021,40384061:3549395 +) +(4610,34:6630773,41271179:11829248,530548,102891 +h4610,33:6610129,41271179:0,0,0 +g4610,33:8227855,41271179 +k4610,34:13732567,41271179:4727455 +k4610,34:18460021,41271179:4727454 +) +(4610,35:6630773,42158297:11829248,509904,102891 +h4610,34:6610129,42158297:0,0,0 +g4610,34:8642798,42158297 +k4610,35:14149098,42158297:4310923 +k4610,35:18460021,42158297:4310923 +) +(4610,36:6630773,43045415:11829248,509904,102891 +h4610,35:6610129,43045415:0,0,0 +g4610,35:8227855,43045415 +g4610,35:11319188,43045415 +k4610,36:15487293,43045415:2972728 +k4610,36:18460021,43045415:2972728 +) +(4610,37:6630773,43932533:11829248,509904,102891 +h4610,36:6610129,43932533:0,0,0 +g4610,36:8642798,43932533 +k4610,37:14149098,43932533:4310923 +k4610,37:18460021,43932533:4310923 +) +(4610,38:6630773,44819651:11829248,509904,102891 +h4610,37:6610129,44819651:0,0,0 +g4610,37:7812913,44819651 +k4610,38:13525096,44819651:4934926 +k4610,38:18460021,44819651:4934925 +) +(4610,39:6630773,45706769:11829248,530548,102891 +h4610,38:6610129,45706769:0,0,0 +g4610,38:8642798,45706769 +g4610,38:9812615,45706769 +k4610,39:14524947,45706769:3935075 +k4610,39:18460021,45706769:3935074 +) +] +k4610,82:19606901,45706769:1146880 +r4610,82:19606901,45706769:0,32651979,126483 +k4610,82:20753781,45706769:1146880 +[4610,82:20753781,45706769:11829248,32525496,102891 +(4610,40:20753781,13836633:11829248,509904,102891 +h4610,39:20753781,13836633:0,0,0 +g4610,39:21541622,13836633 +g4610,39:22711439,13836633 +k4610,40:28045693,13836633:4537336 +k4610,40:32583029,13836633:4537336 +) +(4610,41:20753781,14703132:11829248,509904,102891 +h4610,40:20753781,14703132:0,0,0 +g4610,40:21956565,14703132 +k4610,41:27668256,14703132:4914773 +k4610,41:32583029,14703132:4914773 +) +(4610,42:20753781,15569631:11829248,497518,102891 +h4610,41:20753781,15569631:0,0,0 +g4610,41:21541622,15569631 +k4610,42:27450954,15569631:5132075 +k4610,42:32583029,15569631:5132075 +) +(4610,43:20753781,16436130:11829248,530548,102891 +h4610,42:20712493,16436130:0,0,0 +g4610,42:22330219,16436130 +k4610,43:28054313,16436130:4528717 +k4610,43:32583029,16436130:4528716 +) +(4610,44:20753781,17302629:11829248,530548,102891 +h4610,43:20753781,17302629:0,0,0 +g4610,43:21541622,17302629 +g4610,43:22711439,17302629 +k4610,44:28045693,17302629:4537336 +k4610,44:32583029,17302629:4537336 +) +(4610,45:20753781,18169128:11829248,530548,102891 +h4610,44:20753781,18169128:0,0,0 +g4610,44:21956565,18169128 +g4610,44:23524841,18169128 +g4610,44:25093117,18169128 +g4610,44:28184450,18169128 +g4610,44:29752726,18169128 +g4610,44:31321002,18169128 +k4610,45:32539874,18169128:43156 +k4610,45:32583029,18169128:43155 +) +(4610,46:20753781,19035627:11829248,530548,102891 +h4610,45:20753781,19035627:0,0,0 +g4610,45:21956565,19035627 +k4610,46:27668256,19035627:4914773 +k4610,46:32583029,19035627:4914773 +) +(4610,50:20753781,20581136:11829248,530548,102891 +h4610,49:20753781,20581136:0,0,0 +g4610,49:23201392,20581136 +g4610,49:24371209,20581136 +k4610,50:28865748,20581136:3717282 +k4610,50:32583029,20581136:3717281 +) +(4610,51:20753781,21447635:11829248,538806,102891 +h4610,50:20753781,21447635:0,0,0 +g4610,50:23201392,21447635 +k4610,51:28489899,21447635:4093130 +k4610,51:32583029,21447635:4093130 +) +(4610,52:20753781,22314134:11829248,530548,102891 +h4610,51:20753781,22314134:0,0,0 +g4610,51:23201392,22314134 +g4610,51:24769668,22314134 +g4610,51:26337944,22314134 +g4610,51:27906220,22314134 +g4610,51:29474496,22314134 +g4610,51:31042772,22314134 +k4610,51:32583029,22314134:257718 +) +(4610,52:23375221,23179214:9207808,485622,11795 +k4610,52:28576814,23179214:4006216 +k4610,52:32583029,23179214:4006215 +) +(4610,53:20753781,24045713:11829248,538806,102891 +h4610,52:20753781,24045713:0,0,0 +g4610,52:26520932,24045713 +k4610,53:30149669,24045713:2433360 +k4610,53:32583029,24045713:2433360 +) +(4610,54:20753781,24912212:11829248,538806,102891 +h4610,53:20753781,24912212:0,0,0 +g4610,53:26105989,24912212 +g4610,53:27674265,24912212 +g4610,53:29242541,24912212 +k4610,54:31510474,24912212:1072556 +k4610,54:32583029,24912212:1072555 +) +(4610,55:20753781,25778711:11829248,530548,141066 +h4610,54:20753781,25778711:0,0,0 +g4610,54:25691047,25778711 +g4610,54:27259323,25778711 +g4610,54:28827599,25778711 +k4610,55:31303003,25778711:1280027 +k4610,55:32583029,25778711:1280026 +) +(4610,56:20753781,26645210:11829248,530548,102891 +h4610,55:20733137,26645210:0,0,0 +g4610,55:23180748,26645210 +g4610,55:24749024,26645210 +g4610,55:26317300,26645210 +k4610,56:30038023,26645210:2545007 +k4610,56:32583029,26645210:2545006 +) +(4610,57:20753781,27511709:11829248,530548,102891 +h4610,56:20753781,27511709:0,0,0 +g4610,56:23201392,27511709 +g4610,56:24371209,27511709 +k4610,57:28865748,27511709:3717282 +k4610,57:32583029,27511709:3717281 +) +(4610,58:20753781,28378208:11829248,530548,102891 +h4610,57:20753781,28378208:0,0,0 +g4610,57:25276104,28378208 +k4610,58:30278953,28378208:2304077 +k4610,58:32583029,28378208:2304076 +) +(4610,59:20753781,29244707:11829248,530548,102891 +h4610,58:20753781,29244707:0,0,0 +g4610,58:29010586,29244707 +g4610,58:30578862,29244707 +k4610,59:32178634,29244707:404395 +k4610,59:32583029,29244707:404395 +) +(4610,61:20753781,30111206:11829248,530548,102891 +h4610,59:20753781,30111206:0,0,0 +g4610,59:24031277,30111206 +g4610,59:25599553,30111206 +g4610,59:27167829,30111206 +g4610,59:28736105,30111206 +g4610,59:30304381,30111206 +k4610,59:32583029,30111206:996109 +) +(4610,61:23375221,30976286:9207808,485622,102891 +g4610,59:24943497,30976286 +g4610,59:26511773,30976286 +g4610,59:28080049,30976286 +g4610,59:29648325,30976286 +g4610,60:31216601,30976286 +k4610,61:32497504,30976286:85526 +k4610,61:32583029,30976286:85525 +) +(4610,62:20753781,31842785:11829248,530548,141066 +h4610,61:20753781,31842785:0,0,0 +g4610,61:25691047,31842785 +k4610,62:29734727,31842785:2848303 +k4610,62:32583029,31842785:2848302 +) +(4610,63:20753781,32709284:11829248,530548,132808 +h4610,62:20753781,32709284:0,0,0 +g4610,62:23201392,32709284 +g4610,62:24371209,32709284 +k4610,63:28875578,32709284:3707451 +k4610,63:32583029,32709284:3707451 +) +(4610,64:20753781,33575783:11829248,530548,102891 +h4610,63:20753781,33575783:0,0,0 +g4610,63:23201392,33575783 +g4610,63:24769668,33575783 +k4610,64:29274037,33575783:3308992 +k4610,64:32583029,33575783:3308992 +) +(4610,65:20753781,34442282:11829248,530548,132808 +h4610,64:20753781,34442282:0,0,0 +g4610,64:24446219,34442282 +g4610,64:25616036,34442282 +k4610,65:29497992,34442282:3085038 +k4610,65:32583029,34442282:3085037 +) +(4610,66:20753781,35308781:11829248,530548,132808 +h4610,65:20753781,35308781:0,0,0 +g4610,65:24031277,35308781 +g4610,65:25599553,35308781 +g4610,65:27167829,35308781 +k4610,66:30463287,35308781:2119742 +k4610,66:32583029,35308781:2119742 +) +(4610,67:20753781,36175280:11829248,530548,141066 +h4610,66:20753781,36175280:0,0,0 +g4610,66:24861162,36175280 +k4610,67:29319784,36175280:3263245 +k4610,67:32583029,36175280:3263245 +) +(4610,68:20753781,37041779:11829248,485622,132808 +h4610,67:20753781,37041779:0,0,0 +g4610,67:23201392,37041779 +g4610,67:24371209,37041779 +k4610,68:29074808,37041779:3508222 +k4610,68:32583029,37041779:3508221 +) +(4610,69:20753781,37908278:11829248,530548,132808 +h4610,68:20753781,37908278:0,0,0 +g4610,68:24031277,37908278 +k4610,69:28705612,37908278:3877417 +k4610,69:32583029,37908278:3877417 +) +(4610,70:20753781,38774777:11829248,530548,102891 +h4610,69:20753781,38774777:0,0,0 +g4610,69:26935874,38774777 +g4610,69:28105691,38774777 +k4610,70:30742819,38774777:1840210 +k4610,70:32583029,38774777:1840210 +) +(4610,71:20753781,39641276:11829248,538806,102891 +h4610,70:20753781,39641276:0,0,0 +g4610,70:27350816,39641276 +k4610,71:30564611,39641276:2018418 +k4610,71:32583029,39641276:2018418 +) +(4610,72:20753781,40507775:11829248,538806,102891 +h4610,71:20753781,40507775:0,0,0 +g4610,71:26105989,40507775 +g4610,71:27674265,40507775 +k4610,72:30716505,40507775:1866524 +k4610,72:32583029,40507775:1866524 +) +(4610,73:20753781,41374274:11829248,530548,141066 +h4610,72:20753781,41374274:0,0,0 +g4610,72:26105989,41374274 +k4610,73:29742968,41374274:2840061 +k4610,73:32583029,41374274:2840061 +) +(4610,74:20753781,42240773:11829248,530548,141066 +h4610,73:20753781,42240773:0,0,0 +g4610,73:26105989,42240773 +k4610,74:29733138,42240773:2849892 +k4610,74:32583029,42240773:2849891 +) +(4610,75:20753781,43107272:11829248,530548,102891 +h4610,74:20753781,43107272:0,0,0 +g4610,74:25691047,43107272 +k4610,75:29525667,43107272:3057363 +k4610,75:32583029,43107272:3057362 +) +(4610,76:20753781,43973771:11829248,530548,102891 +h4610,75:20753781,43973771:0,0,0 +g4610,75:26105989,43973771 +g4610,75:27275806,43973771 +g4610,75:28445623,43973771 +k4610,76:30912785,43973771:1670244 +k4610,76:32583029,43973771:1670244 +) +(4610,77:20753781,44840270:11829248,530548,102891 +h4610,76:20753781,44840270:0,0,0 +g4610,76:24031277,44840270 +k4610,77:28904842,44840270:3678188 +k4610,77:32583029,44840270:3678187 +) +(4610,78:20753781,45706769:11829248,530548,102891 +h4610,77:20753781,45706769:0,0,0 +g4610,77:25691047,45706769 +k4610,78:29525667,45706769:3057363 +k4610,78:32583029,45706769:3057362 +) +] +(4610,82:32583029,45706769:0,355205,126483 +h4610,82:32583029,45706769:420741,355205,126483 +k4610,82:32583029,45706769:-420741 +) +) +] +(4610,82:32583029,45706769:0,0,0 +g4610,82:32583029,45706769 +) +) +] +(4610,82:6630773,47279633:25952256,485622,11795 +(4610,82:6630773,47279633:25952256,485622,11795 +k4610,82:19009213,47279633:12378440 +k4610,82:32583030,47279633:12378440 ) ) ] -(4606,82:4262630,4025873:0,0,0 -[4606,82:-473656,4025873:0,0,0 -(4606,82:-473656,-710413:0,0,0 -(4606,82:-473656,-710413:0,0,0 -g4606,82:-473656,-710413 +(4610,82:4262630,4025873:0,0,0 +[4610,82:-473656,4025873:0,0,0 +(4610,82:-473656,-710413:0,0,0 +(4610,82:-473656,-710413:0,0,0 +g4610,82:-473656,-710413 ) -g4606,82:-473656,-710413 +g4610,82:-473656,-710413 ) ] ) ] -!19937 -}446 +!19906 +}447 !12 -{447 -[4606,183:4262630,47279633:28320399,43253760,0 -(4606,183:4262630,4025873:0,0,0 -[4606,183:-473656,4025873:0,0,0 -(4606,183:-473656,-710413:0,0,0 -(4606,183:-473656,-644877:0,0,0 -k4606,183:-473656,-644877:-65536 +{448 +[4610,183:4262630,47279633:28320399,43253760,0 +(4610,183:4262630,4025873:0,0,0 +[4610,183:-473656,4025873:0,0,0 +(4610,183:-473656,-710413:0,0,0 +(4610,183:-473656,-644877:0,0,0 +k4610,183:-473656,-644877:-65536 ) -(4606,183:-473656,4736287:0,0,0 -k4606,183:-473656,4736287:5209943 +(4610,183:-473656,4736287:0,0,0 +k4610,183:-473656,4736287:5209943 ) -g4606,183:-473656,-710413 +g4610,183:-473656,-710413 ) ] ) -[4606,183:6630773,47279633:25952256,43253760,0 -[4606,183:6630773,4812305:25952256,786432,0 -(4606,183:6630773,4812305:25952256,513147,126483 -(4606,183:6630773,4812305:25952256,513147,126483 -g4606,183:3078558,4812305 -[4606,183:3078558,4812305:0,0,0 -(4606,183:3078558,2439708:0,1703936,0 -k4606,183:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,183:2537886,2439708:1179648,16384,0 +[4610,183:6630773,47279633:25952256,43253760,0 +[4610,183:6630773,4812305:25952256,786432,0 +(4610,183:6630773,4812305:25952256,513147,126483 +(4610,183:6630773,4812305:25952256,513147,126483 +g4610,183:3078558,4812305 +[4610,183:3078558,4812305:0,0,0 +(4610,183:3078558,2439708:0,1703936,0 +k4610,183:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,183:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,183:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,183:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,183:3078558,4812305:0,0,0 -(4606,183:3078558,2439708:0,1703936,0 -g4606,183:29030814,2439708 -g4606,183:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,183:36151628,1915420:16384,1179648,0 +[4610,183:3078558,4812305:0,0,0 +(4610,183:3078558,2439708:0,1703936,0 +g4610,183:29030814,2439708 +g4610,183:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,183:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,183:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,183:37855564,2439708:1179648,16384,0 ) ) -k4606,183:3078556,2439708:-34777008 +k4610,183:3078556,2439708:-34777008 ) ] -[4606,183:3078558,4812305:0,0,0 -(4606,183:3078558,49800853:0,16384,2228224 -k4606,183:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,183:2537886,49800853:1179648,16384,0 +[4610,183:3078558,4812305:0,0,0 +(4610,183:3078558,49800853:0,16384,2228224 +k4610,183:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,183:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,183:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,183:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,183:3078558,4812305:0,0,0 -(4606,183:3078558,49800853:0,16384,2228224 -g4606,183:29030814,49800853 -g4606,183:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,183:36151628,51504789:16384,1179648,0 +[4610,183:3078558,4812305:0,0,0 +(4610,183:3078558,49800853:0,16384,2228224 +g4610,183:29030814,49800853 +g4610,183:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,183:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,183:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,183:37855564,49800853:1179648,16384,0 ) ) -k4606,183:3078556,49800853:-34777008 +k4610,183:3078556,49800853:-34777008 ) ] -g4606,183:6630773,4812305 -k4606,183:23552170,4812305:15726020 -g4606,183:27112085,4812305 -g4606,183:29010007,4812305 -g4606,183:29825274,4812305 -g4606,183:30438691,4812305 -) -) -] -[4606,183:6630773,45706769:25952256,40108032,0 -(4606,183:6630773,45706769:25952256,40108032,0 -(4606,183:6630773,45706769:0,0,0 -g4606,183:6630773,45706769 -) -[4606,183:6630773,45706769:25952256,40108032,0 -(4606,183:6630773,45706769:25952256,40108032,132808 -[4606,183:6630773,45706769:11829248,40108032,102891 -(4606,79:6630773,6254097:11829248,530548,102891 -h4606,78:6630773,6254097:0,0,0 -g4606,78:11568039,6254097 -k4606,79:15611719,6254097:2848303 -k4606,79:18460021,6254097:2848302 -) -(4606,80:6630773,7120191:11829248,530548,141066 -h4606,79:6630773,7120191:0,0,0 -g4606,79:10323211,7120191 -g4606,79:11891487,7120191 -g4606,79:13459763,7120191 -g4606,79:15028039,7120191 -g4606,79:16596315,7120191 -k4606,80:18125857,7120191:334165 -k4606,80:18460021,7120191:334164 -) -(4606,81:6630773,7986285:11829248,530548,102891 -h4606,80:6630773,7986285:0,0,0 -g4606,80:10323211,7986285 -g4606,80:11891487,7986285 -g4606,80:13459763,7986285 -g4606,80:15028039,7986285 -k4606,81:17331888,7986285:1128133 -k4606,81:18460021,7986285:1128133 -) -(4606,82:6630773,8852380:11829248,530548,102891 -h4606,81:6630773,8852380:0,0,0 -g4606,81:9493326,8852380 -k4606,82:14574362,8852380:3885659 -k4606,82:18460021,8852380:3885659 -) -(4606,83:6630773,9718474:11829248,530548,102891 -h4606,82:6630773,9718474:0,0,0 -g4606,82:10323211,9718474 -k4606,83:14989305,9718474:3470717 -k4606,83:18460021,9718474:3470716 -) -(4606,84:6630773,10584568:11829248,530548,102891 -h4606,83:6630773,10584568:0,0,0 -g4606,83:11982981,10584568 -g4606,83:13551257,10584568 -g4606,83:15119533,10584568 -k4606,84:17387466,10584568:1072556 -k4606,84:18460021,10584568:1072555 -) -(4606,88:6630773,12122926:11829248,530548,102891 -h4606,87:6630773,12122926:0,0,0 -g4606,87:11153096,12122926 -k4606,88:15404247,12122926:3055774 -k4606,88:18460021,12122926:3055774 -) -(4606,89:6630773,12989020:11829248,530548,102891 -h4606,88:6630773,12989020:0,0,0 -g4606,88:9078384,12989020 -g4606,88:10646660,12989020 -k4606,89:15141199,12989020:3318823 -k4606,89:18460021,12989020:3318822 -) -(4606,90:6630773,13855114:11829248,530548,102891 -h4606,89:6630773,13855114:0,0,0 -g4606,89:11568039,13855114 -k4606,90:15611719,13855114:2848303 -k4606,90:18460021,13855114:2848302 -) -(4606,91:6630773,14721208:11829248,530548,102891 -h4606,90:6630773,14721208:0,0,0 -g4606,90:11568039,14721208 -k4606,91:15611719,14721208:2848303 -k4606,91:18460021,14721208:2848302 -) -(4606,92:6630773,15587302:11829248,530548,132808 -h4606,91:6630773,15587302:0,0,0 -g4606,91:10323211,15587302 -k4606,92:14979474,15587302:3480547 -k4606,92:18460021,15587302:3480547 -) -(4606,93:6630773,16453397:11829248,530548,102891 -h4606,92:6630773,16453397:0,0,0 -g4606,92:9493326,16453397 -k4606,93:14564532,16453397:3895490 -k4606,93:18460021,16453397:3895489 -) -(4606,94:6630773,17319491:11829248,530548,102891 -h4606,93:6630773,17319491:0,0,0 -g4606,93:11982981,17319491 -k4606,94:15809359,17319491:2650662 -k4606,94:18460021,17319491:2650662 -) -(4606,95:6630773,18185585:11829248,530548,132808 -h4606,94:6630773,18185585:0,0,0 -g4606,94:13227808,18185585 -k4606,95:16441603,18185585:2018418 -k4606,95:18460021,18185585:2018418 -) -(4606,96:6630773,19051679:11829248,530548,132808 -h4606,95:6630773,19051679:0,0,0 -g4606,95:10323211,19051679 -k4606,96:14989305,19051679:3470717 -k4606,96:18460021,19051679:3470716 -) -(4606,97:6630773,19917774:11829248,530548,102891 -h4606,96:6630773,19917774:0,0,0 -g4606,96:9908269,19917774 -g4606,96:11476545,19917774 -g4606,96:13044821,19917774 -k4606,97:16350110,19917774:2109912 -k4606,97:18460021,19917774:2109911 -) -(4606,101:6630773,21456131:11829248,530548,102891 -h4606,100:6630773,21456131:0,0,0 -g4606,100:8248499,21456131 -g4606,100:9418316,21456131 -g4606,100:10588133,21456131 -g4606,100:11757950,21456131 -g4606,100:12927767,21456131 -k4606,101:16291583,21456131:2168439 -k4606,101:18460021,21456131:2168438 -) -(4606,102:6630773,22322225:11829248,530548,102891 -h4606,101:6630773,22322225:0,0,0 -g4606,101:8663442,22322225 -k4606,102:14159420,22322225:4300601 -k4606,102:18460021,22322225:4300601 -) -(4606,103:6630773,23188320:11829248,485622,102891 -h4606,102:6630773,23188320:0,0,0 -g4606,102:8663442,23188320 -k4606,103:14159420,23188320:4300601 -k4606,103:18460021,23188320:4300601 -) -(4606,104:6630773,24054414:11829248,530548,102891 -h4606,103:6630773,24054414:0,0,0 -g4606,103:9078384,24054414 -g4606,103:10248201,24054414 -g4606,103:11418018,24054414 -k4606,104:15526878,24054414:2933144 -k4606,104:18460021,24054414:2933143 -) -(4606,105:6630773,24920508:11829248,530548,102891 -h4606,104:6630773,24920508:0,0,0 -g4606,104:9908269,24920508 -g4606,104:11078086,24920508 -k4606,105:15366742,24920508:3093279 -k4606,105:18460021,24920508:3093279 -) -(4606,106:6630773,25786602:11829248,530548,141066 -h4606,105:6630773,25786602:0,0,0 -g4606,105:10738154,25786602 -k4606,106:14997547,25786602:3462475 -k4606,106:18460021,25786602:3462474 -) -(4606,107:6630773,26652696:11829248,530548,102891 -h4606,106:6630773,26652696:0,0,0 -g4606,106:10738154,26652696 -g4606,106:11907971,26652696 -g4606,106:13077788,26652696 -g4606,106:14247605,26652696 -g4606,106:15417422,26652696 -k4606,107:17337181,26652696:1122841 -k4606,107:18460021,26652696:1122840 -) -(4606,108:6630773,27518791:11829248,530548,102891 -h4606,107:6630773,27518791:0,0,0 -g4606,107:11568039,27518791 -k4606,108:15402659,27518791:3057363 -k4606,108:18460021,27518791:3057362 -) -(4606,109:6630773,28384885:11829248,530548,102891 -h4606,108:6630773,28384885:0,0,0 -g4606,108:11153096,28384885 -k4606,109:15404247,28384885:3055774 -k4606,109:18460021,28384885:3055774 -) -(4606,110:6630773,29250979:11829248,530548,102891 -h4606,109:6630773,29250979:0,0,0 -g4606,109:9908269,29250979 -g4606,109:11078086,29250979 -g4606,109:12247903,29250979 -g4606,109:13816179,29250979 -g4606,109:15384455,29250979 -k4606,110:17519927,29250979:940095 -k4606,110:18460021,29250979:940094 -) -(4606,111:6630773,30117073:11829248,538806,102891 -h4606,110:6630773,30117073:0,0,0 -g4606,110:9493326,30117073 -g4606,110:11061602,30117073 -g4606,110:12629878,30117073 -k4606,111:16142638,30117073:2317383 -k4606,111:18460021,30117073:2317383 -) -(4606,112:6630773,30983167:11829248,538806,102891 -h4606,111:6630773,30983167:0,0,0 -g4606,111:12812866,30983167 -k4606,112:16224302,30983167:2235720 -k4606,112:18460021,30983167:2235719 -) -(4606,113:6630773,31849262:11829248,530548,141066 -h4606,112:6630773,31849262:0,0,0 -g4606,112:10738154,31849262 -k4606,113:15196776,31849262:3263245 -k4606,113:18460021,31849262:3263245 -) -(4606,114:6630773,32715356:11829248,530548,102891 -h4606,113:6630773,32715356:0,0,0 -g4606,113:11153096,32715356 -k4606,114:15404247,32715356:3055774 -k4606,114:18460021,32715356:3055774 -) -(4606,115:6630773,33581450:11829248,530548,102891 -h4606,114:6630773,33581450:0,0,0 -g4606,114:11153096,33581450 -g4606,114:12322913,33581450 -g4606,114:13891189,33581450 -k4606,115:16773294,33581450:1686728 -k4606,115:18460021,33581450:1686727 -) -(4606,116:6630773,34447544:11829248,530548,102891 -h4606,115:6630773,34447544:0,0,0 -g4606,115:11982981,34447544 -g4606,115:13551257,34447544 -k4606,116:16603328,34447544:1856694 -k4606,116:18460021,34447544:1856693 -) -(4606,117:6630773,35313638:11829248,530548,102891 -h4606,116:6630773,35313638:0,0,0 -g4606,116:10323211,35313638 -k4606,117:14989305,35313638:3470717 -k4606,117:18460021,35313638:3470716 -) -(4606,118:6630773,36179733:11829248,530548,102891 -h4606,117:6630773,36179733:0,0,0 -g4606,117:10738154,36179733 -k4606,118:15196776,36179733:3263245 -k4606,118:18460021,36179733:3263245 -) -(4606,119:6630773,37045827:11829248,530548,102891 -h4606,118:6630773,37045827:0,0,0 -g4606,118:10738154,37045827 -k4606,119:15196776,37045827:3263245 -k4606,119:18460021,37045827:3263245 -) -(4606,120:6630773,37911921:11829248,530548,102891 -h4606,119:6630773,37911921:0,0,0 -g4606,119:11568039,37911921 -k4606,120:15611719,37911921:2848303 -k4606,120:18460021,37911921:2848302 -) -(4606,121:6630773,38778015:11829248,530548,132808 -h4606,120:6630773,38778015:0,0,0 -g4606,120:9908269,38778015 -k4606,121:14582604,38778015:3877417 -k4606,121:18460021,38778015:3877417 -) -(4606,122:6630773,39644110:11829248,530548,102891 -h4606,121:6630773,39644110:0,0,0 -g4606,121:11153096,39644110 -k4606,122:15394417,39644110:3065605 -k4606,122:18460021,39644110:3065604 -) -(4606,123:6630773,40510204:11829248,530548,102891 -h4606,122:6630773,40510204:0,0,0 -g4606,122:12397924,40510204 -k4606,123:16026661,40510204:2433360 -k4606,123:18460021,40510204:2433360 -) -(4606,124:6630773,41376298:11829248,530548,102891 -h4606,123:6630773,41376298:0,0,0 -g4606,123:13227808,41376298 -k4606,124:16441603,41376298:2018418 -k4606,124:18460021,41376298:2018418 -) -(4606,125:6630773,42242392:11829248,530548,132808 -h4606,124:6630773,42242392:0,0,0 -g4606,124:11982981,42242392 -k4606,125:15819190,42242392:2640832 -k4606,125:18460021,42242392:2640831 -) -(4606,126:6630773,43108486:11829248,530548,102891 -h4606,125:6630773,43108486:0,0,0 -g4606,125:11568039,43108486 -k4606,126:15611719,43108486:2848303 -k4606,126:18460021,43108486:2848302 -) -(4606,127:6630773,43974581:11829248,530548,102891 -h4606,126:6630773,43974581:0,0,0 -g4606,126:11568039,43974581 -k4606,127:15601888,43974581:2858133 -k4606,127:18460021,43974581:2858133 -) -(4606,128:6630773,44840675:11829248,485622,102891 -h4606,127:6630773,44840675:0,0,0 -g4606,127:13227808,44840675 -k4606,128:16441603,44840675:2018418 -k4606,128:18460021,44840675:2018418 -) -(4606,129:6630773,45706769:11829248,530548,102891 -h4606,128:6630773,45706769:0,0,0 -g4606,128:14057693,45706769 -g4606,128:15625969,45706769 -k4606,129:17640684,45706769:819338 -k4606,129:18460021,45706769:819337 -) -] -k4606,183:19606901,45706769:1146880 -r4606,183:19606901,45706769:0,40240840,132808 -k4606,183:20753781,45706769:1146880 -[4606,183:20753781,45706769:11829248,40108032,132808 -(4606,130:20753781,6254097:11829248,538806,132808 -h4606,129:20753781,6254097:0,0,0 -g4606,129:26105989,6254097 -g4606,129:27674265,6254097 -k4606,130:30726336,6254097:1856694 -k4606,130:32583029,6254097:1856693 -) -(4606,131:20753781,7131475:11829248,530548,132808 -h4606,130:20753781,7131475:0,0,0 -g4606,130:26520932,7131475 -k4606,131:30901367,7131475:1681663 -k4606,131:32583029,7131475:1681662 -) -(4606,132:20753781,8008853:11829248,530548,102891 -h4606,131:20753781,8008853:0,0,0 -g4606,131:23201392,8008853 -k4606,132:29241597,8008853:3341433 -k4606,132:32583029,8008853:3341432 -) -(4606,133:20753781,8886232:11829248,530548,102891 -h4606,132:20753781,8886232:0,0,0 -g4606,132:25276104,8886232 -g4606,132:26844380,8886232 -k4606,133:30301563,8886232:2281467 -k4606,133:32583029,8886232:2281466 -) -(4606,134:20753781,9763610:11829248,530548,102891 -h4606,133:20753781,9763610:0,0,0 -g4606,133:23201392,9763610 -k4606,134:28290670,9763610:4292360 -k4606,134:32583029,9763610:4292359 -) -(4606,135:20753781,10640988:11829248,530548,102891 -h4606,134:20753781,10640988:0,0,0 -g4606,134:24446219,10640988 -k4606,135:29112313,10640988:3470717 -k4606,135:32583029,10640988:3470716 -) -(4606,136:20753781,11518366:11829248,530548,102891 -h4606,135:20753781,11518366:0,0,0 -g4606,135:24446219,11518366 -k4606,136:29112313,11518366:3470717 -k4606,136:32583029,11518366:3470716 -) -(4606,137:20753781,12395745:11829248,530548,132808 -h4606,136:20753781,12395745:0,0,0 -g4606,136:24861162,12395745 -k4606,137:29319784,12395745:3263245 -k4606,137:32583029,12395745:3263245 -) -(4606,138:20753781,13273123:11829248,530548,102891 -h4606,137:20753781,13273123:0,0,0 -g4606,137:24446219,13273123 -k4606,138:29112313,13273123:3470717 -k4606,138:32583029,13273123:3470716 -) -(4606,139:20753781,14150501:11829248,530548,102891 -h4606,138:20753781,14150501:0,0,0 -g4606,138:24446219,14150501 -k4606,139:29102482,14150501:3480547 -k4606,139:32583029,14150501:3480547 -) -(4606,143:20753781,15888208:11829248,530548,102891 -h4606,142:20753781,15888208:0,0,0 -g4606,142:23616334,15888208 -k4606,143:28697370,15888208:3885659 -k4606,143:32583029,15888208:3885659 -) -(4606,144:20753781,16765586:11829248,538806,102891 -h4606,143:20753781,16765586:0,0,0 -g4606,143:25276104,16765586 -g4606,143:26445921,16765586 -g4606,143:28014197,16765586 -k4606,144:30896302,16765586:1686728 -k4606,144:32583029,16765586:1686727 -) -(4606,145:20753781,17642964:11829248,538806,102891 -h4606,144:20753781,17642964:0,0,0 -g4606,144:26105989,17642964 -g4606,144:28400404,17642964 -g4606,144:29968680,17642964 -k4606,144:32583029,17642964:1331810 -) -(4606,145:23375221,18508044:9207808,485622,102891 -g4606,144:24923836,18508044 -g4606,144:26492112,18508044 -g4606,144:28060388,18508044 -k4606,145:30919397,18508044:1663632 -k4606,145:32583029,18508044:1663632 -) -(4606,146:20753781,19385422:11829248,485622,102891 -h4606,145:20753781,19385422:0,0,0 -g4606,145:22786450,19385422 -g4606,145:24354726,19385422 -k4606,146:29066566,19385422:3516463 -k4606,146:32583029,19385422:3516463 -) -(4606,147:20753781,20262800:11829248,530548,102891 -h4606,146:20753781,20262800:0,0,0 -g4606,146:24446219,20262800 -k4606,147:29112313,20262800:3470717 -k4606,147:32583029,20262800:3470716 -) -(4606,148:20753781,21140179:11829248,530548,132808 -h4606,147:20753781,21140179:0,0,0 -g4606,147:24446219,21140179 -k4606,148:29112313,21140179:3470717 -k4606,148:32583029,21140179:3470716 -) -(4606,149:20753781,22017557:11829248,530548,132808 -h4606,148:20753781,22017557:0,0,0 -g4606,148:25691047,22017557 -k4606,149:29734727,22017557:2848303 -k4606,149:32583029,22017557:2848302 -) -(4606,150:20753781,22894935:11829248,530548,132808 -h4606,149:20753781,22894935:0,0,0 -g4606,149:24031277,22894935 -k4606,150:28895011,22894935:3688018 -k4606,150:32583029,22894935:3688018 -) -(4606,151:20753781,23772313:11829248,530548,132808 -h4606,150:20753781,23772313:0,0,0 -g4606,150:24861162,23772313 -g4606,150:26429438,23772313 -k4606,151:30094092,23772313:2488938 -k4606,151:32583029,23772313:2488937 -) -(4606,152:20753781,24649692:11829248,530548,102891 -h4606,151:20753781,24649692:0,0,0 -g4606,151:24446219,24649692 -g4606,151:26014495,24649692 -g4606,151:27582771,24649692 -g4606,151:29151047,24649692 -k4606,152:31454896,24649692:1128133 -k4606,152:32583029,24649692:1128133 -) -(4606,153:20753781,25527070:11829248,538806,102891 -h4606,152:20753781,25527070:0,0,0 -g4606,152:22786450,25527070 -k4606,153:28282428,25527070:4300601 -k4606,153:32583029,25527070:4300601 -) -(4606,154:20753781,26404448:11829248,530548,141066 -h4606,153:20753781,26404448:0,0,0 -g4606,153:23616334,26404448 -k4606,154:28687540,26404448:3895490 -k4606,154:32583029,26404448:3895489 -) -(4606,155:20753781,27281826:11829248,530548,141066 -h4606,154:20753781,27281826:0,0,0 -g4606,154:23616334,27281826 -k4606,155:28498141,27281826:4084889 -k4606,155:32583029,27281826:4084888 -) -(4606,156:20753781,28159204:11829248,538806,102891 -h4606,155:20753781,28159204:0,0,0 -g4606,155:23616334,28159204 -g4606,155:25184610,28159204 -k4606,156:29481508,28159204:3101521 -k4606,156:32583029,28159204:3101521 -) -(4606,157:20753781,29036583:11829248,538806,102891 -h4606,156:20753781,29036583:0,0,0 -g4606,156:24861162,29036583 -k4606,157:29319784,29036583:3263245 -k4606,157:32583029,29036583:3263245 -) -(4606,158:20753781,29913961:11829248,530548,102891 -h4606,157:20753781,29913961:0,0,0 -g4606,157:23201392,29913961 -g4606,157:24371209,29913961 -g4606,157:25541026,29913961 -g4606,157:27109302,29913961 -g4606,157:28677578,29913961 -k4606,158:31227992,29913961:1355037 -k4606,158:32583029,29913961:1355037 -) -(4606,159:20753781,30791339:11829248,530548,102891 -h4606,158:20753781,30791339:0,0,0 -g4606,158:24031277,30791339 -k4606,159:28904842,30791339:3678188 -k4606,159:32583029,30791339:3678187 -) -(4606,160:20753781,31668717:11829248,530548,102891 -h4606,159:20753781,31668717:0,0,0 -g4606,159:25276104,31668717 -g4606,159:26844380,31668717 -k4606,160:30311393,31668717:2271636 -k4606,160:32583029,31668717:2271636 -) -(4606,161:20753781,32546096:11829248,530548,102891 -h4606,160:20753781,32546096:0,0,0 -g4606,160:26105989,32546096 -k4606,161:29942198,32546096:2640832 -k4606,161:32583029,32546096:2640831 -) -(4606,162:20753781,33423474:11829248,530548,102891 -h4606,161:20753781,33423474:0,0,0 -g4606,161:24861162,33423474 -k4606,162:29319784,33423474:3263245 -k4606,162:32583029,33423474:3263245 -) -(4606,163:20753781,34300852:11829248,530548,102891 -h4606,162:20753781,34300852:0,0,0 -g4606,162:22786450,34300852 -k4606,163:28282428,34300852:4300601 -k4606,163:32583029,34300852:4300601 -) -(4606,164:20753781,35178230:11829248,530548,102891 -h4606,163:20753781,35178230:0,0,0 -g4606,163:24446219,35178230 -k4606,164:29112313,35178230:3470717 -k4606,164:32583029,35178230:3470716 -) -(4606,165:20753781,36055609:11829248,530548,102891 -h4606,164:20753781,36055609:0,0,0 -g4606,164:25691047,36055609 -k4606,165:29734727,36055609:2848303 -k4606,165:32583029,36055609:2848302 -) -(4606,166:20753781,36932987:11829248,530548,132808 -h4606,165:20753781,36932987:0,0,0 -g4606,165:24861162,36932987 -k4606,166:29319784,36932987:3263245 -k4606,166:32583029,36932987:3263245 -) -(4606,167:20753781,37810365:11829248,530548,102891 -h4606,166:20753781,37810365:0,0,0 -g4606,166:24031277,37810365 -k4606,167:28904842,37810365:3678188 -k4606,167:32583029,37810365:3678187 -) -(4606,168:20753781,38687743:11829248,530548,102891 -h4606,167:20753781,38687743:0,0,0 -g4606,167:24861162,38687743 -g4606,167:26429438,38687743 -k4606,168:30094092,38687743:2488938 -k4606,168:32583029,38687743:2488937 -) -(4606,169:20753781,39565121:11829248,530548,102891 -h4606,168:20753781,39565121:0,0,0 -g4606,168:23616334,39565121 -g4606,168:24786151,39565121 -g4606,168:27080566,39565121 -k4606,169:30230257,39565121:2352773 -k4606,169:32583029,39565121:2352772 -) -(4606,170:20753781,40442500:11829248,530548,102891 -h4606,169:20753781,40442500:0,0,0 -g4606,169:24446219,40442500 -k4606,170:28903253,40442500:3679777 -k4606,170:32583029,40442500:3679776 -) -(4606,171:20753781,41319878:11829248,538806,102891 -h4606,170:20753781,41319878:0,0,0 -g4606,170:27350816,41319878 -k4606,171:30564611,41319878:2018418 -k4606,171:32583029,41319878:2018418 -) -(4606,172:20753781,42197256:11829248,530548,132808 -h4606,171:20753781,42197256:0,0,0 -g4606,171:24031277,42197256 -k4606,172:28904842,42197256:3678188 -k4606,172:32583029,42197256:3678187 -) -(4606,173:20753781,43074634:11829248,530548,132808 -h4606,172:20753781,43074634:0,0,0 -g4606,172:23616334,43074634 -k4606,173:28687540,43074634:3895490 -k4606,173:32583029,43074634:3895489 -) -(4606,174:20753781,43952013:11829248,530548,102891 -h4606,173:20753781,43952013:0,0,0 -g4606,173:22786450,43952013 -k4606,174:28282428,43952013:4300601 -k4606,174:32583029,43952013:4300601 -) -(4606,175:20753781,44829391:11829248,538806,102891 -h4606,174:20753781,44829391:0,0,0 -g4606,174:24031277,44829391 -k4606,175:28904842,44829391:3678188 -k4606,175:32583029,44829391:3678187 -) -(4606,176:20753781,45706769:11829248,530548,132808 -h4606,175:20753781,45706769:0,0,0 -g4606,175:26105989,45706769 -k4606,176:29733138,45706769:2849892 -k4606,176:32583029,45706769:2849891 -) -] -(4606,183:32583029,45706769:0,355205,126483 -h4606,183:32583029,45706769:420741,355205,126483 -k4606,183:32583029,45706769:-420741 +g4610,183:6630773,4812305 +k4610,183:23552170,4812305:15726020 +g4610,183:27112085,4812305 +g4610,183:29010007,4812305 +g4610,183:29825274,4812305 +g4610,183:30438691,4812305 +) +) +] +[4610,183:6630773,45706769:25952256,40108032,0 +(4610,183:6630773,45706769:25952256,40108032,0 +(4610,183:6630773,45706769:0,0,0 +g4610,183:6630773,45706769 +) +[4610,183:6630773,45706769:25952256,40108032,0 +(4610,183:6630773,45706769:25952256,40108032,132808 +[4610,183:6630773,45706769:11829248,40108032,102891 +(4610,79:6630773,6254097:11829248,530548,102891 +h4610,78:6630773,6254097:0,0,0 +g4610,78:11568039,6254097 +k4610,79:15611719,6254097:2848303 +k4610,79:18460021,6254097:2848302 +) +(4610,80:6630773,7120191:11829248,530548,141066 +h4610,79:6630773,7120191:0,0,0 +g4610,79:10323211,7120191 +g4610,79:11891487,7120191 +g4610,79:13459763,7120191 +g4610,79:15028039,7120191 +g4610,79:16596315,7120191 +k4610,80:18125857,7120191:334165 +k4610,80:18460021,7120191:334164 +) +(4610,81:6630773,7986285:11829248,530548,102891 +h4610,80:6630773,7986285:0,0,0 +g4610,80:10323211,7986285 +g4610,80:11891487,7986285 +g4610,80:13459763,7986285 +g4610,80:15028039,7986285 +k4610,81:17331888,7986285:1128133 +k4610,81:18460021,7986285:1128133 +) +(4610,82:6630773,8852380:11829248,530548,102891 +h4610,81:6630773,8852380:0,0,0 +g4610,81:9493326,8852380 +k4610,82:14574362,8852380:3885659 +k4610,82:18460021,8852380:3885659 +) +(4610,83:6630773,9718474:11829248,530548,102891 +h4610,82:6630773,9718474:0,0,0 +g4610,82:10323211,9718474 +k4610,83:14989305,9718474:3470717 +k4610,83:18460021,9718474:3470716 +) +(4610,84:6630773,10584568:11829248,530548,102891 +h4610,83:6630773,10584568:0,0,0 +g4610,83:11982981,10584568 +g4610,83:13551257,10584568 +g4610,83:15119533,10584568 +k4610,84:17387466,10584568:1072556 +k4610,84:18460021,10584568:1072555 +) +(4610,88:6630773,12122926:11829248,530548,102891 +h4610,87:6630773,12122926:0,0,0 +g4610,87:11153096,12122926 +k4610,88:15404247,12122926:3055774 +k4610,88:18460021,12122926:3055774 +) +(4610,89:6630773,12989020:11829248,530548,102891 +h4610,88:6630773,12989020:0,0,0 +g4610,88:9078384,12989020 +g4610,88:10646660,12989020 +k4610,89:15141199,12989020:3318823 +k4610,89:18460021,12989020:3318822 +) +(4610,90:6630773,13855114:11829248,530548,102891 +h4610,89:6630773,13855114:0,0,0 +g4610,89:11568039,13855114 +k4610,90:15611719,13855114:2848303 +k4610,90:18460021,13855114:2848302 +) +(4610,91:6630773,14721208:11829248,530548,102891 +h4610,90:6630773,14721208:0,0,0 +g4610,90:11568039,14721208 +k4610,91:15611719,14721208:2848303 +k4610,91:18460021,14721208:2848302 +) +(4610,92:6630773,15587302:11829248,530548,132808 +h4610,91:6630773,15587302:0,0,0 +g4610,91:10323211,15587302 +k4610,92:14979474,15587302:3480547 +k4610,92:18460021,15587302:3480547 +) +(4610,93:6630773,16453397:11829248,530548,102891 +h4610,92:6630773,16453397:0,0,0 +g4610,92:9493326,16453397 +k4610,93:14564532,16453397:3895490 +k4610,93:18460021,16453397:3895489 +) +(4610,94:6630773,17319491:11829248,530548,102891 +h4610,93:6630773,17319491:0,0,0 +g4610,93:11982981,17319491 +k4610,94:15809359,17319491:2650662 +k4610,94:18460021,17319491:2650662 +) +(4610,95:6630773,18185585:11829248,530548,132808 +h4610,94:6630773,18185585:0,0,0 +g4610,94:13227808,18185585 +k4610,95:16441603,18185585:2018418 +k4610,95:18460021,18185585:2018418 +) +(4610,96:6630773,19051679:11829248,530548,132808 +h4610,95:6630773,19051679:0,0,0 +g4610,95:10323211,19051679 +k4610,96:14989305,19051679:3470717 +k4610,96:18460021,19051679:3470716 +) +(4610,97:6630773,19917774:11829248,530548,102891 +h4610,96:6630773,19917774:0,0,0 +g4610,96:9908269,19917774 +g4610,96:11476545,19917774 +g4610,96:13044821,19917774 +k4610,97:16350110,19917774:2109912 +k4610,97:18460021,19917774:2109911 +) +(4610,101:6630773,21456131:11829248,530548,102891 +h4610,100:6630773,21456131:0,0,0 +g4610,100:8248499,21456131 +g4610,100:9418316,21456131 +g4610,100:10588133,21456131 +g4610,100:11757950,21456131 +g4610,100:12927767,21456131 +k4610,101:16291583,21456131:2168439 +k4610,101:18460021,21456131:2168438 +) +(4610,102:6630773,22322225:11829248,530548,102891 +h4610,101:6630773,22322225:0,0,0 +g4610,101:8663442,22322225 +k4610,102:14159420,22322225:4300601 +k4610,102:18460021,22322225:4300601 +) +(4610,103:6630773,23188320:11829248,485622,102891 +h4610,102:6630773,23188320:0,0,0 +g4610,102:8663442,23188320 +k4610,103:14159420,23188320:4300601 +k4610,103:18460021,23188320:4300601 +) +(4610,104:6630773,24054414:11829248,530548,102891 +h4610,103:6630773,24054414:0,0,0 +g4610,103:9078384,24054414 +g4610,103:10248201,24054414 +g4610,103:11418018,24054414 +k4610,104:15526878,24054414:2933144 +k4610,104:18460021,24054414:2933143 +) +(4610,105:6630773,24920508:11829248,530548,102891 +h4610,104:6630773,24920508:0,0,0 +g4610,104:9908269,24920508 +g4610,104:11078086,24920508 +k4610,105:15366742,24920508:3093279 +k4610,105:18460021,24920508:3093279 +) +(4610,106:6630773,25786602:11829248,530548,141066 +h4610,105:6630773,25786602:0,0,0 +g4610,105:10738154,25786602 +k4610,106:14997547,25786602:3462475 +k4610,106:18460021,25786602:3462474 +) +(4610,107:6630773,26652696:11829248,530548,102891 +h4610,106:6630773,26652696:0,0,0 +g4610,106:10738154,26652696 +g4610,106:11907971,26652696 +g4610,106:13077788,26652696 +g4610,106:14247605,26652696 +g4610,106:15417422,26652696 +g4610,106:16587239,26652696 +k4610,107:18121319,26652696:338703 +k4610,107:18460021,26652696:338702 +) +(4610,108:6630773,27518791:11829248,530548,102891 +h4610,107:6630773,27518791:0,0,0 +g4610,107:11568039,27518791 +k4610,108:15402659,27518791:3057363 +k4610,108:18460021,27518791:3057362 +) +(4610,109:6630773,28384885:11829248,530548,102891 +h4610,108:6630773,28384885:0,0,0 +g4610,108:11153096,28384885 +k4610,109:15404247,28384885:3055774 +k4610,109:18460021,28384885:3055774 +) +(4610,110:6630773,29250979:11829248,530548,102891 +h4610,109:6630773,29250979:0,0,0 +g4610,109:9908269,29250979 +g4610,109:11078086,29250979 +g4610,109:12247903,29250979 +g4610,109:13816179,29250979 +g4610,109:15384455,29250979 +k4610,110:17519927,29250979:940095 +k4610,110:18460021,29250979:940094 +) +(4610,111:6630773,30117073:11829248,538806,102891 +h4610,110:6630773,30117073:0,0,0 +g4610,110:9493326,30117073 +g4610,110:11061602,30117073 +g4610,110:12629878,30117073 +k4610,111:16142638,30117073:2317383 +k4610,111:18460021,30117073:2317383 +) +(4610,112:6630773,30983167:11829248,538806,102891 +h4610,111:6630773,30983167:0,0,0 +g4610,111:12812866,30983167 +k4610,112:16224302,30983167:2235720 +k4610,112:18460021,30983167:2235719 +) +(4610,113:6630773,31849262:11829248,530548,141066 +h4610,112:6630773,31849262:0,0,0 +g4610,112:10738154,31849262 +k4610,113:15196776,31849262:3263245 +k4610,113:18460021,31849262:3263245 +) +(4610,114:6630773,32715356:11829248,530548,102891 +h4610,113:6630773,32715356:0,0,0 +g4610,113:11153096,32715356 +k4610,114:15404247,32715356:3055774 +k4610,114:18460021,32715356:3055774 +) +(4610,115:6630773,33581450:11829248,530548,102891 +h4610,114:6630773,33581450:0,0,0 +g4610,114:11153096,33581450 +g4610,114:12322913,33581450 +g4610,114:13891189,33581450 +k4610,115:16773294,33581450:1686728 +k4610,115:18460021,33581450:1686727 +) +(4610,116:6630773,34447544:11829248,530548,102891 +h4610,115:6630773,34447544:0,0,0 +g4610,115:11982981,34447544 +g4610,115:13551257,34447544 +k4610,116:16603328,34447544:1856694 +k4610,116:18460021,34447544:1856693 +) +(4610,117:6630773,35313638:11829248,530548,102891 +h4610,116:6630773,35313638:0,0,0 +g4610,116:10323211,35313638 +k4610,117:14989305,35313638:3470717 +k4610,117:18460021,35313638:3470716 +) +(4610,118:6630773,36179733:11829248,530548,102891 +h4610,117:6630773,36179733:0,0,0 +g4610,117:10738154,36179733 +k4610,118:15196776,36179733:3263245 +k4610,118:18460021,36179733:3263245 +) +(4610,119:6630773,37045827:11829248,530548,102891 +h4610,118:6630773,37045827:0,0,0 +g4610,118:10738154,37045827 +k4610,119:15196776,37045827:3263245 +k4610,119:18460021,37045827:3263245 +) +(4610,120:6630773,37911921:11829248,530548,102891 +h4610,119:6630773,37911921:0,0,0 +g4610,119:11568039,37911921 +k4610,120:15611719,37911921:2848303 +k4610,120:18460021,37911921:2848302 +) +(4610,121:6630773,38778015:11829248,530548,132808 +h4610,120:6630773,38778015:0,0,0 +g4610,120:9908269,38778015 +k4610,121:14582604,38778015:3877417 +k4610,121:18460021,38778015:3877417 +) +(4610,122:6630773,39644110:11829248,530548,102891 +h4610,121:6630773,39644110:0,0,0 +g4610,121:11153096,39644110 +k4610,122:15394417,39644110:3065605 +k4610,122:18460021,39644110:3065604 +) +(4610,123:6630773,40510204:11829248,530548,102891 +h4610,122:6630773,40510204:0,0,0 +g4610,122:12397924,40510204 +k4610,123:16026661,40510204:2433360 +k4610,123:18460021,40510204:2433360 +) +(4610,124:6630773,41376298:11829248,530548,102891 +h4610,123:6630773,41376298:0,0,0 +g4610,123:13227808,41376298 +k4610,124:16441603,41376298:2018418 +k4610,124:18460021,41376298:2018418 +) +(4610,125:6630773,42242392:11829248,530548,132808 +h4610,124:6630773,42242392:0,0,0 +g4610,124:11982981,42242392 +k4610,125:15819190,42242392:2640832 +k4610,125:18460021,42242392:2640831 +) +(4610,126:6630773,43108486:11829248,530548,102891 +h4610,125:6630773,43108486:0,0,0 +g4610,125:11568039,43108486 +k4610,126:15611719,43108486:2848303 +k4610,126:18460021,43108486:2848302 +) +(4610,127:6630773,43974581:11829248,530548,102891 +h4610,126:6630773,43974581:0,0,0 +g4610,126:11568039,43974581 +k4610,127:15601888,43974581:2858133 +k4610,127:18460021,43974581:2858133 +) +(4610,128:6630773,44840675:11829248,485622,102891 +h4610,127:6630773,44840675:0,0,0 +g4610,127:13227808,44840675 +k4610,128:16441603,44840675:2018418 +k4610,128:18460021,44840675:2018418 +) +(4610,129:6630773,45706769:11829248,530548,102891 +h4610,128:6630773,45706769:0,0,0 +g4610,128:14057693,45706769 +g4610,128:15625969,45706769 +k4610,129:17640684,45706769:819338 +k4610,129:18460021,45706769:819337 +) +] +k4610,183:19606901,45706769:1146880 +r4610,183:19606901,45706769:0,40240840,132808 +k4610,183:20753781,45706769:1146880 +[4610,183:20753781,45706769:11829248,40108032,132808 +(4610,130:20753781,6254097:11829248,538806,132808 +h4610,129:20753781,6254097:0,0,0 +g4610,129:26105989,6254097 +g4610,129:27674265,6254097 +k4610,130:30726336,6254097:1856694 +k4610,130:32583029,6254097:1856693 +) +(4610,131:20753781,7131475:11829248,530548,132808 +h4610,130:20753781,7131475:0,0,0 +g4610,130:26520932,7131475 +k4610,131:30901367,7131475:1681663 +k4610,131:32583029,7131475:1681662 +) +(4610,132:20753781,8008853:11829248,530548,102891 +h4610,131:20753781,8008853:0,0,0 +g4610,131:23201392,8008853 +k4610,132:29241597,8008853:3341433 +k4610,132:32583029,8008853:3341432 +) +(4610,133:20753781,8886232:11829248,530548,102891 +h4610,132:20753781,8886232:0,0,0 +g4610,132:25276104,8886232 +g4610,132:26844380,8886232 +k4610,133:30301563,8886232:2281467 +k4610,133:32583029,8886232:2281466 +) +(4610,134:20753781,9763610:11829248,530548,102891 +h4610,133:20753781,9763610:0,0,0 +g4610,133:23201392,9763610 +k4610,134:28290670,9763610:4292360 +k4610,134:32583029,9763610:4292359 +) +(4610,135:20753781,10640988:11829248,530548,102891 +h4610,134:20753781,10640988:0,0,0 +g4610,134:24446219,10640988 +k4610,135:29112313,10640988:3470717 +k4610,135:32583029,10640988:3470716 +) +(4610,136:20753781,11518366:11829248,530548,102891 +h4610,135:20753781,11518366:0,0,0 +g4610,135:24446219,11518366 +k4610,136:29112313,11518366:3470717 +k4610,136:32583029,11518366:3470716 +) +(4610,137:20753781,12395745:11829248,530548,132808 +h4610,136:20753781,12395745:0,0,0 +g4610,136:24861162,12395745 +k4610,137:29319784,12395745:3263245 +k4610,137:32583029,12395745:3263245 +) +(4610,138:20753781,13273123:11829248,530548,102891 +h4610,137:20753781,13273123:0,0,0 +g4610,137:24446219,13273123 +k4610,138:29112313,13273123:3470717 +k4610,138:32583029,13273123:3470716 +) +(4610,139:20753781,14150501:11829248,530548,102891 +h4610,138:20753781,14150501:0,0,0 +g4610,138:24446219,14150501 +k4610,139:29102482,14150501:3480547 +k4610,139:32583029,14150501:3480547 +) +(4610,143:20753781,15888208:11829248,530548,102891 +h4610,142:20753781,15888208:0,0,0 +g4610,142:23616334,15888208 +k4610,143:28697370,15888208:3885659 +k4610,143:32583029,15888208:3885659 +) +(4610,144:20753781,16765586:11829248,538806,102891 +h4610,143:20753781,16765586:0,0,0 +g4610,143:25276104,16765586 +g4610,143:26445921,16765586 +g4610,143:28014197,16765586 +k4610,144:30896302,16765586:1686728 +k4610,144:32583029,16765586:1686727 +) +(4610,145:20753781,17642964:11829248,538806,102891 +h4610,144:20753781,17642964:0,0,0 +g4610,144:26105989,17642964 +g4610,144:28400404,17642964 +g4610,144:29968680,17642964 +k4610,144:32583029,17642964:1331810 +) +(4610,145:23375221,18508044:9207808,485622,102891 +g4610,144:24923836,18508044 +g4610,144:26492112,18508044 +g4610,144:28060388,18508044 +k4610,145:30919397,18508044:1663632 +k4610,145:32583029,18508044:1663632 +) +(4610,146:20753781,19385422:11829248,485622,102891 +h4610,145:20753781,19385422:0,0,0 +g4610,145:22786450,19385422 +g4610,145:24354726,19385422 +k4610,146:29066566,19385422:3516463 +k4610,146:32583029,19385422:3516463 +) +(4610,147:20753781,20262800:11829248,530548,102891 +h4610,146:20753781,20262800:0,0,0 +g4610,146:24446219,20262800 +k4610,147:29112313,20262800:3470717 +k4610,147:32583029,20262800:3470716 +) +(4610,148:20753781,21140179:11829248,530548,132808 +h4610,147:20753781,21140179:0,0,0 +g4610,147:24446219,21140179 +k4610,148:29112313,21140179:3470717 +k4610,148:32583029,21140179:3470716 +) +(4610,149:20753781,22017557:11829248,530548,132808 +h4610,148:20753781,22017557:0,0,0 +g4610,148:25691047,22017557 +k4610,149:29734727,22017557:2848303 +k4610,149:32583029,22017557:2848302 +) +(4610,150:20753781,22894935:11829248,530548,132808 +h4610,149:20753781,22894935:0,0,0 +g4610,149:24031277,22894935 +k4610,150:28895011,22894935:3688018 +k4610,150:32583029,22894935:3688018 +) +(4610,151:20753781,23772313:11829248,530548,132808 +h4610,150:20753781,23772313:0,0,0 +g4610,150:24861162,23772313 +g4610,150:26429438,23772313 +k4610,151:30094092,23772313:2488938 +k4610,151:32583029,23772313:2488937 +) +(4610,152:20753781,24649692:11829248,530548,102891 +h4610,151:20753781,24649692:0,0,0 +g4610,151:24446219,24649692 +g4610,151:26014495,24649692 +g4610,151:27582771,24649692 +g4610,151:29151047,24649692 +k4610,152:31454896,24649692:1128133 +k4610,152:32583029,24649692:1128133 +) +(4610,153:20753781,25527070:11829248,538806,102891 +h4610,152:20753781,25527070:0,0,0 +g4610,152:22786450,25527070 +k4610,153:28282428,25527070:4300601 +k4610,153:32583029,25527070:4300601 +) +(4610,154:20753781,26404448:11829248,530548,141066 +h4610,153:20753781,26404448:0,0,0 +g4610,153:23616334,26404448 +k4610,154:28687540,26404448:3895490 +k4610,154:32583029,26404448:3895489 +) +(4610,155:20753781,27281826:11829248,530548,141066 +h4610,154:20753781,27281826:0,0,0 +g4610,154:23616334,27281826 +k4610,155:28498141,27281826:4084889 +k4610,155:32583029,27281826:4084888 +) +(4610,156:20753781,28159204:11829248,538806,102891 +h4610,155:20753781,28159204:0,0,0 +g4610,155:23616334,28159204 +g4610,155:25184610,28159204 +k4610,156:29481508,28159204:3101521 +k4610,156:32583029,28159204:3101521 +) +(4610,157:20753781,29036583:11829248,538806,102891 +h4610,156:20753781,29036583:0,0,0 +g4610,156:24861162,29036583 +k4610,157:29319784,29036583:3263245 +k4610,157:32583029,29036583:3263245 +) +(4610,158:20753781,29913961:11829248,530548,102891 +h4610,157:20753781,29913961:0,0,0 +g4610,157:23201392,29913961 +g4610,157:24371209,29913961 +g4610,157:25541026,29913961 +g4610,157:27109302,29913961 +g4610,157:28677578,29913961 +k4610,158:31227992,29913961:1355037 +k4610,158:32583029,29913961:1355037 +) +(4610,159:20753781,30791339:11829248,530548,102891 +h4610,158:20753781,30791339:0,0,0 +g4610,158:24031277,30791339 +k4610,159:28904842,30791339:3678188 +k4610,159:32583029,30791339:3678187 +) +(4610,160:20753781,31668717:11829248,530548,102891 +h4610,159:20753781,31668717:0,0,0 +g4610,159:25276104,31668717 +g4610,159:26844380,31668717 +k4610,160:30311393,31668717:2271636 +k4610,160:32583029,31668717:2271636 +) +(4610,161:20753781,32546096:11829248,530548,102891 +h4610,160:20753781,32546096:0,0,0 +g4610,160:26105989,32546096 +k4610,161:29942198,32546096:2640832 +k4610,161:32583029,32546096:2640831 +) +(4610,162:20753781,33423474:11829248,530548,102891 +h4610,161:20753781,33423474:0,0,0 +g4610,161:24861162,33423474 +k4610,162:29319784,33423474:3263245 +k4610,162:32583029,33423474:3263245 +) +(4610,163:20753781,34300852:11829248,530548,102891 +h4610,162:20753781,34300852:0,0,0 +g4610,162:22786450,34300852 +k4610,163:28282428,34300852:4300601 +k4610,163:32583029,34300852:4300601 +) +(4610,164:20753781,35178230:11829248,530548,102891 +h4610,163:20753781,35178230:0,0,0 +g4610,163:24446219,35178230 +k4610,164:29112313,35178230:3470717 +k4610,164:32583029,35178230:3470716 +) +(4610,165:20753781,36055609:11829248,530548,102891 +h4610,164:20753781,36055609:0,0,0 +g4610,164:25691047,36055609 +k4610,165:29734727,36055609:2848303 +k4610,165:32583029,36055609:2848302 +) +(4610,166:20753781,36932987:11829248,530548,132808 +h4610,165:20753781,36932987:0,0,0 +g4610,165:24861162,36932987 +k4610,166:29319784,36932987:3263245 +k4610,166:32583029,36932987:3263245 +) +(4610,167:20753781,37810365:11829248,530548,102891 +h4610,166:20753781,37810365:0,0,0 +g4610,166:24031277,37810365 +k4610,167:28904842,37810365:3678188 +k4610,167:32583029,37810365:3678187 +) +(4610,168:20753781,38687743:11829248,530548,102891 +h4610,167:20753781,38687743:0,0,0 +g4610,167:24861162,38687743 +g4610,167:26429438,38687743 +k4610,168:30094092,38687743:2488938 +k4610,168:32583029,38687743:2488937 +) +(4610,169:20753781,39565121:11829248,530548,102891 +h4610,168:20753781,39565121:0,0,0 +g4610,168:23616334,39565121 +g4610,168:24786151,39565121 +g4610,168:27080566,39565121 +k4610,169:30230257,39565121:2352773 +k4610,169:32583029,39565121:2352772 +) +(4610,170:20753781,40442500:11829248,530548,102891 +h4610,169:20753781,40442500:0,0,0 +g4610,169:24446219,40442500 +k4610,170:28903253,40442500:3679777 +k4610,170:32583029,40442500:3679776 +) +(4610,171:20753781,41319878:11829248,538806,102891 +h4610,170:20753781,41319878:0,0,0 +g4610,170:27350816,41319878 +k4610,171:30564611,41319878:2018418 +k4610,171:32583029,41319878:2018418 +) +(4610,172:20753781,42197256:11829248,530548,132808 +h4610,171:20753781,42197256:0,0,0 +g4610,171:24031277,42197256 +k4610,172:28904842,42197256:3678188 +k4610,172:32583029,42197256:3678187 +) +(4610,173:20753781,43074634:11829248,530548,132808 +h4610,172:20753781,43074634:0,0,0 +g4610,172:23616334,43074634 +k4610,173:28687540,43074634:3895490 +k4610,173:32583029,43074634:3895489 +) +(4610,174:20753781,43952013:11829248,530548,102891 +h4610,173:20753781,43952013:0,0,0 +g4610,173:22786450,43952013 +k4610,174:28282428,43952013:4300601 +k4610,174:32583029,43952013:4300601 +) +(4610,175:20753781,44829391:11829248,538806,102891 +h4610,174:20753781,44829391:0,0,0 +g4610,174:24031277,44829391 +k4610,175:28904842,44829391:3678188 +k4610,175:32583029,44829391:3678187 +) +(4610,176:20753781,45706769:11829248,530548,132808 +h4610,175:20753781,45706769:0,0,0 +g4610,175:26105989,45706769 +k4610,176:29733138,45706769:2849892 +k4610,176:32583029,45706769:2849891 +) +] +(4610,183:32583029,45706769:0,355205,126483 +h4610,183:32583029,45706769:420741,355205,126483 +k4610,183:32583029,45706769:-420741 ) ) ] -(4606,183:32583029,45706769:0,0,0 -g4606,183:32583029,45706769 +(4610,183:32583029,45706769:0,0,0 +g4610,183:32583029,45706769 ) ) ] -(4606,183:6630773,47279633:25952256,0,0 -h4606,183:6630773,47279633:25952256,0,0 +(4610,183:6630773,47279633:25952256,0,0 +h4610,183:6630773,47279633:25952256,0,0 ) ] -(4606,183:4262630,4025873:0,0,0 -[4606,183:-473656,4025873:0,0,0 -(4606,183:-473656,-710413:0,0,0 -(4606,183:-473656,-710413:0,0,0 -g4606,183:-473656,-710413 +(4610,183:4262630,4025873:0,0,0 +[4610,183:-473656,4025873:0,0,0 +(4610,183:-473656,-710413:0,0,0 +(4610,183:-473656,-710413:0,0,0 +g4610,183:-473656,-710413 ) -g4606,183:-473656,-710413 +g4610,183:-473656,-710413 ) ] ) ] -!22024 -}447 +!22050 +}448 !12 -{448 -[4606,276:4262630,47279633:28320399,43253760,0 -(4606,276:4262630,4025873:0,0,0 -[4606,276:-473656,4025873:0,0,0 -(4606,276:-473656,-710413:0,0,0 -(4606,276:-473656,-644877:0,0,0 -k4606,276:-473656,-644877:-65536 +{449 +[4610,276:4262630,47279633:28320399,43253760,0 +(4610,276:4262630,4025873:0,0,0 +[4610,276:-473656,4025873:0,0,0 +(4610,276:-473656,-710413:0,0,0 +(4610,276:-473656,-644877:0,0,0 +k4610,276:-473656,-644877:-65536 ) -(4606,276:-473656,4736287:0,0,0 -k4606,276:-473656,4736287:5209943 +(4610,276:-473656,4736287:0,0,0 +k4610,276:-473656,4736287:5209943 ) -g4606,276:-473656,-710413 +g4610,276:-473656,-710413 ) ] ) -[4606,276:6630773,47279633:25952256,43253760,0 -[4606,276:6630773,4812305:25952256,786432,0 -(4606,276:6630773,4812305:25952256,513147,126483 -(4606,276:6630773,4812305:25952256,513147,126483 -g4606,276:3078558,4812305 -[4606,276:3078558,4812305:0,0,0 -(4606,276:3078558,2439708:0,1703936,0 -k4606,276:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,276:2537886,2439708:1179648,16384,0 +[4610,276:6630773,47279633:25952256,43253760,0 +[4610,276:6630773,4812305:25952256,786432,0 +(4610,276:6630773,4812305:25952256,513147,126483 +(4610,276:6630773,4812305:25952256,513147,126483 +g4610,276:3078558,4812305 +[4610,276:3078558,4812305:0,0,0 +(4610,276:3078558,2439708:0,1703936,0 +k4610,276:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,276:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,276:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,276:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,276:3078558,4812305:0,0,0 -(4606,276:3078558,2439708:0,1703936,0 -g4606,276:29030814,2439708 -g4606,276:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,276:36151628,1915420:16384,1179648,0 +[4610,276:3078558,4812305:0,0,0 +(4610,276:3078558,2439708:0,1703936,0 +g4610,276:29030814,2439708 +g4610,276:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,276:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,276:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,276:37855564,2439708:1179648,16384,0 ) ) -k4606,276:3078556,2439708:-34777008 +k4610,276:3078556,2439708:-34777008 ) ] -[4606,276:3078558,4812305:0,0,0 -(4606,276:3078558,49800853:0,16384,2228224 -k4606,276:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,276:2537886,49800853:1179648,16384,0 +[4610,276:3078558,4812305:0,0,0 +(4610,276:3078558,49800853:0,16384,2228224 +k4610,276:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,276:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,276:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,276:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,276:3078558,4812305:0,0,0 -(4606,276:3078558,49800853:0,16384,2228224 -g4606,276:29030814,49800853 -g4606,276:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,276:36151628,51504789:16384,1179648,0 +[4610,276:3078558,4812305:0,0,0 +(4610,276:3078558,49800853:0,16384,2228224 +g4610,276:29030814,49800853 +g4610,276:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,276:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,276:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,276:37855564,49800853:1179648,16384,0 ) ) -k4606,276:3078556,49800853:-34777008 +k4610,276:3078556,49800853:-34777008 ) ] -g4606,276:6630773,4812305 -g4606,276:6630773,4812305 -g4606,276:10190688,4812305 -g4606,276:12088610,4812305 -g4606,276:12903877,4812305 -g4606,276:13517294,4812305 -g4606,276:15860861,4812305 -k4606,276:31387652,4812305:15526791 +g4610,276:6630773,4812305 +g4610,276:6630773,4812305 +g4610,276:10190688,4812305 +g4610,276:12088610,4812305 +g4610,276:12903877,4812305 +g4610,276:13517294,4812305 +g4610,276:15860861,4812305 +k4610,276:31387652,4812305:15526791 ) ) ] -[4606,276:6630773,45706769:25952256,40108032,0 -(4606,276:6630773,45706769:25952256,40108032,0 -(4606,276:6630773,45706769:0,0,0 -g4606,276:6630773,45706769 +[4610,276:6630773,45706769:25952256,40108032,0 +(4610,276:6630773,45706769:25952256,40108032,0 +(4610,276:6630773,45706769:0,0,0 +g4610,276:6630773,45706769 ) -[4606,276:6630773,45706769:25952256,40108032,0 -(4606,276:6630773,45706769:25952256,40108032,141066 -[4606,276:6630773,45706769:11829248,40108032,141066 -(4606,180:6630773,6254097:11829248,530548,102891 -h4606,179:6630773,6254097:0,0,0 -g4606,179:9493326,6254097 -k4606,180:14564532,6254097:3895490 -k4606,180:18460021,6254097:3895489 +[4610,276:6630773,45706769:25952256,40108032,0 +(4610,276:6630773,45706769:25952256,40108032,141066 +[4610,276:6630773,45706769:11829248,40108032,141066 +(4610,180:6630773,6254097:11829248,530548,102891 +h4610,179:6630773,6254097:0,0,0 +g4610,179:9493326,6254097 +k4610,180:14564532,6254097:3895490 +k4610,180:18460021,6254097:3895489 ) -(4606,181:6630773,7131702:11829248,538806,102891 -h4606,180:6630773,7131702:0,0,0 -g4606,180:10738154,7131702 -k4606,181:15186946,7131702:3273076 -k4606,181:18460021,7131702:3273075 -) -(4606,182:6630773,8009306:11829248,530548,102891 -h4606,181:6630773,8009306:0,0,0 -g4606,181:11568039,8009306 -k4606,182:15601888,8009306:2858133 -k4606,182:18460021,8009306:2858133 -) -(4606,183:6630773,8886911:11829248,530548,102891 -h4606,182:6630773,8886911:0,0,0 -g4606,182:12397924,8886911 -k4606,183:16016831,8886911:2443191 -k4606,183:18460021,8886911:2443190 -) -(4606,184:6630773,9764515:11829248,530548,102891 -h4606,183:6630773,9764515:0,0,0 -g4606,183:10323211,9764515 -g4606,183:11891487,9764515 -k4606,184:15773443,9764515:2686579 -k4606,184:18460021,9764515:2686578 -) -(4606,185:6630773,10642120:11829248,530548,102891 -h4606,184:6630773,10642120:0,0,0 -g4606,184:12812866,10642120 -k4606,185:16224302,10642120:2235720 -k4606,185:18460021,10642120:2235719 -) -(4606,186:6630773,11519724:11829248,530548,102891 -h4606,185:6630773,11519724:0,0,0 -g4606,185:10323211,11519724 -k4606,186:14979474,11519724:3480547 -k4606,186:18460021,11519724:3480547 -) -(4606,187:6630773,12397329:11829248,530548,132808 -h4606,186:6630773,12397329:0,0,0 -g4606,186:9078384,12397329 -k4606,187:14167662,12397329:4292360 -k4606,187:18460021,12397329:4292359 -) -(4606,188:6630773,13274933:11829248,530548,132808 -h4606,187:6630773,13274933:0,0,0 -g4606,187:13227808,13274933 -g4606,187:14796084,13274933 -k4606,188:17225741,13274933:1234280 -k4606,188:18460021,13274933:1234280 -) -(4606,189:6630773,14152538:11829248,530548,132808 -h4606,188:6630773,14152538:0,0,0 -g4606,188:11568039,14152538 -k4606,189:15611719,14152538:2848303 -k4606,189:18460021,14152538:2848302 -) -(4606,190:6630773,15030143:11829248,530548,132808 -h4606,189:6630773,15030143:0,0,0 -g4606,189:11982981,15030143 -k4606,190:16570887,15030143:1889134 -k4606,190:18460021,15030143:1889134 -) -(4606,194:6630773,16771847:11829248,538806,141066 -h4606,193:6630773,16771847:0,0,0 -g4606,193:11982981,16771847 -g4606,193:13551257,16771847 -k4606,194:16603328,16771847:1856694 -k4606,194:18460021,16771847:1856693 -) -(4606,195:6630773,17649452:11829248,538806,132808 -h4606,194:6630773,17649452:0,0,0 -g4606,194:11982981,17649452 -g4606,194:13551257,17649452 -g4606,194:15119533,17649452 -k4606,195:17387466,17649452:1072556 -k4606,195:18460021,17649452:1072555 -) -(4606,196:6630773,18527057:11829248,538806,102891 -h4606,195:6630773,18527057:0,0,0 -g4606,195:9493326,18527057 -k4606,196:14375133,18527057:4084889 -k4606,196:18460021,18527057:4084888 -) -(4606,197:6630773,19404661:11829248,538806,102891 -h4606,196:6630773,19404661:0,0,0 -g4606,196:10323211,19404661 -g4606,196:12617626,19404661 -k4606,197:16136512,19404661:2323509 -k4606,197:18460021,19404661:2323509 -) -(4606,198:6630773,20282266:11829248,538806,102891 -h4606,197:6630773,20282266:0,0,0 -g4606,197:11568039,20282266 -k4606,198:15611719,20282266:2848303 -k4606,198:18460021,20282266:2848302 -) -(4606,199:6630773,21159870:11829248,538806,132808 -h4606,198:6630773,21159870:0,0,0 -g4606,198:11568039,21159870 -k4606,199:15611719,21159870:2848303 -k4606,199:18460021,21159870:2848302 -) -(4606,200:6630773,22037475:11829248,538806,102891 -h4606,199:6630773,22037475:0,0,0 -g4606,199:12397924,22037475 -k4606,200:16026661,22037475:2433360 -k4606,200:18460021,22037475:2433360 -) -(4606,201:6630773,22915079:11829248,538806,102891 -h4606,200:6630773,22915079:0,0,0 -g4606,200:10323211,22915079 -k4606,201:14989305,22915079:3470717 -k4606,201:18460021,22915079:3470716 -) -(4606,202:6630773,23792684:11829248,538806,102891 -h4606,201:6630773,23792684:0,0,0 -g4606,201:10323211,23792684 -g4606,201:11891487,23792684 -k4606,202:15763612,23792684:2696409 -k4606,202:18460021,23792684:2696409 -) -(4606,203:6630773,24670288:11829248,538806,102891 -h4606,202:6630773,24670288:0,0,0 -g4606,202:13227808,24670288 -k4606,203:16431773,24670288:2028249 -k4606,203:18460021,24670288:2028248 -) -(4606,204:6630773,25547893:11829248,538806,102891 -h4606,203:6630773,25547893:0,0,0 -g4606,203:9078384,25547893 -k4606,204:14357061,25547893:4102961 -k4606,204:18460021,25547893:4102960 -) -(4606,205:6630773,26425498:11829248,538806,102891 -h4606,204:6630773,26425498:0,0,0 -g4606,204:8248499,26425498 -g4606,204:11339832,26425498 -g4606,204:12908108,26425498 -g4606,204:14476384,26425498 -g4606,204:16044660,26425498 -k4606,205:17840199,26425498:619823 -k4606,205:18460021,26425498:619822 -) -(4606,206:6630773,27303102:11829248,538806,102891 -h4606,205:6630773,27303102:0,0,0 -g4606,205:10323211,27303102 -g4606,205:11493028,27303102 -g4606,205:12662845,27303102 -k4606,206:16159122,27303102:2300900 -k4606,206:18460021,27303102:2300899 -) -(4606,207:6630773,28180707:11829248,538806,102891 -h4606,206:6630773,28180707:0,0,0 -g4606,206:9908269,28180707 -g4606,206:11476545,28180707 -k4606,207:15556141,28180707:2903880 -k4606,207:18460021,28180707:2903880 -) -(4606,208:6630773,29058311:11829248,538806,102891 -h4606,207:6630773,29058311:0,0,0 -g4606,207:11153096,29058311 -k4606,208:15404247,29058311:3055774 -k4606,208:18460021,29058311:3055774 -) -(4606,209:6630773,29935916:11829248,538806,141066 -h4606,208:6630773,29935916:0,0,0 -g4606,208:11568039,29935916 -k4606,209:15601888,29935916:2858133 -k4606,209:18460021,29935916:2858133 -) -(4606,210:6630773,30813520:11829248,538806,102891 -h4606,209:6630773,30813520:0,0,0 -g4606,209:11153096,30813520 -g4606,209:12721372,30813520 -k4606,210:16188385,30813520:2271636 -k4606,210:18460021,30813520:2271636 -) -(4606,214:6630773,32555225:11829248,530548,141066 -h4606,213:6630773,32555225:0,0,0 -g4606,213:10323211,32555225 -k4606,214:14989305,32555225:3470717 -k4606,214:18460021,32555225:3470716 -) -(4606,215:6630773,33432830:11829248,530548,141066 -h4606,214:6630773,33432830:0,0,0 -g4606,214:12397924,33432830 -g4606,214:13966200,33432830 -k4606,215:16810799,33432830:1649222 -k4606,215:18460021,33432830:1649222 -) -(4606,216:6630773,34310434:11829248,530548,141066 -h4606,215:6630773,34310434:0,0,0 -g4606,215:11568039,34310434 -g4606,215:13136315,34310434 -k4606,216:16395857,34310434:2064165 -k4606,216:18460021,34310434:2064164 -) -(4606,217:6630773,35188039:11829248,530548,141066 -h4606,216:6630773,35188039:0,0,0 -g4606,216:11153096,35188039 -g4606,216:12721372,35188039 -g4606,216:14289648,35188039 -g4606,216:15857924,35188039 -k4606,216:18460021,35188039:1319558 -) -(4606,217:9252213,36053119:9207808,485622,11795 -k4606,217:14443975,36053119:4016046 -k4606,217:18460021,36053119:4016046 -) -(4606,218:6630773,36930724:11829248,530548,141066 -h4606,217:6630773,36930724:0,0,0 -g4606,217:11982981,36930724 -k4606,218:15819190,36930724:2640832 -k4606,218:18460021,36930724:2640831 -) -(4606,219:6630773,37808328:11829248,530548,141066 -h4606,218:6630773,37808328:0,0,0 -g4606,218:12812866,37808328 -k4606,219:16234132,37808328:2225889 -k4606,219:18460021,37808328:2225889 -) -(4606,220:6630773,38685933:11829248,530548,141066 -h4606,219:6630773,38685933:0,0,0 -g4606,219:11153096,38685933 -g4606,219:12721372,38685933 -g4606,219:14289648,38685933 -g4606,219:15857924,38685933 -k4606,220:17756661,38685933:703360 -k4606,220:18460021,38685933:703360 -) -(4606,221:6630773,39563537:11829248,530548,141066 -h4606,220:6630773,39563537:0,0,0 -g4606,220:11982981,39563537 -g4606,220:13551257,39563537 -k4606,221:16603328,39563537:1856694 -k4606,221:18460021,39563537:1856693 -) -(4606,222:6630773,40441142:11829248,530548,141066 -h4606,221:6630773,40441142:0,0,0 -g4606,221:11982981,40441142 -k4606,222:15819190,40441142:2640832 -k4606,222:18460021,40441142:2640831 -) -(4606,223:6630773,41318746:11829248,530548,141066 -h4606,222:6630773,41318746:0,0,0 -g4606,222:12812866,41318746 -k4606,223:16234132,41318746:2225889 -k4606,223:18460021,41318746:2225889 -) -(4606,224:6630773,42196351:11829248,530548,141066 -h4606,223:6630773,42196351:0,0,0 -g4606,223:13227808,42196351 -g4606,223:14796084,42196351 -k4606,224:17225741,42196351:1234280 -k4606,224:18460021,42196351:1234280 -) -(4606,225:6630773,43073955:11829248,530548,141066 -h4606,224:6630773,43073955:0,0,0 -g4606,224:11568039,43073955 -g4606,224:13136315,43073955 -g4606,224:14704591,43073955 -k4606,225:17170164,43073955:1289857 -k4606,225:18460021,43073955:1289857 -) -(4606,226:6630773,43951560:11829248,530548,141066 -h4606,225:6630773,43951560:0,0,0 -g4606,225:11153096,43951560 -k4606,226:15404247,43951560:3055774 -k4606,226:18460021,43951560:3055774 -) -(4606,227:6630773,44829164:11829248,530548,141066 -h4606,226:6630773,44829164:0,0,0 -g4606,226:13642751,44829164 -g4606,226:15211027,44829164 -k4606,227:17433213,44829164:1026809 -k4606,227:18460021,44829164:1026808 -) -(4606,228:6630773,45706769:11829248,530548,141066 -h4606,227:6630773,45706769:0,0,0 -g4606,227:11982981,45706769 -g4606,227:13551257,45706769 -g4606,227:15119533,45706769 -k4606,228:17377635,45706769:1082386 -k4606,228:18460021,45706769:1082386 -) -] -k4606,276:19606901,45706769:1146880 -r4606,276:19606901,45706769:0,40249098,141066 -k4606,276:20753781,45706769:1146880 -[4606,276:20753781,45706769:11829248,40108032,141066 -(4606,229:20753781,6254097:11829248,530548,141066 -h4606,228:20753781,6254097:0,0,0 -g4606,228:26105989,6254097 -g4606,228:29197322,6254097 -g4606,228:30765598,6254097 -k4606,228:32583029,6254097:534892 -) -(4606,229:23375221,7119177:9207808,485622,11795 -k4606,229:28576814,7119177:4006216 -k4606,229:32583029,7119177:4006215 -) -(4606,230:20753781,7997695:11829248,530548,141066 -h4606,229:20753781,7997695:0,0,0 -g4606,229:28595643,7997695 -k4606,230:31187025,7997695:1396005 -k4606,230:32583029,7997695:1396004 -) -(4606,231:20753781,8876212:11829248,530548,141066 -h4606,230:20753781,8876212:0,0,0 -g4606,230:25691047,8876212 -g4606,230:27259323,8876212 -g4606,230:28827599,8876212 -g4606,230:30395875,8876212 -k4606,230:32583029,8876212:904615 -) -(4606,231:23375221,9741292:9207808,485622,102891 -g4606,230:24943497,9741292 -g4606,230:26511773,9741292 -k4606,231:30135259,9741292:2447770 -k4606,231:32583029,9741292:2447770 -) -(4606,232:20753781,10619810:11829248,530548,141066 -h4606,231:20753781,10619810:0,0,0 -g4606,231:27765759,10619810 -k4606,232:30772083,10619810:1810947 -k4606,232:32583029,10619810:1810946 -) -(4606,233:20753781,11498328:11829248,530548,141066 -h4606,232:20753781,11498328:0,0,0 -g4606,232:25691047,11498328 -g4606,232:27259323,11498328 -k4606,233:30518865,11498328:2064165 -k4606,233:32583029,11498328:2064164 -) -(4606,234:20753781,12376846:11829248,530548,141066 -h4606,233:20753781,12376846:0,0,0 -g4606,233:25691047,12376846 -k4606,234:30496255,12376846:2086775 -k4606,234:32583029,12376846:2086774 -) -(4606,236:20753781,13255363:11829248,530548,141066 -h4606,234:20753781,13255363:0,0,0 -g4606,234:26105989,13255363 -g4606,234:27674265,13255363 -g4606,234:29242541,13255363 -g4606,234:30810817,13255363 -k4606,234:32583029,13255363:489673 -) -(4606,236:23375221,14120443:9207808,485622,102891 -g4606,234:24943497,14120443 -g4606,234:26511773,14120443 -g4606,234:28080049,14120443 -g4606,235:29648325,14120443 -g4606,235:31216601,14120443 -k4606,235:32583029,14120443:83889 -) -(4606,236:23375221,14985523:9207808,485622,102891 -g4606,235:24943497,14985523 -g4606,235:26511773,14985523 -g4606,235:28080049,14985523 -k4606,236:30929228,14985523:1653802 -k4606,236:32583029,14985523:1653801 -) -(4606,237:20753781,15864041:11829248,530548,141066 -h4606,236:20753781,15864041:0,0,0 -g4606,236:26935874,15864041 -g4606,236:28504150,15864041 -k4606,237:31141278,15864041:1441751 -k4606,237:32583029,15864041:1441751 -) -(4606,238:20753781,16742559:11829248,530548,141066 -h4606,237:20753781,16742559:0,0,0 -k4606,237:28175113,16742559:193641 -k4606,237:29737802,16742559:193642 -k4606,237:31300490,16742559:193641 -k4606,237:32583029,16742559:0 -) -(4606,238:23375221,17607639:9207808,485622,11795 -k4606,238:28576814,17607639:4006216 -k4606,238:32583029,17607639:4006215 -) -(4606,239:20753781,18486157:11829248,530548,141066 -h4606,238:20753781,18486157:0,0,0 -g4606,238:26935874,18486157 -k4606,239:30347310,18486157:2235720 -k4606,239:32583029,18486157:2235719 -) -(4606,240:20753781,19364674:11829248,530548,141066 -h4606,239:20753781,19364674:0,0,0 -g4606,239:26105989,19364674 -k4606,240:29942198,19364674:2640832 -k4606,240:32583029,19364674:2640831 -) -(4606,241:20753781,20243192:11829248,530548,141066 -h4606,240:20753781,20243192:0,0,0 -g4606,240:25691047,20243192 -g4606,240:27259323,20243192 -k4606,241:30518865,20243192:2064165 -k4606,241:32583029,20243192:2064164 -) -(4606,242:20753781,21121710:11829248,530548,141066 -h4606,241:20753781,21121710:0,0,0 -g4606,241:26520932,21121710 -g4606,241:28089208,21121710 -k4606,242:30933807,21121710:1649222 -k4606,242:32583029,21121710:1649222 -) -(4606,243:20753781,22000228:11829248,530548,141066 -h4606,242:20753781,22000228:0,0,0 -g4606,242:25276104,22000228 -k4606,243:29527255,22000228:3055774 -k4606,243:32583029,22000228:3055774 -) -(4606,244:20753781,22878745:11829248,530548,141066 -h4606,243:20753781,22878745:0,0,0 -g4606,243:26935874,22878745 -g4606,243:28504150,22878745 -k4606,244:31141278,22878745:1441751 -k4606,244:32583029,22878745:1441751 -) -(4606,245:20753781,23757263:11829248,538806,141066 -h4606,244:20753781,23757263:0,0,0 -g4606,244:24861162,23757263 -k4606,245:29319784,23757263:3263245 -k4606,245:32583029,23757263:3263245 -) -(4606,246:20753781,24635781:11829248,538806,141066 -h4606,245:20753781,24635781:0,0,0 -g4606,245:27350816,24635781 -k4606,246:30564611,24635781:2018418 -k4606,246:32583029,24635781:2018418 -) -(4606,247:20753781,25514299:11829248,538806,141066 -h4606,246:20753781,25514299:0,0,0 -g4606,246:26935874,25514299 -k4606,247:30357140,25514299:2225889 -k4606,247:32583029,25514299:2225889 -) -(4606,248:20753781,26392816:11829248,530548,141066 -h4606,247:20753781,26392816:0,0,0 -g4606,247:26520932,26392816 -g4606,247:28089208,26392816 -g4606,247:29657484,26392816 -k4606,248:31717945,26392816:865084 -k4606,248:32583029,26392816:865084 -) -(4606,249:20753781,27271334:11829248,530548,141066 -h4606,248:20753781,27271334:0,0,0 -g4606,248:26105989,27271334 -k4606,249:29942198,27271334:2640832 -k4606,249:32583029,27271334:2640831 -) -(4606,250:20753781,28149852:11829248,530548,141066 -h4606,249:20753781,28149852:0,0,0 -g4606,249:25691047,28149852 -k4606,250:29724896,28149852:2858133 -k4606,250:32583029,28149852:2858133 -) -(4606,251:20753781,29028370:11829248,530548,141066 -h4606,250:20753781,29028370:0,0,0 -g4606,250:26105989,29028370 -g4606,250:27674265,29028370 -k4606,251:30726336,29028370:1856694 -k4606,251:32583029,29028370:1856693 -) -(4606,252:20753781,29906887:11829248,530548,141066 -h4606,251:20753781,29906887:0,0,0 -g4606,251:25691047,29906887 -g4606,251:28782380,29906887 -g4606,251:30350656,29906887 -k4606,251:32583029,29906887:949834 -) -(4606,252:23375221,30771967:9207808,485622,11795 -k4606,252:28576814,30771967:4006216 -k4606,252:32583029,30771967:4006215 -) -(4606,253:20753781,31650485:11829248,530548,141066 -h4606,252:20753781,31650485:0,0,0 -g4606,252:28180701,31650485 -k4606,253:30979554,31650485:1603476 -k4606,253:32583029,31650485:1603475 -) -(4606,254:20753781,32529003:11829248,530548,141066 -h4606,253:20753781,32529003:0,0,0 -g4606,253:25691047,32529003 -g4606,253:27259323,32529003 -k4606,254:30518865,32529003:2064165 -k4606,254:32583029,32529003:2064164 -) -(4606,255:20753781,33407521:11829248,530548,141066 -h4606,254:20753781,33407521:0,0,0 -g4606,254:26520932,33407521 -k4606,255:30149669,33407521:2433360 -k4606,255:32583029,33407521:2433360 -) -(4606,256:20753781,34286038:11829248,530548,141066 -h4606,255:20753781,34286038:0,0,0 -g4606,255:26105989,34286038 -g4606,255:27674265,34286038 -g4606,255:29242541,34286038 -k4606,256:31500643,34286038:1082386 -k4606,256:32583029,34286038:1082386 -) -(4606,257:20753781,35164556:11829248,530548,141066 -h4606,256:20753781,35164556:0,0,0 -g4606,256:23201392,35164556 -k4606,257:28480069,35164556:4102961 -k4606,257:32583029,35164556:4102960 -) -(4606,258:20753781,36043074:11829248,530548,141066 -h4606,257:20753781,36043074:0,0,0 -g4606,257:26520932,36043074 -k4606,258:30149669,36043074:2433360 -k4606,258:32583029,36043074:2433360 -) -(4606,259:20753781,36921592:11829248,530548,141066 -h4606,258:20753781,36921592:0,0,0 -g4606,258:24861162,36921592 -g4606,258:26429438,36921592 -k4606,259:30103922,36921592:2479107 -k4606,259:32583029,36921592:2479107 -) -(4606,260:20753781,37800109:11829248,530548,141066 -h4606,259:20753781,37800109:0,0,0 -g4606,259:26105989,37800109 -k4606,260:29932367,37800109:2650662 -k4606,260:32583029,37800109:2650662 -) -(4606,261:20753781,38678627:11829248,530548,141066 -h4606,260:20753781,38678627:0,0,0 -g4606,260:24031277,38678627 -k4606,261:28904842,38678627:3678188 -k4606,261:32583029,38678627:3678187 -) -(4606,262:20753781,39557145:11829248,530548,141066 -h4606,261:20753781,39557145:0,0,0 -g4606,261:24446219,39557145 -g4606,261:26014495,39557145 -g4606,261:27582771,39557145 -k4606,262:30670758,39557145:1912271 -k4606,262:32583029,39557145:1912271 -) -(4606,263:20753781,40435663:11829248,530548,141066 -h4606,262:20753781,40435663:0,0,0 -g4606,262:26105989,40435663 -k4606,263:29942198,40435663:2640832 -k4606,263:32583029,40435663:2640831 -) -(4606,264:20753781,41314180:11829248,530548,141066 -h4606,263:20753781,41314180:0,0,0 -g4606,263:24861162,41314180 -k4606,264:29319784,41314180:3263245 -k4606,264:32583029,41314180:3263245 -) -(4606,265:20753781,42192698:11829248,530548,141066 -h4606,264:20753781,42192698:0,0,0 -g4606,264:22786450,42192698 -k4606,265:28083199,42192698:4499831 -k4606,265:32583029,42192698:4499830 -) -(4606,266:20753781,43071216:11829248,530548,141066 -h4606,265:20753781,43071216:0,0,0 -g4606,265:23616334,43071216 -k4606,266:28697370,43071216:3885659 -k4606,266:32583029,43071216:3885659 -) -(4606,267:20753781,43949734:11829248,530548,141066 -h4606,266:20753781,43949734:0,0,0 -g4606,266:23201392,43949734 -g4606,266:24769668,43949734 -k4606,267:29274037,43949734:3308992 -k4606,267:32583029,43949734:3308992 -) -(4606,268:20753781,44828251:11829248,530548,141066 -h4606,267:20753781,44828251:0,0,0 -g4606,267:23616334,44828251 -k4606,268:28498141,44828251:4084889 -k4606,268:32583029,44828251:4084888 -) -(4606,269:20753781,45706769:11829248,530548,141066 -h4606,268:20753781,45706769:0,0,0 -g4606,268:24031277,45706769 -k4606,269:28705612,45706769:3877417 -k4606,269:32583029,45706769:3877417 -) -] -(4606,276:32583029,45706769:0,355205,126483 -h4606,276:32583029,45706769:420741,355205,126483 -k4606,276:32583029,45706769:-420741 -) -) -] -(4606,276:32583029,45706769:0,0,0 -g4606,276:32583029,45706769 +(4610,181:6630773,7131702:11829248,538806,102891 +h4610,180:6630773,7131702:0,0,0 +g4610,180:10738154,7131702 +k4610,181:15186946,7131702:3273076 +k4610,181:18460021,7131702:3273075 +) +(4610,182:6630773,8009306:11829248,530548,102891 +h4610,181:6630773,8009306:0,0,0 +g4610,181:11568039,8009306 +k4610,182:15601888,8009306:2858133 +k4610,182:18460021,8009306:2858133 +) +(4610,183:6630773,8886911:11829248,530548,102891 +h4610,182:6630773,8886911:0,0,0 +g4610,182:12397924,8886911 +k4610,183:16016831,8886911:2443191 +k4610,183:18460021,8886911:2443190 +) +(4610,184:6630773,9764515:11829248,530548,102891 +h4610,183:6630773,9764515:0,0,0 +g4610,183:10323211,9764515 +g4610,183:11891487,9764515 +k4610,184:15773443,9764515:2686579 +k4610,184:18460021,9764515:2686578 +) +(4610,185:6630773,10642120:11829248,530548,102891 +h4610,184:6630773,10642120:0,0,0 +g4610,184:12812866,10642120 +k4610,185:16224302,10642120:2235720 +k4610,185:18460021,10642120:2235719 +) +(4610,186:6630773,11519724:11829248,530548,102891 +h4610,185:6630773,11519724:0,0,0 +g4610,185:10323211,11519724 +k4610,186:14979474,11519724:3480547 +k4610,186:18460021,11519724:3480547 +) +(4610,187:6630773,12397329:11829248,530548,132808 +h4610,186:6630773,12397329:0,0,0 +g4610,186:9078384,12397329 +k4610,187:14167662,12397329:4292360 +k4610,187:18460021,12397329:4292359 +) +(4610,188:6630773,13274933:11829248,530548,132808 +h4610,187:6630773,13274933:0,0,0 +g4610,187:13227808,13274933 +g4610,187:14796084,13274933 +k4610,188:17225741,13274933:1234280 +k4610,188:18460021,13274933:1234280 +) +(4610,189:6630773,14152538:11829248,530548,132808 +h4610,188:6630773,14152538:0,0,0 +g4610,188:11568039,14152538 +k4610,189:15611719,14152538:2848303 +k4610,189:18460021,14152538:2848302 +) +(4610,190:6630773,15030143:11829248,530548,132808 +h4610,189:6630773,15030143:0,0,0 +g4610,189:11982981,15030143 +k4610,190:16570887,15030143:1889134 +k4610,190:18460021,15030143:1889134 +) +(4610,194:6630773,16771847:11829248,538806,141066 +h4610,193:6630773,16771847:0,0,0 +g4610,193:11982981,16771847 +g4610,193:13551257,16771847 +k4610,194:16603328,16771847:1856694 +k4610,194:18460021,16771847:1856693 +) +(4610,195:6630773,17649452:11829248,538806,132808 +h4610,194:6630773,17649452:0,0,0 +g4610,194:11982981,17649452 +g4610,194:13551257,17649452 +g4610,194:15119533,17649452 +k4610,195:17387466,17649452:1072556 +k4610,195:18460021,17649452:1072555 +) +(4610,196:6630773,18527057:11829248,538806,102891 +h4610,195:6630773,18527057:0,0,0 +g4610,195:9493326,18527057 +k4610,196:14375133,18527057:4084889 +k4610,196:18460021,18527057:4084888 +) +(4610,197:6630773,19404661:11829248,538806,102891 +h4610,196:6630773,19404661:0,0,0 +g4610,196:10323211,19404661 +g4610,196:12617626,19404661 +k4610,197:16136512,19404661:2323509 +k4610,197:18460021,19404661:2323509 +) +(4610,198:6630773,20282266:11829248,538806,102891 +h4610,197:6630773,20282266:0,0,0 +g4610,197:11568039,20282266 +k4610,198:15611719,20282266:2848303 +k4610,198:18460021,20282266:2848302 +) +(4610,199:6630773,21159870:11829248,538806,132808 +h4610,198:6630773,21159870:0,0,0 +g4610,198:11568039,21159870 +k4610,199:15611719,21159870:2848303 +k4610,199:18460021,21159870:2848302 +) +(4610,200:6630773,22037475:11829248,538806,102891 +h4610,199:6630773,22037475:0,0,0 +g4610,199:12397924,22037475 +k4610,200:16026661,22037475:2433360 +k4610,200:18460021,22037475:2433360 +) +(4610,201:6630773,22915079:11829248,538806,102891 +h4610,200:6630773,22915079:0,0,0 +g4610,200:10323211,22915079 +k4610,201:14989305,22915079:3470717 +k4610,201:18460021,22915079:3470716 +) +(4610,202:6630773,23792684:11829248,538806,102891 +h4610,201:6630773,23792684:0,0,0 +g4610,201:10323211,23792684 +g4610,201:11891487,23792684 +k4610,202:15763612,23792684:2696409 +k4610,202:18460021,23792684:2696409 +) +(4610,203:6630773,24670288:11829248,538806,102891 +h4610,202:6630773,24670288:0,0,0 +g4610,202:13227808,24670288 +k4610,203:16431773,24670288:2028249 +k4610,203:18460021,24670288:2028248 +) +(4610,204:6630773,25547893:11829248,538806,102891 +h4610,203:6630773,25547893:0,0,0 +g4610,203:9078384,25547893 +k4610,204:14357061,25547893:4102961 +k4610,204:18460021,25547893:4102960 +) +(4610,205:6630773,26425498:11829248,538806,102891 +h4610,204:6630773,26425498:0,0,0 +g4610,204:8248499,26425498 +g4610,204:11339832,26425498 +g4610,204:12908108,26425498 +g4610,204:14476384,26425498 +g4610,204:16044660,26425498 +k4610,205:17840199,26425498:619823 +k4610,205:18460021,26425498:619822 +) +(4610,206:6630773,27303102:11829248,538806,102891 +h4610,205:6630773,27303102:0,0,0 +g4610,205:10323211,27303102 +g4610,205:11493028,27303102 +g4610,205:12662845,27303102 +k4610,206:16159122,27303102:2300900 +k4610,206:18460021,27303102:2300899 +) +(4610,207:6630773,28180707:11829248,538806,102891 +h4610,206:6630773,28180707:0,0,0 +g4610,206:9908269,28180707 +g4610,206:11476545,28180707 +k4610,207:15556141,28180707:2903880 +k4610,207:18460021,28180707:2903880 +) +(4610,208:6630773,29058311:11829248,538806,102891 +h4610,207:6630773,29058311:0,0,0 +g4610,207:11153096,29058311 +k4610,208:15404247,29058311:3055774 +k4610,208:18460021,29058311:3055774 +) +(4610,209:6630773,29935916:11829248,538806,141066 +h4610,208:6630773,29935916:0,0,0 +g4610,208:11568039,29935916 +k4610,209:15601888,29935916:2858133 +k4610,209:18460021,29935916:2858133 +) +(4610,210:6630773,30813520:11829248,538806,102891 +h4610,209:6630773,30813520:0,0,0 +g4610,209:11153096,30813520 +g4610,209:12721372,30813520 +k4610,210:16188385,30813520:2271636 +k4610,210:18460021,30813520:2271636 +) +(4610,214:6630773,32555225:11829248,530548,141066 +h4610,213:6630773,32555225:0,0,0 +g4610,213:10323211,32555225 +k4610,214:14989305,32555225:3470717 +k4610,214:18460021,32555225:3470716 +) +(4610,215:6630773,33432830:11829248,530548,141066 +h4610,214:6630773,33432830:0,0,0 +g4610,214:12397924,33432830 +g4610,214:13966200,33432830 +k4610,215:16810799,33432830:1649222 +k4610,215:18460021,33432830:1649222 +) +(4610,216:6630773,34310434:11829248,530548,141066 +h4610,215:6630773,34310434:0,0,0 +g4610,215:11568039,34310434 +g4610,215:13136315,34310434 +k4610,216:16395857,34310434:2064165 +k4610,216:18460021,34310434:2064164 +) +(4610,217:6630773,35188039:11829248,530548,141066 +h4610,216:6630773,35188039:0,0,0 +g4610,216:11153096,35188039 +g4610,216:12721372,35188039 +g4610,216:14289648,35188039 +g4610,216:15857924,35188039 +k4610,216:18460021,35188039:1319558 +) +(4610,217:9252213,36053119:9207808,485622,11795 +k4610,217:14443975,36053119:4016046 +k4610,217:18460021,36053119:4016046 +) +(4610,218:6630773,36930724:11829248,530548,141066 +h4610,217:6630773,36930724:0,0,0 +g4610,217:11982981,36930724 +k4610,218:15819190,36930724:2640832 +k4610,218:18460021,36930724:2640831 +) +(4610,219:6630773,37808328:11829248,530548,141066 +h4610,218:6630773,37808328:0,0,0 +g4610,218:12812866,37808328 +k4610,219:16234132,37808328:2225889 +k4610,219:18460021,37808328:2225889 +) +(4610,220:6630773,38685933:11829248,530548,141066 +h4610,219:6630773,38685933:0,0,0 +g4610,219:11153096,38685933 +g4610,219:12721372,38685933 +g4610,219:14289648,38685933 +g4610,219:15857924,38685933 +k4610,220:17756661,38685933:703360 +k4610,220:18460021,38685933:703360 +) +(4610,221:6630773,39563537:11829248,530548,141066 +h4610,220:6630773,39563537:0,0,0 +g4610,220:11982981,39563537 +g4610,220:13551257,39563537 +k4610,221:16603328,39563537:1856694 +k4610,221:18460021,39563537:1856693 +) +(4610,222:6630773,40441142:11829248,530548,141066 +h4610,221:6630773,40441142:0,0,0 +g4610,221:11982981,40441142 +k4610,222:15819190,40441142:2640832 +k4610,222:18460021,40441142:2640831 +) +(4610,223:6630773,41318746:11829248,530548,141066 +h4610,222:6630773,41318746:0,0,0 +g4610,222:12812866,41318746 +k4610,223:16234132,41318746:2225889 +k4610,223:18460021,41318746:2225889 +) +(4610,224:6630773,42196351:11829248,530548,141066 +h4610,223:6630773,42196351:0,0,0 +g4610,223:13227808,42196351 +g4610,223:14796084,42196351 +k4610,224:17225741,42196351:1234280 +k4610,224:18460021,42196351:1234280 +) +(4610,225:6630773,43073955:11829248,530548,141066 +h4610,224:6630773,43073955:0,0,0 +g4610,224:11568039,43073955 +g4610,224:13136315,43073955 +g4610,224:14704591,43073955 +k4610,225:17170164,43073955:1289857 +k4610,225:18460021,43073955:1289857 +) +(4610,226:6630773,43951560:11829248,530548,141066 +h4610,225:6630773,43951560:0,0,0 +g4610,225:11153096,43951560 +k4610,226:15404247,43951560:3055774 +k4610,226:18460021,43951560:3055774 +) +(4610,227:6630773,44829164:11829248,530548,141066 +h4610,226:6630773,44829164:0,0,0 +g4610,226:13642751,44829164 +g4610,226:15211027,44829164 +k4610,227:17433213,44829164:1026809 +k4610,227:18460021,44829164:1026808 +) +(4610,228:6630773,45706769:11829248,530548,141066 +h4610,227:6630773,45706769:0,0,0 +g4610,227:11982981,45706769 +g4610,227:13551257,45706769 +g4610,227:15119533,45706769 +k4610,228:17377635,45706769:1082386 +k4610,228:18460021,45706769:1082386 +) +] +k4610,276:19606901,45706769:1146880 +r4610,276:19606901,45706769:0,40249098,141066 +k4610,276:20753781,45706769:1146880 +[4610,276:20753781,45706769:11829248,40108032,141066 +(4610,229:20753781,6254097:11829248,530548,141066 +h4610,228:20753781,6254097:0,0,0 +g4610,228:26105989,6254097 +g4610,228:29197322,6254097 +g4610,228:30765598,6254097 +k4610,228:32583029,6254097:534892 +) +(4610,229:23375221,7119177:9207808,485622,11795 +k4610,229:28576814,7119177:4006216 +k4610,229:32583029,7119177:4006215 +) +(4610,230:20753781,7997695:11829248,530548,141066 +h4610,229:20753781,7997695:0,0,0 +g4610,229:28595643,7997695 +k4610,230:31187025,7997695:1396005 +k4610,230:32583029,7997695:1396004 +) +(4610,231:20753781,8876212:11829248,530548,141066 +h4610,230:20753781,8876212:0,0,0 +g4610,230:25691047,8876212 +g4610,230:27259323,8876212 +g4610,230:28827599,8876212 +g4610,230:30395875,8876212 +k4610,230:32583029,8876212:904615 +) +(4610,231:23375221,9741292:9207808,485622,102891 +g4610,230:24943497,9741292 +g4610,230:26511773,9741292 +k4610,231:30135259,9741292:2447770 +k4610,231:32583029,9741292:2447770 +) +(4610,232:20753781,10619810:11829248,530548,141066 +h4610,231:20753781,10619810:0,0,0 +g4610,231:27765759,10619810 +k4610,232:30772083,10619810:1810947 +k4610,232:32583029,10619810:1810946 +) +(4610,233:20753781,11498328:11829248,530548,141066 +h4610,232:20753781,11498328:0,0,0 +g4610,232:25691047,11498328 +g4610,232:27259323,11498328 +k4610,233:30518865,11498328:2064165 +k4610,233:32583029,11498328:2064164 +) +(4610,234:20753781,12376846:11829248,530548,141066 +h4610,233:20753781,12376846:0,0,0 +g4610,233:25691047,12376846 +k4610,234:30496255,12376846:2086775 +k4610,234:32583029,12376846:2086774 +) +(4610,236:20753781,13255363:11829248,530548,141066 +h4610,234:20753781,13255363:0,0,0 +g4610,234:26105989,13255363 +g4610,234:27674265,13255363 +g4610,234:29242541,13255363 +g4610,234:30810817,13255363 +k4610,234:32583029,13255363:489673 +) +(4610,236:23375221,14120443:9207808,485622,102891 +g4610,234:24943497,14120443 +g4610,234:26511773,14120443 +g4610,234:28080049,14120443 +g4610,235:29648325,14120443 +g4610,235:31216601,14120443 +k4610,235:32583029,14120443:83889 +) +(4610,236:23375221,14985523:9207808,485622,102891 +g4610,235:24943497,14985523 +g4610,235:26511773,14985523 +g4610,235:28080049,14985523 +k4610,236:30929228,14985523:1653802 +k4610,236:32583029,14985523:1653801 +) +(4610,237:20753781,15864041:11829248,530548,141066 +h4610,236:20753781,15864041:0,0,0 +g4610,236:26935874,15864041 +g4610,236:28504150,15864041 +k4610,237:31141278,15864041:1441751 +k4610,237:32583029,15864041:1441751 +) +(4610,238:20753781,16742559:11829248,530548,141066 +h4610,237:20753781,16742559:0,0,0 +k4610,237:28175113,16742559:193641 +k4610,237:29737802,16742559:193642 +k4610,237:31300490,16742559:193641 +k4610,237:32583029,16742559:0 +) +(4610,238:23375221,17607639:9207808,485622,11795 +k4610,238:28576814,17607639:4006216 +k4610,238:32583029,17607639:4006215 +) +(4610,239:20753781,18486157:11829248,530548,141066 +h4610,238:20753781,18486157:0,0,0 +g4610,238:26935874,18486157 +k4610,239:30347310,18486157:2235720 +k4610,239:32583029,18486157:2235719 +) +(4610,240:20753781,19364674:11829248,530548,141066 +h4610,239:20753781,19364674:0,0,0 +g4610,239:26105989,19364674 +k4610,240:29942198,19364674:2640832 +k4610,240:32583029,19364674:2640831 +) +(4610,241:20753781,20243192:11829248,530548,141066 +h4610,240:20753781,20243192:0,0,0 +g4610,240:25691047,20243192 +g4610,240:27259323,20243192 +k4610,241:30518865,20243192:2064165 +k4610,241:32583029,20243192:2064164 +) +(4610,242:20753781,21121710:11829248,530548,141066 +h4610,241:20753781,21121710:0,0,0 +g4610,241:26520932,21121710 +g4610,241:28089208,21121710 +k4610,242:30933807,21121710:1649222 +k4610,242:32583029,21121710:1649222 +) +(4610,243:20753781,22000228:11829248,530548,141066 +h4610,242:20753781,22000228:0,0,0 +g4610,242:25276104,22000228 +k4610,243:29527255,22000228:3055774 +k4610,243:32583029,22000228:3055774 +) +(4610,244:20753781,22878745:11829248,530548,141066 +h4610,243:20753781,22878745:0,0,0 +g4610,243:26935874,22878745 +g4610,243:28504150,22878745 +k4610,244:31141278,22878745:1441751 +k4610,244:32583029,22878745:1441751 +) +(4610,245:20753781,23757263:11829248,538806,141066 +h4610,244:20753781,23757263:0,0,0 +g4610,244:24861162,23757263 +k4610,245:29319784,23757263:3263245 +k4610,245:32583029,23757263:3263245 +) +(4610,246:20753781,24635781:11829248,538806,141066 +h4610,245:20753781,24635781:0,0,0 +g4610,245:27350816,24635781 +k4610,246:30564611,24635781:2018418 +k4610,246:32583029,24635781:2018418 +) +(4610,247:20753781,25514299:11829248,538806,141066 +h4610,246:20753781,25514299:0,0,0 +g4610,246:26935874,25514299 +k4610,247:30357140,25514299:2225889 +k4610,247:32583029,25514299:2225889 +) +(4610,248:20753781,26392816:11829248,530548,141066 +h4610,247:20753781,26392816:0,0,0 +g4610,247:26520932,26392816 +g4610,247:28089208,26392816 +g4610,247:29657484,26392816 +k4610,248:31717945,26392816:865084 +k4610,248:32583029,26392816:865084 +) +(4610,249:20753781,27271334:11829248,530548,141066 +h4610,248:20753781,27271334:0,0,0 +g4610,248:26105989,27271334 +k4610,249:29942198,27271334:2640832 +k4610,249:32583029,27271334:2640831 +) +(4610,250:20753781,28149852:11829248,530548,141066 +h4610,249:20753781,28149852:0,0,0 +g4610,249:25691047,28149852 +k4610,250:29724896,28149852:2858133 +k4610,250:32583029,28149852:2858133 +) +(4610,251:20753781,29028370:11829248,530548,141066 +h4610,250:20753781,29028370:0,0,0 +g4610,250:26105989,29028370 +g4610,250:27674265,29028370 +k4610,251:30726336,29028370:1856694 +k4610,251:32583029,29028370:1856693 +) +(4610,252:20753781,29906887:11829248,530548,141066 +h4610,251:20753781,29906887:0,0,0 +g4610,251:25691047,29906887 +g4610,251:28782380,29906887 +g4610,251:30350656,29906887 +k4610,251:32583029,29906887:949834 +) +(4610,252:23375221,30771967:9207808,485622,11795 +k4610,252:28576814,30771967:4006216 +k4610,252:32583029,30771967:4006215 +) +(4610,253:20753781,31650485:11829248,530548,141066 +h4610,252:20753781,31650485:0,0,0 +g4610,252:28180701,31650485 +k4610,253:30979554,31650485:1603476 +k4610,253:32583029,31650485:1603475 +) +(4610,254:20753781,32529003:11829248,530548,141066 +h4610,253:20753781,32529003:0,0,0 +g4610,253:25691047,32529003 +g4610,253:27259323,32529003 +k4610,254:30518865,32529003:2064165 +k4610,254:32583029,32529003:2064164 +) +(4610,255:20753781,33407521:11829248,530548,141066 +h4610,254:20753781,33407521:0,0,0 +g4610,254:26520932,33407521 +k4610,255:30149669,33407521:2433360 +k4610,255:32583029,33407521:2433360 +) +(4610,256:20753781,34286038:11829248,530548,141066 +h4610,255:20753781,34286038:0,0,0 +g4610,255:26105989,34286038 +g4610,255:27674265,34286038 +g4610,255:29242541,34286038 +k4610,256:31500643,34286038:1082386 +k4610,256:32583029,34286038:1082386 +) +(4610,257:20753781,35164556:11829248,530548,141066 +h4610,256:20753781,35164556:0,0,0 +g4610,256:23201392,35164556 +k4610,257:28480069,35164556:4102961 +k4610,257:32583029,35164556:4102960 +) +(4610,258:20753781,36043074:11829248,530548,141066 +h4610,257:20753781,36043074:0,0,0 +g4610,257:26520932,36043074 +k4610,258:30149669,36043074:2433360 +k4610,258:32583029,36043074:2433360 +) +(4610,259:20753781,36921592:11829248,530548,141066 +h4610,258:20753781,36921592:0,0,0 +g4610,258:24861162,36921592 +g4610,258:26429438,36921592 +k4610,259:30103922,36921592:2479107 +k4610,259:32583029,36921592:2479107 +) +(4610,260:20753781,37800109:11829248,530548,141066 +h4610,259:20753781,37800109:0,0,0 +g4610,259:26105989,37800109 +k4610,260:29932367,37800109:2650662 +k4610,260:32583029,37800109:2650662 +) +(4610,261:20753781,38678627:11829248,530548,141066 +h4610,260:20753781,38678627:0,0,0 +g4610,260:24031277,38678627 +k4610,261:28904842,38678627:3678188 +k4610,261:32583029,38678627:3678187 +) +(4610,262:20753781,39557145:11829248,530548,141066 +h4610,261:20753781,39557145:0,0,0 +g4610,261:24446219,39557145 +g4610,261:26014495,39557145 +g4610,261:27582771,39557145 +k4610,262:30670758,39557145:1912271 +k4610,262:32583029,39557145:1912271 +) +(4610,263:20753781,40435663:11829248,530548,141066 +h4610,262:20753781,40435663:0,0,0 +g4610,262:26105989,40435663 +k4610,263:29942198,40435663:2640832 +k4610,263:32583029,40435663:2640831 +) +(4610,264:20753781,41314180:11829248,530548,141066 +h4610,263:20753781,41314180:0,0,0 +g4610,263:24861162,41314180 +k4610,264:29319784,41314180:3263245 +k4610,264:32583029,41314180:3263245 +) +(4610,265:20753781,42192698:11829248,530548,141066 +h4610,264:20753781,42192698:0,0,0 +g4610,264:22786450,42192698 +k4610,265:28083199,42192698:4499831 +k4610,265:32583029,42192698:4499830 +) +(4610,266:20753781,43071216:11829248,530548,141066 +h4610,265:20753781,43071216:0,0,0 +g4610,265:23616334,43071216 +k4610,266:28697370,43071216:3885659 +k4610,266:32583029,43071216:3885659 +) +(4610,267:20753781,43949734:11829248,530548,141066 +h4610,266:20753781,43949734:0,0,0 +g4610,266:23201392,43949734 +g4610,266:24769668,43949734 +k4610,267:29274037,43949734:3308992 +k4610,267:32583029,43949734:3308992 +) +(4610,268:20753781,44828251:11829248,530548,141066 +h4610,267:20753781,44828251:0,0,0 +g4610,267:23616334,44828251 +k4610,268:28498141,44828251:4084889 +k4610,268:32583029,44828251:4084888 +) +(4610,269:20753781,45706769:11829248,530548,141066 +h4610,268:20753781,45706769:0,0,0 +g4610,268:24031277,45706769 +k4610,269:28705612,45706769:3877417 +k4610,269:32583029,45706769:3877417 +) +] +(4610,276:32583029,45706769:0,355205,126483 +h4610,276:32583029,45706769:420741,355205,126483 +k4610,276:32583029,45706769:-420741 +) +) +] +(4610,276:32583029,45706769:0,0,0 +g4610,276:32583029,45706769 ) ) ] -(4606,276:6630773,47279633:25952256,0,0 -h4606,276:6630773,47279633:25952256,0,0 -) -] -(4606,276:4262630,4025873:0,0,0 -[4606,276:-473656,4025873:0,0,0 -(4606,276:-473656,-710413:0,0,0 -(4606,276:-473656,-710413:0,0,0 -g4606,276:-473656,-710413 +(4610,276:6630773,47279633:25952256,0,0 +h4610,276:6630773,47279633:25952256,0,0 +) +] +(4610,276:4262630,4025873:0,0,0 +[4610,276:-473656,4025873:0,0,0 +(4610,276:-473656,-710413:0,0,0 +(4610,276:-473656,-710413:0,0,0 +g4610,276:-473656,-710413 ) -g4606,276:-473656,-710413 +g4610,276:-473656,-710413 ) ] ) ] !21905 -}448 +}449 !12 -{449 -[4606,376:4262630,47279633:28320399,43253760,0 -(4606,376:4262630,4025873:0,0,0 -[4606,376:-473656,4025873:0,0,0 -(4606,376:-473656,-710413:0,0,0 -(4606,376:-473656,-644877:0,0,0 -k4606,376:-473656,-644877:-65536 +{450 +[4610,376:4262630,47279633:28320399,43253760,0 +(4610,376:4262630,4025873:0,0,0 +[4610,376:-473656,4025873:0,0,0 +(4610,376:-473656,-710413:0,0,0 +(4610,376:-473656,-644877:0,0,0 +k4610,376:-473656,-644877:-65536 ) -(4606,376:-473656,4736287:0,0,0 -k4606,376:-473656,4736287:5209943 +(4610,376:-473656,4736287:0,0,0 +k4610,376:-473656,4736287:5209943 ) -g4606,376:-473656,-710413 +g4610,376:-473656,-710413 ) ] ) -[4606,376:6630773,47279633:25952256,43253760,0 -[4606,376:6630773,4812305:25952256,786432,0 -(4606,376:6630773,4812305:25952256,513147,126483 -(4606,376:6630773,4812305:25952256,513147,126483 -g4606,376:3078558,4812305 -[4606,376:3078558,4812305:0,0,0 -(4606,376:3078558,2439708:0,1703936,0 -k4606,376:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,376:2537886,2439708:1179648,16384,0 +[4610,376:6630773,47279633:25952256,43253760,0 +[4610,376:6630773,4812305:25952256,786432,0 +(4610,376:6630773,4812305:25952256,513147,126483 +(4610,376:6630773,4812305:25952256,513147,126483 +g4610,376:3078558,4812305 +[4610,376:3078558,4812305:0,0,0 +(4610,376:3078558,2439708:0,1703936,0 +k4610,376:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,376:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,376:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,376:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,376:3078558,4812305:0,0,0 -(4606,376:3078558,2439708:0,1703936,0 -g4606,376:29030814,2439708 -g4606,376:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,376:36151628,1915420:16384,1179648,0 +[4610,376:3078558,4812305:0,0,0 +(4610,376:3078558,2439708:0,1703936,0 +g4610,376:29030814,2439708 +g4610,376:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,376:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,376:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,376:37855564,2439708:1179648,16384,0 ) ) -k4606,376:3078556,2439708:-34777008 +k4610,376:3078556,2439708:-34777008 ) ] -[4606,376:3078558,4812305:0,0,0 -(4606,376:3078558,49800853:0,16384,2228224 -k4606,376:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,376:2537886,49800853:1179648,16384,0 +[4610,376:3078558,4812305:0,0,0 +(4610,376:3078558,49800853:0,16384,2228224 +k4610,376:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,376:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,376:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,376:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,376:3078558,4812305:0,0,0 -(4606,376:3078558,49800853:0,16384,2228224 -g4606,376:29030814,49800853 -g4606,376:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,376:36151628,51504789:16384,1179648,0 +[4610,376:3078558,4812305:0,0,0 +(4610,376:3078558,49800853:0,16384,2228224 +g4610,376:29030814,49800853 +g4610,376:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,376:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,376:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,376:37855564,49800853:1179648,16384,0 ) ) -k4606,376:3078556,49800853:-34777008 +k4610,376:3078556,49800853:-34777008 ) ] -g4606,376:6630773,4812305 -k4606,376:23552170,4812305:15726020 -g4606,376:27112085,4812305 -g4606,376:29010007,4812305 -g4606,376:29825274,4812305 -g4606,376:30438691,4812305 -) -) -] -[4606,376:6630773,45706769:25952256,40108032,0 -(4606,376:6630773,45706769:25952256,40108032,0 -(4606,376:6630773,45706769:0,0,0 -g4606,376:6630773,45706769 +g4610,376:6630773,4812305 +k4610,376:23552170,4812305:15726020 +g4610,376:27112085,4812305 +g4610,376:29010007,4812305 +g4610,376:29825274,4812305 +g4610,376:30438691,4812305 +) +) +] +[4610,376:6630773,45706769:25952256,40108032,0 +(4610,376:6630773,45706769:25952256,40108032,0 +(4610,376:6630773,45706769:0,0,0 +g4610,376:6630773,45706769 ) -[4606,376:6630773,45706769:25952256,40108032,0 -(4606,376:6630773,45706769:25952256,40108032,126483 -[4606,376:6630773,45706769:11829248,40108032,102891 -(4606,270:6630773,6254097:11829248,530548,141066 -h4606,269:6630773,6254097:0,0,0 -g4606,269:11153096,6254097 -g4606,269:12721372,6254097 -k4606,270:16178555,6254097:2281467 -k4606,270:18460021,6254097:2281466 +[4610,376:6630773,45706769:25952256,40108032,0 +(4610,376:6630773,45706769:25952256,40108032,126483 +[4610,376:6630773,45706769:11829248,40108032,102891 +(4610,270:6630773,6254097:11829248,530548,141066 +h4610,269:6630773,6254097:0,0,0 +g4610,269:11153096,6254097 +g4610,269:12721372,6254097 +k4610,270:16178555,6254097:2281467 +k4610,270:18460021,6254097:2281466 ) -(4606,271:6630773,7122309:11829248,530548,141066 -h4606,270:6630773,7122309:0,0,0 -g4606,270:9493326,7122309 -g4606,270:10663143,7122309 -g4606,270:11832960,7122309 -k4606,271:15734349,7122309:2725673 -k4606,271:18460021,7122309:2725672 -) -(4606,275:6630773,8698082:11829248,530548,102891 -h4606,274:6630773,8698082:0,0,0 -g4606,274:9078384,8698082 -k4606,275:14366891,8698082:4093130 -k4606,275:18460021,8698082:4093130 -) -(4606,276:6630773,9566295:11829248,530548,102891 -h4606,275:6630773,9566295:0,0,0 -g4606,275:10323211,9566295 -g4606,275:11891487,9566295 -k4606,276:15763612,9566295:2696409 -k4606,276:18460021,9566295:2696409 -) -(4606,277:6630773,10434507:11829248,530548,132808 -h4606,276:6630773,10434507:0,0,0 -g4606,276:9493326,10434507 -g4606,276:10663143,10434507 -k4606,277:14950211,10434507:3509811 -k4606,277:18460021,10434507:3509810 -) -(4606,278:6630773,11302719:11829248,530548,102891 -h4606,277:6630773,11302719:0,0,0 -g4606,277:9078384,11302719 -k4606,278:14366891,11302719:4093130 -k4606,278:18460021,11302719:4093130 -) -(4606,279:6630773,12170931:11829248,530548,102891 -h4606,278:6630773,12170931:0,0,0 -g4606,278:13642751,12170931 -k4606,279:16649075,12170931:1810947 -k4606,279:18460021,12170931:1810946 -) -(4606,280:6630773,13039143:11829248,530548,132808 -h4606,279:6630773,13039143:0,0,0 -g4606,279:11982981,13039143 -k4606,280:15819190,13039143:2640832 -k4606,280:18460021,13039143:2640831 -) -(4606,281:6630773,13907355:11829248,530548,132808 -h4606,280:6630773,13907355:0,0,0 -g4606,280:12812866,13907355 -k4606,281:16234132,13907355:2225889 -k4606,281:18460021,13907355:2225889 -) -(4606,282:6630773,14775567:11829248,530548,132808 -h4606,281:6630773,14775567:0,0,0 -g4606,281:11982981,14775567 -k4606,282:15819190,14775567:2640832 -k4606,282:18460021,14775567:2640831 -) -(4606,286:6630773,16351340:11829248,530548,102891 -h4606,285:6630773,16351340:0,0,0 -g4606,285:8248499,16351340 -g4606,285:11339832,16351340 -g4606,285:12908108,16351340 -g4606,285:14476384,16351340 -g4606,285:16044660,16351340 -k4606,285:18460021,16351340:1132822 -) -(4606,286:9252213,17216420:9207808,485622,11795 -k4606,286:14453806,17216420:4006216 -k4606,286:18460021,17216420:4006215 -) -(4606,287:6630773,18084633:11829248,530548,102891 -h4606,286:6630773,18084633:0,0,0 -g4606,286:11568039,18084633 -k4606,287:15611719,18084633:2848303 -k4606,287:18460021,18084633:2848302 -) -(4606,288:6630773,18952845:11829248,538806,102891 -h4606,287:6630773,18952845:0,0,0 -g4606,287:7833557,18952845 -g4606,287:9401833,18952845 -g4606,287:10970109,18952845 -g4606,287:12538385,18952845 -k4606,288:16096892,18952845:2363130 -k4606,288:18460021,18952845:2363129 -) -(4606,289:6630773,19821057:11829248,538806,102891 -h4606,288:6630773,19821057:0,0,0 -g4606,288:9908269,19821057 -g4606,288:11476545,19821057 -k4606,289:15556141,19821057:2903880 -k4606,289:18460021,19821057:2903880 -) -(4606,290:6630773,20689269:11829248,538806,102891 -h4606,289:6630773,20689269:0,0,0 -g4606,289:10323211,20689269 -g4606,289:11891487,20689269 -k4606,290:15773443,20689269:2686579 -k4606,290:18460021,20689269:2686578 -) -(4606,291:6630773,21557481:11829248,538806,102891 -h4606,290:6630773,21557481:0,0,0 -g4606,290:8248499,21557481 -g4606,290:9418316,21557481 -k4606,291:14327797,21557481:4132224 -k4606,291:18460021,21557481:4132224 -) -(4606,292:6630773,22425693:11829248,530548,102891 -h4606,291:6630773,22425693:0,0,0 -g4606,291:11153096,22425693 -k4606,292:15205018,22425693:3255004 -k4606,292:18460021,22425693:3255003 -) -(4606,293:6630773,23293905:11829248,530548,141066 -h4606,292:6630773,23293905:0,0,0 -g4606,292:11982981,23293905 -k4606,293:15809359,23293905:2650662 -k4606,293:18460021,23293905:2650662 -) -(4606,294:6630773,24162117:11829248,485622,132808 -h4606,293:6630773,24162117:0,0,0 -g4606,293:11982981,24162117 -g4606,293:13551257,24162117 -k4606,294:16593497,24162117:1866524 -k4606,294:18460021,24162117:1866524 -) -(4606,295:6630773,25030329:11829248,530548,141066 -h4606,294:6630773,25030329:0,0,0 -g4606,294:14472635,25030329 -g4606,294:16040911,25030329 -k4606,295:17838324,25030329:621697 -k4606,295:18460021,25030329:621697 -) -(4606,296:6630773,25898542:11829248,530548,141066 -h4606,295:6630773,25898542:0,0,0 -g4606,295:9908269,25898542 -g4606,295:11078086,25898542 -g4606,295:12247903,25898542 -g4606,295:13417720,25898542 -g4606,295:14587537,25898542 -k4606,296:16922238,25898542:1537783 -k4606,296:18460021,25898542:1537783 -) -(4606,297:6630773,26766754:11829248,530548,102891 -h4606,296:6630773,26766754:0,0,0 -g4606,296:12397924,26766754 -k4606,297:16026661,26766754:2433360 -k4606,297:18460021,26766754:2433360 -) -(4606,298:6630773,27634966:11829248,530548,102891 -h4606,297:6630773,27634966:0,0,0 -g4606,297:8663442,27634966 -g4606,297:10231718,27634966 -k4606,298:14933728,27634966:3526294 -k4606,298:18460021,27634966:3526293 -) -(4606,299:6630773,28503178:11829248,530548,132808 -h4606,298:6630773,28503178:0,0,0 -g4606,298:11153096,28503178 -k4606,299:15205018,28503178:3255004 -k4606,299:18460021,28503178:3255003 -) -(4606,300:6630773,29371390:11829248,530548,102891 -h4606,299:6630773,29371390:0,0,0 -g4606,299:12812866,29371390 -k4606,300:16034903,29371390:2425119 -k4606,300:18460021,29371390:2425118 -) -(4606,301:6630773,30239602:11829248,538806,102891 -h4606,300:6630773,30239602:0,0,0 -g4606,300:13227808,30239602 -k4606,301:16232543,30239602:2227478 -k4606,301:18460021,30239602:2227478 -) -(4606,302:6630773,31107814:11829248,530548,102891 -h4606,301:6630773,31107814:0,0,0 -g4606,301:11982981,31107814 -g4606,301:13152798,31107814 -k4606,302:16195038,31107814:2264983 -k4606,302:18460021,31107814:2264983 -) -(4606,303:6630773,31976026:11829248,530548,132808 -h4606,302:6630773,31976026:0,0,0 -g4606,302:13642751,31976026 -g4606,302:15211027,31976026 -k4606,303:17433213,31976026:1026809 -k4606,303:18460021,31976026:1026808 -) -(4606,304:6630773,32844238:11829248,530548,102891 -h4606,303:6630773,32844238:0,0,0 -g4606,303:10738154,32844238 -k4606,304:14997547,32844238:3462475 -k4606,304:18460021,32844238:3462474 -) -(4606,305:6630773,33712450:11829248,530548,141066 -h4606,304:6630773,33712450:0,0,0 -g4606,304:11982981,33712450 -k4606,305:15619960,33712450:2840061 -k4606,305:18460021,33712450:2840061 -) -(4606,306:6630773,34580663:11829248,530548,102891 -h4606,305:6630773,34580663:0,0,0 -g4606,305:11568039,34580663 -k4606,306:15402659,34580663:3057363 -k4606,306:18460021,34580663:3057362 -) -(4606,307:6630773,35448875:11829248,530548,102891 -h4606,306:6630773,35448875:0,0,0 -g4606,306:9908269,35448875 -g4606,306:11078086,35448875 -k4606,307:15157682,35448875:3302339 -k4606,307:18460021,35448875:3302339 -) -(4606,308:6630773,36317087:11829248,530548,102891 -h4606,307:6630773,36317087:0,0,0 -g4606,307:11982981,36317087 -g4606,307:13152798,36317087 -k4606,308:16204869,36317087:2255153 -k4606,308:18460021,36317087:2255152 -) -(4606,309:6630773,37185299:11829248,530548,102891 -h4606,308:6630773,37185299:0,0,0 -g4606,308:11568039,37185299 -k4606,309:15611719,37185299:2848303 -k4606,309:18460021,37185299:2848302 -) -(4606,310:6630773,38053511:11829248,530548,102891 -h4606,309:6630773,38053511:0,0,0 -g4606,309:10323211,38053511 -k4606,310:14979474,38053511:3480547 -k4606,310:18460021,38053511:3480547 -) -(4606,314:6630773,39629284:11829248,530548,102891 -h4606,313:6630773,39629284:0,0,0 -g4606,313:11982981,39629284 -k4606,314:15809359,39629284:2650662 -k4606,314:18460021,39629284:2650662 -) -(4606,315:6630773,40497496:11829248,530548,132808 -h4606,314:6630773,40497496:0,0,0 -g4606,314:12812866,40497496 -k4606,315:16234132,40497496:2225889 -k4606,315:18460021,40497496:2225889 -) -(4606,316:6630773,41365708:11829248,530548,102891 -h4606,315:6630773,41365708:0,0,0 -g4606,315:11982981,41365708 -k4606,316:15819190,41365708:2640832 -k4606,316:18460021,41365708:2640831 -) -(4606,317:6630773,42233921:11829248,530548,102891 -h4606,316:6630773,42233921:0,0,0 -g4606,316:14472635,42233921 -k4606,317:17064017,42233921:1396005 -k4606,317:18460021,42233921:1396004 -) -(4606,318:6630773,43102133:11829248,530548,102891 -h4606,317:6630773,43102133:0,0,0 -g4606,317:12812866,43102133 -k4606,318:16234132,43102133:2225889 -k4606,318:18460021,43102133:2225889 -) -(4606,319:6630773,43970345:11829248,530548,132808 -h4606,318:6630773,43970345:0,0,0 -g4606,318:12812866,43970345 -k4606,319:16234132,43970345:2225889 -k4606,319:18460021,43970345:2225889 -) -(4606,320:6630773,44838557:11829248,530548,102891 -h4606,319:6630773,44838557:0,0,0 -g4606,319:11982981,44838557 -k4606,320:15819190,44838557:2640832 -k4606,320:18460021,44838557:2640831 -) -(4606,321:6630773,45706769:11829248,530548,102891 -h4606,320:6630773,45706769:0,0,0 -g4606,320:10323211,45706769 -k4606,321:14989305,45706769:3470717 -k4606,321:18460021,45706769:3470716 -) -] -k4606,376:19606901,45706769:1146880 -r4606,376:19606901,45706769:0,40234515,126483 -k4606,376:20753781,45706769:1146880 -[4606,376:20753781,45706769:11829248,40108032,102891 -(4606,322:20753781,6254097:11829248,530548,102891 -h4606,321:20753781,6254097:0,0,0 -g4606,321:23616334,6254097 -g4606,321:25184610,6254097 -k4606,322:29481508,6254097:3101521 -k4606,322:32583029,6254097:3101521 -) -(4606,323:20753781,7120204:11829248,530548,132808 -h4606,322:20753781,7120204:0,0,0 -g4606,322:24446219,7120204 -g4606,322:26014495,7120204 -g4606,322:27582771,7120204 -k4606,323:30680589,7120204:1902441 -k4606,323:32583029,7120204:1902440 -) -(4606,324:20753781,7986312:11829248,538806,141066 -h4606,323:20753781,7986312:0,0,0 -g4606,323:25691047,7986312 -k4606,324:29724896,7986312:2858133 -k4606,324:32583029,7986312:2858133 -) -(4606,325:20753781,8852419:11829248,530548,141066 -h4606,324:20753781,8852419:0,0,0 -g4606,324:24446219,8852419 -g4606,324:25616036,8852419 -g4606,324:26785853,8852419 -g4606,324:27955670,8852419 -g4606,324:29523946,8852419 -k4606,325:31651176,8852419:931853 -k4606,325:32583029,8852419:931853 -) -(4606,326:20753781,9718527:11829248,485622,102891 -h4606,325:20753781,9718527:0,0,0 -g4606,325:24031277,9718527 -k4606,326:28695782,9718527:3887248 -k4606,326:32583029,9718527:3887247 -) -(4606,327:20753781,10584634:11829248,530548,102891 -h4606,326:20753781,10584634:0,0,0 -g4606,326:24031277,10584634 -k4606,327:28695782,10584634:3887248 -k4606,327:32583029,10584634:3887247 -) -(4606,328:20753781,11450742:11829248,530548,102891 -h4606,327:20753781,11450742:0,0,0 -g4606,327:24446219,11450742 -g4606,327:25616036,11450742 -g4606,327:26785853,11450742 -k4606,328:30282130,11450742:2300900 -k4606,328:32583029,11450742:2300899 -) -(4606,329:20753781,12316849:11829248,530548,102891 -h4606,328:20753781,12316849:0,0,0 -g4606,328:25276104,12316849 -k4606,329:29527255,12316849:3055774 -k4606,329:32583029,12316849:3055774 -) -(4606,330:20753781,13182957:11829248,530548,132808 -h4606,329:20753781,13182957:0,0,0 -g4606,329:24861162,13182957 -g4606,329:26429438,13182957 -g4606,329:27997714,13182957 -g4606,329:29565990,13182957 -k4606,330:31662368,13182957:920662 -k4606,330:32583029,13182957:920661 -) -(4606,331:20753781,14049064:11829248,530548,102891 -h4606,330:20753781,14049064:0,0,0 -g4606,330:24031277,14049064 -k4606,331:28904842,14049064:3678188 -k4606,331:32583029,14049064:3678187 -) -(4606,332:20753781,14915172:11829248,530548,102891 -h4606,331:20753781,14915172:0,0,0 -g4606,331:22786450,14915172 -g4606,331:23956267,14915172 -g4606,331:25524543,14915172 -g4606,331:27092819,14915172 -k4606,332:30435613,14915172:2147417 -k4606,332:32583029,14915172:2147416 -) -(4606,333:20753781,15781279:11829248,530548,102891 -h4606,332:20753781,15781279:0,0,0 -g4606,332:23616334,15781279 -g4606,332:24786151,15781279 -k4606,333:29073219,15781279:3509811 -k4606,333:32583029,15781279:3509810 -) -(4606,334:20753781,16647387:11829248,530548,102891 -h4606,333:20753781,16647387:0,0,0 -g4606,333:25691047,16647387 -k4606,334:29724896,16647387:2858133 -k4606,334:32583029,16647387:2858133 -) -(4606,335:20753781,17513494:11829248,538806,102891 -h4606,334:20753781,17513494:0,0,0 -g4606,334:26105989,17513494 -k4606,335:29932367,17513494:2650662 -k4606,335:32583029,17513494:2650662 -) -(4606,336:20753781,18379602:11829248,530548,102891 -h4606,335:20753781,18379602:0,0,0 -g4606,335:21956565,18379602 -k4606,336:27867486,18379602:4715544 -k4606,336:32583029,18379602:4715543 -) -(4606,338:20753781,19245709:11829248,530548,102891 -h4606,336:20753781,19245709:0,0,0 -g4606,336:22786450,19245709 -g4606,336:24354726,19245709 -g4606,336:25923002,19245709 -g4606,336:27491278,19245709 -g4606,336:29059554,19245709 -g4606,336:30627830,19245709 -k4606,336:32583029,19245709:672660 -) -(4606,338:23375221,20110789:9207808,485622,102891 -g4606,336:24943497,20110789 -g4606,336:26511773,20110789 -g4606,336:28080049,20110789 -k4606,338:30919397,20110789:1663632 -k4606,338:32583029,20110789:1663632 -) -(4606,339:20753781,20976897:11829248,530548,102891 -h4606,338:20753781,20976897:0,0,0 -g4606,338:23616334,20976897 -k4606,339:28697370,20976897:3885659 -k4606,339:32583029,20976897:3885659 -) -(4606,340:20753781,21843004:11829248,530548,102891 -h4606,339:20753781,21843004:0,0,0 -g4606,339:23201392,21843004 -k4606,340:28489899,21843004:4093130 -k4606,340:32583029,21843004:4093130 -) -(4606,341:20753781,22709112:11829248,530548,102891 -h4606,340:20753781,22709112:0,0,0 -g4606,340:24031277,22709112 -k4606,341:28904842,22709112:3678188 -k4606,341:32583029,22709112:3678187 -) -(4606,342:20753781,23575219:11829248,530548,141066 -h4606,341:20753781,23575219:0,0,0 -g4606,341:23201392,23575219 -g4606,341:24371209,23575219 -g4606,341:25939485,23575219 -g4606,341:27507761,23575219 -g4606,341:29076037,23575219 -k4606,342:31427222,23575219:1155808 -k4606,342:32583029,23575219:1155807 -) -(4606,343:20753781,24441327:11829248,530548,141066 -h4606,342:20753781,24441327:0,0,0 -g4606,342:24031277,24441327 -g4606,342:25201094,24441327 -k4606,343:29489750,24441327:3093279 -k4606,343:32583029,24441327:3093279 -) -(4606,344:20753781,25307434:11829248,530548,141066 -h4606,343:20753781,25307434:0,0,0 -g4606,343:23616334,25307434 -k4606,344:28498141,25307434:4084889 -k4606,344:32583029,25307434:4084888 -) -(4606,345:20753781,26173542:11829248,530548,141066 -h4606,344:20753781,26173542:0,0,0 -k4606,344:24025373,26173542:193325 -k4606,344:25189287,26173542:193326 -k4606,344:26353200,26173542:193325 -k4606,344:27517114,26173542:193326 -k4606,344:28681027,26173542:193325 -k4606,344:29844941,26173542:193326 -k4606,344:31407313,26173542:193325 -k4606,345:32583029,26173542:0 -k4606,345:32583029,26173542:0 -) -(4606,346:20753781,27039649:11829248,530548,102891 -h4606,345:20753781,27039649:0,0,0 -g4606,345:22786450,27039649 -g4606,345:23956267,27039649 -k4606,346:28867337,27039649:3715693 -k4606,346:32583029,27039649:3715692 -) -(4606,350:20753781,28578242:11829248,530548,102891 -h4606,349:20753781,28578242:0,0,0 -g4606,349:23201392,28578242 -k4606,350:28489899,28578242:4093130 -k4606,350:32583029,28578242:4093130 -) -(4606,351:20753781,29444349:11829248,530548,102891 -h4606,350:20753781,29444349:0,0,0 -g4606,350:24446219,29444349 -k4606,351:29112313,29444349:3470717 -k4606,351:32583029,29444349:3470716 -) -(4606,352:20753781,30310457:11829248,530548,102891 -h4606,351:20753781,30310457:0,0,0 -g4606,351:24031277,30310457 -k4606,352:28695782,30310457:3887248 -k4606,352:32583029,30310457:3887247 -) -(4606,353:20753781,31176564:11829248,530548,102891 -h4606,352:20753781,31176564:0,0,0 -g4606,352:24861162,31176564 -k4606,353:29309954,31176564:3273076 -k4606,353:32583029,31176564:3273075 -) -(4606,354:20753781,32042672:11829248,530548,102891 -h4606,353:20753781,32042672:0,0,0 -g4606,353:23616334,32042672 -g4606,353:24786151,32042672 -g4606,353:25955968,32042672 -g4606,353:27125785,32042672 -g4606,353:28694061,32042672 -k4606,354:31236234,32042672:1346796 -k4606,354:32583029,32042672:1346795 -) -(4606,355:20753781,32908779:11829248,530548,102891 -h4606,354:20753781,32908779:0,0,0 -g4606,354:24446219,32908779 -g4606,354:25616036,32908779 -g4606,354:26785853,32908779 -g4606,354:28354129,32908779 -k4606,355:31066268,32908779:1516762 -k4606,355:32583029,32908779:1516761 -) -(4606,356:20753781,33774887:11829248,530548,102891 -h4606,355:20753781,33774887:0,0,0 -g4606,355:23201392,33774887 -g4606,355:24769668,33774887 -k4606,356:29274037,33774887:3308992 -k4606,356:32583029,33774887:3308992 -) -(4606,357:20753781,34640994:11829248,530548,102891 -h4606,356:20753781,34640994:0,0,0 -g4606,356:23616334,34640994 -g4606,356:25184610,34640994 -g4606,356:26752886,34640994 -k4606,357:30265646,34640994:2317383 -k4606,357:32583029,34640994:2317383 -) -(4606,358:20753781,35507102:11829248,530548,102891 -h4606,357:20753781,35507102:0,0,0 -g4606,357:24446219,35507102 -k4606,358:29112313,35507102:3470717 -k4606,358:32583029,35507102:3470716 -) -(4606,359:20753781,36373209:11829248,530548,102891 -h4606,358:20753781,36373209:0,0,0 -g4606,358:24861162,36373209 -g4606,358:26429438,36373209 -k4606,359:30103922,36373209:2479107 -k4606,359:32583029,36373209:2479107 -) -(4606,360:20753781,37239317:11829248,530548,141066 -h4606,359:20753781,37239317:0,0,0 -g4606,359:23616334,37239317 -k4606,360:28687540,37239317:3895490 -k4606,360:32583029,37239317:3895489 -) -(4606,361:20753781,38105424:11829248,530548,102891 -h4606,360:20753781,38105424:0,0,0 -g4606,360:23201392,38105424 -g4606,360:24769668,38105424 -k4606,361:29274037,38105424:3308992 -k4606,361:32583029,38105424:3308992 -) -(4606,362:20753781,38971532:11829248,530548,102891 -h4606,361:20753781,38971532:0,0,0 -g4606,361:23616334,38971532 -g4606,361:25184610,38971532 -k4606,362:29481508,38971532:3101521 -k4606,362:32583029,38971532:3101521 -) -(4606,363:20753781,39837639:11829248,538806,102891 -h4606,362:20753781,39837639:0,0,0 -g4606,362:26520932,39837639 -k4606,363:30139839,39837639:2443191 -k4606,363:32583029,39837639:2443190 -) -(4606,364:20753781,40703747:11829248,530548,102891 -h4606,363:20753781,40703747:0,0,0 -g4606,363:26935874,40703747 -g4606,363:28504150,40703747 -k4606,364:31131448,40703747:1451582 -k4606,364:32583029,40703747:1451581 -) -(4606,365:20753781,41569854:11829248,530548,102891 -h4606,364:20753781,41569854:0,0,0 -g4606,364:24861162,41569854 -k4606,365:29110724,41569854:3472305 -k4606,365:32583029,41569854:3472305 -) -(4606,366:20753781,42435962:11829248,530548,102891 -h4606,365:20753781,42435962:0,0,0 -g4606,365:25276104,42435962 -k4606,366:29318195,42435962:3264834 -k4606,366:32583029,42435962:3264834 -) -(4606,367:20753781,43302069:11829248,485622,102891 -h4606,366:20753781,43302069:0,0,0 -g4606,366:23616334,43302069 -k4606,367:28697370,43302069:3885659 -k4606,367:32583029,43302069:3885659 -) -(4606,368:20753781,44168177:11829248,530548,102891 -h4606,367:20753781,44168177:0,0,0 -g4606,367:24446219,44168177 -g4606,367:26014495,44168177 -k4606,368:29896451,44168177:2686579 -k4606,368:32583029,44168177:2686578 -) -(4606,372:20753781,45706769:11829248,485622,102891 -h4606,371:20753781,45706769:0,0,0 -g4606,371:21956565,45706769 -g4606,371:23126382,45706769 -g4606,371:24296199,45706769 -k4606,372:28838073,45706769:3744956 -k4606,372:32583029,45706769:3744956 -) -] -(4606,376:32583029,45706769:0,355205,126483 -h4606,376:32583029,45706769:420741,355205,126483 -k4606,376:32583029,45706769:-420741 -) -) -] -(4606,376:32583029,45706769:0,0,0 -g4606,376:32583029,45706769 -) -) -] -(4606,376:6630773,47279633:25952256,0,0 -h4606,376:6630773,47279633:25952256,0,0 -) -] -(4606,376:4262630,4025873:0,0,0 -[4606,376:-473656,4025873:0,0,0 -(4606,376:-473656,-710413:0,0,0 -(4606,376:-473656,-710413:0,0,0 -g4606,376:-473656,-710413 +(4610,271:6630773,7122309:11829248,530548,141066 +h4610,270:6630773,7122309:0,0,0 +g4610,270:9493326,7122309 +g4610,270:10663143,7122309 +g4610,270:11832960,7122309 +k4610,271:15734349,7122309:2725673 +k4610,271:18460021,7122309:2725672 +) +(4610,275:6630773,8698082:11829248,530548,102891 +h4610,274:6630773,8698082:0,0,0 +g4610,274:9078384,8698082 +k4610,275:14366891,8698082:4093130 +k4610,275:18460021,8698082:4093130 +) +(4610,276:6630773,9566295:11829248,530548,102891 +h4610,275:6630773,9566295:0,0,0 +g4610,275:10323211,9566295 +g4610,275:11891487,9566295 +k4610,276:15763612,9566295:2696409 +k4610,276:18460021,9566295:2696409 +) +(4610,277:6630773,10434507:11829248,530548,132808 +h4610,276:6630773,10434507:0,0,0 +g4610,276:9493326,10434507 +g4610,276:10663143,10434507 +k4610,277:14950211,10434507:3509811 +k4610,277:18460021,10434507:3509810 +) +(4610,278:6630773,11302719:11829248,530548,102891 +h4610,277:6630773,11302719:0,0,0 +g4610,277:9078384,11302719 +k4610,278:14366891,11302719:4093130 +k4610,278:18460021,11302719:4093130 +) +(4610,279:6630773,12170931:11829248,530548,102891 +h4610,278:6630773,12170931:0,0,0 +g4610,278:13642751,12170931 +k4610,279:16649075,12170931:1810947 +k4610,279:18460021,12170931:1810946 +) +(4610,280:6630773,13039143:11829248,530548,132808 +h4610,279:6630773,13039143:0,0,0 +g4610,279:11982981,13039143 +k4610,280:15819190,13039143:2640832 +k4610,280:18460021,13039143:2640831 +) +(4610,281:6630773,13907355:11829248,530548,132808 +h4610,280:6630773,13907355:0,0,0 +g4610,280:12812866,13907355 +k4610,281:16234132,13907355:2225889 +k4610,281:18460021,13907355:2225889 +) +(4610,282:6630773,14775567:11829248,530548,132808 +h4610,281:6630773,14775567:0,0,0 +g4610,281:11982981,14775567 +k4610,282:15819190,14775567:2640832 +k4610,282:18460021,14775567:2640831 +) +(4610,286:6630773,16351340:11829248,530548,102891 +h4610,285:6630773,16351340:0,0,0 +g4610,285:8248499,16351340 +g4610,285:11339832,16351340 +g4610,285:12908108,16351340 +g4610,285:14476384,16351340 +g4610,285:16044660,16351340 +k4610,285:18460021,16351340:1132822 +) +(4610,286:9252213,17216420:9207808,485622,11795 +k4610,286:14453806,17216420:4006216 +k4610,286:18460021,17216420:4006215 +) +(4610,287:6630773,18084633:11829248,530548,102891 +h4610,286:6630773,18084633:0,0,0 +g4610,286:11568039,18084633 +k4610,287:15611719,18084633:2848303 +k4610,287:18460021,18084633:2848302 +) +(4610,288:6630773,18952845:11829248,538806,102891 +h4610,287:6630773,18952845:0,0,0 +g4610,287:7833557,18952845 +g4610,287:9401833,18952845 +g4610,287:10970109,18952845 +g4610,287:12538385,18952845 +k4610,288:16096892,18952845:2363130 +k4610,288:18460021,18952845:2363129 +) +(4610,289:6630773,19821057:11829248,538806,102891 +h4610,288:6630773,19821057:0,0,0 +g4610,288:9908269,19821057 +g4610,288:11476545,19821057 +k4610,289:15556141,19821057:2903880 +k4610,289:18460021,19821057:2903880 +) +(4610,290:6630773,20689269:11829248,538806,102891 +h4610,289:6630773,20689269:0,0,0 +g4610,289:10323211,20689269 +g4610,289:11891487,20689269 +k4610,290:15773443,20689269:2686579 +k4610,290:18460021,20689269:2686578 +) +(4610,291:6630773,21557481:11829248,538806,102891 +h4610,290:6630773,21557481:0,0,0 +g4610,290:8248499,21557481 +g4610,290:9418316,21557481 +k4610,291:14327797,21557481:4132224 +k4610,291:18460021,21557481:4132224 +) +(4610,292:6630773,22425693:11829248,530548,102891 +h4610,291:6630773,22425693:0,0,0 +g4610,291:11153096,22425693 +k4610,292:15205018,22425693:3255004 +k4610,292:18460021,22425693:3255003 +) +(4610,293:6630773,23293905:11829248,530548,141066 +h4610,292:6630773,23293905:0,0,0 +g4610,292:11982981,23293905 +k4610,293:15809359,23293905:2650662 +k4610,293:18460021,23293905:2650662 +) +(4610,294:6630773,24162117:11829248,485622,132808 +h4610,293:6630773,24162117:0,0,0 +g4610,293:11982981,24162117 +g4610,293:13551257,24162117 +k4610,294:16593497,24162117:1866524 +k4610,294:18460021,24162117:1866524 +) +(4610,295:6630773,25030329:11829248,530548,141066 +h4610,294:6630773,25030329:0,0,0 +g4610,294:14472635,25030329 +g4610,294:16040911,25030329 +k4610,295:17838324,25030329:621697 +k4610,295:18460021,25030329:621697 +) +(4610,296:6630773,25898542:11829248,530548,141066 +h4610,295:6630773,25898542:0,0,0 +g4610,295:9908269,25898542 +g4610,295:11078086,25898542 +g4610,295:12247903,25898542 +g4610,295:13417720,25898542 +g4610,295:14587537,25898542 +k4610,296:16922238,25898542:1537783 +k4610,296:18460021,25898542:1537783 +) +(4610,297:6630773,26766754:11829248,530548,102891 +h4610,296:6630773,26766754:0,0,0 +g4610,296:12397924,26766754 +k4610,297:16026661,26766754:2433360 +k4610,297:18460021,26766754:2433360 +) +(4610,298:6630773,27634966:11829248,530548,102891 +h4610,297:6630773,27634966:0,0,0 +g4610,297:8663442,27634966 +g4610,297:10231718,27634966 +k4610,298:14933728,27634966:3526294 +k4610,298:18460021,27634966:3526293 +) +(4610,299:6630773,28503178:11829248,530548,132808 +h4610,298:6630773,28503178:0,0,0 +g4610,298:11153096,28503178 +k4610,299:15205018,28503178:3255004 +k4610,299:18460021,28503178:3255003 +) +(4610,300:6630773,29371390:11829248,530548,102891 +h4610,299:6630773,29371390:0,0,0 +g4610,299:12812866,29371390 +k4610,300:16034903,29371390:2425119 +k4610,300:18460021,29371390:2425118 +) +(4610,301:6630773,30239602:11829248,538806,102891 +h4610,300:6630773,30239602:0,0,0 +g4610,300:13227808,30239602 +k4610,301:16232543,30239602:2227478 +k4610,301:18460021,30239602:2227478 +) +(4610,302:6630773,31107814:11829248,530548,102891 +h4610,301:6630773,31107814:0,0,0 +g4610,301:11982981,31107814 +g4610,301:13152798,31107814 +k4610,302:16195038,31107814:2264983 +k4610,302:18460021,31107814:2264983 +) +(4610,303:6630773,31976026:11829248,530548,132808 +h4610,302:6630773,31976026:0,0,0 +g4610,302:13642751,31976026 +g4610,302:15211027,31976026 +k4610,303:17433213,31976026:1026809 +k4610,303:18460021,31976026:1026808 +) +(4610,304:6630773,32844238:11829248,530548,102891 +h4610,303:6630773,32844238:0,0,0 +g4610,303:10738154,32844238 +k4610,304:14997547,32844238:3462475 +k4610,304:18460021,32844238:3462474 +) +(4610,305:6630773,33712450:11829248,530548,141066 +h4610,304:6630773,33712450:0,0,0 +g4610,304:11982981,33712450 +k4610,305:15619960,33712450:2840061 +k4610,305:18460021,33712450:2840061 +) +(4610,306:6630773,34580663:11829248,530548,102891 +h4610,305:6630773,34580663:0,0,0 +g4610,305:11568039,34580663 +k4610,306:15402659,34580663:3057363 +k4610,306:18460021,34580663:3057362 +) +(4610,307:6630773,35448875:11829248,530548,102891 +h4610,306:6630773,35448875:0,0,0 +g4610,306:9908269,35448875 +g4610,306:11078086,35448875 +k4610,307:15157682,35448875:3302339 +k4610,307:18460021,35448875:3302339 +) +(4610,308:6630773,36317087:11829248,530548,102891 +h4610,307:6630773,36317087:0,0,0 +g4610,307:11982981,36317087 +g4610,307:13152798,36317087 +k4610,308:16204869,36317087:2255153 +k4610,308:18460021,36317087:2255152 +) +(4610,309:6630773,37185299:11829248,530548,102891 +h4610,308:6630773,37185299:0,0,0 +g4610,308:11568039,37185299 +k4610,309:15611719,37185299:2848303 +k4610,309:18460021,37185299:2848302 +) +(4610,310:6630773,38053511:11829248,530548,102891 +h4610,309:6630773,38053511:0,0,0 +g4610,309:10323211,38053511 +k4610,310:14979474,38053511:3480547 +k4610,310:18460021,38053511:3480547 +) +(4610,314:6630773,39629284:11829248,530548,102891 +h4610,313:6630773,39629284:0,0,0 +g4610,313:11982981,39629284 +k4610,314:15809359,39629284:2650662 +k4610,314:18460021,39629284:2650662 +) +(4610,315:6630773,40497496:11829248,530548,132808 +h4610,314:6630773,40497496:0,0,0 +g4610,314:12812866,40497496 +k4610,315:16234132,40497496:2225889 +k4610,315:18460021,40497496:2225889 +) +(4610,316:6630773,41365708:11829248,530548,102891 +h4610,315:6630773,41365708:0,0,0 +g4610,315:11982981,41365708 +k4610,316:15819190,41365708:2640832 +k4610,316:18460021,41365708:2640831 +) +(4610,317:6630773,42233921:11829248,530548,102891 +h4610,316:6630773,42233921:0,0,0 +g4610,316:14472635,42233921 +k4610,317:17064017,42233921:1396005 +k4610,317:18460021,42233921:1396004 +) +(4610,318:6630773,43102133:11829248,530548,102891 +h4610,317:6630773,43102133:0,0,0 +g4610,317:12812866,43102133 +k4610,318:16234132,43102133:2225889 +k4610,318:18460021,43102133:2225889 +) +(4610,319:6630773,43970345:11829248,530548,132808 +h4610,318:6630773,43970345:0,0,0 +g4610,318:12812866,43970345 +k4610,319:16234132,43970345:2225889 +k4610,319:18460021,43970345:2225889 +) +(4610,320:6630773,44838557:11829248,530548,102891 +h4610,319:6630773,44838557:0,0,0 +g4610,319:11982981,44838557 +k4610,320:15819190,44838557:2640832 +k4610,320:18460021,44838557:2640831 +) +(4610,321:6630773,45706769:11829248,530548,102891 +h4610,320:6630773,45706769:0,0,0 +g4610,320:10323211,45706769 +k4610,321:14989305,45706769:3470717 +k4610,321:18460021,45706769:3470716 +) +] +k4610,376:19606901,45706769:1146880 +r4610,376:19606901,45706769:0,40234515,126483 +k4610,376:20753781,45706769:1146880 +[4610,376:20753781,45706769:11829248,40108032,102891 +(4610,322:20753781,6254097:11829248,530548,102891 +h4610,321:20753781,6254097:0,0,0 +g4610,321:23616334,6254097 +g4610,321:25184610,6254097 +k4610,322:29481508,6254097:3101521 +k4610,322:32583029,6254097:3101521 +) +(4610,323:20753781,7120204:11829248,530548,132808 +h4610,322:20753781,7120204:0,0,0 +g4610,322:24446219,7120204 +g4610,322:26014495,7120204 +g4610,322:27582771,7120204 +k4610,323:30680589,7120204:1902441 +k4610,323:32583029,7120204:1902440 +) +(4610,324:20753781,7986312:11829248,538806,141066 +h4610,323:20753781,7986312:0,0,0 +g4610,323:25691047,7986312 +k4610,324:29724896,7986312:2858133 +k4610,324:32583029,7986312:2858133 +) +(4610,325:20753781,8852419:11829248,530548,141066 +h4610,324:20753781,8852419:0,0,0 +g4610,324:24446219,8852419 +g4610,324:25616036,8852419 +g4610,324:26785853,8852419 +g4610,324:27955670,8852419 +g4610,324:29523946,8852419 +k4610,325:31651176,8852419:931853 +k4610,325:32583029,8852419:931853 +) +(4610,326:20753781,9718527:11829248,485622,102891 +h4610,325:20753781,9718527:0,0,0 +g4610,325:24031277,9718527 +k4610,326:28695782,9718527:3887248 +k4610,326:32583029,9718527:3887247 +) +(4610,327:20753781,10584634:11829248,530548,102891 +h4610,326:20753781,10584634:0,0,0 +g4610,326:24031277,10584634 +k4610,327:28695782,10584634:3887248 +k4610,327:32583029,10584634:3887247 +) +(4610,328:20753781,11450742:11829248,530548,102891 +h4610,327:20753781,11450742:0,0,0 +g4610,327:24446219,11450742 +g4610,327:25616036,11450742 +g4610,327:26785853,11450742 +k4610,328:30282130,11450742:2300900 +k4610,328:32583029,11450742:2300899 +) +(4610,329:20753781,12316849:11829248,530548,102891 +h4610,328:20753781,12316849:0,0,0 +g4610,328:25276104,12316849 +k4610,329:29527255,12316849:3055774 +k4610,329:32583029,12316849:3055774 +) +(4610,330:20753781,13182957:11829248,530548,132808 +h4610,329:20753781,13182957:0,0,0 +g4610,329:24861162,13182957 +g4610,329:26429438,13182957 +g4610,329:27997714,13182957 +g4610,329:29565990,13182957 +k4610,330:31662368,13182957:920662 +k4610,330:32583029,13182957:920661 +) +(4610,331:20753781,14049064:11829248,530548,102891 +h4610,330:20753781,14049064:0,0,0 +g4610,330:24031277,14049064 +k4610,331:28904842,14049064:3678188 +k4610,331:32583029,14049064:3678187 +) +(4610,332:20753781,14915172:11829248,530548,102891 +h4610,331:20753781,14915172:0,0,0 +g4610,331:22786450,14915172 +g4610,331:23956267,14915172 +g4610,331:25524543,14915172 +g4610,331:27092819,14915172 +k4610,332:30435613,14915172:2147417 +k4610,332:32583029,14915172:2147416 +) +(4610,333:20753781,15781279:11829248,530548,102891 +h4610,332:20753781,15781279:0,0,0 +g4610,332:23616334,15781279 +g4610,332:24786151,15781279 +k4610,333:29073219,15781279:3509811 +k4610,333:32583029,15781279:3509810 +) +(4610,334:20753781,16647387:11829248,530548,102891 +h4610,333:20753781,16647387:0,0,0 +g4610,333:25691047,16647387 +k4610,334:29724896,16647387:2858133 +k4610,334:32583029,16647387:2858133 +) +(4610,335:20753781,17513494:11829248,538806,102891 +h4610,334:20753781,17513494:0,0,0 +g4610,334:26105989,17513494 +k4610,335:29932367,17513494:2650662 +k4610,335:32583029,17513494:2650662 +) +(4610,336:20753781,18379602:11829248,530548,102891 +h4610,335:20753781,18379602:0,0,0 +g4610,335:21956565,18379602 +k4610,336:27867486,18379602:4715544 +k4610,336:32583029,18379602:4715543 +) +(4610,338:20753781,19245709:11829248,530548,102891 +h4610,336:20753781,19245709:0,0,0 +g4610,336:22786450,19245709 +g4610,336:24354726,19245709 +g4610,336:25923002,19245709 +g4610,336:27491278,19245709 +g4610,336:29059554,19245709 +g4610,336:30627830,19245709 +k4610,336:32583029,19245709:672660 +) +(4610,338:23375221,20110789:9207808,485622,102891 +g4610,336:24943497,20110789 +g4610,336:26511773,20110789 +g4610,336:28080049,20110789 +k4610,338:30919397,20110789:1663632 +k4610,338:32583029,20110789:1663632 +) +(4610,339:20753781,20976897:11829248,530548,102891 +h4610,338:20753781,20976897:0,0,0 +g4610,338:23616334,20976897 +k4610,339:28697370,20976897:3885659 +k4610,339:32583029,20976897:3885659 +) +(4610,340:20753781,21843004:11829248,530548,102891 +h4610,339:20753781,21843004:0,0,0 +g4610,339:23201392,21843004 +k4610,340:28489899,21843004:4093130 +k4610,340:32583029,21843004:4093130 +) +(4610,341:20753781,22709112:11829248,530548,102891 +h4610,340:20753781,22709112:0,0,0 +g4610,340:24031277,22709112 +k4610,341:28904842,22709112:3678188 +k4610,341:32583029,22709112:3678187 +) +(4610,342:20753781,23575219:11829248,530548,141066 +h4610,341:20753781,23575219:0,0,0 +g4610,341:23201392,23575219 +g4610,341:24371209,23575219 +g4610,341:25939485,23575219 +g4610,341:27507761,23575219 +g4610,341:29076037,23575219 +k4610,342:31427222,23575219:1155808 +k4610,342:32583029,23575219:1155807 +) +(4610,343:20753781,24441327:11829248,530548,141066 +h4610,342:20753781,24441327:0,0,0 +g4610,342:24031277,24441327 +g4610,342:25201094,24441327 +k4610,343:29489750,24441327:3093279 +k4610,343:32583029,24441327:3093279 +) +(4610,344:20753781,25307434:11829248,530548,141066 +h4610,343:20753781,25307434:0,0,0 +g4610,343:23616334,25307434 +k4610,344:28498141,25307434:4084889 +k4610,344:32583029,25307434:4084888 +) +(4610,345:20753781,26173542:11829248,530548,141066 +h4610,344:20753781,26173542:0,0,0 +k4610,344:24025373,26173542:193325 +k4610,344:25189287,26173542:193326 +k4610,344:26353200,26173542:193325 +k4610,344:27517114,26173542:193326 +k4610,344:28681027,26173542:193325 +k4610,344:29844941,26173542:193326 +k4610,344:31407313,26173542:193325 +k4610,345:32583029,26173542:0 +k4610,345:32583029,26173542:0 +) +(4610,346:20753781,27039649:11829248,530548,102891 +h4610,345:20753781,27039649:0,0,0 +g4610,345:22786450,27039649 +g4610,345:23956267,27039649 +k4610,346:28867337,27039649:3715693 +k4610,346:32583029,27039649:3715692 +) +(4610,350:20753781,28578242:11829248,530548,102891 +h4610,349:20753781,28578242:0,0,0 +g4610,349:23201392,28578242 +k4610,350:28489899,28578242:4093130 +k4610,350:32583029,28578242:4093130 +) +(4610,351:20753781,29444349:11829248,530548,102891 +h4610,350:20753781,29444349:0,0,0 +g4610,350:24446219,29444349 +k4610,351:29112313,29444349:3470717 +k4610,351:32583029,29444349:3470716 +) +(4610,352:20753781,30310457:11829248,530548,102891 +h4610,351:20753781,30310457:0,0,0 +g4610,351:24031277,30310457 +k4610,352:28695782,30310457:3887248 +k4610,352:32583029,30310457:3887247 +) +(4610,353:20753781,31176564:11829248,530548,102891 +h4610,352:20753781,31176564:0,0,0 +g4610,352:24861162,31176564 +k4610,353:29309954,31176564:3273076 +k4610,353:32583029,31176564:3273075 +) +(4610,354:20753781,32042672:11829248,530548,102891 +h4610,353:20753781,32042672:0,0,0 +g4610,353:23616334,32042672 +g4610,353:24786151,32042672 +g4610,353:25955968,32042672 +g4610,353:27125785,32042672 +g4610,353:28694061,32042672 +k4610,354:31236234,32042672:1346796 +k4610,354:32583029,32042672:1346795 +) +(4610,355:20753781,32908779:11829248,530548,102891 +h4610,354:20753781,32908779:0,0,0 +g4610,354:24446219,32908779 +g4610,354:25616036,32908779 +g4610,354:26785853,32908779 +g4610,354:28354129,32908779 +k4610,355:31066268,32908779:1516762 +k4610,355:32583029,32908779:1516761 +) +(4610,356:20753781,33774887:11829248,530548,102891 +h4610,355:20753781,33774887:0,0,0 +g4610,355:23201392,33774887 +g4610,355:24769668,33774887 +k4610,356:29274037,33774887:3308992 +k4610,356:32583029,33774887:3308992 +) +(4610,357:20753781,34640994:11829248,530548,102891 +h4610,356:20753781,34640994:0,0,0 +g4610,356:23616334,34640994 +g4610,356:25184610,34640994 +g4610,356:26752886,34640994 +k4610,357:30265646,34640994:2317383 +k4610,357:32583029,34640994:2317383 +) +(4610,358:20753781,35507102:11829248,530548,102891 +h4610,357:20753781,35507102:0,0,0 +g4610,357:24446219,35507102 +k4610,358:29112313,35507102:3470717 +k4610,358:32583029,35507102:3470716 +) +(4610,359:20753781,36373209:11829248,530548,102891 +h4610,358:20753781,36373209:0,0,0 +g4610,358:24861162,36373209 +g4610,358:26429438,36373209 +k4610,359:30103922,36373209:2479107 +k4610,359:32583029,36373209:2479107 +) +(4610,360:20753781,37239317:11829248,530548,141066 +h4610,359:20753781,37239317:0,0,0 +g4610,359:23616334,37239317 +k4610,360:28687540,37239317:3895490 +k4610,360:32583029,37239317:3895489 +) +(4610,361:20753781,38105424:11829248,530548,102891 +h4610,360:20753781,38105424:0,0,0 +g4610,360:23201392,38105424 +g4610,360:24769668,38105424 +k4610,361:29274037,38105424:3308992 +k4610,361:32583029,38105424:3308992 +) +(4610,362:20753781,38971532:11829248,530548,102891 +h4610,361:20753781,38971532:0,0,0 +g4610,361:23616334,38971532 +g4610,361:25184610,38971532 +k4610,362:29481508,38971532:3101521 +k4610,362:32583029,38971532:3101521 +) +(4610,363:20753781,39837639:11829248,538806,102891 +h4610,362:20753781,39837639:0,0,0 +g4610,362:26520932,39837639 +k4610,363:30139839,39837639:2443191 +k4610,363:32583029,39837639:2443190 +) +(4610,364:20753781,40703747:11829248,530548,102891 +h4610,363:20753781,40703747:0,0,0 +g4610,363:26935874,40703747 +g4610,363:28504150,40703747 +k4610,364:31131448,40703747:1451582 +k4610,364:32583029,40703747:1451581 +) +(4610,365:20753781,41569854:11829248,530548,102891 +h4610,364:20753781,41569854:0,0,0 +g4610,364:24861162,41569854 +k4610,365:29110724,41569854:3472305 +k4610,365:32583029,41569854:3472305 +) +(4610,366:20753781,42435962:11829248,530548,102891 +h4610,365:20753781,42435962:0,0,0 +g4610,365:25276104,42435962 +k4610,366:29318195,42435962:3264834 +k4610,366:32583029,42435962:3264834 +) +(4610,367:20753781,43302069:11829248,485622,102891 +h4610,366:20753781,43302069:0,0,0 +g4610,366:23616334,43302069 +k4610,367:28697370,43302069:3885659 +k4610,367:32583029,43302069:3885659 +) +(4610,368:20753781,44168177:11829248,530548,102891 +h4610,367:20753781,44168177:0,0,0 +g4610,367:24446219,44168177 +g4610,367:26014495,44168177 +k4610,368:29896451,44168177:2686579 +k4610,368:32583029,44168177:2686578 +) +(4610,372:20753781,45706769:11829248,485622,102891 +h4610,371:20753781,45706769:0,0,0 +g4610,371:21956565,45706769 +g4610,371:23126382,45706769 +g4610,371:24296199,45706769 +k4610,372:28838073,45706769:3744956 +k4610,372:32583029,45706769:3744956 +) +] +(4610,376:32583029,45706769:0,355205,126483 +h4610,376:32583029,45706769:420741,355205,126483 +k4610,376:32583029,45706769:-420741 +) +) +] +(4610,376:32583029,45706769:0,0,0 +g4610,376:32583029,45706769 +) +) +] +(4610,376:6630773,47279633:25952256,0,0 +h4610,376:6630773,47279633:25952256,0,0 +) +] +(4610,376:4262630,4025873:0,0,0 +[4610,376:-473656,4025873:0,0,0 +(4610,376:-473656,-710413:0,0,0 +(4610,376:-473656,-710413:0,0,0 +g4610,376:-473656,-710413 ) -g4606,376:-473656,-710413 +g4610,376:-473656,-710413 ) ] ) ] !22515 -}449 +}450 !12 -{450 -[4606,476:4262630,47279633:28320399,43253760,0 -(4606,476:4262630,4025873:0,0,0 -[4606,476:-473656,4025873:0,0,0 -(4606,476:-473656,-710413:0,0,0 -(4606,476:-473656,-644877:0,0,0 -k4606,476:-473656,-644877:-65536 +{451 +[4610,476:4262630,47279633:28320399,43253760,0 +(4610,476:4262630,4025873:0,0,0 +[4610,476:-473656,4025873:0,0,0 +(4610,476:-473656,-710413:0,0,0 +(4610,476:-473656,-644877:0,0,0 +k4610,476:-473656,-644877:-65536 ) -(4606,476:-473656,4736287:0,0,0 -k4606,476:-473656,4736287:5209943 +(4610,476:-473656,4736287:0,0,0 +k4610,476:-473656,4736287:5209943 ) -g4606,476:-473656,-710413 +g4610,476:-473656,-710413 ) ] ) -[4606,476:6630773,47279633:25952256,43253760,0 -[4606,476:6630773,4812305:25952256,786432,0 -(4606,476:6630773,4812305:25952256,513147,126483 -(4606,476:6630773,4812305:25952256,513147,126483 -g4606,476:3078558,4812305 -[4606,476:3078558,4812305:0,0,0 -(4606,476:3078558,2439708:0,1703936,0 -k4606,476:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,476:2537886,2439708:1179648,16384,0 +[4610,476:6630773,47279633:25952256,43253760,0 +[4610,476:6630773,4812305:25952256,786432,0 +(4610,476:6630773,4812305:25952256,513147,126483 +(4610,476:6630773,4812305:25952256,513147,126483 +g4610,476:3078558,4812305 +[4610,476:3078558,4812305:0,0,0 +(4610,476:3078558,2439708:0,1703936,0 +k4610,476:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,476:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,476:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,476:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,476:3078558,4812305:0,0,0 -(4606,476:3078558,2439708:0,1703936,0 -g4606,476:29030814,2439708 -g4606,476:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,476:36151628,1915420:16384,1179648,0 +[4610,476:3078558,4812305:0,0,0 +(4610,476:3078558,2439708:0,1703936,0 +g4610,476:29030814,2439708 +g4610,476:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,476:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,476:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,476:37855564,2439708:1179648,16384,0 ) ) -k4606,476:3078556,2439708:-34777008 +k4610,476:3078556,2439708:-34777008 ) ] -[4606,476:3078558,4812305:0,0,0 -(4606,476:3078558,49800853:0,16384,2228224 -k4606,476:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,476:2537886,49800853:1179648,16384,0 +[4610,476:3078558,4812305:0,0,0 +(4610,476:3078558,49800853:0,16384,2228224 +k4610,476:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,476:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,476:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,476:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,476:3078558,4812305:0,0,0 -(4606,476:3078558,49800853:0,16384,2228224 -g4606,476:29030814,49800853 -g4606,476:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,476:36151628,51504789:16384,1179648,0 +[4610,476:3078558,4812305:0,0,0 +(4610,476:3078558,49800853:0,16384,2228224 +g4610,476:29030814,49800853 +g4610,476:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,476:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,476:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,476:37855564,49800853:1179648,16384,0 ) ) -k4606,476:3078556,49800853:-34777008 +k4610,476:3078556,49800853:-34777008 ) ] -g4606,476:6630773,4812305 -g4606,476:6630773,4812305 -g4606,476:10190688,4812305 -g4606,476:12088610,4812305 -g4606,476:12903877,4812305 -g4606,476:13517294,4812305 -g4606,476:15860861,4812305 -k4606,476:31387652,4812305:15526791 -) -) -] -[4606,476:6630773,45706769:25952256,40108032,0 -(4606,476:6630773,45706769:25952256,40108032,0 -(4606,476:6630773,45706769:0,0,0 -g4606,476:6630773,45706769 -) -[4606,476:6630773,45706769:25952256,40108032,0 -(4606,476:6630773,45706769:25952256,40108032,132808 -[4606,476:6630773,45706769:11829248,40108032,132808 -(4606,373:6630773,6254097:11829248,530548,102891 -h4606,372:6630773,6254097:0,0,0 -g4606,372:12397924,6254097 -k4606,373:15827432,6254097:2632590 -k4606,373:18460021,6254097:2632589 +g4610,476:6630773,4812305 +g4610,476:6630773,4812305 +g4610,476:10190688,4812305 +g4610,476:12088610,4812305 +g4610,476:12903877,4812305 +g4610,476:13517294,4812305 +g4610,476:15860861,4812305 +k4610,476:31387652,4812305:15526791 +) +) +] +[4610,476:6630773,45706769:25952256,40108032,0 +(4610,476:6630773,45706769:25952256,40108032,0 +(4610,476:6630773,45706769:0,0,0 +g4610,476:6630773,45706769 +) +[4610,476:6630773,45706769:25952256,40108032,0 +(4610,476:6630773,45706769:25952256,40108032,132808 +[4610,476:6630773,45706769:11829248,40108032,132808 +(4610,373:6630773,6254097:11829248,530548,102891 +h4610,372:6630773,6254097:0,0,0 +g4610,372:12397924,6254097 +k4610,373:15827432,6254097:2632590 +k4610,373:18460021,6254097:2632589 ) -(4606,374:6630773,7120204:11829248,530548,102891 -h4606,373:6630773,7120204:0,0,0 -g4606,373:10323211,7120204 -k4606,374:14790075,7120204:3669946 -k4606,374:18460021,7120204:3669946 -) -(4606,375:6630773,7986312:11829248,530548,102891 -h4606,374:6630773,7986312:0,0,0 -g4606,374:9908269,7986312 -g4606,374:11078086,7986312 -g4606,374:12646362,7986312 -g4606,374:14214638,7986312 -g4606,374:15782914,7986312 -k4606,375:17719156,7986312:740865 -k4606,375:18460021,7986312:740865 -) -(4606,376:6630773,8852419:11829248,530548,102891 -h4606,375:6630773,8852419:0,0,0 -g4606,375:10738154,8852419 -g4606,375:12306430,8852419 -g4606,375:13874706,8852419 -k4606,376:16755222,8852419:1704800 -k4606,376:18460021,8852419:1704799 -) -(4606,377:6630773,9718527:11829248,485622,102891 -h4606,376:6630773,9718527:0,0,0 -g4606,376:8248499,9718527 -k4606,377:13752719,9718527:4707302 -k4606,377:18460021,9718527:4707302 -) -(4606,378:6630773,10584634:11829248,530548,132808 -h4606,377:6630773,10584634:0,0,0 -g4606,377:10738154,10584634 -k4606,378:15186946,10584634:3273076 -k4606,378:18460021,10584634:3273075 -) -(4606,379:6630773,11450742:11829248,530548,102891 -h4606,378:6630773,11450742:0,0,0 -g4606,378:9908269,11450742 -k4606,379:14582604,11450742:3877417 -k4606,379:18460021,11450742:3877417 -) -(4606,380:6630773,12316849:11829248,530548,102891 -h4606,379:6630773,12316849:0,0,0 -g4606,379:9493326,12316849 -g4606,379:10663143,12316849 -k4606,380:15159271,12316849:3300751 -k4606,380:18460021,12316849:3300750 -) -(4606,381:6630773,13182957:11829248,530548,141066 -h4606,380:6630773,13182957:0,0,0 -g4606,380:11568039,13182957 -k4606,381:15601888,13182957:2858133 -k4606,381:18460021,13182957:2858133 -) -(4606,382:6630773,14049064:11829248,530548,102891 -h4606,381:6630773,14049064:0,0,0 -g4606,381:9493326,14049064 -g4606,381:11061602,14049064 -k4606,382:15358500,14049064:3101521 -k4606,382:18460021,14049064:3101521 -) -(4606,383:6630773,14915172:11829248,530548,102891 -h4606,382:6630773,14915172:0,0,0 -g4606,382:8663442,14915172 -k4606,383:14149590,14915172:4310432 -k4606,383:18460021,14915172:4310431 -) -(4606,384:6630773,15781279:11829248,530548,102891 -h4606,383:6630773,15781279:0,0,0 -g4606,383:8248499,15781279 -k4606,384:13942118,15781279:4517903 -k4606,384:18460021,15781279:4517903 -) -(4606,385:6630773,16647387:11829248,530548,102891 -h4606,384:6630773,16647387:0,0,0 -g4606,384:9078384,16647387 -g4606,384:10646660,16647387 -k4606,385:15151029,16647387:3308992 -k4606,385:18460021,16647387:3308992 -) -(4606,386:6630773,17513494:11829248,485622,102891 -h4606,385:6630773,17513494:0,0,0 -g4606,385:9493326,17513494 -k4606,386:14574362,17513494:3885659 -k4606,386:18460021,17513494:3885659 -) -(4606,387:6630773,18379602:11829248,530548,132808 -h4606,386:6630773,18379602:0,0,0 -g4606,386:8248499,18379602 -k4606,387:13951949,18379602:4508073 -k4606,387:18460021,18379602:4508072 -) -(4606,388:6630773,19245709:11829248,530548,102891 -h4606,387:6630773,19245709:0,0,0 -g4606,387:9493326,19245709 -g4606,387:10663143,19245709 -k4606,388:15159271,19245709:3300751 -k4606,388:18460021,19245709:3300750 -) -(4606,389:6630773,20111817:11829248,530548,102891 -h4606,388:6630773,20111817:0,0,0 -g4606,388:9908269,20111817 -g4606,388:11078086,20111817 -g4606,388:12247903,20111817 -g4606,388:13417720,20111817 -g4606,388:14587537,20111817 -g4606,388:16155813,20111817 -k4606,389:17895775,20111817:564246 -k4606,389:18460021,20111817:564246 -) -(4606,390:6630773,20977924:11829248,530548,102891 -h4606,389:6630773,20977924:0,0,0 -g4606,389:10738154,20977924 -k4606,390:14997547,20977924:3462475 -k4606,390:18460021,20977924:3462474 -) -(4606,394:6630773,22516517:11829248,530548,141066 -h4606,393:6630773,22516517:0,0,0 -g4606,393:10738154,22516517 -g4606,393:11907971,22516517 -g4606,393:13476247,22516517 -k4606,394:16565823,22516517:1894199 -k4606,394:18460021,22516517:1894198 -) -(4606,395:6630773,23382624:11829248,530548,102891 -h4606,394:6630773,23382624:0,0,0 -g4606,394:10738154,23382624 -k4606,395:15186946,23382624:3273076 -k4606,395:18460021,23382624:3273075 -) -(4606,396:6630773,24248732:11829248,530548,132808 -h4606,395:6630773,24248732:0,0,0 -g4606,395:10738154,24248732 -k4606,396:15186946,24248732:3273076 -k4606,396:18460021,24248732:3273075 -) -(4606,397:6630773,25114839:11829248,530548,132808 -h4606,396:6630773,25114839:0,0,0 -g4606,396:10738154,25114839 -k4606,397:15196776,25114839:3263245 -k4606,397:18460021,25114839:3263245 -) -(4606,398:6630773,25980947:11829248,485622,141066 -h4606,397:6630773,25980947:0,0,0 -g4606,397:9493326,25980947 -k4606,398:14574362,25980947:3885659 -k4606,398:18460021,25980947:3885659 -) -(4606,399:6630773,26847054:11829248,530548,102891 -h4606,398:6630773,26847054:0,0,0 -g4606,398:9908269,26847054 -g4606,398:11078086,26847054 -g4606,398:12247903,26847054 -g4606,398:13816179,26847054 -g4606,398:15384455,26847054 -k4606,399:17519927,26847054:940095 -k4606,399:18460021,26847054:940094 -) -(4606,400:6630773,27713162:11829248,530548,102891 -h4606,399:6630773,27713162:0,0,0 -g4606,399:10738154,27713162 -g4606,399:11907971,27713162 -k4606,400:15781685,27713162:2678337 -k4606,400:18460021,27713162:2678336 -) -(4606,404:6630773,29251754:11829248,530548,141066 -h4606,403:6630773,29251754:0,0,0 -g4606,403:11153096,29251754 -k4606,404:15404247,29251754:3055774 -k4606,404:18460021,29251754:3055774 -) -(4606,405:6630773,30117862:11829248,530548,141066 -h4606,404:6630773,30117862:0,0,0 -g4606,404:12812866,30117862 -k4606,405:16234132,30117862:2225889 -k4606,405:18460021,30117862:2225889 -) -(4606,406:6630773,30983969:11829248,530548,132808 -h4606,405:6630773,30983969:0,0,0 -g4606,405:14057693,30983969 -k4606,406:16856546,30983969:1603476 -k4606,406:18460021,30983969:1603475 -) -(4606,407:6630773,31850077:11829248,530548,132808 -h4606,406:6630773,31850077:0,0,0 -g4606,406:9908269,31850077 -g4606,406:11476545,31850077 -k4606,407:15556141,31850077:2903880 -k4606,407:18460021,31850077:2903880 -) -(4606,408:6630773,32716184:11829248,530548,132808 -h4606,407:6630773,32716184:0,0,0 -g4606,407:9908269,32716184 -g4606,407:11078086,32716184 -g4606,407:12247903,32716184 -g4606,407:13816179,32716184 -k4606,408:16735789,32716184:1724233 -k4606,408:18460021,32716184:1724232 -) -(4606,409:6630773,33582292:11829248,530548,132808 -h4606,408:6630773,33582292:0,0,0 -g4606,408:10323211,33582292 -k4606,409:14989305,33582292:3470717 -k4606,409:18460021,33582292:3470716 -) -(4606,410:6630773,34448399:11829248,530548,132808 -h4606,409:6630773,34448399:0,0,0 -g4606,409:10323211,34448399 -k4606,410:14989305,34448399:3470717 -k4606,410:18460021,34448399:3470716 -) -(4606,411:6630773,35314507:11829248,538806,132808 -h4606,410:6630773,35314507:0,0,0 -g4606,410:8663442,35314507 -k4606,411:14159420,35314507:4300601 -k4606,411:18460021,35314507:4300601 -) -(4606,412:6630773,36180614:11829248,530548,132808 -h4606,411:6630773,36180614:0,0,0 -g4606,411:7833557,36180614 -k4606,412:13545248,36180614:4914773 -k4606,412:18460021,36180614:4914773 -) -(4606,413:6630773,37046722:11829248,530548,141066 -h4606,412:6630773,37046722:0,0,0 -g4606,412:12812866,37046722 -g4606,412:14381142,37046722 -k4606,413:17018270,37046722:1441751 -k4606,413:18460021,37046722:1441751 -) -(4606,414:6630773,37912829:11829248,530548,132808 -h4606,413:6630773,37912829:0,0,0 -g4606,413:12397924,37912829 -k4606,414:16026661,37912829:2433360 -k4606,414:18460021,37912829:2433360 -) -(4606,415:6630773,38778937:11829248,530548,141066 -h4606,414:6630773,38778937:0,0,0 -g4606,414:12397924,38778937 -g4606,414:13966200,38778937 -k4606,415:16810799,38778937:1649222 -k4606,415:18460021,38778937:1649222 -) -(4606,416:6630773,39645044:11829248,530548,132808 -h4606,415:6630773,39645044:0,0,0 -g4606,415:9908269,39645044 -k4606,416:14772003,39645044:3688018 -k4606,416:18460021,39645044:3688018 -) -(4606,417:6630773,40511152:11829248,530548,132808 -h4606,416:6630773,40511152:0,0,0 -g4606,416:10323211,40511152 -k4606,417:14989305,40511152:3470717 -k4606,417:18460021,40511152:3470716 -) -(4606,418:6630773,41377259:11829248,530548,132808 -h4606,417:6630773,41377259:0,0,0 -g4606,417:9493326,41377259 -g4606,417:12584659,41377259 -g4606,417:14152935,41377259 -g4606,417:15721211,41377259 -k4606,417:18460021,41377259:1456271 -) -(4606,418:9252213,42242339:9207808,485622,102891 -g4606,417:10820489,42242339 -g4606,417:12388765,42242339 -k4606,418:16022082,42242339:2437940 -k4606,418:18460021,42242339:2437939 -) -(4606,419:6630773,43108447:11829248,530548,132808 -h4606,418:6630773,43108447:0,0,0 -g4606,418:10323211,43108447 -k4606,419:14780245,43108447:3679777 -k4606,419:18460021,43108447:3679776 -) -(4606,420:6630773,43974554:11829248,530548,132808 -h4606,419:6630773,43974554:0,0,0 -g4606,419:11568039,43974554 -k4606,420:15611719,43974554:2848303 -k4606,420:18460021,43974554:2848302 -) -(4606,421:6630773,44840662:11829248,530548,132808 -h4606,420:6630773,44840662:0,0,0 -g4606,420:9908269,44840662 -g4606,420:11476545,44840662 -k4606,421:15556141,44840662:2903880 -k4606,421:18460021,44840662:2903880 -) -(4606,422:6630773,45706769:11829248,530548,132808 -h4606,421:6630773,45706769:0,0,0 -g4606,421:10323211,45706769 -k4606,422:14989305,45706769:3470717 -k4606,422:18460021,45706769:3470716 -) -] -k4606,476:19606901,45706769:1146880 -r4606,476:19606901,45706769:0,40240840,132808 -k4606,476:20753781,45706769:1146880 -[4606,476:20753781,45706769:11829248,40108032,102891 -(4606,423:20753781,6254097:11829248,530548,132808 -h4606,422:20753781,6254097:0,0,0 -g4606,422:23616334,6254097 -k4606,423:28687540,6254097:3895490 -k4606,423:32583029,6254097:3895489 -) -(4606,424:20753781,7120218:11829248,530548,141066 -h4606,423:20753781,7120218:0,0,0 -g4606,423:27765759,7120218 -k4606,424:30772083,7120218:1810947 -k4606,424:32583029,7120218:1810946 -) -(4606,425:20753781,7986339:11829248,538806,132808 -h4606,424:20753781,7986339:0,0,0 -g4606,424:27350816,7986339 -k4606,425:30564611,7986339:2018418 -k4606,425:32583029,7986339:2018418 -) -(4606,426:20753781,8852460:11829248,530548,132808 -h4606,425:20753781,8852460:0,0,0 -g4606,425:29010586,8852460 -g4606,425:30578862,8852460 -k4606,426:32168804,8852460:414226 -k4606,426:32583029,8852460:414225 -) -(4606,427:20753781,9718582:11829248,530548,141066 -h4606,426:20753781,9718582:0,0,0 -g4606,426:28180701,9718582 -g4606,426:29748977,9718582 -k4606,427:31763692,9718582:819338 -k4606,427:32583029,9718582:819337 -) -(4606,428:20753781,10584703:11829248,530548,141066 -h4606,427:20753781,10584703:0,0,0 -g4606,427:27765759,10584703 -k4606,428:30772083,10584703:1810947 -k4606,428:32583029,10584703:1810946 -) -(4606,429:20753781,11450824:11829248,530548,132808 -h4606,428:20753781,11450824:0,0,0 -g4606,428:27765759,11450824 -g4606,428:29334035,11450824 -g4606,428:30902311,11450824 -k4606,428:32583029,11450824:398179 -) -(4606,429:23375221,12315904:9207808,485622,11795 -k4606,429:28576814,12315904:4006216 -k4606,429:32583029,12315904:4006215 -) -(4606,430:20753781,13182025:11829248,485622,102891 -h4606,429:20753781,13182025:0,0,0 -g4606,429:24031277,13182025 -g4606,429:25201094,13182025 -g4606,429:26769370,13182025 -k4606,430:30273888,13182025:2309141 -k4606,430:32583029,13182025:2309141 -) -(4606,431:20753781,14048146:11829248,530548,102891 -h4606,430:20753781,14048146:0,0,0 -g4606,430:24031277,14048146 -g4606,430:25201094,14048146 -k4606,431:29489750,14048146:3093279 -k4606,431:32583029,14048146:3093279 -) -(4606,432:20753781,14914267:11829248,530548,132808 -h4606,431:20753781,14914267:0,0,0 -g4606,431:24031277,14914267 -k4606,432:28904842,14914267:3678188 -k4606,432:32583029,14914267:3678187 -) -(4606,433:20753781,15780388:11829248,530548,132808 -h4606,432:20753781,15780388:0,0,0 -g4606,432:24446219,15780388 -g4606,432:26014495,15780388 -k4606,433:29896451,15780388:2686579 -k4606,433:32583029,15780388:2686578 -) -(4606,434:20753781,16646510:11829248,530548,132808 -h4606,433:20753781,16646510:0,0,0 -g4606,433:24861162,16646510 -g4606,433:26429438,16646510 -k4606,434:30094092,16646510:2488938 -k4606,434:32583029,16646510:2488937 -) -(4606,435:20753781,17512631:11829248,530548,132808 -h4606,434:20753781,17512631:0,0,0 -g4606,434:27350816,17512631 -k4606,435:30554781,17512631:2028249 -k4606,435:32583029,17512631:2028248 -) -(4606,437:20753781,18378752:11829248,530548,132808 -h4606,435:20753781,18378752:0,0,0 -g4606,435:24031277,18378752 -g4606,435:25201094,18378752 -g4606,435:26370911,18378752 -g4606,435:27540728,18378752 -g4606,435:28710545,18378752 -g4606,435:30278821,18378752 -k4606,435:32583029,18378752:1021669 -) -(4606,437:23375221,19243832:9207808,485622,102891 -g4606,435:24923836,19243832 -g4606,435:26492112,19243832 -g4606,435:28060388,19243832 -k4606,437:30919397,19243832:1663632 -k4606,437:32583029,19243832:1663632 -) -(4606,438:20753781,20109953:11829248,530548,132808 -h4606,437:20753781,20109953:0,0,0 -g4606,437:23616334,20109953 -k4606,438:28697370,20109953:3885659 -k4606,438:32583029,20109953:3885659 -) -(4606,439:20753781,20976074:11829248,530548,132808 -h4606,438:20753781,20976074:0,0,0 -g4606,438:22786450,20976074 -g4606,438:24354726,20976074 -g4606,438:25923002,20976074 -g4606,438:27491278,20976074 -k4606,439:30625012,20976074:1958018 -k4606,439:32583029,20976074:1958017 -) -(4606,440:20753781,21842195:11829248,538806,132808 -h4606,439:20753781,21842195:0,0,0 -g4606,439:24031277,21842195 -k4606,440:28904842,21842195:3678188 -k4606,440:32583029,21842195:3678187 -) -(4606,441:20753781,22708316:11829248,530548,132808 -h4606,440:20753781,22708316:0,0,0 -g4606,440:24861162,22708316 -g4606,440:26429438,22708316 -k4606,441:30103922,22708316:2479107 -k4606,441:32583029,22708316:2479107 -) -(4606,445:20753781,24247150:11829248,530548,132808 -h4606,444:20753781,24247150:0,0,0 -g4606,444:24446219,24247150 -k4606,445:29112313,24247150:3470717 -k4606,445:32583029,24247150:3470716 -) -(4606,446:20753781,25113271:11829248,530548,132808 -h4606,445:20753781,25113271:0,0,0 -g4606,445:24446219,25113271 -k4606,446:29112313,25113271:3470717 -k4606,446:32583029,25113271:3470716 -) -(4606,447:20753781,25979392:11829248,538806,132808 -h4606,446:20753781,25979392:0,0,0 -g4606,446:22786450,25979392 -k4606,447:28282428,25979392:4300601 -k4606,447:32583029,25979392:4300601 -) -(4606,448:20753781,26845513:11829248,530548,132808 -h4606,447:20753781,26845513:0,0,0 -g4606,447:24446219,26845513 -k4606,448:29112313,26845513:3470717 -k4606,448:32583029,26845513:3470716 -) -(4606,449:20753781,27711634:11829248,530548,132808 -h4606,448:20753781,27711634:0,0,0 -g4606,448:25691047,27711634 -k4606,449:29734727,27711634:2848303 -k4606,449:32583029,27711634:2848302 -) -(4606,450:20753781,28577755:11829248,530548,132808 -h4606,449:20753781,28577755:0,0,0 -g4606,449:24031277,28577755 -g4606,449:25599553,28577755 -k4606,450:29679149,28577755:2903880 -k4606,450:32583029,28577755:2903880 -) -(4606,451:20753781,29443876:11829248,530548,132808 -h4606,450:20753781,29443876:0,0,0 -g4606,450:24031277,29443876 -k4606,451:28904842,29443876:3678188 -k4606,451:32583029,29443876:3678187 -) -(4606,452:20753781,30309998:11829248,530548,132808 -h4606,451:20753781,30309998:0,0,0 -g4606,451:22786450,30309998 -k4606,452:28282428,30309998:4300601 -k4606,452:32583029,30309998:4300601 -) -(4606,453:20753781,31176119:11829248,530548,132808 -h4606,452:20753781,31176119:0,0,0 -g4606,452:25276104,31176119 -k4606,453:29527255,31176119:3055774 -k4606,453:32583029,31176119:3055774 -) -(4606,454:20753781,32042240:11829248,538806,132808 -h4606,453:20753781,32042240:0,0,0 -g4606,453:24031277,32042240 -k4606,454:28904842,32042240:3678188 -k4606,454:32583029,32042240:3678187 -) -(4606,458:20753781,33581073:11829248,530548,141066 -h4606,457:20753781,33581073:0,0,0 -g4606,457:24031277,33581073 -k4606,458:28904842,33581073:3678188 -k4606,458:32583029,33581073:3678187 -) -(4606,459:20753781,34447194:11829248,530548,102891 -h4606,458:20753781,34447194:0,0,0 -g4606,458:24031277,34447194 -k4606,459:28904842,34447194:3678188 -k4606,459:32583029,34447194:3678187 -) -(4606,460:20753781,35313315:11829248,530548,102891 -h4606,459:20753781,35313315:0,0,0 -g4606,459:24446219,35313315 -k4606,460:29112313,35313315:3470717 -k4606,460:32583029,35313315:3470716 -) -(4606,461:20753781,36179436:11829248,530548,132808 -h4606,460:20753781,36179436:0,0,0 -g4606,460:24446219,36179436 -k4606,461:29112313,36179436:3470717 -k4606,461:32583029,36179436:3470716 -) -(4606,462:20753781,37045558:11829248,530548,102891 -h4606,461:20753781,37045558:0,0,0 -g4606,461:24446219,37045558 -k4606,462:29112313,37045558:3470717 -k4606,462:32583029,37045558:3470716 -) -(4606,463:20753781,37911679:11829248,530548,102891 -h4606,462:20753781,37911679:0,0,0 -g4606,462:25276104,37911679 -g4606,462:28367437,37911679 -g4606,462:29935713,37911679 -k4606,463:31857060,37911679:725970 -k4606,463:32583029,37911679:725969 -) -(4606,464:20753781,38777800:11829248,530548,102891 -h4606,463:20753781,38777800:0,0,0 -g4606,463:25691047,38777800 -g4606,463:27259323,38777800 -g4606,463:28827599,38777800 -k4606,464:31293172,38777800:1289857 -k4606,464:32583029,38777800:1289857 -) -(4606,465:20753781,39643921:11829248,538806,102891 -h4606,464:20753781,39643921:0,0,0 -g4606,464:26935874,39643921 -g4606,464:28504150,39643921 -k4606,465:31141278,39643921:1441751 -k4606,465:32583029,39643921:1441751 -) -(4606,466:20753781,40510042:11829248,538806,102891 -h4606,465:20753781,40510042:0,0,0 -g4606,465:25276104,40510042 -k4606,466:29527255,40510042:3055774 -k4606,466:32583029,40510042:3055774 -) -(4606,467:20753781,41376163:11829248,530548,132808 -h4606,466:20753781,41376163:0,0,0 -g4606,466:25691047,41376163 -k4606,467:29724896,41376163:2858133 -k4606,467:32583029,41376163:2858133 -) -(4606,468:20753781,42242284:11829248,530548,132808 -h4606,467:20753781,42242284:0,0,0 -g4606,467:26520932,42242284 -k4606,468:30149669,42242284:2433360 -k4606,468:32583029,42242284:2433360 -) -(4606,469:20753781,43108406:11829248,530548,102891 -h4606,468:20753781,43108406:0,0,0 -g4606,468:26105989,43108406 -g4606,468:27674265,43108406 -k4606,469:31487864,43108406:1095166 -k4606,469:32583029,43108406:1095165 -) -(4606,470:20753781,43974527:11829248,530548,102891 -h4606,469:20753781,43974527:0,0,0 -g4606,469:25691047,43974527 -k4606,470:29734727,43974527:2848303 -k4606,470:32583029,43974527:2848302 -) -(4606,471:20753781,44840648:11829248,530548,102891 -h4606,470:20753781,44840648:0,0,0 -g4606,470:25276104,44840648 -g4606,470:26844380,44840648 -k4606,471:30311393,44840648:2271636 -k4606,471:32583029,44840648:2271636 -) -(4606,472:20753781,45706769:11829248,530548,102891 -h4606,471:20753781,45706769:0,0,0 -g4606,471:26105989,45706769 -k4606,472:29942198,45706769:2640832 -k4606,472:32583029,45706769:2640831 -) -] -(4606,476:32583029,45706769:0,355205,126483 -h4606,476:32583029,45706769:420741,355205,126483 -k4606,476:32583029,45706769:-420741 -) -) -] -(4606,476:32583029,45706769:0,0,0 -g4606,476:32583029,45706769 -) -) -] -(4606,476:6630773,47279633:25952256,0,0 -h4606,476:6630773,47279633:25952256,0,0 +(4610,374:6630773,7120204:11829248,530548,102891 +h4610,373:6630773,7120204:0,0,0 +g4610,373:10323211,7120204 +k4610,374:14790075,7120204:3669946 +k4610,374:18460021,7120204:3669946 +) +(4610,375:6630773,7986312:11829248,530548,102891 +h4610,374:6630773,7986312:0,0,0 +g4610,374:9908269,7986312 +g4610,374:11078086,7986312 +g4610,374:12646362,7986312 +g4610,374:14214638,7986312 +g4610,374:15782914,7986312 +k4610,375:17719156,7986312:740865 +k4610,375:18460021,7986312:740865 +) +(4610,376:6630773,8852419:11829248,530548,102891 +h4610,375:6630773,8852419:0,0,0 +g4610,375:10738154,8852419 +g4610,375:12306430,8852419 +g4610,375:13874706,8852419 +k4610,376:16755222,8852419:1704800 +k4610,376:18460021,8852419:1704799 +) +(4610,377:6630773,9718527:11829248,485622,102891 +h4610,376:6630773,9718527:0,0,0 +g4610,376:8248499,9718527 +k4610,377:13752719,9718527:4707302 +k4610,377:18460021,9718527:4707302 +) +(4610,378:6630773,10584634:11829248,530548,132808 +h4610,377:6630773,10584634:0,0,0 +g4610,377:10738154,10584634 +k4610,378:15186946,10584634:3273076 +k4610,378:18460021,10584634:3273075 +) +(4610,379:6630773,11450742:11829248,530548,102891 +h4610,378:6630773,11450742:0,0,0 +g4610,378:9908269,11450742 +k4610,379:14582604,11450742:3877417 +k4610,379:18460021,11450742:3877417 +) +(4610,380:6630773,12316849:11829248,530548,102891 +h4610,379:6630773,12316849:0,0,0 +g4610,379:9493326,12316849 +g4610,379:10663143,12316849 +k4610,380:15159271,12316849:3300751 +k4610,380:18460021,12316849:3300750 +) +(4610,381:6630773,13182957:11829248,530548,141066 +h4610,380:6630773,13182957:0,0,0 +g4610,380:11568039,13182957 +k4610,381:15601888,13182957:2858133 +k4610,381:18460021,13182957:2858133 +) +(4610,382:6630773,14049064:11829248,530548,102891 +h4610,381:6630773,14049064:0,0,0 +g4610,381:9493326,14049064 +g4610,381:11061602,14049064 +k4610,382:15358500,14049064:3101521 +k4610,382:18460021,14049064:3101521 +) +(4610,383:6630773,14915172:11829248,530548,102891 +h4610,382:6630773,14915172:0,0,0 +g4610,382:8663442,14915172 +k4610,383:14149590,14915172:4310432 +k4610,383:18460021,14915172:4310431 +) +(4610,384:6630773,15781279:11829248,530548,102891 +h4610,383:6630773,15781279:0,0,0 +g4610,383:8248499,15781279 +k4610,384:13942118,15781279:4517903 +k4610,384:18460021,15781279:4517903 +) +(4610,385:6630773,16647387:11829248,530548,102891 +h4610,384:6630773,16647387:0,0,0 +g4610,384:9078384,16647387 +g4610,384:10646660,16647387 +k4610,385:15151029,16647387:3308992 +k4610,385:18460021,16647387:3308992 +) +(4610,386:6630773,17513494:11829248,485622,102891 +h4610,385:6630773,17513494:0,0,0 +g4610,385:9493326,17513494 +k4610,386:14574362,17513494:3885659 +k4610,386:18460021,17513494:3885659 +) +(4610,387:6630773,18379602:11829248,530548,132808 +h4610,386:6630773,18379602:0,0,0 +g4610,386:8248499,18379602 +k4610,387:13951949,18379602:4508073 +k4610,387:18460021,18379602:4508072 +) +(4610,388:6630773,19245709:11829248,530548,102891 +h4610,387:6630773,19245709:0,0,0 +g4610,387:9493326,19245709 +g4610,387:10663143,19245709 +k4610,388:15159271,19245709:3300751 +k4610,388:18460021,19245709:3300750 +) +(4610,389:6630773,20111817:11829248,530548,102891 +h4610,388:6630773,20111817:0,0,0 +g4610,388:9908269,20111817 +g4610,388:11078086,20111817 +g4610,388:12247903,20111817 +g4610,388:13417720,20111817 +g4610,388:14587537,20111817 +g4610,388:16155813,20111817 +k4610,389:17895775,20111817:564246 +k4610,389:18460021,20111817:564246 +) +(4610,390:6630773,20977924:11829248,530548,102891 +h4610,389:6630773,20977924:0,0,0 +g4610,389:10738154,20977924 +k4610,390:14997547,20977924:3462475 +k4610,390:18460021,20977924:3462474 +) +(4610,394:6630773,22516517:11829248,530548,141066 +h4610,393:6630773,22516517:0,0,0 +g4610,393:10738154,22516517 +g4610,393:11907971,22516517 +g4610,393:13476247,22516517 +k4610,394:16565823,22516517:1894199 +k4610,394:18460021,22516517:1894198 +) +(4610,395:6630773,23382624:11829248,530548,102891 +h4610,394:6630773,23382624:0,0,0 +g4610,394:10738154,23382624 +k4610,395:15186946,23382624:3273076 +k4610,395:18460021,23382624:3273075 +) +(4610,396:6630773,24248732:11829248,530548,132808 +h4610,395:6630773,24248732:0,0,0 +g4610,395:10738154,24248732 +k4610,396:15186946,24248732:3273076 +k4610,396:18460021,24248732:3273075 +) +(4610,397:6630773,25114839:11829248,530548,132808 +h4610,396:6630773,25114839:0,0,0 +g4610,396:10738154,25114839 +k4610,397:15196776,25114839:3263245 +k4610,397:18460021,25114839:3263245 +) +(4610,398:6630773,25980947:11829248,485622,141066 +h4610,397:6630773,25980947:0,0,0 +g4610,397:9493326,25980947 +k4610,398:14574362,25980947:3885659 +k4610,398:18460021,25980947:3885659 +) +(4610,399:6630773,26847054:11829248,530548,102891 +h4610,398:6630773,26847054:0,0,0 +g4610,398:9908269,26847054 +g4610,398:11078086,26847054 +g4610,398:12247903,26847054 +g4610,398:13816179,26847054 +g4610,398:15384455,26847054 +k4610,399:17519927,26847054:940095 +k4610,399:18460021,26847054:940094 +) +(4610,400:6630773,27713162:11829248,530548,102891 +h4610,399:6630773,27713162:0,0,0 +g4610,399:10738154,27713162 +g4610,399:11907971,27713162 +k4610,400:15781685,27713162:2678337 +k4610,400:18460021,27713162:2678336 +) +(4610,404:6630773,29251754:11829248,530548,141066 +h4610,403:6630773,29251754:0,0,0 +g4610,403:11153096,29251754 +k4610,404:15404247,29251754:3055774 +k4610,404:18460021,29251754:3055774 +) +(4610,405:6630773,30117862:11829248,530548,141066 +h4610,404:6630773,30117862:0,0,0 +g4610,404:12812866,30117862 +k4610,405:16234132,30117862:2225889 +k4610,405:18460021,30117862:2225889 +) +(4610,406:6630773,30983969:11829248,530548,132808 +h4610,405:6630773,30983969:0,0,0 +g4610,405:14057693,30983969 +k4610,406:16856546,30983969:1603476 +k4610,406:18460021,30983969:1603475 +) +(4610,407:6630773,31850077:11829248,530548,132808 +h4610,406:6630773,31850077:0,0,0 +g4610,406:9908269,31850077 +g4610,406:11476545,31850077 +k4610,407:15556141,31850077:2903880 +k4610,407:18460021,31850077:2903880 +) +(4610,408:6630773,32716184:11829248,530548,132808 +h4610,407:6630773,32716184:0,0,0 +g4610,407:9908269,32716184 +g4610,407:11078086,32716184 +g4610,407:12247903,32716184 +g4610,407:13816179,32716184 +k4610,408:16735789,32716184:1724233 +k4610,408:18460021,32716184:1724232 +) +(4610,409:6630773,33582292:11829248,530548,132808 +h4610,408:6630773,33582292:0,0,0 +g4610,408:10323211,33582292 +k4610,409:14989305,33582292:3470717 +k4610,409:18460021,33582292:3470716 +) +(4610,410:6630773,34448399:11829248,530548,132808 +h4610,409:6630773,34448399:0,0,0 +g4610,409:10323211,34448399 +k4610,410:14989305,34448399:3470717 +k4610,410:18460021,34448399:3470716 +) +(4610,411:6630773,35314507:11829248,538806,132808 +h4610,410:6630773,35314507:0,0,0 +g4610,410:8663442,35314507 +k4610,411:14159420,35314507:4300601 +k4610,411:18460021,35314507:4300601 +) +(4610,412:6630773,36180614:11829248,530548,132808 +h4610,411:6630773,36180614:0,0,0 +g4610,411:7833557,36180614 +k4610,412:13545248,36180614:4914773 +k4610,412:18460021,36180614:4914773 +) +(4610,413:6630773,37046722:11829248,530548,141066 +h4610,412:6630773,37046722:0,0,0 +g4610,412:12812866,37046722 +g4610,412:14381142,37046722 +k4610,413:17018270,37046722:1441751 +k4610,413:18460021,37046722:1441751 +) +(4610,414:6630773,37912829:11829248,530548,132808 +h4610,413:6630773,37912829:0,0,0 +g4610,413:12397924,37912829 +k4610,414:16026661,37912829:2433360 +k4610,414:18460021,37912829:2433360 +) +(4610,415:6630773,38778937:11829248,530548,141066 +h4610,414:6630773,38778937:0,0,0 +g4610,414:12397924,38778937 +g4610,414:13966200,38778937 +k4610,415:16810799,38778937:1649222 +k4610,415:18460021,38778937:1649222 +) +(4610,416:6630773,39645044:11829248,530548,132808 +h4610,415:6630773,39645044:0,0,0 +g4610,415:9908269,39645044 +k4610,416:14772003,39645044:3688018 +k4610,416:18460021,39645044:3688018 +) +(4610,417:6630773,40511152:11829248,530548,132808 +h4610,416:6630773,40511152:0,0,0 +g4610,416:10323211,40511152 +k4610,417:14989305,40511152:3470717 +k4610,417:18460021,40511152:3470716 +) +(4610,418:6630773,41377259:11829248,530548,132808 +h4610,417:6630773,41377259:0,0,0 +g4610,417:9493326,41377259 +g4610,417:12584659,41377259 +g4610,417:14152935,41377259 +g4610,417:15721211,41377259 +k4610,417:18460021,41377259:1456271 +) +(4610,418:9252213,42242339:9207808,485622,102891 +g4610,417:10820489,42242339 +g4610,417:12388765,42242339 +k4610,418:16022082,42242339:2437940 +k4610,418:18460021,42242339:2437939 +) +(4610,419:6630773,43108447:11829248,530548,132808 +h4610,418:6630773,43108447:0,0,0 +g4610,418:10323211,43108447 +k4610,419:14780245,43108447:3679777 +k4610,419:18460021,43108447:3679776 +) +(4610,420:6630773,43974554:11829248,530548,132808 +h4610,419:6630773,43974554:0,0,0 +g4610,419:11568039,43974554 +k4610,420:15611719,43974554:2848303 +k4610,420:18460021,43974554:2848302 +) +(4610,421:6630773,44840662:11829248,530548,132808 +h4610,420:6630773,44840662:0,0,0 +g4610,420:9908269,44840662 +g4610,420:11476545,44840662 +k4610,421:15556141,44840662:2903880 +k4610,421:18460021,44840662:2903880 +) +(4610,422:6630773,45706769:11829248,530548,132808 +h4610,421:6630773,45706769:0,0,0 +g4610,421:10323211,45706769 +k4610,422:14989305,45706769:3470717 +k4610,422:18460021,45706769:3470716 +) +] +k4610,476:19606901,45706769:1146880 +r4610,476:19606901,45706769:0,40240840,132808 +k4610,476:20753781,45706769:1146880 +[4610,476:20753781,45706769:11829248,40108032,102891 +(4610,423:20753781,6254097:11829248,530548,132808 +h4610,422:20753781,6254097:0,0,0 +g4610,422:23616334,6254097 +k4610,423:28687540,6254097:3895490 +k4610,423:32583029,6254097:3895489 +) +(4610,424:20753781,7120218:11829248,530548,141066 +h4610,423:20753781,7120218:0,0,0 +g4610,423:27765759,7120218 +k4610,424:30772083,7120218:1810947 +k4610,424:32583029,7120218:1810946 +) +(4610,425:20753781,7986339:11829248,538806,132808 +h4610,424:20753781,7986339:0,0,0 +g4610,424:27350816,7986339 +k4610,425:30564611,7986339:2018418 +k4610,425:32583029,7986339:2018418 +) +(4610,426:20753781,8852460:11829248,530548,132808 +h4610,425:20753781,8852460:0,0,0 +g4610,425:29010586,8852460 +g4610,425:30578862,8852460 +k4610,426:32168804,8852460:414226 +k4610,426:32583029,8852460:414225 +) +(4610,427:20753781,9718582:11829248,530548,141066 +h4610,426:20753781,9718582:0,0,0 +g4610,426:28180701,9718582 +g4610,426:29748977,9718582 +k4610,427:31763692,9718582:819338 +k4610,427:32583029,9718582:819337 +) +(4610,428:20753781,10584703:11829248,530548,141066 +h4610,427:20753781,10584703:0,0,0 +g4610,427:27765759,10584703 +k4610,428:30772083,10584703:1810947 +k4610,428:32583029,10584703:1810946 +) +(4610,429:20753781,11450824:11829248,530548,132808 +h4610,428:20753781,11450824:0,0,0 +g4610,428:27765759,11450824 +g4610,428:29334035,11450824 +g4610,428:30902311,11450824 +k4610,428:32583029,11450824:398179 +) +(4610,429:23375221,12315904:9207808,485622,11795 +k4610,429:28576814,12315904:4006216 +k4610,429:32583029,12315904:4006215 +) +(4610,430:20753781,13182025:11829248,485622,102891 +h4610,429:20753781,13182025:0,0,0 +g4610,429:24031277,13182025 +g4610,429:25201094,13182025 +g4610,429:26769370,13182025 +k4610,430:30273888,13182025:2309141 +k4610,430:32583029,13182025:2309141 +) +(4610,431:20753781,14048146:11829248,530548,102891 +h4610,430:20753781,14048146:0,0,0 +g4610,430:24031277,14048146 +g4610,430:25201094,14048146 +k4610,431:29489750,14048146:3093279 +k4610,431:32583029,14048146:3093279 +) +(4610,432:20753781,14914267:11829248,530548,132808 +h4610,431:20753781,14914267:0,0,0 +g4610,431:24031277,14914267 +k4610,432:28904842,14914267:3678188 +k4610,432:32583029,14914267:3678187 +) +(4610,433:20753781,15780388:11829248,530548,132808 +h4610,432:20753781,15780388:0,0,0 +g4610,432:24446219,15780388 +g4610,432:26014495,15780388 +k4610,433:29896451,15780388:2686579 +k4610,433:32583029,15780388:2686578 +) +(4610,434:20753781,16646510:11829248,530548,132808 +h4610,433:20753781,16646510:0,0,0 +g4610,433:24861162,16646510 +g4610,433:26429438,16646510 +k4610,434:30094092,16646510:2488938 +k4610,434:32583029,16646510:2488937 +) +(4610,435:20753781,17512631:11829248,530548,132808 +h4610,434:20753781,17512631:0,0,0 +g4610,434:27350816,17512631 +k4610,435:30554781,17512631:2028249 +k4610,435:32583029,17512631:2028248 +) +(4610,437:20753781,18378752:11829248,530548,132808 +h4610,435:20753781,18378752:0,0,0 +g4610,435:24031277,18378752 +g4610,435:25201094,18378752 +g4610,435:26370911,18378752 +g4610,435:27540728,18378752 +g4610,435:28710545,18378752 +g4610,435:30278821,18378752 +k4610,435:32583029,18378752:1021669 +) +(4610,437:23375221,19243832:9207808,485622,102891 +g4610,435:24923836,19243832 +g4610,435:26492112,19243832 +g4610,435:28060388,19243832 +k4610,437:30919397,19243832:1663632 +k4610,437:32583029,19243832:1663632 +) +(4610,438:20753781,20109953:11829248,530548,132808 +h4610,437:20753781,20109953:0,0,0 +g4610,437:23616334,20109953 +k4610,438:28697370,20109953:3885659 +k4610,438:32583029,20109953:3885659 +) +(4610,439:20753781,20976074:11829248,530548,132808 +h4610,438:20753781,20976074:0,0,0 +g4610,438:22786450,20976074 +g4610,438:24354726,20976074 +g4610,438:25923002,20976074 +g4610,438:27491278,20976074 +k4610,439:30625012,20976074:1958018 +k4610,439:32583029,20976074:1958017 +) +(4610,440:20753781,21842195:11829248,538806,132808 +h4610,439:20753781,21842195:0,0,0 +g4610,439:24031277,21842195 +k4610,440:28904842,21842195:3678188 +k4610,440:32583029,21842195:3678187 +) +(4610,441:20753781,22708316:11829248,530548,132808 +h4610,440:20753781,22708316:0,0,0 +g4610,440:24861162,22708316 +g4610,440:26429438,22708316 +k4610,441:30103922,22708316:2479107 +k4610,441:32583029,22708316:2479107 +) +(4610,445:20753781,24247150:11829248,530548,132808 +h4610,444:20753781,24247150:0,0,0 +g4610,444:24446219,24247150 +k4610,445:29112313,24247150:3470717 +k4610,445:32583029,24247150:3470716 +) +(4610,446:20753781,25113271:11829248,530548,132808 +h4610,445:20753781,25113271:0,0,0 +g4610,445:24446219,25113271 +k4610,446:29112313,25113271:3470717 +k4610,446:32583029,25113271:3470716 +) +(4610,447:20753781,25979392:11829248,538806,132808 +h4610,446:20753781,25979392:0,0,0 +g4610,446:22786450,25979392 +k4610,447:28282428,25979392:4300601 +k4610,447:32583029,25979392:4300601 +) +(4610,448:20753781,26845513:11829248,530548,132808 +h4610,447:20753781,26845513:0,0,0 +g4610,447:24446219,26845513 +k4610,448:29112313,26845513:3470717 +k4610,448:32583029,26845513:3470716 +) +(4610,449:20753781,27711634:11829248,530548,132808 +h4610,448:20753781,27711634:0,0,0 +g4610,448:25691047,27711634 +k4610,449:29734727,27711634:2848303 +k4610,449:32583029,27711634:2848302 +) +(4610,450:20753781,28577755:11829248,530548,132808 +h4610,449:20753781,28577755:0,0,0 +g4610,449:24031277,28577755 +g4610,449:25599553,28577755 +k4610,450:29679149,28577755:2903880 +k4610,450:32583029,28577755:2903880 +) +(4610,451:20753781,29443876:11829248,530548,132808 +h4610,450:20753781,29443876:0,0,0 +g4610,450:24031277,29443876 +k4610,451:28904842,29443876:3678188 +k4610,451:32583029,29443876:3678187 +) +(4610,452:20753781,30309998:11829248,530548,132808 +h4610,451:20753781,30309998:0,0,0 +g4610,451:22786450,30309998 +k4610,452:28282428,30309998:4300601 +k4610,452:32583029,30309998:4300601 +) +(4610,453:20753781,31176119:11829248,530548,132808 +h4610,452:20753781,31176119:0,0,0 +g4610,452:25276104,31176119 +k4610,453:29527255,31176119:3055774 +k4610,453:32583029,31176119:3055774 +) +(4610,454:20753781,32042240:11829248,538806,132808 +h4610,453:20753781,32042240:0,0,0 +g4610,453:24031277,32042240 +k4610,454:28904842,32042240:3678188 +k4610,454:32583029,32042240:3678187 +) +(4610,458:20753781,33581073:11829248,530548,141066 +h4610,457:20753781,33581073:0,0,0 +g4610,457:24031277,33581073 +k4610,458:28904842,33581073:3678188 +k4610,458:32583029,33581073:3678187 +) +(4610,459:20753781,34447194:11829248,530548,102891 +h4610,458:20753781,34447194:0,0,0 +g4610,458:24031277,34447194 +k4610,459:28904842,34447194:3678188 +k4610,459:32583029,34447194:3678187 +) +(4610,460:20753781,35313315:11829248,530548,102891 +h4610,459:20753781,35313315:0,0,0 +g4610,459:24446219,35313315 +k4610,460:29112313,35313315:3470717 +k4610,460:32583029,35313315:3470716 +) +(4610,461:20753781,36179436:11829248,530548,132808 +h4610,460:20753781,36179436:0,0,0 +g4610,460:24446219,36179436 +k4610,461:29112313,36179436:3470717 +k4610,461:32583029,36179436:3470716 +) +(4610,462:20753781,37045558:11829248,530548,102891 +h4610,461:20753781,37045558:0,0,0 +g4610,461:25276104,37045558 +g4610,461:28367437,37045558 +g4610,461:29935713,37045558 +k4610,462:31857060,37045558:725970 +k4610,462:32583029,37045558:725969 +) +(4610,463:20753781,37911679:11829248,530548,102891 +h4610,462:20753781,37911679:0,0,0 +g4610,462:25691047,37911679 +g4610,462:27259323,37911679 +g4610,462:28827599,37911679 +k4610,463:31293172,37911679:1289857 +k4610,463:32583029,37911679:1289857 +) +(4610,464:20753781,38777800:11829248,538806,102891 +h4610,463:20753781,38777800:0,0,0 +g4610,463:26935874,38777800 +g4610,463:28504150,38777800 +k4610,464:31141278,38777800:1441751 +k4610,464:32583029,38777800:1441751 +) +(4610,465:20753781,39643921:11829248,538806,102891 +h4610,464:20753781,39643921:0,0,0 +g4610,464:25276104,39643921 +k4610,465:29527255,39643921:3055774 +k4610,465:32583029,39643921:3055774 +) +(4610,466:20753781,40510042:11829248,530548,132808 +h4610,465:20753781,40510042:0,0,0 +g4610,465:25691047,40510042 +k4610,466:29724896,40510042:2858133 +k4610,466:32583029,40510042:2858133 +) +(4610,467:20753781,41376163:11829248,530548,132808 +h4610,466:20753781,41376163:0,0,0 +g4610,466:26520932,41376163 +k4610,467:30149669,41376163:2433360 +k4610,467:32583029,41376163:2433360 +) +(4610,468:20753781,42242284:11829248,530548,102891 +h4610,467:20753781,42242284:0,0,0 +g4610,467:26105989,42242284 +g4610,467:27674265,42242284 +k4610,468:31487864,42242284:1095166 +k4610,468:32583029,42242284:1095165 +) +(4610,469:20753781,43108406:11829248,530548,102891 +h4610,468:20753781,43108406:0,0,0 +g4610,468:25691047,43108406 +k4610,469:29734727,43108406:2848303 +k4610,469:32583029,43108406:2848302 +) +(4610,470:20753781,43974527:11829248,530548,102891 +h4610,469:20753781,43974527:0,0,0 +g4610,469:25276104,43974527 +g4610,469:26844380,43974527 +k4610,470:30311393,43974527:2271636 +k4610,470:32583029,43974527:2271636 +) +(4610,471:20753781,44840648:11829248,530548,102891 +h4610,470:20753781,44840648:0,0,0 +g4610,470:26105989,44840648 +k4610,471:29942198,44840648:2640832 +k4610,471:32583029,44840648:2640831 +) +(4610,472:20753781,45706769:11829248,530548,102891 +h4610,471:20753781,45706769:0,0,0 +g4610,471:26105989,45706769 +k4610,472:29932367,45706769:2650662 +k4610,472:32583029,45706769:2650662 +) +] +(4610,476:32583029,45706769:0,355205,126483 +h4610,476:32583029,45706769:420741,355205,126483 +k4610,476:32583029,45706769:-420741 +) +) +] +(4610,476:32583029,45706769:0,0,0 +g4610,476:32583029,45706769 +) +) +] +(4610,476:6630773,47279633:25952256,0,0 +h4610,476:6630773,47279633:25952256,0,0 ) -] -(4606,476:4262630,4025873:0,0,0 -[4606,476:-473656,4025873:0,0,0 -(4606,476:-473656,-710413:0,0,0 -(4606,476:-473656,-710413:0,0,0 -g4606,476:-473656,-710413 +] +(4610,476:4262630,4025873:0,0,0 +[4610,476:-473656,4025873:0,0,0 +(4610,476:-473656,-710413:0,0,0 +(4610,476:-473656,-710413:0,0,0 +g4610,476:-473656,-710413 ) -g4606,476:-473656,-710413 +g4610,476:-473656,-710413 ) ] ) ] !22153 -}450 +}451 !12 -{451 -[4606,566:4262630,47279633:28320399,43253760,0 -(4606,566:4262630,4025873:0,0,0 -[4606,566:-473656,4025873:0,0,0 -(4606,566:-473656,-710413:0,0,0 -(4606,566:-473656,-644877:0,0,0 -k4606,566:-473656,-644877:-65536 +{452 +[4610,566:4262630,47279633:28320399,43253760,0 +(4610,566:4262630,4025873:0,0,0 +[4610,566:-473656,4025873:0,0,0 +(4610,566:-473656,-710413:0,0,0 +(4610,566:-473656,-644877:0,0,0 +k4610,566:-473656,-644877:-65536 ) -(4606,566:-473656,4736287:0,0,0 -k4606,566:-473656,4736287:5209943 +(4610,566:-473656,4736287:0,0,0 +k4610,566:-473656,4736287:5209943 ) -g4606,566:-473656,-710413 +g4610,566:-473656,-710413 ) ] ) -[4606,566:6630773,47279633:25952256,43253760,0 -[4606,566:6630773,4812305:25952256,786432,0 -(4606,566:6630773,4812305:25952256,513147,126483 -(4606,566:6630773,4812305:25952256,513147,126483 -g4606,566:3078558,4812305 -[4606,566:3078558,4812305:0,0,0 -(4606,566:3078558,2439708:0,1703936,0 -k4606,566:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,566:2537886,2439708:1179648,16384,0 +[4610,566:6630773,47279633:25952256,43253760,0 +[4610,566:6630773,4812305:25952256,786432,0 +(4610,566:6630773,4812305:25952256,513147,126483 +(4610,566:6630773,4812305:25952256,513147,126483 +g4610,566:3078558,4812305 +[4610,566:3078558,4812305:0,0,0 +(4610,566:3078558,2439708:0,1703936,0 +k4610,566:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,566:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,566:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,566:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,566:3078558,4812305:0,0,0 -(4606,566:3078558,2439708:0,1703936,0 -g4606,566:29030814,2439708 -g4606,566:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,566:36151628,1915420:16384,1179648,0 +[4610,566:3078558,4812305:0,0,0 +(4610,566:3078558,2439708:0,1703936,0 +g4610,566:29030814,2439708 +g4610,566:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,566:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,566:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,566:37855564,2439708:1179648,16384,0 ) ) -k4606,566:3078556,2439708:-34777008 +k4610,566:3078556,2439708:-34777008 ) ] -[4606,566:3078558,4812305:0,0,0 -(4606,566:3078558,49800853:0,16384,2228224 -k4606,566:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,566:2537886,49800853:1179648,16384,0 +[4610,566:3078558,4812305:0,0,0 +(4610,566:3078558,49800853:0,16384,2228224 +k4610,566:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,566:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,566:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,566:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,566:3078558,4812305:0,0,0 -(4606,566:3078558,49800853:0,16384,2228224 -g4606,566:29030814,49800853 -g4606,566:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,566:36151628,51504789:16384,1179648,0 +[4610,566:3078558,4812305:0,0,0 +(4610,566:3078558,49800853:0,16384,2228224 +g4610,566:29030814,49800853 +g4610,566:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,566:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,566:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,566:37855564,49800853:1179648,16384,0 ) ) -k4606,566:3078556,49800853:-34777008 +k4610,566:3078556,49800853:-34777008 ) ] -g4606,566:6630773,4812305 -k4606,566:23552170,4812305:15726020 -g4606,566:27112085,4812305 -g4606,566:29010007,4812305 -g4606,566:29825274,4812305 -g4606,566:30438691,4812305 +g4610,566:6630773,4812305 +k4610,566:23552170,4812305:15726020 +g4610,566:27112085,4812305 +g4610,566:29010007,4812305 +g4610,566:29825274,4812305 +g4610,566:30438691,4812305 ) ) ] -[4606,566:6630773,45706769:25952256,40108032,0 -(4606,566:6630773,45706769:25952256,40108032,0 -(4606,566:6630773,45706769:0,0,0 -g4606,566:6630773,45706769 +[4610,566:6630773,45706769:25952256,40108032,0 +(4610,566:6630773,45706769:25952256,40108032,0 +(4610,566:6630773,45706769:0,0,0 +g4610,566:6630773,45706769 ) -[4606,566:6630773,45706769:25952256,40108032,0 -(4606,566:6630773,45706769:25952256,40108032,132808 -[4606,566:6630773,45706769:11829248,40108032,102891 -(4606,473:6630773,6254097:11829248,530548,102891 -h4606,472:6630773,6254097:0,0,0 -g4606,472:11982981,6254097 -k4606,473:15809359,6254097:2650662 -k4606,473:18460021,6254097:2650662 +[4610,566:6630773,45706769:25952256,40108032,0 +(4610,566:6630773,45706769:25952256,40108032,141066 +[4610,566:6630773,45706769:11829248,40108032,102891 +(4610,473:6630773,6254097:11829248,538806,102891 +h4610,472:6630773,6254097:0,0,0 +g4610,472:11568039,6254097 +k4610,473:15601888,6254097:2858133 +k4610,473:18460021,6254097:2858133 ) -(4606,474:6630773,7131273:11829248,538806,102891 -h4606,473:6630773,7131273:0,0,0 -g4606,473:11568039,7131273 -k4606,474:15601888,7131273:2858133 -k4606,474:18460021,7131273:2858133 -) -(4606,475:6630773,8008448:11829248,538806,102891 -h4606,474:6630773,8008448:0,0,0 -g4606,474:11568039,8008448 -k4606,475:15601888,8008448:2858133 -k4606,475:18460021,8008448:2858133 -) -(4606,476:6630773,8885624:11829248,538806,102891 -h4606,475:6630773,8885624:0,0,0 -g4606,475:11153096,8885624 -k4606,476:15404247,8885624:3055774 -k4606,476:18460021,8885624:3055774 -) -(4606,477:6630773,9762799:11829248,530548,102891 -h4606,476:6630773,9762799:0,0,0 -g4606,476:11568039,9762799 -k4606,477:15611719,9762799:2848303 -k4606,477:18460021,9762799:2848302 -) -(4606,478:6630773,10639975:11829248,530548,102891 -h4606,477:6630773,10639975:0,0,0 -g4606,477:11982981,10639975 -k4606,478:15809359,10639975:2650662 -k4606,478:18460021,10639975:2650662 -) -(4606,479:6630773,11517150:11829248,530548,102891 -h4606,478:6630773,11517150:0,0,0 -g4606,478:11153096,11517150 -k4606,479:15404247,11517150:3055774 -k4606,479:18460021,11517150:3055774 -) -(4606,480:6630773,12394326:11829248,530548,102891 -h4606,479:6630773,12394326:0,0,0 -g4606,479:11153096,12394326 -k4606,480:15404247,12394326:3055774 -k4606,480:18460021,12394326:3055774 -) -(4606,481:6630773,13271501:11829248,530548,102891 -h4606,480:6630773,13271501:0,0,0 -g4606,480:11982981,13271501 -g4606,480:13551257,13271501 -k4606,481:16603328,13271501:1856694 -k4606,481:18460021,13271501:1856693 -) -(4606,482:6630773,14148677:11829248,530548,102891 -h4606,481:6630773,14148677:0,0,0 -g4606,481:12397924,14148677 -g4606,481:13966200,14148677 -k4606,482:16810799,14148677:1649222 -k4606,482:18460021,14148677:1649222 -) -(4606,483:6630773,15025852:11829248,530548,102891 -h4606,482:6630773,15025852:0,0,0 -g4606,482:11153096,15025852 -k4606,483:15404247,15025852:3055774 -k4606,483:18460021,15025852:3055774 -) -(4606,484:6630773,15903028:11829248,530548,102891 -h4606,483:6630773,15903028:0,0,0 -g4606,483:11568039,15903028 -k4606,484:15611719,15903028:2848303 -k4606,484:18460021,15903028:2848302 -) -(4606,485:6630773,16780203:11829248,530548,102891 -h4606,484:6630773,16780203:0,0,0 -g4606,484:10738154,16780203 -k4606,485:15196776,16780203:3263245 -k4606,485:18460021,16780203:3263245 -) -(4606,486:6630773,17657379:11829248,530548,102891 -h4606,485:6630773,17657379:0,0,0 -g4606,485:9078384,17657379 -k4606,486:14357061,17657379:4102961 -k4606,486:18460021,17657379:4102960 -) -(4606,487:6630773,18534554:11829248,530548,102891 -h4606,486:6630773,18534554:0,0,0 -g4606,486:10323211,18534554 -g4606,486:11493028,18534554 -g4606,486:12662845,18534554 -k4606,487:16159122,18534554:2300900 -k4606,487:18460021,18534554:2300899 -) -(4606,488:6630773,19411730:11829248,530548,102891 -h4606,487:6630773,19411730:0,0,0 -g4606,487:10323211,19411730 -k4606,488:14979474,19411730:3480547 -k4606,488:18460021,19411730:3480547 -) -(4606,489:6630773,20288905:11829248,530548,102891 -h4606,488:6630773,20288905:0,0,0 -g4606,488:10738154,20288905 -g4606,488:11907971,20288905 -k4606,489:15771854,20288905:2688167 -k4606,489:18460021,20288905:2688167 -) -(4606,490:6630773,21166081:11829248,530548,132808 -h4606,489:6630773,21166081:0,0,0 -g4606,489:9078384,21166081 -g4606,489:10248201,21166081 -k4606,490:14742740,21166081:3717282 -k4606,490:18460021,21166081:3717281 -) -(4606,491:6630773,22043256:11829248,485622,132808 -h4606,490:6630773,22043256:0,0,0 -g4606,490:9493326,22043256 -g4606,490:11061602,22043256 -g4606,490:12629878,22043256 -g4606,490:14198154,22043256 -k4606,491:16926776,22043256:1533245 -k4606,491:18460021,22043256:1533245 -) -(4606,492:6630773,22920432:11829248,530548,132808 -h4606,491:6630773,22920432:0,0,0 -g4606,491:10738154,22920432 -g4606,491:12306430,22920432 -g4606,491:13874706,22920432 -k4606,492:16755222,22920432:1704800 -k4606,492:18460021,22920432:1704799 -) -(4606,493:6630773,23797607:11829248,530548,102891 -h4606,492:6630773,23797607:0,0,0 -g4606,492:9908269,23797607 -k4606,493:14772003,23797607:3688018 -k4606,493:18460021,23797607:3688018 -) -(4606,494:6630773,24674783:11829248,530548,102891 -h4606,493:6630773,24674783:0,0,0 -g4606,493:11568039,24674783 -g4606,493:13136315,24674783 -k4606,494:16386026,24674783:2073995 -k4606,494:18460021,24674783:2073995 -) -(4606,495:6630773,25551958:11829248,530548,102891 -h4606,494:6630773,25551958:0,0,0 -g4606,494:10323211,25551958 -k4606,495:14989305,25551958:3470717 -k4606,495:18460021,25551958:3470716 -) -(4606,496:6630773,26429134:11829248,530548,102891 -h4606,495:6630773,26429134:0,0,0 -g4606,495:9078384,26429134 -k4606,496:14167662,26429134:4292360 -k4606,496:18460021,26429134:4292359 -) -(4606,497:6630773,27306309:11829248,538806,102891 -h4606,496:6630773,27306309:0,0,0 -g4606,496:8663442,27306309 -k4606,497:14159420,27306309:4300601 -k4606,497:18460021,27306309:4300601 -) -(4606,498:6630773,28183485:11829248,530548,141066 -h4606,497:6630773,28183485:0,0,0 -g4606,497:9078384,28183485 -k4606,498:14366891,28183485:4093130 -k4606,498:18460021,28183485:4093130 -) -(4606,499:6630773,29060660:11829248,530548,141066 -h4606,498:6630773,29060660:0,0,0 -g4606,498:11982981,29060660 -k4606,499:15809359,29060660:2650662 -k4606,499:18460021,29060660:2650662 -) -(4606,500:6630773,29937836:11829248,530548,102891 -h4606,499:6630773,29937836:0,0,0 -g4606,499:9078384,29937836 -g4606,499:10248201,29937836 -k4606,500:14951800,29937836:3508222 -k4606,500:18460021,29937836:3508221 -) -(4606,501:6630773,30815011:11829248,530548,102891 -h4606,500:6630773,30815011:0,0,0 -g4606,500:9078384,30815011 -g4606,500:10646660,30815011 -k4606,501:15141199,30815011:3318823 -k4606,501:18460021,30815011:3318822 -) -(4606,502:6630773,31692187:11829248,530548,102891 -h4606,501:6630773,31692187:0,0,0 -g4606,501:10323211,31692187 -k4606,502:14989305,31692187:3470717 -k4606,502:18460021,31692187:3470716 -) -(4606,503:6630773,32569362:11829248,530548,102891 -h4606,502:6630773,32569362:0,0,0 -g4606,502:8663442,32569362 -k4606,503:13960191,32569362:4499831 -k4606,503:18460021,32569362:4499830 -) -(4606,504:6630773,33446538:11829248,530548,102891 -h4606,503:6630773,33446538:0,0,0 -g4606,503:11568039,33446538 -k4606,504:15611719,33446538:2848303 -k4606,504:18460021,33446538:2848302 -) -(4606,505:6630773,34323713:11829248,530548,102891 -h4606,504:6630773,34323713:0,0,0 -g4606,504:9908269,34323713 -g4606,504:11476545,34323713 -g4606,504:13044821,34323713 -k4606,505:16350110,34323713:2109912 -k4606,505:18460021,34323713:2109911 -) -(4606,506:6630773,35200889:11829248,530548,102891 -h4606,505:6630773,35200889:0,0,0 -g4606,505:9908269,35200889 -g4606,505:11078086,35200889 -k4606,506:15366742,35200889:3093279 -k4606,506:18460021,35200889:3093279 -) -(4606,507:6630773,36078064:11829248,530548,102891 -h4606,506:6630773,36078064:0,0,0 -g4606,506:11153096,36078064 -k4606,507:15404247,36078064:3055774 -k4606,507:18460021,36078064:3055774 -) -(4606,508:6630773,36955240:11829248,530548,102891 -h4606,507:6630773,36955240:0,0,0 -g4606,507:11153096,36955240 -g4606,507:12322913,36955240 -k4606,508:15989156,36955240:2470866 -k4606,508:18460021,36955240:2470865 -) -(4606,509:6630773,37832415:11829248,530548,102891 -h4606,508:6630773,37832415:0,0,0 -g4606,508:11982981,37832415 -k4606,509:15819190,37832415:2640832 -k4606,509:18460021,37832415:2640831 -) -(4606,510:6630773,38709591:11829248,530548,102891 -h4606,509:6630773,38709591:0,0,0 -g4606,509:10738154,38709591 -g4606,509:12306430,38709591 -k4606,510:15971084,38709591:2488938 -k4606,510:18460021,38709591:2488937 -) -(4606,511:6630773,39586766:11829248,530548,132808 -h4606,510:6630773,39586766:0,0,0 -g4606,510:9908269,39586766 -k4606,511:14781834,39586766:3678188 -k4606,511:18460021,39586766:3678187 -) -(4606,512:6630773,40463942:11829248,530548,102891 -h4606,511:6630773,40463942:0,0,0 -g4606,511:8663442,40463942 -k4606,512:14159420,40463942:4300601 -k4606,512:18460021,40463942:4300601 -) -(4606,513:6630773,41341117:11829248,538806,102891 -h4606,512:6630773,41341117:0,0,0 -g4606,512:9908269,41341117 -g4606,512:11476545,41341117 -k4606,513:15565972,41341117:2894050 -k4606,513:18460021,41341117:2894049 -) -(4606,514:6630773,42218293:11829248,530548,102891 -h4606,513:6630773,42218293:0,0,0 -g4606,513:10323211,42218293 -k4606,514:14989305,42218293:3470717 -k4606,514:18460021,42218293:3470716 -) -(4606,518:6630773,43952418:11829248,530548,132808 -h4606,517:6630773,43952418:0,0,0 -g4606,517:10323211,43952418 -k4606,518:14989305,43952418:3470717 -k4606,518:18460021,43952418:3470716 -) -(4606,519:6630773,44829594:11829248,530548,132808 -h4606,518:6630773,44829594:0,0,0 -g4606,518:10323211,44829594 -g4606,518:11891487,44829594 -g4606,518:13459763,44829594 -k4606,519:16557581,44829594:1902441 -k4606,519:18460021,44829594:1902440 -) -(4606,520:6630773,45706769:11829248,530548,102891 -h4606,519:6630773,45706769:0,0,0 -g4606,519:9493326,45706769 -k4606,520:15335890,45706769:3124131 -k4606,520:18460021,45706769:3124131 -) -] -k4606,566:19606901,45706769:1146880 -r4606,566:19606901,45706769:0,40240840,132808 -k4606,566:20753781,45706769:1146880 -[4606,566:20753781,45706769:11829248,40108032,132808 -(4606,521:20753781,6254097:11829248,530548,102891 -h4606,520:20753781,6254097:0,0,0 -g4606,520:24861162,6254097 -k4606,521:29319784,6254097:3263245 -k4606,521:32583029,6254097:3263245 -) -(4606,522:20753781,7131959:11829248,530548,102891 -h4606,521:20753781,7131959:0,0,0 -g4606,521:29840470,7131959 -k4606,522:31799608,7131959:783422 -k4606,522:32583029,7131959:783421 -) -(4606,523:20753781,8009821:11829248,530548,102891 -h4606,522:20753781,8009821:0,0,0 -g4606,522:29840470,8009821 -k4606,523:31799608,8009821:783422 -k4606,523:32583029,8009821:783421 -) -(4606,524:20753781,8887684:11829248,530548,102891 -h4606,523:20753781,8887684:0,0,0 -k4606,523:32583029,8887684:1368527 -) -(4606,524:23375221,9752764:9207808,485622,102891 -g4606,523:24943497,9752764 -g4606,523:26511773,9752764 -k4606,524:30135259,9752764:2447770 -k4606,524:32583029,9752764:2447770 -) -(4606,525:20753781,10630626:11829248,530548,102891 -h4606,524:20753781,10630626:0,0,0 -g4606,524:29010586,10630626 -k4606,525:31384666,10630626:1198364 -k4606,525:32583029,10630626:1198363 -) -(4606,526:20753781,11508488:11829248,530548,102891 -h4606,525:20753781,11508488:0,0,0 -g4606,525:30670355,11508488 -k4606,526:32214550,11508488:368479 -k4606,526:32583029,11508488:368479 -) -(4606,527:20753781,12386350:11829248,530548,102891 -h4606,526:20753781,12386350:0,0,0 -g4606,526:30670355,12386350 -k4606,526:32583029,12386350:630135 -) -(4606,527:23375221,13251430:9207808,485622,102891 -g4606,526:24943497,13251430 -k4606,527:29351121,13251430:3231908 -k4606,527:32583029,13251430:3231908 -) -(4606,528:20753781,14129293:11829248,530548,102891 -h4606,527:20753781,14129293:0,0,0 -g4606,527:31085297,14129293 -k4606,528:32422021,14129293:161008 -k4606,528:32583029,14129293:161008 -) -(4606,529:20753781,15007155:11829248,530548,141066 -h4606,528:20753781,15007155:0,0,0 -g4606,528:30670355,15007155 -k4606,529:32214550,15007155:368479 -k4606,529:32583029,15007155:368479 -) -(4606,530:20753781,15885017:11829248,530548,141066 -h4606,529:20753781,15885017:0,0,0 -g4606,529:31085297,15885017 -k4606,530:32422021,15885017:161008 -k4606,530:32583029,15885017:161008 -) -(4606,531:20753781,16762879:11829248,530548,141066 -h4606,530:20753781,16762879:0,0,0 -g4606,530:31085297,16762879 -k4606,531:32422021,16762879:161008 -k4606,531:32583029,16762879:161008 -) -(4606,532:20753781,17640742:11829248,530548,141066 -h4606,531:20753781,17640742:0,0,0 -g4606,531:29010586,17640742 -k4606,532:31384666,17640742:1198364 -k4606,532:32583029,17640742:1198363 -) -(4606,533:20753781,18518604:11829248,530548,102891 -h4606,532:20753781,18518604:0,0,0 -g4606,532:28595643,18518604 -k4606,533:31177194,18518604:1405835 -k4606,533:32583029,18518604:1405835 -) -(4606,534:20753781,19396466:11829248,530548,132808 -h4606,533:20753781,19396466:0,0,0 -g4606,533:30670355,19396466 -k4606,533:32583029,19396466:630135 -) -(4606,534:23375221,20261546:9207808,485622,11795 -k4606,534:28576814,20261546:4006216 -k4606,534:32583029,20261546:4006215 -) -(4606,535:20753781,21139408:11829248,530548,102891 -h4606,534:20753781,21139408:0,0,0 -g4606,534:30255413,21139408 -k4606,534:32583029,21139408:1045077 -) -(4606,535:23375221,22004488:9207808,485622,11795 -k4606,535:28566983,22004488:4016046 -k4606,535:32583029,22004488:4016046 -) -(4606,536:20753781,22882351:11829248,530548,102891 -h4606,535:20753781,22882351:0,0,0 -g4606,535:31085297,22882351 -k4606,536:32422021,22882351:161008 -k4606,536:32583029,22882351:161008 -) -(4606,537:20753781,23760213:11829248,530548,102891 -h4606,536:20753781,23760213:0,0,0 -g4606,536:31085297,23760213 -k4606,537:32422021,23760213:161008 -k4606,537:32583029,23760213:161008 -) -(4606,538:20753781,24638075:11829248,538806,132808 -h4606,537:20753781,24638075:0,0,0 -g4606,537:29840470,24638075 -k4606,538:31809438,24638075:773591 -k4606,538:32583029,24638075:773591 -) -(4606,539:20753781,25515937:11829248,538806,102891 -h4606,538:20753781,25515937:0,0,0 -g4606,538:29425528,25515937 -k4606,539:31592137,25515937:990893 -k4606,539:32583029,25515937:990892 -) -(4606,540:20753781,26393800:11829248,530548,132808 -h4606,539:20753781,26393800:0,0,0 -g4606,539:30255413,26393800 -k4606,540:32016910,26393800:566120 -k4606,540:32583029,26393800:566119 -) -(4606,541:20753781,27271662:11829248,530548,102891 -h4606,540:20753781,27271662:0,0,0 -g4606,540:26105989,27271662 -k4606,541:29932367,27271662:2650662 -k4606,541:32583029,27271662:2650662 -) -(4606,542:20753781,28149524:11829248,530548,102891 -h4606,541:20753781,28149524:0,0,0 -g4606,541:28180701,28149524 -k4606,542:30969723,28149524:1613306 -k4606,542:32583029,28149524:1613306 -) -(4606,543:20753781,29027386:11829248,530548,132808 -h4606,542:20753781,29027386:0,0,0 -g4606,542:29840470,29027386 -k4606,543:31809438,29027386:773591 -k4606,543:32583029,29027386:773591 -) -(4606,544:20753781,29905249:11829248,530548,102891 -h4606,543:20753781,29905249:0,0,0 -g4606,543:29010586,29905249 -k4606,544:31384666,29905249:1198364 -k4606,544:32583029,29905249:1198363 -) -(4606,545:20753781,30783111:11829248,530548,102891 -h4606,544:20753781,30783111:0,0,0 -g4606,544:29425528,30783111 -k4606,545:31601967,30783111:981062 -k4606,545:32583029,30783111:981062 -) -(4606,546:20753781,31660973:11829248,530548,102891 -h4606,545:20753781,31660973:0,0,0 -g4606,545:28595643,31660973 -k4606,546:31187025,31660973:1396005 -k4606,546:32583029,31660973:1396004 -) -(4606,547:20753781,32538835:11829248,530548,102891 -h4606,546:20753781,32538835:0,0,0 -g4606,546:28595643,32538835 -k4606,547:31187025,32538835:1396005 -k4606,547:32583029,32538835:1396004 -) -(4606,548:20753781,33416698:11829248,530548,141066 -h4606,547:20753781,33416698:0,0,0 -g4606,547:27350816,33416698 -k4606,548:30564611,33416698:2018418 -k4606,548:32583029,33416698:2018418 -) -(4606,549:20753781,34294560:11829248,530548,102891 -h4606,548:20753781,34294560:0,0,0 -g4606,548:28180701,34294560 -k4606,549:30969723,34294560:1613306 -k4606,549:32583029,34294560:1613306 -) -(4606,550:20753781,35172422:11829248,530548,132808 -h4606,549:20753781,35172422:0,0,0 -g4606,549:29425528,35172422 -k4606,550:31601967,35172422:981062 -k4606,550:32583029,35172422:981062 -) -(4606,551:20753781,36050284:11829248,530548,132808 -h4606,550:20753781,36050284:0,0,0 -g4606,550:28595643,36050284 -k4606,551:31187025,36050284:1396005 -k4606,551:32583029,36050284:1396004 -) -(4606,552:20753781,36928147:11829248,530548,141066 -h4606,551:20753781,36928147:0,0,0 -g4606,551:26520932,36928147 -k4606,552:30149669,36928147:2433360 -k4606,552:32583029,36928147:2433360 -) -(4606,553:20753781,37806009:11829248,530548,141066 -h4606,552:20753781,37806009:0,0,0 -g4606,552:27350816,37806009 -g4606,552:28919092,37806009 -k4606,553:31348749,37806009:1234280 -k4606,553:32583029,37806009:1234280 -) -(4606,554:20753781,38683871:11829248,530548,132808 -h4606,553:20753781,38683871:0,0,0 -g4606,553:28180701,38683871 -k4606,554:30969723,38683871:1613306 -k4606,554:32583029,38683871:1613306 -) -(4606,555:20753781,39561733:11829248,530548,102891 -h4606,554:20753781,39561733:0,0,0 -g4606,554:22786450,39561733 -g4606,554:24354726,39561733 -g4606,554:25923002,39561733 -k4606,555:29850704,39561733:2732325 -k4606,555:32583029,39561733:2732325 -) -(4606,556:20753781,40439596:11829248,530548,102891 -h4606,555:20753781,40439596:0,0,0 -g4606,555:24446219,40439596 -k4606,556:29102482,40439596:3480547 -k4606,556:32583029,40439596:3480547 -) -(4606,557:20753781,41317458:11829248,530548,102891 -h4606,556:20753781,41317458:0,0,0 -g4606,556:24446219,41317458 -k4606,557:29112313,41317458:3470717 -k4606,557:32583029,41317458:3470716 -) -(4606,558:20753781,42195320:11829248,530548,102891 -h4606,557:20753781,42195320:0,0,0 -g4606,557:24861162,42195320 -k4606,558:29319784,42195320:3263245 -k4606,558:32583029,42195320:3263245 -) -(4606,559:20753781,43073182:11829248,530548,102891 -h4606,558:20753781,43073182:0,0,0 -g4606,558:24446219,43073182 -k4606,559:29102482,43073182:3480547 -k4606,559:32583029,43073182:3480547 -) -(4606,560:20753781,43951045:11829248,530548,102891 -h4606,559:20753781,43951045:0,0,0 -g4606,559:23201392,43951045 -g4606,559:24769668,43951045 -k4606,560:29274037,43951045:3308992 -k4606,560:32583029,43951045:3308992 -) -(4606,561:20753781,44828907:11829248,530548,141066 -h4606,560:20753781,44828907:0,0,0 -g4606,560:25691047,44828907 -k4606,561:29734727,44828907:2848303 -k4606,561:32583029,44828907:2848302 -) -(4606,562:20753781,45706769:11829248,530548,132808 -h4606,561:20753781,45706769:0,0,0 -g4606,561:23201392,45706769 -g4606,561:24371209,45706769 -k4606,562:29074808,45706769:3508222 -k4606,562:32583029,45706769:3508221 -) -] -(4606,566:32583029,45706769:0,355205,126483 -h4606,566:32583029,45706769:420741,355205,126483 -k4606,566:32583029,45706769:-420741 +(4610,474:6630773,7131273:11829248,538806,102891 +h4610,473:6630773,7131273:0,0,0 +g4610,473:11568039,7131273 +k4610,474:15601888,7131273:2858133 +k4610,474:18460021,7131273:2858133 +) +(4610,475:6630773,8008448:11829248,538806,102891 +h4610,474:6630773,8008448:0,0,0 +g4610,474:11153096,8008448 +k4610,475:15404247,8008448:3055774 +k4610,475:18460021,8008448:3055774 +) +(4610,476:6630773,8885624:11829248,530548,102891 +h4610,475:6630773,8885624:0,0,0 +g4610,475:11568039,8885624 +k4610,476:15611719,8885624:2848303 +k4610,476:18460021,8885624:2848302 +) +(4610,477:6630773,9762799:11829248,530548,102891 +h4610,476:6630773,9762799:0,0,0 +g4610,476:11982981,9762799 +k4610,477:15809359,9762799:2650662 +k4610,477:18460021,9762799:2650662 +) +(4610,478:6630773,10639975:11829248,530548,102891 +h4610,477:6630773,10639975:0,0,0 +g4610,477:11153096,10639975 +k4610,478:15404247,10639975:3055774 +k4610,478:18460021,10639975:3055774 +) +(4610,479:6630773,11517150:11829248,530548,102891 +h4610,478:6630773,11517150:0,0,0 +g4610,478:11153096,11517150 +k4610,479:15404247,11517150:3055774 +k4610,479:18460021,11517150:3055774 +) +(4610,480:6630773,12394326:11829248,530548,102891 +h4610,479:6630773,12394326:0,0,0 +g4610,479:11982981,12394326 +g4610,479:13551257,12394326 +k4610,480:16603328,12394326:1856694 +k4610,480:18460021,12394326:1856693 +) +(4610,481:6630773,13271501:11829248,530548,102891 +h4610,480:6630773,13271501:0,0,0 +g4610,480:12397924,13271501 +g4610,480:13966200,13271501 +k4610,481:16810799,13271501:1649222 +k4610,481:18460021,13271501:1649222 +) +(4610,482:6630773,14148677:11829248,530548,102891 +h4610,481:6630773,14148677:0,0,0 +g4610,481:11153096,14148677 +k4610,482:15404247,14148677:3055774 +k4610,482:18460021,14148677:3055774 +) +(4610,483:6630773,15025852:11829248,530548,102891 +h4610,482:6630773,15025852:0,0,0 +g4610,482:11568039,15025852 +k4610,483:15611719,15025852:2848303 +k4610,483:18460021,15025852:2848302 +) +(4610,484:6630773,15903028:11829248,530548,102891 +h4610,483:6630773,15903028:0,0,0 +g4610,483:10738154,15903028 +k4610,484:15196776,15903028:3263245 +k4610,484:18460021,15903028:3263245 +) +(4610,485:6630773,16780203:11829248,530548,102891 +h4610,484:6630773,16780203:0,0,0 +g4610,484:9078384,16780203 +k4610,485:14357061,16780203:4102961 +k4610,485:18460021,16780203:4102960 +) +(4610,486:6630773,17657379:11829248,530548,102891 +h4610,485:6630773,17657379:0,0,0 +g4610,485:10323211,17657379 +g4610,485:11493028,17657379 +g4610,485:12662845,17657379 +k4610,486:16159122,17657379:2300900 +k4610,486:18460021,17657379:2300899 +) +(4610,487:6630773,18534554:11829248,530548,102891 +h4610,486:6630773,18534554:0,0,0 +g4610,486:10323211,18534554 +k4610,487:14979474,18534554:3480547 +k4610,487:18460021,18534554:3480547 +) +(4610,488:6630773,19411730:11829248,530548,102891 +h4610,487:6630773,19411730:0,0,0 +g4610,487:10738154,19411730 +g4610,487:11907971,19411730 +k4610,488:15771854,19411730:2688167 +k4610,488:18460021,19411730:2688167 +) +(4610,489:6630773,20288905:11829248,530548,132808 +h4610,488:6630773,20288905:0,0,0 +g4610,488:9078384,20288905 +g4610,488:10248201,20288905 +k4610,489:14742740,20288905:3717282 +k4610,489:18460021,20288905:3717281 +) +(4610,490:6630773,21166081:11829248,485622,132808 +h4610,489:6630773,21166081:0,0,0 +g4610,489:9493326,21166081 +g4610,489:11061602,21166081 +g4610,489:12629878,21166081 +g4610,489:14198154,21166081 +k4610,490:16926776,21166081:1533245 +k4610,490:18460021,21166081:1533245 +) +(4610,491:6630773,22043256:11829248,530548,132808 +h4610,490:6630773,22043256:0,0,0 +g4610,490:10738154,22043256 +g4610,490:12306430,22043256 +g4610,490:13874706,22043256 +k4610,491:16755222,22043256:1704800 +k4610,491:18460021,22043256:1704799 +) +(4610,492:6630773,22920432:11829248,530548,102891 +h4610,491:6630773,22920432:0,0,0 +g4610,491:9908269,22920432 +k4610,492:14772003,22920432:3688018 +k4610,492:18460021,22920432:3688018 +) +(4610,493:6630773,23797607:11829248,530548,102891 +h4610,492:6630773,23797607:0,0,0 +g4610,492:11568039,23797607 +g4610,492:13136315,23797607 +k4610,493:16386026,23797607:2073995 +k4610,493:18460021,23797607:2073995 +) +(4610,494:6630773,24674783:11829248,530548,102891 +h4610,493:6630773,24674783:0,0,0 +g4610,493:10323211,24674783 +k4610,494:14989305,24674783:3470717 +k4610,494:18460021,24674783:3470716 +) +(4610,495:6630773,25551958:11829248,530548,102891 +h4610,494:6630773,25551958:0,0,0 +g4610,494:9078384,25551958 +k4610,495:14167662,25551958:4292360 +k4610,495:18460021,25551958:4292359 +) +(4610,496:6630773,26429134:11829248,538806,102891 +h4610,495:6630773,26429134:0,0,0 +g4610,495:8663442,26429134 +k4610,496:14159420,26429134:4300601 +k4610,496:18460021,26429134:4300601 +) +(4610,497:6630773,27306309:11829248,530548,141066 +h4610,496:6630773,27306309:0,0,0 +g4610,496:9078384,27306309 +k4610,497:14366891,27306309:4093130 +k4610,497:18460021,27306309:4093130 +) +(4610,498:6630773,28183485:11829248,530548,141066 +h4610,497:6630773,28183485:0,0,0 +g4610,497:11982981,28183485 +k4610,498:15809359,28183485:2650662 +k4610,498:18460021,28183485:2650662 +) +(4610,499:6630773,29060660:11829248,530548,102891 +h4610,498:6630773,29060660:0,0,0 +g4610,498:9078384,29060660 +g4610,498:10248201,29060660 +k4610,499:14951800,29060660:3508222 +k4610,499:18460021,29060660:3508221 +) +(4610,500:6630773,29937836:11829248,530548,102891 +h4610,499:6630773,29937836:0,0,0 +g4610,499:9078384,29937836 +g4610,499:10646660,29937836 +k4610,500:15141199,29937836:3318823 +k4610,500:18460021,29937836:3318822 +) +(4610,501:6630773,30815011:11829248,530548,102891 +h4610,500:6630773,30815011:0,0,0 +g4610,500:10323211,30815011 +k4610,501:14989305,30815011:3470717 +k4610,501:18460021,30815011:3470716 +) +(4610,502:6630773,31692187:11829248,530548,102891 +h4610,501:6630773,31692187:0,0,0 +g4610,501:8663442,31692187 +k4610,502:13960191,31692187:4499831 +k4610,502:18460021,31692187:4499830 +) +(4610,503:6630773,32569362:11829248,530548,102891 +h4610,502:6630773,32569362:0,0,0 +g4610,502:11568039,32569362 +k4610,503:15611719,32569362:2848303 +k4610,503:18460021,32569362:2848302 +) +(4610,504:6630773,33446538:11829248,530548,102891 +h4610,503:6630773,33446538:0,0,0 +g4610,503:9908269,33446538 +g4610,503:11476545,33446538 +g4610,503:13044821,33446538 +k4610,504:16350110,33446538:2109912 +k4610,504:18460021,33446538:2109911 +) +(4610,505:6630773,34323713:11829248,530548,102891 +h4610,504:6630773,34323713:0,0,0 +g4610,504:9908269,34323713 +g4610,504:11078086,34323713 +k4610,505:15366742,34323713:3093279 +k4610,505:18460021,34323713:3093279 +) +(4610,506:6630773,35200889:11829248,530548,102891 +h4610,505:6630773,35200889:0,0,0 +g4610,505:11153096,35200889 +k4610,506:15404247,35200889:3055774 +k4610,506:18460021,35200889:3055774 +) +(4610,507:6630773,36078064:11829248,530548,102891 +h4610,506:6630773,36078064:0,0,0 +g4610,506:11153096,36078064 +g4610,506:12322913,36078064 +k4610,507:15989156,36078064:2470866 +k4610,507:18460021,36078064:2470865 +) +(4610,508:6630773,36955240:11829248,530548,102891 +h4610,507:6630773,36955240:0,0,0 +g4610,507:11982981,36955240 +k4610,508:15819190,36955240:2640832 +k4610,508:18460021,36955240:2640831 +) +(4610,509:6630773,37832415:11829248,530548,102891 +h4610,508:6630773,37832415:0,0,0 +g4610,508:10738154,37832415 +g4610,508:12306430,37832415 +k4610,509:15971084,37832415:2488938 +k4610,509:18460021,37832415:2488937 +) +(4610,510:6630773,38709591:11829248,530548,132808 +h4610,509:6630773,38709591:0,0,0 +g4610,509:9908269,38709591 +k4610,510:14781834,38709591:3678188 +k4610,510:18460021,38709591:3678187 +) +(4610,511:6630773,39586766:11829248,530548,102891 +h4610,510:6630773,39586766:0,0,0 +g4610,510:8663442,39586766 +k4610,511:14159420,39586766:4300601 +k4610,511:18460021,39586766:4300601 +) +(4610,512:6630773,40463942:11829248,538806,102891 +h4610,511:6630773,40463942:0,0,0 +g4610,511:9908269,40463942 +g4610,511:11476545,40463942 +k4610,512:15565972,40463942:2894050 +k4610,512:18460021,40463942:2894049 +) +(4610,513:6630773,41341117:11829248,530548,102891 +h4610,512:6630773,41341117:0,0,0 +g4610,512:10323211,41341117 +k4610,513:14989305,41341117:3470717 +k4610,513:18460021,41341117:3470716 +) +(4610,517:6630773,43075243:11829248,530548,132808 +h4610,516:6630773,43075243:0,0,0 +g4610,516:10323211,43075243 +k4610,517:14989305,43075243:3470717 +k4610,517:18460021,43075243:3470716 +) +(4610,518:6630773,43952418:11829248,530548,132808 +h4610,517:6630773,43952418:0,0,0 +g4610,517:10323211,43952418 +g4610,517:11891487,43952418 +g4610,517:13459763,43952418 +k4610,518:16557581,43952418:1902441 +k4610,518:18460021,43952418:1902440 +) +(4610,519:6630773,44829594:11829248,530548,102891 +h4610,518:6630773,44829594:0,0,0 +g4610,518:9493326,44829594 +k4610,519:15335890,44829594:3124131 +k4610,519:18460021,44829594:3124131 +) +(4610,520:6630773,45706769:11829248,530548,102891 +h4610,519:6630773,45706769:0,0,0 +g4610,519:10738154,45706769 +k4610,520:15196776,45706769:3263245 +k4610,520:18460021,45706769:3263245 +) +] +k4610,566:19606901,45706769:1146880 +r4610,566:19606901,45706769:0,40249098,141066 +k4610,566:20753781,45706769:1146880 +[4610,566:20753781,45706769:11829248,40108032,141066 +(4610,521:20753781,6254097:11829248,530548,102891 +h4610,520:20753781,6254097:0,0,0 +g4610,520:29840470,6254097 +k4610,521:31799608,6254097:783422 +k4610,521:32583029,6254097:783421 +) +(4610,522:20753781,7131959:11829248,530548,102891 +h4610,521:20753781,7131959:0,0,0 +g4610,521:29840470,7131959 +k4610,522:31799608,7131959:783422 +k4610,522:32583029,7131959:783421 +) +(4610,523:20753781,8009821:11829248,530548,102891 +h4610,522:20753781,8009821:0,0,0 +k4610,522:32583029,8009821:1368527 +) +(4610,523:23375221,8874901:9207808,485622,102891 +g4610,522:24943497,8874901 +g4610,522:26511773,8874901 +k4610,523:30135259,8874901:2447770 +k4610,523:32583029,8874901:2447770 +) +(4610,524:20753781,9752764:11829248,530548,102891 +h4610,523:20753781,9752764:0,0,0 +g4610,523:29010586,9752764 +k4610,524:31384666,9752764:1198364 +k4610,524:32583029,9752764:1198363 +) +(4610,525:20753781,10630626:11829248,530548,102891 +h4610,524:20753781,10630626:0,0,0 +g4610,524:30670355,10630626 +k4610,525:32214550,10630626:368479 +k4610,525:32583029,10630626:368479 +) +(4610,526:20753781,11508488:11829248,530548,102891 +h4610,525:20753781,11508488:0,0,0 +g4610,525:30670355,11508488 +k4610,525:32583029,11508488:630135 +) +(4610,526:23375221,12373568:9207808,485622,102891 +g4610,525:24943497,12373568 +k4610,526:29351121,12373568:3231908 +k4610,526:32583029,12373568:3231908 +) +(4610,527:20753781,13251430:11829248,530548,102891 +h4610,526:20753781,13251430:0,0,0 +g4610,526:31085297,13251430 +k4610,527:32422021,13251430:161008 +k4610,527:32583029,13251430:161008 +) +(4610,528:20753781,14129293:11829248,530548,141066 +h4610,527:20753781,14129293:0,0,0 +g4610,527:30670355,14129293 +k4610,528:32214550,14129293:368479 +k4610,528:32583029,14129293:368479 +) +(4610,529:20753781,15007155:11829248,530548,141066 +h4610,528:20753781,15007155:0,0,0 +g4610,528:31085297,15007155 +k4610,529:32422021,15007155:161008 +k4610,529:32583029,15007155:161008 +) +(4610,530:20753781,15885017:11829248,530548,141066 +h4610,529:20753781,15885017:0,0,0 +g4610,529:31085297,15885017 +k4610,530:32422021,15885017:161008 +k4610,530:32583029,15885017:161008 +) +(4610,531:20753781,16762879:11829248,530548,141066 +h4610,530:20753781,16762879:0,0,0 +g4610,530:29010586,16762879 +k4610,531:31384666,16762879:1198364 +k4610,531:32583029,16762879:1198363 +) +(4610,532:20753781,17640742:11829248,530548,102891 +h4610,531:20753781,17640742:0,0,0 +g4610,531:28595643,17640742 +k4610,532:31177194,17640742:1405835 +k4610,532:32583029,17640742:1405835 +) +(4610,533:20753781,18518604:11829248,530548,132808 +h4610,532:20753781,18518604:0,0,0 +g4610,532:30670355,18518604 +k4610,532:32583029,18518604:630135 +) +(4610,533:23375221,19383684:9207808,485622,11795 +k4610,533:28576814,19383684:4006216 +k4610,533:32583029,19383684:4006215 +) +(4610,534:20753781,20261546:11829248,530548,102891 +h4610,533:20753781,20261546:0,0,0 +g4610,533:30255413,20261546 +k4610,533:32583029,20261546:1045077 +) +(4610,534:23375221,21126626:9207808,485622,11795 +k4610,534:28566983,21126626:4016046 +k4610,534:32583029,21126626:4016046 +) +(4610,535:20753781,22004488:11829248,530548,102891 +h4610,534:20753781,22004488:0,0,0 +g4610,534:31085297,22004488 +k4610,535:32422021,22004488:161008 +k4610,535:32583029,22004488:161008 +) +(4610,536:20753781,22882351:11829248,530548,102891 +h4610,535:20753781,22882351:0,0,0 +g4610,535:31085297,22882351 +k4610,536:32422021,22882351:161008 +k4610,536:32583029,22882351:161008 +) +(4610,537:20753781,23760213:11829248,538806,132808 +h4610,536:20753781,23760213:0,0,0 +g4610,536:29840470,23760213 +k4610,537:31809438,23760213:773591 +k4610,537:32583029,23760213:773591 +) +(4610,538:20753781,24638075:11829248,538806,102891 +h4610,537:20753781,24638075:0,0,0 +g4610,537:29425528,24638075 +k4610,538:31592137,24638075:990893 +k4610,538:32583029,24638075:990892 +) +(4610,539:20753781,25515937:11829248,530548,132808 +h4610,538:20753781,25515937:0,0,0 +g4610,538:30255413,25515937 +k4610,539:32016910,25515937:566120 +k4610,539:32583029,25515937:566119 +) +(4610,540:20753781,26393800:11829248,530548,102891 +h4610,539:20753781,26393800:0,0,0 +g4610,539:26105989,26393800 +k4610,540:29932367,26393800:2650662 +k4610,540:32583029,26393800:2650662 +) +(4610,541:20753781,27271662:11829248,530548,102891 +h4610,540:20753781,27271662:0,0,0 +g4610,540:28180701,27271662 +k4610,541:30969723,27271662:1613306 +k4610,541:32583029,27271662:1613306 +) +(4610,542:20753781,28149524:11829248,530548,132808 +h4610,541:20753781,28149524:0,0,0 +g4610,541:29840470,28149524 +k4610,542:31809438,28149524:773591 +k4610,542:32583029,28149524:773591 +) +(4610,543:20753781,29027386:11829248,530548,102891 +h4610,542:20753781,29027386:0,0,0 +g4610,542:29010586,29027386 +k4610,543:31384666,29027386:1198364 +k4610,543:32583029,29027386:1198363 +) +(4610,544:20753781,29905249:11829248,530548,102891 +h4610,543:20753781,29905249:0,0,0 +g4610,543:29425528,29905249 +k4610,544:31601967,29905249:981062 +k4610,544:32583029,29905249:981062 +) +(4610,545:20753781,30783111:11829248,530548,102891 +h4610,544:20753781,30783111:0,0,0 +g4610,544:28595643,30783111 +k4610,545:31187025,30783111:1396005 +k4610,545:32583029,30783111:1396004 +) +(4610,546:20753781,31660973:11829248,530548,102891 +h4610,545:20753781,31660973:0,0,0 +g4610,545:28595643,31660973 +k4610,546:31187025,31660973:1396005 +k4610,546:32583029,31660973:1396004 +) +(4610,547:20753781,32538835:11829248,530548,141066 +h4610,546:20753781,32538835:0,0,0 +g4610,546:27350816,32538835 +k4610,547:30564611,32538835:2018418 +k4610,547:32583029,32538835:2018418 +) +(4610,548:20753781,33416698:11829248,530548,102891 +h4610,547:20753781,33416698:0,0,0 +g4610,547:28180701,33416698 +k4610,548:30969723,33416698:1613306 +k4610,548:32583029,33416698:1613306 +) +(4610,549:20753781,34294560:11829248,530548,132808 +h4610,548:20753781,34294560:0,0,0 +g4610,548:29425528,34294560 +k4610,549:31601967,34294560:981062 +k4610,549:32583029,34294560:981062 +) +(4610,550:20753781,35172422:11829248,530548,132808 +h4610,549:20753781,35172422:0,0,0 +g4610,549:28595643,35172422 +k4610,550:31187025,35172422:1396005 +k4610,550:32583029,35172422:1396004 +) +(4610,551:20753781,36050284:11829248,530548,141066 +h4610,550:20753781,36050284:0,0,0 +g4610,550:26520932,36050284 +k4610,551:30149669,36050284:2433360 +k4610,551:32583029,36050284:2433360 +) +(4610,552:20753781,36928147:11829248,530548,141066 +h4610,551:20753781,36928147:0,0,0 +g4610,551:27350816,36928147 +g4610,551:28919092,36928147 +k4610,552:31348749,36928147:1234280 +k4610,552:32583029,36928147:1234280 +) +(4610,553:20753781,37806009:11829248,530548,132808 +h4610,552:20753781,37806009:0,0,0 +g4610,552:28180701,37806009 +k4610,553:30969723,37806009:1613306 +k4610,553:32583029,37806009:1613306 +) +(4610,554:20753781,38683871:11829248,530548,102891 +h4610,553:20753781,38683871:0,0,0 +g4610,553:22786450,38683871 +g4610,553:24354726,38683871 +g4610,553:25923002,38683871 +k4610,554:29850704,38683871:2732325 +k4610,554:32583029,38683871:2732325 +) +(4610,555:20753781,39561733:11829248,530548,102891 +h4610,554:20753781,39561733:0,0,0 +g4610,554:24446219,39561733 +k4610,555:29102482,39561733:3480547 +k4610,555:32583029,39561733:3480547 +) +(4610,556:20753781,40439596:11829248,530548,102891 +h4610,555:20753781,40439596:0,0,0 +g4610,555:24446219,40439596 +k4610,556:29112313,40439596:3470717 +k4610,556:32583029,40439596:3470716 +) +(4610,557:20753781,41317458:11829248,530548,102891 +h4610,556:20753781,41317458:0,0,0 +g4610,556:24861162,41317458 +k4610,557:29319784,41317458:3263245 +k4610,557:32583029,41317458:3263245 +) +(4610,558:20753781,42195320:11829248,530548,102891 +h4610,557:20753781,42195320:0,0,0 +g4610,557:24446219,42195320 +k4610,558:29102482,42195320:3480547 +k4610,558:32583029,42195320:3480547 +) +(4610,559:20753781,43073182:11829248,530548,102891 +h4610,558:20753781,43073182:0,0,0 +g4610,558:23201392,43073182 +g4610,558:24769668,43073182 +k4610,559:29274037,43073182:3308992 +k4610,559:32583029,43073182:3308992 +) +(4610,560:20753781,43951045:11829248,530548,141066 +h4610,559:20753781,43951045:0,0,0 +g4610,559:25691047,43951045 +k4610,560:29734727,43951045:2848303 +k4610,560:32583029,43951045:2848302 +) +(4610,561:20753781,44828907:11829248,530548,132808 +h4610,560:20753781,44828907:0,0,0 +g4610,560:23201392,44828907 +g4610,560:24371209,44828907 +k4610,561:29074808,44828907:3508222 +k4610,561:32583029,44828907:3508221 +) +(4610,562:20753781,45706769:11829248,530548,141066 +h4610,561:20753781,45706769:0,0,0 +g4610,561:25691047,45706769 +k4610,562:29734727,45706769:2848303 +k4610,562:32583029,45706769:2848302 +) +] +(4610,566:32583029,45706769:0,355205,126483 +h4610,566:32583029,45706769:420741,355205,126483 +k4610,566:32583029,45706769:-420741 ) -) -] -(4606,566:32583029,45706769:0,0,0 -g4606,566:32583029,45706769 +) +] +(4610,566:32583029,45706769:0,0,0 +g4610,566:32583029,45706769 ) ) -] -(4606,566:6630773,47279633:25952256,0,0 -h4606,566:6630773,47279633:25952256,0,0 +] +(4610,566:6630773,47279633:25952256,0,0 +h4610,566:6630773,47279633:25952256,0,0 ) ] -(4606,566:4262630,4025873:0,0,0 -[4606,566:-473656,4025873:0,0,0 -(4606,566:-473656,-710413:0,0,0 -(4606,566:-473656,-710413:0,0,0 -g4606,566:-473656,-710413 +(4610,566:4262630,4025873:0,0,0 +[4610,566:-473656,4025873:0,0,0 +(4610,566:-473656,-710413:0,0,0 +(4610,566:-473656,-710413:0,0,0 +g4610,566:-473656,-710413 ) -g4606,566:-473656,-710413 +g4610,566:-473656,-710413 ) ] ) ] !21230 -}451 +}452 !12 -{452 -[4606,659:4262630,47279633:28320399,43253760,0 -(4606,659:4262630,4025873:0,0,0 -[4606,659:-473656,4025873:0,0,0 -(4606,659:-473656,-710413:0,0,0 -(4606,659:-473656,-644877:0,0,0 -k4606,659:-473656,-644877:-65536 +{453 +[4610,660:4262630,47279633:28320399,43253760,0 +(4610,660:4262630,4025873:0,0,0 +[4610,660:-473656,4025873:0,0,0 +(4610,660:-473656,-710413:0,0,0 +(4610,660:-473656,-644877:0,0,0 +k4610,660:-473656,-644877:-65536 ) -(4606,659:-473656,4736287:0,0,0 -k4606,659:-473656,4736287:5209943 +(4610,660:-473656,4736287:0,0,0 +k4610,660:-473656,4736287:5209943 ) -g4606,659:-473656,-710413 +g4610,660:-473656,-710413 ) ] ) -[4606,659:6630773,47279633:25952256,43253760,0 -[4606,659:6630773,4812305:25952256,786432,0 -(4606,659:6630773,4812305:25952256,513147,126483 -(4606,659:6630773,4812305:25952256,513147,126483 -g4606,659:3078558,4812305 -[4606,659:3078558,4812305:0,0,0 -(4606,659:3078558,2439708:0,1703936,0 -k4606,659:1358238,2439708:-1720320 -(4606,1:1358238,2439708:1720320,1703936,0 -(4606,1:1358238,2439708:1179648,16384,0 -r4606,659:2537886,2439708:1179648,16384,0 +[4610,660:6630773,47279633:25952256,43253760,0 +[4610,660:6630773,4812305:25952256,786432,0 +(4610,660:6630773,4812305:25952256,513147,126483 +(4610,660:6630773,4812305:25952256,513147,126483 +g4610,660:3078558,4812305 +[4610,660:3078558,4812305:0,0,0 +(4610,660:3078558,2439708:0,1703936,0 +k4610,660:1358238,2439708:-1720320 +(4610,1:1358238,2439708:1720320,1703936,0 +(4610,1:1358238,2439708:1179648,16384,0 +r4610,660:2537886,2439708:1179648,16384,0 ) -g4606,1:3062174,2439708 -(4606,1:3062174,2439708:16384,1703936,0 -[4606,1:3062174,2439708:25952256,1703936,0 -(4606,1:3062174,1915420:25952256,1179648,0 -(4606,1:3062174,1915420:16384,1179648,0 -r4606,659:3078558,1915420:16384,1179648,0 +g4610,1:3062174,2439708 +(4610,1:3062174,2439708:16384,1703936,0 +[4610,1:3062174,2439708:25952256,1703936,0 +(4610,1:3062174,1915420:25952256,1179648,0 +(4610,1:3062174,1915420:16384,1179648,0 +r4610,660:3078558,1915420:16384,1179648,0 ) -k4606,1:29014430,1915420:25935872 -g4606,1:29014430,1915420 +k4610,1:29014430,1915420:25935872 +g4610,1:29014430,1915420 ) ] ) ) ) ] -[4606,659:3078558,4812305:0,0,0 -(4606,659:3078558,2439708:0,1703936,0 -g4606,659:29030814,2439708 -g4606,659:36135244,2439708 -(4606,1:36135244,2439708:1720320,1703936,0 -(4606,1:36135244,2439708:16384,1703936,0 -[4606,1:36135244,2439708:25952256,1703936,0 -(4606,1:36135244,1915420:25952256,1179648,0 -(4606,1:36135244,1915420:16384,1179648,0 -r4606,659:36151628,1915420:16384,1179648,0 +[4610,660:3078558,4812305:0,0,0 +(4610,660:3078558,2439708:0,1703936,0 +g4610,660:29030814,2439708 +g4610,660:36135244,2439708 +(4610,1:36135244,2439708:1720320,1703936,0 +(4610,1:36135244,2439708:16384,1703936,0 +[4610,1:36135244,2439708:25952256,1703936,0 +(4610,1:36135244,1915420:25952256,1179648,0 +(4610,1:36135244,1915420:16384,1179648,0 +r4610,660:36151628,1915420:16384,1179648,0 ) -k4606,1:62087500,1915420:25935872 -g4606,1:62087500,1915420 +k4610,1:62087500,1915420:25935872 +g4610,1:62087500,1915420 ) ] ) -g4606,1:36675916,2439708 -(4606,1:36675916,2439708:1179648,16384,0 -r4606,659:37855564,2439708:1179648,16384,0 +g4610,1:36675916,2439708 +(4610,1:36675916,2439708:1179648,16384,0 +r4610,660:37855564,2439708:1179648,16384,0 ) ) -k4606,659:3078556,2439708:-34777008 +k4610,660:3078556,2439708:-34777008 ) ] -[4606,659:3078558,4812305:0,0,0 -(4606,659:3078558,49800853:0,16384,2228224 -k4606,659:1358238,49800853:-1720320 -(4606,1:1358238,49800853:1720320,16384,2228224 -(4606,1:1358238,49800853:1179648,16384,0 -r4606,659:2537886,49800853:1179648,16384,0 +[4610,660:3078558,4812305:0,0,0 +(4610,660:3078558,49800853:0,16384,2228224 +k4610,660:1358238,49800853:-1720320 +(4610,1:1358238,49800853:1720320,16384,2228224 +(4610,1:1358238,49800853:1179648,16384,0 +r4610,660:2537886,49800853:1179648,16384,0 ) -g4606,1:3062174,49800853 -(4606,1:3062174,52029077:16384,1703936,0 -[4606,1:3062174,52029077:25952256,1703936,0 -(4606,1:3062174,51504789:25952256,1179648,0 -(4606,1:3062174,51504789:16384,1179648,0 -r4606,659:3078558,51504789:16384,1179648,0 +g4610,1:3062174,49800853 +(4610,1:3062174,52029077:16384,1703936,0 +[4610,1:3062174,52029077:25952256,1703936,0 +(4610,1:3062174,51504789:25952256,1179648,0 +(4610,1:3062174,51504789:16384,1179648,0 +r4610,660:3078558,51504789:16384,1179648,0 ) -k4606,1:29014430,51504789:25935872 -g4606,1:29014430,51504789 +k4610,1:29014430,51504789:25935872 +g4610,1:29014430,51504789 ) ] ) ) ) ] -[4606,659:3078558,4812305:0,0,0 -(4606,659:3078558,49800853:0,16384,2228224 -g4606,659:29030814,49800853 -g4606,659:36135244,49800853 -(4606,1:36135244,49800853:1720320,16384,2228224 -(4606,1:36135244,52029077:16384,1703936,0 -[4606,1:36135244,52029077:25952256,1703936,0 -(4606,1:36135244,51504789:25952256,1179648,0 -(4606,1:36135244,51504789:16384,1179648,0 -r4606,659:36151628,51504789:16384,1179648,0 +[4610,660:3078558,4812305:0,0,0 +(4610,660:3078558,49800853:0,16384,2228224 +g4610,660:29030814,49800853 +g4610,660:36135244,49800853 +(4610,1:36135244,49800853:1720320,16384,2228224 +(4610,1:36135244,52029077:16384,1703936,0 +[4610,1:36135244,52029077:25952256,1703936,0 +(4610,1:36135244,51504789:25952256,1179648,0 +(4610,1:36135244,51504789:16384,1179648,0 +r4610,660:36151628,51504789:16384,1179648,0 ) -k4606,1:62087500,51504789:25935872 -g4606,1:62087500,51504789 +k4610,1:62087500,51504789:25935872 +g4610,1:62087500,51504789 ) ] ) -g4606,1:36675916,49800853 -(4606,1:36675916,49800853:1179648,16384,0 -r4606,659:37855564,49800853:1179648,16384,0 +g4610,1:36675916,49800853 +(4610,1:36675916,49800853:1179648,16384,0 +r4610,660:37855564,49800853:1179648,16384,0 ) ) -k4606,659:3078556,49800853:-34777008 +k4610,660:3078556,49800853:-34777008 ) ] -g4606,659:6630773,4812305 -g4606,659:6630773,4812305 -g4606,659:10190688,4812305 -g4606,659:12088610,4812305 -g4606,659:12903877,4812305 -g4606,659:13517294,4812305 -g4606,659:15860861,4812305 -k4606,659:31387652,4812305:15526791 +g4610,660:6630773,4812305 +g4610,660:6630773,4812305 +g4610,660:10190688,4812305 +g4610,660:12088610,4812305 +g4610,660:12903877,4812305 +g4610,660:13517294,4812305 +g4610,660:15860861,4812305 +k4610,660:31387652,4812305:15526791 ) ) ] -[4606,659:6630773,45706769:25952256,40108032,0 -(4606,659:6630773,45706769:25952256,40108032,0 -(4606,659:6630773,45706769:0,0,0 -g4606,659:6630773,45706769 +[4610,660:6630773,45706769:25952256,40108032,0 +(4610,660:6630773,45706769:25952256,40108032,0 +(4610,660:6630773,45706769:0,0,0 +g4610,660:6630773,45706769 ) -[4606,659:6630773,45706769:25952256,40108032,0 -(4606,659:6630773,45706769:25952256,40108032,126483 -[4606,659:6630773,45706769:11829248,40108032,102891 -(4606,563:6630773,6254097:11829248,530548,141066 -h4606,562:6630773,6254097:0,0,0 -g4606,562:11568039,6254097 -k4606,563:15611719,6254097:2848303 -k4606,563:18460021,6254097:2848302 +[4610,660:6630773,45706769:25952256,40108032,0 +(4610,660:6630773,45706769:25952256,40108032,126483 +[4610,660:6630773,45706769:11829248,40108032,102891 +(4610,563:6630773,6254097:11829248,530548,102891 +h4610,562:6630773,6254097:0,0,0 +g4610,562:11153096,6254097 +k4610,563:15404247,6254097:3055774 +k4610,563:18460021,6254097:3055774 ) -(4606,564:6630773,7153059:11829248,530548,102891 -h4606,563:6630773,7153059:0,0,0 -g4606,563:11153096,7153059 -k4606,564:15404247,7153059:3055774 -k4606,564:18460021,7153059:3055774 -) -(4606,565:6630773,8052021:11829248,530548,132808 -h4606,564:6630773,8052021:0,0,0 -g4606,564:14057693,8052021 -k4606,565:16856546,8052021:1603476 -k4606,565:18460021,8052021:1603475 -) -(4606,566:6630773,8950982:11829248,530548,102891 -h4606,565:6630773,8950982:0,0,0 -g4606,565:9908269,8950982 -k4606,566:14781834,8950982:3678188 -k4606,566:18460021,8950982:3678187 -) -(4606,567:6630773,9849944:11829248,530548,102891 -h4606,566:6630773,9849944:0,0,0 -g4606,566:9908269,9849944 -k4606,567:14781834,9849944:3678188 -k4606,567:18460021,9849944:3678187 -) -(4606,568:6630773,10748906:11829248,530548,102891 -h4606,567:6630773,10748906:0,0,0 -g4606,567:12812866,10748906 -k4606,568:16234132,10748906:2225889 -k4606,568:18460021,10748906:2225889 -) -(4606,569:6630773,11647868:11829248,538806,102891 -h4606,568:6630773,11647868:0,0,0 -g4606,568:14472635,11647868 -k4606,569:17064017,11647868:1396005 -k4606,569:18460021,11647868:1396004 -) -(4606,570:6630773,12546829:11829248,538806,141066 -h4606,569:6630773,12546829:0,0,0 -g4606,569:10323211,12546829 -k4606,570:14790075,12546829:3669946 -k4606,570:18460021,12546829:3669946 -) -(4606,571:6630773,13445791:11829248,530548,102891 -h4606,570:6630773,13445791:0,0,0 -g4606,570:9078384,13445791 -k4606,571:14167662,13445791:4292360 -k4606,571:18460021,13445791:4292359 -) -(4606,572:6630773,14344753:11829248,530548,102891 -h4606,571:6630773,14344753:0,0,0 -g4606,571:9908269,14344753 -k4606,572:14772003,14344753:3688018 -k4606,572:18460021,14344753:3688018 -) -(4606,573:6630773,15243715:11829248,530548,132808 -h4606,572:6630773,15243715:0,0,0 -g4606,572:13227808,15243715 -k4606,573:16431773,15243715:2028249 -k4606,573:18460021,15243715:2028248 -) -(4606,574:6630773,16142676:11829248,530548,102891 -h4606,573:6630773,16142676:0,0,0 -g4606,573:9908269,16142676 -k4606,574:14582604,16142676:3877417 -k4606,574:18460021,16142676:3877417 -) -(4606,575:6630773,17041638:11829248,530548,102891 -h4606,574:6630773,17041638:0,0,0 -g4606,574:9493326,17041638 -g4606,574:10663143,17041638 -g4606,574:11832960,17041638 -g4606,574:13002777,17041638 -g4606,574:14571053,17041638 -k4606,575:17113226,17041638:1346796 -k4606,575:18460021,17041638:1346795 -) -(4606,576:6630773,17940600:11829248,530548,102891 -h4606,575:6630773,17940600:0,0,0 -g4606,575:10323211,17940600 -k4606,576:14979474,17940600:3480547 -k4606,576:18460021,17940600:3480547 -) -(4606,577:6630773,18839562:11829248,530548,132808 -h4606,576:6630773,18839562:0,0,0 -g4606,576:10323211,18839562 -k4606,577:14979474,18839562:3480547 -k4606,577:18460021,18839562:3480547 -) -(4606,578:6630773,19738523:11829248,530548,132808 -h4606,577:6630773,19738523:0,0,0 -g4606,577:9908269,19738523 -g4606,577:11476545,19738523 -k4606,578:15565972,19738523:2894050 -k4606,578:18460021,19738523:2894049 -) -(4606,579:6630773,20637485:11829248,530548,132808 -h4606,578:6630773,20637485:0,0,0 -g4606,578:10323211,20637485 -k4606,579:14989305,20637485:3470717 -k4606,579:18460021,20637485:3470716 -) -(4606,580:6630773,21536447:11829248,538806,132808 -h4606,579:6630773,21536447:0,0,0 -g4606,579:10738154,21536447 -g4606,579:11907971,21536447 -g4606,579:13077788,21536447 -g4606,579:14646064,21536447 -k4606,580:17150731,21536447:1309290 -k4606,580:18460021,21536447:1309290 -) -(4606,581:6630773,22435409:11829248,530548,132808 -h4606,580:6630773,22435409:0,0,0 -g4606,580:9493326,22435409 -k4606,581:14375133,22435409:4084889 -k4606,581:18460021,22435409:4084888 -) -(4606,582:6630773,23334370:11829248,530548,102891 -h4606,581:6630773,23334370:0,0,0 -g4606,581:11153096,23334370 -g4606,581:12721372,23334370 -k4606,582:16188385,23334370:2271636 -k4606,582:18460021,23334370:2271636 -) -(4606,583:6630773,24233332:11829248,530548,141066 -h4606,582:6630773,24233332:0,0,0 -g4606,582:9908269,24233332 -g4606,582:11476545,24233332 -k4606,583:15565972,24233332:2894050 -k4606,583:18460021,24233332:2894049 -) -(4606,584:6630773,25132294:11829248,530548,102891 -h4606,583:6630773,25132294:0,0,0 -g4606,583:12397924,25132294 -k4606,584:16016831,25132294:2443191 -k4606,584:18460021,25132294:2443190 -) -(4606,585:6630773,26031256:11829248,530548,102891 -h4606,584:6630773,26031256:0,0,0 -g4606,584:9493326,26031256 -k4606,585:14574362,26031256:3885659 -k4606,585:18460021,26031256:3885659 -) -(4606,586:6630773,26930217:11829248,530548,102891 -h4606,585:6630773,26930217:0,0,0 -g4606,585:11153096,26930217 -g4606,585:14244429,26930217 -g4606,585:15812705,26930217 -k4606,586:17734052,26930217:725970 -k4606,586:18460021,26930217:725969 -) -(4606,587:6630773,27829179:11829248,530548,102891 -h4606,586:6630773,27829179:0,0,0 -g4606,586:11982981,27829179 -k4606,587:15819190,27829179:2640832 -k4606,587:18460021,27829179:2640831 -) -(4606,588:6630773,28728141:11829248,530548,102891 -h4606,587:6630773,28728141:0,0,0 -g4606,587:12812866,28728141 -k4606,588:16234132,28728141:2225889 -k4606,588:18460021,28728141:2225889 -) -(4606,589:6630773,29627103:11829248,530548,132808 -h4606,588:6630773,29627103:0,0,0 -g4606,588:12812866,29627103 -g4606,588:14381142,29627103 -k4606,589:17008440,29627103:1451582 -k4606,589:18460021,29627103:1451581 -) -(4606,590:6630773,30526064:11829248,530548,102891 -h4606,589:6630773,30526064:0,0,0 -g4606,589:11982981,30526064 -g4606,589:13551257,30526064 -g4606,589:15119533,30526064 -k4606,590:17387466,30526064:1072556 -k4606,590:18460021,30526064:1072555 -) -(4606,591:6630773,31425026:11829248,530548,132808 -h4606,590:6630773,31425026:0,0,0 -g4606,590:12812866,31425026 -k4606,591:16224302,31425026:2235720 -k4606,591:18460021,31425026:2235719 -) -(4606,592:6630773,32323988:11829248,530548,132808 -h4606,591:6630773,32323988:0,0,0 -g4606,591:14057693,32323988 -k4606,592:16846715,32323988:1613306 -k4606,592:18460021,32323988:1613306 -) -(4606,593:6630773,33222950:11829248,538806,102891 -h4606,592:6630773,33222950:0,0,0 -g4606,592:15302520,33222950 -k4606,593:17478959,33222950:981062 -k4606,593:18460021,33222950:981062 -) -(4606,594:6630773,34121912:11829248,538806,102891 -h4606,593:6630773,34121912:0,0,0 -g4606,593:13227808,34121912 -k4606,594:16441603,34121912:2018418 -k4606,594:18460021,34121912:2018418 -) -(4606,595:6630773,35020873:11829248,530548,141066 -h4606,594:6630773,35020873:0,0,0 -g4606,594:13642751,35020873 -k4606,595:16639244,35020873:1820777 -k4606,595:18460021,35020873:1820777 -) -(4606,596:6630773,35919835:11829248,530548,132808 -h4606,595:6630773,35919835:0,0,0 -g4606,595:13227808,35919835 -g4606,595:14796084,35919835 -g4606,595:16364360,35919835 -k4606,595:18460021,35919835:813122 -) -(4606,596:9252213,36784915:9207808,485622,11795 -k4606,596:14453806,36784915:4006216 -k4606,596:18460021,36784915:4006215 -) -(4606,597:6630773,37683877:11829248,530548,132808 -h4606,596:6630773,37683877:0,0,0 -g4606,596:13642751,37683877 -k4606,597:16639244,37683877:1820777 -k4606,597:18460021,37683877:1820777 -) -(4606,598:6630773,38582839:11829248,530548,132808 -h4606,597:6630773,38582839:0,0,0 -g4606,597:13642751,38582839 -g4606,597:15211027,38582839 -k4606,598:17423382,38582839:1036639 -k4606,598:18460021,38582839:1036639 -) -(4606,599:6630773,39481800:11829248,538806,102891 -h4606,598:6630773,39481800:0,0,0 -g4606,598:10738154,39481800 -k4606,599:15196776,39481800:3263245 -k4606,599:18460021,39481800:3263245 -) -(4606,600:6630773,40380762:11829248,538806,102891 -h4606,599:6630773,40380762:0,0,0 -g4606,599:15717462,40380762 -k4606,600:17686430,40380762:773591 -k4606,600:18460021,40380762:773591 -) -(4606,601:6630773,41279724:11829248,530548,102891 -h4606,600:6630773,41279724:0,0,0 -g4606,600:12397924,41279724 -g4606,600:13966200,41279724 -g4606,600:15534476,41279724 -g4606,600:17102752,41279724 -k4606,600:18460021,41279724:74730 -) -(4606,601:9252213,42144804:9207808,485622,102891 -g4606,600:10820489,42144804 -k4606,601:15237944,42144804:3222078 -k4606,601:18460021,42144804:3222077 -) -(4606,602:6630773,43043766:11829248,530548,132808 -h4606,601:6630773,43043766:0,0,0 -g4606,601:12812866,43043766 -g4606,601:14381142,43043766 -k4606,601:18460021,43043766:1273283 -) -(4606,602:9252213,43908846:9207808,485622,11795 -k4606,602:14443975,43908846:4016046 -k4606,602:18460021,43908846:4016046 -) -(4606,603:6630773,44807807:11829248,530548,132808 -h4606,602:6630773,44807807:0,0,0 -g4606,602:9493326,44807807 -g4606,602:11061602,44807807 -g4606,602:12629878,44807807 -k4606,603:16132808,44807807:2327214 -k4606,603:18460021,44807807:2327213 -) -(4606,604:6630773,45706769:11829248,530548,102891 -h4606,603:6630773,45706769:0,0,0 -g4606,603:9078384,45706769 -g4606,603:10646660,45706769 -k4606,604:15141199,45706769:3318823 -k4606,604:18460021,45706769:3318822 -) -] -k4606,659:19606901,45706769:1146880 -r4606,659:19606901,45706769:0,40234515,126483 -k4606,659:20753781,45706769:1146880 -[4606,659:20753781,45706769:11829248,40108032,102891 -(4606,606:20753781,6254097:11829248,530548,102891 -h4606,604:20753781,6254097:0,0,0 -g4606,604:23201392,6254097 -g4606,604:25495807,6254097 -g4606,604:27064083,6254097 -g4606,604:28632359,6254097 -g4606,604:30200635,6254097 -k4606,604:32583029,6254097:1099855 -) -(4606,606:23375221,7119177:9207808,485622,102891 -g4606,604:24943497,7119177 -g4606,604:26511773,7119177 -g4606,605:28080049,7119177 -k4606,606:30919397,7119177:1663632 -k4606,606:32583029,7119177:1663632 -) -(4606,607:20753781,7996982:11829248,530548,102891 -h4606,606:20753781,7996982:0,0,0 -g4606,606:26520932,7996982 -k4606,607:30149669,7996982:2433360 -k4606,607:32583029,7996982:2433360 -) -(4606,608:20753781,8874787:11829248,538806,102891 -h4606,607:20753781,8874787:0,0,0 -g4606,607:25276104,8874787 -k4606,608:29527255,8874787:3055774 -k4606,608:32583029,8874787:3055774 -) -(4606,609:20753781,9752591:11829248,530548,132808 -h4606,608:20753781,9752591:0,0,0 -g4606,608:25276104,9752591 -k4606,609:29527255,9752591:3055774 -k4606,609:32583029,9752591:3055774 -) -(4606,610:20753781,10630396:11829248,530548,132808 -h4606,609:20753781,10630396:0,0,0 -g4606,609:24446219,10630396 -k4606,610:28903253,10630396:3679777 -k4606,610:32583029,10630396:3679776 -) -(4606,611:20753781,11508201:11829248,530548,132808 -h4606,610:20753781,11508201:0,0,0 -g4606,610:25276104,11508201 -k4606,611:29328026,11508201:3255004 -k4606,611:32583029,11508201:3255003 -) -(4606,612:20753781,12386006:11829248,530548,102891 -h4606,611:20753781,12386006:0,0,0 -g4606,611:24861162,12386006 -k4606,612:29120555,12386006:3462475 -k4606,612:32583029,12386006:3462474 -) -(4606,613:20753781,13263810:11829248,530548,132808 -h4606,612:20753781,13263810:0,0,0 -g4606,612:24861162,13263810 -k4606,613:29120555,13263810:3462475 -k4606,613:32583029,13263810:3462474 -) -(4606,614:20753781,14141615:11829248,530548,102891 -h4606,613:20753781,14141615:0,0,0 -g4606,613:23201392,14141615 -g4606,613:24371209,14141615 -k4606,614:28875578,14141615:3707451 -k4606,614:32583029,14141615:3707451 -) -(4606,616:20753781,15019420:11829248,530548,102891 -h4606,614:20753781,15019420:0,0,0 -g4606,614:24446219,15019420 -g4606,614:27537552,15019420 -g4606,614:29105828,15019420 -g4606,614:30674104,15019420 -k4606,614:32583029,15019420:626386 -) -(4606,616:23375221,15884500:9207808,485622,102891 -g4606,614:24943497,15884500 -g4606,614:26511773,15884500 -g4606,614:28080049,15884500 -k4606,616:30929228,15884500:1653802 -k4606,616:32583029,15884500:1653801 -) -(4606,617:20753781,16762305:11829248,530548,102891 -h4606,616:20753781,16762305:0,0,0 -g4606,616:26105989,16762305 -k4606,617:29942198,16762305:2640832 -k4606,617:32583029,16762305:2640831 -) -(4606,618:20753781,17640109:11829248,530548,102891 -h4606,617:20753781,17640109:0,0,0 -g4606,617:24446219,17640109 -k4606,618:28913083,17640109:3669946 -k4606,618:32583029,17640109:3669946 -) -(4606,619:20753781,18517914:11829248,530548,141066 -h4606,618:20753781,18517914:0,0,0 -g4606,618:25691047,18517914 -k4606,619:29535497,18517914:3047532 -k4606,619:32583029,18517914:3047532 -) -(4606,620:20753781,19395719:11829248,530548,102891 -h4606,619:20753781,19395719:0,0,0 -g4606,619:23201392,19395719 -g4606,619:24371209,19395719 -g4606,619:25939485,19395719 -g4606,619:27507761,19395719 -k4606,620:30643084,19395719:1939946 -k4606,620:32583029,19395719:1939945 -) -(4606,621:20753781,20273524:11829248,530548,102891 -h4606,620:20753781,20273524:0,0,0 -g4606,620:25691047,20273524 -g4606,620:27259323,20273524 -k4606,621:30518865,20273524:2064165 -k4606,621:32583029,20273524:2064164 -) -(4606,623:20753781,21151328:11829248,530548,132808 -h4606,621:20753781,21151328:0,0,0 -g4606,621:24861162,21151328 -g4606,621:26429438,21151328 -g4606,621:27997714,21151328 -g4606,621:29565990,21151328 -g4606,621:31134266,21151328 -k4606,621:32583029,21151328:166224 -) -(4606,623:23375221,22016408:9207808,485622,102891 -g4606,621:24943497,22016408 -g4606,621:26511773,22016408 -g4606,621:28080049,22016408 -g4606,622:29648325,22016408 -g4606,622:31216601,22016408 -k4606,623:32487673,22016408:95356 -k4606,623:32583029,22016408:95356 -) -(4606,624:20753781,22894213:11829248,530548,102891 -h4606,623:20753781,22894213:0,0,0 -g4606,623:24446219,22894213 -g4606,623:26014495,22894213 -g4606,623:27582771,22894213 -k4606,624:30670758,22894213:1912271 -k4606,624:32583029,22894213:1912271 -) -(4606,625:20753781,23772018:11829248,530548,132808 -h4606,624:20753781,23772018:0,0,0 -g4606,624:24446219,23772018 -k4606,625:29112313,23772018:3470717 -k4606,625:32583029,23772018:3470716 -) -(4606,626:20753781,24649823:11829248,530548,132808 -h4606,625:20753781,24649823:0,0,0 -g4606,625:26520932,24649823 -k4606,626:30149669,24649823:2433360 -k4606,626:32583029,24649823:2433360 -) -(4606,630:20753781,26395064:11829248,530548,102891 -h4606,629:20753781,26395064:0,0,0 -g4606,629:22371507,26395064 -k4606,630:27865897,26395064:4717133 -k4606,630:32583029,26395064:4717132 -) -(4606,631:20753781,27272869:11829248,530548,102891 -h4606,630:20753781,27272869:0,0,0 -g4606,630:24446219,27272869 -k4606,631:29112313,27272869:3470717 -k4606,631:32583029,27272869:3470716 -) -(4606,632:20753781,28150674:11829248,530548,102891 -h4606,631:20753781,28150674:0,0,0 -g4606,631:22371507,28150674 -g4606,631:23939783,28150674 -k4606,632:28859095,28150674:3723935 -k4606,632:32583029,28150674:3723934 -) -(4606,633:20753781,29028479:11829248,538806,102891 -h4606,632:20753781,29028479:0,0,0 -g4606,632:23616334,29028479 -k4606,633:28697370,29028479:3885659 -k4606,633:32583029,29028479:3885659 -) -(4606,634:20753781,29906283:11829248,530548,102891 -h4606,633:20753781,29906283:0,0,0 -g4606,633:24031277,29906283 -g4606,633:25599553,29906283 -k4606,634:29688980,29906283:2894050 -k4606,634:32583029,29906283:2894049 -) -(4606,635:20753781,30784088:11829248,530548,102891 -h4606,634:20753781,30784088:0,0,0 -g4606,634:23616334,30784088 -k4606,635:28697370,30784088:3885659 -k4606,635:32583029,30784088:3885659 -) -(4606,636:20753781,31661893:11829248,530548,102891 -h4606,635:20753781,31661893:0,0,0 -g4606,635:24031277,31661893 -g4606,635:25599553,31661893 -k4606,636:29688980,31661893:2894050 -k4606,636:32583029,31661893:2894049 -) -(4606,637:20753781,32539698:11829248,530548,102891 -h4606,636:20753781,32539698:0,0,0 -g4606,636:25276104,32539698 -g4606,636:26844380,32539698 -k4606,637:30311393,32539698:2271636 -k4606,637:32583029,32539698:2271636 -) -(4606,638:20753781,33417502:11829248,530548,102891 -h4606,637:20753781,33417502:0,0,0 -g4606,637:27350816,33417502 -g4606,637:28919092,33417502 -k4606,638:31348749,33417502:1234280 -k4606,638:32583029,33417502:1234280 -) -(4606,639:20753781,34295307:11829248,530548,102891 -h4606,638:20753781,34295307:0,0,0 -g4606,638:26105989,34295307 -k4606,639:29942198,34295307:2640832 -k4606,639:32583029,34295307:2640831 -) -(4606,640:20753781,35173112:11829248,530548,141066 -h4606,639:20753781,35173112:0,0,0 -g4606,639:26105989,35173112 -g4606,639:27674265,35173112 -g4606,639:29242541,35173112 -k4606,640:31510474,35173112:1072556 -k4606,640:32583029,35173112:1072555 -) -(4606,641:20753781,36050917:11829248,530548,141066 -h4606,640:20753781,36050917:0,0,0 -g4606,640:26105989,36050917 -k4606,641:29942198,36050917:2640832 -k4606,641:32583029,36050917:2640831 -) -(4606,642:20753781,36928721:11829248,530548,141066 -h4606,641:20753781,36928721:0,0,0 -g4606,641:26520932,36928721 -k4606,642:30149669,36928721:2433360 -k4606,642:32583029,36928721:2433360 -) -(4606,643:20753781,37806526:11829248,530548,102891 -h4606,642:20753781,37806526:0,0,0 -g4606,642:27765759,37806526 -k4606,643:30772083,37806526:1810947 -k4606,643:32583029,37806526:1810946 -) -(4606,644:20753781,38684331:11829248,530548,102891 -h4606,643:20753781,38684331:0,0,0 -g4606,643:27350816,38684331 -k4606,644:30564611,38684331:2018418 -k4606,644:32583029,38684331:2018418 -) -(4606,645:20753781,39562136:11829248,530548,102891 -h4606,644:20753781,39562136:0,0,0 -g4606,644:25691047,39562136 -k4606,645:29734727,39562136:2848303 -k4606,645:32583029,39562136:2848302 -) -(4606,646:20753781,40439940:11829248,530548,102891 -h4606,645:20753781,40439940:0,0,0 -g4606,645:26105989,40439940 -k4606,646:29942198,40439940:2640832 -k4606,646:32583029,40439940:2640831 -) -(4606,647:20753781,41317745:11829248,530548,102891 -h4606,646:20753781,41317745:0,0,0 -g4606,646:23616334,41317745 -g4606,646:25184610,41317745 -g4606,646:26752886,41317745 -g4606,646:28321162,41317745 -g4606,646:29889438,41317745 -k4606,647:31833922,41317745:749107 -k4606,647:32583029,41317745:749107 -) -(4606,648:20753781,42195550:11829248,530548,102891 -h4606,647:20753781,42195550:0,0,0 -g4606,647:24446219,42195550 -g4606,647:27537552,42195550 -g4606,647:29105828,42195550 -k4606,648:31442117,42195550:1140912 -k4606,648:32583029,42195550:1140912 -) -(4606,649:20753781,43073355:11829248,530548,132808 -h4606,648:20753781,43073355:0,0,0 -g4606,648:24446219,43073355 -k4606,649:29112313,43073355:3470717 -k4606,649:32583029,43073355:3470716 -) -(4606,650:20753781,43951159:11829248,530548,102891 -h4606,649:20753781,43951159:0,0,0 -g4606,649:24861162,43951159 -k4606,650:29120555,43951159:3462475 -k4606,650:32583029,43951159:3462474 -) -(4606,651:20753781,44828964:11829248,530548,132808 -h4606,650:20753781,44828964:0,0,0 -g4606,650:24861162,44828964 -g4606,650:26030979,44828964 -k4606,651:29904693,44828964:2678337 -k4606,651:32583029,44828964:2678336 -) -(4606,652:20753781,45706769:11829248,538806,102891 -h4606,651:20753781,45706769:0,0,0 -g4606,651:25691047,45706769 -k4606,652:29734727,45706769:2848303 -k4606,652:32583029,45706769:2848302 -) -] -(4606,659:32583029,45706769:0,355205,126483 -h4606,659:32583029,45706769:420741,355205,126483 -k4606,659:32583029,45706769:-420741 -) -) -] -(4606,659:32583029,45706769:0,0,0 -g4606,659:32583029,45706769 -) -) -] -(4606,659:6630773,47279633:25952256,0,0 -h4606,659:6630773,47279633:25952256,0,0 -) -] -(4606,659:4262630,4025873:0,0,0 -[4606,659:-473656,4025873:0,0,0 -(4606,659:-473656,-710413:0,0,0 -(4606,659:-473656,-710413:0,0,0 -g4606,659:-473656,-710413 +(4610,564:6630773,7131959:11829248,530548,132808 +h4610,563:6630773,7131959:0,0,0 +g4610,563:14057693,7131959 +k4610,564:16856546,7131959:1603476 +k4610,564:18460021,7131959:1603475 +) +(4610,565:6630773,8009821:11829248,530548,102891 +h4610,564:6630773,8009821:0,0,0 +g4610,564:9908269,8009821 +k4610,565:14781834,8009821:3678188 +k4610,565:18460021,8009821:3678187 +) +(4610,566:6630773,8887684:11829248,530548,102891 +h4610,565:6630773,8887684:0,0,0 +g4610,565:9908269,8887684 +k4610,566:14781834,8887684:3678188 +k4610,566:18460021,8887684:3678187 +) +(4610,567:6630773,9765546:11829248,530548,102891 +h4610,566:6630773,9765546:0,0,0 +g4610,566:12812866,9765546 +k4610,567:16234132,9765546:2225889 +k4610,567:18460021,9765546:2225889 +) +(4610,568:6630773,10643408:11829248,538806,102891 +h4610,567:6630773,10643408:0,0,0 +g4610,567:14472635,10643408 +k4610,568:17064017,10643408:1396005 +k4610,568:18460021,10643408:1396004 +) +(4610,569:6630773,11521270:11829248,538806,141066 +h4610,568:6630773,11521270:0,0,0 +g4610,568:10323211,11521270 +k4610,569:14790075,11521270:3669946 +k4610,569:18460021,11521270:3669946 +) +(4610,570:6630773,12399133:11829248,530548,102891 +h4610,569:6630773,12399133:0,0,0 +g4610,569:9078384,12399133 +k4610,570:14167662,12399133:4292360 +k4610,570:18460021,12399133:4292359 +) +(4610,571:6630773,13276995:11829248,530548,102891 +h4610,570:6630773,13276995:0,0,0 +g4610,570:9908269,13276995 +k4610,571:14772003,13276995:3688018 +k4610,571:18460021,13276995:3688018 +) +(4610,572:6630773,14154857:11829248,530548,132808 +h4610,571:6630773,14154857:0,0,0 +g4610,571:13227808,14154857 +k4610,572:16431773,14154857:2028249 +k4610,572:18460021,14154857:2028248 +) +(4610,573:6630773,15032719:11829248,530548,102891 +h4610,572:6630773,15032719:0,0,0 +g4610,572:9908269,15032719 +k4610,573:14582604,15032719:3877417 +k4610,573:18460021,15032719:3877417 +) +(4610,574:6630773,15910582:11829248,530548,102891 +h4610,573:6630773,15910582:0,0,0 +g4610,573:9493326,15910582 +g4610,573:10663143,15910582 +g4610,573:11832960,15910582 +g4610,573:13002777,15910582 +g4610,573:14571053,15910582 +k4610,574:17113226,15910582:1346796 +k4610,574:18460021,15910582:1346795 +) +(4610,575:6630773,16788444:11829248,530548,102891 +h4610,574:6630773,16788444:0,0,0 +g4610,574:10323211,16788444 +k4610,575:14979474,16788444:3480547 +k4610,575:18460021,16788444:3480547 +) +(4610,576:6630773,17666306:11829248,530548,132808 +h4610,575:6630773,17666306:0,0,0 +g4610,575:10323211,17666306 +k4610,576:14979474,17666306:3480547 +k4610,576:18460021,17666306:3480547 +) +(4610,577:6630773,18544168:11829248,530548,132808 +h4610,576:6630773,18544168:0,0,0 +g4610,576:9908269,18544168 +g4610,576:11476545,18544168 +k4610,577:15565972,18544168:2894050 +k4610,577:18460021,18544168:2894049 +) +(4610,578:6630773,19422031:11829248,530548,132808 +h4610,577:6630773,19422031:0,0,0 +g4610,577:10323211,19422031 +k4610,578:14989305,19422031:3470717 +k4610,578:18460021,19422031:3470716 +) +(4610,579:6630773,20299893:11829248,538806,132808 +h4610,578:6630773,20299893:0,0,0 +g4610,578:10738154,20299893 +g4610,578:11907971,20299893 +g4610,578:13077788,20299893 +g4610,578:14646064,20299893 +k4610,579:17150731,20299893:1309290 +k4610,579:18460021,20299893:1309290 +) +(4610,580:6630773,21177755:11829248,530548,132808 +h4610,579:6630773,21177755:0,0,0 +g4610,579:9493326,21177755 +k4610,580:14375133,21177755:4084889 +k4610,580:18460021,21177755:4084888 +) +(4610,581:6630773,22055617:11829248,530548,102891 +h4610,580:6630773,22055617:0,0,0 +g4610,580:11153096,22055617 +g4610,580:12721372,22055617 +k4610,581:16188385,22055617:2271636 +k4610,581:18460021,22055617:2271636 +) +(4610,582:6630773,22933480:11829248,530548,141066 +h4610,581:6630773,22933480:0,0,0 +g4610,581:9908269,22933480 +g4610,581:11476545,22933480 +k4610,582:15565972,22933480:2894050 +k4610,582:18460021,22933480:2894049 +) +(4610,583:6630773,23811342:11829248,530548,102891 +h4610,582:6630773,23811342:0,0,0 +g4610,582:12397924,23811342 +k4610,583:16016831,23811342:2443191 +k4610,583:18460021,23811342:2443190 +) +(4610,584:6630773,24689204:11829248,530548,102891 +h4610,583:6630773,24689204:0,0,0 +g4610,583:9493326,24689204 +k4610,584:14574362,24689204:3885659 +k4610,584:18460021,24689204:3885659 +) +(4610,585:6630773,25567066:11829248,530548,102891 +h4610,584:6630773,25567066:0,0,0 +g4610,584:11153096,25567066 +g4610,584:14244429,25567066 +g4610,584:15812705,25567066 +k4610,585:17734052,25567066:725970 +k4610,585:18460021,25567066:725969 +) +(4610,586:6630773,26444929:11829248,530548,102891 +h4610,585:6630773,26444929:0,0,0 +g4610,585:11982981,26444929 +k4610,586:15819190,26444929:2640832 +k4610,586:18460021,26444929:2640831 +) +(4610,587:6630773,27322791:11829248,530548,102891 +h4610,586:6630773,27322791:0,0,0 +g4610,586:12812866,27322791 +k4610,587:16234132,27322791:2225889 +k4610,587:18460021,27322791:2225889 +) +(4610,588:6630773,28200653:11829248,530548,132808 +h4610,587:6630773,28200653:0,0,0 +g4610,587:12812866,28200653 +g4610,587:14381142,28200653 +k4610,588:17008440,28200653:1451582 +k4610,588:18460021,28200653:1451581 +) +(4610,589:6630773,29078515:11829248,530548,102891 +h4610,588:6630773,29078515:0,0,0 +g4610,588:11982981,29078515 +g4610,588:13551257,29078515 +g4610,588:15119533,29078515 +k4610,589:17387466,29078515:1072556 +k4610,589:18460021,29078515:1072555 +) +(4610,590:6630773,29956378:11829248,530548,132808 +h4610,589:6630773,29956378:0,0,0 +g4610,589:12812866,29956378 +k4610,590:16224302,29956378:2235720 +k4610,590:18460021,29956378:2235719 +) +(4610,591:6630773,30834240:11829248,530548,132808 +h4610,590:6630773,30834240:0,0,0 +g4610,590:14057693,30834240 +k4610,591:16846715,30834240:1613306 +k4610,591:18460021,30834240:1613306 +) +(4610,592:6630773,31712102:11829248,538806,102891 +h4610,591:6630773,31712102:0,0,0 +g4610,591:15302520,31712102 +k4610,592:17478959,31712102:981062 +k4610,592:18460021,31712102:981062 +) +(4610,593:6630773,32589964:11829248,538806,102891 +h4610,592:6630773,32589964:0,0,0 +g4610,592:13227808,32589964 +k4610,593:16441603,32589964:2018418 +k4610,593:18460021,32589964:2018418 +) +(4610,594:6630773,33467827:11829248,530548,141066 +h4610,593:6630773,33467827:0,0,0 +g4610,593:13642751,33467827 +k4610,594:16639244,33467827:1820777 +k4610,594:18460021,33467827:1820777 +) +(4610,595:6630773,34345689:11829248,530548,132808 +h4610,594:6630773,34345689:0,0,0 +g4610,594:13227808,34345689 +g4610,594:14796084,34345689 +g4610,594:16364360,34345689 +k4610,594:18460021,34345689:813122 +) +(4610,595:9252213,35210769:9207808,485622,11795 +k4610,595:14453806,35210769:4006216 +k4610,595:18460021,35210769:4006215 +) +(4610,596:6630773,36088631:11829248,530548,132808 +h4610,595:6630773,36088631:0,0,0 +g4610,595:13642751,36088631 +k4610,596:16639244,36088631:1820777 +k4610,596:18460021,36088631:1820777 +) +(4610,597:6630773,36966493:11829248,530548,132808 +h4610,596:6630773,36966493:0,0,0 +g4610,596:13642751,36966493 +g4610,596:15211027,36966493 +k4610,597:17423382,36966493:1036639 +k4610,597:18460021,36966493:1036639 +) +(4610,598:6630773,37844356:11829248,538806,102891 +h4610,597:6630773,37844356:0,0,0 +g4610,597:10738154,37844356 +k4610,598:15196776,37844356:3263245 +k4610,598:18460021,37844356:3263245 +) +(4610,599:6630773,38722218:11829248,538806,102891 +h4610,598:6630773,38722218:0,0,0 +g4610,598:15717462,38722218 +k4610,599:17686430,38722218:773591 +k4610,599:18460021,38722218:773591 +) +(4610,600:6630773,39600080:11829248,530548,102891 +h4610,599:6630773,39600080:0,0,0 +g4610,599:12397924,39600080 +g4610,599:13966200,39600080 +g4610,599:15534476,39600080 +g4610,599:17102752,39600080 +k4610,599:18460021,39600080:74730 +) +(4610,600:9252213,40465160:9207808,485622,102891 +g4610,599:10820489,40465160 +k4610,600:15237944,40465160:3222078 +k4610,600:18460021,40465160:3222077 +) +(4610,601:6630773,41343022:11829248,530548,132808 +h4610,600:6630773,41343022:0,0,0 +g4610,600:12812866,41343022 +g4610,600:14381142,41343022 +k4610,600:18460021,41343022:1273283 +) +(4610,601:9252213,42208102:9207808,485622,11795 +k4610,601:14443975,42208102:4016046 +k4610,601:18460021,42208102:4016046 +) +(4610,602:6630773,43085965:11829248,530548,132808 +h4610,601:6630773,43085965:0,0,0 +g4610,601:9493326,43085965 +g4610,601:11061602,43085965 +g4610,601:12629878,43085965 +k4610,602:16132808,43085965:2327214 +k4610,602:18460021,43085965:2327213 +) +(4610,603:6630773,43963827:11829248,530548,102891 +h4610,602:6630773,43963827:0,0,0 +g4610,602:9078384,43963827 +g4610,602:10646660,43963827 +k4610,603:15141199,43963827:3318823 +k4610,603:18460021,43963827:3318822 +) +(4610,605:6630773,44841689:11829248,530548,102891 +h4610,603:6630773,44841689:0,0,0 +g4610,603:9078384,44841689 +g4610,603:11372799,44841689 +g4610,603:12941075,44841689 +g4610,603:14509351,44841689 +g4610,603:16077627,44841689 +k4610,603:18460021,44841689:1099855 +) +(4610,605:9252213,45706769:9207808,485622,102891 +g4610,603:10820489,45706769 +g4610,603:12388765,45706769 +g4610,604:13957041,45706769 +k4610,605:16796389,45706769:1663632 +k4610,605:18460021,45706769:1663632 +) +] +k4610,660:19606901,45706769:1146880 +r4610,660:19606901,45706769:0,40234515,126483 +k4610,660:20753781,45706769:1146880 +[4610,660:20753781,45706769:11829248,40108032,102891 +(4610,606:20753781,6254097:11829248,530548,102891 +h4610,605:20753781,6254097:0,0,0 +g4610,605:26520932,6254097 +k4610,606:30149669,6254097:2433360 +k4610,606:32583029,6254097:2433360 +) +(4610,607:20753781,7131685:11829248,538806,102891 +h4610,606:20753781,7131685:0,0,0 +g4610,606:25276104,7131685 +k4610,607:29527255,7131685:3055774 +k4610,607:32583029,7131685:3055774 +) +(4610,608:20753781,8009273:11829248,530548,132808 +h4610,607:20753781,8009273:0,0,0 +g4610,607:25276104,8009273 +k4610,608:29527255,8009273:3055774 +k4610,608:32583029,8009273:3055774 +) +(4610,609:20753781,8886861:11829248,530548,132808 +h4610,608:20753781,8886861:0,0,0 +g4610,608:24446219,8886861 +k4610,609:28903253,8886861:3679777 +k4610,609:32583029,8886861:3679776 +) +(4610,610:20753781,9764448:11829248,530548,132808 +h4610,609:20753781,9764448:0,0,0 +g4610,609:25276104,9764448 +k4610,610:29328026,9764448:3255004 +k4610,610:32583029,9764448:3255003 +) +(4610,611:20753781,10642036:11829248,530548,102891 +h4610,610:20753781,10642036:0,0,0 +g4610,610:24861162,10642036 +k4610,611:29120555,10642036:3462475 +k4610,611:32583029,10642036:3462474 +) +(4610,612:20753781,11519624:11829248,530548,132808 +h4610,611:20753781,11519624:0,0,0 +g4610,611:24861162,11519624 +k4610,612:29120555,11519624:3462475 +k4610,612:32583029,11519624:3462474 +) +(4610,613:20753781,12397212:11829248,530548,102891 +h4610,612:20753781,12397212:0,0,0 +g4610,612:23201392,12397212 +g4610,612:24371209,12397212 +k4610,613:28875578,12397212:3707451 +k4610,613:32583029,12397212:3707451 +) +(4610,615:20753781,13274800:11829248,530548,102891 +h4610,613:20753781,13274800:0,0,0 +g4610,613:24446219,13274800 +g4610,613:27537552,13274800 +g4610,613:29105828,13274800 +g4610,613:30674104,13274800 +k4610,613:32583029,13274800:626386 +) +(4610,615:23375221,14139880:9207808,485622,102891 +g4610,613:24943497,14139880 +g4610,613:26511773,14139880 +g4610,613:28080049,14139880 +k4610,615:30929228,14139880:1653802 +k4610,615:32583029,14139880:1653801 +) +(4610,616:20753781,15017468:11829248,530548,102891 +h4610,615:20753781,15017468:0,0,0 +g4610,615:26105989,15017468 +k4610,616:29942198,15017468:2640832 +k4610,616:32583029,15017468:2640831 +) +(4610,617:20753781,15895056:11829248,530548,102891 +h4610,616:20753781,15895056:0,0,0 +g4610,616:24446219,15895056 +k4610,617:28913083,15895056:3669946 +k4610,617:32583029,15895056:3669946 +) +(4610,618:20753781,16772643:11829248,530548,141066 +h4610,617:20753781,16772643:0,0,0 +g4610,617:25691047,16772643 +k4610,618:29535497,16772643:3047532 +k4610,618:32583029,16772643:3047532 +) +(4610,619:20753781,17650231:11829248,530548,102891 +h4610,618:20753781,17650231:0,0,0 +g4610,618:23201392,17650231 +g4610,618:24371209,17650231 +g4610,618:25939485,17650231 +g4610,618:27507761,17650231 +k4610,619:30643084,17650231:1939946 +k4610,619:32583029,17650231:1939945 +) +(4610,620:20753781,18527819:11829248,530548,102891 +h4610,619:20753781,18527819:0,0,0 +g4610,619:25691047,18527819 +g4610,619:27259323,18527819 +k4610,620:30518865,18527819:2064165 +k4610,620:32583029,18527819:2064164 +) +(4610,622:20753781,19405407:11829248,530548,132808 +h4610,620:20753781,19405407:0,0,0 +g4610,620:24861162,19405407 +g4610,620:26429438,19405407 +g4610,620:27997714,19405407 +g4610,620:29565990,19405407 +g4610,620:31134266,19405407 +k4610,620:32583029,19405407:166224 +) +(4610,622:23375221,20270487:9207808,485622,102891 +g4610,620:24943497,20270487 +g4610,620:26511773,20270487 +g4610,620:28080049,20270487 +g4610,621:29648325,20270487 +g4610,621:31216601,20270487 +k4610,622:32487673,20270487:95356 +k4610,622:32583029,20270487:95356 +) +(4610,623:20753781,21148075:11829248,530548,102891 +h4610,622:20753781,21148075:0,0,0 +g4610,622:24446219,21148075 +g4610,622:26014495,21148075 +g4610,622:27582771,21148075 +k4610,623:30670758,21148075:1912271 +k4610,623:32583029,21148075:1912271 +) +(4610,624:20753781,22025663:11829248,530548,132808 +h4610,623:20753781,22025663:0,0,0 +g4610,623:24446219,22025663 +k4610,624:29112313,22025663:3470717 +k4610,624:32583029,22025663:3470716 +) +(4610,625:20753781,22903251:11829248,530548,132808 +h4610,624:20753781,22903251:0,0,0 +g4610,624:26520932,22903251 +k4610,625:30149669,22903251:2433360 +k4610,625:32583029,22903251:2433360 +) +(4610,629:20753781,24644660:11829248,530548,102891 +h4610,628:20753781,24644660:0,0,0 +g4610,628:22371507,24644660 +k4610,629:27865897,24644660:4717133 +k4610,629:32583029,24644660:4717132 +) +(4610,630:20753781,25522248:11829248,530548,102891 +h4610,629:20753781,25522248:0,0,0 +g4610,629:24446219,25522248 +k4610,630:29112313,25522248:3470717 +k4610,630:32583029,25522248:3470716 +) +(4610,631:20753781,26399836:11829248,530548,102891 +h4610,630:20753781,26399836:0,0,0 +g4610,630:22371507,26399836 +g4610,630:23939783,26399836 +k4610,631:28859095,26399836:3723935 +k4610,631:32583029,26399836:3723934 +) +(4610,632:20753781,27277424:11829248,538806,102891 +h4610,631:20753781,27277424:0,0,0 +g4610,631:23616334,27277424 +k4610,632:28697370,27277424:3885659 +k4610,632:32583029,27277424:3885659 +) +(4610,633:20753781,28155012:11829248,530548,102891 +h4610,632:20753781,28155012:0,0,0 +g4610,632:24031277,28155012 +g4610,632:25599553,28155012 +k4610,633:29688980,28155012:2894050 +k4610,633:32583029,28155012:2894049 +) +(4610,634:20753781,29032600:11829248,530548,102891 +h4610,633:20753781,29032600:0,0,0 +g4610,633:23616334,29032600 +k4610,634:28697370,29032600:3885659 +k4610,634:32583029,29032600:3885659 +) +(4610,635:20753781,29910188:11829248,530548,102891 +h4610,634:20753781,29910188:0,0,0 +g4610,634:24031277,29910188 +g4610,634:25599553,29910188 +k4610,635:29688980,29910188:2894050 +k4610,635:32583029,29910188:2894049 +) +(4610,636:20753781,30787775:11829248,530548,102891 +h4610,635:20753781,30787775:0,0,0 +g4610,635:25276104,30787775 +g4610,635:26844380,30787775 +k4610,636:30311393,30787775:2271636 +k4610,636:32583029,30787775:2271636 +) +(4610,637:20753781,31665363:11829248,530548,102891 +h4610,636:20753781,31665363:0,0,0 +g4610,636:27350816,31665363 +g4610,636:28919092,31665363 +k4610,637:31348749,31665363:1234280 +k4610,637:32583029,31665363:1234280 +) +(4610,638:20753781,32542951:11829248,530548,102891 +h4610,637:20753781,32542951:0,0,0 +g4610,637:26105989,32542951 +k4610,638:29942198,32542951:2640832 +k4610,638:32583029,32542951:2640831 +) +(4610,639:20753781,33420539:11829248,530548,141066 +h4610,638:20753781,33420539:0,0,0 +g4610,638:26105989,33420539 +g4610,638:27674265,33420539 +g4610,638:29242541,33420539 +k4610,639:31510474,33420539:1072556 +k4610,639:32583029,33420539:1072555 +) +(4610,640:20753781,34298127:11829248,530548,141066 +h4610,639:20753781,34298127:0,0,0 +g4610,639:26105989,34298127 +k4610,640:29942198,34298127:2640832 +k4610,640:32583029,34298127:2640831 +) +(4610,641:20753781,35175715:11829248,530548,141066 +h4610,640:20753781,35175715:0,0,0 +g4610,640:26520932,35175715 +k4610,641:30149669,35175715:2433360 +k4610,641:32583029,35175715:2433360 +) +(4610,642:20753781,36053303:11829248,530548,102891 +h4610,641:20753781,36053303:0,0,0 +g4610,641:27765759,36053303 +k4610,642:30772083,36053303:1810947 +k4610,642:32583029,36053303:1810946 +) +(4610,643:20753781,36930890:11829248,530548,102891 +h4610,642:20753781,36930890:0,0,0 +g4610,642:27350816,36930890 +k4610,643:30564611,36930890:2018418 +k4610,643:32583029,36930890:2018418 +) +(4610,644:20753781,37808478:11829248,530548,102891 +h4610,643:20753781,37808478:0,0,0 +g4610,643:25691047,37808478 +k4610,644:29734727,37808478:2848303 +k4610,644:32583029,37808478:2848302 +) +(4610,645:20753781,38686066:11829248,530548,102891 +h4610,644:20753781,38686066:0,0,0 +g4610,644:26105989,38686066 +k4610,645:29942198,38686066:2640832 +k4610,645:32583029,38686066:2640831 +) +(4610,646:20753781,39563654:11829248,530548,102891 +h4610,645:20753781,39563654:0,0,0 +g4610,645:23616334,39563654 +g4610,645:25184610,39563654 +g4610,645:26752886,39563654 +g4610,645:28321162,39563654 +g4610,645:29889438,39563654 +k4610,646:31833922,39563654:749107 +k4610,646:32583029,39563654:749107 +) +(4610,647:20753781,40441242:11829248,530548,102891 +h4610,646:20753781,40441242:0,0,0 +g4610,646:24446219,40441242 +g4610,646:27537552,40441242 +g4610,646:29105828,40441242 +k4610,647:31442117,40441242:1140912 +k4610,647:32583029,40441242:1140912 +) +(4610,648:20753781,41318830:11829248,530548,132808 +h4610,647:20753781,41318830:0,0,0 +g4610,647:24446219,41318830 +k4610,648:29112313,41318830:3470717 +k4610,648:32583029,41318830:3470716 +) +(4610,649:20753781,42196418:11829248,530548,102891 +h4610,648:20753781,42196418:0,0,0 +g4610,648:24861162,42196418 +k4610,649:29120555,42196418:3462475 +k4610,649:32583029,42196418:3462474 +) +(4610,650:20753781,43074005:11829248,530548,132808 +h4610,649:20753781,43074005:0,0,0 +g4610,649:24861162,43074005 +g4610,649:26030979,43074005 +k4610,650:29904693,43074005:2678337 +k4610,650:32583029,43074005:2678336 +) +(4610,651:20753781,43951593:11829248,538806,102891 +h4610,650:20753781,43951593:0,0,0 +g4610,650:25691047,43951593 +k4610,651:29734727,43951593:2848303 +k4610,651:32583029,43951593:2848302 +) +(4610,652:20753781,44829181:11829248,530548,102891 +h4610,651:20753781,44829181:0,0,0 +g4610,651:25691047,44829181 +k4610,652:29734727,44829181:2848303 +k4610,652:32583029,44829181:2848302 +) +(4610,653:20753781,45706769:11829248,530548,102891 +h4610,652:20753781,45706769:0,0,0 +g4610,652:24446219,45706769 +k4610,653:28903253,45706769:3679777 +k4610,653:32583029,45706769:3679776 +) +] +(4610,660:32583029,45706769:0,355205,126483 +h4610,660:32583029,45706769:420741,355205,126483 +k4610,660:32583029,45706769:-420741 +) +) +] +(4610,660:32583029,45706769:0,0,0 +g4610,660:32583029,45706769 +) +) +] +(4610,660:6630773,47279633:25952256,0,0 +h4610,660:6630773,47279633:25952256,0,0 ) -g4606,659:-473656,-710413 +] +(4610,660:4262630,4025873:0,0,0 +[4610,660:-473656,4025873:0,0,0 +(4610,660:-473656,-710413:0,0,0 +(4610,660:-473656,-710413:0,0,0 +g4610,660:-473656,-710413 +) +g4610,660:-473656,-710413 ) ] ) ] -!22034 -}452 +!22223 +}453 !12 -{453 -[1,25044:4262630,47279633:28320399,43253760,0 -(1,25044:4262630,4025873:0,0,0 -[1,25044:-473656,4025873:0,0,0 -(1,25044:-473656,-710413:0,0,0 -(1,25044:-473656,-644877:0,0,0 -k1,25044:-473656,-644877:-65536 +{454 +[1,25042:4262630,47279633:28320399,43253760,0 +(1,25042:4262630,4025873:0,0,0 +[1,25042:-473656,4025873:0,0,0 +(1,25042:-473656,-710413:0,0,0 +(1,25042:-473656,-644877:0,0,0 +k1,25042:-473656,-644877:-65536 ) -(1,25044:-473656,4736287:0,0,0 -k1,25044:-473656,4736287:5209943 +(1,25042:-473656,4736287:0,0,0 +k1,25042:-473656,4736287:5209943 ) -g1,25044:-473656,-710413 +g1,25042:-473656,-710413 ) ] ) -[1,25044:6630773,47279633:25952256,43253760,0 -[1,25044:6630773,4812305:25952256,786432,0 -(1,25044:6630773,4812305:25952256,513147,126483 -(1,25044:6630773,4812305:25952256,513147,126483 -g1,25044:3078558,4812305 -[1,25044:3078558,4812305:0,0,0 -(1,25044:3078558,2439708:0,1703936,0 -k1,25044:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,25044:2537886,2439708:1179648,16384,0 +[1,25042:6630773,47279633:25952256,43253760,0 +[1,25042:6630773,4812305:25952256,786432,0 +(1,25042:6630773,4812305:25952256,513147,126483 +(1,25042:6630773,4812305:25952256,513147,126483 +g1,25042:3078558,4812305 +[1,25042:3078558,4812305:0,0,0 +(1,25042:3078558,2439708:0,1703936,0 +k1,25042:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,25042:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,25044:3078558,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,25042:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) ) ) ] -[1,25044:3078558,4812305:0,0,0 -(1,25044:3078558,2439708:0,1703936,0 -g1,25044:29030814,2439708 -g1,25044:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,25044:36151628,1915420:16384,1179648,0 +[1,25042:3078558,4812305:0,0,0 +(1,25042:3078558,2439708:0,1703936,0 +g1,25042:29030814,2439708 +g1,25042:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,25042:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,25044:37855564,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,25042:37855564,2439708:1179648,16384,0 ) ) -k1,25044:3078556,2439708:-34777008 +k1,25042:3078556,2439708:-34777008 ) ] -[1,25044:3078558,4812305:0,0,0 -(1,25044:3078558,49800853:0,16384,2228224 -k1,25044:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,25044:2537886,49800853:1179648,16384,0 +[1,25042:3078558,4812305:0,0,0 +(1,25042:3078558,49800853:0,16384,2228224 +k1,25042:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,25042:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,25044:3078558,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,25042:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) ) ) ] -[1,25044:3078558,4812305:0,0,0 -(1,25044:3078558,49800853:0,16384,2228224 -g1,25044:29030814,49800853 -g1,25044:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,25044:36151628,51504789:16384,1179648,0 +[1,25042:3078558,4812305:0,0,0 +(1,25042:3078558,49800853:0,16384,2228224 +g1,25042:29030814,49800853 +g1,25042:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,25042:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,25044:37855564,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,25042:37855564,49800853:1179648,16384,0 ) ) -k1,25044:3078556,49800853:-34777008 -) -] -g1,25044:6630773,4812305 -k1,25044:23552170,4812305:15726020 -g1,25044:27112085,4812305 -g1,25044:29010007,4812305 -g1,25044:29825274,4812305 -g1,25044:30438691,4812305 -) +k1,25042:3078556,49800853:-34777008 ) ] -[1,25044:6630773,45706769:25952256,40108032,0 -(1,25044:6630773,45706769:25952256,40108032,0 -(1,25044:6630773,45706769:0,0,0 -g1,25044:6630773,45706769 +g1,25042:6630773,4812305 +k1,25042:23552170,4812305:15726020 +g1,25042:27112085,4812305 +g1,25042:29010007,4812305 +g1,25042:29825274,4812305 +g1,25042:30438691,4812305 +) +) +] +[1,25042:6630773,45706769:25952256,40108032,0 +(1,25042:6630773,45706769:25952256,40108032,0 +(1,25042:6630773,45706769:0,0,0 +g1,25042:6630773,45706769 ) -[1,25044:6630773,45706769:25952256,40108032,0 -(4606,711:6630773,25783921:25952256,20185184,132808 -[4606,711:6630773,25783921:11829248,20185184,102891 -(4606,653:6630773,6254097:11829248,530548,102891 -h4606,652:6630773,6254097:0,0,0 -g4606,652:11568039,6254097 -k4606,653:15611719,6254097:2848303 -k4606,653:18460021,6254097:2848302 -) -(4606,654:6630773,7122922:11829248,530548,102891 -h4606,653:6630773,7122922:0,0,0 -g4606,653:10323211,7122922 -k4606,654:14780245,7122922:3679777 -k4606,654:18460021,7122922:3679776 -) -(4606,655:6630773,7991747:11829248,530548,102891 -h4606,654:6630773,7991747:0,0,0 -g4606,654:9908269,7991747 -g4606,654:11078086,7991747 -g4606,654:12247903,7991747 -k4606,655:15951651,7991747:2508371 -k4606,655:18460021,7991747:2508370 -) -(4606,656:6630773,8860572:11829248,530548,102891 -h4606,655:6630773,8860572:0,0,0 -g4606,655:8663442,8860572 -k4606,656:14159420,8860572:4300601 -k4606,656:18460021,8860572:4300601 -) -(4606,657:6630773,9729397:11829248,530548,132808 -h4606,656:6610129,9729397:0,0,0 -g4606,656:11962337,9729397 -k4606,657:15808868,9729397:2651154 -k4606,657:18460021,9729397:2651153 -) -(4606,661:6630773,11315997:11829248,530548,141066 -h4606,660:6630773,11315997:0,0,0 -g4606,660:10738154,11315997 -g4606,660:12306430,11315997 -k4606,661:15971084,11315997:2488938 -k4606,661:18460021,11315997:2488937 -) -(4606,662:6630773,12184822:11829248,530548,132808 -h4606,661:6630773,12184822:0,0,0 -g4606,661:10323211,12184822 -k4606,662:14780245,12184822:3679777 -k4606,662:18460021,12184822:3679776 -) -(4606,663:6630773,13053647:11829248,530548,102891 -h4606,662:6630773,13053647:0,0,0 -g4606,662:10323211,13053647 -k4606,663:14989305,13053647:3470717 -k4606,663:18460021,13053647:3470716 -) -(4606,664:6630773,13922472:11829248,530548,102891 -h4606,663:6630773,13922472:0,0,0 -g4606,663:10323211,13922472 -g4606,663:11493028,13922472 -k4606,664:15374984,13922472:3085038 -k4606,664:18460021,13922472:3085037 -) -(4606,665:6630773,14791297:11829248,530548,102891 -h4606,664:6630773,14791297:0,0,0 -g4606,664:10323211,14791297 -g4606,664:11493028,14791297 -k4606,665:15564383,14791297:2895639 -k4606,665:18460021,14791297:2895638 -) -(4606,666:6630773,15660121:11829248,530548,102891 -h4606,665:6630773,15660121:0,0,0 -g4606,665:10323211,15660121 -k4606,666:14989305,15660121:3470717 -k4606,666:18460021,15660121:3470716 -) -(4606,667:6630773,16528946:11829248,530548,132808 -h4606,666:6630773,16528946:0,0,0 -g4606,666:10738154,16528946 -k4606,667:15196776,16528946:3263245 -k4606,667:18460021,16528946:3263245 -) -(4606,668:6630773,17397771:11829248,530548,132808 -h4606,667:6630773,17397771:0,0,0 -g4606,667:10323211,17397771 -g4606,667:11891487,17397771 -g4606,667:13459763,17397771 -g4606,667:15028039,17397771 -k4606,668:17331888,17397771:1128133 -k4606,668:18460021,17397771:1128133 -) -(4606,669:6630773,18266596:11829248,530548,141066 -h4606,668:6630773,18266596:0,0,0 -g4606,668:14057693,18266596 -k4606,669:16856546,18266596:1603476 -k4606,669:18460021,18266596:1603475 -) -(4606,673:6630773,19853196:11829248,530548,132808 -h4606,672:6610129,19853196:0,0,0 -g4606,672:10302567,19853196 -g4606,672:11870843,19853196 -k4606,673:16524649,19853196:1935373 -k4606,673:18460021,19853196:1935372 -) -(4606,674:6630773,20722021:11829248,530548,102891 -h4606,673:6610129,20722021:0,0,0 -g4606,673:9057740,20722021 -g4606,673:10626016,20722021 -g4606,673:12194292,20722021 -k4606,674:15924845,20722021:2535176 -k4606,674:18460021,20722021:2535176 -) -(4606,675:6630773,21590846:11829248,530548,102891 -h4606,674:6610129,21590846:0,0,0 -g4606,674:9472682,21590846 -k4606,675:14554210,21590846:3905812 -k4606,675:18460021,21590846:3905811 -) -(4606,676:6630773,22459671:11829248,485622,102891 -h4606,675:6610129,22459671:0,0,0 -g4606,675:9472682,22459671 -k4606,676:14364811,22459671:4095211 -k4606,676:18460021,22459671:4095210 -) -(4606,677:6630773,23328496:11829248,530548,102891 -h4606,676:6610129,23328496:0,0,0 -g4606,676:9472682,23328496 -k4606,677:14554210,23328496:3905812 -k4606,677:18460021,23328496:3905811 -) -(4606,681:6630773,24915096:11829248,530548,102891 -h4606,680:6610129,24915096:0,0,0 -g4606,680:9057740,24915096 -g4606,680:10626016,24915096 -g4606,680:12194292,24915096 -g4606,680:15285625,24915096 -k4606,681:17470512,24915096:989510 -k4606,681:18460021,24915096:989509 -) -(4606,682:6630773,25783921:11829248,530548,102891 -h4606,681:6610129,25783921:0,0,0 -g4606,681:9472682,25783921 -g4606,681:11040958,25783921 -g4606,681:12609234,25783921 -g4606,681:14177510,25783921 -k4606,682:16906624,25783921:1553398 -k4606,682:18460021,25783921:1553397 -) -] -k4606,711:19606901,25783921:1146880 -r1,25044:19606901,25783921:0,20317992,132808 -k4606,711:20753781,25783921:1146880 -[4606,711:20753781,25783921:11829248,20185184,132808 -(4606,683:20753781,6254097:11829248,530548,102891 -h4606,682:20733137,6254097:0,0,0 -g4606,682:24425575,6254097 -g4606,682:25993851,6254097 -g4606,682:27562127,6254097 -k4606,683:30670267,6254097:1912763 -k4606,683:32583029,6254097:1912762 -) -(4606,684:20753781,7120142:11829248,530548,102891 -h4606,683:20733137,7120142:0,0,0 -g4606,683:25670403,7120142 -g4606,683:27238679,7120142 -k4606,684:30498712,7120142:2084317 -k4606,684:32583029,7120142:2084317 -) -(4606,685:20753781,7986187:11829248,530548,102891 -h4606,684:20733137,7986187:0,0,0 -g4606,684:26085345,7986187 -g4606,684:27653621,7986187 -k4606,685:30706183,7986187:1876846 -k4606,685:32583029,7986187:1876846 -) -(4606,686:20753781,8852232:11829248,530548,102891 -h4606,685:20733137,8852232:0,0,0 -g4606,685:26500288,8852232 -k4606,686:30129517,8852232:2453513 -k4606,686:32583029,8852232:2453512 -) -(4606,687:20753781,9718276:11829248,530548,102891 -h4606,686:20733137,9718276:0,0,0 -g4606,686:26085345,9718276 -k4606,687:29931876,9718276:2651154 -k4606,687:32583029,9718276:2651153 -) -(4606,688:20753781,10584321:11829248,530548,102891 -h4606,687:20733137,10584321:0,0,0 -g4606,687:25670403,10584321 -k4606,688:29714574,10584321:2868455 -k4606,688:32583029,10584321:2868455 -) -(4606,689:20753781,11450366:11829248,530548,102891 -h4606,688:20733137,11450366:0,0,0 -g4606,688:26085345,11450366 -k4606,689:29922045,11450366:2660984 -k4606,689:32583029,11450366:2660984 -) -(4606,690:20753781,12316411:11829248,530548,102891 -h4606,689:20733137,12316411:0,0,0 -g4606,689:26500288,12316411 -k4606,690:30129517,12316411:2453513 -k4606,690:32583029,12316411:2453512 -) -(4606,691:20753781,13182456:11829248,530548,102891 -h4606,690:20733137,13182456:0,0,0 -g4606,690:28160057,13182456 -k4606,691:30959401,13182456:1623628 -k4606,691:32583029,13182456:1623628 -) -(4606,692:20753781,14048501:11829248,538806,102891 -h4606,691:20733137,14048501:0,0,0 -g4606,691:26085345,14048501 -g4606,691:27653621,14048501 -k4606,692:30716014,14048501:1867016 -k4606,692:32583029,14048501:1867015 -) -(4606,693:20753781,14914546:11829248,538806,102891 -h4606,692:20733137,14914546:0,0,0 -g4606,692:26085345,14914546 -k4606,693:29922045,14914546:2660984 -k4606,693:32583029,14914546:2660984 -) -(4606,694:20753781,15780591:11829248,530548,102891 -h4606,693:20733137,15780591:0,0,0 -g4606,693:26500288,15780591 -k4606,694:30129517,15780591:2453513 -k4606,694:32583029,15780591:2453512 -) -(4606,695:20753781,16646635:11829248,530548,102891 -h4606,694:20733137,16646635:0,0,0 -g4606,694:25670403,16646635 -k4606,695:29714574,16646635:2868455 -k4606,695:32583029,16646635:2868455 -) -(4606,696:20753781,17512680:11829248,530548,102891 -h4606,695:20733137,17512680:0,0,0 -g4606,695:25670403,17512680 -k4606,696:29714574,17512680:2868455 -k4606,696:32583029,17512680:2868455 -) -(4606,700:20753781,19050166:11829248,530548,102891 -h4606,699:20733137,19050166:0,0,0 -g4606,699:23595690,19050166 -k4606,700:28687048,19050166:3895981 -k4606,700:32583029,19050166:3895981 -) -(4606,701:20753781,19916211:11829248,530548,102891 -h4606,700:20733137,19916211:0,0,0 -g4606,700:23595690,19916211 -g4606,700:25163966,19916211 -g4606,700:26732242,19916211 -k4606,701:30245494,19916211:2337536 -k4606,701:32583029,19916211:2337535 -) -(4606,702:20753781,20782256:11829248,538806,102891 -h4606,701:20733137,20782256:0,0,0 -g4606,701:26915230,20782256 -k4606,702:30346818,20782256:2236211 -k4606,702:32583029,20782256:2236211 -) -(4606,703:20753781,21648301:11829248,530548,102891 -h4606,702:20733137,21648301:0,0,0 -g4606,702:25255460,21648301 -k4606,703:29516933,21648301:3066096 -k4606,703:32583029,21648301:3066096 -) -(4606,707:20753781,23185786:11829248,530548,132808 -h4606,706:20753781,23185786:0,0,0 -g4606,706:23616334,23185786 -k4606,707:28697370,23185786:3885659 -k4606,707:32583029,23185786:3885659 -) -(4606,708:20753781,24051831:11829248,530548,132808 -h4606,707:20753781,24051831:0,0,0 -g4606,707:24031277,24051831 -k4606,708:28904842,24051831:3678188 -k4606,708:32583029,24051831:3678187 -) -(4606,709:20753781,24917876:11829248,530548,132808 -h4606,708:20753781,24917876:0,0,0 -g4606,708:23616334,24917876 -k4606,709:28697370,24917876:3885659 -k4606,709:32583029,24917876:3885659 -) -(4606,710:20753781,25783921:11829248,530548,132808 -h4606,709:20753781,25783921:0,0,0 -g4606,709:23616334,25783921 -g4606,709:25184610,25783921 -g4606,709:26752886,25783921 -k4606,710:30255816,25783921:2327214 -k4606,710:32583029,25783921:2327213 -) -] -(4606,711:32583029,25783921:0,355205,126483 -h4606,711:32583029,25783921:420741,355205,126483 -k4606,711:32583029,25783921:-420741 -) -) -] -(1,25044:32583029,45706769:0,0,0 -g1,25044:32583029,45706769 +[1,25042:6630773,45706769:25952256,40108032,0 +(4610,710:6630773,24918841:25952256,19320104,132808 +[4610,710:6630773,24918841:11829248,19320104,102891 +(4610,654:6630773,6254097:11829248,530548,102891 +h4610,653:6630773,6254097:0,0,0 +g4610,653:9908269,6254097 +g4610,653:11078086,6254097 +g4610,653:12247903,6254097 +k4610,654:15951651,6254097:2508371 +k4610,654:18460021,6254097:2508370 ) +(4610,655:6630773,7122976:11829248,530548,102891 +h4610,654:6630773,7122976:0,0,0 +g4610,654:8663442,7122976 +k4610,655:14159420,7122976:4300601 +k4610,655:18460021,7122976:4300601 +) +(4610,656:6630773,7991855:11829248,530548,132808 +h4610,655:6610129,7991855:0,0,0 +g4610,655:11962337,7991855 +k4610,656:15808868,7991855:2651154 +k4610,656:18460021,7991855:2651153 +) +(4610,660:6630773,9579414:11829248,530548,141066 +h4610,659:6630773,9579414:0,0,0 +g4610,659:10738154,9579414 +g4610,659:12306430,9579414 +k4610,660:15971084,9579414:2488938 +k4610,660:18460021,9579414:2488937 +) +(4610,661:6630773,10448293:11829248,530548,132808 +h4610,660:6630773,10448293:0,0,0 +g4610,660:10323211,10448293 +k4610,661:14780245,10448293:3679777 +k4610,661:18460021,10448293:3679776 +) +(4610,662:6630773,11317173:11829248,530548,102891 +h4610,661:6630773,11317173:0,0,0 +g4610,661:10323211,11317173 +k4610,662:14989305,11317173:3470717 +k4610,662:18460021,11317173:3470716 +) +(4610,663:6630773,12186052:11829248,530548,102891 +h4610,662:6630773,12186052:0,0,0 +g4610,662:10323211,12186052 +g4610,662:11493028,12186052 +k4610,663:15374984,12186052:3085038 +k4610,663:18460021,12186052:3085037 +) +(4610,664:6630773,13054931:11829248,530548,102891 +h4610,663:6630773,13054931:0,0,0 +g4610,663:10323211,13054931 +g4610,663:11493028,13054931 +k4610,664:15564383,13054931:2895639 +k4610,664:18460021,13054931:2895638 +) +(4610,665:6630773,13923810:11829248,530548,102891 +h4610,664:6630773,13923810:0,0,0 +g4610,664:10323211,13923810 +k4610,665:14989305,13923810:3470717 +k4610,665:18460021,13923810:3470716 +) +(4610,666:6630773,14792690:11829248,530548,132808 +h4610,665:6630773,14792690:0,0,0 +g4610,665:10738154,14792690 +k4610,666:15196776,14792690:3263245 +k4610,666:18460021,14792690:3263245 +) +(4610,667:6630773,15661569:11829248,530548,132808 +h4610,666:6630773,15661569:0,0,0 +g4610,666:10323211,15661569 +g4610,666:11891487,15661569 +g4610,666:13459763,15661569 +g4610,666:15028039,15661569 +k4610,667:17331888,15661569:1128133 +k4610,667:18460021,15661569:1128133 +) +(4610,668:6630773,16530448:11829248,530548,141066 +h4610,667:6630773,16530448:0,0,0 +g4610,667:14057693,16530448 +k4610,668:16856546,16530448:1603476 +k4610,668:18460021,16530448:1603475 +) +(4610,672:6630773,18118007:11829248,530548,132808 +h4610,671:6610129,18118007:0,0,0 +g4610,671:10302567,18118007 +g4610,671:11870843,18118007 +k4610,672:16524649,18118007:1935373 +k4610,672:18460021,18118007:1935372 +) +(4610,673:6630773,18986886:11829248,530548,102891 +h4610,672:6610129,18986886:0,0,0 +g4610,672:9057740,18986886 +g4610,672:10626016,18986886 +g4610,672:12194292,18986886 +k4610,673:15924845,18986886:2535176 +k4610,673:18460021,18986886:2535176 +) +(4610,674:6630773,19855765:11829248,530548,102891 +h4610,673:6610129,19855765:0,0,0 +g4610,673:9472682,19855765 +k4610,674:14554210,19855765:3905812 +k4610,674:18460021,19855765:3905811 +) +(4610,675:6630773,20724645:11829248,485622,102891 +h4610,674:6610129,20724645:0,0,0 +g4610,674:9472682,20724645 +k4610,675:14364811,20724645:4095211 +k4610,675:18460021,20724645:4095210 +) +(4610,676:6630773,21593524:11829248,530548,102891 +h4610,675:6610129,21593524:0,0,0 +g4610,675:9472682,21593524 +k4610,676:14554210,21593524:3905812 +k4610,676:18460021,21593524:3905811 +) +(4610,680:6630773,23181083:11829248,530548,102891 +h4610,679:6610129,23181083:0,0,0 +g4610,679:9057740,23181083 +g4610,679:10626016,23181083 +g4610,679:12194292,23181083 +g4610,679:15285625,23181083 +k4610,680:17470512,23181083:989510 +k4610,680:18460021,23181083:989509 +) +(4610,681:6630773,24049962:11829248,530548,102891 +h4610,680:6610129,24049962:0,0,0 +g4610,680:9472682,24049962 +g4610,680:11040958,24049962 +g4610,680:12609234,24049962 +g4610,680:14177510,24049962 +k4610,681:16906624,24049962:1553398 +k4610,681:18460021,24049962:1553397 +) +(4610,682:6630773,24918841:11829248,530548,102891 +h4610,681:6610129,24918841:0,0,0 +g4610,681:10302567,24918841 +g4610,681:11870843,24918841 +g4610,681:13439119,24918841 +k4610,682:16547259,24918841:1912763 +k4610,682:18460021,24918841:1912762 +) +] +k4610,710:19606901,24918841:1146880 +r1,25042:19606901,24918841:0,19452912,132808 +k4610,710:20753781,24918841:1146880 +[4610,710:20753781,24918841:11829248,19320104,132808 +(4610,683:20753781,6254097:11829248,530548,102891 +h4610,682:20733137,6254097:0,0,0 +g4610,682:25670403,6254097 +g4610,682:27238679,6254097 +k4610,683:30498712,6254097:2084317 +k4610,683:32583029,6254097:2084317 +) +(4610,684:20753781,7120160:11829248,530548,102891 +h4610,683:20733137,7120160:0,0,0 +g4610,683:26085345,7120160 +g4610,683:27653621,7120160 +k4610,684:30706183,7120160:1876846 +k4610,684:32583029,7120160:1876846 +) +(4610,685:20753781,7986223:11829248,530548,102891 +h4610,684:20733137,7986223:0,0,0 +g4610,684:26500288,7986223 +k4610,685:30129517,7986223:2453513 +k4610,685:32583029,7986223:2453512 +) +(4610,686:20753781,8852286:11829248,530548,102891 +h4610,685:20733137,8852286:0,0,0 +g4610,685:26085345,8852286 +k4610,686:29931876,8852286:2651154 +k4610,686:32583029,8852286:2651153 +) +(4610,687:20753781,9718349:11829248,530548,102891 +h4610,686:20733137,9718349:0,0,0 +g4610,686:25670403,9718349 +k4610,687:29714574,9718349:2868455 +k4610,687:32583029,9718349:2868455 +) +(4610,688:20753781,10584412:11829248,530548,102891 +h4610,687:20733137,10584412:0,0,0 +g4610,687:26085345,10584412 +k4610,688:29922045,10584412:2660984 +k4610,688:32583029,10584412:2660984 +) +(4610,689:20753781,11450475:11829248,530548,102891 +h4610,688:20733137,11450475:0,0,0 +g4610,688:26500288,11450475 +k4610,689:30129517,11450475:2453513 +k4610,689:32583029,11450475:2453512 +) +(4610,690:20753781,12316538:11829248,530548,102891 +h4610,689:20733137,12316538:0,0,0 +g4610,689:28160057,12316538 +k4610,690:30959401,12316538:1623628 +k4610,690:32583029,12316538:1623628 +) +(4610,691:20753781,13182601:11829248,538806,102891 +h4610,690:20733137,13182601:0,0,0 +g4610,690:26085345,13182601 +g4610,690:27653621,13182601 +k4610,691:30716014,13182601:1867016 +k4610,691:32583029,13182601:1867015 +) +(4610,692:20753781,14048664:11829248,538806,102891 +h4610,691:20733137,14048664:0,0,0 +g4610,691:26085345,14048664 +k4610,692:29922045,14048664:2660984 +k4610,692:32583029,14048664:2660984 +) +(4610,693:20753781,14914727:11829248,530548,102891 +h4610,692:20733137,14914727:0,0,0 +g4610,692:26500288,14914727 +k4610,693:30129517,14914727:2453513 +k4610,693:32583029,14914727:2453512 +) +(4610,694:20753781,15780790:11829248,530548,102891 +h4610,693:20733137,15780790:0,0,0 +g4610,693:25670403,15780790 +k4610,694:29714574,15780790:2868455 +k4610,694:32583029,15780790:2868455 +) +(4610,695:20753781,16646852:11829248,530548,102891 +h4610,694:20733137,16646852:0,0,0 +g4610,694:25670403,16646852 +k4610,695:29714574,16646852:2868455 +k4610,695:32583029,16646852:2868455 +) +(4610,699:20753781,18184658:11829248,530548,102891 +h4610,698:20733137,18184658:0,0,0 +g4610,698:23595690,18184658 +k4610,699:28687048,18184658:3895981 +k4610,699:32583029,18184658:3895981 +) +(4610,700:20753781,19050721:11829248,530548,102891 +h4610,699:20733137,19050721:0,0,0 +g4610,699:23595690,19050721 +g4610,699:25163966,19050721 +g4610,699:26732242,19050721 +k4610,700:30245494,19050721:2337536 +k4610,700:32583029,19050721:2337535 +) +(4610,701:20753781,19916784:11829248,538806,102891 +h4610,700:20733137,19916784:0,0,0 +g4610,700:26915230,19916784 +k4610,701:30346818,19916784:2236211 +k4610,701:32583029,19916784:2236211 +) +(4610,702:20753781,20782847:11829248,530548,102891 +h4610,701:20733137,20782847:0,0,0 +g4610,701:25255460,20782847 +k4610,702:29516933,20782847:3066096 +k4610,702:32583029,20782847:3066096 +) +(4610,706:20753781,22320652:11829248,530548,132808 +h4610,705:20753781,22320652:0,0,0 +g4610,705:23616334,22320652 +k4610,706:28697370,22320652:3885659 +k4610,706:32583029,22320652:3885659 +) +(4610,707:20753781,23186715:11829248,530548,132808 +h4610,706:20753781,23186715:0,0,0 +g4610,706:24031277,23186715 +k4610,707:28904842,23186715:3678188 +k4610,707:32583029,23186715:3678187 +) +(4610,708:20753781,24052778:11829248,530548,132808 +h4610,707:20753781,24052778:0,0,0 +g4610,707:23616334,24052778 +k4610,708:28697370,24052778:3885659 +k4610,708:32583029,24052778:3885659 +) +(4610,709:20753781,24918841:11829248,530548,132808 +h4610,708:20753781,24918841:0,0,0 +g4610,708:23616334,24918841 +g4610,708:25184610,24918841 +g4610,708:26752886,24918841 +k4610,709:30255816,24918841:2327214 +k4610,709:32583029,24918841:2327213 +) +] +(4610,710:32583029,24918841:0,355205,126483 +h4610,710:32583029,24918841:420741,355205,126483 +k4610,710:32583029,24918841:-420741 +) +) +] +(1,25042:32583029,45706769:0,0,0 +g1,25042:32583029,45706769 ) -] -(1,25044:6630773,47279633:25952256,0,0 -h1,25044:6630773,47279633:25952256,0,0 ) ] -(1,25044:4262630,4025873:0,0,0 -[1,25044:-473656,4025873:0,0,0 -(1,25044:-473656,-710413:0,0,0 -(1,25044:-473656,-710413:0,0,0 -g1,25044:-473656,-710413 +(1,25042:6630773,47279633:25952256,0,0 +h1,25042:6630773,47279633:25952256,0,0 +) +] +(1,25042:4262630,4025873:0,0,0 +[1,25042:-473656,4025873:0,0,0 +(1,25042:-473656,-710413:0,0,0 +(1,25042:-473656,-710413:0,0,0 +g1,25042:-473656,-710413 ) -g1,25044:-473656,-710413 +g1,25042:-473656,-710413 ) ] ) ] -!12622 -}453 -Input:4607:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\rcatsidx.ind +!12256 +}454 +Input:4611:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\rcatsidx.ind !96 -{454 -[4607,76:4262630,47279633:28320399,43253760,11795 -(4607,76:4262630,4025873:0,0,0 -[4607,76:-473656,4025873:0,0,0 -(4607,76:-473656,-710413:0,0,0 -(4607,76:-473656,-644877:0,0,0 -k4607,76:-473656,-644877:-65536 +{455 +[4611,74:4262630,47279633:28320399,43253760,11795 +(4611,74:4262630,4025873:0,0,0 +[4611,74:-473656,4025873:0,0,0 +(4611,74:-473656,-710413:0,0,0 +(4611,74:-473656,-644877:0,0,0 +k4611,74:-473656,-644877:-65536 ) -(4607,76:-473656,4736287:0,0,0 -k4607,76:-473656,4736287:5209943 +(4611,74:-473656,4736287:0,0,0 +k4611,74:-473656,4736287:5209943 ) -g4607,76:-473656,-710413 +g4611,74:-473656,-710413 ) ] ) -[4607,76:6630773,47279633:25952256,43253760,11795 -[4607,76:6630773,4812305:25952256,786432,0 -(4607,76:6630773,4812305:25952256,0,0 -(4607,76:6630773,4812305:25952256,0,0 -g4607,76:3078558,4812305 -[4607,76:3078558,4812305:0,0,0 -(4607,76:3078558,2439708:0,1703936,0 -k4607,76:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,76:2537886,2439708:1179648,16384,0 +[4611,74:6630773,47279633:25952256,43253760,11795 +[4611,74:6630773,4812305:25952256,786432,0 +(4611,74:6630773,4812305:25952256,0,0 +(4611,74:6630773,4812305:25952256,0,0 +g4611,74:3078558,4812305 +[4611,74:3078558,4812305:0,0,0 +(4611,74:3078558,2439708:0,1703936,0 +k4611,74:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,74:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,76:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,74:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,76:3078558,4812305:0,0,0 -(4607,76:3078558,2439708:0,1703936,0 -g4607,76:29030814,2439708 -g4607,76:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,76:36151628,1915420:16384,1179648,0 +[4611,74:3078558,4812305:0,0,0 +(4611,74:3078558,2439708:0,1703936,0 +g4611,74:29030814,2439708 +g4611,74:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,74:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,76:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,74:37855564,2439708:1179648,16384,0 ) ) -k4607,76:3078556,2439708:-34777008 +k4611,74:3078556,2439708:-34777008 ) ] -[4607,76:3078558,4812305:0,0,0 -(4607,76:3078558,49800853:0,16384,2228224 -k4607,76:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,76:2537886,49800853:1179648,16384,0 +[4611,74:3078558,4812305:0,0,0 +(4611,74:3078558,49800853:0,16384,2228224 +k4611,74:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,74:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,76:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,74:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,76:3078558,4812305:0,0,0 -(4607,76:3078558,49800853:0,16384,2228224 -g4607,76:29030814,49800853 -g4607,76:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,76:36151628,51504789:16384,1179648,0 +[4611,74:3078558,4812305:0,0,0 +(4611,74:3078558,49800853:0,16384,2228224 +g4611,74:29030814,49800853 +g4611,74:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,74:36151628,51504789:16384,1179648,0 ) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 ) ] ) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,76:37855564,49800853:1179648,16384,0 +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,74:37855564,49800853:1179648,16384,0 ) ) -k4607,76:3078556,49800853:-34777008 +k4611,74:3078556,49800853:-34777008 ) ] -g4607,76:6630773,4812305 +g4611,74:6630773,4812305 ) ) -] -[4607,76:6630773,45706769:25952256,40108032,0 -(4607,76:6630773,45706769:25952256,40108032,0 -(4607,76:6630773,45706769:0,0,0 -g4607,76:6630773,45706769 -) -[4607,76:6630773,45706769:25952256,40108032,0 -[4607,1:6630773,12185121:25952256,6586384,0 -(4607,1:6630773,7073297:25952256,32768,229376 -(4607,1:6630773,7073297:0,32768,229376 -(4607,1:6630773,7073297:5505024,32768,229376 -r4607,76:12135797,7073297:5505024,262144,229376 -) -k4607,1:6630773,7073297:-5505024 -) -) -(4607,1:6630773,8842777:25952256,923664,241827 -h4607,1:6630773,8842777:0,0,0 -g4607,1:10235777,8842777 -g4607,1:11799990,8842777 -g4607,1:12964302,8842777 -g4607,1:17375006,8842777 -g4607,1:19181047,8842777 -k4607,1:28581663,8842777:4001367 -k4607,1:32583029,8842777:4001366 -) -(4607,1:6630773,9498145:25952256,32768,0 -(4607,1:6630773,9498145:5505024,32768,0 -r4607,76:12135797,9498145:5505024,32768,0 -) -k4607,1:22359413,9498145:10223616 -k4607,1:32583029,9498145:10223616 -) -] -(4607,1:6630773,13050201:25952256,505283,134348 -k4607,1:7270083,13050201:224467 -k4607,1:9562892,13050201:224493 -k4607,1:10978830,13050201:224493 -k4607,1:13845079,13050201:224493 -k4607,1:16730333,13050201:224492 -k4607,1:18222292,13050201:224493 -k4607,1:19465870,13050201:224493 -k4607,1:22919977,13050201:224493 -k4607,1:25550951,13050201:224492 -k4607,1:26966889,13050201:224493 -k4607,1:29651604,13050201:224493 -k4607,1:32583029,13050201:0 -) -(4607,1:6630773,13915281:25952256,513147,134348 -k4607,1:8025052,13915281:202834 -k4607,1:10422031,13915281:202834 -k4607,1:12982849,13915281:202833 -k4607,1:15647215,13915281:202834 -k4607,1:16509341,13915281:202834 -k4607,1:20135120,13915281:202834 -k4607,1:21900988,13915281:202834 -k4607,1:24740990,13915281:202833 -k4607,1:28143292,13915281:202834 -k4607,1:29537571,13915281:202834 -k4607,1:32583029,13915281:0 -) -(4607,1:6630773,14780361:25952256,505283,126483 -g4607,1:9020216,14780361 -g4607,1:10410890,14780361 -g4607,1:12118758,14780361 -g4607,1:14491816,14780361 -g4607,1:15882490,14780361 -k4607,1:32583029,14780361:13223854 -g4607,1:32583029,14780361 -) -(4607,76:6630773,45706769:25952256,29143824,126483 -[4607,76:6630773,45706769:11829248,29143824,102891 -(4607,4:6630773,17218305:11829248,505283,7863 -h4607,3:6630773,17218305:0,0,0 -g4607,3:9062814,17218305 -g4607,3:10453488,17218305 -k4607,4:15513195,17218305:2946826 -k4607,4:18460021,17218305:2946826 -) -(4607,5:6630773,18111175:11829248,485622,132808 -h4607,4:6630773,18111175:0,0,0 -r4607,76:6630773,18111175:0,618430,132808 -g4607,4:7941493,18111175 -g4607,4:7941493,18111175 -g4607,4:10389104,18111175 -g4607,4:11558921,18111175 -k4607,5:15607160,18111175:2852862 -k4607,5:18460021,18111175:2852861 -) -(4607,6:6630773,19004045:11829248,530548,102891 -h4607,5:6630773,19004045:0,0,0 -r4607,76:6630773,19004045:0,633439,102891 -g4607,5:7941493,19004045 -g4607,5:7941493,19004045 -g4607,5:9974162,19004045 -k4607,6:14814780,19004045:3645241 -k4607,6:18460021,19004045:3645241 -) -(4607,7:6630773,19896914:11829248,530548,102891 -h4607,6:6630773,19896914:0,0,0 -r4607,76:6630773,19896914:0,633439,102891 -g4607,6:7941493,19896914 -g4607,6:7941493,19896914 -g4607,6:12048874,19896914 -g4607,6:13218691,19896914 -g4607,6:14388508,19896914 -g4607,6:15558325,19896914 -g4607,6:16728142,19896914 -k4607,7:17992541,19896914:467481 -k4607,7:18460021,19896914:467480 -) -(4607,8:6630773,20789784:11829248,530548,132808 -h4607,7:6630773,20789784:0,0,0 -r4607,76:6630773,20789784:0,663356,132808 -g4607,7:7941493,20789784 -g4607,7:7941493,20789784 -g4607,7:11218989,20789784 -k4607,8:15237964,20789784:3222057 -k4607,8:18460021,20789784:3222057 -) -(4607,9:6630773,21682654:11829248,538806,102891 -h4607,8:6630773,21682654:0,0,0 -r4607,76:6630773,21682654:0,641697,102891 -g4607,8:7941493,21682654 -g4607,8:7941493,21682654 -g4607,8:12463816,21682654 -g4607,8:13633633,21682654 -g4607,8:15201909,21682654 -k4607,9:17428654,21682654:1031368 -k4607,9:18460021,21682654:1031367 -) -(4607,10:6630773,22575524:11829248,485622,102891 -h4607,9:6630773,22575524:0,0,0 -r4607,76:6630773,22575524:0,588513,102891 -g4607,9:7941493,22575524 -g4607,9:7941493,22575524 -g4607,9:9974162,22575524 -g4607,9:11542438,22575524 -k4607,10:15598918,22575524:2861103 -k4607,10:18460021,22575524:2861103 -) -(4607,11:6630773,23468394:11829248,530548,132808 -h4607,10:6630773,23468394:0,0,0 -r4607,76:6630773,23468394:0,663356,132808 -g4607,10:7941493,23468394 -g4607,10:7941493,23468394 -g4607,10:11218989,23468394 -k4607,11:15427363,23468394:3032658 -k4607,11:18460021,23468394:3032658 -) -(4607,12:6630773,24361263:11829248,530548,102891 -h4607,11:6630773,24361263:0,0,0 -r4607,76:6630773,24361263:0,633439,102891 -g4607,11:7941493,24361263 -g4607,11:7941493,24361263 -g4607,11:10804046,24361263 -g4607,11:11973863,24361263 -g4607,11:14268278,24361263 -k4607,12:16762609,24361263:1697413 -k4607,12:18460021,24361263:1697412 -) -(4607,13:6630773,25254133:11829248,538806,102891 -h4607,12:6630773,25254133:0,0,0 -r4607,76:6630773,25254133:0,641697,102891 -g4607,12:7941493,25254133 -g4607,12:7941493,25254133 -g4607,12:10804046,25254133 -k4607,13:15030493,25254133:3429529 -k4607,13:18460021,25254133:3429528 -) -(4607,14:6630773,26147003:11829248,538806,102891 -h4607,13:6630773,26147003:0,0,0 -r4607,76:6630773,26147003:0,641697,102891 -g4607,13:7941493,26147003 -g4607,13:7941493,26147003 -g4607,13:11218989,26147003 -g4607,13:12787265,26147003 -k4607,14:16211501,26147003:2248520 -k4607,14:18460021,26147003:2248520 -) -(4607,15:6630773,27039873:11829248,530548,141066 -h4607,14:6630773,27039873:0,0,0 -r4607,76:6630773,27039873:0,671614,141066 -g4607,14:7941493,27039873 -g4607,14:7941493,27039873 -g4607,14:11218989,27039873 -g4607,14:12388806,27039873 -g4607,14:13558623,27039873 -g4607,14:14728440,27039873 -g4607,14:15898257,27039873 -k4607,15:17577598,27039873:882423 -k4607,15:18460021,27039873:882423 -) -(4607,16:6630773,27932743:11829248,530548,102891 -h4607,15:6630773,27932743:0,0,0 -r4607,76:6630773,27932743:0,633439,102891 -g4607,15:7941493,27932743 -g4607,15:7941493,27932743 -g4607,15:9974162,27932743 -g4607,15:11143979,27932743 -g4607,15:12712255,27932743 -g4607,15:14280531,27932743 -k4607,16:16967965,27932743:1492057 -k4607,16:18460021,27932743:1492056 -) -(4607,17:6630773,28825612:11829248,530548,102891 -h4607,16:6630773,28825612:0,0,0 -r4607,76:6630773,28825612:0,633439,102891 -g4607,16:7941493,28825612 -g4607,16:7941493,28825612 -g4607,16:9144277,28825612 -k4607,17:14399838,28825612:4060184 -k4607,17:18460021,28825612:4060183 -) -(4607,18:6630773,29718482:11829248,530548,141066 -h4607,17:6630773,29718482:0,0,0 -r4607,76:6630773,29718482:0,671614,141066 -g4607,17:7941493,29718482 -g4607,17:7941493,29718482 -g4607,17:11218989,29718482 -g4607,17:12388806,29718482 -g4607,17:13558623,29718482 -g4607,17:14728440,29718482 -g4607,17:15898257,29718482 -g4607,17:17068074,29718482 -k4607,17:18460021,29718482:109408 -) -(4607,18:9252213,30583562:9207808,481690,0 -k4607,18:14434145,30583562:4025877 -k4607,18:18460021,30583562:4025876 -) -(4607,19:6630773,31476432:11829248,530548,102891 -h4607,18:6630773,31476432:0,0,0 -r4607,76:6630773,31476432:0,633439,102891 -g4607,18:7941493,31476432 -g4607,18:7941493,31476432 -g4607,18:10804046,31476432 -g4607,18:11973863,31476432 -g4607,18:13143680,31476432 -g4607,18:14313497,31476432 -g4607,18:15881773,31476432 -k4607,19:17768586,31476432:691436 -k4607,19:18460021,31476432:691435 -) -(4607,20:6630773,32369302:11829248,530548,102891 -h4607,19:6630773,32369302:0,0,0 -r4607,76:6630773,32369302:0,633439,102891 -g4607,19:7941493,32369302 -g4607,19:7941493,32369302 -g4607,19:11218989,32369302 -g4607,19:12388806,32369302 -g4607,19:13558623,32369302 -g4607,19:14728440,32369302 -g4607,19:15898257,32369302 -k4607,19:18460021,32369302:1279225 -) -(4607,20:9252213,33234382:9207808,485622,0 -k4607,20:14443975,33234382:4016046 -k4607,20:18460021,33234382:4016046 -) -(4607,21:6630773,34127252:11829248,485622,102891 -h4607,20:6630773,34127252:0,0,0 -r4607,76:6630773,34127252:0,588513,102891 -g4607,20:7941493,34127252 -g4607,20:7941493,34127252 -g4607,20:11218989,34127252 -g4607,20:12388806,34127252 -g4607,20:13957082,34127252 -k4607,21:16806240,34127252:1653781 -k4607,21:18460021,34127252:1653781 -) -(4607,22:6630773,35020121:11829248,530548,102891 -h4607,21:6630773,35020121:0,0,0 -r4607,76:6630773,35020121:0,633439,102891 -g4607,21:7941493,35020121 -g4607,21:7941493,35020121 -g4607,21:11218989,35020121 -g4607,21:12388806,35020121 -k4607,22:16022102,35020121:2437919 -k4607,22:18460021,35020121:2437919 -) -(4607,23:6630773,35912991:11829248,530548,102891 -h4607,22:6630773,35912991:0,0,0 -r4607,76:6630773,35912991:0,633439,102891 -g4607,22:7941493,35912991 -g4607,22:7941493,35912991 -g4607,22:9559219,35912991 -g4607,22:11127495,35912991 -k4607,23:15391447,35912991:3068575 -k4607,23:18460021,35912991:3068574 -) -(4607,24:6630773,36805861:11829248,538806,102891 -h4607,23:6630773,36805861:0,0,0 -r4607,76:6630773,36805861:0,641697,102891 -g4607,23:7941493,36805861 -g4607,23:7941493,36805861 -g4607,23:10804046,36805861 -k4607,24:15229722,36805861:3230299 -k4607,24:18460021,36805861:3230299 -) -(4607,25:6630773,37698731:11829248,530548,102891 -h4607,24:6630773,37698731:0,0,0 -r4607,76:6630773,37698731:0,633439,102891 -g4607,24:7941493,37698731 -g4607,24:7941493,37698731 -g4607,24:10804046,37698731 -g4607,24:12372322,37698731 -g4607,24:13940598,37698731 -g4607,24:15508874,37698731 -g4607,24:17077150,37698731 -k4607,25:18366274,37698731:93747 -k4607,25:18460021,37698731:93747 -) -(4607,26:6630773,38591600:11829248,485622,102891 -h4607,25:6630773,38591600:0,0,0 -r4607,76:6630773,38591600:0,588513,102891 -g4607,25:7941493,38591600 -g4607,25:7941493,38591600 -g4607,25:10804046,38591600 -k4607,26:15030493,38591600:3429529 -k4607,26:18460021,38591600:3429528 -) -(4607,27:6630773,39484470:11829248,505283,126483 -h4607,26:6630773,39484470:0,0,0 -g4607,26:9587757,39484470 -g4607,26:10978431,39484470 -g4607,26:13371805,39484470 -k4607,27:16921236,39484470:1538786 -k4607,27:18460021,39484470:1538785 -) -(4607,28:6630773,40377340:11829248,538806,102891 -h4607,27:6630773,40377340:0,0,0 -r4607,76:6630773,40377340:0,641697,102891 -g4607,27:7941493,40377340 -g4607,27:7941493,40377340 -g4607,27:9974162,40377340 -g4607,27:11143979,40377340 -k4607,28:15190629,40377340:3269393 -k4607,28:18460021,40377340:3269392 -) -(4607,29:6630773,41270210:11829248,538806,132808 -h4607,28:6630773,41270210:0,0,0 -r4607,76:6630773,41270210:0,671614,132808 -g4607,28:7941493,41270210 -g4607,28:7941493,41270210 -g4607,28:16198298,41270210 -k4607,29:17727619,41270210:732403 -k4607,29:18460021,41270210:732402 -) -(4607,30:6630773,42163080:11829248,538806,102891 -h4607,29:6630773,42163080:0,0,0 -r4607,76:6630773,42163080:0,641697,102891 -g4607,29:7941493,42163080 -g4607,29:7941493,42163080 -g4607,29:16198298,42163080 -k4607,30:17727619,42163080:732403 -k4607,30:18460021,42163080:732402 -) -(4607,31:6630773,43055949:11829248,538806,102891 -h4607,30:6630773,43055949:0,0,0 -r4607,76:6630773,43055949:0,641697,102891 -g4607,30:7941493,43055949 -g4607,30:7941493,43055949 -g4607,30:16198298,43055949 -k4607,31:17727619,43055949:732403 -k4607,31:18460021,43055949:732402 -) -(4607,32:6630773,43948819:11829248,538806,141066 -h4607,31:6630773,43948819:0,0,0 -r4607,76:6630773,43948819:0,679872,141066 -g4607,31:7941493,43948819 -g4607,31:7941493,43948819 -k4607,31:18460021,43948819:887691 -) -(4607,32:9252213,44813899:9207808,485622,11795 -k4607,32:14254576,44813899:4205445 -k4607,32:18460021,44813899:4205445 -) -(4607,33:6630773,45706769:11829248,538806,102891 -h4607,32:6630773,45706769:0,0,0 -r4607,76:6630773,45706769:0,641697,102891 -g4607,32:7941493,45706769 -g4607,32:7941493,45706769 -g4607,32:16613240,45706769 -k4607,33:17935090,45706769:524932 -k4607,33:18460021,45706769:524931 -) -] -k4607,76:19606901,45706769:1146880 -r4607,76:19606901,45706769:0,29270307,126483 -k4607,76:20753781,45706769:1146880 -[4607,76:20753781,45706769:11829248,29143824,102891 -(4607,34:20753781,17218305:11829248,538806,141066 -h4607,33:20753781,17218305:0,0,0 -r4607,76:20753781,17218305:0,679872,141066 -g4607,33:22064501,17218305 -g4607,33:22064501,17218305 -g4607,33:30736248,17218305 -k4607,34:32058098,17218305:524932 -k4607,34:32583029,17218305:524931 -) -(4607,35:20753781,18086478:11829248,538806,102891 -h4607,34:20753781,18086478:0,0,0 -r4607,76:20753781,18086478:0,641697,102891 -g4607,34:22064501,18086478 -g4607,34:22064501,18086478 -g4607,34:23682227,18086478 -g4607,34:24852044,18086478 -k4607,35:29106165,18086478:3476864 -k4607,35:32583029,18086478:3476864 -) -(4607,36:20753781,18954652:11829248,485622,102891 -h4607,35:20753781,18954652:0,0,0 -r4607,76:20753781,18954652:0,588513,102891 -g4607,35:22064501,18954652 -g4607,35:22064501,18954652 -g4607,35:25341997,18954652 -k4607,36:29351142,18954652:3231888 -k4607,36:32583029,18954652:3231887 -) -(4607,37:20753781,19822825:11829248,530548,102891 -h4607,36:20753781,19822825:0,0,0 -r4607,76:20753781,19822825:0,633439,102891 -g4607,36:22064501,19822825 -g4607,36:22064501,19822825 -g4607,36:25341997,19822825 -k4607,37:29351142,19822825:3231888 -k4607,37:32583029,19822825:3231887 -) -(4607,38:20753781,20690999:11829248,530548,102891 -h4607,37:20753781,20690999:0,0,0 -r4607,76:20753781,20690999:0,633439,102891 -g4607,37:22064501,20690999 -g4607,37:22064501,20690999 -g4607,37:26171882,20690999 -k4607,38:29766084,20690999:2816945 -k4607,38:32583029,20690999:2816945 -) -(4607,39:20753781,21559172:11829248,530548,102891 -h4607,38:20753781,21559172:0,0,0 -r4607,76:20753781,21559172:0,633439,102891 -g4607,38:22064501,21559172 -g4607,38:22064501,21559172 -g4607,38:26586824,21559172 -k4607,39:29973555,21559172:2609474 -k4607,39:32583029,21559172:2609474 -) -(4607,40:20753781,22427345:11829248,485622,102891 -h4607,39:20753781,22427345:0,0,0 -r4607,76:20753781,22427345:0,588513,102891 -g4607,39:22064501,22427345 -g4607,39:22064501,22427345 -g4607,39:23267285,22427345 -g4607,39:24437102,22427345 -g4607,39:25606919,22427345 -k4607,40:29493433,22427345:3089596 -k4607,40:32583029,22427345:3089596 -) -(4607,41:20753781,23295519:11829248,530548,102891 -h4607,40:20753781,23295519:0,0,0 -r4607,76:20753781,23295519:0,633439,102891 -g4607,40:22064501,23295519 -g4607,40:22064501,23295519 -g4607,40:27831652,23295519 -k4607,41:30605800,23295519:1977230 -k4607,41:32583029,23295519:1977229 -) -(4607,42:20753781,24163692:11829248,530548,102891 -h4607,41:20753781,24163692:0,0,0 -r4607,76:20753781,24163692:0,633439,102891 -g4607,41:22064501,24163692 -g4607,41:22064501,24163692 -g4607,41:25756939,24163692 -k4607,42:29568443,24163692:3014586 -k4607,42:32583029,24163692:3014586 -) -(4607,43:20753781,25031865:11829248,485622,102891 -h4607,42:20753781,25031865:0,0,0 -r4607,76:20753781,25031865:0,588513,102891 -g4607,42:22064501,25031865 -g4607,42:22064501,25031865 -g4607,42:23682227,25031865 -k4607,43:28531087,25031865:4051942 -k4607,43:32583029,25031865:4051942 -) -(4607,44:20753781,25900039:11829248,530548,132808 -h4607,43:20753781,25900039:0,0,0 -r4607,76:20753781,25900039:0,663356,132808 -g4607,43:22064501,25900039 -g4607,43:22064501,25900039 -g4607,43:23267285,25900039 -k4607,44:28323616,25900039:4259413 -k4607,44:32583029,25900039:4259413 -) -(4607,45:20753781,26768212:11829248,513147,7863 -h4607,44:20753781,26768212:0,0,0 -g4607,44:23240872,26768212 -g4607,44:24099393,26768212 -k4607,45:29879014,26768212:2704016 -k4607,45:32583029,26768212:2704015 -) -(4607,46:20753781,27636386:11829248,530548,132808 -h4607,45:20753781,27636386:0,0,0 -r4607,76:20753781,27636386:0,663356,132808 -g4607,45:22064501,27636386 -g4607,45:22064501,27636386 -g4607,45:25341997,27636386 -g4607,45:26910273,27636386 -k4607,46:30334509,27636386:2248520 -k4607,46:32583029,27636386:2248520 -) -(4607,47:20753781,28504559:11829248,530548,102891 -h4607,46:20753781,28504559:0,0,0 -r4607,76:20753781,28504559:0,633439,102891 -g4607,46:22064501,28504559 -g4607,46:22064501,28504559 -g4607,46:25341997,28504559 -g4607,46:26910273,28504559 -g4607,46:28478549,28504559 -k4607,47:31128478,28504559:1454552 -k4607,47:32583029,28504559:1454551 -) -(4607,48:20753781,29372732:11829248,538806,102891 -h4607,47:20753781,29372732:0,0,0 -r4607,76:20753781,29372732:0,641697,102891 -k4607,47:22064501,29372732:1310720 -k4607,47:22064501,29372732:0 -k4607,47:23668012,29372732:185014 -k4607,47:26745130,29372732:185014 -k4607,47:28299191,29372732:185014 -k4607,47:29853252,29372732:185014 -k4607,47:31407313,29372732:185014 -k4607,48:32583029,29372732:0 -k4607,48:32583029,29372732:0 -) -(4607,49:20753781,30240906:11829248,538806,102891 -h4607,48:20753781,30240906:0,0,0 -r4607,76:20753781,30240906:0,641697,102891 -g4607,48:22064501,30240906 -g4607,48:22064501,30240906 -g4607,48:23267285,30240906 -g4607,48:24835561,30240906 -g4607,48:26403837,30240906 -g4607,48:27972113,30240906 -k4607,49:30875260,30240906:1707770 -k4607,49:32583029,30240906:1707769 -) -(4607,50:20753781,31109079:11829248,538806,102891 -h4607,49:20753781,31109079:0,0,0 -r4607,76:20753781,31109079:0,641697,102891 -g4607,49:22064501,31109079 -g4607,49:22064501,31109079 -g4607,49:25341997,31109079 -g4607,49:26910273,31109079 -k4607,50:30334509,31109079:2248520 -k4607,50:32583029,31109079:2248520 -) -(4607,51:20753781,31977252:11829248,538806,102891 -h4607,50:20753781,31977252:0,0,0 -r4607,76:20753781,31977252:0,641697,102891 -g4607,50:22064501,31977252 -g4607,50:22064501,31977252 -g4607,50:25756939,31977252 -g4607,50:27325215,31977252 -k4607,51:30551811,31977252:2031219 -k4607,51:32583029,31977252:2031218 -) -(4607,52:20753781,32845426:11829248,530548,132808 -h4607,51:20753781,32845426:0,0,0 -r4607,76:20753781,32845426:0,663356,132808 -g4607,51:22064501,32845426 -g4607,51:22064501,32845426 -g4607,51:25756939,32845426 -g4607,51:27325215,32845426 -g4607,51:28893491,32845426 -k4607,52:31335949,32845426:1247081 -k4607,52:32583029,32845426:1247080 -) -(4607,53:20753781,33713599:11829248,530548,102891 -h4607,52:20753781,33713599:0,0,0 -r4607,76:20753781,33713599:0,633439,102891 -g4607,52:22064501,33713599 -g4607,52:22064501,33713599 -g4607,52:24927054,33713599 -g4607,52:26495330,33713599 -k4607,53:30136868,33713599:2446161 -k4607,53:32583029,33713599:2446161 -) -(4607,54:20753781,34581773:11829248,485622,132808 -h4607,53:20753781,34581773:0,0,0 -r4607,76:20753781,34581773:0,618430,132808 -g4607,53:22064501,34581773 -g4607,53:22064501,34581773 -g4607,53:24927054,34581773 -g4607,53:26495330,34581773 -g4607,53:28063606,34581773 -g4607,53:29631882,34581773 -k4607,54:31705144,34581773:877885 -k4607,54:32583029,34581773:877885 -) -(4607,55:20753781,35449946:11829248,530548,102891 -h4607,54:20753781,35449946:0,0,0 -r4607,76:20753781,35449946:0,633439,102891 -g4607,54:22064501,35449946 -g4607,54:22064501,35449946 -g4607,54:25756939,35449946 -k4607,55:29767673,35449946:2815357 -k4607,55:32583029,35449946:2815356 -) -(4607,56:20753781,36318119:11829248,530548,132808 -h4607,55:20753781,36318119:0,0,0 -r4607,76:20753781,36318119:0,663356,132808 -g4607,55:22064501,36318119 -g4607,55:22064501,36318119 -g4607,55:25756939,36318119 -g4607,55:27325215,36318119 -g4607,55:28893491,36318119 -k4607,56:31335949,36318119:1247081 -k4607,56:32583029,36318119:1247080 -) -(4607,57:20753781,37186293:11829248,530548,102891 -h4607,56:20753781,37186293:0,0,0 -r4607,76:20753781,37186293:0,633439,102891 -g4607,56:22064501,37186293 -g4607,56:22064501,37186293 -g4607,56:25756939,37186293 -g4607,56:27325215,37186293 -g4607,56:28893491,37186293 -k4607,57:31326118,37186293:1256911 -k4607,57:32583029,37186293:1256911 -) -(4607,58:20753781,38054466:11829248,530548,132808 -h4607,57:20753781,38054466:0,0,0 -r4607,76:20753781,38054466:0,663356,132808 -g4607,57:22064501,38054466 -g4607,57:22064501,38054466 -g4607,57:25756939,38054466 -g4607,57:27325215,38054466 -k4607,58:31313339,38054466:1269691 -k4607,58:32583029,38054466:1269690 -) -(4607,59:20753781,38922640:11829248,530548,102891 -h4607,58:20753781,38922640:0,0,0 -r4607,76:20753781,38922640:0,633439,102891 -g4607,58:22064501,38922640 -g4607,58:22064501,38922640 -g4607,58:24512112,38922640 -g4607,58:26080388,38922640 -g4607,58:27648664,38922640 -g4607,58:29216940,38922640 -g4607,58:30785216,38922640 -k4607,59:32281811,38922640:301218 -k4607,59:32583029,38922640:301218 -) -(4607,63:20753781,40497729:11829248,505283,134348 -h4607,62:20753781,40497729:0,0,0 -g4607,62:22342373,40497729 -k4607,63:28607615,40497729:3975414 -k4607,63:32583029,40497729:3975414 -) -(4607,64:20753781,41365902:11829248,485622,102891 -h4607,63:20753781,41365902:0,0,0 -r4607,76:20753781,41365902:0,588513,102891 -g4607,63:22064501,41365902 -g4607,63:22064501,41365902 -g4607,63:24097170,41365902 -k4607,64:28937788,41365902:3645241 -k4607,64:32583029,41365902:3645241 -) -(4607,65:20753781,42234075:11829248,530548,102891 -h4607,64:20753781,42234075:0,0,0 -r4607,76:20753781,42234075:0,633439,102891 -g4607,64:22064501,42234075 -g4607,64:22064501,42234075 -g4607,64:25756939,42234075 -g4607,64:27325215,42234075 -k4607,65:30551811,42234075:2031219 -k4607,65:32583029,42234075:2031218 -) -(4607,66:20753781,43102249:11829248,485622,132808 -h4607,65:20753781,43102249:0,0,0 -r4607,76:20753781,43102249:0,618430,132808 -g4607,65:22064501,43102249 -g4607,65:22064501,43102249 -g4607,65:27416709,43102249 -g4607,65:28984985,43102249 -k4607,66:31371865,43102249:1211164 -k4607,66:32583029,43102249:1211164 -) -(4607,67:20753781,43970422:11829248,530548,102891 -h4607,66:20753781,43970422:0,0,0 -r4607,76:20753781,43970422:0,633439,102891 -g4607,66:22064501,43970422 -g4607,66:22064501,43970422 -g4607,66:24097170,43970422 -g4607,66:25665446,43970422 -k4607,67:29712096,43970422:2870934 -k4607,67:32583029,43970422:2870933 -) -(4607,68:20753781,44838596:11829248,485622,102891 -h4607,67:20753781,44838596:0,0,0 -r4607,76:20753781,44838596:0,588513,102891 -g4607,67:22064501,44838596 -g4607,67:22064501,44838596 -g4607,67:24927054,44838596 -k4607,68:29352730,44838596:3230299 -k4607,68:32583029,44838596:3230299 -) -(4607,69:20753781,45706769:11829248,485622,102891 -h4607,68:20753781,45706769:0,0,0 -r4607,76:20753781,45706769:0,588513,102891 -g4607,68:22064501,45706769 -g4607,68:22064501,45706769 -g4607,68:24927054,45706769 -k4607,69:29352730,45706769:3230299 -k4607,69:32583029,45706769:3230299 -) -] -(4607,76:32583029,45706769:0,355205,126483 -h4607,76:32583029,45706769:420741,355205,126483 -k4607,76:32583029,45706769:-420741 -) -) -] -(4607,76:32583029,45706769:0,0,0 -g4607,76:32583029,45706769 -) -) -] -(4607,76:6630773,47279633:25952256,485622,11795 -(4607,76:6630773,47279633:25952256,485622,11795 -k4607,76:19009213,47279633:12378440 -k4607,76:32583030,47279633:12378440 -) -) -] -(4607,76:4262630,4025873:0,0,0 -[4607,76:-473656,4025873:0,0,0 -(4607,76:-473656,-710413:0,0,0 -(4607,76:-473656,-710413:0,0,0 -g4607,76:-473656,-710413 -) -g4607,76:-473656,-710413 -) -] -) -] -!24955 -}454 +] +[4611,74:6630773,45706769:25952256,40108032,0 +(4611,74:6630773,45706769:25952256,40108032,0 +(4611,74:6630773,45706769:0,0,0 +g4611,74:6630773,45706769 +) +[4611,74:6630773,45706769:25952256,40108032,0 +[4611,1:6630773,12185121:25952256,6586384,0 +(4611,1:6630773,7073297:25952256,32768,229376 +(4611,1:6630773,7073297:0,32768,229376 +(4611,1:6630773,7073297:5505024,32768,229376 +r4611,74:12135797,7073297:5505024,262144,229376 +) +k4611,1:6630773,7073297:-5505024 +) +) +(4611,1:6630773,8842777:25952256,923664,241827 +h4611,1:6630773,8842777:0,0,0 +g4611,1:10235777,8842777 +g4611,1:11799990,8842777 +g4611,1:12964302,8842777 +g4611,1:17375006,8842777 +g4611,1:19181047,8842777 +k4611,1:28581663,8842777:4001367 +k4611,1:32583029,8842777:4001366 +) +(4611,1:6630773,9498145:25952256,32768,0 +(4611,1:6630773,9498145:5505024,32768,0 +r4611,74:12135797,9498145:5505024,32768,0 +) +k4611,1:22359413,9498145:10223616 +k4611,1:32583029,9498145:10223616 +) +] +(4611,1:6630773,13050201:25952256,505283,134348 +k4611,1:7270083,13050201:224467 +k4611,1:9562892,13050201:224493 +k4611,1:10978830,13050201:224493 +k4611,1:13845079,13050201:224493 +k4611,1:16730333,13050201:224492 +k4611,1:18222292,13050201:224493 +k4611,1:19465870,13050201:224493 +k4611,1:22919977,13050201:224493 +k4611,1:25550951,13050201:224492 +k4611,1:26966889,13050201:224493 +k4611,1:29651604,13050201:224493 +k4611,1:32583029,13050201:0 +) +(4611,1:6630773,13915281:25952256,513147,134348 +k4611,1:8025052,13915281:202834 +k4611,1:10422031,13915281:202834 +k4611,1:12982849,13915281:202833 +k4611,1:15647215,13915281:202834 +k4611,1:16509341,13915281:202834 +k4611,1:20135120,13915281:202834 +k4611,1:21900988,13915281:202834 +k4611,1:24740990,13915281:202833 +k4611,1:28143292,13915281:202834 +k4611,1:29537571,13915281:202834 +k4611,1:32583029,13915281:0 +) +(4611,1:6630773,14780361:25952256,505283,126483 +g4611,1:9020216,14780361 +g4611,1:10410890,14780361 +g4611,1:12118758,14780361 +g4611,1:14491816,14780361 +g4611,1:15882490,14780361 +k4611,1:32583029,14780361:13223854 +g4611,1:32583029,14780361 +) +(4611,74:6630773,45706769:25952256,29143824,126483 +[4611,74:6630773,45706769:11829248,29143824,11795 +(4611,4:6630773,17218305:11829248,505283,7863 +h4611,3:6630773,17218305:0,0,0 +g4611,3:9062814,17218305 +g4611,3:10453488,17218305 +k4611,4:15513195,17218305:2946826 +k4611,4:18460021,17218305:2946826 +) +(4611,5:6630773,18112167:11829248,485622,132808 +h4611,4:6630773,18112167:0,0,0 +r4611,74:6630773,18112167:0,618430,132808 +g4611,4:7941493,18112167 +g4611,4:7941493,18112167 +g4611,4:10389104,18112167 +g4611,4:11558921,18112167 +k4611,5:15607160,18112167:2852862 +k4611,5:18460021,18112167:2852861 +) +(4611,6:6630773,19006030:11829248,530548,102891 +h4611,5:6630773,19006030:0,0,0 +r4611,74:6630773,19006030:0,633439,102891 +g4611,5:7941493,19006030 +g4611,5:7941493,19006030 +g4611,5:9974162,19006030 +k4611,6:14814780,19006030:3645241 +k4611,6:18460021,19006030:3645241 +) +(4611,7:6630773,19899892:11829248,530548,102891 +h4611,6:6630773,19899892:0,0,0 +r4611,74:6630773,19899892:0,633439,102891 +g4611,6:7941493,19899892 +g4611,6:7941493,19899892 +g4611,6:12048874,19899892 +g4611,6:13218691,19899892 +g4611,6:14388508,19899892 +g4611,6:15558325,19899892 +g4611,6:16728142,19899892 +k4611,6:18460021,19899892:847799 +) +(4611,7:9252213,20764972:9207808,485622,11795 +k4611,7:14453806,20764972:4006216 +k4611,7:18460021,20764972:4006215 +) +(4611,8:6630773,21658834:11829248,530548,132808 +h4611,7:6630773,21658834:0,0,0 +r4611,74:6630773,21658834:0,663356,132808 +g4611,7:7941493,21658834 +g4611,7:7941493,21658834 +g4611,7:11218989,21658834 +k4611,8:15237964,21658834:3222057 +k4611,8:18460021,21658834:3222057 +) +(4611,9:6630773,22552696:11829248,538806,102891 +h4611,8:6630773,22552696:0,0,0 +r4611,74:6630773,22552696:0,641697,102891 +g4611,8:7941493,22552696 +g4611,8:7941493,22552696 +g4611,8:12463816,22552696 +g4611,8:13633633,22552696 +g4611,8:15201909,22552696 +k4611,9:17428654,22552696:1031368 +k4611,9:18460021,22552696:1031367 +) +(4611,10:6630773,23446559:11829248,485622,102891 +h4611,9:6630773,23446559:0,0,0 +r4611,74:6630773,23446559:0,588513,102891 +g4611,9:7941493,23446559 +g4611,9:7941493,23446559 +g4611,9:9974162,23446559 +g4611,9:11542438,23446559 +k4611,10:15598918,23446559:2861103 +k4611,10:18460021,23446559:2861103 +) +(4611,11:6630773,24340421:11829248,530548,132808 +h4611,10:6630773,24340421:0,0,0 +r4611,74:6630773,24340421:0,663356,132808 +g4611,10:7941493,24340421 +g4611,10:7941493,24340421 +g4611,10:11218989,24340421 +k4611,11:15427363,24340421:3032658 +k4611,11:18460021,24340421:3032658 +) +(4611,12:6630773,25234283:11829248,530548,102891 +h4611,11:6630773,25234283:0,0,0 +r4611,74:6630773,25234283:0,633439,102891 +g4611,11:7941493,25234283 +g4611,11:7941493,25234283 +g4611,11:10804046,25234283 +g4611,11:11973863,25234283 +g4611,11:14268278,25234283 +k4611,12:16762609,25234283:1697413 +k4611,12:18460021,25234283:1697412 +) +(4611,13:6630773,26128146:11829248,538806,102891 +h4611,12:6630773,26128146:0,0,0 +r4611,74:6630773,26128146:0,641697,102891 +g4611,12:7941493,26128146 +g4611,12:7941493,26128146 +g4611,12:10804046,26128146 +k4611,13:15030493,26128146:3429529 +k4611,13:18460021,26128146:3429528 +) +(4611,14:6630773,27022008:11829248,538806,102891 +h4611,13:6630773,27022008:0,0,0 +r4611,74:6630773,27022008:0,641697,102891 +g4611,13:7941493,27022008 +g4611,13:7941493,27022008 +g4611,13:11218989,27022008 +g4611,13:12787265,27022008 +k4611,14:16211501,27022008:2248520 +k4611,14:18460021,27022008:2248520 +) +(4611,15:6630773,27915870:11829248,530548,141066 +h4611,14:6630773,27915870:0,0,0 +r4611,74:6630773,27915870:0,671614,141066 +g4611,14:7941493,27915870 +g4611,14:7941493,27915870 +g4611,14:11218989,27915870 +g4611,14:12388806,27915870 +g4611,14:13558623,27915870 +g4611,14:14728440,27915870 +g4611,14:15898257,27915870 +k4611,15:17577598,27915870:882423 +k4611,15:18460021,27915870:882423 +) +(4611,16:6630773,28809732:11829248,530548,102891 +h4611,15:6630773,28809732:0,0,0 +r4611,74:6630773,28809732:0,633439,102891 +g4611,15:7941493,28809732 +g4611,15:7941493,28809732 +g4611,15:9974162,28809732 +g4611,15:11143979,28809732 +g4611,15:12712255,28809732 +g4611,15:14280531,28809732 +k4611,16:16967965,28809732:1492057 +k4611,16:18460021,28809732:1492056 +) +(4611,17:6630773,29703595:11829248,530548,102891 +h4611,16:6630773,29703595:0,0,0 +r4611,74:6630773,29703595:0,633439,102891 +g4611,16:7941493,29703595 +g4611,16:7941493,29703595 +g4611,16:9144277,29703595 +k4611,17:14399838,29703595:4060184 +k4611,17:18460021,29703595:4060183 +) +(4611,18:6630773,30597457:11829248,530548,141066 +h4611,17:6630773,30597457:0,0,0 +r4611,74:6630773,30597457:0,671614,141066 +g4611,17:7941493,30597457 +g4611,17:7941493,30597457 +g4611,17:11218989,30597457 +g4611,17:12388806,30597457 +g4611,17:13558623,30597457 +g4611,17:14728440,30597457 +g4611,17:15898257,30597457 +g4611,17:17068074,30597457 +k4611,17:18460021,30597457:109408 +) +(4611,18:9252213,31462537:9207808,481690,0 +k4611,18:14434145,31462537:4025877 +k4611,18:18460021,31462537:4025876 +) +(4611,19:6630773,32356399:11829248,530548,102891 +h4611,18:6630773,32356399:0,0,0 +r4611,74:6630773,32356399:0,633439,102891 +g4611,18:7941493,32356399 +g4611,18:7941493,32356399 +g4611,18:10804046,32356399 +g4611,18:11973863,32356399 +g4611,18:13143680,32356399 +g4611,18:14313497,32356399 +g4611,18:15881773,32356399 +k4611,19:17768586,32356399:691436 +k4611,19:18460021,32356399:691435 +) +(4611,20:6630773,33250262:11829248,530548,102891 +h4611,19:6630773,33250262:0,0,0 +r4611,74:6630773,33250262:0,633439,102891 +g4611,19:7941493,33250262 +g4611,19:7941493,33250262 +g4611,19:11218989,33250262 +g4611,19:12388806,33250262 +g4611,19:13558623,33250262 +g4611,19:14728440,33250262 +g4611,19:15898257,33250262 +k4611,19:18460021,33250262:1279225 +) +(4611,20:9252213,34115342:9207808,485622,0 +k4611,20:14443975,34115342:4016046 +k4611,20:18460021,34115342:4016046 +) +(4611,21:6630773,35009204:11829248,485622,102891 +h4611,20:6630773,35009204:0,0,0 +r4611,74:6630773,35009204:0,588513,102891 +g4611,20:7941493,35009204 +g4611,20:7941493,35009204 +g4611,20:11218989,35009204 +g4611,20:12388806,35009204 +g4611,20:13957082,35009204 +k4611,21:16806240,35009204:1653781 +k4611,21:18460021,35009204:1653781 +) +(4611,22:6630773,35903066:11829248,530548,102891 +h4611,21:6630773,35903066:0,0,0 +r4611,74:6630773,35903066:0,633439,102891 +g4611,21:7941493,35903066 +g4611,21:7941493,35903066 +g4611,21:11218989,35903066 +g4611,21:12388806,35903066 +k4611,22:16022102,35903066:2437919 +k4611,22:18460021,35903066:2437919 +) +(4611,23:6630773,36796928:11829248,530548,102891 +h4611,22:6630773,36796928:0,0,0 +r4611,74:6630773,36796928:0,633439,102891 +g4611,22:7941493,36796928 +g4611,22:7941493,36796928 +g4611,22:9559219,36796928 +g4611,22:11127495,36796928 +k4611,23:15391447,36796928:3068575 +k4611,23:18460021,36796928:3068574 +) +(4611,24:6630773,37690791:11829248,538806,102891 +h4611,23:6630773,37690791:0,0,0 +r4611,74:6630773,37690791:0,641697,102891 +g4611,23:7941493,37690791 +g4611,23:7941493,37690791 +g4611,23:10804046,37690791 +k4611,24:15229722,37690791:3230299 +k4611,24:18460021,37690791:3230299 +) +(4611,25:6630773,38584653:11829248,530548,102891 +h4611,24:6630773,38584653:0,0,0 +r4611,74:6630773,38584653:0,633439,102891 +g4611,24:7941493,38584653 +g4611,24:7941493,38584653 +g4611,24:10804046,38584653 +g4611,24:12372322,38584653 +g4611,24:13940598,38584653 +g4611,24:15508874,38584653 +g4611,24:17077150,38584653 +k4611,25:18366274,38584653:93747 +k4611,25:18460021,38584653:93747 +) +(4611,26:6630773,39478515:11829248,485622,102891 +h4611,25:6630773,39478515:0,0,0 +r4611,74:6630773,39478515:0,588513,102891 +g4611,25:7941493,39478515 +g4611,25:7941493,39478515 +g4611,25:10804046,39478515 +k4611,26:15030493,39478515:3429529 +k4611,26:18460021,39478515:3429528 +) +(4611,27:6630773,40372378:11829248,505283,126483 +h4611,26:6630773,40372378:0,0,0 +g4611,26:9587757,40372378 +g4611,26:10978431,40372378 +g4611,26:13371805,40372378 +k4611,27:16921236,40372378:1538786 +k4611,27:18460021,40372378:1538785 +) +(4611,28:6630773,41266240:11829248,538806,102891 +h4611,27:6630773,41266240:0,0,0 +r4611,74:6630773,41266240:0,641697,102891 +g4611,27:7941493,41266240 +g4611,27:7941493,41266240 +g4611,27:9974162,41266240 +g4611,27:11143979,41266240 +k4611,28:15190629,41266240:3269393 +k4611,28:18460021,41266240:3269392 +) +(4611,29:6630773,42160102:11829248,538806,132808 +h4611,28:6630773,42160102:0,0,0 +r4611,74:6630773,42160102:0,671614,132808 +g4611,28:7941493,42160102 +g4611,28:7941493,42160102 +g4611,28:16198298,42160102 +k4611,29:17727619,42160102:732403 +k4611,29:18460021,42160102:732402 +) +(4611,30:6630773,43053964:11829248,538806,102891 +h4611,29:6630773,43053964:0,0,0 +r4611,74:6630773,43053964:0,641697,102891 +g4611,29:7941493,43053964 +g4611,29:7941493,43053964 +g4611,29:16198298,43053964 +k4611,30:17727619,43053964:732403 +k4611,30:18460021,43053964:732402 +) +(4611,31:6630773,43947827:11829248,538806,102891 +h4611,30:6630773,43947827:0,0,0 +r4611,74:6630773,43947827:0,641697,102891 +g4611,30:7941493,43947827 +g4611,30:7941493,43947827 +g4611,30:16198298,43947827 +k4611,31:17727619,43947827:732403 +k4611,31:18460021,43947827:732402 +) +(4611,32:6630773,44841689:11829248,538806,141066 +h4611,31:6630773,44841689:0,0,0 +r4611,74:6630773,44841689:0,679872,141066 +g4611,31:7941493,44841689 +g4611,31:7941493,44841689 +k4611,31:18460021,44841689:887691 +) +(4611,32:9252213,45706769:9207808,485622,11795 +k4611,32:14254576,45706769:4205445 +k4611,32:18460021,45706769:4205445 +) +] +k4611,74:19606901,45706769:1146880 +r4611,74:19606901,45706769:0,29270307,126483 +k4611,74:20753781,45706769:1146880 +[4611,74:20753781,45706769:11829248,29143824,102891 +(4611,33:20753781,17218305:11829248,538806,102891 +h4611,32:20753781,17218305:0,0,0 +r4611,74:20753781,17218305:0,641697,102891 +g4611,32:22064501,17218305 +g4611,32:22064501,17218305 +g4611,32:30736248,17218305 +k4611,33:32058098,17218305:524932 +k4611,33:32583029,17218305:524931 +) +(4611,34:20753781,18086478:11829248,538806,141066 +h4611,33:20753781,18086478:0,0,0 +r4611,74:20753781,18086478:0,679872,141066 +g4611,33:22064501,18086478 +g4611,33:22064501,18086478 +g4611,33:30736248,18086478 +k4611,34:32058098,18086478:524932 +k4611,34:32583029,18086478:524931 +) +(4611,35:20753781,18954652:11829248,538806,102891 +h4611,34:20753781,18954652:0,0,0 +r4611,74:20753781,18954652:0,641697,102891 +g4611,34:22064501,18954652 +g4611,34:22064501,18954652 +g4611,34:23682227,18954652 +g4611,34:24852044,18954652 +k4611,35:29106165,18954652:3476864 +k4611,35:32583029,18954652:3476864 +) +(4611,36:20753781,19822825:11829248,485622,102891 +h4611,35:20753781,19822825:0,0,0 +r4611,74:20753781,19822825:0,588513,102891 +g4611,35:22064501,19822825 +g4611,35:22064501,19822825 +g4611,35:25341997,19822825 +k4611,36:29351142,19822825:3231888 +k4611,36:32583029,19822825:3231887 +) +(4611,37:20753781,20690999:11829248,530548,102891 +h4611,36:20753781,20690999:0,0,0 +r4611,74:20753781,20690999:0,633439,102891 +g4611,36:22064501,20690999 +g4611,36:22064501,20690999 +g4611,36:25341997,20690999 +k4611,37:29351142,20690999:3231888 +k4611,37:32583029,20690999:3231887 +) +(4611,38:20753781,21559172:11829248,530548,102891 +h4611,37:20753781,21559172:0,0,0 +r4611,74:20753781,21559172:0,633439,102891 +g4611,37:22064501,21559172 +g4611,37:22064501,21559172 +g4611,37:26171882,21559172 +k4611,38:29766084,21559172:2816945 +k4611,38:32583029,21559172:2816945 +) +(4611,39:20753781,22427345:11829248,530548,102891 +h4611,38:20753781,22427345:0,0,0 +r4611,74:20753781,22427345:0,633439,102891 +g4611,38:22064501,22427345 +g4611,38:22064501,22427345 +g4611,38:26586824,22427345 +k4611,39:29973555,22427345:2609474 +k4611,39:32583029,22427345:2609474 +) +(4611,40:20753781,23295519:11829248,485622,102891 +h4611,39:20753781,23295519:0,0,0 +r4611,74:20753781,23295519:0,588513,102891 +g4611,39:22064501,23295519 +g4611,39:22064501,23295519 +g4611,39:23267285,23295519 +g4611,39:24437102,23295519 +g4611,39:25606919,23295519 +k4611,40:29493433,23295519:3089596 +k4611,40:32583029,23295519:3089596 +) +(4611,41:20753781,24163692:11829248,530548,102891 +h4611,40:20753781,24163692:0,0,0 +r4611,74:20753781,24163692:0,633439,102891 +g4611,40:22064501,24163692 +g4611,40:22064501,24163692 +g4611,40:27831652,24163692 +k4611,41:30605800,24163692:1977230 +k4611,41:32583029,24163692:1977229 +) +(4611,42:20753781,25031865:11829248,530548,102891 +h4611,41:20753781,25031865:0,0,0 +r4611,74:20753781,25031865:0,633439,102891 +g4611,41:22064501,25031865 +g4611,41:22064501,25031865 +g4611,41:25756939,25031865 +k4611,42:29568443,25031865:3014586 +k4611,42:32583029,25031865:3014586 +) +(4611,43:20753781,25900039:11829248,485622,102891 +h4611,42:20753781,25900039:0,0,0 +r4611,74:20753781,25900039:0,588513,102891 +g4611,42:22064501,25900039 +g4611,42:22064501,25900039 +g4611,42:23682227,25900039 +k4611,43:28531087,25900039:4051942 +k4611,43:32583029,25900039:4051942 +) +(4611,44:20753781,26768212:11829248,530548,132808 +h4611,43:20753781,26768212:0,0,0 +r4611,74:20753781,26768212:0,663356,132808 +g4611,43:22064501,26768212 +g4611,43:22064501,26768212 +g4611,43:23267285,26768212 +k4611,44:28323616,26768212:4259413 +k4611,44:32583029,26768212:4259413 +) +(4611,45:20753781,27636386:11829248,513147,7863 +h4611,44:20753781,27636386:0,0,0 +g4611,44:23240872,27636386 +g4611,44:24099393,27636386 +k4611,45:29879014,27636386:2704016 +k4611,45:32583029,27636386:2704015 +) +(4611,46:20753781,28504559:11829248,530548,132808 +h4611,45:20753781,28504559:0,0,0 +r4611,74:20753781,28504559:0,663356,132808 +g4611,45:22064501,28504559 +g4611,45:22064501,28504559 +g4611,45:25341997,28504559 +g4611,45:26910273,28504559 +k4611,46:30334509,28504559:2248520 +k4611,46:32583029,28504559:2248520 +) +(4611,47:20753781,29372732:11829248,530548,102891 +h4611,46:20753781,29372732:0,0,0 +r4611,74:20753781,29372732:0,633439,102891 +g4611,46:22064501,29372732 +g4611,46:22064501,29372732 +g4611,46:25341997,29372732 +g4611,46:26910273,29372732 +g4611,46:28478549,29372732 +k4611,47:31128478,29372732:1454552 +k4611,47:32583029,29372732:1454551 +) +(4611,48:20753781,30240906:11829248,538806,102891 +h4611,47:20753781,30240906:0,0,0 +r4611,74:20753781,30240906:0,641697,102891 +k4611,47:22064501,30240906:1310720 +k4611,47:22064501,30240906:0 +k4611,47:23668012,30240906:185014 +k4611,47:26745130,30240906:185014 +k4611,47:28299191,30240906:185014 +k4611,47:29853252,30240906:185014 +k4611,47:31407313,30240906:185014 +k4611,48:32583029,30240906:0 +k4611,48:32583029,30240906:0 +) +(4611,49:20753781,31109079:11829248,538806,102891 +h4611,48:20753781,31109079:0,0,0 +r4611,74:20753781,31109079:0,641697,102891 +g4611,48:22064501,31109079 +g4611,48:22064501,31109079 +g4611,48:23267285,31109079 +g4611,48:24835561,31109079 +g4611,48:26403837,31109079 +g4611,48:27972113,31109079 +k4611,49:30875260,31109079:1707770 +k4611,49:32583029,31109079:1707769 +) +(4611,50:20753781,31977252:11829248,538806,102891 +h4611,49:20753781,31977252:0,0,0 +r4611,74:20753781,31977252:0,641697,102891 +g4611,49:22064501,31977252 +g4611,49:22064501,31977252 +g4611,49:25341997,31977252 +g4611,49:26910273,31977252 +k4611,50:30334509,31977252:2248520 +k4611,50:32583029,31977252:2248520 +) +(4611,51:20753781,32845426:11829248,538806,102891 +h4611,50:20753781,32845426:0,0,0 +r4611,74:20753781,32845426:0,641697,102891 +g4611,50:22064501,32845426 +g4611,50:22064501,32845426 +g4611,50:25756939,32845426 +g4611,50:27325215,32845426 +k4611,51:30551811,32845426:2031219 +k4611,51:32583029,32845426:2031218 +) +(4611,52:20753781,33713599:11829248,530548,132808 +h4611,51:20753781,33713599:0,0,0 +r4611,74:20753781,33713599:0,663356,132808 +g4611,51:22064501,33713599 +g4611,51:22064501,33713599 +g4611,51:25756939,33713599 +g4611,51:27325215,33713599 +g4611,51:28893491,33713599 +k4611,52:31335949,33713599:1247081 +k4611,52:32583029,33713599:1247080 +) +(4611,53:20753781,34581773:11829248,530548,102891 +h4611,52:20753781,34581773:0,0,0 +r4611,74:20753781,34581773:0,633439,102891 +g4611,52:22064501,34581773 +g4611,52:22064501,34581773 +g4611,52:24927054,34581773 +g4611,52:26495330,34581773 +k4611,53:30136868,34581773:2446161 +k4611,53:32583029,34581773:2446161 +) +(4611,54:20753781,35449946:11829248,485622,132808 +h4611,53:20753781,35449946:0,0,0 +r4611,74:20753781,35449946:0,618430,132808 +g4611,53:22064501,35449946 +g4611,53:22064501,35449946 +g4611,53:24927054,35449946 +g4611,53:26495330,35449946 +g4611,53:28063606,35449946 +g4611,53:29631882,35449946 +k4611,54:31705144,35449946:877885 +k4611,54:32583029,35449946:877885 +) +(4611,55:20753781,36318119:11829248,530548,102891 +h4611,54:20753781,36318119:0,0,0 +r4611,74:20753781,36318119:0,633439,102891 +g4611,54:22064501,36318119 +g4611,54:22064501,36318119 +g4611,54:25756939,36318119 +k4611,55:29767673,36318119:2815357 +k4611,55:32583029,36318119:2815356 +) +(4611,56:20753781,37186293:11829248,530548,132808 +h4611,55:20753781,37186293:0,0,0 +r4611,74:20753781,37186293:0,663356,132808 +g4611,55:22064501,37186293 +g4611,55:22064501,37186293 +g4611,55:25756939,37186293 +g4611,55:27325215,37186293 +g4611,55:28893491,37186293 +k4611,56:31335949,37186293:1247081 +k4611,56:32583029,37186293:1247080 +) +(4611,57:20753781,38054466:11829248,530548,102891 +h4611,56:20753781,38054466:0,0,0 +r4611,74:20753781,38054466:0,633439,102891 +g4611,56:22064501,38054466 +g4611,56:22064501,38054466 +g4611,56:25756939,38054466 +g4611,56:27325215,38054466 +g4611,56:28893491,38054466 +k4611,57:31326118,38054466:1256911 +k4611,57:32583029,38054466:1256911 +) +(4611,58:20753781,38922640:11829248,530548,132808 +h4611,57:20753781,38922640:0,0,0 +r4611,74:20753781,38922640:0,663356,132808 +g4611,57:22064501,38922640 +g4611,57:22064501,38922640 +g4611,57:25756939,38922640 +g4611,57:27325215,38922640 +k4611,58:31313339,38922640:1269691 +k4611,58:32583029,38922640:1269690 +) +(4611,59:20753781,39790813:11829248,530548,102891 +h4611,58:20753781,39790813:0,0,0 +r4611,74:20753781,39790813:0,633439,102891 +g4611,58:22064501,39790813 +g4611,58:22064501,39790813 +g4611,58:24512112,39790813 +g4611,58:26080388,39790813 +g4611,58:27648664,39790813 +g4611,58:29216940,39790813 +g4611,58:30785216,39790813 +k4611,59:32281811,39790813:301218 +k4611,59:32583029,39790813:301218 +) +(4611,63:20753781,41365902:11829248,505283,134348 +h4611,62:20753781,41365902:0,0,0 +g4611,62:22342373,41365902 +k4611,63:28607615,41365902:3975414 +k4611,63:32583029,41365902:3975414 +) +(4611,64:20753781,42234075:11829248,485622,102891 +h4611,63:20753781,42234075:0,0,0 +r4611,74:20753781,42234075:0,588513,102891 +g4611,63:22064501,42234075 +g4611,63:22064501,42234075 +g4611,63:24097170,42234075 +k4611,64:28937788,42234075:3645241 +k4611,64:32583029,42234075:3645241 +) +(4611,65:20753781,43102249:11829248,530548,102891 +h4611,64:20753781,43102249:0,0,0 +r4611,74:20753781,43102249:0,633439,102891 +g4611,64:22064501,43102249 +g4611,64:22064501,43102249 +g4611,64:25756939,43102249 +g4611,64:27325215,43102249 +k4611,65:30551811,43102249:2031219 +k4611,65:32583029,43102249:2031218 +) +(4611,66:20753781,43970422:11829248,485622,132808 +h4611,65:20753781,43970422:0,0,0 +r4611,74:20753781,43970422:0,618430,132808 +g4611,65:22064501,43970422 +g4611,65:22064501,43970422 +g4611,65:27416709,43970422 +g4611,65:28984985,43970422 +k4611,66:31371865,43970422:1211164 +k4611,66:32583029,43970422:1211164 +) +(4611,67:20753781,44838596:11829248,530548,102891 +h4611,66:20753781,44838596:0,0,0 +r4611,74:20753781,44838596:0,633439,102891 +g4611,66:22064501,44838596 +g4611,66:22064501,44838596 +g4611,66:24097170,44838596 +g4611,66:25665446,44838596 +k4611,67:29712096,44838596:2870934 +k4611,67:32583029,44838596:2870933 +) +(4611,68:20753781,45706769:11829248,485622,102891 +h4611,67:20753781,45706769:0,0,0 +r4611,74:20753781,45706769:0,588513,102891 +g4611,67:22064501,45706769 +g4611,67:22064501,45706769 +g4611,67:24927054,45706769 +k4611,68:29352730,45706769:3230299 +k4611,68:32583029,45706769:3230299 +) +] +(4611,74:32583029,45706769:0,355205,126483 +h4611,74:32583029,45706769:420741,355205,126483 +k4611,74:32583029,45706769:-420741 +) +) +] +(4611,74:32583029,45706769:0,0,0 +g4611,74:32583029,45706769 +) +) +] +(4611,74:6630773,47279633:25952256,485622,11795 +(4611,74:6630773,47279633:25952256,485622,11795 +k4611,74:19009213,47279633:12378440 +k4611,74:32583030,47279633:12378440 +) +) +] +(4611,74:4262630,4025873:0,0,0 +[4611,74:-473656,4025873:0,0,0 +(4611,74:-473656,-710413:0,0,0 +(4611,74:-473656,-710413:0,0,0 +g4611,74:-473656,-710413 +) +g4611,74:-473656,-710413 +) +] +) +] +!24763 +}455 !12 -{455 -[4607,163:4262630,47279633:28320399,43253760,0 -(4607,163:4262630,4025873:0,0,0 -[4607,163:-473656,4025873:0,0,0 -(4607,163:-473656,-710413:0,0,0 -(4607,163:-473656,-644877:0,0,0 -k4607,163:-473656,-644877:-65536 +{456 +[4611,162:4262630,47279633:28320399,43253760,0 +(4611,162:4262630,4025873:0,0,0 +[4611,162:-473656,4025873:0,0,0 +(4611,162:-473656,-710413:0,0,0 +(4611,162:-473656,-644877:0,0,0 +k4611,162:-473656,-644877:-65536 ) -(4607,163:-473656,4736287:0,0,0 -k4607,163:-473656,4736287:5209943 +(4611,162:-473656,4736287:0,0,0 +k4611,162:-473656,4736287:5209943 ) -g4607,163:-473656,-710413 +g4611,162:-473656,-710413 ) ] ) -[4607,163:6630773,47279633:25952256,43253760,0 -[4607,163:6630773,4812305:25952256,786432,0 -(4607,163:6630773,4812305:25952256,513147,134348 -(4607,163:6630773,4812305:25952256,513147,134348 -g4607,163:3078558,4812305 -[4607,163:3078558,4812305:0,0,0 -(4607,163:3078558,2439708:0,1703936,0 -k4607,163:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,163:2537886,2439708:1179648,16384,0 +[4611,162:6630773,47279633:25952256,43253760,0 +[4611,162:6630773,4812305:25952256,786432,0 +(4611,162:6630773,4812305:25952256,513147,134348 +(4611,162:6630773,4812305:25952256,513147,134348 +g4611,162:3078558,4812305 +[4611,162:3078558,4812305:0,0,0 +(4611,162:3078558,2439708:0,1703936,0 +k4611,162:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,162:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,163:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,162:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,163:3078558,4812305:0,0,0 -(4607,163:3078558,2439708:0,1703936,0 -g4607,163:29030814,2439708 -g4607,163:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,163:36151628,1915420:16384,1179648,0 +[4611,162:3078558,4812305:0,0,0 +(4611,162:3078558,2439708:0,1703936,0 +g4611,162:29030814,2439708 +g4611,162:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,162:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,163:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,162:37855564,2439708:1179648,16384,0 ) ) -k4607,163:3078556,2439708:-34777008 +k4611,162:3078556,2439708:-34777008 ) ] -[4607,163:3078558,4812305:0,0,0 -(4607,163:3078558,49800853:0,16384,2228224 -k4607,163:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,163:2537886,49800853:1179648,16384,0 +[4611,162:3078558,4812305:0,0,0 +(4611,162:3078558,49800853:0,16384,2228224 +k4611,162:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,162:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,163:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,162:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,163:3078558,4812305:0,0,0 -(4607,163:3078558,49800853:0,16384,2228224 -g4607,163:29030814,49800853 -g4607,163:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,163:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,163:37855564,49800853:1179648,16384,0 -) -) -k4607,163:3078556,49800853:-34777008 -) -] -g4607,163:6630773,4812305 -k4607,163:23083588,4812305:15257438 -g4607,163:24981510,4812305 -g4607,163:25796777,4812305 -g4607,163:26410194,4812305 -g4607,163:28753761,4812305 -g4607,163:29709275,4812305 -) -) -] -[4607,163:6630773,45706769:25952256,40108032,0 -(4607,163:6630773,45706769:25952256,40108032,0 -(4607,163:6630773,45706769:0,0,0 -g4607,163:6630773,45706769 -) -[4607,163:6630773,45706769:25952256,40108032,0 -(4607,163:6630773,45706769:25952256,40108032,132808 -[4607,163:6630773,45706769:11829248,40108032,102891 -(4607,70:6630773,6254097:11829248,530548,132808 -h4607,69:6630773,6254097:0,0,0 -r4607,163:6630773,6254097:0,663356,132808 -g4607,69:7941493,6254097 -g4607,69:7941493,6254097 -g4607,69:9559219,6254097 -k4607,70:14607309,6254097:3852713 -k4607,70:18460021,6254097:3852712 -) -(4607,71:6630773,7119177:11829248,485622,141066 -h4607,70:6630773,7119177:0,0,0 -r4607,163:6630773,7119177:0,626688,141066 -g4607,70:7941493,7119177 -g4607,70:7941493,7119177 -g4607,70:10804046,7119177 -k4607,71:15229722,7119177:3230299 -k4607,71:18460021,7119177:3230299 -) -(4607,72:6630773,7984257:11829248,530548,132808 -h4607,71:6630773,7984257:0,0,0 -r4607,163:6630773,7984257:0,663356,132808 -g4607,71:7941493,7984257 -g4607,71:7941493,7984257 -g4607,71:12048874,7984257 -g4607,71:13617150,7984257 -k4607,72:16636274,7984257:1823747 -k4607,72:18460021,7984257:1823747 -) -(4607,76:6630773,9373409:11829248,513147,7863 -h4607,75:6630773,9373409:0,0,0 -g4607,75:9855799,9373409 -g4607,75:11246473,9373409 -k4607,76:16245560,9373409:2214462 -k4607,76:18460021,9373409:2214461 -) -(4607,77:6630773,10238489:11829248,530548,102891 -h4607,76:6630773,10238489:0,0,0 -r4607,163:6630773,10238489:0,633439,102891 -g4607,76:7941493,10238489 -g4607,76:7941493,10238489 -g4607,76:9559219,10238489 -k4607,77:14607309,10238489:3852713 -k4607,77:18460021,10238489:3852712 -) -(4607,78:6630773,11103569:11829248,530548,102891 -h4607,77:6630773,11103569:0,0,0 -r4607,163:6630773,11103569:0,633439,102891 -g4607,77:7941493,11103569 -g4607,77:7941493,11103569 -g4607,77:10389104,11103569 -g4607,77:11558921,11103569 -k4607,78:15398100,11103569:3061922 -k4607,78:18460021,11103569:3061921 -) -(4607,79:6630773,11968649:11829248,538806,102891 -h4607,78:6630773,11968649:0,0,0 -r4607,163:6630773,11968649:0,641697,102891 -g4607,78:7941493,11968649 -g4607,78:7941493,11968649 -g4607,78:10389104,11968649 -k4607,79:15022251,11968649:3437770 -k4607,79:18460021,11968649:3437770 -) -(4607,80:6630773,12833729:11829248,530548,102891 -h4607,79:6630773,12833729:0,0,0 -r4607,163:6630773,12833729:0,633439,102891 -g4607,79:7941493,12833729 -g4607,79:7941493,12833729 -g4607,79:10389104,12833729 -g4607,79:11957380,12833729 -g4607,79:13525656,12833729 -g4607,79:15093932,12833729 -g4607,79:16662208,12833729 -k4607,79:18460021,12833729:515274 -) -(4607,80:9252213,13698809:9207808,485622,102891 -g4607,79:10820489,13698809 -k4607,80:15237944,13698809:3222078 -k4607,80:18460021,13698809:3222077 -) -(4607,81:6630773,14563889:11829248,538806,102891 -h4607,80:6630773,14563889:0,0,0 -r4607,163:6630773,14563889:0,641697,102891 -g4607,80:7941493,14563889 -g4607,80:7941493,14563889 -g4607,80:13708644,14563889 -k4607,81:16682021,14563889:1778000 -k4607,81:18460021,14563889:1778000 -) -(4607,82:6630773,15428969:11829248,538806,102891 -h4607,81:6630773,15428969:0,0,0 -r4607,163:6630773,15428969:0,641697,102891 -g4607,81:7941493,15428969 -g4607,81:7941493,15428969 -g4607,81:13293701,15428969 -g4607,81:14861977,15428969 -g4607,81:16430253,15428969 -k4607,82:18042826,15428969:417196 -k4607,82:18460021,15428969:417195 -) -(4607,83:6630773,16294049:11829248,530548,141066 -h4607,82:6630773,16294049:0,0,0 -r4607,163:6630773,16294049:0,671614,141066 -g4607,82:7941493,16294049 -g4607,82:7941493,16294049 -g4607,82:12878759,16294049 -g4607,82:14447035,16294049 -g4607,82:16015311,16294049 -k4607,83:17835355,16294049:624667 -k4607,83:18460021,16294049:624666 -) -(4607,84:6630773,17159129:11829248,530548,102891 -h4607,83:6630773,17159129:0,0,0 -r4607,163:6630773,17159129:0,633439,102891 -g4607,83:7941493,17159129 -g4607,83:7941493,17159129 -g4607,83:10389104,17159129 -g4607,83:11957380,17159129 -g4607,83:13525656,17159129 -k4607,84:16580697,17159129:1879325 -k4607,84:18460021,17159129:1879324 -) -(4607,85:6630773,18024209:11829248,530548,102891 -h4607,84:6630773,18024209:0,0,0 -r4607,163:6630773,18024209:0,633439,102891 -g4607,84:7941493,18024209 -g4607,84:7941493,18024209 -g4607,84:10389104,18024209 -g4607,84:11558921,18024209 -k4607,85:15398100,18024209:3061922 -k4607,85:18460021,18024209:3061921 -) -(4607,86:6630773,18889289:11829248,530548,102891 -h4607,85:6630773,18889289:0,0,0 -r4607,163:6630773,18889289:0,633439,102891 -g4607,85:7941493,18889289 -g4607,85:7941493,18889289 -g4607,85:12463816,18889289 -k4607,86:16811305,18889289:1648717 -k4607,86:18460021,18889289:1648716 -) -(4607,87:6630773,19754369:11829248,530548,102891 -h4607,86:6630773,19754369:0,0,0 -r4607,163:6630773,19754369:0,633439,102891 -g4607,86:7941493,19754369 -g4607,86:7941493,19754369 -g4607,86:16198298,19754369 -k4607,86:18460021,19754369:979184 -) -(4607,87:9252213,20619449:9207808,485622,11795 -k4607,87:14453806,20619449:4006216 -k4607,87:18460021,20619449:4006215 -) -(4607,89:6630773,21484529:11829248,530548,102891 -h4607,87:6630773,21484529:0,0,0 -r4607,163:6630773,21484529:0,633439,102891 -g4607,87:7941493,21484529 -g4607,87:7941493,21484529 -g4607,87:11218989,21484529 -g4607,87:12787265,21484529 -g4607,87:14355541,21484529 -g4607,87:15923817,21484529 -k4607,87:18460021,21484529:1253665 -) -(4607,89:9252213,22349609:9207808,485622,102891 -g4607,87:10820489,22349609 -g4607,87:12388765,22349609 -g4607,87:13957041,22349609 -g4607,87:15525317,22349609 -g4607,88:17093593,22349609 -k4607,88:18460021,22349609:83889 -) -(4607,89:9252213,23214689:9207808,485622,11795 -k4607,89:14453806,23214689:4006216 -k4607,89:18460021,23214689:4006215 -) -(4607,90:6630773,24079769:11829248,530548,141066 -h4607,89:6630773,24079769:0,0,0 -r4607,163:6630773,24079769:0,671614,141066 -g4607,89:7941493,24079769 -g4607,89:7941493,24079769 -g4607,89:12878759,24079769 -k4607,90:16267079,24079769:2192943 -k4607,90:18460021,24079769:2192942 -) -(4607,91:6630773,24944849:11829248,530548,132808 -h4607,90:6630773,24944849:0,0,0 -r4607,163:6630773,24944849:0,663356,132808 -g4607,90:7941493,24944849 -g4607,90:7941493,24944849 -g4607,90:10389104,24944849 -g4607,90:11558921,24944849 -k4607,91:15407930,24944849:3052091 -k4607,91:18460021,24944849:3052091 -) -(4607,92:6630773,25809929:11829248,530548,102891 -h4607,91:6630773,25809929:0,0,0 -r4607,163:6630773,25809929:0,633439,102891 -g4607,91:7941493,25809929 -g4607,91:7941493,25809929 -g4607,91:10389104,25809929 -g4607,91:11957380,25809929 -k4607,92:15806389,25809929:2653632 -k4607,92:18460021,25809929:2653632 -) -(4607,93:6630773,26675009:11829248,530548,132808 -h4607,92:6630773,26675009:0,0,0 -r4607,163:6630773,26675009:0,663356,132808 -g4607,92:7941493,26675009 -g4607,92:7941493,26675009 -g4607,92:11633931,26675009 -g4607,92:12803748,26675009 -k4607,93:16030344,26675009:2429678 -k4607,93:18460021,26675009:2429677 -) -(4607,94:6630773,27540089:11829248,530548,132808 -h4607,93:6630773,27540089:0,0,0 -r4607,163:6630773,27540089:0,663356,132808 -g4607,93:7941493,27540089 -g4607,93:7941493,27540089 -g4607,93:11218989,27540089 -g4607,93:12787265,27540089 -k4607,94:16211501,27540089:2248520 -k4607,94:18460021,27540089:2248520 -) -(4607,95:6630773,28405169:11829248,530548,141066 -h4607,94:6630773,28405169:0,0,0 -r4607,163:6630773,28405169:0,671614,141066 -g4607,94:7941493,28405169 -g4607,94:7941493,28405169 -g4607,94:12048874,28405169 -k4607,95:15852136,28405169:2607885 -k4607,95:18460021,28405169:2607885 -) -(4607,96:6630773,29270249:11829248,530548,132808 -h4607,95:6630773,29270249:0,0,0 -r4607,163:6630773,29270249:0,663356,132808 -g4607,95:7941493,29270249 -g4607,95:7941493,29270249 -g4607,95:11218989,29270249 -k4607,96:15237964,29270249:3222057 -k4607,96:18460021,29270249:3222057 -) -(4607,97:6630773,30135329:11829248,530548,102891 -h4607,96:6630773,30135329:0,0,0 -r4607,163:6630773,30135329:0,633439,102891 -g4607,96:7941493,30135329 -g4607,96:7941493,30135329 -g4607,96:14123586,30135329 -g4607,96:15293403,30135329 -k4607,97:17275171,30135329:1184850 -k4607,97:18460021,30135329:1184850 -) -(4607,98:6630773,31000409:11829248,538806,102891 -h4607,97:6630773,31000409:0,0,0 -r4607,163:6630773,31000409:0,641697,102891 -g4607,97:7941493,31000409 -g4607,97:7941493,31000409 -g4607,97:14538528,31000409 -k4607,98:17096963,31000409:1363058 -k4607,98:18460021,31000409:1363058 -) -(4607,99:6630773,31865489:11829248,538806,102891 -h4607,98:6630773,31865489:0,0,0 -r4607,163:6630773,31865489:0,641697,102891 -g4607,98:7941493,31865489 -g4607,98:7941493,31865489 -g4607,98:13293701,31865489 -g4607,98:14861977,31865489 -k4607,99:17248857,31865489:1211164 -k4607,99:18460021,31865489:1211164 -) -(4607,100:6630773,32730569:11829248,530548,141066 -h4607,99:6630773,32730569:0,0,0 -r4607,163:6630773,32730569:0,671614,141066 -g4607,99:7941493,32730569 -g4607,99:7941493,32730569 -g4607,99:13293701,32730569 -k4607,100:16275320,32730569:2184701 -k4607,100:18460021,32730569:2184701 -) -(4607,101:6630773,33595649:11829248,530548,141066 -h4607,100:6630773,33595649:0,0,0 -r4607,163:6630773,33595649:0,671614,141066 -g4607,100:7941493,33595649 -g4607,100:7941493,33595649 -g4607,100:13293701,33595649 -k4607,101:16265490,33595649:2194532 -k4607,101:18460021,33595649:2194531 -) -(4607,102:6630773,34460729:11829248,530548,102891 -h4607,101:6630773,34460729:0,0,0 -r4607,163:6630773,34460729:0,633439,102891 -g4607,101:7941493,34460729 -g4607,101:7941493,34460729 -g4607,101:12878759,34460729 -k4607,102:16058019,34460729:2402003 -k4607,102:18460021,34460729:2402002 -) -(4607,103:6630773,35325809:11829248,530548,102891 -h4607,102:6630773,35325809:0,0,0 -r4607,163:6630773,35325809:0,633439,102891 -g4607,102:7941493,35325809 -g4607,102:7941493,35325809 -g4607,102:13293701,35325809 -g4607,102:14463518,35325809 -g4607,102:15633335,35325809 -k4607,103:17445137,35325809:1014884 -k4607,103:18460021,35325809:1014884 -) -(4607,104:6630773,36190889:11829248,530548,102891 -h4607,103:6630773,36190889:0,0,0 -r4607,163:6630773,36190889:0,633439,102891 -g4607,103:7941493,36190889 -g4607,103:7941493,36190889 -g4607,103:11218989,36190889 -k4607,104:15437194,36190889:3022828 -k4607,104:18460021,36190889:3022827 -) -(4607,105:6630773,37055969:11829248,530548,102891 -h4607,104:6630773,37055969:0,0,0 -r4607,163:6630773,37055969:0,633439,102891 -g4607,104:7941493,37055969 -g4607,104:7941493,37055969 -g4607,104:12878759,37055969 -k4607,105:16058019,37055969:2402003 -k4607,105:18460021,37055969:2402002 -) -(4607,106:6630773,37921049:11829248,530548,102891 -h4607,105:6630773,37921049:0,0,0 -r4607,163:6630773,37921049:0,633439,102891 -g4607,105:7941493,37921049 -g4607,105:7941493,37921049 -g4607,105:12878759,37921049 -k4607,106:16267079,37921049:2192943 -k4607,106:18460021,37921049:2192942 -) -(4607,107:6630773,38786129:11829248,530548,141066 -h4607,106:6630773,38786129:0,0,0 -r4607,163:6630773,38786129:0,671614,141066 -g4607,106:7941493,38786129 -g4607,106:7941493,38786129 -g4607,106:11633931,38786129 -g4607,106:13202207,38786129 -g4607,106:14770483,38786129 -g4607,106:16338759,38786129 -k4607,106:18460021,38786129:838723 -) -(4607,107:9252213,39651209:9207808,485622,11795 -k4607,107:14453806,39651209:4006216 -k4607,107:18460021,39651209:4006215 -) -(4607,108:6630773,40516289:11829248,530548,102891 -h4607,107:6630773,40516289:0,0,0 -r4607,163:6630773,40516289:0,633439,102891 -g4607,107:7941493,40516289 -g4607,107:7941493,40516289 -g4607,107:11633931,40516289 -g4607,107:13202207,40516289 -k4607,108:16418972,40516289:2041049 -k4607,108:18460021,40516289:2041049 -) -(4607,109:6630773,41381369:11829248,530548,102891 -h4607,108:6630773,41381369:0,0,0 -r4607,163:6630773,41381369:0,633439,102891 -g4607,108:7941493,41381369 -g4607,108:7941493,41381369 -g4607,108:10804046,41381369 -k4607,109:15229722,41381369:3230299 -k4607,109:18460021,41381369:3230299 -) -(4607,110:6630773,42246449:11829248,530548,102891 -h4607,109:6630773,42246449:0,0,0 -r4607,163:6630773,42246449:0,633439,102891 -g4607,109:7941493,42246449 -g4607,109:7941493,42246449 -g4607,109:11633931,42246449 -k4607,110:15644665,42246449:2815357 -k4607,110:18460021,42246449:2815356 -) -(4607,111:6630773,43111529:11829248,530548,102891 -h4607,110:6630773,43111529:0,0,0 -r4607,163:6630773,43111529:0,633439,102891 -g4607,110:7941493,43111529 -g4607,110:7941493,43111529 -g4607,110:13293701,43111529 -g4607,110:14861977,43111529 -g4607,110:16430253,43111529 -k4607,111:18042826,43111529:417196 -k4607,111:18460021,43111529:417195 -) -(4607,112:6630773,43976609:11829248,530548,102891 -h4607,111:6630773,43976609:0,0,0 -r4607,163:6630773,43976609:0,633439,102891 -g4607,111:7941493,43976609 -g4607,111:7941493,43976609 -g4607,111:12463816,43976609 -k4607,112:16059607,43976609:2400414 -k4607,112:18460021,43976609:2400414 -) -(4607,113:6630773,44841689:11829248,530548,102891 -h4607,112:6630773,44841689:0,0,0 -r4607,163:6630773,44841689:0,633439,102891 -g4607,112:7941493,44841689 -g4607,112:7941493,44841689 -g4607,112:10389104,44841689 -g4607,112:11957380,44841689 -k4607,113:15796559,44841689:2663463 -k4607,113:18460021,44841689:2663462 -) -(4607,114:6630773,45706769:11829248,530548,102891 -h4607,113:6630773,45706769:0,0,0 -r4607,163:6630773,45706769:0,633439,102891 -g4607,113:7941493,45706769 -g4607,113:7941493,45706769 -g4607,113:12878759,45706769 -k4607,114:16267079,45706769:2192943 -k4607,114:18460021,45706769:2192942 -) -] -k4607,163:19606901,45706769:1146880 -r4607,163:19606901,45706769:0,40240840,132808 -k4607,163:20753781,45706769:1146880 -[4607,163:20753781,45706769:11829248,40108032,132808 -(4607,115:20753781,6254097:11829248,530548,102891 -h4607,114:20753781,6254097:0,0,0 -r4607,163:20753781,6254097:0,633439,102891 -g4607,114:22064501,6254097 -g4607,114:22064501,6254097 -g4607,114:27001767,6254097 -k4607,115:30390087,6254097:2192943 -k4607,115:32583029,6254097:2192942 -) -(4607,116:20753781,7131088:11829248,530548,132808 -h4607,115:20753781,7131088:0,0,0 -r4607,163:20753781,7131088:0,663356,132808 -g4607,115:22064501,7131088 -g4607,115:22064501,7131088 -g4607,115:25756939,7131088 -k4607,116:29757842,7131088:2825187 -k4607,116:32583029,7131088:2825187 -) -(4607,117:20753781,8008078:11829248,530548,102891 -h4607,116:20753781,8008078:0,0,0 -r4607,163:20753781,8008078:0,633439,102891 -g4607,116:22064501,8008078 -g4607,116:22064501,8008078 -g4607,116:24927054,8008078 -k4607,117:29342900,8008078:3240130 -k4607,117:32583029,8008078:3240129 -) -(4607,118:20753781,8885069:11829248,530548,102891 -h4607,117:20753781,8885069:0,0,0 -r4607,163:20753781,8885069:0,633439,102891 -g4607,117:22064501,8885069 -g4607,117:22064501,8885069 -g4607,117:27416709,8885069 -k4607,118:30587727,8885069:1995302 -k4607,118:32583029,8885069:1995302 -) -(4607,119:20753781,9762060:11829248,530548,132808 -h4607,118:20753781,9762060:0,0,0 -r4607,163:20753781,9762060:0,663356,132808 -g4607,118:22064501,9762060 -g4607,118:22064501,9762060 -g4607,118:28661536,9762060 -k4607,119:31219971,9762060:1363058 -k4607,119:32583029,9762060:1363058 -) -(4607,120:20753781,10639051:11829248,530548,132808 -h4607,119:20753781,10639051:0,0,0 -r4607,163:20753781,10639051:0,663356,132808 -g4607,119:22064501,10639051 -g4607,119:22064501,10639051 -g4607,119:25756939,10639051 -k4607,120:29767673,10639051:2815357 -k4607,120:32583029,10639051:2815356 -) -(4607,121:20753781,11516041:11829248,530548,102891 -h4607,120:20753781,11516041:0,0,0 -r4607,163:20753781,11516041:0,633439,102891 -g4607,120:22064501,11516041 -g4607,120:22064501,11516041 -g4607,120:23682227,11516041 -g4607,120:24852044,11516041 -g4607,120:26021861,11516041 -g4607,120:27191678,11516041 -g4607,120:28361495,11516041 -k4607,121:31069951,11516041:1513079 -k4607,121:32583029,11516041:1513078 -) -(4607,122:20753781,12393032:11829248,530548,102891 -h4607,121:20753781,12393032:0,0,0 -r4607,163:20753781,12393032:0,633439,102891 -g4607,121:22064501,12393032 -g4607,121:22064501,12393032 -g4607,121:24512112,12393032 -g4607,121:25681929,12393032 -g4607,121:26851746,12393032 -k4607,122:30305246,12393032:2277784 -k4607,122:32583029,12393032:2277783 -) -(4607,123:20753781,13270023:11829248,530548,102891 -h4607,122:20753781,13270023:0,0,0 -r4607,163:20753781,13270023:0,633439,102891 -g4607,122:22064501,13270023 -g4607,122:22064501,13270023 -g4607,122:25341997,13270023 -g4607,122:26511814,13270023 -k4607,123:30145110,13270023:2437919 -k4607,123:32583029,13270023:2437919 -) -(4607,124:20753781,14147014:11829248,530548,141066 -h4607,123:20753781,14147014:0,0,0 -r4607,163:20753781,14147014:0,671614,141066 -g4607,123:22064501,14147014 -g4607,123:22064501,14147014 -g4607,123:26171882,14147014 -k4607,124:29775915,14147014:2807115 -k4607,124:32583029,14147014:2807114 -) -(4607,125:20753781,15024004:11829248,530548,102891 -h4607,124:20753781,15024004:0,0,0 -r4607,163:20753781,15024004:0,633439,102891 -g4607,124:22064501,15024004 -g4607,124:22064501,15024004 -g4607,124:27001767,15024004 -k4607,125:30181027,15024004:2402003 -k4607,125:32583029,15024004:2402002 -) -(4607,126:20753781,15900995:11829248,530548,102891 -h4607,125:20753781,15900995:0,0,0 -r4607,163:20753781,15900995:0,633439,102891 -g4607,125:22064501,15900995 -g4607,125:22064501,15900995 -g4607,125:26586824,15900995 -k4607,126:30182615,15900995:2400414 -k4607,126:32583029,15900995:2400414 -) -(4607,127:20753781,16777986:11829248,530548,102891 -h4607,126:20753781,16777986:0,0,0 -r4607,163:20753781,16777986:0,633439,102891 -g4607,126:22064501,16777986 -g4607,126:22064501,16777986 -g4607,126:25341997,16777986 -g4607,126:26511814,16777986 -g4607,126:27681631,16777986 -g4607,126:29249907,16777986 -g4607,126:30818183,16777986 -k4607,127:32298295,16777986:284735 -k4607,127:32583029,16777986:284734 -) -(4607,128:20753781,17654976:11829248,538806,102891 -h4607,127:20753781,17654976:0,0,0 -r4607,163:20753781,17654976:0,641697,102891 -g4607,127:22064501,17654976 -g4607,127:22064501,17654976 -g4607,127:24927054,17654976 -g4607,127:26495330,17654976 -g4607,127:28063606,17654976 -k4607,128:30921006,17654976:1662023 -k4607,128:32583029,17654976:1662023 -) -(4607,129:20753781,18531967:11829248,538806,102891 -h4607,128:20753781,18531967:0,0,0 -r4607,163:20753781,18531967:0,641697,102891 -g4607,128:22064501,18531967 -g4607,128:22064501,18531967 -g4607,128:28246594,18531967 -k4607,129:31002670,18531967:1580360 -k4607,129:32583029,18531967:1580359 -) -(4607,130:20753781,19408958:11829248,530548,141066 -h4607,129:20753781,19408958:0,0,0 -r4607,163:20753781,19408958:0,671614,141066 -g4607,129:22064501,19408958 -g4607,129:22064501,19408958 -g4607,129:26171882,19408958 -k4607,130:29975144,19408958:2607885 -k4607,130:32583029,19408958:2607885 -) -(4607,131:20753781,20285949:11829248,530548,102891 -h4607,130:20753781,20285949:0,0,0 -r4607,163:20753781,20285949:0,633439,102891 -g4607,130:22064501,20285949 -g4607,130:22064501,20285949 -g4607,130:26586824,20285949 -k4607,131:30182615,20285949:2400414 -k4607,131:32583029,20285949:2400414 -) -(4607,132:20753781,21162939:11829248,530548,102891 -h4607,131:20753781,21162939:0,0,0 -r4607,163:20753781,21162939:0,633439,102891 -g4607,131:22064501,21162939 -g4607,131:22064501,21162939 -g4607,131:26586824,21162939 -g4607,131:27756641,21162939 -g4607,131:29324917,21162939 -k4607,132:31551662,21162939:1031368 -k4607,132:32583029,21162939:1031367 -) -(4607,133:20753781,22039930:11829248,530548,102891 -h4607,132:20753781,22039930:0,0,0 -r4607,163:20753781,22039930:0,633439,102891 -g4607,132:22064501,22039930 -g4607,132:22064501,22039930 -g4607,132:27416709,22039930 -g4607,132:28984985,22039930 -k4607,133:31381696,22039930:1201334 -k4607,133:32583029,22039930:1201333 -) -(4607,134:20753781,22916921:11829248,530548,102891 -h4607,133:20753781,22916921:0,0,0 -r4607,163:20753781,22916921:0,633439,102891 -g4607,133:22064501,22916921 -g4607,133:22064501,22916921 -g4607,133:25756939,22916921 -k4607,134:29767673,22916921:2815357 -k4607,134:32583029,22916921:2815356 -) -(4607,135:20753781,23793912:11829248,530548,102891 -h4607,134:20753781,23793912:0,0,0 -r4607,163:20753781,23793912:0,633439,102891 -g4607,134:22064501,23793912 -g4607,134:22064501,23793912 -g4607,134:26171882,23793912 -k4607,135:29975144,23793912:2607885 -k4607,135:32583029,23793912:2607885 -) -(4607,136:20753781,24670902:11829248,530548,102891 -h4607,135:20753781,24670902:0,0,0 -r4607,163:20753781,24670902:0,633439,102891 -g4607,135:22064501,24670902 -g4607,135:22064501,24670902 -g4607,135:26171882,24670902 -k4607,136:29975144,24670902:2607885 -k4607,136:32583029,24670902:2607885 -) -(4607,137:20753781,25547893:11829248,530548,102891 -h4607,136:20753781,25547893:0,0,0 -r4607,163:20753781,25547893:0,633439,102891 -g4607,136:22064501,25547893 -g4607,136:22064501,25547893 -g4607,136:27001767,25547893 -k4607,137:30390087,25547893:2192943 -k4607,137:32583029,25547893:2192942 -) -(4607,138:20753781,26424884:11829248,530548,102891 -h4607,137:20753781,26424884:0,0,0 -r4607,163:20753781,26424884:0,633439,102891 -g4607,137:22064501,26424884 -g4607,137:22064501,26424884 -g4607,137:26586824,26424884 -k4607,138:30172785,26424884:2410245 -k4607,138:32583029,26424884:2410244 -) -(4607,139:20753781,27301874:11829248,530548,102891 -h4607,138:20753781,27301874:0,0,0 -r4607,163:20753781,27301874:0,633439,102891 -g4607,138:22064501,27301874 -g4607,138:22064501,27301874 -g4607,138:27831652,27301874 -k4607,139:30805029,27301874:1778000 -k4607,139:32583029,27301874:1778000 -) -(4607,140:20753781,28178865:11829248,530548,102891 -h4607,139:20753781,28178865:0,0,0 -r4607,163:20753781,28178865:0,633439,102891 -g4607,139:22064501,28178865 -g4607,139:22064501,28178865 -g4607,139:28661536,28178865 -k4607,140:31219971,28178865:1363058 -k4607,140:32583029,28178865:1363058 -) -(4607,141:20753781,29055856:11829248,530548,132808 -h4607,140:20753781,29055856:0,0,0 -r4607,163:20753781,29055856:0,663356,132808 -g4607,140:22064501,29055856 -g4607,140:22064501,29055856 -g4607,140:27416709,29055856 -k4607,141:30597558,29055856:1985472 -k4607,141:32583029,29055856:1985471 -) -(4607,142:20753781,29932847:11829248,530548,102891 -h4607,141:20753781,29932847:0,0,0 -r4607,163:20753781,29932847:0,633439,102891 -g4607,141:22064501,29932847 -g4607,141:22064501,29932847 -g4607,141:27001767,29932847 -k4607,142:30390087,29932847:2192943 -k4607,142:32583029,29932847:2192942 -) -(4607,143:20753781,30809837:11829248,530548,102891 -h4607,142:20753781,30809837:0,0,0 -r4607,163:20753781,30809837:0,633439,102891 -g4607,142:22064501,30809837 -g4607,142:22064501,30809837 -g4607,142:27001767,30809837 -k4607,143:30380256,30809837:2202773 -k4607,143:32583029,30809837:2202773 -) -(4607,144:20753781,31686828:11829248,485622,102891 -h4607,143:20753781,31686828:0,0,0 -r4607,163:20753781,31686828:0,588513,102891 -g4607,143:22064501,31686828 -g4607,143:22064501,31686828 -g4607,143:28661536,31686828 -k4607,144:31219971,31686828:1363058 -k4607,144:32583029,31686828:1363058 -) -(4607,145:20753781,32563819:11829248,530548,102891 -h4607,144:20753781,32563819:0,0,0 -r4607,163:20753781,32563819:0,633439,102891 -g4607,144:22064501,32563819 -g4607,144:22064501,32563819 -g4607,144:29491421,32563819 -g4607,144:31059697,32563819 -k4607,145:32419052,32563819:163978 -k4607,145:32583029,32563819:163977 -) -(4607,146:20753781,33440810:11829248,538806,132808 -h4607,145:20753781,33440810:0,0,0 -r4607,163:20753781,33440810:0,671614,132808 -g4607,145:22064501,33440810 -g4607,145:22064501,33440810 -g4607,145:27416709,33440810 -g4607,145:28984985,33440810 -k4607,146:31381696,33440810:1201334 -k4607,146:32583029,33440810:1201333 -) -(4607,147:20753781,34317800:11829248,530548,132808 -h4607,146:20753781,34317800:0,0,0 -r4607,163:20753781,34317800:0,663356,132808 -g4607,146:22064501,34317800 -g4607,146:22064501,34317800 -g4607,146:27831652,34317800 -k4607,147:31556727,34317800:1026303 -k4607,147:32583029,34317800:1026302 -) -(4607,148:20753781,35194791:11829248,530548,102891 -h4607,147:20753781,35194791:0,0,0 -r4607,163:20753781,35194791:0,633439,102891 -g4607,147:22064501,35194791 -g4607,147:22064501,35194791 -g4607,147:24512112,35194791 -k4607,148:29896957,35194791:2686073 -k4607,148:32583029,35194791:2686072 -) -(4607,149:20753781,36071782:11829248,530548,102891 -h4607,148:20753781,36071782:0,0,0 -r4607,163:20753781,36071782:0,633439,102891 -g4607,148:22064501,36071782 -g4607,148:22064501,36071782 -g4607,148:26586824,36071782 -g4607,148:28155100,36071782 -k4607,149:30956923,36071782:1626107 -k4607,149:32583029,36071782:1626106 -) -(4607,150:20753781,36948772:11829248,530548,102891 -h4607,149:20753781,36948772:0,0,0 -r4607,163:20753781,36948772:0,633439,102891 -g4607,149:22064501,36948772 -g4607,149:22064501,36948772 -g4607,149:24512112,36948772 -k4607,150:28946030,36948772:3637000 -k4607,150:32583029,36948772:3636999 -) -(4607,151:20753781,37825763:11829248,530548,102891 -h4607,150:20753781,37825763:0,0,0 -r4607,163:20753781,37825763:0,633439,102891 -g4607,150:22064501,37825763 -g4607,150:22064501,37825763 -g4607,150:25756939,37825763 -k4607,151:29767673,37825763:2815357 -k4607,151:32583029,37825763:2815356 -) -(4607,152:20753781,38702754:11829248,530548,102891 -h4607,151:20753781,38702754:0,0,0 -r4607,163:20753781,38702754:0,633439,102891 -g4607,151:22064501,38702754 -g4607,151:22064501,38702754 -g4607,151:25756939,38702754 -k4607,152:29767673,38702754:2815357 -k4607,152:32583029,38702754:2815356 -) -(4607,153:20753781,39579745:11829248,530548,132808 -h4607,152:20753781,39579745:0,0,0 -r4607,163:20753781,39579745:0,663356,132808 -g4607,152:22064501,39579745 -g4607,152:22064501,39579745 -g4607,152:26171882,39579745 -k4607,153:29975144,39579745:2607885 -k4607,153:32583029,39579745:2607885 -) -(4607,154:20753781,40456735:11829248,530548,102891 -h4607,153:20753781,40456735:0,0,0 -r4607,163:20753781,40456735:0,633439,102891 -g4607,153:22064501,40456735 -g4607,153:22064501,40456735 -g4607,153:25756939,40456735 -k4607,154:29767673,40456735:2815357 -k4607,154:32583029,40456735:2815356 -) -(4607,155:20753781,41333726:11829248,530548,102891 -h4607,154:20753781,41333726:0,0,0 -r4607,163:20753781,41333726:0,633439,102891 -g4607,154:22064501,41333726 -g4607,154:22064501,41333726 -g4607,154:25756939,41333726 -k4607,155:29757842,41333726:2825187 -k4607,155:32583029,41333726:2825187 -) -(4607,156:20753781,42210717:11829248,530548,102891 -h4607,155:20753781,42210717:0,0,0 -r4607,163:20753781,42210717:0,633439,102891 -g4607,155:22064501,42210717 -g4607,155:22064501,42210717 -g4607,155:24927054,42210717 -k4607,156:29352730,42210717:3230299 -k4607,156:32583029,42210717:3230299 -) -(4607,158:20753781,43087708:11829248,538806,102891 -h4607,156:20753781,43087708:0,0,0 -r4607,163:20753781,43087708:0,641697,102891 -g4607,156:22064501,43087708 -g4607,156:22064501,43087708 -g4607,156:27416709,43087708 -g4607,156:29711124,43087708 -g4607,156:31279400,43087708 -k4607,156:32583029,43087708:21090 -) -(4607,158:23375221,43952788:9207808,485622,102891 -g4607,156:24923836,43952788 -g4607,156:26492112,43952788 -g4607,156:28060388,43952788 -k4607,158:30919397,43952788:1663632 -k4607,158:32583029,43952788:1663632 -) -(4607,159:20753781,44829778:11829248,530548,102891 -h4607,158:20753781,44829778:0,0,0 -r4607,163:20753781,44829778:0,633439,102891 -g4607,158:22064501,44829778 -g4607,158:22064501,44829778 -g4607,158:25756939,44829778 -k4607,159:29767673,44829778:2815357 -k4607,159:32583029,44829778:2815356 -) -(4607,160:20753781,45706769:11829248,530548,132808 -h4607,159:20753781,45706769:0,0,0 -r4607,163:20753781,45706769:0,663356,132808 -g4607,159:22064501,45706769 -g4607,159:22064501,45706769 -g4607,159:25756939,45706769 -k4607,160:29767673,45706769:2815357 -k4607,160:32583029,45706769:2815356 -) -] -(4607,163:32583029,45706769:0,355205,126483 -h4607,163:32583029,45706769:420741,355205,126483 -k4607,163:32583029,45706769:-420741 -) -) -] -(4607,163:32583029,45706769:0,0,0 -g4607,163:32583029,45706769 -) -) -] -(4607,163:6630773,47279633:25952256,0,0 -h4607,163:6630773,47279633:25952256,0,0 -) -] -(4607,163:4262630,4025873:0,0,0 -[4607,163:-473656,4025873:0,0,0 -(4607,163:-473656,-710413:0,0,0 -(4607,163:-473656,-710413:0,0,0 -g4607,163:-473656,-710413 -) -g4607,163:-473656,-710413 -) -] -) -] -!30334 -}455 +[4611,162:3078558,4812305:0,0,0 +(4611,162:3078558,49800853:0,16384,2228224 +g4611,162:29030814,49800853 +g4611,162:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,162:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,162:37855564,49800853:1179648,16384,0 +) +) +k4611,162:3078556,49800853:-34777008 +) +] +g4611,162:6630773,4812305 +k4611,162:23083588,4812305:15257438 +g4611,162:24981510,4812305 +g4611,162:25796777,4812305 +g4611,162:26410194,4812305 +g4611,162:28753761,4812305 +g4611,162:29709275,4812305 +) +) +] +[4611,162:6630773,45706769:25952256,40108032,0 +(4611,162:6630773,45706769:25952256,40108032,0 +(4611,162:6630773,45706769:0,0,0 +g4611,162:6630773,45706769 +) +[4611,162:6630773,45706769:25952256,40108032,0 +(4611,162:6630773,45706769:25952256,40108032,126483 +[4611,162:6630773,45706769:11829248,40108032,102891 +(4611,69:6630773,6254097:11829248,485622,102891 +h4611,68:6630773,6254097:0,0,0 +r4611,162:6630773,6254097:0,588513,102891 +g4611,68:7941493,6254097 +g4611,68:7941493,6254097 +g4611,68:10804046,6254097 +k4611,69:15229722,6254097:3230299 +k4611,69:18460021,6254097:3230299 +) +(4611,70:6630773,7119177:11829248,530548,132808 +h4611,69:6630773,7119177:0,0,0 +r4611,162:6630773,7119177:0,663356,132808 +g4611,69:7941493,7119177 +g4611,69:7941493,7119177 +g4611,69:9559219,7119177 +k4611,70:14607309,7119177:3852713 +k4611,70:18460021,7119177:3852712 +) +(4611,71:6630773,7984257:11829248,485622,141066 +h4611,70:6630773,7984257:0,0,0 +r4611,162:6630773,7984257:0,626688,141066 +g4611,70:7941493,7984257 +g4611,70:7941493,7984257 +g4611,70:10804046,7984257 +k4611,71:15229722,7984257:3230299 +k4611,71:18460021,7984257:3230299 +) +(4611,72:6630773,8849337:11829248,530548,132808 +h4611,71:6630773,8849337:0,0,0 +r4611,162:6630773,8849337:0,663356,132808 +g4611,71:7941493,8849337 +g4611,71:7941493,8849337 +g4611,71:12048874,8849337 +g4611,71:13617150,8849337 +k4611,72:16636274,8849337:1823747 +k4611,72:18460021,8849337:1823747 +) +(4611,76:6630773,10238489:11829248,513147,7863 +h4611,75:6630773,10238489:0,0,0 +g4611,75:9855799,10238489 +g4611,75:11246473,10238489 +k4611,76:16245560,10238489:2214462 +k4611,76:18460021,10238489:2214461 +) +(4611,77:6630773,11103569:11829248,530548,102891 +h4611,76:6630773,11103569:0,0,0 +r4611,162:6630773,11103569:0,633439,102891 +g4611,76:7941493,11103569 +g4611,76:7941493,11103569 +g4611,76:9559219,11103569 +k4611,77:14607309,11103569:3852713 +k4611,77:18460021,11103569:3852712 +) +(4611,78:6630773,11968649:11829248,530548,102891 +h4611,77:6630773,11968649:0,0,0 +r4611,162:6630773,11968649:0,633439,102891 +g4611,77:7941493,11968649 +g4611,77:7941493,11968649 +g4611,77:10389104,11968649 +g4611,77:11558921,11968649 +k4611,78:15398100,11968649:3061922 +k4611,78:18460021,11968649:3061921 +) +(4611,79:6630773,12833729:11829248,538806,102891 +h4611,78:6630773,12833729:0,0,0 +r4611,162:6630773,12833729:0,641697,102891 +g4611,78:7941493,12833729 +g4611,78:7941493,12833729 +g4611,78:10389104,12833729 +k4611,79:15022251,12833729:3437770 +k4611,79:18460021,12833729:3437770 +) +(4611,80:6630773,13698809:11829248,530548,102891 +h4611,79:6630773,13698809:0,0,0 +r4611,162:6630773,13698809:0,633439,102891 +g4611,79:7941493,13698809 +g4611,79:7941493,13698809 +g4611,79:10389104,13698809 +g4611,79:11957380,13698809 +g4611,79:13525656,13698809 +g4611,79:15093932,13698809 +g4611,79:16662208,13698809 +k4611,79:18460021,13698809:515274 +) +(4611,80:9252213,14563889:9207808,485622,102891 +g4611,79:10820489,14563889 +k4611,80:15237944,14563889:3222078 +k4611,80:18460021,14563889:3222077 +) +(4611,81:6630773,15428969:11829248,538806,102891 +h4611,80:6630773,15428969:0,0,0 +r4611,162:6630773,15428969:0,641697,102891 +g4611,80:7941493,15428969 +g4611,80:7941493,15428969 +g4611,80:13708644,15428969 +k4611,81:16682021,15428969:1778000 +k4611,81:18460021,15428969:1778000 +) +(4611,82:6630773,16294049:11829248,538806,102891 +h4611,81:6630773,16294049:0,0,0 +r4611,162:6630773,16294049:0,641697,102891 +g4611,81:7941493,16294049 +g4611,81:7941493,16294049 +g4611,81:13293701,16294049 +g4611,81:14861977,16294049 +g4611,81:16430253,16294049 +k4611,82:18042826,16294049:417196 +k4611,82:18460021,16294049:417195 +) +(4611,83:6630773,17159129:11829248,530548,141066 +h4611,82:6630773,17159129:0,0,0 +r4611,162:6630773,17159129:0,671614,141066 +g4611,82:7941493,17159129 +g4611,82:7941493,17159129 +g4611,82:12878759,17159129 +g4611,82:14447035,17159129 +g4611,82:16015311,17159129 +k4611,83:17835355,17159129:624667 +k4611,83:18460021,17159129:624666 +) +(4611,84:6630773,18024209:11829248,530548,102891 +h4611,83:6630773,18024209:0,0,0 +r4611,162:6630773,18024209:0,633439,102891 +g4611,83:7941493,18024209 +g4611,83:7941493,18024209 +g4611,83:10389104,18024209 +g4611,83:11957380,18024209 +g4611,83:13525656,18024209 +k4611,84:16580697,18024209:1879325 +k4611,84:18460021,18024209:1879324 +) +(4611,85:6630773,18889289:11829248,530548,102891 +h4611,84:6630773,18889289:0,0,0 +r4611,162:6630773,18889289:0,633439,102891 +g4611,84:7941493,18889289 +g4611,84:7941493,18889289 +g4611,84:10389104,18889289 +g4611,84:11558921,18889289 +k4611,85:15398100,18889289:3061922 +k4611,85:18460021,18889289:3061921 +) +(4611,86:6630773,19754369:11829248,530548,102891 +h4611,85:6630773,19754369:0,0,0 +r4611,162:6630773,19754369:0,633439,102891 +g4611,85:7941493,19754369 +g4611,85:7941493,19754369 +g4611,85:12463816,19754369 +k4611,86:16811305,19754369:1648717 +k4611,86:18460021,19754369:1648716 +) +(4611,87:6630773,20619449:11829248,530548,102891 +h4611,86:6630773,20619449:0,0,0 +r4611,162:6630773,20619449:0,633439,102891 +g4611,86:7941493,20619449 +g4611,86:7941493,20619449 +g4611,86:16198298,20619449 +k4611,86:18460021,20619449:979184 +) +(4611,87:9252213,21484529:9207808,485622,11795 +k4611,87:14453806,21484529:4006216 +k4611,87:18460021,21484529:4006215 +) +(4611,89:6630773,22349609:11829248,530548,102891 +h4611,87:6630773,22349609:0,0,0 +r4611,162:6630773,22349609:0,633439,102891 +g4611,87:7941493,22349609 +g4611,87:7941493,22349609 +g4611,87:11218989,22349609 +g4611,87:12787265,22349609 +g4611,87:14355541,22349609 +g4611,87:15923817,22349609 +k4611,87:18460021,22349609:1253665 +) +(4611,89:9252213,23214689:9207808,485622,102891 +g4611,87:10820489,23214689 +g4611,87:12388765,23214689 +g4611,87:13957041,23214689 +g4611,87:15525317,23214689 +g4611,88:17093593,23214689 +k4611,88:18460021,23214689:83889 +) +(4611,89:9252213,24079769:9207808,485622,11795 +k4611,89:14453806,24079769:4006216 +k4611,89:18460021,24079769:4006215 +) +(4611,90:6630773,24944849:11829248,530548,141066 +h4611,89:6630773,24944849:0,0,0 +r4611,162:6630773,24944849:0,671614,141066 +g4611,89:7941493,24944849 +g4611,89:7941493,24944849 +g4611,89:12878759,24944849 +k4611,90:16267079,24944849:2192943 +k4611,90:18460021,24944849:2192942 +) +(4611,91:6630773,25809929:11829248,530548,132808 +h4611,90:6630773,25809929:0,0,0 +r4611,162:6630773,25809929:0,663356,132808 +g4611,90:7941493,25809929 +g4611,90:7941493,25809929 +g4611,90:10389104,25809929 +g4611,90:11558921,25809929 +k4611,91:15407930,25809929:3052091 +k4611,91:18460021,25809929:3052091 +) +(4611,92:6630773,26675009:11829248,530548,102891 +h4611,91:6630773,26675009:0,0,0 +r4611,162:6630773,26675009:0,633439,102891 +g4611,91:7941493,26675009 +g4611,91:7941493,26675009 +g4611,91:10389104,26675009 +g4611,91:11957380,26675009 +k4611,92:15806389,26675009:2653632 +k4611,92:18460021,26675009:2653632 +) +(4611,93:6630773,27540089:11829248,530548,132808 +h4611,92:6630773,27540089:0,0,0 +r4611,162:6630773,27540089:0,663356,132808 +g4611,92:7941493,27540089 +g4611,92:7941493,27540089 +g4611,92:11633931,27540089 +g4611,92:12803748,27540089 +k4611,93:16030344,27540089:2429678 +k4611,93:18460021,27540089:2429677 +) +(4611,94:6630773,28405169:11829248,530548,132808 +h4611,93:6630773,28405169:0,0,0 +r4611,162:6630773,28405169:0,663356,132808 +g4611,93:7941493,28405169 +g4611,93:7941493,28405169 +g4611,93:11218989,28405169 +g4611,93:12787265,28405169 +k4611,94:16211501,28405169:2248520 +k4611,94:18460021,28405169:2248520 +) +(4611,95:6630773,29270249:11829248,530548,141066 +h4611,94:6630773,29270249:0,0,0 +r4611,162:6630773,29270249:0,671614,141066 +g4611,94:7941493,29270249 +g4611,94:7941493,29270249 +g4611,94:12048874,29270249 +k4611,95:15852136,29270249:2607885 +k4611,95:18460021,29270249:2607885 +) +(4611,96:6630773,30135329:11829248,530548,132808 +h4611,95:6630773,30135329:0,0,0 +r4611,162:6630773,30135329:0,663356,132808 +g4611,95:7941493,30135329 +g4611,95:7941493,30135329 +g4611,95:11218989,30135329 +k4611,96:15237964,30135329:3222057 +k4611,96:18460021,30135329:3222057 +) +(4611,97:6630773,31000409:11829248,530548,102891 +h4611,96:6630773,31000409:0,0,0 +r4611,162:6630773,31000409:0,633439,102891 +g4611,96:7941493,31000409 +g4611,96:7941493,31000409 +g4611,96:14123586,31000409 +g4611,96:15293403,31000409 +k4611,97:17275171,31000409:1184850 +k4611,97:18460021,31000409:1184850 +) +(4611,98:6630773,31865489:11829248,538806,102891 +h4611,97:6630773,31865489:0,0,0 +r4611,162:6630773,31865489:0,641697,102891 +g4611,97:7941493,31865489 +g4611,97:7941493,31865489 +g4611,97:14538528,31865489 +k4611,98:17096963,31865489:1363058 +k4611,98:18460021,31865489:1363058 +) +(4611,99:6630773,32730569:11829248,538806,102891 +h4611,98:6630773,32730569:0,0,0 +r4611,162:6630773,32730569:0,641697,102891 +g4611,98:7941493,32730569 +g4611,98:7941493,32730569 +g4611,98:13293701,32730569 +g4611,98:14861977,32730569 +k4611,99:17248857,32730569:1211164 +k4611,99:18460021,32730569:1211164 +) +(4611,100:6630773,33595649:11829248,530548,141066 +h4611,99:6630773,33595649:0,0,0 +r4611,162:6630773,33595649:0,671614,141066 +g4611,99:7941493,33595649 +g4611,99:7941493,33595649 +g4611,99:13293701,33595649 +k4611,100:16275320,33595649:2184701 +k4611,100:18460021,33595649:2184701 +) +(4611,101:6630773,34460729:11829248,530548,141066 +h4611,100:6630773,34460729:0,0,0 +r4611,162:6630773,34460729:0,671614,141066 +g4611,100:7941493,34460729 +g4611,100:7941493,34460729 +g4611,100:13293701,34460729 +k4611,101:16265490,34460729:2194532 +k4611,101:18460021,34460729:2194531 +) +(4611,102:6630773,35325809:11829248,530548,102891 +h4611,101:6630773,35325809:0,0,0 +r4611,162:6630773,35325809:0,633439,102891 +g4611,101:7941493,35325809 +g4611,101:7941493,35325809 +g4611,101:12878759,35325809 +k4611,102:16058019,35325809:2402003 +k4611,102:18460021,35325809:2402002 +) +(4611,103:6630773,36190889:11829248,530548,102891 +h4611,102:6630773,36190889:0,0,0 +r4611,162:6630773,36190889:0,633439,102891 +g4611,102:7941493,36190889 +g4611,102:7941493,36190889 +g4611,102:13293701,36190889 +g4611,102:14463518,36190889 +g4611,102:15633335,36190889 +k4611,103:17445137,36190889:1014884 +k4611,103:18460021,36190889:1014884 +) +(4611,104:6630773,37055969:11829248,530548,102891 +h4611,103:6630773,37055969:0,0,0 +r4611,162:6630773,37055969:0,633439,102891 +g4611,103:7941493,37055969 +g4611,103:7941493,37055969 +g4611,103:11218989,37055969 +k4611,104:15437194,37055969:3022828 +k4611,104:18460021,37055969:3022827 +) +(4611,105:6630773,37921049:11829248,530548,102891 +h4611,104:6630773,37921049:0,0,0 +r4611,162:6630773,37921049:0,633439,102891 +g4611,104:7941493,37921049 +g4611,104:7941493,37921049 +g4611,104:12878759,37921049 +k4611,105:16058019,37921049:2402003 +k4611,105:18460021,37921049:2402002 +) +(4611,106:6630773,38786129:11829248,530548,102891 +h4611,105:6630773,38786129:0,0,0 +r4611,162:6630773,38786129:0,633439,102891 +g4611,105:7941493,38786129 +g4611,105:7941493,38786129 +g4611,105:12878759,38786129 +k4611,106:16267079,38786129:2192943 +k4611,106:18460021,38786129:2192942 +) +(4611,107:6630773,39651209:11829248,530548,141066 +h4611,106:6630773,39651209:0,0,0 +r4611,162:6630773,39651209:0,671614,141066 +g4611,106:7941493,39651209 +g4611,106:7941493,39651209 +g4611,106:11633931,39651209 +g4611,106:13202207,39651209 +g4611,106:14770483,39651209 +g4611,106:16338759,39651209 +k4611,106:18460021,39651209:838723 +) +(4611,107:9252213,40516289:9207808,485622,11795 +k4611,107:14453806,40516289:4006216 +k4611,107:18460021,40516289:4006215 +) +(4611,108:6630773,41381369:11829248,530548,102891 +h4611,107:6630773,41381369:0,0,0 +r4611,162:6630773,41381369:0,633439,102891 +g4611,107:7941493,41381369 +g4611,107:7941493,41381369 +g4611,107:11633931,41381369 +g4611,107:13202207,41381369 +k4611,108:16418972,41381369:2041049 +k4611,108:18460021,41381369:2041049 +) +(4611,109:6630773,42246449:11829248,530548,102891 +h4611,108:6630773,42246449:0,0,0 +r4611,162:6630773,42246449:0,633439,102891 +g4611,108:7941493,42246449 +g4611,108:7941493,42246449 +g4611,108:10804046,42246449 +k4611,109:15229722,42246449:3230299 +k4611,109:18460021,42246449:3230299 +) +(4611,110:6630773,43111529:11829248,530548,102891 +h4611,109:6630773,43111529:0,0,0 +r4611,162:6630773,43111529:0,633439,102891 +g4611,109:7941493,43111529 +g4611,109:7941493,43111529 +g4611,109:11633931,43111529 +k4611,110:15644665,43111529:2815357 +k4611,110:18460021,43111529:2815356 +) +(4611,111:6630773,43976609:11829248,530548,102891 +h4611,110:6630773,43976609:0,0,0 +r4611,162:6630773,43976609:0,633439,102891 +g4611,110:7941493,43976609 +g4611,110:7941493,43976609 +g4611,110:13293701,43976609 +g4611,110:14861977,43976609 +g4611,110:16430253,43976609 +k4611,111:18042826,43976609:417196 +k4611,111:18460021,43976609:417195 +) +(4611,112:6630773,44841689:11829248,530548,102891 +h4611,111:6630773,44841689:0,0,0 +r4611,162:6630773,44841689:0,633439,102891 +g4611,111:7941493,44841689 +g4611,111:7941493,44841689 +g4611,111:12463816,44841689 +k4611,112:16059607,44841689:2400414 +k4611,112:18460021,44841689:2400414 +) +(4611,113:6630773,45706769:11829248,530548,102891 +h4611,112:6630773,45706769:0,0,0 +r4611,162:6630773,45706769:0,633439,102891 +g4611,112:7941493,45706769 +g4611,112:7941493,45706769 +g4611,112:10389104,45706769 +g4611,112:11957380,45706769 +k4611,113:15796559,45706769:2663463 +k4611,113:18460021,45706769:2663462 +) +] +k4611,162:19606901,45706769:1146880 +r4611,162:19606901,45706769:0,40234515,126483 +k4611,162:20753781,45706769:1146880 +[4611,162:20753781,45706769:11829248,40108032,102891 +(4611,114:20753781,6254097:11829248,530548,102891 +h4611,113:20753781,6254097:0,0,0 +r4611,162:20753781,6254097:0,633439,102891 +g4611,113:22064501,6254097 +g4611,113:22064501,6254097 +g4611,113:27001767,6254097 +k4611,114:30390087,6254097:2192943 +k4611,114:32583029,6254097:2192942 +) +(4611,115:20753781,7131088:11829248,530548,102891 +h4611,114:20753781,7131088:0,0,0 +r4611,162:20753781,7131088:0,633439,102891 +g4611,114:22064501,7131088 +g4611,114:22064501,7131088 +g4611,114:27001767,7131088 +k4611,115:30390087,7131088:2192943 +k4611,115:32583029,7131088:2192942 +) +(4611,116:20753781,8008078:11829248,530548,132808 +h4611,115:20753781,8008078:0,0,0 +r4611,162:20753781,8008078:0,663356,132808 +g4611,115:22064501,8008078 +g4611,115:22064501,8008078 +g4611,115:25756939,8008078 +k4611,116:29757842,8008078:2825187 +k4611,116:32583029,8008078:2825187 +) +(4611,117:20753781,8885069:11829248,530548,102891 +h4611,116:20753781,8885069:0,0,0 +r4611,162:20753781,8885069:0,633439,102891 +g4611,116:22064501,8885069 +g4611,116:22064501,8885069 +g4611,116:24927054,8885069 +k4611,117:29342900,8885069:3240130 +k4611,117:32583029,8885069:3240129 +) +(4611,118:20753781,9762060:11829248,530548,102891 +h4611,117:20753781,9762060:0,0,0 +r4611,162:20753781,9762060:0,633439,102891 +g4611,117:22064501,9762060 +g4611,117:22064501,9762060 +g4611,117:27416709,9762060 +k4611,118:30587727,9762060:1995302 +k4611,118:32583029,9762060:1995302 +) +(4611,119:20753781,10639051:11829248,530548,132808 +h4611,118:20753781,10639051:0,0,0 +r4611,162:20753781,10639051:0,663356,132808 +g4611,118:22064501,10639051 +g4611,118:22064501,10639051 +g4611,118:28661536,10639051 +k4611,119:31219971,10639051:1363058 +k4611,119:32583029,10639051:1363058 +) +(4611,120:20753781,11516041:11829248,530548,132808 +h4611,119:20753781,11516041:0,0,0 +r4611,162:20753781,11516041:0,663356,132808 +g4611,119:22064501,11516041 +g4611,119:22064501,11516041 +g4611,119:25756939,11516041 +k4611,120:29767673,11516041:2815357 +k4611,120:32583029,11516041:2815356 +) +(4611,121:20753781,12393032:11829248,530548,102891 +h4611,120:20753781,12393032:0,0,0 +r4611,162:20753781,12393032:0,633439,102891 +g4611,120:22064501,12393032 +g4611,120:22064501,12393032 +g4611,120:23682227,12393032 +g4611,120:24852044,12393032 +g4611,120:26021861,12393032 +g4611,120:27191678,12393032 +g4611,120:28361495,12393032 +k4611,121:31069951,12393032:1513079 +k4611,121:32583029,12393032:1513078 +) +(4611,122:20753781,13270023:11829248,530548,102891 +h4611,121:20753781,13270023:0,0,0 +r4611,162:20753781,13270023:0,633439,102891 +g4611,121:22064501,13270023 +g4611,121:22064501,13270023 +g4611,121:24512112,13270023 +g4611,121:25681929,13270023 +g4611,121:26851746,13270023 +k4611,122:30305246,13270023:2277784 +k4611,122:32583029,13270023:2277783 +) +(4611,123:20753781,14147014:11829248,530548,102891 +h4611,122:20753781,14147014:0,0,0 +r4611,162:20753781,14147014:0,633439,102891 +g4611,122:22064501,14147014 +g4611,122:22064501,14147014 +g4611,122:25341997,14147014 +g4611,122:26511814,14147014 +k4611,123:30145110,14147014:2437919 +k4611,123:32583029,14147014:2437919 +) +(4611,124:20753781,15024004:11829248,530548,141066 +h4611,123:20753781,15024004:0,0,0 +r4611,162:20753781,15024004:0,671614,141066 +g4611,123:22064501,15024004 +g4611,123:22064501,15024004 +g4611,123:26171882,15024004 +k4611,124:29775915,15024004:2807115 +k4611,124:32583029,15024004:2807114 +) +(4611,125:20753781,15900995:11829248,530548,102891 +h4611,124:20753781,15900995:0,0,0 +r4611,162:20753781,15900995:0,633439,102891 +g4611,124:22064501,15900995 +g4611,124:22064501,15900995 +g4611,124:27001767,15900995 +k4611,125:30181027,15900995:2402003 +k4611,125:32583029,15900995:2402002 +) +(4611,126:20753781,16777986:11829248,530548,102891 +h4611,125:20753781,16777986:0,0,0 +r4611,162:20753781,16777986:0,633439,102891 +g4611,125:22064501,16777986 +g4611,125:22064501,16777986 +g4611,125:26586824,16777986 +k4611,126:30182615,16777986:2400414 +k4611,126:32583029,16777986:2400414 +) +(4611,127:20753781,17654976:11829248,530548,102891 +h4611,126:20753781,17654976:0,0,0 +r4611,162:20753781,17654976:0,633439,102891 +g4611,126:22064501,17654976 +g4611,126:22064501,17654976 +g4611,126:25341997,17654976 +g4611,126:26511814,17654976 +g4611,126:27681631,17654976 +g4611,126:29249907,17654976 +g4611,126:30818183,17654976 +k4611,127:32298295,17654976:284735 +k4611,127:32583029,17654976:284734 +) +(4611,128:20753781,18531967:11829248,538806,102891 +h4611,127:20753781,18531967:0,0,0 +r4611,162:20753781,18531967:0,641697,102891 +g4611,127:22064501,18531967 +g4611,127:22064501,18531967 +g4611,127:24927054,18531967 +g4611,127:26495330,18531967 +g4611,127:28063606,18531967 +k4611,128:30921006,18531967:1662023 +k4611,128:32583029,18531967:1662023 +) +(4611,129:20753781,19408958:11829248,538806,102891 +h4611,128:20753781,19408958:0,0,0 +r4611,162:20753781,19408958:0,641697,102891 +g4611,128:22064501,19408958 +g4611,128:22064501,19408958 +g4611,128:28246594,19408958 +k4611,129:31002670,19408958:1580360 +k4611,129:32583029,19408958:1580359 +) +(4611,130:20753781,20285949:11829248,530548,141066 +h4611,129:20753781,20285949:0,0,0 +r4611,162:20753781,20285949:0,671614,141066 +g4611,129:22064501,20285949 +g4611,129:22064501,20285949 +g4611,129:26171882,20285949 +k4611,130:29975144,20285949:2607885 +k4611,130:32583029,20285949:2607885 +) +(4611,131:20753781,21162939:11829248,530548,102891 +h4611,130:20753781,21162939:0,0,0 +r4611,162:20753781,21162939:0,633439,102891 +g4611,130:22064501,21162939 +g4611,130:22064501,21162939 +g4611,130:26586824,21162939 +k4611,131:30182615,21162939:2400414 +k4611,131:32583029,21162939:2400414 +) +(4611,132:20753781,22039930:11829248,530548,102891 +h4611,131:20753781,22039930:0,0,0 +r4611,162:20753781,22039930:0,633439,102891 +g4611,131:22064501,22039930 +g4611,131:22064501,22039930 +g4611,131:26586824,22039930 +g4611,131:27756641,22039930 +g4611,131:29324917,22039930 +k4611,132:31551662,22039930:1031368 +k4611,132:32583029,22039930:1031367 +) +(4611,133:20753781,22916921:11829248,530548,102891 +h4611,132:20753781,22916921:0,0,0 +r4611,162:20753781,22916921:0,633439,102891 +g4611,132:22064501,22916921 +g4611,132:22064501,22916921 +g4611,132:27416709,22916921 +g4611,132:28984985,22916921 +k4611,133:31381696,22916921:1201334 +k4611,133:32583029,22916921:1201333 +) +(4611,134:20753781,23793912:11829248,530548,102891 +h4611,133:20753781,23793912:0,0,0 +r4611,162:20753781,23793912:0,633439,102891 +g4611,133:22064501,23793912 +g4611,133:22064501,23793912 +g4611,133:25756939,23793912 +k4611,134:29767673,23793912:2815357 +k4611,134:32583029,23793912:2815356 +) +(4611,135:20753781,24670902:11829248,530548,102891 +h4611,134:20753781,24670902:0,0,0 +r4611,162:20753781,24670902:0,633439,102891 +g4611,134:22064501,24670902 +g4611,134:22064501,24670902 +g4611,134:26171882,24670902 +k4611,135:29975144,24670902:2607885 +k4611,135:32583029,24670902:2607885 +) +(4611,136:20753781,25547893:11829248,530548,102891 +h4611,135:20753781,25547893:0,0,0 +r4611,162:20753781,25547893:0,633439,102891 +g4611,135:22064501,25547893 +g4611,135:22064501,25547893 +g4611,135:26171882,25547893 +k4611,136:29975144,25547893:2607885 +k4611,136:32583029,25547893:2607885 +) +(4611,137:20753781,26424884:11829248,530548,102891 +h4611,136:20753781,26424884:0,0,0 +r4611,162:20753781,26424884:0,633439,102891 +g4611,136:22064501,26424884 +g4611,136:22064501,26424884 +g4611,136:27001767,26424884 +k4611,137:30390087,26424884:2192943 +k4611,137:32583029,26424884:2192942 +) +(4611,138:20753781,27301874:11829248,530548,102891 +h4611,137:20753781,27301874:0,0,0 +r4611,162:20753781,27301874:0,633439,102891 +g4611,137:22064501,27301874 +g4611,137:22064501,27301874 +g4611,137:26586824,27301874 +k4611,138:30172785,27301874:2410245 +k4611,138:32583029,27301874:2410244 +) +(4611,139:20753781,28178865:11829248,530548,102891 +h4611,138:20753781,28178865:0,0,0 +r4611,162:20753781,28178865:0,633439,102891 +g4611,138:22064501,28178865 +g4611,138:22064501,28178865 +g4611,138:27831652,28178865 +k4611,139:30805029,28178865:1778000 +k4611,139:32583029,28178865:1778000 +) +(4611,140:20753781,29055856:11829248,530548,102891 +h4611,139:20753781,29055856:0,0,0 +r4611,162:20753781,29055856:0,633439,102891 +g4611,139:22064501,29055856 +g4611,139:22064501,29055856 +g4611,139:28661536,29055856 +k4611,140:31219971,29055856:1363058 +k4611,140:32583029,29055856:1363058 +) +(4611,141:20753781,29932847:11829248,530548,132808 +h4611,140:20753781,29932847:0,0,0 +r4611,162:20753781,29932847:0,663356,132808 +g4611,140:22064501,29932847 +g4611,140:22064501,29932847 +g4611,140:27416709,29932847 +k4611,141:30597558,29932847:1985472 +k4611,141:32583029,29932847:1985471 +) +(4611,142:20753781,30809837:11829248,530548,102891 +h4611,141:20753781,30809837:0,0,0 +r4611,162:20753781,30809837:0,633439,102891 +g4611,141:22064501,30809837 +g4611,141:22064501,30809837 +g4611,141:27001767,30809837 +k4611,142:30390087,30809837:2192943 +k4611,142:32583029,30809837:2192942 +) +(4611,143:20753781,31686828:11829248,530548,102891 +h4611,142:20753781,31686828:0,0,0 +r4611,162:20753781,31686828:0,633439,102891 +g4611,142:22064501,31686828 +g4611,142:22064501,31686828 +g4611,142:27001767,31686828 +k4611,143:30380256,31686828:2202773 +k4611,143:32583029,31686828:2202773 +) +(4611,144:20753781,32563819:11829248,485622,102891 +h4611,143:20753781,32563819:0,0,0 +r4611,162:20753781,32563819:0,588513,102891 +g4611,143:22064501,32563819 +g4611,143:22064501,32563819 +g4611,143:28661536,32563819 +k4611,144:31219971,32563819:1363058 +k4611,144:32583029,32563819:1363058 +) +(4611,145:20753781,33440810:11829248,530548,102891 +h4611,144:20753781,33440810:0,0,0 +r4611,162:20753781,33440810:0,633439,102891 +g4611,144:22064501,33440810 +g4611,144:22064501,33440810 +g4611,144:29491421,33440810 +g4611,144:31059697,33440810 +k4611,145:32419052,33440810:163978 +k4611,145:32583029,33440810:163977 +) +(4611,146:20753781,34317800:11829248,538806,132808 +h4611,145:20753781,34317800:0,0,0 +r4611,162:20753781,34317800:0,671614,132808 +g4611,145:22064501,34317800 +g4611,145:22064501,34317800 +g4611,145:27416709,34317800 +g4611,145:28984985,34317800 +k4611,146:31381696,34317800:1201334 +k4611,146:32583029,34317800:1201333 +) +(4611,147:20753781,35194791:11829248,530548,132808 +h4611,146:20753781,35194791:0,0,0 +r4611,162:20753781,35194791:0,663356,132808 +g4611,146:22064501,35194791 +g4611,146:22064501,35194791 +g4611,146:27831652,35194791 +k4611,147:31556727,35194791:1026303 +k4611,147:32583029,35194791:1026302 +) +(4611,148:20753781,36071782:11829248,530548,102891 +h4611,147:20753781,36071782:0,0,0 +r4611,162:20753781,36071782:0,633439,102891 +g4611,147:22064501,36071782 +g4611,147:22064501,36071782 +g4611,147:24512112,36071782 +k4611,148:29896957,36071782:2686073 +k4611,148:32583029,36071782:2686072 +) +(4611,149:20753781,36948772:11829248,530548,102891 +h4611,148:20753781,36948772:0,0,0 +r4611,162:20753781,36948772:0,633439,102891 +g4611,148:22064501,36948772 +g4611,148:22064501,36948772 +g4611,148:26586824,36948772 +g4611,148:28155100,36948772 +k4611,149:30956923,36948772:1626107 +k4611,149:32583029,36948772:1626106 +) +(4611,150:20753781,37825763:11829248,530548,102891 +h4611,149:20753781,37825763:0,0,0 +r4611,162:20753781,37825763:0,633439,102891 +g4611,149:22064501,37825763 +g4611,149:22064501,37825763 +g4611,149:24512112,37825763 +k4611,150:28946030,37825763:3637000 +k4611,150:32583029,37825763:3636999 +) +(4611,151:20753781,38702754:11829248,530548,102891 +h4611,150:20753781,38702754:0,0,0 +r4611,162:20753781,38702754:0,633439,102891 +g4611,150:22064501,38702754 +g4611,150:22064501,38702754 +g4611,150:25756939,38702754 +k4611,151:29767673,38702754:2815357 +k4611,151:32583029,38702754:2815356 +) +(4611,152:20753781,39579745:11829248,530548,102891 +h4611,151:20753781,39579745:0,0,0 +r4611,162:20753781,39579745:0,633439,102891 +g4611,151:22064501,39579745 +g4611,151:22064501,39579745 +g4611,151:25756939,39579745 +k4611,152:29767673,39579745:2815357 +k4611,152:32583029,39579745:2815356 +) +(4611,153:20753781,40456735:11829248,530548,132808 +h4611,152:20753781,40456735:0,0,0 +r4611,162:20753781,40456735:0,663356,132808 +g4611,152:22064501,40456735 +g4611,152:22064501,40456735 +g4611,152:26171882,40456735 +k4611,153:29975144,40456735:2607885 +k4611,153:32583029,40456735:2607885 +) +(4611,154:20753781,41333726:11829248,530548,102891 +h4611,153:20753781,41333726:0,0,0 +r4611,162:20753781,41333726:0,633439,102891 +g4611,153:22064501,41333726 +g4611,153:22064501,41333726 +g4611,153:25756939,41333726 +k4611,154:29767673,41333726:2815357 +k4611,154:32583029,41333726:2815356 +) +(4611,155:20753781,42210717:11829248,530548,102891 +h4611,154:20753781,42210717:0,0,0 +r4611,162:20753781,42210717:0,633439,102891 +g4611,154:22064501,42210717 +g4611,154:22064501,42210717 +g4611,154:25756939,42210717 +k4611,155:29757842,42210717:2825187 +k4611,155:32583029,42210717:2825187 +) +(4611,156:20753781,43087708:11829248,530548,102891 +h4611,155:20753781,43087708:0,0,0 +r4611,162:20753781,43087708:0,633439,102891 +g4611,155:22064501,43087708 +g4611,155:22064501,43087708 +g4611,155:24927054,43087708 +k4611,156:29352730,43087708:3230299 +k4611,156:32583029,43087708:3230299 +) +(4611,158:20753781,43964698:11829248,538806,102891 +h4611,156:20753781,43964698:0,0,0 +r4611,162:20753781,43964698:0,641697,102891 +g4611,156:22064501,43964698 +g4611,156:22064501,43964698 +g4611,156:27416709,43964698 +g4611,156:29711124,43964698 +g4611,156:31279400,43964698 +k4611,156:32583029,43964698:21090 +) +(4611,158:23375221,44829778:9207808,485622,102891 +g4611,156:24923836,44829778 +g4611,156:26492112,44829778 +g4611,156:28060388,44829778 +k4611,158:30919397,44829778:1663632 +k4611,158:32583029,44829778:1663632 +) +(4611,159:20753781,45706769:11829248,530548,102891 +h4611,158:20753781,45706769:0,0,0 +r4611,162:20753781,45706769:0,633439,102891 +g4611,158:22064501,45706769 +g4611,158:22064501,45706769 +g4611,158:25756939,45706769 +k4611,159:29767673,45706769:2815357 +k4611,159:32583029,45706769:2815356 +) +] +(4611,162:32583029,45706769:0,355205,126483 +h4611,162:32583029,45706769:420741,355205,126483 +k4611,162:32583029,45706769:-420741 +) +) +] +(4611,162:32583029,45706769:0,0,0 +g4611,162:32583029,45706769 +) +) +] +(4611,162:6630773,47279633:25952256,0,0 +h4611,162:6630773,47279633:25952256,0,0 +) +] +(4611,162:4262630,4025873:0,0,0 +[4611,162:-473656,4025873:0,0,0 +(4611,162:-473656,-710413:0,0,0 +(4611,162:-473656,-710413:0,0,0 +g4611,162:-473656,-710413 +) +g4611,162:-473656,-710413 +) +] +) +] +!30325 +}456 !12 -{456 -[4607,250:4262630,47279633:28320399,43253760,0 -(4607,250:4262630,4025873:0,0,0 -[4607,250:-473656,4025873:0,0,0 -(4607,250:-473656,-710413:0,0,0 -(4607,250:-473656,-644877:0,0,0 -k4607,250:-473656,-644877:-65536 +{457 +[4611,249:4262630,47279633:28320399,43253760,0 +(4611,249:4262630,4025873:0,0,0 +[4611,249:-473656,4025873:0,0,0 +(4611,249:-473656,-710413:0,0,0 +(4611,249:-473656,-644877:0,0,0 +k4611,249:-473656,-644877:-65536 ) -(4607,250:-473656,4736287:0,0,0 -k4607,250:-473656,4736287:5209943 +(4611,249:-473656,4736287:0,0,0 +k4611,249:-473656,4736287:5209943 ) -g4607,250:-473656,-710413 +g4611,249:-473656,-710413 ) ] ) -[4607,250:6630773,47279633:25952256,43253760,0 -[4607,250:6630773,4812305:25952256,786432,0 -(4607,250:6630773,4812305:25952256,513147,134348 -(4607,250:6630773,4812305:25952256,513147,134348 -g4607,250:3078558,4812305 -[4607,250:3078558,4812305:0,0,0 -(4607,250:3078558,2439708:0,1703936,0 -k4607,250:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,250:2537886,2439708:1179648,16384,0 +[4611,249:6630773,47279633:25952256,43253760,0 +[4611,249:6630773,4812305:25952256,786432,0 +(4611,249:6630773,4812305:25952256,513147,134348 +(4611,249:6630773,4812305:25952256,513147,134348 +g4611,249:3078558,4812305 +[4611,249:3078558,4812305:0,0,0 +(4611,249:3078558,2439708:0,1703936,0 +k4611,249:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,249:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,250:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,249:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,250:3078558,4812305:0,0,0 -(4607,250:3078558,2439708:0,1703936,0 -g4607,250:29030814,2439708 -g4607,250:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,250:36151628,1915420:16384,1179648,0 +[4611,249:3078558,4812305:0,0,0 +(4611,249:3078558,2439708:0,1703936,0 +g4611,249:29030814,2439708 +g4611,249:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,249:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,250:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,249:37855564,2439708:1179648,16384,0 ) ) -k4607,250:3078556,2439708:-34777008 +k4611,249:3078556,2439708:-34777008 ) ] -[4607,250:3078558,4812305:0,0,0 -(4607,250:3078558,49800853:0,16384,2228224 -k4607,250:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,250:2537886,49800853:1179648,16384,0 +[4611,249:3078558,4812305:0,0,0 +(4611,249:3078558,49800853:0,16384,2228224 +k4611,249:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,249:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,250:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,249:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,250:3078558,4812305:0,0,0 -(4607,250:3078558,49800853:0,16384,2228224 -g4607,250:29030814,49800853 -g4607,250:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,250:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,250:37855564,49800853:1179648,16384,0 -) -) -k4607,250:3078556,49800853:-34777008 -) -] -g4607,250:6630773,4812305 -g4607,250:6630773,4812305 -g4607,250:8528695,4812305 -g4607,250:9343962,4812305 -g4607,250:9957379,4812305 -g4607,250:12300946,4812305 -g4607,250:13256460,4812305 -g4607,250:16329443,4812305 -k4607,250:31387652,4812305:15058209 -) -) -] -[4607,250:6630773,45706769:25952256,40108032,0 -(4607,250:6630773,45706769:25952256,40108032,0 -(4607,250:6630773,45706769:0,0,0 -g4607,250:6630773,45706769 -) -[4607,250:6630773,45706769:25952256,40108032,0 -(4607,250:6630773,45706769:25952256,40108032,141066 -[4607,250:6630773,45706769:11829248,40108032,102891 -(4607,161:6630773,6254097:11829248,530548,132808 -h4607,160:6630773,6254097:0,0,0 -r4607,250:6630773,6254097:0,663356,132808 -g4607,160:7941493,6254097 -g4607,160:7941493,6254097 -g4607,160:12878759,6254097 -k4607,161:16267079,6254097:2192943 -k4607,161:18460021,6254097:2192942 -) -(4607,162:6630773,7130823:11829248,530548,132808 -h4607,161:6630773,7130823:0,0,0 -r4607,250:6630773,7130823:0,663356,132808 -g4607,161:7941493,7130823 -g4607,161:7941493,7130823 -g4607,161:12048874,7130823 -g4607,161:13617150,7130823 -k4607,162:16626444,7130823:1833578 -k4607,162:18460021,7130823:1833577 -) -(4607,163:6630773,8007549:11829248,530548,102891 -h4607,162:6630773,8007549:0,0,0 -r4607,250:6630773,8007549:0,633439,102891 -g4607,162:7941493,8007549 -g4607,162:7941493,8007549 -g4607,162:11633931,8007549 -k4607,163:15644665,8007549:2815357 -k4607,163:18460021,8007549:2815356 -) -(4607,164:6630773,8884275:11829248,538806,102891 -h4607,163:6630773,8884275:0,0,0 -r4607,250:6630773,8884275:0,641697,102891 -g4607,163:7941493,8884275 -g4607,163:7941493,8884275 -g4607,163:9974162,8884275 -k4607,164:14814780,8884275:3645241 -k4607,164:18460021,8884275:3645241 -) -(4607,165:6630773,9761001:11829248,530548,141066 -h4607,164:6630773,9761001:0,0,0 -r4607,250:6630773,9761001:0,671614,141066 -g4607,164:7941493,9761001 -g4607,164:7941493,9761001 -g4607,164:10804046,9761001 -k4607,165:15219892,9761001:3240130 -k4607,165:18460021,9761001:3240129 -) -(4607,166:6630773,10637727:11829248,530548,141066 -h4607,165:6630773,10637727:0,0,0 -r4607,250:6630773,10637727:0,671614,141066 -g4607,165:7941493,10637727 -g4607,165:7941493,10637727 -g4607,165:10804046,10637727 -k4607,166:15030493,10637727:3429529 -k4607,166:18460021,10637727:3429528 -) -(4607,167:6630773,11514453:11829248,538806,102891 -h4607,166:6630773,11514453:0,0,0 -r4607,250:6630773,11514453:0,641697,102891 -g4607,166:7941493,11514453 -g4607,166:7941493,11514453 -g4607,166:10804046,11514453 -g4607,166:12372322,11514453 -k4607,167:16013860,11514453:2446161 -k4607,167:18460021,11514453:2446161 -) -(4607,168:6630773,12391179:11829248,538806,102891 -h4607,167:6630773,12391179:0,0,0 -r4607,250:6630773,12391179:0,641697,102891 -g4607,167:7941493,12391179 -g4607,167:7941493,12391179 -g4607,167:12048874,12391179 -k4607,168:15852136,12391179:2607885 -k4607,168:18460021,12391179:2607885 -) -(4607,169:6630773,13267905:11829248,530548,102891 -h4607,168:6630773,13267905:0,0,0 -r4607,250:6630773,13267905:0,633439,102891 -g4607,168:7941493,13267905 -g4607,168:7941493,13267905 -g4607,168:10389104,13267905 -g4607,168:11558921,13267905 -g4607,168:12728738,13267905 -g4607,168:14297014,13267905 -g4607,168:15865290,13267905 -k4607,169:17760344,13267905:699677 -k4607,169:18460021,13267905:699677 -) -(4607,170:6630773,14144631:11829248,530548,102891 -h4607,169:6630773,14144631:0,0,0 -r4607,250:6630773,14144631:0,633439,102891 -g4607,169:7941493,14144631 -g4607,169:7941493,14144631 -g4607,169:11218989,14144631 -k4607,170:15437194,14144631:3022828 -k4607,170:18460021,14144631:3022827 -) -(4607,171:6630773,15021357:11829248,530548,102891 -h4607,170:6630773,15021357:0,0,0 -r4607,250:6630773,15021357:0,633439,102891 -g4607,170:7941493,15021357 -g4607,170:7941493,15021357 -g4607,170:12463816,15021357 -g4607,170:14032092,15021357 -k4607,171:16843745,15021357:1616276 -k4607,171:18460021,15021357:1616276 -) -(4607,172:6630773,15898083:11829248,530548,102891 -h4607,171:6630773,15898083:0,0,0 -r4607,250:6630773,15898083:0,633439,102891 -g4607,171:7941493,15898083 -g4607,171:7941493,15898083 -g4607,171:13293701,15898083 -k4607,172:16474550,15898083:1985472 -k4607,172:18460021,15898083:1985471 -) -(4607,173:6630773,16774810:11829248,530548,102891 -h4607,172:6630773,16774810:0,0,0 -r4607,250:6630773,16774810:0,633439,102891 -g4607,172:7941493,16774810 -g4607,172:7941493,16774810 -g4607,172:12048874,16774810 -k4607,173:15852136,16774810:2607885 -k4607,173:18460021,16774810:2607885 -) -(4607,174:6630773,17651536:11829248,530548,102891 -h4607,173:6630773,17651536:0,0,0 -r4607,250:6630773,17651536:0,633439,102891 -g4607,173:7941493,17651536 -g4607,173:7941493,17651536 -g4607,173:9974162,17651536 -k4607,174:14814780,17651536:3645241 -k4607,174:18460021,17651536:3645241 -) -(4607,175:6630773,18528262:11829248,530548,102891 -h4607,174:6630773,18528262:0,0,0 -r4607,250:6630773,18528262:0,633439,102891 -g4607,174:7941493,18528262 -g4607,174:7941493,18528262 -g4607,174:11633931,18528262 -k4607,175:15644665,18528262:2815357 -k4607,175:18460021,18528262:2815356 -) -(4607,176:6630773,19404988:11829248,530548,102891 -h4607,175:6630773,19404988:0,0,0 -r4607,250:6630773,19404988:0,633439,102891 -g4607,175:7941493,19404988 -g4607,175:7941493,19404988 -g4607,175:12878759,19404988 -k4607,176:16267079,19404988:2192943 -k4607,176:18460021,19404988:2192942 -) -(4607,177:6630773,20281714:11829248,530548,132808 -h4607,176:6630773,20281714:0,0,0 -r4607,250:6630773,20281714:0,663356,132808 -g4607,176:7941493,20281714 -g4607,176:7941493,20281714 -g4607,176:12048874,20281714 -k4607,177:15852136,20281714:2607885 -k4607,177:18460021,20281714:2607885 -) -(4607,178:6630773,21158440:11829248,530548,102891 -h4607,177:6630773,21158440:0,0,0 -r4607,250:6630773,21158440:0,633439,102891 -g4607,177:7941493,21158440 -g4607,177:7941493,21158440 -g4607,177:11218989,21158440 -k4607,178:15437194,21158440:3022828 -k4607,178:18460021,21158440:3022827 -) -(4607,179:6630773,22035166:11829248,530548,102891 -h4607,178:6630773,22035166:0,0,0 -r4607,250:6630773,22035166:0,633439,102891 -g4607,178:7941493,22035166 -g4607,178:7941493,22035166 -g4607,178:12048874,22035166 -g4607,178:13617150,22035166 -k4607,179:16626444,22035166:1833578 -k4607,179:18460021,22035166:1833577 -) -(4607,180:6630773,22911892:11829248,530548,102891 -h4607,179:6630773,22911892:0,0,0 -r4607,250:6630773,22911892:0,633439,102891 -g4607,179:7941493,22911892 -g4607,179:7941493,22911892 -g4607,179:11633931,22911892 -k4607,180:15435605,22911892:3024417 -k4607,180:18460021,22911892:3024416 -) -(4607,181:6630773,23788618:11829248,538806,102891 -h4607,180:6630773,23788618:0,0,0 -r4607,250:6630773,23788618:0,641697,102891 -g4607,180:7941493,23788618 -g4607,180:7941493,23788618 -g4607,180:14538528,23788618 -k4607,181:17096963,23788618:1363058 -k4607,181:18460021,23788618:1363058 -) -(4607,182:6630773,24665344:11829248,530548,132808 -h4607,181:6630773,24665344:0,0,0 -r4607,250:6630773,24665344:0,663356,132808 -g4607,181:7941493,24665344 -g4607,181:7941493,24665344 -g4607,181:11218989,24665344 -k4607,182:15437194,24665344:3022828 -k4607,182:18460021,24665344:3022827 -) -(4607,183:6630773,25542070:11829248,530548,132808 -h4607,182:6630773,25542070:0,0,0 -r4607,250:6630773,25542070:0,663356,132808 -g4607,182:7941493,25542070 -g4607,182:7941493,25542070 -g4607,182:10804046,25542070 -k4607,183:15219892,25542070:3240130 -k4607,183:18460021,25542070:3240129 -) -(4607,184:6630773,26418796:11829248,530548,102891 -h4607,183:6630773,26418796:0,0,0 -r4607,250:6630773,26418796:0,633439,102891 -g4607,183:7941493,26418796 -g4607,183:7941493,26418796 -g4607,183:9974162,26418796 -k4607,184:14814780,26418796:3645241 -k4607,184:18460021,26418796:3645241 -) -(4607,185:6630773,27295522:11829248,538806,102891 -h4607,184:6630773,27295522:0,0,0 -r4607,250:6630773,27295522:0,641697,102891 -g4607,184:7941493,27295522 -g4607,184:7941493,27295522 -g4607,184:11218989,27295522 -k4607,185:15437194,27295522:3022828 -k4607,185:18460021,27295522:3022827 -) -(4607,186:6630773,28172248:11829248,530548,132808 -h4607,185:6630773,28172248:0,0,0 -r4607,250:6630773,28172248:0,663356,132808 -g4607,185:7941493,28172248 -g4607,185:7941493,28172248 -g4607,185:13293701,28172248 -k4607,186:16265490,28172248:2194532 -k4607,186:18460021,28172248:2194531 -) -(4607,187:6630773,29048974:11829248,530548,102891 -h4607,186:6630773,29048974:0,0,0 -r4607,250:6630773,29048974:0,633439,102891 -g4607,186:7941493,29048974 -g4607,186:7941493,29048974 -g4607,186:10804046,29048974 -k4607,187:15219892,29048974:3240130 -k4607,187:18460021,29048974:3240129 -) -(4607,188:6630773,29925700:11829248,538806,102891 -h4607,187:6630773,29925700:0,0,0 -r4607,250:6630773,29925700:0,641697,102891 -g4607,187:7941493,29925700 -g4607,187:7941493,29925700 -g4607,187:12048874,29925700 -k4607,188:15842306,29925700:2617716 -k4607,188:18460021,29925700:2617715 -) -(4607,189:6630773,30802426:11829248,530548,102891 -h4607,188:6630773,30802426:0,0,0 -r4607,250:6630773,30802426:0,633439,102891 -g4607,188:7941493,30802426 -g4607,188:7941493,30802426 -g4607,188:12878759,30802426 -k4607,189:16257248,30802426:2202773 -k4607,189:18460021,30802426:2202773 -) -(4607,190:6630773,31679152:11829248,530548,102891 -h4607,189:6630773,31679152:0,0,0 -r4607,250:6630773,31679152:0,633439,102891 -g4607,189:7941493,31679152 -g4607,189:7941493,31679152 -g4607,189:13708644,31679152 -k4607,190:16672191,31679152:1787831 -k4607,190:18460021,31679152:1787830 -) -(4607,191:6630773,32555878:11829248,530548,102891 -h4607,190:6630773,32555878:0,0,0 -r4607,250:6630773,32555878:0,633439,102891 -g4607,190:7941493,32555878 -g4607,190:7941493,32555878 -g4607,190:14123586,32555878 -k4607,191:16879662,32555878:1580360 -k4607,191:18460021,32555878:1580359 -) -(4607,192:6630773,33432604:11829248,530548,132808 -h4607,191:6630773,33432604:0,0,0 -r4607,250:6630773,33432604:0,663356,132808 -g4607,191:7941493,33432604 -g4607,191:7941493,33432604 -g4607,191:10389104,33432604 -k4607,192:14823022,33432604:3637000 -k4607,192:18460021,33432604:3636999 -) -(4607,193:6630773,34309330:11829248,530548,132808 -h4607,192:6630773,34309330:0,0,0 -r4607,250:6630773,34309330:0,663356,132808 -g4607,192:7941493,34309330 -g4607,192:7941493,34309330 -g4607,192:14538528,34309330 -g4607,192:16106804,34309330 -k4607,193:17881101,34309330:578920 -k4607,193:18460021,34309330:578920 -) -(4607,194:6630773,35186056:11829248,530548,132808 -h4607,193:6630773,35186056:0,0,0 -r4607,250:6630773,35186056:0,663356,132808 -g4607,193:7941493,35186056 -g4607,193:7941493,35186056 -g4607,193:12878759,35186056 -k4607,194:16267079,35186056:2192943 -k4607,194:18460021,35186056:2192942 -) -(4607,195:6630773,36062783:11829248,530548,132808 -h4607,194:6630773,36062783:0,0,0 -r4607,250:6630773,36062783:0,663356,132808 -g4607,194:7941493,36062783 -g4607,194:7941493,36062783 -g4607,194:13293701,36062783 -k4607,195:17226247,36062783:1233774 -k4607,195:18460021,36062783:1233774 -) -(4607,196:6630773,36939509:11829248,538806,141066 -h4607,195:6630773,36939509:0,0,0 -r4607,250:6630773,36939509:0,679872,141066 -g4607,195:7941493,36939509 -g4607,195:7941493,36939509 -g4607,195:13293701,36939509 -g4607,195:14861977,36939509 -k4607,196:17258688,36939509:1201334 -k4607,196:18460021,36939509:1201333 -) -(4607,197:6630773,37816235:11829248,538806,132808 -h4607,196:6630773,37816235:0,0,0 -r4607,250:6630773,37816235:0,671614,132808 -g4607,196:7941493,37816235 -g4607,196:7941493,37816235 -g4607,196:13293701,37816235 -g4607,196:14861977,37816235 -g4607,196:16430253,37816235 -k4607,197:18042826,37816235:417196 -k4607,197:18460021,37816235:417195 -) -(4607,198:6630773,38692961:11829248,538806,102891 -h4607,197:6630773,38692961:0,0,0 -r4607,250:6630773,38692961:0,641697,102891 -g4607,197:7941493,38692961 -g4607,197:7941493,38692961 -g4607,197:11633931,38692961 -g4607,197:13928346,38692961 -k4607,198:16791872,38692961:1668149 -k4607,198:18460021,38692961:1668149 -) -(4607,199:6630773,39569687:11829248,538806,102891 -h4607,198:6630773,39569687:0,0,0 -r4607,250:6630773,39569687:0,641697,102891 -g4607,198:7941493,39569687 -g4607,198:7941493,39569687 -g4607,198:12878759,39569687 -k4607,199:16267079,39569687:2192943 -k4607,199:18460021,39569687:2192942 -) -(4607,200:6630773,40446413:11829248,538806,132808 -h4607,199:6630773,40446413:0,0,0 -r4607,250:6630773,40446413:0,671614,132808 -g4607,199:7941493,40446413 -g4607,199:7941493,40446413 -g4607,199:12878759,40446413 -k4607,200:16267079,40446413:2192943 -k4607,200:18460021,40446413:2192942 -) -(4607,201:6630773,41323139:11829248,538806,102891 -h4607,200:6630773,41323139:0,0,0 -r4607,250:6630773,41323139:0,641697,102891 -g4607,200:7941493,41323139 -g4607,200:7941493,41323139 -g4607,200:13708644,41323139 -k4607,201:16682021,41323139:1778000 -k4607,201:18460021,41323139:1778000 -) -(4607,202:6630773,42199865:11829248,538806,102891 -h4607,201:6630773,42199865:0,0,0 -r4607,250:6630773,42199865:0,641697,102891 -g4607,201:7941493,42199865 -g4607,201:7941493,42199865 -g4607,201:11633931,42199865 -k4607,202:15644665,42199865:2815357 -k4607,202:18460021,42199865:2815356 -) -(4607,203:6630773,43076591:11829248,538806,102891 -h4607,202:6630773,43076591:0,0,0 -r4607,250:6630773,43076591:0,641697,102891 -g4607,202:7941493,43076591 -g4607,202:7941493,43076591 -g4607,202:11633931,43076591 -g4607,202:13202207,43076591 -k4607,203:16418972,43076591:2041049 -k4607,203:18460021,43076591:2041049 -) -(4607,204:6630773,43953317:11829248,538806,102891 -h4607,203:6630773,43953317:0,0,0 -r4607,250:6630773,43953317:0,641697,102891 -g4607,203:7941493,43953317 -g4607,203:7941493,43953317 -g4607,203:14538528,43953317 -k4607,204:17087133,43953317:1372889 -k4607,204:18460021,43953317:1372888 -) -(4607,205:6630773,44830043:11829248,538806,102891 -h4607,204:6630773,44830043:0,0,0 -r4607,250:6630773,44830043:0,641697,102891 -g4607,204:7941493,44830043 -g4607,204:7941493,44830043 -g4607,204:10389104,44830043 -k4607,205:15012421,44830043:3447601 -k4607,205:18460021,44830043:3447600 -) -(4607,206:6630773,45706769:11829248,538806,102891 -h4607,205:6630773,45706769:0,0,0 -r4607,250:6630773,45706769:0,641697,102891 -g4607,205:7941493,45706769 -g4607,205:7941493,45706769 -g4607,205:11633931,45706769 -g4607,205:12803748,45706769 -g4607,205:13973565,45706769 -k4607,206:16814482,45706769:1645540 -k4607,206:18460021,45706769:1645539 -) -] -k4607,250:19606901,45706769:1146880 -r4607,250:19606901,45706769:0,40249098,141066 -k4607,250:20753781,45706769:1146880 -[4607,250:20753781,45706769:11829248,40108032,141066 -(4607,207:20753781,6254097:11829248,538806,102891 -h4607,206:20753781,6254097:0,0,0 -r4607,250:20753781,6254097:0,641697,102891 -g4607,206:22064501,6254097 -g4607,206:22064501,6254097 -g4607,206:26586824,6254097 -k4607,207:30182615,6254097:2400414 -k4607,207:32583029,6254097:2400414 -) -(4607,208:20753781,7132615:11829248,538806,141066 -h4607,207:20753781,7132615:0,0,0 -r4607,250:20753781,7132615:0,679872,141066 -g4607,207:22064501,7132615 -g4607,207:22064501,7132615 -g4607,207:27001767,7132615 -k4607,208:30380256,7132615:2202773 -k4607,208:32583029,7132615:2202773 -) -(4607,209:20753781,8011132:11829248,538806,102891 -h4607,208:20753781,8011132:0,0,0 -r4607,250:20753781,8011132:0,641697,102891 -g4607,208:22064501,8011132 -g4607,208:22064501,8011132 -g4607,208:26586824,8011132 -g4607,208:28155100,8011132 -k4607,209:30966753,8011132:1616276 -k4607,209:32583029,8011132:1616276 -) -(4607,210:20753781,8889650:11829248,530548,141066 -h4607,209:20753781,8889650:0,0,0 -r4607,250:20753781,8889650:0,671614,141066 -g4607,209:22064501,8889650 -g4607,209:22064501,8889650 -g4607,209:25756939,8889650 -k4607,210:29767673,8889650:2815357 -k4607,210:32583029,8889650:2815356 -) -(4607,211:20753781,9768168:11829248,530548,141066 -h4607,210:20753781,9768168:0,0,0 -r4607,250:20753781,9768168:0,671614,141066 -g4607,210:22064501,9768168 -g4607,210:22064501,9768168 -g4607,210:27831652,9768168 -g4607,210:29399928,9768168 -k4607,211:31589167,9768168:993862 -k4607,211:32583029,9768168:993862 -) -(4607,212:20753781,10646686:11829248,530548,141066 -h4607,211:20753781,10646686:0,0,0 -r4607,250:20753781,10646686:0,671614,141066 -g4607,211:22064501,10646686 -g4607,211:22064501,10646686 -g4607,211:27001767,10646686 -g4607,211:28570043,10646686 -k4607,212:31174225,10646686:1408805 -k4607,212:32583029,10646686:1408804 -) -(4607,213:20753781,11525203:11829248,530548,141066 -h4607,212:20753781,11525203:0,0,0 -r4607,250:20753781,11525203:0,671614,141066 -g4607,212:22064501,11525203 -g4607,212:22064501,11525203 -g4607,212:26586824,11525203 -g4607,212:28155100,11525203 -g4607,212:29723376,11525203 -g4607,212:31291652,11525203 -k4607,212:32583029,11525203:8838 -) -(4607,213:23375221,12390283:9207808,485622,11795 -k4607,213:28566983,12390283:4016046 -k4607,213:32583029,12390283:4016046 -) -(4607,214:20753781,13268801:11829248,530548,141066 -h4607,213:20753781,13268801:0,0,0 -r4607,250:20753781,13268801:0,671614,141066 -g4607,213:22064501,13268801 -g4607,213:22064501,13268801 -g4607,213:27416709,13268801 -k4607,214:30597558,13268801:1985472 -k4607,214:32583029,13268801:1985471 -) -(4607,215:20753781,14147319:11829248,530548,141066 -h4607,214:20753781,14147319:0,0,0 -r4607,250:20753781,14147319:0,671614,141066 -g4607,214:22064501,14147319 -g4607,214:22064501,14147319 -g4607,214:28246594,14147319 -k4607,215:31012500,14147319:1570529 -k4607,215:32583029,14147319:1570529 -) -(4607,216:20753781,15025837:11829248,530548,141066 -h4607,215:20753781,15025837:0,0,0 -r4607,250:20753781,15025837:0,671614,141066 -g4607,215:22064501,15025837 -g4607,215:22064501,15025837 -g4607,215:26586824,15025837 -g4607,215:28155100,15025837 -g4607,215:29723376,15025837 -g4607,215:31291652,15025837 -k4607,216:32535029,15025837:48000 -k4607,216:32583029,15025837:48000 -) -(4607,217:20753781,15904354:11829248,530548,141066 -h4607,216:20753781,15904354:0,0,0 -r4607,250:20753781,15904354:0,671614,141066 -g4607,216:22064501,15904354 -g4607,216:22064501,15904354 -g4607,216:27416709,15904354 -g4607,216:28984985,15904354 -k4607,217:31381696,15904354:1201334 -k4607,217:32583029,15904354:1201333 -) -(4607,218:20753781,16782872:11829248,530548,141066 -h4607,217:20753781,16782872:0,0,0 -r4607,250:20753781,16782872:0,671614,141066 -g4607,217:22064501,16782872 -g4607,217:22064501,16782872 -g4607,217:27416709,16782872 -k4607,218:30597558,16782872:1985472 -k4607,218:32583029,16782872:1985471 -) -(4607,219:20753781,17661390:11829248,530548,141066 -h4607,218:20753781,17661390:0,0,0 -r4607,250:20753781,17661390:0,671614,141066 -g4607,218:22064501,17661390 -g4607,218:22064501,17661390 -g4607,218:28246594,17661390 -k4607,219:31012500,17661390:1570529 -k4607,219:32583029,17661390:1570529 -) -(4607,220:20753781,18539908:11829248,530548,141066 -h4607,219:20753781,18539908:0,0,0 -r4607,250:20753781,18539908:0,671614,141066 -g4607,219:22064501,18539908 -g4607,219:22064501,18539908 -g4607,219:28661536,18539908 -g4607,219:30229812,18539908 -k4607,220:32004109,18539908:578920 -k4607,220:32583029,18539908:578920 -) -(4607,221:20753781,19418425:11829248,530548,141066 -h4607,220:20753781,19418425:0,0,0 -r4607,250:20753781,19418425:0,671614,141066 -g4607,220:22064501,19418425 -g4607,220:22064501,19418425 -g4607,220:27001767,19418425 -g4607,220:28570043,19418425 -g4607,220:30138319,19418425 -k4607,221:31948532,19418425:634497 -k4607,221:32583029,19418425:634497 -) -(4607,222:20753781,20296943:11829248,530548,141066 -h4607,221:20753781,20296943:0,0,0 -r4607,250:20753781,20296943:0,671614,141066 -g4607,221:22064501,20296943 -g4607,221:22064501,20296943 -g4607,221:26586824,20296943 -k4607,222:30182615,20296943:2400414 -k4607,222:32583029,20296943:2400414 -) -(4607,223:20753781,21175461:11829248,530548,141066 -h4607,222:20753781,21175461:0,0,0 -r4607,250:20753781,21175461:0,671614,141066 -g4607,222:22064501,21175461 -g4607,222:22064501,21175461 -g4607,222:29076479,21175461 -g4607,222:30644755,21175461 -k4607,223:32211581,21175461:371449 -k4607,223:32583029,21175461:371448 -) -(4607,224:20753781,22053979:11829248,530548,141066 -h4607,223:20753781,22053979:0,0,0 -r4607,250:20753781,22053979:0,671614,141066 -g4607,223:22064501,22053979 -g4607,223:22064501,22053979 -g4607,223:27416709,22053979 -g4607,223:28984985,22053979 -g4607,223:30553261,22053979 -k4607,224:32156003,22053979:427026 -k4607,224:32583029,22053979:427026 -) -(4607,225:20753781,22932496:11829248,530548,141066 -h4607,224:20753781,22932496:0,0,0 -r4607,250:20753781,22932496:0,671614,141066 -g4607,224:22064501,22932496 -g4607,224:22064501,22932496 -g4607,224:27416709,22932496 -g4607,224:30508042,22932496 -k4607,224:32583029,22932496:792448 -) -(4607,225:23375221,23797576:9207808,485622,102891 -g4607,224:24943497,23797576 -k4607,225:29360952,23797576:3222078 -k4607,225:32583029,23797576:3222077 -) -(4607,226:20753781,24676094:11829248,530548,141066 -h4607,225:20753781,24676094:0,0,0 -r4607,250:20753781,24676094:0,671614,141066 -g4607,225:22064501,24676094 -g4607,225:22064501,24676094 -g4607,225:29906363,24676094 -k4607,226:31842385,24676094:740645 -k4607,226:32583029,24676094:740644 -) -(4607,227:20753781,25554612:11829248,530548,141066 -h4607,226:20753781,25554612:0,0,0 -r4607,250:20753781,25554612:0,671614,141066 -g4607,226:22064501,25554612 -g4607,226:22064501,25554612 -g4607,226:27001767,25554612 -g4607,226:28570043,25554612 -g4607,226:30138319,25554612 -k4607,226:32583029,25554612:1162171 -) -(4607,227:23375221,26419692:9207808,485622,102891 -g4607,226:24943497,26419692 -g4607,226:26511773,26419692 -g4607,226:28080049,26419692 -k4607,227:30919397,26419692:1663632 -k4607,227:32583029,26419692:1663632 -) -(4607,228:20753781,27298210:11829248,530548,141066 -h4607,227:20753781,27298210:0,0,0 -r4607,250:20753781,27298210:0,671614,141066 -g4607,227:22064501,27298210 -g4607,227:22064501,27298210 -g4607,227:29076479,27298210 -k4607,228:31427443,27298210:1155587 -k4607,228:32583029,27298210:1155586 -) -(4607,229:20753781,28176727:11829248,530548,141066 -h4607,228:20753781,28176727:0,0,0 -r4607,250:20753781,28176727:0,671614,141066 -g4607,228:22064501,28176727 -g4607,228:22064501,28176727 -g4607,228:27001767,28176727 -g4607,228:28570043,28176727 -k4607,229:31174225,28176727:1408805 -k4607,229:32583029,28176727:1408804 -) -(4607,230:20753781,29055245:11829248,530548,141066 -h4607,229:20753781,29055245:0,0,0 -r4607,250:20753781,29055245:0,671614,141066 -g4607,229:22064501,29055245 -g4607,229:22064501,29055245 -g4607,229:27001767,29055245 -k4607,230:31151615,29055245:1431415 -k4607,230:32583029,29055245:1431414 -) -(4607,232:20753781,29933763:11829248,530548,141066 -h4607,230:20753781,29933763:0,0,0 -r4607,250:20753781,29933763:0,671614,141066 -g4607,230:22064501,29933763 -g4607,230:22064501,29933763 -g4607,230:27416709,29933763 -g4607,230:28984985,29933763 -g4607,230:30553261,29933763 -k4607,230:32583029,29933763:747229 -) -(4607,232:23375221,30798843:9207808,485622,102891 -g4607,230:24943497,30798843 -g4607,230:26511773,30798843 -g4607,230:28080049,30798843 -g4607,231:29648325,30798843 -g4607,231:31216601,30798843 -k4607,231:32583029,30798843:83889 -) -(4607,232:23375221,31663923:9207808,485622,102891 -g4607,231:24943497,31663923 -g4607,231:26511773,31663923 -g4607,231:28080049,31663923 -g4607,231:29648325,31663923 -k4607,232:31713366,31663923:869664 -k4607,232:32583029,31663923:869663 -) -(4607,233:20753781,32542441:11829248,530548,141066 -h4607,232:20753781,32542441:0,0,0 -r4607,250:20753781,32542441:0,671614,141066 -g4607,232:22064501,32542441 -g4607,232:22064501,32542441 -g4607,232:28246594,32542441 -g4607,232:29814870,32542441 -k4607,233:31796638,32542441:786391 -k4607,233:32583029,32542441:786391 -) -(4607,234:20753781,33420958:11829248,530548,141066 -h4607,233:20753781,33420958:0,0,0 -r4607,250:20753781,33420958:0,671614,141066 -g4607,233:22064501,33420958 -g4607,233:22064501,33420958 -g4607,233:29491421,33420958 -g4607,233:31059697,33420958 -k4607,233:32583029,33420958:240793 -) -(4607,234:23375221,34286038:9207808,485622,102891 -g4607,233:24943497,34286038 -k4607,234:29360952,34286038:3222078 -k4607,234:32583029,34286038:3222077 -) -(4607,235:20753781,35164556:11829248,530548,141066 -h4607,234:20753781,35164556:0,0,0 -r4607,250:20753781,35164556:0,671614,141066 -g4607,234:22064501,35164556 -g4607,234:22064501,35164556 -g4607,234:28246594,35164556 -k4607,235:31002670,35164556:1580360 -k4607,235:32583029,35164556:1580359 -) -(4607,236:20753781,36043074:11829248,530548,141066 -h4607,235:20753781,36043074:0,0,0 -r4607,250:20753781,36043074:0,671614,141066 -g4607,235:22064501,36043074 -g4607,235:22064501,36043074 -g4607,235:27416709,36043074 -k4607,236:30597558,36043074:1985472 -k4607,236:32583029,36043074:1985471 -) -(4607,237:20753781,36921592:11829248,530548,141066 -h4607,236:20753781,36921592:0,0,0 -r4607,250:20753781,36921592:0,671614,141066 -g4607,236:22064501,36921592 -g4607,236:22064501,36921592 -g4607,236:27001767,36921592 -g4607,236:28570043,36921592 -k4607,237:31174225,36921592:1408805 -k4607,237:32583029,36921592:1408804 -) -(4607,238:20753781,37800109:11829248,530548,141066 -h4607,237:20753781,37800109:0,0,0 -r4607,250:20753781,37800109:0,671614,141066 -g4607,237:22064501,37800109 -g4607,237:22064501,37800109 -g4607,237:27831652,37800109 -g4607,237:29399928,37800109 -k4607,238:31589167,37800109:993862 -k4607,238:32583029,37800109:993862 -) -(4607,239:20753781,38678627:11829248,530548,141066 -h4607,238:20753781,38678627:0,0,0 -r4607,250:20753781,38678627:0,671614,141066 -g4607,238:22064501,38678627 -g4607,238:22064501,38678627 -g4607,238:26586824,38678627 -k4607,239:30182615,38678627:2400414 -k4607,239:32583029,38678627:2400414 -) -(4607,240:20753781,39557145:11829248,530548,141066 -h4607,239:20753781,39557145:0,0,0 -r4607,250:20753781,39557145:0,671614,141066 -g4607,239:22064501,39557145 -g4607,239:22064501,39557145 -g4607,239:28246594,39557145 -g4607,239:29814870,39557145 -k4607,240:31796638,39557145:786391 -k4607,240:32583029,39557145:786391 -) -(4607,241:20753781,40435663:11829248,538806,141066 -h4607,240:20753781,40435663:0,0,0 -r4607,250:20753781,40435663:0,679872,141066 -g4607,240:22064501,40435663 -g4607,240:22064501,40435663 -g4607,240:26171882,40435663 -k4607,241:29975144,40435663:2607885 -k4607,241:32583029,40435663:2607885 -) -(4607,242:20753781,41314180:11829248,538806,141066 -h4607,241:20753781,41314180:0,0,0 -r4607,250:20753781,41314180:0,679872,141066 -g4607,241:22064501,41314180 -g4607,241:22064501,41314180 -g4607,241:28661536,41314180 -k4607,242:31219971,41314180:1363058 -k4607,242:32583029,41314180:1363058 -) -(4607,243:20753781,42192698:11829248,538806,141066 -h4607,242:20753781,42192698:0,0,0 -r4607,250:20753781,42192698:0,679872,141066 -g4607,242:22064501,42192698 -g4607,242:22064501,42192698 -g4607,242:28246594,42192698 -k4607,243:31012500,42192698:1570529 -k4607,243:32583029,42192698:1570529 -) -(4607,244:20753781,43071216:11829248,530548,141066 -h4607,243:20753781,43071216:0,0,0 -r4607,250:20753781,43071216:0,671614,141066 -g4607,243:22064501,43071216 -g4607,243:22064501,43071216 -g4607,243:27831652,43071216 -g4607,243:29399928,43071216 -g4607,243:30968204,43071216 -k4607,244:32373305,43071216:209724 -k4607,244:32583029,43071216:209724 -) -(4607,245:20753781,43949734:11829248,530548,141066 -h4607,244:20753781,43949734:0,0,0 -r4607,250:20753781,43949734:0,671614,141066 -g4607,244:22064501,43949734 -g4607,244:22064501,43949734 -g4607,244:27416709,43949734 -k4607,245:30597558,43949734:1985472 -k4607,245:32583029,43949734:1985471 -) -(4607,246:20753781,44828251:11829248,530548,141066 -h4607,245:20753781,44828251:0,0,0 -r4607,250:20753781,44828251:0,671614,141066 -g4607,245:22064501,44828251 -g4607,245:22064501,44828251 -g4607,245:27001767,44828251 -k4607,246:30380256,44828251:2202773 -k4607,246:32583029,44828251:2202773 -) -(4607,247:20753781,45706769:11829248,530548,141066 -h4607,246:20753781,45706769:0,0,0 -r4607,250:20753781,45706769:0,671614,141066 -g4607,246:22064501,45706769 -g4607,246:22064501,45706769 -g4607,246:27416709,45706769 -g4607,246:28984985,45706769 -k4607,247:31381696,45706769:1201334 -k4607,247:32583029,45706769:1201333 -) -] -(4607,250:32583029,45706769:0,355205,126483 -h4607,250:32583029,45706769:420741,355205,126483 -k4607,250:32583029,45706769:-420741 -) -) -] -(4607,250:32583029,45706769:0,0,0 -g4607,250:32583029,45706769 -) -) -] -(4607,250:6630773,47279633:25952256,0,0 -h4607,250:6630773,47279633:25952256,0,0 -) -] -(4607,250:4262630,4025873:0,0,0 -[4607,250:-473656,4025873:0,0,0 -(4607,250:-473656,-710413:0,0,0 -(4607,250:-473656,-710413:0,0,0 -g4607,250:-473656,-710413 -) -g4607,250:-473656,-710413 -) -] -) -] -!30595 -}456 +[4611,249:3078558,4812305:0,0,0 +(4611,249:3078558,49800853:0,16384,2228224 +g4611,249:29030814,49800853 +g4611,249:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,249:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,249:37855564,49800853:1179648,16384,0 +) +) +k4611,249:3078556,49800853:-34777008 +) +] +g4611,249:6630773,4812305 +g4611,249:6630773,4812305 +g4611,249:8528695,4812305 +g4611,249:9343962,4812305 +g4611,249:9957379,4812305 +g4611,249:12300946,4812305 +g4611,249:13256460,4812305 +g4611,249:16329443,4812305 +k4611,249:31387652,4812305:15058209 +) +) +] +[4611,249:6630773,45706769:25952256,40108032,0 +(4611,249:6630773,45706769:25952256,40108032,0 +(4611,249:6630773,45706769:0,0,0 +g4611,249:6630773,45706769 +) +[4611,249:6630773,45706769:25952256,40108032,0 +(4611,249:6630773,45706769:25952256,40108032,141066 +[4611,249:6630773,45706769:11829248,40108032,102891 +(4611,160:6630773,6254097:11829248,530548,132808 +h4611,159:6630773,6254097:0,0,0 +r4611,249:6630773,6254097:0,663356,132808 +g4611,159:7941493,6254097 +g4611,159:7941493,6254097 +g4611,159:11633931,6254097 +k4611,160:15644665,6254097:2815357 +k4611,160:18460021,6254097:2815356 +) +(4611,161:6630773,7130823:11829248,530548,132808 +h4611,160:6630773,7130823:0,0,0 +r4611,249:6630773,7130823:0,663356,132808 +g4611,160:7941493,7130823 +g4611,160:7941493,7130823 +g4611,160:12878759,7130823 +k4611,161:16267079,7130823:2192943 +k4611,161:18460021,7130823:2192942 +) +(4611,162:6630773,8007549:11829248,530548,132808 +h4611,161:6630773,8007549:0,0,0 +r4611,249:6630773,8007549:0,663356,132808 +g4611,161:7941493,8007549 +g4611,161:7941493,8007549 +g4611,161:12048874,8007549 +g4611,161:13617150,8007549 +k4611,162:16626444,8007549:1833578 +k4611,162:18460021,8007549:1833577 +) +(4611,163:6630773,8884275:11829248,530548,102891 +h4611,162:6630773,8884275:0,0,0 +r4611,249:6630773,8884275:0,633439,102891 +g4611,162:7941493,8884275 +g4611,162:7941493,8884275 +g4611,162:11633931,8884275 +k4611,163:15644665,8884275:2815357 +k4611,163:18460021,8884275:2815356 +) +(4611,164:6630773,9761001:11829248,538806,102891 +h4611,163:6630773,9761001:0,0,0 +r4611,249:6630773,9761001:0,641697,102891 +g4611,163:7941493,9761001 +g4611,163:7941493,9761001 +g4611,163:9974162,9761001 +k4611,164:14814780,9761001:3645241 +k4611,164:18460021,9761001:3645241 +) +(4611,165:6630773,10637727:11829248,530548,141066 +h4611,164:6630773,10637727:0,0,0 +r4611,249:6630773,10637727:0,671614,141066 +g4611,164:7941493,10637727 +g4611,164:7941493,10637727 +g4611,164:10804046,10637727 +k4611,165:15219892,10637727:3240130 +k4611,165:18460021,10637727:3240129 +) +(4611,166:6630773,11514453:11829248,530548,141066 +h4611,165:6630773,11514453:0,0,0 +r4611,249:6630773,11514453:0,671614,141066 +g4611,165:7941493,11514453 +g4611,165:7941493,11514453 +g4611,165:10804046,11514453 +k4611,166:15030493,11514453:3429529 +k4611,166:18460021,11514453:3429528 +) +(4611,167:6630773,12391179:11829248,538806,102891 +h4611,166:6630773,12391179:0,0,0 +r4611,249:6630773,12391179:0,641697,102891 +g4611,166:7941493,12391179 +g4611,166:7941493,12391179 +g4611,166:10804046,12391179 +g4611,166:12372322,12391179 +k4611,167:16013860,12391179:2446161 +k4611,167:18460021,12391179:2446161 +) +(4611,168:6630773,13267905:11829248,538806,102891 +h4611,167:6630773,13267905:0,0,0 +r4611,249:6630773,13267905:0,641697,102891 +g4611,167:7941493,13267905 +g4611,167:7941493,13267905 +g4611,167:12048874,13267905 +k4611,168:15852136,13267905:2607885 +k4611,168:18460021,13267905:2607885 +) +(4611,169:6630773,14144631:11829248,530548,102891 +h4611,168:6630773,14144631:0,0,0 +r4611,249:6630773,14144631:0,633439,102891 +g4611,168:7941493,14144631 +g4611,168:7941493,14144631 +g4611,168:10389104,14144631 +g4611,168:11558921,14144631 +g4611,168:12728738,14144631 +g4611,168:14297014,14144631 +g4611,168:15865290,14144631 +k4611,169:17760344,14144631:699677 +k4611,169:18460021,14144631:699677 +) +(4611,170:6630773,15021357:11829248,530548,102891 +h4611,169:6630773,15021357:0,0,0 +r4611,249:6630773,15021357:0,633439,102891 +g4611,169:7941493,15021357 +g4611,169:7941493,15021357 +g4611,169:11218989,15021357 +k4611,170:15437194,15021357:3022828 +k4611,170:18460021,15021357:3022827 +) +(4611,171:6630773,15898083:11829248,530548,102891 +h4611,170:6630773,15898083:0,0,0 +r4611,249:6630773,15898083:0,633439,102891 +g4611,170:7941493,15898083 +g4611,170:7941493,15898083 +g4611,170:12463816,15898083 +g4611,170:14032092,15898083 +k4611,171:16843745,15898083:1616276 +k4611,171:18460021,15898083:1616276 +) +(4611,172:6630773,16774810:11829248,530548,102891 +h4611,171:6630773,16774810:0,0,0 +r4611,249:6630773,16774810:0,633439,102891 +g4611,171:7941493,16774810 +g4611,171:7941493,16774810 +g4611,171:13293701,16774810 +k4611,172:16474550,16774810:1985472 +k4611,172:18460021,16774810:1985471 +) +(4611,173:6630773,17651536:11829248,530548,102891 +h4611,172:6630773,17651536:0,0,0 +r4611,249:6630773,17651536:0,633439,102891 +g4611,172:7941493,17651536 +g4611,172:7941493,17651536 +g4611,172:12048874,17651536 +k4611,173:15852136,17651536:2607885 +k4611,173:18460021,17651536:2607885 +) +(4611,174:6630773,18528262:11829248,530548,102891 +h4611,173:6630773,18528262:0,0,0 +r4611,249:6630773,18528262:0,633439,102891 +g4611,173:7941493,18528262 +g4611,173:7941493,18528262 +g4611,173:9974162,18528262 +k4611,174:14814780,18528262:3645241 +k4611,174:18460021,18528262:3645241 +) +(4611,175:6630773,19404988:11829248,530548,102891 +h4611,174:6630773,19404988:0,0,0 +r4611,249:6630773,19404988:0,633439,102891 +g4611,174:7941493,19404988 +g4611,174:7941493,19404988 +g4611,174:11633931,19404988 +k4611,175:15644665,19404988:2815357 +k4611,175:18460021,19404988:2815356 +) +(4611,176:6630773,20281714:11829248,530548,102891 +h4611,175:6630773,20281714:0,0,0 +r4611,249:6630773,20281714:0,633439,102891 +g4611,175:7941493,20281714 +g4611,175:7941493,20281714 +g4611,175:12878759,20281714 +k4611,176:16267079,20281714:2192943 +k4611,176:18460021,20281714:2192942 +) +(4611,177:6630773,21158440:11829248,530548,132808 +h4611,176:6630773,21158440:0,0,0 +r4611,249:6630773,21158440:0,663356,132808 +g4611,176:7941493,21158440 +g4611,176:7941493,21158440 +g4611,176:12048874,21158440 +k4611,177:15852136,21158440:2607885 +k4611,177:18460021,21158440:2607885 +) +(4611,178:6630773,22035166:11829248,530548,102891 +h4611,177:6630773,22035166:0,0,0 +r4611,249:6630773,22035166:0,633439,102891 +g4611,177:7941493,22035166 +g4611,177:7941493,22035166 +g4611,177:11218989,22035166 +k4611,178:15437194,22035166:3022828 +k4611,178:18460021,22035166:3022827 +) +(4611,179:6630773,22911892:11829248,530548,102891 +h4611,178:6630773,22911892:0,0,0 +r4611,249:6630773,22911892:0,633439,102891 +g4611,178:7941493,22911892 +g4611,178:7941493,22911892 +g4611,178:12048874,22911892 +g4611,178:13617150,22911892 +k4611,179:16626444,22911892:1833578 +k4611,179:18460021,22911892:1833577 +) +(4611,180:6630773,23788618:11829248,530548,102891 +h4611,179:6630773,23788618:0,0,0 +r4611,249:6630773,23788618:0,633439,102891 +g4611,179:7941493,23788618 +g4611,179:7941493,23788618 +g4611,179:11633931,23788618 +k4611,180:15435605,23788618:3024417 +k4611,180:18460021,23788618:3024416 +) +(4611,181:6630773,24665344:11829248,538806,102891 +h4611,180:6630773,24665344:0,0,0 +r4611,249:6630773,24665344:0,641697,102891 +g4611,180:7941493,24665344 +g4611,180:7941493,24665344 +g4611,180:14538528,24665344 +k4611,181:17096963,24665344:1363058 +k4611,181:18460021,24665344:1363058 +) +(4611,182:6630773,25542070:11829248,530548,132808 +h4611,181:6630773,25542070:0,0,0 +r4611,249:6630773,25542070:0,663356,132808 +g4611,181:7941493,25542070 +g4611,181:7941493,25542070 +g4611,181:11218989,25542070 +k4611,182:15437194,25542070:3022828 +k4611,182:18460021,25542070:3022827 +) +(4611,183:6630773,26418796:11829248,530548,132808 +h4611,182:6630773,26418796:0,0,0 +r4611,249:6630773,26418796:0,663356,132808 +g4611,182:7941493,26418796 +g4611,182:7941493,26418796 +g4611,182:10804046,26418796 +k4611,183:15219892,26418796:3240130 +k4611,183:18460021,26418796:3240129 +) +(4611,184:6630773,27295522:11829248,530548,102891 +h4611,183:6630773,27295522:0,0,0 +r4611,249:6630773,27295522:0,633439,102891 +g4611,183:7941493,27295522 +g4611,183:7941493,27295522 +g4611,183:9974162,27295522 +k4611,184:14814780,27295522:3645241 +k4611,184:18460021,27295522:3645241 +) +(4611,185:6630773,28172248:11829248,538806,102891 +h4611,184:6630773,28172248:0,0,0 +r4611,249:6630773,28172248:0,641697,102891 +g4611,184:7941493,28172248 +g4611,184:7941493,28172248 +g4611,184:11218989,28172248 +k4611,185:15437194,28172248:3022828 +k4611,185:18460021,28172248:3022827 +) +(4611,186:6630773,29048974:11829248,530548,132808 +h4611,185:6630773,29048974:0,0,0 +r4611,249:6630773,29048974:0,663356,132808 +g4611,185:7941493,29048974 +g4611,185:7941493,29048974 +g4611,185:13293701,29048974 +k4611,186:16265490,29048974:2194532 +k4611,186:18460021,29048974:2194531 +) +(4611,187:6630773,29925700:11829248,530548,102891 +h4611,186:6630773,29925700:0,0,0 +r4611,249:6630773,29925700:0,633439,102891 +g4611,186:7941493,29925700 +g4611,186:7941493,29925700 +g4611,186:10804046,29925700 +k4611,187:15219892,29925700:3240130 +k4611,187:18460021,29925700:3240129 +) +(4611,188:6630773,30802426:11829248,538806,102891 +h4611,187:6630773,30802426:0,0,0 +r4611,249:6630773,30802426:0,641697,102891 +g4611,187:7941493,30802426 +g4611,187:7941493,30802426 +g4611,187:12048874,30802426 +k4611,188:15842306,30802426:2617716 +k4611,188:18460021,30802426:2617715 +) +(4611,189:6630773,31679152:11829248,530548,102891 +h4611,188:6630773,31679152:0,0,0 +r4611,249:6630773,31679152:0,633439,102891 +g4611,188:7941493,31679152 +g4611,188:7941493,31679152 +g4611,188:12878759,31679152 +k4611,189:16257248,31679152:2202773 +k4611,189:18460021,31679152:2202773 +) +(4611,190:6630773,32555878:11829248,530548,102891 +h4611,189:6630773,32555878:0,0,0 +r4611,249:6630773,32555878:0,633439,102891 +g4611,189:7941493,32555878 +g4611,189:7941493,32555878 +g4611,189:13708644,32555878 +k4611,190:16672191,32555878:1787831 +k4611,190:18460021,32555878:1787830 +) +(4611,191:6630773,33432604:11829248,530548,102891 +h4611,190:6630773,33432604:0,0,0 +r4611,249:6630773,33432604:0,633439,102891 +g4611,190:7941493,33432604 +g4611,190:7941493,33432604 +g4611,190:14123586,33432604 +k4611,191:16879662,33432604:1580360 +k4611,191:18460021,33432604:1580359 +) +(4611,192:6630773,34309330:11829248,530548,132808 +h4611,191:6630773,34309330:0,0,0 +r4611,249:6630773,34309330:0,663356,132808 +g4611,191:7941493,34309330 +g4611,191:7941493,34309330 +g4611,191:10389104,34309330 +k4611,192:14823022,34309330:3637000 +k4611,192:18460021,34309330:3636999 +) +(4611,193:6630773,35186056:11829248,530548,132808 +h4611,192:6630773,35186056:0,0,0 +r4611,249:6630773,35186056:0,663356,132808 +g4611,192:7941493,35186056 +g4611,192:7941493,35186056 +g4611,192:14538528,35186056 +g4611,192:16106804,35186056 +k4611,193:17881101,35186056:578920 +k4611,193:18460021,35186056:578920 +) +(4611,194:6630773,36062783:11829248,530548,132808 +h4611,193:6630773,36062783:0,0,0 +r4611,249:6630773,36062783:0,663356,132808 +g4611,193:7941493,36062783 +g4611,193:7941493,36062783 +g4611,193:12878759,36062783 +k4611,194:16267079,36062783:2192943 +k4611,194:18460021,36062783:2192942 +) +(4611,195:6630773,36939509:11829248,530548,132808 +h4611,194:6630773,36939509:0,0,0 +r4611,249:6630773,36939509:0,663356,132808 +g4611,194:7941493,36939509 +g4611,194:7941493,36939509 +g4611,194:13293701,36939509 +k4611,195:17226247,36939509:1233774 +k4611,195:18460021,36939509:1233774 +) +(4611,196:6630773,37816235:11829248,538806,141066 +h4611,195:6630773,37816235:0,0,0 +r4611,249:6630773,37816235:0,679872,141066 +g4611,195:7941493,37816235 +g4611,195:7941493,37816235 +g4611,195:13293701,37816235 +g4611,195:14861977,37816235 +k4611,196:17258688,37816235:1201334 +k4611,196:18460021,37816235:1201333 +) +(4611,197:6630773,38692961:11829248,538806,132808 +h4611,196:6630773,38692961:0,0,0 +r4611,249:6630773,38692961:0,671614,132808 +g4611,196:7941493,38692961 +g4611,196:7941493,38692961 +g4611,196:13293701,38692961 +g4611,196:14861977,38692961 +g4611,196:16430253,38692961 +k4611,197:18042826,38692961:417196 +k4611,197:18460021,38692961:417195 +) +(4611,198:6630773,39569687:11829248,538806,102891 +h4611,197:6630773,39569687:0,0,0 +r4611,249:6630773,39569687:0,641697,102891 +g4611,197:7941493,39569687 +g4611,197:7941493,39569687 +g4611,197:11633931,39569687 +g4611,197:13928346,39569687 +k4611,198:16791872,39569687:1668149 +k4611,198:18460021,39569687:1668149 +) +(4611,199:6630773,40446413:11829248,538806,102891 +h4611,198:6630773,40446413:0,0,0 +r4611,249:6630773,40446413:0,641697,102891 +g4611,198:7941493,40446413 +g4611,198:7941493,40446413 +g4611,198:12878759,40446413 +k4611,199:16267079,40446413:2192943 +k4611,199:18460021,40446413:2192942 +) +(4611,200:6630773,41323139:11829248,538806,132808 +h4611,199:6630773,41323139:0,0,0 +r4611,249:6630773,41323139:0,671614,132808 +g4611,199:7941493,41323139 +g4611,199:7941493,41323139 +g4611,199:12878759,41323139 +k4611,200:16267079,41323139:2192943 +k4611,200:18460021,41323139:2192942 +) +(4611,201:6630773,42199865:11829248,538806,102891 +h4611,200:6630773,42199865:0,0,0 +r4611,249:6630773,42199865:0,641697,102891 +g4611,200:7941493,42199865 +g4611,200:7941493,42199865 +g4611,200:13708644,42199865 +k4611,201:16682021,42199865:1778000 +k4611,201:18460021,42199865:1778000 +) +(4611,202:6630773,43076591:11829248,538806,102891 +h4611,201:6630773,43076591:0,0,0 +r4611,249:6630773,43076591:0,641697,102891 +g4611,201:7941493,43076591 +g4611,201:7941493,43076591 +g4611,201:11633931,43076591 +k4611,202:15644665,43076591:2815357 +k4611,202:18460021,43076591:2815356 +) +(4611,203:6630773,43953317:11829248,538806,102891 +h4611,202:6630773,43953317:0,0,0 +r4611,249:6630773,43953317:0,641697,102891 +g4611,202:7941493,43953317 +g4611,202:7941493,43953317 +g4611,202:11633931,43953317 +g4611,202:13202207,43953317 +k4611,203:16418972,43953317:2041049 +k4611,203:18460021,43953317:2041049 +) +(4611,204:6630773,44830043:11829248,538806,102891 +h4611,203:6630773,44830043:0,0,0 +r4611,249:6630773,44830043:0,641697,102891 +g4611,203:7941493,44830043 +g4611,203:7941493,44830043 +g4611,203:14538528,44830043 +k4611,204:17087133,44830043:1372889 +k4611,204:18460021,44830043:1372888 +) +(4611,205:6630773,45706769:11829248,538806,102891 +h4611,204:6630773,45706769:0,0,0 +r4611,249:6630773,45706769:0,641697,102891 +g4611,204:7941493,45706769 +g4611,204:7941493,45706769 +g4611,204:10389104,45706769 +k4611,205:15012421,45706769:3447601 +k4611,205:18460021,45706769:3447600 +) +] +k4611,249:19606901,45706769:1146880 +r4611,249:19606901,45706769:0,40249098,141066 +k4611,249:20753781,45706769:1146880 +[4611,249:20753781,45706769:11829248,40108032,141066 +(4611,206:20753781,6254097:11829248,538806,102891 +h4611,205:20753781,6254097:0,0,0 +r4611,249:20753781,6254097:0,641697,102891 +g4611,205:22064501,6254097 +g4611,205:22064501,6254097 +g4611,205:25756939,6254097 +g4611,205:26926756,6254097 +g4611,205:28096573,6254097 +k4611,206:30937490,6254097:1645540 +k4611,206:32583029,6254097:1645539 +) +(4611,207:20753781,7132615:11829248,538806,102891 +h4611,206:20753781,7132615:0,0,0 +r4611,249:20753781,7132615:0,641697,102891 +g4611,206:22064501,7132615 +g4611,206:22064501,7132615 +g4611,206:26586824,7132615 +k4611,207:30182615,7132615:2400414 +k4611,207:32583029,7132615:2400414 +) +(4611,208:20753781,8011132:11829248,538806,141066 +h4611,207:20753781,8011132:0,0,0 +r4611,249:20753781,8011132:0,679872,141066 +g4611,207:22064501,8011132 +g4611,207:22064501,8011132 +g4611,207:27001767,8011132 +k4611,208:30380256,8011132:2202773 +k4611,208:32583029,8011132:2202773 +) +(4611,209:20753781,8889650:11829248,538806,102891 +h4611,208:20753781,8889650:0,0,0 +r4611,249:20753781,8889650:0,641697,102891 +g4611,208:22064501,8889650 +g4611,208:22064501,8889650 +g4611,208:26586824,8889650 +g4611,208:28155100,8889650 +k4611,209:30966753,8889650:1616276 +k4611,209:32583029,8889650:1616276 +) +(4611,210:20753781,9768168:11829248,530548,141066 +h4611,209:20753781,9768168:0,0,0 +r4611,249:20753781,9768168:0,671614,141066 +g4611,209:22064501,9768168 +g4611,209:22064501,9768168 +g4611,209:25756939,9768168 +k4611,210:29767673,9768168:2815357 +k4611,210:32583029,9768168:2815356 +) +(4611,211:20753781,10646686:11829248,530548,141066 +h4611,210:20753781,10646686:0,0,0 +r4611,249:20753781,10646686:0,671614,141066 +g4611,210:22064501,10646686 +g4611,210:22064501,10646686 +g4611,210:27831652,10646686 +g4611,210:29399928,10646686 +k4611,211:31589167,10646686:993862 +k4611,211:32583029,10646686:993862 +) +(4611,212:20753781,11525203:11829248,530548,141066 +h4611,211:20753781,11525203:0,0,0 +r4611,249:20753781,11525203:0,671614,141066 +g4611,211:22064501,11525203 +g4611,211:22064501,11525203 +g4611,211:27001767,11525203 +g4611,211:28570043,11525203 +k4611,212:31174225,11525203:1408805 +k4611,212:32583029,11525203:1408804 +) +(4611,213:20753781,12403721:11829248,530548,141066 +h4611,212:20753781,12403721:0,0,0 +r4611,249:20753781,12403721:0,671614,141066 +g4611,212:22064501,12403721 +g4611,212:22064501,12403721 +g4611,212:26586824,12403721 +g4611,212:28155100,12403721 +g4611,212:29723376,12403721 +g4611,212:31291652,12403721 +k4611,212:32583029,12403721:8838 +) +(4611,213:23375221,13268801:9207808,485622,11795 +k4611,213:28566983,13268801:4016046 +k4611,213:32583029,13268801:4016046 +) +(4611,214:20753781,14147319:11829248,530548,141066 +h4611,213:20753781,14147319:0,0,0 +r4611,249:20753781,14147319:0,671614,141066 +g4611,213:22064501,14147319 +g4611,213:22064501,14147319 +g4611,213:27416709,14147319 +k4611,214:30597558,14147319:1985472 +k4611,214:32583029,14147319:1985471 +) +(4611,215:20753781,15025837:11829248,530548,141066 +h4611,214:20753781,15025837:0,0,0 +r4611,249:20753781,15025837:0,671614,141066 +g4611,214:22064501,15025837 +g4611,214:22064501,15025837 +g4611,214:28246594,15025837 +k4611,215:31012500,15025837:1570529 +k4611,215:32583029,15025837:1570529 +) +(4611,216:20753781,15904354:11829248,530548,141066 +h4611,215:20753781,15904354:0,0,0 +r4611,249:20753781,15904354:0,671614,141066 +g4611,215:22064501,15904354 +g4611,215:22064501,15904354 +g4611,215:26586824,15904354 +g4611,215:28155100,15904354 +g4611,215:29723376,15904354 +g4611,215:31291652,15904354 +k4611,216:32535029,15904354:48000 +k4611,216:32583029,15904354:48000 +) +(4611,217:20753781,16782872:11829248,530548,141066 +h4611,216:20753781,16782872:0,0,0 +r4611,249:20753781,16782872:0,671614,141066 +g4611,216:22064501,16782872 +g4611,216:22064501,16782872 +g4611,216:27416709,16782872 +g4611,216:28984985,16782872 +k4611,217:31381696,16782872:1201334 +k4611,217:32583029,16782872:1201333 +) +(4611,218:20753781,17661390:11829248,530548,141066 +h4611,217:20753781,17661390:0,0,0 +r4611,249:20753781,17661390:0,671614,141066 +g4611,217:22064501,17661390 +g4611,217:22064501,17661390 +g4611,217:27416709,17661390 +k4611,218:30597558,17661390:1985472 +k4611,218:32583029,17661390:1985471 +) +(4611,219:20753781,18539908:11829248,530548,141066 +h4611,218:20753781,18539908:0,0,0 +r4611,249:20753781,18539908:0,671614,141066 +g4611,218:22064501,18539908 +g4611,218:22064501,18539908 +g4611,218:28246594,18539908 +k4611,219:31012500,18539908:1570529 +k4611,219:32583029,18539908:1570529 +) +(4611,220:20753781,19418425:11829248,530548,141066 +h4611,219:20753781,19418425:0,0,0 +r4611,249:20753781,19418425:0,671614,141066 +g4611,219:22064501,19418425 +g4611,219:22064501,19418425 +g4611,219:28661536,19418425 +g4611,219:30229812,19418425 +k4611,220:32004109,19418425:578920 +k4611,220:32583029,19418425:578920 +) +(4611,221:20753781,20296943:11829248,530548,141066 +h4611,220:20753781,20296943:0,0,0 +r4611,249:20753781,20296943:0,671614,141066 +g4611,220:22064501,20296943 +g4611,220:22064501,20296943 +g4611,220:27001767,20296943 +g4611,220:28570043,20296943 +g4611,220:30138319,20296943 +k4611,221:31948532,20296943:634497 +k4611,221:32583029,20296943:634497 +) +(4611,222:20753781,21175461:11829248,530548,141066 +h4611,221:20753781,21175461:0,0,0 +r4611,249:20753781,21175461:0,671614,141066 +g4611,221:22064501,21175461 +g4611,221:22064501,21175461 +g4611,221:26586824,21175461 +k4611,222:30182615,21175461:2400414 +k4611,222:32583029,21175461:2400414 +) +(4611,223:20753781,22053979:11829248,530548,141066 +h4611,222:20753781,22053979:0,0,0 +r4611,249:20753781,22053979:0,671614,141066 +g4611,222:22064501,22053979 +g4611,222:22064501,22053979 +g4611,222:29076479,22053979 +g4611,222:30644755,22053979 +k4611,223:32211581,22053979:371449 +k4611,223:32583029,22053979:371448 +) +(4611,224:20753781,22932496:11829248,530548,141066 +h4611,223:20753781,22932496:0,0,0 +r4611,249:20753781,22932496:0,671614,141066 +g4611,223:22064501,22932496 +g4611,223:22064501,22932496 +g4611,223:27416709,22932496 +g4611,223:28984985,22932496 +g4611,223:30553261,22932496 +k4611,224:32156003,22932496:427026 +k4611,224:32583029,22932496:427026 +) +(4611,225:20753781,23811014:11829248,530548,141066 +h4611,224:20753781,23811014:0,0,0 +r4611,249:20753781,23811014:0,671614,141066 +g4611,224:22064501,23811014 +g4611,224:22064501,23811014 +g4611,224:27416709,23811014 +g4611,224:30508042,23811014 +k4611,224:32583029,23811014:792448 +) +(4611,225:23375221,24676094:9207808,485622,102891 +g4611,224:24943497,24676094 +k4611,225:29360952,24676094:3222078 +k4611,225:32583029,24676094:3222077 +) +(4611,226:20753781,25554612:11829248,530548,141066 +h4611,225:20753781,25554612:0,0,0 +r4611,249:20753781,25554612:0,671614,141066 +g4611,225:22064501,25554612 +g4611,225:22064501,25554612 +g4611,225:29906363,25554612 +k4611,226:31842385,25554612:740645 +k4611,226:32583029,25554612:740644 +) +(4611,227:20753781,26433130:11829248,530548,141066 +h4611,226:20753781,26433130:0,0,0 +r4611,249:20753781,26433130:0,671614,141066 +g4611,226:22064501,26433130 +g4611,226:22064501,26433130 +g4611,226:27001767,26433130 +g4611,226:28570043,26433130 +g4611,226:30138319,26433130 +k4611,226:32583029,26433130:1162171 +) +(4611,227:23375221,27298210:9207808,485622,102891 +g4611,226:24943497,27298210 +g4611,226:26511773,27298210 +g4611,226:28080049,27298210 +k4611,227:30919397,27298210:1663632 +k4611,227:32583029,27298210:1663632 +) +(4611,228:20753781,28176727:11829248,530548,141066 +h4611,227:20753781,28176727:0,0,0 +r4611,249:20753781,28176727:0,671614,141066 +g4611,227:22064501,28176727 +g4611,227:22064501,28176727 +g4611,227:29076479,28176727 +k4611,228:31427443,28176727:1155587 +k4611,228:32583029,28176727:1155586 +) +(4611,229:20753781,29055245:11829248,530548,141066 +h4611,228:20753781,29055245:0,0,0 +r4611,249:20753781,29055245:0,671614,141066 +g4611,228:22064501,29055245 +g4611,228:22064501,29055245 +g4611,228:27001767,29055245 +g4611,228:28570043,29055245 +k4611,229:31174225,29055245:1408805 +k4611,229:32583029,29055245:1408804 +) +(4611,230:20753781,29933763:11829248,530548,141066 +h4611,229:20753781,29933763:0,0,0 +r4611,249:20753781,29933763:0,671614,141066 +g4611,229:22064501,29933763 +g4611,229:22064501,29933763 +g4611,229:27001767,29933763 +k4611,230:31151615,29933763:1431415 +k4611,230:32583029,29933763:1431414 +) +(4611,232:20753781,30812281:11829248,530548,141066 +h4611,230:20753781,30812281:0,0,0 +r4611,249:20753781,30812281:0,671614,141066 +g4611,230:22064501,30812281 +g4611,230:22064501,30812281 +g4611,230:27416709,30812281 +g4611,230:28984985,30812281 +g4611,230:30553261,30812281 +k4611,230:32583029,30812281:747229 +) +(4611,232:23375221,31677361:9207808,485622,102891 +g4611,230:24943497,31677361 +g4611,230:26511773,31677361 +g4611,230:28080049,31677361 +g4611,231:29648325,31677361 +g4611,231:31216601,31677361 +k4611,231:32583029,31677361:83889 +) +(4611,232:23375221,32542441:9207808,485622,102891 +g4611,231:24943497,32542441 +g4611,231:26511773,32542441 +g4611,231:28080049,32542441 +g4611,231:29648325,32542441 +k4611,232:31713366,32542441:869664 +k4611,232:32583029,32542441:869663 +) +(4611,233:20753781,33420958:11829248,530548,141066 +h4611,232:20753781,33420958:0,0,0 +r4611,249:20753781,33420958:0,671614,141066 +g4611,232:22064501,33420958 +g4611,232:22064501,33420958 +g4611,232:28246594,33420958 +g4611,232:29814870,33420958 +k4611,233:31796638,33420958:786391 +k4611,233:32583029,33420958:786391 +) +(4611,234:20753781,34299476:11829248,530548,141066 +h4611,233:20753781,34299476:0,0,0 +r4611,249:20753781,34299476:0,671614,141066 +g4611,233:22064501,34299476 +g4611,233:22064501,34299476 +g4611,233:29491421,34299476 +g4611,233:31059697,34299476 +k4611,233:32583029,34299476:240793 +) +(4611,234:23375221,35164556:9207808,485622,102891 +g4611,233:24943497,35164556 +k4611,234:29360952,35164556:3222078 +k4611,234:32583029,35164556:3222077 +) +(4611,235:20753781,36043074:11829248,530548,141066 +h4611,234:20753781,36043074:0,0,0 +r4611,249:20753781,36043074:0,671614,141066 +g4611,234:22064501,36043074 +g4611,234:22064501,36043074 +g4611,234:28246594,36043074 +k4611,235:31002670,36043074:1580360 +k4611,235:32583029,36043074:1580359 +) +(4611,236:20753781,36921592:11829248,530548,141066 +h4611,235:20753781,36921592:0,0,0 +r4611,249:20753781,36921592:0,671614,141066 +g4611,235:22064501,36921592 +g4611,235:22064501,36921592 +g4611,235:27416709,36921592 +k4611,236:30597558,36921592:1985472 +k4611,236:32583029,36921592:1985471 +) +(4611,237:20753781,37800109:11829248,530548,141066 +h4611,236:20753781,37800109:0,0,0 +r4611,249:20753781,37800109:0,671614,141066 +g4611,236:22064501,37800109 +g4611,236:22064501,37800109 +g4611,236:27001767,37800109 +g4611,236:28570043,37800109 +k4611,237:31174225,37800109:1408805 +k4611,237:32583029,37800109:1408804 +) +(4611,238:20753781,38678627:11829248,530548,141066 +h4611,237:20753781,38678627:0,0,0 +r4611,249:20753781,38678627:0,671614,141066 +g4611,237:22064501,38678627 +g4611,237:22064501,38678627 +g4611,237:27831652,38678627 +g4611,237:29399928,38678627 +k4611,238:31589167,38678627:993862 +k4611,238:32583029,38678627:993862 +) +(4611,239:20753781,39557145:11829248,530548,141066 +h4611,238:20753781,39557145:0,0,0 +r4611,249:20753781,39557145:0,671614,141066 +g4611,238:22064501,39557145 +g4611,238:22064501,39557145 +g4611,238:26586824,39557145 +k4611,239:30182615,39557145:2400414 +k4611,239:32583029,39557145:2400414 +) +(4611,240:20753781,40435663:11829248,530548,141066 +h4611,239:20753781,40435663:0,0,0 +r4611,249:20753781,40435663:0,671614,141066 +g4611,239:22064501,40435663 +g4611,239:22064501,40435663 +g4611,239:28246594,40435663 +g4611,239:29814870,40435663 +k4611,240:31796638,40435663:786391 +k4611,240:32583029,40435663:786391 +) +(4611,241:20753781,41314180:11829248,538806,141066 +h4611,240:20753781,41314180:0,0,0 +r4611,249:20753781,41314180:0,679872,141066 +g4611,240:22064501,41314180 +g4611,240:22064501,41314180 +g4611,240:26171882,41314180 +k4611,241:29975144,41314180:2607885 +k4611,241:32583029,41314180:2607885 +) +(4611,242:20753781,42192698:11829248,538806,141066 +h4611,241:20753781,42192698:0,0,0 +r4611,249:20753781,42192698:0,679872,141066 +g4611,241:22064501,42192698 +g4611,241:22064501,42192698 +g4611,241:28661536,42192698 +k4611,242:31219971,42192698:1363058 +k4611,242:32583029,42192698:1363058 +) +(4611,243:20753781,43071216:11829248,538806,141066 +h4611,242:20753781,43071216:0,0,0 +r4611,249:20753781,43071216:0,679872,141066 +g4611,242:22064501,43071216 +g4611,242:22064501,43071216 +g4611,242:28246594,43071216 +k4611,243:31012500,43071216:1570529 +k4611,243:32583029,43071216:1570529 +) +(4611,244:20753781,43949734:11829248,530548,141066 +h4611,243:20753781,43949734:0,0,0 +r4611,249:20753781,43949734:0,671614,141066 +g4611,243:22064501,43949734 +g4611,243:22064501,43949734 +g4611,243:27831652,43949734 +g4611,243:29399928,43949734 +g4611,243:30968204,43949734 +k4611,244:32373305,43949734:209724 +k4611,244:32583029,43949734:209724 +) +(4611,245:20753781,44828251:11829248,530548,141066 +h4611,244:20753781,44828251:0,0,0 +r4611,249:20753781,44828251:0,671614,141066 +g4611,244:22064501,44828251 +g4611,244:22064501,44828251 +g4611,244:27416709,44828251 +k4611,245:30597558,44828251:1985472 +k4611,245:32583029,44828251:1985471 +) +(4611,246:20753781,45706769:11829248,530548,141066 +h4611,245:20753781,45706769:0,0,0 +r4611,249:20753781,45706769:0,671614,141066 +g4611,245:22064501,45706769 +g4611,245:22064501,45706769 +g4611,245:27001767,45706769 +k4611,246:30380256,45706769:2202773 +k4611,246:32583029,45706769:2202773 +) +] +(4611,249:32583029,45706769:0,355205,126483 +h4611,249:32583029,45706769:420741,355205,126483 +k4611,249:32583029,45706769:-420741 +) +) +] +(4611,249:32583029,45706769:0,0,0 +g4611,249:32583029,45706769 +) +) +] +(4611,249:6630773,47279633:25952256,0,0 +h4611,249:6630773,47279633:25952256,0,0 +) +] +(4611,249:4262630,4025873:0,0,0 +[4611,249:-473656,4025873:0,0,0 +(4611,249:-473656,-710413:0,0,0 +(4611,249:-473656,-710413:0,0,0 +g4611,249:-473656,-710413 +) +g4611,249:-473656,-710413 +) +] +) +] +!30566 +}457 !12 -{457 -[4607,340:4262630,47279633:28320399,43253760,0 -(4607,340:4262630,4025873:0,0,0 -[4607,340:-473656,4025873:0,0,0 -(4607,340:-473656,-710413:0,0,0 -(4607,340:-473656,-644877:0,0,0 -k4607,340:-473656,-644877:-65536 +{458 +[4611,339:4262630,47279633:28320399,43253760,0 +(4611,339:4262630,4025873:0,0,0 +[4611,339:-473656,4025873:0,0,0 +(4611,339:-473656,-710413:0,0,0 +(4611,339:-473656,-644877:0,0,0 +k4611,339:-473656,-644877:-65536 ) -(4607,340:-473656,4736287:0,0,0 -k4607,340:-473656,4736287:5209943 +(4611,339:-473656,4736287:0,0,0 +k4611,339:-473656,4736287:5209943 ) -g4607,340:-473656,-710413 +g4611,339:-473656,-710413 ) ] ) -[4607,340:6630773,47279633:25952256,43253760,0 -[4607,340:6630773,4812305:25952256,786432,0 -(4607,340:6630773,4812305:25952256,513147,134348 -(4607,340:6630773,4812305:25952256,513147,134348 -g4607,340:3078558,4812305 -[4607,340:3078558,4812305:0,0,0 -(4607,340:3078558,2439708:0,1703936,0 -k4607,340:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,340:2537886,2439708:1179648,16384,0 +[4611,339:6630773,47279633:25952256,43253760,0 +[4611,339:6630773,4812305:25952256,786432,0 +(4611,339:6630773,4812305:25952256,513147,134348 +(4611,339:6630773,4812305:25952256,513147,134348 +g4611,339:3078558,4812305 +[4611,339:3078558,4812305:0,0,0 +(4611,339:3078558,2439708:0,1703936,0 +k4611,339:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,339:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,340:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,339:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,340:3078558,4812305:0,0,0 -(4607,340:3078558,2439708:0,1703936,0 -g4607,340:29030814,2439708 -g4607,340:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,340:36151628,1915420:16384,1179648,0 +[4611,339:3078558,4812305:0,0,0 +(4611,339:3078558,2439708:0,1703936,0 +g4611,339:29030814,2439708 +g4611,339:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,339:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,340:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,339:37855564,2439708:1179648,16384,0 ) ) -k4607,340:3078556,2439708:-34777008 +k4611,339:3078556,2439708:-34777008 ) ] -[4607,340:3078558,4812305:0,0,0 -(4607,340:3078558,49800853:0,16384,2228224 -k4607,340:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,340:2537886,49800853:1179648,16384,0 +[4611,339:3078558,4812305:0,0,0 +(4611,339:3078558,49800853:0,16384,2228224 +k4611,339:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,339:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,340:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,339:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,340:3078558,4812305:0,0,0 -(4607,340:3078558,49800853:0,16384,2228224 -g4607,340:29030814,49800853 -g4607,340:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,340:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,340:37855564,49800853:1179648,16384,0 -) -) -k4607,340:3078556,49800853:-34777008 -) -] -g4607,340:6630773,4812305 -k4607,340:23083588,4812305:15257438 -g4607,340:24981510,4812305 -g4607,340:25796777,4812305 -g4607,340:26410194,4812305 -g4607,340:28753761,4812305 -g4607,340:29709275,4812305 -) -) -] -[4607,340:6630773,45706769:25952256,40108032,0 -(4607,340:6630773,45706769:25952256,40108032,0 -(4607,340:6630773,45706769:0,0,0 -g4607,340:6630773,45706769 -) -[4607,340:6630773,45706769:25952256,40108032,0 -(4607,340:6630773,45706769:25952256,40108032,126483 -[4607,340:6630773,45706769:11829248,40108032,102891 -(4607,248:6630773,6254097:11829248,530548,141066 -h4607,247:6630773,6254097:0,0,0 -r4607,340:6630773,6254097:0,671614,141066 -g4607,247:7941493,6254097 -g4607,247:7941493,6254097 -g4607,247:12878759,6254097 -g4607,247:15970092,6254097 -k4607,247:18460021,6254097:1207390 -) -(4607,248:9252213,7119177:9207808,485622,102891 -g4607,247:10820489,7119177 -k4607,248:15237944,7119177:3222078 -k4607,248:18460021,7119177:3222077 -) -(4607,249:6630773,7996735:11829248,530548,141066 -h4607,248:6630773,7996735:0,0,0 -r4607,340:6630773,7996735:0,671614,141066 -g4607,248:7941493,7996735 -g4607,248:7941493,7996735 -g4607,248:15368413,7996735 -k4607,249:17511906,7996735:948116 -k4607,249:18460021,7996735:948115 -) -(4607,250:6630773,8874293:11829248,530548,141066 -h4607,249:6630773,8874293:0,0,0 -r4607,340:6630773,8874293:0,671614,141066 -g4607,249:7941493,8874293 -g4607,249:7941493,8874293 -g4607,249:12878759,8874293 -g4607,249:14447035,8874293 -k4607,250:17051217,8874293:1408805 -k4607,250:18460021,8874293:1408804 -) -(4607,251:6630773,9751851:11829248,530548,141066 -h4607,250:6630773,9751851:0,0,0 -r4607,340:6630773,9751851:0,671614,141066 -g4607,250:7941493,9751851 -g4607,250:7941493,9751851 -g4607,250:13708644,9751851 -k4607,251:16682021,9751851:1778000 -k4607,251:18460021,9751851:1778000 -) -(4607,252:6630773,10629409:11829248,530548,141066 -h4607,251:6630773,10629409:0,0,0 -r4607,340:6630773,10629409:0,671614,141066 -g4607,251:7941493,10629409 -g4607,251:7941493,10629409 -g4607,251:13293701,10629409 -g4607,251:14861977,10629409 -g4607,251:16430253,10629409 -k4607,252:18032995,10629409:427026 -k4607,252:18460021,10629409:427026 -) -(4607,253:6630773,11506967:11829248,530548,141066 -h4607,252:6630773,11506967:0,0,0 -r4607,340:6630773,11506967:0,671614,141066 -g4607,252:7941493,11506967 -g4607,252:7941493,11506967 -g4607,252:10389104,11506967 -k4607,253:15012421,11506967:3447601 -k4607,253:18460021,11506967:3447600 -) -(4607,254:6630773,12384524:11829248,530548,141066 -h4607,253:6630773,12384524:0,0,0 -r4607,340:6630773,12384524:0,671614,141066 -g4607,253:7941493,12384524 -g4607,253:7941493,12384524 -g4607,253:13708644,12384524 -k4607,254:16682021,12384524:1778000 -k4607,254:18460021,12384524:1778000 -) -(4607,255:6630773,13262082:11829248,530548,141066 -h4607,254:6630773,13262082:0,0,0 -r4607,340:6630773,13262082:0,671614,141066 -g4607,254:7941493,13262082 -g4607,254:7941493,13262082 -g4607,254:12048874,13262082 -g4607,254:13617150,13262082 -k4607,255:16636274,13262082:1823747 -k4607,255:18460021,13262082:1823747 -) -(4607,256:6630773,14139640:11829248,530548,141066 -h4607,255:6630773,14139640:0,0,0 -r4607,340:6630773,14139640:0,671614,141066 -g4607,255:7941493,14139640 -g4607,255:7941493,14139640 -g4607,255:13293701,14139640 -k4607,256:16464719,14139640:1995302 -k4607,256:18460021,14139640:1995302 -) -(4607,257:6630773,15017198:11829248,530548,141066 -h4607,256:6630773,15017198:0,0,0 -r4607,340:6630773,15017198:0,671614,141066 -g4607,256:7941493,15017198 -g4607,256:7941493,15017198 -g4607,256:11218989,15017198 -k4607,257:15437194,15017198:3022828 -k4607,257:18460021,15017198:3022827 -) -(4607,258:6630773,15894756:11829248,530548,141066 -h4607,257:6630773,15894756:0,0,0 -r4607,340:6630773,15894756:0,671614,141066 -g4607,257:7941493,15894756 -g4607,257:7941493,15894756 -g4607,257:11633931,15894756 -g4607,257:13202207,15894756 -g4607,257:14770483,15894756 -k4607,258:17203110,15894756:1256911 -k4607,258:18460021,15894756:1256911 -) -(4607,259:6630773,16772314:11829248,530548,141066 -h4607,258:6630773,16772314:0,0,0 -r4607,340:6630773,16772314:0,671614,141066 -g4607,258:7941493,16772314 -g4607,258:7941493,16772314 -g4607,258:13293701,16772314 -k4607,259:16474550,16772314:1985472 -k4607,259:18460021,16772314:1985471 -) -(4607,260:6630773,17649872:11829248,530548,141066 -h4607,259:6630773,17649872:0,0,0 -r4607,340:6630773,17649872:0,671614,141066 -g4607,259:7941493,17649872 -g4607,259:7941493,17649872 -g4607,259:12048874,17649872 -k4607,260:15852136,17649872:2607885 -k4607,260:18460021,17649872:2607885 -) -(4607,261:6630773,18527430:11829248,530548,141066 -h4607,260:6630773,18527430:0,0,0 -r4607,340:6630773,18527430:0,671614,141066 -g4607,260:7941493,18527430 -g4607,260:7941493,18527430 -g4607,260:9974162,18527430 -k4607,261:14615551,18527430:3844471 -k4607,261:18460021,18527430:3844470 -) -(4607,262:6630773,19404988:11829248,530548,141066 -h4607,261:6630773,19404988:0,0,0 -r4607,340:6630773,19404988:0,671614,141066 -g4607,261:7941493,19404988 -g4607,261:7941493,19404988 -g4607,261:10804046,19404988 -k4607,262:15229722,19404988:3230299 -k4607,262:18460021,19404988:3230299 -) -(4607,263:6630773,20282546:11829248,530548,141066 -h4607,262:6630773,20282546:0,0,0 -r4607,340:6630773,20282546:0,671614,141066 -g4607,262:7941493,20282546 -g4607,262:7941493,20282546 -g4607,262:10389104,20282546 -g4607,262:11957380,20282546 -k4607,263:15806389,20282546:2653632 -k4607,263:18460021,20282546:2653632 -) -(4607,264:6630773,21160103:11829248,530548,141066 -h4607,263:6630773,21160103:0,0,0 -r4607,340:6630773,21160103:0,671614,141066 -g4607,263:7941493,21160103 -g4607,263:7941493,21160103 -g4607,263:10804046,21160103 -k4607,264:15030493,21160103:3429529 -k4607,264:18460021,21160103:3429528 -) -(4607,265:6630773,22037661:11829248,530548,141066 -h4607,264:6630773,22037661:0,0,0 -r4607,340:6630773,22037661:0,671614,141066 -g4607,264:7941493,22037661 -g4607,264:7941493,22037661 -g4607,264:11218989,22037661 -k4607,265:15237964,22037661:3222057 -k4607,265:18460021,22037661:3222057 -) -(4607,266:6630773,22915219:11829248,530548,141066 -h4607,265:6630773,22915219:0,0,0 -r4607,340:6630773,22915219:0,671614,141066 -g4607,265:7941493,22915219 -g4607,265:7941493,22915219 -g4607,265:12463816,22915219 -g4607,265:14032092,22915219 -k4607,266:16833915,22915219:1626107 -k4607,266:18460021,22915219:1626106 -) -(4607,267:6630773,23792777:11829248,530548,141066 -h4607,266:6630773,23792777:0,0,0 -r4607,340:6630773,23792777:0,671614,141066 -g4607,266:7941493,23792777 -g4607,266:7941493,23792777 -g4607,266:10804046,23792777 -g4607,266:11973863,23792777 -g4607,266:13143680,23792777 -k4607,267:16389709,23792777:2070313 -k4607,267:18460021,23792777:2070312 -) -(4607,268:6630773,24670335:11829248,530548,102891 -h4607,267:6630773,24670335:0,0,0 -r4607,340:6630773,24670335:0,633439,102891 -g4607,267:7941493,24670335 -g4607,267:7941493,24670335 -g4607,267:10389104,24670335 -k4607,268:15022251,24670335:3437770 -k4607,268:18460021,24670335:3437770 -) -(4607,269:6630773,25547893:11829248,530548,102891 -h4607,268:6630773,25547893:0,0,0 -r4607,340:6630773,25547893:0,633439,102891 -g4607,268:7941493,25547893 -g4607,268:7941493,25547893 -g4607,268:11633931,25547893 -g4607,268:13202207,25547893 -k4607,269:16418972,25547893:2041049 -k4607,269:18460021,25547893:2041049 -) -(4607,270:6630773,26425451:11829248,530548,132808 -h4607,269:6630773,26425451:0,0,0 -r4607,340:6630773,26425451:0,663356,132808 -g4607,269:7941493,26425451 -g4607,269:7941493,26425451 -g4607,269:10804046,26425451 -g4607,269:11973863,26425451 -k4607,270:15605571,26425451:2854451 -k4607,270:18460021,26425451:2854450 -) -(4607,271:6630773,27303009:11829248,530548,102891 -h4607,270:6630773,27303009:0,0,0 -r4607,340:6630773,27303009:0,633439,102891 -g4607,270:7941493,27303009 -g4607,270:7941493,27303009 -g4607,270:10389104,27303009 -k4607,271:15022251,27303009:3437770 -k4607,271:18460021,27303009:3437770 -) -(4607,272:6630773,28180567:11829248,530548,102891 -h4607,271:6630773,28180567:0,0,0 -r4607,340:6630773,28180567:0,633439,102891 -g4607,271:7941493,28180567 -g4607,271:7941493,28180567 -g4607,271:14953471,28180567 -k4607,272:17304435,28180567:1155587 -k4607,272:18460021,28180567:1155586 -) -(4607,273:6630773,29058125:11829248,530548,132808 -h4607,272:6630773,29058125:0,0,0 -r4607,340:6630773,29058125:0,663356,132808 -g4607,272:7941493,29058125 -g4607,272:7941493,29058125 -g4607,272:13293701,29058125 -k4607,273:16474550,29058125:1985472 -k4607,273:18460021,29058125:1985471 -) -(4607,274:6630773,29935683:11829248,530548,132808 -h4607,273:6630773,29935683:0,0,0 -r4607,340:6630773,29935683:0,663356,132808 -g4607,273:7941493,29935683 -g4607,273:7941493,29935683 -g4607,273:14123586,29935683 -k4607,274:16889492,29935683:1570529 -k4607,274:18460021,29935683:1570529 -) -(4607,275:6630773,30813240:11829248,530548,132808 -h4607,274:6630773,30813240:0,0,0 -r4607,340:6630773,30813240:0,663356,132808 -g4607,274:7941493,30813240 -g4607,274:7941493,30813240 -g4607,274:13293701,30813240 -k4607,275:16474550,30813240:1985472 -k4607,275:18460021,30813240:1985471 -) -(4607,276:6630773,31690798:11829248,530548,102891 -h4607,275:6630773,31690798:0,0,0 -r4607,340:6630773,31690798:0,633439,102891 -g4607,275:7941493,31690798 -g4607,275:7941493,31690798 -g4607,275:9559219,31690798 -g4607,275:12650552,31690798 -g4607,275:14218828,31690798 -g4607,275:15787104,31690798 -k4607,275:18460021,31690798:1390378 -) -(4607,276:9252213,32555878:9207808,485622,102891 -g4607,275:10820489,32555878 -k4607,276:15237944,32555878:3222078 -k4607,276:18460021,32555878:3222077 -) -(4607,277:6630773,33433436:11829248,530548,102891 -h4607,276:6630773,33433436:0,0,0 -r4607,340:6630773,33433436:0,633439,102891 -g4607,276:7941493,33433436 -g4607,276:7941493,33433436 -g4607,276:12878759,33433436 -k4607,277:16267079,33433436:2192943 -k4607,277:18460021,33433436:2192942 -) -(4607,278:6630773,34310994:11829248,530548,102891 -h4607,277:6630773,34310994:0,0,0 -r4607,340:6630773,34310994:0,633439,102891 -g4607,277:7941493,34310994 -g4607,277:7941493,34310994 -g4607,277:12463816,34310994 -k4607,278:15860378,34310994:2599644 -k4607,278:18460021,34310994:2599643 -) -(4607,279:6630773,35188552:11829248,530548,141066 -h4607,278:6630773,35188552:0,0,0 -r4607,340:6630773,35188552:0,671614,141066 -g4607,278:7941493,35188552 -g4607,278:7941493,35188552 -g4607,278:13293701,35188552 -k4607,279:16464719,35188552:1995302 -k4607,279:18460021,35188552:1995302 -) -(4607,280:6630773,36066110:11829248,530548,141066 -h4607,279:6630773,36066110:0,0,0 -r4607,340:6630773,36066110:0,671614,141066 -g4607,279:7941493,36066110 -g4607,279:7941493,36066110 -g4607,279:15783355,36066110 -k4607,279:18460021,36066110:1394127 -) -(4607,280:9252213,36931190:9207808,485622,11795 -k4607,280:14434145,36931190:4025877 -k4607,280:18460021,36931190:4025876 -) -(4607,281:6630773,37808748:11829248,530548,102891 -h4607,280:6630773,37808748:0,0,0 -r4607,340:6630773,37808748:0,633439,102891 -g4607,280:7941493,37808748 -g4607,280:7941493,37808748 -g4607,280:13708644,37808748 -k4607,281:16682021,37808748:1778000 -k4607,281:18460021,37808748:1778000 -) -(4607,282:6630773,38686306:11829248,530548,132808 -h4607,281:6630773,38686306:0,0,0 -r4607,340:6630773,38686306:0,663356,132808 -g4607,281:7941493,38686306 -g4607,281:7941493,38686306 -g4607,281:12463816,38686306 -k4607,282:15860378,38686306:2599644 -k4607,282:18460021,38686306:2599643 -) -(4607,283:6630773,39563864:11829248,530548,102891 -h4607,282:6630773,39563864:0,0,0 -r4607,340:6630773,39563864:0,633439,102891 -g4607,282:7941493,39563864 -g4607,282:7941493,39563864 -g4607,282:14123586,39563864 -k4607,283:16690263,39563864:1769759 -k4607,283:18460021,39563864:1769758 -) -(4607,284:6630773,40441422:11829248,538806,102891 -h4607,283:6630773,40441422:0,0,0 -r4607,340:6630773,40441422:0,641697,102891 -g4607,283:7941493,40441422 -g4607,283:7941493,40441422 -g4607,283:14538528,40441422 -k4607,284:16887903,40441422:1572118 -k4607,284:18460021,40441422:1572118 -) -(4607,285:6630773,41318980:11829248,530548,102891 -h4607,284:6630773,41318980:0,0,0 -r4607,340:6630773,41318980:0,633439,102891 -g4607,284:7941493,41318980 -g4607,284:7941493,41318980 -g4607,284:13293701,41318980 -g4607,284:14463518,41318980 -k4607,285:16850398,41318980:1609623 -k4607,285:18460021,41318980:1609623 -) -(4607,286:6630773,42196537:11829248,530548,132808 -h4607,285:6630773,42196537:0,0,0 -r4607,340:6630773,42196537:0,663356,132808 -g4607,285:7941493,42196537 -g4607,285:7941493,42196537 -g4607,285:14953471,42196537 -g4607,285:16521747,42196537 -k4607,286:18088573,42196537:371449 -k4607,286:18460021,42196537:371448 -) -(4607,287:6630773,43074095:11829248,530548,102891 -h4607,286:6630773,43074095:0,0,0 -r4607,340:6630773,43074095:0,633439,102891 -g4607,286:7941493,43074095 -g4607,286:7941493,43074095 -g4607,286:12048874,43074095 -k4607,287:15652907,43074095:2807115 -k4607,287:18460021,43074095:2807114 -) -(4607,288:6630773,43951653:11829248,530548,141066 -h4607,287:6630773,43951653:0,0,0 -r4607,340:6630773,43951653:0,671614,141066 -g4607,287:7941493,43951653 -g4607,287:7941493,43951653 -g4607,287:13293701,43951653 -k4607,288:16275320,43951653:2184701 -k4607,288:18460021,43951653:2184701 -) -(4607,289:6630773,44829211:11829248,530548,102891 -h4607,288:6630773,44829211:0,0,0 -r4607,340:6630773,44829211:0,633439,102891 -g4607,288:7941493,44829211 -g4607,288:7941493,44829211 -g4607,288:12878759,44829211 -k4607,289:16058019,44829211:2402003 -k4607,289:18460021,44829211:2402002 -) -(4607,290:6630773,45706769:11829248,530548,102891 -h4607,289:6630773,45706769:0,0,0 -r4607,340:6630773,45706769:0,633439,102891 -g4607,289:7941493,45706769 -g4607,289:7941493,45706769 -g4607,289:11218989,45706769 -g4607,289:12388806,45706769 -k4607,290:15813042,45706769:2646979 -k4607,290:18460021,45706769:2646979 -) -] -k4607,340:19606901,45706769:1146880 -r4607,340:19606901,45706769:0,40234515,126483 -k4607,340:20753781,45706769:1146880 -[4607,340:20753781,45706769:11829248,40108032,102891 -(4607,291:20753781,6254097:11829248,530548,102891 -h4607,290:20753781,6254097:0,0,0 -r4607,340:20753781,6254097:0,633439,102891 -g4607,290:22064501,6254097 -g4607,290:22064501,6254097 -g4607,290:27416709,6254097 -g4607,290:28586526,6254097 -k4607,291:30983237,6254097:1599793 -k4607,291:32583029,6254097:1599792 -) -(4607,292:20753781,7131088:11829248,530548,102891 -h4607,291:20753781,7131088:0,0,0 -r4607,340:20753781,7131088:0,633439,102891 -g4607,291:22064501,7131088 -g4607,291:22064501,7131088 -g4607,291:27001767,7131088 -k4607,292:30390087,7131088:2192943 -k4607,292:32583029,7131088:2192942 -) -(4607,293:20753781,8008078:11829248,530548,102891 -h4607,292:20753781,8008078:0,0,0 -r4607,340:20753781,8008078:0,633439,102891 -g4607,292:22064501,8008078 -g4607,292:22064501,8008078 -g4607,292:25756939,8008078 -k4607,293:29757842,8008078:2825187 -k4607,293:32583029,8008078:2825187 -) -(4607,294:20753781,8885069:11829248,530548,102891 -h4607,293:20753781,8885069:0,0,0 -r4607,340:20753781,8885069:0,633439,102891 -g4607,293:22064501,8885069 -g4607,293:22064501,8885069 -g4607,293:27416709,8885069 -k4607,294:30587727,8885069:1995302 -k4607,294:32583029,8885069:1995302 -) -(4607,295:20753781,9762060:11829248,530548,132808 -h4607,294:20753781,9762060:0,0,0 -r4607,340:20753781,9762060:0,663356,132808 -g4607,294:22064501,9762060 -g4607,294:22064501,9762060 -g4607,294:28246594,9762060 -k4607,295:31012500,9762060:1570529 -k4607,295:32583029,9762060:1570529 -) -(4607,296:20753781,10639051:11829248,530548,102891 -h4607,295:20753781,10639051:0,0,0 -r4607,340:20753781,10639051:0,633439,102891 -g4607,295:22064501,10639051 -g4607,295:22064501,10639051 -g4607,295:27416709,10639051 -k4607,296:30597558,10639051:1985472 -k4607,296:32583029,10639051:1985471 -) -(4607,297:20753781,11516041:11829248,530548,102891 -h4607,296:20753781,11516041:0,0,0 -r4607,340:20753781,11516041:0,633439,102891 -g4607,296:22064501,11516041 -g4607,296:22064501,11516041 -g4607,296:29906363,11516041 -k4607,297:31842385,11516041:740645 -k4607,297:32583029,11516041:740644 -) -(4607,298:20753781,12393032:11829248,530548,102891 -h4607,297:20753781,12393032:0,0,0 -r4607,340:20753781,12393032:0,633439,102891 -g4607,297:22064501,12393032 -g4607,297:22064501,12393032 -g4607,297:28246594,12393032 -k4607,298:31012500,12393032:1570529 -k4607,298:32583029,12393032:1570529 -) -(4607,299:20753781,13270023:11829248,530548,132808 -h4607,298:20753781,13270023:0,0,0 -r4607,340:20753781,13270023:0,663356,132808 -g4607,298:22064501,13270023 -g4607,298:22064501,13270023 -g4607,298:28246594,13270023 -k4607,299:31012500,13270023:1570529 -k4607,299:32583029,13270023:1570529 -) -(4607,300:20753781,14147014:11829248,530548,102891 -h4607,299:20753781,14147014:0,0,0 -r4607,340:20753781,14147014:0,633439,102891 -g4607,299:22064501,14147014 -g4607,299:22064501,14147014 -g4607,299:27416709,14147014 -k4607,300:30597558,14147014:1985472 -k4607,300:32583029,14147014:1985471 -) -(4607,301:20753781,15024004:11829248,530548,102891 -h4607,300:20753781,15024004:0,0,0 -r4607,340:20753781,15024004:0,633439,102891 -g4607,300:22064501,15024004 -g4607,300:22064501,15024004 -g4607,300:25756939,15024004 -k4607,301:29767673,15024004:2815357 -k4607,301:32583029,15024004:2815356 -) -(4607,302:20753781,15900995:11829248,530548,102891 -h4607,301:20753781,15900995:0,0,0 -r4607,340:20753781,15900995:0,633439,102891 -g4607,301:22064501,15900995 -g4607,301:22064501,15900995 -g4607,301:24927054,15900995 -g4607,301:26495330,15900995 -k4607,302:30136868,15900995:2446161 -k4607,302:32583029,15900995:2446161 -) -(4607,303:20753781,16777986:11829248,538806,141066 -h4607,302:20753781,16777986:0,0,0 -r4607,340:20753781,16777986:0,679872,141066 -g4607,302:22064501,16777986 -g4607,302:22064501,16777986 -g4607,302:27001767,16777986 -k4607,303:30380256,16777986:2202773 -k4607,303:32583029,16777986:2202773 -) -(4607,304:20753781,17654976:11829248,530548,141066 -h4607,303:20753781,17654976:0,0,0 -r4607,340:20753781,17654976:0,671614,141066 -g4607,303:22064501,17654976 -g4607,303:22064501,17654976 -g4607,303:25756939,17654976 -g4607,303:26926756,17654976 -g4607,303:28096573,17654976 -g4607,303:29266390,17654976 -g4607,303:30834666,17654976 -k4607,304:32306536,17654976:276493 -k4607,304:32583029,17654976:276493 -) -(4607,305:20753781,18531967:11829248,530548,102891 -h4607,304:20753781,18531967:0,0,0 -r4607,340:20753781,18531967:0,633439,102891 -g4607,304:22064501,18531967 -g4607,304:22064501,18531967 -g4607,304:25756939,18531967 -g4607,304:26926756,18531967 -g4607,304:28096573,18531967 -k4607,305:30937490,18531967:1645540 -k4607,305:32583029,18531967:1645539 -) -(4607,306:20753781,19408958:11829248,530548,102891 -h4607,305:20753781,19408958:0,0,0 -r4607,340:20753781,19408958:0,633439,102891 -g4607,305:22064501,19408958 -g4607,305:22064501,19408958 -g4607,305:26586824,19408958 -k4607,306:30182615,19408958:2400414 -k4607,306:32583029,19408958:2400414 -) -(4607,307:20753781,20285949:11829248,530548,132808 -h4607,306:20753781,20285949:0,0,0 -r4607,340:20753781,20285949:0,663356,132808 -g4607,306:22064501,20285949 -g4607,306:22064501,20285949 -g4607,306:26171882,20285949 -g4607,306:27740158,20285949 -g4607,306:29308434,20285949 -g4607,306:30876710,20285949 -k4607,307:32317728,20285949:265302 -k4607,307:32583029,20285949:265301 -) -(4607,308:20753781,21162939:11829248,530548,102891 -h4607,307:20753781,21162939:0,0,0 -r4607,340:20753781,21162939:0,633439,102891 -g4607,307:22064501,21162939 -g4607,307:22064501,21162939 -g4607,307:25341997,21162939 -k4607,308:29560202,21162939:3022828 -k4607,308:32583029,21162939:3022827 -) -(4607,309:20753781,22039930:11829248,530548,102891 -h4607,308:20753781,22039930:0,0,0 -r4607,340:20753781,22039930:0,633439,102891 -g4607,308:22064501,22039930 -g4607,308:22064501,22039930 -g4607,308:24927054,22039930 -g4607,308:26096871,22039930 -k4607,309:29728579,22039930:2854451 -k4607,309:32583029,22039930:2854450 -) -(4607,310:20753781,22916921:11829248,530548,102891 -h4607,309:20753781,22916921:0,0,0 -r4607,340:20753781,22916921:0,633439,102891 -g4607,309:22064501,22916921 -g4607,309:22064501,22916921 -g4607,309:27001767,22916921 -k4607,310:30380256,22916921:2202773 -k4607,310:32583029,22916921:2202773 -) -(4607,311:20753781,23793912:11829248,538806,102891 -h4607,310:20753781,23793912:0,0,0 -r4607,340:20753781,23793912:0,641697,102891 -g4607,310:22064501,23793912 -g4607,310:22064501,23793912 -g4607,310:27416709,23793912 -k4607,311:30587727,23793912:1995302 -k4607,311:32583029,23793912:1995302 -) -(4607,313:20753781,24670902:11829248,530548,102891 -h4607,311:20753781,24670902:0,0,0 -r4607,340:20753781,24670902:0,633439,102891 -g4607,311:22064501,24670902 -g4607,311:22064501,24670902 -g4607,311:24097170,24670902 -g4607,311:25665446,24670902 -g4607,311:27233722,24670902 -g4607,311:28801998,24670902 -g4607,311:30370274,24670902 -k4607,311:32583029,24670902:930216 -) -(4607,313:23375221,25535982:9207808,485622,102891 -g4607,311:24943497,25535982 -g4607,311:26511773,25535982 -g4607,311:28080049,25535982 -g4607,312:29648325,25535982 -k4607,313:31703535,25535982:879494 -k4607,313:32583029,25535982:879494 -) -(4607,314:20753781,26412973:11829248,530548,102891 -h4607,313:20753781,26412973:0,0,0 -r4607,340:20753781,26412973:0,633439,102891 -g4607,313:22064501,26412973 -g4607,313:22064501,26412973 -g4607,313:24927054,26412973 -k4607,314:29352730,26412973:3230299 -k4607,314:32583029,26412973:3230299 -) -(4607,315:20753781,27289964:11829248,530548,102891 -h4607,314:20753781,27289964:0,0,0 -r4607,340:20753781,27289964:0,633439,102891 -g4607,314:22064501,27289964 -g4607,314:22064501,27289964 -g4607,314:24512112,27289964 -k4607,315:29145259,27289964:3437770 -k4607,315:32583029,27289964:3437770 -) -(4607,316:20753781,28166954:11829248,530548,102891 -h4607,315:20753781,28166954:0,0,0 -r4607,340:20753781,28166954:0,633439,102891 -g4607,315:22064501,28166954 -g4607,315:22064501,28166954 -g4607,315:25341997,28166954 -k4607,316:29560202,28166954:3022828 -k4607,316:32583029,28166954:3022827 -) -(4607,317:20753781,29043945:11829248,530548,141066 -h4607,316:20753781,29043945:0,0,0 -r4607,340:20753781,29043945:0,671614,141066 -g4607,316:22064501,29043945 -g4607,316:22064501,29043945 -g4607,316:24512112,29043945 -g4607,316:25681929,29043945 -g4607,316:27250205,29043945 -g4607,316:28818481,29043945 -g4607,316:30386757,29043945 -k4607,317:32082582,29043945:500448 -k4607,317:32583029,29043945:500447 -) -(4607,318:20753781,29920936:11829248,530548,141066 -h4607,317:20753781,29920936:0,0,0 -r4607,340:20753781,29920936:0,671614,141066 -g4607,317:22064501,29920936 -g4607,317:22064501,29920936 -g4607,317:25341997,29920936 -g4607,317:26511814,29920936 -k4607,318:30145110,29920936:2437919 -k4607,318:32583029,29920936:2437919 -) -(4607,319:20753781,30797927:11829248,530548,141066 -h4607,318:20753781,30797927:0,0,0 -r4607,340:20753781,30797927:0,671614,141066 -g4607,318:22064501,30797927 -g4607,318:22064501,30797927 -g4607,318:24927054,30797927 -k4607,319:29153501,30797927:3429529 -k4607,319:32583029,30797927:3429528 -) -(4607,320:20753781,31674917:11829248,530548,102891 -h4607,319:20753781,31674917:0,0,0 -r4607,340:20753781,31674917:0,633439,102891 -g4607,319:22064501,31674917 -g4607,319:22064501,31674917 -g4607,319:24097170,31674917 -g4607,319:25266987,31674917 -k4607,320:29522697,31674917:3060333 -k4607,320:32583029,31674917:3060332 -) -(4607,321:20753781,32551908:11829248,530548,102891 -h4607,320:20753781,32551908:0,0,0 -r4607,340:20753781,32551908:0,633439,102891 -g4607,320:22064501,32551908 -g4607,320:22064501,32551908 -g4607,320:24512112,32551908 -k4607,321:29145259,32551908:3437770 -k4607,321:32583029,32551908:3437770 -) -(4607,322:20753781,33428899:11829248,530548,102891 -h4607,321:20753781,33428899:0,0,0 -r4607,340:20753781,33428899:0,633439,102891 -g4607,321:22064501,33428899 -g4607,321:22064501,33428899 -g4607,321:25756939,33428899 -k4607,322:29767673,33428899:2815357 -k4607,322:32583029,33428899:2815356 -) -(4607,323:20753781,34305890:11829248,530548,102891 -h4607,322:20753781,34305890:0,0,0 -r4607,340:20753781,34305890:0,633439,102891 -g4607,322:22064501,34305890 -g4607,322:22064501,34305890 -g4607,322:25341997,34305890 -k4607,323:29351142,34305890:3231888 -k4607,323:32583029,34305890:3231887 -) -(4607,324:20753781,35182880:11829248,530548,102891 -h4607,323:20753781,35182880:0,0,0 -r4607,340:20753781,35182880:0,633439,102891 -g4607,323:22064501,35182880 -g4607,323:22064501,35182880 -g4607,323:26171882,35182880 -k4607,324:29965314,35182880:2617716 -k4607,324:32583029,35182880:2617715 -) -(4607,325:20753781,36059871:11829248,530548,102891 -h4607,324:20753781,36059871:0,0,0 -r4607,340:20753781,36059871:0,633439,102891 -g4607,324:22064501,36059871 -g4607,324:22064501,36059871 -g4607,324:25756939,36059871 -g4607,324:26926756,36059871 -g4607,324:28096573,36059871 -g4607,324:29664849,36059871 -k4607,325:31721628,36059871:861402 -k4607,325:32583029,36059871:861401 -) -(4607,326:20753781,36936862:11829248,530548,102891 -h4607,325:20753781,36936862:0,0,0 -r4607,340:20753781,36936862:0,633439,102891 -g4607,325:22064501,36936862 -g4607,325:22064501,36936862 -g4607,325:24512112,36936862 -g4607,325:26080388,36936862 -k4607,326:29929397,36936862:2653632 -k4607,326:32583029,36936862:2653632 -) -(4607,327:20753781,37813852:11829248,530548,102891 -h4607,326:20753781,37813852:0,0,0 -r4607,340:20753781,37813852:0,633439,102891 -g4607,326:22064501,37813852 -g4607,326:22064501,37813852 -g4607,326:24927054,37813852 -g4607,326:26495330,37813852 -g4607,326:28063606,37813852 -k4607,327:30921006,37813852:1662023 -k4607,327:32583029,37813852:1662023 -) -(4607,328:20753781,38690843:11829248,530548,102891 -h4607,327:20753781,38690843:0,0,0 -r4607,340:20753781,38690843:0,633439,102891 -g4607,327:22064501,38690843 -g4607,327:22064501,38690843 -g4607,327:25756939,38690843 -k4607,328:29767673,38690843:2815357 -k4607,328:32583029,38690843:2815356 -) -(4607,329:20753781,39567834:11829248,530548,102891 -h4607,328:20753781,39567834:0,0,0 -r4607,340:20753781,39567834:0,633439,102891 -g4607,328:22064501,39567834 -g4607,328:22064501,39567834 -g4607,328:26171882,39567834 -g4607,328:27740158,39567834 -k4607,329:30759282,39567834:1823747 -k4607,329:32583029,39567834:1823747 -) -(4607,330:20753781,40444825:11829248,530548,141066 -h4607,329:20753781,40444825:0,0,0 -r4607,340:20753781,40444825:0,671614,141066 -g4607,329:22064501,40444825 -g4607,329:22064501,40444825 -g4607,329:24927054,40444825 -k4607,330:29342900,40444825:3240130 -k4607,330:32583029,40444825:3240129 -) -(4607,331:20753781,41321815:11829248,530548,102891 -h4607,330:20753781,41321815:0,0,0 -r4607,340:20753781,41321815:0,633439,102891 -g4607,330:22064501,41321815 -g4607,330:22064501,41321815 -g4607,330:24512112,41321815 -g4607,330:26080388,41321815 -k4607,331:29929397,41321815:2653632 -k4607,331:32583029,41321815:2653632 -) -(4607,332:20753781,42198806:11829248,530548,102891 -h4607,331:20753781,42198806:0,0,0 -r4607,340:20753781,42198806:0,633439,102891 -g4607,331:22064501,42198806 -g4607,331:22064501,42198806 -g4607,331:24927054,42198806 -g4607,331:26495330,42198806 -k4607,332:30136868,42198806:2446161 -k4607,332:32583029,42198806:2446161 -) -(4607,333:20753781,43075797:11829248,538806,102891 -h4607,332:20753781,43075797:0,0,0 -r4607,340:20753781,43075797:0,641697,102891 -g4607,332:22064501,43075797 -g4607,332:22064501,43075797 -g4607,332:27831652,43075797 -k4607,333:30795199,43075797:1787831 -k4607,333:32583029,43075797:1787830 -) -(4607,334:20753781,43952788:11829248,530548,102891 -h4607,333:20753781,43952788:0,0,0 -r4607,340:20753781,43952788:0,633439,102891 -g4607,333:22064501,43952788 -g4607,333:22064501,43952788 -g4607,333:28246594,43952788 -g4607,333:29814870,43952788 -k4607,334:31786808,43952788:796222 -k4607,334:32583029,43952788:796221 -) -(4607,335:20753781,44829778:11829248,530548,102891 -h4607,334:20753781,44829778:0,0,0 -r4607,340:20753781,44829778:0,633439,102891 -g4607,334:22064501,44829778 -g4607,334:22064501,44829778 -g4607,334:25756939,44829778 -g4607,334:27325215,44829778 -k4607,335:30551811,44829778:2031219 -k4607,335:32583029,44829778:2031218 -) -(4607,336:20753781,45706769:11829248,530548,102891 -h4607,335:20753781,45706769:0,0,0 -r4607,340:20753781,45706769:0,633439,102891 -g4607,335:22064501,45706769 -g4607,335:22064501,45706769 -g4607,335:25341997,45706769 -g4607,335:26511814,45706769 -g4607,335:28080090,45706769 -g4607,335:29648366,45706769 -g4607,335:31216642,45706769 -k4607,336:32497524,45706769:85505 -k4607,336:32583029,45706769:85505 -) -] -(4607,340:32583029,45706769:0,355205,126483 -h4607,340:32583029,45706769:420741,355205,126483 -k4607,340:32583029,45706769:-420741 -) -) -] -(4607,340:32583029,45706769:0,0,0 -g4607,340:32583029,45706769 -) -) -] -(4607,340:6630773,47279633:25952256,0,0 -h4607,340:6630773,47279633:25952256,0,0 -) -] -(4607,340:4262630,4025873:0,0,0 -[4607,340:-473656,4025873:0,0,0 -(4607,340:-473656,-710413:0,0,0 -(4607,340:-473656,-710413:0,0,0 -g4607,340:-473656,-710413 -) -g4607,340:-473656,-710413 -) -] -) -] -!31032 -}457 +[4611,339:3078558,4812305:0,0,0 +(4611,339:3078558,49800853:0,16384,2228224 +g4611,339:29030814,49800853 +g4611,339:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,339:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,339:37855564,49800853:1179648,16384,0 +) +) +k4611,339:3078556,49800853:-34777008 +) +] +g4611,339:6630773,4812305 +k4611,339:23083588,4812305:15257438 +g4611,339:24981510,4812305 +g4611,339:25796777,4812305 +g4611,339:26410194,4812305 +g4611,339:28753761,4812305 +g4611,339:29709275,4812305 +) +) +] +[4611,339:6630773,45706769:25952256,40108032,0 +(4611,339:6630773,45706769:25952256,40108032,0 +(4611,339:6630773,45706769:0,0,0 +g4611,339:6630773,45706769 +) +[4611,339:6630773,45706769:25952256,40108032,0 +(4611,339:6630773,45706769:25952256,40108032,126483 +[4611,339:6630773,45706769:11829248,40108032,102891 +(4611,247:6630773,6254097:11829248,530548,141066 +h4611,246:6630773,6254097:0,0,0 +r4611,339:6630773,6254097:0,671614,141066 +g4611,246:7941493,6254097 +g4611,246:7941493,6254097 +g4611,246:13293701,6254097 +g4611,246:14861977,6254097 +k4611,247:17258688,6254097:1201334 +k4611,247:18460021,6254097:1201333 +) +(4611,248:6630773,7131655:11829248,530548,141066 +h4611,247:6630773,7131655:0,0,0 +r4611,339:6630773,7131655:0,671614,141066 +g4611,247:7941493,7131655 +g4611,247:7941493,7131655 +g4611,247:12878759,7131655 +g4611,247:15970092,7131655 +k4611,247:18460021,7131655:1207390 +) +(4611,248:9252213,7996735:9207808,485622,102891 +g4611,247:10820489,7996735 +k4611,248:15237944,7996735:3222078 +k4611,248:18460021,7996735:3222077 +) +(4611,249:6630773,8874293:11829248,530548,141066 +h4611,248:6630773,8874293:0,0,0 +r4611,339:6630773,8874293:0,671614,141066 +g4611,248:7941493,8874293 +g4611,248:7941493,8874293 +g4611,248:15368413,8874293 +k4611,249:17511906,8874293:948116 +k4611,249:18460021,8874293:948115 +) +(4611,250:6630773,9751851:11829248,530548,141066 +h4611,249:6630773,9751851:0,0,0 +r4611,339:6630773,9751851:0,671614,141066 +g4611,249:7941493,9751851 +g4611,249:7941493,9751851 +g4611,249:12878759,9751851 +g4611,249:14447035,9751851 +k4611,250:17051217,9751851:1408805 +k4611,250:18460021,9751851:1408804 +) +(4611,251:6630773,10629409:11829248,530548,141066 +h4611,250:6630773,10629409:0,0,0 +r4611,339:6630773,10629409:0,671614,141066 +g4611,250:7941493,10629409 +g4611,250:7941493,10629409 +g4611,250:13708644,10629409 +k4611,251:16682021,10629409:1778000 +k4611,251:18460021,10629409:1778000 +) +(4611,252:6630773,11506967:11829248,530548,141066 +h4611,251:6630773,11506967:0,0,0 +r4611,339:6630773,11506967:0,671614,141066 +g4611,251:7941493,11506967 +g4611,251:7941493,11506967 +g4611,251:13293701,11506967 +g4611,251:14861977,11506967 +g4611,251:16430253,11506967 +k4611,252:18032995,11506967:427026 +k4611,252:18460021,11506967:427026 +) +(4611,253:6630773,12384524:11829248,530548,141066 +h4611,252:6630773,12384524:0,0,0 +r4611,339:6630773,12384524:0,671614,141066 +g4611,252:7941493,12384524 +g4611,252:7941493,12384524 +g4611,252:10389104,12384524 +k4611,253:15012421,12384524:3447601 +k4611,253:18460021,12384524:3447600 +) +(4611,254:6630773,13262082:11829248,530548,141066 +h4611,253:6630773,13262082:0,0,0 +r4611,339:6630773,13262082:0,671614,141066 +g4611,253:7941493,13262082 +g4611,253:7941493,13262082 +g4611,253:13708644,13262082 +k4611,254:16682021,13262082:1778000 +k4611,254:18460021,13262082:1778000 +) +(4611,255:6630773,14139640:11829248,530548,141066 +h4611,254:6630773,14139640:0,0,0 +r4611,339:6630773,14139640:0,671614,141066 +g4611,254:7941493,14139640 +g4611,254:7941493,14139640 +g4611,254:12048874,14139640 +g4611,254:13617150,14139640 +k4611,255:16636274,14139640:1823747 +k4611,255:18460021,14139640:1823747 +) +(4611,256:6630773,15017198:11829248,530548,141066 +h4611,255:6630773,15017198:0,0,0 +r4611,339:6630773,15017198:0,671614,141066 +g4611,255:7941493,15017198 +g4611,255:7941493,15017198 +g4611,255:13293701,15017198 +k4611,256:16464719,15017198:1995302 +k4611,256:18460021,15017198:1995302 +) +(4611,257:6630773,15894756:11829248,530548,141066 +h4611,256:6630773,15894756:0,0,0 +r4611,339:6630773,15894756:0,671614,141066 +g4611,256:7941493,15894756 +g4611,256:7941493,15894756 +g4611,256:11218989,15894756 +k4611,257:15437194,15894756:3022828 +k4611,257:18460021,15894756:3022827 +) +(4611,258:6630773,16772314:11829248,530548,141066 +h4611,257:6630773,16772314:0,0,0 +r4611,339:6630773,16772314:0,671614,141066 +g4611,257:7941493,16772314 +g4611,257:7941493,16772314 +g4611,257:11633931,16772314 +g4611,257:13202207,16772314 +g4611,257:14770483,16772314 +k4611,258:17203110,16772314:1256911 +k4611,258:18460021,16772314:1256911 +) +(4611,259:6630773,17649872:11829248,530548,141066 +h4611,258:6630773,17649872:0,0,0 +r4611,339:6630773,17649872:0,671614,141066 +g4611,258:7941493,17649872 +g4611,258:7941493,17649872 +g4611,258:13293701,17649872 +k4611,259:16474550,17649872:1985472 +k4611,259:18460021,17649872:1985471 +) +(4611,260:6630773,18527430:11829248,530548,141066 +h4611,259:6630773,18527430:0,0,0 +r4611,339:6630773,18527430:0,671614,141066 +g4611,259:7941493,18527430 +g4611,259:7941493,18527430 +g4611,259:12048874,18527430 +k4611,260:15852136,18527430:2607885 +k4611,260:18460021,18527430:2607885 +) +(4611,261:6630773,19404988:11829248,530548,141066 +h4611,260:6630773,19404988:0,0,0 +r4611,339:6630773,19404988:0,671614,141066 +g4611,260:7941493,19404988 +g4611,260:7941493,19404988 +g4611,260:9974162,19404988 +k4611,261:14615551,19404988:3844471 +k4611,261:18460021,19404988:3844470 +) +(4611,262:6630773,20282546:11829248,530548,141066 +h4611,261:6630773,20282546:0,0,0 +r4611,339:6630773,20282546:0,671614,141066 +g4611,261:7941493,20282546 +g4611,261:7941493,20282546 +g4611,261:10804046,20282546 +k4611,262:15229722,20282546:3230299 +k4611,262:18460021,20282546:3230299 +) +(4611,263:6630773,21160103:11829248,530548,141066 +h4611,262:6630773,21160103:0,0,0 +r4611,339:6630773,21160103:0,671614,141066 +g4611,262:7941493,21160103 +g4611,262:7941493,21160103 +g4611,262:10389104,21160103 +g4611,262:11957380,21160103 +k4611,263:15806389,21160103:2653632 +k4611,263:18460021,21160103:2653632 +) +(4611,264:6630773,22037661:11829248,530548,141066 +h4611,263:6630773,22037661:0,0,0 +r4611,339:6630773,22037661:0,671614,141066 +g4611,263:7941493,22037661 +g4611,263:7941493,22037661 +g4611,263:10804046,22037661 +k4611,264:15030493,22037661:3429529 +k4611,264:18460021,22037661:3429528 +) +(4611,265:6630773,22915219:11829248,530548,141066 +h4611,264:6630773,22915219:0,0,0 +r4611,339:6630773,22915219:0,671614,141066 +g4611,264:7941493,22915219 +g4611,264:7941493,22915219 +g4611,264:11218989,22915219 +k4611,265:15237964,22915219:3222057 +k4611,265:18460021,22915219:3222057 +) +(4611,266:6630773,23792777:11829248,530548,141066 +h4611,265:6630773,23792777:0,0,0 +r4611,339:6630773,23792777:0,671614,141066 +g4611,265:7941493,23792777 +g4611,265:7941493,23792777 +g4611,265:12463816,23792777 +g4611,265:14032092,23792777 +k4611,266:16833915,23792777:1626107 +k4611,266:18460021,23792777:1626106 +) +(4611,267:6630773,24670335:11829248,530548,141066 +h4611,266:6630773,24670335:0,0,0 +r4611,339:6630773,24670335:0,671614,141066 +g4611,266:7941493,24670335 +g4611,266:7941493,24670335 +g4611,266:10804046,24670335 +g4611,266:11973863,24670335 +g4611,266:13143680,24670335 +k4611,267:16389709,24670335:2070313 +k4611,267:18460021,24670335:2070312 +) +(4611,268:6630773,25547893:11829248,530548,102891 +h4611,267:6630773,25547893:0,0,0 +r4611,339:6630773,25547893:0,633439,102891 +g4611,267:7941493,25547893 +g4611,267:7941493,25547893 +g4611,267:10389104,25547893 +k4611,268:15022251,25547893:3437770 +k4611,268:18460021,25547893:3437770 +) +(4611,269:6630773,26425451:11829248,530548,102891 +h4611,268:6630773,26425451:0,0,0 +r4611,339:6630773,26425451:0,633439,102891 +g4611,268:7941493,26425451 +g4611,268:7941493,26425451 +g4611,268:11633931,26425451 +g4611,268:13202207,26425451 +k4611,269:16418972,26425451:2041049 +k4611,269:18460021,26425451:2041049 +) +(4611,270:6630773,27303009:11829248,530548,132808 +h4611,269:6630773,27303009:0,0,0 +r4611,339:6630773,27303009:0,663356,132808 +g4611,269:7941493,27303009 +g4611,269:7941493,27303009 +g4611,269:10804046,27303009 +g4611,269:11973863,27303009 +k4611,270:15605571,27303009:2854451 +k4611,270:18460021,27303009:2854450 +) +(4611,271:6630773,28180567:11829248,530548,102891 +h4611,270:6630773,28180567:0,0,0 +r4611,339:6630773,28180567:0,633439,102891 +g4611,270:7941493,28180567 +g4611,270:7941493,28180567 +g4611,270:10389104,28180567 +k4611,271:15022251,28180567:3437770 +k4611,271:18460021,28180567:3437770 +) +(4611,272:6630773,29058125:11829248,530548,102891 +h4611,271:6630773,29058125:0,0,0 +r4611,339:6630773,29058125:0,633439,102891 +g4611,271:7941493,29058125 +g4611,271:7941493,29058125 +g4611,271:14953471,29058125 +k4611,272:17304435,29058125:1155587 +k4611,272:18460021,29058125:1155586 +) +(4611,273:6630773,29935683:11829248,530548,132808 +h4611,272:6630773,29935683:0,0,0 +r4611,339:6630773,29935683:0,663356,132808 +g4611,272:7941493,29935683 +g4611,272:7941493,29935683 +g4611,272:13293701,29935683 +k4611,273:16474550,29935683:1985472 +k4611,273:18460021,29935683:1985471 +) +(4611,274:6630773,30813240:11829248,530548,132808 +h4611,273:6630773,30813240:0,0,0 +r4611,339:6630773,30813240:0,663356,132808 +g4611,273:7941493,30813240 +g4611,273:7941493,30813240 +g4611,273:14123586,30813240 +k4611,274:16889492,30813240:1570529 +k4611,274:18460021,30813240:1570529 +) +(4611,275:6630773,31690798:11829248,530548,132808 +h4611,274:6630773,31690798:0,0,0 +r4611,339:6630773,31690798:0,663356,132808 +g4611,274:7941493,31690798 +g4611,274:7941493,31690798 +g4611,274:13293701,31690798 +k4611,275:16474550,31690798:1985472 +k4611,275:18460021,31690798:1985471 +) +(4611,276:6630773,32568356:11829248,530548,102891 +h4611,275:6630773,32568356:0,0,0 +r4611,339:6630773,32568356:0,633439,102891 +g4611,275:7941493,32568356 +g4611,275:7941493,32568356 +g4611,275:9559219,32568356 +g4611,275:12650552,32568356 +g4611,275:14218828,32568356 +g4611,275:15787104,32568356 +k4611,275:18460021,32568356:1390378 +) +(4611,276:9252213,33433436:9207808,485622,102891 +g4611,275:10820489,33433436 +k4611,276:15237944,33433436:3222078 +k4611,276:18460021,33433436:3222077 +) +(4611,277:6630773,34310994:11829248,530548,102891 +h4611,276:6630773,34310994:0,0,0 +r4611,339:6630773,34310994:0,633439,102891 +g4611,276:7941493,34310994 +g4611,276:7941493,34310994 +g4611,276:12878759,34310994 +k4611,277:16267079,34310994:2192943 +k4611,277:18460021,34310994:2192942 +) +(4611,278:6630773,35188552:11829248,530548,102891 +h4611,277:6630773,35188552:0,0,0 +r4611,339:6630773,35188552:0,633439,102891 +g4611,277:7941493,35188552 +g4611,277:7941493,35188552 +g4611,277:12463816,35188552 +k4611,278:15860378,35188552:2599644 +k4611,278:18460021,35188552:2599643 +) +(4611,279:6630773,36066110:11829248,530548,141066 +h4611,278:6630773,36066110:0,0,0 +r4611,339:6630773,36066110:0,671614,141066 +g4611,278:7941493,36066110 +g4611,278:7941493,36066110 +g4611,278:13293701,36066110 +k4611,279:16464719,36066110:1995302 +k4611,279:18460021,36066110:1995302 +) +(4611,280:6630773,36943668:11829248,530548,141066 +h4611,279:6630773,36943668:0,0,0 +r4611,339:6630773,36943668:0,671614,141066 +g4611,279:7941493,36943668 +g4611,279:7941493,36943668 +g4611,279:15783355,36943668 +k4611,279:18460021,36943668:1394127 +) +(4611,280:9252213,37808748:9207808,485622,11795 +k4611,280:14434145,37808748:4025877 +k4611,280:18460021,37808748:4025876 +) +(4611,281:6630773,38686306:11829248,530548,102891 +h4611,280:6630773,38686306:0,0,0 +r4611,339:6630773,38686306:0,633439,102891 +g4611,280:7941493,38686306 +g4611,280:7941493,38686306 +g4611,280:13708644,38686306 +k4611,281:16682021,38686306:1778000 +k4611,281:18460021,38686306:1778000 +) +(4611,282:6630773,39563864:11829248,530548,132808 +h4611,281:6630773,39563864:0,0,0 +r4611,339:6630773,39563864:0,663356,132808 +g4611,281:7941493,39563864 +g4611,281:7941493,39563864 +g4611,281:12463816,39563864 +k4611,282:15860378,39563864:2599644 +k4611,282:18460021,39563864:2599643 +) +(4611,283:6630773,40441422:11829248,530548,102891 +h4611,282:6630773,40441422:0,0,0 +r4611,339:6630773,40441422:0,633439,102891 +g4611,282:7941493,40441422 +g4611,282:7941493,40441422 +g4611,282:14123586,40441422 +k4611,283:16690263,40441422:1769759 +k4611,283:18460021,40441422:1769758 +) +(4611,284:6630773,41318980:11829248,538806,102891 +h4611,283:6630773,41318980:0,0,0 +r4611,339:6630773,41318980:0,641697,102891 +g4611,283:7941493,41318980 +g4611,283:7941493,41318980 +g4611,283:14538528,41318980 +k4611,284:16887903,41318980:1572118 +k4611,284:18460021,41318980:1572118 +) +(4611,285:6630773,42196537:11829248,530548,102891 +h4611,284:6630773,42196537:0,0,0 +r4611,339:6630773,42196537:0,633439,102891 +g4611,284:7941493,42196537 +g4611,284:7941493,42196537 +g4611,284:13293701,42196537 +g4611,284:14463518,42196537 +k4611,285:16850398,42196537:1609623 +k4611,285:18460021,42196537:1609623 +) +(4611,286:6630773,43074095:11829248,530548,132808 +h4611,285:6630773,43074095:0,0,0 +r4611,339:6630773,43074095:0,663356,132808 +g4611,285:7941493,43074095 +g4611,285:7941493,43074095 +g4611,285:14953471,43074095 +g4611,285:16521747,43074095 +k4611,286:18088573,43074095:371449 +k4611,286:18460021,43074095:371448 +) +(4611,287:6630773,43951653:11829248,530548,102891 +h4611,286:6630773,43951653:0,0,0 +r4611,339:6630773,43951653:0,633439,102891 +g4611,286:7941493,43951653 +g4611,286:7941493,43951653 +g4611,286:12048874,43951653 +k4611,287:15652907,43951653:2807115 +k4611,287:18460021,43951653:2807114 +) +(4611,288:6630773,44829211:11829248,530548,141066 +h4611,287:6630773,44829211:0,0,0 +r4611,339:6630773,44829211:0,671614,141066 +g4611,287:7941493,44829211 +g4611,287:7941493,44829211 +g4611,287:13293701,44829211 +k4611,288:16275320,44829211:2184701 +k4611,288:18460021,44829211:2184701 +) +(4611,289:6630773,45706769:11829248,530548,102891 +h4611,288:6630773,45706769:0,0,0 +r4611,339:6630773,45706769:0,633439,102891 +g4611,288:7941493,45706769 +g4611,288:7941493,45706769 +g4611,288:12878759,45706769 +k4611,289:16058019,45706769:2402003 +k4611,289:18460021,45706769:2402002 +) +] +k4611,339:19606901,45706769:1146880 +r4611,339:19606901,45706769:0,40234515,126483 +k4611,339:20753781,45706769:1146880 +[4611,339:20753781,45706769:11829248,40108032,102891 +(4611,290:20753781,6254097:11829248,530548,102891 +h4611,289:20753781,6254097:0,0,0 +r4611,339:20753781,6254097:0,633439,102891 +g4611,289:22064501,6254097 +g4611,289:22064501,6254097 +g4611,289:25341997,6254097 +g4611,289:26511814,6254097 +k4611,290:29936050,6254097:2646979 +k4611,290:32583029,6254097:2646979 +) +(4611,291:20753781,7131088:11829248,530548,102891 +h4611,290:20753781,7131088:0,0,0 +r4611,339:20753781,7131088:0,633439,102891 +g4611,290:22064501,7131088 +g4611,290:22064501,7131088 +g4611,290:27416709,7131088 +g4611,290:28586526,7131088 +k4611,291:30983237,7131088:1599793 +k4611,291:32583029,7131088:1599792 +) +(4611,292:20753781,8008078:11829248,530548,102891 +h4611,291:20753781,8008078:0,0,0 +r4611,339:20753781,8008078:0,633439,102891 +g4611,291:22064501,8008078 +g4611,291:22064501,8008078 +g4611,291:27001767,8008078 +k4611,292:30390087,8008078:2192943 +k4611,292:32583029,8008078:2192942 +) +(4611,293:20753781,8885069:11829248,530548,102891 +h4611,292:20753781,8885069:0,0,0 +r4611,339:20753781,8885069:0,633439,102891 +g4611,292:22064501,8885069 +g4611,292:22064501,8885069 +g4611,292:25756939,8885069 +k4611,293:29757842,8885069:2825187 +k4611,293:32583029,8885069:2825187 +) +(4611,294:20753781,9762060:11829248,530548,102891 +h4611,293:20753781,9762060:0,0,0 +r4611,339:20753781,9762060:0,633439,102891 +g4611,293:22064501,9762060 +g4611,293:22064501,9762060 +g4611,293:27416709,9762060 +k4611,294:30587727,9762060:1995302 +k4611,294:32583029,9762060:1995302 +) +(4611,295:20753781,10639051:11829248,530548,132808 +h4611,294:20753781,10639051:0,0,0 +r4611,339:20753781,10639051:0,663356,132808 +g4611,294:22064501,10639051 +g4611,294:22064501,10639051 +g4611,294:28246594,10639051 +k4611,295:31012500,10639051:1570529 +k4611,295:32583029,10639051:1570529 +) +(4611,296:20753781,11516041:11829248,530548,102891 +h4611,295:20753781,11516041:0,0,0 +r4611,339:20753781,11516041:0,633439,102891 +g4611,295:22064501,11516041 +g4611,295:22064501,11516041 +g4611,295:27416709,11516041 +k4611,296:30597558,11516041:1985472 +k4611,296:32583029,11516041:1985471 +) +(4611,297:20753781,12393032:11829248,530548,102891 +h4611,296:20753781,12393032:0,0,0 +r4611,339:20753781,12393032:0,633439,102891 +g4611,296:22064501,12393032 +g4611,296:22064501,12393032 +g4611,296:29906363,12393032 +k4611,297:31842385,12393032:740645 +k4611,297:32583029,12393032:740644 +) +(4611,298:20753781,13270023:11829248,530548,102891 +h4611,297:20753781,13270023:0,0,0 +r4611,339:20753781,13270023:0,633439,102891 +g4611,297:22064501,13270023 +g4611,297:22064501,13270023 +g4611,297:28246594,13270023 +k4611,298:31012500,13270023:1570529 +k4611,298:32583029,13270023:1570529 +) +(4611,299:20753781,14147014:11829248,530548,132808 +h4611,298:20753781,14147014:0,0,0 +r4611,339:20753781,14147014:0,663356,132808 +g4611,298:22064501,14147014 +g4611,298:22064501,14147014 +g4611,298:28246594,14147014 +k4611,299:31012500,14147014:1570529 +k4611,299:32583029,14147014:1570529 +) +(4611,300:20753781,15024004:11829248,530548,102891 +h4611,299:20753781,15024004:0,0,0 +r4611,339:20753781,15024004:0,633439,102891 +g4611,299:22064501,15024004 +g4611,299:22064501,15024004 +g4611,299:27416709,15024004 +k4611,300:30597558,15024004:1985472 +k4611,300:32583029,15024004:1985471 +) +(4611,301:20753781,15900995:11829248,530548,102891 +h4611,300:20753781,15900995:0,0,0 +r4611,339:20753781,15900995:0,633439,102891 +g4611,300:22064501,15900995 +g4611,300:22064501,15900995 +g4611,300:25756939,15900995 +k4611,301:29767673,15900995:2815357 +k4611,301:32583029,15900995:2815356 +) +(4611,302:20753781,16777986:11829248,530548,102891 +h4611,301:20753781,16777986:0,0,0 +r4611,339:20753781,16777986:0,633439,102891 +g4611,301:22064501,16777986 +g4611,301:22064501,16777986 +g4611,301:24927054,16777986 +g4611,301:26495330,16777986 +k4611,302:30136868,16777986:2446161 +k4611,302:32583029,16777986:2446161 +) +(4611,303:20753781,17654976:11829248,538806,141066 +h4611,302:20753781,17654976:0,0,0 +r4611,339:20753781,17654976:0,679872,141066 +g4611,302:22064501,17654976 +g4611,302:22064501,17654976 +g4611,302:27001767,17654976 +k4611,303:30380256,17654976:2202773 +k4611,303:32583029,17654976:2202773 +) +(4611,304:20753781,18531967:11829248,530548,141066 +h4611,303:20753781,18531967:0,0,0 +r4611,339:20753781,18531967:0,671614,141066 +g4611,303:22064501,18531967 +g4611,303:22064501,18531967 +g4611,303:25756939,18531967 +g4611,303:26926756,18531967 +g4611,303:28096573,18531967 +g4611,303:29266390,18531967 +g4611,303:30834666,18531967 +k4611,304:32306536,18531967:276493 +k4611,304:32583029,18531967:276493 +) +(4611,305:20753781,19408958:11829248,530548,102891 +h4611,304:20753781,19408958:0,0,0 +r4611,339:20753781,19408958:0,633439,102891 +g4611,304:22064501,19408958 +g4611,304:22064501,19408958 +g4611,304:25756939,19408958 +g4611,304:26926756,19408958 +g4611,304:28096573,19408958 +k4611,305:30937490,19408958:1645540 +k4611,305:32583029,19408958:1645539 +) +(4611,306:20753781,20285949:11829248,530548,102891 +h4611,305:20753781,20285949:0,0,0 +r4611,339:20753781,20285949:0,633439,102891 +g4611,305:22064501,20285949 +g4611,305:22064501,20285949 +g4611,305:26586824,20285949 +k4611,306:30182615,20285949:2400414 +k4611,306:32583029,20285949:2400414 +) +(4611,307:20753781,21162939:11829248,530548,132808 +h4611,306:20753781,21162939:0,0,0 +r4611,339:20753781,21162939:0,663356,132808 +g4611,306:22064501,21162939 +g4611,306:22064501,21162939 +g4611,306:26171882,21162939 +g4611,306:27740158,21162939 +g4611,306:29308434,21162939 +g4611,306:30876710,21162939 +k4611,307:32317728,21162939:265302 +k4611,307:32583029,21162939:265301 +) +(4611,308:20753781,22039930:11829248,530548,102891 +h4611,307:20753781,22039930:0,0,0 +r4611,339:20753781,22039930:0,633439,102891 +g4611,307:22064501,22039930 +g4611,307:22064501,22039930 +g4611,307:25341997,22039930 +k4611,308:29560202,22039930:3022828 +k4611,308:32583029,22039930:3022827 +) +(4611,309:20753781,22916921:11829248,530548,102891 +h4611,308:20753781,22916921:0,0,0 +r4611,339:20753781,22916921:0,633439,102891 +g4611,308:22064501,22916921 +g4611,308:22064501,22916921 +g4611,308:24927054,22916921 +g4611,308:26096871,22916921 +k4611,309:29728579,22916921:2854451 +k4611,309:32583029,22916921:2854450 +) +(4611,310:20753781,23793912:11829248,530548,102891 +h4611,309:20753781,23793912:0,0,0 +r4611,339:20753781,23793912:0,633439,102891 +g4611,309:22064501,23793912 +g4611,309:22064501,23793912 +g4611,309:27001767,23793912 +k4611,310:30380256,23793912:2202773 +k4611,310:32583029,23793912:2202773 +) +(4611,311:20753781,24670902:11829248,538806,102891 +h4611,310:20753781,24670902:0,0,0 +r4611,339:20753781,24670902:0,641697,102891 +g4611,310:22064501,24670902 +g4611,310:22064501,24670902 +g4611,310:27416709,24670902 +k4611,311:30587727,24670902:1995302 +k4611,311:32583029,24670902:1995302 +) +(4611,313:20753781,25547893:11829248,530548,102891 +h4611,311:20753781,25547893:0,0,0 +r4611,339:20753781,25547893:0,633439,102891 +g4611,311:22064501,25547893 +g4611,311:22064501,25547893 +g4611,311:24097170,25547893 +g4611,311:25665446,25547893 +g4611,311:27233722,25547893 +g4611,311:28801998,25547893 +g4611,311:30370274,25547893 +k4611,311:32583029,25547893:930216 +) +(4611,313:23375221,26412973:9207808,485622,102891 +g4611,311:24943497,26412973 +g4611,311:26511773,26412973 +g4611,311:28080049,26412973 +g4611,312:29648325,26412973 +k4611,313:31703535,26412973:879494 +k4611,313:32583029,26412973:879494 +) +(4611,314:20753781,27289964:11829248,530548,102891 +h4611,313:20753781,27289964:0,0,0 +r4611,339:20753781,27289964:0,633439,102891 +g4611,313:22064501,27289964 +g4611,313:22064501,27289964 +g4611,313:24927054,27289964 +k4611,314:29352730,27289964:3230299 +k4611,314:32583029,27289964:3230299 +) +(4611,315:20753781,28166954:11829248,530548,102891 +h4611,314:20753781,28166954:0,0,0 +r4611,339:20753781,28166954:0,633439,102891 +g4611,314:22064501,28166954 +g4611,314:22064501,28166954 +g4611,314:24512112,28166954 +k4611,315:29145259,28166954:3437770 +k4611,315:32583029,28166954:3437770 +) +(4611,316:20753781,29043945:11829248,530548,102891 +h4611,315:20753781,29043945:0,0,0 +r4611,339:20753781,29043945:0,633439,102891 +g4611,315:22064501,29043945 +g4611,315:22064501,29043945 +g4611,315:25341997,29043945 +k4611,316:29560202,29043945:3022828 +k4611,316:32583029,29043945:3022827 +) +(4611,317:20753781,29920936:11829248,530548,141066 +h4611,316:20753781,29920936:0,0,0 +r4611,339:20753781,29920936:0,671614,141066 +g4611,316:22064501,29920936 +g4611,316:22064501,29920936 +g4611,316:24512112,29920936 +g4611,316:25681929,29920936 +g4611,316:27250205,29920936 +g4611,316:28818481,29920936 +g4611,316:30386757,29920936 +k4611,317:32082582,29920936:500448 +k4611,317:32583029,29920936:500447 +) +(4611,318:20753781,30797927:11829248,530548,141066 +h4611,317:20753781,30797927:0,0,0 +r4611,339:20753781,30797927:0,671614,141066 +g4611,317:22064501,30797927 +g4611,317:22064501,30797927 +g4611,317:25341997,30797927 +g4611,317:26511814,30797927 +k4611,318:30145110,30797927:2437919 +k4611,318:32583029,30797927:2437919 +) +(4611,319:20753781,31674917:11829248,530548,141066 +h4611,318:20753781,31674917:0,0,0 +r4611,339:20753781,31674917:0,671614,141066 +g4611,318:22064501,31674917 +g4611,318:22064501,31674917 +g4611,318:24927054,31674917 +k4611,319:29153501,31674917:3429529 +k4611,319:32583029,31674917:3429528 +) +(4611,320:20753781,32551908:11829248,530548,102891 +h4611,319:20753781,32551908:0,0,0 +r4611,339:20753781,32551908:0,633439,102891 +g4611,319:22064501,32551908 +g4611,319:22064501,32551908 +g4611,319:24097170,32551908 +g4611,319:25266987,32551908 +k4611,320:29522697,32551908:3060333 +k4611,320:32583029,32551908:3060332 +) +(4611,321:20753781,33428899:11829248,530548,102891 +h4611,320:20753781,33428899:0,0,0 +r4611,339:20753781,33428899:0,633439,102891 +g4611,320:22064501,33428899 +g4611,320:22064501,33428899 +g4611,320:24512112,33428899 +k4611,321:29145259,33428899:3437770 +k4611,321:32583029,33428899:3437770 +) +(4611,322:20753781,34305890:11829248,530548,102891 +h4611,321:20753781,34305890:0,0,0 +r4611,339:20753781,34305890:0,633439,102891 +g4611,321:22064501,34305890 +g4611,321:22064501,34305890 +g4611,321:25756939,34305890 +k4611,322:29767673,34305890:2815357 +k4611,322:32583029,34305890:2815356 +) +(4611,323:20753781,35182880:11829248,530548,102891 +h4611,322:20753781,35182880:0,0,0 +r4611,339:20753781,35182880:0,633439,102891 +g4611,322:22064501,35182880 +g4611,322:22064501,35182880 +g4611,322:25341997,35182880 +k4611,323:29351142,35182880:3231888 +k4611,323:32583029,35182880:3231887 +) +(4611,324:20753781,36059871:11829248,530548,102891 +h4611,323:20753781,36059871:0,0,0 +r4611,339:20753781,36059871:0,633439,102891 +g4611,323:22064501,36059871 +g4611,323:22064501,36059871 +g4611,323:26171882,36059871 +k4611,324:29965314,36059871:2617716 +k4611,324:32583029,36059871:2617715 +) +(4611,325:20753781,36936862:11829248,530548,102891 +h4611,324:20753781,36936862:0,0,0 +r4611,339:20753781,36936862:0,633439,102891 +g4611,324:22064501,36936862 +g4611,324:22064501,36936862 +g4611,324:25756939,36936862 +g4611,324:26926756,36936862 +g4611,324:28096573,36936862 +g4611,324:29664849,36936862 +k4611,325:31721628,36936862:861402 +k4611,325:32583029,36936862:861401 +) +(4611,326:20753781,37813852:11829248,530548,102891 +h4611,325:20753781,37813852:0,0,0 +r4611,339:20753781,37813852:0,633439,102891 +g4611,325:22064501,37813852 +g4611,325:22064501,37813852 +g4611,325:24512112,37813852 +g4611,325:26080388,37813852 +k4611,326:29929397,37813852:2653632 +k4611,326:32583029,37813852:2653632 +) +(4611,327:20753781,38690843:11829248,530548,102891 +h4611,326:20753781,38690843:0,0,0 +r4611,339:20753781,38690843:0,633439,102891 +g4611,326:22064501,38690843 +g4611,326:22064501,38690843 +g4611,326:24927054,38690843 +g4611,326:26495330,38690843 +g4611,326:28063606,38690843 +k4611,327:30921006,38690843:1662023 +k4611,327:32583029,38690843:1662023 +) +(4611,328:20753781,39567834:11829248,530548,102891 +h4611,327:20753781,39567834:0,0,0 +r4611,339:20753781,39567834:0,633439,102891 +g4611,327:22064501,39567834 +g4611,327:22064501,39567834 +g4611,327:25756939,39567834 +k4611,328:29767673,39567834:2815357 +k4611,328:32583029,39567834:2815356 +) +(4611,329:20753781,40444825:11829248,530548,102891 +h4611,328:20753781,40444825:0,0,0 +r4611,339:20753781,40444825:0,633439,102891 +g4611,328:22064501,40444825 +g4611,328:22064501,40444825 +g4611,328:26171882,40444825 +g4611,328:27740158,40444825 +k4611,329:30759282,40444825:1823747 +k4611,329:32583029,40444825:1823747 +) +(4611,330:20753781,41321815:11829248,530548,141066 +h4611,329:20753781,41321815:0,0,0 +r4611,339:20753781,41321815:0,671614,141066 +g4611,329:22064501,41321815 +g4611,329:22064501,41321815 +g4611,329:24927054,41321815 +k4611,330:29342900,41321815:3240130 +k4611,330:32583029,41321815:3240129 +) +(4611,331:20753781,42198806:11829248,530548,102891 +h4611,330:20753781,42198806:0,0,0 +r4611,339:20753781,42198806:0,633439,102891 +g4611,330:22064501,42198806 +g4611,330:22064501,42198806 +g4611,330:24512112,42198806 +g4611,330:26080388,42198806 +k4611,331:29929397,42198806:2653632 +k4611,331:32583029,42198806:2653632 +) +(4611,332:20753781,43075797:11829248,530548,102891 +h4611,331:20753781,43075797:0,0,0 +r4611,339:20753781,43075797:0,633439,102891 +g4611,331:22064501,43075797 +g4611,331:22064501,43075797 +g4611,331:24927054,43075797 +g4611,331:26495330,43075797 +k4611,332:30136868,43075797:2446161 +k4611,332:32583029,43075797:2446161 +) +(4611,333:20753781,43952788:11829248,538806,102891 +h4611,332:20753781,43952788:0,0,0 +r4611,339:20753781,43952788:0,641697,102891 +g4611,332:22064501,43952788 +g4611,332:22064501,43952788 +g4611,332:27831652,43952788 +k4611,333:30795199,43952788:1787831 +k4611,333:32583029,43952788:1787830 +) +(4611,334:20753781,44829778:11829248,530548,102891 +h4611,333:20753781,44829778:0,0,0 +r4611,339:20753781,44829778:0,633439,102891 +g4611,333:22064501,44829778 +g4611,333:22064501,44829778 +g4611,333:28246594,44829778 +g4611,333:29814870,44829778 +k4611,334:31786808,44829778:796222 +k4611,334:32583029,44829778:796221 +) +(4611,335:20753781,45706769:11829248,530548,102891 +h4611,334:20753781,45706769:0,0,0 +r4611,339:20753781,45706769:0,633439,102891 +g4611,334:22064501,45706769 +g4611,334:22064501,45706769 +g4611,334:25756939,45706769 +g4611,334:27325215,45706769 +k4611,335:30551811,45706769:2031219 +k4611,335:32583029,45706769:2031218 +) +] +(4611,339:32583029,45706769:0,355205,126483 +h4611,339:32583029,45706769:420741,355205,126483 +k4611,339:32583029,45706769:-420741 +) +) +] +(4611,339:32583029,45706769:0,0,0 +g4611,339:32583029,45706769 +) +) +] +(4611,339:6630773,47279633:25952256,0,0 +h4611,339:6630773,47279633:25952256,0,0 +) +] +(4611,339:4262630,4025873:0,0,0 +[4611,339:-473656,4025873:0,0,0 +(4611,339:-473656,-710413:0,0,0 +(4611,339:-473656,-710413:0,0,0 +g4611,339:-473656,-710413 +) +g4611,339:-473656,-710413 +) +] +) +] +!30950 +}458 !12 -{458 -[4607,429:4262630,47279633:28320399,43253760,0 -(4607,429:4262630,4025873:0,0,0 -[4607,429:-473656,4025873:0,0,0 -(4607,429:-473656,-710413:0,0,0 -(4607,429:-473656,-644877:0,0,0 -k4607,429:-473656,-644877:-65536 +{459 +[4611,428:4262630,47279633:28320399,43253760,0 +(4611,428:4262630,4025873:0,0,0 +[4611,428:-473656,4025873:0,0,0 +(4611,428:-473656,-710413:0,0,0 +(4611,428:-473656,-644877:0,0,0 +k4611,428:-473656,-644877:-65536 ) -(4607,429:-473656,4736287:0,0,0 -k4607,429:-473656,4736287:5209943 +(4611,428:-473656,4736287:0,0,0 +k4611,428:-473656,4736287:5209943 ) -g4607,429:-473656,-710413 +g4611,428:-473656,-710413 ) ] ) -[4607,429:6630773,47279633:25952256,43253760,0 -[4607,429:6630773,4812305:25952256,786432,0 -(4607,429:6630773,4812305:25952256,513147,134348 -(4607,429:6630773,4812305:25952256,513147,134348 -g4607,429:3078558,4812305 -[4607,429:3078558,4812305:0,0,0 -(4607,429:3078558,2439708:0,1703936,0 -k4607,429:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,429:2537886,2439708:1179648,16384,0 +[4611,428:6630773,47279633:25952256,43253760,0 +[4611,428:6630773,4812305:25952256,786432,0 +(4611,428:6630773,4812305:25952256,513147,134348 +(4611,428:6630773,4812305:25952256,513147,134348 +g4611,428:3078558,4812305 +[4611,428:3078558,4812305:0,0,0 +(4611,428:3078558,2439708:0,1703936,0 +k4611,428:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,428:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,429:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,428:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,429:3078558,4812305:0,0,0 -(4607,429:3078558,2439708:0,1703936,0 -g4607,429:29030814,2439708 -g4607,429:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,429:36151628,1915420:16384,1179648,0 +[4611,428:3078558,4812305:0,0,0 +(4611,428:3078558,2439708:0,1703936,0 +g4611,428:29030814,2439708 +g4611,428:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,428:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,429:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,428:37855564,2439708:1179648,16384,0 ) ) -k4607,429:3078556,2439708:-34777008 +k4611,428:3078556,2439708:-34777008 ) ] -[4607,429:3078558,4812305:0,0,0 -(4607,429:3078558,49800853:0,16384,2228224 -k4607,429:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,429:2537886,49800853:1179648,16384,0 +[4611,428:3078558,4812305:0,0,0 +(4611,428:3078558,49800853:0,16384,2228224 +k4611,428:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,428:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,429:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,428:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,429:3078558,4812305:0,0,0 -(4607,429:3078558,49800853:0,16384,2228224 -g4607,429:29030814,49800853 -g4607,429:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,429:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,429:37855564,49800853:1179648,16384,0 -) -) -k4607,429:3078556,49800853:-34777008 -) -] -g4607,429:6630773,4812305 -g4607,429:6630773,4812305 -g4607,429:8528695,4812305 -g4607,429:9343962,4812305 -g4607,429:9957379,4812305 -g4607,429:12300946,4812305 -g4607,429:13256460,4812305 -g4607,429:16329443,4812305 -k4607,429:31387652,4812305:15058209 -) -) -] -[4607,429:6630773,45706769:25952256,40108032,0 -(4607,429:6630773,45706769:25952256,40108032,0 -(4607,429:6630773,45706769:0,0,0 -g4607,429:6630773,45706769 -) -[4607,429:6630773,45706769:25952256,40108032,0 -(4607,429:6630773,45706769:25952256,40108032,132808 -[4607,429:6630773,45706769:11829248,40108032,132808 -(4607,337:6630773,6254097:11829248,530548,102891 -h4607,336:6630773,6254097:0,0,0 -r4607,429:6630773,6254097:0,633439,102891 -g4607,336:7941493,6254097 -g4607,336:7941493,6254097 -g4607,336:12048874,6254097 -g4607,336:13617150,6254097 -g4607,336:15185426,6254097 -k4607,337:17410582,6254097:1049440 -k4607,337:18460021,6254097:1049439 -) -(4607,338:6630773,7131655:11829248,530548,132808 -h4607,337:6630773,7131655:0,0,0 -r4607,429:6630773,7131655:0,663356,132808 -g4607,337:7941493,7131655 -g4607,337:7941493,7131655 -g4607,337:12048874,7131655 -k4607,338:15842306,7131655:2617716 -k4607,338:18460021,7131655:2617715 -) -(4607,339:6630773,8009213:11829248,530548,102891 -h4607,338:6630773,8009213:0,0,0 -r4607,429:6630773,8009213:0,633439,102891 -g4607,338:7941493,8009213 -g4607,338:7941493,8009213 -g4607,338:11218989,8009213 -k4607,339:15237964,8009213:3222057 -k4607,339:18460021,8009213:3222057 -) -(4607,340:6630773,8886771:11829248,530548,102891 -h4607,339:6630773,8886771:0,0,0 -r4607,429:6630773,8886771:0,633439,102891 -g4607,339:7941493,8886771 -g4607,339:7941493,8886771 -g4607,339:10804046,8886771 -g4607,339:11973863,8886771 -k4607,340:15814631,8886771:2645391 -k4607,340:18460021,8886771:2645390 -) -(4607,341:6630773,9764329:11829248,530548,141066 -h4607,340:6630773,9764329:0,0,0 -r4607,429:6630773,9764329:0,671614,141066 -g4607,340:7941493,9764329 -g4607,340:7941493,9764329 -g4607,340:12878759,9764329 -k4607,341:16257248,9764329:2202773 -k4607,341:18460021,9764329:2202773 -) -(4607,342:6630773,10641887:11829248,530548,102891 -h4607,341:6630773,10641887:0,0,0 -r4607,429:6630773,10641887:0,633439,102891 -g4607,341:7941493,10641887 -g4607,341:7941493,10641887 -g4607,341:9974162,10641887 -k4607,342:14804950,10641887:3655072 -k4607,342:18460021,10641887:3655071 -) -(4607,343:6630773,11519444:11829248,530548,102891 -h4607,342:6630773,11519444:0,0,0 -r4607,429:6630773,11519444:0,633439,102891 -g4607,342:7941493,11519444 -g4607,342:7941493,11519444 -g4607,342:9559219,11519444 -k4607,343:14597478,11519444:3862543 -k4607,343:18460021,11519444:3862543 -) -(4607,344:6630773,12397002:11829248,530548,102891 -h4607,343:6630773,12397002:0,0,0 -r4607,429:6630773,12397002:0,633439,102891 -g4607,343:7941493,12397002 -g4607,343:7941493,12397002 -g4607,343:10389104,12397002 -g4607,343:11957380,12397002 -k4607,344:15806389,12397002:2653632 -k4607,344:18460021,12397002:2653632 -) -(4607,345:6630773,13274560:11829248,530548,102891 -h4607,344:6630773,13274560:0,0,0 -r4607,429:6630773,13274560:0,633439,102891 -g4607,344:7941493,13274560 -g4607,344:7941493,13274560 -g4607,344:10804046,13274560 -g4607,344:11973863,13274560 -k4607,345:15814631,13274560:2645391 -k4607,345:18460021,13274560:2645390 -) -(4607,346:6630773,14152118:11829248,530548,102891 -h4607,345:6630773,14152118:0,0,0 -r4607,429:6630773,14152118:0,633439,102891 -g4607,345:7941493,14152118 -g4607,345:7941493,14152118 -g4607,345:12048874,14152118 -k4607,346:15652907,14152118:2807115 -k4607,346:18460021,14152118:2807114 -) -(4607,347:6630773,15029676:11829248,530548,141066 -h4607,346:6630773,15029676:0,0,0 -r4607,429:6630773,15029676:0,671614,141066 -g4607,346:7941493,15029676 -g4607,346:7941493,15029676 -g4607,346:12048874,15029676 -g4607,346:13218691,15029676 -g4607,346:14786967,15029676 -k4607,347:17221183,15029676:1238839 -k4607,347:18460021,15029676:1238838 -) -(4607,348:6630773,15907234:11829248,530548,102891 -h4607,347:6630773,15907234:0,0,0 -r4607,429:6630773,15907234:0,633439,102891 -g4607,347:7941493,15907234 -g4607,347:7941493,15907234 -g4607,347:12048874,15907234 -k4607,348:15842306,15907234:2617716 -k4607,348:18460021,15907234:2617715 -) -(4607,349:6630773,16784792:11829248,530548,132808 -h4607,348:6630773,16784792:0,0,0 -r4607,429:6630773,16784792:0,663356,132808 -g4607,348:7941493,16784792 -g4607,348:7941493,16784792 -g4607,348:12048874,16784792 -k4607,349:15842306,16784792:2617716 -k4607,349:18460021,16784792:2617715 -) -(4607,350:6630773,17662350:11829248,530548,132808 -h4607,349:6630773,17662350:0,0,0 -r4607,429:6630773,17662350:0,663356,132808 -g4607,349:7941493,17662350 -g4607,349:7941493,17662350 -g4607,349:12048874,17662350 -k4607,350:15852136,17662350:2607885 -k4607,350:18460021,17662350:2607885 -) -(4607,351:6630773,18539908:11829248,530548,102891 -h4607,350:6630773,18539908:0,0,0 -r4607,429:6630773,18539908:0,633439,102891 -g4607,350:7941493,18539908 -g4607,350:7941493,18539908 -g4607,350:11218989,18539908 -g4607,350:12388806,18539908 -g4607,350:13558623,18539908 -g4607,350:15126899,18539908 -g4607,350:16695175,18539908 -k4607,351:18175287,18539908:284735 -k4607,351:18460021,18539908:284734 -) -(4607,352:6630773,19417466:11829248,530548,102891 -h4607,351:6630773,19417466:0,0,0 -r4607,429:6630773,19417466:0,633439,102891 -g4607,351:7941493,19417466 -g4607,351:7941493,19417466 -g4607,351:12048874,19417466 -g4607,351:13218691,19417466 -k4607,352:16437045,19417466:2022977 -k4607,352:18460021,19417466:2022976 -) -(4607,353:6630773,20295023:11829248,530548,141066 -h4607,352:6630773,20295023:0,0,0 -r4607,429:6630773,20295023:0,671614,141066 -g4607,352:7941493,20295023 -g4607,352:7941493,20295023 -g4607,352:12463816,20295023 -k4607,353:16059607,20295023:2400414 -k4607,353:18460021,20295023:2400414 -) -(4607,354:6630773,21172581:11829248,530548,141066 -h4607,353:6630773,21172581:0,0,0 -r4607,429:6630773,21172581:0,671614,141066 -g4607,353:7941493,21172581 -g4607,353:7941493,21172581 -g4607,353:14123586,21172581 -k4607,354:16889492,21172581:1570529 -k4607,354:18460021,21172581:1570529 -) -(4607,355:6630773,22050139:11829248,530548,132808 -h4607,354:6630773,22050139:0,0,0 -r4607,429:6630773,22050139:0,663356,132808 -g4607,354:7941493,22050139 -g4607,354:7941493,22050139 -g4607,354:15368413,22050139 -k4607,355:17511906,22050139:948116 -k4607,355:18460021,22050139:948115 -) -(4607,356:6630773,22927697:11829248,530548,132808 -h4607,355:6630773,22927697:0,0,0 -r4607,429:6630773,22927697:0,663356,132808 -g4607,355:7941493,22927697 -g4607,355:7941493,22927697 -g4607,355:11218989,22927697 -g4607,355:12787265,22927697 -k4607,356:16211501,22927697:2248520 -k4607,356:18460021,22927697:2248520 -) -(4607,357:6630773,23805255:11829248,530548,132808 -h4607,356:6630773,23805255:0,0,0 -r4607,429:6630773,23805255:0,663356,132808 -g4607,356:7941493,23805255 -g4607,356:7941493,23805255 -g4607,356:11218989,23805255 -g4607,356:12388806,23805255 -g4607,356:13558623,23805255 -g4607,356:15126899,23805255 -k4607,357:17391149,23805255:1068873 -k4607,357:18460021,23805255:1068872 -) -(4607,358:6630773,24682813:11829248,530548,132808 -h4607,357:6630773,24682813:0,0,0 -r4607,429:6630773,24682813:0,663356,132808 -g4607,357:7941493,24682813 -g4607,357:7941493,24682813 -g4607,357:11633931,24682813 -k4607,358:15644665,24682813:2815357 -k4607,358:18460021,24682813:2815356 -) -(4607,359:6630773,25560371:11829248,530548,132808 -h4607,358:6630773,25560371:0,0,0 -r4607,429:6630773,25560371:0,663356,132808 -g4607,358:7941493,25560371 -g4607,358:7941493,25560371 -g4607,358:11633931,25560371 -k4607,359:15644665,25560371:2815357 -k4607,359:18460021,25560371:2815356 -) -(4607,360:6630773,26437929:11829248,538806,132808 -h4607,359:6630773,26437929:0,0,0 -r4607,429:6630773,26437929:0,671614,132808 -g4607,359:7941493,26437929 -g4607,359:7941493,26437929 -g4607,359:9974162,26437929 -k4607,360:14814780,26437929:3645241 -k4607,360:18460021,26437929:3645241 -) -(4607,361:6630773,27315487:11829248,530548,141066 -h4607,360:6630773,27315487:0,0,0 -r4607,429:6630773,27315487:0,671614,141066 -g4607,360:7941493,27315487 -g4607,360:7941493,27315487 -g4607,360:14123586,27315487 -g4607,360:15691862,27315487 -k4607,361:17673630,27315487:786391 -k4607,361:18460021,27315487:786391 -) -(4607,362:6630773,28193045:11829248,530548,132808 -h4607,361:6630773,28193045:0,0,0 -r4607,429:6630773,28193045:0,663356,132808 -g4607,361:7941493,28193045 -g4607,361:7941493,28193045 -g4607,361:13708644,28193045 -k4607,362:16682021,28193045:1778000 -k4607,362:18460021,28193045:1778000 -) -(4607,363:6630773,29070603:11829248,530548,141066 -h4607,362:6630773,29070603:0,0,0 -r4607,429:6630773,29070603:0,671614,141066 -g4607,362:7941493,29070603 -g4607,362:7941493,29070603 -g4607,362:13708644,29070603 -g4607,362:15276920,29070603 -k4607,363:17466159,29070603:993862 -k4607,363:18460021,29070603:993862 -) -(4607,364:6630773,29948160:11829248,530548,132808 -h4607,363:6630773,29948160:0,0,0 -r4607,429:6630773,29948160:0,663356,132808 -g4607,363:7941493,29948160 -g4607,363:7941493,29948160 -g4607,363:11218989,29948160 -k4607,364:15427363,29948160:3032658 -k4607,364:18460021,29948160:3032658 -) -(4607,365:6630773,30825718:11829248,530548,132808 -h4607,364:6630773,30825718:0,0,0 -r4607,429:6630773,30825718:0,663356,132808 -g4607,364:7941493,30825718 -g4607,364:7941493,30825718 -g4607,364:11633931,30825718 -k4607,365:15644665,30825718:2815357 -k4607,365:18460021,30825718:2815356 -) -(4607,366:6630773,31703276:11829248,530548,132808 -h4607,365:6630773,31703276:0,0,0 -r4607,429:6630773,31703276:0,663356,132808 -g4607,365:7941493,31703276 -g4607,365:7941493,31703276 -g4607,365:10804046,31703276 -g4607,365:13895379,31703276 -g4607,365:15463655,31703276 -g4607,365:17031931,31703276 -k4607,365:18460021,31703276:145551 -) -(4607,366:9252213,32568356:9207808,485622,102891 -g4607,365:10820489,32568356 -g4607,365:12388765,32568356 -k4607,366:16022082,32568356:2437940 -k4607,366:18460021,32568356:2437939 -) -(4607,367:6630773,33445914:11829248,530548,132808 -h4607,366:6630773,33445914:0,0,0 -r4607,429:6630773,33445914:0,663356,132808 -g4607,366:7941493,33445914 -g4607,366:7941493,33445914 -g4607,366:11633931,33445914 -k4607,367:15435605,33445914:3024417 -k4607,367:18460021,33445914:3024416 -) -(4607,368:6630773,34323472:11829248,530548,132808 -h4607,367:6630773,34323472:0,0,0 -r4607,429:6630773,34323472:0,663356,132808 -g4607,367:7941493,34323472 -g4607,367:7941493,34323472 -g4607,367:12878759,34323472 -k4607,368:16267079,34323472:2192943 -k4607,368:18460021,34323472:2192942 -) -(4607,369:6630773,35201030:11829248,530548,132808 -h4607,368:6630773,35201030:0,0,0 -r4607,429:6630773,35201030:0,663356,132808 -g4607,368:7941493,35201030 -g4607,368:7941493,35201030 -g4607,368:11218989,35201030 -g4607,368:12787265,35201030 -k4607,369:16211501,35201030:2248520 -k4607,369:18460021,35201030:2248520 -) -(4607,370:6630773,36078588:11829248,530548,132808 -h4607,369:6630773,36078588:0,0,0 -r4607,429:6630773,36078588:0,663356,132808 -g4607,369:7941493,36078588 -g4607,369:7941493,36078588 -g4607,369:11633931,36078588 -k4607,370:15644665,36078588:2815357 -k4607,370:18460021,36078588:2815356 -) -(4607,371:6630773,36956146:11829248,530548,132808 -h4607,370:6630773,36956146:0,0,0 -r4607,429:6630773,36956146:0,663356,132808 -g4607,370:7941493,36956146 -g4607,370:7941493,36956146 -g4607,370:10804046,36956146 -k4607,371:15219892,36956146:3240130 -k4607,371:18460021,36956146:3240129 -) -(4607,372:6630773,37833704:11829248,530548,141066 -h4607,371:6630773,37833704:0,0,0 -r4607,429:6630773,37833704:0,671614,141066 -g4607,371:7941493,37833704 -g4607,371:7941493,37833704 -g4607,371:14953471,37833704 -k4607,372:17304435,37833704:1155587 -k4607,372:18460021,37833704:1155586 -) -(4607,373:6630773,38711262:11829248,538806,132808 -h4607,372:6630773,38711262:0,0,0 -r4607,429:6630773,38711262:0,671614,132808 -g4607,372:7941493,38711262 -g4607,372:7941493,38711262 -g4607,372:14538528,38711262 -k4607,373:17096963,38711262:1363058 -k4607,373:18460021,38711262:1363058 -) -(4607,374:6630773,39588820:11829248,530548,132808 -h4607,373:6630773,39588820:0,0,0 -r4607,429:6630773,39588820:0,663356,132808 -g4607,373:7941493,39588820 -g4607,373:7941493,39588820 -g4607,373:16198298,39588820 -k4607,373:18460021,39588820:979184 -) -(4607,374:9252213,40453900:9207808,485622,11795 -k4607,374:14443975,40453900:4016046 -k4607,374:18460021,40453900:4016046 -) -(4607,375:6630773,41331457:11829248,530548,141066 -h4607,374:6630773,41331457:0,0,0 -r4607,429:6630773,41331457:0,671614,141066 -g4607,374:7941493,41331457 -g4607,374:7941493,41331457 -g4607,374:15368413,41331457 -g4607,374:16936689,41331457 -k4607,375:18296044,41331457:163978 -k4607,375:18460021,41331457:163977 -) -(4607,376:6630773,42209015:11829248,530548,141066 -h4607,375:6630773,42209015:0,0,0 -r4607,429:6630773,42209015:0,671614,141066 -g4607,375:7941493,42209015 -g4607,375:7941493,42209015 -g4607,375:14953471,42209015 -k4607,376:17304435,42209015:1155587 -k4607,376:18460021,42209015:1155586 -) -(4607,377:6630773,43086573:11829248,530548,132808 -h4607,376:6630773,43086573:0,0,0 -r4607,429:6630773,43086573:0,663356,132808 -g4607,376:7941493,43086573 -g4607,376:7941493,43086573 -g4607,376:14953471,43086573 -g4607,376:16521747,43086573 -k4607,376:18460021,43086573:655735 -) -(4607,377:9252213,43951653:9207808,485622,102891 -g4607,376:10820489,43951653 -k4607,377:15237944,43951653:3222078 -k4607,377:18460021,43951653:3222077 -) -(4607,378:6630773,44829211:11829248,530548,132808 -h4607,377:6630773,44829211:0,0,0 -r4607,429:6630773,44829211:0,663356,132808 -g4607,377:7941493,44829211 -g4607,377:7941493,44829211 -g4607,377:11218989,44829211 -k4607,378:15437194,44829211:3022828 -k4607,378:18460021,44829211:3022827 -) -(4607,379:6630773,45706769:11829248,530548,132808 -h4607,378:6630773,45706769:0,0,0 -r4607,429:6630773,45706769:0,663356,132808 -g4607,378:7941493,45706769 -g4607,378:7941493,45706769 -g4607,378:11633931,45706769 -g4607,378:13202207,45706769 -k4607,379:16428803,45706769:2031219 -k4607,379:18460021,45706769:2031218 -) -] -k4607,429:19606901,45706769:1146880 -r4607,429:19606901,45706769:0,40240840,132808 -k4607,429:20753781,45706769:1146880 -[4607,429:20753781,45706769:11829248,40108032,102891 -(4607,380:20753781,6254097:11829248,530548,132808 -h4607,379:20753781,6254097:0,0,0 -r4607,429:20753781,6254097:0,663356,132808 -g4607,379:22064501,6254097 -g4607,379:22064501,6254097 -g4607,379:26171882,6254097 -g4607,379:27740158,6254097 -k4607,380:30749452,6254097:1833578 -k4607,380:32583029,6254097:1833577 -) -(4607,381:20753781,7131088:11829248,530548,132808 -h4607,380:20753781,7131088:0,0,0 -r4607,429:20753781,7131088:0,663356,132808 -g4607,380:22064501,7131088 -g4607,380:22064501,7131088 -g4607,380:28661536,7131088 -k4607,381:31210141,7131088:1372889 -k4607,381:32583029,7131088:1372888 -) -(4607,383:20753781,8008078:11829248,530548,132808 -h4607,381:20753781,8008078:0,0,0 -r4607,429:20753781,8008078:0,663356,132808 -g4607,381:22064501,8008078 -g4607,381:22064501,8008078 -g4607,381:25341997,8008078 -g4607,381:26511814,8008078 -g4607,381:27681631,8008078 -g4607,381:28851448,8008078 -g4607,381:30021265,8008078 -k4607,381:32583029,8008078:1279225 -) -(4607,383:23375221,8873158:9207808,485622,102891 -g4607,381:24923836,8873158 -g4607,381:26492112,8873158 -g4607,382:28060388,8873158 -g4607,382:29628664,8873158 -k4607,383:31703535,8873158:879494 -k4607,383:32583029,8873158:879494 -) -(4607,384:20753781,9750149:11829248,530548,132808 -h4607,383:20753781,9750149:0,0,0 -r4607,429:20753781,9750149:0,663356,132808 -g4607,383:22064501,9750149 -g4607,383:22064501,9750149 -g4607,383:24927054,9750149 -k4607,384:29352730,9750149:3230299 -k4607,384:32583029,9750149:3230299 -) -(4607,385:20753781,10627140:11829248,530548,132808 -h4607,384:20753781,10627140:0,0,0 -r4607,429:20753781,10627140:0,663356,132808 -g4607,384:22064501,10627140 -g4607,384:22064501,10627140 -g4607,384:24097170,10627140 -g4607,384:25665446,10627140 -g4607,384:27233722,10627140 -g4607,384:28801998,10627140 -k4607,385:31280372,10627140:1302658 -k4607,385:32583029,10627140:1302657 -) -(4607,386:20753781,11504131:11829248,538806,132808 -h4607,385:20753781,11504131:0,0,0 -r4607,429:20753781,11504131:0,671614,132808 -g4607,385:22064501,11504131 -g4607,385:22064501,11504131 -g4607,385:25341997,11504131 -k4607,386:29560202,11504131:3022828 -k4607,386:32583029,11504131:3022827 -) -(4607,387:20753781,12381121:11829248,530548,132808 -h4607,386:20753781,12381121:0,0,0 -r4607,429:20753781,12381121:0,663356,132808 -g4607,386:22064501,12381121 -g4607,386:22064501,12381121 -g4607,386:25756939,12381121 -k4607,387:29767673,12381121:2815357 -k4607,387:32583029,12381121:2815356 -) -(4607,388:20753781,13258112:11829248,530548,132808 -h4607,387:20753781,13258112:0,0,0 -r4607,429:20753781,13258112:0,663356,132808 -g4607,387:22064501,13258112 -g4607,387:22064501,13258112 -g4607,387:25756939,13258112 -k4607,388:29767673,13258112:2815357 -k4607,388:32583029,13258112:2815356 -) -(4607,389:20753781,14135103:11829248,538806,132808 -h4607,388:20753781,14135103:0,0,0 -r4607,429:20753781,14135103:0,671614,132808 -g4607,388:22064501,14135103 -g4607,388:22064501,14135103 -g4607,388:24097170,14135103 -k4607,389:28937788,14135103:3645241 -k4607,389:32583029,14135103:3645241 -) -(4607,390:20753781,15012094:11829248,530548,132808 -h4607,389:20753781,15012094:0,0,0 -r4607,429:20753781,15012094:0,663356,132808 -g4607,389:22064501,15012094 -g4607,389:22064501,15012094 -g4607,389:25756939,15012094 -k4607,390:29767673,15012094:2815357 -k4607,390:32583029,15012094:2815356 -) -(4607,391:20753781,15889084:11829248,530548,132808 -h4607,390:20753781,15889084:0,0,0 -r4607,429:20753781,15889084:0,663356,132808 -g4607,390:22064501,15889084 -g4607,390:22064501,15889084 -g4607,390:27001767,15889084 -k4607,391:30390087,15889084:2192943 -k4607,391:32583029,15889084:2192942 -) -(4607,392:20753781,16766075:11829248,530548,132808 -h4607,391:20753781,16766075:0,0,0 -r4607,429:20753781,16766075:0,663356,132808 -g4607,391:22064501,16766075 -g4607,391:22064501,16766075 -g4607,391:25341997,16766075 -g4607,391:26910273,16766075 -k4607,392:30334509,16766075:2248520 -k4607,392:32583029,16766075:2248520 -) -(4607,393:20753781,17643066:11829248,530548,132808 -h4607,392:20753781,17643066:0,0,0 -r4607,429:20753781,17643066:0,663356,132808 -g4607,392:22064501,17643066 -g4607,392:22064501,17643066 -g4607,392:25341997,17643066 -k4607,393:29560202,17643066:3022828 -k4607,393:32583029,17643066:3022827 -) -(4607,394:20753781,18520056:11829248,530548,132808 -h4607,393:20753781,18520056:0,0,0 -r4607,429:20753781,18520056:0,663356,132808 -g4607,393:22064501,18520056 -g4607,393:22064501,18520056 -g4607,393:24097170,18520056 -k4607,394:28937788,18520056:3645241 -k4607,394:32583029,18520056:3645241 -) -(4607,395:20753781,19397047:11829248,530548,132808 -h4607,394:20753781,19397047:0,0,0 -r4607,429:20753781,19397047:0,663356,132808 -g4607,394:22064501,19397047 -g4607,394:22064501,19397047 -g4607,394:26586824,19397047 -k4607,395:30182615,19397047:2400414 -k4607,395:32583029,19397047:2400414 -) -(4607,396:20753781,20274038:11829248,538806,132808 -h4607,395:20753781,20274038:0,0,0 -r4607,429:20753781,20274038:0,671614,132808 -g4607,395:22064501,20274038 -g4607,395:22064501,20274038 -g4607,395:25341997,20274038 -k4607,396:29560202,20274038:3022828 -k4607,396:32583029,20274038:3022827 -) -(4607,397:20753781,21151029:11829248,530548,141066 -h4607,396:20753781,21151029:0,0,0 -r4607,429:20753781,21151029:0,671614,141066 -g4607,396:22064501,21151029 -g4607,396:22064501,21151029 -g4607,396:25341997,21151029 -k4607,397:29560202,21151029:3022828 -k4607,397:32583029,21151029:3022827 -) -(4607,398:20753781,22028019:11829248,530548,102891 -h4607,397:20753781,22028019:0,0,0 -r4607,429:20753781,22028019:0,633439,102891 -g4607,397:22064501,22028019 -g4607,397:22064501,22028019 -g4607,397:25341997,22028019 -k4607,398:29560202,22028019:3022828 -k4607,398:32583029,22028019:3022827 -) -(4607,399:20753781,22905010:11829248,530548,102891 -h4607,398:20753781,22905010:0,0,0 -r4607,429:20753781,22905010:0,633439,102891 -g4607,398:22064501,22905010 -g4607,398:22064501,22905010 -g4607,398:25756939,22905010 -k4607,399:29767673,22905010:2815357 -k4607,399:32583029,22905010:2815356 -) -(4607,400:20753781,23782001:11829248,530548,132808 -h4607,399:20753781,23782001:0,0,0 -r4607,429:20753781,23782001:0,663356,132808 -g4607,399:22064501,23782001 -g4607,399:22064501,23782001 -g4607,399:25756939,23782001 -k4607,400:29767673,23782001:2815357 -k4607,400:32583029,23782001:2815356 -) -(4607,401:20753781,24658992:11829248,530548,102891 -h4607,400:20753781,24658992:0,0,0 -r4607,429:20753781,24658992:0,633439,102891 -g4607,400:22064501,24658992 -g4607,400:22064501,24658992 -g4607,400:25756939,24658992 -k4607,401:29767673,24658992:2815357 -k4607,401:32583029,24658992:2815356 -) -(4607,402:20753781,25535982:11829248,530548,102891 -h4607,401:20753781,25535982:0,0,0 -r4607,429:20753781,25535982:0,633439,102891 -g4607,401:22064501,25535982 -g4607,401:22064501,25535982 -g4607,401:26586824,25535982 -g4607,401:29678157,25535982 -g4607,401:31246433,25535982 -k4607,402:32512420,25535982:70610 -k4607,402:32583029,25535982:70609 -) -(4607,403:20753781,26412973:11829248,530548,102891 -h4607,402:20753781,26412973:0,0,0 -r4607,429:20753781,26412973:0,633439,102891 -g4607,402:22064501,26412973 -g4607,402:22064501,26412973 -g4607,402:27001767,26412973 -g4607,402:28570043,26412973 -g4607,402:30138319,26412973 -k4607,403:31948532,26412973:634497 -k4607,403:32583029,26412973:634497 -) -(4607,404:20753781,27289964:11829248,538806,102891 -h4607,403:20753781,27289964:0,0,0 -r4607,429:20753781,27289964:0,641697,102891 -g4607,403:22064501,27289964 -g4607,403:22064501,27289964 -g4607,403:28246594,27289964 -g4607,403:29814870,27289964 -k4607,404:31796638,27289964:786391 -k4607,404:32583029,27289964:786391 -) -(4607,405:20753781,28166954:11829248,538806,102891 -h4607,404:20753781,28166954:0,0,0 -r4607,429:20753781,28166954:0,641697,102891 -g4607,404:22064501,28166954 -g4607,404:22064501,28166954 -g4607,404:26586824,28166954 -k4607,405:30182615,28166954:2400414 -k4607,405:32583029,28166954:2400414 -) -(4607,406:20753781,29043945:11829248,530548,132808 -h4607,405:20753781,29043945:0,0,0 -r4607,429:20753781,29043945:0,663356,132808 -g4607,405:22064501,29043945 -g4607,405:22064501,29043945 -g4607,405:27001767,29043945 -k4607,406:30380256,29043945:2202773 -k4607,406:32583029,29043945:2202773 -) -(4607,407:20753781,29920936:11829248,530548,132808 -h4607,406:20753781,29920936:0,0,0 -r4607,429:20753781,29920936:0,663356,132808 -g4607,406:22064501,29920936 -g4607,406:22064501,29920936 -g4607,406:27831652,29920936 -k4607,407:30805029,29920936:1778000 -k4607,407:32583029,29920936:1778000 -) -(4607,408:20753781,30797927:11829248,530548,102891 -h4607,407:20753781,30797927:0,0,0 -r4607,429:20753781,30797927:0,633439,102891 -g4607,407:22064501,30797927 -g4607,407:22064501,30797927 -g4607,407:27416709,30797927 -g4607,407:28984985,30797927 -k4607,408:32143224,30797927:439806 -k4607,408:32583029,30797927:439805 -) -(4607,409:20753781,31674917:11829248,530548,102891 -h4607,408:20753781,31674917:0,0,0 -r4607,429:20753781,31674917:0,633439,102891 -g4607,408:22064501,31674917 -g4607,408:22064501,31674917 -g4607,408:27001767,31674917 -k4607,409:30390087,31674917:2192943 -k4607,409:32583029,31674917:2192942 -) -(4607,410:20753781,32551908:11829248,530548,102891 -h4607,409:20753781,32551908:0,0,0 -r4607,429:20753781,32551908:0,633439,102891 -g4607,409:22064501,32551908 -g4607,409:22064501,32551908 -g4607,409:26586824,32551908 -g4607,409:28155100,32551908 -k4607,410:30966753,32551908:1616276 -k4607,410:32583029,32551908:1616276 -) -(4607,411:20753781,33428899:11829248,530548,102891 -h4607,410:20753781,33428899:0,0,0 -r4607,429:20753781,33428899:0,633439,102891 -g4607,410:22064501,33428899 -g4607,410:22064501,33428899 -g4607,410:27416709,33428899 -k4607,411:30597558,33428899:1985472 -k4607,411:32583029,33428899:1985471 -) -(4607,412:20753781,34305890:11829248,530548,102891 -h4607,411:20753781,34305890:0,0,0 -r4607,429:20753781,34305890:0,633439,102891 -g4607,411:22064501,34305890 -g4607,411:22064501,34305890 -g4607,411:27416709,34305890 -k4607,412:30587727,34305890:1995302 -k4607,412:32583029,34305890:1995302 -) -(4607,413:20753781,35182880:11829248,538806,102891 -h4607,412:20753781,35182880:0,0,0 -r4607,429:20753781,35182880:0,641697,102891 -g4607,412:22064501,35182880 -g4607,412:22064501,35182880 -g4607,412:27001767,35182880 -k4607,413:30380256,35182880:2202773 -k4607,413:32583029,35182880:2202773 -) -(4607,414:20753781,36059871:11829248,538806,102891 -h4607,413:20753781,36059871:0,0,0 -r4607,429:20753781,36059871:0,641697,102891 -g4607,413:22064501,36059871 -g4607,413:22064501,36059871 -g4607,413:27001767,36059871 -k4607,414:30380256,36059871:2202773 -k4607,414:32583029,36059871:2202773 -) -(4607,415:20753781,36936862:11829248,538806,102891 -h4607,414:20753781,36936862:0,0,0 -r4607,429:20753781,36936862:0,641697,102891 -g4607,414:22064501,36936862 -g4607,414:22064501,36936862 -g4607,414:26586824,36936862 -k4607,415:30182615,36936862:2400414 -k4607,415:32583029,36936862:2400414 -) -(4607,416:20753781,37813852:11829248,530548,102891 -h4607,415:20753781,37813852:0,0,0 -r4607,429:20753781,37813852:0,633439,102891 -g4607,415:22064501,37813852 -g4607,415:22064501,37813852 -g4607,415:27001767,37813852 -k4607,416:30390087,37813852:2192943 -k4607,416:32583029,37813852:2192942 -) -(4607,417:20753781,38690843:11829248,530548,102891 -h4607,416:20753781,38690843:0,0,0 -r4607,429:20753781,38690843:0,633439,102891 -g4607,416:22064501,38690843 -g4607,416:22064501,38690843 -g4607,416:27416709,38690843 -k4607,417:30587727,38690843:1995302 -k4607,417:32583029,38690843:1995302 -) -(4607,418:20753781,39567834:11829248,530548,102891 -h4607,417:20753781,39567834:0,0,0 -r4607,429:20753781,39567834:0,633439,102891 -g4607,417:22064501,39567834 -g4607,417:22064501,39567834 -g4607,417:26586824,39567834 -k4607,418:30182615,39567834:2400414 -k4607,418:32583029,39567834:2400414 -) -(4607,419:20753781,40444825:11829248,530548,102891 -h4607,418:20753781,40444825:0,0,0 -r4607,429:20753781,40444825:0,633439,102891 -g4607,418:22064501,40444825 -g4607,418:22064501,40444825 -g4607,418:26586824,40444825 -k4607,419:30182615,40444825:2400414 -k4607,419:32583029,40444825:2400414 -) -(4607,420:20753781,41321815:11829248,530548,102891 -h4607,419:20753781,41321815:0,0,0 -r4607,429:20753781,41321815:0,633439,102891 -g4607,419:22064501,41321815 -g4607,419:22064501,41321815 -g4607,419:27416709,41321815 -g4607,419:28984985,41321815 -k4607,420:31381696,41321815:1201334 -k4607,420:32583029,41321815:1201333 -) -(4607,421:20753781,42198806:11829248,530548,102891 -h4607,420:20753781,42198806:0,0,0 -r4607,429:20753781,42198806:0,633439,102891 -g4607,420:22064501,42198806 -g4607,420:22064501,42198806 -g4607,420:27831652,42198806 -g4607,420:29399928,42198806 -k4607,421:31589167,42198806:993862 -k4607,421:32583029,42198806:993862 -) -(4607,422:20753781,43075797:11829248,530548,102891 -h4607,421:20753781,43075797:0,0,0 -r4607,429:20753781,43075797:0,633439,102891 -g4607,421:22064501,43075797 -g4607,421:22064501,43075797 -g4607,421:26586824,43075797 -k4607,422:30182615,43075797:2400414 -k4607,422:32583029,43075797:2400414 -) -(4607,423:20753781,43952788:11829248,530548,102891 -h4607,422:20753781,43952788:0,0,0 -r4607,429:20753781,43952788:0,633439,102891 -g4607,422:22064501,43952788 -g4607,422:22064501,43952788 -g4607,422:27001767,43952788 -k4607,423:30390087,43952788:2192943 -k4607,423:32583029,43952788:2192942 -) -(4607,424:20753781,44829778:11829248,530548,102891 -h4607,423:20753781,44829778:0,0,0 -r4607,429:20753781,44829778:0,633439,102891 -g4607,423:22064501,44829778 -g4607,423:22064501,44829778 -g4607,423:26171882,44829778 -k4607,424:29975144,44829778:2607885 -k4607,424:32583029,44829778:2607885 -) -(4607,425:20753781,45706769:11829248,530548,102891 -h4607,424:20753781,45706769:0,0,0 -r4607,429:20753781,45706769:0,633439,102891 -g4607,424:22064501,45706769 -g4607,424:22064501,45706769 -g4607,424:24512112,45706769 -k4607,425:29135429,45706769:3447601 -k4607,425:32583029,45706769:3447600 -) -] -(4607,429:32583029,45706769:0,355205,126483 -h4607,429:32583029,45706769:420741,355205,126483 -k4607,429:32583029,45706769:-420741 -) -) -] -(4607,429:32583029,45706769:0,0,0 -g4607,429:32583029,45706769 -) -) -] -(4607,429:6630773,47279633:25952256,0,0 -h4607,429:6630773,47279633:25952256,0,0 -) -] -(4607,429:4262630,4025873:0,0,0 -[4607,429:-473656,4025873:0,0,0 -(4607,429:-473656,-710413:0,0,0 -(4607,429:-473656,-710413:0,0,0 -g4607,429:-473656,-710413 -) -g4607,429:-473656,-710413 -) -] -) -] -!30735 -}458 +[4611,428:3078558,4812305:0,0,0 +(4611,428:3078558,49800853:0,16384,2228224 +g4611,428:29030814,49800853 +g4611,428:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,428:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,428:37855564,49800853:1179648,16384,0 +) +) +k4611,428:3078556,49800853:-34777008 +) +] +g4611,428:6630773,4812305 +g4611,428:6630773,4812305 +g4611,428:8528695,4812305 +g4611,428:9343962,4812305 +g4611,428:9957379,4812305 +g4611,428:12300946,4812305 +g4611,428:13256460,4812305 +g4611,428:16329443,4812305 +k4611,428:31387652,4812305:15058209 +) +) +] +[4611,428:6630773,45706769:25952256,40108032,0 +(4611,428:6630773,45706769:25952256,40108032,0 +(4611,428:6630773,45706769:0,0,0 +g4611,428:6630773,45706769 +) +[4611,428:6630773,45706769:25952256,40108032,0 +(4611,428:6630773,45706769:25952256,40108032,132808 +[4611,428:6630773,45706769:11829248,40108032,132808 +(4611,336:6630773,6254097:11829248,530548,102891 +h4611,335:6630773,6254097:0,0,0 +r4611,428:6630773,6254097:0,633439,102891 +g4611,335:7941493,6254097 +g4611,335:7941493,6254097 +g4611,335:11218989,6254097 +g4611,335:12388806,6254097 +g4611,335:13957082,6254097 +g4611,335:15525358,6254097 +g4611,335:17093634,6254097 +k4611,336:18374516,6254097:85505 +k4611,336:18460021,6254097:85505 +) +(4611,337:6630773,7131655:11829248,530548,102891 +h4611,336:6630773,7131655:0,0,0 +r4611,428:6630773,7131655:0,633439,102891 +g4611,336:7941493,7131655 +g4611,336:7941493,7131655 +g4611,336:12048874,7131655 +g4611,336:13617150,7131655 +g4611,336:15185426,7131655 +k4611,337:17410582,7131655:1049440 +k4611,337:18460021,7131655:1049439 +) +(4611,338:6630773,8009213:11829248,530548,132808 +h4611,337:6630773,8009213:0,0,0 +r4611,428:6630773,8009213:0,663356,132808 +g4611,337:7941493,8009213 +g4611,337:7941493,8009213 +g4611,337:12048874,8009213 +k4611,338:15842306,8009213:2617716 +k4611,338:18460021,8009213:2617715 +) +(4611,339:6630773,8886771:11829248,530548,102891 +h4611,338:6630773,8886771:0,0,0 +r4611,428:6630773,8886771:0,633439,102891 +g4611,338:7941493,8886771 +g4611,338:7941493,8886771 +g4611,338:11218989,8886771 +k4611,339:15237964,8886771:3222057 +k4611,339:18460021,8886771:3222057 +) +(4611,340:6630773,9764329:11829248,530548,102891 +h4611,339:6630773,9764329:0,0,0 +r4611,428:6630773,9764329:0,633439,102891 +g4611,339:7941493,9764329 +g4611,339:7941493,9764329 +g4611,339:10804046,9764329 +g4611,339:11973863,9764329 +k4611,340:15814631,9764329:2645391 +k4611,340:18460021,9764329:2645390 +) +(4611,341:6630773,10641887:11829248,530548,141066 +h4611,340:6630773,10641887:0,0,0 +r4611,428:6630773,10641887:0,671614,141066 +g4611,340:7941493,10641887 +g4611,340:7941493,10641887 +g4611,340:12878759,10641887 +k4611,341:16257248,10641887:2202773 +k4611,341:18460021,10641887:2202773 +) +(4611,342:6630773,11519444:11829248,530548,102891 +h4611,341:6630773,11519444:0,0,0 +r4611,428:6630773,11519444:0,633439,102891 +g4611,341:7941493,11519444 +g4611,341:7941493,11519444 +g4611,341:9974162,11519444 +k4611,342:14804950,11519444:3655072 +k4611,342:18460021,11519444:3655071 +) +(4611,343:6630773,12397002:11829248,530548,102891 +h4611,342:6630773,12397002:0,0,0 +r4611,428:6630773,12397002:0,633439,102891 +g4611,342:7941493,12397002 +g4611,342:7941493,12397002 +g4611,342:9559219,12397002 +k4611,343:14597478,12397002:3862543 +k4611,343:18460021,12397002:3862543 +) +(4611,344:6630773,13274560:11829248,530548,102891 +h4611,343:6630773,13274560:0,0,0 +r4611,428:6630773,13274560:0,633439,102891 +g4611,343:7941493,13274560 +g4611,343:7941493,13274560 +g4611,343:10389104,13274560 +g4611,343:11957380,13274560 +k4611,344:15806389,13274560:2653632 +k4611,344:18460021,13274560:2653632 +) +(4611,345:6630773,14152118:11829248,530548,102891 +h4611,344:6630773,14152118:0,0,0 +r4611,428:6630773,14152118:0,633439,102891 +g4611,344:7941493,14152118 +g4611,344:7941493,14152118 +g4611,344:10804046,14152118 +g4611,344:11973863,14152118 +k4611,345:15814631,14152118:2645391 +k4611,345:18460021,14152118:2645390 +) +(4611,346:6630773,15029676:11829248,530548,102891 +h4611,345:6630773,15029676:0,0,0 +r4611,428:6630773,15029676:0,633439,102891 +g4611,345:7941493,15029676 +g4611,345:7941493,15029676 +g4611,345:12048874,15029676 +k4611,346:15652907,15029676:2807115 +k4611,346:18460021,15029676:2807114 +) +(4611,347:6630773,15907234:11829248,530548,141066 +h4611,346:6630773,15907234:0,0,0 +r4611,428:6630773,15907234:0,671614,141066 +g4611,346:7941493,15907234 +g4611,346:7941493,15907234 +g4611,346:12048874,15907234 +g4611,346:13218691,15907234 +g4611,346:14786967,15907234 +k4611,347:17221183,15907234:1238839 +k4611,347:18460021,15907234:1238838 +) +(4611,348:6630773,16784792:11829248,530548,102891 +h4611,347:6630773,16784792:0,0,0 +r4611,428:6630773,16784792:0,633439,102891 +g4611,347:7941493,16784792 +g4611,347:7941493,16784792 +g4611,347:12048874,16784792 +k4611,348:15842306,16784792:2617716 +k4611,348:18460021,16784792:2617715 +) +(4611,349:6630773,17662350:11829248,530548,132808 +h4611,348:6630773,17662350:0,0,0 +r4611,428:6630773,17662350:0,663356,132808 +g4611,348:7941493,17662350 +g4611,348:7941493,17662350 +g4611,348:12048874,17662350 +k4611,349:15842306,17662350:2617716 +k4611,349:18460021,17662350:2617715 +) +(4611,350:6630773,18539908:11829248,530548,132808 +h4611,349:6630773,18539908:0,0,0 +r4611,428:6630773,18539908:0,663356,132808 +g4611,349:7941493,18539908 +g4611,349:7941493,18539908 +g4611,349:12048874,18539908 +k4611,350:15852136,18539908:2607885 +k4611,350:18460021,18539908:2607885 +) +(4611,351:6630773,19417466:11829248,530548,102891 +h4611,350:6630773,19417466:0,0,0 +r4611,428:6630773,19417466:0,633439,102891 +g4611,350:7941493,19417466 +g4611,350:7941493,19417466 +g4611,350:11218989,19417466 +g4611,350:12388806,19417466 +g4611,350:13558623,19417466 +g4611,350:15126899,19417466 +g4611,350:16695175,19417466 +k4611,351:18175287,19417466:284735 +k4611,351:18460021,19417466:284734 +) +(4611,352:6630773,20295023:11829248,530548,102891 +h4611,351:6630773,20295023:0,0,0 +r4611,428:6630773,20295023:0,633439,102891 +g4611,351:7941493,20295023 +g4611,351:7941493,20295023 +g4611,351:12048874,20295023 +g4611,351:13218691,20295023 +k4611,352:16437045,20295023:2022977 +k4611,352:18460021,20295023:2022976 +) +(4611,353:6630773,21172581:11829248,530548,141066 +h4611,352:6630773,21172581:0,0,0 +r4611,428:6630773,21172581:0,671614,141066 +g4611,352:7941493,21172581 +g4611,352:7941493,21172581 +g4611,352:12463816,21172581 +k4611,353:16059607,21172581:2400414 +k4611,353:18460021,21172581:2400414 +) +(4611,354:6630773,22050139:11829248,530548,141066 +h4611,353:6630773,22050139:0,0,0 +r4611,428:6630773,22050139:0,671614,141066 +g4611,353:7941493,22050139 +g4611,353:7941493,22050139 +g4611,353:14123586,22050139 +k4611,354:16889492,22050139:1570529 +k4611,354:18460021,22050139:1570529 +) +(4611,355:6630773,22927697:11829248,530548,132808 +h4611,354:6630773,22927697:0,0,0 +r4611,428:6630773,22927697:0,663356,132808 +g4611,354:7941493,22927697 +g4611,354:7941493,22927697 +g4611,354:15368413,22927697 +k4611,355:17511906,22927697:948116 +k4611,355:18460021,22927697:948115 +) +(4611,356:6630773,23805255:11829248,530548,132808 +h4611,355:6630773,23805255:0,0,0 +r4611,428:6630773,23805255:0,663356,132808 +g4611,355:7941493,23805255 +g4611,355:7941493,23805255 +g4611,355:11218989,23805255 +g4611,355:12787265,23805255 +k4611,356:16211501,23805255:2248520 +k4611,356:18460021,23805255:2248520 +) +(4611,357:6630773,24682813:11829248,530548,132808 +h4611,356:6630773,24682813:0,0,0 +r4611,428:6630773,24682813:0,663356,132808 +g4611,356:7941493,24682813 +g4611,356:7941493,24682813 +g4611,356:11218989,24682813 +g4611,356:12388806,24682813 +g4611,356:13558623,24682813 +g4611,356:15126899,24682813 +k4611,357:17391149,24682813:1068873 +k4611,357:18460021,24682813:1068872 +) +(4611,358:6630773,25560371:11829248,530548,132808 +h4611,357:6630773,25560371:0,0,0 +r4611,428:6630773,25560371:0,663356,132808 +g4611,357:7941493,25560371 +g4611,357:7941493,25560371 +g4611,357:11633931,25560371 +k4611,358:15644665,25560371:2815357 +k4611,358:18460021,25560371:2815356 +) +(4611,359:6630773,26437929:11829248,530548,132808 +h4611,358:6630773,26437929:0,0,0 +r4611,428:6630773,26437929:0,663356,132808 +g4611,358:7941493,26437929 +g4611,358:7941493,26437929 +g4611,358:11633931,26437929 +k4611,359:15644665,26437929:2815357 +k4611,359:18460021,26437929:2815356 +) +(4611,360:6630773,27315487:11829248,538806,132808 +h4611,359:6630773,27315487:0,0,0 +r4611,428:6630773,27315487:0,671614,132808 +g4611,359:7941493,27315487 +g4611,359:7941493,27315487 +g4611,359:9974162,27315487 +k4611,360:14814780,27315487:3645241 +k4611,360:18460021,27315487:3645241 +) +(4611,361:6630773,28193045:11829248,530548,141066 +h4611,360:6630773,28193045:0,0,0 +r4611,428:6630773,28193045:0,671614,141066 +g4611,360:7941493,28193045 +g4611,360:7941493,28193045 +g4611,360:14123586,28193045 +g4611,360:15691862,28193045 +k4611,361:17673630,28193045:786391 +k4611,361:18460021,28193045:786391 +) +(4611,362:6630773,29070603:11829248,530548,132808 +h4611,361:6630773,29070603:0,0,0 +r4611,428:6630773,29070603:0,663356,132808 +g4611,361:7941493,29070603 +g4611,361:7941493,29070603 +g4611,361:13708644,29070603 +k4611,362:16682021,29070603:1778000 +k4611,362:18460021,29070603:1778000 +) +(4611,363:6630773,29948160:11829248,530548,141066 +h4611,362:6630773,29948160:0,0,0 +r4611,428:6630773,29948160:0,671614,141066 +g4611,362:7941493,29948160 +g4611,362:7941493,29948160 +g4611,362:13708644,29948160 +g4611,362:15276920,29948160 +k4611,363:17466159,29948160:993862 +k4611,363:18460021,29948160:993862 +) +(4611,364:6630773,30825718:11829248,530548,132808 +h4611,363:6630773,30825718:0,0,0 +r4611,428:6630773,30825718:0,663356,132808 +g4611,363:7941493,30825718 +g4611,363:7941493,30825718 +g4611,363:11218989,30825718 +k4611,364:15427363,30825718:3032658 +k4611,364:18460021,30825718:3032658 +) +(4611,365:6630773,31703276:11829248,530548,132808 +h4611,364:6630773,31703276:0,0,0 +r4611,428:6630773,31703276:0,663356,132808 +g4611,364:7941493,31703276 +g4611,364:7941493,31703276 +g4611,364:11633931,31703276 +k4611,365:15644665,31703276:2815357 +k4611,365:18460021,31703276:2815356 +) +(4611,366:6630773,32580834:11829248,530548,132808 +h4611,365:6630773,32580834:0,0,0 +r4611,428:6630773,32580834:0,663356,132808 +g4611,365:7941493,32580834 +g4611,365:7941493,32580834 +g4611,365:10804046,32580834 +g4611,365:13895379,32580834 +g4611,365:15463655,32580834 +g4611,365:17031931,32580834 +k4611,365:18460021,32580834:145551 +) +(4611,366:9252213,33445914:9207808,485622,102891 +g4611,365:10820489,33445914 +g4611,365:12388765,33445914 +k4611,366:16022082,33445914:2437940 +k4611,366:18460021,33445914:2437939 +) +(4611,367:6630773,34323472:11829248,530548,132808 +h4611,366:6630773,34323472:0,0,0 +r4611,428:6630773,34323472:0,663356,132808 +g4611,366:7941493,34323472 +g4611,366:7941493,34323472 +g4611,366:11633931,34323472 +k4611,367:15435605,34323472:3024417 +k4611,367:18460021,34323472:3024416 +) +(4611,368:6630773,35201030:11829248,530548,132808 +h4611,367:6630773,35201030:0,0,0 +r4611,428:6630773,35201030:0,663356,132808 +g4611,367:7941493,35201030 +g4611,367:7941493,35201030 +g4611,367:12878759,35201030 +k4611,368:16267079,35201030:2192943 +k4611,368:18460021,35201030:2192942 +) +(4611,369:6630773,36078588:11829248,530548,132808 +h4611,368:6630773,36078588:0,0,0 +r4611,428:6630773,36078588:0,663356,132808 +g4611,368:7941493,36078588 +g4611,368:7941493,36078588 +g4611,368:11218989,36078588 +g4611,368:12787265,36078588 +k4611,369:16211501,36078588:2248520 +k4611,369:18460021,36078588:2248520 +) +(4611,370:6630773,36956146:11829248,530548,132808 +h4611,369:6630773,36956146:0,0,0 +r4611,428:6630773,36956146:0,663356,132808 +g4611,369:7941493,36956146 +g4611,369:7941493,36956146 +g4611,369:11633931,36956146 +k4611,370:15644665,36956146:2815357 +k4611,370:18460021,36956146:2815356 +) +(4611,371:6630773,37833704:11829248,530548,132808 +h4611,370:6630773,37833704:0,0,0 +r4611,428:6630773,37833704:0,663356,132808 +g4611,370:7941493,37833704 +g4611,370:7941493,37833704 +g4611,370:10804046,37833704 +k4611,371:15219892,37833704:3240130 +k4611,371:18460021,37833704:3240129 +) +(4611,372:6630773,38711262:11829248,530548,141066 +h4611,371:6630773,38711262:0,0,0 +r4611,428:6630773,38711262:0,671614,141066 +g4611,371:7941493,38711262 +g4611,371:7941493,38711262 +g4611,371:14953471,38711262 +k4611,372:17304435,38711262:1155587 +k4611,372:18460021,38711262:1155586 +) +(4611,373:6630773,39588820:11829248,538806,132808 +h4611,372:6630773,39588820:0,0,0 +r4611,428:6630773,39588820:0,671614,132808 +g4611,372:7941493,39588820 +g4611,372:7941493,39588820 +g4611,372:14538528,39588820 +k4611,373:17096963,39588820:1363058 +k4611,373:18460021,39588820:1363058 +) +(4611,374:6630773,40466377:11829248,530548,132808 +h4611,373:6630773,40466377:0,0,0 +r4611,428:6630773,40466377:0,663356,132808 +g4611,373:7941493,40466377 +g4611,373:7941493,40466377 +g4611,373:16198298,40466377 +k4611,373:18460021,40466377:979184 +) +(4611,374:9252213,41331457:9207808,485622,11795 +k4611,374:14443975,41331457:4016046 +k4611,374:18460021,41331457:4016046 +) +(4611,375:6630773,42209015:11829248,530548,141066 +h4611,374:6630773,42209015:0,0,0 +r4611,428:6630773,42209015:0,671614,141066 +g4611,374:7941493,42209015 +g4611,374:7941493,42209015 +g4611,374:15368413,42209015 +g4611,374:16936689,42209015 +k4611,375:18296044,42209015:163978 +k4611,375:18460021,42209015:163977 +) +(4611,376:6630773,43086573:11829248,530548,141066 +h4611,375:6630773,43086573:0,0,0 +r4611,428:6630773,43086573:0,671614,141066 +g4611,375:7941493,43086573 +g4611,375:7941493,43086573 +g4611,375:14953471,43086573 +k4611,376:17304435,43086573:1155587 +k4611,376:18460021,43086573:1155586 +) +(4611,377:6630773,43964131:11829248,530548,132808 +h4611,376:6630773,43964131:0,0,0 +r4611,428:6630773,43964131:0,663356,132808 +g4611,376:7941493,43964131 +g4611,376:7941493,43964131 +g4611,376:14953471,43964131 +g4611,376:16521747,43964131 +k4611,376:18460021,43964131:655735 +) +(4611,377:9252213,44829211:9207808,485622,102891 +g4611,376:10820489,44829211 +k4611,377:15237944,44829211:3222078 +k4611,377:18460021,44829211:3222077 +) +(4611,378:6630773,45706769:11829248,530548,132808 +h4611,377:6630773,45706769:0,0,0 +r4611,428:6630773,45706769:0,663356,132808 +g4611,377:7941493,45706769 +g4611,377:7941493,45706769 +g4611,377:11218989,45706769 +k4611,378:15437194,45706769:3022828 +k4611,378:18460021,45706769:3022827 +) +] +k4611,428:19606901,45706769:1146880 +r4611,428:19606901,45706769:0,40240840,132808 +k4611,428:20753781,45706769:1146880 +[4611,428:20753781,45706769:11829248,40108032,102891 +(4611,379:20753781,6254097:11829248,530548,132808 +h4611,378:20753781,6254097:0,0,0 +r4611,428:20753781,6254097:0,663356,132808 +g4611,378:22064501,6254097 +g4611,378:22064501,6254097 +g4611,378:25756939,6254097 +g4611,378:27325215,6254097 +k4611,379:30551811,6254097:2031219 +k4611,379:32583029,6254097:2031218 +) +(4611,380:20753781,7131088:11829248,530548,132808 +h4611,379:20753781,7131088:0,0,0 +r4611,428:20753781,7131088:0,663356,132808 +g4611,379:22064501,7131088 +g4611,379:22064501,7131088 +g4611,379:26171882,7131088 +g4611,379:27740158,7131088 +k4611,380:30749452,7131088:1833578 +k4611,380:32583029,7131088:1833577 +) +(4611,381:20753781,8008078:11829248,530548,132808 +h4611,380:20753781,8008078:0,0,0 +r4611,428:20753781,8008078:0,663356,132808 +g4611,380:22064501,8008078 +g4611,380:22064501,8008078 +g4611,380:28661536,8008078 +k4611,381:31210141,8008078:1372889 +k4611,381:32583029,8008078:1372888 +) +(4611,383:20753781,8885069:11829248,530548,132808 +h4611,381:20753781,8885069:0,0,0 +r4611,428:20753781,8885069:0,663356,132808 +g4611,381:22064501,8885069 +g4611,381:22064501,8885069 +g4611,381:25341997,8885069 +g4611,381:26511814,8885069 +g4611,381:27681631,8885069 +g4611,381:28851448,8885069 +g4611,381:30021265,8885069 +k4611,381:32583029,8885069:1279225 +) +(4611,383:23375221,9750149:9207808,485622,102891 +g4611,381:24923836,9750149 +g4611,381:26492112,9750149 +g4611,382:28060388,9750149 +g4611,382:29628664,9750149 +k4611,383:31703535,9750149:879494 +k4611,383:32583029,9750149:879494 +) +(4611,384:20753781,10627140:11829248,530548,132808 +h4611,383:20753781,10627140:0,0,0 +r4611,428:20753781,10627140:0,663356,132808 +g4611,383:22064501,10627140 +g4611,383:22064501,10627140 +g4611,383:24927054,10627140 +k4611,384:29352730,10627140:3230299 +k4611,384:32583029,10627140:3230299 +) +(4611,385:20753781,11504131:11829248,530548,132808 +h4611,384:20753781,11504131:0,0,0 +r4611,428:20753781,11504131:0,663356,132808 +g4611,384:22064501,11504131 +g4611,384:22064501,11504131 +g4611,384:24097170,11504131 +g4611,384:25665446,11504131 +g4611,384:27233722,11504131 +g4611,384:28801998,11504131 +k4611,385:31280372,11504131:1302658 +k4611,385:32583029,11504131:1302657 +) +(4611,386:20753781,12381121:11829248,538806,132808 +h4611,385:20753781,12381121:0,0,0 +r4611,428:20753781,12381121:0,671614,132808 +g4611,385:22064501,12381121 +g4611,385:22064501,12381121 +g4611,385:25341997,12381121 +k4611,386:29560202,12381121:3022828 +k4611,386:32583029,12381121:3022827 +) +(4611,387:20753781,13258112:11829248,530548,132808 +h4611,386:20753781,13258112:0,0,0 +r4611,428:20753781,13258112:0,663356,132808 +g4611,386:22064501,13258112 +g4611,386:22064501,13258112 +g4611,386:25756939,13258112 +k4611,387:29767673,13258112:2815357 +k4611,387:32583029,13258112:2815356 +) +(4611,388:20753781,14135103:11829248,530548,132808 +h4611,387:20753781,14135103:0,0,0 +r4611,428:20753781,14135103:0,663356,132808 +g4611,387:22064501,14135103 +g4611,387:22064501,14135103 +g4611,387:25756939,14135103 +k4611,388:29767673,14135103:2815357 +k4611,388:32583029,14135103:2815356 +) +(4611,389:20753781,15012094:11829248,538806,132808 +h4611,388:20753781,15012094:0,0,0 +r4611,428:20753781,15012094:0,671614,132808 +g4611,388:22064501,15012094 +g4611,388:22064501,15012094 +g4611,388:24097170,15012094 +k4611,389:28937788,15012094:3645241 +k4611,389:32583029,15012094:3645241 +) +(4611,390:20753781,15889084:11829248,530548,132808 +h4611,389:20753781,15889084:0,0,0 +r4611,428:20753781,15889084:0,663356,132808 +g4611,389:22064501,15889084 +g4611,389:22064501,15889084 +g4611,389:25756939,15889084 +k4611,390:29767673,15889084:2815357 +k4611,390:32583029,15889084:2815356 +) +(4611,391:20753781,16766075:11829248,530548,132808 +h4611,390:20753781,16766075:0,0,0 +r4611,428:20753781,16766075:0,663356,132808 +g4611,390:22064501,16766075 +g4611,390:22064501,16766075 +g4611,390:27001767,16766075 +k4611,391:30390087,16766075:2192943 +k4611,391:32583029,16766075:2192942 +) +(4611,392:20753781,17643066:11829248,530548,132808 +h4611,391:20753781,17643066:0,0,0 +r4611,428:20753781,17643066:0,663356,132808 +g4611,391:22064501,17643066 +g4611,391:22064501,17643066 +g4611,391:25341997,17643066 +g4611,391:26910273,17643066 +k4611,392:30334509,17643066:2248520 +k4611,392:32583029,17643066:2248520 +) +(4611,393:20753781,18520056:11829248,530548,132808 +h4611,392:20753781,18520056:0,0,0 +r4611,428:20753781,18520056:0,663356,132808 +g4611,392:22064501,18520056 +g4611,392:22064501,18520056 +g4611,392:25341997,18520056 +k4611,393:29560202,18520056:3022828 +k4611,393:32583029,18520056:3022827 +) +(4611,394:20753781,19397047:11829248,530548,132808 +h4611,393:20753781,19397047:0,0,0 +r4611,428:20753781,19397047:0,663356,132808 +g4611,393:22064501,19397047 +g4611,393:22064501,19397047 +g4611,393:24097170,19397047 +k4611,394:28937788,19397047:3645241 +k4611,394:32583029,19397047:3645241 +) +(4611,395:20753781,20274038:11829248,530548,132808 +h4611,394:20753781,20274038:0,0,0 +r4611,428:20753781,20274038:0,663356,132808 +g4611,394:22064501,20274038 +g4611,394:22064501,20274038 +g4611,394:26586824,20274038 +k4611,395:30182615,20274038:2400414 +k4611,395:32583029,20274038:2400414 +) +(4611,396:20753781,21151029:11829248,538806,132808 +h4611,395:20753781,21151029:0,0,0 +r4611,428:20753781,21151029:0,671614,132808 +g4611,395:22064501,21151029 +g4611,395:22064501,21151029 +g4611,395:25341997,21151029 +k4611,396:29560202,21151029:3022828 +k4611,396:32583029,21151029:3022827 +) +(4611,397:20753781,22028019:11829248,530548,141066 +h4611,396:20753781,22028019:0,0,0 +r4611,428:20753781,22028019:0,671614,141066 +g4611,396:22064501,22028019 +g4611,396:22064501,22028019 +g4611,396:25341997,22028019 +k4611,397:29560202,22028019:3022828 +k4611,397:32583029,22028019:3022827 +) +(4611,398:20753781,22905010:11829248,530548,102891 +h4611,397:20753781,22905010:0,0,0 +r4611,428:20753781,22905010:0,633439,102891 +g4611,397:22064501,22905010 +g4611,397:22064501,22905010 +g4611,397:25341997,22905010 +k4611,398:29560202,22905010:3022828 +k4611,398:32583029,22905010:3022827 +) +(4611,399:20753781,23782001:11829248,530548,102891 +h4611,398:20753781,23782001:0,0,0 +r4611,428:20753781,23782001:0,633439,102891 +g4611,398:22064501,23782001 +g4611,398:22064501,23782001 +g4611,398:25756939,23782001 +k4611,399:29767673,23782001:2815357 +k4611,399:32583029,23782001:2815356 +) +(4611,400:20753781,24658992:11829248,530548,132808 +h4611,399:20753781,24658992:0,0,0 +r4611,428:20753781,24658992:0,663356,132808 +g4611,399:22064501,24658992 +g4611,399:22064501,24658992 +g4611,399:25756939,24658992 +k4611,400:29767673,24658992:2815357 +k4611,400:32583029,24658992:2815356 +) +(4611,401:20753781,25535982:11829248,530548,102891 +h4611,400:20753781,25535982:0,0,0 +r4611,428:20753781,25535982:0,633439,102891 +g4611,400:22064501,25535982 +g4611,400:22064501,25535982 +g4611,400:26586824,25535982 +g4611,400:29678157,25535982 +g4611,400:31246433,25535982 +k4611,401:32512420,25535982:70610 +k4611,401:32583029,25535982:70609 +) +(4611,402:20753781,26412973:11829248,530548,102891 +h4611,401:20753781,26412973:0,0,0 +r4611,428:20753781,26412973:0,633439,102891 +g4611,401:22064501,26412973 +g4611,401:22064501,26412973 +g4611,401:27001767,26412973 +g4611,401:28570043,26412973 +g4611,401:30138319,26412973 +k4611,402:31948532,26412973:634497 +k4611,402:32583029,26412973:634497 +) +(4611,403:20753781,27289964:11829248,538806,102891 +h4611,402:20753781,27289964:0,0,0 +r4611,428:20753781,27289964:0,641697,102891 +g4611,402:22064501,27289964 +g4611,402:22064501,27289964 +g4611,402:28246594,27289964 +g4611,402:29814870,27289964 +k4611,403:31796638,27289964:786391 +k4611,403:32583029,27289964:786391 +) +(4611,404:20753781,28166954:11829248,538806,102891 +h4611,403:20753781,28166954:0,0,0 +r4611,428:20753781,28166954:0,641697,102891 +g4611,403:22064501,28166954 +g4611,403:22064501,28166954 +g4611,403:26586824,28166954 +k4611,404:30182615,28166954:2400414 +k4611,404:32583029,28166954:2400414 +) +(4611,405:20753781,29043945:11829248,530548,132808 +h4611,404:20753781,29043945:0,0,0 +r4611,428:20753781,29043945:0,663356,132808 +g4611,404:22064501,29043945 +g4611,404:22064501,29043945 +g4611,404:27001767,29043945 +k4611,405:30380256,29043945:2202773 +k4611,405:32583029,29043945:2202773 +) +(4611,406:20753781,29920936:11829248,530548,132808 +h4611,405:20753781,29920936:0,0,0 +r4611,428:20753781,29920936:0,663356,132808 +g4611,405:22064501,29920936 +g4611,405:22064501,29920936 +g4611,405:27831652,29920936 +k4611,406:30805029,29920936:1778000 +k4611,406:32583029,29920936:1778000 +) +(4611,407:20753781,30797927:11829248,530548,102891 +h4611,406:20753781,30797927:0,0,0 +r4611,428:20753781,30797927:0,633439,102891 +g4611,406:22064501,30797927 +g4611,406:22064501,30797927 +g4611,406:27416709,30797927 +g4611,406:28984985,30797927 +k4611,407:32143224,30797927:439806 +k4611,407:32583029,30797927:439805 +) +(4611,408:20753781,31674917:11829248,530548,102891 +h4611,407:20753781,31674917:0,0,0 +r4611,428:20753781,31674917:0,633439,102891 +g4611,407:22064501,31674917 +g4611,407:22064501,31674917 +g4611,407:27001767,31674917 +k4611,408:30390087,31674917:2192943 +k4611,408:32583029,31674917:2192942 +) +(4611,409:20753781,32551908:11829248,530548,102891 +h4611,408:20753781,32551908:0,0,0 +r4611,428:20753781,32551908:0,633439,102891 +g4611,408:22064501,32551908 +g4611,408:22064501,32551908 +g4611,408:26586824,32551908 +g4611,408:28155100,32551908 +k4611,409:30966753,32551908:1616276 +k4611,409:32583029,32551908:1616276 +) +(4611,410:20753781,33428899:11829248,530548,102891 +h4611,409:20753781,33428899:0,0,0 +r4611,428:20753781,33428899:0,633439,102891 +g4611,409:22064501,33428899 +g4611,409:22064501,33428899 +g4611,409:27416709,33428899 +k4611,410:30597558,33428899:1985472 +k4611,410:32583029,33428899:1985471 +) +(4611,411:20753781,34305890:11829248,530548,102891 +h4611,410:20753781,34305890:0,0,0 +r4611,428:20753781,34305890:0,633439,102891 +g4611,410:22064501,34305890 +g4611,410:22064501,34305890 +g4611,410:27416709,34305890 +k4611,411:30587727,34305890:1995302 +k4611,411:32583029,34305890:1995302 +) +(4611,412:20753781,35182880:11829248,538806,102891 +h4611,411:20753781,35182880:0,0,0 +r4611,428:20753781,35182880:0,641697,102891 +g4611,411:22064501,35182880 +g4611,411:22064501,35182880 +g4611,411:27001767,35182880 +k4611,412:30380256,35182880:2202773 +k4611,412:32583029,35182880:2202773 +) +(4611,413:20753781,36059871:11829248,538806,102891 +h4611,412:20753781,36059871:0,0,0 +r4611,428:20753781,36059871:0,641697,102891 +g4611,412:22064501,36059871 +g4611,412:22064501,36059871 +g4611,412:27001767,36059871 +k4611,413:30380256,36059871:2202773 +k4611,413:32583029,36059871:2202773 +) +(4611,414:20753781,36936862:11829248,538806,102891 +h4611,413:20753781,36936862:0,0,0 +r4611,428:20753781,36936862:0,641697,102891 +g4611,413:22064501,36936862 +g4611,413:22064501,36936862 +g4611,413:26586824,36936862 +k4611,414:30182615,36936862:2400414 +k4611,414:32583029,36936862:2400414 +) +(4611,415:20753781,37813852:11829248,530548,102891 +h4611,414:20753781,37813852:0,0,0 +r4611,428:20753781,37813852:0,633439,102891 +g4611,414:22064501,37813852 +g4611,414:22064501,37813852 +g4611,414:27001767,37813852 +k4611,415:30390087,37813852:2192943 +k4611,415:32583029,37813852:2192942 +) +(4611,416:20753781,38690843:11829248,530548,102891 +h4611,415:20753781,38690843:0,0,0 +r4611,428:20753781,38690843:0,633439,102891 +g4611,415:22064501,38690843 +g4611,415:22064501,38690843 +g4611,415:27416709,38690843 +k4611,416:30587727,38690843:1995302 +k4611,416:32583029,38690843:1995302 +) +(4611,417:20753781,39567834:11829248,530548,102891 +h4611,416:20753781,39567834:0,0,0 +r4611,428:20753781,39567834:0,633439,102891 +g4611,416:22064501,39567834 +g4611,416:22064501,39567834 +g4611,416:26586824,39567834 +k4611,417:30182615,39567834:2400414 +k4611,417:32583029,39567834:2400414 +) +(4611,418:20753781,40444825:11829248,530548,102891 +h4611,417:20753781,40444825:0,0,0 +r4611,428:20753781,40444825:0,633439,102891 +g4611,417:22064501,40444825 +g4611,417:22064501,40444825 +g4611,417:26586824,40444825 +k4611,418:30182615,40444825:2400414 +k4611,418:32583029,40444825:2400414 +) +(4611,419:20753781,41321815:11829248,530548,102891 +h4611,418:20753781,41321815:0,0,0 +r4611,428:20753781,41321815:0,633439,102891 +g4611,418:22064501,41321815 +g4611,418:22064501,41321815 +g4611,418:27416709,41321815 +g4611,418:28984985,41321815 +k4611,419:31381696,41321815:1201334 +k4611,419:32583029,41321815:1201333 +) +(4611,420:20753781,42198806:11829248,530548,102891 +h4611,419:20753781,42198806:0,0,0 +r4611,428:20753781,42198806:0,633439,102891 +g4611,419:22064501,42198806 +g4611,419:22064501,42198806 +g4611,419:27831652,42198806 +g4611,419:29399928,42198806 +k4611,420:31589167,42198806:993862 +k4611,420:32583029,42198806:993862 +) +(4611,421:20753781,43075797:11829248,530548,102891 +h4611,420:20753781,43075797:0,0,0 +r4611,428:20753781,43075797:0,633439,102891 +g4611,420:22064501,43075797 +g4611,420:22064501,43075797 +g4611,420:26586824,43075797 +k4611,421:30182615,43075797:2400414 +k4611,421:32583029,43075797:2400414 +) +(4611,422:20753781,43952788:11829248,530548,102891 +h4611,421:20753781,43952788:0,0,0 +r4611,428:20753781,43952788:0,633439,102891 +g4611,421:22064501,43952788 +g4611,421:22064501,43952788 +g4611,421:27001767,43952788 +k4611,422:30390087,43952788:2192943 +k4611,422:32583029,43952788:2192942 +) +(4611,423:20753781,44829778:11829248,530548,102891 +h4611,422:20753781,44829778:0,0,0 +r4611,428:20753781,44829778:0,633439,102891 +g4611,422:22064501,44829778 +g4611,422:22064501,44829778 +g4611,422:26171882,44829778 +k4611,423:29975144,44829778:2607885 +k4611,423:32583029,44829778:2607885 +) +(4611,424:20753781,45706769:11829248,530548,102891 +h4611,423:20753781,45706769:0,0,0 +r4611,428:20753781,45706769:0,633439,102891 +g4611,423:22064501,45706769 +g4611,423:22064501,45706769 +g4611,423:24512112,45706769 +k4611,424:29135429,45706769:3447601 +k4611,424:32583029,45706769:3447600 +) +] +(4611,428:32583029,45706769:0,355205,126483 +h4611,428:32583029,45706769:420741,355205,126483 +k4611,428:32583029,45706769:-420741 +) +) +] +(4611,428:32583029,45706769:0,0,0 +g4611,428:32583029,45706769 +) +) +] +(4611,428:6630773,47279633:25952256,0,0 +h4611,428:6630773,47279633:25952256,0,0 +) +] +(4611,428:4262630,4025873:0,0,0 +[4611,428:-473656,4025873:0,0,0 +(4611,428:-473656,-710413:0,0,0 +(4611,428:-473656,-710413:0,0,0 +g4611,428:-473656,-710413 +) +g4611,428:-473656,-710413 +) +] +) +] +!30838 +}459 !12 -{459 -[4607,509:4262630,47279633:28320399,43253760,0 -(4607,509:4262630,4025873:0,0,0 -[4607,509:-473656,4025873:0,0,0 -(4607,509:-473656,-710413:0,0,0 -(4607,509:-473656,-644877:0,0,0 -k4607,509:-473656,-644877:-65536 +{460 +[4611,508:4262630,47279633:28320399,43253760,0 +(4611,508:4262630,4025873:0,0,0 +[4611,508:-473656,4025873:0,0,0 +(4611,508:-473656,-710413:0,0,0 +(4611,508:-473656,-644877:0,0,0 +k4611,508:-473656,-644877:-65536 ) -(4607,509:-473656,4736287:0,0,0 -k4607,509:-473656,4736287:5209943 +(4611,508:-473656,4736287:0,0,0 +k4611,508:-473656,4736287:5209943 ) -g4607,509:-473656,-710413 +g4611,508:-473656,-710413 ) ] ) -[4607,509:6630773,47279633:25952256,43253760,0 -[4607,509:6630773,4812305:25952256,786432,0 -(4607,509:6630773,4812305:25952256,513147,134348 -(4607,509:6630773,4812305:25952256,513147,134348 -g4607,509:3078558,4812305 -[4607,509:3078558,4812305:0,0,0 -(4607,509:3078558,2439708:0,1703936,0 -k4607,509:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,509:2537886,2439708:1179648,16384,0 +[4611,508:6630773,47279633:25952256,43253760,0 +[4611,508:6630773,4812305:25952256,786432,0 +(4611,508:6630773,4812305:25952256,513147,134348 +(4611,508:6630773,4812305:25952256,513147,134348 +g4611,508:3078558,4812305 +[4611,508:3078558,4812305:0,0,0 +(4611,508:3078558,2439708:0,1703936,0 +k4611,508:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,508:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,509:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,508:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,509:3078558,4812305:0,0,0 -(4607,509:3078558,2439708:0,1703936,0 -g4607,509:29030814,2439708 -g4607,509:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,509:36151628,1915420:16384,1179648,0 +[4611,508:3078558,4812305:0,0,0 +(4611,508:3078558,2439708:0,1703936,0 +g4611,508:29030814,2439708 +g4611,508:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,508:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,509:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,508:37855564,2439708:1179648,16384,0 ) ) -k4607,509:3078556,2439708:-34777008 +k4611,508:3078556,2439708:-34777008 ) ] -[4607,509:3078558,4812305:0,0,0 -(4607,509:3078558,49800853:0,16384,2228224 -k4607,509:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,509:2537886,49800853:1179648,16384,0 +[4611,508:3078558,4812305:0,0,0 +(4611,508:3078558,49800853:0,16384,2228224 +k4611,508:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,508:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,509:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,508:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,509:3078558,4812305:0,0,0 -(4607,509:3078558,49800853:0,16384,2228224 -g4607,509:29030814,49800853 -g4607,509:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,509:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,509:37855564,49800853:1179648,16384,0 -) -) -k4607,509:3078556,49800853:-34777008 -) -] -g4607,509:6630773,4812305 -k4607,509:23083588,4812305:15257438 -g4607,509:24981510,4812305 -g4607,509:25796777,4812305 -g4607,509:26410194,4812305 -g4607,509:28753761,4812305 -g4607,509:29709275,4812305 -) -) -] -[4607,509:6630773,45706769:25952256,40108032,0 -(4607,509:6630773,45706769:25952256,40108032,0 -(4607,509:6630773,45706769:0,0,0 -g4607,509:6630773,45706769 -) -[4607,509:6630773,45706769:25952256,40108032,0 -(4607,509:6630773,45706769:25952256,40108032,126483 -[4607,509:6630773,45706769:11829248,40108032,11795 -(4607,426:6630773,6254097:11829248,530548,102891 -h4607,425:6630773,6254097:0,0,0 -r4607,509:6630773,6254097:0,633439,102891 -g4607,425:7941493,6254097 -g4607,425:7941493,6254097 -g4607,425:11633931,6254097 -g4607,425:12803748,6254097 -g4607,425:13973565,6254097 -k4607,426:16814482,6254097:1645540 -k4607,426:18460021,6254097:1645539 -) -(4607,427:6630773,7132968:11829248,530548,102891 -h4607,426:6630773,7132968:0,0,0 -r4607,509:6630773,7132968:0,633439,102891 -g4607,426:7941493,7132968 -g4607,426:7941493,7132968 -g4607,426:11633931,7132968 -k4607,427:15634834,7132968:2825187 -k4607,427:18460021,7132968:2825187 -) -(4607,428:6630773,8011840:11829248,530548,102891 -h4607,427:6630773,8011840:0,0,0 -r4607,509:6630773,8011840:0,633439,102891 -g4607,427:7941493,8011840 -g4607,427:7941493,8011840 -g4607,427:12048874,8011840 -g4607,427:13218691,8011840 -k4607,428:16427214,8011840:2032807 -k4607,428:18460021,8011840:2032807 -) -(4607,429:6630773,8890711:11829248,530548,132808 -h4607,428:6630773,8890711:0,0,0 -r4607,509:6630773,8890711:0,663356,132808 -g4607,428:7941493,8890711 -g4607,428:7941493,8890711 -g4607,428:10389104,8890711 -g4607,428:11558921,8890711 -k4607,429:15398100,8890711:3061922 -k4607,429:18460021,8890711:3061921 -) -(4607,430:6630773,9769582:11829248,530548,132808 -h4607,429:6630773,9769582:0,0,0 -r4607,509:6630773,9769582:0,663356,132808 -g4607,429:7941493,9769582 -g4607,429:7941493,9769582 -g4607,429:12048874,9769582 -g4607,429:13617150,9769582 -g4607,429:15185426,9769582 -k4607,430:17410582,9769582:1049440 -k4607,430:18460021,9769582:1049439 -) -(4607,431:6630773,10648454:11829248,530548,102891 -h4607,430:6630773,10648454:0,0,0 -r4607,509:6630773,10648454:0,633439,102891 -g4607,430:7941493,10648454 -g4607,430:7941493,10648454 -g4607,430:11218989,10648454 -k4607,431:15427363,10648454:3032658 -k4607,431:18460021,10648454:3032658 -) -(4607,432:6630773,11527325:11829248,530548,102891 -h4607,431:6630773,11527325:0,0,0 -r4607,509:6630773,11527325:0,633439,102891 -g4607,431:7941493,11527325 -g4607,431:7941493,11527325 -g4607,431:12878759,11527325 -g4607,431:14447035,11527325 -k4607,432:17041386,11527325:1418635 -k4607,432:18460021,11527325:1418635 -) -(4607,433:6630773,12406197:11829248,530548,102891 -h4607,432:6630773,12406197:0,0,0 -r4607,509:6630773,12406197:0,633439,102891 -g4607,432:7941493,12406197 -g4607,432:7941493,12406197 -g4607,432:10389104,12406197 -k4607,433:14823022,12406197:3637000 -k4607,433:18460021,12406197:3636999 -) -(4607,434:6630773,13285068:11829248,538806,102891 -h4607,433:6630773,13285068:0,0,0 -r4607,509:6630773,13285068:0,641697,102891 -g4607,433:7941493,13285068 -g4607,433:7941493,13285068 -g4607,433:9974162,13285068 -k4607,434:14814780,13285068:3645241 -k4607,434:18460021,13285068:3645241 -) -(4607,435:6630773,14163939:11829248,530548,141066 -h4607,434:6630773,14163939:0,0,0 -r4607,509:6630773,14163939:0,671614,141066 -g4607,434:7941493,14163939 -g4607,434:7941493,14163939 -g4607,434:10389104,14163939 -k4607,435:15022251,14163939:3437770 -k4607,435:18460021,14163939:3437770 -) -(4607,436:6630773,15042811:11829248,530548,141066 -h4607,435:6630773,15042811:0,0,0 -r4607,509:6630773,15042811:0,671614,141066 -g4607,435:7941493,15042811 -g4607,435:7941493,15042811 -g4607,435:13293701,15042811 -k4607,436:16464719,15042811:1995302 -k4607,436:18460021,15042811:1995302 -) -(4607,437:6630773,15921682:11829248,530548,102891 -h4607,436:6630773,15921682:0,0,0 -r4607,509:6630773,15921682:0,633439,102891 -g4607,436:7941493,15921682 -g4607,436:7941493,15921682 -g4607,436:10389104,15921682 -g4607,436:11558921,15921682 -k4607,437:15607160,15921682:2852862 -k4607,437:18460021,15921682:2852861 -) -(4607,438:6630773,16800553:11829248,530548,102891 -h4607,437:6630773,16800553:0,0,0 -r4607,509:6630773,16800553:0,633439,102891 -g4607,437:7941493,16800553 -g4607,437:7941493,16800553 -g4607,437:10389104,16800553 -g4607,437:11957380,16800553 -k4607,438:15796559,16800553:2663463 -k4607,438:18460021,16800553:2663462 -) -(4607,439:6630773,17679425:11829248,530548,102891 -h4607,438:6630773,17679425:0,0,0 -r4607,509:6630773,17679425:0,633439,102891 -g4607,438:7941493,17679425 -g4607,438:7941493,17679425 -g4607,438:11633931,17679425 -k4607,439:15644665,17679425:2815357 -k4607,439:18460021,17679425:2815356 -) -(4607,440:6630773,18558296:11829248,530548,102891 -h4607,439:6630773,18558296:0,0,0 -r4607,509:6630773,18558296:0,633439,102891 -g4607,439:7941493,18558296 -g4607,439:7941493,18558296 -g4607,439:9974162,18558296 -k4607,440:14615551,18558296:3844471 -k4607,440:18460021,18558296:3844470 -) -(4607,441:6630773,19437168:11829248,530548,102891 -h4607,440:6630773,19437168:0,0,0 -r4607,509:6630773,19437168:0,633439,102891 -g4607,440:7941493,19437168 -g4607,440:7941493,19437168 -g4607,440:12878759,19437168 -k4607,441:16267079,19437168:2192943 -k4607,441:18460021,19437168:2192942 -) -(4607,442:6630773,20316039:11829248,530548,102891 -h4607,441:6630773,20316039:0,0,0 -r4607,509:6630773,20316039:0,633439,102891 -g4607,441:7941493,20316039 -g4607,441:7941493,20316039 -g4607,441:11218989,20316039 -g4607,441:12787265,20316039 -g4607,441:14355541,20316039 -k4607,442:17005470,20316039:1454552 -k4607,442:18460021,20316039:1454551 -) -(4607,443:6630773,21194910:11829248,530548,102891 -h4607,442:6630773,21194910:0,0,0 -r4607,509:6630773,21194910:0,633439,102891 -g4607,442:7941493,21194910 -g4607,442:7941493,21194910 -g4607,442:11218989,21194910 -g4607,442:12388806,21194910 -k4607,443:16022102,21194910:2437919 -k4607,443:18460021,21194910:2437919 -) -(4607,444:6630773,22073782:11829248,530548,102891 -h4607,443:6630773,22073782:0,0,0 -r4607,509:6630773,22073782:0,633439,102891 -g4607,443:7941493,22073782 -g4607,443:7941493,22073782 -g4607,443:12463816,22073782 -k4607,444:16059607,22073782:2400414 -k4607,444:18460021,22073782:2400414 -) -(4607,445:6630773,22952653:11829248,530548,102891 -h4607,444:6630773,22952653:0,0,0 -r4607,509:6630773,22952653:0,633439,102891 -g4607,444:7941493,22952653 -g4607,444:7941493,22952653 -g4607,444:12463816,22952653 -g4607,444:13633633,22952653 -k4607,445:16644516,22952653:1815506 -k4607,445:18460021,22952653:1815505 -) -(4607,446:6630773,23831524:11829248,530548,102891 -h4607,445:6630773,23831524:0,0,0 -r4607,509:6630773,23831524:0,633439,102891 -g4607,445:7941493,23831524 -g4607,445:7941493,23831524 -g4607,445:13293701,23831524 -k4607,446:16474550,23831524:1985472 -k4607,446:18460021,23831524:1985471 -) -(4607,447:6630773,24710396:11829248,530548,102891 -h4607,446:6630773,24710396:0,0,0 -r4607,509:6630773,24710396:0,633439,102891 -g4607,446:7941493,24710396 -g4607,446:7941493,24710396 -g4607,446:12048874,24710396 -g4607,446:13617150,24710396 -k4607,447:16626444,24710396:1833578 -k4607,447:18460021,24710396:1833577 -) -(4607,448:6630773,25589267:11829248,530548,132808 -h4607,447:6630773,25589267:0,0,0 -r4607,509:6630773,25589267:0,663356,132808 -g4607,447:7941493,25589267 -g4607,447:7941493,25589267 -g4607,447:11218989,25589267 -k4607,448:15437194,25589267:3022828 -k4607,448:18460021,25589267:3022827 -) -(4607,449:6630773,26468138:11829248,530548,102891 -h4607,448:6630773,26468138:0,0,0 -r4607,509:6630773,26468138:0,633439,102891 -g4607,448:7941493,26468138 -g4607,448:7941493,26468138 -g4607,448:9974162,26468138 -k4607,449:14814780,26468138:3645241 -k4607,449:18460021,26468138:3645241 -) -(4607,450:6630773,27347010:11829248,538806,102891 -h4607,449:6630773,27347010:0,0,0 -r4607,509:6630773,27347010:0,641697,102891 -g4607,449:7941493,27347010 -g4607,449:7941493,27347010 -g4607,449:11218989,27347010 -g4607,449:12787265,27347010 -k4607,450:16221332,27347010:2238690 -k4607,450:18460021,27347010:2238689 -) -(4607,451:6630773,28225881:11829248,530548,102891 -h4607,450:6630773,28225881:0,0,0 -r4607,509:6630773,28225881:0,633439,102891 -g4607,450:7941493,28225881 -g4607,450:7941493,28225881 -g4607,450:11633931,28225881 -k4607,451:15644665,28225881:2815357 -k4607,451:18460021,28225881:2815356 -) -(4607,452:6630773,29104753:11829248,530548,132808 -h4607,451:6630773,29104753:0,0,0 -r4607,509:6630773,29104753:0,663356,132808 -g4607,451:7941493,29104753 -g4607,451:7941493,29104753 -g4607,451:11633931,29104753 -k4607,452:15644665,29104753:2815357 -k4607,452:18460021,29104753:2815356 -) -(4607,453:6630773,29983624:11829248,530548,102891 -h4607,452:6630773,29983624:0,0,0 -r4607,509:6630773,29983624:0,633439,102891 -g4607,452:7941493,29983624 -g4607,452:7941493,29983624 -g4607,452:10804046,29983624 -k4607,453:15991250,29983624:2468771 -k4607,453:18460021,29983624:2468771 -) -(4607,454:6630773,30862495:11829248,530548,102891 -h4607,453:6630773,30862495:0,0,0 -r4607,509:6630773,30862495:0,633439,102891 -g4607,453:7941493,30862495 -g4607,453:7941493,30862495 -g4607,453:12048874,30862495 -k4607,454:15852136,30862495:2607885 -k4607,454:18460021,30862495:2607885 -) -(4607,455:6630773,31741367:11829248,530548,102891 -h4607,454:6630773,31741367:0,0,0 -r4607,509:6630773,31741367:0,633439,102891 -g4607,454:7941493,31741367 -g4607,454:7941493,31741367 -g4607,454:17028182,31741367 -k4607,455:18331960,31741367:128062 -k4607,455:18460021,31741367:128061 -) -(4607,456:6630773,32620238:11829248,530548,102891 -h4607,455:6630773,32620238:0,0,0 -r4607,509:6630773,32620238:0,633439,102891 -g4607,455:7941493,32620238 -g4607,455:7941493,32620238 -g4607,455:17028182,32620238 -k4607,456:18331960,32620238:128062 -k4607,456:18460021,32620238:128061 -) -(4607,457:6630773,33499109:11829248,530548,102891 -h4607,456:6630773,33499109:0,0,0 -r4607,509:6630773,33499109:0,633439,102891 -g4607,456:7941493,33499109 -g4607,456:7941493,33499109 -k4607,456:18460021,33499109:57807 -) -(4607,457:9252213,34364189:9207808,485622,102891 -g4607,456:10820489,34364189 -g4607,456:12388765,34364189 -k4607,457:16012251,34364189:2447770 -k4607,457:18460021,34364189:2447770 -) -(4607,458:6630773,35243061:11829248,530548,102891 -h4607,457:6630773,35243061:0,0,0 -r4607,509:6630773,35243061:0,633439,102891 -g4607,457:7941493,35243061 -g4607,457:7941493,35243061 -g4607,457:16198298,35243061 -k4607,458:17917018,35243061:543004 -k4607,458:18460021,35243061:543003 -) -(4607,459:6630773,36121932:11829248,530548,102891 -h4607,458:6630773,36121932:0,0,0 -r4607,509:6630773,36121932:0,633439,102891 -g4607,458:7941493,36121932 -g4607,458:7941493,36121932 -k4607,458:18460021,36121932:887691 -) -(4607,459:9252213,36987012:9207808,485622,11795 -k4607,459:14443975,36987012:4016046 -k4607,459:18460021,36987012:4016046 -) -(4607,460:6630773,37865884:11829248,530548,102891 -h4607,459:6630773,37865884:0,0,0 -r4607,509:6630773,37865884:0,633439,102891 -g4607,459:7941493,37865884 -g4607,459:7941493,37865884 -k4607,459:18460021,37865884:887691 -) -(4607,460:9252213,38730964:9207808,485622,102891 -g4607,459:10820489,38730964 -g4607,459:12388765,38730964 -k4607,460:16012251,38730964:2447770 -k4607,460:18460021,38730964:2447770 -) -(4607,461:6630773,39609835:11829248,530548,102891 -h4607,460:6630773,39609835:0,0,0 -r4607,509:6630773,39609835:0,633439,102891 -g4607,460:7941493,39609835 -g4607,460:7941493,39609835 -k4607,460:18460021,39609835:472749 -) -(4607,461:9252213,40474915:9207808,485622,11795 -k4607,461:14443975,40474915:4016046 -k4607,461:18460021,40474915:4016046 -) -(4607,462:6630773,41353786:11829248,530548,141066 -h4607,461:6630773,41353786:0,0,0 -r4607,509:6630773,41353786:0,671614,141066 -g4607,461:7941493,41353786 -g4607,461:7941493,41353786 -k4607,461:18460021,41353786:887691 -) -(4607,462:9252213,42218866:9207808,485622,11795 -k4607,462:14443975,42218866:4016046 -k4607,462:18460021,42218866:4016046 -) -(4607,463:6630773,43097738:11829248,530548,141066 -h4607,462:6630773,43097738:0,0,0 -r4607,509:6630773,43097738:0,671614,141066 -g4607,462:7941493,43097738 -g4607,462:7941493,43097738 -k4607,462:18460021,43097738:472749 -) -(4607,463:9252213,43962818:9207808,485622,11795 -k4607,463:14443975,43962818:4016046 -k4607,463:18460021,43962818:4016046 -) -(4607,464:6630773,44841689:11829248,530548,141066 -h4607,463:6630773,44841689:0,0,0 -r4607,509:6630773,44841689:0,671614,141066 -g4607,463:7941493,44841689 -g4607,463:7941493,44841689 -k4607,463:18460021,44841689:472749 -) -(4607,464:9252213,45706769:9207808,485622,11795 -k4607,464:14443975,45706769:4016046 -k4607,464:18460021,45706769:4016046 -) -] -k4607,509:19606901,45706769:1146880 -r4607,509:19606901,45706769:0,40234515,126483 -k4607,509:20753781,45706769:1146880 -[4607,509:20753781,45706769:11829248,40108032,102891 -(4607,465:20753781,6254097:11829248,530548,141066 -h4607,464:20753781,6254097:0,0,0 -r4607,509:20753781,6254097:0,671614,141066 -g4607,464:22064501,6254097 -g4607,464:22064501,6254097 -g4607,464:30321306,6254097 -k4607,465:32040026,6254097:543004 -k4607,465:32583029,6254097:543003 -) -(4607,466:20753781,7132279:11829248,530548,102891 -h4607,465:20753781,7132279:0,0,0 -r4607,509:20753781,7132279:0,633439,102891 -g4607,465:22064501,7132279 -g4607,465:22064501,7132279 -g4607,465:29906363,7132279 -k4607,466:31832554,7132279:750475 -k4607,466:32583029,7132279:750475 -) -(4607,467:20753781,8010461:11829248,530548,132808 -h4607,466:20753781,8010461:0,0,0 -r4607,509:20753781,8010461:0,663356,132808 -g4607,466:22064501,8010461 -g4607,466:22064501,8010461 -k4607,466:32583029,8010461:887691 -) -(4607,467:23375221,8875541:9207808,485622,102891 -g4607,466:24943497,8875541 -k4607,467:29360952,8875541:3222078 -k4607,467:32583029,8875541:3222077 -) -(4607,468:20753781,9753722:11829248,530548,102891 -h4607,467:20753781,9753722:0,0,0 -r4607,509:20753781,9753722:0,633439,102891 -g4607,467:22064501,9753722 -g4607,467:22064501,9753722 -k4607,467:32583029,9753722:1302633 -) -(4607,468:23375221,10618802:9207808,485622,102891 -g4607,467:24943497,10618802 -k4607,468:29351121,10618802:3231908 -k4607,468:32583029,10618802:3231908 -) -(4607,469:20753781,11496984:11829248,530548,102891 -h4607,468:20753781,11496984:0,0,0 -r4607,509:20753781,11496984:0,633439,102891 -g4607,468:22064501,11496984 -g4607,468:22064501,11496984 -k4607,468:32583029,11496984:472749 -) -(4607,469:23375221,12362064:9207808,485622,11795 -k4607,469:28566983,12362064:4016046 -k4607,469:32583029,12362064:4016046 -) -(4607,470:20753781,13240246:11829248,530548,102891 -h4607,469:20753781,13240246:0,0,0 -r4607,509:20753781,13240246:0,633439,102891 -g4607,469:22064501,13240246 -g4607,469:22064501,13240246 -k4607,469:32583029,13240246:472749 -) -(4607,470:23375221,14105326:9207808,485622,11795 -k4607,470:28566983,14105326:4016046 -k4607,470:32583029,14105326:4016046 -) -(4607,471:20753781,14983508:11829248,538806,132808 -h4607,470:20753781,14983508:0,0,0 -r4607,509:20753781,14983508:0,671614,132808 -g4607,470:22064501,14983508 -g4607,470:22064501,14983508 -g4607,470:31151190,14983508 -k4607,471:32464798,14983508:118231 -k4607,471:32583029,14983508:118231 -) -(4607,472:20753781,15861690:11829248,538806,102891 -h4607,471:20753781,15861690:0,0,0 -r4607,509:20753781,15861690:0,641697,102891 -g4607,471:22064501,15861690 -g4607,471:22064501,15861690 -g4607,471:30736248,15861690 -k4607,472:32247497,15861690:335533 -k4607,472:32583029,15861690:335532 -) -(4607,473:20753781,16739871:11829248,530548,132808 -h4607,472:20753781,16739871:0,0,0 -r4607,509:20753781,16739871:0,663356,132808 -g4607,472:22064501,16739871 -g4607,472:22064501,16739871 -k4607,472:32583029,16739871:1302633 -) -(4607,473:23375221,17604951:9207808,485622,11795 -k4607,473:28576814,17604951:4006216 -k4607,473:32583029,17604951:4006215 -) -(4607,474:20753781,18483133:11829248,530548,102891 -h4607,473:20753781,18483133:0,0,0 -r4607,509:20753781,18483133:0,633439,102891 -g4607,473:22064501,18483133 -g4607,473:22064501,18483133 -g4607,473:27416709,18483133 -k4607,474:30587727,18483133:1995302 -k4607,474:32583029,18483133:1995302 -) -(4607,475:20753781,19361315:11829248,530548,102891 -h4607,474:20753781,19361315:0,0,0 -r4607,509:20753781,19361315:0,633439,102891 -g4607,474:22064501,19361315 -g4607,474:22064501,19361315 -g4607,474:29491421,19361315 -k4607,475:31625083,19361315:957946 -k4607,475:32583029,19361315:957946 -) -(4607,476:20753781,20239497:11829248,530548,132808 -h4607,475:20753781,20239497:0,0,0 -r4607,509:20753781,20239497:0,663356,132808 -g4607,475:22064501,20239497 -g4607,475:22064501,20239497 -g4607,475:31151190,20239497 -k4607,476:32464798,20239497:118231 -k4607,476:32583029,20239497:118231 -) -(4607,477:20753781,21117679:11829248,530548,102891 -h4607,476:20753781,21117679:0,0,0 -r4607,509:20753781,21117679:0,633439,102891 -g4607,476:22064501,21117679 -g4607,476:22064501,21117679 -g4607,476:30321306,21117679 -k4607,477:32040026,21117679:543004 -k4607,477:32583029,21117679:543003 -) -(4607,478:20753781,21995860:11829248,530548,102891 -h4607,477:20753781,21995860:0,0,0 -r4607,509:20753781,21995860:0,633439,102891 -g4607,477:22064501,21995860 -g4607,477:22064501,21995860 -g4607,477:30736248,21995860 -k4607,478:32257327,21995860:325702 -k4607,478:32583029,21995860:325702 -) -(4607,479:20753781,22874042:11829248,530548,102891 -h4607,478:20753781,22874042:0,0,0 -r4607,509:20753781,22874042:0,633439,102891 -g4607,478:22064501,22874042 -g4607,478:22064501,22874042 -g4607,478:29906363,22874042 -k4607,479:31842385,22874042:740645 -k4607,479:32583029,22874042:740644 -) -(4607,480:20753781,23752224:11829248,530548,102891 -h4607,479:20753781,23752224:0,0,0 -r4607,509:20753781,23752224:0,633439,102891 -g4607,479:22064501,23752224 -g4607,479:22064501,23752224 -g4607,479:29906363,23752224 -k4607,480:31842385,23752224:740645 -k4607,480:32583029,23752224:740644 -) -(4607,481:20753781,24630406:11829248,530548,141066 -h4607,480:20753781,24630406:0,0,0 -r4607,509:20753781,24630406:0,671614,141066 -g4607,480:22064501,24630406 -g4607,480:22064501,24630406 -g4607,480:28661536,24630406 -k4607,481:31219971,24630406:1363058 -k4607,481:32583029,24630406:1363058 -) -(4607,482:20753781,25508588:11829248,530548,102891 -h4607,481:20753781,25508588:0,0,0 -r4607,509:20753781,25508588:0,633439,102891 -g4607,481:22064501,25508588 -g4607,481:22064501,25508588 -g4607,481:29491421,25508588 -k4607,482:31625083,25508588:957946 -k4607,482:32583029,25508588:957946 -) -(4607,483:20753781,26386769:11829248,530548,132808 -h4607,482:20753781,26386769:0,0,0 -r4607,509:20753781,26386769:0,663356,132808 -g4607,482:22064501,26386769 -g4607,482:22064501,26386769 -g4607,482:30736248,26386769 -k4607,483:32257327,26386769:325702 -k4607,483:32583029,26386769:325702 -) -(4607,484:20753781,27264951:11829248,530548,132808 -h4607,483:20753781,27264951:0,0,0 -r4607,509:20753781,27264951:0,663356,132808 -g4607,483:22064501,27264951 -g4607,483:22064501,27264951 -g4607,483:29906363,27264951 -k4607,484:31842385,27264951:740645 -k4607,484:32583029,27264951:740644 -) -(4607,485:20753781,28143133:11829248,530548,141066 -h4607,484:20753781,28143133:0,0,0 -r4607,509:20753781,28143133:0,671614,141066 -g4607,484:22064501,28143133 -g4607,484:22064501,28143133 -g4607,484:27831652,28143133 -k4607,485:30805029,28143133:1778000 -k4607,485:32583029,28143133:1778000 -) -(4607,486:20753781,29021315:11829248,530548,141066 -h4607,485:20753781,29021315:0,0,0 -r4607,509:20753781,29021315:0,671614,141066 -g4607,485:22064501,29021315 -g4607,485:22064501,29021315 -g4607,485:28661536,29021315 -g4607,485:30229812,29021315 -k4607,486:32004109,29021315:578920 -k4607,486:32583029,29021315:578920 -) -(4607,487:20753781,29899497:11829248,530548,132808 -h4607,486:20753781,29899497:0,0,0 -r4607,509:20753781,29899497:0,663356,132808 -g4607,486:22064501,29899497 -g4607,486:22064501,29899497 -g4607,486:29491421,29899497 -k4607,487:31625083,29899497:957946 -k4607,487:32583029,29899497:957946 -) -(4607,488:20753781,30777678:11829248,530548,102891 -h4607,487:20753781,30777678:0,0,0 -r4607,509:20753781,30777678:0,633439,102891 -g4607,487:22064501,30777678 -g4607,487:22064501,30777678 -g4607,487:24097170,30777678 -g4607,487:25665446,30777678 -g4607,487:27233722,30777678 -k4607,488:30506064,30777678:2076965 -k4607,488:32583029,30777678:2076965 -) -(4607,489:20753781,31655860:11829248,530548,102891 -h4607,488:20753781,31655860:0,0,0 -r4607,509:20753781,31655860:0,633439,102891 -g4607,488:22064501,31655860 -g4607,488:22064501,31655860 -g4607,488:25756939,31655860 -k4607,489:29757842,31655860:2825187 -k4607,489:32583029,31655860:2825187 -) -(4607,490:20753781,32534042:11829248,530548,102891 -h4607,489:20753781,32534042:0,0,0 -r4607,509:20753781,32534042:0,633439,102891 -g4607,489:22064501,32534042 -g4607,489:22064501,32534042 -g4607,489:25756939,32534042 -k4607,490:29767673,32534042:2815357 -k4607,490:32583029,32534042:2815356 -) -(4607,491:20753781,33412224:11829248,530548,102891 -h4607,490:20753781,33412224:0,0,0 -r4607,509:20753781,33412224:0,633439,102891 -g4607,490:22064501,33412224 -g4607,490:22064501,33412224 -g4607,490:26171882,33412224 -k4607,491:29975144,33412224:2607885 -k4607,491:32583029,33412224:2607885 -) -(4607,492:20753781,34290406:11829248,530548,102891 -h4607,491:20753781,34290406:0,0,0 -r4607,509:20753781,34290406:0,633439,102891 -g4607,491:22064501,34290406 -g4607,491:22064501,34290406 -g4607,491:25756939,34290406 -k4607,492:29757842,34290406:2825187 -k4607,492:32583029,34290406:2825187 -) -(4607,493:20753781,35168587:11829248,530548,102891 -h4607,492:20753781,35168587:0,0,0 -r4607,509:20753781,35168587:0,633439,102891 -g4607,492:22064501,35168587 -g4607,492:22064501,35168587 -g4607,492:24512112,35168587 -g4607,492:26080388,35168587 -k4607,493:29929397,35168587:2653632 -k4607,493:32583029,35168587:2653632 -) -(4607,494:20753781,36046769:11829248,530548,141066 -h4607,493:20753781,36046769:0,0,0 -r4607,509:20753781,36046769:0,671614,141066 -g4607,493:22064501,36046769 -g4607,493:22064501,36046769 -g4607,493:27001767,36046769 -k4607,494:30390087,36046769:2192943 -k4607,494:32583029,36046769:2192942 -) -(4607,495:20753781,36924951:11829248,530548,132808 -h4607,494:20753781,36924951:0,0,0 -r4607,509:20753781,36924951:0,663356,132808 -g4607,494:22064501,36924951 -g4607,494:22064501,36924951 -g4607,494:24512112,36924951 -g4607,494:25681929,36924951 -k4607,495:29730168,36924951:2852862 -k4607,495:32583029,36924951:2852861 -) -(4607,496:20753781,37803133:11829248,530548,141066 -h4607,495:20753781,37803133:0,0,0 -r4607,509:20753781,37803133:0,671614,141066 -g4607,495:22064501,37803133 -g4607,495:22064501,37803133 -g4607,495:27001767,37803133 -k4607,496:30390087,37803133:2192943 -k4607,496:32583029,37803133:2192942 -) -(4607,497:20753781,38681315:11829248,530548,102891 -h4607,496:20753781,38681315:0,0,0 -r4607,509:20753781,38681315:0,633439,102891 -g4607,496:22064501,38681315 -g4607,496:22064501,38681315 -g4607,496:26586824,38681315 -k4607,497:30182615,38681315:2400414 -k4607,497:32583029,38681315:2400414 -) -(4607,498:20753781,39559496:11829248,530548,132808 -h4607,497:20753781,39559496:0,0,0 -r4607,509:20753781,39559496:0,663356,132808 -g4607,497:22064501,39559496 -g4607,497:22064501,39559496 -g4607,497:29491421,39559496 -k4607,498:31634914,39559496:948116 -k4607,498:32583029,39559496:948115 -) -(4607,499:20753781,40437678:11829248,530548,102891 -h4607,498:20753781,40437678:0,0,0 -r4607,509:20753781,40437678:0,633439,102891 -g4607,498:22064501,40437678 -g4607,498:22064501,40437678 -g4607,498:25341997,40437678 -k4607,499:29560202,40437678:3022828 -k4607,499:32583029,40437678:3022827 -) -(4607,500:20753781,41315860:11829248,530548,102891 -h4607,499:20753781,41315860:0,0,0 -r4607,509:20753781,41315860:0,633439,102891 -g4607,499:22064501,41315860 -g4607,499:22064501,41315860 -g4607,499:25341997,41315860 -k4607,500:29560202,41315860:3022828 -k4607,500:32583029,41315860:3022827 -) -(4607,501:20753781,42194042:11829248,530548,102891 -h4607,500:20753781,42194042:0,0,0 -r4607,509:20753781,42194042:0,633439,102891 -g4607,500:22064501,42194042 -g4607,500:22064501,42194042 -g4607,500:28246594,42194042 -k4607,501:31012500,42194042:1570529 -k4607,501:32583029,42194042:1570529 -) -(4607,502:20753781,43072224:11829248,538806,102891 -h4607,501:20753781,43072224:0,0,0 -r4607,509:20753781,43072224:0,641697,102891 -g4607,501:22064501,43072224 -g4607,501:22064501,43072224 -g4607,501:29906363,43072224 -k4607,502:31842385,43072224:740645 -k4607,502:32583029,43072224:740644 -) -(4607,503:20753781,43950405:11829248,538806,141066 -h4607,502:20753781,43950405:0,0,0 -r4607,509:20753781,43950405:0,679872,141066 -g4607,502:22064501,43950405 -g4607,502:22064501,43950405 -g4607,502:25756939,43950405 -k4607,503:29568443,43950405:3014586 -k4607,503:32583029,43950405:3014586 -) -(4607,504:20753781,44828587:11829248,530548,102891 -h4607,503:20753781,44828587:0,0,0 -r4607,509:20753781,44828587:0,633439,102891 -g4607,503:22064501,44828587 -g4607,503:22064501,44828587 -g4607,503:24512112,44828587 -k4607,504:28946030,44828587:3637000 -k4607,504:32583029,44828587:3636999 -) -(4607,505:20753781,45706769:11829248,530548,102891 -h4607,504:20753781,45706769:0,0,0 -r4607,509:20753781,45706769:0,633439,102891 -g4607,504:22064501,45706769 -g4607,504:22064501,45706769 -g4607,504:25341997,45706769 -k4607,505:29550371,45706769:3032658 -k4607,505:32583029,45706769:3032658 -) -] -(4607,509:32583029,45706769:0,355205,126483 -h4607,509:32583029,45706769:420741,355205,126483 -k4607,509:32583029,45706769:-420741 -) -) -] -(4607,509:32583029,45706769:0,0,0 -g4607,509:32583029,45706769 -) -) -] -(4607,509:6630773,47279633:25952256,0,0 -h4607,509:6630773,47279633:25952256,0,0 -) -] -(4607,509:4262630,4025873:0,0,0 -[4607,509:-473656,4025873:0,0,0 -(4607,509:-473656,-710413:0,0,0 -(4607,509:-473656,-710413:0,0,0 -g4607,509:-473656,-710413 -) -g4607,509:-473656,-710413 +[4611,508:3078558,4812305:0,0,0 +(4611,508:3078558,49800853:0,16384,2228224 +g4611,508:29030814,49800853 +g4611,508:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,508:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,508:37855564,49800853:1179648,16384,0 +) +) +k4611,508:3078556,49800853:-34777008 +) +] +g4611,508:6630773,4812305 +k4611,508:23083588,4812305:15257438 +g4611,508:24981510,4812305 +g4611,508:25796777,4812305 +g4611,508:26410194,4812305 +g4611,508:28753761,4812305 +g4611,508:29709275,4812305 +) +) +] +[4611,508:6630773,45706769:25952256,40108032,0 +(4611,508:6630773,45706769:25952256,40108032,0 +(4611,508:6630773,45706769:0,0,0 +g4611,508:6630773,45706769 +) +[4611,508:6630773,45706769:25952256,40108032,0 +(4611,508:6630773,45706769:25952256,40108032,126483 +[4611,508:6630773,45706769:11829248,40108032,11795 +(4611,425:6630773,6254097:11829248,530548,102891 +h4611,424:6630773,6254097:0,0,0 +r4611,508:6630773,6254097:0,633439,102891 +g4611,424:7941493,6254097 +g4611,424:7941493,6254097 +g4611,424:11633931,6254097 +g4611,424:12803748,6254097 +g4611,424:13973565,6254097 +k4611,425:16814482,6254097:1645540 +k4611,425:18460021,6254097:1645539 +) +(4611,426:6630773,7132968:11829248,530548,102891 +h4611,425:6630773,7132968:0,0,0 +r4611,508:6630773,7132968:0,633439,102891 +g4611,425:7941493,7132968 +g4611,425:7941493,7132968 +g4611,425:11633931,7132968 +k4611,426:15634834,7132968:2825187 +k4611,426:18460021,7132968:2825187 +) +(4611,427:6630773,8011840:11829248,530548,102891 +h4611,426:6630773,8011840:0,0,0 +r4611,508:6630773,8011840:0,633439,102891 +g4611,426:7941493,8011840 +g4611,426:7941493,8011840 +g4611,426:12048874,8011840 +g4611,426:13218691,8011840 +k4611,427:16427214,8011840:2032807 +k4611,427:18460021,8011840:2032807 +) +(4611,428:6630773,8890711:11829248,530548,132808 +h4611,427:6630773,8890711:0,0,0 +r4611,508:6630773,8890711:0,663356,132808 +g4611,427:7941493,8890711 +g4611,427:7941493,8890711 +g4611,427:10389104,8890711 +g4611,427:11558921,8890711 +k4611,428:15398100,8890711:3061922 +k4611,428:18460021,8890711:3061921 +) +(4611,429:6630773,9769582:11829248,530548,132808 +h4611,428:6630773,9769582:0,0,0 +r4611,508:6630773,9769582:0,663356,132808 +g4611,428:7941493,9769582 +g4611,428:7941493,9769582 +g4611,428:12048874,9769582 +g4611,428:13617150,9769582 +g4611,428:15185426,9769582 +k4611,429:17410582,9769582:1049440 +k4611,429:18460021,9769582:1049439 +) +(4611,430:6630773,10648454:11829248,530548,102891 +h4611,429:6630773,10648454:0,0,0 +r4611,508:6630773,10648454:0,633439,102891 +g4611,429:7941493,10648454 +g4611,429:7941493,10648454 +g4611,429:11218989,10648454 +k4611,430:15427363,10648454:3032658 +k4611,430:18460021,10648454:3032658 +) +(4611,431:6630773,11527325:11829248,530548,102891 +h4611,430:6630773,11527325:0,0,0 +r4611,508:6630773,11527325:0,633439,102891 +g4611,430:7941493,11527325 +g4611,430:7941493,11527325 +g4611,430:12878759,11527325 +g4611,430:14447035,11527325 +k4611,431:17041386,11527325:1418635 +k4611,431:18460021,11527325:1418635 +) +(4611,432:6630773,12406197:11829248,530548,102891 +h4611,431:6630773,12406197:0,0,0 +r4611,508:6630773,12406197:0,633439,102891 +g4611,431:7941493,12406197 +g4611,431:7941493,12406197 +g4611,431:10389104,12406197 +k4611,432:14823022,12406197:3637000 +k4611,432:18460021,12406197:3636999 +) +(4611,433:6630773,13285068:11829248,538806,102891 +h4611,432:6630773,13285068:0,0,0 +r4611,508:6630773,13285068:0,641697,102891 +g4611,432:7941493,13285068 +g4611,432:7941493,13285068 +g4611,432:9974162,13285068 +k4611,433:14814780,13285068:3645241 +k4611,433:18460021,13285068:3645241 +) +(4611,434:6630773,14163939:11829248,530548,141066 +h4611,433:6630773,14163939:0,0,0 +r4611,508:6630773,14163939:0,671614,141066 +g4611,433:7941493,14163939 +g4611,433:7941493,14163939 +g4611,433:10389104,14163939 +k4611,434:15022251,14163939:3437770 +k4611,434:18460021,14163939:3437770 +) +(4611,435:6630773,15042811:11829248,530548,141066 +h4611,434:6630773,15042811:0,0,0 +r4611,508:6630773,15042811:0,671614,141066 +g4611,434:7941493,15042811 +g4611,434:7941493,15042811 +g4611,434:13293701,15042811 +k4611,435:16464719,15042811:1995302 +k4611,435:18460021,15042811:1995302 +) +(4611,436:6630773,15921682:11829248,530548,102891 +h4611,435:6630773,15921682:0,0,0 +r4611,508:6630773,15921682:0,633439,102891 +g4611,435:7941493,15921682 +g4611,435:7941493,15921682 +g4611,435:10389104,15921682 +g4611,435:11558921,15921682 +k4611,436:15607160,15921682:2852862 +k4611,436:18460021,15921682:2852861 +) +(4611,437:6630773,16800553:11829248,530548,102891 +h4611,436:6630773,16800553:0,0,0 +r4611,508:6630773,16800553:0,633439,102891 +g4611,436:7941493,16800553 +g4611,436:7941493,16800553 +g4611,436:10389104,16800553 +g4611,436:11957380,16800553 +k4611,437:15796559,16800553:2663463 +k4611,437:18460021,16800553:2663462 +) +(4611,438:6630773,17679425:11829248,530548,102891 +h4611,437:6630773,17679425:0,0,0 +r4611,508:6630773,17679425:0,633439,102891 +g4611,437:7941493,17679425 +g4611,437:7941493,17679425 +g4611,437:11633931,17679425 +k4611,438:15644665,17679425:2815357 +k4611,438:18460021,17679425:2815356 +) +(4611,439:6630773,18558296:11829248,530548,102891 +h4611,438:6630773,18558296:0,0,0 +r4611,508:6630773,18558296:0,633439,102891 +g4611,438:7941493,18558296 +g4611,438:7941493,18558296 +g4611,438:9974162,18558296 +k4611,439:14615551,18558296:3844471 +k4611,439:18460021,18558296:3844470 +) +(4611,440:6630773,19437168:11829248,530548,102891 +h4611,439:6630773,19437168:0,0,0 +r4611,508:6630773,19437168:0,633439,102891 +g4611,439:7941493,19437168 +g4611,439:7941493,19437168 +g4611,439:12878759,19437168 +k4611,440:16267079,19437168:2192943 +k4611,440:18460021,19437168:2192942 +) +(4611,441:6630773,20316039:11829248,530548,102891 +h4611,440:6630773,20316039:0,0,0 +r4611,508:6630773,20316039:0,633439,102891 +g4611,440:7941493,20316039 +g4611,440:7941493,20316039 +g4611,440:11218989,20316039 +g4611,440:12787265,20316039 +g4611,440:14355541,20316039 +k4611,441:17005470,20316039:1454552 +k4611,441:18460021,20316039:1454551 +) +(4611,442:6630773,21194910:11829248,530548,102891 +h4611,441:6630773,21194910:0,0,0 +r4611,508:6630773,21194910:0,633439,102891 +g4611,441:7941493,21194910 +g4611,441:7941493,21194910 +g4611,441:11218989,21194910 +g4611,441:12388806,21194910 +k4611,442:16022102,21194910:2437919 +k4611,442:18460021,21194910:2437919 +) +(4611,443:6630773,22073782:11829248,530548,102891 +h4611,442:6630773,22073782:0,0,0 +r4611,508:6630773,22073782:0,633439,102891 +g4611,442:7941493,22073782 +g4611,442:7941493,22073782 +g4611,442:12463816,22073782 +k4611,443:16059607,22073782:2400414 +k4611,443:18460021,22073782:2400414 +) +(4611,444:6630773,22952653:11829248,530548,102891 +h4611,443:6630773,22952653:0,0,0 +r4611,508:6630773,22952653:0,633439,102891 +g4611,443:7941493,22952653 +g4611,443:7941493,22952653 +g4611,443:12463816,22952653 +g4611,443:13633633,22952653 +k4611,444:16644516,22952653:1815506 +k4611,444:18460021,22952653:1815505 +) +(4611,445:6630773,23831524:11829248,530548,102891 +h4611,444:6630773,23831524:0,0,0 +r4611,508:6630773,23831524:0,633439,102891 +g4611,444:7941493,23831524 +g4611,444:7941493,23831524 +g4611,444:13293701,23831524 +k4611,445:16474550,23831524:1985472 +k4611,445:18460021,23831524:1985471 +) +(4611,446:6630773,24710396:11829248,530548,102891 +h4611,445:6630773,24710396:0,0,0 +r4611,508:6630773,24710396:0,633439,102891 +g4611,445:7941493,24710396 +g4611,445:7941493,24710396 +g4611,445:12048874,24710396 +g4611,445:13617150,24710396 +k4611,446:16626444,24710396:1833578 +k4611,446:18460021,24710396:1833577 +) +(4611,447:6630773,25589267:11829248,530548,132808 +h4611,446:6630773,25589267:0,0,0 +r4611,508:6630773,25589267:0,663356,132808 +g4611,446:7941493,25589267 +g4611,446:7941493,25589267 +g4611,446:11218989,25589267 +k4611,447:15437194,25589267:3022828 +k4611,447:18460021,25589267:3022827 +) +(4611,448:6630773,26468138:11829248,530548,102891 +h4611,447:6630773,26468138:0,0,0 +r4611,508:6630773,26468138:0,633439,102891 +g4611,447:7941493,26468138 +g4611,447:7941493,26468138 +g4611,447:9974162,26468138 +k4611,448:14814780,26468138:3645241 +k4611,448:18460021,26468138:3645241 +) +(4611,449:6630773,27347010:11829248,538806,102891 +h4611,448:6630773,27347010:0,0,0 +r4611,508:6630773,27347010:0,641697,102891 +g4611,448:7941493,27347010 +g4611,448:7941493,27347010 +g4611,448:11218989,27347010 +g4611,448:12787265,27347010 +k4611,449:16221332,27347010:2238690 +k4611,449:18460021,27347010:2238689 +) +(4611,450:6630773,28225881:11829248,530548,102891 +h4611,449:6630773,28225881:0,0,0 +r4611,508:6630773,28225881:0,633439,102891 +g4611,449:7941493,28225881 +g4611,449:7941493,28225881 +g4611,449:11633931,28225881 +k4611,450:15644665,28225881:2815357 +k4611,450:18460021,28225881:2815356 +) +(4611,451:6630773,29104753:11829248,530548,132808 +h4611,450:6630773,29104753:0,0,0 +r4611,508:6630773,29104753:0,663356,132808 +g4611,450:7941493,29104753 +g4611,450:7941493,29104753 +g4611,450:11633931,29104753 +k4611,451:15644665,29104753:2815357 +k4611,451:18460021,29104753:2815356 +) +(4611,452:6630773,29983624:11829248,530548,102891 +h4611,451:6630773,29983624:0,0,0 +r4611,508:6630773,29983624:0,633439,102891 +g4611,451:7941493,29983624 +g4611,451:7941493,29983624 +g4611,451:10804046,29983624 +k4611,452:15991250,29983624:2468771 +k4611,452:18460021,29983624:2468771 +) +(4611,453:6630773,30862495:11829248,530548,102891 +h4611,452:6630773,30862495:0,0,0 +r4611,508:6630773,30862495:0,633439,102891 +g4611,452:7941493,30862495 +g4611,452:7941493,30862495 +g4611,452:12048874,30862495 +k4611,453:15852136,30862495:2607885 +k4611,453:18460021,30862495:2607885 +) +(4611,454:6630773,31741367:11829248,530548,102891 +h4611,453:6630773,31741367:0,0,0 +r4611,508:6630773,31741367:0,633439,102891 +g4611,453:7941493,31741367 +g4611,453:7941493,31741367 +g4611,453:17028182,31741367 +k4611,454:18331960,31741367:128062 +k4611,454:18460021,31741367:128061 +) +(4611,455:6630773,32620238:11829248,530548,102891 +h4611,454:6630773,32620238:0,0,0 +r4611,508:6630773,32620238:0,633439,102891 +g4611,454:7941493,32620238 +g4611,454:7941493,32620238 +g4611,454:17028182,32620238 +k4611,455:18331960,32620238:128062 +k4611,455:18460021,32620238:128061 +) +(4611,456:6630773,33499109:11829248,530548,102891 +h4611,455:6630773,33499109:0,0,0 +r4611,508:6630773,33499109:0,633439,102891 +g4611,455:7941493,33499109 +g4611,455:7941493,33499109 +k4611,455:18460021,33499109:57807 +) +(4611,456:9252213,34364189:9207808,485622,102891 +g4611,455:10820489,34364189 +g4611,455:12388765,34364189 +k4611,456:16012251,34364189:2447770 +k4611,456:18460021,34364189:2447770 +) +(4611,457:6630773,35243061:11829248,530548,102891 +h4611,456:6630773,35243061:0,0,0 +r4611,508:6630773,35243061:0,633439,102891 +g4611,456:7941493,35243061 +g4611,456:7941493,35243061 +g4611,456:16198298,35243061 +k4611,457:17917018,35243061:543004 +k4611,457:18460021,35243061:543003 +) +(4611,458:6630773,36121932:11829248,530548,102891 +h4611,457:6630773,36121932:0,0,0 +r4611,508:6630773,36121932:0,633439,102891 +g4611,457:7941493,36121932 +g4611,457:7941493,36121932 +k4611,457:18460021,36121932:887691 +) +(4611,458:9252213,36987012:9207808,485622,11795 +k4611,458:14443975,36987012:4016046 +k4611,458:18460021,36987012:4016046 +) +(4611,459:6630773,37865884:11829248,530548,102891 +h4611,458:6630773,37865884:0,0,0 +r4611,508:6630773,37865884:0,633439,102891 +g4611,458:7941493,37865884 +g4611,458:7941493,37865884 +k4611,458:18460021,37865884:887691 +) +(4611,459:9252213,38730964:9207808,485622,102891 +g4611,458:10820489,38730964 +g4611,458:12388765,38730964 +k4611,459:16012251,38730964:2447770 +k4611,459:18460021,38730964:2447770 +) +(4611,460:6630773,39609835:11829248,530548,102891 +h4611,459:6630773,39609835:0,0,0 +r4611,508:6630773,39609835:0,633439,102891 +g4611,459:7941493,39609835 +g4611,459:7941493,39609835 +k4611,459:18460021,39609835:472749 +) +(4611,460:9252213,40474915:9207808,485622,11795 +k4611,460:14443975,40474915:4016046 +k4611,460:18460021,40474915:4016046 +) +(4611,461:6630773,41353786:11829248,530548,141066 +h4611,460:6630773,41353786:0,0,0 +r4611,508:6630773,41353786:0,671614,141066 +g4611,460:7941493,41353786 +g4611,460:7941493,41353786 +k4611,460:18460021,41353786:887691 +) +(4611,461:9252213,42218866:9207808,485622,11795 +k4611,461:14443975,42218866:4016046 +k4611,461:18460021,42218866:4016046 +) +(4611,462:6630773,43097738:11829248,530548,141066 +h4611,461:6630773,43097738:0,0,0 +r4611,508:6630773,43097738:0,671614,141066 +g4611,461:7941493,43097738 +g4611,461:7941493,43097738 +k4611,461:18460021,43097738:472749 +) +(4611,462:9252213,43962818:9207808,485622,11795 +k4611,462:14443975,43962818:4016046 +k4611,462:18460021,43962818:4016046 +) +(4611,463:6630773,44841689:11829248,530548,141066 +h4611,462:6630773,44841689:0,0,0 +r4611,508:6630773,44841689:0,671614,141066 +g4611,462:7941493,44841689 +g4611,462:7941493,44841689 +k4611,462:18460021,44841689:472749 +) +(4611,463:9252213,45706769:9207808,485622,11795 +k4611,463:14443975,45706769:4016046 +k4611,463:18460021,45706769:4016046 +) +] +k4611,508:19606901,45706769:1146880 +r4611,508:19606901,45706769:0,40234515,126483 +k4611,508:20753781,45706769:1146880 +[4611,508:20753781,45706769:11829248,40108032,102891 +(4611,464:20753781,6254097:11829248,530548,141066 +h4611,463:20753781,6254097:0,0,0 +r4611,508:20753781,6254097:0,671614,141066 +g4611,463:22064501,6254097 +g4611,463:22064501,6254097 +g4611,463:30321306,6254097 +k4611,464:32040026,6254097:543004 +k4611,464:32583029,6254097:543003 +) +(4611,465:20753781,7132279:11829248,530548,102891 +h4611,464:20753781,7132279:0,0,0 +r4611,508:20753781,7132279:0,633439,102891 +g4611,464:22064501,7132279 +g4611,464:22064501,7132279 +g4611,464:29906363,7132279 +k4611,465:31832554,7132279:750475 +k4611,465:32583029,7132279:750475 +) +(4611,466:20753781,8010461:11829248,530548,132808 +h4611,465:20753781,8010461:0,0,0 +r4611,508:20753781,8010461:0,663356,132808 +g4611,465:22064501,8010461 +g4611,465:22064501,8010461 +k4611,465:32583029,8010461:887691 +) +(4611,466:23375221,8875541:9207808,485622,102891 +g4611,465:24943497,8875541 +k4611,466:29360952,8875541:3222078 +k4611,466:32583029,8875541:3222077 +) +(4611,467:20753781,9753722:11829248,530548,102891 +h4611,466:20753781,9753722:0,0,0 +r4611,508:20753781,9753722:0,633439,102891 +g4611,466:22064501,9753722 +g4611,466:22064501,9753722 +k4611,466:32583029,9753722:1302633 +) +(4611,467:23375221,10618802:9207808,485622,102891 +g4611,466:24943497,10618802 +k4611,467:29351121,10618802:3231908 +k4611,467:32583029,10618802:3231908 +) +(4611,468:20753781,11496984:11829248,530548,102891 +h4611,467:20753781,11496984:0,0,0 +r4611,508:20753781,11496984:0,633439,102891 +g4611,467:22064501,11496984 +g4611,467:22064501,11496984 +k4611,467:32583029,11496984:472749 +) +(4611,468:23375221,12362064:9207808,485622,11795 +k4611,468:28566983,12362064:4016046 +k4611,468:32583029,12362064:4016046 +) +(4611,469:20753781,13240246:11829248,530548,102891 +h4611,468:20753781,13240246:0,0,0 +r4611,508:20753781,13240246:0,633439,102891 +g4611,468:22064501,13240246 +g4611,468:22064501,13240246 +k4611,468:32583029,13240246:472749 +) +(4611,469:23375221,14105326:9207808,485622,11795 +k4611,469:28566983,14105326:4016046 +k4611,469:32583029,14105326:4016046 +) +(4611,470:20753781,14983508:11829248,538806,132808 +h4611,469:20753781,14983508:0,0,0 +r4611,508:20753781,14983508:0,671614,132808 +g4611,469:22064501,14983508 +g4611,469:22064501,14983508 +g4611,469:31151190,14983508 +k4611,470:32464798,14983508:118231 +k4611,470:32583029,14983508:118231 +) +(4611,471:20753781,15861690:11829248,538806,102891 +h4611,470:20753781,15861690:0,0,0 +r4611,508:20753781,15861690:0,641697,102891 +g4611,470:22064501,15861690 +g4611,470:22064501,15861690 +g4611,470:30736248,15861690 +k4611,471:32247497,15861690:335533 +k4611,471:32583029,15861690:335532 +) +(4611,472:20753781,16739871:11829248,530548,132808 +h4611,471:20753781,16739871:0,0,0 +r4611,508:20753781,16739871:0,663356,132808 +g4611,471:22064501,16739871 +g4611,471:22064501,16739871 +k4611,471:32583029,16739871:1302633 +) +(4611,472:23375221,17604951:9207808,485622,11795 +k4611,472:28576814,17604951:4006216 +k4611,472:32583029,17604951:4006215 +) +(4611,473:20753781,18483133:11829248,530548,102891 +h4611,472:20753781,18483133:0,0,0 +r4611,508:20753781,18483133:0,633439,102891 +g4611,472:22064501,18483133 +g4611,472:22064501,18483133 +g4611,472:27416709,18483133 +k4611,473:30587727,18483133:1995302 +k4611,473:32583029,18483133:1995302 +) +(4611,474:20753781,19361315:11829248,530548,102891 +h4611,473:20753781,19361315:0,0,0 +r4611,508:20753781,19361315:0,633439,102891 +g4611,473:22064501,19361315 +g4611,473:22064501,19361315 +g4611,473:29491421,19361315 +k4611,474:31625083,19361315:957946 +k4611,474:32583029,19361315:957946 +) +(4611,475:20753781,20239497:11829248,530548,132808 +h4611,474:20753781,20239497:0,0,0 +r4611,508:20753781,20239497:0,663356,132808 +g4611,474:22064501,20239497 +g4611,474:22064501,20239497 +g4611,474:31151190,20239497 +k4611,475:32464798,20239497:118231 +k4611,475:32583029,20239497:118231 +) +(4611,476:20753781,21117679:11829248,530548,102891 +h4611,475:20753781,21117679:0,0,0 +r4611,508:20753781,21117679:0,633439,102891 +g4611,475:22064501,21117679 +g4611,475:22064501,21117679 +g4611,475:30321306,21117679 +k4611,476:32040026,21117679:543004 +k4611,476:32583029,21117679:543003 +) +(4611,477:20753781,21995860:11829248,530548,102891 +h4611,476:20753781,21995860:0,0,0 +r4611,508:20753781,21995860:0,633439,102891 +g4611,476:22064501,21995860 +g4611,476:22064501,21995860 +g4611,476:30736248,21995860 +k4611,477:32257327,21995860:325702 +k4611,477:32583029,21995860:325702 +) +(4611,478:20753781,22874042:11829248,530548,102891 +h4611,477:20753781,22874042:0,0,0 +r4611,508:20753781,22874042:0,633439,102891 +g4611,477:22064501,22874042 +g4611,477:22064501,22874042 +g4611,477:29906363,22874042 +k4611,478:31842385,22874042:740645 +k4611,478:32583029,22874042:740644 +) +(4611,479:20753781,23752224:11829248,530548,102891 +h4611,478:20753781,23752224:0,0,0 +r4611,508:20753781,23752224:0,633439,102891 +g4611,478:22064501,23752224 +g4611,478:22064501,23752224 +g4611,478:29906363,23752224 +k4611,479:31842385,23752224:740645 +k4611,479:32583029,23752224:740644 +) +(4611,480:20753781,24630406:11829248,530548,141066 +h4611,479:20753781,24630406:0,0,0 +r4611,508:20753781,24630406:0,671614,141066 +g4611,479:22064501,24630406 +g4611,479:22064501,24630406 +g4611,479:28661536,24630406 +k4611,480:31219971,24630406:1363058 +k4611,480:32583029,24630406:1363058 +) +(4611,481:20753781,25508588:11829248,530548,102891 +h4611,480:20753781,25508588:0,0,0 +r4611,508:20753781,25508588:0,633439,102891 +g4611,480:22064501,25508588 +g4611,480:22064501,25508588 +g4611,480:29491421,25508588 +k4611,481:31625083,25508588:957946 +k4611,481:32583029,25508588:957946 +) +(4611,482:20753781,26386769:11829248,530548,132808 +h4611,481:20753781,26386769:0,0,0 +r4611,508:20753781,26386769:0,663356,132808 +g4611,481:22064501,26386769 +g4611,481:22064501,26386769 +g4611,481:30736248,26386769 +k4611,482:32257327,26386769:325702 +k4611,482:32583029,26386769:325702 +) +(4611,483:20753781,27264951:11829248,530548,132808 +h4611,482:20753781,27264951:0,0,0 +r4611,508:20753781,27264951:0,663356,132808 +g4611,482:22064501,27264951 +g4611,482:22064501,27264951 +g4611,482:29906363,27264951 +k4611,483:31842385,27264951:740645 +k4611,483:32583029,27264951:740644 +) +(4611,484:20753781,28143133:11829248,530548,141066 +h4611,483:20753781,28143133:0,0,0 +r4611,508:20753781,28143133:0,671614,141066 +g4611,483:22064501,28143133 +g4611,483:22064501,28143133 +g4611,483:27831652,28143133 +k4611,484:30805029,28143133:1778000 +k4611,484:32583029,28143133:1778000 +) +(4611,485:20753781,29021315:11829248,530548,141066 +h4611,484:20753781,29021315:0,0,0 +r4611,508:20753781,29021315:0,671614,141066 +g4611,484:22064501,29021315 +g4611,484:22064501,29021315 +g4611,484:28661536,29021315 +g4611,484:30229812,29021315 +k4611,485:32004109,29021315:578920 +k4611,485:32583029,29021315:578920 +) +(4611,486:20753781,29899497:11829248,530548,132808 +h4611,485:20753781,29899497:0,0,0 +r4611,508:20753781,29899497:0,663356,132808 +g4611,485:22064501,29899497 +g4611,485:22064501,29899497 +g4611,485:29491421,29899497 +k4611,486:31625083,29899497:957946 +k4611,486:32583029,29899497:957946 +) +(4611,487:20753781,30777678:11829248,530548,102891 +h4611,486:20753781,30777678:0,0,0 +r4611,508:20753781,30777678:0,633439,102891 +g4611,486:22064501,30777678 +g4611,486:22064501,30777678 +g4611,486:24097170,30777678 +g4611,486:25665446,30777678 +g4611,486:27233722,30777678 +k4611,487:30506064,30777678:2076965 +k4611,487:32583029,30777678:2076965 +) +(4611,488:20753781,31655860:11829248,530548,102891 +h4611,487:20753781,31655860:0,0,0 +r4611,508:20753781,31655860:0,633439,102891 +g4611,487:22064501,31655860 +g4611,487:22064501,31655860 +g4611,487:25756939,31655860 +k4611,488:29757842,31655860:2825187 +k4611,488:32583029,31655860:2825187 +) +(4611,489:20753781,32534042:11829248,530548,102891 +h4611,488:20753781,32534042:0,0,0 +r4611,508:20753781,32534042:0,633439,102891 +g4611,488:22064501,32534042 +g4611,488:22064501,32534042 +g4611,488:25756939,32534042 +k4611,489:29767673,32534042:2815357 +k4611,489:32583029,32534042:2815356 +) +(4611,490:20753781,33412224:11829248,530548,102891 +h4611,489:20753781,33412224:0,0,0 +r4611,508:20753781,33412224:0,633439,102891 +g4611,489:22064501,33412224 +g4611,489:22064501,33412224 +g4611,489:26171882,33412224 +k4611,490:29975144,33412224:2607885 +k4611,490:32583029,33412224:2607885 +) +(4611,491:20753781,34290406:11829248,530548,102891 +h4611,490:20753781,34290406:0,0,0 +r4611,508:20753781,34290406:0,633439,102891 +g4611,490:22064501,34290406 +g4611,490:22064501,34290406 +g4611,490:25756939,34290406 +k4611,491:29757842,34290406:2825187 +k4611,491:32583029,34290406:2825187 +) +(4611,492:20753781,35168587:11829248,530548,102891 +h4611,491:20753781,35168587:0,0,0 +r4611,508:20753781,35168587:0,633439,102891 +g4611,491:22064501,35168587 +g4611,491:22064501,35168587 +g4611,491:24512112,35168587 +g4611,491:26080388,35168587 +k4611,492:29929397,35168587:2653632 +k4611,492:32583029,35168587:2653632 +) +(4611,493:20753781,36046769:11829248,530548,141066 +h4611,492:20753781,36046769:0,0,0 +r4611,508:20753781,36046769:0,671614,141066 +g4611,492:22064501,36046769 +g4611,492:22064501,36046769 +g4611,492:27001767,36046769 +k4611,493:30390087,36046769:2192943 +k4611,493:32583029,36046769:2192942 +) +(4611,494:20753781,36924951:11829248,530548,132808 +h4611,493:20753781,36924951:0,0,0 +r4611,508:20753781,36924951:0,663356,132808 +g4611,493:22064501,36924951 +g4611,493:22064501,36924951 +g4611,493:24512112,36924951 +g4611,493:25681929,36924951 +k4611,494:29730168,36924951:2852862 +k4611,494:32583029,36924951:2852861 +) +(4611,495:20753781,37803133:11829248,530548,141066 +h4611,494:20753781,37803133:0,0,0 +r4611,508:20753781,37803133:0,671614,141066 +g4611,494:22064501,37803133 +g4611,494:22064501,37803133 +g4611,494:27001767,37803133 +k4611,495:30390087,37803133:2192943 +k4611,495:32583029,37803133:2192942 +) +(4611,496:20753781,38681315:11829248,530548,102891 +h4611,495:20753781,38681315:0,0,0 +r4611,508:20753781,38681315:0,633439,102891 +g4611,495:22064501,38681315 +g4611,495:22064501,38681315 +g4611,495:26586824,38681315 +k4611,496:30182615,38681315:2400414 +k4611,496:32583029,38681315:2400414 +) +(4611,497:20753781,39559496:11829248,530548,132808 +h4611,496:20753781,39559496:0,0,0 +r4611,508:20753781,39559496:0,663356,132808 +g4611,496:22064501,39559496 +g4611,496:22064501,39559496 +g4611,496:29491421,39559496 +k4611,497:31634914,39559496:948116 +k4611,497:32583029,39559496:948115 +) +(4611,498:20753781,40437678:11829248,530548,102891 +h4611,497:20753781,40437678:0,0,0 +r4611,508:20753781,40437678:0,633439,102891 +g4611,497:22064501,40437678 +g4611,497:22064501,40437678 +g4611,497:25341997,40437678 +k4611,498:29560202,40437678:3022828 +k4611,498:32583029,40437678:3022827 +) +(4611,499:20753781,41315860:11829248,530548,102891 +h4611,498:20753781,41315860:0,0,0 +r4611,508:20753781,41315860:0,633439,102891 +g4611,498:22064501,41315860 +g4611,498:22064501,41315860 +g4611,498:25341997,41315860 +k4611,499:29560202,41315860:3022828 +k4611,499:32583029,41315860:3022827 +) +(4611,500:20753781,42194042:11829248,530548,102891 +h4611,499:20753781,42194042:0,0,0 +r4611,508:20753781,42194042:0,633439,102891 +g4611,499:22064501,42194042 +g4611,499:22064501,42194042 +g4611,499:28246594,42194042 +k4611,500:31012500,42194042:1570529 +k4611,500:32583029,42194042:1570529 +) +(4611,501:20753781,43072224:11829248,538806,102891 +h4611,500:20753781,43072224:0,0,0 +r4611,508:20753781,43072224:0,641697,102891 +g4611,500:22064501,43072224 +g4611,500:22064501,43072224 +g4611,500:29906363,43072224 +k4611,501:31842385,43072224:740645 +k4611,501:32583029,43072224:740644 +) +(4611,502:20753781,43950405:11829248,538806,141066 +h4611,501:20753781,43950405:0,0,0 +r4611,508:20753781,43950405:0,679872,141066 +g4611,501:22064501,43950405 +g4611,501:22064501,43950405 +g4611,501:25756939,43950405 +k4611,502:29568443,43950405:3014586 +k4611,502:32583029,43950405:3014586 +) +(4611,503:20753781,44828587:11829248,530548,102891 +h4611,502:20753781,44828587:0,0,0 +r4611,508:20753781,44828587:0,633439,102891 +g4611,502:22064501,44828587 +g4611,502:22064501,44828587 +g4611,502:24512112,44828587 +k4611,503:28946030,44828587:3637000 +k4611,503:32583029,44828587:3636999 +) +(4611,504:20753781,45706769:11829248,530548,102891 +h4611,503:20753781,45706769:0,0,0 +r4611,508:20753781,45706769:0,633439,102891 +g4611,503:22064501,45706769 +g4611,503:22064501,45706769 +g4611,503:25341997,45706769 +k4611,504:29550371,45706769:3032658 +k4611,504:32583029,45706769:3032658 +) +] +(4611,508:32583029,45706769:0,355205,126483 +h4611,508:32583029,45706769:420741,355205,126483 +k4611,508:32583029,45706769:-420741 +) +) +] +(4611,508:32583029,45706769:0,0,0 +g4611,508:32583029,45706769 +) +) +] +(4611,508:6630773,47279633:25952256,0,0 +h4611,508:6630773,47279633:25952256,0,0 +) +] +(4611,508:4262630,4025873:0,0,0 +[4611,508:-473656,4025873:0,0,0 +(4611,508:-473656,-710413:0,0,0 +(4611,508:-473656,-710413:0,0,0 +g4611,508:-473656,-710413 +) +g4611,508:-473656,-710413 ) ] ) ] !28077 -}459 +}460 !12 -{460 -[4607,597:4262630,47279633:28320399,43253760,0 -(4607,597:4262630,4025873:0,0,0 -[4607,597:-473656,4025873:0,0,0 -(4607,597:-473656,-710413:0,0,0 -(4607,597:-473656,-644877:0,0,0 -k4607,597:-473656,-644877:-65536 +{461 +[4611,596:4262630,47279633:28320399,43253760,0 +(4611,596:4262630,4025873:0,0,0 +[4611,596:-473656,4025873:0,0,0 +(4611,596:-473656,-710413:0,0,0 +(4611,596:-473656,-644877:0,0,0 +k4611,596:-473656,-644877:-65536 ) -(4607,597:-473656,4736287:0,0,0 -k4607,597:-473656,4736287:5209943 +(4611,596:-473656,4736287:0,0,0 +k4611,596:-473656,4736287:5209943 ) -g4607,597:-473656,-710413 +g4611,596:-473656,-710413 ) ] ) -[4607,597:6630773,47279633:25952256,43253760,0 -[4607,597:6630773,4812305:25952256,786432,0 -(4607,597:6630773,4812305:25952256,513147,134348 -(4607,597:6630773,4812305:25952256,513147,134348 -g4607,597:3078558,4812305 -[4607,597:3078558,4812305:0,0,0 -(4607,597:3078558,2439708:0,1703936,0 -k4607,597:1358238,2439708:-1720320 -(4607,1:1358238,2439708:1720320,1703936,0 -(4607,1:1358238,2439708:1179648,16384,0 -r4607,597:2537886,2439708:1179648,16384,0 +[4611,596:6630773,47279633:25952256,43253760,0 +[4611,596:6630773,4812305:25952256,786432,0 +(4611,596:6630773,4812305:25952256,513147,134348 +(4611,596:6630773,4812305:25952256,513147,134348 +g4611,596:3078558,4812305 +[4611,596:3078558,4812305:0,0,0 +(4611,596:3078558,2439708:0,1703936,0 +k4611,596:1358238,2439708:-1720320 +(4611,1:1358238,2439708:1720320,1703936,0 +(4611,1:1358238,2439708:1179648,16384,0 +r4611,596:2537886,2439708:1179648,16384,0 ) -g4607,1:3062174,2439708 -(4607,1:3062174,2439708:16384,1703936,0 -[4607,1:3062174,2439708:25952256,1703936,0 -(4607,1:3062174,1915420:25952256,1179648,0 -(4607,1:3062174,1915420:16384,1179648,0 -r4607,597:3078558,1915420:16384,1179648,0 +g4611,1:3062174,2439708 +(4611,1:3062174,2439708:16384,1703936,0 +[4611,1:3062174,2439708:25952256,1703936,0 +(4611,1:3062174,1915420:25952256,1179648,0 +(4611,1:3062174,1915420:16384,1179648,0 +r4611,596:3078558,1915420:16384,1179648,0 ) -k4607,1:29014430,1915420:25935872 -g4607,1:29014430,1915420 +k4611,1:29014430,1915420:25935872 +g4611,1:29014430,1915420 ) ] ) ) ) ] -[4607,597:3078558,4812305:0,0,0 -(4607,597:3078558,2439708:0,1703936,0 -g4607,597:29030814,2439708 -g4607,597:36135244,2439708 -(4607,1:36135244,2439708:1720320,1703936,0 -(4607,1:36135244,2439708:16384,1703936,0 -[4607,1:36135244,2439708:25952256,1703936,0 -(4607,1:36135244,1915420:25952256,1179648,0 -(4607,1:36135244,1915420:16384,1179648,0 -r4607,597:36151628,1915420:16384,1179648,0 +[4611,596:3078558,4812305:0,0,0 +(4611,596:3078558,2439708:0,1703936,0 +g4611,596:29030814,2439708 +g4611,596:36135244,2439708 +(4611,1:36135244,2439708:1720320,1703936,0 +(4611,1:36135244,2439708:16384,1703936,0 +[4611,1:36135244,2439708:25952256,1703936,0 +(4611,1:36135244,1915420:25952256,1179648,0 +(4611,1:36135244,1915420:16384,1179648,0 +r4611,596:36151628,1915420:16384,1179648,0 ) -k4607,1:62087500,1915420:25935872 -g4607,1:62087500,1915420 +k4611,1:62087500,1915420:25935872 +g4611,1:62087500,1915420 ) ] ) -g4607,1:36675916,2439708 -(4607,1:36675916,2439708:1179648,16384,0 -r4607,597:37855564,2439708:1179648,16384,0 +g4611,1:36675916,2439708 +(4611,1:36675916,2439708:1179648,16384,0 +r4611,596:37855564,2439708:1179648,16384,0 ) ) -k4607,597:3078556,2439708:-34777008 +k4611,596:3078556,2439708:-34777008 ) ] -[4607,597:3078558,4812305:0,0,0 -(4607,597:3078558,49800853:0,16384,2228224 -k4607,597:1358238,49800853:-1720320 -(4607,1:1358238,49800853:1720320,16384,2228224 -(4607,1:1358238,49800853:1179648,16384,0 -r4607,597:2537886,49800853:1179648,16384,0 +[4611,596:3078558,4812305:0,0,0 +(4611,596:3078558,49800853:0,16384,2228224 +k4611,596:1358238,49800853:-1720320 +(4611,1:1358238,49800853:1720320,16384,2228224 +(4611,1:1358238,49800853:1179648,16384,0 +r4611,596:2537886,49800853:1179648,16384,0 ) -g4607,1:3062174,49800853 -(4607,1:3062174,52029077:16384,1703936,0 -[4607,1:3062174,52029077:25952256,1703936,0 -(4607,1:3062174,51504789:25952256,1179648,0 -(4607,1:3062174,51504789:16384,1179648,0 -r4607,597:3078558,51504789:16384,1179648,0 +g4611,1:3062174,49800853 +(4611,1:3062174,52029077:16384,1703936,0 +[4611,1:3062174,52029077:25952256,1703936,0 +(4611,1:3062174,51504789:25952256,1179648,0 +(4611,1:3062174,51504789:16384,1179648,0 +r4611,596:3078558,51504789:16384,1179648,0 ) -k4607,1:29014430,51504789:25935872 -g4607,1:29014430,51504789 +k4611,1:29014430,51504789:25935872 +g4611,1:29014430,51504789 ) ] ) ) ) ] -[4607,597:3078558,4812305:0,0,0 -(4607,597:3078558,49800853:0,16384,2228224 -g4607,597:29030814,49800853 -g4607,597:36135244,49800853 -(4607,1:36135244,49800853:1720320,16384,2228224 -(4607,1:36135244,52029077:16384,1703936,0 -[4607,1:36135244,52029077:25952256,1703936,0 -(4607,1:36135244,51504789:25952256,1179648,0 -(4607,1:36135244,51504789:16384,1179648,0 -r4607,597:36151628,51504789:16384,1179648,0 -) -k4607,1:62087500,51504789:25935872 -g4607,1:62087500,51504789 -) -] -) -g4607,1:36675916,49800853 -(4607,1:36675916,49800853:1179648,16384,0 -r4607,597:37855564,49800853:1179648,16384,0 -) -) -k4607,597:3078556,49800853:-34777008 -) -] -g4607,597:6630773,4812305 -g4607,597:6630773,4812305 -g4607,597:8528695,4812305 -g4607,597:9343962,4812305 -g4607,597:9957379,4812305 -g4607,597:12300946,4812305 -g4607,597:13256460,4812305 -g4607,597:16329443,4812305 -k4607,597:31387652,4812305:15058209 -) -) -] -[4607,597:6630773,45706769:25952256,40108032,0 -(4607,597:6630773,45706769:25952256,40108032,0 -(4607,597:6630773,45706769:0,0,0 -g4607,597:6630773,45706769 -) -[4607,597:6630773,45706769:25952256,40108032,0 -(4607,597:6630773,45706769:25952256,40108032,126483 -[4607,597:6630773,45706769:11829248,40108032,102891 -(4607,506:6630773,6254097:11829248,530548,132808 -h4607,505:6630773,6254097:0,0,0 -r4607,597:6630773,6254097:0,663356,132808 -g4607,505:7941493,6254097 -g4607,505:7941493,6254097 -g4607,505:14538528,6254097 -k4607,506:17087133,6254097:1372889 -k4607,506:18460021,6254097:1372888 -) -(4607,507:6630773,7153906:11829248,530548,102891 -h4607,506:6630773,7153906:0,0,0 -r4607,597:6630773,7153906:0,633439,102891 -g4607,506:7941493,7153906 -g4607,506:7941493,7153906 -g4607,506:11218989,7153906 -k4607,507:15237964,7153906:3222057 -k4607,507:18460021,7153906:3222057 -) -(4607,508:6630773,8053715:11829248,530548,102891 -h4607,507:6630773,8053715:0,0,0 -r4607,597:6630773,8053715:0,633439,102891 -g4607,507:7941493,8053715 -g4607,507:7941493,8053715 -g4607,507:10804046,8053715 -g4607,507:11973863,8053715 -g4607,507:13143680,8053715 -g4607,507:14313497,8053715 -g4607,507:15881773,8053715 -k4607,508:17768586,8053715:691436 -k4607,508:18460021,8053715:691435 -) -(4607,509:6630773,8953523:11829248,530548,102891 -h4607,508:6630773,8953523:0,0,0 -r4607,597:6630773,8953523:0,633439,102891 -g4607,508:7941493,8953523 -g4607,508:7941493,8953523 -g4607,508:11633931,8953523 -k4607,509:15634834,8953523:2825187 -k4607,509:18460021,8953523:2825187 -) -(4607,510:6630773,9853332:11829248,530548,132808 -h4607,509:6630773,9853332:0,0,0 -r4607,597:6630773,9853332:0,663356,132808 -g4607,509:7941493,9853332 -g4607,509:7941493,9853332 -g4607,509:11633931,9853332 -k4607,510:15634834,9853332:2825187 -k4607,510:18460021,9853332:2825187 -) -(4607,511:6630773,10753141:11829248,530548,132808 -h4607,510:6630773,10753141:0,0,0 -r4607,597:6630773,10753141:0,663356,132808 -g4607,510:7941493,10753141 -g4607,510:7941493,10753141 -g4607,510:11218989,10753141 -g4607,510:12787265,10753141 -k4607,511:16221332,10753141:2238690 -k4607,511:18460021,10753141:2238689 -) -(4607,512:6630773,11652950:11829248,530548,132808 -h4607,511:6630773,11652950:0,0,0 -r4607,597:6630773,11652950:0,663356,132808 -g4607,511:7941493,11652950 -g4607,511:7941493,11652950 -g4607,511:11633931,11652950 -k4607,512:15644665,11652950:2815357 -k4607,512:18460021,11652950:2815356 -) -(4607,513:6630773,12552759:11829248,538806,132808 -h4607,512:6630773,12552759:0,0,0 -r4607,597:6630773,12552759:0,671614,132808 -g4607,512:7941493,12552759 -g4607,512:7941493,12552759 -g4607,512:12048874,12552759 -g4607,512:13218691,12552759 -g4607,512:14388508,12552759 -g4607,512:15956784,12552759 -k4607,513:17806091,12552759:653930 -k4607,513:18460021,12552759:653930 -) -(4607,514:6630773,13452567:11829248,530548,132808 -h4607,513:6630773,13452567:0,0,0 -r4607,597:6630773,13452567:0,663356,132808 -g4607,513:7941493,13452567 -g4607,513:7941493,13452567 -g4607,513:10804046,13452567 -k4607,514:15030493,13452567:3429529 -k4607,514:18460021,13452567:3429528 -) -(4607,515:6630773,14352376:11829248,530548,102891 -h4607,514:6630773,14352376:0,0,0 -r4607,597:6630773,14352376:0,633439,102891 -g4607,514:7941493,14352376 -g4607,514:7941493,14352376 -g4607,514:12463816,14352376 -g4607,514:14032092,14352376 -k4607,515:16843745,14352376:1616276 -k4607,515:18460021,14352376:1616276 -) -(4607,516:6630773,15252185:11829248,530548,141066 -h4607,515:6630773,15252185:0,0,0 -r4607,597:6630773,15252185:0,671614,141066 -g4607,515:7941493,15252185 -g4607,515:7941493,15252185 -g4607,515:11218989,15252185 -g4607,515:12787265,15252185 -k4607,516:16221332,15252185:2238690 -k4607,516:18460021,15252185:2238689 -) -(4607,517:6630773,16151994:11829248,530548,102891 -h4607,516:6630773,16151994:0,0,0 -r4607,597:6630773,16151994:0,633439,102891 -g4607,516:7941493,16151994 -g4607,516:7941493,16151994 -g4607,516:13708644,16151994 -k4607,517:16672191,16151994:1787831 -k4607,517:18460021,16151994:1787830 -) -(4607,518:6630773,17051803:11829248,530548,102891 -h4607,517:6630773,17051803:0,0,0 -r4607,597:6630773,17051803:0,633439,102891 -g4607,517:7941493,17051803 -g4607,517:7941493,17051803 -g4607,517:10804046,17051803 -k4607,518:15229722,17051803:3230299 -k4607,518:18460021,17051803:3230299 -) -(4607,519:6630773,17951611:11829248,530548,102891 -h4607,518:6630773,17951611:0,0,0 -r4607,597:6630773,17951611:0,633439,102891 -g4607,518:7941493,17951611 -g4607,518:7941493,17951611 -g4607,518:12463816,17951611 -g4607,518:15555149,17951611 -g4607,518:17123425,17951611 -k4607,519:18389412,17951611:70610 -k4607,519:18460021,17951611:70609 -) -(4607,520:6630773,18851420:11829248,530548,102891 -h4607,519:6630773,18851420:0,0,0 -r4607,597:6630773,18851420:0,633439,102891 -g4607,519:7941493,18851420 -g4607,519:7941493,18851420 -g4607,519:13293701,18851420 -k4607,520:16474550,18851420:1985472 -k4607,520:18460021,18851420:1985471 -) -(4607,521:6630773,19751229:11829248,530548,102891 -h4607,520:6630773,19751229:0,0,0 -r4607,597:6630773,19751229:0,633439,102891 -g4607,520:7941493,19751229 -g4607,520:7941493,19751229 -g4607,520:14123586,19751229 -k4607,521:16889492,19751229:1570529 -k4607,521:18460021,19751229:1570529 -) -(4607,522:6630773,20651038:11829248,530548,132808 -h4607,521:6630773,20651038:0,0,0 -r4607,597:6630773,20651038:0,663356,132808 -g4607,521:7941493,20651038 -g4607,521:7941493,20651038 -g4607,521:14123586,20651038 -g4607,521:15691862,20651038 -k4607,522:17663800,20651038:796222 -k4607,522:18460021,20651038:796221 -) -(4607,523:6630773,21550847:11829248,530548,102891 -h4607,522:6630773,21550847:0,0,0 -r4607,597:6630773,21550847:0,633439,102891 -g4607,522:7941493,21550847 -g4607,522:7941493,21550847 -g4607,522:13293701,21550847 -g4607,522:14861977,21550847 -g4607,522:16430253,21550847 -k4607,523:18042826,21550847:417196 -k4607,523:18460021,21550847:417195 -) -(4607,524:6630773,22450655:11829248,530548,132808 -h4607,523:6630773,22450655:0,0,0 -r4607,597:6630773,22450655:0,663356,132808 -g4607,523:7941493,22450655 -g4607,523:7941493,22450655 -g4607,523:14123586,22450655 -k4607,524:16879662,22450655:1580360 -k4607,524:18460021,22450655:1580359 -) -(4607,525:6630773,23350464:11829248,530548,132808 -h4607,524:6630773,23350464:0,0,0 -r4607,597:6630773,23350464:0,663356,132808 -g4607,524:7941493,23350464 -g4607,524:7941493,23350464 -g4607,524:15368413,23350464 -k4607,525:17502075,23350464:957946 -k4607,525:18460021,23350464:957946 -) -(4607,526:6630773,24250273:11829248,538806,102891 -h4607,525:6630773,24250273:0,0,0 -r4607,597:6630773,24250273:0,641697,102891 -g4607,525:7941493,24250273 -g4607,525:7941493,24250273 -g4607,525:16613240,24250273 -k4607,526:18134319,24250273:325702 -k4607,526:18460021,24250273:325702 -) -(4607,527:6630773,25150082:11829248,538806,102891 -h4607,526:6630773,25150082:0,0,0 -r4607,597:6630773,25150082:0,641697,102891 -g4607,526:7941493,25150082 -g4607,526:7941493,25150082 -g4607,526:14538528,25150082 -k4607,527:17096963,25150082:1363058 -k4607,527:18460021,25150082:1363058 -) -(4607,528:6630773,26049891:11829248,530548,141066 -h4607,527:6630773,26049891:0,0,0 -r4607,597:6630773,26049891:0,671614,141066 -g4607,527:7941493,26049891 -g4607,527:7941493,26049891 -g4607,527:14953471,26049891 -k4607,528:17294604,26049891:1165417 -k4607,528:18460021,26049891:1165417 -) -(4607,529:6630773,26949699:11829248,530548,132808 -h4607,528:6630773,26949699:0,0,0 -r4607,597:6630773,26949699:0,663356,132808 -g4607,528:7941493,26949699 -g4607,528:7941493,26949699 -g4607,528:14538528,26949699 -g4607,528:16106804,26949699 -k4607,528:18460021,26949699:1070678 -) -(4607,529:9252213,27814779:9207808,485622,102891 -g4607,528:10820489,27814779 -k4607,529:15237944,27814779:3222078 -k4607,529:18460021,27814779:3222077 -) -(4607,530:6630773,28714588:11829248,530548,132808 -h4607,529:6630773,28714588:0,0,0 -r4607,597:6630773,28714588:0,663356,132808 -g4607,529:7941493,28714588 -g4607,529:7941493,28714588 -g4607,529:14953471,28714588 -k4607,530:17294604,28714588:1165417 -k4607,530:18460021,28714588:1165417 -) -(4607,531:6630773,29614397:11829248,530548,132808 -h4607,530:6630773,29614397:0,0,0 -r4607,597:6630773,29614397:0,663356,132808 -g4607,530:7941493,29614397 -g4607,530:7941493,29614397 -g4607,530:14953471,29614397 -g4607,530:16521747,29614397 -k4607,531:18078742,29614397:381279 -k4607,531:18460021,29614397:381279 -) -(4607,532:6630773,30514206:11829248,538806,102891 -h4607,531:6630773,30514206:0,0,0 -r4607,597:6630773,30514206:0,641697,102891 -g4607,531:7941493,30514206 -g4607,531:7941493,30514206 -g4607,531:12048874,30514206 -k4607,532:15852136,30514206:2607885 -k4607,532:18460021,30514206:2607885 -) -(4607,533:6630773,31414015:11829248,538806,102891 -h4607,532:6630773,31414015:0,0,0 -r4607,597:6630773,31414015:0,641697,102891 -g4607,532:7941493,31414015 -g4607,532:7941493,31414015 -g4607,532:17028182,31414015 -k4607,533:18341790,31414015:118231 -k4607,533:18460021,31414015:118231 -) -(4607,534:6630773,32313823:11829248,530548,102891 -h4607,533:6630773,32313823:0,0,0 -r4607,597:6630773,32313823:0,633439,102891 -g4607,533:7941493,32313823 -g4607,533:7941493,32313823 -g4607,533:13708644,32313823 -g4607,533:15276920,32313823 -g4607,533:16845196,32313823 -k4607,533:18460021,32313823:332286 -) -(4607,534:9252213,33178903:9207808,485622,102891 -g4607,533:10820489,33178903 -g4607,533:12388765,33178903 -k4607,534:16022082,33178903:2437940 -k4607,534:18460021,33178903:2437939 -) -(4607,535:6630773,34078712:11829248,530548,132808 -h4607,534:6630773,34078712:0,0,0 -r4607,597:6630773,34078712:0,663356,132808 -g4607,534:7941493,34078712 -g4607,534:7941493,34078712 -g4607,534:14123586,34078712 -k4607,534:18460021,34078712:3053896 -) -(4607,535:9252213,34943792:9207808,485622,102891 -g4607,534:12343546,34943792 -k4607,535:15989642,34943792:2470380 -k4607,535:18460021,34943792:2470379 -) -(4607,536:6630773,35843601:11829248,530548,132808 -h4607,535:6630773,35843601:0,0,0 -r4607,597:6630773,35843601:0,663356,132808 -g4607,535:7941493,35843601 -g4607,535:7941493,35843601 -g4607,535:10804046,35843601 -g4607,535:12372322,35843601 -g4607,535:13940598,35843601 -k4607,536:16788168,35843601:1671854 -k4607,536:18460021,35843601:1671853 -) -(4607,537:6630773,36743410:11829248,530548,102891 -h4607,536:6630773,36743410:0,0,0 -r4607,597:6630773,36743410:0,633439,102891 -g4607,536:7941493,36743410 -g4607,536:7941493,36743410 -g4607,536:10389104,36743410 -g4607,536:11957380,36743410 -k4607,537:15796559,36743410:2663463 -k4607,537:18460021,36743410:2663462 -) -(4607,539:6630773,37643219:11829248,530548,102891 -h4607,537:6630773,37643219:0,0,0 -r4607,597:6630773,37643219:0,633439,102891 -g4607,537:7941493,37643219 -g4607,537:7941493,37643219 -g4607,537:10389104,37643219 -g4607,537:12683519,37643219 -g4607,537:14251795,37643219 -g4607,537:15820071,37643219 -k4607,537:18460021,37643219:1357411 -) -(4607,539:9252213,38508299:9207808,485622,102891 -g4607,537:10800828,38508299 -g4607,537:12369104,38508299 -g4607,537:13937380,38508299 -g4607,538:15505656,38508299 -k4607,539:17570697,38508299:889325 -k4607,539:18460021,38508299:889324 -) -(4607,540:6630773,39408107:11829248,530548,102891 -h4607,539:6630773,39408107:0,0,0 -r4607,597:6630773,39408107:0,633439,102891 -g4607,539:7941493,39408107 -g4607,539:7941493,39408107 -g4607,539:13708644,39408107 -k4607,540:16682021,39408107:1778000 -k4607,540:18460021,39408107:1778000 -) -(4607,541:6630773,40307916:11829248,538806,102891 -h4607,540:6630773,40307916:0,0,0 -r4607,597:6630773,40307916:0,641697,102891 -g4607,540:7941493,40307916 -g4607,540:7941493,40307916 -g4607,540:12463816,40307916 -k4607,541:16059607,40307916:2400414 -k4607,541:18460021,40307916:2400414 -) -(4607,542:6630773,41207725:11829248,530548,132808 -h4607,541:6630773,41207725:0,0,0 -r4607,597:6630773,41207725:0,663356,132808 -g4607,541:7941493,41207725 -g4607,541:7941493,41207725 -g4607,541:12463816,41207725 -k4607,542:16059607,41207725:2400414 -k4607,542:18460021,41207725:2400414 -) -(4607,543:6630773,42107534:11829248,530548,132808 -h4607,542:6630773,42107534:0,0,0 -r4607,597:6630773,42107534:0,663356,132808 -g4607,542:7941493,42107534 -g4607,542:7941493,42107534 -g4607,542:11633931,42107534 -k4607,543:15435605,42107534:3024417 -k4607,543:18460021,42107534:3024416 -) -(4607,544:6630773,43007343:11829248,530548,132808 -h4607,543:6630773,43007343:0,0,0 -r4607,597:6630773,43007343:0,663356,132808 -g4607,543:7941493,43007343 -g4607,543:7941493,43007343 -g4607,543:12463816,43007343 -k4607,544:15860378,43007343:2599644 -k4607,544:18460021,43007343:2599643 -) -(4607,545:6630773,43907151:11829248,530548,102891 -h4607,544:6630773,43907151:0,0,0 -r4607,597:6630773,43907151:0,633439,102891 -g4607,544:7941493,43907151 -g4607,544:7941493,43907151 -g4607,544:12048874,43907151 -k4607,545:15652907,43907151:2807115 -k4607,545:18460021,43907151:2807114 -) -(4607,546:6630773,44806960:11829248,530548,132808 -h4607,545:6630773,44806960:0,0,0 -r4607,597:6630773,44806960:0,663356,132808 -g4607,545:7941493,44806960 -g4607,545:7941493,44806960 -g4607,545:12048874,44806960 -k4607,546:15652907,44806960:2807115 -k4607,546:18460021,44806960:2807114 -) -(4607,547:6630773,45706769:11829248,530548,102891 -h4607,546:6630773,45706769:0,0,0 -r4607,597:6630773,45706769:0,633439,102891 -g4607,546:7941493,45706769 -g4607,546:7941493,45706769 -g4607,546:10389104,45706769 -g4607,546:11558921,45706769 -k4607,547:15407930,45706769:3052091 -k4607,547:18460021,45706769:3052091 -) -] -k4607,597:19606901,45706769:1146880 -r4607,597:19606901,45706769:0,40234515,126483 -k4607,597:20753781,45706769:1146880 -[4607,597:20753781,45706769:11829248,40108032,102891 -(4607,549:20753781,6254097:11829248,530548,102891 -h4607,547:20753781,6254097:0,0,0 -r4607,597:20753781,6254097:0,633439,102891 -g4607,547:22064501,6254097 -g4607,547:22064501,6254097 -g4607,547:25756939,6254097 -g4607,547:28848272,6254097 -g4607,547:30416548,6254097 -k4607,547:32583029,6254097:883942 -) -(4607,549:23375221,7119177:9207808,485622,102891 -g4607,547:24943497,7119177 -g4607,547:26511773,7119177 -g4607,547:28080049,7119177 -g4607,548:29648325,7119177 -k4607,549:31713366,7119177:869664 -k4607,549:32583029,7119177:869663 -) -(4607,550:20753781,7996735:11829248,530548,102891 -h4607,549:20753781,7996735:0,0,0 -r4607,597:20753781,7996735:0,633439,102891 -g4607,549:22064501,7996735 -g4607,549:22064501,7996735 -g4607,549:27416709,7996735 -k4607,550:30597558,7996735:1985472 -k4607,550:32583029,7996735:1985471 -) -(4607,551:20753781,8874293:11829248,530548,102891 -h4607,550:20753781,8874293:0,0,0 -r4607,597:20753781,8874293:0,633439,102891 -g4607,550:22064501,8874293 -g4607,550:22064501,8874293 -g4607,550:25756939,8874293 -k4607,551:29568443,8874293:3014586 -k4607,551:32583029,8874293:3014586 -) -(4607,552:20753781,9751851:11829248,530548,141066 -h4607,551:20753781,9751851:0,0,0 -r4607,597:20753781,9751851:0,671614,141066 -g4607,551:22064501,9751851 -g4607,551:22064501,9751851 -g4607,551:27001767,9751851 -k4607,552:30190857,9751851:2392172 -k4607,552:32583029,9751851:2392172 -) -(4607,553:20753781,10629409:11829248,530548,102891 -h4607,552:20753781,10629409:0,0,0 -r4607,597:20753781,10629409:0,633439,102891 -g4607,552:22064501,10629409 -g4607,552:22064501,10629409 -g4607,552:24512112,10629409 -g4607,552:25681929,10629409 -g4607,552:27250205,10629409 -g4607,552:28818481,10629409 -k4607,553:31298444,10629409:1284586 -k4607,553:32583029,10629409:1284585 -) -(4607,554:20753781,11506967:11829248,530548,102891 -h4607,553:20753781,11506967:0,0,0 -r4607,597:20753781,11506967:0,633439,102891 -g4607,553:22064501,11506967 -g4607,553:22064501,11506967 -g4607,553:27001767,11506967 -g4607,553:28570043,11506967 -k4607,554:31174225,11506967:1408805 -k4607,554:32583029,11506967:1408804 -) -(4607,556:20753781,12384524:11829248,530548,132808 -h4607,554:20753781,12384524:0,0,0 -r4607,597:20753781,12384524:0,663356,132808 -g4607,554:22064501,12384524 -g4607,554:22064501,12384524 -g4607,554:26171882,12384524 -g4607,554:27740158,12384524 -g4607,554:29308434,12384524 -g4607,554:30876710,12384524 -k4607,554:32583029,12384524:423780 -) -(4607,556:23375221,13249604:9207808,485622,102891 -g4607,554:24943497,13249604 -g4607,554:26511773,13249604 -g4607,554:28080049,13249604 -g4607,555:29648325,13249604 -g4607,555:31216601,13249604 -k4607,555:32583029,13249604:83889 -) -(4607,556:23375221,14114684:9207808,485622,11795 -k4607,556:28566983,14114684:4016046 -k4607,556:32583029,14114684:4016046 -) -(4607,557:20753781,14992242:11829248,530548,132808 -h4607,556:20753781,14992242:0,0,0 -r4607,597:20753781,14992242:0,663356,132808 -g4607,556:22064501,14992242 -g4607,556:22064501,14992242 -g4607,556:25756939,14992242 -k4607,557:29767673,14992242:2815357 -k4607,557:32583029,14992242:2815356 -) -(4607,558:20753781,15869800:11829248,530548,132808 -h4607,557:20753781,15869800:0,0,0 -r4607,597:20753781,15869800:0,663356,132808 -g4607,557:22064501,15869800 -g4607,557:22064501,15869800 -g4607,557:27831652,15869800 -k4607,558:30805029,15869800:1778000 -k4607,558:32583029,15869800:1778000 -) -(4607,559:20753781,16747358:11829248,530548,102891 -h4607,558:20753781,16747358:0,0,0 -r4607,597:20753781,16747358:0,633439,102891 -g4607,558:22064501,16747358 -g4607,558:22064501,16747358 -g4607,558:23682227,16747358 -k4607,559:28521257,16747358:4061773 -k4607,559:32583029,16747358:4061772 -) -(4607,560:20753781,17624916:11829248,530548,102891 -h4607,559:20753781,17624916:0,0,0 -r4607,597:20753781,17624916:0,633439,102891 -g4607,559:22064501,17624916 -g4607,559:22064501,17624916 -g4607,559:25756939,17624916 -k4607,560:29767673,17624916:2815357 -k4607,560:32583029,17624916:2815356 -) -(4607,561:20753781,18502474:11829248,530548,102891 -h4607,560:20753781,18502474:0,0,0 -r4607,597:20753781,18502474:0,633439,102891 -g4607,560:22064501,18502474 -g4607,560:22064501,18502474 -g4607,560:25341997,18502474 -g4607,560:26910273,18502474 -k4607,561:30344340,18502474:2238690 -k4607,561:32583029,18502474:2238689 -) -(4607,562:20753781,19380032:11829248,530548,102891 -h4607,561:20753781,19380032:0,0,0 -r4607,597:20753781,19380032:0,633439,102891 -g4607,561:22064501,19380032 -g4607,561:22064501,19380032 -g4607,561:24927054,19380032 -k4607,562:29352730,19380032:3230299 -k4607,562:32583029,19380032:3230299 -) -(4607,563:20753781,20257590:11829248,530548,102891 -h4607,562:20753781,20257590:0,0,0 -r4607,597:20753781,20257590:0,633439,102891 -g4607,562:22064501,20257590 -g4607,562:22064501,20257590 -g4607,562:25341997,20257590 -g4607,562:26910273,20257590 -k4607,563:30344340,20257590:2238690 -k4607,563:32583029,20257590:2238689 -) -(4607,564:20753781,21135148:11829248,530548,102891 -h4607,563:20753781,21135148:0,0,0 -r4607,597:20753781,21135148:0,633439,102891 -g4607,563:22064501,21135148 -g4607,563:22064501,21135148 -g4607,563:26586824,21135148 -g4607,563:28155100,21135148 -k4607,564:30966753,21135148:1616276 -k4607,564:32583029,21135148:1616276 -) -(4607,565:20753781,22012706:11829248,530548,102891 -h4607,564:20753781,22012706:0,0,0 -r4607,597:20753781,22012706:0,633439,102891 -g4607,564:22064501,22012706 -g4607,564:22064501,22012706 -g4607,564:28661536,22012706 -g4607,564:30229812,22012706 -k4607,565:32004109,22012706:578920 -k4607,565:32583029,22012706:578920 -) -(4607,566:20753781,22890263:11829248,530548,102891 -h4607,565:20753781,22890263:0,0,0 -r4607,597:20753781,22890263:0,633439,102891 -g4607,565:22064501,22890263 -g4607,565:22064501,22890263 -g4607,565:27416709,22890263 -k4607,566:30597558,22890263:1985472 -k4607,566:32583029,22890263:1985471 -) -(4607,567:20753781,23767821:11829248,530548,141066 -h4607,566:20753781,23767821:0,0,0 -r4607,597:20753781,23767821:0,671614,141066 -g4607,566:22064501,23767821 -g4607,566:22064501,23767821 -g4607,566:27416709,23767821 -g4607,566:28984985,23767821 -g4607,566:30553261,23767821 -k4607,567:32165834,23767821:417196 -k4607,567:32583029,23767821:417195 -) -(4607,568:20753781,24645379:11829248,530548,141066 -h4607,567:20753781,24645379:0,0,0 -r4607,597:20753781,24645379:0,671614,141066 -g4607,567:22064501,24645379 -g4607,567:22064501,24645379 -g4607,567:27416709,24645379 -k4607,568:30597558,24645379:1985472 -k4607,568:32583029,24645379:1985471 -) -(4607,569:20753781,25522937:11829248,530548,141066 -h4607,568:20753781,25522937:0,0,0 -r4607,597:20753781,25522937:0,671614,141066 -g4607,568:22064501,25522937 -g4607,568:22064501,25522937 -g4607,568:27831652,25522937 -k4607,569:30805029,25522937:1778000 -k4607,569:32583029,25522937:1778000 -) -(4607,570:20753781,26400495:11829248,530548,102891 -h4607,569:20753781,26400495:0,0,0 -r4607,597:20753781,26400495:0,633439,102891 -g4607,569:22064501,26400495 -g4607,569:22064501,26400495 -g4607,569:29076479,26400495 -k4607,570:31427443,26400495:1155587 -k4607,570:32583029,26400495:1155586 -) -(4607,571:20753781,27278053:11829248,530548,102891 -h4607,570:20753781,27278053:0,0,0 -r4607,597:20753781,27278053:0,633439,102891 -g4607,570:22064501,27278053 -g4607,570:22064501,27278053 -g4607,570:28661536,27278053 -k4607,571:31219971,27278053:1363058 -k4607,571:32583029,27278053:1363058 -) -(4607,572:20753781,28155611:11829248,530548,102891 -h4607,571:20753781,28155611:0,0,0 -r4607,597:20753781,28155611:0,633439,102891 -g4607,571:22064501,28155611 -g4607,571:22064501,28155611 -g4607,571:27001767,28155611 -k4607,572:30390087,28155611:2192943 -k4607,572:32583029,28155611:2192942 -) -(4607,573:20753781,29033169:11829248,530548,102891 -h4607,572:20753781,29033169:0,0,0 -r4607,597:20753781,29033169:0,633439,102891 -g4607,572:22064501,29033169 -g4607,572:22064501,29033169 -g4607,572:27416709,29033169 -k4607,573:30597558,29033169:1985472 -k4607,573:32583029,29033169:1985471 -) -(4607,574:20753781,29910727:11829248,530548,102891 -h4607,573:20753781,29910727:0,0,0 -r4607,597:20753781,29910727:0,633439,102891 -g4607,573:22064501,29910727 -g4607,573:22064501,29910727 -g4607,573:25756939,29910727 -g4607,573:28848272,29910727 -g4607,573:30416548,29910727 -k4607,574:32097477,29910727:485552 -k4607,574:32583029,29910727:485552 -) -(4607,575:20753781,30788285:11829248,530548,132808 -h4607,574:20753781,30788285:0,0,0 -r4607,597:20753781,30788285:0,663356,132808 -g4607,574:22064501,30788285 -g4607,574:22064501,30788285 -g4607,574:25756939,30788285 -k4607,575:29767673,30788285:2815357 -k4607,575:32583029,30788285:2815356 -) -(4607,576:20753781,31665843:11829248,530548,102891 -h4607,575:20753781,31665843:0,0,0 -r4607,597:20753781,31665843:0,633439,102891 -g4607,575:22064501,31665843 -g4607,575:22064501,31665843 -g4607,575:26171882,31665843 -k4607,576:29775915,31665843:2807115 -k4607,576:32583029,31665843:2807114 -) -(4607,577:20753781,32543400:11829248,530548,132808 -h4607,576:20753781,32543400:0,0,0 -r4607,597:20753781,32543400:0,663356,132808 -g4607,576:22064501,32543400 -g4607,576:22064501,32543400 -g4607,576:26171882,32543400 -g4607,576:27341699,32543400 -k4607,577:30560053,32543400:2022977 -k4607,577:32583029,32543400:2022976 -) -(4607,578:20753781,33420958:11829248,530548,102891 -h4607,577:20753781,33420958:0,0,0 -r4607,597:20753781,33420958:0,633439,102891 -g4607,577:22064501,33420958 -g4607,577:22064501,33420958 -g4607,577:27001767,33420958 -k4607,578:30390087,33420958:2192943 -k4607,578:32583029,33420958:2192942 -) -(4607,579:20753781,34298516:11829248,530548,102891 -h4607,578:20753781,34298516:0,0,0 -r4607,597:20753781,34298516:0,633439,102891 -g4607,578:22064501,34298516 -g4607,578:22064501,34298516 -g4607,578:25756939,34298516 -k4607,579:29558613,34298516:3024417 -k4607,579:32583029,34298516:3024416 -) -(4607,580:20753781,35176074:11829248,530548,102891 -h4607,579:20753781,35176074:0,0,0 -r4607,597:20753781,35176074:0,633439,102891 -g4607,579:22064501,35176074 -g4607,579:22064501,35176074 -g4607,579:25341997,35176074 -g4607,579:26511814,35176074 -g4607,579:27681631,35176074 -k4607,580:30730019,35176074:1853011 -k4607,580:32583029,35176074:1853010 -) -(4607,581:20753781,36053632:11829248,530548,102891 -h4607,580:20753781,36053632:0,0,0 -r4607,597:20753781,36053632:0,633439,102891 -g4607,580:22064501,36053632 -g4607,580:22064501,36053632 -g4607,580:24097170,36053632 -k4607,581:28937788,36053632:3645241 -k4607,581:32583029,36053632:3645241 -) -(4607,582:20753781,36931190:11829248,530548,132808 -h4607,581:20753781,36931190:0,0,0 -r4607,597:20753781,36931190:0,663356,132808 -g4607,581:22064501,36931190 -g4607,581:22064501,36931190 -g4607,581:27416709,36931190 -k4607,582:30597558,36931190:1985472 -k4607,582:32583029,36931190:1985471 -) -(4607,583:20753781,37808748:11829248,530548,141066 -h4607,582:20753781,37808748:0,0,0 -r4607,597:20753781,37808748:0,671614,141066 -g4607,582:22064501,37808748 -g4607,582:22064501,37808748 -g4607,582:26171882,37808748 -g4607,582:27740158,37808748 -k4607,583:30749452,37808748:1833578 -k4607,583:32583029,37808748:1833577 -) -(4607,584:20753781,38686306:11829248,530548,132808 -h4607,583:20753781,38686306:0,0,0 -r4607,597:20753781,38686306:0,663356,132808 -g4607,583:22064501,38686306 -g4607,583:22064501,38686306 -g4607,583:25756939,38686306 -k4607,584:29558613,38686306:3024417 -k4607,584:32583029,38686306:3024416 -) -(4607,585:20753781,39563864:11829248,530548,102891 -h4607,584:20753781,39563864:0,0,0 -r4607,597:20753781,39563864:0,633439,102891 -g4607,584:22064501,39563864 -g4607,584:22064501,39563864 -g4607,584:25756939,39563864 -k4607,585:29767673,39563864:2815357 -k4607,585:32583029,39563864:2815356 -) -(4607,586:20753781,40441422:11829248,530548,102891 -h4607,585:20753781,40441422:0,0,0 -r4607,597:20753781,40441422:0,633439,102891 -g4607,585:22064501,40441422 -g4607,585:22064501,40441422 -g4607,585:25756939,40441422 -g4607,585:26926756,40441422 -k4607,586:30153352,40441422:2429678 -k4607,586:32583029,40441422:2429677 -) -(4607,587:20753781,41318980:11829248,530548,102891 -h4607,586:20753781,41318980:0,0,0 -r4607,597:20753781,41318980:0,633439,102891 -g4607,586:22064501,41318980 -g4607,586:22064501,41318980 -g4607,586:25756939,41318980 -g4607,586:26926756,41318980 -k4607,587:30342751,41318980:2240279 -k4607,587:32583029,41318980:2240278 -) -(4607,588:20753781,42196537:11829248,530548,102891 -h4607,587:20753781,42196537:0,0,0 -r4607,597:20753781,42196537:0,633439,102891 -g4607,587:22064501,42196537 -g4607,587:22064501,42196537 -g4607,587:25756939,42196537 -k4607,588:29767673,42196537:2815357 -k4607,588:32583029,42196537:2815356 -) -(4607,589:20753781,43074095:11829248,530548,132808 -h4607,588:20753781,43074095:0,0,0 -r4607,597:20753781,43074095:0,663356,132808 -g4607,588:22064501,43074095 -g4607,588:22064501,43074095 -g4607,588:26171882,43074095 -k4607,589:29975144,43074095:2607885 -k4607,589:32583029,43074095:2607885 -) -(4607,590:20753781,43951653:11829248,530548,132808 -h4607,589:20753781,43951653:0,0,0 -r4607,597:20753781,43951653:0,663356,132808 -g4607,589:22064501,43951653 -g4607,589:22064501,43951653 -g4607,589:25756939,43951653 -g4607,589:27325215,43951653 -g4607,589:28893491,43951653 -g4607,589:30461767,43951653 -k4607,590:32110256,43951653:472773 -k4607,590:32583029,43951653:472773 -) -(4607,591:20753781,44829211:11829248,530548,141066 -h4607,590:20753781,44829211:0,0,0 -r4607,597:20753781,44829211:0,671614,141066 -g4607,590:22064501,44829211 -g4607,590:22064501,44829211 -g4607,590:29491421,44829211 -k4607,591:31634914,44829211:948116 -k4607,591:32583029,44829211:948115 -) -(4607,592:20753781,45706769:11829248,530548,102891 -h4607,591:20753781,45706769:0,0,0 -r4607,597:20753781,45706769:0,633439,102891 -g4607,591:22064501,45706769 -g4607,591:22064501,45706769 -g4607,591:24512112,45706769 -g4607,591:26080388,45706769 -g4607,591:27648664,45706769 -k4607,592:30713535,45706769:1869494 -k4607,592:32583029,45706769:1869494 -) -] -(4607,597:32583029,45706769:0,355205,126483 -h4607,597:32583029,45706769:420741,355205,126483 -k4607,597:32583029,45706769:-420741 -) -) -] -(4607,597:32583029,45706769:0,0,0 -g4607,597:32583029,45706769 -) -) -] -(4607,597:6630773,47279633:25952256,0,0 -h4607,597:6630773,47279633:25952256,0,0 -) -] -(4607,597:4262630,4025873:0,0,0 -[4607,597:-473656,4025873:0,0,0 -(4607,597:-473656,-710413:0,0,0 -(4607,597:-473656,-710413:0,0,0 -g4607,597:-473656,-710413 -) -g4607,597:-473656,-710413 +[4611,596:3078558,4812305:0,0,0 +(4611,596:3078558,49800853:0,16384,2228224 +g4611,596:29030814,49800853 +g4611,596:36135244,49800853 +(4611,1:36135244,49800853:1720320,16384,2228224 +(4611,1:36135244,52029077:16384,1703936,0 +[4611,1:36135244,52029077:25952256,1703936,0 +(4611,1:36135244,51504789:25952256,1179648,0 +(4611,1:36135244,51504789:16384,1179648,0 +r4611,596:36151628,51504789:16384,1179648,0 +) +k4611,1:62087500,51504789:25935872 +g4611,1:62087500,51504789 +) +] +) +g4611,1:36675916,49800853 +(4611,1:36675916,49800853:1179648,16384,0 +r4611,596:37855564,49800853:1179648,16384,0 +) +) +k4611,596:3078556,49800853:-34777008 +) +] +g4611,596:6630773,4812305 +g4611,596:6630773,4812305 +g4611,596:8528695,4812305 +g4611,596:9343962,4812305 +g4611,596:9957379,4812305 +g4611,596:12300946,4812305 +g4611,596:13256460,4812305 +g4611,596:16329443,4812305 +k4611,596:31387652,4812305:15058209 +) +) +] +[4611,596:6630773,45706769:25952256,40108032,0 +(4611,596:6630773,45706769:25952256,40108032,0 +(4611,596:6630773,45706769:0,0,0 +g4611,596:6630773,45706769 +) +[4611,596:6630773,45706769:25952256,40108032,0 +(4611,596:6630773,45706769:25952256,40108032,126483 +[4611,596:6630773,45706769:11829248,40108032,102891 +(4611,505:6630773,6254097:11829248,530548,132808 +h4611,504:6630773,6254097:0,0,0 +r4611,596:6630773,6254097:0,663356,132808 +g4611,504:7941493,6254097 +g4611,504:7941493,6254097 +g4611,504:14538528,6254097 +k4611,505:17087133,6254097:1372889 +k4611,505:18460021,6254097:1372888 +) +(4611,506:6630773,7153906:11829248,530548,102891 +h4611,505:6630773,7153906:0,0,0 +r4611,596:6630773,7153906:0,633439,102891 +g4611,505:7941493,7153906 +g4611,505:7941493,7153906 +g4611,505:11218989,7153906 +k4611,506:15237964,7153906:3222057 +k4611,506:18460021,7153906:3222057 +) +(4611,507:6630773,8053715:11829248,530548,102891 +h4611,506:6630773,8053715:0,0,0 +r4611,596:6630773,8053715:0,633439,102891 +g4611,506:7941493,8053715 +g4611,506:7941493,8053715 +g4611,506:10804046,8053715 +g4611,506:11973863,8053715 +g4611,506:13143680,8053715 +g4611,506:14313497,8053715 +g4611,506:15881773,8053715 +k4611,507:17768586,8053715:691436 +k4611,507:18460021,8053715:691435 +) +(4611,508:6630773,8953523:11829248,530548,102891 +h4611,507:6630773,8953523:0,0,0 +r4611,596:6630773,8953523:0,633439,102891 +g4611,507:7941493,8953523 +g4611,507:7941493,8953523 +g4611,507:11633931,8953523 +k4611,508:15634834,8953523:2825187 +k4611,508:18460021,8953523:2825187 +) +(4611,509:6630773,9853332:11829248,530548,132808 +h4611,508:6630773,9853332:0,0,0 +r4611,596:6630773,9853332:0,663356,132808 +g4611,508:7941493,9853332 +g4611,508:7941493,9853332 +g4611,508:11633931,9853332 +k4611,509:15634834,9853332:2825187 +k4611,509:18460021,9853332:2825187 +) +(4611,510:6630773,10753141:11829248,530548,132808 +h4611,509:6630773,10753141:0,0,0 +r4611,596:6630773,10753141:0,663356,132808 +g4611,509:7941493,10753141 +g4611,509:7941493,10753141 +g4611,509:11218989,10753141 +g4611,509:12787265,10753141 +k4611,510:16221332,10753141:2238690 +k4611,510:18460021,10753141:2238689 +) +(4611,511:6630773,11652950:11829248,530548,132808 +h4611,510:6630773,11652950:0,0,0 +r4611,596:6630773,11652950:0,663356,132808 +g4611,510:7941493,11652950 +g4611,510:7941493,11652950 +g4611,510:11633931,11652950 +k4611,511:15644665,11652950:2815357 +k4611,511:18460021,11652950:2815356 +) +(4611,512:6630773,12552759:11829248,538806,132808 +h4611,511:6630773,12552759:0,0,0 +r4611,596:6630773,12552759:0,671614,132808 +g4611,511:7941493,12552759 +g4611,511:7941493,12552759 +g4611,511:12048874,12552759 +g4611,511:13218691,12552759 +g4611,511:14388508,12552759 +g4611,511:15956784,12552759 +k4611,512:17806091,12552759:653930 +k4611,512:18460021,12552759:653930 +) +(4611,513:6630773,13452567:11829248,530548,132808 +h4611,512:6630773,13452567:0,0,0 +r4611,596:6630773,13452567:0,663356,132808 +g4611,512:7941493,13452567 +g4611,512:7941493,13452567 +g4611,512:10804046,13452567 +k4611,513:15030493,13452567:3429529 +k4611,513:18460021,13452567:3429528 +) +(4611,514:6630773,14352376:11829248,530548,102891 +h4611,513:6630773,14352376:0,0,0 +r4611,596:6630773,14352376:0,633439,102891 +g4611,513:7941493,14352376 +g4611,513:7941493,14352376 +g4611,513:12463816,14352376 +g4611,513:14032092,14352376 +k4611,514:16843745,14352376:1616276 +k4611,514:18460021,14352376:1616276 +) +(4611,515:6630773,15252185:11829248,530548,141066 +h4611,514:6630773,15252185:0,0,0 +r4611,596:6630773,15252185:0,671614,141066 +g4611,514:7941493,15252185 +g4611,514:7941493,15252185 +g4611,514:11218989,15252185 +g4611,514:12787265,15252185 +k4611,515:16221332,15252185:2238690 +k4611,515:18460021,15252185:2238689 +) +(4611,516:6630773,16151994:11829248,530548,102891 +h4611,515:6630773,16151994:0,0,0 +r4611,596:6630773,16151994:0,633439,102891 +g4611,515:7941493,16151994 +g4611,515:7941493,16151994 +g4611,515:13708644,16151994 +k4611,516:16672191,16151994:1787831 +k4611,516:18460021,16151994:1787830 +) +(4611,517:6630773,17051803:11829248,530548,102891 +h4611,516:6630773,17051803:0,0,0 +r4611,596:6630773,17051803:0,633439,102891 +g4611,516:7941493,17051803 +g4611,516:7941493,17051803 +g4611,516:10804046,17051803 +k4611,517:15229722,17051803:3230299 +k4611,517:18460021,17051803:3230299 +) +(4611,518:6630773,17951611:11829248,530548,102891 +h4611,517:6630773,17951611:0,0,0 +r4611,596:6630773,17951611:0,633439,102891 +g4611,517:7941493,17951611 +g4611,517:7941493,17951611 +g4611,517:12463816,17951611 +g4611,517:15555149,17951611 +g4611,517:17123425,17951611 +k4611,518:18389412,17951611:70610 +k4611,518:18460021,17951611:70609 +) +(4611,519:6630773,18851420:11829248,530548,102891 +h4611,518:6630773,18851420:0,0,0 +r4611,596:6630773,18851420:0,633439,102891 +g4611,518:7941493,18851420 +g4611,518:7941493,18851420 +g4611,518:13293701,18851420 +k4611,519:16474550,18851420:1985472 +k4611,519:18460021,18851420:1985471 +) +(4611,520:6630773,19751229:11829248,530548,102891 +h4611,519:6630773,19751229:0,0,0 +r4611,596:6630773,19751229:0,633439,102891 +g4611,519:7941493,19751229 +g4611,519:7941493,19751229 +g4611,519:14123586,19751229 +k4611,520:16889492,19751229:1570529 +k4611,520:18460021,19751229:1570529 +) +(4611,521:6630773,20651038:11829248,530548,132808 +h4611,520:6630773,20651038:0,0,0 +r4611,596:6630773,20651038:0,663356,132808 +g4611,520:7941493,20651038 +g4611,520:7941493,20651038 +g4611,520:14123586,20651038 +g4611,520:15691862,20651038 +k4611,521:17663800,20651038:796222 +k4611,521:18460021,20651038:796221 +) +(4611,522:6630773,21550847:11829248,530548,102891 +h4611,521:6630773,21550847:0,0,0 +r4611,596:6630773,21550847:0,633439,102891 +g4611,521:7941493,21550847 +g4611,521:7941493,21550847 +g4611,521:13293701,21550847 +g4611,521:14861977,21550847 +g4611,521:16430253,21550847 +k4611,522:18042826,21550847:417196 +k4611,522:18460021,21550847:417195 +) +(4611,523:6630773,22450655:11829248,530548,132808 +h4611,522:6630773,22450655:0,0,0 +r4611,596:6630773,22450655:0,663356,132808 +g4611,522:7941493,22450655 +g4611,522:7941493,22450655 +g4611,522:14123586,22450655 +k4611,523:16879662,22450655:1580360 +k4611,523:18460021,22450655:1580359 +) +(4611,524:6630773,23350464:11829248,530548,132808 +h4611,523:6630773,23350464:0,0,0 +r4611,596:6630773,23350464:0,663356,132808 +g4611,523:7941493,23350464 +g4611,523:7941493,23350464 +g4611,523:15368413,23350464 +k4611,524:17502075,23350464:957946 +k4611,524:18460021,23350464:957946 +) +(4611,525:6630773,24250273:11829248,538806,102891 +h4611,524:6630773,24250273:0,0,0 +r4611,596:6630773,24250273:0,641697,102891 +g4611,524:7941493,24250273 +g4611,524:7941493,24250273 +g4611,524:16613240,24250273 +k4611,525:18134319,24250273:325702 +k4611,525:18460021,24250273:325702 +) +(4611,526:6630773,25150082:11829248,538806,102891 +h4611,525:6630773,25150082:0,0,0 +r4611,596:6630773,25150082:0,641697,102891 +g4611,525:7941493,25150082 +g4611,525:7941493,25150082 +g4611,525:14538528,25150082 +k4611,526:17096963,25150082:1363058 +k4611,526:18460021,25150082:1363058 +) +(4611,527:6630773,26049891:11829248,530548,141066 +h4611,526:6630773,26049891:0,0,0 +r4611,596:6630773,26049891:0,671614,141066 +g4611,526:7941493,26049891 +g4611,526:7941493,26049891 +g4611,526:14953471,26049891 +k4611,527:17294604,26049891:1165417 +k4611,527:18460021,26049891:1165417 +) +(4611,528:6630773,26949699:11829248,530548,132808 +h4611,527:6630773,26949699:0,0,0 +r4611,596:6630773,26949699:0,663356,132808 +g4611,527:7941493,26949699 +g4611,527:7941493,26949699 +g4611,527:14538528,26949699 +g4611,527:16106804,26949699 +k4611,527:18460021,26949699:1070678 +) +(4611,528:9252213,27814779:9207808,485622,102891 +g4611,527:10820489,27814779 +k4611,528:15237944,27814779:3222078 +k4611,528:18460021,27814779:3222077 +) +(4611,529:6630773,28714588:11829248,530548,132808 +h4611,528:6630773,28714588:0,0,0 +r4611,596:6630773,28714588:0,663356,132808 +g4611,528:7941493,28714588 +g4611,528:7941493,28714588 +g4611,528:14953471,28714588 +k4611,529:17294604,28714588:1165417 +k4611,529:18460021,28714588:1165417 +) +(4611,530:6630773,29614397:11829248,530548,132808 +h4611,529:6630773,29614397:0,0,0 +r4611,596:6630773,29614397:0,663356,132808 +g4611,529:7941493,29614397 +g4611,529:7941493,29614397 +g4611,529:14953471,29614397 +g4611,529:16521747,29614397 +k4611,530:18078742,29614397:381279 +k4611,530:18460021,29614397:381279 +) +(4611,531:6630773,30514206:11829248,538806,102891 +h4611,530:6630773,30514206:0,0,0 +r4611,596:6630773,30514206:0,641697,102891 +g4611,530:7941493,30514206 +g4611,530:7941493,30514206 +g4611,530:12048874,30514206 +k4611,531:15852136,30514206:2607885 +k4611,531:18460021,30514206:2607885 +) +(4611,532:6630773,31414015:11829248,538806,102891 +h4611,531:6630773,31414015:0,0,0 +r4611,596:6630773,31414015:0,641697,102891 +g4611,531:7941493,31414015 +g4611,531:7941493,31414015 +g4611,531:17028182,31414015 +k4611,532:18341790,31414015:118231 +k4611,532:18460021,31414015:118231 +) +(4611,533:6630773,32313823:11829248,530548,102891 +h4611,532:6630773,32313823:0,0,0 +r4611,596:6630773,32313823:0,633439,102891 +g4611,532:7941493,32313823 +g4611,532:7941493,32313823 +g4611,532:13708644,32313823 +g4611,532:15276920,32313823 +g4611,532:16845196,32313823 +k4611,532:18460021,32313823:332286 +) +(4611,533:9252213,33178903:9207808,485622,102891 +g4611,532:10820489,33178903 +g4611,532:12388765,33178903 +k4611,533:16022082,33178903:2437940 +k4611,533:18460021,33178903:2437939 +) +(4611,534:6630773,34078712:11829248,530548,132808 +h4611,533:6630773,34078712:0,0,0 +r4611,596:6630773,34078712:0,663356,132808 +g4611,533:7941493,34078712 +g4611,533:7941493,34078712 +g4611,533:14123586,34078712 +k4611,533:18460021,34078712:3053896 +) +(4611,534:9252213,34943792:9207808,485622,102891 +g4611,533:12343546,34943792 +k4611,534:15989642,34943792:2470380 +k4611,534:18460021,34943792:2470379 +) +(4611,535:6630773,35843601:11829248,530548,132808 +h4611,534:6630773,35843601:0,0,0 +r4611,596:6630773,35843601:0,663356,132808 +g4611,534:7941493,35843601 +g4611,534:7941493,35843601 +g4611,534:10804046,35843601 +g4611,534:12372322,35843601 +g4611,534:13940598,35843601 +k4611,535:16788168,35843601:1671854 +k4611,535:18460021,35843601:1671853 +) +(4611,536:6630773,36743410:11829248,530548,102891 +h4611,535:6630773,36743410:0,0,0 +r4611,596:6630773,36743410:0,633439,102891 +g4611,535:7941493,36743410 +g4611,535:7941493,36743410 +g4611,535:10389104,36743410 +g4611,535:11957380,36743410 +k4611,536:15796559,36743410:2663463 +k4611,536:18460021,36743410:2663462 +) +(4611,538:6630773,37643219:11829248,530548,102891 +h4611,536:6630773,37643219:0,0,0 +r4611,596:6630773,37643219:0,633439,102891 +g4611,536:7941493,37643219 +g4611,536:7941493,37643219 +g4611,536:10389104,37643219 +g4611,536:12683519,37643219 +g4611,536:14251795,37643219 +g4611,536:15820071,37643219 +k4611,536:18460021,37643219:1357411 +) +(4611,538:9252213,38508299:9207808,485622,102891 +g4611,536:10800828,38508299 +g4611,536:12369104,38508299 +g4611,536:13937380,38508299 +g4611,537:15505656,38508299 +k4611,538:17570697,38508299:889325 +k4611,538:18460021,38508299:889324 +) +(4611,539:6630773,39408107:11829248,530548,102891 +h4611,538:6630773,39408107:0,0,0 +r4611,596:6630773,39408107:0,633439,102891 +g4611,538:7941493,39408107 +g4611,538:7941493,39408107 +g4611,538:13708644,39408107 +k4611,539:16682021,39408107:1778000 +k4611,539:18460021,39408107:1778000 +) +(4611,540:6630773,40307916:11829248,538806,102891 +h4611,539:6630773,40307916:0,0,0 +r4611,596:6630773,40307916:0,641697,102891 +g4611,539:7941493,40307916 +g4611,539:7941493,40307916 +g4611,539:12463816,40307916 +k4611,540:16059607,40307916:2400414 +k4611,540:18460021,40307916:2400414 +) +(4611,541:6630773,41207725:11829248,530548,132808 +h4611,540:6630773,41207725:0,0,0 +r4611,596:6630773,41207725:0,663356,132808 +g4611,540:7941493,41207725 +g4611,540:7941493,41207725 +g4611,540:12463816,41207725 +k4611,541:16059607,41207725:2400414 +k4611,541:18460021,41207725:2400414 +) +(4611,542:6630773,42107534:11829248,530548,132808 +h4611,541:6630773,42107534:0,0,0 +r4611,596:6630773,42107534:0,663356,132808 +g4611,541:7941493,42107534 +g4611,541:7941493,42107534 +g4611,541:11633931,42107534 +k4611,542:15435605,42107534:3024417 +k4611,542:18460021,42107534:3024416 +) +(4611,543:6630773,43007343:11829248,530548,132808 +h4611,542:6630773,43007343:0,0,0 +r4611,596:6630773,43007343:0,663356,132808 +g4611,542:7941493,43007343 +g4611,542:7941493,43007343 +g4611,542:12463816,43007343 +k4611,543:15860378,43007343:2599644 +k4611,543:18460021,43007343:2599643 +) +(4611,544:6630773,43907151:11829248,530548,102891 +h4611,543:6630773,43907151:0,0,0 +r4611,596:6630773,43907151:0,633439,102891 +g4611,543:7941493,43907151 +g4611,543:7941493,43907151 +g4611,543:12048874,43907151 +k4611,544:15652907,43907151:2807115 +k4611,544:18460021,43907151:2807114 +) +(4611,545:6630773,44806960:11829248,530548,132808 +h4611,544:6630773,44806960:0,0,0 +r4611,596:6630773,44806960:0,663356,132808 +g4611,544:7941493,44806960 +g4611,544:7941493,44806960 +g4611,544:12048874,44806960 +k4611,545:15652907,44806960:2807115 +k4611,545:18460021,44806960:2807114 +) +(4611,546:6630773,45706769:11829248,530548,102891 +h4611,545:6630773,45706769:0,0,0 +r4611,596:6630773,45706769:0,633439,102891 +g4611,545:7941493,45706769 +g4611,545:7941493,45706769 +g4611,545:10389104,45706769 +g4611,545:11558921,45706769 +k4611,546:15407930,45706769:3052091 +k4611,546:18460021,45706769:3052091 +) +] +k4611,596:19606901,45706769:1146880 +r4611,596:19606901,45706769:0,40234515,126483 +k4611,596:20753781,45706769:1146880 +[4611,596:20753781,45706769:11829248,40108032,102891 +(4611,548:20753781,6254097:11829248,530548,102891 +h4611,546:20753781,6254097:0,0,0 +r4611,596:20753781,6254097:0,633439,102891 +g4611,546:22064501,6254097 +g4611,546:22064501,6254097 +g4611,546:25756939,6254097 +g4611,546:28848272,6254097 +g4611,546:30416548,6254097 +k4611,546:32583029,6254097:883942 +) +(4611,548:23375221,7119177:9207808,485622,102891 +g4611,546:24943497,7119177 +g4611,546:26511773,7119177 +g4611,546:28080049,7119177 +g4611,547:29648325,7119177 +k4611,548:31713366,7119177:869664 +k4611,548:32583029,7119177:869663 +) +(4611,549:20753781,7996735:11829248,530548,102891 +h4611,548:20753781,7996735:0,0,0 +r4611,596:20753781,7996735:0,633439,102891 +g4611,548:22064501,7996735 +g4611,548:22064501,7996735 +g4611,548:27416709,7996735 +k4611,549:30597558,7996735:1985472 +k4611,549:32583029,7996735:1985471 +) +(4611,550:20753781,8874293:11829248,530548,102891 +h4611,549:20753781,8874293:0,0,0 +r4611,596:20753781,8874293:0,633439,102891 +g4611,549:22064501,8874293 +g4611,549:22064501,8874293 +g4611,549:25756939,8874293 +k4611,550:29568443,8874293:3014586 +k4611,550:32583029,8874293:3014586 +) +(4611,551:20753781,9751851:11829248,530548,141066 +h4611,550:20753781,9751851:0,0,0 +r4611,596:20753781,9751851:0,671614,141066 +g4611,550:22064501,9751851 +g4611,550:22064501,9751851 +g4611,550:27001767,9751851 +k4611,551:30190857,9751851:2392172 +k4611,551:32583029,9751851:2392172 +) +(4611,552:20753781,10629409:11829248,530548,102891 +h4611,551:20753781,10629409:0,0,0 +r4611,596:20753781,10629409:0,633439,102891 +g4611,551:22064501,10629409 +g4611,551:22064501,10629409 +g4611,551:24512112,10629409 +g4611,551:25681929,10629409 +g4611,551:27250205,10629409 +g4611,551:28818481,10629409 +k4611,552:31298444,10629409:1284586 +k4611,552:32583029,10629409:1284585 +) +(4611,553:20753781,11506967:11829248,530548,102891 +h4611,552:20753781,11506967:0,0,0 +r4611,596:20753781,11506967:0,633439,102891 +g4611,552:22064501,11506967 +g4611,552:22064501,11506967 +g4611,552:27001767,11506967 +g4611,552:28570043,11506967 +k4611,553:31174225,11506967:1408805 +k4611,553:32583029,11506967:1408804 +) +(4611,555:20753781,12384524:11829248,530548,132808 +h4611,553:20753781,12384524:0,0,0 +r4611,596:20753781,12384524:0,663356,132808 +g4611,553:22064501,12384524 +g4611,553:22064501,12384524 +g4611,553:26171882,12384524 +g4611,553:27740158,12384524 +g4611,553:29308434,12384524 +g4611,553:30876710,12384524 +k4611,553:32583029,12384524:423780 +) +(4611,555:23375221,13249604:9207808,485622,102891 +g4611,553:24943497,13249604 +g4611,553:26511773,13249604 +g4611,553:28080049,13249604 +g4611,554:29648325,13249604 +g4611,554:31216601,13249604 +k4611,554:32583029,13249604:83889 +) +(4611,555:23375221,14114684:9207808,485622,11795 +k4611,555:28566983,14114684:4016046 +k4611,555:32583029,14114684:4016046 +) +(4611,556:20753781,14992242:11829248,530548,132808 +h4611,555:20753781,14992242:0,0,0 +r4611,596:20753781,14992242:0,663356,132808 +g4611,555:22064501,14992242 +g4611,555:22064501,14992242 +g4611,555:25756939,14992242 +k4611,556:29767673,14992242:2815357 +k4611,556:32583029,14992242:2815356 +) +(4611,557:20753781,15869800:11829248,530548,132808 +h4611,556:20753781,15869800:0,0,0 +r4611,596:20753781,15869800:0,663356,132808 +g4611,556:22064501,15869800 +g4611,556:22064501,15869800 +g4611,556:27831652,15869800 +k4611,557:30805029,15869800:1778000 +k4611,557:32583029,15869800:1778000 +) +(4611,558:20753781,16747358:11829248,530548,102891 +h4611,557:20753781,16747358:0,0,0 +r4611,596:20753781,16747358:0,633439,102891 +g4611,557:22064501,16747358 +g4611,557:22064501,16747358 +g4611,557:23682227,16747358 +k4611,558:28521257,16747358:4061773 +k4611,558:32583029,16747358:4061772 +) +(4611,559:20753781,17624916:11829248,530548,102891 +h4611,558:20753781,17624916:0,0,0 +r4611,596:20753781,17624916:0,633439,102891 +g4611,558:22064501,17624916 +g4611,558:22064501,17624916 +g4611,558:25756939,17624916 +k4611,559:29767673,17624916:2815357 +k4611,559:32583029,17624916:2815356 +) +(4611,560:20753781,18502474:11829248,530548,102891 +h4611,559:20753781,18502474:0,0,0 +r4611,596:20753781,18502474:0,633439,102891 +g4611,559:22064501,18502474 +g4611,559:22064501,18502474 +g4611,559:25341997,18502474 +g4611,559:26910273,18502474 +k4611,560:30344340,18502474:2238690 +k4611,560:32583029,18502474:2238689 +) +(4611,561:20753781,19380032:11829248,530548,102891 +h4611,560:20753781,19380032:0,0,0 +r4611,596:20753781,19380032:0,633439,102891 +g4611,560:22064501,19380032 +g4611,560:22064501,19380032 +g4611,560:24927054,19380032 +k4611,561:29352730,19380032:3230299 +k4611,561:32583029,19380032:3230299 +) +(4611,562:20753781,20257590:11829248,530548,102891 +h4611,561:20753781,20257590:0,0,0 +r4611,596:20753781,20257590:0,633439,102891 +g4611,561:22064501,20257590 +g4611,561:22064501,20257590 +g4611,561:25341997,20257590 +g4611,561:26910273,20257590 +k4611,562:30344340,20257590:2238690 +k4611,562:32583029,20257590:2238689 +) +(4611,563:20753781,21135148:11829248,530548,102891 +h4611,562:20753781,21135148:0,0,0 +r4611,596:20753781,21135148:0,633439,102891 +g4611,562:22064501,21135148 +g4611,562:22064501,21135148 +g4611,562:26586824,21135148 +g4611,562:28155100,21135148 +k4611,563:30966753,21135148:1616276 +k4611,563:32583029,21135148:1616276 +) +(4611,564:20753781,22012706:11829248,530548,102891 +h4611,563:20753781,22012706:0,0,0 +r4611,596:20753781,22012706:0,633439,102891 +g4611,563:22064501,22012706 +g4611,563:22064501,22012706 +g4611,563:28661536,22012706 +g4611,563:30229812,22012706 +k4611,564:32004109,22012706:578920 +k4611,564:32583029,22012706:578920 +) +(4611,565:20753781,22890263:11829248,530548,102891 +h4611,564:20753781,22890263:0,0,0 +r4611,596:20753781,22890263:0,633439,102891 +g4611,564:22064501,22890263 +g4611,564:22064501,22890263 +g4611,564:27416709,22890263 +k4611,565:30597558,22890263:1985472 +k4611,565:32583029,22890263:1985471 +) +(4611,566:20753781,23767821:11829248,530548,141066 +h4611,565:20753781,23767821:0,0,0 +r4611,596:20753781,23767821:0,671614,141066 +g4611,565:22064501,23767821 +g4611,565:22064501,23767821 +g4611,565:27416709,23767821 +g4611,565:28984985,23767821 +g4611,565:30553261,23767821 +k4611,566:32165834,23767821:417196 +k4611,566:32583029,23767821:417195 +) +(4611,567:20753781,24645379:11829248,530548,141066 +h4611,566:20753781,24645379:0,0,0 +r4611,596:20753781,24645379:0,671614,141066 +g4611,566:22064501,24645379 +g4611,566:22064501,24645379 +g4611,566:27416709,24645379 +k4611,567:30597558,24645379:1985472 +k4611,567:32583029,24645379:1985471 +) +(4611,568:20753781,25522937:11829248,530548,141066 +h4611,567:20753781,25522937:0,0,0 +r4611,596:20753781,25522937:0,671614,141066 +g4611,567:22064501,25522937 +g4611,567:22064501,25522937 +g4611,567:27831652,25522937 +k4611,568:30805029,25522937:1778000 +k4611,568:32583029,25522937:1778000 +) +(4611,569:20753781,26400495:11829248,530548,102891 +h4611,568:20753781,26400495:0,0,0 +r4611,596:20753781,26400495:0,633439,102891 +g4611,568:22064501,26400495 +g4611,568:22064501,26400495 +g4611,568:29076479,26400495 +k4611,569:31427443,26400495:1155587 +k4611,569:32583029,26400495:1155586 +) +(4611,570:20753781,27278053:11829248,530548,102891 +h4611,569:20753781,27278053:0,0,0 +r4611,596:20753781,27278053:0,633439,102891 +g4611,569:22064501,27278053 +g4611,569:22064501,27278053 +g4611,569:28661536,27278053 +k4611,570:31219971,27278053:1363058 +k4611,570:32583029,27278053:1363058 +) +(4611,571:20753781,28155611:11829248,530548,102891 +h4611,570:20753781,28155611:0,0,0 +r4611,596:20753781,28155611:0,633439,102891 +g4611,570:22064501,28155611 +g4611,570:22064501,28155611 +g4611,570:27001767,28155611 +k4611,571:30390087,28155611:2192943 +k4611,571:32583029,28155611:2192942 +) +(4611,572:20753781,29033169:11829248,530548,102891 +h4611,571:20753781,29033169:0,0,0 +r4611,596:20753781,29033169:0,633439,102891 +g4611,571:22064501,29033169 +g4611,571:22064501,29033169 +g4611,571:27416709,29033169 +k4611,572:30597558,29033169:1985472 +k4611,572:32583029,29033169:1985471 +) +(4611,573:20753781,29910727:11829248,530548,102891 +h4611,572:20753781,29910727:0,0,0 +r4611,596:20753781,29910727:0,633439,102891 +g4611,572:22064501,29910727 +g4611,572:22064501,29910727 +g4611,572:25756939,29910727 +g4611,572:28848272,29910727 +g4611,572:30416548,29910727 +k4611,573:32097477,29910727:485552 +k4611,573:32583029,29910727:485552 +) +(4611,574:20753781,30788285:11829248,530548,132808 +h4611,573:20753781,30788285:0,0,0 +r4611,596:20753781,30788285:0,663356,132808 +g4611,573:22064501,30788285 +g4611,573:22064501,30788285 +g4611,573:25756939,30788285 +k4611,574:29767673,30788285:2815357 +k4611,574:32583029,30788285:2815356 +) +(4611,575:20753781,31665843:11829248,530548,102891 +h4611,574:20753781,31665843:0,0,0 +r4611,596:20753781,31665843:0,633439,102891 +g4611,574:22064501,31665843 +g4611,574:22064501,31665843 +g4611,574:26171882,31665843 +k4611,575:29775915,31665843:2807115 +k4611,575:32583029,31665843:2807114 +) +(4611,576:20753781,32543400:11829248,530548,132808 +h4611,575:20753781,32543400:0,0,0 +r4611,596:20753781,32543400:0,663356,132808 +g4611,575:22064501,32543400 +g4611,575:22064501,32543400 +g4611,575:26171882,32543400 +g4611,575:27341699,32543400 +k4611,576:30560053,32543400:2022977 +k4611,576:32583029,32543400:2022976 +) +(4611,577:20753781,33420958:11829248,530548,102891 +h4611,576:20753781,33420958:0,0,0 +r4611,596:20753781,33420958:0,633439,102891 +g4611,576:22064501,33420958 +g4611,576:22064501,33420958 +g4611,576:27001767,33420958 +k4611,577:30390087,33420958:2192943 +k4611,577:32583029,33420958:2192942 +) +(4611,578:20753781,34298516:11829248,530548,102891 +h4611,577:20753781,34298516:0,0,0 +r4611,596:20753781,34298516:0,633439,102891 +g4611,577:22064501,34298516 +g4611,577:22064501,34298516 +g4611,577:25756939,34298516 +k4611,578:29558613,34298516:3024417 +k4611,578:32583029,34298516:3024416 +) +(4611,579:20753781,35176074:11829248,530548,102891 +h4611,578:20753781,35176074:0,0,0 +r4611,596:20753781,35176074:0,633439,102891 +g4611,578:22064501,35176074 +g4611,578:22064501,35176074 +g4611,578:25341997,35176074 +g4611,578:26511814,35176074 +g4611,578:27681631,35176074 +k4611,579:30730019,35176074:1853011 +k4611,579:32583029,35176074:1853010 +) +(4611,580:20753781,36053632:11829248,530548,102891 +h4611,579:20753781,36053632:0,0,0 +r4611,596:20753781,36053632:0,633439,102891 +g4611,579:22064501,36053632 +g4611,579:22064501,36053632 +g4611,579:24097170,36053632 +k4611,580:28937788,36053632:3645241 +k4611,580:32583029,36053632:3645241 +) +(4611,581:20753781,36931190:11829248,530548,132808 +h4611,580:20753781,36931190:0,0,0 +r4611,596:20753781,36931190:0,663356,132808 +g4611,580:22064501,36931190 +g4611,580:22064501,36931190 +g4611,580:27416709,36931190 +k4611,581:30597558,36931190:1985472 +k4611,581:32583029,36931190:1985471 +) +(4611,582:20753781,37808748:11829248,530548,141066 +h4611,581:20753781,37808748:0,0,0 +r4611,596:20753781,37808748:0,671614,141066 +g4611,581:22064501,37808748 +g4611,581:22064501,37808748 +g4611,581:26171882,37808748 +g4611,581:27740158,37808748 +k4611,582:30749452,37808748:1833578 +k4611,582:32583029,37808748:1833577 +) +(4611,583:20753781,38686306:11829248,530548,132808 +h4611,582:20753781,38686306:0,0,0 +r4611,596:20753781,38686306:0,663356,132808 +g4611,582:22064501,38686306 +g4611,582:22064501,38686306 +g4611,582:25756939,38686306 +k4611,583:29558613,38686306:3024417 +k4611,583:32583029,38686306:3024416 +) +(4611,584:20753781,39563864:11829248,530548,102891 +h4611,583:20753781,39563864:0,0,0 +r4611,596:20753781,39563864:0,633439,102891 +g4611,583:22064501,39563864 +g4611,583:22064501,39563864 +g4611,583:25756939,39563864 +k4611,584:29767673,39563864:2815357 +k4611,584:32583029,39563864:2815356 +) +(4611,585:20753781,40441422:11829248,530548,102891 +h4611,584:20753781,40441422:0,0,0 +r4611,596:20753781,40441422:0,633439,102891 +g4611,584:22064501,40441422 +g4611,584:22064501,40441422 +g4611,584:25756939,40441422 +g4611,584:26926756,40441422 +k4611,585:30153352,40441422:2429678 +k4611,585:32583029,40441422:2429677 +) +(4611,586:20753781,41318980:11829248,530548,102891 +h4611,585:20753781,41318980:0,0,0 +r4611,596:20753781,41318980:0,633439,102891 +g4611,585:22064501,41318980 +g4611,585:22064501,41318980 +g4611,585:25756939,41318980 +g4611,585:26926756,41318980 +k4611,586:30342751,41318980:2240279 +k4611,586:32583029,41318980:2240278 +) +(4611,587:20753781,42196537:11829248,530548,102891 +h4611,586:20753781,42196537:0,0,0 +r4611,596:20753781,42196537:0,633439,102891 +g4611,586:22064501,42196537 +g4611,586:22064501,42196537 +g4611,586:25756939,42196537 +k4611,587:29767673,42196537:2815357 +k4611,587:32583029,42196537:2815356 +) +(4611,588:20753781,43074095:11829248,530548,132808 +h4611,587:20753781,43074095:0,0,0 +r4611,596:20753781,43074095:0,663356,132808 +g4611,587:22064501,43074095 +g4611,587:22064501,43074095 +g4611,587:26171882,43074095 +k4611,588:29975144,43074095:2607885 +k4611,588:32583029,43074095:2607885 +) +(4611,589:20753781,43951653:11829248,530548,132808 +h4611,588:20753781,43951653:0,0,0 +r4611,596:20753781,43951653:0,663356,132808 +g4611,588:22064501,43951653 +g4611,588:22064501,43951653 +g4611,588:25756939,43951653 +g4611,588:27325215,43951653 +g4611,588:28893491,43951653 +g4611,588:30461767,43951653 +k4611,589:32110256,43951653:472773 +k4611,589:32583029,43951653:472773 +) +(4611,590:20753781,44829211:11829248,530548,141066 +h4611,589:20753781,44829211:0,0,0 +r4611,596:20753781,44829211:0,671614,141066 +g4611,589:22064501,44829211 +g4611,589:22064501,44829211 +g4611,589:29491421,44829211 +k4611,590:31634914,44829211:948116 +k4611,590:32583029,44829211:948115 +) +(4611,591:20753781,45706769:11829248,530548,102891 +h4611,590:20753781,45706769:0,0,0 +r4611,596:20753781,45706769:0,633439,102891 +g4611,590:22064501,45706769 +g4611,590:22064501,45706769 +g4611,590:24512112,45706769 +g4611,590:26080388,45706769 +g4611,590:27648664,45706769 +k4611,591:30713535,45706769:1869494 +k4611,591:32583029,45706769:1869494 +) +] +(4611,596:32583029,45706769:0,355205,126483 +h4611,596:32583029,45706769:420741,355205,126483 +k4611,596:32583029,45706769:-420741 +) +) +] +(4611,596:32583029,45706769:0,0,0 +g4611,596:32583029,45706769 +) +) +] +(4611,596:6630773,47279633:25952256,0,0 +h4611,596:6630773,47279633:25952256,0,0 +) +] +(4611,596:4262630,4025873:0,0,0 +[4611,596:-473656,4025873:0,0,0 +(4611,596:-473656,-710413:0,0,0 +(4611,596:-473656,-710413:0,0,0 +g4611,596:-473656,-710413 +) +g4611,596:-473656,-710413 ) ] ) ] !30441 -}460 +}461 !12 -{461 +{462 +[1,25046:4262630,47279633:28320399,43253760,0 +(1,25046:4262630,4025873:0,0,0 +[1,25046:-473656,4025873:0,0,0 +(1,25046:-473656,-710413:0,0,0 +(1,25046:-473656,-644877:0,0,0 +k1,25046:-473656,-644877:-65536 +) +(1,25046:-473656,4736287:0,0,0 +k1,25046:-473656,4736287:5209943 +) +g1,25046:-473656,-710413 +) +] +) +[1,25046:6630773,47279633:25952256,43253760,0 +[1,25046:6630773,4812305:25952256,786432,0 +(1,25046:6630773,4812305:25952256,513147,134348 +(1,25046:6630773,4812305:25952256,513147,134348 +g1,25046:3078558,4812305 +[1,25046:3078558,4812305:0,0,0 +(1,25046:3078558,2439708:0,1703936,0 +k1,25046:1358238,2439708:-1720320 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 +r1,25046:2537886,2439708:1179648,16384,0 +) +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 +r1,25046:3078558,1915420:16384,1179648,0 +) +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 +) +] +) +) +) +] +[1,25046:3078558,4812305:0,0,0 +(1,25046:3078558,2439708:0,1703936,0 +g1,25046:29030814,2439708 +g1,25046:36135244,2439708 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 +r1,25046:36151628,1915420:16384,1179648,0 +) +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 +) +] +) +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 +r1,25046:37855564,2439708:1179648,16384,0 +) +) +k1,25046:3078556,2439708:-34777008 +) +] +[1,25046:3078558,4812305:0,0,0 +(1,25046:3078558,49800853:0,16384,2228224 +k1,25046:1358238,49800853:-1720320 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 +r1,25046:2537886,49800853:1179648,16384,0 +) +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 +r1,25046:3078558,51504789:16384,1179648,0 +) +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 +) +] +) +) +) +] +[1,25046:3078558,4812305:0,0,0 +(1,25046:3078558,49800853:0,16384,2228224 +g1,25046:29030814,49800853 +g1,25046:36135244,49800853 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 +r1,25046:36151628,51504789:16384,1179648,0 +) +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 +) +] +) +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 +r1,25046:37855564,49800853:1179648,16384,0 +) +) +k1,25046:3078556,49800853:-34777008 +) +] +g1,25046:6630773,4812305 +k1,25046:23083588,4812305:15257438 +g1,25046:24981510,4812305 +g1,25046:25796777,4812305 +g1,25046:26410194,4812305 +g1,25046:28753761,4812305 +g1,25046:29709275,4812305 +) +) +] +[1,25046:6630773,45706769:25952256,40108032,0 +(1,25046:6630773,45706769:25952256,40108032,0 +(1,25046:6630773,45706769:0,0,0 +g1,25046:6630773,45706769 +) +[1,25046:6630773,45706769:25952256,40108032,0 +(4611,667:6630773,36833353:25952256,31234616,126483 +[4611,667:6630773,36833353:11829248,31234616,102891 +(4611,592:6630773,6254097:11829248,530548,102891 +h4611,591:6630773,6254097:0,0,0 +r1,25046:6630773,6254097:0,633439,102891 +g4611,591:7941493,6254097 +g4611,591:7941493,6254097 +g4611,591:10804046,6254097 +k4611,592:15219892,6254097:3240130 +k4611,592:18460021,6254097:3240129 +) +(4611,593:6630773,7119177:11829248,530548,102891 +h4611,592:6630773,7119177:0,0,0 +r1,25046:6630773,7119177:0,633439,102891 +g4611,592:7941493,7119177 +g4611,592:7941493,7119177 +g4611,592:10804046,7119177 +k4611,593:15219892,7119177:3240130 +k4611,593:18460021,7119177:3240129 +) +(4611,594:6630773,7984257:11829248,530548,102891 +h4611,593:6630773,7984257:0,0,0 +r1,25046:6630773,7984257:0,633439,102891 +g4611,593:7941493,7984257 +g4611,593:7941493,7984257 +g4611,593:10389104,7984257 +k4611,594:15012421,7984257:3447601 +k4611,594:18460021,7984257:3447600 +) +(4611,595:6630773,8849337:11829248,530548,102891 +h4611,594:6630773,8849337:0,0,0 +r1,25046:6630773,8849337:0,633439,102891 +g4611,594:7941493,8849337 +g4611,594:7941493,8849337 +g4611,594:10804046,8849337 +g4611,594:12372322,8849337 +k4611,595:16004030,8849337:2455992 +k4611,595:18460021,8849337:2455991 +) +(4611,596:6630773,9714417:11829248,530548,102891 +h4611,595:6630773,9714417:0,0,0 +r1,25046:6630773,9714417:0,633439,102891 +g4611,595:7941493,9714417 +g4611,595:7941493,9714417 +g4611,595:11633931,9714417 +k4611,596:15644665,9714417:2815357 +k4611,596:18460021,9714417:2815356 +) +(4611,597:6630773,10579497:11829248,530548,102891 +h4611,596:6630773,10579497:0,0,0 +r1,25046:6630773,10579497:0,633439,102891 +g4611,596:7941493,10579497 +g4611,596:7941493,10579497 +g4611,596:12878759,10579497 +g4611,596:14447035,10579497 +k4611,597:17041386,10579497:1418635 +k4611,597:18460021,10579497:1418635 +) +(4611,598:6630773,11444577:11829248,530548,102891 +h4611,597:6630773,11444577:0,0,0 +r1,25046:6630773,11444577:0,633439,102891 +g4611,597:7941493,11444577 +g4611,597:7941493,11444577 +g4611,597:13293701,11444577 +g4611,597:14861977,11444577 +k4611,598:17248857,11444577:1211164 +k4611,598:18460021,11444577:1211164 +) +(4611,599:6630773,12309657:11829248,530548,102891 +h4611,598:6630773,12309657:0,0,0 +r1,25046:6630773,12309657:0,633439,102891 +g4611,598:7941493,12309657 +g4611,598:7941493,12309657 +g4611,598:13708644,12309657 +k4611,599:16672191,12309657:1787831 +k4611,599:18460021,12309657:1787830 +) +(4611,600:6630773,13174737:11829248,530548,102891 +h4611,599:6630773,13174737:0,0,0 +r1,25046:6630773,13174737:0,633439,102891 +g4611,599:7941493,13174737 +g4611,599:7941493,13174737 +g4611,599:13293701,13174737 +k4611,600:16474550,13174737:1985472 +k4611,600:18460021,13174737:1985471 +) +(4611,601:6630773,14039817:11829248,530548,102891 +h4611,600:6630773,14039817:0,0,0 +r1,25046:6630773,14039817:0,633439,102891 +g4611,600:7941493,14039817 +g4611,600:7941493,14039817 +g4611,600:12878759,14039817 +k4611,601:16257248,14039817:2202773 +k4611,601:18460021,14039817:2202773 +) +(4611,602:6630773,14904897:11829248,530548,102891 +h4611,601:6630773,14904897:0,0,0 +r1,25046:6630773,14904897:0,633439,102891 +g4611,601:7941493,14904897 +g4611,601:7941493,14904897 +g4611,601:13293701,14904897 +k4611,602:16464719,14904897:1995302 +k4611,602:18460021,14904897:1995302 +) +(4611,603:6630773,15769977:11829248,530548,102891 +h4611,602:6630773,15769977:0,0,0 +r1,25046:6630773,15769977:0,633439,102891 +g4611,602:7941493,15769977 +g4611,602:7941493,15769977 +g4611,602:13708644,15769977 +k4611,603:16672191,15769977:1787831 +k4611,603:18460021,15769977:1787830 +) +(4611,604:6630773,16635057:11829248,530548,102891 +h4611,603:6630773,16635057:0,0,0 +r1,25046:6630773,16635057:0,633439,102891 +g4611,603:7941493,16635057 +g4611,603:7941493,16635057 +g4611,603:15368413,16635057 +k4611,604:17502075,16635057:957946 +k4611,604:18460021,16635057:957946 +) +(4611,605:6630773,17500137:11829248,538806,102891 +h4611,604:6630773,17500137:0,0,0 +r1,25046:6630773,17500137:0,641697,102891 +g4611,604:7941493,17500137 +g4611,604:7941493,17500137 +g4611,604:13293701,17500137 +g4611,604:14861977,17500137 +k4611,605:17258688,17500137:1201334 +k4611,605:18460021,17500137:1201333 +) +(4611,606:6630773,18365217:11829248,538806,102891 +h4611,605:6630773,18365217:0,0,0 +r1,25046:6630773,18365217:0,641697,102891 +g4611,605:7941493,18365217 +g4611,605:7941493,18365217 +g4611,605:13293701,18365217 +k4611,606:16464719,18365217:1995302 +k4611,606:18460021,18365217:1995302 +) +(4611,607:6630773,19230297:11829248,530548,102891 +h4611,606:6630773,19230297:0,0,0 +r1,25046:6630773,19230297:0,633439,102891 +g4611,606:7941493,19230297 +g4611,606:7941493,19230297 +g4611,606:13708644,19230297 +k4611,607:16672191,19230297:1787831 +k4611,607:18460021,19230297:1787830 +) +(4611,608:6630773,20095377:11829248,530548,102891 +h4611,607:6630773,20095377:0,0,0 +r1,25046:6630773,20095377:0,633439,102891 +g4611,607:7941493,20095377 +g4611,607:7941493,20095377 +g4611,607:12878759,20095377 +k4611,608:16257248,20095377:2202773 +k4611,608:18460021,20095377:2202773 +) +(4611,609:6630773,20960457:11829248,530548,102891 +h4611,608:6630773,20960457:0,0,0 +r1,25046:6630773,20960457:0,633439,102891 +g4611,608:7941493,20960457 +g4611,608:7941493,20960457 +g4611,608:12878759,20960457 +k4611,609:16257248,20960457:2202773 +k4611,609:18460021,20960457:2202773 +) +(4611,610:6630773,21825537:11829248,530548,102891 +h4611,609:6630773,21825537:0,0,0 +r1,25046:6630773,21825537:0,633439,102891 +g4611,609:7941493,21825537 +g4611,609:7941493,21825537 +g4611,609:10804046,21825537 +k4611,610:15229722,21825537:3230299 +k4611,610:18460021,21825537:3230299 +) +(4611,611:6630773,22690617:11829248,530548,102891 +h4611,610:6630773,22690617:0,0,0 +r1,25046:6630773,22690617:0,633439,102891 +g4611,610:7941493,22690617 +g4611,610:7941493,22690617 +g4611,610:10804046,22690617 +g4611,610:12372322,22690617 +g4611,610:13940598,22690617 +k4611,611:16788168,22690617:1671854 +k4611,611:18460021,22690617:1671853 +) +(4611,612:6630773,23555697:11829248,538806,102891 +h4611,611:6630773,23555697:0,0,0 +r1,25046:6630773,23555697:0,641697,102891 +g4611,611:7941493,23555697 +g4611,611:7941493,23555697 +g4611,611:14123586,23555697 +k4611,612:16889492,23555697:1570529 +k4611,612:18460021,23555697:1570529 +) +(4611,613:6630773,24420777:11829248,530548,102891 +h4611,612:6630773,24420777:0,0,0 +r1,25046:6630773,24420777:0,633439,102891 +g4611,612:7941493,24420777 +g4611,612:7941493,24420777 +g4611,612:12463816,24420777 +k4611,613:16059607,24420777:2400414 +k4611,613:18460021,24420777:2400414 +) +(4611,614:6630773,25285857:11829248,530548,132808 +h4611,613:6630773,25285857:0,0,0 +r1,25046:6630773,25285857:0,663356,132808 +g4611,613:7941493,25285857 +g4611,613:7941493,25285857 +g4611,613:10804046,25285857 +k4611,614:15229722,25285857:3230299 +k4611,614:18460021,25285857:3230299 +) +(4611,615:6630773,26150937:11829248,530548,132808 +h4611,614:6630773,26150937:0,0,0 +r1,25046:6630773,26150937:0,663356,132808 +g4611,614:7941493,26150937 +g4611,614:7941493,26150937 +g4611,614:11218989,26150937 +k4611,615:15437194,26150937:3022828 +k4611,615:18460021,26150937:3022827 +) +(4611,616:6630773,27016017:11829248,530548,132808 +h4611,615:6630773,27016017:0,0,0 +r1,25046:6630773,27016017:0,663356,132808 +g4611,615:7941493,27016017 +g4611,615:7941493,27016017 +g4611,615:10804046,27016017 +k4611,616:15229722,27016017:3230299 +k4611,616:18460021,27016017:3230299 +) +(4611,617:6630773,27881097:11829248,530548,132808 +h4611,616:6630773,27881097:0,0,0 +r1,25046:6630773,27881097:0,663356,132808 +g4611,616:7941493,27881097 +g4611,616:7941493,27881097 +g4611,616:10804046,27881097 +g4611,616:12372322,27881097 +g4611,616:13940598,27881097 +k4611,617:16788168,27881097:1671854 +k4611,617:18460021,27881097:1671853 +) +(4611,621:6630773,29329445:11829248,505283,126483 +h4611,620:6630773,29329445:0,0,0 +g4611,620:8898318,29329445 +g4611,620:10288992,29329445 +g4611,620:11996860,29329445 +k4611,621:16141685,29329445:2318337 +k4611,621:18460021,29329445:2318336 +) +(4611,622:6630773,30194525:11829248,530548,102891 +h4611,621:6630773,30194525:0,0,0 +r1,25046:6630773,30194525:0,633439,102891 +g4611,621:7941493,30194525 +g4611,621:7941493,30194525 +g4611,621:11633931,30194525 +g4611,621:13202207,30194525 +k4611,622:16428803,30194525:2031219 +k4611,622:18460021,30194525:2031218 +) +(4611,623:6630773,31059605:11829248,530548,102891 +h4611,622:6630773,31059605:0,0,0 +r1,25046:6630773,31059605:0,633439,102891 +g4611,622:7941493,31059605 +g4611,622:7941493,31059605 +g4611,622:11633931,31059605 +g4611,622:13202207,31059605 +g4611,622:14770483,31059605 +k4611,623:17203110,31059605:1256911 +k4611,623:18460021,31059605:1256911 +) +(4611,624:6630773,31924685:11829248,530548,102891 +h4611,623:6630773,31924685:0,0,0 +r1,25046:6630773,31924685:0,633439,102891 +g4611,623:7941493,31924685 +g4611,623:7941493,31924685 +g4611,623:11633931,31924685 +k4611,624:15634834,31924685:2825187 +k4611,624:18460021,31924685:2825187 +) +(4611,625:6630773,32789765:11829248,538806,102891 +h4611,624:6630773,32789765:0,0,0 +r1,25046:6630773,32789765:0,641697,102891 +g4611,624:7941493,32789765 +g4611,624:7941493,32789765 +g4611,624:12878759,32789765 +k4611,625:16267079,32789765:2192943 +k4611,625:18460021,32789765:2192942 +) +(4611,626:6630773,33654845:11829248,530548,102891 +h4611,625:6630773,33654845:0,0,0 +r1,25046:6630773,33654845:0,633439,102891 +g4611,625:7941493,33654845 +g4611,625:7941493,33654845 +g4611,625:10804046,33654845 +g4611,625:12372322,33654845 +k4611,626:16013860,33654845:2446161 +k4611,626:18460021,33654845:2446161 +) +(4611,627:6630773,34519925:11829248,530548,102891 +h4611,626:6630773,34519925:0,0,0 +r1,25046:6630773,34519925:0,633439,102891 +g4611,626:7941493,34519925 +g4611,626:7941493,34519925 +g4611,626:11633931,34519925 +g4611,626:13202207,34519925 +k4611,627:16428803,34519925:2031219 +k4611,627:18460021,34519925:2031218 +) +(4611,631:6630773,35968273:11829248,426639,126483 +h4611,630:6630773,35968273:0,0,0 +k4611,631:14083855,35968273:4376167 +k4611,631:18460021,35968273:4376166 +) +(4611,632:6630773,36833353:11829248,485622,102891 +h4611,631:6630773,36833353:0,0,0 +r1,25046:6630773,36833353:0,588513,102891 +g4611,631:7941493,36833353 +g4611,631:7941493,36833353 +g4611,631:8729334,36833353 +g4611,631:9899151,36833353 +k4611,632:14568215,36833353:3891807 +k4611,632:18460021,36833353:3891806 +) +] +k4611,667:19606901,36833353:1146880 +r1,25046:19606901,36833353:0,31361099,126483 +k4611,667:20753781,36833353:1146880 +[4611,667:20753781,36833353:11829248,31234616,102891 +(4611,633:20753781,6254097:11829248,485622,102891 +h4611,632:20753781,6254097:0,0,0 +r1,25046:20753781,6254097:0,588513,102891 +g4611,632:22064501,6254097 +g4611,632:22064501,6254097 +g4611,632:22852342,6254097 +g4611,632:24022159,6254097 +g4611,632:25191976,6254097 +g4611,632:26361793,6254097 +g4611,632:27930069,6254097 +g4611,632:29498345,6254097 +k4611,633:31638376,6254097:944654 +k4611,633:32583029,6254097:944653 +) +(4611,634:20753781,7128901:11829248,485622,102891 +h4611,633:20753781,7128901:0,0,0 +r1,25046:20753781,7128901:0,588513,102891 +g4611,633:22064501,7128901 +g4611,633:22064501,7128901 +g4611,633:22852342,7128901 +g4611,633:24022159,7128901 +g4611,633:25191976,7128901 +k4611,634:29485191,7128901:3097838 +k4611,634:32583029,7128901:3097838 +) +(4611,635:20753781,8003706:11829248,485622,102891 +h4611,634:20753781,8003706:0,0,0 +r1,25046:20753781,8003706:0,588513,102891 +g4611,634:22064501,8003706 +g4611,634:22064501,8003706 +g4611,634:23267285,8003706 +g4611,634:24437102,8003706 +k4611,635:29107754,8003706:3475275 +k4611,635:32583029,8003706:3475275 +) +(4611,636:20753781,8878510:11829248,530548,102891 +h4611,635:20753781,8878510:0,0,0 +r1,25046:20753781,8878510:0,633439,102891 +g4611,635:22064501,8878510 +g4611,635:22064501,8878510 +g4611,635:22852342,8878510 +g4611,635:24022159,8878510 +k4611,636:28900283,8878510:3682747 +k4611,636:32583029,8878510:3682746 +) +(4611,637:20753781,9753315:11829248,485622,102891 +h4611,636:20753781,9753315:0,0,0 +r1,25046:20753781,9753315:0,588513,102891 +g4611,636:22064501,9753315 +g4611,636:22064501,9753315 +g4611,636:22852342,9753315 +k4611,637:28116145,9753315:4466885 +k4611,637:32583029,9753315:4466884 +) +(4611,638:20753781,10628119:11829248,485622,102891 +h4611,637:20753781,10628119:0,0,0 +r1,25046:20753781,10628119:0,588513,102891 +g4611,637:22064501,10628119 +g4611,637:22064501,10628119 +g4611,637:22852342,10628119 +k4611,638:28116145,10628119:4466885 +k4611,638:32583029,10628119:4466884 +) +(4611,639:20753781,11502923:11829248,485622,102891 +h4611,638:20753781,11502923:0,0,0 +r1,25046:20753781,11502923:0,588513,102891 +k4611,638:22064501,11502923:1310720 +k4611,638:22064501,11502923:0 +k4611,638:23253869,11502923:185813 +k4611,638:24410270,11502923:185813 +k4611,638:25566671,11502923:185813 +k4611,638:26723072,11502923:185813 +k4611,638:28277932,11502923:185813 +k4611,638:29832792,11502923:185813 +k4611,638:31387652,11502923:185813 +k4611,639:32583029,11502923:0 +k4611,639:32583029,11502923:0 +) +(4611,640:20753781,12377728:11829248,485622,102891 +h4611,639:20753781,12377728:0,0,0 +r1,25046:20753781,12377728:0,588513,102891 +g4611,639:22064501,12377728 +g4611,639:22064501,12377728 +g4611,639:23682227,12377728 +k4611,640:28730317,12377728:3852713 +k4611,640:32583029,12377728:3852712 +) +(4611,641:20753781,13252532:11829248,485622,102891 +h4611,640:20753781,13252532:0,0,0 +r1,25046:20753781,13252532:0,588513,102891 +g4611,640:22064501,13252532 +g4611,640:22064501,13252532 +g4611,640:23267285,13252532 +k4611,641:28323616,13252532:4259413 +k4611,641:32583029,13252532:4259413 +) +(4611,642:20753781,14127336:11829248,485622,102891 +h4611,641:20753781,14127336:0,0,0 +r1,25046:20753781,14127336:0,588513,102891 +g4611,641:22064501,14127336 +g4611,641:22064501,14127336 +g4611,641:22852342,14127336 +g4611,641:24022159,14127336 +k4611,642:28691223,14127336:3891807 +k4611,642:32583029,14127336:3891806 +) +(4611,643:20753781,15002141:11829248,485622,102891 +h4611,642:20753781,15002141:0,0,0 +r1,25046:20753781,15002141:0,588513,102891 +g4611,642:22064501,15002141 +g4611,642:22064501,15002141 +g4611,642:23267285,15002141 +g4611,642:24437102,15002141 +k4611,643:29097924,15002141:3485106 +k4611,643:32583029,15002141:3485105 +) +(4611,644:20753781,15876945:11829248,485622,102891 +h4611,643:20753781,15876945:0,0,0 +r1,25046:20753781,15876945:0,588513,102891 +g4611,643:22064501,15876945 +g4611,643:22064501,15876945 +g4611,643:22852342,15876945 +k4611,644:28116145,15876945:4466885 +k4611,644:32583029,15876945:4466884 +) +(4611,645:20753781,16751750:11829248,485622,102891 +h4611,644:20753781,16751750:0,0,0 +r1,25046:20753781,16751750:0,588513,102891 +g4611,644:22064501,16751750 +g4611,644:22064501,16751750 +g4611,644:23267285,16751750 +k4611,645:28323616,16751750:4259413 +k4611,645:32583029,16751750:4259413 +) +(4611,646:20753781,17626554:11829248,530548,108035 +h4611,645:20753781,17626554:0,0,0 +r1,25046:20753781,17626554:0,638583,108035 +g4611,645:22064501,17626554 +g4611,645:22064501,17626554 +g4611,645:22894385,17626554 +g4611,645:23724269,17626554 +g4611,645:24512110,17626554 +g4611,645:26080386,17626554 +k4611,646:29919566,17626554:2663464 +k4611,646:32583029,17626554:2663463 +) +(4611,648:20753781,18501358:11829248,530548,102891 +h4611,646:20753781,18501358:0,0,0 +r1,25046:20753781,18501358:0,633439,102891 +g4611,646:22064501,18501358 +g4611,646:22064501,18501358 +g4611,646:22894385,18501358 +g4611,646:23682226,18501358 +g4611,646:24852043,18501358 +g4611,646:26021860,18501358 +g4611,646:27191677,18501358 +g4611,646:28361494,18501358 +g4611,646:29531311,18501358 +g4611,646:30701128,18501358 +k4611,646:32583029,18501358:599362 +) +(4611,648:23375221,19366438:9207808,485622,102891 +g4611,646:24923836,19366438 +g4611,646:26492112,19366438 +g4611,646:28060388,19366438 +g4611,647:31151721,19366438 +k4611,647:32583029,19366438:148769 +) +(4611,648:23375221,20231518:9207808,485622,102891 +g4611,647:24923836,20231518 +g4611,647:26492112,20231518 +g4611,647:28060388,20231518 +k4611,648:30919397,20231518:1663632 +k4611,648:32583029,20231518:1663632 +) +(4611,650:20753781,21106323:11829248,530548,102891 +h4611,648:20753781,21106323:0,0,0 +r1,25046:20753781,21106323:0,633439,102891 +g4611,648:22064501,21106323 +g4611,648:22064501,21106323 +g4611,648:23309328,21106323 +g4611,648:24512112,21106323 +g4611,648:25681929,21106323 +g4611,648:26851746,21106323 +g4611,648:28021563,21106323 +g4611,648:29191380,21106323 +g4611,648:30361197,21106323 +k4611,648:32583029,21106323:1337752 +) +(4611,650:23375221,21971403:9207808,485622,102891 +g4611,648:24923836,21971403 +g4611,648:26492112,21971403 +g4611,648:28060388,21971403 +g4611,649:29628664,21971403 +g4611,649:31196940,21971403 +k4611,650:32487673,21971403:95356 +k4611,650:32583029,21971403:95356 +) +(4611,651:20753781,22846207:11829248,538806,102891 +h4611,650:20753781,22846207:0,0,0 +r1,25046:20753781,22846207:0,641697,102891 +g4611,650:22064501,22846207 +g4611,650:22064501,22846207 +g4611,650:22852342,22846207 +g4611,650:24022159,22846207 +g4611,650:25191976,22846207 +g4611,650:26361793,22846207 +g4611,650:27930069,22846207 +g4611,650:29498345,22846207 +k4611,651:31638376,22846207:944654 +k4611,651:32583029,22846207:944653 +) +(4611,652:20753781,23721012:11829248,509904,102891 +h4611,651:20753781,23721012:0,0,0 +r1,25046:20753781,23721012:0,612795,102891 +g4611,651:22064501,23721012 +g4611,651:22064501,23721012 +g4611,651:23682227,23721012 +k4611,652:28531087,23721012:4051942 +k4611,652:32583029,23721012:4051942 +) +(4611,653:20753781,24595816:11829248,509904,102891 +h4611,652:20753781,24595816:0,0,0 +r1,25046:20753781,24595816:0,612795,102891 +g4611,652:22064501,24595816 +g4611,652:22064501,24595816 +g4611,652:23682227,24595816 +k4611,653:28730317,24595816:3852713 +k4611,653:32583029,24595816:3852712 +) +(4611,654:20753781,25470620:11829248,509904,102891 +h4611,653:20753781,25470620:0,0,0 +r1,25046:20753781,25470620:0,612795,102891 +g4611,653:22064501,25470620 +g4611,653:22064501,25470620 +g4611,653:24097170,25470620 +k4611,654:29699316,25470620:2883713 +k4611,654:32583029,25470620:2883713 +) +(4611,655:20753781,26345425:11829248,530548,102891 +h4611,654:20753781,26345425:0,0,0 +r1,25046:20753781,26345425:0,633439,102891 +g4611,654:22064501,26345425 +g4611,654:22064501,26345425 +g4611,654:23682227,26345425 +k4611,655:28521257,26345425:4061773 +k4611,655:32583029,26345425:4061772 +) +(4611,656:20753781,27220229:11829248,509904,102891 +h4611,655:20753781,27220229:0,0,0 +r1,25046:20753781,27220229:0,612795,102891 +g4611,655:22064501,27220229 +g4611,655:22064501,27220229 +g4611,655:24097170,27220229 +k4611,656:28937788,27220229:3645241 +k4611,656:32583029,27220229:3645241 +) +(4611,657:20753781,28095034:11829248,509904,102891 +h4611,656:20753781,28095034:0,0,0 +r1,25046:20753781,28095034:0,612795,102891 +g4611,656:22064501,28095034 +g4611,656:22064501,28095034 +g4611,656:23682227,28095034 +g4611,656:26773560,28095034 +k4611,657:30275983,28095034:2307046 +k4611,657:32583029,28095034:2307046 +) +(4611,658:20753781,28969838:11829248,509904,102891 +h4611,657:20753781,28969838:0,0,0 +r1,25046:20753781,28969838:0,612795,102891 +g4611,657:22064501,28969838 +g4611,657:22064501,28969838 +g4611,657:24097170,28969838 +k4611,658:28937788,28969838:3645241 +k4611,658:32583029,28969838:3645241 +) +(4611,659:20753781,29844642:11829248,509904,102891 +h4611,658:20753781,29844642:0,0,0 +r1,25046:20753781,29844642:0,612795,102891 +g4611,658:22064501,29844642 +g4611,658:22064501,29844642 +g4611,658:23267285,29844642 +k4611,659:28313786,29844642:4269244 +k4611,659:32583029,29844642:4269243 +) +(4611,660:20753781,30719447:11829248,530548,102891 +h4611,659:20753781,30719447:0,0,0 +r1,25046:20753781,30719447:0,633439,102891 +g4611,659:22064501,30719447 +g4611,659:22064501,30719447 +g4611,659:24097170,30719447 +g4611,659:25266987,30719447 +k4611,660:29313637,30719447:3269393 +k4611,660:32583029,30719447:3269392 +) +(4611,661:20753781,31594251:11829248,509904,102891 +h4611,660:20753781,31594251:0,0,0 +r1,25046:20753781,31594251:0,612795,102891 +g4611,660:22064501,31594251 +g4611,660:22064501,31594251 +g4611,660:22852342,31594251 +g4611,660:24022159,31594251 +k4611,661:28701053,31594251:3881976 +k4611,661:32583029,31594251:3881976 +) +(4611,662:20753781,32469055:11829248,509904,102891 +h4611,661:20753781,32469055:0,0,0 +r1,25046:20753781,32469055:0,612795,102891 +g4611,661:22064501,32469055 +g4611,661:22064501,32469055 +g4611,661:23267285,32469055 +k4611,662:28323616,32469055:4259413 +k4611,662:32583029,32469055:4259413 +) +(4611,663:20753781,33343860:11829248,497518,102891 +h4611,662:20753781,33343860:0,0,0 +r1,25046:20753781,33343860:0,600409,102891 +g4611,662:22064501,33343860 +g4611,662:22064501,33343860 +g4611,662:22852342,33343860 +k4611,663:28106314,33343860:4476715 +k4611,663:32583029,33343860:4476715 +) +(4611,664:20753781,34218664:11829248,530548,102891 +h4611,663:20753781,34218664:0,0,0 +r1,25046:20753781,34218664:0,633439,102891 +g4611,663:22064501,34218664 +g4611,663:22064501,34218664 +g4611,663:22852342,34218664 +g4611,663:24022159,34218664 +k4611,664:28701053,34218664:3881976 +k4611,664:32583029,34218664:3881976 +) +(4611,665:20753781,35093469:11829248,530548,102891 +h4611,664:20753781,35093469:0,0,0 +r1,25046:20753781,35093469:0,633439,102891 +g4611,664:22064501,35093469 +g4611,664:22064501,35093469 +g4611,664:23267285,35093469 +g4611,664:24835561,35093469 +g4611,664:26403837,35093469 +g4611,664:29495170,35093469 +g4611,664:31063446,35093469 +k4611,664:32583029,35093469:237044 +) +(4611,665:23375221,35958549:9207808,485622,11795 +k4611,665:28566983,35958549:4016046 +k4611,665:32583029,35958549:4016046 +) +(4611,666:20753781,36833353:11829248,530548,102891 +h4611,665:20753781,36833353:0,0,0 +r1,25046:20753781,36833353:0,633439,102891 +g4611,665:22064501,36833353 +g4611,665:22064501,36833353 +g4611,665:23267285,36833353 +k4611,666:28323616,36833353:4259413 +k4611,666:32583029,36833353:4259413 +) +] +(4611,667:32583029,36833353:0,355205,126483 +h4611,667:32583029,36833353:420741,355205,126483 +k4611,667:32583029,36833353:-420741 +) +) +] +(1,25046:32583029,45706769:0,0,0 +g1,25046:32583029,45706769 +) +) +] +(1,25046:6630773,47279633:25952256,0,0 +h1,25046:6630773,47279633:25952256,0,0 +) +] +(1,25046:4262630,4025873:0,0,0 +[1,25046:-473656,4025873:0,0,0 +(1,25046:-473656,-710413:0,0,0 +(1,25046:-473656,-710413:0,0,0 +g1,25046:-473656,-710413 +) +g1,25046:-473656,-710413 +) +] +) +] +!25118 +}462 +Input:4612:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\faqindex.ind +Input:4613:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4614:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4615:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:4616:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!464 +{463 [1,25048:4262630,47279633:28320399,43253760,0 (1,25048:4262630,4025873:0,0,0 [1,25048:-473656,4025873:0,0,0 @@ -456461,25 +457481,25 @@ g1,25048:-473656,-710413 ) [1,25048:6630773,47279633:25952256,43253760,0 [1,25048:6630773,4812305:25952256,786432,0 -(1,25048:6630773,4812305:25952256,513147,134348 -(1,25048:6630773,4812305:25952256,513147,134348 +(1,25048:6630773,4812305:25952256,0,0 +(1,25048:6630773,4812305:25952256,0,0 g1,25048:3078558,4812305 [1,25048:3078558,4812305:0,0,0 (1,25048:3078558,2439708:0,1703936,0 k1,25048:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 +(1,23095:1358238,2439708:1720320,1703936,0 +(1,23095:1358238,2439708:1179648,16384,0 r1,25048:2537886,2439708:1179648,16384,0 ) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 +g1,23095:3062174,2439708 +(1,23095:3062174,2439708:16384,1703936,0 +[1,23095:3062174,2439708:25952256,1703936,0 +(1,23095:3062174,1915420:25952256,1179648,0 +(1,23095:3062174,1915420:16384,1179648,0 r1,25048:3078558,1915420:16384,1179648,0 ) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 +k1,23095:29014430,1915420:25935872 +g1,23095:29014430,1915420 ) ] ) @@ -456490,20 +457510,20 @@ g1,23097:29014430,1915420 (1,25048:3078558,2439708:0,1703936,0 g1,25048:29030814,2439708 g1,25048:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 +(1,23095:36135244,2439708:1720320,1703936,0 +(1,23095:36135244,2439708:16384,1703936,0 +[1,23095:36135244,2439708:25952256,1703936,0 +(1,23095:36135244,1915420:25952256,1179648,0 +(1,23095:36135244,1915420:16384,1179648,0 r1,25048:36151628,1915420:16384,1179648,0 ) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 +k1,23095:62087500,1915420:25935872 +g1,23095:62087500,1915420 ) ] ) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 +g1,23095:36675916,2439708 +(1,23095:36675916,2439708:1179648,16384,0 r1,25048:37855564,2439708:1179648,16384,0 ) ) @@ -456513,19 +457533,19 @@ k1,25048:3078556,2439708:-34777008 [1,25048:3078558,4812305:0,0,0 (1,25048:3078558,49800853:0,16384,2228224 k1,25048:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 +(1,23095:1358238,49800853:1720320,16384,2228224 +(1,23095:1358238,49800853:1179648,16384,0 r1,25048:2537886,49800853:1179648,16384,0 ) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 +g1,23095:3062174,49800853 +(1,23095:3062174,52029077:16384,1703936,0 +[1,23095:3062174,52029077:25952256,1703936,0 +(1,23095:3062174,51504789:25952256,1179648,0 +(1,23095:3062174,51504789:16384,1179648,0 r1,25048:3078558,51504789:16384,1179648,0 ) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 +k1,23095:29014430,51504789:25935872 +g1,23095:29014430,51504789 ) ] ) @@ -456536,20 +457556,20 @@ g1,23097:29014430,51504789 (1,25048:3078558,49800853:0,16384,2228224 g1,25048:29030814,49800853 g1,25048:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 +(1,23095:36135244,49800853:1720320,16384,2228224 +(1,23095:36135244,52029077:16384,1703936,0 +[1,23095:36135244,52029077:25952256,1703936,0 +(1,23095:36135244,51504789:25952256,1179648,0 +(1,23095:36135244,51504789:16384,1179648,0 r1,25048:36151628,51504789:16384,1179648,0 ) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 +k1,23095:62087500,51504789:25935872 +g1,23095:62087500,51504789 ) ] ) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 +g1,23095:36675916,49800853 +(1,23095:36675916,49800853:1179648,16384,0 r1,25048:37855564,49800853:1179648,16384,0 ) ) @@ -456557,12 +457577,6 @@ k1,25048:3078556,49800853:-34777008 ) ] g1,25048:6630773,4812305 -k1,25048:23083588,4812305:15257438 -g1,25048:24981510,4812305 -g1,25048:25796777,4812305 -g1,25048:26410194,4812305 -g1,25048:28753761,4812305 -g1,25048:29709275,4812305 ) ) ] @@ -456572,699 +457586,513 @@ g1,25048:29709275,4812305 g1,25048:6630773,45706769 ) [1,25048:6630773,45706769:25952256,40108032,0 -(4607,668:6630773,36833353:25952256,31234616,126483 -[4607,668:6630773,36833353:11829248,31234616,102891 -(4607,593:6630773,6254097:11829248,530548,102891 -h4607,592:6630773,6254097:0,0,0 -r1,25048:6630773,6254097:0,633439,102891 -g4607,592:7941493,6254097 -g4607,592:7941493,6254097 -g4607,592:10804046,6254097 -k4607,593:15219892,6254097:3240130 -k4607,593:18460021,6254097:3240129 -) -(4607,594:6630773,7119177:11829248,530548,102891 -h4607,593:6630773,7119177:0,0,0 -r1,25048:6630773,7119177:0,633439,102891 -g4607,593:7941493,7119177 -g4607,593:7941493,7119177 -g4607,593:10804046,7119177 -k4607,594:15219892,7119177:3240130 -k4607,594:18460021,7119177:3240129 -) -(4607,595:6630773,7984257:11829248,530548,102891 -h4607,594:6630773,7984257:0,0,0 -r1,25048:6630773,7984257:0,633439,102891 -g4607,594:7941493,7984257 -g4607,594:7941493,7984257 -g4607,594:10389104,7984257 -k4607,595:15012421,7984257:3447601 -k4607,595:18460021,7984257:3447600 -) -(4607,596:6630773,8849337:11829248,530548,102891 -h4607,595:6630773,8849337:0,0,0 -r1,25048:6630773,8849337:0,633439,102891 -g4607,595:7941493,8849337 -g4607,595:7941493,8849337 -g4607,595:10804046,8849337 -g4607,595:12372322,8849337 -k4607,596:16004030,8849337:2455992 -k4607,596:18460021,8849337:2455991 -) -(4607,597:6630773,9714417:11829248,530548,102891 -h4607,596:6630773,9714417:0,0,0 -r1,25048:6630773,9714417:0,633439,102891 -g4607,596:7941493,9714417 -g4607,596:7941493,9714417 -g4607,596:11633931,9714417 -k4607,597:15644665,9714417:2815357 -k4607,597:18460021,9714417:2815356 -) -(4607,598:6630773,10579497:11829248,530548,102891 -h4607,597:6630773,10579497:0,0,0 -r1,25048:6630773,10579497:0,633439,102891 -g4607,597:7941493,10579497 -g4607,597:7941493,10579497 -g4607,597:12878759,10579497 -g4607,597:14447035,10579497 -k4607,598:17041386,10579497:1418635 -k4607,598:18460021,10579497:1418635 -) -(4607,599:6630773,11444577:11829248,530548,102891 -h4607,598:6630773,11444577:0,0,0 -r1,25048:6630773,11444577:0,633439,102891 -g4607,598:7941493,11444577 -g4607,598:7941493,11444577 -g4607,598:13293701,11444577 -g4607,598:14861977,11444577 -k4607,599:17248857,11444577:1211164 -k4607,599:18460021,11444577:1211164 -) -(4607,600:6630773,12309657:11829248,530548,102891 -h4607,599:6630773,12309657:0,0,0 -r1,25048:6630773,12309657:0,633439,102891 -g4607,599:7941493,12309657 -g4607,599:7941493,12309657 -g4607,599:13708644,12309657 -k4607,600:16672191,12309657:1787831 -k4607,600:18460021,12309657:1787830 -) -(4607,601:6630773,13174737:11829248,530548,102891 -h4607,600:6630773,13174737:0,0,0 -r1,25048:6630773,13174737:0,633439,102891 -g4607,600:7941493,13174737 -g4607,600:7941493,13174737 -g4607,600:13293701,13174737 -k4607,601:16474550,13174737:1985472 -k4607,601:18460021,13174737:1985471 -) -(4607,602:6630773,14039817:11829248,530548,102891 -h4607,601:6630773,14039817:0,0,0 -r1,25048:6630773,14039817:0,633439,102891 -g4607,601:7941493,14039817 -g4607,601:7941493,14039817 -g4607,601:12878759,14039817 -k4607,602:16257248,14039817:2202773 -k4607,602:18460021,14039817:2202773 -) -(4607,603:6630773,14904897:11829248,530548,102891 -h4607,602:6630773,14904897:0,0,0 -r1,25048:6630773,14904897:0,633439,102891 -g4607,602:7941493,14904897 -g4607,602:7941493,14904897 -g4607,602:13293701,14904897 -k4607,603:16464719,14904897:1995302 -k4607,603:18460021,14904897:1995302 -) -(4607,604:6630773,15769977:11829248,530548,102891 -h4607,603:6630773,15769977:0,0,0 -r1,25048:6630773,15769977:0,633439,102891 -g4607,603:7941493,15769977 -g4607,603:7941493,15769977 -g4607,603:13708644,15769977 -k4607,604:16672191,15769977:1787831 -k4607,604:18460021,15769977:1787830 -) -(4607,605:6630773,16635057:11829248,530548,102891 -h4607,604:6630773,16635057:0,0,0 -r1,25048:6630773,16635057:0,633439,102891 -g4607,604:7941493,16635057 -g4607,604:7941493,16635057 -g4607,604:15368413,16635057 -k4607,605:17502075,16635057:957946 -k4607,605:18460021,16635057:957946 -) -(4607,606:6630773,17500137:11829248,538806,102891 -h4607,605:6630773,17500137:0,0,0 -r1,25048:6630773,17500137:0,641697,102891 -g4607,605:7941493,17500137 -g4607,605:7941493,17500137 -g4607,605:13293701,17500137 -g4607,605:14861977,17500137 -k4607,606:17258688,17500137:1201334 -k4607,606:18460021,17500137:1201333 -) -(4607,607:6630773,18365217:11829248,538806,102891 -h4607,606:6630773,18365217:0,0,0 -r1,25048:6630773,18365217:0,641697,102891 -g4607,606:7941493,18365217 -g4607,606:7941493,18365217 -g4607,606:13293701,18365217 -k4607,607:16464719,18365217:1995302 -k4607,607:18460021,18365217:1995302 -) -(4607,608:6630773,19230297:11829248,530548,102891 -h4607,607:6630773,19230297:0,0,0 -r1,25048:6630773,19230297:0,633439,102891 -g4607,607:7941493,19230297 -g4607,607:7941493,19230297 -g4607,607:13708644,19230297 -k4607,608:16672191,19230297:1787831 -k4607,608:18460021,19230297:1787830 -) -(4607,609:6630773,20095377:11829248,530548,102891 -h4607,608:6630773,20095377:0,0,0 -r1,25048:6630773,20095377:0,633439,102891 -g4607,608:7941493,20095377 -g4607,608:7941493,20095377 -g4607,608:12878759,20095377 -k4607,609:16257248,20095377:2202773 -k4607,609:18460021,20095377:2202773 -) -(4607,610:6630773,20960457:11829248,530548,102891 -h4607,609:6630773,20960457:0,0,0 -r1,25048:6630773,20960457:0,633439,102891 -g4607,609:7941493,20960457 -g4607,609:7941493,20960457 -g4607,609:12878759,20960457 -k4607,610:16257248,20960457:2202773 -k4607,610:18460021,20960457:2202773 -) -(4607,611:6630773,21825537:11829248,530548,102891 -h4607,610:6630773,21825537:0,0,0 -r1,25048:6630773,21825537:0,633439,102891 -g4607,610:7941493,21825537 -g4607,610:7941493,21825537 -g4607,610:10804046,21825537 -k4607,611:15229722,21825537:3230299 -k4607,611:18460021,21825537:3230299 -) -(4607,612:6630773,22690617:11829248,530548,102891 -h4607,611:6630773,22690617:0,0,0 -r1,25048:6630773,22690617:0,633439,102891 -g4607,611:7941493,22690617 -g4607,611:7941493,22690617 -g4607,611:10804046,22690617 -g4607,611:12372322,22690617 -g4607,611:13940598,22690617 -k4607,612:16788168,22690617:1671854 -k4607,612:18460021,22690617:1671853 -) -(4607,613:6630773,23555697:11829248,538806,102891 -h4607,612:6630773,23555697:0,0,0 -r1,25048:6630773,23555697:0,641697,102891 -g4607,612:7941493,23555697 -g4607,612:7941493,23555697 -g4607,612:14123586,23555697 -k4607,613:16889492,23555697:1570529 -k4607,613:18460021,23555697:1570529 -) -(4607,614:6630773,24420777:11829248,530548,102891 -h4607,613:6630773,24420777:0,0,0 -r1,25048:6630773,24420777:0,633439,102891 -g4607,613:7941493,24420777 -g4607,613:7941493,24420777 -g4607,613:12463816,24420777 -k4607,614:16059607,24420777:2400414 -k4607,614:18460021,24420777:2400414 -) -(4607,615:6630773,25285857:11829248,530548,132808 -h4607,614:6630773,25285857:0,0,0 -r1,25048:6630773,25285857:0,663356,132808 -g4607,614:7941493,25285857 -g4607,614:7941493,25285857 -g4607,614:10804046,25285857 -k4607,615:15229722,25285857:3230299 -k4607,615:18460021,25285857:3230299 -) -(4607,616:6630773,26150937:11829248,530548,132808 -h4607,615:6630773,26150937:0,0,0 -r1,25048:6630773,26150937:0,663356,132808 -g4607,615:7941493,26150937 -g4607,615:7941493,26150937 -g4607,615:11218989,26150937 -k4607,616:15437194,26150937:3022828 -k4607,616:18460021,26150937:3022827 -) -(4607,617:6630773,27016017:11829248,530548,132808 -h4607,616:6630773,27016017:0,0,0 -r1,25048:6630773,27016017:0,663356,132808 -g4607,616:7941493,27016017 -g4607,616:7941493,27016017 -g4607,616:10804046,27016017 -k4607,617:15229722,27016017:3230299 -k4607,617:18460021,27016017:3230299 -) -(4607,618:6630773,27881097:11829248,530548,132808 -h4607,617:6630773,27881097:0,0,0 -r1,25048:6630773,27881097:0,663356,132808 -g4607,617:7941493,27881097 -g4607,617:7941493,27881097 -g4607,617:10804046,27881097 -g4607,617:12372322,27881097 -g4607,617:13940598,27881097 -k4607,618:16788168,27881097:1671854 -k4607,618:18460021,27881097:1671853 -) -(4607,622:6630773,29329445:11829248,505283,126483 -h4607,621:6630773,29329445:0,0,0 -g4607,621:8898318,29329445 -g4607,621:10288992,29329445 -g4607,621:11996860,29329445 -k4607,622:16141685,29329445:2318337 -k4607,622:18460021,29329445:2318336 -) -(4607,623:6630773,30194525:11829248,530548,102891 -h4607,622:6630773,30194525:0,0,0 -r1,25048:6630773,30194525:0,633439,102891 -g4607,622:7941493,30194525 -g4607,622:7941493,30194525 -g4607,622:11633931,30194525 -g4607,622:13202207,30194525 -k4607,623:16428803,30194525:2031219 -k4607,623:18460021,30194525:2031218 -) -(4607,624:6630773,31059605:11829248,530548,102891 -h4607,623:6630773,31059605:0,0,0 -r1,25048:6630773,31059605:0,633439,102891 -g4607,623:7941493,31059605 -g4607,623:7941493,31059605 -g4607,623:11633931,31059605 -g4607,623:13202207,31059605 -g4607,623:14770483,31059605 -k4607,624:17203110,31059605:1256911 -k4607,624:18460021,31059605:1256911 -) -(4607,625:6630773,31924685:11829248,530548,102891 -h4607,624:6630773,31924685:0,0,0 -r1,25048:6630773,31924685:0,633439,102891 -g4607,624:7941493,31924685 -g4607,624:7941493,31924685 -g4607,624:11633931,31924685 -k4607,625:15634834,31924685:2825187 -k4607,625:18460021,31924685:2825187 -) -(4607,626:6630773,32789765:11829248,538806,102891 -h4607,625:6630773,32789765:0,0,0 -r1,25048:6630773,32789765:0,641697,102891 -g4607,625:7941493,32789765 -g4607,625:7941493,32789765 -g4607,625:12878759,32789765 -k4607,626:16267079,32789765:2192943 -k4607,626:18460021,32789765:2192942 -) -(4607,627:6630773,33654845:11829248,530548,102891 -h4607,626:6630773,33654845:0,0,0 -r1,25048:6630773,33654845:0,633439,102891 -g4607,626:7941493,33654845 -g4607,626:7941493,33654845 -g4607,626:10804046,33654845 -g4607,626:12372322,33654845 -k4607,627:16013860,33654845:2446161 -k4607,627:18460021,33654845:2446161 -) -(4607,628:6630773,34519925:11829248,530548,102891 -h4607,627:6630773,34519925:0,0,0 -r1,25048:6630773,34519925:0,633439,102891 -g4607,627:7941493,34519925 -g4607,627:7941493,34519925 -g4607,627:11633931,34519925 -g4607,627:13202207,34519925 -k4607,628:16428803,34519925:2031219 -k4607,628:18460021,34519925:2031218 -) -(4607,632:6630773,35968273:11829248,426639,126483 -h4607,631:6630773,35968273:0,0,0 -k4607,632:14083855,35968273:4376167 -k4607,632:18460021,35968273:4376166 -) -(4607,633:6630773,36833353:11829248,485622,102891 -h4607,632:6630773,36833353:0,0,0 -r1,25048:6630773,36833353:0,588513,102891 -g4607,632:7941493,36833353 -g4607,632:7941493,36833353 -g4607,632:8729334,36833353 -g4607,632:9899151,36833353 -k4607,633:14568215,36833353:3891807 -k4607,633:18460021,36833353:3891806 -) -] -k4607,668:19606901,36833353:1146880 -r1,25048:19606901,36833353:0,31361099,126483 -k4607,668:20753781,36833353:1146880 -[4607,668:20753781,36833353:11829248,31234616,102891 -(4607,634:20753781,6254097:11829248,485622,102891 -h4607,633:20753781,6254097:0,0,0 -r1,25048:20753781,6254097:0,588513,102891 -g4607,633:22064501,6254097 -g4607,633:22064501,6254097 -g4607,633:22852342,6254097 -g4607,633:24022159,6254097 -g4607,633:25191976,6254097 -g4607,633:26361793,6254097 -g4607,633:27930069,6254097 -g4607,633:29498345,6254097 -k4607,634:31638376,6254097:944654 -k4607,634:32583029,6254097:944653 -) -(4607,635:20753781,7128901:11829248,485622,102891 -h4607,634:20753781,7128901:0,0,0 -r1,25048:20753781,7128901:0,588513,102891 -g4607,634:22064501,7128901 -g4607,634:22064501,7128901 -g4607,634:22852342,7128901 -g4607,634:24022159,7128901 -g4607,634:25191976,7128901 -k4607,635:29485191,7128901:3097838 -k4607,635:32583029,7128901:3097838 -) -(4607,636:20753781,8003706:11829248,485622,102891 -h4607,635:20753781,8003706:0,0,0 -r1,25048:20753781,8003706:0,588513,102891 -g4607,635:22064501,8003706 -g4607,635:22064501,8003706 -g4607,635:23267285,8003706 -g4607,635:24437102,8003706 -k4607,636:29107754,8003706:3475275 -k4607,636:32583029,8003706:3475275 -) -(4607,637:20753781,8878510:11829248,530548,102891 -h4607,636:20753781,8878510:0,0,0 -r1,25048:20753781,8878510:0,633439,102891 -g4607,636:22064501,8878510 -g4607,636:22064501,8878510 -g4607,636:22852342,8878510 -g4607,636:24022159,8878510 -k4607,637:28900283,8878510:3682747 -k4607,637:32583029,8878510:3682746 -) -(4607,638:20753781,9753315:11829248,485622,102891 -h4607,637:20753781,9753315:0,0,0 -r1,25048:20753781,9753315:0,588513,102891 -g4607,637:22064501,9753315 -g4607,637:22064501,9753315 -g4607,637:22852342,9753315 -k4607,638:28116145,9753315:4466885 -k4607,638:32583029,9753315:4466884 -) -(4607,639:20753781,10628119:11829248,485622,102891 -h4607,638:20753781,10628119:0,0,0 -r1,25048:20753781,10628119:0,588513,102891 -g4607,638:22064501,10628119 -g4607,638:22064501,10628119 -g4607,638:22852342,10628119 -k4607,639:28116145,10628119:4466885 -k4607,639:32583029,10628119:4466884 -) -(4607,640:20753781,11502923:11829248,485622,102891 -h4607,639:20753781,11502923:0,0,0 -r1,25048:20753781,11502923:0,588513,102891 -k4607,639:22064501,11502923:1310720 -k4607,639:22064501,11502923:0 -k4607,639:23253869,11502923:185813 -k4607,639:24410270,11502923:185813 -k4607,639:25566671,11502923:185813 -k4607,639:26723072,11502923:185813 -k4607,639:28277932,11502923:185813 -k4607,639:29832792,11502923:185813 -k4607,639:31387652,11502923:185813 -k4607,640:32583029,11502923:0 -k4607,640:32583029,11502923:0 -) -(4607,641:20753781,12377728:11829248,485622,102891 -h4607,640:20753781,12377728:0,0,0 -r1,25048:20753781,12377728:0,588513,102891 -g4607,640:22064501,12377728 -g4607,640:22064501,12377728 -g4607,640:23682227,12377728 -k4607,641:28730317,12377728:3852713 -k4607,641:32583029,12377728:3852712 -) -(4607,642:20753781,13252532:11829248,485622,102891 -h4607,641:20753781,13252532:0,0,0 -r1,25048:20753781,13252532:0,588513,102891 -g4607,641:22064501,13252532 -g4607,641:22064501,13252532 -g4607,641:23267285,13252532 -k4607,642:28323616,13252532:4259413 -k4607,642:32583029,13252532:4259413 -) -(4607,643:20753781,14127336:11829248,485622,102891 -h4607,642:20753781,14127336:0,0,0 -r1,25048:20753781,14127336:0,588513,102891 -g4607,642:22064501,14127336 -g4607,642:22064501,14127336 -g4607,642:22852342,14127336 -g4607,642:24022159,14127336 -k4607,643:28691223,14127336:3891807 -k4607,643:32583029,14127336:3891806 -) -(4607,644:20753781,15002141:11829248,485622,102891 -h4607,643:20753781,15002141:0,0,0 -r1,25048:20753781,15002141:0,588513,102891 -g4607,643:22064501,15002141 -g4607,643:22064501,15002141 -g4607,643:23267285,15002141 -g4607,643:24437102,15002141 -k4607,644:29097924,15002141:3485106 -k4607,644:32583029,15002141:3485105 -) -(4607,645:20753781,15876945:11829248,485622,102891 -h4607,644:20753781,15876945:0,0,0 -r1,25048:20753781,15876945:0,588513,102891 -g4607,644:22064501,15876945 -g4607,644:22064501,15876945 -g4607,644:22852342,15876945 -k4607,645:28116145,15876945:4466885 -k4607,645:32583029,15876945:4466884 -) -(4607,646:20753781,16751750:11829248,485622,102891 -h4607,645:20753781,16751750:0,0,0 -r1,25048:20753781,16751750:0,588513,102891 -g4607,645:22064501,16751750 -g4607,645:22064501,16751750 -g4607,645:23267285,16751750 -k4607,646:28323616,16751750:4259413 -k4607,646:32583029,16751750:4259413 -) -(4607,647:20753781,17626554:11829248,530548,108035 -h4607,646:20753781,17626554:0,0,0 -r1,25048:20753781,17626554:0,638583,108035 -g4607,646:22064501,17626554 -g4607,646:22064501,17626554 -g4607,646:22894385,17626554 -g4607,646:23724269,17626554 -g4607,646:24512110,17626554 -g4607,646:26080386,17626554 -k4607,647:29919566,17626554:2663464 -k4607,647:32583029,17626554:2663463 -) -(4607,649:20753781,18501358:11829248,530548,102891 -h4607,647:20753781,18501358:0,0,0 -r1,25048:20753781,18501358:0,633439,102891 -g4607,647:22064501,18501358 -g4607,647:22064501,18501358 -g4607,647:22894385,18501358 -g4607,647:23682226,18501358 -g4607,647:24852043,18501358 -g4607,647:26021860,18501358 -g4607,647:27191677,18501358 -g4607,647:28361494,18501358 -g4607,647:29531311,18501358 -g4607,647:31099587,18501358 -k4607,647:32583029,18501358:200903 -) -(4607,649:23375221,19366438:9207808,485622,102891 -g4607,647:24923836,19366438 -g4607,647:26492112,19366438 -g4607,648:29583445,19366438 -g4607,648:31151721,19366438 -k4607,648:32583029,19366438:148769 -) -(4607,649:23375221,20231518:9207808,485622,102891 -g4607,648:24923836,20231518 -g4607,648:26492112,20231518 -k4607,649:30135259,20231518:2447770 -k4607,649:32583029,20231518:2447770 -) -(4607,651:20753781,21106323:11829248,530548,102891 -h4607,649:20753781,21106323:0,0,0 -r1,25048:20753781,21106323:0,633439,102891 -g4607,649:22064501,21106323 -g4607,649:22064501,21106323 -g4607,649:23309328,21106323 -g4607,649:24512112,21106323 -g4607,649:25681929,21106323 -g4607,649:26851746,21106323 -g4607,649:28021563,21106323 -g4607,649:29191380,21106323 -g4607,649:30361197,21106323 -k4607,649:32583029,21106323:1337752 -) -(4607,651:23375221,21971403:9207808,485622,102891 -g4607,649:24923836,21971403 -g4607,649:26492112,21971403 -g4607,649:28060388,21971403 -g4607,650:29628664,21971403 -g4607,650:31196940,21971403 -k4607,651:32487673,21971403:95356 -k4607,651:32583029,21971403:95356 -) -(4607,652:20753781,22846207:11829248,538806,102891 -h4607,651:20753781,22846207:0,0,0 -r1,25048:20753781,22846207:0,641697,102891 -g4607,651:22064501,22846207 -g4607,651:22064501,22846207 -g4607,651:22852342,22846207 -g4607,651:24022159,22846207 -g4607,651:25191976,22846207 -g4607,651:26361793,22846207 -g4607,651:27930069,22846207 -g4607,651:29498345,22846207 -k4607,652:31638376,22846207:944654 -k4607,652:32583029,22846207:944653 -) -(4607,653:20753781,23721012:11829248,509904,102891 -h4607,652:20753781,23721012:0,0,0 -r1,25048:20753781,23721012:0,612795,102891 -g4607,652:22064501,23721012 -g4607,652:22064501,23721012 -g4607,652:23682227,23721012 -k4607,653:28531087,23721012:4051942 -k4607,653:32583029,23721012:4051942 -) -(4607,654:20753781,24595816:11829248,509904,102891 -h4607,653:20753781,24595816:0,0,0 -r1,25048:20753781,24595816:0,612795,102891 -g4607,653:22064501,24595816 -g4607,653:22064501,24595816 -g4607,653:23682227,24595816 -k4607,654:28730317,24595816:3852713 -k4607,654:32583029,24595816:3852712 -) -(4607,655:20753781,25470620:11829248,509904,102891 -h4607,654:20753781,25470620:0,0,0 -r1,25048:20753781,25470620:0,612795,102891 -g4607,654:22064501,25470620 -g4607,654:22064501,25470620 -g4607,654:24097170,25470620 -k4607,655:29699316,25470620:2883713 -k4607,655:32583029,25470620:2883713 -) -(4607,656:20753781,26345425:11829248,530548,102891 -h4607,655:20753781,26345425:0,0,0 -r1,25048:20753781,26345425:0,633439,102891 -g4607,655:22064501,26345425 -g4607,655:22064501,26345425 -g4607,655:23682227,26345425 -k4607,656:28521257,26345425:4061773 -k4607,656:32583029,26345425:4061772 -) -(4607,657:20753781,27220229:11829248,509904,102891 -h4607,656:20753781,27220229:0,0,0 -r1,25048:20753781,27220229:0,612795,102891 -g4607,656:22064501,27220229 -g4607,656:22064501,27220229 -g4607,656:24097170,27220229 -k4607,657:28937788,27220229:3645241 -k4607,657:32583029,27220229:3645241 -) -(4607,658:20753781,28095034:11829248,509904,102891 -h4607,657:20753781,28095034:0,0,0 -r1,25048:20753781,28095034:0,612795,102891 -g4607,657:22064501,28095034 -g4607,657:22064501,28095034 -g4607,657:23682227,28095034 -g4607,657:26773560,28095034 -k4607,658:30275983,28095034:2307046 -k4607,658:32583029,28095034:2307046 -) -(4607,659:20753781,28969838:11829248,509904,102891 -h4607,658:20753781,28969838:0,0,0 -r1,25048:20753781,28969838:0,612795,102891 -g4607,658:22064501,28969838 -g4607,658:22064501,28969838 -g4607,658:24097170,28969838 -k4607,659:28937788,28969838:3645241 -k4607,659:32583029,28969838:3645241 -) -(4607,660:20753781,29844642:11829248,509904,102891 -h4607,659:20753781,29844642:0,0,0 -r1,25048:20753781,29844642:0,612795,102891 -g4607,659:22064501,29844642 -g4607,659:22064501,29844642 -g4607,659:23267285,29844642 -k4607,660:28313786,29844642:4269244 -k4607,660:32583029,29844642:4269243 -) -(4607,661:20753781,30719447:11829248,530548,102891 -h4607,660:20753781,30719447:0,0,0 -r1,25048:20753781,30719447:0,633439,102891 -g4607,660:22064501,30719447 -g4607,660:22064501,30719447 -g4607,660:24097170,30719447 -g4607,660:25266987,30719447 -k4607,661:29313637,30719447:3269393 -k4607,661:32583029,30719447:3269392 -) -(4607,662:20753781,31594251:11829248,509904,102891 -h4607,661:20753781,31594251:0,0,0 -r1,25048:20753781,31594251:0,612795,102891 -g4607,661:22064501,31594251 -g4607,661:22064501,31594251 -g4607,661:22852342,31594251 -g4607,661:24022159,31594251 -k4607,662:28701053,31594251:3881976 -k4607,662:32583029,31594251:3881976 -) -(4607,663:20753781,32469055:11829248,509904,102891 -h4607,662:20753781,32469055:0,0,0 -r1,25048:20753781,32469055:0,612795,102891 -g4607,662:22064501,32469055 -g4607,662:22064501,32469055 -g4607,662:23267285,32469055 -k4607,663:28323616,32469055:4259413 -k4607,663:32583029,32469055:4259413 -) -(4607,664:20753781,33343860:11829248,497518,102891 -h4607,663:20753781,33343860:0,0,0 -r1,25048:20753781,33343860:0,600409,102891 -g4607,663:22064501,33343860 -g4607,663:22064501,33343860 -g4607,663:22852342,33343860 -k4607,664:28106314,33343860:4476715 -k4607,664:32583029,33343860:4476715 -) -(4607,665:20753781,34218664:11829248,530548,102891 -h4607,664:20753781,34218664:0,0,0 -r1,25048:20753781,34218664:0,633439,102891 -g4607,664:22064501,34218664 -g4607,664:22064501,34218664 -g4607,664:22852342,34218664 -g4607,664:24022159,34218664 -k4607,665:28701053,34218664:3881976 -k4607,665:32583029,34218664:3881976 -) -(4607,666:20753781,35093469:11829248,530548,102891 -h4607,665:20753781,35093469:0,0,0 -r1,25048:20753781,35093469:0,633439,102891 -g4607,665:22064501,35093469 -g4607,665:22064501,35093469 -g4607,665:23267285,35093469 -g4607,665:24835561,35093469 -g4607,665:26403837,35093469 -g4607,665:29495170,35093469 -g4607,665:31063446,35093469 -k4607,665:32583029,35093469:237044 -) -(4607,666:23375221,35958549:9207808,485622,11795 -k4607,666:28566983,35958549:4016046 -k4607,666:32583029,35958549:4016046 -) -(4607,667:20753781,36833353:11829248,530548,102891 -h4607,666:20753781,36833353:0,0,0 -r1,25048:20753781,36833353:0,633439,102891 -g4607,666:22064501,36833353 -g4607,666:22064501,36833353 -g4607,666:23267285,36833353 -k4607,667:28323616,36833353:4259413 -k4607,667:32583029,36833353:4259413 -) -] -(4607,668:32583029,36833353:0,355205,126483 -h4607,668:32583029,36833353:420741,355205,126483 -k4607,668:32583029,36833353:-420741 -) +[4612,1:6630773,12185121:25952256,6586384,0 +(4612,1:6630773,7073297:25952256,32768,229376 +(4612,1:6630773,7073297:0,32768,229376 +(4612,1:6630773,7073297:5505024,32768,229376 +r1,25048:12135797,7073297:5505024,262144,229376 +) +k4612,1:6630773,7073297:-5505024 +) +) +(4612,1:6630773,8842777:25952256,909509,227671 +h4612,1:6630773,8842777:0,0,0 +g4612,1:13386617,8842777 +g4612,1:17354953,8842777 +k4612,1:27885671,8842777:4697358 +k4612,1:32583029,8842777:4697358 +) +(4612,1:6630773,9498145:25952256,32768,0 +(4612,1:6630773,9498145:5505024,32768,0 +r1,25048:12135797,9498145:5505024,32768,0 +) +k4612,1:22359413,9498145:10223616 +k4612,1:32583029,9498145:10223616 +) +] +(4612,1:6630773,13050201:25952256,513147,126483 +k4612,1:10222397,13050201:192272 +k4612,1:12261475,13050201:192273 +k4612,1:15548357,13050201:192272 +k4612,1:16932075,13050201:192273 +k4612,1:18632986,13050201:192272 +k4612,1:21413276,13050201:192273 +k4612,1:23794451,13050201:192272 +k4612,1:24602762,13050201:192273 +k4612,1:25814119,13050201:192272 +k4612,1:27583188,13050201:192273 +k4612,1:28434752,13050201:192272 +k4612,1:29646110,13050201:192273 +k4612,1:31420421,13050201:192272 +k4612,1:32583029,13050201:0 +) +(4612,1:6630773,14049978:25952256,807758,219026 +k4612,1:8684990,14049978:184475 +k4612,1:9630992,14049978:184474 +k4612,1:10834552,14049978:184475 +k4612,1:12363169,14049978:184474 +(4612,1:12363169,14049978:0,807758,219026 +r1,25048:13506920,14049978:1143751,1026784,219026 +k4612,1:12363169,14049978:-1143751 +) +(4612,1:12363169,14049978:1143751,807758,219026 +) +k4612,1:13691395,14049978:184475 +k4612,1:15067314,14049978:184474 +k4612,1:18877241,14049978:184475 +k4612,1:19823243,14049978:184474 +k4612,1:20363578,14049978:184475 +k4612,1:23363480,14049978:184475 +k4612,1:24592598,14049978:184474 +k4612,1:25436365,14049978:184475 +k4612,1:26639924,14049978:184474 +k4612,1:28477872,14049978:184475 +k4612,1:30693307,14049978:184474 +k4612,1:31563944,14049978:184475 +k4612,1:32583029,14049978:0 +) +(4612,1:6630773,14915058:25952256,473825,7863 +k4612,1:32583029,14915058:24555684 +g4612,1:32583029,14915058 +) +(4612,5:6630773,16566570:25952256,505283,134348 +h4612,3:6606525,16566570:0,0,0 +g4612,3:7929041,16566570 +g4612,3:9783054,16566570 +g4612,3:11114090,16566570 +g4612,3:14388268,16566570 +g4612,3:15238925,16566570 +g4612,3:17964567,16566570 +g4612,3:19182881,16566570 +g4612,3:21216463,16566570 +g4612,3:22038939,16566570 +g4612,3:23016080,16566570 +g4612,3:23613768,16566570 +g4612,3:26939720,16566570 +g4612,3:29221683,16566570 +k4612,5:31290985,16566570:1292045 +k4612,5:32583029,16566570:1292044 +) +(4612,9:6630773,18087010:25952256,505283,102891 +h4612,8:6630773,18087010:0,0,0 +g4612,8:8250823,18087010 +g4612,8:9101480,18087010 +g4612,8:11331670,18087010 +g4612,8:12549984,18087010 +g4612,8:13897404,18087010 +g4612,8:15776976,18087010 +g4612,8:16592243,18087010 +g4612,8:17147332,18087010 +g4612,8:19825133,18087010 +k4612,9:26602540,18087010:5980489 +k4612,9:32583029,18087010:5980489 +) +(4612,11:6630773,18952090:25952256,513147,102891 +h4612,9:6630773,18952090:0,0,0 +g4612,9:8250823,18952090 +g4612,9:9101480,18952090 +g4612,9:10498052,18952090 +g4612,9:11053141,18952090 +g4612,9:12535565,18952090 +g4612,9:15117683,18952090 +g4612,9:15968340,18952090 +g4612,9:16523429,18952090 +g4612,9:18112021,18952090 +g4612,9:20187546,18952090 +g4612,9:21245297,18952090 +g4612,9:22463611,18952090 +g4612,9:24282235,18952090 +g4612,9:25672909,18952090 +g4612,9:27762852,18952090 +k4612,11:30561569,18952090:2021460 +k4612,11:32583029,18952090:2021460 +) +(4612,12:6630773,19817170:25952256,505283,134348 +h4612,11:6630773,19817170:0,0,0 +g4612,11:8250823,19817170 +g4612,11:9101480,19817170 +g4612,11:11541385,19817170 +g4612,11:12759699,19817170 +g4612,11:16242282,19817170 +g4612,11:17954737,19817170 +g4612,11:18805394,19817170 +g4612,11:20973980,19817170 +g4612,11:24584358,19817170 +k4612,12:29181382,19817170:3401647 +k4612,12:32583029,19817170:3401647 +) +(4612,13:6630773,20682250:25952256,513147,134348 +h4612,12:6630773,20682250:0,0,0 +g4612,12:8250823,20682250 +g4612,12:9101480,20682250 +g4612,12:11693428,20682250 +g4612,12:12248517,20682250 +g4612,12:14341736,20682250 +g4612,12:15808431,20682250 +g4612,12:16363520,20682250 +g4612,12:18540626,20682250 +g4612,12:20133806,20682250 +g4612,12:23304437,20682250 +g4612,12:26015006,20682250 +k4612,13:29687646,20682250:2895383 +k4612,13:32583029,20682250:2895383 +) +(4612,15:6630773,21547330:25952256,513147,134348 +h4612,13:6630773,21547330:0,0,0 +g4612,13:8250823,21547330 +g4612,13:9101480,21547330 +g4612,13:11230089,21547330 +g4612,13:11785178,21547330 +g4612,13:13857426,21547330 +g4612,13:17031334,21547330 +g4612,13:19096373,21547330 +g4612,13:20863223,21547330 +g4612,13:23733699,21547330 +g4612,13:26253558,21547330 +g4612,13:29149594,21547330 +k4612,15:31264771,21547330:1318259 +k4612,15:32583029,21547330:1318258 +) +(4612,16:6630773,22412410:25952256,513147,102891 +h4612,15:6630773,22412410:0,0,0 +g4612,15:8250823,22412410 +g4612,15:9101480,22412410 +g4612,15:11230089,22412410 +g4612,15:11785178,22412410 +g4612,15:13962284,22412410 +g4612,15:14820805,22412410 +g4612,15:17271196,22412410 +k4612,16:25325572,22412410:7257458 +k4612,16:32583029,22412410:7257457 +) +(4612,17:6630773,23277490:25952256,513147,126483 +h4612,16:6630773,23277490:0,0,0 +g4612,16:8250823,23277490 +g4612,16:9101480,23277490 +g4612,16:11230089,23277490 +g4612,16:12200021,23277490 +g4612,16:14405307,23277490 +g4612,16:15993899,23277490 +g4612,16:18570119,23277490 +k4612,17:25975033,23277490:6607996 +k4612,17:32583029,23277490:6607996 +) +(4612,18:6630773,24142570:25952256,505283,126483 +h4612,17:6630773,24142570:0,0,0 +g4612,17:8250823,24142570 +g4612,17:9101480,24142570 +g4612,17:11230089,24142570 +g4612,17:12200021,24142570 +g4612,17:14405307,24142570 +g4612,17:16098757,24142570 +k4612,18:24729522,24142570:7853508 +k4612,18:32583029,24142570:7853507 +) +(4612,19:6630773,25007650:25952256,485622,126483 +h4612,18:6630773,25007650:0,0,0 +g4612,18:8250823,25007650 +g4612,18:9101480,25007650 +g4612,18:11230089,25007650 +g4612,18:12200021,25007650 +g4612,18:14405307,25007650 +g4612,18:17083108,25007650 +k4612,19:25231528,25007650:7351502 +k4612,19:32583029,25007650:7351501 +) +(4612,20:6630773,25872730:25952256,513147,126483 +h4612,19:6630773,25872730:0,0,0 +g4612,19:8250823,25872730 +g4612,19:9101480,25872730 +g4612,19:10825076,25872730 +g4612,19:13367217,25872730 +g4612,19:15358856,25872730 +g4612,19:16174123,25872730 +g4612,19:16729212,25872730 +g4612,19:19323127,25872730 +k4612,20:26341707,25872730:6241323 +k4612,20:32583029,25872730:6241322 +) +(4612,21:6630773,26737810:25952256,513147,134348 +h4612,20:6630773,26737810:0,0,0 +g4612,20:8250823,26737810 +g4612,20:9101480,26737810 +g4612,20:10566865,26737810 +g4612,20:11785179,26737810 +g4612,20:14894862,26737810 +g4612,20:17831530,26737810 +g4612,20:20364496,26737810 +g4612,20:21223017,26737810 +g4612,20:21778106,26737810 +g4612,20:25058182,26737810 +k4612,21:29418294,26737810:3164735 +k4612,21:32583029,26737810:3164735 +) +(4612,22:6630773,27602890:25952256,513147,134348 +h4612,21:6630773,27602890:0,0,0 +g4612,21:8250823,27602890 +g4612,21:9101480,27602890 +g4612,21:10566865,27602890 +g4612,21:11785179,27602890 +g4612,21:13997674,27602890 +g4612,21:14856195,27602890 +g4612,21:15411284,27602890 +g4612,21:18585192,27602890 +g4612,21:21150926,27602890 +k4612,22:27265437,27602890:5317593 +k4612,22:32583029,27602890:5317592 +) +(4612,23:6630773,28467970:25952256,505283,134348 +h4612,22:6630773,28467970:0,0,0 +g4612,22:8250823,28467970 +g4612,22:9101480,28467970 +g4612,22:10279162,28467970 +g4612,22:12509352,28467970 +g4612,22:13360009,28467970 +g4612,22:15983415,28467970 +g4612,22:16868806,28467970 +g4612,22:17423895,28467970 +g4612,22:19391941,28467970 +g4612,22:22297152,28467970 +k4612,23:27828719,28467970:4754310 +k4612,23:32583029,28467970:4754310 +) +(4612,24:6630773,29333050:25952256,513147,134348 +h4612,23:6630773,29333050:0,0,0 +g4612,23:8250823,29333050 +g4612,23:9101480,29333050 +g4612,23:11270066,29333050 +g4612,23:12152180,29333050 +g4612,23:14567837,29333050 +g4612,23:15122926,29333050 +g4612,23:17902307,29333050 +g4612,23:19669157,29333050 +g4612,23:22249309,29333050 +k4612,24:28013858,29333050:4569172 +k4612,24:32583029,29333050:4569171 +) +(4612,25:6630773,30198130:25952256,513147,134348 +h4612,24:6630773,30198130:0,0,0 +g4612,24:8250823,30198130 +g4612,24:9101480,30198130 +g4612,24:11270066,30198130 +g4612,24:12152180,30198130 +g4612,24:14567837,30198130 +g4612,24:15122926,30198130 +g4612,24:17902307,30198130 +g4612,24:19669157,30198130 +g4612,24:22627452,30198130 +k4612,25:28193099,30198130:4389931 +k4612,25:32583029,30198130:4389930 +) +(4612,26:6630773,31063210:25952256,505283,126483 +h4612,25:6630773,31063210:0,0,0 +g4612,25:8250823,31063210 +g4612,25:9101480,31063210 +g4612,25:11270066,31063210 +g4612,25:12488380,31063210 +g4612,25:15111786,31063210 +g4612,25:16398257,31063210 +g4612,25:17213524,31063210 +g4612,25:18393827,31063210 +g4612,25:22170011,31063210 +k4612,26:27765149,31063210:4817881 +k4612,26:32583029,31063210:4817880 +) +(4612,27:6630773,31928290:25952256,505283,134348 +h4612,26:6630773,31928290:0,0,0 +g4612,26:8250823,31928290 +g4612,26:9101480,31928290 +g4612,26:11270066,31928290 +g4612,26:12488380,31928290 +g4612,26:13102452,31928290 +g4612,26:16043707,31928290 +g4612,26:16858974,31928290 +g4612,26:18039277,31928290 +g4612,26:21815461,31928290 +k4612,27:27587874,31928290:4995156 +k4612,27:32583029,31928290:4995155 +) +(4612,28:6630773,32793370:25952256,513147,102891 +h4612,27:6630773,32793370:0,0,0 +g4612,27:8250823,32793370 +g4612,27:9101480,32793370 +g4612,27:11016442,32793370 +g4612,27:11571531,32793370 +g4612,27:12764286,32793370 +g4612,27:13622807,32793370 +g4612,27:15211399,32793370 +g4612,27:18117920,32793370 +k4612,28:25748934,32793370:6834096 +k4612,28:32583029,32793370:6834095 +) +(4612,29:6630773,33658450:25952256,513147,102891 +h4612,28:6630773,33658450:0,0,0 +g4612,28:8250823,33658450 +g4612,28:9101480,33658450 +g4612,28:11040035,33658450 +g4612,28:13952455,33658450 +g4612,28:14834569,33658450 +g4612,28:16567996,33658450 +g4612,28:17383263,33658450 +g4612,28:17938352,33658450 +g4612,28:19526944,33658450 +g4612,28:22103164,33658450 +k4612,29:27940785,33658450:4642244 +k4612,29:32583029,33658450:4642244 +) +(4612,30:6630773,34523530:25952256,513147,126483 +h4612,29:6630773,34523530:0,0,0 +g4612,29:8250823,34523530 +g4612,29:9101480,34523530 +g4612,29:11580051,34523530 +g4612,29:14273580,34523530 +g4612,29:16007007,34523530 +g4612,29:17773857,34523530 +g4612,29:18328946,34523530 +g4612,29:19917538,34523530 +g4612,29:22493758,34523530 +k4612,30:28136082,34523530:4446947 +k4612,30:32583029,34523530:4446947 +) +(4612,32:6630773,35388610:25952256,513147,134348 +h4612,30:6630773,35388610:0,0,0 +g4612,30:8250823,35388610 +g4612,30:9101480,35388610 +g4612,30:12808851,35388610 +g4612,30:15628209,35388610 +g4612,30:18669079,35388610 +g4612,30:20435929,35388610 +g4612,30:20991018,35388610 +g4612,30:22579610,35388610 +g4612,30:24655135,35388610 +g4612,30:25615892,35388610 +g4612,30:28208496,35388610 +k4612,32:30993451,35388610:1589578 +k4612,32:32583029,35388610:1589578 +) +(4612,33:6630773,36253690:25952256,513147,134348 +h4612,32:6630773,36253690:0,0,0 +g4612,32:8250823,36253690 +g4612,32:9101480,36253690 +g4612,32:12808851,36253690 +g4612,32:14164790,36253690 +g4612,32:16875359,36253690 +g4612,32:18642209,36253690 +g4612,32:19197298,36253690 +g4612,32:20785890,36253690 +g4612,32:22861415,36253690 +g4612,32:23822172,36253690 +g4612,32:26414776,36253690 +k4612,33:30096591,36253690:2486438 +k4612,33:32583029,36253690:2486438 +) +(4612,35:6630773,37118770:25952256,513147,115847 +h4612,33:6630773,37118770:0,0,0 +g4612,33:8250823,37118770 +g4612,33:9101480,37118770 +g4612,33:10492154,37118770 +g4612,33:11157344,37118770 +g4612,33:11712433,37118770 +g4612,33:13889539,37118770 +g4612,33:16790817,37118770 +g4612,33:17799416,37118770 +g4612,33:20009290,37118770 +g4612,33:21910489,37118770 +g4612,33:23552165,37118770 +(4612,33:23552165,37118770:0,414482,115847 +r1,25048:24262143,37118770:709978,530329,115847 +k4612,33:23552165,37118770:-709978 +) +(4612,33:23552165,37118770:709978,414482,115847 +k4612,33:23552165,37118770:3277 +h4612,33:24258866,37118770:0,411205,112570 +) +g4612,33:24461372,37118770 +g4612,33:25550580,37118770 +(4612,33:25550580,37118770:0,414482,115847 +r1,25048:26612269,37118770:1061689,530329,115847 +k4612,33:25550580,37118770:-1061689 +) +(4612,33:25550580,37118770:1061689,414482,115847 +k4612,33:25550580,37118770:3277 +h4612,33:26608992,37118770:0,411205,112570 +) +g4612,33:27018592,37118770 +g4612,33:29729161,37118770 +k4612,35:31544724,37118770:1038306 +k4612,35:32583029,37118770:1038305 +) +(4612,37:6630773,37983850:25952256,513147,115847 +h4612,35:6630773,37983850:0,0,0 +g4612,35:8250823,37983850 +g4612,35:9101480,37983850 +g4612,35:10492154,37983850 +g4612,35:11157344,37983850 +g4612,35:11712433,37983850 +g4612,35:13889539,37983850 +g4612,35:16790817,37983850 +g4612,35:18146756,37983850 +g4612,35:19028870,37983850 +g4612,35:20878296,37983850 +(4612,35:20878296,37983850:0,414482,115847 +r1,25048:21588274,37983850:709978,530329,115847 +k4612,35:20878296,37983850:-709978 +) +(4612,35:20878296,37983850:709978,414482,115847 +k4612,35:20878296,37983850:3277 +h4612,35:21584997,37983850:0,411205,112570 +) +g4612,35:21787503,37983850 +g4612,35:22876711,37983850 +(4612,35:22876711,37983850:0,414482,115847 +r1,25048:23938400,37983850:1061689,530329,115847 +k4612,35:22876711,37983850:-1061689 +) +(4612,35:22876711,37983850:1061689,414482,115847 +k4612,35:22876711,37983850:3277 +h4612,35:23935123,37983850:0,411205,112570 +) +g4612,35:24344723,37983850 +g4612,35:27055292,37983850 +k4612,37:30217620,37983850:2365410 +k4612,37:32583029,37983850:2365409 +) +(4612,39:6630773,38848930:25952256,505283,134348 +h4612,37:6630773,38848930:0,0,0 +g4612,37:8250823,38848930 +g4612,37:9101480,38848930 +g4612,37:10667135,38848930 +g4612,37:13185683,38848930 +g4612,37:15594786,38848930 +g4612,37:18091707,38848930 +g4612,37:21820050,38848930 +g4612,37:22635317,38848930 +g4612,37:25809225,38848930 +g4612,37:28705261,38848930 +k4612,39:31032774,38848930:1550256 +k4612,39:32583029,38848930:1550255 +) +(4612,40:6630773,39714010:25952256,505283,134348 +h4612,39:6630773,39714010:0,0,0 +g4612,39:8250823,39714010 +g4612,39:9101480,39714010 +g4612,39:10393194,39714010 +g4612,39:11363126,39714010 +g4612,39:14299794,39714010 +g4612,39:17579870,39714010 +k4612,40:25679138,39714010:6903891 +k4612,40:32583029,39714010:6903891 +) +(4612,41:6630773,40579090:25952256,505283,134348 +h4612,40:6630773,40579090:0,0,0 +g4612,40:8250823,40579090 +g4612,40:9101480,40579090 +g4612,40:10886680,40579090 +g4612,40:12474617,40579090 +g4612,40:15648525,40579090 +g4612,40:18544561,40579090 +k4612,41:25962254,40579090:6620775 +k4612,41:32583029,40579090:6620775 ) ] (1,25048:32583029,45706769:0,0,0 @@ -457272,8 +458100,11 @@ g1,25048:32583029,45706769 ) ) ] -(1,25048:6630773,47279633:25952256,0,0 -h1,25048:6630773,47279633:25952256,0,0 +(1,25048:6630773,47279633:25952256,481690,0 +(1,25048:6630773,47279633:25952256,481690,0 +k1,25048:19009213,47279633:12378440 +k1,25048:32583030,47279633:12378440 +) ) ] (1,25048:4262630,4025873:0,0,0 @@ -457286,676 +458117,13 @@ g1,25048:-473656,-710413 ) ] ) +h1,25048:4262630,4025873:0,0,0 ] -!25090 -}461 -Input:4608:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\faqindex.ind -Input:4609:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4610:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4611:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:4612:C:/Users\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!464 -{462 -[1,25050:4262630,47279633:28320399,43253760,0 -(1,25050:4262630,4025873:0,0,0 -[1,25050:-473656,4025873:0,0,0 -(1,25050:-473656,-710413:0,0,0 -(1,25050:-473656,-644877:0,0,0 -k1,25050:-473656,-644877:-65536 -) -(1,25050:-473656,4736287:0,0,0 -k1,25050:-473656,4736287:5209943 -) -g1,25050:-473656,-710413 -) -] -) -[1,25050:6630773,47279633:25952256,43253760,0 -[1,25050:6630773,4812305:25952256,786432,0 -(1,25050:6630773,4812305:25952256,0,0 -(1,25050:6630773,4812305:25952256,0,0 -g1,25050:3078558,4812305 -[1,25050:3078558,4812305:0,0,0 -(1,25050:3078558,2439708:0,1703936,0 -k1,25050:1358238,2439708:-1720320 -(1,23097:1358238,2439708:1720320,1703936,0 -(1,23097:1358238,2439708:1179648,16384,0 -r1,25050:2537886,2439708:1179648,16384,0 -) -g1,23097:3062174,2439708 -(1,23097:3062174,2439708:16384,1703936,0 -[1,23097:3062174,2439708:25952256,1703936,0 -(1,23097:3062174,1915420:25952256,1179648,0 -(1,23097:3062174,1915420:16384,1179648,0 -r1,25050:3078558,1915420:16384,1179648,0 -) -k1,23097:29014430,1915420:25935872 -g1,23097:29014430,1915420 -) -] -) -) -) -] -[1,25050:3078558,4812305:0,0,0 -(1,25050:3078558,2439708:0,1703936,0 -g1,25050:29030814,2439708 -g1,25050:36135244,2439708 -(1,23097:36135244,2439708:1720320,1703936,0 -(1,23097:36135244,2439708:16384,1703936,0 -[1,23097:36135244,2439708:25952256,1703936,0 -(1,23097:36135244,1915420:25952256,1179648,0 -(1,23097:36135244,1915420:16384,1179648,0 -r1,25050:36151628,1915420:16384,1179648,0 -) -k1,23097:62087500,1915420:25935872 -g1,23097:62087500,1915420 -) -] -) -g1,23097:36675916,2439708 -(1,23097:36675916,2439708:1179648,16384,0 -r1,25050:37855564,2439708:1179648,16384,0 -) -) -k1,25050:3078556,2439708:-34777008 -) -] -[1,25050:3078558,4812305:0,0,0 -(1,25050:3078558,49800853:0,16384,2228224 -k1,25050:1358238,49800853:-1720320 -(1,23097:1358238,49800853:1720320,16384,2228224 -(1,23097:1358238,49800853:1179648,16384,0 -r1,25050:2537886,49800853:1179648,16384,0 -) -g1,23097:3062174,49800853 -(1,23097:3062174,52029077:16384,1703936,0 -[1,23097:3062174,52029077:25952256,1703936,0 -(1,23097:3062174,51504789:25952256,1179648,0 -(1,23097:3062174,51504789:16384,1179648,0 -r1,25050:3078558,51504789:16384,1179648,0 -) -k1,23097:29014430,51504789:25935872 -g1,23097:29014430,51504789 -) -] -) -) -) -] -[1,25050:3078558,4812305:0,0,0 -(1,25050:3078558,49800853:0,16384,2228224 -g1,25050:29030814,49800853 -g1,25050:36135244,49800853 -(1,23097:36135244,49800853:1720320,16384,2228224 -(1,23097:36135244,52029077:16384,1703936,0 -[1,23097:36135244,52029077:25952256,1703936,0 -(1,23097:36135244,51504789:25952256,1179648,0 -(1,23097:36135244,51504789:16384,1179648,0 -r1,25050:36151628,51504789:16384,1179648,0 -) -k1,23097:62087500,51504789:25935872 -g1,23097:62087500,51504789 -) -] -) -g1,23097:36675916,49800853 -(1,23097:36675916,49800853:1179648,16384,0 -r1,25050:37855564,49800853:1179648,16384,0 -) -) -k1,25050:3078556,49800853:-34777008 -) -] -g1,25050:6630773,4812305 -) -) -] -[1,25050:6630773,45706769:25952256,40108032,0 -(1,25050:6630773,45706769:25952256,40108032,0 -(1,25050:6630773,45706769:0,0,0 -g1,25050:6630773,45706769 -) -[1,25050:6630773,45706769:25952256,40108032,0 -[4608,1:6630773,12185121:25952256,6586384,0 -(4608,1:6630773,7073297:25952256,32768,229376 -(4608,1:6630773,7073297:0,32768,229376 -(4608,1:6630773,7073297:5505024,32768,229376 -r1,25050:12135797,7073297:5505024,262144,229376 -) -k4608,1:6630773,7073297:-5505024 -) -) -(4608,1:6630773,8842777:25952256,909509,227671 -h4608,1:6630773,8842777:0,0,0 -g4608,1:13386617,8842777 -g4608,1:17354953,8842777 -k4608,1:27885671,8842777:4697358 -k4608,1:32583029,8842777:4697358 -) -(4608,1:6630773,9498145:25952256,32768,0 -(4608,1:6630773,9498145:5505024,32768,0 -r1,25050:12135797,9498145:5505024,32768,0 -) -k4608,1:22359413,9498145:10223616 -k4608,1:32583029,9498145:10223616 -) -] -(4608,1:6630773,13050201:25952256,513147,126483 -k4608,1:10222397,13050201:192272 -k4608,1:12261475,13050201:192273 -k4608,1:15548357,13050201:192272 -k4608,1:16932075,13050201:192273 -k4608,1:18632986,13050201:192272 -k4608,1:21413276,13050201:192273 -k4608,1:23794451,13050201:192272 -k4608,1:24602762,13050201:192273 -k4608,1:25814119,13050201:192272 -k4608,1:27583188,13050201:192273 -k4608,1:28434752,13050201:192272 -k4608,1:29646110,13050201:192273 -k4608,1:31420421,13050201:192272 -k4608,1:32583029,13050201:0 -) -(4608,1:6630773,14049978:25952256,807758,219026 -k4608,1:8684990,14049978:184475 -k4608,1:9630992,14049978:184474 -k4608,1:10834552,14049978:184475 -k4608,1:12363169,14049978:184474 -(4608,1:12363169,14049978:0,807758,219026 -r1,25050:13506920,14049978:1143751,1026784,219026 -k4608,1:12363169,14049978:-1143751 -) -(4608,1:12363169,14049978:1143751,807758,219026 -) -k4608,1:13691395,14049978:184475 -k4608,1:15067314,14049978:184474 -k4608,1:18877241,14049978:184475 -k4608,1:19823243,14049978:184474 -k4608,1:20363578,14049978:184475 -k4608,1:23363480,14049978:184475 -k4608,1:24592598,14049978:184474 -k4608,1:25436365,14049978:184475 -k4608,1:26639924,14049978:184474 -k4608,1:28477872,14049978:184475 -k4608,1:30693307,14049978:184474 -k4608,1:31563944,14049978:184475 -k4608,1:32583029,14049978:0 -) -(4608,1:6630773,14915058:25952256,473825,7863 -k4608,1:32583029,14915058:24555684 -g4608,1:32583029,14915058 -) -(4608,5:6630773,16566570:25952256,505283,134348 -h4608,3:6606525,16566570:0,0,0 -g4608,3:7929041,16566570 -g4608,3:9783054,16566570 -g4608,3:11114090,16566570 -g4608,3:14388268,16566570 -g4608,3:15238925,16566570 -g4608,3:17964567,16566570 -g4608,3:19182881,16566570 -g4608,3:21216463,16566570 -g4608,3:22038939,16566570 -g4608,3:23016080,16566570 -g4608,3:23613768,16566570 -g4608,3:26939720,16566570 -g4608,3:29221683,16566570 -k4608,5:31290985,16566570:1292045 -k4608,5:32583029,16566570:1292044 -) -(4608,9:6630773,18087010:25952256,505283,102891 -h4608,8:6630773,18087010:0,0,0 -g4608,8:8250823,18087010 -g4608,8:9101480,18087010 -g4608,8:11331670,18087010 -g4608,8:12549984,18087010 -g4608,8:13897404,18087010 -g4608,8:15776976,18087010 -g4608,8:16592243,18087010 -g4608,8:17147332,18087010 -g4608,8:19825133,18087010 -k4608,9:26602540,18087010:5980489 -k4608,9:32583029,18087010:5980489 -) -(4608,11:6630773,18952090:25952256,513147,102891 -h4608,9:6630773,18952090:0,0,0 -g4608,9:8250823,18952090 -g4608,9:9101480,18952090 -g4608,9:10498052,18952090 -g4608,9:11053141,18952090 -g4608,9:12535565,18952090 -g4608,9:15117683,18952090 -g4608,9:15968340,18952090 -g4608,9:16523429,18952090 -g4608,9:18112021,18952090 -g4608,9:20187546,18952090 -g4608,9:21245297,18952090 -g4608,9:22463611,18952090 -g4608,9:24282235,18952090 -g4608,9:25672909,18952090 -g4608,9:27762852,18952090 -k4608,11:30561569,18952090:2021460 -k4608,11:32583029,18952090:2021460 -) -(4608,12:6630773,19817170:25952256,505283,134348 -h4608,11:6630773,19817170:0,0,0 -g4608,11:8250823,19817170 -g4608,11:9101480,19817170 -g4608,11:11541385,19817170 -g4608,11:12759699,19817170 -g4608,11:16242282,19817170 -g4608,11:17954737,19817170 -g4608,11:18805394,19817170 -g4608,11:20973980,19817170 -g4608,11:24584358,19817170 -k4608,12:29181382,19817170:3401647 -k4608,12:32583029,19817170:3401647 -) -(4608,13:6630773,20682250:25952256,513147,134348 -h4608,12:6630773,20682250:0,0,0 -g4608,12:8250823,20682250 -g4608,12:9101480,20682250 -g4608,12:11693428,20682250 -g4608,12:12248517,20682250 -g4608,12:14341736,20682250 -g4608,12:15808431,20682250 -g4608,12:16363520,20682250 -g4608,12:18540626,20682250 -g4608,12:20133806,20682250 -g4608,12:23304437,20682250 -g4608,12:26015006,20682250 -k4608,13:29687646,20682250:2895383 -k4608,13:32583029,20682250:2895383 -) -(4608,15:6630773,21547330:25952256,513147,134348 -h4608,13:6630773,21547330:0,0,0 -g4608,13:8250823,21547330 -g4608,13:9101480,21547330 -g4608,13:11230089,21547330 -g4608,13:11785178,21547330 -g4608,13:13857426,21547330 -g4608,13:17031334,21547330 -g4608,13:19096373,21547330 -g4608,13:20863223,21547330 -g4608,13:23733699,21547330 -g4608,13:26253558,21547330 -g4608,13:29149594,21547330 -k4608,15:31264771,21547330:1318259 -k4608,15:32583029,21547330:1318258 -) -(4608,16:6630773,22412410:25952256,513147,102891 -h4608,15:6630773,22412410:0,0,0 -g4608,15:8250823,22412410 -g4608,15:9101480,22412410 -g4608,15:11230089,22412410 -g4608,15:11785178,22412410 -g4608,15:13962284,22412410 -g4608,15:14820805,22412410 -g4608,15:17271196,22412410 -k4608,16:25325572,22412410:7257458 -k4608,16:32583029,22412410:7257457 -) -(4608,17:6630773,23277490:25952256,513147,126483 -h4608,16:6630773,23277490:0,0,0 -g4608,16:8250823,23277490 -g4608,16:9101480,23277490 -g4608,16:11230089,23277490 -g4608,16:12200021,23277490 -g4608,16:14405307,23277490 -g4608,16:15993899,23277490 -g4608,16:18570119,23277490 -k4608,17:25975033,23277490:6607996 -k4608,17:32583029,23277490:6607996 -) -(4608,18:6630773,24142570:25952256,505283,126483 -h4608,17:6630773,24142570:0,0,0 -g4608,17:8250823,24142570 -g4608,17:9101480,24142570 -g4608,17:11230089,24142570 -g4608,17:12200021,24142570 -g4608,17:14405307,24142570 -g4608,17:16098757,24142570 -k4608,18:24729522,24142570:7853508 -k4608,18:32583029,24142570:7853507 -) -(4608,19:6630773,25007650:25952256,485622,126483 -h4608,18:6630773,25007650:0,0,0 -g4608,18:8250823,25007650 -g4608,18:9101480,25007650 -g4608,18:11230089,25007650 -g4608,18:12200021,25007650 -g4608,18:14405307,25007650 -g4608,18:17083108,25007650 -k4608,19:25231528,25007650:7351502 -k4608,19:32583029,25007650:7351501 -) -(4608,20:6630773,25872730:25952256,513147,126483 -h4608,19:6630773,25872730:0,0,0 -g4608,19:8250823,25872730 -g4608,19:9101480,25872730 -g4608,19:10825076,25872730 -g4608,19:13367217,25872730 -g4608,19:15358856,25872730 -g4608,19:16174123,25872730 -g4608,19:16729212,25872730 -g4608,19:19323127,25872730 -k4608,20:26341707,25872730:6241323 -k4608,20:32583029,25872730:6241322 -) -(4608,21:6630773,26737810:25952256,513147,134348 -h4608,20:6630773,26737810:0,0,0 -g4608,20:8250823,26737810 -g4608,20:9101480,26737810 -g4608,20:10566865,26737810 -g4608,20:11785179,26737810 -g4608,20:14894862,26737810 -g4608,20:17831530,26737810 -g4608,20:20364496,26737810 -g4608,20:21223017,26737810 -g4608,20:21778106,26737810 -g4608,20:25058182,26737810 -k4608,21:29418294,26737810:3164735 -k4608,21:32583029,26737810:3164735 -) -(4608,22:6630773,27602890:25952256,513147,134348 -h4608,21:6630773,27602890:0,0,0 -g4608,21:8250823,27602890 -g4608,21:9101480,27602890 -g4608,21:10566865,27602890 -g4608,21:11785179,27602890 -g4608,21:13997674,27602890 -g4608,21:14856195,27602890 -g4608,21:15411284,27602890 -g4608,21:18585192,27602890 -g4608,21:21150926,27602890 -k4608,22:27265437,27602890:5317593 -k4608,22:32583029,27602890:5317592 -) -(4608,23:6630773,28467970:25952256,505283,134348 -h4608,22:6630773,28467970:0,0,0 -g4608,22:8250823,28467970 -g4608,22:9101480,28467970 -g4608,22:10279162,28467970 -g4608,22:12509352,28467970 -g4608,22:13360009,28467970 -g4608,22:15983415,28467970 -g4608,22:16868806,28467970 -g4608,22:17423895,28467970 -g4608,22:19391941,28467970 -g4608,22:22297152,28467970 -k4608,23:27828719,28467970:4754310 -k4608,23:32583029,28467970:4754310 -) -(4608,24:6630773,29333050:25952256,513147,134348 -h4608,23:6630773,29333050:0,0,0 -g4608,23:8250823,29333050 -g4608,23:9101480,29333050 -g4608,23:11270066,29333050 -g4608,23:12152180,29333050 -g4608,23:14567837,29333050 -g4608,23:15122926,29333050 -g4608,23:17902307,29333050 -g4608,23:19669157,29333050 -g4608,23:22249309,29333050 -k4608,24:28013858,29333050:4569172 -k4608,24:32583029,29333050:4569171 -) -(4608,25:6630773,30198130:25952256,513147,134348 -h4608,24:6630773,30198130:0,0,0 -g4608,24:8250823,30198130 -g4608,24:9101480,30198130 -g4608,24:11270066,30198130 -g4608,24:12152180,30198130 -g4608,24:14567837,30198130 -g4608,24:15122926,30198130 -g4608,24:17902307,30198130 -g4608,24:19669157,30198130 -g4608,24:22627452,30198130 -k4608,25:28193099,30198130:4389931 -k4608,25:32583029,30198130:4389930 -) -(4608,26:6630773,31063210:25952256,505283,126483 -h4608,25:6630773,31063210:0,0,0 -g4608,25:8250823,31063210 -g4608,25:9101480,31063210 -g4608,25:11270066,31063210 -g4608,25:12488380,31063210 -g4608,25:15111786,31063210 -g4608,25:16398257,31063210 -g4608,25:17213524,31063210 -g4608,25:18393827,31063210 -g4608,25:22170011,31063210 -k4608,26:27765149,31063210:4817881 -k4608,26:32583029,31063210:4817880 -) -(4608,27:6630773,31928290:25952256,505283,134348 -h4608,26:6630773,31928290:0,0,0 -g4608,26:8250823,31928290 -g4608,26:9101480,31928290 -g4608,26:11270066,31928290 -g4608,26:12488380,31928290 -g4608,26:13102452,31928290 -g4608,26:16043707,31928290 -g4608,26:16858974,31928290 -g4608,26:18039277,31928290 -g4608,26:21815461,31928290 -k4608,27:27587874,31928290:4995156 -k4608,27:32583029,31928290:4995155 -) -(4608,28:6630773,32793370:25952256,513147,102891 -h4608,27:6630773,32793370:0,0,0 -g4608,27:8250823,32793370 -g4608,27:9101480,32793370 -g4608,27:11016442,32793370 -g4608,27:11571531,32793370 -g4608,27:12764286,32793370 -g4608,27:13622807,32793370 -g4608,27:15211399,32793370 -g4608,27:18117920,32793370 -k4608,28:25748934,32793370:6834096 -k4608,28:32583029,32793370:6834095 -) -(4608,29:6630773,33658450:25952256,513147,102891 -h4608,28:6630773,33658450:0,0,0 -g4608,28:8250823,33658450 -g4608,28:9101480,33658450 -g4608,28:11040035,33658450 -g4608,28:13952455,33658450 -g4608,28:14834569,33658450 -g4608,28:16567996,33658450 -g4608,28:17383263,33658450 -g4608,28:17938352,33658450 -g4608,28:19526944,33658450 -g4608,28:22103164,33658450 -k4608,29:27940785,33658450:4642244 -k4608,29:32583029,33658450:4642244 -) -(4608,30:6630773,34523530:25952256,513147,126483 -h4608,29:6630773,34523530:0,0,0 -g4608,29:8250823,34523530 -g4608,29:9101480,34523530 -g4608,29:11580051,34523530 -g4608,29:14273580,34523530 -g4608,29:16007007,34523530 -g4608,29:17773857,34523530 -g4608,29:18328946,34523530 -g4608,29:19917538,34523530 -g4608,29:22493758,34523530 -k4608,30:28136082,34523530:4446947 -k4608,30:32583029,34523530:4446947 -) -(4608,32:6630773,35388610:25952256,513147,134348 -h4608,30:6630773,35388610:0,0,0 -g4608,30:8250823,35388610 -g4608,30:9101480,35388610 -g4608,30:12808851,35388610 -g4608,30:15628209,35388610 -g4608,30:18669079,35388610 -g4608,30:20435929,35388610 -g4608,30:20991018,35388610 -g4608,30:22579610,35388610 -g4608,30:24655135,35388610 -g4608,30:25615892,35388610 -g4608,30:28208496,35388610 -k4608,32:30993451,35388610:1589578 -k4608,32:32583029,35388610:1589578 -) -(4608,33:6630773,36253690:25952256,513147,134348 -h4608,32:6630773,36253690:0,0,0 -g4608,32:8250823,36253690 -g4608,32:9101480,36253690 -g4608,32:12808851,36253690 -g4608,32:14164790,36253690 -g4608,32:16875359,36253690 -g4608,32:18642209,36253690 -g4608,32:19197298,36253690 -g4608,32:20785890,36253690 -g4608,32:22861415,36253690 -g4608,32:23822172,36253690 -g4608,32:26414776,36253690 -k4608,33:30096591,36253690:2486438 -k4608,33:32583029,36253690:2486438 -) -(4608,35:6630773,37118770:25952256,513147,115847 -h4608,33:6630773,37118770:0,0,0 -g4608,33:8250823,37118770 -g4608,33:9101480,37118770 -g4608,33:10492154,37118770 -g4608,33:11157344,37118770 -g4608,33:11712433,37118770 -g4608,33:13889539,37118770 -g4608,33:16790817,37118770 -g4608,33:17799416,37118770 -g4608,33:20009290,37118770 -g4608,33:21910489,37118770 -g4608,33:23552165,37118770 -(4608,33:23552165,37118770:0,414482,115847 -r1,25050:24262143,37118770:709978,530329,115847 -k4608,33:23552165,37118770:-709978 -) -(4608,33:23552165,37118770:709978,414482,115847 -k4608,33:23552165,37118770:3277 -h4608,33:24258866,37118770:0,411205,112570 -) -g4608,33:24461372,37118770 -g4608,33:25550580,37118770 -(4608,33:25550580,37118770:0,414482,115847 -r1,25050:26612269,37118770:1061689,530329,115847 -k4608,33:25550580,37118770:-1061689 -) -(4608,33:25550580,37118770:1061689,414482,115847 -k4608,33:25550580,37118770:3277 -h4608,33:26608992,37118770:0,411205,112570 -) -g4608,33:27018592,37118770 -g4608,33:29729161,37118770 -k4608,35:31544724,37118770:1038306 -k4608,35:32583029,37118770:1038305 -) -(4608,37:6630773,37983850:25952256,513147,115847 -h4608,35:6630773,37983850:0,0,0 -g4608,35:8250823,37983850 -g4608,35:9101480,37983850 -g4608,35:10492154,37983850 -g4608,35:11157344,37983850 -g4608,35:11712433,37983850 -g4608,35:13889539,37983850 -g4608,35:16790817,37983850 -g4608,35:18146756,37983850 -g4608,35:19028870,37983850 -g4608,35:20878296,37983850 -(4608,35:20878296,37983850:0,414482,115847 -r1,25050:21588274,37983850:709978,530329,115847 -k4608,35:20878296,37983850:-709978 -) -(4608,35:20878296,37983850:709978,414482,115847 -k4608,35:20878296,37983850:3277 -h4608,35:21584997,37983850:0,411205,112570 -) -g4608,35:21787503,37983850 -g4608,35:22876711,37983850 -(4608,35:22876711,37983850:0,414482,115847 -r1,25050:23938400,37983850:1061689,530329,115847 -k4608,35:22876711,37983850:-1061689 -) -(4608,35:22876711,37983850:1061689,414482,115847 -k4608,35:22876711,37983850:3277 -h4608,35:23935123,37983850:0,411205,112570 -) -g4608,35:24344723,37983850 -g4608,35:27055292,37983850 -k4608,37:30217620,37983850:2365410 -k4608,37:32583029,37983850:2365409 -) -(4608,39:6630773,38848930:25952256,505283,134348 -h4608,37:6630773,38848930:0,0,0 -g4608,37:8250823,38848930 -g4608,37:9101480,38848930 -g4608,37:10667135,38848930 -g4608,37:13185683,38848930 -g4608,37:15594786,38848930 -g4608,37:18091707,38848930 -g4608,37:20032228,38848930 -g4608,37:22019279,38848930 -g4608,37:22834546,38848930 -g4608,37:26008454,38848930 -g4608,37:28904490,38848930 -k4608,39:31132388,38848930:1450641 -k4608,39:32583029,38848930:1450641 -) -(4608,40:6630773,39714010:25952256,505283,134348 -h4608,39:6630773,39714010:0,0,0 -g4608,39:8250823,39714010 -g4608,39:9101480,39714010 -g4608,39:10393194,39714010 -g4608,39:11363126,39714010 -g4608,39:14299794,39714010 -g4608,39:17579870,39714010 -k4608,40:25679138,39714010:6903891 -k4608,40:32583029,39714010:6903891 -) -(4608,41:6630773,40579090:25952256,505283,134348 -h4608,40:6630773,40579090:0,0,0 -g4608,40:8250823,40579090 -g4608,40:9101480,40579090 -g4608,40:10886680,40579090 -g4608,40:12474617,40579090 -g4608,40:15648525,40579090 -g4608,40:18544561,40579090 -k4608,41:25962254,40579090:6620775 -k4608,41:32583029,40579090:6620775 -) -] -(1,25050:32583029,45706769:0,0,0 -g1,25050:32583029,45706769 -) -) -] -(1,25050:6630773,47279633:25952256,481690,0 -(1,25050:6630773,47279633:25952256,481690,0 -k1,25050:19009213,47279633:12378440 -k1,25050:32583030,47279633:12378440 -) -) -] -(1,25050:4262630,4025873:0,0,0 -[1,25050:-473656,4025873:0,0,0 -(1,25050:-473656,-710413:0,0,0 -(1,25050:-473656,-710413:0,0,0 -g1,25050:-473656,-710413 -) -g1,25050:-473656,-710413 -) -] -) -h1,25050:4262630,4025873:0,0,0 -] -!17995 -}462 -Input:4613:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.aux +!17968 +}463 +Input:4617:C:\Users\aphalo\Documents\manuscripts\Books\learnr-book-crc\using-r-main-crc.aux !104 Postamble: -Count:453337 +Count:453501 !29 Post scriptum: diff --git a/using-r-main-crc.tex b/using-r-main-crc.tex index 278e4764..79d86af5 100644 --- a/using-r-main-crc.tex +++ b/using-r-main-crc.tex @@ -126,7 +126,7 @@ \maketitle -\newpage +\cleardoublepage \setcounter{page}{5} %previous pages will be reserved for frontmatter to be added in later. \tableofcontents @@ -149,7 +149,7 @@ \chapter*{Preface} \end{VF} \noindent -Why the title ``\emph{Learn R: As a Language}''? This book is based on exploration and practice that aims at teaching how to express various operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, exposes the reader to current usage and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help readers grow to use \Rlang in this same way, i.e., to become fluent in \Rlang. The book is structured around the elements of natural languages like English with chapter titles that highlight the parallels between them and the \Rlang language. +Why did I choose ``\emph{Learn R: As a Language}'' as the title? This book is based on exploration and practice that aims at teaching how to express various operations on data using the \Rlang language. It focuses on the language, rather than on specific types of data analysis, exposes the reader to current usage, and does not spare the quirks of the language. When we use our native language in everyday life, we do not think about grammar rules or sentence structure, except for the trickier or unfamiliar situations. My aim is for this book to help readers learn to use \Rlang in this same way, i.e., to become fluent in \Rlang. The book is structured around the elements of natural languages like English with chapter titles that highlight the parallels between them and the \Rlang language. \emph{Learn R: As a Language} is different from other books about \Rlang in that it emphasises the learning of the language itself, rather than how to use it to address specific data analysis tasks. My aim has been to enable readers to use \Rlang to implement original solutions to the data analysis and data visualisation tasks they encounter. The use of quantitative methods and data analysis has become more frequent in fields with limited long-term tradition in their use, like humanities, or, the complexity of the methods used has dramatically increased, like in Biology. Such trends can be expected to continue in the future. @@ -168,7 +168,7 @@ \chapter*{Preface} In numbers, the page count has increased by 27\%, the number of figures from eight to twenty six plus nine in-text diagrams, and tables from none to seven. As for the design, text boxes have been replaced by call-outs marked with marginal bars. In addition, starting from version 2.0.0, the \pkgname{learnrbook} package supports the first and second editions of the book. It contains data, scripts, and all the code examples from both editions. It also helps with the installation of all the packages used in the book. The website at \url{https://www.learnr-book.info/} provides updated open-access content. \section*{Acknowledgements} -I thank Jaakko Heinonen for introducing me in the late 1990s to the then new \Rlang. Along the way many experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my research group, students, collaborators, authors of books and people I have met online or at conferences. They have made it possible for me to write this book. I am specially indebted to Dan Yavorsky, Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, Mat\v{e}j Rzehulka, Zuzana Svarna, colleagues, students and anonymous reviewers for many very helpful comments on the draft manuscript and/or the first edition. Rob Calver, editor of both editions, provided encouragement with great patience, Shashi Kumar, Lara Spieker, Vaishali Singh, Sherry Thomas, and Paul Boyd efficiently helped with different aspects of this project. +I thank Jaakko Heinonen for introducing me in the late 1990s to the then new \Rlang. Along the way many experts have answered my questions in usenet and more recently in \stackoverflow. I wish to warmly thank members of my research group, students, collaborators, authors of books, and people I have met online or at conferences. They have made it possible for me to write this book. I am specially indebted to Dan Yavorsky, Tarja Lehto, Titta Kotilainen, Tautvydas Zalnierius, Fang Wang, Yan Yan, Neha Rai, Markus Laurel, Brett Cooper, Viivi Lindholm, Mat\v{e}j Rzehulka, Zuzana Svarna, colleagues, students, and anonymous reviewers for many very helpful comments on the draft manuscript and/or the first edition. Rob Calver, editor of both editions, provided advice and encouragement with great patience, Paul Boyd, Shashi Kumar, Ashraf Reza, Vaishali Singh, Lara Spieker, and Sherry Thomas efficiently helped with different aspects of this project. The writing of this second edition was helped by a six-month sabbatical granted by the Faculty of Biological and Environmental Sciences of the University of Helsinki, Finland. I thank Prof.\ Kurt Fagerstedt for his support. @@ -195,29 +195,29 @@ \chapter{Using the Book to Learn \Rlang} \section{Aims of This Chapter} -In this chapter I describe how I imagine the book can be used most effectively to learn the \Rlang language. Learning \Rlang and remembering what one has previously learnt and forgotten makes it also necessary to use this book and other sources as references. Learning to use \Rlang effectively also involves learning how to search for information and how to ask questions from other users, for example through online forums. Thus, I also give advice on how to find answers to \Rlang-related questions and how to use the available documentation. +In this chapter, I describe how I imagine the book can be used most effectively to learn the \Rlang language. Learning \Rlang and remembering what one has previously learnt and forgotten makes it also necessary to use this book and other sources as references. Learning to use \Rlang effectively also involves learning how to search for information and how to ask questions from other users, for example through online forums. Thus, I also give advice on how to find answers to \Rlang-related questions and how to use the available documentation. \section{Approach and Structure} -Depending on previous experience, reading \emph{Learn R: As a Language} will be about exploring a new world or revisiting a familiar one. In both cases \emph{Learn R: As a Language} aims to be a travel guide, neither a traveller's account nor a cookbook of \Rlang recipes. It can be used as a course book, supplementary reading or for self-instruction, and also as a reference. My hope is that as a guide to the use of \Rlang, this book will remain useful to readers as they gain experience and develop skills.\vspace{1ex} +Depending on previous experience, reading \emph{Learn R: As a Language} will be about exploring a new world or revisiting a familiar one. In both cases this book aims to be a travel guide, neither a traveller's account nor a cookbook of \Rlang recipes. It can be used as a course book, supplementary reading or for self-instruction, and also as a reference. My hope is that as a guide to the use of \Rlang, this book will remain useful to readers as they gain experience and develop skills.\vspace{1ex} \noindent \emph{I encourage readers to approach \Rlang like a child approaches his or her mother tongue when learning to speak: do not struggle, just play, and fool around with \Rlang! If the going gets difficult and frustrating, take a break! If you get a new insight, take a break to enjoy the victory!\vspace{1ex} } -In \Rlang, like in most ``rich'' languages, there are multiple ways of coding the same operations. I have included code examples that aim to strike a balance between execution speed and readability. One could write equivalent \Rlang books using substantially different code examples. Keep this in mind when reading the book and using \Rlang. Keep also in mind that it is impossible to remember everything about \Rlang and as a user you will frequently need to consult the documentation, even while doing the exercises in this book. The \Rlang language, in a broad sense, is vast because it can be expanded with independently developed packages. Learning to use \Rlang mainly consists of learning the basics plus developing the skill of finding your way in \Rlang, its documentation and on-line question-and-answer forums. +In \Rlang, like in most ``rich'' languages, there are multiple ways of coding the same operations. I have included code examples that aim to strike a balance between execution speed and readability. One could write equivalent \Rlang books using substantially different code examples. Keep this in mind when reading the book and using \Rlang. Keep also in mind that it is impossible to remember everything about \Rlang, and as a user you will frequently need to consult the documentation, even while doing the exercises in this book. The \Rlang language, in a broad sense, is vast because it can be expanded with independently developed packages. Learning to use \Rlang mainly consists of learning the basics plus developing the skill of finding your way in \Rlang, its documentation and on-line question-and-answer forums. Readers should not aim to remember all the details presented in the book. This is impossible for most of us. Later use of this and other books, and documentation effectively as references, depends on a good grasp of a broad picture of how \Rlang works and on learning how to navigate the documentation; i.e., it is more important to remember abstractions and in what situations they are used, and function names, than the details of how to use them. Developing a sense of when one needs to be careful not to fall into a ``language trap'' is also important. -The book can be used both as a textbook for learning \Rlang and as a reference. It starts with simple concepts and language elements progressing towards more complex language structures and uses. Along the way readers will find, in each chapter, descriptions and examples of the common (usual) cases and the exceptions. Some books hide the exceptions and counterintuitive features from learners to make the learning easier; I instead have included these but marked them using icons and marginal bars. There are two reasons for choosing this approach. First, the boundary between boringly easy and frustratingly challenging is different for each of us, and varies depending on the subject dealt with. So, I hope the marks will help readers predict what to expect, how much effort to put into each section and even what to read and what to skip. Second, if I had hidden the tricky bits of the \Rlang language, I would have made later use of \Rlang by the readers more difficult. It would have also made the book less useful as a reference. +The book can be used both as a textbook for learning \Rlang and as a reference. It starts with simple concepts and language elements progressing towards more complex language structures and uses. Along the way readers will find, in each chapter, descriptions and examples of the common (usual) cases and the exceptions. Some books hide the exceptions and counterintuitive features from learners to make the learning easier; I instead have included these but marked them using icons and marginal bars. There are two reasons for choosing this approach. First, the boundary between boringly easy and frustratingly challenging is different for each of us, and varies depending on the subject dealt with. So, I hope the marks will help readers predict what to expect, how much effort to put into each section, and even what to read and what to skip. Second, if I had hidden the tricky bits of the \Rlang language, I would have made later use of \Rlang by the readers more difficult. It would have also made the book less useful as a reference. The book contains many code examples as well as exercises. I expect readers will run code examples and try as many variations of them as needed to develop an understanding of the ``rules'' of the \Rpgrm language, e.g., how the function or feature exemplified works. This is what long-time users of \Rlang do when facing an unfamiliar feature or a gap in their understanding. -Readers new to \Rlang should read at least chapters \ref{chap:R:introduction} to \ref{chap:R:functions} sequentially. Possibly, skipping parts of the text and exercises marked as advanced. However, I expect to be most useful to these readers not to completely skip the description of unusual features and special cases but rather to skim enough from them so as to get an idea of what special situations they may face as \Rlang users. Exercises should not be skipped, as they are a key component of the didactic approach used. +Readers who are new to \Rlang should read at least chapters \ref{chap:R:introduction} to \ref{chap:R:functions} sequentially. Possibly, skipping parts of the text and exercises marked as advanced. However, I expect to be most useful to these readers not to completely skip the description of unusual features and special cases but rather to skim enough from them so as to get an idea of what special situations they may face as \Rlang users. Exercises should not be skipped, as they are a key component of the didactic approach used. Readers already familiar with \Rlang will be able to read the chapters in the book in any order, as the need arises. Marginal bars and icons, and the back and forward cross-references among sections, make possible for readers to \emph{find a good path} within the book both when learning \Rlang and when using the book as a reference. -I expect \emph{Learn R: As a Language} to remain useful as a reference to those readers who use it to learn \Rlang. It will also be useful as a reference to readers already familiar with \Rlang. To support the use of the book as a reference, I have been thorough with indexing, including many carefully chosen terms, their synonyms and the names of all \Rlang objects and constructs discussed, collecting them in three alphabetical indexes: \emph{General index}, \emph{Index of R names by category}, and \emph{Alphabetic index of R names} starting at pages \pageref{idx:general}, \pageref{idx:rcats} and \pageref{idx:rindex}, respectively. I have also included back and forward cross-references linking related sections throughout the whole book. +I expect \emph{Learn R: As a Language} to remain useful as a reference to those readers who use it to learn \Rlang. It will also be useful as a reference to readers already familiar with \Rlang. To support the use of the book as a reference, I have been thorough with indexing, including many carefully chosen terms, their synonyms, and the names of all \Rlang objects and constructs discussed, collecting them in three alphabetical indexes: \emph{General index}, \emph{Index of R names by category}, and \emph{Alphabetic index of R names} starting at pages \pageref{idx:general}, \pageref{idx:rcats} and \pageref{idx:rindex}, respectively. I have also included back and forward cross-references linking related sections throughout the whole book. \section{Typographic and Naming Conventions} @@ -251,7 +251,7 @@ \subsection{Call-outs} \subsection{Code conventions and syntax highlighting} -Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. The command line prompts (\verb|>| and \verb|+|) are not displayed in the chunks. \Rlang code elements embedded in the text are similarly typeset but always black. For example in the code chunk below, \code{mean()} and \code{print()} are functions; 1, 5 and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and paste into the \Rlang console the whole contents of the code chunks as they appear in the book. +Small sections of program code interspersed within the main text, receive the name of \emph{code chunks}. In this book \Rlang code chunks are typeset in a typewriter font, using colour to highlight the different elements of the syntax, such as variables, functions, constant values, etc. The command line prompts (\verb|>| and \verb|+|) are not displayed in the chunks. \Rlang code elements embedded in the text are similarly typeset but always black. For example, in the code chunk below, \code{mean()} and \code{print()} are functions; 1, 5, and 3 are constant numeric values, and \code{z} is the name of a variable where the result of the computation done in the first line of code is stored. The line starting with \code{\#\#} shows what is printed or shown when executing the second statement: \code{[1] 1}. In the book, \code{\#\#} is used as a marker to signal output from \Rlang, it is not part of the output. As \code{\#} is the marker for comments in the \Rlang language, prepending \code{\#} to the output makes it possible to copy and paste into the \Rlang console the whole contents of the code chunks as they appear in the book. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -271,7 +271,7 @@ \subsection{Code conventions and syntax highlighting} \subsection{Diagrams} -To describe data objects I use diagrams similar to Joseph N. Hall's PEGS (Perl Graphical Structures) \autocite{Hall1997}. I use colour fill to highlight the type of the stored objects. I use the ``signal'' sign for the names of whole objects and of their component members, the former with a thicker border. Below is an example from chapter \ref{chap:R:as:calc}. +To describe data objects, I use diagrams similar to Joseph N. Hall's PEGS (Perl Graphical Structures) \autocite{Hall1997}. I use colour fill to highlight the type of the stored objects. I use the ``signal'' sign for the names of whole objects and of their component members, the former with a thicker border. Below is an example from chapter \ref{chap:R:as:calc}. \begin{center} \begin{footnotesize} @@ -300,7 +300,7 @@ \subsection{Diagrams} \end{footnotesize} \end{center} -To describe code structure I use diagrams based on boxes and arrows, while to describe the flow of code execution I use traditional flow charts. +To describe code structure, I use diagrams based on boxes and arrows, while to describe the flow of code execution I use traditional flow charts. In the different diagrams, I use the notation \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, \textcolor{blue}{\code{}}, etc., as generic placeholders indicating \emph{any valid value}, \emph{any valid \Rlang statement}, \emph{any valid \Rlang name}, etc. @@ -308,19 +308,19 @@ \section{Findings Answers to Problems} \subsection{What are the options?} -First of all do not panic! Every programmer, even those with decades of experience, gets stuck with problems from time to time and can run out of ideas for a while. This is normal and happens to all of us. +First of all, do not panic! Every programmer, even those with decades of experience, gets stuck with problems from time to time and can run out of ideas for a while. This is normal and happens to all of us. -It is important to learn how to find answers as part of the routine of using \Rlang. First of all one can read the documentation of the function or object that one is trying to use, which in many cases also includes use examples. \Rlang's help pages tell how to use individual functions or objects. In contrast, \Rlang's manual \emph{An Introduction to R} and books describe what functions or overall approaches to use for different tasks. +It is important to learn how to find answers as part of the routine of using \Rlang. We should start by reading the documentation of the function or object that we are trying to use, which in many cases also includes examples. \Rlang's help pages tell how to use individual functions or objects. In contrast, \Rlang's manual \emph{An Introduction to R}, and other books describe what functions or overall approaches to use for different tasks. Reading the documentation and books not always helps. Sometimes one can become blind to the obvious, by being too familiar with a piece of code, as it also happens when writing in a natural language like English. A second useful step is, thus, looking at the code with ``different eyes'', those of a friend or workmate, or your own eyes a day or a week later. One can also seek help in specialised online forums or from peers or ``local experts''. If searching in forums for existing questions and answers fails to yield a useful answer, one can write a new question in a forum. -When searching for answers, asking for advice or reading books, one can be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases it will not matter which approach you use as many computations can be done in \Rpgrm, as in any computer language, in several different ways, still obtaining the same result. Use the alternative that you find easier to understand. +When searching for answers, asking for an advice, or reading books, one can be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases, it will not matter which approach you use as many computations can be done in \Rpgrm, as in any computer language, in several different ways, still obtaining the same result. Use the alternative that you find easier to understand. \subsection{\Rlang's built-in help} -Every object available in base \Rlang or exported by an \Rlang extension package (functions, methods, classes, data) is documented in \Rlang's help system. Sometimes a single help page documents several \Rlang objects. Not only help pages are always available, but they are structured consistently with a title, short description, and frequently also a detailed description. In the case of functions, parameter names, their purpose and expected arguments are always described, as well as the returned value. Usually at the bottom of help pages, several examples of the use of the objects or functions are given. How to access \Rpgrm help is described in section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}. +Every object available in base \Rlang or exported by an \Rlang extension package (functions, methods, classes, and data) is documented in \Rlang's help system. Sometimes a single help page documents several \Rlang objects. Not only help pages are always available, but they are structured consistently with a title, short description, and frequently also a detailed description. In the case of functions, parameter names, their purpose, and expected arguments are always described, as well as the returned value. Usually at the bottom of help pages, several examples of the use of the objects or functions are given. How to access \Rpgrm help is described in section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}. In addition to help pages, \Rpgrm's distribution includes useful manuals as PDF or HTML files. These manuals are also available at \url{https://rstudio.github.io/r-manuals/} restyled for easier reading in web browsers. In addition to help pages, many packages, contain \emph{vignettes} such as user guides or articles describing the algorithms used and/or containing use case examples. In the case of some packages, a web site with documentation in HTML format is also available. Package documentation can be also found in repositories like the \emph{Comprehensive R Archive Network}, better known as \CRAN. From \CRAN it is possible to download \Rpgrm and many extensions to it. The DESCRIPTION file of each \Rlang package provides contact information for the maintainer, links to web sites, and instructions on how to report bugs. Similar information plus a short description are frequently also available in a README file. @@ -331,7 +331,7 @@ \subsection{Online forums}\label{sec:intro:net:help} \subsubsection*{Netiquette} When posting requests for help, one needs to abide by what is usually described as ``netiquette'', which in many respects also applies to asking in person or by e-mail for help from a peer or local expert. Preference among sources of information depends on what one finds easier to use. Consideration towards others' time is necessary but has to be balanced against wasting too much of one's own time. -In\index{netiquette}\index{network etiquette} most internet forums, a certain behaviour is expected from those asking and answering questions. Some types of misbehaviour like the use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehaviour usually results in the original question not being answered and, instead, the problem highlighted in a comment. In general, following the steps listed below will greatly increase your chances of getting a detailed and useful answer. +In\index{netiquette}\index{network etiquette} most internet forums, a certain behaviour is expected from those asking and answering questions. Some types of misbehaviour, such as the use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehaviour usually results in the original question not being answered and, instead, the problem highlighted in a comment. In general, following the steps listed below will greatly increase your chances of getting a detailed and useful answer. \begin{itemize} \item Do your homework: first search for existing answers to your question, both online and in the documentation. (Do mention that you attempted this without success when you post your question.) @@ -369,7 +369,7 @@ \subsubsection*{Contacting the author} \section{Further Reading} -At the end of each chapter a section like this one gives suggestions for further reading on related subjects. To understand what programming as an activity is you can read \citetitle{Burns2012} \autocite{Burns2012}. It will make easier the learning of programming in \Rlang, both practically and emotionally. In \citeauthor{Burns2012}'s words ``This is a book about what goes on in the minds of programmers''. +To understand what programming as an activity is, you can read \citetitle{Burns2012} \autocite{Burns2012}. It will make easier the learning of programming in \Rlang, both practically and emotionally. In \citeauthor{Burns2012}'s words ``This is a book about what goes on in the minds of programmers''. % !Rnw root = using-r.main.Rnw @@ -396,19 +396,19 @@ \section{What is \Rlang?} \subsection{\Rlang as a language} \index{R as a language@{\Rlang as a language}} -\Rlang is a computer language designed for data analysis and data visualisation, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity and generality. \Rlang excels at generality thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily followed by user code written in \Rlang. +\Rlang is a computer language designed for data analysis and data visualisation, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity, and generality. \Rlang excels at generality, thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily followed by user code written in \Rlang. -In the case of languages like \Cpplang, \Clang, \pascallang and \langname{FORTRAN} multiple software implementations exist (different compilers and interpreters, i.e., pieces of software that translate programs encoded in these languages into \emph{machine code} instructions for computer processors to run). So in addition to different flavours of each language stemming from different definitions, e.g., versions of international standards, different implementations of the same standard may have, usually small, unintentional and intentional differences. +In the case of languages like \Cpplang, \Clang, \pascallang, and \langname{FORTRAN}, multiple software implementations exist (different compilers and interpreters, i.e., pieces of software that translate programs encoded in these languages into \emph{machine code} instructions for computer processors to run). So in addition to different flavours of each language stemming from different definitions, e.g., versions of international standards, different implementations of the same standard may have, usually small, unintentional and intentional differences. -Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} of \Rpgrm as a computer program, similar to \pgrmname{SAS} or \pgrmname{SPPS}. \Rpgrm is indeed a computer program---a piece of software---but it is also a computer language, implemented in the \Rpgrm program. At the moment, differently to most other computer languages, this difference is not important as the \Rpgrm program is the only widely used implementation of the \Rlang language. +Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rpgrm as a program}} of \Rpgrm as a computer program, similar to \pgrmname{SAS} or \pgrmname{SPSS}. \Rpgrm is indeed a computer program---a piece of software---but it is also a computer language, implemented in the \Rpgrm program. At the moment, this difference is not as important as for other languages because the \Rpgrm program is the only widely used implementation of the \Rlang language. -\Rlang started as a partial implementation of the then relatively new \Slang language \autocite{Becker1984,Becker1988}. When designed, \Slang, developed at Bell Labs in the U.S.A., provided a novel way of carrying out data analyses. \Slang evolved into \Splang \autocite{Becker1988}. \Splang was available as a commercial program, most recently from TIBCO, U.S.A. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching, developed by Robert Gentleman and Ross Ihaka at the University of Auckland, in New Zealand \autocite{Ihaka1996}. Initially, \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained. These remaining differences are intentional---thought of as significant improvements. In more recent times \Rlang overtook \Splang in popularity. The \Rlang language is not standardised, and no formal definition of its grammar exists. Consequently, the \Rlang language is defined by the behaviour of its implementation in the \Rpgrm program. +\Rlang started as a partial implementation of the then relatively new \Slang language \autocite{Becker1984,Becker1988}. When designed, \Slang, developed at Bell Labs in the U.S.A., provided a novel way of carrying out data analyses. \Slang evolved into \Splang \autocite{Becker1988}. \Splang was available as a commercial program, most recently from TIBCO, U.S. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching, developed by Robert Gentleman and Ross Ihaka at the University of Auckland, in New Zealand \autocite{Ihaka1996}. Initially, \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained. These remaining differences are intentional---thought of as significant improvements. In more recent times, \Rlang overtook \Splang in popularity. The \Rlang language is not standardised, and no formal definition of its grammar exists. Consequently, the \Rlang language is defined by the behaviour of its implementation in the \Rpgrm program. -What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality, it makes a huge difference because \Rlang is easily extensible, both using the \Rlang language for implementation and by calling from \Rlang functions and routines written in other computer programming languages such as \Clang, \Cpplang, \langname{FORTRAN}, \pythonlang or \javalang. This flexibility means that new functionality can be easily added, and easily shared with a consistent \Rlang-based user interface. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find a package that will make new tools seamlessly available within \Rlang. +What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality, it makes a huge difference because \Rlang is easily extensible, both using the \Rlang language for implementation and by calling from \Rlang functions and routines written in other computer programming languages such as \Clang, \Cpplang, \langname{FORTRAN}, \pythonlang, or \javalang. This flexibility means that new functionality can be easily added, and easily shared with a consistent \Rlang-based user interface. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find a package that will make new tools seamlessly available within \Rlang. The name\index{base R@{base \Rlang}} ``base \Rlang{}'' is used to distinguish \Rlang itself, as in the \Rpgrm executable included in the \Rpgrm distribution and its default packages, from \Rlang in a broader sense, which includes contributed packages. A few packages are included in the \Rpgrm distribution, but most \Rlang packages are independently developed extensions and separately distributed. The number of freely available open-source \Rlang packages available is huge, in the order of 20\,000. -The most important advantage of using a language like \Rlang is that instructions to the computer are given as text. This makes it easy to repeat or \emph{reproduce} a data analysis. Textual instructions serve to communicate to other people what has been done in a way that is unambiguous. Sharing the instructions themselves avoids a translation from a set of instructions to the computer into text readable to humans---say the materials and methods section of a paper. +The most important advantage of using a language like \Rlang is that instructions to the computer are given as text. This makes it easy to repeat or \emph{reproduce} a data analysis. Textual instructions serve to communicate to other people what has been done in a way that is unambiguous. Sharing the instructions themselves avoids a translation from a set of instructions to the computer into text readable to humans---for example, the materials and methods section of a paper. \begin{explainbox} Readers with programming experience will notice that some features of \Rlang differ from those in other programming languages. \Rlang does not have the strict type checks of \langname{Pascal} or \Cpplang. It has operators that can take vectors and matrices as operands. Reliable and fast \Rlang code tends to rely on different \emph{idioms} than well-written \langname{Pascal} or \Cpplang code. @@ -417,7 +417,7 @@ \subsection{\Rlang as a language} \subsection{\Rlang as a computer program} \index{R as a program@{\Rpgrm as a program}} \index{Windows@{\textsf{Windows}}|see{\textsf{MS-Windows}}} -The \Rpgrm program itself is open-source, i.e., its source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm extremely reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team aim to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The idea is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems, like \osname{Linux}, \osname{Unix} (including \osname{OS X}) and \osname{MS-Windows}, or computer hardware, like that based on \textsf{ARM} and \textsf{x86} processors. +The \Rpgrm program itself is open-source, i.e., its source code is available for anybody to inspect, modify, and use. A very small fraction of users will directly contribute improvements to the \Rpgrm program itself. However, those contributions and bug reports are important in making \Rpgrm extremely reliable. The executable \Rpgrm program we actually use can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team aim to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The idea is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems, like \osname{Linux}, \osname{Unix} (including \osname{OS X}) and \osname{MS-Windows}, or computer hardware, like that based on \textsf{ARM} and \textsf{x86} processors. \begin{figure} \centering @@ -442,7 +442,7 @@ \subsection{Editors and IDEs} Readers with programming experience may be already familiar with Microsoft's free \pgrmname{Visual Studio Code} or the open-source \pgrmname{Eclipse} IDEs for which plugins supporting \Rpgrm are available. \end{explainbox} -The main window of IDEs is in most cases divided into windows or panes, possibly with tabs. In \RStudio one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). By comparing these three figures it is clear that \RStudio is really only a software layer between the user and an unmodified \Rpgrm executable. In \RStudio the script was sourced by pressing the ``Source'' button at the top of the editor panel. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console (\ref{fig:intro:rstudio}, lower left screen panel, text in purple), the same console where we can directly type this same \Rpgrm command if we wish. +The main window of IDEs is in most cases divided into windows or panes, possibly with tabs. In \RStudio one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). By comparing these three figures, it is clear that \RStudio is really only a software layer between the user and an unmodified \Rpgrm executable. In \RStudio, the script was sourced by pressing the ``Source'' button at the top of the editor panel. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console (\ref{fig:intro:rstudio}, lower left screen panel, text in purple), the same console where we can directly type this same \Rpgrm command if we wish. \begin{figure} \centering @@ -458,21 +458,21 @@ \subsection{Editors and IDEs} \RStudio and other IDEs support saving of their state and some settings per working folder under the name of \emph{project}, so that work on a data analysis can be interrupted and later continued, even on a different computer. As mentioned in section \ref{sec:R:workspace} on page \pageref{sec:R:workspace}, when working with \Rlang we keep related files in a folder. -In this book I provide only a minimum of guidance on the use of \RStudio, and no guidance for other IDEs. To learn more about \RStudio, please, read the documentation available through \RStudio's help menu and keep at hand a printed copy of the \RStudio cheat sheet while learning how to use it. This and other useful \Rlang-related cheatsheets can be downloaded at \url{https://posit.co/resources/cheatsheets/}. Additional instructions on the use of \RStudio, including a video, are available through the Resources menu entry of the book's website at \url{https://www.learnr-book.info/}. +In this book, I provide only a minimum of guidance on the use of \RStudio, and no guidance for other IDEs. To learn more about \RStudio, please, read the documentation available through \RStudio's help menu and keep at hand a printed copy of the \RStudio cheat sheet while learning how to use it. This and other useful \Rlang-related cheatsheets can be downloaded at \url{https://posit.co/resources/cheatsheets/}. Additional instructions on the use of \RStudio, including a video, are available through the Resources menu entry of the book's website at \url{https://www.learnr-book.info/}. \subsection{\Rlang sessions and workspaces}\label{sec:R:workspace} -We use \emph{session} to describe the interactive execution from start to finish of one running instance of the \Rpgrm program. We use \emph{workspace} to name the imaginary space were all objects currently available in an \Rpgrm session are stored. In \Rpgrm the whole workspace can be stored in a single file on disk at the end or during a session and restored later into another session, possibly on a different computer. Usually, when working with \Rpgrm we dedicate a folder in disk storage to store all files from a given data analysis project. We normally keep in this folder files with data to read in, scripts, a file storing the whole contents of the workspace, named by default \code{.Rdata} and a text file with the history of commands entered interactively, named by default \code{.Rhistory}. The user's files within this folder can be located in nested folders. There are no strict rules on how the files should be organised or on their number. The recommended practice is to avoid crowded folders and folders containing unrelated files. It is a good idea to keep in a given folder and workspace the work in progress for a single data-analysis project or experiment, so that the workspace can be saved and restored easily between sessions and work continued from where one left it independently of work done in other workspaces. The folder where files are currently read and saved is in \Rpgrm documentation called the \emph{current working directory}. When opening an \code{.Rdata} file the current working directory is automatically set to the location where the \code{.Rdata} file was read from. +We use \emph{session} to describe the interactive execution from start to finish of one running instance of the \Rpgrm program. We use \emph{workspace} to name the imaginary space were all objects currently available in an \Rpgrm session are stored. In \Rpgrm, the whole workspace can be stored in a single file on disk at the end or during a session and restored later into another session, possibly on a different computer. Usually, when working with \Rpgrm, we dedicate a folder in disk storage to store all files from a given data analysis project. We normally keep in this folder files with data to read in, scripts, a file storing the whole contents of the workspace, named by default \code{.Rdata} and a text file with the history of commands entered interactively, named by default \code{.Rhistory}. The user's files within this folder can be located in nested folders. There are no strict rules on how the files should be organised or on their number. The recommended practice is to avoid crowded folders and folders containing unrelated files. It is a good idea to keep in a given folder and workspace the work in progress for a single data analysis project or experiment, so that the workspace can be saved and restored easily between sessions and work continued from where one left it independently of work done in other workspaces. The folder where files are currently read and saved is in \Rpgrm documentation called the \emph{current working directory}. When opening an \code{.Rdata} file the current working directory is automatically set to the location where the \code{.Rdata} file was read from. \begin{warningbox} -\RStudio projects are implemented as a folder with a name ending in \code{.Rprj}, located under the same folder where scripts, data, \code{.Rdata} and \code{.Rhistory} are stored. This folder is managed by \RStudio and should be not modified or deleted by the user. Only in the very rare case of its corruption, it should be deleted, and the \RStudio project created again from scratch. Files \code{.Rdata} and \code{.Rhistory} should not be deleted by the user, except to reset the \Rlang workspace. However, this is unnecessary as it can be also easily achieved from within \Rpgrm. +\RStudio projects are implemented as a folder with a name ending in \code{.Rprj}, located under the same folder where scripts, data, \code{.Rdata}, and \code{.Rhistory} are stored. This folder is managed by \RStudio and should be not modified or deleted by the user. Only in the very rare case of its corruption, it should be deleted, and the \RStudio project created again from scratch. Files \code{.Rdata} and \code{.Rhistory} should not be deleted by the user, except to reset the \Rlang workspace. However, this is unnecessary as it can be also easily achieved from within \Rpgrm. \end{warningbox} \subsection{Using \Rlang interactively} -Decades ago users communicated with computers through a physical terminal (keyboard plus text-only screen) that was frequently called a \emph{console}\index{console}. A text-only interface to a computer program, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. +Decades ago, users communicated with computers through a physical terminal (keyboard plus text-only screen) that was frequently called a \emph{console}\index{console}. A text-only interface to a computer program, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. -Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyse the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console} we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). +Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyse the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console}, we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). \begin{figure} \centering @@ -492,7 +492,7 @@ \subsection{Using \Rlang interactively} \begin{explainbox} In the console one types commands at the \code{>} prompt. When one ends a line by pressing the return or enter key, if the line can be interpreted as an \Rlang command, the result will be printed at the console, followed by a new \code{>} prompt. -If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. +If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example, if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. \end{explainbox} For example, one can search for a help page at the \Rpgrm console. Below are the first code example and the first playground in the book. This first example is for illustration only, and you can return to them later as only on page \pageref{sec:R:install} I discuss how to install or get access to the \Rpgrm program. @@ -522,11 +522,11 @@ \subsection{Using \Rlang interactively} When trying to access help related to \Rlang extension packages through \Rlang's built in help, make sure the package is loaded into the current \Rlang session, as described on page \pageref{sec:packages:install}, before calling \Rfunction{help()}. \end{warningbox} -When using \RStudio there are easier ways of navigating to a help page than calling function \Rfunction{help()} by typing its name, for example, with the cursor on the name of a function in the editor or console, pressing the \textsf{F1} key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. The \Rlang manuals can also be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. +When using \RStudio, there are easier ways of navigating to a help page than calling function \Rfunction{help()} by typing its name, for example, with the cursor on the name of a function in the editor or console, pressing the \textsf{F1} key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. The \Rlang manuals can also be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. \subsection{Using \Rlang in a ``batch job''} -To run a script\index{scripts}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console'', while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor''. +To run a script,\index{scripts}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console'', while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor''. \begin{figure} \centering @@ -550,19 +550,19 @@ \subsection{Using \Rlang in a ``batch job''} \section{Reproducible Data Analysis with \Rlang} \index{reproducible data analysis|(} -Statistical concepts and procedures are not only important after data are collected but also crucial at the design stage of any data-based study. Rather frequently, we deal with pre-existing data already at the planning stage of an experiment or survey. Statistics provides the foundation for the design of experiments and surveys, data analysis and data visualisation. This is similar to the role played by grammar and vocabulary in communication in a natural language like English. Statistics makes possible decision-making based on partial evidence (or samples), but it is also a means of communication. Data visualisation also plays a key role in the written and oral communication of study conclusions. \Rlang is useful throughout all stages of the research process, from the design of studies to the communication of the results. +Statistical concepts and procedures are not only important after data are collected but also crucial at the design stage of any data-based study. Rather frequently, we deal with pre-existing data already at the planning stage of an experiment or survey. Statistics provides the foundation for the design of experiments and surveys, data analysis, and data visualisation. This is similar to the role played by grammar and vocabulary in communication in a natural language like English. Statistics makes possible decision-making based on partial evidence (or samples), but it is also a means of communication. Data visualisation also plays a key role in the written and oral communication of study conclusions. \Rlang is useful throughout all stages of the research process, from the design of studies to the communication of the results. -During recent years the lack of reproducibility in scientific research, frequently described as a \emph{reproducibility crisis}, has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce scientific and technical studies is reproducing the data analysis. More generally, under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety, and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Thus, an unambiguous description of the steps taken for an analysis is a requirement. Currently, most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands that were used. +During recent years, the lack of reproducibility in scientific research, frequently described as a \emph{reproducibility crisis}, has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce scientific and technical studies is reproducing the data analysis. More generally, under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety, and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Thus, an unambiguous description of the steps taken for an analysis is a requirement. Currently, most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands that were used. A reliable record of what commands have been run on which data is especially difficult to keep when issuing commands through menus and dialogue boxes in a graphical user interface or by interactively typing commands as text at a console. Even working interactively at the \Rpgrm console using copy and paste to include commands and results in a report typed in a word processor is error prone, and laborious. The use and archiving of \Rlang scripts alleviate this difficulty. -However, a further requirement to achieve reproducibility is the consistency between the saved and reported output and the \Rlang commands reported as having been used to produce them, saved separately when using scripts. This creates an error-prone step between data analysis and reporting. To solve this problem an approach to data analysis derived from what is called \emph{literate programming} \autocite{Knuth1984a} was developed: running an especially formatted script that produces a document that includes the \Rlang code used for the analysis, the results of running this code and any explanatory text needed to describe the methodology used and interpret the results of the analysis. +However, a further requirement to achieve reproducibility is the consistency between the saved and reported output and the \Rlang commands reported as having been used to produce them, saved separately when using scripts. This creates an error-prone step between data analysis and reporting. To solve this problem an approach to data analysis derived from what is called \emph{literate programming} \autocite{Knuth1984a} was developed: running an especially formatted script that produces a document that includes the \Rlang code used for the analysis; the results of running this code and any explanatory text needed to describe the methodology used and interpret the results of the analysis. Although a system capable of producing such reports with \Rlang, called \pkgname{Sweave} \autocite{Leisch2002}, has been available for a couple of decades, it was rather limited and not supported by an IDE, making its use rather tedious. Package \pkgname{knitr} \autocite{Xie2013} further developed the approach and together with its integration into \RStudio made the use of this type of report much easier. Less sophisticated reports, called \Rlang \emph{notebooks}, formatted as HTML files can be created directly from ordinary \Rlang scripts containing no special formatting. Notebooks are HTML files that show as text the code used interspersed with the results, and can contain embedded the actual source script used to generate them. -Package \pkgname{knitr} supports the writing of reports with the textual explanations encoded using either \Markdown or \Latex\ as markup for text-formatting instructions. While \Markdown (\url{https://daringfireball.net/projects/markdown/}) is an easy-to-learn and use text markup approach, \Latex\ \autocite{Lamport1994} is based on \TeX\ \autocite{Knuth1987}, the most powerful typesetting engine freely available. There are different flavours of \Markdown, including \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}) with special support for \Rlang code. \Quarto (see \url{https://quarto.org/}) was recently released as an enhancement of \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}), improving typesetting and styling and providing a single system capable of generating a broad selection of outputs. When used together with \Rlang, \Quarto relies on package \pkgname{knitr} for the key step in the conversion, so in a strict sense \Quarto does not replace it. +Package \pkgname{knitr} supports the writing of reports with the textual explanations encoded using either \Markdown or \Latex\ as markup for text-formatting instructions. While \Markdown (\url{https://daringfireball.net/projects/markdown/}) is an easy-to-learn and use text markup approach, \Latex\ \autocite{Lamport1994} is based on \TeX\ \autocite{Knuth1987}, the most powerful typesetting engine freely available. There are different flavours of \Markdown, including \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}) with special support for \Rlang code. \Quarto (see \url{https://quarto.org/}) was recently released as an enhancement of \Rmarkdown (see \url{https://rmarkdown.rstudio.com/}), improving typesetting and styling, and providing a single system capable of generating a broad selection of outputs. When used together with \Rlang, \Quarto relies on package \pkgname{knitr} for the key step in the conversion, so in a strict sense \Quarto does not replace it. -Because of the availability of these approaches to the generation of reports, the \Rlang language is extremely useful when reproducibility is important. Both \pkgname{knitr} and \Quarto are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX. All pages in the book were typeset directly, with plots and other \Rlang output generated on-the-fly by \Rpgrm and inserted automatically. All diagrams were generated by \LaTeX\ during the typesetting step. The only exceptions are the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First, because I want to make sure that every bit of code as you will see printed, runs without error. In addition, I want to make sure that the output displayed below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as an author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, after any changes needed to keep it up to date and free of errors. By using these tools and markup in plain text files, the indices, cross-references, citations and list of references are all generated automatically. +Because of the availability of these approaches to the generation of reports, the \Rlang language is extremely useful when reproducibility is important. Both \pkgname{knitr} and \Quarto are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX. All pages in the book were typeset directly, with plots and other \Rlang output generated on-the-fly by \Rpgrm and inserted automatically. All diagrams were generated by \LaTeX\ during the typesetting step. The only exceptions are the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First, because I want to make sure that every bit of code, as you will see printed, runs without error. In addition, I want to make sure that the output displayed below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as an author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, after any changes needed to keep it up to date and free of errors. By using these tools and markup in plain text files, the indices, cross-references, citations, and list of references are all generated automatically. Although the use of these tools is very important, they are outside the scope of this book and well described in other books dedicated to them \autocite{Gandrud2015,Xie2013}. When using \Rlang in this way, a good command of \Rlang as a language for communication with both humans and computers is very useful. \index{reproducible data analysis|)} @@ -571,7 +571,7 @@ \section{Getting Ready to Use \Rlang}\label{sec:R:install} As the book is designed with the expectation that readers will run code examples as they read the text, you have to ensure access to the \Rpgrm before reading the next chapter. It is likely that your school, employer or teacher has already enabled access to \Rpgrm. If not, or if you are reading the book on your own, you should install \Rpgrm or secure access to an online service. Using \RStudio or another IDE can facilitate the use of \Rpgrm, but all the code in the remaining chapters makes only use of \Rpgrm and packages available through \CRAN. -I have written an \Rlang package, named \pkgname{learnrbook}, containing original data and computer-readable listings for all code examples and exercises in the book. It also contains code and data that makes it easier to install the packages used in later chapters. Its name is \pkgname{learnrbook} and is available through \CRAN. \textbf{It is not necessary for you to install this or any other packages until section \ref{sec:packages:install} on page \pageref{sec:packages:install}, where I explain how to install and use \Rlang \Rlang packages.} +I have written an \Rlang package, named \pkgname{learnrbook}, containing original data and computer-readable listings for all code examples and exercises in the book. It also contains code and data that makes it easier to install the packages used in later chapters. Its name is \pkgname{learnrbook} and is available through \CRAN. \textbf{It is not necessary for you to install this or any other packages until section \ref{sec:packages:install} on page \pageref{sec:packages:install}, where I explain how to install and use \Rlang packages.} \begin{faqbox}{Are there any resources to support the \emph{Learn R: As a Language} book?} Please, visit \url{https://www.learnr-book.info/} to find additional material related to this book, including additional free chapters. Up-to-date instructions for software installation are provided online at this and other sites, as these instructions are likely to change after the publication of the book. @@ -584,7 +584,7 @@ \section{Getting Ready to Use \Rlang}\label{sec:R:install} \end{faqbox} \begin{faqbox}{How to install the \textsf{RStudio} IDE in my computer?} -\RStudio installers are available at Posit's web site (\url{https://posit.co/products/open-source/rstudio/}) of which the free version is suitable for running the code examples and exercises in the book. In many cases the IT staff at your employer or school will install them, or they may be already included in the default computer setup. +\RStudio installers are available at Posit's web site (\url{https://posit.co/products/open-source/rstudio/}) of which the free version is suitable for running the code examples and exercises in the book. In many cases, the IT staff at your employer or school will install them, or they may be already included in the default computer setup. \end{faqbox} \begin{faqbox}{How to get access to \textsf{RStudio} as a cloud service?} @@ -592,7 +592,7 @@ \section{Getting Ready to Use \Rlang}\label{sec:R:install} \end{faqbox} \section{Further Reading} -Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. The history of \Rlang, and its relation or \Slang, is best told by those who were involved at the early stages of its development, \citeauthor{Chambers2016} (\citeyear[][, Chapter 2]{Chambers2016}), and \citeauthor{Ihaka1998} (\citeyear{Ihaka1998}). +Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. The history of \Rlang, and its relation or \Slang, is best told by those who were involved at the early stages of its development, \citeauthor{Chambers2016} (\citeyear[][, chapter 2]{Chambers2016}), and \citeauthor{Ihaka1998} (\citeyear{Ihaka1998}). @@ -613,7 +613,7 @@ \chapter{Base \Rlang: ``Words'' and ``Sentences''}\label{chap:R:as:calc} \section{Aims of This Chapter} -In my experience, for those not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \Rpgrm \emph{console}. This teaches not only the syntax and grammar rules, but also gives a glimpse at the advantages and flexibility of this approach to data analysis. In this chapter, I focus on the different simple values or items that can be stored and manipulated in \Rpgrm, as well as the role of computer program statements, the equivalent of ``sentences'' in natural languages. +In my experience, for those who are not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \Rpgrm \emph{console}. This teaches not only the syntax and grammar rules, but also gives a glimpse at the advantages and flexibility of this approach to data analysis. In this chapter, I focus on the different simple values or items that can be stored and manipulated in \Rpgrm, as well as the role of computer program statements, the equivalent of ``sentences'' in natural languages. In the first part of the chapter, you will use \Rlang to do everyday calculations that should be so easy and familiar that you will not need to think about the operations themselves. This easy start will give you a chance to focus on learning how to issue textual commands at the command prompt. @@ -623,7 +623,7 @@ \section{Aims of This Chapter} \section{Natural and Computer Languages} \index{languages!natural and computer} -Computer languages have strict rules and interpreters and compilers that translate these languages into machine code are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. +Computer languages have strict rules, and the interpreters and compilers that translate these languages into machine code are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. One can think of constant values and variables (values stored under a name) as nouns and of operators and functions as verbs. A complete command, or statement, is the equivalent of a natural language sentence: ``a comprehensible utterance''. The simple statement \code{a + 1} has three components: \code{a}, a variable, \code{+}, an operator and \code{1} a constant. The statement \code{sqrt(4)} has two components, a function \code{sqrt()} and a numerical constant \code{4}. We say that ``to compute $\sqrt{4}$ we \emph{call} \code{sqrt()} with \code{4} as its \emph{argument}''. @@ -657,7 +657,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} Where constant \Rconst{pi} ($\pi = 3.1415\ldots$) and function \Rfunction{cos()} (cosine) are defined in base \Rlang. Many trigonometric and mathematical functions are available in addition to operators like \verb|+|, \verb|-|, \verb|*|, \verb|/|, and \verb|^|. \begin{warningbox} - In \Rlang angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an angle of $45^\circ$ can be computed as follows. + In \Rlang, angles are expressed in radians, thus $\cos(\pi) = 1$ and $\sin(\pi) = 0$, according to trigonometry. Degrees can be converted into radians taking into account that the circle corresponds to $2 \times \pi$ when expressed in radians and to $360^\circ$ when expressed in degrees. Thus the cosine of an angle of $45^\circ$ can be computed as follows. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -701,7 +701,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} The number of opening (left side) and closing (right side) parentheses must be balanced, and they must be located so that each enclosed term is a valid mathematical expression, i.e., code that can be evaluated to return a value, a value that can be inserted in place of the expression enclosed in parenthesis before evaluating the remaining of the expression. For example, \code{(1 + 2) * 3} after evaluating \code{(1 + 2)} becomes \code{3 * 3} yielding \code{9}. In contrast, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and does not yield a number. \begin{playground} -In \emph{playgrounds} the output from running the code in \Rpgrm is not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, to create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} +In \emph{playgrounds} the output from running the code in \Rpgrm is not shown, as these are exercises for you to enter at the \Rpgrm console and run. In general, you should not skip them as in most cases playgrounds aim to teach or demonstrate concepts or features that I have \emph{not} included in full-detail in the main text. You are strongly encouraged to \emph{play}, in other words, to create new variations of the examples and execute them to explore how \Rlang works.\qRfunction{sqrt()}\qRfunction{sin()}\qRfunction{log()}\qRfunction{log10()}\qRfunction{log2()}\qRfunction{exp()} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -731,7 +731,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{playground} -Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter where the stored values have no connection to the real world, simple names emphasise their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. +Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use in our code the name of the variable in place of the stored value. The ``usual'' assignment operator is \Roperator{<-}. In \Rlang, all names, including variable names, are case sensitive. Variables \code{a} and \code{A} are two different variables. Variable names can be long in \Rlang, although it is not a good idea to use very long names. Here I am using very short names, something that is usually also a very bad idea. However, in the examples in this chapter, where the stored values have no connection to the real world, simple names emphasise their abstract nature. In the chunk below, \code{vct1} and \code{vct2} are arbitrarily chosen variable names; I should have used names like \code{height.cm} or \code{outside.temperature.C} if they had been useful to convey information. In the book, I use variable names that help recognise the kind of object stored, as this is most relevant when learning \Rlang. Here I use \code{vct1} because in \Rlang, as we will see on page \pageref{par:numeric:vectors:start}, numeric objects are always vectors, even when of length one. @@ -792,7 +792,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} \begin{playground} -There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages, and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> vct1}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{vct1}, \code{vct2} and \code{vct3} are being assigned the same value. +There are some syntactically legal assignment statements that are not very frequently used, but you should be aware that they are valid, as they will not trigger error messages and may surprise you. The most important thing is to write code consistently. The ``backwards'' assignment operator \Roperator{->} and resulting code like \code{1 -> vct1}\index{assignment!leftwise} are valid but less frequently used. The use of the equals sign (\Roperator{=}) for assignment in place of \Roperator{<-} although valid is discouraged. Chaining\index{assignment!chaining} assignments as in the first statement below can be used to signal to the human reader that \code{vct1}, \code{vct2} and \code{vct3} are being assigned the same value. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -1259,7 +1259,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -Vectorised\index{recycling of arguments}\index{recycling of operands} functions and operators that operate on more than one vector simultaneously, in many cases accept vectors of mismatched length as arguments or operands. When two or more vectors are of different length, these functions and operators recycle the shorter vector(s) to match the length of the longest one. The two statements below are equivalent, in the first statement, the short vector \code{1} is first recycled into \code{c(1, 1, 1)}. The operation, addition in this example, is applied to the numbers stored at the same position in the two vectors, returning a new vector. +Vectorised\index{recycling of arguments}\index{recycling of operands} functions and operators that operate on more than one vector simultaneously, in many cases accept vectors of mismatched length as arguments or operands. When two or more vectors are of different length, these functions and operators recycle the shorter vector(s) to match the length of the longest one. The two statements below are equivalent; in the first statement, the short vector \code{1} is first recycled into \code{c(1, 1, 1)}. The operation, addition in this example, is applied to the numbers stored at the same position in the two vectors, returning a new vector. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -1962,9 +1962,9 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{knitrout} \begin{explainbox} -Functions are described in detail in section \ref{sec:script:functions} on page \pageref{sec:script:functions}. Here I describe them briefly in relation to their use. Functions are objects containing \Rlang code that can be used to perform an operation on values passed as arguments to its parameters. They return the result of the operation as a single \Rlang object, or less frequently, as a side effect. Functions have a name like any other \Rlang object. If the name of a function is followed by parentheses \code{()} and included in a code statement, it becomes a function \emph{call} or a ``request'' for the code stored in the function object to be run. Many functions, accept \Rlang objects and/or constant values as \emph{arguments} to their \emph{formal parameters}. Formal parameters are placeholder names in the code stored in the function object, or the \emph{definition} of the function. In a function call the code in its definition is evaluated (or run) with formal-parameter names taking the values passed as arguments to them. +Functions are described in detail in section \ref{sec:script:functions} on page \pageref{sec:script:functions}. Here I describe them briefly in relation to their use. Functions are objects containing \Rlang code that can be used to perform an operation on values passed as arguments to its parameters. They return the result of the operation as a single \Rlang object, or less frequently, as a side effect. Functions have a name like any other \Rlang object. If the name of a function is followed by parentheses \code{()} and included in a code statement, it becomes a function \emph{call} or a ``request'' for the code stored in the function object to be run. Many functions, accept \Rlang objects and/or constant values as \emph{arguments} to their \emph{formal parameters}. Formal parameters are placeholder names in the code stored in the function object, or the \emph{definition} of the function. In a function call, the code in its definition is evaluated (or run) with formal parameter names taking the values passed as arguments to them. -In a function definition, formal parameters can be assigned default values, which are used if no explicit argument is passed in the call. Arguments can be passed to formal parameters by name or by position. In most cases, passing arguments by name makes the code easier to understand and more robust against coding mistakes. In the examples in the book I most frequently pass arguments by name, except for the first parameter. +In a function definition, formal parameters can be assigned default values, which are used if no explicit argument is passed in the call. Arguments can be passed to formal parameters by name or by position. In most cases, passing arguments by name makes the code easier to understand and more robust against coding mistakes. In the examples presented in the book, I most frequently pass arguments by name, except for the first parameter. Being \code{digits}, the second parameter, its argument can also be passed by position. @@ -2012,7 +2012,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{playground} \begin{explainbox} - \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts I give only one example of their use. Complex numbers as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. + \Rlang supports complex numbers and arithmetic operations with class \Rclass{complex}. As complex numbers rarely appear in user-written scripts, I give only one example of their use. Complex numbers, as defined in mathematics, have two parts, a real component and an imaginary one. Complex numbers can be used, for example, to describe the result of $\sqrt{-1} = 1i$. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2093,7 +2093,7 @@ \section{Numeric Values and Arithmetic}\label{sec:calc:numeric} \end{kframe} \end{knitrout} -In \pgrmname{RStudio} all objects are listed in the \textbf{Environment} tab and the search box of this tab can be used to find a given object. +In \pgrmname{RStudio}, all objects are listed in the \textbf{Environment} tab and the search box of this tab can be used to find a given object. \begin{explainbox} Function \Rfunction{remove()} accepts both bare names of objects as in the chunk above and \code{character} strings corresponding to object names like in \code{remove("any.object")}. However, While \Rfunction{objects()} accept patterns to be matched to object names, \Rfunction{remove()} does not. Because of this, these two functions have to be used together for removing all objects with names that match a pattern. The pattern can be given as a regular expression (see section \ref{sec:calc:regex} on page \pageref{sec:calc:regex}). @@ -2459,11 +2459,11 @@ \section{Character Values}\label{sec:calc:character} \end{kframe} \end{knitrout} -\begin{faqbox}{How to trim leading and/or trailing white space in character strings?} +\begin{faqbox}{How to trim leading and/or trailing whitespace in character strings?} Use function \Rfunction{trimws()} (see below for examples). \end{faqbox} -Trimming\index{character strings!whitespace trimming} leading and trailing white space is a frequent operation. \Rlang function \Rfunction{trimws()} implements this operation as shown below. +Trimming\index{character strings!whitespace trimming} leading and trailing whitespace is a frequent operation. \Rlang function \Rfunction{trimws()} implements this operation as shown below. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2484,12 +2484,12 @@ \section{Character Values}\label{sec:calc:character} \end{knitrout} \begin{playground} -Function \Rfunction{trimws()} has additional parameters that make it possible to select which end of the string is trimmed and which characters are considered whitespace. Use \code{help(trimws)} to access the help and study this documentation. Modify the example above so that only trailing white space is removed, and so that the newline character \verb!\n! is not considered whitespace, and thus not trimmed away. +Function \Rfunction{trimws()} has additional parameters that make it possible to select which end of the string is trimmed and which characters are considered whitespace. Use \code{help(trimws)} to access the help and study this documentation. Modify the example above so that only trailing whitespace is removed, and so that the newline character \verb!\n! is not considered whitespace, and thus not trimmed away. \end{playground} Within\index{character strings!position-based operations} \Rclass{character} strings, substrings can be extracted and replaced \emph{by position} using \Rfunction{substring()} or \Rfunction{substr()}. -For extraction we can pass to \code{x} a constant as shown below or a variable. +For extraction, we can pass to \code{x} a constant as shown below or a variable. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2648,7 +2648,7 @@ \section{Character Values}\label{sec:calc:character} \end{knitrout} \index{regular expressions|(}% -In\label{sec:calc:regex} the examples above the arguments for \code{pattern} strings matched exactly their targets. In \Rlang and other languages \emph{regular expressions} are used to concisely describe more elaborate and conditional patterns. Regular expressions themselves are encoded as character strings, where some characters and character sequences have special meaning. This means that when a pattern should be interpreted literally rather than specially, \code{fixed = TRUE} should be passed in the call. This in addition, ensures faster computation. In the examples above, the patterns used contained no characters with special meaning, thus, the returned value is not affect by passing \code{fixed = TRUE} as done here. +In\label{sec:calc:regex} the examples above, the arguments for \code{pattern} strings matched exactly their targets. In \Rlang and other languages, \emph{regular expressions} are used to concisely describe more elaborate and conditional patterns. Regular expressions themselves are encoded as character strings, where some characters and character sequences have special meaning. This means that when a pattern should be interpreted literally rather than specially, \code{fixed = TRUE} should be passed in the call. This, in addition, ensures faster computation. In the examples above, the patterns used contained no characters with special meaning, thus, the returned value is not affect by passing \code{fixed = TRUE} as done here. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2665,9 +2665,9 @@ \section{Character Values}\label{sec:calc:character} Regular expressions are used in Unix and Linux shell scripts and programs, and are part of \perllang, \Cpplang and other languages in addition to \Rlang. This means that variations exist on the same idea, with \Rlang supporting two variations of the syntax. A description of \Rlang regular expressions can be accessed with \code{help(regex)}. We here describe \Rlang's default syntax. \end{warningbox} -Regular expressions are concise, terse and extremely powerful. They are a language in themselves. However, the effort needed to learn their use more than pays back. I will show examples of the use, rather than systematically describe them. I will use \Rfunction{gsub()} for these examples, but several other \Rlang functions including \Rfunction{grep()} and \Rfunction{grepl()} accept regular expressions as patterns. +Regular expressions are concise, terse, and extremely powerful. They are a language in themselves. However, the effort needed to learn their use more than pays back. I will show examples of the use, rather than systematically describe them. I will use \Rfunction{gsub()} for these examples, but several other \Rlang functions including \Rfunction{grep()} and \Rfunction{grepl()} accept regular expressions as patterns. -In a regular expression \code{|} separates alternative matching patterns. +In a regular expression, \code{|} separates alternative matching patterns. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2680,7 +2680,7 @@ \section{Character Values}\label{sec:calc:character} \end{kframe} \end{knitrout} -Within a regular expression we can group characters within \code{[ ]} as alternative, e.g, \code{[0123456789]}, or \code{[0-9]} matches any digit. +Within a regular expression, we can group characters within \code{[ ]} as alternative, e.g., \code{[0123456789]}, or \code{[0-9]} matches any digit. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2725,7 +2725,7 @@ \section{Character Values}\label{sec:calc:character} \end{kframe} \end{knitrout} -A dot (\code{.}) matches any character. In this example we replace the last character with \code{""}. +A dot (\code{.}) matches any character. In this example, we replace the last character with \code{""}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -2878,7 +2878,7 @@ \section{Character Values}\label{sec:calc:character} \begin{warningbox}\label{box:calc:locale} The ASCII character set is the oldest and simplest in use. In contains only 128 characters including non-printable characters. These characters support the English language. Several different extended versions with 256 characters provided support for other languages, mostly by adding accented letters and some symbols. The 128 ASCII characters were for a long time the only consistently available across computers set up for different languages and countries (or \emph{locales}). Recently the use of much larger character sets like UTF8 has become common. Since \Rlang version 4.2.0 support for UTF8 is available under Windows 10. This makes it possible the processing of text data for many more languages than in the past. Even though now it is possible to use non-ASCII characters as part of object names, it is anyway safer to use only ASCII characters as this support is recent. - The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (--), minus sign ($-$) and regular dash (-) which are all different characters, with only the last one recognised by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and'') which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. + The extended character sets include additional characters, that are distinct but may produce glyphs that look very similar to those in the ASCII set. One case are em-dash (---), en-dash (--), minus sign ($-$) and regular dash (-), which are all different characters, with only the last one recognised by \Rlang as the minus operator. For those copying and pasting text from a word-processor into \Rpgrm or \RStudio, a frequent difficulty is that even if one types in an ASCII quote character (\verb|"|), the opening and closing quotes in many languages are automatically replaced with non-ASCII ones (``and''), which \Rlang does not accept as character string delimiters. The best solution is to use a plain text editor instead of a word processor when writing scripts or editing text files containing data to be read as code statements or numerical data. A locale definition determines not only the language, and character set, but also date, time, and currency formats. \end{warningbox} @@ -2936,7 +2936,7 @@ \section{Logical Values and Boolean Algebra}\label{sec:calc:boolean} \end{knitrout} %%%% index operators using verb!! -The availability of two kinds of logical operators can be troublesome for those new to \Rlang. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorised operators have single-character names, \Roperator{\&} and \Roperator{\textbar} (similarly to vectorised arithmetic operators like \code{+}), while the non-vectorised ones have double-character names, \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorised. In recent versions of \Rlang, an error is triggered when a non-vectorised operator is used with a vector with length $> 1$, which helps prevent mistakes. In some situations, vectorised \code{logical} operators can replace non-vectorised ones, but it is important to use the ones that match the intention of the code, as this enables relevant checks for mistakes. Once the distinction is learnt, using the most appropriate operators also contributes to make code easier to read. +The availability of two kinds of logical operators can be troublesome for those new to \Rlang. Pairs of ``equivalent'' logical operators behave differently, use similar syntax and use similar symbols! The vectorised operators have single-character names, \Roperator{\&} and \Roperator{\textbar} (like the vectorised arithmetic operators, such as \code{+}), while the non-vectorised ones have double-character names, \Roperator{\&\&} and \Roperator{\textbar\textbar}. There is only one version of the negation operator \Roperator{!} that is vectorised. In recent versions of \Rlang, an error is triggered when a non-vectorised operator is used with a vector with length $> 1$, which helps prevent mistakes. In some situations, vectorised \code{logical} operators can replace non-vectorised ones, but it is important to use the ones that match the intention of the code, as this enables relevant checks for mistakes. Once the distinction is learnt, using the most appropriate operators also contributes to make code easier to read. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -3274,7 +3274,7 @@ \section{Comparison Operators and Operations}\label{sec:calc:comparison} Individual comparisons can be useful, but their full role in data analysis and programming is realised when we combine multiple tests using the operations of the Boolean algebra described in section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. -For example to test if members of a numeric vector are within a range, in our example, $-1$ to $+1$, we can combine the results from two comparisons using the vectorised logical \emph{AND} operator \Roperator{\&}, and use parentheses to override the default order of precedence of the operations. +For example, to test if members of a numeric vector are within a range, in our example, $-1$ to $+1$, we can combine the results from two comparisons using the vectorised logical \emph{AND} operator \Roperator{\&}, and use parentheses to override the default order of precedence of the operations. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -3301,7 +3301,7 @@ \section{Comparison Operators and Operations}\label{sec:calc:comparison} \end{kframe} \end{knitrout} -Or we can combine another two comparisons using the vectorised logical \emph{OR} operator \Roperator{\textbar}. +Or, we can combine another two comparisons using the vectorised logical \emph{OR} operator \Roperator{\textbar}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -3314,7 +3314,7 @@ \section{Comparison Operators and Operations}\label{sec:calc:comparison} \end{kframe} \end{knitrout} -In some cases an additional advantage is that \Rclass{logical} values require less space in memory for their storage than \code{numeric} values. +In some cases, an additional advantage is that \Rclass{logical} values require less space in memory for their storage than \code{numeric} values. \begin{playground} Use the statement below as a starting point in exploring how precedence works when logical and arithmetic operators are part of the same statement. \emph{Play} with the example by adding parentheses at different positions and based on the returned values, work out the default order of operator precedence used for the evaluation of the example given below. @@ -3330,7 +3330,7 @@ \section{Comparison Operators and Operations}\label{sec:calc:comparison} \end{playground} It is important to be aware of the consequences of ``short-cut evaluation'' (described on page \pageref{par:calc:shortcut:eval}). -The behaviour of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. \code{TRUE} passed as an argument to parameter \code{na.rm}, results in \code{NA} values being \emph{removed} from the input \textbf{before} the function is applied. +The behaviour of many of base-\Rlang's functions when \code{NA}s are present in their input arguments can be modified. If \code{TRUE} is passed as an argument to parameter \code{na.rm}, \code{NA} values are \emph{removed} from the input \textbf{before} the function is applied. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -3416,7 +3416,7 @@ \section{Comparison Operators and Operations}\label{sec:calc:comparison} \section{Sets and Set Operations} \index{sets|(}\index{algebra of sets}\index{operators!set|(} -The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. In Bioinformatics it is usual, for example, to make use of character vectors of gene tags. Algebra sets is implemented with functions \code{union()}, \code{intersect()}, \code{setdiff()}, \code{setequal()}, \code{is.element()} and operator \code{\%in\%} (Figure \ref{fig:set:opers}). The first three operations return a vector of the same mode as their inputs, and the last three a \code{logical} vector. The action of the first three operations is most easily illustrated with Venn diagrams, where the returned value (or result of the operation) is depicted in darker grey.\vspace{1ex} +The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. In Bioinformatics, it is usual, for example, to make use of character vectors of gene tags. Algebra sets is implemented with functions \code{union()}, \code{intersect()}, \code{setdiff()}, \code{setequal()}, \code{is.element()} and operator \code{\%in\%} (Figure \ref{fig:set:opers}). The first three operations return a vector of the same mode as their inputs, and the last three a \code{logical} vector. The action of the first three operations is most easily illustrated with Venn diagrams, where the returned value (or result of the operation) is depicted in darker grey.\vspace{1ex} \begin{figure} \begin{footnotesize} @@ -3757,7 +3757,7 @@ \section{Sets and Set Operations} \end{playground} \begin{explainbox} -Function \Rfunction{duplicated()} is the counterpart of \Rfunction{unique()}, returning a logical vector indicating which values in a vector are duplicates of values already present at positions with a lower index. +Function \Rfunction{duplicated()} is the counterpart of \Rfunction{unique()}, returning a logical vector, indicating which values in a vector are duplicates of values already present at positions with a lower index. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -3883,7 +3883,7 @@ \section{The Mode and Class of Objects}\label{sec:rlang:mode} \index{objects!mode} Classes are abstractions, they determine the ``meaning'' and behaviour of objects belonging to them. New classes can be defined in user code as well as new methods, i.e., functions or operators tailored to fit them. The \emph{class} is like a ``tag'' that tells how the value in an object should be interpreted and operated upon. -Variables (names given to objects) have a \emph{class} that depends on the object stored in them. In contrast to some other languages in \Rlang assignment to a variable already in use to store an object belonging to a different class is allowed. There is a restriction that all elements in a vector, array or matrix, must be of the same mode (these are called atomic, as they contain homogeneous members). Lists and data frames can be heterogenous (to be described in chapter \ref{chap:R:collective}). In practice this means that we can assign an object, such as a vector, with a different \code{class} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. +Variables (names given to objects) have a \emph{class} that depends on the object stored in them. In contrast to some other languages in \Rlang assignment to a variable already in use to store an object belonging to a different class is allowed. There is a restriction that all elements in a vector, array or matrix, must be of the same mode (these are called atomic, as they contain homogeneous members). Lists and data frames can be heterogenous (to be described in chapter \ref{chap:R:collective}). In practice, this means that we can assign an object, such as a vector, with a different \code{class} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. Function \Rfunction{class()} is used to query the class of an object, and function \Rfunction{inherits()} is used to test if an object belongs to a specific class or not (including ``parent'' classes, to be later described). @@ -4081,7 +4081,7 @@ \section{The Mode and Class of Objects}\label{sec:rlang:mode} \section{Type Conversions}\label{sec:calc:type:conversion} \index{type conversion|(} -By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can for example convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} +By type conversion we mean converting a value from one class into a value expressed in a different class. usually the meaning can be retained, at least in part. We can, for example, convert character strings into numeric values, but this conversion is possible only for character strings conformed by digits, like \code{"100"}. Most conversions, such as the conversion of \code{character} value \code{"100"} into \code{numeric} value \code{100} are obvious. Type conversions involving logical values are less intuitive. By convention, functions used to convert objects from one mode or class to a different one have names starting with \code{as.}\footnote{Except for some packages in the \pkgnameNI{tidyverse} that use names starting with \code{as\_} instead of \code{as.}.}.\qRfunction{as.character()}\qRfunction{as.numeric()}\qRfunction{as.logical()} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4185,7 +4185,7 @@ \section{Type Conversions}\label{sec:calc:type:conversion} \end{playground} \begin{playground} -Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them is handled creates additional possibilities. All these approaches as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. +Conversion of fractional numbers into whole numbers can be achieved in different ways, by truncation of the fractional part or rounding it up or down. If we consider both negative and positive numbers, how each of them is handled creates additional possibilities. All these approaches, as defined in mathematics, are available through different \Rlang functions. These functions, are not conversion functions as they return a \code{numeric} value of class \code{double}. See page \pageref{par:calc:round}. In contrast, \Rfunction{as.integer()} is a conversion function for type \code{double} into type \code{integer}, both with mode \code{numeric}. Compare the values returned by \Rfunction{trunc()} and \Rfunction{as.integer()} when applied to a floating point number, such as \code{12.34}. Check for the equality of values, and for the \emph{class} and \emph{type} of the returned objects. \end{playground} @@ -4315,14 +4315,14 @@ \section{Type Conversions}\label{sec:calc:type:conversion} \end{kframe} \end{knitrout} -In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}, so in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. +In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}; so, in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. \begin{playground} Function \Rfunction{format()} may be easier to use, in some cases, but \Rfunction{sprintf()} is more flexible and powerful. Those with experience in the use of the \Clang language will already know about \Rfunction{sprintf()} and its use of templates for formatting output. Even if you are familiar with \Clang, look up the help pages for both functions, and practice, by trying to create the same formatted output by means of the two functions. Do also play with these functions with other types of data like \code{integer} and \code{character}. \end{playground} \begin{explainbox} -I have above described \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA}s come in various flavours. \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. +I have described above \Rconst{NA} as a single value ignoring modes, but in reality \Rconst{NA} values come in various flavours: \Rconst{NA\_real\_}, \Rconst{NA\_character\_}, etc. and \Rconst{NA} defaults to an \Rconst{NA} of class \Rclass{logical}. \Rconst{NA} is normally converted on the fly to other modes when needed, so in general \Rconst{NA} is all we need to use. The examples below use the extraction operator to demonstrate automatic conversion on assignment. This operator is described in section \ref{sec:calc:indexing} below. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4408,9 +4408,9 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} \index{vectors!indexing|(}\index{vectors!member extraction} If you have read earlier sections of this chapter, you already know how to create a vector. If not, see pages \pageref{par:numeric:vectors:start}--\pageref{par:numeric:vectors:end} before continuing. -In this section we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector $a_{i = 1\ldots n}$. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. What in maths notation would be $a_i$, in \Rpgrm is represented as \code{a[i]} and the whole vector, by excluding the brackets and indexing vector, as \code{a}. +In this section, we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector $a_{i = 1\ldots n}$. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. While in maths notation $a_1$ represents the first, or leftmost, member of vector $a_{i = 1\ldots n}$, in \Rpgrm the equivalent notation is \code{a[1]} for the member and \code{a} for the vector. -We extract the first 10 elements of the vector \code{letters}. +We extract the first 10 elements of the vector \code{letters}, by passing an \code{integer} vector as argument to operator \Roperator{[ ]}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4522,7 +4522,7 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{knitrout} \begin{playground} -The length of the indexing vector is \emph{not} restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA}s. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. +The length of the indexing vector is \emph{not} restricted by the length of the indexed vector. However, only numerical indexes that match positions present in the indexed vector can extract values. Those values in the indexing vector pointing to positions that are not present in the indexed vector, result in \code{NA} values. This is easier to learn by \emph{playing} with \Rlang, than from explanations. Play with \Rlang, using the following examples as a starting point. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4566,7 +4566,7 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{knitrout} \begin{advplayground} -Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using ``subscripts'' which are special values instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. +Results from indexing with special values and zero may be surprising. Try to build a rule from the examples below, a rule that will help you remember what to expect next time you are confronted with similar statements using special values as ``subscripts'' instead of integers larger or equal to one---this is likely to happen sooner or later as these special values can be returned by different \Rlang expressions depending on the value of operands or function arguments, some of them described earlier in this chapter. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4671,7 +4671,7 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{kframe} \end{knitrout} -We can create a named vector to \emph{map} the single letter codes onto full words. Above we used function \Rfunction{c()} to concatenate several \code{character} strings, without assigning any names to them, thus they have to be extracted from the vector using \code{numeric} values, indexing by position. Below, we assign a name to each string. Using operator \Roperator{=} we assign the name on the left-hand side (\emph{lhs}) to the member of the vector on the right-hand-side (\emph{rhs}). +We can create a named vector to \emph{map} the single letter codes onto full words. Above, we used function \Rfunction{c()} to concatenate several \code{character} strings, without assigning any names to them, thus they have to be extracted from the vector using \code{numeric} values, indexing by position. Below, we assign a name to each string. Using operator \Roperator{=} we assign the name on the left-hand side (\emph{lhs}) to the member of the vector on the right-hand-side (\emph{rhs}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4766,7 +4766,7 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} It is more common to use named members with lists than with vectors, but in \Rlang, in both cases it is possible to use both numeric positional indices and names. \end{explainbox} -Indexing can be used on either side of an assignment expression. In the code chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left-hand side and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to compare, identical vectors are used in each of the examples below. +Indexing can be used on either side of an assignment expression. In the code chunk below, we use the extraction operator on the left-hand side of the assignments to replace values only at selected positions in the vector. This may look rather esoteric at first sight, but it is just a simple extension of the logic of indexing described above. It works, because the low precedence of the \Roperator{<-} operator results in both the left- and the right-hand side being fully evaluated before the assignment takes place. To make the changes to the vectors easier to compare, identical vectors are used in each of the examples below. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -4835,7 +4835,7 @@ \section{Vector Manipulation}\label{sec:vectors}\label{sec:calc:indexing} \end{knitrout} \begin{playground} -Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{a}, so, when studying variations of this example you will need to recreate \code{a} by executing the first statement, each time you run a variation of the second statement. +Do play with subscripts to your heart's content, really grasping how they work and how they can be used, will be very useful in anything you do in the future with \Rlang. Even the contrived example below follows the same simple rules, just study it bit by bit. Hint: the second statement in the chunk below, modifies \code{VCT1}, so, when studying variations of this example, you will need to recreate \code{VCT1} by executing the first statement each time you run a variation of the second statement. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5093,7 +5093,7 @@ \section{Matrices and Multidimensional Arrays}\label{sec:matrix:array} \end{equation*} where $A$ represents the whole matrix, $m \times n$ its dimensions, and $a_{i,j}$ its elements, with $i$ indexing rows and $j$ indexing columns. The lengths of the two dimensions of the matrix are given by $m$ and $n$, for rows and columns. -Vectors have a single dimension, and, as described on page \pageref{par:calc:vectors:diag} above, we can query this dimension, their length, with function \Rfunction{length()}. Matrices have two dimensions, which can be queried individually with \Rfunction{ncol()} and \Rfunction{nrow()}, and jointly with \Rfunction{dim()}. As expected \Rfunction{is.matrix()} can be used to query the class. +Vectors have a single dimension, and, as described on page \pageref{par:calc:vectors:diag}, we can query this dimension, their length, with function \Rfunction{length()}. Matrices have two dimensions, which can be queried individually with \Rfunction{ncol()} and \Rfunction{nrow()}, and jointly with \Rfunction{dim()}. As expected, \Rfunction{is.matrix()} can be used to query the class. We can create a matrix using the \Rfunction{matrix()} or \Rfunction{as.matrix()} constructors. The first argument of \Rfunction{matrix()} must be a vector. Function \Rfunction{as.matrix()} is a conversion constructor, with specialisations accepting as argument objects belonging to a few other classes. The shape of the \code{matrix} is controlled by passing an argument to either \code{ncol} or \code{nrow}. @@ -5165,7 +5165,7 @@ \section{Matrices and Multidimensional Arrays}\label{sec:matrix:array} \end{kframe} \end{knitrout} -And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyse it and predict what the returned value will be. Afterwards, compare your prediction, to the value actually returned. +And to start getting a sense of how to interpret error and warning messages, run the code below and make sure you understand which problem is being reported. Before executing the statement, analyse it and predict what the returned value will be. Afterwards, compare your prediction with the value actually returned. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5456,7 +5456,7 @@ \section{Matrices and Multidimensional Arrays}\label{sec:matrix:array} \end{warningbox} \begin{explainbox} -In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element or no elements. However, in all cases, a \code{matrix} will have as \emph{dimensions} attribute an \code{integer} vector of length two. +In \Rlang, a \Rclass{matrix} can have a single row, a single column, a single element, or no elements. However, in all cases, a \code{matrix} will have as \emph{dimensions} attribute an \code{integer} vector of length two. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5645,7 +5645,7 @@ \section{Matrices and Multidimensional Arrays}\label{sec:matrix:array} \end{kframe} \end{knitrout} -In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3 = 3^3$. Arrays are printed in slices, with slices across 3rd and higher dimensions printed separately, with their corresponding indexes above each slice and the first two dimensions on the margins of the individual slices, similarly to how matrices are displayed. +In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3 = 3^3$. Arrays are printed in slices, where slices across 3rd and higher dimensions are shown separately, with their corresponding indexes above each slice and the first two dimensions on the margins of the individual slices, similarly to how matrices are displayed. \begin{playground} How do you use indexes to extract the second element of the original vector, in each of the following matrices and arrays? @@ -5675,7 +5675,7 @@ \section{Matrices and Multidimensional Arrays}\label{sec:matrix:array} Be aware that vectors and one-dimensional arrays are not the same thing, while two-dimensional arrays are matrices. \begin{enumerate} \item Use the different constructors and query functions to explore this, and its consequences. - \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first. + \item Convert a matrix into a vector using \Rfunction{as.vector()} and compare the returned values to those in the matrix. Are values extracted by columns or by rows first? \end{enumerate} \end{playground} \index{arrays|)} @@ -5849,7 +5849,7 @@ \section{Factors}\label{sec:calc:factors} In data analysis and Statistics, the distinction between values measured on continuous vs.\ discrete \emph{scales} is crucial. In a continuous scale, any values are in theory possible. In a discrete scale, the observations are values from a few categories. -In contrast to other statistical software in which a variable is set as continuous or discrete when defining a model to be fitted or when setting up a test, in \Rlang this distinction is based on whether the explanatory variable is \code{numeric} (continuous) or a \code{factor} (discrete). This approach makes sense because in most cases considering an explanatory variable as categorical or not, depends on the quantity stored and/or the design of the experiment or survey. In other words, being categorical is a property of the data. The order of the levels in an unordered \code{factor} does not affect simple calculations or the values plotted, but as we will see in chapters \ref{chap:R:statistics} and \ref{chap:R:plotting}, it can affect the contrasts used by some tests of significant, and the arrangement or positions of the levels along axes and keys in plots. +In contrast to other statistical software in which a variable is set as continuous or discrete when defining a model to be fitted or when setting up a test, in \Rlang this distinction is based on whether the explanatory variable is \code{numeric} (continuous) or a \code{factor} (discrete). This approach makes sense because in most cases considering an explanatory variable as categorical or not, depends on the quantity stored and/or the design of the experiment or survey. In other words, being categorical is a property of the data. The order of the levels in an unordered \code{factor} does not affect simple calculations or the values plotted, but as we will see in chapters \ref{chap:R:statistics} and \ref{chap:R:plotting}, it can affect the contrasts used by some tests of significance, and the arrangement or positions of the levels along axes and keys in plots. In an \Rlang \code{factor}, values indicate discrete unordered categories, most frequently the treatments in an experiment, or categories in a survey. Factor can be created either from numerical or character vectors. The different possible values are called \emph{levels}. Factors created with \Rfunction{factor()} are always unordered or categorical. \Rlang also supports \code{ordered} factors, created with function \Rfunction{ordered()} with identical user interface. The distinction, however, only affects how they are interpreted in statistical tests as discussed in chapter \ref{chap:R:statistics}.\index{factors!ordered} @@ -5882,7 +5882,7 @@ \section{Factors}\label{sec:calc:factors} \end{knitrout} \begin{explainbox} -When the pattern of levels is regular, it is possible to use function \Rfunction{gl()}, \emph{generate levels}, to construct a factor. Nowadays, it is usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within \Rlang, \Rfunction{gl()} can save some typing. In this case instead of passing a vector as argument, we pass a \emph{recipe} to create it: \code{n} is the number of levels, and \code{k} the number of contiguous repeats (called ``replicates'' in \Rlang documentation) and \code{length} the length of the factor to be created. +When the pattern of levels is regular, it is possible to use function \Rfunction{gl()}, \emph{generate levels}, to construct a factor. Nowadays, it is usual to read data into \Rlang from files in which the treatment codes are already available as character strings or numeric values, however, when we need to create a factor within \Rlang, \Rfunction{gl()} can save some typing. In this case, instead of passing a vector as argument, we pass a \emph{recipe} to create it: \code{n} is the number of levels, \code{k} the number of contiguous repeats (called ``replicates'' in \Rlang documentation), and \code{length} the length of the factor to be created. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5909,7 +5909,7 @@ \section{Factors}\label{sec:calc:factors} \end{knitrout} \end{explainbox} -It is always preferable to use meaningful labels for levels, even if \Rlang does not require it. Here the vector is stored in a variable named \code{my.vector}. In a real data analysis situation in most cases the vector would have been read from a file on disk and would be longer. +It is always preferable to use meaningful labels for levels, even if \Rlang does not require it. Here the vector is stored in a variable named \code{my.vector}. In a real data analysis situation, in most cases, the vector would have been read from a file on disk and would be longer. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5924,7 +5924,7 @@ \section{Factors}\label{sec:calc:factors} \end{kframe} \end{knitrout} -The ordering of levels is established at the time a factor is created, and by default is alphabetical. This default ordering of levels is frequently not the one needed. We can pass an argument to parameter \code{levels} of function \Rfunction{factor()} to set a different ordering of the levels. +The ordering of levels is established at the time a factor is created and by default it is alphabetical. This default ordering of levels is frequently not the one needed. We can pass an argument to parameter \code{levels} of function \Rfunction{factor()} to set a different ordering of the levels. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -5966,7 +5966,7 @@ \section{Factors}\label{sec:calc:factors} \end{kframe} \end{knitrout} -In the examples above we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument to parameter \code{x}. This makes it possible to modify the ordering of levels or replace the labels in a factor. +In the examples above, we passed a numeric vector or a character vector as an argument for parameter \code{x} of function \Rfunction{factor()}. It is also possible to pass a \code{factor} as an argument to parameter \code{x}. This makes it possible to modify the ordering of levels or replace the labels in a factor. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6163,7 +6163,7 @@ \section{Factors}\label{sec:calc:factors} \end{playground} \begin{explainbox} -\textbf{Safely reordering and renaming factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter as shown on page \pageref{par:calc:factor:rename:levels}. In these more advanced examples we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself to protect from possible bugs due to typing mistakes, or for changes in the naming conventions used. +\textbf{Safely reordering and renaming factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter as shown on page \pageref{par:calc:factor:rename:levels}. In these more advanced examples, we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself to protect from possible bugs due to typing mistakes, or for changes in the naming conventions used. Reverse previous order using \Rfunction{rev()}. @@ -6324,19 +6324,19 @@ \chapter{Base \Rlang: ``Collective Nouns''}\label{chap:R:collective} \section{Aims of This Chapter} -Data-set organisation and storage is one of the keys to efficient data analysis. How to keep together all the information that belongs together, say all measurements from an experiment and corresponding metadata such as treatments applied and/or dates. The title ``collective nouns'' is based on the idea that a data set is a collection of data objects. +Data set organisation and storage is one of the keys to efficient data analysis. How to keep together all the information that belongs together, say all measurements from an experiment and corresponding metadata such as treatments applied and/or dates. The title ``collective nouns'' is based on the idea that a data set is a collection of data objects. In this chapter, you will familiarise with how data sets are usually managed in \Rlang. I use both abstract examples to emphasise the general properties of data sets and the \Rlang classes available for their storage and a few more specific examples to exemplify their use in a more concrete way. While in chapter \ref{chap:R:as:calc} the focus was on atomic data types and objects, like vectors, useful for the storage of collections of values of a given type, like numbers, in the present chapter the focus is on the storage within a single object of heterogeneous data, such as a combination of factors, and character and numeric vectors. Broadly speaking, heterogeneous \emph{data containers}. -As in the previous chapter, I use diagrams to describe the structure of objects. +To describe the structure of \Rlang objects I use diagrams similar to those in the previous chapter. \index{data sets!their storage|(} \section{Data from Surveys and Experiments} \index{data sets!origin}\index{data sets!characteristics} -The data we plot, summarise and analyse in \Rlang, in most cases originate from measurements done as part of experiments or surveys. Data collected mechanically from user interactions with websites or by crawling through internet content originate from a statistical perspective from surveys. The value of any data comes from knowing their origin, say treatments applied to plants, or the country from where website users connect, sometimes several properties are of interest to describe the origin of the data and in other cases observations consist in the measurement of multiple properties on each subject under study. Consequently, all software designed for data analysis implements ways of dealing with data sets as a whole both during storage and when passing them as arguments to functions. A data set is a usually heterogeneous collection of data with related information. +The data we plot, summarise, and analyse in \Rlang, in most cases, originate from measurements done as part of experiments or surveys. Data collected mechanically from user interactions with websites or by crawling through internet content originate from a statistical perspective from surveys. The value of any data comes from knowing their origin, say treatments applied to plants, or the country from where website users connect; sometimes several properties are of interest to describe the origin of the data and in other cases observations consist in the measurement of multiple properties on each subject under study. Consequently, all software designed for data analysis implements ways of dealing with data sets as a whole both during storage and when passing them as arguments to functions. A data set is a usually heterogeneous collection of data with related information. -In \Rlang, lists are the most flexible type of objects useful for storing whole data sets. In most cases we do not need this much flexibility, so rectangular collections of observations are most frequently stored in a variation upon lists called data frames. These objects can have as their members the vectors and factors described in chapter \ref{chap:R:as:calc}. +In \Rlang, lists are the most flexible type of objects useful for storing whole data sets. In most cases, we do not need this much flexibility, so rectangular collections of observations are most frequently stored in a variation upon lists called data frames. These objects can have as their members the vectors and factors described in chapter \ref{chap:R:as:calc}. Any \Rlang object can have attributes, allowing objects to carry along additional bits of information. Some like comments are part of \Rlang and aimed at storage of ancillary information or metadata by users. Other attributes are used internally by \Rlang and finally users can store arbitrary ancillary data using attributes created \emph{ad hoc}. @@ -6347,11 +6347,11 @@ \section{Lists}\label{sec:calc:lists} In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as the members of vectors. Members of a list as well as members of a vector can be named, and retrieved (indexed) through their names. In practice, named lists are more frequently used than named vectors. \Rlang lists are created, or constructed, with function \Rfunction{list()} similarly as vectors are constructed with function \Rfunction{c()}. \begin{explainbox} - In \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user-defined classes. + \Rlang lists can have as members not only objects storing data on observations and categories, but also function definitions, model formulas, unevaluated expressions, matrices, arrays, and objects of user-defined classes. \end{explainbox} \begin{explainbox} -List and list-like objects are widely used in \Rlang because they make it possible to keep, for example, the data, instructions for operations and results from operations together in a single \Rlang object that can saved, copied, etc. as a unit. This avoids the proliferation of multiple disconnected objects with their interrelations being encoded only by their names, or even worse in separate notes or even in a person's memory, all approaches that are error-prone. Model fit functions described in chapter \ref{chap:R:statistics} are good examples of this approach. Objects used to store the instructions to build plots with multiple layers as described in chapter \ref{chap:R:plotting} are also good examples. +List and list-like objects are widely used in \Rlang because they make it possible to keep, for example, the data, instructions for operations, and results from operations together in a single \Rlang object that can be saved, copied, etc. as a unit. This avoids the proliferation of multiple disconnected objects with their interrelations being encoded only by their names, or even worse in separate notes or even in a person's memory---all approaches that are error-prone. Model fit functions described in chapter \ref{chap:R:statistics} are good examples of this approach. Objects used to store the instructions to build plots with multiple layers as described in chapter \ref{chap:R:plotting} are also good examples. \end{explainbox} Our first list has as its members three different vectors, each one belonging to a different class: \code{numeric}, \code{character} and \code{logical}. The three vectors also differ in their length: 6, 1, and 2, respectively.\qRfunction{list()}\qRfunction{names()} @@ -6458,7 +6458,7 @@ \section{Lists}\label{sec:calc:lists} \subsection{Member extraction, deletion and insertion} -In\index{lists!member extraction|(}\index{lists!member indexing|see{lists, member extraction}}\index{lists!deletion and addition of members|(} section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} we saw that the extraction operator \Roperator{[ ]} applied to a vector, returns a vector, longer or shorter, possibly of length one, or even length zero. Similarly, applying operator \Roperator{[ ]} to a list returns a list, possibly of different length: \code{lst1["x"]} or \code{lst[1]} return a list containing only one member, the numeric vector stored at the first position of \code{lst1}. In the last statement in the chunk below, \code{lst1[c(1, 3)]} returns a list of length two as expected. +In\index{lists!member extraction|(}\index{lists!member indexing|see{lists, member extraction}}\index{lists!deletion and addition of members|(} section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}, we saw that the extraction operator \Roperator{[ ]} applied to a vector, returns a vector, longer or shorter, possibly of length one, or even length zero. Similarly, applying operator \Roperator{[ ]} to a list returns a list, possibly of different length: \code{lst1["x"]} or \code{lst[1]} return a list containing only one member, the numeric vector stored at the first position of \code{lst1}. In the last statement in the chunk below, \code{lst1[c(1, 3)]} returns a list of length two as expected. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6539,7 +6539,7 @@ \subsection{Member extraction, deletion and insertion} \end{knitrout} \begin{explainbox}\label{box:extraction:opers} -We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[ ]]}, or with \Roperator{\$}. Operators \Roperator{[ ]} and \Roperator{[[ ]]} work like normal \Rlang functions, accepting as arguments passed to them both constant values and variables for indexing. In contrast, \Roperator{\$} mainly intended for use when typing at the console, accepts only bare member names on its \emph{rhs}. With \Roperator{[[ ]]} the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. A number as a positional index is also accepted. +We mentioned above that indexing by name can be done either with double square brackets, \Roperator{[[ ]]}, or with \Roperator{\$}. Operators \Roperator{[ ]} and \Roperator{[[ ]]} work like normal \Rlang functions, accepting as arguments passed to them both constant values and variables for indexing. In contrast, \Roperator{\$} mainly intended for use when typing at the console, accepts only bare member names on its \emph{rhs}. With \Roperator{[[ ]]}, the name of the variable or column is given as a character string, enclosed in quotation marks, or as a variable with mode \code{character}. A number as a positional index is also accepted. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6638,7 +6638,7 @@ \subsection{Member extraction, deletion and insertion} \end{kframe} \end{knitrout} -Extraction\label{par:calc:list:member:assign} operators can be used on the \emph{lhs} as well as on the \emph{rhs} of an assignment, and lists can be empty, i.e, be of length zero. The example below makes use of this to build a list step by step. +Extraction\label{par:calc:list:member:assign} operators can be used on the \emph{lhs} as well as on the \emph{rhs} of an assignment, and lists can be empty, i.e., be of length zero. The example below makes use of this to build a list step by step. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6664,7 +6664,7 @@ \subsection{Member extraction, deletion and insertion} \end{playground} \begin{explainbox} -\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. \Rlang does not implement pointers to ``addresses'', or locations, in memory. In \Rlang, \code{list} members can be accessed through positional indexes or member names, similarly to vector members. Of course, as with vectors, insertions and deletions in the middle of a list, shift the position of members and change which member is pointed at by indexes for positions past the modified location. The names, in contrast, remain valid. +\emph{Lists}, as usually defined in languages like \Clang, are based on pointers to memory locations, with pointers stored at each node. These pointers chain or link the different member nodes (this allows, for example, sorting of lists in place by modifying the pointers). In such implementations, indexing by position is not possible, or at least requires ``walking'' down the list, node by node. \Rlang does not implement pointers to ``addresses'', or locations, in memory. In \Rlang, \code{list} members can be accessed through positional indexes or member names, similarly to vector members. Of course, as with vectors, insertions and deletions in the middle of a list, shift the position of members, and change which member is pointed at by indexes for positions past the modified location. The names, in contrast, remain valid. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6682,7 +6682,7 @@ \subsection{Member extraction, deletion and insertion} \end{knitrout} \end{explainbox} -Three frequent operations on lists are concatenation, insertions and deletions.\index{lists!insert into}\index{lists!append to} The same functions as with vectors are used: functions \Rfunction{c()}, for concatenation, and \Rfunction{append()}, to append and insert. Lists can be combined only with other lists, otherwise, these operations work as with vectors (see pages \pageref{par:calc:concatenate}--\pageref{par:calc:append:end}). +Three frequent operations on lists are concatenation, insertions, and deletions.\index{lists!insert into}\index{lists!append to} The same functions as with vectors are used: \Rfunction{c()}, to concatenate, and \Rfunction{append()}, to append and insert. Lists can be combined only with other lists, otherwise, these operations work as with vectors (see pages \pageref{par:calc:concatenate}--\pageref{par:calc:append:end}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6709,7 +6709,7 @@ \subsection{Member extraction, deletion and insertion} \end{kframe} \end{knitrout} -To\label{par:calc:lists:rm} delete a member from a list we assign \code{NULL} to it. +To\label{par:calc:lists:rm} delete a member from a list, we assign \code{NULL} to it. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -6756,7 +6756,7 @@ \subsection{Member extraction, deletion and insertion} \subsection{Nested lists}\label{sec:calc:lists:nested} -Lists\index{lists!nested} can be nested, i.e., lists of lists can be constructed to an arbitrary depth. In the example below \code{lst4} and \code{lst5} are members of \code{lst6}, i.e., \code{lst4} and \code{lst5} are nested within \code{lst6}. +Lists\index{lists!nested} can be nested, i.e., lists of lists can be constructed to an arbitrary depth. In the example below, \code{lst4} and \code{lst5} are members of \code{lst6}, i.e., \code{lst4} and \code{lst5} are nested within \code{lst6}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -7211,7 +7211,7 @@ \section{Data Frames}\label{sec:R:data:frames} \end{playground} \begin{faqbox}{How to create an empty data frame?} -In the same way as \code{numeric()} by default creates a \code{numeric} vector of length zero, \Rfunction{data.frame()} by default creates a \code{data.frame} with zero rows and no columns. +In the same way as \code{numeric()} creates a \code{numeric} vector of length zero, \Rfunction{data.frame()} by default creates a \code{data.frame} with zero rows and no columns. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -7297,7 +7297,7 @@ \section{Data Frames}\label{sec:R:data:frames} \end{knitrout} \end{faqbox} -Being two-dimensional and rectangular in shape, data frames, in relation to indexing and dimensions behave similarly to a matrix. They have two margins, rows and columns, and, thus, two indices are used to indicate the location of a member ``cell''. We provide some examples here, but please consult section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} and section \ref{sec:matrix:array} on page \pageref{sec:matrix:array} for additional details. +Being two-dimensional and rectangular in shape, data frames, in relation to indexing and dimensions, behave similarly to a matrix. They have two margins, rows, and columns, and, thus, two indices are used to indicate the location of a member ``cell''. We provide some examples here, but please consult section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing} and section \ref{sec:matrix:array} on page \pageref{sec:matrix:array} for additional details. Matrix-like notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is in most cases a ``smaller'' data frame as in this example. @@ -7369,7 +7369,7 @@ \section{Data Frames}\label{sec:R:data:frames} \end{kframe} \end{knitrout} -As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right-hand side and left-hand side of an assignment, allowing the replacement of both individual values and rectangular regions. +As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right- and left-hand sides of an assignment, allowing the replacement of both individual values and rectangular regions. The next few examples do assignments to ``cells'' of \code{df1}, either to one whole column, or individual values. The last statement in the chunk below copies a number from one location to another by using indexing of the same data frame both on the right side and left side of the assignment.\qRoperator{[[ ]]}\qRoperator{[ ]} @@ -7649,7 +7649,7 @@ \section{Data Frames}\label{sec:R:data:frames} \end{kframe} \end{knitrout} -If the list is protected with \Rfunction{I()}, the list is added in whole as a variable or column in the data frame. In this case the length of the list must match the number of rows in the data frame, while the length and class of the individual members of the list can vary. The names of the list members are used to set the \code{rownames} of the data frame. +If the list is protected with \Rfunction{I()}, the list is added in whole as a variable or column in the data frame. In this case, the length of the list must match the number of rows in the data frame, while the length and class of the individual members of the list can vary. The names of the list members are used to set the \code{rownames} of the data frame. This is similar to the default behaviour of tibbles, while \Rlang data frames require explicit use of \Rfunction{I()} for lists not to be split (see chapter \ref{chap:R:data} on page \pageref{chap:R:data} for details about package \pkgname{tibble}). \begin{knitrout}\footnotesize @@ -7754,7 +7754,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} \end{advplayground} \begin{explainbox} -In the case of \Rfunction{subset()} we can select columns directly as shown below, while for most other functions, extraction using operators \Roperator{[ ]}, \Roperator{[[ ]]} or \Roperator{\$} is needed. +In the case of \Rfunction{subset()}, we can select columns directly as shown below, while for most other functions, extraction using operators \Roperator{[ ]}, \Roperator{[[ ]]}, or \Roperator{\$} is needed. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -7837,7 +7837,7 @@ \subsection{Sub-setting data frames}\label{sec:calc:df:subset} \end{kframe} \end{knitrout} -The use of \Rfunction{subset()} is convenient, but more prone to bugs compared to directly using the extraction operator \code{[ ]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. +The use of \Rfunction{subset()} is convenient, but more prone to bugs compared to directly using the extraction operator \code{[ ]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted, and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. \end{warningbox} A frequently used way of deleting a column by name from a data frame is to assign \code{NULL} to it---i.e., in the same way as members are usually deleted from \code{list}s. This approach modifies \code{df9} in place, rather than returning a modified copy of \code{df9}. @@ -8001,7 +8001,7 @@ \subsection{Summarising and splitting data frames}\label{sec:calc:df:split}\labe Related to splitting a data frame is the calculation of summaries based on a subset of cases, or more commonly summaries for all observations but after grouping them based on the values in a column or the levels of a factor. \begin{faqbox}{How to summarise one variable from a data frame by group?} -To summarise a single variable by group we can use \Rfunction{aggregate()}. +To summarise a single variable by group, we can use \Rfunction{aggregate()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8021,7 +8021,7 @@ \subsection{Summarising and splitting data frames}\label{sec:calc:df:split}\labe \end{faqbox} \begin{faqbox}{How to summarise numeric variables from a data frame by group?} -To summarise variables we can use \Rfunction{aggregate()} (see section \ref{sec:dplyr:group:wise} on page \pageref{sec:dplyr:group:wise} for an alternative approach using package \pkgnameNI{dplyr}). +To summarise variables, we can use \Rfunction{aggregate()} (see section \ref{sec:dplyr:group:wise} on page \pageref{sec:dplyr:group:wise} for an alternative approach using package \pkgnameNI{dplyr}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8119,7 +8119,7 @@ \subsection{Re-arranging columns and rows} \end{knitrout} \begin{warningbox} -When using the extraction operator \Roperator{[ ]} on both the left-hand-side and right-hand-side, with a \code{numeric} vector as an argument to swap two columns, the vectors or factors are swapped, while the names of the columns are not! +When using the extraction operator \Roperator{[ ]} on both the left- and right-hand-sides, with a \code{numeric} vector as an argument to swap two columns, the vectors or factors are swapped, while the names of the columns are not! To retain the correspondence between column naming and column contents after swapping or rearranging the columns \emph{using numeric indices}, we need to separately move the names of the columns. This may seem counter-intuitive, unless we think in terms of positions being named rather than the contents of the columns being linked to the names.\qRfunction{colnames()}\qRfunction{colnames()<-} \begin{knitrout}\footnotesize @@ -8205,7 +8205,7 @@ \subsection{Re-arranging columns and rows} \subsection{Re-encoding or adding variables} -It is common that some variables need to be added to an existing data frame based on existing variables, either as a computed value or based on mapping for example treatments to sample codes already in a data frame. In the second case, named\index{named vectors!mapping with} vectors can be used to replace values in a variable or to add a variable to a data frame. +It is common that some variables need to be added to an existing data frame based on existing variables, either as a computed value or based on mapping, for example, treatments to sample codes already in a data frame. In the second case, named\index{named vectors!mapping with} vectors can be used to replace values in a variable or to add a variable to a data frame. Mapping is possible because the length of the value returned by the extraction operator \Roperator{[ ]} is given by the length of the indexing vector (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). Although we show toy-like examples, this approach is most useful with data frames containing many rows. @@ -8271,9 +8271,9 @@ \subsection{Re-encoding or adding variables} \subsection{Operating within data frames}\label{sec:calc:df:with} -In the case of computing new values from existing variables named vectors are of limited use. Instead, variables in a data frame can be added or modified with \Rlang functions \Rscoping{transform()}, \Rscoping{with()} and \Rscoping{within()}. These functions can be thought as convenience functions as the same computations can be done using the extraction operators to access individual variables, in the lhs, rhs or both lhs and rhs (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). +In the case of computing new values from existing variables, named vectors are of limited use. Instead, variables in a data frame can be added or modified with \Rlang functions \Rscoping{transform()}, \Rscoping{with()} and \Rscoping{within()}. These functions can be thought as convenience functions as the same computations can be done using the extraction operators to access individual variables, in the lhs, rhs, or both lhs and rhs (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}). -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. +In the case of \Rscoping{with()}, only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In this example, column \code{A} of \code{df14} takes precedence, and the returned value is the expected one. @@ -8293,7 +8293,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \end{kframe} \end{knitrout} -In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (In this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. +In the case of \Rscoping{within()}, assignments in the argument to its second parameter affect the object returned, which is a copy of the container (in this case, a whole data frame), which still needs to be saved through assignment. Here the intention is to modify it, so we assign it back to the same name, but it could have been assigned to a different name so as not to overwrite the original data frame. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8333,7 +8333,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \end{knitrout} \begin{explainbox} -Repeatedly pre-pending the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed can make \Rlang code verbose and difficult to understand. Functions \Rscoping{attach()} and its matching \Rscoping{detach()} allow us to change where \Rlang first looks for the names of objects mentioned in a code statement. When using a long name for a data frame, entering a simple calculation can easily result in a difficult-to-read statement. Here even with a very short name for the data frame, the verbosity compared to the last chunk above is clear. +Repeatedly pre-pending the name of a \emph{container}, such as a list or data frame, to the name of each member variable being accessed can make \Rlang code verbose and difficult to understand. Functions \Rscoping{attach()} and its matching \Rscoping{detach()} allow us to change where \Rlang first looks for the names of objects mentioned in a code statement. When using a long name for a data frame, entering a simple calculation can easily result in a difficult-to-read statement. Here even with a very short name for the data frame, the verbosity compared to the last chunk above is clear. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8412,7 +8412,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \index{data frames!long vs.\ wide shape} -As mentioned above, in most cases in \Rlang data rows represent measurement events or observations possibly on multiple response variables and factors describing groupings, i.e., a ``long'' shape. However, when measurements are repeated in time, columns rather frequently represent observations of the same response variable at different times, i.e., a ``wide'' shape. Other cases exist where reshaping is needed. Function \Rfunction{reshape()} can convert wide data frames into long data frames and vice versa. See section \ref{sec:data:reshape} on page \pageref{sec:data:reshape} on package \pkgnameNI{tidyr} for an alternative approach to reshaping data with a friendlier user interface. +As mentioned above, in most cases, in \Rlang data rows represent measurement events or observations possibly on multiple response variables and factors describing groupings, i.e., a ``long'' shape. However, when measurements are repeated in time, columns rather frequently represent observations of the same response variable at different times, i.e., a ``wide'' shape. Other cases exist where reshaping is needed. Function \Rfunction{reshape()} can convert wide data frames into long data frames and vice versa. See section \ref{sec:data:reshape} on page \pageref{sec:data:reshape} on package \pkgnameNI{tidyr} for an alternative approach to reshaping data with a friendlier user interface. We start by creating a data frame of hypothetical data measured on two occasions. With these data, for example, if we wish to compute the growth of each subject by computing the difference in \code{weight} and \code{height} between the two time points, one approach is to reshape the data frame into a wider shape and subsequently subtract the columns. @@ -8428,14 +8428,14 @@ \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \end{alltt} \begin{verbatim} ## id Time Weight Height -## 1 1 Before 19.52182 12.021995 -## 2 1 After 29.49598 12.394153 -## 3 2 Before 18.74493 7.276431 -## 4 2 After 31.06990 13.893535 -## 5 3 Before 19.52182 12.021995 -## 6 3 After 29.49598 12.394153 -## 7 4 Before 18.74493 7.276431 -## 8 4 After 31.06990 13.893535 +## 1 1 Before 20.01397 8.923118 +## 2 1 After 31.23226 13.343244 +## 3 2 Before 19.88279 8.668409 +## 4 2 After 30.05225 15.141990 +## 5 3 Before 20.01397 8.923118 +## 6 3 After 31.23226 13.343244 +## 7 4 Before 19.88279 8.668409 +## 8 4 After 30.05225 15.141990 \end{verbatim} \begin{alltt} \hlcom{# make it wider} @@ -8444,10 +8444,10 @@ \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \end{alltt} \begin{verbatim} ## id Weight.Before Height.Before Weight.After Height.After -## 1 1 19.52182 12.021995 29.49598 12.39415 -## 3 2 18.74493 7.276431 31.06990 13.89354 -## 5 3 19.52182 12.021995 29.49598 12.39415 -## 7 4 18.74493 7.276431 31.06990 13.89354 +## 1 1 20.01397 8.923118 31.23226 13.34324 +## 3 2 19.88279 8.668409 30.05225 15.14199 +## 5 3 20.01397 8.923118 31.23226 13.34324 +## 7 4 19.88279 8.668409 30.05225 15.14199 \end{verbatim} \begin{alltt} \hlcom{# possible further calculation} @@ -8459,15 +8459,15 @@ \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \end{alltt} \begin{verbatim} ## id Weight.Before Height.Before Weight.After Height.After Weight.growth -## 1 1 19.52182 12.021995 29.49598 12.39415 9.974154 -## 3 2 18.74493 7.276431 31.06990 13.89354 12.324971 -## 5 3 19.52182 12.021995 29.49598 12.39415 9.974154 -## 7 4 18.74493 7.276431 31.06990 13.89354 12.324971 +## 1 1 20.01397 8.923118 31.23226 13.34324 11.21829 +## 3 2 19.88279 8.668409 30.05225 15.14199 10.16946 +## 5 3 20.01397 8.923118 31.23226 13.34324 11.21829 +## 7 4 19.88279 8.668409 30.05225 15.14199 10.16946 ## Height.growth -## 1 0.3721579 -## 3 6.6171038 -## 5 0.3721579 -## 7 6.6171038 +## 1 4.420125 +## 3 6.473581 +## 5 4.420125 +## 7 6.473581 \end{verbatim} \end{kframe} \end{knitrout} @@ -8489,22 +8489,22 @@ \section{Reshaping and Editing Data Frames}\label{sec:calc:reshape} \end{alltt} \begin{verbatim} ## id Time ID Quantity Value -## 1.Weight 1 Before 1 Weight 19.521824 -## 2.Weight 1 After 2 Weight 29.495978 -## 3.Weight 2 Before 3 Weight 18.744933 -## 4.Weight 2 After 4 Weight 31.069904 -## 5.Weight 3 Before 5 Weight 19.521824 -## 6.Weight 3 After 6 Weight 29.495978 -## 7.Weight 4 Before 7 Weight 18.744933 -## 8.Weight 4 After 8 Weight 31.069904 -## 1.Height 1 Before 1 Height 12.021995 -## 2.Height 1 After 2 Height 12.394153 -## 3.Height 2 Before 3 Height 7.276431 -## 4.Height 2 After 4 Height 13.893535 -## 5.Height 3 Before 5 Height 12.021995 -## 6.Height 3 After 6 Height 12.394153 -## 7.Height 4 Before 7 Height 7.276431 -## 8.Height 4 After 8 Height 13.893535 +## 1.Weight 1 Before 1 Weight 20.013970 +## 2.Weight 1 After 2 Weight 31.232263 +## 3.Weight 2 Before 3 Weight 19.882790 +## 4.Weight 2 After 4 Weight 30.052248 +## 5.Weight 3 Before 5 Weight 20.013970 +## 6.Weight 3 After 6 Weight 31.232263 +## 7.Weight 4 Before 7 Weight 19.882790 +## 8.Weight 4 After 8 Weight 30.052248 +## 1.Height 1 Before 1 Height 8.923118 +## 2.Height 1 After 2 Height 13.343244 +## 3.Height 2 Before 3 Height 8.668409 +## 4.Height 2 After 4 Height 15.141990 +## 5.Height 3 Before 5 Height 8.923118 +## 6.Height 3 After 6 Height 13.343244 +## 7.Height 4 Before 7 Height 8.668409 +## 8.Height 4 After 8 Height 15.141990 \end{verbatim} \end{kframe} \end{knitrout} @@ -8599,7 +8599,7 @@ \section{Attributes of \Rlang Objects}\label{sec:calc:attributes} Functions like \Rfunction{names()}, \Rfunction{dim()} or \Rfunction{levels()} return values retrieved from attributes stored in \Rlang objects, whereas \Rfunction{names()<-}, \Rfunction{dim()<-} or \Rfunction{levels()<-} set (or unset with \code{NULL}) the value of the respective attributes. Dedicated query and set functions do not exist for all attributes. Functions \Rfunction{attr()}, \Rfunction{attr()<-} and \Rfunction{attributes()} can be used with any attribute. With \Rfunction{attr()} we query, and with \Rfunction{attr()<-} we set individual attributes by name. With \Rfunction{attributes()} we retrieve all attributes of an object as a named \code{list}. In addition, method \Rfunction{str()} displays the structure of an \Rlang object with all its components, including their attributes. -Continuing with the previous example, we can retrieve and set the value stored in the \code{"comment"} attribute using these functions. In the second statement we delete the value stored in the attribute by assigning \code{NULL} to it. +Continuing with the previous example, we can retrieve and set the value stored in the \code{"comment"} attribute using these functions. In the second statement, we delete the value stored in the attribute by assigning \code{NULL} to it. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8625,7 +8625,7 @@ \section{Attributes of \Rlang Objects}\label{sec:calc:attributes} \end{kframe} \end{knitrout} -The \code{"names"} attribute of \code{df1} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case and save them back to the same attribute. \qRfunction{colnames()}\qRfunction{colnames()<-} +The \code{"names"} attribute of \code{df1} was set by the \code{data.frame()} constructor when it was created above. In the next example, in the first statement we retrieve the names and implicitly print them. In the second statement, read from right to left, we retrieve the names, convert them to upper case, and save them back to the same attribute. \qRfunction{colnames()}\qRfunction{colnames()<-} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8658,7 +8658,7 @@ \section{Attributes of \Rlang Objects}\label{sec:calc:attributes} \end{knitrout} \begin{advplayground} - In general, \Rlang objects do not have by default names assigned to members. As seen on page \pageref{par:calc:vector:map} we can give names to vector members during construction with a call to \Rfunction{c()} or we can assign names (set attribute \code{names}) with function \Rfunction{names()<-} to existing vectors. Lists behave almost the same as vectors, although members of nested objects can also be named. Data frames have attributes \code{names} and \code{row.names}, that can be accessed with functions \Rfunction{names()} or \Rfunction{colnames()}, and function \Rfunction{rownames()}, respectively. The attributes can be set with functions \Rfunction{names()<-} or \Rfunction{colnames()<-}, and \Rfunction{rownames()<-}. The \Rfunction{data.frame()} constructor sets (column) names and row names by default. The \Rfunction{matrix()} constructor by default does not set \code{dimnames} or \code{names} attributes. When names are assigned to a \code{matrix} with \Rfunction{names()<-}, the matrix behaves like a vector, and the names are assigned to individual members. Functions \Rfunction{dimnames()<-}, \Rfunction{colnames()<-} and \Rfunction{rownames()<-} are used to assign names to columns and rows. The matching functions \Rfunction{dimnames()}, \Rfunction{colnames()} and \Rfunction{rownames()} are used to access these values. + In general, \Rlang objects do not have by default names assigned to members. As seen on page \pageref{par:calc:vector:map}, we can give names to vector members during construction with a call to \Rfunction{c()} or we can assign names (set attribute \code{names}) with function \Rfunction{names()<-} to existing vectors. Lists behave almost the same as vectors, although members of nested objects can also be named. Data frames have attributes \code{names} and \code{row.names}, that can be accessed with functions \Rfunction{names()} or \Rfunction{colnames()}, and function \Rfunction{rownames()}, respectively. The attributes can be set with functions \Rfunction{names()<-} or \Rfunction{colnames()<-}, and \Rfunction{rownames()<-}. The \Rfunction{data.frame()} constructor sets (column) names and row names by default. The \Rfunction{matrix()} constructor by default does not set \code{dimnames} or \code{names} attributes. When names are assigned to a \code{matrix} with \Rfunction{names()<-}, the matrix behaves like a vector, and the names are assigned to individual members. Functions \Rfunction{dimnames()<-}, \Rfunction{colnames()<-}, and \Rfunction{rownames()<-} are used to assign names to columns and rows. The matching functions \Rfunction{dimnames()}, \Rfunction{colnames()} and \Rfunction{rownames()} are used to access these values. When no names have been set, \Rfunction{names()}, \Rfunction{colnames()}, \Rfunction{rownames()}, and \Rfunction{dimnames()} return \code{NULL}. In contrast, \Rfunction{labels()}, intended to be used for printing, returns made-up names based on positions. @@ -8717,7 +8717,7 @@ \section{Attributes of \Rlang Objects}\label{sec:calc:attributes} \end{knitrout} \begin{explainbox} -The attributes used internally by \Rlang can be directly modified by user code. In most cases, this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below we read the attributes from a matrix. +The attributes used internally by \Rlang can be directly modified by user code. In most cases, this is unnecessary as \Rlang provides pairs of functions to query and set the relevant attributes. This is true for the attributes \code{dim}, \code{names} and \code{levels}. In the example below, we read the attributes from a matrix. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -8825,7 +8825,7 @@ \section{Attributes of \Rlang Objects}\label{sec:calc:attributes} \end{explainbox} \begin{warningbox} -There is no restriction to the creation, setting, resetting and reading of attributes, but not all functions and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. The values returned by model fitting functions like \Rfunction{lm()} are good examples of the extensive use of class-specific attributes (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). +There is no restriction to the creation, setting, resetting, and reading of attributes, but not all functions and operators that can be used to modify objects will preserve non-standard attributes. This can be a problem when using some \Rlang packages, such as the \pkgname{tidyverse}. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. The values returned by model fitting functions like \Rfunction{lm()} are good examples of the extensive use of class-specific attributes (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). \end{warningbox} @@ -8836,7 +8836,7 @@ \section{Saving and Loading Data} \subsection{Data sets in \Rlang and packages} \index{data!loading data sets|(}\index{data!saving data sets|(} -To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages (whether a call to \Rfunction{data()} is needed or not depends on how the package where the data objects are defined was configured). It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import ``foreign'' data is discussed in the \Rlang documentation, in the manual \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} on page \pageref{sec:files:remote}). +To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages (whether a call to \Rfunction{data()} is needed or not depends on how the package where the data objects are defined was configured). It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import `foreign' data is discussed in the \Rlang documentation, in the manual \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} on page \pageref{sec:files:remote}). In the next example, we load data available in \Rlang package \pkgname{datasets} as \Rlang objects by calling function \Rfunction{data()}. The loaded \Rlang object \code{cars} is a data frame. (Package \pkgname{datasets} is part of the \Rpgrm distribution and is always available). @@ -8853,7 +8853,7 @@ \subsection{Data sets in \Rlang and packages} \subsection{.rda files}\label{sec:data:rda} -By\index{file formats!RDA ``R data, multiple objects''} default, at the end of a session, the current workspace containing the results of one's work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of \Rpgrm, although the newer, default format may be not readable with earlier \Rpgrm versions. Whether compression is used, and whether the ``binary'' data is encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. +By\index{file formats!RDA ``R data, multiple objects''} default, at the end of a session, the current workspace containing the results of one's work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of \Rpgrm, although the newer, default format may be not readable with earlier \Rpgrm versions. Whether compression is used, and whether the ``binary'' data are encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. We create a data frame object and then save it to a file. The file name used can be any valid one in the operating system, however to ensure compatibility with multiple operating systems, it is good to use only ASCII characters. Although not enforced, using the name tag \code{.rda} or \code{.Rda} is recommended. @@ -9044,7 +9044,7 @@ \subsection{\code{dput()}} \section{Plotting} \index{plots!base R graphics} -In most cases the most effective way of obtaining an overview of a data set is by plotting it using multiple approaches. The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specialisations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section, I very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. I describe in detail the use of the \emph{layered grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} on page \pageref{chap:R:plotting}. +In most cases, the most effective way of obtaining an overview of a data set is by plotting it using multiple approaches. The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specialisations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section, I very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. I describe in detail the use of the \emph{layered grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} on page \pageref{chap:R:plotting}. \subsection{Plotting data} It is possible to pass two vectors (here columns from a data frame) directly as arguments to the \code{x} and \code{y} parameters of function \Rfunction{plot()}. (The plot is shown farther down, as the three approaches create identical plots.) @@ -9069,7 +9069,7 @@ \subsection{Plotting data} \end{kframe} \end{knitrout} -However, it is better to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing as an argument to parameter \code{data} a data frame containing these variables as columns. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. The names used in the formula, are those of columns in the \code{data.frame}. As described in section \ref{sec:stat:mf} on page \pageref{sec:stat:mf} the same syntax is used to describe models to be fitted to observations. +However, it is better to use a \emph{formula} to specify the variables to be plotted on the $x$ and $y$ axes, passing as an argument to parameter \code{data} a data frame containing these variables as columns. The formula \code{dist \textasciitilde\ speed}, is read as \code{dist} explained by \code{speed}---i.e., \code{dist} is mapped to the $y$-axis as the dependent variable and \code{speed} to the $x$-axis as the independent variable. The names used in the formula, are those of columns in the \code{data.frame}. As described in section \ref{sec:stat:mf} on page \pageref{sec:stat:mf}, the same syntax is used to describe models to be fitted to observations. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9085,7 +9085,7 @@ \subsection{Plotting data} \end{knitrout} -Within \Rlang there exist different specialisations, or ``flavours'', of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . +Within \Rlang there exist different specialisations, or ``flavours'', of method \Rfunction{plot()} that become active depending on the class of the variables passed as arguments: passing two numerical variables results in a scatter plot as seen above. In contrast, passing one factor and one numeric variable to \code{plot()} results in a box-and-whiskers plot being produced. Use \code{help("chickwts")} to learn more about this data set, also included in \Rpgrm . \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9105,11 +9105,11 @@ \subsection{Graphical output} Graphical\index{file formats!PDF}\index{file formats!PNG} output, such as produced by \Rfunction{plot()}, is rendered by \emph{graphical output devices}. When \Rlang is used interactively, a software device is opened automatically to output the graphical output to a physical device, usually the computer screen. The name of the \Rlang software device used may depend on the operating system (e.g., \osname{MS-Windows} or \osname{Linux}), or on the IDE (e.g., \RStudio). -In \Rlang, software graphical devices not necessarily generate output on a physical device like a printer, as several of these devices translate the plotting commands into a file format and save it to disk. Graphical devices in \Rlang differ in the kind of output they produce: raster or bitmap files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF), or output to a physical device like the screen of a computer. Additional devices are available through contributed \Rlang packages. +In \Rlang, software graphical devices not necessarily generate output on a physical device like a printer, as several of these devices translate the plotting commands into a file format and save it to disk. Graphical devices in \Rlang differ in the kind of output they produce: raster or bitmap files (e.g., TIFF, PNG, and JPEG formats), vector graphics files (e.g., SVG, EPS, and PDF), or output to a physical device like the screen of a computer. Additional devices are available through contributed \Rlang packages. \RStudio makes it possible to export plots into graphic files through a menu-based interface in the \emph{Plots} viewer tab. This interface uses some of the some graphic devices that are available at the console and through scripts. For reproducibility, it is preferable to include the \Rlang commands used to export plots in the scripts used for data analysis. -Devices follow the paradigm of ON and OFF switches, opening and closing a destination for \code{print()}, \code{plot()} and related functions. Some devices producing a file as output, save their output one plot at a time to single-page graphic files while others write the file only when the device is closed, possibly as a multi-page file. +Devices follow the paradigm of ON and OFF switches, opening and closing a destination for \code{print()}, \code{plot()} and related functions. Some devices producing a file as output, save their output one plot at a time to single-page graphic files, while others write the file only when the device is closed, possibly as a multi-page file. When opening a device the user supplies additional information. For the PDF and SVG devices that produce output in a vector-graphics format, width and height of the output are specified in \emph{inches}. A default file name is used unless we pass a \code{character} string as an argument to parameter \code{file}. @@ -9168,7 +9168,7 @@ \subsection{Graphical output} \index{data sets!their storage|)} \section{Further Reading} -For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, I suggest the book \citetitle{Matloff2011} \autocite{Matloff2011}, with emphasis on the \Rlang language and programming. The new, open-source, book \citetitle{Gagolewski2023} \autocite{Gagolewski2023}, provides a free alternative. This book also covers base \Rlang plotting giving more advanced examples than \textit{Learn R: As a Language}. An in-depth description of plotting and graphic devices in \Rlang is available in the book \citetitle{Murrell2019} \autocite{Murrell2019}. +For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, I suggest the book \citetitle{Matloff2011} \autocite{Matloff2011}, with emphasis on the \Rlang language and programming. The new, open-source, book \citetitle{Gagolewski2023} \autocite{Gagolewski2023} provides a free alternative. This book also covers base \Rlang plotting giving more advanced examples than \textit{Learn R: As a Language}. An in-depth description of plotting and graphic devices in \Rlang is available in the book \citetitle{Murrell2019} \autocite{Murrell2019}. @@ -9239,13 +9239,13 @@ \subsection{What is a script?}\label{sec:script:what:is} \caption[Code statements in a script.]{Diagram of script showing sequentially evaluated code statements; \textcolor{blue}{$\cdots$} represent additional statements in the script.}\label{fig:script} \end{figure} -The statements in the text file, are read, interpreted and evaluated sequentially, from the start to the end of the file, as represented in the diagram (Figure \ref{fig:script}). +The statements in the text file, are read, interpreted, and evaluated sequentially, from the start to the end of the file, as represented in the diagram (Figure \ref{fig:script}). As we will see later in the chapter, code statements can be combined into larger statements and evaluated conditionally and/or repeatedly, which allows us to control the realised sequence of evaluated statements. In addition to being valid, it is important that scripts are also understandable to humans. Consequently, a clear writing style and consistent adherence to it are important. -It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include code to load the packages used, load or import data from files, perform the data analysis and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data by reading data from a different file and/or to reproduce the same analysis at a later time using the same data. Such scripts document all steps used for the analysis. +It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include code to load the packages used, load or import data from files, perform the data analysis, and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data by reading data from a different file and/or to reproduce the same analysis at a later time using the same data. Such scripts document all steps used for the analysis. @@ -9274,9 +9274,9 @@ \subsection{How do we use a script?}\label{sec:script:using} \end{kframe} \end{knitrout} -Execution of the statements in the file makes \Rlang display \code{[1] 7} at the console as, below the command we typed in. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results of computations are not printed unless one includes explicit \Rfunction{print()} commands in the script. +Execution of the statements in the file makes \Rlang display \code{[1] 7} at the console, below the command we typed in. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results of computations are not printed unless one includes explicit \Rfunction{print()} commands in the script. -Scripts can be run both by sourcing them into an open \Rlang session, or at the operating system command prompt (see section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}). In \RStudio, the script in the currently active editor tab can be sourced using the ``source'' button. The drop-down menu of this button has three entries: ``Source'' , quietly to the \Rlang console, ``Source with echo'' showing the code as it is run, and ``Source as local job'', using a new instance of \Rlang in the background. In the last case, the \Rlang console remains free for other uses while the script is running. +Scripts can be run both by sourcing them into an open \Rlang session, or at the operating system command prompt (see section \ref{sec:intro:using:R} on page \pageref{sec:intro:using:R}). In \RStudio, the script in the currently active editor tab can be sourced using the ``source'' button. The drop-down menu of this button has three entries: ``Source'' , quietly to the \Rlang console; ``Source with echo'' showing the code as it is run; and ``Source as local job'', using a new instance of \Rlang in the background. In the last case, the \Rlang console remains free for other uses while the script is running. When a script is \emph{sourced}, the output can be saved to a text file instead of being shown in the console. It is also easy to call \Rpgrm with the \Rlang script file as an argument directly at the operating system shell or command-interpreter prompt---and obviously also from shell scripts. The next two chunks show commands entered at the OS shell command prompt rather than at the \Rlang command prompt. @@ -9330,9 +9330,9 @@ \subsection{How to write a script}\label{sec:script:writing} \subsection{The need to be understandable to people}\label{sec:script:readability} \index{scripts!readability} -It is not enough for program code to be understood by a computer and that it returns the correct answer. Both large programs and small scripts have to be readable to humans, and the intention of the code understandable. In most cases, \Rlang code will be maintained, reused and modified over time. In many cases, this code also serves to document a given computation and to make it possible to reproduce it. +It is not enough for program code to be understood by a computer and that it returns the correct answer. Both large programs and small scripts have to be readable to humans, and the intention of the code understandable. In most cases, \Rlang code will be maintained, reused, and modified over time. In many cases, this code also serves to document a given computation and to make it possible to reproduce it. -When one writes a script, it is either because one wants to document what has been done or because one plans to use it again in the future. In the first case other persons will read it and in the second case one rarely remembers all the details. Thus, spending time and effort on the writing style, paying special attention to the following recommendations, is important. +When one writes a script, it is either because one wants to document what has been done or because one plans to use it again in the future. In the first case, other persons will read it, and in the second case, one rarely remembers all the details. Thus, spending time and effort on the writing style, paying special attention to the following recommendations, is important. \begin{itemize} \setlength{\itemsep}{1pt} \setlength{\parskip}{0pt} @@ -9366,7 +9366,7 @@ \subsection{The need to be understandable to people}\label{sec:script:readabilit The points discussed above already help a lot. However, one can go further in achieving the goal of human readability by interspersing explanations and code ``chunks'' and using all the facilities of typesetting, even of formatted maths formulas and equations, within the listing of the script. Furthermore, by including the results of the calculations and the code itself in a typeset report built automatically one ensures that they match each other. This greatly contributes to data analysis reproducibility, which is becoming a widespread requirement both in academia and in industry. -This approach is called literate programming\index{literate programming} and was first proposed by \citeauthor{Knuth1984a} (\citeyear{Knuth1984a}) through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was in \pkgname{Sweave}, which has been superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \Markdown or \Latex\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and applies syntax highlighting to code. \langname{Rmarkdown} is an extension to \Markdown that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}) and slides for presentations \autocite{Xie2016,Xie2018}. \Quarto, which provides an enhanced version of \Rmarkdown, is implemented in \Rlang package \pkgname{quarto} together with the \Quarto program as a separate executable. The use of \pkgname{knitr} and \pkgname{quarto} is very well integrated into the \RStudio IDE. +This approach is called literate programming\index{literate programming} and was first proposed by \citeauthor{Knuth1984a} (\citeyear{Knuth1984a}) through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was in \pkgname{Sweave}, which has been superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \Markdown or \Latex\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and applies syntax highlighting to code. \Rmarkdown is an extension to \Markdown that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}), and slides for presentations \autocite{Xie2016,Xie2018}. \Quarto, which provides an enhanced version of \Rmarkdown, is implemented in \Rlang package \pkgname{quarto} together with the \Quarto program as a separate executable. The use of \pkgname{knitr} and \pkgname{quarto} is very well integrated into the \RStudio IDE. The generation of typeset reports is outside the scope of the book, but it is an important skill to learn. It is well described in the books and web sites cited. \subsection{Debugging scripts}\label{sec:script:debug} @@ -9376,18 +9376,18 @@ \subsection{Debugging scripts}\label{sec:script:debug} A suitable quotation from a letter written by Thomas Alva Edison in 1878 \autocite[as given by][]{Hughes2004}: \begin{quotation} - It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''--as such little faults and difficulties are called--show themselves and months of intense watching, study and labour are requisite before commercial success or failure is certainly reached. + It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''---as such little faults and difficulties are called---show themselves and months of intense watching, study and labour are requisite before commercial success or failure is certainly reached. \end{quotation} The quoted paragraph above makes clear that only very exceptionally does any new design fully succeed. The same applies to \Rlang scripts as well as any other non-trivial piece of computer code. From this it logically follows that testing and de-bugging are fundamental steps in the development of \Rlang scripts and packages. Debugging, as an activity, is outside the scope of this book. However, clear programming style and good documentation are indispensable for efficient testing and reuse. -Even for scripts used for analysing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert reports and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organisation, we will still want to avoid costly mistakes. +Even for scripts used for analysing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert reports, and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organisation, we will still want to avoid costly mistakes. The first step in producing reliable computer code is to accept that any code that we write needs to be tested and, if possible, validated. Another important step is to make sure that input is validated within the script and a suitable error produced for bad input (including valid input values falling outside the range that can be reliably handled by the script). -If during testing, or during normal use, a wrong value is returned by a calculation, or no value (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm, as well as in the algorithm itself. However, many apparent \emph{bugs} are caused by bad or missing handling of special cases like invalid input values, rounding errors, division by zero, etc., in which a program crashes instead of elegantly issuing a helpful error message. +If during testing, or during normal use, a wrong value or no value is returned by a calculation (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm or in the algorithm itself. However, many apparent \emph{bugs} are caused by bad, or missing, code for handling of special cases, such as invalid input values, rounding errors, and division by zero, making a function or script crash instead of elegantly issuing a helpful message. -Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: e.g., for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. +Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom, we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases, it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. \begin{warningbox} \textbf{Error messages} When debugging, keep in mind that in some cases a single bug can lead to a whole cascade of error messages. Do also keep in mind that typing mistakes, originating when code is entered through the keyboard, can wreak havock in a script: usually there is little correspondence between the number of error messages and the seriousness of the bug triggering them. When several errors are triggered, start by reading the error message printed first, as later errors can be an indirect consequence of earlier ones. @@ -9397,12 +9397,12 @@ \subsection{Debugging scripts}\label{sec:script:debug} When writing your first scripts, you will manage perfectly well, and learn more by running the script one line at a time, and when needed temporarily inserting \code{print()} statements to ``look'' at how the value of variables changes at each step. A debugger allows a lot more control, as one can ``step in'' and ``step out'' of function definitions, and set and unset break points where execution will stop. However, using a debugger is not as simple as using \code{print()}. -If you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and later on to the least likely ones (such as a bug in a package installed from \CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just a misunderstanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, searching with Google for the text of an error message is usually well rewarded. Most important to remember is that bugs do pop up frequently in newly written code, and occasionally in old code. Nobody is immune to them: not the code you write, packages you use or \Rlang itself. +If you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and later on to the least likely ones (such as a bug in a package installed from \CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just a misunderstanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, searching with Google for the text of an error message is usually well rewarded. Most important to remember is that bugs do pop up frequently in newly written code, and occasionally in old code. No coding is immune to them, thus, the code you write, packages you use or \Rlang itself can contain bugs. \section{Compound Statements}\label{sec:script:compound:statement} \index{compound code statements}\index{simple code statements} -Individual statements can be grouped into \emph{compound statements} by enclosing them in curly braces (Figure \ref{fig:compound:statement}). Conceptually is like putting these statements into a box that allows us to operate with them as an anonymous whole. +Individual statements can be grouped into \emph{compound statements} by enclosing them in curly braces (Figure \ref{fig:compound:statement}). Conceptually, is like putting these statements into a box that allows us to operate with them as an anonymous whole. \begin{figure} \centering @@ -9451,7 +9451,7 @@ \section{Compound Statements}\label{sec:script:compound:statement} \end{kframe} \end{knitrout} -The grouping of the two middle statements above is of no consequence, as it does not alter sequential evaluation. In the example above only side effects are of interest. In the example below, the value returned by a compound statement is that returned by the last statement evaluated within it. Individual statements can be separated by an end-of-line as above, or by a semicolon (;) as shown below, for two statements, each of them implementing an arithmetic operation. +The grouping of the two middle statements above is of no consequence, as it does not alter sequential evaluation. In the example above, only side effects are of interest. In the example below, the value returned by a compound statement is that returned by the last statement evaluated within it. Individual statements can be separated by an end-of-line as above, or by a semicolon (;) as below: two statements, each of them implementing an arithmetic operation. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9478,13 +9478,13 @@ \section{Compound Statements}\label{sec:script:compound:statement} \end{knitrout} \end{playground} -Grouping is of little use by itself. It becomes useful together with control-of-execution constructs, when defining functions, and similar cases where we need to treat a group of code statements as if they were a single statement. We will see several examples of the use of compound statements in the current chapter and in chapter \ref{chap:R:functions} on page \pageref{chap:R:functions}. +Grouping is of little use by itself. It becomes useful together with control-of-execution constructs, when defining functions, and in similar cases where we need to treat a group of code statements as if they were a single statement. We will see several examples of the use of compound statements in the current chapter and in chapter \ref{chap:R:functions} on page \pageref{chap:R:functions}. \section{Function Calls} \index{functions!call} -We will describe functions in detail and how to create new ones in chapter \ref{chap:R:functions}. We have already been using functions since chapter \ref{chap:R:as:calc}. Functions are structurally \Rlang statements, in most cases, compound statements, using formal parameters as placeholders. When one calls a function one passes arguments for the different parameters (or placeholder names) and the (compound) statement conforming the \emph{body} of the function is evaluated after ``replacing'' the placeholders by the values passed as arguments. +We will describe functions in detail and how to create new ones in chapter \ref{chap:R:functions}. We have already been using functions since chapter \ref{chap:R:as:calc}. Functions are structurally \Rlang statements, in most cases, compound statements, using formal parameters as placeholders. When one calls a function, one passes arguments for the different parameters (or placeholder names) and the (compound) statement conforming the \emph{body} of the function is evaluated after ``replacing'' the placeholders by the values passed as arguments. -In the first example we use two statements. In the first statement, $log(100)$ is computed by calling function \code{log10()} with \code{100} as argument and the returned value is assigned to variable \code{a}. In the second statement, the value 2 is displayed as a side effect of calling \code{print()} with variable \code{a} as argument. +In the first example, we use two statements. In the first statement, $log(100)$ is computed by calling function \code{log10()} with \code{100} as argument and the returned value is assigned to variable \code{a}. In the second statement, the value 2 is displayed as a side effect of calling \code{print()} with variable \code{a} as argument. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9519,7 +9519,7 @@ \section{Data Pipes}\label{sec:script:pipes} \index{pipes!base R|(} \index{pipe operator} \index{chaining statements with \emph{pipes}} -Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981} as well as in \osname{Linux} distributions. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{gsub}, \code{grep}, \code{more}, etc.). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformations take place. In \osname{Unix} and \osname{Linux} shells like \pgrmname{sh} or \pgrmname{bash}, sinks and sources are files, but in \osname{Unix} and \osname{Linux} files are an abstraction that includes all devices and connections for input or output, including physical ones such as terminals and printers. +Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981} as well as in \osname{Linux} distributions. Within an OS, pipes are chains of small programs or ``tools'' that carry out a single well-defined task (e.g., \code{ed}, \code{sub}, \code{gsub}, \code{grep}, and \code{more}). Data such as text is described as flowing from a source into a sink through a series of steps at which a specific transformations take place. In \osname{Unix} and \osname{Linux} shells like \pgrmname{sh} or \pgrmname{bash}, sinks and sources are files, but in \osname{Unix} and \osname{Linux} files are an abstraction that includes all devices and connections for input or output, including physical ones such as terminals and printers. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9529,7 +9529,7 @@ \section{Data Pipes}\label{sec:script:pipes} \end{kframe} \end{knitrout} -How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually there is little difference between \osname{Unix} shell pipes and pipes in \Rlang scripts, but the implementations are different. +How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually, there is little difference between \osname{Unix} shell pipes and pipes in \Rlang scripts, but the implementations are different. What do pipes achieve in \Rlang scripts? They relieve us from the responsibility of creating and deleting the temporary objects. By chaining the statements they enforce their sequential execution. Pipes usually improve the readability of scripts by allowing more concise code. @@ -9636,7 +9636,7 @@ \section{Data Pipes}\label{sec:script:pipes} \end{knitrout} \begin{explainbox} -Base \Rlang functions like \Rfunction{subset()} have formal parameters in an order that is suitable for implicitly passing the piped value as an argument to their first parameter, while others like \Rfunction{assign()} do not. For example, when calling function \code{assign()} to save a value using a name available as a character string we would like to pass the piped value as an argument to parameter \code{value} which is not the first. In such cases we can use \code{\_} as a placeholder and pass it by name. +Base \Rlang functions like \Rfunction{subset()} have formal parameters in an order that is suitable for implicitly passing the piped value as an argument to their first parameter, while others like \Rfunction{assign()} do not. For example, when calling function \code{assign()} to save a value using a name available as a character string, we would like to pass the piped value as an argument to parameter \code{value} which is not the first. In such cases, we can use \code{\_} as a placeholder and pass it by name. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9679,18 +9679,18 @@ \section{Data Pipes}\label{sec:script:pipes} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _, is.large)} \end{alltt} \begin{verbatim} -## x y is.large x4 -## 6 6 -0.6519867 TRUE 1296 -## 7 7 0.8113990 TRUE 2401 -## 8 8 -0.2164919 TRUE 4096 -## 9 9 -0.2475588 TRUE 6561 -## 10 10 0.5387632 TRUE 10000 +## x y is.large x4 +## 6 6 -2.349777e-01 TRUE 1296 +## 7 7 -3.407140e-06 TRUE 2401 +## 8 8 -1.051215e+00 TRUE 4096 +## 9 9 1.115928e+00 TRUE 6561 +## 10 10 6.950474e-02 TRUE 10000 \end{verbatim} \end{kframe} \end{knitrout} \begin{playground} -Without using the \code{\_} placeholder and a more compact layout, the code above becomes. Compare the code below to that above to work out how I simplified the code. +Without using the \code{\_} placeholder, but using a more compact layout, the code above becomes that shown below. Compare it to that above to work out how I simplified the code. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -9717,12 +9717,12 @@ \section{Data Pipes}\label{sec:script:pipes} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _, is.large,} \hlkwc{select} \hlstd{=} \hlopt{-}\hlstd{x)} \end{alltt} \begin{verbatim} -## y is.large x4 -## 6 0.5129773 TRUE 1296 -## 7 -0.3863611 TRUE 2401 -## 8 -1.4625219 TRUE 4096 -## 9 -1.1608175 TRUE 6561 -## 10 0.1936007 TRUE 10000 +## y is.large x4 +## 6 -1.63934562 TRUE 1296 +## 7 0.76977805 TRUE 2401 +## 8 -1.55131071 TRUE 4096 +## 9 -1.90333114 TRUE 6561 +## 10 0.09427457 TRUE 10000 \end{verbatim} \end{kframe} \end{knitrout} @@ -9739,17 +9739,17 @@ \section{Data Pipes}\label{sec:script:pipes} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= _,} \hlkwc{select} \hlstd{=} \hlkwd{c}\hlstd{(y, x4))} \end{alltt} \begin{verbatim} -## y x4 -## 1 -1.2074619 1 -## 2 0.9303349 16 -## 3 0.3700031 81 -## 4 -0.8103863 256 -## 5 2.0625281 625 -## 6 0.9124819 1296 -## 7 0.1181497 2401 -## 8 -0.5090648 4096 -## 9 0.2531774 6561 -## 10 -0.2378044 10000 +## y x4 +## 1 -0.46696923 1 +## 2 0.04701075 16 +## 3 -0.64661201 81 +## 4 -0.43109554 256 +## 5 -0.49152406 625 +## 6 1.59705758 1296 +## 7 0.55330471 2401 +## 8 -0.54859862 4096 +## 9 0.07888365 6561 +## 10 0.68457602 10000 \end{verbatim} \end{kframe} \end{knitrout} @@ -9763,9 +9763,9 @@ \section{Data Pipes}\label{sec:script:pipes} \hlkwd{aggregate}\hlstd{(}\hlkwc{data} \hlstd{= _, y} \hlopt{~} \hlstd{group, mean)} \end{alltt} \begin{verbatim} -## group y -## 1 T1 -0.13876151 -## 2 T2 -0.08437252 +## group y +## 1 T1 0.5200044 +## 2 T2 0.8402130 \end{verbatim} \end{kframe} \end{knitrout} @@ -9782,7 +9782,7 @@ \section{Data Pipes}\label{sec:script:pipes} \hlstd{_[[}\hlstr{"y"}\hlstd{]]} \end{alltt} \begin{verbatim} -## [1] -0.1905594 -0.5832352 +## [1] 0.1004237 0.5661679 \end{verbatim} \end{kframe} \end{knitrout} @@ -9796,7 +9796,7 @@ \section{Data Pipes}\label{sec:script:pipes} \section{Conditional Evaluation}\label{sec:script:flow:control} \index{control of execution flow} -By default \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. +By default, \Rlang statements in a script are evaluated (or executed) in the sequence they appear in the script \textit{listing} or text. We give the name \emph{control of execution constructs} to those special statements that allow us to alter this default sequence, by either skipping or repeatedly evaluating individual statements. The statements whose evaluation is controlled can be either simple or compound. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. These \emph{control of execution constructs} can be also used at the \Rlang console, but it is usually awkward to do so as they can extend over several lines of text. In simple scripts, the \emph{flow of execution} can be fixed and linear from the first to the last statement in the script. However, \emph{control of execution constructs} are a crucial part of most useful scripts. As we will see next, a compound statement can include multiple simple or nested compound statements. \Rpgrm has two types of \emph{if}\index{conditional statements} statements, non-vectorised and vectorised. @@ -9849,7 +9849,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} In the example above we use variable \code{flag} as the \emph{condition}. -Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (FALSE)} in the syntactically-correct statement below is of no practical use. +Nothing in the \Rlang language prevents this condition from being a \code{logical} constant. Explain why \code{if (FALSE)} in the syntactically correct statement below is of no practical use. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10073,7 +10073,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} A \Rcontrol{switch()} statement returns a value, just like \code{if} does. The value passed as argument to \Rcontrol{switch()} functions as an index selecting one of the statements. The value returned by the \Rcontrol{switch()} statement is the value returned by the selected \textit{case} statement. -In the first example below we use a \code{character} variable as the condition, named cases, and a final unlabelled case as default in case of no match. In real use, a computed value or user input would be used in place of \code{my.object}. As with the \code{logical} argument to \code{if}, the \code{character} string value passed as argument must be a vector of length one. +In the first example below, we use a \code{character} variable as the condition, named cases, and a final unlabelled case as default in case of no match. In real use, a computed value or user input would be used in place of \code{my.object}. As with the \code{logical} argument to \code{if}, the \code{character} string value passed as argument must be a vector of length one. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10138,7 +10138,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} \end{knitrout} \begin{playground} - Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA} or \code{my.object <- numeric()}. Then remove the \code{, 0} as default value, and repeat. + Continue playing with the use of the switch statement. Explore what happens if you set \code{my.number <- 10}, \code{my.number <- 3}, \code{my.number <- NA}, or \code{my.object <- numeric()}. Afterwards, remove the \code{, 0} as default value, and repeat. \end{playground} \begin{explainbox} @@ -10169,7 +10169,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} \end{explainbox} \begin{explainbox} - The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases a \Rcontrol{switch()} statement is easier to read and understand. + The \Rcontrol{switch()} statement can substitute for chained \code{if \ldots\ else} statements when all the conditions can be described by constant values or distinct values returned by the same test. The advantage is more concise and readable code. The equivalent of the first \Rcontrol{switch()} example above when written using \code{if \ldots\ else} becomes longer. Given how terse code using \Rcontrol{switch()} is, those not yet familiar with its use may find the more verbose style used below easier to understand. On the other hand, with numerous cases, a \Rcontrol{switch()} statement is easier to read and understand. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10195,7 +10195,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} \end{explainbox} \begin{advplayground} - Consider another alternative approach, the use of a named vector to map values. In most of the examples above the code for the cases is a constant value or an operation among constant values. Implement one of this examples using a named vector instead of a \Rcontrol{switch()} statement. + Consider another alternative approach, the use of a named vector to map values. In most of the examples above, the code for the cases is a constant value or an operation among constant values. Implement one of these examples using a named vector instead of a \Rcontrol{switch()} statement. \end{advplayground} \subsection[Vectorised \texttt{ifelse()}]{Vectorised \code{ifelse()}} @@ -10203,7 +10203,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} Vectorised \emph{ifelse} is a peculiarity of the \Rlang language, but very useful for writing concise code that may execute faster than logically equivalent but not vectorised code. Vectorised conditional execution is coded by means of \emph{function} \Rcontrol{ifelse()} (written as a single word). This function takes three arguments: a \code{logical} vector usually the result of a test (parameter \code{test}), an expression to use for \code{TRUE} cases (parameter \code{yes}), and an expression to use for \code{FALSE} cases (parameter \code{no}). At each index position along the vectors, the value included in the returned vector is taken from \code{yes} if the corresponding member of the \code{test} logical vector is \code{TRUE} and from \code{no} if the corresponding member of \code{test} is \code{FALSE}. All three arguments can be any \Rlang statement returning the required vectors. -The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. +The flow chart for \Rcontrol{ifelse()} is similar to that for \code{if \ldots\ else} shown on page \pageref{flowchart:if} but applied in parallel to the individual members of vectors; e.g.,\ the condition expression is evaluated at index position \code{1} controls which value will be present in the returned vector at index position \code{1}, and so on. It is customary to pass arguments to \code{ifelse} by position. We give a first example with named arguments to clarify the use of the function. @@ -10273,7 +10273,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} \end{warningbox} \begin{playground} -Some additional examples to play with, with a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse()} statements work. +Some additional examples to play with, containing a few surprises. Study the examples below until you understand why returned values are what they are. In addition, create your own examples to test other possible cases. In other words, play with the code until you fully understand how \code{ifelse()} statements work. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10291,7 +10291,7 @@ \section{Conditional Evaluation}\label{sec:script:flow:control} \end{playground} \begin{advplayground} -Write, using \Rcontrol{ifelse()}, a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. +Using \Rcontrol{ifelse()}, write a single statement to combine numbers from the two vectors \code{a} and \code{b} into a result vector \code{d}, based on whether the corresponding value in vector \code{c} is the character \code{"a"} or \code{"b"}. Then print vector \code{d} to make the result visible. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10315,9 +10315,9 @@ \section{Iteration} \index{loops|seealso{iteration}} We give the name \emph{iteration} to the process of repetitive execution of a program statement---e.g., \emph{computed by iteration}. We use the same word, \emph{iteration}, to name each one of these repetitions of the execution of a statement---e.g., \emph{the second iteration}. -Iteration constructs make it possible to ``decide'' at run time the number of iterations, i.e., when execution breaks out of the loop and continues at the next statement in the script. Iteration can be used to apply the same computations to the different members of a vector or list (this section), but also to apply different functions to members of a vector, matrix, list or data frame (section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}). +Iteration constructs make it possible to ``decide'' at run time the number of iterations, i.e., when execution breaks out of the loop and continues at the next statement in the script. Iteration can be used to apply the same computations to the different members of a vector or list (this section), but also to apply different functions to members of a vector, matrix, list, or data frame (section \ref{sec:R:faces:of:loops} on page \pageref{sec:R:faces:of:loops}). -In \Rlang three types of iteration loops are available: \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in the origin of the values they iterate over, and in the type of test used to terminate iteration. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in easier to understand code. +In \Rlang, three types of iteration loops are available: \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in the origin of the values they iterate over, and in the type of test used to terminate iteration. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in easier to understand code. In \Rlang, explicit loops as described in this section can in some cases be replaced by calls to \emph{apply} functions (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}) or with vectorised functions and operators (see page \pageref{par:calc:vectorised:opers}). The choice among these approaches affects readability and performance (see section \ref{sec:loops:slow} on page \pageref{sec:loops:slow}). @@ -10344,9 +10344,9 @@ \section{Iteration} \caption{Flowchart for a \code{for} iteration loop.}\label{fig:for:loop:diagram} \end{figure} -The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang by ``walking through'' a list or vector of values to act upon (Figure \ref{fig:for:loop:diagram}). Within a \qRloop{for} loop these values are available, sequentially, one at a time through a variable that functions as a placeholder. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has the shape of a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same section of code to be evaluated multiple times, each time with a new value assigned to the placeholder variable. +The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang by ``walking through'' a list or vector of values to act upon (Figure \ref{fig:for:loop:diagram}). Within a \qRloop{for} loop, member values are available, sequentially, one at a time, through a variable that functions as a placeholder. The implicit test for the end of the vector or list takes place at the top of the construct before the loop statement is evaluated. The flow chart has the shape of a \emph{loop} as the execution can be directed to an earlier position in the sequence of statements, allowing the same section of code to be evaluated multiple times, each time with a new value assigned to the placeholder variable. -In the diagram above the argument to \code{for()} is shown as \code{} but it can also be a \code{vector} of any mode. Objects of most classes derived from \code{list} or from an atomic vector can also fulfil the same role. The extraction operation with a numeric index must be supported by objects of the class passed as argument. +In the diagram above, the argument to \code{for()} is shown as \code{} but it can also be a \code{vector} of any mode. Objects of most classes derived from \code{list} or from an atomic vector can also fulfil the same role. The extraction operation with a numeric index must be supported by objects of the class passed as argument. Similarly to \code{if} constructs, only one statement is controlled by \Rloop{for}, however this statement can be a compound statement enclosed in braces \verb|{ }| (see pages \pageref{sec:script:compound:statement} and \pageref{sec:script:if}). @@ -10593,7 +10593,7 @@ \section{Iteration} Hint: if you find the code in the example above difficult to understand, insert \code{print()} statements and run it again inspecting how the values of \code{a}, \code{b}, \code{idxs} and \code{i} behave within the loop. -In \Rloop{for} loops the use of \Rcontrol{break()} and \Rcontrol{next()} should be reserved for exceptional conditions. When the \Rloop{for} construct is not flexible enough for the computations being implemented, using a \Rloop{while} or a \Rloop{repeat} loop is preferable. +In \Rloop{for} loops, the use of \Rcontrol{break()} and \Rcontrol{next()} should be reserved for exceptional conditions. When the \Rloop{for} construct is not flexible enough for the computations being implemented, using a \Rloop{while} or a \Rloop{repeat} loop is preferable. \end{explainbox} @@ -10682,7 +10682,7 @@ \section{Iteration} Explain why a second \code{print(a)} has been added before \code{while()}. Hint: experiment if necessary. \end{advplayground} -As with \code{for} loops we can use an index variable in a \Rfunction{while} loop to walk through vectors and lists. The difference is that we have to update the index values explicitly in our own code. The code example based on a \code{for} loop given on page \pageref{chunk:for:example} can be rewritten as a \Rfunction{while} loop. +As with \code{for} loops, we can use an index variable in a \Rfunction{while} loop to walk through vectors and lists. The difference is that we have to update the index values explicitly in our own code. The code example based on a \code{for} loop given on page \pageref{chunk:for:example} can be rewritten as a \Rfunction{while} loop. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -10817,7 +10817,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} \end{knitrout} \begin{warningbox} -The nested loops above work correctly with any two-dimensional matrix with at least one column and one row, but \emph{crash} with an empty matrix (\code{matrix()} or \code{matrix(numeric())}). Thus it is good practice to enclose the \Rloop{for} loop in an \Rcontrol{if} statement as protection. For the example above a suitable \code{logical} condition is \code{!is.null(dim(A)) \&\& !any(dim(A) == 0}. +The nested loops above work correctly with any two-dimensional matrix with at least one column and one row, but \emph{crash} with an empty matrix (\code{matrix()} or \code{matrix(numeric())}). Thus it is good practice to enclose the \Rloop{for} loop in an \Rcontrol{if} statement as protection. For the example above, a suitable \code{logical} condition is \code{!is.null(dim(A)) \&\& !any(dim(A) == 0}. \end{warningbox} \begin{advplayground} @@ -10828,7 +10828,7 @@ \subsection{Nesting of loops}\label{sec:nested:loops} \section[Apply Functions]{\emph{Apply} Functions}\label{sec:data:apply} -\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions' role is similar to that of the iteration loops discussed above. One could say that apply functions ``walk along'' a vector, list or a dimension of a matrix or an array, calling a function with each member of the collection as argument. Notation is more concise than in \code{for} constructs. However, apply functions can be used only when the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration---}. +\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions' role is similar to that of the iteration loops discussed above. One could say that apply functions ``walk along'' a vector, list or a dimension of a matrix or an array, calling a function with each member of the collection as argument. Notation is more concise than in \code{for} constructs. However, apply functions can be used only when the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration}. \begin{warningbox} Conceptually, \code{for}, \code{while} and \code{repeat} loops are interpreted as controlling a sequential evaluation of program statements. In contrast, \Rlang's \emph{apply} functions are, conceptually, thought as evaluating a function in parallel for each of the different members of their input. So, while in loops the results of earlier iterations through a loop can be stored in variables and used in subsequent iterations, this is not possible in the case of \emph{apply} functions. @@ -10996,7 +10996,7 @@ \subsection{Applying functions to vectors, lists and data frames} Obtain the summary of dataset \code{airquality} with function \Rfunction{summary()}, but in addition, write code with an \emph{apply} function to count the number of non-missing values in each column. Hint: using \code{sum()} on a \code{logical} vector returns the count of \code{TRUE} values as \code{TRUE}, and \code{FALSE} are transparently converted into \code{numeric} 1 and 0, respectively, when \code{logical} values are used in arithmetic expressions. \end{advplayground} -In the examples above the \emph{apply} functions were used to ``reduce´´ the data by applying summary functions. In the next code chunk \code{lapply()} is used to construct the \code{list} of five vectors \code{ls1} using a vector of five numbers as argument passed to parameter \code{X}. As above, additional \emph{named} arguments are relayed to each call of \code{rnorm()}. +In the examples above, the \emph{apply} functions were used to ``reduce'' the data by applying summary functions. In the next code chunk, \code{lapply()} is used to construct the \code{list} of five vectors \code{ls1} using a vector of five numbers as argument passed to parameter \code{X}. As above, additional \emph{named} arguments are relayed to each call of \code{rnorm()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -11004,7 +11004,6 @@ \subsection{Applying functions to vectors, lists and data frames} \hlkwd{set.seed}\hlstd{(}\hlnum{123456}\hlstd{)} \hlstd{ls1} \hlkwb{<-} \hlkwd{lapply}\hlstd{(}\hlkwc{X} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{v1} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{v2} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{v3} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{v4} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{v5} \hlstd{=} \hlnum{4}\hlstd{),} \hlkwc{FUN} \hlstd{= rnorm,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} -\hlcom{#names(ls1) <- paste("vect", 1:length(ls1))} \hlkwd{str}\hlstd{(ls1)} \end{alltt} \begin{verbatim} @@ -11022,7 +11021,7 @@ \subsection{Applying functions to vectors, lists and data frames} \subsection{Applying functions to matrices and arrays} -Matrices and arrays have two or more dimensions, and contrary to data frames, they are not a special kind of one-dimensional lists. In \Rlang the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins} (see section \ref{sec:matrix:array}, and Figure \ref{fig:matrix:margins} on page \pageref{fig:matrix:margins}). The argument passed to parameter \code{MARGIN} determines \emph{over} which margin the function will be applied. Arrays can have many dimensions (see Figure \ref{fig:array:margins} on page \pageref{fig:array:margins}), and consequently more margins. In the case of arrays with more than two dimensions, it is possible and can be useful to apply functions over multiple margins at once. +Matrices and arrays have two or more dimensions, and contrary to data frames, they are not a special kind of one-dimensional lists. In \Rlang, the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins} (see section \ref{sec:matrix:array}, and Figure \ref{fig:matrix:margins} on page \pageref{fig:matrix:margins}). The argument passed to parameter \code{MARGIN} determines \emph{over} which margin the function will be applied. Arrays can have many dimensions (see Figure \ref{fig:array:margins} on page \pageref{fig:array:margins}), and consequently more margins. In the case of arrays with more than two dimensions, it is possible and can be useful to apply functions over multiple margins at once. \begin{warningbox} The individual \emph{slices} of the matrix or array passed as argument to parameter \code{X} of \textit{apply} functions are passed as a positional argument to the first formal parameter of the applied function, i.e., only some \Rlang functions can be passed as argument to \code{FUN}. @@ -11209,7 +11208,7 @@ \section{Functions that Replace Loops}\label{sec:vectorised:functions} \section{The Multiple Faces of Loops}\label{sec:R:faces:of:loops} -\ilAdvanced\ In this advanced section I describe some uses of \Rlang loops that help with writing concise scrips. As these make heavy use of functions, if you are reading the book sequentially, you should skip this section and return to it after reading chapters \ref{chap:R:functions} and \ref{chap:R:statistics}. +\ilAdvanced\ In this advanced section, I describe some uses of \Rlang loops that help with writing concise scrips. As these make heavy use of functions, if you are reading the book sequentially, you should skip this section and return to it after reading chapters \ref{chap:R:functions} and \ref{chap:R:statistics}. In the same way as we can assign names to \code{numeric}, \code{character} and other types of objects, we can assign names to functions and expressions. We can also create lists of functions and/or expressions. The \Rlang language has a very consistent grammar, with all lists and vectors behaving in the same way. The implication of this is that we can assign different functions or expressions to a given name and, consequently, it is possible to write loops over lists of functions or expressions. @@ -11270,7 +11269,7 @@ \section{The Multiple Faces of Loops}\label{sec:R:faces:of:loops} \end{kframe} \end{knitrout} -Next is an example using model formulas. In the this example, a loop is used to fit three models, obtaining a list of fitted models. It is not possible to pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. It is possible to get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments so the names present in \code{results} have to be removed with a call to \Rfunction{unname()}. +Next is an example using model formulas. In the this example, a loop is used to fit three models, obtaining a list of fitted models. It is not possible to pass to \Rfunction{anova()} this list of fitted models, as it expects each fitted model as a separate nameless argument to its \code{\ldots} parameter. It is possible to get around this problem using function \Rfunction{do.call()} to call \Rfunction{anova()}. Function \Rfunction{do.call()} passes the members of the list passed as its second argument as individual arguments to the function being called, using their names if present. \Rfunction{anova()} expects nameless arguments, so the names present in \code{results} have to be removed with a call to \Rfunction{unname()}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -11355,7 +11354,7 @@ \section{Iteration When Performance Is Important}\label{sec:loops:slow} \index{vectorisation}\index{recycling of arguments}\index{iteration}\index{loops!faster alternatives|(} When working with large data sets, or many smaller data sets, one frequently needs to take performance into account. In \Rlang, explicit \Rloop{for}, \Rloop{while} and \Rloop{repeat} are frequently considered to be slow. Vectorised operations are in general comparatively faster. As vectorisation (see page \pageref{par:calc:vectorised:opers}) usually also makes code simpler, it is good to use vectorisation whenever possible. Depending on the case, loops can be replaced using vectorised arithmetic operators, \emph{apply} functions (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}) and functions implementing frequently used operations (see section \ref{sec:vectorised:functions} on page \pageref{sec:vectorised:functions}). Improved performance needs to be balanced against the effort invested in writing faster code, as in most cases our own time is more valuable than computer running time. However, using vectorised operators and optimised functions becomes nearly effortless once one is familiar with them.\qRloop{for} -To demonstrate the magnitude of the differences in performance that can be expected, I used as a first case the computation of the differences between successive numbers in a vector, applied to vectors of lengths ranging from 10 to 100 million numbers (Figure \ref{fig:diff:benchmarks}). In relative terms the difference in computation time was huge between loops and vectorisation for vectors of up to 1\,000 numbers (near $\times 500$), but the total times were very short ($5 \times 10^{-3}$\,s vs.\ $10 \times 10^{-6}$\,s). For these vectors, pre-allocation of a vector to collect the results made almost no difference and vectorisation with the extraction operator \Roperator{[ ]} together with the minus arithmetic operator \Roperator{-} was the fastest. There seems to be a significant overhead for explicit loops, as the running time was nearly independent of the length of these short vectors. +To demonstrate the magnitude of the differences in performance that can be expected, I used as a first case the computation of the differences between successive numbers in a vector, applied to vectors of lengths ranging from 10 to 100 million numbers (Figure \ref{fig:diff:benchmarks}). In relative terms, the difference in computation time was huge between loops and vectorisation for vectors of up to 1\,000 numbers (near $\times 500$), but the total times were very short ($5 \times 10^{-3}$\,s vs.\ $10 \times 10^{-6}$\,s). For these vectors, pre-allocation of a vector to collect the results made almost no difference and vectorisation with the extraction operator \Roperator{[ ]} together with the minus arithmetic operator \Roperator{-} was the fastest. There seems to be a significant overhead for explicit loops, as the running time was nearly independent of the length of these short vectors. For vectors of 10\,000 or more numbers there was only a very small advantage in using function \Rfunction{diff()} over using vectorised arithmetic and extraction operators. For \Rloop{while} and \Rloop{for} loops pre-allocation of the vector to collect results made an important difference ($\times 2$ to $\times 3$), larger in the case of \Rloop{for}. However, vectorised operators and function \Rfunction{diff()} remained nearly $\times 10$ faster than the fastest explicit loop. For the longer vectors the time increased almost linearly with their length, with similar slopes for the different approaches. Because of the computation used for this example, \emph{apply()} functions could not be used. @@ -11449,7 +11448,7 @@ \section{Iteration When Performance Is Important}\label{sec:loops:slow} \end{knitrout} \end{explainbox} -In nested iteration loops it is most important to vectorial or otherwise enhance the performance of the innermost loop as it is the one executed most frequently. The code for nested loops (used as an example in section \ref{sec:nested:loops} on page \pageref{sec:nested:loops}) can be edited to remove the explicit use of \Rloop{for} loops. I assessed the performance of different approaches by collecting timings for square \code{matrix} objects with dimensions (rows $\times$ columns) ranging from $10 \times 10$, size = $10^2$, to $10\,000 \times 10\,000$, size = $10^8$ (Figure \ref{fig:rowsums:benchmarks}). +In nested iteration loops, it is most important to vectorise, or otherwise enhance the performance of the innermost loop, as it is the one executed most frequently. The code for nested loops (used as an example in section \ref{sec:nested:loops} on page \pageref{sec:nested:loops}) can be edited to remove the explicit use of \Rloop{for} loops. I assessed the performance of different approaches by collecting timings for square \code{matrix} objects with dimensions (rows $\times$ columns) ranging from $10 \times 10$, size = $10^2$, to $10\,000 \times 10\,000$, size = $10^8$ (Figure \ref{fig:rowsums:benchmarks}). In this second case, pre-allocation of memory to \code{b} did not enhance performance in good agreement with the benchmarks for the first example as when largest its length was 10\,000. The two nested loops always took the longest to run irrespective of the size of matrix \code{A}. A single loop over rows using a call to \Rfunction{sum()} for each row, improved performance compared to nested loops, most clearly for large matrices. This approach was out-performed by \Rfunction{apply()} only for small matrices, from which we can infer that \Rfunction{apply()} has a much smaller overhead than an explicit \Rloop{for} loop. \Rfunction{rowSums()} was between $\times 5$ and $\times 20$ faster than the second fastest approach depending on the size of the matrix. @@ -11470,7 +11469,7 @@ \section{Iteration When Performance Is Important}\label{sec:loops:slow} -\caption[Benchmark results for row sums.]{Benchmark results for different approaches to computing row sums of square numeric (double) matrices of different sizes. The data in this figure were obtained in a computer with a 12-years old Xenon E3-1235 CPU with four cores, 32\,GB of RAM, Windows 10 and \Rpgrm 4.3.1.}\label{fig:rowsums:benchmarks} +\caption[Benchmark results for row sums.]{Benchmark results for different approaches to computing row sums of square numeric (double) matrices of different sizes. The data in this figure were obtained in a computer with a 12-years-old Xenon E3-1235 CPU with four cores, 32\,GB of RAM, Windows 10, and \Rpgrm 4.3.1.}\label{fig:rowsums:benchmarks} \end{figure} \begin{explainbox} @@ -11534,7 +11533,7 @@ \section{Iteration When Performance Is Important}\label{sec:loops:slow} \end{warningbox} \begin{explainbox} - You may be wondering: how do the faster approaches manage to avoid the overhead of iteration? Of course they do not really avoid iteration, but the loops in functions written in \Clang, \Cpplang, or \langname{FORTRAN} are compiled into machine code as part of \Rpgrm itself or when packages binaries are created. In simpler words, the time required to convert and optimise the code written in these languages into machine code is spent during compilation, usually before we download and install \Rlang or packages. Instead, a loop coded in \Rlang is interpreted into machine code each time we source our script, and in some cases for each iteration in a loop. The \Rlang interpreter does some compilation into virtual machine code, as a preliminary stage which helps improve performance. + You may be wondering: how do the faster approaches manage to avoid the overhead of iteration? Of course, they do not really avoid iteration, but the loops in functions written in \Clang, \Cpplang, or \langname{FORTRAN} are compiled into machine code as part of \Rpgrm itself or when packages binaries are created. In simpler words, the time required to convert and optimise the code written in these languages into machine code is spent during compilation, usually before we download and install \Rlang or packages. Instead, a loop coded in \Rlang is interpreted into machine code each time we source our script, and in some cases for each iteration in a loop. The \Rlang interpreter does some compilation into virtual machine code, as a preliminary stage which helps improve performance. \end{explainbox} The examples in this section use numbers and arithmetic operations, but vectorisation and \emph{apply} functions can be also used with vectors of other modes, such as vectors of \code{character} strings or \code{logical} values. @@ -11653,7 +11652,7 @@ \section{Clean-Up} \end{kframe} \end{knitrout} -Function \Rfunction{library()} attaches the namespace of the loaded packages and in some special cases one may want to detach them at the end of a script. We can use \Rfunction{detach()} similarly as with attached \code{data.frame} objects (see page \pageref{par:calc:attach}). As an example we detach the packages used in section \ref{sec:loops:slow}. It is important to remember that the order in which they can be detached is determined by their interdependencies. +Function \Rfunction{library()} attaches the namespace of the loaded packages and in some special cases one may want to detach them at the end of a script. We can use \Rfunction{detach()} similarly as with attached \code{data.frame} objects (see page \pageref{par:calc:attach}). As an example, we detach the packages used in section \ref{sec:loops:slow}. It is important to remember that the order in which they can be detached is determined by their interdependencies. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -11684,12 +11683,12 @@ \chapter{Base \Rlang: Adding New ``Words''}\label{chap:R:functions} \section{Aims of This Chapter} -In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. I start by discussing how to define and use new functions, operators and classes. What are their semantics and how they contribute to conciseness and reliability of computer scripts and programs. Later I focus on using existing packages to share extensions to \Rlang and touch briefly on how they work. I do not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. Instead I discuss how packages are installed and used. +In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. I start by discussing how to define and use new functions, operators, and classes. What are their semantics and how they contribute to conciseness and reliability of computer scripts and programs. Later I focus on using existing packages to share extensions to \Rlang and touch briefly on how they work. I do not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. Instead I discuss how packages are installed and used. \section{Defining Functions and Operators}\label{sec:script:functions} \index{functions!defining new}\index{operators!defining new} -\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector we have created the abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. +\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector, we formulate an abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. The main role of functions is that of providing an abstraction allowing us to avoid repeating blocks of code (groups of statements) applying the same operations on different data. The reasons to avoid repetition of similar blocks of code statements are that 1) if the algorithm or implementation needs to be revised---e.g., to fix a bug or error---it is best to make edits in a single place; 2) sooner or later pieces of repeated code can become different leading to inconsistencies and hard-to-track bugs; 3) abstraction and division of a problem into smaller chunks, greatly helps with keeping the code understandable to humans; 4) textual repetition makes the script file longer, and this makes debugging, commenting, etc., more tedious, and error prone; 5) with well-defined input and output, functions facilitate testing. @@ -11709,7 +11708,7 @@ \section{Defining Functions and Operators}\label{sec:script:functions} \end{kframe} \end{knitrout} -When we call \code{fun1()} with \code{4} and \code{3} as arguments, the computation that takes place is \code{4 * 3} and the value returned is \code{12}. In this example the returned value or result is printed, but it could have been assigned to a variable or used in further computations within the calling statement. +When we call \code{fun1()} with \code{4} and \code{3} as arguments, the computation that takes place is \code{4 * 3} and the value returned is \code{12}. In this example, the returned value or result is printed, but it could have been assigned to a variable or used in further computations within the calling statement. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -11866,7 +11865,7 @@ \subsection{Scope of names} Parameters and local variables are not read-only, they behave like normal variables within the body of the function. However, assignments made using the operator \Roperator{<-}, only affect a local copy that is destroyed when the function returns. \end{warningbox} -The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with the namespace where it is defined. +The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation, one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with the namespace where it is defined. As the \Rlang language has few reserved words for which no redefinition is allowed, we should take care not to accidentally reuse names that are part of the language. For example, \code{pi} is a constant defined in \Rlang with the value of the mathematical constant $\pi$. If we use the same name for one of our variables, the original definition is hidden and can no longer be normally accessed. @@ -11901,7 +11900,7 @@ \subsection{Scope of names} \end{kframe} \end{knitrout} -In the example above, the two variables are not defined in the same scope. In the example below we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} +In the example above, the two variables are not defined in the same scope. In the example below, we assign a new value to a variable we have earlier created within the same scope, and consequently the second assignment overwrites, rather than hides, the existing definition.\qRscoping{exists()} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -12037,7 +12036,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem}\label{sec:ordinary:func ## } ## sqrt(var(x)/length(x)) ## } -## +## \end{verbatim} \end{kframe} \end{knitrout} @@ -12053,7 +12052,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem}\label{sec:ordinary:func ## function (x, na.rm = FALSE) ## sqrt(var(if (is.vector(x) || is.factor(x)) x else as.double(x), ## na.rm = na.rm)) -## +## ## \end{verbatim} \end{kframe} @@ -12102,7 +12101,7 @@ \subsection{Operators}\label{sec:operator:functions} \end{kframe} \end{knitrout} -\Kern{1}{An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}).} +\Kern{1}{An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions, we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}).} The name by itself and enclosed in back ticks allows us to access the definition of an operator. @@ -12190,7 +12189,7 @@ \section{Objects, Classes and Methods}\label{sec:script:objects:classes:methods} \begin{verbatim} ## function (x, ...) ## UseMethod("mean") -## +## ## \end{verbatim} \end{kframe} @@ -12374,20 +12373,19 @@ \section{Packages}\label{sec:script:packages} \subsection{Sharing of \Rlang-language extensions} \index{extensions to R} -The most elegant way of adding new features or capabilities to \Rlang is through packages. A package can contain any, seevral or all of \Rlang function and operator definitions, data objects, classes and their methods, plus the corresponding documentation. Some packages available through \CRAN contain only one of two \Rlang objects while others contain hundreds of them. After loading and attaching a package the objects that the package exports can be used as if they were part \Rlang itself. +The most elegant way of adding new features or capabilities to \Rlang is through packages. A package can contain any, several or all of \Rlang function and operator definitions, data objects, classes, and their methods, plus the corresponding documentation. Some packages available through \CRAN contain only one or two \Rlang objects while others contain hundreds of them. After loading and attaching a package, the objects that the package exports can be used as if they were part \Rlang itself. Packages are, without doubt, the best mechanism for sharing extensions to \Rlang. However, in most situations, packages are also very useful for managing code that will be reused by a single person over time. \Rlang packages have strict rules about their contents, file structure, and documentation, which makes it possible among other things for the package documentation to be merged into \Rpgrm's help system when a package is loaded. With a few exceptions, packages can be written so that they will work on any computer where \Rpgrm runs. \begin{explainbox} -In a source file the package code is in text files, simply archived and compressed together into a single file. A binary file has been processed into a form suitable for faster installation under a given operating system and possibly CPU family. Binary files are also specific to each major version of \Rlang. In addition to being slower, installation from source files in many cases requires additional software like compilers to be available at the time of installation. A compiler is a program that translates the text representation of a computer program written in \Clang, \Cpplang, \langname{FORTRAN}, etc., into machine code, i.e., instructions for the computer hardware. \Rlang code is translated into instructions for a virtual machine, part of \Rpgrm, that does the final translation into machine code at runtime. +In a ``source package'', the code written in \Rlang, and possibly in other programming languages, is contained in text files that are compressed together into a single archive file. In a ``binary package'' the source code is already processed into a form suitable for faster installation. Binary package files are specific to each major version of \Rlang, operating system, and computer architecture. In addition to being slower, package installation from sources can requires additional software, such as compilers. A compiler translates the text representation of a computer program written in \Clang, \Cpplang, \langname{FORTRAN}, etc., into machine code, i.e., instructions for the computer hardware. \Rlang code is compiled into instructions for a virtual machine, part of \Rlang, that does the final translation into machine code at runtime. \end{explainbox} -For distribution a single compressed archive file is used for aech package. Packages can be shared as source- or binary-code files, sent for example through e-mail. However, the largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the packages and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing (2024-01-24) was \ensuremath{2.03\times 10^{4}}. +For distribution, a single compressed archive file is used for aech package. Packages can be shared as source- or binary-code files, sent for example through e-mail. However, the largest public repository of \Rpgrm packages is called \CRAN (\url{https://cran.r-project.org/}), an acronym for Comprehensive R Archive Network. Packages available through \CRAN are guaranteed to work, in the sense of not failing any tests built into the packages and not crashing or aborting prematurely. They are tested daily, as they may depend on other packages whose code will change when updated. The number of packages available through \CRAN at the time of printing (2024-02-14) was \ensuremath{2.04\times 10^{4}}. -A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor} (\url{https://www.bioconductor.org/}), containing packages that pass strict quality tests, adding an additional 3\,400 packages. rOpenScience\index{rOpenScience} has established guidelines and a system for code peer review for \Rlang packages. These peer-reviewed packages are available through \CRAN or other repositories and listed at the rOpenScience website (\url{https://ropensci.org/}). -Occasionally one may have or want to install packages directly from Git repositories such as versions still under development and not yet submitted to \CRAN. +A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor} (\url{https://www.bioconductor.org/}), containing packages that pass strict quality tests, adding an additional 3\,400 packages. rOpenScience\index{rOpenScience} has established guidelines and a system for code peer review for \Rlang packages. These peer-reviewed packages are available through \CRAN or other repositories and listed at the rOpenScience website (\url{https://ropensci.org/}). Occasionally, one may have, or want, to install packages or updates that are not yet in \CRAN, either from the R Universe (\url{https://r-universe.dev/}) repositories, or from Git repositories (e.g., from GitHub). -A good way of learning how the extensions provided by a package work, is experimenting with them. When using a function we are not yet familiar with, looking at its help to check all its features expands our ``toolbox''. While documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based its documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. +A good way of learning how the extensions provided by a package work, is to experiment with them. When using a function we are not yet familiar with, looking at its help to check all its features expands our ``toolbox''. While documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based its documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. \subsection{Download, installation and use}\label{sec:packages:install} @@ -12399,7 +12397,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} \end{warningbox} \begin{faqbox}{How to install or update a package from CRAN?} -\CRAN is the default repository for \Rlang packages. If you use \RStudio or another IDE as a front end on any operating system or \pgrmname{RGUI} under \pgrmname{MS-Windows}, installation and updates can be done through a menu or GUI `button'. These menus use calls to \Rfunction{install.packages()} and \Rfunction{update.packages()} behind the scenes. +\CRAN is the default repository for \Rlang packages. If you use \RStudio or another IDE as a front end on any operating system or \pgrmname{RGUI} under \pgrmname{MS-Windows}, installation and updates can be done through a menu or GUI button. These menus use calls to \Rfunction{install.packages()} and \Rfunction{update.packages()} behind the scenes. Alternatively, at the \Rpgrm command line, or in a script, \Rfunction{install.packages()} can be called with the name of the package as an argument. For example, to install package \pkgname{learnrbook} one can use @@ -12448,9 +12446,9 @@ \subsection{Download, installation and use}\label{sec:packages:install} \end{knitrout} \end{explainbox} -\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. This is because some \Rlang packages contain source code in other languages such as \Clang, \Cpplang or \langname{FORTRAN} that needs to be compiled into machine code during installation. Under \pgrmname{MS-Windows}, the needed shell, commands and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in an installer under the name \pgrmname{RTools} (available from \CRAN). \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}) is usually needed to build the PDF of the package's manual. +\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. This is because some \Rlang packages contain source code in other languages such as \Clang, \Cpplang or \langname{FORTRAN} that needs to be compiled into machine code during installation. Under \pgrmname{MS-Windows}, the needed shell, commands, and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in an installer under the name \pgrmname{RTools} (available from \CRAN). \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}) is usually needed to build the PDF of the package's manual. -Under \pgrmname{MS-Windows} it is easier to install packages from binary \texttt{.zip} files than from \texttt{.tar.gz} source files. For \pgrmname{OS X} (Apple Mac) the situation is similar, with binaries available both for Intel and ARM (M1, M2 series) processors. Most, but not all, Linux distributions include in the default setup the tools needed for installation of \Rlang packages. Under Linux it is rather common to install packages from sources, although package binaries have recently become more easily available. +Under \pgrmname{MS-Windows}, it is easier to install packages from binary \texttt{.zip} files than from \texttt{.tar.gz} source files. For \pgrmname{OS X} (Apple Mac) the situation is similar, with binaries available both for Intel and ARM (M1, M2 series) processors. Most, but not all, Linux distributions include in the default setup the tools needed for installation of \Rlang packages. Under Linux it is rather common to install packages from sources, although package binaries have recently become more easily available. If the tools are available, packages can be easily installed from sources from within \RStudio. However, binaries are for most packages also readily available. In \CRAN, the binary for a new version of a package becomes available with a delay of one or two days compared to the source. For packages that need compilation, the installation from sources takes more time than installation from binaries. @@ -12504,7 +12502,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} \begin{verbatim} ## To cite R in publications use: ## -## R Core Team (2023). _R: A Language and Environment for Statistical +## R Core Team (2024). _R: A Language and Environment for Statistical ## Computing_. R Foundation for Statistical Computing, Vienna, Austria. ## . ## @@ -12515,7 +12513,7 @@ \subsection{Download, installation and use}\label{sec:packages:install} ## author = {{R Core Team}}, ## organization = {R Foundation for Statistical Computing}, ## address = {Vienna, Austria}, -## year = {2023}, +## year = {2024}, ## url = {https://www.R-project.org/}, ## } ## @@ -12536,9 +12534,9 @@ \subsection{Download, installation and use}\label{sec:packages:install} \subsection{Finding suitable packages} -Due to the large number of contributed \Rlang packages it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. To analyse data using almost any of the more common statistical methods does not require the use of special packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang. When one considers the use of novel or specialised types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. +Due to the large number of contributed \Rlang packages, it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. Analysing data using almost any of the more common statistical methods does not require the use of contributed packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang. When one considers the use of novel or specialised types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. -The \CRAN repository has a very broad scope and includes a section called ``views''. \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering or specific applications. These views are maintained by different expert editors. The \Rlang views can be found at \url{https://cran.r-project.org/web/views/}. +The \CRAN repository has a very broad scope and includes a section called ``views''. \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering, or specific applications. These views are maintained by different expert editors. The \Rlang views can be found at \url{https://cran.r-project.org/web/views/}. The Bioconductor repository specialises in bioinformatics with \Rlang. It also has a section with ``views'' and within it, descriptions of different data analysis workflows. The workflows are especially good as they reveal which sets of packages work well together. These views can be found at \url{https://www.bioconductor.org/packages/release/BiocViews.html}. @@ -12548,7 +12546,7 @@ \subsection{Finding suitable packages} \subsection{How packages work}\label{sec:packages:work} -\Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. Loading and attaching a package with \Rfunction{library()} makes visible only the exported objects. Attaching a package adds these objects to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases because they may change or be removed in future versions. +\Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. Loading and attaching a package with \Rfunction{library()} makes visible only the exported objects. Attaching a package adds these objects to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases, to avoid making a commitment about their availability in future versions, which could constrain further development. \begin{explainbox} Package namespaces can be detached and also unloaded with function \Rscoping{detach()} using a slightly different notation for the argument from that which we described for data frames in section \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}. This is very seldom needed, but one case I have come across is a package that redefines a generic function of a method of a package it imports, thus preventing the normal use of a third package that depends on the original definition of the generic. @@ -12603,7 +12601,7 @@ \subsection{How packages work}\label{sec:packages:work} \begin{verbatim} ## function (x, ...) ## UseMethod("mean") -## +## ## \end{verbatim} \end{kframe} @@ -12683,12 +12681,12 @@ \chapter{Base \Rlang: ``Verbs'' and ``Nouns'' for Statistics}\label{chap:R:stati \section{Aims of This Chapter} -This chapter aims to give the reader an introduction to the approach used in base \Rlang for the computation of statistical summaries, the fitting of models to observations and tests of hypothesis. This chapter does \emph{not} explain data analysis methods, statistical principles or experimental designs. There are many good books on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}) but most of them tend to focus on specific statistical methods rather than on the commonalities among them. Although base \R's model fitting functions target specific statistical procedures, they use a common approach to model specification and for returning the computed estimates and test outcomes. This approach, also followed by many contributed extension packages, can be considered as part of the philosophy behind the \Rlang language. In this chapter you will become familiar with the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalised linear models, non-linear models and some simple multivariate methods as examples. The focus is on how to specify statistical models, contrasts and observations, how to access different components of the objects returned by the corresponding fit and summary functions, and how to use these extracted components in further computations or for customised printing and formatting. +This chapter aims to give the reader an introduction to the approach used in base \Rlang for the computation of statistical summaries, the fitting of models to observations and tests of hypothesis. This chapter does \emph{not} explain data analysis methods, statistical principles or experimental designs. There are many good books on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}) but most of them tend to focus on specific statistical methods rather than on the commonalities among them. Although base \R's model fitting functions target specific statistical procedures, they use a common approach to model specification and for returning the computed estimates and test outcomes. This approach, also followed by many contributed extension packages, can be considered as part of the philosophy behind the \Rlang language. In this chapter, you will become familiar with the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models, and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalised linear models, non-linear models, and some simple multivariate methods as examples. The focus is on how to specify statistical models, contrasts and observations, how to access different components of the objects returned by the corresponding fit and summary functions, and how to use these extracted components in further computations or for customised printing and formatting. %\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} \section{Statistical Summaries} \index{summaries!statistical|(} -Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions both for simple and complex calculations, going from means and variances to fitting very complex models. Table \ref{tab:stat:summaries} lists some frequently used functions. All these methods accept numeric vectors and/or matrices as arguments. In addition function \Rfunction{quantile()} can be used to simultaneously compute multiple arbitrary quantiles for a vector of observations, and method \Rfunction{summary()} produces a summary that depends on the class of the argument passed to it. Please, see section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own functions.) +Being the main focus of the \Rlang language in data analysis and statistics, \Rlang provides functions both for simple and complex calculations, going from means and variances to fitting very complex models. Table \ref{tab:stat:summaries} lists some frequently used functions. All these methods accept numeric vectors and/or matrices as arguments. In addition, function \Rfunction{quantile()} can be used to simultaneously compute multiple arbitrary quantiles for a vector of observations, and method \Rfunction{summary()} produces a summary that depends on the class of the argument passed to it. (See section \ref{sec:functions:sem} on page \pageref{sec:functions:sem} for how to define your own functions.) \begin{table} \centering @@ -12756,14 +12754,14 @@ \section{Statistical Summaries} Other more advanced functions are also available in \Rlang, such as \Rfunction{boxplot.stats()} that computes the values needed to draw boxplots (see section \ref{sec:boxplot} on page \pageref{sec:boxplot}). -In many cases you will want to compute statistical summaries by group or treatment in addition or instead of for a whole data set or vector. See section \ref{sec:calc:df:aggregate} on page \pageref{sec:calc:df:aggregate} for details on how to compute summaries of data stored in data frames using base \Rlang functions, and section \ref{sec:dplyr:manip} on page \pageref{sec:dplyr:manip} for alternative functions from contributed packages. +In many cases, you will want to compute statistical summaries by group or treatment in addition or instead of for a whole data set or vector. See section \ref{sec:calc:df:aggregate} on page \pageref{sec:calc:df:aggregate} for details on how to compute summaries of data stored in data frames using base \Rlang functions, and section \ref{sec:dplyr:manip} on page \pageref{sec:dplyr:manip} for alternative functions from contributed packages. \index{summaries!statistical|)} \section{Standard Probability Distributions}\label{sec:prob:dist} \index{probability distributions!standard|(}% \index{probability distributions!theoretical|see{--- standard}}% \index{Normal distribution}% -Density, distribution functions, quantile functions and generation of pseudo-random values for several different standard (theoretical) probability distributions are part of the \Rlang language. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. For each distribution, the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``\code{d}'' for density, ``\code{q}'' for quantile, ``\code{r}'' (pseudo-)random draws, and ``\code{p}'' for probability (Table \ref{tab:prob:funs}). +Density functions, probability distribution functions, quantile functions, and functions for pseudo-random draws are available in \Rlang for several different standard (theoretical) probability distributions. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. For each distribution, the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``\code{d}'' for density, ``\code{q}'' for quantile, ``\code{r}'' (pseudo-)random draws, and ``\code{p}'' for probability (Table \ref{tab:prob:funs}). \begin{table} \centering @@ -12788,7 +12786,7 @@ \section{Standard Probability Distributions}\label{sec:prob:dist} Theoretical distributions are defined by mathematical functions that accept parameters that control the exact shape and location. In the case of the Normal distribution, these parameters are the \emph{mean} (\code{mean}) controlling the location center and \emph(standard deviation) (\code{sd}) controlling the spread away from the center of the distribution. The four different functions differ in which values are calculated (the unknowns) and which values are supplied as arguments (the known inputs). -In what follows I use the Normal distribution as an example, but with differences in their parameters, the functions for other theoretical distributions follow a similar naming pattern. +In what follows, I use the Normal distribution as an example, but with differences in their parameters, the functions for other theoretical distributions follow a similar naming pattern. \subsection{Density from parameters}\label{sec:prob:dens} \index{probability distributions!density from parameters} @@ -12944,7 +12942,7 @@ \subsection{``Random'' draws from a distribution}\label{sec:stat:random} True random sequences can only be generated by physical processes. All ``pseudo-random'' sequences of numbers generated by computation are really deterministic although they share many properties with true random sequences (e.g., in relation to autocorrelation). -It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. In each case, the probability with which different values are ``drawn'' approximates the probabilities set by the corresponding theoretical distribution. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram} for example plots).\qRfunction{rnorm()}\qRfunction{runif()}% +It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$, and other distributions. In each case, the probability with which different values are ``drawn'' approximates the probabilities set by the corresponding theoretical distribution. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram} for example plots).\qRfunction{rnorm()}\qRfunction{runif()}% \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -12965,7 +12963,7 @@ \subsection{``Random'' draws from a distribution}\label{sec:stat:random} \end{knitrout} \begin{playground} -Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob} and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. +Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob}, and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. \end{playground} \begin{explainbox} @@ -13038,7 +13036,7 @@ \section{Observed Probability Distributions} \end{knitrout} \end{explainbox} -As a \Rmethod{plot()} method is available for class \Rclass{density} we can easily produce a plot of the estimated empirical density distribution. In this case a bimodal curve, with two maxima, and thus, far from Normal. +As a \Rmethod{plot()} method is available for class \Rclass{density} we can easily produce a plot of the estimated empirical density distribution. In this case, the fitted bimodal curve, with two maxima, is very different to the Normal. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13090,7 +13088,7 @@ \section{``Random'' Sampling} In practice, pseudo-random sampling is useful when we need to select subsets of observations. One such case is assigning treatments to experimental units in an experiment or selecting persons to interview in a survey. Another use is in bootstrapping to estimate variation in parameter estimates using empirical distributions. \begin{faqbox}{How to sample random rows from a data frame?} -As described in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, data frames are commonly used to store one observation per row. To sample a subset of rows we need to generate a random set of indices to use with the extraction operator (\Roperator{[ ]}). Here we sample four rows from data frame \code{cars} included in \Rlang. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). +As described in section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}, data frames are commonly used to store one observation per row. To sample a subset of rows, we need to generate a random set of indices to use with the extraction operator (\Roperator{[ ]}). Here we sample four rows from data frame \code{cars} included in \Rlang. These data consist of stopping distances for cars moving at different speeds as described in the documentation available by entering \code{help(cars)}). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13301,7 +13299,7 @@ \section{$t$-test}\label{sec:stats:ttest} \end{kframe} \end{knitrout} -The same test can be calculated step by step. In this case this approach is not needed, but it is useful when we have a parameter estimate (not just mean) and its standard error available, as in model fits (see the advanced playground on page \pageref{box:stats:slope:ttest} for an example). +The same test can be calculated step by step. In this case, this approach is not needed, but it is useful when we have a parameter estimate (not just mean) and its standard error available, as in model fits (see the advanced playground on page \pageref{box:stats:slope:ttest} for an example). \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13392,7 +13390,7 @@ \section{$t$-test}\label{sec:stats:ttest} \section{Model Fitting in \Rlang}\label{sec:stat:mf} \index{models!fitting|(} -The general approach to model fitting in \Rlang is to separate the actual fitting of a model from the inspection of the fitted model. A model fitting function minimally requires a description of the model to fit, as a model \code{formula} and a data frame or vectors with the data or observations to which to fit the model. These functions in \Rlang return a model-fit object. This object contains the data, the model formula, the call and the result of fitting the model. Several methods are available for querying it. The diagram in Figure \ref{fig:model:fit:diagram} summarises the approach used in \Rlang for data analysis based on fitted models. +The general approach to model fitting in \Rlang is to separate the actual fitting of a model from the inspection of the fitted model. A model fitting function minimally requires a description of the model to fit, as a model \code{formula} and a data frame or vectors with the data or observations to which to fit the model. These functions in \Rlang return a model-fit object. This object contains the data, the model formula, the call, and the result of fitting the model. Several methods are available for querying it. The diagram in Figure \ref{fig:model:fit:diagram} summarises the approach used in \Rlang for data analysis based on fitted models. \begin{figure} \centering @@ -13414,7 +13412,7 @@ \section{Model Fitting in \Rlang}\label{sec:stat:mf} Models are described using model formulas such as \code{y\,\char"007E\,x} which we read as $y$ is explained by $x$. We use \emph{lhs} (left-hand-side) and \emph{rhs} (right-hand-side) to signify all terms to the left and right of the tilde (\code{\,\char"007E\,}), respectively (\code{\,\char"007E\,}). Model formulas are used in different contexts: fitting of models, plotting, and tests like $t$-test. The syntax of model formulas is consistent throughout base \Rlang and numerous independently developed packages. However, their use is not universal, and several packages extend the basic syntax to allow the description of specific types of models. As most things in \Rlang, model formulas are objects and can be stored in variables. See section \ref{sec:stat:formulas} on page \pageref{sec:stat:formulas} for a detailed discussion of model formulas. -Although there is some variation, especially for fitted model classes defined in extension packages, in most cases, the \textsl{query functions} bulked together in the rightmost box in the diagram include methods \Rfunction{summary()}, \Rfunction{anova()} and \Rfunction{plot()}, with several other methods such as \Rfunction{coef()}, \Rfunction{residuals()}, \Rfunction{fitted()}, \Rfunction{predict()}, \Rfunction{AIC()}, \Rfunction{BIC()} usually also available. Additional methods may be available. However, as model fit objects are derived from class \code{list}, these and other components can be extract or computed programmatically when needed. Consequently, the examples in this chapter can be adapted to the fitting of types of models not described here. +Although there is some variation, especially for fitted model classes defined in extension packages, in most cases, the \textsl{query functions} bulked together in the rightmost box in the diagram in Figure \ref{fig:model:fit:diagram} include \Rfunction{summary()}, \Rfunction{anova()} and \Rfunction{plot()}, with other methods such as \Rfunction{coef()}, \Rfunction{residuals()}, \Rfunction{fitted()}, \Rfunction{predict()}, \Rfunction{AIC()}, and \Rfunction{BIC()} usually also available. Additional methods may be available. However, as model fit objects are \code{list}-like, these and other values can be extracted and/or computed programmatically when needed. The examples in this chapter can be adapted to the fitting of types of models not described in this book. \begin{explainbox} Fitted model objects in \Rlang are self contained and include a copy of the data to which the model was fit, as well as residuals and possibly even intermediate results of computations. Although this can make the size of these objects large, it allows querying and even updating them in the absence of the data in the current \Rlang workspace. @@ -13529,11 +13527,11 @@ \subsection{Regression}\label{sec:stat:LM:regression} \end{kframe} \end{knitrout} -The summary\index{linear models!summary table} is organised in sections. ``Call:'' shows \code{dist\ \char"007E\ 1 + speed} or the specification of the model fitted, plus the data used. ``Residuals:'' displays the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. ``Coefficients:'' contains estimates of the model parameters and their variation plus corresponding $t$-tests. In the last three lines there is information on overall standard error and its degrees of freedom and overall coefficient of determination ($R^2$) and $F$-statistic. +The summary\index{linear models!summary table} is organised in sections. ``Call:'' shows \code{dist\ \char"007E\ 1 + speed} or the specification of the model fitted, plus the data used. ``Residuals:'' displays the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. ``Coefficients:'' contains estimates of the model parameters and their variation plus corresponding $t$-tests. In the last three lines, there is information on overall standard error and its degrees of freedom and overall coefficient of determination ($R^2$) and $F$-statistic. Replacing $\alpha$ and $\beta$ in $y = \alpha \cdot 1 + \beta \cdot x$ by the estimates for the intercept, $a = -17.6$, and slope, $b = 3.93$, we obtain an estimate for the regression line $y = -17.6 + 3.93 x$. However, given the nature of the problem, we \emph{know based on first principles} that the stopping distance must be zero when speed is zero. This suggests that we should not estimate the value of $\alpha$ but instead set $\alpha = 0$, or in other words, fit the model $y = \beta \cdot x$. -In \Rlang models, the intercept is included by default, so the model fitted above can be formulated as \code{dist\ \char"007E\ speed}---i.e., the missing \code{+ 1} does not change the model. To exclude the intercept we need to specify it as \code{dist\ \char"007E\ speed - 1} (or its equivalent \code{dist\ \char"007E\ speed + 0}), for a straight line passing through the origin ($x = 0$, $y = 0$). In the summary for this model there is an estimate for the slope but not for the intercept. +In \Rlang models, the intercept is included by default, so the model fitted above can be formulated as \code{dist\ \char"007E\ speed}---i.e., the missing \code{+ 1} does not change the model. To exclude the intercept, we need to specify the model as \code{dist\ \char"007E\ speed - 1} (or its equivalent \code{dist\ \char"007E\ speed + 0}), for a straight line passing through the origin ($x = 0$, $y = 0$). In the summary for this model there is an estimate for the slope but not for the intercept. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13631,7 +13629,7 @@ \subsection{Regression}\label{sec:stat:LM:regression} \end{playground} -Additional query methods give easy access to different aspects of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations) (Figure \ref{fig:lm:fit:query:more}). Less frequently used accessors are \Rfunction{getCall()}, \Rfunction{effects()}, \Rfunction{terms()}, \Rfunction{model.frame()} and \Rfunction{model.matrix()}. +Additional query methods give easy access to different aspects of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations) (Figure \ref{fig:lm:fit:query:more}). Less frequently used accessors are \Rfunction{getCall()}, \Rfunction{effects()}, \Rfunction{terms()}, \Rfunction{model.frame()}, and \Rfunction{model.matrix()}. \begin{figure} \centering @@ -13811,7 +13809,7 @@ \subsection{Regression}\label{sec:stat:LM:regression} \begin{explainbox}\label{box:stats:slope:ttest} As\index{linear models!ad-hoc tests for parameters}\index{t-test@$t$-test|(}\index{calibration curves} an example of the use of values extracted from the \code{summary.lm} object, I show how to test if the slope from a linear regression fit deviates significantly from a constant value different from the usual zero, which tests for the presence of an ``effect'' of the explanatory variable. When testing for deviations from a calibration by comparing two instruments or an instrument and a reference, a null hypothesis of one for the slope tests for deviations from the true readings. In some cases, when comparing the effectiveness of interventions we may be interested to test if a new approach surpasses that in current use by at least a specific margin. There exist practical situations where testing if a response exceeds a threshold is of interest. -A \emph{t}-value can be computed for the slope as for the mean. When using \Rfunction{anova()} and \Rfunction{summary()} the null hypothesis is no effect or no response, i.e., slope = 0. The equivalent test with a null hypothesis of slope = 1 is easy to implement if we consider how we calculate a $t$-value (see section \ref{sec:stats:ttest} on page \pageref{sec:stats:ttest}). To compute the \emph{t}-value we need an estimate for the slope and an estimate of its standard error. To look up the $P$-value we need the degrees of freedom. All these values are available as members of the summary object of a fitted model. +A \emph{t}-value can be computed for the slope as for the mean. When using \Rfunction{anova()} and \Rfunction{summary()} the null hypothesis is no effect or no response, i.e., slope = 0. The equivalent test with a null hypothesis of slope = 1 is easy to implement if we consider how we calculate a $t$-value (see section \ref{sec:stats:ttest} on page \pageref{sec:stats:ttest}). To compute the \emph{t}-value we need an estimate for the slope and an estimate of its standard error. To look up the $P$-value, we need the degrees of freedom. All these values are available as members of the summary object of a fitted model. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13862,7 +13860,7 @@ \subsection{Regression}\label{sec:stat:LM:regression} \index{linear models!linear regression|)}% \begin{explainbox}\label{box:LM:fit:object} -The\index{linear models!structure of model fit object} objects returned by model fitting functions contain the full information, including the data to which the model was fit to. Their structure resembles a nested list. In most cases the class of the objects returned by model fit functions agrees in name with the name of the function (\code{"lm"} in this example) but is not derived from \code{"list"}. The query functions, either extract parts of the object or do additional calculations and formatting based on them. Different specialisations of these methods are called depending on the class of the model fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) +The\index{linear models!structure of model fit object} objects returned by model fitting functions contain the full information, including the data to which the model was fit to. Their structure resembles a nested list. In most cases, the class of the objects returned by model fit functions agrees in name with the name of the function (\code{"lm"} in this example) but is not derived from \code{"list"}. The query functions, either extract parts of the object or do additional calculations and formatting based on them. Different specialisations of these methods are called depending on the class of the model fit object. (See section \ref{sec:methods} on page \pageref{sec:methods}.) \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -13933,7 +13931,7 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \index{analysis of variance|see{linear models, analysis of variance}}% \index{ANOVA|see{linear models, analysis of variance}}% \index{linear models!analysis of variance|(}% -In ANOVA the explanatory variable is categorical, and in \Rlang, must be a \code{factor} or \code{ordered} factor (see section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}). As a linear model, the fitting approach is the same as for linear and polynomial regression (Figure \ref{fig:lm:fit:diagram}). +In ANOVA, the explanatory variable is categorical, and in \Rlang, must be a \code{factor} or \code{ordered} factor (see section \ref{sec:calc:factors} on page \pageref{sec:calc:factors}). As a linear model, the fitting approach is the same as for linear and polynomial regression (Figure \ref{fig:lm:fit:diagram}). The \Rdata{InsectSprays} data set used in the next example gives insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% \label{xmpl:fun:lm:fm4} @@ -14249,7 +14247,7 @@ \subsection{Model update and selection}\label{sec:stat:update:step} Print \code{fm4\$call} and \code{fm4a\$call}. These two calls differ in the argument to \code{formula}. What other members have been updated in \code{fm4a} compared to \code{fm4}? \end{playground} -In the chunk above we replaced the argument passed to \code{formula}. This is a frequent use, but for example to fit the same model to a subset of the data we can pass a suitable argument to parameter \code{subset}. +In the chunk above we replaced the argument passed to \code{formula}. This is a frequent use, but, for example, to fit the same model to a subset of the data, we can pass a suitable argument to parameter \code{subset}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -14316,9 +14314,9 @@ \subsection{Model update and selection}\label{sec:stat:update:step} \caption[Stepwise model selection]{Diagram showing the steps used for stepwise model selection among nested models (in filled boxes) together with the previous steps in unfilled boxes. The range of models to select from can be set by the user. See Figure \ref{fig:lm:fit:diagram} for other details.}\label{fig:lm:step:diagram} \end{figure} -Stepwise model selection, either in the \emph{forward} direction from simpler to more complex models, in the backward direction from more complex to simpler models or in both directions is implemented in base \Rlang's \emph{method} \Rfunction{step()} using Akaike's information criterion (AIC)\index{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}} as the selection criterion. Use of method \Rfunction{step()} from \Rlang is possible, for example, with \code{lm()} and \code{glm} fits. AIC is described on page \pageref{par:stats:AIC}. +Stepwise model selection---either in the \emph{forward} direction from simpler to more complex models, in the backward direction from more complex to simpler models or in both directions---is implemented in base \Rlang's \emph{method} \Rfunction{step()} using Akaike's information criterion (AIC)\index{Akaike's An Information Criterion@Akaike's \emph{An Information Criterion}} as the selection criterion. Use of method \Rfunction{step()} from \Rlang is possible, for example, with \code{lm()} and \code{glm} fits. AIC is described on page \pageref{par:stats:AIC}. -For the next example we use \code{fm3} from page \pageref{chunk:stats:fm3}, a linear model for a polynomial regression. If as shown here, no models are passed through formal parameter \code{scope}, the previously fit model will be simplified, if possible. Method \Rfunction{step()} by default prints to the console a trace of the models tried and the corresponding AIC estimates. +For the next example, we use \code{fm3} from page \pageref{chunk:stats:fm3}, a linear model for a polynomial regression. If, as shown here, no models are passed through formal parameter \code{scope}, the previously fit model will be simplified, if possible. Method \Rfunction{step()} by default prints to the console a trace of the models tried and the corresponding AIC estimates. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -14477,7 +14475,7 @@ \section{Generalised Linear Models}\label{sec:stat:GLM} \index{generalised linear models|(}\index{models!generalised linear|see{generalised linear models}} \index{GLM|see{generalised linear models}} -Linear models make the assumption of normally distributed residuals. Generalised linear models, fitted with function \Rfunction{glm()} are more flexible, and allow the assumed distribution to be selected as well as the link function (defaults are as in \code{lm()}). Figure \ref{fig:glm:fit:diagram} shows that the steps used to fit a model with \Rfunction{glm()} are the same as with \code{lm()} except that we can select the probability distribution assumed to describe the variation among observations. Frequently used probability distributions are binomial and Poisson (see \code{help(family)} for the variations and additional ones).\index{models!for binomial outcomes data}\index{models!for counts data} +Linear models make the assumption of normally distributed residuals. Generalised linear models, fitted with function \Rfunction{glm()}, are more flexible, and allow the assumed distribution to be selected as well as the link function (defaults are as in \code{lm()}). Figure \ref{fig:glm:fit:diagram} shows that the steps used to fit a model with \Rfunction{glm()} are the same as with \code{lm()} except that we can select the probability distribution assumed to describe the variation among observations. Frequently used probability distributions are binomial and Poisson (see \code{help(family)} for the variations and additional ones).\index{models!for binomial outcomes data}\index{models!for counts data} \begin{figure} \centering @@ -14505,7 +14503,7 @@ \section{Generalised Linear Models}\label{sec:stat:GLM} \caption[Generalised linear model fitting in \Rlang]{Generalised linear model fitting in \Rlang is done in steps similar to those used for linear models. Generic diagram from Figure \ref{fig:model:fit:diagram} redrawn to show a generalised linear model fit. Non-filled boxes are shared with fitting of other types of models, and filled ones are specific to \Rfunction{glm()}. Only the three most frequently used query methods are shown, while both response and explanatory variables are under \textsl{observations}. Dashed boxes and arrows are optional as defaults are provided.}\label{fig:glm:fit:diagram} \end{figure} -For count data, GLMs are preferred over LMs. In the example below we fit the same model as above, but assuming a quasi-Poisson distribution instead of the Normal. An argument passed to \code{family} selects the assumed error distribution. The \Rdata{InsectSprays} data set used in the next example, gives insect counts in plots sprayed with different insecticides. In these data, spray is a factor with six levels. +For count data, GLMs are preferred over LMs. In the example below, we fit the same model as above, but assuming a quasi-Poisson distribution instead of the Normal. An argument passed to \code{family} selects the assumed error distribution. The \Rdata{InsectSprays} data set used in the next example, gives insect counts in plots sprayed with different insecticides. In these data, spray is a factor with six levels. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -14531,7 +14529,7 @@ \section{Generalised Linear Models}\label{sec:stat:GLM} \end{knitrout} -The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. In \Rlang versions previous to 4.4.0 no test statistics or $P$-values were computed unless requested by passing an argument to parameter \code{test}. In later versions of \Rlang, either a chi-squared test or an $F$-test are computed by default depending on whether the dispersion is fixed or free. We here use \code{"F"} as an argument to request an $F$-test. +The printout from the \Rfunction{anova()} method for GLM fits has some differences to that for LM fits. In \Rlang versions previous to 4.4.0, no test statistics or $P$-values were computed unless requested by passing an argument to parameter \code{test}. In later versions of \Rlang, either a chi-squared test or an $F$-test are computed by default depending on whether the dispersion is fixed or free. We here use \code{"F"} as an argument to request an $F$-test. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -14662,9 +14660,9 @@ \section{Non-Linear Regression}\label{sec:stat:NLS} \index{models!non-linear|see{non-linear models}}% \index{NLS|see{non-linear models}} -By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to observations. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are models non-linear in their parameters. +By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to observations. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are models that are non-linear in their parameters. -While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained (except in pathological cases affected by the limitations of floating point numbers described on page \pageref{box:integer:float}). For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration, the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. +While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained (except in pathological cases affected by the limitations of floating point numbers described on page \pageref{box:integer:float}). For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration, the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life, we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. When convergence fails, the first thing to do is to try different starting values and if this also fails, switch to a different computational algorithm. These steps usually help, but not always. Good starting values are in many cases crucial and in some cases ``guesses'' can be obtained using either graphical or analytical approximations. @@ -14696,7 +14694,7 @@ \section{Non-Linear Regression}\label{sec:stat:NLS} \caption[Non-linear model fitting in \Rlang]{Non-linear model fitting in \Rlang is done in steps. Generic diagram from Figure \ref{fig:model:fit:diagram} redrawn to show a non-linear model fit. Non-filled boxes are shared with fitting of other types of models, and filled ones are specific to \Rfunction{nls()}. Only the three most frequently used query methods are shown, while both response and explanatory variables are under \textsl{observations}. Dashed boxes and arrows are optional as defaults are provided.}\label{fig:nls:fit:diagram} \end{figure} -In cases when algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the \Rlang function to be fitted together with the \Rlang function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. Please, check the respective help pages for details. +In cases when algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the \Rlang function to be fitted together with the \Rlang function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. The respective help pages give the details. \begin{warningbox} In calls to \Rfunction{nls()}, the rhs of the model \code{formula} is a function call. The names of its arguments if not present in \code{data} are assumed to be parameters to be fitted. Below, a named function @@ -14759,14 +14757,14 @@ \section{Non-Linear Regression}\label{sec:stat:NLS} ## Residual standard error: 10.93 on 10 degrees of freedom ## ## Number of iterations to convergence: 0 -## Achieved convergence tolerance: 1.917e-06 +## Achieved convergence tolerance: 1.929e-06 \end{verbatim} \begin{alltt} \hlkwd{residuals}\hlstd{(fm21)} \end{alltt} \begin{verbatim} -## [1] 25.4339973 -3.5660027 -5.8109603 4.1890397 -11.3616074 4.6383926 -## [7] -5.6846886 -12.6846886 0.1670797 10.1670797 6.0311722 -0.9688278 +## [1] 25.4339971 -3.5660029 -5.8109605 4.1890395 -11.3616075 4.6383925 +## [7] -5.6846886 -12.6846886 0.1670798 10.1670798 6.0311723 -0.9688277 ## attr(,"label") ## [1] "Residuals" \end{verbatim} @@ -14816,7 +14814,7 @@ \section{Non-Linear Regression}\label{sec:stat:NLS} ## [1] 0 ## ## $finTol -## [1] 1.917488e-06 +## [1] 1.928554e-06 ## ## $stopCode ## [1] 0 @@ -14841,11 +14839,11 @@ \section{Splines and Local Regression}\label{sec:stat:splines} Splines take this a step farther and parameter estimates have no practical interest. The interest resides in the overall shape and position of the predicted curve. Splines consist of knots (or connection points) joined by straight or curved fitted lines, i.e., they are functions that are \emph{piecewise}. The simplest splines, are piece-wise linear, given by chained straight line segments connecting knots. -In more complex splines the segments are polynomials, frequently cubic polynomials, that fulfil certain constraints at the knots. For example, that the slope or first derivative is the same for the two connected curve ``pieces'' at the knot where they are connected. This constraint ensures that the curve is smooth. In some cases similar constraints are imposed on higher order derivatives, for example to the second derivative to ensure that the curve of the first derivative is also smooth at the knots. +In more complex splines, the segments are polynomials, frequently cubic polynomials, that fulfil certain constraints at the knots. For example, that the slope or first derivative is the same for the two connected curve ``pieces'' at the knot where they are connected. This constraint ensures that the curve is smooth. In some cases, similar constraints are imposed on higher order derivatives, for example, to the second derivative to ensure that the curve of the first derivative is also smooth at the knots. Splines are used in free-hand drawing with computers to draw arbitrary smooth curves. They are also be used for interpolation, in which case observations, assumed to be error-free, become the knots of a spline used to approximate intermediate values. Finally, splines can be used as models to be fit to observations subject to random variation. In this case splines fulfil the role of smoothers, as a curve that broadly describes a relationship among variables. -Splines are frequently used as smooth curves in plots as described in section \ref{sec:plot:smoothers} on page \pageref{sec:plot:smoothers}. Function \Rfunction{spline()} is used for interpolation and function \Rfunction{smooth.spline()} for smoothing by fitting a cubic spline (a spline where the knots are connected by third degree polynomials). Function \Rfunction{smooth.spline()} has a different user interface than that we used for model fit functions described above, as it only accepts \code{numeric} vectors as arguments to parameters \code{x} and \code{y} (Figure \ref{fig:spline:fit:diagram}). Additional parameters make it possible to override the defaults for number of knots and adjust the stiffness or tendency towards a straight line. The \code{plot()} method for splines, differently to the methods for other fit functions, produces a plot of the prediction. As no model formula is used only one curve at a time is fitted and no statistical tests involving groups are possible. The most commonly used query functions are thus not the same as for linear and non-linear models. +Splines are frequently used as smooth curves in plots as described in section \ref{sec:plot:smoothers} on page \pageref{sec:plot:smoothers}. Function \Rfunction{spline()} is used for interpolation and function \Rfunction{smooth.spline()} for smoothing by fitting a cubic spline (a spline where the knots are connected by third degree polynomials). Function \Rfunction{smooth.spline()} has a different user interface than that we used for model fit functions described above, as it only accepts \code{numeric} vectors as arguments to parameters \code{x} and \code{y} (Figure \ref{fig:spline:fit:diagram}). Additional parameters make it possible to override the defaults for number of knots and adjust the stiffness or tendency towards a straight line. The \code{plot()} method for splines, differently to the methods for other fit functions, produces a plot of the prediction. As no model formula is used, only one curve at a time is fitted and no statistical tests involving groups are possible. The most commonly used query functions are thus not the same as for linear and non-linear models. \begin{figure} \centering @@ -14971,7 +14969,7 @@ \section{Model Formulas}\label{sec:stat:formulas} \index{model formulas|(}\index{models!specification|see{model formulas}}% Model formulas, such as \code{y\,\char"007E\,x} are widely used in \Rlang, both in model fitting as exemplified in previous sections of this chapter and in plotting when using base \Rlang \Rmethod{plot()} methods. -\Rlang is consistent and flexible in how it treats various objects, to an extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other classes. +\Rlang is consistent and flexible in how it treats various objects, to an extent that can be surprising to those familiar with other computer languages. Model formulas are objects of class \Rclass{formula} and mode \Rclass{call} and can be manipulated and stored similarly to objects of other \Rlang classes. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -15027,7 +15025,7 @@ \section{Model Formulas}\label{sec:stat:formulas} \end{knitrout} \begin{explainbox} -Some details of \Rlang formulas can be important in advanced scripts. Two kinds of ``emptiness'' are possible for formulas. As with other classes, empty objects or vectors of length zero are valid and can be created with the class constructor. In the case of formulas there is an additional kind of emptiness, a formula describing a model with no explanatory terms on its \emph{rhs}. +Some details of \Rlang formulas can be important in advanced scripts. Two kinds of ``emptiness'' are possible for formulas. As with other classes, empty objects or vectors of length zero are valid and can be created with the class constructor. In the case of formulas, there is an additional kind of emptiness, a formula describing a model with no explanatory terms on its \emph{rhs}. An ``empty'' object of class \Rclass{formula} can be created by a call to \code{formula()} with no arguments, similarly as a numeric vector of length zero is created by the call \code{numeric()}. The last, commented out, statement in the code below triggers an error as the argument passed to \Rfunction{is.empty.model()} is of length zero. (This behaviour is not consistent with \Rclass{numeric} vectors of length zero; see for example the value returned by \code{is.finite(numeric())}.) @@ -15164,9 +15162,9 @@ \section{Model Formulas}\label{sec:stat:formulas} \end{explainbox} -In the examples in previous sections we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid using of operator \code{*} by explicitly defining all individual main effects and interactions using operators \code{+} and \code{:}\,. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. +In the examples in previous sections, we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid using of operator \code{*} by explicitly defining all individual main effects and interactions using operators \code{+} and \code{:}\,. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. -The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. +The same symbols as for arithmetic operators are used for model formulas. Within a formula, symbols are interpreted according to formula syntax. When we mean an arithmetic operation that could be interpreted as being part of the model formula we need to ``protect'' it by means of the identity function \Rfunction{I()}. The next two examples define formulas for models with only one explanatory variable. With formulas like these, the explanatory variable will be computed on the fly when fitting the model to data. In the first case below, we need to explicitly protect the addition of the two variables into their sum, because otherwise they would be interpreted as two separate explanatory variables in the model. In the second case, \Rfunction{log()} cannot be interpreted as part of the model formula, and consequently does not require additional protection, neither does the expression passed as its argument. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -15291,7 +15289,7 @@ \section{Model Formulas}\label{sec:stat:formulas} \begin{warningbox} \Rlang will accept any syntactically correct model formula, even when the results of the fit are not interpretable. It is \emph{the responsibility of the user to ensure that models are meaningful}\index{models!nesting of factors}. The most common, and dangerous, mistake is specifying for factorial experiments, models that are missing lower-order terms. - Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. + Fitting models like those below to data from an experiment based on a three-way factorial design should be avoided. In both cases, simpler terms are missing, while higher-order interaction(s) that include the missing term are included in the model. Such models are not interpretable, as the variation from the missing term(s) ends being ``disguised'' within the remaining terms, distorting their apparent significance and parameter estimates. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -15378,7 +15376,7 @@ \section{Model Formulas}\label{sec:stat:formulas} \end{kframe} \end{knitrout} -It\index{model formulas!updating} is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula in the replacement formula. We can also remove terms as can be seen below. In some cases the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. +It\index{model formulas!updating} is also possible to \emph{edit} formula objects with method \Rfunction{update()}. In the replacement formula, a dot can replace either the left-hand side (lhs) or the right-hand side (rhs) of the existing formula. We can also remove terms as can be seen below. In some cases, the dot corresponding to the lhs can be omitted, but including it makes the syntax clearer. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -15426,7 +15424,7 @@ \section{Time Series}\label{sec:stat:time:series} \index{time series|(} Longitudinal data consist of repeated measurements, usually done over time, on the same experimental units. Longitudinal data, when replicated on several experimental units at each time point, are called repeated measurements, while when not replicated, they are called time series. Base \Rlang provides special support for the analysis of time series data, while repeated measurements can be analysed with nested linear models, mixed-effects models, and additive models. -Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialised class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. When analysing time-series data it is frequently necessary to convert time data stored in one of the special \Rlang classes for temporal data and to operate with them (see section \ref{sec:data:datetime} on page \pageref{sec:data:datetime}). +Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases, time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialised class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. When analysing time-series data, it is frequently necessary to convert time data between one of the special \Rlang classes and \Rclass{character} strings, and to operate on dates and times (see section \ref{sec:data:datetime} on page \pageref{sec:data:datetime}). By now, you surely guessed that to create an object of class \Rclass{"ts"} one needs to use a constructor called \Rfunction{ts()} or a conversion constructor called \Rfunction{as.ts()} and that you can look up the arguments they accept by consulting help using \code{help(ts)}. @@ -15550,7 +15548,7 @@ \section{Time Series}\label{sec:stat:time:series} Many time series of observations display cyclic variation at different frequencies. Outdoors, air temperature varies cyclically between day and night and throughout the year. Superimposed on these regular cycles there can be faster random variation and long-term trends. One approach to the analysis of time series data is to estimate the separate contribution of these components. -An efficient approach to time series decomposition, based on LOESS\index{time series!decomposition}\index{STL|see{time series decomposition}} (see section \ref{sec:stat:splines} on \pageref{sec:stat:splines}), is STL (Seasonal and Trend decomposition using Loess).\qRfunction{decompose()}\qRfunction{stl()} A seasonal window of 7 months, the minimum accepted, allows the extraction of the annual cycles and a long-term trend leaving as a remainder some unexplained variation. In the plot is important to be aware that the scale limits in the different panels are different, and re-set for each plot. +An efficient approach to time series decomposition, based on LOESS\index{time series!decomposition}\index{STL|see{time series decomposition}} (see section \ref{sec:stat:splines} on \pageref{sec:stat:splines}), is STL (Seasonal and Trend decomposition using Loess).\qRfunction{decompose()}\qRfunction{stl()} A seasonal window of 7 months, the minimum accepted, allows the extraction of the annual cycles and a long-term trend leaving as a remainder some unexplained variation. In the plot, is important to be aware that the scale limits in the different panels are different, and re-set for each plot. @@ -15637,7 +15635,7 @@ \section{Time Series}\label{sec:stat:time:series} Method \code{print()} shows the different components. Extract the seasonal component and plot is on its own against time. \end{playground} -In the Nottingham temperature time series the period of the variation is clearly annual, but for many other time series an interesting feature to characterise is autocorrelation and its periodicity. Function \Rfunction{acf()} computes and plots the autocorrelation function (ACF) vs. the lag. The time series has monthly data, while the scale for lag in the plot below is in years. The autocorrelation is one at zero lag, and slightly less with a lag of one year, while its is negative between winter and summer temperatures. +In the Nottingham temperature time series, the period of the variation is clearly annual, but for many other time series an interesting feature to characterise is autocorrelation and its periodicity. Function \Rfunction{acf()} computes and plots the autocorrelation function (ACF) vs. the lag. The time series has monthly data, while the scale for lag in the plot below is in years. The autocorrelation is one at zero lag, and slightly less with a lag of one year, while its is negative between winter and summer temperatures. @@ -15721,7 +15719,7 @@ \subsection{Principal components analysis}\label{sec:stat:PCA} \end{kframe} \end{knitrout} -By printing the returned object we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. +By printing the returned object, we can see the loadings of each variable in the principal components \code{P1} to \code{P4}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} \begin{alltt} @@ -15900,7 +15898,7 @@ \subsection{Multidimensional scaling}\label{sec:stat:MDS} \subsection{Cluster analysis}\label{sec:stat:cluster} \index{cluster analysis|(} -In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. +In cluster analysis, the aim is to group observations into discrete groups with maximal internal homogeneity and maximum group-to-group differences. In the next example, we use function \Rfunction{hclust()} from the base-\Rlang package \pkgname{stats}. We use, as above, the \Rdata{eurodist} data which directly provides distances. In other cases, a matrix of distances between pairs of observations needs to be first calculated with function \Rfunction{dist} which supports several methods. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -15988,7 +15986,7 @@ \subsection{Cluster analysis}\label{sec:stat:cluster} \section{Further Reading}\label{sec:stat:further:reading} -\Rlang\index{further reading!statistics with R} and its extension packages provide implementations of most known statistical methods. For some methods alternative implementations exist in different packages. The present chapter only attempts to show how some of the most frequently used implementations are used, as this knowledge is frequently taken for granted in specialised books, several of which I list here. Two recent text books on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. They differ in the subjects emphasised, with the second one focusing more on genetic and molecular biology. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2010} \autocite{Everitt2010} and \citetitle{Zuur2009} \autocite{Zuur2009}. The book \citetitle{Mehtatalo2020} \autocite{Mehtatalo2020} presents both the statistical theory and code examples. The comprehensive \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002} both present statistical theory in parallel with the \Rlang code examples. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Hyndman2021} \autocite{Hyndman2021}, \citebooktitle{James2013} \autocite{James2013}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. +\Rlang\index{further reading!statistics with R} and its extension packages provide implementations of most known statistical methods. For some methods, alternative implementations exist in different packages. The present chapter only attempts to show how some of the most frequently used implementations are used, as this knowledge is frequently taken for granted in specialised books, several of which I list here. Two recent text books on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. They differ in the subjects emphasised, with the second one focusing more on genetic and molecular biology. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2010} \autocite{Everitt2010} and \citetitle{Zuur2009} \autocite{Zuur2009}. The book \citetitle{Mehtatalo2020} \autocite{Mehtatalo2020} presents both the statistical theory and code examples. The comprehensive \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002} both present statistical theory in parallel with the \Rlang code examples. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Hyndman2021} \autocite{Hyndman2021}, \citebooktitle{James2013} \autocite{James2013}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. @@ -17632,7 +17630,7 @@ \section{Times and Dates with \pkgname{lubridate}}\label{sec:data:datetime} \hlkwd{as.POSIXct}\hlstd{(this.day,} \hlkwc{tz} \hlstd{=} \hlstr{""}\hlstd{)} \hlcom{# local time zone} \end{alltt} \begin{verbatim} -## [1] "2024-01-24 02:00:00 EET" +## [1] "2024-02-14 02:00:00 EET" \end{verbatim} \end{kframe} \end{knitrout} @@ -17652,7 +17650,7 @@ \section{Times and Dates with \pkgname{lubridate}}\label{sec:data:datetime} \hlstd{this.instant} \end{alltt} \begin{verbatim} -## [1] "2024-01-24 20:58:55 EET" +## [1] "2024-02-14 20:18:27 EET" \end{verbatim} \end{kframe} \end{knitrout} @@ -17783,7 +17781,7 @@ \section{Times and Dates with \pkgname{lubridate}}\label{sec:data:datetime} \hlstd{my.time} \end{alltt} \begin{verbatim} -## [1] "2024-01-24 20:58:55 EET" +## [1] "2024-02-14 20:18:27 EET" \end{verbatim} \begin{alltt} \hlkwd{year}\hlstd{(my.time)} @@ -17801,7 +17799,7 @@ \section{Times and Dates with \pkgname{lubridate}}\label{sec:data:datetime} \hlkwd{second}\hlstd{(my.time)} \end{alltt} \begin{verbatim} -## [1] 55.27833 +## [1] 27.51527 \end{verbatim} \begin{alltt} \hlkwd{second}\hlstd{(my.time)} \hlkwb{<-} \hlnum{0} @@ -17817,13 +17815,13 @@ \section{Times and Dates with \pkgname{lubridate}}\label{sec:data:datetime} \hlkwd{trunc}\hlstd{(my.time,} \hlstr{"days"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] "2024-01-24 EET" +## [1] "2024-02-14 EET" \end{verbatim} \begin{alltt} \hlkwd{round}\hlstd{(my.time,} \hlstr{"hours"}\hlstd{)} \end{alltt} \begin{verbatim} -## [1] "2024-01-24 21:00:00 EET" +## [1] "2024-02-14 20:00:00 EET" \end{verbatim} \end{kframe} \end{knitrout} @@ -18480,7 +18478,7 @@ \subsection{Plots as \Rlang objects}\label{sec:plot:objects} \subsection{Scales and mappings}\label{sec:plot:mappings} \index{grammar of graphics!mapping of data|(} -\index{grammar of graphics!aesthetics(} +\index{grammar of graphics!aesthetics|(} In \ggplot a \emph{mapping} describes which variable in \code{data} is mapped to which \code{aesthetic}, or graphic feature of a plot, such as $x$, $y$, colour, fill, shape, linewidth, etc. In \ggplot a \emph{scale} describes the correspondence between \emph{values} in the mapped variable and values of the graphic feature. Below, the numeric variable \code{cyl} is mapped to the \code{colour} aesthetic. As the variable is \code{numeric} a continuous colour scale is used. Out of the multiple continuous colour scales available, \ggscale{scale\_colour\_continuous()} is the default. \begin{knitrout}\footnotesize @@ -18762,7 +18760,7 @@ \subsection{Scales and mappings}\label{sec:plot:mappings} \end{explainbox} \index{grammar of graphics!mapping of data|)} -\index{grammar of graphics!aesthetics)} +\index{grammar of graphics!aesthetics|)} \section{Geometries}\label{sec:plot:geometries} \index{grammar of graphics!geometries|(} @@ -22579,7 +22577,7 @@ \section{Composing Plots}\label{sec:plot:composing} When plotting expressions using \gggeom{geom\_text()}, the parsing of character strings is signalled by passing \code{parse = TRUE} in the call to the layer function. In the case of facets' strip labels, parsing or not depends on the \emph{labeller} function used. An additional twist is the possibility of combining static character strings with values taken from \code{data} (see section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}). -The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector. A \code{*} is usually needed when dealing with numbers next to symbols. Using white space is allowed in some situations, but not in others. To include within an expression text that should not be parsed it must be enclosed in quotation marks, which may need themselves to be quoted. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. +The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector. A \code{*} is usually needed when dealing with numbers next to symbols. Using whitespace is allowed in some situations, but not in others. To include within an expression text that should not be parsed it must be enclosed in quotation marks, which may need themselves to be quoted. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. Expressions are frequently used for axis labels, e.g., when the units or symbols require the use of superscripts or Greek letters. In this case they are usually entered as expressions. @@ -22713,7 +22711,7 @@ \section{Composing Plots}\label{sec:plot:composing} \end{kframe} \end{knitrout} -Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert white space, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. +Depending on the location within a expression, spaces maybe ignored, or illegal. To juxtapose elements without adding space use \code{*}, to explicitly insert whitespace, use \code{\textasciitilde}. As shown above, spaces are accepted within quoted text. Consequently, the following alternatives can also be used. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -22731,7 +22729,7 @@ \section{Composing Plots}\label{sec:plot:composing} \end{kframe} \end{knitrout} -However, unquoted white space is discarded. +However, unquoted whitespace is discarded. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -23303,12 +23301,12 @@ \section{File Names and Operations}\label{sec:files:filenames} \hlkwd{head}\hlstd{(}\hlkwd{list.files}\hlstd{())} \end{alltt} \begin{verbatim} -## [1] "abbrev.sty" -## [2] "anscombe.svg" -## [3] "Aphalo-CR-9781032518435-Learn-R.pdf" -## [4] "aphalo-Learn-R-2ed-crc-2023-06-14.pdf" -## [5] "aphalo-learn-R-2ed-draft-2022-02-01.pdf" -## [6] "Aphalo-Learn-R-2ed-DRAFT-2023-07-04.pdf" +## [1] "abbrev.sty" +## [2] "anscombe.svg" +## [3] "Aphalo-CR-9781032518435-Learn-R-proofs-2024-01-26.pdf" +## [4] "Aphalo-CR-9781032518435-Learn-R.pdf" +## [5] "aphalo-Learn-R-2ed-crc-2023-06-14.pdf" +## [6] "aphalo-learn-R-2ed-draft-2022-02-01.pdf" \end{verbatim} \begin{alltt} \hlkwd{head}\hlstd{(}\hlkwd{list.dirs}\hlstd{())} @@ -23352,9 +23350,9 @@ \section{File Names and Operations}\label{sec:files:filenames} \end{alltt} \begin{verbatim} ## size isdir mode mtime ctime -## xxx.txt 0 FALSE 666 2024-01-24 20:59:32 2024-01-24 20:59:32 +## xxx.txt 0 FALSE 666 2024-02-14 20:19:02 2024-02-14 20:19:02 ## atime exe -## xxx.txt 2024-01-24 20:59:32 no +## xxx.txt 2024-02-14 20:19:02 no \end{verbatim} \begin{alltt} \hlkwd{file.rename}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{,} \hlstr{"zzz.txt"}\hlstd{)} @@ -23424,7 +23422,7 @@ \section{Plain-Text Files}\label{sec:files:txt} \index{importing data!text files|(}\index{file formats!plain text} In general, text files are the most portable approach to data storage but usually also the least efficient with respect to the size of the file. Text files are composed of encoded characters. This makes them easy to edit with text editors and easy to read from programs written in most programming languages. On the other hand, how the data encoded as characters is arranged can be based on two different approaches: positional or using a specific character as a separator. -The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes white space is used as a separator, most commonly when all values are to be converted to \code{numeric}. +The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes whitespace is used as a separator, most commonly when all values are to be converted to \code{numeric}. \begin{explainbox} \textbf{Not all text files are born equal.}\index{importing data!R names} When reading text files, and \emph{foreign} binary files which may contain embedded text strings, there is potential for their misinterpretation during the import operation. One common source of problems, is that column headers are to be read as \Rlang names. As earlier discussed, there are strict rules, such as avoiding spaces or special characters if the names are to be used with the normal \Rlang syntax. On import, some functions will attempt to sanitise the names, but others not. Most such names are still accessible in \Rlang statements, but a special syntax is needed to protect them from triggering syntax errors through their interpretation as something different than variable or function names---in \Rlang jargon we say that they need to be quoted. @@ -23435,7 +23433,7 @@ \section{Plain-Text Files}\label{sec:files:txt} 3) Wrongly guessed column classes---a typing mistake affecting a single value in a column, e.g., the wrong kind of decimal marker, can prevent the column from being recognised as numeric. 4) Mismatched decimal marker in \code{CSV} files---the marker depends on the locale (language and country settings). -If you encounter problems after import, such as failure of extraction of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes or white space. +If you encounter problems after import, such as failure of extraction of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes or whitespace. To demonstrate some of these problems, I create a data frame with name sanitation disabled, and in the second statement with sanitation enabled. The first statement is equivalent to the default behaviour of functions in package \pkgname{readr} and the second is equivalent to the behaviour of base \Rlang functions. \pkgname{readr} prioritises the integrity of the original data while \Rlang prioritises compatibility with \Rlang's naming rules. @@ -23482,7 +23480,7 @@ \section{Plain-Text Files}\label{sec:files:txt} Text files containing data in columns can be divided into two broad groups. Those with fixed-width fields and those with delimited fields. Fixed-width fields were especially common in the early days of \langname{FORTRAN} and \langname{COBOL} when data storage capacity was very limited. These formats are frequently capable of encoding information using fewer characters than when delimited fields are used. The best way of understanding the differences is with examples. Although in this section we exemplify the use of functions by passing a file name as an argument, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). \begin{warningbox} -Wether columns containing character strings that cannot be converted into numbers are converted into factors or remain as character strings in the returned data frame depends on the value passed to parameter \code{stringsAsFactors}. The default changed in \Rlang version 4.0.0 from \code{TRUE} into \code{FALSE}. If code is to work consistently in old and new versions of \Rlang \code{stringsAsFactors = FALSE} has to be passed explicitly in calls to \Rfunction{read.csv} (the approach used in the book). +Wether columns containing character strings that cannot be converted into numbers are converted into factors or remain as character strings in the returned data frame depends on the value passed to parameter \code{stringsAsFactors}. The default changed in \Rlang version 4.0.0 from \code{TRUE} into \code{FALSE}. If code is to work consistently in old and new versions of \Rlang \code{stringsAsFactors = FALSE} has to be passed explicitly in calls to \Rfunction{read.csv()} (the approach used in the book). \end{warningbox} In\index{text files!CSV files}\index{text files!TSV files} the first example a file with fields solely delimited by ``,'' is read. This is what is called comma-separated-values (CSV) format that can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. @@ -23540,7 +23538,7 @@ \section{Plain-Text Files}\label{sec:files:txt} Read the file \code{not-aligned-ASCII-UK.csv} with function \Rfunction{read.csv2()} instead of \Rfunction{read.csv()}. Although this may look like a waste of time, the point of the exercise is for you to get familiar with \Rlang behaviour in case of such a mistake. This will help you recognise similar errors when they happen accidentally, which is quite common when files are shared. \end{playground} -Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added white space to align the columns, to make it easier to read by humans. +Example file \code{aligned-ASCII-UK.csv} contains comma-separated-values with added whitespace to align the columns, to make it easier to read by humans. The contents of file \code{aligned-ASCII-UK.csv} are shown below. @@ -23592,7 +23590,7 @@ \section{Plain-Text Files}\label{sec:files:txt} \end{kframe} \end{knitrout} -By default, column names are sanitised but white space in character strings kept. Passing an additional argument changes this default so that leading and trailing white space are discarded. Most likely the default has been chosen so that by default data integrity is maintained. +By default, column names are sanitised but whitespace in character strings kept. Passing an additional argument changes this default so that leading and trailing whitespace are discarded. Most likely the default has been chosen so that by default data integrity is maintained. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -23631,7 +23629,7 @@ \section{Plain-Text Files}\label{sec:files:txt} \end{knitrout} \begin{explainbox} -When\index{importing data!character to factor conversion} character strings are converted into factors, leading and trailing white space is retained in the labels of factor levels. Leading and trailing white space are difficult to see when data frames are printed, as shown below. This example shows what problems were frequently encountered in earlier versions of \Rlang, and can still occur when factors are created. The recommended approach is to use the default \code{stringsAsFactors = FALSE} and do the conversion into factors in a separate step. +When\index{importing data!character to factor conversion} character strings are converted into factors, leading and trailing whitespace is retained in the labels of factor levels. Leading and trailing whitespace are difficult to see when data frames are printed, as shown below. This example shows what problems were frequently encountered in earlier versions of \Rlang, and can still occur when factors are created. The recommended approach is to use the default \code{stringsAsFactors = FALSE} and do the conversion into factors in a separate step. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -23674,7 +23672,7 @@ \section{Plain-Text Files}\label{sec:files:txt} This handled by using functions \Rfunction{read.csv2()} and \Rfunction{write.csv2()}. Furthermore, parameters \code{dec} and \code{sep} allow setting the decimal marker and field separator to arbitrary character strings. -Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by white space (one or more spaces, tabs, new lines, or carriage return). +Function \Rfunction{read.table()} does the actual work and functions like \Rfunction{read.csv()} only differ in the default arguments for the different parameters. By default, \Rfunction{read.table()} expects fields to be separated by whitespace (one or more spaces, tabs, new lines, or carriage return). The contents of file \code{aligned-ASCII.txt} are shown below. @@ -23689,7 +23687,7 @@ \section{Plain-Text Files}\label{sec:files:txt} \end{knitrout} The file is read and the returned value stored in a variable named \code{from\_txt\_b.df}, and printed. -Leading and trailing white space are removed because they are recognised as part of the separators. For character strings containing embedded spaces to be decoded as a single value they need to be quoted in the file as in \code{aligned-ASCII.txt} above. +Leading and trailing whitespace are removed because they are recognised as part of the separators. For character strings containing embedded spaces to be decoded as a single value they need to be quoted in the file as in \code{aligned-ASCII.txt} above. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -23871,7 +23869,7 @@ \section{Plain-Text Files}\label{sec:files:txt} Although in this section we exemplify the use of these functions by passing a file name as an argument, as is the case with \Rlang native functions, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). Furthermore,\index{file formats!compressed} if the file name ends in a tag recognisable as indicating a compressed file format, e.g., \code{.gz} or \code{.zip}, the file will be uncompressed on the fly. \begin{warningbox} -Functions ``equivalent'' to native \Rlang functions described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behaviour than \Rfunction{read.table()}, although they both read fields separated by white space. Row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). +Functions ``equivalent'' to native \Rlang functions described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behaviour than \Rfunction{read.table()}, although they both read fields separated by whitespace. Row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). \end{warningbox} \begin{warningbox} @@ -23910,7 +23908,7 @@ \section{Plain-Text Files}\label{sec:files:txt} \end{kframe} \end{knitrout} -Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}, quoted strings containing white space are no longer recognised. See above example using \Rfunction{read.table()}. Examples below are not run, but kept as they may work again in the future. +Package \pkgname{readr} is under active development, and different major versions are not fully compatible with each other. Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"} in the past we needed to use \Rfunction{read\_table2()}, which allowed misalignment of fields, similarly to \Rfunction{read.table()}. This function has been renamed as \Rfunction{read\_table()} and \Rfunction{read\_table2()} deprecated. However, parsing of both files fails if they are read with \Rfunction{read\_table()}, quoted strings containing whitespace are no longer recognised. See above example using \Rfunction{read.table()}. Examples below are not run, but kept as they may work again in the future. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.98, 0.98, 0.98}\color{fgcolor}\begin{kframe} @@ -24904,7 +24902,7 @@ \section{Databases}\label{sec:data:db} \end{alltt} \begin{verbatim} ## # Source: SQL [?? x 2] -## # Database: sqlite 3.44.2 [:memory:] +## # Database: sqlite 3.45.0 [:memory:] ## day_of_year energy_Wh ## ## 1 162 7500. @@ -24967,9 +24965,9 @@ \section{Data Acquisition from Physical Devices}\label{sec:data:acquisition} ## $ unit : chr "g/m3" "mbar" "'C" ## $ calib : chr "0," "0," "0," ## $ streams:List of 3 -## ..$ :'data.frame': 238 obs. of 5 variables: -## ..$ :'data.frame': 236 obs. of 5 variables: -## ..$ :'data.frame': 238 obs. of 5 variables: +## ..$ :'data.frame': 409 obs. of 5 variables: +## ..$ :'data.frame': 406 obs. of 5 variables: +## ..$ :'data.frame': 409 obs. of 5 variables: \end{verbatim} \end{kframe} \end{knitrout}